Homeworlds

Emily Nusbaum, Maxwell Silverman, Patrick O'Toole

Introduction:

Homeworlds is a niche asymmetric strategy board game. It uses a set of plastic pyramids of three different sizes (small: 1, medium: 2, large: 3) and four different colors (blue, green, red, yellow). The players take turns making a single action of their choice (i.e. build, trade, move, discover, or attack) based on the colors of the pyramids on the table. The players can also sacrifice one of their pyramids on their turn to take multiple actions on this turn. The game always begins with the first player choosing a set of any three pyramids to be their “homeworld.” Then the second player does the same. The goal of the game is to take control of or destroy your opponents homeworld.

For the purpose of this project, it is only necessary to understand that homeworlds are made up of three different pyramids. The colors and sizes of these worlds are important to how the player plays the game, but it is not necessary to understand the complexities of the game to understand this project (however, if you're curious, the game instructions are with our additional resources).

Motivation:

We want to explore whether or not the winner of a Homeworlds game can be predicted based on factors such as who goes first, what setups are used, and if additional actions are taken during a turn. The goal is to determine if the game is influenced by these external factors, or if the outcome is seemingly random, implying that the game is fair.

Data Curation:

We begin by collecting data from SuperDuperGames.org, which hosts data from every homeworlds game played on the site. Because the data is only accessible if a user is logged in, we created a payload to create a new session with the requests library to login with the given credentials. We used a post request to send the payload to the site and a get request to get the web page. SuperDuperGames assigns the participants to one of four positions: north, south, east, west. If there are only two players, there will only be north and south participants. If three, there will be north, south, and east.

In [1]:
import requests
from bs4 import BeautifulSoup
from urllib.request import urlopen
import pandas as pd
import datetime
from datetime import datetime as dt
import numpy as np
import enum
import re
import datetime
import matplotlib.pyplot as plt
from sklearn import linear_model
import seaborn as cbn
from scipy import stats
from statsmodels.stats import weightstats as stests
from sklearn.neighbors import KNeighborsClassifier
from sklearn import tree

#!conda install -y html5lib
#!conda install -y lxml
In [2]:
# Pretending to be a safari browser, shhhhh...
comp_head = {'User-Agent':'Safari/13.1'}

# Create an auth payload to login to the site.
payload = {
    'mode': 'auth',
    'username': 'fall2020cmsc320',
    'password': 'BGtz0jo4',
    'cookies': {}
}

# Use auth payload to create a session through which I can access the data from this account.
with requests.Session() as sess:
    auth_post = sess.post('http://superdupergames.org/', data=payload)
    games_page = sess.get('http://superdupergames.org/pgn.html?id=homeworlds', headers=comp_head).content

# Output the content of the webpage with said data.
print(games_page)
b'<!DOCTYPE html\nPUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"\n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">\n\n<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n\n<head>\n\t<link rel="stylesheet" type="text/css" href="/styles.css" />\n\n\n\n\t<title>Super Duper Games - PGN Viewer</title>\n\t<META HTTP-EQUIV="Pragma" CONTENT="no-cache">\n\t<META HTTP-EQUIV="Expires" CONTENT="-1">\n</head>\n\n<body>\n\t<table class="help">\n\t\t<tr class="help">\n\t\t\t<td class="help"><pre>Homeworlds Online (SDG# 651)\nStarted: 2005.9.8, Ended: 2005.9.10\nParticipants: rbryan (S), crackity_jones (N)\nWinner: rbryan\n\n\trbryan: howdy\n\tSYSTEM: crackity_jones resigns.\n\nHomeworlds Online (SDG# 632)\nStarted: 2005.9.6, Ended: 2005.9.7\nParticipants: Subhan64 (S), jesse (N)\nWinner: jesse\n\n1) jesse: Homeworld B2 Y1 G3\n\n2) Subhan64: Homeworld Y2 B2 R2\n\tjesse: Greetings to all intelligent life forms.  We come in peace.\n\n3) jesse: Pass\n\n4) Subhan64: Trade R2 G2 Subhan64\n\tjesse: You must be new. It is vital to have green in your home system at the start of the game. You can&#39;t use red until our forces come into contact.  You can&#39;t use yellw until you have another ship to leave in your home system.  You can use blue to change the color of your ship, but in that case you should have started with the new color to begin with.  I&#39;ll give you a chance to change to green now.\n\tjesse: It is also very important to start with a large ship, rather than a medium. Large ships are power. Without one, you will be weak on both offense and defense.\n\n5) jesse: Build G1 Jesse\n\n6) Subhan64: Build G1 Subhan64\n\n7) jesse: Trade G1 R1 Jesse\n\n8) Subhan64: Discover G1 Subhan64 R1 Abraxis\n\n9) jesse: Build R1 Jesse\n\n10) Subhan64: Build G1 Subhan64\n\n11) jesse: Build R2 Jesse\n\n12) Subhan64: Trade G2 R2 Subhan64\n\n13) jesse: Trade R1 G1 Jesse\n\n14) Subhan64: Construct G2 Abraxis\n\n15) jesse: Discover G3 Jesse Y3 Danger\n\n16) Subhan64: Build G2 Subhan64\n\n17) jesse: Build G2 Danger\n\n18) Subhan64: Move R2 Subhan64 Danger\n\n19) jesse: Move G2 Danger Subhan64\n\n20) Subhan64: Trade G1 Y1 Subhan64\n\tSubhan64: Finally read your comments.  yes, this is my first game.\n\n21) jesse: Sacrifice R2 Jesse\nAttack G2S Subhan64\nAttack Y1S Subhan64\n\tjesse: Well, I hope you&#39;ve enjoyed it, and learned a thing or two along the way.\n\n\nHomeworlds Online (SDG# 627)\nStarted: 2005.9.5, Ended: 2005.9.13\nParticipants: Aaron (S), CDRodeffer (N)\nWinner: CDRodeffer\n\n1) CDRodeffer: Homeworld R1 Y2 G3\n\n2) Aaron: Homeworld Y1 B3 G3\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\n4) Aaron: Build G1 Aaron\n\n5) CDRodeffer: Discover G1 Cdrodeffer B3 Blueberry\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) CDRodeffer: Build G1 Blueberry\n\n8) Aaron: Build R1 Aaron\n\n9) CDRodeffer: Trade G1 Y1 Blueberry\n\n10) Aaron: Trade R1 Y1 Aaron\n\n11) CDRodeffer: Build Y2 Blueberry\n\n12) Aaron: Discover Y1 Aaron B2 Acqua\n\n13) CDRodeffer: Trade Y2 B2 Blueberry\n\n14) Aaron: Build G1 Aaron\n\tAaron: What the heck am I doing?  *shakes his head in confusion*\n\n15) CDRodeffer: Build Y2 Blueberry\n\n16) Aaron: Move G1 Aaron Acqua\n\n17) CDRodeffer: Trade Y2 R2 Blueberry\n\tCDRodeffer: I&#39;m not exactly sure, so don&#39;t ask me! :-P\n\n18) Aaron: Build Y2 Acqua\n\tAaron: I have no idea either.  This is a problem.\n\n19) CDRodeffer: Move R2 Blueberry Acqua\n\n20) Aaron: Sacrifice Y2 Acqua\nMove G1 Acqua Aaron\nMove Y1 Acqua Aaron\n\tAaron: It is taking me some time for strategies to start to gell in my mind.  I&#39;m still flying by the seat of my pants.\n\n21) CDRodeffer: Build Y2 Blueberry\n\n22) Aaron: Trade G3 R3 Aaron\n\tCDRodeffer: Oh, I totally understand. I&#39;m still new to this game as well, although I have played with a few very, very good players. Russell Grieshop taught me almost everything I know about the game. He&#39;s one tough player.\n\n23) CDRodeffer: Move B2 Blueberry Cdrodeffer\n\n24) Aaron: Trade Y1 B1 Aaron\n\n25) CDRodeffer: Move Y1 Blueberry Cdrodeffer\n\n26) Aaron: Trade B1 Y1 Aaron\n\n27) CDRodeffer: Build G1 Cdrodeffer\n\n28) Aaron: Discover Y1 Aaron G2 Emerald\n\n29) CDRodeffer: Build G2 Blueberry\n\n30) Aaron: Build Y2 Emerald\n\tAaron: I am distinctly outnumbered.\n\n31) CDRodeffer: Build Y3 Blueberry\n\n32) Aaron: Discover Y2 Emerald G3 Grass\n\tCDRodeffer: There is strength in numbers, it&#39;s true, but numbers aren&#39;t everything for sure. Oh, by the way, red alert in Emerald. If I sacrifice y3 in Blueberry, I can move the y1 from CDRodeffer and the y2 from Blueberry in for a catastrophe. We wouldn&#39;t want *that* now, would we?\n\tAaron: Eeks!\n\n33) CDRodeffer: Trade G2 R2 Blueberry\n\n34) Aaron: Build Y3 Grass\n\n35) CDRodeffer: Sacrifice Y3 Blueberry\nMove Y2 Blueberry Cdrodeffer\nMove Y2 Cdrodeffer Grass\nMove Y1 Cdrodeffer Grass\nCatastrophe Grass Yellow\n\n36) Aaron: Trade R1 Y1 Aaron\n\tCDRodeffer: &quot;Oh, bother,&quot; said Pooh, as he blew up the star system.\n\tAaron: well at least you lost as many ships as I did...that&#39;s a comfort.\n\n37) CDRodeffer: Build G2 Blueberry\n\n38) Aaron: Build Y2 Emerald\n\tCDRodeffer: Such are the vicissitudes of life.\n\n39) CDRodeffer: Trade G2 Y2 Blueberry\n\n40) Aaron: Build Y3 Aaron\n\n41) CDRodeffer: Build Y3 Blueberry\n\n42) Aaron: Sacrifice Y3 Aaron\nMove Y1 Emerald Blueberry\nMove Y2 Emerald Blueberry\nDiscover Y1 Aaron G2 Forest\nCatastrophe Blueberry Y\n\n43) CDRodeffer: Build G2 Blueberry\n\tCDRodeffer: Um, OK....\n\n44) Aaron: Build G2 Aaron\n\n45) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild R1 Acqua\nBuild B1 Cdrodeffer\nBuild G3 Cdrodeffer\n\n46) Aaron: Build G3 Aaron\n\n47) CDRodeffer: Trade G2 Y2 Blueberry\n\n48) Aaron: Trade G2 R2 Aaron\n\n49) CDRodeffer: Sacrifice Y2 Blueberry\nMove R1 Acqua Aaron\nMove R2 Acqua Aaron\nCatastrophe Aaron Red\n\tCDRodeffer: Ha! I anticipated as much!\n\n50) Aaron: Trade G3 R3 Aaron\n\tAaron: yeah, as soon as I hit &quot;submit orders&quot; I realized what I had done.  I&#39;m feeling a little lost with no direct strategy.\n\n51) CDRodeffer: Build G2 Blueberry\n\n52) Aaron: Build R1 Aaron\n\tCDRodeffer: Home system defense is a great place to start.\n\tAaron: I&#39;m liking the Red home star idea though.  Will definitely do that in the future.\n\n53) CDRodeffer: Trade G1 Y1 Blueberry\n\tCDRodeffer: It&#39;s kind of an experiment for me. Russell Grieshop often plays that way, though.\n\n54) Aaron: Build Y2 Forest\n\n55) CDRodeffer: Move R2 Blueberry Forest\n\n56) Aaron: Move Y2 Forest Blueberry\n\n57) CDRodeffer: Attack Y1S Forest\n\n58) Aaron: Trade Y2 R2 Blueberry\n\n59) CDRodeffer: Sacrifice G2 Blueberry\nBuild R1 Forest\nBuild Y2 Forest\n\n60) Aaron: Discover R1 Aaron G2 Emerald\n\n61) CDRodeffer: Discover Y1 Blueberry G2 Oscar\n\n62) Aaron: Build G1 Aaron\n\n63) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild Y2 Oscar\n\n\tAaron: *is overwhelmed by a profound sense of impending doom*\n\tAaron: Well I thank you for the game, but I don&#39;t think I want to be around when my system goes supernova =)  I&#39;ve learned a few things though!  Thanks again!\n\tSYSTEM: Aaron resigns.\n\nHomeworlds Online (SDG# 644)\nStarted: 2005.9.7, Ended: 2005.9.8\nParticipants: jesse (S), rbryan (N)\nWinner: jesse\n\n1) rbryan: Homeworld Y3 B2 G3\n\n2) jesse: Homeworld B2 Y1 G3\n\n3) rbryan: Build G1 Rbryan\n\tjesse: Hello.\n\n4) jesse: Build G1 Jesse\n\n5) rbryan: Discover G1 Rbryan B1 Neptune\n\n6) jesse: Discover G1 Jesse B3 Bluto\n\trbryan: Hello\n\n7) rbryan: Build G1 Neptune\n\n8) jesse: Build G2 Jesse\n\n9) rbryan: Build G2 Rbryan\n\tjesse: So, played much?\n\n10) jesse: Sacrifice G3 Jesse\nBuild G2 Bluto\nBuild G3 Jesse\nBuild G3 Jesse\n\n11) rbryan: Trade G2 Y2 Rbryan\n\n12) jesse: Discover G2 Jesse Y3 Curry\n\trbryan: No, not at all really; you?\n\n13) rbryan: Build G2 Rbryan\n\tjesse: Yeah, I&#39;ve played a fair amount.\n\n14) jesse: Trade G1 B1 Bluto\n\n15) rbryan: Trade G1 B1 Neptune\n\n16) jesse: Trade B1 Y1 Bluto\n\n17) rbryan: Build B1 Neptune\n\tjesse: Heh. Actually, this is what I meant to do last time, but I mistyped it. I did come up with some alternate plans, but your move made them considerably less attractive.\n\n18) jesse: Sacrifice G3 Jesse\nBuild G1 Bluto\nBuild G1 Curry\nBuild G3 Jesse\n\n19) rbryan: Trade B1 Y1 Neptune\n\n20) jesse: Trade G1 B1 Bluto\n\n21) rbryan: Sacrifice Y2 Rbryan\nMove Y1 Neptune Bluto\nMove Y1 Bluto Jesse\n\n22) jesse: Build Y2 Bluto\n\tjesse: Wicked.\n\trbryan: It looked like the fun move; but I&#39;m not sure it won&#39;t cripple me...\n\n23) rbryan: Sacrifice G3 Rbryan\nBuild Y2 Jesse\nBuild G1 Neptune\nBuild G3 Rbryan\n\tjesse: I&#39;ll certainly try to make you pay for it.\n\n24) jesse: Trade G3 R3 Jesse\n\n25) rbryan: Sacrifice G2 Rbryan\nBuild Y2 Jesse\nBuild G2 Rbryan\n\n26) jesse: Sacrifice G3 Jesse\nBuild G3 Curry\nBuild G3 Bluto\nBuild Y3 Bluto\nCatastrophe Jesse Y\n\tjesse: No catastrophe?\n\trbryan: Nope. I beleive that would have lost me the game...\n\tjesse: Okay, then. Just bear in mind that I can do it myself if I think it&#39;s advantageous for me to do so, and in the meantime it gives me access to that large yellow.\n\tjesse: Ah, yes, I do see your problem now. Tight spot.\n\n27) rbryan: Trade G3 R3 Rbryan\n\n28) jesse: Sacrifice G2 Curry\nBuild R1 Jesse\nBuild B2 Bluto\n\n29) rbryan: Trade G1 Y1 Neptune\n\n30) jesse: Sacrifice Y2 Bluto\nMove Y3 Bluto Jesse\nDiscover B2 Bluto Y1 Frink\n\n31) rbryan: Build Y2 Neptune\n\n32) jesse: Sacrifice G3 Curry\nBuild Y2 Jesse\nBuild Y2 Bluto\nBuild B3 Frink\n\n33) rbryan: Build R1 Rbryan\n\n34) jesse: Sacrifice Y3 Jesse\nMove G3 Bluto Frink\nMove G3 Frink Rbryan\nMove B3 Frink Rbryan\n\n35) rbryan: Attack G3S Rbryan\n\n36) jesse: Sacrifice R3 Jesse\nAttack R3N Rbryan\nAttack G3N Rbryan\nAttack R1N Rbryan\n\n\trbryan: Good game\n\tSYSTEM: rbryan resigns.\n\nHomeworlds Online (SDG# 625)\nStarted: 2005.9.5, Ended: 2005.9.29\nParticipants: Jesse (S), jeep (N)\nWinner: Jesse\n\n1) jeep: Homeworld B3 G1 Y3\n\n2) jesse: Homeworld Y2 B1 G3\n\tjeep: Hello!  Well, I figure I&#39;ll try this out.  I&#39;m currently (and temporarily) in China, with sporadic access to the internet, but I should be able to move every other day, at least.  Multiple moves per day, when I make them, if you are online too.  ;)\n\n3) jeep: Build Y1 Jeep\n\tjesse: Hello.  It&#39;s no problem if you can&#39;t move very often.  It&#39;s nice if you can, of course, but definitely more important that you make the most of your time in China.  What are you there for, by the way?\n\n4) jesse: Build G1 Jesse\n\tjeep: I&#39;m working.  10-16 hour days.  Bleh.\n\n5) jeep: Discover Y1 Jeep Y2 Trav\n\n6) jesse: Discover G1 Jesse B3 Ungo\n\tjeep: Terrible sorry!  My laptop died.  I&#39;m on a loaner right now.  I should have decent access except for the day I will be flying.\n\n7) jeep: Trade Y3 G3 Jeep\n\tjesse: It&#39;s okay. Adverse conditions do come up now and then.\n\n8) jesse: Build G1 Jesse\n\tjeep: They&#39;ve been coming up way too often in my life lately.  ;)  Heck, I couldn&#39;t even type &quot;Terribly&quot; correctly in my last message though.  I&#39;ve been in China too long.\n\tjesse: Huh. I thought you were going to try to freeze me out of yellow.\n\n9) jeep: Move Y1 Trav Jeep\n\tjeep: Yeah, I skipped a step in my plan.  ;)  I&#39;m not very good at this game yet.  heh.\n\n10) jesse: Build G2 Ungo\n\tjeep: Bleh, I have too much time to forget what I&#39;m doing and what I have already done.\n\n11) jeep: Build Y1 Jeep\n\n12) Jesse: Trade G2 Y2 Ungo\n\n13) jeep: Discover Y1 Jeep B2 Tradago\n\n14) Jesse: Build G2 Jesse\n\tjeep: If this is too painfully slow, let me know and I&#39;ll resign (or force me to).  I&#39;m home now and slowly recovering and catching up.  I would expect that I will soon be playing at a &quot;normal&quot; pace, but it might take me a while to get there.\n\tJesse: I don&#39;t mind the wait now and then, although it would be great if you could get back to a normal pace.\n\n15) jeep: Sacrifice G3 Jeep\nBuild Y1 Tradago\nBuild Y2 Jeep\nBuild Y3 Jeep\n\n16) Jesse: Build Y3 Ungo\n\n17) jeep: Trade Y3 G3 Jeep\n\n18) Jesse: Sacrifice G3 Jesse\nBuild G2 Ungo\nBuild G2 Ungo\nBuild G3 Jesse\n\n19) jeep: Trade Y1 R1 Tradago\n\tjeep: My math sucks.  I somehow thought 3=2.  :(\n\n20) Jesse: Trade G2 R2 Jesse\n\tJesse: Only for very small values of 3.\n\n21) jeep: Trade Y2 B2 Jeep\n\tjeep: Well, I figured out something new, which is good.  Esp. since I&#39;m so far behind in this game. \n\n22) Jesse: Discover G2 Ungo Y2 Sol\n\n23) jeep: Build B1 Jeep\n\n24) Jesse: Sacrifice G3 Jesse\nBuild G2 Sol\nBuild G3 Ungo\nBuild G3 Jesse\n\n25) jeep: Sacrifice G3 Jeep\nBuild Y1 Tradago\nBuild R1 Tradago\nBuild Y3 Jeep\n\tjeep: I feel like I should just concede to get to the next game.  I learned a lot, but this is only my first game, except one against another complete newbie and we were trying to figure the rules out... \n\n26) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Sol\nBuild R1 Jesse\n\tJesse: You have played well, considering that.  It does look like an appropriate place to concede, if you wish.  However, I would also be happy to play to the end if you prefer.  Either way, thanks for the game, and I look forward to playing another sometime.\n\n\tjeep: I&#39;ll play again, if you want.  I learned quite a bit in just one game.  I&#39;m sure I&#39;ll learn more in the next.  Is there a challenge feature?\n\nHomeworlds Online (SDG# 646)\nStarted: 2005.9.7, Ended: 2005.9.13\nParticipants: MatrixFrog (S), weaselsdontfly (N)\nWinner: MatrixFrog\n\n1) weaselsdontfly: Homeworld B1 G2 R1\n\tweaselsdontfly: homeworld r1\n\n2) MatrixFrog: Homeworld Y1 G3 Y3\n\n\tSYSTEM: weaselsdontfly resigns.\n\nHomeworlds Online (SDG# 636)\nStarted: 2005.9.6, Ended: 2005.10.12\nParticipants: Cerulean (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 Y2 Y3\n\tMatrixFrog: Okay... first step is to set up your homeworld. Generally you want two stars of unequal sizes, and usually you do a big ship, because it&#39;s hard to build big ships later in the game.\n\n2) Cerulean: Homeworld B3 G2 Y3\n\tMatrixFrog: Green and yellow are the most important colors at the beginning because they allow you to start building up a fleet of ships, and then moving those ships around the galaxy.\n\tMatrixFrog: Oh, and also, you generally don&#39;t want your homeworld to have the same sizes as mine, because that makes it easier for me to get to you.\r\nOn the other hand, it makes it easier for you to get to me as well, so there is an advantage. But in general, I&#39;d recommend not doing a small-medium star system, so do small-large or medium-large instead.\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Cerulean: Build Y1 Cerulean\n\n5) MatrixFrog: Discover Y1 Matrixfrog B3 Ice\n\n6) Cerulean: Discover Y1 Cerulean G1 Hydrogen\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) Cerulean: Trade Y3 B3 Cerulean\n\n9) MatrixFrog: Trade Y1 G1 Ice\n\n10) Cerulean: Build B1 Cerulean\n\n11) MatrixFrog: Build G2 Ice\n\n12) Cerulean: Trade B3 Y3 Cerulean\n\n13) MatrixFrog: Move Y3 Matrixfrog Ice\n\n14) Cerulean: Build B1 Cerulean\n\n15) MatrixFrog: Build Y1 Ice\n\n16) Cerulean: Move B1 Cerulean Hydrogen\n\n17) MatrixFrog: Build Y2 Matrixfrog\n\n18) Cerulean: Move Y1 Hydrogen Ice\n\n19) MatrixFrog: Discover Y1 Matrixfrog R3 Helium\n\n20) Cerulean: Build Y2 Cerulean\n\n21) MatrixFrog: Discover Y3 Ice R1 Delta\n\n22) Cerulean: Build B1 Cerulean\n\n23) MatrixFrog: Move Y3 Delta Cerulean\n\n24) Cerulean: Trade B1 R1 Cerulean\n\n25) MatrixFrog: Build Y3 Cerulean\nCatastrophe Cerulean Y\n\n26) Cerulean: Build R1 Cerulean\n\n27) MatrixFrog: Move G1 Ice Matrixfrog\n\n28) Cerulean: Move Y1 Ice Hydrogen\n\n29) MatrixFrog: Build G2 Matrixfrog\n\n30) Cerulean: Build Y2 Hydrogen\n\tMatrixFrog: Even when there&#39;s only a day or less between moves, I forget what happened before, and have no idea how we got to the present configuration. I&#39;m trying to figure out why I would use my big ship the way I did, leaving me with only 1s and 2s at home.\n\tCerulean: i have the same problem.  i end up reading all the recent moves to figure out what the story so far is.  this would play much better in person.  *sigh* if only i could get my fiancee to try this.\n\n31) MatrixFrog: Build Y3 Matrixfrog\n\n32) Cerulean: Sacrifice Y2 Hydrogen\nMove Y1 Hydrogen Ice\nMove Y1 Ice Matrixfrog\nCatastrophe Matrixfrog Y\n\n33) MatrixFrog: Move Y1 Ice Matrixfrog\n\tCerulean: gotcha!\n\n34) Cerulean: Trade R1 Y1 Cerulean\n\tMatrixFrog: I&#39;m usually good at avoiding things like that. *sad face*\n\n35) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild G2 Ice\nBuild G3 Ice\n\n36) Cerulean: Build Y2 Cerulean\n\n37) MatrixFrog: Move Y1 Helium Hydrogen\n\n38) Cerulean: Move Y1 Cerulean Hydrogen\n\n39) MatrixFrog: Trade G2 R2 Ice\n\n40) Cerulean: Build Y2 Cerulean\n\n41) MatrixFrog: Build G2 Matrixfrog\n\n42) Cerulean: Build R1 Cerulean\n\n43) MatrixFrog: Build R1 Ice\n\n44) Cerulean: Build R2 Cerulean\n\n45) MatrixFrog: Discover G1 Matrixfrog Y2 Lithium\n\n46) Cerulean: Build Y3 Hydrogen\n\n47) MatrixFrog: Sacrifice Y1 Hydrogen\nMove R2 Ice Matrixfrog\n\n48) Cerulean: Move R1 Cerulean Hydrogen\n\n49) MatrixFrog: Build G3 Matrixfrog\n\n50) Cerulean: Trade Y3 G3 Hydrogen\n\tMatrixFrog: I&#39;m doing so terribly...\n\n51) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y1 Matrixfrog\nBuild G3 Lithium\nBuild R2 Ice\n\n52) Cerulean: Build Y3 Hydrogen\n\tMatrixFrog: I love sacrificing green ships.\n\n53) MatrixFrog: Trade G3 Y3 Ice\n\n54) Cerulean: Build G3 Hydrogen\n\n55) MatrixFrog: Sacrifice Y3 Ice\nMove Y1 Matrixfrog Cerulean\nMove G2 Ice Hydrogen\nMove Y1 Matrixfrog Cerulean\nCatastrophe Cerulean Y\nCatastrophe Hydrogen G\n\n56) Cerulean: Trade R2 Y2 Cerulean\n\n57) MatrixFrog: Discover G1 Lithium Y1 Magnesium\n\n58) Cerulean: Build Y1 Cerulean\n\n59) MatrixFrog: Build G1 Magnesium\n\n60) Cerulean: Trade Y2 G2 Cerulean\n\n61) MatrixFrog: Move G1 Magnesium Cerulean\n\n62) Cerulean: Move G2 Cerulean Magnesium\n\n63) MatrixFrog: Build G3 Cerulean\n\n64) Cerulean: Build G3 Magnesium\n\n65) MatrixFrog: Sacrifice R2 Ice\nAttack Y1S Cerulean\nAttack R1S Cerulean\n\n66) Cerulean: Move G3 Magnesium Lithium\n\tMatrixFrog: I don&#39;t see any way out of this. I&#39;m thinking maybe there is one that I&#39;m just not seeing.\n\n67) MatrixFrog: Attack B1S Cerulean\n\n\nHomeworlds Online (SDG# 616)\nStarted: 2005.9.3, Ended: 2005.9.6\nParticipants: jesse (S), MatrixFrog (N)\nWinner: jesse\n\n1) MatrixFrog: Homeworld B2 Y1 R3\n\n2) jesse: Homeworld B3 Y1 G3\n\n3) MatrixFrog: Trade R3 G3 Matrixfrog\n\tjesse: Greetings, neighbor.  We see you are a warlike people.  While it is fortunate (for us) that you have stripped your world of all its growth potential, we are deeply saddened to see a world so mistreated.  It is only proper that we liberate it from your oppressive tyranny.\n\n4) jesse: Build G1 Jesse\n\n5) MatrixFrog: Trade G3 R3 Matrixfrog\n\n6) jesse: Trade G1 Y1 Jesse\n\n7) MatrixFrog: Trade R3 G3 Matrixfrog\n\tjesse: My people do not understand your alien motives.\n\tMatrixFrog: Yeah. I was going to discover a new system, but I need to build more first, which I didn&#39;t realize. So this sets me back a couple of turns. *Sigh*\n\n8) jesse: Build Y2 Jesse\n\tMatrixFrog: I&#39;m kind of new to this.\n\n9) MatrixFrog: Build G1 Matrixfrog\n\n10) jesse: Discover Y2 Jesse G2 Moss\n\tjesse: Well, here&#39;s tip number one: The two most important colors to have access to in the early game are yellow and green.  Green is necessary to increase your fleet.  Yellow is necessary to disperse your fleet and stay safe from overpopulations.  Blue is also important for the same reason, and to keep your fleet flexible.  (Notice that I can&#39;t afford to build any more yellow ships until I move some out, or change their color.)  Having your yellow ships (as opposed to planets) is more important than having blue ships because yellow is more useful to sacrifice.  Red is only important once the two fleets are near to coming in contact with each other.\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) jesse: Build Y2 Jesse\n\n13) MatrixFrog: Trade G3 R3 Matrixfrog\n\n14) jesse: Trade Y2 R2 Jesse\n\n15) MatrixFrog: Discover R3 Matrixfrog G3 Green\n\tjesse: Now that you are mobile, there is a rule of thumb that when your opponent picks up a gun, you must pick up a gun.  Therefore, I now follow you into the red economy.\n\tjesse: On the other hand, to really put your big gun to use, you would have to violate another key principle: Never leave your homeworld undefended.\n\tjesse: It is possible at times ignore either of these principles, but you do so at your own peril.\n\n16) jesse: Build Y2 Jesse\n\n17) MatrixFrog: Build R1 Green\n\n18) jesse: Build Y2 Moss\n\n19) MatrixFrog: Build G1 Matrixfrog\n\n20) jesse: Discover Y1 Jesse B2 Smurf\n\n21) MatrixFrog: Trade G1 B1 Matrixfrog\n\n22) jesse: Sacrifice G3 Jesse\nBuild Y3 Moss\nBuild Y3 Smurf\nBuild Y3 Jesse\n\n23) MatrixFrog: Move B1 Matrixfrog Green\n\n24) jesse: Trade Y2 G2 Jesse\n\n25) MatrixFrog: Build G1 Matrixfrog\n\n26) jesse: Sacrifice Y3 Moss\nMove G2 Jesse Moss\nDiscover G2 Moss B3 Boom\nMove G2 Boom Matrixfrog\nCatastrophe Matrixfrog G\n\n\nHomeworlds Online (SDG# 608)\nStarted: 2005.9.2, Ended: 2005.9.5\nParticipants: MatrixFrog (S), Aaron (N)\nWinner: MatrixFrog\n\n1) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, and good luck!  Welcome to the family!\n\n2) MatrixFrog: Homeworld G3 Y2 R3\n\tMatrixFrog: homeworld G3 Y2 R3\n\tMatrixFrog: Oops. Now I get it. This box is for communication, the other one is for game commands.\n\n3) Aaron: Build G1 Aaron\n\n4) MatrixFrog: Build R1 Matrixfrog\n\n5) Aaron: Trade G1 R1 Aaron\n\n6) MatrixFrog: Discover R1 Matrixfrog B1 B1\n\n7) Aaron: Build R1 Aaron\n\tMatrixFrog: I&#39;m not clever enough to think of creative names for my systems...\n\tAaron: rofl =)  That&#39;s fine...much easier to type =)\n\n8) MatrixFrog: Trade R1 Y1 B1\n\n9) Aaron: Trade R1 Y1 Aaron\n\tMatrixFrog: Well my only other idea was &quot;LittleBlueStar&quot; so I guess you&#39;re right.\n\n10) MatrixFrog: Build R1 Matrixfrog\n\n11) Aaron: Build R1 Aaron\n\n12) MatrixFrog: Move Y1 B1 Matrixfrog\n\n13) Aaron: Trade R1 B1 Aaron\n\n14) MatrixFrog: Build Y2 Matrixfrog\n\n15) Aaron: Construct Y2 Aaron\n\n16) MatrixFrog: Discover Y2 Matrixfrog R1 Mercury\n\n17) Aaron: Discover Y2 Aaron B3 Cobalt\n\tMatrixFrog: I like how individual stars are either red, yellow, green, or blue, but in the &quot;starry background&quot; all the distant stars are white. Come to think of it, that&#39;s true in real life too. There are &quot;red dwarves&quot; and such, but most stars appear white or very close to white.\n\tAaron: =D\n\n18) MatrixFrog: Build Y3 Matrixfrog\n\n19) Aaron: Build Y3 Aaron\n\n20) MatrixFrog: Discover Y2 Mercury G3 Forest\n\n21) Aaron: Trade Y3 R3 Aaron\n\n22) MatrixFrog: Discover Y2 Forest B1 Droplet\n\n23) Aaron: Move Y2 Cobalt Droplet\n\n24) MatrixFrog: Move Y3 Matrixfrog Droplet\n\n25) Aaron: Discover R1 Aaron G3 Emerald\n\n26) MatrixFrog: Trade Y3 R3 Droplet\n\n27) Aaron: Move Y2 Droplet Emerald\n\n28) MatrixFrog: Build Y3 Matrixfrog\n\n29) Aaron: Build Y3 Emerald\n\n30) MatrixFrog: Build R1 Matrixfrog\n\n31) Aaron: Sacrifice Y2 Emerald\nMove Y3 Emerald Droplet\nMove Y3 Droplet Matrixfrog\nCatastrophe Matrixfrog Y\n\n32) MatrixFrog: Sacrifice R1 Matrixfrog\n\nPass\n\tMatrixFrog: Damn it. Good move.\n\n33) Aaron: Build Y1 Aaron\n\tMatrixFrog: As far as I can see, destroying one of my own ships was the only way to prevent you from destroying my entire home fleet.\n\tAaron: Well, It would have taken me a move or two to get a yellow ship to Emerald.  You might have done better to move R3 from Droplet to Emerald and attack any yellow ships I send there.\n\tAaron: But I&#39;m new to this game too...\n\n34) MatrixFrog: Move Y2 Droplet Matrixfrog\n\tMatrixFrog: But since you destroyed my 2-star, MatrixFrog is now a one-star system which is connected to Aaron. So you could have brought your R3 directly across.\n\n35) Aaron: Move Y1 Aaron Emerald\n\tMatrixFrog: I don&#39;t have the standard colors of pyramids. I got the IceTowers set which is a stash each of clear, cyan, purple, and opaque white. It&#39;s much easier when you don&#39;t have to reassign the colors. And you also don&#39;t have to worry about the pieces taking up space on the table. :-D\n\tAaron: Doh!  I forgot about that!\n\n36) MatrixFrog: Build Y2 Matrixfrog\n\n37) Aaron: Build Y2 Emerald\n\n38) MatrixFrog: Trade R3 Y3 Droplet\n\n39) Aaron: Trade Y1 R1 Aaron\n\n40) MatrixFrog: Move Y3 Droplet Emerald\n\n41) Aaron: Sacrifice Y2 Emerald\nMove R3 Aaron Matrixfrog\nMove R1 Aaron Matrixfrog\nCatastrophe Matrixfrog R\n\n42) MatrixFrog: Discover Y3 Emerald B2 Blue\n\tMatrixFrog: That&#39;s basically exactly the same as what I was planning to do.\n\n43) Aaron: Build R1 Emerald\n\tMatrixFrog: I think my main weakness in this game is too much offense, not enough defense.\n\tAaron: I could see you coming...I had to do a pre-emptive strike.\n\n44) MatrixFrog: Trade Y3 R3 Blue\n\n45) Aaron: Trade G3 R3 Aaron\n\n46) MatrixFrog: Build Y1 Matrixfrog\n\n47) Aaron: Build Y2 Emerald\n\n48) MatrixFrog: Move Y1 Matrixfrog Aaron\n\n49) Aaron: Move R3 Aaron Matrixfrog\n\n50) MatrixFrog: Sacrifice R3 Blue\nAttack B1N Aaron\nPass\nPass\n\n\nHomeworlds Online (SDG# 609)\nStarted: 2005.9.2, Ended: 2005.9.11\nParticipants: misuba (S), Aaron (N)\nWinner: Aaron\n\n1) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, and good luck!  Welcome to the family!\n\n2) misuba: Homeworld G3 Y2 B2\n\n3) Aaron: Build G1 Aaron\n\n4) misuba: Build B1 Misuba\n\n5) Aaron: Trade G1 B1 Aaron\n\n6) misuba: Trade B2 G2 Misuba\n\n7) Aaron: Build G1 Aaron\n\n8) misuba: Build G1 Misuba\n\n9) Aaron: Discover G3 Aaron Y3 Lemons\n\n10) misuba: Discover G2 Misuba B1 Giantpanda\n\n11) Aaron: Trade B1 Y1 Aaron\n\tAaron: *shakes his head in disbelief*  What the heck am I doing?\n\n\tSYSTEM: misuba resigns.\n\nHomeworlds Online (SDG# 610)\nStarted: 2005.9.3, Ended: 2005.10.5\nParticipants: Aaron (S), CDRodeffer (W), invisiblejon (N), Kermit (E)\nWinner: Aaron\n\n1) invisiblejon: Homeworld G3 Y2 R3\n\n2) Kermit: Homeworld G3 B2 Y2\n\n3) Aaron: Homeworld Y1 B2 G3\n\n4) CDRodeffer: Homeworld R1 Y3 G3\n\n5) invisiblejon: Build R1 Invisiblejon\n\n6) Kermit: Build Y1 Kermit\n\tKermit: construct y1 g3\r\n\r\nerror:   \tCan&#39;t call method &quot;name&quot; on an undefined value at /home/html/games/lib/Homeworlds/Pos.pm line 281.\r\ncontext:  \t\r\n...  \t\r\n277:  \t\r\n278:  \t#does the System exist?\r\n279:  \tmy $system = $self-&gt;getSystem($inSystem);\r\n280:  \tif (! defined $system) {\r\n281:  \tpush @$errors, &quot;The &quot;.$system-&gt;name().&quot; system does not exist.&quot;;\r\n282:  \tlast MOVE;\r\n283:  \t}\r\n284:  \t\r\n285:  \t#does the user have access to Green?\r\n...  \t\r\ncode stack:  \t/home/html/games/lib/Homeworlds/Pos.pm:281\r\n/usr/local/lib/perl5/site_perl/5.8.7/Games/Sequential.pm:158\r\n/home/html/games/HTML/mhtml/play_homeworlds.mhtml:326\r\n/home/html/games/HTML/main.html:26\r\n/home/html/games/HTML/autohandler:10\r\nraw error\n\tKermit: construct Y1 G3E &lt;======that was my corrected command but I got the same error as below.\n\n7) Aaron: Build G1 Aaron\n\tAaron: All fixed.  Thanks, Kermit.\n\n8) CDRodeffer: Build G1 Cdrodeffer\n\n9) invisiblejon: Discover R3 Invisiblejon Y1 Persephone\n\n10) Kermit: Discover Y2 Kermit R1 Spork\n\n11) Aaron: Trade G1 R1 Aaron\n\n12) CDRodeffer: Discover G1 Cdrodeffer B2 Blue_ball_pennsylvania\n\n13) invisiblejon: Build R1 Invisiblejon\n\n14) Kermit: Trade Y1 B1 Kermit\n\n15) Aaron: Build R2 Aaron\n\n16) CDRodeffer: Build G1 Blue_ball_pennsylvania\n\n17) invisiblejon: Build R2 Invisiblejon\n\n18) Kermit: Build B1 Kermit\n\n19) Aaron: Trade R1 Y1 Aaron\n\tCDRodeffer: Aaron -- what win condition are we using here? Last person standing? First kill? Kill your left-hand neighbor (not counting resignations)?\n\tAaron: Currently it is still &quot;Last Man Standing.&quot;  I just haven&#39;t had time to do the &quot;left-hand-neighbour&quot; but I am 99% certain that is the option I will go with (as a Variant most likely).\n\n20) CDRodeffer: Trade G1 Y1 Blue_ball_pennsylvania\n\n21) invisiblejon: Move R3 Persephone Kermit\n\n22) Kermit: Trade B1 Y1 Kermit\n\n23) Aaron: Build R1 Aaron\n\n24) CDRodeffer: Build Y1 Blue_ball_pennsylvania\n\n25) invisiblejon: Attack Y1E Kermit\n\n26) Kermit: Build B1 Kermit\n\n27) Aaron: Build Y2 Aaron\n\n28) CDRodeffer: Trade Y1 B1 Blue_ball_pennsylvania\n\n29) invisiblejon: Move R3 Kermit Spork\n\n30) Kermit: Discover Y2 Spork R3 Chuckles\n\n31) Aaron: Trade Y1 B1 Aaron\n\n32) CDRodeffer: Discover G1 Blue_ball_pennsylvania B1 Dwarf\n\n33) invisiblejon: Move R1 Invisiblejon Dwarf\n\n34) Kermit: Trade B1 Y1 Kermit\n\n35) Aaron: Discover Y2 Aaron G3 Emerald\n\n36) CDRodeffer: Build G1 Cdrodeffer\n\n37) invisiblejon: Attack G1W Dwarf\n\n38) Kermit: Build Y1 Kermit\n\n39) Aaron: Move B1 Aaron Emerald\n\n40) CDRodeffer: Move B1 Blue_ball_pennsylvania Cdrodeffer\n\n41) invisiblejon: Build R2 Dwarf\n\n42) Kermit: Discover Y1 Kermit G1 Sanctuary\n\n43) Aaron: Move R2 Aaron Emerald\n\n44) CDRodeffer: Move G1 Cdrodeffer Blue_ball_pennsylvania\n\n45) invisiblejon: Trade R2 Y2 Dwarf\n\n46) Kermit: Move B1 Kermit Sanctuary\n\n47) Aaron: Move R2 Emerald Blue_ball_pennsylvania\n\n48) CDRodeffer: Sacrifice Y1 Blue_ball_pennsylvania\nMove G1 Blue_ball_pennsylvania Cdrodeffer\n\n49) invisiblejon: Move G1 Dwarf Kermit\n\tCDRodeffer: If I were as tedious as a king, I could find it in my heart to bestow it all of your worship. -- Much Ado about Nothing. ACT III Scene 5.\n\n50) Kermit: Build Y1 Kermit\n\n51) Aaron: Build Y2 Emerald\n\n52) CDRodeffer: Build B1 Cdrodeffer\n\n53) invisiblejon: Build Y3 Kermit\nCatastrophe Kermit Yellow\n\n54) Aaron: Move Y2 Emerald Blue_ball_pennsylvania\n\tAaron: rofl!  oops!  Clark has gone and disappeared =)\n\tAaron: Checking that now.\n\tAaron: wb, Clark =)  Sorry about that. I am aware that there is still a blank space where East seat used to be.  That&#39;ll take me longer to fix.\n\n55) CDRodeffer: Discover B1 Cdrodeffer G2 Soylent_people\n\tCDRodeffer: I must have missed quite a bit of drama.\n\n56) invisiblejon: Move R1 Dwarf Soylent_people\n\n57) Aaron: Sacrifice Y2 Blue_ball_pennsylvania\nMove R2 Blue_ball_pennsylvania Dwarf\nMove R2 Dwarf Kermit\n\n58) CDRodeffer: Build B2 Soylent_people\n\n59) invisiblejon: Sacrifice G1 Kermit\nBuild R2 Soylent_people\n\n60) Aaron: Build R2 Kermit\n\n61) CDRodeffer: Construct B2 Cdrodeffer\n\n62) invisiblejon: Attack B2W Soylent_people\n\tKermit: OK from now on I will read the strategy and tips for beginners BEFORE I start the game. ;) (not that it would have made much difference)\n\n63) Aaron: Trade R2 Y2 Kermit\n\n64) CDRodeffer: Trade B1 Y1 Cdrodeffer\n\n65) invisiblejon: Attack B1W Soylent_people\n\n66) Aaron: Move R2 Kermit Sanctuary\n\n67) CDRodeffer: Build Y1 Cdrodeffer\n\n68) invisiblejon: Move Y2 Dwarf Soylent_people\n\n69) Aaron: Sacrifice Y2 Kermit\nMove Y2 Emerald Soylent_people\nMove Y2 Soylent_people Cdrodeffer\nCatastrophe Cdrodeffer Yellow\n\n70) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tAaron: Oops!  Redudant elimination message =/\n\tCDRodeffer: I&#39;m feeling rather picked on.\n\n71) invisiblejon: Move R2 Soylent_people Sanctuary\n\n72) Aaron: Attack R2N Sanctuary\n\n73) CDRodeffer: Build Y1 Cdrodeffer\n\n74) Aaron: Attack Y1E Sanctuary\n\n75) CDRodeffer: Build G1 Cdrodeffer\n\tSYSTEM: invisiblejon resigns.\n\tCDRodeffer: You know, after having been the target of so many attacks, forcing N to resign on time felt kind of -- good. :-)\n\n76) Aaron: Move R2 Sanctuary Soylent_people\n\n77) CDRodeffer: Construct B1 Cdrodeffer\n\n78) Aaron: Attack Y2N Soylent_people\n\n79) CDRodeffer: Move B2 Cdrodeffer Chuckles\n\n80) Aaron: Trade B1 Y1 Emerald\n\n81) CDRodeffer: Attack Y2E Chuckles\n\n82) Aaron: Attack B2N Soylent_people\n\n83) CDRodeffer: Sacrifice G1 Cdrodeffer\nBuild Y2 Chuckles\n\n84) Aaron: Attack B1E Sanctuary\n\tAaron: I am seeing the other problem with protracted, last-man-standing games, namely excessive resources.\n\tCDRodeffer: Yeah. That&#39;s why they eventually went with reduced stashes for fewer people. In a recent Wunderland News, Andy Looney calls what you refer to as &quot;left man down&quot; Homeworlds &quot;Sinister&quot; Homeworlds.\n\n85) CDRodeffer: Move Y1 Cdrodeffer Invisiblejon\n\tAaron: I much prefer the &quot;Sinister&quot; name and I&#39;m sad I didn&#39;t think of it first =)  It&#39;s a little late to change so, &quot;left man down&quot; is kind of stuck.\n\n86) Aaron: Attack R1N Soylent_people\n\n87) CDRodeffer: Build Y2 Cdrodeffer\n\tCDRodeffer: There&#39;s no reason you can&#39;t change the name.\n\tAaron: Actually, there is a small technical issue =)  I never took into consideration the possibility of renaming variants.  It&#39;s not that it&#39;s not possible, I just haven&#39;t had time to consider the ramifications and what exactly I would have to change.  It is on my todo list though.\n\n88) Aaron: Move R2 Sanctuary Emerald\n\n89) CDRodeffer: Discover Y2 Cdrodeffer R2 Red_buttons\n\n90) Aaron: Build Y3 Emerald\n\n91) CDRodeffer: Build Y3 Cdrodeffer\n\n92) Aaron: Sacrifice Y3 Emerald\nMove R2 Emerald Cdrodeffer\nMove R1 Soylent_people Cdrodeffer\nMove R2 Soylent_people Cdrodeffer\nCatastrophe Cdrodeffer Red\n\n\tAaron: Well, I *think* this will end the game.  If so, thank you all for the game!  If not, I apologize and await my beating =)\n\nHomeworlds Online (SDG# 638)\nVariants: &quot;Left man down&quot;\nStarted: 2005.9.6, Ended: 2005.9.20\nParticipants: MatrixFrog (S), rbryan (N), zevzimra (E)\nWinner: rbryan\n\n1) rbryan: Homeworld B2 G1 Y3\n\n2) zevzimra: Homeworld G2 B3 Y3\n\n3) MatrixFrog: Homeworld G1 B3 Y3\n\n4) rbryan: Build Y1 Rbryan\n\tMatrixFrog: This is my first time playing a 3-player game. Good luck to you both.\n\n5) zevzimra: Build Y1 Zevzimra\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) rbryan: Trade Y1 G1 Rbryan\n\n8) zevzimra: Trade Y1 R1 Zevzimra\n\n9) MatrixFrog: Build Y1 Matrixfrog\n\n10) rbryan: Discover G1 Rbryan G3 Iceland\n\n11) zevzimra: Build Y1 Zevzimra\n\n12) MatrixFrog: Trade Y3 R3 Matrixfrog\n\tzevzimra: Hey, thanks for the encouragement, MaxtrixFrog!  This is literally my first time playing this game!\n\n13) rbryan: Build G1 Iceland\n\n14) zevzimra: Discover R1 Zevzimra Y1 Gateway\n\n15) MatrixFrog: Build R1 Matrixfrog\n\n16) rbryan: Build Y2 Rbryan\n\tMatrixFrog: Question: The whole good/evil thing isn&#39;t implemented yet, right? So how do we know who we should try to eliminate?\n\tMatrixFrog: From the SDG-announce mailing list:\r\n\r\nI have just implemented a new victory condition for Homeworlds at SDG \r\ncalled &quot;Left Man Down.&quot;  The player who elminates the person to his left \r\nis the victor.  &quot;Left&quot; is relative.  In a 3-player game, or a 4-player \r\ngame where West seat has already been defeated, South&#39;s left-hand \r\nopponent would be North.  I have not yet tested this code in a live \r\ngame, but my offline tests show it should work.  If you have any \r\nweirdness in a live game, please let me know.  If you have an existing \r\n3/4-player game running and everybody would like the victory conditions \r\nchanged, let me know and I will make that happen.\n\tMatrixFrog: So, what do you guys think? Do we want to do that?\n\trbryan: I&#39;d say yes, because I think it should make a better game.  This is also my first three player game, so I don&#39;t have a particularly strong opinion.\n\n17) zevzimra: Build Y2 Zevzimra\n\tzevzimra: Sure, that&#39;s fine, let&#39;s go for it...  can someone tell Aaron please?\n\n18) MatrixFrog: Discover Y1 Matrixfrog G2 Jeetoo\n\tMatrixFrog: Same here, rbryan... I&#39;ll send him a private message.\n\n19) rbryan: Build Y2 Rbryan\n\tAaron: Done.  Please let me know if something weird happens with the next elimination.  It is easily undone.\n\n20) zevzimra: Trade Y2 G2 Zevzimra\n\n21) MatrixFrog: Build Y2 Matrixfrog\n\n22) rbryan: Trade Y3 G3 Rbryan\n\n23) zevzimra: Move Y1 Zevzimra Gateway\n\n24) MatrixFrog: Build Y2 Jeetoo\n\n25) rbryan: Sacrifice Y2 Rbryan\nDiscover G1 Iceland B2 Romulus\nDiscover G1 Iceland B2 Remus\n\n26) zevzimra: Sacrifice G2 Zevzimra\nBuild Y2 Zevzimra\nBuild Y3 Zevzimra\n\trbryan: Hmm, that ought to confuse them.  I mean, I wouldn&#39;t mis-type the size of the piece to discover twice in a row, would I?  Nope, not me.  Sigh.\n\tMatrixFrog: I&#39;m confused. What did you mean to do?\n\trbryan: Move to two smalls; hence adjacent to zevzimra, whom I&#39;m meant to be attacking.  It&#39;s OK, it just means my master plan will need rethinking...\n\n27) MatrixFrog: Build R1 Matrixfrog\n\n28) rbryan: Sacrifice G3 Rbryan\nBuild Y3 Rbryan\nBuild G2 Romulus\nBuild G2 Remus\n\n29) zevzimra: Trade Y3 G3 Zevzimra\n\n30) MatrixFrog: Sacrifice Y2 Jeetoo\nDiscover Y1 Jeetoo R3 X\nMove Y1 X Rbryan\n\n31) rbryan: Trade Y3 R3 Rbryan\n\n32) zevzimra: Move G3 Zevzimra Gateway\n\n33) MatrixFrog: Build Y2 Rbryan\n\n34) rbryan: Sacrifice R3 Rbryan\nAttack Y1S Rbryan\nAttack Y2S Rbryan\nPass\n\n35) zevzimra: Trade Y3 G3 Zevzimra\n\n36) MatrixFrog: Move R3 Matrixfrog Remus\n\n37) rbryan: Trade Y2 R2 Rbryan\n\n38) zevzimra: Move Y2 Zevzimra Gateway\n\n39) MatrixFrog: Attack G2N Remus\n\n40) rbryan: Sacrifice Y1 Rbryan\nDiscover G1 Remus Y1 Runaway\n\n41) zevzimra: Build R1 Gateway\n\n42) MatrixFrog: Build R2 Remus\n\n43) rbryan: Sacrifice G2 Romulus\nBuild Y2 Rbryan\nBuild Y3 Rbryan\n\n44) zevzimra: Sacrifice Y2 Gateway\nMove R1 Gateway Romulus\nMove G3 Gateway Romulus\n\n45) MatrixFrog: Build Y2 Matrixfrog\n\n46) rbryan: Sacrifice Y3 Rbryan\nDiscover G1 Romulus B1 Iwin\nMove G1 Runaway Zevzimra\nMove G1 Iwin Zevzimra\nCatastrophe Zevzimra Green\n\n\nHomeworlds Online (SDG# 626)\nStarted: 2005.9.5, Ended: 2005.9.13\nParticipants: MatrixFrog (S), zapple (N)\nWinner: zapple\n\n1) zapple: Homeworld B2 G1 Y3\n\n2) MatrixFrog: Homeworld R2 G1 Y3\n\n3) zapple: Build Y1 Zapple\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) zapple: Build Y1 Zapple\n\n6) MatrixFrog: Discover Y1 Matrixfrog B3 Blueberry\n\n7) zapple: Move Y1 Zapple Blueberry\n\n8) MatrixFrog: Discover Y1 Blueberry G1 Pine\n\n9) zapple: Trade Y1 B1 Zapple\n\tMatrixFrog: You can talk here too. But we have IM so it&#39;s not really necessary.\n\n10) MatrixFrog: Build Y1 Pine\n\n11) zapple: Trade Y1 R1 Blueberry\n\n12) MatrixFrog: Discover Y1 Pine B2 Newberry\n\n13) zapple: Move Y3 Zapple Blueberry\n\n14) MatrixFrog: Build Y1 Matrixfrog\n\n15) zapple: Build B1 Zapple\n\n16) MatrixFrog: Build Y2 Pine\n\n17) zapple: Move Y3 Blueberry Zapple\n\n18) MatrixFrog: Move Y2 Pine Blueberry\n\n19) zapple: Build Y2 Zapple\n\n20) MatrixFrog: Discover Y1 Pine Y2 Cheese\n\n21) zapple: Move Y3 Zapple Blueberry\n\n22) MatrixFrog: Move Y2 Blueberry Zapple\n\n23) zapple: Trade Y3 R3 Blueberry\n\tMatrixFrog: Intruder!\n\n24) MatrixFrog: Pass\n\n25) zapple: Trade R3 B3 Blueberry\n\n26) MatrixFrog: Pass\n\n27) zapple: Trade B1 R1 Zapple\n\n28) MatrixFrog: Build Y3 Matrixfrog\n\n29) zapple: Trade B3 Y3 Blueberry\n\n30) MatrixFrog: Discover Y3 Matrixfrog B3 Zxc\n\n31) zapple: Build R1 Zapple\n\n32) MatrixFrog: Trade Y1 G1 Newberry\n\n33) zapple: Move R1 Zapple Zxc\n\n34) MatrixFrog: Build Y1 Zapple\n\n35) zapple: Trade Y3 R3 Blueberry\n\n36) MatrixFrog: Trade Y2 B2 Zapple\n\n37) zapple: Sacrifice B1 Zapple\nTrade R3 Y3 Blueberry\n\n38) MatrixFrog: Discover Y3 Matrixfrog R3 Ruby\n\n39) zapple: Build Y2 Zapple\n\tzapple: attack Y1 matrixfrog\n\n40) MatrixFrog: Trade B2 R2 Zapple\n\n41) zapple: Move R1 Blueberry Matrixfrog\n\n42) MatrixFrog: Attack R1N Zapple\n\n43) zapple: Attack Y1S Matrixfrog\n\n\nHomeworlds Online (SDG# 650)\nStarted: 2005.9.9, Ended: 2005.9.16\nParticipants: pigasuspig (S), Jesse (N)\nWinner: Jesse\n\n1) jesse: Homeworld Y3 G2 B3\n\n2) pigasuspig: Homeworld G1 B3 R3\n\tjesse: Hello.  Have you played before?\n\tpigasuspig: homeworld G1 B3 R3\n\n3) Jesse: Build B1 Jesse\n\tpigasuspig: I&#39;ve played homeworlds, but not online. I&#39;m so sorry about the delay--it should not happen again.\n\tJesse: I&#39;m glad you could finally join me.\n\n4) pigasuspig: Build R1 Pigasuspig\n\n5) Jesse: Build B1 Jesse\n\n6) pigasuspig: Trade R1 Y1 Pigasuspig\n\n7) Jesse: Discover B1 Jesse B1 Zoid\n\n8) pigasuspig: Build R1 Pigasuspig\n\n9) Jesse: Build B2 Jesse\n\n10) pigasuspig: Discover R1 Pigasuspig Y2 Oliver\n\n11) Jesse: Trade B2 R2 Jesse\n\n12) pigasuspig: Build Y1 Pigasuspig\n\n13) Jesse: Build B2 Jesse\n\n14) pigasuspig: Build Y1 Pigasuspig\n\n15) Jesse: Trade B2 Y2 Jesse\n\n16) pigasuspig: Build Y2 Pigasuspig\n\n17) Jesse: Build Y3 Jesse\n\tJesse: Be careful about this.  Even if you don&#39;t trigger the catastrophe in your home system, I can do so at the end of my turn.  In fact, here I can take one of the large yellows first, then take away all of yours.\n\tJesse: I feel bad doing both here, so I&#39;ll just take the large and give you a chance to save your fleet of yellows.\n\n18) pigasuspig: Trade Y2 B2 Pigasuspig\n\n19) Jesse: Move Y3 Jesse Zoid\n\tpigasuspig: Thanks--for some reason, I thought catastrophes happened at 5 ships.\n\n20) pigasuspig: Move Y1 Pigasuspig Oliver\n\n21) Jesse: Trade B1 G1 Zoid\n\n22) pigasuspig: Discover Y1 Oliver G1 Ficus\n\n23) Jesse: Build G2 Zoid\n\n24) pigasuspig: Build Y2 Ficus\n\n25) Jesse: Build Y3 Zoid\n\n26) pigasuspig: Move R1 Oliver Zoid\n\n27) Jesse: Build R1 Jesse\n\n28) pigasuspig: Build Y2 Pigasuspig\n\n29) Jesse: Sacrifice R1 Jesse\nAttack R1S Zoid\n\n30) pigasuspig: Sacrifice Y2 Pigasuspig\nMove Y2 Ficus Jesse\nMove Y1 Ficus Jesse\nCatastrophe Jesse Y\n\n31) Jesse: Sacrifice Y3 Zoid\nMove Y3 Zoid Jesse\nMove Y3 Jesse Pigasuspig\nMove B3 Jesse Pigasuspig\n\n32) pigasuspig: Move R3 Pigasuspig Jesse\n\tJesse: Quite a violent game we&#39;ve got here, all of a sudden.\n\n33) Jesse: Sacrifice G2 Zoid\nBuild R1 Jesse\nBuild R1 Jesse\nCatastrophe Jesse R\n\tpigasuspig: Indeed.\n\n34) pigasuspig: Move B2 Pigasuspig Jesse\n\tJesse: Yup.\n\n35) Jesse: Move Y3 Pigasuspig Jesse\n\tpigasuspig: I have this vision that whoever wins will be clinging to a single ship on a single homeworld with NOTHING else in play....\n\n36) pigasuspig: Trade B2 G2 Jesse\n\n37) Jesse: Trade Y3 R3 Jesse\n\tJesse: It does sort of feel that way, doesn&#39;t it?\n\n38) pigasuspig: Build G1 Jesse\n\tJesse: Now this is what I call a close race!\n\n39) Jesse: Sacrifice R3 Jesse\nAttack Y1S Pigasuspig\nAttack Y1S Pigasuspig\nAttack G1S Jesse\n\tJesse: It looks like we both destroy each other&#39;s civilization.  I just get there moments ahead of you.  An exciting ending!  Things would have gone very differently if you hadn&#39;t let me get those two large yellows earlier.\n\tpigasuspig: Good game! I didn&#39;t see it until it was too late.\n\n\nHomeworlds Online (SDG# 668)\nStarted: 2005.9.9, Ended: 2005.9.23\nParticipants: rootbeer (S), eugman (N)\nWinner: rootbeer\n\n1) eugman: Homeworld G1 B2 G3\n\n2) rootbeer: Homeworld Y3 B1 G3\n\teugman: Any idea how you name a system? \n\n3) eugman: Build G1 Eugman\n\trootbeer: I think you name it when you discover it, something like &quot;discover G3 northhomeworld Y3 solsystem&quot;, except that northhomeworld is supposed to be the name of your homeworld. Does that seem right to you?\n\trootbeer: Maybe the name of your homeworld is your username?\n\n4) rootbeer: Build G1 Rootbeer\n\teugman: Eugman is a horrible name for a homeworld. Oh well.\n\n5) eugman: Trade G1 Y1 Eugman\n\n6) rootbeer: Discover G1 Rootbeer Y2 Lisasimpson\n\n7) eugman: Construct G1 Eugman\n\n8) rootbeer: Build G2 Lisasimpson\n\n\tSYSTEM: eugman resigns.\n\nHomeworlds Online (SDG# 671)\nStarted: 2005.9.11, Ended: 2005.9.12\nParticipants: Tuxhedoh (S), rbryan (N)\nWinner: rbryan\n\n1) rbryan: Homeworld Y3 B2 G3\n\tTuxhedoh: Im a homeworlds newbiee. this will be my first game.  ive read the rules and the hints on the wiki.\n\n2) Tuxhedoh: Homeworld B3 G2 Y3\n\trbryan: I&#39;m fairly a newbie myself; I&#39;ve finished one game in which I got crushed...\n\n3) rbryan: Build G1 Rbryan\n\trbryan: construct g1 rbryan\n\n4) Tuxhedoh: Build Y1 Tuxhedoh\n\n5) rbryan: Build G1 Rbryan\n\n6) Tuxhedoh: Build Y1 Tuxhedoh\n\n7) rbryan: Discover G1 Rbryan B1 Bluonia\n\n8) Tuxhedoh: Trade Y1 R1 Tuxhedoh\n\tTuxhedoh: I haven&#39;t any idea what to do next.  Not so easy trying to learn play-by-web style\r\n\n\n9) rbryan: Build G1 Bluonia\n\trbryan: construct g1 bluonia\n\n10) Tuxhedoh: Trade Y3 G3 Tuxhedoh\n\trbryan: Well, at least you&#39;re not mixing up comments and orders entry places...\r\n\n\n11) rbryan: Trade G1 Y1 Bluonia\n\n12) Tuxhedoh: Move R1 Tuxhedoh Bluonia\n\n13) rbryan: Move G1 Bluonia Tuxhedoh\n\n14) Tuxhedoh: Attack Y1N Bluonia\n\n15) rbryan: Build G1 Tuxhedoh\nCatastrophe Tuxhedoh G\n\n16) Tuxhedoh: Move Y1 Bluonia Tuxhedoh\n\n17) rbryan: Build G1 Rbryan\n\n18) Tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n19) rbryan: Trade G1 R1 Rbryan\n\n20) Tuxhedoh: Build Y1 Tuxhedoh\n\n21) rbryan: Discover G3 Rbryan Y1 Doom\n\n22) Tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n23) rbryan: Move G3 Doom Tuxhedoh\n\tTuxhedoh: Not sure that there&#39;s anythign I can do to win at this point\n\n24) Tuxhedoh: Trade R1 G1 Tuxhedoh\n\trbryan: Yeah, I think I&#39;ve got you.  I&#39;d be happy to play again if you&#39;re up for a rematch...\n\n25) rbryan: Trade G3 R3 Tuxhedoh\n\trbryan: trade g3 r3 tuxhedo\n\n\tSYSTEM: Tuxhedoh resigns.\n\nHomeworlds Online (SDG# 677)\nStarted: 2005.9.12, Ended: 2005.9.14\nParticipants: Jesse (S), MatrixFrog (N)\nWinner: Jesse\n\n1) MatrixFrog: Homeworld B3 G2 Y3\n\n2) Jesse: Homeworld G2 B1 Y3\n\tMatrixFrog: Hello.\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tJesse: Hello.\n\n4) Jesse: Build Y1 Jesse\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Jesse: Discover Y1 Jesse G3 Bluey\n\n7) MatrixFrog: Discover Y1 Matrixfrog G1 Tritium\n\n8) Jesse: Build Y2 Jesse\n\n9) MatrixFrog: Build Y2 Tritium\n\n10) Jesse: Build Y2 Bluey\n\n11) MatrixFrog: Discover Y2 Tritium B3 Lithium\n\n12) Jesse: Trade Y2 R2 Jesse\n\n13) MatrixFrog: Trade Y3 R3 Matrixfrog\n\tJesse: I have to keep an eye on you, don&#39;t I?\n\tMatrixFrog: Um, I suppose so? I&#39;m still somewhat new to this, although I think I&#39;ve gotten better since I joined SDG. But... sure you do?\n\n14) Jesse: Discover Y1 Bluey B1 Redgiant\n\n15) MatrixFrog: Build R1 Matrixfrog\n\tMatrixFrog: You&#39;re either colorblind or obnoxious.\n\n16) Jesse: Build R1 Jesse\n\tJesse: Is that obnoxious?  Sorry.  I just found it amusingly perverse.\n\tJesse: Oh, about keeping an eye out: You twice made moves that threatened an immediate victory, and I almost overlooked them.\n\n17) MatrixFrog: Build Y2 Matrixfrog\n\tMatrixFrog: Oh, no I found it amusing too. Obnoxious, but also amusing.\n\n18) Jesse: Build Y3 Bluey\n\n19) MatrixFrog: Move R3 Matrixfrog Tritium\n\n20) Jesse: Build Y3 Jesse\n\tJesse: I think you should have taken that large yellow, rather than letting me get it.\n\n21) MatrixFrog: Move R3 Tritium Lithium\n\n22) Jesse: Move Y3 Bluey Redgiant\n\tMatrixFrog: You&#39;re probably right.\n\tMatrixFrog: ... tritium, lithium, tritium, lithium, tritium, lithium...\n\n23) MatrixFrog: Trade Y2 G2 Matrixfrog\n\n24) Jesse: Move R1 Jesse Bluey\n\n25) MatrixFrog: Move Y1 Tritium Lithium\n\n26) Jesse: Trade Y3 R3 Jesse\n\tMatrixFrog: The hyperspatial flux sounds like a cool place. Bunch of uninhabited stars floating around in some kind of multi-colored intergalactic vortex.\n\n27) MatrixFrog: Build Y2 Matrixfrog\n\tJesse: Too bad you&#39;re always leaving it behind, and everywhere you arrive, it isn&#39;t there anymore.\n\n28) Jesse: Trade Y3 G3 Redgiant\n\n29) MatrixFrog: Trade Y2 R2 Lithium\n\n30) Jesse: Sacrifice G3 Redgiant\nBuild Y2 Jesse\nBuild Y3 Bluey\nBuild Y3 Redgiant\n\n31) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove R3 Lithium Jesse\nMove R2 Lithium Jesse\nCatastrophe Jesse R\n\n32) Jesse: Trade Y2 R2 Jesse\n\n33) MatrixFrog: Build R1 Matrixfrog\n\tJesse: Very aggressive.  It set me back a little, but it cost you more than it did me.\n\n34) Jesse: Build R2 Jesse\n\n35) MatrixFrog: Build G1 Matrixfrog\n\tMatrixFrog: I suppose so, yes.\n\n36) Jesse: Move Y3 Redgiant Matrixfrog\n\n37) MatrixFrog: Move G1 Matrixfrog Redgiant\n\tJesse: Safety first.  Wait to attack until you can do so safely.  I&#39;ve been waiting for this since you moved your large ship out.\n\n38) Jesse: Sacrifice R2 Jesse\nAttack R1N Matrixfrog\nAttack R1N Matrixfrog\n\n39) MatrixFrog: Trade G2 R2 Matrixfrog\n\tMatrixFrog: I realize that what I&#39;m about to do kind of sucks, but I can&#39;t see anything better at the current moment.\n\tMatrixFrog: Wait. Nevermind. Hold on.\n\tMatrixFrog: Okay, I think I got it.\n\tMatrixFrog: No I don&#39;t. I suppose you&#39;ve won.\n\n40) Jesse: Sacrifice R2 Jesse\nAttack R2N Matrixfrog\nAttack Y1N Matrixfrog\n\tJesse: Right, you&#39;re pretty well defenseless at this point.  This kind of move is why I built an extra r2 before launching the attack.\n\tJesse: Imagine how much more preparation I would have needed if you still had a large ship at home.\n\tJesse: Thanks for the game!\n\n\nHomeworlds Online (SDG# 681)\nStarted: 2005.9.12, Ended: 2005.9.13\nParticipants: Tuxhedoh (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B3 Y1 G3\n\n2) Tuxhedoh: Homeworld R1 Y3 G3\n\tTwoShort: Hello\n\n3) TwoShort: Build G1 Twoshort\n\tTuxhedoh: Stink\r\nI messed up. oh well. we can play it out.\n\n4) Tuxhedoh: Build G1 Tuxhedoh\n\tTwoShort: Having no starting blue will certainly be a challenge.  If you&#39;d rather quit and start over, that&#39;s fine too.\n\n5) TwoShort: Build G1 Twoshort\n\n6) Tuxhedoh: Build G2 Tuxhedoh\n\n7) TwoShort: Discover G1 Twoshort B2 Bob\n\n8) Tuxhedoh: Move G1 Tuxhedoh Bob\n\n9) TwoShort: Trade G1 R1 Bob\n\n10) Tuxhedoh: Trade G1 B1 Bob\n\n11) TwoShort: Attack B1S Bob\n\n12) Tuxhedoh: Build G1 Tuxhedoh\n\n13) TwoShort: Build G1 Twoshort\n\n14) Tuxhedoh: Move G2 Tuxhedoh Bob\n\n15) TwoShort: Move G1 Twoshort Bob\n\n16) Tuxhedoh: Discover G1 Tuxhedoh Y2 Tux2\n\n17) TwoShort: Discover G1 Twoshort B2 Joe\n\n18) Tuxhedoh: Trade G2 R2 Bob\n\n19) TwoShort: Build B1 Bob\n\n20) Tuxhedoh: Attack G1N Bob\n\n21) TwoShort: Trade R1 B1 Bob\nCatastrophe Bob Blue\n\n22) Tuxhedoh: Build G1 Tuxhedoh\n\n23) TwoShort: Build G2 Twoshort\n\tTwoShort: create g2 twoshort\r\n\n\n24) Tuxhedoh: Build G2 Tuxhedoh\n\n25) TwoShort: Trade G3 Y3 Twoshort\n\n26) Tuxhedoh: Move G2 Tuxhedoh Joe\n\n27) TwoShort: Build G2 Twoshort\n\n28) Tuxhedoh: Build G3 Tuxhedoh\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Joe Tuxhedoh\nPass\nPass\nCatastrophe Tuxhedoh Green\n\n\nHomeworlds Online (SDG# 684)\nVariants: &quot;Left man down&quot;\nStarted: 2005.9.13, Ended: 2005.9.26\nParticipants: Aaron (S), istari (W), zevzimra (N), rootbeer (E)\nWinner: zevzimra\n\n1) zevzimra: Homeworld G2 B3 Y3\n\trootbeer: To be sure I understand: If Aaron (S) is eliminated, I win. If I am eliminated, zevzimra (N) wins. Right?\n\tAaron: nay, only if *you* eliminate me do you win.  If Istari eliminates me first, then your left-hand opponent becomes Istari and you have to eliminate him to win.\r\n\n\n2) rootbeer: Homeworld B1 Y3 G3\n\n3) Aaron: Homeworld R1 Y2 G3\n\n4) istari: Homeworld B3 R3 Y3\n\n5) zevzimra: Build Y1 Zevzimra\n\n6) rootbeer: Build G1 Rootbeer\n\n7) Aaron: Build G1 Aaron\n\n8) istari: Trade Y3 G3 Istari\n\n9) zevzimra: Trade Y1 G1 Zevzimra\n\n10) rootbeer: Discover G1 Rootbeer Y2 Switzerland\n\n11) Aaron: Discover G1 Aaron B3 Waves\n\n12) istari: Build G1 Istari\n\n13) zevzimra: Build G1 Zevzimra\n\n14) rootbeer: Build G2 Switzerland\n\n15) Aaron: Build G2 Aaron\n\n16) istari: Pass\n\n17) zevzimra: Build G2 Zevzimra\n\n18) rootbeer: Build G2 Rootbeer\n\n19) Aaron: Build G3 Waves\n\n20) istari: Build G3 Istari\n\n21) zevzimra: Trade G2 R2 Zevzimra\n\n22) rootbeer: Move G1 Switzerland Istari\nCatastrophe Istari Green\n\n23) Aaron: Trade G3 Y3 Waves\n\n24) zevzimra: Discover G1 Zevzimra Y1 Alpha\n\n25) rootbeer: Build G1 Switzerland\n\n26) Aaron: Move G2 Aaron Waves\n\n27) zevzimra: Move G1 Zevzimra Alpha\n\n28) rootbeer: Discover G2 Switzerland B3 Bowtie\n\n29) Aaron: Move G1 Waves Switzerland\n\n30) zevzimra: Discover G1 Alpha Y2 Beta\n\n31) rootbeer: Construct G1 Bowtie\n\n32) Aaron: Sacrifice Y3 Waves\nMove G2 Waves Switzerland\nMove G2 Switzerland Rootbeer\nMove G1 Switzerland Rootbeer\nCatastrophe Rootbeer Green\n\n33) zevzimra: Build G1 Alpha\n\tAaron: Sorry rootbeer, but if I didn&#39;t do it, Zev would have and I can&#39;t let that happen.\n\n34) Aaron: Build G2 Aaron\n\n35) zevzimra: Move R2 Zevzimra Alpha\n\tSYSTEM: rootbeer resigns.\n\n36) Aaron: Move G3 Aaron Bowtie\n\tAaron: ahh, I see my problem now /\n\n37) zevzimra: Move G1 Alpha Bowtie\nCatastrophe Bowtie G\n\n\tSYSTEM: Aaron resigns.\n\tAaron: I sincerely apologize.  Something&#39;s wrong with the code.  Checking now and closing the game.\n\nHomeworlds Online (SDG# 688)\nStarted: 2005.9.13, Ended: 2005.10.9\nParticipants: zapple (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld Y1 G3 B3\n\n2) zapple: Homeworld Y1 G2 B3\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) zapple: Build B1 Zapple\n\n5) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n6) zapple: Discover B1 Zapple Y3 Asdf\n\tMatrixFrog: Game #2...\n\tzapple: discover b1 zapple y3 asdf\n\n7) MatrixFrog: Build Y2 Matrixfrog\n\n8) zapple: Trade B1 G1 Asdf\n\n9) MatrixFrog: Build B1 Matrixfrog\n\n10) zapple: Build B1 Zapple\n\n11) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n12) zapple: Trade B1 R1 Zapple\n\n13) MatrixFrog: Build B1 Matrixfrog\n\n14) zapple: Build B1 Zapple\n\n15) MatrixFrog: Trade B1 R1 Matrixfrog\n\n16) zapple: Move B1 Zapple Asdf\n\n17) MatrixFrog: Build R1 Matrixfrog\n\n18) zapple: Build B1 Asdf\n\n19) MatrixFrog: Build Y1 Matrixfrog\n\n20) zapple: Build R2 Zapple\n\n21) MatrixFrog: Discover Y2 Matrixfrog G2 Crunch\n\n\tSYSTEM: zapple resigns.\n\nHomeworlds Online (SDG# 689)\nStarted: 2005.9.13, Ended: 2005.9.14\nParticipants: TwoShort (S), fluxinator (N)\nWinner: TwoShort\n\n1) fluxinator: Homeworld G2 G3 G3\n\n2) TwoShort: Homeworld B3 Y2 G3\n\n\tTwoShort: Is this a joke of some sort?\n\tfluxinator: umm why did I make a bad move?\r\n\n\tSYSTEM: fluxinator resigns.\n\nHomeworlds Online (SDG# 691)\nStarted: 2005.9.14, Ended: 2005.9.20\nParticipants: Jesse (S), TwoShort (N)\nWinner: Jesse\n\n1) TwoShort: Homeworld B2 Y1 G3\n\tJesse: In the beginning, the heavens were without substance or form, except for having maybe a few stars in the background for interest, and being neatly divided into parcels ten trillion cubits to a side.\n\tJesse: Other than that, you know, nothing.\n\tTwoShort: homeworld b2 y1 g3\n\n2) Jesse: Homeworld Y2 B3 G3\n\tTwoShort: then suddenly... stuff!\n\n3) TwoShort: Build G1 Twoshort\n\n4) Jesse: Build G1 Jesse\n\tJesse: Yes, two great civilizations arose.  Was it a quantum fluctuation?  One civilization and its anticivilization?  Whyfor is the symmetry breaking between them?  We know not, but that it is believed by many to be the miracle of homeworldogensis.\n\n5) TwoShort: Build G1 Twoshort\n\tJesse: By the way, played much?\n\n6) Jesse: Discover G1 Jesse Y1 Horch\n\tTwoShort: Only a few times...\n\n7) TwoShort: Discover G1 Twoshort B3 Foosia\n\tJesse: Did you read the strategy tips I put on the wiki?\n\n8) Jesse: Build G2 Jesse\n\n9) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Foosia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n10) Jesse: Build G3 Jesse\n\tTwoShort: I&#39;ve read and thought about Homeworlds quite a bit.  Many years ago I lived in DC and hung out with the Wunderland crowd.  I still follow Andys website, and I was intrigud when he raved about binary homeworlds.  I&#39;m a big fan of pure strategy games, but the rest of my current gaming crew are not, so I haven&#39;t gotten to actually play much before.  So you should probably expect some mix of smart moves and really stupid mistakes... \n\n11) TwoShort: Trade G2 Y2 Foosia\n\n12) Jesse: Trade G3 R3 Jesse\n\tJesse: Excellent.  You&#39;re doing great so far.  I look forward to the rest of the game.\n\n13) TwoShort: Trade G2 R2 Twoshort\n\n14) Jesse: Trade G2 Y2 Jesse\n\n15) TwoShort: Discover G1 Foosia Y1 Yellonia\n\n16) Jesse: Discover Y2 Jesse B1 Zuban\n\n17) TwoShort: Build G2 Yellonia\n\n18) Jesse: Build R1 Jesse\n\n19) TwoShort: Sacrifice G2 Yellonia\nBuild Y3 Foosia\nBuild G2 Yellonia\n\n20) Jesse: Sacrifice G3 Jesse\nBuild G2 Horch\nBuild G2 Horch\nBuild Y3 Zuban\n\n21) TwoShort: Sacrifice Y3 Foosia\nMove G1 Yellonia Foosia\nMove G1 Foosia Horch\nDiscover Y2 Foosia B1 Bluto\nCatastrophe Horch Green\n\n22) Jesse: Discover Y2 Zuban G3 Triffid\n\n23) TwoShort: Build R1 Twoshort\n\n24) Jesse: Trade R1 G1 Jesse\n\n25) TwoShort: Build G1 Yellonia\n\n26) Jesse: Build R1 Jesse\n\n27) TwoShort: Trade Y2 B2 Bluto\n\n28) Jesse: Build G2 Jesse\n\n29) TwoShort: Sacrifice G2 Yellonia\nBuild G2 Yellonia\nBuild B1 Bluto\n\tJesse: Very interesting.\n\n30) Jesse: Move G2 Jesse Zuban\n\tTwoShort: That&#39;s one way of puttting it...\r\nI was going to go with &quot;My brain hurts&quot;\n\tJesse: Mine too.  You can really keep the pressure up.\n\n31) TwoShort: Discover G1 Yellonia Y3 Oldyeller\n\n32) Jesse: Trade R3 G3 Jesse\n\n33) TwoShort: Build G2 Yellonia\n\n34) Jesse: Sacrifice G3 Jesse\nBuild R1 Jesse\nBuild R2 Jesse\nBuild G3 Zuban\n\n35) TwoShort: Trade G3 Y3 Twoshort\n\n36) Jesse: Build G3 Jesse\n\n37) TwoShort: Trade B2 R2 Bluto\n\tJesse: Well, we&#39;ll see if this turns out to be foolish...\n\n38) Jesse: Trade R1 Y1 Jesse\n\n39) TwoShort: Move G2 Yellonia Jesse\n\tTwoShort: As long as we&#39;re seeing what turns out to be foolish...\n\n40) Jesse: Attack G2N Jesse\n\tJesse: Yes, that&#39;s definitely a stong attack option.  There&#39;s not much I can do except capture your piece and let you destroy my large defender, without losing a large of your own.\n\n41) TwoShort: Sacrifice G1 Oldyeller\nBuild B2 Bluto\n\tJesse: However, I think if you do that, I can leave you crippled.\n\tTwoShort: I think I&#39;m doomed unless I can press the attack home in short order.  Which I don&#39;t think I can do.  But let&#39;s try this...\n\n42) Jesse: Sacrifice G2 Jesse\nBuild Y2 Zuban\nBuild Y3 Triffid\n\n43) TwoShort: Sacrifice G2 Yellonia\nBuild R1 Twoshort\nBuild R3 Bluto\n\tJesse: It would probably have been better to trade r2-&gt;y2 at bluto first, so you could have built the y3 yourself when you did that sacrifice action.\n\tJesse: Hmm, then again...\n\tJesse: I think I can weather that storm.  Hmm...\n\n44) Jesse: Sacrifice Y2 Zuban\nMove Y2 Triffid Twoshort\nMove Y3 Triffid Twoshort\nCatastrophe Twoshort Y\n\tJesse: Ooh, the storm is more severe than I thought.  :D\n\tJesse: Ah, but it&#39;s stalled harmlessly out at sea.\n\n45) TwoShort: Trade R2 Y2 Twoshort\n\tTwoShort: Fortune strums a weary tune for he whose campaign peaks too soon.\n\n46) Jesse: Move G3 Zuban Twoshort\n\tTwoShort: I suppose I could resign at this point; it&#39;s only a question of how long I can delay the inevitable\n\n47) TwoShort: Sacrifice Y2 Twoshort\nMove R3 Bluto Jesse\nMove R2 Bluto Jesse\nCatastrophe Jesse Red\n\tJesse: Not very long, I think, but I&#39;ve been surprized before.\n\tJesse: As for campaigns peaking, I&#39;ve definitely found that attacking before you&#39;re sure you can drive the victory home often ends in defeat.\n\tTwoShort: When in doubt, my instincts are certainly skewed toward offense; which as I suspected, did not serve me well, since you were able to keep diffusing my threats while getting stronger, until I was finally left thrashing in futility.  Speaking of which, I can stop you from using red like this...\n\n48) Jesse: Trade G3 B3 Twoshort\n\tTwoShort: But I still see how you can win unstopably on the turn after this one.\n\n49) TwoShort: Sacrifice B2 Bluto\nTrade R1 G1 Twoshort\nTrade R1 Y1 Twoshort\n\tJesse: Actually, there is a way for you to delay it one more move.  It is rather pointless, but see if you can find it anyway.  :)\n\tJesse: Great game by the way.  Thanks!\n\n50) Jesse: Sacrifice G2 Zuban\nBuild B2 Twoshort\nBuild B2 Twoshort\nCatastrophe Twoshort B\n\tTwoShort: But TwoShort is a peaceful planet!  We have no weapons...\n\tTwoShort: oops, didn&#39;t see your chalenge of finding the way to delay before I went for the dumb Star Wars joke... let&#39;s see\n\tTwoShort: Ahh, I could have sacrificed my small green to grow blue at bluto, but not called catastrophe.  Oh well, at least I got in a dumb Star Wars joke.\r\n\n\tTwoShort: And yes, great game!  \n\tJesse: Right!  Of course, then I trade my y3 for r3, call the ctastrophe myself, and either blow you up or take your ships on the next turn.\n\tJesse: I don&#39;t usually blow up my opponents&#39; homeworlds, but...\n\n\nHomeworlds Online (SDG# 703)\nStarted: 2005.9.14, Ended: 2005.9.27\nParticipants: pigasuspig (S), zevzimra (N)\nWinner: pigasuspig\n\n1) zevzimra: Homeworld B1 G2 Y3\n\n2) pigasuspig: Homeworld B1 G3 R3\n\n3) zevzimra: Build Y1 Zevzimra\n\n4) pigasuspig: Build R1 Pigasuspig\n\n5) zevzimra: Discover Y1 Zevzimra G3 Bob\n\n6) pigasuspig: Build R1 Pigasuspig\n\n7) zevzimra: Build Y1 Bob\n\n8) pigasuspig: Trade R1 Y1 Pigasuspig\n\n9) zevzimra: Build Y2 Bob\n\n10) pigasuspig: Build Y2 Pigasuspig\n\n11) zevzimra: Build Y2 Zevzimra\n\n12) pigasuspig: Build Y3 Pigasuspig\n\n13) zevzimra: Build Y3 Zevzimra\n\n14) pigasuspig: Discover R1 Pigasuspig B2 Russia\n\n15) zevzimra: Trade Y3 R3 Zevzimra\n\n16) pigasuspig: Move Y3 Pigasuspig Russia\n\n17) zevzimra: Move R3 Zevzimra Bob\n\n18) pigasuspig: Sacrifice Y2 Pigasuspig\nMove R1 Russia Bob\nDiscover Y3 Russia R3 Steve\n\n19) zevzimra: Attack R1S Bob\n\n20) pigasuspig: Build Y2 Pigasuspig\n\n21) zevzimra: Move R1 Bob Zevzimra\n\n22) pigasuspig: Discover Y1 Pigasuspig G2 Fern\n\n23) zevzimra: Move R3 Bob Fern\n\n24) pigasuspig: Move Y1 Fern Bob\nCatastrophe Bob Y\n\n25) zevzimra: Build R1 Fern\n\tzevzimra: OUCH!  Nice move!\n\n26) pigasuspig: Build Y1 Pigasuspig\n\n27) zevzimra: Build R1 Zevzimra\n\n28) pigasuspig: Build Y1 Pigasuspig\n\n29) zevzimra: Discover Y2 Zevzimra B3 Notbob\n\n30) pigasuspig: Trade Y1 G1 Pigasuspig\n\n31) zevzimra: Build R2 Zevzimra\n\n32) pigasuspig: Trade Y1 B1 Pigasuspig\n\n33) zevzimra: Trade R2 B2 Zevzimra\n\n34) pigasuspig: Build G1 Pigasuspig\n\n35) zevzimra: Move R1 Zevzimra Notbob\n\n36) pigasuspig: Discover G1 Pigasuspig B2 Siam\n\n37) zevzimra: Move Y2 Notbob Fern\n\n38) pigasuspig: Move Y3 Steve Siam\n\n39) zevzimra: Build R2 Fern\n\n40) pigasuspig: Move R3 Pigasuspig Fern\nCatastrophe Fern R\n\n41) zevzimra: Build Y1 Fern\n\n42) pigasuspig: Build Y1 Siam\n\n43) zevzimra: Trade R1 G1 Zevzimra\n\n44) pigasuspig: Build G2 Siam\n\n45) zevzimra: Move G1 Zevzimra Notbob\n\n46) pigasuspig: Discover G2 Siam B3 Monster\n\n47) zevzimra: Construct G3 Notbob\n\n48) pigasuspig: Build G3 Monster\n\n49) zevzimra: Trade G3 R3 Notbob\n\n50) pigasuspig: Trade G1 R1 Pigasuspig\n\n51) zevzimra: Sacrifice Y2 Fern\nMove R3 Notbob Fern\nMove R3 Fern Pigasuspig\n\n52) pigasuspig: Sacrifice G2 Monster\nBuild R1 Pigasuspig\nBuild R2 Pigasuspig\nCatastrophe Pigasuspig R\n\n53) zevzimra: Move Y1 Fern Notbob\n\n54) pigasuspig: Move Y3 Siam Notbob\n\n55) zevzimra: Trade Y3 R3 Zevzimra\n\n56) pigasuspig: Trade Y3 R3 Notbob\n\n57) zevzimra: Construct B2 Zevzimra\n\n58) pigasuspig: Build B3 Pigasuspig\n\n59) zevzimra: Trade R3 Y3 Zevzimra\n\n60) pigasuspig: Trade B3 R3 Pigasuspig\n\n61) zevzimra: Discover B2 Zevzimra G3 Notbobatall\n\n62) pigasuspig: Sacrifice Y2 Pigasuspig\nMove R3 Notbob Zevzimra\nMove G3 Monster Zevzimra\n\n\tSYSTEM: zevzimra resigns.\n\nHomeworlds Online (SDG# 709)\nStarted: 2005.9.14, Ended: 2005.9.15\nParticipants: Samaculus (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B3 G1 Y3\n\n2) Samaculus: Homeworld G3 Y2 R3\n\tMatrixFrog: Welcome!\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Samaculus: Build R1 Samaculus\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Samaculus: Discover R3 Samaculus Y1 Cheddar\n\n7) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n8) Samaculus: Build R1 Samaculus\n\n9) MatrixFrog: Build R2 Matrixfrog\n\n10) Samaculus: Discover R1 Samaculus B1 Wave\n\n11) MatrixFrog: Build R2 Matrixfrog\n\n12) Samaculus: Trade R1 G1 Wave\n\n13) MatrixFrog: Discover R2 Matrixfrog B2 Aqua\n\n14) Samaculus: Build R1 Samaculus\n\n15) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove R2 Aqua Wave\n\n16) Samaculus: Discover R3 Cheddar B2 Deep\n\n17) MatrixFrog: Attack G1S Wave\n\n18) Samaculus: Trade R3 G3 Deep\n\n19) MatrixFrog: Build R2 Wave\n\n20) Samaculus: Move R1 Samaculus Wave\n\n21) MatrixFrog: Attack R1S Wave\n\n22) Samaculus: Build R3 Samaculus\n\n23) MatrixFrog: Move R1 Matrixfrog Deep\n\n24) Samaculus: Build R3 Samaculus\n\n25) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove R2 Wave Samaculus\nMove R2 Wave Samaculus\nMove R1 Wave Samaculus\nCatastrophe Samaculus R\n\n\nHomeworlds Online (SDG# 710)\nStarted: 2005.9.15, Ended: 2005.9.22\nParticipants: MatrixFrog (S), Samaculus (N)\nWinner: Samaculus\n\n1) Samaculus: Homeworld B3 Y2 G3\n\n2) MatrixFrog: Homeworld G1 R2 Y3\n\n3) Samaculus: Build G1 Samaculus\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Samaculus: Build G1 Samaculus\n\tSamaculus: why isn&#39;t your homeworld blue?  Are you going easy?  I guess I deserve it for being such a spaz...\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) Samaculus: Discover G1 Samaculus B1 Ultramar\n\n8) MatrixFrog: Discover Y1 Matrixfrog B3 X\n\tMatrixFrog: I don&#39;t know... I like having a red star in my homeworld. It&#39;s not necessarily the smartest strategy, but it&#39;s fun that way.\n\n9) Samaculus: Build G2 Ultramar\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\tSamaculus: Who are you? Daffy Duck? Duck Doggers?  Who names their planet &quot;X&quot;?  Piffle!\n\tMatrixFrog: I&#39;m trying to have a theme. In a game I played recently, all my planets were greek letters: alpha, beta, gamma...\r\n\r\nThis time I&#39;m going with &quot;rarely used letters&quot; I suppose\n\n11) Samaculus: Build G2 Ultramar\n\n12) MatrixFrog: Move Y1 Matrixfrog X\n\n13) Samaculus: Trade G1 R1 Samaculus\n\tSamaculus: I can dig the theme\n\n14) MatrixFrog: Trade Y1 B1 X\n\n15) Samaculus: Build G1 Samaculus\n\n16) MatrixFrog: Move B1 X Matrixfrog\n\n17) Samaculus: Sacrifice G3 Samaculus\nBuild G2 Samaculus\nBuild G3 Samaculus\nBuild R1 Samaculus\n\n18) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n19) Samaculus: Discover G2 Samaculus Y1 Ichar Iv\n\n20) MatrixFrog: Move Y1 X Ultramar\n\n21) Samaculus: Sacrifice R1 Samaculus\nAttack Y1S Ultramar\n\n22) MatrixFrog: Build G3 Matrixfrog\n\n23) Samaculus: Trade G1 R1 Ultramar\n\n24) MatrixFrog: Discover G3 Matrixfrog Y3 Epsilon 5\n\n25) Samaculus: Sacrifice G2 Ichar\nBuild Y2 Ultramar\nBuild G1 Samaculus\n\tMatrixFrog: Going back to the Greek theme\n\n26) MatrixFrog: Discover G3 Epsilon R1 Sigma\n\n27) Samaculus: Trade G3 Y3 Samaculus\n\n28) MatrixFrog: Build B1 Matrixfrog\n\n29) Samaculus: Discover G2 Ultramar B3 Holy Terra\n\n30) MatrixFrog: Trade G3 B3 Matrixfrog\n\n31) Samaculus: Trade G2 B2 Holy Terra\n\n32) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n33) Samaculus: Build G2 Ultramar\n\n34) MatrixFrog: Trade B3 R3 Matrixfrog\n\n35) Samaculus: Trade B2 R2 Holy Terra\n\n36) MatrixFrog: Move R3 Matrixfrog Holy\n\n37) Samaculus: Sacrifice Y2 Ultramar\nMove R2 Holy Ultramar\nMove Y3 Samaculus Ultramar\n\n38) MatrixFrog: Build B1 Matrixfrog\n\n39) Samaculus: Sacrifice G2 Ultramar\nBuild R2 Samaculus\nBuild R3 Samaculus\n\n40) MatrixFrog: Build B2 Matrixfrog\n\n41) Samaculus: Discover R2 Ultramar Y3 Macragge\n\n42) MatrixFrog: Move Y1 Matrixfrog Holy\n\n43) Samaculus: Build R3 Ultramar\n\n44) MatrixFrog: Build Y2 Matrixfrog\n\n45) Samaculus: Trade G2 B2 Ultramar\n\n46) MatrixFrog: Move B2 Matrixfrog Holy\n\n47) Samaculus: Move R3 Ultramar Macragge\n\n48) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove G3 Sigma Holy\nMove G3 Holy Matrixfrog\n\n49) Samaculus: Move R1 Ultramar Macragge\n\n50) MatrixFrog: Build Y2 Matrixfrog\n\n51) Samaculus: Sacrifice Y3 Ultramar\nMove R1 Macragge Matrixfrog\nMove R2 Macragge Matrixfrog\nMove R3 Macragge Matrixfrog\nCatastrophe Matrixfrog Red\n\n52) MatrixFrog: Trade B1 R1 Matrixfrog\n\n53) Samaculus: Trade B2 Y2 Ultramar\n\n54) MatrixFrog: Move R1 Matrixfrog Samaculus\nCatastrophe Samaculus R\n\n55) Samaculus: Move Y1 Ultramar Samaculus\n\n56) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove R3 Holy Matrixfrog\nMove R3 Matrixfrog Samaculus\n\n57) Samaculus: Sacrifice Y2 Ultramar\nMove G1 Samaculus Matrixfrog\nMove G1 Samaculus Matrixfrog\n\n58) MatrixFrog: Move G3 Matrixfrog Samaculus\n\n59) Samaculus: Build G2 Matrixfrog\nCatastrophe Matrixfrog Green\n\tMatrixFrog: Declaring a catastrophe is always optional.\n\n\nHomeworlds Online (SDG# 711)\nStarted: 2005.9.15, Ended: 2005.9.23\nParticipants: rootbeer (S), petmar (N)\nWinner: rootbeer\n\n\tSYSTEM: petmar resigns.\n\nHomeworlds Online (SDG# 713)\nStarted: 2005.9.15, Ended: 2005.9.15\nParticipants: rootbeer (S), pigasuspig (N)\nWinner: pigasuspig\n\n1) pigasuspig: Homeworld B2 G1 R3\n\n2) rootbeer: Homeworld B2 G2 Y3\n\n3) pigasuspig: Build R1 Pigasuspig\n\n4) rootbeer: Build Y1 Rootbeer\n\n5) pigasuspig: Trade R1 Y1 Pigasuspig\n\n6) rootbeer: Discover Y1 Rootbeer G3 Route66\n\n7) pigasuspig: Discover Y1 Pigasuspig R3 Kissinger\n\n8) rootbeer: Build Y1 Rootbeer\n\n9) pigasuspig: Move Y1 Kissinger Rootbeer\n\n10) rootbeer: Construct Y2 Rootbeer\n\n11) pigasuspig: Build R1 Pigasuspig\nCatastrophe Rootbeer Y\n\n\nHomeworlds Online (SDG# 717)\nStarted: 2005.9.20, Ended: 2005.9.21\nParticipants: rootbeer (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 G1 Y3\n\n2) rootbeer: Homeworld B1 Y2 G3\n\tts52: Good luck!\n\n3) ts52: Build Y1 Ts52\n\n4) rootbeer: Build G1 Rootbeer\n\n5) ts52: Discover Y1 Ts52 B2 Discordia\n\n6) rootbeer: Build G1 Rootbeer\n\tts52: All hail Eris!\n\trootbeer: Eris?\n\trootbeer: Of Discordia?\r\n\n\n7) ts52: Build Y1 Ts52\n\n8) rootbeer: Trade G3 R3 Rootbeer\n\tts52: Of course!\n\n9) ts52: Trade Y3 G3 Ts52\n\n10) rootbeer: Build G2 Rootbeer\n\tts52: What&#39;s this? A weapon? I thought this was a peaceful galaxy??\n\n11) ts52: Build G2 Ts52\n\n12) rootbeer: Discover G2 Rootbeer Y3 Lizaminelli\n\n13) ts52: Move G2 Ts52 Discordia\n\n14) rootbeer: Build G2 Lizaminelli\n\n15) ts52: Build G3 Discordia\n\n16) rootbeer: Move G2 Lizaminelli Discordia\n\n17) ts52: Trade G3 R3 Discordia\n\n18) rootbeer: Build G3 Discordia\n\n19) ts52: Build G3 Ts52\n\n20) rootbeer: Trade G2 Y2 Discordia\n\n21) ts52: Attack Y2S Discordia\n\n22) rootbeer: Sacrifice G2 Lizaminelli\nBuild G2 Discordia\nBuild G2 Discordia\n\n23) ts52: Discover G2 Discordia Y3 Persiod\n\n24) rootbeer: Trade G3 Y3 Discordia\n\n25) ts52: Attack Y3S Discordia\n\n26) rootbeer: Build G3 Rootbeer\n\n27) ts52: Sacrifice Y1 Discordia\nMove G2 Persiod Rootbeer\nCatastrophe Rootbeer Green\n\n\tSYSTEM: rootbeer resigns.\n\nHomeworlds Online (SDG# 728)\nStarted: 2005.9.20, Ended: 2005.9.21\nParticipants: MatrixFrog (S), pigasuspig (N)\nWinner: pigasuspig\n\n1) pigasuspig: Homeworld B1 G2 Y3\n\n2) MatrixFrog: Homeworld Y1 B3 G3\n\n3) pigasuspig: Build Y1 Pigasuspig\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) pigasuspig: Build Y1 Pigasuspig\n\n6) MatrixFrog: Build G1 Matrixfrog\n\n7) pigasuspig: Trade Y1 B1 Pigasuspig\n\n8) MatrixFrog: Discover G1 Matrixfrog Y2 Alpha\n\n9) pigasuspig: Trade Y3 G3 Pigasuspig\n\n10) MatrixFrog: Build G1 Alpha\n\n11) pigasuspig: Build Y1 Pigasuspig\n\n12) MatrixFrog: Discover G1 Alpha R3 Beta\n\n13) pigasuspig: Build B1 Pigasuspig\n\n14) MatrixFrog: Move G1 Alpha Beta\n\n15) pigasuspig: Trade B1 R1 Pigasuspig\n\n16) MatrixFrog: Build G2 Matrixfrog\n\n17) pigasuspig: Discover Y1 Pigasuspig B3 Zephyr\n\n18) MatrixFrog: Trade G1 B1 Matrixfrog\n\n19) pigasuspig: Build Y2 Pigasuspig\n\n20) MatrixFrog: Trade G2 Y2 Matrixfrog\n\n21) pigasuspig: Trade G3 R3 Pigasuspig\n\n22) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove G1 Beta Pigasuspig\nMove G1 Beta Pigasuspig\n\n23) pigasuspig: Move R3 Pigasuspig Zephyr\n\n24) MatrixFrog: Build G1 Pigasuspig\nCatastrophe Pigasuspig G\n\n25) pigasuspig: Sacrifice Y2 Pigasuspig\nDiscover R3 Zephyr Y2 Disposable\nMove R3 Disposable Matrixfrog\n\n26) MatrixFrog: Build G1 Matrixfrog\n\n27) pigasuspig: Attack G3S Matrixfrog\n\n28) MatrixFrog: Build G1 Matrixfrog\n\n29) pigasuspig: Sacrifice R3 Matrixfrog\nAttack G1S Matrixfrog\nAttack G1S Matrixfrog\nAttack B1S Matrixfrog\n\n\nHomeworlds Online (SDG# 738)\nStarted: 2005.9.21, Ended: 2005.9.24\nParticipants: Jesse (S), CDRodeffer (N)\nWinner: Jesse\n\n1) CDRodeffer: Homeworld B1 Y2 G3\n\n2) Jesse: Homeworld B3 Y1 G3\n\tJesse: Hola\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\n4) Jesse: Build G1 Jesse\n\tCDRodeffer: Howdy.\n\n5) CDRodeffer: Trade G1 R1 Cdrodeffer\n\n6) Jesse: Trade G1 R1 Jesse\n\n7) CDRodeffer: Build G1 Cdrodeffer\n\tJesse: If it&#39;s guns you want, it&#39;s guns you get.\n\tCDRodeffer: Not just guns, I just like to have all types in my home system.\n\n8) Jesse: Build G1 Jesse\n\n9) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tJesse: Oh, I can&#39;t argue with that.  I just usually don&#39;t jump into guns until I can at least choose what size to go with.\n\n10) Jesse: Discover G1 Jesse B2 Tick\n\n11) CDRodeffer: Build G1 Cdrodeffer\n\n12) Jesse: Build G1 Jesse\n\n13) CDRodeffer: Trade G1 B1 Cdrodeffer\n\n14) Jesse: Discover G1 Jesse B2 Tocquila\n\n15) CDRodeffer: Discover Y1 Cdrodeffer R3 Beetlejuice\n\n16) Jesse: Build G1 Jesse\n\n17) CDRodeffer: Build G2 Cdrodeffer\n\tJesse: Happy equinox, coming up in about a half hour, by the way.\n\tCDRodeffer: Oh really? I don&#39;t notice such things. But tomorrow is our 5th wedding anniversary. Yay!\n\n18) Jesse: Build G2 Tocquila\n\tJesse: Well, happy anniversary.\n\n19) CDRodeffer: Move G2 Cdrodeffer Beetlejuice\n\n20) Jesse: Trade G2 Y2 Tocquila\n\n21) CDRodeffer: Build G2 Cdrodeffer\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G2 Tocquila\nBuild G3 Jesse\nBuild G3 Tick\n\n23) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild B1 Cdrodeffer\nBuild Y1 Beetlejuice\n\n24) Jesse: Sacrifice G3 Jesse\nBuild Y2 Tocquila\nBuild R1 Jesse\nBuild G3 Jesse\n\tCDRodeffer: Ah, so you too are familiar with the factory! Good.\n\tJesse: Indeed.  It&#39;s good to see you&#39;re pleased, since that says something about you, as well.\n\n25) CDRodeffer: Move Y1 Beetlejuice Cdrodeffer\n\n26) Jesse: Sacrifice Y2 Tocquila\nMove G3 Tick Beetlejuice\nMove R1 Jesse Tocquila\n\n27) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild Y2 Beetlejuice\nBuild Y3 Beetlejuice\n\n28) Jesse: Attack Y3N Beetlejuice\n\n29) CDRodeffer: Construct Y3 Beetlejuice\nCatastrophe Beetlejuice Yellow\n\n30) Jesse: Sacrifice G3 Jesse\nBuild R2 Jesse\nBuild Y1 Tocquila\nBuild G3 Jesse\n\tCDRodeffer: Wow. There seems to have been a whole series of unfortunate events.\n\tJesse: Ooh, ouch!  I thought you were planning to factory up a Y3 at the homeworld along with that.\n\n31) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild R2 Cdrodeffer\nBuild Y2 Cdrodeffer\n\n32) Jesse: Sacrifice Y2 Tocquila\nMove Y1 Tocquila Beetlejuice\nMove Y1 Beetlejuice Cdrodeffer\nCatastrophe Cdrodeffer Y\n\tCDRodeffer: Oh, it&#39;s not nearly as bad as all that.\n\n33) CDRodeffer: Build B2 Cdrodeffer\nCatastrophe Cdrodeffer Blue\n\n\nHomeworlds Online (SDG# 742)\nStarted: 2005.9.22, Ended: 2005.11.3\nParticipants: pigasuspig (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) pigasuspig: Homeworld B1 G2 Y3\n\n3) ts52: Build G1 Ts52\n\n4) pigasuspig: Build Y1 Pigasuspig\n\tts52: sorry for the delay. for some reason I&#39;m not getting email notices\n\tpigasuspig: I play daily, pretty much, so perhaps keep checking back. But don&#39;t worry too much, I went overtime on my first turn here.\r\n\n\n5) ts52: Build G1 Ts52\n\n6) pigasuspig: Build Y1 Pigasuspig\n\n7) ts52: Trade G1 B1 Ts52\n\n8) pigasuspig: Trade Y1 G1 Pigasuspig\n\n9) ts52: Discover G1 Ts52 B1 Persiphone\n\n10) pigasuspig: Trade Y1 R1 Pigasuspig\n\n11) ts52: Build B2 Ts52\n\n12) pigasuspig: Build G1 Pigasuspig\n\n13) ts52: Build G2 Persiphone\n\n14) pigasuspig: Discover G1 Pigasuspig B3 Hermes\n\n15) ts52: Move B2 Ts52 Persiphone\n\n16) pigasuspig: Build G2 Pigasuspig\n\n17) ts52: Build G3 Ts52\n\n18) pigasuspig: Sacrifice Y3 Pigasuspig\nMove G1 Pigasuspig Hermes\nMove G1 Hermes Persiphone\nMove G1 Persiphone Ts52\n\n19) ts52: Sacrifice B2 Persiphone\nTrade G3 R3 Ts52\nTrade G3 R3 Ts52\n\n20) pigasuspig: Build G3 Pigasuspig\n\n21) ts52: Attack G1S Ts52\n\n22) pigasuspig: Sacrifice G3 Pigasuspig\nBuild G3 Pigasuspig\nBuild G3 Hermes\nBuild G3 Hermes\n\n23) ts52: Trade B1 Y1 Ts52\n\n24) pigasuspig: Trade G1 Y1 Hermes\n\n25) ts52: Move R3 Ts52 Persiphone\n\n26) pigasuspig: Trade G3 Y3 Pigasuspig\n\n27) ts52: Build G1 Ts52\n\n28) pigasuspig: Build G3 Pigasuspig\n\n29) ts52: Build R1 Persiphone\n\n30) pigasuspig: Discover G3 Hermes R1 Mars\n\n31) ts52: Move Y1 Ts52 Persiphone\n\n32) pigasuspig: Build R2 Pigasuspig\n\n33) ts52: Discover G1 Persiphone Y3 Sol\n\n34) pigasuspig: Trade G2 B2 Pigasuspig\n\n35) ts52: Build G2 Sol\n\n36) pigasuspig: Sacrifice B2 Pigasuspig\nTrade G3 B3 Pigasuspig\nTrade G3 R3 Mars\n\n37) ts52: Build G3 Persiphone\n\n38) pigasuspig: Trade G3 B3 Hermes\n\n39) ts52: Discover G1 Ts52 B1 Blueberry\n\n40) pigasuspig: Sacrifice Y3 Pigasuspig\nMove B3 Hermes Blueberry\nMove B3 Blueberry Ts52\nMove R3 Mars Ts52\n\n41) ts52: Sacrifice R3 Persiphone\nAttack R3 Ts52\nAttack B3 Ts52\nPass\n\n42) pigasuspig: Build B2 Pigasuspig\n\n43) ts52: Sacrifice G3 Persiphone\nBuild G3 Persiphone\nBuild G3 Blueberry\nBuild G3 Ts52\n\n44) pigasuspig: Move Y1 Hermes Pigasuspig\n\tpigasuspig: yeah, that was a cool trick when I was able to pull it off too.\n\n45) ts52: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Persiphone\nBuild Y2 Persiphone\n\n46) pigasuspig: Move R2 Pigasuspig Sol\n\n47) ts52: Sacrifice R1 Persiphone\nAttack R2 Sol\n\n48) pigasuspig: Trade B3 Y3 Pigasuspig\n\tpigasuspig: so sorry about the time!\n\n49) ts52: Discover B3 Ts52 R1 Rasberry\n\tts52: not to worry\n\n50) pigasuspig: Build R1 Pigasuspig\n\n51) ts52: Move Y1 Persiphone Sol\n\n\tpigasuspig: I can&#39;t safely build or trade (since there&#39;s no green), I can&#39;t really move anywhere useful, and I&#39;m dramatically outnumbered. I resign. Very good game, though! Thanks!\n\tSYSTEM: pigasuspig resigns.\n\nHomeworlds Online (SDG# 746)\nStarted: 2005.9.23, Ended: 2005.9.27\nParticipants: MatrixFrog (S), Samaculus (N)\nWinner: Samaculus\n\n1) Samaculus: Homeworld G3 Y2 B3\n\n2) MatrixFrog: Homeworld B2 G3 Y3\n\tSamaculus: I hate to be unoriginal...\n\n3) Samaculus: Build B1 Samaculus\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Samaculus: Trade B1 R1 Samaculus\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) Samaculus: Build R1 Samaculus\n\n8) MatrixFrog: Discover Y1 Matrixfrog G1 Dy/dx\n\n9) Samaculus: Move R1 Samaculus Dy/dx\n\n10) MatrixFrog: Move Y1 Dy/dx Matrixfrog\n\n11) Samaculus: Build R1 Samaculus\n\n12) MatrixFrog: Trade Y3 R3 Matrixfrog\n\n13) Samaculus: Move B3 Samaculus Dy/dx\n\n14) MatrixFrog: Build R2 Matrixfrog\n\n15) Samaculus: Build R2 Dy/dx\n\n16) MatrixFrog: Trade R2 G2 Matrixfrog\n\n17) Samaculus: Trade R1 Y1 Dy/dx\n\n18) MatrixFrog: Build R1 Matrixfrog\n\n19) Samaculus: Build Y2 Dy/dx\n\n20) MatrixFrog: Trade R1 B1 Matrixfrog\n\n21) Samaculus: Build B1 Dy/dx\n\n22) MatrixFrog: Build R1 Matrixfrog\n\n23) Samaculus: Move R1 Samaculus Dy/dx\n\tMatrixFrog: Wow. Can you say &quot;arms race?&quot;\n\n24) MatrixFrog: Discover Y1 Matrixfrog G1 Antelope\n\n25) Samaculus: Sacrifice Y2 Dy/dx\nMove R1 Dy/dx Matrixfrog\nMove R2 Dy/dx Matrixfrog\nCatastrophe Matrixfrog Red\n\tMatrixFrog: I&#39;m thinking of an animal theme this game.\n\n26) MatrixFrog: Build Y2 Matrixfrog\n\n27) Samaculus: Trade B3 R3 Dy/dx\n\n28) MatrixFrog: Build Y2 Antelope\n\n29) Samaculus: Move R3 Dy/dx Matrixfrog\n\n30) MatrixFrog: Build G1 Matrixfrog\n\n31) Samaculus: Attack G2S Matrixfrog\n\n32) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y3 Antelope\n\n33) Samaculus: Attack Y2S Matrixfrog\n\n34) MatrixFrog: Move Y1 Antelope Matrixfrog\n\n35) Samaculus: Attack B1S Matrixfrog\n\n36) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n37) Samaculus: Attack Y1S Matrixfrog\n\n38) MatrixFrog: Move Y2 Antelope Matrixfrog\n\n39) Samaculus: Sacrifice R3 Matrixfrog\nAttack Y2S Matrixfrog\nAttack G1S Matrixfrog\nPass\n\n\nHomeworlds Online (SDG# 753)\nVariants: &quot;Left man down&quot;\nStarted: 2005.9.25, Ended: 2005.10.23\nParticipants: pigasuspig (S), MatrixFrog (N), Samaculus (E)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\n2) Samaculus: Homeworld Y3 B2 G3\n\tMatrixFrog: Welcome.\n\tMatrixFrog: So here&#39;s how Left Man Down (aka Sinister Homeworlds) works: I win by eliminating you, you win by elminating pigasuspig, and pigasuspig wins by eliminating me. Ready, go!\n\n3) pigasuspig: Homeworld Y3 G3 R3\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Samaculus: Build G1 Samaculus\n\n6) pigasuspig: Build R1 Pigasuspig\n\n7) MatrixFrog: Trade Y1 R1 Matrixfrog\n\tMatrixFrog: pigasus, is a 3-3 homeworld a specific Left Man Down strategy, or just something unusual?\n\n8) Samaculus: Build G1 Samaculus\n\n9) pigasuspig: Discover R1 Pigasuspig B2 Deepblue\n\tpigasuspig: more of a cheap shot cuz I wondered how to outfox it. Of course, I see the answer now.\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\tpigasuspig: But maybe there&#39;s something to it, since it puts me closer to my target than to my enemy. I suppose we&#39;ll all find out. But the red starting ship, that was not really a good idea at all.\n\n11) Samaculus: Discover G1 Samaculus B1 X-axis\n\n12) pigasuspig: Trade R1 G1 Deepblue\n\n13) MatrixFrog: Build R1 Matrixfrog\n\tMatrixFrog: Well it&#39;s always a trade-off. If you make it hard for opponents to get to you, then you must also make it hard for yourself to get to them.\n\n14) Samaculus: Build G1 X-axis\n\n15) pigasuspig: Build G2 Deepblue\n\n16) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n17) Samaculus: Build G2 Samaculus\n\n18) pigasuspig: Trade G2 Y2 Deepblue\n\n19) MatrixFrog: Build G2 Matrixfrog\n\n20) Samaculus: Discover G1 Samaculus B1 Pluto\n\tMatrixFrog: I&#39;ll talk to him at school tomorrow and get the game moving again by tomorrow night. Sorry!\n\tMatrixFrog: Or maybe in two nights, I suppose... anyway, thanks for your patience.\n\n21) pigasuspig: Build R1 Pigasuspig\n\n22) MatrixFrog: Discover G2 Matrixfrog Y3 Tenuto\n\n23) Samaculus: Sacrifice G3 Samaculus\nBuild G2 Samaculus\nBuild G3 Samaculus\nBuild G3 Pluto\n\n24) pigasuspig: Sacrifice Y2 Deepblue\nMove G1 Deepblue Pluto\nMove G1 Pluto Samaculus\nCatastrophe Samaculus G\n\tSamaculus: I&#39;m Back! With a vengeance!  Beware!\n\tMatrixFrog: Welcome back. I like how your first move back was really aggressive.\n\n25) MatrixFrog: Move G2 Tenuto Pluto\n\n26) pigasuspig: Move R1 Pigasuspig Pluto\n\n27) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R1S Pluto\n\n28) pigasuspig: Build R1 Pigasuspig\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) pigasuspig: Move R1 Pigasuspig X-axis\n\n31) MatrixFrog: Build R1 Matrixfrog\n\n\tSYSTEM: pigasuspig resigns.\n\tSYSTEM:  resigns.\n\nHomeworlds Online (SDG# 756)\nStarted: 2005.9.26, Ended: 2005.10.26\nParticipants: Werebear (S), CDRodeffer (N)\nWinner: Werebear\n\n1) CDRodeffer: Homeworld B1 Y2 G3\n\tCDRodeffer: Hey, Doug. Glad you could make it into the system. The first step is to create your homeworld using the &quot;homeworld&quot; command. I&#39;ll make mine using &quot;homeworld b1 y2 g3&quot;.\n\n2) Werebear: Homeworld G2 B1 R3\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\tCDRodeffer: Now that you have a homeworld, you can try some of the other stuff at the top, like constructing a new ship. If you have access to green in a system, you can build the smallest available ship of any type you already have in that system. I&#39;ll do that using &quot;construct g1 CDRodeffer&quot;.\n\n4) Werebear: Build R1 Werebear\n\tCDRodeffer: So anyway, you have a bit of a problem starting out, because you don&#39;t have access to any yellow, so you can&#39;t move anywhere or discover new systems. You might want to build another ship (it would have to be a red one, using &quot;construct r1 Werebear&quot;), then on a later turn trade it in for a yellow one so you can move around using &quot;trade r1 y1 Werebear&quot; or the like.\n\n5) CDRodeffer: Trade G1 R1 Cdrodeffer\n\tWerebear: Yah, I guessed as much. I do, however, have a red ship. I&#39;ve heard all about people who sneak right in when someone doesn&#39;t have enough planetary defenses. That&#39;s all this is. Defensive uses only.\n\tWerebear: Besides, where do I need to go? We&#39;re happy right here!\n\tCDRodeffer: Oh, I totally understand. In fact, I like to have at least *some* access to all four color technologies in my home system. Right now, I don&#39;t have any defenses, as you can plainly see. So I would to well to get at least a small one. I can do that by trading in the small green ship I just build for a small red one, using the command &quot;trade g1 r1 CDRodeffer&quot;. See how easy that is?\n\n6) Werebear: Trade R1 B1 Werebear\n\n7) CDRodeffer: Discover R1 Cdrodeffer G3 Eden\n\tWerebear: My people are afraid of too many different colors... but we applaud your work towards self defense. Might we agree to a mutual self-defense treaty? If either of us is attacked by an enemy, we&#39;ll use our brave self defense ships to protect each other?\n\tCDRodeffer: I think that would be a wonderful idea, at least in principle, but I don&#39;t know how we would implement it in the short term. See, for one or the other of us to get to the other&#39;s system, we need to go via another system that has a star unlike any of our own. In our cases, we both have a small star and a medium star, so we need to go via a large star. Since there isn&#39;t such a system out there (yet) I&#39;ll show you how to discover one by example. I&#39;ll choose green, since it&#39;s pretty, and since it&#39;s non-confrontational. Whenever you discover a new system, you also get to choose it&#39;s name, so I&#39;ll pick a nice non-confrontational name as well. The command I&#39;ll use to do it is &quot;discover r1 CDRodeffer g3 Eden&quot;.\n\n8) Werebear: Build B2 Werebear\n\n9) CDRodeffer: Build G1 Cdrodeffer\n\tWerebear: I like the way you think, CDRodeffer! (Is it okay if I call you CDR?). Now, I should say that my people are a bit skittish and not as open-minded as my Enlightened Self (you can call me Werebear), so they might not like having foreign ships in our home system... but - our self defense forces have been well versed in interacting with alien cultures, and I&#39;m sure they&#39;d have no problems (and might even enjoy) visiting your home system from time to time. You know, for training exercises, and such. I&#39;ll spread the word around our self defense forces officers, that they&#39;ll be visiting you at some point in the future! What sorts of gifts are appropriate? Do you like Xcyactl wines? If so, I&#39;ll get a few cases put together to send with my forces. It may take me a while, since it is very expensive to get that much Xcyactl.\r\n\r\nInteresting - my people have ancient myths about how we originated from a star system called &quot;Eden&quot;. If you find any interesting archaelogical sites there, I&#39;ll send some very peaceful scientists to visit and help your research...\n\tCDRodeffer: Well, we&#39;re tea totelers here at CDRodeffer, even though we really don&#39;t even like tea. Or Dr. Pepper. Or coffee. But anyway, I look forward to meeting your archeological envoy in Eden in the near future. As an aside, I heard it through the grapevine that &quot;andylooney&quot; just joined up an online gaming site called Super Duper Games. This is intereseting, Werebear, because I hear that he loves Homeworlds, and might enjoy visiting your peaceful system someday. Anyway, back to the matter at hand, I realize that it is unseemly to have a defense ship in an archeological region, but I don&#39;t currently have propulsion technology available in Eden, nor can I find any local paint shops to make that little ship seem less, well, threatening. Our ancient texts say that an angel wielding a flaming sword was set at the gates of Eden, so if your people have similar ancient texts, you might want to just, for a moment, meditate on the aesthetic qualities of that small red ship, right there, guarding Eden. But just for the moment, I assure you, because I have a plan to retrofit that ship into a vessel more suitable for acheology.\n\n10) Werebear: Trade B2 Y2 Werebear\n\tCDRodeffer: Oh, if you didn&#39;t recognize the name, Andy Looney is the person who designed the pyramids for this game. He&#39;s pretty well-known in the gaming world, and has designed several games to play with these pyramid pieces, although the Homeworlds game itself was invented by a friend of his.\n\n11) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tWerebear: CDRodeffer, you make many good points. I trust if the dreaded andylooney does find his way to our beloved home system, that you&#39;d leap to our defense, as per our mutual defense agreements. But we don&#39;t fear him. He causes us no concern. Also, our people were quite thrilled to learn of your archaeological discoveries - and they demanded that we learn more of this. You see, my people, at times, are a superstitious and hasty people, and they&#39;ve long debated over our origins. Learning that you&#39;ve positively identified our original home, and are even now valiantly defending it, will cause waves of anxiety and happiness amongst our populations. Rest assured that we are even now equipping a squadron to come to your aid, and to assist you in the defense of this beautiful world. We very much appreciate the pictures you&#39;ve sent, by the way. Especially some of the more risque pictures of your cabinet and ministers - but not sure what you intended for us to do with them. Perhaps you sent them to use for safekeeping? We&#39;ll guard them carefully, and gazed upon on them in our chambers whilst we plan for our eventual and inevitable meeting! It will surely be an auspicious occasion!\n\tCDRodeffer: Our short range scanners have been admiring your beautiful new yellow speedster. I must say, I&#39;ve always had a fondness for yellow, rising each morning to the light of our yellow sun, and silently morning its setting in our early afternoon when we are left with the pale blue light of our yellow sun&#39;s companion. You know, we have a notorious college near where I live whose colors are yellow and blue. Actually, they call them &quot;maize&quot; and blue, but I don&#39;t fully understand their reference to a labyrinth. But yes, per our mutual defense agreement, I&#39;d be happy to help thwart any invasion attempts by the dreaded &quot;andylooney&quot; in the near future. Alas, as I still have no access to propulsion systems near Eden, withdrawal of that unseemly red clunker has not been easy. But now, having seen, admired, yea even coveted your speedster, I should be able to upgrade said clunker in the not too distant future. Meanwhile, our technicians are doing their best to reverse-engineer and copy your marvelous work. Feel free to peer through your long range scopes to have a look for yourself.\n\n12) Werebear: Construct B2 Werebear\n\n13) CDRodeffer: Build G1 Cdrodeffer\n\tWerebear: Ahh, yes, thank you. We were quite delighted with it! We took the court out for a spin in it, and had quite the splendid time. However, I must warn you, it requires outrageous amounts of fuel. I&#39;d advise you, most respectfully, of course, to stay with the smaller more fuel efficient ships. We&#39;ve found that we can&#39;t even afford to crank up the engines in our primary self defense vessel. I probably shouldn&#39;t admit this, since I know you are counting on to rush to your defense should andylooney strike, but, there it is. The large ships are just too expensive to have much fun with. If you do get stuck with any large ships that you don&#39;t want, just let us know and we&#39;ll be happy to take them off your hands for you. Fortunately our home system does possess vast quantitites of fuel. Talk to your engineers, see if you can dissuade them from their mad plan. Small efficient ships will one day rule the star ways. My people are just to grandiose to realize this!\n\tCDRodeffer: It&#39;s a good start that you understand how important it is to conserve energy resources, and I&#39;m glad you&#39;ve taken such notice in our efforts to conserve energy by using smaller ships. Sure, there will always be a few piggy politicians who insist upon large ships. They must be trying to compensate for something. But by and large, most of us get along very well with small, efficent ships. While we modeled our little runabout after your speedster, we decided to go with a smaller platform for just that reason, and are quite pleased with the results. If you would like a tutorial on our compact engineering, we would be happy to give you an in-system demonstration at some point in the near future. Just let us know, and we&#39;ll try to be there at the appointed time. Meanwhile, you can watch from afar as we demonstrate small vehicle construction, right before your very telescopes.\n\n14) Werebear: Move B2 Werebear Eden\n\tWerebear: CDRodeffer, you old fox - you read between the lines, and you invited me to see up close how you build more efficient ships! I was hoping you&#39;d see what we were hoping for, and of course you did! I&#39;m tickled pink, but some of my staff didn&#39;t believe you&#39;d actually invite us to come visit. This is our first voyage away from home, and you can probably imagine how excited our people are. We&#39;re sending our best and brightest to join you in your exploration of Eden. You&#39;ll see that we come entirely in peace. Don&#39;t worry about meeting us, we&#39;ll come out and meet you. Oh, this is just *TOO* thrilling!\n\n15) CDRodeffer: Sacrifice Y1 Cdrodeffer\nMove R1 Eden Cdrodeffer\n\tWerebear: Hi, there! We come in peace, and bring you greetings from the peoples of Werebear! And look, we have Xcyactl! For you... no, please, please, take it... our pleasure entirely!\n\tCDRodeffer: Likewise, it&#39;s a real honor to finally see one of your vessels up close, here in Eden. I wonder, have you tried using this Xcyactl as a fuel? Alternative propulsion systems just might be the thing you need for better economy, both at home and abroad. Say, there&#39;s another new piece of technology we just developed, and I thought you might like to have a look. It&#39;s a remote control function that our engineers -- what will they think of next!? -- have come up with. Since that r1 has been sitting out there in the remote reaches for so long, we need to figure out how to get those people home for resupply anyway, so what better way to try out the remote control function? Funny thing is, it takes lots of energy to operate. LOTS of energy. Fortunately, we have that little yellow runabout (it wasn&#39;t that useful for us anyway) that we can dump into our E=mc^2 converters. So check this out!\n\n16) Werebear: Build R1 Werebear\n\n17) CDRodeffer: Build G1 Cdrodeffer\n\tWerebear: Hey, what happened? We got word of some sort of diplomatic incident, and then, wow, your defense ship was gone? And we were looking so closely at your new fuel efficient speedster, when suddenly we noticed a disruption in the space-time continuum, and it was gone! Have your crews had Xcyactl before? That may explain parts of the strangeness, if they haven&#39;t - it does make weird ripples through the multi-space. Oh, wait - I see - remote control. Okay, whew... I was worried that my overly eager researchers made some sort of faux pas, which would be sad. Hey, can you share that trick of recycling ships? We&#39;d like that... We&#39;re very much into recycling. No, we don&#39;t use Xcyactl for fuel. Well, actually, the very rich might. I had a patron as a young Werebearling who tried it out in a sand-speeder - and it was, let me tell you, quite the ride. But I don&#39;t recommend this for any but the very young and the unsqueamish. Since we don&#39;t have anybody protecting the Origin Star (as our religious leaders are calling Eden), my advisors have decided to send out another scout to protect that system - purely defensive, you understand.\n\tWerebear: CDRodeffer, this is the commander of the B2 Research Ship in orbit around Eden. We will relieve your crew of their defense responsibilities. Support is on its way for our defense of this system, but perhaps this larger ship will scare off any attacks by the dread pirate andylooney. On the behalf of our people, I want to thank you for finding the planet of our origins, and for beginning the shared growth of knowledge our research will bring. We commend you on your spirit of cooperation and trust. Commander Flemlink Potorsk, Werebear Defense Fleet.\n\n18) Werebear: Build B2 Werebear\n\tCDRodeffer: We&#39;d be happy to share the remote control technology based upon direct matter to energy conversion. But you must understand that the technology hasn&#39;t yet been perfected to 100% efficiency, as most new technologies are, and as a result, performing the conversion requires certain ... sacrifices. But in the interest of advancing science, and especially science for ecological development (first reduce (use small ships), then reuse (trade them in for what you need whenever possible), then recycle (matter to energy conversion, when necessary)). It&#39;s all rather simple, really. Say, how go your acheological digs on Eden?\n\n19) CDRodeffer: Build R1 Cdrodeffer\n\tWerebear: Our digs go well! We think we found the flaming sword your people talk about... Well, actually, it wasn&#39;t flaming, exactly... and, well, to be honest, we&#39;re not sure it&#39;s really a sword. But, what the hay, our religious leaders are all saying they found the flaming sword, who am I to argue? To me, it looks like a big lumpy rock stick. Thanks for sharing that remote control technology. Our scientists have been experimenting on hamsters and tulips, and results are relatively positive. Relatively.\n\n20) Werebear: Build R2 Werebear\n\tCDRodeffer: I have rather sad news concerning our economy. Trading has been down the last several days, and as a result, the people are getting somewhat restless, requiring some police actions in some regions. Nothing dangerous, I assure you, but we&#39;ve seen much better times in the past.\n\n21) CDRodeffer: Move R1 Cdrodeffer Eden\n\tWerebear: It isn&#39;t catching, is it? Oh me... oh my! We&#39;ve just got word that we, too, might be having to engage in police actions ourselves. We surely hope not. If things get bad over there, you&#39;re welcome to visit. And fear not - if they get bad enough, we can help you with your police action, if need be. We&#39;ll be there in a whistle!\n\tCDRodeffer: Wow. You don&#39;t know how glad I am to hear this news, and about how willing you all have been to provide for the common defense. Our most heartfelt gratitude goes out to you as we struggle with the domestic problems of looting and, believe it or not, environmental degradation that has resulted from the economic greed of a few big wigs in high places. I&#39;m sure you can sympathize.\n\tCDRodeffer: Holy smokes! We seem to have lost contact with your archeological team at Eden! I hope they&#39;re all OK. You know, some people are calling for scientific research programs to be cut from the global budget in these times of civil unrest, but of course, you and I both know better, that without the advancement of knowledge, the populous is in danger of spiraling into barbarism. We wish we had a little yellow speedster available to go visit your archeological ship via the fastest means possible, but since all of them were so unfortunately recycled, a &quot;Little Red Corvette&quot; will have to suffice. Speaking of which, there once was a legendary musician who sang a song about such a vehicle some 20 years ago. Judging from your distance, the radio waves may just now be reaching your system from those early broadcasts. If you care to give a listen, I&#39;d much appreciate your comments on our music.\n\n22) Werebear: Sacrifice R1 Werebear\nAttack R1N Eden\n\n23) CDRodeffer: Discover R1 Cdrodeffer Y3 Taxi\n\tWerebear: We noticed the same thing. We were afraid that sword of fire rock-stick-thingy had gone crazy and had taken over our crew. We immediately dispatched an identical Little Red Corvette (yes, we recall that song) to balance out your ship - but - egads! Your ship was gone, and the flaming sword rock-stick-thingy was gone, and our crews were all befuddled. For some reason, the Interstellar News Service (INS) reported that there was a fight, but clearly we wouldn&#39;t have attacked each other. That makes no sense at all. Where did your ship go?\n\tWerebear: CDRodeffer, I can only conclude one thing. I suspect that this was all the work of the Dread Pirate andylooney (DPa). I&#39;m afraid to say it, but it looks like he must have snuck in under the watchful eye of our research and defense ships, stolen the flaming sword rock-stick-thingy, and then, to add insult to injury, stole your ship to make his getaway. We&#39;ve detected some space tread marks and a faint smell of ether. I think we&#39;ve both been had. I&#39;m very worried about this turn of events. I&#39;m afraid our religious leaders will call for all-out war, demanding that we seek out every haven that the DPa might lurk in, and to regain our holy religious rock-stick-thingy heritage artifact. Woe is upon us. I hope we can find a way to convince our peoples that everything is still in balance. The time for caution has arrived. Will you need us to dispatch our LRC to your Homeworld? Are you prepared for the civil unrest that might follow? Remember, give a little whistle and we&#39;ll be right there to help. We&#39;re listening...\n\tWerebear: Was that a whistle?\n\tCDRodeffer: Well, I suppose the driver of the Little Red Corvette *could* have gotten lost in space. Maybe. Oh wait! I think we found them, and they&#39;re reporting the discovery of a new system! This has cause much rejoicing here at home, despite the big wigs&#39; wanting to name the new system, of all things, Taxi.\n\n24) Werebear: Move R2 Werebear Taxi\n\tWerebear: Oh, is that where he went? Cool... but - our Space Traffic Control Agency thought that this ship originated from your home system, so... umm.... it can&#39;t be the Dread Pirate andylooney, unless...\n\n25) CDRodeffer: Discover R1 Taxi R1 &atilde;&#129;&plusmn;&atilde;&#129;&plusmn;\n\tWerebear: Maybe we&#39;d better just drop in for a little look-see... we&#39;ll report our findings. We&#39;re sending broadcasts of Peace and Understanding. But you ship is unresponsive. Is that your ship? Or could it be the DPa? Arggh! We&#39;ll stand by to hear from you on this very serious matter. Our religious leaders are certain that we&#39;ll find the rock-stick-thingy at Taxi - you haven&#39;t seen it, have you? Could it be aboard your ship? Gosh, I sure hope not. I&#39;d hate to think what would happen. That ship we sent there is full of zealots. Oh my!\n\tWerebear: Peace. Understanding. Peace. Understanding. Repeat as necessary.\n\n26) Werebear: Build R2 Werebear\n\tCDRodeffer: Wow! Check it out! That Little Red Corvette found another new system. Weird how the name came out, though, huh? There must be something strange going on with the navigational systems on that ship.\n\tWerebear: Our religious leaders will have a field day with this... they&#39;ve long warned us of the day when someone would visit &Atilde;&pound;&iuml;&iquest;&frac12;&Acirc;&plusmn;&Atilde;&pound;&iuml;&iquest;&frac12;&Acirc;&plusmn; - and warned us that when we saw the &quot;visage of the unmasked treachery of this world, surely the dogs would gnash their teeth, and doom would befall the schnictkl plants&quot;, whatever the heck that means. Are you in need of rescue? Surely, a dark red world like that must be dreary and boring compared to the happy world from whence your race evolved. BTW - that has also been a frequent subject of discussion of late - did you race evolve or travel to CDRodeffer? But our findings at Eden do sort of point to the correct answer. If your LRC is in need of rescue, I could dispatch a ship to help you. We&#39;re worried that you may be all but stuck in that uncomfortable place. We&#39;ll get cracking to get a ship built for a rescue mission...\n\n27) CDRodeffer: Sacrifice G1 Cdrodeffer\nBuild R2 &atilde;&#129;&plusmn;&atilde;&#129;&plusmn;\n\n28) Werebear: Trade B2 G2 Werebear\n\tCDRodeffer: I&#39;m happy to hear your religious leaders are, well, having a nice day in the fields, what with your wonderful archeological work at Eden, despite the prophesized doom of your beloved schnictkl plants. I hope they&#39;re safe, and if you need us, we may soon be able to send a team of our crack gardners. In answer to your question, carvings on some of our ancient ruins seem to indicate that our distant ancestors traveled to the CDRodeffer system from somewhere else. And seeing that Eden is a garden planet, and we have many gardeners here, the travel theory seems quite possible.\n\n29) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tWerebear: I thought... umm... that you didn&#39;t like those clunky bigger ships... don&#39;t they get just awful mileage?\n\n30) Werebear: Build R3 Eden\n\tCDRodeffer: How true! How true! We have come to learn that certain high ranking members of the Little Red Corvette crew are actually disgruntled postal workers, and that they, and I quote, &quot;are tired of being put down by &#39;the man&#39;. We must rise up from this feudal oppression, overthrow the status-quo government and attain new heights of personal affluence.&quot; No wonder our mail has been late! So, we are in the process of sending out a (small) detachment of police officers (the police wear yellow here in CDRodeffer) to retrieve the renegade postal workers before they cause any harm, either to others or to themselves. If you encounter them, beware, and consider them &quot;armed and dangerous.&quot; We don&#39;t anticipate any real problems, but you know, due to our long-standing mutual defense treaty, I thought it best you should know in advance, in case anything were to happen.\n\n31) CDRodeffer: Trade G3 R3 Cdrodeffer\n\tWerebear: Did you hear about the bargain down at Ned&#39;s Used Space Ship Depot? Yep. Big Red ships. Granted they are a bit guady and all, but we think it goes well with the rest of our fleets, and reminds us fondly of our very first ship. Do you like it?\n\tCDRodeffer: Due to the news of those disgruntled postal workers hijacking a ship to some weird system in the far reaches of space (from us anyway), there has lately been a fad where everything must be red, and even the big wig politicians have succumbed to the crazy notion and given their production ship a paint job. I don&#39;t like it much, no, not at all. But what can I do? I can&#39;t control everyone.\n\n32) Werebear: Move B1 Werebear Taxi\n\n33) CDRodeffer: Trade Y1 G1 Cdrodeffer\n\tWerebear: CDRodeffer, old friend - it seems as if the postal worker situations has spiraled way out of control. Are you sure this doesn&#39;t have anything to do with the gift of Xcyactl that we gave you? Somehow, I feel responsible, like I&#39;ve led your people astray with that temptation. On the other hand, maybe your people want your fleets to look a little like ours, perhaps? It might just be flattery, eh? \n\tCDRodeffer: I assure you, the obsession with red is merely a passing fad, no more. But it has taken a huge toll on our productivity, in that people are thinking about red so much that they&#39;re no longer willing to work and build anything. To be sure, I&#39;m in full agreement with that Shining sentiment, &quot;All work and no play makes Jack a dull boy.&quot; But the opposite is just as much cause for concern, &quot;All play and no work makes Jack a starving boy.&quot; There are only so many things one can do to stave off both, so we&#39;re putting some of our welfare recipients to work giving that little yellow speedster a fresh green paint job. We hope the new color will contrast enough with that silly red fad to make people want to start working again.\n\n34) Werebear: Move G2 Werebear Taxi\n\tWerebear: Well, no wonder your people are obsessed - they&#39;re watching the postal workers in that system that shan&#39;t be named day in and day out... and what an interesting view it is. See, even though it is two star-jumps for our people to get there, the system is actually pretty close, and our telescopes are letting us get crystal clear views of the shenanagans going on over in that un-named system. Do your religious leaders have any idea what is happening there? Wowza wowza wowza... We can&#39;t look away, some of us. I&#39;m going to send out an Ecology Research Ship to Taxi to see if they can pick up any interesting readings from a bit closer, Star-Jump-Wise...\n\n35) CDRodeffer: Construct G1 Cdrodeffer\n\tWerebear: Wow... much better view from here. Well, good grief. All work has been halted as all of our populations are consumed with watching your postal workers. Great. It&#39;s officially contagious. Well, I guess we&#39;ll just have to sip some Xcyactl and enjoy the show.\n\n36) Werebear: Build B2 Eden\n\tCDRodeffer: Watching those whacky postal workers from afar is like some sort of strange situation comedy. But it has appeased the masses, and the people have started calming themselves and getting back to work. See, they even built a nice new green ship.\n\n37) CDRodeffer: Discover G1 Cdrodeffer B3 The_berry_vest_of_the_swirling_eddies\n\tWerebear: Green is such a nice color. Hey, did you hear the one about the Postal Worker and the Ixmram Girl? That&#39;s the latest going around the old office here... While we really like Green, we&#39;re especially fond of Blue...\n\tCDRodeffer: I have not heard &quot;that one.&quot; If you care to share, I&#39;m sure we&#39;d be delighted to hear the story. And Blue is OK. After all, one of our suns is Blue. And in fact, one of our scientists has just now observed an interesting new Blue giant that we&#39;d like to explore. We&#39;re being much more cautious these days about who we allow into space, after that postal worker fiasco, so I&#39;m sure there will be no problems this time.\n\n38) Werebear: Move R2 Werebear The_berry_vest_of_the_swirling_eddies\n\tCDRodeffer: Off topic -- tonight my family and I are leaving town for a few days&#39; vacation. We&#39;ll be back late on the 11th.\n\tWerebear: Blue... it looks so... blue... we&#39;re... our breath has been collectively taken away. It. Is. So. Beautiful. We must see it. We must Possess it. Precious blue.\n\n39) CDRodeffer: Build G1 The_berry_vest_of_the_swirling_eddies\n\n40) Werebear: Build B2 Taxi\n\tCDRodeffer: Possess? Here at CDRodeffer, we&#39;ve always operated under the principle that no one can really &quot;possess&quot; something so great as a world, much less a star system. These are common areas, to be shared by everyone. So, I&#39;m not sure I understand your intentions when you say &quot;possess.&quot; But yes, it is a pretty blue. Upon that much, we are in full agreement.\n\tWerebear: Surely you can see why we love blue so much. It satisfies something deep inside of us. We want... more blue...\n\n41) CDRodeffer: Build G2 The_berry_vest_of_the_swirling_eddies\n\n42) Werebear: Sacrifice G2 Taxi\nBuild B3 Taxi\nBuild B3 Eden\n\tCDRodeffer: I can understand your love of Blue, having lived through a ridiculous, nay, economically ruinous Red fad. I feel your pain.\n\tWerebear: Well, at least Blue (blueblueblueblueblue) isn&#39;t ruinous - but I&#39;d hardly call it a fad. Sorry about the long delay - we were in blueness for a long while.\n\n43) CDRodeffer: Build G2 Cdrodeffer\n\tCDRodeffer: Wow. That *is* a lot of blue. I think I&#39;m going to have to go dig out my old pair of &quot;Blue Blocker&quot; sun glasses from 15 years ago, just to see clearly.\n\tCDRodeffer: Wow. That *is* a lot of blue. I think I&#39;m going to have to go dig out my old pair of &quot;Blue Blocker&quot; sun glasses from 15 years ago, just to see clearly.\n\n44) Werebear: Sacrifice B2 Eden\nTrade B3 G3 Eden\nTrade B3 G3 Taxi\n\n45) CDRodeffer: Trade G2 B2 Cdrodeffer\n\tWerebear: Wow, CDRodeffer - you were right. Your soothsayers must have been working overtime. We have gotten over our fad for blue. Green is our new fav. How do you like it? Doesn&#39;t it go nice with our shiny new shoes?\n\n46) Werebear: Build G2 Taxi\n\tCDRodeffer: Ooh, shiny. Sorry I&#39;m less than eloquent today, but it&#39;s been a very, VERY hectic day at work and at home.\n\tWerebear: Sorry to hear that - do you want to take a break for a few days? I&#39;m not in a hurry, particularly...\n\tCDRodeffer: It&#39;s OK. These things are cyclical in my line of work -- goes for a while pretty light, then a heavy load of stuff. I can find time to squeeze in a turn now and then.\n\n47) CDRodeffer: Discover B2 Cdrodeffer Y3 Submarine\n\tWerebear: I guess you&#39;re right about that blueness - it must have been a fad. Hey - are you getting into that fad, too?\n\n48) Werebear: Sacrifice G3 Taxi\nBuild G3 Taxi\nBuild B3 Taxi\nBuild B3 Eden\n\tCDRodeffer: No, I don&#39;t think Blue will ever be as big a fad as Red and Green have been.\n\n49) CDRodeffer: Sacrifice R1 &atilde;&#129;&plusmn;&atilde;&#129;&plusmn;\nAttack R2S The_berry_vest_of_the_swirling_eddies\n\tWerebear: Yes, we are in complete agreement on that. No more blue for... well, okay, maybe just a couple more...\n\n50) Werebear: Sacrifice B2 Eden\nTrade B1 R1 Taxi\nTrade B3 Y3 Taxi\n\tCDRodeffer: Right. Well, I hate to be such a freeloader, but would you mind if I borrowed this for a minute? Thanks.\n\n51) CDRodeffer: Trade G1 Y1 The_berry_vest_of_the_swirling_eddies\n\tWerebear: You took my pretty red ship? Haven&#39;t you seen the folly of the red war path? Well, okay, you can borrow it. Does that mean we can borrow something from you later?\n\n52) Werebear: Sacrifice Y3 Taxi\nMove G3 Eden Cdrodeffer\nMove R3 Eden Cdrodeffer\nMove B3 Eden Cdrodeffer\n\tCDRodeffer: Oh, I see no reason why we shouldn&#39;t be able to borrow from one another, as each has need. I&#39;ve gotten along &quot;OK&quot; with just these small little ships for most of the game, but I see that you&#39;ve accummulated many more, and here at CDRodeffer, we generally share many things in common. But hey, how goes your archeological research? Surely you must have some peaceful reason for having so many ships these days, seeing as how both matter and energy are so precious.\n\tWerebear: Oh, our research is going just great! In fact, hang on a moment, we&#39;ll show you some of the things we&#39;ve found! First, a little &quot;razzle-dazzle&quot;...\n\n53) CDRodeffer: Sacrifice R2 &atilde;&#129;&plusmn;&atilde;&#129;&plusmn;\nAttack R3 Cdrodeffer\nAttack G3 Cdrodeffer\n\tWerebear: I know we&#39;ve been a bit greedy with our big ships - perhaps you&#39;d like to help yourself to one or two of them? We won&#39;t mind at all... I&#39;m so glad you won&#39;t mind if we borrow some, say, parking spaces from you for a while...\n\tCDRodeffer: Wow! That is impressive, indeed. Thanks for sending over those ships! I&#39;m sure they&#39;ll come in handy.\n\n54) Werebear: Sacrifice R3 Werebear\nAttack R3 Cdrodeffer\nAttack G3 Cdrodeffer\nAttack R3 Cdrodeffer\n\tWerebear: Hey, you&#39;re only borrowing those, right? They are nice and roomy... but...   Hey - did you see our cool artifacts? They are stored in our pretty shiny red ship! Check &#39;em out... see?\n\n55) CDRodeffer: Build Y1 The_berry_vest_of_the_swirling_eddies\n\tWerebear: Oh my. I think our postal workers went crazy! First they stole our original star cruiser, and then they crashed it - and then, heck, I don&#39;t know what happened! Umm... If I were you, I&#39;d think about getting that little green ship of yours out of there. I think your postal workers must be in cahoots with our&#39;n...\n\tCDRodeffer: Oh, man. Well. I think I&#39;m going to ask our administrators to consider re-establishing a new home for the CDRodeffer population on The_Berry_Vest_of_the_Swirling_Eddies. They have great music there, dontcha know. Have you ever heard them? I especially like the song &quot;Outdoor Elvis&quot; from their second album and &quot;Home Permanent&quot; from their first.\n\tCDRodeffer: I can&#39;t see any other way out of our recent environmental disaster. The smog and polution from those large ships is choking our population. We&#39;ve decided to go off to found a new &quot;Home Permanent&quot; at The_Berry_Vest_of_the_Swirling_Eddies.\n\tCDRodeffer: Ugg. It seems that the propulsion system on that small green ship isn&#39;t working properly, and it won&#39;t budge. If you can get it running, consider it a gift. Meanwhile, we&#39;re going to make do as best we can at our new home.\n\n56) Werebear: Attack G1 Cdrodeffer\n\tWerebear: I think you may just have it pointed the wrong way - I&#39;ll turn it around and see if that helps...\n\n\nHomeworlds Online (SDG# 771)\nStarted: 2005.9.26, Ended: 2005.10.29\nParticipants: Kermit (S), rootbeer (N), MatrixFrog (E)\nWinner: Kermit\n\n1) rootbeer: Homeworld B1 G2 Y3 Rootbeer\n\n2) MatrixFrog: Homeworld Y1 B3 G3\n\n3) Kermit: Homeworld Y2 G3 B3\n\trootbeer: For the record, I have yet to actually win at a game of Homeworlds. Are either of you secretly world champion, by chance?\n\trootbeer: Howdy, Kermit. Or perhaps I should say, &quot;So, we meet again.&quot; :-)\n\n4) rootbeer: Trade Y3 G3 Rootbeer\n\tKermit: Well, since I got eliminated first in our other game, I think not. This is only the second time I have played homeworlds even though I have 5 stashes of Pyramids.\n\n5) MatrixFrog: Build G1 Matrixfrog\n\trootbeer: I thought this would be an easier game than it turned out to be. But I still don&#39;t know whether I really like it. Maybe after I win, I&#39;ll like it. :-)\n\n6) Kermit: Construct B1 Kermit\n\n7) rootbeer: Build G1 Rootbeer\n\n8) MatrixFrog: Trade G3 Y3 Matrixfrog\n\tMatrixFrog: I&#39;m certainly not world champion. I&#39;ve only played a few times in real life, and around 10 or so here, I think. All I can say is, read the suggestions on the wiki, and learn from your mistakes.\n\n9) Kermit: Discover B1 Kermit Y1 Slinky\n\n10) rootbeer: Trade G3 Y3 Rootbeer\n\tKermit: Well I read the suggestions in the wiki and it didn&#39;t help me at all in my last game. Perhaps if I had read them BEFORE the game started.\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) Kermit: Build B1 Kermit\n\n13) rootbeer: Construct Y1 Rootbeer\n\n14) MatrixFrog: Trade G1 B1 Matrixfrog\n\n15) Kermit: Trade B1 G1 Kermit\n\n16) rootbeer: Discover Y1 Rootbeer G3 Honker\n\n17) MatrixFrog: Build G1 Matrixfrog\n\n18) Kermit: Build G2 Kermit\n\tMatrixFrog: I think the biggest suggestion in the wiki is the one about building your homeworld. So that would make sense. Heh.\n\n19) rootbeer: Build G2 Rootbeer\n\tKermit: Yea that was the suggestion I had in mind. After turn two or so I read the wiki and realized my mistake. I knew my position was bad before that tho. Now I know why. hehehe  \n\n20) MatrixFrog: Build B1 Matrixfrog\n\n21) Kermit: Move G2 Kermit Slinky\n\n22) rootbeer: Move G2 Rootbeer Honker\n\n23) MatrixFrog: Trade B1 R1 Matrixfrog\n\n24) Kermit: Trade G1 B1 Kermit\n\n25) rootbeer: Build Y1 Honker\n\n26) MatrixFrog: Discover G1 Matrixfrog Y2 Gamma\n\n27) Kermit: Build B2 Slinky\n\n28) rootbeer: Construct Y2 Rootbeer\n\n29) MatrixFrog: Build G1 Gamma\n\n30) Kermit: Trade B2 R2 Slinky\n\n31) rootbeer: Build G2 Honker\n\n32) MatrixFrog: Discover G1 Gamma Y3 Delta\n\n33) Kermit: Move G2 Slinky Honker\nCatastrophe Honker Green\n\n34) rootbeer: Build G2 Rootbeer\n\tKermit: Fall down go BOOM!\n\n35) MatrixFrog: Move G1 Delta Rootbeer\nCatastrophe Rootbeer G\n\n36) Kermit: Trade B1 G1 Kermit\n\tMatrixFrog: Interesting: &quot;The Honker system has gone supernova.&quot; So I guess when the system marker itself is part of the catastrophe, it&#39;s called a &quot;supernova&quot; as opposed to that hyperspatial flux thing. Is that new, or did I just not notice it?\n\n37) rootbeer: Trade Y3 G3 Rootbeer\n\tKermit: I am not sure if that is new or not\r\n\n\n38) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n39) Kermit: Move R2 Slinky Gamma\n\n40) rootbeer: Build Y1 Rootbeer\n\n41) MatrixFrog: Move G1 Gamma Rootbeer\n\n42) Kermit: Move G1 Kermit Slinky\n\tMatrixFrog: The way I typed that was &quot;move g1 Gamma rootbeer&quot; and it occurred to me that a drink called Gamma Rootbeer&quot; would probably sell quite well.\n\trootbeer: Try Gamma Rootbeer! Now 80% less radioactive!\r\n\n\n43) rootbeer: Trade G3 R3 Rootbeer\n\n44) MatrixFrog: Build G1 Rootbeer\n\n45) Kermit: Build G2 Slinky\n\n46) rootbeer: Attack G1E Rootbeer\n\n47) MatrixFrog: Build G2 Rootbeer\n\n48) Kermit: Move G1 Slinky Gamma\n\n49) rootbeer: Trade G1 B1 Rootbeer\n\n50) MatrixFrog: Build G1 Rootbeer\n\n51) Kermit: Move G1 Gamma Rootbeer\nCatastrophe Rootbeer G\n\n52) rootbeer: Trade B1 G1 Rootbeer\n\n53) MatrixFrog: Build B1 Matrixfrog\n\n54) Kermit: Move B1 Slinky Gamma\n\n55) rootbeer: Build R1 Rootbeer\n\n56) MatrixFrog: Discover B1 Matrixfrog Y2 Feesko\n\n57) Kermit: Move G2 Slinky Gamma\n\n58) rootbeer: Trade Y2 B2 Rootbeer\n\n59) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild B2 Feesko\n\n60) Kermit: Build B2 Gamma\n\n61) rootbeer: Trade B2 G2 Rootbeer\n\n62) MatrixFrog: Trade B1 G1 Feesko\n\n63) Kermit: Trade G2 Y2 Gamma\n\n64) rootbeer: Discover G1 Rootbeer Y3 Arcturus\n\n65) MatrixFrog: Move B1 Matrixfrog Feesko\n\n66) Kermit: Move R2 Gamma Arcturus\n\n67) rootbeer: Discover R1 Rootbeer Y3 Solsystem\n\n68) MatrixFrog: Build G1 Matrixfrog\n\n69) Kermit: Attack G1N Arcturus\n\n70) rootbeer: Build Y1 Rootbeer\n\n71) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n72) Kermit: Move R2 Arcturus Feesko\n\n73) rootbeer: Build R1 Rootbeer\n\n74) MatrixFrog: Build B1 Feesko\n\n75) Kermit: Attack B2E Feesko\n\n76) rootbeer: Discover Y1 Rootbeer B2 India\n\n77) MatrixFrog: Discover B1 Feesko Y3 Shortage\n\n78) Kermit: Attack G1E Feesko\n\tKermit: if I am not arround this weekend or early next week it will be because of Hurricane Wilma. Doesn&#39;t look like it&#39;ll hit here but neither did Charley last year.\n\n79) rootbeer: Trade G2 B2 Rootbeer\n\trootbeer: Thanks for letting us know, Kermit.\r\n\n\n80) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild B3 Feesko\n\trootbeer: I hope you make it through with no problems.\n\tKermit: It shouldn&#39;t be a big deal. All of the models have it going about 60-70 miles south of here (Punta Gorda). We&#39;ll get some ugly weather but it shouldn&#39;t be too severe. After Charley though we&#39;re all a little extra wary here (understandably so). \n\tMatrixFrog: Hope it works out like the models say, then...\n\n81) Kermit: Build B3 Feesko\nCatastrophe Feesko Blue\n\n82) rootbeer: Trade R1 G1 Rootbeer\n\n83) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n84) Kermit: Build R1 Feesko\n\n85) rootbeer: Build R1 Rootbeer\n\n86) MatrixFrog: Move B1 Shortage Rootbeer\n\n87) Kermit: Move B1 Gamma Rootbeer\nCatastrophe Rootbeer B\n\n\n88) MatrixFrog: Build G1 Matrixfrog\n\n89) Kermit: Move G1 Arcturus Gamma\n\n90) MatrixFrog: Move G1 Matrixfrog Gamma\n\n91) Kermit: Build B1 Gamma\n\n92) MatrixFrog: Discover G1 Gamma Y1 Borsko\n\n93) Kermit: Move R1 Feesko Solsystem\n\n94) MatrixFrog: Build G1 Matrixfrog\n\n95) Kermit: Sacrifice Y2 Gamma\nMove G1 Gamma Matrixfrog\nMove G1 Feesko Matrixfrog\nCatastrophe Matrixfrog G\n\n96) MatrixFrog: Build G1 Borsko\n\n97) Kermit: Move R2 Feesko Matrixfrog\n\n98) MatrixFrog: Sacrifice G1 Borsko\nBuild R1 Matrixfrog\n\tMatrixFrog: Uh oh!!!\n\n99) Kermit: Attack R1E Matrixfrog\n\tMatrixFrog: I have successfully delayed my death for one, maybe two more turns. But I do believe I&#39;ve lost.\n\tKermit: good game.\n\n100) MatrixFrog: Trade R1 G1 Matrixfrog\n\n101) Kermit: Attack G1E Matrixfrog\n\n\nHomeworlds Online (SDG# 760)\nStarted: 2005.9.26, Ended: 2005.10.1\nParticipants: MatrixFrog (S), pigasuspig (N)\nWinner: pigasuspig\n\n1) pigasuspig: Homeworld G3 B1 Y3\n\n2) MatrixFrog: Homeworld B3 Y2 G3\n\n3) pigasuspig: Build Y1 Pigasuspig\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) pigasuspig: Build Y1 Pigasuspig\n\n\n6) MatrixFrog: Build G1 Matrixfrog\n\n7) pigasuspig: Trade Y1 G1 Pigasuspig\n\n8) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n9) pigasuspig: Discover G1 Pigasuspig B2 Sapphire\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\n11) pigasuspig: Build G1 Sapphire\n\n12) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n13) pigasuspig: Build G2 Sapphire\n\n14) MatrixFrog: Trade G1 R1 Matrixfrog\n\n15) pigasuspig: Trade G1 Y1 Sapphire\n\n16) MatrixFrog: Build R1 Matrixfrog\n\n17) pigasuspig: Build Y2 Sapphire\n\n18) MatrixFrog: Build B1 Matrixfrog\n\n19) pigasuspig: Build Y2 Sapphire\n\n20) MatrixFrog: Trade B1 G1 Matrixfrog\n\n21) pigasuspig: Build Y3 Pigasuspig\n\n22) MatrixFrog: Discover Y1 Matrixfrog G1 Escape\n\n23) pigasuspig: Trade Y1 R1 Sapphire\n\n24) MatrixFrog: Discover Y1 Escape G2 Escapeii\n\n25) pigasuspig: Trade Y3 R3 Pigasuspig\n\tMatrixFrog: that&#39;s &quot;II&quot; as in the roman numeral 2, not LL or one-one.\n\n26) MatrixFrog: Build G1 Matrixfrog\n\tpigasuspig: thanks\n\n27) pigasuspig: Build R2 Pigasuspig\n\n28) MatrixFrog: Build Y1 Escapeii\n\n29) pigasuspig: Sacrifice Y2 Sapphire\nDiscover G1 Sapphire B1 Disposable\nMove G1 Disposable Matrixfrog\nCatastrophe Matrixfrog G\n\n30) MatrixFrog: Move Y1 Escapeii Pigasuspig\n\n31) pigasuspig: Sacrifice Y2 Sapphire\nDiscover G2 Sapphire G1 Throwaway\nMove G2 Throwaway Matrixfrog\n\n32) MatrixFrog: Move Y1 Escapeii Pigasuspig\nCatastrophe Pigasuspig Y\n\n33) pigasuspig: Sacrifice R3 Pigasuspig\nAttack R1S Matrixfrog\nAttack R1S Matrixfrog\nAttack B1S Matrixfrog\n\n\nHomeworlds Online (SDG# 780)\nStarted: 2005.9.28, Ended: 2005.10.3\nParticipants: zevzimra (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) zevzimra: Homeworld G2 B3 Y3\n\tzevzimra: Andy?  OMG, I am very honored!\n\n3) andylooney: Build Y1 Andylooney\n\n4) zevzimra: Build Y1 Zevzimra\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) zevzimra: Discover Y1 Zevzimra G1 Wolfsong\n\tandylooney: yup, it&#39;s me! I saw an open binary game and jumped in. So, do I know you?\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) zevzimra: Build Y1 Zevzimra\n\tzevzimra: Regretfully, no, we have never met...  but I am a big fan!  \n\n9) andylooney: Build G1 Clampett\n\n10) zevzimra: Build Y1 Wolfsong\n\n11) andylooney: Discover G1 Clampett B1 Cobalt\n\n12) zevzimra: Trade Y1 B1 Zevzimra\n\n13) andylooney: Build G2 Cobalt\n\n14) zevzimra: Move B1 Zevzimra Wolfsong\n\n15) andylooney: Build G3 Clampett\n\n16) zevzimra: Build B2 Wolfsong\n\n17) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild G3 Clampett\nBuild G3 Cobalt\n\n18) zevzimra: Construct B2 Wolfsong\n\n19) andylooney: Trade G3 R3 Cobalt\n\n20) zevzimra: Build Y1 Zevzimra\n\n21) andylooney: Trade G2 Y2 Cobalt\n\n22) zevzimra: Trade B2 R2 Wolfsong\n\n23) andylooney: Sacrifice G3 Clampett\nBuild G2 Clampett\nBuild G3 Cobalt\nBuild G3 Cobalt\n\n24) zevzimra: Build B2 Wolfsong\n\n25) andylooney: Move G3 Clampett Wolfsong\n\n26) zevzimra: Move R2 Wolfsong Clampett\n\n27) andylooney: Sacrifice R3 Cobalt\nAttack R2S Clampett\nAttack B2S Wolfsong\nAttack B2S Wolfsong\n\n28) zevzimra: Trade Y1 R1 Zevzimra\n\tzevzimra: Ouch\n\n29) andylooney: Trade B2 R2 Wolfsong\n\n\tzevzimra: I regretfully resign...  you are certainly a master at this!\n\tSYSTEM: zevzimra resigns.\n\nHomeworlds Online (SDG# 792)\nStarted: 2005.9.28, Ended: 2005.10.4\nParticipants: andylooney (S), MatrixFrog (N)\nWinner: andylooney\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\tMatrixFrog: Hooray! Thank you! I&#39;m sure you&#39;ll crush me easily, but that&#39;s okay. Good luck!\n\n2) andylooney: Homeworld G2 B3 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tandylooney: it&#39;s my pleasure!\r\n\n\n4) andylooney: Build Y1 Andylooney\n\n5) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n6) andylooney: Trade Y1 B1 Andylooney\n\n7) MatrixFrog: Build B2 Matrixfrog\n\n8) andylooney: Discover B1 Andylooney G1 Paradise\n\n9) MatrixFrog: Trade B2 R2 Matrixfrog\n\n10) andylooney: Build B2 Paradise\n\n11) MatrixFrog: Build B2 Matrixfrog\n\n12) andylooney: Build B2 Paradise\n\n13) MatrixFrog: Discover B1 Matrixfrog Y3 Magnesium\n\n14) andylooney: Trade B2 Y2 Paradise\n\n15) MatrixFrog: Move B1 Magnesium Paradise\n\n16) andylooney: Trade B2 R2 Paradise\n\n17) MatrixFrog: Build B2 Paradise\n\n18) andylooney: Attack B2N Paradise\n\tandylooney: I&#39;m having trouble... when I say attack b2 paradise, it says &quot;The ship B2S could not be found in the paradise system.&quot;\n\tMatrixFrog: I replied to your email. In case that doesn&#39;t go through:&lt;br&gt;&lt;br&gt;The system is designed for 3 and 4 player games, and doesn&#39;t modify itself for 2 player games. You are South and I am North (your homeworld has an (S) after it and mine has an (N) so you have to type &quot;attack b2n paradise&quot; to indicate that you mean MY b2 ship and not someone else&#39;s. In this case, there is only one b2, so it&#39;s unambiguous, but the system still requires it. Make sense? \n\n19) MatrixFrog: Build B2 Paradise\n\tandylooney: Ah! I see. I should have read the fine print!\n\n20) andylooney: Sacrifice Y2 Paradise\nDiscover R2 Paradise G3 Garden\nMove B2 Paradise Garden\n\tMatrixFrog: I never understood why they bothered with all that &quot;catastrophes are optional&quot; stuff until now.\n\n21) MatrixFrog: Trade B2 R2 Matrixfrog\n\n22) andylooney: Build B2 Paradise\nCatastrophe Paradise Blue\n\n23) MatrixFrog: Trade Y3 G3 Matrixfrog\n\tMatrixFrog: blue is called &quot;salvage technology&quot;? i would have called it &quot;trade technology&quot; or &quot;conversion technology&quot;... weird\n\n24) andylooney: Build R1 Garden\n\n25) MatrixFrog: Trade R2 Y2 Matrixfrog\n\n26) andylooney: Trade R1 Y1 Garden\n\n27) MatrixFrog: Build G1 Matrixfrog\n\n28) andylooney: Build Y1 Andylooney\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) andylooney: Trade Y1 G1 Andylooney\n\n31) MatrixFrog: Trade G1 B1 Matrixfrog\n\n32) andylooney: Discover G1 Andylooney Y1 Gateway\n\n33) MatrixFrog: Build R1 Matrixfrog\n\n34) andylooney: Build Y2 Andylooney\n\n35) MatrixFrog: Discover B1 Matrixfrog Y3 Epsilon\n\n36) andylooney: Discover G1 Gateway Y3 Goldenrock\n\n37) MatrixFrog: Trade B1 G1 Epsilon\n\n38) andylooney: Discover Y2 Andylooney G1 Niceplace\n\n39) MatrixFrog: Discover G1 Epsilon Y1 Theta\n\n40) andylooney: Build Y2 Garden\n\n41) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove G1 Theta Andylooney\n\n42) andylooney: Build R1 Garden\n\n43) MatrixFrog: Move R1 Matrixfrog Goldenrock\n\n44) andylooney: Sacrifice R2 Garden\nAttack R1N Goldenrock\nAttack G1N Andylooney\n\n45) MatrixFrog: Move R2 Matrixfrog Goldenrock\n\n46) andylooney: Sacrifice Y2 Garden\nMove G1 Goldenrock Niceplace\nMove R1 Goldenrock Niceplace\n\n47) MatrixFrog: Build G2 Matrixfrog\n\n48) andylooney: Build G3 Andylooney\n\n49) MatrixFrog: Move G2 Matrixfrog Goldenrock\n\n50) andylooney: Discover G3 Andylooney Y1 Littleyellowdifferent\n\n51) MatrixFrog: Build Y1 Matrixfrog\n\n52) andylooney: Move G1 Andylooney Littleyellowdifferent\n\n53) MatrixFrog: Move Y1 Matrixfrog Goldenrock\n\n54) andylooney: Sacrifice G3 Littleyellowdifferent\nBuild G3 Littleyellowdifferent\nBuild Y2 Niceplace\nBuild Y3 Garden\n\n55) MatrixFrog: Build R1 Goldenrock\n\n56) andylooney: Sacrifice Y3 Garden\nMove Y1 Garden Littleyellowdifferent\nMove Y1 Littleyellowdifferent Goldenrock\nMove Y2 Niceplace Goldenrock\nCatastrophe Goldenrock Yellow\n\n57) MatrixFrog: Discover G3 Matrixfrog Y3 Zeta\n\n58) andylooney: Sacrifice Y2 Niceplace\nMove G3 Littleyellowdifferent Garden\nMove G3 Garden Matrixfrog\n\n59) MatrixFrog: Build Y1 Matrixfrog\n\n60) andylooney: Sacrifice R1 Niceplace\nAttack Y2N Matrixfrog\n\n61) MatrixFrog: Build Y1 Matrixfrog\n\n62) andylooney: Build Y2 Matrixfrog\nCatastrophe Matrixfrog Yellow\n\n\nHomeworlds Online (SDG# 777)\nVariants: &quot;Left man down&quot;\nStarted: 2005.9.29, Ended: 2005.10.7\nParticipants: rootbeer (S), istari (W), zevzimra (N), Kermit (E)\nWinner: zevzimra\n\n1) zevzimra: Homeworld B1 G2 Y3\n\n2) Kermit: Homeworld G1 Y2 B3\n\n3) rootbeer: Homeworld B3 G1 Y3\n\n4) istari: Homeworld G3 B1 Y3\n\n5) zevzimra: Build Y1 Zevzimra\n\tzevzimra: Good luck!\n\n6) Kermit: Build B1 Kermit\n\n7) rootbeer: Build Y1 Rootbeer\n\n8) istari: Build Y1 Istari\n\n9) zevzimra: Trade Y1 G1 Zevzimra\n\n10) Kermit: Discover B1 Kermit G3 Crate\n\n11) rootbeer: Trade Y1 G1 Rootbeer\n\n12) istari: Trade Y1 R1 Istari\n\n13) zevzimra: Discover G1 Zevzimra Y3 Zipper\n\n14) Kermit: Build B1 Crate\n\n15) rootbeer: Build Y1 Rootbeer\n\n16) istari: Build R1 Istari\n\n17) zevzimra: Build G1 Zipper\n\n18) Kermit: Trade B1 R1 Crate\n\n19) rootbeer: Build G2 Rootbeer\n\n20) istari: Discover R1 Istari G2 Smile\n\n21) zevzimra: Build G2 Zipper\n\n22) Kermit: Build B1 Kermit\n\n23) rootbeer: Discover G1 Rootbeer B2 Dirigible\n\n24) istari: Trade R1 B1 Istari\n\n25) zevzimra: Construct Y1 Zevzimra\n\n26) Kermit: Build B2 Crate\n\n27) rootbeer: Build G2 Dirigible\n\n28) istari: Build B2 Istari\n\n29) zevzimra: Discover G1 Zipper R1 Pants\n\n30) Kermit: Trade B2 R2 Crate\n\n31) rootbeer: Trade G1 Y1 Dirigible\n\n32) istari: Trade B1 G1 Istari\n\n33) zevzimra: Sacrifice G2 Zipper\nBuild G2 Zipper\nBuild G3 Zipper\n\n34) Kermit: Build B1 Crate\n\n35) rootbeer: Discover Y1 Rootbeer B2 Bobloblaw\n\n36) istari: Construct G3 Istari\n\n37) zevzimra: Move G3 Zipper Zevzimra\n\n38) Kermit: Trade B1 Y1 Crate\n\n39) rootbeer: Build G3 Rootbeer\n\n40) istari: Move G3 Istari Dirigible\n\n41) zevzimra: Trade G3 R3 Zevzimra\n\n42) Kermit: Move R1 Crate Bobloblaw\n\n43) rootbeer: Trade Y3 R3 Rootbeer\n\n44) istari: Construct G3 Istari\n\n45) zevzimra: Trade Y1 B1 Zevzimra\n\n46) Kermit: Attack Y1S Bobloblaw\n\n47) rootbeer: Build R1 Rootbeer\n\n48) istari: Trade G3 R3 Istari\n\n49) zevzimra: Move B1 Zevzimra Zipper\n\n50) Kermit: Pass\n\n51) rootbeer: Discover Y1 Dirigible G3 Floo\n\n52) istari: Sacrifice G3 Dirigible\nBuild B2 Istari\nBuild Y1 Istari\nBuild G3 Istari\n\n53) zevzimra: Construct B2 Zipper\n\n54) Kermit: Move B1 Crate Bobloblaw\n\n55) rootbeer: Build Y1 Floo\n\n56) istari: Move G3 Istari Smile\n\n57) zevzimra: Sacrifice Y3 Zevzimra\nMove B1 Zipper Kermit\nMove B2 Zipper Kermit\nMove G1 Zipper Zevzimra\nCatastrophe Kermit B\n\n\nHomeworlds Online (SDG# 812)\nStarted: 2005.9.30, Ended: 2005.9.30\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) sketchwick: Homeworld B2 G1 R3\n\n3) jeep: Construct G1 Jeep\n\n4) sketchwick: Build R1 Sketchwick\n\n5) jeep: Build G1 Jeep\n\n6) sketchwick: Trade R1 Y1 Sketchwick\n\n7) jeep: Trade G1 R1 Jeep\n\n8) sketchwick: Discover R3 Sketchwick G3 Sproutdeath\n\n9) jeep: Build R1 Jeep\n\n10) sketchwick: Build Y1 Sketchwick\n\n11) jeep: Trade R1 Y1 Jeep\n\n12) sketchwick: Move Y1 Sketchwick Sproutdeath\n\n13) jeep: Discover Y1 Jeep G3 Sproutgo\n\n14) sketchwick: Build R1 Sproutdeath\n\n15) jeep: Build Y2 Sproutgo\n\n16) sketchwick: Move R3 Sproutdeath Jeep\n\n17) jeep: Attack R3S Jeep\n\n18) sketchwick: Build Y2 Sketchwick\n\n19) jeep: Sacrifice Y2 Sproutgo\nMove R3 Jeep Sproutgo\nMove R3 Sproutgo Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 813)\nStarted: 2005.9.30, Ended: 2005.9.30\nParticipants: sketchwick (S), jeep (N)\nWinner: sketchwick\n\n1) jeep: Homeworld Y3 B2 G3\n\n2) sketchwick: Homeworld Y3 G1 B3\n\n3) jeep: Build G1 Jeep\n\n4) sketchwick: Build B1 Sketchwick\n\n5) jeep: Build G1 Jeep\n\n6) sketchwick: Build B1 Sketchwick\n\n7) jeep: Discover G1 Jeep B1 Trada\n\n8) sketchwick: Discover B1 Sketchwick R2 Yada\n\n9) jeep: Build G2 Trada\n\n10) sketchwick: Trade B3 Y3 Sketchwick\n\n11) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G2 Trada\nBuild G3 Jeep\n\n12) sketchwick: Build Y1 Sketchwick\n\n13) jeep: Discover G2 Jeep Y1 Mova\n\n14) sketchwick: Build B2 Sketchwick\n\n15) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Mova\nBuild G3 Mova\n\n16) sketchwick: Trade B2 R2 Sketchwick\n\n17) jeep: Trade G1 R1 Jeep\n\n18) sketchwick: Move Y3 Sketchwick Yada\n\n19) jeep: Trade G2 Y2 Trada\n\n20) sketchwick: Discover R2 Sketchwick Y2 Huba\n\n21) jeep: Sacrifice G3 Mova\nBuild G1 Mova\nBuild G2 Jeep\nBuild G3 Trada\n\n22) sketchwick: Build B2 Sketchwick\n\n23) jeep: Trade G2 B2 Trada\n\n24) sketchwick: Trade B2 G2 Sketchwick\n\n25) jeep: Sacrifice Y2 Trada\nMove G3 Mova Huba\nMove G3 Huba Sketchwick\n\n26) sketchwick: Move Y3 Yada Mova\n\n27) jeep: Sacrifice R1 Jeep\nAttack G2S Sketchwick\n\n28) sketchwick: Move Y3 Mova Jeep\n\n29) jeep: Sacrifice G2 Sketchwick\nBuild G2 Jeep\nBuild B2 Trada\n\n30) sketchwick: Sacrifice R2 Huba\nAttack G3N Jeep\nAttack G2N Jeep\n\n31) jeep: Sacrifice B2 Trada\nTrade G3 R3 Sketchwick\nTrade G2 Y2 Mova\n\n32) sketchwick: Build G2 Jeep\nCatastrophe Jeep G\n\n\nHomeworlds Online (SDG# 823)\nStarted: 2005.9.30, Ended: 2005.10.6\nParticipants: Samaculus (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld Y1 B2 G3\n\n2) Samaculus: Homeworld B3 G2 Y1\n\n3) MatrixFrog: Build G1 Matrixfrog\n\n4) Samaculus: Build Y1 Samaculus\n\n5) MatrixFrog: Build G1 Matrixfrog\n\n6) Samaculus: Build Y2 Samaculus\n\n7) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n8) Samaculus: Discover Y1 Samaculus G1 Heiphon\n\n9) MatrixFrog: Build Y2 Matrixfrog\n\n10) Samaculus: Discover Y1 Heiphon G2 Sentinel\n\n11) MatrixFrog: Discover Y2 Matrixfrog R3 Scorch\n\n12) Samaculus: Discover Y1 Sentinel G3 Heiphon\n\n13) MatrixFrog: Trade G1 B1 Matrixfrog\n\n14) Samaculus: Build Y2 Heiphon\n\n15) MatrixFrog: Trade Y3 B3 Matrixfrog\n\n16) Samaculus: Build Y3 Samaculus\n\n17) MatrixFrog: Discover Y2 Scorch G1 Delta\n\n18) Samaculus: Move Y1 Samaculus Delta\n\n19) MatrixFrog: Move Y2 Delta Samaculus\n\n20) Samaculus: Move Y1 Delta Heiphon\n\n21) MatrixFrog: Build Y3 Samaculus\nCatastrophe Samaculus Y\n\n\nHomeworlds Online (SDG# 817)\nStarted: 2005.10.1, Ended: 2005.10.7\nParticipants: Jesse (S), dralius (N)\nWinner: Jesse\n\n1) dralius: Homeworld Y1 G1 R1\n\tdralius: Hi, new to this game so i may be slow.\r\n\n\n2) Jesse: Homeworld G1 B1 R1\n\tJesse: Slow is okay.  I recommend, though, that you take a look at the wiki, where I&#39;ve written some important strategy tips for new players.  The number one thing I&#39;d point out is that you should choose a large ship to start, not a small one.  To be sporting, I&#39;ll also take a small ship.\n\n3) dralius: Build R1 Dralius\n\tdralius: i am still working out how to write the comands, it seems that i can&#39;t construct a shit at this point.\r\n\n\tdralius: it says i must have that type of ship to constuct it and it says there is not sufficiant red to build one either.\n\tdralius: if i can&#39;t build a ship what can i do?\r\n\n\tJesse: You can only build a ship of the same color as a ship you already own in the system where you&#39;re building it, so it would have to be red.  I don&#39;t understand the error about insufficient red; clearly there are red &#39;mids available.  Are you trying to build a medium or large ship?  You must build the smallest available of that color.\n\tJesse: The command should be: &quot;construct r1 dralius&quot;\n\n4) Jesse: Build R2 Jesse\n\tdralius: i think my problem was i assumed it knew what the smallest value was so i didn&#39;t need to tell it that is was a 1\r\n\n\tJesse: Ah, yes.  It appears there are some poor error messages for that kind of malformed command.\n\n5) dralius: Discover R1 Dralius Y3 Occularies\n\tAaron: I apologize.  What is happening is once an error occurs, it shouldn&#39;t continue checking for other errors.  Because it&#39;s not &quot;short-circuiting,&quot; you sometimes get multiple errors that don&#39;t really make sense.  This is indeed on my TODO list and I just haven&#39;t gotten around to it.  I *will* get to it though.\n\tAaron: I will consider changing the &quot;construct&quot; command as well so that you do not have to enter a size.  I guess I always err on the side of expliciteness so as to minimize surprises and unanticipated results.\n\tdralius: here is a question. with the object being to destroy the other player/s. In a two player game is there any point on doing anything other than build ships and attack.\n\tdralius: second question: is there any way to block an attack?\r\n\n\n6) Jesse: Trade R2 Y2 Jesse\n\tJesse: To question one, I would say there&#39;s actually a lot of complexity just in those two general areas of production and attack.  Particularly when it comes to production, you want to try to exploit the stash and the game position to outproduce your opponent.  This can include making a run on a particular color to try to limit your opponent&#39;s options in some way, such as leaving him unmaneuverable because he doesn&#39;t have enough yellow.\n\tJesse: To the second question, in what sense do you mean?  There are various kinds of attacks, and various ways of protecting yourself.  For instance, to protect yourself from catastrophes, limit the number of &#39;mids of a given color in a system.\n\n7) dralius: Build R2 Dralius\n\tJesse: Now that I have a Y2 ship, I can sacrifice it to hop a ship directly into your home system, so you&#39;ll have to watch for that.\n\n8) Jesse: Build R2 Jesse\n\tdralius: my second question is literal. If i am in a position to attack you there seems to be nothing you can do to stop it. Am i correct?\n\tJesse: Right.  Of course, when you move into attack position, it will be my turn next, so you&#39;ll have to account for whatever I might do (such as being able to attack your ship) before you get to carry out the attack.\n\n9) dralius: Discover R1 Occularies B2 Stomell\n\tJesse: Now, beware of the fact that I can hop one of my red ships into your homeworld, so you can&#39;t afford to build a third one there.\n\tJesse: You may find yourself rather limited if you have nothing but red ships; it&#39;s generally good to diversify.  To do that, you&#39;ll have to find a blue planet sometime.\n\tdralius: why?\r\n\n\tdralius: i may be missing something but i don&#39;t see the point in having blue. Yello allows me to move - i have that and green to produce i have that.\r\n\r\n\n\n10) Jesse: Discover R2 Jesse Y3 Stage\n\tdralius: ok now i am in a blue system.\r\n\n\tJesse: Yes, you have yellow and green, but you only have red ships.  First off, that leaves you vulnerable to catastrophes.  A single red catastrophe in your system will wipe you out.  Second, ship sacrifices are a very important part of the game.  Having yellow ships to sacrifice allows you to move multiple ships on one turn, which is an important attack technique.  Large green ships can boost your production by building multipe ships in one turn.  As long as you can rebuild the large green as part of the maneuver, you don&#39;t lose anything.\n\n11) dralius: Trade R1 G1 Stomell\n\tdralius: sorry still thinking about my move\r\n\n\n12) Jesse: Build R1 Jesse\n\n13) dralius: Build G2 Stomell\n\n14) Jesse: Build R2 Jesse\n\n15) dralius: Trade G2 Y2 Stomell\n\n16) Jesse: Move R1 Jesse Stage\n\n17) dralius: Move G1 Stomell Dralius\n\tJesse: What would happen if I sacrificed my y2 to move the ships from Stage to your homeworld?\n\tdralius: other than you capturing it?\r\n\n\tdralius: nothing i can do about that now.\r\n\n\tdralius: you could distroy my system.\r\n\n\tdralius: construct g2 dralius\n\tdralius: can&#39;t do that i guess, i don&#39;t see the solution\r\n\r\n\n\n18) Jesse: Build R3 Jesse\n\tJesse: Right.  Now I can&#39;t wipe you out with a single blow.  Do you see how I&#39;ve had you scrambling to protect your homeworld while I build strength, largely due to that little extra bit of flexibility I had with the yellow ship?\n\n\tdralius: How can you wipe out all 3 ships\n\tdralius: Either way i think its over. Thanks for the game, i guess this it is a bit to oblique for me.\n\tSYSTEM: dralius resigns.\n\nHomeworlds Online (SDG# 816)\nVariants: &quot;Left man down&quot;\nStarted: 2005.10.1, Ended: 2005.10.12\nParticipants: Subhan64 (S), Samaculus (W), MatrixFrog (N), istari (E)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B1 Y2 G3\n\n2) istari: Homeworld B1 G2 Y3\n\n3) Subhan64: Homeworld B3 G1 Y3\n\n4) MatrixFrog: Build G1 Matrixfrog\n\tSubhan64: Shoot.  If we force resign, can we continue with the game?\n\trootbeer: You should be able to continue, I think. It should be much like any other way that a player is eliminated.\n\n5) istari: Build Y1 Istari\n\tSYSTEM: Samaculus resigns.\n\tAaron: I apologize for the error.  It&#39;s my bad.  I have reset the current player and (I think) have fixed the original bug.  Cheers!\n\n6) Subhan64: Build Y1 Subhan64\n\n7) MatrixFrog: Discover G1 Matrixfrog Y3 Alpha\n\n8) istari: Trade Y1 R1 Istari\n\n9) Subhan64: Build Y1 Subhan64\n\n10) MatrixFrog: Build G1 Alpha\n\n11) istari: Build Y1 Istari\n\n12) Subhan64: Trade Y3 R3 Subhan64\n\n13) MatrixFrog: Build G1 Matrixfrog\n\tSubhan64: trade y3 r3 subhan64\n\n14) istari: Build R1 Istari\n\n15) Subhan64: Build R1 Subhan64\n\n16) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n17) istari: Trade R1 B1 Istari\n\n18) Subhan64: Build Y1 Subhan64\n\n19) MatrixFrog: Build G1 Matrixfrog\n\n20) istari: Trade Y3 G3 Istari\n\n21) Subhan64: Build R1 Subhan64\n\n22) MatrixFrog: Trade G1 R1 Matrixfrog\n\n23) istari: Move R1 Istari Alpha\n\n24) Subhan64: Trade Y1 B1 Subhan64\n\n25) MatrixFrog: Move G1 Alpha Istari\n\n26) istari: Attack G1N Alpha\n\n27) Subhan64: Build Y1 Subhan64\n\n28) MatrixFrog: Build G1 Istari\nCatastrophe Istari G\n\n29) istari: Build G1 Alpha\n\n30) Subhan64: Discover Y1 Subhan64 G2 Omicronpersei\n\n31) MatrixFrog: Build G1 Matrixfrog\n\n32) istari: Move G1 Alpha Istari\n\n33) Subhan64: Move R3 Subhan64 Omicronpersei\n\n34) MatrixFrog: Build G2 Matrixfrog\n\n35) istari: Build G2 Istari\n\n36) Subhan64: Move R3 Omicronpersei Alpha\n\n37) MatrixFrog: Discover G1 Matrixfrog Y3 Bravo\n\n38) istari: Move R1 Alpha Omicronpersei\n\n39) Subhan64: Move Y1 Omicronpersei Subhan64\n\n40) MatrixFrog: Build G2 Bravo\n\n41) istari: Trade G2 Y2 Istari\n\n42) Subhan64: Attack G1E Alpha\n\n43) MatrixFrog: Move G1 Bravo Istari\n\n44) istari: Build G2 Istari\n\n45) Subhan64: Move R3 Alpha Omicronpersei\n\n46) MatrixFrog: Build G2 Istari\n\n47) istari: Sacrifice Y2 Istari\nMove G2 Istari Omicronpersei\nMove G1 Istari Omicronpersei\n\n48) Subhan64: Attack G2E Omicronpersei\n\n49) MatrixFrog: Build R1 Matrixfrog\n\n50) istari: Move B1 Istari Omicronpersei\n\n51) Subhan64: Attack R1E Omicronpersei\n\n52) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack Y1E Istari\n\n\nHomeworlds Online (SDG# 829)\nStarted: 2005.10.2, Ended: 2005.10.12\nParticipants: andylooney (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B2 Y1 G3\n\n2) andylooney: Homeworld B3 G2 Y3\n\tJesse: Hi, Andy.  I&#39;ve been looking forward to your arrival.\n\n3) Jesse: Build G1 Jesse\n\tandylooney: hello. Is this Jesse Welton I&#39;m playing, or some other Jesse?\n\tJesse: It is indeed.  The former.  That is to say, Jesse Welton.  Not some other Jesse.\n\n4) andylooney: Build Y1 Andylooney\n\n5) Jesse: Discover G1 Jesse B3 Chewy\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) Jesse: Build G1 Jesse\n\n8) andylooney: Discover G1 Andylooney Y1 Yellowrock\n\n9) Jesse: Build G2 Chewy\n\n10) andylooney: Build Y1 Andylooney\n\n11) Jesse: Trade G2 Y2 Chewy\n\n12) andylooney: Build G2 Yellowrock\n\n13) Jesse: Sacrifice G3 Jesse\nBuild G2 Chewy\nBuild G3 Jesse\nBuild Y2 Chewy\n\n14) andylooney: Discover G2 Yellowrock Y3 Clampett\n\n15) Jesse: Trade G1 R1 Jesse\n\n16) andylooney: Trade Y1 R1 Andylooney\n\n17) Jesse: Discover G2 Chewy Y1 Horch\n\n18) andylooney: Discover G1 Yellowrock B3 Bigblue\n\n19) Jesse: Discover Y2 Chewy G1 Schnoz\n\n20) andylooney: Build G3 Bigblue\n\n21) Jesse: Build G3 Horch\n\n22) andylooney: Sacrifice G3 Bigblue\nBuild G3 Bigblue\nBuild Y1 Andylooney\nBuild R1 Andylooney\n\n23) Jesse: Sacrifice G3 Horch\nBuild G3 Horch\nBuild Y2 Chewy\nBuild Y3 Schnoz\n\n24) andylooney: Discover Y1 Andylooney B1 Littleblue\n\n25) Jesse: Move G3 Horch Clampett\n\n26) andylooney: Move G2 Clampett Littleblue\n\tandylooney: man, I should not have let you get those 2 yellows. I think I&#39;m going to lose this one.\n\tandylooney: You&#39;re already ahead and I can see where this is going, and I&#39;m not happy about it. I&#39;m thinking about just resigning now...\n\n27) Jesse: Sacrifice G3 Clampett\nBuild G3 Horch\nBuild Y3 Schnoz\nBuild R2 Jesse\n\tJesse: I must say, I&#39;m relieved by your response here.  I woke up in the middle of the night suddenly worried you would simply move one of your r1s out to littleblue.  That would have given you a huge production advantage in red.\n\tJesse: But you&#39;re right; things got harder for you once I got some yellow ships to go with my factory.\n\n28) andylooney: Move R1 Andylooney Littleblue\n\n29) Jesse: Sacrifice Y2 Chewy\nMove Y3 Schnoz Andylooney\nMove G3 Horch Andylooney\n\n30) andylooney: Attack Y3N Andylooney\n\tandylooney: Well done sir! (There goes my undefeated-on-super-duper-games record...)\n\n31) Jesse: Sacrifice R2 Jesse\nAttack Y3S Andylooney\nAttack Y3S Andylooney\n\n32) andylooney: Pass\n\tJesse: And thank you for an excellent game!  It looks like I get to retain my own undefeated record in SDG Homeworlds a bit longer.  I&#39;m sure you&#39;ll strip me of it before long.\n\n33) Jesse: Sacrifice R1 Jesse\nAttack R1S Andylooney\n\n\nHomeworlds Online (SDG# 841)\nStarted: 2005.10.3, Ended: 2005.10.4\nParticipants: rootbeer (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\trootbeer: Welcome to SDG! I hope I can provide a worthy opponent, but please let me know if I make any major mistakes, because I&#39;m still learning the strategy of Homeworlds.\n\n2) rootbeer: Homeworld G3 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) rootbeer: Build Y1 Rootbeer\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) rootbeer: Build Y1 Rootbeer\n\n7) andylooney: Build G1 Andylooney\n\n8) rootbeer: Trade Y1 B1 Rootbeer\n\n9) andylooney: Trade G1 B1 Andylooney\n\n10) rootbeer: Build B2 Rootbeer\n\n11) andylooney: Build B2 Andylooney\n\trootbeer: Have you checked out Praetor yet? It&#39;s pretty fun.\r\n\n\trootbeer: Praetorian, I mean\r\n\n\n12) rootbeer: Trade B2 G2 Rootbeer\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) rootbeer: Build B2 Rootbeer\n\n15) andylooney: Discover B2 Andylooney G3 Garden\n\n16) rootbeer: Discover B2 Rootbeer G1 Emerald\n\n17) andylooney: Trade B1 Y1 Andylooney\n\n18) rootbeer: Move Y1 Rootbeer Emerald\n\n19) andylooney: Discover Y1 Andylooney B3 Bigblue\n\n20) rootbeer: Build Y1 Emerald\n\n21) andylooney: Build Y2 Andylooney\n\n22) rootbeer: Build Y2 Rootbeer\n\n23) andylooney: Trade Y2 G2 Andylooney\n\n24) rootbeer: Build Y2 Emerald\n\n25) andylooney: Build Y2 Andylooney\n\n26) rootbeer: Discover Y1 Emerald G3 Sniffle\n\n27) andylooney: Sacrifice G1 Clampett\nConstruct Y3 Bigblue\n\tandylooney: I&#39;m having a problem here. I should be able to do this:\r\nSacrifice g1 clampett\r\nconstruct y3 bigblue\r\nThis is a maneuver we call &quot;cashing in an investment.&quot; But it&#39;s not working! I&#39;m getting this message: &quot;There are insufficient Y3 pieces in the stash.&quot; This is true at the start of the turn, but the sacrifice action puts the y3 into the stash, thus allowing my construct action. I think the computer needs to have this fine point explained to it. I need help before I can take my turn!\n\trootbeer: I think you&#39;re right. Aaron?\r\n\n\tAaron: If you &quot;sacrifice G1 clampett&quot; then there is no Y being put into the stash, just the G.  I don&#39;t see where the yellow piece could come from.\n\trootbeer: It&#39;s the yellow sun of Clampett, when it&#39;s returned to the interstellar flux.\r\n\n\tAaron: Ahh!  I see now.  You are correct.  This is a bug.  I *think* it&#39;s an easy fix.  I&#39;m very distracted at this moment, but I will try to get to it tonight.  Sorry!\n\tAaron: OK, I think it works now.  Give it a shot.\n\n28) rootbeer: Sacrifice Y2 Rootbeer\nMove Y1 Emerald Bigblue\nMove Y2 Emerald Bigblue\nCatastrophe Bigblue Y\n\tandylooney: Yay! He fixed it! Thanks Aaron!\n\tMatrixFrog: I still say it would be fun to visit the hyperspatial flux. Although I suppose by visiting any star in it, you&#39;ve automatically pulled it out of the flux. It&#39;s like wishing to speak in a silent room.\n\n29) andylooney: Discover G2 Andylooney Y3 Clampett2\n\n30) rootbeer: Build Y1 Sniffle\n\n31) andylooney: Move Y2 Andylooney Garden\n\n32) rootbeer: Build B1 Emerald\n\n33) andylooney: Build B3 Garden\n\n34) rootbeer: Build B3 Rootbeer\n\n35) andylooney: Sacrifice Y2 Garden\nMove B2 Garden Emerald\nMove B2 Emerald Rootbeer\nCatastrophe Rootbeer Blue\n\n36) rootbeer: Move Y3 Rootbeer Andylooney\n\n37) andylooney: Trade Y3 R3 Andylooney\n\trootbeer: &quot;I come in peace.&quot; Why doesn&#39;t anybody believe me?\r\n\n\n38) rootbeer: Move Y3 Andylooney Garden\n\n39) andylooney: Trade B3 Y3 Garden\n\n40) rootbeer: Build Y1 Garden\n\n41) andylooney: Sacrifice Y3 Garden\nMove G2 Clampett2 Andylooney\nMove R3 Andylooney Rootbeer\nPass\n\n42) rootbeer: Move Y1 Garden Andylooney\n\n43) andylooney: Attack G2S Rootbeer\n\trootbeer: There&#39;s no hope for me now.\n\trootbeer: Maybe sometime you&#39;ll play me at Praetorian or BT&amp;T. Cheers!\n\tandylooney: Thanks for the game!!!\n\n\nHomeworlds Online (SDG# 852)\nStarted: 2005.10.4, Ended: 2005.10.7\nParticipants: istari (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) istari: Homeworld Y3 G1 B3\n\tistari: I&#39;m still learning hope you don&#39;t mind. I am currently playing two 4 player games, but I find it a lttle hard to follow what&#39;s going on. I think a 2 player will help me get a better grasp of the game.\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: Welcome to the game! I really prefer the 2 player version myself. \n\n4) istari: Build B1 Istari\n\n5) andylooney: Trade Y1 B1 Andylooney\n\n6) istari: Build B2 Istari\n\n7) andylooney: Build B2 Andylooney\n\n8) istari: Discover B2 Istari G2 Jupitor2\n\n9) andylooney: Discover B2 Andylooney G3 Garden\n\n10) istari: Trade B1 Y1 Istari\n\n11) andylooney: Build Y1 Andylooney\n\n12) istari: Move Y1 Istari Jupitor2\n\n13) andylooney: Trade B1 G1 Andylooney\n\n14) istari: Build B1 Istari\n\tistari: Last daycare dog just went home. Time for me to go too. I&#39;ll pick up the game again tomorrow.\n\n15) andylooney: Discover G1 Andylooney Y3 Clampett\n\n16) istari: Trade B1 R1 Istari\n\n17) andylooney: Trade Y1 R1 Andylooney\n\n18) istari: Discover Y1 Jupitor2 B3 Hooterville\n\n19) andylooney: Build Y1 Andylooney\n\n20) istari: Build B1 Jupitor2\n\n21) andylooney: Move Y1 Andylooney Garden\n\n22) istari: Build B1 Istari\n\n23) andylooney: Discover B2 Garden G2 Motr\n\n24) istari: Trade B2 Y2 Jupitor2\n\n25) andylooney: Build B2 Motr\n\n26) istari: Trade Y1 G1 Hooterville\n\n27) andylooney: Build G3 Clampett\n\n28) istari: Build G3 Hooterville\n\n29) andylooney: Trade B2 Y2 Motr\n\n30) istari: Build B2 Jupitor2\n\n31) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild R1 Andylooney\nBuild R2 Andylooney\n\n32) istari: Sacrifice G3 Hooterville\nConstruct G3 Hooterville\nConstruct R2 Istari\nConstruct Y1 Jupitor2\n\n33) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild Y1 Motr\nBuild Y2 Garden\n\n34) istari: Trade B2 R2 Jupitor2\n\n35) andylooney: Discover R2 Andylooney B3 Cobalt\n\n36) istari: Sacrifice G3 Hooterville\nConstruct G3 Hooterville\nConstruct R3 Istari\nConstruct R3 Jupitor2\n\n37) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild R3 Cobalt\nBuild B2 Motr\n\tistari: I just saw the errors of my ways, I think. And if I am correct I just lost. Thanks for the game. Hope to play you again. \n\n38) istari: Move R3 Istari Motr\n\tandylooney: I don&#39;t see how I can kill you just now... so I&#39;m just gonna grow again.\n\tistari: My mistake. Misunderstood the rules. You could have caused an overpoulation with red at my homeworld and I thought that it would remove all my pieces, not just the red. Sorry, I keep bouncing between the rule, wiki and game, But I think I&#39;m learning. Now to do something about that possible overpopulation.\n\n39) andylooney: Sacrifice Y2 Motr\nMove B2 Motr Istari\nMove B2 Motr Istari\nCatastrophe Istari Blue\n\tistari: Question, I am not quite clear on this, but can you use the  technology from my ships in a system that we both occupy? or only your ships and the star there? \n\tandylooney: The latter: only your ships and the star color.\n\n40) istari: Sacrifice Y2 Jupitor2\nMove R3 Jupitor2 Cobalt\nMove R2 Jupitor2 Cobalt\nCatastrophe Cobalt Red\n\n41) andylooney: Sacrifice Y2 Garden\nMove G3 Clampett Jupitor2\nMove G3 Jupitor2 Istari\n\n42) istari: Sacrifice G3 Hooterville\nConstruct G3 Hooterville\nConstruct Y2 Jupitor2\nConstruct R2 Motr\n\n43) andylooney: Sacrifice R1 Andylooney\nAttack R2S Istari\n\n44) istari: Pass\n\tistari: Thanks for the game.\n\n45) andylooney: Attack R1S Istari\n\tandylooney: You are very welcome! Thanks for playing!\n\n\nHomeworlds Online (SDG# 856)\nStarted: 2005.10.5, Ended: 2005.10.14\nParticipants: andylooney (S), Kermit (N)\nWinner: andylooney\n\n1) Kermit: Homeworld G2 Y3 B3\n\n2) andylooney: Homeworld B1 G2 Y3\n\tKermit: Thanks for all you do. I bought Zendo a few months back and Fluxx a bit more recently. Now my kids want Fluxx and Aquarius for Christmas (and they&#39;ll get it) And I can&#39;t get any work done (because I am here all day) \n\n3) Kermit: Build B1 Kermit\n\tandylooney: Cool! Thanks for digging our games - and for playing homeworlds with me!\n\tKermit: The pleasure is mine (though hopefully not all of it) and maybe I&#39;ll learn something.\n\n4) andylooney: Build Y1 Andylooney\n\n5) Kermit: Discover B1 Kermit Y1 Minko\n\n6) andylooney: Trade Y1 B1 Andylooney\n\n7) Kermit: Build B2 Kermit\n\n8) andylooney: Discover B1 Andylooney G3 Paradise\n\n9) Kermit: Move B2 Kermit Minko\n\n10) andylooney: Build B2 Paradise\n\n11) Kermit: Trade B1 G1 Minko\n\n12) andylooney: Build Y1 Andylooney\n\n13) Kermit: Build B1 Minko\n\n14) andylooney: Trade B1 Y1 Paradise\n\n15) Kermit: Trade B2 Y2 Minko\n\n16) andylooney: Build Y2 Paradise\n\n17) Kermit: Build B1 Minko\n\n18) andylooney: Trade Y1 G1 Andylooney\n\n19) Kermit: Discover B1 Minko G3 Lalu\n\n20) andylooney: Discover G1 Andylooney Y3 Clampett\n\tKermit: Useless information: Minko was my middle son, Hamilton&#39;s wor for Flamingo when he was a toddler.\n\n21) Kermit: Move B1 Minko Lalu\n\n22) andylooney: Discover Y2 Paradise G1 Gateway\n\n23) Kermit: Trade B1 Y1 Lalu\n\n24) andylooney: Build Y2 Andylooney\n\n25) Kermit: Trade Y1 B1 Lalu\n\n26) andylooney: Trade Y2 R2 Andylooney\n\n27) Kermit: Build Y1 Minko\n\n28) andylooney: Move Y1 Paradise Minko\nCatastrophe Minko Yellow\n\n29) Kermit: Build B2 Kermit\n\n30) andylooney: Move R2 Andylooney Lalu\n\n31) Kermit: Trade B3 R3 Kermit\n\n32) andylooney: Attack B1N Lalu\n\n33) Kermit: Trade B1 Y1 Lalu\n\n34) andylooney: Attack Y1N Lalu\n\tKermit: Not looking good for me.\n\n35) Kermit: Build B1 Kermit\n\tandylooney: Sorry...\n\n36) andylooney: Build B2 Paradise\n\n37) Kermit: Trade B2 R2 Kermit\n\n38) andylooney: Trade B2 R2 Paradise\n\n39) Kermit: Move R2 Kermit Gateway\n\n40) andylooney: Sacrifice R2 Paradise\nAttack R2N Gateway\nPass\n\tKermit: no need for sorry, I will learn from this. Which was part of the reason I play to begin with.\n\n41) Kermit: Build B2 Kermit\n\tandylooney: Then let the lessons continue!\r\n\n\n42) andylooney: Build B2 Lalu\n\n43) Kermit: Trade B1 Y1 Kermit\n\n44) andylooney: Trade B2 G2 Lalu\n\n45) Kermit: Discover Y1 Kermit R1 Flurkey\n\n46) andylooney: Move G2 Lalu Flurkey\n\n47) Kermit: Build B1 Kermit\n\n48) andylooney: Attack Y1N Flurkey\n\n\tKermit: I will have call this one. I see no   way that will lead to victory. Thank you for the game.\n\tSYSTEM: Kermit resigns.\n\nHomeworlds Online (SDG# 860)\nStarted: 2005.10.6, Ended: 2005.10.18\nParticipants: jeep (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tjeep: I&#39;m very new to the game, so if you&#39;d rather play someone more experienced, let me know and I&#39;ll resign and you can challenge someone else.  ;)\n\tandylooney: I love this game so much I&#39;ll take anyone&#39;s challenge!\n\n2) jeep: Homeworld B3 Y1 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) jeep: Build G1 Jeep\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) jeep: Discover Y1 Jeep Y2 Ned\n\n9) andylooney: Build Y1 Andylooney\n\n10) jeep: Build G1 Jeep\n\tjeep: I must have mis-typed, I thought I went to a blue star. \n\n11) andylooney: Discover Y1 Andylooney G3 Paradise\n\n12) jeep: Trade G1 B1 Jeep\n\n13) andylooney: Build Y2 Paradise\n\n14) jeep: Discover Y1 Ned G3 Lost\n\n15) andylooney: Discover Y1 Paradise G2 Gateway\n\n16) jeep: Build Y2 Lost\n\n17) andylooney: Build Y2 Gateway\n\n18) jeep: Discover Y1 Lost B2 Ohboy\n\tjeep: I need to pay more attention to the rules... briefly forgot about how stars are connected.  Now I need to think more and it&#39;s past my bedtime.\n\n19) andylooney: Build Y3 Paradise\n\n20) jeep: Build G1 Jeep\n\n21) andylooney: Sacrifice G1 Clampett\nBuild Y3 Andylooney\n\n22) jeep: Build G1 Jeep\n\tjeep: Ah, interesting.  I didn&#39;t realize that the system was abandoned before you made your choice to build.  We&#39;ve played incorrectly when we played in real life (both times, I think ;) )\n\n23) andylooney: Trade Y3 R3 Andylooney\n\n24) jeep: Trade G1 R1 Jeep\n\n25) andylooney: Build Y3 Andylooney\n\n26) jeep: Build R1 Jeep\n\n27) andylooney: Build R1 Andylooney\n\n28) jeep: Move R1 Jeep Ohboy\n\n29) andylooney: Trade R1 B1 Andylooney\n\n30) jeep: Move G1 Jeep Ohboy\n\n31) andylooney: Move B1 Andylooney Paradise\n\n32) jeep: Build G1 Jeep\n\n33) andylooney: Build B2 Paradise\n\n34) jeep: Sacrifice G3 Jeep\nBuild G1 Ohboy\nBuild G2 Ohboy\nBuild G3 Jeep\n\n35) andylooney: Move Y3 Paradise Ohboy\n\n36) jeep: Move Y1 Ohboy Lost\n\n37) andylooney: Sacrifice R3 Andylooney\nAttack G2S Ohboy\nAttack G1S Ohboy\nAttack R1S Ohboy\n\tjeep: The end is nigh.\n\n38) jeep: Move Y1 Lost Andylooney\n\tjeep: I can&#39;t imagine this is worth playing out, but I will.  :(\n\n39) andylooney: Sacrifice B2 Paradise\nTrade Y3 R3 Andylooney\nTrade Y1 R1 Gateway\n\n40) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R2 Jeep\nBuild Y1 Lost\n\n41) andylooney: Sacrifice Y3 Andylooney\nMove Y3 Ohboy Jeep\nMove G1 Ohboy Jeep\nMove G2 Ohboy Jeep\nCatastrophe Jeep Green\n\n42) jeep: Build Y3 Lost\n\n43) andylooney: Sacrifice R1 Ohboy\nAttack R2S Jeep\n\n44) jeep: Sacrifice Y2 Lost\nMove Y3 Lost Ohboy\nMove Y3 Ohboy Jeep\n\tjeep: Heh, I missed that if you took over the red that you were completely safe.\n\tjeep: Thanks for the game!\n\n45) andylooney: Sacrifice R2 Jeep\nAttack Y3S Jeep\nAttack R1S Jeep\n\tjeep: My latest plan is to wait 2d:23h:59m:39s and force you to surrender.  Hahahahahaha, it&#39;s genius!\n\n46) jeep: Sacrifice Y1 Lost\nMove G1 Ohboy Jeep\n\tjeep: Foiled!  I guess I shouldn&#39;t have revealed my plan.\n\n47) andylooney: Attack G1S Jeep\n\n48) jeep: Trade B1 G1 Jeep\n\n49) andylooney: Attack G1S Jeep\n\n\nHomeworlds Online (SDG# 864)\nStarted: 2005.10.6, Ended: 2005.10.6\nParticipants: the_giggy (S), andylooney (N)\nWinner: andylooney\n\n\tthe_giggy: hey\n\tthe_giggy: go man\n\tSYSTEM: the_giggy resigns.\n\nHomeworlds Online (SDG# 869)\nStarted: 2005.10.6, Ended: 2006.2.21\nParticipants: andylooney (S), lambda (N)\nWinner: andylooney\n\n1) lambda: Homeworld R3 Y1 G3\n\n2) andylooney: Homeworld B1 G2 Y3\n\tlambda: Hi Andy! Would you like to play a game of Global Thermonuclear War... er, I mean Homeworlds?\n\n3) lambda: Build G1 Lambda\n\tandylooney: Greetings! Thanks for playing!\n\tlambda: Wow! Until playing on this server, I completely missed the rule that a new ship you create has to be the same color as an existing ship. Oops. \n\n4) andylooney: Build Y1 Andylooney\n\n5) lambda: Discover G1 Lambda B2 Betelgeuse\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) lambda: Build G1 Betelgeuse\n\n8) andylooney: Build G2 Andylooney\n\n9) lambda: Trade G1 Y1 Betelgeuse\n\n10) andylooney: Discover G2 Andylooney Y3 Clampett\n\n11) lambda: Build G1 Betelgeuse\n\n12) andylooney: Discover G1 Andylooney Y3 Jethro\n\n13) lambda: Trade G1 B1 Betelgeuse\n\n14) andylooney: Build Y1 Andylooney\n\n15) lambda: Build Y2 Betelgeuse\n\n16) andylooney: Trade Y1 R1 Andylooney\n\n17) lambda: Move B1 Betelgeuse Lambda\n\n18) andylooney: Build Y1 Andylooney\n\n19) lambda: Build Y2 Betelgeuse\n\n20) andylooney: Discover Y1 Andylooney G3 Paradise\n\n21) lambda: Discover Y2 Betelgeuse B3 Antares\n\n22) andylooney: Build G1 Clampett\n\n23) lambda: Move Y1 Betelgeuse Antares\n\n24) andylooney: Build Y2 Paradise\n\n25) lambda: Trade Y1 B1 Antares\n\n26) andylooney: Discover Y2 Paradise B2 Meanie\n\n27) lambda: Build B2 Lambda\n\tlambda: Jeez, you spoil all of my plans. This is a great game, though. \n\n28) andylooney: Discover Y2 Meanie B3 Bigmeanie\n\n29) lambda: Discover B2 Lambda B2 Markab\n\n30) andylooney: Discover R1 Andylooney B3 Finalfrontier\n\n31) lambda: Sacrifice Y2 Betelgeuse\nMove Y2 Antares Andylooney\nMove B1 Antares Andylooney\n\n32) andylooney: Trade Y3 R3 Andylooney\n\n33) lambda: Sacrifice B2 Markab\nTrade B1 R1 Andylooney\nTrade Y2 R2 Andylooney\n\n34) andylooney: Trade R3 Y3 Andylooney\n\tlambda: The peaceful trading and hyperspace transport vessels throw off their disguising bodies to reveal themselves as full blown warships! They circle warily around the larger warship already present in the system, waiting for an opening...\n\n35) lambda: Trade R2 Y2 Andylooney\n\n36) andylooney: Sacrifice R1 Finalfrontier\nAttack R1N Andylooney\n\n37) lambda: Discover Y2 Andylooney B3 Arcturus\n\tlambda: Hmm, looks like I really overreached there. I thought I had you, but managed to miss the way out that you took. I&#39;m not sure I can recover from this. \n\n38) andylooney: Sacrifice G2 Clampett\nBuild Y1 Bigmeanie\nBuild Y2 Paradise\n\n39) lambda: Build G2 Betelgeuse\n\n40) andylooney: Sacrifice G1 Jethro\nBuild Y3 Andylooney\n\n41) lambda: Build G1 Lambda\n\n42) andylooney: Build G2 Clampett\n\tlambda: I feel like in this game, I started out badly, was managing to catch up and hold my own towards the middle, and then I though I had an opening to kill you during which I overextended myself by a lot. Would you say that&#39;s a fair assessment of how this game has gone?\n\tandylooney: Yeah, that&#39;s sounds about right. Although I didn&#39;t think you really had an opening to kill me, since I got out of it...\n\n43) lambda: Move Y2 Arcturus Betelgeuse\n\n44) andylooney: Discover G1 Clampett B2 Stealth\n\tlambda: Yeah, I was just mistaken about having an opening. I thought I had covered all of my bases, but I missed that particular way out. \n\n45) lambda: Trade G2 R2 Betelgeuse\n\n46) andylooney: Discover Y3 Andylooney G3 Garden\n\n47) lambda: Build G2 Betelgeuse\n\n48) andylooney: Sacrifice G2 Clampett\nBuild G2 Stealth\nBuild Y3 Garden\n\n49) lambda: Trade G1 B1 Betelgeuse\n\n50) andylooney: Move Y3 Garden Betelgeuse\n\n51) lambda: Sacrifice G3 Lambda\nBuild B2 Lambda\nBuild B3 Lambda\nBuild B3 Betelgeuse\n\n52) andylooney: Discover Y3 Betelgeuse G3 Jolly\n\n53) lambda: Move B3 Betelgeuse Paradise\n\n54) andylooney: Sacrifice Y2 Paradise\nMove Y3 Garden Betelgeuse\nDiscover Y1 Paradise Y2 Plugh\n\tlambda: Man, this is the longest game of Homeworlds I&#39;ve ever played. Most people I play with leave an easy opening long before this. It&#39;s a lot more interesting playing against someone good like you.\n\n55) lambda: Discover G2 Betelgeuse G3 Kuma\n\n56) andylooney: Sacrifice R1 Andylooney\nAttack R2N Betelgeuse\n\n57) lambda: Move Y2 Betelgeuse Paradise\n\n58) andylooney: Move Y3 Betelgeuse Kuma\n\n59) lambda: Trade B2 R2 Lambda\n\n60) andylooney: Attack B1N Betelgeuse\n\n61) lambda: Build B2 Paradise\n\n62) andylooney: Sacrifice G2 Stealth\nBuild G1 Stealth\nBuild R1 Betelgeuse\n\n63) lambda: Move B3 Paradise Betelgeuse\n\n64) andylooney: Sacrifice Y2 Bigmeanie\nMove R2 Betelgeuse Jolly\nMove B1 Betelgeuse Jolly\n\n65) lambda: Build Y2 Paradise\n\n66) andylooney: Sacrifice R1 Betelgeuse\nAttack G2N Kuma\n\n67) lambda: Build G2 Lambda\n\n68) andylooney: Trade G1 R1 Stealth\n\n69) lambda: Move R2 Lambda Betelgeuse\n\n70) andylooney: Build G1 Stealth\n\n71) lambda: Move G1 Lambda Betelgeuse\n\n72) andylooney: Discover Y1 Plugh R1 Daddyo\n\n73) lambda: Move Y2 Paradise Betelgeuse\n\n74) andylooney: Build Y2 Jolly\n\n75) lambda: Trade B2 R2 Paradise\n\n76) andylooney: Build B2 Jolly\n\n77) lambda: Move B3 Betelgeuse Paradise\n\n78) andylooney: Sacrifice G2 Kuma\nBuild R1 Jolly\nBuild R3 Stealth\n\n79) lambda: Build R3 Paradise\n\n80) andylooney: Discover B2 Jolly G2 Frog\n\n81) lambda: Move R3 Paradise Frog\n\tandylooney: So, you haven&#39;t moved in weeks... are you planning to finish this game, or should I force you to resign?\n\n82) andylooney: Sacrifice Y2 Jolly\nMove B2 Frog Daddyo\nDiscover B2 Daddyo Y2 Plugh\n\tlambda: Sorry about that. I managed to get really busy with school work at the same time as I started feeling burnt out on homeworlds, which meant I stopped following my games. I can resign if you want, or we can keep playing; I&#39;m not feeling very hopeful about the outcome of this game, but it could still be fun to play it out. \n\n83) lambda: Move B3 Paradise Plugh\n\tandylooney: I&#39;m happy to play this out. Thanks for returning!\n\n84) andylooney: Move B2 Plugh Kuma\n\n85) lambda: Move G2 Lambda Plugh\n\n86) andylooney: Move B2 Kuma Stealth\n\n87) lambda: Move B1 Lambda Frog\n\n88) andylooney: Sacrifice Y1 Daddyo\nMove R3 Stealth Paradise\n\tlambda: Oh, whoops. \n\tlambda: Man, I didn&#39;t see that little B1 at Jolly, since it was hidden under the name. \n\n89) lambda: Sacrifice Y2 Paradise\nMove R2 Paradise Stealth\nMove R2 Stealth Bigmeanie\n\n90) andylooney: Move Y1 Bigmeanie Stealth\n\n91) lambda: Sacrifice G2 Plugh\nBuild Y1 Betelgeuse\nBuild Y2 Betelgeuse\n\n92) andylooney: Sacrifice Y3 Kuma\nMove Y1 Stealth Paradise\nMove Y1 Paradise Betelgeuse\nMove R3 Paradise Betelgeuse\nCatastrophe Betelgeuse Yellow\n\n93) lambda: Trade B3 G3 Plugh\n\n94) andylooney: Build B3 Stealth\n\n95) lambda: Trade R2 Y2 Bigmeanie\n\n96) andylooney: Sacrifice B2 Stealth\nTrade B3 Y3 Stealth\nTrade R3 G3 Betelgeuse\n\n97) lambda: Sacrifice G3 Plugh\nBuild B2 Lambda\nBuild B3 Frog\nBuild Y1 Bigmeanie\n\n98) andylooney: Sacrifice R2 Jolly\nAttack R2N Betelgeuse\nAttack G1N Betelgeuse\n\n99) lambda: Trade B2 G2 Lambda\n\n100) andylooney: Sacrifice G3 Betelgeuse\nBuild G3 Betelgeuse\nBuild G3 Stealth\nBuild B2 Jolly\n\n101) lambda: Move G2 Lambda Stealth\nCatastrophe Stealth Green\n\n102) andylooney: Sacrifice G3 Betelgeuse\nBuild Y1 Andylooney\nBuild Y2 Stealth\nBuild Y2 Jolly\n\n103) lambda: Trade B3 G3 Frog\n\n104) andylooney: Sacrifice Y2 Jolly\nMove Y2 Stealth Bigmeanie\nMove Y1 Andylooney Bigmeanie\nCatastrophe Bigmeanie Y\n\n105) lambda: Sacrifice G3 Frog\nBuild B3 Frog\nBuild B3 Lambda\nBuild R1 Frog\n\n106) andylooney: Discover B1 Jolly G2 Clover\n\n107) lambda: Trade B3 G3 Lambda\n\n108) andylooney: Build B3 Clover\n\n109) lambda: Trade R1 Y1 Frog\n\n110) andylooney: Sacrifice B2 Jolly\nTrade B3 G3 Clover\nTrade B1 Y1 Clover\n\n\tandylooney: So, it&#39;s been almost 2 months since your last move. I&#39;m assuming now that you won&#39;t be finishing this game. Thanks for playing.\n\nHomeworlds Online (SDG# 871)\nStarted: 2005.10.6, Ended: 2005.10.10\nParticipants: andylooney (S), JunkMan (N)\nWinner: andylooney\n\n1) JunkMan: Homeworld G3 Y1 R3\n\n2) andylooney: Homeworld B1 G2 Y3\n\n3) JunkMan: Build R1 Junkman\n\n4) andylooney: Build Y1 Andylooney\n\n5) JunkMan: Discover R1 Junkman Y2 Yellow\n\n6) andylooney: Build Y1 Andylooney\n\n7) JunkMan: Discover R1 Yellow Y3 Yellow2\n\n8) andylooney: Trade Y1 R1 Andylooney\n\n9) JunkMan: Discover R1 Yellow2 B2 Blue\n\n10) andylooney: Build Y1 Andylooney\n\n11) JunkMan: Trade R1 G1 Blue\n\n12) andylooney: Discover Y1 Andylooney G3 Garden\n\n13) JunkMan: Build G1 Blue\n\n14) andylooney: Build Y2 Garden\n\n15) JunkMan: Construct R1 Junkman\n\n16) andylooney: Build Y2 Andylooney\n\n17) JunkMan: Move R1 Junkman Blue\n\n18) andylooney: Trade Y2 G2 Andylooney\n\n19) JunkMan: Build R1 Blue\n\n20) andylooney: Discover G2 Andylooney Y3 Clampett\n\n21) JunkMan: Build R2 Blue\n\n22) andylooney: Build R2 Andylooney\n\n23) JunkMan: Trade R2 Y2 Blue\n\n24) andylooney: Discover Y1 Garden G2 Gateway\n\n25) JunkMan: Build R2 Junkman\n\n26) andylooney: Build Y2 Gateway\n\n27) JunkMan: Move R2 Junkman Gateway\n\n28) andylooney: Sacrifice R1 Andylooney\nAttack R2N Gateway\n\n29) JunkMan: Build Y3 Blue\n\n30) andylooney: Sacrifice G2 Clampett\nBuild Y3 Garden\nBuild R1 Gateway\n\n31) JunkMan: Move Y3 Blue Garden\n\n32) andylooney: Move Y3 Garden Blue\n\n33) JunkMan: Sacrifice R1 Blue\nAttack Y2S Garden\n\n34) andylooney: Sacrifice R2 Gateway\nAttack Y2N Blue\nAttack R1N Blue\n\n35) JunkMan: Build R1 Junkman\n\n36) andylooney: Sacrifice Y2 Gateway\nMove R1 Gateway Junkman\nMove R1 Blue Junkman\nCatastrophe Junkman Red\n\n\nHomeworlds Online (SDG# 884)\nStarted: 2005.10.7, Ended: 2005.10.9\nParticipants: Aaron (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tAaron: Hello, Andy!  I&#39;m a n00b, but I do enjoy the game.  Good luck to you!\n\tandylooney: OK! I&#39;m happy to play! Good luck to you, too!\r\n\n\n2) Aaron: Homeworld R2 Y3 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Aaron: Build G1 Aaron\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Aaron: Discover G1 Aaron B1 Sea\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) Aaron: Build G1 Sea\n\n9) andylooney: Build G2 Clampett\n\n10) Aaron: Trade G1 Y1 Sea\n\n11) andylooney: Build Y1 Andylooney\n\n12) Aaron: Build Y1 Sea\n\n13) andylooney: Discover Y1 Andylooney G3 Paradise\n\n14) Aaron: Trade Y1 R1 Sea\n\n15) andylooney: Build Y1 Andylooney\n\n16) Aaron: Move R1 Sea Paradise\n\n17) andylooney: Discover Y1 Paradise B1 Bluedoor\n\n18) Aaron: Build Y2 Sea\n\n19) andylooney: Trade Y1 R1 Andylooney\n\n20) Aaron: Move Y1 Sea Paradise\n\n21) andylooney: Move G1 Clampett Bluedoor\n\n22) Aaron: Move R1 Paradise Bluedoor\n\n23) andylooney: Sacrifice R1 Andylooney\nAttack R1S Bluedoor\n\n24) Aaron: Move Y1 Paradise Sea\n\tAaron: Doh!  I forbgot about that rule!\n\n25) andylooney: Build Y1 Bluedoor\n\n26) Aaron: Build Y2 Sea\n\tAaron: *scratches his head*  I have no idea what I&#39;m doing at this point.\n\n27) andylooney: Discover Y1 Bluedoor G3 Emerald\n\n28) Aaron: Discover Y2 Sea G3 Forest\n\n29) andylooney: Build Y2 Bluedoor\n\n30) Aaron: Trade Y1 R1 Sea\n\tAaron: I still struggle with this game&#39;s open-endedness.  I find it difficult to form focused strategies.\n\n31) andylooney: Sacrifice G2 Clampett\nBuild Y1 Andylooney\nBuild Y3 Emerald\n\n32) Aaron: Build R1 Sea\n\n33) andylooney: Build R2 Bluedoor\n\n34) Aaron: Move R1 Sea Forest\n\n35) andylooney: Move Y3 Emerald Sea\n\n\tAaron: Well, my crystal ball says I don&#39;t stand a chance =)  Thanks so much for the game!  I obviously have some work to do =)\n\tSYSTEM: Aaron resigns.\n\nHomeworlds Online (SDG# 880)\nStarted: 2005.10.7, Ended: 2005.10.10\nParticipants: MatrixFrog (S), istari (N)\nWinner: istari\n\n1) istari: Homeworld Y1 B3 G3\n\n2) MatrixFrog: Homeworld G1 B2 Y3\n\n3) istari: Build G1 Istari\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) istari: Discover G1 Istari B2 Pixley\n\n6) MatrixFrog: Discover Y1 Matrixfrog G3 Scorch\n\n7) istari: Build G1 Istari\n\n8) MatrixFrog: Build Y1 Matrixfrog\n\n9) istari: Trade G1 R1 Istari\n\n10) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n11) istari: Build G1 Istari\n\n12) MatrixFrog: Discover Y1 Scorch G2 Torch\n\n13) istari: Sacrifice G3 Istari\nBuild G2 Pixley\nBuild G2 Pixley\nBuild G3 Istari\n\n14) MatrixFrog: Build Y1 Matrixfrog\n\n15) istari: Trade G2 R2 Pixley\n\n16) MatrixFrog: Build Y2 Torch\n\n17) istari: Trade G2 Y2 Pixley\n\n18) MatrixFrog: Build Y2 Torch\n\n19) istari: Sacrifice Y2 Pixley\nMove R2 Pixley Istari\nMove R2 Istari Torch\n\n20) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R2N Torch\n\n21) istari: Trade G3 R3 Istari\n\n22) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove Y2 Torch Istari\nMove Y2 Torch Istari\nMove Y1 Torch Istari\nCatastrophe Istari Y\n\n23) istari: Trade R1 Y1 Istari\n\tMatrixFrog: I hope I don&#39;t end up regretting that.\n\n24) MatrixFrog: Build Y1 Matrixfrog\n\n25) istari: Move Y1 Istari Matrixfrog\n\n26) MatrixFrog: Sacrifice R2 Torch\nPass\nAttack Y1N Matrixfrog\n\n27) istari: Construct G2 Istari\n\n28) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n29) istari: Trade G2 Y2 Istari\n\n30) MatrixFrog: Build B1 Matrixfrog\n\n31) istari: Construct G2 Istari\n\n32) MatrixFrog: Trade B1 R1 Matrixfrog\n\n33) istari: Move G2 Istari Matrixfrog\n\n34) MatrixFrog: Build R1 Matrixfrog\n\n35) istari: Build G2 Matrixfrog\n\n36) MatrixFrog: Discover R1 Matrixfrog G3 Survival\n\n37) istari: Trade G2 R2 Matrixfrog\n\n38) MatrixFrog: Build R1 Matrixfrog\n\n39) istari: Sacrifice R2 Matrixfrog\nAttack R1S Matrixfrog\nAttack R1S Matrixfrog\n\n40) MatrixFrog: Build R2 Survival\n\n41) istari: Sacrifice R3 Istari\nAttack Y1S Matrixfrog\nAttack Y1S Matrixfrog\nAttack B1S Matrixfrog\n\n\nHomeworlds Online (SDG# 886)\nStarted: 2005.10.7, Ended: 2005.10.12\nParticipants: mcrim001 (S), Tuxhedoh (N)\nWinner: mcrim001\n\n1) Tuxhedoh: Homeworld G3 Y1 B1\n\n2) mcrim001: Homeworld G3 Y1 B1\n\tmcrim001: you there?\r\n\n\n3) Tuxhedoh: Build B1 Tuxhedoh\n\n4) mcrim001: Build B2 Mcrim001\n\n5) Tuxhedoh: Trade B1 Y1 Tuxhedoh\n\n6) mcrim001: Build B1 Mcrim001\n\n7) Tuxhedoh: Discover Y1 Tuxhedoh G2 Down\n\n8) mcrim001: Trade B2 Y2 Mcrim001\n\n9) Tuxhedoh: Build B2 Tuxhedoh\n\n10) mcrim001: Trade B1 R1 Mcrim001\n\n11) Tuxhedoh: Trade B1 R1 Tuxhedoh\n\n12) mcrim001: Move R1 Mcrim001 Down\n\n13) Tuxhedoh: Build B1 Tuxhedoh\n\n14) mcrim001: Trade Y2 R2 Mcrim001\n\n15) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n16) mcrim001: Move R2 Mcrim001 Down\n\n17) Tuxhedoh: Trade Y2 R2 Tuxhedoh\n\n18) mcrim001: Attack Y1N Down Mcrim001\n\n19) Tuxhedoh: Discover B1 Tuxhedoh R2 Escape\n\n20) mcrim001: Build B1 Mcrim001\n\n21) Tuxhedoh: Move R1 Tuxhedoh Escape\n\n22) mcrim001: Build B2 Mcrim001\n\n23) Tuxhedoh: Build R1 Tuxhedoh\n\n24) mcrim001: Build R3 Down\n\n25) Tuxhedoh: Move R1 Tuxhedoh Down\nCatastrophe Down Red\n\n26) mcrim001: Trade B2 R2 Mcrim001\n\n27) Tuxhedoh: Build R1 Tuxhedoh\n\n28) mcrim001: Build Y2 Down\n\n29) Tuxhedoh: Sacrifice B1 Escape\nTrade R1 B1 Tuxhedoh\n\n30) mcrim001: Move B1 Mcrim001 Down\n\n31) Tuxhedoh: Build B2 Tuxhedoh\n\n32) mcrim001: Build R1 Mcrim001\n\n33) Tuxhedoh: Move B2 Tuxhedoh Down\n\n34) mcrim001: Move R2 Mcrim001 Down\n\n35) Tuxhedoh: Construct B2 Tuxhedoh\n\n36) mcrim001: Attack B2N Down\n\n37) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n38) mcrim001: Build B2 Mcrim001\n\n39) Tuxhedoh: Move Y2 Tuxhedoh Escape\n\n40) mcrim001: Move Y1 Down Mcrim001\n\n41) Tuxhedoh: Trade R2 G2 Tuxhedoh\n\n42) mcrim001: Build Y2 Down\n\n43) Tuxhedoh: Build G1 Tuxhedoh\n\n44) mcrim001: Build Y3 Mcrim001\n\n45) Tuxhedoh: Sacrifice G2 Tuxhedoh\nBuild Y3 Escape\nBuild Y3 Escape\n\n46) mcrim001: Move Y1 Mcrim001 Escape\n\n47) Tuxhedoh: Move Y3 Escape Tuxhedoh\n\tmcrim001: I thought moving a ship into a crowded system automatically caused a catastrophe? And why wouldn&#39;t it let me sacrifice a ship two rounds before? I typed in the command &#39;sacrifice b2 mcrim001 (return) construct y2 mcrim001 (return) construct y3 mcrim001&#39; ?\n\tTuxhedoh: Catastrophe&#39;s don&#39;t happen automatically... you don&#39;t have to cause a catastrophe on yourself. Now about your messed up sacrifice I can only assume that the system doesn&#39;t like you.  No really. it should&#39;ve given you an error message at the top...\n\tTuxhedoh: And since you didn&#39;t cause a catastrophe in escape... I get to avoid it now.\n\n48) mcrim001: Move Y2 Down Mcrim001\n\tTuxhedoh: Now granted. it was probably a really stupid thing for me to do, but it wasn&#39;t the first, and it certainly won&#39;t be the last.\n\tmcrim001: i should resign since i got screwed but i might be able to work out a win anyways =)\n\n49) Tuxhedoh: Discover Y3 Tuxhedoh G2 Mefi\n\tTuxhedoh: and once again you failed to cause a catastrophe in escape by moving a ship there..\n\n50) mcrim001: Move Y2 Mcrim001 Escape\nCatastrophe Escape Yellow\n\tmcrim001: i wasnt trying to cause a catastrophy yet\n\n51) Tuxhedoh: Move Y3 Mefi Tuxhedoh\n\tmcrim001: =)\n\n52) mcrim001: Trade Y3 R3 Mcrim001\n\n53) Tuxhedoh: Trade Y3 G3 Tuxhedoh\n\n54) mcrim001: Build R1 Mcrim001\n\n55) Tuxhedoh: Trade G1 Y1 Tuxhedoh\n\n56) mcrim001: Move R3 Mcrim001 Down\n\n57) Tuxhedoh: Build Y2 Tuxhedoh\n\n58) mcrim001: Move R3 Down Tuxhedoh\n\n59) Tuxhedoh: Move Y1 Tuxhedoh Escape\n\n60) mcrim001: Attack G3N Tuxhedoh\n\n\tSYSTEM: Tuxhedoh resigns.\n\nHomeworlds Online (SDG# 882)\nStarted: 2005.10.7, Ended: 2005.10.19\nParticipants: TwoShort (S), Kermit (N)\nWinner: TwoShort\n\n1) Kermit: Homeworld B1 G3 Y3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) Kermit: Build Y1 Kermit\n\n4) TwoShort: Build G1 Twoshort\n\n5) Kermit: Discover Y1 Kermit G2 Grendl\n\n6) TwoShort: Build G1 Twoshort\n\n7) Kermit: Build Y1 Grendl\n\n8) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n9) Kermit: Discover Y1 Grendl B1 Medusa\n\n10) TwoShort: Build G1 Twoshort\n\tTwoShort: construct g1 twoshort\n\n11) Kermit: Trade Y1 R1 Medusa\n\n12) TwoShort: Discover G1 Twoshort Y3 Yeller\n\n13) Kermit: Build Y1 Grendl\n\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Yeller\nBuild G3 Twoshort\n\n15) Kermit: Discover Y1 Grendl G3 Gryffin\n\n16) TwoShort: Trade G2 R2 Bluonia\n\n17) Kermit: Move Y1 Grendl Medusa\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n19) Kermit: Move R1 Medusa Yeller\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R1 Bluonia\nBuild R1 Bluonia\n\n21) Kermit: Build Y1 Kermit\n\n22) TwoShort: Sacrifice R1 Bluonia\nAttack R1N Yeller\n\n23) Kermit: Build Y2 Kermit\n\n24) TwoShort: Trade G2 Y2 Bluonia\n\n25) Kermit: Trade Y2 G2 Kermit\n\n26) TwoShort: Sacrifice Y2 Bluonia\nMove G2 Twoshort Gryffin\nDiscover G1 Bluonia B2 Blubonic\n\n27) Kermit: Move G2 Kermit Blubonic\n\n28) TwoShort: Sacrifice R1 Bluonia\nAttack Y1N Gryffin\n\n29) Kermit: Trade G2 R2 Blubonic\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yeller\nBuild G3 Twoshort\nBuild Y2 Gryffin\n\n31) Kermit: Attack G1S Blubonic\n\n32) TwoShort: Sacrifice Y2 Gryffin\nMove G2 Yeller Blubonic\nMove G2 Yeller Blubonic\n\n33) Kermit: Attack G2S Blubonic\n\n34) TwoShort: Sacrifice R2 Bluonia\nAttack G2N Blubonic\nAttack R2N Blubonic\n\n35) Kermit: Build Y2 Kermit\n\n36) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Gryffin\nBuild R1 Blubonic\n\n\n37) Kermit: Trade Y3 R3 Kermit\n\n38) TwoShort: Discover Y1 Gryffin B2 Bluestar\n\n39) Kermit: Move Y2 Kermit Bluestar\n\n40) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Gryffin\nBuild G3 Twoshort\n\n\tSYSTEM: Kermit resigns.\n\nHomeworlds Online (SDG# 885)\nStarted: 2005.10.8, Ended: 2005.11.7\nParticipants: andylooney (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) andylooney: Build Y1 Andylooney\n\n5) TwoShort: Build G1 Twoshort\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n8) andylooney: Discover G1 Andylooney Y1 Different\n\n9) TwoShort: Build G2 Twoshort\n\n10) andylooney: Build Y1 Andylooney\n\n11) TwoShort: Discover G1 Twoshort Y3 Similar\n\n12) andylooney: Build Y2 Andylooney\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Similar\nBuild G3 Twoshort\nBuild G3 Bluestar\n\n14) andylooney: Build G3 Different\n\n15) TwoShort: Trade G3 Y3 Bluestar\n\n16) andylooney: Trade Y2 R2 Andylooney\n\n17) TwoShort: Trade G2 R2 Twoshort\n\n18) andylooney: Discover Y1 Andylooney B1 Bomber\n\n19) TwoShort: Build G2 Twoshort\n\n20) andylooney: Discover Y1 Bomber G3 Paradise\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluestar\nBuild Y2 Bluestar\n\n22) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R1 Andylooney\nBuild Y2 Paradise\n\n23) TwoShort: Sacrifice Y3 Bluestar\nMove G1 Similar Different\nMove G2 Similar Different\nDiscover Y2 Bluestar R1 Moltar\nCatastrophe Different Green\n\n24) andylooney: Trade R1 G1 Andylooney\n\n25) TwoShort: Discover Y2 Bluestar G1 Emerald\n\n26) andylooney: Discover G1 Andylooney B1 Bomber\n\n27) TwoShort: Build Y1 Emerald\n\n28) andylooney: Move Y2 Paradise Bomber\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y3 Moltar\n\n30) andylooney: Build G3 Bomber\n\n31) TwoShort: Sacrifice Y2 Moltar\nMove G2 Bluestar Bomber\nMove G1 Bluestar Bomber\nCatastrophe Bomber Green\n\n32) andylooney: Trade Y2 G2 Bomber\n\n33) TwoShort: Sacrifice G2 Twoshort\nBuild G1 Twoshort\nBuild Y2 Moltar\n\n34) andylooney: Build Y2 Paradise\n\n35) TwoShort: Move Y3 Moltar Paradise\n\n36) andylooney: Build Y3 Paradise\nCatastrophe Paradise Yellow\n\n37) TwoShort: Build Y1 Emerald\n\n38) andylooney: Build G1 Bomber\n\n39) TwoShort: Discover Y1 Emerald B3 Bluestar\n\n40) andylooney: Trade G1 R1 Bomber\n\n41) TwoShort: Trade Y1 G1 Bluestar\n\n42) andylooney: Trade R1 Y1 Bomber\n\tTwoShort: I was wondering if you would figure it out :)  Now, can I deduce from your clues what &quot;Cashing an investment&quot; involves?\n\tTwoShort: Aha! &quot;X has been abandoned to the hyperspatial flux&quot; used to happen at the end of the turn, now it happens immediately; so that&#39;s the code change you needed for the investment strategy: sacrifice a green/blue to immediately acquire that system marker as a ship.  So if I understand correctly, it would also work with other colors (or even sizes), but you associate with a large yellow because that&#39;s the most valuable to suddenly acquire late in the game.\n\tandylooney: Well, I must confess it was Keith who tipped me off based on the clues... It&#39;s great to be able to play together like this, ain&#39;t it?\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y2 Moltar\n\n44) andylooney: Sacrifice G2 Bomber\nBuild Y3 Bomber\nBuild Y3 Andylooney\n\tTwoShort: Definitely.  I concluded this was the perfect game for me when I first read your essay about it a couple years ago; but my local gang is devoid of pure strategy fans, so this is only my fourth game or so.\n\n45) TwoShort: Sacrifice Y2 Moltar\nMove Y2 Moltar Andylooney\nMove Y1 Emerald Andylooney\nCatastrophe Andylooney Yellow\n\n46) andylooney: Move Y3 Bomber Andylooney\n\n47) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluestar\n\n48) andylooney: Discover Y1 Bomber G3 Garden\n\n49) TwoShort: Sacrifice Y2 Emerald\nDiscover G3 Bluestar B1 Lancer\nMove G2 Twoshort Garden\n\n50) andylooney: Discover Y1 Garden B2 Bomber\n\n51) TwoShort: Trade G2 Y2 Bluestar\n\n52) andylooney: Trade Y1 G1 Bomber\n\n53) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n54) andylooney: Build R1 Andylooney\n\n55) TwoShort: Sacrifice G2 Garden\nBuild G2 Lancer\nBuild G3 Lancer\n\n56) andylooney: Trade R1 B1 Andylooney\n\n57) TwoShort: Trade G3 Y3 Lancer\n\n58) andylooney: Build G3 Bomber\n\n59) TwoShort: Sacrifice Y3 Lancer\nMove G1 Bluestar Bomber\nMove G2 Lancer Bomber\nDiscover G2 Bluestar Y1 Yolonda\nCatastrophe Bomber Green\n\n60) andylooney: Build Y2 Andylooney\n\n61) TwoShort: Build G1 Lancer\n\n62) andylooney: Discover Y2 Andylooney G1 Zorak\n\n63) TwoShort: Sacrifice G3 Lancer\nBuild G2 Lancer\nBuild G3 Lancer\nBuild G3 Yolonda\n\n64) andylooney: Build Y2 Zorak\n\n65) TwoShort: Sacrifice Y2 Bluestar\nMove G2 Lancer Andylooney\nMove G1 Lancer Andylooney\n\n66) andylooney: Discover Y2 Zorak B3 Ibm\n\n67) TwoShort: Sacrifice R2 Twoshort\nAttack R2S Andylooney\nAttack B1S Andylooney\n\n68) andylooney: Trade Y2 R2 Ibm\n\n69) TwoShort: Sacrifice G3 Lancer\nBuild B1 Andylooney\nBuild B1 Andylooney\nBuild G3 Andylooney\nCatastrophe Andylooney Blue\nCatastrophe Andylooney Green\n\n\nHomeworlds Online (SDG# 893)\nStarted: 2005.10.8, Ended: 2005.10.20\nParticipants: chaosbreaker (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tchaosbreaker: I bought Zendo and found that there was a card with the rules for homeworld on it.\r\n\r\nThis is my first game.  Just read the rules on http://www.wunderland.com/WTS/Ginohn/games/Homeworlds/HomeworldsRules.html\r\n\r\n\n\n2) chaosbreaker: Homeworld B2 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: well, I welcome you to the game. But I fear I will crush you easily.\r\n\n\n4) chaosbreaker: Build Y1 Chaosbreaker\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tchaosbreaker: yeah, you will crush me.\r\n\r\nI want to learn how to play so I can play with my friends face to face\n\n6) chaosbreaker: Trade Y1 G1 Chaosbreaker\n\n7) andylooney: Build G2 Andylooney\n\n8) chaosbreaker: Build Y1 Chaosbreaker\n\n9) andylooney: Discover G2 Andylooney Y3 Clampett\n\n10) chaosbreaker: Discover Y1 Chaosbreaker G3 Thor\n\n11) andylooney: Build Y1 Andylooney\n\n12) chaosbreaker: Build G2 Chaosbreaker\n\n13) andylooney: Build G3 Clampett\n\n14) chaosbreaker: Build G3 Chaosbreaker\n\n15) andylooney: Trade G1 R1 Andylooney\nCatastrophe Chaosbreaker Green\n\n16) chaosbreaker: Trade Y3 G3 Chaosbreaker\n\n17) andylooney: Discover G2 Clampett Y2 Plugh\n\n18) chaosbreaker: Build G1 Chaosbreaker\n\tchaosbreaker: construct g2 chaosbreaker\n\n19) andylooney: Sacrifice Y3 Andylooney\nMove G2 Plugh Clampett\nMove G2 Clampett Chaosbreaker\nMove G3 Clampett Chaosbreaker\nCatastrophe Chaosbreaker Green\n\tandylooney: Thanks for the game!\n\n\nHomeworlds Online (SDG# 894)\nStarted: 2005.10.8, Ended: 2005.10.11\nParticipants: Tuxhedoh (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tTuxhedoh: I&#39;m fairly new to the game, and a bit intimdated to be playing you. Feel free to give me any tips, especially if I&#39;ve made a silly move.    Also, if you happen to get to Baltimore or Columbia area would love to play face to face.\r\n\n\tandylooney: greetings! Good luck! The only way to get good at the game is to play it alot, so let&#39;s go!\n\n2) Tuxhedoh: Homeworld G1 Y3 B1\n\n3) andylooney: Build Y1 Andylooney\n\n4) Tuxhedoh: Build B1 Tuxhedoh\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: Oh, no! I just realized you didn&#39;t take a large ship with your homeworld! That&#39;s a critical mistake! Frankly, the software ought to force you to start with a large ship.\n\n6) Tuxhedoh: Trade B1 G1 Tuxhedoh\n\tTuxhedoh: I was reading that in the SDG wiki page for Homeworlds... and realized I didn&#39;t do it. I&#39;m trying to understand why it&#39;s critical though... can you explain?\n\tTuxhedoh: is it because otherwise you have to wait to use up most of thee pieces before you&#39;re able eto construct onee?  (btw, my &quot;e&quot; is broken)\n\n7) andylooney: Build G2 Andylooney\n\tTuxhedoh: Has anyone created a newbies guide to Homeworlds strategy besides http://wiki.daltons.ca/sdg/games/homeworlds ? I&#39;ve been looking on the wunderland page and icehouse wiki, but it seems like there&#39;s none eto be found\n\tandylooney: yes, that&#39;s why. And we can keep playing this and I&#39;ll demonstrate why in a while.\r\n\n\n8) Tuxhedoh: Build B1 Tuxhedoh\n\tTuxhedoh: construct b1 tuxhedoh\n\n9) andylooney: Discover G2 Andylooney Y3 Clampett\n\n10) Tuxhedoh: Build G2 Tuxhedoh\n\n11) andylooney: Build G3 Clampett\n\tTuxhedoh: Just got home from hanging out with a buddym figuring out Homeworlds in person. Now my mind is all confused, cause I only have Ice Towers, and the colors are all switched.\n\n12) Tuxhedoh: Build G3 Tuxhedoh\n\n13) andylooney: Build Y1 Andylooney\n\n14) Tuxhedoh: Trade G3 R3 Tuxhedoh\n\tandylooney: OK, I&#39;m going to be a nice guy here, and let 2 wrongs make a right. You&#39;ve got 4 greens in your homeworld (remember, the star itself does count) so I should just call Catastrophe on you. But I won&#39;t, since you forgot to take a large before, and now you have one. But I doubt I&#39;ll be so gentle next time... :)\n\n15) andylooney: Build G3 Andylooney\n\tTuxhedoh: 2 wrongs make a right. :-) thanks for the leniency. Last night while playing IRL, i won my first game by  forcing a catastrophe in the other players homeworld, taking his 3 ships there. And then lost the next, by calling a catastrophe in my homeworld, taking my last ship. What a stupid mistake... but I&#39;m learning.\n\n16) Tuxhedoh: Discover G1 Tuxhedoh Y2 Einstein\n\n17) andylooney: Trade G1 R1 Andylooney\n\n18) Tuxhedoh: Move B1 Tuxhedoh Einstein\n\n19) andylooney: Discover G3 Andylooney B3 Ibm\n\n20) Tuxhedoh: Build B2 Einstein\n\n21) andylooney: Build R1 Andylooney\n\n22) Tuxhedoh: Construct B2 Tuxhedoh\n\n23) andylooney: Move Y1 Andylooney Ibm\n\n24) Tuxhedoh: Pass\n\tTuxhedoh: Can&#39;t decide how to move or if I should even... would like to see it play out. I&#39;m passing.\n\n25) andylooney: Discover R1 Andylooney G3 Paradise\n\n26) Tuxhedoh: Trade B2 R2 Einstein\n\n27) andylooney: Sacrifice G3 Clampett\nBuild G1 Ibm\nBuild G3 Clampett\nBuild Y1 Ibm\n\n28) Tuxhedoh: Move R2 Einstein Paradise\n\n29) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild Y1 Ibm\nBuild R1 Andylooney\n\n30) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n31) andylooney: Discover Y1 Ibm B2 Stealth\n\n32) Tuxhedoh: Attack R1N Paradise\n\n33) andylooney: Sacrifice G2 Clampett\nBuild G2 Clampett\nBuild Y2 Stealth\n\n34) Tuxhedoh: Move Y2 Tuxhedoh Stealth\n\n35) andylooney: Sacrifice R1 Andylooney\nAttack Y2S Stealth\n\n\tTuxhedoh: doh\n\tSYSTEM: Tuxhedoh resigns.\n\nHomeworlds Online (SDG# 895)\nStarted: 2005.10.9, Ended: 2005.11.3\nParticipants: pigasuspig (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G3 B2 Y3\n\n2) pigasuspig: Homeworld G2 B1 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) pigasuspig: Build Y1 Pigasuspig\n\n5) MatrixFrog: Discover Y1 Matrixfrog G1 Dinky\n\n6) pigasuspig: Trade Y1 G1 Pigasuspig\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) pigasuspig: Build G1 Pigasuspig\n\n9) MatrixFrog: Discover Y1 Dinky G3 Slinky\n\n10) pigasuspig: Trade G1 R1 Pigasuspig\n\n11) MatrixFrog: Build Y1 Slinky\n\n12) pigasuspig: Build Y2 Pigasuspig\n\n13) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n14) pigasuspig: Trade Y2 B2 Pigasuspig\n\n15) MatrixFrog: Build G1 Matrixfrog\n\n16) pigasuspig: Move R1 Pigasuspig Slinky\n\n17) MatrixFrog: Move Y1 Slinky Pigasuspig\n\n18) pigasuspig: Attack Y1N Slinky\n\n19) MatrixFrog: Build Y1 Pigasuspig\n\n20) pigasuspig: Trade Y3 R3 Pigasuspig\n\n21) MatrixFrog: Trade Y1 B1 Pigasuspig\n\n22) pigasuspig: Attack B1N Pigasuspig\n\n23) MatrixFrog: Trade Y1 B1 Pigasuspig\nCatastrophe Pigasuspig B\n\n24) pigasuspig: Build Y1 Slinky\n\tpigasuspig: Oops.\n\n25) MatrixFrog: Trade G1 R1 Matrixfrog\n\n26) pigasuspig: Move Y1 Slinky Pigasuspig\n\n27) MatrixFrog: Build G1 Matrixfrog\n\n28) pigasuspig: Discover G1 Pigasuspig Y1 Barnard\n\n29) MatrixFrog: Move G1 Matrixfrog Barnard\n\n30) pigasuspig: Discover G1 Barnard B3 Ocean\n\n31) MatrixFrog: Build Y2 Matrixfrog\n\n32) pigasuspig: Build G2 Ocean\n\n33) MatrixFrog: Build G2 Barnard\n\n34) pigasuspig: Trade G1 B1 Ocean\n\n35) MatrixFrog: Build G1 Barnard\n\n36) pigasuspig: Build G3 Ocean\n\n37) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Barnard Pigasuspig\nMove G1 Barnard Pigasuspig\nMove G2 Barnard Pigasuspig\nCatastrophe Pigasuspig G\n\n\nHomeworlds Online (SDG# 896)\nStarted: 2005.10.9, Ended: 2006.6.16\nParticipants: lambda (S), c0g (N)\nWinner: lambda\n\n1) c0g: Homeworld Y3 B1 G3\n\n2) lambda: Homeworld B2 Y1 G3\n\n3) c0g: Build G1 C0g\n\n4) lambda: Build G1 Lambda\n\n5) c0g: Trade G1 Y1 C0g\n\n6) lambda: Discover G1 Lambda B3 Rigel\n\n7) c0g: Discover Y1 C0g Y2 Polaris\n\n8) lambda: Build G1 Rigel\n\n9) c0g: Build G1 C0g\n\n10) lambda: Trade G1 Y1 Rigel\n\n11) c0g: Move Y1 Polaris Rigel\n\n12) lambda: Build Y2 Rigel\n\n13) c0g: Move Y1 Rigel Lambda\n\tlambda: You could create a catastrophe in Rigel. But, would that really benefit you? \n\n14) lambda: Build G1 Lambda\n\n15) c0g: Trade Y1 B1 Lambda\n\tc0g: Hmmm, I think I fucked this up at the begining by being too agresswive...\r\n\n\n16) lambda: Trade G1 R1 Lambda\n\n17) c0g: Discover B1 Lambda G3 Boston\n\n18) lambda: Build G1 Lambda\n\n19) c0g: Build B1 Boston\n\n20) lambda: Trade Y2 B2 Rigel\n\n21) c0g: Trade B1 Y1 Boston\n\n22) lambda: Discover G1 Lambda Y3 Rasalgethi\n\n23) c0g: Build Y2 Boston\n\n24) lambda: Build Y2 Rigel\n\n25) c0g: Trade Y2 R2 Boston\n\n26) lambda: Discover Y2 Rigel G2 Giauzar\n\tc0g: I&#39;ve got my own xmas tree in boston!\n\n\tlambda: I&#39;ve got a fallen Christmas tree at lambda, red and green. \n\nHomeworlds Online (SDG# 874)\nStarted: 2005.10.10, Ended: 2005.10.18\nParticipants: MatrixFrog (S), Horowits (N)\nWinner: MatrixFrog\n\n\tSYSTEM: Horowits resigns.\n\nHomeworlds Online (SDG# 883)\nStarted: 2005.10.10, Ended: 2005.10.14\nParticipants: JunkMan (S), istari (N)\nWinner: JunkMan\n\n1) istari: Homeworld B1 Y2 G3\n\n2) JunkMan: Homeworld B3 G1 Y3\n\n3) istari: Build G1 Istari\n\n4) JunkMan: Build Y1 Junkman\n\n5) istari: Discover G1 Istari Y3 Greenacres\n\n6) JunkMan: Discover Y1 Junkman G2 Azul\n\n7) istari: Build G1 Greenacres\n\n8) JunkMan: Build Y1 Junkman\n\n9) istari: Construct G2 Istari\n\n10) JunkMan: Trade Y1 B1 Junkman\n\n11) istari: Trade G2 B2 Istari\n\n12) JunkMan: Build Y1 Junkman\n\n13) istari: Move B2 Istari Greenacres\n\n14) JunkMan: Trade Y1 R1 Junkman\n\n15) istari: Trade G1 R1 Greenacres\n\n16) JunkMan: Build Y1 Azul\n\n17) istari: Build G1 Istari\n\n18) JunkMan: Sacrifice Y1 Azul\nMove B1 Junkman Azul\n\n19) istari: Build G2 Istari\n\n20) JunkMan: Build Y1 Azul\n\n21) istari: Move B2 Greenacres Azul\n\n22) JunkMan: Move Y1 Azul Junkman\n\n23) istari: Trade B2 R2 Azul\n\n24) JunkMan: Sacrifice Y1 Azul\nMove B1 Azul Junkman\n\n25) istari: Trade G2 R2 Istari\n\n26) JunkMan: Build R1 Junkman\n\n27) istari: Build G2 Greenacres\n\n28) JunkMan: Build R2 Junkman\n\n29) istari: Build R3 Istari\n\n30) JunkMan: Sacrifice Y1 Junkman\nMove R1 Junkman Azul\n\n31) istari: Build R3 Greenacres\n\n32) JunkMan: Build R3 Junkman\n\n33) istari: Attack R1S Azul\n\n34) JunkMan: Move Y3 Junkman Azul\n\n35) istari: Trade R3 Y3 Istari\n\n36) JunkMan: Sacrifice R1 Junkman\nAttack R2N Azul\n\n37) istari: Sacrifice Y3 Istari\nMove R2 Istari Greenacres\nMove R2 Greenacres Azul\nMove R1 Greenacres Azul\nCatastrophe Azul Red\n\n38) JunkMan: Build Y1 Azul\n\n39) istari: Trade G1 Y1 Istari\n\n40) JunkMan: Sacrifice B1 Junkman\nTrade Y1 G1 Azul\n\n41) istari: Build G2 Istari\n\n42) JunkMan: Build Y1 Azul\n\n43) istari: Trade Y1 B1 Istari\n\n44) JunkMan: Move G1 Azul Junkman\n\n45) istari: Sacrifice G2 Greenacres\nBuild R1 Greenacres\nBuild B1 Istari\n\n46) JunkMan: Build G2 Junkman\n\n47) istari: Trade G2 Y2 Istari\n\n48) JunkMan: Sacrifice G1 Junkman\nBuild Y1 Azul\n\n49) istari: Move B1 Istari Greenacres\n\n50) JunkMan: Discover Y1 Azul G3 Merlin\n\n51) istari: Move Y2 Istari Merlin\n\n52) JunkMan: Sacrifice Y1 Merlin\nMove R2 Junkman Azul\n\n53) istari: Build Y1 Merlin\n\n54) JunkMan: Build R1 Azul\n\n55) istari: Sacrifice Y2 Merlin\nMove B1 Greenacres Azul\nMove R1 Greenacres Azul\n\n56) JunkMan: Attack B1N Azul\n\n57) istari: Build R1 Azul\nCatastrophe Azul Red\n\n58) JunkMan: Build R1 Junkman\n\n59) istari: Move Y1 Merlin Istari\n\n60) JunkMan: Build B2 Azul\n\n61) istari: Construct G1 Greenacres\n\n62) JunkMan: Discover B2 Azul G3 Beret\n\n63) istari: Move B1 Istari Greenacres\n\n64) JunkMan: Trade B2 Y2 Beret\n\n65) istari: Move G1 Greenacres Istari\n\n66) JunkMan: Build Y1 Beret\n\n67) istari: Trade G1 R1 Istari\n\n68) JunkMan: Move Y2 Beret Istari\n\n69) istari: Move G1 Greenacres Azul\n\n70) JunkMan: Sacrifice G2 Junkman\nBuild Y2 Istari\nBuild Y3 Beret\nCatastrophe Istari Yellow\n\n71) istari: Sacrifice G3 Istari\nBuild G1 Azul\nBuild G2 Azul\nBuild G2 Azul\nCatastrophe Azul Green\n\n72) JunkMan: Move Y3 Beret Istari\n\n73) istari: Trade R3 G3 Greenacres\n\n74) JunkMan: Sacrifice R1 Junkman\nAttack R1N Istari\n\n\nHomeworlds Online (SDG# 912)\nStarted: 2005.10.10, Ended: 2005.10.11\nParticipants: Aaron (S), Pat (N)\nWinner: Aaron\n\n1) Pat: Homeworld G2 R3 G3\n\tAaron: Welcome to the family, Pat!  I&#39;m the admin here, so feel free to ask me if you have any problems or questions.  I&#39;m relatively new to this game though.  Don&#39;t expect much of a challenge =)  Good luck!\n\n2) Aaron: Homeworld Y1 B2 G3\n\tPat: *YAY* Happy to play with you. I&#39;m brand-spankin&#39;-new to this game, so you&#39;re the one that sholdn&#39;t worry about any challenges. .P\n\tAaron: Be sure to read the wiki.  There are lots of helpful hints there.\n\n3) Pat: Build G1 Pat\n\tPat: Well...it seems foolish to not have a yellow in my starting homeworld, huh.\n\n4) Aaron: Build G1 Aaron\n\tAaron: oh, and no blue either...aye, I&#39;m afraid we will have to start again.  I don&#39;t see any way to get blue or yellow from where you&#39;re at.\n\n\tSYSTEM: Pat resigns.\n\nHomeworlds Online (SDG# 916)\nStarted: 2005.10.10, Ended: 2007.2.4\nParticipants: andylooney (S), shelbyt (N)\nWinner: andylooney\n\n1) shelbyt: Homeworld B2 Y1 G3\n\tandylooney: welcome to the party!\n\n2) andylooney: Homeworld B3 G2 Y3\n\tshelbyt: kewl dude\r\n\n\n3) shelbyt: Build G1 Shelbyt\n\n4) andylooney: Build Y1 Andylooney\n\n5) shelbyt: Trade G1 Y1 Shelbyt\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) shelbyt: Build G1 Shelbyt\n\n8) andylooney: Discover G1 Andylooney Y1 Different\n\n9) shelbyt: Discover G1 Shelbyt Y3 Elsewhere\n\n10) andylooney: Discover G1 Different Y3 Clampett\n\n11) shelbyt: Trade Y1 B1 Shelbyt\n\n12) andylooney: Build Y1 Andylooney\n\n13) shelbyt: Build B1 Shelbyt\n\n14) andylooney: Trade Y1 B1 Andylooney\n\n15) shelbyt: Discover B1 Shelbyt G3 Grblzkx\n\n16) andylooney: Build Y1 Andylooney\n\n17) shelbyt: Build B2 Grblzkx\n\n18) andylooney: Discover B1 Andylooney Y1 Different\n\n19) shelbyt: Build B2 Shelbyt\n\n20) andylooney: Build Y2 Andylooney\n\tshelbyt: Gong.\n\n21) shelbyt: Move B2 Shelbyt Elsewhere\n\n22) andylooney: Sacrifice G1 Clampett\nBuild B3 Different\n\n23) shelbyt: Build B3 Elsewhere\n\n24) andylooney: Trade B3 G3 Different\n\n25) shelbyt: Trade B2 Y2 Grblzkx\n\n26) andylooney: Discover Y2 Andylooney G1 Bud\n\n27) shelbyt: Trade B1 R1 Shelbyt\n\n28) andylooney: Trade Y1 R1 Andylooney\n\n29) shelbyt: Build G1 Shelbyt\n\n30) andylooney: Build G2 Different\n\n31) shelbyt: Discover B2 Elsewhere Y1 Nearly\n\n32) andylooney: Discover G3 Different Y3 Clampett\n\tshelbyt: hmmm, that&#39;s annoying.  the one-pipped stars should really appear all at the same horizontal.  \r\n\n\tandylooney: Yeah, no star-towing in this version. You have to deal with a random star-map...\n\n33) shelbyt: Sacrifice G3 Shelbyt\nBuild G2 Elsewhere\nBuild Y2 Grblzkx\nBuild G3 Shelbyt\n\tshelbyt: ack!  damn you Salizar!  you took the y3... booger.\n\n34) andylooney: Sacrifice G3 Clampett\nBuild G3 Different\nBuild Y3 Bud\nBuild R1 Andylooney\n\n35) shelbyt: Build R2 Shelbyt\n\tandylooney: Dude! When are you gonna move?\n\n36) andylooney: Build R2 Andylooney\n\n37) shelbyt: Build R2 Shelbyt\n\n38) andylooney: Move R1 Andylooney Bud\n\n39) shelbyt: Move R2 Shelbyt Grblzkx\n\n40) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R3 Andylooney\nBuild R3 Bud\n\n41) shelbyt: Sacrifice G3 Shelbyt\nBuild G3 Shelbyt\nBuild R3 Grblzkx\nBuild B1 Nearly\n\n42) andylooney: Sacrifice Y3 Bud\nDiscover G3 Different Y3 Wise\nMove R3 Andylooney Different\nDiscover G2 Different B3 Ibm\n\n43) shelbyt: Move G1 Shelbyt Grblzkx\n\n44) andylooney: Sacrifice G3 Wise\nBuild G3 Ibm\nBuild Y3 Bud\nBuild B2 Different\n\n45) shelbyt: Move R2 Grblzkx Nearly\n\n46) andylooney: Move Y3 Bud Ibm\n\n47) shelbyt: Sacrifice Y2 Grblzkx\nDiscover B3 Elsewhere Y2 Slippery\nMove G1 Elsewhere Slippery\n\n48) andylooney: Move G3 Ibm Nearly\n\n49) shelbyt: Sacrifice G2 Elsewhere\nBuild G2 Slippery\nBuild Y3 Grblzkx\n\n50) andylooney: Sacrifice R2 Andylooney\nAttack R2N Nearly\nAttack B2N Nearly\n\n\nHomeworlds Online (SDG# 925)\nVariants: &quot;Left man down&quot;\nStarted: 2005.10.11, Ended: 2005.10.29\nParticipants: MatrixFrog (S), Evilaxe (N), Pat (E)\nWinner: Evilaxe\n\n1) Evilaxe: Homeworld G1 B3 Y3\n\tPat: &#39;Ello, all! I&#39;m pretty new to this game, so don&#39;t be surprised if I do something obviously stupid.\r\n\r\nOther than that: good luck!\n\n2) Pat: Homeworld G2 B1 Y3\n\tEvilaxe: Never played it before, myself. Looks fun though.\n\tMatrixFrog: Hey, new people! That&#39;s great. I assume you&#39;ve both read the rules, but ask me if you have any questions...\n\tMatrixFrog: Welcome, and good luck.\n\n3) MatrixFrog: Homeworld Y2 G3 B3\n\n4) Evilaxe: Build Y1 Evilaxe\n\n5) Pat: Build Y1 Pat\n\n6) MatrixFrog: Build B1 Matrixfrog\n\n7) Evilaxe: Discover Y1 Evilaxe G2 Sparkle\n\tEvilaxe: discover y1 evilaxe g2 sparkle\n\n8) Pat: Trade Y1 R1 Pat\n\tEvilaxe: ooops\n\n9) MatrixFrog: Discover B1 Matrixfrog Y1 Pad\n\n10) Evilaxe: Build Y1 Evilaxe\n\n11) Pat: Build R1 Pat\n\n12) MatrixFrog: Build B1 Matrixfrog\n\n13) Evilaxe: Trade Y1 R1 Evilaxe\n\n14) Pat: Discover R1 Pat Y3 Magrathea\n\n15) MatrixFrog: Trade B3 R3 Matrixfrog\n\n16) Evilaxe: Build Y1 Evilaxe\n\n17) Pat: Build R1 Pat\n\n18) MatrixFrog: Build R2 Matrixfrog\n\n19) Evilaxe: Build R2 Evilaxe\n\n20) Pat: Build R2 Pat\n\n21) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n22) Evilaxe: Move R2 Evilaxe Sparkle\n\n23) Pat: Build Y1 Pat\n\n24) MatrixFrog: Build Y2 Matrixfrog\n\n25) Evilaxe: Build Y2 Sparkle\n\n26) MatrixFrog: Trade Y3 R3 Matrixfrog\n\n27) Evilaxe: Move R2 Sparkle Magrathea\n\tSYSTEM: Pat resigns.\n\tMatrixFrog: Awww.\n\n28) MatrixFrog: Discover B1 Pad G2 Epsilon\n\tPat: Aww: sorry &#39;bout that, guys. I got stranded without internet all of a sudden. Maybe I&#39;ll join in next game .P\n\tEvilaxe: Sorry. I thought you&#39;d given up interest. Certainly wouldn&#39;t have forced resignation if I&#39;d known.\n\n29) Evilaxe: Trade Y1 G1 Evilaxe\n\tMatrixFrog: Hm. Pat&#39;s homeworld is going to be extremely difficult to take over...\n\n30) MatrixFrog: Build B1 Epsilon\n\tMatrixFrog: If someone doesn&#39;t go in there and catastrophize all the red ships, the other player is likely to do it for them. So either those ships will all sit idle for the rest of the game, or else we&#39;ll be playing the &quot;No you first&quot; game until the end, I think.\n\n31) Evilaxe: Trade Y3 B3 Evilaxe\n\tEvilaxe: I&#39;ll take your word for it. I was planning an attack run on the remains of Pat, but I think I&#39;ll take your advice instead.\n\tMatrixFrog: Well so was I, but I realized that as soon as I got a red ship in there, you would probably trigger a catastrophe to prevent me from getting all those pieces. And vice versa... of course, one never knows what an opponent will do, so perhaps it&#39;s worth the risk under certain circumstances.\n\n32) MatrixFrog: Discover B1 Matrixfrog Y1 Sigma\n\n33) Evilaxe: Attack R1E Magrathea\n\n34) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove B1 Epsilon Evilaxe\nMove B1 Epsilon Evilaxe\nCatastrophe Evilaxe B\n\n35) Evilaxe: Discover R1 Magrathea R2 Nohope\n\tPat: Hey: no hard feelings .) Really. And looking at it, it should be an interesting game now that I&#39;m not actually moving anymore. I&#39;ll be keeping tabs on y&#39;all.\n\tMatrixFrog: I&#39;m not entirely sure why I moved my blue ship out. It seems like it would have been more useful where it was.\n\n36) MatrixFrog: Move R2 Matrixfrog Evilaxe\n\tMatrixFrog: KABOOM!\r\n\n\tEvilaxe: ooops. Shoulda seen that.\n\n37) Evilaxe: Build R3 Evilaxe\n\tMatrixFrog: That&#39;s a happy thought.\n\n38) MatrixFrog: Sacrifice B1 Sigma\nTrade R2 G2 Evilaxe\n\tEvilaxe: :)  I can&#39;t see any move that enables me to survive past this move. Thanks for the game, it&#39;s been fun.\n\n39) Evilaxe: Attack G2S Evilaxe\n\n40) MatrixFrog: Build R2 Matrixfrog\n\tEvilaxe: wow, I&#39;m either missing something big, or I&#39;m back in this game. (Probably the former)\n\n41) Evilaxe: Sacrifice G2 Evilaxe\nBuild R3 Nohope\nBuild R3 Magrathea\n\tMatrixFrog: Well, I could have caused a catastrophe, but then I&#39;d have no presence in your homeworld, although you&#39;d still be alive... I thought this was slightly better... not so sure.\n\n42) MatrixFrog: Discover R2 Matrixfrog B1 Bluey\n\tMatrixFrog: I&#39;d like to think I&#39;m slowly getting better at this game, but it&#39;s not necessarily true, it seems.\n\tEvilaxe: Sorry about this. It&#39;s late at night here and I can&#39;t seem to run all the scenarios through my head.  I&#39;ll move tomorrow morning/afternoon.\n\n43) Evilaxe: Sacrifice Y2 Sparkle\nMove R3 Magrathea Bluey\nDiscover R3 Nohope Y1 Amber\n\n44) MatrixFrog: Trade R2 G2 Bluey\n\n45) Evilaxe: Attack G2S Bluey\n\n46) MatrixFrog: Build R2 Matrixfrog\n\tEvilaxe: attack g2s bluey\n\n47) Evilaxe: Move R3 Amber Matrixfrog\n\n48) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack R3N Matrixfrog\nPass\n\n49) Evilaxe: Build R2 Bluey\n\n50) MatrixFrog: Discover R3 Matrixfrog B1 Gooey\n\n51) Evilaxe: Discover R2 Magrathea Y1 Amber\n\n52) MatrixFrog: Trade R3 Y3 Gooey\n\n53) Evilaxe: Trade G2 Y2 Bluey\n\n54) MatrixFrog: Move Y3 Gooey Matrixfrog\n\n55) Evilaxe: Sacrifice Y2 Bluey\nMove R1 Evilaxe Matrixfrog\nMove R2 Bluey Matrixfrog\n\n56) MatrixFrog: Move R3 Matrixfrog Amber\n\tMatrixFrog: I shouldn&#39;t have done that... I didn&#39;t need that y3 at home, I just needed to HAVE it. Live and learn...\n\tMatrixFrog: Well... I think.\n\n57) Evilaxe: Trade R3 B3 Bluey\n\tEvilaxe: I thought I was about to win about 4 turns ago. I just haven&#39;t been spotting your options\n\n58) MatrixFrog: Attack R2N Amber\n\n59) Evilaxe: Sacrifice B3 Bluey\nTrade R1 Y1 Matrixfrog\nTrade R2 Y2 Matrixfrog\nPass\nCatastrophe Matrixfrog Y\n\n\tEvilaxe: Tick...Tick...Tick BOOOM!!!!\r\n\r\nGood game, I really enjoyed it.\n\nHomeworlds Online (SDG# 926)\nStarted: 2005.10.11, Ended: 2005.11.5\nParticipants: Aaron (S), Pat (N)\nWinner: Aaron\n\n1) Pat: Homeworld G1 Y2 B3\n\tAaron: OK!  Let&#39;s try this again =)  I am going to modify the &#39;homeworlds&#39; command eventually to make it more difficult to make the worst starting errors.\n\tPat: Yeah: put in an &quot;Are you sure?&quot; prompt in there or something .P\n\n2) Aaron: Homeworld Y2 B3 G3\n\n3) Pat: Build B1 Pat\n\tAaron: I finally did add the code.  Next time you start a game and make one of the 4 standard starting blunders, the system will warn you.\n\tPat: Awesome job!\n\n4) Aaron: Build G1 Aaron\n\n5) Pat: Discover B1 Pat Y3 Magrathea\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) Pat: Build B1 Pat\n\n8) Aaron: Build R1 Aaron\n\n9) Pat: Trade B1 R1 Pat\n\n10) Aaron: Trade R1 Y1 Aaron\n\n11) Pat: Build R1 Pat\n\n12) Aaron: Build G1 Aaron\n\n13) Pat: Build R2 Pat\n\n14) Aaron: Build R2 Aaron\n\n15) Pat: Build R2 Pat\n\n16) Aaron: Build R3 Aaron\nCatastrophe Pat R\n\n17) Pat: Build B1 Pat\n\tPat: Oh...well, suck. I prob&#39;ly should&#39;ve paid better attention to that, eh?\n\tAaron: It&#39;s an important rule that anybody can call a catastrophe anywhere at the end of their turn =/  All is not yet lost.\n\n18) Aaron: Discover R2 Aaron Y1 Bananas\n\n19) Pat: Trade B3 R3 Pat\n\n20) Aaron: Move R2 Bananas Magrathea\n\n21) Pat: Move R3 Pat Magrathea\n\n22) Aaron: Move R2 Magrathea Pat\n\n23) Pat: Move R3 Magrathea Pat\n\tPat: OH...well...hmmmmm\n\n24) Aaron: Move R2 Pat Magrathea\n\n25) Pat: Trade B1 Y1 Magrathea\n\tPat: Sorry &#39;bout that: I got stranded without internet there suddenly. Thaks for the patience. .)\n\n26) Aaron: Attack Y1 Magrathea\n\tAaron: No worries!  Stuff happens.  Hope all is well.\n\n27) Pat: Build B1 Pat\n\n28) Aaron: Discover G1 Aaron Y1 Bananas\n\n29) Pat: Build B1 Pat\n\n30) Aaron: Move R2 Magrathea Bananas\n\tPat: Geez: I keep hitting this game up at the last second, huh? Sorry &#39;bout making you wait like that. :|\n\tAaron: It&#39;s not a problem at all, Pat.  I&#39;m just happy to play =)\n\tAaron: I&#39;m not going anywhere.\n\n31) Pat: Build B2 Pat\n\n32) Aaron: Build Y2 Aaron\nCatastrophe Pat B\n\n33) Pat: Build R1 Pat\n\tPat: Ah, crap. I had four again, didn&#39;t I .P Good catch.\n\tPat: Hahahahahah: now I can&#39;t create any blues! Not sure how this one&#39;ll turn out .P\n\n34) Aaron: Move R2 Bananas Magrathea\n\n35) Pat: Build R1 Pat\n\tAaron: I feel badly =/  Well, this is how we learn!  Don&#39;t give up!\n\tPat: Don&#39;t feel bad! I actually prefer to play this way: against someone who knows what they&#39;re doing and larning from my mistakes. Don&#39;t hold back just because I&#39;m new. .)\n\n36) Aaron: Move Y1 Magrathea Bananas\n\tAaron: Well here&#39;s what you will want to do immediately.  What I *could* do is move my R2 from Magrathea into your home system and that would end the game.  You need to move one of your Red ships to a new Blue star system so you can get Green and Yellow back.  I will still try to come after you, but you&#39;ll last a little longer that way.\n\n37) Pat: Discover R1 Pat B3 Krikket\n\tPat: AH...I see.... Hadn&#39;t seen the game-ending move you were talking about. .P Thanks for the advice!\n\n38) Aaron: Build Y3 Bananas\n\n39) Pat: Trade R1 G1 Krikket\n\n40) Aaron: Move R3 Aaron Bananas\n\n41) Pat: Build G2 Krikket\n\n42) Aaron: Sacrifice Y3 Bananas\nMove R3 Bananas Magrathea\nMove R3 Magrathea Pat\nMove R2 Magrathea Pat\nCatastrophe Pat R\n\tAaron: Thanks for the game, Pat!  I do hope you&#39;ll keep at it.  Homeworlds is a fascinating game.  Practice makes perfect!\n\n\nHomeworlds Online (SDG# 935)\nStarted: 2005.10.11, Ended: 2005.10.14\nParticipants: MatrixFrog (S), lambda (N)\nWinner: lambda\n\n1) lambda: Homeworld B3 Y2 G3\n\n2) MatrixFrog: Homeworld G1 B3 Y3\n\tlambda: Hello! It looks like you like playing this game a lot. \n\tMatrixFrog: Yeah. It&#39;s why I joined the site, but I like the other games too. I just don&#39;t get to play this at all in real life, because I don&#39;t have friends who are into it.\n\n3) lambda: Build G1 Lambda\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\tlambda: Yeah, this game is why I joined the site, too. I actually can find some people to play it with in real live, but most of them have just learned it and so I kill them easily with a cheap attack (everyone forgets about catastrophes at first). Playing on here has let me play people who are actually good (including Andy Looney).\n\n5) lambda: Build G1 Lambda\n\tMatrixFrog: I&#39;m ALWAYS thinking about catastrophes. I probably use them too much.\n\tlambda: Yeah, once you&#39;ve played a few times, you think about catastrophes. I&#39;m now trying to figure out how to effectively defeat an opponent who plays reasonably defensively; if they don&#39;t let you have any large pieces, and keep their colors spread out to avoid catastrophe, and have a large and a red in their homeworld, it seems really hard to get anything done. \n\n6) MatrixFrog: Build Y1 Matrixfrog\n\tlambda: I like the way you can do normally dangerous things at the beginning of the game, like this. \n\n7) lambda: Discover G1 Lambda B1 Alderamin\n\n8) MatrixFrog: Discover Y1 Matrixfrog G2 Epsilon\n\n9) lambda: Build G2 Alderamin\n\n10) MatrixFrog: Build Y1 Epsilon\n\n11) lambda: Trade G2 Y2 Alderamin\n\n12) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n13) lambda: Build G2 Alderamin\n\n14) MatrixFrog: Build G2 Matrixfrog\n\n15) lambda: Discover G1 Alderamin Y2 Endymion\n\n16) MatrixFrog: Build Y3 Epsilon\n\n17) lambda: Move G1 Endymion Matrixfrog\nCatastrophe Matrixfrog G\n\n18) MatrixFrog: Move Y3 Epsilon Matrixfrog\n\tMatrixFrog: Somebody wasn&#39;t paying attention...\n\n19) lambda: Build Y2 Alderamin\n\n20) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n21) lambda: Trade Y2 B2 Alderamin\n\n22) MatrixFrog: Build Y1 Matrixfrog\n\n23) lambda: Move B2 Alderamin Matrixfrog\n\n24) MatrixFrog: Build Y2 Epsilon\n\n25) lambda: Sacrifice G2 Alderamin\nBuild B1 Matrixfrog\nBuild B1 Matrixfrog\nCatastrophe Matrixfrog B\n\n\nHomeworlds Online (SDG# 936)\nVariants: &quot;Left man down&quot;\nStarted: 2005.10.14, Ended: 2005.11.14\nParticipants: istari (S), MatrixFrog (N), Cerulean (E)\nWinner: istari\n\n1) MatrixFrog: Homeworld G1 B3 Y3\n\n2) Cerulean: Homeworld G3 B2 Y3\n\n3) istari: Homeworld B1 G2 Y3\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Cerulean: Build Y1 Cerulean\n\n6) istari: Build Y1 Istari\n\n7) MatrixFrog: Discover Y1 Matrixfrog G2 Goomba\n\n8) Cerulean: Trade Y1 G1 Cerulean\n\n9) istari: Discover Y1 Istari B3 Bigblue\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\n11) Cerulean: Build G1 Cerulean\n\n12) istari: Trade Y1 G1 Bigblue\n\n13) MatrixFrog: Build Y1 Goomba\n\n14) Cerulean: Trade G1 B1 Cerulean\n\n15) istari: Build G1 Bigblue\n\n16) MatrixFrog: Discover Y1 Goomba B1 Sea\n\n17) Cerulean: Build G2 Cerulean\n\n18) istari: Build Y1 Istari\n\n19) MatrixFrog: Build Y2 Goomba\n\n20) Cerulean: Build Y2 Cerulean\n\n21) istari: Build Y2 Istari\n\n22) MatrixFrog: Move Y1 Sea Cerulean\n\n23) Cerulean: Trade G1 R1 Cerulean\n\n24) istari: Trade Y1 R1 Istari\n\n25) MatrixFrog: Build Y1 Cerulean\nCatastrophe Cerulean Y\n\n26) Cerulean: Build B1 Cerulean\n\n27) istari: Move Y2 Istari Bigblue\n\n28) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n29) Cerulean: Trade B1 Y1 Cerulean\n\n30) istari: Build R1 Istari\n\n31) MatrixFrog: Discover Y1 Goomba G1 Greenie\n\n32) Cerulean: Build Y1 Cerulean\n\n33) istari: Move Y2 Bigblue Goomba\n\n34) MatrixFrog: Build Y1 Greenie\n\n35) Cerulean: Discover Y1 Cerulean B1 Arkansas\n\n36) istari: Move Y2 Goomba Matrixfrog\n\n37) MatrixFrog: Trade B1 R1 Matrixfrog\n\n38) Cerulean: Build Y2 Cerulean\n\n39) istari: Build Y2 Matrixfrog\n\n40) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n41) Cerulean: Move Y1 Cerulean Arkansas\n\n42) istari: Trade Y2 B2 Matrixfrog\n\n43) MatrixFrog: Attack B2S Matrixfrog\n\n44) Cerulean: Move G2 Cerulean Arkansas\n\n45) istari: Sacrifice R1 Istari\nAttack R1N Matrixfrog\n\n46) MatrixFrog: Trade B2 R2 Matrixfrog\n\tistari: :  \t\r\nI will be going away for a week this Friday 11/5 to Friday 11/11. I will not have access to the Internet and so I will not be able to move during that time. If you do a Force Surrender on me I will understand. Just wanted to let you know. Istari\n\n47) Cerulean: Build G2 Arkansas\n\n48) istari: Attack R2N Matrixfrog\n\n49) MatrixFrog: Move Y2 Goomba Matrixfrog\n\tMatrixFrog: Hey, no problem, I can wait... if I&#39;m going to get a good rating, I&#39;d rather it&#39;s because I actually won... no hurry for me. Thanks for letting me know.\n\n50) Cerulean: Discover G2 Arkansas Y3 Indiana\n\n51) istari: Attack Y2N Matrixfrog\n\n52) MatrixFrog: Discover Y1 Greenie G2 Branch\n\n53) Cerulean: Build G3 Indiana\n\n54) istari: Sacrifice Y2 Matrixfrog\nMove G1 Bigblue Branch\nMove G1 Branch Matrixfrog\n\n55) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n56) Cerulean: Sacrifice G3 Indiana\nBuild G3 Indiana\nBuild G3 Arkansas\nBuild Y2 Cerulean\n\n57) istari: Construct G3 Matrixfrog\n\n58) MatrixFrog: Build Y2 Greenie\n\tistari: I&#39;m back. Thanks for waiting.\n\n59) Cerulean: Move Y1 Arkansas Indiana\n\n60) istari: Attack Y3N Matrixfrog\n\n\nHomeworlds Online (SDG# 944)\nStarted: 2005.10.14, Ended: 2005.10.14\nParticipants: lambda (S), zweiss (N)\nWinner: lambda\n\n\tSYSTEM: zweiss resigns.\n\nHomeworlds Online (SDG# 950)\nStarted: 2005.10.14, Ended: 2005.11.1\nParticipants: MatrixFrog (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) MatrixFrog: Homeworld G2 B1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tMatrixFrog: I don&#39;t expect to win this one either, but I hope to learn something.\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n7) andylooney: Build G1 Andylooney\n\n8) MatrixFrog: Build B2 Matrixfrog\n\n9) andylooney: Discover G1 Andylooney Y3 Clampett\n\n10) MatrixFrog: Trade B1 R1 Matrixfrog\n\n11) andylooney: Trade G1 R1 Andylooney\n\n12) MatrixFrog: Build Y1 Matrixfrog\n\n13) andylooney: Build R1 Andylooney\n\n14) MatrixFrog: Discover Y1 Matrixfrog G3 Down\n\n15) andylooney: Trade R1 B1 Andylooney\n\n16) MatrixFrog: Build Y1 Down\n\n17) andylooney: Build G1 Clampett\n\n18) MatrixFrog: Build Y1 Down\n\n19) andylooney: Discover B1 Andylooney G3 Paradise\n\n20) MatrixFrog: Build Y2 Matrixfrog\n\n21) andylooney: Build B2 Paradise\n\n22) MatrixFrog: Move B2 Matrixfrog Paradise\n\n23) andylooney: Build R1 Andylooney\n\n24) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack B2N Paradise\n\n25) andylooney: Build B2 Paradise\nCatastrophe Paradise Blue\n\n26) MatrixFrog: Discover Y2 Matrixfrog G3 Gobo\n\n27) andylooney: Move R1 Andylooney Down\n\n28) MatrixFrog: Build Y2 Matrixfrog\n\n29) andylooney: Attack Y1S Down\n\n30) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y1 Down Andylooney\nMove Y1 Down Andylooney\n\n31) andylooney: Trade Y3 G3 Andylooney\n\n32) MatrixFrog: Trade Y1 B1 Andylooney\n\n33) andylooney: Attack B1S Andylooney\n\tMatrixFrog: Argh! I meant to convert to g1, not b1. I was thinking of blue because that&#39;s the technology I was using... Not that I have much of a chance of winning this game anyway.\n\tandylooney: maybe there ought to be an undo option, or a verify step, so you can make sure your orders were what you wanted...\n\n34) MatrixFrog: Build Y1 Andylooney\n\tMatrixFrog: Definitely.\n\n35) andylooney: Attack Y1S Andylooney\n\n36) MatrixFrog: Build Y2 Matrixfrog\n\n37) andylooney: Attack Y1S Andylooney\n\n38) MatrixFrog: Build Y2 Gobo\n\n39) andylooney: Build Y3 Down\n\n40) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n41) andylooney: Trade Y1 G1 Andylooney\n\n42) MatrixFrog: Build R1 Matrixfrog\n\n43) andylooney: Sacrifice G3 Andylooney\nBuild G2 Clampett\nBuild G3 Andylooney\nBuild R2 Andylooney\n\n44) MatrixFrog: Build Y1 Matrixfrog\n\n45) andylooney: Build Y2 Andylooney\n\n46) MatrixFrog: Trade R2 B2 Matrixfrog\n\n47) andylooney: Discover G1 Andylooney B3 Ibm\n\n48) MatrixFrog: Move B2 Matrixfrog Gobo\n\n49) andylooney: Sacrifice Y3 Down\nMove G1 Ibm Matrixfrog\nMove G1 Clampett Matrixfrog\nMove G1 Clampett Matrixfrog\nCatastrophe Matrixfrog Green\n\n50) MatrixFrog: Build Y3 Gobo\n\n51) andylooney: Move Y1 Andylooney Gobo\nCatastrophe Gobo Yellow\n\n52) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n53) andylooney: Trade G3 Y3 Andylooney\n\n54) MatrixFrog: Build Y1 Matrixfrog\n\n55) andylooney: Discover B1 Andylooney G3 Paradise\n\n56) MatrixFrog: Build G1 Matrixfrog\n\n57) andylooney: Build B2 Paradise\n\n58) MatrixFrog: Move Y1 Matrixfrog Gobo\n\n59) andylooney: Build B2 Paradise\n\n60) MatrixFrog: Sacrifice B2 Gobo\nTrade R1 G1 Matrixfrog\nTrade G1 R1 Matrixfrog\n\tMatrixFrog: *sigh* Good game... slowly I&#39;m learning...\n\n61) andylooney: Sacrifice Y3 Andylooney\nMove B1 Paradise Matrixfrog\nMove B2 Paradise Matrixfrog\nMove B2 Paradise Matrixfrog\nCatastrophe Matrixfrog Blue\n\tandylooney: Thanks for the game! Keep on playing, you&#39;ll get better!\n\n\nHomeworlds Online (SDG# 940)\nStarted: 2005.10.15, Ended: 2006.1.14\nParticipants: Jesse (S), siukurnin (N)\nWinner: Jesse\n\n1) siukurnin: Homeworld G3 Y2 R3\n\n2) Jesse: Homeworld G2 B1 R3 *\n\n\tJesse: Welcome!  Have you played much before?\n\tJesse: Are you okay?  What&#39;s up?\n\tJesse: Well, 87 days is enough.\n\nHomeworlds Online (SDG# 990)\nStarted: 2005.10.15, Ended: 2006.1.4\nParticipants: ayahoo (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) ayahoo: Homeworld B3 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) ayahoo: Build Y1 Ayahoo\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) ayahoo: Trade Y3 G3 Ayahoo\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) ayahoo: Build Y1 Ayahoo\n\n9) andylooney: Build Y1 Andylooney\n\n10) ayahoo: Trade Y1 R1 Ayahoo\n\n11) andylooney: Trade Y1 R1 Andylooney\n\n12) ayahoo: Build Y1 Ayahoo\n\n13) andylooney: Build Y1 Andylooney\n\n14) ayahoo: Discover Y1 Ayahoo G2 Iceburg\n\n15) andylooney: Build Y2 Andylooney\n\n16) ayahoo: Build Y2 Iceburg\n\n17) andylooney: Discover Y2 Andylooney G3 Garden\n\n18) ayahoo: Discover Y1 Iceburg B1 The Drop\n\n19) andylooney: Discover Y1 Andylooney B3 Ibm\n\n20) ayahoo: Sacrifice G3 Ayahoo\nBuild Y2 The\nBuild Y3 Ayahoo\nBuild R1 Ayahoo\n\n21) andylooney: Sacrifice G1 Clampett\nBuild Y3 Ibm\n\n\tandylooney: So, you haven&#39;t moved in weeks... are you planning to finish this game, or should I force you to resign?\n\tandylooney: I&#39;m still willing to finish this, but my patience grows thin. If you don&#39;t move before the new year, I&#39;m going to force your surrender.\n\tandylooney: OK, 66 days is long enough. Thanks for playing.\n\tandylooney: All right, well, you have a little more time, I guess. I tried to do a Force Surrender (first time I&#39;ve ever done this) and I got a System Error!\n\nHomeworlds Online (SDG# 998)\nStarted: 2005.10.16, Ended: 2005.10.18\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) sketchwick: Homeworld B1 Y3 G3\n\n3) jeep: Build Y1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade Y1 B1 Jeep\n\n6) sketchwick: Trade G1 R1 Sketchwick\n\n7) jeep: Build Y1 Jeep\n\n8) sketchwick: Build G1 Sketchwick\n\n9) jeep: Trade Y1 G1 Jeep\n\n10) sketchwick: Discover G1 Sketchwick G2 Greenland\n\n11) jeep: Build G2 Jeep\n\n12) sketchwick: Build G2 Sketchwick\n\n13) jeep: Discover G2 Jeep Y3 Candyland\n\n14) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild R1 Sketchwick\nBuild R1 Sketchwick\n\n15) jeep: Build G3 Candyland\n\n16) sketchwick: Trade G2 Y2 Sketchwick\n\n17) jeep: Discover G2 Candyland B1 Bluefoundland\n\n18) sketchwick: Move R1 Sketchwick Greenland\n\n19) jeep: Build Y1 Jeep\n\n20) sketchwick: Move Y2 Sketchwick Greenland\n\n21) jeep: Trade G2 R2 Bluefoundland\n\n22) sketchwick: Build G2 Sketchwick\n\n23) jeep: Build B2 Jeep\n\n24) sketchwick: Discover G1 Greenland Y1 Submarine\n\tjeep: Hope I can remember what my plans were ;)\n\n25) jeep: Trade B2 R2 Jeep\n\n26) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Submarine\nBuild G3 Sketchwick\nBuild R2 Greenland\n\n27) jeep: Move G3 Candyland Greenland\n\n28) sketchwick: Trade R1 Y1 Sketchwick\n\n29) jeep: Sacrifice R2 Bluefoundland\nAttack R2S Greenland\nAttack Y2S Greenland\n\n30) sketchwick: Sacrifice G2 Submarine\nBuild R1 Greenland\nBuild R2 Greenland\nCatastrophe Greenland Red\n\n31) jeep: Build Y2 Greenland\n\n32) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Submarine\nBuild G3 Sketchwick\nBuild R1 Sketchwick\n\n33) jeep: Sacrifice Y3 Jeep\nMove Y2 Greenland Sketchwick\nMove Y2 Greenland Sketchwick\nDiscover G3 Greenland Y3 Notgreen\nCatastrophe Sketchwick Yellow\n\n34) sketchwick: Trade G2 Y2 Sketchwick\n\n35) jeep: Build B1 Jeep\n\n36) sketchwick: Sacrifice Y2 Sketchwick\nMove G3 Sketchwick Notgreen\nMove G3 Notgreen Jeep\n\n37) jeep: Move R2 Jeep Notgreen\n\n38) sketchwick: Trade R1 Y1 Sketchwick\n\n39) jeep: Move G3 Notgreen Sketchwick\n\n40) sketchwick: Sacrifice G2 Submarine\nBuild R1 Sketchwick\nBuild Y2 Sketchwick\n\n41) jeep: Sacrifice R2 Notgreen\nAttack R1S Sketchwick\nAttack R1S Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1001)\nStarted: 2005.10.16, Ended: 2005.10.23\nParticipants: MrStickman (S), Evilaxe (N)\nWinner: MrStickman\n\n1) Evilaxe: Homeworld Y2 B1 G3\n\tMrStickman: Hiya. I don&#39;t think I&#39;ve actually played Homeworlds since it was called IceTraders. I hope you don&#39;t mind me using this game to try and remember how it works...\n\tEvilaxe: No problem. My only experience is from reading the rules/wiki and about 3 moves into another game.\n\n2) MrStickman: Homeworld B3 G2 Y3\n\n3) Evilaxe: Build G1 Evilaxe\n\n4) MrStickman: Build Y1 Mrstickman\n\tMrStickman: Heh. Why am I now picturing veteran players popping in and saying things like &quot;Gah!&quot; or &quot;&lt;slaps forehead&gt;?&quot;\n\n5) Evilaxe: Trade G1 Y1 Evilaxe\n\n6) MrStickman: Trade Y1 B1 Mrstickman\n\n7) Evilaxe: Build G1 Evilaxe\n\tMrStickman: I just realized that the old &quot;enlarge a ship&quot; action from IceTraders went away. Ouch.\n\n8) MrStickman: Build Y1 Mrstickman\n\tEvilaxe: I&#39;ve not played IceTraders, but I did spend a few minutes looking through the rules for &#39;How do I upgrade my ships?&#39;\n\tMrStickman: Clearly, getting large ships is much much harder now. Cool.\n\n9) Evilaxe: Trade G1 R1 Evilaxe\n\n10) MrStickman: Trade Y1 R1 Mrstickman\n\n11) Evilaxe: Build Y1 Evilaxe\n\n12) MrStickman: Build B1 Mrstickman\n\n13) Evilaxe: Trade G3 B3 Evilaxe\n\n14) MrStickman: Trade B1 G1 Mrstickman\n\tEvilaxe: Damn, now that was a bad move. \n\tMrStickman: Um, mine or yours? (And I wonder if Aaron will ever put in an Undo function, perhaps only to be used by mutual consent of all players...)\n\tMrStickman: Oh. I just figured that out. Oops.\n\n15) Evilaxe: Trade Y1 G1 Evilaxe\n\tEvilaxe: I as referring to me. That move of mine just took green tech out of my hands, so I now have to waste a turn reaquiring it.\n\n16) MrStickman: Build Y1 Mrstickman\n\n17) Evilaxe: Build G1 Evilaxe\n\n18) MrStickman: Discover G1 Mrstickman B1 Lorem\n\n19) Evilaxe: Discover G1 Evilaxe B3 New_derbyshire\n\n20) MrStickman: Build G2 Lorem\n\n21) Evilaxe: Build G2 New_derbyshire\n\n22) MrStickman: Build G3 Lorem\n\n23) Evilaxe: Sacrifice Y1 Evilaxe\nMove G1 New_derbyshire Lorem\nCatastrophe Lorem G\n\n24) MrStickman: Build Y1 Mrstickman\n\n25) Evilaxe: Build G1 New_derbyshire\n\tMrStickman: Darn. I was about to do that to you. :)\n\n26) MrStickman: Discover Y1 Mrstickman B1 Ipsum\n\n27) Evilaxe: Sacrifice G2 New_derbyshire\nBuild G1 New_derbyshire\nBuild G2 Evilaxe\n\n28) MrStickman: Build B2 Mrstickman\n\n29) Evilaxe: Discover G1 Evilaxe Y3 Sindern\n\n30) MrStickman: Move B2 Mrstickman Ipsum\n\n31) Evilaxe: Build G2 Sindern\n\n32) MrStickman: Trade Y3 G3 Mrstickman\n\n33) Evilaxe: Build G3 Evilaxe\n\n34) MrStickman: Build G3 Mrstickman\n\n35) Evilaxe: Trade G2 B2 Evilaxe\n\tMrStickman: That was an interesting little rush.\n\tEvilaxe: Yeah. I think you got the best of it, but I don&#39;t really have enough experience to judge.\n\n36) MrStickman: Move G3 Mrstickman Ipsum\n\tMrStickman: There was a big risk on my part. If you&#39;d had a yellow to sacrifice, you could&#39;ve rushed my Homeworld and caused a catastrophe.\n\n37) Evilaxe: Move B2 Evilaxe Sindern\n\tMrStickman: (I hadn&#39;t actually checked for that possibility until I submitted the move.)\n\n38) MrStickman: Build G2 Ipsum\n\n39) Evilaxe: Move G1 Sindern Ipsum\n\n40) MrStickman: Trade G2 R2 Ipsum\n\n41) Evilaxe: Build B2 Sindern\n\n42) MrStickman: Attack G1N Ipsum\n\n43) Evilaxe: Build G2 Evilaxe\n\n44) MrStickman: Discover G1 Ipsum Y3 Dolor\n\n45) Evilaxe: Move G3 Evilaxe Sindern\n\n46) MrStickman: Move R2 Ipsum Dolor\n\n47) Evilaxe: Trade G2 Y2 Sindern\n\n48) MrStickman: Pass\n\tEvilaxe: Damn. Mistyped g2 when I meant b2\n\tEvilaxe: Doesn&#39;t really matter though.\n\tEvilaxe: Actually, and if you don&#39;t want to I won&#39;t hold it against you, but could you pass next turn?\r\n\r\nI promise I&#39;ll then just change one of the B2s in Sindern to a G3, emulating what I was trying to do, but absent-mindedly input wrong.\r\n\r\nOf course, feel perfectly free not to if you don&#39;t want to.\n\tEvilaxe: I mean G2\n\n49) Evilaxe: Trade B2 G2 Sindern\n\tMrStickman: A piece of me just breated a sigh of relief. &quot;Finally, a turn I don&#39;t have to think about.&quot;\n\n50) MrStickman: Move B2 Ipsum Dolor\n\tEvilaxe: Thanks a lot.\n\n51) Evilaxe: Discover B2 Sindern Y1 Brent\n\n52) MrStickman: Build B2 Dolor\n\tMrStickman: construct b2 Dolor\n\tMrStickman: I&#39;m an idiot.\n\n53) Evilaxe: Sacrifice Y2 Sindern\nMove G3 Sindern Evilaxe\nMove B3 Evilaxe Dolor\n\n54) MrStickman: Move B2 Dolor Brent\n\tEvilaxe: I think I&#39;ve blown this one though.\n\n55) Evilaxe: Sacrifice R1 Evilaxe\nAttack R2S Dolor\n\n56) MrStickman: Discover B2 Dolor R1 Sit\n\n57) Evilaxe: Trade G3 Y3 Evilaxe\n\n58) MrStickman: Build G3 Ipsum\n\n59) Evilaxe: Sacrifice Y3 Evilaxe\nMove G1 New_derbyshire Ipsum\nMove G1 New_derbyshire Ipsum\nMove B3 Dolor Evilaxe\nCatastrophe Ipsum G\n\tEvilaxe: Yep, I realised how sill my move was as soon as I put my move in, and saw a shiny new G3 just waiting for you to take.\n\n60) MrStickman: Sacrifice G3 Mrstickman\nBuild B3 Sit\nBuild Y2 Mrstickman\nBuild Y2 Ipsum\n\tEvilaxe: Ooops, didn&#39;t take the Hyperspatial Flux into consideration....\n\n61) Evilaxe: Attack G1S Dolor\n\tMrStickman: It&#39;s weird. I keep watching for that, and I keep missing it....\n\n62) MrStickman: Trade B3 Y3 Sit\n\tEvilaxe: It looks like the end is nigh.\n\n63) Evilaxe: Move G1 Dolor Brent\n\n64) MrStickman: Move B2 Brent Sindern\n\n65) Evilaxe: Build B3 Brent\n\n66) MrStickman: Sacrifice Y3 Sit\nMove B2 Sit Sindern\nMove B2 Sindern Evilaxe\nMove B2 Sindern Evilaxe\nCatastrophe Evilaxe Blue\n\n67) Evilaxe: Trade B3 Y3 Brent\n\tEvilaxe: I can see where it&#39;s going, so i&#39;ll make it easy for you. Thanks for a good game.\n\tEvilaxe: Ah, sorry can&#39;t change to yeller in the Evilaxe system. Should have checked it more closely\n\n68) MrStickman: Move Y1 Mrstickman Brent\n\tMrStickman: Actually, I was kinda wondering how/if I&#39;d be able to pull it off.\n\n69) Evilaxe: Move Y3 Brent Evilaxe\n\tMrStickman: And thank *you* for a lot of fun.\n\n70) MrStickman: Sacrifice Y2 Mrstickman\nMove Y2 Ipsum Evilaxe\nMove Y1 Ipsum Evilaxe\nCatastrophe Evilaxe Yellow\n\n\nHomeworlds Online (SDG# 986)\nStarted: 2005.10.16, Ended: 2005.10.26\nParticipants: JunkMan (S), ayahoo (N)\nWinner: JunkMan\n\n1) ayahoo: Homeworld G2 B1 Y3\n\n2) JunkMan: Homeworld G1 B3 Y3\n\n3) ayahoo: Build Y1 Ayahoo\n\n4) JunkMan: Build Y1 Junkman\n\n5) ayahoo: Trade Y3 G3 Ayahoo\n\n6) JunkMan: Trade Y1 G1 Junkman\n\n7) ayahoo: Build Y1 Ayahoo\n\n8) JunkMan: Build Y1 Junkman\n\n9) ayahoo: Trade Y1 R1 Ayahoo\n\n10) JunkMan: Trade Y1 R1 Junkman\n\n11) ayahoo: Build Y1 Ayahoo\n\n12) JunkMan: Build G1 Junkman\n\n13) ayahoo: Discover Y1 Ayahoo G3 Forest\n\n14) JunkMan: Discover G1 Junkman G2 Faucet\n\n15) ayahoo: Discover G3 Ayahoo R3 Ill\n\n16) JunkMan: Build Y1 Junkman\n\n17) ayahoo: Build Y2 Forest\n\n18) JunkMan: Build Y2 Junkman\n\n\tSYSTEM: ayahoo resigns.\n\nHomeworlds Online (SDG# 1002)\nStarted: 2005.10.16, Ended: 2006.1.14\nParticipants: Jesse (S), Divreon (N)\nWinner: Jesse\n\n1) Divreon: Homeworld B2 Y1 G3\n\n2) Jesse: Homeworld Y3 B1 G3\n\n3) Divreon: Build G1 Divreon\n\tJesse: Welcome!  Have you played much Homeworlds?\n\n4) Jesse: Build G1 Jesse\n\tDivreon: No, im fairly new, I played versus andy once, and he corrected my misunderstandings of the rules, but that was awhile ago, and I heard you beat him, so im probably doomed, but good practice.\n\n5) Divreon: Trade G1 Y1 Divreon\n\tJesse: Well, best of luck to you then, and maybe I can give you a few pointers as well.\n\n6) Jesse: Discover G1 Jesse B2 Boogie\n\n7) Divreon: Discover Y1 Divreon G3 Iceland\n\n8) Jesse: Trade G1 Y1 Boogie\n\n\tJesse: Hmm, I may have made a poor choice last turn.  We&#39;ll see.  But I can&#39;t let you freeze me out of yellow.\n\tJesse: I guess we won&#39;t see after all.\n\nHomeworlds Online (SDG# 1008)\nStarted: 2005.10.17, Ended: 2005.10.22\nParticipants: cobalt (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) cobalt: Homeworld Y1 B3 G3\n\n3) andylooney: Build Y1 Andylooney\n\tcobalt: oi vey! figures that I&#39;d get stuck playing you, of all people :P\n\n4) cobalt: Build G1 Cobalt\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: well, you didn&#39;t get &quot;stuck&quot; playing me, you chose to accept my challenge. Didn&#39;t you read my name first?\n\n6) cobalt: Trade G1 R1 Cobalt\n\tcobalt: Well, on &#39;The Games&#39; page there was a link that said &#39;Jump Right In!&#39;\r\nI clicked on that :)\n\n7) andylooney: Build Y1 Andylooney\n\n8) cobalt: Build G1 Cobalt\n\n9) andylooney: Trade Y1 R1 Andylooney\n\n10) cobalt: Trade G1 B1 Cobalt\n\n11) andylooney: Build Y1 Andylooney\n\n12) cobalt: Build G1 Cobalt\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) cobalt: Discover G1 Cobalt B2 Doxsee\n\n15) andylooney: Build Y1 Andylooney\n\n16) cobalt: Build G1 Doxsee\n\n17) andylooney: Build G2 Clampett\n\n18) cobalt: Trade G3 Y3 Cobalt\n\n19) andylooney: Discover Y1 Andylooney G3 Garden\n\n20) cobalt: Trade Y3 G3 Cobalt\n\n21) andylooney: Build Y2 Garden\n\n22) cobalt: Build G2 Cobalt\n\n23) andylooney: Discover G1 Clampett Y2 Plugh\n\n24) cobalt: Trade G2 R2 Cobalt\n\n25) andylooney: Discover Y1 Garden B2 Bomber\n\n26) cobalt: Move R2 Cobalt Bomber\n\n27) andylooney: Discover Y1 Bomber G3 Paradise\n\n28) cobalt: Trade R2 Y2 Bomber\n\n29) andylooney: Sacrifice G2 Clampett\nBuild Y3 Garden\nBuild Y3 Paradise\n\n30) cobalt: Discover Y2 Bomber R3 Xiii\n\n31) andylooney: Build G2 Plugh\n\n\tcobalt: Oh, we both know how this game ends. Next time we meet, hopefully I&#39;ll be a little bit better :)\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1010)\nStarted: 2005.10.17, Ended: 2005.10.24\nParticipants: cobalt (S), killerkitty94 (N)\nWinner: cobalt\n\n\tkillerkitty94: what do i do?\n\trootbeer: There are some suggestions on the wiki. On your first turn, you establish a homeworld with the &quot;homeworld&quot; command. \r\n\n\trootbeer: Try to move before the time runs out, so as not to be rude to your fellow players.\n\tcobalt: I&#39;ll wait a few more days.\n\trootbeer: KillerKitty hasn&#39;t been online in two days. I hope he or she is spending this time studying the rules!\n\tSYSTEM: killerkitty94 resigns.\n\nHomeworlds Online (SDG# 1016)\nStarted: 2005.10.17, Ended: 2005.10.25\nParticipants: TwoShort (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld Y3 B1 G3\n\n3) ts52: Build Y1 Ts52\n\n4) TwoShort: Build G1 Twoshort\n\n5) ts52: Discover Y1 Ts52 G3 Endor\n\n6) TwoShort: Build G1 Twoshort\n\tts52: Thanks for joining the game. Hvae a great game.\n\n7) ts52: Build Y1 Ts52\n\n8) TwoShort: Discover G1 Twoshort Y2 Sulphur\n\n9) ts52: Trade Y1 G1 Ts52\n\n10) TwoShort: Discover G1 Sulphur Y3 Monkeywrench\n\n11) ts52: Trade G1 R1 Ts52\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) ts52: Build Y1 Ts52\n\n14) TwoShort: Build G1 Twoshort\n\n15) ts52: Trade Y1 B1 Ts52\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Monkeywrench\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n17) ts52: Build B2 Ts52\n\n18) TwoShort: Trade G1 Y1 Bluestar\n\n19) ts52: Discover B1 Ts52 G3 Garden\n\n20) TwoShort: Move G2 Bluestar Garden\n\n21) ts52: Build B2 Garden\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Garden\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n23) ts52: Build Y2 Endor\n\n24) TwoShort: Trade Y1 R1 Bluestar\n\n25) ts52: Build B3 Ts52\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild R1 Bluestar\nBuild G3 Twoshort\n\n27) ts52: Build Y2 Ts52\n\n28) TwoShort: Sacrifice R1 Bluestar\nAttack B2N Garden\n\n29) ts52: Move B3 Ts52 Endor\n\n30) TwoShort: Sacrifice B2 Garden\nTrade G2 Y2 Garden\nTrade G2 B2 Monkeywrench\n\n31) ts52: Trade Y2 G2 Endor\n\n32) TwoShort: Sacrifice Y2 Garden\nMove G1 Garden Ts52\nMove G1 Monkeywrench Ts52\n\n33) ts52: Build G2 Endor\n\n34) TwoShort: Sacrifice G1 Twoshort\nBuild G1 Ts52\nCatastrophe Ts52 Green\n\n35) ts52: Move Y2 Ts52 Garden\n\tts52: well played\n\n36) TwoShort: Build G1 Twoshort\n\n37) ts52: Build Y2 Endor\n\n38) TwoShort: Sacrifice G1 Twoshort\nBuild B3 Monkeywrench\n\n39) ts52: Discover B2 Ts52 Y2 Shortbus\n\n40) TwoShort: Build G1 Twoshort\n\n41) ts52: Sacrifice Y2 Endor\nMove G2 Endor Shortbus\nMove G2 Shortbus Twoshort\n\n42) TwoShort: Sacrifice B3 Monkeywrench\nTrade G3 R3 Twoshort\nTrade B2 Y2 Monkeywrench\nTrade Y1 R1 Bluestar\n\n\n43) ts52: Build G1 Twoshort\n\n44) TwoShort: Attack G2N Twoshort\n\n45) ts52: Build G1 Twoshort\nCatastrophe Twoshort Green\n\n46) TwoShort: Trade R3 G3 Twoshort\n\n47) ts52: Build G1 Endor\n\n48) TwoShort: Trade R1 G1 Bluestar\n\n49) ts52: Move G1 Endor Ts52\n\n50) TwoShort: Build G1 Bluestar\n\n51) ts52: Move B3 Endor Bluestar\n\n52) TwoShort: Sacrifice Y2 Monkeywrench\nMove G1 Bluestar Endor\nMove R1 Bluestar Twoshort\n\n53) ts52: Move G2 Endor Shortbus\n\n54) TwoShort: Build G2 Bluestar\n\n55) ts52: Trade B3 R3 Bluestar\n\n56) TwoShort: Sacrifice Y1 Bluestar\nDiscover G2 Bluestar B3 Amideadyet\n\n57) ts52: Build G2 Shortbus\n\n58) TwoShort: Sacrifice G1 Bluestar\nBuild G1 Amideadyet\n\n59) ts52: Build Y1 Endor\n\n60) TwoShort: Trade G2 Y2 Amideadyet\n\n61) ts52: Move Y1 Endor Bluestar\n\n62) TwoShort: Build G2 Amideadyet\n\n63) ts52: Move R3 Bluestar Endor\n\n64) TwoShort: Trade G2 B2 Amideadyet\n\n65) ts52: Build G2 Ts52\n\n66) TwoShort: Discover B2 Amideadyet Y1 Futility\n\n67) ts52: Build Y3 Endor\n\n68) TwoShort: Sacrifice G1 Endor\nBuild B3 Futility\n\n69) ts52: Build B3 Shortbus\n\n70) TwoShort: Discover B3 Futility R2 R2d2\n\n71) ts52: Move R3 Endor Futility\n\n72) TwoShort: Discover B2 Futility R2 C3po\n\n73) ts52: Move R3 Futility Amideadyet\n\n74) TwoShort: Move Y2 Amideadyet Bluestar\n\n75) ts52: Attack G1 Amideadyet\n\n76) TwoShort: Build R1 Twoshort\n\n77) ts52: Move Y1 Bluestar Amideadyet\n\n78) TwoShort: Move R1 Twoshort Bluestar\n\n79) ts52: Move R3 Amideadyet Bluestar\n\n80) TwoShort: Sacrifice G3 Twoshort\nBuild R2 Bluestar\nBuild R3 Bluestar\nBuild R3 Twoshort\nCatastrophe Bluestar Red\n\n81) ts52: Sacrifice B2 Shortbus\nTrade B3 R3 Shortbus\nTrade Y3 R3 Endor\n\tts52: Wow, nicely done...\n\n82) TwoShort: Trade R3 G3 Twoshort\n\n83) ts52: Move R3 Endor Bluestar\n\n84) TwoShort: Build R1 Twoshort\n\n85) ts52: Attack Y2 Bluestar\n\n86) TwoShort: Sacrifice G3 Twoshort\nBuild B2 R2d2\nBuild B3 C3po\nPass\n\n87) ts52: Sacrifice Y2 Garden\nMove R3 Bluestar Twoshort\nMove R3 Shortbus Twoshort\nCatastrophe Twoshort Red\n\n\nHomeworlds Online (SDG# 1030)\nStarted: 2005.10.18, Ended: 2005.11.7\nParticipants: zevzimra (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) zevzimra: Homeworld B2 G3 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) zevzimra: Construct Y1 Zevzimra\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) zevzimra: Trade Y1 B1 Zevzimra\n\n7) andylooney: Build G1 Andylooney\n\n8) zevzimra: Trade B1 G1 Zevzimra\n\n9) andylooney: Discover G1 Andylooney Y3 Clampett\n\n10) zevzimra: Discover G1 Zevzimra Y1 Backwater\n\n11) andylooney: Build G2 Clampett\n\n12) zevzimra: Build G2 Backwater\n\n13) andylooney: Build G3 Andylooney\n\n14) zevzimra: Build Y1 Zevzimra\n\n15) andylooney: Trade G1 R1 Andylooney\n\n16) zevzimra: Construct Y1 Zevzimra\n\n17) andylooney: Build Y2 Andylooney\n\n18) zevzimra: Trade Y1 R1 Zevzimra\n\n19) andylooney: Discover G1 Clampett Y1 Different\n\n20) zevzimra: Trade Y1 G1 Zevzimra\n\n21) andylooney: Build G3 Different\n\n22) zevzimra: Build R1 Zevzimra\n\n23) andylooney: Discover Y2 Andylooney B3 Ibm\n\n24) zevzimra: Discover G1 Zevzimra Y1 Pisspot\n\n25) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild Y2 Ibm\nBuild Y2 Andylooney\n\n26) zevzimra: Move R1 Zevzimra Backwater\n\n27) andylooney: Discover Y3 Andylooney B3 Bluestar\n\n28) zevzimra: Construct R2 Backwater\n\n29) andylooney: Sacrifice G2 Clampett\nBuild Y3 Bluestar\nBuild R2 Andylooney\n\n30) zevzimra: Discover R2 Backwater B3 Kasparov\n\n31) andylooney: Move R2 Andylooney Ibm\n\tandylooney: Dang! I can&#39;t believe how I messed up my last move on our Martian Chess game! I was obviously too sleepy when I was making my final moves last night...\n\n32) zevzimra: Sacrifice G2 Backwater\nBuild R2 Backwater\nBuild R3 Zevzimra\n\tzevzimra: That&#39;s okay...  it happens to the best of us!\n\n33) andylooney: Sacrifice G3 Different\nBuild G2 Different\nBuild R3 Andylooney\nBuild R3 Ibm\n\n34) zevzimra: Construct G2 Pisspot\n\n35) andylooney: Discover R1 Andylooney G3 Garden\n\n\tzevzimra: Thanks for the game!\n\tSYSTEM: zevzimra resigns.\n\nHomeworlds Online (SDG# 1021)\nStarted: 2005.10.18, Ended: 2005.10.21\nParticipants: cobalt (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) cobalt: Homeworld B1 G2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) cobalt: Build Y1 Cobalt\n\n5) TwoShort: Build G1 Twoshort\n\n6) cobalt: Trade Y1 G1 Cobalt\n\n7) TwoShort: Discover G1 Twoshort Y3 Threetall\n\n8) cobalt: Build Y1 Cobalt\n\n9) TwoShort: Move G1 Threetall Cobalt\n\n10) cobalt: Trade G1 R1 Cobalt\n\n11) TwoShort: Build G1 Cobalt\n\n12) cobalt: Discover R1 Cobalt G3 Hindsight\n\n13) TwoShort: Trade G1 Y1 Cobalt\n\n14) cobalt: Trade Y3 R3 Cobalt\n\n15) TwoShort: Build Y2 Cobalt\n\n16) cobalt: Move Y1 Cobalt Hindsight\n\n17) TwoShort: Build G1 Cobalt\n\n18) cobalt: Attack Y2N Cobalt\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y2 Cobalt\nBuild Y2 Cobalt\nCatastrophe Cobalt Yellow\n\n20) cobalt: Move R1 Hindsight Cobalt\n\n21) TwoShort: Build G2 Cobalt\n\n22) cobalt: Catastrophe Cobalt G\nMove Y1 Hindsight Twoshort\n\n23) TwoShort: Trade G2 R2 Twoshort\n\n24) cobalt: Sacrifice R1 Cobalt\nAttack G1N Twoshort\n\n25) TwoShort: Attack G1S Twoshort\n\n26) cobalt: Discover Y1 Twoshort Y3 Thatwasdumbofme\n\n27) TwoShort: Build G1 Twoshort\n\n28) cobalt: Move Y1 Thatwasdumbofme Cobalt\n\n29) TwoShort: Build G1 Twoshort\n\tTwoShort: construct g1 twoshort\r\n\n\n30) cobalt: Trade R3 G3 Cobalt\n\n31) TwoShort: Discover G1 Twoshort Y3 Jed\n\n32) cobalt: Build Y1 Cobalt\n\n33) TwoShort: Build G2 Twoshort\n\n34) cobalt: Build Y2 Cobalt\n\n35) TwoShort: Trade G2 B2 Twoshort\n\n36) cobalt: Trade Y2 R2 Cobalt\n\n37) TwoShort: Build G2 Twoshort\n\n38) cobalt: Build Y2 Cobalt\n\n39) TwoShort: Move B2 Twoshort Jed\n\n40) cobalt: Move R2 Cobalt Jed\n\n41) TwoShort: Move B2 Jed Cobalt\n\n42) cobalt: Sacrifice Y2 Cobalt\nMove G3 Cobalt Jed\nMove G3 Jed Twoshort\nCatastrophe Twoshort G\n\n43) TwoShort: Trade B2 R2 Cobalt\n\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1038)\nStarted: 2005.10.19, Ended: 2005.12.13\nParticipants: andylooney (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\tjeep: Overs!  ;)\n\n3) jeep: Build Y1 Jeep\n\n4) andylooney: Build Y1 Andylooney\n\n5) jeep: Discover Y1 Jeep G3 Lantern\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) jeep: Build Y1 Jeep\n\n8) andylooney: Build G1 Andylooney\n\n9) jeep: Trade Y3 G3 Jeep\n\n10) andylooney: Discover G1 Andylooney Y1 Different\n\n11) jeep: Build G2 Jeep\n\n12) andylooney: Build G2 Different\n\tjeep: Ack, that wasn&#39;t what I meant to do... *sigh*  oh well. \n\n13) jeep: Discover G2 Jeep G3 Arrow\n\n14) andylooney: Build Y2 Andylooney\n\n15) jeep: Build Y2 Jeep\n\n16) andylooney: Discover Y2 Andylooney B1 Bomber\n\n17) jeep: Discover Y2 Jeep B3 Moon\n\n18) andylooney: Discover G2 Different Y3 Clampett\n\n19) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y3 Jeep\nBuild G3 Arrow\n\n20) andylooney: Move G1 Different Arrow\nCatastrophe Arrow Green\n\n21) jeep: Trade Y2 G2 Moon\n\n22) andylooney: Move G1 Andylooney Bomber\n\n23) jeep: Trade Y1 G1 Jeep\n\n24) andylooney: Build G3 Bomber\n\n25) jeep: Build G3 Moon\n\n26) andylooney: Trade G1 R1 Bomber\n\n27) jeep: Trade G2 R2 Moon\n\n28) andylooney: Build R1 Bomber\n\n29) jeep: Build R1 Moon\n\n30) andylooney: Move R1 Bomber Clampett\n\n31) jeep: Build G1 Moon\n\n32) andylooney: Build R2 Bomber\n\n33) jeep: Discover G1 Moon B1 Man\n\tjeep: Sorry, my brain is burning.  I&#39;ll think about it later tonight.\n\n34) andylooney: Build G2 Bomber\n\n35) jeep: Build Y1 Moon\n\n36) andylooney: Move R2 Bomber Lantern\n\n37) jeep: Move R2 Moon Man\n\n38) andylooney: Attack Y1N Lantern\n\n39) jeep: Sacrifice G3 Moon\nBuild G3 Man\nBuild R2 Man\nBuild R3 Moon\n\n40) andylooney: Sacrifice G3 Bomber\nBuild G3 Bomber\nBuild R3 Clampett\nBuild R3 Lantern\n\n41) jeep: Trade Y1 B1 Moon\n\n42) andylooney: Sacrifice G3 Bomber\nBuild G3 Bomber\nBuild Y1 Bomber\nBuild Y1 Lantern\n\n43) jeep: Sacrifice G3 Man\nBuild G3 Man\nBuild Y2 Moon\nBuild B2 Moon\n\n44) andylooney: Trade G2 B2 Bomber\n\n45) jeep: Sacrifice Y2 Moon\nMove B1 Moon Bomber\nMove B2 Moon Bomber\nCatastrophe Bomber Blue\n\n46) andylooney: Build G2 Clampett\n\n47) jeep: Trade R3 G3 Moon\n\n48) andylooney: Sacrifice G2 Clampett\nBuild Y1 Lantern\nBuild Y2 Andylooney\n\n49) jeep: Sacrifice G3 Man\nBuild G2 Moon\nBuild G3 Man\nBuild Y2 Moon\n\n50) andylooney: Discover R1 Clampett B1 Bomber\n\n51) jeep: Move Y2 Moon Man\n\n52) andylooney: Sacrifice Y2 Andylooney\nDiscover R3 Clampett Y2 Plugh\nMove R1 Bomber Andylooney\n\n53) jeep: Trade R2 B2 Man\n\n54) andylooney: Sacrifice G2 Clampett\nBuild Y3 Andylooney\nBuild R1 Andylooney\n\n55) jeep: Move Y2 Man Lantern\nCatastrophe Lantern Yellow\n\tjeep: Yeah, almost moved into that system, I didn&#39;t think you&#39;d cash it yet.\n\n56) andylooney: Trade R1 B1 Andylooney\n\n57) jeep: Sacrifice G3 Moon\nBuild G2 Jeep\nBuild G3 Moon\nBuild R1 Man\n\n58) andylooney: Discover B1 Andylooney Y1 Different\n\tandylooney: Dang, I wish I hadn&#39;t let you blow up my fleet of little yellows! When I put a 3rd ship in that system it was safe, but I got so interested in cashing in my investment that I didn&#39;t notice it was no longer safe to keep that fleet of 3 together! And now, with them gone, my plan for destroying you is ruined, and I find I&#39;ve painted myself into a corner! Plus, I can&#39;t believe how far I&#39;ve let you monopolize the green economy! You&#39;ve got 2 factories, and I&#39;m totally frozen out! Ack! I thought I was on the brink of victory, but now I think I&#39;m going to lose this one! Oh well... :)\n\n59) jeep: Sacrifice G3 Man\nBuild G3 Man\nBuild Y1 Moon\nBuild Y1 Jeep\n\n60) andylooney: Move B1 Different Lantern\n\tjeep: Yeah, well, I&#39;m famous for losing games that I should win.  In fact, my other Homeworlds game here seemed like I had it won, then I just gave him a ship.\n\n61) jeep: Sacrifice Y2 Moon\nMove R1 Man Lantern\nMove R2 Man Lantern\nCatastrophe Lantern Red\n\n62) andylooney: Build B1 Lantern\n\tjeep: I&#39;m heading on vacation starting tomorrow. I had thought this might end by the time I left. I appreciate your patience while I&#39;m driving. I&#39;ll move today, tomorrow a.m., and after I get to NE.\n\n63) jeep: Sacrifice G3 Moon\nBuild G3 Moon\nBuild Y1 Moon\nBuild R1 Moon\n\tandylooney: no problem, I&#39;m in lots of games and I can be patient. Have fun!\n\n64) andylooney: Sacrifice Y3 Andylooney\nMove B1 Lantern Man\nMove B1 Lantern Man\nDiscover R3 Plugh B3 Ibm\nCatastrophe Man Blue\n\n65) jeep: Discover Y1 Moon B1 Station\n\tjeep: Wow, now I want to see what the board looked like before that move. \n\n66) andylooney: Build Y2 Andylooney\n\tjeep: I&#39;m heading back home tomorrow.  Limited access until Monday.\n\n67) jeep: Sacrifice G2 Moon\nBuild Y2 Moon\nBuild Y2 Station\n\n68) andylooney: Trade Y2 G2 Andylooney\n\n69) jeep: Sacrifice G2 Jeep\nBuild Y2 Station\nBuild Y3 Moon\n\n70) andylooney: Sacrifice G2 Andylooney\nBuild R2 Ibm\nBuild R2 Andylooney\n\n71) jeep: Trade Y2 R2 Station\n\n72) andylooney: Trade R2 Y2 Ibm\n\n73) jeep: Sacrifice Y3 Moon\nMove R2 Station Andylooney\nMove R1 Moon Station\nMove R1 Station Andylooney\nCatastrophe Andylooney Red\n\n74) andylooney: Trade Y2 G2 Ibm\n\tandylooney: Ouch.\n\n75) jeep: Move Y1 Moon Station\n\n76) andylooney: Trade Y3 R3 Andylooney\n\n77) jeep: Sacrifice G3 Moon\nBuild Y2 Jeep\nBuild Y3 Moon\nBuild Y3 Moon\n\n78) andylooney: Build R1 Ibm\n\n79) jeep: Move G1 Jeep Moon\n\n80) andylooney: Build G1 Ibm\n\n81) jeep: Build G2 Moon\n\n82) andylooney: Trade G1 B1 Ibm\n\n83) jeep: Move R1 Moon Station\n\n\tandylooney: There&#39;s no way I can recover from this... you&#39;ve got me, I resign.\n\tSYSTEM: andylooney resigns.\n\nHomeworlds Online (SDG# 1041)\nStarted: 2005.10.19, Ended: 2005.10.27\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 Y3 G3\n\n2) jeep: Homeworld G1 B2 Y3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build Y1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick Y2 First\n\n6) jeep: Trade Y1 G1 Jeep\n\n7) sketchwick: Build G2 Sketchwick\n\n8) jeep: Discover G1 Jeep G3 Blood\n\n9) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 First\nBuild G2 First\nBuild G3 Sketchwick\n\n10) jeep: Build Y1 Jeep\n\tjeep: Heh, I suck.  I am constantly skipping steps in my plan.\n\n11) sketchwick: Discover G2 First B3 Sport\n\n12) jeep: Trade Y3 G3 Jeep\n\n13) sketchwick: Trade G2 Y2 Sport\n\n14) jeep: Build Y1 Jeep\n\n15) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild G3 Sketchwick\nBuild Y1 Sport\n\n16) jeep: Move Y1 Jeep Blood\n\n17) sketchwick: Trade Y2 R2 Sport\n\n18) jeep: Build Y2 Jeep\n\n19) sketchwick: Discover G2 Sketchwick Y2 Bra\n\n20) jeep: Build Y3 Blood\n\n21) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild Y3 Sport\nBuild R1 Sport\n\n22) jeep: Trade Y1 R1 Jeep\n\n23) sketchwick: Sacrifice Y3 Sport\nMove G2 Bra Sport\nMove G2 First Blood\nMove G1 First Blood\nCatastrophe Blood Green\n\n24) jeep: Build Y1 Jeep\n\n25) sketchwick: Build G1 Sport\n\n26) jeep: Build R1 Jeep\n\n27) sketchwick: Move G1 Sport Jeep\n\tjeep: I have no clue what I&#39;m doing.\n\n28) jeep: Move G3 Jeep Sport\n\n29) sketchwick: Sacrifice G3 Sketchwick\nBuild G1 Sport\nBuild G2 Sport\nBuild G3 Sketchwick\nCatastrophe Sport Green\n\n30) jeep: Attack G1N Jeep\n\n31) sketchwick: Discover G3 Sketchwick Y2 Drink\n\tjeep: so many tactics I haven&#39;t thought about\n\n32) jeep: Discover G1 Jeep Y3 Me\n\n33) sketchwick: Move G3 Drink Sport\n\n34) jeep: Trade Y1 G1 Jeep\n\n35) sketchwick: Move G3 Sport Jeep\n\n36) jeep: Build G2 Jeep\nCatastrophe Jeep Green\n\n37) sketchwick: Trade R2 G2 Sport\n\n38) jeep: Move G1 Me Jeep\n\n39) sketchwick: Build R2 Sport\n\n40) jeep: Build Y1 Jeep\n\n41) sketchwick: Build G1 Sketchwick\n\n42) jeep: Trade R1 B1 Jeep\n\n43) sketchwick: Trade G2 Y2 Sketchwick\n\n44) jeep: Trade Y2 G2 Jeep\n\n45) sketchwick: Build G1 Sport\n\n46) jeep: Discover G1 Jeep Y3 Fan\n\n47) sketchwick: Sacrifice Y2 Sketchwick\nMove G2 Sport Jeep\nMove G1 Sport Jeep\n\n48) jeep: Move G2 Jeep Sketchwick\n\n49) sketchwick: Sacrifice R2 Sport\nAttack R1 Jeep\nAttack Y1 Jeep\n\n50) jeep: Sacrifice G1 Fan\nBuild B1 Jeep\n\n51) sketchwick: Attack B1 Jeep\n\n52) jeep: Sacrifice G2 Sketchwick\nBuild B2 Jeep\nBuild B2 Jeep\n\n53) sketchwick: Pass\nCatastrophe Jeep Blue\n\n\nHomeworlds Online (SDG# 1022)\nVariants: &quot;Left man down&quot;\nStarted: 2005.10.19, Ended: 2005.11.23\nParticipants: mtgrocks04 (S), MatrixFrog (N), ayahoo (E)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 B3 Y3\n\n2) ayahoo: Homeworld G1 B3 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tMatrixFrog: Okay... maybe one or two more days, then that&#39;s it.\n\trootbeer: It looks to me as if it&#39;s too easy for a new player to sign up for a game without realizing what they&#39;re doing. If they&#39;re new and not invested in the site, they just don&#39;t bother coming back.\n\trootbeer: It&#39;s been five days since mtgrocks04 has been seen on the site.\r\n\n\tMatrixFrog: True.\n\n\tSYSTEM: ayahoo resigns.\n\nHomeworlds Online (SDG# 1048)\nStarted: 2005.10.19, Ended: 2005.10.28\nParticipants: TwoShort (S), lambda (N)\nWinner: lambda\n\n1) lambda: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld B3 Y2 G3\n\tlambda: Hello! I look forward to playing with you. Good luck, and have fun. \n\n3) lambda: Build Y1 Lambda\n\tTwoShort: Good luck to you too.\n\n4) TwoShort: Build G1 Twoshort\n\n5) lambda: Build Y1 Lambda\n\n6) TwoShort: Discover G1 Twoshort Y1 Jed\n\n7) lambda: Discover Y1 Lambda G3 Mirach\n\n8) TwoShort: Build G1 Twoshort\n\n9) lambda: Build Y2 Lambda\n\n10) TwoShort: Build G1 Jed\n\n11) lambda: Trade Y2 G2 Lambda\n\n12) TwoShort: Discover G1 Jed Y3 Cake\n\n13) lambda: Discover G2 Lambda Y3 Arcturus\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Cake\nBuild G3 Jed\nBuild G3 Twoshort\n\n15) lambda: Build Y2 Mirach\n\n16) TwoShort: Discover G1 Jed B3 Bluestar\n\n17) lambda: Trade Y1 B1 Lambda\n\n18) TwoShort: Trade G1 Y1 Bluestar\n\n19) lambda: Build G1 Arcturus\n\n20) TwoShort: Sacrifice G2 Cake\nBuild G2 Jed\nBuild Y2 Bluestar\n\n21) lambda: Discover G1 Arcturus B1 Mira\n\n22) TwoShort: Trade Y2 B2 Bluestar\n\n23) lambda: Sacrifice Y3 Lambda\nMove G2 Arcturus Mira\nMove G2 Mira Twoshort\nMove G1 Mira Twoshort\nCatastrophe Twoshort Green\n\n\nHomeworlds Online (SDG# 1050)\nStarted: 2005.10.19, Ended: 2005.10.21\nParticipants: tendrecube (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) tendrecube: Homeworld G3 B1 Y3\n\ttendrecube: homeworld G3 B1 Y3\r\n\n\ttendrecube: homeworldG3B1Y3\n\n3) TwoShort: Build G1 Twoshort\n\ttendrecube: oops sorry first time online and needed some try and miss to figure out.......duh\r\nhere goes\r\n\n\n4) tendrecube: Build Y1 Tendrecube\n\tTwoShort: No problem.  I do that myself pretty regularly; you&#39;re looking at the board, and there&#39;s the edit box right there...\n\n5) TwoShort: Build G1 Twoshort\n\n6) tendrecube: Trade Y1 B1 Tendrecube\n\n7) TwoShort: Discover G1 Twoshort Y3 Jed\n\n8) tendrecube: Discover B1 Tendrecube G2 Alias\n\n9) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n10) tendrecube: Build B1 Alias\n\n11) TwoShort: Build G1 Twoshort\n\n12) tendrecube: Build B2 Alias\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G2 Jed\nBuild G3 Twoshort\n\n14) tendrecube: Trade B2 R2 Alias\n\n15) TwoShort: Trade G2 R2 Bluestar\n\n16) tendrecube: Build B2 Alias\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Jed\nBuild G3 Twoshort\n\n18) tendrecube: Build R1 Alias\n\n19) TwoShort: Move G3 Jed Alias\n\n20) tendrecube: Trade Y3 R3 Tendrecube\n\n21) TwoShort: Sacrifice R2 Bluestar\nAttack R2S Alias\nAttack B2S Alias\n\n22) tendrecube: Build R1 Tendrecube\n\n23) TwoShort: Trade B2 Y2 Alias\n\n24) tendrecube: Trade R1 Y1 Tendrecube\n\n25) TwoShort: Discover G2 Jed Y2 Yoyo\n\n26) tendrecube: Move R3 Tendrecube Alias\n\n27) TwoShort: Sacrifice Y2 Alias\nMove G3 Alias Tendrecube\nMove R2 Alias Tendrecube\n\n28) tendrecube: Build Y1 Tendrecube\n\n29) TwoShort: Sacrifice R2 Tendrecube\nAttack Y1S Tendrecube\nAttack Y1S Tendrecube\n\n\nHomeworlds Online (SDG# 1060)\nStarted: 2005.10.20, Ended: 2005.10.20\nParticipants: BruceVencill (S), mikepler (N)\nWinner: BruceVencill\n\n\tSYSTEM: mikepler resigns.\n\nHomeworlds Online (SDG# 1043)\nStarted: 2005.10.20, Ended: 2005.11.5\nParticipants: cobalt (S), jeremiah (N)\nWinner: cobalt\n\n1) jeremiah: Homeworld Y2 B1 G3\n\n2) cobalt: Homeworld G3 B2 Y3\n\n3) jeremiah: Build G1 Jeremiah\n\n4) cobalt: Build Y1 Cobalt\n\n5) jeremiah: Build G1 Jeremiah\n\n6) cobalt: Trade Y1 G1 Cobalt\n\n7) jeremiah: Trade G1 B1 Jeremiah\n\n8) cobalt: Build G1 Cobalt\n\n9) jeremiah: Build G2 Jeremiah\n\n10) cobalt: Sacrifice Y3 Cobalt\nDiscover G1 Cobalt Y1 Jump1\nDiscover G1 Jump1 Y3 Jump2\nMove G1 Jump2 Jeremiah\nCatastrophe Jeremiah G\n\n11) jeremiah: Trade B1 G1 Jeremiah\n\n12) cobalt: Trade G1 Y1 Cobalt\n\n13) jeremiah: Build G1 Jeremiah\n\n14) cobalt: Build Y1 Cobalt\n\n15) jeremiah: Trade G1 R1 Jeremiah\n\n16) cobalt: Build Y1 Cobalt\n\n17) jeremiah: Build G1 Jeremiah\n\n18) cobalt: Discover Y1 Cobalt G1 Framauro\n\n19) jeremiah: Build G2 Jeremiah\n\n20) cobalt: Build Y2 Cobalt\n\n21) jeremiah: Discover G1 Jeremiah Y3 Antihistamine\n\n22) cobalt: Trade Y2 G2 Cobalt\n\n23) jeremiah: Trade G2 Y2 Jeremiah\n\n24) cobalt: Trade Y1 R1 Cobalt\n\n25) jeremiah: Build G2 Antihistamine\n\tjeremiah: construct g2 antihistamine\n\n26) cobalt: Discover Y1 Framauro G3 Arglebargle\n\n27) jeremiah: Discover G1 Antihistamine Y1 Betablocker\n\tjeremiah: discover g1 antihistamine y1 betablocker\n\n28) cobalt: Trade G2 Y2 Cobalt\n\tjeremiah: I have to remember that it&#39;s the other box.  Yeesh.  That&#39;s twice now\n\n29) jeremiah: Move Y2 Jeremiah Antihistamine\n\tjeremiah: move y2 jeremiah antihistamine\n\n30) cobalt: Build Y3 Arglebargle\n\tcobalt: thrice :P\n\n31) jeremiah: Build Y3 Antihistamine\n\n32) cobalt: Sacrifice Y2 Cobalt\nMove Y1 Arglebargle Jeremiah\nMove Y1 Jeremiah Antihistamine\nCatastrophe Antihistamine Y\n\tjeremiah: I&#39;m pretty sure I know what your next move is, but maybe you&#39;ve got something else in mind.\n\n33) jeremiah: Build G1 Jeremiah\n\tcobalt: was that what you had in mind?\n\tjeremiah: yep\n\tjeremiah: construct g1 jeremiah\n\n34) cobalt: Build Y1 Cobalt\n\tjeremiah: sigh... did it again.  Good thing you can&#39;t gain anything by it.\n\n35) jeremiah: Build G2 Betablocker\n\n36) cobalt: Move Y3 Arglebargle Jeremiah\n\n37) jeremiah: Build G2 Betablocker\n\n38) cobalt: Sacrifice R1 Cobalt\nAttack R1 Jeremiah\n\n\tjeremiah: hmmm.... should&#39;ve built red and forced a catastrope in a turn or two\n\tjeremiah: and I can&#39;t get things done quick enough in your homeworld...  \r\n\n\tSYSTEM: jeremiah resigns.\n\nHomeworlds Online (SDG# 1042)\nStarted: 2005.10.21, Ended: 2005.11.7\nParticipants: JunkMan (S), cobalt (N)\nWinner: JunkMan\n\n1) cobalt: Homeworld G1 B2 Y3\n\n2) JunkMan: Homeworld G2 B3 Y3\n\n3) cobalt: Build Y1 Cobalt\n\n4) JunkMan: Build Y1 Junkman\n\n5) cobalt: Build Y1 Cobalt\n\n6) JunkMan: Trade Y1 G1 Junkman\n\n7) cobalt: Trade Y1 G1 Cobalt\n\n8) JunkMan: Build Y1 Junkman\n\n9) cobalt: Discover Y1 Cobalt G3 Saratoga\n\n10) JunkMan: Build G2 Junkman\n\n11) cobalt: Build Y1 Cobalt\n\n12) JunkMan: Trade G1 R1 Junkman\n\n13) cobalt: Trade Y1 R1 Cobalt\n\n14) JunkMan: Discover Y1 Junkman G1 Kite\n\n15) cobalt: Move Y1 Saratoga Kite\n\n16) JunkMan: Sacrifice R1 Junkman\nAttack Y1N Kite\n\n17) cobalt: Build G2 Cobalt\n\n18) JunkMan: Discover G2 Junkman B1 Eden\n\n19) cobalt: Build Y1 Cobalt\n\n20) JunkMan: Build G3 Eden\n\n21) cobalt: Sacrifice Y3 Cobalt\nDiscover Y1 Cobalt R3 Jump\nDiscover Y1 Jump R1 Leap\nMove Y1 Leap Junkman\n\n22) JunkMan: Sacrifice Y1 Kite\nMove G2 Eden Junkman\n\n23) cobalt: Build Y1 Junkman\n\n24) JunkMan: Trade Y3 R3 Junkman\n\n25) cobalt: Trade G2 Y2 Cobalt\n\n26) JunkMan: Build Y2 Kite\n\n27) cobalt: Build Y2 Cobalt\n\n28) JunkMan: Sacrifice Y2 Kite\nDiscover G3 Eden Y3 Frogger\nMove G3 Frogger Cobalt\n\n29) cobalt: Build G2 Cobalt\n\n30) JunkMan: Trade G3 B3 Cobalt\n\n31) cobalt: Sacrifice G2 Cobalt\nBuild Y2 Junkman\nBuild Y3 Cobalt\n\n32) JunkMan: Sacrifice R3 Junkman\nAttack R1N Cobalt\nAttack Y3N Cobalt\nAttack G1N Cobalt\n\n33) cobalt: Trade Y2 B2 Cobalt\n\n34) JunkMan: Trade B3 R3 Cobalt\n\n\tcobalt: drat\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1065)\nStarted: 2005.10.23, Ended: 2005.10.27\nParticipants: TwoShort (S), tendrecube (N)\nWinner: TwoShort\n\n1) tendrecube: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld B2 Y1 G3\n\n3) tendrecube: Build Y1 Tendrecube\n\n4) TwoShort: Build G1 Twoshort\n\n5) tendrecube: Trade Y1 B1 Tendrecube\n\n6) TwoShort: Build G1 Twoshort\n\n7) tendrecube: Discover B1 Tendrecube Y1 Alias\n\n8) TwoShort: Discover G1 Twoshort Y3 Jed\n\n9) tendrecube: Build Y1 Tendrecube\n\n10) TwoShort: Build G1 Twoshort\n\n11) tendrecube: Trade Y3 R3 Tendrecube\n\n12) TwoShort: Discover G1 Twoshort Y3 Jethro\n\n13) tendrecube: Build Y2 Tendrecube\n\n14) TwoShort: Build G2 Twoshort\n\n15) tendrecube: Build Y2 Tendrecube\n\n16) TwoShort: Discover G2 Twoshort B3 Bluestar\n\n17) tendrecube: Sacrifice Y2 Tendrecube\nMove R3 Tendrecube Alias\nMove R3 Alias Bluestar\n\n18) TwoShort: Trade G1 R1 Twoshort\n\n19) tendrecube: Attack G2 Bluestar\n\n20) TwoShort: Build G1 Twoshort\n\n21) tendrecube: Sacrifice Y1 Tendrecube\nMove R3 Bluestar Twoshort\n\n22) TwoShort: Attack R3N Twoshort\n\n23) tendrecube: Build G2 Bluestar\n\ttendrecube: uh?\r\nI think i missed a rules out there\r\nWas dreaming you wopuldn&#39;t be able to overtake it cause of its size....damn\n\n24) TwoShort: Discover G1 Jed Y1 Stepstone\n\tTwoShort: It&#39;s the size of my largest ship in the suystem that matters, not the size of the red.\n\n25) tendrecube: Build Y2 Tendrecube\n\ttendrecube: Yup..I went readin the rules again..\r\nNot easy to handle at first this game...\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Jethro\nBuild G3 Stepstone\nBuild G3 Twoshort\n\n27) tendrecube: Trade Y2 R2 Tendrecube\n\n28) TwoShort: Move G3 Stepstone Tendrecube\n\ttendrecube: well looks like an ending for me :-(\n\n29) tendrecube: Sacrifice Y2 Tendrecube\nMove G2 Bluestar Twoshort\nMove G2 Bluestar Twoshort\nCatastrophe Twoshort G\n\tTwoShort: Yeah, losing your three point early is pretty much unrecoverable.\n\n30) TwoShort: Sacrifice R1 Twoshort\nAttack R2N Tendrecube\n\ttendrecube: Well we&#39;ll give it a try ;-)\n\tTwoShort: Um, I&#39;m fairly sure it&#39;s irrecoverable...\n\n\nHomeworlds Online (SDG# 1019)\nStarted: 2005.10.23, Ended: 2005.10.23\nParticipants: JunkMan (S), tendrecube (N)\nWinner: JunkMan\n\n1) tendrecube: Homeworld G3 B1 Y3\n\n2) JunkMan: Homeworld B2 G1 Y3\n\n3) tendrecube: Build Y1 Tendrecube\n\n4) JunkMan: Build Y1 Junkman\n\n5) tendrecube: Discover Y1 Tendrecube B2 Alias\n\n6) JunkMan: Trade Y1 G1 Junkman\n\n7) tendrecube: Build Y1 Tendrecube\n\n8) JunkMan: Build Y1 Junkman\n\n9) tendrecube: Build Y2 Tendrecube\n\n10) JunkMan: Sacrifice Y3 Junkman\nDiscover Y1 Junkman B3 Skinny\nDiscover Y1 Skinny B2 Edward\nMove Y1 Edward Tendrecube\nCatastrophe Tendrecube Yellow\n\n\nHomeworlds Online (SDG# 1095)\nStarted: 2005.10.24, Ended: 2005.10.25\nParticipants: MatrixFrog (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\n2) MatrixFrog: Homeworld G2 B3 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) TwoShort: Build Y1 Twoshort\n\n6) MatrixFrog: Build Y2 Matrixfrog\n\n7) TwoShort: Sacrifice Y3 Twoshort\nDiscover Y1 Twoshort R3 Hello\nDiscover Y1 Hello R1 Goodbye\nMove Y1 Goodbye Matrixfrog\nCatastrophe Matrixfrog Yellow\n\tTwoShort: Hmm, winning on an &quot;oops&quot; is unsatisfying.  But I can&#39;t bring myself to not do it.  Play again?\n\n\nHomeworlds Online (SDG# 1044)\nStarted: 2005.10.24, Ended: 2005.11.27\nParticipants: cobalt (S), Busch (W), JunkMan (N), GregF (E)\nWinner: JunkMan\n\n1) JunkMan: Homeworld B1 G2 Y3\n\n2) GregF: Homeworld B3 Y1 G3\n\n3) cobalt: Homeworld B1 G2 Y3\n\tGregF: Hello.\n\n4) Busch: Homeworld G3 B2 Y3\n\tBusch: Hi. Good luck everyone\n\n5) JunkMan: Build Y1 Junkman\n\n6) GregF: Build G1 Gregf\n\n7) cobalt: Build Y1 Cobalt\n\n8) Busch: Build Y1 Busch\n\tBusch: Errr. Where can I see my alignment?\n\n9) JunkMan: Trade Y1 G1 Junkman\n\n10) GregF: Trade G1 Y1 Gregf\n\tGregF: There is no alignment; the last player remaining wins.\n\n11) cobalt: Build Y1 Cobalt\n\tBusch: Ah. I just read the rules on the Looney Labs site. I hadn&#39;t realized this was a variant.\n\n12) Busch: Build Y2 Busch\n\n13) JunkMan: Build Y2 Junkman\n\n14) GregF: Build Y2 Gregf\n\n15) cobalt: Trade Y1 G1 Cobalt\n\tcobalt: dang, I suddenly wish this was left-man-down\n\tcobalt: dang, I suddenly wish this was left-man-down\n\n16) Busch: Trade Y2 G2 Busch\n\tBusch: Why?\n\n17) JunkMan: Trade Y2 R2 Junkman\n\n18) GregF: Trade Y2 R2 Gregf\n\n19) cobalt: Trade Y1 R1 Cobalt\n\tcobalt: because you&#39;re to my left, and I could have eliminated you last turn.\n\n20) Busch: Build G1 Busch\n\n21) JunkMan: Build Y1 Junkman\n\tBusch: I obviously still have a lot to learn about this game\n\n22) GregF: Build G1 Gregf\n\n23) cobalt: Build Y1 Cobalt\n\n24) Busch: Build Y2 Busch\n\n25) JunkMan: Trade Y1 B1 Junkman\n\n26) GregF: Trade G1 B1 Gregf\n\n27) cobalt: Build R1 Cobalt\n\n28) Busch: Trade G2 R2 Busch\n\n29) JunkMan: Build R1 Junkman\n\n30) GregF: Trade R2 Y2 Gregf\n\n31) cobalt: Discover Y3 Cobalt G3 Duck\n\n32) Busch: Discover Y2 Busch G1 Sirius\n\n33) JunkMan: Build Y1 Junkman\n\n34) GregF: Discover Y2 Gregf Y2 Vega\n\n35) cobalt: Build Y2 Cobalt\n\tGregF: All right, I&#39;ve pretty much decided that I have no idea what I&#39;m doing in this game.\n\n36) Busch: Trade Y3 R3 Busch\n\n37) JunkMan: Discover Y1 Junkman G3 Phi\n\n38) GregF: Build G1 Gregf\n\n39) cobalt: Sacrifice Y2 Cobalt\nDiscover Y3 Duck Y2 Goose\nMove Y3 Goose Gregf\n\n40) Busch: Build G2 Busch\n\n41) JunkMan: Build Y2 Phi\n\n42) GregF: Discover Y1 Gregf R2 Trial\n\tGregF: I&#39;m very tempted to just blow myself up and get it over with.\n\n43) cobalt: Sacrifice R1 Cobalt\nAttack G3E Gregf\n\n44) Busch: Move G2 Busch Sirius\n\n45) JunkMan: Move Y1 Phi Junkman\n\n46) GregF: Move Y2 Vega Gregf\n\tGregF: Hm, I was under the impression that you could only attack a piece smaller than the attacking piece. This really isn&#39;t worth fighting.\n\tGregF: Oh, right, you can&#39;t kill yourself.\n\n47) cobalt: Sacrifice G3 Gregf\nBuild Y2 Gregf\nBuild Y2 Gregf\nBuild Y3 Cobalt\n\n48) Busch: Build Y3 Sirius\n\n49) JunkMan: Build Y3 Phi\nCatastrophe Gregf Yellow\n\n50) GregF: Build G2 Gregf\n\n51) cobalt: Move Y1 Cobalt Phi\n\n52) Busch: Move Y2 Sirius Phi\n\tcobalt: Busch might consider it to his advantage to move a yellow ship into the Phi system and trigger a catastrophe.\n\n53) JunkMan: Move Y3 Phi Trial\n\tBusch: Arghhh. I forgot to type in the most important part of my orders and there is no undo.\n\n54) GregF: Trade G2 Y2 Gregf\n\n55) cobalt: Discover G1 Cobalt Y3 Pocket\n\tGregF: Am I just going to be all but ignored now because I have basically no chance at winning?\n\n56) Busch: Move R3 Busch Sirius\n\n57) JunkMan: Discover Y3 Trial R1 Sol\n\n58) GregF: Build G2 Gregf\n\n59) cobalt: Build G2 Pocket\n\tcobalt: Maybe, but I for one wouldn&#39;t rule out your capability to cause havoc, especially since now your system is only one movement away from both mine and JunkMan&#39;s homeworlds\n\n60) Busch: Move R3 Sirius Phi\n\n61) JunkMan: Sacrifice B1 Junkman\nTrade Y3 G3 Sol\n\n62) GregF: Sacrifice G2 Gregf\nBuild Y1 Trial\nBuild Y2 Gregf\n\n63) cobalt: Sacrifice G2 Pocket\nBuild Y2 Phi\nBuild Y3 Cobalt\nCatastrophe Phi Y\n\n64) Busch: Move G2 Sirius Pocket\n\n65) JunkMan: Build G2 Sol\n\n66) GregF: Discover Y2 Gregf Y2 Vesta\n\n67) JunkMan: Discover Y1 Junkman G3 Beta\n\tGregF: I guess calling a yellow star Vesta kind of defeats the purpose.\n\n68) GregF: Build G2 Gregf\n\tSYSTEM: cobalt resigns.\n\n69) Busch: Move Y3 Sirius Phi\n\n70) JunkMan: Sacrifice Y1 Beta\nMove G2 Sol Gregf\n\n71) GregF: Trade G2 R2 Gregf\n\n72) Busch: Move R3 Phi Vesta\n\n73) JunkMan: Sacrifice R1 Junkman\nAttack R2E Gregf\n\n74) GregF: Build Y1 Gregf\n\n75) Busch: Attack Y2E Vesta\n\tGregF: Is there really I can do to defend myself in this scenario?\n\n76) JunkMan: Attack Y2E Gregf\n\n77) GregF: Move Y1 Trial Gregf\n\tBusch: It lokks quite unlikely now\n\n78) Busch: Sacrifice Y2 Vesta\nMove R3 Vesta Pocket\nMove R3 Pocket Junkman\n\tGregF: What could I have done better/differently?\n\n79) JunkMan: Attack R3W Junkman\n\n80) GregF: Move Y1 Trial Gregf\nCatastrophe Gregf Y\n\tBusch: This is my first game ... I have no idea\n\n81) Busch: Discover Y3 Phi B1 Espresso\n\n82) JunkMan: Move R3 Junkman Pocket\n\n83) GregF: Sacrifice B1 Gregf\nTrade G1 R1 Gregf\n\n84) Busch: Move G2 Pocket Cobalt\n\n85) JunkMan: Move R3 Pocket Cobalt\n\n86) GregF: Trade R1 G1 Gregf\n\n87) Busch: Trade G2 Y2 Cobalt\n\n88) JunkMan: Attack Y2W Cobalt\n\n89) GregF: Build G1 Gregf\n\n90) Busch: Move Y3 Espresso Busch\n\n91) JunkMan: Build G2 Gregf\nCatastrophe Gregf Green\n\n92) Busch: Trade Y3 R3 Busch\n\n93) JunkMan: Attack Y3S Cobalt\n\n94) Busch: Build G1 Busch\n\n95) JunkMan: Sacrifice Y2 Cobalt\nMove R2 Gregf Sol\nMove G3 Sol Busch\nCatastrophe Busch Green\n\n96) Busch: Move R2 Busch Pocket\n\n97) JunkMan: Attack Y3S Cobalt\n\n98) Busch: Attack G1S Pocket\n\n99) JunkMan: Build Y1 Junkman\n\tBusch: Have I got any chance here or should I just concede?\n\n\tSYSTEM: Busch resigns.\n\nHomeworlds Online (SDG# 1091)\nStarted: 2005.10.24, Ended: 2005.10.27\nParticipants: JunkMan (S), Bartholow (N)\nWinner: JunkMan\n\n1) Bartholow: Homeworld B1 G3 R3\n\n2) JunkMan: Homeworld G1 B2 Y3\n\n3) Bartholow: Build R1 Bartholow\n\tBartholow: yep I sure do suck\n\n4) JunkMan: Build Y1 Junkman\n\n5) Bartholow: Trade R1 Y1 Bartholow\n\n6) JunkMan: Build Y1 Junkman\n\n7) Bartholow: Discover Y1 Bartholow R2 Nonemoreblack\n\n8) JunkMan: Trade Y1 R1 Junkman\n\n9) Bartholow: Discover Y1 Nonemoreblack G1 Propagandhi\n\n10) JunkMan: Trade Y1 G1 Junkman\n\n11) Bartholow: Build Y1 Propagandhi\n\n12) JunkMan: Build G2 Junkman\n\n13) Bartholow: Build R1 Bartholow\n\n14) JunkMan: Trade G1 B1 Junkman\n\n15) Bartholow: Build R1 Bartholow\n\n16) JunkMan: Sacrifice Y3 Junkman\nDiscover R1 Junkman B3 Lampshade\nDiscover R1 Lampshade B2 Pluto\nMove R1 Pluto Bartholow\nCatastrophe Bartholow Red\n\n\nHomeworlds Online (SDG# 1097)\nStarted: 2005.10.25, Ended: 2005.10.29\nParticipants: TwoShort (S), MatrixFrog (N)\nWinner: TwoShort\n\n1) MatrixFrog: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) TwoShort: Build G1 Twoshort\n\n5) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n6) TwoShort: Build G2 Twoshort\n\n7) MatrixFrog: Build G2 Matrixfrog\n\n8) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n9) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y1 Matrixfrog\nBuild G2 Matrixfrog\n\n10) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n11) MatrixFrog: Sacrifice Y3 Matrixfrog\nDiscover G1 Matrixfrog R3 Xx\nMove G1 Xx Yolonda\nDiscover Y1 Matrixfrog G3 Blanket\n\n12) TwoShort: Catastrophe Yolonda Green\nBuild G1 Twoshort\n\tMatrixFrog: Damn! I hate when that happens. I obviously missed a line...\n\n13) MatrixFrog: Build G1 Matrixfrog\n\tTwoShort: Ha! I thought that bug might be there; thanks for the chance to test it :) \n\tTwoShort: Which is to say, I should not have been able to grow that green; but in this case the bug lets me fix your mistake, and make the move I would have anyway.\n\tMatrixFrog: Ah, very nice. Thank you.\n\n14) TwoShort: Discover G2 Twoshort Y2 Yoyo\n\n15) MatrixFrog: Build Y1 Blanket\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yoyo\nBuild G3 Twoshort\nBuild G3 Yoyo\n\n17) MatrixFrog: Trade G2 Y2 Matrixfrog\n\n18) TwoShort: Discover G3 Yoyo Y3 Yolonda\n\n19) MatrixFrog: Trade G1 R1 Matrixfrog\n\n20) TwoShort: Move G3 Yolonda Matrixfrog\n\n21) MatrixFrog: Build Y2 Matrixfrog\n\n22) TwoShort: Trade G3 R3 Twoshort\n\n23) MatrixFrog: Build Y3 Matrixfrog\n\n24) TwoShort: Sacrifice R3 Twoshort\nAttack Y3 Matrixfrog\nAttack R1 Matrixfrog\nAttack Y2 Matrixfrog\n\n25) MatrixFrog: Trade Y2 G2 Matrixfrog\n\tMatrixFrog: Um. Okay then. Good game.\n\n26) TwoShort: Attack G2N Matrixfrog\n\tTwoShort: Good game\r\n\n\n\nHomeworlds Online (SDG# 1100)\nStarted: 2005.10.25, Ended: 2005.11.20\nParticipants: andylooney (S), tendrecube (N)\nWinner: andylooney\n\n1) tendrecube: Homeworld G3 B1 Y3\n\n2) andylooney: Homeworld B1 G2 Y3\n\ttendrecube: Hello Andy...Not so far of some places you like on this planet....Brussels here...\r\n\n\n3) tendrecube: Build Y1 Tendrecube\n\n4) andylooney: Build Y1 Andylooney\n\n5) tendrecube: Trade Y1 G1 Tendrecube\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) tendrecube: Build Y1 Tendrecube\n\n8) andylooney: Discover G1 Andylooney Y3 Clampett\n\n9) tendrecube: Discover Y1 Tendrecube G2 Alias\n\n10) andylooney: Build Y1 Andylooney\n\n11) tendrecube: Discover Y1 Alias G3 Mythril\n\n12) andylooney: Discover Y1 Andylooney G3 Garden\n\n13) tendrecube: Discover G1 Tendrecube Y2 Atomium\n\n14) andylooney: Build Y1 Andylooney\n\tandylooney: great system name! I made a point of visiting the Atomium when I was in Europe in 2003!\n\n15) tendrecube: Build Y2 Mythril\n\n16) andylooney: Build Y2 Garden\n\ttendrecube: part of the strategy..lol\r\ncatch your eye with great system name to blind you \r\n;-)\n\n17) tendrecube: Move G1 Atomium Tendrecube\n\n18) andylooney: Trade Y1 R1 Andylooney\n\n19) tendrecube: Build G1 Tendrecube\n\n20) andylooney: Build G2 Clampett\n\ttendrecube: ooops i don&#39;t think that was a good idea\n\n21) tendrecube: Trade G1 R1 Tendrecube\n\n22) andylooney: Discover Y1 Garden G2 Oasis\n\n23) tendrecube: Discover G1 Tendrecube B2 Atomium\n\n24) andylooney: Discover G1 Clampett Y2 Plugh\n\n25) tendrecube: Build G1 Atomium\n\n26) andylooney: Build Y1 Garden\n\n27) tendrecube: Discover Y2 Mythril B2 Alias\n\n28) andylooney: Sacrifice G2 Clampett\nBuild G2 Plugh\nBuild Y3 Oasis\n\n29) tendrecube: Trade Y2 R2 Alias\n\n30) andylooney: Build Y2 Andylooney\n\ttendrecube: sorryu for the delay....\r\nWas in paris for a few days\n\tandylooney: Paris, eh? Sounds like you were there at an &quot;interesting&quot; time!\n\n31) tendrecube: Build R1 Tendrecube\n\n32) andylooney: Build R2 Andylooney\n\n33) tendrecube: Move R1 Tendrecube Oasis\n\n34) andylooney: Sacrifice R1 Andylooney\nAttack R1N Oasis\n\n35) tendrecube: Sacrifice Y3 Tendrecube\nMove R2 Alias Mythril\nMove R2 Mythril Andylooney\nMove Y1 Mythril Andylooney\n\n36) andylooney: Trade Y3 G3 Andylooney\n\n37) tendrecube: Build Y3 Andylooney\n\n38) andylooney: Sacrifice Y2 Garden\nMove Y1 Garden Andylooney\nMove Y3 Oasis Tendrecube\nCatastrophe Andylooney Yellow\n\n39) tendrecube: Trade R2 Y2 Andylooney\n\n40) andylooney: Sacrifice R2 Andylooney\nAttack Y2 Andylooney\nAttack R1N Tendrecube\n\tandylooney: Thanks for the game!\n\n\nHomeworlds Online (SDG# 1107)\nStarted: 2005.10.26, Ended: 2005.11.6\nParticipants: Jesse (S), TwoShort (N)\nWinner: Jesse\n\n1) TwoShort: Homeworld Y2 B1 G3\n\tJesse: Aloha!  Ready for another go?\n\n2) Jesse: Homeworld B3 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Jesse: Build G1 Jesse\n\tTwoShort: Howdy...  I&#39;m looking forward to playing you again.  \n\n5) TwoShort: Discover G1 Twoshort Y3 Yak\n\tJesse: Then by all means, let us play!\n\n6) Jesse: Discover G1 Jesse B2 Ork\n\n7) TwoShort: Build G1 Twoshort\n\n8) Jesse: Build G2 Ork\n\n9) TwoShort: Build G2 Yak\n\n10) Jesse: Trade G1 Y1 Ork\n\n11) TwoShort: Discover G1 Yak B2 Bluestar\n\n12) Jesse: Build Y1 Ork\n\n13) TwoShort: Build G1 Bluestar\n\n14) Jesse: Build G2 Jesse\n\n15) TwoShort: Build G3 Yak\n\tJesse: I&#39;m not exactly off to a great start, here...\n\n16) Jesse: Move Y1 Ork Jesse\n\n17) TwoShort: Discover G2 Yak Y2 Yolonda\n\n18) Jesse: Sacrifice G3 Jesse\nBuild G3 Ork\nBuild Y2 Ork\nBuild Y3 Jesse\n\n19) TwoShort: Trade G3 R3 Twoshort\n\n20) Jesse: Trade Y3 R3 Jesse\n\tTwoShort: Well, I WAS off to a great start...\n\n21) TwoShort: Sacrifice G3 Yak\nBuild G3 Twoshort\nBuild R1 Twoshort\nBuild G3 Yolonda\n\n22) Jesse: Sacrifice G3 Ork\nBuild G3 Ork\nBuild Y3 Ork\nBuild R1 Jesse\n\n23) TwoShort: Discover G3 Yolonda B3 Brother\n\n24) Jesse: Sacrifice Y2 Ork\nDiscover Y3 Ork Y3 Mustard\nDiscover G3 Ork Y3 Snow\n\n25) TwoShort: Trade G1 B1 Bluestar\n\n26) Jesse: Build Y2 Ork\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluestar\nBuild B1 Bluestar\nBuild G3 Twoshort\n\n28) Jesse: Sacrifice G3 Snow\nBuild G3 Ork\nBuild Y3 Ork\nBuild R1 Jesse\n\n29) TwoShort: Sacrifice B1 Bluestar\nTrade G2 B2 Yolonda\n\n30) Jesse: Sacrifice Y2 Ork\nDiscover Y3 Ork B3 Babe\nMove R3 Jesse Yolonda\n\n31) TwoShort: Move B2 Yolonda Brother\n\n32) Jesse: Sacrifice G3 Ork\nBuild G2 Jesse\nBuild G3 Ork\nBuild Y2 Babe\n\n33) TwoShort: Trade G1 B1 Twoshort\n\n34) Jesse: Move Y2 Babe Bluestar\n\tTwoShort: Hmmm, I do beleive you have won.  Quite the frustrating way to be doomed.\n\n35) TwoShort: Sacrifice B2 Brother\nTrade R1 G1 Twoshort\nPass\n\tJesse: It is really rough to be frozen out of yellow.\n\n36) Jesse: Trade G2 B2 Jesse\n\n37) TwoShort: Sacrifice B1 Bluestar\nTrade G1 B1 Twoshort\n\n38) Jesse: Sacrifice G3 Ork\nBuild G1 Jesse\nBuild G2 Ork\nBuild G3 Ork\n\n39) TwoShort: Sacrifice G3 Brother\nBuild G3 Twoshort\nBuild B3 Twoshort\nBuild R1 Twoshort\nCatastrophe Twoshort Blue\n\tTwoShort: Well, it&#39;s probably a bad idea, but at least it&#39;s an idea...\n\n40) Jesse: Move Y1 Ork Babe\n\tJesse: Huh.  Actually, I was thinking about that possibility for you the other day, but not just now.  Now, let&#39;s see...\n\n\tJesse: Yeah, it&#39;s no good.  You can&#39;t stop me from blasting you next turn.  Thanks for a good game!  You&#39;ve been very creative under the pressure of lockdown.\n\tSYSTEM: TwoShort resigns.\n\nHomeworlds Online (SDG# 1118)\nStarted: 2005.10.27, Ended: 2005.11.3\nParticipants: Evilaxe (S), Kermit (N)\nWinner: Evilaxe\n\n1) Kermit: Homeworld B1 G2 Y3\n\n2) Evilaxe: Homeworld B1 G3 Y3\n\n3) Kermit: Build Y1 Kermit\n\n4) Evilaxe: Build Y1 Evilaxe\n\tEvilaxe: build y1 evilaxe\n\n5) Kermit: Trade Y1 G1 Kermit\n\tEvilaxe: D&#39;oh\n\n6) Evilaxe: Trade Y1 R1 Evilaxe\n\n7) Kermit: Discover G1 Kermit B3 Fozzie\n\n8) Evilaxe: Build Y1 Evilaxe\n\n9) Kermit: Build G1 Fozzie\n\n10) Evilaxe: Trade Y1 G1 Evilaxe\n\tEvilaxe: trade y1 g1 evilaxe\n\tEvilaxe: I am a moron\n\n11) Kermit: Trade G1 Y1 Fozzie\n\n12) Evilaxe: Discover G1 Evilaxe B2 Coffee\n\n13) Kermit: Build Y1 Fozzie\n\n14) Evilaxe: Build R1 Evilaxe\n\n15) Kermit: Trade Y1 R1 Fozzie\n\n16) Evilaxe: Trade R1 B1 Evilaxe\n\n17) Kermit: Move R1 Fozzie Coffee\n\n18) Evilaxe: Sacrifice R1 Evilaxe\nAttack R1 Coffee\n\n19) Kermit: Build Y1 Fozzie\n\n20) Evilaxe: Build B2 Evilaxe\n\n21) Kermit: Trade Y1 R1 Fozzie\n\n22) Evilaxe: Discover B2 Evilaxe G2 New_wiltshire\n\n23) Kermit: Discover G1 Fozzie Y1 Squeezel\n\n24) Evilaxe: Build B2 New_wiltshire\n\n25) Kermit: Build Y1 Kermit\n\n26) Evilaxe: Build B3 New_wiltshire\n\n27) Kermit: Move G1 Squeezel Fozzie\n\n28) Evilaxe: Build B3 Evilaxe\n\tEvilaxe: b b3 evilaxe\n\n29) Kermit: Trade Y1 G1 Kermit\n\n30) Evilaxe: Trade B2 R2 New_wiltshire\n\n31) Kermit: Trade Y3 R3 Kermit\n\n32) Evilaxe: Trade B2 Y2 New_wiltshire\n\n33) Kermit: Build G2 Kermit\n\n34) Evilaxe: Build G3 Coffee\n\n35) Kermit: Build G3 Fozzie\n\n36) Evilaxe: Sacrifice Y2 New_wiltshire\nMove G1 Coffee Fozzie\nMove G1 Fozzie Kermit\nCatastrophe Kermit G\n\n\tSYSTEM: Kermit resigns.\n\nHomeworlds Online (SDG# 1129)\nStarted: 2005.10.27, Ended: 2005.11.3\nParticipants: sketchwick (S), jeep (N)\nWinner: sketchwick\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) sketchwick: Homeworld B3 Y1 G3\n\n3) jeep: Build Y1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade Y1 G1 Jeep\n\n6) sketchwick: Trade G1 R1 Sketchwick\n\n7) jeep: Build G1 Jeep\n\n8) sketchwick: Build G2 Sketchwick\n\n9) jeep: Discover G1 Jeep Y3 Submarine\n\n10) sketchwick: Discover R1 Sketchwick Y2 Sandwich\n\n11) jeep: Build G2 Jeep\n\n12) sketchwick: Move R1 Sandwich Submarine\n\n13) jeep: Discover G1 Submarine Y2 Sandwich\n\n14) sketchwick: Trade G2 R2 Sketchwick\n\n15) jeep: Trade G2 R2 Jeep\n\n16) sketchwick: Move R1 Submarine Sandwich\n\n17) jeep: Sacrifice G1 Sandwich\nBuild Y1 Jeep\n\n18) sketchwick: Build R1 Sketchwick\n\n19) jeep: Discover R2 Jeep B3 Spread\n\n20) sketchwick: Move G3 Sketchwick Sandwich\n\n21) jeep: Build Y1 Jeep\n\tsketchwick: this feels sketchy...\n\n22) sketchwick: Move G3 Sandwich Spread\n\n23) jeep: Sacrifice Y1 Jeep\nMove R2 Spread Sandwich\n\n24) sketchwick: Move R1 Sandwich Spread\n\n25) jeep: Trade Y1 R1 Jeep\n\n26) sketchwick: Trade R1 G1 Sketchwick\n\n27) jeep: Build G2 Jeep\n\n28) sketchwick: Build G2 Spread\n\n29) jeep: Trade G2 Y2 Jeep\n\n30) sketchwick: Trade G2 Y2 Spread\n\n31) jeep: Discover Y2 Jeep G3 Eagle\n\n32) sketchwick: Build G2 Spread\n\n33) jeep: Build Y1 Eagle\n\n34) sketchwick: Build G2 Sketchwick\n\n35) jeep: Move Y2 Eagle Jeep\n\n36) sketchwick: Discover G2 Sketchwick R2 Rock\n\n37) jeep: Discover G1 Jeep G3 Solid\n\n38) sketchwick: Build G2 Rock\n\n39) jeep: Move R2 Sandwich Eagle\n\n40) sketchwick: Sacrifice G3 Spread\nBuild G3 Spread\nBuild R1 Sketchwick\nBuild R3 Spread\n\tjeep: I feel like I&#39;m at too much of a disadvantage now.  :(\n\tsketchwick: you are crazy I have no clue what I&#39;m doing\n\n41) jeep: Build R3 Eagle\n\n42) sketchwick: Trade R1 B1 Sketchwick\n\n43) jeep: Move R3 Eagle Rock\n\n44) sketchwick: Move R1 Spread Rock\n\n45) jeep: Sacrifice R2 Eagle\nAttack G2 Rock\nAttack G2 Rock\n\n46) sketchwick: Move R3 Spread Rock\nCatastrophe Rock Red\n\n47) jeep: Trade Y2 G2 Jeep\n\n48) sketchwick: Sacrifice G3 Spread\nBuild G2 Spread\nBuild G3 Sketchwick\nBuild R1 Sketchwick\n\n49) jeep: Discover G2 Jeep Y3 Gold\n\n50) sketchwick: Discover R2 Sketchwick Y2 Dancer\n\n51) jeep: Build Y1 Jeep\n\n52) sketchwick: Move R2 Dancer Solid\n\n53) jeep: Sacrifice G1 Solid\nBuild G1 Gold\n\n54) sketchwick: Build Y2 Spread\n\n55) jeep: Trade Y1 B1 Jeep\n\n56) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild Y1 Spread\nBuild R1 Solid\n\n57) jeep: Sacrifice G2 Gold\nBuild Y2 Jeep\nBuild Y3 Eagle\n\n58) sketchwick: Move Y2 Spread Jeep\n\n59) jeep: Trade Y2 R2 Jeep\n\n60) sketchwick: Sacrifice R2 Solid\nAttack R1 Jeep\nAttack R2 Jeep\n\n61) jeep: Sacrifice B1 Jeep\nTrade Y3 R3 Eagle\n\n62) sketchwick: Sacrifice Y2 Jeep\nMove R2 Jeep Spread\nDiscover R1 Jeep B3 Nugget\n\n63) jeep: Build G2 Gold\n\n64) sketchwick: Build R2 Solid\n\n65) jeep: Build Y2 Jeep\n\n66) sketchwick: Sacrifice G3 Sketchwick\nBuild R2 Sketchwick\nBuild R3 Nugget\nBuild R3 Spread\n\n67) jeep: Sacrifice Y2 Jeep\nDiscover R3 Eagle Y2 Temp\nMove R3 Temp Sketchwick\n\n68) sketchwick: Move R3 Spread Jeep\n\n69) jeep: Sacrifice R3 Sketchwick\nAttack R3S Jeep\nPass\nPass\n\n70) sketchwick: Sacrifice G2 Spread\nBuild G2 Sketchwick\nBuild G3 Spread\n\n71) jeep: Discover G2 Gold Y2 Meats\n\n72) sketchwick: Trade R3 Y3 Nugget\n\n73) jeep: Sacrifice Y3 Jeep\nMove G1 Gold Meats\nMove G1 Meats Spread\nMove G2 Meats Spread\nCatastrophe Spread Green\n\n74) sketchwick: Sacrifice Y3 Nugget\nMove R1 Nugget Jeep\nMove R1 Solid Jeep\nMove R2 Solid Jeep\nCatastrophe Jeep Red\n\n\nHomeworlds Online (SDG# 1166)\nStarted: 2005.10.29, Ended: 2005.10.31\nParticipants: andylooney (S), gobleteer (N)\nWinner: andylooney\n\n1) gobleteer: Homeworld Y1 Y1 G3 *\n\tgobleteer: Hello.  It&#39;s an honor to meet you, Emperor.  This is my first homeworlds game, I hope you&#39;ll be patient I exceed time limits.\n\n2) andylooney: Homeworld B1 G2 Y3\n\tandylooney: Greetings! Welcome to the game.\n\n3) gobleteer: Build G1 Gobleteer\n\tgobleteer: Ah!  I have to already control a ship of the same color?\n\n4) andylooney: Build Y1 Andylooney\n\tandylooney: Yup. You also need to read up on how to choose your homeworld. You should have chosen 2 different-colored differently-sized stars, not 2 that match. But it&#39;s OK, you&#39;re learning!\n\n5) gobleteer: Discover G1 Gobleteer B2 Icecube\n\n6) andylooney: Build Y2 Andylooney\n\n7) gobleteer: Build G1 Gobleteer\n\n8) andylooney: Discover Y1 Andylooney G3 Garden\n\n9) gobleteer: Discover G1 Gobleteer Y3 Wild\n\tgobleteer: &quot;andrewlooney is a garden of ice cubes.&quot;  Official quote.\n\n10) andylooney: Build Y2 Garden\n\n\tgobleteer: I conceed.  Sorry for not finishing.  I intend to play some physical games before I proceed further.  Thank you for playing.\n\tSYSTEM: gobleteer resigns.\n\nHomeworlds Online (SDG# 1137)\nStarted: 2005.10.30, Ended: 2005.11.3\nParticipants: Laurie_Menke (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G2 Y1 B3\n\tLaurie_Menke: Hi, TwoShort.  I want to apologize in advance...this is my first game of Homeworlds and I don&#39;t have a clue what I&#39;m doing!  If you&#39;d rather not play with a newbie, let me know and I&#39;ll resign.  Otherwise, I&#39;ll do the best I can to keep you from being bored.  :o)  Thanks!\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\tTwoShort: No problem at all;  I&#39;ll even be happy to give you whatever tips occur to me, let me know if you&#39;d rather I didn&#39;t....\n\tTwoShort: Tip #1: I&#39;m experimanting by starting with a blue ship; I&#39;d typically recommend Green or Yellow.  In any case, you initial system &amp; ship should cover those three colors (you don&#39;t need red until later), and you should use a 3 point for your ship (always), and for one of the system markers (this time, because it&#39;s the size I did&#39;nt use)\n\tLaurie_Menke: Great...thank you so much for your patience and any and all tips!\n\n3) TwoShort: Build B1 Twoshort\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) TwoShort: Build B1 Twoshort\n\n6) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n7) TwoShort: Discover B1 Twoshort Y3 Yellonia\n\tTwoShort: That&#39;s kind of an odd move; You don&#39;t really need Red defensively until I have red and can reach you, and you don&#39;t need it offensively until you can reach me.  But the early game goal is typically to get more pieces; frequently attempting to grab almost all of either green or yellow (or in theory, blue, as I&#39;m trying forbut that&#39;s unusual.)\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Well, my thinking was that this would be my only chance for a while to get an R3, and that you would probably be coming over soon, so I took it.  Now I&#39;m back to building, I think.  As I mentioned before, I have no clue what I&#39;m doing.  But I&#39;m a quick study...I&#39;ll lose horribly this game, but I&#39;ll gain a better understanding of what to do (or not do) next time.  :o)\n\n9) TwoShort: Discover B1 Twoshort G3 Zilla\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\n11) TwoShort: Build B1 Twoshort\n\n12) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n13) TwoShort: Build B2 Zilla\n\n14) Laurie_Menke: Build G1 Laurie_menke\n\n15) TwoShort: Build B2 Twoshort\n\n16) Laurie_Menke: Build Y1 Laurie_menke\n\n17) TwoShort: Trade B2 G2 Twoshort\n\n18) Laurie_Menke: Build Y2 Laurie_menke\n\n19) TwoShort: Sacrifice G2 Twoshort\nBuild B2 Yellonia\nBuild B3 Yellonia\nCatastrophe Laurie_menke Yellow\n\tTwoShort: You didn&#39;t want to do that\r\n\n\n20) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tLaurie_Menke: Argh!  I had been thinking about that problem with greens, but forgot to count my star system for yellows!  Grrrr....  ;o)\n\n21) TwoShort: Trade B3 Y3 Yellonia\n\n22) Laurie_Menke: Discover G1 Laurie_menke Y1 Why_not\n\tTwoShort: And that&#39;s game over... next turn I sacrifice my yellow to move three blues into your system and destroy it.  I&#39;ll be happy to play again though, if you&#39;re up for it.\n\n23) TwoShort: Sacrifice Y3 Yellonia\nMove B2 Yellonia Laurie_menke\nMove B1 Yellonia Laurie_menke\nMove B1 Zilla Laurie_menke\nCatastrophe Laurie_menke Blue\n\n\n\nHomeworlds Online (SDG# 1183)\nStarted: 2005.10.30, Ended: 2005.12.2\nParticipants: Laurie_Menke (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tLaurie_Menke: Hi, Andy...here I stand, a Lab Rabbit who doesn&#39;t know how to play Homeworlds, hoping you&#39;ll have pateince with her while she learns.  If you would rather, I can resign...I know you must be having to play a large number of newbies on SDG.  Just let me know which you would prefer.  Thanks!\n\tandylooney: Hi Laurie! I&#39;m happy to play you! I love the game so much I don&#39;t mind playing newbies... in fact, I&#39;m happy more people are learning this game! \n\n2) Laurie_Menke: Homeworld G3 Y1 B3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: Great!  That&#39;s very kind of you.  :o)  I&#39;ll do my best not to make TOO many stupid moves!  ;o)\n\n5) andylooney: Build Y1 Andylooney\n\n6) Laurie_Menke: Build B1 Laurie_menke\n\n7) andylooney: Trade Y1 G1 Andylooney\n\n8) Laurie_Menke: Trade B3 R3 Laurie_menke\n\n9) andylooney: Trade Y1 R1 Andylooney\n\n10) Laurie_Menke: Build B2 Laurie_menke\n\n11) andylooney: Build Y1 Andylooney\n\n12) Laurie_Menke: Build B2 Laurie_menke\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\tandylooney: OK, I&#39;m going to go easy on you because you&#39;re learning. You have 4 blue pieces in your homeworld. That means I could destroy them all just by typing &quot;Catastrophe Laurie_Menke Blue&quot;. I won&#39;t this time, but I will next time...\n\n14) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\tLaurie_Menke: LOL...well, I&#39;m consistent!  In the other game I&#39;m playing simultaneously, I just lost all my yellows the same way.  Thanks for your kindness.  :o)\n\n15) andylooney: Discover Y1 Andylooney G3 Garden\n\n16) Laurie_Menke: Discover B2 Laurie_menke Y2 Miner49er\n\n17) andylooney: Build R1 Andylooney\n\n18) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: So, Andy...what would be an appropriate goal for me right now in this game...if you don&#39;t mind saying?\n\n19) andylooney: Build Y2 Andylooney\n\n20) Laurie_Menke: Discover Y1 Laurie_menke G2 Growth\n\n21) andylooney: Build Y3 Garden\n\n22) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: LOL....well, a person can try, can&#39;t they?  Alright, I&#39;ll learn the hard way.  ;o)\n\n23) andylooney: Discover R1 Andylooney G3 Paradise\n\n24) Laurie_Menke: Discover R3 Laurie_menke G2 Reforestation\n\n25) andylooney: Build R2 Andylooney\n\tandylooney: Your earlier request for advice was too vague for me to think of a reply to, but I&#39;ll give you a tip now: you should never leave your Homeworld undefended, i.e. without a Large ship there. We call this Starship Captain Rule #1.\n\n26) Laurie_Menke: Move Y2 Laurie_menke Reforestation\n\tLaurie_Menke: OK...great!  Thank you!  :o)  I was concerned that I had little access to green and it was almost gone, but I could have used a different ship to discover the new system.  I&#39;ll correct that right away.  Thanks!\n\n27) andylooney: Build R2 Paradise\n\n28) Laurie_Menke: Move R3 Reforestation Laurie_menke\n\n29) andylooney: Move Y2 Andylooney Paradise\n\n30) Laurie_Menke: Trade B2 R2 Miner49er\n\n31) andylooney: Trade R2 B2 Andylooney\n\n32) Laurie_Menke: Move Y1 Growth Clampett\n\n33) andylooney: Sacrifice R1 Paradise\nAttack Y1S Clampett\n\n34) Laurie_Menke: Move B1 Laurie_menke Reforestation\n\n35) andylooney: Move B2 Andylooney Paradise\n\n36) Laurie_Menke: Build B2 Laurie_menke\n\tLaurie_Menke: OK, I don&#39;t know if you&#39;ll tell me this or not, but I&#39;m curious why you&#39;re building up your men on systems that are TWO moves away from my homeworld.  Why wouldn&#39;t you want to move in closer?\n\n37) andylooney: Discover Y1 Clampett G2 Fantasyisland\n\n38) Laurie_Menke: Move R1 Laurie_menke Fantasyisland\n\tandylooney: Well, a good attack route is built on a strong foundation.\n\tLaurie_Menke: OK...you&#39;re right...that makes sense.  BTW, I love your new system&#39;s name...now you&#39;ve got me picturing Tattoo yelling, &quot;De Plane, De Plane!!!&quot;\n\n39) andylooney: Sacrifice G1 Clampett\nBuild Y3 Paradise\n\tandylooney: well, since you like the system name so much, I&#39;ll let you have the place...\n\n40) Laurie_Menke: Attack Y1 Fantasyisland\n\n41) andylooney: Sacrifice Y2 Paradise\nMove Y3 Paradise Fantasyisland\nMove Y3 Garden Reforestation\n\n42) Laurie_Menke: Sacrifice Y2 Reforestation\nMove R1 Fantasyisland Garden\nMove B1 Reforestation Garden\n\tLaurie_Menke: Uh-oh...this is not looking good...\n\tLaurie_Menke: Let&#39;s see...next turn you plan to sacrifice your b2 in order to turn those two invading y3&#39;s into r3&#39;s.  Then the following turn you&#39;ll start attacking my ships....\n\tLaurie_Menke: Well, I don&#39;t see any way to disable your b2 or otherwise prevent the attack, so the best I can do is minimize damage...so here goes my best shot.  :o/\n\n43) andylooney: Sacrifice R2 Paradise\nAttack R1S Garden\nAttack B1S Garden\n\n44) Laurie_Menke: Build B2 Laurie_menke\n\tLaurie_Menke: Argh!  Sometimes I am so stupid!  I keep forgetting about the red ships being sacrificed and used from far away!  All that and I still screwed up.  Grrr.....\n\n45) andylooney: Build B3 Garden\n\n46) Laurie_Menke: Move B2 Laurie_menke Miner49er\n\n47) andylooney: Build B3 Paradise\n\n48) Laurie_Menke: Build B3 Laurie_menke\n\n49) andylooney: Sacrifice Y3 Fantasyisland\nMove B1 Garden Fantasyisland\nMove B1 Fantasyisland Laurie_menke\nMove B3 Paradise Miner49er\nCatastrophe Laurie_menke Blue\n\n50) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: Ouch.\n\n51) andylooney: Sacrifice R1 Andylooney\nAttack R2S Miner49er\n\n52) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R2 Miner49er\n\n53) andylooney: Sacrifice R1 Garden\nAttack R2S Miner49er\n\n54) Laurie_Menke: Move B2 Miner49er Laurie_menke\n\n55) andylooney: Sacrifice B2 Paradise\nTrade B3 R3 Garden\nTrade B3 G3 Miner49er\n\n56) Laurie_Menke: Build Y2 Fantasyisland\n\n57) andylooney: Build Y2 Andylooney\n\n58) Laurie_Menke: Move Y2 Fantasyisland Laurie_menke\n\n59) andylooney: Build Y3 Reforestation\n\n60) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\tLaurie_Menke: Darn you!  I knew you were going to do that, but I was HOPING for one more 3-sized ship!  Well, I know I&#39;m licked, but I enjoy playing games out.  Do you mind?\n\n61) andylooney: Sacrifice Y3 Reforestation\nMove R3 Garden Fantasyisland\nMove R3 Fantasyisland Laurie_menke\nMove R2 Miner49er Laurie_menke\nCatastrophe Laurie_menke Red\n\tandylooney: not at all... I prefer playing them out! You never know what end-game mistake I might make...\n\n62) Laurie_Menke: Move Y1 Fantasyisland Laurie_menke\n\tLaurie_Menke: Well, I highly doubt that!\n\n63) andylooney: Trade Y3 R3 Andylooney\n\n64) Laurie_Menke: Build B1 Laurie_menke\n\n65) andylooney: Move Y3 Reforestation Laurie_menke\n\n66) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n67) andylooney: Sacrifice R3 Andylooney\nAttack B1S Laurie_menke\nAttack B2S Laurie_menke\nAttack R1S Laurie_menke\n\n\nHomeworlds Online (SDG# 1184)\nVariants: &quot;Sinister&quot;\nStarted: 2005.10.30, Ended: 2006.9.4\nParticipants: andylooney (S), TwoShort (W), JunkMan (N), MightyJack (E)\nWinner: andylooney\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n2) MightyJack: Homeworld G3 Y2 B3\n\n3) andylooney: Homeworld B1 G2 Y3\n\n4) TwoShort: Homeworld B3 Y2 G3\n\n5) JunkMan: Build Y1 Junkman\n\n6) MightyJack: Build B1 Mightyjack\n\n7) andylooney: Build Y1 Andylooney\n\n8) TwoShort: Build G1 Twoshort\n\n9) JunkMan: Trade Y1 G1 Junkman\n\n10) MightyJack: Trade B1 G1 Mightyjack\n\n11) andylooney: Trade Y1 G1 Andylooney\n\n12) TwoShort: Build G2 Twoshort\n\tTwoShort: construct g2 twoshort\n\n13) JunkMan: Build Y1 Junkman\n\n14) MightyJack: Build B1 Mightyjack\n\n15) andylooney: Build G2 Andylooney\n\n16) TwoShort: Trade G2 Y2 Twoshort\n\n17) JunkMan: Trade Y1 R1 Junkman\n\n18) MightyJack: Trade B1 R1 Mightyjack\n\n19) andylooney: Trade G1 R1 Andylooney\n\n20) TwoShort: Trade Y2 R2 Twoshort\n\n21) JunkMan: Discover G1 Junkman Y3 Andromeda\n\n22) MightyJack: Discover G1 Mightyjack Y1 Wolf359\n\n23) andylooney: Discover G2 Andylooney Y3 Clampett\n\n24) TwoShort: Discover G1 Twoshort Y1 Yak\n\n25) JunkMan: Build R1 Junkman\n\n26) MightyJack: Build B1 Mightyjack\n\n27) andylooney: Build Y1 Andylooney\n\n28) TwoShort: Build G1 Twoshort\n\n29) JunkMan: Build G2 Andromeda\n\n30) MightyJack: Build G2 Wolf359\n\n31) andylooney: Discover Y1 Andylooney G3 Garden\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yak\n\n33) JunkMan: Sacrifice G1 Andromeda\nBuild Y1 Junkman\n\n34) MightyJack: Sacrifice B1 Mightyjack\nTrade G2 R2 Wolf359\n\n35) andylooney: Build G1 Clampett\n\n36) TwoShort: Discover G2 Twoshort B1 Bluestar\n\n37) JunkMan: Move R1 Junkman Andromeda\n\n38) MightyJack: Build G2 Wolf359\n\n39) andylooney: Trade Y3 G3 Andylooney\n\tMightyJack: Does anyone here have a problem with me taking back my last move and making a different one before Andy takes his next turn?\n\tandylooney: it&#39;s ok with me...\n\n40) TwoShort: Move G3 Yak Clampett\n\tMightyJack: Thanks Andy, thanks Aaron!\n\n41) JunkMan: Discover G2 Andromeda Y1 Helloworld\n\n42) MightyJack: Move G1 Wolf359 Clampett\nCatastrophe Clampett Green\n\n43) andylooney: Build Y2 Garden\n\n44) TwoShort: Build G1 Bluestar\n\n45) JunkMan: Trade Y3 G3 Junkman\n\n46) MightyJack: Build B1 Mightyjack\n\n47) andylooney: Build G1 Andylooney\n\n48) TwoShort: Trade G2 Y2 Bluestar\n\tMightyJack: Sorry for the delay, guys... was in the hospital for a week with pancreatitis.  Better now.\n\tandylooney: Again, sorry you were ill, and we&#39;re glad your ok!\r\n\n\n49) JunkMan: Build G2 Helloworld\n\n50) MightyJack: Build G2 Wolf359\n\n51) andylooney: Sacrifice Y1 Garden\nDiscover G1 Andylooney Y3 Lovey\n\n52) TwoShort: Discover G1 Yak Y3 Yolonda\n\n53) JunkMan: Build R1 Junkman\n\n54) MightyJack: Build R2 Wolf359\n\n55) andylooney: Build R2 Andylooney\n\n56) TwoShort: Move G1 Yolonda Junkman\n\n57) JunkMan: Trade R1 B1 Junkman\n\n58) MightyJack: Move G2 Wolf359 Lovey\n\n59) andylooney: Discover G1 Lovey Y1 Different\n\n60) TwoShort: Sacrifice G1 Bluestar\nBuild G1 Junkman\nCatastrophe Junkman Green\n\tMightyJack: Okay, this is the second time that I&#39;ve made a stupid move that I want to retract.  Since this is the second time, I&#39;ll understand completely if y&#39;all won&#39;t allow Aaron to do an undo on my behalf, but I do see a far better move for me if it&#39;s okay with you to take back my mistake.\n\tandylooney: It&#39;s fine with me. In fact, I think there ought to be an Undo button so you can always take back a move if you see immediately that it was a mistake (which you sometimes don&#39;t see until after the move is implemented.) I&#39;ve actually already lost one game here because I didn&#39;t see that I was vulnerable until just after clicking Submit Orders.\n\tAaron: Undo complete.  I will get the Undo functionality implemented asap.  Have fun!\n\tMightyJack: Thanks Andy, thanks Aaron... looking forward to that Undo button!\n\n61) JunkMan: Discover B1 Junkman Y1 Alpha\n\n62) MightyJack: Move R2 Wolf359 Junkman\n\n63) andylooney: Trade G3 Y3 Andylooney\n\n64) TwoShort: Build R1 Twoshort\n\n65) JunkMan: Trade R1 G1 Junkman\n\n66) MightyJack: Attack Y1N Junkman\n\n67) andylooney: Trade R1 B1 Andylooney\n\n68) TwoShort: Move G1 Twoshort Bluestar\n\tTwoShort: Hey all- Just a warning that I&#39;ll be travelling for the next couple weeks, and may or may not manage to make moves with any promptness.\n\n69) JunkMan: Move G2 Helloworld Junkman\n\tandylooney: no problem... Happy Holidays to all!\n\n70) MightyJack: Attack G2N Junkman\n\n71) andylooney: Build B2 Andylooney\n\n72) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Twoshort Wolf359\nMove G3 Wolf359 Junkman\n\n73) JunkMan: Move B1 Alpha Mightyjack\n\n74) MightyJack: Trade Y1 G1 Junkman\nCatastrophe Junkman Green\n\n75) andylooney: Discover B1 Andylooney Y3 Thurston\n\tJunkMan: Well, I&#39;m dead.\n\n76) TwoShort: Build G1 Bluestar\n\n77) MightyJack: Trade B1 R1 Mightyjack\n\tMightyJack: Yup.  &#39;Fraid so.\n\tTwoShort: I&#39;m confused.  Shouldn&#39;t I have just won?  Alternatively, assuming I misunderstood the end condition shouldn&#39;t it be Andy&#39;s turn?\n\tandylooney: TwoShort was not the player who eliminated the player to TwoShort&#39;s left. Thus, the game continues. TwoShort&#39;s new enemy MightyJack. But it does seem like it should be my turn next...\n\tMightyJack: I&#39;m guessing that eliminating one of the players screwed up the computer&#39;s idea of whose turn came next...\n\tAaron: *sighs* no matter what I do it screws up.  OK.  I am going to sit down and tackle this problem right now until it&#39;s fixed.  This is most annoying and I apologize.  I am resetting the current player now and tearing apart the code.\n\n78) andylooney: Move R2 Andylooney Andromeda\n\n79) TwoShort: Trade G1 Y1 Bluestar\n\n80) MightyJack: Move G2 Lovey Helloworld\n\tMightyJack: Sorry for the delay folks... not sure why, but I&#39;ve been unable to connect to SuperDuperGames from just before New Year&#39;s until just now.  Looks like Aaron fixed that problem.\n\n81) andylooney: Attack R1N Andromeda\n\n82) TwoShort: Move G1 Bluestar Twoshort\n\n83) MightyJack: Sacrifice R1 Mightyjack\nAttack G2N Helloworld\n\n84) andylooney: Move R1 Andromeda Different\n\n85) TwoShort: Build G1 Twoshort\n\n86) MightyJack: Move R2 Wolf359 Thurston\n\n87) andylooney: Build R1 Different\n\n88) TwoShort: Move G1 Twoshort Bluestar\n\n89) MightyJack: Move R2 Thurston Wolf359\n\n90) andylooney: Move R2 Andromeda Bluestar\n\n91) TwoShort: Move G1 Bluestar Thurston\n\n92) MightyJack: Move G2 Helloworld Thurston\n\n93) andylooney: Attack Y1W Bluestar\n\n94) TwoShort: Build G1 Twoshort\n\n95) MightyJack: Move G2 Thurston Different\n\n96) andylooney: Sacrifice Y2 Garden\nMove R1 Different Twoshort\nMove R1 Different Twoshort\nCatastrophe Twoshort Red\n\n97) TwoShort: Trade G1 R1 Twoshort\n\n98) MightyJack: Move R2 Wolf359 Twoshort\n\n99) andylooney: Discover B1 Thurston G1 Gumby\n\n100) TwoShort: Build G1 Twoshort\n\n101) MightyJack: Sacrifice R2 Junkman\nAttack G1S Different\nAttack R1W Twoshort\n\n102) andylooney: Build B1 Gumby\n\n103) TwoShort: Build G2 Twoshort\n\n104) MightyJack: Build G3 Wolf359\n\n105) andylooney: Move R2 Bluestar Thurston\n\n106) TwoShort: Trade G1 R1 Twoshort\n\n107) MightyJack: Sacrifice R1 Twoshort\nAttack G2W Twoshort\n\n108) andylooney: Attack G1W Thurston\n\n109) TwoShort: Build G1 Twoshort\n\n110) MightyJack: Build G3 Helloworld\n\n111) andylooney: Build G3 Thurston\n\n112) TwoShort: Trade G1 Y1 Twoshort\n\n113) MightyJack: Move R2 Twoshort Gumby\n\n114) andylooney: Build Y2 Andylooney\n\n115) TwoShort: Build Y2 Twoshort\n\n116) MightyJack: Trade B3 R3 Mightyjack\n\n117) andylooney: Move Y1 Bluestar Twoshort\nCatastrophe Twoshort Yellow\n\n118) TwoShort: Build R1 Twoshort\n\n119) MightyJack: Attack B1S Gumby\n\tandylooney: Greetings! I&#39;m very sorry to have been so slow in taking this turn! It&#39;s been a tough choice and I&#39;ve been too busy to focus...\n\n120) andylooney: Move B2 Andylooney Thurston\n\n121) TwoShort: Trade R1 Y1 Twoshort\n\n122) MightyJack: Attack B1S Gumby\n\n123) andylooney: Build B1 Thurston\n\n124) TwoShort: Discover R1 Twoshort G1 Bigcomeback\n\n125) MightyJack: Sacrifice R2 Gumby\nAttack Y1W Twoshort\nAttack G1W Twoshort\n\n126) andylooney: Discover Y2 Andylooney G3 Jolly\n\n127) MightyJack: Attack B1N Mightyjack\n\n128) andylooney: Sacrifice G3 Thurston\nBuild G3 Thurston\nBuild Y1 Jolly\nBuild Y2 Andylooney\n\n129) andylooney: Sacrifice Y2 Andylooney\nMove B1 Thurston Helloworld\nMove B1 Helloworld Twoshort\n\n\nHomeworlds Online (SDG# 1144)\nStarted: 2005.11.1, Ended: 2006.2.2\nParticipants: lambda (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G2 B1 Y3\n\n2) lambda: Homeworld Y3 B2 G3\n\tJesse: On the small, blue-green world of Jesse, the peaceful Jesseans prepare to embark on a grand journey of exploration.  Are they alone in the universe?  Only time, and a giant radio telescope, will tell.\n\n3) Jesse: Build Y1 Jesse\n\tlambda: The Lambdites are a peaceable people of traders. Having discovered a hyperspace portal right in their system, they decide to start building a fleet of ships to send into the great beyond. Who know what sorts of alien races they&#39;ll find, and what amazing technologies they&#39;ll gain in trade?\n\n4) lambda: Build G1 Lambda\n\tJesse: Well, now this is really quite astonishing!  Jessean scientists have discovered a primitive radio signal from an alien civilization only a few thousand light years away.  It is entirely possible that they are now at a comparable level of technology to our own.  Debate has begun as to whether we should initiate contact with them.\n\n5) Jesse: Discover Y1 Jesse G3 Sekhar\n\tlambda: The United Council of Merchants, the governing body of the Lambdites, opens a new market for speculation on what will be found as the galaxy is explored. Shares in &quot;little green things from outer space&quot; hit 100Y, while &quot;buxom space blondes&quot; are down at 1.34Y. A few enterprising engineers begin building sensor networks to try and scan the stars, in order to give them a better edge at playing the market.\n\n6) lambda: Discover G1 Lambda B1 Arrakis\n\tJesse: Following recent advances in hyperdrive technology, it is now possible to send an exploratory probe on a deep space mission to learn more about these mysterious Lambdites.  It is possible we may even be able to make contact within our lifetime!  Quantum entanglement communications from the probe indicate that Lambdite civilization did indeed survive the crucial nuclear-industrial period of development, with some fascinating technologies appropriate to their planet&#39;s climate.  Furthermore, the probe has discovered a colonizable planet rich in resources.  A research and production facility is now being built on planet Sekhar, name after the inventor of the hyperdrive that made its colonization possible.\n\tJesse: Even with hyperdrive, space travel is still a long, slow process.  As the years pass, the Jessean population grows restless and discontented with the current administration&#39;s lackadaisical attitude toward the colonization of space.\n\n7) Jesse: Build Y1 Jesse\n\tlambda: [my apologies for taking so long; I got busy with school and burnt out on Homeworlds at the same time]\r\nThe Radio Corporation of Atlantia ends up being the first to discover a signal from an extra-Lambestial life form. The folks running the futures market are stumped as to what to do, as they haven&#39;t issued any shares in Jesseans. They finally decide that Jesseans fall under the category of &quot;lumpy, hairy things&quot;, solving that problem neatly. The UCM decides to begin colonization of the galaxy, in order to make contact with the Jesseans and bilk them for all they&#39;re worth... er, we mean trade with them for everyone&#39;s mutual benefit! In that vein, they send one of their ships out, to form a small trading colony. \n\tJesse: [I understand.  I&#39;m glad you came back.  I&#39;ll be back to this game in a bit, it just takes a certain frame of mind that I&#39;m not in right now.]\n\n8) lambda: Build G1 Arrakis\n\tJesse: A generation of decadent culture passes.  At long last, President Xanax is elected on a platform of renewed industrial and scientific development.  The first new ship rolls off the production lines, and communication is reestablished with the colony on Sekhar.\n\n9) Jesse: Build Y1 Sekhar\n\tlambda: In a bizarre coincidence, the Lambdites find the remains of an ancient civilization on the planet they&#39;ve chosen as a trading outpost. It turns out that the glassy planet was once composed of vast, sandy deserts, where this civilization of these funny looking soft pink things called &quot;humans&quot; once lived. In honor of the fallen race, the Lambdites name the planet Arrakis. They begin doing a survey of the stars to try and find the one named &quot;Hume&quot; that these humans must have come from. While they&#39;re at it, they decide to get ready for trade, producing some more of their excellent construction vessels and sending advertisements for them all across the galaxy. \n\tlambda: [Yeah, doing a roleplaying game of Homeworlds can be tough, since you have to be thinking both strategically and creatively at the same time. Oh, and that last bit of story a quick patch to the fact that I reflexively used my standard naming convention for systems, which is names of actual stars]\n\n\tJesse: The Sekhar colony is proven viable by the successful completion of a new ship at its production facilities.  Jesseans celebrated the news at State sponsored events throughout the two systems.  A few unpatriotic individuals held a small, half-hearted demonstration outside the J House.  Happily, the majority of Jesseans dismiss their protestations as almost a non-event.  &quot;It just goes to show,&quot; commented one keen observer, &quot;that President Xanax&#39;s landslide victory really does represent a true mandate of the masses.  A few decadents from the Green Love Party won&#39;t get in the way of the President&#39;s agenda of progress.&quot;\n\tJesse: Well, I think that&#39;s long enough.  I&#39;m canceling this game now.\n\nHomeworlds Online (SDG# 1211)\nStarted: 2005.11.1, Ended: 2005.11.12\nParticipants: CDRodeffer (S), benedict (N)\nWinner: CDRodeffer\n\n1) benedict: Homeworld G3 B2 Y3\n\n2) CDRodeffer: Homeworld Y1 B2 G3\n\n3) benedict: Build Y1 Benedict\n\n4) CDRodeffer: Build G1 Cdrodeffer\n\n5) benedict: Discover Y1 Benedict G1 Pons Aelius\n\n6) CDRodeffer: Trade G1 R1 Cdrodeffer\n\n7) benedict: Build Y1 Benedict\n\n8) CDRodeffer: Build G1 Cdrodeffer\n\n9) benedict: Trade Y1 R1 Benedict\n\n10) CDRodeffer: Trade G1 B1 Cdrodeffer\n\n11) benedict: Build R1 Benedict\n\n12) CDRodeffer: Build G1 Cdrodeffer\n\n13) benedict: Move R1 Benedict Pons\n\n14) CDRodeffer: Build R2 Cdrodeffer\n\n15) benedict: Build R2 Pons\n\tbenedict: thx for the disks, they arrived yesterday.  haven&#39;t had a chance to work with them yet.\n\n16) CDRodeffer: Trade R2 Y2 Cdrodeffer\n\tCDRodeffer: No problem! Just pop the live-CD in your drive and turn it on to try things out. Or use a school computer if you have any reservations. And no, that is not my insidious attempt to infect a certain university with some evil destructive program from some certain other university.... :-)\n\n17) benedict: Build R2 Benedict\n\n18) CDRodeffer: Build B1 Cdrodeffer\n\n19) benedict: Trade R1 B1 Benedict\n\n20) CDRodeffer: Discover B1 Cdrodeffer G3 Eden\n\n21) benedict: Move R2 Pons Eden\n\n22) CDRodeffer: Build B2 Eden\n\n23) benedict: Attack B2 Eden\n\n24) CDRodeffer: Build B3 Eden\n\n25) benedict: Build B3 Eden\nCatastrophe Eden B\n\n26) CDRodeffer: Discover G1 Cdrodeffer R3 Ohio_state\n\n27) benedict: Move B1 Benedict Pons\n\n28) CDRodeffer: Build G1 Cdrodeffer\n\n29) benedict: Move R1 Pons Ohio_state\n\tbenedict: \n\n30) CDRodeffer: Build G2 Ohio_state\n\n31) benedict: Move Y1 Pons Eden\n\n32) CDRodeffer: Attack R1 Ohio_state\n\tbenedict: I have to admit I have no idea what I&#39;m doing\n\tCDRodeffer: No problem. Let&#39;s assess your situation. You have a few ships out there, but not many big ones yet. That&#39;s about the same for me, too. A conflict-oriented direct invasion strategy usually doesn&#39;t work in this game. It&#39;s just too hard and takes too many turns to move in ships and then fight. If your opponent has a red ship and a large ship at home, they can always defend against a single ship of any size. More likely, many ships are moved in at once using a sacrifice of a large yellow. Or many ships are grown at once somewhere by sacrificing a large green. Or, more often in outside systems, many ships are attacked by sacrificing a large red. Less frequent, several ships can be traded at a time, but that&#39;s usually a defensive rather than an offensive move.\n\n33) benedict: Move R2 Eden Pons\n\tbenedict: that last move of mine was a mistake - forgot that having a red star system allowed you to attack.\n\n34) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G2 Cdrodeffer\nBuild G2 Ohio_state\nBuild G3 Cdrodeffer\n\n35) benedict: Move Y1 Eden Pons\n\n36) CDRodeffer: Sacrifice Y2 Cdrodeffer\nDiscover B1 Cdrodeffer G3 Jealousy\nMove G2 Cdrodeffer Jealousy\n\n37) benedict: Build R1 Pons\n\n38) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild B1 Jealousy\nBuild R2 Cdrodeffer\n\n39) benedict: Move R2 Pons Jealousy\n\tbenedict: move r2 pons Jealousy\n\tbenedict: oops ;)\n\n40) CDRodeffer: Sacrifice R1 Cdrodeffer\nAttack R2 Jealousy\n\n41) benedict: Build B2 Pons\n\tCDRodeffer: No worries.\n\tbenedict: oh, guess I isunderstood *that* rule ;)\n\n42) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild R1 Cdrodeffer\nBuild R3 Jealousy\n\n43) benedict: Build R3 Pons\n\tCDRodeffer: This scheme of sacrificing a g3, then immediately rebuilding it as one of the actions it allows requires another green ship (in this case my g1 at CDRodeffer). This construction is popularly known as &quot;the factory.&quot;\n\tbenedict: nasty\n\n44) CDRodeffer: Trade G2 Y2 Jealousy\n\n45) benedict: Trade B2 G2 Pons\n\n46) CDRodeffer: Sacrifice Y2 Jealousy\nMove G1 Ohio_state Pons\nMove G2 Ohio_state Pons\nCatastrophe Pons Green\n\tCDRodeffer: You&#39;re not gonna like this....\n\n47) benedict: Build R1 Benedict\n\tbenedict: i sensed the fact that you were rubbing your internet hands together with glee, but didn&#39;t realize exactly what would happen - I took the bait and walked right into the trap@!!@\n\n48) CDRodeffer: Sacrifice B1 Jealousy\nTrade R1 Y1 Ohio_state\n\n49) benedict: Trade R2 G2 Benedict\n\tCDRodeffer: No, not so much that, as I saw the opportunity and just took it. The large yellow ship is useful for the &quot;invade and catastrophe&quot; type of attack, but sometimes a medium will do. Seldom will a player leave a system vulnerable to a single ship invasion catastrophe.\n\n50) CDRodeffer: Build G1 Ohio_state\n\tbenedict: by the way, I never really congratulated you on having your game pulling strings online - that&#39;s one step ahead of me ;)  well done!  I&#39;m about to play Iain Cheyne in that one...\n\tCDRodeffer: Thanks! I hope you like the game. Pulling Strings is really simple, and sort of just fell together almost completely formed.\n\n51) benedict: Build G1 Benedict\n\n52) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G2 Ohio_state\nBuild G3 Cdrodeffer\nBuild Y1 Ohio_state\n\n53) benedict: Build Y2 Benedict\n\tbenedict: i don&#39;t see your g3 ship...\n\tbenedict: oh, its at creodeffer, never mind\n\n54) CDRodeffer: Discover G1 Ohio_state Y2 Caution\n\tbenedict: i won my Strings game against aaron!\n\tCDRodeffer: Cool! I hope you enjoyed it.\n\n55) benedict: Sacrifice Y2 Benedict\nDiscover G1 Benedict R1 Orion\nMove G2 Benedict Orion\n\n56) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild Y2 Ohio_state\nBuild B1 Jealousy\n\tbenedict: yes - short, but tricky\n\n57) benedict: Sacrifice Y3 Benedict\nMove G1 Orion Ohio_state\nMove G2 Orion Ohio_state\nPass\nCatastrophe Ohio_state G\n\n58) CDRodeffer: Sacrifice Y2 Ohio_state\nDiscover R3 Jealousy G1 Brief_stopover\nMove R3 Brief_stopover Benedict\n\tbenedict: the end is near...\n\tCDRodeffer: I don&#39;t understand why you did that. I guess last licks?\n\n59) benedict: Build R1 Benedict\n\tbenedict: I was trying to get to your homeworld and knock out your production, but realised that I would need to move through 2 systems to get there.\n\n60) CDRodeffer: Sacrifice R2 Jealousy\nAttack R1 Benedict\nAttack R1 Benedict\n\tbenedict: I told you, I still have no idea what I&#39;m supposed to be doing...\n\tbenedict: ...I just know that I am losing horribly\n\tCDRodeffer: That&#39;s OK. Sometime we&#39;ll get together over the board, and I&#39;ll show you some things. Actually, I&#39;m not really the one to show you -- there are many much better players than I. But you&#39;re right, this is the end. Nice game, even so.\n\n\nHomeworlds Online (SDG# 1224)\nStarted: 2005.11.3, Ended: 2005.11.8\nParticipants: jeep (S), sketchwick (N)\nWinner: jeep\n\n1) sketchwick: Homeworld B1 Y3 G3\n\n2) jeep: Homeworld B1 Y2 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Trade G1 R1 Sketchwick\n\n6) jeep: Trade G1 R1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Trade G1 B1 Sketchwick\n\n10) jeep: Discover G1 Jeep B3 Moon\n\n11) sketchwick: Build B2 Sketchwick\n\n12) jeep: Build G1 Moon\n\n13) sketchwick: Discover B2 Sketchwick Y2 Shine\n\n14) jeep: Trade G1 Y1 Moon\n\n15) sketchwick: Sacrifice G3 Sketchwick\nBuild B2 Shine\nBuild B2 Shine\nBuild B3 Sketchwick\n\n16) jeep: Build G1 Jeep\n\tjeep: So many new tactics... I saw that after my last play.\n\n17) sketchwick: Trade B2 R2 Shine\n\n18) jeep: Discover G1 Jeep Y3 Shoe\n\n19) sketchwick: Move R2 Shine Moon\n\n20) jeep: Sacrifice Y1 Moon\nDiscover G1 Moon G1 Polish\n\n21) sketchwick: Trade B3 G3 Sketchwick\n\n22) jeep: Trade R1 Y1 Jeep\n\n23) sketchwick: Trade B2 Y2 Shine\n\n24) jeep: Build G2 Shoe\n\n25) sketchwick: Move Y2 Shine Moon\n\n26) jeep: Build G2 Jeep\n\n27) sketchwick: Move R2 Moon Polish\n\n28) jeep: Sacrifice G3 Jeep\nBuild G2 Polish\nBuild G3 Polish\nBuild G3 Jeep\nCatastrophe Polish Green\n\n29) sketchwick: Move Y2 Moon Jeep\n\n30) jeep: Trade G3 R3 Jeep\n\n31) sketchwick: Sacrifice G3 Sketchwick\nBuild B2 Sketchwick\nBuild B2 Shine\nBuild Y1 Jeep\nCatastrophe Jeep Yellow\n\n32) jeep: Trade G2 Y2 Jeep\n\n33) sketchwick: Discover B2 Shine G1 Sun\n\n34) jeep: Discover R3 Jeep Y2 Spot\n\n35) sketchwick: Move B2 Shine Jeep\n\n36) jeep: Move R3 Spot Jeep\n\n37) sketchwick: Build B3 Sun\n\tsketchwick: ug I&#39;m dumb\r\n\n\n38) jeep: Attack B2N Jeep\n\n39) sketchwick: Trade B3 Y3 Sun\n\n40) jeep: Sacrifice Y2 Jeep\nDiscover B2 Jeep Y2 Temp\nMove B2 Temp Sketchwick\nCatastrophe Sketchwick Blue\n\n41) sketchwick: Move B2 Sun Sketchwick\n\n42) jeep: Move G2 Shoe Jeep\n\n43) sketchwick: Build Y1 Sun\n\n44) jeep: Build G1 Jeep\n\n45) sketchwick: Move Y1 Sun Sketchwick\n\n46) jeep: Trade G2 Y2 Jeep\n\n47) sketchwick: Build Y1 Sun\n\n48) jeep: Build G2 Jeep\n\n49) sketchwick: Trade Y1 B1 Sketchwick\n\n50) jeep: Sacrifice Y2 Jeep\nDiscover R3 Jeep Y2 Temp\nMove R3 Temp Sketchwick\n\n51) sketchwick: Move Y1 Sun Sketchwick\n\n52) jeep: Attack B2N Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1190)\nStarted: 2005.11.3, Ended: 2005.11.7\nParticipants: Laurie_Menke (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) TwoShort: Build G1 Twoshort\n\n6) Laurie_Menke: Build G2 Laurie_menke\n\n7) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n8) Laurie_Menke: Discover G1 Laurie_menke Y1 Luella\n\n9) TwoShort: Discover G1 Yolonda Y1 Troublemaker\n\n10) Laurie_Menke: Discover G2 Laurie_menke B1 Cornflower\n\n11) TwoShort: Build G2 Troublemaker\n\n12) Laurie_Menke: Discover G1 Luella B3 Oceania\n\n13) TwoShort: Move G2 Troublemaker Oceania\n\n14) Laurie_Menke: Trade G1 Y1 Oceania\n\n15) TwoShort: Build G1 Oceania\n\n16) Laurie_Menke: Trade G2 Y2 Cornflower\n\n17) TwoShort: Build G2 Troublemaker\n\n18) Laurie_Menke: Move Y2 Cornflower Oceania\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Oceania\nBuild G3 Troublemaker\nBuild G3 Twoshort\n\tLaurie_Menke: Houston, I seem to be having a green shortage....\n\tTwoShort: Let&#39;s see if I can help you out wiht that...\n\n20) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tLaurie_Menke: LOL...the Green Horde is coming to get me!\n\n21) TwoShort: Trade G2 R2 Oceania\n\n22) Laurie_Menke: Move Y2 Oceania Troublemaker\n\n23) TwoShort: Sacrifice R2 Oceania\nAttack Y1S Oceania\nAttack Y2S Troublemaker\n\n24) Laurie_Menke: Trade R3 G3 Laurie_menke\n\tLaurie_Menke: OK, so I really need to review some of the archived games to see what I&#39;m supposed to be doing.  I still don&#39;t seem to have a clue what I should be trying to do from turn to turn.\n\tLaurie_Menke: I know this game is nearing an end, and I really appreciate your willingness to play with me.  I&#39;m going to lay low for a while and hopefully the next time we meet I&#39;ll be more ready to be a challenge for you.  Happy gaming!\n\n25) TwoShort: Trade G1 R1 Oceania\n\n26) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tTwoShort: I&#39;m still learning myself, I&#39;m just a few pages ahead of you.  I&#39;ll throw out a couple salient points I&#39;ve discovered so far:\r\n 1. It&#39;s all about green and yellow.  If you can cut off, or severely restrict, your opponents access to one of those, you&#39;ve got them.\r\n 2. After that, it&#39;s all about 3 pointers. A 3 pointer gives you the potential to make such a sweeping change to the board when you sacrifice it, that the player with even one more of them has a big advantage.\r\n\r\n  Besides that, it&#39;s just assorted little tricks; primarily the one I used here: sacrifive a 3 point green to grow itself back again, two other peices besides.  All I&#39;m doing from turn to turn in the early game is trying to set up the timing so I&#39;ll be the first one able to do this.\n\tLaurie_Menke: All very good advice...thank you!  I was starting to get the idea about green and yellow, but I&#39;m still very unaware of my sacrificing possibilities.\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Oceania\nBuild G2 Oceania\nBuild G3 Twoshort\n\n28) Laurie_Menke: Trade R3 G3 Laurie_menke\n\tLaurie_Menke: Now I&#39;m just feeling stupid...since I only have one ship, I can&#39;t go anywhere, so my options are building or trading.  When I had the green, I couldn&#39;t build because you&#39;ve got all the greens.  With the red, I can&#39;t build because I have no green.  So I just keep trading ships...LOL!\n\n29) TwoShort: Move G3 Troublemaker Laurie_menke\n\tTwoShort: You could have built last turn, but then I could have moved in and caused a catastrophe.  But you switched to red, forcing me to stall for a turn until you flipped back.  \n\n30) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n31) TwoShort: Sacrifice R1 Oceania\nAttack R3S Laurie_menke\n\n\nHomeworlds Online (SDG# 1200)\nStarted: 2005.11.3, Ended: 2005.11.7\nParticipants: MonkeyJamboree (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) MonkeyJamboree: Homeworld R1 Y2 B3 *\n\tMonkeyJamboree: homeworld R1 Y2 B3\n\tMonkeyJamboree: oops! sorry, i am new at using this system here! and new at homeworlds... (though i AM a Rabbit.. hehe)\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: welcome to the game! Next time you might want to start with green in your homeworld...\n\n4) MonkeyJamboree: Trade B3 G3 Monkeyjamboree (s)\n\tMonkeyJamboree: why&#39;s that? i dont quite get the whole colors thing...\n\tMonkeyJamboree: oops! i missed the whole thing about the colors representing something different in the rules! i&#39;ll have to remember that next time.\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) MonkeyJamboree: Build G1 Monkeyjamboree (s)\n\n7) andylooney: Build G1 Andylooney\n\tMonkeyJamboree: by the way, it&#39;s nice to meet you! i must say that you created a lot of fun games that my friends and I like to play!\n\tMonkeyJamboree: i just read the news on wunderland.com about Kristin&#39;s grandmother... please offer her my condolence(s?).\n\n8) MonkeyJamboree: Build G2 Monkeyjamboree (s)\n\n9) andylooney: Sacrifice Y3 Andylooney\nDiscover G1 Andylooney Y3 Clampett\nMove G1 Clampett Monkeyjamboree\nPass\nCatastrophe Monkeyjamboree Green\n\tandylooney: sorry about this, but hopefully you&#39;ll consider it a learning experience... you&#39;ve got to be careful about overloading your homeworld!\n\n\nHomeworlds Online (SDG# 1234)\nStarted: 2005.11.3, Ended: 2005.11.6\nParticipants: Evilaxe (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) Evilaxe: Homeworld G1 B3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Evilaxe: Build Y1 Evilaxe\n\n5) TwoShort: Build G1 Twoshort\n\n6) Evilaxe: Build Y1 Evilaxe\n\n7) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n8) Evilaxe: Trade Y3 G3 Evilaxe\n\n9) TwoShort: Build G2 Yellonia\n\n10) Evilaxe: Build Y2 Evilaxe\n\n11) TwoShort: Discover G1 Yellonia Y2 Monkeywrench\n\n12) Evilaxe: Trade Y1 B1 Evilaxe\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G2 Monkeywrench\nBuild G3 Twoshort\n\n14) Evilaxe: Trade Y1 R1 Evilaxe\n\n15) TwoShort: Discover G2 Yellonia B2 Bluestar\n\n\tSYSTEM: Evilaxe resigns.\n\nHomeworlds Online (SDG# 1236)\nStarted: 2005.11.4, Ended: 2005.11.11\nParticipants: MatrixFrog (S), Evilaxe (N)\nWinner: MatrixFrog\n\n1) Evilaxe: Homeworld G1 B3 Y3\n\n2) MatrixFrog: Homeworld B3 Y2 G3\n\tEvilaxe: Hi there. Good game last time.\n\n3) Evilaxe: Build Y1 Evilaxe\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) Evilaxe: Trade Y1 G1 Evilaxe\n\n6) MatrixFrog: Trade G1 B1 Matrixfrog\n\n7) Evilaxe: Build Y1 Evilaxe\n\n8) MatrixFrog: Build B1 Matrixfrog\n\n9) Evilaxe: Trade Y1 B1 Evilaxe\n\n10) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n11) Evilaxe: Discover G1 Evilaxe B2 Xanadu\n\n12) MatrixFrog: Build Y1 Matrixfrog\n\n13) Evilaxe: Build Y1 Evilaxe\n\n14) MatrixFrog: Discover Y1 Matrixfrog G1 Alpha\n\n15) Evilaxe: Move Y1 Evilaxe Xanadu\n\n16) MatrixFrog: Build Y2 Alpha\n\n17) Evilaxe: Build Y2 Xanadu\n\n18) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n19) Evilaxe: Build G2 Xanadu\n\n20) MatrixFrog: Discover Y1 Alpha B2 Beta\n\n21) Evilaxe: Trade G1 R1 Xanadu\n\n22) MatrixFrog: Build G1 Matrixfrog\n\n23) Evilaxe: Build G2 Xanadu\n\tEvilaxe: b g2 xanadu\n\n24) MatrixFrog: Build B1 Matrixfrog\n\n25) Evilaxe: Build B2 Evilaxe\n\n26) MatrixFrog: Discover Y2 Alpha B3 Gamma\n\n27) Evilaxe: Discover G2 Xanadu R1 El_dorado\n\n28) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y1 Beta\n\n29) Evilaxe: Trade B2 R2 Evilaxe\n\n30) MatrixFrog: Trade B1 G1 Matrixfrog\n\n31) Evilaxe: Move Y2 Xanadu El_dorado\n\n32) MatrixFrog: Trade Y1 G1 Beta\n\n33) Evilaxe: Sacrifice G2 El_dorado\nBuild Y1 Xanadu\nBuild Y3 El_dorado\n\n34) MatrixFrog: Build Y3 Beta\n\n35) Evilaxe: Sacrifice B1 Evilaxe\nTrade Y2 B2 El_dorado\n\n36) MatrixFrog: Build Y2 Beta\n\n37) Evilaxe: Move Y3 Evilaxe Beta\nCatastrophe Beta Y\n\n38) MatrixFrog: Build G2 Matrixfrog\n\tMatrixFrog: I didn&#39;t think you&#39;d want to use a Y3 for that. Back to the drawing board...\n\n39) Evilaxe: Move G2 Xanadu El_dorado\n\n40) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild R2 Matrixfrog\nBuild Y1 Gamma\n\tEvilaxe: I Had no real choice. Y3 or nothing and I couldn&#39;t let that armada live.\n\tMatrixFrog: I think I meant to build that in beta, not at home... I&#39;m clearly too tired for this game right now.\n\n41) Evilaxe: Sacrifice G2 El_dorado\nBuild Y2 El_dorado\nBuild Y3 El_dorado\n\tMatrixFrog: True.\n\n42) MatrixFrog: Move Y1 Gamma El_dorado\nCatastrophe El_dorado Y\n\tEvilaxe: Damn Damn Damn! I meant to put the y2 in Xanadu. Wasn&#39;t thinking properly when I entered the move.\n\tEvilaxe: Don&#39;t let that stop you from catastrophising El_dorado though.\n\n\tEvilaxe: Well, that&#39;s it. Thre&#39;s nothing I can do to stop you rolling your big ships in and taking over by force. Thanks for the game, hopefully I&#39;ll proofread better next time :)\n\tSYSTEM: Evilaxe resigns.\n\nHomeworlds Online (SDG# 1238)\nStarted: 2005.11.4, Ended: 2005.12.16\nParticipants: lambda (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) lambda: Homeworld G3 B2 Y3\n\tTwoShort: Hello.  Glad to be playing you again; this time I&#39;ll try to avoid making a dumb mistake...\n\n3) TwoShort: Build G1 Twoshort\n\tlambda: Hi! Thanks for playing. Dumb mistakes like the one you made happen all the time; I still make them occasionally myself, especially when I&#39;m teaching new players and think that I can&#39;t possibly lose. \n\n4) lambda: Build Y1 Lambda\n\n5) TwoShort: Build G1 Twoshort\n\n6) lambda: Build Y1 Lambda\n\n7) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n8) lambda: Discover Y1 Lambda B1 Arcturus\n\n9) TwoShort: Build G1 Twoshort\n\n10) lambda: Build Y2 Lambda\n\n11) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n12) lambda: Move Y2 Lambda Arcturus\n\n13) TwoShort: Build G2 Bluestar\n\tlambda: Sorry about the delay there. I ended up getting really busy with school work and feeling burnt out on Homeworlds at the same time. \n\n14) lambda: Trade Y2 G2 Arcturus\n\tTwoShort: No problem\n\n15) TwoShort: Trade G2 Y2 Bluestar\n\n16) lambda: Build G2 Arcturus\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n18) lambda: Discover G2 Arcturus Y3 Sol\n\n19) TwoShort: Trade G3 R3 Twoshort\n\n20) lambda: Build G3 Sol\n\n21) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Bluestar Arcturus\nMove G3 Arcturus Lambda\n\tlambda: OK, I realized right as I hit the submit button that I had an instant kill for you, so I hit undo. But now I feel bad killing you in that way after undoing a move. Do you think I should take my kill? Or do you want to undo your last move? Or do you think I should just redo my move? Basically, I feel bad killing you after an undo that wasn&#39;t because I mistyped, but instead because I realized a second later that I had a better move. \n\tTwoShort: My general feeling on undos is that if you realize a second later you have a better move, feel free; if it&#39;s the next day, better to ask.  I would have loved (and not hesitated) to hit undo in our previous game, when I realized as I hit the submit button that I&#39;d made a dumb game losing mistake.  Now I&#39;ve made the exact same mistake, and not realized it, so I&#39;m feeling kind of dumb!\r\n  I propose that I&#39;ve no idea what is the most fair way to proceed, but I&#39;m sure the most fun way is to undo both our moves and continue from there.  \r\n  \n\n22) lambda: Sacrifice Y3 Lambda\nMove G2 Arcturus Lambda\nMove G2 Sol Arcturus\nMove G2 Arcturus Lambda\nCatastrophe Lambda Green\n\tlambda: Sure, that works for me. \n\n23) TwoShort: Move G2 Yellonia Lambda\n\n24) lambda: Move G3 Sol Lambda\n\tTwoShort: Of course, now I&#39;ll feel bad if I win quickly after that\r\n\n\tlambda: Well, there&#39;s another move I&#39;d like to undo. I guess I&#39;ll let it stand, though. \n\tlambda: Not immediately, but...\n\n25) TwoShort: Build G2 Yellonia\n\tlambda: Ouch. \n\tlambda: I think no matter what, we&#39;re going to have to have a rematch after this game, since we&#39;ve each made such bad mistakes. \n\n26) lambda: Trade Y1 R1 Lambda\n\n27) TwoShort: Sacrifice G2 Yellonia\nBuild G2 Lambda\nBuild G2 Lambda\nCatastrophe Lambda Green\n\n28) lambda: Move Y1 Arcturus Lambda\n\n29) TwoShort: Build G2 Yellonia\n\n\tSYSTEM: lambda resigns.\n\nHomeworlds Online (SDG# 1263)\nStarted: 2005.11.6, Ended: 2005.11.13\nParticipants: Laurie_Menke (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 Y1 G3\n\n2) Laurie_Menke: Homeworld G3 B2 Y3\n\n3) Jesse: Build G1 Jesse\n\tLaurie_Menke: Hi Jesse.  Just to warn you, I&#39;ve only played one full game of Homeworlds and I lost horribly.  I hope you&#39;ll forgive my newbie blunders.  :o(\n\tJesse: Hi, Laurie.  I see you&#39;re playing TwoShort and Andy already.  Excelent choices.  Let&#39;s see what I can add to your education...\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: Any and all education is greatly appreciated.  :o)\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Laurie_Menke: Build Y2 Laurie_menke\n\tJesse: If you were to build that second y1 before I got a yellow, it could be very difficult for me to get one later, so I&#39;m grabbing it for myself before it&#39;s too late.\n\tLaurie_Menke: OK...so why do you want the y1?  I was thinking you just have to work through the 1s to get to the &quot;bigger guns.&quot;\n\n7) Jesse: Discover Y1 Jesse G2 Kif\n\tJesse: Because if you took the y1, I wouldn&#39;t be able to get a yellow until I had a 2-pointer, by which time you might have used up all the 2-pointers.  I could always trade my g3, but I want to have it for a factory at the first opportunity.\n\n8) Laurie_Menke: Discover Y1 Laurie_menke G1 Creativity\n\n9) Jesse: Build Y2 Kif\n\n10) Laurie_Menke: Build Y2 Creativity\n\tLaurie_Menke: OK.  I see what you mean.\n\n11) Jesse: Build G1 Jesse\n\n12) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\n13) Jesse: Discover Y1 Kif B1 Frog\n\n14) Laurie_Menke: Move G3 Laurie_menke Frog\n\tLaurie_Menke: So what would you say a good goal would be for me right now in this game?  I&#39;m having trouble understanding what I should be doing to either attack or defend efficiently...\n\n15) Jesse: Move Y1 Frog Laurie_menke\n\n16) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G3 Frog Laurie_menke\nMove Y2 Creativity Kif\n\tJesse: At this stage, defense is about avoiding leaving your homeworld vulnerable to either catastrophe or lany larger ships that might arrive.  By moving out your g3, you reduce the diversity of your ships, so that I can move in like this, threatening to sacrifice my g3 to blast you.  If you had any red ships, you would be safe from that, so one thing you can do to defend yourself is obtain a red ship once I&#39;ve set up on your border.\n\tJesse: Offense here is more about positioning yourself to threaten to do things like this, in such a way that it limits the opponent&#39;s ability to develop.  For instance, TwoShort in particular always seems to push a couple of green ships to a yelow star next to me when I want to set up a factory on my homeworld early on.  That prevents me from safely opperating a factory there.  It&#39;s a good tactic.\n\tJesse: I&#39;m not usually very aggressive that way in the early game.  I play for defense first, and development second.  I only really start to turn my thoughts to offense when I&#39;ve got a couple of extra large pieces, preferably more than the opponent.  Otherwise, I try to squeeze the resources to develop just a little more nicely than my opponent.\n\tJesse: In this game, I made some inefficient moves early on that gave you a big positional advantage for nabbing those large yellows.  I moved up to Frog to prevent you from grabbing too many of them.  (It threatens to move in and destroy them if you build two at your homeworld.)  It was aso to spread my own yellows out so that I would be able to build one or more of them myself.  Moving in to your homeworld just now is a tactic to force you to make some defensive plays while I hopefully can squeeze out some yellows.  Right now, I think you either have to change your lone home defender to another color, probably red, or sacrifice a piece to bring your g3 home.\n\tLaurie_Menke: Wow...I really appreciate you taking the time to give so much good advice!  I can see now that it was stupid of me to move the g3 out, especially when I had no way of moving once I was there.  \n\tLaurie_Menke: And I would have never even thought of the sacrificing your g3 to build yellows and destroy my homeworld.  I need to think more carefully about the sacrifice moves that both I and my opponent can make.\n\tLaurie_Menke: Huh...I thought I was doing this right, but I got an error message.  Is this code correct?  sacrifice y2 Laurie_Menke &lt;carriage return&gt; move g3 Frog Laurie_Menke &lt;carriage return&gt; move y2 Creativity Jesse?\n\tLaurie_Menke: The error says I can&#39;t leave my homeworld undefended by the end of my turn...I didn&#39;t think I was...I&#39;m leaving it temporarily, but returning my green in the second command line.  Right?\n\tLaurie_Menke: Well, I&#39;ll try something else instead...\n\n17) Jesse: Trade Y1 G1 Laurie_menke\n\tJesse: Yes, you should be able to do that.  I believe you&#39;ve found a bug.  Actually, I&#39;ve been wondering whether this was implemented properly, but never had an opportunity to test it.\n\tAaron: It *was* implemented properly, but then I had to allow &quot;cashing in on investment&quot; and mis-handled it.  I&#39;ll repair the code now.\n\tAaron: Fixed.  Laurie, I undid your last move.  You should now be able to do what you previously wanted.  Let me know if it doesn&#39;t work.\n\tLaurie_Menke: Thanks, Aaron and Jesse!  You&#39;re the best!  And Jesse, please forgive me for being late on my move...I went out of town on an emergency...my Dad was having bypass surgery.  I tried to use my Mom&#39;s computer, but it was too slow.  Please forgive me.\n\n18) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tJesse: Yeah, no problem.  I hope your dad is okay.\n\n19) Jesse: Build G2 Laurie_menke\n\tLaurie_Menke: He is...thanks.\n\n20) Laurie_Menke: Build R1 Laurie_menke\n\tJesse: Again, we see the value  of diversity at the homeworld.  Having only one color of ships there is all the more dangerous if it&#39;s the same color as one of your system markers.  Since you don&#39;t have any red to capture my ship, your green star is probably doomed, but you can save your large ship by changing its color.\n\tJesse: Er, yeah, like that.  :)\n\n21) Jesse: Sacrifice G3 Jesse\nBuild G2 Laurie_menke\nBuild G3 Jesse\nBuild G3 Jesse\nCatastrophe Laurie_menke G\n\tLaurie_Menke: Hey...I&#39;m starting to catch on a little, I guess!  All thanks to your patience tutelage!  :o)\n\n22) Laurie_Menke: Build Y1 Creativity\n\tLaurie_Menke: I meant &quot;patient&quot;...sorry for the typo\n\tJesse: What!?  A type?!  Now I&#39;m rezlly outrages!\n\n23) Jesse: Trade G3 R3 Jesse\n\tLaurie_Menke: LOL!  :o)\n\n24) Laurie_Menke: Trade R1 G1 Laurie_menke\n\tJesse: What&#39;s really funny, to me, is that those were all real typos.  I didn&#39;t even think of leaving them in until later.\n\tJesse: Oh, wow.  That was incautious of me.  Our homeworlds are adjacent to each other now, and you could have flown in your r3.  I really should have let those ships sit without calling the catastrophe until after I protected myself.\n\n25) Jesse: Build R1 Jesse\n\tAaron: Go get &#39;im, Laurie!  (I&#39;m glad your dad&#39;s ok.  My parents are going through the same thing.)\n\n26) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: Thanks, Aaron...I hope your parents are OK, too.  I&#39;m sorry to hear of their trouble.\n\tLaurie_Menke: That really is funny...about the typos.  And sadly, as is obvious, I didn&#39;t pick up on that homeworld thing either.  \n\tJesse: Hmm, yeah.  Not so sad for me, though it would have served me right if you&#39;d caught it.\n\n27) Jesse: Move R3 Jesse Laurie_menke\n\n28) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R3 Laurie_menke\n\n29) Jesse: Build R1 Jesse\n\tLaurie_Menke: Argh!  She&#39;s sees what Jesse is doing just a tad too late to save herself....grrr....  If I attack you, you move in with your other red next turn and cause a catastrophe.  If I move one of my reds out, you attack with the ship you&#39;ve already got in my homeworld.  Hmmm....what to do, what to do....\n\tLaurie_Menke: Actually, I couldn&#39;t even move a ship out if I tried right now....\n\n30) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: I think that might have been the right play....\n\tJesse: Ack!  Good catch.  That&#39;s another horrible oversight for me this game.  Well, this makes things much harder for me...\n\n31) Jesse: Sacrifice Y2 Kif\nMove R1 Jesse Laurie_menke\nMove R1 Jesse Laurie_menke\nCatastrophe Laurie_menke R\n\n32) Laurie_Menke: Move Y1 Creativity Laurie_menke\n\n33) Jesse: Trade G3 R3 Jesse\n\tJesse: This is tough.  I honestly don&#39;t know who to say has the advantage here.\n\tLaurie_Menke: This is getting interesting!  It&#39;s almost as if we&#39;re at the beginning of the game again.\n\n34) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 Creativity\nBuild Y2 Kif\n\n35) Jesse: Move R3 Jesse Laurie_menke\n\tLaurie_Menke: Oh...not good...I think you&#39;ve got me now.  But I&#39;m still going to try a last-ditch effort.\n\n36) Laurie_Menke: Build Y3 Kif\n\tJesse: We&#39;re both on the edge.\n\n37) Jesse: Attack Y1 Laurie_menke\n\tJesse: But, I do think I&#39;ve got you, barely.\n\tLaurie_Menke: Yep, you do.  Thanks, Jesse, for another great game, and also for all your comments.  I truly appreciate them.  Hope to play you again soon!\n\n38) Laurie_Menke: Sacrifice Y2 Kif\nMove Y1 Creativity Laurie_menke\nMove Y3 Kif Jesse\n\n39) Jesse: Sacrifice R3 Laurie_menke\nAttack Y1 Laurie_menke\nAttack G1 Laurie_menke\nPass\n\tLaurie_Menke: Oh!  You can only attack one ship at a time?  I thought you would attack both at once and this would be the end.  Well, maybe I still have a VERY SLIM chance, then!\n\n\tJesse: You can only attack one ship per attack action.  Now I can sacrifice the r3 to attack both your ships with my y1.  If you had moved a medium in instead of a small, I wouldn&#39;t be able to do that because a small can&#39;t take a medium.  I&#39;d have to take your pieces one at a time.  However, that&#39;s still okay for me, because it woud take each of us two turns to capture the other&#39;s defenders, but I go first.  Anyway, thanks for the game!  You seem to be catching on fast.\n\nHomeworlds Online (SDG# 1268)\nStarted: 2005.11.6, Ended: 2005.11.10\nParticipants: Gort (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\tGort: homeworld B1 G3 ship\n\tGort: Oh, I&#39;m new to this. This must be the sub-ether-wave band.\n\n2) Gort: Homeworld B2 G1 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) Gort: Build Y1 Gort\n\n5) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n6) Gort: Trade Y1 G1 Gort\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Gort: Build G2 Gort\n\n9) TwoShort: Trade Y3 G3 Twoshort\n\n10) Gort: Move G2 Gort Bluestar\n\n11) TwoShort: Build Y1 Twoshort\n\n12) Gort: Build Y2 Gort\n\n13) TwoShort: Discover Y1 Twoshort G3 Gorgon\n\n14) Gort: Sacrifice Y3 Gort\nMove G2 Bluestar Twoshort\nMove G1 Gort Bluestar\nMove G1 Bluestar Twoshort\nCatastrophe Twoshort G\n\n15) TwoShort: Build Y2 Gorgon\n\n16) Gort: Trade Y2 R2 Gort\n\n17) TwoShort: Build Y2 Gorgon\n\n18) Gort: Build R1 Gort\n\n19) TwoShort: Discover Y1 Gorgon Y2 Denial\n\n20) Gort: Build R1 Gort\n\n21) TwoShort: Build Y3 Gorgon\n\n22) Gort: Trade R1 G1 Gort\n\n23) TwoShort: Move Y3 Gorgon Gort\n\n24) Gort: Build G1 Gort\n\n25) TwoShort: Build Y3 Gort\n\n26) Gort: Trade R2 B2 Gort\n\n27) TwoShort: Build Y3 Gort\n\n28) Gort: Build R1 Gort\n\n29) TwoShort: Trade Y3 B3 Gort\n\n\tSYSTEM: Gort resigns.\n\nHomeworlds Online (SDG# 1280)\nStarted: 2005.11.7, Ended: 2005.11.12\nParticipants: ts52 (S), cobalt (N)\nWinner: ts52\n\n1) cobalt: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) cobalt: Build G1 Cobalt\n\n4) ts52: Build G1 Ts52\n\n5) cobalt: Trade G1 Y1 Cobalt\n\n6) ts52: Build G1 Ts52\n\n7) cobalt: Build Y2 Cobalt\n\n8) ts52: Discover G1 Ts52 B2 Neptune\n\n9) cobalt: Trade Y2 B2 Cobalt\n\n10) ts52: Trade G3 Y3 Ts52\n\n11) cobalt: Build Y2 Cobalt\n\n12) ts52: Build Y2 Ts52\n\n13) cobalt: Discover Y1 Cobalt G3 Winston\n\n14) ts52: Move Y2 Ts52 Neptune\n\n15) cobalt: Build G1 Cobalt\n\n16) ts52: Build G2 Ts52\n\n17) cobalt: Sacrifice Y2 Cobalt\nMove Y1 Winston Neptune\nMove Y1 Neptune Ts52\n\n18) ts52: Trade Y3 R3 Ts52\n\n19) cobalt: Sacrifice G3 Cobalt\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild G2 Cobalt\n\n20) ts52: Sacrifice G2 Ts52\nBuild Y3 Neptune\nBuild Y3 Neptune\nCatastrophe Ts52 Yellow\n\n21) cobalt: Trade G2 Y2 Cobalt\n\n22) ts52: Sacrifice Y2 Neptune\nMove R3 Ts52 Cobalt\nMove Y3 Neptune Ts52\n\n23) cobalt: Build G2 Cobalt\n\n24) ts52: Attack Y2 Cobalt\n\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1282)\nStarted: 2005.11.7, Ended: 2006.2.21\nParticipants: andylooney (S), MonkeyJamboree (N)\nWinner: andylooney\n\n1) MonkeyJamboree: Homeworld G3 B2 Y3\n\tMonkeyJamboree: lets try again, shall we? :)\n\n2) andylooney: Homeworld G1 B2 Y3\n\n3) MonkeyJamboree: Build Y1 Monkeyjamboree (s)\n\n4) andylooney: Build Y1 Andylooney\n\n5) MonkeyJamboree: Discover Y1 Monkeyjamboree R1 Garflax\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) MonkeyJamboree: Build Y1 Monkeyjamboree\n\n8) andylooney: Discover G1 Andylooney Y3 Clampett\n\n9) MonkeyJamboree: Trade Y1 G1 Monkeyjamboree\n\n10) andylooney: Build G2 Clampett\n\n11) MonkeyJamboree: Move G1 Monkeyjamboree Garflax\n\tMonkeyJamboree: You don&#39;t seem to be conversing much... everything okay?\n\n12) andylooney: Discover G1 Clampett B1 Bomber\n\tandylooney: everything&#39;s great, I&#39;m just not much of one for chatting here. I&#39;m in so many games at once I don&#39;t usually take time for idle chatter.\n\n13) MonkeyJamboree: Discover G1 Garflax G3 Zeepmo\n\n14) andylooney: Build G2 Bomber\n\n15) MonkeyJamboree: Build G2 Zeepmo\n\n16) andylooney: Build G3 Clampett\n\n\tandylooney: So... it&#39;s been over a month since you took a turn. Are you planning to finish this game?\n\nHomeworlds Online (SDG# 1285)\nStarted: 2005.11.7, Ended: 2005.12.16\nParticipants: MonkeyJamboree (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) MonkeyJamboree: Homeworld G2 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) MonkeyJamboree: Build Y1 Monkeyjamboree\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MonkeyJamboree: Trade Y1 G1 Monkeyjamboree\n\n7) TwoShort: Build G1 Twoshort\n\n8) MonkeyJamboree: Build G1 Monkeyjamboree\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: discover g1 twoshort y3 Yolonda\n\n10) MonkeyJamboree: Trade G1 Y1 Monkeyjamboree\n\n11) TwoShort: Build G1 Twoshort\n\tMonkeyJamboree: CRAP!! meant to trade that for another color... dumb typos\n\n12) MonkeyJamboree: Trade Y1 R1 Monkeyjamboree\n\n13) TwoShort: Trade Y1 R1 Twoshort\n\n14) MonkeyJamboree: Build R1 Monkeyjamboree\n\n15) TwoShort: Build G2 Yolonda\n\n16) MonkeyJamboree: Build G2 Monkeyjamboree\n\tMonkeyJamboree: sorry for taking so long, havent had access to the site\n\n17) TwoShort: Move G1 Yolonda Monkeyjamboree\n\n\tTwoShort: no problem\r\n\n\tSYSTEM: MonkeyJamboree resigns.\n\nHomeworlds Online (SDG# 1292)\nStarted: 2005.11.8, Ended: 2005.11.15\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) jeep: Build G1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) TwoShort: Build G1 Twoshort\n\n7) jeep: Build Y2 Jeep\n\n8) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n9) jeep: Discover Y2 Jeep B3 Moon\n\n10) TwoShort: Build G1 Bluestar\n\n11) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y2 Moon\nBuild Y3 Jeep\n\n12) TwoShort: Trade G3 Y3 Twoshort\n\n13) jeep: Trade Y2 G2 Moon\n\n14) TwoShort: Build G2 Twoshort\n\n15) jeep: Build Y2 Moon\n\n16) TwoShort: Move Y3 Twoshort Bluestar\n\n17) jeep: Trade Y3 G3 Jeep\n\n18) TwoShort: Build Y3 Bluestar\n\n19) jeep: Sacrifice Y2 Moon\nMove Y2 Moon Bluestar\nMove Y2 Moon Bluestar\nCatastrophe Bluestar Yellow\n\n20) TwoShort: Trade G2 Y2 Twoshort\n\n21) jeep: Trade G2 R2 Moon\n\n22) TwoShort: Trade G1 R1 Bluestar\n\n23) jeep: Build Y2 Jeep\n\n24) TwoShort: Build G1 Twoshort\n\n25) jeep: Discover Y2 Jeep Y3 Mover\n\n26) TwoShort: Build Y2 Twoshort\n\n27) jeep: Sacrifice Y2 Mover\nDiscover R2 Moon B2 Temp\nMove R2 Temp Twoshort\n\n28) TwoShort: Sacrifice R1 Bluestar\nAttack R2N Twoshort\n\n29) jeep: Build Y2 Jeep\n\tjeep: Teach me to make moves while in a meeting... I have no idea why I thought that was a good idea.\n\n30) TwoShort: Move Y2 Twoshort Bluestar\n\n31) jeep: Discover Y2 Jeep B3 Moon\n\tTwoShort: It did make me wonder...\n\n32) TwoShort: Build Y3 Bluestar\n\n33) jeep: Trade Y1 R1 Jeep\n\n34) TwoShort: Trade Y3 G3 Bluestar\n\tjeep: I went from a strong game to a weak one in a turn.  *sigh*\n\n35) jeep: Build G2 Jeep\n\n36) TwoShort: Move G3 Bluestar Moon\n\n37) jeep: Discover Y2 Moon B2 Man\n\n38) TwoShort: Build G2 Moon\n\n39) jeep: Move G2 Jeep Moon\n\n40) TwoShort: Sacrifice G3 Moon\nBuild G2 Moon\nBuild G3 Bluestar\nBuild R1 Twoshort\n\n41) jeep: Sacrifice G2 Moon\nBuild Y1 Man\nBuild R1 Jeep\n\n42) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Moon Jeep\nMove G2 Moon Jeep\n\n43) jeep: Trade G3 Y3 Jeep\n\n44) TwoShort: Sacrifice R2 Twoshort\nAttack R1N Jeep\nAttack R1N Jeep\n\n45) jeep: Move Y2 Man Twoshort\n\n46) TwoShort: Trade G3 B3 Bluestar\n\n\tjeep: Good game.  I needed to trade for a R2.  I even had it written down, but thought I saw something better.\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1315)\nStarted: 2005.11.9, Ended: 2005.12.24\nParticipants: andylooney (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 Y2 G3\n\tTwoShort: Ready for a rematch?\n\n2) andylooney: Homeworld B3 G2 Y3\n\tandylooney: Yes. I need revenge!\n\n3) TwoShort: Build G1 Twoshort\n\n4) andylooney: Build Y1 Andylooney\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) andylooney: Trade Y1 G1 Andylooney\n\tTwoShort: My typical downfall is in being too agressive and over-extending myeelf.  So frankly, I credit my win with feeling intimidated by playing you, and thus being more cautious.   Now that I know I can beat you, I expect you&#39;ll crush me...\n\tandylooney: well, we shall see... having lost to you, I&#39;m all timid about playing you now! Hey, you should try to get Keith to learn this game...\n\n7) TwoShort: Build G1 Twoshort\n\n8) andylooney: Build Y1 Andylooney\n\tTwoShort: Keith claims to prefer games that aren&#39;t pure strategy.  (He fears me)\n\n9) TwoShort: Discover G1 Twoshort Y3 Jed\n\n10) andylooney: Discover G1 Andylooney Y1 Different\n\n11) TwoShort: Build G1 Twoshort\n\n12) andylooney: Build G2 Different\n\n13) TwoShort: Build G2 Jed\n\n14) andylooney: Discover G1 Different Y3 Clampett\n\n15) TwoShort: Discover G2 Jed B1 Bubbles\n\n16) andylooney: Build G3 Clampett\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Twoshort\nBuild G3 Bubbles\n\n18) andylooney: Trade Y1 R1 Andylooney\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Twoshort Clampett\nMove G2 Bubbles Clampett\nCatastrophe Clampett Green\n\n20) andylooney: Build G1 Different\n\tandylooney: Dammit!\n\n21) TwoShort: Build G1 Bubbles\n\n22) andylooney: Discover G2 Different G3 Jolly\n\n23) TwoShort: Trade G1 Y1 Bubbles\n\n24) andylooney: Move R1 Andylooney Different\n\n25) TwoShort: Sacrifice G3 Bubbles\nBuild Y2 Bubbles\nBuild Y2 Bubbles\nBuild Y3 Twoshort\n\n26) andylooney: Trade Y3 R3 Andylooney\n\n27) TwoShort: Trade Y1 R1 Twoshort\n\n28) andylooney: Sacrifice G2 Jolly\nBuild R1 Andylooney\nBuild R2 Different\n\n29) TwoShort: Build R2 Twoshort\n\n30) andylooney: Move R2 Different Jed\n\n31) TwoShort: Sacrifice Y2 Bubbles\nMove G3 Twoshort Jed\nDiscover Y1 Bubbles Y3 Yolonda\n\n32) andylooney: Discover R2 Jed G1 Ginger\n\n33) TwoShort: Move R2 Twoshort Yolonda\n\n34) andylooney: Build G2 Different\n\n35) TwoShort: Sacrifice G3 Jed\nBuild G2 Jed\nBuild Y1 Bubbles\nBuild Y2 Bubbles\n\n36) andylooney: Discover G1 Different B3 Ibm\n\n37) TwoShort: Move G1 Jed Twoshort\n\n38) andylooney: Build G3 Different\n\n39) TwoShort: Sacrifice G2 Jed\nBuild Y3 Yolonda\nBuild R2 Yolonda\n\n40) andylooney: Sacrifice G2 Different\nBuild R3 Different\nBuild R3 Ginger\n\n41) TwoShort: Move R2 Yolonda Bubbles\n\n42) andylooney: Build G2 Ibm\n\tTwoShort: I&#39;ve been going through warning my opponents that I&#39;ll be on the road the next two weeks and may not be able to play.  In your case though, perhaps I&#39;ll challenge you to a game in person next Thursday?\n\tandylooney: Oh, that&#39;d be awesome!!!\n\n43) TwoShort: Sacrifice Y3 Yolonda\nMove R2 Yolonda Different\nMove R2 Bubbles Andylooney\nMove R2 Different Andylooney\nCatastrophe Andylooney Red\n\n\nHomeworlds Online (SDG# 1339)\nStarted: 2005.11.9, Ended: 2005.11.11\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y1 B2 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick G3 Lime\n\n6) jeep: Move G1 Jeep Lime\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G2 Jeep\n\n9) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Lime\nBuild G2 Sketchwick\nBuild G3 Sketchwick\nCatastrophe Lime Green\n\n10) jeep: Build G1 Jeep\n\n11) sketchwick: Discover G1 Sketchwick Y3 Lemon\n\n12) jeep: Move G2 Jeep Lemon\n\n13) sketchwick: Move G1 Lemon Jeep\n\n14) jeep: Trade G3 R3 Jeep\n\n15) sketchwick: Build G1 Jeep\n\n16) jeep: Move G1 Jeep Lemon\n\n17) sketchwick: Trade G2 Y2 Sketchwick\n\n18) jeep: Build G2 Lemon\n\n19) sketchwick: Sacrifice Y2 Sketchwick\nMove G1 Jeep Lemon\nDiscover G1 Jeep B3 Berry\n\n20) jeep: Trade R3 G3 Jeep\nCatastrophe Lemon Green\n\tjeep: We&#39;ll assume you DID call catastrophe... ;)\n\n21) sketchwick: Build G1 Sketchwick\n\n22) jeep: Build G1 Jeep\n\n23) sketchwick: Build G2 Berry\n\n24) jeep: Move G1 Jeep Berry\n\n25) sketchwick: Trade G2 R2 Berry\n\n26) jeep: Build G2 Jeep\n\n27) sketchwick: Trade G1 Y1 Berry\n\n28) jeep: Discover G2 Jeep Y3 Barn\n\n29) sketchwick: Attack G1 Berry\n\n30) jeep: Build G1 Jeep\n\n31) sketchwick: Build G2 Berry\n\n32) jeep: Trade G3 R3 Jeep\n\n33) sketchwick: Sacrifice G2 Berry\nBuild Y1 Berry\nBuild Y2 Berry\n\n34) jeep: Build G2 Barn\n\n35) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Berry\nBuild G3 Sketchwick\nBuild R1 Berry\n\n36) jeep: Move G2 Barn Sketchwick\n\n37) sketchwick: Trade G1 R1 Sketchwick\n\n38) jeep: Sacrifice G2 Barn\nBuild G1 Sketchwick\nBuild G2 Sketchwick\nCatastrophe Sketchwick Green\n\n39) sketchwick: Trade R1 G1 Sketchwick\n\n40) jeep: Build R1 Jeep\n\n41) sketchwick: Sacrifice Y2 Berry\nMove R2 Berry Jeep\nMove R1 Berry Jeep\nCatastrophe Jeep Red\n\n42) jeep: Build G2 Jeep\n\tjeep: I suck.  I was watching for that forever... until just then.\n\n43) sketchwick: Build Y2 Berry\n\n44) jeep: Trade G2 R2 Jeep\n\n45) sketchwick: Trade G1 R1 Berry\n\n46) jeep: Build R1 Jeep\n\n47) sketchwick: Discover Y2 Berry Y2 Crunch\n\n48) jeep: Discover R1 Jeep Y3 Smash\n\n49) sketchwick: Build Y3 Berry\n\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1327)\nStarted: 2005.11.9, Ended: 2005.11.28\nParticipants: TwoShort (S), cobalt (N)\nWinner: TwoShort\n\n1) cobalt: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld B1 G3 Y3\n\n3) cobalt: Build G1 Cobalt\n\n4) TwoShort: Build Y1 Twoshort\n\n5) cobalt: Trade G1 Y1 Cobalt\n\n6) TwoShort: Build Y2 Twoshort\n\n7) cobalt: Build Y2 Cobalt\n\n8) TwoShort: Trade Y2 G2 Twoshort\n\n9) cobalt: Trade Y1 R1 Cobalt\n\n10) TwoShort: Discover G2 Twoshort B2 Bluestar\n\n11) cobalt: Build G1 Cobalt\n\n12) TwoShort: Build G1 Bluestar\n\n13) cobalt: Trade G1 B1 Cobalt\n\n14) TwoShort: Trade G2 Y2 Bluestar\n\n15) cobalt: Build G1 Cobalt\n\n16) TwoShort: Build G1 Bluestar\n\n17) cobalt: Discover G1 Cobalt Y3 Eta\n\n18) TwoShort: Discover G1 Bluestar Y3 Yolonda\n\n19) cobalt: Build G2 Cobalt\n\n20) TwoShort: Build G2 Yolonda\n\n21) cobalt: Trade G2 R2 Cobalt\n\n22) TwoShort: Build G2 Bluestar\n\n23) cobalt: Move B1 Cobalt Eta\n\n24) TwoShort: Trade G2 R2 Bluestar\n\n25) cobalt: Build G2 Eta\n\n26) TwoShort: Sacrifice G2 Yolonda\nBuild Y1 Bluestar\nBuild Y2 Bluestar\n\n27) cobalt: Move R1 Cobalt Yolonda\n\n28) TwoShort: Build G2 Yolonda\n\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1367)\nStarted: 2005.11.11, Ended: 2005.11.14\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld Y3 B2 G3\n\n3) jeep: Build G1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) sketchwick: Trade G3 Y3 Sketchwick\n\n7) jeep: Build G1 Jeep\n\n8) sketchwick: Build Y1 Sketchwick\n\n9) jeep: Discover Y1 Jeep B3 Moon\n\n10) sketchwick: Trade Y1 R1 Sketchwick\n\n11) jeep: Trade G1 R1 Jeep\n\n12) sketchwick: Build G1 Sketchwick\n\n13) jeep: Build G1 Jeep\n\n14) sketchwick: Build G2 Sketchwick\n\n15) jeep: Move G1 Jeep Moon\n\n16) sketchwick: Discover G1 Sketchwick B1 Over\n\n17) jeep: Build G2 Moon\n\n18) sketchwick: Build G2 Sketchwick\n\n19) jeep: Build G3 Jeep\n\n20) sketchwick: Build G3 Over\n\n21) jeep: Move G1 Moon Over\n\n22) sketchwick: Discover G2 Sketchwick Y1 Myhammy\n\n23) jeep: Sacrifice G2 Moon\nBuild Y2 Moon\nBuild G2 Over\nCatastrophe Over Green\n\n24) sketchwick: Discover G2 Myhammy Y3 Shine\n\n25) jeep: Trade G3 R3 Jeep\n\n26) sketchwick: Discover G2 Sketchwick B1 Run\n\n27) jeep: Move R3 Jeep Shine\n\n28) sketchwick: Sacrifice G2 Shine\nBuild R1 Sketchwick\nBuild R2 Sketchwick\n\n29) jeep: Sacrifice G3 Jeep\nBuild R2 Shine\nBuild R2 Shine\nBuild R3 Jeep\n\n30) sketchwick: Trade G2 Y2 Run\n\n31) jeep: Sacrifice Y2 Moon\nMove R2 Shine Run\nMove R2 Run Sketchwick\nCatastrophe Sketchwick Red\n\n32) sketchwick: Build G1 Sketchwick\n\n33) jeep: Trade R3 G3 Jeep\n\n34) sketchwick: Trade G1 R1 Sketchwick\n\n35) jeep: Move R3 Shine Run\n\n36) sketchwick: Move Y2 Run Moon\n\n37) jeep: Move Y1 Moon Run\n\n38) sketchwick: Build G1 Sketchwick\n\n39) jeep: Build G1 Jeep\n\n40) sketchwick: Build G2 Sketchwick\n\n41) jeep: Trade R3 G3 Run\n\n42) sketchwick: Move G1 Sketchwick Run\n\n43) jeep: Sacrifice R1 Jeep\nAttack G1S Run\n\n44) sketchwick: Move R1 Sketchwick Run\n\n45) jeep: Move Y1 Run Sketchwick\n\n46) sketchwick: Sacrifice R1 Run\nAttack Y1 Sketchwick\n\n47) jeep: Trade G1 Y1 Run\n\tsketchwick: tempting to move y3-run instead\n\tjeep: ?  I think I prefer if you do... doesn&#39;t that let me take over your only red AND your only large?\n\n48) sketchwick: Trade Y1 R1 Sketchwick\n\tsketchwick: yeah didn&#39;t see that :)\n\n49) jeep: Build Y1 Run\n\n50) sketchwick: Discover G2 Sketchwick R1 Home\n\n51) jeep: Trade G1 R1 Jeep\n\n52) sketchwick: Build R2 Sketchwick\n\n53) jeep: Move Y1 Run Sketchwick\n\n54) sketchwick: Move Y3 Sketchwick Home\n\n55) jeep: Sacrifice G3 Run\nBuild Y2 Sketchwick\nBuild R2 Jeep\nBuild R3 Shine\n\tsketchwick: this is all very bad\n\n56) sketchwick: Attack Y2 Sketchwick\n\n57) jeep: Sacrifice R2 Shine\nAttack R1S Sketchwick\nAttack G1S Sketchwick\n\n58) sketchwick: Attack R1 Sketchwick\n\n59) jeep: Sacrifice G1 Sketchwick\nBuild Y2 Run\n\n60) sketchwick: Trade Y2 G2 Sketchwick\n\n61) jeep: Sacrifice Y2 Run\nMove R3 Shine Run\nMove R3 Run Sketchwick\n\n62) sketchwick: Build R2 Sketchwick\nCatastrophe Sketchwick Red\n\n63) jeep: Sacrifice G3 Jeep\nBuild Y2 Run\nBuild Y2 Run\nBuild Y3 Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1345)\nStarted: 2005.11.11, Ended: 2005.12.22\nParticipants: Gort (S), Lexicon (W), Kermit (N), Evilaxe (E)\nWinner: Kermit\n\n1) Kermit: Homeworld B1 G2 Y3\n\n2) Evilaxe: Homeworld Y1 B3 G3\n\n3) Gort: Homeworld B2 Y3 G3\n\n4) Lexicon: Homeworld G3 B2 Y3\n\n5) Kermit: Build Y1 Kermit\n\n6) Evilaxe: Build G1 Evilaxe\n\n7) Gort: Build G1 Gort\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Kermit: Discover Y1 Kermit B3 Binker\n\n10) Evilaxe: Build G1 Evilaxe\n\n11) Gort: Build G1 Gort\n\n12) Lexicon: Build Y1 Lexicon\n\n13) Kermit: Trade Y1 G1 Binker\n\n14) Evilaxe: Discover G1 Evilaxe B2 Xanadu\n\n15) Gort: Discover G1 Gort Y1 Barata\n\n16) Lexicon: Trade Y1 R1 Lexicon\n\n17) Kermit: Build G2 Binker\n\n18) Evilaxe: Build G2 Xanadu\n\n19) Gort: Sacrifice G3 Gort\nBuild G2 Barata\nBuild G2 Barata\nBuild G3 Gort\n\n20) Lexicon: Build R1 Lexicon\n\n21) Kermit: Trade G2 Y2 Binker\n\n22) Evilaxe: Trade G2 Y2 Xanadu\n\n23) Gort: Move G1 Barata Xanadu\n\n24) Kermit: Build Y1 Kermit\n\n25) Gort: Move G2 Barata Binker\n\tSYSTEM: Lexicon resigns.\n\tSYSTEM: Evilaxe resigns.\n\tSYSTEM: Evilaxe resigns.\n\tSYSTEM: Evilaxe resigns.\n\n26) Kermit: Trade Y1 R1 Kermit\n\tKermit: did evilaxe resign as well?\r\n\n\n27) Gort: Sacrifice G3 Gort\nBuild G2 Barata\nBuild G2 Binker\nBuild G3 Gort\n\n28) Kermit: Sacrifice R1 Kermit\nAttack G2S Binker\n\tGort: I think evilaxe resigned from superdupergames; I didn&#39;t see their name on the current roster.\n\n29) Gort: Trade G2 Y2 Binker\n\n30) Kermit: Move G1 Binker Xanadu\n\tKermit: ahh, well then be prepared to win as i am horrible at the 2 player version of this game\r\n\n\n31) Gort: Sacrifice G3 Gort\nBuild G2 Xanadu\nBuild G3 Barata\nBuild G3 Gort\nCatastrophe Xanadu G\n\tGort: Don&#39;t give up too soon. This is my second game online.\n\tGort: TwoShort stomped me into stardust during my first game.\n\tLexicon: Whoa!  I resigned?  How weird.  I was wondering why this game hadn&#39;t come up in a few days.\n\tLexicon: Perhaps a faulty keypress on my part.\n\tGort: Ah, mystery solved. I thought you were doing quite well, Lex.\n\n32) Kermit: Move G2 Binker Barata\nCatastrophe Barata Green\n\n33) Gort: Move Y2 Binker Kermit\n\n34) Kermit: Trade Y3 R3 Kermit\n\tGort: I was hoping you would be distracted by my catastrophe lure-- I hope this works... I think it&#39;s checkmate, but I might be missing something.\n\n35) Gort: Sacrifice Y2 Kermit\nDiscover G3 Gort Y1 Xfer\nMove G3 Xfer Lexicon\n\n36) Kermit: Build R1 Kermit\n\tGort: oops forgot that part. bad robot. no biscuit.\n\n37) Gort: Trade G3 R3 Lexicon\n\n38) Kermit: Discover Y2 Binker G1 Hammer\n\n39) Gort: Attack Y3W Lexicon\n\n40) Kermit: Move Y2 Hammer Gort\n\tKermit: I will be going camping over the holiday. I will leave sometime tomorrow morning and return sometime sunday.\n\tGort: Oh, good. I&#39;m in a bit of a quandary.\n\tGort: I just discovered an unhappy bug in this program. The ships that appear in Lexicon system are not really there. \n\n41) Gort: Sacrifice Y3 Lexicon\nDiscover R3 Lexicon B1 Booberry\nMove G1 Gort Booberry\nMove R3 Booberry Gort\n\tGort: I was wrong. No bug; operator error. I forgot to include the ship owner (n) in my orders. Still learning...\n\n42) Kermit: Move Y2 Gort Booberry\n\n43) Gort: Sacrifice G1 Booberry\nBuild R1 Gort\n\n44) Kermit: Move Y2 Booberry Xanadu\n\n45) Gort: Discover R1 Gort Y1 Rutroh\n\n46) Kermit: Sacrifice R1 Kermit\nAttack Y2E Xanadu\n\n47) Gort: Move R1 Rutroh Lexicon\n\n48) Kermit: Trade Y2 G2 Xanadu\n\n49) Gort: Attack R1W Lexicon\n\n50) Kermit: Build G1 Xanadu\n\n51) Gort: Trade R1 G1 Lexicon\n\n52) Kermit: Trade G1 R1 Xanadu\n\n53) Gort: Attack Y1W Lexicon\n\n54) Kermit: Build R1 Kermit\n\n55) Gort: Attack R1W Lexicon\n\n56) Kermit: Discover R1 Xanadu G1 Oblivia\n\n57) Gort: Trade R3 G3 Gort\n\n58) Kermit: Build R1 Oblivia\n\n59) Gort: Build G1 Gort\n\n60) Kermit: Sacrifice Y2 Xanadu\nMove R1 Oblivia Lexicon\nMove R1 Oblivia Lexicon\nCatastrophe Lexicon R\n\n61) Gort: Discover G1 Lexicon B1 Ouch\n\n62) Kermit: Build G1 Xanadu\n\n63) Gort: Build G1 Ouch\n\n64) Kermit: Trade G2 Y2 Xanadu\n\n\n65) Gort: Move Y1 Lexicon Ouch\n\n66) Kermit: Move Y2 Xanadu Ouch\n\n67) Gort: Build Y1 Ouch\n\n68) Kermit: Sacrifice R1 Kermit\nAttack G1S Ouch\n\n69) Gort: Build Y1 Ouch\nCatastrophe Ouch Y\n\n70) Kermit: Build G2 Ouch\n\n71) Gort: Trade G1 Y1 Ouch\n\n72) Kermit: Trade G2 Y2 Ouch\n\n73) Gort: Discover Y1 Ouch B3 Horizon\n\n74) Kermit: Build G1 Ouch\n\n75) Gort: Trade G3 R3 Gort\n\n76) Kermit: Build G2 Xanadu\n\n77) Gort: Move G1 Gort Ouch\n\n78) Kermit: Trade G1 R1 Ouch\n\n79) Gort: Sacrifice Y1 Horizon\nDiscover G1 Ouch Y3 Doom\n\tKermit: trade g1 r1 ouch\r\n\n\n80) Kermit: Move R1 Ouch Doom\n\tKermit: doh, well at least now I only have to copy to the other form.   \n\n81) Gort: Sacrifice G1 Doom\nBuild R1 Gort\n\n82) Kermit: Move R1 Doom Ouch\n\n83) Gort: Trade R1 G1 Gort\n\n84) Kermit: Build R1 Ouch\n\n\tGort: I am vanquished. Thanks for the game!\n\tSYSTEM: Gort resigns.\n\nHomeworlds Online (SDG# 1369)\nStarted: 2005.11.13, Ended: 2005.11.28\nParticipants: benedict (S), andylooney (N)\nWinner: benedict\n\n1) andylooney: Homeworld B1 G2 Y3\n\tbenedict: hi, I&#39;m hoping to learn a thing or two after my last game which was a disaster!\n\n2) benedict: Homeworld B3 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) benedict: Build Y1 Benedict\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) benedict: Trade Y1 G1 Benedict\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) benedict: Build Y1 Benedict\n\n9) andylooney: Build G2 Clampett\n\n10) benedict: Trade Y1 R1 Benedict\n\n11) andylooney: Build Y1 Andylooney\n\n12) benedict: Discover G1 Benedict Y2 Venetia\n\n13) andylooney: Trade Y1 R1 Andylooney\n\n14) benedict: Build Y1 Benedict\n\n15) andylooney: Discover G1 Clampett Y2 Plugh\n\n16) benedict: Build R1 Benedict\n\n17) andylooney: Build R2 Andylooney\n\n18) benedict: Build R2 Benedict\n\n19) andylooney: Discover R2 Andylooney G3 Garden\n\n20) benedict: Move R2 Benedict Venetia\n\n21) andylooney: Build Y1 Andylooney\n\n22) benedict: Move R1 Benedict Plugh\n\n23) andylooney: Sacrifice R1 Andylooney\nAttack R1S Plugh\n\n24) benedict: Move Y1 Benedict Venetia\n\n25) andylooney: Move Y1 Andylooney Garden\n\n26) benedict: Discover Y1 Venetia G3 Ophelia\n\n27) andylooney: Build Y1 Andylooney\n\n28) benedict: Build Y2 Ophelia\n\n29) andylooney: Sacrifice G2 Clampett\nBuild Y3 Garden\nBuild G2 Plugh\n\n30) benedict: Sacrifice Y3 Benedict\nMove Y1 Ophelia Andylooney\nMove Y2 Ophelia Andylooney\nMove G1 Venetia Benedict\nCatastrophe Andylooney Y\n\tbenedict: hopefully this will work... I&#39;m not very expereinced with this game... and sometimes my orders have odd effects...here goes nothing...\n\n\nHomeworlds Online (SDG# 1410)\nStarted: 2005.11.13, Ended: 2005.11.23\nParticipants: Laurie_Menke (S), JunkMan (N), Aaron (E)\nWinner: JunkMan\n\n1) JunkMan: Homeworld B1 G2 Y3\n\n2) Aaron: Homeworld B2 Y3 G3\n\n3) Laurie_Menke: Homeworld B1 Y3 G3\n\n4) JunkMan: Build Y1 Junkman\n\n5) Aaron: Build G1 Aaron\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) JunkMan: Trade Y1 R1 Junkman\n\n8) Aaron: Trade G1 R1 Aaron\n\n9) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Come on, guys...why you want to hate?  ;o)\n\n10) JunkMan: Build Y1 Junkman\n\n11) Aaron: Build R1 Aaron\n\tAaron: *chuckles*\n\n12) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n13) JunkMan: Trade Y1 G1 Junkman\n\n14) Aaron: Trade R1 Y1 Aaron\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) JunkMan: Discover G1 Junkman Y3 Helloworld\n\n17) Aaron: Build R1 Aaron\n\n18) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n19) JunkMan: Build Y1 Junkman\n\n20) Aaron: Discover R1 Aaron G1 Emeralds\n\n21) Laurie_Menke: Build G1 Laurie_menke\n\n22) JunkMan: Discover G1 Helloworld Y2 Palindrome\n\n23) Aaron: Build G2 Aaron\n\n24) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n25) JunkMan: Build G2 Palindrome\n\n26) Aaron: Move G2 Aaron Emeralds\n\n27) Laurie_Menke: Move G1 Laurie_menke Palindrome\n\n28) JunkMan: Discover G2 Palindrome Y1 Transport\n\n29) Aaron: Move Y1 Aaron Emeralds\n\tAaron: Hrm, not thinking too clearly...\n\n30) Laurie_Menke: Discover G1 Palindrome Y3 Oops\n\tLaurie_Menke: You&#39;re right...my move was not a safe or smart one last time.  Luckily, JunkMan didn&#39;t attack.  :o)  I&#39;ll correct my mistake now...\n\n31) JunkMan: Move G1 Palindrome Transport\n\n32) Aaron: Build Y2 Emeralds\n\tAaron: No, I meant me =D\n\n33) Laurie_Menke: Build G2 Oops\n\tLaurie_Menke: Oh...LOL!\n\n34) JunkMan: Move G1 Transport Aaron\n\n35) Aaron: Attack G1N Aaron\n\n36) Laurie_Menke: Discover B1 Laurie_menke Y2 Luella\n\n37) JunkMan: Build G3 Transport\n\n38) Aaron: Move G1 Aaron Transport\n\tAaron: very interesting\n\n39) Laurie_Menke: Move G1 Oops Transport\nCatastrophe Transport G\n\n40) JunkMan: Trade Y1 G1 Junkman\n\n41) Aaron: Move G2 Emeralds Luella\n\n42) Laurie_Menke: Build R1 Laurie_menke\n\n43) JunkMan: Discover G1 Junkman B3 Parrot\n\n44) Aaron: Build R2 Aaron\n\n45) Laurie_Menke: Build R2 Laurie_menke\n\n46) JunkMan: Build G1 Parrot\n\n47) Aaron: Sacrifice Y2 Emeralds\nMove R1 Emeralds Luella\nMove R1 Luella Laurie_menke\nCatastrophe Laurie_menke Red\n\n48) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: Argh!  As soon as I did that I realized my mistake, but was hoping you wouldn&#39;t see it.  :o(\n\n49) JunkMan: Trade G1 Y1 Parrot\n\n50) Aaron: Move G2 Luella Laurie_menke\n\n51) Laurie_Menke: Trade G2 R2 Laurie_menke\n\n52) JunkMan: Discover G1 Parrot Y1 Azul\n\tLaurie_Menke: Actually, that was another stupid move, darn it!  Why is it that I always see that AFTER I&#39;ve made the move?\n\n53) Aaron: Sacrifice R2 Aaron\nAttack R2S Laurie_menke\nAttack G1S Laurie_menke\n\tAaron: You&#39;re not alone.  I do it *constantly*.  Actually, recognizing a mistake is the first step in not repeating it, so...\n\n54) Laurie_Menke: Move B1 Luella Oops\n\tLaurie_Menke: Hey, JunkMan...how come your Azul system doesn&#39;t have any azul (blue) in it?  ;o)\n\tLaurie_Menke: Well, this doesn&#39;t help at all, but it seems to be my only move, so I&#39;ll take it and thank you both for a great game.  Have fun duking it out between the two of you!  ;o)\n\n55) JunkMan: Build G1 Azul\n\n56) Aaron: Attack Y1S Laurie_menke\n\n57) JunkMan: Build G2 Azul\n\n58) Aaron: Build G3 Laurie_menke\n\n59) JunkMan: Move G1 Azul Aaron\n\n60) Aaron: Attack G1N Aaron\n\n61) JunkMan: Move G1 Azul Aaron\n\n62) Aaron: Attack G1N Aaron\n\n63) JunkMan: Build G3 Azul\n\tAaron: I am not going to let you build there =)\n\n64) Aaron: Move G1 Aaron Azul\n\n65) JunkMan: Move G2 Azul Parrot\n\n66) Aaron: Trade G3 R3 Laurie_menke\n\n67) JunkMan: Build R1 Junkman\n\n68) Aaron: Discover R3 Laurie_menke Y2 Bananas\n\n69) JunkMan: Build G3 Parrot\n\n70) Aaron: Build G3 Laurie_menke\n\n71) JunkMan: Build Y2 Parrot\n\n72) Aaron: Move G2 Laurie_menke Bananas\n\n73) JunkMan: Move R1 Junkman Parrot\n\n74) Aaron: Build Y2 Emeralds\n\n75) JunkMan: Build R1 Parrot\n\n76) Aaron: Sacrifice Y2 Emeralds\nMove G1 Azul Parrot\nMove G2 Bananas Parrot\nCatastrophe Parrot Green\n\n77) JunkMan: Build G1 Azul\n\n78) Aaron: Move R3 Bananas Parrot\n\n79) JunkMan: Sacrifice G1 Azul\nBuild R2 Parrot\nCatastrophe Parrot Red\n\n80) Aaron: Discover G3 Laurie_menke Y2 Bananas\n\n81) JunkMan: Trade Y1 B1 Parrot\n\n82) Aaron: Move G3 Bananas Parrot\n\n83) JunkMan: Move B1 Parrot Azul\n\n84) Aaron: Trade G3 R3 Parrot\n\n85) JunkMan: Move Y2 Parrot Junkman\n\n86) Aaron: Sacrifice Y1 Emeralds\nDiscover R3 Parrot Y1 Bananas\n\n87) JunkMan: Build B2 Azul\n\n88) Aaron: Move R3 Bananas Oops\n\n89) JunkMan: Build B2 Azul\n\n90) Aaron: Attack G2S Oops\n\tAaron: Ahhh, I see now...but too late.\n\n91) JunkMan: Move B1 Azul Aaron\n\n92) Aaron: Attack B1N Aaron\n\n93) JunkMan: Move B2 Azul Aaron\n\n94) Aaron: Sacrifice B1 Aaron\nPass\n\n95) JunkMan: Sacrifice G3 Azul\nBuild B1 Aaron\nBuild B2 Aaron\nBuild Y1 Junkman\nCatastrophe Aaron Blue\n\n96) Aaron: Attack B1S Oops\n\n97) JunkMan: Trade B2 Y2 Azul\n\n\tSYSTEM: Aaron resigns.\n\nHomeworlds Online (SDG# 1421)\nStarted: 2005.11.14, Ended: 2005.11.15\nParticipants: jeep (S), sketchwick (N)\nWinner: jeep\n\n1) sketchwick: Homeworld Y1 B2 G3\n\n2) jeep: Homeworld Y2 B1 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick Y3 Injface\n\n6) jeep: Discover G1 Jeep Y3 Insface\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G2 Jeep\n\n9) sketchwick: Build G2 Injface\n\n10) jeep: Move G1 Insface Sketchwick\n\n11) sketchwick: Trade G3 R3 Sketchwick\n\n12) jeep: Move G1 Sketchwick Injface\n\n13) sketchwick: Move R3 Sketchwick Injface\n\n14) jeep: Trade G2 R2 Jeep\n\n15) sketchwick: Attack G1 Injface\n\n16) jeep: Build G2 Jeep\n\n17) sketchwick: Move G2 Injface Jeep\n\n18) jeep: Trade G3 R3 Jeep\n\n19) sketchwick: Sacrifice G2 Jeep\nBuild G2 Sketchwick\nBuild G2 Sketchwick\n\n20) jeep: Build G3 Jeep\n\n21) sketchwick: Trade G2 B2 Sketchwick\n\n22) jeep: Discover G2 Jeep Y3 Insface\n\n23) sketchwick: Trade G1 R1 Sketchwick\n\n24) jeep: Build G1 Jeep\n\n25) sketchwick: Build R1 Injface\n\n26) jeep: Discover G1 Jeep B3 Moon\n\n27) sketchwick: Sacrifice G1 Injface\nBuild B1 Sketchwick\n\n28) jeep: Build G1 Jeep\n\n29) sketchwick: Move B2 Sketchwick Moon\n\n30) jeep: Move R3 Jeep Moon\n\n31) sketchwick: Move R3 Injface Sketchwick\n\n32) jeep: Attack B2N Moon\n\n33) sketchwick: Move B1 Sketchwick Moon\n\n34) jeep: Attack B1N Moon\n\n35) sketchwick: Trade R1 B1 Sketchwick\n\n36) jeep: Trade B2 Y2 Moon\n\n37) sketchwick: Discover G2 Sketchwick G3 Fuckme\n\n38) jeep: Sacrifice G3 Jeep\nBuild G2 Moon\nBuild G3 Insface\nBuild G3 Jeep\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1415)\nStarted: 2005.11.14, Ended: 2005.11.18\nParticipants: Laurie_Menke (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 G2 Y3\n\tLaurie_Menke: Hi, Jesse....you still willing to play with me, now that an excellent tutor has given me a little bit of experience with the game?  ;o)\n\tJesse: Absolutely!\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\n3) Jesse: Build Y1 Jesse\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Jesse: Trade Y1 B1 Jesse\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Jesse: Build Y1 Jesse\n\n8) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n9) Jesse: Build B2 Jesse\n\n10) Laurie_Menke: Build B2 Laurie_menke\n\n11) Jesse: Discover B2 Jesse G3 Gamera\n\n12) Laurie_Menke: Discover B2 Laurie_menke Y1 Transportation\n\n13) Jesse: Build B3 Jesse\n\n14) Laurie_Menke: Discover B2 Transportation Y3 Anne\n\n15) Jesse: Move B3 Jesse Anne\n\n16) Laurie_Menke: Build B3 Laurie_menke\n\n17) Jesse: Build B3 Gamera\n\n18) Laurie_Menke: Trade B3 R3 Laurie_menke\n\n19) Jesse: Trade Y1 R1 Jesse\n\n20) Laurie_Menke: Build B3 Laurie_menke\n\n21) Jesse: Build R1 Jesse\n\n22) Laurie_Menke: Discover B3 Laurie_menke Y1 Enterprise\n\n23) Jesse: Sacrifice R1 Jesse\nAttack B2 Anne\n\n24) Laurie_Menke: Move G1 Laurie_menke Enterprise\n\tLaurie_Menke: Grrr....sneaky.  But I should have seen it coming.  I should know by now that it&#39;s never a good thing when two players occupy the same star system.\n\n25) Jesse: Trade B2 Y2 Gamera\n\tJesse: Oh, it seemed pretty good to me...  :)\n\n26) Laurie_Menke: Build B2 Enterprise\n\n27) Jesse: Trade B3 G3 Anne\n\n28) Laurie_Menke: Discover B3 Enterprise R3 Mars\n\n29) Jesse: Build B3 Gamera\n\n30) Laurie_Menke: Trade B2 Y2 Enterprise\n\n31) Jesse: Move B3 Gamera Enterprise\n\n32) Laurie_Menke: Sacrifice Y2 Enterprise\nMove G1 Enterprise Mars\nPass\n\n33) Jesse: Build B2 Anne\n\n34) Laurie_Menke: Build R1 Laurie_menke\n\n35) Jesse: Trade B2 R2 Anne\n\n36) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild B2 Mars\nBuild G1 Mars\nBuild G1 Mars\n\n37) Jesse: Sacrifice Y3 Jesse\nMove G3 Anne Enterprise\nMove G3 Enterprise Laurie_menke\nMove B3 Enterprise Laurie_menke\n\tJesse: That&#39;s a bold move, giving up your g3.\n\n38) Laurie_Menke: Attack G3 Laurie_menke\n\tJesse: Hey!  Party at your place!\n\tLaurie_Menke: Hey, now...Jesse, you know I consider you a friend, but now&#39;s not really a good time for a party.  ;o)\n\n39) Jesse: Sacrifice R2 Anne\nAttack R3 Laurie_menke\nAttack G3 Laurie_menke\n\tLaurie_Menke: At least I got a G3 back.  :o)\n\n40) Laurie_Menke: Build G2 Mars\nCatastrophe Mars G\n\tJesse: Well, for a little bit.  R2&#39;s rock.\n\tLaurie_Menke: Oh, now that was not nice!\n\tLaurie_Menke: Well, I don&#39;t see any way out of this...I think that was the fatal blow.  :o(  Thanks for another good game.  :o)\n\n41) Jesse: Sacrifice R3 Laurie_menke\nAttack R1 Laurie_menke\nAttack B1 Laurie_menke\nPass\n\tJesse: Yeah, you were pretty well doomed, there.  I wouldn&#39;t leave my homeworld undefended like this unless I was sure I could pull it off.  And thank you, too.\n\n\nHomeworlds Online (SDG# 1438)\nVariants: &quot;Sinister&quot;\nStarted: 2005.11.14, Ended: 2005.12.1\nParticipants: Jesse (S), JunkMan (N), istari (E)\nWinner: Jesse\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n2) istari: Homeworld G3 B2 Y3\n\n3) Jesse: Homeworld G3 B1 Y3\n\n4) JunkMan: Build Y1 Junkman\n\n5) istari: Build Y1 Istari\n\n6) Jesse: Build Y1 Jesse\n\n7) JunkMan: Trade Y1 G1 Junkman\n\n8) istari: Build Y1 Istari\n\n9) Jesse: Discover Y1 Jesse G2 Groovy\n\n10) JunkMan: Build Y1 Junkman\n\n11) istari: Trade Y1 G1 Istari\n\n12) Jesse: Build Y1 Jesse\n\n13) JunkMan: Build G1 Junkman\n\n14) istari: Build G2 Istari\n\n15) Jesse: Build Y2 Groovy\n\n16) JunkMan: Trade Y1 R1 Junkman\n\n17) istari: Trade G1 R1 Istari\n\n18) Jesse: Trade Y1 R1 Jesse\n\n19) JunkMan: Discover G1 Junkman Y3 Orange\n\n20) istari: Discover G2 Istari B1 Littleblue\n\n21) Jesse: Discover Y2 Groovy G3 Keen\n\n22) JunkMan: Build G1 Orange\n\n23) istari: Build G2 Littleblue\n\n24) Jesse: Build Y1 Jesse\n\n25) JunkMan: Build R1 Junkman\n\n26) istari: Trade G2 Y2 Littleblue\n\n27) Jesse: Build R2 Jesse\n\n28) JunkMan: Discover G1 Orange Y1 Alpha\n\n29) istari: Build Y2 Littleblue\n\n30) Jesse: Trade Y1 B1 Jesse\n\n31) JunkMan: Build G2 Alpha\n\n32) istari: Trade Y2 R2 Littleblue\n\n33) Jesse: Move B1 Jesse Groovy\n\n34) JunkMan: Build R2 Junkman\n\n35) istari: Build R2 Littleblue\n\n36) Jesse: Move R2 Jesse Groovy\n\n37) JunkMan: Move R2 Junkman Orange\n\n38) istari: Build R3 Istari\n\n39) Jesse: Build R3 Jesse\n\n40) JunkMan: Build R3 Orange\n\n41) istari: Sacrifice Y2 Littleblue\nMove R2 Littleblue Orange\nMove R2 Littleblue Orange\nCatastrophe Orange R\n\n42) Jesse: Trade R3 G3 Jesse\n\n43) JunkMan: Build Y1 Junkman\n\n44) istari: Build G2 Littleblue\n\n45) Jesse: Discover G3 Jesse Y2 Swell\n\n46) JunkMan: Move Y1 Junkman Orange\n\n47) istari: Trade G2 Y2 Littleblue\n\n48) Jesse: Build G2 Swell\n\n49) JunkMan: Build Y2 Junkman\n\n50) istari: Move R3 Istari Littleblue\n\n51) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild R2 Jesse\nBuild B1 Groovy\n\n52) JunkMan: Move R1 Junkman Orange\n\n53) istari: Move R3 Littleblue Groovy\n\n54) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild R2 Groovy\nBuild R2 Groovy\nCatastrophe Groovy R\n\n55) JunkMan: Sacrifice Y2 Junkman\nMove G1 Orange Alpha\nMove G1 Alpha Istari\n\n56) istari: Attack G1N Istari\n\n57) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild Y2 Keen\nBuild R2 Jesse\n\n58) JunkMan: Move G1 Alpha Istari\n\n59) istari: Build R2 Istari\n\tistari: b r2 istari\n\n60) Jesse: Sacrifice Y2 Keen\nMove R2 Jesse Groovy\nMove B1 Groovy Keen\n\tistari: Whoops put command in wrong place\n\tJesse: I do that fairly often.  There must be a good way of making it harder to make that mistake.\n\n61) JunkMan: Move G2 Alpha Istari\nCatastrophe Istari Green\n\n62) istari: Move R2 Istari Orange\n\n63) Jesse: Move G3 Swell Orange\n\n64) JunkMan: Discover G1 Junkman B3 Beta\n\n65) istari: Move R2 Orange Swell\n\n66) Jesse: Sacrifice R2 Jesse\nAttack R1N Orange\nAttack R2E Swell\n\n67) JunkMan: Build G1 Beta\n\n68) istari: Trade Y1 G1 Istari\n\n69) Jesse: Attack Y1N Orange\n\n70) JunkMan: Sacrifice G1 Beta\nBuild R2 Junkman\n\n71) istari: Build Y1 Littleblue\n\n72) Jesse: Build G1 Orange\n\n73) JunkMan: Build G2 Beta\n\n74) istari: Build G3 Istari\n\n75) Jesse: Sacrifice G3 Orange\nBuild Y1 Keen\nBuild Y2 Groovy\nBuild G3 Orange\n\n76) JunkMan: Trade G2 B2 Beta\n\n77) istari: Build G2 Littleblue\n\n78) Jesse: Sacrifice G3 Orange\nBuild G3 Orange\nBuild B2 Groovy\nBuild B3 Keen\n\n79) JunkMan: Pass\n\n80) istari: Move Y2 Littleblue Orange\n\n81) Jesse: Sacrifice G3 Orange\nBuild G3 Swell\nBuild R2 Groovy\nBuild R3 Jesse\n\n82) JunkMan: Pass\n\n83) istari: Build R3 Istari\n\n84) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild R3 Orange\nBuild B3 Keen\n\n85) JunkMan: Move R1 Junkman Orange\n\n86) istari: Move R3 Istari Keen\n\n87) Jesse: Sacrifice R2 Groovy\nAttack R1N Orange\nAttack R3E Keen\n\n88) JunkMan: Build R2 Junkman\n\n89) istari: Sacrifice Y2 Orange\nMove Y3 Istari Orange\nMove Y1 Littleblue Orange\nCatastrophe Orange Y\n\n90) Jesse: Build B3 Groovy\n\n91) JunkMan: Trade G1 Y1 Beta\n\n92) istari: Trade G2 Y2 Littleblue\n\n93) Jesse: Sacrifice Y2 Keen\nMove B3 Groovy Beta\nDiscover G3 Swell Y3 Nifty\n\n94) JunkMan: Discover B2 Beta Y2 Delta\n\n95) istari: Trade G3 Y3 Istari\n\n96) Jesse: Sacrifice Y3 Jesse\nMove B3 Keen Junkman\nMove G3 Nifty Junkman\nMove B3 Keen Junkman\n\n97) JunkMan: Attack G3S Junkman\n\n98) istari: Build R1 Istari\n\n99) Jesse: Sacrifice R3 Jesse\nAttack Y3N Junkman\nAttack G3N Junkman\nAttack R2N Junkman\n\n100) JunkMan: Move Y1 Beta Junkman\n\n101) istari: Sacrifice Y2 Littleblue\nMove R1 Istari Jesse\nMove R1 Istari Jesse\n\n102) Jesse: Sacrifice R3 Keen\nAttack R2N Junkman\nAttack Y1N Junkman\nAttack R1E Jesse\n\n\nHomeworlds Online (SDG# 1447)\nStarted: 2005.11.15, Ended: 2005.11.16\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y1 B3 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick B3 J33p\n\n6) jeep: Discover G1 Jeep B2 Sk37chw1ck\n\n7) sketchwick: Trade G1 Y1 J33p\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Build G1 Sketchwick\n\n10) jeep: Build G2 Sk37chw1ck\n\n11) sketchwick: Sacrifice G1 Sketchwick\nBuild Y1 J33p\n\n12) jeep: Trade G2 Y2 Sk37chw1ck\n\n13) sketchwick: Build G1 Sketchwick\n\n14) jeep: Build Y2 Sk37chw1ck\n\n15) sketchwick: Discover Y1 J33p B2 Notleet\n\n16) jeep: Sacrifice Y2 Sk37chw1ck\nDiscover Y2 Sk37chw1ck Y3 Run\nDiscover G1 Sk37chw1ck Y3 Savit\n\n17) sketchwick: Sacrifice G3 Sketchwick\nBuild Y2 J33p\nBuild Y3 Notleet\nBuild G2 Sketchwick\n\n18) jeep: Build G2 Savit\n\n19) sketchwick: Trade G2 R2 Sketchwick\n\n20) jeep: Trade G1 R1 Jeep\n\n21) sketchwick: Move Y3 Notleet Savit\n\n22) jeep: Build R1 Jeep\n\n23) sketchwick: Trade Y2 R2 J33p\n\n24) jeep: Sacrifice Y2 Run\nMove G2 Savit Notleet\nMove G1 Savit Notleet\n\n25) sketchwick: Move Y3 Savit Notleet\n\n26) jeep: Sacrifice G2 Notleet\nBuild G1 Notleet\nBuild G2 Jeep\n\n27) sketchwick: Sacrifice R2 J33p\nAttack G1 Notleet\nAttack G1 Notleet\n\n28) jeep: Discover G2 Jeep B2 Blue23\n\n29) sketchwick: Build Y2 Notleet\n\n30) jeep: Trade G2 Y2 Blue23\n\n31) sketchwick: Sacrifice G1 Notleet\nBuild Y3 J33p\n\n32) jeep: Discover Y2 Blue23 Y3 Goblin\n\n33) sketchwick: Trade Y2 R2 Notleet\n\n34) jeep: Discover R1 Jeep B2 Jeepisdumb\n\n35) sketchwick: Build G1 Notleet\n\n36) jeep: Sacrifice G3 Jeep\nBuild R1 Jeepisdumb\nBuild R2 Jeepisdumb\nBuild R3 Jeep\n\n37) sketchwick: Build R3 Notleet\n\n38) jeep: Trade R2 G2 Jeepisdumb\n\n39) sketchwick: Sacrifice Y3 J33p\nMove R3 Notleet Jeep\nMove R2 Notleet Jeep\nPass\nCatastrophe Jeep Red\n\n\nHomeworlds Online (SDG# 1458)\nStarted: 2005.11.15, Ended: 2005.11.19\nParticipants: Personman (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 B3 Y3\n\n2) Personman: Homeworld G3 B2 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Personman: Build Y1 Personman\n\n5) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n6) Personman: Discover Y1 Personman G1 Ix\n\n7) MatrixFrog: Build G2 Matrixfrog\n\n8) Personman: Build Y1 Personman\n\n9) MatrixFrog: Discover G1 Matrixfrog Y2 Xi\n\n10) Personman: Trade Y1 B1 Personman\n\n11) MatrixFrog: Build G2 Xi\n\n12) Personman: Move B1 Personman Ix\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) Personman: Build B1 Ix\n\n15) MatrixFrog: Build G2 Matrixfrog\n\n16) Personman: Move B1 Ix Xi\n\n17) MatrixFrog: Trade G2 R2 Matrixfrog\n\n18) Personman: Build B1 Ix\n\n19) MatrixFrog: Move G2 Xi Ix\n\n20) Personman: Build Y1 Personman\n\n21) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack B1 Ix\nAttack Y1 Ix\n\n22) Personman: Build B2 Ix\n\n23) MatrixFrog: Build B2 Ix\nCatastrophe Ix B\n\n24) Personman: Trade Y3 R3 Personman\n\n25) MatrixFrog: Move G1 Xi Ix\n\n26) Personman: Build Y2 Personman\n\n27) MatrixFrog: Build G2 Matrixfrog\n\n28) Personman: Move R3 Personman Ix\n\n29) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G2 Ix Personman\nMove G1 Ix Personman\nMove Y1 Ix Personman\n\n30) Personman: Sacrifice Y2 Personman\nMove R3 Ix Xi\nMove R3 Xi Matrixfrog\n\n31) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y2 Personman\nBuild Y2 Personman\nCatastrophe Personman Y\n\tMatrixFrog: Very good game.\n\n\nHomeworlds Online (SDG# 1440)\nStarted: 2005.11.15, Ended: 2005.11.22\nParticipants: Personman (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld Y2 B1 G3\n\n2) Personman: Homeworld Y3 G2 B3\n\n3) MatrixFrog: Build G1 Matrixfrog\n\n4) Personman: Build B1 Personman\n\n5) MatrixFrog: Build G1 Matrixfrog\n\n6) Personman: Trade B1 G1 Personman\n\n7) MatrixFrog: Discover G1 Matrixfrog Y3 Alpha\n\n8) Personman: Build G2 Personman\n\n9) MatrixFrog: Discover G1 Alpha Y1 Beta\n\n10) Personman: Move G1 Personman Beta\n\n11) MatrixFrog: Move G1 Beta Personman\n\n12) Personman: Trade G2 R2 Personman\n\n13) MatrixFrog: Build G2 Personman\n\n14) Personman: Sacrifice R2 Personman\nAttack G1 Personman\nAttack G2 Personman\n\n15) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n16) Personman: Trade G2 Y2 Personman\n\n17) MatrixFrog: Build Y1 Matrixfrog\n\n18) Personman: Build Y2 Personman\n\n19) MatrixFrog: Discover Y1 Matrixfrog Y3 Epsilon\n\n20) Personman: Trade Y2 R2 Personman\n\n21) MatrixFrog: Discover Y1 Epsilon G1 Gamma\n\n22) Personman: Build G2 Beta\n\n23) MatrixFrog: Build Y2 Gamma\n\n24) Personman: Sacrifice Y2 Personman\nDiscover G2 Beta R3 Temp\nMove G2 Temp Matrixfrog\n\n25) MatrixFrog: Build Y2 Matrixfrog\n\n26) Personman: Move R2 Personman Gamma\n\n27) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n28) Personman: A Y2N Gamma\n\n29) MatrixFrog: Build R1 Matrixfrog\n\n30) Personman: Sacrifice Y2 Gamma\nDiscover R2 Gamma R3 Temp\nMove R2 Temp Matrixfrog\n\n31) MatrixFrog: Attack R2 Matrixfrog\n\n32) Personman: Build B1 Personman\n\tPersonman: oh. I read that rule wrong. oops. now i know.\n\n33) MatrixFrog: Attack G2 Matrixfrog\n\n34) Personman: Build G2 Beta\n\n35) MatrixFrog: Discover R2 Matrixfrog Y3 Theta\n\n36) Personman: Build B1 Personman\n\n37) MatrixFrog: Move R2 Theta Beta\n\n38) Personman: Build G3 Beta\n\n39) MatrixFrog: Build G3 Matrixfrog\n\n40) Personman: Trade B1 R1 Personman\n\n41) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y1 Gamma\nBuild Y2 Gamma\nBuild R2 Beta\n\n42) Personman: Build R2 Personman\n\n43) MatrixFrog: Attack G2 Beta\n\n44) Personman: Move R1 Personman Gamma\n\n45) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y1 Gamma Personman\nMove Y1 Gamma Personman\n\n46) Personman: Sacrifice G3 Beta\nBuild R3 Gamma\nBuild R3 Gamma\nBuild R3 Personman\n\tPersonman: Oh crap. I totally saw your y2 in gamma as a y1 because the name of the system is on top of it... that&#39;s bad.\n\n47) MatrixFrog: Move Y2 Gamma Personman\nCatastrophe Personman Y\n\tMatrixFrog: How is a y2 any worse? I can still do this either way...\n\n48) Personman: Trade R2 Y2 Personman\n\tPersonman: i couldn&#39;t attack it last turn. \n\n49) MatrixFrog: Attack G1 Beta\n\tMatrixFrog: Aha.\n\n50) Personman: Move G1 Personman Gamma\n\n51) MatrixFrog: Build G3 Beta\n\n52) Personman: Sacrifice Y2 Personman\nDiscover R3 Gamma G3 Temp\nMove R3 Temp Matrixfrog\n\n53) MatrixFrog: Attack R3 Matrixfrog\n\n54) Personman: Build R2 Personman\n\tPersonman: I think I&#39;ve lost. good game!\n\n55) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n56) Personman: Build R3 Gamma\n\n57) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Beta Personman\nMove G3 Beta Personman\nMove G2 Beta Personman\nCatastrophe Personman G\n\n\nHomeworlds Online (SDG# 1466)\nStarted: 2005.11.16, Ended: 2005.11.29\nParticipants: jeep (S), sketchwick (N)\nWinner: jeep\n\n1) sketchwick: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y1 B3 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick B3 Grape\n\n6) jeep: Discover G1 Jeep B2 Ape\n\n7) sketchwick: Trade G1 Y1 Grape\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Build G1 Sketchwick\n\n10) jeep: Build G2 Ape\n\n11) sketchwick: Sacrifice G1 Sketchwick\nBuild Y1 Grape\n\n12) jeep: Trade G2 Y2 Ape\n\n13) sketchwick: Build G1 Sketchwick\n\n14) jeep: Trade G1 R1 Jeep\n\n15) sketchwick: Discover Y1 Grape R2 Rape\n\n16) jeep: Build G1 Jeep\n\n17) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild Y2 Rape\nBuild Y3 Grape\n\n18) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G2 Ape\nBuild Y3 Ape\n\n19) sketchwick: Sacrifice Y3 Grape\nMove Y1 Rape Grape\nMove Y1 Grape Ape\nMove Y1 Grape Ape\nCatastrophe Ape Yellow\n\n20) jeep: Trade G2 Y2 Jeep\n\n21) sketchwick: Trade G1 R1 Sketchwick\n\n22) jeep: Trade G1 Y1 Ape\n\n23) sketchwick: Build G1 Sketchwick\n\n24) jeep: Build G1 Ape\n\n25) sketchwick: Discover G1 Sketchwick B3 Nape\n\n26) jeep: Sacrifice G2 Ape\nBuild Y1 Jeep\nBuild Y3 Ape\n\tsketchwick: so what do you think of my move to blow up your yellow?\n\tjeep: I didn&#39;t like it.  (must mean it was an alright move for you)\n\n27) sketchwick: Build G2 Sketchwick\n\n28) jeep: Build Y3 Ape\n\n29) sketchwick: Sacrifice G2 Sketchwick\nBuild G2 Sketchwick\nBuild Y3 Rape\n\n30) jeep: Sacrifice Y3 Ape\nMove Y1 Jeep Rape\nMove Y1 Ape Nape\nMove Y1 Nape Rape\nCatastrophe Rape Yellow\n\n31) sketchwick: Trade G2 Y2 Sketchwick\n\n32) jeep: Build G2 Jeep\n\n33) sketchwick: Build G2 Nape\n\n34) jeep: Trade G2 R2 Jeep\n\n35) sketchwick: Trade G1 B1 Nape\n\n36) jeep: Build Y1 Ape\n\n37) sketchwick: Trade B1 Y1 Nape\n\n38) jeep: Discover Y1 Ape G3 Tape\n\tsketchwick: shoulda just forced your surrender :)\n\n39) sketchwick: Move Y2 Sketchwick Tape\n\n40) jeep: Sacrifice Y2 Jeep\nMove Y3 Ape Nape\nMove Y3 Nape Sketchwick\n\tjeep: I&#39;m on my way back home now.  Little internet access until Monday.\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1487)\nStarted: 2005.11.18, Ended: 2005.11.21\nParticipants: Hedge_o_Matic (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tHedge_o_Matic: Hi, Andy!\n\tHedge_o_Matic: This is my first-ever game of Homeworlds!\n\tandylooney: hello and welcome to the game!\n\n2) Hedge_o_Matic: Homeworld G1 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tHedge_o_Matic: Yay!  My first homeworld!  (sniff)\n\n4) Hedge_o_Matic: Build Y1 Hedge_o_matic\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Hedge_o_Matic: Trade Y1 R1 Hedge_o_matic\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) Hedge_o_Matic: Move R1 Hedge_o_matic Clampett\n\n9) andylooney: Discover G1 Clampett G1 Gumby\n\tandylooney: Well, aren&#39;t you aggresive! I didn&#39;t realize before that you&#39;d mirrored my homeworld...\n\n10) Hedge_o_Matic: Trade Y3 G3 Hedge_o_matic\n\n11) andylooney: Build Y1 Andylooney\n\n12) Hedge_o_Matic: Build G2 Hedge_o_matic\n\n13) andylooney: Sacrifice Y3 Andylooney\nMove G1 Gumby Clampett\nMove G1 Clampett Hedge_o_matic\nPass\nCatastrophe Hedge_o_matic Green\n\tandylooney: Thanks for the game and better luck next time!\n\n\nHomeworlds Online (SDG# 1494)\nVariants: &quot;Sinister&quot;\nStarted: 2005.11.20, Ended: 2005.11.28\nParticipants: Personman (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 G2 Y3\n\tPersonman: I accepted this challenge without knowing what sinister is, so I&#39;m hoping i don&#39;t regret it :) oddly, the rules for this option are not in the wiki or on the wunderland page. I am about to go google it, but if i find nothing i will be wanting to know what it is...\n\tPersonman: oh. um, correct me if i&#39;m wrong, but isn&#39;t sinister entirely irrelevant in a two player game\n\tJesse: Yeah, there&#39;s no functional difference between regular and sinister two-player homeworlds.  I was just feeling a little evil when I set up the game.  Also, I was curious whether the system would allow it.\n\n2) Personman: Homeworld B3 G1 Y3\n\tJesse: Here&#39;s a tip: If you want a brief description of the game variants, you can click on &quot;New Challenge&quot; on the challenges page.  The new challenge page always has a brief description of each variant.\n\tJesse: So, have you played Homeworlds other than a couple of games on this server?\n\tPersonman: nope! but I&#39;ve played it a couple times on the server, and I love it so far. If I&#39;m ever in the same room with other gamers and an icehouse set, i&#39;ll probably make them play it.\n\n3) Jesse: Build Y1 Jesse\n\n4) Personman: Build Y1 Personman\n\tJesse: Okay, I&#39;ll try to teach you a thing or two while we play.  Let me know if there&#39;s anything you&#39;re unsure about.\n\n5) Jesse: Discover Y1 Jesse G3 Fresh\n\n6) Personman: Build Y1 Personman\n\n7) Jesse: Build Y2 Jesse\n\tJesse: That&#39;s not so good, because it gives me the first shot at a medium.\n\n8) Personman: Discover Y1 Personman G2 Tazenda\n\n9) Jesse: Trade Y2 G2 Jesse\n\n10) Personman: Build Y2 Tazenda\n\n11) Jesse: Build Y2 Jesse\n\n12) Personman: Trade Y1 B1 Personman\n\tJesse: Be careful, you don&#39;t want to build right now.  I can fly the y1 at Fresh into either Tazenda or (with a sacrifice) your homeworld.\n\n13) Jesse: Trade Y2 R2 Jesse\n\tJesse: Good choice.\n\n14) Personman: Move B1 Personman Tazenda\n\tJesse: You usually don&#39;t want to wait too long after your opponent takes red before you get into red yourself, though you&#39;re not in immediate danger this turn.\n\n15) Jesse: Discover G2 Jesse Y3 Belly\n\n16) Personman: Trade Y2 R2 Tazenda\n\n17) Jesse: Build G1 Belly\n\n18) Personman: Build R1 Tazenda\n\n19) Jesse: Build G1 Belly\n\n20) Personman: Move R2 Tazenda Belly\n\tJesse: You have the advantage in red and blue right now, but I&#39;m hoping to make up for that in the long run by freezing you out of green ships.\n\n21) Jesse: Sacrifice R2 Jesse\nAttack R2 Belly\nPass\n\tPersonman: Just so you know, I&#39;m not saying anything because i have nothing to say, not because i&#39;m ignoring you. I apprecaite the advice a lot, especially coming *after* my moves as it does. It&#39;s a good way to learn. Thanks a lot. \n\tJesse: Great, glad to help!\n\tJesse: Don&#39;t forget that I can sacrifice my r2 to attack.  It&#39;s not ideal here, since there&#39;s only one ship I can nab, but I have no problem sacrificing an r2 to take an r2.\n\n22) Personman: Build B1 Tazenda\n\n23) Jesse: Discover G2 Belly B2 Bork\n\n24) Personman: Build B2 Tazenda\n\tJesse: I&#39;m thinking about building g3s and swapping them out for b3s to really mess up your plans, but I&#39;m not sure I can do that successfully.  There&#39;s a danger of you sending over blues to destroy Bork itself.  Another possibility would be to just build the two g3s and send them into your home system to blast you.\n\n25) Jesse: Build G3 Bork\n\n26) Personman: Trade Y3 G3 Personman\n\n27) Jesse: Sacrifice G3 Bork\nBuild G3 Bork\nBuild Y1 Fresh\nBuild Y2 Jesse\n\tJesse: There is a significant danger to switching to a green ship like that.  It&#39;s your only ship in the system, and it&#39;s the same color as one of the system markers.  I could sacrifice a y2 or y3 to send two green ships in to blast you, except that the only one I have is also the only ship in my own home system.\n\n28) Personman: Trade G3 R3 Personman\n\tJesse: This maneuver is called the factory, since it allows you to build ships much faster than normal.  Unfortunately for you, it takes two green ships, or you won&#39;t be able to rebuild the g3.\n\tJesse: Also, note that it&#39;s not possible for me to blast your homeworld without abandoning my own, so you need to defend by either changing the g3 to another color, or recalling a red, blue, or yelow ship from Tazenda.\n\n29) Jesse: Build G3 Bork\n\tJesse: Heh, excuse me.  I meant &quot;it&#39;s now possible&quot;, not &quot;it&#39;s not possible&quot;.  I suppose you probably figured that out, but it&#39;s best to be clear.\n\n30) Personman: Build Y2 Tazenda\n\tPersonman: yeah, i noticed that. :)\r\n\n\tJesse: Since you don&#39;t have any green ships, I&#39;m fairly safe doing this.  I have two large ships within range of your homeworld, and could put them both in there at the same time using a y2 sacrifice.  Think about how you might defend yourself against that.\n\n31) Jesse: Build R1 Belly\n\tJesse: One defense against attackers is to attack them and make them your own.  But with two of them in your system, simply attacking one of them would leave the other free to capture two ships with an r2 sacrifice.  If you had an r2 to sacrifice, you could capture both g3s at once, so I would be very cautious about sending them in.\n\tJesse: The other way is to destroy them by causing a catastrophe.  In this case, that isn&#39;t possible because you don&#39;t have any green ships, and there aren&#39;t any available for you to switch any of your ships.  Besides, that would destroy half of your system anyway, and presumably you don&#39;t want that.\n\tJesse: Okay, since you&#39;ve already moved, I&#39;m going to go a little easy on you right now to give you some more time to process it.\n\n32) Personman: Trade Y2 R2 Tazenda\n\tJesse: (The things I&#39;m *not* doing here are using my factory, switching a g3 for a y3 or a b3, invading your homeworld, and spreading out my yellows so I can build that y3 as soon as you build the y2.)\n\n33) Jesse: Move Y1 Fresh Bork\n\tJesse: Yeah, that will be safer.\n\n34) Personman: Move B1 Tazenda Fresh\n\tJesse: So, now I&#39;m spreading out my yellows, as well as giving my g3s more mobility.\n\n35) Jesse: Sacrifice R1 Belly\nAttack B1 Fresh\n\n36) Personman: Discover B2 Tazenda Y3 Toosk\n\tJesse: Now I have a blue, though it&#39;s debatable whether it was worth sacrificing my r1 to get it.\n\n37) Jesse: Trade G2 R2 Bork\n\tJesse: Good choice!\n\n38) Personman: Discover B2 Toosk G2 Plover\n\n39) Jesse: Trade G3 Y3 Bork\n\tJesse: Ooh, another good choice!\n\n40) Personman: Build B2 Plover\n\n41) Jesse: Build G3 Bork\n\n42) Personman: Trade B2 Y2 Plover\n\n43) Jesse: Sacrifice Y3 Jesse\nMove G3 Bork Personman\nMove G3 Bork Personman\nMove Y3 Bork Personman\n\tJesse: I should point out that with me having three large ships on your doorstep now, you&#39;re in a very dangerous position.  If I send them all in at once, you won&#39;t be able to capture them all in one turn.  You could really use another large ship at home, or another r3 anywhere that you could sacrifice.  Unfortunately, it&#39;s very hard for you to get them, right now.  You&#39;re pretty well on the ropes facing four against one large ships.\n\tJesse: In fact, I think sending my ships in now is a finishing blow.  There doesn&#39;t seem to be much point in dragging this out, so I&#39;ll go ahead and do it.  Let me just say you&#39;ve played well without any direction these last few turns, you were just in a very difficult situation.  I think the main lesson of this game may be this: Be wary of your opponent freezing you out of ships of any given color.  Once I got ahead in green, and built a factory, I had much better production capacity which allowed me to get ahead with other things as well.  Except blue.  Making a run on blue ships was a good idea, but you don&#39;t want to do it at the expense of being frozen out of something else.\n\n44) Personman: Sacrifice R2 Tazenda\nAttack G3 Personman\nAttack Y3 Personman\n\n45) Jesse: Sacrifice R2 Belly\nAttack R3 Personman\nAttack Y3 Personman\n\tJesse: Right, that&#39;s your best delay tactic.\n\n\tPersonman: Alrighties. Well, I can see my doom quite clearly at this point, so I won&#39;t make us go through the motions. Thanks for a great game and advice. Perhaps we shall play again someday. \n\tSYSTEM: Personman resigns.\n\nHomeworlds Online (SDG# 1547)\nStarted: 2005.11.20, Ended: 2005.11.27\nParticipants: MarkSteere (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld G2 B3 Y3\n\tMarkSteere: Thank you for offering to teach this to me.  I imagine the rules are not all that complicated, but I think I do need someone to walk me through it.\r\n\n\tMarkSteere: ..Can I be the evil one?  I like the idea of wanton destruction more than banding together.\r\n\n\tLaurie_Menke: LOL...actually, I think we&#39;re both the evil ones....the version that Aaron has implemented doesn&#39;t seem to have that evil/good distinction.  It&#39;s just every player for themselves.  :o)\n\tLaurie_Menke: Now...the first thing you have to do is make a homeworld.  Your homeworld will have two stars (a binary star system) and one ship protecting it.  Because the size of the stars effects movement later, you want to make sure they are two DIFFERENT sizes, and not exactly the same sizes as my two.  Your ship should always be a 3 to start, because it&#39;s strongest.  Color-wise, use green, blue, and yellow between your two stars and one ship.  Diversity is good, and you won&#39;t need red until later.\n\n2) MarkSteere: Homeworld B1 G3 Y3\n\tLaurie_Menke: So since I&#39;ve got a 2 and a 3 in my star system, you&#39;ll want either a 1 &amp; 2 or 1 &amp; 3.  So you&#39;ll type something like this (you can change the colors and numbers):  &quot;homeworld b1 g3 y3&quot;\n\tMarkSteere: homeworld b1 g3 y3\n\tMarkSteere: homeworlds b1 g3 y3\n\tMarkSteere: homeworld b1 g3 y3\n\tMarkSteere: homeworld B1 G3 Y3\n\tMarkSteere: There&#39;s already a problem.  Not good.\n\tLaurie_Menke: Oh, I&#39;m sorry...I&#39;ve made that same mistake myself.  There&#39;s actually a different input box for commands.  Your first command was perfect...you just need to put it in the box at the top left of the screen.  Sorry I was so long in responding!  :o(\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\tMarkSteere: oops    :D\n\tMarkSteere: Why is my ship located differently from yours?\r\n\n\tLaurie_Menke: The computer just randomly places it somewhere in the square.  The position within the square doesn&#39;t matter.  When you move, you will be moving to a different black square.\n\tLaurie_Menke: But you can&#39;t move yet, because you can&#39;t leave your homeworld without a ship.  So the next thing we each need to do is build up some more ships.  You have to have green available to do that (which we both do).  You can only build ships in colors you already have.  Since we both have yellow ships, we&#39;ll both be building more yellow ships for now.\n\tLaurie_Menke: You can only build the smallest ship available.  Since there are plenty of y1&#39;s in the &quot;global stash&quot; (above our playing area), we&#39;ll both have to build y1&#39;s.\n\n4) MarkSteere: Build Y1 Marksteere\n\tMarkSteere: Ok, so build y1 in what?\r\n\n\n5) Laurie_Menke: Build Y1 Laurie_menke\n\tMarkSteere: I figured something out.  Awesome!\n\tMarkSteere: ..So the reason I can&#39;t use my y3 is because it has to stay near my home base to protect it, right?\r\n\n\tLaurie_Menke: Right.  If you wanted to, you could move your y3 now because your y1 could stay to protect your homeworld.  But it&#39;s smart to always keep a 3-sized ship in your homeworld.\n\tLaurie_Menke: OK...so now is the first time we have multiple options.  At this point you can:  1) build another yellow ship, 2) move one of your ships to a new location, or 3) trade one of your yellow ships in for a different color.\n\tLaurie_Menke: BTW...good job of figuring out the code!  :o)  I told you you&#39;d be flying in no time.  :o)\n\tLaurie_Menke: Because I am new to the game myself, I really don&#39;t know which is the best of those three options to choose right now.  It seems like in most of the games I&#39;ve played, people keep building at this point.  But sometimes they start moving ships.\n\tLaurie_Menke: So I&#39;ll let you make your own decision.  Here&#39;s the way you would code each type.  1) build y2 MarkSteere (it&#39;s a y2 now because all the y1&#39;s are taken)  2) pick a name for a new system...it can be anything.  For this example, let&#39;s call it &quot;Cool.&quot;  And let&#39;s say you want to move your y1 ship.  The code would be:  discover y1 MarkSteere g2 Cool.  You could actually make the new star system a y2 or b2 or r2, but it has to be a 2 because you have a 1 and a 3 in your system, and you can&#39;t travel to the same number.\n\tLaurie_Menke: 3) trade y3 g3.  Or you could trade in your y1.  You can trade in for any color, but it has to be the same size.\n\tLaurie_Menke: So...I have now realized that I have typed waaaayyyy too much and you&#39;re probably very confused.  I&#39;m sorry.  Let&#39;s simplify...would you rather build, move, or trade for this move?\n\n6) MarkSteere: Discover Y1 Marksteere G2 Cool\n\tMarkSteere: Ok, I understand that I can build another ship of the same color as my existing ship.  Or I can trade one of my existing ships for a different ship of the same size but different color.  I&#39;m a little confused on the move though.  What is the significance of the word &quot;discover&quot; here?  I&#39;m going to do the discover thing just to see what happens.\n\n7) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\tLaurie_Menke: Good job!  That was the trickiest one, and you did it just great!  :o)  The reason you used &quot;discover&quot; instead of &quot;move&quot; is that you had no star system to move to...there was just blank space between us.  So you &quot;discovered&quot; a new star system in your travels.  Once you have another ship ready for travel, you can simply &quot;move&quot; to that star system if you wish.  But &quot;discovering&quot; new systems also uses up an extra piece (in this case a g2), which sometimes comes in handy if you&#39;re trying to keep your opponent from getting that piece.\n\tLaurie_Menke: Now...I can&#39;t build any more, because that would make 4 yellows in my star system.  If that ever happens, you could use the &quot;catastrophe&quot; command to wipe out all the yellows in my system.  So I need to either &quot;discover&quot; like you did or &quot;trade.&quot;  I think I&#39;ll trade.\n\n8) MarkSteere: Build Y1 Cool\n\tLaurie_Menke: OK, now your current options are:  1) build a y1 in the MarkSteere system, 2) build a y1 in the Cool system, 3) move your Cool ship back to MarkSteere, 4) discover another new system with your y1 ship in the Cool system, or 5) trade your y3 ship for a different color.\n\n9) Laurie_Menke: Discover Y1 Laurie_menke G1 Factory\n\n10) MarkSteere: Discover Y1 Cool G3 Eastpaloalto\n\tLaurie_Menke: OK...now one thing we both need to start watching out for is getting too many ships of the same color.  Four of the same color can trigger a catastrophe.  Right now the Cool and Factory star systems are only one move apart and both contain yellow ships.  That&#39;s one thing you want to keep an eye out for.\n\tLaurie_Menke: You&#39;re doing great on your own, though...I&#39;ll shut up for a while and just let you play.  If you have questions, ask.  :o)\n\n11) Laurie_Menke: Build Y2 Factory\n\tMarkSteere: How do you keep track of which pieces are yours? I tried to move a ship from the Factory system and it wouldn&#39;t let me.\r\n\n\tMarkSteere: ..By the way, you&#39;re not talking to much.  I&#39;d be lost without your instructions.  This is really an odyssey.  I wonder if magic mushrooms played a part in the design of this game.  That&#39;s not intended as an insult.  All of my games were designed under the (strong) influence of California greenbud.  Although I&#39;m sober now for health reasons.  I think there may have been something stronger involved in the inception of Homeworlds.\n\tLaurie_Menke: Actually, Andy Looney freely admits that marijuana plays a part in developing his games.  He even has a game out called Stoner Fluxx in which some of the profits go to charities trying to legalize marijuana.  ;o)\n\tLaurie_Menke: As for keeping track of pieces, it is sort of hard to see who&#39;s who after a while.  Your own ships are always facing away from you.  So in this case, your ships face down, mine face up.\n\tLaurie_Menke: BTW...I noticed East Palo Alto...does that mean you live in the Bay Area?  Because I&#39;m in Davis....small world.  :o)\n\n12) MarkSteere: Trade Y3 R3 Marksteere\n\n\tMarkSteere: I live in downtown Palo Alto.  This is my first house which I bought a couple of years ago.  It&#39;s wierd feuding with the neighbors instead of management.\n\n13) Laurie_Menke: Move Y2 Factory Laurie_menke\n\tLaurie_Menke: LOL...well, I&#39;m still renting, so maybe that&#39;s a good thing, eh?\n\n14) MarkSteere: Build Y2 Eastpaloalto\n\tMarkSteere: Renting isn&#39;t so bad.  The worst thing about it is that the owner or management can come into your space.  They (usually) give you notice, but it still sucks.  And then after the inevitable feud, you still have to go to them to get your packages.  Yuck.  I won&#39;t miss that at all.\n\n15) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\tMarkSteere: .. of course that&#39;s apartments.  Renting a house is probably a different animal.\n\tMarkSteere: ..Are you near the university?\n\tJesse: Hi, guys.  I was just reading through the discussion here (great introductory explanations, Laurie!), and wanted to mention one thing.  To give credit where it is due, I don&#39;t think Andy actually had much input on the design of Homeworlds, though he was instrumental in developing the two-player version, with its reduced stash.  Homeworlds development was captained by John Cooper, with input from his regular game development and playtesting group.  I don&#39;t know which, if any of them, smoke (not that it matters).\n\tLaurie_Menke: Oh...I didn&#39;t know that!  Thanks for the clarification, Jesse.  I hereby apologize to John Cooper.  My bad...  And thanks, also, for the compliment.  :o)  You&#39;re the expert at this game, so please add anything that would be helpful or correct me if I make a mistake.  :o)\n\tLaurie_Menke: And Mark, I&#39;m in North Davis, about 3 miles from the university, and am renting a co-op apartment.  And I know what you mean about management coming in all the time...it is a pain.\n\n16) MarkSteere: Discover Y2 Eastpaloalto G2 Menlopark\n\tMarkSteere: Thank you for the clarification Jesse.  I too had assumed Andy Looney was the original inventor.\n\tMarkSteere: Apparently John also invented Icehouse, another game I had thought Andy Looney invented.\n\n17) Laurie_Menke: Move B2 Laurie_menke Factory\n\tMarkSteere: I was always afraid management would let my cats out.  It&#39;s hard to convey how much I&#39;m attached to my cats and vice versa.  If you and my cats were in a burning building, you might have to fend for yourself.\n\tLaurie_Menke: Yep...I have two cats myself, and they are my &quot;kids.&quot;  ;o)\n\n18) MarkSteere: Build Y2 Eastpaloalto\n\tMarkSteere: I don&#39;t know where we&#39;re going in this game.  If you see a way to attack me, don&#39;t hold back.  I will learn from that.  Or do we have to set up all the pieces before the attack phase begins?\n\n19) Laurie_Menke: Build Y2 Factory\n\tLaurie_Menke: Yes, that&#39;s my biggest frustration with this game...it&#39;s hard to know what the goal is at any particular time.\n\n20) MarkSteere: Build R1 Marksteere\n\tLaurie_Menke: The ultimate goal is to destroy or take over the opponent&#39;s homeworld.  In my experience, this frequently happens because of &quot;sacrifice&quot; and &quot;catastrophe&quot; actions.  For example, right now I *could* sacrifice my y3 in my homeworld to get three movement turns in a row.  I could then move my two yellows from Factory to EastPaloAlto, making a total of 4 yellows in one place, and then trigger a catastrophe that removed all 4 ships.  I don&#39;t want to do that because I would lose three ships in the process, but that&#39;s an example of the kind of thing you&#39;re trying to set up.\n\tLaurie_Menke: Attacking doesn&#39;t happen as often as you&#39;d think it would, because it&#39;s hard to get your ships and the enemy ships in the same star system.  But it does happen from time to time.\n\tLaurie_Menke: My personal goal right now is to try to get more 3-sized ships.  That&#39;s why I&#39;m building so much yellow...to get to the 3-sized ones.  Then I can trade the y3&#39;s in for 3&#39;s of other colors, which gives me good &quot;sacrificing&quot; power.\n\tMarkSteere: I think I still need advice on my moves.  Right now I&#39;m just creating more pieces and trading them.  Is it possible to create more star systems, or is there a limit on that?\r\n\n\tMarkSteere: I keep getting errors like these systems are not connected or you don&#39;t have access to this technology.\n\n21) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\tLaurie_Menke: You can discover an unlimited number of star systems.  However, the star you choose it to be must first be available in the global stash, and second be a different number from the star system you&#39;re coming from.  So if you&#39;re coming from MarkSteere, it would have to be a 2.  From EastPaloAlto a 1 or a 2, etc.\n\tLaurie_Menke: The &quot;these systems are not connected&quot; error message has to do with what I just described...the numbers of the star systems.  The &quot;you don&#39;t have access to this technology&quot; error message means you are trying to do something that doesn&#39;t match the colors you have.  For example, you couldn&#39;t trade one of your yellow ships for a different color in EastPaloAlto because there is no blue--the trading color--available there.\n\n22) MarkSteere: Move Y2 Eastpaloalto Factory\n\tLaurie_Menke: As for advice on your moves, let&#39;s see...  One option would be to sacrifice your y2 in MenloPark in order to move both your yellow from EastPaloAlto to Factory.  You could then end your turn by creating a catastrophe in Factory that would wipe out all yellow ships there.  I wouldn&#39;t recommend it, because you&#39;d lose three ships in the process of knocking out only two of mine.  But it&#39;s a thought.  ;o)\n\tLaurie_Menke: Another option would be to move your y2 from EastPaloAlto to Factory this turn.  Then next turn you could sacrifice your r3 (a bit of a risky move because it leaves your homeworld vulnurable) in order to attack all three of my ships in Factory.  That&#39;s probably what I would do myself.\n\tLaurie_Menke: Or you could continue to either build or spread your ships out among more star systems.\n\tMarkSteere: When you sacrifice, are the pieces permanently removed, or do they go back into the stockpile?\n\n23) Laurie_Menke: Move Y2 Factory Laurie_menke\n\tLaurie_Menke: They go back into the stock pile.\n\tLaurie_Menke: OK, now that I look at it, I gave you bad advice (as I&#39;ve said, I&#39;m still learning this game myself).  Now that you&#39;ve moved into Factory, I can see that I *could* sacrifice my r1 in Laurie_Menke in order to attack your y2 in Factory and stop you imminent attack on me.  I didn&#39;t think of that when I suggested it to you.  :o(  Sorry.  So...I&#39;m not going to do that move...I&#39;m just going to try to save one of my men.\n\n24) MarkSteere: Sacrifice R3 Marksteere Attack Y1 Factory\nAttack B2 Factory\nPass\nPass\n\tLaurie_Menke: So now, if you would like to attack, you would type:  &quot;sacrifice r3 MarkSteere (carriage return) attack y1 Factory (carriage return) attack b2 Factory (carriage return) pass&quot;  You need the pass at the end because you have three attack moves available but can only use two.\n\n25) Laurie_Menke: Build Y3 Laurie_menke\n\tLaurie_Menke: Oops...you only wanted to pass on one of your attacks, not two.  Now my y1 is going to get away.\n\tLaurie_Menke: Actually, maybe I&#39;ll let it stay for the moment.  I want to build some more 3-sized ships.\n\n26) MarkSteere: Build Y3 Eastpaloalto\n\tMarkSteere: I got an error with the one pass.  It said something like you need to pass, so I changed it to two.\n\tMarkSteere: ..Please don&#39;t hold back on beating me, even if it&#39;s at the expense of having given my poor advice.  I&#39;m anxious to see what happens.  I&#39;m starting to get the feeling like we&#39;re playing Tonka toys in a sandbox with no goal in sight.\n\n27) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\tLaurie_Menke: Huh...that&#39;s strange about the error.  And, yes, I know what you mean about feeling like there&#39;s no goal.  That&#39;s what I meant in our early e-mails about the movement being pretty easy to learn, but knowing what the goal should be is the tough part.  I still haven&#39;t learned that myself, so at this point I think we&#39;re probably about even in our skill level.  ;o)\n\n28) MarkSteere: Build Y2 Eastpaloalto\n\n29) Laurie_Menke: Move Y1 Factory Eastpaloalto\nCatastrophe Eastpaloalto Y\n\tLaurie_Menke: OK, here&#39;s what I warned about with getting too many of one color together.  I&#39;m gong to move from Factory to EastPaloAlto and cause a catastrophe, which will wipe out three of your ships and only one of mine...\n\n30) MarkSteere: Build R1 Marksteere\n\tLaurie_Menke: Notice that since there were no ships in the EastPaloAlto system any more, the system disappeared, and all the other systems rearranged themselves.  The rearranging doesn&#39;t mean anything...it&#39;s just a slightly annoying thing that the computer program does for unknown reasons.  ;o)\n\tLaurie_Menke: You&#39;ve still got five ships to my four, but it sort of levelled the playing field a little.  But now I&#39;m thinking I&#39;m going to try to move into your homeworld with a 2 or 3 sized ship, since you&#39;ve only got a 1 protecting it.\n\n31) Laurie_Menke: Discover Y3 Laurie_menke Y1 Lookout\n\n32) MarkSteere: Trade R1 G1 Marksteere\n\tMarkSteere: build g3 laurie_menke\n\n33) Laurie_Menke: Discover Y3 Lookout R2 Hereicome\n\n34) MarkSteere: Build G1 Marksteere\n\tMarkSteere: Just when I thought I wasn&#39;t confused enough, now I have hyperspatial flux to contend with.\n\n35) Laurie_Menke: Build G3 Laurie_menke\n\tLaurie_Menke: LOL!\n\n36) MarkSteere: Build R1 Marksteere\n\n37) Laurie_Menke: Move Y3 Hereicome Marksteere\n\n38) MarkSteere: Trade R1 Y1 Marksteere\n\n39) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R1 Marksteere\n\n40) MarkSteere: Move Y1 Marksteere Menlopark\n\n41) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack G1 Marksteere\nAttack G1 Marksteere\n\tLaurie_Menke: Well, I think that about does it, Mark.  Good job on your first game!  :o)\n\n\nHomeworlds Online (SDG# 1531)\nStarted: 2005.11.20, Ended: 2005.11.21\nParticipants: MatrixFrog (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld Y1 B3 G3\n\n2) MatrixFrog: Homeworld B3 Y2 G3\n\n3) Calavera: Build G1 Calavera\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) Calavera: Build G1 Calavera\n\n6) MatrixFrog: Build G2 Matrixfrog\n\n7) Calavera: Discover G1 Calavera B2 Rillanon\n\n8) MatrixFrog: Discover G2 Matrixfrog Y1 Epsilon\n\n9) Calavera: Trade G1 R1 Calavera\n\n10) MatrixFrog: Discover G2 Epsilon Y2 Delta\n\n11) Calavera: Build G1 Rillanon\n\n12) MatrixFrog: Build G2 Delta\n\n13) Calavera: Trade G3 Y3 Calavera\n\n14) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Matrixfrog\nBuild G3 Delta\n\n15) Calavera: Sacrifice Y3 Calavera\nDiscover G1 Rillanon R1 Krondor\nMove G1 Krondor Matrixfrog\nPass\nCatastrophe Matrixfrog G\n\n\nHomeworlds Online (SDG# 1551)\nStarted: 2005.11.20, Ended: 2005.12.1\nParticipants: Lexicon (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G2 B1 Y3\n\tJesse: Hi, I&#39;ll be happy to teach you a bit about Homeworlds.\n\tJesse: First of all, have you read the tips for new players on the wiki about setting up your homeworld?\n\n2) Lexicon: Homeworld G2 B3 Y3\n\tLexicon: Yep, I&#39;ve got that part figured out.  I don&#39;t know if you&#39;re on the mailing list or not, but I&#39;ve played this game a few times.\n\tLexicon: The problem is my friends and I didn&#39;t read the rules very carefully (or maybe had a different version of the rules?) and had different powers.  They were more intuitive, but were succeptable to a 2-3 move kill.  \n\n3) Jesse: Build Y1 Jesse\n\tJesse: Yeah, that&#39;s no good.  Careful play should at least keep you alive for a long time.  Going offensive too soon is usually a big mistake.\n\n4) Lexicon: Build Y1 Lexicon\n\tJesse: I am on the mailing list, but I don&#39;t check that account all that often.\n\n5) Jesse: Discover Y1 Jesse G3 Tree\n\tJesse: So, what is it that you need help with?  What do you find unintuitive about the rules?\n\n6) Lexicon: Trade Y1 R1 Lexicon\n\tLexicon: If you&#39;ve played Gnostica, I&#39;m used to thinking like that.  Its system is build&amp;grow as opposed to build&amp;trade. \n\tLexicon: My understanding of these rules is that the only way to get a 2 pip ship is to run out of 1 pip in some color, then build another of that color.  This is kind of neat, though I&#39;ll need a few games to figure out how long it takes to run out of ships of a given size.\n\n7) Jesse: Build Y1 Jesse\n\tLexicon: Resource limitations will clearly be more important in this game, and I suspect catastrophies are a more major attack option compared to my version.  \n\tLexicon: I expect this game to run long in terms of number of moves, so having people point out when I make blunders is nice for ramping up to speed.  Esp in this format where the game can take a couple weeks to finish and I&#39;m forgetting the strategy I was using early on which only reveals its errors 15 moves in.\n\tJesse: I like Gnostica a lot.  You&#39;re right about how to obtain the larger ships, and it does take some getting used to.  However, it&#39;s a huge part of what makes Homeworlds interesting.  Much of the game revolves around manipulating the economy to get the ships you want while depriving your opponent of similar opportunities.\n\n8) Lexicon: Build Y1 Lexicon\n\tJesse: It is unusual among experienced players to jump into red so early.  It simply isn&#39;t needed until the opposing forces come into contact with each other (or are seriously threatening to do so).\n\n9) Jesse: Trade Y1 R1 Jesse\n\tLexicon: I suppose it&#39;s premature.  I&#39;m antsy about catastrophies, as it&#39;s easy to burn a yellow to send another yellow into my system from Tree.  \n\tLexicon: The early game I&#39;m guessing is spent building up some pips for sacrificing later.  I&#39;m not sure what to store those as, but too many of one color seems an obvious problem.\n\n10) Lexicon: Trade Y3 G3 Lexicon\n\tJesse: It&#39;s true that I could burn a yellow to send another into your system.  For that reason, you certainly don&#39;t want to have three yellows in your system, and shouldn&#39;t keep two around for long.  However, if I did send in a ship, you could defend yourself by swapping your y3 for an r3.\n\tJesse: The early game is about building up your fleet and gaining control over systems that will let you develop efficiently.  That&#39;s mostly yellow, green, and blue.\n\n11) Jesse: Build Y1 Jesse\n\tJesse: That said, it isn&#39;t really bad to diversify into red, especially if your opponent follows along as I just did.  I just usually wait until either I need to, or it forces my opponent to switch a piece he doesn&#39;t want to.\n\tJesse: G3s are great, but you probably shouldn&#39;t have switched your y3 for one at this point.  You want a large ship at your homeworld for defense at all times, but you don&#39;t generally want your g3s at a green star, because you can&#39;t use them much.  So it&#39;s usual if you start with a blue-green homeworld to wait until you can get a second large ship, and park the g3 at a blue or yellow system.\n\n12) Lexicon: Discover Y1 Lexicon G1 Circle\n\n13) Jesse: Trade Y1 G1 Jesse\n\tLexicon: I see what you mean, but it seemed like an excellent way to scoop up a stash of larger ships, such as the nearly depleted green pile there.\n\n14) Lexicon: Build G1 Lexicon\n\tJesse: Yeah, getting into green is a great idea.  You want to switch a ship you can afford you move out of your home system, though.\n\tJesse: ...afford *to* move out...\n\tLexicon: ohhh, in this version it seems a sacrificed piece disappears immediately.  in my version it lasted until the end of the round.  \n\tJesse: I see, you were expecting to be able for instance to sacrifice the g3 and build a new green piece in that system, without another already there.  No, it takes two green pieces to make a factory, so it&#39;s very dangerous to operate one in a green system.\n\tJesse: Tell you what, if you want to build a small green now and switch back to a y3, I&#39;ll refrain from sending my g1 in to blast you while you do it.  That way, you&#39;ve only lost one turn from the extra trade action.  Of course, if you have other plans, that&#39;s fine too.\n\tLexicon: Exactly the problem.  Another difference is that my rules didn&#39;t require you to own a ship of a given color to build a ship of that color.  I&#39;m starting to wonder if we even read the rulebook. \n\n15) Jesse: Discover G1 Jesse Y3 Delta\n\tJesse: That also makes a huge difference.  It&#39;s a tricky dance to get the colors you want while trying to make it difficult for your opponent to get into them without taking a disadvantage somewhere else.\n\n16) Lexicon: Trade G3 Y3 Lexicon\n\n17) Jesse: Build R1 Jesse\n\n18) Lexicon: Discover G1 Lexicon Y1 Square\n\n19) Jesse: Build G2 Delta\n\n20) Lexicon: Build G3 Square\n\n21) Jesse: Discover G2 Delta B1 Shrew\n\n22) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild Y2 Lexicon\nBuild R2 Lexicon\n\tJesse: You can&#39;t afford to build that other g3, but you can at least use your greens as a factory, now.\n\n23) Jesse: Build G3 Shrew\n\tLexicon: Yay!  It actually worked! :)\r\n\n\n24) Lexicon: Trade R2 B2 Lexicon\n\n25) Jesse: Sacrifice G3 Shrew\nBuild G3 Shrew\nBuild Y2 Jesse\nBuild Y2 Tree\n\n26) Lexicon: Move B2 Lexicon Square\n\tJesse: I&#39;d like to get into blue, and to spread my reds out, but I&#39;m snapping up these y2s while I can.\n\n27) Jesse: Move R1 Jesse Tree\n\tLexicon: I can see the benefit of such a plan.  The resource scarcity is certainly coming into play now.\n\n28) Lexicon: Move B2 Square Tree\n\n29) Jesse: Attack B2 Tree\n\tLexicon: Opps.  Meant to send him to Delta.  Bye bye blue ship.\n\tJesse: Ouch!  Yeah, I really hate when that happens.  Too bad undo isn&#39;t implemented for Homeworlds yet.\n\tJesse: I don&#39;t like to win on a trivial mistake like that.  We could ask Aaron for an undo, but he&#39;s got a lot on his plate.  Instead, I could just be sporting and send him back to you.\n\n30) Lexicon: Build R2 Lexicon\n\tLexicon: When I&#39;m doing teaching games I&#39;m usually playing with a new iffy strategy or such to occupy my time.  Winning against a new player isn&#39;t very satisfying.\n\n31) Jesse: Move B2 Tree Square\n\tJesse: Granted.  It&#39;s even less satisfying when it&#39;s because of a typo.  I&#39;ll often experiment against new players, too, or take a starting configuration that I know is inefficient.  I otherwise like to exemplify sound strategy, particularly if it is supposed to be a teaching game (beyond just teaching the rules).\n\tJesse: Besides, there&#39;s a tactical lesson in what would happen after you moved the b2 to Delta, which is that I would probably use my factory to build a couple of r2s while simultaneously moving my g3 to Delta for protection.  Even if I had done something as seemingly innocuous as moving a yellow to Shrew, there&#39;s a trap in it.  If you attacked immediately by sacrificing your r1, I&#39;d just move my g3 to your defenseless homeworld, and win shortly thereafter.  If you built an r2 first, I could still do the maneuver I mentioned above, or even just move my g3 into Delta.  Either way, it&#39;s not such good news for you.\n\tJesse: If you really want to invade Delta, you should do it with your g3.  Unless, of course, you have some nefarious plan I don&#39;t know about that specifically calls for blue.\n\tJesse: Anyway, go ahead and take the blue guy back.  It&#39;s a more interesting game if I have to work to get one for myself.\n\n32) Lexicon: Move R1 Lexicon Square\n\n33) Jesse: Move Y1 Tree Shrew\n\n34) Lexicon: Attack B2N Square\n\n35) Jesse: Trade G3 R3 Shrew\n\n36) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild R2 Square\nBuild B1 Square\n\tJesse: Since you already have two green ships at your only planet where you can build green, I can make trouble by trading out my g3, planning to build it back next turn.\n\tLexicon: I feel like I&#39;ve screwed up by building too many things in a non-attacking position, as there&#39;s no way to get everything at your star in one go.\n\n37) Jesse: Build G3 Delta\n\n38) Lexicon: Discover R2 Square B3 Hex\n\tJesse: You may not have them in attack position right now, but you can move them there over the course of a few turns.  It would have helped to take over Delta, since it&#39;s a system you could just chuck things in from one at a time for free.  That&#39;s not always the best way to attack, but it&#39;s a nice option to have sometimes.  You still have some production to do before you can attack effectively, so try working your way into attack position as you build.  You might move a blue to an r3, or a red to a b3.\n\tJesse: You might also consider attacking my production systems.  Tree is the least well protected, obviously.\n\tJesse: How to actually go about attacking a position defended by larges, particularly once large red ships are in the equation, can be hard to say.  I usually take my time building a force and just keep looking for openings to squeeze out some advantage, like with that g3-&gt;r3 swap.  To attack your homeworld, I might look for a good moment to move my y2 from Tree into an attack position where I could sac my home y2 to blast your yellow ships and force you to recall some ship for defense.  You could look to do something similar to me, but you&#39;d have a harder time since you have one less yellow ship.\n\tJesse: It would be hard for me to blast your system markers, since I don&#39;t have any blue yet, and blasting your green would call for a huge sacrifice on my part, so I&#39;m really not sure how I&#39;m going to take you out at this point.  You have the advantage of a pretty good shot at blasting my blue, but green will be quite difficult.\n\tJesse: Is that helpful?\n\tLexicon: Yeah, that&#39;s making sense.  It&#39;s coming together now that the resources are gone and each players abilities are more determined.  Earlier it was too wide open for me to know what to do.\n\tLexicon: Sorry I&#39;ve taken so long.  Thanksgiving of course, but then I wanted to wait til I had time to sit and give this game a good long stare.\n\n39) Jesse: Discover G1 Delta B2 Shiny\n\tJesse: That&#39;s fine.\n\n40) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild R2 Square\nBuild R3 Hex\n\n41) Jesse: Sacrifice G3 Delta\nBuild G3 Shiny\nBuild Y3 Tree\nBuild R3 Tree\n\n42) Lexicon: Move B1 Square Hex\n\tLexicon: Neat trick!\n\n43) Jesse: Move Y2 Tree Circle\n\tJesse: With the stash running out now, things become quite difficult.\n\tJesse: That maneuver is called &quot;cashing in an investment&quot;.\n\n44) Lexicon: Move Y2 Lexicon Square\n\n45) Jesse: Move R3 Tree Circle\n\n46) Lexicon: Move Y1 Circle Hex\n\n47) Jesse: Move Y2 Jesse Tree\n\n48) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild B2 Square\nBuild B3 Hex\n\tJesse: So, the idea now is to dance around and try to undermine each others&#39; positions.\n\n49) Jesse: Sacrifice Y3 Tree\nMove Y2 Tree Square\nMove Y2 Circle Hex\nMove Y2 Hex Square\nCatastrophe Square Y\n\tJesse: I was hoping to do this more cheaply, but I think I&#39;m going to have to go ahead and remove Square before you can take out my factory.\n\n50) Lexicon: Sacrifice B3 Hex\nTrade R3 G3 Hex\nTrade B1 G1 Hex\nPass\n\tJesse: Well, things look a little different all of a sudden, don&#39;t they?\n\tLexicon: I was wondering when it would come to that.  That was quite the nuke you sent there.\n\n51) Jesse: Trade G3 Y3 Shiny\n\tLexicon: Well, I didn&#39;t get to nuke your homeworld, but that buildup of blue still saved my butt.\n\n52) Lexicon: Sacrifice G3 Hex\nBuild G3 Hex\nBuild Y1 Lexicon\nBuild Y2 Hex\n\n53) Jesse: Build G3 Shiny\n\n54) Lexicon: Move G1 Hex Shiny\n\n55) Jesse: Sacrifice G3 Shiny\nBuild G3 Shrew\nBuild Y2 Shiny\nBuild Y2 Shrew\n\n56) Lexicon: Trade Y1 B1 Lexicon\n\n57) Jesse: Move Y2 Shiny Circle\n\tJesse: Not bad, but I think you&#39;re in trouble...\n\n58) Lexicon: Sacrifice Y1 Hex\nMove G1 Shiny Hex\n\tLexicon: Oh, I&#39;m definitly in trouble.\n\n59) Jesse: Sacrifice Y3 Shiny\nMove Y1 Shrew Lexicon\nMove Y2 Shrew Lexicon\nMove Y2 Circle Lexicon\nCatastrophe Lexicon Y\n\tJesse: Unless you specifically wanted to remove that y1, you should know that you could also have moved the g1 to Hex by sacrificing the g1 and rebuilding it.\n\n60) Lexicon: Sacrifice Y2 Hex\nMove G3 Hex Circle\nMove G3 Circle Lexicon\n\n61) Jesse: Sacrifice Y3 Jesse\nMove G2 Shrew Lexicon\nMove G3 Shrew Lexicon\nMove R3 Circle Lexicon\nCatastrophe Lexicon G\n\tLexicon: Things are not looking good for our hero.  (my hero at least).\n\n62) Lexicon: Trade G1 Y1 Hex\n\tJesse: Not good, no.  After that latest blast, I&#39;ll be taking the last of your homeworld defenders next turn.\n\n63) Jesse: Sacrifice R3 Shrew\nAttack R2 Lexicon\nAttack B1 Lexicon\nPass\n\tJesse: Thanks, and I hope the game and the discussion have been instructive.\n\tLexicon: sigh.  I think it&#39;s time.\n\tLexicon: Yeah, I understand it way better now.  I was pretty uninterested in it before this game, but I thought I&#39;d try it out.  It was fun!  Thanks!\n\n\nHomeworlds Online (SDG# 1532)\nVariants: &quot;Sinister&quot;\nStarted: 2005.11.21, Ended: 2006.1.18\nParticipants: Aaron (S), Lexicon (W), Batman (N), porter235 (E)\nWinner: Lexicon\n\n1) Batman: Homeworld G3 B1 Y3\n\n2) porter235: Homeworld B3 G2 R3\n\n3) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, all, and good luck!\n\n4) Lexicon: Homeworld B1 G2 Y3\n\n5) Batman: Build Y1 Batman\n\n6) porter235: Build R1 Porter235\n\n7) Aaron: Build G1 Aaron\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Batman: Trade Y1 R1 Batman\n\n10) porter235: Trade R1 Y1 Porter235\n\n11) Aaron: Trade G1 R1 Aaron\n\n12) Lexicon: Trade Y1 R1 Lexicon\n\n13) Batman: Build Y1 Batman\n\n14) porter235: Build Y1 Porter235\n\n15) Aaron: Build G1 Aaron\n\n16) Lexicon: Build R1 Lexicon\n\n17) Batman: Trade Y1 R1 Batman\n\n18) porter235: Build R2 Porter235\n\n19) Aaron: Trade G1 Y1 Aaron\n\n20) Lexicon: Trade R1 G1 Lexicon\n\n21) Batman: Discover R1 Batman Y2 Robin\n\n22) Lexicon: Pass\n\tLexicon: Aaron: If someone is late to a game of Sinister and another player forces his resignation, does his right hand player win or does the right hand player&#39;s target shift?  Not that we should hit porter235, I&#39;m just curious about implimentation.\n\tLexicon: Also what happens in Sinister if a player resigns?\n\tJesse: I believe the effect of forcing resignation is equivalent to the player resigning voluntarily, and that this does not give a win for the player to the right.  It&#39;s similar to a player being eliminated by anyone other than the player to the right; the right hand player&#39;s target shifts.\n\tLexicon: Ah, that makes sense.\n\tAaron: That is correct.\n\tLexicon: Well, porter hasn&#39;t played in 2 weeks nor logged in in 9 days.  Anyone know what happened to him?\n\tAaron: No idea.  I think we should go ahead and force his resignation.  It sucks, but it has been 2 weeks.\n\tLexicon: I&#39;m for it.\n\tLexicon: It&#39;s kind of rediculous.  3 of my 4 homeworlds games are in timesup.  And the other one I accidentally resigned, it seems.  Hard to get homeworlds love around here.\n\tLexicon: Actually, this had me thinking that good flags on active challenges might be newbies-only and no-newbies (require a certain rating or a certain number of games at game creation time.)\n\n23) Batman: Pass\n\tSYSTEM: porter235 resigns.\n\tLexicon: I resigned him.  But now it thinks it&#39;s my turn.  I&#39;ll pass and then Batman should pass and then it&#39;ll be in the right state.\n\n24) Aaron: Build G1 Aaron\n\n25) Lexicon: Build Y1 Lexicon\n\tAaron: I&#39;m really sorry.  The forced resignation code for this particular game has given my tons of trouble.  I&#39;m going to revisit it soon.  Is everything OK now?\n\tAaron: I like the idea of a &quot;minimum number of games played&quot; flag.  I will tackle that.\n\n26) Batman: Build Y2 Batman\n\tLexicon: Aaron: When you update the game code are you updating it for the current games or just for all newly created games?  \n\n27) Aaron: Discover Y1 Aaron G3 Lime\n\tAaron: It depends on the change.  Most changes affect all existing games as well.  I can only think of one or two changes that only applied to newly created games.\n\n28) Lexicon: Discover G1 Lexicon Y3 Cedar\n\n29) Batman: Move Y2 Batman Robin\n\n30) Aaron: Build Y2 Lime\n\n31) Lexicon: Move Y1 Lexicon Cedar\n\n32) Batman: Build Y2 Batman\n\n33) Aaron: Build Y2 Lime\n\n34) Lexicon: Build Y3 Lexicon\n\n35) Batman: Build Y3 Batman\n\n36) Aaron: Sacrifice Y2 Lime\nMove Y2 Lime Lexicon\nMove Y1 Lime Lexicon\nCatastrophe Lexicon Y\n\n37) Lexicon: Move Y1 Cedar Lexicon\n\n38) Batman: Trade Y3 R3 Batman\n\tAaron: Thanks for the game, all!\n\n39) Aaron: Trade G1 Y1 Aaron\n\tAaron: rofl!  sorry =D  I thought I was in a different game.\n\tLexicon: Almost the apocalypse, but not quite.  I saw that coming right as I pressed the submit button.  Oh well.  Perhaps Batman will defend me before you can finish me off. ;)\n\n40) Lexicon: Build Y2 Lexicon\n\n41) Batman: Move R3 Batman Robin\n\n42) Aaron: Build R1 Aaron\n\n43) Lexicon: Build G1 Cedar\n\n44) Batman: Move R3 Robin Cedar\n\n45) Aaron: Discover R1 Aaron G3 Lime\n\n46) Lexicon: Build R2 Lexicon\n\n47) Batman: Attack G1W Cedar\n\n48) Aaron: Move Y1 Aaron Lime\n\n49) Lexicon: Discover G1 Cedar Y2 Mold\n\n50) Batman: Build R2 Cedar\n\n51) Aaron: Build R2 Lime\n\n52) Lexicon: Discover Y1 Lexicon G3 Slime\n\n53) Batman: Move R3 Cedar Aaron\n\tAaron: Yellow mold?  ick...\n\n54) Aaron: Attack R3N Aaron\n\n55) Lexicon: Build Y3 Lexicon\n\n56) Batman: Build G1 Cedar\n\n57) Aaron: Move R3 Aaron Cedar\n\n58) Lexicon: Build Y3 Slime\n\tBatman: I guess I understood that rule wrong.\n\n59) Batman: Build R2 Cedar\n\n60) Aaron: Move R3 Cedar Robin\n\n61) Lexicon: Trade R1 B1 Lexicon\n\n62) Batman: Move Y2 Robin Cedar\n\n63) Aaron: Attack R1N Robin\n\n64) Lexicon: Discover Y1 Slime B2 Octopus\n\n65) Batman: Build Y3 Cedar\n\n66) Aaron: Move R3 Robin Slime\n\n67) Lexicon: Sacrifice R2 Lexicon\nAttack R3S Slime\nPass\n\n68) Batman: Move Y3 Cedar Mold\n\n69) Aaron: Build R1 Aaron\n\tLexicon: Gah, you&#39;re attacking me just so I don&#39;t annihilate Cedar aren&#39;t you Aaron.\n\tLexicon: On another note, I think it&#39;d be better if the moves referenced the player&#39;s names instead of their locations.  I can never follow it unless I&#39;m south.  Aaron (S) would be better I think.\n\n70) Lexicon: Build R2 Slime\n\n71) Batman: Move R2 Cedar Mold\n\tAaron: That wasn&#39;t too smart of me, now was it?\n\n72) Aaron: Trade R1 G1 Aaron\n\n73) Lexicon: Move G1 Mold Slime\n\n74) Batman: Sacrifice Y2 Batman\nMove G1 Cedar Aaron\nMove G1 Cedar Aaron\nCatastrophe Aaron G\n\n75) Aaron: Trade R1 G1 Aaron\n\n76) Lexicon: Move R3 Slime Aaron\n\n77) Batman: Move R2 Cedar Lexicon\n\n78) Aaron: Build Y2 Lime\n\n79) Lexicon: Sacrifice R2 Slime\nAttack G1S Aaron\nAttack R2N Lexicon\n\n80) Batman: Build R1 Batman\n\tAaron: Thanks for the game, all!\n\n81) Lexicon: Trade R3 G3 Aaron\n\tLexicon: Aaron: I was considering keeping you around, but that probably wouldn&#39;t be very amusing to be toyed with like that, so I&#39;ll let you perish with honor. ;)\n\n82) Batman: Move R1 Batman Octopus\n\tAaron: Cheers =D\n\n83) Lexicon: Move Y1 Octopus Cedar\n\n84) Batman: Move Y3 Batman Octopus\n\n85) Lexicon: Move G3 Aaron Lime\n\n86) Batman: Move R2 Mold Cedar\n\n87) Lexicon: Move Y2 Lexicon Cedar\nCatastrophe Cedar Yellow\n\n88) Batman: Build R1 Batman\n\n89) Lexicon: Sacrifice Y3 Slime\nMove G3 Lime Octopus\nMove G3 Octopus Batman\nPass\n\tLexicon: Really?\n\n90) Batman: Trade R1 Y1 Batman\n\tLexicon: That&#39;s what I say to that! :)\n\n91) Lexicon: Sacrifice R2 Lexicon\nAttack R1N Batman\nAttack Y1N Batman\n\n\tLexicon: Good game! :)\n\nHomeworlds Online (SDG# 1565)\nStarted: 2005.11.22, Ended: 2005.12.10\nParticipants: Calavera (S), andylooney (N)\nWinner: Calavera\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) Calavera: Homeworld Y1 B3 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Calavera: Build G1 Calavera\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Calavera: Trade G1 R1 Calavera\n\n7) andylooney: Build G1 Andylooney\n\n8) Calavera: Build G1 Calavera\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) Calavera: Discover G1 Calavera Y2 Riallanon\n\n11) andylooney: Discover G1 Andylooney Y3 Clampett\n\n12) Calavera: Discover G1 Riallanon B3 Krondor\n\n13) andylooney: Build Y1 Andylooney\n\n14) Calavera: Build G1 Calavera\n\n15) andylooney: Build G2 Clampett\n\n16) Calavera: Sacrifice G3 Calavera\nBuild G2 Krondor\nBuild G3 Krondor\nBuild G3 Calavera\n\n17) andylooney: Build G3 Clampett\n\n18) Calavera: Trade G2 Y2 Krondor\n\n19) andylooney: Discover G2 Clampett Y2 Plugh\n\n20) Calavera: Build Y1 Krondor\n\n21) andylooney: Discover Y1 Andylooney B3 Ibm\n\n22) Calavera: Trade Y1 B1 Krondor\n\n23) andylooney: Sacrifice G3 Clampett\nBuild G2 Clampett\nBuild G3 Plugh\nBuild Y1 Andylooney\n\n24) Calavera: Sacrifice Y2 Krondor\nMove G1 Krondor Plugh\nMove G1 Calavera Plugh\nCatastrophe Plugh G\n\n25) andylooney: Sacrifice G2 Clampett\nBuild Y2 Ibm\nBuild Y2 Ibm\n\n26) Calavera: Trade G3 Y3 Krondor\n\n27) andylooney: Trade Y1 G1 Ibm\n\n28) Calavera: Trade B1 G1 Krondor\n\n29) andylooney: Build G2 Clampett\n\n30) Calavera: Build G2 Calavera\n\n31) andylooney: Build G3 Ibm\n\n32) Calavera: Build G3 Krondor\n\n\tSYSTEM: andylooney resigns.\n\nHomeworlds Online (SDG# 1456)\nStarted: 2005.11.22, Ended: 2006.3.7\nParticipants: Cerulean (S), Personman (N), MatrixFrog (E)\nWinner: Cerulean\n\n1) Personman: Homeworld Y3 B2 G3\n\n2) MatrixFrog: Homeworld G3 B1 Y3\n\tPersonman: hey everyone.. this is my first game of multiplayer homeworlds, so forgive me if i do stupid things..\n\n3) Cerulean: Homeworld B1 G2 Y3\n\tMatrixFrog: The only difference in controls is having to specify whose ship you&#39;re attacking, by putting an &quot;e&quot; for me or an &quot;s&quot; for Cerulean. Good luck.\n\n4) Personman: Build G1 Personman\n\tCerulean: Thanks, personman.  Now I can&#39;t get that song out of my head.\n\tPersonman: :)\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Cerulean: Build Y1 Cerulean\n\n7) Personman: Build G1 Personman\n\n8) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n9) Cerulean: Build Y1 Cerulean\n\n10) Personman: Trade G1 B1 Personman\n\n11) MatrixFrog: Build Y1 Matrixfrog\n\n12) Cerulean: Trade Y1 G1 Cerulean\n\n13) Personman: Trade G1 Y1 Personman\n\n14) MatrixFrog: Discover G1 Matrixfrog Y2 Goldfish\n\n15) Cerulean: Discover Y1 Cerulean G3 Paldor\n\n16) Personman: Discover Y1 Personman G1 Imbroglio\n\n17) MatrixFrog: Build G1 Goldfish\n\n18) Cerulean: Discover G1 Cerulean B3 Besk\n\n19) Personman: Build G2 Personman\n\n20) MatrixFrog: Build Y1 Matrixfrog\n\n21) Cerulean: Build G2 Besk\n\n22) Personman: Sacrifice G3 Personman\nBuild G2 Personman\nBuild G3 Personman\nBuild Y2 Imbroglio\n\n23) MatrixFrog: Move G1 Goldfish Besk\n\n24) Cerulean: Build Y2 Cerulean\n\n25) Personman: Move G2 Personman Imbroglio\n\n26) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove G1 Besk Cerulean\n\n27) Cerulean: Trade Y2 R2 Cerulean\n\n28) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild G3 Personman\nBuild B1 Personman\n\n29) MatrixFrog: Sacrifice G1 Cerulean\nBuild G1 Goldfish\n\n30) Cerulean: Trade G2 Y2 Besk\n\n31) Personman: Sacrifice Y2 Imbroglio\nDiscover G3 Personman Y1 Thurgood\nMove B1 Personman Thurgood\n\n32) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n33) Cerulean: Build G2 Besk\n\n34) Personman: Build B2 Thurgood\n\n35) MatrixFrog: Discover G1 Goldfish Y3 Marshall\n\n36) Cerulean: Build R1 Cerulean\n\n37) Personman: Sacrifice B2 Thurgood\nTrade G3 R3 Personman\nTrade G2 R2 Imbroglio\n\n38) MatrixFrog: Build G2 Marshall\n\n39) Cerulean: Move G2 Besk Cerulean\n\n40) Personman: Build G3 Thurgood\n\n41) MatrixFrog: Build R1 Matrixfrog\n\n42) Cerulean: Move R1 Cerulean Besk\n\n43) Personman: Move R2 Imbroglio Marshall\n\n44) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R2N Marshall\n\tMatrixFrog: I may not keep up with this game over Christmas, but most likely, it will not be a problem.\n\n45) Cerulean: Move R1 Besk Thurgood\n\n46) Personman: Discover B1 Thurgood Y2 Mathers\n\n47) MatrixFrog: Build Y1 Matrixfrog\n\n48) Cerulean: Move G2 Cerulean Paldor\n\n49) Personman: Sacrifice G3 Thurgood\nBuild G3 Thurgood\nBuild Y2 Imbroglio\nBuild B2 Mathers\n\n50) MatrixFrog: Build R1 Matrixfrog\n\n51) Cerulean: Discover G1 Besk B2 Sefeeria\n\n52) Personman: Move G3 Thurgood Mathers\n\n53) MatrixFrog: Build R1 Marshall\n\tPersonman: Undoing because I automatically typed thurgood marshall instead of thurgood mathers. Apologies.\n\n54) Cerulean: Move R1 Thurgood Mathers\n\n55) Personman: Discover B1 Mathers B3 Homsar\n\n56) MatrixFrog: Move G1 Goldfish Marshall\n\n57) Cerulean: Sacrifice Y1 Paldor\nMove G1 Sefeeria Marshall\nCatastrophe Marshall G\n\tMatrixFrog: I dooooo what I&#39;m tooooooooooold.\n\tMatrixFrog: I don&#39;t think I&#39;ve ever had this many systems in a game at once... I&#39;m overwhelmed.\n\n58) Personman: Move Y1 Imbroglio Homsar\n\n59) MatrixFrog: Trade R1 G1 Matrixfrog\n\n60) Cerulean: Move R1 Mathers Homsar\n\n61) Personman: Move Y1 Homsar Mathers\n\n62) MatrixFrog: Move R2 Marshall Imbroglio\n\n63) Cerulean: Attack B1N Homsar\n\n64) Personman: Sacrifice Y2 Imbroglio\nMove G3 Thurgood Mathers\nMove G3 Mathers Matrixfrog\n\n65) MatrixFrog: Discover G1 Matrixfrog Y2 Mordor\n\n66) Cerulean: Discover Y2 Besk G1 Tinubi\n\n67) Personman: Sacrifice G3 Mathers\nBuild G1 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Personman\nCatastrophe Matrixfrog G\n\n68) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n69) Cerulean: Sacrifice G2 Paldor\nBuild Y1 Tinubi\nBuild Y1 Cerulean\n\tPersonman: My first every catastrophe! I am excited!\n\tPersonman: er, first *ever*, that should say. I blame the excitedness.\n\n70) Personman: Move Y1 Mathers Tinubi\n\n71) MatrixFrog: Build R1 Imbroglio\n\n72) Cerulean: Move Y1 Cerulean Homsar\n\n73) Personman: Build Y1 Tinubi\nCatastrophe Tinubi Y\n\n74) MatrixFrog: Build Y1 Matrixfrog\n\n75) Cerulean: Discover B1 Homsar G1 Tinubi\n\n76) Personman: Sacrifice G2 Personman\nBuild G2 Personman\nBuild B2 Mathers\n\n77) MatrixFrog: Build G2 Matrixfrog\n\tCerulean: hey, look what I found!\n\n78) Cerulean: Move Y1 Homsar Tinubi\n\n79) Personman: Trade G2 Y2 Personman\n\n80) MatrixFrog: Build G2 Mordor\n\n81) Cerulean: Build B2 Tinubi\n\n82) Personman: Move B1 Personman Matrixfrog\n\n83) MatrixFrog: Attack B1N Matrixfrog\n\n84) Cerulean: Move B1 Tinubi Personman\n\n85) Personman: Sacrifice Y2 Personman\nMove B2 Mathers Matrixfrog\nMove B2 Mathers Matrixfrog\nCatastrophe Matrixfrog B\n\n86) Cerulean: Build B1 Tinubi\n\n87) Personman: Build G1 Personman\n\tPersonman: good game, matrixfrog! \n\n88) Cerulean: Move B1 Tinubi Personman\n\n89) Personman: Move R3 Personman Tinubi\n\n90) Cerulean: Sacrifice Y1 Tinubi\nMove B2 Tinubi Personman\nCatastrophe Personman B\n\n91) Personman: Build G2 Personman\n\tMatrixFrog: Grah. I think I&#39;ll stick to binary homeworlds for a while. Good game, you guys.\n\n92) Cerulean: Build Y1 Cerulean\n\tCerulean: WHAM!\n\n93) Personman: Move G2 Personman Mordor\n\n94) Cerulean: Move Y1 Cerulean Homsar\n\n95) Personman: Move G2 Mordor Homsar\n\n96) Cerulean: Move R1 Homsar Mordor\n\n97) Personman: Build R1 Tinubi\n\n98) Cerulean: Attack G1E Mordor\n\n99) Personman: Sacrifice R1 Tinubi\nAttack Y1S Homsar\n\n100) Cerulean: Build G2 Mordor\n\tMatrixFrog: It looks like I have the ability to force a surrender, even though I&#39;m no longer part of the game. Have the members of SDG ever reached a consensus as to whether this is fair?\n\tCerulean: not that I know of.  This absence is out of character for Personman, who&#39;s usually good at checking in.  I generously wait on expired games before pulling the plug.\n\tPersonman: Sorry, I&#39;ve been busy, and whenever I have a second I usually make a few fast moves in Frames but am never willing to spend the time to think about the relatively hopeless situation here. But I will go now, and keep it up til the end, I promise. \n\tPersonman: Woah. I submitted the following instructions: \r\ns r1 tinubi \r\na y1 homsar\r\nand got this error message: \r\nThe ship Y1 could not be found in the Homsar system.\r\nAm I missing something obvious, or is this some weird bug?\n\tMatrixFrog: I do too, so it&#39;s a non-issue in this case. But as a general rule, it&#39;s something that maybe should be discussed.\n\tMatrixFrog: Personman: try &quot;y1s homsar&quot;\n\n101) Personman: Move G1 Personman Mordor\nCatastrophe Mordor G\n\tPersonman: *smacks forehead* Thank you, MatrixFrog. \n\n102) Cerulean: Build Y1 Cerulean\n\n103) Personman: Build G1 Homsar\n\n104) Cerulean: Move Y1 Cerulean Marshall\n\n105) Personman: Build Y1 Homsar\n\n106) Cerulean: Move Y1 Marshall Imbroglio\n\n107) Personman: Build G1 Homsar\n\n108) Cerulean: Move R1 Mordor Homsar\n\n109) Personman: Trade G2 R2 Homsar\n\n110) Cerulean: Sacrifice R1 Homsar\nAttack R1E Imbroglio\n\n111) Personman: Move R2 Homsar Imbroglio\n\n112) Cerulean: Move R1 Imbroglio Homsar\n\n113) Personman: Attack Y1S Imbroglio\n\n114) Cerulean: Attack Y1N Homsar\n\n115) Personman: Move Y1 Homsar Tinubi\n\n116) Cerulean: Attack G1N Homsar\n\n117) Personman: Move R3 Tinubi Homsar\n\n118) Cerulean: Discover Y1 Homsar G2 Aqer\n\n119) Personman: Attack R1S Homsar\n\n120) Cerulean: Sacrifice G1 Homsar\nBuild Y1 Aqer\n\n121) Personman: Sacrifice Y1 Tinubi\nMove R1 Homsar Aqer\n\n122) Cerulean: Sacrifice Y1 Aqer\nDiscover Y1 Aqer G1 Ytttli\n\n123) Personman: Build Y1 Imbroglio\n\n124) Cerulean: Build R1 Cerulean\n\n125) Personman: Build Y1 Imbroglio\n\n126) Cerulean: Build Y2 Ytttli\n\n127) Personman: Sacrifice Y1 Imbroglio\nMove R3 Homsar Ytttli\n\n128) Cerulean: Sacrifice Y1 Ytttli\nMove Y2 Ytttli Aqer\n\n129) Cerulean: Move R1 Cerulean Homsar\n\n\tCerulean: thanks.  I&#39;m curious what you were up to, what in turns out was impossible.  a very good game, nonetheless, and I&#39;m always up for another one.\n\nHomeworlds Online (SDG# 1418)\nStarted: 2005.11.23, Ended: 2006.1.21\nParticipants: JunkMan (S), Roland (N)\nWinner: JunkMan\n\n\nHomeworlds Online (SDG# 1558)\nStarted: 2005.11.24, Ended: 2005.11.25\nParticipants: Calavera (S), TwoShort (N)\nWinner: Calavera\n\n1) TwoShort: Homeworld B1 Y2 G3\n\n2) Calavera: Homeworld G2 B3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Calavera: Build Y1 Calavera\n\n5) TwoShort: Build G1 Twoshort\n\n6) Calavera: Trade Y1 G1 Calavera\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) Calavera: Discover G1 Calavera B1 Rillanon\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) Calavera: Build Y1 Calavera\n\n11) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n12) Calavera: Trade Y1 B1 Calavera\n\n13) TwoShort: Build G1 Twoshort\n\n14) Calavera: Build Y1 Calavera\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n16) Calavera: Sacrifice Y3 Calavera\nMove G1 Rillanon Bluestar\nMove G1 Bluestar Twoshort\nPass\nCatastrophe Twoshort G\n\tCalavera: Ooooh. Bad Move. Thanks for the game.\n\n\nHomeworlds Online (SDG# 1623)\nStarted: 2005.11.27, Ended: 2005.12.1\nParticipants: Uglyfoot (S), Murwiz (N)\nWinner: Uglyfoot\n\n1) Murwiz: Homeworld Y3 G2 B3\n\n2) Uglyfoot: Homeworld B2 G1 Y3\n\n3) Murwiz: Build B1 Murwiz\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\tMurwiz: We are Blow-cutous of Grob. We wish you no harm. We merely want to examine your planets for evidence of bio-life, and cleanse any that we find.\n\n5) Murwiz: Trade B1 Y1 Murwiz\n\tUglyfoot: surprise!  I did not know that you had to use one of the same color...\n\tUglyfoot: Blow-cutous.  Please to examine lower appendages while we apply them to your head.\r\n\n\n6) Uglyfoot: Discover Y1 Uglyfoot G3 Gateway\n\n7) Murwiz: Discover Y1 Murwiz G1 Garagedoor\n\n8) Uglyfoot: Build Y1 Uglyfoot\n\n9) Murwiz: Build Y2 Garagedoor\n\n10) Uglyfoot: Build Y2 Gateway\n\n11) Murwiz: Build B1 Murwiz\n\n12) Uglyfoot: Trade Y1 B1 Uglyfoot\n\n13) Murwiz: Move B1 Murwiz Garagedoor\n\n14) Uglyfoot: Move B1 Uglyfoot Gateway\n\n15) Murwiz: Build B1 Murwiz\n\tUglyfoot: OK.  How&#39;s that for synchronizing our moves?\n\n16) Uglyfoot: Build B2 Gateway\n\n17) Murwiz: Trade B1 G1 Murwiz\n\n18) Uglyfoot: Trade B2 R2 Gateway\n\n19) Murwiz: Build G2 Murwiz\n\n20) Uglyfoot: Move R2 Gateway Garagedoor\n\n21) Murwiz: Sacrifice Y2 Garagedoor\nMove Y1 Garagedoor Gateway\nDiscover B1 Garagedoor G2 Portcullis\n\tUglyfoot: How&#39;s that blow?\n\n22) Uglyfoot: Move Y1 Gateway Garagedoor\n\tMurwiz: &quot;The noble crew of the good ship North Y2 scuttled their boat rather than see it fall into enemy tentacles.&quot;\n\n23) Murwiz: Build G3 Murwiz\n\tUglyfoot: Nicely played!\n\n\tMurwiz: Shoot, I&#39;m screwed. I moved too quickly and misread the board.\r\n\n\tSYSTEM: Murwiz resigns.\n\nHomeworlds Online (SDG# 1591)\nStarted: 2005.11.25, Ended: 2005.11.28\nParticipants: TwoShort (S), Calavera (N)\nWinner: TwoShort\n\n1) Calavera: Homeworld Y2 B2 G3 *\n\n2) TwoShort: Homeworld B2 Y2 G3 *\n\n3) Calavera: Build G1 Calavera\n\tTwoShort: I saw the problem with my move in the last game just after I hit submit. Doh.  \n\n4) TwoShort: Build G1 Twoshort\n\tCalavera: Ah, well. The only way I was going to win was with such a cheap shot. \n\n5) Calavera: Discover G1 Calavera Y3 Rillanon\n\tCalavera: d g1 calavera y3 Rillanon\n\n6) TwoShort: Trade G1 R1 Twoshort\n\n7) Calavera: Move G1 Rillanon Calavera\n\n8) TwoShort: Build G1 Twoshort\n\n9) Calavera: Trade G3 Y3 Calavera\n\n10) TwoShort: Build R1 Twoshort\n\n11) Calavera: Build G1 Calavera\n\n12) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n13) Calavera: Trade G1 R1 Calavera\n\n14) TwoShort: Discover R1 Twoshort B3 Bluestar\n\n15) Calavera: Build Y1 Calavera\n\n16) TwoShort: Build R2 Twoshort\n\n17) Calavera: Build R2 Calavera\n\n18) TwoShort: Trade R1 Y1 Bluestar\n\n19) Calavera: Trade Y1 B1 Calavera\n\n20) TwoShort: Trade R2 G2 Twoshort\n\n21) Calavera: Discover G1 Calavera Y3 Krondor\n\n22) TwoShort: Move G2 Twoshort Krondor\n\n\tSYSTEM: Calavera resigns.\n\nHomeworlds Online (SDG# 1605)\nStarted: 2005.11.26, Ended: 2005.11.28\nParticipants: Calavera (S), MatrixFrog (N)\nWinner: Calavera\n\n1) MatrixFrog: Homeworld B1 G3 Y3\n\n2) Calavera: Homeworld Y1 B2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Calavera: Build G1 Calavera\n\n5) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n6) Calavera: Build G1 Calavera\n\n7) MatrixFrog: Build G2 Matrixfrog\n\n8) Calavera: Discover G1 Calavera Y3 Rillanon\n\n9) MatrixFrog: Discover G1 Matrixfrog Y2 Fondue\n\n10) Calavera: Trade G1 R1 Calavera\n\n11) MatrixFrog: Discover G1 Fondue Y3 Epsilon\n\n12) Calavera: Build G1 Calavera\n\n13) MatrixFrog: Build G2 Matrixfrog\n\n14) Calavera: Sacrifice G3 Calavera\nBuild G2 Rillanon\nBuild G3 Rillanon\nBuild G3 Calavera\n\n15) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild G2 Epsilon\nBuild Y1 Matrixfrog\n\n16) Calavera: Discover G3 Rillanon B1 Krondor\n\tMatrixFrog: Sacrificial Teleportation!\n\n17) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Epsilon Calavera\nMove G2 Epsilon Calavera\nPass\nCatastrophe Calavera G\n\tCalavera: Bah, I thought you had a 2-3 star when I wote that move.\n\n18) Calavera: Move G2 Rillanon Calavera\n\n19) MatrixFrog: Build Y1 Matrixfrog\n\n20) Calavera: Build G1 Calavera\n\n21) MatrixFrog: Discover Y1 Matrixfrog G2 Endor\n\n22) Calavera: Sacrifice G3 Krondor\nBuild G1 Rillanon\nBuild G3 Calavera\nBuild G3 Rillanon\n\n23) MatrixFrog: Build Y2 Matrixfrog\n\n24) Calavera: Discover G3 Rillanon Y2 Crydee\n\n25) MatrixFrog: Trade G2 B2 Matrixfrog\n\n26) Calavera: Sacrifice G2 Calavera\nBuild G2 Crydee\nBuild G2 Crydee\n\n27) MatrixFrog: Move B2 Matrixfrog Crydee\n\n28) Calavera: Move G3 Crydee Matrixfrog\n\n29) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n30) Calavera: Sacrifice R1 Calavera\nAttack Y2 Matrixfrog\n\n31) MatrixFrog: Move B2 Crydee Matrixfrog\n\n32) Calavera: Trade G3 R3 Matrixfrog\n\n33) MatrixFrog: Attack Y2 Matrixfrog\n\n34) Calavera: Attack R1 Matrixfrog\n\n35) MatrixFrog: Build Y1 Matrixfrog\n\n36) Calavera: Attack B2 Matrixfrog\n\n37) MatrixFrog: Move Y1 Endor Matrixfrog\n\tCalavera: Game over next turn. Thanks for an enjoyable game.\n\n38) Calavera: Sacrifice R3 Matrixfrog\nAttack Y1 Matrixfrog\nAttack Y1 Matrixfrog\nAttack Y2 Matrixfrog\n\n\nHomeworlds Online (SDG# 1639)\nStarted: 2005.11.28, Ended: 2006.2.10\nParticipants: Jesse (S), andylooney (N)\nWinner: Jesse\n\n1) andylooney: Homeworld G1 B2 Y3\n\tJesse: Hi, Andy.  Let&#39;s play again.\n\tandylooney: OK!\n\n2) Jesse: Homeworld Y3 B1 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Jesse: Build G1 Jesse\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Jesse: Discover G1 Jesse B2 Robot\n\n7) andylooney: Build G2 Andylooney\n\n8) Jesse: Build G2 Jesse\n\n9) andylooney: Discover G2 Andylooney Y3 Monkey\n\n10) Jesse: Trade G2 Y2 Jesse\n\n11) andylooney: Build G2 Monkey\n\n12) Jesse: Build G2 Jesse\n\n13) andylooney: Discover G2 Monkey Y2 Pirate\n\n14) Jesse: Trade G2 R2 Jesse\n\n15) andylooney: Trade G1 R1 Andylooney\n\n16) Jesse: Move Y2 Jesse Robot\n\n17) andylooney: Build Y1 Andylooney\n\n18) Jesse: Build Y1 Robot\n\n19) andylooney: Discover Y1 Andylooney G3 Ninja\n\n20) Jesse: Trade Y1 B1 Robot\n\n21) andylooney: Build Y1 Andylooney\n\n22) Jesse: Build B1 Robot\n\n23) andylooney: Discover Y1 Andylooney B3 Ibm\n\n24) Jesse: Discover B1 Robot G3 Bumblebee\n\n25) andylooney: Build Y1 Ninja\n\n26) Jesse: Build Y2 Robot\n\n27) andylooney: Sacrifice G2 Monkey\nBuild Y3 Ibm\nBuild R1 Andylooney\n\n28) Jesse: Build B2 Bumblebee\n\n29) andylooney: Discover R1 Andylooney B3 Meanie\n\n30) Jesse: Build B3 Bumblebee\n\n31) andylooney: Sacrifice Y3 Ibm\nMove Y1 Ninja Robot\nMove Y1 Ibm Robot\nDiscover G2 Pirate Y3 Howell\nCatastrophe Robot Yellow\n\tJesse: I should hopefully be getting back to a more normal pace now.\n\n32) Jesse: Build B3 Robot\n\n33) andylooney: Build Y1 Ninja\n\n34) Jesse: Trade B2 Y2 Bumblebee\n\n35) andylooney: Discover Y1 Ninja B2 Bomber\n\n36) Jesse: Trade B3 R3 Bumblebee\n\n37) andylooney: Discover R1 Andylooney B3 Max\n\n38) Jesse: Build G1 Jesse\n\n39) andylooney: Build G2 Howell\n\n40) Jesse: Sacrifice G3 Jesse\nBuild G2 Robot\nBuild G3 Jesse\nBuild R1 Jesse\n\n41) andylooney: Sacrifice G2 Howell\nBuild R2 Max\nBuild R2 Meanie\n\tandylooney: Ugh, you&#39;re killing me here, Jesse!\n\n42) Jesse: Trade B3 R3 Robot\n\tJesse: I&#39;ve been taking time to think and play carefully, as I must against you.  It&#39;s a tough game.\n\n43) andylooney: Trade R2 Y2 Max\n\n44) Jesse: Trade G2 Y2 Robot\n\n45) andylooney: Sacrifice G2 Howell\nBuild Y1 Max\nBuild Y3 Bomber\n\n46) Jesse: Build B3 Bumblebee\n\n47) andylooney: Trade R2 G2 Meanie\n\n48) Jesse: Sacrifice Y2 Bumblebee\nMove R3 Bumblebee Andylooney\nMove B3 Bumblebee Andylooney\n\tJesse: Lasers in the night\r\nThe steely eyed captain&#39;s gaze\r\nBurns your very world\n\n49) andylooney: Build Y2 Andylooney\n\tandylooney: With no hope of victory, we&#39;re turning our flagship into an ark, loading it up with representative samples of our history, culture, favorite life forms, and of course, a few thousand annointed survivors, and we&#39;re embarking for a new life in a distant galaxy...\n\tandylooney: Dang, the system won&#39;t let me abandon my homeworld! I tried doing this and failed: discover y3 andylooney r3 Firebird\r\nOh well, I guess you&#39;ll just have to destroy me...\n\n50) Jesse: Sacrifice R2 Jesse\nAttack Y2 Andylooney\nAttack Y3 Andylooney\n\tJesse: Yeah, technically the rules state that self-elimination is not allowed.\n\tJesse: Thanks for the game; it&#39;s always a pleasure.\n\n\nHomeworlds Online (SDG# 1633)\nStarted: 2005.11.28, Ended: 2005.12.13\nParticipants: jeep (S), Calavera (N)\nWinner: jeep\n\n1) Calavera: Homeworld G2 B2 Y3 *\n\n2) jeep: Homeworld B1 Y2 G3\n\n3) Calavera: Build Y1 Calavera\n\n4) jeep: Build G1 Jeep\n\n5) Calavera: Build Y1 Calavera\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) Calavera: Trade Y1 G1 Calavera\n\n8) jeep: Build G1 Jeep\n\n9) Calavera: Trade Y1 R1 Calavera\n\n10) jeep: Trade G1 R1 Jeep\n\n11) Calavera: Discover G1 Calavera B3 Goodtimes\n\n12) jeep: Discover Y1 Jeep G3 Moon\n\n13) Calavera: Build G1 Goodtimes\n\n14) jeep: Build R1 Jeep\n\n15) Calavera: Build R2 Calavera\n\n16) jeep: Move R1 Jeep Moon\n\tjeep: Yeah, I&#39;m dumb.  I&#39;m going to wait until tomorrow and some sleep before I move again.  ;)\n\n17) Calavera: Move R2 Calavera Moon\n\n18) jeep: Build R2 Moon\n\n19) Calavera: Build R2 Moon\nCatastrophe Moon R\n\n20) jeep: Build Y1 Moon\n\n21) Calavera: Trade G1 Y1 Goodtimes\n\n22) jeep: Build Y2 Moon\n\n23) Calavera: Build Y2 Goodtimes\n\n24) jeep: Move Y1 Moon Calavera\n\n25) Calavera: Attack Y1 Calavera\n\n26) jeep: Move Y1 Moon Calavera\n\n27) Calavera: Trade Y3 G3 Calavera\n\n28) jeep: Sacrifice R1 Jeep\nAttack R1N Calavera\n\n29) Calavera: Trade Y2 R2 Goodtimes\n\n30) jeep: Attack Y1N Calavera\n\n31) Calavera: Sacrifice R2 Goodtimes\nAttack R1 Calavera\nAttack Y1 Calavera\n\n32) jeep: Discover Y1 Calavera G1 Builder\n\n33) Calavera: Sacrifice G3 Calavera\nBuild Y2 Goodtimes\nBuild Y3 Goodtimes\nBuild Y3 Calavera\n\n34) jeep: Move Y1 Builder Goodtimes\nCatastrophe Goodtimes Yellow\n\n35) Calavera: Sacrifice Y1 Calavera\nMove G1 Goodtimes Jeep\n\n36) jeep: Trade G3 R3 Jeep\n\n37) Calavera: Discover G1 Jeep B3 Waterworld\n\n38) jeep: Build Y1 Moon\n\n39) Calavera: Build R1 Calavera\n\n40) jeep: Move Y2 Moon Jeep\n\n41) Calavera: Move R1 Calavera Waterworld\n\n42) jeep: Trade Y2 G2 Jeep\n\n43) Calavera: Build G1 Waterworld\n\n44) jeep: Build G1 Jeep\n\n45) Calavera: Trade G1 Y1 Waterworld\n\n46) jeep: Trade G1 B1 Jeep\n\n47) Calavera: Build G1 Waterworld\n\n48) jeep: Build G1 Jeep\n\n49) Calavera: Discover G1 Waterworld B2 Bas-tyra\n\n50) jeep: Trade G2 R2 Jeep\n\n51) Calavera: Build G2 Bas-tyra\n\n52) jeep: Build Y1 Moon\n\n53) Calavera: Trade G2 Y2 Bas-tyra\n\tjeep: The problem with web games is that you sometimes forget what you were doing.  It&#39;s not a problem, unless you remember it the NEXT turn.  ;)\n\n54) jeep: Move R2 Jeep Waterworld\n\tCalavera: I find the problem is my opponent almost never does what I think he&#39;s going to do, so any &#39;plan&#39; i have is ruined almost immediatly.\n\n55) Calavera: Build R1 Waterworld\n\n56) jeep: Attack G1N Waterworld\n\n57) Calavera: Attack G1 Waterworld\n\tCalavera: Oi! That&#39;s mine!\n\n58) jeep: Build G2 Jeep\n\tjeep: That could go on forever, I&#39;ll just give it up and play elsewhere, I guess...\n\n59) Calavera: Build Y2 Bas-tyra\n\n60) jeep: Attack G1N Waterworld\n\tCalavera: I&#39;ve not played this game in real life? Does it ever get to a stage where it has to be given up because of a similar situation. I know if you had kept stealing my G1, I&#39;d have kept stealing it back.\n\tjeep: Nod, I&#39;ve only played a couple times and never came upon it. \n\tjeep: Hmm... I thought I made this move already!!  Have to remember what it is.  Sorry for the delay.\n\n61) Calavera: Attack G1 Waterworld\n\n62) jeep: Discover Y1 Moon B1 Station\n\n63) Calavera: Build Y3 Waterworld\n\n64) jeep: Sacrifice G2 Jeep\nBuild Y3 Station\nBuild R2 Waterworld\nCatastrophe Waterworld Red\n\n65) Calavera: Sacrifice Y2 Bas-tyra\nMove Y2 Bas-tyra Station\nMove Y1 Waterworld Station\nCatastrophe Station Y\n\n66) jeep: Build G2 Jeep\n\n67) Calavera: Build G2 Bas-tyra\n\n68) jeep: Trade G2 Y2 Jeep\n\n69) Calavera: Build Y1 Calavera\n\n70) jeep: Build Y1 Moon\n\n71) Calavera: Trade Y1 B1 Calavera\n\n\tCalavera: This game has slowed down considerbly. I don&#39;t really have the paitence to continue playing at this pace.\n\tSYSTEM: Calavera resigns.\n\nHomeworlds Online (SDG# 1655)\nStarted: 2005.11.29, Ended: 2005.12.20\nParticipants: benedict (S), CDRodeffer (N)\nWinner: benedict\n\n1) CDRodeffer: Homeworld B1 G2 Y3\n\n2) benedict: Homeworld G2 B3 Y3\n\n3) CDRodeffer: Build Y1 Cdrodeffer\n\n4) benedict: Build Y1 Benedict\n\n5) CDRodeffer: Trade Y1 R1 Cdrodeffer\n\n6) benedict: Trade Y1 R1 Benedict\n\n7) CDRodeffer: Build Y1 Cdrodeffer\n\n8) benedict: Build Y1 Benedict\n\n9) CDRodeffer: Trade Y1 B1 Cdrodeffer\n\n10) benedict: Trade Y1 G1 Benedict\n\n11) CDRodeffer: Build Y1 Cdrodeffer\n\n12) benedict: Build G1 Benedict\n\n13) CDRodeffer: Build Y1 Cdrodeffer\n\n14) benedict: Discover G1 Benedict Y1 Barony\n\n15) CDRodeffer: Discover Y1 Cdrodeffer G3 Phlegm\n\n16) benedict: Build Y2 Benedict\n\n17) CDRodeffer: Build Y2 Phlegm\n\n18) benedict: Move Y2 Benedict Barony\n\n19) CDRodeffer: Move Y1 Phlegm Barony\n\n20) benedict: Sacrifice R1 Benedict\nAttack Y1 Barony\n\n21) CDRodeffer: Move Y2 Phlegm Barony\nCatastrophe Barony Yellow\n\tbenedict: hmmm. that may not hav been the best move for me to make...\n\n22) benedict: Build Y1 Benedict\n\tCDRodeffer: You&#39;re probably right about that. But now we&#39;re (almost) back where we started.\n\n23) CDRodeffer: Trade Y1 G1 Cdrodeffer\n\n24) benedict: Trade Y1 R1 Benedict\n\n25) CDRodeffer: Build Y1 Cdrodeffer\n\n26) benedict: Build Y1 Benedict\n\n27) CDRodeffer: Discover Y1 Cdrodeffer B3 Marble\n\n28) benedict: Build G1 Benedict\n\n29) CDRodeffer: Build B1 Cdrodeffer\n\n30) benedict: Discover G1 Benedict Y1 Carpe_diem\n\tCDRodeffer: I made a tactical error in my previous turn. Fortunately, you didn&#39;t capitalize on it.\n\tbenedict: and you could have destroyed my green technology on your turn, so I&#39;m glad you didn&#39;t do that!\n\n31) CDRodeffer: Build Y2 Cdrodeffer\n\n32) benedict: Discover Y1 Benedict R1 Nosebleed\n\n33) CDRodeffer: Move Y2 Cdrodeffer Marble\n\tCDRodeffer: I didn&#39;t want to immediately destroy your home green technology. That would have given us each direct access to the other&#39;s home worlds too quickly.\n\n34) benedict: Build R2 Benedict\n\tbenedict: ah, ok\n\n35) CDRodeffer: Build R2 Cdrodeffer\n\n36) benedict: Trade R2 B2 Benedict\n\n37) CDRodeffer: Sacrifice Y2 Marble\nMove B1 Cdrodeffer Marble\nMove R2 Cdrodeffer Marble\n\n38) benedict: Build Y2 Benedict\n\n39) CDRodeffer: Build Y2 Cdrodeffer\n\n40) benedict: Move B2 Benedict Carpe_diem\n\n41) CDRodeffer: Move G1 Cdrodeffer Marble\n\n42) benedict: Build B2 Carpe_diem\n\n43) CDRodeffer: Discover B1 Marble G2 Dangersense\n\n44) benedict: Build G3 Carpe_diem\n\n45) CDRodeffer: Build G3 Marble\n\n46) benedict: Sacrifice G1 Benedict\nBuild Y2 Nosebleed\n\n47) CDRodeffer: Move Y1 Marble Dangersense\n\n48) benedict: Discover G3 Carpe_diem Y3 Barony\n\n49) CDRodeffer: Move Y2 Cdrodeffer Marble\n\n50) benedict: Build R2 Benedict\n\n51) CDRodeffer: Move G3 Marble Nosebleed\n\n52) benedict: Sacrifice Y1 Nosebleed\nMove Y2 Nosebleed Dangersense\n\n53) CDRodeffer: Sacrifice Y1 Dangersense\nMove G3 Nosebleed Dangersense\n\n54) benedict: Sacrifice Y2 Dangersense\nMove B2 Carpe_diem Barony\nMove B2 Carpe_diem Barony\n\n55) CDRodeffer: Sacrifice Y2 Marble\nMove B1 Cdrodeffer Barony\nMove G3 Dangersense Carpe_diem\n\n56) benedict: Trade B2 R2 Barony\n\n57) CDRodeffer: Move B1 Barony Carpe_diem\n\n58) benedict: Move G1 Carpe_diem Barony\n\n59) CDRodeffer: Build B2 Dangersense\n\n60) benedict: Build B2 Barony\n\n61) CDRodeffer: Trade B1 Y1 Dangersense\n\n62) benedict: Build Y1 Benedict\n\n63) CDRodeffer: Build Y2 Dangersense\n\n64) benedict: Discover Y1 Benedict B1 Hegemony\n\n65) CDRodeffer: Move Y2 Dangersense Hegemony\n\n66) benedict: Move Y1 Hegemony Barony\n\n67) CDRodeffer: Build Y2 Dangersense\n\n68) benedict: Move G3 Barony Hegemony\n\n69) CDRodeffer: Move Y2 Hegemony Benedict\n\n70) benedict: Move Y2 Benedict Hegemony\n\n71) CDRodeffer: Discover Y2 Benedict R1 Nosebleed\n\n72) benedict: Build R3 Barony\n\n73) CDRodeffer: Build R3 Marble\n\n74) benedict: Move R3 Barony Dangersense\n\n75) CDRodeffer: Sacrifice Y2 Dangersense\nMove Y1 Dangersense Barony\nMove Y2 Nosebleed Barony\nCatastrophe Barony Yellow\n\n76) benedict: Attack B2 Dangersense\n\n77) CDRodeffer: Build G1 Carpe_diem\n\n78) benedict: Trade R3 G3 Dangersense\n\n79) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G1 Marble\nBuild G3 Carpe_diem\nBuild Y1 Cdrodeffer\n\n80) benedict: Build Y1 Hegemony\n\n81) CDRodeffer: Move Y1 Cdrodeffer Marble\n\n82) benedict: Trade G3 Y3 Dangersense\n\n83) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G3 Carpe_diem\nBuild B2 Carpe_diem\nBuild Y2 Cdrodeffer\n\n84) benedict: Build Y2 Dangersense\n\n85) CDRodeffer: Sacrifice Y2 Cdrodeffer\nMove R3 Marble Cdrodeffer\nMove G1 Marble Cdrodeffer\n\n86) benedict: Build Y2 Benedict\n\n87) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G3 Carpe_diem\nBuild G3 Marble\nBuild R1 Marble\n\n88) benedict: Move R1 Benedict Hegemony\n\n89) CDRodeffer: Move R1 Marble Carpe_diem\n\n90) benedict: Discover Y2 Dangersense R3 Julius\n\n91) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G3 Carpe_diem\nBuild R2 Marble\nBuild R3 Carpe_diem\n\n92) benedict: Sacrifice Y2 Benedict\nMove Y1 Hegemony Julius\nMove Y2 Hegemony Julius\n\n93) CDRodeffer: Discover Y3 Cdrodeffer B3 Neptune\n\n94) benedict: Sacrifice Y3 Dangersense\nMove Y1 Julius Carpe_diem\nMove Y2 Julius Carpe_diem\nMove Y2 Julius Carpe_diem\nCatastrophe Carpe_diem Y\n\n95) CDRodeffer: Move Y3 Neptune Dangersense\n\n96) benedict: Build Y1 Benedict\n\n97) CDRodeffer: Move R2 Marble Dangersense\n\n98) benedict: Move Y1 Benedict Hegemony\n\n99) CDRodeffer: Attack B2 Dangersense\n\n100) benedict: Build G1 Hegemony\n\n101) CDRodeffer: Sacrifice G3 Marble\nBuild G3 Marble\nBuild Y1 Dangersense\nBuild Y2 Marble\n\n102) benedict: Sacrifice G3 Hegemony\nBuild G3 Hegemony\nBuild Y2 Hegemony\nBuild R1 Hegemony\n\n103) CDRodeffer: Discover G1 Marble B1 Royal\n\n104) benedict: Discover Y2 Hegemony R3 Outpost\n\n105) CDRodeffer: Sacrifice G3 Marble\nBuild G3 Royal\nBuild B2 Dangersense\nBuild B2 Dangersense\n\n106) benedict: Move G1 Hegemony Outpost\n\n107) CDRodeffer: Sacrifice Y3 Dangersense\nMove B2 Dangersense Hegemony\nMove B2 Dangersense Hegemony\nMove B2 Dangersense Hegemony\nCatastrophe Hegemony Blue\n\n108) benedict: Build G3 Outpost\n\n109) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\n110) benedict: Discover G1 Outpost Y2 Avalon\n\n111) CDRodeffer: Build Y3 Cdrodeffer\n\n112) benedict: Build Y3 Outpost\n\n113) CDRodeffer: Discover Y3 Cdrodeffer G3 Dotdotdot\n\n114) benedict: Move G3 Outpost Avalon\n\n115) CDRodeffer: Sacrifice Y1 Marble\nMove G1 Royal Marble\n\n116) benedict: Build R1 Benedict\n\n117) CDRodeffer: Sacrifice Y2 Marble\nMove Y1 Cdrodeffer Outpost\nMove Y1 Dangersense Outpost\nCatastrophe Outpost Yellow\n\n118) benedict: Discover R1 Benedict Y1 Smallville\n\n119) CDRodeffer: Move Y3 Dotdotdot Smallville\n\n120) benedict: Move R1 Smallville Avalon\n\n121) CDRodeffer: Build G1 Marble\n\n122) benedict: Discover G1 Avalon Y3 Wessex\n\n123) CDRodeffer: Trade G1 Y1 Marble\n\n124) benedict: Build G1 Avalon\n\n125) CDRodeffer: Build G3 Marble\n\n126) benedict: Sacrifice G3 Avalon\nBuild R1 Benedict\nBuild R3 Avalon\nBuild G3 Wessex\n\n127) CDRodeffer: Sacrifice G3 Marble\nBuild G3 Marble\nBuild R3 Dangersense\nBuild Y1 Marble\n\n128) benedict: Build Y2 Benedict\n\n129) CDRodeffer: Move Y1 Marble Royal\n\n130) benedict: Discover Y2 Benedict B1 Blueberry\n\n131) CDRodeffer: Build Y2 Royal\n\n132) benedict: Trade R2 B2 Benedict\n\n133) CDRodeffer: Trade R2 B2 Marble\n\n134) benedict: Move B2 Benedict Blueberry\n\n135) CDRodeffer: Move Y1 Royal Dangersense\n\n136) benedict: Move B2 Blueberry Avalon\n\n137) CDRodeffer: Move R2 Dangersense Smallville\n\n138) benedict: Sacrifice G3 Wessex\nBuild G3 Wessex\nBuild R2 Benedict\nBuild B2 Avalon\n\n139) CDRodeffer: Move B2 Marble Smallville\n\n140) benedict: Sacrifice Y2 Blueberry\nMove R3 Avalon Wessex\nMove R3 Wessex Cdrodeffer\n\n141) CDRodeffer: Attack R3 Cdrodeffer\n\tCDRodeffer: Aaaaaaahhh!!!!\n\n142) benedict: Sacrifice Y3 Benedict\nMove R1 Avalon Wessex\nMove R1 Wessex Cdrodeffer\nPass\nCatastrophe Cdrodeffer R\n\n\nHomeworlds Online (SDG# 1604)\nStarted: 2005.11.30, Ended: 2006.1.17\nParticipants: jeep (S), TwoShort (N)\nWinner: jeep\n\n1) TwoShort: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jeep: Build G1 Jeep\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) jeep: Discover G1 Jeep B2 Moon\n\n7) TwoShort: Build G1 Twoshort\n\n8) jeep: Build G2 Jeep\n\n9) TwoShort: Build G2 Yolonda\n\n10) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G3 Jeep\nBuild G3 Moon\n\n11) TwoShort: Discover G1 Yolonda Y2 Yak\n\n12) jeep: Trade G2 Y2 Jeep\n\n13) TwoShort: Trade G1 Y1 Twoshort\n\n14) jeep: Move Y2 Jeep Moon\n\n15) TwoShort: Build G1 Twoshort\n\n16) jeep: Build Y1 Moon\n\n17) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n18) jeep: Discover G1 Moon Y3 Station\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yak\nBuild G3 Twoshort\nBuild Y1 Bluonia\n\n20) jeep: Move G3 Moon Station\n\n21) TwoShort: Trade G1 R1 Twoshort\n\n22) jeep: Trade G2 R2 Jeep\n\n23) TwoShort: Discover Y1 Bluonia B2 Bluestar\n\n24) jeep: Move G3 Station Moon\n\n25) TwoShort: Sacrifice G2 Yolonda\nBuild Y3 Bluestar\nBuild G1 Twoshort\n\tjeep: Sorry, tough decision there.\n\n26) jeep: Build G2 Station\n\n27) TwoShort: Move G1 Twoshort Station\n\n28) jeep: Sacrifice G2 Station\nBuild G2 Moon\nBuild R1 Jeep\n\n29) TwoShort: Build G2 Station\n\n30) jeep: Move R1 Jeep Moon\n\tTwoShort: Just FYI: I&#39;ll be travelling for the next two weeks, and I&#39;m not sure if/when I&#39;ll have net aceess, so I might disapear for a while.\n\tjeep: No problem.  I&#39;ll be travelling Xmas week.\n\n31) TwoShort: Sacrifice Y3 Bluestar\nMove G2 Station Moon\nMove G1 Station Moon\nMove G2 Yak Station\nCatastrophe Moon Green\n\n32) jeep: Discover Y1 Moon Y3 Stopper\n\tjeep: Merry Xmas!  I have intermittant access for the rest of the week.  I&#39;ll print out the position and move soon-ish.\n\n33) TwoShort: Sacrifice G1 Yak\nBuild Y2 Bluestar\n\tjeep: I tried to move yesterday, but got errors.  Looks like Aaron fixed them.  I won&#39;t have access tomorrow and maybe not the next.  I&#39;ll be home on the 31st, though.\n\n34) jeep: Build G1 Jeep\n\tjeep: I&#39;m home, I should be back to one move per day or more.\n\n35) TwoShort: Build G1 Twoshort\n\n36) jeep: Sacrifice G3 Jeep\nBuild G2 Station\nBuild G2 Station\nBuild G3 Jeep\n\tjeep: Yesterday, all I could see was a red X.  today it&#39;s better again.\n\n37) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\nBuild R1 Twoshort\nCatastrophe Station Green\n\n38) jeep: Sacrifice G1 Jeep\nBuild Y3 Moon\n\tjeep: *laugh*  I thought I had a green that could go in if you built two greens...\n\n39) TwoShort: Move G3 Twoshort Stopper\n\n40) jeep: Build G1 Jeep\n\n41) TwoShort: Sacrifice R1 Twoshort\nAttack Y1S Stopper\n\n42) jeep: Move Y2 Moon Bluonia\n\n43) TwoShort: Discover Y1 Stopper R2 D2\n\n44) jeep: Move G1 Jeep Moon\n\n45) TwoShort: Sacrifice G3 Stopper\nBuild Y3 Bluonia\nBuild R1 Twoshort\nPass\n\n46) jeep: Move Y2 Bluonia D2\n\n47) TwoShort: Move Y3 Bluonia D2\n\n48) jeep: Move Y2 D2 Bluonia\n\n49) TwoShort: Discover Y1 Bluonia G2 Gordo\n\n50) jeep: Build R2 Moon\n\n51) TwoShort: Discover R1 Twoshort G3 Grogar\n\n52) jeep: Move R2 Moon Grogar\n\n53) TwoShort: Build R3 Grogar\n\n54) jeep: Sacrifice G3 Jeep\nBuild R3 Jeep\nBuild R3 Moon\nBuild G1 Moon\n\n55) TwoShort: Sacrifice Y2 Bluestar\nMove R3 Grogar Bluestar\nMove R3 Bluestar Jeep\n\n56) jeep: Sacrifice R2 Jeep\nAttack R3N Jeep\nAttack R1N Grogar\n\n57) TwoShort: Build Y2 Gordo\n\tTwoShort: Ack!  I completely missed that.\n\n58) jeep: Build R2 Grogar\n\tjeep: I had clicked &quot;confirm resignation&quot; and went back for a second look when I saw it.\n\n59) TwoShort: Sacrifice Y3 D2\nMove Y1 D2 Jeep\nMove Y1 Bluestar Jeep\nMove Y1 Gordo Jeep\nCatastrophe Jeep Yellow\n\n60) jeep: Build R2 Moon\n\tjeep: Ouch.\n\n61) TwoShort: Build Y1 Gordo\n\tTwoShort: Unfortunately, blowing up halh your homeworld is just petty vandalism before I lose.  Still, it&#39;s fun to be part of a game that had such a dramatic turnaround on one overlooked move.  I just wish I saw another dramatic reveral in the offing....\n\n62) jeep: Sacrifice Y2 Bluonia\nMove R2 Grogar Twoshort\nMove R2 Grogar Twoshort\n\tjeep: I don&#39;t know if I should be cautious of go all out...\n\n63) TwoShort: Attack R2S Twoshort\n\tTwoShort: You should definitely go all out, throwing caution to the wind, to the point that you make a critical oversight....   \n\n64) jeep: Sacrifice R3 Moon\nAttack R2N Twoshort\nAttack R1N Twoshort\nAttack G1N Twoshort\n\n\tTwoShort: Well, I&#39;m not seeing that critical oversight...  good game.\n\nHomeworlds Online (SDG# 1678)\nStarted: 2005.12.1, Ended: 2005.12.10\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 R2 G3\n\n2) jeep: Homeworld Y3 B2 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Trade G1 Y1 Sketchwick\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Discover G1 Sketchwick G3 Jolly\n\n10) jeep: Discover G1 Jeep B1 Happy\n\n11) sketchwick: Build Y1 Sketchwick\n\n12) jeep: Build Y2 Jeep\n\n13) sketchwick: Move Y1 Sketchwick Jolly\n\n14) jeep: Move Y1 Jeep Happy\n\n15) sketchwick: Build Y2 Sketchwick\n\n16) jeep: Move G1 Happy Jolly\n\n17) sketchwick: Discover Y1 Jolly B1 Bean\n\n18) jeep: Build G1 Jeep\n\n19) sketchwick: Build G2 Sketchwick\n\n20) jeep: Discover Y2 Jeep R1 Burrito\n\n21) sketchwick: Sacrifice G3 Sketchwick\nBuild Y2 Bean\nBuild Y3 Bean\nBuild Y3 Sketchwick\n\n22) jeep: Sacrifice Y2 Burrito\nMove Y1 Happy Jolly\nMove Y1 Jolly Sketchwick\nCatastrophe Sketchwick Yellow\n\n23) sketchwick: Build G2 Sketchwick\n\n24) jeep: Trade G1 R1 Jeep\n\n25) sketchwick: Trade G2 R2 Sketchwick\n\n26) jeep: Build R1 Jeep\n\n27) sketchwick: Trade Y2 R2 Bean\n\n28) jeep: Trade R1 Y1 Jeep\n\n29) sketchwick: Discover Y1 Bean B2 Giant\n\n30) jeep: Build R1 Jeep\n\n31) sketchwick: Build R1 Sketchwick\n\n32) jeep: Discover R1 Jeep G1 Growth\n\n33) sketchwick: Trade R1 Y1 Sketchwick\n\n34) jeep: Sacrifice R1 Growth\nAttack G1N Jolly\n\n35) sketchwick: Sacrifice G2 Sketchwick\nBuild Y2 Sketchwick\nBuild Y2 Giant\n\n36) jeep: Discover Y1 Jeep G1 Wurm\n\n37) sketchwick: Trade R2 G2 Sketchwick\n\n38) jeep: Move Y1 Wurm Jolly\n\n39) sketchwick: Move G2 Sketchwick Jolly\nCatastrophe Jolly Green\n\n40) jeep: Build G1 Jeep\n\n41) sketchwick: Trade Y2 G2 Sketchwick\n\n42) jeep: Build R1 Jeep\n\n43) sketchwick: Build G1 Sketchwick\n\n44) jeep: Trade G1 B1 Jeep\n\n45) sketchwick: Build Y1 Sketchwick\n\n46) jeep: Build R1 Jeep\n\n47) sketchwick: Move R2 Bean Jeep\nCatastrophe Jeep Red\n\n48) jeep: Build B2 Jeep\n\n49) sketchwick: Sacrifice G2 Sketchwick\nBuild Y2 Bean\nBuild Y2 Bean\n\n50) jeep: Discover B2 Jeep R1 Killer\n\n51) sketchwick: Trade Y3 B3 Bean\n\n52) jeep: Build G1 Jeep\n\n53) sketchwick: Build Y3 Sketchwick\n\n54) jeep: Move G1 Jeep Killer\n\n55) sketchwick: Sacrifice Y2 Bean\nDiscover Y3 Sketchwick R3 Temp\nMove Y3 Temp Killer\n\n\tjeep: I&#39;d rather just play another game.  This is clearly lost.\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1653)\nStarted: 2005.12.1, Ended: 2006.1.24\nParticipants: Personman (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\tPersonman: Hey,\r\nI am a relative novice at Homeworlds, but I felt I simply couldn&#39;t pass up the opportunity to play with you. If you&#39;re looking for a more serious game, I&#39;ll gladly go away, but if you don&#39;t mind helping induct me into the wonderful world of homeworlds, that&#39;d be great too. \r\nI am an avid reader of your website, and not-avid-enough player of your games (I only own fluxx, and while I love it I haven&#39;t played in a while... I&#39;ve been playing lots of icehouse games here recently, but I don&#39;t think I&#39;ve ever actually played one with the real things. It is sad. Someday.)\n\n2) Personman: Homeworld Y2 B3 G3\n\tandylooney: I welcome all players, novice and expert! And if you like Homeworlds, you really should try it with the real pieces someday...\n\n3) andylooney: Build Y1 Andylooney\n\n4) Personman: Build G1 Personman\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Personman: Build G2 Personman\n\n7) andylooney: Build G2 Andylooney\n\n8) Personman: Trade G2 Y2 Personman\n\n9) andylooney: Discover G2 Andylooney Y3 Thurston\n\n10) Personman: Build G2 Personman\n\n11) andylooney: Build G2 Thurston\n\n12) Personman: Discover G2 Personman Y1 Torn Shut\n\n13) andylooney: Trade G1 R1 Andylooney\n\tPersonman: Oh. That&#39;s sad. I didn&#39;t know it couldn&#39;t take two-word star names. It was supposed to be Torn Shut, the most interesting anagram of Thurston I could find at a moment&#39;s notice, but sadly the second word was, so to speak, torn off. \n\n14) Personman: Sacrifice G3 Personman\nBuild G1 Torn\nBuild G3 Personman\nBuild G3 Personman\n\n15) andylooney: Move G2 Thurston Torn\n\n16) Personman: Discover G3 Personman B1 Tron\n\n17) andylooney: Build G3 Thurston\n\n18) Personman: Trade Y2 B2 Personman\n\n19) andylooney: Move G3 Thurston Tron\n\n20) Personman: Discover G2 Torn R3 Rotn\n\n21) andylooney: Sacrifice R1 Andylooney\nAttack G3S Tron\n\n22) Personman: Build B1 Personman\n\n23) andylooney: Sacrifice G3 Tron\nBuild G3 Thurston\nBuild Y1 Andylooney\nBuild Y1 Andylooney\n\n24) Personman: Trade B2 Y2 Personman\n\n25) andylooney: Trade Y1 R1 Andylooney\n\n26) Personman: Discover Y2 Personman B1 Nort\n\n27) andylooney: Sacrifice G3 Thurston\nBuild G3 Thurston\nBuild R1 Andylooney\nBuild R1 Andylooney\n\n28) Personman: Trade G3 R3 Personman\n\n29) andylooney: Build G3 Tron\n\n30) Personman: Build R2 Personman\n\n31) andylooney: Sacrifice R1 Andylooney\nAttack G1S Torn\n\n32) Personman: Move Y2 Nort Rotn\n\n33) andylooney: Trade G3 Y3 Tron\n\n34) Personman: Build R1 Personman\n\n35) andylooney: Sacrifice G3 Thurston\nBuild G3 Thurston\nBuild G3 Tron\nBuild R2 Andylooney\n\n36) Personman: Move R2 Personman Torn\n\n37) andylooney: Sacrifice R1 Andylooney\nAttack R2S Torn\n\n38) Personman: Build Y1 Rotn\n\n39) andylooney: Sacrifice G3 Tron\nBuild G3 Tron\nBuild Y2 Tron\nBuild R1 Torn\n\n40) Personman: Move R1 Personman Tron\n\n41) andylooney: Sacrifice R1 Andylooney\nAttack R1S Tron\n\n42) Personman: Move Y1 Rotn Tron\n\n43) andylooney: Sacrifice Y3 Tron\nDiscover G3 Tron Y3 Howell3\nMove G3 Tron Rotn\nDiscover G2 Thurston B1 Berry\n\n\nHomeworlds Online (SDG# 1695)\nStarted: 2005.12.2, Ended: 2005.12.18\nParticipants: Laurie_Menke (S), MightyJack (N)\nWinner: MightyJack\n\n1) MightyJack: Homeworld Y3 B2 G3\n\n2) Laurie_Menke: Homeworld Y1 B2 G3\n\tLaurie_Menke: Hi...nice to meet you MightyJack!  Good luck!\n\n3) MightyJack: Build G1 Mightyjack\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tMightyJack: Likewise, Laurie!\n\n5) MightyJack: Trade G1 B1 Mightyjack\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) MightyJack: Build B1 Mightyjack\n\n8) Laurie_Menke: Discover G1 Laurie_menke B3 Phonebooth\n\n9) MightyJack: Discover B1 Mightyjack Y1 Alphacentauri\n\n10) Laurie_Menke: Discover G1 Laurie_menke B3 Bodyshop\n\n11) MightyJack: Trade B1 R1 Alphacentauri\n\n12) Laurie_Menke: Build G1 Phonebooth\n\n13) MightyJack: Move R1 Alphacentauri Phonebooth\n\n14) Laurie_Menke: Build G2 Phonebooth\n\n15) MightyJack: Build G2 Mightyjack\n\n16) Laurie_Menke: Trade G2 R2 Phonebooth\n\n17) MightyJack: Sacrifice G2 Mightyjack\nBuild R1 Phonebooth\nBuild R1 Phonebooth\nCatastrophe Phonebooth Red\n\n18) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: Huh...alright...that was surprising!\n\n19) MightyJack: Build G2 Mightyjack\n\tMightyJack: Not sure it was the best thing for me to do, but...\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Bodyshop\nBuild G3 Laurie_menke\nBuild G3 Bodyshop\n\n21) MightyJack: Build B1 Mightyjack\n\n22) Laurie_Menke: Trade G1 Y1 Bodyshop\n\n23) MightyJack: Discover B1 Mightyjack G1 Orion\n\n24) Laurie_Menke: Move G3 Bodyshop Laurie_menke\n\n25) MightyJack: Sacrifice G3 Mightyjack\nBuild B1 Orion\nBuild B2 Orion\nBuild B3 Mightyjack\n\n26) Laurie_Menke: Build G3 Bodyshop\n\n27) MightyJack: Trade B2 Y2 Orion\n\n28) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n29) MightyJack: Build G3 Mightyjack\n\n30) Laurie_Menke: Trade G1 R1 Phonebooth\n\n31) MightyJack: Build B2 Orion\n\n32) Laurie_Menke: Trade G1 Y1 Phonebooth\n\n33) MightyJack: Trade G3 R3 Mightyjack\n\n34) Laurie_Menke: Build Y2 Bodyshop\n\n35) MightyJack: Trade B3 Y3 Mightyjack\n\n36) Laurie_Menke: Move Y1 Bodyshop Orion\n\n37) MightyJack: Trade B2 R2 Orion\n\n38) Laurie_Menke: Discover Y1 Orion B3 B3\n\n39) MightyJack: Build B2 Orion\n\n40) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 B3\nBuild Y3 B3\n\n41) MightyJack: Move Y2 Orion B3\nCatastrophe B3 Yellow\n\n42) Laurie_Menke: Trade G3 B3 Bodyshop\n\tLaurie_Menke: Oops...so that was stupid of me.  :o(\n\n43) MightyJack: Sacrifice Y3 Mightyjack\nMove B1 Orion Bodyshop\nMove B1 Orion Bodyshop\nPass\nCatastrophe Bodyshop Blue\n\tMightyJack: I thought you might have overlooked that possibility... and I think you overlooked it again.\n\n44) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: Ack!  Actually, I had realized that you could move your blue horde over and create a catastrophe, but I had forgotten that the star itself counts.  So I was betting against you moving and sacrificing all 3 of your blues to get one of my blues.  Obviously, the star going supernova did much more damage than that.  Nice playing!  :o)\n\n45) MightyJack: Trade B2 Y2 Orion\n\tMightyJack: Thanks!  I had a feeling that you hadn&#39;t been expecting a star-shattering kaboom...\n\n46) Laurie_Menke: Build G1 Laurie_menke\n\n47) MightyJack: Build B1 Mightyjack\n\n48) Laurie_Menke: Move G1 Laurie_menke Phonebooth\n\n49) MightyJack: Move B1 Mightyjack Orion\n\n50) Laurie_Menke: Build G1 Laurie_menke\n\n51) MightyJack: Build G2 Mightyjack\n\n52) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Phonebooth\nBuild G3 Phonebooth\nBuild G3 Laurie_menke\n\n53) MightyJack: Sacrifice Y2 Orion\nMove G2 Mightyjack Orion\nMove G2 Orion Phonebooth\nCatastrophe Phonebooth Green\n\n54) Laurie_Menke: Move G1 Laurie_menke Phonebooth\n\tLaurie_Menke: Now cut that out!  ;o)\n\n55) MightyJack: Trade B1 Y1 Orion\n\n56) Laurie_Menke: Move R3 Laurie_menke Phonebooth\n\n57) MightyJack: Move R3 Mightyjack Orion\n\n58) Laurie_Menke: Build Y2 Phonebooth\n\n59) MightyJack: Build Y2 Orion\n\n60) Laurie_Menke: Sacrifice Y2 Phonebooth\nMove R3 Phonebooth Orion\nMove R1 Phonebooth Orion\nCatastrophe Orion R\n\n61) MightyJack: Build B1 Mightyjack\n\tLaurie_Menke: Ha-HA!  Two can play that catastrophe game!  ;o)\n\tMightyJack: Nice job, mad bomber.  :-)\n\n62) Laurie_Menke: Build Y2 Phonebooth\n\tLaurie_Menke: :o)\n\n63) MightyJack: Move B1 Mightyjack Orion\n\n64) Laurie_Menke: Move Y2 Phonebooth Laurie_menke\n\n65) MightyJack: Build B1 Orion\n\n66) Laurie_Menke: Discover Y1 Phonebooth B2 Big_blue\n\n67) MightyJack: Sacrifice G2 Mightyjack\nBuild B3 Mightyjack\nBuild B3 Orion\n\n68) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Big_blue\nBuild Y3 Big_blue\nBuild Y3 Laurie_menke\n\n69) MightyJack: Sacrifice Y2 Orion\nMove Y1 Orion Phonebooth\nMove Y1 Phonebooth Laurie_menke\nCatastrophe Laurie_menke Yellow\n\n70) Laurie_Menke: Sacrifice Y1 Big_blue\nMove G1 Phonebooth Big_blue\n\tMightyJack: The Mad Bomber strikes again!  :-)\n\tLaurie_Menke: OUCH!!!  I *hate* when you do that!!!\n\n71) MightyJack: Trade B3 Y3 Mightyjack\n\n72) Laurie_Menke: Move Y3 Big_blue Orion\n\n73) MightyJack: Sacrifice Y3 Mightyjack\nMove B3 Orion Laurie_menke\nMove B1 Orion Laurie_menke\nMove B1 Orion Laurie_menke\nCatastrophe Laurie_menke Blue\n\tMightyJack: If you didn&#39;t like the last one, you&#39;re *really* going to hate this one... KABOOM!\n\n\nHomeworlds Online (SDG# 1671)\nVariants: &quot;Sinister&quot;\nStarted: 2005.12.2, Ended: 2005.12.16\nParticipants: MightyJack (S), Aaron (W), Kermit (N), Lexicon (E)\nWinner: Aaron\n\n1) Kermit: Homeworld B1 G3 Y3\n\n2) Lexicon: Homeworld G1 B2 Y3\n\n3) MightyJack: Homeworld G3 B1 Y3\n\n4) Aaron: Homeworld B2 Y3 G3\n\tAaron: Hail, all, and good luck!\n\n5) Kermit: Build Y1 Kermit\n\n6) Lexicon: Build Y1 Lexicon\n\n7) MightyJack: Build Y1 Mightyjack\n\n8) Aaron: Build G1 Aaron\n\n9) Kermit: Build Y1 Kermit\n\n10) Lexicon: Trade Y1 G1 Lexicon\n\n11) MightyJack: Trade Y1 B1 Mightyjack\n\n12) Aaron: Trade G1 R1 Aaron\n\n13) Kermit: Trade Y1 B1 Kermit\n\n14) Lexicon: Discover G1 Lexicon Y3 Ichi\n\n15) MightyJack: Build Y1 Mightyjack\n\n16) Aaron: Build R1 Aaron\n\n17) Kermit: Discover B1 Kermit G2 Ein\n\n18) Lexicon: Build Y1 Lexicon\n\n19) MightyJack: Trade Y1 R1 Mightyjack\n\n20) Aaron: Trade R1 Y1 Aaron\n\n21) Kermit: Build B1 Ein\n\n22) Lexicon: Trade Y1 R1 Lexicon\n\n23) MightyJack: Discover B1 Mightyjack G2 Forest\n\n24) Aaron: Discover Y1 Aaron G1 Ni\n\n25) Kermit: Trade B1 Y1 Ein\n\n26) Lexicon: Build G1 Ichi\n\n27) MightyJack: Build Y1 Mightyjack\n\n28) Aaron: Build R1 Aaron\n\n29) Kermit: Discover B1 Ein Y1 Zwei\n\n30) Lexicon: Build Y2 Lexicon\n\n31) MightyJack: Build B1 Forest\n\n32) Aaron: Build Y2 Ni\n\n33) Kermit: Build Y2 Ein\n\n34) Lexicon: Move Y2 Lexicon Ichi\n\n\n35) MightyJack: Move Y1 Mightyjack Forest\n\n36) Aaron: Trade R1 G1 Aaron\n\n37) Kermit: Build Y2 Kermit\n\n38) Lexicon: Build Y2 Lexicon\n\n39) MightyJack: Trade B1 R1 Forest\n\tKermit: Sorry , I made it a short game by srewing up a few turns ago.\n\n40) Aaron: Sacrifice Y2 Ni\nMove Y1 Ni Ein\nMove Y1 Ein Kermit\nCatastrophe Kermit Y\n\n\nHomeworlds Online (SDG# 1698)\nStarted: 2005.12.2, Ended: 2005.12.18\nParticipants: Uglyfoot (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\n2) Uglyfoot: Homeworld G3 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Uglyfoot: Discover Y1 Uglyfoot B1 Gateway\n\n7) andylooney: Discover G1 Andylooney Y3 Thurston\n\n8) Uglyfoot: Trade Y1 G1 Gateway\n\n9) andylooney: Build G2 Thurston\n\n10) Uglyfoot: Build G2 Gateway\n\n11) andylooney: Discover G1 Thurston Y1 Different\n\n12) Uglyfoot: Trade G2 Y2 Gateway\n\n13) andylooney: Build G2 Different\n\n14) Uglyfoot: Build G2 Gateway\n\n15) andylooney: Build G3 Thurston\n\n16) Uglyfoot: Build G3 Gateway\n\n17) andylooney: Move G2 Thurston Gateway\nCatastrophe Gateway Green\n\n18) Uglyfoot: Build Y1 Uglyfoot\n\n19) andylooney: Build Y1 Andylooney\n\n20) Uglyfoot: Trade Y1 G1 Uglyfoot\n\n21) andylooney: Build G2 Thurston\n\n22) Uglyfoot: Move G1 Uglyfoot Gateway\n\n23) andylooney: Trade Y1 R1 Andylooney\n\n24) Uglyfoot: Build Y1 Uglyfoot\n\n25) andylooney: Discover G3 Thurston Y1 Jumpingoffspot\n\n26) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n27) andylooney: Discover G1 Different B3 Ibm\n\n28) Uglyfoot: Discover Y2 Gateway G3 Commerce\n\n29) andylooney: Sacrifice G3 Jumpingoffspot\nBuild G2 Ibm\nBuild G3 Different\nBuild R1 Andylooney\n\n30) Uglyfoot: Build Y1 Uglyfoot\n\n31) andylooney: Move R1 Andylooney Ibm\n\n32) Uglyfoot: Build R2 Uglyfoot\n\n33) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R2 Ibm\nBuild Y1 Andylooney\n\n34) Uglyfoot: Build Y2 Uglyfoot\n\n35) andylooney: Trade R2 Y2 Ibm\n\n36) Uglyfoot: Move Y2 Uglyfoot Gateway\n\n37) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R2 Andylooney\nBuild R2 Ibm\n\n38) Uglyfoot: Build R3 Uglyfoot\n\n39) andylooney: Sacrifice Y2 Ibm\nMove R1 Ibm Gateway\nMove R1 Gateway Uglyfoot\nCatastrophe Uglyfoot Red\n\tUglyfoot: Neat move with the sacrifice.  I knew that I would learn several things from this game!\r\n\n\n40) Uglyfoot: Build Y2 Commerce\n\n41) andylooney: Move G3 Different Uglyfoot\n\n42) Uglyfoot: Sacrifice Y2 Gateway\nMove Y2 Commerce Andylooney\nMove Y2 Commerce Andylooney\nCatastrophe Andylooney Y\n\n43) andylooney: Sacrifice R2 Ibm\nAttack Y3S Uglyfoot\nAttack Y1S Uglyfoot\n\tandylooney: Nice parting shot. Thanks for the game!\n\n\nHomeworlds Online (SDG# 1729)\nStarted: 2005.12.5, Ended: 2005.12.9\nParticipants: Murwiz (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld Y1 B2 G3\n\n2) Murwiz: Homeworld G1 B3 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Murwiz: Build Y1 Murwiz\n\tUglyfoot: I like this interface.\n\n5) Uglyfoot: Discover G1 Uglyfoot B3 Bigblue\n\n6) Murwiz: Discover Y1 Murwiz G2 Modestgreen\n\n7) Uglyfoot: Build G1 Bigblue\n\n8) Murwiz: Build Y1 Modestgreen\n\n9) Uglyfoot: Build G2 Bigblue\n\n10) Murwiz: Build Y2 Murwiz\n\n11) Uglyfoot: Build G2 Uglyfoot\n\n12) Murwiz: Trade Y2 B2 Murwiz\n\n13) Uglyfoot: Build G3 Uglyfoot\n\n14) Murwiz: Build B1 Murwiz\n\tMurwiz: Be careful not to make my error.\n\n15) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n16) Murwiz: Build Y2 Murwiz\n\tUglyfoot: I&#39;ll be careful.\n\n17) Uglyfoot: Move Y3 Uglyfoot Bigblue\n\n18) Murwiz: Sacrifice B1 Murwiz\nTrade Y1 B1 Modestgreen\n\n19) Uglyfoot: Discover G1 Bigblue Y2 Movinalong\n\n20) Murwiz: Build Y1 Modestgreen\n\n21) Uglyfoot: Build G3 Movinalong\n\n22) Murwiz: Discover Y1 Modestgreen G3 Bignleafy\n\n23) Uglyfoot: Move G1 Movinalong Murwiz\n\n24) Murwiz: Build Y2 Bignleafy\n\tMurwiz: You are obviously online and shuffling moves, but not on Yahoo?\n\n25) Uglyfoot: Trade G1 B1 Murwiz\n\n26) Murwiz: Trade B2 R2 Murwiz\n\tUglyfoot: Yahoo! has! been! crashing! on! me!\n\tMurwiz: Take a look at gaim: http://gaim.sourceforge.net. On Windows I used Trillian, and it&#39;s pretty cool but it does cost $30 for the full version.\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild B1 Murwiz\nBuild B2 Murwiz\nBuild Y3 Bigblue\nCatastrophe Murwiz B\n\n28) Murwiz: Build R1 Murwiz\n\tUglyfoot: slimy, eh?\n\tMurwiz: Yeah, I saw it coming. At least I got the b2 ship converted, which (a) saved a ship and (b) made you use a G3 instead of a G2.\n\n29) Uglyfoot: Sacrifice Y3 Bigblue\nMove G1 Bigblue Murwiz\nMove G2 Bigblue Murwiz\nMove G3 Movinalong Murwiz\nCatastrophe Murwiz G\n\n\nHomeworlds Online (SDG# 1708)\nVariants: &quot;Sinister&quot;\nStarted: 2005.12.7, Ended: 2005.12.31\nParticipants: Lexicon (S), ts52 (N), Yobi (E)\nWinner: ts52\n\n1) ts52: Homeworld G2 B1 Y3\n\n2) ts52: Pass\n\tYobi: Sup, Lex\r\n\n\tYobi: Sup, Lex\r\n\n\tYobi: Oops, double post\n\tLexicon: howdy.\n\tLexicon: Dooo be do be doooo.\n\n3) Lexicon: Homeworld G1 B3 Y3\n\tSYSTEM: Yobi resigns.\n\tLexicon: Hmmm.  Seems to have skipped me.\n\tts52: That&#39;s really odd. I wonder why that happned.\r\nYou man want to point this one out to Aaron. I&#39;ll hold off doing anything for a while if you want. Or maybe I can just pass, I&#39;ll check.\n\n4) ts52: Build Y1 Ts52\n\tts52: Aha, it did let me just pass. Now you should be able to establish a homeworld.\n\tAaron: Thanks for passing, ts.  I have had problems with the resignation code from the beginning.  I *think* (again) that I have fixed the problem.  We will see when this situation recurs.  Thanks for your patience!\n\tLexicon: Thanks guys. :)  \n\n5) Lexicon: Build Y1 Lexicon\n\n6) ts52: Build Y1 Ts52\n\tts52: No problem. I don&#39;t think the game rules allow passing, but it&#39;s nice that it&#39;s there so we can work around glitches like this.\r\n\n\tts52: Ack! I just realized we&#39;re now playing a 2 player game with a 4 pyramid economy. This changes everything! :)\n\n7) Lexicon: Trade Y1 G1 Lexicon\n\tLexicon: This should be interesting.  I haven&#39;t played by these rules but a couple times, so I wasn&#39;t any good at the shortages anyway, though they totally shaped the game.\n\tLexicon: My friend group managed to totally misread or make up the rules to this game and didn&#39;t realize it for quite a while.  Have to make sure someone else reads the rules next time. ;)\n\tts52: Best of luck to you. Feel free to ask me questions and -pass- to get my attention. Then I&#39;ll pass back to you.\n\n8) ts52: Trade Y1 G1 Ts52\n\n9) Lexicon: Build Y1 Lexicon\n\tLexicon: I had Jesse give me a training game so I&#39;m basically up to speed.  I&#39;m one to ask when I have questions though.\n\n10) ts52: Discover Y1 Ts52 G3 Oscar\n\n11) Lexicon: Discover G1 Lexicon B2 Door\n\tts52: Ah, fair enough then. Jesse&#39;s pretty good at teaching people.\n\n12) ts52: Build Y1 Oscar\n\n13) Lexicon: Trade Y1 R1 Lexicon\n\n14) ts52: Build Y1 Ts52\n\n15) Lexicon: Build R1 Lexicon\n\n16) ts52: Trade Y1 R1 Ts52\n\n17) Lexicon: Move R1 Lexicon Door\n\n18) ts52: Build Y1 Ts52\n\n19) Lexicon: Build Y1 Lexicon\n\n20) ts52: Discover Y1 Oscar G2 Lime\n\n21) Lexicon: Move Y1 Lexicon Door\n\n22) ts52: Build Y2 Oscar\n\n23) Lexicon: Discover G1 Door B3 Lamp\n\n24) ts52: Build Y2 Lime\n\n25) Lexicon: Build Y2 Lexicon\n\n26) ts52: Discover Y1 Ts52 Y3 Sol\n\n27) Lexicon: Move R1 Door Sol\n\n28) ts52: Move Y2 Lime Sol\n\n29) Lexicon: Attack Y1N Sol\n\n30) ts52: Move Y2 Sol Lime\n\n31) Lexicon: Move Y1 Sol Lime\n\n32) ts52: Discover Y2 Lime G3 Kermit\n\n33) Lexicon: Move R1 Sol Door\n\n34) ts52: Discover Y1 Oscar G2 Apple\n\n35) Lexicon: Move R1 Door Lamp\n\n36) ts52: Sacrifice Y2 Kermit\nMove Y1 Apple Lexicon\nMove Y1 Lime Lexicon\nCatastrophe Lexicon Yellow\n\n37) Lexicon: Build R1 Lamp\n\n38) ts52: Sacrifice Y3 Ts52\nMove Y2 Oscar Door\nMove Y2 Door Lexicon\nPass\n\tLexicon: That doesn&#39;t bode well.\n\n39) Lexicon: Build R2 Lexicon\n\n40) ts52: Sacrifice R1 Ts52\nAttack R2S Lexicon\n\tts52: No, but I feel pretty naked myself now...\n\n41) Lexicon: Sacrifice Y1 Lime\nMove R1 Lamp Ts52\n\tLexicon: It&#39;s a little suicidal, but it&#39;s going to work for you.\n\n42) ts52: Attack R1S Lexicon\n\n\tLexicon: Good game.  Hopefully I&#39;ll pay more attention next time. ;)\n\tts52: Good game. I still find it&#39;s hard to keep track of everything...\r\n\n\nHomeworlds Online (SDG# 1740)\nStarted: 2005.12.7, Ended: 2006.1.9\nParticipants: ts52 (S), PhoenixPhyre (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 1741)\nStarted: 2005.12.7, Ended: 2005.12.31\nParticipants: PhoenixPhyre (S), JunkMan (N)\nWinner: JunkMan\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n\tSYSTEM: PhoenixPhyre resigns.\n\nHomeworlds Online (SDG# 1754)\nVariants: &quot;Sinister&quot;\nStarted: 2005.12.10, Ended: 2006.1.14\nParticipants: Jesse (S), bennyb (N)\nWinner: Jesse\n\n1) bennyb: Homeworld B1 G3 R3\n\n2) Jesse: Homeworld G1 B2 Y3\n\n3) bennyb: Build R1 Bennyb\n\tJesse: Hello, bennyb.  Played much Homeworlds?\n\n4) Jesse: Build Y1 Jesse\n\tbennyb: no first game :)  I&#39;ve got no idea what I&#39;m doing ;)\r\n\n\tJesse: Okay, the first thing to do is look at the tips for new players on the wiki.  (There&#39;s also a good exposition of basic strategy at the icehousegames wiki.  There&#39;s a link from the SDG wiki page.)\n\tJesse: Then, my personal recommendation would be to switch your r3 for a y3.  Or, you may prefer to switch the r1 for a y1.  But one way or another, you need to (a) diversify and (b) move out to other systems.  Not necessarily immediately, but soon.\n\n5) bennyb: Trade R1 Y1 Bennyb\n\tbennyb: thanks Jesse.  I had a read of that, very interesting.\n\n6) Jesse: Discover Y1 Jesse G3 Paul\n\n7) bennyb: Discover Y1 Bennyb B2 Dude\n\n8) Jesse: Build Y1 Jesse\n\n9) bennyb: Build R1 Bennyb\n\n10) Jesse: Trade Y1 R1 Jesse\n\n11) bennyb: Trade R1 Y1 Bennyb\n\n12) Jesse: Build Y2 Jesse\n\n13) bennyb: Build R1 Bennyb\n\n14) Jesse: Trade Y2 G2 Jesse\n\n15) bennyb: Move Y1 Bennyb Dude\n\n16) Jesse: Discover G2 Jesse Y3 Erwin\n\n17) bennyb: Trade Y1 G1 Dude\n\n18) Jesse: Build R1 Jesse\n\n19) bennyb: Build Y1 Dude\n\n20) Jesse: Build Y2 Jesse\n\n\tJesse: I&#39;m retiring this game now.\n\nHomeworlds Online (SDG# 1819)\nStarted: 2005.12.10, Ended: 2005.12.18\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld R1 B2 G3\n\n2) jeep: Homeworld Y1 B3 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Trade G1 Y1 Sketchwick\n\n6) jeep: Build G1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Trade G1 Y1 Jeep\n\n9) sketchwick: Build Y2 Sketchwick\n\n10) jeep: Build Y2 Jeep\n\n11) sketchwick: Discover Y1 Sketchwick G3 Gob\n\n12) jeep: Discover Y1 Jeep G2 Stopper\n\n13) sketchwick: Sacrifice G3 Sketchwick\nBuild Y2 Sketchwick\nBuild Y3 Sketchwick\nBuild Y3 Gob\n\n14) jeep: Sacrifice Y2 Jeep\nMove Y1 Stopper Gob\nMove Y1 Gob Sketchwick\nCatastrophe Sketchwick Yellow\n\n15) sketchwick: Build Y1 Gob\n\n16) jeep: Build G1 Jeep\n\n17) sketchwick: Build G2 Sketchwick\n\n18) jeep: Trade G3 R3 Jeep\n\n19) sketchwick: Trade G1 R1 Sketchwick\n\n20) jeep: Discover G1 Jeep Y2 Stopper\n\n21) sketchwick: Move Y1 Gob Sketchwick\n\n22) jeep: Build G1 Stopper\n\n23) sketchwick: Build Y2 Sketchwick\n\n24) jeep: Trade R3 Y3 Jeep\n\n25) sketchwick: Build Y2 Sketchwick\n\tjeep: *sigh* you win...\n\n26) jeep: Build G2 Jeep\n\n27) sketchwick: Build Y3 Gob\n\n28) jeep: Move G1 Stopper Gob\n\n29) sketchwick: Sacrifice Y2 Sketchwick\nMove Y3 Gob Stopper\nMove Y3 Stopper Jeep\n\n\tjeep: Yeah, I lost this way early, no sense playing it out...\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1663)\nStarted: 2005.12.13, Ended: 2006.1.15\nParticipants: bennyb (S), JunkMan (W), Lexicon (N), illvilja (E)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) illvilja: Homeworld G2 B1 Y3\n\tillvilja: homeworld b1 g2 y3\n\tillvilja: Oops...  this is the message window, not the order window :-).\n\n3) JunkMan: Homeworld G1 B3 Y3\n\tillvilja: Cool... that were better!  Ok, ok, Lexicon... I&#39;m a copycat.\n\tLexicon: Well, we&#39;ll just need to refrain from destroying each other.  Now where&#39;s that bennyb at?  Too many new players jumping on, starting games, and not following through.\n\tillvilja: Well, patience is a virtue... but I slowly realize that there might be a point with the &quot;Force surrender&quot; button.\n\tillvilja: That is a problem with game servers where anonymous ppl &quot;too easily&quot; can sign up for a game. As the sign up phase don&#39;t require &quot;enough effort&quot; it does not weed out all the ppl who are quite inactive.  Not that I would sort bennyb into that cathegory, he might have other reasons for not doing his move.\r\n\r\nOh, BTW, Junkman... are you there?  Just pinging...\r\n\n\tLexicon: He hasn&#39;t been on in 2.5 weeks.  Unless y&#39;all want to wait longer, I&#39;m going to resign him tomorrow.\n\tJunkMan: I&#39;m here, I didn&#39;t even remember that I was in this game, it&#39;s been so long.  I&#39;m all for giving people time, but being gone for the better part of a month is too long.  I vote for resigning him if he doesn&#39;t move today.\n\n4) Lexicon: Build Y1 Lexicon\n\n\tLexicon: Fine by me.\n\nHomeworlds Online (SDG# 1853)\nStarted: 2005.12.15, Ended: 2005.12.19\nParticipants: ts52 (S), xoet (N)\nWinner: ts52\n\n1) xoet: Homeworld G3 G3 Y3 *\n\txoet: Hi ts52 no idea what I&#39;m doing am i good or evil???\n\txoet: are there more players coming? I have a friend or two that might play?\n\n2) ts52: Homeworld B3 G2 Y3\n\txoet: i think this game is evil cause ive looked over rules and wiki and the hints it took me what 48:08 min to get it right   yeah I&#39;m the one putting homeworld g3,g3,y3 *) and wondering for almost an hour\n\txoet: these rules need a revamp as far as what to type  now how do i put a lable on my system  like &quot;North&quot;\n\tts52: Your homeworld always has the label of your userid. I set this up as a two player game, because I like it better than the multi player, but you can start more challenges for your friends to pick up.\r\n\n\n3) xoet: Build Y1 Xoet\n\txoet: I should have stayed logged on a little longer to make my second move this morning  but logged off before you moved  btw I hope you don&#39;t mind waiting twelve hours between the times I am logged I log on for about 10 hours give or take every day and a half or so\n\n4) ts52: Build Y1 Ts52\n\txoet: what am i doing?  I mean Just entering commands till something does not give me an error  what does you have no actions left mean???\n\tts52: No problem. I&#39;m not in a rush for these games.\r\nYou only get one action per turn. Your only option on your last turn was to constuct a new small yellow ship.\n\n5) xoet: Discover Y3 Xoet B2 Ur7i\n\txoet: ok that must be why i did not do anything else but now what I&#39;m lost again   yet i have not tried any of the commands yet\n\n6) ts52: Trade Y1 G1 Ts52\n\txoet: slowly but surely I am getting the idea\n\n7) xoet: Build Y1 Xoet\n\n8) ts52: Discover G1 Ts52 Y1 Sirius\n\txoet: ok after five tries of things to do mmmm i guess that is one of the few things i can do\n\n9) xoet: Discover Y1 Xoet G2 Zerg\n\n10) ts52: Build Y2 Ts52\n\txoet: i did not know i could make a new system thought the limit was just the one on the screen\n\n11) xoet: Discover Y3 Ur7i R3 Cat\n\tts52: It seems like you&#39;re starting to get the hang of it.\n\n12) ts52: Discover Y2 Ts52 G1 Pebble\n\txoet: aah hyperspatial flux\n\n13) xoet: Move Y3 Cat Pebble\n\n14) ts52: Build Y2 Ts52\n\n15) xoet: Build Y2 Xoet\n\txoet: &lt;&lt;&lt;reading rules again\n\txoet: sorry about the delay\n\n16) ts52: Build Y3 Pebble\n\txoet: i thought the ship your creating had to be bigger than the ship that is creating it\r\nmy mistake solved by trial and error\n\tts52: Nope, the ship you build has to match the color of one of your ships in the system, and be the smallest piece of that color.\n\n17) xoet: Discover Y3 Pebble R3 Bird\n\txoet: so a how does one get a blue or red ship?\n\n18) ts52: Build G1 Sirius\n\txoet: why did this not work discover y2 xoet r3 r4    ????    said systems not connected\n\txoet: i cant trade in xoet says i have no blue to trade i cant build in xoet becuase i have no green ships cept i can build a yellow ship  how do i get a blue ship or building or something   is there a command &quot;construct b3 xoet&quot; that i could use \n\tts52: In order to get a non-yellow ship, you have to disvoer a blue system, and then use that system to trade your yellow ship for a non-yellow ship of the same size.\r\nShips can only move between connected systems. Two systems are connected if they do _not_ have the same size piece in them.\r\nSo right now xoet is connected to pebble, sirius and zerg.\r\nYou can&#39;t build a yellow ship because there are no more yellow pieces left.\n\n19) xoet: Discover Y1 Xoet B2 Bluebird\n\n20) ts52: Move G1 Sirius Ts52\n\n21) xoet: Trade Y1 B1 Bluebird\n\n22) ts52: Build G2 Sirius\n\n23) xoet: Build Y1 Xoet\n\n24) ts52: Build G3 Sirius\n\n25) xoet: Move Y2 Xoet Zerg\n\n26) ts52: Move Y3 Pebble Bluebird\n\n27) xoet: Move Y2 Zerg Sirius\n\n28) ts52: Move G3 Sirius Bluebird\n\n29) xoet: Move Y2 Sirius Bluebird\n\txoet: Slowly but surely I am beginning to understand the commands next comes strategy\n\n30) ts52: Trade G3 R3 Bluebird\n\txoet: mmm i guess that zerg and bluebird are not connected but sirius and bluebird are  mmm\n\tts52: exactly\n\n31) xoet: Move Y3 Bird Bluebird\n\n32) ts52: Move R3 Bluebird Xoet\n\n33) xoet: Move Y3 Bluebird Xoet\n\txoet: ack you have this one it looks like i know end conditions i think i sould move a ship back home\n\n34) ts52: Attack Y3 Xoet\n\n35) xoet: Move Y2 Bluebird Pebble\n\tts52: Yeah, there are a few adages for this game:\r\n always start with two different sizes in your homewold - this makes it harder for your opponent to get into your homeword.\r\n  always start with a large ship - there is strength in size\r\n  between your homeworld and starting ship, have blue, green and yellow. You need green to build, and yellow to move, and eventually blue to trade for red. But if you don&#39;t have those three, you&#39;ll end up wasting time getting the one you don&#39;t\r\n  never leave your homeworld undefended. - Keep a large ship in your homeworld if at all possible.\r\n  finally, once you opponent has a gun, you get a gun. - Once things escalate to red ships, it becomes an arms race.\r\nIf you had kept a large ship in your homeworld, and traded one of your ships on bluebird to red right after I&#39;d traded for a red ship, then when I moved into your homeworld, you could&#39;ve sacrificed the red ship to take over my red ship, and still been alive.\r\nWe really didn&#39;t get into sacrifices in this game at all, but they are another powerful tactic in the game that it&#39;s important not to overlook.\n\tts52: Ugh, I didn&#39;t realize that all my returns would get deleted, sorry that last message is so hard to read now...\n\txoet: i think it was easyer for me to  read anyway  if its ok   im going to share that with my friend i got to play me   it is her first game   and my third with her\n\n36) ts52: Attack Y1 Xoet\n\tts52: No problem. Feel free to share it. Thanks for the game. I look forward to playing you again.\n\n\nHomeworlds Online (SDG# 1878)\nStarted: 2005.12.16, Ended: 2006.1.13\nParticipants: cobalt (S), a_magical_me (N)\nWinner: cobalt\n\n1) a_magical_me: Homeworld G3 Y2 B3\n\n2) cobalt: Homeworld B1 Y2 G3\n\n3) a_magical_me: Build B1 A_magical_me\n\n4) cobalt: Build G1 Cobalt\n\n5) a_magical_me: Build B1 A_magical_me\n\n6) cobalt: Discover G1 Cobalt Y3 Theeze\n\n7) a_magical_me: Trade B1 G1 A_magical_me\n\n8) cobalt: Build G1 Cobalt\n\n9) a_magical_me: Build G2 A_magical_me\n\n10) cobalt: Build G2 Cobalt\n\n11) a_magical_me: Discover G1 A_magical_me Y1 Magrathea\n\n12) cobalt: Trade G1 R1 Cobalt\n\n13) a_magical_me: Build B1 A_magical_me\n\n14) cobalt: Trade G2 Y2 Cobalt\n\n15) a_magical_me: Trade B1 Y1 A_magical_me\n\n16) cobalt: Build G1 Cobalt\n\n17) a_magical_me: Build G2 Magrathea\n\n18) cobalt: Discover G1 Cobalt G3 Coffee\n\n\nHomeworlds Online (SDG# 1898)\nStarted: 2005.12.17, Ended: 2005.12.20\nParticipants: a_magical_me (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) a_magical_me: Homeworld B2 G1 R3\n\n3) andylooney: Build Y1 Andylooney\n\n4) a_magical_me: Build R1 A_magical_me\n\n5) andylooney: Discover Y1 Andylooney G3 Grunwald\n\n6) a_magical_me: Build R1 A_magical_me\n\n7) andylooney: Build Y1 Andylooney\n\n8) a_magical_me: Trade R1 Y1 A_magical_me\n\n9) andylooney: Build Y2 Andylooney\n\n10) a_magical_me: Move R1 A_magical_me Grunwald\n\ta_magical_me: a_magical_me sends greetings to andylooney!\r\n\r\nWe are wondering if you&#39;d like to be part of a very special offer. Recently our scientists have developed a brand new form of technology! Our shiny new RED SHIPS are the perfect addition to any military force! Scans of your homeworld indicate that you have not yet discovered this amazing technology. If you are interested, contact us at Intergalactic Telephone Number 555-666-1962&#39;\r\n\r\nSincerely,\r\nThe Official Sales Force of a_magical_me\n\n11) andylooney: Build Y2 Grunwald\n\n12) a_magical_me: Attack Y1 Grunwald\n\tandylooney: No thanks, we have our own weapon systems under development. We expect to them to be online soon enough. In the meantime, we&#39;ve been busy with ship-building.\n\n13) andylooney: Trade Y2 R2 Andylooney\n\n14) a_magical_me: Discover R1 Grunwald Y2 Sanctuary\n\n15) andylooney: Trade Y1 G1 Andylooney\n\n16) a_magical_me: Build R1 A_magical_me\n\n17) andylooney: Build R1 Andylooney\n\n18) a_magical_me: Build R2 A_magical_me\n\ta_magical_me: It has come to our attention that you have been building red ships on your homeworld. Currently, red technology is protected under the Intergalactic Patent Law (patent #4,936,585). Unless you cease and desist, we will be forced to take action as outlined by Intergalactic Central Enforcement article 42 subsection 10000.\n\n19) andylooney: Sacrifice Y2 Grunwald\nMove R1 Andylooney Grunwald\nMove R1 Grunwald A_magical_me\nCatastrophe A_magical_me Red\n\tandylooney: How&#39;s this for an action?\n\n20) a_magical_me: Build Y1 A_magical_me\n\ta_magical_me: nice\n\n21) andylooney: Move R2 Andylooney Grunwald\n\ta_magical_me: I&#39;m not sure if I can recover from that.\n\n22) a_magical_me: Build Y2 A_magical_me\n\n23) andylooney: Attack Y1S Grunwald\n\ta_magical_me: Of course, you realize, this means war.\n\tandylooney: well, if it&#39;s a fight you want...\n\n24) a_magical_me: Trade Y2 R2 A_magical_me\n\ta_magical_me: Uh-oh\n\n25) andylooney: Build Y2 Grunwald\n\n26) a_magical_me: Move Y1 A_magical_me Grunwald\n\n27) andylooney: Discover Y2 Grunwald G1 Outpost\n\n28) a_magical_me: Build Y2 Grunwald\n\n29) andylooney: Build Y3 Grunwald\nCatastrophe Grunwald Yellow\n\n30) a_magical_me: Build Y1 A_magical_me\n\n31) andylooney: Discover G1 Andylooney Y3 Howell\n\n32) a_magical_me: Trade R2 G2 A_magical_me\n\n33) andylooney: Build G2 Howell\n\n34) a_magical_me: Trade G2 B2 A_magical_me\n\n35) andylooney: Build G2 Howell\n\n36) a_magical_me: Discover R1 Sanctuary G3 Foothold\n\ta_magical_me: I&#39;m toast.\n\n37) andylooney: Discover G2 Howell Y2 Plugh\n\n38) a_magical_me: Build R1 Foothold\n\n39) andylooney: Build G3 Howell\n\n40) a_magical_me: Build R1 Foothold\n\n41) andylooney: Move G3 Howell A_magical_me\n\n42) a_magical_me: Move Y1 A_magical_me Foothold\n\n43) andylooney: Sacrifice R2 Grunwald\nAttack B2S A_magical_me\nAttack Y1S A_magical_me\n\ta_magical_me: X_X Checkmate. At least I&#39;m better at Martian Chess than I am at Homeworlds.\n\tandylooney: Indeed. Anyway, thanks for the game!\n\n\nHomeworlds Online (SDG# 1882)\nVariants: &quot;Sinister&quot;\nStarted: 2005.12.18, Ended: 2006.1.26\nParticipants: Toni (S), Aaron (W), xoet (N), a_magical_me (E)\nWinner: Aaron\n\n1) xoet: Homeworld B3 G2 Y3 R2 B3\n\n2) a_magical_me: Homeworld G3 Y1 B3\n\txoet: hey toni, a_magical_me, and Aaron hope to have a good clean game just come out of your corners ready to play...:-)\n\n3) Aaron: Homeworld Y1 B2 G3\n\tToni: good luck, because I don&#39;t know what I am doing. :)\n\tToni: Sorry I just can&#39;t figure out the command to do. \n\n4) xoet: Build Y1 Xoet\n\tSYSTEM: Toni resigns.\n\tSYSTEM: Toni resigns.\n\tToni: didn&#39;t want to hold you guys up.\n\txoet: did you pass Aaron?\n\n5) a_magical_me: Build B1 A_magical_me\n\n6) Aaron: Build G1 Aaron\n\tAaron: Uhm, what just happened? =)  It skipped my turn.  Rolling back.\n\tAaron: I will track down that error.\n\n7) xoet: Trade Y1 B1 Xoet\n\n8) a_magical_me: Trade B3 G3 A_magical_me\n\n9) Aaron: Trade G1 Y1 Aaron\n\n10) xoet: Build Y1 Xoet\n\n11) a_magical_me: Build G1 A_magical_me\n\n12) Aaron: Build G1 Aaron\n\n13) xoet: Trade Y3 R3 Xoet\n\n14) a_magical_me: Trade G3 R3 A_magical_me\n\n15) Aaron: Trade G1 B1 Aaron\n\n16) xoet: Discover Y1 Xoet G1 Help\n\n17) a_magical_me: Build R1 A_magical_me\n\txoet: i do not know but somethings work for me and others dont  the discover command did not work for me dont know why but this is my second game so far\n\n18) Aaron: Build G1 Aaron\n\tAaron: what did the system tell you?\n\n19) xoet: Build Y1 Help\n\txoet: It said the systems are not connected then i tried to go to your systems and they are not connected either   Ill try again now because I would not of made a red dude so early\n\n20) a_magical_me: Build G1 A_magical_me\n\txoet: i guess i only create certian kinds of new worlds??\n\ta_magical_me: From the rules: &quot;Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected. Therefore, a small system is connected to any medium or large system, but not to another small system. A binary system made up of a small piece and a medium piece is not connected to any small or medium system, nor is it connected to any binary system that contains a small piece or a medium piece. System connections have nothing to do with the physical positions of systems on the playing field.&quot;\n\n21) Aaron: Trade G1 R1 Aaron\n\n22) xoet: Build Y2 Help\n\n23) a_magical_me: Discover G1 A_magical_me Y2 Magrathea\n\n24) Aaron: Discover Y1 Aaron G3 Emeralds\n\n25) xoet: Build R1 Xoet\n\n26) a_magical_me: Build G1 Magrathea\n\n27) Aaron: Move Y1 Emeralds Help\nCatastrophe Help Y\n\n28) xoet: Trade R1 Y1 Xoet\n\n29) a_magical_me: Build B1 A_magical_me\n\n30) Aaron: Build G1 Aaron\n\n31) xoet: Build Y1 Xoet\n\n32) a_magical_me: Move B1 A_magical_me Magrathea\n\n33) Aaron: Discover G1 Aaron Y3 Bananas\n\n34) xoet: Trade Y1 G1 Xoet\n\n35) a_magical_me: Build B1 Magrathea\n\n36) Aaron: Build G2 Bananas\n\n37) xoet: Build Y1 Xoet\n\n38) Aaron: Build R1 Aaron\n\n39) xoet: Build B2 Xoet\n\n40) Aaron: Build B2 Aaron\n\n41) xoet: Discover Y1 Xoet R1 Jelly\n\n42) Aaron: Move B2 Aaron Bananas\n\n43) xoet: Build Y1 Xoet\n\n44) Aaron: Trade G2 Y2 Bananas\n\n45) xoet: Move B2 Xoet Jelly\n\n46) Aaron: Move R1 Aaron Bananas\n\n47) xoet: Move G1 Xoet Jelly\n\n48) Aaron: Build B2 Bananas\n\n49) xoet: Build G2 Jelly\n\n50) Aaron: Discover B2 Bananas R1 Rubies\n\n51) xoet: Discover G2 Jelly R3 Naotet\n\n52) Aaron: Move B2 Bananas Rubies\n\n53) xoet: Build G2 Naotet\n\n54) Aaron: Sacrifice Y2 Bananas\nMove B2 Rubies Xoet\nMove B2 Rubies Xoet\nCatastrophe Xoet B\n\n55) xoet: Build B1 Jelly\n\n56) Aaron: Move R1 Bananas Magrathea\n\n57) xoet: Move B2 Jelly Naotet\n\n58) Aaron: Attack G1E Magrathea\n\tAaron: Let&#39;s get things moving =)\n\n59) xoet: Build B2 Naotet\n\n60) Aaron: Attack B1E Magrathea\n\txoet: you know if it did not take me a few tries to get my orders right I would be more of a challenging opponent\n\n61) xoet: Trade G2 Y2 Naotet\n\n62) Aaron: Move B1 Aaron Naotet\n\n63) xoet: Move B2 Naotet Aaron\n\n64) Aaron: Attack B2N Aaron\n\n65) xoet: Attack B1W Naotet\n\txoet: ok I&#39;m really new to this game and cant figure out why &quot;sacrifice G2 naotet\r\nmove b2 naotet Aaron\r\nmove b2 naotet Aaron\r\ncatastrophe Aaron b&quot;\r\ndoes not work??\n\n66) Aaron: Move B2 Aaron Bananas\n\tAaron: I think you figured it out =)\n\n67) xoet: Move R3 Xoet Bananas\n\n68) Aaron: Move B2 Bananas Xoet\n\txoet: yep I did not have move power in the naotet system  guess I should not of told you what  I was planning\n\tAaron: My options are pretty limited anyway\n\n69) xoet: Move R3 Bananas Aaron\n\n70) Aaron: Attack R3N Aaron\n\n71) xoet: Move B2 Naotet Xoet\n\n72) Aaron: Sacrifice R3 Aaron\nAttack B2N Xoet\nAttack Y1N Xoet\nAttack Y1N Xoet\n\n\tAaron: Thanks for the game, Xoet!!\n\nHomeworlds Online (SDG# 1929)\nStarted: 2005.12.19, Ended: 2005.12.31\nParticipants: Toni (S), xoet (N)\nWinner: xoet\n\n1) xoet: Homeworld G3 B2 Y3\n\n2) Toni: Homeworld Y1 B1 G3 *\n\txoet: ok i typed homeworld g3 b2 y3\n\txoet: and this is what happened   now type the same thing because im told that yellow is for moving blue is for changing the colors of the ships(triangles)\n\txoet: and green is like the connection glue i think but we will see\n\txoet: so typing two homeworlds and a ship \n\txoet: homeworld b3 g3 y3 i think is the best home world you really dont want red till you start attacking mid game i guess it is\n\txoet: but sometimes you may want to mix it up like homeworld b3 g2 y2\n\txoet: with one of each you cant lose i guess dont know the concepts of how to play just what works and does not work thru trial and error\n\tToni: b3 g3 y3 all three are giving me the same error message I got on the other game &quot;an unrecognized command&quot;  I never could figure out how to get them in my box in the other game either.\n\tToni: tried it again with &quot;homeworld&quot; starting the command and  got this....It is very important that your starting stars be different sizes! To override this check, please append an asterisk (*) to the end of the &#39;homeworld&#39; command (eg. homeworld y1 b1 g3 *). \n\n3) xoet: Build Y1 Xoet\n\n4) Toni: Pass\n\tToni: Well got it to take it, so here it is, such as it is.\n\n5) xoet: Build Y1 Xoet\n\txoet: mmmm   they may not have undo working right with all the games    but really it does not matter too much about the number cause you can make it up later\n\txoet: that might have been because you had small ships  dont know   but i typed the next line above\n\txoet: build y1 xoet\n\txoet: you should type the follow line not much else to do\n\txoet: build g1 Toni\n\tToni: build g1 gives the message...The system does not exist.\n\n6) Toni: Build G1 Toni\n\tToni: could not get anything to work.. just kept telling me that the system does not exist.\n\txoet: typing what is in quote&#39;s &quot;build g1 Toni&quot; will get the green hopefully   i will pass also now\n\txoet: not letting me pass i will pass next turn to keep it even for both our sakes\n\n7) xoet: Pass\n\txoet: what i did was &quot;build y1 xoet&quot; you should type &quot;build g1 Toni&quot; that should get you a ship in your system &quot;Toni&quot;\n\n8) Toni: Build G1 Toni\n\tToni: ok that worked\n\n9) xoet: Discover Y1 Xoet B1 Emc2\n\txoet: there i did not know how to pass i thought there should of been a button   but could not find it before\n\txoet: this is what my other opponent posted for me to gather my abilities with the game for the big game im play with those other two ppl    \n\txoet: ts52 &quot;Yeah, there are a few adages for this game: always start with two different sizes in your homewold - this makes it harder for your opponent to get into your homeword. always start with a large ship - there is strength in size between your homeworld and starting ship, have blue, green and yellow. You need green to build, and yellow to move, and eventually blue to trade for red. But if you don&#39;t have those three, you&#39;ll end up wasting time getting the one you don&#39;t never leave your homeworld undefended. - Keep a large ship in your homeworld if at all possible. finally, once you opponent has a gun, you get a gun. - Once things escalate to red ships, it becomes an arms race. If you had kept a large ship in your homeworld, and traded one of your ships on bluebird to red right after I&#39;d traded for a red ship, then when I moved into your homeworld, you could&#39;ve sacrificed the red ship to take over my red ship, and still been alive. We really didn&#39;t get into sacrifices in this game at all, but they are another powerful tactic in the game that it&#39;s important not to overlook.&quot;\n\txoet: sacrifice how do you do that ???   i dont know i will have to ask him to show me   lol\n\n10) Toni: Build G1 Toni\n\txoet: problem being he typed that after it was certian i would lose  and of course the game is over with ts52\n\n11) xoet: Pass\n\txoet: now we got to worry about over populations so i am move my little ship out to &quot;discover y1 xoet b1 emc2&quot;\n\txoet: your command might look like &quot;discover g1 Toni y1 yolanda&quot;\n\txoet: or you could &quot;move g1 Toni emc2&quot;\n\txoet: i think that should work too but if you get too many ships in your home system there is the catastrophe   but i dont know how that works yet\n\tToni: with the coding you gave...move g1 Toni emc2 and discover g1 Toni y1 yolanda... I get this message - These systems are not connected\n\n12) Toni: Discover G1 Toni G2 Yolanda\n\n13) xoet: Build Y2 Xoet\n\n14) Toni: Build G2 Yolanda\n\n15) xoet: Move Y2 Xoet Emc2\n\n16) Toni: Build G2 Yolanda\n\n17) xoet: Discover Y1 Emc2 G3 Santa\n\n18) Toni: Pass\n\n19) xoet: Build Y2 Xoet\n\txoet: now in a regular game an opponent would of said &quot;catastrophe Yolanda g&quot; because four of the same color and you are over populated suggestion either &quot;move g1 yolanda Santa&quot; or discover a new system or something i dont think you can trade without a blue ship or star but you might be able too\n\txoet: _magical_me: From the rules: &quot;Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected. Therefore, a small system is connected to any medium or large system, but not to another small system. A binary system made up of a small piece and a medium piece is not connected to any small or medium system, nor is it connected to any binary system that contains a small piece or a medium piece. System connections have nothing to do with the physical positions of systems on the playing field.&quot; \n\n20) Toni: Trade G1 B1 Toni\n\tToni: Had to pass.. got this message... &quot;You have 2 unused actions. This system requires you to explicitely PASS any undesired actions&quot; \n\n21) xoet: Build Y2 Santa\n\txoet: mmm i think we need to do something about the four greens in yolanda\n\n22) Toni: Build G1 Yolanda B1 Kassa\n\txoet: try this &quot;trade g1 b1 Toni&quot;\n\txoet: but maybe take a day off till I can read the rules over a few more times if you want\n\n23) xoet: Discover Y2 Xoet R1 Bill\n\n24) Toni: Move B1 Toni Yolanda\n\txoet: i would &quot;move b1 Toni yolanda&quot;\n\n25) xoet: Trade Y3 B3 Xoet\n\n26) Toni: Build B2 Yolanda\n\n27) xoet: Build Y3 Xoet\n\n28) Toni: Trade G1 R1 Toni\n\txoet: good now you can trade the green into maybe yellow but you might have to trade them into blues\n\n29) xoet: Move B3 Xoet Bill\n\txoet: now your best bet would be &quot;trade g3 Toni y3&quot;\n\txoet: actually you should be able to trade some greens in the yolanda system\n\txoet: oh and i am unsure if this exists in this game yet but it does in byte and impasse   in small letters there is a little link saying view all moves   and then you just pick and choose!!! in the form scroll bar\n\txoet: so ive undone my last move to see if homeworlds has a move choice selection but could not find one   oh well\n\n30) Toni: Move R1 Toni Yolanda *\n\txoet: made trade after i realized i could not trade to blue with y1 because there were no b1&#39;s and a trade must be even\n\n31) xoet: Build Y3 Xoet\n\n32) Toni: Build R1 Yolanda *\n\n33) xoet: Build Y3 Santa\n\n34) Toni: Trade G2 B2 Yolanda\n\txoet: :: xoet&#39;s trade ship entered the red star system called bill hooking up with his starship size two ::\n\n35) xoet: Move B3 Bill Santa\n\n36) Toni: Trade G2 R2 Yolanda *\n\n37) xoet: Trade Y2 G2 Santa\n\tToni: could not make anyother moves but build. :(\n\txoet: you should have been able to trade g2 b2 yolanda\n\n38) Toni: Trade R2 Y2 Yolanda *\n\n39) xoet: Move B3 Santa Bill\n\n40) Toni: Move Y2 Yolanda Emc2\n\n41) xoet: Trade Y2 R2 Emc2\n\n42) Toni: Move Y2 Emc2 Yolanda\n\n43) xoet: Build G1 Santa\n\n44) Toni: Move R1 Yolanda Santa\n\n45) xoet: Trade R2 Y2 Emc2\n\n46) Toni: Attack Y1 Santa R2 Santa\n\n47) xoet: Move B3 Bill Yolanda\nCatastrophe Yolanda B\n\n48) Toni: Attack G1 Santa\n\n49) xoet: Move G2 Santa Yolanda\nCatastrophe Yolanda G\n\n50) Toni: Move R1 Santa Bill\n\n51) xoet: Trade Y3 R3 Xoet\n\n52) Toni: Build G1 Toni\n\n53) xoet: Trade Y1 B1 Xoet\n\n54) Toni: Trade G3 R3 Toni *\n\n55) xoet: Build Y1 Santa\n\n56) Toni: Move R3 Toni Santa\n\n57) xoet: Move Y3 Santa Bill\n\n\tSYSTEM: Toni resigns.\n\nHomeworlds Online (SDG# 1928)\nStarted: 2005.12.19, Ended: 2006.1.1\nParticipants: Laurie_Menke (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\n2) Laurie_Menke: Homeworld B3 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tLaurie_Menke: Let&#39;s see if I can do a little better than our last game.  :o)\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: ok! Good luck!\n\n6) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\tLaurie_Menke: Thanks...you, too!  :o)\n\n7) andylooney: Build G2 Andylooney\n\n8) Laurie_Menke: Discover G3 Laurie_menke B2 Phonebooth\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) Laurie_Menke: Build Y1 Laurie_menke\n\n11) andylooney: Discover G2 Andylooney Y3 Howell\n\n12) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n13) andylooney: Build G1 Howell\n\n14) Laurie_Menke: Sacrifice G3 Phonebooth\nBuild R1 Laurie_menke\nBuild R2 Laurie_menke\nBuild Y1 Laurie_menke\n\n15) andylooney: Build R2 Andylooney\n\n16) Laurie_Menke: Trade R2 G2 Laurie_menke\n\n17) andylooney: Discover G1 Howell Y2 Plugh\n\n18) Laurie_Menke: Discover G2 Laurie_menke Y2 Luella\n\tLaurie_Menke: So I&#39;m curious...how are you naming your star systems these days?  Are those last names?  :o)\n\n19) andylooney: Build Y1 Andylooney\n\tandylooney: I have no particular naming convention. I have some tendancies, but nothing is rigorous. Howell is a last name. Plugh is a magic word from the Collossal Cave text adventure.\n\n20) Laurie_Menke: Trade Y1 B1 Laurie_menke\n\tLaurie_Menke: Good deal.  If you like text adventures and geocaching, you may want to check out this web site:  http://www.geocaching.com/seek/cache_details.aspx?guid=f178868c-fe61-4fc9-bbba-7beee0bb9862.  It&#39;s a text adventure-based geocache in the town where I live.  :o)\n\n21) andylooney: Build G2 Plugh\n\n22) Laurie_Menke: Move R1 Laurie_menke Plugh\n\n23) andylooney: Move G2 Plugh Laurie_menke\n\n24) Laurie_Menke: Build R2 Laurie_menke\n\n25) andylooney: Sacrifice R2 Andylooney\nAttack R2S Laurie_menke\nAttack R1S Laurie_menke\n\tLaurie_Menke: Well, bye-bye binary star system.  But at least I&#39;m still in the game.  I probably could have played that better...   :o(\n\n26) Laurie_Menke: Build G3 Luella\n\tLaurie_Menke: Oh, no!  Shoot!  I thought I saw what you were doing, but I didn&#39;t expect that at all!  I thought you were going to sacrifice your y3 in order to move your greens in and cause a catastrophe.  This is *much* worse!  :o(\n\n27) andylooney: Sacrifice R2 Laurie_menke\nAttack B1S Laurie_menke\nAttack Y1S Laurie_menke\n\tandylooney: Yes, it&#39;s true, it&#39;s worse that you thought. Thanks for playing!\n\n\nHomeworlds Online (SDG# 1939)\nStarted: 2005.12.19, Ended: 2006.2.8\nParticipants: ts52 (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\tts52: Hey Andy! It&#39;s Tim. Hopefully I&#39;ll be a bit more competition this time than I was at Origins. :)\n\tandylooney: Hi Tim! Good luck and thanks for playing!\r\n\n\n2) ts52: Homeworld G3 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tts52: Thanks. Good luck to you too!\r\nMuch as I really appreciate this server, I&#39;ve been thinking it would be fun to play by email, swapping domcumented pictures of the game with your opponent that you&#39;ve set up in neat and interesting locations.\n\tandylooney: yeah, well... having done that, I find this online system far easier!\n\n4) ts52: Build Y1 Ts52\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tts52: Absolutely. I know I wouldn&#39;t want to try to keep track of more than one game that way.\n\n6) ts52: Trade Y1 G1 Ts52\n\n7) andylooney: Build G2 Andylooney\n\n8) ts52: Discover G1 Ts52 B1 Blueberry\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) ts52: Build Y1 Ts52\n\tts52: You bring weapons into this peaceful galaxy?!?!\r\nI can only assume your intenions are no good.\n\n11) andylooney: Discover G2 Andylooney Y3 Howell\n\n12) ts52: Move Y1 Ts52 Blueberry\n\n13) andylooney: Build Y1 Andylooney\n\n14) ts52: Build G1 Blueberry\n\n15) andylooney: Build G2 Howell\n\n16) ts52: Discover G1 Blueberry G3 Oscar\n\n17) andylooney: Discover G2 Howell Y2 Plugh\n\n18) ts52: Build Y1 Ts52\n\n19) andylooney: Discover Y1 Andylooney B3 Ibm\n\n20) ts52: Trade Y1 R1 Ts52\n\n21) andylooney: Build R1 Andylooney\n\n22) ts52: Build R2 Ts52\n\n23) andylooney: Build R2 Andylooney\n\n24) ts52: Move R1 Ts52 Blueberry\n\n25) andylooney: Move R2 Andylooney Howell\n\n26) ts52: Move Y1 Blueberry Oscar\n\n27) andylooney: Move R2 Howell Blueberry\n\n28) ts52: Discover G1 Oscar Y2 Lemon\n\n29) andylooney: Attack R1S Blueberry\n\n30) ts52: Trade G1 Y1 Blueberry\n\n31) andylooney: Sacrifice G2 Howell\nBuild Y2 Andylooney\nBuild Y3 Ibm\n\n32) ts52: Discover Y1 Blueberry G3 Kermit\n\n33) andylooney: Move Y2 Andylooney Kermit\n\n34) ts52: Discover Y1 Kermit B1 Burst\n\n35) andylooney: Move Y1 Ibm Blueberry\n\n36) ts52: Sacrifice G1 Lemon\nBuild Y2 Oscar\n\n37) andylooney: Trade R1 G1 Blueberry\n\n38) ts52: Trade Y1 G1 Burst\n\n39) andylooney: Build G2 Blueberry\n\n40) ts52: Build G2 Burst\n\n41) andylooney: Build Y1 Blueberry\n\n42) ts52: Move Y1 Oscar Burst\n\n43) andylooney: Trade R1 B1 Andylooney\n\n44) ts52: Move G2 Burst Oscar\n\n45) andylooney: Sacrifice Y2 Kermit\nMove G1 Blueberry Oscar\nMove G2 Blueberry Oscar\nCatastrophe Oscar Green\n\n46) ts52: Build G1 Burst\n\n47) andylooney: Build G2 Plugh\n\n48) ts52: Discover G1 Burst G3 Kermit\n\n49) andylooney: Move G2 Plugh Blueberry\n\n50) ts52: Build Y2 Burst\n\n51) andylooney: Build Y2 Andylooney\n\n52) ts52: Build R1 Ts52\n\n53) andylooney: Sacrifice G2 Plugh\nBuild G2 Blueberry\nBuild Y2 Ibm\n\n54) ts52: Move Y1 Burst Kermit\n\n55) andylooney: Discover G2 Blueberry G3 Paradise\n\n56) ts52: Build G2 Burst\n\n57) andylooney: Move Y3 Ibm Burst\n\n58) ts52: Sacrifice Y2 Burst\nDiscover G2 Burst Y2 Sol\nMove G1 Burst Sol\n\n59) andylooney: Move R2 Blueberry Kermit\n\n60) ts52: Trade R2 B2 Ts52\n\n61) andylooney: Attack G1S Kermit\n\n62) ts52: Discover Y1 Kermit R2 Cherry\n\n63) andylooney: Build B3 Andylooney\n\n64) ts52: Discover B2 Ts52 R1 Raspberry\n\n65) andylooney: Discover B1 Andylooney B3 Meanie\n\n66) ts52: Build R2 Ts52\n\n67) andylooney: Sacrifice G2 Blueberry\nBuild R3 Andylooney\nBuild R3 Kermit\n\n68) ts52: Move G1 Sol Kermit\n\n69) andylooney: Sacrifice Y2 Ibm\nDiscover G1 Kermit Y2 Plugh\nMove R3 Kermit Sol\n\n70) ts52: Move R1 Ts52 Blueberry\n\n71) andylooney: Sacrifice R3 Andylooney\nAttack R1S Blueberry\nAttack G2S Sol\nAttack G1S Kermit\n\n72) ts52: Build R3 Ts52\n\n73) andylooney: Sacrifice G2 Sol\nBuild R3 Blueberry\nBuild B3 Meanie\n\n74) ts52: Move Y1 Cherry Raspberry\n\tts52: I know I&#39;m doomed. But I just can&#39;t bring myself to resign. Sorry about that. I&#39;m still dying to see how this plays out, in an effort to try and learn from it.\n\n75) andylooney: Sacrifice Y3 Burst\nMove R2 Kermit Blueberry\nMove R2 Blueberry Ts52\nMove R1 Blueberry Ts52\nCatastrophe Ts52 Red\n\tandylooney: There&#39;s no need to resign, ever. I&#39;m happy to play it all the way to the bitter end!\n\n76) ts52: Trade Y3 R3 Ts52\n\n77) andylooney: Trade B3 Y3 Meanie\n\tts52: Excellent, thanks. I don&#39;t think it&#39;ll be much longer anyway...\n\n78) ts52: Trade B2 G2 Raspberry\n\n79) andylooney: Move R3 Sol Raspberry\n\n80) ts52: Build Y2 Raspberry\n\n81) andylooney: Sacrifice R3 Blueberry\nAttack Y2S Raspberry\nAttack Y1S Raspberry\nAttack G2S Raspberry\n\n82) ts52: Build R1 Ts52\n\n83) andylooney: Sacrifice G2 Raspberry\nBuild Y3 Meanie\nBuild R2 Raspberry\n\n84) ts52: Trade R1 B1 Ts52\n\n85) andylooney: Move R2 Raspberry Kermit\n\n86) ts52: Build B2 Ts52\n\n87) andylooney: Sacrifice Y2 Raspberry\nMove B1 Meanie Blueberry\nMove B1 Blueberry Ts52\nCatastrophe Ts52 Blue\n\n88) ts52: Build R1 Ts52\n\tts52: And so ends the game. Thanks for the game, I enjoyed it, and obviously still have a lot to learn.\n\tts52: It&#39;s not legal to pass, is it?\n\n89) andylooney: Sacrifice Y3 Meanie\nMove R1 Andylooney Ts52\nMove B3 Andylooney Ts52\nMove R3 Raspberry Ts52\nCatastrophe Ts52 Red\n\tandylooney: Actually, if you consult your list of options at the top, you&#39;ll see that it is legal to pass. But it&#39;s very rarely useful...\n\tandylooney: Thanks for the game!\r\n\n\n\nHomeworlds Online (SDG# 1944)\nStarted: 2005.12.20, Ended: 2005.12.27\nParticipants: ts52 (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld Y2 B3 G3\n\n2) ts52: Homeworld B2 G1 Y3\n\n3) Calavera: Build G1 Calavera\n\n4) ts52: Build Y1 Ts52\n\n5) Calavera: Build G1 Calavera\n\n6) ts52: Build Y1 Ts52\n\n7) Calavera: Discover G1 Calavera Y1 Rillanon\n\n8) ts52: Discover Y1 Ts52 G3 Oscar\n\n9) Calavera: Discover G1 Rillanon B3 Krondor\n\n10) ts52: Build Y1 Oscar\n\n11) Calavera: Build G2 Krondor\n\n12) ts52: Build Y2 Ts52\n\n13) Calavera: Trade G2 Y2 Krondor\n\n14) ts52: Trade Y2 R2 Ts52\n\n15) Calavera: Trade G1 R1 Calavera\n\n16) ts52: Discover Y1 Ts52 G3 Kermit\n\n17) Calavera: Build G1 Krondor\n\n18) ts52: Build Y2 Ts52\n\n19) Calavera: Build G2 Krondor\n\n20) ts52: Trade Y2 G2 Ts52\n\n21) Calavera: Sacrifice Y2 Krondor\nMove G1 Krondor Ts52\nMove G1 Krondor Ts52\nCatastrophe Ts52 G\n\n22) ts52: Trade R2 G2 Ts52\n\n23) Calavera: Build G1 Krondor\n\n24) ts52: Build G1 Ts52\n\tts52: I&#39;m heading down to my in-laws tomorrow for the holiday. I might have sparse net access. Sorry in advance if there&#39;s a long lag between moves for the next week. I&#39;ll be back next thursday.\n\n25) Calavera: Trade G2 Y2 Krondor\n\tts52: Sorry about the undo&#39;s. I saw your response right after I made my last move, and reflexively hit undo. Then thought better of it. Then I typo&#39;d this last one. Sorry. I&#39;ll try to be more careful.\n\tCalavera: No Problem.\n\n26) ts52: Trade G1 R1 Ts52\n\n27) Calavera: Build G1 Calavera\n\n28) ts52: Build Y2 Kermit\n\n29) Calavera: Build Y3 Krondor\n\n30) ts52: Build Y3 Ts52\n\n31) Calavera: Trade G1 B1 Calavera\n\n32) ts52: Build G1 Ts52\n\n33) Calavera: Discover B1 Calavera G1 Crydee\n\n34) ts52: Move G2 Ts52 Oscar\n\n35) Calavera: Discover Y3 Krondor R1 Bas-tyra\n\n36) ts52: Build G2 Ts52\n\n37) Calavera: Sacrifice G3 Calavera\nBuild R2 Calavera\nBuild B1 Crydee\nBuild B1 Crydee\n\n38) ts52: Discover G2 Ts52 G3 Earth\n\n39) Calavera: Sacrifice Y3 Bas-tyra\nMove B1 Crydee Ts52\nMove B1 Crydee Ts52\nMove B1 Crydee Ts52\nCatastrophe Ts52 B\n\n\tCalavera: Thanks for the game. It&#39;s been fun.\n\nHomeworlds Online (SDG# 1926)\nVariants: &quot;Sinister&quot;\nStarted: 2005.12.20, Ended: 2006.1.14\nParticipants: Toni (S), xoet (W), MightyJack (N), Uglyfoot (E)\nWinner: MightyJack\n\n1) MightyJack: Homeworld B3 Y2 G3\n\n2) Uglyfoot: Homeworld G3 B1 Y3\n\n3) Toni: Homeworld Y1 B2 G2 *\n\n4) xoet: Homeworld B2 G3 Y3\n\n5) MightyJack: Build G1 Mightyjack\n\n6) Uglyfoot: Build Y1 Uglyfoot\n\n7) Toni: Build G1 Toni *\n\n8) xoet: Build Y1 Xoet\n\txoet: good luck everyone :-)\n\n9) MightyJack: Trade G1 B1 Mightyjack\n\n10) Uglyfoot: Build Y1 Uglyfoot\n\n11) Toni: Build G1 Toni *\n\n12) xoet: Build Y1 Xoet\n\n13) MightyJack: Build B1 Mightyjack\n\n14) Uglyfoot: Discover Y1 Uglyfoot G2 Gateway\n\n15) Toni: Trade G2 Y2 Toni *\n\n16) xoet: Trade Y1 B1 Xoet\n\n17) MightyJack: Trade B1 Y1 Mightyjack\n\n18) Uglyfoot: Build Y2 Gateway\n\n19) Toni: Trade G1 R1 Toni *\n\n20) xoet: Build Y2 Xoet\n\n21) MightyJack: Discover Y1 Mightyjack G1 Sirius\n\txoet: sorry about the delay in moving christmas happened here on my homeworld   Merry Christmas too all those who have that on their homeworlds\n\n22) Uglyfoot: Trade Y1 G1 Uglyfoot\n\n23) Toni: Trade G1 R1 Toni *\n\n24) xoet: Discover Y2 Xoet G1 Emc3\n\n25) MightyJack: Build G1 Mightyjack\n\n26) Uglyfoot: Build Y1 Uglyfoot\n\n27) Toni: Trade Y2 R2 Toni\n\n28) xoet: Build B1 Xoet\n\n29) MightyJack: Build Y2 Sirius\n\n30) Uglyfoot: Discover G1 Uglyfoot B2 Duet\n\n31) xoet: Move B1 Xoet Emc3\n\n32) MightyJack: Move B1 Mightyjack Sirius\n\tSYSTEM: Toni resigns.\n\tSYSTEM: Toni resigns.\n\txoet: ok so it says waiting for to move   now is it my turn cuase i cant play anything no command box or do i just resign ???  I could not log on for the past few days but i did try to with no luck not until now could i do anything\n\tMightyJack: We had a similar problem when someone was eliminated in another Sinister Homeworlds game that I&#39;m currently playing in... looks like Aaron&#39;s help will be needed to fix this one too.\n\tAaron: Well, on the positive side of things, this problem is a new problem.  The changes I made last week seem to actually have worked.  I am confused though.  The game history seems off.  I am going to undo the last move and see where we end up.  I am going to monitor the game.  Let me know what we need to do to salvage this.\n\n33) Uglyfoot: Move Y1 Uglyfoot Duet\n\n34) xoet: Build Y2 Emc3\n\n35) MightyJack: Discover Y1 Sirius G2 Vega\n\tUglyfoot: So do I go after the resigned Toni or sharpen the knives for Xoet?  Which one is my victory condition?  I would guess Xoet...\n\tMightyJack: Your new target is Xoet.  Toni&#39;s ships are still available for capture... but good luck getting a red ship to survive long enough in her system to do it.\n\tMightyJack: Actually, now I&#39;m seeing that Toni has been &quot;unresigned&quot;... so you might not have a new target after all.  The rumors of her resignation may have been exaggerated... :-)\n\tToni: I keep getting these messages that it&#39;s my turn, but there is no where to make a play. I did resign. I just catch on as to how to do anything. Sorry guys. :( Toni\n\tMightyJack: If you don&#39;t see a command window, do you see a Resign button that might let you quit again if that&#39;s your wish?\n\tMightyJack: Toni says she resigned and I don&#39;t see any indication that she wants to get back in on the game, so I&#39;m going to press the &quot;Force Resign&quot; button and see what happens next...\n\n36) Uglyfoot: Build Y3 Uglyfoot\n\tMightyJack: So far, so good.\n\tToni: Don&#39;t think it worked. I am still getting the notices that it is my turn.\n\n37) xoet: Trade Y2 B2 Emc3\n\n38) MightyJack: Build Y2 Vega\n\n39) Uglyfoot: Build Y3 Duet\n\n40) xoet: Build B1 Xoet\n\n41) MightyJack: Sacrifice Y2 Sirius\nMove Y1 Vega Uglyfoot\nMove Y2 Vega Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n\nHomeworlds Online (SDG# 1950)\nStarted: 2005.12.22, Ended: 2006.1.14\nParticipants: Calavera (S), lambda (N)\nWinner: Calavera\n\n1) lambda: Homeworld Y1 B2 G3\n\n2) Calavera: Homeworld Y2 B3 G3\n\tlambda: Hi there! I&#39;m meeting so many different people playing these games, it&#39;s great. Sorry I was slow on taking my first turn; I was finishing up finals at school. Anyhow, good luck to you!\n\tCalavera: h y2 b3 g3\n\tCalavera: Good luck to you as well.\n\n\nHomeworlds Online (SDG# 1945)\nStarted: 2005.12.28, Ended: 2005.12.29\nParticipants: lyman (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) lyman: Homeworld G1 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) lyman: Discover Y3 Lyman G3 Georgia\n\n\nHomeworlds Online (SDG# 1940)\nVariants: &quot;Sinister&quot;\nStarted: 2005.12.28, Ended: 2005.12.29\nParticipants: twopercentright (S), andylooney (N), JunkMan (E)\nWinner: JunkMan\n\n1) andylooney: Homeworld B3 G2 Y3\n\ttwopercentright: um...hello?\n\ttwopercentright: I was told this is good place to learn the icehouse games for when i have to demo for Con\r\n\n\tSYSTEM: twopercentright resigns.\n\n2) JunkMan: Homeworld G1 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: so what happened here? Did 2%right just quit? or what? I guess we can play this out as a two player game...\n\n4) JunkMan: Build Y1 Junkman\n\tJunkMan: I think he resigned right off the bat.  Maybe he hit the wrong button or something.  Darn, I think I had better odds having to eliminate him.\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: Well, our board is all goofy and there are too many pieces in the bank. This isn&#39;t the game I had in mind. I&#39;d be happy to just kill it, but I don&#39;t want to resign for fear of hurting my rating. Maybe we can get Aaron to just cancel this game?\n\n6) JunkMan: Trade Y1 R1 Junkman\n\tJunkMan: I don&#39;t mind either way.  I don&#39;t think resigning would hurt your rating though, because it&#39;s supposed to be a three player game.  I&#39;d definately check with aaron to be sure, though.\n\n\tandylooney: Oh, you&#39;re right - this should be an unrated game. Well, I&#39;m gonna bag this then. If you want to play me 2 player, grab the game I have open. Thanks!\n\tSYSTEM: andylooney resigns.\n\nHomeworlds Online (SDG# 2019)\nStarted: 2005.12.29, Ended: 2006.2.9\nParticipants: andylooney (S), mneme (N)\nWinner: andylooney\n\n1) mneme: Homeworld Y3 B2 G3\n\n2) andylooney: Homeworld G1 B2 Y3\n\n3) mneme: Build G1 Mneme\n\tmneme: I don&#39;t understand.  how do I build a new ship in my home system?  b G1 B2Y3 doesn&#39;t work. :(\r\n\n\tandylooney: you need to give it your system&#39;s name, not its description. Try &quot;Construct G1 mneme&quot;\n\n4) andylooney: Build Y1 Andylooney\n\tmneme: Ah!  Ok, it just wasn&#39;t clear to me, without more examples, that the system name was the thing outside the parenthes!  The fact that the system name doesn&#39;t appear in the order reports doesn&#39;t help, of course.\r\n\n\n5) mneme: B G1 Mneme\n\n6) andylooney: Discover Y1 Andylooney G3 Garden\n\n7) mneme: Discover G1 Mneme B1 Fleur\n\n8) andylooney: Build Y1 Andylooney\n\n9) mneme: Build G2 Fleur\n\n10) andylooney: Build Y1 Garden\n\tmneme: Ok, that&#39;s pretty clever -- using your discoveries to deny my builds.  (yeah, if it&#39;s not obvious, the is the first time I&#39;ve played BH).\r\n\n\n11) mneme: Sacrifice G3 Mneme\nBuild G2 Fleur\nBuild G2 Fleur\nBuild G3 Mneme\n\n12) andylooney: Build Y2 Andylooney\nCatastrophe Fleur Green\n\n13) mneme: Build G1 Mneme\n\tandylooney: sorry about that... but 4 greens in one system is just too many...\n\tmneme: Yes.  I&#39;d intended to create the fourth ship as the third in mneme, but typoed.\r\n\r\nShould I resign and start over?\n\n14) andylooney: Trade Y2 G2 Andylooney\n\tandylooney: Oh, I wouldn&#39;t do that. You&#39;re far from dead! Let&#39;s play on!\n\n15) mneme: Discover G1 Mneme B1 Fleuret\n\n16) andylooney: Discover G2 Andylooney Y3 Howell\n\tmneme: If you say so -- with you finally producing green ships, I&#39;ve got serious issues, since most of my moves will risk a catastrophe soon\n\n17) mneme: Build G2 Fleuret\n\n18) andylooney: Discover Y1 Garden B1 Berry\n\n19) mneme: Trade G2 Y2 Fleuret\n\n20) andylooney: Build Y2 Garden\n\tmneme: There&#39;s an undo feature?  Oh, holy hell.  I mean, I couldn&#39;t remember whether cataclism was 4 or 5, but I&#39;d have definately undone m7 if I&#39;d realized that.\r\n\n\n21) mneme: Build Y2 Fleuret\n\n22) andylooney: Build G2 Howell\n\n23) mneme: Trade Y2 B2 Fleuret\n\n24) andylooney: Sacrifice G2 Howell\nBuild G2 Howell\nBuild Y2 Berry\n\n25) mneme: Sacrifice G3 Mneme\nBuild G2 Fleuret\nBuild G3 Mneme\nBuild B1 Fleuret\n\n26) andylooney: Move G2 Howell Berry\n\n27) mneme: Move B2 Fleuret Garden\n\n28) andylooney: Sacrifice Y3 Andylooney\nMove G2 Howell Berry\nMove G2 Berry Mneme\nMove G2 Berry Mneme\nCatastrophe Mneme Green\n\tandylooney: Thanks for playing! Better luck on your next game!\n\n\nHomeworlds Online (SDG# 2029)\nStarted: 2005.12.30, Ended: 2006.1.27\nParticipants: Laurie_Menke (S), shelbyt (N)\nWinner: Laurie_Menke\n\n1) shelbyt: Homeworld G1 B2 Y3\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\tLaurie_Menke: Nice to meet you, Shelby...good luck!  :o)\n\n3) shelbyt: Build Y1 Shelbyt\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) shelbyt: Trade Y1 G1 Shelbyt\n\n6) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n\tLaurie_Menke: Well, shelby, it seems like you&#39;ve disappeared, so I&#39;m going to force you to resign.  Maybe we can play again sometime.\n\nHomeworlds Online (SDG# 1981)\nStarted: 2005.12.31, Ended: 2006.2.17\nParticipants: Dream_Control (S), Toni (W), Kermit (N), xoet (E)\nWinner: Kermit\n\n1) Kermit: Homeworld Y2 B3 G3\n\tToni: Okay guys, I have no idea what I am doing, so bare with me.\n\n2) xoet: Homeworld B2 G1 Y3\n\txoet: Hi Toni, Dream_Control, and Kermit I thing Kermit can help us out\n\n3) Dream_Control: Homeworld G3 B1 Y3\n\txoet: now dave try to keep up with the turns    i just typed in the orders box &quot;homeworld b2 g1 y3&quot; i believe Kermit typed homeworld y2 b3 g3&quot; so i can get to his homeworld cuase i have a star that is size 2 or is that i cant get to your world because of that not sure? but my y3 can travel and make a new world once ive put a new ship in my system\n\n4) Toni: Homeworld R3 B2 G3\n\tDream_Control: I have no idea what I&#39;m doing either.\n\n5) Kermit: Build G1 Kermit\n\tToni: *lol* Dream, guess we will be learning a lot then. Hope so, because I can never seem have the right combination to get a play to work.\n\n6) xoet: Build Y1 Xoet\n\n7) Dream_Control: Build Y1 Dream_control\n\txoet: now if i&#39;m right only the yellow ships can venture out beyond the root system?\n\n8) Toni: Build G1 Toni *\n\n9) Kermit: Discover G1 Kermit Y1 Namor\n\n10) xoet: Trade Y1 B1 Xoet\n\n11) Dream_Control: Discover Y1 Dream_control R2 Zodiac\n\txoet: guess i was wrong about venturing forth as for me I &quot;trade y1 b1 xoet&quot;  but I&#39;m not sure why I did that?\n\tKermit: well kinda right and kinda wrong. Any ship can move , BUT there must be a yellow ship or star in the system they are moving from. (if it is a ship ip must be owned by the same person as the moving ship.\r\nThe same is true of all abilities you can attack with any ship as long as you have a red ship or there is a  star in the system. you can trrade any ship as long as there is a blue star or you hace a blue ship in the system.\r\n \n\tKermit: the one exception, sorta, is green when you build a new ship (which you can do with a green star or if you have a green ship in the system) you can only build colors of which you already have ships. for example, on my next turn I can build a ship in the namor system but the only color i cam buils is green. i could also move that green ship to another system since the star in the namor system is yellow. if i do this thow the namor system will go away as all uninhabited systems do.\n\tKermit: one other thing to watch for if you haven&#39;t played before. Sacrifice, It allows someone to make three moves ANYWHERE whether they have that color in the system or not. for instance sacrificing a 1 point blue in kermit would let me trade my green in namor for another color. this can be sneaky epecially if a three point ship were involved.\n\tKermit: oh, I said three moves..as many moves ans the dots on the ship you sacrificed. I have often seen a 3 pointer sac&#39;d to knock someone out of the game though...so watch for it.\n\n12) Dream_Control: Build Y1 Dream_control\n\n13) Kermit: Build G1 Kermit\n\tToni: Sorry guys I just can&#39;t grasp the concept\n\tDream_Control: Aw Toni :-( Sorry to see you go :-(\n\n14) xoet: Build Y1 Xoet\n\ttwopercentright: This game still going on?\n\n15) Dream_Control: Move Y1 Dream_control Zodiac\n\tKermit: yes it is...one person dropped out though\n\n16) Kermit: Trade G1 Y1 Kermit\n\n17) xoet: Discover Y1 Xoet B3 Emc2\n\n18) Dream_Control: Move Y1 Zodiac Namor\n\n19) Kermit: Trade Y1 R1 Kermit\n\n20) xoet: Build Y1 Xoet\n\n21) Dream_Control: Move Y1 Namor Toni\n\n22) Kermit: Build G1 Kermit\n\n23) xoet: Trade Y1 G1 Xoet\n\n24) Dream_Control: Trade Y1 R1 Toni\n\n25) Kermit: Build G2 Namor\n\n26) xoet: Move G1 Xoet Emc2\n\n27) Dream_Control: Trade Y3 G3 Dream_control\n\n28) Kermit: Move G2 Namor Zodiac\n\n29) xoet: Build G2 Emc2\n\n30) Dream_Control: Build G2 Dream_control\n\n31) Kermit: Attack Y1S Zodiac\n\n32) xoet: Discover G1 Emc2 Y1 Dagnabit\n\n33) Dream_Control: Build G2 Dream_control\n\n34) Kermit: Build R1 Kermit\nCatastrophe Dream_control Green\n\n35) xoet: Build Y1 Emc2\n\tDream_Control: Oh we&#39;ll fight some more soon Kermit Trust Me\r\n\n\n36) Kermit: Trade R1 B1 Kermit\n\tKermit: Dream_Control, NEVER have all the ships on your home world the same color fo mor than a turn. You are always beter off doing most of your building off of your homeworld or at the very least keeping the colors mixed at home. I  was planning to sacrifice my 3 point yellow move a g1 from namor to zodiac then then to your home. then move the g2 from zodiac to your homeworld and Catastrophe (that was all in 1 turn by way of the sacrifice). you saved me the trouble.\n\n37) xoet: Trade Y1 R1 Emc2\n\n38) Kermit: Build G2 Namor\n\n39) xoet: Trade R1 B1 Emc2\n\n40) Kermit: Move B1 Kermit Namor\n\n41) xoet: Move B1 Emc2 Dagnabit\n\n42) Kermit: Move G2 Namor Emc2\n\n43) xoet: Build G2 Dagnabit\n\n44) Kermit: Sacrifice R1 Kermit\nAttack G2E Emc2\n\n45) xoet: Trade G1 R1 Dagnabit\n\n46) Kermit: Trade G1 R1 Kermit\n\n47) xoet: Build B1 Dagnabit\n\n48) Kermit: Sacrifice R1 Kermit\nAttack Y1E Emc2\n\n49) xoet: Trade B1 Y1 Dagnabit\n\n50) Kermit: Build Y2 Zodiac\n\n51) xoet: Build R1 Dagnabit\n\n52) Kermit: Build B1 Namor\n\n53) xoet: Build Y2 Xoet\n\n54) Kermit: Build Y2 Emc2\n\n55) xoet: Build R1 Dagnabit\n\n56) Kermit: Sacrifice Y2 Zodiac\nMove Y1 Emc2 Xoet\nMove Y2 Emc2 Xoet\nCatastrophe Xoet Y\n\tDream_Control: Man Kermit you suck, Dudes like you will make people not want to play on this site.\n\n57) xoet: Build B1 Xoet\n\n58) Kermit: Trade G2 Y2 Emc2\n\tKermit: sorry Dream_Control the way that happened is always the way this game ends. (every one i have been in at least(well catastrophe or surrender)).  \n\n59) xoet: Trade B1 Y1 Xoet\n\tKermit: All is not lost yet xoet but it does not look good. Also Dream_Control this is an unrated game and that is the best place to learn. First time I played homeeworlds i lost in a very similar fashion. I never saw the sacrifice coming and BAM I was out of the game. my first thought was &#39;what the.....&#39; then I thought &#39;So THAT&#39;S what a sacrifice is for!&#39;\n\n60) Kermit: Trade G2 R2 Emc2\n\n61) xoet: Move R1 Dagnabit Kermit\n\n62) Kermit: Move R2 Emc2 Xoet\n\n63) xoet: Build Y2 Dagnabit\n\n64) Kermit: Attack B1E Xoet\n\n65) xoet: Build Y2 Xoet\n\n66) Kermit: Attack Y2E Xoet\n\txoet: it does not look good at this point   but I&#39;ve no definite strategy\n\n67) xoet: Move Y2 Dagnabit Emc2\n\n68) Kermit: Sacrifice G2 Zodiac\nBuild Y2 Xoet\nBuild Y3 Xoet\nCatastrophe Xoet Yellow\n\n\tKermit: good game\n\nHomeworlds Online (SDG# 2035)\nStarted: 2005.12.31, Ended: 2006.2.4\nParticipants: andylooney (S), lyman (N)\nWinner: andylooney\n\n1) lyman: Homeworld G1 B2 Y3\n\tlyman: I appreciate the second chance!\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) lyman: Build Y1 Lyman\n\tandylooney: I&#39;m happy to play!\n\n4) andylooney: Build Y1 Andylooney\n\tlyman: I&#39;m pleased to meet you.  I have owned pyramids since they were marketed as the &quot;Martian Chess Set&quot;.  \n\tandylooney: Cool. I always love playing with my fans! Good luck!\n\n5) lyman: Discover Y1 Lyman G3 Fargo\n\n6) andylooney: Discover Y1 Andylooney G1 Mandm\n\n7) lyman: Build Y1 Fargo\n\n8) andylooney: Build Y2 Andylooney\n\n9) lyman: Discover Y1 Fargo G2 Pierre\n\n10) andylooney: Trade Y2 G2 Andylooney\n\n11) lyman: Build Y2 Pierre\n\n12) andylooney: Build Y2 Mandm\n\n13) lyman: Build Y2 Lyman\n\n14) andylooney: Build Y3 Andylooney\n\n15) lyman: Trade Y2 B2 Lyman\n\n16) andylooney: Discover Y3 Andylooney G1 Andes\n\n17) lyman: Move B2 Lyman Fargo\n\n18) andylooney: Build G3 Andylooney\n\n19) lyman: Build Y2 Fargo\n\n20) andylooney: Discover Y2 Mandm G3 Milkyway\n\n21) lyman: Build B1 Fargo\n\n22) andylooney: Trade G2 R2 Andylooney\n\n23) lyman: Move B1 Fargo Pierre\n\n24) andylooney: Sacrifice Y2 Milkyway\nMove Y3 Andes Fargo\nMove Y3 Fargo Lyman\n\n25) lyman: Build Y2 Lyman\n\n26) andylooney: Sacrifice R2 Andylooney\nAttack Y3N Lyman\nAttack Y2N Lyman\n\n\nHomeworlds Online (SDG# 2058)\nStarted: 2006.1.5, Ended: 2006.3.4\nParticipants: andylooney (S), paul98 (N)\nWinner: andylooney\n\n1) paul98: Homeworld G2 B1 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) paul98: Build Y1 Paul98\n\n4) andylooney: Build Y1 Andylooney\n\n5) paul98: Discover Y1 Paul98 B3 Fluxx\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) paul98: Trade Y1 G1 Fluxx\n\n8) andylooney: Discover G1 Andylooney Y1 Mellow\n\tpaul98: Do you mind if I name my systems after your games?\n\tandylooney: not at all! I think it&#39;s great!\n\n9) paul98: Build G1 Fluxx\n\tpaul98: Thanks. I read about your naming scheme on the Wunderland Weekly News for October 13, 2005. By the way, do you have one for R3 yet? If not, my friend suggested New York City or The Big Apple would be good.\n\n10) andylooney: Build G2 Mellow\n\n11) paul98: Build Y1 Paul98\n\n12) andylooney: Discover G2 Mellow Y3 Lacanna\n\n\tandylooney: So, it&#39;s been over a month since your last move... are you going to finish this game?\n\nHomeworlds Online (SDG# 2037)\nStarted: 2006.1.7, Ended: 2006.1.10\nParticipants: TwoShort (S), Aaron (N)\nWinner: TwoShort\n\n1) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, and good luck!  Not that you&#39;ll need it =)  I&#39;m still very much a novice at this game.\n\n2) TwoShort: Homeworld G2 B3 Y3\n\n3) Aaron: Build G1 Aaron\n\n4) TwoShort: Build Y1 Twoshort\n\n5) Aaron: Trade G1 Y1 Aaron\n\n6) TwoShort: Build Y2 Twoshort\n\n7) Aaron: Build Y2 Aaron\n\tTwoShort: Well, I&#39;m not such an expert myself... I recently played my first and only in-person game; other than that all my play has been on this site.\n\tAaron: What did you think of the in-person session?  I&#39;m sure it felt like a very different game.\n\n8) TwoShort: Discover Y1 Twoshort G1 Sprout\n\n9) Aaron: Discover Y1 Aaron G3 Bean\n\tTwoShort: Well, I&#39;ve always liked the aesthetics of the physical Icehouse pieces.   But I played the game (against Andy Looney) over the course of two evenings during which we had the game set up in a side room, and we would sneak off between other activities to make our moves.  So it actually had much more of the not-quite-real-time feel of playing here than it might have. \n\n10) TwoShort: Trade Y2 G2 Twoshort\n\n11) Aaron: Build Y2 Bean\n\n12) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Sprout\nBuild Y3 Twoshort\n\n13) Aaron: Sacrifice Y2 Aaron\nMove Y2 Bean Sprout\nMove Y1 Bean Sprout\nCatastrophe Sprout Y\n\n14) TwoShort: Discover Y3 Twoshort B1 Bluestar\n\n15) Aaron: Build G1 Aaron\n\n16) TwoShort: Trade Y3 G3 Bluestar\n\n17) Aaron: Trade G1 R1 Aaron\n\n18) TwoShort: Build G1 Bluestar\n\n19) Aaron: Build R1 Aaron\n\n20) TwoShort: Build Y1 Twoshort\n\n21) Aaron: Trade R1 Y1 Aaron\n\tAaron: not looking too good for me right now =)\r\n\n\n22) TwoShort: Build Y2 Twoshort\n\n23) Aaron: Build Y2 Aaron\n\n24) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Twoshort Bluestar\nDiscover Y1 Bluestar R3 Deathstar\nMove Y1 Deathstar Aaron\nCatastrophe Aaron Yellow\n\n25) Aaron: Build R1 Aaron\n\tAaron: uhm, ouch =)\n\n26) TwoShort: Build Y1 Twoshort\n\n27) Aaron: Trade R1 Y1 Aaron\n\tTwoShort: Yeah, I think you&#39;re in trouble now :) \n\n28) TwoShort: Discover Y1 Twoshort G1 Sprout\n\n29) Aaron: Move R1 Aaron Sprout\n\n30) TwoShort: Move Y1 Sprout Twoshort\n\n31) Aaron: Sacrifice Y1 Aaron\nMove R1 Sprout Twoshort\n\n32) TwoShort: Trade Y2 R2 Twoshort\n\n33) Aaron: Attack Y1S Twoshort\n\n34) TwoShort: Attack R1N Twoshort\n\tTwoShort: Am I missing something, or is this a creative surrender?\n\n35) Aaron: Discover Y1 Twoshort G1 Limes\n\tAaron: nah, just hijacking your yellow for the heck of it =)  Nothing much else to do and I hate just resigning.\n\n36) TwoShort: Trade G1 Y1 Bluestar\n\tTwoShort: I can understand that...  \n\tAaron: Well, the more I think about this, the more hopeless it becomes.  I&#39;ll stop drawing it out =D  Thanks for the game!\n\n\nHomeworlds Online (SDG# 2121)\nStarted: 2006.1.8, Ended: 2006.3.8\nParticipants: andylooney (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) andylooney: Build Y1 Andylooney\n\n5) TwoShort: Trade Y1 G1 Twoshort\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) TwoShort: Build G2 Twoshort\n\n8) andylooney: Discover G1 Andylooney Y1 Different\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) andylooney: Build Y1 Andylooney\n\n11) TwoShort: Build Y1 Twoshort\n\n12) andylooney: Discover Y1 Andylooney B1 Berry\n\n13) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n14) andylooney: Build Y2 Andylooney\n\n15) TwoShort: Build Y2 Twoshort\n\n16) andylooney: Trade Y1 R1 Berry\n\n17) TwoShort: Trade Y2 R2 Twoshort\n\n18) andylooney: Move Y2 Andylooney Berry\n\n19) TwoShort: Build Y1 Twoshort\n\n20) andylooney: Build Y2 Andylooney\n\n21) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Yolonda\nBuild Y2 Bluestar\n\n22) andylooney: Discover Y2 Andylooney R1 Volcano\n\n23) TwoShort: Sacrifice Y2 Bluestar\nDiscover Y1 Bluestar B1 Bluonia\nDiscover G1 Yolonda Y2 Yonder\n\n24) andylooney: Build G2 Different\n\n25) TwoShort: Sacrifice G2 Yolonda\nBuild Y3 Bluonia\nBuild G2 Yonder\n\n26) andylooney: Discover G1 Different B3 Bigbluefrog\n\n27) TwoShort: Move G2 Yonder Bluonia\n\n28) andylooney: Build G3 Bigbluefrog\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Bluonia Andylooney\nMove G2 Bluonia Andylooney\nMove Y1 Bluonia Andylooney\n\n\tTwoShort: :)\n\tandylooney: Dammit!!!\n\tTwoShort:   At this point in most of my games, I try to say something encouraging so my opponent will play again.  On the other hand, I was thinking you might be more motivated by a bit of taunting. But I suppose it&#39;s more polite to keep things positive, so I&#39;ll just point out that you really did very well.  A bit more practice and you&#39;ll be quite good at this game.  \n\tandylooney: grumble, grumble, grumble...\r\nGood game, sir!\n\nHomeworlds Online (SDG# 2120)\nStarted: 2006.1.9, Ended: 2006.1.17\nParticipants: Uglyfoot (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\n2) Uglyfoot: Homeworld Y2 B3 G3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) TwoShort: Build Y1 Twoshort\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n8) Uglyfoot: Discover G1 Uglyfoot B1 Commerce\n\n9) TwoShort: Build Y1 Grogar\n\n10) Uglyfoot: Build G2 Commerce\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Uglyfoot: Trade G2 Y2 Commerce\n\n13) TwoShort: Trade Y2 G2 Twoshort\n\n14) Uglyfoot: Build G2 Commerce\n\n15) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n16) Uglyfoot: Build Y2 Commerce\n\n17) TwoShort: Move Y1 Grogar Commerce\n\n18) Uglyfoot: Trade Y2 R2 Commerce\n\n19) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Commerce\nBuild Y3 Grogar\n\n20) Uglyfoot: Discover G2 Commerce Y3 Forward\n\n21) TwoShort: Trade Y1 R1 Twoshort\n\n22) Uglyfoot: Attack Y2 Commerce\n\n23) TwoShort: Move Y1 Grogar Commerce\nCatastrophe Commerce Yellow\n\n24) Uglyfoot: Build G2 Forward\n\n25) TwoShort: Move Y3 Grogar Commerce\n\n26) Uglyfoot: Build G2 Commerce\n\n27) TwoShort: Sacrifice R1 Twoshort\nAttack R2S Commerce\n\n28) Uglyfoot: Move G2 Forward Twoshort\n\n29) TwoShort: Sacrifice R2 Commerce\nAttack G2S Commerce\nAttack G1S Commerce\n\n30) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Forward\nBuild G3 Twoshort\nBuild G3 Twoshort\nCatastrophe Twoshort G\n\n31) TwoShort: Sacrifice Y3 Commerce\nMove G2 Commerce Uglyfoot\nMove G1 Commerce Uglyfoot\nPass\n\n32) Uglyfoot: Trade G1 R1 Uglyfoot\n\n33) TwoShort: Trade G2 R2 Uglyfoot\n\n34) Uglyfoot: Attack G1 Uglyfoot\n\n35) TwoShort: Attack R1S Uglyfoot\n\n36) Uglyfoot: Sacrifice G2 Forward\nBuild G1 Uglyfoot\nBuild G1 Uglyfoot\n\n37) TwoShort: Trade R2 G2 Uglyfoot\nCatastrophe Uglyfoot Green\n\n\nHomeworlds Online (SDG# 2136)\nStarted: 2006.1.10, Ended: 2006.3.15\nParticipants: twopercentright (S), Lexicon (W), Aaron (N), ts52 (E)\nWinner: ts52\n\n1) Aaron: Homeworld B1 G2 Y3\n\n2) ts52: Homeworld G1 B3 Y3\n\tAaron: Good luck, all!\n\n3) twopercentright: Homeworld B2 G3 Y3\n\tts52: Have a great game everyone!\n\ttwopercentright: bare with me, here.  This is my first ever game\r\n\n\n4) Lexicon: Homeworld G2 B3 Y3\n\ttwopercentright: how do i know if i am good or evil?\n\n5) Aaron: Build Y1 Aaron\n\tAaron: There is no good and evil in SDG Homeworlds.  We are currently playing the base game which is &quot;Last Man Standing&quot;  There is an &quot;official&quot; variant also supported here called &quot;Sinister Homeworlds&quot; where the winner is the one who eliminates the player on their left.\r\n\r\nFor a training game, this is as good as any.  The goal is just to somehow survive the carnage.  Feel free to ask any questions you may have.  The game is actually quite straightforward once you get the hang of it.\n\n6) ts52: Build Y1 Ts52\n\tAaron: I may at some point make the Sinister variant the base game, but for now...\n\tAaron: The &quot;Last Man Standing&quot; version is just a little more chaotic.\n\tts52: Ah, I was wondering if this was a sinister game or not. I haven&#39;t played a &quot;Last man standing&quot; game yet. Should be fun!\r\nAnd feel free to ask us anything 2%right.\n\n7) twopercentright: Build Y1 Twopercentright\n\tAaron: Variants (if any) will appear in the top title bar of the game page, where the game number and rules links are.\n\tLexicon: Perhaps the lack of variants should be indicated with a &quot;Standard game, no variants&quot; caption. \n\tAaron: hrm, that&#39;s an option...*pulls up the source code*\n\tAaron: I agree, I like it.\n\tLexicon: Looks good.\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Aaron: Trade Y1 R1 Aaron\n\n10) ts52: Trade Y1 G1 Ts52\n\tts52: I like the addition. Looks good.\r\n\n\n11) twopercentright: Build Y1 Twopercentright\n\n12) Lexicon: Trade Y1 G1 Lexicon\n\n13) Aaron: Build Y1 Aaron\n\ttwopercentright: hm\n\ttwopercentright: hm\n\ttwopercentright: I guess it did work.  When i was on earlier, the website froze up, so i had no idea if my command had been exicuted\n\tAaron: Remeber, 2%, that anybody can call a catastrophe at the end of their turn.  If you build a 4th yellow, and even if you yourself don&#39;t call the catastrophe, Lexicon could.\n\n14) ts52: Build Y1 Ts52\n\n15) twopercentright: Trade Y1 G1 Twopercentright\n\n16) Lexicon: Build Y1 Lexicon\n\ttwopercentright: how is a new planet founded?  I think i&#39;m lost on that point.\n\tLexicon: Use the discover command.  discover ship fromSystem newStar newName\n\n17) Aaron: Trade Y1 B1 Aaron\n\n18) ts52: Discover Y1 Ts52 G2 Lime\n\n19) twopercentright: Discover Y1 Twopercentright B1 Grainne\n\ttwopercentright: I tried that, but it said...i couldn&#39;t do it for some reason *chagrined*\n\n20) Lexicon: Discover Y1 Lexicon G1 Redhat\n\ttwopercentright: huh.  Weird\n\n21) Aaron: Trade Y3 G3 Aaron\n\n22) ts52: Build G2 Ts52\n\n23) twopercentright: Build G2 Twopercentright\n\ttwopercentright: how does one get larger ships?  Or is it the whole &quot;use the smallest piece&quot; thing, wherein i can get a larger peice only when the smaller ones run out?\n\n24) Lexicon: Discover G1 Lexicon Y1 Yellowdog\n\tts52: You&#39;ve got it. Building the smallest piece, once all the smalls and mediums are gone. And then trading to get larges in other colors.\n\n25) Aaron: Trade B1 Y1 Aaron\n\n26) ts52: Discover G2 Ts52 B2 Plum\n\n27) twopercentright: Move G2 Twopercentright Grainne\n\n28) Lexicon: Build G3 Yellowdog\n\n29) Aaron: Build Y2 Aaron\n\n30) ts52: Build G3 Plum\n\n31) twopercentright: Build G3 Grainne\n\n32) Lexicon: Sacrifice G3 Yellowdog\nBuild G3 Yellowdog\nBuild Y2 Redhat\nBuild Y2 Lexicon\n\n33) Aaron: Build R1 Aaron\n\n34) ts52: Trade G1 R1 Ts52\n\n35) twopercentright: Trade G1 R1 Twopercentright\n\n36) Lexicon: Trade Y2 R2 Lexicon\n\n37) Aaron: Discover Y2 Aaron B3 Sea\n\n38) ts52: Build Y2 Ts52\n\n39) twopercentright: Build Y2 Grainne\n\n40) Lexicon: Discover G1 Yellowdog Y3 Debian\n\n41) Aaron: Build Y2 Aaron\n\n42) ts52: Build Y3 Lime\n\n43) twopercentright: Trade Y1 R1 Grainne\n\n44) Lexicon: Build Y1 Lexicon\n\n45) Aaron: Build R2 Aaron\n\tAaron: Things are getting pretty crowded...\r\n\n\n46) ts52: Move Y2 Ts52 Plum\n\n47) twopercentright: Build R2 Twopercentright\n\n48) Lexicon: Move Y1 Lexicon Yellowdog\n\ttwopercentright: very confusing, indeed\n\n49) Aaron: Move R2 Aaron Sea\n\n50) ts52: Discover G2 Plum R3 Elmo\n\n51) twopercentright: Build R2 Grainne\n\n52) Lexicon: Sacrifice G1 Debian\nBuild Y3 Lexicon\n\n53) Aaron: Discover R1 Aaron B3 Azure\n\n54) ts52: Build G1 Plum\n\n55) twopercentright: Sacrifice Y2 Grainne\nMove G3 Grainne Elmo\nMove G3 Elmo Aaron\n\n56) Lexicon: Build G1 Yellowdog\n\ttwopercentright: Something tells me i&#39;m going to regret doing that.\r\n\n\n57) Aaron: Attack G3S Aaron\n\tLexicon: A bit questionable.  You should have positioned better and had another g1 ready to go to launch at him.  As it is, maybe you can convince ts52 to burn a y2 to send his g1 over there.  Aaron is in a pretty tough position now though.\n\n58) ts52: Sacrifice Y1 Lime\nMove G2 Elmo Aaron\nCatastrophe Aaron Green\n\tts52: Hmmm, I think I&#39;ll do it this way instead. Not sure if it&#39;s better or not....\n\n59) twopercentright: Build G1 Grainne\n\n60) Lexicon: Discover G1 Yellowdog Y2 Gentoo\n\n61) Aaron: Sacrifice Y2 Sea\nMove Y2 Aaron Lexicon\nMove Y1 Aaron Lexicon\nCatastrophe Lexicon Y\n\n62) ts52: Discover G3 Plum R3 Elmo\n\n63) twopercentright: Discover R1 Twopercentright Y1 Pallas\n\n64) Lexicon: Move G3 Yellowdog Lexicon\n\tLexicon: Yeah!  Catastrophes all around!\r\n\n\n65) Aaron: Trade R1 Y1 Aaron\n\n66) ts52: Build G2 Elmo\n\n67) twopercentright: Trade R1 B1 Grainne\n\n68) Lexicon: Move Y1 Yellowdog Lexicon\n\n69) Aaron: Trade R2 Y2 Sea\n\n70) ts52: Build Y1 Plum\n\n71) twopercentright: Build B1 Grainne\n\n72) Lexicon: Build Y2 Lexicon\n\n73) Aaron: Move Y2 Sea Aaron\n\n74) ts52: Sacrifice G3 Elmo\nBuild Y3 Ts52\nBuild G2 Plum\nBuild G3 Elmo\n\n75) twopercentright: Build Y3 Twopercentright\n\n76) Lexicon: Move Y1 Redhat Twopercentright\n\n77) Aaron: Move Y1 Aaron Twopercentright\nCatastrophe Twopercentright Yellow\n\tLexicon: Who&#39;s with me?\n\n78) ts52: Discover G2 Plum Y3 Sol\n\n79) twopercentright: Trade B1 Y1 Grainne\n\ttwopercentright: for what?\n\ttwopercentright: I honestly don&#39;t remember having 3 yellow ships in that system......am i just crazy?\r\n\n\ttwopercentright: oh I see\n\ttwopercentright: Now all a sudden, I&#39;m the &quot;bad guy&quot;\n\n80) Lexicon: Build G3 Gentoo\n\n81) Aaron: Trade R1 Y1 Azure\n\n82) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild G3 Plum\nBuild Y3 Lime\n\n83) twopercentright: Move R2 Grainne Azure\n\n84) Lexicon: Move G1 Gentoo Elmo\n\ttwopercentright: Yeeeaaaah.  I&#39;m gunna lose this game. ;-)\n\tLexicon: well, right now ts52 needs a turn.\n\n85) Aaron: Move Y1 Azure Aaron\n\n86) ts52: Sacrifice Y3 Lime\nMove Y2 Plum Aaron\nMove Y1 Plum Aaron\nMove Y3 Ts52 Plum\nCatastrophe Aaron Yellow\n\n87) Lexicon: Sacrifice G1 Elmo\nBuild G1 Gentoo\n\tts52: Sorry Aaron. Thanks for the game!\n\tLexicon: well, that significantly events things out...\r\n\n\n88) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild Y1 Lime\nBuild R1 Ts52\n\tAaron: Cheers!  Have fun!\n\n89) twopercentright: Move Y1 Grainne Twopercentright\n\ttwopercentright: Sorry about that everyone.  I&#39;ve been very ill the last two days and couldn&#39;t on.  Thank you for waiting for me.\n\n90) Lexicon: Sacrifice G3 Gentoo\nBuild G3 Gentoo\nBuild R1 Lexicon\nBuild Y1 Redhat\n\n91) ts52: Move R1 Ts52 Plum\n\n92) twopercentright: Build Y2 Twopercentright\n\tAaron: Glad you&#39;re feeling better!\n\n93) Lexicon: Trade R1 B1 Lexicon\n\n94) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild Y2 Plum\nBuild Y3 Ts52\n\n95) twopercentright: Trade G2 R2 Grainne\n\n96) Lexicon: Sacrifice Y2 Lexicon\nMove G3 Gentoo Ts52\nMove G1 Gentoo Ts52\n\n97) ts52: Build G2 Sol\n\n98) twopercentright: Sacrifice Y2 Twopercentright\nMove G1 Grainne Lime\nMove G1 Lime Ts52\nCatastrophe Ts52 Green\n\n99) Lexicon: Build Y2 Lexicon\n\n100) ts52: Sacrifice Y2 Plum\nMove Y1 Lime Elmo\nDiscover Y3 Ts52 R1 Cherry\n\n101) twopercentright: Build Y2 Twopercentright\n\n102) Lexicon: Move B1 Lexicon Redhat\n\n103) ts52: Move G3 Plum Ts52\n\n104) twopercentright: Trade Y1 R1 Twopercentright\n\n105) Lexicon: Build B1 Redhat\n\n106) ts52: Sacrifice G2 Sol\nBuild R2 Plum\nBuild R3 Ts52\n\n107) Lexicon: Trade Y1 B1 Redhat\n\tAaron: Hope all is well, 2%!\n\tAaron: I think perhaps it&#39;s time to move this game along.  Sorry 2%!  Hope all is well and that we see you back soon!\n\n108) ts52: Move R2 Plum Redhat\n\tLexicon: Seems it&#39;s about that time alright.  Oh well.  OK ts52, you are on your way to destruction!\n\tLexicon: The site&#39;s been down for me for a good bit of last week.  I don&#39;t know if that&#39;s me or everyone, but Aaron didn&#39;t send out a message and all *my* games are expired, so I&#39;m thinking it&#39;s just me.  \r\n\n\n109) Lexicon: Sacrifice Y2 Redhat\nMove B1 Redhat Ts52\nMove B1 Redhat Ts52\n\n110) ts52: Sacrifice R3 Ts52\nAttack B1W Ts52\nAttack B1W Ts52\nAttack B1W Redhat\n\n111) Lexicon: Trade Y2 B2 Lexicon\n\tts52: Hah, don&#39;t count me out just yet.\n\n112) ts52: Sacrifice Y3 Lime\nMove B1 Redhat Lexicon\nMove B1 Ts52 Redhat\nMove B1 Redhat Lexicon\nCatastrophe Lexicon Blue\n\tLexicon: this does not bode well...\n\tLexicon: did I mention how you have far too many ships?  I think of those y3s at ICBMs.  Too many are pointed in my direction now...\n\n113) ts52: Pass\n\tAaron: Sorry, Lexicon.  The site&#39;s been running pretty consistently.  Any particular error you&#39;ve been getting?  Glad you&#39;re back at least!\n\n\tLexicon: Three losers and no winners! Heh heh.\n\tAaron: rofl!  oh man =)  Well, ts, please try to &#39;pass&#39; and let&#39;s seeif that triggers the end of the game.  if not, I&#39;ll hack at it =)  Sorry!\n\nHomeworlds Online (SDG# 2148)\nStarted: 2006.1.10, Ended: 2006.1.12\nParticipants: ts52 (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld B2 Y3 G3\n\n2) ts52: Homeworld G1 B2 Y3\n\n3) Calavera: Build G1 Calavera\n\tts52: Good luck!\n\n4) ts52: Build Y1 Ts52\n\tCalavera: You too\n\n5) Calavera: Build G1 Calavera\n\n6) ts52: Discover Y1 Ts52 G3 Kermit\n\n7) Calavera: Discover G1 Calavera B1 Question\n\n8) ts52: Build Y1 Kermit\n\n9) Calavera: Build G2 Question\n\n10) ts52: Trade Y3 G3 Ts52\n\n11) Calavera: Trade G2 Y2 Question\n\n12) ts52: Move Y1 Kermit Ts52\n\n13) Calavera: Build G2 Question\n\n14) ts52: Build Y1 Kermit\n\n15) Calavera: Build Y2 Question\n\n16) ts52: Discover Y1 Kermit B1 Blueberry\n\n17) Calavera: Sacrifice G3 Calavera\nBuild G2 Question\nBuild G2 Calavera\nBuild G3 Calavera\n\n18) ts52: Sacrifice G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Ts52\nBuild Y3 Blueberry\n\n19) Calavera: Sacrifice Y2 Question\nMove G2 Question Kermit\nMove G2 Kermit Ts52\n\n20) ts52: Trade Y3 R3 Ts52\n\n21) Calavera: Sacrifice G2 Question\nBuild G2 Ts52\nBuild G3 Ts52\nCatastrophe Ts52 G\n\n22) ts52: Trade Y3 G3 Blueberry\n\n23) Calavera: Trade G1 R1 Calavera\n\n24) ts52: Build G1 Blueberry\n\n25) Calavera: Trade G2 B2 Calavera\n\n26) ts52: Move G1 Blueberry Ts52\n\n27) Calavera: Discover B2 Calavera G1 Exclamation\n\n28) ts52: Build G2 Blueberry\n\n29) Calavera: Build B1 Exclamation\n\n30) ts52: Sacrifice G3 Blueberry\nBuild G2 Ts52\nBuild G2 Blueberry\nBuild G3 Blueberry\n\n31) Calavera: Build B3 Exclamation\n\n32) ts52: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y2 Ts52\nBuild Y3 Blueberry\n\n33) Calavera: Sacrifice Y2 Question\nMove B3 Exclamation Ts52\nMove B1 Exclamation Ts52\n\n34) ts52: Attack B3N Ts52\n\tts52: Well played. Thanks for the game!\n\n35) Calavera: Sacrifice G1 Question\nBuild B1 Ts52\nCatastrophe Ts52 B\n\tCalavera: Same to you, it was great fun. Thanks for an interesting game.\n\n\nHomeworlds Online (SDG# 2156)\nStarted: 2006.1.10, Ended: 2006.2.3\nParticipants: TwoShort (S), carversanx (N)\nWinner: TwoShort\n\n1) carversanx: Homeworld G3 B1 Y3\n\tcarversanx: I am learning commands etc.  sorry, I am new.\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) carversanx: Build Y1 Carversanx\n\n4) TwoShort: Build G1 Twoshort\n\n5) carversanx: Discover Y1 Carversanx R2 Sol\n\n6) TwoShort: Build G1 Twoshort\n\n7) carversanx: Trade Y3 R3 Carversanx\n\n8) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n9) carversanx: Build R1 Carversanx\n\n10) TwoShort: Build G1 Twoshort\n\n11) carversanx: Trade R1 Y1 Carversanx\n\n12) TwoShort: Discover G1 Twoshort Y3 Yak\n\n13) carversanx: Move R3 Carversanx Sol\n\n14) TwoShort: Trade G1 R1 Twoshort\n\n\nHomeworlds Online (SDG# 2159)\nStarted: 2006.1.11, Ended: 2006.3.4\nParticipants: andylooney (S), carversanx (N)\nWinner: andylooney\n\n1) carversanx: Homeworld B1 Y2 G3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) carversanx: Build G1 Carversanx\n\n4) andylooney: Build Y1 Andylooney\n\n5) carversanx: Discover G1 Carversanx R3 Metat\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n\tandylooney: So, it&#39;s been over a month since your last move... are you going to finish this game?\n\nHomeworlds Online (SDG# 2186)\nVariants: &quot;Unrated&quot;\nStarted: 2006.1.14, Ended: 2006.2.14\nParticipants: Jesse (S), twopercentright (N)\nWinner: Jesse\n\n1) twopercentright: Homeworld G3 B2 Y3\n\n2) Jesse: Homeworld G1 B3 Y3\n\tJesse: Hello, there!  It looks like you&#39;re new to SDG; how new are you to Homeworlds?\n\n3) twopercentright: Build Y1 Twopercentright\n\n4) Jesse: Pass\n\ttwopercentright: This is only my second game.  I&#39;m in the middle of another, 4-way game that started a couple days ago.\n\ttwopercentright: As in, total Homeworld games...including real world games.  Still just my second game.\n\tJesse: Okay, read the strategy tips on the wiki, if you haven&#39;t already.  It&#39;s not my intention to give tips during the course of this game, but rather to handicap it by passing my first few turns after setting up my homeworld.  I have no idea how many passes is appropriate for any given skill difference, so why don&#39;t we try 3?\n\n5) twopercentright: Trade Y1 G1 Twopercentright\n\tJesse: I wil answer any questions you have about the rules, though.\n\n6) Jesse: Pass\n\n7) twopercentright: Build Y1 Twopercentright\n\tJesse: One more...\n\n8) Jesse: Pass\n\n9) twopercentright: Discover Y1 Twopercentright G1 Grainne\n\tJesse: Okay, done.\n\n10) Jesse: Build Y1 Jesse\n\n11) twopercentright: Build Y1 Grainne\n\n12) Jesse: Discover Y1 Jesse G2 Morbo\n\n13) twopercentright: Build G2 Twopercentright\n\ttwopercentright: hehe. &quot;MORBO WILL DEVOUR YOUR PLANET!!!  Now for weather...&quot;\n\n14) Jesse: Build Y2 Jesse\n\n15) twopercentright: Move G1 Twopercentright Grainne\n\tJesse: Kittens give Morbo gas.\n\n16) Jesse: Trade Y2 G2 Jesse\n\n17) twopercentright: Build G3 Grainne\n\ttwopercentright: build G3 Grainne\n\n18) Jesse: Discover G2 Jesse Y2 Juble\n\ttwopercentright: whoops.  I&#39;m an idiot. :-D\n\tJesse: If that makes you an idiot, then so am I.  :)\n\n19) twopercentright: Move G1 Grainne Juble\n\n20) Jesse: Build G3 Juble\n\n21) twopercentright: Move G3 Grainne Juble\nCatastrophe Juble Green\n\n22) Jesse: Build Y2 Jesse\n\tJesse: I&#39;m the more experienced player by far, and yet you destroyed the Juble system.  Does that seem right to you?\n\n23) twopercentright: Build Y2 Twopercentright\n\n24) Jesse: Trade Y2 G2 Jesse\n\n25) twopercentright: Move G2 Twopercentright Grainne\n\n26) Jesse: Build Y2 Jesse\n\ttwopercentright: Juble system angered Morbo!\n\n27) twopercentright: Trade Y2 R2 Twopercentright\n\n28) Jesse: Trade Y2 R2 Jesse\n\tJesse: Funny, I was just thinking the same thing...\n\n29) twopercentright: Build R1 Twopercentright\n\tJesse: Engarde!\n\n30) Jesse: Build R1 Jesse\n\ttwopercentright: touche&#39;\n\n31) twopercentright: Discover R1 Twopercentright G1 Pallas\n\ttwopercentright: why can&#39;t i discover a new star from a Grainne?\n\n32) Jesse: Discover G2 Jesse Y2 Draal\n\tJesse: I can&#39;t answer that question without knowing what command you were trying to enter.  One possibility is that you were trying to discover a small system, but you can only move to medium and large systems from Grainne.  Another possibility is that you were trying to discover a g2 system, but there isn&#39;t a g2 marker available.  Or, it might have just been a syntax error.\n\n33) twopercentright: Build Y2 Twopercentright\n\n34) Jesse: Build G3 Draal\n\n35) twopercentright: Build G3 Grainne\n\ttwopercentright: Sorry about that.  I&#39;ve been very ill the past two days, and didn&#39;t have a chance to get on here.\n\n36) Jesse: Move G2 Draal Grainne\nCatastrophe Grainne G\n\tJesse: No problem.\n\n37) twopercentright: Move Y3 Twopercentright Pallas\n\tJesse: Boom.  Gotta watch out for that.\n\n38) Jesse: Discover G3 Draal Y1 Kaori\n\n39) twopercentright: Build Y1 Pallas\n\tJesse: Draal has gone to the sea of stars.\n\n40) Jesse: Move G3 Kaori Twopercentright\n\n41) twopercentright: Move Y3 Pallas Twopercentright\n\tJesse: You should not leave your homeworld undefended.\n\n42) Jesse: Sacrifice R2 Jesse\nAttack Y3 Twopercentright\nAttack R2 Twopercentright\n\ttwopercentright: yeeeeaaaaaaahhhh.  I&#39;m gunna lose\n\n43) twopercentright: Build Y1 Twopercentright\n\n44) Jesse: Sacrifice R2 Twopercentright\nAttack Y2 Twopercentright\nAttack Y1 Twopercentright\n\tJesse: Thanks for the game.\n\n\nHomeworlds Online (SDG# 2169)\nStarted: 2006.1.15, Ended: 2007.2.4\nParticipants: MightyJack (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\n2) MightyJack: Homeworld B3 Y2 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) MightyJack: Build G1 Mightyjack\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) MightyJack: Build G2 Mightyjack\n\n7) andylooney: Build G2 Andylooney\n\n8) MightyJack: Discover G2 Mightyjack Y1 Tau Ceti\n\n9) andylooney: Discover G2 Andylooney Y3 Howell\n\tMightyJack: That was actually supposed to be Tau Ceti... guess the program won&#39;t let there be a new star with a space in the name.  Oh well.\n\n10) MightyJack: Trade G1 Y1 Mightyjack\n\n11) andylooney: Discover G1 Andylooney Y3 Clampett\n\n12) MightyJack: Discover Y1 Mightyjack G1 Eden\n\n13) andylooney: Build Y1 Andylooney\n\n14) MightyJack: Build Y2 Eden\n\n15) andylooney: Discover Y1 Andylooney G3 Garden\n\n16) MightyJack: Discover Y2 Eden G3 Kermit\n\n17) andylooney: Build Y2 Garden\n\n18) MightyJack: Build G2 Mightyjack\n\n19) andylooney: Sacrifice G2 Howell\nBuild G2 Clampett\nBuild Y3 Andylooney\n\n20) MightyJack: Trade G2 R2 Mightyjack\n\n21) andylooney: Discover Y2 Garden B1 Berry\n\n22) MightyJack: Move R2 Mightyjack Berry\n\n23) andylooney: Discover G1 Clampett B1 Bomber\n\n24) MightyJack: Attack Y2N Berry\n\n25) andylooney: Trade G1 R1 Bomber\n\n26) MightyJack: Move R2 Berry Garden\n\n27) andylooney: Move Y3 Andylooney Garden\n\n28) MightyJack: Sacrifice Y2 Kermit\nMove Y2 Berry Garden\nMove Y1 Eden Garden\nCatastrophe Garden Yellow\n\n29) andylooney: Build Y1 Andylooney\n\n30) MightyJack: Build G1 Mightyjack\n\n31) andylooney: Build Y1 Andylooney\n\n32) MightyJack: Trade G1 B1 Mightyjack\n\n33) andylooney: Trade Y1 B1 Andylooney\n\n34) MightyJack: Move B1 Mightyjack Tau\n\n35) andylooney: Discover B1 Andylooney G3 Paradise\n\tMightyJack: Sorry for the long delays on my part too.\n\n36) MightyJack: Build B2 Tau\n\n37) andylooney: Build B2 Paradise\n\n38) MightyJack: Move B2 Tau Garden\n\n39) andylooney: Trade B1 R1 Paradise\n\n\nHomeworlds Online (SDG# 2248)\nStarted: 2006.1.19, Ended: 2006.1.21\nParticipants: Lexicon (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 G2 Y3\n\tLexicon: What a tough field.  Do I play against the inventor of this game or one of the top players?  The best way to improve is to get tromped, I suppose. ;)\n\n2) Lexicon: Homeworld G1 B3 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\tTwoShort: Hmmm, I guess I am one of the top players.  I still feel like I&#39;ve just been lucky vs Andy, and Jesse has stomped me twice.\n\n4) Lexicon: Build Y1 Lexicon\n\n5) TwoShort: Trade Y1 G1 Twoshort\n\tLexicon: As long as you&#39;re beating Andy, you&#39;re pretty good.  I&#39;ll probably try against him next.\n\n6) Lexicon: Trade Y1 G1 Lexicon\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Lexicon: Discover G1 Lexicon Y2 Nature\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) Lexicon: Build G2 Nature\n\n11) TwoShort: Discover Y1 Twoshort G3 Gordo\n\n12) Lexicon: Move G2 Nature Lexicon\n\n13) TwoShort: Discover Y1 Gordo G2 Grogar\n\n14) Lexicon: Build G3 Nature\n\n15) TwoShort: Build G3 Yolonda\n\n16) Lexicon: Build Y1 Lexicon\n\n17) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Grogar\nBuild Y2 Twoshort\nBuild G3 Yolonda\n\n18) Lexicon: Trade Y1 R1 Lexicon\n\n19) TwoShort: Discover G1 Yolonda Y2 Yoyodyne\n\n20) Lexicon: Sacrifice G3 Nature\nBuild G3 Nature\nBuild Y1 Lexicon\nBuild R1 Lexicon\n\n21) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar Lexicon\nMove Y1 Grogar Lexicon\nCatastrophe Lexicon Yellow\n\n22) Lexicon: Discover G3 Nature Y3 Science\n\n23) TwoShort: Trade Y3 R3 Twoshort\n\n24) Lexicon: Trade G2 Y2 Lexicon\n\n25) TwoShort: Build G2 Yolonda\n\n26) Lexicon: Build G2 Science\n\n27) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yoyodyne\nBuild G3 Yolonda\nBuild R1 Twoshort\n\n28) Lexicon: Sacrifice Y2 Lexicon\nMove G3 Science Yoyodyne\nMove G3 Yoyodyne Lexicon\n\n29) TwoShort: Move G3 Yoyodyne Lexicon\n\n\tLexicon: I figured you had me back with the propulsion attack.  Good game. ;)\n\nHomeworlds Online (SDG# 2274)\nStarted: 2006.1.20, Ended: 2006.1.22\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld B2 Y1 G3\n\n3) jeep: Build G1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) sketchwick: Trade G3 Y3 Sketchwick\n\n7) jeep: Build Y2 Jeep\n\n8) sketchwick: Discover Y3 Sketchwick G3 Sigh\n\n9) jeep: Sacrifice Y2 Jeep\nMove G3 Jeep Sigh\nMove G3 Sigh Sketchwick\n\n\nHomeworlds Online (SDG# 2267)\nStarted: 2006.1.20, Ended: 2006.2.22\nParticipants: TwoShort (S), Jesse (N)\nWinner: TwoShort\n\n1) Jesse: Homeworld B1 G2 Y3\n\tJesse: Well, now that you&#39;re kicking everyone else&#39;s asses around here, I think it&#39;s high time we played again.  :)\n\n2) TwoShort: Homeworld B1 Y2 G3\n\tTwoShort: Hmmm, The last couple general challenges I&#39;ve put up, I considered challenging you directly, but chickened out.\n\n3) Jesse: Build Y1 Jesse\n\n4) TwoShort: Build G1 Twoshort\n\tJesse: If I hadn&#39;t seen the open challenge, I was going to challenge you directly sometime soon, anyway.  So, what, are you scared of the unstoppable juggernaut?  I&#39;m really looking forward to a challenging game.\n\tJesse: Interesting choice of homeworld.  You want a really direct conflict, eh?\n\n5) Jesse: Trade Y1 B1 Jesse\n\tTwoShort: Or I&#39;m getting my inatentive screw up out of the way off the top...\r\n\n\n6) TwoShort: Build G1 Twoshort\n\tJesse: That works, too.\n\tTwoShort: build g1 twoshort\n\n7) Jesse: Build B2 Jesse\n\tJesse: As it turns out, that doesn&#39;t work so well.  ;)\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) Jesse: Trade B2 R2 Jesse\n\n10) TwoShort: Trade G1 R1 Twoshort\n\n11) Jesse: Build B2 Jesse\n\n12) TwoShort: Build G1 Twoshort\n\n13) Jesse: Trade B2 Y2 Jesse\n\n14) TwoShort: Build G1 Twoshort\n\n15) Jesse: Build B2 Jesse\n\tTwoShort: This is grim.  I won&#39;t give up quite yet; but I will be wanting a rematch.\n\n16) TwoShort: Discover G1 Twoshort G3 Grogar\n\tJesse: Yeah, you&#39;re in a tough spot.\n\n17) Jesse: Trade B2 R2 Jesse\n\n18) TwoShort: Build G1 Twoshort\n\n19) Jesse: Trade R2 G2 Jesse\n\n20) TwoShort: Discover G1 Twoshort B3 Bluestar\n\tJesse: Ack!  I hate wasting a move like that.\n\n21) Jesse: Discover Y2 Jesse G3 Hulk\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild R1 Twoshort\n\n23) Jesse: Build R1 Jesse\n\n24) TwoShort: Trade G2 Y2 Bluestar\n\tJesse: It looks like you may be turning the tables, here.\n\n25) Jesse: Discover G2 Jesse Y3 Yolk\n\tTwoShort: I&#39;m feeling a bit less doomed\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n27) Jesse: Build Y1 Jesse\n\n28) TwoShort: Trade Y2 B2 Bluestar\n\n29) Jesse: Move R2 Jesse Grogar\n\tTwoShort: This getting to that complexity level where I&#39;m always sure I&#39;m missing something \n\tJesse: I&#39;m definitely going to need to think about this one...\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\n\n31) Jesse: Move Y1 Jesse Bluestar\nCatastrophe Bluestar Y\n\tJesse: I&#39;m sorry, that&#39;s not allowed.\n\n32) TwoShort: Trade G2 Y2 Bluestar\n\n33) Jesse: Build G2 Yolk\n\n34) TwoShort: Move G1 Twoshort Yolk\n\n35) Jesse: Attack G1 Grogar\n\n36) TwoShort: Sacrifice G1 Bluestar\nBuild G1 Yolk\nCatastrophe Yolk Green\n\n37) Jesse: Build G1 Grogar\n\n38) TwoShort: Trade B2 G2 Bluestar\n\n39) Jesse: Build B2 Jesse\n\n40) TwoShort: Sacrifice Y2 Bluestar\nMove G2 Bluestar Jesse\nMove G2 Jesse Grogar\nCatastrophe Grogar Green\n\n41) Jesse: Build R2 Jesse\n\tJesse: Baboooom!  What a violent little game we&#39;ve got going here.  Looks like the tables are tipping back my way for the moment.\n\n42) TwoShort: Discover R1 Twoshort G3 Greenland\n\n43) Jesse: Move R2 Jesse Hulk\n\tTwoShort: Things are definitely tipped your way, but I think less so than before the disasters.\n\n44) TwoShort: Build R2 Greenland\n\n45) Jesse: Move B1 Jesse Hulk\n\n46) TwoShort: Move Y1 Twoshort Greenland\n\n47) Jesse: Build B2 Hulk\n\n48) TwoShort: Build G1 Twoshort\n\n49) Jesse: Trade B2 G2 Hulk\n\n50) TwoShort: Discover R1 Greenland Y1 Yonder\n\n51) Jesse: Discover B2 Jesse Y3 Sulk\n\n52) TwoShort: Sacrifice G3 Twoshort\nBuild R2 Greenland\nBuild R3 Twoshort\nBuild R3 Yonder\n\n53) Jesse: Sacrifice G2 Hulk\nBuild B2 Sulk\nBuild R3 Jesse\n\n54) TwoShort: Move R3 Yonder Hulk\n\n55) Jesse: Sacrifice Y2 Hulk\nMove B1 Hulk Twoshort\nMove B2 Sulk Twoshort\n\n56) TwoShort: Sacrifice R2 Greenland\nAttack R2N Hulk\nAttack B2N Twoshort\n\n57) Jesse: Move B2 Sulk Twoshort\nCatastrophe Twoshort B\n\n58) TwoShort: Build R2 Greenland\n\n59) Jesse: Discover R1 Jesse G3 Flounder\n\n60) TwoShort: Discover R2 Greenland B1 Lupus\n\n61) Jesse: Build Y1 Jesse\n\n62) TwoShort: Build Y2 Greenland\n\n63) Jesse: Move Y3 Jesse Flounder\n\n64) TwoShort: Move R2 Greenland Jesse\n\n65) Jesse: Attack R2 Jesse\n\n66) TwoShort: Sacrifice Y2 Greenland\nMove R2 Hulk Jesse\nMove R3 Hulk Jesse\nCatastrophe Jesse Red\n\n67) Jesse: Build Y2 Jesse\n\n68) TwoShort: Build Y2 Greenland\n\n69) Jesse: Trade Y2 R2 Jesse\n\n70) TwoShort: Sacrifice Y2 Greenland\nMove R3 Twoshort Greenland\nMove R3 Greenland Jesse\n\n\tJesse: Well done.  That&#39;s what I get for pressing my luck.\n\tJesse: So ends my 24 game winning streak.  :)\n\nHomeworlds Online (SDG# 2280)\nStarted: 2006.1.23, Ended: 2006.2.10\nParticipants: cobalt (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) cobalt: Homeworld B1 G3 Y3\n\n3) Lexicon: Build Y1 Lexicon\n\n4) cobalt: Build Y1 Cobalt\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) cobalt: Build Y1 Cobalt\n\n7) Lexicon: Build G1 Lexicon\n\n8) cobalt: Trade Y3 G3 Cobalt\n\n9) Lexicon: Discover G1 Lexicon Y3 Hydrogen\n\n10) cobalt: Discover Y1 Cobalt G2 Harrison\n\tcobalt: I&#39;ll be late on this one. Maybe a couple days.\n\tLexicon: No problem.\n\n11) Lexicon: Build G2 Hydrogen\n\n\nHomeworlds Online (SDG# 2235)\nStarted: 2006.1.24, Ended: 2006.2.6\nParticipants: andylooney (S), Lexicon (N)\nWinner: andylooney\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\tLexicon: Howdy!  Happy gaming. :)\n\n3) Lexicon: Build Y1 Lexicon\n\n4) andylooney: Build Y1 Andylooney\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) Lexicon: Build G2 Lexicon\n\n8) andylooney: Build G2 Andylooney\n\n9) Lexicon: Sacrifice Y3 Lexicon\nDiscover G1 Lexicon Y3 Stage1\nDiscover G1 Stage1 Y1 Stage2\nMove G1 Stage2 Andylooney\nCatastrophe Andylooney Green\n\n10) andylooney: Trade Y3 G3 Andylooney\n\tLexicon: I&#39;ve been wondering how this would play out.\n\n11) Lexicon: Build G1 Lexicon\n\n12) andylooney: Build G1 Andylooney\n\n13) Lexicon: Trade G1 Y1 Lexicon\n\n14) andylooney: Trade G1 Y1 Andylooney\n\n15) Lexicon: Build Y1 Lexicon\n\n16) andylooney: Build Y2 Andylooney\n\n17) Lexicon: Move Y1 Lexicon Andylooney\n\n18) andylooney: Trade Y2 R2 Andylooney\n\n19) Lexicon: Trade Y1 B1 Andylooney\n\tLexicon: I thought it might turn out this way.  I&#39;m about one more shy of a variety of attacks.  Oh well.  \r\n\n\n20) andylooney: Attack B1N Andylooney\n\n\nHomeworlds Online (SDG# 2303)\nStarted: 2006.1.24, Ended: 2006.2.5\nParticipants: TwoShort (S), Personman (N)\nWinner: TwoShort\n\n1) Personman: Homeworld Y1 B3 G3\n\n2) TwoShort: Homeworld G1 B2 Y3\n\n3) Personman: Build G1 Personman\n\n4) TwoShort: Build Y1 Twoshort\n\n5) Personman: Discover G1 Personman Y2 Wtdrts\n\n6) TwoShort: Trade Y1 G1 Twoshort\n\n7) Personman: Build G2 Personman\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Personman: Trade G2 Y2 Personman\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: I&#39;m going to suggest you undo that.  I can sacrifice my Y3, move my g1 into your homeworld and cause a catastrophe to win the game.\n\tPersonman: .. right. Sorry, this is only my, uh, 2.5th game. \n\n11) Personman: Build G2 Personman\n\tTwoShort: No problem.  I make that exact error with some regularity.\n\n12) TwoShort: Build G2 Yolonda\n\tTwoShort: By the way, what does WTDRTS mean?\n\tPersonman: Where the dirt reaches the sky. It&#39;s from a They Might Be Giants song, like my user name. \r\n\n\tPersonman: Or, if you prefer, What The Dogs Rip To Shreds. Or maybe Who The Devil Remembers This Shithole? It could also be Winter: The Dark, Remote, Terrifying Star.\n\n13) Personman: Trade G2 B2 Personman\n\n14) TwoShort: Discover G1 Yolonda Y2 Yak\n\tTwoShort: I got Where&#39;s The Damn Real Time Strategy? but couldn&#39;t figure why you&#39;d be asking that...\n\n15) Personman: Build G2 Wtdrts\n\n16) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n17) Personman: Discover Y2 Personman B2 Twostar\n\n18) TwoShort: Sacrifice G2 Yolonda\nBuild Y1 Twoshort\nBuild Y3 Bluestar\n\n19) Personman: Sacrifice G2 Wtdrts\nBuild Y3 Twostar\nBuild G2 Wtdrts\n\n20) TwoShort: Trade Y3 G3 Bluestar\n\n21) Personman: Discover G1 Wtdrts Y3 Save\n\n22) TwoShort: Build G2 Bluestar\n\n23) Personman: Build G2 Save\n\n24) TwoShort: Build G3 Yak\n\n25) Personman: Move G1 Save Twoshort\n\n26) TwoShort: Trade Y1 R1 Twoshort\n\n27) Personman: Sacrifice Y3 Twostar\nMove G2 Wtdrts Save\nMove G2 Save Twoshort\nMove G2 Save Twoshort\nCatastrophe Twoshort G\n\n28) TwoShort: Move G3 Yak Personman\n\n\tPersonman: Nicely done. I felt very much like I was walking into a trap the whole time, but was too lazy/stupid to actually sit down and think about what it might have been. That&#39;s quite a nice little bind you&#39;ve got me in, too - I can&#39;t see anything you don&#39;t have covered.\n\tPersonman: Alright. I&#39;ve been looking at this for two days now, and I see absoultely no way to even prolong it much, so I shall resign. Good game!\n\nHomeworlds Online (SDG# 2278)\nVariants: &quot;Unrated&quot;\nStarted: 2006.1.25, Ended: 2006.1.31\nParticipants: Jesse (S), tendrecube (N)\nWinner: Jesse\n\n1) tendrecube: Homeworld Y2 B1 G3\n\n2) Jesse: Homeworld Y3 B2 G3\n\tJesse: Hello.  I see you have already been beaten up a bit by three of the stronger players on the server.  What I would like to do here is to give you a handicap to try to even the playing field a bit.  The way it works is, after I set up my homeworld, I&#39;ll pass a few times to give you a head start.  I&#39;ve only just started experimenting with this, so I don&#39;t have a good idea of how many times to pass to make an interesting game.  Shall we try four?\n\n3) tendrecube: Build G1 Tendrecube\n\n4) Jesse: Pass\n\ttendrecube: well as you like....\r\nI think i handle the rules...but still have some problems develloping a viable strategy...\r\nHard to hook player my place for this game...sigh..\r\n\r\nChoose the number of turn you think you&#39;re rated for buddy.\r\nI don&#39;t mind. I&#39;m happy to play anyway :-)\r\n\r\nLet&#39;s have some fun....\n\n5) tendrecube: Build G1 Tendrecube\n\tJesse: Well, that&#39;s the idea.  I don&#39;t actually know how many passes I can afford to give.  I&#39;m trying to find that out.  If four turns out to be insane, then I won&#39;t give four anymore.\n\n6) Jesse: Pass\n\ttendrecube: the advantage you give can turn to be an inconvenient for me....cause you&#39;ll have an easier acces to bigger pyramids from the reserves earlier\r\njust a thought\n\n7) tendrecube: Discover G1 Tendrecube Y3 Atomium\n\tJesse: You will have access to them as well.  I&#39;m quite sure it&#39;s not an advantage.\n\n8) Jesse: Pass\n\n9) tendrecube: Build G1 Atomium\n\tJesse: One more pass to come...\n\n10) Jesse: Pass\n\n11) tendrecube: Trade G1 B1 Tendrecube\n\tJesse: That&#39;s it.  Oh, man...  Do you hve any idea how hopeless this looks?\n\n12) Jesse: Build G1 Jesse\n\ttendrecube: i can&#39;t see the hopeless this far lol\r\nyou feel so stuck with the limitation given by the rules..\r\nThat&#39;s where the fun comes ;-)\n\n13) tendrecube: Discover G1 Atomium B1 Elfstar\n\n14) Jesse: Build G2 Jesse\n\tJesse: Don&#39;t misunderstand me.  I will enjoy the challenge of overcoming the advantage you have.  It&#39;s just a very difficult looking one.\n\tJesse: I don&#39;t know if you play Go, but it&#39;s like the first time giving someone a nine stone handicap: very intimidating.\n\n15) tendrecube: Trade G3 Y3 Tendrecube\n\ttendrecube: Oh that is an image i can clearly understand\r\n\r\n\n\n16) Jesse: Trade G2 R2 Jesse\n\ttendrecube: wasn&#39;t it a win if i moved the little G one from Elfstar to your binary homeworld?\n\ttendrecube: oops said nothing...no propulsion technology there\r\n\n\tJesse: Right, you could have destroyed me if you&#39;d had propulsion available.\n\n17) tendrecube: Move B1 Tendrecube Atomium\n\n18) Jesse: Build G2 Jesse\n\n19) tendrecube: Build B2 Atomium\n\n20) Jesse: Trade G2 B2 Jesse\n\n21) tendrecube: Move B2 Atomium Elfstar\n\n22) Jesse: Discover B2 Jesse Y1 Khoomei\n\n23) tendrecube: Build B3 Elfstar\n\n24) Jesse: Sacrifice G1 Jesse\nBuild B3 Khoomei\n\n25) tendrecube: Build B3 Atomium\n\n26) Jesse: Trade B3 G3 Khoomei\n\n27) tendrecube: Discover B1 Atomium G1 Paradise\n\n28) Jesse: Build B3 Khoomei\n\n29) tendrecube: Move G1 Atomium Tendrecube\n\n30) Jesse: Move B3 Khoomei Atomium\n\n31) tendrecube: Sacrifice Y3 Tendrecube\nMove B3 Elfstar Jesse\nMove B2 Elfstar Jesse\nMove B1 Paradise Jesse\nCatastrophe Jesse B\n\n32) Jesse: Move B3 Atomium Tendrecube\n\tJesse: You will find that such a move is too aggressive, since it leaves you with no defenses of your own.\n\n33) tendrecube: Build G1 Elfstar\n\n34) Jesse: Sacrifice R2 Jesse\nAttack G1 Tendrecube\nPass\n\ttendrecube: indeed it sounds aggressive...\r\nI&#39;m exploring the strategies..\r\n\n\tJesse: Another thing is that you need to be aware of the red ships your opponent can sacrifice.  Anyway, thanks for the game.  Keep playing, you&#39;ll get a handle on it.\n\n\nHomeworlds Online (SDG# 2313)\nStarted: 2006.1.26, Ended: 2006.1.31\nParticipants: GigaClon (S), tendrecube (N)\nWinner: tendrecube\n\n1) tendrecube: Homeworld G3 Y2 B3\n\n2) GigaClon: Homeworld G1 Y3 B3\n\n3) tendrecube: Build B1 Tendrecube\n\n4) GigaClon: Build B1 Gigaclon\n\n5) tendrecube: Trade B1 G1 Tendrecube\n\n6) GigaClon: Trade B1 G1 Gigaclon\n\n7) tendrecube: Build G2 Tendrecube\n\n8) GigaClon: Discover G1 Gigaclon B2 Kagami\n\n9) tendrecube: Trade G1 Y1 Tendrecube\n\n10) GigaClon: Build G1 Kagami\n\n11) tendrecube: Discover Y1 Tendrecube R1 Atomium\n\n12) GigaClon: Trade G1 B1 Kagami\n\n13) tendrecube: Sacrifice G2 Tendrecube\nBuild Y1 Atomium\nBuild Y1 Atomium\n\n14) GigaClon: Build B1 Gigaclon\n\n15) tendrecube: Build B1 Tendrecube\n\n16) GigaClon: Build B2 Kagami\n\n17) tendrecube: Discover Y1 Atomium G2 Elfstar\n\n18) GigaClon: Trade B2 Y2 Kagami\n\n19) tendrecube: Trade B3 G3 Tendrecube\n\n20) GigaClon: Build Y2 Kagami\n\n21) tendrecube: Sacrifice G3 Tendrecube\nBuild Y3 Elfstar\nBuild Y3 Elfstar\nBuild B2 Tendrecube\n\n22) GigaClon: Discover Y2 Kagami G1 Xuxa\n\n23) tendrecube: Discover Y1 Atomium G2 Paradise\n\n24) GigaClon: Move Y2 Xuxa Elfstar\nCatastrophe Elfstar Yellow\n\n25) tendrecube: Build Y1 Paradise\n\n26) GigaClon: Sacrifice Y2 Kagami\nDiscover G1 Kagami R1 Oasis\nMove B1 Kagami Gigaclon\n\n27) tendrecube: Build Y2 Paradise\n\n28) GigaClon: Discover B1 Gigaclon Y2 Xuxa\n\n29) tendrecube: Discover Y1 Atomium G2 Elfstar\n\tGigaClon: im totally lost\n\ttendrecube: Maybe loosing your mind but not the game....\r\nYou broke down one of my attack already....\r\nyou&#39;re doin good so far\n\n30) GigaClon: Move B1 Xuxa Oasis\n\n31) tendrecube: Move Y1 Paradise Gigaclon\n\n32) GigaClon: Build B2 Oasis\n\n33) tendrecube: Sacrifice Y2 Paradise\nMove Y1 Elfstar Gigaclon\nMove Y1 Paradise Gigaclon\nCatastrophe Gigaclon Y\n\n34) GigaClon: Trade B1 G1 Gigaclon\n\n35) tendrecube: Trade B2 G2 Tendrecube\n\n36) GigaClon: Trade B2 R2 Oasis\n\n37) tendrecube: Move G2 Tendrecube Gigaclon\n\tGigaClon: im limping along here now\n\n38) GigaClon: Trade G1 B1 Gigaclon\n\n39) tendrecube: Build G1 Gigaclon\n\n\tGigaClon: good game\n\nHomeworlds Online (SDG# 2349)\nStarted: 2006.1.28, Ended: 2006.2.12\nParticipants: Uglyfoot (S), Calavera (N)\nWinner: Uglyfoot\n\n1) Calavera: Homeworld B2 Y3 G3\n\n2) Uglyfoot: Homeworld B2 Y1 G3\n\tCalavera: Good luck.\n\n3) Calavera: Build G1 Calavera\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Calavera: Trade G1 Y1 Calavera\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) Calavera: Build G1 Calavera\n\n8) Uglyfoot: Trade G1 B1 Uglyfoot\n\n9) Calavera: Discover G1 Calavera B1 Camelot\n\tCalavera: d g1 calavera b1 Camelot\n\n10) Uglyfoot: Discover B1 Uglyfoot G3 Industry\n\n11) Calavera: Build G1 Calavera\n\n12) Uglyfoot: Build G2 Uglyfoot\n\n13) Calavera: Sacrifice G3 Calavera\nBuild G2 Camelot\nBuild G2 Camelot\nBuild G3 Calavera\n\n14) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild B1 Industry\nBuild B2 Industry\nBuild G3 Uglyfoot\n\n15) Calavera: Trade G1 R1 Calavera\n\n16) Uglyfoot: Sacrifice B2 Industry\nTrade G2 R2 Uglyfoot\nTrade B1 Y1 Industry\n\n17) Calavera: Trade G2 B2 Camelot\n\n18) Uglyfoot: Build Y2 Industry\n\n19) Calavera: Trade G2 Y2 Camelot\n\n20) Uglyfoot: Trade Y2 R2 Industry\n\n21) Calavera: Discover B2 Camelot Y3 Lyonesse\n\n22) Uglyfoot: Move R2 Uglyfoot Lyonesse\n\n23) Calavera: Sacrifice R1 Calavera\nAttack R2 Lyonesse\n\n24) Uglyfoot: Build Y2 Industry\n\n25) Calavera: Build Y2 Camelot\n\n26) Uglyfoot: Move Y2 Industry Camelot\n\n27) Calavera: Sacrifice Y2 Camelot\nMove G1 Camelot Industry\nMove G1 Industry Uglyfoot\n\n28) Uglyfoot: Sacrifice R2 Industry\nAttack Y2 Camelot\nAttack G1 Uglyfoot\n\n29) Calavera: Trade B2 G2 Lyonesse\n\n30) Uglyfoot: Sacrifice G1 Uglyfoot\nBuild Y2 Camelot\n\n31) Calavera: Move Y1 Calavera Camelot\nCatastrophe Camelot Y\n\n32) Uglyfoot: Trade G1 R1 Uglyfoot\n\n33) Calavera: Build G1 Calavera\n\n34) Uglyfoot: Build G1 Uglyfoot\n\n35) Calavera: Trade G1 B1 Calavera\n\n36) Uglyfoot: Move G1 Uglyfoot Industry\n\n37) Calavera: Discover B1 Calavera G1 Tintagel\n\n38) Uglyfoot: Build G1 Industry\n\n39) Calavera: Build G2 Calavera\n\n40) Uglyfoot: Build G2 Uglyfoot\n\n41) Calavera: Build B1 Tintagel\n\n42) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild B2 Industry\nBuild R1 Uglyfoot\n\n43) Calavera: Trade G2 Y2 Calavera\n\n44) Uglyfoot: Discover B1 Industry Y1 Gateway\n\n45) Calavera: Sacrifice Y2 Calavera\nMove G2 Lyonesse Gateway\nMove G2 Gateway Industry\nCatastrophe Industry G\n\n46) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n47) Calavera: Trade B1 Y1 Tintagel\n\n48) Uglyfoot: Build Y2 Uglyfoot\n\n49) Calavera: Build Y2 Tintagel\n\n50) Uglyfoot: Discover Y2 Uglyfoot G3 Industry2\n\tCalavera: Sorry. That one was a typo\n\tUglyfoot: No problem.  I&#39;ve been know to use the feature...\r\n\n\n51) Calavera: Trade Y1 G1 Tintagel\n\n52) Uglyfoot: Build G1 Uglyfoot\n\n53) Calavera: Build G2 Calavera\n\n54) Uglyfoot: Move G1 Uglyfoot Industry2\n\n55) Calavera: Move G1 Tintagel Lyonesse\n\n56) Uglyfoot: Move G1 Industry2 Gateway\n\n57) Calavera: Build G2 Lyonesse\n\n58) Uglyfoot: Build G2 Gateway\n\n59) Calavera: Trade G2 R2 Calavera\n\n60) Uglyfoot: Sacrifice G2 Gateway\nBuild Y1 Uglyfoot\nBuild Y3 Industry2\n\n61) Calavera: Move Y2 Tintagel Lyonesse\n\n62) Uglyfoot: Sacrifice Y2 Industry2\nMove Y1 Uglyfoot Lyonesse\nMove Y2 Uglyfoot Lyonesse\nCatastrophe Lyonesse Y\n\n\tCalavera: Good game, I think I&#39;ll admit defeat now.\n\nHomeworlds Online (SDG# 2324)\nStarted: 2006.1.28, Ended: 2006.2.14\nParticipants: Uglyfoot (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld G3 B2 Y3\n\n3) jeep: Build G1 Jeep\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) jeep: Build G1 Jeep\n\n6) Uglyfoot: Build Y1 Uglyfoot\n\n7) jeep: Trade G3 Y3 Jeep\n\n8) Uglyfoot: Discover Y1 Uglyfoot B1 Aleph\n\n9) jeep: Build G1 Jeep\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) jeep: Discover G1 Jeep Y3 Stashed\n\n12) Uglyfoot: Trade Y2 G2 Uglyfoot\n\tjeep: Amazing how big of a mess I can make in just a few moves.  ;)\n\n13) jeep: Build G2 Stashed\n\n14) Uglyfoot: Move G2 Uglyfoot Aleph\n\n15) jeep: Trade G1 R1 Jeep\n\n16) Uglyfoot: Build Y2 Aleph\n\n17) jeep: Move G2 Stashed Aleph\n\n18) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n19) jeep: Sacrifice R1 Jeep\nAttack G2S Aleph\n\n20) Uglyfoot: Build R1 Uglyfoot\n\n21) jeep: Trade G2 Y2 Aleph\n\n22) Uglyfoot: Move R1 Uglyfoot Aleph\n\n23) jeep: Sacrifice G2 Aleph\nBuild Y1 Aleph\nBuild Y2 Jeep\nCatastrophe Aleph Y\n\n24) Uglyfoot: Build Y1 Uglyfoot\n\n25) jeep: Trade Y2 G2 Jeep\n\n26) Uglyfoot: Move Y1 Uglyfoot Aleph\n\n27) jeep: Build G1 Stashed\n\n28) Uglyfoot: Move R1 Aleph Stashed\n\n29) jeep: Trade G2 R2 Jeep\n\n30) Uglyfoot: Attack G1 Stashed\n\n31) jeep: Sacrifice R2 Jeep\nAttack R1S Stashed\nAttack G1S Stashed\n\n32) Uglyfoot: Build Y1 Uglyfoot\n\n33) jeep: Build G2 Jeep\n\n34) Uglyfoot: Build Y2 Uglyfoot\n\n35) jeep: Build G2 Stashed\n\n36) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n37) jeep: Trade G2 B2 Jeep\n\n38) Uglyfoot: Build G2 Uglyfoot\n\n39) jeep: Sacrifice Y3 Jeep\nMove G1 Stashed Aleph\nMove G1 Aleph Uglyfoot\nMove G2 Stashed Aleph\nCatastrophe Uglyfoot G\n\n40) Uglyfoot: Trade Y1 G1 Uglyfoot\n\n41) jeep: Build G2 Aleph\n\n42) Uglyfoot: Build G2 Uglyfoot\n\n43) jeep: Build G3 Stashed\n\n44) Uglyfoot: Discover G1 Uglyfoot R3 Bypass\n\n45) jeep: Move G3 Stashed Uglyfoot\n\n46) Uglyfoot: Build R1 Uglyfoot\n\n47) jeep: Sacrifice R1 Stashed\nAttack G2S Uglyfoot\n\n48) Uglyfoot: Attack G2 Uglyfoot\n\n49) jeep: Sacrifice B2 Jeep\nTrade G2 R2 Aleph\nTrade G1 R1 Jeep\n\tjeep: LOL, I&#39;m dumb.\n\n50) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove G2 Uglyfoot Bypass\nMove G2 Bypass Jeep\n\n51) jeep: Sacrifice R2 Aleph\nAttack R1S Uglyfoot\nAttack R1S Uglyfoot\n\tUglyfoot: It&#39;s all over but planting the flag...\n\tjeep: Yep, planting now.\n\n\nHomeworlds Online (SDG# 2361)\nStarted: 2006.1.29, Ended: 2006.2.12\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B2 R1 G3\n\n2) jeep: Homeworld B1 G2 Y3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build Y1 Jeep\n\n5) sketchwick: Trade G1 Y1 Sketchwick\n\n6) jeep: Trade Y1 G1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build Y1 Jeep\n\n9) sketchwick: Discover G1 Sketchwick Y3 Sun\n\n10) jeep: Discover G1 Jeep Y3 Beam\n\n11) sketchwick: Build G1 Sun\n\n12) jeep: Build G2 Beam\n\n13) sketchwick: Build G2 Sketchwick\n\n14) jeep: Move G1 Beam Sketchwick\n\n15) sketchwick: Trade G3 R3 Sketchwick\n\n16) jeep: Build G3 Sketchwick\n\n17) sketchwick: Attack G3 Sketchwick\n\n18) jeep: Build G3 Sketchwick\nCatastrophe Sketchwick G\n\n19) sketchwick: Move R3 Sketchwick Beam\n\n20) jeep: Move G2 Beam Sketchwick\n\n21) sketchwick: Move R3 Beam Sketchwick\n\n22) jeep: Sacrifice G2 Sketchwick\nBuild Y1 Jeep\nPass\n\n23) sketchwick: Move G1 Sun Sketchwick\n\n24) jeep: Trade Y1 R1 Jeep\n\n25) sketchwick: Build G1 Sketchwick\n\n26) jeep: Trade Y3 G3 Jeep\n\n27) sketchwick: Build G2 Sun\n\n28) jeep: Move R1 Jeep Sun\n\tjeep: *sigh* How did I make such a mess?\n\tjeep: My last move was about the worst possible...\n\tsketchwick: When you moved into my system I thought you might force draw where we just capture back and forth...which was fine for me at the time...but I certainly do feel good now...stop making me overconfident!\n\tjeep: HAHA!  NOW you&#39;re in trouble.  I&#39;ll take advantage of your hubris to win $20000!\n\n29) sketchwick: Move G1 Sun Jeep\n\n30) jeep: Trade G3 R3 Jeep\n\tsketchwick: We both know you are way too nice for that\n\n31) sketchwick: Sacrifice G2 Sun\nBuild G2 Jeep\nBuild G2 Jeep\nCatastrophe Jeep Green\n\tjeep: I SHOULD just concede, I&#39;m sure...  This sucks.\n\n32) jeep: Trade Y1 G1 Jeep\n\n33) sketchwick: Move R3 Sketchwick Sun\n\n34) jeep: Move R1 Sun Sketchwick\n\n35) sketchwick: Attack R1 Sketchwick\n\n\tjeep: My only hope was that you screw up.  ;)\n\nHomeworlds Online (SDG# 2380)\nStarted: 2006.2.1, Ended: 2006.2.9\nParticipants: TwoShort (S), MatrixFrog (N)\nWinner: TwoShort\n\n1) MatrixFrog: Homeworld G1 Y3 B3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) TwoShort: Build G1 Twoshort\n\n5) MatrixFrog: Build B1 Matrixfrog\n\n6) TwoShort: Build G1 Twoshort\n\n7) MatrixFrog: Trade B3 G3 Matrixfrog\n\n8) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n9) MatrixFrog: Discover B1 Matrixfrog Y2 Jeremy\n\n10) TwoShort: Build G2 Yolonda\n\n11) MatrixFrog: Build G2 Matrixfrog\n\n12) TwoShort: Discover G2 Yolonda Y2 Yak\n\n13) MatrixFrog: Move G3 Matrixfrog Jeremy\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Yak\nBuild G3 Twoshort\n\n15) MatrixFrog: Build B2 Matrixfrog\n\n16) TwoShort: Move G3 Yak Matrixfrog\n\n17) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild G2 Jeremy\nBuild B2 Jeremy\n\n18) TwoShort: Trade G3 R3 Twoshort\n\n19) MatrixFrog: Move G3 Jeremy Matrixfrog\n\tMatrixFrog: Aw, crap.\n\tMatrixFrog: Sometimes I just don&#39;t pay attention\n\tTwoShort: Yeah... leaving your homeworld without a 3 pointer is pretty risky...  Anyway, I&#39;ll be happy to play again if you want a rematch.\n\tMatrixFrog: Not at the moment but sometime within a few weeks probably.\n\n20) TwoShort: Sacrifice R3 Twoshort\nAttack G3 Matrixfrog\nAttack B2 Matrixfrog\nAttack B1 Matrixfrog\n\n\nHomeworlds Online (SDG# 2419)\nStarted: 2006.2.3, Ended: 2006.2.15\nParticipants: Uglyfoot (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 G2 Y3\n\tJesse: Hello, there!\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\n3) Jesse: Build Y1 Jesse\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Jesse: Build Y1 Jesse\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Forward\n\n7) Jesse: Discover Y1 Jesse B3 Serenity\n\n8) Uglyfoot: Build G1 Forward\n\n9) Jesse: Build Y2 Jesse\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) Jesse: Trade Y2 G2 Jesse\n\n12) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Forward\n\n13) Jesse: Move G2 Jesse Serenity\n\n14) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n15) Jesse: Move G2 Serenity Forward\nCatastrophe Forward G\n\n16) Uglyfoot: Build Y2 Uglyfoot\n\n17) Jesse: Discover Y1 Jesse G3 Ariel\n\n18) Uglyfoot: Discover G1 Uglyfoot B2 Nexus\n\n19) Jesse: Build Y2 Jesse\n\n20) Uglyfoot: Move Y2 Uglyfoot Nexus\n\n21) Jesse: Trade Y2 R2 Jesse\n\n22) Uglyfoot: Build Y2 Nexus\n\n23) Jesse: Build Y3 Jesse\n\n24) Uglyfoot: Trade Y2 R2 Nexus\n\n25) Jesse: Move Y3 Jesse Serenity\n\n26) Uglyfoot: Build G1 Uglyfoot\n\n27) Jesse: Trade Y3 G3 Serenity\n\n28) Uglyfoot: Build Y2 Nexus\n\n29) Jesse: Build Y3 Serenity\n\n30) Uglyfoot: Build Y3 Uglyfoot\n\n31) Jesse: Sacrifice Y3 Serenity\nMove Y1 Serenity Nexus\nMove Y1 Nexus Uglyfoot\nMove G3 Serenity Nexus\nCatastrophe Uglyfoot Y\n\n32) Uglyfoot: Sacrifice Y2 Nexus\nMove Y2 Nexus Ariel\nMove R2 Nexus Ariel\n\n33) Jesse: Move Y1 Ariel Nexus\n\n34) Uglyfoot: Trade G1 R1 Uglyfoot\n\n35) Jesse: Trade G3 R3 Nexus\n\n36) Uglyfoot: Build R1 Uglyfoot\n\n37) Jesse: Attack G1 Nexus\n\n38) Uglyfoot: Build Y1 Ariel\n\n39) Jesse: Build G1 Nexus\n\n40) Uglyfoot: Build G1 Uglyfoot\n\n41) Jesse: Discover G1 Nexus Y1 Miranda\n\n42) Uglyfoot: Move R2 Ariel Miranda\n\n43) Jesse: Sacrifice Y3 Jesse\nMove G1 Miranda Uglyfoot\nMove G1 Nexus Uglyfoot\nMove R3 Nexus Uglyfoot\nCatastrophe Uglyfoot G\n\tJesse: That&#39;s a really irritating play (good for you!), but it has a serious flaw...\n\n44) Uglyfoot: Move Y2 Ariel Jesse\n\tJesse: (Hopefully I haven&#39;t missed anything...)\n\n45) Jesse: Attack Y2 Jesse\n\tUglyfoot: It pretty much looks like it.\r\n\n\n46) Uglyfoot: Move R2 Miranda Uglyfoot\n\n47) Jesse: Pass\nCatastrophe Uglyfoot R\n\tUglyfoot: Your choice of endings.\r\n\n\tJesse: Thanks for the game.\n\n\nHomeworlds Online (SDG# 2425)\nStarted: 2006.2.5, Ended: 2006.2.10\nParticipants: andylooney (S), Uglyfoot (N)\nWinner: andylooney\n\n1) Uglyfoot: Homeworld Y1 B2 G3\n\n2) andylooney: Homeworld G2 B3 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) andylooney: Build Y1 Andylooney\n\n5) Uglyfoot: Discover G1 Uglyfoot B3 Omega\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) andylooney: Build G2 Andylooney\n\n9) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n10) andylooney: Discover G2 Andylooney Y1 Different\n\n11) Uglyfoot: Build Y2 Uglyfoot\n\n12) andylooney: Build Y2 Andylooney\n\n13) Uglyfoot: Trade Y2 B2 Uglyfoot\n\n14) andylooney: Build Y2 Andylooney\n\n15) Uglyfoot: Build Y2 Uglyfoot\n\n16) andylooney: Discover Y2 Andylooney G1 Gumby\n\n17) Uglyfoot: Build G2 Uglyfoot\n\n18) andylooney: Build G3 Different\n\n19) Uglyfoot: Build G3 Omega\n\n20) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild Y3 Andylooney\nBuild Y3 Gumby\n\n21) Uglyfoot: Move Y1 Uglyfoot Omega\n\n22) andylooney: Trade Y2 R2 Andylooney\n\n23) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Omega\nBuild B1 Uglyfoot\n\n24) andylooney: Sacrifice Y2 Gumby\nMove Y3 Gumby Omega\nMove Y3 Omega Uglyfoot\n\n25) Uglyfoot: Trade G3 R3 Omega\n\n26) andylooney: Sacrifice R2 Andylooney\nAttack G3N Uglyfoot\nAttack G2N Uglyfoot\n\n27) Uglyfoot: Sacrifice Y2 Omega\nMove R3 Omega Different\nMove R3 Different Andylooney\n\n28) andylooney: Trade G3 R3 Uglyfoot\n\n29) Uglyfoot: Attack G1 Andylooney\n\n30) andylooney: Sacrifice R3 Uglyfoot\nAttack Y2N Uglyfoot\nAttack R3N Andylooney\nAttack G1N Andylooney\n\n31) Uglyfoot: Move Y1 Omega Uglyfoot\nCatastrophe Uglyfoot Y\n\tUglyfoot: Beat me by one turn.  Thanks for showing me another way to win.\n\n32) andylooney: Sacrifice R3 Andylooney\nAttack B2N Uglyfoot\nAttack B1N Uglyfoot\nPass\n\tandylooney: It&#39;s been a great game. Thanks for playing!\n\tUglyfoot: silly question.  why didn&#39;t you take over the two blue in the uglyfoot system and win last turn?\n\n\tandylooney: And leave invaders in my homeworld? That&#39;s not a tidy ending... Thanks for the game!\n\nHomeworlds Online (SDG# 2434)\nStarted: 2006.2.7, Ended: 2007.8.24\nParticipants: JIMBO (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tJIMBO: Is this the real Andy Looney?\n\tandylooney: It certainly is. Hi there!\n\n2) JIMBO: Homeworld B2 G1 R3\n\n3) andylooney: Build Y1 Andylooney\n\tJIMBO: Hello! I have to say - I am totally crazy for your games!  I found Fluxx a few years back and finally bought Icehouse pieces last month.  I&#39;m hooked!\n\tandylooney: Cool! That&#39;s great! Thanks for playing my games... with me!\n\n4) JIMBO: Build R1 Jimbo\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) JIMBO: Build R1 Jimbo\n\n7) andylooney: Build Y1 Andylooney\n\n8) JIMBO: Trade R1 Y1 Jimbo\n\n9) andylooney: Trade Y1 R1 Andylooney\n\n10) JIMBO: Build Y1 Jimbo\n\n11) andylooney: Build G1 Andylooney\n\n12) JIMBO: Trade R3 G3 Jimbo\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) JIMBO: Trade Y1 B1 Jimbo\n\tJIMBO: You alive, Andy?\n\tandylooney: yup, but I&#39;ve been out of town. Sorry for the delay!\n\n15) andylooney: Trade G1 B1 Andylooney\n\n16) JIMBO: Build Y1 Jimbo\n\tJIMBO: No problem!  Say, this weekend my friends and I were playing a bunch of Binary (and Trinary) Homeworlds and we ran into a couple of grey areas - d&#39;you think you could settle a couple of rule disputes for us?\n\tandylooney: certainly.\r\n\n\tJIMBO: When you sacrifice a ship - 1. if it&#39;s a green ship, does it go back into the stash before you pick the pieces to synthesize, and 2. if sacrificed ship is the last ship in a system, does the system still exist until the end of the turn, or is it immediately dissolved?\n\tandylooney: 1.) Yes, a sacrificed ship goes back into the bank before any new pieces are grown.\n\tandylooney: 2.) At the instant when the last ship leaves a star system, the piece goes into the bank.\n\tandylooney: These 2 points are vital to the strategy known as investing, i.e. parking a green at a large yellow then growing the system marker as a ship when yellow is otherwise exhausted.\n\tandylooney: I&#39;m happy to say that when I discovered this system wasn&#39;t handling this properly, Aaron fixed it right away!\n\tJIMBO: And one other thing - if you have the yellow system, a small yellow ship, and a large green ship, and you sacrifice the large green, can you grow green ships (with that sacrifice action) in that system, or is yellow the only option?\n\tandylooney: Yellow is the only option. You must have a ship of the type you want to grow in the system in order to make more of them.\n\n17) andylooney: Build B2 Andylooney\n\n18) JIMBO: Build B2 Jimbo\n\tJIMBO: Right on!\n\n19) andylooney: Trade B2 G2 Andylooney\n\n20) JIMBO: Discover B2 Jimbo Y3 Kwva\n\n21) andylooney: Discover G2 Andylooney B3 Bigbluefrog\n\n22) JIMBO: Move Y1 Jimbo Kwva\n\n23) andylooney: Discover B1 Andylooney G3 Garden\n\n24) JIMBO: Discover B1 Jimbo G3 Hyphy\n\n25) andylooney: Build Y1 Andylooney\n\n26) JIMBO: Build Y2 Jimbo\n\tandylooney: Hey Jimbo! Very sorry for the long delay!\n\n27) andylooney: Move Y1 Andylooney Garden\n\tJIMBO: I&#39;m not sweating it - it was my spring break anyway, I was trying to spend some time away from the &#39;puter.\n\n28) JIMBO: Sacrifice G3 Jimbo\nBuild B2 Hyphy\nBuild B3 Hyphy\nBuild B3 Kwva\n\n29) andylooney: Sacrifice G2 Bigbluefrog\nBuild B3 Garden\nBuild Y2 Garden\n\n30) JIMBO: Sacrifice Y2 Jimbo\nMove B2 Hyphy Jimbo\nMove B2 Jimbo Garden\n\n31) andylooney: Sacrifice Y2 Garden\nMove B3 Garden Jimbo\nDiscover Y1 Garden G2 Greendome\n\n32) JIMBO: Sacrifice B2 Garden\nTrade B2 Y2 Kwva\nTrade Y1 R1 Kwva\n\n33) andylooney: Build R2 Andylooney\n\n34) JIMBO: Sacrifice Y2 Kwva\nMove B3 Hyphy Jimbo\nMove B1 Hyphy Jimbo\nCatastrophe Jimbo Blue\n\tJIMBO: Oh, snake! Nice move.\n\n35) andylooney: Move R2 Andylooney Clampett\n\n36) JIMBO: Move B3 Kwva Jimbo\n\n37) andylooney: Build R2 Andylooney\n\tJIMBO: Hey Andy, sorry for the huge wait - I just turned in my 107-page research paper yesterday!!\n\tandylooney: Congratulations! (And don&#39;t worry about being slow, I&#39;m way late on most of my moves too!)\n\n\nHomeworlds Online (SDG# 2345)\nVariants: &quot;Sinister&quot;\nStarted: 2006.2.8, Ended: 2006.3.13\nParticipants: mneme (S), Lexicon (W), Uglyfoot (N), Kermit (E)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld Y1 B2 G3\n\n2) Kermit: Homeworld G2 B3 Y3\n\n3) mneme: Homeworld Y3 G1 B3\n\n4) Lexicon: Homeworld G1 B2 Y3\n\tLexicon: I wonder if player 4 doesn&#39;t have too much advantage in sinister for being able to place himself one jump from their target.\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) Kermit: Build Y1 Kermit\n\n7) mneme: Build B1 Mneme\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) Kermit: Trade Y1 G1 Kermit\n\n11) mneme: Build B1 Mneme\n\n12) Lexicon: Build Y1 Lexicon\n\n13) Uglyfoot: Discover G1 Uglyfoot B3 Commerce\n\n14) Kermit: Build G2 Kermit\n\n15) mneme: Discover B1 Mneme Y2 Diamond\n\n16) Lexicon: Trade Y3 G3 Lexicon\n\n17) Uglyfoot: Build G2 Commerce\n\n18) Kermit: Build Y1 Kermit\n\n19) mneme: Build B1 Mneme\n\tUglyfoot: I will be glad to take any assistance defending myself from the sinister, Lexicon.  (nice choice by the way)\n\n20) Lexicon: Discover Y1 Lexicon B3 General\n\n21) Uglyfoot: Trade G1 Y1 Commerce\n\n22) Kermit: Discover Y1 Kermit B1 E0143\n\n23) mneme: Discover B1 Mneme G2 Jade\n\n24) Lexicon: Build Y2 Lexicon\n\n25) Uglyfoot: Build Y2 Commerce\n\n26) Kermit: Move G1 Kermit E0143\n\n27) mneme: Build B1 Jade\n\n28) Lexicon: Move Y2 Lexicon General\n\n29) Uglyfoot: Move G1 Uglyfoot General\n\n30) Kermit: Build Y2 E0143\n\n31) mneme: Build B2 Jade\n\n32) Lexicon: Trade Y2 G2 General\n\n33) Uglyfoot: Build G1 Uglyfoot\n\n34) Kermit: Trade Y2 B2 E0143\n\n35) mneme: Trade B2 Y2 Jade\n\n36) Lexicon: Move G2 General Uglyfoot\n\n37) Uglyfoot: Trade G3 R3 Uglyfoot\n\n38) Kermit: Build Y2 E0143\n\n39) mneme: Trade B3 G3 Mneme\n\n40) Lexicon: Sacrifice G2 Uglyfoot\nBuild Y2 General\nBuild Y3 Lexicon\n\n41) Uglyfoot: Build G2 Uglyfoot\n\n42) Kermit: Sacrifice Y2 E0143\nMove G1 E0143 Diamond\nMove G1 Diamond Mneme\n\n43) mneme: Trade G3 R3 Mneme\n\tLexicon: Well.  Nevermind then.\n\n44) Lexicon: Trade Y2 R2 General\n\n45) Uglyfoot: Build G3 Commerce\n\n46) Kermit: Build G3 Kermit\n\n47) mneme: Attack G1E Mneme\n\n48) Lexicon: Attack G1N General\n\n49) Uglyfoot: Sacrifice Y2 Commerce\nMove G2 Commerce E0143\nMove G2 E0143 Kermit\nCatastrophe Kermit G\n\n50) Kermit: Trade B2 G2 E0143\n\tmneme: Hmm.  Lex, unless you can do something, I think Uglyfoot&#39;s just going to win.\r\n\n\n51) mneme: Build B2 Jade\n\tLexicon: That&#39;s some trouble all right.  Got a few rounds left though...\n\n52) Lexicon: Build G2 General\n\tUglyfoot: Quick tell me how to do it...\n\n53) Uglyfoot: Move G1 Uglyfoot Kermit\n\tmneme: UF: you got the first part well enough -- I think you&#39;re doing fine enough on your own.\n\n54) Kermit: Move G2 E0143 Kermit\n\n55) mneme: Build B2 Mneme\n\n56) Lexicon: Trade G2 B2 General\n\n57) Uglyfoot: Sacrifice G3 Commerce\nBuild G2 Kermit\nBuild G2 Kermit\nBuild G3 Uglyfoot\nCatastrophe Kermit G\n\n58) Kermit: Pass\n\n59) mneme: Sacrifice Y2 Jade\nMove B1 Jade General\nMove B1 Jade General\nCatastrophe General B\n\n60) Lexicon: Discover Y1 Lexicon G3 Bio\n\n61) Uglyfoot: Move R3 Uglyfoot Kermit\n\n62) Kermit: Move Y1 E0143 Kermit\n\tKermit: dead in the water :{P}\n\n63) mneme: Build B1 Jade\n\n64) Lexicon: Move Y1 Bio Uglyfoot\n\tLexicon: Hm... Ouch.\n\n65) Uglyfoot: Attack Y3E Kermit\n\n66) Kermit: Trade Y1 G1 Kermit\n\n67) mneme: Trade B2 Y2 Jade\n\tmneme: it&#39;s over.\n\n68) Lexicon: Sacrifice G3 Lexicon\nBuild Y1 Uglyfoot\nBuild Y1 Uglyfoot\nBuild Y2 Lexicon\nCatastrophe Uglyfoot Y\n\n69) Uglyfoot: Attack G1E Kermit\n\n\tLexicon: Good game guys.\n\nHomeworlds Online (SDG# 2449)\nStarted: 2006.2.8, Ended: 2006.2.12\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld Y3 B2 G3\n\n2) TwoShort: Homeworld Y1 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Discover G1 Mneme B1 Chimera\n\n6) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n7) mneme: Build G1 Chimera\n\n8) TwoShort: Build G2 Twoshort\n\n9) mneme: Build G2 Mneme\n\n10) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n11) mneme: Trade G2 Y2 Mneme\n\n12) TwoShort: Trade G3 Y3 Twoshort\n\n13) mneme: Build G2 Mneme\n\n14) TwoShort: Discover G2 Yolonda B1 Bluestar\n\n15) mneme: Discover G2 Mneme Y1 Gryphon\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Twoshort\n\n17) mneme: Sacrifice Y2 Mneme\nMove G1 Chimera Yolonda\nMove G1 Chimera Yolonda\nCatastrophe Yolonda G\n\tmneme: gah.  I&#39;ll learn this game eventaully. \n\n18) TwoShort: Discover G2 Twoshort Y3 Yak\n\n19) mneme: Build G1 Gryphon\n\tTwoShort: Well, you&#39;ve learned my favorite maxim:  When in doubt, blow stuff up.\n\tmneme: Heh.  Got that a while ago -- but I just don&#39;t have the material to compete at this point.\r\n\n\tTwoShort: Yeah, an advantage in 3 pointers typically does it; and the threat of catastrophe if you grow in your homeworld means your options are pretty limited.  Anytime you want to play again, I&#39;m pretty much always willing to play more Homeworlds. \n\n20) TwoShort: Discover Y1 Twoshort G3 Zorak\n\n21) mneme: Discover G1 Gryphon B3 Leviathan\n\n22) TwoShort: Build G1 Twoshort\n\n23) mneme: Build G1 Leviathan\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Zorak\nBuild Y2 Zorak\n\n25) mneme: Trade G1 R1 Leviathan\n\n26) TwoShort: Trade G2 R2 Bluestar\n\n27) mneme: Sacrifice G2 Gryphon\nBuild G1 Leviathan\nBuild G2 Mneme\n\n28) TwoShort: Move Y3 Twoshort Leviathan\n\n29) mneme: Sacrifice G3 Mneme\nBuild G2 Leviathan\nBuild G3 Mneme\nBuild R1 Leviathan\n\n30) TwoShort: Sacrifice R2 Bluestar\nAttack R1 Leviathan\nAttack R1 Leviathan\n\n31) mneme: Trade G2 B2 Leviathan\n\n32) TwoShort: Attack B2 Leviathan\n\n33) mneme: Trade G1 B1 Leviathan\n\n34) TwoShort: Sacrifice Y2 Zorak\nDiscover Y3 Leviathan B1 Banzai\nMove Y3 Banzai Mneme\n\n35) mneme: Trade G1 B1 Leviathan\nCatastrophe Leviathan B\n\tmneme: This would be more interesting if I weren&#39;t -so- dead.\n\n36) TwoShort: Trade G3 R3 Twoshort\n\n\tmneme: I figured you&#39;d turn the Y-ship red, but this is cleaner, yeah\r\n\n\nHomeworlds Online (SDG# 2467)\nStarted: 2006.2.9, Ended: 2006.3.8\nParticipants: Jesse (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld B1 G2 Y3\n\n2) Jesse: Homeworld G1 B3 Y3\n\tLexicon: We&#39;ll see if I&#39;ve improved since last time. ;)\n\n3) Lexicon: Build Y1 Lexicon\n\tJesse: Indeed.  Do your best.\n\n4) Jesse: Build Y1 Jesse\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) Jesse: Trade Y1 G1 Jesse\n\n7) Lexicon: Discover G1 Lexicon Y3 Glucose\n\n8) Jesse: Discover G1 Jesse B2 Foo\n\n9) Lexicon: Build G2 Glucose\n\n10) Jesse: Build G2 Foo\n\n11) Lexicon: Build G3 Glucose\n\n12) Jesse: Build Y1 Jesse\n\n13) Lexicon: Move G1 Glucose Foo\n\n14) Jesse: Trade G1 R1 Foo\n\n15) Lexicon: Sacrifice G3 Glucose\nBuild G1 Foo\nBuild G3 Foo\nBuild G3 Glucose\nCatastrophe Foo Green\n\n16) Jesse: Discover Y1 Jesse G2 Bar\n\tJesse: (Whups, typo.)\n\n17) Lexicon: Discover G2 Glucose B2 Fructose\n\n18) Jesse: Trade R1 G1 Foo\n\tJesse: I&#39;ve got to say, that was pretty sharp.  I&#39;m going to have to fight hard to come back, here.\n\tLexicon: I must admit I&#39;m pretty pleased with that one. ;)\n\n19) Lexicon: Build Y1 Lexicon\n\n20) Jesse: Build Y1 Jesse\n\n21) Lexicon: Move Y1 Lexicon Glucose\n\n22) Jesse: Move Y1 Jesse Foo\n\n23) Lexicon: Move Y1 Glucose Fructose\n\n24) Jesse: Build Y2 Jesse\n\n25) Lexicon: Build G1 Glucose\n\n26) Jesse: Build G3 Foo\n\n27) Lexicon: Sacrifice G3 Glucose\nBuild G3 Glucose\nBuild G3 Fructose\nBuild Y2 Fructose\n\n28) Jesse: Trade Y2 R2 Jesse\n\n29) Lexicon: Sacrifice G3 Glucose\nBuild G3 Glucose\nBuild Y2 Lexicon\nBuild Y2 Fructose\n\n30) Jesse: Discover Y1 Bar B3 Baz\n\n31) Lexicon: Sacrifice Y2 Lexicon\nMove Y1 Fructose Jesse\nMove Y2 Fructose Jesse\n\n32) Jesse: Trade Y3 R3 Jesse\n\n33) Lexicon: Sacrifice G3 Glucose\nBuild G2 Glucose\nBuild Y2 Fructose\nBuild Y3 Lexicon\n\n34) Jesse: Attack Y2 Jesse\n\tLexicon: Party in the Jesse system!\n\tJesse: This is why I&#39;m not much of a party person.\n\n35) Lexicon: Sacrifice Y2 Fructose\nMove G1 Glucose Foo\nMove G2 Glucose Foo\nCatastrophe Foo Green\n\n\tJesse: There&#39;s really nothing I can do now unless you make a serious misstep, which I&#39;m sure you won&#39;t.  Very nice maneuvering!  Well done!\n\nHomeworlds Online (SDG# 2471)\nStarted: 2006.2.10, Ended: 2006.2.17\nParticipants: killerkitty94 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 G2 Y3\n\n2) killerkitty94: Homeworld G3 B1 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) killerkitty94: Build Y1 Killerkitty94\n\n5) TwoShort: Trade Y1 B1 Twoshort\n\n6) killerkitty94: Trade Y1 R1 Killerkitty94\n\n7) TwoShort: Build B2 Twoshort\n\n8) killerkitty94: Build Y1 Killerkitty94\n\n9) TwoShort: Discover B1 Twoshort G3 Grogar\n\n10) killerkitty94: Discover R1 Killerkitty94 B2 Felgrah\n\n11) TwoShort: Build B2 Grogar\n\n12) killerkitty94: Trade Y3 B3 Killerkitty94\n\n13) TwoShort: Build B3 Grogar\n\n14) killerkitty94: Build B3 Killerkitty94\n\n15) TwoShort: Sacrifice Y3 Twoshort\nDiscover B3 Grogar Y2 Doomtown\nMove B1 Grogar Doomtown\nMove B1 Doomtown Killerkitty94\nCatastrophe Killerkitty94 Blue\n\n\nHomeworlds Online (SDG# 2498)\nStarted: 2006.2.11, Ended: 2006.4.21\nParticipants: Jesse (S), mneme (N)\nWinner: Jesse\n\n1) mneme: Homeworld G2 B1 Y3\n\n2) Jesse: Homeworld G1 Y3 B3\n\tJesse: Hello.\n\n3) mneme: Build Y1 Mneme\n\n4) Jesse: Build B1 Jesse\n\n5) mneme: Build Y1 Mneme\n\n6) Jesse: Build B1 Jesse\n\n7) mneme: Discover Y1 Mneme B3 Zebra\n\n8) Jesse: Discover B1 Jesse G2 Infection\n\n9) mneme: Build Y1 Mneme\n\n10) Jesse: Build B2 Infection\n\n11) mneme: Discover Y1 Mneme B3 Bison\n\n12) Jesse: Trade B2 Y2 Infection\n\n13) mneme: Build Y2 Mneme\n\n14) Jesse: Build B2 Infection\n\n15) mneme: Trade Y3 G3 Mneme\n\n16) Jesse: Discover B2 Infection Y3 Tko\n\n17) mneme: Trade Y2 R2 Mneme\n\n18) Jesse: Trade B2 R2 Tko\n\n19) mneme: Sacrifice G3 Mneme\nBuild Y2 Zebra\nBuild Y2 Bison\nBuild Y3 Mneme\n\n20) Jesse: Build B2 Infection\n\n21) mneme: Build R1 Mneme\n\n22) Jesse: Trade B2 R2 Infection\n\n23) mneme: Discover Y2 Bison G2 Parrot\n\n24) Jesse: Build B2 Infection\n\n25) mneme: Trade Y2 B2 Zebra\n\n26) Jesse: Move B1 Infection Tko\n\n27) mneme: Move B2 Zebra Parrot\n\n28) Jesse: Build Y2 Infection\n\n29) mneme: Build B2 Parrot\n\n30) Jesse: Trade B3 G3 Jesse\n\n31) mneme: Build B3 Parrot\n\n32) Jesse: Move B1 Tko Parrot\nCatastrophe Parrot B\n\n33) mneme: Trade Y1 G1 Bison\n\n34) Jesse: Move Y2 Infection Bison\n\n35) mneme: Sacrifice Y1 Mneme\nDiscover G1 Bison G1 Snake\n\n36) Jesse: Sacrifice Y2 Bison\nDiscover Y2 Infection G3 Knives\nDiscover R2 Infection G3 Exogenesis\n\n37) mneme: Build Y1 Parrot\n\n38) Jesse: Sacrifice B2 Infection\nTrade R2 G2 Tko\nTrade B1 R1 Jesse\n\n39) mneme: Trade R1 B1 Mneme\n\n40) Jesse: Build R1 Jesse\n\n41) mneme: Build B1 Mneme\n\n42) Jesse: Discover R1 Jesse B2 Grey17\n\n43) mneme: Move B1 Mneme Zebra\n\n44) Jesse: Build R1 Exogenesis\n\n45) mneme: Move B1 Zebra Parrot\n\n46) Jesse: Sacrifice G3 Jesse\nBuild R2 Grey17\nBuild R3 Jesse\nBuild G3 Tko\n\n47) mneme: Build R3 Mneme\n\n48) Jesse: Sacrifice Y2 Knives\nMove R1 Exogenesis Mneme\nMove R2 Exogenesis Mneme\nCatastrophe Mneme R\n\n49) mneme: Trade B1 R1 Mneme\n\n50) Jesse: Trade R2 Y2 Grey17\n\n51) mneme: Build G3 Snake\n\n52) Jesse: Move G2 Tko Snake\nCatastrophe Snake G\n\n53) mneme: Build Y1 Parrot\n\n54) Jesse: Build G1 Tko\n\n55) mneme: Build Y2 Mneme\n\n56) Jesse: Trade R1 B1 Grey17\n\n57) mneme: Trade Y1 R1 Parrot\n\n58) Jesse: Sacrifice B1 Grey17\nTrade R3 B3 Jesse\n\n59) mneme: Build R2 Parrot\n\n60) Jesse: Build R2 Jesse\n\n61) mneme: Build B1 Parrot\n\n62) Jesse: Move G1 Tko Grey17\n\n63) mneme: Build R2 Mneme\n\n64) Jesse: Move R1 Jesse Grey17\n\n65) mneme: Build R3 Parrot\n\n66) Jesse: Move R2 Jesse Parrot\nCatastrophe Parrot R\n\n67) mneme: Build B2 Parrot\n\n68) Jesse: Trade B3 R3 Jesse\n\n69) mneme: Discover B1 Parrot G3 Monkey\n\n70) Jesse: Build Y1 Grey17\n\n71) mneme: Build B2 Monkey\n\n72) Jesse: Build G1 Grey17\n\n\tJesse: Well, that&#39;s long enough.  Time to terminate this game.  It&#39;s too bad; this was a tough one.\n\nHomeworlds Online (SDG# 2497)\nStarted: 2006.2.12, Ended: 2006.2.17\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld B1 G2 Y3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) jeep: Build Y1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Trade Y1 G1 Jeep\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) jeep: Build G1 Jeep\n\n8) TwoShort: Build B2 Twoshort\n\n9) jeep: Discover G1 Jeep Y3 Giant\n\n10) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\tjeep: When I traded for the g1, I thought: I should get the small blue first... then didn&#39;t.  *sigh*\n\n11) jeep: Build Y1 Jeep\n\tjeep: Don&#39;t know how I wound up with G3 there... guess I was thinking about what I was going to chat...\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Yolonda\nBuild B2 Yolonda\nBuild B3 Twoshort\n\tTwoShort: Someone surprised me with a similar early blue grab recently; so I&#39;d been looking for an opportunity to try it.\n\n13) jeep: Trade Y3 B3 Jeep\n\n14) TwoShort: Trade B3 Y3 Twoshort\n\n15) jeep: Trade G1 R1 Jeep\n\n16) TwoShort: Discover B2 Yolonda G3 Grogar\n\tjeep: *sigh*\n\n17) jeep: Trade B3 G3 Jeep\n\n18) TwoShort: Build B3 Grogar\n\n19) jeep: Discover Y1 Jeep G3 Jolly\n\n20) TwoShort: Build B3 Grogar\n\n\tjeep: Yeah, this isn&#39;t even fun... want to play again?  I&#39;m way past ready to concede...\n\tTwoShort: Yeah, I you can make it take a little while if you tried, but I don&#39;t think you can stop me from winning.  Anyway, I&#39;d love to play again.\n\nHomeworlds Online (SDG# 2528)\nStarted: 2006.2.12, Ended: 2006.3.19\nParticipants: sketchwick (S), jeep (N)\nWinner: sketchwick\n\n1) jeep: Homeworld B1 G2 Y3\n\n2) sketchwick: Homeworld B3 R1 G3\n\n3) jeep: Build Y1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade Y1 G1 Jeep\n\n6) sketchwick: Trade G1 Y1 Sketchwick\n\n7) jeep: Build G1 Jeep\n\n8) sketchwick: Build G1 Sketchwick\n\n9) jeep: Trade G1 R1 Jeep\n\n10) sketchwick: Discover G1 Sketchwick Y2 Sun\n\n11) jeep: Build R1 Jeep\n\n12) sketchwick: Build G1 Sketchwick\n\n13) jeep: Discover R1 Jeep Y3 Daoghter\n\n14) sketchwick: Build G2 Sun\n\tsketchwick: daoghter?\r\n\n\n15) jeep: Build R2 Jeep\n\tjeep: Yeah, you misspelled son... ;)\n\n16) sketchwick: Discover G1 Sun B1 Mum\n\tsketchwick: bah, I asked without even working on the puzzle if it wasn&#39;t a typo!\n\n17) jeep: Discover R1 Jeep B3 Pup\n\n18) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Mum\nBuild G3 Mum\nBuild G3 Sketchwick\n\tsketchwick: pop---JUST got it\r\n\n\n19) jeep: Trade Y3 G3 Jeep\n\n20) sketchwick: Trade G2 Y2 Mum\n\n21) jeep: Sacrifice G3 Jeep\nBuild R2 Daoghter\nBuild R2 Pup\nBuild R3 Jeep\n\n22) sketchwick: Sacrifice G3 Mum\nBuild G2 Sketchwick\nBuild G3 Mum\nBuild G3 Mum\n\n23) jeep: Build R3 Jeep\n\n24) sketchwick: Trade G3 R3 Mum\n\tsketchwick: um..I see two lines that say &quot;global reserve stash&quot; but not what&#39;s in it\n\tjeep: Me too, I&#39;ll contact Aaron.\r\n\n\n25) jeep: Trade R2 Y2 Jeep\n\n26) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild G3 Sun\nBuild R2 Mum\n\n27) jeep: Sacrifice Y2 Jeep\nMove R1 Pup Mum\nMove R1 Daoghter Mum\nCatastrophe Mum R\n\n28) sketchwick: Trade G3 R3 Mum\n\n29) jeep: Trade R3 Y3 Jeep\n\n30) sketchwick: Trade G2 R2 Sketchwick\n\n31) jeep: Trade R2 G2 Pup\n\n32) sketchwick: Build G3 Mum\n\n33) jeep: Trade G2 Y2 Pup\n\n34) sketchwick: Move G3 Mum Pup\n\n35) jeep: Discover Y2 Pup G2 Grans\n\n36) sketchwick: Sacrifice G3 Pup\nBuild Y1 Sketchwick\nBuild Y1 Sketchwick\nBuild Y3 Mum\n\n37) jeep: Move Y2 Grans Sketchwick\nCatastrophe Sketchwick Y\n\n38) sketchwick: Move G3 Sun Daoghter\n\n39) jeep: Discover R2 Daoghter Y2 Pup\n\n40) sketchwick: Move G3 Daoghter Jeep\n\n41) jeep: Attack G3S Jeep\n\n42) sketchwick: Sacrifice Y2 Mum\nDiscover G1 Mum Y3 Charge\nMove G1 Charge Jeep\nCatastrophe Jeep Green\n\n43) jeep: Trade Y3 G3 Jeep\n\n44) sketchwick: Move R3 Mum Pup\n\tjeep: Just waiting for the fat lady now...\n\n45) jeep: Sacrifice G3 Jeep\nBuild R1 Pup\nBuild R1 Pup\nBuild R2 Jeep\nCatastrophe Pup R\n\tsketchwick: yeah but if you conceded before I lost that game I thought I had to twoshort it wouldn&#39;t hurt you rating as much...\n\n46) sketchwick: Build R1 Sketchwick\n\n47) jeep: Trade R2 G2 Jeep\n\n48) sketchwick: Build G1 Sun\n\n49) jeep: Build R1 Jeep\n\n50) sketchwick: Move G2 Sun Sketchwick\n\n51) jeep: Trade R3 Y3 Jeep\n\n52) sketchwick: Trade G2 Y2 Sketchwick\n\n53) jeep: Move G2 Jeep Sun\n\n54) sketchwick: Move Y3 Mum Sun\n\n55) jeep: Sacrifice G2 Sun\nBuild Y1 Jeep\nBuild R2 Jeep\n\n56) sketchwick: Discover R2 Sketchwick Y2 Ender\n\n57) jeep: Discover R2 Jeep G2 Valentine\n\n58) sketchwick: Move G3 Sketchwick Valentine\n\n59) jeep: Build R2 Valentine\n\n60) sketchwick: Sacrifice R2 Ender\nAttack R2N Valentine\nAttack R2N Valentine\n\n61) jeep: Trade Y1 G1 Jeep\n\n62) sketchwick: Sacrifice Y2 Sketchwick\nMove Y3 Sun Jeep\nMove G3 Valentine Jeep\n\n\nHomeworlds Online (SDG# 2532)\nStarted: 2006.2.17, Ended: 2006.2.27\nParticipants: jeep (S), TwoShort (N)\nWinner: jeep\n\n1) TwoShort: Homeworld B2 Y1 G3\n\n2) jeep: Homeworld B1 G2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jeep: Build Y1 Jeep\n\tTwoShort: Hmmm... same-size homeworlds.  Out of curiosity, was that intentional?  \r\n\n\tjeep: No, it was supposed to be B1, G3, Y3, but I am a moron.\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Build Y1 Jeep\n\tTwoShort: Well, based on my limited experience of having made the same mistake once, I don&#39;t actually think it&#39;s a disadvantage.\n\n7) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n8) jeep: Discover Y1 Jeep G3 Giant\n\n9) TwoShort: Build G1 Yolonda\n\n10) jeep: Build Y2 Giant\n\n11) TwoShort: Move G1 Yolonda Jeep\n\tjeep: I&#39;ve finally decided that I&#39;m a Builder.  I was trying to play the Traveller game, since I saw you were playing builder, but I never do as well when I try it.\n\tTwoShort: I&#39;m certainly more comfortable with Builder, though I&#39;ve been switching back and forth since others seem convinced Traveller is superior.  I just love the Factory though.\n\n12) jeep: Build Y2 Jeep\n\tjeep: *sigh*  I need to start using notes!!   I took so long because I was trying to work around that... considered making a Red in my homeworld.\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Jeep\nBuild G3 Twoshort\n\n14) jeep: Trade Y2 R2 Jeep\n\n15) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Jeep\nBuild G3 Yolonda\n\n16) jeep: Sacrifice Y2 Giant\nMove Y3 Jeep Yolonda\nMove Y3 Yolonda Twoshort\n\n17) TwoShort: Move G1 Yolonda Twoshort\n\tTwoShort: Gak! I hates small-universe! Hates it!\n\n18) jeep: Sacrifice R2 Jeep\nAttack G3N Twoshort\nAttack G1N Twoshort\nCatastrophe Jeep G\n\tTwoShort: Well, fooey.  Here I was gloating to myself about how clever I was to not call the catastrophe yet, and inconvenience you one tiny bit more, and completely overlooking my doom.\n\n19) TwoShort: Sacrifice G3 Yolonda\nBuild G1 Twoshort\nBuild G2 Twoshort\nBuild G2 Twoshort\n\tjeep: Yeah, I almsot missed it myself.  And had I called catastrophe, you could have just built more ships, maybe enough that my one attack couldn&#39;t cripple you.\n\tTwoShort: But then or now, being able to grow has a fatal flaw...\n\n20) jeep: Move G3 Twoshort Giant\nCatastrophe Twoshort G\n\tTwoShort: Anyway, good game.  Whenever you&#39;re ready for a rematch, I need revenge!\n\tjeep: Feel free to challenge me anytime.\n\n\nHomeworlds Online (SDG# 2554)\nVariants: &quot;Unrated&quot;\nStarted: 2006.2.18, Ended: 2006.3.8\nParticipants: JunkMan (S), Laurie_Menke (N)\nWinner: JunkMan\n\n1) Laurie_Menke: Homeworld B1 G2 Y3\n\tLaurie_Menke: Hi, JunkMan...good luck!\n\n2) JunkMan: Homeworld B2 G3 Y3\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\n4) JunkMan: Build Y1 Junkman\n\n5) Laurie_Menke: Discover Y1 Laurie_menke G3 Forest\n\n6) JunkMan: Trade Y1 R1 Junkman\n\n7) Laurie_Menke: Build Y1 Forest\n\n8) JunkMan: Build Y1 Junkman\n\n9) Laurie_Menke: Build Y2 Laurie_menke\n\n10) JunkMan: Discover Y1 Junkman G1 Garden\n\n11) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\n12) JunkMan: Build Y2 Garden\n\n13) Laurie_Menke: Discover B2 Laurie_menke G3 Envy\n\n14) JunkMan: Discover Y1 Garden B3 Factory\n\n15) Laurie_Menke: Build B1 Envy\n\tLaurie_Menke: Hmmm...not much of a factory without any green.  ;o)\n\n16) JunkMan: Build Y2 Garden\n\n17) Laurie_Menke: Discover Y1 Forest Y2 Sunshine\n\n18) JunkMan: Build Y3 Junkman\n\n19) Laurie_Menke: Move Y1 Sunshine Envy\n\n20) JunkMan: Move Y2 Garden Factory\n\n21) Laurie_Menke: Build Y2 Forest\n\n22) JunkMan: Discover Y2 Garden R3 Mars\n\n23) Laurie_Menke: Move B2 Envy Laurie_menke\n\n24) JunkMan: Trade Y1 G1 Factory\n\n25) Laurie_Menke: Discover Y1 Forest Y1 Luella\n\n26) JunkMan: Discover Y3 Junkman R1 Bunker\n\n27) Laurie_Menke: Move Y3 Laurie_menke Mars\n\n28) JunkMan: Move Y2 Mars Laurie_menke\n\n29) Laurie_Menke: Trade B2 R2 Laurie_menke\n\n30) JunkMan: Sacrifice R1 Junkman\nAttack R2N Laurie_menke\n\n\tJunkMan: Good Game\n\nHomeworlds Online (SDG# 2589)\nStarted: 2006.2.22, Ended: 2006.4.17\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y2 B1 G3\n\tJesse: I must have my vengeance.  :)\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: By all means!  But I should note that the blue-freeze out you put on me at the beginning of last game got me thinking...\n\n3) Jesse: Build G1 Jesse\n\tJesse: Interesting idea, but I won&#39;t let it work.  :)\n\n4) TwoShort: Build B1 Twoshort\n\n5) Jesse: Build G1 Jesse\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Jesse: Discover G1 Jesse B3 Ham\n\n8) TwoShort: Build B2 Twoshort\n\n9) Jesse: Discover G1 Jesse B3 Bacon\n\n10) TwoShort: Discover B2 Twoshort Y2 Yoyodyne\n\n11) Jesse: Build G1 Jesse\n\n12) TwoShort: Build B2 Twoshort\n\n13) Jesse: Build G2 Ham\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) Jesse: Trade G2 R2 Ham\n\n16) TwoShort: Trade Y3 G3 Twoshort\n\n17) Jesse: Discover G1 Jesse B3 Pork\n\n18) TwoShort: Build G2 Twoshort\n\n19) Jesse: Build G2 Jesse\n\n20) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Twoshort\nBuild B2 Yoyodyne\n\n21) Jesse: Trade G2 B2 Jesse\n\n22) TwoShort: Trade G2 Y2 Twoshort\n\n23) Jesse: Discover B2 Jesse Y3 Chitlins\n\n24) TwoShort: Sacrifice Y2 Twoshort\nMove B2 Yoyodyne Bacon\nMove B2 Yoyodyne Pork\n\n25) Jesse: Build G2 Jesse\n\n26) TwoShort: Trade B2 R2 Pork\n\n27) Jesse: Trade G2 Y2 Jesse\n\n28) TwoShort: Sacrifice R2 Twoshort\nAttack G1 Bacon\nAttack G1 Pork\n\n29) Jesse: Build G2 Ham\n\n30) TwoShort: Trade B2 Y2 Bacon\n\n31) Jesse: Move Y2 Jesse Ham\n\n32) TwoShort: Build G2 Bacon\n\n33) Jesse: Discover G1 Ham B2 Saussage\n\n34) TwoShort: Move G1 Bacon Jesse\n\n35) Jesse: Trade G3 R3 Jesse\n\n36) TwoShort: Sacrifice Y2 Bacon\nMove R2 Pork Saussage\nDiscover G2 Bacon Y2 Hashbrowns\n\n37) Jesse: Sacrifice G2 Ham\nBuild B2 Chitlins\nBuild B3 Chitlins\n\n38) TwoShort: Attack G1N Saussage\n\n39) Jesse: Attack G1 Jesse\n\n40) TwoShort: Trade B1 Y1 Twoshort\n\n41) Jesse: Trade B3 G3 Chitlins\n\n42) TwoShort: Trade G1 Y1 Pork\n\n43) Jesse: Discover G1 Jesse Y3 Trotters\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Pork\nBuild Y3 Twoshort\nBuild R1 Saussage\n\n45) Jesse: Sacrifice G1 Trotters\nBuild Y3 Ham\n\n46) TwoShort: Sacrifice Y1 Pork\nDiscover R1 Saussage G3 Eggsand\n\n47) Jesse: Move Y3 Ham Saussage\n\n48) TwoShort: Sacrifice Y1 Twoshort\nDiscover R2 Saussage B3 Samiam\n\n49) Jesse: Move Y3 Saussage Samiam\n\n50) TwoShort: Sacrifice G2 Hashbrowns\nBuild Y1 Twoshort\nBuild R1 Eggsand\n\tTwoShort: Hmm, the secret move that lets me turn this game around is proving most elusive...\n\n51) Jesse: Sacrifice R2 Ham\nAttack R2 Samiam\nPass\n\n52) TwoShort: Build R1 Eggsand\n\n53) Jesse: Move G3 Chitlins Jesse\n\n54) TwoShort: Build G1 Saussage\n\n55) Jesse: Trade B2 G2 Chitlins\n\n56) TwoShort: Trade G1 B1 Saussage\n\n57) Jesse: Build G1 Chitlins\n\n58) TwoShort: Build G1 Saussage\n\n59) Jesse: Sacrifice G2 Chitlins\nBuild G2 Jesse\nBuild R2 Samiam\n\n60) TwoShort: Trade G1 Y1 Saussage\n\n61) Jesse: Sacrifice G2 Jesse\nBuild R2 Samiam\nBuild Y2 Samiam\n\n62) TwoShort: Sacrifice Y1 Pork\nMove R1 Eggsand Saussage\n\n63) Jesse: Build R3 Jesse\n\n64) TwoShort: Build R3 Saussage\n\n65) Jesse: Sacrifice Y2 Samiam\nMove R2 Samiam Saussage\nMove R2 Samiam Saussage\nCatastrophe Saussage R\n\n66) TwoShort: Discover G1 Saussage B3 Syrup\n\n67) Jesse: Move R3 Jesse Syrup\n\n68) TwoShort: Move Y1 Saussage Eggsand\n\n69) Jesse: Attack G1 Syrup\n\n70) TwoShort: Trade Y1 R1 Twoshort\n\n71) Jesse: Build R2 Syrup\n\tTwoShort: I always hate to resign when I can&#39;t see a short-term, guaraunteed win sequence for my opponent...  but my doom does seem inevitable.\n\tJesse: Yeah, I feel the same way.  Comebacks are certainly possible.  It&#39;s hard to find the correct degree of perseverance in the face of gradually increasing odds against you.  Do as you will.  I&#39;ll be happy to continue playing as long as you want to keep at it.\n\n\tJesse: Thanks for the game.  &#39;Til next time...\n\nHomeworlds Online (SDG# 2543)\nStarted: 2006.2.23, Ended: 2006.3.30\nParticipants: jeep (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y1 G2 B3\n\n2) jeep: Homeworld B1 Y3 G3\n\tJesse: It&#39;s been a while; good to meet you again.\n\n3) Jesse: Build B1 Jesse\n\n4) jeep: Build G1 Jeep\n\tjeep: Thanks, nice to see you again.  ;)\n\n5) Jesse: Build B1 Jesse\n\n6) jeep: Discover G1 Jeep B2 Man\n\n7) Jesse: Discover B1 Jesse G3 Plus\n\n8) jeep: Build G1 Jeep\n\n9) Jesse: Build B2 Plus\n\tjeep: I keep getting myself behind in the early game.  I guess I need to pay more attention.  *sigh*\n\tJesse: It&#39;s not easy.  The opening at first seems simple because there aren&#39;t as many options as later, but it&#39;s surprisingly subtle.\n\n10) jeep: Build G1 Man\n\n11) Jesse: Trade B2 Y2 Plus\n\n12) jeep: Discover G3 Jeep Y2 Woman\n\n13) Jesse: Build B2 Plus\n\tJesse: It is almost always a bad idea to leave your homeworld without a large ship to defend it.  If you think you can get away with it, more power to you, but I think it&#39;s quite dangerous here.\n\n14) jeep: Build G2 Woman\n\n15) Jesse: Discover B1 Jesse G3 Yggdrasil\n\tjeep: Yeah, I know, but I&#39;m so far behind, I need to take a couple risks, I think.\n\n16) jeep: Sacrifice G3 Woman\nBuild G2 Woman\nBuild G3 Jeep\nPass\n\n17) Jesse: Build B2 Yggdrasil\n\n18) jeep: Trade G1 Y1 Man\n\n19) Jesse: Build B3 Jesse\n\n20) jeep: Sacrifice G3 Jeep\nBuild G1 Man\nBuild Y1 Man\nBuild G3 Jeep\n\n21) Jesse: Build B3 Yggdrasil\n\n22) jeep: Discover Y1 Man R3 Stage\n\n23) Jesse: Sacrifice B2 Yggdrasil\nTrade B3 Y3 Yggdrasil\nTrade B3 Y3 Jesse\n\n24) jeep: Build Y2 Man\n\n25) Jesse: Build B2 Yggdrasil\n\n26) jeep: Move G2 Woman Stage\n\n27) Jesse: Trade B3 R3 Jesse\n\n28) jeep: Trade G1 R1 Man\n\n29) Jesse: Build B3 Yggdrasil\n\n30) jeep: Move Y1 Man Stage\n\n31) Jesse: Discover Y3 Jesse B3 Child\n\n32) jeep: Sacrifice G3 Jeep\nBuild G1 Stage\nBuild G3 Jeep\nBuild R1 Man\n\n33) Jesse: Move B3 Yggdrasil Jesse\n\n34) jeep: Move R1 Man Plus\n\n35) Jesse: Build B3 Plus\n\n36) jeep: Sacrifice G2 Woman\nBuild Y2 Stage\nBuild G2 Man\n\n37) Jesse: Move B3 Plus Man\n\n38) jeep: Sacrifice Y2 Man\nMove R1 Man Jeep\nDiscover G2 Stage Y2 Store\n\n39) Jesse: Sacrifice Y3 Yggdrasil\nMove Y3 Child Man\nMove Y3 Man Jeep\nMove B3 Man Jeep\n\n40) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R1 Jeep\nBuild R2 Plus\n\tjeep: I think I looked at my two one point red ships and thought they were as good as a two point ship, or something. :(\n\tjeep: All over but the singing, now.\n\n41) Jesse: Sacrifice R3 Jesse\nAttack G3 Jeep\nAttack G1 Jeep\nAttack R2 Plus\n\tJesse: In some situations, two one-pointers are better than one two-pointer.  Unfortunately for you right now, defending against mass invasions is not one of them.  Remember this kind of attack for the future; it is often more effective than trying to destroy the opponent&#39;s ships of stars, which can require huge sacrifices.\n\n\tjeep: I&#39;ve won with this type of attack before.  But I thought I was safe- for now.  I know I was way behind for most of the game, though.  Thanks for the game!  \n\nHomeworlds Online (SDG# 2626)\nStarted: 2006.2.27, Ended: 2006.3.2\nParticipants: Uglyfoot (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld Y3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Venice\n\n7) TwoShort: Build G1 Twoshort\n\n8) Uglyfoot: Build G2 Venice\n\n9) TwoShort: Build G2 Yolonda\n\n10) Uglyfoot: Trade G2 Y2 Venice\n\n11) TwoShort: Discover G1 Yolonda B2 Bluestar\n\n12) Uglyfoot: Build G2 Uglyfoot\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n14) Uglyfoot: Build Y1 Venice\n\n15) TwoShort: Move G3 Yolonda Venice\n\n16) Uglyfoot: Trade Y1 R1 Venice\n\n17) TwoShort: Trade G2 R2 Bluestar\n\n18) Uglyfoot: Build G2 Venice\n\n19) TwoShort: Sacrifice R2 Bluestar\nAttack R1S Venice\nAttack Y2S Venice\n\n20) Uglyfoot: Move G2 Uglyfoot Venice\nCatastrophe Venice G\n\n21) TwoShort: Build G1 Bluestar\n\n22) Uglyfoot: Build G2 Uglyfoot\n\n23) TwoShort: Sacrifice Y2 Venice\nMove G1 Bluestar Uglyfoot\nMove G1 Bluestar Uglyfoot\nCatastrophe Uglyfoot Green\n\tUglyfoot: and that looks like a win for you.\r\n\n\tTwoShort: Yup.  Thanks for the game!\n\n\nHomeworlds Online (SDG# 2643)\nStarted: 2006.2.27, Ended: 2006.3.31\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld Y1 B3 G3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) jeep: Build G1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Discover G1 Jeep B2 Man\n\n6) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n7) jeep: Build G1 Man\n\n8) TwoShort: Build G2 Twoshort\n\n9) jeep: Trade G1 Y1 Man\n\n10) TwoShort: Trade G2 Y2 Twoshort\n\n11) jeep: Build G1 Jeep\n\n12) TwoShort: Build G2 Twoshort\n\n13) jeep: Trade G3 Y3 Jeep\n\n14) TwoShort: Build G2 Yolonda\n\n15) jeep: Build G2 Jeep\n\n16) TwoShort: Move G2 Yolonda Man\n\n17) jeep: Sacrifice G2 Jeep\nBuild G2 Man\nBuild G3 Jeep\n\n18) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Man\nBuild G3 Twoshort\nCatastrophe Man Green\n\tjeep: Sorry for the delay...  That&#39;s why I pick 3 day games, though...\n\n19) jeep: Sacrifice G3 Jeep\nBuild Y1 Man\nBuild Y2 Jeep\nBuild Y3 Man\n\n20) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n21) jeep: Move Y3 Man Yolonda\n\n22) TwoShort: Build G1 Yolonda\n\n23) jeep: Build G2 Jeep\n\n24) TwoShort: Discover G1 Yolonda B2 Boy\n\n25) jeep: Move G2 Jeep Man\n\n26) TwoShort: Move Y2 Bluestar Boy\n\n27) jeep: Discover Y2 Jeep B2 Yolanda\n\n28) TwoShort: Build G2 Boy\n\n29) jeep: Build G2 Man\n\n30) TwoShort: Trade G2 R2 Boy\n\n31) jeep: Trade G2 R2 Man\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Yolonda\nBuild G3 Boy\n\n33) jeep: Build G3 Jeep\n\tTwoShort: Woops, mis-entered that... and now I&#39;m reconsidering \n\n34) TwoShort: Move G2 Yolonda Yolanda\n\n35) jeep: Move Y3 Yolonda Twoshort\n\n36) TwoShort: Sacrifice R2 Boy\nAttack Y3N Twoshort\nAttack Y2N Yolanda\n\n37) jeep: Sacrifice Y3 Jeep\nDiscover G2 Man Y3 Woman\nMove R2 Man Jeep\nMove G1 Jeep Man\n\tjeep: I&#39;m nervous that I mis-calculated here... but we&#39;ll see, I guess.\n\tTwoShort: I&#39;ve been nervous the last dozen moves... it&#39;s kind of refreshing to have an obvious move this time.\n\n38) TwoShort: Trade G2 R2 Yolanda\n\tTwoShort: Well, I was worried you had me; but looking at things now, I think you miscalculated... unless I&#39;ve miscalculated and you weren&#39;t planning what I think you were planning... :)\n\tjeep: You did what I expected, now I need to remember my response.  I remember thinking it was non-obvious.  Too bad there isn&#39;t a notebook type feature on the si...?  Hmm?  There is?  Wow, mayby I should use it.\n\tTwoShort:  Well, what I thought you might be planning was sacrificing your Y3 to move your G3 all the way to my homeworld now that I have no red.  But I wouldn&#39;t recommend it.\n\tjeep: Right, I do that and you simply build two larges in your homeworld.  I can take two, but then you can get an R3 and destroy me... yeah, that wasn&#39;t what it was.  What else might destroy you?  ;)\n\tTwoShort: If you do that and I build two larges, you could respond by turning your large red, and then you&#39;d be free to sacrifice the r2 even if I got red, and I&#39;d be doomed.  So I wouldn&#39;t build the two larges.\n\tjeep: Yeah, I know.  ;)  *sigh*  I really do know that I make bad moves at midnight, but I still make them.  I think this game is as good as over now.  I&#39;m still thinking about it, but I&#39;m thinking I missed that you&#39;d wind up with the Y2 instead of me after the attack.\n\n39) jeep: Discover Y1 Man B3 Stage\n\n40) TwoShort: Move G2 Yolonda Man\n\n41) jeep: Sacrifice G2 Woman\nBuild G2 Man\nBuild Y3 Stage\n\n42) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Yolanda\n\n43) jeep: Move G1 Man Stage\n\n44) TwoShort: Sacrifice Y3 Yolanda\nMove Y2 Yolanda Stage\nMove Y2 Boy Stage\nMove R2 Yolanda Stage\nCatastrophe Stage Yellow\n\n45) jeep: Sacrifice G2 Man\nBuild G1 Stage\nBuild G2 Stage\n\n46) TwoShort: Sacrifice G3 Boy\nBuild G2 Man\nBuild G3 Boy\nBuild Y1 Twoshort\n\tjeep: When ahead, simplify... always a good plan, I think.\n\n47) jeep: Sacrifice G2 Stage\nBuild Y2 Man\nBuild Y2 Man\n\n48) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Boy Jeep\nMove G2 Man Jeep\nMove G2 Man Jeep\nCatastrophe Jeep Green\n\n49) jeep: Move Y2 Man Jeep\n\n50) TwoShort: Sacrifice Y1 Twoshort\nMove G3 Boy Jeep\n\n\nHomeworlds Online (SDG# 2647)\nStarted: 2006.3.2, Ended: 2006.3.7\nParticipants: sketchwick (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld B1 R3 G3\n\tTwoShort: Greetings\n\n3) TwoShort: Build G1 Twoshort\n\n4) sketchwick: Build G1 Sketchwick\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) sketchwick: Trade G3 Y3 Sketchwick\n\n7) TwoShort: Build G1 Yolonda\n\n8) sketchwick: Build G2 Sketchwick\n\n9) TwoShort: Build G2 Twoshort\n\n10) sketchwick: Discover G1 Sketchwick Y2 Smith\n\tsketchwick: Oh, hi!  I just saw your greeting.  :)\r\n\n\n11) TwoShort: Move G1 Yolonda Smith\n\n12) sketchwick: Trade G2 R2 Sketchwick\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Smith\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n14) sketchwick: Move R2 Sketchwick Smith\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n16) sketchwick: Attack G2N Smith\n\n17) TwoShort: Move G1 Yolonda Smith\nCatastrophe Smith Green\n\n18) sketchwick: Move R2 Smith Yolonda\n\n19) TwoShort: Trade G2 R2 Twoshort\n\n20) sketchwick: Discover R2 Yolonda Y2 Notgoingwell\n\n21) TwoShort: Move G3 Yolonda Notgoingwell\n\n22) sketchwick: Move R2 Notgoingwell Sketchwick\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G1 Yolonda\nBuild G1 Notgoingwell\n\n24) sketchwick: Trade R2 G2 Sketchwick\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n26) sketchwick: Build Y1 Sketchwick\n\n27) TwoShort: Trade G3 Y3 Twoshort\n\n28) sketchwick: Build G3 Sketchwick\n\n29) TwoShort: Discover G2 Yolonda Y2 Goingfine\n\n30) sketchwick: Discover Y1 Sketchwick R2 Notdead\n\n31) TwoShort: Move G1 Notgoingwell Sketchwick\n\n32) sketchwick: Sacrifice G2 Sketchwick\nBuild Y1 Notdead\nBuild Y2 Sketchwick\n\n33) TwoShort: Sacrifice G2 Goingfine\nBuild G2 Sketchwick\nBuild G2 Sketchwick\nCatastrophe Sketchwick Green\n\n34) sketchwick: Trade Y3 G3 Sketchwick\n\n35) TwoShort: Discover G3 Yolonda B2 Yet\n\n36) sketchwick: Discover Y1 Notdead B3 Ox\n\n37) TwoShort: Trade G3 Y3 Yet\n\n38) sketchwick: Trade Y2 G2 Sketchwick\n\n39) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Yet Sketchwick\nMove G3 Notgoingwell Sketchwick\nPass\n\tTwoShort: I think I had you back when I gained the upper hand on 3 pointers, but you&#39;ve held me off for an impressively long time.  Now, however, I&#39;m afraid the end is nigh...\n\n40) sketchwick: Attack Y3N Sketchwick\n\n41) TwoShort: Sacrifice R2 Twoshort\nAttack G3 Sketchwick\nAttack Y3 Sketchwick\n\tsketchwick: glad I was impressive in SOME way, I&#39;m very inexperienced...I hadn&#39;t thought of the power of moving in two big ships when you have at least an r2\n\n\tTwoShort: Well, I hope you&#39;ll keep playing; you&#39;re obviously good at thinking through the posibilities a couple moves in advance; just need to work on your early game.\n\tTwoShort: A couple tips:  1) Red is the least useful color.  Optimally, I never take red except for a single two point ship the turn after my opponent takes red, or the turn before I&#39;m threatening to use it.  2) The early game is about getting 3 pointers.  A significant disadvantage in 3 pointer count is usually insurmountable.\n\nHomeworlds Online (SDG# 2627)\nStarted: 2006.3.2, Ended: 2006.4.15\nParticipants: sketchwick (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G3 B2 Y3\n\tJesse: Hello.  How&#39;s it going?\n\n2) sketchwick: Homeworld B1 R2 G3\n\n3) Jesse: Build Y1 Jesse\n\tJesse: You should probably go read the strategy tips for beginners on the wiki, if you haven&#39;t.  Most experienced players prefer not to choose a red system marker.  (Or maybe I assume too much, and you have some particular strategy in mind.)\n\n4) sketchwick: Build G1 Sketchwick\n\tsketchwick: I never read any tips, just played a lot of games with jeep as we were both learning.  Forgive me if I don&#39;t present a challenge\n\n5) Jesse: Trade Y1 G1 Jesse\n\tJesse: It&#39;s no problem.  Would you like some coaching?\n\n6) sketchwick: Trade G1 Y1 Sketchwick\n\tsketchwick: I&#39;m always open to hearing ideas\n\n7) Jesse: Build Y1 Jesse\n\tJesse: For one thing, it&#39;s generally not considered a good idea to use red for one of your system markers.  It doesn&#39;t help you early on, it can&#39;t be sacrificed to use the power in another system (so you still need a red ship somewhere when your opponent gets a red ship), and when your opponent does invade your system, you both have access to the red power.\n\tJesse: On the other hand, it does make it possible for you to freely choose between maintaining either a large green or a large yellow at your homeworld (or, later, both), both of which can be quite useful.\n\n8) sketchwick: Build G1 Sketchwick\n\tsketchwick: Yeah, it&#39;s the other hand that made me choose it...you first comment made it sound like you could sacrifice stars...if this is true I&#39;m unaware of the rule.\n\n9) Jesse: Trade Y1 B1 Jesse\n\tJesse: No, you can&#39;t sacrifice stars.  That was the point.  Because you can&#39;t, it can only help you in your home system.  Once I get into red ships, you&#39;ll still need red ships of your own, to protect yourself elsewhere.\n\n10) sketchwick: Discover G1 Sketchwick B3 Ox\n\n11) Jesse: Discover G1 Jesse B1 Gateway\n\n12) sketchwick: Build G1 Sketchwick\n\n13) Jesse: Build G2 Gateway\n\n14) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Ox\nBuild G2 Ox\nBuild G3 Sketchwick\n\n15) Jesse: Build B2 Jesse\n\n16) sketchwick: Trade G3 Y3 Sketchwick\n\n17) Jesse: Trade G1 Y1 Gateway\n\n18) sketchwick: Trade G2 B2 Ox\n\n19) Jesse: Trade B2 R2 Jesse\n\n20) sketchwick: Trade G2 R2 Ox\n\n21) Jesse: Build G1 Gateway\n\n22) sketchwick: Build G2 Ox\n\n23) Jesse: Discover G1 Gateway Y3 Oort\n\n24) sketchwick: Trade G1 Y1 Ox\n\n25) Jesse: Build Y2 Jesse\n\n26) sketchwick: Build Y2 Ox\n\n27) Jesse: Discover Y2 Jesse G1 Peggys\n\n28) sketchwick: Move B2 Ox Gateway\n\n29) Jesse: Discover G2 Gateway Y2 Core\n\n30) sketchwick: Build G2 Ox\n\n31) Jesse: Build G3 Core\n\n32) sketchwick: Build G3 Sketchwick\n\n33) Jesse: Sacrifice G1 Oort\nBuild Y3 Peggys\n\n34) sketchwick: Sacrifice Y3 Sketchwick\nMove Y2 Ox Peggys\nMove Y1 Ox Peggys\nMove G2 Ox Core\nCatastrophe Peggys Yellow\n\n35) Jesse: Sacrifice B1 Jesse\nTrade G3 B3 Core\n\n36) sketchwick: Build R1 Ox\n\n37) Jesse: Build R1 Jesse\n\n38) sketchwick: Move G2 Core Gateway\n\n39) Jesse: Discover Y1 Gateway G3 Neptune\n\tsketchwick: Do you know you will win at this point?\n\tJesse: No, the result is definitely not settled.\n\n40) sketchwick: Trade G2 Y2 Ox\n\n41) Jesse: Build G1 Core\n\tsketchwick: Maybe I&#39;m only good enough to see the advantages you&#39;ve gained, but not good enough to see my own...\n\tJesse: Well, you have a factory and fairly well distributed pieces.  The factory isn&#39;t operational right now, but once the greens run out you&#39;ll have a production advantage if I can&#39;t put a stop to it.  For that reason, I think your last move really plays against your strength.  It gives me a chance to get more greens with which to threaten you.\n\n42) sketchwick: Discover R2 Ox Y1 Cart\n\n43) Jesse: Discover G2 Core Y3 Foodfactory\n\tsketchwick: Man I should ask you to explain my stengths BEFORE I move.  ;)\n\n44) sketchwick: Sacrifice G2 Gateway\nBuild R1 Cart\nBuild R3 Ox\n\n45) Jesse: Discover R1 Jesse G1 Chon\n\tJesse: On the other hand, that&#39;s not half bad, either.  I should have given more thought to this possibility.  &lt;sigh&gt;  Did you notice that this is a difficult game?  :)\n\tsketchwick: I&#39;m sure you&#39;ve played a LOT more games than I have...jeep and I learned about the same time if not exactly the same, so our first few games weren&#39;t very complicated.  :)\n\tJesse: It can get very complicated.  I&#39;m definitely going to have to think a bit more on this one...\n\n46) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild Y2 Ox\nBuild Y3 Sketchwick\n\n47) Jesse: Sacrifice G2 Foodfactory\nBuild Y3 Neptune\nBuild R3 Chon\n\tsketchwick: so paranoid I&#39;ll miuss somehting huge at this stage\r\n\n\n48) sketchwick: Move R1 Ox Chon\n\tJesse: It&#39;s a very difficult part of the game.  You should definitely be careful.\n\n49) Jesse: Build R3 Jesse\n\tsketchwick: bleh bleh bleh\r\nsigh\n\n50) sketchwick: Sacrifice Y2 Ox\nMove R1 Cart Jesse\nMove R2 Cart Jesse\nCatastrophe Jesse Red\n\n51) Jesse: Sacrifice R1 Chon\nAttack R1 Chon\n\n52) sketchwick: Trade B2 Y2 Gateway\n\n53) Jesse: Build G2 Core\n\n54) sketchwick: Sacrifice G2 Sketchwick\nBuild G2 Sketchwick\nBuild Y1 Gateway\n\n55) Jesse: Sacrifice Y3 Neptune\nMove R3 Chon Jesse\nMove Y3 Jesse Chon\nDiscover G2 Core Y3 Wheel\n\tsketchwick: Ok so do you know you win NOW?  4 big ships is daunting :(\n\tJesse: Turning the tables will be a difficult task for you, but there&#39;s still a lot for me to do, and it&#39;s easy to make a misstep.  One clever sneak-attack from you, and I could be done for.  (I&#39;ve got my eye on those Gateway ships, buddy.)\n\n56) sketchwick: Move G2 Sketchwick Neptune\n\n57) Jesse: Sacrifice G2 Wheel\nBuild G2 Core\nBuild Y3 Neptune\n\n58) sketchwick: Build G2 Neptune\n\n59) Jesse: Sacrifice Y3 Neptune\nDiscover G2 Core Y3 Wheel\nDiscover Y1 Neptune B1 Kugelblitz\nMove G1 Core Neptune\nCatastrophe Neptune G\n\n60) sketchwick: Build G1 Sketchwick\n\n61) Jesse: Build G2 Wheel\n\n62) sketchwick: Sacrifice Y2 Ox\nMove G1 Sketchwick Wheel\nMove G1 Sketchwick Wheel\nCatastrophe Wheel Green\n\n63) Jesse: Build Y2 Chon\n\n64) sketchwick: Trade Y3 G3 Sketchwick\n\n65) Jesse: Discover B3 Core Y3 Wheel\n\n66) sketchwick: Build G1 Sketchwick\n\n67) Jesse: Trade Y1 G1 Kugelblitz\n\n68) sketchwick: Sacrifice Y1 Gateway\nMove R3 Ox Kugelblitz\n\n69) Jesse: Sacrifice G1 Kugelblitz\nBuild B2 Wheel\n\n70) sketchwick: Discover Y2 Gateway G3 Momma\n\n71) Jesse: Trade B2 G2 Wheel\n\n72) sketchwick: Move G1 Sketchwick Wheel\n\n73) Jesse: Sacrifice R1 Chon\nAttack G1 Wheel\n\n74) sketchwick: Sacrifice Y1 Sketchwick\nMove R3 Kugelblitz Wheel\n\n75) Jesse: Sacrifice Y2 Chon\nMove Y3 Chon Jesse\nMove G1 Wheel Sketchwick\n\tJesse: That was kind of evil.  It took some searching, but I believe I have an answer you won&#39;t like one bit.\n\n76) sketchwick: Sacrifice Y2 Momma\nMove R3 Wheel Sketchwick\nDiscover G3 Sketchwick Y3 Sigh\n\n77) Jesse: Sacrifice G1 Sketchwick\nBuild G1 Wheel\n\n78) sketchwick: Build G1 Sigh\n\n79) Jesse: Build B1 Wheel\n\n80) sketchwick: Move G3 Sigh Sketchwick\n\n81) Jesse: Build Y1 Jesse\n\n82) sketchwick: Build G1 Sketchwick\n\n83) Jesse: Sacrifice Y3 Jesse\nMove G2 Wheel Sketchwick\nMove G1 Wheel Sketchwick\nPass\nCatastrophe Sketchwick G\n\n84) sketchwick: Move G1 Sigh Sketchwick\n\n85) Jesse: Trade B3 G3 Wheel\n\n86) sketchwick: Build R1 Sketchwick\n\n87) Jesse: Build R1 Jesse\n\n88) sketchwick: Trade R1 Y1 Sketchwick\n\n89) Jesse: Discover R1 Jesse G1 Lever\n\n\tJesse: Well, thank you for a good game.  It didn&#39;t work out for you this time, but you&#39;ve shown me that the red-blue homeworld has more value than I had given it credit for.  I&#39;m trying it out for myself in a couple of games, now.\n\nHomeworlds Online (SDG# 2602)\nStarted: 2006.3.2, Ended: 2006.3.27\nParticipants: sketchwick (S), andylooney (N)\nWinner: sketchwick\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) sketchwick: Homeworld Y3 B1 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) sketchwick: Build G1 Sketchwick\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) sketchwick: Trade G1 R1 Sketchwick\n\n7) andylooney: Build G1 Andylooney\n\n8) sketchwick: Build R1 Sketchwick\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) sketchwick: Build R2 Sketchwick\n\n11) andylooney: Build R2 Andylooney\n\n12) sketchwick: Discover R1 Sketchwick B2 Berry\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) sketchwick: Build G1 Sketchwick\n\n15) andylooney: Discover R1 Andylooney G3 Garden\n\n16) sketchwick: Trade R1 G1 Berry\n\n17) andylooney: Build G2 Clampett\n\n18) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild G3 Sketchwick\nBuild G3 Berry\n\n19) andylooney: Discover G1 Clampett Y2 Plugh\n\n20) sketchwick: Move G2 Sketchwick Plugh\n\tsketchwick: that was handy...do you know how the undo feature works on SDG?  once per game or something?\n\n\nHomeworlds Online (SDG# 2720)\nStarted: 2006.3.6, Ended: 2006.3.7\nParticipants: feidoi (S), jlabrozzi (N)\nWinner: feidoi\n\n1) jlabrozzi: Homeworld G1 B2 Y3\n\n2) feidoi: Homeworld G3 B2 R3\n\tjlabrozzi: \n\tjlabrozzi: \n\n3) jlabrozzi: Build Y1 Jlabrozzi\n\n4) feidoi: Build R1 Feidoi\n\tjlabrozzi: go\n\n5) jlabrozzi: Trade Y1 G1 Jlabrozzi\n\n6) feidoi: Trade R1 Y1 Feidoi\n\tjlabrozzi: \n\n7) jlabrozzi: Discover Y3 Jlabrozzi R3 Kansas\n\n8) feidoi: Build Y1 Feidoi\n\n9) jlabrozzi: Build G1 Jlabrozzi\n\n10) feidoi: Discover Y1 Feidoi Y1 Shimina\n\n11) jlabrozzi: Build G2 Jlabrozzi\n\n12) feidoi: Build Y2 Feidoi\nCatastrophe Jlabrozzi Green\n\n\nHomeworlds Online (SDG# 2727)\nStarted: 2006.3.7, Ended: 2006.3.7\nParticipants: feidoi (S), jlabrozzi (N)\nWinner: jlabrozzi\n\n1) jlabrozzi: Pass\n\n2) feidoi: Homeworld Y1 B3 G3\n\n3) jlabrozzi: Homeworld Y2 G3 B3\n\n4) feidoi: Build G1 Feidoi\n\n5) jlabrozzi: Build B1 Jlabrozzi\n\n6) feidoi: Discover G1 Feidoi Y2 Shimina\n\n7) jlabrozzi: Trade B1 Y1 Jlabrozzi\n\n8) feidoi: Build G1 Feidoi\n\n9) jlabrozzi: Build B1 Jlabrozzi\n\n10) feidoi: Trade G1 Y1 Feidoi\n\n11) jlabrozzi: Trade B1 R1 Jlabrozzi\n\n12) feidoi: Build Y2 Feidoi\n\n13) jlabrozzi: Build Y3 Jlabrozzi\n\n14) feidoi: Move Y2 Feidoi Shimina\n\n15) jlabrozzi: Discover Y1 Jlabrozzi R1 Stankonia\n\n16) feidoi: Move Y2 Shimina Stankonia\n\n17) jlabrozzi: Build B1 Jlabrozzi\n\n18) feidoi: Attack Y1 Stankonia\n\n19) jlabrozzi: Build R1 Jlabrozzi\n\n20) feidoi: Build Y3 Feidoi\n\n21) jlabrozzi: Move Y3 Jlabrozzi Stankonia\n\n22) feidoi: Sacrifice Y3 Feidoi\nMove Y1 Feidoi Shimina\nMove Y2 Stankonia Jlabrozzi\nMove Y1 Stankonia Jlabrozzi\n\n23) jlabrozzi: Attack Y2S Jlabrozzi\n\n24) feidoi: Sacrifice G1 Shimina\nBuild Y3 Jlabrozzi\n\n25) jlabrozzi: Sacrifice Y2 Jlabrozzi\nMove Y3 Stankonia Shimina\nMove Y3 Shimina Feidoi\n\n26) feidoi: Sacrifice Y3 Jlabrozzi\nDiscover Y1 Jlabrozzi R1 Fu\nMove Y1 Fu Shimina\nMove Y1 Shimina Feidoi\n\n27) jlabrozzi: Sacrifice R1 Jlabrozzi\nAttack G3 Feidoi\n\n28) feidoi: Move Y1 Shimina Feidoi\n\n29) jlabrozzi: Sacrifice G3 Feidoi\nBuild Y2 Feidoi\nBuild Y2 Feidoi\nBuild Y3 Feidoi\nCatastrophe Feidoi Y\n\n\nHomeworlds Online (SDG# 2665)\nStarted: 2006.3.7, Ended: 2006.3.11\nParticipants: sketchwick (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld Y1 B3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) sketchwick: Build G1 Sketchwick\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) sketchwick: Discover G1 Sketchwick Y2 Again\n\n7) TwoShort: Build G1 Twoshort\n\n8) sketchwick: Build G2 Sketchwick\n\tsketchwick: is this going badly for me?\n\n9) TwoShort: Discover G1 Twoshort B3 Bluestar\n\tTwoShort: Not so far.  A quick rundown of my thinking at this point: I&#39;d like to use the &quot;Factory&quot;: sacrifice a g3 to grow 3 peices, including the same g3 you sacrificed in the first place.  I could do it now to grab both g2s, but that would let you get the remaining g3, which is what we&#39;re really after.  So I could grow one g2, but then you could factory and again get the G3.  So I won&#39;t grow, and must move or trade.  \n\n10) sketchwick: Build G2 Again\n\n11) TwoShort: Trade G1 Y1 Bluestar\n\tsketchwick: Oh, do you know how undo works on SDG?  Once per game or something?\n\tTwoShort: I beleive it is once per game.\n\n12) sketchwick: Discover G1 Again G1 Good\n\tTwoShort: Continuing my series of tips, the technique I&#39;m demostrating now is called &quot;Blowing It&quot;.  Sigh.\n\n13) TwoShort: Build G2 Twoshort\n\n14) sketchwick: Build G3 Again\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y2 Bluestar\nBuild G3 Twoshort\n\n16) sketchwick: Trade G2 R2 Sketchwick\n\tTwoShort: Switching to plan B...\n\n17) TwoShort: Sacrifice Y2 Bluestar\nDiscover Y2 Bluestar B2 Bomber\nDiscover Y1 Bluestar Y2 Denial\n\tsketchwick: I thought you&#39;d do that, but no clue how I should respond\n\tTwoShort: I might have moved the large green to a blue system.  But taking a red is not a bad choice as evidenced by the fact I&#39;m not sure what to do in response.  Andy Looneys &quot;draw your gun&quot; rule says to always immediately take red when your opponent does.  It&#39;s a good rule; and while I sometimes ignore it, I often regret doing so.\n\n18) sketchwick: Trade G3 Y3 Sketchwick\n\tTwoShort: By the way, on the undo, I now beleive it is once per move, which makes more sense...  one could of course ask Aaron for the definitive answer...\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild Y3 Bomber\n\n20) sketchwick: Sacrifice Y3 Sketchwick\nMove G2 Again Sketchwick\nMove G3 Again Yolonda\nMove G3 Yolonda Twoshort\n\n21) TwoShort: Sacrifice Y3 Bomber\nMove G1 Yolonda Twoshort\nDiscover Y2 Bomber R3 Desperation\nMove Y2 Desperation Twoshort\nCatastrophe Twoshort Green\n\tTwoShort: Gack!  Why do I insist on ignoring the Gun rule?  Did I mention I often regret it?  \n\n22) sketchwick: Move R2 Sketchwick Denial\n\tsketchwick: yeah, I didn&#39;t even see you could get out of it.\r\n\r\nshucks\n\n23) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Twoshort\nBuild Y3 Denial\n\tTwoShort: Well, I didn&#39;t see it at all, so being able to get out of it was just lucky\n\n24) sketchwick: Discover R2 Denial Y3 Bleh\n\n25) TwoShort: Trade Y2 R2 Twoshort\n\n26) sketchwick: Trade G2 Y2 Sketchwick\n\n27) TwoShort: Move Y3 Denial Sketchwick\n\n28) sketchwick: Sacrifice G1 Good\nBuild Y3 Sketchwick\nCatastrophe Sketchwick Yellow\n\n\nHomeworlds Online (SDG# 2749)\nStarted: 2006.3.8, Ended: 2006.3.9\nParticipants: jlabrozzi (S), feidoi (N)\nWinner: feidoi\n\n1) feidoi: Homeworld B1 G2 Y3\n\n2) jlabrozzi: Homeworld B3 Y2 G3\n\n3) feidoi: Build Y1 Feidoi\n\n4) jlabrozzi: Build G1 Jlabrozzi\n\n5) feidoi: Build Y1 Feidoi\n\n6) jlabrozzi: Build G1 Jlabrozzi\n\n7) feidoi: Trade Y1 G1 Feidoi\n\n8) jlabrozzi: Trade G1 R1 Jlabrozzi\n\n9) feidoi: Build G1 Feidoi\n\n10) jlabrozzi: Build R1 Jlabrozzi\n\n11) feidoi: Trade G1 R1 Feidoi\n\n12) jlabrozzi: Trade G1 Y1 Jlabrozzi\n\n13) feidoi: Build R2 Feidoi\n\n14) jlabrozzi: Build G1 Jlabrozzi\n\n15) feidoi: Build R2 Feidoi\n\n16) jlabrozzi: Discover Y1 Jlabrozzi B1 Egypt\n\n17) feidoi: Discover R2 Feidoi G3 Fool\n\n18) jlabrozzi: Move G3 Jlabrozzi Egypt\n\n19) feidoi: Build R2 Fool\n\n20) jlabrozzi: Trade G3 R3 Egypt\n\n21) feidoi: Sacrifice Y1 Feidoi\nDiscover R2 Fool Y1 Istanbul\n\n22) jlabrozzi: Move R1 Jlabrozzi Egypt\n\n23) feidoi: Move R2 Istanbul Jlabrozzi\n\n24) jlabrozzi: Move R3 Egypt Jlabrozzi\n\n25) feidoi: Sacrifice G1 Feidoi\nBuild R3 Jlabrozzi\nCatastrophe Jlabrozzi Red\n\n26) jlabrozzi: Move R1 Egypt Jlabrozzi\n\n27) feidoi: Build Y1 Feidoi\n\n28) jlabrozzi: Build R1 Jlabrozzi\n\n29) feidoi: Sacrifice Y1 Feidoi\nMove R2 Fool Egypt\n\n30) jlabrozzi: Build R2 Jlabrozzi\n\n31) feidoi: Sacrifice Y3 Feidoi\nDiscover R1 Feidoi Y3 Fool2\nMove R1 Fool2 Egypt\nMove R1 Egypt Jlabrozzi\nCatastrophe Jlabrozzi Red\n\n32) jlabrozzi: Build G1 Jlabrozzi\n\n33) feidoi: Attack Y1 Egypt\n\n34) jlabrozzi: Build G1 Jlabrozzi\n\n35) feidoi: Move R2 Egypt Jlabrozzi\n\n\nHomeworlds Online (SDG# 2691)\nStarted: 2006.3.11, Ended: 2006.5.23\nParticipants: Uglyfoot (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld G3 B1 Y3\n\n3) andylooney: Build G1 Andylooney\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) andylooney: Discover G1 Andylooney Y3 Clampett\n\n6) Uglyfoot: Trade Y1 G1 Uglyfoot\n\tUglyfoot: Welcome back!  Was it a good trip?\r\n\n\n7) andylooney: Build G1 Andylooney\n\n8) Uglyfoot: Build G2 Uglyfoot\n\n9) andylooney: Trade G1 Y1 Andylooney\n\n10) Uglyfoot: Discover G2 Uglyfoot B2 Centauri\n\n11) andylooney: Discover Y1 Andylooney G3 Garden\n\n12) Uglyfoot: Build Y1 Uglyfoot\n\n13) andylooney: Build Y2 Garden\n\n14) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n15) andylooney: Build G1 Andylooney\n\n16) Uglyfoot: Build G2 Centauri\n\n17) andylooney: Trade G1 R1 Andylooney\n\n18) Uglyfoot: Trade G2 Y2 Centauri\n\n19) andylooney: Discover Y1 Garden G2 Greendome\n\n20) Uglyfoot: Build G1 Centauri\n\n21) andylooney: Build G2 Andylooney\n\n22) Uglyfoot: Move G2 Centauri Clampett\n\n23) andylooney: Discover G1 Clampett Y2 Yellowdoor\n\n24) Uglyfoot: Trade G1 R1 Uglyfoot\n\n25) andylooney: Build R2 Andylooney\n\n26) Uglyfoot: Build R2 Uglyfoot\n\n27) andylooney: Discover G2 Andylooney Y3 Thurston\n\n28) Uglyfoot: Move R2 Uglyfoot Yellowdoor\n\n29) andylooney: Discover G1 Yellowdoor R3 Bigred\n\n30) Uglyfoot: Move R2 Yellowdoor Clampett\n\n31) andylooney: Build G1 Andylooney\n\n32) Uglyfoot: Build R2 Clampett\n\n33) andylooney: Trade R1 B1 Andylooney\n\n34) Uglyfoot: Move R2 Clampett Greendome\n\n35) andylooney: Discover Y1 Greendome B1 Bomber\n\n36) Uglyfoot: Build Y1 Centauri\n\n37) andylooney: Sacrifice G3 Andylooney\nBuild G3 Andylooney\nBuild Y2 Bomber\nBuild B2 Andylooney\n\n38) Uglyfoot: Build R1 Clampett\n\n39) andylooney: Sacrifice G2 Thurston\nBuild Y3 Garden\nBuild R3 Andylooney\n\n40) Uglyfoot: Sacrifice Y2 Centauri\nMove R1 Clampett Andylooney\nMove R2 Clampett Andylooney\nCatastrophe Andylooney Red\n\n41) andylooney: Trade Y1 R1 Bomber\n\n42) Uglyfoot: Build G2 Clampett\n\n43) andylooney: Move B2 Andylooney Garden\n\n44) Uglyfoot: Move G2 Clampett Andylooney\n\n45) andylooney: Sacrifice G3 Andylooney\nBuild G3 Bigred\nBuild B3 Andylooney\nBuild R2 Bomber\n\n46) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack B1 Andylooney\n\n47) andylooney: Trade B3 R3 Andylooney\n\n48) Uglyfoot: Sacrifice G2 Clampett\nBuild B3 Andylooney\nBuild B3 Andylooney\nCatastrophe Andylooney B\n\n49) andylooney: Attack G2S Andylooney\n\n50) Uglyfoot: Build G2 Centauri\n\tandylooney: Nice job! (But now I must promise revenge...)\n\n51) andylooney: Discover G2 Andylooney Y3 Thurston\n\n52) Uglyfoot: Build R1 Greendome\n\n53) andylooney: Sacrifice G3 Bigred\nBuild G3 Bigred\nBuild R2 Bomber\nBuild R3 Andylooney\n\n54) Uglyfoot: Sacrifice Y1 Centauri\nMove R1 Greendome Bomber\nCatastrophe Bomber R\n\n55) andylooney: Move R3 Andylooney Centauri\n\n56) Uglyfoot: Sacrifice G2 Centauri\nBuild R1 Uglyfoot\nBuild R1 Greendome\n\n57) andylooney: Attack G1S Centauri\n\n58) Uglyfoot: Build R2 Greendome\n\n59) andylooney: Sacrifice G3 Bigred\nBuild G2 Centauri\nBuild R2 Centauri\nBuild G3 Andylooney\n\n60) Uglyfoot: Build Y1 Uglyfoot\n\n61) andylooney: Move Y2 Garden Centauri\n\n62) Uglyfoot: Move R1 Uglyfoot Centauri\n\n63) andylooney: Sacrifice Y2 Bomber\nMove R2 Centauri Thurston\nMove R2 Thurston Greendome\nCatastrophe Greendome Red\n\n64) Uglyfoot: Attack G1 Centauri\n\n65) andylooney: Sacrifice G2 Centauri\nBuild Y1 Garden\nBuild Y2 Centauri\n\n66) Uglyfoot: Trade Y3 B3 Uglyfoot\n\n67) andylooney: Sacrifice G3 Andylooney\nBuild G2 Andylooney\nBuild G2 Bigred\nBuild G3 Thurston\n\n68) Uglyfoot: Build R1 Centauri\n\n69) andylooney: Sacrifice R3 Centauri\nAttack R1S Centauri\nAttack R1S Centauri\nAttack G1S Centauri\n\tUglyfoot: hogging all the green?  (too)\n\n70) Uglyfoot: Build Y2 Uglyfoot\n\n71) andylooney: Discover G2 Andylooney Y3 Clampett\n\n72) Uglyfoot: Build R2 Uglyfoot\n\n73) andylooney: Build R2 Andylooney\n\n74) Uglyfoot: Move R1 Uglyfoot Centauri\n\n75) andylooney: Attack R1S Centauri\n\n76) Uglyfoot: Move R2 Uglyfoot Centauri\nCatastrophe Centauri R\n\n77) andylooney: Sacrifice Y2 Centauri\nMove G3 Thurston Centauri\nMove G3 Centauri Uglyfoot\n\n78) Uglyfoot: Build Y2 Uglyfoot\n\n79) andylooney: Sacrifice R3 Andylooney\nAttack Y2S Uglyfoot\nAttack Y2S Uglyfoot\nAttack B3S Uglyfoot\n\tUglyfoot: good game!\r\n\n\n\nHomeworlds Online (SDG# 2799)\nStarted: 2006.3.18, Ended: 2006.3.30\nParticipants: ts52 (S), Uglyfoot (N)\nWinner: ts52\n\n1) Uglyfoot: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tts52: Good luck!\n\n4) ts52: Build G1 Ts52\n\n5) Uglyfoot: Discover G1 Uglyfoot B3 Aquarius\n\n6) ts52: Discover G1 Ts52 B2 R2d2\n\tUglyfoot: Thanks.  Win or lose, it will be fun.\r\n\n\tts52: Exactly. I&#39;m so glad Aaron set this up. Now I can play so much more Homeworlds.\n\n7) Uglyfoot: Build G1 Aquarius\n\n8) ts52: Build G2 R2d2\n\n9) Uglyfoot: Build G2 Uglyfoot\n\n10) ts52: Trade G1 Y1 R2d2\n\n11) Uglyfoot: Trade G1 R1 Aquarius\n\n12) ts52: Build G1 Ts52\n\n13) Uglyfoot: Build G1 Aquarius\n\n14) ts52: Sacrifice G3 Ts52\nBuild G2 R2d2\nBuild G3 Ts52\nBuild G3 R2d2\n\n15) Uglyfoot: Trade G1 Y1 Aquarius\n\n16) ts52: Trade G2 R2 R2d2\n\n17) Uglyfoot: Build Y2 Aquarius\n\n18) ts52: Discover G2 R2d2 Y3 Sol\n\n19) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Aquarius\nBuild G2 Aquarius\nBuild G3 Uglyfoot\n\n20) ts52: Move G3 R2d2 Aquarius\nCatastrophe Aquarius Green\n\n21) Uglyfoot: Move G2 Uglyfoot Aquarius\n\n22) ts52: Build G1 Sol\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) ts52: Move G1 Sol R2d2\n\n25) Uglyfoot: Build G2 Aquarius\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Sol\nBuild R1 R2d2\n\n27) Uglyfoot: Trade G1 R1 Uglyfoot\n\n28) ts52: Build Y2 R2d2\n\n29) Uglyfoot: Discover G2 Aquarius R2 Battlestar\n\n30) ts52: Sacrifice Y2 R2d2\nMove G2 Sol Uglyfoot\nMove G3 Sol Uglyfoot\n\n31) Uglyfoot: Attack G3S Uglyfoot\n\n32) ts52: Sacrifice R1 R2d2\nAttack R1 Uglyfoot\n\n33) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n34) ts52: Trade G1 R1 Ts52\n\n35) Uglyfoot: Move Y1 Aquarius Battlestar\n\n36) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Uglyfoot\nBuild R3 Uglyfoot\n\n37) Uglyfoot: Move R1 Aquarius Uglyfoot\nCatastrophe Uglyfoot R\n\n38) ts52: Build G1 Uglyfoot\n\n39) Uglyfoot: Build G1 Uglyfoot\nCatastrophe Uglyfoot G\n\n40) ts52: Build G1 R2d2\n\n41) Uglyfoot: Build Y2 Battlestar\n\n42) ts52: Move G1 R2d2 Ts52\n\n43) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n44) ts52: Move R2 R2d2 Aquarius\n\n45) Uglyfoot: Sacrifice Y2 Battlestar\nMove G2 Aquarius R2d2\nMove Y2 Aquarius Uglyfoot\n\n46) ts52: Build Y2 R2d2\n\n47) Uglyfoot: Build Y2 Battlestar\n\n48) ts52: Sacrifice R1 Ts52\nAttack G2 R2d2\n\n49) Uglyfoot: Build Y3 Battlestar\n\n50) ts52: Sacrifice Y2 R2d2\nMove Y1 R2d2 Aquarius\nMove Y1 Aquarius Battlestar\nCatastrophe Battlestar Yellow\n\n51) Uglyfoot: Build G1 Uglyfoot\n\n52) ts52: Trade G1 Y1 R2d2\n\n53) Uglyfoot: Discover G1 Uglyfoot Y3 Portal\n\n54) ts52: Build G1 R2d2\n\n55) Uglyfoot: Build Y1 Uglyfoot\n\n56) ts52: Build Y2 R2d2\n\n57) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n58) ts52: Move G1 R2d2 Aquarius\n\n59) Uglyfoot: Build G2 Uglyfoot\n\n60) ts52: Build G3 Ts52\n\n61) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Battlestar\nBuild Y1 Uglyfoot\n\n62) ts52: Sacrifice Y2 R2d2\nMove Y1 R2d2 Aquarius\nMove Y1 Aquarius Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n63) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n64) ts52: Build G3 R2d2\n\n65) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G2 Battlestar Ts52\nMove G2 Uglyfoot Ts52\nMove G1 Portal Uglyfoot\nCatastrophe Ts52 G\n\n66) ts52: Trade G1 Y1 Aquarius\n\n67) Uglyfoot: Build G1 Battlestar\n\n68) ts52: Move R2 Aquarius Uglyfoot\n\n69) Uglyfoot: Build G1 Uglyfoot\n\n70) ts52: Attack R1 Uglyfoot\n\n71) Uglyfoot: Build G2 Uglyfoot\n\n72) ts52: Attack G2 Uglyfoot\n\tUglyfoot: Thank you for the game.\r\n\n\n73) Uglyfoot: Build G2 Uglyfoot\n\n74) ts52: Build G3 R2d2\nCatastrophe Uglyfoot Green\n\n\nHomeworlds Online (SDG# 2909)\nStarted: 2006.3.27, Ended: 2006.4.13\nParticipants: Lexicon (S), Cerulean (N)\nWinner: Lexicon\n\n1) Cerulean: Homeworld G2 B1 Y3\n\n2) Lexicon: Homeworld G1 B3 Y3\n\n3) Cerulean: Build Y1 Cerulean\n\n4) Lexicon: Build Y1 Lexicon\n\n5) Cerulean: Discover Y1 Cerulean G3 Edison\n\n6) Lexicon: Trade Y1 G1 Lexicon\n\n7) Cerulean: Build Y1 Cerulean\n\n8) Lexicon: Build G1 Lexicon\n\n9) Cerulean: Trade Y1 B1 Cerulean\n\n10) Lexicon: Discover G1 Lexicon Y2 Coffee\n\n11) Cerulean: Build Y1 Edison\n\n12) Lexicon: Build G2 Coffee\n\n13) Cerulean: Move B1 Cerulean Edison\n\n14) Lexicon: Build G2 Lexicon\n\n15) Cerulean: Trade Y1 R1 Edison\n\n16) Lexicon: Build G3 Coffee\n\n17) Cerulean: Move R1 Edison Coffee\n\n18) Lexicon: Discover G1 Coffee R3 Tea\n\n19) Cerulean: Move R1 Coffee Edison\n\n20) Lexicon: Trade G2 B2 Lexicon\n\n21) Cerulean: Build Y1 Cerulean\n\n22) Lexicon: Sacrifice G3 Coffee\nBuild G2 Tea\nBuild G3 Lexicon\nBuild G3 Coffee\n\n23) Cerulean: Discover B1 Edison R2 Kennedy\n\n24) Lexicon: Sacrifice Y3 Lexicon\nMove G1 Tea Cerulean\nMove G2 Tea Cerulean\nMove B2 Lexicon Coffee\n\n25) Cerulean: Sacrifice Y1 Edison\nMove B1 Kennedy Lexicon\n\n26) Lexicon: Sacrifice B2 Coffee\nTrade G1 Y1 Cerulean\nTrade G2 Y2 Cerulean\nCatastrophe Cerulean Yellow\n\n\tLexicon: Heh.  Good game. ;)\n\nHomeworlds Online (SDG# 2668)\nStarted: 2006.3.30, Ended: 2006.4.19\nParticipants: jeep (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Back for another round?  Excellent!\n\n2) jeep: Homeworld Y1 B3 G3\n\tjeep: Uh oh, Red in your homeworld...\n\n3) Jesse: Build G1 Jesse\n\tJesse: Well, I saw from my game with sketchwick that it has some interesting properties, so I thought I&#39;d experiment with it a bit.\n\n4) jeep: Build G1 Jeep\n\tjeep: Yeah, Sketch destryed me with it.  ;)\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) jeep: Trade G3 Y3 Jeep\n\n7) Jesse: Build G1 Jesse\n\n8) jeep: Build G1 Jeep\n\n9) Jesse: Discover G1 Jesse Y3 Ichi\n\n10) jeep: Discover G1 Jeep B2 Moon\n\n11) Jesse: Build G2 Jesse\n\n12) jeep: Build Y1 Jeep\n\n13) Jesse: Build Y2 Jesse\n\n14) jeep: Move Y1 Jeep Moon\n\n15) Jesse: Trade G2 R2 Jesse\n\n16) jeep: Trade G1 R1 Moon\n\n17) Jesse: Discover Y2 Jesse G3 Ni\n\n18) jeep: Build G1 Jeep\n\n19) Jesse: Build G2 Jesse\n\n20) jeep: Trade G1 R1 Jeep\n\n21) Jesse: Move R2 Jesse Ni\n\n22) jeep: Build R2 Jeep\n\n23) Jesse: Build Y2 Ni\n\tjeep: Sorry for the delay there...\n\n24) jeep: Build G1 Jeep\n\n25) Jesse: Build G2 Ichi\n\n26) jeep: Move R2 Jeep Moon\n\n27) Jesse: Discover G1 Ichi B2 San\n\n28) jeep: Sacrifice G1 Jeep\nBuild Y2 Moon\n\n29) Jesse: Build Y3 Jesse\n\n30) jeep: Trade R2 G2 Moon\n\n31) Jesse: Sacrifice G3 Jesse\nBuild G1 Ichi\nBuild G3 San\nBuild G3 Jesse\n\tjeep: That was a silly mistake last move, eh?  Still, I&#39;m getting so far behind in my games against you... Guess, I&#39;m just not seeing it yet.\n\tJesse: It was kind of a silly mistake.  It would have been difficult to avoid me getting the y3 anyway, though, since I could sacrifice (or use my factory) for it when the time was right.\n\tJesse: It&#39;s also difficult for you to avoid me getting that last g3, since I&#39;ve been working towards factorying that one up, too.  Removing that g2 from the stash makes that possible now.\n\n32) jeep: Build R2 Jeep\n\tJesse: Sometimes, if you want to stop something like that, you need to remove the large piece from the stash by discovering it as a new system marker.  I thought you might park your r2 on it, for instance.  That would keep me from using it as a ship.  Unfortunately, it would also give you some positional problems.\n\tJesse: At this point, I have much better production capacity than you, on account of my factories.  On the other hand, you are better positioned to produce red ships.  You may be able to make it difficult for me to actually produce anything without it getting clobbered.\n\n33) Jesse: Move Y2 Ni San\n\tjeep: Yeah, I&#39;ve felt under the gun from the get go.  I have a hard time getting a strategy working for me early.  I&#39;m probably too hesitant to commit to one.  Trying to be too reactive.  I&#39;ll have to consider it next time.\n\tJesse: It&#39;s usually not so much about about committing to a strategy, as keeping your strategy flexible.  If you plan for multiple contingencies, you can have a main plan that allows you to not only react to your opponent&#39;s plays, but do so to your own benefit.  Sometimes it doesn&#39;t work out that way, but it will happen more often as you learn common contingencies to plan for, and things to avoid that make your fleet inflexible.\n\n34) jeep: Build R2 Moon\n\tJesse: One danger to watch for right now is that your large defender is the same color as one of your system markers, putting you in danger of losing both at once.  Unfortunately, changing it gives you problems, as well.\n\n35) Jesse: Build R3 Ni\n\tjeep: At least I think I learned something new this time...\n\n36) jeep: Sacrifice Y2 Moon\nMove R1 Moon Ni\nMove R2 Moon Ni\nCatastrophe Ni Red\n\n37) Jesse: Build Y2 San\n\tJesse: Did you intend to blast me (catastrophe)?  If not, your plan is either too subtle for me to see, or you missed something that will seem pretty obvious in a moment.\n\tjeep: Yes, I intended to catastrophe and missed typing it in...\n\n\tjeep: I&#39;m not thinking it mattered, though. Sure seems like a lost cause.\n\nHomeworlds Online (SDG# 2728)\nStarted: 2006.3.31, Ended: 2006.5.10\nParticipants: jeep (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tjeep: Our other game is all over but the crying, I think.  :(\n\n2) jeep: Homeworld G3 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jeep: Build Y1 Jeep\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Trade Y3 G3 Jeep\n\n7) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n8) jeep: Discover Y1 Jeep G2 Thumb\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) jeep: Build G1 Jeep\n\n11) TwoShort: Build B1 Twoshort\n\n12) jeep: Trade G1 Y1 Jeep\n\n13) TwoShort: Build G1 Twoshort\n\n14) jeep: Sacrifice G3 Jeep\nBuild Y2 Jeep\nBuild Y2 Thumb\nBuild Y2 Thumb\n\n15) TwoShort: Discover B1 Twoshort G3 Grogar\n\tjeep: Somehow, I thought I&#39;d end up with a non-yellow piece too... Wonder how this will turn out now.\n\n16) jeep: Build Y3 Jeep\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\tTwoShort: Sometimes doing something that seems obviously bad (like letting you monopolize yellow) is secretly brilliant...  I wish I thought this was one of those times.\n\n18) jeep: Trade Y3 B3 Jeep\n\n19) TwoShort: Trade B3 Y3 Twoshort\n\n20) jeep: Build Y3 Jeep\n\n21) TwoShort: Move B1 Twoshort Yolonda\n\n22) jeep: Discover B3 Jeep G2 Bellina\n\n23) TwoShort: Build B3 Yolonda\n\n24) jeep: Build B3 Bellina\n\n25) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Grogar Bellina\nMove B1 Grogar Bellina\nMove B3 Yolonda Twoshort\nCatastrophe Bellina Blue\n\n26) jeep: Discover Y2 Jeep B2 Bellina\n\n27) TwoShort: Trade B3 Y3 Twoshort\n\n28) jeep: Trade Y3 B3 Jeep\n\n29) TwoShort: Build B1 Grogar\n\n30) jeep: Build Y3 Jeep\n\n31) TwoShort: Build B3 Yolonda\n\n32) jeep: Trade Y3 R3 Jeep\n\n33) TwoShort: Build B3 Grogar\n\n34) jeep: Build Y3 Jeep\n\n35) TwoShort: Trade B2 R2 Grogar\n\n36) jeep: Move B3 Jeep Thumb\n\n37) TwoShort: Trade B3 G3 Grogar\n\n38) jeep: Trade Y3 B3 Jeep\n\n39) TwoShort: Build G1 Grogar\n\n40) jeep: Build Y3 Jeep\n\n41) TwoShort: Sacrifice G3 Grogar\nBuild G2 Grogar\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n42) jeep: Trade Y3 R3 Jeep\n\tjeep: This is a tough one...\n\n43) TwoShort: Move Y3 Twoshort Grogar\n\n44) jeep: Build Y3 Jeep\n\n45) TwoShort: Trade B3 R3 Yolonda\n\n46) jeep: Discover Y2 Thumb B3 Stage\n\tjeep: Sorry, it&#39;s too late and this is too hard of a game for me to make my move tonight.  I&#39;ll move tomorrow.  ;)\n\n47) TwoShort: Sacrifice G3 Twoshort\nBuild R1 Grogar\nBuild R1 Yolonda\nBuild G3 Twoshort\n\n48) jeep: Move R3 Jeep Thumb\n\n49) TwoShort: Move R2 Grogar Bellina\n\n50) jeep: Move Y2 Bellina Stage\n\n51) TwoShort: Move R1 Yolonda Twoshort\n\n52) jeep: Move Y1 Thumb Stage\n\n53) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild R1 Twoshort\nBuild G3 Twoshort\n\n54) jeep: Build R2 Jeep\n\tTwoShort: I love these simple, straight-forward games, without too many peices in play all at once...\n\tjeep: Me too... I mean it must be simple, right?  Only two pyramids in the stash, how many options can there be?\n\tjeep: Yeah, this is a thinker.  I&#39;ll have to set it up, I think.  It&#39;s hard to keep scrolling.\n\tTwoShort: I&#39;ve taken to copying the tough ones into MSPaint and pushing them around there...\n\tjeep: You have more numbers and better position.  I have more large ships.  You have a complete monopoly on G and I have most of Y.  Tough game.\n\tjeep: Sorry this is taking so long.  Just leting you know I&#39;m thinking about it.\n\n55) TwoShort: Move Y3 Grogar Bellina\n\tjeep: Pshew... again, I&#39;m hoping I didn&#39;t screw up.\n\n56) jeep: Move B3 Thumb Stage\n\tTwoShort: Nice to hear you&#39;re worried, since I feel like I&#39;m trying to find a way to make a comeback.\n\tTwoShort: Sorry about that, but I just noticed a possibility... gotta take a look through it...\n\tTwoShort: OK, figured out why my idea was dumb, back to plan A\n\n57) TwoShort: Move Y3 Bellina Stage\nCatastrophe Stage Yellow\n\n58) jeep: Trade B3 Y3 Stage\n\n59) TwoShort: Sacrifice B2 Grogar\nTrade R2 Y2 Bellina\nTrade G2 Y2 Grogar\n\n60) jeep: Discover R3 Thumb B3 Stage2\n\tjeep: Sorry... I found a note I wrote and am trying to deciper it.  I have lousy hand writing... but it says to do something if you give up the Y3 like that.\n\n61) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Grogar\nBuild G2 Grogar\nBuild G3 Twoshort\n\n62) jeep: Move B3 Jeep Thumb\n\tTwoShort: &quot;Take it&quot; one assumes :)\r\nI figure I&#39;m better off with two two pointers in this case, and my green advantage only helps if there is stuff in the stash...  But your now 5-2 advantage in 3 pointers is not very pleasing to me.\n\tjeep: I&#39;m beginning to regret not blowing up Y in your homeworld now.  Seemed like I wanted to hold the near monopoly, though... NOW it doesn&#39;t seem that way...\n\tjeep: You do have a 13-8 advantage in ships... and a factory going.  So I&#39;m not feeling like my 5-2 (effectively 5-3) advantage in 3-pointers is that huge.\n\n63) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Yolonda\nBuild R2 Yolonda\n\tTwoShort: Oh, I&#39;ll agree that this game is reasonably even; which is interesting to me since my usual rule is that 3-pointers and yellow are what matters.  You have, of course, found a way to prevent my recovering the B3, which was my next plan.\n\tTwoShort: Push my strength I guess...\n\n64) jeep: Move B3 Thumb Grogar\n\n65) TwoShort: Sacrifice Y2 Grogar\nMove B1 Grogar Thumb\nMove R3 Yolonda Thumb\n\n66) jeep: Sacrifice Y2 Thumb\nMove B3 Grogar Bellina\nMove B3 Bellina Yolonda\n\n67) TwoShort: Sacrifice B1 Thumb\nTrade G1 B1 Yolonda\nCatastrophe Yolonda Blue\n\tTwoShort: Sorry to take so long; definitely a tough game.  \n\n68) jeep: Trade Y1 G1 Jeep\n\tjeep: I don&#39;t begrudge you all the time you need.  Feel free to take it.  This one is getting real thinky.  ;)\n\n69) TwoShort: Discover G1 Grogar Y2 Yak\n\tTwoShort: No choice on this one\n\n70) jeep: Discover G1 Jeep Y2 Mover\n\n71) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R2 Thumb\nBuild Y1 Bellina\n\n72) jeep: Trade R2 B2 Jeep\n\n73) TwoShort: Trade R1 B1 Twoshort\n\n74) jeep: Build R1 Jeep\n\n75) TwoShort: Move B1 Twoshort Grogar\n\n76) jeep: Move R1 Jeep Mover\n\n77) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B1 Grogar\nBuild R2 Grogar\n\n78) jeep: Move B2 Jeep Mover\n\n79) TwoShort: Sacrifice Y2 Bellina\nMove R2 Yolonda Mover\nMove B1 Grogar Mover\n\n80) jeep: Attack R2N Mover\n\n81) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild B3 Mover\nBuild G3 Twoshort\n\tjeep: Not sure if you saw my post in the forum... I have company until Wednesday, so will be slow.  This game is likely the one hit hardest.  I feel like I&#39;m on the downward spiral onw, though.  :(\n\tTwoShort: Don&#39;t worry about being slow; I understand there&#39;s more to life than homeworlds.  I am now feeling pretty good about this game; as strategies go, &quot;Take all the peices&quot; seems not so bad :)\n\n82) jeep: Sacrifice Y3 Stage\nDiscover G1 Mover Y3 Saver\nMove B2 Mover Stage2\nDiscover R2 Mover B3 Sigh\n\n83) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Yak\nBuild Y3 Bellina\n\n84) jeep: Sacrifice G1 Saver\nBuild Y3 Jeep\n\tjeep: I knew there was some reason I should have taken them both... \n\n85) TwoShort: Sacrifice Y2 Grogar\nMove G1 Yak Jeep\nMove G2 Yak Jeep\n\tTwoShort: To take them both you had to sacrifice an r3 I could then grow... not much better\n\n86) jeep: Sacrifice R2 Sigh\nAttack G2N Jeep\nAttack G1N Jeep\n\n87) TwoShort: Sacrifice Y3 Bellina\nMove G2 Grogar Bellina\nMove G2 Bellina Jeep\nMove Y1 Bellina Jeep\nCatastrophe Jeep Green\n\n88) jeep: Sacrifice B2 Stage2\nTrade Y3 G3 Jeep\nTrade R3 Y3 Stage2\n\n89) TwoShort: Trade G3 Y3 Twoshort\n\tjeep: I think I was in command when I could have destroyed one of your stars, my hesitation probably cost me the game.  :(\n\n90) jeep: Attack Y1N Jeep\n\tTwoShort: I know I was feeling pretty backed into a corner when you had almost all the yellow and more 3-pointers; classically the things that matter.  But having a factory going when you didn&#39;t was sure nice; whatever sacrifices, catastrophes etc. I felt threatened by, I could just make sure I&#39;d be able to mop up the peices afterwards.  Anyway, it was quite interesting and challenging.  Thanks for a good game!\n\n91) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Mover Jeep\nMove B1 Mover Jeep\nMove B1 Grogar Jeep\nCatastrophe Jeep Blue\n\n\nHomeworlds Online (SDG# 2980)\nStarted: 2006.4.8, Ended: 2006.5.17\nParticipants: Laurie_Menke (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld Y1 B2 G3\n\n2) Laurie_Menke: Homeworld B3 Y2 G3\n\tLaurie_Menke: Hi, Andy!  I&#39;d wish you good luck, but I&#39;m pretty sure I&#39;m the one that needs it.  ;o)\n\n3) andylooney: Build G1 Andylooney\n\tandylooney: Hello! Good luck!\r\n\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) andylooney: Discover G1 Andylooney Y3 Howell3\n\n6) Laurie_Menke: Discover G1 Laurie_menke B1 Paintshop\n\n7) andylooney: Build G1 Howell3\n\n8) Laurie_Menke: Build G2 Paintshop\n\n9) andylooney: Build G2 Andylooney\n\n10) Laurie_Menke: Trade G1 Y1 Paintshop\n\n11) andylooney: Trade G2 Y2 Andylooney\n\n12) Laurie_Menke: Build Y1 Paintshop\n\n13) andylooney: Discover Y2 Andylooney G3 Paradise\n\n14) Laurie_Menke: Discover G2 Paintshop Y3 Luella\n\n15) andylooney: Discover G1 Howell3 B1 Bomber\n\n16) Laurie_Menke: Discover Y1 Paintshop Y3 Sharon\n\n17) andylooney: Build Y2 Paradise\n\n18) Laurie_Menke: Build G1 Laurie_menke\n\n19) andylooney: Build G2 Andylooney\n\n20) Laurie_Menke: Move Y1 Sharon Bomber\n\n21) andylooney: Trade G3 Y3 Andylooney\n\n22) Laurie_Menke: Trade Y1 R1 Bomber\n\n23) andylooney: Discover G2 Andylooney G3 Jolly\n\n24) Laurie_Menke: Attack G1 Bomber\n\tLaurie_Menke: LOL...good name.  :o)\n\n25) andylooney: Build G2 Howell3\n\n26) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild R1 Bomber\nBuild Y1 Paintshop\n\n27) andylooney: Discover G1 Howell3 B1 Bird\n\n28) Laurie_Menke: Sacrifice Y1 Paintshop\nMove R1 Bomber Luella\n\tLaurie_Menke: The Blue Bird of happiness?  :o)\n\n29) andylooney: Move Y2 Paradise Andylooney\n\n30) Laurie_Menke: Move R1 Luella Bird\n\tandylooney: You could say that. The Blue Bird is also one of my favorite Amsterdam Coffeeshops...\n\tLaurie_Menke: Well, then I guess it definitely *is* the Blue Bird of happiness for you!  :o)\n\tLaurie_Menke: Sorry about taking it over, then...  :o(\n\n31) andylooney: Sacrifice Y3 Andylooney\nMove G2 Howell3 Bird\nMove G1 Bird Laurie_menke\nMove G2 Bird Laurie_menke\nCatastrophe Laurie_menke Green\n\tandylooney: Here&#39;s the thing that&#39;s really funny about that... Russell and I played a particularly memorable game of Homeworlds one night, at the Bluebird...\n\tandylooney: I lost that game, by doing something which has since become nicknamed, in honor of that night, as the Birdbird Mistake. And you just did the exact same thing!\n\tandylooney: Sorry! Better luck next time!\r\n\n\tLaurie_Menke: Wow...that *is* funny!  Well, I guess now I can say I&#39;ve committed a famous mistake...LOL!  Thanks for the fun!\n\n\nHomeworlds Online (SDG# 2990)\nStarted: 2006.4.8, Ended: 2006.4.28\nParticipants: Laurie_Menke (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\n2) Laurie_Menke: Homeworld R3 B2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Jesse: Build G1 Jesse\n\tLaurie_Menke: That&#39;s a very cool trophy in your Trophy Case, Jesse!  :o)\n\n8) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tJesse: Hmm?  What trophy case?\n\tLaurie_Menke: Go to your home page.  Above the list of games are three links:  Games History, Highlight Leaderboard, and Trophy Case...take a look!  (It&#39;s new.)  :o)\n\n9) Jesse: Trade G1 R1 Jesse\n\tJesse: Huh.  Nifty!\n\n10) Laurie_Menke: Discover G1 Laurie_menke Y1 Luella\n\tLaurie_Menke: :o)\n\n11) Jesse: Build G1 Jesse\n\n12) Laurie_Menke: Build Y2 Laurie_menke\n\n13) Jesse: Build Y2 Jesse\n\n14) Laurie_Menke: Build G1 Luella\n\n15) Jesse: Discover Y2 Jesse G3 Makemonkeyfast\n\n16) Laurie_Menke: Discover Y2 Laurie_menke B1 Paintshop\n\n17) Jesse: Discover G1 Jesse Y3 Nomonkeydown\n\n18) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: LOL...what&#39;s next?  &quot;MonkeyDoesn&#39;tGrowOnTrees&quot;?  ;o)\n\n19) Jesse: Sacrifice G3 Jesse\nBuild Y3 Jesse\nBuild Y3 Makemonkeyfast\nBuild G2 Nomonkeydown\n\tJesse: Don&#39;t be silly.  Of course monkey grows on trees!  Also, there&#39;s a pathetic 15 character limit, which I discovered when I tried &quot;DoubleYourMonkey&quot;.  Very sad.\n\n20) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G1 Luella Nomonkeydown\nMove G1 Luella Nomonkeydown\nCatastrophe Nomonkeydown G\n\tLaurie_Menke: ::sigh::  Alas.  :o/\n\tLaurie_Menke: BTW...where can I get me one of those trees?  I&#39;ve been doing this all wrong!  ;o)\n\n21) Jesse: Trade Y3 G3 Jesse\n\tJesse: That&#39;s a tough one.  I think they&#39;re very hard to import, these days, on account of very strict quarantine requirements.  You might have more luck if you move to India.\n\n22) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :o)\n\n23) Jesse: Move Y2 Makemonkeyfast Paintshop\n\n24) Laurie_Menke: Trade Y2 R2 Paintshop\n\n25) Jesse: Sacrifice R1 Jesse\nAttack R2 Paintshop\n\n26) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tJesse: This is why it&#39;s best not to wait too long to get into red after your opponent does.\n\tLaurie_Menke: Ack!  I forget about the darn sacrificing thing every time!  Grr....\n\n27) Jesse: Build G1 Jesse\n\n28) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Actually, that last move was probably stupid, too.  I think my r3 star would have allowed my little 1&#39;s to attack your 2 if you came to my homeworld anyway, right?  ::sigh::\n\n29) Jesse: Discover G1 Jesse Y3 Colorofmonkey\n\tJesse: Yup.  You don&#39;t want to do any of the things you could do with that R3, either: You&#39;ll be blasted if you build a new red ship, and you&#39;ll leave your homeworld undefended if you move it out or sacrifice it (even if you had a target worth sacrificing it for).\n\n30) Laurie_Menke: Discover G1 Laurie_menke Y1 Gettinoutadodge\n\tLaurie_Menke: Yep...I&#39;ve screwed this up pretty royally.  :o(  But I&#39;m going to do my best to try to salvage the situation....\n\n31) Jesse: Build G2 Jesse\n\n32) Laurie_Menke: Build G2 Gettinoutadodge\n\n33) Jesse: Sacrifice G3 Jesse\nBuild G2 Jesse\nBuild G3 Jesse\nBuild G3 Colorofmonkey\n\n34) Laurie_Menke: Sacrifice G2 Gettinoutadodge\nBuild G2 Laurie_menke\nBuild Y2 Laurie_menke\n\n35) Jesse: Sacrifice G2 Jesse\nBuild Y2 Paintshop\nBuild Y3 Jesse\n\tJesse: Gettin back inta Dodge, then?\n\n36) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\tLaurie_Menke: LOL...I guess so.  ;o)\n\n37) Jesse: Move G1 Colorofmonkey Paintshop\n\n38) Laurie_Menke: Build G2 Gettinoutadodge\n\n39) Jesse: Sacrifice G3 Colorofmonkey\nBuild G3 Paintshop\nBuild Y2 Makemonkeyfast\nBuild Y3 Jesse\n\n40) Laurie_Menke: Move B2 Laurie_menke Gettinoutadodge\n\n41) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R1 Paintshop\nBuild R1 Paintshop\n\n42) Laurie_Menke: Move R3 Laurie_menke Paintshop\n\n43) Jesse: Sacrifice Y3 Jesse\nMove G3 Paintshop Laurie_menke\nMove G1 Paintshop Laurie_menke\nMove Y2 Paintshop Laurie_menke\nCatastrophe Paintshop R\nCatastrophe Laurie_menke G\n\n44) Laurie_Menke: Build B1 Gettinoutadodge\n\tJesse: Coming up on the end, here...\n\tLaurie_Menke: Now that wasn&#39;t how that was supposed to happen!  ;o)  Well, it was fun while it lasted.  I still have not figured out the strategy to this game....obviously.  LOL!  But thanks for the fun and the challenge!  :o)\n\n45) Jesse: Attack Y1 Laurie_menke\n\tJesse: I&#39;m glad you enjoyed it, and I hope maybe you&#39;ve picked up a thing or two for the future while you were at it.  Thanks for the game!\n\n\nHomeworlds Online (SDG# 3081)\nStarted: 2006.4.11, Ended: 2007.1.8\nParticipants: andylooney (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Up for another go, Andy?\n\n2) andylooney: Homeworld B3 R2 G3\n\tandylooney: (tremble, tremble...) Sure!\n\n3) Jesse: Build G1 Jesse\n\tJesse: My winning streak has been broken.  I&#39;m vulnerable to loss now.  ;)\n\n4) andylooney: Build G1 Andylooney\n\n5) Jesse: Trade G3 Y3 Jesse\n\n6) andylooney: Trade G3 Y3 Andylooney\n\tJesse: Have you played red-blue homeworlds much, Andy?  I had pretty much dismissed all homeworlds with red, but I saw in the game I played against sketchwick that they have some interesting properties, such as the freedom to choose dynamically whether to guard it with a y3 or g3.\n\tandylooney: Not lately. For a long time now, my standard opening was always B1 G2 Y3 (or B3 G2 Y3 if the other guy takes a 1-2 system) but more recently I&#39;ve been wanted to experiment with other options again and red in the system has late game advances...\n\n7) Jesse: Build Y1 Jesse\n\n8) andylooney: Build Y1 Andylooney\n\n9) Jesse: Discover Y1 Jesse G3 Marmalade\n\n10) andylooney: Discover Y1 Andylooney G1 Emerald\n\n11) Jesse: Build G2 Jesse\n\n12) andylooney: Build G2 Andylooney\n\n13) Jesse: Discover G2 Jesse B3 Butter\n\n14) andylooney: Discover G2 Andylooney B1 Sapphire\n\n15) Jesse: Build Y1 Jesse\n\n16) andylooney: Build Y2 Emerald\n\n17) Jesse: Trade Y1 R1 Jesse\n\n18) andylooney: Trade G1 R1 Andylooney\n\n19) Jesse: Build G1 Butter\n\n20) andylooney: Discover Y1 Emerald G3 Jade\n\n21) Jesse: Build R2 Jesse\n\n22) andylooney: Move R1 Andylooney Emerald\n\n23) Jesse: Move R2 Jesse Marmalade\n\n24) andylooney: Trade Y3 G3 Andylooney\n\tJesse: I know you&#39;re busy getting ready for Origins, so feel free to move this game waaaaaay onto the back burner.\n\n25) Jesse: Build G2 Jesse\n\tJesse: Welcome back.  Now, to refamiliarize myself with this game...\n\n26) andylooney: Build Y1 Emerald\n\tandylooney: Very sorry to have been away so long, but now that we&#39;re done with the summer trade shows, I&#39;ll hopefully be able to get back on top of this.\n\tandylooney: Man, this sucks! How did I get into this awful situation?\n\n27) Jesse: Build Y2 Marmalade\n\n28) andylooney: Discover Y1 Emerald B3 Topaz\n\n29) Jesse: Discover Y2 Marmalade B1 Nutella\n\n\nHomeworlds Online (SDG# 3079)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2006.4.17, Ended: 2006.5.22\nParticipants: Kermit (S), Cerulean (W), istari (N), xoet (E)\nWinner: istari\n\n1) istari: Homeworld B1 G2 Y3\n\tistari: OK. It&#39;s been awhile since I played. How do I write up the command to set up my homeworld.\n\n2) xoet: Homeworld B2 Y1 G3\n\tistari: OK finally figured it out.\n\n3) Kermit: Homeworld B2 Y3 G3\n\n4) Cerulean: Homeworld B1 Y3 G3\n\n5) istari: Build Y1 Istari\n\n6) xoet: Build G1 Xoet\n\n7) Kermit: Build G1 Kermit\n\n8) Cerulean: Build G1 Cerulean\n\n9) istari: Trade Y1 G1 Istari\n\n10) xoet: Trade G1 B1 Xoet\n\n11) Kermit: Build G1 Kermit\n\n12) Cerulean: Discover G1 Cerulean Y2 Castillo\n\n13) istari: Build Y1 Istari\n\n14) xoet: Build G1 Xoet\n\n15) Kermit: Trade G1 Y1 Kermit\n\n16) Cerulean: Discover G1 Castillo B3 Matanzas\n\n17) istari: Trade Y1 R1 Istari\n\n18) xoet: Build B1 Xoet\n\n19) Kermit: Discover G1 Kermit Y1 Gorn\n\n20) Cerulean: Trade G1 Y1 Matanzas\n\n21) istari: Move G1 Istari Matanzas\n\n22) xoet: Move B1 Xoet Matanzas\n\n23) Kermit: Build G1 Kermit\n\n24) Cerulean: Discover Y1 Matanzas G2 Caroline\n\n25) istari: Build R1 Istari\n\n26) xoet: Trade B1 Y1 Matanzas\n\n27) Kermit: Trade G1 B1 Kermit\n\n28) Cerulean: Build Y2 Caroline\n\n29) istari: Build Y2 Istari\n\n30) xoet: Move G1 Xoet Matanzas\n\n31) Kermit: Move B1 Kermit Gorn\n\n32) Cerulean: Build G1 Cerulean\n\n33) istari: Move Y2 Istari Matanzas\n\n34) xoet: Build B1 Xoet\n\n35) Kermit: Build B2 Gorn\n\n36) Cerulean: Trade G1 R1 Cerulean\n\n37) istari: Build Y2 Istari\n\n38) xoet: Build Y2 Matanzas\n\n39) Kermit: Trade B2 R2 Gorn\n\n40) Cerulean: Build G1 Cerulean\n\n41) istari: Sacrifice Y2 Istari\nMove Y2 Matanzas Xoet\nMove G1 Matanzas Xoet\n\n42) xoet: Trade B1 R1 Xoet\n\n43) Kermit: Build B1 Gorn\n\n44) Cerulean: Discover Y2 Caroline B3 Frederica\n\n45) istari: Sacrifice R1 Istari\nAttack R1E Xoet\n\n46) xoet: Build B2 Xoet\n\n47) Kermit: Move B1 Gorn Caroline\n\n48) Cerulean: Move G1 Cerulean Caroline\n\n49) istari: Attack B2E Xoet\n\n50) xoet: Build B2 Xoet\n\n51) Kermit: Sacrifice R2 Gorn\nAttack G1W Caroline\nAttack Y1W Caroline\n\n52) Cerulean: Build R1 Cerulean\n\n53) istari: Build Y2 Xoet\nCatastrophe Xoet B\n\n54) xoet: Move Y2 Matanzas Xoet\n\n55) Kermit: Build Y2 Caroline\n\n56) Cerulean: Build G1 Cerulean\n\n57) istari: Build Y3 Xoet\nCatastrophe Xoet Y\n\txoet: OK this stuff is just a little too abstract for me :)\n\n\tistari: Thanks for the game\n\nHomeworlds Online (SDG# 3086)\nStarted: 2006.4.19, Ended: 2006.6.21\nParticipants: jeep (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Hello again.\n\n2) jeep: Homeworld B3 Y1 G3\n\tjeep: Howdy.  ;)\n\n3) Jesse: Build G1 Jesse\n\n4) jeep: Build G1 Jeep\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) jeep: Trade G1 R1 Jeep\n\n7) Jesse: Build G1 Jesse\n\n8) jeep: Build R1 Jeep\n\n9) Jesse: Build Y1 Jesse\n\n10) jeep: Build R2 Jeep\n\n11) Jesse: Build Y2 Jesse\n\n12) jeep: Trade R2 Y2 Jeep\n\n13) Jesse: Trade Y2 R2 Jesse\n\n14) jeep: Discover R1 Jeep G2 Hana\n\n15) Jesse: Discover Y1 Jesse G3 Noggin\n\n16) jeep: Build R2 Hana\n\n17) Jesse: Build Y2 Noggin\n\n18) jeep: Move Y2 Jeep Hana\n\n19) Jesse: Discover Y1 Noggin B2 Kneecaps\n\n20) jeep: Sacrifice G3 Jeep\nBuild R2 Hana\nBuild R3 Jeep\nBuild R3 Jeep\n\n21) Jesse: Sacrifice G3 Jesse\nBuild Y2 Noggin\nBuild Y3 Jesse\nBuild Y3 Kneecaps\n\n22) jeep: Build Y3 Hana\n\n23) Jesse: Trade Y3 R3 Kneecaps\n\n24) jeep: Trade R3 G3 Jeep\n\n25) Jesse: Trade Y3 G3 Jesse\n\n26) jeep: Discover R2 Hana Y3 Dul\n\n27) Jesse: Sacrifice G3 Jesse\nBuild G1 Jesse\nBuild R3 Kneecaps\nBuild Y3 Jesse\n\n28) jeep: Sacrifice Y2 Hana\nMove R1 Jeep Kneecaps\nMove R2 Dul Kneecaps\nCatastrophe Kneecaps R\n\n29) Jesse: Discover Y1 Jesse G3 Trouble\n\n30) jeep: Build G1 Jeep\n\n31) Jesse: Build Y2 Trouble\n\tjeep: OK, so here&#39;s what I&#39;d love to see from some of you homeworlds experts... an article on the wiki explaining, in general, what kinds of things you try to do in these situations: 1) you have more big ships (esp if your opp has more ships) 2) you have more ships (esp if your opp has more big ships)  I think I may have squandered a lead in my game vs. TwoShort where I had a huge lead in big ships.  Now I still have more big ships, but he has a gigantic fleet!\n\tJesse: Having more ships gives you more influence to control the economy.  Having more large ships gives you more power to seize and control systems and ships.\n\n32) jeep: Discover R2 Hana Y3 Dul\n\n33) Jesse: Move R2 Jesse Trouble\n\n34) jeep: Build G2 Jeep\n\n35) Jesse: Build G2 Jesse\n\n36) jeep: Sacrifice G3 Jeep\nBuild R1 Dul\nBuild R2 Dul\nBuild G3 Jeep\n\n37) Jesse: Build R3 Trouble\n\n38) jeep: Trade G2 B2 Jeep\n\tjeep: This is the point in the game where I need more experience.  ;)\n\n39) Jesse: Discover G1 Jesse R3 Snoopy\n\tjeep: Did I leave you too many good options?  ;)\n\n40) jeep: Move R1 Dul Jesse\n\n41) Jesse: Attack R1 Jesse\n\n42) jeep: Sacrifice Y3 Hana\nMove R2 Dul Jesse\nMove R2 Dul Jesse\nMove G1 Jeep Hana\nCatastrophe Jesse R\n\tjeep: I had a plan, but I can&#39;t for the life of me see what it was.\n\n43) Jesse: Sacrifice G2 Jesse\nBuild Y3 Jesse\nBuild Y3 Kneecaps\n\n44) jeep: Build B1 Jeep\n\tjeep: I think I need to play more aggressively, but I still worry every time I do.\n\n45) Jesse: Move R3 Trouble Jesse\n\n46) jeep: Move B2 Jeep Kneecaps\n\n47) Jesse: Sacrifice R2 Trouble\nAttack B2 Kneecaps\nPass\n\tjeep: This is a thinker.\n\tJesse: Aye.  Take your time.\n\n48) jeep: Build G2 Jeep\n\tjeep: I&#39;m not sure I have a chance here.\n\n49) Jesse: Build G2 Jesse\n\n50) jeep: Move B1 Jeep Kneecaps\n\n51) Jesse: Sacrifice Y3 Kneecaps\nDiscover G2 Jesse Y3 Storage\nMove Y1 Kneecaps Snoopy\nMove B2 Kneecaps Snoopy\n\n52) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R1 Jeep\nBuild R1 Hana\n\n53) Jesse: Build B1 Snoopy\n\n54) jeep: Trade R1 B1 Jeep\n\n55) Jesse: Build B3 Snoopy\n\tJesse: Okay, here&#39;s how I see this playing out.  The only place you can approach me is from your homeworld to mine, and only one ship at a time.  If you send green ships, I&#39;ll take them one by one, and it doesn&#39;t matter much if you cause a catastrophe.  (In fact, it benefits me.)  If you send red ships, I capture them one by one.  If necessary, I will sacrifice a red ship when doing so, to ensure that you can never cause a red catastrophe.  You have no yellow ships, so as long as I don&#39;t trade or sacrifice yellow, that&#39;s no worry.  If you send a blue ship, I capture it.  If you create another, I can move a blue ship out of my system to ensure you can&#39;t cause a catastrophe.  You cannot affort to have two blue ships in your home system at the same time, or I sac a y2 to blast your blue marker.  You don&#39;t have time to snatch that yellow piece and make use of it, because it only takes two turns to sac my y3s and put 3 yellow ships in your home system.  So, I&#39;m safe.\n\tJesse: That just leaves the question of how to win, without giving up that position.  First of all, I need enough blues to destroy your blue marker.  That&#39;s easy.  Second, I need to position my ships so I can hit you with a bunch of yellow and a bunch of blue in quick succession.  The easiest launch point is my own homeworld, since I know it to be safe.  I can&#39;t build up blues there, so I&#39;ll have to send them in two waves from farther out.  That means I should mass my smaller yellows there, while moving the y3s out to my large systems.  I can turn Storage into a ship, then sac it and my other two y3s to blast you in three waves.\n\tJesse: I do need to exercise some caution that you can&#39;t  grab the first y3 and smash me in one blow after my second wave, but I believe that&#39;s covered by you not being able to put three blues all one step from my homeworld.\n\tjeep: Nod, it&#39;s looked futile to me for a while.  I&#39;m interested in seeing this end game though.\n\n56) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R1 Hana\nBuild R2 Jeep\n\tJesse: Fine by me.\n\n57) Jesse: Sacrifice G2 Storage\nBuild G2 Jesse\nBuild Y3 Jesse\n\n58) jeep: Sacrifice B1 Jeep\nTrade G3 B3 Jeep\n\n59) Jesse: Sacrifice Y2 Noggin\nMove B3 Snoopy Jesse\nMove B3 Jesse Jeep\n\n60) jeep: Attack B3N Jeep\n\tJesse: Okay, I think I have all possibilities covered sufficiently to end this quicker than I had outlined before.\n\n61) Jesse: Sacrifice Y2 Trouble\nMove B1 Snoopy Jesse\nMove B1 Jesse Jeep\nCatastrophe Jeep B\n\n\tjeep: I thought I had a small blue at Hana... I don&#39;t think there was anything to do anyway.\n\tJesse: Indeed.  Thanks for the game.  I hope seeing the endgame played out was helpful to you.\n\tjeep: It was, actually.  Thanks for being patient with me.  ;)\n\tJesse: No problem at all.  It actually helped remind me of some things to pay attention to in homeworld assaults.  (I usually go for the ships, rather than  the system.)\n\nHomeworlds Online (SDG# 3181)\nVariants: &quot;Unrated&quot;\nStarted: 2006.4.20, Ended: 2006.4.29\nParticipants: cdiffell (S), Aaron (N)\nWinner: Aaron\n\n1) Aaron: Homeworld B1 Y2 G3\n\tcdiffell: I feel bad forcing you to teach me 3 different games...but I guess I have to learn for the tournament. Hope it&#39;s OK. Caleb\n\tAaron: It doesn&#39;t bother me at all!!  This is another toughie.  Make sure you&#39;ve read the rules and the wiki thoroughly.  Trust the systems warnings regarding the best Homeworld setup when it&#39;s your turn, and don&#39;t hesitate to ask any questions!!\n\n2) cdiffell: Homeworld B3 Y1 G3\n\tAaron: Remember that it is not wise to create a homeworld with the same star sizes as your opponent.  I can&#39;t remember if the system warns you of that or not =)\n\tcdiffell: I read through the rules today, but I will re-read tonight or tomorrow and probably not make my first move till lunch time\n\tAaron: Take your time.  I&#39;m in no hurry.\n\tcdiffell: How do I build a homeworld with a different size than yours? There are only 3 sizes, and you&#39;ve used 2 of them, so by definition I have to double up one of them when I build my homeworld.\n\tcdiffell: OK, I looked at another game of this and will just sort of mimic those starting moves at first.\n\n3) Aaron: Build G1 Aaron\n\tAaron: I mean the exact same sizes.  If we both had starts sized 1 and 2 then I&#39;m only 2 moves away from your Homeworld.  By using 1 and 3, I&#39;m now at least 3 moves away.  Safety first! =)\n\tAaron: This game is all about resource management.  You want to manage the global stash to minimize the number of ships I can own.\n\n4) cdiffell: Build G1 Cdiffell\n\n5) Aaron: Trade G1 Y1 Aaron\n\n6) cdiffell: Trade G1 Y1 Cdiffell\n\tAaron: Here&#39;s an example.  If you choose to take that last small Yellow, then I have access to size-2 yellows.  This is sometimes unavoidable, but something you want to be aware of at least.\n\tcdiffell: Why would you take a green and then trade to a yellow? Doesn&#39;t that waste a turn? Your green 3 ship supported a build action for a yellow ship, right?\n\tAaron: no, you can only build a ship of certain colour that you currently control in the system.  *Now* I can freely build yellows.\n\tcdiffell: OK, I see.\n\n7) Aaron: Build Y2 Aaron\n\n8) cdiffell: Discover Y1 Cdiffell G2 Cdiffell2\n\tcdiffell: Question: if I create a new system that&#39;s a &quot;3&quot;, are you prohibited from moving directly there due to your system being a &quot;3&quot; in total?\n\tAaron: no, only if one of the individual stars is a 3\n\tcdiffell: ...so I should build a 1 or 2 size system; I guess probably a 2 so I can move back/forth from my home system but you cannot, right?\n\tAaron: You will only be able to build a 2 right now as your system contains a 1 and a 3.  I can only discover a 3.\n\n9) Aaron: Discover Y2 Aaron G3 Emeralds\n\n10) cdiffell: Build G1 Cdiffell\n\n11) Aaron: Build Y2 Emeralds\n\n12) cdiffell: Build Y3 Cdiffell2\n\n13) Aaron: Move Y2 Emeralds Cdiffell2\n\n14) cdiffell: Trade G1 B1 Cdiffell\n\n15) Aaron: Build Y3 Cdiffell2\nCatastrophe Cdiffell2 Yellow\n\tcdiffell: About having time - I did the grad school thing while working full-time; it definitely doesn&#39;t leave much time for other stuff. I&#39;m just glad I got it finished before my daughter came along...\n\n16) cdiffell: Build G1 Cdiffell\n\n17) Aaron: Build G1 Aaron\n\n18) cdiffell: Discover G1 Cdiffell B2 Cdiffell3\n\n19) Aaron: Trade G1 R1 Aaron\n\n20) cdiffell: Move B1 Cdiffell Cdiffell3\n\n21) Aaron: Build R1 Aaron\n\n22) cdiffell: Build G1 Cdiffell\n\n23) Aaron: Trade R1 B1 Aaron\n\n24) cdiffell: Build B2 Cdiffell3\n\n25) Aaron: Sacrifice Y2 Emeralds\nDiscover B1 Aaron G3 Emeralds\nMove B1 Emeralds Cdiffell3\nCatastrophe Cdiffell3 Blue\n\n26) cdiffell: Trade G1 R1 Cdiffell\n\tcdiffell: I don&#39;t remember what the system looked like - did mine disappear due to having 4 blue items in it?\n\tAaron: I moved a blue in there creating 4 and I called a catastrophe, yes.\n\n27) Aaron: Build G1 Aaron\n\n28) cdiffell: Discover R1 Cdiffell Y2 Cdiffell4\n\n29) Aaron: Discover G1 Aaron B3 Sky\n\tcdiffell: &lt;sigh&gt; My systems seem to last a depressingly short time in Known Space.\n\tAaron: =D  That&#39;s not uncommon.  You just have to always watch for that magic number 4.\n\n30) cdiffell: Build G1 Cdiffell\n\n31) Aaron: Build G1 Sky\n\n32) cdiffell: Move G1 Cdiffell Cdiffell4\n\n33) Aaron: Trade G1 Y1 Sky\n\n34) cdiffell: Move R1 Cdiffell4 Sky\n\n35) Aaron: Sacrifice R1 Aaron\nAttack R1 Sky\n\n36) cdiffell: Build G1 Cdiffell\n\tcdiffell: ah, so you can use a ship in one system to capture another? Hmm. didn&#39;t realize that.\n\n37) Aaron: Move R1 Sky Cdiffell4\n\tAaron: Once you sacrifice a ship, you can use its power in *any* system in which you have influence.  Very powerful tactic.\n\n38) cdiffell: Build G2 Cdiffell\n\tcdiffell: &quot;Influence&quot; defined as the presence of your ship(s) there. I see.\n\tAaron: exactly.  Technically you could, for example, sacrifice your g1 in CDIFFELL and build a green in CDIFFELL4.\n\n39) Aaron: Attack G1 Cdiffell4\n\n40) cdiffell: Trade G2 R2 Cdiffell\n\n41) Aaron: Build Y2 Sky\n\n42) cdiffell: Move R2 Cdiffell Cdiffell4\n\n43) Aaron: Move G1 Cdiffell4 Cdiffell\n\n44) cdiffell: Move R2 Cdiffell4 Sky\n\n45) Aaron: Build G2 Cdiffell\nCatastrophe Cdiffell Green\n\tAaron: Thanks for the game!  Wanna try again?  Feel free to challenge me anytime.\n\n\nHomeworlds Online (SDG# 3080)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2006.4.20, Ended: 2006.5.14\nParticipants: jeep (S), istari (N), Uglyfoot (E)\nWinner: jeep\n\n1) istari: Homeworld G3 B1 Y3\n\n2) Uglyfoot: Homeworld Y1 B2 G3\n\n3) jeep: Homeworld R2 B3 G3\n\n4) istari: Build Y1 Istari\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) jeep: Build G1 Jeep\n\tjeep: b g1 jeep\n\n7) istari: Build Y1 Istari\n\tjeep: Some mistakes aren&#39;t too bad... ;)  Sorry about spamming the chat.\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) jeep: Trade G1 Y1 Jeep\n\n10) istari: Trade Y1 R1 Istari\n\n11) Uglyfoot: Discover G1 Uglyfoot Y3 Slingshot\n\n12) jeep: Build G1 Jeep\n\n13) istari: Discover Y1 Istari G2 Greenie\n\n14) Uglyfoot: Trade G1 B1 Uglyfoot\n\n15) jeep: Trade G1 B1 Jeep\n\tjeep: Aha, I just realized I did have a slight advantage in building my homeworld last, but missed out.\n\n16) istari: Build R1 Istari\n\n17) Uglyfoot: Move B1 Uglyfoot Slingshot\n\n18) jeep: Discover B1 Jeep Y1 Submarine\n\n19) istari: Build Y2 Greenie\n\n20) Uglyfoot: Build G1 Slingshot\n\n21) jeep: Build Y2 Jeep\n\n22) istari: Build Y2 Istari\n\n23) Uglyfoot: Discover G1 Slingshot B1 Commerce\n\n24) jeep: Discover Y2 Jeep G1 Thumb\n\n25) istari: Trade Y2 B2 Istari\n\n26) Uglyfoot: Build G1 Commerce\n\n27) jeep: Build G2 Jeep\n\n28) istari: Move B2 Istari Greenie\n\n29) Uglyfoot: Build G2 Uglyfoot\n\n30) jeep: Build Y2 Thumb\n\n31) istari: Move Y2 Greenie Slingshot\n\n32) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Slingshot\n\n33) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 Thumb\nBuild Y3 Jeep\n\n34) istari: Build Y3 Istari\n\n35) Uglyfoot: Trade G3 R3 Uglyfoot\n\n36) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Jeep\nBuild B2 Submarine\n\n37) istari: Move Y2 Slingshot Thumb\nCatastrophe Thumb Y\n\n38) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n39) jeep: Sacrifice B2 Submarine\nTrade G3 R3 Jeep\nTrade G2 B2 Jeep\n\n40) istari: Build Y2 Greenie\n\tjeep: I think this plays better IRL.  There is usually some negotiation going on...\n\n41) Uglyfoot: Build B2 Slingshot\n\n42) jeep: Move R3 Jeep Submarine\n\n43) istari: Build B3 Greenie\n\n44) Uglyfoot: Move B2 Slingshot Commerce\n\n45) jeep: Build G1 Jeep\n\n46) istari: Trade Y3 B3 Istari\n\n47) Uglyfoot: Build B3 Slingshot\n\n48) jeep: Move Y1 Jeep Submarine\n\n49) istari: Discover B3 Greenie G3 Greenie2\n\n50) Uglyfoot: Discover B1 Slingshot R1 Battlestar\n\n51) jeep: Move R3 Submarine Greenie\n\n52) istari: Sacrifice B2 Greenie\nTrade Y1 R1 Greenie\nTrade Y2 R2 Greenie\n\n53) Uglyfoot: Trade G3 Y3 Slingshot\n\n54) jeep: Build Y1 Jeep\n\n55) istari: Build B2 Greenie2\n\n56) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove B1 Battlestar Jeep\nMove B2 Commerce Jeep\nCatastrophe Jeep Blue\n\n57) jeep: Move B1 Submarine Jeep\n\n58) istari: Build R1 Greenie\nCatastrophe Greenie R\n\n59) Uglyfoot: Sacrifice Y3 Slingshot\nMove G1 Commerce Jeep\nMove G1 Commerce Jeep\nDiscover B3 Slingshot G2 Elliptical\nCatastrophe Jeep Green\n\n60) jeep: Trade Y1 G1 Jeep\n\n61) istari: Trade B2 Y2 Greenie2\n\n62) Uglyfoot: Build G1 Uglyfoot\n\n63) jeep: Build Y1 Jeep\n\n64) istari: Build Y2 Greenie2\n\n65) Uglyfoot: Trade B3 Y3 Elliptical\n\n66) jeep: Build B1 Jeep\n\n67) istari: Trade Y2 R2 Greenie2\n\n68) Uglyfoot: Build Y2 Elliptical\n\n69) jeep: Build G1 Jeep\n\n70) istari: Build R1 Greenie2\n\n71) Uglyfoot: Build G2 Slingshot\n\n72) jeep: Move G1 Jeep Istari\n\n73) istari: Attack G1S Istari\n\n74) Uglyfoot: Move Y3 Elliptical Slingshot\n\n75) jeep: Build G2 Jeep\n\n76) istari: Build G3 Istari\n\n77) Uglyfoot: Build R1 Uglyfoot\n\n78) jeep: Sacrifice Y3 Jeep\nMove B1 Jeep Istari\nMove B1 Jeep Istari\nMove G1 Jeep Istari\nCatastrophe Istari G\nCatastrophe Istari B\n\n\tjeep: Thanks for the game guys.  It&#39;s pretty weird to have no table talk going... \n\tUglyfoot: Good game guys.\r\n\n\nHomeworlds Online (SDG# 3126)\nStarted: 2006.4.22, Ended: 2007.5.15\nParticipants: andylooney (S), lament (N)\nWinner: andylooney\n\n1) lament: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld R2 B3 G3\n\tlament: Greetings. I must say I&#39;m rather excited to be playing against the great Andy Looney himself :)\n\tandylooney: Cool, it&#39;s always a pleasure to play with a fan!\n\n3) lament: Build Y1 Lament\n\n4) andylooney: Build G1 Andylooney\n\n5) lament: Discover Y1 Lament B3 Rigel\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) lament: Build Y1 Lament\n\n8) andylooney: Build G1 Andylooney\n\n\nHomeworlds Online (SDG# 3267)\nStarted: 2006.4.25, Ended: 2006.5.10\nParticipants: lambda (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) lambda: Homeworld B3 G1 Y3\n\n3) jeep: Build G1 Jeep\n\tjeep: Hello!  Good luck.\n\n4) lambda: Build Y1 Lambda\n\tlambda: Hi there! Good luck to you, too. \n\n5) jeep: Build G1 Jeep\n\n6) lambda: Trade Y1 B1 Lambda\n\n7) jeep: Discover G1 Jeep B3 Moon\n\n8) lambda: Build B1 Lambda\n\n9) jeep: Build G2 Jeep\n\n10) lambda: Discover B1 Lambda G2 Rigel\n\n11) jeep: Sacrifice G3 Jeep\nBuild G2 Moon\nBuild G3 Moon\nBuild G3 Jeep\n\n12) lambda: Build B2 Rigel\n\n13) jeep: Discover G2 Jeep Y3 Submarine\n\n14) lambda: Build Y1 Lambda\n\n15) jeep: Trade G3 Y3 Moon\n\n16) lambda: Build B2 Rigel\n\n17) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Submarine\nBuild G3 Moon\n\n\tjeep: You still with us?\n\tjeep: I want to start another game, but it would be too much if this comes back to life too.  Looking at your history, it appears you don&#39;t finish games once you fall behind.  Sorry.\n\tlambda: Sorry about that. I got busy, got behind on SDG, and just stopped playing entirely. I hope to be better about keeping up with SDG this time around.\n\nHomeworlds Online (SDG# 3286)\nStarted: 2006.4.27, Ended: 2006.8.16\nParticipants: andylooney (S), Hedge_o_Matic (N)\nWinner: andylooney\n\n1) Hedge_o_Matic: Homeworld G3 B2 Y3\n\n2) andylooney: Homeworld R2 B1 G3\n\n3) Hedge_o_Matic: Build Y1 Hedge_o_matic\n\tHedge_o_Matic: Huh.  That&#39;s funny.  I did it right the first time.\n\tHedge_o_Matic: Hopefully I&#39;ll give you a better game than the last one we played.  What a disaster that was!\n\tHedge_o_Matic: Oh, and I&#39;m considering a run on Icehouse pieces to coplete my set before the full stashes go away... I just need Orange, Cyan, Purple and White, and I&#39;ll be complete.  That, plus my solid brass and steel set I&#39;ve got a friend milling for me...  weight is everything in Icehouse, after all.\n\n4) andylooney: Build G1 Andylooney\n\n5) Hedge_o_Matic: Trade Y1 G1 Hedge_o_matic\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) Hedge_o_Matic: Build G1 Hedge_o_matic\n\n8) andylooney: Build G2 Andylooney\n\n9) Hedge_o_Matic: Trade G1 R1 Hedge_o_matic\n\n10) andylooney: Discover G2 Andylooney Y3 Howell\n\n\nHomeworlds Online (SDG# 3287)\nStarted: 2006.4.27, Ended: 2006.6.21\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Ready for another go?\n\n2) TwoShort: Homeworld Y3 B2 G3\n\tTwoShort: Certainly...  Red homeworld star?  A new theory?\n\n3) Jesse: Build G1 Jesse\n\tJesse: To me, yes.  Andy had some experience with it, and mentioned vaguely that it has some late-game advantages.  I&#39;m not sure what he has in mind, but I noticed when Sketchwick tried it against me, it afforded him some extra flexibility in the early and mid game to choose between yellow and green for his capital ship, and it was always a hindrance to mounting an attack.  Also, I figured you were much less likely to do in red what you did in blue last time.\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: I&#39;ve concluded the blue freeze out is the thing to do when the first player uses a blue 1 point star, and a yellow first ship (as Andy always used to); but I don&#39;t think it&#39;s worth it otherwise.  I hadn&#39;t thought about the mid-game flexibility oof not having a yellow or green star, but now that you mention it, I can certainly recall being hampered by it.\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Jesse: Build G1 Jesse\n\n8) TwoShort: Build G1 Twoshort\n\n9) Jesse: Build Y1 Jesse\n\n10) TwoShort: Build Y2 Twoshort\n\n11) Jesse: Build Y2 Jesse\n\n12) TwoShort: Discover Y1 Twoshort B1 Bluestar\n\n13) Jesse: Discover Y1 Jesse G3 Purple\n\n14) TwoShort: Discover Y2 Twoshort G1 Grogar\n\n15) Jesse: Discover Y1 Jesse B3 Cranberry\n\n16) TwoShort: Trade Y1 R1 Bluestar\n\n17) Jesse: Build Y1 Purple\n\n18) TwoShort: Build G2 Twoshort\n\tTwoShort: I&#39;m seeing the advantage of that red star...  Can&#39;t figure out how to counter it at this point though...\n\n19) Jesse: Sacrifice G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Jesse\nBuild Y3 Cranberry\n\n20) TwoShort: Discover G2 Twoshort R1 Rover\n\n21) Jesse: Trade Y2 R2 Jesse\n\n22) TwoShort: Build Y2 Grogar\n\n23) Jesse: Move R2 Jesse Purple\n\n24) TwoShort: Build G2 Rover\n\n25) Jesse: Trade Y3 G3 Cranberry\n\n26) TwoShort: Sacrifice Y2 Grogar\nDiscover G2 Rover Y3 Yolonda\nMove R1 Bluestar Twoshort\n\n27) Jesse: Build G2 Cranberry\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Grogar\nBuild R2 Twoshort\n\n29) Jesse: Sacrifice G3 Cranberry\nBuild G3 Jesse\nBuild R2 Purple\nPass\n\n30) TwoShort: Move R1 Twoshort Grogar\n\n31) Jesse: Discover R2 Purple B1 Chewtoy\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R3 Twoshort\nBuild R3 Grogar\n\n33) Jesse: Build R3 Purple\n\n34) TwoShort: Sacrifice Y2 Grogar\nMove R3 Grogar Cranberry\nDiscover Y2 Grogar B3 Kick\n\n35) Jesse: Sacrifice Y1 Cranberry\nDiscover G2 Cranberry Y2 Squidger\n\n36) TwoShort: Discover R2 Twoshort Y1 Sweet\n\n37) Jesse: Move G3 Jesse Yolonda\n\n38) TwoShort: Sacrifice G2 Rover\nBuild R1 Cranberry\nBuild G2 Yolonda\n\n39) Jesse: Sacrifice R2 Purple\nAttack G2 Yolonda\nAttack G2 Yolonda\n\n40) TwoShort: Sacrifice Y2 Kick\nDiscover G1 Twoshort B1 Maybeabadidea\nMove G1 Maybeabadidea Yolonda\nCatastrophe Yolonda Green\n\n41) Jesse: Discover G2 Squidger Y3 Squop\n\n42) TwoShort: Discover R2 Sweet B3 Bluestar\n\n43) Jesse: Build R2 Purple\n\n44) TwoShort: Trade R2 Y2 Bluestar\n\n45) Jesse: Move R2 Purple Grogar\n\n46) TwoShort: Trade R3 G3 Cranberry\n\n47) Jesse: Sacrifice G2 Squop\nBuild R2 Grogar\nBuild R3 Chewtoy\n\n48) TwoShort: Trade R1 Y1 Cranberry\n\n49) Jesse: Attack R1 Grogar\n\n50) TwoShort: Sacrifice G3 Cranberry\nBuild Y2 Bluestar\nBuild Y3 Cranberry\nBuild G1 Twoshort\n\n51) Jesse: Move Y2 Jesse Bluestar\n\n52) TwoShort: Sacrifice Y2 Bluestar\nDiscover Y2 Bluestar G2 Retrograde\nMove Y3 Cranberry Grogar\n\n53) Jesse: Build G2 Jesse\n\n54) TwoShort: Build R1 Twoshort\n\n55) Jesse: Trade R3 G3 Chewtoy\n\tTwoShort: Between you and Danner, I feel like I&#39;ve got a &quot;Monopolize Red&quot; sign on my forehead...\n\tJesse: Wow, it looks like you&#39;re royally boned in that one.\n\tJesse: Wow, it looks like you&#39;re royally boned in that one.\n\tJesse: Huh.  I wonder how that got double-submitted.\n\n56) TwoShort: Move R1 Twoshort Grogar\nCatastrophe Grogar Red\n\n57) Jesse: Sacrifice G2 Jesse\nBuild G2 Chewtoy\nBuild Y2 Bluestar\n\tJesse: Hmm, that was rather a bad case of tunnel-vision.\n\n58) TwoShort: Discover G1 Twoshort B1 Bluto\n\n59) Jesse: Sacrifice G3 Chewtoy\nBuild G2 Jesse\nBuild G3 Chewtoy\nBuild R1 Chewtoy\n\n60) TwoShort: Trade Y1 R1 Cranberry\n\n61) Jesse: Sacrifice G3 Chewtoy\nBuild G3 Chewtoy\nBuild Y1 Jesse\nBuild R2 Purple\n\n62) TwoShort: Move Y2 Retrograde Cranberry\n\n63) Jesse: Move R2 Purple Bluto\n\n64) TwoShort: Sacrifice G1 Bluto\nBuild R2 Cranberry\n\n65) Jesse: Sacrifice G3 Chewtoy\nBuild G1 Chewtoy\nBuild G2 Chewtoy\nBuild R3 Bluto\n\n\tTwoShort: Well done as usual!\n\tJesse: Thanks for another great game.\n\nHomeworlds Online (SDG# 3298)\nStarted: 2006.4.28, Ended: 2006.6.5\nParticipants: babelfish (S), dralius (N)\nWinner: dralius\n\n1) dralius: Homeworld B3 G2 Y3 *\n\tdralius: I am a true novis when it comes to homeworlds. But I do know someone who is not so let&#39;s ask for some tutoring.\n\n2) babelfish: Homeworld G3 B1 Y3\n\n3) dralius: Build Y1 Dralius\n\tbabelfish: I hate reading the rules!\n\tdralius: I have asked a friend of mine to advise us but i guess he has not been on in a few days.\r\n\n\n4) babelfish: Build Y1 Babelfish\n\n5) dralius: Trade Y1 R1 Dralius\n\tbabelfish: Well, I guess I&#39;ll just keep doing what you do. :)\n\tdralius: That may be ill advised\n\tdralius: in fact i am sure of it.\n\n6) babelfish: Build Y1 Babelfish\n\tdralius: This game is extremely oblique. Everything you need to accomplish requires you to do something else first to prepare for it including preparing for the action you with to take. \n\n7) dralius: Build R1 Dralius\n\n8) babelfish: Trade Y1 R1 Babelfish\n\tbabelfish: You&#39;re looking awful hostile.\n\n9) dralius: Discover R1 Dralius G1 Boogie\n\n10) babelfish: Discover Y1 Babelfish G2 Tweety\n\tbabelfish: oh crap, what do i do now?\n\n11) dralius: Build Y1 Dralius\n\n12) babelfish: Build Y1 Babelfish\n\n13) dralius: Trade Y1 B1 Dralius\n\tCDRodeffer: Howdy! Dralius invited me to kibitz here, said it&#39;s a teaching game. Is it OK if I offer some suggestions?\n\n14) babelfish: Build Y1 Babelfish\n\tbabelfish: PLEASE DO!!\n\n15) dralius: Move B1 Dralius Boogie\n\tCDRodeffer: Babelfish, you&#39;re vulnerable to a yellow catastrophe in your home system and are also in danger of being locked out of the blue economy. Dralius could, in three moves, move his small red ship from Boogie to tweety, attack your small yellow ship there, then move it into your home system to trigger a catastrophe. To prevent it, you might want to either build a medium yellow ship in tweety (to prevent the attack and assure access to medium ships) or trade one of your small yellow ships in babelfish for a small blue ship. Both will buy you time to get into the blue economy, which is important for defense against and, later, for triggering timely catastrophes. But it&#39;s Dralius&#39; turn now. You might want to either set up the attack outlined above, or possibly build another small blue ship in Dralius. That would make three blue elements in you home system, but you have tempo now, and babelfish couldn&#39;t immediately move in for a catastrophe. To protect your home system, you might then want to trade one of the small blue ships in Dralius for a small green ship to gain access to mobile building technology, especially since green pieces are quickly being depleted. Getting a large green ship and another green ship of any size in the same system (preferably one without a green star) is an investment for the future that will eventually (once the rest of the green pieces are gone) become a &quot;factory&quot;, enabling you to build twice as quickly by sacrificing the large green ship, rebuilding the large green ship right where it was, and then building two other ships in any other systems you occupy.\n\tdralius: WOW i could do all that!?!\n\n16) babelfish: Trade Y1 B1 Babelfish\n\n17) dralius: Build R2 Boogie\n\tCDRodeffer: At this point, you both should probably be thinking of building some of those freshly available medium ships. Dralius might be especially interested in getting a medium red ship in Boogie to go after whatever babelfish can get to tweety before Dralius takes it over. I&#39;m sorry, but I don&#39;t see any reasonable defense against that now. Moving the large yellow ship from babelfish to tweety would let you keep that system, but it would leave your home system very vulnerable. Alternatively, babelfish could build a medium red ship in babelfish, then move it to tweety on a turn when Dralius has something dire elsewhere to accomplish. This would set up, to borrow from Go, a &quot;ko threat&quot; in tweety.\n\tdralius: I&#39;ll take that advice. \r\n\n\n18) babelfish: Build R2 Babelfish\n\n19) dralius: Trade R1 Y1 Boogie\n\n20) babelfish: Move R2 Babelfish Tweety\n\n21) dralius: Discover R2 Boogie Y2 Chacha\n\n22) babelfish: Move R2 Tweety Boogie\n\tCDRodeffer: Babelfish should note that Dralius&#39; R2 in ChaCha is only one step away from the babelfish home world. It&#39;s OK for now -- even if he invades, you can attack and take over his R2 before he has a chance to attack any of your ships, and he would be unable to attack your Y3 in any case. However, you probably DON&#39;T want to immediately build another blue or yellow ship in your home system. If you did, it would make the third element of either of those colors. Dralius could then move the R2 to babelfish and, if you don&#39;t immediately attack it, sacrifice the B1 in Boogie to change its color to either blue or yellow (whichever you just build) and trigger a catastrophe. This would cost you either your Y3 flag ship or your B1 sun, neither of which would be a very happy prospect. Fortunately for you, Dralius cannot immediately build a second ship in ChaCha. If he were able to build a second ship there, and if he were able to build a Y2 in either Boogie or Dralius and sacrifice it to move both ships into babelfish, you&#39;d have to sacrifice your R2 in tweety to save yourself. Now, what can you do to prevent all that bad stuff from happening? Hint: Try causing a distration elsewhere to which Dralius has to respond. Where and how is he vulnerable?\n\n23) dralius: Move B1 Boogie Chacha\n\tdralius: Oh man what a day i had. I will delay my move until i get some rest.\n\n24) babelfish: Trade Y3 R3 Babelfish\n\n25) dralius: Build Y2 Boogie\n\tbabelfish: Brian helped me with this move.  Do you think it is a good one?\n\tdralius: That may put you in danger of a disaster. Heck i am no expert, just winging it as i go.\n\tCDRodeffer: I don&#39;t believe that babelfish is in any immediate danger from a disaster due to trading the Y3 for R3. On the other hand, I don&#39;t really understand why babelfish made that exchange now, when other moves may have given you more of an immediate advantage, such as build y2 tweety or build y2 babelfish. Build b2 babelfish would have been clearly bad, however, because then Dralius could have done move b1 ChaCha babelfish catastrophe blue. Actually, Dralius could still work toward such an attack, and have it in three if babelfish doesn&#39;t do something to prevent Dralius from doing build y2 Dralius, build b2 ChaCha, sacrifice y2 Dralius move b1 babelfish move b2 babelfish catastrophe blue babelfish. Or even more damaging, Dralius could build y2 Dralius, build r1 ChaCha, sacrifice y2 Dralius move r1 ChaCha babelfish move r2 ChaCha babelfish catastrophe red babelfish! It&#39;s imperitive that you do something to defend against one of these. There are two paths, each taking three turns, so babelfish has at least one extra tempo to get it done. One thing that would delay this would be to somehow get a y1 back in the stashes to prevent Dralius from building y2.\n\tdralius: Just too much to think about in this game.\r\n\n\n26) babelfish: Attack Y2 Boogie\n\tbigby: I thought that the 3 ship had to be red in order to attack dralius if he entered babelfish.  But after reading the rules again, You just have to have a red ship in the sector in order to attack, correct? so babelfish&#39;s Y3 could turn back dralius&#39; R2 as long as babelfish leaves R1 in the system? \n\n27) dralius: Build R1 Dralius\n\tbabelfish: i need an inordinate amount of help to play this game.\r\n\n\tbigby: That&#39;s okay.  We all need to learn it before the triathalon!\n\tdralius: It is unlikly that i will understand how to play by the 28th.\n\n28) babelfish: Build R2 Boogie\n\tbabelfish: I am definately out of the tri.  I&#39;d love to do the first one suggested (cannon, pulling strings, fortac)\n\n29) dralius: Build Y2 Dralius\n\tdralius: No new Cannon until it&#39;s fixed :(\n\n30) babelfish: Move R2 Boogie Dralius\n\tbabelfish: No Cannon nor Fortac?  What&#39;s a girl to do?\n\tdralius: Storm the gates!!\n\tbabelfish: Brian proposed on Friday night.  Woo hoo!\n\tdralius: Congratulations. \r\n\r\n\n\n31) dralius: Move R1 Dralius Boogie\n\n32) babelfish: Attack Y2 Dralius\n\n33) dralius: Attack R2 Dralius\n\n34) babelfish: Build R3 Boogie\n\n35) dralius: Move R1 Dralius Boogie\nCatastrophe Boogie R\n\tdralius: ever get that sinking feeling?\r\n\n\n36) babelfish: Move Y2 Dralius Boogie\n\tbabelfish: I&#39;m too confused to have any kind of feelings.\n\tdralius: Do you like hard cider?\n\n37) dralius: Build Y3 Dralius\n\n38) babelfish: Move B1 Babelfish Tweety\n\tbabelfish: like Woodchuck? yep.\n\tdralius: just bottled some very tart hard cider last weekend. I will save some for the BBQ.\n\tbabelfish: cool\n\n39) dralius: Trade Y3 R3 Dralius\n\n40) babelfish: Discover B1 Tweety R1 Elmo\n\n41) dralius: Move Y1 Boogie Chacha\n\n42) babelfish: Build Y3 Tweety\n\n43) dralius: Trade Y1 R1 Chacha\n\n44) babelfish: Move Y3 Tweety Elmo\n\n45) dralius: Move R2 Chacha Babelfish\n\tdralius: Danette is working on the 3rd so we can&#39;t get together quite as early as i thought. How is 5pm for U?\r\n\n\tbabelfish: Actually, that&#39;s better for us too.\n\tdralius: We are planning on BBQ pork ribs. Do you have any dietary restrictions? We can change that, there are plenty of other good things to grill.\n\tbabelfish: Nope, that&#39;s what I made for you guys, silly.  My fav.  I basically eat nearly everything...(in mass quanities.)\n\tdralius: So far the only other items we are set on is corn on the cob and cider. I&#39;ll make up my mind on the rest by tommorow\n\tbabelfish: what should we bring?\n\tbabelfish: dessert? \n\tbabelfish: I don&#39;t know what the heck to do next, I&#39;m stalling, can&#39;t you tell.\n\n46) babelfish: Trade Y3 R3 Elmo\n\n47) dralius: Attack Y1 Babelfish\n\n48) babelfish: Move Y2 Boogie Dralius\n\tdralius: desert is fine\n\n49) dralius: Move R1 Chacha Babelfish\nCatastrophe Babelfish Red\n\tdralius: How was the race?\n\n\tdralius: i hope the SDG Triathalon is less painful\n\nHomeworlds Online (SDG# 3293)\nStarted: 2006.4.30, Ended: 2006.5.4\nParticipants: TwoShort (S), GeepaMoogle (N)\nWinner: TwoShort\n\n1) GeepaMoogle: Homeworld B3 Y1 G3\n\n2) TwoShort: Homeworld B2 R1 G3\n\tGeepaMoogle: Checking out your game with jeep by the way.  I may be in over my head..\n\n3) GeepaMoogle: Build G1 Geepamoogle\n\tTwoShort: Well, for what it&#39;s worth, I think both Jeep and I feel in over our heads in that game :)  Anyway, have you played much Homeworlds before?\n\tGeepaMoogle: Not really.  Although I have tried to study some useful tactics to keep in mind, and the relative strengths and weaknesses of things.\n\tGeepaMoogle: A defensive side to your homeworld, eh?  Interesting.\n\n4) TwoShort: Build G1 Twoshort\n\n5) GeepaMoogle: Discover G1 Geepamoogle Y2 Vesperoutpost\n\tGeepaMoogle: I really ought to play this by email sometime.  Perhaps with a separate account, so I can craft amusing stories as I play.  I saw one game that was logged and the text was amusing to say the least.  (Russell vs Andy, accessible from Wunderland somewhere)\n\tTwoShort: The red homeworld star is definitely contrary to conventional wisdom.  Jesse played it that way in our current game, and did well with it, so I figured I&#39;d try it.  The advantage is not so much that it&#39;s red, but that it isn&#39;t green or yellow, letting you have more ships of those colors before you get close to a disaster... Or that&#39;s the theory anyway; first time I&#39;ve tried it.\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) GeepaMoogle: Build G1 Geepamoogle\n\tGeepaMoogle: Save the choices which would give warnings, all opening star/ship trios might have some benefits.  Although I suspect that you want a blue and green somewhere, and you don&#39;t want a red ship in the normal setup.  (However, a red ship might be useful for a blitz set-up)\n\n8) TwoShort: Build Y1 Twoshort\n\n9) GeepaMoogle: Trade G1 B1 Geepamoogle\n\n10) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n11) GeepaMoogle: Move B1 Geepamoogle Vesperoutpost\n\n12) TwoShort: Build G1 Twoshort\n\tTwoShort: Without gree, the only thing you can do on your first turn is turn you ship green.  Without blue, you could theoretically grow, and then move to blue, but it would be pretty crippling.\n\tTwoShort: I can&#39;t really see starting twith a shiop that wasn&#39;t green or yellow either.\n\n13) GeepaMoogle: Build B1 Vesperoutpost\n\tGeepaMoogle: Keep trying to think of other possible functions for ships  (outright destruction comes to mind) but nothing all that great can I come up with.\n\n14) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: Well, actually, as the second player, I&#39;ll start with a b3 ship (and b1 star) if the opponent started with a b1 star, but that&#39;s a special case strategy.\n\n15) GeepaMoogle: Trade B1 R1 Vesperoutpost\n\tGeepaMoogle: I will probably be back a bit later.  Hungry and I want to get a set of extra trees so I can have two games on table at one time (as well as the dice for a pattern matching game)\n\tGeepaMoogle: Nice..  You seem to have locked me out of yellow for now.\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n17) GeepaMoogle: Trade G3 Y3 Geepamoogle\n\n18) TwoShort: Sacrifice Y2 Grogar\nDiscover Y1 Grogar R2 Doomtown\nMove Y1 Doomtown Geepamoogle\n\tTwoShort: So as long as we&#39;re tossing around strategy tips; letting your opponent monopolize a color is bad, and that goes tripple for yellow :)\r\n\n\n19) GeepaMoogle: Trade Y3 R3 Geepamoogle\n\tTwoShort: Sorry, I have a hard time not going for the throat when I see an opening...\n\n20) TwoShort: Discover Y1 Geepamoogle B2 Sentrypost\n\tGeepaMoogle: I didn&#39;t consider you might attempt to cripple my people on the eve of crowning the newest cruise vessel.  They have demanded your head now.  (Space cruises can come later.)\n\n21) GeepaMoogle: Build G1 Vesperoutpost\n\tTwoShort: Clearly a warlike weapon-building people such as yourselves must be contained. I&#39;m afraid we cannot allow you access to hyperdrive technology.\n\n22) TwoShort: Trade Y3 G3 Twoshort\n\tGeepaMoogle: We have done your people no harm, nor have we invaded your space.  Our enforcer ships are strictly defensive.\r\n\r\nThat and your scouting ship nearly ran the Queen Mary space cruiser into the planet.  The results would have been devestating.\n\n23) GeepaMoogle: Move G1 Vesperoutpost Geepamoogle\n\n24) TwoShort: Build G2 Twoshort\n\tTwoShort: We were simply trying to help out your celebration with an exciting fireworks display.  Sorry you got the wrong impression.  Hopefully we&#39;ll have another opportunity to share our fine fireworks with you soon.\n\n25) GeepaMoogle: Build G2 Geepamoogle\n\tGeepaMoogle: Well, next time, do check with Vesper Defense Outpost.  All Federation traffic is supposed to flow through there.  Our scientists report a star explosion in the general direction your ship came from.  Your pilot might need a vacation.\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\n\tTwoShort: Such beaueaucratic restrictions mean fireworks shows will take considerably more resources to arrange.  We&#39;ll just have to set up a little factory to speed up production.\n\n27) GeepaMoogle: Trade R3 Y3 Geepamoogle\n\tGeepaMoogle: It&#39;s not beaurocratic.  We just want to make sure the guy running the fireworks knows how to handle them safely.  Our galactic coroners have determined &quot;fireworks&quot; were the reason that one star exploded.  Luckily, that planet was only inhabited by telemarketers, so everything ended up OK.\n\tGeepaMoogle: Also curious, do I seem to be on the road to recovery?  It&#39;s 1L,1M,4S vs 1L,2M,3S at the moment for whatever that is worth.\n\tTwoShort: Well, honestly, I think you&#39;re doomed.  My basic thought on things to look at is Who has more 3 pointers? and Who has more yellow, particularly 2 &amp; 3 pointers?  So I&#39;m slightly ahead now, but I also have a factory going, which I&#39;ll use this turn to take the rest of the green so you can&#39;t set up your own factory, and in 2-3 turns I&#39;ll use it to take 2 of the 3 remaining yellows.  On the other hand, I thought I had you finished off when I threw the yellow into your homeworld,  so a comeback might well be possible... but it doesn&#39;t look good. \n\n28) TwoShort: Trade G2 R2 Twoshort\n\tTwoShort: Um, I mean, production is ramping up, and we look forward to brining the people of GeepaMoogle some fine fireworks displays in the future!\n\n29) GeepaMoogle: Build G2 Vesperoutpost\n\tGeepaMoogle: Sucks to get off to an early bad start.  Ah well, it would seem we have reaquired our Queen Mary after a ramp down of security.  Politicians were worried to learn someone was buying up all the cocktail napkins, so were motivated to pass the measure restoring her before it was too late.\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Sentrypost\nBuild Y3 Grogar\nBuild G3 Twoshort\n\n31) GeepaMoogle: Build B1 Vesperoutpost\n\n32) TwoShort: Sacrifice Y2 Grogar\nMove Y2 Sentrypost Geepamoogle\nMove Y1 Sentrypost Geepamoogle\nCatastrophe Geepamoogle Yellow\n\n33) GeepaMoogle: Trade G2 Y2 Vesperoutpost\n\tTwoShort: Our forces at sentryPost have grown tired of sitting there watching the exciting goings on on your homeworld, and have decided to come visit.  Naturally, they&#39;d like to celebrate this meeting of our cultures with a fine fireworks display!\n\n34) TwoShort: Sacrifice Y3 Grogar\nMove G1 Yolonda Vesperoutpost\nMove G1 Vesperoutpost Geepamoogle\nMove G3 Twoshort Geepamoogle\nCatastrophe Geepamoogle Green\n\tTwoShort: And now I&#39;m sure I have you; I&#39;ve got 3 pointers and you don&#39;t, and I can keep you from getting any before I use mine to take over your homeworld.\n\tGeepaMoogle: Bleh.  Is there any place that has a list of useful tactics and traps to watch for?\n\n\tGeepaMoogle: I know it&#39;s over, just keeping the game alive until I get a response.\n\tTwoShort: There&#39;s the wiki here, and the one at icehousegames.org, but the total amount of strategic advice there isn&#39;t that great.  Certainly the best way to learn is by playing;  I&#39;ll certainly be happy to play again any time.  If you like, we could play an unrated game- I&#39;ll still play the same way, but I&#39;ll feel freer to blather on about the strategies I&#39;m trying and what I&#39;m thinking at each stage.  I like talking about homeworlds stragtegy about as much as I like playing, but in a rated game I can&#39;t bring myself to tell you to look out for the surprise attack you might not be seeing...\n\tTwoShort: Oh, and just so you know, I beleive you can keep chatting in a game even after it ends...\n\nHomeworlds Online (SDG# 3330)\nStarted: 2006.5.1, Ended: 2006.5.14\nParticipants: GeepaMoogle (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld B1 Y2 G3\n\n2) GeepaMoogle: Homeworld Y3 B1 G3\n\n3) jeep: Build G1 Jeep\n\n4) GeepaMoogle: Build G1 Geepamoogle\n\n5) jeep: Trade G1 B1 Jeep\n\n6) GeepaMoogle: Trade G3 B3 Geepamoogle\n\n7) jeep: Build B2 Jeep\n\tGeepaMoogle: Already had TwoShort try locking me out of a color.  No thank you..\n\n8) GeepaMoogle: Build B2 Geepamoogle\n\tjeep: Yeah, it&#39;s no fun.  At least, if you are the one locked out.\n\n9) jeep: Discover B2 Jeep Y3 Ribbon\n\tGeepaMoogle: Well, since my initial MegaMall was such a success, the people have demanded I build a franchise out of it.  Behold the new, more convenient Malls&#39;R&#39;Us.\n\n10) GeepaMoogle: Trade B3 G3 Geepamoogle\n\n11) jeep: Sacrifice G3 Jeep\nBuild B2 Ribbon\nBuild B3 Ribbon\nBuild B3 Jeep\n\n12) GeepaMoogle: Build B3 Geepamoogle\n\n13) jeep: Sacrifice B2 Ribbon\nTrade B3 G3 Jeep\nTrade B3 Y3 Ribbon\n\n14) GeepaMoogle: Trade B2 Y2 Geepamoogle\n\n15) jeep: Sacrifice G3 Jeep\nBuild B2 Ribbon\nBuild B2 Ribbon\nBuild B3 Jeep\n\n16) GeepaMoogle: Discover B3 Geepamoogle G2 Gaia\n\n17) jeep: Sacrifice B2 Ribbon\nTrade B3 G3 Jeep\nTrade B2 R2 Ribbon\n\tGeepaMoogle: Well, my first game against TwoShort was a disaster, as evident by the fact it was over in a week.\n\tGeepaMoogle: I chalk it up to ignorance of some of the more advanced ploys and/or potential hazards to take advantage of.\n\n18) GeepaMoogle: Build B2 Gaia\n\n19) jeep: Build G1 Jeep\n\n20) GeepaMoogle: Trade B2 Y2 Gaia\n\n21) jeep: Move G1 Jeep Ribbon\n\n22) GeepaMoogle: Build Y1 Geepamoogle\n\n23) jeep: Build G1 Jeep\n\n24) GeepaMoogle: Move G1 Geepamoogle Gaia\n\n25) jeep: Build B2 Ribbon\n\n26) GeepaMoogle: Build Y1 Gaia\n\n27) jeep: Discover Y3 Ribbon G2 Stage\n\n28) GeepaMoogle: Move Y1 Geepamoogle Gaia\n\n29) jeep: Sacrifice G3 Jeep\nBuild G2 Ribbon\nBuild G3 Jeep\nBuild Y1 Stage\n\n30) GeepaMoogle: Build G3 Geepamoogle\n\n31) jeep: Move Y3 Stage Geepamoogle\n\n32) GeepaMoogle: Trade Y2 R2 Geepamoogle\n\n33) jeep: Sacrifice R2 Ribbon\nAttack R2S Geepamoogle\nAttack G3S Geepamoogle\n\n\tGeepaMoogle: Curses.  I missed that possibility.  It seems plain enough to me I currently lack the foresight to survive the opening phases.\n\tjeep: Well, making the small universe was the problem, I think.  I had the first shot, so the small universe just helped me.\n\tjeep: Uh... ignore my last comment, I thought this was a different game.\n\tGeepaMoogle: I was about to say..  Well, I think I was toast whenever your large piece moved in and you had some reds ready to sacrifice.  However, I thought making my own that you would then retreat, and I could then make use of my factories somehow\n\nHomeworlds Online (SDG# 3321)\nStarted: 2006.5.2, Ended: 2007.6.22\nParticipants: andylooney (S), Danner (N)\nWinner: andylooney\n\n1) Danner: Homeworld B2 G1 R3\n\tDanner: hi\n\n2) andylooney: Homeworld B3 R2 G3\n\tDanner: I&#39;m working on a HomeWorlds Visual Basic program :)\n\tandylooney: Cool! \n\n3) Danner: Build R1 Danner\n\n4) andylooney: Build G1 Andylooney\n\n5) Danner: Trade R1 Y1 Danner\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) Danner: Build Y1 Danner\n\n8) andylooney: Build G1 Andylooney\n\n9) Danner: Build R1 Danner\n\n10) andylooney: Build G2 Andylooney\n\n11) Danner: Trade Y1 B1 Danner\n\n12) andylooney: Discover G2 Andylooney Y1 Different\n\n13) Danner: Trade R3 G3 Danner\n\tDanner: you have cool strategy :)\n\n14) andylooney: Build G2 Different\n\n15) Danner: Discover Y1 Danner G3 Deepspace\n\n16) andylooney: Discover G2 Different G3 Jolly\n\n17) Danner: Build Y1 Deepspace\n\n18) andylooney: Build G2 Different\n\n19) Danner: Build Y2 Deepspace\n\n20) andylooney: Build Y2 Andylooney\n\n21) Danner: Build B1 Danner\n\n22) andylooney: Trade G1 B1 Andylooney\n\n23) Danner: Sacrifice B1 Danner\nTrade G3 Y3 Danner\n\tDanner: 1. sacrifice Y3 andylooney; move G2 Different Jolly; move G2 Jolly Danner; move G2 Jolly Danner; catastrope Danner G;\r\n2. sacrifice Y2 andylooney; move B1 andylooney Different; move B1 Different Danner; catastrophe Danner B;\r\nThis is your plan, isn&#39;t it? :)\n\n24) andylooney: Build G1 Andylooney\n\n25) Danner: Build R1 Danner\n\n26) andylooney: Build G3 Different\n\n27) Danner: Build Y2 Danner\n\n28) andylooney: Discover G3 Different Y3 Howell\n\n\nHomeworlds Online (SDG# 3380)\nVariants: &quot;Unrated&quot;\nStarted: 2006.5.5, Ended: 2006.5.21\nParticipants: Keith (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B3 G3\n\tTwoShort: Well, at least I think I like expounding in unrated games... the one I just started vs. GeepaMoogle is the first unrated game I&#39;ve played.\n\tTwoShort: So anyway, expounding: always start with a green or yellow ship.  I prefer green, and I think it&#39;s easier for beginners, but some quite good players (e.g. Andy Looney) prefer yellow, and do quite well with it.  One of your stars should be blue; last week I would have said the other should definitely be green or yellow (whichever your ship isn&#39;t), but then Jesse started a game against me with it red, and I can see the potential (actually having red is of minor benefit; being able to have more yellow &amp; green ships without aproaching catastrophe is the real advantage.)\n\n2) Keith: Homeworld Y2 B1 G3\n\tTwoShort: Oh, and sizes: the ship should be a 3 pointer, for the stars I&#39;d normally take a 1 &amp; 2 (I&#39;m being nice, and letting you); typically I&#39;d be taking the 1 &amp; 3 because I was going second and my opponent took 1 &amp; 2.  It&#39;s mainly about what you&#39;re moving to;  moving to three points gives you a bit of control over their availability; moving to one points can be limiting when they disappear fast.\n\tTwoShort: You could of course also take 1 &amp; 3 for a &quot;small universe&quot; game, or two twos to make us immediately ajacent.  But that is widely considered not as much fun, and a disadvantage for the second player in any case.\n\n3) TwoShort: Build G1 Twoshort\n\tKeith: Thank you for accepting my challenge.  It was your expounding comment in your unrated game with GeepaMoogle that gave me the idea.  \r\n\r\nI saw that Jesse took red and your comment about it but whatever advanced player advantage it offers is beyond my understanding.  \r\n\r\nI have only reached my second turn in my only other Homeworld game so I have no sense yet for one pointer depletion speed and game impact.  I will take your setup advice and the opportunity for a 1 &amp; 2 homeworld.\n\tTwoShort: build g1 twoshort\n\n4) Keith: Build G1 Keith\n\tTwoShort: Someday I&#39;ll stop typing orders in the wrong field...  Anyway, here in the early game, we&#39;ll both be building and expanding outward.  The things to think about are color monopolies and 3 pointers.  If all the pieces of one color are gone from the stash, and you don&#39;t have any as ships, it will be a problem.  If it happens with yellow, it will be crippling.  Assuming neither of us allows that to happen, the big deal will be who gets more three pointers when they become available.  \n\tKeith: Well at this point I can only build green.  Can&#39;t see trading it or I would have started with that color.  Can&#39;t move the g3 and would not want to.\n\tKeith: I can see how you would type your order into the comment field.  I just started to.  I think it is because of the game board.  The order input box is way far away.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Keith: Trade G1 Y1 Keith\n\tTwoShort: Yeah, the first turn is pretty much always the same: grow another of whatever your initial ship is.  \n\tTwoShort: Trying to monopolize colors or get 3 pointers are sort of medium-term goals, but the groundwork for them starts coming into play pretty quickly.  For example: if I had grown another green 1 point, you could get a green 2 point; not huge deal, but certainly better for you than me.  By flipping to yellow, there is only one yellow one point left; if you let me take it, you can&#39;t get yellow except by growing to a two point and using blue before I&#39;m able to take both two points, or by flipping your 3 point to yellow and building without letting me get one more yellow into your homeworld to cause a catastrophe; all in all, it will be a pain; so I&#39;d recommend taking the 1 point :) \n\tKeith: Given game lengths averaging 17 turns development would have to be fast.  It would seem to be much easier to get a yelllow one point than to wait and see if I get a two pointer in time.\n\n7) TwoShort: Build G1 Twoshort\n\n8) Keith: Discover Y1 Keith G3 Maruko\n\tKeith: Lets see if I can complicate the potential factory.\n\n9) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n10) Keith: Build Y2 Maruko\n\tTwoShort: Well, in the factory, you sacrifice a G3 to grow two other peices, then re-grow the same g3 you sacrificed.  \n\tTwoShort: So moving your yellow to a g3 doesn&#39;t really impact it dierectly (though it&#39;s a fine move in any case)\n\tKeith: Ahh.  I was thinking no g3 in the pool no factory.  So if my understanding is correct then sacrificing a y3 puts a y3 in the pool that stays and the same for r3.  The down side of the sacrifice is a window of piece opportunity for your opponent.  A b3 could be pulled back out of the pool but it is a limited cycle process as a 3-pointer is lost every cycle.  However, a g3 sacrifice cycle can be repeated as long as a player wants. \n\n11) TwoShort: Build G1 Twoshort\n\n12) Keith: Discover Y1 Maruko B2 Nikos\n\tTwoShort: Yes, sacrifice anything and it immediately goes into the stash.  Ditto if you move or sacrifice the last ship at a system: the system immediately goes into the stash.  This is what enables the factory, and also the &quot;investment&quot;, where you sacrifice a green that is the only ship at it&#39;s (generally Y3) system to immediately grow the system as a ship.\n\n13) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n14) Keith: Build G1 Keith\n\tTwoShort: So I imagine you did that so you would have more room to grow yellow at Maruko, which is a fine idea.  but that ship isn&#39;t doing much for you back at your homeworld.  Moving to a new g2 or b2 would probably be a better choice.  Growing another green at your homeworld should probably also be on your agenda for this turn or next.\n\tKeith: My concern for growing a new green anywhere is hastening the start of your factory effort.  I take it the advantage of a new g2 system is that is is adjacent to your homeworld.  A new system did not occur to me at all.  In retrospect I think a b2 would fit the ideas I had in mind better.  Would there have been a difference between discovering a new g2 and moving to grogar?\n\tTwoShort: Feel free to undo if you want.  I&#39;d probably move to a b2, but even if you move to a g2 it will be a few turns at least before I can safely factory.  Moving to Grogar doesn&#39;t sound so good; you don&#39;t have anything you can flip to red right now, while I do and would get the first chance anyway.  You could always run away if I did, but why give me the initiative in deciding when/whether to force that?  Really, in your shoes, rather than worrying about delaying my factory, I&#39;d make sure your own factory is set up and ready to go.\n\tTwoShort: The advantage of moving to a two (green or blue) is not so much that it&#39;s ajacent to my homeworld (though there is nothing wron gwith that), but that it is not your homeworld.  Having the y1 at your homeworld does nothing, because you already hve yellow access there.  As soon as I have a y2 you won&#39;t want to have 3 yellows there, so you can&#39;t grow more yellow there.  When we start with the factories, you&#39;ll want to have as many places to grow as you can.\n\tKeith: I feel a bit a awkward taking the move back because the need is based on my event horizon being only one or two ply so that a one ply screen update makes a difference.  I will do so since the game is unrated and it is okay with you.\r\n\r\nBTW thank you for all the advice.  The game is starting to make sense.  Elements of play like ship creation restrictions, the immediate availability of a sacrificed piece, investments and factories\n\n15) TwoShort: Build G2 Bluestar\n\n16) Keith: Sacrifice G3 Keith\nBuild G2 Keith\nBuild G3 Keith\nBuild Y2 Nikos\n\tTwoShort: My theory on undo generally is that if the opponent doesn&#39;t want you to undo, they should make a move.  For this game, I figure the idea is to have an instructive game; if you make a move I&#39;m sure is a bad idea, I&#39;ll encourage you to undo.  If you make a move that seems reasonble, but not quite what I&#39;d do, I&#39;ll tell you so, then try to take advantage of the opening.\n\n17) TwoShort: Build Y3 Grogar\n\n18) Keith: Trade G2 B2 Keith\n\tKeith: I guess I will stick my neck out.\n\n19) TwoShort: Trade G2 R2 Bluestar\n\tTwoShort: Well, I can&#39;t get a green to your homeworld to cause a catastrophe, so you&#39;re safe this turn.  But after this turn I&#39;ll be able to, so you&#39;ll have to spend your next turn dealing with it.\n\n20) Keith: Build Y3 Maruko\n\tKeith: I thought I was probably safe for one turn but was not sure I was seeing all of your possibilities.  I was not sure whether to convert a green to a blue before taking a factory turn or after.  I decided it would be better to grab the G2 and that you would be limited to adding only on yellow in Grogar.  Though it was a Y3.\n\n21) TwoShort: Move Y3 Grogar Maruko\n\tTwoShort: I&#39;m not sure the factory was a bad move, or what I would have done instead.  But I consider 3 poiters, particularly yellow ones, to be supremely valuable, so in my opinion the real question is what becomes of the other two.  I can&#39;t safely grow them this turn, or outright stop you from growing at least one, so I&#39;ll look for ways to mess with you if you do, and maybe get the last one.\n\n22) Keith: Trade Y2 R2 Nikos\n\tTwoShort: And now I should mention the gun rule: If your opponent draws their gun, draw your gun.  It&#39;s very risky to not have a red ship when your opponent has one, because they can move into a system, and get the first shot.  Ocasionally you can get away with it briefly, and I actually ignore the gun rule more frequently than most, but I often regret it.\n\tKeith: I dfinately feel under the gun but I want that y3.\n\n23) TwoShort: Move Y3 Maruko Nikos\n\tTwoShort: Exactly the sort of reason I sometimes ignore the rule... now let&#39;s see if I can make you regret it :)\n\n24) Keith: Move R2 Nikos Maruko\n\tKeith: I expect that you can.  Even more so if I misstep on this move.\n\tKeith: I could convert my b2 to a r2.  If you moved the y1 from grogar to Maruko we would both lose y3&#39;s and the system link to my homeworld would be eliminated.\n\tKeith: If you sacrificed your R2 unit, afterall I don&#39;t have a gun, then you could convert my Y3 in Maruko couldn&#39;t you?  That is more of a rules operation question than a tactical one since I could then move a Y1 in and trigger a catastrophe.\n\tTwoShort: If I sacrifice the r2, I could take both your peices at Maruko.  If you don&#39;t get a red or cause the catastrophe, I&#39;ll probably move the y3 into your homeworld, in which case I&#39;ll either win, or at least completely cripple you.  So you definitely want to do one of the two. I&#39;m not sure which is better though.  For what it&#39;s worth, the system link to your homeworld is pretty irrelevant, as long as there are 3s in the stash, your&#39;re reachable.\n\tKeith: Given that Discover is a seperate command from Move, Attack, Build and Trade I was not sure if you could build a link and move through on the same turn.  I will need to keep in mind that, just like a ship can move more than once from a sacrifice it can attack more than once.\n\n25) TwoShort: Build G2 Bluestar\n\n26) Keith: Move Y3 Maruko Bluestar\n\n27) TwoShort: Sacrifice Y3 Nikos\nDiscover G2 Bluestar Y3 Larry\nDiscover G1 Bluestar B3 Moe\nDiscover R2 Bluestar B3 Curly\n\n28) Keith: Move R2 Maruko Grogar\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Larry\nBuild Y2 Grogar\nBuild G3 Twoshort\n\n30) Keith: Attack Y2 Grogar\n\tKeith: Well that certainly explains what you would do if I walzed a 3 pointer in among three smaller ships and threatend to convert two.\n\tKeith: I suppose it also puts you in a good position to crank a factory given only one piece per system.  Was such a dispersion part of your plan all along?\n\tTwoShort:  I didn&#39;t like the situation, so I figured I&#39;d make big changes :)  Generally, I rarely have a definite plan.  I look for various things I could do over the course of a few turns that would be good for me or bad for you, but then I try to find the moves that produce the most different posibilities.  I think of it as trying to threaten to do more things thatn you can counter.\n\tTwoShort: So even now, I don&#39;t know what those ships are going to do at the 3 points, but: If you keep up the chase with your big yellow, there is only one at each system; being spread out is nice if I want to factory; if I get a big yellow again (which I&#39;ll be eager to) the greens could move in for a disaster; if you use your red, the red could move in and cause trouble; Either of the greens might at some point be able to serve as an investment.  \n\tKeith: I can&#39;t see galavanting around after single ships.  BlueStar was the only sector with the density to make a try worthwhile.  Not sure what to do now and my work schedule is taking away my free time for a while.\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Grogar\nBuild G3 Twoshort\nBuild R1 Curly\n\n32) Keith: Move Y2 Maruko Grogar\nCatastrophe Grogar Yellow\n\tKeith: If my understanding of the rules is correct I could use the r2 in grogar to convert the y2.  It might not be good strategy but I could.\n\tTwoShort: Well, I&#39;m not entirely sure what you should do now, but I&#39;m kind of short on yellow, so keeping it that way is probably a good idea, and moving you red to grogar was a fine way to pursue that.  I could have just run away, but this seemd more fun: I&#39;ve set up the green catastrophe threat if you let me sacrifice the y2, so I assume you&#39;ll take it; then I&#39;ll grow the y3; then you&#39;ll move in from maruko to cause a catastrophe, and those yellows will be back in the stash and maybe I can get some.  Of course, I think the results of that little script are slightly in your favor, so if I see something better, I&#39;ll do that instead; as might you...\n\tKeith: I see you could move the two g2s at Larry to Keith to create a disaster.  With the y2. No y3 required.\n\tKeith: It is tempting to sacrifice my g3 and grow it back pluse the y3 and a b1 or r1.  But then your two g2s...\n\n33) TwoShort: Trade R2 Y2 Curly\n\n34) Keith: Move G1 Keith Larry\n\n35) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Moe\nBuild Y1 Curly\n\tTwoShort: Just to keep the pressure on...\n\n36) Keith: Move Y3 Bluestar Larry\n\tKeith: Hopefully that was a good idea.  It seems to leave you far away from a y3.  I am worried about your factory.  You can get another g3 but I could not safely get it.\n\tKeith: You are making your moves so fast I am sure I am walking into a mess you see coming but that I do not.\n\n37) TwoShort: Trade G3 R3 Moe\n\tTwoShort: Not really... It took me a while to think through growing instead of running away from your red a few moves back; since then things have gone about as I expected.  I hadn&#39;t thought that last move out ahead, but I knew I wanted some yellow, and to keep threatening the green catastrophe.  The mess I see coming is that I&#39;m going to disable your factory; either by catastrophe, or by what you&#39;ll have to do to prevent it...\n\tTwoShort: So, for example, it never occured to me you&#39;d do that...\r\n\n\n38) Keith: Build G3 Larry\nCatastrophe Larry Green\n\tTwoShort: Funny you should mention my making moves fast... I&#39;m sitting here saying &quot;Isn&#39;t this a tutorial game? I&#39;m having to think entirely too hard for that.&quot; :)\n\tKeith: Well thank you.  Blame the teacher.  \r\n\r\nYeah well ships are options and you are fast out optioning me.  Which I seem to remember you did somewhere else against a heavy duty player.\n\n39) TwoShort: Move Y2 Curly Keith\n\n40) Keith: Build R1 Grogar\n\tKeith: There seems to be so many possibilities.  Grow a g3 in Keith... no then two g2s move and catastrophe.  Grow a g3 in Larry and create a catastrophe and maybe delay more factory action with all the greens in the stash.  Convert your two greens in Larry but then I have no gun and easy catastrophe.  Hmmmm...\n\n41) TwoShort: Sacrifice G1 Moe\nBuild Y2 Keith\n\tTwoShort: Good choice; at least compared to using your red, because if you did I would be free to move my red into your homeworld.  Which is why I was wanting to factory up another g3 I could move in to force you to use up your red, but now you shut down the factory...  So now I&#39;ve got to think of a plan B...\n\tTwoShort: Well, there&#39;s a thought...\r\n\n\n42) Keith: Trade Y1 G1 Nikos\n\tKeith: And at first impression I don&#39;t get it.  It does place two yellow elements in my homeworld.\n\tTwoShort: Well, as noted before, if you sacrifice your red before getting another, you&#39;re doomed.  So next turn I can grow another yellow, and the turn after that I can move in the y1 from curly for the catastrophe, destroying one of your homeworld stars.\n\tTwoShort: or I could sacrifice my r1 to take your b2, and start growing toward both disasters.\n\tKeith: It is tempting to sacrifice the g3 and grow a y2 at Larry, y3 at Nikos and an r1 at Grogar.  Partly because it gives me a second red ship but mostly because it takes the y3 you enjoy so much out of the stash.  But no three pointer in my home world and your r3 moves in with the same effect as if I had no r2.  Tricky.\n\tKeith: Sooner or later one of my &quot;try this and see if I have overlooked something&quot; is going to cost me dearly.  \n\n43) TwoShort: Trade G1 R1 Twoshort\n\tTwoShort: Looks good to me; you still lose the star, but I don&#39;t think that was avoidable.\n\n44) Keith: Build G1 Nikos\n\n45) TwoShort: Trade R3 G3 Moe\n\tTwoShort: Clever idea! But I thought of it too :) \n\n46) Keith: Build G1 Nikos\n\tKeith: As it was your only real vulnerability it was worth a try.\n\n47) TwoShort: Sacrifice G3 Moe\nBuild Y1 Keith\nBuild R2 Twoshort\nBuild Y3 Curly\n\n48) Keith: Sacrifice Y3 Larry\nMove R1 Grogar Twoshort\nMove G1 Nikos Twoshort\nMove G1 Nikos Twoshort\n\n49) TwoShort: Sacrifice R2 Twoshort\nAttack R1S Twoshort\nAttack B2S Keith\n\n50) Keith: Build G2 Twoshort\nCatastrophe Twoshort Green\n\tKeith: Which I have done in my other learning game with CDRoddefer (which is many many turns less developed than this one)\n\tKeith: Though I like your slow factory idea.  Create a 3-pointer, convert it to green, then a one turn factory.\n\tKeith: I think it is all down hill form here for me.  I am going to try something wild - the most likely result will be accelrating the end.\n\n51) TwoShort: Trade Y3 G3 Curly\n\tTwoShort: I think it&#39;s downhill for you unless I screw up. You&#39;re doing an excellent job of giving me oportunities to screw up...  This one will take a bit of figuring.\n\tTwoShort: Definitely a lot of ways to get this wrong.. OK I think I&#39;ve got it.\n\n52) Keith: Sacrifice R2 Grogar\nAttack B2 Keith\nAttack Y2 Keith\n\tTwoShort: By the way, I assume you&#39;re aware that you can cause the yellow catastrophe in your own system any time (as can I).  I&#39;m not saying you should, but it might not have occurred to you.  I haven&#39;t just because I can any time, and didn&#39;t want to bring you closer yet.\n\tKeith: Hmmm... shoulda moved the r2 into TwoShort.  I was hoping to sacrifice my G3 and grow some red and green ships and create a double catasrophy.\n\n53) TwoShort: Sacrifice R1 Curly\nAttack B2S Keith\nCatastrophe Keith Yellow\n\tTwoShort: I could have traded the g3 to yellow or blue if forced to.  Still, you can blow up green, and then I&#39;ll have no 3 point in my homeworld if you can get some yellow and move the r2 in...  but that&#39;s assuming you can avoid your own double catastrophe this turn.\n\n\tTwoShort: Anyway, excellent game!  Your rate of improvement was quite impressive; by the end here I felt like I had a real fight on my hands, despite having taken advantage of your inexperience in the early game.\n\tKeith: Thank you for the lessons and the positive feedback.  I am glad I was able to make you work for it a little near the end.  Right now I have a tough time seeing very far ahead but I have learned a lot of things to look out for.  ...I&#39;ll be back.\n\nHomeworlds Online (SDG# 3367)\nVariants: &quot;Unrated&quot;\nStarted: 2006.5.3, Ended: 2006.6.17\nParticipants: Keith (S), CDRodeffer (N)\nWinner: CDRodeffer\n\n1) CDRodeffer: Homeworld B2 Y1 G3\n\tCDRodeffer: OK, Keith, we&#39;re ready to go. I guess I got randomly selected to go first. When creating a home world and deciding upon your first ship, you should probably always include green somewhere (otherwise you&#39;ll be delayed in making new ships, which is very important). Whether to include yellow or blue is kind of a toss-up. Blue gives you flexibility in choosing to trade ships for new ones of the same size, but you can&#39;t go anywhere without yellow. Having red somewhere is aggressive, and it does give your home system some protection in the off chance that your opponent decides to build his star system using the same two sizes of pieces as you, but it&#39;s usually not that big a deal early on. The second player has a slight advantage in knowing what the first player chose, and if he&#39;s confident, a red ship is often a good first choice for the 2nd player. One thing you will want to be sure of is to choose a large ship first, no matter what color it is. Starting with anything smaller puts you at a huge disadvantage.\n\n2) Keith: Homeworld G3 Y2 B3\n\tCDRodeffer: Here, I picked a small yellow and a medium blue for my home binary system, and a large green for my flag ship. I can&#39;t attack anything, but even so, I can&#39;t be attacked by anything else unless you somehow get another large ship into my home system, which generally doesn&#39;t happen early in the game. A ship can only attack other ships if you have access to red (either by the star or one of your own ships) AND you&#39;re attacking a ship that&#39;s no larger than (but may be of equal size to) the largest ship you have in that system. Starting with a large green ship is commonly called &quot;the investment&quot; because it&#39;s the first step toward making a &quot;factory&quot; -- a formation of a large green and any other green ship in one system with no more greens in the supply that, via sacrifice, allows a player to build new ships anywhere you already occupy at double the rate normally possible.\n\tCDRodeffer: If you want to be aggressive, you could choose a small and a medium for your binary star, at least one of which should probably be yellow, and a large red ship. If you want to play a more positional game, any other size combination (small plus large or medium plus large) binary star system will give you a bit more space, since systems are only connected to other systems that they do NOT share a star in a common size.\n\tKeith: Yeow! Even the order submission has a learning curve.  Thank you for the help.  I will be rereading the rules and your advice.  Probably take my turn later this evening.\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\tKeith: I decided I wanted my homeworld to be able to create ships and move them out.  At least until a catasrophe comes along.  I decided to make my size three star green to pull a G3 out of the sacrifice pool you are getting a head start on.  I don&#39;t quite grasp the factory concept yet.  It seems that if you sacrifice size 3 greens you build ships at triple rate and size 2 ships produce double rate.\n\tCDRodeffer: Pulling the G3 out of the sacrifice pool, as you say, actually *helps* me on my way toward the factory, because it depends upon the eventual depletion of green ships. The way the factory works is I sacrifice the G3, immediately rebuild the G3 that I sacrificed in some system where I already have another green ship (this is important!), and then build two more ships of the same color as I have elsewhere. A bit on how the game often goes -- catastrophes are a big deal, and are much more common way to cause your opponent damage than merely attacking. Your large blue is a kind of a future trap for you. If you get *any* three ships into an important system, you can sacrifice the large blue and change them all to one color, then trigger a catastrophe. Since I&#39;ll have to have at least two green ships in one of my systems at all times (probably my home system) to make the factory work, this reduces your requirements to getting only two ships in to cause the catastrophe. Yellow ships are always mobile, so they&#39;re usually the ones to move in. My general strategy for defending against that would be to try to lock down the green and/or yellow economies to prevent you being able to change the color of the ships and/or move them into my vulnerable system in the first place. But for now, I have to complete my investment.\n\n4) Keith: Build B1 Keith\n\tKeith: Does the green pool have to be completed for the factory to work?  Wouldn&#39;t it work as long as the one and two point ships were depleted?  Your comments on factories did clear up one misconception I had.  I had the idea that sacrificed ships went into the pool after the special actions were taken.  I.E. into the pool avialable to the other player on their turn.\n\tKeith: I just encountered a rule misreading on my part.  I tried to create a Y1 ship based on the idea that I had yellow in the system.  But it needs to be a yellow ship.  So the only real option I have this turn is to build another blue ship.\n\n5) CDRodeffer: Trade G1 R1 Cdrodeffer\n\tCDRodeffer: Ah, yes. I made that mistake when I first started as well. You can only build a new ship (the smallest available) in the same color as one you already have in that system, and you must have access to green (either one of your own ships or a star). The rules are kind of brief, and could probably use more examples. As for your options, you could have traded your large blue for something else, but that would have immediately lost you a tempo. The first turn is almost always spent building, hence the necessity to have green somewhere. Another thing to think about is that it&#39;s almost always good to have access to all four colors in your home system, at least eventually. So I&#39;ll temporarily trade in my small green for a small red. This way, if you do manage to get a single ship into my home system, I can defend against it. I would not be able to defend against multiple ships, though, at least not yet.\n\n6) Keith: Trade B1 R1 Keith\n\tCDRodeffer: Now I can build either red or green ships in CDRodeffer, the smallest of whichever is available. Likewise, you&#39;ll probably want to trade your small blue for something else. A red would maintain a sort of balance of power, but just as it is for me, it doesn&#39;t get me anywhere immediately, except able to defend against a home invasion of a single ship. Alternatively, you could start exploring, probably with your small blue. You could discover a new small world of any color.\n\n7) CDRodeffer: Build G1 Cdrodeffer\n\tKeith: I will go with red too, though more for being four color than defensive.\n\n8) Keith: Build B1 Keith\n\n9) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\n10) Keith: Discover R1 Keith Y1 Maruko\n\n11) CDRodeffer: Build Y2 Cdrodeffer\n\n12) Keith: Trade B3 Y3 Keith\n\tKeith: Ahhh... I see I am in danger of getting locked out of yellow ships.\n\n13) CDRodeffer: Build G1 Cdrodeffer\n\tCDRodeffer: No, you&#39;ve never been in danger of that. Besides, yellow is one of the colors that always seems more readily available than some of the others, particularly blue and red. I&#39;m just building up a few ships to get ready to go exploring.\n\n14) Keith: Build B1 Keith\n\tKeith: I became concerned about yellow because 5 of the 9 were out of the pool (being all the one pointers and two of the two pointers).  I suppose I could have moved out of Maruko to put a y1 back in the pool.\n\n15) CDRodeffer: Trade Y1 B1 Cdrodeffer\n\n16) Keith: Build B2 Keith\n\tCDRodeffer: That would work too. Usually, two items of any one color is pretty safe for a home system, at least until your opponent gets two ships of that color up close and personal. But that usually takes a while, except in games where both players have home systems with the same sizes of stars, where only one system needs to be between them. So in normal games like ours, I usually try to build up a small fleet to build and then explore. Not everybody does this, and the game is new enough that I don&#39;t know if it&#39;s a viable long-term strategy or not. But my thinking is that having a few ships in a few different worlds gives me more choices for where to move. And in most other types of games, more choices is a good thing. Of course, I say that having lost most of the games of Homeworlds that I&#39;ve ever played....\n\tKeith: The one potential drawback I noticed to Homeworlds being a game that works for me is the very short average game length of only 17 turns.  I tend to prefer games that have more drawn out opening and middle phases.  So I sort of hope your explore and develope strategy is a viable one.\n\n17) CDRodeffer: Discover G1 Cdrodeffer Y3 College_fund\n\tCDRodeffer: I don&#39;t believe I&#39;ve ever had a game last less than 30 moves, but I may be mistaken. It seems much longer and involved in practice, at least to me.\n\n18) Keith: Trade B1 G1 Keith\n\tKeith: More turns, at least in this game, means more chances to learn so I am fine with that.  I do have a hypothetical question.  If my R1 moved to College_Fund wouldn&#39;t Maruko disappear and your G1 need to evacuate to avoid conversion?\n\n19) CDRodeffer: Move R1 Cdrodeffer College_fund\n\tCDRodeffer: Ships with different owners may coexist in a system, at least for some time. So if you moved your R1 from Maruko to College_Fund, my G1 would be OK. Attacking takes an action, so provided I didn&#39;t evacuate, you could then attack my G1 if you wanted to. But the answer to your other question, yes, if a star is completely abandoned, it immediately returns to the stash.\n\n20) Keith: Build Y1 Keith\n\tCDRodeffer: Or, if I move a red ship into College_Fund, it can defend against your attack by attacking first if you move your R1 in. This is because I&#39;ll have tempo there. Even had I not moved an R1 in, I could still have attacked by sacrificing my R1 elsewhere (it was originally in CDRodeffer, but could have been anywhere) to perform the attack. The difference between moving first for defense and sacrifice for defense is one small ship minus one tempo.\n\tKeith: Right.  Sacrificing allows actions in any system occupied.  Intellectually I know this but I don&#39;t see the possibilities yet when looking ahead.\n\n21) CDRodeffer: Build Y2 Cdrodeffer\n\n22) Keith: Sacrifice Y3 Keith\nMove Y1 Keith Maruko\nMove Y1 Maruko College_fund\nMove Y1 College_fund Cdrodeffer\nCatastrophe Cdrodeffer Yellow\n\tKeith: I am worried about you getting that y3.  My first thought was to move my r1 to Keith abandoning Maruko and putting a y1 in the pool.  However, at least for next turn, you can only build a y3 at CDRodeffer and I could sacrifice my Y3 to get a y1 there for a catastrophe... Right?\n\tKeith: This is more aggressive than I inended a learning game to be but I think I just saw a heavy hitting move.\n\n23) CDRodeffer: Trade B1 Y1 Cdrodeffer\n\tCDRodeffer: I would not have been able to build the y3 anyway, at least for another couple of turns, because I aready had three yellow elements in CDRodeffer. A sacrifice such as this is usually better as a late game tactic than this early, because as you can see, it has left you with no large ships and no immediate way to get any, and it still doesn&#39;t give you any numerical advantage in terms of fleet size.\n\n24) Keith: Trade B2 G2 Keith\n\tKeith: I see what you mean.  I can&#39;t even get a 2 pointer.  And I have not gained any functionality over you.  We both have all four colors.\n\n25) CDRodeffer: Build G1 Cdrodeffer\n\n26) Keith: Build B1 Keith\n\n27) CDRodeffer: Build G2 College_fund\n\n28) Keith: Move G2 Keith Maruko\n\tCDRodeffer: You know that you *are* allowed to trade a solitary blue ship in for one of another color, right? So even if you had not built the B1 in Keith, you could have traded it in for the available R1 or Y1.\n\tKeith: I do.  I was thinking that if I took a Y1, G2 or R1 you could take a Y2, G3 or R2.  From a stash point of view B1 was the safest to create.\n\tKeith: Actually there was another G2.  Taking a G2 would have put you one step closer to an operating factory.\n\n29) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tCDRodeffer: It will be a while before I can bring the factory into operation.\n\n30) Keith: Move B1 Keith Maruko\n\n31) CDRodeffer: Build Y2 Cdrodeffer\n\n32) Keith: Trade G2 Y2 Maruko\n\n33) CDRodeffer: Sacrifice Y2 Cdrodeffer\nMove Y1 Cdrodeffer Maruko\nMove Y1 Cdrodeffer Maruko\nCatastrophe Maruko Yellow\n\tCDRodeffer: I did not mean to hit the undo button. My three year old daughter is doing her best to make my computer time difficult.....\n\n34) Keith: Trade G1 R1 Keith\n\n35) CDRodeffer: Discover G2 College_fund Y1 Duckling\n\tKeith: I don&#39;t even remember what yellow ships I had in the Maruko system except a y2.\n\n36) Keith: Build B1 Keith\n\tKeith: FWIW my learning game with TwoShort went 53 moves (27 turns).\n\tCDRodeffer: The Maruko system was a small yellow. But you also had at least two other ships in the system that were lost when it went nova. I should have warned you about that one, I think. Anyway, 53 moves isn&#39;t too short, I don&#39;t think. We&#39;ll see how this one goes. I won&#39;t try to intentionally draw things out, but it might take a while to finish things. Back to having four colors in your home system is a good place to be, even if the ships are small. I need to rebuild after that sacrifice, so while I&#39;m ahead two ships in material, I&#39;m behind in tempo in terms of protecting my home system.\n\n37) CDRodeffer: Move G2 Duckling Keith\n\n38) Keith: Build R1 Keith\n\n39) CDRodeffer: Build R2 College_fund\n\tKeith: And then you grow one green a turn until there is a green catastrophe?\n\n40) Keith: Build R2 Keith\n\n41) CDRodeffer: Sacrifice R1 College_fund\nAttack R2 Keith\n\tCDRodeffer: The grow green until a catastrophe is one way to go, but it ultimately wouldn&#39;t help me much other than to blow up one of your stars. You don&#39;t currently have any green ships in Keith, so the loss would be all mine. Your building an R1 in Keith was probably the only move that could save you, else I could have sacrificed R1 in College_Fund to attack your R1 in Keith, then simply used the next few turns to progressively attack your ships until you didn&#39;t control anything in your home system. In an annotated game, you get an exclamation point for building the R1 at just the right time. That move puts me behind an attack tempo. Had I done the sacrifice, you could just attack back with no loss, and I&#39;d be out both a ship and a tempo, so I had to find another way. You have two R1 in Keith, which is soon going to become a liability. If you build R2 in Keith, there&#39;s no way you can stop me from eventually either building a B1 in CDRodeffer to sacrifice to change G2 to R2 for a red catastrophe or just moving my extra R1 from College_Fund in via some Y1 discovery as I did with the G2. But either of those is still at least two or three turns away. What can you do to turn my attention elsewhere?\n\tKeith: Since you have a g2 I can&#39;t attack and now a r2 it seems your in position to sacrifice the r2 and convert both of my r1s.  Then you convert one per turn there after using an r1 without sacrificing and I can only grow ships to stay ahead till I grow myself into a catastrophe.\n\tKeith: The other reason I can&#39;t grow an r2 is that you could convert it with your g2 and an r1 sacrifice.\n\tKeith: I could build a g1 threatening to eliminate your g2 and my green star with another green build.  But you could sacrifice your r2 and convert the g1 and ...\n\tCDRodeffer: Yes, you could do that. Losing green technology would be a bad thing for you, long term, but it might be one way to save yourself in the short term. You could build R2 and hope that I don&#39;t capture both of your B1 ships, then change one of your ships to green (red or blue, I don&#39;t see how it would really matter), then build another G1 to cause the catastrophe. Hmmm. As an aside, I wonder -- would sacrificing multiple ships, even if they are not used, fall within the rules? Probably not, but it&#39;s an effective, if costly, way to prevent either a catastrophe or your opponent taking control of something. Better no one have something than your enemy sort of thing, the scorched earth retreat. Have you considered exploring with one of your blue ships? I haven&#39;t thought about it much, but it might be a way to do something. If you&#39;re willing to intentionally move toward a red catastrophe in your home system, you can go ahead and build the R2 -- even with my R2 sacrifice I could only take two of the ships, then you could build another and cause the red catastrophe on the following turn. It would leave me with only one R1 available to go after one of your B1 ships, but you&#39;d still be &quot;alive&quot; as such.\n\tKeith: It seems to me that if I do move a B1 out you just sacrifice your R2 and convert both of my R1s.  Then I must grow a b1 every turn to stay ahead of the one per turn conversion rate of the R1s.  Eventually I catastrophy myself with blue growth.\n\n42) Keith: Trade B1 G1 Keith\n\n43) CDRodeffer: Discover G2 Keith Y1 Lonely_retreat\n\tKeith: Well that is pretty much that.  Awhile back you wrote &quot; What can you do to turn my attention elsewhere?&quot;  Did you have something in mind?\n\n44) Keith: Build R1 Keith\nCatastrophe Keith Red\n\n45) CDRodeffer: Build R1 College_fund\n\n46) Keith: Build B1 Keith\n\tCDRodeffer: Since this is a learning game, winning or losing doesn&#39;t matter, so I thought it might be fun to give us both some leeway to try out some ideas. Sound OK to you?\n\n47) CDRodeffer: Move R2 College_fund Cdrodeffer\n\tKeith: Sounds good to me.  I certainly learned a good lesson about overextending too early to remove your homeworld&#39;s binary status.  And the value of three-pointers.  \n\tKeith: And the value of two pointers...\n\n48) Keith: Trade B1 R1 Keith\n\n49) CDRodeffer: Trade R2 B2 Cdrodeffer\n\n50) Keith: Discover G1 Keith Y1 Bab4\n\n51) CDRodeffer: Build B1 Cdrodeffer\n\n52) Keith: Build B1 Keith\n\n53) CDRodeffer: Trade B1 Y1 Cdrodeffer\n\n54) Keith: Move B1 Keith Bab4\n\n55) CDRodeffer: Move B2 Cdrodeffer College_fund\n\tCDRodeffer: The type of tactic I&#39;ve been using the past few turns is to try to prevent you from having access to medium sized pieces, by whatever means necessary. It includes trading and building the ships as they become available, but mainly it involves leaving small ships in the supply as possible, preferably only one small ship per color that you have available to build. That way when you build a small, I have access to a medium immediately, which I could then sacrifice (if needed) before you have a chance to move any medium you could build.\n\tKeith: And its working.  Mediums continue to elude me for the moment.\n\n56) Keith: Build B1 Keith\n\n57) CDRodeffer: Build Y2 Cdrodeffer\n\n58) Keith: Build B2 Bab4\n\n59) CDRodeffer: Build B3 College_fund\n\tCDRodeffer: Great! Now that you&#39;re in position to get medium pieces, I can try to prevent your access to large pieces, while trying to secure them for myself. The keys to this sort of economic manipulation are first, to leave only ONE piece of the lower size available and second, to have at least two places where you can build the next larger size once pieces once they become available. Do you see how this is going to work out? Right now you can&#39;t build yellow, but in two turns you might be able to trade for a y2 if you decide to go that route (say build b2 Bab4 then trade b2 y2 Bab4). It would be risky for you to build b2 or b3 in Keith at the moment, at least while I have a y2 available for, say, sacrifice y2, move b2 College_Fund - Bab4 - Keith, catastrophe blue Keith. But you can (for now) either safely build blue in Bab4, or -- discover a new system somewhere. Yellow has become a bit of a strange resource in this game, which is a strange game anyway because we&#39;re not really playing to win or lose, but to learn tactics. But anyway, note that all of the star systems except CDRodeffer now have yellow suns. For mobility, I&#39;m dependent on having at least one yellow ship in CDRodeffer. Right now there are two, but that may suggest a possible avenue of attack for you....\n\tKeith: The lack of a yellow ship has felt odd.  I have seen comments in other games about the difficulty of being locked out of yellow.  Though really I have just been yellow impaired.  I did put a b1 out at Bab4 so that when I got the B1s out of the way I could safely build a B2 there.\n\tKeith: Thank you for the extended teaching game.  With Cannon now down and out for a month it has been nice to explore Homeworlds.  I have certainly learned about the disadvantage of going without a large ship (or a medium ship).\n\tKeith: It does seem that if I build a B2 at Bab4 then I could not safely follow with a B3 at either Bab4 or Keith.  So I guess I will move out another b1 givng me at least two safe grow systems.\n\tKeith: Wait.... I can only discover a G1 or R1 both of which put you in line for a medium ship.  Hmmmm...\n\n60) Keith: Move B1 Bab4 Cdrodeffer\n\tCDRodeffer: But building the b2 leaves a very tasty b3 for me to build as well. Of course, you can also now, and we&#39;ll both be in positions where we can trade it for any other large ship we need at the time. This is a good sort of combination to work toward -- a large ship of any color and access to both blue and yellow somewhere in the system. That&#39;s why that particular combination of colors is most recommended for the home system at the beginning of the game. It&#39;s both mobile and easy to change.\n\n61) CDRodeffer: Sacrifice R1 College_fund\nAttack B1 Cdrodeffer\n\n62) Keith: Move B2 Bab4 Cdrodeffer\n\n63) CDRodeffer: Trade B1 R1 Cdrodeffer\n\tCDRodeffer: If I understand your plans correctly (move b2 Bab4 CDRodeffer, sacrifice g1 Bab4 to grow another blue in CDRodeffer), then I need some way to get rid of these pesky blue aliens....\n\n64) Keith: Sacrifice R1 Keith\nAttack R1 Cdrodeffer\n\tKeith: Right about the B2.  Also I did not feel I could safely build a B3 in Bab4.  Now I can.  If you build a second B3 you will have three blue elements in either College fund or CDRodeffer and I can create a catasrophe.\n\tKeith: Though I suppose if I do build the B3 you can sacrifice the Y2 and move two B1s in.\n\n65) CDRodeffer: Trade G3 R3 Cdrodeffer\n\n66) Keith: Attack Y2 Cdrodeffer\n\tCDRodeffer: There is almost always another way to block slow (i.e., one ship at a time) invasions from leading to a catastrophe. Here&#39;s one of them.\n\n67) CDRodeffer: Attack R1 Cdrodeffer\n\tCDRodeffer: Now, at most you can build one more blue in CDRodeffer, but I&#39;ll eventually take them both over if you do. I also could have simply moved the ship out of the system, or better, discovered a new system with the b1, probably a g3 to try to deny you access to green technology. Building a b3 in Bab4 probably would have been a better move for you. Sure, I could have sacrificed y2 to move in two blue ships from College_Fund, but it would have cost me three ships (two mediums and a large) and you only two (one medium and one large). If it had been in your home system, it may have been worth it, but usually not in an external system.\n\tKeith: And it puts a B1 back in the pool.\n\n68) Keith: Discover Y2 Cdrodeffer G1 Greenleaf\n\n69) CDRodeffer: Attack B2 Cdrodeffer\n\tKeith: I did consider the B3 in Bab4.  I even tried it and took it back.  While it is true you would have lost three ships to my two you would have ended up with two large ships, out numbering me overall, and I would have only 4 small ships.\n\tKeith: I did not think of your large ship going red.\n\tKeith: I think I needed to have a green medium in hand before starting this sequence.  Before to threaten to grow to blue ships.  Now to threaten to grow two red ones.\n\n70) Keith: Build G2 Bab4\n\n71) CDRodeffer: Move B2 Cdrodeffer Lonely_retreat\n\n72) Keith: Sacrifice B1 Keith\nTrade B1 R1 Keith\n\n73) CDRodeffer: Move B2 Lonely_retreat Keith\n\n\tCDRodeffer: You&#39;re in a tough spot, Keith. I could sacrifice r1 CDRodeffer to simply attack r1 Keith, and even if you sacrifice g2 Bab4 to grow two more red ships (r1 and r2) in Keith, I could instead sacrifice r3 CDRodeffer to get all three. So anyway, given that this game isn&#39;t rated, would you rather end it or continue and explore more tactics?\n\tCDRodeffer: Hmm. If you had one more tempo, you could sacrifice g2 Bab4 to build y2 and y3 in Greenleaf, then move the y3 to Keith. I&#39;d need a large ship to attack that, and the nearest is two steps away.\n\tKeith: I think we can wrap this up.  It has been very helpful to me.  Thank you very much.  I have my first chance to apply what I have learned right now in my game against Cobalt.  I can sacrifice a Y2 to move a G1 to his homeworld where I can trigger a disaster taking out all of his green including one star.  I would still have a Y3 at my homeworld.  However, I would only have two ships left to his four.\n\tKeith: I will look over this game again tomorrow morning sometime and then resign.\n\nHomeworlds Online (SDG# 3372)\nVariants: &quot;Unrated&quot;\nStarted: 2006.5.4, Ended: 2006.5.18\nParticipants: GeepaMoogle (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tTwoShort: I figure it&#39;s more fun this way; I enjoy expounding on my homeworlds strategy theories, and the game could use more players, so I&#39;d like to help you out, but in a rated game I don&#39;t want to help so much that I might lose...\n\tTwoShort: Anyway, lesson 1: Homeworld selection.  As first player, unless I&#39;m trying a wacky experiment, I&#39;ll always go with y1 b2 g3.  Others like g1 b2 y3.  Either a yellow or green ship is reasonable, but I think the green is more straightforward.  You certainly want access to blue, so thats one star, and the other star is whichever of green/yellow you didn&#39;t take for the ship.  (As noted in our last game, I&#39;m toying with the other-star-red theory, which is a fine example of the fact that strategies in this game are still in a pretty early stage of evolution, so don&#39;t take anything I say as gospel)\n\n2) GeepaMoogle: Homeworld G3 B1 Y3\n\tTwoShort: So, as second player, the same advice holds, except that you presumably want to use different size stars than me, typically a 1 and a 3.  The thing to consider in star-size selection is what you&#39;ll be moving to.  Moving to 3s is nice because it makes it a bit easier to influence the availability of 3s in the stash.  Moving to 1s is not as nice, because they&#39;ll be gone fairly quickly and limit your options.\n\tGeepaMoogle: I knew there was some reason why 2/3 homeworlds weren&#39;t often used in Binary Homeworlds.\n\n3) TwoShort: Build G1 Twoshort\n\n4) GeepaMoogle: Build Y1 Geepamoogle\n\tGeepaMoogle: We&#39;ll try starting with mobility this time.  Is there any advice on whether or not to match an exact piece in color/size combo?\n\tTwoShort: Not really; besides getting access to the colors you want, and having the two sizes you want, the only other consideration is what&#39;s left in the stash.  If you drain the little guys of a particular color, it will make getting to the bigger ones slightly easier, which might be good for your oponent (if you had taken a small green for example) \n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: Stash management is really what much of the strategy is about.  Here in the early game, we&#39;ll be building a buch of small stuff, but mainly jockeying for the chance to build the bigger stuff.  If you build the last 1 pointer of a color, I&#39;ll get first chance to build 2 pointers, and so again with 3 pointers.  Before long we&#39;ll rip through one or more colors (most likely green and/or yellow) and at that point we both want to be the guy with more three pointers, or a monopoly on a color (particularly yellow).\n\n6) GeepaMoogle: Build Y2 Geepamoogle\n\n7) TwoShort: Build G1 Twoshort\n\n8) GeepaMoogle: Trade Y2 G2 Geepamoogle\n\tGeepaMoogle: Was gonna do a trade for green to deny you a y2, but then I figured this way I get a y2 before I clear possible catastrophe in yellow.  Besides, either way next move is likely a swap for green.\n\tTwoShort: Yeah, the common way to lock the other guy out of a color is to take all the one points before he gets either that color or access to two points.  So that&#39;s probably not going to happen to either of us.\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\tTwoShort: A couple stratagems to be aware of-  \r\nThe Factory: If green is sufficiently depleted one can sacrifice my G3, grow twice, and re-grow the same G3 I sacrificed.  Technically, one can do this if there are two g2s left assuming one has room to grow that much green without a catastrophe.  Practically, I won&#39;t do it if it just leaves another G3 available for you to take.\r\nThe Investment: in this strategem, one moves a green to a Y3 system.  The other guy won&#39;t be able to get that y3 as a ship.  After all the yellow is gone, if that green is still alone at the system, you can &quot;cash in&quot; by sacrificeing the green, and growing the Y3.\n\n10) GeepaMoogle: Build Y2 Geepamoogle\n\n11) TwoShort: Build Y2 Grogar\n\tGeepaMoogle: Denying me a large mobile facoty, eh?\n\n12) GeepaMoogle: Discover Y2 Geepamoogle B2 Alpha\n\tGeepaMoogle: Well, my thoughts are that I can use the yellow to get to another medium green.  Still not sure how to combat a factory.\n\tGeepaMoogle: Btw, been thinking of possible types of pieces that might be intersting..  Came up with 3 possiblilities.\r\n\r\n1) Summon - Allows any ship in the system to summon any of their other ships of equal or lesser size to their side.  Potentially useful as a homeworld color, and may reduce the need for yellow (although yellow are still needed to discover and invade)\r\n\r\n2) Explosives - Any ship in the system will self-destruct if captured, rather than converted.  When sacrificed, it gives 1 use per size, reduced by 1 each turn.\r\n\r\n3) Stealth - Allows the use of any enemy technology in the system.  Of limited use as prolonged contact between any two sides tends to be short-lived.\r\n\r\nNot sure how these would work out in actual play, but they could present some interesting possiblities.\n\tGeepaMoogle: Forgot to clarify.  Ship abilities can only be used by the owner.  Planet abilities could be used by anyone in the system.\n\n13) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n14) GeepaMoogle: Discover Y1 Geepamoogle B2 Beta\n\tTwoShort: Combatting a factory is tough short of having your own, which is one reason I like to play green :)  Come to think of it, it might be a reason not to start with a G3 in your homeworld.  But mostly with yellow you want to threaten catastrophes.  By sacrificeing a big yellow you can leap way across the galaxy, or move several ships all at once.  Not that you&#39;ll actually do it, but you&#39;ll constrain my options with the threat of it.  Note for example, that I can&#39;t grow in either of my systems this turn.\n\n15) TwoShort: Discover Y1 Grogar G2 Gobble\n\tTwoShort: Note though, that while my having a factory might be a factor later, I can&#39;t use until those little greens are gone from the stash.  At best I could deplete in four turns, which is a long time, especially considering the only thing I&#39;m focussed on for the next few turns is who gets the yellow 3 pointers.  (We each get one if neither of us sees a better move than I currently do)\n\tGeepaMoogle: Hmmm, choices..  Send the small yellow to a new b2 planet perhaps?  That would allow me some space to try and snatch the yellow, then try to build some greens afterward\n\tTwoShort: That&#39;s what I imagined you would do.  THen you&#39;re ready to grow that y3 if I take the y2, or even sacrtifice the g2 to grow both Ys.  I&#39;ll presumably split up my yellows next turn so I can cash in my investment at Yolonda once you take the yellows.  \n\n16) GeepaMoogle: Build Y2 Geepamoogle\n\n17) TwoShort: Build Y3 Gobble\n\tGeepaMoogle: And now a moment of truth.  I would sacrifice the green for yellow, but I have yellow covered well ehough, and need green more.  It isn&#39;t safe to spawn another at HQ, since there&#39;s a green at Yolanda in range.  Possibilities to look at.  {1} Shift the green to a safer spot.  {2} Go ahead and spawn a yellow to change into another color later, giving up the second y3\n\n18) GeepaMoogle: Move Y2 Geepamoogle Beta\n\tTwoShort: Well, I think you should have sacrificed, and traded the y2 at aplpha for a g2 next turn.  3 pointers are just that valuable.  It&#39;s true that getting locked out of a color makes things difficult, but if that color isn&#39;t yellow it&#39;s not disasterous all by itself.\n\n19) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Grogar\n\tTwoShort: So now I&#39;ll note that unless you move/trade one of those yellows, I could cause a yellow disaster in your homeworld.  Expensively for me, but if there is any move that leaves me with a 3 point, and you with none, I&#39;ll almost certainly do it.\n\n20) GeepaMoogle: Sacrifice Y2 Alpha\nMove Y2 Beta Grogar\nMove Y1 Beta Grogar\nCatastrophe Grogar Yellow\n\n21) TwoShort: Build G1 Twoshort\n\tGeepaMoogle: I could take out Grogar, and lose Alhpa and Beta..  The result would be you&#39;d be ahead, but it might mean I gain ground, and ruin whatever plans you might have.\n\n22) GeepaMoogle: Discover G2 Geepamoogle B2 Alpha\n\n23) TwoShort: Build G1 Twoshort\n\tGeepaMoogle: Almost forgot to trigger catastrophe\n\n24) GeepaMoogle: Build Y1 Geepamoogle\n\tTwoShort: You lost two y2s and a y1 to take out my y3 and y2; definitely worth it from a material standpoint.  The downside is, catastrophes tend to simplify the game, which tends to favor the leader.  Still, I think it was the thing to do.\n\n25) TwoShort: Discover G1 Twoshort B3 Bluestar\n\tGeepaMoogle: Well, it gives me a bit of a chance to try and regroup.\n\n26) GeepaMoogle: Build G1 Alpha\n\tTwoShort: Certainly.  As I said, in this case I think it was the way to go.  I just mention it because  the debate on when to cause a catastrophe is one of the interesting strategic aspects of the game.  More stuff can mean more options, and more chances for the underdog to find something clever or the leader to do something dumb.  You can now fall back and build some more, but I&#39;ll build more and faster because I&#39;ve got a head start.  But then you need to balance that against the pure material balance in the catastrophe.  I rate Y3s as so valuable that I think your catastrophe was certainly worth it on those grounds.   For whatever it&#39;s worth, I should note that every experienced player I&#39;ve played says I&#39;m way more eager to blow stuff up than they would be. :)\n\n27) TwoShort: Move Y1 Gobble Geepamoogle\n\n28) GeepaMoogle: Trade Y3 R3 Geepamoogle\n\n29) TwoShort: Build Y2 Geepamoogle\n\tTwoShort: I didn&#39;t see this before just now, but here&#39;s a nasty little move you won&#39;t like very much...\n\n30) GeepaMoogle: Trade G1 B1 Alpha\n\tTwoShort: Though it usually isn&#39;t there, that&#39;s the sort of move I look for every turn: one that does a couple things at once.  I get more options (room to grow yellow), and you get less. You basically have to spend next turn flipping your 3 point to red.\n\tTwoShort: Hmm... the more I look at it, I think that&#39;s the game. \n\tGeepaMoogle: Plan on cattin the homeworld away, eh?  Just as I was going to try to do the same to you.  Where did I go wrong?\n\tGeepaMoogle: What if I flip my small yellow instead?\n\tTwoShort: I&#39;ll sacrifice my g3 to grow 2 Ys in your homeworld, (and one at gobble) causing the catastrophe anyway.  This will leave me with a 3 point and you without one, and unable to immediately build one.  Then I just need to make sure you remain unable to build one while I move mine in, turn to red, and take over.  Which is why I think you went wrong way back when you let me take the lead in 3 pointers...\n\tTwoShort: Note that when I say &quot;I think that&#39;s the game&quot; I don&#39;t mean you can&#39;t hold me off a little while longer.  Rather, I think what you&#39;ll need to do to hold me off in the short term will let me get enough of a lead that you won&#39;t be able to recover.\n\tGeepaMoogle: Aaah, well, it would seem I am doomed then.  Even with advice I am losing badly and quickly..  Believe me, from my POV  you are an expert..\n\n31) TwoShort: Build Y2 Gobble\n\n32) GeepaMoogle: Move Y1 Geepamoogle Gobble\n\n33) TwoShort: Sacrifice Y2 Geepamoogle\nMove Y1 Geepamoogle Gobble\nMove Y3 Gobble Bluestar\n\n34) GeepaMoogle: Build G1 Alpha\n\n35) TwoShort: Build G2 Bluestar\n\tGeepaMoogle: My intentions are probably very obvious, but it&#39;s my hope to get you to back off.\n\tTwoShort: When I&#39;ve got an advantage is when I tend to  try and push it.  I really should have just caused the catastrophe last turn.  Your intentions may be obvious now, but I didn&#39;t see that move last turn.  So now I&#39;m forced to react; I can&#39;t let you catch my y3 in a catastrophe.\n\n36) GeepaMoogle: Build Y2 Gobble\nCatastrophe Gobble Yellow\n\tTwoShort: Not that I object to catching your only yellow in a catastrophe, of course.\n\n37) TwoShort: Discover G2 Bluestar Y2 Yolonda\n\tTwoShort: build g2 bluestar\n\n38) GeepaMoogle: Build R1 Geepamoogle\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n\tGeepaMoogle: Sadly, at this point, the best I can do is to attempt to chase away the invader green.  Not really worth playing out.\n\nHomeworlds Online (SDG# 3382)\nStarted: 2006.5.6, Ended: 2006.6.26\nParticipants: Aaron (S), Laurie_Menke (N)\nWinner: Aaron\n\n1) Laurie_Menke: Homeworld R1 G2 Y3 *\n\tLaurie_Menke: Hi again, Aaron...I think this is the game I most need to practice for the tournament.\n\n2) Aaron: Homeworld Y2 B3 G3\n\tAaron: Same here!  Good luck!\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: Thanks!  You too!\n\n4) Aaron: Build G1 Aaron\n\n5) Laurie_Menke: Discover Y1 Laurie_menke B3 Bigblue\n\n6) Aaron: Discover G1 Aaron B1 Sea\n\n7) Laurie_Menke: Build Y1 Laurie_menke\n\n8) Aaron: Build G1 Aaron\n\n9) Laurie_Menke: Trade Y1 B1 Bigblue\n\n10) Aaron: Trade G1 Y1 Aaron\n\n11) Laurie_Menke: Sacrifice Y1 Laurie_menke\nMove B1 Bigblue Laurie_menke\n\n12) Aaron: Move Y1 Aaron Sea\n\n13) Laurie_Menke: Build B1 Laurie_menke\n\n14) Aaron: Build G1 Aaron\n\n15) Laurie_Menke: Build B2 Laurie_menke\n\n16) Aaron: Trade G1 R1 Aaron\n\n17) Laurie_Menke: Discover B1 Laurie_menke G3 Park\n\n18) Aaron: Build Y1 Sea\n\n19) Laurie_Menke: Build Y1 Laurie_menke\n\n20) Aaron: Trade Y1 R1 Sea\n\n21) Laurie_Menke: Build B2 Park\n\n22) Aaron: Build R2 Sea\n\n23) Laurie_Menke: Trade B2 R2 Park\n\n24) Aaron: Build G1 Aaron\n\n25) Laurie_Menke: Build B2 Park\n\n26) Aaron: Discover R1 Sea G3 Emerald\n\n27) Laurie_Menke: Trade B2 Y2 Park\n\n28) Aaron: Build R2 Emerald\n\n29) Laurie_Menke: Build R3 Park\n\n30) Aaron: Build R3 Sea\n\n31) Laurie_Menke: Discover R2 Park G1 Yard\n\n32) Aaron: Build R3 Aaron\n\n33) Laurie_Menke: Build B2 Park\n\n34) Aaron: Discover R2 Sea B3 Ocean\n\n35) Laurie_Menke: Move R3 Park Yard\n\n36) Aaron: Trade G3 Y3 Aaron\n\n37) Laurie_Menke: Sacrifice Y2 Park\nMove R3 Yard Emerald\nMove R2 Yard Emerald\nCatastrophe Emerald R\n\n38) Aaron: Move R3 Sea Park\n\tLaurie_Menke: I am SOOO glad I saw what you were doing last turn and was able to prepare for it.  That was almost the end for me!\n\tAaron: *chuckles evily*  Good catch!\n\n39) Laurie_Menke: Sacrifice Y1 Laurie_menke\nMove B2 Park Sea\n\n40) Aaron: Build R1 Park\n\n41) Laurie_Menke: Trade B2 R2 Sea\n\n42) Aaron: Sacrifice Y3 Aaron\nMove R2 Ocean Laurie_menke\nMove R1 Park Laurie_menke\nMove R3 Park Laurie_menke\nCatastrophe Laurie_menke R\n\n43) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\tLaurie_Menke: Well, shoot!  I didn&#39;t see it coming that time.  :o(\n\n44) Aaron: Move Y1 Sea Park\n\n45) Laurie_Menke: Attack G1 Sea\n\n46) Aaron: Sacrifice R1 Aaron\nAttack B1 Park\n\n47) Laurie_Menke: Trade G1 Y1 Sea\n\n48) Aaron: Move R3 Aaron Sea\n\n49) Laurie_Menke: Move R2 Sea Aaron\n\tLaurie_Menke: Hmmm....unless I&#39;m missing something, I think that was a fatal move for you....\n\n50) Aaron: Sacrifice Y1 Park\nMove R3 Sea Aaron\n\tAaron: Not fatal, but possibly draw-inducing.\n\tAaron: doh!  I forgot I didn&#39;t own yellow there!  Good thing I have one in Park.  O man, not smart.\n\n51) Laurie_Menke: Move R2 Aaron Sea\n\n52) Aaron: Build B2 Park\n\n53) Laurie_Menke: Move R2 Sea Park\n\n54) Aaron: Build G1 Aaron\n\n55) Laurie_Menke: Attack B2 Park\n\n56) Aaron: Build R1 Aaron\n\n57) Laurie_Menke: Attack B1 Park\n\n58) Aaron: Move R1 Aaron Sea\n\n59) Laurie_Menke: Move Y1 Sea Park\n\n60) Aaron: Trade G1 Y1 Aaron\n\n61) Laurie_Menke: Move R2 Park Sea\n\n62) Aaron: Sacrifice Y1 Aaron\nDiscover R1 Sea Y3 Bananas\n\n63) Laurie_Menke: Move B2 Park Sea\n\n64) Aaron: Discover R1 Bananas Y2 Postit\n\n65) Laurie_Menke: Trade B1 R1 Park\n\n66) Aaron: Build G1 Aaron\n\n67) Laurie_Menke: Build Y1 Park\n\n68) Aaron: Trade G1 B1 Aaron\n\n69) Laurie_Menke: Trade R3 Y3 Laurie_menke\n\n70) Aaron: Discover B1 Aaron G1 Emeralds\n\n71) Laurie_Menke: Discover B1 Laurie_menke Y1 Luella\n\n72) Aaron: Build B2 Emeralds\n\n73) Laurie_Menke: Build Y2 Laurie_menke\n\n74) Aaron: Trade B2 R2 Emeralds\n\n75) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\n76) Aaron: Build B2 Emeralds\n\n77) Laurie_Menke: Move B2 Laurie_menke Luella\n\n78) Aaron: Trade B2 G2 Emeralds\n\n79) Laurie_Menke: Build Y3 Laurie_menke\n\n80) Aaron: Build G1 Aaron\n\n81) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove B2 Sea Aaron\nMove B2 Luella Aaron\nMove B1 Luella Aaron\nCatastrophe Aaron Blue\n\n82) Aaron: Build G2 Aaron\n\n83) Laurie_Menke: Trade R2 B2 Sea\n\n84) Aaron: Discover G2 Aaron Y3 Bananas\n\n85) Laurie_Menke: Move R3 Laurie_menke Emeralds\n\n86) Aaron: Sacrifice G2 Emeralds\nBuild G2 Aaron\nBuild G3 Bananas\n\n87) Laurie_Menke: Sacrifice Y1 Park\nMove R3 Emeralds Bananas\n\n88) Aaron: Sacrifice R1 Postit\nAttack R3 Bananas\n\tAaron: I&#39;m so sorry, Laurie, but this is a necessary lesson to learn about sacrificing =/\n\n89) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: Argh!  You&#39;re right...I really need to learn that lesson.  I forget about sacrificing reds all the time.  Grrr...  ;o)\n\tLaurie_Menke: Well, this is not looking too good for me right now, is it?  ;o)\n\n90) Aaron: Move R3 Bananas Laurie_menke\n\n91) Laurie_Menke: Move Y2 Laurie_menke Sea\n\tAaron: Sorry =/\n\tAaron: You did superbly well blocking me out of certain colours, btw.  You really had me searching for good moves.\n\tLaurie_Menke: :o)  Thanks.  I just need to keep an eye out for that sacrificing red move.  ;o)  Thanks for the lesson!\n\tLaurie_Menke: See you in the tourney!  :o)\n\n92) Aaron: Attack Y1 Laurie_menke\n\tAaron: Cheers!\n\n\nHomeworlds Online (SDG# 3426)\nStarted: 2006.5.10, Ended: 2006.5.16\nParticipants: Danner (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld B2 Y3 G3\n\n2) Danner: Homeworld Y1 G1 R3 *\n\n3) jeep: Build G1 Jeep\n\tjeep: Hmm... small universe...\n\n4) Danner: Build R1 Danner\n\n5) jeep: Trade G1 R1 Jeep\n\tDanner: :)\n\n6) Danner: Discover R1 Danner B3 Tradecenter\n\n7) jeep: Build G1 Jeep\n\n8) Danner: Trade R1 G1 Tradecenter\n\n9) jeep: Build G2 Jeep\n\n10) Danner: Build G2 Tradecenter\n\n11) jeep: Sacrifice G2 Jeep\nBuild R1 Jeep\nBuild R1 Jeep\n\n12) Danner: Trade G1 Y1 Tradecenter\n\n13) jeep: Move R1 Jeep Danner\n\n14) Danner: Attack R1N Danner\n\n15) jeep: Move R1 Jeep Danner\n\n16) Danner: Move R1 Danner Tradecenter\n\n17) jeep: Sacrifice G3 Jeep\nBuild R2 Danner\nBuild R2 Danner\nBuild R2 Jeep\nCatastrophe Danner R\n\tDanner: :)\n\tjeep: Nod, it was a lost cause.  Thanks for the game.\n\tjeep: You could have sac&#39;d the red 1 to take over the other, I guess...\n\tDanner: wow, you are great! :)\n\tDanner: create catastrophe with moving in ships.\r\nbut with building directly im the enemy system? :D Cool strategy :)\n\tDanner: thx for the experience :)\n\tjeep: Heh, not sure I&#39;m &quot;great&quot; but yeah, you have to look for catastrophes with both building and moving.  And, of course, color changing...  ;)  Lots of ways to make catastrophes.\n\n\nHomeworlds Online (SDG# 3408)\nStarted: 2006.5.13, Ended: 2006.9.12\nParticipants: HappyWulf (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld R2 B1 G3\n\n2) HappyWulf: Homeworld B2 Y1 G3\n\n3) andylooney: Build G1 Andylooney\n\n4) HappyWulf: Build G1 Happywulf\n\n5) andylooney: Trade G3 Y3 Andylooney\n\n6) HappyWulf: Trade G1 B1 Happywulf\n\n7) andylooney: Build Y1 Andylooney\n\n8) HappyWulf: Build B1 Happywulf\n\n9) andylooney: Build Y1 Andylooney\n\n10) HappyWulf: Discover B1 Happywulf G3 Coffee\n\n11) andylooney: Discover Y1 Andylooney B3 Doughnuts\n\n12) HappyWulf: Build B2 Coffee\n\n13) andylooney: Build Y2 Andylooney\n\n14) HappyWulf: Trade B2 Y2 Coffee\n\n15) andylooney: Trade Y1 R1 Andylooney\n\n16) HappyWulf: Build B2 Happywulf\n\n17) andylooney: Discover Y2 Andylooney B3 Milk\n\n18) HappyWulf: Build B2 Coffee\n\n19) andylooney: Discover R1 Andylooney B3 Cookies\n\n20) HappyWulf: Trade B2 R2 Happywulf\n\n21) andylooney: Build G1 Andylooney\n\n22) HappyWulf: Build B2 Happywulf\n\n23) andylooney: Discover G1 Andylooney Y3 Money\n\n24) HappyWulf: Move R2 Happywulf Money\n\n25) andylooney: Sacrifice G1 Money\nBuild R1 Cookies\n\n26) HappyWulf: Trade B2 R2 Happywulf\n\n27) andylooney: Discover G1 Andylooney Y3 Thesun\n\n28) HappyWulf: Sacrifice Y2 Coffee\nMove B1 Coffee Andylooney\nMove B2 Coffee Andylooney\n\n29) andylooney: Attack B2S Andylooney\n\n30) HappyWulf: Trade R2 Y2 Happywulf\n\n31) andylooney: Discover B2 Andylooney G3 Chocolate\n\n32) HappyWulf: Trade B1 R1 Happywulf\n\n33) andylooney: Attack B1S Andylooney\n\n34) HappyWulf: Build R2 Happywulf\n\n35) andylooney: Trade R1 G1 Cookies\n\n36) HappyWulf: Move Y2 Happywulf Money\n\n37) andylooney: Trade B1 G1 Andylooney\n\n38) HappyWulf: Move R2 Happywulf Cookies\n\n39) andylooney: Build G2 Thesun\n\n40) HappyWulf: Move G3 Happywulf Doughnuts\n\n41) andylooney: Sacrifice G2 Thesun\nBuild Y1 Milk\nBuild Y2 Andylooney\n\n42) HappyWulf: Attack R1 Cookies\n\n43) andylooney: Trade Y1 R1 Milk\n\n44) HappyWulf: Move R2 Money Andylooney\n\n45) andylooney: Sacrifice G1 Cookies\nBuild R3 Milk\n\n46) HappyWulf: Sacrifice R1 Cookies\nAttack Y1 Doughnuts\n\n47) andylooney: Move R3 Milk Happywulf\n\n48) HappyWulf: Sacrifice G3 Doughnuts\nBuild R1 Happywulf\nBuild R3 Cookies\nBuild R3 Andylooney\n\tHappyWulf: Good game in Martian Chess! =3 It was quite close for a long while. *Offers a paw in sportsmanship*\n\tandylooney: yup, it was a good game!\r\n\n\n49) andylooney: Move R1 Milk Happywulf\nCatastrophe Happywulf Red\n\n\tandylooney: Thanks for playing!\n\nHomeworlds Online (SDG# 3430)\nVariants: &quot;No undo&quot;\nStarted: 2006.5.14, Ended: 2006.5.15\nParticipants: Danner (S), Uglyfoot (N)\nWinner: Danner\n\n1) Uglyfoot: Homeworld Y1 B3 G3\n\n2) Danner: Homeworld G2 Y2 R3 *\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Danner: Build R1 Danner\n\n5) Uglyfoot: Discover G1 Uglyfoot Y2 Waystation\n\tUglyfoot: That is an interesting start.\r\n\n\n6) Danner: Move R3 Danner Uglyfoot\n\tDanner: :)\n\n\tDanner: thx the game:)\n\nHomeworlds Online (SDG# 3462)\nVariants: &quot;No undo&quot;\nStarted: 2006.5.14, Ended: 2006.5.14\nParticipants: Sztyuni (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld Y1 G2 R3 *\n\n2) Sztyuni: Homeworld R3 Y3 B3 *\n\tDanner: hi :)\n\tSztyuni: szai :)\n\n3) Danner: Build R1 Danner\n\n4) Sztyuni: Trade B3 G3 Sztyuni\n\n5) Danner: Move R3 Danner Sztyuni\n\n6) Sztyuni: Attack R3 Sztyuni\n\n7) Danner: Build R1 Danner\n\n8) Sztyuni: Build G1 Sztyuni\n\n9) Danner: Discover R1 Danner B3 Deathstar\n\n10) Sztyuni: Move R3 Sztyuni Danner\n\n11) Danner: Build R1 Danner\n\n12) Sztyuni: Attack R1 Danner\n\n13) Danner: Build R2 Danner\n\n14) Sztyuni: Attack R2 Danner\n\n15) Danner: Trade R1 Y1 Deathstar\n\n16) Sztyuni: Pass\n\n17) Danner: Move Y1 Deathstar Danner\nCatastrophe Danner R\n\n18) Sztyuni: Discover G1 Sztyuni B2 Oreglyuk\n\n19) Danner: Build Y1 Danner\n\n20) Sztyuni: Build G1 Oreglyuk\n\n21) Danner: Discover Y1 Danner B3 Tradecenter\n\n22) Sztyuni: Build G1 Oreglyuk\n\n23) Danner: Build Y2 Danner\n\n24) Sztyuni: Build G2 Oreglyuk\n\n25) Danner: Move Y1 Danner Tradecenter\nCatastrophe Oreglyuk G\n\n26) Sztyuni: Build G1 Sztyuni\n\n27) Danner: Build Y2 Danner\n\n28) Sztyuni: Discover G3 Sztyuni B2 Nemlyuk\n\n29) Danner: Trade Y1 R1 Tradecenter\n\n30) Sztyuni: Build G1 Nemlyuk\n\n31) Danner: Move Y2 Danner Sztyuni\n\n32) Sztyuni: Trade G1 Y1 Nemlyuk\n\n33) Danner: Attack G1S Sztyuni\n\tDanner: :)\n\n\nHomeworlds Online (SDG# 3464)\nVariants: &quot;No undo&quot;\nStarted: 2006.5.14, Ended: 2006.5.15\nParticipants: Sztyuni (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld G1 B2 R3\n\n2) Sztyuni: Homeworld G3 B2 R3\n\n3) Danner: Build R1 Danner\n\n4) Sztyuni: Build R1 Sztyuni\n\n5) Danner: Trade R1 Y1 Danner\n\n6) Sztyuni: Build R1 Sztyuni\n\n7) Danner: Build R1 Danner\n\n8) Sztyuni: Build R2 Sztyuni\n\n9) Danner: Build R2 Danner\n\n10) Sztyuni: Sacrifice R3 Sztyuni\nPass\nPass\nPass\n\n11) Danner: Discover R2 Danner G3 Constructcenter\n\n12) Sztyuni: Trade R1 Y1 Sztyuni\n\n13) Danner: Trade R1 B1 Danner\n\n14) Sztyuni: Discover R2 Sztyuni G1 Ja\n\n15) Danner: Move B1 Danner Constructcenter\n\n16) Sztyuni: Build R1 Sztyuni\n\n17) Danner: Build R1 Constructcenter\n\n18) Sztyuni: Build R2 Sztyuni\n\n19) Danner: Build R3 Danner\n\n20) Sztyuni: Build R3 Ja\n\n21) Danner: Build B1 Constructcenter\n\n22) Sztyuni: Build Y1 Sztyuni\n\n23) Danner: Build Y2 Danner\n\n24) Sztyuni: Move Y1 Sztyuni Ja\n\n25) Danner: Sacrifice Y2 Danner\nMove R1 Constructcenter Ja\nMove R2 Constructcenter Ja\nCatastrophe Ja R\n\n26) Sztyuni: Trade R1 B1 Sztyuni\n\n27) Danner: Build Y2 Danner\n\n28) Sztyuni: Move B1 Sztyuni Ja\n\n29) Danner: Build Y2 Danner\n\n30) Sztyuni: Build R1 Sztyuni\n\n31) Danner: Trade B1 R1 Constructcenter\n\n32) Sztyuni: Move R1 Sztyuni Ja\n\n33) Danner: Build R2 Constructcenter\n\n34) Sztyuni: Build B1 Ja\n\n35) Danner: Build B2 Constructcenter\n\n36) Sztyuni: Move B1 Ja Sztyuni\n\n37) Danner: Sacrifice Y2 Danner\nMove R3 Danner Constructcenter\nMove R3 Constructcenter Ja\n\n38) Sztyuni: Build B3 Sztyuni\n\tDanner: Ma kiv&eacute;telesen csak k&eacute;t &oacute;r&aacute;m van, &iacute;gy napk&ouml;zben is lehetek.\n\tDanner: m&eacute;k kaj&aacute;ni majd j&ouml;v&ouml;k :)\n\tDanner: re\n\tDanner: na most m&aacute;n foglalt lesz a g&eacute;pterem asszem, szal majd d&eacute;lut&aacute;n harcolunk :) (f&uuml;gg&otilde; vok :D)\n\n39) Danner: Sacrifice Y2 Danner\nMove B1 Constructcenter Ja\nMove B1 Ja Sztyuni\nCatastrophe Sztyuni B\n\n40) Sztyuni: Build Y2 Sztyuni\n\n41) Danner: Build Y2 Danner\n\n42) Sztyuni: Build R2 Ja\n\n43) Danner: Build R3 Danner\n\n44) Sztyuni: Sacrifice Y2 Sztyuni\nMove R1 Sztyuni Danner\nMove R2 Sztyuni Danner\nCatastrophe Danner R\n\n45) Danner: Sacrifice Y1 Danner\nMove R3 Ja Sztyuni\n\n46) Sztyuni: Move R1 Ja Sztyuni\n\tDanner: Oh no, I will be destroyed!\n\n47) Danner: Sacrifice R2 Constructcenter\nAttack Y1S Sztyuni\nAttack R1S Sztyuni\n\n\nHomeworlds Online (SDG# 3469)\nVariants: &quot;No undo&quot;\nStarted: 2006.5.15, Ended: 2006.7.30\nParticipants: Uglyfoot (S), Danner (N)\nWinner: Uglyfoot\n\n1) Danner: Homeworld R3 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\tUglyfoot: Shall we try that again?\n\n3) Danner: Build G1 Danner\n\tDanner: yes :)\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Gateway\n\n7) Danner: Build Y1 Danner\n\n8) Uglyfoot: Build G1 Gateway\n\n9) Danner: Build Y2 Danner\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) Danner: Trade Y2 R2 Danner\n\n12) Uglyfoot: Trade G1 R1 Gateway\n\n13) Danner: Build R1 Danner\n\n14) Uglyfoot: Build G1 Gateway\n\n15) Danner: Build Y2 Danner\n\n16) Uglyfoot: Build G2 Gateway\n\n17) Danner: Build G2 Danner\n\n18) Uglyfoot: Trade G2 Y2 Gateway\n\n19) Danner: Discover R2 Danner B1 Gate\n\n20) Uglyfoot: Discover G1 Gateway R1 Epsilon\n\n21) Danner: Move G2 Danner Gate\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Epsilon\nBuild G2 Gateway\nBuild G3 Uglyfoot\n\n23) Danner: Build G3 Gate\n\n24) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Gateway\nBuild Y3 Gateway\n\n25) Danner: Sacrifice Y2 Danner\nMove Y1 Danner Gate\nMove Y1 Gate Gateway\nCatastrophe Gateway Y\n\n26) Uglyfoot: Trade G1 Y1 Gateway\n\n27) Danner: Build Y2 Danner\n\n28) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Gateway\nBuild R2 Gateway\nBuild G3 Uglyfoot\n\n29) Danner: Sacrifice Y1 Danner\nMove G3 Gate Gateway\n\n30) Uglyfoot: Move G1 Uglyfoot Gateway\nCatastrophe Gateway G\n\n31) Danner: Build G1 Danner\n\n32) Uglyfoot: Trade R1 G1 Gateway\n\n33) Danner: Build Y1 Danner\n\n34) Uglyfoot: Build G2 Uglyfoot\n\n35) Danner: Build G3 Gate\n\n36) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R1 Gateway\nBuild Y2 Gateway\n\tDanner: Sorry, I had net problems, but now it&#39;s ok.\n\n37) Danner: Sacrifice Y2 Danner\nMove G3 Danner Gate\nMove G3 Gate Gateway\n\n38) Uglyfoot: Sacrifice Y2 Gateway\nMove R2 Gateway Epsilon\nMove R2 Epsilon Danner\n\n39) Danner: Sacrifice Y1 Danner\nMove G3 Gateway Uglyfoot\n\n40) Uglyfoot: Sacrifice R1 Gateway\nAttack G3 Uglyfoot\n\n41) Danner: Trade G2 Y2 Gate\n\n42) Uglyfoot: Trade G3 R3 Uglyfoot\n\n43) Danner: Move G3 Gate Danner\n\n44) Uglyfoot: Attack R1 Danner\n\n45) Danner: Attack R2S Danner\n\n46) Uglyfoot: Attack G1 Danner\n\n47) Danner: Attack G1S Danner\n\n48) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Gateway\nBuild G3 Uglyfoot\nBuild R1 Uglyfoot\n\n49) Danner: Attack R1S Danner\n\n50) Uglyfoot: Discover G2 Gateway Y1 Eradani\n\n51) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild R2 Gate\nBuild R3 Gate\n\n52) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Gateway\nBuild Y2 Gateway\n\n53) Danner: Trade G3 Y3 Danner\n\n54) Uglyfoot: Sacrifice Y2 Gateway\nMove R1 Uglyfoot Gateway\nMove R1 Gateway Gate\nCatastrophe Gate R\n\n55) Danner: Build G3 Danner\n\n56) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Eradani\nBuild Y2 Gateway\nBuild R1 Uglyfoot\n\n57) Danner: Move G3 Danner Epsilon\n\n58) Uglyfoot: Move R1 Uglyfoot Gateway\n\n59) Danner: Move R1 Danner Gate\n\n60) Uglyfoot: Sacrifice G3 Gateway\nBuild G3 Gateway\nBuild R2 Gateway\nBuild R2 Uglyfoot\n\n61) Danner: Build Y2 Danner\n\n62) Uglyfoot: Move G3 Gateway Gate\n\n\nHomeworlds Online (SDG# 3456)\nStarted: 2006.5.15, Ended: 2006.6.3\nParticipants: Lexicon (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) Lexicon: Homeworld G2 B3 Y3\n\n3) jeep: Build G1 Jeep\n\n4) Lexicon: Build Y1 Lexicon\n\n5) jeep: Build G1 Jeep\n\n6) Lexicon: Build Y1 Lexicon\n\n7) jeep: Trade G1 Y1 Jeep\n\n8) Lexicon: Trade Y1 G1 Lexicon\n\n9) jeep: Discover G1 Jeep B3 Moon\n\n10) Lexicon: Trade Y1 B1 Lexicon\n\n11) jeep: Build G1 Jeep\n\n12) Lexicon: Discover G1 Lexicon B1 Blue\n\n13) jeep: Build G2 Moon\n\n14) Lexicon: Build G2 Blue\n\n15) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Moon\nBuild Y1 Jeep\n\n16) Lexicon: Build Y1 Lexicon\n\n17) jeep: Trade G3 Y3 Moon\n\n18) Lexicon: Sacrifice Y1 Lexicon\nDiscover G1 Blue Y3 Yellow\n\n19) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Moon\nBuild Y2 Moon\n\n20) Lexicon: Build G3 Yellow\n\n21) jeep: Build G3 Moon\n\n22) Lexicon: Sacrifice G3 Yellow\nBuild G3 Yellow\nBuild B2 Lexicon\nBuild Y2 Lexicon\n\n23) jeep: Trade G3 R3 Moon\n\n24) Lexicon: Sacrifice B2 Lexicon\nTrade Y2 R2 Lexicon\nTrade G2 Y2 Blue\n\n25) jeep: Sacrifice Y3 Moon\nMove G1 Jeep Yellow\nMove G1 Moon Blue\nMove G1 Blue Yellow\nCatastrophe Yellow G\n\n26) Lexicon: Build Y3 Lexicon\n\n27) jeep: Discover Y1 Moon G1 Stage\n\n28) Lexicon: Sacrifice Y3 Lexicon\nMove Y2 Blue Moon\nMove Y2 Moon Jeep\nPass\nCatastrophe Jeep Yellow\n\n29) jeep: Build G1 Jeep\n\n30) Lexicon: Build Y1 Lexicon\n\n31) jeep: Sacrifice G3 Jeep\nBuild G1 Moon\nBuild G2 Moon\nBuild G3 Jeep\n\n32) Lexicon: Discover B1 Lexicon Y1 Yellow\n\n33) jeep: Build Y2 Stage\n\n34) Lexicon: Discover B1 Yellow G3 Green\n\n35) jeep: Build G3 Jeep\n\n36) Lexicon: Build B1 Green\n\n37) jeep: Sacrifice Y2 Stage\nMove R3 Moon Stage\nMove R3 Stage Green\n\n38) Lexicon: Sacrifice Y3 Lexicon\nMove B1 Green Jeep\nMove B1 Green Jeep\nMove R2 Lexicon Jeep\n\tLexicon: That icy barren dessert and accompanying greenopoly you have wasn&#39;t worth it, it seems.\n\tLexicon: This&#39;ll probably be the end of me...  my timing was too slow.\n\n39) jeep: Sacrifice R3 Green\nAttack B1S Jeep\nAttack B1S Jeep\nAttack R2S Jeep\n\tLexicon: toga party at jeep&#39;s place!\n\n\tLexicon: Am I screwed or totally screwed, that is the question. :)\n\tjeep: Uh... totally.\n\nHomeworlds Online (SDG# 3494)\nStarted: 2006.5.17, Ended: 2006.5.31\nParticipants: Danner (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B3 G3\n\n2) Danner: Homeworld Y1 B2 G3\n\n3) jeep: Build G1 Jeep\n\tDanner: Almost the same. :)\n\n4) Danner: Build G1 Danner\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Danner: Trade G1 Y1 Danner\n\tjeep: Sorry, forgot my pledge to not move in HW while at work...\n\n7) jeep: Build Y2 Jeep\n\tDanner: no problem :)\n\n8) Danner: Build G1 Danner\n\n9) jeep: Discover Y2 Jeep B1 Moon\n\n10) Danner: Discover Y1 Danner G3 Earth\n\n11) jeep: Build G1 Jeep\n\n12) Danner: Trade G1 R1 Danner\n\n13) jeep: Move G1 Jeep Moon\n\n14) Danner: Build G1 Danner\n\n15) jeep: Build G1 Jeep\n\n16) Danner: Move G1 Danner Earth\n\tDanner: ooops, sorry\n\n17) jeep: Discover Y1 Jeep B1 Stars\n\n\tDanner: I give up :)\n\nHomeworlds Online (SDG# 3491)\nVariants: &quot;No undo&quot;\nStarted: 2006.5.18, Ended: 2006.5.21\nParticipants: Sztyuni (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld Y1 B2 G3\n\n2) Sztyuni: Homeworld B2 G3 R3\n\n3) Danner: Build G1 Danner\n\n4) Sztyuni: Build R1 Sztyuni\n\n5) Danner: Trade G1 R1 Danner\n\n6) Sztyuni: Trade R1 Y1 Sztyuni\n\n7) Danner: Build G1 Danner\n\n8) Sztyuni: Build Y1 Sztyuni\n\n9) Danner: Build R1 Danner\n\n10) Sztyuni: Build Y2 Sztyuni\n\n11) Danner: Discover G1 Danner Y3 Wormhole\n\n12) Sztyuni: Discover Y1 Sztyuni G1 Joskabacsi\n\n13) Danner: Build G1 Wormhole\n\n14) Sztyuni: Move R3 Sztyuni Joskabacsi\n\n15) Danner: Discover G1 Wormhole B1 Market\n\n16) Sztyuni: Build Y2 Sztyuni\n\n17) Danner: Build G2 Market\n\n18) Sztyuni: Trade Y2 R2 Sztyuni\n\n19) Danner: Trade G2 Y2 Market\n\n20) Sztyuni: Move R3 Joskabacsi Wormhole\n\n21) Danner: Move G1 Wormhole Danner\n\n22) Sztyuni: Trade Y2 G2 Sztyuni\n\n23) Danner: Build Y2 Market\n\n24) Sztyuni: Move G2 Sztyuni Joskabacsi\n\n25) Danner: Discover Y2 Market G3 Earth\n\n26) Sztyuni: Move G2 Joskabacsi Wormhole\n\n27) Danner: Sacrifice G3 Danner\nBuild Y2 Market\nBuild Y3 Market\nBuild Y3 Earth\n\n28) Sztyuni: Move G2 Wormhole Danner\n\n29) Danner: Move Y2 Earth Danner\n\n30) Sztyuni: Move R3 Wormhole Danner\n\n31) Danner: Build R1 Danner\nCatastrophe Danner R\n\n32) Sztyuni: Build Y3 Joskabacsi\n\n33) Danner: Trade Y2 R2 Danner\n\n34) Sztyuni: Move Y3 Joskabacsi Sztyuni\n\n35) Danner: Build Y2 Earth\n\n36) Sztyuni: Move Y1 Sztyuni Market\nCatastrophe Market Y\n\n37) Danner: Attack G2S Danner\n\n38) Sztyuni: Build Y1 Joskabacsi\n\n39) Danner: Move Y3 Earth Market\n\n40) Sztyuni: Build Y2 Sztyuni\n\n41) Danner: Sacrifice G2 Danner\nBuild Y2 Earth\nBuild Y3 Market\n\n42) Sztyuni: Trade Y3 R3 Sztyuni\n\n43) Danner: Discover Y2 Earth R1 Mars\n\n44) Sztyuni: Move R3 Sztyuni Market\n\n45) Danner: Sacrifice R2 Danner\nAttack R3S Market\nPass\n\n46) Sztyuni: Build Y3 Sztyuni\n\n47) Danner: Sacrifice Y2 Earth\nMove Y2 Mars Sztyuni\nMove Y3 Market Sztyuni\n\n48) Sztyuni: Trade Y3 R3 Sztyuni\n\n49) Danner: Sacrifice R3 Market\nAttack R2S Sztyuni\nAttack R3S Sztyuni\nAttack Y2S Sztyuni\n\n\nHomeworlds Online (SDG# 3465)\nStarted: 2006.5.19, Ended: 2007.8.31\nParticipants: ratonlaveurgarou (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld R2 B1 G3\n\n2) ratonlaveurgarou: Homeworld G1 B2 R3\n\n3) andylooney: Build G1 Andylooney\n\n4) ratonlaveurgarou: Build R1 Ratonlaveurgarou\n\n5) andylooney: Trade G1 R1 Andylooney\n\n6) ratonlaveurgarou: Pass\n\n7) andylooney: Build G1 Andylooney\n\n8) ratonlaveurgarou: Trade R1 Y1 Ratonlaveurgarou\n\n9) andylooney: Trade G3 Y3 Andylooney\n\n10) ratonlaveurgarou: Discover R3 Ratonlaveurgarou Y3 Sunflower\n\n11) andylooney: Discover R1 Andylooney G3 Paradise\n\n12) ratonlaveurgarou: Build Y1 Ratonlaveurgarou\n\n13) andylooney: Build G1 Andylooney\n\tandylooney: Very sorry to have been away so long, but now that we&#39;re done with the summer trade shows, I&#39;ll hopefully be able to get back on top of this.\n\n14) ratonlaveurgarou: Build Y1 Ratonlaveurgarou\n\n15) andylooney: Build Y2 Andylooney\n\n16) ratonlaveurgarou: Discover Y1 Ratonlaveurgarou R3 Coquelicot\n\n17) andylooney: Build G2 Andylooney\n\n\nHomeworlds Online (SDG# 3538)\nStarted: 2006.5.22, Ended: 2006.7.19\nParticipants: cobalt (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld G2 B1 Y3\n\n2) cobalt: Homeworld G3 B2 Y3\n\n3) Keith: Build Y1 Keith\n\n4) cobalt: Build Y1 Cobalt\n\n5) Keith: Build Y1 Keith\n\n6) cobalt: Trade Y1 G1 Cobalt\n\n7) Keith: Trade Y1 B1 Keith\n\n8) cobalt: Build G1 Cobalt\n\n9) Keith: Trade Y1 G1 Keith\n\n10) cobalt: Trade G1 B1 Cobalt\n\n11) Keith: Build B2 Keith\n\n12) cobalt: Build B2 Cobalt\n\n13) Keith: Trade B2 Y2 Keith\n\n14) cobalt: Discover B1 Cobalt G1 Persephone\n\n15) Keith: Discover B1 Keith G3 Greenleaf\n\n16) cobalt: Build Y1 Cobalt\n\n\n17) Keith: Move Y2 Keith Greenleaf\n\n18) cobalt: Build G2 Cobalt\n\n19) Keith: Discover G1 Keith B3 Miranda\n\n20) cobalt: Trade B1 Y1 Persephone\n\n21) Keith: Build G2 Miranda\n\n22) cobalt: Discover G1 Cobalt Y1 Lobsterback\n\n23) Keith: Sacrifice G2 Miranda\nBuild Y2 Keith\nBuild B1 Greenleaf\n\n24) cobalt: Discover G1 Lobsterback Y3 Labrador\n\n25) Keith: Discover B1 Greenleaf B2 Bluesun\n\n26) cobalt: Move B2 Cobalt Persephone\n\tcobalt: I have a Blue Sun t-shirt\n\n27) Keith: Trade Y2 R2 Keith\n\tKeith: Cool.  I had noticed the Firefly/Serenity system naming. \n\n28) cobalt: Build B3 Persephone\n\tcobalt: I actually didn&#39;t do that on purpose, Persephone is just a lovely name.\n\n29) Keith: Build B3 Greenleaf\n\tKeith: Oh.  Well, that is why there is a Miranda and a Greenleaf.  Labrador seemed to be a break in the pattern that I was largely responsible for but then I don&#39;t know Firefly/Serenity that well.\n\n30) cobalt: Trade B3 G3 Persephone\n\tcobalt: I don&#39;t remember Greenleaf. Which episode was that?\n\n31) Keith: Move B3 Greenleaf Persephone\n\tKeith: Ariel.  Greenleaf is mentioned in &quot;Safe&quot; as a location likely to have medical facilities. http://en.wikipedia.org/wiki/List_of_Firefly_planets_and_moons\n\tKeith: My memory was Ariel.  Wikipedia says otherwise.\n\n32) cobalt: Sacrifice Y1 Persephone\nMove G3 Persephone Greenleaf\n\tcobalt: This turn will be dealt with by Tuesday.\n\tKeith: No problem.  Thank you for the notice.\n\n33) Keith: Build B3 Greenleaf\n\tKeith: I had not thought of that.\n\n34) cobalt: Sacrifice G3 Greenleaf\nBuild G2 Cobalt\nBuild G3 Labrador\nPass\n\n35) Keith: Sacrifice Y2 Greenleaf\nMove G1 Miranda Persephone\nMove G1 Persephone Cobalt\nCatastrophe Cobalt Green\n\n\tKeith: Thank you for the game.  I think I gained my advantage when I had a red ship while you did not.\n\nHomeworlds Online (SDG# 3542)\nStarted: 2006.5.22, Ended: 2007.2.19\nParticipants: TwoShort (S), andylooney (N)\nWinner: TwoShort\n\n1) andylooney: Homeworld B2 R1 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Here I was all set to spring my surprise homeworld selection on you. \n\n3) andylooney: Build G1 Andylooney\n\n4) TwoShort: Build G1 Twoshort\n\n5) andylooney: Trade G3 Y3 Andylooney\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) andylooney: Build G1 Andylooney\n\n8) TwoShort: Build Y1 Twoshort\n\n9) andylooney: Discover G1 Andylooney Y3 Money\n\n10) TwoShort: Discover Y1 Twoshort G2 Garden\n\n11) andylooney: Build G1 Andylooney\n\n12) TwoShort: Build G2 Twoshort\n\n13) andylooney: Discover G1 Andylooney Y3 Gold\n\tandylooney: Very sorry to have been away so long, but now that we&#39;re done with the summer trade shows, I&#39;ll hopefully be able to get back on top of this.\n\n14) TwoShort: Discover G2 Twoshort Y2 Yoyo\n\n15) andylooney: Build Y1 Andylooney\n\n16) TwoShort: Build Y2 Twoshort\n\n17) andylooney: Discover Y1 Andylooney G3 Paradise\n\n18) TwoShort: Trade Y1 R1 Twoshort\n\n\nHomeworlds Online (SDG# 3541)\nStarted: 2006.5.23, Ended: 2006.8.31\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Greetings\n\n2) Danner: Homeworld Y1 B2 G3\n\tDanner: Hi :)\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build G1 Danner\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Danner: Build G1 Danner\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Danner: Trade G1 R1 Danner\n\n9) TwoShort: Build Y2 Twoshort\n\n10) Danner: Build R1 Danner\n\n11) TwoShort: Build G1 Twoshort\n\n12) Danner: Build R2 Danner\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) Danner: Move R1 Danner Grogar\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) Danner: Attack Y1N Grogar\n\n17) TwoShort: Move R2 Twoshort Grogar\n\n18) Danner: Move G3 Danner Grogar\n\n19) TwoShort: Sacrifice Y1 Twoshort\nDiscover R2 Grogar G1 Glork\n\n20) Danner: Sacrifice G3 Grogar\nBuild R2 Grogar\nBuild R3 Grogar\nBuild R3 Danner\n\n21) TwoShort: Build G2 Twoshort\n\n22) Danner: Move R3 Grogar Glork\n\n23) TwoShort: Trade G2 Y2 Twoshort\n\n24) Danner: Attack R2N Glork\n\n25) TwoShort: Build G2 Twoshort\n\n26) Danner: Build R3 Grogar\n\n27) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n28) Danner: Trade R3 G3 Danner\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n30) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild Y1 Grogar\nBuild Y2 Grogar\n\n31) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Yolonda Danner\nMove G1 Yolonda Danner\nCatastrophe Danner Green\n\n\nHomeworlds Online (SDG# 3484)\nVariants: &quot;No undo&quot;\nStarted: 2006.5.23, Ended: 2006.5.27\nParticipants: Danner (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld B2 Y3 G3\n\n2) Danner: Homeworld Y1 B2 G3\n\n3) Calavera: Build G1 Calavera\n\n4) Danner: Build G1 Danner\n\n5) Calavera: Trade G1 Y1 Calavera\n\n\tDanner: Sorry, I had net problems.\n\nHomeworlds Online (SDG# 3549)\nVariants: &quot;No undo&quot;\nStarted: 2006.5.24, Ended: 2006.8.21\nParticipants: Cerulean (S), Danner (N)\nWinner: Cerulean\n\n1) Danner: Homeworld Y1 B2 G3\n\n2) Cerulean: Homeworld Y3 B1 G3\n\n3) Danner: Build G1 Danner\n\n4) Cerulean: Build G1 Cerulean\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Cerulean: Build G1 Cerulean\n\n7) Danner: Build G1 Danner\n\n8) Cerulean: Trade G1 Y1 Cerulean\n\n9) Danner: Build Y2 Danner\n\n10) Cerulean: Build Y2 Cerulean\n\n11) Danner: Trade Y1 R1 Danner\n\n12) Cerulean: Discover Y2 Cerulean G2 Freedonia\n\n13) Danner: Discover Y2 Danner G3 Stargate :)\n\n14) Cerulean: Trade G1 R1 Cerulean\n\n15) Danner: Build R1 Danner\n\n16) Cerulean: Build R2 Cerulean\n\n17) Danner: Move R1 Danner Stargate\n\n18) Cerulean: Trade R1 B1 Cerulean\n\n19) Danner: Build Y1 Stargate\n\n20) Cerulean: Build G1 Cerulean\n\n21) Danner: Discover Y1 Stargate G2 Xx\n\n22) Cerulean: Discover G1 Cerulean B2 Sylvania\n\n23) Danner: Trade G1 B1 Danner\n\n24) Cerulean: Build G1 Cerulean\n\n25) Danner: Build G1 Danner\n\n26) Cerulean: Build G2 Sylvania\n\n\tCerulean: sorry, danner, but it&#39;s been two months.  i&#39;m pulling the plug.\n\tDanner: no, I&#39;m sorry for becoming inactive.\n\tCerulean: Hey, welcome back.  If you&#39;re ready for full-time Homeworlds, you&#39;re welcome to challenge me to a re-match.\n\tDanner: Ok :)\n\nHomeworlds Online (SDG# 4021)\nStarted: 2006.8.13, Ended: 2006.8.31\nParticipants: zoltar (S), Uglyfoot (N)\nWinner: zoltar\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) zoltar: Build G1 Zoltar\n\n5) Uglyfoot: Discover G1 Uglyfoot B1 Porch\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) zoltar: Build Y1 Zoltar\n\n9) Uglyfoot: Trade G1 R1 Uglyfoot\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) Uglyfoot: Build R2 Uglyfoot\n\n12) zoltar: Build R2 Zoltar\n\tzoltar: b r2 zoltar\n\n13) Uglyfoot: Build G1 Uglyfoot\n\n14) zoltar: Build Y1 Zoltar\n\n15) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n16) zoltar: Build Y2 Zoltar\n\n17) Uglyfoot: Build R2 Uglyfoot\n\n18) zoltar: Discover R2 Zoltar G3 Greenbelt\n\n19) Uglyfoot: Discover R2 Uglyfoot G1 Tree\n\n20) zoltar: Build R3 Greenbelt\n\n21) Uglyfoot: Build R3 Tree\n\n22) zoltar: Build R3 Zoltar\n\n23) Uglyfoot: Build Y2 Uglyfoot\n\n24) zoltar: Discover R3 Zoltar Y3 Yellowstone\n\n25) Uglyfoot: Move Y2 Uglyfoot Porch\n\n26) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Zoltar Greenbelt\nMove R3 Greenbelt Porch\n\n27) Uglyfoot: Sacrifice Y1 Uglyfoot\nMove R3 Tree Greenbelt\n\n28) zoltar: Sacrifice R2 Greenbelt\nAttack Y2 Porch\nAttack G1 Porch\n\n29) Uglyfoot: Attack Y1 Greenbelt\n\n30) zoltar: Build R2 Porch\n\n31) Uglyfoot: Build G1 Uglyfoot\n\n32) zoltar: Build G2 Zoltar\n\n33) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n34) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild R2 Yellowstone\n\n35) Uglyfoot: Move Y2 Uglyfoot Tree\n\n36) zoltar: Move R3 Yellowstone Tree\n\n37) Uglyfoot: Build Y1 Tree\n\n38) zoltar: Sacrifice R3 Porch\nAttack R2 Tree\nAttack Y2 Tree\nAttack Y1 Tree\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild R3 Uglyfoot\nBuild Y3 Greenbelt\nBuild G2 Uglyfoot\n\tzoltar: Red Alert!  All handz to battle stay shunz!  Lock awl batteries onto alien sheepz and open fire!\n\n40) zoltar: Sacrifice Y2 Tree\nMove R2 Porch Uglyfoot\nMove R2 Tree Uglyfoot\nCatastrophe Uglyfoot R\n\n41) Uglyfoot: Sacrifice Y3 Greenbelt\nMove R3 Greenbelt Tree\nMove R3 Tree Uglyfoot\nMove G1 Uglyfoot Porch\n\tzoltar: zee tree ease mine!!!!! whew who!!!!\n\n42) zoltar: Sacrifice R1 Zoltar\nAttack G1 Porch\n\n43) Uglyfoot: Build Y2 Greenbelt\n\tzoltar: Zee Uglyfoot defenz greed haz bean dizzaybulled!  Awl sheepz storm zee Uglyfoot homeworld. Attack!\n\n44) zoltar: Sacrifice G2 Zoltar\nBuild Y3 Porch\nBuild Y3 Zoltar\n\tUglyfoot: hit me.\n\n45) Uglyfoot: Build R1 Uglyfoot\n\n46) zoltar: Build G2 Zoltar\n\n47) Uglyfoot: Discover R1 Uglyfoot B1 Rightout\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G2 Porch\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n\tUglyfoot: We could see the roller building steam.\r\n\n\nHomeworlds Online (SDG# 3547)\nStarted: 2006.5.30, Ended: 2006.6.8\nParticipants: Subhan64 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y3 B2 G3\n\tTwoShort: Greetings.\n\n3) TwoShort: Build G1 Twoshort\n\tSubhan64: howdy!  Good luck!\r\n\n\n4) Subhan64: Build G1 Subhan64\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Subhan64: Build G1 Subhan64\n\n7) TwoShort: Build G1 Twoshort\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) Subhan64: Discover Y1 Subhan64 R1 Omicronpersei8\n\n11) TwoShort: Build G1 Twoshort\n\n12) Subhan64: Build G2 Subhan64\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n14) Subhan64: Move G2 Subhan64 Omicronpersei8\n\n15) TwoShort: Trade G2 Y2 Twoshort\n\n16) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Omicronpersei8\nBuild G3 Subhan64\nBuild Y1 Omicronpersei8\n\n17) TwoShort: Discover G1 Yolonda B1 Bluestar\n\n18) Subhan64: Discover G2 Omicronpersei8 B3 Magrathea\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluestar\nBuild Y2 Twoshort\n\tTwoShort: I can win right now if you do that, but it wouldn&#39;t not very satisfying, so I&#39;d be happy to have you undo and try something else if you like.\n\tSubhan64: what is the win move?\n\tTwoShort: I can sacrifice my y2 to move one of the greens from yolonda all the way to your homeworld, and cause a catastrophe.\n\tSubhan64: ahh, I see.  I missed that one!  Thanks for the break!\r\n\n\tTwoShort: No problem; Leaving your homeworld vulnerable to a catastrophe is kind of the classic early-game mistake.  I&#39;ve made it myself a few times.  But it&#39;s not all that fun to win that way.\n\n\tSubhan64: I think I&#39;m pretty well licked here, good game!\n\tTwoShort: I&#39;m not sure I&#39;d agree, but OK\n\tSubhan64: well, what would you have suggested as a move?\n\tTwoShort: Either moving out or trading one of the greens at your homeworld would avoid the immediate threat. Trading the small to red would probably have been my choice.  To be sure, I had the advantage and your chances of staging a comeback were pretty slim.  But this game is full of surprises, and so I generally won&#39;t resign until I can see how my opponent can definitely force victory with a specific series of moves.  \n\nHomeworlds Online (SDG# 3607)\nVariants: &quot;Unrated&quot;\nStarted: 2006.6.2, Ended: 2006.6.8\nParticipants: apollotiger (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 B2 Y3\n\tMatrixFrog: It says &quot;There are no pieces left in the stash to take.&quot;\n\n2) apollotiger: Homeworld G3 B2 Y3\n\tMatrixFrog: Nevermind, Aaron! My fault.\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) apollotiger: Build Y1 Apollotiger\n\n5) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n6) apollotiger: Trade Y1 B1 Apollotiger\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) apollotiger: Build B1 Apollotiger\n\n9) MatrixFrog: Build B2 Matrixfrog\n\n10) apollotiger: Trade B1 G1 Apollotiger\n\n11) MatrixFrog: Discover B2 Matrixfrog G3 Grove\n\n12) apollotiger: Discover G1 Apollotiger Y1 Zeta\n\n13) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n14) apollotiger: Build Y1 Apollotiger\n\n15) MatrixFrog: Build Y1 Matrixfrog\n\n16) apollotiger: Build G2 Zeta\n\n17) MatrixFrog: Discover G1 Matrixfrog B3 Child\n\n18) apollotiger: Discover Y1 Apollotiger R1 Phosphorus\n\n19) MatrixFrog: Build G2 Child\n\n20) apollotiger: Build Y2 Apollotiger\n\n21) MatrixFrog: Trade G2 Y2 Child\n\n22) apollotiger: Move Y1 Phosphorus Grove\n\n23) MatrixFrog: Trade B2 R2 Grove\n\n24) apollotiger: Trade Y2 R2 Apollotiger\n\n25) MatrixFrog: Attack Y1S Grove\n\n26) apollotiger: Build B1 Apollotiger\n\n27) MatrixFrog: Discover G1 Child R1 Arr Won\n\n28) apollotiger: Sacrifice B1 Apollotiger\nTrade G2 R2 Zeta\n\n29) MatrixFrog: Move R2 Grove Matrixfrog\n\n30) apollotiger: Move R2 Zeta Child\n\n31) MatrixFrog: Move Y2 Child Arr\n\n32) apollotiger: Build R1 Apollotiger\n\n33) MatrixFrog: Build Y2 Arr\n\n34) apollotiger: Discover R1 Apollotiger B1 Chronos\n\n35) MatrixFrog: Build G2 Arr\n\n36) apollotiger: Move G1 Zeta Grove\n\n37) MatrixFrog: Move Y1 Grove Arr\n\n38) apollotiger: Build B2 Apollotiger\n\n39) MatrixFrog: Build B3 Matrixfrog\n\n40) apollotiger: Trade B1 Y1 Apollotiger\n\tMatrixFrog: The point of SDG&#39;s setup is that you don&#39;t have to both be online at the same time. So if you&#39;re online, and I&#39;m not, just go ahead and make one move and I&#39;ll do the same next time I come back.\n\n41) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade Y1 B1 Arr\n\n42) apollotiger: Move Y1 Apollotiger Chronos\n\tMatrixFrog: So you see how sacrifices work, yes?\n\n43) MatrixFrog: Build B1 Arr\n\n44) apollotiger: Move Y1 Chronos Child\n\n45) MatrixFrog: Sacrifice Y2 Arr\nMove B1 Arr Apollotiger\nMove B1 Arr Apollotiger\nCatastrophe Apollotiger Blue\n\n46) apollotiger: Build R1 Apollotiger\n\n47) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n48) apollotiger: Move R1 Apollotiger Chronos\n\n49) MatrixFrog: Sacrifice Y2 Arr\nMove G1 Arr Apollotiger\nMove G2 Arr Apollotiger\n\n50) apollotiger: Build G2 Grove\n\n51) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild B1 Matrixfrog\nBuild B1 Matrixfrog\nBuild G2 Apollotiger\nCatastrophe Matrixfrog B\nCatastrophe Apollotiger G\n\n\nHomeworlds Online (SDG# 3576)\nStarted: 2006.6.7, Ended: 2006.6.24\nParticipants: Subhan64 (S), andylooney (N)\nWinner: Subhan64\n\n1) andylooney: Homeworld B1 R2 G3\n\n2) Subhan64: Homeworld R3 B2 G3\n\n3) andylooney: Build G1 Andylooney\n\n4) Subhan64: Build G1 Subhan64\n\n\nHomeworlds Online (SDG# 3639)\nStarted: 2006.6.12, Ended: 2008.2.22\nParticipants: randrews (S), andylooney (N)\nWinner: randrews\n\n1) andylooney: Homeworld R1 B3 G3\n\n2) randrews: Homeworld R1 B2 G3\n\n3) andylooney: Build G1 Andylooney\n\n4) randrews: Build G1 Randrews\n\tandylooney: Hi Ross! It was good seeing you at Origins!\r\n\n\n5) andylooney: Trade G3 Y3 Andylooney\n\trandrews: Good seeing you too! I hope this game goes a little better for me than our last one...\n\n6) randrews: Trade G3 Y3 Randrews\n\n7) andylooney: Build Y1 Andylooney\n\trandrews: I&#39;m not actually intending to copy you, it&#39;s just sorta happening...\n\n8) randrews: Discover G1 Randrews Y3 Gardner\n\n9) andylooney: Discover Y1 Andylooney G2 Lime\n\n10) randrews: Trade Y3 G3 Randrews\n\n11) andylooney: Build Y1 Lime\n\n12) randrews: Build G1 Randrews\n\n13) andylooney: Build G2 Andylooney\n\n14) randrews: Build G2 Gardner\n\n15) andylooney: Build G3 Andylooney\n\tandylooney: Very sorry to have been away so long, but now that we&#39;re done with the summer trade shows, I&#39;ll hopefully be able to get back on top of this.\n\n16) randrews: Move G1 Gardner Lime\n\trandrews: That&#39;s fine. Hope they went well for you!\n\n17) andylooney: Trade G1 R1 Andylooney\n\n18) randrews: Trade G1 Y1 Randrews\n\n19) andylooney: Sacrifice R1 Andylooney\nAttack G1S Lime\n\n20) randrews: Build Y2 Randrews\n\n21) andylooney: Build Y2 Andylooney\n\n22) randrews: Build G1 Randrews\n\n23) andylooney: Discover G1 Lime Y3 Lemon\n\n24) randrews: Discover G1 Randrews B3 Slinky\n\n25) andylooney: Build Y2 Andylooney\n\n26) randrews: Sacrifice G3 Randrews\nBuild G1 Slinky\nBuild G3 Slinky\nBuild G3 Gardner\n\n27) andylooney: Sacrifice Y2 Andylooney\nMove G1 Lemon Lime\nMove G1 Lime Slinky\nCatastrophe Slinky Green\n\n28) randrews: Move G3 Gardner Randrews\n\n29) andylooney: Discover Y1 Lime G3 Shamrock\n\n30) randrews: Trade Y2 R2 Randrews\n\n31) andylooney: Trade Y2 R2 Andylooney\n\n32) randrews: Move R2 Randrews Shamrock\n\n33) andylooney: Discover Y1 Shamrock G1 Bean\n\n34) randrews: Build Y2 Randrews\n\n35) andylooney: Build Y2 Lime\n\n36) randrews: Sacrifice Y1 Randrews\nMove R2 Shamrock Bean\n\n\trandrews: Is the &quot;extreme timeout&quot; thing new? The game was actually over 500 days old, not 60...\r\n\n\tAaron: It&#39;s not automated is the thing.  Before killing games I like to see for myself what is happening.  I just haven&#39;t had time to do all the DB maintenance stuff.  For this round of cleanup I looked for all games that had clocks more than 60 days in the red.\n\nHomeworlds Online (SDG# 3690)\nVariants: &quot;Unrated&quot;\nStarted: 2006.6.17, Ended: 2006.6.18\nParticipants: fnord (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 G1 Y3\n\n2) fnord: Homeworld B2 Y1 G3\n\tzoltar: Hi, this is my second game.  I lost on the 4th move yesterday, not used to all the rules yet.\n\n3) zoltar: Build Y1 Zoltar\n\tfnord: Then, hopefully, this will be good experience for both of us.\n\n4) fnord: Build G1 Fnord\n\n5) zoltar: Discover Y1 Zoltar B2 Z1\n\n6) fnord: Trade G1 R1 Fnord\n\n7) zoltar: Build Y1 Zoltar\n\n8) fnord: Build G1 Fnord\n\n9) zoltar: Move Y1 Zoltar Z1\n\n10) fnord: Build G1 Fnord\n\n11) zoltar: Build Y2 Zoltar\n\n12) fnord: Discover G1 Fnord R3 Discordia\n\n13) zoltar: Trade Y2 R2 Zoltar\n\n14) fnord: Build G2 Fnord\n\n15) zoltar: Build Y2 Zoltar\n\n16) fnord: Trade G2 Y2 Fnord\n\n17) zoltar: Trade Y2 G2 Zoltar\n\n18) fnord: Build Y2 Fnord\n\n19) zoltar: Build Y2 Zoltar\n\n20) fnord: Sacrifice Y2 Fnord\nMove Y2 Fnord Discordia\nMove R1 Fnord Discordia\n\n21) zoltar: Discover G2 Zoltar Y2 Z2\n\n22) fnord: Build Y3 Discordia\n\n23) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Z1 Discordia\nMove Y1 Z1 Discordia\nCatastrophe Discordia Y\n\n24) fnord: Move G3 Fnord Discordia\n\n25) zoltar: Build G2 Z2\n\tfnord: Well done... that puts a crimp in my plans.\n\n26) fnord: Trade G1 Y1 Fnord\n\n27) zoltar: Build Y1 Zoltar\n\n28) fnord: Move Y1 Fnord Discordia\n\n\tzoltar: Moving your huge green ship didn&#39;t make sense to me, as the rules say it&#39;s best to keep a big ship at your homeworld.\n\tfnord: Actually, it was because of a misundertanding of the rules, on my part, I think.\n\tfnord: Oh, frell me!\n\tfnord: Couldn&#39;t the game have warned me I was gonna destroy my homeworld?\n\tfnord: The reason I moved my big ship there was to (attempt) to prevent you from attacking any ship I owned there.  I misread the rules, thinking you couldn&#39;t attack me if I had a larger ship in there.  \n\tzoltar: Ouch! It didn&#39;t let you take back the move?  Oh well.  We can start another one if you wish.  And this was my first victory in the game, after an awful blowout where I died in the 5th move or so.  Thanks for the game!\n\tfnord: No, it didn&#39;t.  I looked for it, that&#39;s for sure.\r\n\n\nHomeworlds Online (SDG# 3592)\nStarted: 2006.6.13, Ended: 2006.6.16\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y3 B1 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\tTwoShort: Greetings\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Build G1 Zoltar\n\n6) TwoShort: Build G2 Twoshort\n\n7) zoltar: Discover G1 Zoltar B2 Z1\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\tzoltar: Greetings Earthling\n\n9) zoltar: Build G2 Zoltar\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) zoltar: Trade G2 R2 Zoltar\n\n12) TwoShort: Build G2 Twoshort\n\n13) zoltar: Build G2 Zoltar\n\n14) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Yolonda Z1\nMove G1 Z1 Zoltar\nCatastrophe Zoltar Green\n\n\tzoltar: Thanks, this was my first game.  I&#39;m not even sure what happened!\n\tTwoShort: Well you were doing fine until you built a third green at your homeworld when I had one in striking distance.  It&#39;s sort of the classic early-game blunder.  Anyway, anytime you&#39;d like to play again, just let me know; I&#39;ll even try to be a bit less cut-throat :)\n\nHomeworlds Online (SDG# 3685)\nStarted: 2006.6.17, Ended: 2006.6.19\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld B1 G3 Y3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\tzoltar: Ok, I&#39;ll try again!\r\n\n\n3) zoltar: Build Y1 Zoltar\n\n4) TwoShort: Build B1 Twoshort\n\n5) zoltar: Build Y1 Zoltar\n\n6) TwoShort: Trade B3 G3 Twoshort\n\n7) zoltar: Discover Y1 Zoltar B2 Z2\n\n8) TwoShort: Build B2 Twoshort\n\n9) zoltar: Build Y1 Zoltar\n\n10) TwoShort: Trade B2 Y2 Twoshort\n\n11) zoltar: Discover Y1 Zoltar G2 Z1\n\n12) TwoShort: Build B2 Twoshort\n\n13) zoltar: Build Y2 Zoltar\n\n14) TwoShort: Discover B2 Twoshort Y3 Yolonda\n\n15) zoltar: Trade Y2 B2 Zoltar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Yolonda\nBuild B3 Yolonda\n\n17) zoltar: Build Y2 Z1\n\n18) TwoShort: Sacrifice B2 Yolonda\nTrade B3 R3 Twoshort\nTrade B3 G3 Yolonda\n\n19) zoltar: Move B2 Zoltar Z1\n\n20) TwoShort: Discover B1 Twoshort G3 Grogar\n\n\tzoltar: I think my position is lost.\n\tzoltar: I think I was lost; I couldn&#39;t find any moves that save me.  Thanks.\n\nHomeworlds Online (SDG# 3697)\nVariants: &quot;Unrated&quot;\nStarted: 2006.6.18, Ended: 2006.6.19\nParticipants: fnord (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld G1 B3 Y3\n\tzoltar: Prepare for battle, Earthling!\n\n3) zoltar: Build G1 Zoltar\n\n4) fnord: Build Y1 Fnord\n\n5) zoltar: Discover G1 Zoltar B3 Z1\n\n6) fnord: Trade Y1 B1 Fnord\n\n7) zoltar: Build G1 Z1\n\n8) fnord: Build Y1 Fnord\n\n9) zoltar: Build G2 Zoltar\n\n10) fnord: Discover Y1 Fnord G2 Discordia\n\n11) zoltar: Discover G2 Zoltar B3 Z2\n\n12) fnord: Build B1 Fnord\n\n13) zoltar: Build G2 Zoltar\n\n14) fnord: Trade B1 R1 Fnord\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Z2\n\n16) fnord: Build Y1 Fnord\n\tzoltar: I am in the Green!\n\tfnord: You&#39;re looking a little green around the gills there, Zoltar.\r\nYou sure you&#39;re doing okay?\n\n17) zoltar: Trade G2 Y2 Z2\n\n18) fnord: Move R1 Fnord Discordia\n\tzoltar: Heh heh heh, I suppose I&#39;ll have to trade away my greens before I explode!  \n\n19) zoltar: Trade G3 R3 Zoltar\n\n20) fnord: Trade Y3 G3 Fnord\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G2 Z1\nBuild G3 Zoltar\nBuild Y2 Z2\n\n22) fnord: Build Y2 Fnord\n\tzoltar: stealing my green factory, eh?  oh well!\n\n23) zoltar: Discover Y2 Z2 B2 Z3\n\tfnord: Hmmm... I don&#39;t think I&#39;m very good at this game yet.\n\n24) fnord: Trade Y2 R2 Fnord\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Z2\nBuild Y3 Z3\n\n26) fnord: Move R2 Fnord Discordia\n\tzoltar: Prepare to be boarded!\n\n27) zoltar: Trade Y2 B2 Z2\n\n28) fnord: Move R2 Discordia Z1\n\n29) zoltar: Sacrifice B2 Z2\nTrade G3 R3 Z2\nTrade Y3 R3 Z3\n\n30) fnord: Build G3 Fnord\n\tzoltar: For the first time, I have ships of all 4 colors!  The Death Star is nearly complete...\n\n31) zoltar: Sacrifice Y2 Z2\nMove G2 Z1 Z3\nMove G2 Z3 Fnord\nCatastrophe Fnord Green\n\tzoltar: Retreat!!!\n\tzoltar: Nah!  Attack!!!!\n\n32) fnord: Attack G1 Z1\n\tzoltar: RED Alert!\n\n33) zoltar: Move R3 Z3 Fnord\n\n34) fnord: Build Y2 Discordia\n\tzoltar: Kaboom!!!!\n\n35) zoltar: Sacrifice R3 Z2\nAttack B1 Fnord\nAttack Y1 Fnord\nPass\n\n\tfnord: I think that this last move is, at best, a delaying maneuver.\n\tfnord: Doh!  Forgot that...  *chuckle*  Nicely done.\n\tzoltar: I think there was no defence, as I could sac a big red ship for 3 attacks on the homeworld, even if you created or moved another ship to the homeworld.  I think I had an advantage but you were ok until the green catastrophe.  I&#39;ve now won twice to you and lost twice to an advanced player.  Play again?\n\tfnord: Sure... but, am I gonna get trounced again? *grin* \n\nHomeworlds Online (SDG# 3699)\nStarted: 2006.6.19, Ended: 2006.6.21\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tzoltar: Ok, I finally won a game against another beginner so I&#39;m ready to try again!  Maybe I&#39;ll get the hang of this game.\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build Y2 Zoltar\n\tzoltar: I already feel like I have a big disadvantage on the second move.  You got to take the two smaller stars, and maybe I should have taken a medium and large because you now are getting medium yellows already, and switching to a big yellow ship means I&#39;m likely to be destroyed by a catastrophe as in our previous game as I have a yellow star.  I suppose I&#39;m safe to build more yellow until you get a large yellow, or if you get a medium yellow and move out your small yellow one step, but that could be two moves away, and then I&#39;ll have to change the color of my big ship again.  Is this normal, or have I lost a tempo or two?\n\tzoltar: b y2 zoltar\n\n9) TwoShort: Build Y2 Twoshort\n\n10) zoltar: Discover Y2 Zoltar G2 Green2\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) zoltar: Build G1 Zoltar\n\n13) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n14) zoltar: Trade G1 B1 Zoltar\n\n15) TwoShort: Build G1 Twoshort\n\tTwoShort: Sorry, I somehow missed your questions until now.  The 1-2 homeworld is (I think) a very slight advantage.  You might have switched the colors of your stars to not deplete small yellows so far, but either way, I&#39;ve got only a slight advantage by getting more twos than you, as long as you avoid getting locked out of yellow entirely, which you did.  For a really big advantage, I need to get more 3 pointers than you.  Your latest move means I can grow a Y3 at Grogar.  Then once I move one of the tyellows to a new star, I can sacrifice the g1 at yolonda to grow that y3 too, and then you&#39;ll really be in a bad way.  So I think you&#39;ve been doing pretty much OK until this latest move... which I&#39;d be happy to have you undo if you like.\n\tzoltar: Ok, thanks, I undid that.  Maybe I&#39;ll take some time and think about this, as I didn&#39;t see any of your analysis before I made the move.  I&#39;m especially fuzzy on tactics that involves sacrifices and seeing the possibilities and outcomes.  I&#39;ll take a break and think and come back to it fresh this evening and see if I can find some better plan of action that doesn&#39;t give you the upper hand building the monster sized ships.\n\n16) zoltar: Build B1 Zoltar\n\tzoltar: This is what I came up with.  By not building a yellow, you don&#39;t get the y3, but if I build a green, you could either sacrifice for a catastrophe or you could take the bigger greens by sacking your G3 and building both G2s and your G3 again; so if I trade for a blue, I avoid all of the above and have a new color I can build.  Getting a red didn&#39;t seem to be as important yet, so I got into the blue market.  I hope that is sound reasoning and I haven&#39;t blown it again.\n\tTwoShort: That&#39;s pretty good; another alternative would have been moving the g1 out, thus threatening to move into one of my systems and cause a catastrophe if I build too many greens.  As you&#39;ve correctly noted, I&#39;m threatening to set up a &quot;factory&quot; where I repeatedly sacrifice and re-grow the g3.  You probably can&#39;t stop that entirely, but if at all possible you want to force the tempo such that you get a g3 for your own factory too.\n\n17) TwoShort: Build G2 Yolonda\n\n18) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: I seem to be doomed.  You can sac your G3 and then grow it back, plus another g2 in your homeworld and the last g3 in yolanda, giving you two green &#39;factories&#39; and leaving me with only small greens.    Did I make a serious blunder, and if so, was there a defence?\n\n19) TwoShort: Discover G1 Yolonda B2 Bluestar\n\tTwoShort: Well, I&#39;d caution you against giving up too easily; comebacks are certainly possible in this game.  In any case, if you want good practice at seeing possibilities, try to see how long you can hold me off.  As for the current situation, you might consider flipping your y3 back to green;  it&#39;s hard to be inefficient that way, but you don&#39;t want to miss the factory boat.  Note that I don&#39;t dare grow 3 greens at Yolonda, because you could sacrifice your y2 to move in and cause a catastrophe there.  It would eventually be nice for you to have a green somewhere beyond your homeworld, so you could pose the same threat to my homeworld, without having to sacrifice your 3 (which you don&#39;t want to do except to get another or win).\n\n20) zoltar: Discover G1 Zoltar B2 Blue2\n\tzoltar: Ok, I wouldn&#39;t have thought of that, but it makes sense.  I did see that if you get 3 greens I could sac my y2 if I ever got my green out of my homeworld, so perhaps that will do.  I understand the principle of the factory, but I don&#39;t quite get it.  I seem to have to have a g3 plus one other green ship at my &#39;factory&#39; system, so that the other green can support my rebuilding the g3 after I make my other 2 builds.  Is that it, or is there more to it than that?\n\n21) TwoShort: Trade Y2 R2 Twoshort\n\tTwoShort: That&#39;s it, except that the other green could be at a different system so that your g3 jumps there as part of the bargain.  Either way, you get two grows anywhere without giving anything up.\n\tTwoShort: That&#39;s it, except that the other green could be at a different system so that your g3 jumps there as part of the bargain.  Either way, you get two grows anywhere without giving anything up.\n\tTwoShort: Hmm, not sure why that happened\r\n\n\n22) zoltar: Trade B1 R1 Zoltar\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild Y2 Grogar\nBuild G3 Twoshort\n\tzoltar: But even with a factory I can&#39;t grow a ship in a system without another ship of that color, right?  I just don&#39;t need any green in the system where I do one of the builds?\n\tTwoShort: Exactly.  Note that if you factory now, you won&#39;t be able to regrow the g3 in your homeworld, and it can be dangerous to leave your homeworld without a 3 pointer once your opponent has red.  Luckily, I don&#39;t want to factory this turn either, since I can only grow yellow &amp; green, which would give you access to the Y3s. \n\n24) zoltar: Move B1 Zoltar Green2\n\n25) TwoShort: Move Y2 Grogar Blue2\n\tzoltar: I assume that I must get a red ship here, even if only an itty-bitty one, so that you can&#39;t bully me by coming to any of my systems with any one of your ships and threatening to sac your red to take over my ships.\n\tTwoShort: Yeah, it&#39;s pretty much always a good idea to get a red ship if your opponent has one. \n\n26) zoltar: Trade B1 R1 Green2\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Blue2\nBuild Y3 Grogar\nBuild G3 Twoshort\n\n28) zoltar: Build Y3 Green2\n\tzoltar: In another game against another beginner like myself, I got a red ship, my opponent ignored it, and the next move now I sacrificed my home Y3 ship to teleport my R3 from my homeworld into his, and I think that there is no defence, as with even an R1 anywhere, he could have defended by sacking the  R1 and taking my ship in his homeworld, but now if he trades for a red ship, I can just capture it on my move.  What a powerful weapon, even a single unopposed red ship!\n\n29) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Bluestar\nBuild Y3 Blue2\n\tTwoShort: Yeah, Ocasionally you get a situation where you can ignore your opponent having taken red for a turn or two because they can&#39;t reach you, but you&#39;ve got to be careful; as you say, if they attack, it will be too late.\n\tTwoShort: Oh, you don&#39;t want to do that...  I can sacrifice my y2 to move two gs into your homeworld for a catastrophe.  I&#39;m not entirely sure what you should do instead, but note that it&#39;s pretty unlikely I&#39;ll sacrifice to attack the g1 if you leave it at Blue2; for reasons just discussed, I don&#39;t want to be without red while you have one, and a 2 pointer sac for just a 1 pointer isn&#39;t that great a trade in any case.  I wanted to spread the yellows out for growing options; being randomly threatening by moving into your system was just a side bonus :)\n\n30) zoltar: Discover Y2 Green2 B3 Blue3\n\tzoltar: Ok, I didn&#39;t see that.  I wanted a factory!  But I can&#39;t build a Y2, or you use the factory to instantly get both Y3s.  I am doomed already it seems.\n\n31) TwoShort: Sacrifice Y3 Blue2\nMove G1 Bluestar Zoltar\nMove G2 Bluestar Zoltar\nMove G2 Bluestar Zoltar\nCatastrophe Zoltar Green\n\n32) zoltar: Move R1 Zoltar Green2\n\tzoltar: Again, you are getting 2 ships for every one of mine...\n\tTwoShort: Well, to be frank, you are probably doomed.  It&#39;s definitely a deep game that rewards experience, which I&#39;ve got lots of.\n\n\tzoltar: Yeah, I knew that, but I resigned too early last game, so I want to see how you force the win.  I just realized you could sac your Y3 and wipe out my greens any time you want, for starters.\n\tzoltar: Oops, that wasn&#39;t very smart... D&#39;oh!\r\nPlay again?\n\tTwoShort: Weird; it really shouldn&#39;t let you do that.\n\tzoltar: Not only does it let you do that, but it doesn&#39;t allow a take-back either.  A pathetic way to die!\n\nHomeworlds Online (SDG# 3700)\nVariants: &quot;Unrated&quot;\nStarted: 2006.6.19, Ended: 2006.6.21\nParticipants: zoltar (S), fnord (N)\nWinner: zoltar\n\n1) fnord: Homeworld Y2 B1 G3\n\n2) zoltar: Homeworld G2 B3 Y3\n\n3) fnord: Build G1 Fnord\n\n4) zoltar: Build Y1 Zoltar\n\n5) fnord: Trade G1 Y1 Fnord\n\n6) zoltar: Trade Y1 G1 Zoltar\n\n7) fnord: Build Y1 Fnord\n\n8) zoltar: Discover G1 Zoltar B1 Blue1\n\n9) fnord: Discover Y1 Fnord R3 Eris\n\tzoltar: As you can see, I&#39;m clueless about openings, and took back and changed both moves so far.  Except that I so far have always started with some b-g-y combo, as it seems only in advanced strategy could an early red be helpful, perhaps to force the opponent to waste time trading and getting reds to maintain the balance. \n\tfnord: Yeah.. .the strategy guide I read said that Reds weren&#39;t that useful until mid-game, at the earliest, since at the beginning of the game you should worry about developing your fleet.\n\n10) zoltar: Build G1 Blue1\n\n11) fnord: Build Y1 Fnord\n\n12) zoltar: Build Y2 Zoltar\n\n13) fnord: Move Y1 Fnord Eris\n\n14) zoltar: Trade Y3 R3 Zoltar\n\n15) fnord: Build G1 Fnord\n\n16) zoltar: Build Y2 Zoltar\n\n17) fnord: Move G1 Fnord Eris\n\tfnord: I&#39;m not feeling well, so I&#39;m gonna go lie down for a while, I probably won&#39;t be able to make a move again for the rest of the day.\n\n18) zoltar: Build Y3 Zoltar\n\n19) fnord: Build G2 Fnord\n\tzoltar: Ok, I did that anyway, for lack of anything better...\n\tzoltar: Take your time, then -- we can continue tonight or tomorrow -- hope you feel better.\n\n20) zoltar: Sacrifice Y3 Zoltar\nMove R3 Zoltar Blue1\nMove R3 Blue1 Eris\nMove R3 Eris Fnord\n\n21) fnord: Sacrifice G3 Fnord\nBuild Y3 Fnord\nBuild G2 Fnord\nBuild G3 Fnord\n\n22) zoltar: Sacrifice Y2 Zoltar\nMove G1 Blue1 Eris\nMove G1 Eris Fnord\nCatastrophe Fnord G\n\n23) fnord: Move Y1 Eris Blue1\n\n24) zoltar: Attack Y3 Fnord\n\tzoltar: b y3 zoltar\n\n25) fnord: Trade Y1 R1 Blue1\n\n26) zoltar: Sacrifice G1 Blue1\nBuild Y1 Fnord\nCatastrophe Fnord Y\n\n\tzoltar: Yes, the game is wonderfully complex, and we have to weigh getting big pieces, getting all colors, and not having too many of one color in one place.  The trick with the G3 I learned from the games I lost; it&#39;s called &quot;The Factory&quot;, where I have a G3 and just one other green in a system, and there are no small greens and no more than 2 medium greens in the stash.  Then you can sack the G3, rebuild it in place with the other small green, and you get two other builds, meaning two builds instead of one, anywhere you have ships.  \n\tzoltar: Well, while I could have just overpowered your last defender, I thought I&#39;d do one more sac and end with a big bang, since you couldn&#39;t do it!\n\nHomeworlds Online (SDG# 3695)\nStarted: 2006.6.20, Ended: 2006.6.25\nParticipants: zoltar (S), Gort (N)\nWinner: Gort\n\n1) Gort: Homeworld G1 Y2 B3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) Gort: Build B1 Gort\n\n4) zoltar: Build G1 Zoltar\n\n5) Gort: Discover B3 Gort Y3 Gorn\n\n6) zoltar: Build G1 Zoltar\n\n7) Gort: Trade B3 G3 Gorn\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) Gort: Build B1 Gort\n\n10) zoltar: Build Y1 Zoltar\n\n11) Gort: Build G1 Gorn\n\n12) zoltar: Discover Y1 Zoltar G3 Hydra\n\n13) Gort: Trade B1 R1 Gort\n\n14) zoltar: Trade G3 R3 Zoltar\n\n15) Gort: Move G3 Gorn Gort\n\n16) zoltar: Build Y2 Zoltar\n\n17) Gort: Build G2 Gorn\n\n18) zoltar: Build G2 Zoltar\n\n19) Gort: M G2 Gorn Zoltar\n\n20) zoltar: Sacrifice Y2 Zoltar\nMove G2 Zoltar Gorn\nMove G1 Zoltar Gorn\n\n21) Gort: S G2 Zoltar\nBuild G2 Gorn\nBuild G2 Gort\nCatastrophe Gorn G\n\n22) zoltar: Build Y2 Hydra\n\n23) Gort: Trade G2 R2 Gort\n\tGort: I thought your previous &quot;undid&quot; move was mugh better. I couldn&#39;t figure out an appropriate response.\n\n24) zoltar: Trade Y1 G1 Zoltar\n\tzoltar: Oh, that was an oversight.  I was afraid that you would destroy one of my homeworld stars if I did the first move.  I had a Y1 and Y2 and a Y1 star in my homeworld.  If I sac my G2 and build Y2 and Y3 in the hydra system, my green tech was safe, but now I was afraid you would trade your G2 for a y2, but all the y2s were used up and I only realized that after I changed the move.  A silly oversight on my part.\n\tGort: it&#39;s cool. You&#39;ll get me in the end. I can sense a disturbance in the fork. :)\n\n25) Gort: Move R2 Gort Hydra\n\n26) zoltar: Sacrifice Y1 Hydra\nMove Y2 Hydra Zoltar\n\n\tzoltar: I&#39;ve already screwed up terribly.  I&#39;m probably quite lost, and it won&#39;t take my move back again.  If I make another ridiculous mistake I&#39;ll resign so we can start over and I can give you a real game. \n\tGort: OK, though I still think you had some options. Never give up! Gort makes mistakes, too! Anyway, Zoltar had Gort on the ropes there for a while. Our robot gaurdians will be kind to your people.\n\tzoltar: In the middle game I wouldn&#39;t give up, but it was the opening and I&#39;d put you four moves ahead, and I&#39;m a beginner so I need the practise and would rather not waste time and just start again, which is what I&#39;d ask to do in an over the board game.             \n\nHomeworlds Online (SDG# 3702)\nStarted: 2006.6.20, Ended: 2007.2.10\nParticipants: Gort (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R2 B1 G3\n\n2) Gort: Homeworld G3 Y1 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Gort: Build B1 Gort\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Gort: Discover B1 Gort G2 Grot\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Gort: Build B1 Grot\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) Gort: B B2 Grot\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Gort: Build B2 Gort\n\n13) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n14) Gort: Trade B2 Y2 Grot\n\n15) TwoShort: Build G1 Twoshort\n\n16) Gort: Trade B2 G2 Gort\n\n17) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n18) Gort: Trade B3 R3 Gort\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Grogar\nBuild Y3 Twoshort\n\n20) Gort: Move B1 Grot Grogar\n\n21) TwoShort: Trade Y2 R2 Bluestar\n\n22) Gort: Build Y2 Grot\n\n23) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Bluestar\n\n24) Gort: Move Y2 Grot Bluestar\n\n25) TwoShort: Move Y3 Bluestar Grot\n\n26) Gort: Sacrifice R3 Gort\nAttack R2 Bluestar\nAttack Y2 Bluestar\nAttack Y1 Grogar\n\n27) TwoShort: Trade Y3 R3 Twoshort\n\n28) Gort: Sacrifice Y2 Grot\nMove Y2 Bluestar Twoshort\nMove R2 Bluestar Twoshort\n\n29) TwoShort: Trade R3 G3 Twoshort\n\n30) Gort: Build B2 Grogar\n\n31) TwoShort: Sacrifice Y1 Twoshort\nDiscover Y3 Grogar B2 Trog\n\n32) Gort: Move B1 Grogar Twoshort\n\n33) TwoShort: Trade Y3 R3 Trog\n\n34) Gort: Sacrifice B2 Grogar\nTrade B1 G1 Twoshort\nTrade R2 G2 Twoshort\n\n35) TwoShort: Sacrifice R3 Trog\nAttack Y2S Twoshort\nAttack G2S Twoshort\nAttack G1S Twoshort\n\n36) Gort: Build Y1 Grogar\n\n37) TwoShort: Trade G2 R2 Twoshort\n\n38) Gort: Sacrifice Y2 Bluestar\nMove Y1 Grogar Grot\nMove Y1 Grogar Grot\n\n39) TwoShort: Move Y3 Grot Gort\n\tGort: Man, I think procrastination is my only reasonable strategy. Sorry.\n\n\nHomeworlds Online (SDG# 3716)\nVariants: &quot;Unrated&quot;\nStarted: 2006.6.21, Ended: 2006.6.27\nParticipants: fnord (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld Y3 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) fnord: Build G1 Fnord\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) fnord: Build G1 Fnord\n\n7) zoltar: Build Y1 Zoltar\n\n8) fnord: Discover G1 Fnord G1 Eris\n\tfnord: hmmm... critical flaw in my plan.\n\n9) zoltar: Build G2 Zoltar\n\n10) fnord: Build G2 Fnord\n\n11) zoltar: Discover Y1 Zoltar G3 Nix\n\n12) fnord: Trade G2 Y2 Fnord\n\n13) zoltar: Build G2 Zoltar\n\n14) fnord: Sacrifice Y2 Fnord\nMove G1 Eris Nix\nMove G1 Nix Zoltar\nCatastrophe Zoltar G\n\n15) zoltar: Build Y2 Nix\n\tfnord: Sorry, but was too tempting to pass up.\n\tzoltar: I never even saw that coming.  I&#39;m still bad at sacrifices, though it&#39;s easier for me to see my own possible sacs but I miss opponents&#39; ones.  I think the game is pretty much over\r\n\n\n16) fnord: Trade G1 R1 Fnord\n\tfnord: I don&#39;t know, you seemed to have used sacrifices well against me.  I didn&#39;t see some of the ones coming that you used against me, though I know I was forced to make moves that wouldn&#39;t let you use others.\n\tfnord: And I wouldn&#39;t say the game is over, I still have a long way to go.\n\n17) zoltar: Build Y2 Nix\n\n18) fnord: Build G1 Fnord\n\tzoltar: Ok, I won&#39;t resign and will play it out -- I doubt I can last more than a few moves.\n\n19) zoltar: Discover Y2 Nix Y2 Hydra\n\n20) fnord: Trade G3 Y3 Fnord\n\tfnord: Interesting defence... deny me Yellow ships, so I can&#39;t cause a catastrophe in your system.  Very ingenious.\n\n21) zoltar: Build Y3 Nix\n\n22) fnord: Sacrifice Y3 Fnord\nDiscover R1 Fnord B1 Discordia\nMove R1 Discordia Nix\nMove R1 Nix Zoltar\n\n23) zoltar: Move Y3 Nix Zoltar\n\n24) fnord: Build G1 Fnord\n\tzoltar: YIKES!\n\tfnord: Foo!  Hadn&#39;t thought of that... thought I had you there.\n\n25) zoltar: Trade Y3 R3 Zoltar\n\n26) fnord: Discover R1 Zoltar G3 Route\n\n27) zoltar: Build Y3 Nix\n\n28) fnord: Trade G1 R1 Fnord\n\n29) zoltar: Move Y3 Nix Zoltar\n\tzoltar: I&#39;m still not quite out of the hole, but seeing that I could defend, your sac nullified your advantage, and a slow build up instead would have kept you in the lead, as it would be longer for me to get green ships again.\n\n30) fnord: Build G1 Fnord\n\n31) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: Now I&#39;m threatening to sac my Y3 and move my big gun into your homeworld!!!  What a turn of events!\n\tfnord: Possibly.  I was likely blinded by not wanting to risk building up slowly and letting you pull something out of your hat like you&#39;ve done before, so I tried for the quick kill.\n\n32) fnord: Build R1 Route\n\tzoltar: Well, I&#39;m going to learn from your mistake and pass by a possible quick kill and strengthen my position.  I&#39;m going to be away from my computer and will move again in an hour or so.\n\n33) zoltar: Build Y3 Zoltar\n\n34) fnord: Build R2 Route\n\n35) zoltar: Move R3 Zoltar Route\nCatastrophe Route R\n\n36) fnord: Build R1 Fnord\n\tzoltar: Looks like a fair trade to me, leaving me with a monopoly on the wormhole technology...\n\tzoltar: My super-safe defensive build-up play is working better that I had imagined.\n\n37) zoltar: Trade Y3 R3 Zoltar\n\tfnord: No, not exactly a monopoly...  I can get out of my system, I just can&#39;t go anywhere else.\n\n38) fnord: Discover G1 Fnord G1 Kallisti\n\n39) zoltar: Build G2 Zoltar\n\tfnord: Another lesson... make at least one of your homeworld stars a 1-point, so that you have a better chance of creating stars one step away from your homeworld in the mid-game.\n\n40) fnord: Build G2 Fnord\n\n41) zoltar: Build Y3 Zoltar\n\n42) fnord: Discover G1 Fnord B1 Sink\n\tzoltar: Actually, I just learned today that the most preferable setup for the first player is a 1-point star and a 2-point star, with colors y &amp; b (either combination) with a g3 ship, and then you have more control over the 3-point pieces later in the game when you create stars one-step from your homeworld. \n\n43) zoltar: Trade Y3 R3 Zoltar\n\n44) fnord: Move R1 Fnord Sink\n\tfnord: seems good, though you&#39;ve put Y3 ships to good use often enough.\n\n45) zoltar: Build Y3 Zoltar\n\n46) fnord: Build G2 Sink\n\n47) zoltar: Build G3 Zoltar\n\n48) fnord: Build R1 Fnord\n\n49) zoltar: Sacrifice Y3 Zoltar\nMove R3 Zoltar Nix\nMove R3 Nix Sink\nMove R3 Zoltar Nix\n\tfnord: Yeah, couldn&#39;t figure out how to get that G3. *sigh*\r\nAnd you were worried about being out of the game.  *chuckle*\n\tzoltar: Yes, your sac backfired terribly.  I notice that had your sac sent an R3 rather than a puny R1 into my homeworld, the game would be over.  Shows how important the big ships are.\n\n50) fnord: Sacrifice G2 Sink\nBuild R2 Sink\nBuild R2 Sink\nCatastrophe Sink R\n\n51) zoltar: Trade G2 B2 Zoltar\n\tfnord: Yeah, but back then I couldn&#39;t have gotten an R3, and by the time I could have gotten to it, you would have had a 3 ship as well, most likely.  Well, it certainly was worth a try.\n\n52) fnord: Build G2 Sink\n\tzoltar: Nice move!  That ruined my plans....\n\n53) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild Y3 Nix\n\n54) fnord: Move R1 Fnord Kallisti\n\tfnord: Thank you... it was a desperation move, that&#39;s for sure.\r\n\n\n55) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Hydra\nBuild B1 Zoltar\n\n56) fnord: Build R1 Fnord\n\n57) zoltar: Sacrifice Y3 Hydra\nMove B2 Zoltar Nix\nMove G2 Zoltar Nix\nMove G2 Nix Hydra\n\n58) fnord: Build R2 Kallisti\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild G3 Hydra\nBuild Y3 Hydra\nBuild R2 Nix\n\n60) fnord: Sacrifice G2 Fnord\nBuild R2 Fnord\nBuild R3 Fnord\n\tzoltar: The Death Star is nearing completion...\n\n61) zoltar: Sacrifice G3 Hydra\nBuild G2 Zoltar\nBuild R3 Nix\nBuild B1 Nix\n\n62) fnord: Move R2 Fnord Sink\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Hydra\nBuild G3 Hydra\nBuild B3 Nix\n\n\n64) fnord: Move R1 Fnord Sink\n\n65) zoltar: Sacrifice B3 Nix\nTrade G3 B3 Hydra\nTrade R3 G3 Nix\nTrade G3 R3 Hydra\n\n66) fnord: Build G3 Sink\n\n67) zoltar: Sacrifice G3 Nix\nBuild G3 Hydra\nBuild B3 Hydra\nBuild B3 Hydra\n\tfnord: Whoops... Just noticed I had 4 reds in my homeworld...  better move one.\n\n68) fnord: Pass\n\n69) zoltar: Move Y3 Hydra Kallisti\n\tzoltar: I saw that too, but simply passing and blowing them seemed pretty rude, so I just went ahead with my play to grab most of the pieces before I attack...\n\tzoltar: I just lost a game 1 minute ago to TwoShort with very few pieces on the board (just the two original homeworlds and 4 of his pieces left in the final position) -- I suppose the minimum possible would be to blow up your opps homeworld and have one piece left in your homeworld with only one star.  This is the opposite of that game in just about every way possible -- I wonder if I can win with every piece on the board, all owned by me! \n\n70) fnord: Sacrifice G3 Sink\nBuild G3 Kallisti\nPass\nPass\n\n71) zoltar: Sacrifice R2 Nix\nAttack G3 Kallisti\nAttack G1 Kallisti\n\tzoltar: ok -- you get one and I get the last two!\n\n72) fnord: Build R2 Sink\n\n73) zoltar: Sacrifice R3 Hydra\nAttack R2 Kallisti\nAttack R1 Kallisti\nPass\n\tzoltar: Yay! The stash is depleted and I think I have you slightly outnumbered.\n\tfnord: Just a bit...\n\n74) fnord: Pass\n\n75) zoltar: Sacrifice G3 Kallisti\nBuild G3 Zoltar\nBuild R3 Nix\nPass\n\n76) fnord: Pass\n\n77) zoltar: Move R1 Kallisti Hydra\n\n78) fnord: Pass\n\tzoltar: Soon kallisti will be MINE!  All Mine!!!!!!!!!!!!!!!  \r\n(Demonic Laugh)\n\n79) zoltar: Move G1 Kallisti Nix\n\n80) fnord: Pass\n\n81) zoltar: Move R3 Nix Hydra\n\n82) fnord: Sacrifice G1 Sink\nPass\n\tfnord: Hmmm.... now that I think about it, maybe you should have resigned earlier in the game.  *grin*\n\n83) zoltar: Build G1 Zoltar\n\n84) fnord: Pass\n\tzoltar: I want more pieces!\n\n85) zoltar: Move R1 Hydra Sink\nCatastrophe Sink R\n\n86) fnord: Pass\n\tzoltar: Prepare to be boarded, Earthling!\n\n87) zoltar: Move R3 Hydra Sink\n\tzoltar: m r3 nix hydra\n\n88) fnord: Pass\n\tzoltar: The fleet is now in position for the assault on sink!\n\n89) zoltar: Attack G2 Sink\n\n90) fnord: Pass\n\n91) zoltar: Sacrifice G3 Zoltar\nBuild G3 Sink\nBuild R1 Kallisti\nBuild R1 Sink\n\n92) fnord: Pass\n\n93) zoltar: Sacrifice G3 Hydra\nBuild G3 Sink\nBuild R2 Nix\nBuild R2 Nix\n\n94) fnord: Pass\n\n95) zoltar: Move Y3 Nix Sink\n\n96) fnord: Pass\n\n97) zoltar: Move R1 Kallisti Fnord\n\tzoltar: Sink has been annexed to zee Zoltarian empire!\n\n98) fnord: Move R1 Fnord Sink\n\n99) zoltar: Move R1 Sink Fnord\n\n100) fnord: Attack R1 Fnord\n\tzoltar: My starfleet is now complete!  You are surrounded!\n\n101) zoltar: Move R2 Kallisti Fnord\nCatastrophe Fnord R\n\n\tzoltar: Well, that was fun, but I didn&#39;t get to end the game with all the pieces on the board, and all mine. :)\n\nHomeworlds Online (SDG# 3696)\nStarted: 2006.6.22, Ended: 2006.6.23\nParticipants: Keith (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 Y2 G3\n\tKeith: Hello Zoltar.  I have played two unrated learning games with experts and I am now playing my first rated game (which I limited to an opponent not one of the top ten ranked players).\n\n2) Keith: Homeworld B3 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Keith: Build G1 Keith\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Keith: Trade G1 B1 Keith\n\tzoltar: Hi Keith.  I&#39;ve lost every game to experts, and have won 2 unrated games against another brand new player.  I&#39;m still getting a basic feel for the game, but I like it a lot.\n\n7) zoltar: Build Y1 Zoltar\n\n8) Keith: Discover B1 Keith G2 Midworld\n\n9) zoltar: Discover Y1 Zoltar G3 Nix\n\n10) Keith: Build G1 Keith\n\n11) zoltar: Build Y2 Nix\n\n12) Keith: Trade G1 B1 Keith\n\tKeith: You do seem to have grasped the concept of color denial... like yellow.\n\n13) zoltar: Build Y2 Zoltar\n\tzoltar: Well, I was trying to get to the larger size upgrades faster than you, and yellow seemed to be the shortest path, so I got the first medium sized ship.  In my game against good players, they literally get 2 ships for 1 of mine and I find myself hopelessly outnumbered by the middlegame.  Don&#39;t quite know how I get tricked -- I&#39;ll have to review my games.  For now, I&#39;m going for grabbing the bigger ships first.\n\n14) Keith: Build B2 Midworld\n\tKeith: I did review your games before accepting your challenge.  TwoShort is the top ranked player and quite adept at getting a factory up and running with safe places to build in.  That and TwoShort&#39;s willingness to give advice in an unranked game is why I chose TwoShort for one of my mentoring/learning games.\n\n15) zoltar: Build Y3 Nix\n\n16) Keith: Trade B1 R1 Keith\n\n17) zoltar: Trade Y2 R2 Zoltar\n\n18) Keith: Trade B2 Y2 Midworld\n\tzoltar: I have learned that as soon as your opponent gets a red, get a red immediately somewhere, or else you will get bushwhacked!\n\tKeith: That is true.  More importantly (for me) it puts me in the yellow game.\n\n19) zoltar: Move Y3 Nix Midworld\n\tzoltar: I&#39;m confused as to how getting a red puts you in the yellow game, as it seems about the same if we both have a red or if neither of us does -- I hope I haven&#39;t missed something big!\n\tKeith: To get a red you had to trade a yellow for it (or your G3 and temporarily give up a factory effort).  Then I picked up that yellow.\n\n20) Keith: Build B1 Midworld\n\tzoltar: now that you have a yellow, I have to worry about you blowing up all my yellows if I would have let you join the party at nix!  Two games ago I might have missed that, but now I&#39;m older and wiser! \n\n21) zoltar: Sacrifice R2 Zoltar\nAttack Y2 Midworld\nAttack B1 Midworld\n\n22) Keith: Build B2 Midworld\n\tzoltar: I&#39;m back in the Yellow business again!\n\tKeith: Hey...what happend to the theory of having a red ship if I have one?   In other words I did not think of your doing that.\n\n23) zoltar: Build B2 Midworld\nCatastrophe Midworld B\n\n24) Keith: Build G1 Keith\n\tzoltar: Well, I&#39;m playing &quot;Palestinian style&quot;, and I can always grow a red back again.  After all the destruction, I end up once again with -- Yellow!\n\n25) zoltar: Build Y3 Zoltar\n\n26) Keith: Build R1 Keith\n\n27) zoltar: Trade Y3 R3 Zoltar\n\tzoltar: t y3 r3 zoltar\n\n28) Keith: Discover G1 Keith B2 Bell\n\tzoltar: ok, ok, I get the message -- reds it is!\n\tzoltar: I have to go will move again later this evening!\n\n29) zoltar: Build Y3 Zoltar\n\n30) Keith: Build G1 Keith\n\tKeith: You now have a 4 to 1 lead in large ships and an 8 to 4 lead in ships overall.  It should be just a matter of time before you figure out how to defeat me.\n\n31) zoltar: Trade Y3 R3 Zoltar\n\tzoltar: t y3 r3 zoltar\n\tzoltar: Yes, I&#39;m usually on the other end of this situation, so I&#39;ll do what the good players do against me and play solid and slowly consolodate my lead\n\n32) Keith: Discover G1 Keith B2 Bird\n\n33) zoltar: Build Y3 Zoltar\n\n34) Keith: Build G1 Keith\n\n35) zoltar: Build G2 Zoltar\n\n36) Keith: Trade G3 Y3 Keith\n\n37) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Nix Midworld\nMove Y1 Midworld Keith\nMove Y2 Midworld Keith\nCatastrophe Keith Yellow\n\n\n38) Keith: Build G2 Keith\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Midworld\n\n40) Keith: Trade R1 Y1 Keith\n\tKeith: Which is why I had been hesitant to trade for a Y3.  Growing another imobile green ship wasn&#39;t working for me either.\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Nix\nBuild Y3 Nix\n\tzoltar: Yup, I figured if you stopped me from taking the Y3, I could cause another catastrophe and then start building my yellows again from scratch, but now my big ships outnumber you 4-0\n\n42) Keith: Move G1 Keith Zoltar\nCatastrophe Zoltar Green\n\n43) zoltar: Move R3 Zoltar Keith\n\n44) Keith: Sacrifice G2 Keith\nBuild R1 Keith\nBuild R1 Keith\nCatastrophe Keith Red\n\n45) zoltar: Sacrifice Y3 Nix\nMove Y1 Midworld Keith\nMove Y3 Midworld Keith\nMove R3 Zoltar Keith\n\tKeith: Probably just a defiant gesture on my way out.\n\tKeith: Probably just a defiant gesture on my way out.\n\n46) Keith: Trade Y1 R1 Keith\n\tzoltar: I never saw that coming, as I forgot that by rudely blowing up one of your stars, your homeworld is just a step away.  Of course, that also means it&#39;s a step away for my red battlecruisers, and in big ships I still have the edge...\n\tKeith: A big red enemy battle cruiser at my homeworld is a disadvantage to pointing out our homeworlds are now adjacent.  At least I reduced the big ship ratio from 6 to 0 to 4 to 0... on my way out.  You still have a huge advantage.\n\tKeith: I have to head off for a 12 hour work shift. \n\tzoltar: Yes, I think it&#39;s checkmate in 2 moves\n\tKeith: I was not sure how long I could wait before you noticed the adjacent homeworlds or started moving green ships out.  I thought about building the Y3 at keith and seeing if you went for another destruction cycle.  That would have put large ship ratios at 3 to 0 if I still was able to pull off the green catastrophe at Zoltar. \n\n47) zoltar: Attack R1 Keith\n\tzoltar: Very nice defence!\n\n\tzoltar: Good Game, my first rated win ever!  Play again?\n\tKeith: Hey, I made it to move 47!  Very good game.  You had me in trouble from very early on.  Yes I would like to play again.\n\tzoltar: Most of my games have been against good players who have me outplayed from the 3rd move and it only gets worse.  It&#39;s great practice for me to play with another beginner so I can learn to attack and press an advantage when I get one.  So let&#39;s play again; the practice will help us both learn the tricks to this clever game.\n\nHomeworlds Online (SDG# 3721)\nStarted: 2006.6.23, Ended: 2006.6.23\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R3 G3\n\n2) zoltar: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Build Y1 Twoshort\n\n10) zoltar: Build Y2 Zoltar\n\n11) TwoShort: Discover Y1 Twoshort G1 Gloria\n\n12) zoltar: Discover Y1 Zoltar G3 Hydra\n\n13) TwoShort: Discover Y1 Gloria B3 Borbor\n\n14) zoltar: Trade Y2 B2 Zoltar\n\n15) TwoShort: Build Y2 Twoshort\n\n16) zoltar: Build B1 Zoltar\n\n17) TwoShort: Discover Y1 Twoshort G1 Gonzo\n\n18) zoltar: Trade B2 R2 Zoltar\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Borbor\nBuild Y3 Twoshort\nBuild Y3 Borbor\n\n20) zoltar: Build Y3 Hydra\n\n21) TwoShort: Move Y2 Borbor Zoltar\n\n22) zoltar: Trade G1 B1 Zoltar\n\tzoltar: Nice move -- my y2 star is dead whether I capture your ship or not.  \n\tzoltar: Oh wow and if I build a g2, you can even sack your y3 and take out all my green, and blow up my star the next turn!\n\n23) TwoShort: Trade Y2 B2 Zoltar\nCatastrophe Zoltar Blue\n\tTwoShort: Well, if you liked that, you&#39;ll love this... :)\n\n24) zoltar: Build Y2 Hydra\n\tzoltar: Whoa! Never saw that one coming!  Wow!\n\n25) TwoShort: Move Y3 Borbor Zoltar\n\tzoltar: Uh-oh, it looks like checkmate if you sac your y3 in your homeworld to move the other 3 yellow ships into my homeworld.  At least I saw this one coming, even though there is no defence...\n\n26) zoltar: Sacrifice Y3 Hydra\nMove R2 Zoltar Borbor\nMove Y2 Hydra Zoltar\nMove Y1 Hydra Zoltar\nCatastrophe Zoltar Y\n\tzoltar: I don&#39;t get it -- was I wrong?  Wouldn&#39;t have sacrifing your Y3 in your homeworld to move the y1 from Gonzo and the y1 and y3 from BorBor all to Zoltar have blown up my star?  Well if you won&#39;t -- I will!\n\tTwoShort: the y1 at Gonzo would have had to move to a 3 first, and from there to your homeworld, using up 2 moves.  Next turn I could do that, and the y1 from BorBor.  It was still checkmate, it just needed 2 turns to make the 4 moves required.\n\tzoltar: I -still- don&#39;t get it!  Gonzo was a G1 star, and my remaining home star was a Y2 star, so why couldn&#39;t the y1 at Gonzo move directly into my homeworld in one step? \n\tTwoShort: Because I&#39;m an idiot :)  You&#39;re absolutely right.  I had been planning how to move in the yellows before I got the chance to blow up the blue first, and never adjusted my thinking.\n\n\nHomeworlds Online (SDG# 3725)\nStarted: 2006.6.23, Ended: 2006.6.26\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R3 B3 *\n\tTwoShort: Here, you can go first this time...\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) TwoShort: Trade B3 G3 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n5) TwoShort: Build G1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build Y1 Zoltar\n\n9) TwoShort: Trade G3 Y3 Twoshort\n\n10) zoltar: Trade Y1 G1 Zoltar\n\tTwoShort: Nice move\r\n\n\n11) TwoShort: Discover G1 Twoshort B1 Bonanza\n\n12) zoltar: Build G2 Zoltar\n\tzoltar: Thanks -- couldn&#39;t let you get that factory going\n\n13) TwoShort: Build G2 Bonanza\n\n14) zoltar: Discover G1 Zoltar Y3 Nix\n\n15) TwoShort: Trade G2 Y2 Bonanza\n\n16) zoltar: Discover G2 Zoltar Y3 Hydra\n\n17) TwoShort: Trade Y3 G3 Twoshort\n\n18) zoltar: Build G2 Zoltar\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n20) zoltar: Move G2 Hydra Bonanza\n\tzoltar: I suppose you can factory here and get an extra build as well as take all the greens that are left, but what else could I do?  Yet again, I feel utterly lost at this point in the game.  Am I missing any key concepts here?\n\tTwoShort: At this point I can take the remaining greens, and that&#39;s it (which I may).  Often there are moves where you can&#39;t do anything right away, and you want to think about what things you could be threatening to do in the future.  Ideally, I want to advance as many potential agendas as possible.  You could advance a green, so as to threaten disater in my homeworld if I grow a third.  You could threaten the same thing with a 2 point yellow, so you might move your 1 point out to somewhere you can safely grow (it won&#39;t have to be green if the factories come on line); that would also help burn through the yellows.  If the 1 &amp; 2 yellows are gone, you&#39;ll be able to sacrifice your g&#39;s at Nix and/or hydra to grow the system markers as ships.  That&#39;s a strategy called &quot;cashing an investment&quot;.  The key concept at this point is who winds up with more 3 point ships as the first couple colors run out.  And of course, not letting the other guy surprise you and blow up your homeworld :)\n\n21) TwoShort: Trade G3 Y3 Twoshort\n\n22) zoltar: Sacrifice G2 Zoltar\nBuild G2 Bonanza\nBuild G3 Zoltar\nCatastrophe Bonanza G\n\n23) TwoShort: Move G1 Twoshort Bonanza\n\n24) zoltar: Build G1 Nix\n\tzoltar: I suppose that was my only reasonable defence -- Well at least I have 2 big ships like you and I&#39;m only behind one ship for now...\n\tTwoShort: Good move.  I only saw it after my move and was wondering if you would. \n\n25) TwoShort: Build G2 Twoshort\n\n26) zoltar: Discover G1 Nix Y1 Hydra\n\n27) TwoShort: Build G2 Bonanza\n\n28) zoltar: Discover Y1 Zoltar B3 Charon\n\n29) TwoShort: Move G2 Bonanza Charon\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G2 Hydra\nBuild G3 Nix\nBuild Y2 Charon\n\n31) TwoShort: Trade G2 R2 Twoshort\n\n32) zoltar: Sacrifice G3 Nix\nBuild G2 Zoltar\nBuild G3 Nix\nBuild Y2 Charon\n\n33) TwoShort: Build Y3 Bonanza\n\n34) zoltar: Trade G2 R2 Zoltar\n\n35) TwoShort: Sacrifice R2 Twoshort\nAttack Y2S Charon\nAttack Y2S Charon\n\n36) zoltar: Move G3 Nix Bonanza\n\n37) TwoShort: Sacrifice Y3 Bonanza\nMove Y2 Bonanza Charon\nMove Y2 Charon Zoltar\nMove Y2 Charon Zoltar\n\n38) zoltar: Move G1 Hydra Twoshort\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild G2 Bonanza\nBuild G3 Charon\n\n40) zoltar: Sacrifice G3 Bonanza\nBuild G3 Zoltar\nBuild R1 Zoltar\nBuild R1 Zoltar\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Bonanza Charon\nMove G1 Charon Zoltar\nMove G2 Charon Zoltar\nCatastrophe Zoltar Green\n\n42) zoltar: Attack Y2 Zoltar\n\tzoltar: Never saw the Yellow attack coming, as usual...\n\tTwoShort: Well, it&#39;s an attack out of semi-desperation; destroying half your homeworld doesn&#39;t finish you off, and leaves you with an advantage in ships...  but with you presuring me with your sacrificeable red threat, it seemed like time to use &#39;em or lose &#39;em.  So now it&#39;s a question of whether you can take control before I can get together the blues to finish you.  Of course, you&#39;re not forcing me to pull the trigger on the yellow catastrophe, so I naturally think about whether it&#39;s better to wait; and that 1 pointer in my homeworld certainly makes me nervous, though so far I don&#39;t see how it can do more than take out my G3, which would be painful, but I think recoverable so long as I keep the other 3 there and some green elsewhere.  In short, you have hearby graduated from &quot;enthusiastic beginner&quot; to &quot;interesting opponent&quot;...  So now I need to think a bit to figure out what to do here.\n\n43) TwoShort: Trade Y2 R2 Zoltar\nCatastrophe Zoltar Red\n\tzoltar: Well, I&#39;m afraid I haven&#39;t a clue what to do here, nor how to attack, and you&#39;ve sidestepped my green threat, so I suppose I&#39;ll sleep on it and look at the position tomorrow.  And thanks, I&#39;m glad I&#39;m putting up a bit of a fight, as I was worried I was going to be boring you after a while; I hope I can make things interesting.  My goal now is to knock out one of your stars before I die!\n\n44) zoltar: Sacrifice G1 Twoshort\nBuild Y2 Charon\n\n45) TwoShort: Move G3 Charon Zoltar\n\n46) zoltar: Sacrifice G1 Nix\nBuild Y3 Charon\nCatastrophe Charon Y\n\n47) TwoShort: Trade G2 R2 Bonanza\n\n48) zoltar: Move G2 Hydra Twoshort\n\tTwoShort: woops, missed your undo there\n\n49) TwoShort: Sacrifice R2 Bonanza\nAttack G2S Twoshort\nAttack Y2S Zoltar\n\n\tTwoShort: Cool, this way I get to take all your ships :)  Anyway, I&#39;ll be happy to play again, but probably not until this evening...\n\nHomeworlds Online (SDG# 3728)\nStarted: 2006.6.23, Ended: 2006.6.25\nParticipants: zoltar (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld B2 R3 G3\n\n3) Keith: Build G1 Keith\n\n4) zoltar: Build G1 Zoltar\n\n5) Keith: Trade G1 Y1 Keith\n\n6) zoltar: Build G1 Zoltar\n\n7) Keith: Build Y1 Keith\n\tKeith: A red homeworld star.  Did you pick that up from TwoShort?\n\n8) zoltar: Trade G3 Y3 Zoltar\n\n9) Keith: Discover Y1 Keith G3 Greenleaf\n\n10) zoltar: Build Y2 Zoltar\n\n11) Keith: Build Y2 Greenleaf\n\n12) zoltar: Discover G1 Zoltar B1 Betazed\n\n13) Keith: Discover Y1 Greenleaf B2 Bell\n\n14) zoltar: Move Y2 Zoltar Betazed\n\n15) Keith: Discover Y1 Keith G3 Midworld\n\n16) zoltar: Build Y2 Betazed\n\tKeith: Well it seemed like a good idea at the time.  Grab the last three yellows with two y3s.  But you could sacrifice your y3, move your y2 to Keith and instant win.\n\n17) Keith: Build G1 Keith\n\tzoltar: Yes, I&#39;ve lost just that way before!  Sacrifices are the easiest moves to miss and get blindsided by.\n\n18) zoltar: Trade Y2 R2 Betazed\n\n19) Keith: Sacrifice G3 Keith\nBuild Y2 Bell\nBuild Y3 Greenleaf\nBuild Y3 Midworld\n\n20) zoltar: Trade Y3 R3 Zoltar\n\tKeith: You just had to go and pull a gun.\n\tzoltar: I&#39;m gonna blast&#39;ya!\n\tKeith: I have to think about this and I have to get up in 6 hours so I will be at it again tomorrow.\n\tzoltar: Ok, goodnight, will look forward to part 2 tomorrow.\n\n21) Keith: Move Y3 Greenleaf Keith\n\n22) zoltar: Build Y3 Betazed\n\n23) Keith: Sacrifice Y2 Bell\nMove Y1 Bell Betazed\nMove Y1 Midworld Betazed\nCatastrophe Betazed Yellow\n\tzoltar: Looks like I had pulled the gun in the wrong place -- this is where I need it.\n\n24) zoltar: Build G2 Betazed\n\n25) Keith: Build G2 Keith\n\n26) zoltar: Trade R2 Y2 Betazed\n\n27) Keith: Trade G1 R1 Keith\n\n28) zoltar: Trade G2 Y2 Betazed\n\n29) Keith: Build R1 Keith\n\n30) zoltar: Discover Y2 Betazed G3 Balderdash\n\n31) Keith: Build R1 Keith\n\n32) zoltar: Build Y1 Balderdash\n\n33) Keith: Trade Y3 B3 Keith\n\n34) zoltar: Build Y1 Balderdash\n\n35) Keith: Move G2 Keith Balderdash\n\n36) zoltar: Build Y3 Betazed\n\n37) Keith: Sacrifice R1 Keith\nAttack Y2 Balderdash\n\n38) zoltar: Sacrifice Y2 Betazed\nMove Y1 Balderdash Keith\nMove Y1 Balderdash Keith\n\n39) Keith: Attack Y1 Keith\n\n40) zoltar: Sacrifice G1 Zoltar\nBuild Y2 Keith\nCatastrophe Keith Y\n\n41) Keith: Sacrifice Y2 Balderdash\nMove R1 Keith Betazed\nMove R1 Betazed Zoltar\n\tKeith: This has been an excellent struggle.  Sorry but I must head off to a nine hour workshift.\n\n42) zoltar: Trade R3 Y3 Zoltar\n\tzoltar: Ok, maybe we can continue late tonight -- I think I&#39;m losing.  I can at least force the supernova of one of your stars, but it has been at considerable cost.  Whether or not that can compensate for your lead in development we&#39;ll soon see.\n\tKeith: I have a development lead but so far I am not on offense.  All my ships are at least two away from your homeworld and my ship colors are not much of a catastrophe threat to your homeworld stars.\n\n43) Keith: Sacrifice G2 Balderdash\nBuild R1 Zoltar\nBuild R2 Zoltar\nCatastrophe Zoltar Red\n\tKeith: I think I can make it difficult for you to get that fourth yellow at my homeworld.\n\n44) zoltar: Build G1 Betazed\n\tKeith: Or maybe not.  An expensive catastrophe indeed.  A y2, y1, y1, and g1 of yours.  Though I did waste a turn converting your y1.\n\n45) Keith: Move Y3 Midworld Zoltar\n\n\tzoltar: Oh you&#39;re right, I meant to change my Y3 back to red, but I spaced out.  Good game.  Play again?\n\tKeith: Yes we should play again.  If you had changed your Y3 back to a R3 then I could have moved my R1 in an catastrophied all the ships at your homeworld.\n\nHomeworlds Online (SDG# 3735)\nStarted: 2006.6.25, Ended: 2006.6.26\nParticipants: zoltar (S), Keith (N)\nWinner: zoltar\n\n1) Keith: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Keith: Build Y1 Keith\n\n4) zoltar: Build G1 Zoltar\n\n5) Keith: Build Y1 Keith\n\n6) zoltar: Discover G1 Zoltar G1 Gamma\n\n7) Keith: Discover Y1 Keith Y3 Brickroad\n\n8) zoltar: Build G2 Zoltar\n\n9) Keith: Trade Y1 R1 Keith\n\n10) zoltar: Trade G2 R2 Zoltar\n\n11) Keith: Build Y1 Keith\n\tzoltar: Aggression on only the 4th move, eh?\n\tKeith: I was trying to keep you away from a y2.  Since in our first game you taught me how inconvenient it can be to be yellow poor (or broke).  Besides, it was only a little one.  A defensive move.\n\n12) zoltar: Build G2 Zoltar\n\n13) Keith: Trade Y3 G3 Keith\n\tKeith: Once again you are racing up a color track while I struggle to get one.\n\n14) zoltar: Build G2 Gamma\n\n15) Keith: Build G2 Keith\n\tzoltar: Well, you ended up kicking my butt last game, so I&#39;m not so confident.\n\tKeith: I am going to have to shut it down for the night soon.  It is 1:3AM where I am and I have a fence to build tomorrow in the cool of the morning before it get hot.  BTW what time is it where you are?\n\tzoltar: And I&#39;m sure you&#39;ll send some jihadist into the delta quadrant and blow up all my extra greens before I can do anything about it.\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Zoltar\n\tzoltar: It&#39;s also 1:35 a.m. here too!  We must be located in the same Star System.  I live on Sol-3 in the Milky Way Galaxy.  How about you? :)\n\n17) Keith: Build Y1 Keith\n\n18) zoltar: Trade G2 Y2 Zoltar\n\tKeith: Sol-3 North American continent\n\n19) Keith: Trade G3 Y3 Keith\n\n20) zoltar: Sacrifice Y2 Zoltar\nMove G2 Gamma Brickroad\nMove R1 Zoltar Gamma\n\tzoltar: I&#39;m in Greenbelt of the Milky Way\n\tKeith: Greenbelt?\n\tKeith: Maryland?\n\n21) Keith: Move Y3 Keith Brickroad\n\tKeith: And here I was all set to sacrifice my Y3 to eliminate your G3s and give us a game with no large ships in play.\n\tKeith: This looks like a good point to stop and think.  That and it is 2:00AM.\n\tzoltar: Yes, the one in Maryland, not the one on Beta Lyra.\n\tzoltar: Ok, goodnight.  Hopefully we can continue tomorrow.\n\tKeith: Whitsett, North Carolina is my location.  Tomorrow night then if not sooner.\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G2 Brickroad\nBuild G3 Zoltar\nBuild G3 Gamma\n\n23) Keith: Move R1 Keith Brickroad\n\n24) zoltar: Sacrifice R1 Gamma\nAttack R1 Brickroad\n\n25) Keith: Trade Y1 R1 Keith\n\tKeith: Duh!  Should not have moved tired.  Now I have a crises.\n\n26) zoltar: Attack Y1 Brickroad\n\tzoltar: Attack!\n\tKeith: Back in about 1/2 an hour.\n\n27) Keith: Sacrifice R1 Keith\nAttack R1 Brickroad\n\tzoltar: The Yellow Brick Road will soon be mine!  Next stop, Oz!  Whew Who!\n\n28) zoltar: Sacrifice G2 Brickroad\nBuild Y1 Brickroad\nBuild G2 Zoltar\nCatastrophe Brickroad Y\n\n29) Keith: Build G2 Keith\n\tzoltar: Elton John&#39;s &quot;Goodbye Yellow Brick Road&quot; plays in the background as splinters of Yellow Bricks go flying in all directions....\n\tKeith: Oh wow.  One mistake after another on my part.  Somehow I had the idea I was safe from a yellow catastrophe.  Three large ships to my none.  Six ships to my two.  The end is just a matter of time.  I will hold off a turn or two before I resign.\n\n30) zoltar: Trade G3 Y3 Zoltar\n\n31) Keith: Trade G2 R2 Keith\n\tzoltar: Yes, I was going to move my g2 into your homeworld, and then if you captured it, move the other g2 in and blow up your star; or if you captured the other g2 on BrickRoad, sac my g1 on gamma and rebuild it in your homeworld and still blow up the star.  But with my g2 ship and my y1 I could build the 4th yellow to supernova; furthermore I had a finesse by sacking the g2, building the y1, and then rebuilding the (would be) doomed g2 back in my homeworld, thus giving me yet another piece.  The overwhelming lead in development now is surely better than knocking out your green star but leaving you with lots of ships and counterplay.  \n\tzoltar: Had you captured my y1 (to stop me from supernoving the Y3 star) instead of my r1, then with my r1 I could have captured it right back, except that you sacked an r1 for the attack and I didn&#39;t, so that we&#39;re in the same position again except you&#39;re missing your r1 (ditto with capturing a g2 instead).  I think your only defence was to run back your y3 to your homeworld  2 moves ago.  Now I&#39;m really getting why they say always leave a 3-pip ship in your homeworld unless you have an extraordinary good reason to move or sac it. \n\n32) zoltar: Trade G3 B3 Zoltar\n\tKeith: I am going to take a quick time out to issue some Cannon challanges now that is back online.\n\n33) Keith: Build Y1 Keith\n\tzoltar: Well, you can play with your cannons -- I&#39;m going to get one of each color so I have a complete team, and a solid base to build my forces!\n\n34) zoltar: Build R1 Zoltar\n\n35) Keith: Discover G2 Keith B3 Velvet\n\n36) zoltar: Sacrifice G3 Gamma\nBuild G2 Gamma\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n37) Keith: Build G3 Velvet\n\n38) zoltar: Sacrifice Y3 Zoltar\nMove R2 Zoltar Gamma\nMove G2 Gamma Velvet\nMove G1 Gamma Velvet\nCatastrophe Velvet G\n\n39) Keith: Trade Y1 G1 Keith\n\n40) zoltar: Discover G2 Zoltar Y1 Mellow\n\tzoltar: A Palestinian wearing a backpack was last seen on Blue Velvet, with a Koran in one hand and a push-button detonator in the other...\n\n41) Keith: Build G2 Keith\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Mellow\n\n43) Keith: Trade G2 Y2 Keith\n\n44) zoltar: Sacrifice B3 Zoltar\nTrade G3 Y3 Zoltar\nTrade G3 R3 Zoltar\nTrade R1 B1 Zoltar\n\n45) Keith: Discover G1 Keith Y3 Macadam\n\n46) zoltar: Build R1 Zoltar\n\n47) Keith: Build G2 Macadam\n\n48) zoltar: Sacrifice G3 Mellow\nBuild G3 Mellow\nBuild G3 Zoltar\nBuild B1 Zoltar\n\tKeith: I ended up building fences from my mid-day move until dark.  I am about ready to crash and I am going to sign off until mid-morning.\n\n49) Keith: Trade Y1 B1 Keith\n\tzoltar: Ok, we&#39;ll continue tomorrow then!\n\n50) zoltar: Discover G3 Zoltar Y1 Submarine\n\n51) Keith: Build B2 Keith\n\n52) zoltar: Sacrifice Y3 Zoltar\nMove B1 Zoltar Submarine\nMove B1 Submarine Macadam\nMove B1 Macadam Keith\nCatastrophe Keith B\n\n53) Keith: Build G3 Macadam\n\n54) zoltar: Move G2 Mellow Macadam\nCatastrophe Macadam G\n\n55) Keith: Build Y1 Keith\n\n56) zoltar: Move R3 Zoltar Keith\n\n57) Keith: Build R1 Keith\n\n58) zoltar: Sacrifice R2 Gamma\nAttack Y2 Keith\nAttack Y1 Keith\n\tzoltar: The Death Star is now fully functional.  \r\n&quot;We have the rebel base in sight.&quot;\n\n59) Keith: Build R1 Keith\n\n60) zoltar: Sacrifice G3 Mellow\nBuild R2 Keith\nBuild Y1 Keith\nBuild Y2 Keith\nCatastrophe Keith Y\nCatastrophe Keith R\n\n\tKeith: I think you are going to have to blow up your own Death Star.\n\tzoltar: But this happens to be a Palestinian Death Star!  Engage self-destruct sequence!  Fire!  Play again?\n\tKeith: Yes, play again.  Though at this point I will have five Cannon games competing for my play time.\n\nHomeworlds Online (SDG# 3717)\nStarted: 2006.6.25, Ended: 2006.7.15\nParticipants: Gort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\tGort: Sorry, I didn&#39;t see your challenge until after I signed up for this game.\n\n2) Gort: Homeworld G3 B2 Y3\n\tzoltar: Ok, now it all makes sense!  I&#39;ll try to pay attention this time, and give you a run for your money!\n\n3) zoltar: Build G1 Zoltar\n\tGort: looking at your other games, you very well might beat me. let the war begin!\n\n4) Gort: Build Y1 Gort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Gort: Build Y1 Gort\n\n7) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n8) Gort: Trade Y1 R1 Gort\n\n9) zoltar: Build G1 Zoltar\n\n10) Gort: Trade Y1 G1 Gort\n\n11) zoltar: Trade G1 R1 Zoltar\n\n12) Gort: Build Y1 Gort\n\n13) zoltar: Build G1 Zoltar\n\n14) Gort: Discover G1 Gort B1 Booberry\n\tzoltar: Ok, I&#39;ve learned my lesson about not having a red ship when your opponent builds one!\n\n15) zoltar: Discover G1 Zoltar B3 Boysenberry\n\n16) Gort: Build G1 Booberry\n\n17) zoltar: Build G2 Zoltar\n\n18) Gort: Sacrifice Y1 Gort\nMove G1 Booberry Boysenberry\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G2 Boysenberry\nBuild G3 Zoltar\n\n20) Gort: Sacrifice Y3 Gort\nMove G1 Boysenberry Zoltar\nMove G1 Booberry Boysenberry\nPass\nCatastrophe Zoltar G\n\n21) zoltar: Sacrifice Y1 Greengiant\nMove G2 Boysenberry Zoltar\n\n22) Gort: Build R1 Gort\n\n23) zoltar: Sacrifice R1 Zoltar\nAttack G1 Boysenberry\n\tzoltar: nice move!\n\tGort: Thanks... we&#39;ll see how it goes. Thanks for not forcing a surrender when I was late!\n\n24) Gort: Trade R1 Y1 Gort\n\n25) zoltar: Build G1 Zoltar\n\n26) Gort: Discover R1 Gort Y1 Yellowstar\n\tzoltar: Looks like this is going to be a long game...\n\tGort: not if i keep up with this recklessness.\n\n27) zoltar: Trade G2 R2 Zoltar\n\n28) Gort: Build Y1 Gort\n\n29) zoltar: Build G2 Boysenberry\n\n30) Gort: Build Y2 Gort\n\tzoltar: It was Calavera who had me beat when I pulled a fast one and blew up his homeworld in an almost resignable position yesterday.  So this is cool, Gort -- you are like &quot;Racer X&quot;, who unbeknownst to the world is secretly Speed Racer&#39;s long lost brother...\n\n31) zoltar: Trade G2 Y2 Boysenberry\n\tGort: I think I&#39;m in big trouble here... I need you to make a mistake!\n\n32) Gort: Sacrifice Y2 Gort\nMove Y1 Gort Yellowstar\nMove Y1 Yellowstar Boysenberry\n\tzoltar: The Galaxy will be mine! All mine! Brewhoohoohahaha!\n\n33) zoltar: Move Y2 Boysenberry Yellowstar\n\n34) Gort: Build Y2 Gort\n\n35) zoltar: Sacrifice R2 Zoltar\nAttack R1 Yellowstar\nAttack Y1 Boysenberry\n\n36) Gort: Trade Y2 R2 Gort\n\n37) zoltar: Build G2 Zoltar\n\n38) Gort: Build Y2 Gort\n\n39) zoltar: Build Y3 Boysenberry\n\tzoltar: I don&#39;t like that move, but I see nothing else.\n\tGort: yeah, i think that was right.\n\n40) Gort: Move Y1 Gort Yellowstar\n\n41) zoltar: Sacrifice Y2 Yellowstar\nMove Y3 Boysenberry Yellowstar\nMove Y3 Yellowstar Gort\n\n42) Gort: Build R1 Gort\n\n43) zoltar: Trade G2 R2 Zoltar\n\n44) Gort: Build Y2 Gort\n\n45) zoltar: Sacrifice R2 Zoltar\nAttack R2 Gort\nAttack R1 Gort\n\tzoltar: The Death Star is now fully functional!  Prepare to open fire on the rebel base!  \n\tzoltar: I&#39;ve learned a couple of basic tactics in Homeworld endgames, such as: if your opponent fails to have a 3-pip starship in his homeworld at any time, sac anything to stick your 3-pip ship in his homeworld, and usually it is checkmate in a couple of moves.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n\n46) Gort: Build Y3 Gort\n\n47) zoltar: Move R1 Yellowstar Gort\nCatastrophe Gort Y\n\tzoltar: Your puny fleet is no match for Zoltar&#39;z Battle Cruiser! Prepare to meet your DOOM!!! [Insert Evil Overlord sinister laughter here]\n\n\tGort: Can&#39;t we all just get along?\n\tzoltar: Sure, as long as we&#39;re all on my side!\n\nHomeworlds Online (SDG# 3751)\nStarted: 2006.6.26, Ended: 2006.6.29\nParticipants: zoltar (S), TwoShort (N)\nWinner: zoltar\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort Y3 Yoyo\n\n10) zoltar: Discover G1 Zoltar B1 Bozo\n\n11) TwoShort: Build Y1 Twoshort\n\n12) zoltar: Build Y2 Zoltar\n\n13) TwoShort: Discover Y1 Twoshort G3 Yodel\n\n14) zoltar: Discover Y2 Zoltar G1 Pea\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Yodel\nBuild Y3 Twoshort\n\n16) zoltar: Build G2 Zoltar\n\n17) TwoShort: Trade Y2 R2 Twoshort\n\n18) zoltar: Move Y1 Zoltar Bozo\n\n19) TwoShort: Move Y3 Yodel Bozo\n\n20) zoltar: Trade G2 R2 Zoltar\n\tTwoShort: Well, I guess I won&#39;t undo, but I just realized I should have sac&#39;d a y3 to put the other y3 in your homeworld...\n\tzoltar: Wow -- I didn&#39;t even see that.  I did remember the principle that I should immediately get a red when you do, but I looked and didn&#39;t see any threats.  But if you have a red piece and I don&#39;t, then sticking a 3-size anything in my homeworld is a major threat, isn&#39;t it?!  Still learning basic principles here.\n\n21) TwoShort: Build Y2 Yodel\n\n22) zoltar: Build G2 Zoltar\n\tTwoShort: Yeah, I didn&#39;t see it at first, because it would have meant leaving my homeworld without a 3, which is typically bad, so my brain discards such moves without much consideration.  But in this cae I could have won before you could do anything to me.  \n\n23) TwoShort: Sacrifice G1 Yoyo\nBuild Y3 Twoshort\n\n24) zoltar: Sacrifice Y2 Pea\nMove Y1 Bozo Yodel\nMove Y1 Yodel Twoshort\nCatastrophe Twoshort Y\n\n25) TwoShort: Trade Y3 R3 Bozo\n\n26) zoltar: Sacrifice G1 Bozo\nBuild R1 Zoltar\n\tzoltar: Ok, I gotta try to play as agressively as possible -- can&#39;t let you just take all the 3-pip ships, so here goes...\n\n27) TwoShort: Move Y1 Yodel Bozo\n\n28) zoltar: Trade G2 Y2 Zoltar\n\tzoltar: Yikes!\n\n29) TwoShort: Trade R3 G3 Bozo\n\n30) zoltar: Build G1 Zoltar\n\n31) TwoShort: Sacrifice G3 Bozo\nBuild Y1 Bozo\nBuild Y1 Yodel\nBuild Y3 Yodel\n\n32) zoltar: Discover Y2 Zoltar G1 Eggs &amp; Ham\n\n33) TwoShort: Sacrifice Y2 Yodel\nMove Y3 Yodel Twoshort\nDiscover Y1 Yodel G1 Ham\n\n34) zoltar: Build G2 Zoltar\n\n35) TwoShort: Build Y2 Ham\n\n36) zoltar: Move G2 Zoltar Bozo\n\n37) TwoShort: Sacrifice Y2 Ham\nMove Y1 Bozo Zoltar\nMove Y1 Bozo Zoltar\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bozo\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n39) TwoShort: Move Y1 Ham Zoltar\n\n40) zoltar: Discover G1 Zoltar G1 Ham\n\tzoltar: Grrrrrr\n\n41) TwoShort: Trade Y3 G3 Twoshort\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Bozo\nBuild Y2 Eggs\n\n43) TwoShort: Trade R2 B2 Twoshort\nCatastrophe Zoltar Yellow\n\tzoltar: Aha -- going for my greens too?  Yikes!\n\n44) zoltar: Discover Y2 Eggs B3 Samiam\n\tTwoShort: I gotta try and weasel out of this somehow :)\n\n45) TwoShort: Build B1 Twoshort\n\n46) zoltar: Sacrifice G3 Bozo\nBuild G3 Bozo\nBuild R1 Zoltar\nBuild Y1 Samiam\n\n47) TwoShort: Trade B2 Y2 Twoshort\n\n48) zoltar: Trade R2 B2 Zoltar\n\n49) TwoShort: Discover B1 Twoshort Y3 Futility\n\n50) zoltar: Sacrifice G3 Bozo\nBuild G3 Bozo\nBuild R2 Zoltar\nBuild Y1 Eggs\n\n51) TwoShort: Build Y1 Twoshort\n\n52) zoltar: Sacrifice Y2 Eggs\nMove Y2 Samiam Twoshort\nMove Y1 Samiam Twoshort\nCatastrophe Twoshort Y\n\n53) TwoShort: Move B1 Futility Twoshort\n\n54) zoltar: S G3 Bozo\nBuild G3 Bozo\nBuild Y1 Eggs\nBuild Y1 Eggs\n\n\tTwoShort: Excellent game, well done.\n\tzoltar: Thanks!  This was my first win ever against an experienced player.  Whew Who!\n\nHomeworlds Online (SDG# 3754)\nStarted: 2006.6.26, Ended: 2006.6.27\nParticipants: Keith (S), zoltar (N)\nWinner: Keith\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Keith: Homeworld G3 Y3 R3 *\n\n3) zoltar: Build G1 Zoltar\n\tzoltar: Wow!  That looks crazy!  I&#39;ll have to think for a bit!\n\n4) Keith: Build R1 Keith\n\tKeith: Given your fondness for R3s I thought I would try one.\n\n5) zoltar: Trade G1 R1 Zoltar\n\n6) Keith: Discover R1 Keith B1 Berry\n\tKeith: An R1 is enough to keep me from a quick win.\n\n7) zoltar: Build G1 Zoltar\n\n8) Keith: Trade R1 G1 Berry\n\n9) zoltar: Build R1 Zoltar\n\tKeith: Whoops.  Typo.\n\n10) Keith: Build G1 Berry\n\n11) zoltar: Build G2 Zoltar\n\n12) Keith: Trade G1 Y1 Berry\n\n13) zoltar: Trade G2 Y2 Zoltar\n\n14) Keith: Discover G1 Berry Y3 Atlast\n\n15) zoltar: Build G1 Zoltar Y3 Crayon\n\n\tzoltar: sorry the computer made the wrong move: I typed in discover and it built\r\n\n\tKeith: I am confused.  You could not undo?  It looks like you hit resign.\n\tzoltar: It wouldn&#39;t let me undo so I clicked resign, so we could start over.\n\nHomeworlds Online (SDG# 3756)\nStarted: 2006.6.27, Ended: 2006.7.1\nParticipants: Keith (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) Keith: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Keith: Build G1 Keith\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tKeith: It is getting late for me.  I work 10AM to 10PM tomorrow and Wednesday.\n\n6) Keith: Trade G1 Y1 Keith\n\n7) zoltar: Build Y2 Zoltar\n\n8) Keith: Discover Y1 Keith G3 Wagtail\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) Keith: Build G1 Keith\n\n11) zoltar: Move R1 Zoltar Wagtail\n\n12) Keith: Discover Y1 Wagtail G2 Goaway\n\n13) zoltar: Build G1 Zoltar\n\n14) Keith: Trade G1 Y1 Keith\n\n15) zoltar: Move Y2 Zoltar Wagtail\n\n16) Keith: Trade Y1 R1 Keith\n\n17) zoltar: Trade G1 Y1 Zoltar\n\tKeith: Alright alright I have a gun too.\n\n18) Keith: Build G1 Keith\n\n19) zoltar: Build G1 Zoltar\n\n20) Keith: Discover G1 Keith Y3 Bend\n\n21) zoltar: Trade G1 B1 Zoltar\n\n22) Keith: Build G1 Keith\n\n23) zoltar: Trade Y1 R1 Zoltar\n\n24) Keith: Build G1 Bend\n\n25) zoltar: Build G2 Zoltar\n\n26) Keith: Move G1 Bend Zoltar\n\n27) zoltar: Trade G3 Y3 Zoltar\n\n28) Keith: Sacrifice G3 Keith\nBuild G2 Zoltar\nBuild G3 Bend\nBuild G3 Keith\n\tzoltar: uh-oh\n\n29) zoltar: Attack G2 Zoltar\n\tKeith: It will give you something to think about.  I am sure there are multiple ways out of it.\n\tKeith: I just sent in a move to your move.  But by the time I hit send you had undone your move.\n\n30) Keith: Move G1 Bend Zoltar\nCatastrophe Zoltar Green\n\tzoltar: oh well, I wanted to change it because my first move didn&#39;t work very well.  I think I may be in big trouble in any case.\n\n31) zoltar: Trade B1 G1 Zoltar\n\tKeith: With your first move I could have sacrificed my g3, built two g2s in Zoltar and my G3 back in Keith.  Boom.  Changing your G3 to some other color was the way out I saw.\n\tzoltar: Yes, that&#39;s just how I saw it.  But I lose anyway, it seems...\r\n\n\n32) Keith: Move Y1 Goaway Bend\n\tzoltar: all I can do.\n\n33) zoltar: Build G1 Zoltar\n\tKeith: But you keep a 3 pointer in your homeworld.  I did gain in ship production.\n\n34) Keith: Build Y1 Bend\n\tKeith: I will leave you in suspense about my next move while I get some sleep.  Another 12 hour work day tomorrow.\n\n35) zoltar: Build Y2 Wagtail\n\n36) Keith: Move Y1 Bend Zoltar\n\n37) zoltar: Trade Y3 R3 Zoltar\n\n38) Keith: Sacrifice G3 Bend\nBuild Y3 Zoltar\nBuild Y3 Bend\nBuild R2 Keith\n\n39) zoltar: Attack Y3 Zoltar\n\n40) Keith: Move Y1 Bend Zoltar\nCatastrophe Zoltar Yellow\n\n41) zoltar: Build R2 Wagtail\n\n42) Keith: Move R1 Keith Bend\n\tzoltar: Yup, I think it&#39;s just about over -- there goes one star, and there&#39;s no way for me to stop it.\n\n43) zoltar: Trade R3 Y3 Zoltar\n\n44) Keith: Discover Y3 Bend G2 Greenway\n\tKeith: It might not be over just yet.  You have 7 ships to my 5.  We both occupy two sectors and our homeworlds remaing two apart.  I do have two large ships to your one.\n\tzoltar: True, but the extra star and extra big ship count for a lot.  I&#39;ll have to be extra clever or you&#39;ll have to be extra clumbsy for me to win.\n\n45) zoltar: Discover G1 Zoltar Y2 Jacket\n\tKeith: Looks to me like you had a good threat to move in two reds.\n\n46) Keith: Trade G1 B1 Keith\n\n47) zoltar: Trade R1 B1 Zoltar\n\n48) Keith: Move B1 Keith Bend\n\n49) zoltar: Move B1 Zoltar Jacket\n\n50) Keith: Build G1 Keith\n\n51) zoltar: Build G2 Jacket\n\n52) Keith: Move G1 Keith Bend\n\n53) zoltar: Build B2 Jacket\n\n54) Keith: Move Y3 Greenway Wagtail\n\n55) zoltar: Build Y1 Wagtail\nCatastrophe Wagtail Y\n\n56) Keith: Build G2 Keith\n\n57) zoltar: Build G2 Zoltar\n\n58) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Bend\nBuild B2 Bend\n\n59) zoltar: Move G1 Jacket Bend\n\n60) Keith: Move G3 Bend Jacket\n\n61) zoltar: Sacrifice R2 Wagtail\nAttack R1 Bend\nAttack G1 Bend\n\n62) Keith: Move B1 Bend Zoltar\n\n63) zoltar: Sacrifice R1 Bend\nAttack B1 Zoltar\n\n64) Keith: Move B2 Bend Zoltar\n\n65) zoltar: Sacrifice R1 Wagtail\nAttack B2 Zoltar\n\tzoltar: That doesn&#39;t work -- you just move your g3 into my homeworld and it&#39;s checkmate in two, so I have to rethink this.\n\n66) Keith: Sacrifice R2 Keith\nAttack B1 Jacket\nAttack B2 Jacket\n\n67) zoltar: Sacrifice Y3 Zoltar\nMove B1 Zoltar Bend\nMove G1 Bend Keith\nMove G1 Bend Keith\nCatastrophe Keith G\n\tzoltar: Yep -- I&#39;m DOOOOOOOMED\n\n\tzoltar: Wow.  That&#39;s a blunder.  You have to save your r2, and move your g3 into my homeworld.  You forced me to use up all my reds, so I can&#39;t capture your g3 and I&#39;m in trouble.  but this sack let&#39;s me sac your greens.\n\tzoltar: maybe it still works though, I don&#39;t know\r\n\n\tKeith: If I moved my G3 to your homeworld you grow a green and boom its gone.\n\tKeith: Huh?\n\tzoltar: I did have a defence if you move your g3 in for the kill:  I sac my b2 and trade the b1 in jacket for an r1, and the b2 in jacket for a y2.  Now I have one less blue ship in my homeworld, so trading your G3 for a B3 doesn&#39;t blow it up, and if you sac your red and take out my y3 and one of the other ships, then I sac my newly made y2 in jacket and send in both g1&#39;s as I did in our game, so I do have a defence and am threatening to blow up your greens at home as well as capture your g3 in my homeworld.  Don&#39;t know what you can do next, but it was your only line to pursue.\n\tKeith: Well that is darn dissapointing.  A bad end to a bad day for me.  Only one actual win so far in a handful of games.  I have had enough Homeworlds for a while.  \n\tzoltar: That&#39;s true, I could just grow a green in my homeworld -- I forgot about that!\n\tzoltar: Sorry to spoil your day.  I just had another win against a really good player -- I&#39;m on a roll.  We seem to be evenly matched; I hope you don&#39;t get discouraged, as you&#39;re a really good player, and it&#39;s a fun game!  Please challenge me as soon as you are rested and ready for another space battle, Keith.\n\tKeith: Homeworld is a good game and we are good at making each other think hard.  It is a great comeback victory for you.  I will eventually be back.\n\nHomeworlds Online (SDG# 3736)\nStarted: 2006.6.27, Ended: 2006.7.9\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\tzoltar: Greetingz from Greenbelt, Milky Way\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Discover G1 Uglyfoot B1 Commerce\n\n7) zoltar: Build G1 Zoltar\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Uglyfoot: Trade G1 R1 Uglyfoot\n\n11) zoltar: Build G1 Zoltar\n\n12) Uglyfoot: Build G1 Commerce\n\n13) zoltar: Discover G1 Zoltar Y3 Ribbon\n\n14) Uglyfoot: Trade G1 Y1 Commerce\n\n15) zoltar: Build Y2 Zoltar\n\n16) Uglyfoot: Discover Y1 Commerce G3 Industry\n\n17) zoltar: Move Y2 Zoltar Industry\n\n18) Uglyfoot: Build Y2 Industry\n\n19) zoltar: Build Y3 Industry\nCatastrophe Industry Y\n\n20) Uglyfoot: Build G1 Uglyfoot\n\n21) zoltar: Build G2 Zoltar\n\n22) Uglyfoot: Discover G1 Uglyfoot B1 Fleamarket\n\n23) zoltar: Build G2 Ribbon\n\n24) Uglyfoot: Build G2 Uglyfoot\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n26) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n27) zoltar: Discover G3 Zoltar B3 Investment\n\n28) Uglyfoot: Build G2 Uglyfoot\n\n29) zoltar: Discover Y1 Zoltar B3 Stocks\n\n30) Uglyfoot: Move Y2 Uglyfoot Commerce\n\n31) zoltar: Discover Y1 Zoltar R3 Redgiant\n\n32) Uglyfoot: Build Y2 Commerce\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Redgiant\nBuild Y3 Stocks\n\n34) Uglyfoot: Sacrifice Y2 Commerce\nMove G1 Commerce Ribbon\nMove G1 Fleamarket Ribbon\nCatastrophe Ribbon G\n\n35) zoltar: Trade Y3 R3 Stocks\n\n36) Uglyfoot: Move G2 Uglyfoot Commerce\n\tzoltar: Pretty sneaky -- destroying my factory!  You will pay for your insolence, Earthling!\n\n37) zoltar: Move Y3 Redgiant Commerce\n\n38) Uglyfoot: Discover G2 Commerce Y3 Outreach\n\n39) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Stocks\nBuild Y3 Redgiant\n\n40) Uglyfoot: Build G1 Outreach\n\n41) zoltar: Trade Y3 R3 Commerce\n\n42) Uglyfoot: Sacrifice Y2 Commerce\nMove G2 Outreach Zoltar\nMove G1 Outreach Zoltar\n\n43) zoltar: Sacrifice R3 Stocks\nAttack G2 Zoltar\nAttack G1 Zoltar\nPass\n\n44) Uglyfoot: Build R1 Uglyfoot\n\n45) zoltar: Sacrifice Y2 Stocks\nMove G1 Zoltar Stocks\nMove G1 Stocks Commerce\n\tUglyfoot: Wow, I overreached last turn.  So how will I die?\n\n46) Uglyfoot: Discover R1 Uglyfoot B1 Caprica2\n\tzoltar: Yeah, it&#39;s a matter of time as I move my big guys in.\n\n47) zoltar: Move Y1 Redgiant Commerce\n\n48) Uglyfoot: Build R2 Uglyfoot\n\n49) zoltar: Build G1 Investment\n\n50) Uglyfoot: Trade R2 G2 Uglyfoot\n\n51) zoltar: Sacrifice Y3 Redgiant\nMove G1 Investment Commerce\nMove G1 Commerce Uglyfoot\nMove G1 Commerce Uglyfoot\nCatastrophe Uglyfoot G\n\n52) Uglyfoot: Trade R1 G1 Uglyfoot\n\tzoltar: Time to make my move, before you had a chance to rebuild.\n\n53) zoltar: Move R3 Commerce Uglyfoot\n\n54) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: The Death Star is in range of the Rebel Base.  Prepare to Fire!!!\n\n55) zoltar: Trade G3 R3 Investment\n\tUglyfoot: Red-5 standing by...\r\n\n\n56) Uglyfoot: Build G1 Uglyfoot\n\n57) zoltar: Sacrifice R3 Investment\nAttack G1 Uglyfoot\nAttack G1 Uglyfoot\nAttack G1 Uglyfoot\n\tzoltar: Resistance is futile -- you have been assimilated!  :) Thanks.  Play again?\n\tUglyfoot: Sure.\n\n\nHomeworlds Online (SDG# 3766)\nVariants: &quot;Unrated&quot;\nStarted: 2006.6.27, Ended: 2006.7.5\nParticipants: zoltar (S), fnord (N)\nWinner: zoltar\n\n1) fnord: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) fnord: Build G1 Fnord\n\tfnord: Interesting choice for homeworld...  saves a bit of time, perhaps.\n\n4) zoltar: Build G1 Zoltar\n\n5) fnord: Trade G1 Y1 Fnord\n\tzoltar: I&#39;ve never tried this homeworld before.  Since I won against you I thought I&#39;d try something new and experiment. In my other games I try to take the setup you have if I can.\n\tfnord: Gee, thanks, I think.\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) fnord: Build G1 Fnord\n\n8) zoltar: Build G1 Zoltar\n\n9) fnord: Trade G1 R1 Fnord\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) fnord: Build G1 Fnord\n\n12) zoltar: Discover R1 Zoltar G1 Eggs\n\n13) fnord: Trade G1 B1 Fnord\n\n14) zoltar: Build Y1 Zoltar\n\tzoltar: Rats -- I guess you get the first medium piece no matter what I do\n\n15) fnord: Build G1 Fnord\n\n16) zoltar: Build G2 Zoltar\n\tfnord: I could have, but chose not to.\n\n17) fnord: Discover G1 Fnord Y3 Kallisti\n\n18) zoltar: Trade G1 B1 Zoltar\n\n19) fnord: Discover Y1 Fnord B3 Eris\n\n20) zoltar: Build Y2 Zoltar\n\n21) fnord: Build G1 Fnord\n\n22) zoltar: Build G2 Zoltar\n\n23) fnord: Sacrifice G3 Fnord\nBuild G2 Kallisti\nBuild G3 Fnord\nBuild Y2 Eris\n\n24) zoltar: Discover Y2 Zoltar B1 Blueberry\n\n25) fnord: Move G1 Fnord Eris\n\n26) zoltar: Move G2 Zoltar Blueberry\n\n27) fnord: Move G1 Kallisti Blueberry\n\n28) zoltar: Build G3 Zoltar\n\n29) fnord: Trade Y2 R2 Eris\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\n\n31) fnord: Discover G2 Kallisti B2 Sink\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Zoltar\nBuild Y2 Blueberry\n\n33) fnord: Build R1 Eris\n\n34) zoltar: Discover G2 Blueberry B3 Boysenberry\n\n35) fnord: Build R2 Fnord\n\n36) zoltar: Sacrifice Y2 Blueberry\nMove Y1 Zoltar Eggs\nMove B3 Zoltar Eggs\n\n37) fnord: Move R2 Eris Blueberry\n\n38) zoltar: Sacrifice R1 Eggs\nAttack R2 Blueberry\n\n39) fnord: Sacrifice G1 Blueberry\nBuild R1 Eris\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueberry\nBuild G3 Zoltar\nBuild R2 Blueberry\n\n41) fnord: Move R1 Eris Eggs\n\n42) zoltar: Move R2 Blueberry Eris\n\tzoltar: Soon blueberry will be mine, all mine!\n\n43) fnord: Build R3 Eris\n\n44) zoltar: Sacrifice G3 Zoltar\nBuild G3 Boysenberry\nBuild R3 Blueberry\nBuild Y2 Eggs\n\tfnord: hmmm... there just seems to be something about this game I&#39;m just not grokking.\n\n45) fnord: Move R3 Eris Eggs\n\n46) zoltar: Sacrifice R3 Blueberry\nAttack R3 Eggs\nAttack R1 Eggs\nAttack R1 Eris\n\tzoltar: You get the little ships; I get the big ships: sounds fair to me!  :)\n\n47) fnord: Sacrifice G2 Sink\nBuild Y2 Eris\nBuild Y3 Eris\n\n48) zoltar: Sacrifice Y3 Zoltar\nMove R1 Eris Fnord\nMove R2 Eris Fnord\nMove G3 Boysenberry Fnord\nCatastrophe Fnord R\n\n49) fnord: Sacrifice Y3 Eris\nMove Y2 Eris Fnord\nMove G1 Eris Fnord\nMove Y1 Eris Fnord\n\n50) zoltar: Sacrifice R3 Eggs\nAttack G3 Fnord\nAttack Y2 Fnord\nAttack G1 Fnord\n\tzoltar: What I did was setup a board at home and go over the archived games among the top players (only after a certain date though, as the first ones didn&#39;t mark what pieces were used for the initial homeworlds) and then study all the tricks and tactics they use.  That has catapulted me past the beginner phase now.\n\n51) fnord: Trade Y1 R1 Fnord\n\n52) zoltar: Sacrifice R2 Blueberry\nAttack R1 Fnord\nAttack B1 Fnord\n\tzoltar: Checkmate!\n\n\tzoltar: The Large ships are mine!  All mine!  Prepare to be boarded, Earthling!\n\nHomeworlds Online (SDG# 3787)\nStarted: 2006.6.29, Ended: 2006.7.1\nParticipants: TwoShort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build B1 Twoshort\n\n5) zoltar: Build G1 Zoltar\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) zoltar: Discover G1 Zoltar Y3 Yucca\n\n8) TwoShort: Build B2 Twoshort\n\n9) zoltar: Discover G1 Zoltar B3 Birch\n\n10) TwoShort: Discover B2 Twoshort Y2 Yew\n\n11) zoltar: Build G1 Zoltar\n\n12) TwoShort: Trade B2 R2 Yew\n\n13) zoltar: Build G2 Zoltar\n\n14) TwoShort: Move R2 Yew Yucca\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild G2 Yucca\nBuild G2 Yucca\nBuild G3 Zoltar\n\tzoltar: You meanie!\n\n16) TwoShort: Move R2 Yucca Zoltar\n\n17) zoltar: Trade G3 R3 Zoltar\n\n18) TwoShort: Move R2 Zoltar Birch\n\n19) zoltar: Sacrifice G2 Yucca\nBuild G2 Birch\nBuild G3 Birch\n\n20) TwoShort: Build B2 Twoshort\n\n21) zoltar: Sacrifice G3 Birch\nBuild G3 Birch\nBuild G3 Yucca\nBuild R1 Zoltar\n\n22) TwoShort: Discover B2 Twoshort Y2 Yoyo\n\n23) zoltar: Sacrifice R1 Zoltar\nAttack R2 Birch\n\n24) TwoShort: Build B2 Twoshort\n\n25) zoltar: Trade G3 Y3 Birch\n\n26) TwoShort: Trade B2 R2 Twoshort\n\n27) zoltar: Sacrifice G3 Yucca\nBuild G3 Birch\nBuild G3 Yucca\nBuild Y1 Birch\n\n28) TwoShort: Build B2 Twoshort\n\tTwoShort: Hmm, sometimes my comments seem to get dropped... I had said a few moves back that after you beat me with the All-out-Factory-push, and thus cemented my beleif that it is the optimal strategy, I went for something completely different this game.  Not sure what I was thinking...\n\n29) zoltar: Sacrifice G3 Yucca\nBuild G3 Yucca\nBuild R1 Zoltar\nBuild R1 Birch\n\n30) TwoShort: Discover B2 Twoshort B2 Oyoy\n\tzoltar: My comments get dropped if I try to send them at the same time I am sending a move.  My thinking was along chess lines, that it is better to develop more pieces than move the same piece again in the opening, so I ignored your chasing me around moving your red ship over and over, and then somehow I simply won it outright.\n\n31) zoltar: Move G3 Birch Yoyo\n\tzoltar: I&#39;m going to wait and come back to this after dinner..\n\tTwoShort: The idea was to get in there fast and prevent you from getting the factory going, so you couldn&#39;t monopolize green.  Obviously, it worked brilliantly :)\n\n32) TwoShort: Build B3 Twoshort\n\tzoltar: Ok, I&#39;ll still do my original move.  I was in a hurry and didn&#39;t want to blow my lead with some silly blunder, but this looks safe enough.  The Factory rules!  Except -- I want that last g3!\n\n33) zoltar: Move Y3 Birch Oyoy\n\tTwoShort: You&#39;ll have to come and get it. (Not that it looks like that will present much difficulty...)\n\tTwoShort: Hmmm, if this is &quot;after dinner&quot; are you on the east coast?\n\tzoltar: Affirmative.  I live in Greenbelt, Milky Way\n\n34) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Oyoy Birch\nMove B2 Yoyo Birch\nDiscover B1 Twoshort Y2 Desperation\n\tTwoShort: Aha... I live in Boulder, Colorado now, but ten years ago I lived in College Park...\n\n35) zoltar: Move R2 Birch Desperation\n\n36) TwoShort: Build B3 Twoshort\n\n37) zoltar: Sacrifice R3 Zoltar\nAttack B2 Birch\nAttack B2 Birch\nAttack B1 Desperation\n\n38) TwoShort: Trade B3 Y3 Twoshort\n\n39) zoltar: Sacrifice G3 Yucca\nBuild G3 Zoltar\nBuild Y1 Birch\nBuild Y1 Oyoy\n\tzoltar: Well, when you start naming your star systems &quot;Desperation&quot;, I figure I must be doing something right!\n\n40) TwoShort: Build B3 Twoshort\n\n41) zoltar: Move B1 Desperation Twoshort\nCatastrophe Twoshort B\n\n42) TwoShort: Build R1 Twoshort\n\tzoltar: Ok, I will violate cardinal rule number one and get rid of my only 3-pip ship in my homeworld, as it&#39;ll take you at least two turns to trade for a y3 and then do something annoying.\n\n43) zoltar: Sacrifice Y3 Oyoy\nMove G1 Zoltar Twoshort\nMove G2 Zoltar Twoshort\nMove G3 Zoltar Twoshort\nCatastrophe Twoshort G\n\n\tzoltar: The Death Star is almost in position...\n\tzoltar: Wait a second!\n\tzoltar: The Death Star is Fully Functional!  Ass stations, fire on the Rebel Base!!!\n\tzoltar: That was supposed to be, &quot;All Stations, fire on the Rebel Base!&quot;  :)  I suddenly remembered that our homeworlds were connected after blowing your b3 star!\n\nHomeworlds Online (SDG# 3715)\nStarted: 2006.6.30, Ended: 2006.6.30\nParticipants: zoltar (S), Calavera (N)\nWinner: zoltar\n\n1) Calavera: Homeworld G1 B3 Y3\n\n2) zoltar: Homeworld Y2 B1 G3\n\tCalavera: Hi there. Good luck.\n\n3) Calavera: Build Y1 Calavera\n\n4) zoltar: Build G1 Zoltar\n\n5) Calavera: Build Y1 Calavera\n\n6) zoltar: Build G1 Zoltar\n\n7) Calavera: Discover Y1 Calavera G2 Camelot\n\n8) zoltar: Discover G1 Zoltar Y3 Stocks\n\n9) Calavera:\nDiscover Y1 Camelot B3 Tintagel\n\tCalavera: d y1 camelot b3 Tintagel\n\n10) zoltar: Build G2 Zoltar\n\n11) Calavera: Trade Y3 G3 Calavera\n\n12) zoltar: Move G2 Zoltar Tintagel\n\n\tCalavera: Damn, lokks like I&#39;ve screwed up royally here. Thanks for the game.\n\tzoltar: It was far from over, but I had acquired a big advantage.  Thanks.  Play again?\n\tCalavera: If you like. I&#39;ve set up a challenge if you&#39;re interested.\r\n\n\nHomeworlds Online (SDG# 3792)\nStarted: 2006.6.30, Ended: 2006.7.1\nParticipants: zoltar (S), Calavera (N)\nWinner: zoltar\n\n1) Calavera: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Calavera: Build G1 Calavera\n\n4) zoltar: Build G1 Zoltar\n\n5) Calavera: Trade G1 Y1 Calavera\n\n6) zoltar: Build G1 Zoltar\n\n7) Calavera: Build G1 Calavera\n\n8) zoltar: Discover G1 Zoltar B1 Boysenberry\n\n9) Calavera: Discover G1 Calavera B3 El Marrow\n\n10) zoltar: Build G2 Boysenberry\n\n11) Calavera: Build Y1 Calavera\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) Calavera: Move Y1 Calavera El\n\n14) zoltar: Trade G2 Y2 Boysenberry\n\n15) Calavera: Trade Y1 R1 El\n\n16) zoltar: Build Y1 Boysenberry\n\n17) Calavera: Build G1 Calavera\n\n18) zoltar: Build G2 Zoltar\n\tCalavera: Sorry. (It was a typo)\n\n19) Calavera: Sacrifice G3 Calavera\nBuild G2 El\nBuild G2 Calavera\nBuild G3 Calavera\n\n20) zoltar: Sacrifice Y2 Boysenberry\nMove G1 Boysenberry El\nMove G1 El Calavera\nCatastrophe Calavera G\n\n21) Calavera: Trade Y1 G1 Calavera\n\n22) zoltar: Move G2 Zoltar Boysenberry\n\n23) Calavera: Trade G2 Y2 El\n\n24) zoltar: Discover G2 Boysenberry Y3 Banana\n\tzoltar: Ouch!\n\tzoltar: Greetings from Greenbelt, btw!\n\tCalavera: Er... oops:)  Greenbelt?\n\n25) Calavera: Move Y2 El Calavera\n\tzoltar: Yes, it was a pun, since I took out all your greens with a green, but I also do live in Greenbelt, MD!\n\n26) zoltar: Discover Y1 Boysenberry G3 Greengiant\n\n27) Calavera: Build G1 Calavera\n\n28) zoltar: Build G2 Zoltar\n\n29) Calavera: Trade Y2 R2 Calavera\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Banana\n\n\tzoltar: Oops, I got my 2&#39;s and 3&#39;s mixed up there\n\tCalavera: Thanks for the games. I think I&#39;ll pass on waiting for  the Greenbelt fleet to come and crush me though.\r\n\r\nCheers\n\tzoltar: There was no way to really recover after I took out your three greens in your homeworld.  I could build up too fast before you could do anything.  Thanks for the game.  Play again?\n\nHomeworlds Online (SDG# 3793)\nStarted: 2006.7.1, Ended: 2006.7.5\nParticipants: zoltar (S), MatrixFrog (N)\nWinner: zoltar\n\n1) MatrixFrog: Homeworld G1 B3 Y3\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) zoltar: Build G1 Zoltar\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) zoltar: Build G1 Zoltar\n\n7) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n8) zoltar: Discover G1 Zoltar Y3 Banana\n\n9) MatrixFrog: Discover Y1 Matrixfrog G2 Lemon\n\n10) zoltar: Build G2 Zoltar\n\n11) MatrixFrog: Build Y1 Lemon\n\n12) zoltar: Discover G1 Zoltar B3 Boysenberry\n\n13) MatrixFrog: Build B1 Matrixfrog\n\n14) zoltar: Sacrifice G3 Zoltar\nBuild G2 Boysenberry\nBuild G3 Banana\nBuild G3 Zoltar\n\n15) MatrixFrog: Discover Y1 Lemon G3 Grape\n\n16) zoltar: Trade G2 Y2 Zoltar\n\n17) MatrixFrog: Build Y1 Grape\n\n18) zoltar: Trade G2 B2 Boysenberry\n\n19) MatrixFrog: Move B1 Matrixfrog Lemon\n\n20) zoltar: Move Y2 Zoltar Grape\n\n21) MatrixFrog: Move Y1 Grape Lemon\n\n22) zoltar: Sacrifice G3 Banana\nBuild G2 Boysenberry\nBuild G2 Zoltar\nBuild G3 Banana\n\n23) MatrixFrog: Build Y2 Matrixfrog\n\n24) zoltar: Sacrifice B2 Boysenberry\nTrade Y2 R2 Grape\nTrade G2 Y2 Boysenberry\n\n25) MatrixFrog: Build Y3 Grape\n\n26) zoltar: Sacrifice Y2 Boysenberry\nMove G3 Banana Lemon\nMove G3 Lemon Matrixfrog\n\n27) MatrixFrog: Build Y2 Matrixfrog\n\n28) zoltar: Trade G3 R3 Zoltar\n\tzoltar: Prepare to be boarded, Earthling!\n\n29) MatrixFrog: Build B2 Matrixfrog\n\n30) zoltar: Sacrifice R2 Grape\nAttack Y3 Matrixfrog\nAttack B2 Matrixfrog\n\tzoltar: &quot;The Death Star is now fully functional.&quot;\n\n31) MatrixFrog: Build B2 Matrixfrog\n\n32) zoltar: Sacrifice G2 Zoltar\nBuild G2 Matrixfrog\nBuild G2 Matrixfrog\nCatastrophe Matrixfrog B\nCatastrophe Matrixfrog G\n\tMatrixFrog: I think I lose.\n\n\tzoltar: Yep, without a red ship, there was no defense.  Play again?\n\nHomeworlds Online (SDG# 3804)\nStarted: 2006.7.1, Ended: 2006.7.2\nParticipants: zoltar (S), Calavera (N)\nWinner: zoltar\n\n1) Calavera: Homeworld B1 Y3 G3\n\n2) zoltar: Homeworld B2 Y1 G3\n\n3) Calavera: Build G1 Calavera\n\n4) zoltar: Build G1 Zoltar\n\n5) Calavera: Discover G1 Calavera B2 El_marrow\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Calavera: Build G1 Calavera\n\n8) zoltar: Build Y1 Zoltar\n\n9) Calavera: Build G1 El_marrow\n\n10) zoltar: Build G2 Zoltar\n\n11) Calavera: Trade G1 R1 El_marrow\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) Calavera: Build R1 El_marrow\n\n14) zoltar: Build R2 Zoltar\n\n15) Calavera: Build R2 El_marrow\n\n16) zoltar: Discover R2 Zoltar Y3 Banana\n\n17) Calavera: Trade R1 Y1 El_marrow\n\n18) zoltar: Build Y2 Zoltar\n\n19) Calavera: Trade G1 B1 Calavera\n\n20) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n21) Calavera: Discover R2 El_marrow Y3 Rubacava\n\n22) zoltar: Build Y2 Greenbelt\n\n23) Calavera: Build Y2 El_marrow\n\n24) zoltar: Discover Y2 Greenbelt B2 Blueberry\n\n25) Calavera: Trade Y1 B1 El_marrow\n\n26) zoltar: Discover G2 Zoltar B3 Boysenberry\n\n27) Calavera: Build B3 Calavera\n\n28) zoltar: Build G1 Zoltar\n\n29) Calavera: Build B3 El_marrow\n\n30) zoltar: Move Y2 Blueberry Greenbelt\n\n31) Calavera: Sacrifice Y2 El_marrow\nMove B3 El_marrow Rubacava\nMove G1 El_marrow Rubacava\n\n32) zoltar: Sacrifice G2 Boysenberry\nBuild R1 Banana\nBuild R2 Zoltar\n\n33) Calavera: Sacrifice G3 Calavera\nBuild B2 El_marrow\nBuild B3 Rubacava\nBuild R3 Rubacava\n\n34) zoltar: Move R1 Zoltar Rubacava\n\n35) Calavera: Sacrifice B2 El_marrow\nTrade R2 Y2 Rubacava\nTrade B3 G3 Rubacava\n\n36) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Banana El_marrow\nMove G1 Zoltar Rubacava\n\n37) Calavera: Attack G1 Rubacava\n\tzoltar: Very nice move.  I&#39;m dead now!\n\n38) zoltar: Sacrifice R2 Banana\nAttack B1 El_marrow\nAttack G1 Rubacava\n\tCalavera: Well, I&#39;m glad *you&#39;ve* got confidence in my position. At least that way one of us has :)\n\n39) Calavera: Sacrifice R3 Rubacava\nAttack R1 Rubacava\nAttack R1 El_marrow\nAttack G1 Rubacava\n\n40) zoltar: Sacrifice Y1 Zoltar\nMove B1 El_marrow Calavera\nCatastrophe Calavera B\n\tzoltar: Ok, then I&#39;ll wait another move if you insist (I was going to simply resign here).\n\n\tzoltar: Wow, you let me get you with the only trap I could possibly think of!  You just needed to trade your b3 for g3 and my position is still resignable!  I do tend to resign too early -- this is a lesson that there are always chances if your opponent isn&#39;t paying close attention. What a swindle!\n\tCalavera: Ohhh. You wascally wabbit!\r\n\r\nThanks for all the games. I&#39;ll take a break now, but I&#39;ll be glad to play you again later if you&#39;re interested.\n\nHomeworlds Online (SDG# 3797)\nStarted: 2006.7.1, Ended: 2006.7.3\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) zoltar: Discover G1 Zoltar B1 Boar\n\n11) TwoShort: Build Y1 Twoshort\n\n12) zoltar: Build Y2 Zoltar\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) zoltar: Move Y2 Zoltar Boar\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Twoshort\nBuild Y3 Twoshort\n\n16) zoltar: Trade Y1 R1 Zoltar\n\n17) TwoShort: Trade Y2 R2 Twoshort\n\tzoltar: Wow, what a move!\n\n18) zoltar: Build G1 Zoltar\n\n19) TwoShort: Trade Y3 G3 Twoshort\n\n20) zoltar: Build G2 Boar\n\n21) TwoShort: Build G2 Twoshort\n\n22) zoltar: Trade G2 R2 Boar\n\n23) TwoShort: Build G2 Yolonda\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G2 Boar\nBuild G3 Zoltar\nBuild R1 Boar\n\n25) TwoShort: Discover G1 Yolonda Y1 Different\n\n26) zoltar: Discover G2 Boar Y3 Yippiekiyay\n\n27) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Different\nBuild Y2 Twoshort\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild G3 Boar\nBuild R2 Boar\nBuild R3 Zoltar\n\n29) TwoShort: Build Y3 Twoshort\n\tTwoShort: Quite a thinker, this one....\n\n30) zoltar: Move R2 Boar Yippiekiyay\n\n31) TwoShort: Move Y3 Twoshort Yippiekiyay\n\n32) zoltar: Move R2 Yippiekiyay Twoshort\n\n33) TwoShort: Sacrifice R2 Twoshort\nAttack R2S Twoshort\nAttack G2S Yippiekiyay\n\n34) zoltar: Sacrifice G3 Boar\nBuild G3 Boar\nBuild R2 Boar\nBuild R3 Zoltar\n\n35) TwoShort: Move R2 Twoshort Grogar\n\n36) zoltar: Move R3 Zoltar Different\n\n37) TwoShort: Sacrifice G2 Different\nBuild G2 Yippiekiyay\nBuild R3 Grogar\n\tzoltar: Looks like I&#39;m back to losing again -- back to my original strategy of taking out one of your stars before I die.\n\n38) zoltar: Attack G1 Different\n\tzoltar: Well, I missed that totally too.  I&#39;ll try another move or two before I resign.\n\n39) TwoShort: Move R2 Grogar Boar\nCatastrophe Boar Red\n\tTwoShort: I made a big effort to to tighten up my game this time...  still, these last 4 moves or so were skull-crushers.  \n\n40) zoltar: Sacrifice G3 Boar\nBuild G3 Different\nBuild R1 Different\nBuild R2 Different\n\n41) TwoShort: Build R2 Grogar\n\tzoltar: wow -- you could have sacked your y3 and destroyed all the reds in my homeworld -- I would have resigned if you had done that.  I&#39;m still dead now.\n\tTwoShort: I considered it, but then I&#39;d have had no sacrificeable red, so movign in to gfinish you off would be a muklti turn operation, and you could have used the slack to take the y3 I&#39;d sac&#39;d (which I could then catastrophe, but that would break the yellow embargo)... anyway, it didn&#39;t look like a done deal...  More than once I&#39;ve seen a game take a surprise turn around because the stronger player just trying to finish the other guy off makes some over-confident blunder.  Which is why I when I&#39;m losing I often like to play it out until I see for sure how the other guy can force checkmate...  Speaking of which, how am I going to force checkmate here?\n\n42) zoltar: Move R1 Different Grogar\n\tzoltar: Have you every played shogi?  It seems to me to be the best form of chess, combining the best things in chess with homeworlds but without the most annoying features of chess.  I just figured out last week how to make a shogi set with 4 stashes of pyramids.  I think it is better than the original, which has pieces with Japanese characters on them that initially turn people off of the game.  It could be called &quot;Martian Shogi&quot;.\n\n43) TwoShort: Move R3 Grogar Boar\n\n44) zoltar: Sacrifice Y2 Boar\nMove R1 Zoltar Different\nMove R2 Different Grogar\n\n45) TwoShort: Sacrifice R2 Grogar\nAttack R2S Grogar\nAttack R1S Grogar\n\n46) zoltar: Move G3 Different Grogar\n\n47) TwoShort: Sacrifice Y2 Grogar\nMove R2 Grogar Different\nMove R1 Grogar Different\nCatastrophe Different Red\n\n48) zoltar: Sacrifice G1 Boar\nBuild G1 Different\n\n49) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Yippiekiyay Boar\nMove G2 Yippiekiyay Boar\n\n50) zoltar: Discover G1 Different B3 Same\n\n51) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Boar\nBuild Y2 Twoshort\nBuild Y2 Boar\n\n52) zoltar: Trade G1 B1 Zoltar\n\tTwoShort: I haven&#39;t played Shogi, though I&#39;ve skimmed the rules at some point.  It struck me as stylistically very much like chess.  What do you see as it&#39;s advantages?  My main problem with chess is that it&#39;s strategy has been analyzed so extensively; if I&#39;m doing something weird and different that no one has tried before, it&#39;s because it&#39;s dumb.  With Homeworlds it still might be brilliant :)  And the aesthetics of the pyramids &amp; boardlessness appeals as well.\n\n53) TwoShort: Sacrifice Y2 Boar\nMove G3 Boar Zoltar\nMove Y3 Boar Zoltar\n\tzoltar: First, in Shogi there are no weird moves (pawn move and capture only 1 space forward, and you can&#39;t double them); second, pieces you capture can be dropped back in as your pieces.  The orientations changing, as in homeworlds, gave me the idea to use pyramids.  In chess, you simply trade down when ahead, to increase your ratio of material; in shogi, that doesn&#39;t work, as the pieces get recycled, so you have to do something very much like the &#39;factory&#39; in homeworlds, where you drop in a pawn, promote it (to a &#39;tokin&#39;), then trade the promoted pawn for a real piece; your opponent only gets a pawn to drop in his stash, whereas you get a piece.  As it turns out, there are a lot more sacrifices for mate, as in homeworlds and the most exciting of chess games.  Whereas in chess, where engames are boring and simplified and the goal is to get a past pawn and trade all your pieces so you can make a queen, in shogi the endgame is intense, complicated, and you have to go for actual checkmate to win.  It&#39;s an amazing game, far superior to chess.  Also, because the pieces are slower moving, you can&#39;t memorize set openings, and the advantage for the first player goes from 10% to 1%.  I&#39;d love to have a pyramid version of it here.  I wonder how hard that would be?  Do you know the guy that runs the site?\n\n\tzoltar: Yes, I am toast.  Can&#39;t sac my red or you just move your red in -- very clever.\n\tzoltar: Nice finish!\n\nHomeworlds Online (SDG# 3801)\nStarted: 2006.7.1, Ended: 2006.7.21\nParticipants: zoltar (S), Laurie_Menke (N)\nWinner: zoltar\n\n1) Laurie_Menke: Homeworld B2 G3 Y3\n\tLaurie_Menke: LOL, Zoltar...it&#39;s hard to tell, but do you maybe like Homeworlds!  ;o)  Thanks for the invitation...good luck!  :o)\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Greetingz Earthling, from Greenbelt, Milky Way.  May the farce be with you!\n\n5) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\tLaurie_Menke: And also with you.  ;o)\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) zoltar: Build Y1 Zoltar\n\n9) Laurie_Menke: Build Y1 Laurie_menke\n\n10) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\tzoltar: I just learned this game 2 weeks ago, lost my first few games, and then started to catch on; yesterday I won against a good player for the first time (after losing to him 5 times), and so I&#39;m trying to play as much as I can over the weekend/holiday so that there will always be moves waiting for me when I click on my computer.\n\n11) Laurie_Menke: Discover G1 Laurie_menke G1 Park\n\tLaurie_Menke: Wow!  I&#39;m very impressed that you&#39;ve caught on so quickly!  Good job!  And sorry about timing out, especially since you were trying to play a lot over the weekend/holiday.  :o(  Please forgive me.  :o(\n\n12) zoltar: Build G2 Zoltar\n\n13) Laurie_Menke: Build G2 Laurie_menke\n\tzoltar: Thanks.  I looked at the games among the top players and studied over a half dozen of them carefully to see if I could learn some of the tactical tricks, as I was getting swindled and blown up all over the place my first few games.  I&#39;ve now got the basics down.  And I figured you (as well as my other opps) were out having fun for the 4th of July, as was I, so no problem.\n\n14) zoltar: Discover G2 Zoltar Y3 Yellowstone\n\n15) Laurie_Menke: Discover G2 Laurie_menke B1 Phonebooth\n\n16) zoltar: Build G2 Zoltar\n\n17) Laurie_Menke: Build Y2 Laurie_menke\n\n18) zoltar: Discover Y1 Zoltar B3 Blueridge\n\n19) Laurie_Menke: Move Y2 Laurie_menke Phonebooth\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Blueridge\n\n21) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n22) zoltar: Trade Y3 R3 Blueridge\n\n23) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\n24) zoltar: Move R3 Blueridge Phonebooth\n\n25) Laurie_Menke: Sacrifice Y2 Phonebooth\nMove B1 Laurie_menke Park\nDiscover G2 Phonebooth R3 Mars\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G1 Yellowstone\nBuild G3 Zoltar\nBuild R1 Phonebooth\n\tzoltar: Attack!!!!\n\tzoltar: Prepare to be boarded, Earthling!\n\tLaurie_Menke: We are peace-loving people....we will fleeeeeeee!!!!!\n\n27) Laurie_Menke: Sacrifice G2 Mars\nBuild R1 Laurie_menke\nBuild Y2 Laurie_menke\n\n28) zoltar: Sacrifice G2 Yellowstone\nBuild Y3 Blueridge\nBuild Y3 Blueridge\n\tzoltar: Zee Phonebooth ease mine! Awl mine!\n\n29) Laurie_Menke: Discover Y1 Laurie_menke R1 Ready\n\tzoltar: Wow! That waz unexpected.  Very sneaky, hyu-maahn bean.  Eye deed knot eggs pecked sew cleaver a move!\n\n30) zoltar: Sacrifice Y3 Blueridge\nDiscover G2 Zoltar Y3 Yosemite\nMove R1 Phonebooth Laurie_menke\nMove R3 Phonebooth Laurie_menke\nCatastrophe Laurie_menke R\n\tzoltar: Ok, eye wheel dew zee same thing and double-build.\n\tLaurie_Menke: We humans love peace...AND a challenge.  ;o)  Don&#39;t count us out yet!  ;o)\n\n31) Laurie_Menke: Trade Y2 G2 Laurie_menke\n\tLaurie_Menke: Ooops...that was almost a deadly mistake.  :o(\n\n32) zoltar: Build G2 Zoltar\n\n33) Laurie_Menke: Sacrifice G1 Park\nBuild Y2 Ready\n\tzoltar: Yup, it&#39;s still really bad -- but the other way you would be dead without your y2 ship left in your homeworld\n\tzoltar: In any case, since you hyu-maahn beanz love peace, Zoltar decided to destroy all zee guns in zee galaxy...\n\tLaurie_Menke: :o)  Fine with me...if we keep it that way.  ;o)\n\n34) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Blueridge Park\nMove Y3 Park Laurie_menke\n\n35) Laurie_Menke: Build B1 Park\n\n36) zoltar: Trade G3 R3 Zoltar\n\n37) Laurie_Menke: Build B2 Park\n\tzoltar: Prepare to be boarded!\n\tzoltar: My ships are bigger than yours!  The galaxy will soon me mine!  All mine!\n\tLaurie_Menke: Alright...we peaceable humans will give up without a fight.  We know when we&#39;re licked.  :o(  Good game, zoltar!  Thanks for the fun!  :o)\n\n38) zoltar: Sacrifice R3 Zoltar\nAttack G2 Laurie_menke\nPass\nPass\n\n\tzoltar: Ok. I&#39;ll open a new challenge; when you are free, you can accept and start a new game.  Hope your friend gets well quickly.\n\tLaurie_Menke: Thanks...me, too.  :o)\n\nHomeworlds Online (SDG# 3802)\nStarted: 2006.7.1, Ended: 2006.7.17\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y3 B2 G3\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) Personman: Build G1 Personman\n\tzoltar: Greetingz Earthling Personman, from Greenbelt, Milky Way\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n5) Personman: Discover G1 Personman Y1 Athiba\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build Y2 Zoltar\n\n9) Personman: Trade G1 B1 Personman\n\n10) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n11) Personman: Build G1 Personman\n\n12) zoltar: Build Y2 Greenbelt\n\n13) Personman: Build G1 Personman\n\n14) zoltar: Build G2 Zoltar\n\n15) Personman: Sacrifice G3 Personman\nBuild G2 Athiba\nBuild G3 Athiba\nBuild G3 Personman\n\n16) zoltar: Sacrifice Y2 Greenbelt\nMove G2 Zoltar Greenbelt\nMove G2 Greenbelt Athiba\nCatastrophe Athiba G\n\n17) Personman: Trade G1 Y1 Personman\n\n18) zoltar: Build Y2 Greenbelt\n\n19) Personman: Discover Y1 Personman G1 A2ba\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) Personman: Trade G1 R1 Personman\n\n22) zoltar: Build G1 Zoltar\n\n23) Personman: Build G1 Personman\n\n24) zoltar: Build G2 Zoltar\n\n25) Personman: Sacrifice G3 Personman\nBuild G2 Personman\nBuild G3 Personman\nBuild Y1 A2ba\n\n26) zoltar: Discover G2 Zoltar B2 Blueridge\n\n27) Personman: Discover Y1 A2ba B2 Fhutwos\n\n28) zoltar: Sacrifice Y2 Greenbelt\nMove G2 Blueridge A2ba\nMove G2 A2ba Personman\nCatastrophe Personman G\n\n29) Personman: Build Y2 A2ba\n\n30) zoltar: Build Y2 Greenbelt\n\n31) Personman: Move Y2 A2ba Fhutwos\n\n32) zoltar: Sacrifice Y2 Greenbelt\nMove Y2 Greenbelt A2ba\nMove Y2 A2ba Personman\n\n33) Personman: Trade B1 G1 Personman\n\n34) zoltar: Trade G3 R3 Zoltar\n\n35) Personman: Build G2 Personman\n\n36) zoltar: Sacrifice R3 Zoltar\nAttack G2 Personman\nAttack G1 Personman\nAttack R1 Personman\n\tzoltar: The Death Star is now fully functional.  Prepare to fire on the Rebel Base.  Stand by...\n\tPersonman: good game :)\n\n\tzoltar: thanks -- the green catastrophe led to an early and decisive attack, and there was no way for you to recover an get a big ship back in your homeworld in time.  Play again?\n\nHomeworlds Online (SDG# 3832)\nVariants: &quot;Unrated&quot;\nStarted: 2006.7.7, Ended: 2006.7.13\nParticipants: zoltar (S), fnord (N)\nWinner: zoltar\n\n1) fnord: Homeworld B3 Y2 G3\n\tzoltar: Greetingz, Earthling!\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) fnord: Build G1 Fnord\n\n4) zoltar: Build G1 Zoltar\n\n5) fnord: Trade G1 B1 Fnord\n\n6) zoltar: Build G1 Zoltar\n\n7) fnord: Discover B1 Fnord Y1 Nothingness\n\n8) zoltar: Discover G1 Zoltar Y3 Yellowstone\n\n9) fnord: Build G1 Fnord\n\n10) zoltar: Build G2 Zoltar\n\n11) fnord: Trade G1 R1 Fnord\n\n12) zoltar: Trade G2 R2 Zoltar\n\n13) fnord: Move B1 Nothingness Yellowstone\n\n14) zoltar: Discover G1 Yellowstone R1 Redriver\n\n15) fnord: Build G1 Fnord\n\n16) zoltar: Build G2 Redriver\n\n17) fnord: Move G1 Fnord Redriver\n\n18) zoltar: Build G2 Zoltar\n\n19) fnord: Build G2 Redriver\nCatastrophe Redriver G\n\n20) zoltar: Discover G2 Zoltar B3 Blueridge\n\n21) fnord: Build G1 Fnord\n\n22) zoltar: Build R1 Zoltar\n\n23) fnord: Discover G1 Fnord Y1 Orary\n\n24) zoltar: Move R2 Zoltar Yellowstone\n\n25) fnord: Move B1 Yellowstone Orary\n\n26) zoltar: Move R2 Yellowstone Orary\n\n27) fnord: Build G1 Orary\n\tzoltar: Attack!!!\n\n28) zoltar: Attack B1 Orary\n\n29) fnord: Build G2 Fnord\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueridge\nBuild G3 Blueridge\nBuild G3 Zoltar\n\n31) fnord: Move G1 Orary Blueridge\nCatastrophe Blueridge G\n\n32) zoltar: Attack G1 Orary\n\tzoltar: You&#39;re really into blowing things up this game!\n\n33) fnord: Build R1 Fnord\n\tzoltar: Though after each sequence when things got blown up, I ended up gaining an extra move or two after everything settled down, especially here, where at the end of the sequence I get to convert your last outpost at orary and end up with the extra small pieces.\n\tfnord: I know, I just have to try to get in my hits where I can... even if it means more work for me later.\n\n34) zoltar: Build R2 Orary\n\n35) fnord: Trade R1 Y1 Fnord\n\n36) zoltar: Trade R2 Y2 Orary\n\n37) fnord: Move Y1 Fnord Orary\n\n38) zoltar: Attack Y1 Orary\n\n39) fnord: Build R1 Fnord\n\tzoltar: I didn&#39;t get that move.\n\tfnord: Sure you did, you just took it...  Or did you mean you didn&#39;t understand the move?\n\n40) zoltar: Build R2 Orary\n\tzoltar: I meant I didn&#39;t understand why you would simply move a piece where I could take it?  That gives me yet another extra little ship for free.\n\n41) fnord: Trade R1 Y1 Fnord\n\n42) zoltar: Trade Y2 G2 Orary\n\tfnord: Now that I think of it, it probably was a stupid move.  I hadn&#39;t thought of you attacking it.\n\n43) fnord: Discover G2 Fnord B1 Temp\n\n44) zoltar: Discover G2 Orary B3 Investment\n\n45) fnord: Move Y1 Fnord Temp\n\n46) zoltar: Move Y1 Orary Investment\n\n47) fnord: Build Y2 Temp\n\n48) zoltar: Build Y3 Investment\n\n49) fnord: Trade Y2 R2 Temp\n\n50) zoltar: Move Y3 Investment Temp\n\n51) fnord: Build Y2 Temp\n\n52) zoltar: Sacrifice R2 Orary\nAttack G2 Temp\nAttack R2 Temp\n\n53) fnord: Discover Y2 Temp Y3 Sink\n\n54) zoltar: Build Y3 Investment\n\n55) fnord: Discover Y2 Sink B2 Hole\n\n56) zoltar: Move Y3 Investment Hole\n\n57) fnord: Discover Y2 Hole G3 Eris\n\n58) zoltar: Build Y3 Investment\n\n59) fnord: Build R1 Fnord\n\n60) zoltar: Sacrifice G3 Zoltar\nBuild G1 Orary\nBuild G2 Temp\nBuild G3 Zoltar\n\n61) fnord: Move Y1 Temp Investment\n\n62) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Orary\nBuild R3 Temp\n\n63) fnord: Move R1 Fnord Temp\n\n64) zoltar: Sacrifice Y3 Investment\nMove G1 Orary Fnord\nMove R2 Orary Fnord\nMove R3 Temp Fnord\n\tzoltar: I think I have you outnumbered...\n\tzoltar: The &#39;factory&#39; move of sacking the g3 and then rebuilding it along with two other builds seems to be the single most powerful weapon in this game.\n\tfnord: Yeah, I think so... on both counts.\n\n65) fnord: Sacrifice Y1 Investment\nMove R1 Temp Fnord\nCatastrophe Fnord R\n\n66) zoltar: Sacrifice Y3 Temp\nMove G2 Temp Fnord\nMove G2 Temp Fnord\nMove R2 Temp Fnord\nCatastrophe Fnord G\n\n\tfnord: Of course, I don&#39;t know how I&#39;m going to clean up this mess, but at least most of the partygoers are gone.\n\tzoltar: Well, it was fun while it lasted. :)\n\tzoltar: It was a real blast!\n\nHomeworlds Online (SDG# 3799)\nStarted: 2006.7.3, Ended: 2006.7.11\nParticipants: zoltar (S), Cerulean (N)\nWinner: zoltar\n\n1) Cerulean: Homeworld Y3 B1 G3\n\n2) zoltar: Homeworld B2 Y1 G3\n\n3) Cerulean: Build G1 Cerulean\n\n4) zoltar: Build G1 Zoltar\n\n5) Cerulean: Discover G1 Cerulean B2 Bitou\n\n6) zoltar: Discover G1 Zoltar B3 Boysenberry\n\n7) Cerulean: Trade G1 Y1 Bitou\n\n8) zoltar: Build G1 Zoltar\n\n9) Cerulean: Build G1 Cerulean\n\n10) zoltar: Build G2 Boysenberry\n\n11) Cerulean: Build G2 Cerulean\n\n12) zoltar: Sacrifice G3 Zoltar\nBuild G2 Boysenberry\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n13) Cerulean: Move G1 Cerulean Bitou\n\n14) zoltar: Trade G2 Y2 Boysenberry\n\n15) Cerulean: Discover G1 Bitou Y3 Wythrii\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) Cerulean: Trade G2 Y2 Cerulean\n\n18) zoltar: Build R1 Zoltar\n\n19) Cerulean: Build G1 Wythrii\n\n20) zoltar: Trade G3 Y3 Zoltar\n\n21) Cerulean: Build G2 Cerulean\n\n22) zoltar: Move G2 Boysenberry Bitou\n\n23) Cerulean: Move Y1 Bitou Wythrii\n\n24) zoltar: Build G2 Zoltar\n\n25) Cerulean: Sacrifice Y2 Cerulean\nMove G1 Wythrii Zoltar\nMove Y1 Wythrii Zoltar\n\n26) zoltar: Sacrifice Y3 Zoltar\nMove G1 Boysenberry Bitou\nMove G1 Bitou Cerulean\nMove G2 Bitou Cerulean\nCatastrophe Cerulean G\n\n\tzoltar: Play again?\n\tCerulean: I try to be in one game of each of SDG&#39;s offerings at a time.  No game at SDG is to my credit, though I&#39;ve had a hand in the modification of Generatorb and Numica.\n\tCerulean: Yikes!  I did not see that coming, but I did learn from it.  Time to whip out the pyramids and reconstruct that for an instant replay.\n\tzoltar: Yes, you should not leave just one color left in your homeworld, as a catastrophe will instantly be checkmate.  Hence your y2 piece was &#39;pinned&#39;.\n\nHomeworlds Online (SDG# 3794)\nStarted: 2006.7.3, Ended: 2006.7.27\nParticipants: Jesse (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\tJesse: Hello.  Sorry to take so long responding to your challenge; I&#39;ve been busy with Origins.\n\n2) Jesse: Homeworld R1 B3 G3\n\tzoltar: Greetings from Greenbelt, Milky Way!   Hope Origins was a lot of fun.  Did you get to play any Homeworlds there?  I wish I could have gone.\n\tJesse: Origins was, indeed, a lot of fun.  I didn&#39;t get to play as much Homeworlds as I would have liked, but the games I did play were excellent.  I very nearly won the tournament, but I pushed too hard at a critical point and Andy turned the attack and wiped me out in a very intense final game.\n\n3) zoltar: Build G1 Zoltar\n\tJesse: Okay, just testing.\n\n4) Jesse: Build G1 Jesse\n\n5) zoltar: Discover G1 Zoltar Y3 Banana\n\n6) Jesse: Trade G3 Y3 Jesse\n\n7) zoltar: Build G1 Zoltar\n\n8) Jesse: Build G2 Jesse\n\n9) zoltar: Build G2 Banana\n\n10) Jesse: Discover G2 Jesse B2 Republic\n\n11) zoltar: Discover G2 Banana B2 Grape\n\tJesse: Nice record.  I see you&#39;ve even beat TwoShort once.  From the commentary there, it sounds like you haven&#39;t been playing long, either.  Is that right?\n\n12) Jesse: Build G2 Republic\n\tzoltar: Two weeks, and yes I caught TwoShort off guard, but now he&#39;s back to pounding me again.  Still, it was my first win against an experienced player.  Also, in one game against Andy Looney (over the table last week), I blew up one of his stars before I died -- another first for me.  I&#39;m a chess player, and my favorite game is shogi, which is like a cross between chess and homeworlds, as the pieces you capture you get to drop in again later on the board as your own.  This is a really fun game and I&#39;m trying to learn it quickly, so I can take on Andy!\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Banana\nBuild G3 Grape\n\tJesse: Excellent!  I hope you rise in skill to where you can give us all a run for our money.  It will be nice to have a bigger pool of strong players to engage.  Climb on up the heap!\n\tJesse: I also like Shogi, though I have not had the opportunity to play with anyone who really knew what they were doing.  I even made my own Shogi set with westernized icons, which I quite like.\n\n14) Jesse: Trade G2 Y2 Republic\n\n15) zoltar: Trade G2 Y2 Grape\n\tzoltar: Hey, so have I:  I&#39;ve developed a shogi set out of Looney Labs pyramids that uses exactly 4 stashes, plus another stash of some solid color for promotions.  We should play shogi sometime, too!\n\tzoltar: Do you know the easiest place to play shogi online?  I haven&#39;t actually played a game in years, except when teaching people the game.\n\tJesse: Hmm, that&#39;s what I get for getting distracted and playing incautiously.  I&#39;ll have to start thinking seriously now.\n\tJesse: No, I don&#39;t know of anyplace to play Shogi online.\n\tzoltar: Yes, I learned about &quot;the Factory&quot; from TwoShort.  I&#39;ll check online -- I think there are servers in Japan that are free for playing shogi.  I&#39;ll let you know when I find out.\n\n16) Jesse: Build G2 Republic\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G2 Grape\nBuild Y1 Grape\nBuild G3 Zoltar\n\tzoltar: Hey, I found a shogi site, after a long, tough internet search:  there were several, but all in Japanese, so I had no idea how to sign up; finally I found a free one with an English option.  I boldly chose a starting rating of 1500, and then got trounced by two 1200 rated players.  Anyway, sign up and we&#39;ll play a game!  the site is http://www.shogidojo.com/eng/engindex.htm \n\tzoltar: Wow, those shogi players are all good.  I&#39;m now 0-6 and my rating has dropped from 1500 to 1358.  Cool site.  Didn&#39;t seen anyone else from the USA there either.  I thought I was better, but I guess my shogi rating is somewhere near the bottom as I&#39;ve yet to win a game -- maybe I haven&#39;t played in a while.\n\n18) Jesse: Discover G2 Republic Y3 Johny\n\tJesse: Looking at the equivalency between rating points and kyu/dan ranks, 1500 would be pretty darn good.  Their interface seems a little clunky to me, and they don&#39;t seem to have a real downloadable client, which is a drag for me on dial-up.  And, of course, there&#39;s a reason I made my set with westernized icons.  I have a great deal of difficulty distinguishing many of the pieces with the traditional markings.\n\tzoltar: Well, I&#39;m now at 1200, and have a record of 2-12!  I seem to be able to have a good game with those around 1000, and get clobbered by anyone over 1200.  You get used to the pieces really fast -- that&#39;s not so much a problem.  Dial-up?  That&#39;s sort of like having a phonograph instead of CD&#39;s isn&#39;t it? :)  Do you have a picture of your set online?  I&#39;d like to see.  In other news, I plan to take on Home-World Champion Andy Looney in person tonight...\n\n19) zoltar: Trade G1 R1 Zoltar\n\tzoltar: Well, if I know you are online, and you wait a minute for the client to load, we can try a game of shogi on the clunky site.  \n\tzoltar: My shogi rating has now dropped to 976 -- if I keep this up I will soon be in the negative numbers.\n\n20) Jesse: Trade G2 R2 Republic\n\tJesse: I hope you don&#39;t mind if I take my time in this game.  You&#39;ve got me in rather a bad situation.\n\tJesse: I don&#39;t have any pictures of my Shogi set online, but I should.  I&#39;ll take some.\n\n21) zoltar: Move G3 Banana Republic\n\n22) Jesse: Sacrifice G2 Johny\nBuild R1 Republic\nBuild Y1 Jesse\n\n23) zoltar: Build R2 Zoltar\n\n24) Jesse: Sacrifice Y2 Republic\nMove R2 Republic Banana\nDiscover R1 Republic G1 Plato&#39;s\n\n25) zoltar: Move Y2 Grape Plato&#39;s\n\n26) Jesse: Attack G1 Banana\n\n27) zoltar: Sacrifice R1 Zoltar\nAttack R1 Plato&#39;s\n\n28) Jesse: Build G2 Banana\n\n29) zoltar: Sacrifice G3 Grape\nBuild G2 Republic\nBuild G3 Grape\nBuild Y1 Grape\n\n30) Jesse: Build R1 Banana\n\n31) zoltar: Sacrifice G3 Republic\nBuild G3 Republic\nBuild Y2 Plato&#39;s\nBuild Y3 Plato&#39;s\n\n\tzoltar: You are outnumbered, Earthling!\n\tJesse: Yeah.  I really need to resign this one.  Sorry to take so long.\n\nHomeworlds Online (SDG# 3795)\nStarted: 2006.7.4, Ended: 2006.7.11\nParticipants: zoltar (S), JunkMan (N)\nWinner: zoltar\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld Y2 B3 G3\n\n\tzoltar: Greetingz Earthling, from Greenbelt, Milky Way\n\nHomeworlds Online (SDG# 3827)\nStarted: 2006.7.5, Ended: 2006.7.22\nParticipants: zoltar (S), Aaron (N)\nWinner: zoltar\n\n1) Aaron: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y2 B3 G3\n\n3) Aaron: Build G1 Aaron\n\n4) zoltar: Build G1 Zoltar\n\n5) Aaron: Trade G1 Y1 Aaron\n\n6) zoltar: Discover G1 Zoltar B1 Blueberry\n\n7) Aaron: Build G1 Aaron\n\n8) zoltar: Build G1 Zoltar\n\n9) Aaron: Trade G1 B1 Aaron\n\n10) zoltar: Discover G1 Zoltar R1 Raspberry\n\n11) Aaron: Discover B1 Aaron G3 Emeralds\n\n12) zoltar: Build G1 Zoltar\n\n13) Aaron: Build G2 Aaron\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) Aaron: Trade G2 R2 Aaron\n\n16) zoltar: Build G1 Zoltar\n\n17) Aaron: Move R2 Aaron Emeralds\n\n18) zoltar: Build G2 Raspberry\n\n19) Aaron: Build G2 Aaron\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild R1 Zoltar\n\n21) Aaron: Sacrifice G3 Aaron\nBuild G3 Aaron\nBuild R2 Emeralds\nBuild Y1 Aaron\n\n22) zoltar: Trade G2 Y2 Blueberry\n\n23) Aaron: Move Y1 Aaron Emeralds\n\n24) zoltar: Move R1 Zoltar Blueberry\n\n25) Aaron: Move R2 Emeralds Aaron\n\n26) zoltar: Trade G1 B1 Zoltar\n\n27) Aaron: Build B2 Emeralds\n\n28) zoltar: Move B1 Zoltar Raspberry\n\n29) Aaron: Discover G2 Aaron Y3 Bananas\n\n30) zoltar: Discover G1 Blueberry Y3 Pineapple\n\n31) Aaron: Build R2 Aaron\n\n32) zoltar: Build G1 Zoltar\n\n33) Aaron: Build G2 Aaron\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Zoltar\nBuild R3 Blueberry\n\n35) Aaron: Sacrifice G3 Aaron\nBuild G3 Aaron\nBuild R3 Emeralds\nBuild Y2 Emeralds\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Blueberry\nBuild B2 Raspberry\n\n37) Aaron: Move R2 Aaron Pineapple\n\n38) zoltar: Move Y3 Blueberry Pineapple\n\n39) Aaron: Move R2 Pineapple Aaron\n\n40) zoltar: Move G1 Pineapple Aaron\n\n41) Aaron: Sacrifice G2 Aaron\nBuild G2 Bananas\nPass\n\n42) zoltar: Sacrifice G1 Zoltar\nBuild G1 Aaron\n\n43) Aaron: Sacrifice R2 Aaron\nAttack G1 Aaron\nAttack G1 Aaron\n\n44) zoltar: Sacrifice Y2 Blueberry\nMove G1 Raspberry Pineapple\nMove G1 Pineapple Aaron\nCatastrophe Aaron G\n\n45) Aaron: Move R3 Emeralds Raspberry\n\n46) zoltar: Sacrifice B2 Raspberry\nTrade Y3 G3 Pineapple\nTrade R3 Y3 Blueberry\n\n47) Aaron: Sacrifice G2 Bananas\nBuild R2 Emeralds\nBuild R3 Aaron\n\tzoltar: Well, I guess I&#39;m committed now!\n\n48) zoltar: Sacrifice G2 Raspberry\nBuild Y2 Blueberry\nBuild G1 Pineapple\n\n49) Aaron: Attack B1 Raspberry\n\n50) zoltar: Move Y3 Blueberry Emeralds\n\n51) Aaron: Sacrifice Y1 Emeralds\nMove R3 Raspberry Bananas\n\tzoltar: Wow.  I totally missed your last move, Aaron.  This game is fascinating, and the most interesting and complex homeworlds game I&#39;ve played to date.  We almost exhausted the stash of pieces before I (prematurely) went bananas and started sacking things.  I&#39;ve recently learned and now have won a few games, even racking up an upset victory against a good player who played too fast, but I still can&#39;t even see one move ahead sometimes.  You play lots here: what are your favorite games?  This site is fantastic, and I ought to learn more of them.  I play japanese chess (shogi) and this reminds me of it.  I have even come up for a model of shogi that uses looneylabs pyramids, 4 stashes exactly, for a shogi set, which I think is preferable to the originals with japanese characters.  Do you know how hard it would be to add a pyramid game like that on this site?  It would use a 9x9 board.  As in this game, you can capture pieces and use them as yours, and the orientation of the piece determines to whom it belongs.  \n\tAaron: Homeworlds is one of the most difficult games to to wrap your head around.  This is one of my worst games, actually, but I do enjoy it occasionally.  I&#39;ve been watching your winning streak and am most impressed.  You have done remarkably well, especially now that I know you are just learning.  One day you&#39;ll have to have a go against AndyLooney, the creator and almost undefeated Homeworlds champion.  My favourite games would have to be Cannon and Alien City.  I do play often here as I am the site creator and maintainer.  I am very pleased that you are enjoying yourself.  That was the goal =)  I am always looking for new games to add and would be happy to have a look at your Icehouse Shogi.  Send me the rules if you can.  If you program in Perl, you can also have a go at it yourself by visiting the wiki and the API page.\n\n52) zoltar: Sacrifice R3 Zoltar\nAttack R2 Emeralds\nAttack R2 Emeralds\nAttack Y2 Emeralds\n\n53) Aaron: Sacrifice R2 Aaron\nAttack R2 Emeralds\nAttack R2 Emeralds\n\tzoltar: I will take at Canon and Alien City.  I plan to take on the champ Andy Looney soon.  Andy taught me the game in person, insisting that my chess and shogi enthusiasm would spill over to homeworlds;  I lost every game easily, and then came here to play and study the game.  Only after setting up a board and going over all of Andy, Jesse, and TwoShort&#39;s games did I start to win, so I&#39;m almost ready to try taking on Andy Looney again.  Btw, while Andy Looney is the creator of the Icehouse pyramids, I just won a game online against the actual creator of the Homeworlds game itself, John &quot;Gort&quot; Cooper!  As for Shogi, I don&#39;t program in Perl, so you or someone else would have to do all the hard work, but I&#39;ll send you an email with the rules and my mapping of icehouse pieces to shogi pieces. I think it would be perfect for this site.\n\n54) zoltar: Sacrifice G3 Pineapple\nBuild R2 Zoltar\nBuild R3 Blueberry\nBuild Y1 Blueberry\n\n55) Aaron: Attack Y2 Emeralds\n\tAaron: ooo, didn&#39;t expect that.\n\n56) zoltar: Sacrifice R2 Zoltar\nAttack R2 Emeralds\nAttack R2 Emeralds\n\tzoltar: Well, I didn&#39;t expect -that- either!  What a game!\n\n57) Aaron: Sacrifice R3 Bananas\nAttack R2 Emeralds\nAttack R2 Emeralds\nPass\n\tzoltar: Luckily, I can sac more than you can, if we keep this up!\n\n58) zoltar: Sacrifice R3 Blueberry\nAttack R2 Emeralds\nAttack R2 Emeralds\nAttack Y2 Emeralds\n\n59) Aaron: Sacrifice R3 Aaron\nAttack R2 Emeralds\nAttack R2 Emeralds\nAttack Y2 Emeralds\n\n60) zoltar: Move Y3 Emeralds Aaron\n\n\tAaron: *sighs*  I am so blind sometimes =/  *ponders deeply...*\n\tAaron: Nope.  If I had one more yellow piece I&#39;d have had a chance.  Very well done, zoltar!  You remain SDG&#39;s uber-champion =)  Thanks for the game!\n\nHomeworlds Online (SDG# 3831)\nStarted: 2006.7.5, Ended: 2006.7.13\nParticipants: MatrixFrog (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y1 B2 G3\n\tMatrixFrog: I think I&#39;m usually pretty bad, but I don&#39;t think I&#39;m usually THAT bad. Here goes.\n\n2) MatrixFrog: Homeworld B3 G1 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) zoltar: Discover G1 Zoltar Y3 Banana\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) zoltar: Build G1 Zoltar\n\n8) MatrixFrog: Discover Y1 Matrixfrog G2 Jeetoo\n\n9) zoltar: Build G2 Zoltar\n\n10) MatrixFrog: Build Y2 Jeetoo\n\n11) zoltar: Discover G2 Zoltar B3 Blueberry\n\n12) MatrixFrog: Discover Y1 Jeetoo B3 Bumble\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild G2 Banana\nBuild G3 Zoltar\nBuild G3 Blueberry\n\n14) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n15) zoltar: Trade G2 Y2 Blueberry\n\n16) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Matrixfrog\nBuild Y3 Bumble\nBuild Y3 Matrixfrog\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild G3 Banana\n\n18) MatrixFrog: Discover Y1 Matrixfrog B2 Earth\n\n19) zoltar: Trade G3 R3 Zoltar\n\n20) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n21) zoltar: Sacrifice G3 Banana\nBuild G3 Banana\nBuild G3 Zoltar\nBuild Y2 Blueberry\n\n22) MatrixFrog: Move Y1 Earth Bumble\n\n23) zoltar: Discover Y2 Blueberry B2 Boysenberry\n\n24) MatrixFrog: Build R1 Matrixfrog\n\n25) zoltar: Move Y2 Boysenberry Bumble\nCatastrophe Bumble Y\n\n26) MatrixFrog: Build Y1 Matrixfrog\n\n27) zoltar: Trade G3 R3 Blueberry\n\tMatrixFrog: Why did I not see that coming?!\n\n28) MatrixFrog: Discover Y1 Matrixfrog B2 Zip\n\n29) zoltar: Sacrifice G3 Banana\nBuild G3 Banana\nBuild G3 Blueberry\nBuild R1 Blueberry\n\n30) MatrixFrog: Move Y1 Zip Banana\n\n31) zoltar: Move R3 Blueberry Jeetoo\n\n32) MatrixFrog: Discover Y2 Jeetoo R3 Mordor\n\n33) zoltar: Trade G3 Y3 Blueberry\n\n34) MatrixFrog: Trade Y3 G3 Matrixfrog\n\tzoltar: Prepare to be boarded, Earthling!\n\n35) zoltar: Sacrifice G3 Banana\nBuild G3 Blueberry\nBuild R1 Jeetoo\nBuild R2 Blueberry\n\n36) MatrixFrog: Discover Y1 Banana R2 D2\n\n37) zoltar: Move G3 Blueberry D2\n\n38) MatrixFrog: Discover Y1 D2 B3 Alpha\n\n39) zoltar: Sacrifice Y3 Blueberry\nMove G1 Banana D2\nMove G1 D2 Matrixfrog\nMove G3 D2 Matrixfrog\nCatastrophe Matrixfrog G\n\n40) MatrixFrog: Trade R1 G1 Matrixfrog\n\n41) zoltar: Move R3 Zoltar Matrixfrog\n\n42) MatrixFrog: Build G1 Matrixfrog\n\tzoltar: Prepare to be boarded, Earthling!\n\n43) zoltar: Sacrifice R3 Jeetoo\nAttack R2 Matrixfrog\nAttack G1 Matrixfrog\nAttack G1 Matrixfrog\n\n\tzoltar: Rezizztanz ease few tile.  You have been assimilated.  :)  Play again?\n\nHomeworlds Online (SDG# 3835)\nStarted: 2006.7.7, Ended: 2006.8.4\nParticipants: josh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) josh: Homeworld R1 B2 G3\n\tzoltar: Greetingz, Earthling!\n\n3) zoltar: Build G1 Zoltar\n\n4) josh: Build G1 Josh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) josh: Trade G3 Y3 Josh\n\tzoltar: Wear ease Josh?  Pray pair four battle, hyu-maahn bean!\n\n7) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\tjosh: Sorry for the delay--I lost this email, and haven&#39;t spent enough time playing with this to figure out how to get here without clicking the email link :)\n\n8) josh: Build G1 Josh\n\tzoltar: No problem -- I figured you&#39;d just been very busy.\n\n9) zoltar: Build G1 Zoltar\n\n10) josh: Discover G1 Josh Y3 Jinx\n\n11) zoltar: Trade G1 R1 Zoltar\n\n12) josh: Build G1 Josh\n\n13) zoltar: Build G2 Zoltar\n\n14) josh: Build G2 Jinx\n\n15) zoltar: Move G2 Zoltar Jinx\n\n16) josh: Build G2 Jinx\nCatastrophe Jinx Green\n\n17) zoltar: Build R1 Zoltar\n\tzoltar: Jeez -- I just realized we&#39;re playing in the symmetrical small universe -- yuck!\n\n18) josh: Trade G1 B1 Josh\n\n19) zoltar: Build R2 Zoltar\n\n20) josh: Build G1 Josh\n\n21) zoltar: Trade R2 B2 Zoltar\n\tzoltar: Guns! Guns! I want Guns! \n\n\tzoltar: Then again, shape-shifters are nice too...\n\nHomeworlds Online (SDG# 3800)\nStarted: 2006.7.9, Ended: 2006.7.19\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Uglyfoot: Homeworld G3 B1 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) zoltar: Build G1 Zoltar\n\n6) Uglyfoot: Build Y1 Uglyfoot\n\n7) zoltar: Discover G1 Zoltar B3 Blueberry\n\n8) Uglyfoot: Discover Y1 Uglyfoot B2 Altair\n\n9) zoltar: Build G1 Zoltar\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) zoltar: Build G2 Blueberry\n\n12) Uglyfoot: Move Y2 Uglyfoot Altair\n\n13) zoltar: Trade G2 Y2 Blueberry\n\n14) Uglyfoot: Trade Y2 G2 Altair\n\n15) zoltar: Trade G1 R1 Zoltar\n\n16) Uglyfoot: Build Y2 Altair\n\n17) zoltar: Build Y2 Blueberry\n\n18) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n19) zoltar: Discover Y2 Blueberry B2 Boysenberry\n\n20) Uglyfoot: Discover Y2 Altair G3 Sinclair\n\n21) zoltar: Trade G1 B1 Zoltar\n\n22) Uglyfoot: Build G1 Altair\n\n23) zoltar: Build G1 Zoltar\n\n24) Uglyfoot: Discover G2 Altair R3 Eradani\n\n25) zoltar: Build G2 Blueberry\n\n26) Uglyfoot: Build G2 Eradani\n\n27) zoltar: Discover G1 Zoltar Y3 Proxima_iii\n\n28) Uglyfoot: Sacrifice G2 Eradani\nBuild Y1 Altair\nBuild Y3 Sinclair\n\n29) zoltar: Sacrifice G1 Proxima_iii\nBuild Y3 Boysenberry\n\n30) Uglyfoot: Build G1 Altair\n\n31) zoltar: Trade G1 B1 Blueberry\n\n32) Uglyfoot: Move Y1 Altair Eradani\n\n33) zoltar: Build B3 Blueberry\n\n34) Uglyfoot: Trade Y3 B3 Uglyfoot\n\n35) zoltar: Build Y3 Blueberry\n\n36) Uglyfoot: Move Y1 Eradani Boysenberry\n\n37) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Boysenberry Eradani\nMove B3 Blueberry Altair\n\n38) Uglyfoot: Sacrifice G2 Eradani\nBuild Y2 Boysenberry\nBuild G1 Altair\n\n39) zoltar: Sacrifice Y3 Eradani\nMove B1 Blueberry Altair\nMove B1 Altair Uglyfoot\nMove B3 Altair Uglyfoot\nCatastrophe Uglyfoot B\n\n40) Uglyfoot: Sacrifice Y2 Sinclair\nMove Y3 Sinclair Altair\nMove Y3 Altair Uglyfoot\n\n41) zoltar: Sacrifice Y3 Blueberry\nMove G2 Blueberry Boysenberry\nMove G2 Boysenberry Uglyfoot\nMove G3 Zoltar Uglyfoot\n\n42) Uglyfoot: Attack G3 Uglyfoot\n\n43) zoltar: Build G2 Uglyfoot\nCatastrophe Uglyfoot G\n\n\tzoltar: Great Party!  Thanks.  Play again?\n\nHomeworlds Online (SDG# 3825)\nVariants: &quot;Sinister&quot;\nStarted: 2006.7.9, Ended: 2006.8.13\nParticipants: Jesse (S), game_lover (N)\nWinner: Jesse\n\n1) game_lover: Homeworld Y3 G1 B3\n\n2) Jesse: Homeworld B3 R2 G3\n\n3) game_lover: Build B1 Game_lover\n\tJesse: Hello, there.  Welcome to SDG.  Have you played much Homeworlds, before?\n\tgame_lover: I&#39;ve played a little, but never on Super Duper Games.\n\n4) Jesse: Build G1 Jesse\n\n5) game_lover: Trade B1 G1 Game_lover\n\tJesse: Is there any chance I&#39;ve played you before, maybe at Origins?\n\tgame_lover: No. I&#39;ve never been to Origins.\n\n6) Jesse: Build G2 Jesse\n\n7) game_lover: Discover G1 Game_lover Y2 Origins\n\tJesse: OK, just curious.\n\tgame_lover: I think I&#39;ll name the systems after the gaming conventions (Origins, GenCon, Dragon*Con, etc.) since I can&#39;t think of anything else.\n\n8) Jesse: Trade G2 Y2 Jesse\n\n9) game_lover: Build B1 Game_lover\n\n10) Jesse: Build G2 Jesse\n\n11) game_lover: Move B1 Game_lover Origins\n\n12) Jesse: Discover G2 Jesse Y1 Katamari\n\n13) game_lover: Trade B1 R1 Origins\n\tgame_lover: What is &quot;Katamari&quot;? Or is it just a name?\n\n14) Jesse: Build G2 Jesse\n\tJesse: It&#39;s Japanese for &quot;lump&quot; or &quot;clod&quot;.  Also, Katamari Damashii (&quot;lump spirit&quot;) is one of the best video games ever.\n\n15) game_lover: Build R1 Origins\n\tgame_lover: how do I grow the R1 ship in Origins to an R2 ship. I tried &quot;build R2 Origins&quot; but that didn&#39;t work. Do you know how?\n\tgame_lover: &quot;trade R1 R2 Origins&quot; didn&#39;t work either\n\tgame_lover: Uh...nvm...apparently Homeworlds doesn&#39;t have a &quot;build-up&quot; power, just a &quot;build the smallest available ship&quot; power. I was thinking of IceTraders, the precessor to Homeworlds. Sorry!\n\n16) Jesse: Discover G2 Jesse B1 N_\n\tJesse: Yeah, this makes it much more about managing the piece economy.  Fortunately, I have no prior experience with IceTraders to distract me.  :)\n\n17) game_lover: Build G2 Origins\n\n18) Jesse: Build G3 N_\n\n19) game_lover: Build G3 Origins\n\n20) Jesse: Move G2 Katamari Origins\nCatastrophe Origins G\n\n21) game_lover: Build B1 Game_lover\n\n22) Jesse: Build G1 N_\n\tgame_lover: I wasn&#39;t sure if you&#39;d cath that, which is why I undid my last move. I decided to create a G3 at game_lover, but I couldn&#39;t do that, so I just made a G3 at Origins, and you saw the catastophe.\n\n23) game_lover: Trade B3 G3 Game_lover\n\n24) Jesse: Trade G2 R2 N_\n\tJesse: It&#39;s usually best not to rely on your opponent missing something, unless you&#39;re desperate.\n\n25) game_lover: Trade G3 R3 Game_lover\n\n26) Jesse: Build R1 N_\n\n27) game_lover: Trade R3 B3 Game_lover\n\tgame_lover: I&#39;m going to try this and see how it works...\n\n28) Jesse: Build G2 N_\n\n29) game_lover: Move B3 Game_lover Origins\n\tJesse: OK, you do realize that you just gave me 3 free moves, I hope.\n\n30) Jesse: Sacrifice Y2 Jesse\nMove G3 N_ Origins\nMove G3 Origins Game_lover\n\n\tJesse: I&#39;d offer to rewind the game, but at this point I think it would be better to begin again.\n\tgame_lover: OK. Well, I&#39;ll surrender. YOU WIN!\n\nHomeworlds Online (SDG# 3850)\nStarted: 2006.7.10, Ended: 2006.8.1\nParticipants: Keith (S), gluco (N)\nWinner: Keith\n\n1) gluco: Homeworld G3 B2 Y3\n\tKeith: Hello gluco.  My win/loss record is 2/5.  Though I think I can still give you something to kick and scream about.  Read the wiki for some good setup help.\n\tgluco: Thanks Keith.  Been dying to play this for a while now...\n\n2) Keith: Homeworld Y1 B3 G3\n\n3) gluco: Build Y1 Gluco\n\n4) Keith: Build G1 Keith\n\n5) gluco: Trade Y3 R3 Gluco\n\n6) Keith: Trade G1 Y1 Keith\n\n7) gluco: Discover Y1 Gluco G1 Alphacent\n\n8) Keith: Build G1 Keith\n\n9) gluco: Build Y2 Alphacent\n\n10) Keith: Trade G1 R1 Keith\n\n11) gluco: Build Y2 Alphacent\n\n12) Keith: Discover Y1 Keith G2 Midworld\n\n13) gluco: Move Y1 Alphacent Gluco\n\n14) Keith: Build G1 Keith\n\n15) gluco: Trade Y1 B1 Gluco\n\n16) Keith: Discover G1 Keith B2 Miranda\n\n17) gluco: Move Y2 Alphacent Gluco\n\n18) Keith: Build G1 Keith\n\n19) gluco: Move B1 Gluco Alphacent\n\n20) Keith: Build R1 Keith\n\n21) gluco: Trade Y2 R2 Alphacent\n\n22) Keith: Sacrifice G3 Keith\nBuild G2 Miranda\nBuild G2 Miranda\nBuild G3 Keith\n\n23) gluco: Build Y1 Gluco\n\tKeith: Are you familiar with &quot;the factory&quot; for accelerating ship building?\n\tgluco: No actually.  I take it that&#39;s what you just did with the sacrifice?\n\n24) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Keith\nBuild Y2 Midworld\n\tKeith: Correct.  If this were an unrated game I would be a bit more helpful in advance.\n\n25) gluco: Move Y1 Gluco Alphacent\n\tKeith: By helpful I mean informative.  I am now trying to deny you access to green ships and limiting your green access in general.\n\n26) Keith: Discover Y1 Midworld B1 Mist\n\tgluco: OK, helpful/informative is good.  If you sacrifice a size 3, you can only get it back if there are no smaller ones left in the reserve stash of that color, right?\n\tKeith: Sort of.  There could be up to two smaller green ships.  There were two G2s that I had to recruit back first to get to the G3.  No smaller green ships is better since I could have gone for other colors.  As it was I have 3 green ships in each sector.  That would be a severe catasrophe risk if you had a green ship.\n\n27) gluco: Build Y2 Alphacent\n\n28) Keith: Sacrifice G3 Keith\nBuild Y3 Midworld\nBuild Y3 Mist\nBuild G3 Keith\n\n29) gluco: Build Y3 Gluco\n\n30) Keith: Sacrifice Y2 Midworld\nMove Y1 Mist Gluco\nMove Y3 Mist Gluco\nCatastrophe Gluco Yellow\n\n31) gluco: Build R1 Alphacent\n\n32) Keith: Sacrifice Y3 Midworld\nMove G2 Miranda Alphacent\nMove G2 Miranda Alphacent\nMove G1 Miranda Alphacent\nCatastrophe Alphacent Green\n\tKeith: I am not sure you understand how the red ships work.  I can sacrfice an R1 in Keith and attack your R2 at Miranda with a G2.\n\tgluco: I didn&#39;t realize you could attack with a green ship\n\n33) gluco: Build R1 Gluco\n\tgluco: Thanks!  I&#39;ll try something else...\n\tKeith: The sacrifice gives me the power of that color in any sector.\n\tKeith: For example sacrificing a Y3 in Midworld would give me the power to make three ship moves anywhere.  I feel kind of bad about being heavy handed with my moves.  Think of them as lessons.  Hard ones though.  I prefer learning/teaching in unranked games.  The best way to take out a group of ships around a star is to take out the star.\n\n34) Keith: Discover R1 Keith Y2 Mote\n\n35) gluco: Trade R1 Y1 Gluco\n\tgluco: No prob - this is fun!  Thanks for your tips and your patience.  I will continue scheming...\n\tKeith: We could set up a non-ranked game sometime and take more time to develope our positions (and possible schemes).\n\n36) Keith: Move G1 Keith Mote\n\n37) gluco: Discover Y1 Gluco G1 Paloverde\n\tgluco: OK.  Let&#39;s do that after this game.  Thanks!\n\n38) Keith: Build G1 Keith\n\n39) gluco: Build R1 Gluco\n\n40) Keith: Discover G1 Mote Y1 Jacket\n\n41) gluco: Build Y2 Paloverde\n\n42) Keith: Sacrifice G3 Keith\nBuild G2 Jacket\nBuild G2 Jacket\nBuild R2 Mote\n\n43) gluco: Move Y2 Paloverde Gluco\n\n44) Keith: Move G1 Jacket Gluco\n\n45) gluco: Attack G1 Gluco\n\tKeith: Time to demo another destruction technique.\n\n46) Keith: Move G2 Jacket Gluco\n\tgluco: things are looking bad but must try something...\n\n47) gluco: Move G1 Gluco Paloverde\n\n48) Keith: Sacrifice G3 Keith\nBuild G2 Gluco\nBuild G3 Keith\nBuild G3 Gluco\nCatastrophe Gluco Green\n\n49) gluco: Trade R3 G3 Gluco\n\n50) Keith: Move R2 Mote Paloverde\n\n51) gluco: Discover Y1 Paloverde G2 Antietam\n\n52) Keith: Attack G1 Paloverde\n\n53) gluco: Build G2 Gluco\n\n54) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Jacket\nBuild R2 Paloverde\n\n55) gluco: Sacrifice Y2 Gluco\nMove G2 Gluco Keith\nMove G3 Gluco Keith\nCatastrophe Keith G\n\n56) Keith: Move G3 Jacket Gluco\n\n57) gluco: Build Y2 Antietam\n\tKeith: Wow.  I did not think you would be willing to lose your 3-pointer on defense at your home system.  \n\tKeith: You do have to be careful about exhausting your resources.  You lost a Y2, G3, and G2 while I lost a G3 and G1.  Also you now only have two one point ships and I have a 3-pointer and three two-pointers.  Though having only an r1 at home makes me nervous.\n\n58) Keith: Sacrifice R2 Paloverde\nAttack R1 Gluco\nPass\n\n\tKeith: Sacrificing a red gave me attack power in any sector I had ships.  Like the gluco sector.  Shall we try another game with slower development.  Perhaps unrated or with some restriction like no catastrophies until after turn 10 or 12?\n\tgluco: yea, it was a desperate move.  Alternatively, I could have taken the 2 red shis at the other star.  Maybe that would have been a better choice.\r\nThanks for the cool game!\n\tKeith:  Shall we try another game with slower development. Perhaps unrated or with some restriction like no catastrophies until after turn 10 or 12?\n\tgluco: By all means!  Would prefer to keep the rules unchanged, but we could keep it unrated.\n\tKeith: Okay, you have been challenged.\n\nHomeworlds Online (SDG# 3796)\nStarted: 2006.7.11, Ended: 2006.10.25\nParticipants: jeep (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) jeep: Homeworld Y3 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) jeep: Build G1 Jeep\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) zoltar: Build G1 Zoltar\n\n8) jeep: Build G1 Jeep\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) jeep: Discover G1 Jeep B1 Moon\n\n11) zoltar: Build G1 Zoltar\n\n12) jeep: Build G1 Jeep\n\n13) zoltar: Build G2 Zoltar\n\n14) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G2 Moon\nBuild G3 Jeep\n\n15) zoltar: Discover G2 Zoltar Y3 Investment\n\n16) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Jeep\nBuild G3 Moon\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild R1 Zoltar\n\n18) jeep: Trade G2 Y2 Moon\n\n19) zoltar: Sacrifice Y2 Zoltar\nMove G2 Investment Moon\nMove G2 Moon Jeep\nCatastrophe Jeep G\n\n20) jeep: Trade Y1 R1 Jeep\n\n21) zoltar: Build R2 Zoltar\n\n22) jeep: Sacrifice G3 Moon\nBuild Y1 Moon\nBuild Y2 Moon\nBuild Y3 Jeep\n\tjeep: I need to pay more attention.  I totally missed that.\n\n23) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\tzoltar: Well, everything ended up about even after the fireworks.\n\n24) jeep: Trade Y2 R2 Moon\n\tzoltar: Actually, looks like you came out way ahead.\n\n25) zoltar: Trade R2 Y2 Zoltar\n\n26) jeep: Trade Y1 B1 Jeep\n\tjeep: I don&#39;t think I am way ahead...\n\n27) zoltar: Discover Y2 Zoltar B3 Blueridge\n\tzoltar: Well, I lost three or four moves:  you have an extra 2-pip ship, you have two more ships moved out of your homeworld than I, and it&#39;s your move -- I&#39;ve still yet to do that well in the openings -- I thought my sack would put me up, but it seems to have cost me a couple of moves instead.\n\tzoltar: I&#39;m doing very well in my games, in fact, except in the opening -- where I often tend to end up playing catch up.\n\tzoltar: I&#39;ll have caught up if I can grab that huge yellow ship before you do.\n\n28) jeep: Build G1 Moon\n\n29) zoltar: Move R1 Zoltar Greenbelt\n\n30) jeep: Move G1 Moon Jeep\n\n31) zoltar: Build R2 Greenbelt\n\n32) jeep: Build G2 Moon\n\n33) zoltar: Discover R1 Greenbelt Y1 Yellowstone\n\n34) jeep: Discover G2 Moon Y3 Nationalpark\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild R2 Greenbelt\nBuild R3 Yellowstone\nBuild R3 Zoltar\n\n36) jeep: Build R3 Moon\n\n37) zoltar: Move R3 Yellowstone Nationalpark\n\n38) jeep: Sacrifice G2 Nationalpark\nBuild G2 Moon\nBuild G2 Jeep\n\tzoltar: I think I&#39;m toast now.\n\n39) zoltar: Sacrifice Y2 Blueridge\nMove R2 Greenbelt Moon\nMove R2 Greenbelt Moon\nCatastrophe Moon R\n\tzoltar: Ok, I can at put up a fight this way instead!\n\n40) jeep: Trade Y2 R2 Moon\n\n41) zoltar: Trade R3 G3 Zoltar\n\tjeep: There&#39;s a small chance I&#39;ll miss the deadline on this game.  I won&#39;t miss it by much, if you can be patient for this move.  Sorry if I do.\n\tzoltar: No problem; take all the time you need -- this is my most exciting game right now.\n\n42) jeep: Build Y2 Moon\n\tjeep: Squeaked in under the wire\n\n43) zoltar: Build Y2 Greenbelt\n\tjeep: But I should have taken some time, it appears...\n\n44) jeep: Discover Y2 Moon B3 Stage\n\n45) zoltar: Move G1 Zoltar Nationalpark\n\n46) jeep: Move G2 Moon Stage\n\n47) zoltar: Build R2 Nationalpark\n\n48) jeep: Sacrifice G2 Jeep\nBuild R2 Moon\nBuild R3 Jeep\n\n49) zoltar: Build R3 Zoltar\n\n50) jeep: Trade R3 G3 Jeep\n\n51) zoltar: Move R3 Nationalpark Moon\n\n52) jeep: Sacrifice G3 Jeep\nBuild G2 Stage\nBuild G2 Stage\nBuild G3 Jeep\n\n53) zoltar: Build R3 Nationalpark\n\n54) jeep: Sacrifice Y2 Stage\nMove R2 Moon Nationalpark\nMove R2 Moon Nationalpark\n\n55) zoltar: Sacrifice R2 Nationalpark\nAttack R2 Nationalpark\nAttack R2 Nationalpark\n\n56) jeep: Trade G2 R2 Stage\n\n57) zoltar: Move R3 Zoltar Stage\n\n58) jeep: Sacrifice G2 Stage\nBuild G2 Moon\nBuild Y2 Moon\n\n59) zoltar: Sacrifice R2 Nationalpark\nAttack Y2 Moon\nAttack Y1 Moon\n\tjeep: Haha, I&#39;m dumb...\n\n60) jeep: Sacrifice R2 Stage\nAttack Y2N Moon\nAttack Y1N Moon\n\n61) zoltar: Sacrifice R2 Nationalpark\nAttack G1 Moon\nAttack G2 Moon\n\n62) jeep: Sacrifice Y2 Moon\nDiscover G2 Stage B2 Bleh\nDiscover Y1 Moon B3 Bleck\n\tjeep: ??  Holy crap!  I SWEAR I typed catastrophe in that system!\n\tjeep: Well, I guess I&#39;ll just call foul and drag out the game hoping to get back into the game.\n\n63) zoltar: Sacrifice Y2 Greenbelt\nMove G2 Moon Jeep\nMove G1 Moon Jeep\nCatastrophe Jeep G\n\n64) jeep: Sacrifice G2 Bleh\nBuild Y2 Jeep\nBuild Y2 Bleck\n\n65) zoltar: Move Y1 Greenbelt Moon\n\tjeep: ??  That seems quite rude.  I printed out the game and was looking at it throughout the day and now I come in to find that you undid a day after you made the move?  Nice.\n\tjeep: FWIW, my opinion is that undo is fine if it happens relatively soon... but it shouldn&#39;t take a day to undo your move.\n\tzoltar: Sorry, I guess you&#39;re right -- I didn&#39;t realize you were looking at it, and figured you were out of town, and then thought, hey, that looks cooler.  Sorry about that.  I&#39;d undo it and do the other move now, but it won&#39;t let me do it again.\n\tjeep: Apology accepted.  I wasted quite a bit of time yesterday, though.  I often print out my homeworlds games in the morning and check in on it when I have time.  I then try to make my moves after work.\n\tjeep: Well, I suppose it doesn&#39;t really matter since I now have no shot because of the missed catastrophe (which I still think I typed in).\n\n66) jeep: Trade Y2 G2 Jeep\n\n67) zoltar: Trade R3 G3 Moon\n\tzoltar: That sucks about the catastrophe -- it&#39;s too bad there isn&#39;t an option to undo several moves and go on from there.  Though it&#39;s cool you actually print out the games -- I didn&#39;t realize anyone was so dedicated! That&#39;s great.\n\n68) jeep: Build R2 Jeep\n\n69) zoltar: Sacrifice G3 Moon\nBuild R2 Stage\nBuild R2 Nationalpark\nBuild R3 Yellowstone\n\n70) jeep: Discover Y1 Bleck Y2 Store\n\n71) zoltar: Move R3 Nationalpark Store\n\n72) jeep: Discover Y1 Store G3 Whatever\n\n73) zoltar: Build G1 Nationalpark\n\n74) jeep: Build B2 Jeep\n\n75) zoltar: Trade R3 B3 Stage\n\n76) jeep: Discover Y2 Bleck G1 Sigh\n\n77) zoltar: Build R3 Nationalpark\n\n78) jeep: Move B1 Jeep Sigh\n\n79) zoltar: Move Y1 Moon Stage\n\n80) jeep: Build B1 Sigh\n\n81) zoltar: Move B3 Stage Yellowstone\n\n82) jeep: Build G2 Jeep\n\n83) zoltar: Move G1 Nationalpark Yellowstone\n\n84) jeep: Move G2 Jeep Sigh\n\tjeep: I should have just resigned this game after the missed catastrophe... I haven&#39;t had fun with it since. \n\n85) zoltar: Move R3 Nationalpark Sigh\n\n86) jeep: Discover Y2 Sigh B3 Apathy\n\n87) zoltar: Sacrifice R3 Yellowstone\nAttack G2 Sigh\nAttack B1 Sigh\nAttack B1 Sigh\n\tjeep: I&#39;m here debating my move.  I&#39;ll move in minutes.\r\n\n\n88) jeep: Build G2 Jeep\n\n89) zoltar: Sacrifice G2 Sigh\nBuild G2 Zoltar\nBuild R3 Yellowstone\n\n90) jeep: Move G2 Jeep Yellowstone\n\n91) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Nationalpark\nBuild B2 Yellowstone\n\n92) jeep: Move G2 Yellowstone Apathy\n\n93) zoltar: Move G1 Nationalpark Store\n\n94) jeep: Sacrifice G2 Jeep\nBuild G2 Apathy\nPass\n\n95) zoltar: Move G2 Zoltar Stage\n\n96) jeep: Move R1 Jeep Yellowstone\n\n97) zoltar: Sacrifice R1 Yellowstone\nAttack R1 Yellowstone\n\n98) jeep: Sacrifice G2 Apathy\nBuild R1 Jeep\nBuild G2 Apathy\n\n99) zoltar: Move R2 Nationalpark Store\n\n100) jeep: Move R1 Jeep Yellowstone\n\n101) zoltar: Sacrifice R1 Yellowstone\nAttack R1 Yellowstone\n\n102) jeep: Sacrifice G2 Apathy\nBuild R1 Jeep\nBuild G2 Apathy\n\n103) zoltar: Sacrifice G3 Nationalpark\nBuild G3 Store\nBuild Y3 Stage\nPass\n\n104) jeep: Sacrifice G2 Apathy\nBuild G2 Apathy\nPass\n\n105) zoltar: Move R3 Store Apathy\n\n106) jeep: Sacrifice Y2 Apathy\nMove G2 Apathy Sigh\nMove G2 Sigh Jeep\n\n107) zoltar: Build Y2 Stage\n\n108) jeep: Sacrifice G2 Apathy\nBuild G2 Jeep\nPass\n\n109) zoltar: Move Y1 Stage Sigh\n\n110) jeep: Sacrifice G2 Jeep\nBuild G2 Jeep\nPass\n\n111) zoltar: Move Y2 Stage Sigh\n\n112) jeep: Sacrifice G2 Jeep\nBuild G2 Jeep\nPass\n\n113) zoltar: Sacrifice Y3 Stage\nMove Y1 Sigh Jeep\nMove Y2 Sigh Jeep\nMove B3 Yellowstone Jeep\nCatastrophe Jeep Y\n\tjeep: Wow, trying to drag the game on as long as possible?  I know that I&#39;m just playing because I&#39;m hoping you make an error as big as mine...\n\tjeep: Wow, trying to drag the game on as long as possible?  I know that I&#39;m just playing because I&#39;m hoping you make an error as big as mine...\n\n\nHomeworlds Online (SDG# 3854)\nStarted: 2006.7.12, Ended: 2006.9.4\nParticipants: Cerulean (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) Cerulean: Homeworld B3 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Cerulean: Build G1 Cerulean\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Cerulean: Trade G1 B1 Cerulean\n\n7) zoltar: Build G1 Zoltar\n\n8) Cerulean: Build G1 Cerulean\n\n9) zoltar: Build Y1 Zoltar\n\tCerulean: And away I go!  http://forums.superdupergames.org/viewtopic.php?t=294\n\n10) Cerulean: Trade G1 R1 Cerulean\n\n11) zoltar: Trade G1 R1 Zoltar\n\n12) Cerulean: Build G1 Cerulean\n\n13) zoltar: Build G1 Zoltar\n\n14) Cerulean: Discover G1 Cerulean Y2 Wytou\n\n15) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n16) Cerulean: Discover G1 Wytou Y3 Wythrii\n\n17) zoltar: Build Y2 Zoltar\n\n18) Cerulean: Build G1 Wythrii\n\n19) zoltar: Trade G1 B1 Zoltar\n\n20) Cerulean: Build B2 Cerulean\n\n21) zoltar: Build Y2 Greenbelt\n\n22) Cerulean: Discover B1 Cerulean G2 Jetou\n\n23) zoltar: Move Y2 Greenbelt Jetou\n\n24) Cerulean: Build G1 Wythrii\n\n25) zoltar: Build Y3 Jetou\n\n26) Cerulean: Move G1 Wythrii Zoltar\n\n27) zoltar: Trade Y2 R2 Zoltar\n\n28) Cerulean: Build G2 Zoltar\n\n29) zoltar: Attack G2 Zoltar\n\tzoltar: Uh-ooh!\n\n30) Cerulean: Build G2 Zoltar\nCatastrophe Zoltar G\n\n31) zoltar: Build Y2 Greenbelt\n\tzoltar: Yup I think I&#39;m dead\n\n32) Cerulean: Sacrifice B1 Jetou\nTrade G1 B1 Wythrii\n\tzoltar: As Kermit said, &quot;It&#39;s not easy being green&quot;\n\n33) zoltar: Move Y3 Jetou Wythrii\n\tzoltar: Nope, I have nothing better.\n\n34) Cerulean: Trade G1 R1 Wythrii\n\n35) zoltar: Sacrifice R2 Zoltar\nAttack B1 Wythrii\nAttack R1 Wythrii\n\tzoltar: ouch\n\n36) Cerulean: Build G1 Cerulean\n\n37) zoltar: Build Y3 Greenbelt\n\n38) Cerulean: Build R2 Cerulean\n\n39) zoltar: Trade B1 G1 Zoltar\n\n40) Cerulean: Discover R1 Cerulean B2 Bitou\n\n41) zoltar: Build R2 Zoltar\n\tzoltar: Zee Yellow fleet ease mine, awl mine!  Whew Who!\n\n42) Cerulean: Move G1 Cerulean Bitou\n\n43) zoltar: Move R1 Zoltar Greenbelt\n\n44) Cerulean: Build R2 Bitou\n\n45) zoltar: Build R3 Zoltar\n\n46) Cerulean: Build R3 Cerulean\n\n47) zoltar: Build R3 Greenbelt\n\n48) Cerulean: Trade R1 B1 Bitou\n\n49) zoltar: Build R1 Greenbelt\n\n50) Cerulean: Move R3 Cerulean Jetou\n\n51) zoltar: Move Y2 Jetou Wythrii\n\n52) Cerulean: Build G1 Bitou\n\n53) zoltar: Build G2 Zoltar\n\n54) Cerulean: Build G2 Cerulean\n\n55) zoltar: Build G3 Zoltar\n\n56) Cerulean: Pass\n\tzoltar: Yikes!  Retreat!!!\n\n57) zoltar: Sacrifice G2 Zoltar\nBuild B2 Wythrii\nBuild B3 Wythrii\n\n58) Cerulean: Build G2 Bitou\n\n59) zoltar: Move B3 Wythrii Zoltar\n\n60) Cerulean: Pass\n\n61) zoltar: Build B3 Zoltar\n\n62) Cerulean: Pass\n\n63) zoltar: Move B3 Zoltar Greenbelt\n\n64) Cerulean: Pass\n\n65) zoltar: Move G1 Zoltar Wythrii\n\n66) Cerulean: Pass\n\n67) zoltar: Move Y3 Greenbelt Bitou\n\tzoltar: m b3 zoltar greenbelt\n\n68) Cerulean: Sacrifice B1 Bitou\nTrade G1 B1 Bitou\n\n69) zoltar: Build G1 Zoltar\n\n70) Cerulean: Sacrifice B1 Bitou\nTrade G1 B1 Bitou\n\n71) zoltar: Sacrifice R3 Zoltar\nAttack R2 Bitou\nAttack G2 Bitou\nAttack B1 Bitou\n\n72) Cerulean: Build R3 Cerulean\n\tzoltar: Zoltarian forces storm zee Bitou beach...\n\n73) zoltar: Sacrifice Y3 Wythrii\nMove B1 Wythrii Bitou\nMove B1 Bitou Cerulean\nMove B1 Bitou Cerulean\nCatastrophe Cerulean B\n\n74) Cerulean: Move R3 Cerulean Wythrii\n\n75) zoltar: Sacrifice Y3 Bitou\nMove Y2 Wythrii Cerulean\nMove Y2 Greenbelt Cerulean\nMove Y1 Greenbelt Cerulean\nCatastrophe Cerulean Y\n\n\tzoltar: Thanx4 zee game, hyu-maahn bean.  That was fun!\n\nHomeworlds Online (SDG# 3877)\nStarted: 2006.7.17, Ended: 2006.7.21\nParticipants: Personman (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Personman: Homeworld B3 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Personman: Build G1 Personman\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Personman: Trade G3 Y3 Personman\n\n7) zoltar: Build Y2 Zoltar\n\n8) Personman: Build Y2 Personman\n\n9) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n10) Personman: Discover Y2 Personman G2 Alves\n\n11) zoltar: Build G1 Zoltar\n\n12) Personman: Build G1 Personman\n\n13) zoltar: Discover G1 Zoltar Y3 Investment\n\n14) Personman: Discover G1 Personman B2 Cobaltmere\n\n15) zoltar: Build G2 Zoltar\n\n16) Personman: Build G2 Cobaltmere\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Investment\nBuild Y2 Greenbelt\n\n18) Personman: Sacrifice G2 Cobaltmere\nBuild Y3 Alves\nBuild G2 Personman\n\n19) zoltar: Discover Y1 Greenbelt B2 Blueberry\n\n20) Personman: Trade G1 R1 Personman\n\n21) zoltar: Trade G2 R2 Zoltar\n\n22) Personman: Build R1 Personman\n\n23) zoltar: Sacrifice G3 Investment\nBuild G1 Investment\nBuild G2 Investment\nBuild G3 Zoltar\n\n24) Personman: Sacrifice Y2 Alves\nMove G1 Cobaltmere Investment\nMove R1 Personman Blueberry\nCatastrophe Investment G\n\n25) zoltar: Move Y1 Blueberry Personman\n\n26) Personman: Move Y3 Personman Blueberry\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Personman\nBuild R1 Zoltar\n\n28) Personman: Discover Y3 Alves G3 Luitpold\n\n29) zoltar: Sacrifice R2 Zoltar\nAttack G2 Personman\nAttack R1 Personman\n\tzoltar: Oh what the heck: let&#39;s go for the wild, exciting variation!\n\n\tzoltar: Whoops!  I think you needed to move back to your homeworld with that Y3 instead, in order to blow up my yellow ships!  \n\tPersonman: Oh. Indeed. I completely missed the R2. Oh well, that&#39;s how you learn. Thanks for these games, by the way!\n\nHomeworlds Online (SDG# 3888)\nStarted: 2006.7.20, Ended: 2006.7.25\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) Uglyfoot: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) zoltar: Build G1 Zoltar\n\n8) Uglyfoot: Discover G1 Uglyfoot Y2 Nexus\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Uglyfoot: Trade G1 R1 Uglyfoot\n\n11) zoltar: Build G1 Zoltar\n\n12) Uglyfoot: Build G1 Uglyfoot\n\n13) zoltar: Build G2 Zoltar\n\n14) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Nexus\nBuild G2 Nexus\nBuild G3 Uglyfoot\n\n15) zoltar: Trade G2 Y2 Zoltar\n\n16) Uglyfoot: Discover G2 Nexus R3 Sanguine\n\n17) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n18) Uglyfoot: Discover G2 Nexus B3 Extension\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n20) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Greenbelt\nBuild Y3 Greenbelt\n\n22) Uglyfoot: Build G3 Extension\n\n23) zoltar: Trade Y1 B1 Zoltar\n\n24) Uglyfoot: Sacrifice G3 Extension\nBuild Y1 Uglyfoot\nBuild R1 Uglyfoot\nBuild G3 Extension\n\n25) zoltar: Sacrifice Y3 Greenbelt\nMove Y1 Zoltar Greenbelt\nMove Y1 Greenbelt Nexus\nMove Y1 Nexus Uglyfoot\nCatastrophe Uglyfoot Y\n\n26) Uglyfoot: Trade G3 Y3 Extension\n\n27) zoltar: Sacrifice Y3 Greenbelt\nMove B1 Zoltar Uglyfoot\nMove G1 Zoltar Uglyfoot\nMove G2 Zoltar Uglyfoot\n\n28) Uglyfoot: Sacrifice G2 Sanguine\nBuild G2 Uglyfoot\nBuild G3 Extension\nCatastrophe Uglyfoot G\n\tzoltar: Party at Uglyfoot&#39;s! Party at Uglyfoot&#39;s! All ships welcome!\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild B1 Uglyfoot\nBuild B2 Uglyfoot\nBuild B2 Uglyfoot\nCatastrophe Uglyfoot B\n\tUglyfoot: Die invading scum!\n\tzoltar: What a blast!  Play again, Earthling?\n\n\nHomeworlds Online (SDG# 3857)\nStarted: 2006.7.21, Ended: 2006.9.16\nParticipants: Gort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y2 G3\n\n2) Gort: Homeworld G3 Y1 R3 *\n\tzoltar: Greetingz, primitive carbon waterbag unit!\n\tGort: Hey, Zoltar. I got yer mail. Lots of ads from Alpha Centuri and a few bills from the Intergalactic Overlord Guild.\n\n3) zoltar: Build G1 Zoltar\n\n4) Gort: Build R1 Gort\n\n5) zoltar: Build G1 Zoltar\n\n6) Gort: Discover R1 Gort Y2 Yoohoo\n\n7) zoltar: Trade G1 R1 Zoltar\n\n8) Gort: Discover R1 Yoohoo Y1 Yippee\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) Gort: Discover R1 Yippee B3 Boohoo\n\tzoltar: All reds this game so far?  What are you up to, Gort?\n\n11) zoltar: Build Y1 Zoltar\n\n12) Gort: Build R1 Gort\n\n13) zoltar: Build R2 Zoltar\n\n\tzoltar: You can&#39;t even make a move in 10 daze, Gort?  You musta fallen into a wormhole or something.  Heh!\n\tzoltar: Eat haz now bean 17 daze scenes dare haz bean any activity buy zee Gortianz.  Perhapz day hour een a regenerashun cycle.\n\tzoltar: Eat haz now bean 38 daze scenes dare haz bee nanny act tea vitty buy Gort.  Zoltar haz lozz pay shins! Zoltar veal now terminate zee Gortian Univerz! Bwahahaha!\n\nHomeworlds Online (SDG# 3896)\nStarted: 2006.7.21, Ended: 2006.7.29\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Trade G1 Y1 Personman\n\n6) zoltar: Build G1 Zoltar\n\n7) Personman: Discover Y1 Personman G3 Serpolet\n\n8) zoltar: Trade G3 Y3 Zoltar\n\n9) Personman: Discover Y1 Serpolet R1 Vriko\n\n10) zoltar: Discover G1 Zoltar B1 Blueridge\n\n11) Personman: Move Y1 Vriko Zoltar\n\n12) zoltar: Trade Y3 R3 Zoltar\n\tzoltar: Yikes!  That&#39;s pretty early to attack!\n\n13) Personman: Discover Y1 Zoltar B1 Soubridge\n\tzoltar: Red Alert!\n\n14) zoltar: Build R1 Zoltar\n\n15) Personman: Build G1 Personman\n\n16) zoltar: Build G2 Blueridge\n\n17) Personman: Trade G1 R1 Personman\n\n18) zoltar: Trade G2 Y2 Blueridge\n\n19) Personman: Build R1 Personman\n\n20) zoltar: Trade R1 B1 Zoltar\n\n21) Personman: Build G1 Personman\n\n22) zoltar: Build G2 Blueridge\n\n23) Personman: Discover G1 Personman Y3 Hope\n\n24) zoltar: Trade G2 B2 Blueridge\n\n25) Personman: Build G2 Personman\n\n26) zoltar: Build B3 Blueridge\n\n27) Personman: Discover G2 Personman Y3 Thing_50\n\n28) zoltar: Trade B3 R3 Blueridge\n\n29) Personman: Build G2 Personman\n\n30) zoltar: Move R3 Blueridge Thing_50\n\n31) Personman: Move G2 Thing_50 Blueridge\n\n32) zoltar: Build B3 Blueridge\n\n33) Personman: Trade G2 Y2 Blueridge\n\n34) zoltar: Trade B3 R3 Blueridge\n\n35) Personman: Discover Y2 Blueridge B3 Run\n\n36) zoltar: Build B3 Blueridge\n\tzoltar: Warning! Warning! Danger Will Robinson!\n\tPersonman: Wait woah. That is totally not what I meant to do last turn. It was supposed to be an r2, no a y2... oh well.\n\n37) Personman: Discover G1 Hope Y2 Montrouge\n\n38) zoltar: Trade B3 Y3 Blueridge\n\tzoltar: Hmm. I might have still made the same move, and traded for an R3:  if you sacked your R2 to attack two ships (or kept the R2 and attacked one of them), I would sack my new R3 and take back the two ships; I would have lost my R3 for your R2 but  in two turns I could build a B3 and trade it for the R3 again.  I love the way this game makes us think!\n\tzoltar: Btw, I&#39;ve learned to look at the board after I make my move.  Then if it&#39;s wrong, or now that the piece has moved, I see a flaw in my analysis, then I can change the move.  It would be an improvement to see your move first and then click to either finalize it or change it, and also be able to change it as many times as you&#39;d like before you finalize it. \n\n39) Personman: Build G2 Montrouge\n\n40) zoltar: Build B3 Zoltar\n\n41) Personman: Move G2 Montrouge Run\n\n42) zoltar: Move Y3 Blueridge Run\n\n43) Personman: Sacrifice G2 Run\nBuild G2 Montrouge\nBuild Y1 Run\n\n44) zoltar: Trade B3 G3 Zoltar\n\n45) Personman: Move Y1 Soubridge Zoltar\n\n46) zoltar: Sacrifice R3 Zoltar\nAttack Y1 Zoltar\nAttack Y1 Run\nAttack Y2 Run\n\n47) Personman: Trade R1 B1 Personman\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild B3 Blueridge\n\n49) Personman: Build R1 Personman\n\tzoltar: Zee Yellow shipz are mine! Awl mine!\n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Zoltar\nBuild G3 Blueridge\n\n51) Personman: Discover G2 Montrouge R3 Ha\n\n52) zoltar: Move B3 Blueridge Ha\n\n53) Personman: Build R1 Personman\n\n54) zoltar: Move B2 Blueridge Thing_50\n\n55) Personman: Move R1 Personman Run\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Thing_50\nBuild R2 Blueridge\n\tzoltar: Very sneaky, trying to deny the Great Galactic Overlord Zoltar of zee last Red battle cruiser!  Soon zee Galaxy will be mine!  (Insert Evil Overlord Laughter here)\n\n57) Personman: Attack Y1 Run\n\n58) zoltar: Sacrifice R3 Blueridge\nAttack G2 Ha\nAttack R1 Run\nAttack Y1 Run\n\n59) Personman: Build R2 Personman\n\n60) zoltar: Sacrifice G2 Zoltar\nBuild G2 Ha\nBuild R3 Run\n\n61) Personman: Sacrifice B1 Personman\nPass\n\n62) zoltar: S Y3 Run\nMove R1 Run Personman\nMove G2 Ha Personman\nMove G2 Ha Personman\nCatastrophe Personman R\nCatastrophe Personman G\n\tzoltar: Resistance is futile: You will be assimilated!\n\n\tPersonman: In hopes for kind treatment in the aftermath, I offer up a sacrifice for my new leaders. \n\tzoltar: In that case, we will have a big party at Personman!   All ships welcome!  Lots of food, beer, and green Star Trek Orion belly dancers!  It will be a blast!   Play again? \n\nHomeworlds Online (SDG# 3897)\nStarted: 2006.7.21, Ended: 2006.8.8\nParticipants: Keith (S), MrStickman (N)\nWinner: Keith\n\n1) MrStickman: Homeworld G1 B2 Y3\n\n2) Keith: Homeworld Y3 B1 G3\n\tMrStickman: Hi, Keith! Good luck!\n\tKeith: Hello MrStickman.  I am more familiar with your forum posts than your game playing.   \n\n3) MrStickman: Build Y1 Mrstickman\n\n4) Keith: Build G1 Keith\n\tMrStickman: I guees we haven&#39;t played each other yet. Well met, then.\n\n5) MrStickman: Build Y1 Mrstickman\n\n6) Keith: Trade G1 Y1 Keith\n\n7) MrStickman: Trade Y1 B1 Mrstickman\n\n8) Keith: Build G1 Keith\n\n9) MrStickman: Discover B1 Mrstickman G3 Lorem\n\n10) Keith: Discover Y1 Keith G2 Midworld\n\n11) MrStickman: Trade Y1 R1 Mrstickman\n\n12) Keith: Trade G1 R1 Keith\n\n13) MrStickman: Build Y1 Mrstickman\n\n14) Keith: Build G1 Keith\n\n15) MrStickman: Move Y1 Mrstickman Lorem\n\tMrStickman: Sorry for delays. Moving == spotty internet.\n\n16) Keith: Trade G1 B1 Keith\n\tKeith: Darn!  I was hoping it was the strength of my play that was giving you pause.  ;-)   Moving is a drag even when it is an opportunity.  You have my sympathy.  Thank you for the notice.  I had wondered.\n\n17) MrStickman: Build B2 Lorem\n\n18) Keith: Move B1 Keith Midworld\n\n19) MrStickman: Trade B1 G1 Lorem\n\n20) Keith: Trade B1 G1 Midworld\n\tMrStickman: To make matters worse, I think I may have broken my personal PC earlier recently. There was swearing. OTOH, I *think* I have an antique that&#39;ll be functional enough for internet and possibly even a little coding project (I want to try my hand at coding for SDG.) But that can all wait a few weeks.\n\tKeith: Uh-oh.  How broke is broke?  What kind of coding project for SDG.  Do you have a game you are going to get put on the site?  You are doing a very good job of resource management.  I bit the bullet and knew you would get a two pointer but you have immediately put me back in the same situation.\n\n21) MrStickman: Discover B2 Lorem G2 Ipsum\n\n22) Keith: Build G2 Keith\n\tMrStickman: &quot;Broken&quot; in this case means &quot;the motherboard started comitting child abuse.&quot; It managed to kill the hard drive before Child Services stepped in and put the other components in foster care.\r\n&quot;Antique&quot; in this case means the old Pentium I can put Windows 95 (eww) on and use to write Perl (which runs everywhere).\r\n&quot;Coding Project&quot; refers to the handful of games I&#39;d really love to see implemented. Aaron (bless his heart for making this site) seems to have his hands full with maintenance, and I&#39;m a programmer who&#39;s been kinda curious about Perl anyway, so I&#39;ll try my hand at it.\r\nThank you for the kind words. I&#39;ve learned Homeworlds is really played in the stash.\n\tMrStickman: Drat. The chat window doesn&#39;t preserve newlines.\n\tMrStickman: This is a test please ignore it.\r\n&lt; gt &gt; lt &amp; amp &#39; apos &quot; quot\n\n23) MrStickman: Build B1 Ipsum\n\tKeith: I have never been able to get line breaks which is why I had my topics all mashed together.  I think that may have been fixed.\r\n\r\nTime to test.\r\n\n\tKeith: &quot;Broken&quot; - I am on my third mother board..\r\n\r\n&quot;Coding Project&quot; - I am not a programmer.  My second to last programming class used punch cards.  However, in the interest of extracting information from the Cannon game database I have, with Aaron&#39;s guidence, acquired Perl, the database, and the &quot;lama book&quot; Learning Perl.\n\n24) Keith: Sacrifice G2 Keith\nBuild G2 Midworld\nBuild G3 Keith\n\tMrStickman: The newlines are fixed. Thank God (or just Aaron). One of my internet pet peeves are self-publishers that don&#39;t ever hit the Enter key.\n\n25) MrStickman: Move G1 Lorem Midworld\nCatastrophe Midworld Green\n\n26) Keith: Trade G3 R3 Keith\n\n27) MrStickman: Build Y1 Lorem\n\n28) Keith: Move R3 Keith Ipsum\n\n29) MrStickman: Sacrifice Y1 Lorem\nDiscover B2 Ipsum G1 Dolor\n\n30) Keith: Attack B1 Ipsum\n\n31) MrStickman: Build Y1 Lorem\n\n32) Keith: Trade B1 Y1 Ipsum\n\n33) MrStickman: Build Y2 Mrstickman\n\n34) Keith: Build Y2 Ipsum\n\n35) MrStickman: Sacrifice Y2 Mrstickman\nMove Y1 Lorem Ipsum\nMove Y1 Lorem Ipsum\nCatastrophe Ipsum Yellow\n\n36) Keith: Build G1 Keith\n\n37) MrStickman: Build B1 Dolor\n\n38) Keith: Trade G1 Y1 Keith\n\n39) MrStickman: Build B1 Dolor\n\n40) Keith: Move Y1 Keith Ipsum\n\n41) MrStickman: Trade B2 Y2 Dolor\n\n42) Keith: Move R3 Ipsum Dolor\n\n43) MrStickman: Sacrifice Y2 Dolor\nDiscover B1 Dolor G2 Sit\nDiscover B1 Dolor Y2 Amet\n\n44) Keith: Build G1 Keith\n\n45) MrStickman: Build B2 Sit\n\n46) Keith: Trade G1 Y1 Keith\n\n47) MrStickman: Trade Y3 B3 Mrstickman\n\n48) Keith: Sacrifice Y1 Keith\nMove R3 Dolor Sit\n\tKeith: I have not yet fathomed what is going on with all the blue.\n\n49) MrStickman: Build B2 Sit\n\n50) Keith: Attack B2 Sit\n\n51) MrStickman: Build B3 Sit\n\n52) Keith: Attack B3 Sit\n\n53) MrStickman: Build B3 Mrstickman\nCatastrophe Sit Blue\n\n54) Keith: Build G1 Keith\n\tKeith: ahh... I should have triggered the catastrophe to keep you away from the b3.\n\n55) MrStickman: Trade B3 Y3 Mrstickman\n\n56) Keith: Trade G1 Y1 Keith\n\n57) MrStickman: Build B1 Mrstickman\n\n58) Keith: Move Y1 Keith Sit\n\n59) MrStickman: Discover B3 Mrstickman R3 Adipiscing\n\n60) Keith: Build G1 Keith\n\n61) MrStickman: Build B2 Mrstickman\n\n62) Keith: Build Y1 Sit\n\n63) MrStickman: Trade B2 G2 Mrstickman\n\n64) Keith: Build Y2 Ipsum\n\n65) MrStickman: Build B2 Mrstickman\n\n66) Keith: Discover Y1 Sit B3 Belle\n\n67) MrStickman: Move G2 Mrstickman Adipiscing\n\n68) Keith: Discover Y2 Ipsum B3 Ping\n\n69) MrStickman: Build B2 Adipiscing\n\n70) Keith: Sacrifice G1 Keith\nBuild Y2 Belle\n\n71) MrStickman: Trade B3 Y3 Adipiscing\n\n72) Keith: Move Y1 Belle Mrstickman\n\n73) MrStickman: Attack Y1 Mrstickman\n\n74) Keith: Sacrifice Y1 Sit\nMove Y2 Belle Mrstickman\n\n75) MrStickman: Discover Y1 Mrstickman G3 Elit\n\tMrStickman: I&#39;m not sure where you&#39;re going with this. I suppose that means you deserve whatever you&#39;re trying to get...\n\tKeith: I said the same thing about your blue intentions... and bobbled it.  Maybe the next move will make it more obvious.\n\n76) Keith: Sacrifice R3 Sit\nAttack B2 Mrstickman\nAttack B1 Mrstickman\nAttack R1 Mrstickman\n\n77) MrStickman: Trade Y3 R3 Mrstickman\n\tMrStickman: Well, I think I caught it, but I&#39;m not sure I&#39;m fast enough to stop it all....\n\tKeith: Maybe.  If I move another y2 in and you convert it I build one and create a yellow catastrophe.  (Thus the sacrifice of a y1 to move a y2 so I had a yellow to build.)  If you move the Y3 out I move my R3 in and start converting.  However, if you let me move a fourth yellow in and catastrophe you can then move your Y3 back home before my R3 can get there.  Hmmmm....\n\n78) Keith: Sacrifice G3 Keith\nBuild R1 Mrstickman\nBuild R2 Mrstickman\nBuild B3 Mrstickman\nCatastrophe Mrstickman Red\n\n\tMrStickman: Very well done! I was totally not expecting that final shot.\n\tKeith: Whew!  Thank you for the great game.  What a struggle.  I did not feel safe from the time you got all those blues.  I would like to play you again sometime either rated or unrated.\n\tMrStickman: Yes, absolutely. But not for a while. Homeworlds makes my head hurt.\n\tKeith: I feel worn down myself.  Sometime later then.  \n\nHomeworlds Online (SDG# 3916)\nStarted: 2006.7.26, Ended: 2006.8.13\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Uglyfoot: Homeworld Y3 B1 G3\n\tUglyfoot: Greetings Emporer.  Ready for incoming invaders.\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: Primitive carbon waterbag unitz, ewe hour know match four Zoltar!\n\tzoltar: Zee galaxy wheel bee mine!  Awl mine!\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) zoltar: Build Y2 Zoltar\n\n8) Uglyfoot: Build Y2 Uglyfoot\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) zoltar: Build G1 Zoltar\n\n12) Uglyfoot: Discover Y2 Uglyfoot G2 Hera\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) Uglyfoot: Trade G1 R1 Uglyfoot\n\n15) zoltar: Build G1 Zoltar\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) zoltar: Discover Y2 Zoltar G3 Rhea\n\n18) Uglyfoot: Discover Y1 Uglyfoot B2 Hermes\n\n19) zoltar: Discover G1 Zoltar B3 Artemis\n\n20) Uglyfoot: Move G1 Uglyfoot Hermes\n\n21) zoltar: Move B1 Zoltar Rhea\n\n22) Uglyfoot: Build G1 Uglyfoot\n\n23) zoltar: Build G2 Zoltar\n\n24) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Hermes\nBuild G3 Uglyfoot\nBuild Y1 Hera\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Rhea\nBuild B2 Rhea\n\n26) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Hera\nBuild Y3 Hermes\n\n27) zoltar: Discover B2 Rhea R2 Hephaestus\n\n28) Uglyfoot: Discover Y2 Hera B3 Apollo\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Rhea\nBuild B3 Rhea\n\n30) Uglyfoot: Sacrifice Y2 Apollo\nMove Y1 Hermes Rhea\nMove Y1 Hera Rhea\nCatastrophe Rhea Y\n\n31) zoltar: Trade B3 Y3 Rhea\n\n32) Uglyfoot: Discover Y3 Hermes B3 Zeus\n\tUglyfoot: Emporer, your twice vanquished vassal begs your permission to dwell on his turn...\n\tzoltar: Hey, take all the time you need.  I&#39;d rather play a longer thought-out game than a faster sloppy one.  Gort is so slow that when I challenged him for a rematch, I made the interval 10 days instead of 3 so the game wouldn&#39;t show him to be past the deadline every move!\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Rhea\nBuild B3 Hephaestus\n\tUglyfoot: It&#39;s a good thing I did.  My favored move would have allowed you to blow up one of my stars...\r\n\n\n34) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Hera\nBuild Y2 Zeus\n\tzoltar: Ah, that means you were planning to trade your G3 for a B3 in your homeworld!  Yes, that would have been unwise.\n\n35) zoltar: Trade B2 Y2 Hephaestus\n\n36) Uglyfoot: Sacrifice Y2 Zeus\nMove Y1 Hera Rhea\nMove Y2 Hera Rhea\nCatastrophe Rhea Y\n\tUglyfoot: I&#39;m trainable.  Slow but trainable.\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild G2 Artemis\nBuild G3 Zoltar\nBuild B2 Hephaestus\n\n38) Uglyfoot: Trade G2 R2 Hermes\n\n39) zoltar: Trade B3 R3 Hephaestus\n\n40) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Hermes\nBuild G3 Uglyfoot\nBuild R1 Uglyfoot\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild B3 Rhea\nBuild Y1 Hephaestus\nBuild G3 Zoltar\n\n42) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R2 Hermes\nBuild Y1 Zeus\n\n43) zoltar: Trade B3 R3 Rhea\n\n44) Uglyfoot: Move R1 Uglyfoot Hephaestus\n\n45) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Rhea\nBuild R3 Rhea\n\n46) Uglyfoot: Move R1 Uglyfoot Hephaestus\nCatastrophe Hephaestus R\n\n47) zoltar: Trade B3 Y3 Rhea\n\n48) Uglyfoot: Trade R2 B2 Hermes\n\n49) zoltar: Move R3 Rhea Hermes\n\n50) Uglyfoot: Trade G1 R1 Hermes\n\tzoltar: Ouch!  There went half my fleet...\n\tzoltar: All forces, regroup in rhea &amp; prepare for counterattack!\n\n51) zoltar: Sacrifice R3 Rhea\nAttack G2 Hermes\nAttack R2 Hermes\nAttack R1 Hermes\n\tUglyfoot: I win!  I got a blue ship!\n\n52) Uglyfoot: Trade B2 R2 Hermes\nCatastrophe Hermes R\n\tzoltar: Blue Alert! Blue Alert! Stop blue ship at all cost!\n\n53) zoltar: Sacrifice Y3 Rhea\nMove G2 Artemis Hermes\nMove G2 Hermes Uglyfoot\nMove G2 Hermes Uglyfoot\nCatastrophe Uglyfoot G\n\n\tUglyfoot: kaboom.  There was a nice satisfying kaboom.\n\tzoltar: Yep, and now for an even more satisfying kaboom...\n\nHomeworlds Online (SDG# 3939)\nStarted: 2006.7.30, Ended: 2006.8.11\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y1 B3 G3\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Trade G1 Y1 Personman\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build Y2 Personman\n\n8) zoltar: Build Y2 Zoltar\n\n9) Personman: Build G1 Personman\n\n10) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n11) Personman: Discover Y1 Personman G2 Basin\n\n12) zoltar: Build Y3 Greenbelt\n\n13) Personman: Build Y3 Basin\n\n14) zoltar: Move Y1 Greenbelt Basin\n\n15) Personman: Move Y1 Basin Greenbelt\n\tzoltar: The symmetry is really cool!\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) Personman: Trade G1 R1 Personman\n\n18) zoltar: Build R1 Zoltar\n\n19) Personman: Build R1 Personman\n\n20) zoltar: Build Y2 Basin\n\n21) Personman: Sacrifice R1 Personman\nAttack Y2S Basin\n\tzoltar: Ok, I have to think about this crazy symmetry\n\n22) zoltar: Build Y3 Basin\nCatastrophe Basin Y\n\tzoltar: Yeah, let&#39;s go for the craziest variation!  Something that will break the symmetry.\n\n23) Personman: Build Y1 Greenbelt\n\n24) zoltar: Sacrifice R2 Zoltar\nAttack Y1 Greenbelt\nAttack Y1 Greenbelt\n\n25) Personman: Discover Y2 Personman G2 Mayenne\n\tzoltar: Ahhh... back to symmetry -- except I have the big yellow ship!  Whew Who!  \n\n26) zoltar: Move Y3 Greenbelt Mayenne\n\n27) Personman: Build Y2 Mayenne\n\tzoltar: Greenbelt haz been purged of zee infidelz!\n\tzoltar: Yellow fleet, proceed with assault on Personman Homeworld!\n\n28) zoltar: Build Y3 Greenbelt\n\n29) Personman: Sacrifice Y2 Mayenne\nMove Y2 Mayenne Greenbelt\nPass\nCatastrophe Greenbelt Y\n\tzoltar: Attack!  I&#39;ll chase him &#39;round the moons of Nibia and &#39;round the Antares Maelstrom, and &#39;round perdition&#39;s flames before I give him up!\n\n30) zoltar: Build Y1 Mayenne\n\n31) Personman: Build G1 Personman\n\tzoltar: There has to be some way where I end up with all the Y3 ships and you end up with nothing...\n\n32) zoltar: Build Y1 Mayenne\n\tzoltar: Ok, well, I&#39;ll settle for one of the Y3 ships, I suppose.\n\n33) Personman: Build R1 Personman\n\n34) zoltar: Build R2 Zoltar\n\n35) Personman: Build R2 Personman\n\n36) zoltar: Discover Y1 Mayenne G3 Greenbelt\n\n37) Personman: Trade R2 Y2 Personman\n\n38) zoltar: Build Y2 Greenbelt\n\n39) Personman: Discover Y2 Personman G2 Cairhien\n\n40) zoltar: Build Y3 Mayenne\n\n41) Personman: Build Y3 Cairhien\n\tzoltar: Yellow fleet, proceed with assault on Personman Homeworld!\n\n42) zoltar: Sacrifice Y3 Mayenne\nMove Y1 Mayenne Greenbelt\nMove Y1 Greenbelt Cairhien\nMove Y1 Greenbelt Cairhien\nCatastrophe Cairhien Y\n\n43) Personman: Build R2 Personman\n\n44) zoltar: Move R2 Zoltar Greenbelt\n\n45) Personman: Trade R2 Y2 Personman\n\n46) zoltar: Build R2 Zoltar\n\tzoltar: Once again, my plans have been temorarily thwarted...\n\n47) Personman: Build R2 Personman\n\n48) zoltar: Build R3 Greenbelt\n\n49) Personman: Trade R2 B2 Personman\n\n50) zoltar: Trade R1 Y1 Zoltar\n\n51) Personman: Discover B2 Personman G2 Cp\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Mayenne\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n53) Personman: Move Y2 Personman Cp\n\n54) zoltar: Move R3 Greenbelt Cp\n\tzoltar: Red Alert!  Red Alert!  All hands to Battlestations!\n\n55) Personman: Discover Y2 Cp G3 Trask\n\n\n56) zoltar: Move Y3 Zoltar Trask\n\n57) Personman: Discover Y2 Trask B2 Caemlyn\n\n58) zoltar: Attack B2 Cp\n\tzoltar: At last, zee Yellow Fleet hath been restored! Whew Who!\n\n59) Personman: Build G1 Personman\n\n60) zoltar: Build B1 Cp\n\tzoltar: The R3 Death Star is now fully functional.  Prepare to fire!\n\n61) Personman: Build G1 Personman\n\n62) zoltar: Sacrifice Y3 Greenbelt\nMove R2 Greenbelt Cp\nMove R2 Cp Personman\nMove R3 Cp Personman\nCatastrophe Personman G\nCatastrophe Personman R\n\tzoltar: All ships: pursue and attack!  Whew Who!\n\n\tzoltar: Uh-oh!  Party at Personman&#39;s!  Party at Personman&#39;s!   This one will be even a bigger blast than last time!\n\nHomeworlds Online (SDG# 3949)\nVariants: &quot;Unrated&quot;\nStarted: 2006.8.2, Ended: 2006.8.13\nParticipants: Keith (S), gluco (N)\nWinner: Keith\n\n1) gluco: Homeworld B1 Y2 G3\n\n2) Keith: Homeworld Y1 B3 G3\n\n3) gluco: Build G1 Gluco\n\n4) Keith: Build G1 Keith\n\n5) gluco: Trade G1 Y1 Gluco\n\n6) Keith: Trade G1 Y1 Keith\n\n7) gluco: Discover Y1 Gluco G3 Zx\n\tKeith: I did not intend to mimic your moves but if I did not grab a y1 you could grab it and it would be very difficult for me to get yellow (except for converting my g3).\n\tgluco: Couldn&#39;t you build a b1 and trade for y2 later?  granted that is 2 moves though\n\n8) Keith: Build Y2 Keith\n\tKeith: I need a b2 to trade for a y2.  So it would take a while to work through the b1s and you might work through the y2s at the same time.\n\n9) gluco: Build Y2 Zx\n\n10) Keith: Discover Y2 Keith G2 Midworld\n\n11) gluco: Discover Y1 Zx G2 Yptl\n\n12) Keith: Trade Y1 B1 Keith\n\n13) gluco: Build Y1 Yptl\n\n14) Keith: Build Y3 Midworld\n\n15) gluco: Build Y3 Yptl\n\n16) Keith: Trade G3 R3 Keith\n\n17) gluco: Discover Y2 Zx G2 Yert\n\n18) Keith: Sacrifice Y3 Midworld\nMove R3 Keith Midworld\nDiscover R3 Midworld Y3 Redalert\nMove R3 Redalert Gluco\n\n19) gluco: Trade G3 R3 Gluco\n\n\tKeith: Lets see if this will work.\n\n20) Keith: Attack R3 Gluco\n\tKeith: I think you were focused on sending three yellow ships into Keith and did not realize why I had pulled a gun.\n\tgluco: kewl move...not sure the situation is salvagable the way I understand the rules, but I will try something...\n\n\tKeith: The only way I saw to draw it out was to keep building new ships because I can only convert one per turn.\n\tKeith: As a general rule of thumb if the other guy has a red then you had better have one too.\n\tKeith: Then again, as a general rule never move your 3-pointer out of your homeworld system.\n\tgluco: My thoughts were you would sacrifice the r3 and make 3 captures, so building more ships would not help. Was I right? \r\nAlso, I could not sacrifice the g3 &#39;cause then I had no build capability.\n\tKeith: You are right.  I overlooked that.  I was thinking you build a green I convert a green until there were four greens.\r\n\r\nYou are also right about not being able to sacrifice the g3.  I think the game would prevent you from even trying.\r\n\r\nI am all for trying another game if you are.\n\tgluco: OK, let&#39;s start another one.\n\nHomeworlds Online (SDG# 3956)\nStarted: 2006.8.4, Ended: 2006.12.22\nParticipants: josh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\n2) josh: Homeworld R2 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) josh: Build G1 Josh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) josh: Trade G3 Y3 Josh\n\n7) zoltar: Build G1 Zoltar\n\n8) josh: Build G1 Josh\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) josh: Trade G1 R1 Josh\n\n11) zoltar: Build G1 Zoltar\n\n12) josh: Build Y1 Josh\n\n13) zoltar: Build Y2 Zoltar\n\n14) josh: Build Y2 Josh\n\n15) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n16) josh: Discover Y2 Josh G1 First\n\n17) zoltar: Discover Y2 Zoltar G2 Greenhills\n\n18) josh: Build G2 Josh\n\n19) zoltar: Build Y2 Greenhills\n\n20) josh: Build Y3 First\n\tzoltar: Earth to Josh! Come in Josh!\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Zoltar\nBuild Y3 Greenbelt\n\n\nHomeworlds Online (SDG# 3858)\nStarted: 2006.8.7, Ended: 2006.8.7\nParticipants: zoltar (S), Wkr (N)\nWinner: zoltar\n\n1) Wkr: Homeworld G3 B1 R3\n\n2) zoltar: Homeworld B2 Y1 G3\n\n3) Wkr: Build R1 Wkr\n\tzoltar: Wow, so you are in Spain? That&#39;s great! I&#39;m in Greenbelt (near Washington DC). I have been playing for 2 months, but I&#39;ve played a lot of games so far.\n\tWkr: Yes, I from Zaragoza (Spain). Mi web is http://www.labsk.net and http://icehouse.labsk.net\n\tWkr: Excuse me. How I make reference to my homeworld?  What coordinates I must put? Thanks\n\n4) zoltar: Build G1 Zoltar\n\tWkr: Ok. My homeworld is Wkr. I wrote Wkr(N). :D \n\n5) Wkr: Trade R1 Y1 Wkr\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Wkr: Build Y2 Wkr\n\n8) zoltar: Build Y2 Zoltar\n\n9) Wkr: Trade Y2 R2 Wkr\n\n10) zoltar: Trade Y2 R2 Zoltar\n\n11) Wkr: Build Y2 Wkr\n\n12) zoltar: Build Y2 Zoltar\n\n13) Wkr: Discover R2 Wkr B2 Caesar\n\n14) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n15) Wkr: Move Y2 Wkr Caesar\n\n16) zoltar: Trade Y1 B1 Zoltar\n\n17) Wkr: Move R2 Caesar Greenbelt\n\n18) zoltar: Sacrifice R2 Zoltar\nAttack R2 Greenbelt\nPass\n\n19) Wkr: Build R1 Wkr\n\n20) zoltar: Build R1 Greenbelt\n\n21) Wkr: Trade Y2 R2 Caesar\n\n22) zoltar: Build B1 Zoltar\n\n23) Wkr: Build R1 Wkr\n\n24) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Greenbelt Caesar\nMove R1 Caesar Wkr\nCatastrophe Wkr R\n\n25) Wkr: Build Y1 Wkr\n\n26) zoltar: Move B1 Zoltar Greenbelt\n\tzoltar: The sacrifices are the hardest part of the game and the most easy to overlook.\n\n27) Wkr: Build Y2 Wkr\n\tzoltar: You are now in trouble until you build another 3-size ship in your homeworld\n\tWkr: Yeah. Double movement = boom !!!. \n\n28) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n29) Wkr: Move Y1 Wkr Caesar\n\n30) zoltar: Sacrifice B2 Greenbelt\nTrade B3 Y3 Greenbelt\nTrade B3 G3 Zoltar\n\n31) Wkr: Build Y2 Wkr\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n33) Wkr: Discover Y2 Wkr G2 Beatles\n\n34) zoltar: Sacrifice B2 Greenbelt\nTrade B3 R3 Greenbelt\nTrade B3 G3 Zoltar\n\n35) Wkr: Trade Y2 G2 Wkr\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n37) Wkr: Sacrifice G2 Wkr\nBuild Y2 Wkr\nBuild Y2 Wkr\n\n38) zoltar: Sacrifice Y3 Greenbelt\nMove B3 Greenbelt Beatles\nMove R3 Greenbelt Beatles\nMove R3 Beatles Wkr\n\n39) Wkr: Move R2 Caesar Wkr\n\n40) zoltar: Sacrifice R2 Greenbelt\nAttack R2 Wkr\nAttack Y2 Wkr\n\tzoltar: I was able to build 3-sized ships using the trick of sacrificing the g3 and b2 alternatively, and then building them again, so that I could get an R3 ship into your homeworld before you could build another 3-sized ship there to defend.  Once someone gets a 3-sized ship in your homeworld and you don&#39;t have another 3-sized ship in your homeworld to defend, there is rarely any defence.\n\n41) Wkr: Trade Y2 G2 Wkr\n\tzoltar: Note that if you had any 3-sized ship in your homeworld, you could have simply sacrificed your R2 ship and captured my R3! However, without a 3-sized ship, your R2 was worthless, even if you retreated it to defend.\n\tWkr: Yes. I&#39;m prolonging my agony. I must improve my strategy enough. \n\n42) zoltar: Sacrifice R2 Wkr\nAttack G2 Wkr\nAttack Y1 Wkr\n\tzoltar: I just lost a game to the &#39;World Champion&#39; Andy Looney in person last week.  I&#39;ve never beaten him, and he does tricks like this that I never see coming. That is why I like the game so much -- the tactics are very complex.\n\tzoltar: I&#39;m leaving for an hour to eat dinner, but if you wish to start another game, I can play again after thast.  Thanks for the game!\n\tWkr: Anihiliation. :D\n\n\nHomeworlds Online (SDG# 3981)\nStarted: 2006.8.9, Ended: 2006.10.15\nParticipants: Wkr (S), zoltar (W), Subhan64 (N), aSoso (E)\nWinner: zoltar\n\n1) Subhan64: Homeworld G3 B2 Y3\n\tWkr: hello all\n\taSoso: hello, my first game online :)\n\tzoltar: Greetingz Earthlingz!  I&#39;ve been playing for 2 months but this is my first multi-player game.\n\n2) aSoso: Homeworld G3 Y1 B3\n\tSubhan64: gl,all!  Sorry for my slowness is starting\n\tWkr: aSoso, your turn. # homeworld star1 star2 ship\n\tWkr: Hello again, zoltar. :D\n\tzoltar: Hello!\n\n3) Wkr: Homeworld B1 Y3 G3\n\n4) zoltar: Homeworld Y1 B2 G3\n\n5) Subhan64: Build Y1 Subhan64\n\tzoltar: This is going to be a long, long game, isn&#39;t it? :)\n\n6) aSoso: Build B1 Asoso\n\tWkr: Yes. 7 hours of difference. aSoso &amp; Wkr living in Spain.\n\n7) Wkr: Build G1 Wkr\n\n8) zoltar: Build G1 Zoltar\n\n9) Subhan64: Build Y1 Subhan64\n\n10) aSoso: Discover B1 Asoso G2 Ekonos\n\n11) Wkr: Trade G1 R1 Wkr\n\n12) zoltar: Trade G1 Y1 Zoltar\n\n13) Subhan64: Trade Y1 G1 Subhan64\n\n14) aSoso: Build B1 Asoso\n\n15) Wkr: Build G1 Wkr\n\n16) zoltar: Build G1 Zoltar\n\n17) Subhan64: Build G1 Subhan64\n\n18) aSoso: Trade B1 R1 Ekonos\n\n19) Wkr: Build G1 Wkr\n\n20) zoltar: Build G2 Zoltar\n\n21) Subhan64: Trade G1 R1 Subhan64\n\tSubhan64: trade g1 r1 Subhan64\n\n22) aSoso: Build R1 Ekonos\n\n23) Wkr: Discover G1 Wkr Y2 Caesaraugusta\n\n24) zoltar: Trade G2 R2 Zoltar\n\n25) Subhan64: Build Y1 Subhan64\n\n26) aSoso: Build B1 Asoso\n\n27) Wkr: Build G1 Caesaraugusta\n\n28) zoltar: Build G2 Zoltar\n\n29) Subhan64: Build G2 Subhan64\n\n30) aSoso: Trade B3 Y3 Asoso\n\n31) Wkr: Sacrifice G3 Wkr\nBuild G2 Wkr\nBuild G2 Caesaraugusta\nBuild G3 Wkr\n\n32) zoltar: Discover G2 Zoltar B3 Blueberry\n\n33) Subhan64: Discover Y3 Subhan64 R1 Perseiomicron8\n\n34) aSoso: Build Y2 Asoso\n\n35) Wkr: Trade G2 Y2 Wkr\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild Y2 Zoltar\n\n37) Subhan64: Sacrifice G2 Subhan64\nBuild R2 Subhan64\nBuild R2 Subhan64\n\n38) aSoso: Build R2 Ekonos\n\n39) Wkr: Discover G1 Caesaraugusta B3 Babylon\n\n40) zoltar: Sacrifice G2 Blueberry\nBuild R2 Zoltar\nBuild R3 Zoltar\n\n41) Subhan64: Move Y3 Perseiomicron8 Subhan64\n\n42) aSoso: Trade Y3 G3 Asoso\n\n43) Wkr: Sacrifice G3 Wkr\nBuild G2 Babylon\nBuild R1 Wkr\nBuild R3 Wkr\n\n44) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Zoltar Blueberry\nMove R3 Zoltar Blueberry\n\n45) Subhan64: Build G2 Subhan64\n\n46) aSoso: Build G3 Asoso\n\n47) Wkr: Move R1 Wkr Caesaraugusta\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Blueberry\nBuild Y2 Blueberry\n\n49) Subhan64: Pass\n\tSubhan64: build g2 subhan64\n\n50) aSoso: Trade G3 R3 Asoso\n\n51) Wkr: Build G3 Wkr\n\n52) zoltar: Discover Y1 Blueberry B1 Boysenberry\n\n53) Subhan64: Sacrifice Y3 Subhan64\nMove R1 Subhan64 Boysenberry\nMove R1 Boysenberry Blueberry\nMove R1 Blueberry Ekonos\nCatastrophe Ekonos Red\n\n54) aSoso: Discover B1 Asoso G2 Ekonos2\n\n55) Wkr: Sacrifice G2 Caesaraugusta\nBuild R1 Caesaraugusta\nBuild Y2 Wkr\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild Y3 Blueberry\nBuild G3 Zoltar\n\n57) Subhan64: Discover Y1 Subhan64 B1 Romulus\n\n58) aSoso: Build B2 Ekonos2\n\n59) Wkr: Sacrifice Y2 Wkr\nMove G2 Babylon Zoltar\nMove G1 Babylon Zoltar\nCatastrophe Zoltar Green\n\n60) zoltar: Sacrifice Y2 Blueberry\nMove R3 Blueberry Ekonos2\nMove G2 Blueberry Caesaraugusta\n\n61) Subhan64: Build Y2 Subhan64\n\n62) aSoso: Trade B2 R2 Ekonos2\n\n63) Wkr: Sacrifice Y2 Wkr\nDiscover R1 Caesaraugusta Y3 Hive\nMove R1 Caesaraugusta Hive\n\tzoltar: I&#39;m gonna need at least one blue ship in blueberry!\n\n64) zoltar: Sacrifice R2 Zoltar\nAttack R2E Ekonos2\nAttack G1S Caesaraugusta\n\n65) Subhan64: Build Y2 Subhan64\n\n66) aSoso: Build B2 Ekonos2\n\n67) Wkr: Trade R3 Y3 Wkr\n\tzoltar: Ouch!  I&#39;m in big trouble now...\n\n68) zoltar: Sacrifice G2 Caesaraugusta\nBuild Y2 Blueberry\nBuild Y3 Boysenberry\n\n69) aSoso: Build B2 Asoso\n\n70) Wkr: Move R1 Wkr Caesaraugusta\n\tWkr: Sorry.\n\n71) zoltar: Sacrifice R2 Ekonos2\nAttack B2E Ekonos2\nAttack R1S Caesaraugusta\n\tzoltar: I&#39;m having problems: the program isn&#39;t accepting my move\n\tSubhan64: what is the move &amp; the message? Perhaps the move is not valid?\r\n\n\tzoltar: s r2 zoltar\r\na r2 Ekonos2\r\na g1 CaesarAugusta\n\tzoltar: The message is that neither the r2 at Ekonos2 nor the g1 at CaesarAugusta exist.\n\tzoltar: maybe I&#39;ll just make a different move. :(\n\n72) aSoso: Build B2 Ekonos2\n\tzoltar: Ok I got some help in the help forum.  To attack in a multi-player game, you must place the direction letter of the opponent after the ship:\r\ns r2 zoltar\r\na r2E Ekonos2\r\na g1S CaesarAugusta\r\n\r\nThis is my first multi-player game, so I didn&#39;t know that!\n\n73) Wkr: Trade G3 B3 Wkr\n\n74) zoltar: Sacrifice Y3 Boysenberry\nMove Y3 Blueberry Zoltar\nMove Y2 Blueberry Ekonos2\nDiscover B2 Ekonos2 G1 Lime\n\n75) aSoso: Build B3 Ekonos2\n\n76) Wkr: Build B3 Wkr\n\n77) zoltar: Move R3 Ekonos2 Hive\n\n78) aSoso: Trade B3 R3 Ekonos2\n\n79) Wkr: Build Y3 Wkr\n\n80) zoltar: Sacrifice Y2 Ekonos2\nMove B2 Lime Ekonos2\nMove B2 Ekonos2 Wkr\nCatastrophe Wkr B\n\n81) aSoso: Sacrifice Y2 Asoso\nMove R3 Ekonos2 Hive\nMove R3 Hive Zoltar\n\n82) Wkr: Discover Y3 Wkr B1 Kenny\n\n83) zoltar: Attack R3E Zoltar\n\n84) aSoso: Trade B2 Y2 Asoso\n\n85) Wkr: Trade Y3 G3 Kenny\n\n86) zoltar: Sacrifice G1 Caesaraugusta\nBuild Y2 Boysenberry\n\n\tzoltar: Well, I clicked to end the game, but it just kicked him out as well. I&#39;ll open up a new one, then, and Wkr and I could finish this one too, then.\n\nHomeworlds Online (SDG# 3983)\nStarted: 2006.8.9, Ended: 2006.8.10\nParticipants: zoltar (S), tesla (N)\nWinner: zoltar\n\n1) tesla: Homeworld R3 G2 Y3 *\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) tesla: Build Y1 Tesla\n\n4) zoltar: Build G1 Zoltar\n\n5) tesla: Build Y1 Tesla\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) tesla: Discover Y1 Tesla B1 Tales\n\n8) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n9) tesla: Trade Y1 G1 Tales\n\n10) zoltar: Build G1 Zoltar\n\n11) tesla: Trade G1 B1 Tales\n\n12) zoltar: Build G1 Zoltar\n\n13) tesla: Move Y1 Tesla Tales\n\n\nHomeworlds Online (SDG# 4013)\nStarted: 2006.8.11, Ended: 2006.9.1\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y3 B1 G3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Discover G1 Personman Y2 Rasque\n\n6) zoltar: Trade G1 R1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build R1 Zoltar\n\n9) Personman: Trade G1 B1 Personman\n\n10) zoltar: Trade R1 Y1 Zoltar\n\n11) Personman: Build G1 Personman\n\n12) zoltar: Build Y1 Zoltar\n\n13) Personman: Build B1 Personman\n\n14) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n15) Personman: Move B1 Personman Rasque\n\n16) zoltar: Build Y2 Greenbelt\n\n17) Personman: Build B2 Personman\n\n18) zoltar: Build Y2 Greenbelt\n\n19) Personman: Trade B2 R2 Personman\n\n20) zoltar: Move Y2 Greenbelt Rasque\n\n21) Personman: Discover B1 Rasque Y3 Celric\n\n22) zoltar: Build Y3 Zoltar\n\n23) Personman: Build B2 Personman\n\n24) zoltar: Trade Y3 B3 Zoltar\n\n25) Personman: Move G1 Rasque Celric\n\n26) zoltar: Move B3 Zoltar Greenbelt\n\n27) Personman: Build B2 Celric\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild B3 Greenbelt\nBuild B3 Greenbelt\n\n29) Personman: Discover B2 Personman G2 Pazodrite\n\n30) zoltar: Move B3 Greenbelt Pazodrite\n\tzoltar: Blue Fleet: your mission -- proceed to Personman homeworld for Supernova Party!  Whewww Whoooo!\n\n31) Personman: Move B1 Personman Rasque\n\tzoltar: An excellent move, removing the threat! \n\n32) zoltar: Sacrifice R1 Zoltar\nAttack B2 Pazodrite\n\tzoltar: Zee Zoltarian fleet wheel confront zee rebel blue sheep!\r\n\n\n33) Personman: Move B1 Rasque Celric\n\tzoltar: An unexpected aggressive move, PersonMan!\r\n\n\n34) zoltar: Trade B3 R3 Pazodrite\n\n35) Personman: Move B1 Celric Zoltar\n\n36) zoltar: Sacrifice Y1 Zoltar\nMove B2 Pazodrite Celric\n\n37) Personman: Sacrifice G1 Celric\nBuild B3 Zoltar\n\tzoltar: Red Alert!  Red Alert!  \n\tzoltar: Mistake on Zoltar&#39;z part!  Had to move my b2 into Celric and blow up blue fleet.  Now must think of something clever, or homeworld star go boom-boom!\n\n38) zoltar: Sacrifice R3 Pazodrite\nAttack B3 Zoltar\nAttack B2 Celric\nAttack B1 Celric\n\n39) Personman: Move B1 Zoltar Celric\nCatastrophe Celric B\n\n40) zoltar: Trade B3 R3 Greenbelt\n\tPersonman: Woah. That was scary. I made my move based on the board before you undid yours, so when I made it, my b3 appeared to have eaten your y1... I think I might do the same thing again but I wanted to go back and study the new board to make sure.\n\tzoltar: Better late than never.\n\n41) Personman: Discover G1 Personman B2 Shroumb\n\n42) zoltar: Build B1 Greenbelt\n\tPersonman: Oops. I screwed up. I thought there was still a blue piece left for me to make. I needed to move a blue piece in instead of making the 3, I think.\n\n43) Personman: Build G1 Shroumb\n\n44) zoltar: Build Y1 Greenbelt\n\tzoltar: Celric is Mine!  Awl Mine!!!  Whew Who!\n\tzoltar: Well it was mine for a moment...\n\n45) Personman: Trade G1 R1 Shroumb\n\n46) zoltar: Trade B3 G3 Zoltar\n\tzoltar: Zee Zoltarian Empire hath survived zee brutal assault uv zee blue alienz and ease stronger zan ever!  Yay!\n\n47) Personman: Build G1 Shroumb\n\n48) zoltar: Build Y3 Zoltar\n\n49) Personman: Build G1 Personman\n\n50) zoltar: Build G2 Zoltar\n\n51) Personman: Build G2 Shroumb\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild R1 Greenbelt\n\n53) Personman: Build R1 Personman\n\n54) zoltar: Move R1 Greenbelt Rasque\n\tzoltar: Zee Yellow Fleet ease complete!  Now onto Faze Too uv my sea knee star plan!\n\tzoltar: (Looks like your mistake with the blue pieces was very costly, now giving me a lock on Yellow tech.)\n\n55) Personman: Discover R2 Personman B2 Lova\n\n56) zoltar: Move B3 Greenbelt Rasque\n\n57) Personman: Build R2 Personman\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild R2 Greenbelt\nBuild R3 Greenbelt\nBuild R3 Rasque\n\n59) Personman: Move R2 Personman Rasque\n\n60) zoltar: Sacrifice R1 Rasque\nAttack R2 Rasque\n\n61) Personman: Build R1 Personman\n\n62) zoltar: Build G3 Zoltar\n\n63) Personman: Move R1 Personman Rasque\n\n64) zoltar: Sacrifice R2 Rasque\nAttack R1 Rasque\nPass\n\tzoltar: Zee Red and Yellow Fleetz are now complete.  All sheepz commence final assault of Personman Homeworld! Engage!\n\n65) Personman: Build R2 Personman\n\n66) zoltar: Sacrifice G3 Zoltar\nBuild B1 Rasque\nBuild B3 Rasque\nBuild B3 Greenbelt\n\tzoltar: Warning! Warning! Danger Will Robinson! Enemy suicide jihadist has breached the perimeter and is threatening zee Red Fleet!  Evasive Action!\n\n67) Personman: Build G3 Personman\n\tzoltar: Zee threat haz bean newtralized -- proceed with zee invasion!\n\tzoltar: Rezizztanz ease few tile: ewe wheel be assimilated!\n\n68) zoltar: Sacrifice Y3 Zoltar\nMove G2 Zoltar Greenbelt\nMove G2 Greenbelt Rasque\nMove G2 Rasque Personman\nCatastrophe Personman G\n\n69) Personman: Trade R2 G2 Personman\n\n70) zoltar: Sacrifice Y2 Greenbelt\nMove B3 Rasque Personman\nMove R3 Rasque Personman\n\n71) Personman: Sacrifice G2 Shroumb\nBuild G1 Personman\nBuild G2 Personman\n\tzoltar: Awl sheepz rezoom attack on Personman Homeworld! Engage!\n\n72) zoltar: Trade B3 G3 Personman\nCatastrophe Personman G\n\n73) Personman: Trade R1 G1 Personman\n\tzoltar: Blue squadron reporting in for final assault on Personman homeworld!  Awl sheepz, engage!\n\n74) zoltar: Attack G1 Personman\n\n\tzoltar: Thanx for zee game, Personman!  Let&#39;s play again sometime.  I&#39;m expanding out to new games (trying Pikeman and Zendo now, and want to try others, such as Martian Chess), so if you have any favorites feel free to challenge me.\n\nHomeworlds Online (SDG# 3892)\nStarted: 2006.8.12, Ended: 2006.8.19\nParticipants: Laurie_Menke (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R2 B3 G3\n\n2) Laurie_Menke: Homeworld Y1 B3 G3\n\tzoltar: Greetingz, Earthling!  Nice to see you again.  I usually take the two smaller stars and start with yellow and blue, but now that I&#39;ve played a lot, I&#39;ll try a new opening, as I notice that good players often start with a red star for defence.  Btw, how is your sick friend doing?\n\tLaurie_Menke: Greetings, zoltar.  This Earthling wishes you all that is good and for peace between us.  ;o)\r\n\r\nMy friend is doing much better...thanks for asking!  This was her third cancer surgery and her odds were pretty grim, but it looks like she beat the odds again.  Woo-hoo!  She&#39;ll have to do another round of chemo, but nothing had spread, so she should fully recover.  :o)\n\n3) zoltar: Build G1 Zoltar\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Laurie_Menke: Discover G1 Laurie_menke G2 Forest\n\tzoltar: Zoltar is glad to hear that your friend is recovering.\n\tLaurie_Menke: Thanks.  :o)\n\n7) zoltar: Build Y1 Zoltar\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\tzoltar: A green ship to a green world?  A strange, redundant move, but perhaps the Earthling is up to something...\n\tLaurie_Menke: Perhaps....   ;o)\n\n9) zoltar: Build Y2 Zoltar\n\n10) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Forest\nBuild G2 Laurie_menke\nBuild G2 Laurie_menke\n\n11) zoltar: Build G3 Zoltar\n\n12) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n13) zoltar: Discover G3 Zoltar B1 Blueberry\n\n14) Laurie_Menke: Sacrifice Y2 Laurie_menke\nDiscover G1 Forest B1 Ocean\nMove G1 Forest Ocean\n\n15) zoltar: Sacrifice Y2 Zoltar\nDiscover G3 Blueberry Y2 Wormhole\nMove G3 Wormhole Laurie_menke\n\n16) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Ocean\n\tzoltar: It looks like the strange moves turned out to be fatal!\n\tzoltar: Since you sacrificed your defending G3 ship, rendering your homeworld defenseless, there seems to be no reason not to immediately invade with my big ship.  Resistance is futile!\n\tLaurie_Menke: Yeah, my plan was definitely flawed.  :o(  Oh, well...live and learn.  But I don&#39;t think you have any way to attack me yet, do you?\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G2 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Laurie_menke\nCatastrophe Laurie_menke G\n\tzoltar: Yes.  If you would have traded one of your green ships, I would trade my g3 in the Zoltar homeworld for an R3, then sac it next turn and capture all your pieces. However, in this case, I only needed to build a green ship in your homeworld to create a catastraphe, which leaves your homeworld empty, ending the game.\n\tLaurie_Menke: Alas...you&#39;re right again.  :o(  I seem to be getting worse at this game the more I play instead of better.  :o(  Oh, well...it&#39;s still a very enjoyable game.  Thanks for the fun, and congrats!\n\n\nHomeworlds Online (SDG# 4011)\nStarted: 2006.8.13, Ended: 2006.9.18\nParticipants: zoltar (S), mtwomey (N)\nWinner: zoltar\n\n1) mtwomey: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) mtwomey: Build G1 Mtwomey\n\n4) zoltar: Build G1 Zoltar\n\n5) mtwomey: Trade G1 Y1 Mtwomey\n\n6) zoltar: Build G1 Zoltar\n\n7) mtwomey: Build G1 Mtwomey\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) mtwomey: Discover G1 Mtwomey B1 Beakstar\n\n10) zoltar: Build Y2 Zoltar\n\n11) mtwomey: Build Y2 Mtwomey\n\n12) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n13) mtwomey: Build G1 Beakstar\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) mtwomey: Trade G1 R1 Beakstar\n\n16) zoltar: Trade Y1 B1 Zoltar\n\n17) mtwomey: Move Y2 Mtwomey Beakstar\n\n18) zoltar: Build B1 Zoltar\n\n19) mtwomey: Trade Y2 B2 Beakstar\n\n20) zoltar: Trade B1 G1 Zoltar\n\n21) mtwomey: Build Y1 Mtwomey\n\n22) zoltar: Build Y2 Greenbelt\n\n23) mtwomey: Build Y2 Mtwomey\n\n24) zoltar: Discover Y2 Greenbelt G2 Greenwich\n\n25) mtwomey: Trade Y1 B1 Mtwomey\n\n26) zoltar: Move B1 Zoltar Greenbelt\n\n27) mtwomey: Trade B1 G1 Mtwomey\n\n28) zoltar: Trade G1 B1 Zoltar\n\n29) mtwomey: Sacrifice Y1 Mtwomey\nDiscover B2 Beakstar G2 Jellybeast\n\n30) zoltar: Build B3 Greenbelt\n\n31) mtwomey: Build B3 Jellybeast\n\n32) zoltar: Trade B3 R3 Greenbelt\n\n33) mtwomey: Build B3 Jellybeast\n\tmtwomey: I&#39;ll have to pick this up tomorrow - have to get up for work :-)\n\n34) zoltar: Move B1 Greenbelt Jellybeast\nCatastrophe Jellybeast B\n\n35) mtwomey: Trade R1 Y1 Beakstar\n\n36) zoltar: Move R3 Greenbelt Beakstar\n\tzoltar: No choice there but to send a jihadist to disrupt zee blue fleet!\n\n37) mtwomey: Trade G3 R3 Mtwomey\n\tmtwomey: Yes - well done. I should have seen that :-)\n\n38) zoltar: Attack Y1 Beakstar\n\tzoltar: Red Alert!  The puny Earthling vessels are no match for Zoltar&#39;s Big Red Battle Cruiser!  All batteries lock onto alien vessels and fire at will!  Engage!\n\n39) mtwomey: Sacrifice G1 Beakstar\nBuild Y1 Mtwomey\n\n40) zoltar: Build G1 Zoltar\n\tzoltar: Rezizztanzz ease few tile: ewe wheel bee assimilated!\n\tzoltar: Yellow alien vezzel haz bean subdued: Awl batteries open fire on puny green vezzel. Engage!\n\n41) mtwomey: Discover Y1 Mtwomey B1 Kalmar\n\tzoltar: zee alien vezzel haz ezcaped...\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Beakstar\nBuild Y3 Greenwich\nBuild Y3 Greenbelt\n\n43) mtwomey: Discover Y2 Mtwomey G1 Canfield\n\n44) zoltar: Build B2 Zoltar\n\tzoltar: Zoltar&#39;z mighty Yellow Fleet rules zee Galaxy!!!\n\n45) mtwomey: Build G2 Mtwomey\n\n46) zoltar: Move B2 Zoltar Greenbelt\n\n47) mtwomey: Move Y1 Kalmar Mtwomey\n\n48) zoltar: Build B1 Greenbelt\n\n\nHomeworlds Online (SDG# 4043)\nVariants: &quot;Unrated&quot;\nStarted: 2006.8.15, Ended: 2006.9.25\nParticipants: Keith (S), gluco (N)\nWinner: Keith\n\n1) gluco: Homeworld B1 Y2 G3\n\n2) Keith: Homeworld G3 B3 Y3 *\n\n3) gluco: Build G1 Gluco\n\n4) Keith: Build Y1 Keith\n\n5) gluco: Trade G1 R1 Gluco\n\n6) Keith: Trade Y1 R1 Keith\n\n7) gluco: Build G1 Gluco\n\n8) Keith: Build Y1 Keith\n\n9) gluco: Trade G1 Y1 Gluco\n\n10) Keith: Trade Y1 G1 Keith\n\n11) gluco: Build G1 Gluco\n\n12) Keith: Build Y1 Keith\n\n13) gluco: Build R1 Gluco\n\n14) Keith: Build R2 Keith\n\n15) gluco: Discover Y1 Gluco G3 Erty\n\n16) Keith: Discover R2 Keith Y2 Ventura\n\n17) gluco: Trade R1 Y1 Gluco\n\n18) Keith: Trade Y1 B1 Keith\n\tKeith: Hmmm... I must be losing it.  I don&#39;t remember naming a system Ventura\n\n19) gluco: Build Y1 Erty\n\tgluco: Seemed like a good move at the time...\n\n20) Keith: Move R2 Ventura Erty\n\n21) gluco: Discover Y1 Erty Y2 Iop\n\n22) Keith: Sacrifice R1 Keith\nAttack Y1 Erty\n\n23) gluco: Trade G3 R3 Gluco\n\n24) Keith: Build Y2 Erty\n\tgluco: Sorry for the delay.  Next week or so might be awkward.\n\tKeith: Thank you for letting me know.  Make moves if you can and do not worry if you can&#39;t.\n\n25) gluco: Build G1 Gluco\n\tgluco: Yeah, I will be out of email touch until Saturday.  Well see if I get timed-out by superduper.  Looks like you&#39;re winning anyway!\n\n26) Keith: Build Y3 Keith\n\tKeith: Superduper will give notice if you time out but nothing will happen to terminate the game unless I take affirmative action to do so and I won&#39;t.\n\n27) gluco: Move R3 Gluco Erty\n\tgluco: OK, Im back.  Thanks for your patience.\n\n28) Keith: Sacrifice Y3 Keith\nMove Y1 Erty Gluco\nMove Y2 Erty Gluco\nMove R2 Erty Gluco\nCatastrophe Gluco Yellow\n\tKeith: Your welcome.  Moving your R3 out.  Risky.  Since I have an extra 3 pointer lets try this.\n\n29) gluco: Sacrifice Y1 Iop\nMove R3 Erty Gluco\n\tgluco: Nice.  I was trying to accomplish the same thing.\n\n30) Keith: Sacrifice G1 Keith\nBuild R1 Gluco\nCatastrophe Gluco Red\n\n31) gluco: Trade G1 Y1 Gluco\n\tgluco: Kewl. You made a catastrphe with both our ships\n\n32) Keith: Move Y3 Keith Gluco\n\tKeith: Better than using just my ships.  Better for me anyway.\n\n33) gluco: Build G1 Gluco\n\n34) Keith: Trade Y3 R3 Gluco\n\n35) gluco: Discover Y1 Gluco G2 Iopy\n\n36) Keith: Attack G1 Gluco\n\tgluco: Yikes!\n\n37) gluco: Move Y1 Iopy Keith\n\tKeith: Yikes indeed.  When you other home system went boom we ended up one move apart. If you had had a red you could have threatened my little b2 or to make a red catastrophe in your home system.  That is why I had to catastrophe red first.\n\n38) Keith: Attack G1 Gluco\n\n\tgluco: Congrats!  Not much left to do.  I don&#39;t believe I&#39;m allowed to trade my y1  for a red in your homeworld.\n\tKeith: Actually you can since the world there has blue....\n\tKeith: You just don&#39;t have enough time.\n\tKeith: Thank you for the game.  \n\tgluco: Thank you!  Will be travelling again, but returning in October.  Maybe we can do another game then.  \n\tKeith: That would be welcome.\n\nHomeworlds Online (SDG# 4053)\nStarted: 2006.8.18, Ended: 2006.8.28\nParticipants: Keith (S), antihero (N)\nWinner: Keith\n\n1) antihero: Homeworld G3 B2 Y3\n\tKeith: Hello antihero.  I have been peeking in on your Cannon game against Dralius.  Have you played Homeworlds before?\n\n2) Keith: Homeworld B1 Y2 G3\n\n3) antihero: Build Y1 Antihero\n\n4) Keith: Build G1 Keith\n\tantihero: I have played a few times in real life. I am still learning for sure.\n\tantihero: You&#39;re the cannon expert, right?\n\tKeith: I am probably considered a Cannon expert.  Though part of my secret is simply looking farther ahead than my opponent.  Dralius is a good teacher.  \n\n5) antihero: Trade Y1 G1 Antihero\n\n6) Keith: Trade G1 Y1 Keith\n\n7) antihero: Discover G1 Antihero Y1 Next_one_over\n\n8) Keith: Discover Y1 Keith G3 Midworld\n\n9) antihero: Build G1 Next_one_over\n\n10) Keith: Build G1 Keith\n\n11) antihero: Build G2 Next_one_over\n\n12) Keith: Move G1 Keith Midworld\n\n13) antihero: Move G2 Next_one_over Antihero\n\n14) Keith: Build G2 Keith\n\n15) antihero: Build G2 Antihero\n\n16) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y1 Midworld\nBuild Y2 Midworld\n\n17) antihero: Trade G2 R2 Antihero\n\n18) Keith: Move Y1 Midworld Next_one_over\n\tantihero: whoops, sneaky y2 hiding behind the system label. :)\n\n19) antihero: Discover G1 Next_one_over B3 Big_star\n\tantihero: alright to bed with me. see you tomorrow.\n\tKeith: I wish this were an unrated game so I could more easily point things out without risking my position.  You can learn in an rated game but usually it is the hard way.  I created that y2 so I could move a g1 into your homeworld and create a green catastrophe.  I am okay with your taking your move back.\n\tantihero: I think I already did before you wrote that? I think my new move is better? And I don&#39;t get any more undos. So let&#39;s see what happens.\n\tKeith: You took back your move while I was commenting.  So it works out well.  That is the better move.\n\n20) Keith: Trade G2 R2 Keith\n\n21) antihero: Build G2 Big_star\n\n22) Keith: Build G2 Keith\n\tantihero: damn, you&#39;ve played homeworlds before and saw through my feeble ploy. :)\n\n23) antihero: Sacrifice Y3 Antihero\nMove G2 Big_star Keith\nMove G1 Big_star Keith\nPass\nCatastrophe Keith Green\n\tKeith: Well I had been pushing it by breking two rules of thumb.  1) if your opponent has a red you should too.  2) Don&#39;t have just one ship type at your homeoworld.\r\n\r\nThat and I could not get my own ploys into action before you got yours.\n\n24) Keith: Move G1 Midworld Keith\n\tantihero: hmmm tough decision, sort of.\n\n25) antihero: Trade G2 Y2 Antihero\n\tKeith: I thought so too.  An expensive move for both of us.\n\tantihero: aye\n\n26) Keith: Build Y3 Midworld\n\n27) antihero: Build Y3 Antihero\n\tantihero: alright to bed with me. see you later.\n\tantihero: don&#39;t do anything too crazy while, I&#39;m gone, ya hear? :)\n\tKeith: Tomorrow then, eventually anyway.  I have a 12 hour work shift to get through first.\n\tantihero: oh rough, what do you do?\n\tKeith: Assistant manager at a restaurant.  Which in reality means 11 hours on my feet as a fry cook in high heat and humidity with no breaks or meals and an hour of counting money and paperwork at the end of the day.\n\n28) Keith: Sacrifice Y3 Midworld\nMove Y1 Next_one_over Antihero\nMove Y1 Midworld Next_one_over\nMove Y1 Next_one_over Antihero\nCatastrophe Antihero Yellow\n\n29) antihero: Build R1 Antihero\n\n30) Keith: Build R1 Keith\n\n31) antihero: Trade R1 Y1 Antihero\n\tantihero: that doesn&#39;t sound like too much fun, man. Have a good day anyways, though!\n\tKeith: It is not any fun.  Too much time away from my family.  On the positive side I do make as much I did when I was an attorney.\n\n32) Keith: Trade R1 B1 Keith\n\n33) antihero: Build R1 Antihero\n\n34) Keith: Build R1 Keith\n\tantihero: whoops, that _is_ actually what I want to do.\n\n35) antihero: Move R1 Antihero Next_one_over\n\tKeith: Okay, I am heading out to work.  Back in about 12.5 hours.\n\n36) Keith: Move Y2 Midworld Next_one_over\n\n37) antihero: Discover R1 Next_one_over Y3 Sun\n\n38) Keith: Sacrifice R1 Keith\nAttack G1 Next_one_over\n\n39) antihero: Build R1 Antihero\n\n40) Keith: Build B1 Keith\n\n41) antihero: Trade R1 G1 Antihero\n\n42) Keith: Build G2 Next_one_over\n\n43) antihero: Move G1 Antihero Next_one_over\n\n44) Keith: Build G2 Keith\n\tantihero: I&#39;m learning that I&#39;m not great at homeworlds. I think I see moves easier in RL, too, but I have a lot to learn.\n\tKeith: I find that I play any game much better when I can think ahead by moving pieces around the board.\n\n45) antihero: Build G2 Next_one_over\n\n46) Keith: Build G3 Keith\nCatastrophe Next_one_over Green\n\n47) antihero: Build R1 Antihero\n\n48) Keith: Move G3 Keith Sun\n\n49) antihero: Build Y1 Antihero\n\tantihero: wow that was about the dumbest thing i could have done...\n\n50) Keith: Sacrifice Y2 Next_one_over\nDiscover G3 Sun Y1 Temp\nMove G3 Temp Antihero\n\tKeith: I did expect, given the way we have been doing away with both side&#39;s ships that you would have triggered the catastrophe first.\n\tKeith: I felt kind of bad taking advantage of it.  In an unrated game I would have pointed it out so you could take back your move.\n\n51) antihero: Trade Y1 G1 Antihero\n\tantihero: well, let&#39;s play some unrated after this so I can get better.\n\tantihero: if you are willing, of course\n\n52) Keith: Sacrifice R2 Keith\nAttack R2 Antihero\nAttack R1 Antihero\n\tKeith: Very willing.  I would rather focus on a mutually enjoyable game rather than rating points.\n\tKeith: I am a bit weak in the end game as Zoltar and Eugman have discovered.\n\n53) antihero: Build G1 Antihero\nCatastrophe Antihero Green\n\tantihero: twice in a row now I have beaten zoltar out of the gate and then had him come back and made some stupid mistakes and down I go.\n\tantihero: i can drag this out :)\n\n54) Keith: Attack Y1 Antihero\n\tKeith: Go ahead and drag. \r\n\r\nI took out one of Zoltar&#39;s home stars, had more ships overall, had more three pointers, and after a dozen turns of trying to wear him down I left only one ship color in my homeworld as I moved in for the kill and boom... lost to Zoltar when I should have won.\n\n\tKeith: A very unusual game.  Lets try another one.\n\nHomeworlds Online (SDG# 4061)\nStarted: 2006.8.18, Ended: 2006.10.2\nParticipants: antihero (S), JIMBO (N)\nWinner: antihero\n\n1) JIMBO: Homeworld B2 G3 Y3\n\n2) antihero: Homeworld G1 B3 Y3\n\n\nHomeworlds Online (SDG# 4065)\nVariants: &quot;Unrated&quot;\nStarted: 2006.8.19, Ended: 2006.8.21\nParticipants: eugman (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 G2 B3\n\n2) eugman: Homeworld B2 G1 Y3\n\n3) zoltar: Build B1 Zoltar\n\teugman: I&#39;ve never played before so feel free to point out any blantantly bad moves.\n\tzoltar: Ok. Your start was excellent: the two small stars is considered the strongest opening move.  I usually start with that one, but now that I&#39;ve been playing for a couple of months I&#39;m experimenting with new openings, such as this one with a red star and a blue ship, which I&#39;ve never played before.\n\n4) eugman: Build Y1 Eugman\n\teugman: Experiment away. It might work as a bit of a handicap. The hints I&#39;ve been able to find so far think starting with red is bad since you don&#39;t use it for a while.\r\n\r\nThen again it could provide for a constant defense so what do I know.\r\n\n\n5) zoltar: Trade B1 Y1 Zoltar\n\n6) eugman: Trade Y1 B1 Eugman\n\tzoltar: Yes, usually gby should be your starting colors, and red gives the other player an opening advantage, but it is strong for defense later in the game.\n\n7) zoltar: Build B1 Zoltar\n\n8) eugman: Build Y1 Eugman\n\n9) zoltar: Trade B1 G1 Zoltar\n\n10) eugman: Build B1 Eugman\n\n11) zoltar: Build Y1 Zoltar\n\n12) eugman: Build Y2 Eugman\n\n13) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\n14) eugman: Trade Y1 R1 Eugman\n\tzoltar: Remember not to build a 4th ship of any one color in the same system or they will blow up.\n\n15) zoltar: Build G2 Zoltar\n\n16) eugman: Trade Y2 G2 Eugman\n\n17) zoltar: Trade G1 R1 Zoltar\n\n18) eugman: Discover B1 Eugman G3 Flapjack\n\teugman: Hmm, building anything new would give you an advantage, correct?\n\n19) zoltar: Discover G2 Zoltar Y1 Yellowstone\n\tzoltar: Yes and No. For example, if build red, so do I but you can build red again, and I have to move a red ship out to build another one, so it&#39;s even.  You can always move a piece to a new system though, in a situation like this, as that is always a safe option.\n\n20) eugman: Build Y2 Eugman\n\n21) zoltar: Build Y2 Greenbelt\n\n22) eugman: Move Y2 Eugman Flapjack\n\n23) zoltar: Discover Y1 Greenbelt G3 Greendale\n\n24) eugman: Trade Y2 R2 Flapjack\n\n25) zoltar: Build Y2 Zoltar\n\teugman: The planet of flapjack shall crush your obviously named planets!\n\n26) eugman: Build Y2 Eugman\n\n27) zoltar:\nBuild Y3 Greenbelt\n\n28) eugman: Move Y2 Eugman Flapjack\n\teugman: I really want to make that last yellow but I think you could force a catarophe if you wanted. Right?\n\teugman: Sorry for spelling errors. Happens if I type too fast.\n\tzoltar: Yes, I&#39;d move my y1 into your homeworld and BOOM!\n\n29) zoltar: Build Y3 Greendale\n\n30) eugman: Build B1 Flapjack\n\n31) zoltar: Build B2 Zoltar\n\tzoltar: You may want to undo that -- I&#39;ll wait a few minutes, as I can sacrifice my R1 in my homeworld and take your R2 in Yellowstone, just as if my G2 had been an R2.  You lose the piece for nothing.\n\teugman: Hmm you are right. I sometimes forget about some of the more indirect stuff you can do.\n\n32) eugman: Build R1 Eugman\n\tzoltar: Btw, that&#39;s why you always need to get a red ship once your opponent has one: had I no r1 to sacrifice, your R2 could chase me around and capture pieces at will.\n\n33) zoltar: Move R1 Zoltar Yellowstone\n\n34) eugman: Move B1 Flapjack Greenbelt\n\n35) zoltar: Build R2 Yellowstone\n\n36) eugman: Move B1 Flapjack Greenbelt\n\n37) zoltar: Sacrifice R2 Yellowstone\nAttack B1 Greenbelt\nAttack B1 Greenbelt\n\tzoltar: Of course, you can&#39;t capture a bigger ship than your own, only one of equal or smaller size, even with a sacrifice.\n\n38) eugman: Build R2 Flapjack\n\tzoltar: I don&#39;t know if your blue move will work, but it&#39;s definitely the type of move to look for; if I capture it, then you could make your red move.\n\teugman: No but I can do something else. Then  again you are too smart to fall for such a simple trap.\n\tzoltar: This second blue move looks more dubious, but it does make threats...\n\n39) zoltar: Trade Y2 R2 Greenbelt\n\teugman: Well unfortunately I&#39;ve got some stuff to take care of so my losing will have to wait till monday.\n\tzoltar: I&#39;d expected you to grow a b2 in flapjack instead, and then if I captured the b1 move the other b1 in.\n\tzoltar: Ok see you then\n\n40) eugman: Move B1 Eugman Flapjack\n\n41) zoltar: Move B1 Greenbelt Greendale\n\n42) eugman: Move R1 Eugman Greendale\n\teugman: Was that an accident or did you realize some grave error you failed to notice?\n\tzoltar: It was an accident: I had decided to trade the y2 for b2 before, then when I looked at it now I thought about moving a blue ship out, and as soon as I did, I remembered my original plan -- no grave error or anything like that.\n\teugman: Hmmm should we contine? It&#39;s very clear that I&#39;m trapped. I can&#39;t really ault any of your areas since my only three has to stay back and guard. I could make a new system but with the limited colors in the new system I&#39;d still be in a very weak position. Do you want this to be carried out to it&#39;s end?\n\teugman: Hmmm Looks like I&#39;m done for tonight. Basically I&#39;m asking if there is much left for me to learn by finishing a doomed endgame.\n\tzoltar: Up to you.  I have the advantage, but I haven&#39;t won yet.  You may want to play it out.  Whenever you think there is no hope, you can resign and we can start another if you&#39;d like.\n\tKeith: Hello eugman and zoltar,\r\n\r\nEugman - I was going to take up your learning request if a day went by without someone else taking it up.  Zoltar has quickly risen to become one of the strongest Homeworlds players.  Given his material advantage there is probably not much left of this game as a competition.  As a learning exercise the game is not over.  Though I am not going to point out my ideas unless it is okay with Zoltar.   --Keith\n\tzoltar: That&#39;s okay with me, and yes, I would play on as an exercise.\n\teugman: Ok, I&#39;ll keep playing then. I&#39;ll figure out my next move in the morning.\n\n43) zoltar: Sacrifice G2 Yellowstone\nBuild R3 Yellowstone\nBuild R3 Greenbelt\n\teugman: or I could do that. I&#39;ll see how that works out.\n\n44) eugman: Sacrifice R2 Flapjack\nAttack Y1N Greendale\nAttack B1N Greendale\n\tKeith: I think eugman&#39;s assessment is right that with only one 3-pointer there is not much opportunity for offense.  I believe there is a way for eugman to secure an r3 in two moves and possibly two r3s in four moves. Assuming Zoltar isn&#39;t able to intiate a game ending attack in the next move or so.\r\n\r\nWhat happens if eugman moves an r2 from flapjack to greenbelt?  It seems to me that zoltar must attack the r2 with his r2 in greenbelt to avoid having his r2 attacked and converted.  Then eugman can build an r3 in flapjack.  Zoltar can create a red catastrophie in flapjack by sacrificing the y2 in zoltar and moving the two r2&#39;s from greenbelt to flapjack.  Eugman loses two ships, Zoltar loses three and is down to one red ship.\r\n\r\nAlternatively if eugman moves an r1 from eugman to  greendale then zoltar must sacrifice a red ship to attack it or face attacks on the b1 or y1 in greendale.  Whether Zoltar attacks the r1 in greendale or not eugman can now build an r3 in eugman.\r\n\r\nCombined these two sequences might leave Zoltar with no red ships.  I might be wrong. I am not as strong a player as Zoltar.\r\n\n\tzoltar: Actually, if eugman moves an R2 to greenbelt, I would simply sacrifice my own R2 in greenbelt and capture the R2 and pass, rendering the situation the same as now, except for one of eugman&#39;s R2&#39;s being in the stash instead of in flapjack.\n\tKeith: One thing eugman should keep in mind is that zoltar&#39;s red star in his home system can only attack one ship per turn.  If eugman can move in enough ships in one turn into zoltars homeworld so that one survives then that ship can grow more of its kind and create a catastrophe in Zoltar&#39;s homeworld.  The best color to do this with is red, the one color area eugman as an advantage in.  For example if eugman moves that r2 from flapjack to green belt and Zoltar does not attack it then eugman will attack and get two r2s in greenbelt.  Sacrifice a y2 and move both r2s to zoltar&#39;s home system.  The red star can only convert one r2, the other grows an r3 and boom, red catastrophe.\r\n\r\nSorry to be so wordy. \n\n45) zoltar: Sacrifice R2 Greenbelt\nAttack R1 Greendale\nAttack B1 Greendale\n\n46) eugman: Sacrifice B1 Flapjack\nTrade Y1 G1 Greendale\n\teugman: Greendale Shall crumble and fall!\n\n47) zoltar: Discover Y3 Greendale B1 Greenhills\n\teugman: Oh wait, comments. I should have read those.\n\teugman: Oh and wordy isn&#39;t too much of a problem. As long as you are clear and remeber to avoid the giant paragraph of doom.\r\n\n\teugman: Yes, please make a large and entirely ignore my ship in your system.\n\n48) eugman: Build Y1 Flapjack\n\tzoltar: Not a bad move, btw -- made me think.  Ok, I sacrificed my only green piece (not something I like to do) to get maximum firepower, so you can only target one of my three bases at one time.  Your puny ship will be dealt with later. [Insert Evil Overlord Laugh here]\n\teugman: Yes I thought it was rather clever. You either have to ignore my tiny ship in your system or basically do the equivalent of moving one of your small reds over there and make it harder to get three sized reds.\r\n\r\nNow I just need to decide if I should capture something or cower in fear.\n\n49) zoltar: Trade B3 G3 Zoltar\n\n50) eugman: Build G2 Greendale\n\teugman: I think that was a better move since you can&#39;t rebuild that r2 right now without risking a catastrophe and you can&#39;t just sace a red to get total control of greendale.\r\n\r\nLet me know if I make some error in my thinking.\n\teugman: I mean you can&#39;t sacrifice a medium at least.\n\tzoltar: No, it was reasonable.  The other choice was to sac your y2 and send your r1 and one of your  r2&#39;s into either greenbelt or yellowstone and destroy my reds there.  That&#39;s why I sacked and built an R3 in each one, as either sac and you are vulnerable with me still having an R3 left.  Now I probably have to sac an R2 or something to deal with this latest incursion.\n\n51) zoltar: Build B2 Greendale\n\teugman: I&#39;m really not sure if what I&#39;m about to do is a good idea but it&#39;s worth a shot. Please let me know if it has any merit.\n\teugman: Oh wait, nvm I don&#39;t have a red in greendale.\n\n52) eugman: Sacrifice G2 Greendale\nBuild Y2 Eugman\nBuild R2 Flapjack\n\tzoltar: Yes, I sacked my R2 to take your R1 in greendale.  I sacked the R2 rather than the R1 in yellowstone because I figured it would be useful to have the blue, and I could get both in one turn.  Of course, you can build reds again, but now I can also build a red in greendale.\n\tzoltar: Now that is downright sneaky, trying to blow up the nice town of greendale (and I haven&#39;t even built greenhills yet)! Ok, how can I save my green star -- I&#39;ll have to think about this.\n\n53) zoltar: Attack G1 Greendale\n\tzoltar: \n\tzoltar: Nope, that won&#39;t work either.  You&#39;ve made a good move.\n\teugman: How unusual.\n\n54) eugman: Build R2 Eugman\n\tzoltar: Ok, we&#39;re heading for the hills.\n\teugman: Hmm, you took that small blue I wanted. I&#39;m going to have to think about this a little bit. Also I see no green on your not-obviously-named new colony.\n\n55) zoltar: Sacrifice G3 Zoltar\nBuild B3 Zoltar\nBuild B3 Greenbelt\nBuild B3 Greenbelt\n\tzoltar: Well, it was going to be green, but I figured it was a better move to take that blue you wanted; and now I have the three &quot;garden city&quot; towns built by FDR in the 30&#39;s (I live in Greenbelt).  Google all three of them together to read the cool story.\n\n56) eugman: Sacrifice Y2 Flapjack\nMove R2 Flapjack Greenhills\nMove R2 Flapjack Greenhills\n\teugman: Well that ruins my plan. I thought you were going to change the yellow to green. Hmmm,\n\n57) zoltar: Build Y2 Greenbelt\n\teugman: I thought greendale was connected to your home and I could force you to sacrifice your three. Now I need to ponder.\n\teugman: Heck why not.\n\n58) eugman: Move G2 Eugman Flapjack\n\n59) zoltar: Move B3 Greenbelt Flapjack\n\tzoltar: oops, mistyped that\n\n60) eugman: Move G2 Flapjack Greenhills\n\n61) zoltar: Sacrifice R3 Yellowstone\nAttack R2 Greenhills\nAttack R2 Greenhills\nAttack G2 Greenhills\n\teugman: Run away!!!!!\n\tKeith: Wow.  The game did go on... and on.  I am not sure if that had anything to do with my ideas.  Eugman, do you feel like your learning anything (since that was your goal)?  Keith\n\n62) eugman: Trade R2 G2 Eugman\n\tzoltar: Eugman has come up with some very good ideas on his own and has really made me think, though I still have maintained a material lead.\n\teugman: Yeah, I even got in a few clever moves. The whole game was annoying though because for most of it I felt like my back was up against the wall.\n\teugman: Zoltars, post wasn&#39;t there when I was typing this. Ok keith I&#39;m ready to magically defeat zoltar. Quick ! Your insightful move that will let me win in 5 turns is needed.\n\n63) zoltar: Build G3 Greenhills\n\n64) eugman: Build R2 Eugman\n\tzoltar: Blue squadron reporting for duty...\n\teugman: Hat I&#39;d give for a blue.\r\n\r\nAlso, is there a way to look back through the comments?\n\teugman: You know zoltar, it&#39;s clear I&#39;m going to annilate you. You should clearly resign now before it&#39;s too late. \n\n65) zoltar: Build R3 Greenbelt\n\n66) eugman: Pass\n\tzoltar: Well, I can always use another yellow ship\n\teugman: Hmmm, it won&#39;t let me send my two ships to your place and immediately after cause a catastrophe.\n\teugman: oh wait.....\n\teugman: Ok, now I just feel dumb.\n\n67) zoltar: Sacrifice Y3 Greenbelt\nMove G2 Greenhills Greendale\nMove G2 Greendale Eugman\nMove G1 Greendale Eugman\nCatastrophe Eugman G\n\teugman: Hey, you should um... move a red back into your base. Image the havoc that could happen if it had nothing there to protect it. Um, yeah that&#39;s it.\n\tzoltar: If you make this move, I can sacrifice my y1 in Zoltar (or a y2 and make another movement as well) and move my g1 from greendale to your homeworld and blow up your green ships and your green star, in which case you would be in serious trouble.  If  you want to have any chance, you need to undo this move!\n\tzoltar: Ironic that it&#39;s your homeworld star that you&#39;ve put in danger, not mine.  Btw, with a red star, all I need is a 3-size ship of a different color in my homeworld, and no red ships.  If you moved 2 ships into my homeworld, I&#39;d sack an R3 and capture them both.  \n\teugman: Twas but a joke. If you moved back a red I could probably make your star asplode. And really I think cleverness has come to an end. Does it really matter if I endanger myself now instead of losing in 8 or so turns?\n\n68) eugman: Sacrifice Y3 Eugman\nMove Y2 Eugman Greenhills\nMove R2 Eugman Greenhills\nMove R1 Eugman Greenhills\nCatastrophe Greenhills Red\n\n\teugman: How often does a two player game end with no pieces?\n\tzoltar: Or two moves, if you consider a move to be one move by each player, like in chess.  This is an important endgame trick, even if you don&#39;t have an overwhelming advantage.  You set things up so with 2 successive yellow sacs you blow up the two homeworld stars. It&#39;s important in a close game if after you blow up one star, the opponent can move into your homeworld and threaten to win. You then blow up the other star before he can capture anything.  \n\tzoltar: I&#39;ve lost games where I have no pieces left, but I don&#39;t know how often it happens; besides, you&#39;re going to have your y1 left, since I don&#39;t need to waste time capturing it!\n\teugman: I thought I&#39;d lose in style.\n\tzoltar: Good game.  I&#39;ll play again later if you wish.\n\teugman: I mean how often does the stash get emptied during the endgame.\n\tzoltar: Oh, not that often.  Maybe about 10-20% of my games all the pieces were used at one point.\n\nHomeworlds Online (SDG# 4052)\nStarted: 2006.8.20, Ended: 2006.11.12\nParticipants: JIMBO (S), tesla (W), zoltar (N), antihero (E)\nWinner: antihero\n\n1) zoltar: Homeworld Y1 B2 G3\n\tzoltar: h y1 b2 g3\n\n2) antihero: Homeworld G3 B2 Y3\n\tzoltar: Oops, I&#39;m using the wrong field to enter my moves.  Btw, Greetingz from Greenbelt, Milky Way!\n\tJIMBO: Word up from Eugene, OR\n\n3) tesla: Homeworld B1 Y3 G3\n\tzoltar: ok, where&#39;s Jimbo?\n\ttesla: yes, where is he? Maybe he&#39;s on vacation\n\tantihero: I know him in RL and text messaged him this morning asking what is up. No response, yet. So hmmm... You guys wanna start another game in the meantime?\n\tzoltar: Sure, we can start another one as well...\n\tzoltar: antihero started another 4 player game and I&#39;ve joined\n\n4) zoltar: Build G1 Zoltar\n\n5) antihero: Build Y1 Antihero\n\n6) tesla: Build G1 Tesla\n\n7) zoltar: Trade G1 Y1 Zoltar\n\n8) antihero: Trade Y1 G1 Antihero\n\n9) tesla: Trade G1 Y1 Tesla\n\n10) zoltar: Build G1 Zoltar\n\n11) antihero: Build Y1 Antihero\n\n12) tesla: Build G1 Tesla\n\n13) zoltar: Trade G1 R1 Zoltar\n\n14) antihero: Trade Y1 R1 Antihero\n\n15) tesla: Trade G1 R1 Tesla\n\n16) zoltar: Build G1 Zoltar\n\n17) antihero: Build Y1 Antihero\n\n18) tesla: Build Y1 Tesla\n\n19) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n20) antihero: Discover Y1 Antihero G1 Drop\n\n21) tesla: Trade Y1 B1 Tesla\n\n22) zoltar: Build G1 Zoltar\n\n23) antihero: Build R1 Antihero\n\n24) tesla: Discover Y1 Tesla B2 Salte\n\n25) zoltar: Trade G1 B1 Zoltar\n\n26) antihero: Build G1 Antihero\n\n27) tesla: Build G1 Tesla\n\n28) zoltar: Build G2 Zoltar\n\n29) antihero: Sacrifice Y3 Antihero\nMove G1 Antihero Drop\nDiscover G1 Drop R3 Suicidemission\nMove G1 Suicidemission Zoltar\nCatastrophe Zoltar Green\n\n30) tesla: Discover G1 Tesla Y2 Telas\n\n31) zoltar: Trade B1 G1 Zoltar\n\n32) antihero: Trade R1 Y1 Antihero\n\n33) tesla: Build G1 Telas\n\n34) zoltar: Build G2 Zoltar\n\n35) antihero: Build G2 Antihero\n\n36) tesla: Move G1 Telas Tesla\n\n37) zoltar: Trade G2 Y2 Zoltar\n\n38) antihero: Trade G2 Y2 Antihero\n\n39) tesla: Move G1 Tesla Salte\n\n40) zoltar: Build G2 Zoltar\n\n41) antihero: Build Y2 Drop\n\n42) tesla: Build G2 Telas\n\n43) zoltar: Trade G1 B1 Zoltar\n\n44) antihero: Discover Y2 Drop G2 Jump\n\n45) tesla: Move B1 Tesla Telas\n\n46) zoltar: Move B1 Zoltar Greenbelt\n\n47) antihero: Build R1 Antihero\n\n48) tesla: Build Y2 Salte\n\n49) zoltar: Build Y3 Greenbelt\n\n50) antihero: Build Y3 Jump\n\n51) tesla: Move Y1 Salte Tesla\n\n52) zoltar: Move Y1 Greenbelt Jump\n\n53) antihero: Sacrifice Y2 Antihero\nDiscover Y3 Jump B1 Wormhole\nMove Y3 Wormhole Antihero\n\n54) tesla: Build Y2 Tesla\n\n55) zoltar: Move Y1 Jump Tesla\nCatastrophe Tesla Y\n\n56) antihero: Move Y1 Drop Greenbelt\n\n57) zoltar: Move Y3 Greenbelt Tesla\n\n58) antihero: Build Y1 Greenbelt\n\tantihero: oh wow. bye tesla! good playing with you...\n\tantihero: wait what happened?\n\tzoltar: One of tesla&#39;s stars was destroyed; there remains one.\n\tzoltar: I don&#39;t know why Tesla&#39;s name is crossed out.\n\tantihero: weird...\n\tantihero: Hey Aaron, Tesla should still be in the game. His star should be in the top of the image, rather than in the middle, his name shouldn&#39;t be crossed out, etc.\n\ttesla: sorry, I can&#39;t to continue this game (I&#39;m going to a new house and I won&#39;t have INERNET conexion for two or three weeks) Now I&#39;m in a public center with INTERNET conexion.\n\n59) zoltar: Trade Y2 R2 Zoltar\n\tzoltar: m y3 greenbelt tesla\n\n60) antihero: Sacrifice R1 Antihero\nAttack B1N Greenbelt\n\n61) zoltar: Sacrifice R2 Zoltar\nAttack G3W Tesla\nAttack R1W Tesla\n\n62) antihero: Build Y1 Greenbelt\n\n63) zoltar: Build Y2 Tesla\n\n64) antihero: Move Y1 Greenbelt Zoltar\n\n65) zoltar: Discover Y3 Tesla B2 Death\n\tantihero: things are not looking good!\n\n66) antihero: Build R1 Antihero\n\n\tzoltar: Yeah, there&#39;s no hope.  gg.\r\n\n\tantihero: gg.\n\nHomeworlds Online (SDG# 4066)\nStarted: 2006.8.20, Ended: 2006.8.31\nParticipants: Laurie_Menke (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld G3 R2 B3\n\n2) Laurie_Menke: Homeworld G1 B2 Y3\n\tLaurie_Menke: Hi, again, Zoltar.  Thanks for the invite!  :o)\n\n3) zoltar: Build B1 Zoltar\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\tzoltar: Greetingz, primitive carbon waterbag unit!\n\n5) zoltar: Trade B1 Y1 Zoltar\n\n6) Laurie_Menke: Build Y1 Laurie_menke\n\n7) zoltar: Build Y2 Zoltar\n\n8) Laurie_Menke: Trade Y1 B1 Laurie_menke\n\n9) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\n10) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n11) zoltar: Build Y1 Zoltar\n\n12) Laurie_Menke: Build G2 Laurie_menke\n\n13) zoltar: Build Y1 Greenbelt\n\n14) Laurie_Menke: Build Y2 Laurie_menke\n\n15) zoltar: Build Y2 Greenbelt\n\n16) Laurie_Menke: Build Y3 Laurie_menke\n\n17) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt Y3 Wormhole\nMove Y1 Wormhole Laurie_menke\nCatastrophe Laurie_menke Y\n\tzoltar: oops, typed in zee wrong name\n\tLaurie_Menke: Wow...I never realized before that Homeworlds doesn&#39;t have an UNDO button.  :o(  What did you *mean* to do?  I&#39;ll try not to take advantage of the situation...\n\n18) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tzoltar: What do you mean? Homeworlds does have an UNDO button, but you can only change your move once.\n\n19) zoltar: Build Y2 Greenbelt\n\tzoltar: Zoltar cannot let you hog up zee yellow technology!\n\tLaurie_Menke: Oh!  I see!  I didn&#39;t read down far enough to see that you had used the UNDO...duh...I guess I&#39;m still a little sluggish from my cold.  :o(\n\tLaurie_Menke: I was afraid you&#39;d do that.  :o(\n\n20) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 Laurie_menke\nBuild Y3 Laurie_menke\n\n21) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt Y3 Wormhole\nMove Y1 Wormhole Laurie_menke\nCatastrophe Laurie_menke Y\n\tzoltar: Then you shouldn&#39;t have built the 3rd Yellow ship, and instead could&#39;ve moved one of your yellow ships to a new star! Now you are in big trouble, as if I can build a 3-sized ship, get it to your homeworld, and make a red ship before you can DOOMED.  So the race is on...\n\tLaurie_Menke: Not a problem, oh violent alien friend.  ;o)\n\n22) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: Of course, you&#39;re probably about to repeat the catastrophe, but it&#39;ll cost you, too.  ;o)\n\tzoltar: Don&#39;t you ever learn? &lt;sigh&gt; Primitive hyu-maahn beanz!\n\tLaurie_Menke: And yes, I know I&#39;m doomed...but we Earthlings like to have as much fun along the way as possible.  ;o)\n\n23) zoltar: Build B1 Zoltar\n\n24) Laurie_Menke: Trade B1 Y1 Laurie_menke\n\tzoltar: Looks like yer having a BLAST! [Insert Evil Overlord Laughter here]\n\n25) zoltar: Trade B1 G1 Zoltar\n\tzoltar: Btw, I think you&#39;d really enjoy a game with &#39;eugman&#39;.  He just played his first two games (he lost, and the second very badly), and told me he&#39;s looking for players he has a chance with.  His third game he&#39;s playing much better, and I think he&#39;d give you a run for your money, though you&#39;d have the advantage having more experience.  You ought to challenge him to a Homeworlds game.  You can look at our game in progress as well.\n\tLaurie_Menke: LOL...I *think* I&#39;ll take that as a compliment.  ;o)  And thanks for the tip...I&#39;ll challenge him right now.  :o)\n\n26) Laurie_Menke: Discover Y1 Laurie_menke G3 Jolly\n\tzoltar: \n\n27) zoltar: Discover Y1 Zoltar G1 Kermit\n\tzoltar: OK, but don&#39;t build unstable systems because he&#39;s learned how to sac pieces and blow things up... heh heh \n\n28) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: I wonder who taught him that?  ;o)\r\n\r\nOK, I&#39;m off to bed...see you tomorrow.  :o)\n\n29) zoltar: Build G2 Zoltar\n\n30) Laurie_Menke: Build Y1 Jolly\n\n31) zoltar: Move B3 Zoltar Kermit\n\n32) Laurie_Menke: Trade B1 R1 Laurie_menke\n\n33) zoltar: Discover G2 Zoltar B1 Blueberry\n\n34) Laurie_Menke: Move Y1 Jolly Laurie_menke\n\n35) zoltar: Build G2 Blueberry\n\tzoltar: Hey, after this do you want to play Pikeman?  Like Homeworlds, it&#39;s author is someone I know in person, but unlike homeworlds, I have no idea how to play.  I&#39;m playing my first game now, and and already way behind after about 5 moves.  It looks like a fun game though, and I want to learn how to play.\n\tLaurie_Menke: Sure, I&#39;m happy to play with you.  I&#39;ve played a few games, but I pretty much suck at it, too.  You&#39;ll probably be beating me in no time.  ;o)\n\n36) Laurie_Menke: Build Y2 Laurie_menke\n\n37) zoltar: Build G2 Blueberry\n\n38) Laurie_Menke: Build Y2 Jolly\n\n39) zoltar: Build G3 Zoltar\n\n40) Laurie_Menke: Build Y3 Laurie_menke\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Kermit\n\n42) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\n43) zoltar: Move Y3 Zoltar Blueberry\n\n44) Laurie_Menke: Discover R1 Laurie_menke Y3 Luella\n\n45) zoltar: Build B1 Kermit\n\n46) Laurie_Menke: Move B1 Laurie_menke Luella\n\n47) zoltar: Trade B3 R3 Kermit\n\n48) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove Y2 Jolly Kermit\nMove Y1 Jolly Kermit\nCatastrophe Kermit Y\n\n49) zoltar: Move G2 Blueberry Luella\n\n50) Laurie_Menke: Move R1 Luella Laurie_menke\n\n51) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild B2 Kermit\n\n52) Laurie_Menke: Move B1 Luella Laurie_menke\n\n53) zoltar: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Zoltar\nBuild R1 Kermit\n\n54) Laurie_Menke: Build Y1 Laurie_menke\n\n55) zoltar: Sacrifice G3 Blueberry\nBuild Y2 Blueberry\nBuild Y2 Blueberry\nBuild Y3 Zoltar\n\n56) Laurie_Menke: Discover B1 Laurie_menke G3 Rebuilding\n\n57) zoltar: Sacrifice Y2 Zoltar\nMove R3 Kermit Rebuilding\nMove Y2 Blueberry Rebuilding\n\n58) Laurie_Menke: Build B2 Rebuilding\n\tzoltar: Zee Yellow fleet ease mine, awl mine!  Zoltarian sheepz dominate zee Warp Drive Technology.  Yippee!   Zoo nigh shell rain nova zee hole galaxy!\n\tLaurie_Menke: Your sheepz dominate, eh?  LOL....baaaaa.  ;o)\n\tLaurie_Menke: It&#39;s the greens that are killing me.  :o/\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Rebuilding\nBuild R2 Kermit\n\n60) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R1 Rebuilding\n\tzoltar: Ewe may kin fun uv Zoltar&#39;z act scent?  baaahahaha\n\n61) zoltar: Sacrifice R3 Rebuilding\nAttack R1 Rebuilding\nAttack B2 Rebuilding\nAttack B1 Rebuilding\n\tLaurie_Menke: I think you&#39;re just toying with me like a cat with a mouse now.  ;o)\n\n62) Laurie_Menke: Build R1 Laurie_menke\n\tzoltar: Yes, ewe primitive carbon waterbag unitz hour know match four zee my tea four says uv Zoltar!\n\n63) zoltar: Sacrifice Y3 Zoltar\nMove R1 Kermit Rebuilding\nMove R1 Rebuilding Laurie_menke\nMove R1 Rebuilding Laurie_menke\nCatastrophe Laurie_menke R\n\n64) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n65) zoltar: Sacrifice Y3 Blueberry\nMove G2 Luella Laurie_menke\nMove B2 Rebuilding Laurie_menke\nMove B1 Rebuilding Laurie_menke\n\n66) Laurie_Menke: Attack B1 Laurie_menke\n\n67) zoltar: Sacrifice G2 Blueberry\nBuild G2 Laurie_menke\nBuild B3 Laurie_menke\n\n68) Laurie_Menke: Build B3 Laurie_menke\n\tzoltar: Awl sheepz storm zee Laurie_Menke homeworld for big finale party!  Eat wheel bee a blast!\n\n69) zoltar: Sacrifice G2 Blueberry\nBuild G2 Laurie_menke\nBuild B3 Laurie_menke\n\n70) Laurie_Menke: Trade B3 R3 Laurie_menke\n\n71) zoltar: Sacrifice R2 Kermit\nAttack R3 Laurie_menke\nAttack R1 Laurie_menke\n\n72) Laurie_Menke: Build Y1 Laurie_menke\nCatastrophe Laurie_menke Blue\nCatastrophe Laurie_menke Green\n\n\tLaurie_Menke: Thanks for the game, Zoltar...congrats on the win.  :o)\n\nHomeworlds Online (SDG# 4067)\nStarted: 2006.8.21, Ended: 2006.8.21\nParticipants: eugman (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\teugman: Will probably continue to learn a lot by playing people who whomp me.I also made an open challenge for someone a bit easier.\n\n2) eugman: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) eugman: Build G1 Eugman\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) eugman: Trade G1 B1 Eugman\n\n7) zoltar: Build Y1 Zoltar\n\n8) eugman: Build G1 Eugman\n\n9) zoltar: Discover Y1 Zoltar G2 Spinach\n\n10) eugman: Build B1 Eugman\n\n11) zoltar: Build Y2 Spinach\n\n12) eugman: Trade G3 Y3 Eugman\n\n13) zoltar: Discover Y1 Spinach G3 Kale\n\n14) eugman: Move B1 Eugman Kale\n\teugman: Well this is certainly a bad situation.\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Kale\nBuild Y3 Spinach\nBuild Y3 Zoltar\n\tzoltar: I&#39;ve noticed I&#39;ve already taken advantage of an early monopoly on Yellow technology: notice you can&#39;t build another yellow now that I&#39;m in range to cause a catastrophe.  you needed to grab a y1 early, even if it meant my getting a y2 first, I think.  I don&#39;t know that much about openings yet -- it&#39;s my weakest part of the game -- but when I see the chance to lock someone out of a color, especially yellow, I go for it. Maybe Yellow is the most important starting color, but I&#39;m not sure.\n\n16) eugman: Discover Y3 Eugman R3 Owie\n\tzoltar: I couldn&#39;t resist!\r\n\n\n17) zoltar: Trade Y3 R3 Zoltar\n\teugman: I had a plan to deal with the color lockout so I wasn&#39;t too worried. What I didn&#39;t expect was you using your green and getting me in a position to get a catastrophe. I&#39;ll have to rethink a bit now.\n\tzoltar: got my orders backwards -- anyway, may as well go for the total yellow lockout.  \n\teugman: Wait, what just happened.\n\teugman: oh ok\n\n18) eugman: Build B2 Kale\n\n19) zoltar: Sacrifice Y2 Kale\nMove Y3 Spinach Kale\nMove Y3 Kale Eugman\n\tzoltar: Ok, I&#39;m making a super-efficient move here: I&#39;d usually trade for a g3, but a y3 not only stops you from threatening my homeworld by moving your y3 closer, but it also threatens to win if I get my other y3 into your homeworld (I&#39;d then sac my r3 and gobble up everything in your homeworld).\r\n\n\teugman: Hmm.\n\teugman: Have you ever seen someone win who had at one point no three&#39;s?\n\n20) eugman: Pass\n\n21) zoltar: Sacrifice R3 Zoltar\nAttack G1 Eugman\nAttack B1 Eugman\nAttack B1 Kale\n\tzoltar: I&#39;ve seen people sac their last 3-size ship for a checkmate.  Usually, if you ever leave your homeworld without a 3-sized ship, you are toast.  That&#39;s the number 1 defensive rule.  In your case, you were in big trouble no matter what - you had to trade your y3 back to a green or a red ship to defend your homeworld -- bringing it out now ends the game quickly.\n\teugman: Yeah I definately made a big mistake in not changing it back.\n\n\nHomeworlds Online (SDG# 4077)\nStarted: 2006.8.21, Ended: 2006.8.25\nParticipants: Keith (S), eugman (N)\nWinner: Keith\n\n1) eugman: Homeworld Y3 B1 G3\n\n2) Keith: Homeworld B1 Y2 G3\n\tKeith: Hello eugman.  That was a very complex first game you played.\n\n3) eugman: Build G1 Eugman\n\n4) Keith: Build G1 Keith\n\teugman: But a bit understandable  once you know what&#39;s going on. I noticed you have a very similar configuration to mine.\n\n5) eugman: Trade G1 Y1 Eugman\n\n6) Keith: Discover G1 Keith Y3 Sihnon\n\tKeith: Yes.  I don&#39;t care to start out with red in my home system.  That leaves one each of blue, green, and yellow.  I consider having green as one of the stars inferior because 1) if an enemy invades my home world they can grow ships using my star and 2) I can&#39;t sacrifice the star for the factory effect.\n\n7) eugman: Build Y1 Eugman\n\teugman: He was trying something different. Also if you can make it into the midgame it can provide for a strong defense.\n\n8) Keith: Build G1 Keith\n\n9) eugman: Trade Y1 B1 Eugman\n\n10) Keith: Build G1 Sihnon\n\n11) eugman: Build B2 Eugman\n\teugman: Actually I&#39;m going to wait till tomorrow to continue playing. There is no way I can play two games at once and have any chance of winning either.\n\tKeith: Okay.  I will just peek in on your game with Zoltar.\n\n12) Keith: Build G2 Keith\n\n13) eugman: Trade B2 G2 Eugman\n\n14) Keith: Discover G1 Sihnon Y2 Whitefall\n\tKeith: I see Zoltar educated you on factories.\n\n15) eugman: Trade Y1 R1 Eugman\n\teugman: Educated sounds far too gentle.\n\n16) Keith: Build G2 Whitefall\n\tKeith: Learning from Zoltar is like drinking from a firehose.\n\n17) eugman: Discover B1 Eugman Y2 Someplace\n\teugman: But afterwards being thristy is the least of your problems.\n\n18) Keith: Trade G2 R2 Keith\n\n19) eugman: Move G2 Eugman Someplace\n\n20) Keith: Sacrifice G3 Keith\nBuild G2 Sihnon\nBuild G3 Keith\nBuild G3 Whitefall\n\n21) eugman: Move G2 Someplace Eugman\n\teugman: Darnit.\n\n22) Keith: Move G1 Whitefall Eugman\n\teugman: I definately don&#39;t have control of the momentum.\n\tKeith: I am struggling hard to try to keep you from getting it.\n\n23) eugman: Move G2 Eugman Whitefall\n\teugman: Sigh. I expected you&#39;d try to blow me up. Natural thing to do given the opportunity and the green advantage.\n\n24) Keith: Sacrifice R2 Keith\nAttack R1 Eugman\nAttack G2 Whitefall\n\tKeith: Actually I don&#39;t expect you would let me get a green catastrophe.  Change the G3 to something else and that ploy threatens neither ship nor planet.  I have another idea...\n\teugman: But if I change it I risk letting you have factory access all by yourself.\n\n25) eugman: Trade B1 R1 Someplace\n\tKeith: I am not just going for the green.  I am going for all the marbles.\n\n26) Keith: Move G3 Whitefall Eugman\n\teugman: Well you&#39;ve certainly got a good collection.\n\tKeith: And a remote r1 has unraveled my plan.\n\tKeith: I was thinking I could no longer aford to move my g3 to eugman.  Maybe I still can.\n\n\teugman: You could have won already if you took bigger risks and saw the whole picture. I&#39;d tell you how but it&#39;s still doable.\n\teugman: Hmm\n\teugman: If I leave Home I lose right?\n\tKeith: You would lose.  No ships of your at your homeworld.  Though I think the game won&#39;t let you. \r\n\r\nDo let me know, post game, what I could have done earlier.\n\teugman: You stayed all green for the most part. On turn 20 you had two large greens. You could have changed to yellow and you would have had greater mobility and still retained acess to the factory effect. It also would have made bombing me much easier since you could concievably do it in one turn and wipe out my singular large theyby securing victory.\n\tKeith: Thank you the advice.  I could have changed the g3 at my homeworld.  The other did not have access to blue.  I was a little leary about doing so then sacrificing my homeworld 3 pointer to attack your ship since a simple color change on your part would leave me attacking nothing and giving you something to convert.\n\teugman: That&#39;s true but in theory if you forced me to change color that would be great for you since you could then sacrifice one of your twos so the 1 back at home could regrow two greens locking me out entirely.\n\teugman: Whoops slight mistake in what I just said. But you would have a large green at home again.\n\tKeith: I see your point.  \r\n\r\nI did play a game against Zoltar where I had destroyed one of his two homeworld systems and had a substantial ship advantage.  I lost the game when I rushed on offense.  So I tend to go a little slower now.\n\nHomeworlds Online (SDG# 4081)\nStarted: 2006.8.21, Ended: 2006.8.22\nParticipants: zoltar (S), eugman (N)\nWinner: zoltar\n\n1) eugman: Homeworld G2 B1 Y3\n\n2) zoltar: Homeworld B3 Y1 G3\n\tzoltar: Pray pair two meat yore DOOM, hyu-mahn bean!\n\n3) eugman: Build Y1 Eugman\n\teugman: (shouting to crew) Joe, the interpreter is on the fritz! You told them we come in peace right?\n\n4) zoltar: Build G1 Zoltar\n\n5) eugman: Build Y1 Eugman\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) eugman: Trade Y3 G3 Eugman\n\tzoltar: so I have to trade to yellow now or never...\n\n8) zoltar: Build Y2 Zoltar\n\n9) eugman: Discover Y1 Eugman G3 Lime\n\n10) zoltar: Discover Y2 Zoltar G2 Swisschard\n\n11) eugman: Build Y2 Eugman\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) eugman: Trade Y2 R2 Eugman\n\tzoltar: Well, you&#39;re catching on fast -- now I have to scramble to make sure you don&#39;t get all the big yellows\n\n14) zoltar: Build Y2 Swisschard\n\teugman: I can&#39;t wait for the homeworlds ladder.\n\n15) eugman: Build R1 Eugman\n\n16) zoltar: Trade Y3 G3 Zoltar\n\n17) eugman: Move R2 Eugman Lime\n\n18) zoltar: Discover Y2 Swisschard G1 Collards\n\n19) eugman: Trade R1 B1 Eugman\n\n20) zoltar: Build G1 Zoltar\n\n21) eugman: Build B1 Eugman\n\n22) zoltar: Build G1 Zoltar\n\tzoltar: Well, so far you have the advantage, I think -- galaxies better than the last game.\n\n23) eugman: Trade B1 R1 Eugman\n\tzoltar: nothing else I can do\n\n24) zoltar: Discover G1 Zoltar G2 Kale\n\n25) eugman: Build B1 Eugman\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Zoltar\nBuild R2 Zoltar\n\n27) eugman: Move R2 Lime Kale\n\n28) zoltar: Discover R2 Zoltar Y2 Lemon\n\n29) eugman: Sacrifice G3 Eugman\nBuild Y3 Eugman\nBuild Y3 Lime\nBuild R2 Kale\n\teugman: Hmmm I forgot I really can&#39;t get back now. Hmm this will take a bit of thinking.\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Kale\nBuild R3 Lemon\n\tzoltar: My only reasonable chance to catch up has been to build a &#39;factory&#39;:  I have a g3 and one other green piece in my homeworld (or another star, but that is more rare), and all the greens are used up.  I can then sack my G3 and then rebuild it immediately in place, plus two other builds.\n\teugman: Ah so that&#39;s what&#39;s meant exactly by factory.\n\n31) eugman: Sacrifice Y3 Lime\nMove R2 Kale Lime\nMove R2 Kale Lime\nMove R2 Lime Eugman\n\tKeith: FWIW you have an audience.  This game is quite the spectator sport.  --Keith\n\teugman: I have a feeling this is going to go downhill for me and fast.\r\n\n\teugman: Please let me know if what I&#39;m about to do it very clever or not.\n\n32) zoltar: Sacrifice G3 Kale\nBuild G3 Kale\nBuild Y3 Collards\nBuild Y3 Swisschard\n\teugman: actually that may have been a bad idea.\n\teugman: hmm\n\teugman: This can wait a day. This is a very bad situation so I need a move that is very good.\n\tzoltar: Yes, it would leave me with an advantage in red tech.  Remember, I don&#39;t need red ships in my homeworld to defend, as I can sac one of my reds elsewhere.  The perfect &#39;castle&#39; in a yb star system, btw, would be to have a g3 and r1 and nothing else; that way the red could defend against any one piece, an r2 or r3 elsewhere could be sacked to stop multiple invaders, and with one of each color, the system would be maximally stable and thus hardest to create a catastrophe.  Here blowing up my two r1&#39;s would be a waste of your resources.\n\teugman: Well I&#39;m going to lose most of my red tech soon anyways since you can just sac a red 2 and cap my 2 reds there.\n\tzoltar: Yes, it was an unfortunate side-effect of your sacking your G3, as not only could I build the G3 immediately, but I could threaten your red ships as well before they could disperse and build R3s.  Notice also that if you move one of them, I can capture the other with an R1 sac, so that you can&#39;t build an R3 right away as there is then an R1 in the stash.  Given all that, I think your G3 sack was a mistake.  However, I didn&#39;t expect it, and it was a very clever try, something that usually makes for a great move but in this case had severe tactical drawbacks.\n\teugman: It doesn&#39;t look like something I&#39;m going to be able to recover from. I think I&#39;ll carry this out to it&#39;s near end tomorrow and then see if I can beat someone who isn&#39;t omniscient.\n\tzoltar: If it makes you feel any better, I played world champion Andy Looney in person just last week, and lost for the nth time, though for the first time I actually blew up one of his homeworld stars before I died.  Heh.\n\n33) eugman: Build R3 Lime\n\teugman: Couldn&#39;t see what much else I could do.\n\n34) zoltar: Sacrifice Y3 Swisschard\nMove R2 Lemon Lime\nMove R1 Zoltar Lemon\nMove R1 Lemon Lime\nCatastrophe Lime R\n\n35) eugman: Build Y3 Lime\n\teugman: At least now I know about the factory effect so I can deal with Keiths attempt to do the same thing.\n\n36) zoltar: Sacrifice G3 Kale\nBuild G3 Kale\nBuild R1 Lemon\nBuild R2 Zoltar\n\tzoltar: Yes, the factory is a really powerful tool, if you can set one up.  I don&#39;t mind sacrificing here, as I can build reds faster than you can.\n\n37) eugman: Move R1 Eugman Lime\n\n38) zoltar: Sacrifice Y2 Collards\nMove R2 Zoltar Kale\nMove R1 Lemon Collards\n\tzoltar: Of course I did give you yet another Y3, but I like my advantage\n\teugman: Well I&#39;m pretty sure I&#39;ve lost. I can&#39;t assault you because you have suffiecent red tech. If I sit around you&#39;ll keep hitting me with your exploding ships(tm).\n\n39) eugman: Move B1 Eugman Lime\n\teugman: The only way I could win would be o expand out, and find a way to bomb both of your homeworlds. An unlikely proposition\n\n40) zoltar: Sacrifice G3 Kale\nBuild R2 Lemon\nBuild R3 Kale\nBuild R3 Collards\n\n\tzoltar: Yes, you have to expand, but I can expand faster, with my factory, and I have all the big red ships now.\n\teugman: Well I&#39;ve essentially lost. I&#39;m going to resign to lighten my load since I&#39;ve got four other games on the stack and two are homeworlds. I definately learned something that will help me in my game against keith. At least I had the momentum for a while this time.\n\tzoltar: You played quite well. When you have less games going on, let&#39;s play again!\n\nHomeworlds Online (SDG# 4083)\nStarted: 2006.8.22, Ended: 2006.9.9\nParticipants: Laurie_Menke (S), eugman (N)\nWinner: Laurie_Menke\n\n1) eugman: Homeworld B2 Y1 G3\n\n2) Laurie_Menke: Homeworld Y1 B3 G3\n\teugman: Yeah I&#39;m really new to homeworlds but apparently learning fast. I&#39;m in a game with zoltar and in one with keith right now so I don&#39;t know if I&#39;ll be able to do any of the quick back and forth while that is the case.\n\tLaurie_Menke: No problem.  I&#39;m usually only able to play in the evenings anyway.  And although I&#39;ve played a fair amount of games of Homeworlds, I&#39;m still pretty rotten at it.  ;o)\n\n3) eugman: Build G1 Eugman\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\teugman: From playing playing against zoltar I&#39;ve figured out that in order to win you need to be brutally offensive. Is that a problem at all?\n\tLaurie_Menke: No...you&#39;re right.  That&#39;s the way to play the game.  I joke around with zoltar about being peaceful and all, and I am in real life, but this game is about destroying the enemy quickly and efficiently.  ;o)  Good luck!\n\n5) eugman: Trade G1 Y1 Eugman\n\n6) Laurie_Menke: Discover G1 Laurie_menke B2 Hill\n\n7) eugman: Discover Y1 Eugman G3 Dale\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: LOL...I love playing around with the names of the star systems.  :oD\n\teugman: Well you started a theme so I figured I should continue it.\n\n9) eugman: Build G1 Eugman\n\teugman: Just curious, what time zone are you in.\n\n10) Laurie_Menke: Build G2 Hill\n\tLaurie_Menke: Pacific...I&#39;m in Woodland, California...near Sacramento.  How about yourself?\n\n11) eugman: Trade G1 B1 Eugman\n\teugman: I&#39;m in western pennsylvannia. I figured you had to be on the west coast or have an exaggerated sense of &quot;evening&quot;.\n\n12) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Ah...I see what you mean.  Yeah, I meant from around 5ish to around 8 or 9, but that would make it...um...I think 8ish to 11 or 12.\n\n13) eugman: Move B1 Eugman Dale\n\n14) Laurie_Menke: Discover G1 Laurie_menke Y2 Chip\n\n15) eugman: Build G2 Eugman\n\n16) Laurie_Menke: Trade G2 Y2 Hill\n\n17) eugman: Move G2 Eugman Dale\n\n18) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Chip\nBuild G2 Hill\nBuild G3 Laurie_menke\n\n19) eugman: Move G2 Dale Eugman\n\n20) Laurie_Menke: Build Y2 Hill\n\n21) eugman: Sacrifice G3 Eugman\nBuild G3 Eugman\nBuild Y3 Dale\nBuild B1 Dale\n\n22) Laurie_Menke: Sacrifice Y2 Hill\nDiscover G2 Hill Y3 Luella\nDiscover G1 Hill Y3 Sharon\n\teugman: School starts tomorrow so I may go over the time limit since I&#39;m busy getting evrything together and would like to think enough to make sure I have a good move.\n\tLaurie_Menke: No problem...take your time.  Good luck with your classes!\n\n23) eugman: Trade Y3 R3 Dale\n\n24) Laurie_Menke: Sacrifice Y2 Hill\nMove G1 Sharon Eugman\nMove G2 Luella Eugman\nCatastrophe Eugman Green\n\n\teugman: That&#39;s right. Wasn&#39;t thinking quite straight it would seem.\n\teugman: Oh, by the way were you the one who did the drawing for the oasis sentence?\n\tLaurie_Menke: Nope...not me.  Mine are the boring stick figure drawings.  ;o)\n\tLaurie_Menke: Sorry to end this game so abruptly, but here goes....\r\n\r\nThanks a lot for the fun...challenge me any time you&#39;d like!  And good luck with your classes!  :o)\n\nHomeworlds Online (SDG# 4087)\nVariants: &quot;Unrated&quot;\nStarted: 2006.8.22, Ended: 2006.8.22\nParticipants: charlie (S), Wkr (N)\nWinner: Wkr\n\n1) Wkr: Homeworld B1 Y2 G3\n\n2) charlie: Homeworld G1 Y2 B3\n\tcharlie: homeworld g1 y2 b3\r\n\n\n3) Wkr: Build G1 Wkr\n\n4) charlie: Discover B3 Charlie G3 Charlie2\n\n\nHomeworlds Online (SDG# 4082)\nStarted: 2006.8.24, Ended: 2006.8.26\nParticipants: antihero (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\n2) antihero: Homeworld G3 B2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) antihero: Build Y1 Antihero\n\tantihero: Hello zoltar. How&#39;s it going?\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) antihero: Discover Y1 Antihero G1 Maine\n\n7) zoltar: Build Y2 Zoltar\n\n8) antihero: Build Y2 Antihero\n\n9) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n10) antihero: Trade Y3 R3 Antihero\n\tzoltar: I&#39;m doing fine.  I learned Homeworlds two months ago and have been playing a lot and am expanding my gaming by trying out Pikeman and Zendo games, which I just started.  I love this site!\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) antihero: Build Y2 Maine\n\tantihero: there&#39;s a metro stop (sort of) near where I live called greenbelt. Same one?\n\tantihero: um... I live in DC... haha\n\n13) zoltar: Build G1 Zoltar\n\tantihero: I definitely like this site. Just started playing here a few days ago. It&#39;s great. I&#39;ve played homeworlds a couple of times in RL, but not too much.\n\n14) antihero: Build R1 Antihero\n\tzoltar: Affirmative.  I live a 20 minute walk from that station.\n\tantihero: I&#39;m in Columbia Heights right now...\n\n15) zoltar: Move R2 Zoltar Greenbelt\n\tantihero: well, actually I&#39;m downtown right now, but I live in ColumbiaHeights.\n\n16) antihero: Move R1 Antihero Maine\n\n17) zoltar: Trade G1 R1 Zoltar\n\n18) antihero: Discover Y2 Maine Y2 Petworth\n\n19) zoltar: Build Y3 Greenbelt\n\tzoltar: Well, you are a lot better at openings than I.  You&#39;ve outpaced me so far every step of the way!\n\n20) antihero: Build Y3 Maine\n\tantihero: really? I don&#39;t really feel that way...\n\n21) zoltar: Build G1 Zoltar\n\tantihero: I&#39;m making an okay play now, but things are still early.\n\tzoltar: well, you&#39;re getting an extra Y3 ship for free -- that&#39;s a huge advantage, and I don&#39;t even know what I did wrong.\n\n22) antihero: Build Y3 Antihero\n\n23) zoltar: Build G1 Zoltar\n\n24) antihero: Trade Y2 B2 Antihero\n\n25) zoltar: Discover G1 Zoltar B2 Blueridge\n\n26) antihero: Move B2 Antihero Maine\n\n27) zoltar: Build G2 Blueridge\n\n28) antihero: Sacrifice Y2 Petworth\nMove R3 Antihero Maine\nMove R3 Maine Blueridge\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueridge\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n30) antihero: Attack G2 Blueridge\n\tzoltar: Yeah, I&#39;m pretty much dead.\n\tzoltar: Wait -- an idea!!!!\n\n31) zoltar: Move G1 Zoltar Blueridge\nCatastrophe Blueridge G\n\tzoltar: I at least get the two big greenies\n\tantihero: nice.\n\n32) antihero: Trade Y1 G1 Maine\n\n33) zoltar: Discover G3 Zoltar Y2 Yellowstone\n\tzoltar: Well, after all the fireworks, I have to go, will check back on the game late tonight...\n\n34) antihero: Discover B2 Maine G2 Greenstar\n\n35) zoltar: Build G1 Yellowstone\n\tzoltar: After all the tactics, I&#39;ve caught up in firepower, and have avoided making a total mess of things!\n\n36) antihero: Move Y3 Maine Greenstar\n\n37) zoltar: Move Y3 Greenbelt Maine\n\n38) antihero: Sacrifice G1 Maine\nBuild B1 Greenstar\n\tantihero: homeworlds is such a great game.\n\n39) zoltar: Sacrifice G3 Yellowstone\nBuild G1 Yellowstone\nBuild G2 Zoltar\nBuild G3 Yellowstone\n\tzoltar: Yep!\n\n40) antihero: Build B1 Greenstar\n\n41) zoltar: Sacrifice G3 Yellowstone\nBuild Y1 Maine\nBuild Y2 Maine\nBuild Y2 Greenbelt\n\n42) antihero: Attack Y1 Maine\n\tzoltar: Looks like somebody is after my blue star...\n\n43) zoltar: Sacrifice R2 Greenbelt\nAttack R1 Maine\nAttack Y1 Maine\n\n44) antihero: Sacrifice Y3 Greenstar\nDiscover R3 Blueridge R1 Wormhole\nMove R3 Wormhole Antihero\nPass\n\tantihero: Not quite yet, though. it looks like I may be in some trouble here...\n\n45) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\nBuild Y3 Greenbelt\n\tzoltar: I&#39;m counting on that...\r\n\n\n46) antihero: Move Y3 Antihero Maine\nCatastrophe Maine Y\n\tantihero: All right, I&#39;m out, I might play a couple moves tomorrow, but maybe not. Later man.\n\tantihero: Oh, and good game so far.\n\n47) zoltar: Sacrifice G3 Yellowstone\nBuild R1 Maine\nBuild R2 Maine\nBuild G3 Yellowstone\n\tzoltar: Yup, I thought I was toast for a while, but now I am on the attack and have the advantage, with my swarm of green and yellow ships.  You can sack your other yellow ship for either half my yellow fleet or my blue star, but eitherway I&#39;m the only one left with yellow and green ships on the board, which should allow me to cause lots of trouble.\n\n48) antihero: Trade R3 Y3 Antihero\n\n49) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Greenbelt Maine\nMove Y3 Maine Antihero\n\tzoltar: Red Fleet: we wheel avenge zee sacrifice uv hour Yellow brotherz:  awl sheepz storm zee antihero homeworld! Attack!\n\tzoltar: Sacking both your Y3s has left you too vulnerable.  I don&#39;t think there is any adequate defense.\n\tantihero: yeah, this is about over. is it good form to resign at this point or to play it out?\n\n50) antihero: Build Y1 Antihero\n\tantihero: meh, it won&#39;t take too long anyways.\n\n51) zoltar: Sacrifice R2 Maine\nAttack Y1 Antihero\nAttack Y3 Antihero\n\tzoltar: Yeah, might as well play it out, it&#39;s only 1 more move. Thanks for the game. Play again?\n\tantihero: for sure.\n\n\tantihero: might as well give you options. :)\n\tzoltar: Rezzizztanz ease few tile: ewe have been assimilated!\n\nHomeworlds Online (SDG# 3720)\nStarted: 2006.8.25, Ended: 2007.2.18\nParticipants: andylooney (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y3 B1 G3\n\n2) andylooney: Homeworld R2 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) andylooney: Build G1 Andylooney\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) zoltar: Build G1 Zoltar\n\n8) andylooney: Build Y1 Andylooney\n\n9) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n10) andylooney: Discover Y1 Andylooney G1 Collegepark\n\n11) zoltar: Trade G1 R1 Zoltar\n\n\nHomeworlds Online (SDG# 4108)\nStarted: 2006.8.26, Ended: 2006.8.28\nParticipants: zoltar (S), antihero (N)\nWinner: zoltar\n\n1) antihero: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld G3 B1 Y3\n\n3) antihero: Build G1 Antihero\n\n4) zoltar: Build Y1 Zoltar\n\tzoltar: oops, didn&#39;t want to make the star sizes symmetrical.\n\n5) antihero: Discover G1 Antihero Y3 Sun\n\n6) zoltar: Build Y1 Zoltar\n\n7) antihero: Build G1 Sun\n\n8) zoltar: Discover Y1 Zoltar G2 Earth\n\n9) antihero: Build G1 Sun\n\n10) zoltar: Build Y2 Zoltar\n\n11) antihero: Build G2 Antihero\n\n12) zoltar: Trade Y2 G2 Zoltar\n\n13) antihero: Trade G2 Y2 Antihero\n\tantihero: got im?\n\n14) zoltar: Discover G2 Zoltar Y2 Venus\n\n15) antihero: Discover G1 Sun B2 Neptune\n\n16) zoltar: Build Y2 Zoltar\n\n17) antihero: Move G1 Sun Antihero\n\n18) zoltar: Trade Y3 G3 Zoltar\n\n19) antihero: Discover G1 Antihero Y3 Alpha\n\n20) zoltar: Build Y3 Zoltar\n\n21) antihero: Build G2 Neptune\n\n22) zoltar: Discover G3 Zoltar B2 Mercury\n\tzoltar: You&#39;ve got the opening lead again, but I will rely on my Zoltarian middle-game powers to pull through again!\n\n23) antihero: Discover Y2 Antihero B3 Pluto\n\n24) zoltar: Trade Y2 R2 Zoltar\n\n25) antihero: Trade G1 R1 Neptune\n\n26) zoltar: Build Y2 Earth\n\n27) antihero: Sacrifice G1 Alpha\nBuild Y3 Pluto\n\n28) zoltar: Trade Y3 R3 Zoltar\n\n29) antihero: Move Y3 Pluto Neptune\n\n30) zoltar: Build Y3 Zoltar\n\n31) antihero: Sacrifice G1 Sun\nBuild Y3 Pluto\n\n32) zoltar: Move Y3 Zoltar Mercury\n\n33) antihero: Build G1 Antihero\n\n34) zoltar: Sacrifice Y2 Earth\nMove G3 Mercury Pluto\nMove G3 Pluto Antihero\n\n35) antihero: Sacrifice Y3 Pluto\nMove G2 Neptune Pluto\nMove G2 Pluto Antihero\nMove Y2 Pluto Antihero\nCatastrophe Antihero Green\n\n36) zoltar: Build Y2 Earth\n\n37) antihero: Trade Y2 G2 Antihero\n\tzoltar: Party at antihero&#39;s!  Party at antihero&#39;s! All ships invited. 3 bands, food, beer, and green Orion Star Trek belly dancers! It&#39;s gonna be a blast!\n\tantihero: bummer. I don&#39;t like this party.\n\n38) zoltar: Sacrifice Y2 Earth\nDiscover Y3 Mercury G3 Wormhole\nMove Y3 Wormhole Antihero\n\tantihero: &quot;This party&#39;s over.&quot;\n\tzoltar: aw shukz -- eye waz juzz star tin two half fun!\n\n39) antihero: Build G1 Antihero\n\n40) zoltar: Sacrifice R2 Zoltar\nAttack G2 Antihero\nAttack G1 Antihero\n\n\tantihero: my midgame needs work. :)\n\tzoltar: Yep, you should have two colors in your homeworld whenever possible, for one.  Good game.  Play again?\n\nHomeworlds Online (SDG# 4112)\nStarted: 2006.8.26, Ended: 2006.8.29\nParticipants: zoltar (S), tesla (N)\nWinner: zoltar\n\n1) tesla: Homeworld B2 G3 Y3\n\n2) zoltar: Homeworld Y3 B1 G3\n\tzoltar: Before I move, you should undo your move and start with a 3-sized ship, such as a Y3.  Why did you build a Y1?\n\tzoltar: Greetingz, from Greenbelt, Milky Way!\n\n3) tesla: Build Y1 Tesla\n\ttesla: Sorry, I have to play more\n\n4) zoltar: Build G1 Zoltar\n\n5) tesla: Discover Y3 Tesla G1 Tales\n\n6) zoltar: Build G1 Zoltar\n\n7) tesla: Build Y1 Tesla\n\n8) zoltar: Discover G1 Zoltar B2 Blueridge\n\tzoltar: btw, moving your 3-sized piece away from your homeworld is very dangerous. The reason is that if I move a 3-sized ship into your homeworld, you cannot capture it, even if you have red ships there, unless you have a 3-sized ship in your homeworld defending.  So later in the game, having an opponent get a large ship into your homeworld which you cannot capture usually is fatal. In this case, I can&#39;t do anything for several moves, but when I get some pieces built and moved out,  you will have to waste a move moving your Y3 back, unless you can quickly build another 3-sized ship there before I can threaten to move a big piece in.\n\n9) tesla: Trade Y1 B1 Tesla\n\n10) zoltar: Build G2 Blueridge\n\n11) tesla: Move B1 Tesla Tales\n\n12) zoltar: Trade G2 Y2 Blueridge\n\n13) tesla: Build Y1 Tales\n\n14) zoltar: Build G2 Blueridge\n\n15) tesla: Trade Y3 R3 Tales\n\n16) zoltar: Trade G2 R2 Blueridge\n\n17) tesla: Move R3 Tales Blueridge\n\n18) zoltar: Sacrifice Y2 Blueridge\nMove R2 Blueridge Tales\nMove R2 Tales Tesla\n\n19) tesla: Move Y1 Tales Blueridge\n\n20) zoltar: Attack Y1 Tesla\n\n\ttesla: ok, I think we finished the game\n\tzoltar: I sacrificed my Y2, and that sacrifice gives me two yellow powers, or two moves.  If I sacrificed my G3, I could then make three grows at once.  That&#39;s why I was saying that you had to return your 3-sized ship to your homeworld before I build some ships.  Moving your Y3 out was terrible, and every move after that, moving your Y3 (or R3) back would have been the best move.\n\nHomeworlds Online (SDG# 4120)\nStarted: 2006.8.28, Ended: 2006.9.8\nParticipants: antihero (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 G1 B3\n\n2) antihero: Homeworld B3 Y1 G3\n\n3) zoltar: Build B1 Zoltar\n\n4) antihero: Build G1 Antihero\n\n5) zoltar: Trade B1 Y1 Zoltar\n\n6) antihero: Discover G1 Antihero Y2 Huntington\n\n7) zoltar: Build Y1 Zoltar\n\n8) antihero: Build G1 Antihero\n\n9) zoltar: Build Y2 Zoltar\n\n10) antihero: Build G2 Antihero\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) antihero: Trade G2 R2 Antihero\n\n13) zoltar: Move R2 Zoltar Huntington\n\n14) antihero: Build G2 Antihero\n\n15) zoltar: Attack G1 Huntington\n\n16) antihero: Discover G2 Antihero B2 Arlington\n\n17) zoltar: Build Y2 Zoltar\n\n18) antihero: Build G2 Arlington\n\n19) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n20) antihero: Trade G2 Y2 Arlington\n\n21) zoltar: Build Y3 Greenbelt\n\n22) antihero: Build Y3 Arlington\n\n23) zoltar: Build Y3 Greenbelt\n\n24) antihero: Sacrifice Y3 Arlington\nMove Y2 Arlington Zoltar\nMove Y2 Zoltar Greenbelt\nDiscover G1 Antihero B2 Smith\nCatastrophe Greenbelt Yellow\n\n25) zoltar: Build G2 Huntington\n\n26) antihero: Build G2 Smith\n\n27) zoltar: Build G3 Huntington\n\n28) antihero: Build R1 Antihero\n\n29) zoltar: Build R1 Huntington\n\tzoltar: sigh -- I figured you&#39;d go jihadist on me!\n\n30) antihero: Trade R1 Y1 Antihero\n\n31) zoltar: Discover Y1 Zoltar Y2 Melloyellow\n\n32) antihero: Move Y1 Antihero Smith\n\n33) zoltar: Sacrifice G3 Huntington\nBuild G3 Huntington\nBuild Y3 Zoltar\nBuild Y3 Melloyellow\n\n34) antihero: Build Y3 Smith\n\n35) zoltar: Discover Y3 Melloyellow G3 Greenbelt\n\n36) antihero: Discover G2 Smith B1 Blue\n\n37) zoltar: Move G3 Huntington Blue\n\n38) antihero: Sacrifice G2 Blue\nBuild G2 Smith\nBuild R1 Antihero\n\n39) zoltar: Move R2 Huntington Blue\n\n40) antihero: Trade R1 B1 Antihero\n\n41) zoltar: Sacrifice G2 Huntington\nBuild G2 Blue\nBuild B1 Zoltar\n\n42) antihero: Build R1 Antihero\n\n43) zoltar: Move B1 Zoltar Huntington\n\n44) antihero: Sacrifice Y3 Smith\nMove G1 Smith Zoltar\nMove G2 Smith Zoltar\nMove Y1 Smith Zoltar\n\tantihero: sorry about that, was gone for the weekend.\n\n45) zoltar: Attack Y1 Zoltar\n\n46) antihero: Sacrifice R2 Antihero\nAttack Y1 Zoltar\nAttack Y2 Zoltar\n\n47) zoltar: Sacrifice R2 Blue\nAttack Y2 Zoltar\nAttack Y1 Zoltar\n\n48) antihero: Sacrifice G2 Arlington\nBuild G2 Zoltar\nPass\nCatastrophe Zoltar Green\n\n49) zoltar: Build Y3 Greenbelt\n\n50) antihero: Build R1 Antihero\n\n51) zoltar: Sacrifice G3 Blue\nBuild B2 Huntington\nBuild R2 Huntington\nBuild B2 Zoltar\n\tzoltar: nah -- I guess I can&#39;t ignore your annoying jihadists!\n\n52) antihero: Move R1 Antihero Melloyellow\n\n53) zoltar: Sacrifice Y3 Greenbelt\nMove B2 Huntington Antihero\nMove B1 Huntington Antihero\nMove Y1 Melloyellow Antihero\nCatastrophe Antihero B\n\n\tzoltar: Of course I could have stopped to capture the r1 in melloyello for &#39;free&#39; by sacking my r1 in huntington, but no need to waste a move, when checkmate is forced...\n\tzoltar: Thanx for the game, Earthling. Play again?\n\tantihero: I think I need to play some less competitive games and figure things out a bit more before I keep playing you. Good game, though.\n\nHomeworlds Online (SDG# 4125)\nVariants: &quot;Unrated&quot;\nStarted: 2006.8.28, Ended: 2006.10.10\nParticipants: Keith (S), antihero (N)\nWinner: antihero\n\n1) antihero: Homeworld G3 B2 Y3\n\tKeith: Hello again.  I think unrated will work out better.\n\n2) Keith: Homeworld Y1 B2 G3\n\n3) antihero: Build Y1 Antihero\n\tantihero: hehe. I won&#39;t lose so stupidly :)\n\n4) Keith: Build G1 Keith\n\tKeith: Ha! I knew you were going to make that move.  ;-)\n\n5) antihero: Trade Y1 G1 Antihero\n\n6) Keith: Trade G1 Y1 Keith\n\n7) antihero: Build G1 Antihero\n\n8) Keith: Build G1 Keith\n\tantihero: alright, I&#39;m headed to bed now. I&#39;ll see you tomorra&#39;.\n\tKeith: Looking forward to it.\n\n9) antihero: Discover G1 Antihero Y1 Huntington\n\n10) Keith: Discover Y1 Keith G3 Notfar\n\n11) antihero: Build G2 Huntington\n\n12) Keith: Build Y2 Notfar\n\n13) antihero: Build Y2 Antihero\n\n14) Keith: Trade G1 R1 Keith\n\n15) antihero: Trade Y2 R2 Antihero\n\n16) Keith: Build R1 Keith\n\n17) antihero: Build Y2 Antihero\n\n18) Keith: Build G1 Keith\n\n19) antihero: Build G2 Antihero\n\n20) Keith: Trade G1 B1 Keith\n\n21) antihero: Trade G1 B1 Antihero\n\n22) Keith: Move B1 Keith Notfar\n\n23) antihero: Move B1 Antihero Huntington\n\n24) Keith: Trade Y1 G1 Notfar\n\n25) antihero: Discover G1 Huntington Y3 Close\n\n26) Keith: Move R1 Keith Notfar\n\n27) antihero: Move G2 Huntington Notfar\n\n28) Keith: Sacrifice Y2 Notfar\nMove G1 Notfar Huntington\nMove R1 Notfar Huntington\n\n29) antihero: Sacrifice Y2 Antihero\nMove G1 Close Keith\nMove G2 Notfar Keith\n\n30) Keith: Trade G3 R3 Keith\n\n31) antihero: Trade G1 R1 Keith\n\n32) Keith: Attack G2 Keith\n\n33) antihero: Sacrifice G2 Antihero\nBuild R2 Antihero\nBuild R2 Keith\nCatastrophe Keith Red\n\tKeith: Well I am in deep trouble.  If I convert the g2 you sacrifice a green, grow a red and boom.  Game over.  If I convert the r1 you sacrifice your y3, move a red in and boom, game over.  \n\tKeith: No,wait.  Deep trouble yes but I could still have the g2.\n\n34) Keith: Build R1 Huntington\n\n35) antihero: Sacrifice R2 Antihero\nAttack R1 Huntington\nAttack R1 Huntington\n\n36) Keith: Build G1 Keith\n\n37) antihero: Attack G1 Huntington\n\n38) Keith: Trade G1 R1 Keith\n\n39) antihero: Build R2 Antihero\n\n40) Keith: Build R2 Keith\n\n41) antihero: Discover R1 Huntington Y3 Bigstar\n\n42) Keith: Move R2 Keith Bigstar\n\n43) antihero: Build R3 Huntington\n\n44) Keith: Build R3 Keith\n\n45) antihero: Sacrifice Y3 Antihero\nMove R1 Huntington Bigstar\nMove R1 Bigstar Keith\nMove R1 Bigstar Keith\nCatastrophe Keith Red\n\n46) Keith: Build G1 Keith\n\tKeith: Whew...  back in the 3-pointer game, at least for a little bit.\n\n47) antihero: Trade R2 Y2 Antihero\n\tantihero: I don&#39;t know if that was a wise move, but it seems necessary. Whaddya think?\n\tKeith: So much for having a 3-pointer.  That was an expensive move for you but a good move.  You can afford the loss, still have a 3-pointer, and any 2-pointer I have is not threat to your home system. \n\tKeith: It also manipulates the stash to put me very very far away from regaining a 3-pointer.\n\n48) Keith: Sacrifice G2 Keith\nBuild R1 Bigstar\nBuild R1 Bigstar\n\n49) antihero: Build Y1 Antihero\n\n50) Keith: Move R1 Bigstar Keith\n\n51) antihero: Sacrifice Y2 Antihero\nMove R3 Huntington Bigstar\nMove R3 Bigstar Keith\n\tantihero: I may be messing this up, but I think I&#39;m gonna get you here. Please let me know if I do anything exceptionally stupid. Feel free to respond to it anyways, but I&#39;d like to get better here.\n\tKeith: Sacrifice the y2, move the r3 to my homeworld and then it is just a matter of time?  Once a size 2 or 3 ship shows up in my homeworld I am done for.  I think I can slow down your getting such a ship there.\n\tKeith: No I can&#39;t but I want to try this.\n\n52) Keith: Build R1 Keith\n\n53) antihero: Attack G1 Keith\n\n54) Keith: Attack G1 Keith\n\n55) antihero: Sacrifice R2 Antihero\nAttack G1 Keith\nAttack R1 Keith\n\n56) Keith: Sacrifice R2 Bigstar\nAttack G1 Keith\nAttack R1 Keith\n\n57) antihero: Move R3 Keith Notfar\n\n58) Keith: Trade B1 G1 Notfar\n\tantihero: hmmm i&#39;m running out of ideas here\n\tKeith: I think you started your finish me off attack just a little to soon.  You needed another red or green or something.  It has been a good practice game.  I am learning.  Intersting game you have going with Uglyfoot.\n\tKeith: It does not look like we can agree to a draw.\n\tantihero: hmm? It doesn&#39;t?\n\n59) antihero: Attack G1 Notfar\n\tKeith: Cannon has an offer draw button under the movement entry box.  None here.\n\n60) Keith: Move R1 Bigstar Huntington\n\tantihero: oh yeah.\n\n61) antihero: Build Y2 Antihero\n\n62) Keith: Move R1 Huntington Antihero\n\n63) antihero: Trade Y2 R2 Antihero\n\tKeith: I am having trouble deciding whether to move my r1 to your homeworld and try to make things difficult for you or stay in huntington and attack a ship.\n\n64) Keith: Build R2 Antihero\n\n65) antihero: Attack R2 Antihero\n\tantihero: this could go poorly...\n\tKeith: I am trying to force you to give up that very threatening r3.\n\n66) Keith: Build R2 Antihero\nCatastrophe Antihero Red\n\n67) antihero: Build Y2 Antihero\n\tKeith: &#39;&#39;&#39;and it is not going to work.  I should have taken the easy ship grap in huntinton.  Now if I built a red and catstrophe you end up with an y1 at your homeworld jus like before and I have lost an r1.\n\n68) Keith: Build G2 Keith\n\n69) antihero: Build Y2 Antihero\n\n70) Keith: Trade G2 Y2 Keith\n\n71) antihero: Trade Y1 R1 Antihero\n\n72) Keith: Build R2 Keith\n\n73) antihero: Build G2 Huntington\n\n74) Keith: Build G2 Keith\n\n75) antihero: Sacrifice Y2 Antihero\nMove R3 Notfar Huntington\nMove R3 Huntington Antihero\n\n76) Keith: Move R2 Keith Notfar\n\n77) antihero: Sacrifice G1 Notfar\nBuild B1 Huntington\n\tantihero: retreat!\n\n78) Keith: Build R2 Notfar\n\n79) antihero: Trade B1 Y1 Huntington\n\tKeith: hmmm... I do not see what you are up to yet.\n\n80) Keith: Sacrifice Y2 Keith\nMove R2 Notfar Huntington\nMove R2 Notfar Huntington\n\tantihero: that&#39;s because I don&#39;t know what I&#39;m doing :)\n\n81) antihero: Discover G2 Huntington Y3 Sol\n\tKeith: Then I would say that learning more about end games is a good way to boost your overall Homeworlds ability.\n\n82) Keith: Move R2 Huntington Antihero\n\n83) antihero: Sacrifice R1 Antihero\nAttack R2 Antihero\n\n84) Keith: Attack G1 Huntington\n\tantihero: oooooh\n\n85) antihero: Discover Y1 Huntington G3 Archives\n\n86) Keith: Build R1 Huntington\n\tantihero: better, I think.\n\tKeith: That is better.  I thought I was headed for getting rid of your r3.  I simply lost an r2 unit instead.\n\n87) antihero: Discover R2 Antihero G1 Shaw\n\n88) Keith: Discover G1 Keith G3 Midworld\n\n89) antihero: Build Y2 Archives\n\n90) Keith: Build G2 Huntington\n\n91) antihero: Build R2 Shaw\n\n92) Keith: Move G1 Huntington Antihero\n\n93) antihero: Attack G1 Antihero\n\n94) Keith: Move R1 Huntington Antihero\n\n95) antihero: Attack R1 Antihero\n\n96) Keith: Build R3 Huntington\n\n97) antihero: Build R3 Shaw\n\tantihero: hmmm... some master plan I&#39;m not seeing...\n\n98) Keith: Move R2 Huntington Antihero\n\tantihero: wait, I get it, never mind.\n\tKeith: A clumsy master plan at best.  I had intended to sacrifice the green at Midworld releasing the g3 to the bank and building the g3 using the sacrifice.  Except that I put a g1 there instead of the g2 I needed.\n\tKeith: I am just sort of giving you a mild density problem in the antihero system.  I need another green, red, or even a y2 to make real trouble.\n\n99) antihero: Sacrifice R1 Antihero\nAttack R2 Antihero\n\n100) Keith: Attack B1 Huntington\n\n101) antihero: Build Y2 Antihero\n\n102) Keith: Move R3 Huntington Sol\n\n103) antihero: Sacrifice Y2 Antihero\nMove R2 Shaw Midworld\nMove R2 Midworld Keith\n\n104) Keith: Attack R2 Keith\n\n105) antihero: Sacrifice Y2 Antihero\nMove R2 Shaw Midworld\nMove R2 Midworld Keith\nCatastrophe Keith Red\n\n106) Keith: Move R3 Sol Keith\n\n107) antihero: Trade R2 Y2 Antihero\n\n108) Keith: Sacrifice G2 Huntington\nBuild B1 Huntington\nBuild B1 Huntington\n\tKeith: Ouch.\n\n109) antihero: Build Y2 Archives\n\n110) Keith: Move B1 Huntington Antihero\n\n111) antihero: Move Y1 Archives Keith\n\n112) Keith: Attack Y1 Keith\n\n113) antihero: Sacrifice G2 Sol\nBuild Y3 Antihero\nBuild Y3 Antihero\n\n114) Keith: Sacrifice G2 Keith\nBuild B2 Antihero\nBuild B3 Antihero\n\n115) antihero: Sacrifice Y2 Antihero\nMove Y2 Archives Keith\nMove Y2 Archives Keith\nCatastrophe Keith Yellow\nCatastrophe Antihero Blue\n\n116) Keith: Trade B1 R1 Huntington\n\n117) antihero: Sacrifice Y3 Antihero\nMove R3 Antihero Keith\nMove Y3 Antihero Keith\nMove R3 Shaw Antihero\n\n118) Keith: Attack R3 Keith\n\tantihero: wow that was a hell of a turn. Not often do you get to destroy your own homeworld and your opponent&#39;s at the same time!\n\tKeith: That was a quick way to go through, what, 9 ships?  I have enjoyed this game at lot. \n\n119) antihero: Sacrifice R3 Antihero\nAttack R3 Keith\nAttack R3 Keith\nPass\n\n\tantihero: good game! glad you didn&#39;t resign me. :)\n\tKeith: You deserved it.  I did make you earn it, look how many moves are in the game report.\n\nHomeworlds Online (SDG# 4124)\nStarted: 2006.8.30, Ended: 2006.12.4\nParticipants: Tuxhedoh (S), Keith (W), zoltar (N), antihero (E)\nWinner: antihero\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) antihero: Homeworld G3 B1 Y3\n\n3) Tuxhedoh: Homeworld B2 Y3 G3\n\n4) Keith: Homeworld Y3 B2 G3\n\n5) zoltar: Build G1 Zoltar\n\n6) antihero: Build Y1 Antihero\n\n7) Tuxhedoh: Build G1 Tuxhedoh\n\n8) Keith: Build G1 Keith\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) antihero: Build Y1 Antihero\n\n11) Tuxhedoh: Build G1 Tuxhedoh\n\n12) Keith: Trade G1 Y1 Keith\n\n13) zoltar: Build Y2 Zoltar\n\n14) antihero: Discover Y1 Antihero G2 Jungle\n\n15) Tuxhedoh: Trade G1 B1 Tuxhedoh\n\n16) Keith: Build Y2 Keith\n\n17) zoltar: Trade Y1 R1 Zoltar\n\n18) antihero: Build Y1 Jungle\n\n19) Tuxhedoh: Build G1 Tuxhedoh\n\n20) Keith: Build G1 Keith\n\n21) zoltar: Build Y2 Zoltar\n\n22) antihero: Trade Y1 R1 Antihero\n\n23) Tuxhedoh: Trade G1 R1 Tuxhedoh\n\n24) Keith: Trade Y1 R1 Keith\n\tKeith: Well, if everyone else is going to pull a gun I guess I had better too.\n\n25) zoltar: Discover Y2 Zoltar G3 Forest\n\n26) antihero: Build Y1 Antihero\n\n27) Tuxhedoh: Discover B1 Tuxhedoh G1 Tundra\n\n28) Keith: Discover G1 Keith Y1 Mountains\n\n29) zoltar: Build Y2 Zoltar\n\n30) antihero: Discover Y1 Jungle B3 Plains\n\n31) Tuxhedoh: Build B1 Tundra\n\n32) Keith: Build G1 Mountains\n\n33) zoltar: Move Y2 Zoltar Plains\n\n34) antihero: Trade Y1 B1 Antihero\n\n35) Tuxhedoh: Trade B1 Y1 Tundra\n\n36) Keith: Sacrifice Y2 Keith\nMove G1 Mountains Tuxhedoh\nMove G1 Mountains Tuxhedoh\nCatastrophe Tuxhedoh Green\n\tKeith: Forest, jungle, mountains, plains, tundra = Titan/Colossus players in the group?\n\tKeith: There really is no incentive to attack in this Last Man Standing variant like there is in the Sinister variant.  If I lose a ship in the process one opponent I have improved the position of the other two players against the person I attacked and myself.\n\tKeith: That should read &quot;If I lose a ship in the process of attacking one opponent....&quot;\n\tzoltar: Yes, and the Sinister has problems as well. I spoke to the awesome creator of Homeworlds, John Cooper, who said he is still working on an acceptable variation to make the 4 person game work, and that he&#39;s not pleased with any of the current variants.\n\tKeith: Any word on what the problems with Sinister are.  Other than the hazard of finding Zoltar on your left, or worse, your right?\r\n\r\nHere goes an attack then.  Sorry Tuxhedoh.\n\n37) zoltar: Sacrifice Y2 Plains\nMove Y2 Forest Tundra\nMove Y2 Tundra Tuxhedoh\n\n38) antihero: Build Y1 Antihero\n\tzoltar: In Sinister, as soon as one player is weak, the others gang up on the one who can win, and the game can go on endlessly.\n\n39) Tuxhedoh: Build Y2 Tundra\n\n40) Keith: Build G1 Keith\n\tantihero: I&#39;ve played some three, four and five player homeworlds before, and we always had the same problem. Clearly, I&#39;m not especially good at the game, but it usually came down to one person throwing themselves into an attack on someone else and leaving themselves weak. If that _didn&#39;t_ happen, then the remaining players would quickly gang up on the potential winner. It was still fun, though.\n\tTuxhedoh: This is my first 4 player attempt, and I&#39;ve never quite gotten the hang of sacrificing... or moving from deployment/building/discovering to midgame-attacking etc... but I keep plodding away hoping that I&#39;l learn, I really want the replay feature, it&#39;d be especially handy for 4 players. Of course, being the victim of the first attack has severely hampered me.\n\n41) zoltar: Sacrifice R1 Zoltar\nAttack R1S Tuxhedoh\n\tzoltar: I lost my first few games. Then I went into the archive, set up my IceHouse pieces (you can make your own facsimiles if you don&#39;t own a set) and played over every game by the best player (TwoShort). You can&#39;t play over the first few of them because of a flaw which didn&#39;t record what the starting stars in the homeworlds were, but after the point that that was fixed, I went over all of his games, and of the games of the other two good players (AndyLooney and Jesse). After that, I started to win most games against everyone else, but I&#39;ve only gotten lucky against Andy Looney and TwoShort once, and they still beat me almost every single game. But I still win the other 90% of my games. Except today -- where a beginner who is an experienced gamer is kicking my butt in his very first game of Homeworlds!\n\tKeith: Tuxhedoh: I do feel bad about taking advantage of an opening and discouraging you.  I had a Homeworlds game earlier that was so discouraging that I stopped playing Homeworlds for a while.\r\n\r\nIn my case I learned Homeworlds by playing two experienced players, one of them TwoShort, in unrated games where they did not rush to victory over me and made many comments about what they were doing with their moves and why.\n\tKeith: Tuxhedoh:  FWIW After your move Zoltar is in position to eliminate you from the game by sacrificing his r1 and attacking your r1 with his y2 at your homeworld.  The only way for you to survive past this turn is to undo your turn and build a second r1 at your homeworld.\n\tzoltar: But Tuxhedoh has neither green technology in his homeworld nor a green piece to sacrifice.  He can however move a piece back to his homeworld. It doesn&#39;t do as much good as if he could build another red piece though.\n\tKeith: Duh, right, no green.  \n\tTuxhedoh: Thanks for the tips everyone...\r\nI hadn&#39;t thought through other&#39;s turns, but had intended to move my y2 back and trade it for an r2. But that&#39;s at least 2 moves away.  \n\tKeith: That would take too long.  I have not moved so you could undo if you want to.  FWIW I had no plans to finish you off.\n\tzoltar: Unfortunately, Keith&#39;s move made Tuxedo&#39;s position so weak  that I could finish off Tuxedo the next move, so it made the most sense to do so, as the cost is very minimal.\n\tzoltar: The only problem will be that antihero will have a very strong position, and control over most of the yellow industry, as Keith and I both weakened ourselves to take out Tuxhedoh.\n\tKeith: I guess Tuxhedoh is not going to take the undo opportunity.\n\n42) antihero: Build Y2 Jungle\n\n43) Keith: Build R1 Keith\n\n44) zoltar: Discover Y2 Zoltar G3 Forest\n\tKeith: I did not realize that Tuxhedoh&#39;s other ships would stay in the game and not return to the stash.\n\n45) antihero: Trade Y1 G1 Antihero\n\n46) Keith: Move R1 Keith Tundra\n\n47) zoltar: Build G1 Zoltar\n\n48) antihero: Move B1 Antihero Jungle\n\n49) Keith: Attack Y1S Tundra\n\n50) zoltar: Trade Y2 G2 Tuxhedoh\n\n51) antihero: Discover G1 Antihero Y2 Desert\n\n52) Keith: Attack B1S Tundra\n\n53) zoltar: Build R1 Tuxhedoh\n\n54) antihero: Build R2 Antihero\n\n55) Keith: Build R2 Tundra\n\n56) zoltar: Trade R1 Y1 Tuxhedoh\n\n57) antihero: Build B1 Jungle\n\n58) Keith: Move Y1 Tundra Forest\n\n59) zoltar: Trade G1 R1 Zoltar\n\n60) antihero: Discover G1 Desert Y3 Sol\n\n61) Keith: Attack Y2S Tundra\n\n62) zoltar: Build R2 Tuxhedoh\n\n63) antihero: Move R2 Antihero Jungle\n\n64) Keith: Move R1 Tundra Tuxhedoh\n\n65) zoltar: Sacrifice R1 Tuxhedoh\nAttack Y1W Forest\n\n66) antihero: Move Y1 Jungle Forest\n\n67) Keith: Attack Y1N Tuxhedoh\n\n68) zoltar: Discover Y1 Forest G1 Oasis\n\n69) antihero: Build Y2 Forest\n\n70) Keith: Sacrifice Y1 Tuxhedoh\nMove R1 Tuxhedoh Oasis\n\n71) zoltar: Move Y2 Forest Oasis\n\n72) antihero: Move B1 Jungle Sol\n\n73) Keith: Attack Y1N Oasis\n\n74) zoltar: Sacrifice R2 Tuxhedoh\nAttack Y1W Oasis\nAttack R1W Oasis\n\n75) antihero: Move Y1 Forest Oasis\n\n76) Keith: Discover Y2 Tundra G3 Behemoth\n\n77) zoltar: Move Y2 Oasis Plains\n\n78) antihero: Sacrifice R2 Jungle\nAttack Y1N Oasis\nAttack R1N Oasis\n\n79) Keith: Build Y1 Behemoth\n\n80) zoltar: Discover Y2 Plains G1 Hills\n\n81) antihero: Move B1 Jungle Forest\n\n82) Keith: Move Y1 Behemoth Tundra\n\n83) zoltar: Build G2 Zoltar\n\n84) antihero: Move G1 Sol Zoltar\n\tKeith: Let me re-toss out a question here.  Am I in the presence of Titan/Colossus players?\n\n85) Keith: Move Y2 Behemoth Zoltar\n\tantihero: nope, not me. just picking random names :)\n\tzoltar: Me neither. I&#39;ve seen Titan, but never have played.\n\n86) zoltar: Trade G3 R3 Zoltar\n\n87) antihero: Move Y1 Plains Zoltar\n\tKeith: Oh well.  Titan is one of my old favorites.  We just happened to name a lot of the tactical battlemap terrains.\n\tKeith: My avatar in the forums is from Titan.  (A behemoth).\n\n88) Keith: Trade Y2 R2 Zoltar\n\n89) zoltar: Sacrifice R3 Zoltar\nAttack R2W Zoltar\nAttack G1E Zoltar\nAttack Y1E Zoltar\n\tzoltar: looks like I may be toast...\n\n90) antihero: Move Y2 Forest Zoltar\n\tKeith: And you have made us both work hard together to bring you to that point.\n\tKeith: Zoltar, why have you not joined the Homeworlds ladder yet?\n\n91) Keith: Discover Y1 Tundra Y3 Tower\n\n92) antihero: Trade Y2 R2 Zoltar\n\tzoltar: Because I don&#39;t even know what a Homeworlds ladder is. How do I join?\n\tKeith: Top of this page.  Click on ladders.  I recommend checking out the forums link too.\n\tKeith: In retrospect antihero and I would have been much better off if we had both flipped a ship red.\r\n\r\nZoltar, did you find the forum sections about the ladder system?  Do you understand how it works?\n\tzoltar: Actually, your flipping your ship red was your downfall! You had two yellows in the system, so you needed to simply build a yellow and blow up my star.\r\n\r\nAnd yes I found it and signed up -- I&#39;ll figure out how it works as I go, but I&#39;ve got the basics: challenge the highest person you are allowed to, and beat them, and then repeat the process.\n\tKeith: Flipping one red was my downfall.  I meant that antihero and I should have both flipped to red knocking out your r3.  Our first plan was to rush in yellow and catastrophe followed by blue.  We did not consult before the last turn and the plan twisted to attacking ship colors and then we went after different colors.  D&#39;oh!\n\tzoltar: Well you managed to knock out my R3 as I had to sac it to survive. Were there more 3-sized ships flying around the board, that would&#39;ve been enough to kill me.\n\n93) Keith: Build G2 Keith\n\n94) antihero: Build Y2 Jungle\n\n95) Keith: Discover G2 Keith R1 Eye\n\tzoltar: Since I was left crippled, I figured if anyone attacked a ship of mine I&#39;d save you the trouble and resign\n\tKeith: Uhm... okay.  I expected it to take a lot more work and a lot more turns to take you out, and then you might find another mistake (on my part) or opening.\r\n\r\nAs it is antihero has me vastly outnumbered and has the only ship at Zoltar and will easily pick up quite a few more.  Your resignation is a worst case scenerio for me.\n\tzoltar: What? when you move your Y1 from Tower to Zoltar next move, which you were going to do even if I didn&#39;t resign, you will blow up his ship and the yellow star. I was dead in the water. Only if you two, both knowing that, ignored me and went after each other would I have considered staying in the game.\n\tzoltar: In multiple player homeworlds I always resign if two players gang up on me, and try to blow up my stars with the ships of the weaker of the two in them if I can. \n\n96) antihero: Attack G2N Zoltar\n\n97) Keith: Trade R2 Y2 Tundra\n\n98) antihero: Move B1 Sol Oasis\n\n99) Keith: Build G2 Eye\n\n100) antihero: Discover G2 Zoltar Y3 Keep\n\n101) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R2 Keith\nBuild Y2 Tundra\n\n102) antihero: Build G3 Keep\n\n103) Keith: Move R2 Keith Oasis\n\n104) antihero: Attack G1N Zoltar\n\n105) Keith: Attack R1E Oasis\n\n106) antihero: Sacrifice G3 Keep\nBuild G3 Zoltar\nBuild G3 Keep\nBuild R2 Antihero\n\tKeith: So much board space, so many pieces, so many of then yours!\n\n107) Keith: Sacrifice Y2 Tundra\nMove G2 Eye Keep\nMove G2 Eye Keep\nCatastrophe Keep Green\n\n108) antihero: Move Y2 Jungle Hills\n\n109) Keith: Build Y2 Tundra\n\n110) antihero: Build Y3 Antihero\n\n111) Keith: Attack Y1E Oasis\n\n112) antihero: Move G3 Zoltar Tower\n\n113) Keith: Attack Y1E Oasis\n\n114) antihero: Move G3 Tower Oasis\n\n115) Keith: Sacrifice Y2 Tundra\nMove Y1 Oasis Jungle\nMove Y1 Jungle Antihero\n\n116) antihero: Discover Y3 Antihero G2 Another\n\n117) Keith: Build Y2 Antihero\n\tantihero: hey I&#39;m just trying to recover from two days of near-inactivity. You can&#39;t be making moves that bump your game back to the top of my queue when I&#39;m only half done! :)\n\n118) antihero: Trade Y3 B3 Antihero\n\tKeith: Awww thats because you have a social life and I am pathetically sitting around waiting for someone in one of my games to make a move.  ;)\n\n119) Keith: Sacrifice R2 Oasis\nAttack R2E Antihero\nAttack R1E Antihero\n\n120) antihero: Sacrifice R2 Zoltar\nAttack Y2W Antihero\nAttack R2W Antihero\n\n121) Keith: Sacrifice G3 Keith\nBuild Y3 Oasis\nBuild R1 Antihero\nBuild R2 Antihero\nCatastrophe Antihero Red\n\n122) antihero: Trade Y2 R2 Antihero\n\n123) Keith: Move Y3 Oasis Keith\n\tKeith: That should get your attention.\n\n124) antihero: Discover Y3 Another B1 Uhoh\n\tKeith: Well darn.\n\tantihero: oh you still have good moves...\n\n125) Keith: Trade Y3 R3 Keith\n\n126) antihero: Sacrifice Y2 Jungle\nMove G3 Oasis Keith\nMove Y3 Uhoh Keith\n\tKeith: I don&#39;t have time to grab the g3 in Oasis.\n\n127) Keith: Attack G3E Keith\n\n128) antihero: Sacrifice R2 Antihero\nAttack G3W Keith\nAttack R3W Keith\n\n129) Keith: Sacrifice Y2 Tundra\nDiscover B1 Tundra B2 Stopantihero\nMove B1 Stopantihero Antihero\n\n130) antihero: Sacrifice R3 Keith\nAttack G1W Keith\nAttack R1W Keith\nPass\n\tKeith: Where did you learn that trick?\n\tKeith: Hmmm.... I don&#39;t see where you are going with this.  One of us has a hole in their logic.  Hope its you.\n\n\tantihero: yeah it was kind of weird with so many pieces. Not bad, though. I think it really means that once you have an advantage it&#39;s easier to hold it.\n\nHomeworlds Online (SDG# 4113)\nStarted: 2006.8.30, Ended: 2006.9.8\nParticipants: Tuxhedoh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) Tuxhedoh: Homeworld B1 G3 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) Tuxhedoh: Build Y1 Tuxhedoh\n\tzoltar: Greetings from Greenbelt, Milky Way\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tTuxhedoh: And greetings to you.\n\n6) Tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n7) zoltar: Build G1 Zoltar\n\n8) Tuxhedoh: B Y1 Tuxhedoh\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n11) zoltar: Build G1 Zoltar\n\n12) Tuxhedoh: Build Y1 Tuxhedoh\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) Tuxhedoh: Build G1 Tuxhedoh\n\n15) zoltar: Build G1 Zoltar\n\n16) Tuxhedoh: Discover G1 Tuxhedoh R2 Barney\n\n17) zoltar: Discover G1 Zoltar Y1 Yellowstone\n\n18) Tuxhedoh: Build G2 Tuxhedoh\n\n19) zoltar: Build G2 Zoltar\n\n20) Tuxhedoh: Move Y1 Tuxhedoh Barney\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\n\n22) Tuxhedoh: Move G1 Barney Yellowstone\n\n23) zoltar: Sacrifice R1 Zoltar\nAttack G1 Yellowstone\n\tTuxhedoh: doh\n\n24) Tuxhedoh: Build Y2 Tuxhedoh\n\n25) zoltar: Move G3 Yellowstone Barney\n\n26) Tuxhedoh: Move Y1 Barney Yellowstone\n\tzoltar: I forgot I could capture it!\n\tTuxhedoh: i&#39;ve never quite gotten my head around sacrificing.... but you seem to be using it quite effectively\n\tTuxhedoh: and have me locked out of green.\n\n27) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild G2 Barney\n\n28) Tuxhedoh: Build R1 Tuxhedoh\n\n29) zoltar: Trade G2 R2 Zoltar\n\tzoltar: Yes, I&#39;ve built a green &#39;factory&#39;.\n\n30) Tuxhedoh: Build Y2 Tuxhedoh\n\n31) zoltar: Discover Y1 Zoltar B1 Blueridge\n\tTuxhedoh: you got all kinds of tricks... with that sacrifice\n\n32) Tuxhedoh: Trade Y2 B2 Tuxhedoh\n\n33) zoltar: Sacrifice G3 Barney\nBuild Y2 Blueridge\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\tzoltar: That one I call the &quot;teleport&quot;.  You can teleport a g2 to another green base for free when you do a build.\n\tzoltar: The third green trick is called &quot;the investment&quot;, which would be where I&#39;d stick a g1 or g2 on a lone 3-sized star, such as a Y3 or R3, and then when that color is used up, I sac the green ship and build the 3-sized ship in a crucial place (with the g2 sac, you also get to build the g2 back again).\n\tTuxhedoh: and this is where I flake out... I have no idea what to do next.\n\n34) Tuxhedoh: Trade B2 R2 Tuxhedoh\n\n35) zoltar: Sacrifice Y3 Blueridge\nMove R2 Zoltar Blueridge\nMove R2 Blueridge Barney\nMove R2 Barney Tuxhedoh\nCatastrophe Tuxhedoh R\n\n36) Tuxhedoh: Discover G1 Tuxhedoh B2 Leroy\n\n37) zoltar: Discover Y1 Blueridge B2 Bluemountains\n\n38) Tuxhedoh: Move Y2 Tuxhedoh Leroy\n\n39) zoltar: Sacrifice G1 Yellowstone\nBuild Y3 Bluemountains\n\n40) Tuxhedoh: Build G1 Leroy\n\tTuxhedoh: any suggestions for recovery?\n\tzoltar: well, after my sacrifice, I&#39;m ahead some extra pieces, and I&#39;m going to threaten to blow up your green star, so you need to build ships as fast as possible and avoid more catastrophes.\n\tzoltar: moving a green ship out so that you could build more green as well as avoid a green star catastrophe would be a good idea.  And as soon as I get a red ship again, you will need one as well.\n\n41) zoltar: Build B3 Zoltar\n\tTuxhedoh: Sorry for my abscence...\n\n\tTuxhedoh: in order to get any of those blues? I have to trade my y3 in huh?\n\tzoltar: Yep, which probably would be giving me the y3...\n\tTuxhedoh: well fart.  It&#39;s my inclination to give up, mostly cause I dont&#39; know what to do next... I&#39;m willing to hang around if you have any pointers.\n\tzoltar: As someone who myself gets easily discouraged and tends to resign too soon (usually by intentionally blowing up my system to go out with a bang), I would be a hypocrite to tell you to endure more.  If you want to resign and start over, that might be better, unless you want pointers on how to bully someone when you&#39;ve got them totally outnumbered (for example, you get two Y3&#39;s set up so you can sac them on two consecutive turns and invade and take out both stars one after another).  Here, I&#39;m going to move a blue ship out, then sac my g2 and build the other b3&#39;s, then exchange them for r3&#39;s, then build b3&#39;s again, and so forth, and it&#39;s hard for you to stop me.\n\nHomeworlds Online (SDG# 4130)\nStarted: 2006.8.31, Ended: 2006.9.5\nParticipants: tesla (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\ttesla: Hi, I hope playing better than last time. I&#39;ve read the rules again\n\n2) tesla: Homeworld G3 B2 Y3\n\tzoltar: OK -- good luck!\n\n3) zoltar: Build G1 Zoltar\n\n4) tesla: Build Y1 Tesla\n\n5) zoltar: Trade G3 Y3 Zoltar\n\n6) tesla: Trade Y1 G1 Tesla\n\n7) zoltar: Build Y1 Zoltar\n\n8) tesla: Build Y1 Tesla\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) tesla: Discover Y1 Tesla G1 Salte\n\n11) zoltar: Build G2 Zoltar\n\n12) tesla: Build G2 Tesla\n\n13) zoltar: Discover G2 Zoltar Y2 Bananas\n\n14) tesla: Trade G2 B2 Tesla\n\n15) zoltar: Build G2 Bananas\n\n16) tesla: Move B2 Tesla Salte\n\n17) zoltar: Move G2 Bananas Salte\n\n18) tesla: Move G1 Tesla Salte\n\n19) zoltar: Build G2 Salte\nCatastrophe Salte G\n\n20) tesla: Build Y1 Tesla\n\n21) zoltar: Build G1 Bananas\n\n22) tesla: Build Y1 Tesla\n\n23) zoltar: Build Y2 Zoltar\n\n24) tesla: Discover Y1 Tesla G1 Telas\n\n25) zoltar: Discover Y2 Zoltar G2 Limes\n\n26) tesla: Trade Y3 G3 Tesla\n\n27) zoltar: Build G2 Bananas\n\n28) tesla: Build G3 Tesla\n\n29) zoltar: Sacrifice Y2 Limes\nMove G1 Bananas Telas\nMove G1 Telas Tesla\nCatastrophe Tesla G\n\n30) tesla: Build Y2 Telas\n\n31) zoltar: Move G2 Bananas Telas\n\n32) tesla: Move Y2 Telas Tesla\n\n33) zoltar: Move Y3 Zoltar Tesla\n\n34) tesla: Trade Y1 G1 Tesla\n\n35) zoltar: Sacrifice R1 Zoltar\nAttack Y2 Tesla\n\tzoltar: Building that second g3 was a fatal mistake, leaving your homeworld indefensible after the catastrophe.\n\ttesla: ok, it&#39;s true, thanks\n\n36) tesla: Build G2 Tesla\n\ttesla: Homeworld it&#39;s a very interesting game, one day I&#39;ll learn to play it\n\n37) zoltar: Sacrifice Y3 Tesla\nMove G2 Bananas Telas\nMove G2 Telas Tesla\nMove G2 Telas Tesla\nCatastrophe Tesla G\n\n\tzoltar: Wait -- there&#39;s a more elegant ending.  Thanx! Play again?\n\ttesla: congratulations\n\nHomeworlds Online (SDG# 4138)\nStarted: 2006.9.1, Ended: 2006.9.17\nParticipants: antihero (S), Tuxhedoh (N)\nWinner: antihero\n\n1) Tuxhedoh: Homeworld B2 Y1 G3\n\n2) antihero: Homeworld Y3 B1 G3\n\tTuxhedoh: FWIW, I&#39;m out of town from this evening, and travelling home on Tuesday. I&#39;ll probably be able to get some moves in, but just wanted to let you know\n\tantihero: hey no problem. I might be heading to NYC for the weekend, in which case I probably won&#39;t get many moves in.\n\n3) Tuxhedoh: Build G1 Tuxhedoh\n\n4) antihero: Build G1 Antihero\n\n5) Tuxhedoh: Trade G1 R1 Tuxhedoh\n\n6) antihero: Trade G1 R1 Antihero\n\n7) Tuxhedoh: Build G1 Tuxhedoh\n\n8) antihero: Build G1 Antihero\n\n9) Tuxhedoh: Trade G1 B1 Tuxhedoh\n\n10) antihero: Trade G1 Y1 Antihero\n\n11) Tuxhedoh: Build G1 Tuxhedoh\n\n12) antihero: Build G1 Antihero\n\n13) Tuxhedoh: Discover G1 Tuxhedoh B3 Zeke\n\n14) antihero: Discover G1 Antihero Y2 Yolena\n\n15) Tuxhedoh: Build B1 Tuxhedoh\n\n16) antihero: Build Y1 Antihero\n\n17) Tuxhedoh: Move B1 Tuxhedoh Zeke\n\n18) antihero: Discover Y1 Antihero G2 Jacob\n\n19) Tuxhedoh: Build B2 Tuxhedoh\n\n20) antihero: Build Y2 Jacob\n\n21) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n22) antihero: Build Y3 Antihero\n\n23) Tuxhedoh: Build Y3 Tuxhedoh\n\n24) antihero: Sacrifice Y2 Jacob\nDiscover Y1 Jacob G3 Wormhole\nMove Y1 Wormhole Tuxhedoh\nCatastrophe Tuxhedoh Yellow\n\n25) Tuxhedoh: Trade B1 Y1 Zeke\n\tTuxhedoh: DOH\n\n26) antihero: Trade Y1 B1 Antihero\n\n27) Tuxhedoh: Build B2 Tuxhedoh\n\n28) antihero: Move B1 Antihero Tuxhedoh\nCatastrophe Tuxhedoh Blue\n\tantihero: After I stared long enough, I noticed that our homeworlds were directly connected. Good game.\n\n\nHomeworlds Online (SDG# 4136)\nStarted: 2006.9.3, Ended: 2006.9.5\nParticipants: jerzy (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y2 G3\n\n2) jerzy: Homeworld G3 Y2 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) jerzy: Build B1 Jerzy\n\n5) zoltar: Trade G1 R1 Zoltar\n\n6) jerzy: Trade B1 R1 Jerzy\n\n7) zoltar: Build G1 Zoltar\n\n8) jerzy: Build B1 Jerzy\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) jerzy: Trade B1 G1 Jerzy\n\n11) zoltar: Build G1 Zoltar\n\n12) jerzy: Build B1 Jerzy\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) jerzy: Trade B1 Y1 Jerzy\n\n15) zoltar: Build G1 Zoltar\n\n16) jerzy: Build G1 Jerzy\n\n17) zoltar: Discover G1 Zoltar B1 Blueberry\n\n18) jerzy: Move R1 Jerzy Blueberry\n\n19) zoltar: Sacrifice R1 Zoltar\nAttack R1 Blueberry\n\n20) jerzy: Trade G1 R1 Jerzy\n\n21) zoltar: Move Y1 Zoltar Blueberry\n\n22) jerzy: Discover Y1 Jerzy G1 Galathea\n\tzoltar: m y1 zoltar blueberry\n\n23) zoltar: Build G2 Zoltar\n\n24) jerzy: Build G2 Jerzy\n\n25) zoltar: Move G1 Blueberry Jerzy\nCatastrophe Jerzy G\n\n26) jerzy: Build Y1 Galathea\n\n27) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Blueberry\n\n28) jerzy: Discover Y1 Galathea G3 Xugaton\n\n29) zoltar: Move Y3 Blueberry Xugaton\n\n30) jerzy: Build Y3 Galathea\n\n31) zoltar: Sacrifice R1 Blueberry\nAttack Y1 Xugaton\n\n32) jerzy: Move Y3 Galathea Zoltar\n\n33) zoltar: Sacrifice Y3 Xugaton\nMove Y1 Xugaton Jerzy\nMove Y1 Blueberry Jerzy\nMove Y2 Blueberry Jerzy\nCatastrophe Jerzy Y\n\n\tzoltar: Thanks for the game!  Play again?\n\tjerzy: Nice playing with you too. This was my first time at this game. Let&#39;s play again, sure.\n\nHomeworlds Online (SDG# 4147)\nStarted: 2006.9.4, Ended: 2006.10.12\nParticipants: antihero (S), Uglyfoot (N)\nWinner: antihero\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\n2) antihero: Homeworld B2 Y3 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) antihero: Build G1 Antihero\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Trader\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) antihero: Build Y1 Antihero\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) antihero: Build G2 Antihero\n\n11) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Trader\nBuild G2 Trader\nBuild G3 Uglyfoot\n\n12) antihero: Build G3 Antihero\n\n13) Uglyfoot: Trade G2 Y2 Trader\n\tantihero: I&#39;m sorry that took so long.\n\n14) antihero: Discover G3 Antihero B1 Switch\n\n15) Uglyfoot: Discover G1 Trader R1 Battlestar\n\tUglyfoot: Please reconsider your last move (undo).  You traded for your 4th yellow ship in your homeworld which will let me cause a catastrophe there.  Setting you back while I continue my mad scheming.\n\tantihero: oh geez. thanks.\n\tantihero: Why did I want to do that anyways, I wonder?\n\n16) antihero: Build G2 Switch\n\n17) Uglyfoot: Trade G1 R1 Uglyfoot\n\n18) antihero: Trade G2 R2 Antihero\n\n19) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Trader\nBuild G2 Battlestar\nBuild G3 Uglyfoot\n\n20) antihero: Move Y1 Antihero Switch\n\n21) Uglyfoot: Sacrifice Y2 Trader\nMove G1 Trader Switch\nMove G2 Trader Switch\nCatastrophe Switch G\n\n22) antihero: Build Y2 Antihero\n\n23) Uglyfoot: Trade G1 B1 Uglyfoot\n\n24) antihero: Move Y2 Antihero Switch\n\n25) Uglyfoot: Sacrifice B1 Uglyfoot\nTrade G2 Y2 Battlestar\n\n26) antihero: Trade Y1 G1 Switch\n\n27) Uglyfoot: Build G1 Uglyfoot\n\n28) antihero: Build G2 Antihero\n\n29) Uglyfoot: Build G2 Battlestar\n\n30) antihero: Move G2 Antihero Switch\n\n31) Uglyfoot: Discover G1 Uglyfoot Y2 Movin&#39;out\n\n32) antihero: Discover G2 Switch Y3 Chillin&#39;\n\n33) Uglyfoot: Build R1 Uglyfoot\n\n34) antihero: Build R2 Antihero\n\n35) Uglyfoot: Trade R1 B1 Uglyfoot\n\n36) antihero: Move G2 Chillin&#39; Movin&#39;out\n\n37) Uglyfoot: Build G2 Movin&#39;out\n\n38) antihero: Build G3 Switch\n\n39) Uglyfoot: Move G1 Movin&#39;out Switch\n\n40) antihero: Trade G1 B1 Switch\n\n41) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack G2 Movin&#39;out\n\n42) antihero: Sacrifice Y2 Switch\nMove G3 Switch Movin&#39;out\nMove G3 Movin&#39;out Uglyfoot\n\n43) Uglyfoot: Trade G3 R3 Uglyfoot\n\n44) antihero: Sacrifice R2 Antihero\nAttack B1 Uglyfoot\nAttack R3 Uglyfoot\n\n\tantihero: Thanks for the game. It was pretty even up until that move, I thought.\n\nHomeworlds Online (SDG# 4150)\nStarted: 2006.9.5, Ended: 2006.9.6\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld Y3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G3 Y3 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build Y1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n10) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n11) TwoShort: Build G1 Twoshort\n\n12) zoltar: Build G2 Zoltar\n\n13) TwoShort: Build G2 Twoshort\n\n14) zoltar: Discover G2 Zoltar Y2 Yellowstone\n\n15) TwoShort: Build G3 Yoyodyne\n\n16) zoltar: Build G3 Yellowstone\n\n17) TwoShort: Discover G1 Twoshort B3 Volyova\n\n18) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild Y1 Greenhills\nBuild Y2 Zoltar\n\n19) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y2 Twoshort\n\tzoltar: Hello again! I was hoping to play you again soon. As you see, my rating is inflated from beating up on beginners. Though I finally won a game (for the first time ever) with world champion Andy Looney in person last week. Whew who! Though I had the advantage you have in this game: I went first and played &quot;the banker&quot; setup. Which means I&#39;ll have an uphill battle the whole game here.\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) TwoShort: Trade G2 R2 Twoshort\n\n22) zoltar: Move R1 Zoltar Yellowstone\n\tTwoShort: I&#39;ve lost 4 out of 4 against Andy in person, despite beating him 3 out of 3 online.  He&#39;s got the &quot;banker&quot; set up nicely in our current game though.  I&#39;ve started from this homwworld before, but this is my first experiment with the early trade of my capital ship to lock up the y3s.  \n\n23) TwoShort: Build G1 Volyova\n\n24) zoltar: Sacrifice G3 Yellowstone\nBuild G2 Zoltar\nBuild G3 Yellowstone\nBuild R1 Yellowstone\n\n25) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Volyova Yellowstone\nMove G1 Volyova Yellowstone\nCatastrophe Yellowstone Green\n\n26) zoltar: Discover G2 Zoltar Y2 Bananas\n\tzoltar: Yep, I didn&#39;t see how I could avoid that one.\n\tzoltar: As usual with you, I&#39;m pretty much lost after a few moves!\n\n27) TwoShort: Build G1 Yoyodyne\n\n28) zoltar: Move R1 Yellowstone Yoyodyne\n\n29) TwoShort: Move R2 Twoshort Yoyodyne\n\n30) zoltar: Sacrifice G2 Bananas\nBuild R2 Yoyodyne\nBuild R2 Yoyodyne\nCatastrophe Yoyodyne R\n\n31) TwoShort: Build G1 Twoshort\n\n32) zoltar: Build G2 Zoltar\n\n33) TwoShort: Trade G1 R1 Twoshort\n\n34) zoltar: Discover G2 Zoltar Y2 Bananas\n\n35) TwoShort: Discover G1 Yoyodyne B2 Illia\n\n36) zoltar: Build Y1 Zoltar\n\n37) TwoShort: Build G1 Yoyodyne\n\n38) zoltar: Build G2 Zoltar\n\n39) TwoShort: Sacrifice G3 Yoyodyne\nBuild G3 Twoshort\nBuild G3 Illia\nPass\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Yellowstone\nBuild R2 Yellowstone\n\n41) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y3 Twoshort\n\n\tzoltar: Aha -- the factory.  That gives you 4 battlestars to my one.  Well, I think I blew this game.  Glad to be reminded I&#39;m still a beginner!  We should play more, TwoShort.  I&#39;m going to take on Andy again tomorrow night, but I think it will be another dozen games before I beat him again...\n\tzoltar: The &#39;investment&#39; part of the banker setup seems to be a crucial middle game strategy.  My position is already lost.  \n\tTwoShort: And here I was thinking you had more abiltiy to move your shipd around, and were in a better position to get the big reds.  Call them like you see them I guess, but it didn&#39;t feel over to me...\n\nHomeworlds Online (SDG# 4159)\nStarted: 2006.9.5, Ended: 2006.9.11\nParticipants: zoltar (S), jerzy (N)\nWinner: zoltar\n\n1) jerzy: Homeworld Y3 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) jerzy: Build G1 Jerzy\n\n4) zoltar: Build G1 Zoltar\n\n5) jerzy: Trade G1 R1 Jerzy\n\n6) zoltar: Trade G1 R1 Zoltar\n\n7) jerzy: Build R2 Jerzy\n\n8) zoltar: Build R2 Zoltar\n\n9) jerzy: Build R2 Jerzy\n\n10) zoltar: Trade R2 Y2 Zoltar\n\n11) jerzy: Trade R2 G2 Jerzy\n\n12) zoltar: Build R2 Zoltar\n\n13) jerzy: Build R2 Jerzy\n\n14) zoltar: Discover R1 Zoltar Y2 Yellowstone\n\n15) jerzy: Trade R2 Y2 Jerzy\n\tjerzy: Where are you from?\n\n16) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n17) jerzy: Discover G2 Jerzy B1 Tinyspot\n\n18) zoltar: Build R2 Zoltar\n\n19) jerzy: Build R3 Jerzy\n\n20) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Yellowstone Tinyspot\nMove R1 Tinyspot Jerzy\nCatastrophe Jerzy R\n\n21) jerzy: Build G1 Jerzy\n\n22) zoltar: Trade R2 Y2 Zoltar\n\n23) jerzy: Trade G1 R1 Jerzy\n\n24) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n25) jerzy: Move R1 Jerzy Tinyspot\n\n26) zoltar: Build G1 Zoltar\n\n27) jerzy: Build G1 Tinyspot\n\n28) zoltar: Discover G1 Zoltar Y2 Yellowsprings\n\n29) jerzy: Trade G1 Y1 Tinyspot\n\n30) zoltar: Build G1 Zoltar\n\n31) jerzy: Trade Y2 R2 Jerzy\n\n32) zoltar: Build Y1 Zoltar\n\n33) jerzy: Build G1 Jerzy\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowsprings\n\n35) jerzy: Trade R2 Y2 Jerzy\n\n36) zoltar: Discover G2 Zoltar B2 Blueridge\n\n37) jerzy: Trade G1 R1 Jerzy\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueridge\nBuild G3 Zoltar\nBuild R2 Greenbelt\n\n39) jerzy: Build R2 Tinyspot\n\n40) zoltar: Sacrifice Y2 Zoltar\nMove G3 Yellowsprings Tinyspot\nDiscover R2 Greenbelt B1 Blueberry\n\n41) jerzy: Build R3 Jerzy\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Greenbelt\nBuild R3 Blueberry\n\n43) jerzy: Move R2 Tinyspot Blueridge\n\n44) zoltar: Sacrifice R3 Greenbelt\nAttack R2 Blueridge\nAttack R1 Tinyspot\nAttack Y1 Tinyspot\n\n45) jerzy: Discover R3 Jerzy Y1 Goldie\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Tinyspot\nBuild R3 Blueridge\n\n47) jerzy: Move R3 Goldie Yellowsprings\n\n48) zoltar: Discover G1 Yellowsprings Y1 Goldie\n\n49) jerzy: Sacrifice Y2 Jerzy\nMove R3 Yellowsprings Goldie\nMove R3 Goldie Greenbelt\n\n50) zoltar: Attack G2 Tinyspot\n\tjerzy: Let&#39;s play it out anyway.\n\n51) jerzy: Attack R2 Greenbelt\n\tzoltar: It&#39;s tough when you&#39;re up against the green &#39;factory&#39;.\n\n52) zoltar: Sacrifice Y2 Tinyspot\nMove R2 Blueberry Greenbelt\nMove R1 Tinyspot Greenbelt\nCatastrophe Greenbelt R\n\n53) jerzy: Build G2 Jerzy\n\n54) zoltar: Sacrifice G3 Tinyspot\nBuild G3 Goldie\nBuild Y2 Tinyspot\nBuild Y2 Zoltar\n\tzoltar: Yikes! Big red mean alien machine spotted off zee port bow -- evasive action -- run for your lives!\n\n55) jerzy: Build R1 Jerzy\n\tjerzy: Just learning how to sacrifice -- that&#39;s something I haven&#39;t got the knack of just yet.\n\n56) zoltar: Sacrifice Y2 Zoltar\nMove G3 Goldie Jerzy\nMove G2 Tinyspot Jerzy\nCatastrophe Jerzy G\n\tzoltar: There are lots of tricks that deal with sacrifices -- they are the hardest moves to find and to anticipate, I think.\n\n57) jerzy: Move R1 Jerzy Goldie\n\n58) zoltar: Sacrifice Y1 Tinyspot\nMove R3 Blueberry Jerzy\n\n59) jerzy: Pass\n\n60) zoltar: Sacrifice R2 Blueridge\nAttack R1 Goldie\nAttack R1 Jerzy\n\n\tjerzy: yes, let&#39;s..\n\nHomeworlds Online (SDG# 4135)\nStarted: 2006.9.6, Ended: 2006.10.13\nParticipants: Aaron (S), zoltar (W), tesla (N), jerzy (E)\nWinner: zoltar\n\n1) tesla: Homeworld B1 Y2 G3\n\n2) jerzy: Homeworld B3 Y2 G3\n\n3) Aaron: Homeworld B2 Y1 G3\n\n4) zoltar: Homeworld R3 B1 G3\n\tAaron: sorry...hit the wrong button\n\n5) tesla: Build G1 Tesla\n\n6) jerzy: Build G1 Jerzy\n\n7) Aaron: Build G1 Aaron\n\n8) zoltar: Build G1 Zoltar\n\n9) tesla: Trade G1 Y1 Tesla\n\n10) jerzy: Trade G1 Y1 Jerzy\n\n11) Aaron: Trade G1 Y1 Aaron\n\n12) zoltar: Trade G3 Y3 Zoltar\n\n13) tesla: Build G1 Tesla\n\n14) jerzy: Build G1 Jerzy\n\tzoltar: I like to break traditions...\n\n15) Aaron: Build G1 Aaron\n\n16) zoltar: Build Y1 Zoltar\n\tjerzy: Just to make things clear: this multiplayer implementation is Sinister HW, right?\n\tjerzy: ops, it&#39;s not. So, does one actually have to eliminate all oponents?\n\tAaron: Nay, Sinister is a variant.  The default implementation is &quot;Last Man Standing.&quot;  If that&#39;s a problem for everyone, I can go ahead and change it.\n\tjerzy: Ok, get it. Not a problem for me.\n\n17) tesla: Build Y2 Tesla\n\n18) jerzy: Build Y2 Jerzy\n\n19) Aaron: Discover G1 Aaron Y3 Bananas\n\n20) zoltar: Discover Y1 Zoltar Y2 Lemons\n\n21) tesla: Trade Y2 R2 Tesla\n\n22) jerzy: Trade G1 R1 Jerzy\n\n23) Aaron: Build G1 Aaron\n\n24) zoltar: Build Y2 Zoltar\n\n25) tesla: Build Y3 Tesla\n\n26) jerzy: Discover Y1 Jerzy G1 Lime\n\n27) Aaron: Trade G1 R1 Aaron\n\n28) zoltar: Trade Y2 R2 Zoltar\n\tjerzy: Anyone fancy a POVRay Homeworlds game via e-mail?\n\n29) tesla: Discover Y1 Tesla G3 Apple\n\n30) jerzy: Build Y2 Lime\n\n31) Aaron: Build Y3 Aaron\n\n32) zoltar: Build Y3 Zoltar\n\n33) tesla: Trade G1 B1 Tesla\n\n34) jerzy: Build G1 Jerzy\n\n35) Aaron: Discover Y3 Aaron G3 Avocado\n\n36) zoltar: Discover Y3 Zoltar B2 Grapes\n\n37) tesla: Move B1 Tesla Apple\n\n38) jerzy: Trade G1 B1 Jerzy\n\tjerzy: Hey folks, \r\nI&#39;ll be away for the weekend, so please be patient: I may take a while to make my move, ok?\n\tAaron: No worries here =)\n\n39) Aaron: Build R1 Aaron\n\n40) zoltar: Move R2 Zoltar Lemons\n\n41) tesla: Build R1 Tesla\n\n42) jerzy: Move B1 Jerzy Lime\n\n43) Aaron: Move R1 Aaron Avocado\n\n44) zoltar: Build G1 Zoltar\n\n45) tesla: Move G3 Tesla Apple\n\n46) jerzy: Trade Y1 G1 Lime\n\n47) Aaron: Build G2 Bananas\n\n48) zoltar: Move G1 Zoltar Lemons\n\n49) tesla: Discover G3 Apple Y1 Peach\n\n50) jerzy: Trade Y2 R2 Lime\n\n51) Aaron: Build Y2 Avocado\n\n52) zoltar: Build G2 Zoltar\n\n53) tesla: Build G2 Peach\n\n54) jerzy: Build G2 Jerzy\n\n55) Aaron: Build G2 Aaron\n\n56) zoltar: Move Y3 Grapes Lime\n\n57) tesla: Move G3 Peach Apple\n\n58) jerzy: Build R1 Lime\n\n59) Aaron: Build R2 Avocado\n\n60) zoltar: Sacrifice R2 Lemons\nAttack R2E Lime\nAttack R1E Lime\n\n61) tesla: Move R1 Tesla Apple\n\n62) Aaron: Build R2 Aaron\n\n63) zoltar: Move Y3 Lime Jerzy\n\n64) tesla: Build R2 Apple\n\n65) Aaron: Move R1 Aaron Bananas\n\n66) zoltar: Sacrifice R2 Lime\nAttack G3E Jerzy\nAttack R1E Jerzy\n\n67) tesla: Move R1 Apple Peach\n\n68) Aaron: Build R2 Bananas\n\n69) zoltar: Sacrifice G2 Zoltar\nBuild R3 Lime\nBuild R3 Jerzy\n\n70) tesla: Sacrifice G2 Peach\nBuild R3 Peach\nBuild R3 Apple\n\n71) Aaron: Move Y1 Aaron Bananas\n\n72) zoltar: Attack Y2E Jerzy\n\n73) tesla: Move R3 Apple Lemons\n\n74) Aaron: Sacrifice Y2 Avocado\nMove Y1 Bananas Peach\nMove Y1 Peach Jerzy\nCatastrophe Jerzy Y\n\n75) zoltar: Attack G2E Jerzy\n\n76) tesla: Attack G1W Lemons\n\n77) Aaron: Trade G2 Y2 Aaron\n\n78) zoltar: Trade R1 Y1 Jerzy\n\n79) tesla: Move R3 Lemons Zoltar\n\n80) Aaron: Trade Y2 B2 Aaron\n\n81) zoltar: Attack R3N Zoltar\n\n82) tesla: Move G1 Lemons Peach\n\n83) Aaron: Build Y2 Avocado\n\n84) zoltar: Sacrifice G3 Jerzy\nBuild Y2 Lemons\nBuild Y2 Jerzy\nBuild Y3 Zoltar\n\n85) tesla: B G2 Peach\n\n86) Aaron: Move B2 Aaron Avocado\n\n87) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Jerzy Tesla\nMove Y2 Jerzy Tesla\nMove R3 Jerzy Tesla\nCatastrophe Tesla Y\n\n88) tesla: Move R3 Peach Lemons\n\n89) Aaron: Move Y2 Avocado Lemons\nCatastrophe Lemons Y\n\n90) zoltar: Attack R2N Tesla\n\n91) Aaron: Discover R2 Avocado Y2 Lemons\n\n92) zoltar: Build G2 Jerzy\n\n93) Aaron: Move R1 Bananas Lemons\n\n94) zoltar: Discover R3 Zoltar Y2 Pineapples\n\n95) Aaron: Move R2 Lemons Peach\n\n96) zoltar: Move R3 Pineapples Apple\n\n97) Aaron: Attack R1N Peach\n\n98) zoltar: Attack G3N Apple\n\n99) Aaron: Attack G2N Peach\n\n100) zoltar: Attack Y1N Apple\n\n101) Aaron: Attack G1N Peach\n\n102) zoltar: Sacrifice Y1 Apple\nMove G2 Jerzy Lemons\n\n103) Aaron: Sacrifice Y3 Avocado\nMove G2 Peach Apple\nMove G1 Peach Apple\nMove R1 Lemons Tesla\nCatastrophe Apple Green\n\n104) zoltar: Trade R2 Y2 Tesla\n\n105) Aaron: Build B1 Avocado\n\n106) zoltar: Attack R1S Tesla\n\n107) Aaron: Trade B1 Y1 Avocado\n\n108) zoltar: Attack B1E Lime\n\n109) Aaron: Move R1 Avocado Lime\n\n110) zoltar: Trade R3 Y3 Lime\n\n111) Aaron: Build R1 Lime\n\n112) zoltar: Move R3 Tesla Avocado\n\n113) Aaron: Sacrifice B2 Avocado\nTrade R1 G1 Lime\nTrade G1 B1 Bananas\n\n114) zoltar: Move Y3 Lime Bananas\n\n115) Aaron: Build G1 Lime\nCatastrophe Lime Green\n\n116) zoltar: Sacrifice R1 Tesla\nAttack R2S Bananas\n\n117) Aaron: Sacrifice R1 Peach\nAttack R2W Bananas\n\n118) zoltar: Attack Y1S Avocado\n\n119) Aaron: Move R2 Bananas Lemons\n\n120) zoltar: Sacrifice R3 Avocado\nAttack R2S Lemons\nAttack G2S Bananas\nAttack B1S Bananas\n\n121) Aaron: Build R1 Aaron\n\n122) zoltar: Sacrifice G2 Jerzy\nBuild Y1 Avocado\nBuild Y1 Avocado\n\n123) Aaron: Discover R2 Peach Y2 Tulips\n\n124) zoltar: Sacrifice G2 Lemons\nBuild B1 Bananas\nBuild B1 Bananas\n\tAaron: This is the other problem with &quot;Last man standing&quot; games...the economy gets way off-balance in the endgame.\n\n\tzoltar: Zee Death Star ease now fooly funkshunall...\n\tAaron: Thanks for the game!\n\nHomeworlds Online (SDG# 4166)\nStarted: 2006.9.6, Ended: 2006.9.8\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B3 Y3 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\tzoltar: I suppose this might be the only defence against the banker...\n\tTwoShort: Gack! The micro-verse! Well, I&#39;ve contemplated trying it in the past, but couldn&#39;t really figure out how it would go.  I guess we&#39;ll see...\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tzoltar: what else could I do?\n\n6) zoltar: Trade G1 Y1 Zoltar\n\tTwoShort: Well, I don&#39;t really consider the banker as overwhelming as you do. Even a merely small universe would let you move right to the 3 points to attack my investments or make your own.  In any case, I&#39;ve never played with adjacent homeworlds, so I&#39;m eager to see how it goes.\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Move G1 Twoshort Zoltar\n\n10) zoltar: Trade G3 R3 Zoltar\n\n11) TwoShort: Build G1 Zoltar\n\tzoltar: Am I dead already on the third move? Geesh!\n\n12) zoltar: Attack G1 Zoltar\n\tzoltar: Better to have a big one, I guess,,,\n\n13) TwoShort: Trade G1 Y1 Zoltar\n\n14) zoltar: Sacrifice Y1 Zoltar\nDiscover G1 Zoltar Y2 Yuck\n\n15) TwoShort: Build Y1 Twoshort\n\n16) zoltar: Attack Y1 Zoltar\n\tTwoShort: Hey, I thought if I submitted a move not having seen your undo, my move shouldn&#39;t go through?\n\tTwoShort: Guess I want to do that anyway...\r\n\n\n17) TwoShort: Move Y1 Twoshort Zoltar\n\n18) zoltar: Discover Y1 Zoltar G2 Grok\n\tzoltar: One would think that there would be a safeguard so that your move would be rejected if it was in response to a move which had been changed. Is there such a safeguard on this site? I&#39;ve never been in the situation.\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Twoshort\nCatastrophe Zoltar Yellow\n\n20) zoltar: Build Y1 Grok\n\n21) TwoShort: Trade Y1 G1 Twoshort\n\n22) zoltar: Build G2 Yuck\n\n23) TwoShort: Build G2 Twoshort\n\n24) zoltar: Build G3 Zoltar\n\tzoltar: very sneaky\n\n25) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: Not sure if I can finish you off though; I think those seperate outposts will give you flexibility\n\n26) zoltar: Discover Y1 Grok B3 Blah\n\n27) TwoShort: Build B1 Twoshort\n\tzoltar: I hope so. Though in retrospect a double-middle-star system may have been interesting, as I could both contest the big stars for the &#39;investment&#39;, as well as take key small stars to control the change of size at crucial times.\n\n28) zoltar: Sacrifice G2 Yuck\nBuild Y1 Blah\nBuild Y2 Grok\n\n29) TwoShort: Discover B1 Twoshort Y3 Stash\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blah\nBuild Y3 Grok\nBuild G1 Zoltar\n\n31) TwoShort: Build B2 Twoshort\n\n32) zoltar: Trade Y2 B2 Blah\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove B1 Twoshort Zoltar\nMove B2 Twoshort Zoltar\nDiscover B1 Stash Y2 Checkmate\n\tzoltar: It&#39;s over -- can&#39;t stop you from trashing my blue star\n\n34) zoltar: Trade R3 B3 Zoltar\nCatastrophe Zoltar B\n\tTwoShort: Looks that way...\n\n\tTwoShort: As for abandoning one&#39;s homeworld, I had a conversation with John Cooper a while ago to the effect that that rule should really be eliminated.  You&#39;d still lose if you do it, but you might be able to wrest a draw out of an otherwise losing position by simutaneously destroying your opponent.  Since all the rule really does is eliminate what is otherwise an interesting emergent posibility, perhaps it should be done away with...\n\tzoltar: Hmm. I can&#39;t even sac my r3 to capture these, can I?\r\nOh well. I&#39;m now convinced that the banker is a forced win. \n\tTwoShort: Well, I&#39;m not.  When you traded your yellow to blue, you could have instead sac&#39;d your y3 to move in 3 ys from blah, causing a catastrophe and leaving me with no 3 pointer, while you&#39;d still have had the R3...  I was already planning to get a red so I could destroy half my homeworld in a desperate defense...\n\tzoltar: Hmm. I never saw any of that.\n\nHomeworlds Online (SDG# 4192)\nVariants: &quot;Unrated&quot;\nStarted: 2006.9.7, Ended: 2006.9.11\nParticipants: Fabi (S), jerzy (N)\nWinner: jerzy\n\n1) jerzy: Homeworld B2 R1 G3\n\n2) Fabi: Homeworld B3 Y1 G3\n\n3) jerzy: Build G1 Jerzy\n\n4) Fabi: Build G1 Fabi\n\tjerzy: Se voc&ecirc; tiver alguma d&uacute;vida, s&oacute; escrever nesse espa&ccedil;o que diz &quot;Send&quot;, t&aacute;?\n\n5) jerzy: Trade G1 Y1 Jerzy\n\n6) Fabi: Trade G1 R1 Fabi\n\n7) jerzy: Build G1 Jerzy\n\n8) Fabi: Build G1 Fabi\n\n9) jerzy: Trade G1 Y1 Jerzy\n\tFabi: Nossa, que jogo hein? hehhe\n\n10) Fabi: Trade G1 R1 Fabi\n\n11) jerzy: Build Y2 Jerzy\n\n12) Fabi: Build R2 Fabi\n\tjerzy: Tudo bem com voc&ecirc;?\n\n13) jerzy: Discover Y1 Jerzy G3 Darwin\n\n14) Fabi: Trade R2 Y2 Fabi\n\n15) jerzy: Build Y2 Darwin\n\n16) Fabi: Discover Y2 Fabi G2 Lamarck\n\tjerzy: Pode construir um y3 no teu sistema sem medo! Eu n&atilde;o consigo chegar at&eacute; ele no meu turno seguinte!\n\n\tjerzy: ?????????\n\nHomeworlds Online (SDG# 4160)\nStarted: 2006.9.8, Ended: 2006.9.9\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y2 B1 G3\n\tTwoShort: Let&#39;s see if I can convince you the Banker is defeatable...\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) zoltar: Build G1 Zoltar\n\tzoltar: Ok, though your skill probably more than makes up for the difference here, as I&#39;m the worst at openings anyway, but I think it&#39;s a huge advantage, worth a few tempi I suppose.\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Build G1 Twoshort\n\n7) zoltar: Build Y1 Zoltar\n\n8) TwoShort: Trade G1 B1 Twoshort\n\n9) zoltar: Build G1 Zoltar\n\n10) TwoShort: Build B2 Twoshort\n\n11) zoltar: Trade Y1 R1 Zoltar\n\tzoltar: Well, you&#39;ve already got an advantage.  Given any opening, you&#39;re always going to have a couple extra 2-sized ships than I, as I can&#39;t grasp the openings yet and trade correctly, it seems.\n\n12) TwoShort: Trade B2 Y2 Twoshort\n\tzoltar: ugh, that&#39;s no good at all.\n\tzoltar: I&#39;ll have to think some more about this.\n\n13) zoltar: Trade G3 B3 Zoltar\n\n14) TwoShort: Discover B1 Twoshort G2 Grogar\n\n15) zoltar: Build B2 Zoltar\n\n16) TwoShort: Sacrifice Y2 Twoshort\nDiscover B1 Grogar G3 Boom\nMove B1 Boom Zoltar\nCatastrophe Zoltar Blue\n\n\tzoltar: Oops. Yep, I definitely need to work on openings -- this is like the fool&#39;s mate in chess!\n\nHomeworlds Online (SDG# 4211)\nStarted: 2006.9.11, Ended: 2006.9.14\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld B3 R1 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Trade G1 Y1 Personman\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build G1 Zoltar\n\n9) Personman: Discover G1 Personman Y2 Particle\n\n10) zoltar: Discover G1 Zoltar B1 Blueberry\n\n11) Personman: Trade Y1 B1 Personman\n\n12) zoltar: Build G1 Zoltar\n\n13) Personman: Build B1 Personman\n\n14) zoltar: Build G2 Blueberry\n\n15) Personman: Move G1 Particle Blueberry\n\n16) zoltar: Trade G2 R2 Blueberry\n\n17) Personman: Build G2 Personman\n\n18) zoltar: Attack G1 Blueberry\n\n19) Personman: Build G2 Personman\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n21) Personman: Trade G2 Y2 Personman\n\n22) zoltar: Trade G1 Y1 Blueberry\n\n23) Personman: Discover G2 Personman Y2 Letterbox\n\n24) zoltar: Trade G1 R1 Zoltar\n\n25) Personman: Trade B1 R1 Personman\n\tzoltar: Zoltar haz 2 g3s and Personman only haz one! Whew Who!\n\n26) zoltar: Build R2 Blueberry\n\n27) Personman: Build B1 Personman\n\n28) zoltar: Discover R2 Blueberry Y2 Lemon\n\n29) Personman: Move B1 Personman Letterbox\n\n30) zoltar: Build R2 Blueberry\n\n31) Personman: Build B2 Letterbox\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild R3 Zoltar\nBuild R3 Zoltar\nBuild R3 Lemon\n\n33) Personman: Sacrifice G2 Letterbox\nBuild B2 Personman\nBuild B3 Letterbox\n\tzoltar: Red Alert! Red Alert! Red fleet, commence pre-emptive strike on personman fleet! Yippee!\n\n34) zoltar: Trade R3 B3 Zoltar\n\n35) Personman: Discover B2 Letterbox G1 Start\n\n36) zoltar: Build R3 Zoltar\n\n37) Personman: Trade B3 G3 Letterbox\n\n38) zoltar: Move B3 Zoltar Start\n\n39) Personman: Build B3 Letterbox\n\n40) zoltar: Sacrifice R1 Zoltar\nAttack B2 Start\n\n41) Personman: Move B1 Letterbox Start\n\n42) zoltar: Sacrifice B2 Start\nTrade R3 Y3 Lemon\nTrade R3 Y3 Zoltar\n\tzoltar: You are putting up a good fight, Personman. Zoltar will have to find something clever and tricky. \n\tPersonman: Why thank you!\n\n43) Personman: Trade B2 G2 Personman\n\tzoltar: Zoltar to minions: Abandon blue fleet; Abandon red fleet; Yellow fleet rulez! \n\n44) zoltar: Sacrifice G3 Zoltar\nBuild R1 Lemon\nBuild R3 Zoltar\nBuild R3 Zoltar\n\n45) Personman: Build Y1 Personman\n\tzoltar: Knew ore deers: Abandon green fleet; Red fleet rulz!\n\n46) zoltar: Sacrifice Y1 Zoltar\nMove B3 Start Lemon\n\n47) Personman: Move B3 Letterbox Blueberry\n\tzoltar: Nope -- better keep 4 big sheeps in homeworld to be extra safe.\n\n48) zoltar: Sacrifice Y3 Lemon\nMove B3 Lemon Personman\nMove R2 Lemon Personman\nMove R1 Lemon Personman\nCatastrophe Personman R\n\tzoltar: My double-sack has given zee Zoltarian fleet zee advantage once again! With 4 Battleships protecting zee homeworld, nothing can stop Zoltar from galactic dominion!\n\n49) Personman: Sacrifice G2 Personman\nBuild B2 Blueberry\nBuild B2 Blueberry\nCatastrophe Blueberry B\n\tzoltar: Yikes! Blueberry is under attack! The only defense is a good offense! Awl sheeps storm zee Personman homeworld and blow up awl gunz! Attack!\n\n50) zoltar: Sacrifice R3 Zoltar\nAttack G3 Personman\nAttack Y2 Personman\nAttack B1 Personman\n\n51) Personman: Sacrifice G3 Letterbox\nBuild Y1 Personman\nBuild Y1 Personman\nBuild Y2 Personman\n\n52) zoltar: Sacrifice G3 Personman\nBuild Y2 Personman\nBuild Y3 Personman\nBuild B1 Personman\n\n53) Personman: Sacrifice Y1 Personman\nMove B1 Start Personman\nCatastrophe Personman Y\nCatastrophe Personman B\n\tPersonman: At least this way I get to see five ships of the same color in one system... Good game!\n\n\tzoltar: Make that 7! Those two sacks of mine not only got me out of trouble but gave me an unstoppable lead, with command of most of the red and yellow. I only saw them one move at a time, and didn&#39;t realize how powerful my position was until after I&#39;m made them. Good game.\n\tPersonman: Whee!\n\nHomeworlds Online (SDG# 4213)\nVariants: &quot;No undo&quot;\nStarted: 2006.9.11, Ended: 2006.9.14\nParticipants: zoltar (S), unic (N)\nWinner: zoltar\n\n1) unic: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld B3 Y2 G3\n\tunic: Hello - my first game here :)  Bear with me if I make bad moves - I just learned this game yesterday.\n\n3) unic: Build Y1 Unic\n\tzoltar: Sure -- I learned in June, lost my first dozen games or so, then got better, and now am near the top, though the top three players can still beat me most of the time.  It&#39;s really fun, but the sacrifices are the hardest moves to find as well as anticipate, especially yellow sacrifices allowing someone to move more than once and cause a catastrophe with 4 of the same color.  I love this game -- it&#39;s simple and has chess-like tactics and really makes you think, though it takes a while to get used to it and learn all the basic tactics. Good luck.\n\n4) zoltar: Build G1 Zoltar\n\n5) unic: Discover Y1 Unic G3 Stella\n\n6) zoltar: Build G1 Zoltar\n\n7) unic: Build Y1 Unic\n\n8) zoltar: Discover G1 Zoltar B1 Harcourt\n\n9) unic: Build Y1 Stella\n\n10) zoltar: Build G2 Harcourt\n\n11) unic: Trade Y3 G3 Unic\n\n12) zoltar: Sacrifice G3 Zoltar\nBuild G2 Harcourt\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n13) unic: Build Y2 Unic\n\tunic: Nice maneuver!  I shall bear that one in mind :)\n\n14) zoltar: Trade G2 Y2 Harcourt\n\tzoltar: I think you had more of an advantage if you continued to build yellow, as movement is crucial.  I have now achieved &#39;the factory&#39; where I can sacrifice my g3 and then grow it right back with two extra grows, which is a powerful tactical tool. I still need to get into the yellow industry , but now I will have some tricks, because with both your g3 and a green star, if you grow another green (after I trade one of mine for a yellow), I would be able to blow up your greens if I sacrifice my yellow to move a fourth green into your homeworld, so you&#39;ll have to look out for that.\n\n15) unic: Build Y3 Unic\n\tzoltar: I think you have the advantage, though, because of your lead in yellow (I&#39;m terrible at openings, even with beginners).\n\n16) zoltar: Trade G3 Y3 Zoltar\n\n17) unic: Sacrifice Y2 Unic\nMove Y1 Unic Stella\nMove Y1 Stella Harcourt\n\tzoltar: You&#39;re playing very well.  That last move threatened checkmate (if I ignored the threat, you sac your Y3 and move your G3 all the way from your homeworld to mine, creating a catastrophe that wipes out all my green pieces and wins the game.)\n\n18) zoltar: Trade Y3 R3 Zoltar\n\n19) unic: Build Y2 Unic\n\tzoltar: Excellent move, showing me that my last move was wasted, giving you yet another free move. But I&#39;m not ready to resign yet.\n\n20) zoltar: Trade G2 R2 Harcourt\n\n21) unic: Build Y3 Unic\n\tzoltar: You must be a chess player, as you play much better than I at this game!\n\n22) zoltar: Attack Y1 Harcourt\n\tunic: No, not a chess player.  I used to play Othello competitively a few years back though... and play all sorts of abstract games just for fun.  Traditional western chess has never caught my fancy however.\n\n23) unic: Sacrifice Y2 Unic\nMove Y1 Stella Harcourt\nMove Y1 Stella Harcourt\nCatastrophe Harcourt Y\n\n24) zoltar: Build G2 Harcourt\n\n25) unic: Trade Y3 G3 Unic\n\tzoltar: I played chess first, then switched to the Japanese varient Shogi, which I liked even better; then when planning on teaching chess to my cousins (age ranging 4-12), I looked for simpler abstract games to start them with, and discovered a world of wonderful games I never knew existed. Then, to my even greater suprise, the author of several of the games I subsequently purchased lived in my neighborhood! I met Andy Looney (creator of the IceHouse pieces) and the gaming author of homeworlds, John Cooper, who both live a mile from me in either direction! John Cooper gave me some games, such as &quot;Lost Cities&quot;, one of his favorites -- he likes the author Reiner Knizia, and at his house I&#39;ve played other great Knizia games, such as Ra, John&#39;s favorite. John told me next time I visit, he is going to teach me another of his favorites: Lord of the Rings - The Confrontation. I love having a rocket scientist and game author neighbor who has such fun games that I&#39;ve never heard of.\r\n\r\nSince then, I&#39;ve gotten a couple dozen games, (I buy them used on eBay, then resell ones neither I nor my cousins find really fun).  Our favorites: Flux and SET card games (set is amazing for young kids, as a sharp 6 year old cousin can beat me, and that wouldn&#39;t happen with, say, chess); Blokus (a rare 4-player game without randomizers or hidden information that actually works and is pretty), Cathedral (beautiful wooden pieces), Quarto and then the even better Quoridor from Gigamic (I bought a bunch of games from that company, Gigamic); Gobblet (another tic-tac-toe improvement like Quarto, but you can make your own set with IceHouse pieces); Ticket to Ride (a fun game that is a favorite with the 6 and 10 year old cousins, but for adults the similar but more complicated Thurn and Taxis is nicer); 10 Days in the USA/Africa/Europe -- all three are the same except for the names of pieces (states or countries), but thanks to this game, which has nice strategy as well, my 6-year-old cousin knows every state in the USA and where every country is in Europe of Africa!\r\n\r\nAndy Looney directed me to this site in June, when I learned John Cooper&#39;s game Homeworlds that we are playing. I just last week learned another IceHouse game, Pikemen, which is authored by another game author (a Bridge Master turned game author) that I know and play games with on Thursday&#39;s at LooneyLabs&#39; game night. All my chess skills seem to help, as I&#39;ve won my first three games (against other beginners). I want to learn more IceHouse games, as I love the shape and feel of the pyramids, and I&#39;m trying another one online here, Martian Chess, and just started my first game of it. \r\n\r\nThat&#39;s the extent of my gaming experience.  And as a rather new abstract gamer (except for chess) who has suddenly fallen into a new world of gaming, especially when I get to play with game authors and even beta-test games every week, I&#39;m always open to know the top picks of another gamer. While the best Homeworlds players (Andy Looney and Jesse) can beat me almost every game, you&#39;re the first beginner that is trouncing me, as I usually mop up on all the other beginners and advanced beginners. That tells me you are an experienced abstract gamer (hence I wondered if you were a chess master). I&#39;m impressed.  So I&#39;d be happy to have any recommendations from you on games that I haven&#39;t heard of but which are like the ones I&#39;ve mentioned that I have played and liked.  My only constraint is money - I like to buy them used and cheap on eBay rather than say, import them new from Germany.\n\n26) zoltar: Trade G2 Y2 Harcourt\n\tunic: Wow, that was a long message!  :)\r\n\r\nKnizia is my favourite designer for german-style games.  He&#39;s also made several &quot;abstracts&quot; - games that have no luck or hidden information and work well on two.\r\n\r\nGame recommendations - I&#39;ll have a ponder.  I&#39;ve made a list with a bit over 200 abstracts one can improvize pieces for (well, or steal pieces from various games in my collection) which my wife and I are gradually trying out to see which ones we like.\r\n\r\nGigamic does make nice games - though often with a tendency towards short and rather tactical ones.  Cathedral is one of their better, I think... I&#39;m not keen on Quarto.  \r\n\r\nIf you like Blokus, have you tried Blokus Trigon?  Me and the wife both prefer that to standard Blokus... the pieces are all shapes made out of up to 6 triangles.\r\n\r\nWell, I&#39;ll have a ponder on what to recommend.\n\n27) unic: Discover G3 Unic B3 Astra\n\tzoltar: I have lots of Gigamic games: Cathedral is fun and the prettiest, but the first player has an advantage (good for playing with kids) and I&#39;m experimenting by having the first player not allowed to start with a big piece; Quarto is short and purely tactical, so it&#39;s a great tactics-trainer for young kids with a short attention span who won&#39;t focus for an entire game of chess, but I don&#39;t play it with adults; Quoridor is short and tactical, but much more fun with adults as well, and interesting ideas emerge, as with this game Homeworlds; Batik is pretty and fun for 4 year olds and up and kids too lazy or unwilling to do the thinking in tactical games.\r\n\r\nKnizia seems to be a favorite among game designers I&#39;ve met, who all seem to favor the recent surge in German games.  \r\n\r\nAnd I&#39;ve been waiting to pounce on a cheap half-priced Blokus Trigon as soon as some boring person gets it for a present, doesn&#39;t like it, and sells it on eBay, but I might just buy it outright  for a cousin for Christmas if I can&#39;t find it by then -- I&#39;ve seen the reviews for it and it looks great. \r\n\r\nI have a game with 6-sided pieces from Australia called Tantrix that I haven&#39;t played but which looks cool, and a Thailand game called Fire and Ice that I&#39;ve played twice, which is mostly tactical but was really fun.\n\n28) zoltar: Build G2 Harcourt\n\tunic: I&#39;m in the camp that isn&#39;t convinced about the first-player advantage in Cathedral.  But if the advantage is real, playing pairs of games and counting points work to even things out.\r\n\r\nHave you tried Quads from Gigamic?\n\tzoltar: Yes, I have Quads as well and played it once and remember liking it but haven&#39;t got back to it yet. I also have Quivive, Quits, Pyraos, and Bataclan from Gigamic. I discoved Gigamic first with Quoridor and Quarto, and so I grabbed a bunch of their games before I found most of the others. \n\n29) unic: Build Y1 Unic\n\n30) zoltar: Discover G1 Zoltar Y1 Lemon\n\n31) unic: Discover Y3 Unic G3 Prima\n\n32) zoltar: Build G2 Lemon\n\n33) unic: Sacrifice G3 Unic\nBuild G3 Astra\nBuild Y1 Prima\nBuild Y2 Unic\n\n34) zoltar: Sacrifice Y2 Harcourt\nMove G1 Harcourt Astra\nMove G1 Lemon Astra\nCatastrophe Astra G\n\n35) unic: Build Y2 Unic\n\n36) zoltar: Discover G2 Lemon Y3 Banana\n\n37) unic: Discover Y1 Unic Y3 Secunda\n\n38) zoltar: Build R1 Zoltar\n\n39) unic: Build Y1 Unic\n\tzoltar: I think you&#39;re moving your G3 out was a big mistake btw. First, it let me blow up both your g3&#39;s (I&#39;m not sure if you saw that I could do that), and second, it&#39;s dangerous to leave your homeworld without a 3-sized piece. Because you had a big lead, and have successfully controlled most of the yellow technology, you&#39;re still in very good shape, and your Y3 can always come back to defend your homeworld. But your lead was much greater before, and now I have a lot more chances.\n\n40) zoltar: Move G2 Banana Unic\n\tunic: You might be right.  I did see that you could blow up my green ships - but this leaves you without any yellow ships at all.  At the time, I thought it was worth it.\n\n41) unic: Trade Y1 R1 Unic\n\n42) zoltar: Sacrifice R3 Zoltar\nAttack R1 Unic\nAttack Y2 Unic\nAttack Y2 Unic\n\tzoltar: Your play is outstanding at the beginning -- and you had a clearly winning position -- probably from your general gaming experience and intuitions. The middle and endgame of homeworlds is very tricky though, and you probably need several games to grasp the various themes and tactics. \r\n\r\nThere are two very important middle-game rules. The first good general principle to never leave your homeworld without a 3-pip piece (unless you are forcing checkmate or a material gain that gives your opponent no chance at counter-attacking). The second principle is to always get a &#39;gun&#39; (a red ship) as soon as your opponent does. It can be an R1 anywhere, as that way you can sacrifice it for a capture if an enemy piece moves in to bully you. Note that if any of your y1 pieces were instead a r1 piece, you could now simply sacrifice the r1 from anywhere on the board and capture my g2.  So I could not have made this devastating move. Instead, I&#39;m threatening to capture all of your homeworld pieces at once by sacking my R3 for three attacks, and you can&#39;t even bring back your Y3 in defence, as being the 4th yellow in the system, a catastrophe would follow and eliminate all of your ships. Your only move in retrospect was to trade a Y2 for an R2 in your homeworld.\n\tzoltar: You played better than any other first time player I&#39;ve encountered! I hope you like the game and want to play more. Thanks.\n\tunic: Nicely done - I didn&#39;t bear in mind that sacrificing a ship would give you the power to use that colour in any system.\r\n\r\nAnother game?  I liked this and sure want to play more!\n\n\nHomeworlds Online (SDG# 4221)\nVariants: &quot;Unrated&quot;\nStarted: 2006.9.11, Ended: 2006.9.21\nParticipants: jerzy (S), Fabi (N)\nWinner: Fabi\n\n1) Fabi: Homeworld B3 Y1 G3\n\n2) jerzy: Homeworld B2 R1 G3\n\n3) Fabi: Build G1 Fabi\n\n4) jerzy: Build G1 Jerzy\n\n5) Fabi: Trade G1 R1 Fabi\n\n6) jerzy: Trade G1 Y1 Jerzy\n\n7) Fabi: Build G1 Fabi\n\n8) jerzy: Build G1 Jerzy\n\n9) Fabi: Trade G1 R1 Fabi\n\n10) jerzy: Trade G1 Y1 Jerzy\n\n11) Fabi: Build R2 Fabi\n\n12) jerzy: Build Y2 Jerzy\n\n13) Fabi: Trade R2 Y2 Fabi\n\n14) jerzy: Discover Y1 Jerzy G3 Darwin\n\n15) Fabi: Discover Y2 Fabi G2 Lamarck\n\n16) jerzy: Build Y2 Darwin\n\n17) Fabi: Move R1 Fabi Lamarck\n\n18) jerzy: Build Y3 Jerzy\n\tFabi: Acho que vou perder esse jogo.\n\tjerzy: Por qu&ecirc;?\n\n19) Fabi: Build Y3 Lamarck\n\n20) jerzy: Trade Y1 B1 Jerzy\n\n21) Fabi: Build R2 Lamarck\n\n22) jerzy: Discover B1 Jerzy Y3 Buffon\n\n23) Fabi: Move R2 Lamarck Darwin\n\n24) jerzy: Sacrifice Y2 Darwin\nMove Y1 Darwin Lamarck\nMove Y1 Lamarck Buffon\n\tjerzy: Uh-oh... Alien&iacute;gena vermelho detectado no quadrante quatro em Darwin! C&acirc;mbio!\n\n25) Fabi: Build R2 Darwin\n\tjerzy: Run awaaaaaaaaaaay!\n\n26) jerzy: Trade Y2 R2 Jerzy\n\tjerzy: Olha s&oacute;: vou sacrificar a minha G3 no meu sistema para construir tr&ecirc;s naves, t&aacute;?\n\n27) Fabi: Build R3 Fabi\n\tjerzy: Ops, n&atilde;o consegui! Acabei s&oacute; trocando a minha y2 por uma r2.\n\n28) jerzy: Discover Y1 Buffon Y2 Bernard\n\n29) Fabi: Sacrifice Y2 Lamarck\nMove R2 Darwin Jerzy\nMove R2 Darwin Jerzy\nCatastrophe Jerzy Red\n\n30) jerzy: Move B1 Buffon Bernard\n\tjerzy: Como &eacute; que voc&ecirc; fez isso?!?!?!?! Parab&eacute;ns!\n\n31) Fabi: Trade R1 B1 Fabi\n\n32) jerzy: Build G1 Jerzy\n\n33) Fabi: Build Y1 Lamarck\n\n34) jerzy: Trade G1 B1 Jerzy\n\n35) Fabi: Move B1 Fabi Lamarck\n\n36) jerzy: Trade B1 G1 Bernard\n\n37) Fabi: Build B1 Lamarck\n\n38) jerzy: Build Y2 Jerzy\n\n39) Fabi: Move B1 Lamarck Fabi\n\n40) jerzy: Move B1 Jerzy Fabi\n\n41) Fabi: Attack B1 Fabi\n\n42) jerzy: Trade Y2 R2 Jerzy\n\n43) Fabi: Move B1 Fabi Lamarck\n\n44) jerzy: Discover G1 Bernard Y3 Gould\n\n45) Fabi: Move R1 Lamarck Gould\n\n46) jerzy: Discover G1 Gould Y2 Kauffman\n\n47) Fabi: Move B1 Lamarck Gould\n\n48) jerzy: Build Y2 Jerzy\n\n49) Fabi: Move B1 Fabi Lamarck\n\n50) jerzy: Trade Y3 R3 Jerzy\n\n51) Fabi: Move B1 Lamarck Gould\n\n52) jerzy: Build Y3 Jerzy\n\n53) Fabi: Move B1 Lamarck Gould\n\n54) jerzy: Pass\n\n55) Fabi: Sacrifice Y3 Lamarck\nMove B1 Gould Jerzy\nMove B1 Gould Jerzy\nMove B1 Gould Jerzy\nCatastrophe Jerzy Blue\n\n\nHomeworlds Online (SDG# 4222)\nVariants: &quot;Unrated&quot;\nStarted: 2006.9.11, Ended: 2006.9.14\nParticipants: jerzy (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) jerzy: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\tjerzy: Could you tell me more about openings, i.e., what are their names and what one should be doing after each of them?\n\n4) jerzy: Build G1 Jerzy\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) jerzy: Trade G1 Y1 Jerzy\n\tzoltar: Actually, openings are my biggest weakness!  But I know the names.  The strongest is &quot;the banker&quot; which is a small and medium star.  It allows you to go to large stars first, and you can &#39;invest&#39; in a large star by placing a g1 or g2 on it.  When the color is used up, (e.g., suppose you had a g2 on a y3 star), you could sack the g2, and build the y3 somewhere you have a yellow piece, and rebuild the g2 at the same time, somewhere you have a green piece. Because large pieces are next to your homeworld and easy to &#39;invest&#39; in, small-medium systems are called &quot;The Banker&quot;.\r\n\r\nI&#39;m playing &quot;The Fortress&quot; which is the best defensive position later on, because only small stars are connected to my homeworld, and you run out of small pieces in the middlegame, so it&#39;s harder to attack the homeworld. The disadvantage is that I have to use small pieces to expand, and my opponent can more easily calculate so that he will get the first middle-sized piece in a particular color.\r\n\r\nYou&#39;re playing the third kind, called &quot;goldilox&quot; because your homeworld is adjacent to middle-sized pieces.  Some players prefer this one most of all, but I don&#39;t know yet the advantages or disadvantages.\r\n\r\nThe top player of all time, Andy Looney, swears that the banker is the strongest, and gives a strong advantage; the second best player in the world, who goes here by TwoShort, disagrees and doesn&#39;t think the banker gives anyone more than a minimal edge. However, the banker is the easiest for beginners, so I used it for all my first dozen or so games, and recommend you get familiar with it.\r\n\r\nUsually any ybg color combo is good to start, which ships usually being y or g, but recently the top players are using red stars. I&#39;m trying them out (as in this game). It&#39;s harder in the opening, but later on, you have a strong defence, as you don&#39;t need a red ship in your homeworld to defend, but it is tougher for beginners because red is used least in the opening, so you have to build more ships before you can use the other three color powers, all of which are used in the opening.\r\n\r\nThat&#39;s about all I know about openings. \n\tjerzy: Man, thanks a lot! That clarifies a lot of things! I thought the names refered to the colors you chose to start with, rather than color/size combinations. I thought I was playing the banker!\r\n\r\nMaybe we could add a section about openings to the Wiki, that would be very helpful for newbies!\n\n7) zoltar: Build Y2 Zoltar\n\tzoltar: The publisher of the game (and world champ) Andy Looney of Looney Labs, and the author of the game, John Cooper, are working on that now, in a new booklet that will introduce 3 Looney Labs games together. We can get them to transfer the final version to the Wiki perhaps.  I&#39;ll suggest it to them (they are both my neighbors).\n\n8) jerzy: Build Y2 Jerzy\n\n9) zoltar: Build Y2 Zoltar\n\n10) jerzy: Discover Y1 Jerzy G2 Darwin\n\tjerzy: Ah, you&#39;re talking about &#39;3house&#39; perhaps? I&#39;m looking forward to it... Do suggest the Wiki transfer!\n\n11) zoltar: Trade Y1 R1 Zoltar\n\tzoltar: Yes, I am talking about 3house!\n\n12) jerzy: Trade Y2 B2 Jerzy\n\n13) zoltar: Discover Y2 Zoltar G1 Greenbelt\n\tjerzy: It must be a priviledge for you to be neighbour to the two greatest game designers IMO! I am from Brazil, and it&#39;s nearly impossible cost-wise for us to import Icehouse pieces... \r\n\r\nI have made my own set of flat wooden pieces, much like Zarf&#39;s Zarcana ones.\n\tzoltar: Yes, it is quite a priviledge.  I only wish I&#39;d known them longer, as they were neighbors for years before I met any of them or heard of any of these games.\n\n14) jerzy: Build B1 Jerzy\n\n15) zoltar: Build G1 Zoltar\n\tjerzy: I&#39;ve been trying to figure how to use the blue pieces to my advantage, since it&#39;s such an unused color...\n\tzoltar: If you can get all of the small ones on the board, then you can build large blue pieces, trade them for other large pieces, then build them again and repeat the process. Also, a large blue can always threaten to capture a smaller piece if you have a red piece somewhere to sacrifice.\n\n16) jerzy: Build G1 Jerzy\n\n17) zoltar: Discover G1 Zoltar Y1 Lemon\n\n18) jerzy: Discover G1 Jerzy Y2 Mango\n\n19) zoltar: Build G2 Zoltar\n\n20) jerzy: Build G2 Jerzy\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Lemon\nBuild Y3 Greenbelt\n\n22) jerzy: Sacrifice G2 Jerzy\nBuild G2 Jerzy\nBuild Y3 Darwin\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild R1 Zoltar\n\n24) jerzy: Move B1 Jerzy Mango\n\tjerzy: Hehe what a stupid way to may a straightforward move.\n\tjerzy: Should&#39;ve recreated that g2 in mango.\n\n25) zoltar: Sacrifice Y3 Zoltar\nMove R1 Zoltar Lemon\nMove G3 Lemon Mango\nMove G3 Mango Jerzy\n\n26) jerzy: Sacrifice B2 Jerzy\nTrade G3 Y3 Jerzy\nTrade G2 R2 Jerzy\n\n27) zoltar: Sacrifice R1 Zoltar\nAttack R2 Jerzy\n\tzoltar: You made the mistake of not trading one of your blue ships for a red ship.  Now you are in a bit of trouble.\n\n\tzoltar: Actually, it&#39;s checkmate in a move or two. Your only way to stay alive was to move your own g1 back to your homeworld and blow up your greens and mine with them. Or trade your b1 in mango for an r1, (threatening to sac and capture my g3), forcing me to sac a green and rebuild it in your homeworld and blow up your greens (I would sac my g2 in Zoltar, and rebuild it in your homeworld using that &#39;teleport&#39; trick you discovered, and use the extra build to rebuild my y3 in Zoltar -- I would end up with three big ships to your one, and your y3 would have to immediately run back to your homeworld to defend -- not a pretty outcome, but the only scenerio where you survive.  And all this because you didn&#39;t get a red ship after I did.\n\tjerzy: I see... Gonna accept your pending challenge now, I&#39;ll try the Banker...\n\nHomeworlds Online (SDG# 4187)\nStarted: 2006.9.11, Ended: 2006.9.15\nParticipants: TwoShort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 G1 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tzoltar: Ok, I&#39;m going to try this again -- and be more mindful.\n\n3) zoltar: Build Y1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Build Y1 Zoltar\n\n6) TwoShort: Build G1 Twoshort\n\n7) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) zoltar: Build Y2 Greenbelt\n\n10) TwoShort: Build G1 Twoshort\n\n11) zoltar: Build Y2 Greenbelt\n\n12) TwoShort: Build Y2 Twoshort\n\n13) zoltar: Discover Y2 Greenbelt G2 Greenhills\n\n14) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort G2 Greenland\nDiscover G1 Twoshort B2 Bluestar\n\n15) zoltar: Trade Y3 G3 Zoltar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild Y2 Greenland\nBuild G3 Twoshort\n\n17) zoltar: Build Y3 Greenhills\n\n18) TwoShort: Discover Y1 Greenland B3 Bluonia\n\n19) zoltar: Build Y3 Zoltar\n\n20) TwoShort: Sacrifice G2 Bluestar\nBuild Y3 Bluonia\nBuild G2 Bluestar\n\n21) zoltar: Trade Y1 R1 Zoltar\n\n22) TwoShort: Sacrifice Y3 Bluonia\nMove Y1 Bluonia Greenhills\nMove Y2 Greenland Greenbelt\nMove Y2 Greenbelt Greenhills\nCatastrophe Greenhills Yellow\n\n23) zoltar: Build G2 Zoltar\n\n24) TwoShort: Trade G2 Y2 Bluestar\n\n25) zoltar: Discover G2 Zoltar Y3 Investment\n\n26) TwoShort: Build G2 Bluestar\n\n27) zoltar: Build G2 Investment\n\n28) TwoShort: Trade G2 R2 Bluestar\n\n29) zoltar: Discover G2 Investment B2 Blueberry\n\n30) TwoShort: Trade G1 Y1 Twoshort\n\n31) zoltar: Move Y1 Greenbelt Blueberry\n\n32) TwoShort: Discover G1 Bluestar Y3 Cash\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G1 Investment\nBuild G2 Investment\nBuild G3 Blueberry\n\n34) TwoShort: Sacrifice G1 Cash\nBuild R1 Bluestar\n\n35) zoltar: Sacrifice G3 Blueberry\nBuild G1 Blueberry\nBuild G3 Blueberry\nBuild R2 Zoltar\n\n\tzoltar: Wow, just when I thought it would be another dozen games or so before I beat you again, I came up with a victory. I thought you had the upper hand for a while -- I&#39;m not sure when I got the advantage there.\n\nHomeworlds Online (SDG# 4227)\nStarted: 2006.9.13, Ended: 2006.10.6\nParticipants: zoltar (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld G2 B1 Y3\n\tzoltar: I&#39;m ready. Do you still want to play?\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) mneme: Build Y1 Mneme\n\n4) zoltar: Build G1 Zoltar\n\n5) mneme: Build Y1 Mneme\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) mneme: Trade Y1 G1 Mneme\n\n8) zoltar: Build G1 Zoltar\n\n9) mneme: Discover Y1 Mneme G3 Houston\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) mneme: Build G1 Mneme\n\tmneme: Yes. :)\n\n12) zoltar: Build R1 Zoltar\n\n13) mneme: Trade Y3 R3 Mneme\n\n14) zoltar: Trade R1 B1 Zoltar\n\tmneme: fast play!\r\n\n\n15) mneme: Trade G1 Y1 Mneme\n\n16) zoltar: Build Y2 Zoltar\n\n17) mneme: Build Y2 Mneme\n\n18) zoltar: Discover Y1 Zoltar G2 Greengelt\n\n19) mneme: Build G1 Mneme\n\n20) zoltar: Build G1 Zoltar\n\n21) mneme: Discover G1 Mneme G3 Bleeker\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild B1 Zoltar\n\n23) mneme: Sacrifice Y2 Mneme\nMove G1 Bleeker Greengelt\nMove G1 Greengelt Zoltar\nCatastrophe Zoltar Green\n\n24) zoltar: Build Y2 Greengelt\n\n25) mneme: Build Y2 Houston\n\n26) zoltar: Trade B1 G1 Zoltar\n\tzoltar: Ouch! I wasn&#39;t paying attention. I&#39;m probably toast, now.\n\tmneme: did you miss the catastrophe?\n\tmneme: ah -- yes.  Yeah, probably, though if so, this will be the first game of BH I win.\n\n27) mneme: Build Y3 Mneme\n\n28) zoltar: Build Y3 Zoltar\n\tzoltar: It took at least a dozen games before I won one -- this is a very hard game to learn, and the tactics are very tricky. \n\n29) mneme: Discover Y2 Houston B2 Prince\n\n30) zoltar: Trade Y2 G2 Zoltar\n\tzoltar: well, yes, I I did miss that previous catastrophe, but I&#39;ve been able to quickly get a 3-pip ship in my homeworld, so I&#39;m safe now, and only a tempo or two behind. Had you been able to stick a 3-pip ship in my homeworld before I could get my defences back, I would have lost in two or three moves. Luckily, I picked a pretty safe position to make such a key blunder!\n\n31) mneme: Build Y2 Houston\n\n32) zoltar: Build Y3 Zoltar\n\n33) mneme: Sacrifice Y3 Mneme\nMove Y1 Houston Prince\nMove Y2 Prince Zoltar\nMove Y1 Prince Zoltar\nCatastrophe Zoltar Y\n\tmneme: It&#39;s true -- it just seemed like too much trouble to &quot;waste&quot; multiple moves stopping you from getting that 3 (and it might not have worked in any case).  But yeah.\r\n\n\n34) zoltar: Move Y1 Greengelt Zoltar\n\n35) mneme: Build R1 Mneme\n\n36) zoltar: Discover G1 Zoltar Y2 Bananas\n\tzoltar: Of course I had to force you to sac there or you end up with most of the yellow pieces. \n\tmneme: I know.  As it is, not sure where we are, realy.\n\n37) mneme: Build R2 Mneme\n\n38) zoltar: Move R1 Zoltar Bananas\n\n39) mneme: Sacrifice Y2 Houston\nDiscover R3 Mneme R3 Sictransit\nMove R3 Sictransit Bananas\n\n40) zoltar: Sacrifice G2 Zoltar\nBuild R2 Bananas\nBuild R2 Bananas\nCatastrophe Bananas R\n\n41) mneme: Build R1 Mneme\n\n42) zoltar: Trade B1 G1 Zoltar\n\tzoltar: Well, you left me no choice -- else you march right into my homeworld with that R3.\n\tmneme: true.  Should have gone to the y2.  \n\n43) mneme: Discover G1 Mneme B3 Rector\n\n44) zoltar: Build G2 Bananas\n\tzoltar: I have so little to work with! Luckily, you don&#39;t have a fleet of R3 ships...\n\n45) mneme: Build G3 Rector\n\n46) zoltar: Build G3 Zoltar\n\n47) mneme: Trade G3 Y3 Rector\n\n48) zoltar: Trade G3 Y3 Zoltar\n\n49) mneme: Build G3 Rector\n\n50) zoltar: Build G3 Zoltar\n\n51) mneme: Sacrifice G3 Rector\nBuild Y1 Mneme\nBuild Y2 Rector\nBuild Y3 Mneme\n\n52) zoltar: Trade G3 R3 Zoltar\n\n53) mneme: Build G3 Rector\n\n54) zoltar: Build G3 Zoltar\n\n55) mneme: Discover R1 Mneme G3 Stone\n\n56) zoltar: Sacrifice Y2 Greengelt\nMove G2 Bananas Rector\nMove G1 Bananas Rector\nCatastrophe Rector G\n\n57) mneme: Move Y1 Mneme Stone\n\n58) zoltar: Discover Y3 Zoltar G2 Greenbelt\n\n59) mneme: Build Y2 Stone\n\n60) zoltar: Build Y2 Zoltar\n\n61) mneme: Discover R1 Stone G2 Wall\n\n62) zoltar: Move R3 Zoltar Greenbelt\n\n63) mneme: Move Y2 Rector Wall\n\n64) zoltar: Discover Y2 Zoltar B2 Blueridge\n\n65) mneme: Build R2 Wall\n\n66) zoltar: Build R2 Greenbelt\n\n67) mneme: Discover R2 Mneme G3 Pearl\n\n68) zoltar: Move R3 Greenbelt Stone\n\n69) mneme: Sacrifice Y2 Stone\nDiscover Y1 Stone B2 Bridge\nMove Y3 Rector Bridge\n\n70) zoltar: Build R3 Greenbelt\n\n71) mneme: Build R3 Pearl\n\n72) zoltar: Build Y2 Greenbelt\n\n73) mneme: Trade Y1 G1 Bridge\n\n74) zoltar: Build Y1 Zoltar\n\n75) mneme: Build G1 Bridge\n\n76) zoltar: Move G1 Zoltar Blueridge\n\n77) mneme: Sacrifice Y1 Mneme\nMove R3 Pearl Blueridge\n\n78) zoltar: Sacrifice Y2 Blueridge\nDiscover G1 Blueridge B1 Blueberry\nMove Y3 Greenbelt Pearl\n\n79) mneme: Trade G1 B1 Bridge\n\n80) zoltar: Sacrifice R2 Greenbelt\nAttack R2 Pearl\nPass\n\tmneme: I have, by the way, no idea who is winning.  I&#39;m assuming you are, but it&#39;s interesting.\n\n81) mneme: Build B2 Bridge\n\n82) zoltar: Move Y3 Pearl Wall\n\n83) mneme: Sacrifice Y2 Wall\nMove R2 Wall Zoltar\nMove R2 Zoltar Bridge\n\n84) zoltar: Build G1 Zoltar\n\n85) mneme: Build R2 Bridge\n\n86) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Greenbelt\nBuild Y2 Wall\n\n87) mneme: Trade R3 B3 Blueridge\n\n88) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Greenbelt\nBuild Y2 Greenbelt\n\n89) mneme: Sacrifice Y3 Bridge\nMove R1 Wall Zoltar\nMove R2 Bridge Zoltar\nMove R2 Bridge Zoltar\nCatastrophe Zoltar Red\n\n\tmneme: I think that&#39;s game, no?  I don&#39;t see a save.\n\tmneme: (I think someone got greedy)\n\tzoltar: yes, it&#39;s been over for a while, I was waiting for you to do something before I resigned.  Good game.\n\tmneme: Thanks -- good game!  (I -think- if you&#39;d taken my small red ship before I activated the doomsday device, you might have been able to keep me at bay long enough for your superior numbers to tell -- but I could be wrong)\n\tzoltar: Yeah, you&#39;re probably right, but I had to sack an R2 to take it, and then you immediately rebuild the R2 again -- that&#39;s what I was thinking, so I&#39;d sort of given up at that point. I&#39;m still an advanced beginner at this game, even though I have an inflated rating because I beat up on total beginners most of the time. And unlike chess, etc., there are no books to read or download with puzzles and annotated games to increase my strength. I&#39;d like to get better at the game and I wish there were a lot of amazing tough players to spar with, or even computer opponents, like there are in chess.\n\tmneme: Hmm.  Point -- ish.  There are -some- amazing tough players -- Andy is ver good, frex.  But playing against new players doesn&#39;t sharpen your skills much, I suppose (haven&#39;t done much of that, actually).\r\n\n\nHomeworlds Online (SDG# 4252)\nStarted: 2006.9.14, Ended: 2006.9.16\nParticipants: zoltar (S), unic (N)\nWinner: zoltar\n\n1) unic: Homeworld Y2 B1 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) unic: Build G1 Unic\n\n4) zoltar: Build G1 Zoltar\n\n5) unic: Trade G1 R1 Unic\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) unic: Build R1 Unic\n\n8) zoltar: Build Y1 Zoltar\n\n9) unic: Build R2 Unic\n\n10) zoltar: Build Y1 Zoltar\n\n11) unic: Discover R2 Unic Y3 Prima\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) unic: Discover R1 Unic G3 Secunda\n\n14) zoltar: Build Y2 Zoltar\n\n15) unic: Build R2 Secunda\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) unic: Build R3 Unic\n\n18) zoltar: Build R3 Zoltar\n\n19) unic: Build R3 Unic\n\n20) zoltar: Discover R3 Zoltar Y2 Lemon\n\tunic: ... so, that&#39;s all the red pyramids gone for now.\n\n21) unic: Trade R3 Y3 Unic\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild R3 Lemon\nBuild Y2 Greendale\nBuild Y3 Zoltar\n\tzoltar: Yes, and you managed to get most of them!\n\n23) unic: Move Y3 Unic Secunda\n\tzoltar: Another good move, making sure you don&#39;t get locked out of the Yellow tech, and threatening to build your R3 back. I can&#39;t build the R3 in my homeworld, or else you now sack your Y3 and move an R1 into my homeworld, destroying my R3 as well as my red star. I am forced to sacrifice my G3 here, as there is no other reasonable move.\n\n24) zoltar: Trade Y1 G1 Zoltar\n\tzoltar: Now the game is very close, as I&#39;ve got both yellow and red tech and have as many large ships, with my extra R3 vs your G3.  All sorts of things could tip the scale one way or another, and there can be quick attacks and sacrifices or slow development in a game like this. It makes the game quite interesting and allows for different styles of play.\n\n25) unic: Build Y1 Secunda\n\tunic: This is where I start feeling a bit lost - the possibilities that arise from sacrificing ships are difficult for me to get an overview of.\n\tzoltar: Yes, I know the feeling: this is where the top players get the advantage against me. It takes several games to get a feel for complex positions and even see all the various candidate moves, much less choose among them.\n\n26) zoltar: Move R3 Lemon Prima\n\tzoltar: My choices are more limited: I had to get a green ship before I can build anything else.\n\n27) unic: Move R2 Prima Greendale\n\n28) zoltar: Sacrifice R2 Zoltar\nAttack R2 Greendale\nPass\n\n29) unic: Build G1 Unic\n\tunic: Run!  Their ship is bigger than ours!\n\tzoltar: You may want to redo that move: I can sacrifice my r2 in zoltar and attack your r2 in greendale. \n\tunic: No, done is done.\n\n30) zoltar: Trade Y3 G3 Zoltar\n\n31) unic: Discover R3 Unic Y3 Tertia\n\n32) zoltar: Build R2 Greendale\n\n33) unic: Move Y1 Secunda Unic\n\n34) zoltar: Trade G1 B1 Zoltar\n\n35) unic: Move R3 Tertia Greendale\n\n36) zoltar: Build Y3 Zoltar\n\n37) unic: Sacrifice R2 Secunda\nAttack R2 Greendale\nAttack R2 Greendale\n\n38) zoltar: Sacrifice Y1 Greendale\nMove R3 Prima Greendale\nCatastrophe Greendale R\n\n39) unic: Build R2 Secunda\n\n40) zoltar: Sacrifice B1 Zoltar\nTrade Y2 R2 Greendale\n\tzoltar: oops -- I typed that in wrongly.\n\n41) unic: Trade R1 B1 Unic\n\n42) zoltar: Build G1 Zoltar\n\n43) unic: Move R1 Secunda Unic\n\n44) zoltar: Move Y1 Zoltar Greendale\n\n45) unic: Build B1 Unic\n\n46) zoltar: Move G1 Zoltar Lemon\n\n47) unic: Move B1 Unic Secunda\n\n48) zoltar: Build G1 Zoltar\n\n49) unic: Build B2 Secunda\n\n50) zoltar: Build G2 Lemon\n\tunic: Seems this game is in a bit of a slow phase currently.\n\n51) unic: Discover B2 Secunda B2 Prima\n\tzoltar: Yes, though that can change at any moment.\n\tzoltar: Yes, though that can change at any moment.\n\tzoltar: Yes, though that can change at any moment.\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G2 Lemon\nBuild G3 Zoltar\nBuild Y1 Greendale\n\tzoltar: hmm, somehow it repeated that 3 times\n\n53) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild B2 Secunda\nBuild B3 Prima\n\n54) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Zoltar\n\n55) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild B3 Unic\nBuild R1 Unic\n\n56) zoltar: Discover G1 Lemon R3 Bigred\n\n57) unic: Trade B3 R3 Prima\n\n58) zoltar: Sacrifice G2 Lemon\nBuild G2 Bigred\nBuild R2 Greendale\n\n59) unic: Build B3 Secunda\n\tzoltar: I meant to say g1 there\n\n60) zoltar: Move Y1 Greendale Bigred\n\n61) unic: Sacrifice Y1 Unic\nMove B3 Unic Bigred\n\n62) zoltar:\nSacrifice Y3 Zoltar\nMove Y1 Bigred Unic\nMove G1 Bigred Unic\nMove G2 Bigred Unic\nCatastrophe Unic G\n\tzoltar: Unfortunately, I couldn&#39;t find a way to get into the Blue industry, which has built up your advantage.\n\n63) unic: Sacrifice Y3 Secunda\nMove B3 Bigred Unic\nMove B3 Secunda Greendale\nDiscover B1 Secunda G2 Tertia\n\tunic: I can&#39;t really see how to exploit my blue ships for anything useful though.  Oh well... perhaps I&#39;ll spot something eventually.\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild R3 Lemon\nBuild Y1 Unic\nBuild Y3 Zoltar\n\tzoltar: Even if you don&#39;t, after some fighting and explosions, you&#39;ll be able to trade them for ships you can find useful things to do with. That&#39;s what I&#39;m afraid of.\n\tzoltar: Now I have to hope you make some mistakes and give me pieces and opportunities, like you did in the last game!\n\n65) unic: Sacrifice R3 Prima\nAttack Y2 Greendale\nAttack Y1 Greendale\nAttack Y1 Unic\n\tzoltar: Well, it&#39;s now or never -- I either have to exercise sharp tactics or else slowly get stangled. I&#39;ve got to think about this for a few minutes.\n\tzoltar: s y3 zoltar\r\nm y1 bigred unic\r\nm g1 bigred unic\r\nm g2 bigred unic\r\nc unic g\n\n66) zoltar: Sacrifice R3 Lemon\nAttack Y2 Greendale\nAttack Y1 Greendale\nAttack B1 Unic\n\tzoltar: It&#39;s going to be big finish, one way or the other.\n\n67) unic: Sacrifice R2 Secunda\nAttack R2 Greendale\nAttack R2 Greendale\n\n68) zoltar: Sacrifice R3 Lemon\nAttack R2 Greendale\nAttack R2 Greendale\nAttack Y1 Unic\n\tzoltar: This is a very tough position, and makes for a really interesting game. Since I&#39;m also rather new to the game, I still get lost in the possibilities here. This is one game that, after it&#39;s over, I&#39;ll replay on a board with Andy Looney when he has the time, so he can show me ideas that we missed. Anyway, this is the best I can come up with tonight.\n\n69) unic: Attack B1 Unic\n\n70) zoltar: Sacrifice R2 Greendale\nAttack R1 Unic\nAttack B1 Unic\n\tzoltar: Hey, the server&#39;s back up. I was worried we&#39;d be down the whole weekend. Wow -- 6 sacrifices in a row, and 5 3-pip ships sacked in a row! That&#39;s a record for me. The most exciting games I&#39;ve played have had multiple 3-pip sacrifices at the crucial stage in the endgame.\n\tunic: I&#39;ve been compulsively checking the server all day!  Finally back up :)  It feels you&#39;re definitely ahead in this game... I&#39;ll have to ponder my options a while.\n\n71) unic: Sacrifice R1 Unic\nAttack R2 Greendale\n\tunic: Yet another sacrifice... this game feels like a real rollercoaster currently!\n\tunic: If you do end up getting any comments from Andy Looney or some other good player, please feel free to share them!\n\n72) zoltar: Sacrifice R1 Unic\nAttack R2 Greendale\n\tzoltar: That&#39;s 8 sacrifices in a row.  Well, you have two more red ships and so do I...  I finally feel that I&#39;m ahead in the game, too, but I think I was losing up until the wild sacrificing frenzy.  In any case, this is one of the most fun homeworlds games I&#39;ve played, and regardless of how it ends, I&#39;m replaying this for Andy Looney and John Cooper  next Thursday on game night. If he has lots of comments on all the sacrifices and interesting options that we missed, I&#39;ll write them down and let you know. Btw, I just (yesterday) won a game from TwoShort, which is no small feat, as he is the best active player here, and second only to Andy. I lose most of my games to him. In fact, if you have a set of pyramids, I&#39;d suggest you check out the archives and replay all of TwoShort&#39;s and games. You need to view the PGN files ( http://superdupergames.org/pgn.html?id=homeworlds ). That&#39;s what I did after my first couple disorienting games (I didn&#39;t play as well as you at first), and then I was able to defeat just about everyone but TwoShort and Andy Looney.  It&#39;s worth it if you like the game and want to play a lot. If you study a bunch of games, and play me some more, I&#39;d then suggest you challenge TwoShort and give him a run for his money. He&#39;ll be shocked to have a second new player (besides me) learn the game and be able to deal with all his tricks.\n\n73) unic: Sacrifice B2 Prima\nTrade B3 R3 Greendale\nTrade B3 R3 Unic\n\n74) zoltar: Sacrifice G2 Lemon\nBuild B2 Unic\nBuild B2 Unic\nCatastrophe Unic B\n\n75) unic: Sacrifice R3 Greendale\nAttack Y1 Unic\nAttack Y1 Unic\nPass\n\n76) zoltar: Sacrifice Y2 Greendale\nMove Y1 Greendale Zoltar\nMove Y1 Zoltar Unic\nCatastrophe Unic Y\n\n\tzoltar: Sure! Excellent game.\n\nHomeworlds Online (SDG# 4226)\nStarted: 2006.9.14, Ended: 2006.9.21\nParticipants: zoltar (S), jerzy (N)\nWinner: zoltar\n\n1) jerzy: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) jerzy: Build G1 Jerzy\n\n4) zoltar: Build G1 Zoltar\n\n5) jerzy: Trade G1 Y1 Jerzy\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) jerzy: Build G1 Jerzy\n\n8) zoltar: Build Y1 Zoltar\n\n9) jerzy: Build Y2 Jerzy\n\n10) zoltar: Build Y2 Zoltar\n\n11) jerzy: Trade Y1 R1 Jerzy\n\n12) zoltar: Trade Y2 R2 Zoltar\n\tjerzy: Which is more useful: a r2 or a y2?\n\n13) jerzy: Build Y1 Jerzy\n\n14) zoltar: Build Y2 Zoltar\n\tzoltar: It depends upon the position. Early in the game, a Y2 is definitely more useful, as spreading your pieces out in order to grow is crucial. You have to get a red ship when your opponent does (as you saw in the last game), but once you have a red ship, then it entirely depends upon the position. The general principle is to try to take whatever allows you to build 3-pip ships as soon as possible, and then you can always trade among the colors on a blue star or sacrifice a blue piece to get the one most needed. Having more large ships of any kind is a huge advantage, as a large ship of any color can bully any smaller ships as long as there is even just a single R1 parked somewhere at any star that can be sacrificed.\n\n15) jerzy: Trade Y1 B1 Jerzy\n\tzoltar: Note that here I could have made a classic beginners&#39; mistake and sacked my Y3 to send my Y1 into your homeworld and blow up your yellow star and ships. It would leave me without a large ship in my homeworld. In fact, in this case, as with only the blue star left our homeworlds would become directly connected, you could build a yellow ship and march your G3 into my homeworld and win before I would have a chance to rebuild. The principle is: don&#39;t sacrifice a lot to blow up one star if you can&#39;t attack the other one and will be vulnerable to counter-attack.\n\n16) zoltar: Trade Y2 B2 Zoltar\n\n17) jerzy: Discover G1 Jerzy Y3 Sol\n\tjerzy: Likewise, should I not sac my y2 to destroy your &quot;lemons&quot; in game #4135?\n\tjerzy: Likewise, should I not sac my y2 to destroy your &quot;lemons&quot; in game 4135?\n\n18) zoltar: Build R1 Zoltar\n\n19) jerzy: Build G1 Jerzy\n\n20) zoltar: Build G2 Zoltar\n\n21) jerzy: Build G2 Sol\n\n22) zoltar: Discover G1 Zoltar Y2 Lemon\n\n23) jerzy: Sacrifice B1 Jerzy\nTrade G2 B2 Sol\n\n24) zoltar: Build G2 Lemon\n\n25) jerzy: Build B1 Sol\n\n26) zoltar: Move G1 Lemon Sol\n\tjerzy: I&#39;ll be away for the weekend, so please be patient if I take a while to make my move...\n\n27) jerzy: Trade B2 R2 Sol\n\n28) zoltar: Move R2 Zoltar Lemon\n\n29) jerzy: Move G1 Sol Lemon\n\n30) zoltar: Attack G1 Lemon\n\n31) jerzy: Attack G1 Sol\n\n32) zoltar: Discover G2 Lemon G3 Banana\n\n33) jerzy: Sacrifice G3 Jerzy\nBuild G2 Sol\nBuild G3 Jerzy\nPass\n\n34) zoltar: Build G3 Zoltar\n\n35) jerzy: Trade G2 Y2 Sol\n\n36) zoltar: Discover Y1 Zoltar G2 Lime\n\n37) jerzy: Build R1 Sol\n\n38) zoltar: Sacrifice Y3 Zoltar\nMove G1 Lemon Banana\nMove G2 Banana Jerzy\nMove G1 Banana Jerzy\nCatastrophe Jerzy G\n\n39) jerzy: Build G1 Sol\n\n40) zoltar: Sacrifice B2 Zoltar\nTrade R1 Y1 Zoltar\nTrade Y1 R1 Lime\n\n41) jerzy: Move G1 Sol Jerzy\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild R2 Lime\nBuild R3 Lime\nBuild R3 Lemon\n\n43) jerzy: Move R1 Sol Lime\nCatastrophe Lime Red\n\n44) zoltar: Move R3 Lemon Sol\n\n45) jerzy: Sacrifice Y2 Sol\nMove R2 Sol Jerzy\nMove G1 Sol Jerzy\n\tjerzy: I don&#39;t quite understand how is the large yellow supposed to act as a &quot;bank&quot; in this opening.\n\tzoltar: The idea would be that you would have a lone g2 (or g1) sitting on the y3 star. Later in the game, when all the yellow is taken, you sack your g2, destroying the star; you then on the same turn build that y3 from the star in one of your systems, and (if it was a g2 and not a g1 you sacked) you rebuild the g2 somewhere else. The small and medium star combo is called &quot;the banker&quot; because you are one step from large stars, which can become &quot;investments&quot; when you park green ships on them.\n\n46) zoltar: Attack B1 Sol\n\n47) jerzy: Build R1 Jerzy\n\tzoltar: well that wuz mighty un-neighborly uvya!\n\n48) zoltar: Trade B1 G1 Sol\n\tzoltar: Zoltar to fleet: move zee Death Star into zee Sol System and spread death and destruction! Whew Who!\n\tjerzy: Run awaaaaaaaaaaaaay!\n\n49) jerzy: Discover R2 Jerzy Y3 Blobiv\n\n50) zoltar: Build G2 Zoltar\n\tzoltar: Zee spinelezz hyu-maahn beanz have fled! Sol ease mine -- awl mine!!!  Yippppeeee!\n\n51) jerzy: Move G1 Jerzy Blobiv\n\tjerzy: Suicide measures: move one red ship into my system and we&#39;re both done with it!\n\tzoltar: And destroy my Death Star!? Never!\n\n52) zoltar: Move G2 Zoltar Lemon\n\n53) jerzy: Build G2 Jerzy\n\n54) zoltar: Build G3 Zoltar\n\n55) jerzy: Sacrifice G2 Jerzy\nBuild G2 Blobiv\nBuild G3 Jerzy\n\n56) zoltar: Sacrifice G2 Zoltar\nBuild G2 Sol\nBuild G3 Zoltar\n\n57) jerzy: Sacrifice G3 Jerzy\nBuild G3 Jerzy\nBuild Y1 Jerzy\nBuild R1 Blobiv\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\n\n59) jerzy: Sacrifice G3 Jerzy\nBuild G3 Jerzy\nBuild R2 Blobiv\nBuild R3 Jerzy\n\n60) zoltar: Sacrifice Y2 Zoltar\nMove R2 Lemon Sol\nMove R2 Sol Jerzy\nCatastrophe Jerzy R\n\n61) jerzy: Move R2 Blobiv Lemon\n\n62) zoltar: Sacrifice G2 Lemon\nBuild Y2 Zoltar\nBuild R1 Sol\n\n63) jerzy: Move Y1 Jerzy Blobiv\n\tjerzy: Dammit! Those alien pirates stole the ship I was about to buy!\n\n64) zoltar: Sacrifice Y2 Zoltar\nMove G2 Sol Jerzy\nMove G1 Sol Jerzy\nCatastrophe Jerzy G\n\n\tzoltar: Hey jerzy, I started a zendo game, but no one else has signed up for the harder one that you signed up for. Want me to add you to the one I just got going?\n\nHomeworlds Online (SDG# 4258)\nVariants: &quot;No undo&quot;\nStarted: 2006.9.16, Ended: 2006.9.21\nParticipants: unic (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) unic: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) unic: Build G1 Unic\n\tunic: By the way, if you fancy playing anything else besides Homeworlds, feel free to throw a challenge my way - I&#39;m up for more or less any pure abstract (no luck, no hidden information, no simultaneous choices).\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tzoltar: Sure. That is an interesting distinction, btw. Having played chess since I was barely able to read, I have a special liking for pure abstract games; most of the game developers I play with at LooneyLabs however prefer games with some random chance mechanism or hidden information. I like both kinds. I have just learned Pikemen, and I know the developer of that game as well, Jacob Davenport. I won my first two games so far, which were against other beginners. I&#39;ll challenge you to that one.\n\n6) unic: Trade G1 R1 Unic\n\n7) zoltar: Build Y1 Zoltar\n\n8) unic: Build R1 Unic\n\n9) zoltar: Build Y2 Zoltar\n\n10) unic: Build R2 Unic\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) unic: Discover R2 Unic Y3 Alpha\n\n13) zoltar: Build Y2 Zoltar\n\n14) unic: Sacrifice G3 Unic\nBuild R2 Alpha\nBuild R3 Unic\nBuild R3 Alpha\n\n15) zoltar: Sacrifice Y2 Zoltar\nDiscover R2 Zoltar Y2 Wormhole\nMove R2 Wormhole Alpha\nCatastrophe Alpha R\n\tzoltar: Good heavens! RED ALERT!\n\n16) unic: Trade R3 G3 Unic\n\tunic: I was wondering if you would do that...\n\n17) zoltar: Build Y2 Zoltar\n\n18) unic: Build R2 Unic\n\tzoltar: I had no choice. If I build the last r3, you just move your red ships to blue stars and trade them and you are way u in material.\n\n19) zoltar: Trade Y2 R2 Zoltar\n\n20) unic: Discover R2 Unic G3 Alpha\n\n21) zoltar: Build Y2 Zoltar\n\n22) unic: Build R2 Unic\n\n23) zoltar: Discover R2 Zoltar G2 Beta\n\n24) unic: Trade R2 Y2 Unic\n\n25) zoltar: Move Y1 Zoltar Beta\n\n26) unic: Discover R1 Unic B3 Gamma\n\n27) zoltar: Discover Y1 Zoltar G2 Delta\n\n28) unic: Sacrifice G3 Unic\nBuild R2 Alpha\nBuild R3 Gamma\nBuild R3 Unic\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Delta\nBuild Y3 Beta\nBuild Y3 Zoltar\n\n30) unic: Sacrifice Y2 Unic\nMove R3 Gamma Delta\nMove R2 Alpha Delta\n\n31) zoltar: Build R3 Beta\n\n32) unic: Trade R3 G3 Unic\n\n33) zoltar: Trade Y3 G3 Zoltar\n\n34) unic: Build R3 Unic\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Delta\nBuild Y3 Zoltar\nBuild Y3 Zoltar\n\n36) unic: Sacrifice R2 Delta\nAttack Y2 Delta\nAttack Y2 Delta\n\n37) zoltar: Move Y2 Zoltar Delta\nCatastrophe Delta Y\n\n38) unic: Trade R1 Y1 Unic\n\n39) zoltar: Trade Y3 G3 Zoltar\n\n40) unic: Move Y1 Unic Alpha\n\n41) zoltar: Move Y3 Beta Alpha\n\n42) unic: Sacrifice G3 Unic\nBuild Y2 Alpha\nBuild Y2 Alpha\nBuild R1 Delta\nCatastrophe Alpha Y\n\n43) zoltar: Build R2 Beta\n\n44) unic: Trade R3 G3 Unic\n\n45) zoltar: Trade Y3 R3 Zoltar\n\n46) unic: Build G1 Unic\n\n47) zoltar: Move R2 Beta Gamma\n\n48) unic: Trade G1 Y1 Unic\n\n49) zoltar: Build Y2 Beta\n\n50) unic: Move Y1 Unic Alpha\n\n51) zoltar: Move R3 Beta Alpha\n\n52) unic: Discover R2 Alpha Y2 Epsilon\n\n53) zoltar: Attack Y1 Alpha\n\n54) unic: Build G1 Unic\n\n55) zoltar: Move Y2 Beta Gamma\n\n56) unic: Trade G1 B1 Unic\n\n57) zoltar: Trade R3 Y3 Zoltar\n\n58) unic: Discover B1 Unic Y3 Zeta\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Gamma\nBuild R3 Beta\n\n60) unic: Build G1 Unic\n\n61) zoltar: Trade Y2 G2 Zoltar\n\tzoltar: I couldn&#39;t resist trying to monopolize the rest of the yellow and red tech. It&#39;s very hard to make many threats if you get locked out of yellow.\n\n62) unic: Move B1 Zeta Delta\n\tunic: I&#39;ve noticed - not having any yellow is a pain.\n\n63) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Alpha\n\n64) unic: Build G1 Unic\n\n65) zoltar: Trade Y2 G2 Zoltar\n\n66) unic: Trade G1 B1 Unic\n\tzoltar: I suppose I can repeat the same trick again.\n\n67) zoltar: Build Y2 Beta\n\n68) unic: Build B1 Delta\n\n69) zoltar: Trade Y2 B2 Gamma\n\n70) unic: Trade B1 G1 Delta\n\tzoltar: And another variation on the same theme...\n\n71) zoltar: Build Y2 Alpha\n\tunic: I&#39;m just waiting for you to use your overwhelming advantage in ships to actually win the game...\n\n72) unic: Build B1 Delta\n\n73) zoltar: Move Y3 Alpha Epsilon\n\n74) unic: Discover R2 Epsilon B3 Zeta\n\n75) zoltar: Attack R1 Gamma\n\n76) unic: Build B2 Delta\n\n77) zoltar: Move B2 Gamma Delta\nCatastrophe Delta B\n\n78) unic: Move G1 Unic Zeta\n\n79) zoltar: Move R3 Beta Zeta\n\n\tunic: Can&#39;t see much to do... might as well get it over with.\n\nHomeworlds Online (SDG# 4325)\nStarted: 2006.9.20, Ended: 2006.11.13\nParticipants: unic (S), Cerulean (N)\nWinner: Cerulean\n\n1) Cerulean: Homeworld B2 Y1 G3\n\n2) unic: Homeworld R1 B3 G3\n\n3) Cerulean: Build G1 Cerulean\n\n4) unic: Build G1 Unic\n\n5) Cerulean: Discover G1 Cerulean Y3 Wythrii\n\n6) unic: Trade G1 Y1 Unic\n\n7) Cerulean: Build G1 Cerulean\n\n8) unic: Build Y1 Unic\n\n9) Cerulean: Trade G3 Y3 Cerulean\n\n10) unic: Build Y2 Unic\n\n11) Cerulean: Build Y2 Cerulean\n\n12) unic: Discover Y1 Unic G2 Amani\n\n13) Cerulean: Trade Y2 R2 Cerulean\n\n14) unic: Trade Y2 R2 Unic\n\n15) Cerulean: Build Y2 Cerulean\n\n16) unic: Build Y2 Amani\n\n17) Cerulean: Move Y2 Cerulean Wythrii\n\n18) unic: Discover Y1 Amani G3 Barumba\n\n19) Cerulean: Build G1 Wythrii\n\n20) unic: Build Y2 Barumba\n\n21) Cerulean: Trade Y3 G3 Cerulean\n\n22) unic: Sacrifice G3 Unic\nBuild Y3 Barumba\nBuild Y3 Unic\nBuild R1 Unic\n\n23) Cerulean: Build G2 Wythrii\n\n24) unic: Move Y1 Barumba Cerulean\n\n25) Cerulean: Trade G1 R1 Cerulean\n\n26) unic: Move Y3 Barumba Cerulean\n\n27) Cerulean: Attack Y3S Cerulean\n\n28) unic: Move Y2 Barumba Cerulean\nCatastrophe Cerulean Yellow\n\n29) Cerulean: Sacrifice Y2 Wythrii\nMove G1 Wythrii Cerulean\nMove R1 Cerulean Unic\nCatastrophe Unic R\n\n30) unic: Trade Y1 R1 Unic\n\n31) Cerulean: Sacrifice G3 Cerulean\nBuild G1 Cerulean\nBuild G2 Wythrii\nBuild G3 Cerulean\n\n32) unic: Trade Y3 G3 Unic\n\n33) Cerulean: Trade G3 Y3 Cerulean\n\n34) unic: Build G3 Unic\n\n35) Cerulean: Discover G1 Wythrii Y1 Wywun\n\n36) unic: Trade G3 Y3 Unic\n\n37) Cerulean: Build G3 Wywun\n\n38) unic: Discover Y2 Amani G3 Frz\n\n39) Cerulean: Trade G1 B1 Cerulean\n\n40) unic: Build G1 Unic\n\n41) Cerulean: Build G2 Cerulean\n\n42) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild Y1 Unic\nBuild Y1 Frz\n\n43) Cerulean: Move B1 Cerulean Wywun\n\n44) unic: Trade Y1 B1 Unic\n\n45) Cerulean: Trade G1 B1 Cerulean\n\n46) unic: Move B1 Unic Wywun\n\n47) Cerulean: Sacrifice Y3 Cerulean\nMove B1 Wywun Unic\nMove B1 Cerulean Unic\nMove G1 Wywun Unic\n\n\nHomeworlds Online (SDG# 4249)\nStarted: 2006.9.21, Ended: 2006.9.21\nParticipants: gundam_blade (S), zoltar (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 4339)\nStarted: 2006.9.21, Ended: 2006.9.25\nParticipants: gundam_blade (S), unic (N)\nWinner: unic\n\n1) unic: Homeworld G1 Y2 B3\n\tunic: Hi and good luck!\n\n2) gundam_blade: Homeworld B3 G2 R3\n\n3) unic: Build B1 Unic\n\n4) gundam_blade: Build R1 Gundam_blade\n\n5) unic: Build B1 Unic\n\n6) gundam_blade: Build R1 Gundam_blade\n\n7) unic: Discover B1 Unic G3 Prima\n\n8) gundam_blade: Trade R1 Y1 Gundam_blade\n\n9) unic: Build B1 Unic\n\n10) gundam_blade: Discover R1 Gundam_blade Y1 Gundam1\n\n11) unic: Trade B1 R1 Unic\n\n12) gundam_blade: Build Y1 Gundam_blade\n\n\nHomeworlds Online (SDG# 4341)\nStarted: 2006.9.21, Ended: 2006.9.30\nParticipants: unic (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y2 G3\n\n2) unic: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) unic: Build G1 Unic\n\tunic: Time for me to lose at Homeworlds again, then...\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) unic: Trade G1 Y1 Unic\n\n7) zoltar: Build Y2 Zoltar\n\n8) unic: Build Y2 Unic\n\n9) zoltar: Discover Y1 Zoltar G1 Lime\n\n10) unic: Discover Y1 Unic G2 Cicero\n\n11) zoltar: Build Y3 Lime\n\n12) unic: Build Y3 Cicero\n\n13) zoltar: Move Y1 Lime Cicero\n\n14) unic: Discover Y2 Unic B2 Catullus\n\n15) zoltar: Build Y3 Cicero\nCatastrophe Cicero Y\n\n16) unic: Build G1 Unic\n\n17) zoltar: Build G1 Zoltar\n\n18) unic: Trade G1 Y1 Unic\n\n19) zoltar: Trade G1 R1 Zoltar\n\n20) unic: Trade Y1 R1 Unic\n\n21) zoltar: Build G1 Zoltar\n\n22) unic: Build G1 Unic\n\n23) zoltar: Build G2 Zoltar\n\n24) unic: Move G1 Unic Catullus\n\n25) zoltar: Trade G1 B1 Zoltar\n\n26) unic: Build Y1 Catullus\n\n27) zoltar: Discover Y2 Zoltar B1 Blueberry\n\n28) unic: Discover Y1 Catullus G1 Petronius\n\n29) zoltar: Move G2 Zoltar Blueberry\n\n30) unic: Build G2 Unic\n\n31) zoltar: Build G2 Zoltar\n\n32) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild G3 Catullus\nBuild R1 Unic\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Lime\nBuild Y3 Blueberry\n\n34) unic: Build Y3 Petronius\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoltar\nBuild B1 Zoltar\n\n36) unic: Trade G3 B3 Catullus\n\n37) zoltar: Move B1 Zoltar Lime\n\n38) unic: Build G3 Catullus\n\n39) zoltar: Sacrifice Y3 Lime\nMove B1 Zoltar Lime\nMove B1 Lime Catullus\nMove B1 Lime Catullus\nCatastrophe Catullus B\n\n40) unic: Trade G3 Y3 Unic\n\n41) zoltar: Build Y2 Lime\n\n42) unic: Discover Y1 Petronius B2 Lucretius\n\n43) zoltar: Move Y2 Lime Lucretius\n\n44) unic: Trade Y3 G3 Unic\n\n45) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueberry\nBuild G3 Zoltar\nBuild Y3 Lime\n\n46) unic: Trade R1 B1 Unic\n\n47) zoltar: Sacrifice G2 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\n\n48) unic: Build B1 Unic\n\n49) zoltar: Trade G3 B3 Zoltar\n\n50) unic: Move G2 Unic Lucretius\n\n51) zoltar: Sacrifice R1 Zoltar\nAttack G2 Lucretius\n\n52) unic: Build G3 Unic\n\n53) zoltar: Sacrifice Y3 Blueberry\nMove G1 Blueberry Lucretius\nMove G2 Lucretius Unic\nMove G1 Lucretius Unic\nCatastrophe Unic G\n\n54) unic: Build Y3 Petronius\n\n55) zoltar: Sacrifice Y3 Lime\nMove Y1 Lime Lucretius\nMove Y1 Lucretius Petronius\nMove Y2 Lucretius Petronius\nCatastrophe Petronius Y\n\n56) unic: Trade B1 G1 Unic\n\n57) zoltar: Sacrifice Y2 Blueberry\nMove G2 Blueberry Lucretius\nMove G2 Lucretius Unic\n\n\tzoltar: In two moves you let me destroy your entire fleet!\n\tzoltar: You&#39;ll need more practice before you can take on Darth TwoShort. :)\n\tunic: I need more practice before I can take on you!  :)\n\nHomeworlds Online (SDG# 4336)\nVariants: &quot;Unrated&quot;\nStarted: 2006.9.21, Ended: 2006.10.5\nParticipants: Fabi (S), jerzy (N)\nWinner: Fabi\n\n1) jerzy: Homeworld Y1 B2 G3\n\n2) Fabi: Homeworld B2 Y1 G3 *\n\n3) jerzy: Build G1 Jerzy\n\n4) Fabi: Build G1 Fabi\n\n5) jerzy: Build G1 Jerzy\n\tjerzy: Voc&ecirc; sabe que estamos apenas a uma estrela de dist&acirc;ncia entre n&oacute;s, n&eacute;?\n\n6) Fabi: Trade G1 Y1 Fabi\n\n7) jerzy: Trade G1 R1 Jerzy\n\n8) Fabi: Build Y2 Fabi\n\n9) jerzy: Build R1 Jerzy\n\n10) Fabi: Trade Y1 R1 Fabi\n\n11) jerzy: Discover R1 Jerzy Y3 Fatoldsun\n\n12) Fabi: Build Y1 Fabi\n\n13) jerzy: Build R2 Jerzy\n\n14) Fabi: Build R2 Fabi\n\tFabi: Voc&ecirc; deveria ter aproveitado e trocado uma pecinha tua pelo amarelo.\n\n15) jerzy: Trade R2 Y2 Jerzy\n\tjerzy: No problem... j&aacute; vou conseguir um y2...\n\n16) Fabi: Discover R1 Fabi G3 Thinyoungmoon\n\n17) jerzy: Build R2 Jerzy\n\n18) Fabi: Move Y2 Fabi Thinyoungmoon\n\n19) jerzy: Move G1 Jerzy Fatoldsun\n\n20) Fabi: Build Y2 Thinyoungmoon\n\n21) jerzy: Move Y2 Jerzy Fatoldsun\n\n22) Fabi: Build R2 Fabi\n\n23) jerzy: Move R1 Jerzy Fatoldsun\n\n24) Fabi: Move R2 Fabi Thinyoungmoon\n\n25) jerzy: Build R3 Jerzy\n\n26) Fabi: Build G1 Fabi\n\n27) jerzy: Move R3 Jerzy Thinyoungmoon\n\tjerzy: N&atilde;o me diga que o e-mail do yahoo n&atilde;o est&aacute; funcionando de novo!\n\n28) Fabi: Sacrifice Y2 Thinyoungmoon\nDiscover Y2 Thinyoungmoon G2 Adalimumab\nMove R2 Thinyoungmoon Adalimumab\n\n29) jerzy: Build R3 Jerzy\n\n30) Fabi: Discover G1 Fabi Y3 Cetuximab\n\tFabi: aaaaahhh, meu Deus.. estou udida\n\n31) jerzy: Trade R3 Y3 Jerzy\n\n32) Fabi: Build G1 Fabi\n\tjerzy: Mhwa ha ha ha ha! Dominarei o universo!\n\n33) jerzy: Build G2 Fatoldsun\n\n34) Fabi: Trade G1 B1 Fabi\n\n35) jerzy: Build G1 Fatoldsun\n\n36) Fabi: Sacrifice Y2 Adalimumab\nMove G1 Cetuximab Adalimumab\nMove G1 Adalimumab Fatoldsun\nCatastrophe Fatoldsun Green\n\n37) jerzy: Attack R1 Thinyoungmoon\n\n38) Fabi: Build R3 Adalimumab\n\n39) jerzy: Sacrifice Y3 Jerzy\nMove R1 Fatoldsun Fabi\nMove R1 Fatoldsun Fabi\nMove R1 Thinyoungmoon Fabi\nCatastrophe Fabi Red\n\n40) Fabi: Trade B1 R1 Fabi\n\tjerzy: Wow! voc&ecirc; me pegou!\n\n41) jerzy: Build R1 Thinyoungmoon\n\n42) Fabi: Build R1 Fabi\n\n43) jerzy: Move Y2 Fatoldsun Jerzy\n\n44) Fabi: Trade R1 B1 Fabi\n\n45) jerzy: Build G1 Jerzy\n\n46) Fabi: Build Y2 Fabi\n\n47) jerzy: Trade G1 B1 Jerzy\n\n48) Fabi: Sacrifice Y2 Fabi\nMove R3 Adalimumab Thinyoungmoon\nMove R2 Adalimumab Thinyoungmoon\nCatastrophe Thinyoungmoon Red\n\n49) jerzy: Build G1 Jerzy\n\n50) Fabi: Discover Y1 Fabi G3 Acarbose\n\n51) jerzy: Move R2 Jerzy Acarbose\n\n52) Fabi: Move Y1 Acarbose Fabi\n\n53) jerzy: Build R1 Acarbose\n\tjerzy: ?????\n\n54) Fabi: Build Y2 Fabi\n\n55) jerzy: Move B1 Jerzy Acarbose\n\n56) Fabi: Build G1 Fabi\n\n57) jerzy: Trade R1 B1 Acarbose\n\n58) Fabi: Discover B1 Fabi R3 Bigo\n\n59) jerzy: Trade R2 Y2 Acarbose\n\n60) Fabi: Move Y2 Fabi Bigo\n\n61) jerzy: Move G3 Jerzy Bigo\n\n62) Fabi: Move Y2 Bigo Jerzy\n\tjerzy: Cheque-mate em 3 jogadas...\n\n\nHomeworlds Online (SDG# 4343)\nStarted: 2006.9.21, Ended: 2006.9.25\nParticipants: zoltar (S), gundam_blade (N)\nWinner: zoltar\n\n1) gundam_blade: Homeworld G3 B2 R3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) gundam_blade: Build R1 Gundam_blade\n\n4) zoltar: Build G1 Zoltar\n\n5) gundam_blade: Trade R1 Y1 Gundam_blade\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) gundam_blade: Discover Y1 Gundam_blade R1 Gundam1\n\n8) zoltar: Build Y1 Zoltar\n\n9) gundam_blade: Build R1 Gundam_blade\n\n10) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\tzoltar: I just realized that I chose the same star sizes as you, rendering this a &quot;small&quot; world. I didn&#39;t mean to do that, as we are only two steps instead of three from each other&#39;s homeworlds. I would have redone that move had I noticed it in time. The game will still be ok, but a lot of the interesting themes will be missing.\n\n11) gundam_blade: Move Y1 Gundam1 Gundam_blade\n\n12) zoltar: Build Y2 Greenbelt\n\n13) gundam_blade: Build Y2 Gundam_blade\n\n14) zoltar: Build Y2 Zoltar\n\n15) gundam_blade: Discover Y2 Gundam_blade B1 Gundam1\n\n16) zoltar: Trade Y1 R1 Zoltar\n\tgundam_blade: i wish the game was live like yahoo or something\n\n17) gundam_blade: Trade Y2 G2 Gundam1\n\n18) zoltar: Build Y1 Zoltar\n\n19) gundam_blade: Move R1 Gundam_blade Greenbelt\n\n20) zoltar: Sacrifice R1 Zoltar\nAttack R1 Greenbelt\n\n21) gundam_blade: Build G1 Gundam1\n\n22) zoltar: Move Y2 Zoltar Gundam1\n\tgundam_blade: I&#39;m new to this and confused.  I know you sacrificed your red, but I thought you can only use actions in the system you start with, therefore I thought I would be safe because you didn&#39;t have any red to start with in greenbelt.\n\n23) gundam_blade: Trade G2 R2 Gundam1\n\n24) zoltar: Sacrifice R1 Greenbelt\nAttack R2 Gundam1\n\n25) gundam_blade: Build Y2 Gundam_blade\n\tzoltar: no, you can use that power anywhere on the board.  The requirement is that I had to have a medium (or large) ship in the system to capture your medium ship.  Think of it this way: when you sacrifice, it&#39;s as if any star you want can become the color of the piece you sacrifice, so here the gundam1 system becomes for the move as if it were a red star instead of the blue star.  I just read your comment after my move, or I would have suggested you undo the move. They will not let you roll back the position more than 1/2 move (you can undo your move once). \n\n26) zoltar: Build Y3 Zoltar\n\n27) gundam_blade: Discover Y2 Gundam_blade R1 Gundam2\n\n28) zoltar: Trade Y1 R1 Zoltar\n\n29) gundam_blade: Build R1 Gundam_blade\n\n30) zoltar: Attack G1 Gundam1\n\n31) gundam_blade: Move R1 Gundam_blade Gundam2\n\n32) zoltar: Build R2 Gundam1\n\n33) gundam_blade: Build Y1 Gundam_blade\n\n34) zoltar: Build Y3 Zoltar\n\n35) gundam_blade: Trade Y1 G1 Gundam_blade\n\n36) zoltar: Build G2 Gundam1\n\n37) gundam_blade: Build G2 Gundam_blade\n\n38) zoltar: Move G1 Gundam1 Gundam_blade\nCatastrophe Gundam_blade G\n\n39) gundam_blade: Trade Y1 G1 Gundam_blade\n\n40) zoltar: Discover R2 Gundam1 G3 Greenhills\n\n41) gundam_blade: Build G1 Gundam_blade\n\n42) zoltar: Build G2 Zoltar\n\n43) gundam_blade: Build G2 Gundam_blade\n\n\nHomeworlds Online (SDG# 4358)\nStarted: 2006.9.23, Ended: 2006.9.25\nParticipants: maka (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) maka: Homeworld B3 G1 Y3\n\n3) zoltar: Build G1 Zoltar\n\tmaka: Hello.\n\tzoltar: Greetingz from Greenbelt, Milky Way.\n\n4) maka: Build Y1 Maka\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) maka: Trade Y1 G1 Maka\n\n7) zoltar: Build Y1 Zoltar\n\n8) maka: Discover G1 Maka B2 Tolok\n\n9) zoltar: Discover Y1 Zoltar B1 Blueberry\n\n10) maka: Build G1 Tolok\n\n11) zoltar: Build G2 Zoltar\n\n12) maka: Build G2 Tolok\n\n13) zoltar: Move G2 Zoltar Blueberry\n\n14) maka: Trade G2 Y2 Tolok\n\n15) zoltar: Build G2 Zoltar\n\n16) maka: Trade G1 R1 Tolok\n\n17) zoltar: Trade G2 R2 Zoltar\n\n18) maka: Build R1 Tolok\n\n19) zoltar: Move R2 Zoltar Blueberry\n\n20) maka: Move R1 Tolok Maka\n\n21) zoltar: Build G1 Blueberry\n\n22) maka: Build G2 Tolok\n\n23) zoltar: Discover G1 Blueberry Y2 Lemon\n\n24) maka: Move R1 Maka Lemon\n\n25) zoltar: Build G2 Lemon\n\n26) maka: Attack G1 Lemon\n\n27) zoltar: Sacrifice R2 Blueberry\nAttack G1 Lemon\nAttack R1 Lemon\n\n28) maka: Move R1 Tolok Maka\n\n29) zoltar: Build G3 Zoltar\n\n30) maka: Trade G1 B1 Tolok\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild G1 Lemon\nBuild G3 Blueberry\nBuild G3 Zoltar\n\n32) maka: Discover G2 Tolok Y1 Sol\n\n33) zoltar: Sacrifice G3 Blueberry\nBuild Y2 Zoltar\nBuild Y3 Blueberry\nBuild Y3 Zoltar\n\n34) maka: Build G3 Sol\n\tmaka: sorry about that...\n\n35) zoltar: Sacrifice Y2 Zoltar\nMove G1 Lemon Sol\nMove G1 Lemon Sol\nCatastrophe Sol G\n\tzoltar: no problem, that&#39;s what the undo is for.\n\n36) maka: Discover Y2 Tolok G1 Frog\n\n37) zoltar: Move Y1 Blueberry Tolok\n\n38) maka: Trade B1 R1 Tolok\n\n39) zoltar: Sacrifice R1 Lemon\nAttack R1 Tolok\n\n40) maka: Build Y1 Frog\n\tmaka: Well... I&#39;m off to bed now. It&#39;s almost 2am here :)\n\tzoltar: You&#39;re in Europe then!  Goodnight from Washington DC\n\n41) zoltar: Build Y2 Blueberry\n\n42) maka: Sacrifice Y2 Frog\nMove R1 Maka Tolok\nMove R1 Tolok Frog\n\tmaka: Yep. In Spain. \n\n43) zoltar: Sacrifice G3 Zoltar\nBuild G1 Lemon\nBuild G2 Zoltar\nBuild G3 Blueberry\n\n44) maka: Trade Y3 R3 Maka\n\n45) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Tolok\n\n46) maka: Build R1 Frog\n\n47) zoltar: Sacrifice G3 Blueberry\nBuild G2 Lemon\nBuild G3 Blueberry\nBuild G3 Zoltar\n\n48) maka: Move R1 Frog Zoltar\n\n49) zoltar: Attack R1 Zoltar\n\n50) maka: Build R2 Frog\n\n51) zoltar: Move R1 Zoltar Blueberry\n\n52) maka: Move R2 Frog Lemon\n\n53) zoltar: Sacrifice R1 Tolok\nAttack R2 Lemon\n\tmaka: Well... Seems to me it is quite clear you&#39;re going to win, and if you want, I&#39;m ready to resign. I still have much to learn about this game... but really like it :) Also, any comments and tips will be appreciated...\n\n54) maka: Discover Y1 Frog R2 Lava\n\n55) zoltar: Move Y2 Blueberry Lava\n\n56) maka: Move Y1 Lava Maka\n\tzoltar: The sacrifices are the trickiest thing for a beginner to learn. For example, I just &#39;traded&#39; my r1 for your r2 with the r1 sacrifice.  Yellow sacrifices are the most deadly, as you can move several ships at once or one ship all the way from one homeworld to another to cause a catastrophe. Green sacrifices are good for growing when there are only large ships left of some color. \r\n\r\nI lost my first dozen games or so, and I set up my icehouse pieces on a table and went over the games of the top players (andylooney and TwoShort are the best, much better than I, even though I happen to have an over-inflated rating right now). By going over their games and seeing the kind of things they did, I soon was able to beat just about everyone but them. That&#39;s how good chess players improve, by studying master&#39;s games, and it works with this game too, if you have the enthusiasm to do so. As far as I know, this is the only place anywhere that you can find a record of homeworlds games to study.\n\n57) zoltar: Sacrifice G3 Zoltar\nBuild R1 Lemon\nBuild R3 Blueberry\nBuild R3 Blueberry\n\n58) maka: Pass\n\tmaka: Yeah. Sacrifices are tricky. I&#39;m not good at planning them well and seeing when they will be good to use them... Thanks for the tips :) I didn&#39;t know you could read old games here... I&#39;ll investigate it...\r\n\r\nSo... Do you want to play this game through to the end? \n\n59) zoltar: Build G3 Zoltar\n\n60) maka: Pass\n\tzoltar: Sure, I don&#39;t mind playing it to the end -- and you get to see sacrifices and so forth in the endgame. Here I sacked my G3 to get all the remaining red pieces.  I can then build my G3 back next move.  Or I could do the &#39;factory&#39;, which would have been to sack my G3, build two red pieces (or any other builds) and then build my G3 back in place. In this case it would let you build the remaining R3, so I built all three reds, but when you get a G3 and another green ship on on star and there is no more green in the stash, you can get two builds instead of one with the factory move of sacking your G3 and immediately rebuilding it in place, along with two other builds anywhere on the board. I would have done this last move, but since you threatened to catastrophe my yellow pieces, I had to chase your yellow ship away first.\n\n61) zoltar: Trade G3 B3 Blueberry\n\tmaka: ok. there&#39;s not much I can do now... just wait \n\n62) maka: Pass\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild B1 Blueberry\n\n64) maka: Pass\n\n65) zoltar: Move B1 Blueberry Lemon\n\tmaka: I&#39;ve also ended up with so few options for building... I didn&#39;t really know about that aspect of the game\n\n66) maka: Pass\n\n67) zoltar: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild B1 Lemon\nBuild B2 Lemon\n\n68) maka: Pass\n\n69) zoltar: Sacrifice Y3 Zoltar\nMove B2 Lemon Maka\nMove B1 Lemon Maka\nMove B1 Lemon Maka\n\n70) maka: Pass\nCatastrophe Maka Blue\n\n71) zoltar: Sacrifice Y3 Blueberry\nMove G2 Lemon Maka\nMove G2 Lemon Maka\nMove G1 Lemon Maka\nCatastrophe Maka G\n\tzoltar: It&#39;s the Grand Finale Supernova party at maka&#39;s! All ships invited! It will be a blast!\n\n\tmaka: he he :) and you let me trigger the catastrophe...\n\tzoltar: Actually, I was going to trigger both the blue and green together. In a close game, my play here to blow up the two stars one after another, comes in handy: if you wait to sacrifice until you can destroy both stars, your opponent won&#39;t have time to counterattack.\r\n\r\nPlay again?\n\tmaka: I see...\r\n\r\nyeah... I wish the zendo game would also move at this pace :)\n\nHomeworlds Online (SDG# 4375)\nStarted: 2006.9.24, Ended: 2006.9.24\nParticipants: zoltar (S), mjbuyck (N)\nWinner: zoltar\n\n1) mjbuyck: Homeworld G1 Y2 B3\n\tmjbuyck: Hi! To let you know, this is really my first time playing.\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) mjbuyck: Discover B3 Mjbuyck G3 Bacon\n\tzoltar: Well, I hope you enjoy it. I learned in June, and lost my first dozen games or so, and then got pretty good at it. The hardest tactics to learn are the sacrifices, because they look strange at first and it&#39;s easy to overlook them. This has become my favorite game here, and I think it&#39;s a wonderful chess-like game.\n\tmjbuyck: ...oops.\r\n&gt;_&lt;\n\tzoltar: Btw, the first rule is to never, ever abandon your homeworld. :) Also, even if you had other ships, it&#39;s usually very bad to leave your homeworld without a 3-pip sized ship defending it at all times. While usually you can undo your move, there is a flaw in the program, so that if you blow up your homeworld like that, you can&#39;t take it back.   Want to start over and try again?\n\tmjbuyck: Just did with your other open challenge.\n\n\nHomeworlds Online (SDG# 4383)\nStarted: 2006.9.24, Ended: 2006.9.25\nParticipants: mjbuyck (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar:\nHomeworld B3 Y1 G3\n\tmjbuyck: Well that had to have been the shortest game of HW ever... let&#39;s try that again.\r\nI totally forgot that rule.\n\tzoltar: h b3 y1 g3\n\n2) mjbuyck: Homeworld B2 G3 Y3\n\tzoltar: It takes a long time to get the &#39;feel&#39; for this game (unlike say, Pikemen, where you can get most of the strategy after a game or two), but I think it is well worth it, once you figure out how to build and organize your pieces well.\n\n3) zoltar: Build G1 Zoltar\n\n4) mjbuyck: Build Y1 Mjbuyck\n\n5) zoltar: Build G1 Zoltar\n\n6) mjbuyck: Discover Y1 Mjbuyck G1 Winterfell\n\n7) zoltar: Discover G1 Zoltar B2 Blueridge\n\n8) mjbuyck: Build Y1 Mjbuyck\n\n9) zoltar: Build G2 Blueridge\n\n10) mjbuyck: Build Y2 Mjbuyck\n\n11) zoltar: Trade G2 Y2 Blueridge\n\n12) mjbuyck: Discover Y2 Mjbuyck B1 Riverrun\n\n13) zoltar: Build G2 Blueridge\n\n14) mjbuyck: Trade Y1 B1 Mjbuyck\n\n15) zoltar: Trade G2 B2 Blueridge\n\n16) mjbuyck: Move B1 Mjbuyck Winterfell\n\tzoltar: Btw, just want to make sure you see the &#39;trap&#39; here. If you build another blue ship right now in your homeworld, I can sacrifice my Y2 ship for two movements, and move my B2 ship into your homeworld : this would create a fourth blue so that I could blow up all the blue ships and your blue homeworld star.\n\n17) zoltar: Discover B2 Blueridge G3 Greenhills\n\tmjbuyck: I understand that, but how? I would have only had three blues in the system then.\n\tmjbuyck: Oh, nm.\n\n18) mjbuyck: Build Y1 Mjbuyck\n\n19) zoltar: Build G2 Blueridge\n\n20) mjbuyck: Trade Y2 G2 Riverrun\n\n21) zoltar: Trade G1 R1 Blueridge\n\n22) mjbuyck: Build Y2 Winterfell\n\n23) zoltar: Trade B2 Y2 Greenhills\n\n24) mjbuyck: Build Y3 Mjbuyck\n\n25) zoltar: Sacrifice Y2 Blueridge\nMove Y2 Greenhills Winterfell\nMove Y2 Winterfell Mjbuyck\nCatastrophe Mjbuyck Y\n\tzoltar: Ouch! Building a third Yellow when I could sack and blow them up was very bad, but having nothing but yellow ships in your system was fatal.  Sorry, I should have warned you and had you taken it back, but like the other game, it doesn&#39;t give me a choice now to take back my move once a homeworld has blown up. \n\tmjbuyck: ah... I thought you couldn&#39;t put the fourth yellow in my system. I thought that the moving piece had to be in the same system. That&#39;ll teach me to read the rules better.\n\tzoltar: It&#39;s any 4 of the same color, whether your ships, my ships, or a star, and my sacrifice allowed me to to so. Again, I was playing fast jumping from game to game, and I forgot I should tell you this and have you undo it, which I would have done if I had taken some time. Don&#39;t get discouraged, though: it&#39;s a great game and I lost a bunch of games before I ever won one and got the hang of it.\n\tmjbuyck: That&#39;s what I meant, I knew what would happen if you stuck in a fourth, but due to a rule misconception I figured that it wasn&#39;t possible that turn.\n\n\nHomeworlds Online (SDG# 4385)\nStarted: 2006.9.24, Ended: 2006.9.25\nParticipants: zoltar (S), mjbuyck (N)\nWinner: zoltar\n\n1) mjbuyck: Homeworld Y1 G2 B3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) mjbuyck: Build B1 Mjbuyck\n\n4) zoltar: Build G1 Zoltar\n\n5) mjbuyck: Discover B1 Mjbuyck G3 Lamp\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) mjbuyck: Build B1 Mjbuyck\n\n8) zoltar: Build Y1 Zoltar\n\n9) mjbuyck: Build B1 Mjbuyck\n\n10) zoltar: Build Y2 Zoltar\n\n11) mjbuyck: Discover B1 Mjbuyck B3 Baxter\n\n12) zoltar: Trade Y2 B2 Zoltar\n\n13) mjbuyck: Discover B1 Mjbuyck B3 Panda\n\n14) zoltar: Build B2 Zoltar\n\n15) mjbuyck: Trade B3 G3 Mjbuyck\n\n16) zoltar: Discover B2 Zoltar G1 Greendale\n\n17) mjbuyck: Build B3 Lamp\n\n18) zoltar: Build Y2 Zoltar\n\n19) mjbuyck: Build G1 Mjbuyck\n\n20) zoltar: Move Y1 Zoltar Greendale\n\n21) mjbuyck: Move G1 Mjbuyck Panda\n\n22) zoltar: Build Y2 Greendale\n\n23) mjbuyck: Trade B3 Y3 Lamp\n\n24) zoltar: Build B3 Greendale\n\n25) mjbuyck: Move B1 Lamp Mjbuyck\n\n26) zoltar: Trade Y1 R1 Greendale\n\n27) mjbuyck: Build Y1 Lamp\n\n28) zoltar: Move B3 Greendale Lamp\n\n29) mjbuyck: Build G1 Mjbuyck\n\tzoltar: The other major rule is that you need to build a red ship as soon as your opponent does. Note that if you had even a lowly R1 in any of your systems, you could now simply sacrifice the R1 and capture my B3. But I&#39;m now threatening to sacrifice my R1 and capture your Y3.\n\n30) zoltar: Sacrifice R1 Greendale\nAttack Y3 Lamp\n\n31) mjbuyck: Move Y1 Lamp Mjbuyck\n\tmjbuyck: aaah... I totally forgot about the sacrifice rule again. That takes some getting used to, the idea that you can sacrifice one ship to have another one do something on the other side of the solar system/galaxy.\n\n32) zoltar: Build G2 Zoltar\n\n33) mjbuyck: Trade G1 R1 Mjbuyck\n\n34) zoltar: Build Y2 Lamp\n\tzoltar: Yes, it takes several games to get a feel for sacrifices. Think of it as giving the power of the color of the sacrificed piece to any star in the system where you have a ship, so you can act as if that star were of the sacrificed color. The hardest part is the multiple sacrifice rule, such as sacking a Y3 to move a piece three times, all the way from my homeworld to yours.\n\tmjbuyck: which I do realize that I just avoided, thank you.\n\n35) mjbuyck: Move Y1 Mjbuyck Panda\n\tzoltar: Now normally here I would instinctively trade a ship somewhere for a red ship to balance yours. I instead decided to rapidly build yellow ships for several reasons: I have more large ships; you don&#39;t have large yellow ships to threaten to move pieces to attack me; the red star gives me defence of a red ship in my homeworld (red stars are an advantage in the middle game because of this but a disadvantage in the opening, where red isn&#39;t used); and I can secure a lasting advantage if I control most of the yellow technology.\n\tmjbuyck: And I can&#39;t store yellow because I you&#39;ll just blow me up, nice.\n\tmjbuyck: I&#39;ve probably hurt myself too much by trying to keep the b1 pieces away from you. :P\n\n36) zoltar: Sacrifice G2 Zoltar\nBuild Y3 Greendale\nBuild Y3 Lamp\n\n37) mjbuyck: Build R1 Mjbuyck\n\tzoltar: Note that I couldn&#39;t get away with this trick if you had a Y2 somewhere (you would sacrifice the Y2 to move your Y1 twice and cause a catastrophe in Lamp, destroying both my Y3 ships).\n\n38) zoltar: Move Y3 Greendale Panda\n\n39) mjbuyck: Move Y1 Panda Greendale\n\n40) zoltar: Trade Y2 R2 Lamp\n\tzoltar: Oops, I typed that in wrong.\n\tzoltar: Btw, a beginners mistake would have been to sacrifice my Y3 at greendale to move the Y3,Y3, and Y2 from Lamp to your homeworld and cause a catastrophe. While it would blow up one of your stars, it would liquidate my entire yellow fleet, and I would have only a slight advantage; whereas if I keep most of the yellows, I have a much larger advantage with all the added mobility and the threats of sacrificing.\n\n41) mjbuyck: Build Y2 Greendale\n\n42) zoltar: Sacrifice R2 Lamp\nAttack Y2 Greendale\nAttack Y1 Greendale\n\n43) mjbuyck: Move R1 Mjbuyck Baxter\n\n44) zoltar: Trade Y3 R3 Lamp\n\tmjbuyck: hmm... just kill me?\n\n45) mjbuyck: Trade B1 G1 Baxter\n\n46) zoltar: Build G2 Zoltar\n\tzoltar: my best option is to simply use my advantage to get the rest of the large pieces before you can, and then attack, as you can&#39;t stop my buildup.\n\n47) mjbuyck: Build G2 Baxter\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Panda\nBuild B1 Greendale\n\n49) mjbuyck: Build R1 Mjbuyck\n\tmjbuyck: night\n\n50) zoltar: Trade Y3 R3 Panda\n\n51) mjbuyck: Trade G3 Y3 Mjbuyck\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Panda\n\n53) mjbuyck: Move R1 Mjbuyck Baxter\n\n54) zoltar: Sacrifice R2 Panda\nAttack G1 Panda\nAttack B1 Panda\n\n55) mjbuyck: Build R2 Mjbuyck\n\tmjbuyck: not falling for that trap.\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G3 Panda\nBuild R2 Panda\nBuild R2 Lamp\n\n57) mjbuyck: Pass\n\n58) zoltar: Sacrifice Y3 Panda\nMove Y1 Zoltar Greendale\nMove Y1 Greendale Panda\nMove Y1 Greendale Panda\n\n59) mjbuyck: Move R1 Mjbuyck Baxter\n\n60) zoltar: Sacrifice Y3 Lamp\nMove Y1 Panda Mjbuyck\nMove Y1 Panda Mjbuyck\nMove R3 Panda Mjbuyck\nCatastrophe Mjbuyck Y\n\tmjbuyck: There&#39;s not too much more I can do to avoid this, is there?\n\n61) mjbuyck: Pass\n\n62) zoltar: Sacrifice R2 Lamp\nAttack R2 Mjbuyck\nAttack B1 Mjbuyck\n\n\tzoltar: gg -- ready to try again?\n\tmjbuyck: gg\n\nHomeworlds Online (SDG# 4393)\nStarted: 2006.9.25, Ended: 2006.10.18\nParticipants: Aaron (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\n2) Aaron: Homeworld B2 Y3 G3\n\tKeith: Hello Aaron.  Nice to have you accept my challenge.\n\tAaron: Nice to see somebody other than world champions offering one! =)  Best of luck!\n\n3) Keith: Build G1 Keith\n\n4) Aaron: Build G1 Aaron\n\n5) Keith: Trade G1 B1 Keith\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) Keith: Discover B1 Keith G3 Zesst\n\n8) Aaron: Discover R1 Aaron G1 Limes\n\n9) Keith: Build G1 Keith\n\tKeith: Well if you are going to pull an early red and move it out.\n\n10) Aaron: Build R1 Limes\n\n11) Keith: Trade G1 R1 Keith\n\n12) Aaron: Build G1 Aaron\n\n13) Keith: Build R2 Keith\n\n14) Aaron: Trade G1 Y1 Aaron\n\n15) Keith: Move R1 Keith Zesst\n\n16) Aaron: Move Y1 Aaron Limes\n\n17) Keith: Build R2 Zesst\n\n18) Aaron: Build G1 Aaron\n\n19) Keith: Build B1 Zesst\n\n20) Aaron: Discover G1 Aaron Y1 Bananas\n\n21) Keith: Sacrifice G3 Keith\nBuild R2 Zesst\nBuild R3 Keith\nBuild R3 Keith\n\n22) Aaron: Move R1 Limes Zesst\nCatastrophe Zesst R\n\n23) Keith: Trade R3 G3 Keith\n\n24) Aaron: Build R1 Limes\n\n25) Keith: Trade R2 Y2 Keith\n\n26) Aaron: Build G1 Bananas\n\n27) Keith: Build G2 Keith\n\n28) Aaron: Build G2 Aaron\n\n29) Keith: Sacrifice G3 Keith\nBuild G2 Keith\nBuild G3 Keith\nBuild B2 Zesst\n\n30) Aaron: Discover G1 Bananas Y3 Lemons\n\n31) Keith: Discover G2 Keith Y3 Mellow\n\n32) Aaron: Move G1 Bananas Lemons\n\n33) Keith: Move G2 Keith Lemons\n\n34) Aaron: Trade G2 B2 Aaron\n\n35) Keith: Sacrifice Y2 Keith\nMove B2 Zesst Limes\nDiscover B1 Zesst Y1 Brick\n\n36) Aaron: Build G2 Aaron\n\n37) Keith: Sacrifice R3 Keith\nAttack R1 Limes\nAttack R1 Limes\nAttack G1 Lemons\n\n38) Aaron: Trade B2 R2 Aaron\n\n39) Keith: Attack Y1 Limes\n\n40) Aaron: Move G2 Aaron Brick\n\tKeith: Hmmm... probably should not have done the undo an stuck with the setup that prevented you from getting to a b3.\n\n41) Keith: Discover G1 Lemons R1 Eye\n\tAaron: well, I just made a critical error in judgement so...shouldn&#39;t take you much longer at this point.\n\n42) Aaron: Build R2 Aaron\n\n43) Keith: Sacrifice R1 Limes\nAttack G1 Lemons\n\n44) Aaron: Move R2 Aaron Brick\n\n45) Keith: Move G1 Lemons Keith\n\n46) Aaron: Attack B1 Brick\n\n47) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y1 Limes\nBuild Y2 Limes\n\n48) Aaron: Move R2 Brick Zesst\n\tKeith: Well, whatever critical error you made and opportunity you gave me escaped me.  Now I have made my own minor error in giving you an easier in to blue.\n\n49) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B2 Limes\nBuild B3 Zesst\n\tAaron: I really hate that factory thing =)\n\n50) Aaron: Build B3 Brick\n\tKeith: I do not care for the factory &quot;feature&quot; of the game.  I find it is too effective to ignore from either side of the factory floor and attending to it constrains my choices starting witht he initial setup and continuing through the mid-game. \n\n51) Keith: Sacrifice R1 Limes\nAttack R2 Zesst\n\n52) Aaron: Move B3 Brick Lemons\n\n53) Keith: Move Y1 Limes Aaron\n\n54) Aaron: Attack Y1 Aaron\n\n55) Keith: Move Y1 Limes Aaron\n\n56) Aaron: Sacrifice Y1 Aaron\nPass\n\n57) Keith: Sacrifice G2 Lemons\nBuild Y1 Aaron\nBuild Y2 Aaron\nCatastrophe Aaron Yellow\n\n58) Aaron: Build G2 Aaron\n\n59) Keith: Move B2 Limes Aaron\n\n60) Aaron: Attack B2 Aaron\n\n61) Keith: Sacrifice Y2 Limes\nMove B2 Limes Aaron\nMove B1 Zesst Aaron\nCatastrophe Aaron Blue\n\n\tKeith: Thank you for the enjoyable struggle.\n\tAaron: Very well done, Keith!  Always a pleasure.\n\nHomeworlds Online (SDG# 4404)\nStarted: 2006.9.25, Ended: 2006.9.28\nParticipants: zoltar (S), maka (N)\nWinner: zoltar\n\n1) maka: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) maka: Build Y1 Maka\n\n4) zoltar: Build G1 Zoltar\n\n5) maka: Build Y1 Maka\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) maka: Trade Y1 B1 Maka\n\n8) zoltar: Build G1 Zoltar\n\n9) maka: Trade Y1 G1 Maka\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) maka: Build B2 Maka\n\n12) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n13) maka: Discover B2 Maka Y1 Sol\n\n14) zoltar: Build G1 Zoltar\n\n15) maka: Trade B2 G2 Sol\n\n16) zoltar: Build B2 Greenbelt\n\n17) maka: Move Y3 Maka Sol\n\n18) zoltar: Trade B2 Y2 Greenbelt\n\n19) maka: Trade B1 Y1 Maka\n\tzoltar: That is a very dangerous move, leaving your homeworld with out a 3-pip-size piece to defend it.\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) maka: Trade G1 R1 Maka\n\tmaka: I know :) \n\n22) zoltar: Build B1 Greenbelt\n\n23) maka: Move Y3 Sol Greenbelt\n\n24) zoltar: Discover Y2 Greenbelt G1 Runforyourlife\n\n25) maka: Move Y3 Greenbelt Runforyourlife\n\tzoltar: Moving your Y3 which should be defending your homeworld to chase little ships is madness!\n\tmaka: The thing is, I keep thinking up plans that then I realize I cannot actually play, but I guess I&#39;ve played too few games... :) \n\n26) zoltar: Move Y2 Runforyourlife Maka\n\n27) maka: Build R1 Maka\n\tzoltar: Yes, it takes several games to get the feel of what&#39;s going on, but you&#39;re never going to get off the ground if you move your defending 3-pip ship out of your homeworld! Now look what trouble I can make for you...\n\tzoltar: It&#39;s as if you marched your King out in the middle of the board the first three or four moves in chess.\n\tmaka: i see :)\n\n28) zoltar: Build R2 Zoltar\n\n29) maka: Move Y3 Runforyourlife Maka\n\tmaka: allright :)\r\n\n\n30) zoltar: Sacrifice R2 Zoltar\nAttack R1 Maka\nAttack R1 Maka\n\n31) maka: Trade Y3 R3 Maka\n\tzoltar: And now that I have three ships in your homeworld and you have no red ships, even your Y3 can&#39;t save you now...\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild R2 Maka\nBuild Y1 Maka\nBuild Y2 Maka\nCatastrophe Maka Y\nCatastrophe Maka R\n\tzoltar: And I get to finish off with a bang -- a sacrifice with a double catastrophe for checkmate! Hopefully, you&#39;ll never let your defending big ship wander out of your castle again after this...\r\n\r\nGG.  Play again?\n\n\nHomeworlds Online (SDG# 4388)\nStarted: 2006.9.28, Ended: 2006.9.29\nParticipants: zoltar (S), Manny (N)\nWinner: zoltar\n\n1) Manny: Homeworld B3 Y1 G3\n\n2) zoltar: Homeworld R2 B3 G3\n\n3) Manny: Build G1 Manny\n\n4) zoltar: Build G1 Zoltar\n\n5) Manny: Discover G1 Manny B2 Flux\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Manny: Build G1 Manny\n\n8) zoltar: Build Y1 Zoltar\n\n9) Manny: Trade G3 Y3 Manny\n\n10) zoltar: Build Y2 Zoltar\n\n11) Manny: Build Y2 Manny\n\n12) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\n13) Manny: Move Y2 Manny Flux\n\n14) zoltar: Build G2 Zoltar\n\n15) Manny: Build G2 Flux\n\n16) zoltar: Discover Y1 Zoltar B1 Blueridge\n\n17) Manny: Build G2 Manny\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\n19) Manny: Trade G1 R1 Manny\n\n20) zoltar: Trade Y1 R1 Blueridge\n\n21) Manny: Discover G2 Flux Y1 Amber\n\n22) zoltar: Discover Y1 Greenbelt B2 Blueberry\n\n23) Manny: Build R1 Manny\n\n24) zoltar: Move Y3 Blueridge Flux\n\n\nHomeworlds Online (SDG# 4448)\nVariants: &quot;Unrated&quot;\nStarted: 2006.9.30, Ended: 2006.10.5\nParticipants: Personman (S), Manny (N)\nWinner: Manny\n\n1) Manny: Homeworld Y1 B2 G3\n\n2) Personman: Homeworld Y2 B3 G3\n\n3) Manny: Build G1 Manny\n\n4) Personman: Build G1 Personman\n\n5) Manny: Trade G1 Y1 Manny\n\n6) Personman: Trade G1 B1 Personman\n\n7) Manny: Build G1 Manny\n\n8) Personman: Build G1 Personman\n\n9) Manny: Discover G1 Manny B3 Flux\n\n10) Personman: Discover G1 Personman B1 Fluxx\n\tManny: Sorry about that, I missed the email. Didn&#39;t realise it was my turn.\n\tPersonman: No worries! Though if you start playing lots of games here, I *highly* recommend turning email notifications off and just checking your SDG homepage regularly. With one or two slow games I&#39;m sure it&#39;s nice, but with ten it fills up your inbox rather quickly :)\n\n11) Manny: Build Y1 Manny\n\n12) Personman: Build B1 Personman\n\n13) Manny: Move Y1 Manny Flux\n\n14) Personman: Move B1 Personman Fluxx\n\n15) Manny: Sacrifice G3 Manny\nBuild Y2 Flux\nBuild Y2 Flux\nBuild Y3 Manny\n\n16) Personman: Build B2 Fluxx\n\n17) Manny: Trade Y3 G3 Manny\n\n18) Personman: Build B2 Personman\n\n19) Manny: Discover Y1 Flux G1 Growth\n\n20) Personman: Trade B1 R1 Personman\n\n21) Manny: Sacrifice G3 Manny\nBuild Y3 Manny\nBuild Y3 Growth\nBuild Y3 Growth\n\n22) Personman: Move B2 Personman Growth\n\n23) Manny: Discover Y1 Growth B3 Whirlpool\n\n24) Personman: Build B1 Growth\n\n25) Manny: Trade Y3 R3 Manny\n\n26) Personman: Trade G3 Y3 Personman\n\n27) Manny: Sacrifice Y2 Flux\nMove Y3 Growth Personman\nMove Y3 Growth Personman\nCatastrophe Personman Y\n\n28) Personman: Build G2 Fluxx\n\n29) Manny: Move R3 Manny Personman\n\n30) Personman: Sacrifice G2 Fluxx\nBuild R1 Personman\nBuild G2 Fluxx\n\n31) Manny: Sacrifice G1 Flux\nBuild R1 Personman\nCatastrophe Personman R\n\n\tManny: Cheers. Thanks for the game.\n\tPersonman: gg.\n\nHomeworlds Online (SDG# 4386)\nStarted: 2006.10.2, Ended: 2006.10.5\nParticipants: zoltar (S), Papipo (N)\nWinner: zoltar\n\n1) Papipo: Homeworld G2 B1 Y3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) Papipo: Build Y1 Papipo\n\n4) zoltar: Build G1 Zoltar\n\n5) Papipo: Discover Y1 Papipo B3 Bluemoon\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Papipo: Trade Y1 G1 Bluemoon\n\n8) zoltar: Build G1 Zoltar\n\tPapipo: This is my first game :S\n\tzoltar: Good luck! It&#39;s a very hard game to learn, I found out. I learned in June and it took me several games to understand all the tactics. The sacrifices are the most tricky and the hardest to get used to and anticipate. However, after a few games, this has become my favorite of all the games here, and I&#39;ve gotten pretty good at it.\n\n9) Papipo: Build Y1 Papipo\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) Papipo: Build G1 Bluemoon\n\n12) zoltar: Build R1 Zoltar\n\n13) Papipo: Trade Y3 G3 Papipo\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) Papipo: Trade G1 R1 Bluemoon\n\n16) zoltar: Build B1 Zoltar\n\n17) Papipo: Trade G3 B3 Papipo\n\n18) zoltar: Discover B1 Zoltar G1 Greenbelt\n\tPapipo: I think that you have an advantage atm\n\tzoltar: Not quite yet. The trick here is to try to make your opponent take the last of any size of one color, as there is always an advantage to having larger ships.  Here I haven&#39;t yet found a way to get an advantage and secure larger ships. \n\n19) Papipo: Build B2 Papipo\n\n20) zoltar: Build B2 Greenbelt\n\n21) Papipo: Trade B2 Y2 Papipo\n\n22) zoltar: Trade B2 Y2 Greenbelt\n\n23) Papipo: Move Y1 Papipo Bluemoon\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B2 Greenbelt\nBuild B3 Zoltar\n\n25) Papipo: Trade B3 G3 Papipo\n\tzoltar: Uh oh! Since it&#39;s your first game, I want to tell you to undo that move, as it&#39;s a classic beginner&#39;s mistake and would be just about the end of the game:\r\n\r\nI can sacrifice my newly made Y2 in Greenbelt for 2 movements; I use the 2 movements to move my B1 from Greenbelt to Bluemoon to Papino, and I destroy your blue star and your 2 blue ships, which include your only large ship, leaving your homeworld half-destroyed and without a large defending ship.  At that point your game is pretty much lost. \r\n\r\nThis is where things are tricky. I now have a slight advantage precisely because you can&#39;t build a blue ship here. So you need to either move a yellow ship out, or trade one of your ships to a different color. But always check before building a third of any color to see if your opponent can sacrifice any yellow pieces (Y3&#39;s are the most dangerous) to create a catastrophe.\n\tPapipo: Ahahah, i see, thanks\n\n26) zoltar: Trade B3 G3 Zoltar\n\tzoltar: Because of that threat, I now can do a clever sacrifice to grab more of the blue pieces.\n\n27) Papipo: Sacrifice G3 Papipo\nBuild Y1 Papipo\nBuild Y2 Bluemoon\nBuild Y3 Papipo\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild B3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\n\n\nHomeworlds Online (SDG# 4470)\nVariants: &quot;Unrated&quot;\nStarted: 2006.10.2, Ended: 2006.10.5\nParticipants: frixuelin (S), Papipo (N)\nWinner: Papipo\n\n1) Papipo: Homeworld G1 B2 Y3\n\n2) frixuelin: Homeworld B1 G2 Y3\n\n3) Papipo: Build Y1 Papipo\n\n4) frixuelin: Build Y1 Frixuelin\n\n5) Papipo: Trade Y3 G3 Papipo\n\n\nHomeworlds Online (SDG# 4472)\nStarted: 2006.10.2, Ended: 2006.10.9\nParticipants: Papipo (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y3 B1 G3\n\n2) Papipo: Homeworld G2 Y1 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) Papipo: Build B1 Papipo\n\n5) zoltar: Trade G1 B1 Zoltar\n\n6) Papipo: Build B2 Papipo\n\n7) zoltar: Build B2 Zoltar\n\n8) Papipo: Trade B1 Y1 Papipo\n\n9) zoltar: Trade B2 Y2 Zoltar\n\n10) Papipo: Discover Y1 Papipo G3 Gaia\n\n11) zoltar: Discover Y2 Zoltar G2 Greenhills\n\n12) Papipo: Trade B2 R2 Papipo\n\n13) zoltar: Build G1 Zoltar\n\n14) Papipo: Move R2 Papipo Gaia\n\n15) zoltar: Trade G1 R1 Zoltar\n\n16) Papipo: Build R1 Gaia\n\n17) zoltar: Build G1 Zoltar\n\n18) Papipo: Move R2 Gaia Greenhills\n\n19) zoltar: Sacrifice R1 Zoltar\nAttack R2 Greenhills\n\tzoltar: This is another case where you should undo this move. Note that I can simply sacrifice my R1 in the zoltar homeworld and by doing so, capture your R2 in greenhills, which essentially trades my R1 for an R1 and destroys your R2, making the move doubly bad for you. Remember that a sacrificed piece gives you that color&#39;s power in any star system. It&#39;s as if by sacrificing my R1, the star in greenhills becomes a red star for that turn.\n\tzoltar: I meant to say &quot;trades my R1 for an R2&quot;. Note that a single R1 anywhere protects all my ships everywhere from an attack of ships the same size. That&#39;s why it&#39;s always important to have one red ship once your opponent gets red ships, but having more than one isn&#39;t as important for defence.\n\n\tPapipo: I must play more times :]\n\nHomeworlds Online (SDG# 4481)\nStarted: 2006.10.3, Ended: 2006.10.29\nParticipants: unic (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) unic: Homeworld B3 R2 G3\n\n3) Lexicon: Build Y1 Lexicon\n\n4) unic: Build G1 Unic\n\n5) Lexicon: Build Y1 Lexicon\n\n6) unic: Trade G1 Y1 Unic\n\n7) Lexicon: Trade Y1 G1 Lexicon\n\n8) unic: Build Y1 Unic\n\n9) Lexicon: Build Y2 Lexicon\n\n10) unic: Discover Y1 Unic G1 Susan\n\n11) Lexicon: Build G2 Lexicon\n\n12) unic: Build Y2 Susan\n\n13) Lexicon: Sacrifice Y2 Lexicon\nDiscover G2 Lexicon Y3 Titan\nDiscover G2 Titan B1 Titus\n\n14) unic: Build G2 Unic\n\n15) Lexicon: Build G2 Titus\n\n16) unic: Trade G2 R2 Unic\n\n17) Lexicon: Trade G2 R2 Titus\n\n18) unic: Build G2 Unic\n\n19) Lexicon: Build G2 Titus\n\n20) unic: Discover Y2 Susan G3 Laura\n\n21) Lexicon: Build G3 Lexicon\n\n22) unic: Sacrifice G3 Unic\nBuild Y2 Laura\nBuild Y2 Susan\nBuild Y3 Unic\n\n23) Lexicon: Sacrifice G1 Lexicon\nBuild R1 Titus\n\n24) unic: Discover R2 Unic B1 Paula\n\n25) Lexicon: Move Y1 Lexicon Laura\n\n26) unic: Move Y2 Laura Lexicon\n\n27) Lexicon: Discover Y3 Lexicon R3 Gladiator\n\n28) unic: Build Y3 Laura\n\tunic: build y3 Laura\n\tunic: Oops - typed that into the wrong text box!\n\n29) Lexicon: Move Y3 Gladiator Titus\n\n30) unic: Build G1 Unic\n\n31) Lexicon: Sacrifice R1 Titus\nAttack Y2 Lexicon\n\n32) unic: Move G2 Unic Susan\n\n33) Lexicon: Move Y2 Lexicon Laura\nCatastrophe Laura Y\n\n34) unic: Discover Y1 Susan Y3 Desdemona\n\n35) Lexicon: Discover G2 Titus B3 Midas\n\n36) unic: Build G3 Unic\n\n37) Lexicon: Build G3 Titus\n\n38) unic: Move G1 Unic Paula\n\n39) Lexicon: Sacrifice G3 Titus\nBuild G3 Titus\nBuild R1 Titus\nBuild R1 Titus\n\n40) unic: Sacrifice Y2 Susan\nMove R2 Paula Desdemona\nMove R2 Desdemona Titus\nCatastrophe Titus Red\n\n41) Lexicon: Build Y1 Titus\n\n42) unic: Trade Y1 B1 Unic\n\n43) Lexicon: Move Y1 Titus Midas\n\n44) unic: Sacrifice G2 Susan\nBuild G1 Paula\nBuild G2 Unic\n\n45) Lexicon: Sacrifice G3 Titus\nBuild G3 Titus\nBuild Y1 Titus\nBuild Y2 Midas\n\n46) unic: Trade G2 R2 Unic\n\n47) Lexicon: Move Y2 Midas Lexicon\n\n48) unic: Move R2 Unic Titus\n\n49) Lexicon: Sacrifice G3 Titus\nBuild G2 Midas\nBuild G3 Titus\nBuild Y2 Lexicon\n\n50) unic: Move G3 Unic Titus\n\n51) Lexicon: Sacrifice Y2 Lexicon\nMove Y1 Titus Unic\nMove Y3 Titus Unic\n\n52) unic: Attack G3 Titus\n\n53) Lexicon: Attack B1 Unic\n\n54) unic: Sacrifice R2 Titus\nAttack Y3 Unic\nAttack B1 Unic\n\n55) Lexicon: Sacrifice G2 Midas\nBuild Y2 Unic\nBuild G2 Titus\nCatastrophe Unic Y\nCatastrophe Titus G\n\n56) unic: Trade G1 Y1 Paula\n\tLexicon: BOOM!\r\nBOOM! \r\nYou snuck past me this time, but at least I got to make a double supernova! :)\n\n57) Lexicon: Sacrifice Y2 Lexicon\nMove G2 Midas Paula\nMove G2 Paula Unic\n\n\nHomeworlds Online (SDG# 4479)\nStarted: 2006.10.3, Ended: 2006.12.28\nParticipants: Laurie_Menke (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\tjeep: Wow, how did 3 days go by?  Sheesh.  I thought this had jsut started!!\n\tLaurie_Menke: Yeah, time does fly.  Good luck!\n\n3) jeep: Build G1 Jeep\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) jeep: Build Y2 Jeep\n\n8) Laurie_Menke: Build Y2 Laurie_menke\n\n9) jeep: Trade Y2 R2 Jeep\n\n10) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n11) jeep: Build Y2 Jeep\n\n12) Laurie_Menke: Build Y2 Laurie_menke\n\n13) jeep: Discover Y1 Jeep G3 Thumb\n\tLaurie_Menke: Hey, jeep....I just read that you were injured.  Are you OK?\n\tjeep: I&#39;m ok now.  Took a while for me to be able to sit at a computer for more than a few minutes at a time, though.\n\n14) Laurie_Menke: Discover Y2 Laurie_menke G2 Acres\n\tLaurie_Menke: Sorry to hear that.  But glad you&#39;re doing better.  :o)\n\n15) jeep: Sacrifice G3 Jeep\nBuild Y2 Thumb\nBuild Y3 Thumb\nBuild Y3 Jeep\n\n16) Laurie_Menke: Move Y2 Acres Thumb\nCatastrophe Thumb Yellow\n\n17) jeep: Trade Y3 G3 Jeep\n\n18) Laurie_Menke: Discover Y1 Laurie_menke Y2 Luella\n\n19) jeep: Build G1 Jeep\n\n20) Laurie_Menke: Build G1 Laurie_menke\n\n21) jeep: Discover G1 Jeep Y3 Submarine\n\n22) Laurie_Menke: Discover G1 Laurie_menke Y2 Sharon\n\n23) jeep: Build G1 Jeep\n\n24) Laurie_Menke: Build G2 Laurie_menke\n\n25) jeep: Discover Y2 Jeep G3 Fertilizer\n\n26) Laurie_Menke: Build G2 Sharon\n\n27) jeep: Build G2 Jeep\n\n28) Laurie_Menke: Discover G1 Sharon Y3 Roses\n\n29) jeep: Build R1 Jeep\n\n30) Laurie_Menke: Move G1 Roses Jeep\nCatastrophe Jeep Green\n\n31) jeep: Build Y1 Fertilizer\n\tjeep: Gah!  I didn&#39;t even notice that was connected.\n\tLaurie_Menke: ;o)\n\n32) Laurie_Menke: Discover G2 Sharon B3 Berries\n\n33) jeep: Build G1 Submarine\n\tLaurie_Menke: Man, I just thought of a better name for that star.  I should have called it Berry Hill.  Then I could say I found my thrill on Blue Berry Hill.  ;o)\n\n34) Laurie_Menke: Move G3 Laurie_menke Luella\n\n35) jeep: Discover G1 Submarine Y2 Sigh\n\n36) Laurie_Menke: Move G3 Luella Berries\n\n37) jeep: Build Y3 Fertilizer\n\n38) Laurie_Menke: Move Y1 Luella Fertilizer\nCatastrophe Fertilizer Yellow\n\n39) jeep: Trade R1 G1 Jeep\n\n40) Laurie_Menke: Trade G3 R3 Berries\n\n41) jeep: Build G2 Sigh\n\n42) Laurie_Menke: Trade G2 Y2 Berries\n\n43) jeep: Build G2 Jeep\n\n44) Laurie_Menke: Move R3 Berries Jeep\n\n45) jeep: Sacrifice G2 Sigh\nBuild R1 Jeep\nBuild R1 Jeep\nCatastrophe Jeep Red\n\n46) Laurie_Menke: Build G2 Laurie_menke\n\n47) jeep: Sacrifice G2 Jeep\nBuild G2 Sigh\nBuild G3 Jeep\n\n48) Laurie_Menke: Discover G2 Laurie_menke Y2 Roses\n\n49) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Submarine\nBuild G3 Sigh\n\n50) Laurie_Menke: Move G2 Laurie_menke Sigh\nCatastrophe Sigh Green\n\n51) jeep: Discover G3 Submarine Y2 Salvation\n\n52) Laurie_Menke: Build G1 Roses\n\n53) jeep: Trade G3 R3 Jeep\n\tLaurie_Menke: Merry Christmas, Jeep!  I&#39;m visiting family as well.  Hope you&#39;re having a great time!  :o)\n\n54) Laurie_Menke: Move G2 Roses Laurie_menke\n\tjeep: It&#39;s fun.  It&#39;s midnight in 6 minutes (here, anyway) so Merry Xmas!  Tomorrow is going to be insane.  My Mom went overboard on gifts for my daughter (4 years old).\n\tLaurie_Menke: Another 53 minutes to midnight here (California).  Enjoy the chaos with your daughter tomorrow (later today!).  :o)\n\n55) jeep: Move G3 Salvation Laurie_menke\n\n56) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild R1 Laurie_menke\nBuild G2 Roses\n\tjeep: Today was fun.  Willow was great.  She got a lot of stuff and was really appreciative.  She played hard today and had great manners.  I&#39;m very proud of her.  I&#39;ll be back on the west coast in a week.\n\tLaurie_Menke: Glad all went well.  She sounds like a keeper.  :o)  Our Christmas was good as well.  My niece and nephew are older now...14 &amp; 16.  They got a computer for Christmas...very exciting.  :o)  We had 10 for dinner.  A nice time was had by all.\n\n57) jeep: Sacrifice R3 Jeep\nAttack R2S Laurie_menke\nAttack R1S Laurie_menke\nPass\n\n\tjeep: Thanks for the game!  I thought I was a goner when I had no larges and you had one.\n\tLaurie_Menke: Nawww...you&#39;re definitely the better player.  It was just a matter of time.  ;o)  Thanks for the fun, and congrats!\n\nHomeworlds Online (SDG# 4509)\nStarted: 2006.10.4, Ended: 2006.10.16\nParticipants: zoltar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B1 Y3 G3\n\tJesse: Ah, Homeworlds.  It&#39;s been a while.  I see you&#39;ve done rather well, in the meantime.\n\n3) Jesse: Build G1 Jesse\n\tzoltar: Well, Andy Looney and TwoShort can still beat me almost every game, but I&#39;ve been playing mostly beginners these days.\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) zoltar: Build G1 Zoltar\n\n9) Jesse: Trade G1 B1 Jesse\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Jesse: Discover B1 Jesse G3 Gout\n\n12) zoltar: Build B2 Zoltar\n\n13) Jesse: Build B2 Gout\n\n14) zoltar: Trade B2 R2 Zoltar\n\n15) Jesse: Trade B2 R2 Gout\n\n16) zoltar: Build B2 Zoltar\n\n17) Jesse: Build B2 Gout\n\n18) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n19) Jesse: Trade B2 Y2 Gout\n\n20) zoltar: Discover B2 Zoltar Y2 Yellowstone\n\n21) Jesse: Build Y1 Gout\n\n\tJesse: Not going to fight for it, huh?\n\tzoltar: I have a one in ten chance with you even without giving you the monster handicap with &#39;the banker&#39; which is unbeatable (by me at least).\n\nHomeworlds Online (SDG# 4534)\nStarted: 2006.10.5, Ended: 2006.10.10\nParticipants: zoltar (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\tzoltar: Prepare to meat your DOOM, lowly Earthling!\n\tKeith: I know, I know.  It was either you or antihero and he had a day to challenge me before you signed up and did not.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) Keith: Build G1 Keith\n\n4) zoltar: Build G1 Zoltar\n\n5) Keith: Discover G1 Keith Y3 Hydra\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Keith: Build G1 Keith\n\n8) zoltar: Build Y1 Zoltar\n\n9) Keith: Trade G1 B1 Keith\n\n10) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n11) Keith: Build B2 Keith\n\n12) zoltar: Build Y1 Greenbelt\n\n13) Keith: Move B1 Keith Hydra\n\n14) zoltar: Discover Y1 Greenbelt B3 Blueridge\n\n15) Keith: Build G1 Keith\n\n16) zoltar: Build Y2 Greenbelt\n\n17) Keith: Discover B2 Keith Y3 Drift\n\n18) zoltar: Build G1 Zoltar\n\n19) Keith: Trade G1 R1 Keith\n\n20) zoltar: Trade G1 R1 Zoltar\n\n21) Keith: Build B2 Hydra\n\n22) zoltar: Build Y2 Zoltar\n\n23) Keith: Sacrifice G3 Keith\nBuild B2 Drift\nBuild B3 Drift\nBuild B3 Hydra\n\n24) zoltar: Build Y3 Greenbelt\n\n25) Keith: Move B3 Drift Keith\n\n26) zoltar: Build R1 Zoltar\n\n27) Keith: Sacrifice B3 Hydra\nTrade B2 R2 Hydra\nTrade B2 R2 Drift\nTrade B3 G3 Keith\n\n28) zoltar: Move R1 Zoltar Greenbelt\n\n29) Keith: Sacrifice G3 Keith\nBuild R2 Drift\nBuild R3 Hydra\nBuild R3 Keith\n\tKeith: I was playing a dangerous game by not trading into a yellow ship.  I miscalculated that I could force one out of greenbelt.\n\n30) zoltar: Build G1 Zoltar\n\n31) Keith: Build B2 Hydra\n\tzoltar: You&#39;ll probably win this, as you can now easily get all the blue ships and at least one of the big greens. Since I have a lock on the yellow&#39;s, I won&#39;t resign, and I&#39;ll see if I can hold out. I&#39;ve lost just about every homeworlds game these days. My beginner&#39;s winning streak seems to be over!\n\tKeith: Actually I think I have figured out a way to get a yellow but it will take 5 turns and cost me 4 reds.\r\n\r\nI did have most of the blues at one time.  Was it a mistake to trade them in?\n\tzoltar: No, that&#39;s what they&#39;re good for: trading them for big ships in other colors. Now I have to figure out a way to do something before you get yellow ships and overrun my fleet.\n\tKeith: I found a flaw in my plan for a yellow in five turns at the cost of four reds.  I am going to have to proceed some other way that is not clear to me yet.  \n\n32) zoltar: Move G1 Zoltar Greenbelt\n\n33) Keith: Sacrifice B2 Hydra\nTrade R2 G2 Hydra\nTrade R2 G2 Drift\n\n34) zoltar: Build R2 Zoltar\n\n35) Keith: Move G2 Drift Greenbelt\n\tKeith: Time to find out what I am overlooking.\n\n36) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Greenbelt Blueridge\nDiscover R1 Zoltar B2 Desperation\n\n37) Keith: Sacrifice G2 Hydra\nBuild B2 Hydra\nBuild G1 Greenbelt\nCatastrophe Greenbelt Green\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Blueridge\n\n39) Keith: Trade R3 B3 Keith\n\tKeith: I don&#39;t know.  The last time I made a move after my bedtime against you and left one color of ships in my homeworld was a disaster.\n\tzoltar: And the Yellow Fleet is still mine! Yay!\n\tzoltar: Yep, with one color in your homeworld and my retaining the yellow fleet, you&#39;d better watch out!\n\tKeith: Darn you clever Zoltar!  I did not go for the y2 because I thought bumbing the number of yellows to three in the stash would keep one in reach while you took a big ship hit.\n\tKeith: And it is not like all the ships in blueridge were going to slip away.\n\tzoltar: Zoltar will defeat you yet, primitive carbon waterbag unit! Without Yellow warp-drive technology, you will never reach the Zoltarian Homeworld! Bwahahaha!\n\n40) zoltar: Move Y3 Blueridge Desperation\n\n41) Keith: Sacrifice G1 Hydra\nBuild B3 Drift\n\tKeith: Ahhh.... Zoltar speech.  You finally feel like your are winning.\n\n42) zoltar: Trade R2 G2 Zoltar\n\tKeith: No green anywhere on the board.\n\n43) Keith: Discover B2 Drift G2 Ghaaa\n\tzoltar: At least Zoltar got to threaten mate-in-one last move!\n\tzoltar: Zee only gude hyu-maahn bean ease a dead hyu-maahn bean!\n\tKeith: Did not and do not see that mate-in-one or how discovering a b3 with an r2 diffused one.\n\tKeith: Wait, that was the other plan.  How did sacrificing a g1 to build an r3 avoid a mate-in-one?\n\n44) zoltar: Move R1 Desperation Zoltar\n\n45) Keith: Move R2 Drift Ghaaa\n\n46) zoltar: Build R2 Zoltar\n\tzoltar: Trading the R3 for B3 avoided the mate-in-one.\n\n47) Keith: Sacrifice B3 Drift\nTrade R3 Y3 Hydra\nPass\nPass\n\n\tKeith: Yellow, at least for half a turn.\n\tzoltar: Wow, that was a great move! gg.\n\tKeith: Thank you.  I am exhausted.\n\nHomeworlds Online (SDG# 4510)\nStarted: 2006.10.8, Ended: 2006.12.8\nParticipants: zoltar (S), Kermit (W), mjbuyck (N), maka (E)\nWinner: maka\n\n1) mjbuyck: Homeworld G1 B3 Y3\n\n2) maka: Homeworld G3 B2 Y3\n\n3) zoltar: Homeworld R1 B2 G3\n\n4) Kermit: Homeworld B2 Y3 G3\n\n5) mjbuyck: Build Y1 Mjbuyck\n\n6) maka: Build Y1 Maka\n\n7) zoltar: Build G1 Zoltar\n\n8) Kermit: Build G1 Kermit\n\tmaka: I&#39;m going on holidays until Sunday...\n\n9) mjbuyck: Trade Y1 G1 Mjbuyck\n\n10) maka: Trade Y1 R1 Maka\n\n11) zoltar: Trade G1 Y1 Zoltar\n\n12) Kermit: Trade G1 B1 Kermit\n\n13) mjbuyck: Build G1 Mjbuyck\n\n14) maka: Build Y1 Maka\n\n15) zoltar: Build G1 Zoltar\n\n16) Kermit: Build B1 Kermit\n\n17) mjbuyck: Trade G1 B1 Mjbuyck\n\n18) maka: Trade Y1 B1 Maka\n\n19) zoltar: Trade G1 B1 Zoltar\n\n20) Kermit: Trade B1 Y1 Kermit\n\n21) mjbuyck: Build Y1 Mjbuyck\n\n22) maka: Build Y1 Maka\n\n23) zoltar: Build G1 Zoltar\n\n24) maka: Discover Y1 Maka G1 Kiko\n\n\tmjbuyck: I suppose not.\n\tmaka: isn&#39;t there a way to ending the game without resigning? \n\tzoltar: Hey guys, wait for someone&#39;s time to run out, and then the other person can end the game and choose to terminate it without rating, but I actually don&#39;t think 4-player games get rated anyway.  I resigned because we were down to 3 and the game had just started.  We can start another if you&#39;d like.\n\tmaka: ok. done\n\tKermit: multiplayer games are not rated, unfortunately, as I win more of those than two player. sorry for my delay see the general forum.\n\nHomeworlds Online (SDG# 4589)\nStarted: 2006.10.8, Ended: 2007.3.23\nParticipants: noel45424 (S), Personman (N)\nWinner: Personman\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) noel45424: Homeworld G3 B1 Y3\n\n3) Personman: Build G1 Personman\n\n4) noel45424: Build Y1 Noel45424\n\n5) Personman: Trade G1 Y1 Personman\n\n6) noel45424: Discover Y1 Noel45424 G2 P4x-639\n\n7) Personman: Build G1 Personman\n\n8) noel45424: Build Y2 Noel45424\n\n9) Personman: Move Y1 Personman P4x-639\n\n10) noel45424: Trade Y3 R3 Noel45424\n\n11) Personman: Trade G1 R1 Personman\n\n12) noel45424: Build Y2 Noel45424\n\n13) Personman: Build G1 Personman\n\n14) noel45424: Trade Y2 G2 Noel45424\n\n15) Personman: Discover Y1 P4x-639 G1 G1a\n\n16) noel45424: Trade G2 B2 Noel45424\n\n17) Personman: Build Y2 G1a\n\tnoel45424: heh, I&#39;m having fun.  trying to figure out why you do what you do, and even more, trying to figure out why the heck I do what I do!  --paul\n\n18) noel45424: Build B1 Noel45424\n\n19) Personman: Move R1 Personman P4x-639\n\n20) noel45424: Trade B2 R2 Noel45424\n\n21) Personman: Attack Y1 P4x-639\n\n22) noel45424: Move R2 Noel45424 P4x-639\n\n23) Personman: Build R1 P4x-639\n\tnoel45424: heya, I&#39;m going camping ... will be back and will move Monday evening.\n\n24) noel45424: Attack R1N P4x-639\n\n25) Personman: Build R1 P4x-639\nCatastrophe P4x-639 R\n\n26) noel45424: Build Y2 Noel45424\n\n27) Personman: Trade G1 R1 Personman\n\n28) noel45424: Move Y2 Noel45424 P4x-639\n\n29) Personman: Build Y3 P4x-639\n\n30) noel45424: Build Y3 P4x-639\nCatastrophe P4x-639 Y\n\n31) Personman: Build R1 Personman\n\n32) noel45424: Build R1 Noel45424\n\n33) Personman: Build G1 Personman\n\n34) noel45424: Trade R1 G1 Noel45424\n\n35) Personman: Discover G1 Personman Y2 Y2a\n\n36) noel45424: Build R1 Noel45424\n\n37) Personman: Build G2 Y2a\n\n38) noel45424: Move R1 Noel45424 Y2a\n\n39) Personman: Move G1 Y2a Noel45424\n\n40) noel45424: Trade G1 Y1 Noel45424\n\n41) Personman: Build G1 Noel45424\n\n42) noel45424: Build Y3 Noel45424\n\n43) Personman: Sacrifice Y2 G1a\nMove Y1 G1a Y2a\nMove Y1 Y2a Noel45424\nCatastrophe Noel45424 Y\n\n44) noel45424: Build R2 Noel45424\n\n45) Personman: Build G1 Noel45424\nCatastrophe Noel45424 G\n\n46) noel45424: Trade R3 G3 Noel45424\n\n47) Personman: Sacrifice R1 Personman\nAttack R1 Y2a\n\n48) noel45424: Build G1 Noel45424\n\n49) Personman: Build G1 Personman\n\n50) noel45424: Build B1 Noel45424\n\n51) Personman: Build G1 Y2a\n\n52) noel45424: Trade B1 Y1 Noel45424\n\n53) Personman: Move G1 Y2a Noel45424\n\n54) noel45424: Trade G1 Y1 Noel45424\n\n55) Personman: Sacrifice G2 Y2a\nBuild G1 Noel45424\nBuild G2 Noel45424\nCatastrophe Noel45424 G\n\n56) noel45424: Trade Y1 G1 Noel45424\n\n57) Personman: Sacrifice G1 Personman\nBuild R1 Y2a\n\n58) noel45424: Build G1 Noel45424\n\n59) Personman: Build R2 Personman\n\n60) noel45424: Build Y1 Noel45424\n\n61) Personman: Trade R2 Y2 Personman\n\n62) noel45424: Build R2 Noel45424\n\n63) Personman: Build Y2 Personman\n\n64) noel45424: Move R2 Noel45424 Y2a\n\tnoel45424: sorry for the delay; I realize if this were a... typical game between knowledgeable players, I probably would have resigned after losing my yellow homestar ... but I&#39;m still learning a lot, and enjoying.  many thanks.\n\tPersonman: oh, no worries! I&#39;m all for playing things out. And I&#39;ve lost games where I&#39;d destroyed one homestar, so don&#39;t be so sure...\n\n65) Personman: Move G3 Personman Y2a\n\tnoel45424: ohyeah, I haven&#39;t given up hope (but I&#39;m scratching my head a bit).\n\n66) noel45424: Move R2 Y2a Personman\n\n67) Personman: Attack R2 Personman\n\n68) noel45424: Move Y1 Noel45424 Y2a\n\n69) Personman: Attack Y1 Y2a\n\n70) noel45424: Build Y3 Noel45424\n\n71) Personman: Discover Y2 Personman G2 G2a\n\n72) noel45424: Trade Y3 G3 Noel45424\n\n73) Personman: Build Y3 G2a\n\n74) noel45424: Sacrifice G1 Noel45424\nBuild Y3 Noel45424\n\n75) Personman: Move Y3 G2a Noel45424\n\n76) noel45424: Attack Y3 Noel45424\n\n77) Personman: Move Y1 Y2a Noel45424\nCatastrophe Noel45424 Y\n\n78) noel45424: Trade B1 Y1 Noel45424\n\n79) Personman: Build G1 Y2a\n\n80) noel45424: Discover G1 Noel45424 Y3 Peace\n\n81) Personman: Move G1 Y2a Personman\n\n82) noel45424: Build G1 Noel45424\n\n83) Personman: Trade G1 B1 Personman\n\n84) noel45424: Build R2 Noel45424\n\n85) Personman: Trade R1 G1 Personman\n\n86) noel45424: Move R2 Noel45424 G2a\n\n87) Personman: Sacrifice R1 Y2a\nAttack R2 G2a\n\n88) noel45424: Move G1 Noel45424 Peace\n\tnoel45424: Take all the time you need; rest &amp; get well!  ---paul\n\n89) Personman: Move R2 G2a Peace\n\n\tnoel45424: hey I&#39;ve been getting ready for a trip -- and am headed out until Friday.  I&#39;ll do my next turn then.\n\nHomeworlds Online (SDG# 4592)\nVariants: &quot;Unrated&quot;\nStarted: 2006.10.8, Ended: 2006.10.24\nParticipants: Personman (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: I took a look at your previous Homeworlds games.  Wow, you have no qualms about taking on the heavies.\n\n2) Personman: Homeworld Y1 B3 G3\n\tPersonman: Yeah... zoltar challenged me to a game once, and I kept thinking I was getting better and maybe had a chance. I was wrong, of course, but it was fun.\n\n3) Keith: Build G1 Keith\n\n4) Personman: Build G1 Personman\n\n5) Keith: Discover G1 Keith Y3 Serpent\n\tKeith: I got as far against Zoltar as eliminating one of his home systems and having a superior force of ships before he beat me anyway.\r\n\r\nWhen you play against Zoltar the less &quot;Zoltar speak&quot; you hear the better you are doing.\n\n6) Personman: Trade G1 Y1 Personman\n\n7) Keith: Build G1 Keith\n\n8) Personman: Build Y1 Personman\n\n9) Keith: Trade G1 B1 Keith\n\n10) Personman: Discover Y1 Personman G2 Theme\n\n11) Keith: Build G1 Keith\n\tKeith: It did not take me long to get into a yellow problem.\n\n12) Personman: Build Y2 Personman\n\n13) Keith: Build B1 Keith\n\n14) Personman: Trade Y2 B2 Personman\n\n15) Keith: Move B1 Keith Serpent\n\n16) Personman: Build Y2 Theme\n\n17) Keith: Discover B1 Serpent Y2 Hydra\n\n18) Personman: Build Y3 Personman\n\n19) Keith: Discover B1 Keith G3 Behemoth\n\n20) Personman: Build G1 Personman\n\n21) Keith: Trade G1 R1 Keith\n\n22) Personman: Discover Y2 Theme B3 Genre\n\n23) Keith: Build G1 Serpent\n\n24) Personman: Sacrifice Y3 Personman\nMove Y1 Theme Genre\nMove Y1 Genre Keith\nMove Y2 Genre Keith\n\n25) Keith: Attack Y2 Keith\n\n26) Personman: Sacrifice G1 Personman\nBuild Y3 Keith\nCatastrophe Keith Y\n\n27) Keith: Trade R1 Y1 Keith\n\n28) Personman: Build Y2 Personman\n\n29) Keith: Build G1 Keith\n\n30) Personman: Discover Y2 Personman G2 Type\n\n31) Keith: Build B2 Behemoth\n\n32) Personman: Move B2 Personman Type\n\n33) Keith: Sacrifice G3 Keith\nBuild G2 Keith\nBuild G2 Serpent\nBuild G3 Keith\n\n34) Personman: Move B2 Type Keith\n\n35) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B2 Hydra\nBuild B3 Hydra\n\n36) Personman: Trade B2 R2 Keith\n\n37) Keith: Trade B2 R2 Hydra\n\n38) Personman: Attack G2 Keith\n\n39) Keith: Sacrifice R2 Hydra\nAttack G2 Keith\nAttack R2 Keith\n\n40) Personman: Discover Y2 Type B3 Class\n\n41) Keith: Build Y2 Keith\n\n42) Personman: Trade Y1 R1 Personman\n\n43) Keith: Discover Y2 Keith G2 Cyclops\n\n44) Personman: Build R1 Personman\n\n45) Keith: Sacrifice G3 Keith\nBuild Y1 Cyclops\nBuild Y3 Keith\nBuild G3 Keith\n\n46) Personman: Move R1 Personman Hydra\n\n47) Keith: Sacrifice Y3 Keith\nMove B3 Hydra Personman\nMove B1 Hydra Personman\nMove Y1 Cyclops Personman\n\n48) Personman: Attack B3 Personman\n\n49) Keith: Sacrifice G3 Keith\nBuild Y3 Personman\nBuild Y3 Personman\nBuild B2 Personman\nCatastrophe Personman Yellow\nCatastrophe Personman Blue\n\tKeith: It has been a tough and challenging game.  I felt like I was in trouble from about the third turn and then I lost one of my home system stars.\n\tKeith: Thank you for the good game.\n\tPersonman: Indeed! Good game. \n\n\nHomeworlds Online (SDG# 4591)\nStarted: 2006.10.10, Ended: 2006.11.19\nParticipants: antihero (S), Personman (N)\nWinner: antihero\n\n1) Personman: Homeworld B2 Y1 G3\n\n2) antihero: Homeworld B3 Y2 G3\n\n3) Personman: Build G1 Personman\n\n4) antihero: Build G1 Antihero\n\n5) Personman: Discover G1 Personman B3 B3a\n\n6) antihero: Discover G1 Antihero Y1 Y1a\n\tantihero: haha, i like your naming system. :)\n\n7) Personman: Build G1 Personman\n\n8) antihero: Build G2 Antihero\n\n9) Personman: Build G2 B3a\n\n10) antihero: Discover G1 Y1a Y3 Y3a\n\n11) Personman: Trade G1 Y1 Personman\n\n12) antihero: Trade G2 Y2 Antihero\n\n13) Personman: Trade G2 Y2 B3a\n\n14) antihero: Build G1 Y3a\n\n15) Personman: Trade Y2 R2 B3a\n\n16) antihero: Trade Y2 R2 Antihero\n\n17) Personman: Build G2 B3a\n\n18) antihero: Build G2 Antihero\n\n19) Personman: Build Y1 Personman\n\n20) antihero: Trade G2 Y2 Antihero\n\n21) Personman: Discover Y1 Personman G3 G3a\n\n22) antihero: Build G2 Antihero\n\n23) Personman: Build Y2 Personman\n\n24) antihero: Discover Y2 Antihero B1 B1a\n\n25) Personman: Build Y3 G3a\n\n26) antihero: Sacrifice G1 Y3a\nBuild Y3 B1a\n\n27) Personman: Trade Y1 R1 Personman\n\n28) antihero: Move Y3 B1a B3a\n\n29) Personman: Sacrifice Y2 Personman\nDiscover R2 B3a Y1 Y1a\nMove G2 B3a Y1a\n\n30) antihero: Move G2 Antihero B1a\n\n31) Personman: Build R1 Personman\n\n32) antihero: Move G2 B1a B3a\n\n33) Personman: Trade R1 B1 Personman\n\n34) antihero: Build Y2 B3a\n\n35) Personman: Move Y3 G3a B1a\n\n36) antihero: Move Y2 B1a G3a\n\n37) Personman: Move Y3 B1a G3a\n\n38) antihero: Sacrifice G1 Y3a\nBuild Y3 G3a\nCatastrophe G3a Yellow\n\n39) Personman: Move B1 Personman B3a\n\n40) antihero: Move Y3 B3a Y1a\n\n41) Personman: Sacrifice G2 Y1a\nBuild B1 B3a\nBuild B1 B3a\nCatastrophe B3a B\n\n42) antihero: Sacrifice R2 Antihero\nAttack R2 Y1a\nPass\n\n43) Personman: Build G1 Personman\n\n44) antihero: Build G1 Antihero\n\n45) Personman: Build R1 Personman\n\n46) antihero: Trade G1 B1 Antihero\n\tPersonman: Well, I usually can&#39;t win at homeworlds when both players start off even, so I guess the obvious next step is to restart the game, but give you several extra pieces. Right? :p\n\tantihero: haha, that&#39;s right.\n\n47) Personman: Trade R1 Y1 Personman\n\n48) antihero: Move B1 Antihero Y1a\n\n49) Personman: Build Y2 Personman\n\n50) antihero: Build G1 Antihero\n\n51) Personman: Discover Y1 Personman G3 G3a\n\n52) antihero: Move R2 Y1a G3a\n\n53) Personman: Discover Y1 G3a G2 G2a\n\n54) antihero: Move Y3 Y1a G3a\n\n55) Personman: Build R1 Personman\n\n56) antihero: Discover B1 Y1a G2 G2b\n\n57) Personman: Discover R1 Personman B3 B3a\n\n58) antihero: Build B1 G2b\n\n59) Personman: Trade R1 G1 B3a\n\n60) antihero: Trade B1 Y1 G2b\n\n61) Personman: Sacrifice G3 Personman\nBuild G2 B3a\nBuild Y2 G2a\nBuild G3 Personman\n\n62) antihero: Sacrifice G3 Antihero\nBuild G3 Antihero\nBuild Y3 G2b\nBuild Y3 G3a\n\n63) Personman: Sacrifice Y2 Personman\nMove Y2 G2a G3a\nMove Y1 G2a G3a\nCatastrophe G3a Y\n\n64) antihero: Build G2 Antihero\n\n65) Personman: Trade G2 Y2 B3a\n\n66) antihero: Trade G1 R1 Antihero\n\n67) Personman: Build Y1 B3a\n\n68) antihero: Move Y3 G2b G3a\n\n69) Personman: Discover Y1 B3a G1 G1a\n\n70) antihero: Sacrifice G3 Antihero\nBuild G2 Antihero\nBuild Y2 G2b\nBuild Y3 G3a\n\n71) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild G3 B3a\nBuild Y3 B3a\n\n72) antihero: Sacrifice B1 G2b\nTrade Y3 R3 G3a\n\n73) Personman: Sacrifice Y2 B3a\nMove G1 B3a G1a\nMove G1 G1a Antihero\n\n74) antihero: Sacrifice Y2 G2b\nMove Y3 G3a Personman\nMove R3 G3a Personman\n\n75) Personman: Attack R3 Personman\n\n76) antihero: Sacrifice R2 G3a\nAttack G3 Personman\nAttack R3 Personman\n\n77) Personman: Sacrifice G3 B3a\nBuild G3 Personman\nBuild R1 Personman\nBuild R2 Personman\nCatastrophe Personman R\n\n78) antihero: Trade Y3 G3 Personman\nCatastrophe Personman Green\n\n\tantihero: whoops, forgot the catastrophe, that was almost catastrophic. Good game, sir.\n\tPersonman: Good game! Well won.\n\nHomeworlds Online (SDG# 4537)\nStarted: 2006.10.11, Ended: 2006.10.17\nParticipants: zoltar (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld Y2 B1 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) mneme: Build G1 Mneme\n\n4) zoltar: Build G1 Zoltar\n\n5) mneme: Discover G1 Mneme B3 Emerald\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) mneme: Build G1 Emerald\n\n8) zoltar: Build G2 Zoltar\n\n9) mneme: Build G2 Mneme\n\n10) zoltar: Discover G1 Zoltar Y2 Yellowstone\n\n11) mneme: Trade G1 Y1 Emerald\n\n12) zoltar: Build Y1 Zoltar\n\n13) mneme: Discover G2 Mneme G3 Jade\n\n14) zoltar: Trade Y1 R1 Zoltar\n\n15) mneme: Build G1 Mneme\n\n\tzoltar: Well, I&#39;m already about to resign this one...\n\tzoltar: Yeah, I don&#39;t have a chance in this one. \n\tmneme: Er.  If you say so -- I&#39;m a very weak player (why I&#39;ve been playing banker later) and I had many, many opportunities to fail utterly at stoping my booted food into your face.  \n\tmneme: Ok, getting a second large green soon was very strong, but still losable given sufficient blunders.\n\tzoltar: I figured that after the last game, you&#39;re as good as I am, and I can&#39;t stop you from getting the &#39;factory&#39; with that next large green, so that you can make 2 builds every move, so I figured I am lost for sure.  I&#39;ve lost 5 or 6 straight games now (not including silly 4-player ones, which are sort of random), and it&#39;s been a while since I&#39;ve played well at this game.  \n\tmneme: True.  But you could still have put me on the defensive nicely, especially since there was no way for me to suck up all the green without giving you an opportunity to cause a catastrophe. I still had a monocolored homeworld, which was badness.\n\tzoltar: Yes, that makes sense -- I didn&#39;t think about that but just figured I was doomed again. :)\n\nHomeworlds Online (SDG# 4667)\nStarted: 2006.10.16, Ended: 2006.11.11\nParticipants: antihero (S), gundam_blade (N)\nWinner: antihero\n\n1) gundam_blade: Homeworld G3 B2 Y3\n\n2) antihero: Homeworld B1 G2 Y3\n\n3) gundam_blade: Build Y1 Gundam_blade\n\tantihero: Hello again. Have you played homeworlds much before?\n\n4) antihero: Build Y1 Antihero\n\n5) gundam_blade: Trade Y1 R1 Gundam_blade\n\n6) antihero: Trade Y1 G1 Antihero\n\n7) gundam_blade: Build Y1 Gundam_blade\n\n8) antihero: Build Y1 Antihero\n\n9) gundam_blade: Trade Y1 G1 Gundam_blade\n\n10) antihero: Discover G1 Antihero Y3 Sol\n\n11) gundam_blade: Discover G1 Gundam_blade B1 Jdogg\n\n12) antihero: Trade Y1 R1 Antihero\n\n13) gundam_blade: Build G1 Jdogg\n\n14) antihero: Build G2 Sol\n\n15) gundam_blade: Trade G1 Y1 Jdogg\n\n16) antihero: Discover G1 Sol B1 Switch\n\n17) gundam_blade: Build Y1 Jdogg\n\n18) antihero: Build G1 Switch\n\n19) gundam_blade: Build R1 Gundam_blade\n\n20) antihero: Build R2 Antihero\n\n21) gundam_blade: Build R2 Gundam_blade\n\n22) antihero: Move R2 Antihero Sol\n\n23) gundam_blade: Move R2 Gundam_blade Jdogg\n\n24) antihero: Discover R2 Sol Y2 Sink\n\n25) gundam_blade: Build R2 Jdogg\n\n26) antihero: Build R3 Antihero\n\n27) gundam_blade: Build R3 Gundam_blade\n\n28) antihero: Sacrifice G1 Switch\nBuild R3 Sink\n\n29) gundam_blade: Move R3 Gundam_blade Switch\n\n30) antihero: Sacrifice G1 Switch\nBuild G1 Sol\n\n\nHomeworlds Online (SDG# 4665)\nStarted: 2006.10.16, Ended: 2006.10.16\nParticipants: gundam_blade (S), antihero (N)\nWinner: antihero\n\n1) antihero: Homeworld G1 B2 Y3\n\n2) gundam_blade: Homeworld G3 B2 Y3\n\n3) antihero: Build Y1 Antihero\n\n4) gundam_blade: Build Y1 Gundam_blade\n\n5) antihero: Build Y1 Antihero\n\n6) gundam_blade: Build Y2 Gundam_blade\n\n7) antihero: Sacrifice Y3 Antihero\nDiscover Y1 Antihero B3 Hole1\nDiscover Y1 Hole1 B1 Hole2\nMove Y1 Hole2 Gundam_blade\nCatastrophe Gundam_blade Yellow\n\tantihero: Another, hopefully longer, game?\n\tgundam_blade: sure.  I didn&#39;t know you could do that. I do now.\n\n\nHomeworlds Online (SDG# 4666)\nStarted: 2006.10.16, Ended: 2006.10.30\nParticipants: gundam_blade (S), bigby (N)\nWinner: bigby\n\n1) bigby: Homeworld Y2 B3 G3\n\n2) gundam_blade: Homeworld G2 B1 Y3\n\n3) bigby: Build G1 Bigby\n\n4) gundam_blade: Build Y1 Gundam_blade\n\n5) bigby: Discover G1 Bigby G1 Cassini\n\n6) gundam_blade: Trade Y1 R1 Gundam_blade\n\n7) bigby: Build G1 Bigby\n\n8) gundam_blade: Build Y1 Gundam_blade\n\n9) bigby: Build G2 Bigby\n\n10) gundam_blade: Trade Y1 B1 Gundam_blade\n\n11) bigby: Trade G2 B2 Bigby\n\n12) gundam_blade: Discover B1 Gundam_blade G3 Planethollywood\n\n13) bigby: Build G2 Bigby\n\n14) gundam_blade: Build B1 Planethollywood\n\n15) bigby: Discover G2 Bigby R1 Logan\n\n16) gundam_blade: Build B2 Planethollywood\n\n17) bigby: Build B2 Bigby\n\n18) gundam_blade: Trade B2 Y2 Planethollywood\n\n19) bigby: Move B2 Bigby Cassini\n\n20) gundam_blade: Build B2 Planethollywood\n\n21) bigby: Build B3 Cassini\n\n22) gundam_blade: Sacrifice Y2 Planethollywood\nMove B1 Planethollywood Cassini\nMove B1 Planethollywood Cassini\nCatastrophe Cassini Blue\n\n23) bigby: Build B1 Bigby\n\n24) gundam_blade: Build B1 Planethollywood\n\n25) bigby: Move B1 Bigby Logan\n\n26) gundam_blade: Build Y1 Gundam_blade\n\n27) bigby: Build B2 Logan\n\n28) gundam_blade: Build B3 Planethollywood\n\n29) bigby: Trade B1 Y1 Logan\n\n30) gundam_blade: Trade B3 Y3 Planethollywood\n\n31) bigby: Sacrifice G3 Bigby\nBuild G2 Logan\nBuild G3 Bigby\nBuild G3 Bigby\n\n32) gundam_blade: Move B1 Planethollywood Cassini\n\n33) bigby: Move B2 Bigby Cassini\n\n34) gundam_blade: Sacrifice R1 Gundam_blade\nAttack G1 Cassini\n\tbigby: Sweet!\n\n35) bigby: Move G3 Bigby Cassini\n\n\tbigby: Sorry about that.  I realized I gave the game away, so I tried again.\n\nHomeworlds Online (SDG# 4668)\nStarted: 2006.10.19, Ended: 2006.10.20\nParticipants: zoltar (S), Manny (N)\nWinner: zoltar\n\n1) Manny: Homeworld Y2 B3 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) Manny: Build G1 Manny\n\n4) zoltar: Build G1 Zoltar\n\n5) Manny: Trade G1 Y1 Manny\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Manny: Build G1 Manny\n\n8) zoltar: Build G1 Zoltar\n\n9) Manny: Discover G1 Manny B1 Flux\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Manny: Build G1 Manny\n\n12) zoltar: Build B2 Zoltar\n\n13) Manny: Trade G3 B3 Manny\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) Manny: Build G1 Manny\n\n16) zoltar: Build G2 Zoltar\n\n17) Manny: Trade G1 R1 Manny\n\n18) zoltar: Discover G2 Zoltar B2 Chrononauts\n\n19) Manny: Build G1 Manny\n\n20) zoltar: Build G2 Zoltar\n\n21) Manny: Trade G1 B1 Manny\n\n22) zoltar: Build B2 Zoltar\n\n23) Manny: Discover B1 Manny G1 Slavelabour\n\n24) zoltar: Trade B2 Y2 Zoltar\n\n25) Manny: Build G2 Manny\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Chrononauts\n\n27) Manny: Sacrifice G2 Manny\nBuild B2 Slavelabour\nBuild B3 Manny\n\n28) zoltar: Trade G3 Y3 Chrononauts\n\n29) Manny: Build G2 Flux\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Chrononauts\nBuild Y1 Chrononauts\n\n\tManny: Thanks for the game. I think I&#39;ll give up now though.\n\nHomeworlds Online (SDG# 4737)\nStarted: 2006.10.27, Ended: 2006.12.5\nParticipants: Keith (S), antihero (N)\nWinner: Keith\n\n1) antihero: Homeworld G2 B1 Y3\n\n2) Keith: Homeworld Y3 B1 G3\n\tantihero: Here we go again!\n\tKeith: I am looking forward to it.  You are a good opponent.\n\n3) antihero: Build Y1 Antihero\n\n4) Keith: Build G1 Keith\n\n5) antihero: Trade Y1 G1 Antihero\n\n6) Keith: Trade G1 Y1 Keith\n\n7) antihero: Build Y1 Antihero\n\n8) Keith: Build G1 Keith\n\n9) antihero: Discover Y1 Antihero G3 Forest\n\n10) Keith: Discover Y1 Keith G2 Centaur\n\n11) antihero: Build G1 Antihero\n\n12) Keith: Trade G1 B1 Keith\n\n13) antihero: Discover G1 Antihero Y3 Desert\n\n14) Keith: Build B2 Keith\n\n15) antihero: Build G1 Antihero\n\n16) Keith: Move B2 Keith Centaur\n\tantihero: I must remember this situation where when we both have small blue in our homeworld then blue is ripe for the taking...\n\n17) antihero: Trade G1 Y1 Antihero\n\n18) Keith: Build Y2 Centaur\n\n19) antihero: Build Y2 Forest\n\n20) Keith: Sacrifice G3 Keith\nBuild B2 Centaur\nBuild B2 Centaur\nBuild B3 Keith\n\tKeith: And since I started down the blue line I feel like I should go to great effort dominate it.\n\n21) antihero: Discover Y1 Antihero B3 Stopkeith\n\n22) Keith: Trade B3 G3 Keith\n\tKeith: Very amusing system name.\n\n23) antihero: Build Y2 Antihero\n\tantihero: now i just have to figure out how to do it.\n\n24) Keith: Build B3 Keith\n\n25) antihero: Sacrifice G1 Desert\nBuild Y3 Stopkeith\n\n26) Keith: Trade B3 R3 Keith\n\n27) antihero: Trade Y3 R3 Stopkeith\n\tantihero: man this is tough. I&#39;m in bad shape here. Gotta think gotta think gotta think. I&#39;ll be a little late on this one, sorry.\n\tKeith: No problem.  Take your time.\n\n28) Keith: Sacrifice Y2 Centaur\nMove B2 Centaur Stopkeith\nMove B2 Centaur Stopkeith\n\n29) antihero: Move R3 Stopkeith Centaur\n\n30) Keith: Sacrifice G3 Keith\nBuild B3 Centaur\nBuild B3 Centaur\nBuild Y2 Centaur\n\n31) antihero: Sacrifice Y1 Forest\nMove R3 Centaur Forest\n\n32) Keith: Trade B3 G3 Centaur\n\tantihero: wow I&#39;m getting destroyed here. This game is not going well.\n\tKeith: It does look bad for you, and yet it has been a struggle for me.  Your strong grip on the yellow supply and the threat of having that r3 prance through Centaur while it was chock full of my lesser ships has had me putting a lot of time into each of my turns because if my grip on blue falls apart so does my entire game.  \n\n33) antihero: Discover Y2 Antihero B3 Ahhhh\n\n34) Keith: Move G3 Centaur Keith\n\tantihero: If you wanna see something crazy check out my HW game with unic... (#5098)\n\tKeith: Wow.  All the 3 pointers makes a big visual splash.  The small universe it really going to change the game.  Any ship that moves out of your homeworld system moves further away from your opponent&#39;s homeworld.\n\n35) antihero: Build R1 Forest\n\tKeith: That does put a nice dent in my recruit a 3 pointer every other turn program.\n\tantihero: I&#39;m amazed I&#39;m not down by more, here.\n\n36) Keith: Build R1 Keith\n\n37) antihero: Build Y1 Forest\n\n38) Keith: Trade R3 Y3 Keith\n\n39) antihero: Build G1 Antihero\n\n40) Keith: Sacrifice Y2 Centaur\nMove B2 Stopkeith Antihero\nMove B2 Stopkeith Antihero\n\n41) antihero: Sacrifice G1 Antihero\nBuild Y2 Ahhhh\n\n42) Keith: Build G1 Keith\n\n43) antihero: Discover Y1 Forest R2 Don&#39;tmindme\n\n\n44) Keith: Sacrifice Y3 Keith\nMove B2 Centaur Stopkeith\nMove B2 Stopkeith Antihero\nMove B3 Centaur Forest\nCatastrophe Antihero Blue\n\tKeith: That was a good offensive and defensive move.  I was going to put a fourth blue and a fourth green in your homeworld.\n\n45) antihero: Sacrifice Y2 Ahhhh\nMove R3 Forest Centaur\nMove Y2 Ahhhh Antihero\n\tantihero: It&#39;s 1 move a day, which is faster, but this setting means I will run out of time less I think. Do you mind?\n\tKeith: No problem.  I have not tried the console thingie yet.  Not that computer sophisticated.  I will click on the box in my console message.\n\n46) Keith: Move G1 Keith Antihero\n\tKeith: I just learned that you can&#39;t execute any orders after a catastrophe.  I was going to sacrifice my Y3, move a B2 into your homeworld, catastrophe, then, with our systems one apart move in a green.\n\n\tantihero: yes it certainly is...\n\tantihero: that was my last turn, I believe. Do you see any move that gives me any longer life?\n\tantihero: The way I see it, I have two options to save my homeworld, both of which will fail:\r\n\r\n1. Take your g1. Your response, m g3 keith antihero; catastrophe antihero green.\r\n\r\n2. Move my g1 out of antihero. Your response: sac g3 keith; build g1 antihero; build g1 antihero; build g2 antihero; massive catastrophe antihero green.\n\tantihero: Good game. I&#39;ll have to remember that blue thing -- it really killed me here.\n\tKeith: You saw right that you were out of options.  I was headed for creating a green catastrophe regardless.  If your prior move had been to evacuate the r3 and the g1 then I think I would have gained material but not had a catastrophe threat going.\n\tKeith: I am not sure about the blue thing.  It seems to me that blue is a weak color.  The further dimished the stash the further dimished its power...\r\nAnd yet in my last three games I have grabbed enough blue to at least prevent a blue catastrophe in my homeworld and sometimes to prevent any blue aqusition at all.  I have fallen way behind in yellow while doing so every time but held on to some.  It seems like a risky but viable strategy.\n\tantihero: when I say &quot;the blue thing&quot; I mean a grab for blue is *very* viable when both homeworlds include a small blue. If you are the first to trade for blue and your opponent doesn&#39;t have any medium pieces yet they will either have to trade their large for blue (slows them down some) or allow you to own blue.\n\nHomeworlds Online (SDG# 4771)\nStarted: 2006.10.29, Ended: 2006.11.20\nParticipants: Keith (S), unic (N)\nWinner: Keith\n\n1) unic: Homeworld R2 B3 G3\n\n2) Keith: Homeworld B1 Y2 G3\n\tKeith: Hello Unic.  If you are as tough a Homeworlds player as you are a Cannon player then I am in trouble.\n\n3) unic: Build G1 Unic\n\tunic: Sadly, I&#39;m not... of the games I&#39;ve tried so far here on the server, Homeworlds is the one I have the worst record in.  Cannon uses much more familiar thought patterns from other abstracts... much easier to draw on experience from them.\n\n4) Keith: Build G1 Keith\n\n5) unic: Trade G1 Y1 Unic\n\n6) Keith: Discover G1 Keith Y3 Hydra\n\n7) unic: Build Y1 Unic\n\n8) Keith: Build G1 Keith\n\n9) unic: Discover Y1 Unic G1 Zebra\n\n10) Keith: Build G2 Hydra\n\n11) unic: Build G2 Unic\n\n12) Keith: Sacrifice G3 Keith\nBuild G2 Hydra\nBuild G3 Keith\nBuild G3 Keith\n\n13) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild Y1 Zebra\nBuild Y2 Zebra\n\n14) Keith: Trade G1 R1 Keith\n\n15) unic: Discover Y1 Zebra R3 Lion\n\n16) Keith: Move G2 Hydra Zebra\n\n17) unic: Move Y2 Zebra Lion\n\n18) Keith: Trade G3 Y3 Keith\n\n19) unic: Sacrifice G2 Unic\nBuild Y2 Zebra\nBuild Y3 Unic\n\n20) Keith: Sacrifice R1 Keith\nAttack Y2 Zebra\n\tKeith: You certainly seem like a tough Homeworlds to me.\n\tKeith: Opponent.  Tough opponent.\n\tunic: My rating (16th percentile... so near the bottom) and record so far (1 win, 6 losses) tell a different story.\r\n\r\nThough I do hope I&#39;m learning from all those losses :)\n\n21) unic: Sacrifice Y3 Unic\nMove Y1 Zebra Lion\nMove Y1 Lion Keith\nMove Y1 Lion Keith\nCatastrophe Keith Yellow\n\tKeith: 16th percentile huh?  Oh well in that case I feel much better about this being such a close match.  ;)\r\n\r\nFWIW I beat Zoltar in our last matchup.  So you must be learning something.\n\n22) Keith: Build G1 Keith\n\tunic: I got into a reasonable position in my very first game against Zoltar... but lost it in the end.  The times I&#39;ve played him since then, he&#39;s beaten me soundly!\n\tKeith: I missed that completley.  Was focused on sacrificing my Y3 to catastrophe you.\r\n\r\nI had Zoltar down one system and I had more and better ships... and lost.\n\n23) unic: Build Y1 Unic\n\n24) Keith: Sacrifice Y2 Zebra\nMove G1 Keith Unic\nMove G2 Zebra Unic\n\tKeith: Maybe I can deliver a setback to you too.  If I am reading this wrong I may be shooting myself in the foot.\n\n25) unic: Trade G3 R3 Unic\n\n26) Keith: Trade G2 R2 Unic\n\n27) unic: Attack G1 Unic\n\n28) Keith: Sacrifice G1 Hydra\nBuild R1 Unic\nCatastrophe Unic Red\n\n29) unic: Move Y2 Lion Keith\n\n30) Keith: Trade G3 R3 Keith\n\n31) unic: Move Y2 Keith Unic\n\n32) Keith: Move G2 Hydra Keith\n\n33) unic: Trade Y1 B1 Unic\n\n34) Keith: Build R1 Keith\n\n35) unic: Build B1 Unic\n\n36) Keith: Trade G2 Y2 Keith\n\n37) unic: Discover B1 Unic Y2 Centaur\n\n38) Keith: Move R3 Keith Unic\n\n39) unic: Move B1 Unic Keith\n\n40) Keith: Attack B1 Keith\n\n41) unic: Sacrifice G1 Unic\nBuild B2 Centaur\n\n42) Keith: Trade B1 G1 Keith\n\n\nHomeworlds Online (SDG# 4669)\nStarted: 2006.10.30, Ended: 2006.10.30\nParticipants: zoltar (S), b00jum (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 4873)\nStarted: 2006.11.6, Ended: 2006.11.8\nParticipants: antihero (S), method7 (N)\nWinner: antihero\n\n1) method7: Homeworld G3 B2 Y3\n\n2) antihero: Homeworld B1 G2 Y3\n\n3) method7: Build Y1 Method7\n\n\n4) antihero: Build Y1 Antihero\n\n5) method7: Trade Y1 B1 Method7\n\n6) antihero: Trade Y1 G1 Antihero\n\n7) method7: Build Y1 Method7\n\n8) antihero: Discover G1 Antihero Y3 Sun\n\n9) method7: Trade Y1 G1 Method7\n\n10) antihero: Build Y1 Antihero\n\n11) method7: Build Y1 Method7\n\n12) antihero: Discover Y1 Antihero G3 Green\n\n13) method7: Discover G1 Method7 R1 Mars\n\n14) antihero: Build Y1 Green\n\n15) method7: Build Y2 Method7\n\n16) antihero: Build Y2 Antihero\n\n17) method7: Move Y2 Method7 Mars\n\n18) antihero: Trade Y2 R2 Antihero\n\n19) method7: Move B1 Method7 Mars\n\n20) antihero: Build Y2 Antihero\n\n21) method7: Trade Y2 R2 Mars\n\n22) antihero: Discover Y1 Green G1 Little\n\n23) method7: Build G2 Mars\n\n24) antihero: Sacrifice Y3 Antihero\nMove Y1 Green Little\nMove Y1 Little Method7\nMove Y1 Little Method7\nCatastrophe Method7 Y\n\n\nHomeworlds Online (SDG# 4893)\nStarted: 2006.11.8, Ended: 2006.11.12\nParticipants: antihero (S), method7 (N)\nWinner: antihero\n\n1) method7: Homeworld G2 B3 Y3\n\n2) antihero: Homeworld G1 B2 Y3\n\n3) method7: Build Y1 Method7\n\n4) antihero: Build Y1 Antihero\n\n5) method7: Trade Y1 G1 Method7\n\n6) antihero: Discover Y1 Antihero G3 Green\n\n7) method7: Build Y1 Method7\n\n8) antihero: Discover Y1 Green B1 Method6\n\n9) method7: Trade Y1 B1 Method7\n\n10) antihero: Build Y1 Antihero\n\n11) method7: Build Y1 Method7\n\n12) antihero: Trade Y1 G1 Antihero\n\n13) method7: Build G2 Method7\n\n14) antihero: Build Y1 Antihero\n\n15) method7: Trade G2 R2 Method7\n\n16) antihero: Trade Y1 R1 Antihero\n\n17) method7: Build R1 Method7\n\n18) antihero: Build Y1 Antihero\n\n19) method7: Move R2 Method7 Method6\n\n20) antihero: Discover Y1 Antihero G3 Green\n\n21) method7: Attack Y1 Method6\n\n22) antihero: Build Y2 Green\n\n23) method7: Build G2 Method7\n\n24) antihero: Discover G1 Antihero Y3 Yellow\n\n25) method7: Sacrifice G2 Method7\nBuild R1 Method6\nBuild R2 Method7\n\n26) antihero: Build G2 Yellow\n\n27) method7: Sacrifice G1 Method7\nBuild Y2 Method6\n\n28) antihero: Build Y2 Antihero\n\n29) method7: Move Y1 Method6 Yellow\n\n30) antihero: Discover Y2 Antihero G3 Another\n\n31) method7: Sacrifice R1 Method7\nAttack G1 Yellow\n\n32) antihero: Discover Y1 Green R1 Closer\n\tmethod7: that was a much better move\n\n33) method7: Trade R2 B2 Method7\n\n34) antihero: Build R2 Antihero\n\n35) method7: Move G1 Yellow Method6\n\n36) antihero: Move Y1 Closer Method7\n\n37) method7: Move Y1 Method7 Method6\n\n38) antihero: Trade Y1 B1 Method7\nCatastrophe Method7 B\n\n\tmethod7: Fuck!  why do I continue to make moves over the weekend!\r\nAm I an idiot??\n\tantihero: woah, you didn&#39;t need to resign, dude! But your call, I guess. Good game.\n\tmethod7: The game was over.  You could have moved in your two y2s and built the last y1 before I could do anything else.  Without blue I had no way to defend against such an attck.  GG.\n\tantihero: alright, true. I guess I didn&#39;t even notice. But I would have if you had given me the chance. :)\n\nHomeworlds Online (SDG# 4949)\nStarted: 2006.11.13, Ended: 2006.11.16\nParticipants: antihero (S), method7 (N)\nWinner: antihero\n\n1) method7: Homeworld Y1 B2 G3\n\n2) antihero: Homeworld B1 G3 Y3\n\tmethod7: Let&#39;s mix up my starting set here and see what happens.\n\n3) method7: Build G1 Method7\n\n4) antihero: Build Y1 Antihero\n\n5) method7: Build G1 Method7\n\n6) antihero: Build Y1 Antihero\n\n7) method7: Trade G1 B1 Method7\n\n8) antihero: Discover Y1 Antihero G2 Greenbelt\n\n9) method7: Build G1 Method7\n\n10) antihero: Build Y2 Antihero\n\n11) method7: Trade G3 Y3 Method7\n\n12) antihero: Build Y2 Greenbelt\n\n13) method7: Discover G1 Method7 Y3 Blonde\n\n14) antihero: Trade Y2 B2 Antihero\n\n15) method7: Build B1 Method7\n\tantihero: punk.\n\n16) antihero: Build Y2 Antihero\n\n17) method7: Move B1 Method7 Blonde\n\n18) antihero: Move B2 Antihero Greenbelt\n\n19) method7: Discover B1 Blonde Y2 Sun\n\n20) antihero: Trade Y1 R1 Antihero\n\n21) method7: Trade B1 R1 Method7\n\n22) antihero: Trade Y2 R2 Antihero\n\n23) method7: Build G1 Blonde\n\n24) antihero: Move R1 Antihero Sun\n\n25) method7: Sacrifice R1 Method7\nAttack R1 Sun\n\n26) antihero: Discover Y1 Greenbelt G3 Big\n\n27) method7: Build G2 Method7\n\n28) antihero: Move Y1 Big Method7\n\n29) method7: Sacrifice R1 Sun\nAttack Y1 Method7\n\n30) antihero: Build Y1 Greenbelt\n\n31) method7: Move Y1 Method7 Blonde\n\n32) antihero: Build B1 Greenbelt\n\n33) method7: Build G2 Blonde\n\n34) antihero: Move B2 Greenbelt Blonde\n\n35) method7: Move G2 Blonde Sun\n\n36) antihero: Build B2 Greenbelt\n\n37) method7: Build G3 Sun\n\n38) antihero: Build B3 Greenbelt\n\n39) method7: Sacrifice Y3 Method7\nMove B1 Sun Blonde\nMove B1 Blonde Greenbelt\nMove Y1 Blonde Method7\nCatastrophe Greenbelt Blue\n\n40) antihero: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt G3 Wormhole\nMove Y1 Wormhole Method7\n\n41) method7: Trade G1 B1 Method7\n\n42) antihero: Move B2 Blonde Method7\n\n43) method7: Sacrifice G3 Sun\nBuild G1 Sun\nBuild G2 Method7\nBuild G3 Method7\n\n44) antihero: Trade Y3 G3 Antihero\n\n45) method7: Move G1 Sun Antihero\n\n46) antihero: Sacrifice G3 Antihero\nBuild Y2 Method7\nBuild B1 Method7\nPass\nCatastrophe Method7 B\nCatastrophe Method7 Y\n\n\tantihero: good game, method7.\n\nHomeworlds Online (SDG# 4955)\nStarted: 2006.11.14, Ended: 2006.11.27\nParticipants: Dangrodzi (S), method7 (N)\nWinner: method7\n\n1) method7: Homeworld B1 G2 Y3\n\n\nHomeworlds Online (SDG# 4998)\nStarted: 2006.11.16, Ended: 2006.11.24\nParticipants: antihero (S), Manny (N)\nWinner: antihero\n\n1) Manny: Homeworld Y1 B3 G3\n\n2) antihero: Homeworld Y1 B2 G3\n\n3) Manny: Build G1 Manny\n\n4) antihero: Build G1 Antihero\n\n5) Manny: Discover G1 Manny B2 Flux\n\tantihero: hello, good luck to you!\n\tManny: Thanks, same to you.\n\n6) antihero: Discover G1 Antihero Y3 Sun\n\n7) Manny: Build G1 Manny\n\n8) antihero: Build G2 Antihero\n\n9) Manny: Trade G1 R1 Manny\n\n10) antihero: Trade G2 R2 Antihero\n\n11) Manny: Build R1 Manny\n\n12) antihero: Build R1 Antihero\n\n13) Manny: Trade R1 Y1 Manny\n\n14) antihero: Trade R2 Y2 Antihero\n\n15) Manny: Move Y1 Manny Flux\n\n16) antihero: Build Y2 Antihero\n\n17) Manny: Build Y2 Flux\n\n18) antihero: Discover Y2 Antihero G3 Ice\n\n19) Manny: Discover Y2 Flux B3 Whirlpool\n\n20) antihero: Build Y3 Ice\n\n21) Manny: Build Y3 Flux\n\n22) antihero: Discover Y2 Ice G2 Forest\n\n23) Manny: Move G1 Flux Whirlpool\n\tantihero: sorry.\n\n24) antihero: Build G1 Antihero\n\n25) Manny: Build G2 Whirlpool\n\tManny: No problem\n\n26) antihero: Trade G1 B1 Antihero\n\n27) Manny: Trade G1 R1 Whirlpool\n\tManny: Sorry. My PC broke Sunday.\n\tantihero: ah, that sucks man. I&#39;m sorry.\n\n28) antihero: Sacrifice G1 Sun\nBuild Y3 Forest\n\n29) Manny: Build R2 Whirlpool\n\n30) antihero: Move Y3 Forest Whirlpool\n\n\nHomeworlds Online (SDG# 5083)\nStarted: 2006.11.19, Ended: 2006.12.3\nParticipants: Lexicon (S), Personman (N)\nWinner: Personman\n\n1) Personman: Homeworld B2 Y3 G3\n\n2) Lexicon: Homeworld G1 B3 Y3\n\n3) Personman: Build G1 Personman\n\n4) Lexicon: Build Y1 Lexicon\n\n5) Personman: Build G1 Personman\n\n6) Lexicon: Build Y1 Lexicon\n\tLexicon: I see I rapidly put myself at a disadvantage.  Oh well. :)\n\n7) Personman: Discover G1 Personman Y1 Y1a\n\n8) Lexicon: Discover Y1 Lexicon G2 Madcow\n\n9) Personman: Sacrifice G3 Personman\nBuild G2 Y1a\nBuild G2 Y1a\nBuild G3 Personman\n\n10) Lexicon: Trade Y3 G3 Lexicon\n\n11) Personman: Build G3 Personman\n\n12) Lexicon: Build Y2 Madcow\n\n13) Personman: Discover G2 Y1a Y2 Y2a\n\n14) Lexicon: Build Y2 Madcow\n\n15) Personman: Move G2 Y2a Lexicon\n\n16) Lexicon: Trade G3 R3 Lexicon\n\n17) Personman: Build G3 Lexicon\n\n18) Lexicon: Build Y2 Lexicon\n\n19) Personman: Trade G3 R3 Personman\n\n20) Lexicon: Attack G3 Lexicon\n\n21) Personman: Build G3 Lexicon\nCatastrophe Lexicon G\n\n22) Lexicon: Discover Y2 Madcow G1 Birdflu\n\n23) Personman: Sacrifice G3 Personman\nBuild G2 Personman\nBuild G3 Personman\nBuild R1 Personman\n\n24) Lexicon: Build Y3 Birdflu\n\n25) Personman: Move G3 Personman Birdflu\n\n26) Lexicon: Sacrifice Y2 Lexicon\nMove Y3 Birdflu Personman\nMove Y2 Birdflu Personman\n\n27) Personman: Attack Y3 Personman\n\n28) Lexicon: Sacrifice Y2 Madcow\nMove Y1 Madcow Birdflu\nMove Y1 Birdflu Personman\nCatastrophe Personman Y\n\n29) Personman: Trade G2 Y2 Personman\n\n\tLexicon: a less than stellar performance on my part. :)\n\nHomeworlds Online (SDG# 5098)\nStarted: 2006.11.20, Ended: 2006.11.22\nParticipants: unic (S), antihero (N)\nWinner: antihero\n\n1) antihero: Homeworld B1 Y2 G3\n\n2) unic: Homeworld G3 Y3 R3 *\n\n3) antihero: Build G1 Antihero\n\tantihero: woah, interesting opening!\n\n4) unic: Build R1 Unic\n\n5) antihero: Trade G1 R1 Antihero\n\n6) unic: Discover R1 Unic B2 Babylon\n\n7) antihero: Build R1 Antihero\n\n8) unic: Build R2 Unic\n\n9) antihero: Move R1 Antihero Unic\n\n10) unic: Discover R2 Unic Y2 Alexandria\n\n11) antihero: Sacrifice G3 Antihero\nBuild R2 Unic\nBuild R2 Unic\nBuild R3 Unic\nCatastrophe Unic R\n\tantihero: Good game. I think your opening almost decided the game, though.\n\n\nHomeworlds Online (SDG# 4763)\nVariants: &quot;Sinister&quot;\nStarted: 2006.11.23, Ended: 2007.1.9\nParticipants: Lexicon (S), Uglyfoot (W), Kenchi (N), Keith (E)\nWinner: Uglyfoot\n\n1) Kenchi: Homeworld G1 B3 Y3\n\n2) Keith: Homeworld Y2 B1 G3\n\n3) Lexicon: Homeworld G2 B3 Y3\n\tKeith: Hello all.  This is my first Sinister game.\n\tKenchi: This is my first game on this site, actually. Hope you don&#39;t beat me too soon!\n\tKeith: Don&#39;t worry about me.  In the Sinister version the goal is to take out the person on your left.  You are not on my left, I am on yours.\n\n4) Uglyfoot: Homeworld B2 Y1 G3\n\n5) Kenchi: Build Y1 Kenchi\n\n6) Keith: Build G1 Keith\n\n7) Lexicon: Build Y1 Lexicon\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Kenchi: Trade Y1 G1 Kenchi\n\n10) Keith: Trade G1 Y1 Keith\n\n11) Lexicon: Trade Y1 G1 Lexicon\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) Kenchi: Build Y1 Kenchi\n\n14) Keith: Build G1 Keith\n\n15) Lexicon: Build Y1 Lexicon\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) Kenchi: Build G2 Kenchi\n\n18) Keith: Discover G1 Keith Y3 Daikiro\n\n19) Lexicon: Build G2 Lexicon\n\n20) Uglyfoot: Discover G1 Uglyfoot Y3 Nexus\n\n21) Kenchi: Trade G2 R2 Kenchi\n\n22) Keith: Discover G1 Daikiro Y1 Chisaikiro\n\n23) Lexicon: Trade G1 R1 Lexicon\n\n24) Uglyfoot: Build G1 Uglyfoot\n\n25) Kenchi: Trade Y1 B1 Kenchi\n\n26) Keith: Build G2 Keith\n\n27) Lexicon: Move R1 Lexicon Chisaikiro\n\n28) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Nexus\nBuild G2 Nexus\nBuild G3 Uglyfoot\n\n29) Kenchi: Build G3 Kenchi\n\n30) Keith: Build G3 Chisaikiro\n\tKeith: Kenchi?  Still there?  You are past time to move almost double the turn limit.\n\n31) Lexicon: Attack G1E Chisaikiro\n\n32) Uglyfoot: Discover G2 Nexus Y2 Onward\n\n33) Kenchi: Trade G1 Y1 Kenchi\n\n34) Keith: Trade G2 R2 Keith\n\n35) Lexicon: Build Y2 Lexicon\n\n36) Uglyfoot: Discover G2 Nexus B2 Themall\n\tKenchi: Yeah, I was really busy last week forgot all about it. :p\n\n37) Keith: Sacrifice R2 Keith\nAttack G1S Chisaikiro\nAttack R1S Chisaikiro\n\n38) Lexicon: Discover Y2 Lexicon G1 Liveoak\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Themall\nBuild G3 Uglyfoot\nBuild G3 Nexus\n\tKeith: Kenchi, this time your 11 days over.  If you are going to be unavailable, for the holidays or whatever, let us know so we wait with a purpose.  I will wait till January 2nd my time.\n\tKeith: 18 days over in two turns.  That is too much for me even accounting for the holiday season.  I will be the heavy and pull the plug on Kenchi.\n\n40) Keith: Sacrifice G3 Chisaikiro\nBuild G3 Chisaikiro\nBuild R1 Chisaikiro\nBuild R1 Chisaikiro\n\n41) Lexicon: Trade Y1 R1 Lexicon\n\n42) Uglyfoot: Trade G2 Y2 Themall\n\n43) Keith: Move G3 Chisaikiro Themall\n\n44) Lexicon: Build R2 Lexicon\n\tLexicon: I am so dead.  D-E-D.\n\n45) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Themall\nBuild G3 Uglyfoot\nBuild R2 Uglyfoot\n\n46) Keith: Sacrifice R1 Chisaikiro\nAttack Y2W Themall\n\tKeith: Because there are two factories out there?  Heck, I have no room to crank mine.  Uglyfoot on the other hand...   \n\tKenchi: I apologize. I&#39;ve been very swamped and haven&#39;t been able to give this the proper attention. I commend Keith for taking me out when he did.\n\n47) Lexicon: Move R2 Lexicon Chisaikiro\n\n48) Uglyfoot: Move R2 Uglyfoot Nexus\n\n49) Keith: Sacrifice Y2 Themall\nMove G3 Themall Kenchi\nDiscover R1 Chisaikiro B3 Temp\n\n50) Lexicon: Build Y1 Liveoak\n\n51) Uglyfoot: Move G2 Onward Kenchi\nCatastrophe Kenchi G\n\n52) Keith: Build G1 Keith\n\n53) Lexicon: Attack G1E Chisaikiro\n\n54) Uglyfoot: Trade G2 Y2 Themall\n\n55) Keith: Trade G3 R3 Keith\n\n56) Lexicon: Attack R1E Chisaikiro\n\tLexicon: Ha!  I forgot I had an R2 in chisaikiro.  Doh.\n\n57) Uglyfoot: Build Y2 Themall\n\n58) Keith: Move Y1 Keith Temp\n\n59) Lexicon: Build G2 Chisaikiro\n\n60) Uglyfoot: Move G3 Nexus Liveoak\n\n61) Keith: Trade R3 G3 Keith\n\n62) Lexicon: Sacrifice Y2 Liveoak\nDiscover G2 Chisaikiro Y3 Mesquite\nMove R2 Chisaikiro Mesquite\n\n63) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Liveoak\nBuild G3 Themall\nBuild G3 Uglyfoot\n\n64) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y2 Temp\nBuild R1 Temp\n\n65) Lexicon: Build G3 Mesquite\n\n66) Uglyfoot: Move G3 Themall Temp\n\n67) Keith: Move Y1 Temp Themall\n\n68) Lexicon: Move G2 Mesquite Liveoak\nCatastrophe Liveoak G\n\n69) Uglyfoot: Sacrifice Y2 Themall\nMove G3 Temp Keith\nMove G1 Nexus Keith\nCatastrophe Keith G\n\n\tLexicon: Phew.  Glad that&#39;s not hanging over me anymore.  \n\tLexicon: I&#39;m frankly surprised you didn&#39;t nuke me already.\n\tKeith: I am so out of it in this game I am not sure what you are talking about Lexicon.  \n\tKeith: Congratulations Uglyfoot.  Sorry Lexicon.  I gave the game away.\r\n\r\nI have definately decided that 4 player Homeworlds does not work for me.  80% of the time one of the four players is a no show or bails within a few turns.  I have never had a clear sense of how to proceed in the remaining multiplayer game and as such go nowhere.\n\tLexicon: Aha!  This game went on pause for so long I forgot it was sinister.  Another reason 4 person games are bad. :(\n\tUglyfoot: Thanks.  I can see where having one person either slow things down or skew it is bad.  For some reason I win a multiplayer (even when it is not delayed) but lose at two player.  Time to study this one more.\n\nHomeworlds Online (SDG# 5164)\nVariants: &quot;Unrated&quot;\nStarted: 2006.11.23, Ended: 2007.1.2\nParticipants: Kenchi (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld Y1 B2 G3\n\n2) Kenchi: Homeworld G3 Y1 B3\n\n3) Keith: Build G1 Keith\n\tKeith: Hello Kenchi.  Thank you for taking me up on unrated game\n\tKeith: That should read &quot;on my unrated game offer.&quot;\n\n4) Kenchi: Build B1 Kenchi\n\tKenchi: Thank you for the offer, I need the practice.\n\n5) Keith: Trade G1 Y1 Keith\n\tKeith: Here is a good initial thing to watch out for, at least in a two player game.  I deliberately chose a y1 as part of my home system in the hopes that you would too.  What happens to your ability to develop yellow when I grab the last y1?  How would it differ if your home system was y2 g1?\n\n6) Kenchi: Discover B1 Kenchi G2 Aldune\n\n7) Keith: Build G1 Keith\n\n8) Kenchi: Build B1 Kenchi\n\n9) Keith: Build Y2 Keith\n\tKenchi: I build y2s? I have no idea how having a y2 star would change anything.\n\tKenchi: Oh, great, I can&#39;t build y.\n\n10) Kenchi: Trade B1 R1 Kenchi\n\tKeith: Right.  You can&#39;t build Y without having a Y ship.  You can convert your b3 to a y3 but then you have lost a turn.  If you had a y2 star at the start there would have been 2 y1s in the pool and when I grabbed one then you would grab the other.\r\n\r\nI am not going to strangle your game by hoarding the y&#39;s.  After I build a y2 I will put my y1 back in the pool for you to use.\n\n11) Keith: Trade Y1 R1 Keith\n\n12) Kenchi: Build B1 Kenchi\n\tKeith: One of the rules of thumb is that if your opponent pulls a gun (builds a red) you had better have one too.  I will throw that y1 back in the pool for now and pick up a r1.\n\n13) Keith: Discover Y2 Keith G3 Behemoth\n\tKenchi: *Groan*\n\n14) Kenchi: Trade B1 Y1 Kenchi\n\tKeith: Groan?\n\tKenchi: Now we have guns out and I&#39;m still not sure what I&#39;m doing.\n\tKeith: Well how focusing on getting into yellow?  Build a b1 or r1 in Aldune or a b1 in Kenchi and the turn after that convert it to a y1.  To get the y1 one turn faster undo you move and build a r1 or b1 in Kenchi this turn and convert it next turn.\n\tKenchi: Ok, I&#39;ll try that.\n\n15) Keith: Trade G1 B1 Keith\n\n16) Kenchi: Build Y2 Kenchi\n\n17) Keith: Build G1 Keith\n\tKeith: There you go.  You have access to all the colors.  I see in the 4 player game you have already applied what you have learned here and grabbed a green ship.\n\n18) Kenchi: Move Y1 Kenchi Aldune\n\tKenchi: Yes, right. Guess I am learning after all.\n\n19) Keith: Move Y2 Behemoth Aldune\n\tKeith: Be careful about putting three items of the same color in a system.  If I put a fourth I can trigger a catastrophe.  You are safe for the moment.  The Y2 at Behemoth is two moves away from you homeworld.\n\n20) Kenchi: Sacrifice Y1 Aldune\nMove B1 Aldune Kenchi\n\n21) Keith: Build R1 Keith\n\tKenchi: Thanks, I&#39;ll watch out for that.\r\nAnd thanks for the other game&#39;s advice.\n\n22) Kenchi: Build R2 Kenchi\n\tKenchi: Hmmm....\n\n23) Keith: Discover R1 Keith Y3 Okikiro\n\tKeith: You should probably undo that move.  If I move my y2 from Aldune to Kenchi I can create a yellow catastrophe in Kenchi and you will lose all of your yellow pieces there.\r\n\r\nOne threat you are facing is that if I sacrifice my r1 in Keith then I can attack and take one of your ships in Aldune.  You can move the y1 or b1 out of Aldune or even sacrifice the y1 in Aldune and more out the b1 so I can&#39;t sacrifice my r1 and take your ship.  Of course sacrificing my ship to get a ship means I don&#39;t gain a ship but you would lose one.\n\tKenchi: I forgot about sacrificing...\n\n24) Kenchi: Move R2 Kenchi Aldune\n\tKeith: Sacrificing and gaining extra moves and flexibility is the key to strong play.\n\n25) Keith: Sacrifice Y2 Aldune\nMove G1 Keith Okikiro\nMove B1 Keith Okikiro\n\n26) Kenchi: Build Y1 Kenchi\n\n27) Keith: Build R2 Okikiro\n\n28) Kenchi: Build R2 Kenchi\n\tKeith: Here is where the advantage of sacrificing comes in.  If I sacrifice my r1 I can attack anywhere on the board as long as I have a ship as big or larger than an enemy ship in a sector.  I can take your r2 in Aldune.\n\tKeith: For example:\n\n29) Keith: Build G1 Keith\n\tKeith: However, I will do something else instead.\n\n30) Kenchi: Build R3 Kenchi\n\n31) Keith: Trade R2 Y2 Okikiro\n\n\tKeith: No moves, no polite message to wait.  No more game.\n\nHomeworlds Online (SDG# 4800)\nStarted: 2006.11.24, Ended: 2006.12.2\nParticipants: zoltar (S), tcerier (N)\nWinner: zoltar\n\n\tzoltar: Greetingz Earthling!\n\nHomeworlds Online (SDG# 5174)\nStarted: 2006.11.25, Ended: 2006.12.8\nParticipants: Aunguna (S), unic (N)\nWinner: unic\n\n1) unic: Homeworld B3 Y2 G3\n\n\nHomeworlds Online (SDG# 5177)\nStarted: 2006.11.25, Ended: 2007.3.6\nParticipants: Jesse (S), Cerulean (N)\nWinner: Jesse\n\n1) Cerulean: Homeworld B1 Y3 G3\n\t_SYSTEM_: Welcome to round 5 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) Jesse: Homeworld Y3 B2 G3\n\n3) Cerulean: Build G1 Cerulean\n\n4) Jesse: Build G1 Jesse\n\n5) Cerulean: Trade G1 Y1 Cerulean\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) Cerulean: Build G1 Cerulean\n\n8) Jesse: Build B1 Jesse\n\n9) Cerulean: Discover G1 Cerulean Y2 Wytou\n\n10) Jesse: Discover B1 Jesse G1 Gumby\n\n11) Cerulean: Build Y1 Cerulean\n\n12) Jesse: Build B2 Gumby\n\n13) Cerulean: Trade Y1 R1 Cerulean\n\n14) Jesse: Trade B2 R2 Gumby\n\n15) Cerulean: Build R1 Cerulean\n\n16) Jesse: Build B2 Jesse\n\n17) Cerulean: Build Y1 Cerulean\n\n18) Jesse: Build B2 Gumby\n\n19) Cerulean: Move Y1 Cerulean Wytou\n\n20) Jesse: Trade B2 Y2 Gumby\n\n21) Cerulean: Move R1 Cerulean Wytou\n\n22) Jesse: Trade B2 Y2 Jesse\n\n23) Cerulean: Build R1 Cerulean\n\n24) Jesse: Build B2 Gumby\n\n25) Cerulean: Build R2 Wytou\n\n26) Jesse: Build Y1 Gumby\n\n27) Cerulean: Trade R1 G1 Cerulean\n\n28) Jesse: Build G2 Jesse\n\n29) Cerulean: Build G2 Wytou\n\n30) Jesse: Sacrifice Y2 Jesse\nMove Y1 Gumby Wytou\nMove Y2 Gumby Wytou\nCatastrophe Wytou Y\n\n31) Cerulean: Build R1 Cerulean\n\n32) Jesse: Build B2 Gumby\n\n33) Cerulean: Build Y1 Cerulean\n\n34) Jesse: Build B3 Jesse\n\n35) Cerulean: Discover Y1 Cerulean G2 Jetou\n\n36) Jesse: Trade B3 Y3 Jesse\n\n37) Cerulean: Move R1 Cerulean Jetou\n\n38) Jesse: Trade B2 Y2 Gumby\n\n39) Cerulean: Pass\n\n40) Jesse: Discover B2 Gumby G3 Gojira\n\tJesse: Sure about that?\n\tCerulean: I&#39;d rather not, but my novice eye sees few options that won&#39;t end up hosing me.\n\tJesse: Yes, naturally I&#39;m trying to make things difficult for you.  Still, it is almost never better to pass than do some little thing that could benefit your position.  Maybe moving out your home y1, for instance.\n\n41) Cerulean: Discover R1 Jetou Y1 Wywun\n\tJesse: It doesn&#39;t seem right for me to help you too much, it being a tounrament game, but I&#39;ll also point out that while things look bad for you, one place where you do have a slight advantage is distribution of reds.  Better distribution usually means a production advantage, as well.\n\n42) Jesse: Build G1 Jesse\n\n43) Cerulean: Build Y2 Jetou\n\n44) Jesse: Move G2 Jesse Wywun\n\n45) Cerulean: Move R1 Wywun Jesse\n\n46) Jesse: Sacrifice G3 Jesse\nBuild G2 Wywun\nBuild G3 Jesse\nBuild Y2 Gumby\n\n47) Cerulean: Attack B1S Jesse\n\n48) Jesse: Sacrifice R2 Gumby\nAttack R1 Jesse\nAttack B1 Jesse\n\n49) Cerulean: Build R1 Cerulean\n\n50) Jesse: Sacrifice G3 Jesse\nBuild B2 Gumby\nBuild B3 Jesse\nBuild G3 Jesse\n\n51) Cerulean: Move R1 Cerulean Jetou\n\n52) Jesse: Trade B2 R2 Gumby\n\n53) Cerulean: Build R2 Cerulean\n\n54) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild B2 Gumby\nBuild B3 Gojira\n\n55) Cerulean: Move R1 Cerulean Jetou\n\n56) Jesse: Trade B3 R3 Gojira\n\n57) Cerulean: Sacrifice G3 Cerulean\nBuild G3 Cerulean\nBuild R2 Jetou\nBuild R3 Cerulean\n\n58) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Jesse\nBuild B3 Gumby\n\n59) Cerulean: Discover R1 Jetou B3 Bethrii\n\n60) Jesse: Move B3 Jesse Wywun\n\n61) Cerulean: Move Y2 Jetou Bethrii\n\n62) Jesse: Move Y2 Gumby Gojira\n\n63) Cerulean: Move G1 Cerulean Jetou\n\n64) Jesse: Move G2 Wywun Jetou\n\n65) Cerulean: Sacrifice R1 Jetou\nAttack G2S Jetou\n\n66) Jesse: Move G2 Wywun Jetou\nCatastrophe Jetou G\n\n67) Cerulean: Build G1 Cerulean\n\n68) Jesse: Build Y1 Gumby\n\n69) Cerulean: Discover G1 Cerulean R2 Artou\n\n70) Jesse: Move B3 Wywun Artou\n\n71) Cerulean: Sacrifice G1 Artou\nBuild Y1 Bethrii\n\n72) Jesse: Build R1 Gojira\n\n73) Cerulean: Discover Y1 Bethrii G1 Jiwun\n\n74) Jesse: Move Y3 Jesse Jiwun\n\n75) Cerulean: Move Y1 Jiwun Bethrii\n\n76) Jesse: Move Y2 Gumby Artou\n\n77) Cerulean: Build G2 Cerulean\n\n78) Jesse: Move B1 Gumby Artou\n\n79) Cerulean: Discover R3 Cerulean G2 Jetou\n\n80) Jesse: Discover B3 Gumby G2 Sputum\n\n81) Cerulean: Move Y1 Bethrii Jetou\n\n82) Jesse: Move Y2 Gojira Sputum\n\n83) Cerulean: Move Y1 Cerulean Jetou\n\n84) Jesse: Move B3 Sputum Cerulean\n\n85) Cerulean: Attack B3S Cerulean\n\n86) Jesse: Move B3 Artou Cerulean\n\n87) Cerulean: Attack B3S Cerulean\n\n88) Jesse: Move B1 Artou Cerulean\nCatastrophe Cerulean B\n\n89) Cerulean: Move R3 Jetou Gumby\n\n90) Jesse: Sacrifice Y3 Jiwun\nMove Y2 Artou Cerulean\nMove Y1 Gumby Cerulean\nMove Y2 Sputum Cerulean\nCatastrophe Cerulean Y\n\n\nHomeworlds Online (SDG# 5178)\nStarted: 2006.11.25, Ended: 2006.12.16\nParticipants: jeep (S), Hedge_o_Matic (N)\nWinner: jeep\n\n1) Hedge_o_Matic: Homeworld G3 Y1 B3\n\t_SYSTEM_: Welcome to round 5 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) jeep: Homeworld B2 G1 Y3\n\n3) Hedge_o_Matic: Build B1 Hedge_o_matic\n\n4) jeep: Build Y1 Jeep\n\tHedge_o_Matic: Darn!  I started with the wrong color ship!  Grr...\n\n5) Hedge_o_Matic: Trade B3 Y3 Hedge_o_matic\n\n6) jeep: Trade Y1 R1 Jeep\n\n7) Hedge_o_Matic: Build Y1 Hedge_o_matic\n\n8) jeep: Build Y1 Jeep\n\n9) Hedge_o_Matic: Build Y2 Hedge_o_matic\n\n10) jeep: Build R1 Jeep\nCatastrophe Hedge_o_matic Yellow\n\n\tHedge_o_Matic: Geh!  Peak Oil did me in.  I really suck at this game, online, it seems.  Without physical pyramids, I&#39;m totally lost.  I&#39;d say &quot;good game&quot;, but this can&#39;t have been a very satisfying victory for you.\r\nI&#39;ll do better next time!\n\tjeep: :(  I was actually hoping that there was some sneak attack in there someplace that I didn&#39;t see.  Thanks for the game.\n\tHedge_o_Matic: I&#39;ll play a few more online games, and challenge you when I think I can actually offer a challenge...\n\tjeep: I&#39;m not very good at the game, so it shouldn&#39;t take long.  ;)\n\nHomeworlds Online (SDG# 5179)\nStarted: 2006.11.25, Ended: 2006.12.16\nParticipants: Aaron (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld B3 G2 Y3\n\t_SYSTEM_: Welcome to round 5 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) Aaron: Homeworld Y1 B2 G3\n\tLexicon: Good luck!\n\tAaron: And to you!\n\n3) Lexicon: Build Y1 Lexicon\n\n4) Aaron: Build G1 Aaron\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) Lexicon: Build G1 Lexicon\n\n8) Aaron: Build R1 Aaron\n\n9) Lexicon: Discover G1 Lexicon Y1 Gopher\n\n10) Aaron: Discover R1 Aaron Y3 Bananas\n\n11) Lexicon: Build Y1 Lexicon\n\n12) Aaron: Move R1 Bananas Gopher\n\n13) Lexicon: Discover G1 Gopher B3 Ftp\n\tAaron: uhm, how on earth did I miss that shutout?\n\n14) Aaron: Move R1 Gopher Ftp\n\n15) Lexicon: Build G1 Ftp\n\tLexicon: Sneakiness. :)\n\n16) Aaron: Attack G1 Ftp\n\n17) Lexicon: Build G2 Ftp\n\n18) Aaron: Build G2 Ftp\nCatastrophe Ftp Green\n\n19) Lexicon: Build Y1 Lexicon\n\n20) Aaron: Build G1 Aaron\n\tLexicon: OK, we&#39;ll try that again...\n\n21) Lexicon: Discover Y1 Lexicon G1 Gopher\n\n22) Aaron: Trade G3 Y3 Aaron\n\n23) Lexicon: Build G2 Lexicon\n\n24) Aaron: Build Y2 Aaron\n\n25) Lexicon: Build Y2 Gopher\n\n26) Aaron: Move Y2 Aaron Ftp\n\n27) Lexicon: Move G2 Lexicon Gopher\n\n28) Aaron: Sacrifice Y2 Ftp\nMove R1 Ftp Gopher\nMove R1 Gopher Lexicon\n\n29) Lexicon: Trade Y3 R3 Lexicon\n\n30) Aaron: Attack G1 Lexicon\n\tAaron: Not many people remember what Gopher was =)\n\tLexicon: It was just dying when I first got on the internet in 1994.  It worked, but kinda barely.  But kinda like a treasure chest. :)\n\tLexicon: I just don&#39;t know what to make of that move.\n\tAaron: gotta keep you on your toes!  I never said I was any *good* at this game =D\n\n31) Lexicon: Attack G1 Lexicon\n\n32) Aaron: Attack G1 Lexicon\n\n33) Lexicon: Sacrifice Y2 Gopher\nDiscover G2 Gopher B3 Http\nMove Y1 Gopher Http\n\tLexicon: Uh oh.  This may prove difficult. \n\n34) Aaron: Build G1 Lexicon\n\n35) Lexicon: Build Y2 Lexicon\n\n36) Aaron: Build G2 Lexicon\nCatastrophe Lexicon G\n\n37) Lexicon: Sacrifice Y2 Lexicon\nMove Y1 Lexicon Aaron\nMove Y1 Http Aaron\nCatastrophe Aaron Y\n\n38) Aaron: Build G1 Aaron\n\tAaron: oh what the heck...I&#39;m in a destructive mood.\n\n39) Lexicon: Attack R1 Lexicon\n\tLexicon: You just have too many game commitments and want to be risky. :)\n\n40) Aaron: Trade G1 Y1 Aaron\n\tLexicon: BOOM\n\tAaron: all too true\n\tAaron: I neglected to see how I would be the one with no 3&#39;s.  That pretty much ends the game for me.  I&#39;ll slog through a little bit.\n\n41) Lexicon: Trade R1 Y1 Lexicon\n\n42) Aaron: Build G1 Aaron\n\tLexicon: I made the same trade once thinking I could pull it off, but it didn&#39;t work out so well for me.\n\n43) Lexicon: Build G1 Http\n\n44) Aaron: Discover G1 Aaron Y3 Archie\n\n45) Lexicon: Sacrifice G1 Http\nBuild R1 Lexicon\n\n46) Aaron: Pass\n\n47) Lexicon: Sacrifice Y1 Lexicon\nMove G2 Http Aaron\n\n\tAaron: All over.  Thanks for the game Lexicon!  Sorry I sucked =D\n\tLexicon: Thanks for the game. :)\n\nHomeworlds Online (SDG# 5180)\nStarted: 2006.11.25, Ended: 2007.2.8\nParticipants: ldd23 (S), bigby (N)\nWinner: bigby\n\n1) bigby: Homeworld G1 B2 Y3\n\t_SYSTEM_: Welcome to round 5 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) ldd23: Homeworld B3 Y2 G3\n\n3) bigby: Build Y1 Bigby\n\n4) ldd23: Build G1 Ldd23\n\n5) bigby: Trade Y1 G1 Bigby\n\n6) ldd23: Discover G1 Ldd23 B1 Balas\n\n7) bigby: Build G2 Bigby\n\n8) ldd23: Build G2 Ldd23\n\n9) bigby: Discover G2 Bigby Y3 Webster\n\n10) ldd23: Trade G2 R2 Ldd23\n\n11) bigby: Build G2 Webster\n\n12) ldd23: Build G2 Balas\n\n13) bigby: Build G3 Bigby\n\n14) ldd23: Build G3 Ldd23\n\n15) bigby: Trade G1 B1 Bigby\n\tldd23: Sorry I&#39;m going so slow.  Trying to deal with the end of the semester and the game keeps slipping my mind.\n\n16) ldd23: Trade G3 R3 Ldd23\n\n17) bigby: Move B1 Bigby Webster\n\tldd23: Woah, sorry about that.  I&#39;ve been without internet access for the past several days.  I should be able to be more prompt now.\n\tbigby: No problem.  End of the year is always busy.\n\n18) ldd23: Trade G1 Y1 Balas\n\n19) bigby: Trade G2 R2 Webster\n\n20) ldd23: Move R3 Ldd23 Balas\n\n21) bigby: Build G1 Webster\n\n22) ldd23: Build R1 Balas\n\n23) bigby: Discover G2 Webster Y1 Roget\n\n24) ldd23: Move R3 Balas Webster\n\n25) bigby: Sacrifice G2 Roget\nBuild R1 Webster\nBuild R1 Webster\nCatastrophe Webster Red\n\n26) ldd23: Build Y1 Balas\n\tbigby: Wasn&#39;t expecting you to attack so soon.\n\tldd23: I figured hey, why not?  Nice response\n\n27) bigby: Build B1 Webster\n\tbigby: build r1 webster\n\tbigby: haha\n\tbigby: Doesn&#39;t work anyway.  Hmmm...\n\n28) ldd23: Build R1 Ldd23\n\n29) bigby: Trade B1 R1 Webster\n\n30) ldd23: Trade R2 B2 Ldd23\n\n31) bigby: Build B1 Webster\n\n32) ldd23: Move B2 Ldd23 Balas\n\n33) bigby: Sacrifice Y3 Bigby\nMove B1 Webster Balas\nMove B1 Webster Balas\nPass\nCatastrophe Balas Blue\n\n34) ldd23: Trade R1 B1 Ldd23\n\tldd23: Oops\n\n35) bigby: Build G1 Bigby\n\n36) ldd23: Build G2 Ldd23\n\n37) bigby: Trade G3 Y3 Bigby\n\n\nHomeworlds Online (SDG# 5181)\nStarted: 2006.11.25, Ended: 2007.1.6\nParticipants: Uglyfoot (S), Personman (N)\nWinner: Personman\n\n1) Personman: Homeworld B2 Y1 G3\n\t_SYSTEM_: Welcome to round 5 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\tUglyfoot: greetings and good luck!\r\n\n\n3) Personman: Build G1 Personman\n\tPersonman: To you as well!\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Personman: Trade G1 Y1 Personman\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Battlestar\n\n7) Personman: Build G1 Personman\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Personman: Build G2 Personman\n\n10) Uglyfoot: Build G2 Battlestar\n\n11) Personman: Discover G2 Personman Y3 Y3a\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) Personman: Build Y1 Personman\n\n14) Uglyfoot: Build G1 Uglyfoot\n\n15) Personman: Sacrifice G3 Personman\nBuild G2 Y3a\nBuild G3 Y3a\nBuild G3 Personman\n\n16) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R1 Uglyfoot\nBuild R2 Uglyfoot\n\n17) Personman: Discover Y1 Personman B3 B3a\n\n18) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n19) Personman: Sacrifice G3 Personman\nBuild Y2 Personman\nBuild Y2 B3a\nBuild G3 Personman\n\n20) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove G1 Battlestar Y3a\nMove G2 Battlestar B3a\nCatastrophe Y3a G\n\n21) Personman: Trade Y2 R2 B3a\n\n22) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R2 B3a\n\n23) Personman: Discover Y1 B3a B1 B1a\n\n24) Uglyfoot: Trade R2 Y2 B3a\n\n25) Personman: Trade Y1 R1 Personman\n\n26) Uglyfoot: Discover G1 Uglyfoot B1 Welcomemat\n\n27) Personman: Build R1 Personman\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) Personman: Sacrifice G1 Personman\nBuild R2 Personman\n\n30) Uglyfoot: Build G1 Welcomemat\n\n31) Personman: Build G2 Personman\n\n32) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 B3a\n\n33) Personman: Discover G2 Personman Y3 Y3a\n\n34) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n35) Personman: Move G2 Y3a B1a\n\n36) Uglyfoot: Trade G2 R2 B3a\n\n37) Personman: Trade R1 B1 Personman\n\n38) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 B3a\nBuild G2 Welcomemat\nBuild G3 Uglyfoot\n\n39) Personman: Build B2 Personman\n\n40) Uglyfoot: Trade G3 B3 B3a\n\n41) Personman: Sacrifice Y2 Personman\nMove B1 Personman B3a\nMove B2 Personman B3a\nCatastrophe B3a B\n\n42) Uglyfoot: Trade G1 Y1 Welcomemat\n\n43) Personman: Build G1 Personman\n\tUglyfoot: Wow.  That sure cleaned up the board...\n\n44) Uglyfoot: Discover G1 Welcomemat Y3 Forward\n\n45) Personman: Sacrifice G3 Personman\nBuild G2 B1a\nBuild G3 Personman\nBuild Y2 B1a\n\n46) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Forward\nBuild Y2 Welcomemat\n\n47) Personman: Move G2 B1a Uglyfoot\n\n48) Uglyfoot: Attack G2 Uglyfoot\n\n49) Personman: Move G2 B1a Uglyfoot\nCatastrophe Uglyfoot G\n\n50) Uglyfoot: Sacrifice Y2 Welcomemat\nMove G1 Forward Personman\nMove G3 Forward Personman\nCatastrophe Personman G\n\n51) Personman: Move Y2 B1a Uglyfoot\n\n52) Uglyfoot: Attack Y2 Uglyfoot\n\tUglyfoot: one good turn deserves another...\n\n53) Personman: Move Y1 B1a Uglyfoot\nCatastrophe Uglyfoot Y\n\n54) Uglyfoot: Build G1 Welcomemat\n\n55) Personman: Trade R1 G1 Personman\n\n56) Uglyfoot: Discover G1 Welcomemat Y3 Nexus\n\n57) Personman: Build R1 Personman\n\n58) Uglyfoot: Move G2 Welcomemat Uglyfoot\n\n59) Personman: Trade R1 B1 Personman\n\n60) Uglyfoot: Build G1 Nexus\n\n61) Personman: Build R1 Personman\n\n62) Uglyfoot: Build G2 Uglyfoot\n\n63) Personman: Move R2 Personman Nexus\n\n64) Uglyfoot: Build G2 Nexus\n\n65) Personman: Attack G2 Nexus\n\n66) Uglyfoot: Build G3 Nexus\n\n67) Personman: Build G3 Personman\nCatastrophe Nexus G\n\n68) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n69) Personman: Move G3 Personman Nexus\n\n70) Uglyfoot: Build G1 Uglyfoot\n\n71) Personman: Build G1 Nexus\n\n72) Uglyfoot: Discover G1 Uglyfoot Y3 Breakout\n\n73) Personman: Move G3 Nexus Uglyfoot\n\n74) Uglyfoot: Build G2 Uglyfoot\n\n75) Personman: Sacrifice R1 Personman\nAttack R1 Uglyfoot\n\n76) Uglyfoot: Build G2 Uglyfoot\nCatastrophe Uglyfoot G\n\n77) Personman: Move R2 Nexus Uglyfoot\n\n\nHomeworlds Online (SDG# 5182)\nStarted: 2006.11.25, Ended: 2007.1.6\nParticipants: Subhan64 (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y2 B1 G3\n\t_SYSTEM_: Welcome to round 5 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\tLaurie_Menke: Good luck, Subhan!  :o)\n\n2) Subhan64: Homeworld B2 Y1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Subhan64: Build G1 Subhan64\n\n5) Laurie_Menke: Discover G1 Laurie_menke Y3 Luella\n\n6) Subhan64: Trade G1 R1 Subhan64\n\n7) Laurie_Menke: Build G1 Luella\n\n8) Subhan64: Build R1 Subhan64\n\n9) Laurie_Menke: Move G1 Luella Laurie_menke\n\n10) Subhan64: Move R1 Subhan64 Luella\n\n11) Laurie_Menke: Discover G1 Luella Y2 Sharon\n\n12) Subhan64: Move R1 Luella Sharon\n\n13) Laurie_Menke: Discover G1 Sharon R3 Mars\n\n14) Subhan64: Build G1 Subhan64\n\n15) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n16) Subhan64: Discover G1 Subhan64 Y3 Omicronpersei8\n\n17) Laurie_Menke: Build G1 Mars\n\n18) Subhan64: Build G2 Subhan64\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\n20) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild R1 Subhan64\nBuild R2 Subhan64\n\n21) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n22) Subhan64: Move G2 Subhan64 Omicronpersei8\n\n23) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G3 Laurie_menke Mars\nMove G3 Mars Subhan64\n\n24) Subhan64: Trade G2 Y2 Subhan64\n\n25) Laurie_Menke: Build G2 Subhan64\n\n26) Subhan64: Sacrifice Y2 Subhan64\nMove G2 Omicronpersei8 Subhan64\nMove G1 Omicronpersei8 Subhan64\nCatastrophe Subhan64 Green\n\n27) Laurie_Menke: Trade B1 G1 Laurie_menke\n\n28) Subhan64: Move R2 Subhan64 Mars\n\tSubhan64: I think that will be the game for me\n\tSubhan64: or maybe not, I&#39;m not actually sure on second thought\n\n29) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: I can&#39;t remember what the playing field looked like before, but I do remember that I expected you to do what you did the first time, and wasn&#39;t worried.  So I think you were right to change your move.\n\tLaurie_Menke: I&#39;m now officially worried.  ;o)\n\n30) Subhan64: Attack G1 Mars\n\n31) Laurie_Menke: Trade G2 R2 Laurie_menke\n\tLaurie_Menke: OK, you&#39;ve got me now.  Would you rather play it out or accept my resignation?\n\n32) Subhan64: Trade R1 Y1 Subhan64\n\tLaurie_Menke: Well, actually...I may have a trick or two left up my sleeve.  Do you mind if we play a little longer?\n\tSubhan64: no, certainly let&#39;s play it out!  I&#39;m not convinced it&#39;s a lost cause for you either!\n\tSubhan64: move r2 mars laurie_menke\n\n33) Laurie_Menke: Attack G1 Mars\n\n34) Subhan64: Attack G1 Mars\n\n35) Laurie_Menke: Build G2 Laurie_menke\n\n36) Subhan64: Attack G1 Mars\n\tLaurie_Menke: Just curious...do you know why the timer is frozen?\n\tSubhan64: not a clue\r\n\n\tLaurie_Menke: Oh...I just visited the Forums...Aaron froze all the tournament clocks for the holidays.\n\tSubhan64: Oh, OK\n\n37) Laurie_Menke: Discover G1 Laurie_menke Y3 Luella\n\n38) Subhan64: Move Y1 Subhan64 Mars\n\n39) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild G2 Luella\nBuild G2 Luella\n\n40) Subhan64: Move R2 Mars Sharon\n\tSubhan64: move y1 subhan64 mars\n\n41) Laurie_Menke: Move G2 Luella Laurie_menke\n\n42) Subhan64: Move R2 Sharon Luella\n\n43) Laurie_Menke: Sacrifice G2 Luella\nBuild R1 Laurie_menke\nBuild G2 Laurie_menke\n\n44) Subhan64: Attack G1 Luella\n\n45) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n46) Subhan64: Sacrifice G1 Mars\nBuild R2 Subhan64\n\n47) Laurie_Menke: Discover R1 Laurie_menke Y3 Old\n\n48) Subhan64: Move R2 Subhan64 Mars\n\tSubhan64: D&#39;oh!  That looks like it for me now\n\n49) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove R2 Laurie_menke Old\nMove R2 Old Subhan64\n\tSubhan64: OK, maybe I should stop saying that! ;-)\n\tLaurie_Menke: Darn!  I thought I had you, too.  :o/\n\n50) Subhan64: Sacrifice G1 Mars\nBuild R3 Subhan64\n\n51) Laurie_Menke: Move R1 Old Subhan64\nCatastrophe Subhan64 Red\n\n\tLaurie_Menke: Wow, that one was a nailbiter!  Thanks for the fun, Subhan!  :o)\n\tSubhan64: D&#39;oh!  Thought that move was going to save me, forgot about a couple of details though!\r\nGood game!\r\n\n\nHomeworlds Online (SDG# 5284)\nStarted: 2006.12.1, Ended: 2007.1.23\nParticipants: antihero (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B1 G3\n\n2) antihero: Homeworld B2 G1 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) antihero: Build Y1 Antihero\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) antihero: Trade Y1 G1 Antihero\n\n7) zoltar: Build Y1 Zoltar\n\n8) antihero: Discover G1 Antihero Y3 Bigyella\n\n9) zoltar: Discover Y1 Zoltar G2 Banana\n\n10) antihero: Build Y1 Antihero\n\n11) zoltar: Build Y2 Zoltar\n\n12) antihero: Trade Y1 R1 Antihero\n\n13) zoltar: Trade Y1 R1 Zoltar\n\n14) antihero: Build Y1 Antihero\n\n15) zoltar: Move R1 Zoltar Banana\n\n16) antihero: Discover Y1 Antihero G3 Biggreen\n\n17) zoltar: Build G1 Zoltar\n\n18) antihero: Build G2 Bigyella\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n20) antihero: Build Y2 Antihero\n\n21) zoltar: Discover G1 Zoltar B2 Blueberry\n\n22) antihero: Move G2 Bigyella Blueberry\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild Y2 Banana\n\n24) antihero: Move G1 Bigyella Blueberry\nCatastrophe Blueberry Green\n\n25) zoltar: Sacrifice G2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Banana\n\n26) antihero: Move Y1 Biggreen Banana\nCatastrophe Banana Yellow\n\n27) zoltar: Move Y3 Zoltar Banana\n\tzoltar: Hey, you keep blowin&#39; up my stuff! :)\n\n28) antihero: Trade Y2 G2 Antihero\n\tantihero: well, you&#39;re coming out of it all alright. :)\n\n29) zoltar: Build G1 Zoltar\n\n30) antihero: Build Y1 Antihero\n\n31) zoltar: Build G1 Zoltar\n\tzoltar: Yes, I ended up with an advanced outpost for free!\n\n32) antihero: Discover G2 Antihero Y3 Oldyeller\n\n33) zoltar: Discover G1 Zoltar Y2 New_caprica\n\n34) antihero: Build R1 Antihero\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild G2 New_caprica\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n36) antihero: Build G3 Oldyeller\n\n37) zoltar: Sacrifice Y2 Zoltar\nMove G2 New_caprica Oldyeller\nMove G1 New_caprica Oldyeller\nCatastrophe Oldyeller G\n\n38) antihero: Trade Y1 G1 Antihero\n\tantihero: I am in sooo much trouble.\n\n39) zoltar: Discover G3 Zoltar B2 Blueberry\n\tzoltar: Yes, I think so, as you force me to sacrifice, leaving me with a distinct edge in firepower.\n\n40) antihero: Build G2 Antihero\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\n\n\tantihero: gah this is silly. Good game, sir. You outplayed me from the very beginning.\n\nHomeworlds Online (SDG# 5300)\nStarted: 2006.12.2, Ended: 2006.12.3\nParticipants: Keith (S), DavidF (N)\nWinner: Keith\n\n\tKeith: Hello DavidF.  Have you played Homeworlds before?\n\nHomeworlds Online (SDG# 4726)\nStarted: 2006.12.7, Ended: 2007.1.11\nParticipants: Lexicon (S), DavidF (W), tcerier (N), Uglyfoot (E)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\tDavidF: Hello All - I&#39;ve played Homeworlds a number of times in the materail world, but never in Cyberspace before, so please be frogiving in my awkwardness with some of the movement of pieces. Also, in the material game a key element to the fun is the desgination of players being either &quot;good&quot; or &quot;evil&quot;. I&#39;m not seeing anything like that here. Am I missing something?\r\n\r\n\n\tLexicon: Wow, I didn&#39;t even notice this game had started.  Wonder where tcerier is.  Anyway, DavidF, this variant is Last Man Standing, so you have to kill everyone else.  There is also the sinister variant, where you have to kill the player to your left.\n\tLexicon: Anyway, tcerier isn&#39;t around anymore, so I&#39;m just going to resign him.\n\n2) Lexicon: Homeworld B2 Y3 G3\n\n3) DavidF: Homeworld G3 B1 Y3\n\n4) Uglyfoot: Build G1 Uglyfoot\n\tDavidF: Can someone give me lesson on how to submit orders? I can&#39;t seem to find any better reference than what&#39;s on this page. I&#39;ve tried a number of variations but keep getting &quot;nothing left in stash&quot; messages. Here&#39;s what i most recently typed: Homeworld (G3, B1, Y3)\n\tLexicon: no parentheses or commas.  every command on a separate line.  so your first command would be\r\nhomeworld g3 b1 y3\n\tLexicon: And actually, you just have to type the first letter of each command, so &quot;h g3 b1 y3&quot; would work.  A lot of stuff about homeworlds here is discussed in its wiki, which is linked at the top of the page.  \n\n5) Lexicon: Build G1 Lexicon\n\tDavidF: Thanx\n\n6) DavidF: Build Y1 Davidf\n\n7) Uglyfoot: Discover G1 Uglyfoot B2 Welcomemat\n\n8) Lexicon: Trade G1 R1 Lexicon\n\n9) DavidF: Discover Y1 Davidf G2 Yorn\n\n10) Uglyfoot: Build G1 Uglyfoot\n\tDavidF: So how do i create a new systme called Yorn? I&#39;ve tried different perambulations of  &quot;discover y1 DavidF g1 yorn&quot; and i keep being refused? Help?\n\tLexicon: You can&#39;t move to a size 1 system, only a size 2.  So try &quot;d y1 DavidF g1 yorn&quot;\n\tLexicon: ack.  I mean, &#39;d y1 DavidF g2 yorn&quot;\n\tDavidF: I tried that. I geta &quot;these systmes aren&#39;t connected message.&quot; I&#39;m confused; I&#39;m trying to create a new system.\n\tLexicon: Hm.  if &quot;discover y1 DavidF g2 yorn&quot; doesn&#39;t work, I don&#39;t know what to tell you.  Your system is definitely connected to a g2, but not a g1.\n\n11) Lexicon: Build G1 Lexicon\n\tDavidF: thanx again, Lexicon. i think i&#39;m beginning to understand, although i&#39;ve never played this way. i&#39;ve always played with the direct capacity to send a ship and create whatever size system, without taking into consideration the size i&#39;m sending from. an interesting difference in rules. \n\tLexicon: If the last time you played was with the older version rules, then you have a lot to learn.  I did the same thing; it was quite confusing for a while.\n\n12) DavidF: Build Y1 Davidf\n\n13) Uglyfoot: Trade G1 R1 Uglyfoot\n\n14) Lexicon: Discover G1 Lexicon Y1 Hydrogen\n\tDavidF: UglyFoot and Lexicon - i&#39;ll be out of town 5-6 days and at house with no computer. There&#39;s a chance i can get to mysister&#39;s computer but not definite. Might be a slow go as well until i&#39;m back.\n\tUglyfoot: no problem.  I&#39;m on vacation but with ready access to computers.  I&#39;m a member of a really geeky family...   :&gt;\n\n15) DavidF: Trade Y3 R3 Davidf\n\tLexicon: My family&#39;s geekiness did not extend all the way to grandma&#39;s house. Sorry to be late myself. :)\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) Lexicon: Build G1 Lexicon\n\n18) DavidF: Build Y1 Davidf\n\n19) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n20) Lexicon: Trade G1 B1 Lexicon\n\n21) DavidF: Trade Y1 R1 Davidf\n\n22) Uglyfoot: Build Y1 Uglyfoot\n\n23) Lexicon: Move B1 Lexicon Hydrogen\n\n24) DavidF: Build Y2 Davidf\n\n25) Uglyfoot: Move Y1 Uglyfoot Welcomemat\n\n26) Lexicon: Build B1 Hydrogen\n\n27) DavidF: Move R1 Davidf Welcomemat\n\n28) Uglyfoot: Build Y2 Welcomemat\n\tLexicon: DavidF: Unless I&#39;m mistaken, you could have nuked Uglyfoot last round by putting a yellow in his system.  Very sporting of you not to. :)\n\n29) Lexicon: Build G1 Hydrogen\n\n30) DavidF: Move R3 Davidf Welcomemat\n\n31) Uglyfoot: Sacrifice Y2 Welcomemat\nMove G1 Welcomemat Davidf\nMove Y1 Welcomemat Davidf\n\n32) Lexicon: Discover G1 Hydrogen Y2 Helium\n\tDavidF: Lexicon, oh yes, i see what you mean. Can&#39;t quite take credit for being sporting. Now i&#39;m a bit overextended but it promises to be fun anyway.\n\n33) DavidF: Sacrifice Y2 Davidf\nMove R1 Welcomemat Davidf\nMove R3 Welcomemat Uglyfoot\n\tUglyfoot: ok.  we&#39;ll commence with the invasion!\n\n34) Uglyfoot: Attack R3W Uglyfoot\n\n35) Lexicon: Move B1 Hydrogen Helium\n\n36) DavidF: Attack Y1E Davidf\n\tDavidF: Lexicon, I probably should have asked for a rules clarification before my last move, but i was needing to get some stuff done around here, work, etc. So, does a little red ship in Uglyfoot&#39;s system enable Uglyfoot to attack my R3 with his Y3? If so, that would be a good move on his/her part and not good news for you either. If so, sorry and good luck\n\tLexicon: That is correct.  He will own your R3.  Feel free to undo your move and try something else, as far as I&#39;m concerned.\n\tUglyfoot: DavidF, Please go ahead and undo that.  We can continue from there...\n\tDavidF: UglyFoot, that&#39;s very generous of you. It would make the game more interesting, particularly for me, but it&#39;s a moot point now, it seems. I have lost the &#39;undo&#39; move function. I tried to call an administrator, to have it reinstated but the operator has timed out. Uglyfoot and lexicon, i suggest we go ahead, and i&#39;ll chalk this up as an aflo (another frigging learning opportunity).  \n\tDavidF: Okay, I clearly don&#39;t know what I&#39;m doing.An administrator e-mailed back, and so I&#39;ll send this out, with another Administrator call. \n\tDavidF: Administrator - we are all agreed, Lexicon, Uglyfoot and myself, for me, DavidF, to undo my last move. Could you reinstate my &quot;Undo Last Move&quot; button?\n\tDavidF: Thanks for the offer, Uglyfoot. I cannot connect with the administator. If someone else is willing and wanting me to undo my last move, please feel free to contact the Adminsitrator. I&#39;m okay with proceeding. \n\n37) Uglyfoot: Sacrifice R3 Uglyfoot\nAttack R1W Davidf\nAttack Y1W Davidf\nAttack Y1W Davidf\n\n38) Lexicon: Build G1 Hydrogen\n\tDavidF: Do either of you know a better command for attacking the y1 ship in my system. a y1 DavidF doesn&#39;t work and i suspect the presence of two y1 ships in the sytem is complicating things.\n\tLexicon: read the little text below the command list.  a y1e davidf\n\n39) Uglyfoot: Build G2 Uglyfoot\n\tDavidF: thanx\n\n40) Lexicon: Build G2 Helium\n\n41) Uglyfoot: Move G1 Davidf Helium\n\n42) Lexicon: Move G1 Helium Uglyfoot\n\n43) Uglyfoot: Trade G2 R2 Uglyfoot\n\n44) Lexicon: Build G2 Uglyfoot\n\n45) Uglyfoot: Build G2 Helium\n\n46) Lexicon: Trade G1 B1 Uglyfoot\n\n47) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack G2S Uglyfoot\nAttack G2S Helium\n\n48) Lexicon: Sacrifice G1 Hydrogen\nBuild B1 Uglyfoot\n\n49) Uglyfoot: Move G2 Helium Hydrogen\n\n50) Lexicon: Sacrifice G1 Hydrogen\nBuild B2 Uglyfoot\n\n51) Uglyfoot: Build Y2 Davidf\n\n52) Lexicon: Trade B1 G1 Uglyfoot\n\n53) Uglyfoot: Attack G1S Uglyfoot\n\n54) Lexicon: Build G1 Lexicon\n\n55) Uglyfoot: Move G1 Helium Hydrogen\n\n56) Lexicon: Sacrifice R1 Lexicon\nAttack R1E Uglyfoot\n\n57) Uglyfoot: Sacrifice R1 Davidf\nAttack R1S Uglyfoot\n\n58) Lexicon: Trade G3 R3 Lexicon\n\n59) Uglyfoot: Trade Y2 R2 Davidf\n\n60) Lexicon: Move B1 Hydrogen Helium\n\n61) Uglyfoot: Sacrifice R2 Davidf\nAttack B1S Helium\nAttack B1S Helium\n\n62) Lexicon: Sacrifice R3 Lexicon\nAttack R1E Uglyfoot\nAttack G2E Uglyfoot\nAttack G1E Uglyfoot\n\n63) Uglyfoot: Move G2 Hydrogen Lexicon\n\n64) Lexicon: Trade B2 Y2 Uglyfoot\n\n65) Uglyfoot: Trade Y3 R3 Uglyfoot\n\n66) Lexicon: Attack G1E Uglyfoot\n\n67) Uglyfoot: Attack R1S Uglyfoot\n\n68) Lexicon: Build G1 Uglyfoot\nCatastrophe Uglyfoot G\n\n69) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack G1S Lexicon\n\n\tLexicon: OK this has gone on too long. :)\n\tUglyfoot: Let me solve that.  Good game.\n\nHomeworlds Online (SDG# 5422)\nStarted: 2006.12.10, Ended: 2007.5.19\nParticipants: apollotiger (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 Y1 B3\n\n2) apollotiger: Homeworld G1 B2 Y3\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) apollotiger: Build Y1 Apollotiger\n\n5) MatrixFrog: Build B1 Matrixfrog\n\n6) apollotiger: Discover Y3 Apollotiger G3 Quercorium\n\tMatrixFrog: The conventional wisdom is that you don&#39;t want your homeworld to be size-identical to your opponent&#39;s, because it effectively puts you closer together. But the disadvantage is symmetrical, so it works out.\n\n7) MatrixFrog: Trade B1 G1 Matrixfrog\n\n8) apollotiger: Build Y1 Apollotiger\n\n9) MatrixFrog: Build B1 Matrixfrog\n\tMatrixFrog: it&#39;s generally considered a bad idea to leave your homeworld without a large ship, especially if you can&#39;t build a new large ship in the near future\n\n10) apollotiger: Trade Y1 R1 Apollotiger\n\n11) MatrixFrog: Build G1 Matrixfrog\n\tMatrixFrog: Already? Are you expecting to be invaded?\n\n12) apollotiger: Trade R1 B1 Apollotiger\n\tapollotiger: I could. I want to have ships of different types.\n\n13) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n14) apollotiger: Build Y2 Apollotiger\n\n15) MatrixFrog: Discover B1 Matrixfrog Y3 Alpha\n\n16) apollotiger: Trade Y2 G2 Apollotiger\n\tMatrixFrog: you just traded y1-&gt;r1-&gt;b1...\n\n17) MatrixFrog: Trade G1 R1 Matrixfrog\n\n18) apollotiger: Move B1 Apollotiger Alpha\n\n19) MatrixFrog: Move B1 Alpha Apollotiger\n\n20) apollotiger: Move B1 Alpha Matrixfrog\n\n21) MatrixFrog: Attack B1 Matrixfrog\n\n22) apollotiger: Move G2 Apollotiger Quercorium\n\n23) MatrixFrog: Build B1 Apollotiger\n\tMatrixFrog: What&#39;s the problem?\n\n24) apollotiger: Trade Y1 R1 Apollotiger\n\n25) MatrixFrog: Build B2 Apollotiger\n\n26) apollotiger: Attack B1 Apollotiger\n\n27) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R1 Apollotiger\n\n28) apollotiger: Move Y3 Quercorium Apollotiger\n\n29) MatrixFrog: Build B2 Apollotiger\n\n30) apollotiger: Move B1 Apollotiger Quercorium\n\n31) MatrixFrog: Build B3 Apollotiger\n\n\tMatrixFrog: I think you have a really interesting choice to make here.\n\nHomeworlds Online (SDG# 5390)\nStarted: 2006.12.15, Ended: 2007.1.2\nParticipants: Keith (S), papa_bear (N)\nWinner: Keith\n\n1) papa_bear: Homeworld G2 B1 Y3\n\tpapa_bear: Hi.\n\n2) Keith: Homeworld B1 Y3 G3\n\tKeith: Hello papa_bear.\n\n3) papa_bear: Build Y1 Papa_bear\n\tpapa_bear: Have you played this before? I know I could check your profile, but it would take so long to load :)\n\n4) Keith: Build G1 Keith\n\tKeith: The page load times can be a bear.  This is my 23rd game.  My track record is 15-7.\n\n5) papa_bear: Trade Y1 G1 Papa_bear\n\tpapa_bear: Intimidating. I&#39;m watching and learning...\n\n6) Keith: Trade G1 B1 Keith\n\tKeith: Have you played before?  We can make it an unrated game if you want.\n\n7) papa_bear: Build Y1 Papa_bear\n\tpapa_bear: build y1 papa_bear\n\tpapa_bear: Boy that was stupid.\n\n8) Keith: Build G1 Keith\n\tpapa_bear: It is my first time, but I am happy to leave it rated. I came to SDG to play Castle Danger. That&#39;s the only game in which my rating matters much to me. I will try my best in other games, though, for the sport of it if not for the rating. I think I figured out why your first ship was a g3. Are you going to sacrifice it relatively early to get ahead on production?\n\tKeith: I will leave the game a rated one then.  I came to SDG to play Cannon and discovered Homeworlds which has become my strong second interest.  Matt is currently schooling me in the ways of Castle Danger.\r\n\r\nYou are sort of on the right track with the g3.  I will eventually sacrifice it for growth but not now for two reasons.  1) it would leave me without a 3-pointer to defend my homeworld and 2) If I did it now it is a one shot deal.  I want to be able to recruit a g3 when I sacrifice it so I can repeat the process.\r\n\r\nI started off this game playing hardball.  For example I just made it more difficult for you to develop blue.\r\n\n\n9) papa_bear: Build Y1 Papa_bear\n\tpapa_bear: I think I can just begin to see the kind of complexities involved in playing this game well. I have not been thinking seriously about the limitations on the global reserve stash. I have little notion what to do next, but I will think of something...\n\n10) Keith: Trade G1 Y1 Keith\n\tKeith: Resource management (both acquisition and distribution) is a substantial part of the game.  The resource management aspect is part of why I tried Castle Danger.  \r\n\r\nWhat to do in Homeworlds after you get started comes up often enough that there is an entry on it in the wiki.\n\n11) papa_bear: Build G1 Papa_bear\n\tpapa_bear: build g1 papa_bear\n\tpapa_bear: Oops. Second time for that idiocy. By the way, did you enjoy Castle Danger?\n\n12) Keith: Build G1 Keith\n\tKeith: I am enjoying Castle Danger.  I like the piece entry decision each turn and the space management.\n\n13) papa_bear: Trade Y1 R1 Papa_bear\n\n14) Keith: Build B2 Keith\n\tpapa_bear: I am very happy if you like Castle Danger. I hope it will catch on. Personally, I think it&#39;s a great game.\n\n15) papa_bear: Build R1 Papa_bear\n\tpapa_bear: Oh... I thought all the 1-point pieces had to go before we could build 2-point ships.\n\n16) Keith: Trade B2 R2 Keith\n\tKeith: All the 1-point pieces of that color.  To put it another way you build the smallest available piece of the color being built.\n\tKeith: A green 2-pointer is available to you but your green piece density in your homeworld does not allow you to safely build one there.\n\n17) papa_bear: Build R1 Papa_bear\n\n18) Keith: Discover G1 Keith R2 Mustafar\n\n19) papa_bear: Discover R1 Papa_bear B3 Mahalalel\n\n20) Keith: Build G2 Keith\n\tKeith: Mahalalel =  Genesis 5:12-17\n\n21) papa_bear: Move G1 Papa_bear Mahalalel\n\tpapa_bear: Do you celebrate Christmas because you celebrate Christ?\n\n22) Keith: Sacrifice G3 Keith\nBuild G2 Mustafar\nBuild G3 Keith\nBuild B2 Keith\n\tKeith: Yes.  Though I am no longer the Bible thumping no smoking, no drinking, no dancing, sin and damnation hard core Southern Baptist I was raised to be.\n\n23) papa_bear: Build G3 Mahalalel\n\tKeith: I am now operating what is known as &quot;the factory.&quot;\n\tpapa_bear: Now, if I were a hardcore Southern Baptist I might feel insulted. I&#39;m not, though. But to compare to your checklist: I&#39;m cool with moderate drinking. I can&#39;t justify even moderate smoking, as hard as I&#39;ve tried. I used to be a smoker, and even after I came to the conclusion that there was no justification for it, it took me a long time to quit. I don&#39;t dance, but that&#39;s not an ethical thing. Well, maybe it is: it would be wrong to subject people to seeing me try to dance :). I take sin and damnation very seriously, but I think that doing nothing but yelling at people about their sins is itself a sinful thing to do, as well as counterproductive and unbiblical. I&#39;m not positive what Bible-thumping is, but I&#39;m probably guilty of that one. I derive all my doctrine, as much as possible, from the Bible rather than from other sources. That might make me a thumper.\r\nBy naming that new system &quot;Mahalalel&quot; I was putting up a flag. I&#39;m glad to know that we celebrate Christmas for the same reason.\r\nWill you be sacrificing those g2&#39;s soon? I need to think a bit before I proceed with my next turn.\n\tKeith: Moderate drinking is okay.  I never get around to it much because I don&#39;t like beer.\r\n\r\nSmoking is flat out.  I have seen what it does to lung tissue, the amount of money people spend in a year on smoking instead of their families and what it does to work productivity (smoke breaks, working one handed).  \r\n\r\nDancing.  I have tried it.  Never liked it.  Even with more than moderate drink in me.\r\n\r\nI grew up with hell fire and damnation sermons.  One example of my Bible thumping was going out to Mardi Gras parades and trying to convert parade goers.\r\n\r\n\n\tKeith: I am not likely to sacrifice a g2 soon.  I need to  keep a second green with the g3 so I can sacrifice and re-build the g3.\n\tpapa_bear: Wow. That is hardcore. If Bible-thumping involves thumping others with the Bible, then I&#39;m not in that camp. I am a hundred percent with you on smoking. I hate to think how much money I wasted on cigarrettes. Every dollar could have gone to my kids instead, or to any of the millions of people around the world with insufficient food, medical care, and other necessities. I have a confession: I like whiskey. I drink only rarely and never much, but I feel I have to be very careful with a strong drink. It would be easy to consume more than I intend.\r\nAbout the sacrificing ships, I see now. I had forgotten that new g3 was destined for sacrifice.\n\n24) Keith: Move B2 Keith Mustafar\n\tKeith: We are on the same page when it comes to whiskey.  I do drink sake.  I usually get a bottle on my birthday and for Christmas.\n\tKeith: I have worked myself into a bit of a corner.  If I build the g3 in Keith then you can sacrifice your y3, move a g1 into Keith and cause a catastrophe destroying all my green in Keith.  More importantly it would leave me without a 3-pointer.  If I don&#39;t grab the g3 you will and you will have three 3-pointers to my one.  If I build the g3 in Mustafar you can sacrifice a y1 and cause a green catastrophe.\n\n25) papa_bear: Sacrifice G3 Mahalalel\nBuild G3 Mahalalel\nBuild Y1 Papa_bear\nBuild R2 Papa_bear\n\tpapa_bear: Well, giving your opponent advice may not be part of a healthy strategy ;)\n\n26) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R3 Keith\nBuild Y2 Keith\n\tKeith: True.  Can&#39;t really describe it as wise.  I am more interested in your learning curve than my rating points.\n\n27) papa_bear: Move Y1 Papa_bear Mahalalel\n\tpapa_bear: That&#39;s very much appreciated, Keith. However, in the unlikely event that this game terminates in my favor, I would insist it do so unrated. As when Solomon received both wisdom and riches, so you would enjoy both the opportunity to help me and also that for which you had not asked: a safe rating :)\n\tKeith: My concern is that this game is has run on the dull side for you.  There is a certain common experience of &quot;Okay I am building a bunch of ships now what&quot; though it is usually punctuated by more threats and less buildup than the present case.\n\tKeith: Your offer if the game goes in your favor is appreciated.  I will endeavor to not have the issue come up.\n\n28) Keith: Move Y1 Keith Mustafar\n\tpapa_bear: I expect nothing less from you :)\r\nI hope this turn was safe enough. Sacrificing either my g3 or my y3 was tempting, but in either case I think I would have been falling into a trap. Let me know if I&#39;m thinking along the right lines. If I sacrifice y3 and move a y1 into Keith and trigger the catastrophe, your r3 can then, thanks to the collapse of your y3 star, enter Mahalalel and reorient my g3. If I sacrifice my g3, any combination of 3 ships I might build would necessarily leave one or the other of my systems vulnerable to catastrophe.\r\nThere&#39;s no danger of boredom here. I can feel the tension in the game. Non-chessplayers sometimes think it involves tremendous patience to play chess, but when you&#39;re really playing it no patience is required. I think it&#39;s the same here. I&#39;m new to the game, but -- thanks in large part to a kind and instructive opponent -- I am gaining some sense of the thrusts and parries which can occur under the surface of a &quot;buildup&quot; game of Homeworlds.\n\tKeith: It is best you did not make either sacrifice.  You are right about the g3 sacrifice.  I am going to go ahead and go into a lengthy explanation, even thought this is a rated game since the move is past.  I will leave the explanation up until I make my move tomorrow to make it easier to track with the current board position.\r\n\r\nThe y3 is more complicated.  It is good that your are keeping in mind that distances between systems would change.  However, if I followed a yellow homeworld catastrophe by moving my r3 into Mahalalel you would be able to reorient my r3.  Your r1 in Mahalalel gives any of your ships in that system the power to attack just as a yellow ship gives any friendly local ship the power to move, in this case your g3.  \r\n\r\nThe y3 sacrifice would be expensive for you.  You would lose a y3 and y1, I would lose a y2, y1, and a system.  I follow up by trading for a y2 in Mustafar.  If you retreat your g3 I sacrifice my y2, move a g1 into your homeworld and green catastrophe.  You have are down one system, your remaining system is blue and I have a head start on blue ships and you have no 3-pointers while I have two.  The end is near.  If you don&#39;t move your g3 back then I sacrifice my y2 and move in one of my 3-pointers in.  If I move in the g3 you have to destroy it or I will sacrifice my r2 next attack your r2 and g1 and the end is near.  Your only defense would be to build a green and blow up your own ships and system along with my g3.  Alternatively I move the r3 in and trigger a red catastrophe and your home system is down to only a g1 ship.  Your in a lot more trouble than your original yellow catastrophe put me in.\r\n\n\tpapa_bear: Immediately after I made the move and sent the message, I realized that you couldn&#39;t move the r3 and attack the g3 on the same turn. But I wasn&#39;t sure whether that meant the y3 sacrifice was a good idea. I was pretty sure you wouldn&#39;t have allowed it if it was. Thanks for your explanation.\n\n29) papa_bear: Trade R2 B2 Papa_bear\n\n30) Keith: Move G2 Mustafar Mahalalel\n\n31) papa_bear: Sacrifice Y1 Mahalalel\nMove G3 Mahalalel Mustafar\n\tpapa_bear: Am I correct in thinking that I&#39;m in trouble here?\n\tpapa_bear: Don&#39;t answer that, actually.\n\n32) Keith: Sacrifice R2 Keith\nAttack R1 Mahalalel\nAttack G1 Mahalalel\n\tpapa_bear: Most unsatisfactory, but I couldn&#39;t see much else.\n\tKeith: You were going to suffer some loss.  Though I am not sure why you moved the g1 and b2 into Mahalalel.  I can attack them by sacrificing my r3.  Here were a few possibile alternatives.\r\n\r\nmove g3 mahalalel mustafar - you threaten to attack my ships in mustafar while I attack your ships in Mahalalel. \r\n\r\nSacrifice your g1 in Mahalalel and pass on the build leaving only two greens in Mahalalel and I can&#39;t cause a green catastrophe next turn.\r\n\r\nSacrifice the y1 in Mahalalel and discover a new system with the g3.  The g3 is safe and only two 1-point ships of yours remain for me to attack.\r\n\r\nSacrifice the g3, build two green ships in Mahalalel and either a y2 or r2.  Cause a green catastrophe in Mahalalel.\n\tKeith: Feel free to undo and give any of these a try if you want.  The g1 sacrifice below also puts the g1 back in the stash and prevents my building a g3 in Mustafar.\n\tpapa_bear: Ah. I forgot that a sacrifice allows you to perform activities in any system you occupy. I also had not considered sacrificing one of my ships and passing on the available activity. I did consider discovering with my g3 or moving it to Mustafar, but I felt uncomfortable having to put it in a 2-pt system where it is closer to your Homeworld than to mine. Would discovering with the g3 require the sacrifice of the y1? Can&#39;t it move anyway since I have access to yellow technology in that system? I will undo, but I&#39;m not sure which course I&#39;ll choose. Preventing you from building a g3 sounds good, but so does moving g3 to Mustafar and attacking. I&#39;ll think about it some more while I await your next message.\n\tKeith: You don&#39;t really need to sacrifice the y1 to move the g3 out.  It is just a way of denying me the y1.  I could catastrophe the g3 if it ends up at Mustafar.  I could not build two more green ships there to cause the catastrophe because there is only one left in the stash.  To do so I would need to sacrfice a y2, a g2, another g2 and lose the g1 already there.  Expensive.  \n\tpapa_bear: Cool. That y1 sacrifice is a nifty finesse. But I&#39;m still not sure which course I want to choose. I&#39;ll probably move tomorrow morning (GMT+8).\n\tKeith: No rush.  I am plenty busy.  You see there is this other finished game where I am consuming lots of time with some very enjoyable analysis...\n\tpapa_bear: Sounds familiar. Odd that a game in progress is sitting, while a finished game is consuming time and energy...\n\n33) papa_bear: Attack B2 Mustafar\n\tKeith: I just spotted another way to go after your g3 at Mustafar.  Since I did not mention it I before I won&#39;t take it.  There is only one green in the stash now but if I sacrifice the g2 at Keith there is now two greens in the stash and I can build them both in Mustafar and create a green catasrophe.\n\n34) Keith: Move Y1 Mustafar Mahalalel\n\n35) papa_bear: Build B2 Mustafar\n\n36) Keith: Sacrifice Y2 Keith\nMove Y1 Mahalalel Papa_bear\nMove G1 Mahalalel Papa_bear\n\n37) papa_bear: Trade Y3 B3 Papa_bear\n\tKeith: Looks like I am headed for a blue catastrophe in Keith.  Here is a distraction for you.\n\n38) Keith: Sacrifice G2 Mahalalel\nBuild G2 Papa_bear\nBuild Y1 Papa_bear\nCatastrophe Papa_bear Green\n\tpapa_bear: That certainly gives me something to think about. However, I wasn&#39;t so much planning a blue catastrophe. It seems to me that two 2pt ships would be a heavy cost, and I&#39;m not sure that closing the distance between our homeworlds would be in my favor. Of course, that&#39;s all history. Now I need to do something about your invasion before it has catastrophic consequences... \n\n39) papa_bear: Trade B3 G3 Papa_bear\n\tKeith: I commend you on keeping the change in distance between homeworlds in mind.  Most players learn that one the hard way.\r\n\r\nAnother thing to keep in mind in choosing how to deal with my invastion of your homeworld system is that I can use your system piece colors as well as my ship colors without having to resort to sacrifices.\n\n40) Keith: Sacrifice B1 Keith\nTrade Y1 B1 Papa_bear\n\tpapa_bear: Oh that&#39;s ugly.\n\n41) papa_bear: Attack Y1 Papa_bear\n\tKeith: It is.  It was tempting last turn to trade the y1 for a blue and blue catastrophe instead.  I see that you have taken the move that directly avoids that.\n\n42) Keith: Sacrifice R3 Keith\nAttack R1 Papa_bear\nAttack R1 Papa_bear\nAttack Y1 Papa_bear\n\n43) papa_bear: Trade B2 G2 Papa_bear\n\n44) Keith: Sacrifice G2 Keith\nBuild B2 Papa_bear\nBuild B3 Papa_bear\nCatastrophe Papa_bear Blue\n\tpapa_bear: Argh.\n\n\tKeith: Once there gets to be a lot of ships the possiblities two or three moves out get pretty wild.\n\tKeith: Thank you for the game.  You see things better than most first time Homeworlds players.\r\n\r\nI hope this game gave you a good glimpse of Homeworlds and you found it worth further play.  I don&#39;t want my playing rough the last three turns to be discouraging.\n\tpapa_bear: I keep overlooking that sacrifices give you access to that technology in all occupied systems.\r\nNo, your playing rough is not discouraging. If I may quote another of my pearls of wisdom which I so graciously bestow upon my young students: Always play your best moves, even against beginners; it&#39;s the best way for them to learn.\r\nSo far from being discouraging, your playing hard was encouraging, in the sense that it helped me see the possibilities in this game. My interest is definitely excited.\r\nHowever, I have not long to go before my next semester of classes starts (I&#39;m a student myself), and I think I&#39;m going to hold off getting into Homeworlds for a while. My time is going to running very short very soon.\n\nHomeworlds Online (SDG# 5553)\nStarted: 2006.12.19, Ended: 2007.2.2\nParticipants: dsheldon (S), gundam_blade (N)\nWinner: dsheldon\n\n1) gundam_blade: Homeworld B3 G2 Y3\n\n2) dsheldon: Homeworld B1 Y2 G3\n\n3) gundam_blade: Build Y1 Gundam_blade\n\n4) dsheldon: Build G1 Dsheldon\n\n5) gundam_blade: Trade Y1 R1 Gundam_blade\n\n6) dsheldon: Discover G1 Dsheldon B3 Sirius\n\n7) gundam_blade: Build Y1 Gundam_blade\n\n8) dsheldon: Build G1 Sirius\n\n9) gundam_blade: Trade Y1 B1 Gundam_blade\n\n10) dsheldon: Trade G1 Y1 Sirius\n\n11) gundam_blade: Discover B1 Gundam_blade G1 Boobies\n\n12) dsheldon: Build G1 Dsheldon\n\n13) gundam_blade: Build B1 Boobies\n\n14) dsheldon: Build G2 Sirius\n\n\tdsheldon: Are we still playing?  I&#39;ll give another week before I force your resignation.\n\nHomeworlds Online (SDG# 5615)\nStarted: 2006.12.28, Ended: 2007.1.12\nParticipants: Keith (S), Preacher (W), GameBrain42 (N), akiva (E)\nWinner: Preacher\n\n\nHomeworlds Online (SDG# 5649)\nVariants: &quot;Unrated&quot;\nStarted: 2006.12.29, Ended: 2007.1.3\nParticipants: Keith (S), Preacher (N)\nWinner: Keith\n\n1) Preacher: Homeworld B2 Y1 G3\n\n2) Keith: Homeworld B1 Y3 G3\n\tKeith: Hello Preacher,\r\nLet me know if you have any questions as the game progresses.\n\n3) Preacher: Build G1 Preacher\n\n4) Keith: Build G1 Keith\n\tPreacher: I will, Keith.  This is my very first go at this one (i am in another game but awaiting my first turn).  I&#39;ve read the rules - of course :) - multiple times.  Also, I found some strategy articles at the wiki sites last night that i read through.  Additionally, I followed the log of one of your games where you were teaching a fella to play.  All those things have been very helpful ... I think :).\n\tKeith: You have certainly done a more extensive preparation for your first game than most have.  This game will help clarify what you have read.\n\n5) Preacher: Trade G1 B1 Preacher\n\n6) Keith: Trade G1 Y1 Keith\n\n7) Preacher: Discover B1 Preacher G3 Orion\n\n8) Keith: Build Y1 Keith\n\tKeith: So what happens if I build and take the last y1?  How do you develop yellow pieces?\n\tPreacher: Trade in other pieces for yellow, I think.  Aren&#39;t you in the same situation re: blue? (??) :)\n\tKeith: Yes to trading and yes I am in the same situation.\n\n9) Preacher: Build B1 Orion\n\n10) Keith: Discover Y1 Keith G2 Midworld\n\n11) Preacher: Build B2 Orion\n\n12) Keith: Build Y2 Keith\n\n13) Preacher: Trade B2 Y2 Orion\n\n14) Keith: Trade Y2 B2 Keith\n\n15) Preacher: Build Y2 Orion\n\n16) Keith: Trade Y1 R1 Keith\n\n17) Preacher: Trade Y2 R2 Orion\n\n18) Keith: Move B2 Keith Midworld\n\n19) Preacher: Trade B1 Y1 Orion\n\n20) Keith: Build G1 Keith\n\n21) Preacher: Move Y1 Orion Preacher\n\n22) Keith: Build Y2 Midworld\n\n23) Preacher: Build Y2 Orion\n\n24) Keith: Sacrifice Y2 Midworld\nMove Y1 Midworld Orion\nMove Y1 Orion Preacher\n\tKeith: You seem to have a better grasp of the game than most first time players.  You avoid dangerous buildups of one color in a system, avoid getting locked out of a color, and manipulate the stash to your advantage.\n\n25) Preacher: Trade Y1 R1 Preacher\n\tPreacher: Thanks, Keith.  Be prepared for some major rookie blunders, though :).\n\n26) Keith: Sacrifice R1 Keith\nAttack R1 Preacher\n\tKeith: That is okay.  I just made one of my own.  I can&#39;t build yellow ships in your homeworld to pressure you into sacrificing your r2.\n\n27) Preacher: Sacrifice R2 Orion\nAttack R1 Preacher\nAttack Y1 Preacher\n\n28) Keith: Trade G1 R1 Keith\n\n29) Preacher: Trade Y2 R2 Orion\n\n30) Keith: Build G1 Keith\n\n31) Preacher: Build G1 Preacher\n\n32) Keith: Trade G1 Y1 Keith\n\n33) Preacher: Build Y2 Orion\n\n34) Keith: Move Y1 Keith Midworld\n\tPreacher: Hitting the sack here, Keith.  I&#39;m learning a lot here.  This is great!\n\tKeith: Okay, tommorrow then.\n\n35) Preacher: Trade Y2 R2 Orion\n\n36) Keith: Build G1 Keith\n\tPreacher: REALLY the last one tonight this time :).\n\n37) Preacher: Build Y2 Orion\n\n38) Keith: Build Y2 Midworld\n\tKeith: I will temp you with a quick response so you have time for just one more.\n\tKeith: That should be tempt not temp.\n\n39) Preacher: Discover Y2 Orion B1 Mars\n\n40) Keith: Trade Y1 R1 Midworld\n\n41) Preacher: Move G1 Preacher Orion\n\n42) Keith: Build R2 Keith\n\n43) Preacher: Build R3 Preacher\n\n44) Keith: Build R3 Midworld\n\tPreacher: build r3 preacher\n\n45) Preacher: Move G3 Preacher Orion\n\tPreacher: lol. :)\n\tKeith: Yeah, that order entry box is so far away it is easy, and fairly common, to chat an order at least once.\n\n46) Keith: Move R1 Midworld Orion\n\n47) Preacher: Move G3 Orion Preacher\n\tKeith: You might want to rethink that move.  Let me demonstrate.  I will undo in a few minutes.\n\n48) Keith: Sacrifice Y2 Midworld\nMove R1 Keith Midworld\nMove R1 Midworld Orion\nCatastrophe Orion Red\n\n49) Preacher: Move R3 Preacher Orion\n\tKeith: I was going to undo my move.\n\tPreacher: can i undo and then you undo?\n\tKeith: Lets try it.\n\tPreacher: now you try\n\tKeith: That worked.  I can make a different move now but we are limited to one undo each so you can&#39;t undo the g3 move.\n\n50) Keith: Trade G1 Y1 Keith\n\n51) Preacher: Build Y2 Preacher\n\n52) Keith: Move Y1 Keith Midworld\n\tKeith: I am attempting to enter the following order:\r\nsacrifice y2 midworld\r\nmove r1 keith midworld\r\nmove r1 keith orion\r\ncatastrophe orion red\r\nI get an error that I do not own an R1 in keith.\n\tAaron: once you move the r2 from keith to midworld you no longer have an r1 in keith.  I assume one of those r1&#39;s needs to be an r2.\n\tAaron: once you move the r1 from keith, that is.\n\tKeith: Doh!  User error.  Sorry for the interruption Aaron.  Thanks.\n\n53) Preacher: Build Y3 Orion\n\n54) Keith: Build Y3 Midworld\n\n55) Preacher: Discover Y1 Preacher B3 Pluto\n\tKeith: You are just not going to let me get a 3-pointer safely into Orion are you?\n\n56) Keith: Build G1 Keith\n\n57) Preacher: Build R1 Preacher\n\n58) Keith: Move R3 Midworld Mars\n\n59) Preacher: Move Y2 Mars Midworld\n\n60) Keith: Move Y3 Midworld Mars\n\n61) Preacher: Build B2 Orion\n\n62) Keith: Build B3 Midworld\n\n63) Preacher: Build G1 Preacher\n\n64) Keith: Discover B3 Midworld R3 Miranda\n\n65) Preacher: Trade G3 B3 Preacher\n\n66) Keith: Build R1 Keith\n\n67) Preacher: Build G2 Preacher\n\n68) Keith: Sacrifice R1 Keith\nAttack Y2 Midworld\n\n69) Preacher: Discover G1 Preacher G3 Tatooine\n\n70) Keith: Sacrifice Y3 Mars\nMove B2 Midworld Miranda\nMove B2 Miranda Preacher\nMove B3 Miranda Preacher\nCatastrophe Preacher Blue\n\n71) Preacher: Move B2 Orion Midworld\n\n72) Keith: Move Y2 Midworld Preacher\n\n\tPreacher: I think that probably does it. :).\r\n\r\nThanks for the game Keith!\n\tKeith: Yes it does.  You have been tough to pin down.  You put your pre-game prep to good use.  Thank you for the good game.\n\tPreacher: Thanks, Keith.  I look forward to learning more from you if you&#39;re interested...\n\nHomeworlds Online (SDG# 5639)\nStarted: 2007.1.1, Ended: 2007.3.14\nParticipants: jeep (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: Hello Jeep.  Did you have a good holiday?\n\n2) jeep: Homeworld B3 Y1 G3\n\tjeep: Hey!  Yes, I had a great time.  Very tiring, though.  I am glad to have a couple days before going to work.\n\n3) Keith: Build G1 Keith\n\tKeith: Same here.  I had visitors - 2 siblings, 3 cousins, 3 dogs for 4 days.\n\n4) jeep: Build G1 Jeep\n\n5) Keith: Trade G1 Y1 Keith\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) Keith: Build G1 Keith\n\n8) jeep: Build G1 Jeep\n\n9) Keith: Discover Y1 Keith G3 Behemoth\n\n10) jeep: Build Y2 Jeep\n\n11) Keith: Build Y2 Behemoth\n\n12) jeep: Discover Y1 Jeep G2 Grower\n\n13) Keith: Move Y2 Behemoth Grower\n\n14) jeep: Sacrifice G3 Jeep\nBuild Y3 Grower\nBuild Y3 Grower\nBuild Y3 Jeep\nCatastrophe Grower Yellow\n\n15) Keith: Discover Y1 Behemoth G2 Bend\n\n16) jeep: Trade Y2 R2 Jeep\n\n17) Keith: Build Y1 Bend\n\n18) jeep: Trade Y3 G3 Jeep\n\tjeep: I see now that I made a poor play last move.  Hmm...\n\n19) Keith: Trade G1 R1 Keith\n\tKeith: Sorry to take so long to move.\n\n20) jeep: Trade G1 B1 Jeep\n\tjeep: No problem\n\n21) Keith: Build G1 Keith\n\n22) jeep: Discover B1 Jeep Y2 Yonkers\n\n23) Keith: Build Y2 Bend\n\n24) jeep: Build R1 Jeep\n\tjeep: I never understand how I manage to get myself into this position... Which means it&#39;s something my opponent does that I don&#39;t see.  I need to review my games where I end up like this.\n\n25) Keith: Discover Y1 Bend G1 Prineville\n\n26) jeep: Move G3 Jeep Bend\n\n27) Keith: Sacrifice Y1 Bend\nDiscover Y2 Bend G3 Madras\n\tjeep: You&#39;re building Oregon... ;)\n\tKeith: At one time I was a big frog in the small pond of Prineville.\n\tKeith: You moved your 3-pointer out of your homeworld!  Gutsy move.  Even when it looks safe I am always worried that I am overlooking something and making a game ending mistake.\n\n28) jeep: Sacrifice B1 Yonkers\nTrade G3 Y3 Bend\n\tjeep: Yeah, it frightens me too, but not as much as you having a Yellow Monopoly.\n\tjeep: Of course, I got &quot;unlucky&quot; and forgot to consider something.\r\n\r\nWe had some cousins who lived in Prineville.  Wonder if you knew them... It was a no-stoplight town when they first lived there and just moved away a year or two ago...\n\n29) Keith: Build Y1 Prineville\n\n30) jeep: Move Y3 Bend Jeep\n\tKeith: I left Prineville 8 years ago.  They had 3 stoplights and one blinker at that time.  Wheeler county still had only one blinking light.\n\n31) Keith: Build Y2 Madras\n\n32) jeep: Discover R2 Jeep B2 Tigard\n\n33) Keith: Build Y3 Prineville\n\n34) jeep: Trade R2 G2 Tigard\n\n35) Keith: Sacrifice Y3 Prineville\nDiscover Y1 Prineville B2 Beaverton\nMove Y1 Beaverton Jeep\nMove Y2 Madras Tigard\n\n36) jeep: Trade Y3 G3 Jeep\n\n37) Keith: Sacrifice R1 Keith\nAttack R1 Jeep\n\n38) jeep: Trade G3 R3 Jeep\n\tjeep: *sigh*  I am just not thinking this game. \n\n39) Keith: Sacrifice G3 Keith\nBuild G1 Keith\nBuild R1 Jeep\nBuild R1 Jeep\nCatastrophe Jeep Red\n\tKeith: You have not played at your usual level this game.   Between moving and trading you have spent 5 turns juggling your 3-pointer in your home system.  This time it has caught up with you.  \n\tjeep: Yeah, no idea what happened.  In HW and Alien City, it seems that once I make a mistake, I get over flustered and can&#39;t recover.  Most likely a mental thing on my part.\n\n\nHomeworlds Online (SDG# 5645)\nStarted: 2007.1.2, Ended: 2007.1.15\nParticipants: Keith (S), Uglyfoot (N)\nWinner: Keith\n\n1) Uglyfoot: Homeworld Y3 B1 G3\n\n2) Keith: Homeworld Y1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tUglyfoot: hey, keith.  Good Luck!\n\n4) Keith: Build G1 Keith\n\tKeith: Hello Uglyfoot.  Have a good game.\n\n5) Uglyfoot: Trade G1 R1 Uglyfoot\n\n6) Keith: Trade G1 Y1 Keith\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) Keith: Build Y1 Keith\n\n9) Uglyfoot: Discover G1 Uglyfoot B2 Themall\n\n10) Keith: Discover Y1 Keith G3 Behemoth\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) Keith: Build Y2 Behemoth\n\n13) Uglyfoot: Build G1 Themall\n\n14) Keith: Build G2 Keith\n\n15) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Themall\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\n16) Keith: Move G2 Keith Behemoth\n\n17) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n18) Keith: Move G2 Behemoth Themall\nCatastrophe Themall Green\n\n19) Uglyfoot: Discover Y2 Uglyfoot G2 Work\n\n20) Keith: Trade Y1 R1 Keith\n\n21) Uglyfoot: Move G1 Uglyfoot Work\n\n22) Keith: Build G1 Keith\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) Keith: Trade G1 B1 Keith\n\n25) Uglyfoot: Discover G1 Work B3 Commerce\n\n26) Keith: Move B1 Keith Behemoth\n\n27) Uglyfoot: Build G1 Commerce\n\n28) Keith: Build G2 Keith\n\n29) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Work\n\n30) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B1 Behemoth\nBuild B2 Behemoth\n\n31) Uglyfoot: Sacrifice Y2 Work\nMove G1 Commerce Keith\nMove G1 Commerce Keith\nCatastrophe Keith G\n\n32) Keith: Trade B1 G1 Behemoth\n\n33) Uglyfoot: Build Y2 Work\n\tKeith: Ouch.  I should have seen that coming.  Better stop to think... if it is not too late already.\n\n34) Keith: Sacrifice Y2 Behemoth\nMove G1 Behemoth Work\nMove G1 Work Uglyfoot\nCatastrophe Uglyfoot Green\n\n35) Uglyfoot: Move Y2 Work Uglyfoot\n\n36) Keith: Build Y2 Behemoth\n\n37) Uglyfoot: Trade Y2 G2 Uglyfoot\n\n38) Keith: Move Y2 Behemoth Keith\n\n39) Uglyfoot: Build Y2 Work\n\n40) Keith: Trade Y2 G2 Keith\n\n41) Uglyfoot: Discover Y2 Work Y3 Moving\n\n42) Keith: Move B2 Behemoth Work\n\n43) Uglyfoot: Build Y2 Work\n\n44) Keith: Trade B2 Y2 Work\n\n45) Uglyfoot: Move Y2 Work Behemoth\n\tKeith: I guess I had better not take the y2 bait.\n\n46) Keith: Build Y3 Work\n\n47) Uglyfoot: Move Y2 Moving Work\nCatastrophe Work Y\n\n48) Keith: Build B1 Behemoth\n\n49) Uglyfoot: Build R1 Uglyfoot\n\n50) Keith: Build Y1 Behemoth\n\n51) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack B1 Behemoth\n\n52) Keith: Build B2 Behemoth\n\n53) Uglyfoot: Build B2 Behemoth\nCatastrophe Behemoth B\n\n54) Keith: Discover Y1 Behemoth G2 Midworld\n\n55) Uglyfoot: Build G1 Uglyfoot\n\n56) Keith: Build Y2 Behemoth\n\n57) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack Y2 Behemoth\n\n58) Keith: Build Y2 Behemoth\nCatastrophe Behemoth Yellow\n\n59) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n60) Keith: Build Y2 Midworld\n\n61) Uglyfoot: Build G1 Uglyfoot\n\n62) Keith: Move Y2 Midworld Uglyfoot\n\n63) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n64) Keith: Sacrifice R1 Keith\nAttack R1 Uglyfoot\n\n65) Uglyfoot: Trade G2 R2 Uglyfoot\n\n66) Keith: Attack R2 Uglyfoot\n\n67) Uglyfoot: Build G1 Uglyfoot\n\n68) Keith: Sacrifice R2 Uglyfoot\nAttack G1 Uglyfoot\nAttack G1 Uglyfoot\n\n\tKeith: And unusual and tough game.  We both knocked eash other down multiple times.  It came down to I had a red ship and you did not.  Good game.\n\tUglyfoot: Thank you.  It was quite a struggle.\n\nHomeworlds Online (SDG# 5768)\nStarted: 2007.1.4, Ended: 2007.1.27\nParticipants: Keith (S), GreedyAlgorithm (N)\nWinner: GreedyAlgorithm\n\n1) GreedyAlgorithm: Homeworld Y1 B2 G3\n\n2) Keith: Homeworld B1 Y3 G3\n\tGreedyAlgorithm: Hi, I haven&#39;t played a lot, but don&#39;t go easy on me. :)\r\n\r\nFirst time playing online, though, or any game on SDG, so hopefully there won&#39;t be any problems there.\n\tKeith: Then welcome to SDG.  Plenty of friendly opponents and a bunch of good games.  I recommend checking out the forums and giving Cannon a Castle Danger a try.\r\n\r\nAs for this game.  Feel free to ask questions.  I won&#39;t give advice on future moves but I would be happy to explain or give feedback on past moves.\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) Keith: Build G1 Keith\n\n5) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm\n\n6) Keith: Trade G1 B1 Keith\n\n7) GreedyAlgorithm: Build G1 Greedyalgorithm\n\tKeith: Not that I want to mimic your moves.  I just don&#39;t want you putting me in a bind by grabbing the last b1.\n\n8) Keith: Build B2 Keith\n\n9) GreedyAlgorithm: Discover B1 Greedyalgorithm G3 Cornucopia\n\n10) Keith: Discover B2 Keith G2 Midworld\n\n11) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n12) Keith: Build G1 Keith\n\n13) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Extension\n\n14) Keith: Sacrifice G3 Keith\nBuild B2 Midworld\nBuild B3 Midworld\nBuild B3 Keith\n\n15) GreedyAlgorithm: Build B3 Cornucopia\n\n16) Keith: Sacrifice B2 Midworld\nTrade B3 Y3 Midworld\nTrade B3 G3 Keith\n\n17) GreedyAlgorithm: Trade B1 Y1 Cornucopia\n\n18) Keith: Discover B1 Keith R2 Akai\n\n19) GreedyAlgorithm: Discover B3 Cornucopia Y2 Interloper\n\n20) Keith: Trade G1 R1 Keith\n\n21) GreedyAlgorithm: Build Y1 Cornucopia\n\n22) Keith: Build G1 Keith\n\n23) GreedyAlgorithm: Build Y2 Cornucopia\n\n24) Keith: Move Y3 Midworld Cornucopia\nCatastrophe Cornucopia Yellow\n\n25) GreedyAlgorithm: Trade G1 Y1 Greedyalgorithm\n\n26) Keith: Trade G1 Y1 Keith\n\n27) GreedyAlgorithm: Build Y2 Greedyalgorithm\n\tGreedyAlgorithm: build y2 GreedyAlgorithm\n\n28) Keith: Move Y1 Keith Midworld\n\tGreedyAlgorithm: Heh, wrong box. :)\n\tKeith: A fairly frequent event during ones first game online.  That order box is so far way from the text of your opponents last turn or chat.\n\n29) GreedyAlgorithm: Discover Y1 Greedyalgorithm G3 Horn-of-plenty\n\n30) Keith: Build G1 Keith\n\n31) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm\nBuild Y2 Horn-of-plenty\nBuild Y3 Greedyalgorithm\nBuild B1 Interloper\n\n32) Keith: Move B2 Midworld Horn-of-plenty\n\n33) GreedyAlgorithm: Sacrifice Y2 Greedyalgorithm\nDiscover Y1 Horn-of-plenty Y2 Alpha\nDiscover Y2 Horn-of-plenty G2 Beta\n\n34) Keith: Build B2 Horn-of-plenty\n\n35) GreedyAlgorithm: Build G1 Extension\n\tKeith: What a yellow denial sequence.  Good job.\n\tKeith: I was going to start stocking up on yellow this turn.\n\tGreedyAlgorithm: Thanks. I&#39;m not 100% sure where I&#39;m going with the line, but it was too cute to pass up.\n\n36) Keith: Move G1 Keith Akai\n\n37) GreedyAlgorithm: Move B1 Interloper Horn-of-plenty\n\n38) Keith: Build B3 Akai\n\n39) GreedyAlgorithm: Sacrifice G1 Extension\nBuild B3 Interloper\n\n40) Keith: Build R1 Keith\n\n41) GreedyAlgorithm: Trade B3 R3 Interloper\n\n42) Keith: Sacrifice Y1 Midworld\nMove B2 Horn-of-plenty Alpha\n\n43) GreedyAlgorithm: Build B3 Horn-of-plenty\n\n44) Keith: Trade B1 Y1 Akai\n\n45) GreedyAlgorithm: Sacrifice G1 Extension\nBuild Y3 Beta\n\tKeith: Oh wow.  You have four 3-pointers to my two, I have lost my grip on blue and you still have most of your control over yellow.   Good thing for me you havn&#39;t played Homeworlds a lot.  ;) \n\n46) Keith: Build B1 Horn-of-plenty\nCatastrophe Horn-of-plenty Blue\n\tGreedyAlgorithm: I&#39;d played chess a good bit before, and this strikes me as very similar to amateur-level chess (I mean before you can tell that moving you bishop innocuously move 3 will have such-and-such an impact 10 moves from now). Also I think I&#39;ve pretty much lost my yellow control based on akai and Alpha, but 4-2 does seem pretty helpful.\n\n47) GreedyAlgorithm: Sacrifice Y2 Beta\nMove Y3 Beta Keith\nMove B3 Interloper Keith\n\tKeith: I did not think I could get to Extension before you harvested it.  Too shy of yellow ships.  Better do something about the now five to two 3-pointer situation.\n\tKeith: I did not think I could get to Extension before you harvested it.  Too shy of yellow ships.  Better do something about the now five to two 3-pointer situation.\n\n\tKeith: If there is a way out of this it is beyond my ability to see it.  Well done.  Have you considered joining the Homeworlds ladder?  I think you could make a good run at the top rung.\n\tGreedyAlgorithm: Thanks. I just joined! We&#39;ll see. :) Good game!\n\nHomeworlds Online (SDG# 5719)\nStarted: 2007.1.5, Ended: 2007.1.19\nParticipants: GameBrain42 (S), Preacher (N)\nWinner: Preacher\n\n1) Preacher: Homeworld B2 Y1 G3\n\n2) GameBrain42: Homeworld Y3 G1 B3\n\n3) Preacher: Build G1 Preacher\n\tPreacher: looks like you got it :)\n\n4) GameBrain42: Build B1 Gamebrain42\n\n5) Preacher: Build G1 Preacher\n\tGameBrain42: Sorry bout the wait.  The GameBrain Consul apparently thought that they would like you to make a free move before constucting another of our transmogrifier ships..\r\n\n\tPreacher: build g1 preacher\n\n6) GameBrain42: Discover B1 Gamebrain42 G2 Alderaan\n\n7) Preacher: Trade G3 R3 Preacher\n\tGameBrain42: Ahhhh Alderaan..  And oh look!  It has a small Moon! (that is a moon right?).\n\n8) GameBrain42: Build B1 Alderaan\n\n9) Preacher: Build G2 Preacher\n\n10) GameBrain42: Build B1 Gamebrain42\n\n11) Preacher: Trade G2 B2 Preacher\n\n12) GameBrain42: Build B2 Alderaan\n\n13) Preacher: Build B3 Preacher\n\n14) GameBrain42: Trade B1 Y1 Alderaan\n\n15) Preacher: Trade B3 Y3 Preacher\n\n\nHomeworlds Online (SDG# 5849)\nVariants: &quot;Unrated&quot;\nStarted: 2007.1.10, Ended: 2007.1.16\nParticipants: MatrixFrog (S), papa_bear (N)\nWinner: MatrixFrog\n\n1) papa_bear: Homeworld Y1 B2 G3\n\n2) MatrixFrog: Homeworld Y1 B3 G3\n\n3) papa_bear: Build G1 Papa_bear\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) papa_bear: Trade G1 Y1 Papa_bear\n\n6) MatrixFrog: Build G1 Matrixfrog\n\n7) papa_bear: Build G1 Papa_bear\n\n8) MatrixFrog: Discover G1 Matrixfrog Y2 Candlelight\n\n9) papa_bear: Trade G1 B1 Papa_bear\n\n10) MatrixFrog: Trade G1 B1 Matrixfrog\n\n11) papa_bear: Build G1 Papa_bear\n\n12) MatrixFrog: Build G1 Candlelight\n\n13) papa_bear: Build G2 Papa_bear\n\tpapa_bear: build g2 papa_bear\n\tpapa_bear: I&#39;m an idiot.\r\n\n\n14) MatrixFrog: Build G2 Matrixfrog\n\n15) papa_bear: Discover G2 Papa_bear R3 Mahalalel\n\n16) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n17) papa_bear: Build Y2 Papa_bear\n\n18) MatrixFrog: Build B1 Matrixfrog\n\n19) papa_bear: Build B2 Papa_bear\n\n20) MatrixFrog: Build G2 Matrixfrog\n\n21) papa_bear: Move B2 Papa_bear Mahalalel\n\n22) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade G1 B1 Candlelight\n\n23) papa_bear: Move Y1 Papa_bear Mahalalel\n\n24) MatrixFrog: Build B2 Candlelight\n\n25) papa_bear: Build G1 Mahalalel\n\n26) MatrixFrog: Build G3 Candlelight\n\n27) papa_bear: Build B3 Mahalalel\n\n28) MatrixFrog: Discover B2 Candlelight Y3 Grumblecakes\n\n29) papa_bear: Trade B1 R1 Papa_bear\n\n30) MatrixFrog: Move G1 Candlelight Grumblecakes\n\n31) papa_bear: Sacrifice G3 Papa_bear\nBuild G3 Papa_bear\nBuild R1 Papa_bear\nBuild Y2 Mahalalel\n\n32) MatrixFrog: Sacrifice G3 Candlelight\nBuild B1 Grumblecakes\nBuild B3 Grumblecakes\nBuild G3 Grumblecakes\n\n33) papa_bear: Sacrifice Y2 Mahalalel\nMove B2 Mahalalel Candlelight\nMove B2 Candlelight Grumblecakes\nCatastrophe Grumblecakes Blue\n\n34) MatrixFrog: Trade B1 R1 Candlelight\n\n35) papa_bear: Move G1 Papa_bear Mahalalel\n\n36) MatrixFrog: Trade G2 R2 Matrixfrog\n\n37) papa_bear: Trade G1 B1 Mahalalel\n\n38) MatrixFrog: Trade B1 G1 Matrixfrog\n\n39) papa_bear: Sacrifice G2 Mahalalel\nBuild Y2 Papa_bear\nBuild Y3 Mahalalel\n\n40) MatrixFrog: Discover Y3 Matrixfrog R2 Flame\n\n41) papa_bear: Sacrifice Y2 Papa_bear\nMove G3 Papa_bear Mahalalel\nMove B3 Mahalalel Papa_bear\n\n42) MatrixFrog: Build R2 Matrixfrog\n\n43) papa_bear: Move G1 Mahalalel Papa_bear\n\n44) MatrixFrog: Build R3 Matrixfrog\n\n45) papa_bear: Move R1 Papa_bear Mahalalel\n\n46) MatrixFrog: Sacrifice Y3 Flame\nMove R2 Matrixfrog Candlelight\nMove R1 Candlelight Mahalalel\nMove R2 Candlelight Mahalalel\nCatastrophe Mahalalel R\n\tMatrixFrog: I&#39;m not sure if this is going to turn out to be a bad idea or not, but I&#39;m going for it.\n\n47) papa_bear: Build G2 Papa_bear\n\tpapa_bear: Wow. I&#39;d say that the resulting position looks favorable for you. Wow.\n\n48) MatrixFrog: Trade G1 B1 Matrixfrog\n\n49) papa_bear: Move G1 Papa_bear Grumblecakes\n\n50) MatrixFrog: Discover G3 Grumblecakes Y2 Alpha\n\n51) papa_bear: Trade B3 G3 Papa_bear\n\n52) MatrixFrog: Build B1 Matrixfrog\n\n53) papa_bear: Sacrifice G2 Papa_bear\nBuild G1 Grumblecakes\nBuild G2 Papa_bear\n\n54) MatrixFrog: Discover G3 Alpha Y3 Beta\n\n55) papa_bear: Trade G2 B2 Papa_bear\n\n56) MatrixFrog: Discover B1 Matrixfrog Y2 Gamma\n\n57) papa_bear: Build B1 Papa_bear\n\n58) MatrixFrog: Move B1 Gamma Beta\n\n59) papa_bear: Move B2 Papa_bear Grumblecakes\n\n60) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack G1 Grumblecakes\nAttack G1 Grumblecakes\n\n61) papa_bear: Trade B2 G2 Grumblecakes\nCatastrophe Grumblecakes Green\n\tpapa_bear: I don&#39;t know what part of the world you&#39;re in, but if you hear the faint echoes of a slapping sound, that was me smacking my forehead. I keep forgetting that a sacrificed red ship allows you to attack in systems where you otherwise have no access to red technology.\r\n\r\nI am taking the family out for dinner tonight. When I get back, I&#39;ll decide whether to resign yet or not :)\r\n\r\nAnd I&#39;ll start thinking about what game to challenge you to next...\n\tMatrixFrog: No! Don&#39;t resign. That&#39;s deeply unsatisfying for both players. And I may be winning (though I&#39;m not even sure about that) but it&#39;s hardly reached the point of being inevitable. I think concepts of &quot;who&#39;s winning&quot; and such are very hard to define in this game.\n\tpapa_bear: Ok. I&#39;ll hang in there.\n\tpapa_bear: However, I should note that I have a philosophy about resignation. In a truly hopeless position, I consider it rude not to resign. I&#39;ll trust your judgment on this matter for now, but I don&#39;t play on in positions I recognise as hopeless. Part of good play, in my view, is being able to tell when a game is lost. Sometimes resignation is the strongest move.\r\n\r\nThis may come from my background in chess, and perhaps other gaming cultures are different. However, I have internalized the concept of timely resignation as an integral part of good sportsmanship, honor, and respect for my opponent. So I reserve the right to resign when I see fit, though I won&#39;t do it just yet.\n\n62) MatrixFrog: Build B2 Beta\n\tMatrixFrog: That makes sense.\n\n63) papa_bear: Build R1 Papa_bear\n\n64) MatrixFrog: Move B1 Beta Papa_bear\n\n65) papa_bear: Discover B1 Papa_bear R3 Aleph\n\n66) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild B2 Papa_bear\nBuild B3 Papa_bear\nCatastrophe Papa_bear B\n\n67) papa_bear: Build G1 Papa_bear\n\n68) MatrixFrog: Trade B2 Y2 Beta\n\n69) papa_bear: Move G1 Papa_bear Aleph\n\n70) MatrixFrog: Discover Y2 Beta G2 Gamma\n\n71) papa_bear: Move Y2 Papa_bear Aleph\n\n72) MatrixFrog: Build Y1 Gamma\n\n73) papa_bear: Build Y2 Aleph\n\n74) MatrixFrog: Discover Y1 Gamma R3 Delta\n\n75) papa_bear: Move Y2 Aleph Gamma\n\n76) MatrixFrog: Build G1 Beta\n\n77) papa_bear: Build Y3 Aleph\n\n78) MatrixFrog: Discover Y2 Gamma Y3 Epsilon\n\tpapa_bear: Well, it still looks pretty grim, but I must concede that it was not as dire as I had thought. Thanks for sparing me the unnecessary resignation.\n\n79) papa_bear: Trade Y2 B2 Aleph\n\n80) MatrixFrog: Build G1 Beta\n\n81) papa_bear: Sacrifice Y2 Gamma\nMove G1 Aleph Papa_bear\nMove G1 Papa_bear Beta\nCatastrophe Beta Green\n\n82) MatrixFrog: Trade R3 G3 Matrixfrog\n\tMatrixFrog: Uh oh.\n\n83) papa_bear: Build G1 Papa_bear\n\n84) MatrixFrog: Build G1 Matrixfrog\n\n85) papa_bear: Move B1 Aleph Papa_bear\n\n86) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y2 Delta\n\n87) papa_bear: Build B1 Papa_bear\n\n88) MatrixFrog: Sacrifice Y2 Epsilon\nMove Y2 Delta Papa_bear\nMove Y1 Delta Papa_bear\n\n89) papa_bear: Attack Y2 Papa_bear\n\n90) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Papa_bear\nPass\nPass\nCatastrophe Papa_bear Y\n\n\tpapa_bear: That was pretty cool. Would you like to play another game?\n\tMatrixFrog: Yeah. I thought you were going to challenge me to something else, right? So go ahead and do that, in addition to another Homeworlds game, or instead of it... whatever you want to do.\n\nHomeworlds Online (SDG# 5861)\nVariants: &quot;Hard time&quot;\nStarted: 2007.1.11, Ended: 2007.3.28\nParticipants: Laurie_Menke (S), unic (N)\nWinner: unic\n\n1) unic: Homeworld B3 Y2 G3\n\n2) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: Hi unic!  Good luck!  :o)\n\n3) unic: Build G1 Unic\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) unic: Discover G1 Unic Y1 Gul\n\n6) Laurie_Menke: Discover G1 Laurie_menke Y2 Roses\n\n7) unic: Build G1 Unic\n\n8) Laurie_Menke: Build G2 Laurie_menke\n\n9) unic: Build G2 Gul\n\n10) Laurie_Menke: Discover G2 Laurie_menke Y2 Ribbon\n\n11) unic: Trade G1 Y1 Unic\n\n12) Laurie_Menke: Discover G2 Ribbon Y3 Bellied\n\n13) unic: Build Y2 Unic\n\n14) Laurie_Menke: Move G1 Roses Gul\n\n15) unic: Trade Y1 R1 Unic\n\n16) Laurie_Menke: Sacrifice G2 Bellied\nBuild G1 Gul\nBuild G2 Laurie_menke\nCatastrophe Gul G\n\n17) unic: Discover Y2 Unic G1 Lego\n\n18) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n19) unic: Discover R1 Unic Y1 Clay\n\n20) Laurie_Menke: Discover Y2 Laurie_menke R2 Mars\n\tLaurie_Menke: Again, I&#39;m very sorry for the long delay, unic.  Please forgive me.  :o(\n\n21) unic: Build G1 Unic\n\n22) Laurie_Menke: Build G1 Laurie_menke\n\n23) unic: Build G2 Unic\n\n24) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n25) unic: Build Y1 Lego\n\n26) Laurie_Menke: Move G3 Laurie_menke Mars\n\n27) unic: Discover G1 Unic B1 Ground\n\n28) Laurie_Menke: Sacrifice G3 Mars\nBuild R1 Laurie_menke\nBuild Y3 Mars\nBuild R2 Laurie_menke\n\n29) unic: Sacrifice Y2 Lego\nDiscover R1 Clay Y2 Temp\nMove R1 Temp Laurie_menke\nCatastrophe Laurie_menke Red\n\tunic: That was a bit sudden!  Thanks for the game.\n\tLaurie_Menke: Wow...yeah, it was!  I sure didn&#39;t see that coming!  Congratulations, unic...nicely played!  Thanks for the fun!  :o)\n\n\nHomeworlds Online (SDG# 5869)\nStarted: 2007.1.11, Ended: 2007.1.15\nParticipants: clockwise (S), Uglyfoot (N)\nWinner: clockwise\n\n1) Uglyfoot: Homeworld B1 Y3 G3\n\tUglyfoot: Greetings!  I&#39;m looking to change my standings as the worst player in Homeworlds...  Good luck.\n\n2) clockwise: Homeworld G1 B2 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tclockwise: Hello, this is my very first game on sdg, but not my first of Homeworlds.  GL\n\tUglyfoot: let me know when I do something stupid.  I keep missing something...\n\n4) clockwise: Build Y1 Clockwise\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Xchg\n\n6) clockwise: Trade Y1 G1 Clockwise\n\n7) Uglyfoot: Build G2 Xchg\n\n8) clockwise: Discover G1 Clockwise Y3 Peanut\n\n9) Uglyfoot: Build G2 Uglyfoot\n\n10) clockwise: Build Y1 Clockwise\n\n11) Uglyfoot: Trade G2 Y2 Xchg\n\n12) clockwise: Build G2 Peanut\n\n13) Uglyfoot: Build G2 Xchg\n\n14) clockwise: Move G1 Peanut Xchg\n\n15) Uglyfoot: Trade G2 R2 Xchg\n\n16) clockwise: Sacrifice Y3 Clockwise\nMove G1 Xchg Uglyfoot\nMove G2 Peanut Xchg\nMove G2 Xchg Uglyfoot\nCatastrophe Uglyfoot Green\n\tclockwise: So your mistake here was that you didn&#39;t recognize that my prior move was a double threat.  With the primary threat being the annihilation of your homeworld and the secondary threat being a subsequent catastrophy in xchg. You saw and responded to the secondary threat, but did not see the primary threat.\n\tclockwise: Always pay attention to your opponents large pieces and what they are capable of.  Here the fact that my y3 gave me near instant access to your homeworld meant you should have played more defensively.\n\n\nHomeworlds Online (SDG# 5897)\nStarted: 2007.1.12, Ended: 2007.2.1\nParticipants: jbj77 (S), Uglyfoot (N)\nWinner: jbj77\n\n1) Uglyfoot: Homeworld Y1 B3 G3\n\tUglyfoot: Greetings and well met.\n\n2) jbj77: Homeworld B1 G2 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tjbj77: Thank you.\n\n4) jbj77: Build Y1 Jbj77\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) jbj77: Trade Y1 G1 Jbj77\n\n7) Uglyfoot: Discover G1 Uglyfoot B2 Library\n\n8) jbj77: Build G2 Jbj77\n\n9) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Library\nBuild G3 Library\nBuild G3 Uglyfoot\n\n10) jbj77: Discover G1 Jbj77 Y3 Alpha\n\n11) Uglyfoot: Trade G3 Y3 Library\n\n12) jbj77: Build G3 Alpha\n\n13) Uglyfoot: Move G1 Library Alpha\n\n14) jbj77: Discover G3 Alpha Y2 Beta\n\n15) Uglyfoot: Sacrifice Y3 Library\nMove G1 Alpha Jbj77\nMove G2 Library Alpha\nMove G2 Alpha Jbj77\nCatastrophe Jbj77 G\n\n16) jbj77: Build G1 Beta\n\tUglyfoot: I just had that one used on me (and I lost).\n\n17) Uglyfoot: Trade G1 R1 Uglyfoot\n\n18) jbj77: Move G1 Beta Jbj77\n\n19) Uglyfoot: Build G1 Uglyfoot\n\n20) jbj77: Trade G1 R1 Jbj77\n\n21) Uglyfoot: Discover G1 Uglyfoot B2 Nyse\n\n22) jbj77: Build G1 Beta\n\n23) Uglyfoot: Build G2 Nyse\n\n24) jbj77: Build G2 Beta\n\n25) Uglyfoot: Trade G2 Y2 Nyse\n\n26) jbj77: Move G2 Beta Jbj77\n\n27) Uglyfoot: Build G2 Nyse\n\n28) jbj77: Sacrifice G3 Beta\nBuild G2 Alpha\nBuild G3 Beta\nBuild G3 Jbj77\n\n29) Uglyfoot: Build Y1 Nyse\n\n30) jbj77: Sacrifice G2 Jbj77\nBuild R1 Jbj77\nBuild R2 Jbj77\n\n31) Uglyfoot: Build R2 Uglyfoot\n\n32) jbj77: Move R1 Jbj77 Beta\n\n33) Uglyfoot: Discover R2 Uglyfoot Y2 Djia\n\n34) jbj77: Trade R1 B1 Jbj77\n\n35) Uglyfoot: Trade G1 B1 Nyse\n\n36) jbj77: Sacrifice G3 Beta\nBuild G1 Beta\nBuild G2 Beta\nBuild G3 Jbj77\n\n37) Uglyfoot: Sacrifice Y2 Nyse\nMove G2 Nyse Jbj77\nMove G2 Jbj77 Beta\nCatastrophe Beta G\n\n38) jbj77: Move R2 Jbj77 Nyse\n\tjbj77: Oh no, you killed my factory!\n\n39) Uglyfoot: Build G1 Uglyfoot\n\n40) jbj77: Attack Y1 Nyse\n\n41) Uglyfoot: Move G1 Uglyfoot Djia\n\n42) jbj77: Sacrifice G3 Jbj77\nBuild Y1 Jbj77\nBuild Y2 Nyse\nBuild Y3 Nyse\n\n43) Uglyfoot: Build G1 Uglyfoot\n\n44) jbj77: Move G2 Alpha Nyse\n\n45) Uglyfoot: Move G1 Djia Jbj77\n\n46) jbj77: Sacrifice Y3 Jbj77\nMove G2 Nyse Uglyfoot\nMove G1 Alpha Beta\nMove G1 Beta Uglyfoot\nCatastrophe Uglyfoot Green\n\n47) Uglyfoot: Move R2 Djia Uglyfoot\n\n48) jbj77: Move Y3 Nyse Uglyfoot\n\n49) Uglyfoot: Build G1 Jbj77\n\n50) jbj77: Sacrifice R2 Nyse\nAttack R2 Uglyfoot\nAttack R1 Uglyfoot\n\tUglyfoot: Thank you for the game.\n\tjbj77: Thank you.  It was fun.  It was unexpected when you blew up half of my homeworld.  You had me scared for a little bit.\n\tUglyfoot: I just couldn&#39;t get the momentum back toweard your system.  I am working on improving my play...\n\tjbj77: Yah, I think you sacrificed too much to blow me up.\n\n\nHomeworlds Online (SDG# 5893)\nStarted: 2007.1.12, Ended: 2007.1.22\nParticipants: zoltar (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld Y1 B2 G3\n\n2) zoltar:\nHomeworld B3 Y1 G3\n\tzoltar: h b3 y1 g3\n\n3) jbj77: Build G1 Jbj77\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n5) jbj77: Trade G1 Y1 Jbj77\n\tzoltar: Oops! I keep putting the moves in the wrong field!\n\n6) zoltar: Trade G3 Y3 Zoltar\n\tjbj77: Np problem.  I thought you just wanted to make doubly sure I knew what move you were making.\n\n7) jbj77: Build Y2 Jbj77\n\n8) zoltar: Build Y2 Zoltar\n\n9) jbj77: Trade Y2 R2 Jbj77\n\n10) zoltar: Trade Y2 R2 Zoltar\n\n11) jbj77: Build Y2 Jbj77\n\n12) zoltar: Build Y2 Zoltar\n\n13) jbj77: Discover Y2 Jbj77 B3 Alpha\n\n14) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n15) jbj77: Build G1 Jbj77\n\n16) zoltar: Build G1 Zoltar\n\n17) jbj77: Move G1 Jbj77 Alpha\n\n18) zoltar: Trade G1 B1 Zoltar\n\n19) jbj77: Build R1 Jbj77\n\n20) zoltar: Build R1 Zoltar\n\n21) jbj77: Trade R1 B1 Jbj77\n\n22) zoltar: Move B1 Zoltar Greenbelt\n\n23) jbj77: Build G1 Alpha\n\n24) zoltar: Build G2 Zoltar\n\n25) jbj77: Build G2 Alpha\n\n26) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Greenbelt\n\n27) jbj77: Sacrifice G2 Alpha\nBuild Y3 Alpha\nBuild G2 Jbj77\n\n28) zoltar: Trade Y3 G3 Zoltar\n\n29) jbj77: Discover Y2 Alpha G2 Gamma\n\n30) zoltar: Sacrifice Y2 Greenbelt\nDiscover G1 Zoltar B2 Beta\nMove Y2 Zoltar Beta\n\tjbj77: Oops, I guess I skipped beta.  So much for my predictable names.\n\n31) jbj77: Sacrifice G3 Jbj77\nBuild G3 Jbj77\nBuild Y2 Alpha\nBuild Y3 Gamma\n\tzoltar: I seem to be falling behind!  I think I&#39;m in trouble.\n\n32) zoltar: Build G3 Zoltar\n\tjbj77: We&#39;ll see whether I can keep this slim edge.\n\n33) jbj77: Discover B1 Jbj77 R3 Delta\n\n34) zoltar: Move R2 Zoltar Greenbelt\n\n35) jbj77: Trade G1 R1 Alpha\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G1 Zoltar\nBuild G3 Beta\nBuild R1 Greenbelt\n\n37) jbj77: Move Y3 Gamma Delta\n\tjbj77: I hated to lose that green.\n\n38) zoltar: Discover R1 Greenbelt B1 Blueberry\n\n39) jbj77: Move B1 Delta Gamma\n\n40) zoltar: Sacrifice G3 Beta\nBuild R2 Zoltar\nBuild R3 Blueberry\nBuild R3 Greenbelt\n\n41) jbj77: Sacrifice G3 Jbj77\nBuild G3 Jbj77\nBuild B2 Gamma\nBuild B3 Gamma\n\n42) zoltar: Sacrifice Y3 Greenbelt\nMove B1 Greenbelt Blueberry\nMove B1 Blueberry Gamma\nMove R3 Blueberry Gamma\nCatastrophe Gamma B\n\n43) jbj77: Sacrifice G3 Jbj77\nBuild G3 Jbj77\nBuild G3 Alpha\nBuild Y3 Delta\n\n44) zoltar: Attack Y2 Gamma\n\n45) jbj77: Move Y3 Delta Beta\n\tzoltar: This is useless; I think I&#39;m toast no matter what, but this is my best try.\n\n\tzoltar: Ok, I have no chance.  gg\n\tjbj77: Thanks for the great game.  We&#39;ll have to have a rematch some time.\n\tzoltar: Ok. That would be great.  I could have played longer, as I have the red ships, but your advantage with the Yellow, and you&#39;re eventually going to get the Blues again and blow up my star and I can&#39;t prevent it, so I figured it was hopeless.\n\tjbj77: Yah, I was really worried about you having all of the reds, but my plan was to deprive you of all yellows so you would be immobilized and couldn&#39;t really use your red advantage.  I&#39;m still not certain I would have won had you not resigned.\n\nHomeworlds Online (SDG# 5965)\nVariants: &quot;Hard time&quot;\nStarted: 2007.1.16, Ended: 2007.2.1\nParticipants: Kermit (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B1 Y3 G3\n\n2) Kermit: Homeworld G2 Y3 B3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Kermit: Build B1 Kermit\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Amex\n\n6) Kermit: Trade B1 G1 Kermit\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) Kermit: Discover G1 Kermit Y1 Nymex\n\n9) Uglyfoot: Build G2 Amex\n\n10) Kermit: Build G2 Nymex\n\n11) Uglyfoot: Trade G2 Y2 Amex\n\n12) Kermit: Build B1 Kermit\n\n13) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Amex\n\n14) Kermit: Discover G1 Nymex B2 Nyse\n\n15) Uglyfoot: Move G2 Uglyfoot Nyse\n\tAaron: Howdy...what seems to be the problem?\n\tKermit: well I was trying to do the following... sac g2 nymex ~ b g2 amex ~ b g3 amex ~ Cat amex green but i get the error that I cannot build in amex. I should be able to after I sacrifice. (or so i thought.\n\tKermit: I would still like to do that even though I should have done it in his home system (hint/warning to Uglyfoot)\n\tKermit: I just realized the bit about his home system but will stick with my original intended move since if it had executed i wouldn&#39;t be able to take it back now.\n\tAaron: I&#39;m afraid you are misunderstanding how green sacrifices work.  You don&#39;t own any ships in Amex, therefore you can&#39;t build there, no matter the sacrifice.  The sacrifice simply lets you build in other sectors, but only sectors where you already own a ship of the appropriate colour (such as blue in Kermit).  Page me again if this is unclear or if you have other questions.  Cheers!\n\n16) Kermit: Sacrifice G2 Nymex\nBuild G2 Nyse\nBuild G3 Nyse\nCatastrophe Nyse Green\n\n17) Uglyfoot: Discover G3 Amex R1 Mars\n\n18) Kermit: Build B1 Kermit\n\n19) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Amex\nBuild G2 Mars\nBuild G2 Uglyfoot\n\n20) Kermit: Discover B1 Kermit Y1 Apollo\n\tKermit: btw i didn&#39;t mean to sound like a pompous ass earlier. i just didn&#39;t know how much experience you had with the game. One time I played a multi game (which I prefer to the binary) and when I used sacrifice  two of the players quit because They thought I was being mean (they were new to the game, I didn&#39;t know). now i realize you know what you&#39;re doing so nevermind me.\n\tUglyfoot: Don&#39;t worry about it.  I have a rather thick skin (&amp; skull  ;&gt; ).  I also realize that I am the worst player of Homeworlds on the site and will listen to any advice.  It HAS to be better than mine...\n\n21) Uglyfoot: Sacrifice G3 Mars\nBuild G3 Mars\nBuild G3 Uglyfoot\nBuild G3 Amex\n\n22) Kermit: Build B2 Kermit\n\tKermit: I don&#39;t do as well in binary homeworlds. I have won the multi-game once or twice. The sacrifice is often the key ( for instance when you had three green ships at your home were I able to sac a yellow to make multiple moves it would have been the game. Another strategy is to move a small green to a 3 pip piece of another color just as storeage and when tht color is all gone you can sac the green 1 pip and build a 3 pip anywhere on the board you have a ship of that color.\n\tKermit: but seeing those opportunities ahead of time is the trick. I don&#39;t always do that so well\n\n23) Uglyfoot: Trade G3 B3 Amex\n\n24) Kermit: Trade B3 Y3 Kermit\n\n25) Uglyfoot: Move B3 Amex Apollo\n\n26) Kermit: Trade B1 R1 Kermit\n\n27) Uglyfoot: Trade G1 R1 Uglyfoot\n\n28) Kermit: Trade B1 G1 Apollo\n\n29) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R2 Uglyfoot\nBuild B1 Apollo\n\n30) Kermit: Build G3 Apollo\n\n31) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack G3 Apollo\nAttack G1 Apollo\n\n32) Kermit: Build B1 Kermit\n\n33) Uglyfoot: Move B3 Apollo Kermit\n\n34) Kermit: Trade Y3 R3 Kermit\n\n35) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R3 Kermit\n\tKermit: Ouch, I seriously misread the rules on attacks. Oh well. From here on down its all uphill.\n\n\tUglyfoot: did you guess it?\r\n\n\tKermit: nope...I thought you were going to move the other b1 in and catostrophe the blues. I thought you were going to do that or something like it a while back (with the 2 pip yellow). If I had thought of that I could have done the same with my 1 pip red. ( a sign i wasn&#39;t thinking that way)\n\tKermit: in any case my BIGGEST mistake was sacrificing my greens for the catastrophe wayyyy back and allowing you to build so many I couldn&#39;t really get back into the game. \n\tKermit: Good game.\n\tUglyfoot: Thanks for the game!\n\nHomeworlds Online (SDG# 5980)\nStarted: 2007.1.16, Ended: 2007.1.19\nParticipants: MatrixFrog (S), papa_bear (N)\nWinner: papa_bear\n\n1) papa_bear: Homeworld B2 Y1 G3\n\n2) MatrixFrog: Homeworld B3 G1 Y3\n\tpapa_bear: If you choose to accept Castle Danger, it is unrated I have set it for you to play first player, which is a significant advantage. I am also prepared to suggest undos in case of serious mistakes, especially in the opening. Certain mistakes which are bad enough to ruin a game can nevertheless be difficult for new players to spot. If you accept it and prefer for me to keep my suggestions to myself, I can do that too :) Finally, if for any reason you&#39;d rather not accept that challenge, there would be no hard feelings.\n\tMatrixFrog: I&#39;m a little busy for a few days. I&#39;ll read the rules sometime this weekend probably and get that started.\n\n3) papa_bear: Build G1 Papa_bear\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) papa_bear: Build G1 Papa_bear\n\n6) MatrixFrog: Discover Y1 Matrixfrog G2 Mat\n\n7) papa_bear: Discover G1 Papa_bear R3 Bet\n\n8) MatrixFrog: Build Y1 Matrixfrog\n\n9) papa_bear: Build G2 Papa_bear\n\n10) MatrixFrog: Build Y2 Matrixfrog\n\n11) papa_bear: Trade G2 Y2 Papa_bear\n\n12) MatrixFrog: Discover Y1 Mat G3 Rix\n\n13) papa_bear: Move Y2 Papa_bear Bet\n\n14) MatrixFrog: Build Y2 Rix\n\n15) papa_bear: Discover Y2 Bet G2 Gimmel\n\n16) MatrixFrog: Trade Y1 B1 Matrixfrog\n\tpapa_bear: How did you come up with the name MatrixFrog?\n\tMatrixFrog: i used to really like the movie, and then i played a frog in Honk\n\n17) papa_bear: Build G2 Papa_bear\n\n18) MatrixFrog: Trade Y2 G2 Matrixfrog\n\tpapa_bear: I&#39;m afraid I&#39;m unfamiliar with Honk. What is it?\r\n\r\nI enjoyed The Matrix, although I thought the sequels left a bit to be desired. Great action and sound effects, but the story grew in disappointing ways in the sequels.\n\tMatrixFrog: It&#39;s a musical based on the Ugly Duckling.\n\n19) papa_bear: Trade G1 B1 Papa_bear\n\n20) MatrixFrog: Move Y1 Rix Papa_bear\n\tpapa_bear: Ah... I must confess that musicals are mostly outside my familiarity. I did, in high school, participate in the &quot;pit orchestra&quot; for three of them. Apparently, shoving an adolescent marching band into a dark cave under a stage transforms them into an &quot;orchestra&quot; :)\n\tMatrixFrog: No, it doesn&#39;t. You also need to have music stands and pencils and wear black. THEN you&#39;re an orchestra.\n\n21) papa_bear: Move Y2 Gimmel Rix\n\tpapa_bear: Aha! I knew we weren&#39;t an orchestra. We didn&#39;t wear black.\r\n\r\nGuys and Dolls, Anything Goes, Oklahoma. I&#39;ve never actually seen any of them, because the view from the pit was no good.\n\n22) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y1 Papa_bear\nBuild Y2 Papa_bear\nCatastrophe Papa_bear Y\n\n23) papa_bear: Sacrifice Y2 Rix\nMove B1 Papa_bear Matrixfrog\nMove G1 Bet Papa_bear\n\tpapa_bear: Argh.\n\n24) MatrixFrog: Trade B1 R1 Matrixfrog\n\n25) papa_bear: Build B1 Matrixfrog\n\n26) MatrixFrog: Build Y1 Matrixfrog\n\tMatrixFrog: I think perhaps t y3 r3 matrixfrog is what I should have done.\n\n27) papa_bear: Build B1 Matrixfrog\nCatastrophe Matrixfrog Blue\n\tpapa_bear: Probably. I would likely have sacrificed my g2 to get the catastrophe, but then you&#39;d be standing better anyway.\n\n28) MatrixFrog: Discover Y1 Matrixfrog B3 Frog\n\n29) papa_bear: Trade G2 Y2 Papa_bear\n\n30) MatrixFrog: Build Y1 Rix\n\n31) papa_bear: Build G1 Papa_bear\n\n32) MatrixFrog: Build Y1 Matrixfrog\n\n33) papa_bear: Sacrifice Y2 Papa_bear\nMove G1 Papa_bear Matrixfrog\nMove G1 Papa_bear Matrixfrog\n\n34) MatrixFrog: Attack G1 Matrixfrog\n\n35) papa_bear: Build G2 Matrixfrog\nCatastrophe Matrixfrog Green\n\tpapa_bear: Thanks for another great game. Feel free to send another if you like.\n\n\nHomeworlds Online (SDG# 5901)\nStarted: 2007.1.17, Ended: 2007.1.28\nParticipants: zoltar (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tclockwise: Hello, I anticipate being soundly beaten, but will try to put up a valiant struggle.  \n\n3) clockwise: Build G1 Clockwise\n\tzoltar: Good luck, then!\n\n4) zoltar: Build G1 Zoltar\n\n5) clockwise: Trade G1 B1 Clockwise\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) clockwise: Build B1 Clockwise\n\n8) zoltar: Build Y1 Zoltar\n\n9) clockwise: Discover B1 Clockwise G3 Smurftopia\n\n10) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n11) clockwise: Build B2 Clockwise\n\n12) zoltar: Build Y1 Greenbelt\n\tclockwise: Hmm, I just saw a bad wrinkle in plan A, enacting plan B, possibly just as foolhardy.\n\n13) clockwise: Discover B2 Clockwise Y3 Umbrella\n\n14) zoltar: Build Y2 Zoltar\n\n15) clockwise: Build B2 Smurftopia\n\n16) zoltar: Discover Y1 Greenbelt B3 Blueridge\n\n17) clockwise: Trade B2 Y2 Smurftopia\n\n18) zoltar: Trade Y2 B2 Zoltar\n\tclockwise: I&#39;m not sure if this is a good idea or not, but I seem to have painted myself into a bit of a corner... we&#39;ll see how it turns out.\n\n19) clockwise: Build B2 Smurftopia\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\tclockwise: Sorry for the undo, need to think about this a bit longer\n\n21) clockwise: Discover B2 Smurftopia G2 Earth\n\n22) zoltar: Move B2 Zoltar Greenbelt\n\tzoltar: No problem.  \n\n23) clockwise: Build B3 Earth\n\n24) zoltar: Trade Y1 R1 Greenbelt\n\tzoltar: Now I need to think longer!\n\n25) clockwise: Sacrifice B2 Umbrella\nTrade B3 Y3 Earth\nTrade B1 R1 Clockwise\n\n26) zoltar: Trade Y1 G1 Zoltar\n\n27) clockwise: Build R2 Clockwise\n\tclockwise: \n\tclockwise: I need to think about this position, but probably won&#39;t have time to sit down with it until Wed evening.\n\n28) zoltar: Build R2 Greenbelt\n\n29) clockwise: Build Y1 Earth\n\n30) zoltar: Trade Y1 G1 Blueridge\n\n31) clockwise: Move Y3 Earth Blueridge\n\n32) zoltar: Move Y3 Greenbelt Smurftopia\n\n33) clockwise: Build Y1 Smurftopia\n\n34) zoltar: Sacrifice B2 Greenbelt\nTrade Y3 R3 Smurftopia\nTrade Y3 G3 Zoltar\n\n35) clockwise: Sacrifice Y2 Smurftopia\nDiscover Y1 Smurftopia G2 Flight\nMove B1 Smurftopia Flight\n\n\tzoltar: Yeah, it&#39;s hopeless. gg.\n\tclockwise: Thanks for the game!\n\nHomeworlds Online (SDG# 5999)\nStarted: 2007.1.20, Ended: 2007.2.11\nParticipants: eriinfo (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B1 Y2 G3\n\n2) eriinfo: Homeworld B3 Y1 G3\n\tUglyfoot: greetings and good luck\r\n\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) eriinfo: Build G1 Eriinfo\n\n5) Uglyfoot: Discover G1 Uglyfoot R3 Defender\n\n6) eriinfo: Discover G1 Eriinfo B2 Cire\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) eriinfo: Build G2 Eriinfo\n\n9) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Defender\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\teriinfo: Sorry I did not see your earlier message, as this is my first time playing online. Good luck to you as well.\n\n10) eriinfo: Build G3 Cire\n\n11) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n12) eriinfo: Trade G2 B2 Eriinfo\n\n13) Uglyfoot: Move Y2 Uglyfoot Defender\n\n14) eriinfo: Build G2 Eriinfo\n\n15) Uglyfoot: Move G2 Defender Cire\n\n16) eriinfo: Trade G1 R1 Cire\n\n17) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Cire\nBuild G2 Defender\nBuild G3 Uglyfoot\n\n18) eriinfo: Attack G2 Cire\n\n19) Uglyfoot: Move G1 Defender Cire\nCatastrophe Cire G\n\n20) eriinfo: Move G2 Eriinfo Cire\n\n21) Uglyfoot: Build G1 Defender\n\n22) eriinfo: Build G1 Eriinfo\n\n23) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Defender\n\n24) eriinfo: Trade G1 R1 Eriinfo\n\n25) Uglyfoot: Move G3 Defender Cire\n\n26) eriinfo: Build G1 Eriinfo\n\n27) Uglyfoot: Trade G2 R2 Uglyfoot\n\n28) eriinfo: Trade G2 Y2 Cire\n\n29) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack Y2 Cire\nAttack R1 Cire\n\n30) eriinfo: Trade G1 Y1 Eriinfo\n\n31) Uglyfoot: Build G1 Cire\n\n32) eriinfo: Build R1 Eriinfo\n\n33) Uglyfoot: Trade G1 B1 Cire\n\n34) eriinfo: Discover R1 Eriinfo G2 Rice\n\n35) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Cire\nBuild G2 Cire\nBuild G3 Uglyfoot\n\n36) eriinfo: Build R2 Eriinfo\n\n37) Uglyfoot: Trade G3 Y3 Cire\n\n38) eriinfo: Move Y1 Eriinfo Rice\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Cire\nBuild R2 Cire\n\n40) eriinfo: Move R1 Eriinfo Rice\n\n41) Uglyfoot: Move G3 Cire Eriinfo\n\n42) eriinfo: Attack G3 Eriinfo\n\n43) Uglyfoot: Sacrifice Y2 Cire\nMove G1 Cire Eriinfo\nMove G2 Cire Eriinfo\nCatastrophe Eriinfo G\n\n44) eriinfo: Trade B2 G2 Eriinfo\n\n45) Uglyfoot: Move Y3 Cire Eriinfo\n\n46) eriinfo: Build R2 Eriinfo\n\n47) Uglyfoot: Sacrifice R2 Cire\nAttack R2 Eriinfo\nAttack R2 Eriinfo\n\n48) eriinfo: Move R1 Rice Eriinfo\n\n49) Uglyfoot: Sacrifice R2 Eriinfo\nAttack G2 Eriinfo\nAttack R1 Eriinfo\n\n\tUglyfoot: Thanks for the game.\r\n\n\teriinfo: Thank you, I had fun.\n\nHomeworlds Online (SDG# 6014)\nVariants: &quot;Hard time&quot;\nStarted: 2007.1.20, Ended: 2007.6.13\nParticipants: jeep (S), eriinfo (N)\nWinner: jeep\n\n1) eriinfo: Homeworld Y3 B1 G3\n\n2) jeep: Homeworld Y1 B2 G3\n\tjeep: Hello.  Good luck.\n\n3) eriinfo: Build G1 Eriinfo\n\n4) jeep: Build G1 Jeep\n\n5) eriinfo: Trade G1 B1 Eriinfo\n\n6) jeep: Trade G1 B1 Jeep\n\n7) eriinfo: Build B2 Eriinfo\n\n8) jeep: Build B2 Jeep\n\n9) eriinfo: Discover B2 Eriinfo G2 Wise\n\n10) jeep: Trade B2 Y2 Jeep\n\teriinfo: Sorry I did not see your message earlier, as this is my first time playing online. Good luck to you as well.\n\n11) eriinfo: Build G1 Eriinfo\n\n12) jeep: Discover B1 Jeep Y3 Cowardly\n\n13) eriinfo: Trade G1 R1 Eriinfo\n\n14) jeep: Build Y1 Jeep\n\n15) eriinfo: Trade B2 Y2 Wise\n\n16) jeep: Build G1 Jeep\n\n17) eriinfo: Build Y1 Wise\n\n18) jeep: Discover Y1 Jeep Y3 Lion\n\n19) eriinfo: Build G1 Eriinfo\n\n20) jeep: Trade G1 R1 Jeep\n\n21) eriinfo: Discover Y2 Wise G3 Owl\n\n22) jeep: Build G1 Jeep\n\n23) eriinfo: Build Y2 Wise\n\n24) jeep: Move G1 Jeep Cowardly\n\n25) eriinfo: Move B1 Eriinfo Wise\n\n26) jeep: Build B2 Cowardly\n\n27) eriinfo: Move B1 Wise Owl\n\n28) jeep: Build G1 Jeep\n\n29) eriinfo: Discover G1 Eriinfo B2 Cire\n\n30) jeep: Discover B1 Cowardly G2 Tin\n\n31) eriinfo: Build B3 Owl\n\n32) jeep: Build B3 Tin\n\n33) eriinfo: Build G2 Cire\n\n34) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild B3 Cowardly\nBuild R1 Jeep\n\n35) eriinfo: Build R2 Eriinfo\n\teriinfo: No problem. Get better.\n\n36) jeep: Trade B3 R3 Tin\n\n37) eriinfo: Move R1 Eriinfo Cire\n\n38) jeep: Move G1 Jeep Lion\n\n39) eriinfo: Move B1 Owl Cire\n\n40) jeep: Build B3 Tin\n\n41) eriinfo: Build R2 Cire\n\n42) jeep: Move Y1 Lion Tin\n\n43) eriinfo: Move Y2 Wise Lion\n\n44) jeep: Move R1 Jeep Cowardly\n\n45) eriinfo: Move Y2 Owl Cire\n\n46) jeep: Move G1 Lion Jeep\n\n47) eriinfo: Move G1 Cire Eriinfo\n\n48) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R2 Tin\nBuild R3 Jeep\n\n49) eriinfo: Build R3 Eriinfo\n\n50) jeep: Move G3 Jeep Lion\n\n51) eriinfo: Move G2 Cire Owl\n\n52) jeep: Sacrifice R1 Jeep\nAttack Y2N Lion\n\n53) eriinfo: Move R2 Cire Owl\n\n54) jeep: Move Y2 Lion Tin\n\n55) eriinfo: Move Y2 Cire Owl\n\n56) jeep: Discover Y1 Tin R1 Baron\n\n57) eriinfo: Move G2 Owl Wise\n\n58) jeep: Sacrifice G3 Lion\nBuild Y3 Baron\nBuild G3 Cowardly\nPass\n\n59) eriinfo: Move Y1 Wise Owl\n\n60) jeep: Move B3 Cowardly Wise\n\n61) eriinfo: Move Y1 Owl Cire\n\n62) jeep: Move R1 Cowardly Wise\n\n63) eriinfo: Sacrifice R1 Cire\nAttack R1 Wise\n\n64) jeep: Sacrifice R2 Tin\nAttack R1N Wise\nAttack G2N Wise\n\n65) eriinfo: Move G1 Eriinfo Cire\n\n66) jeep: Sacrifice G3 Cowardly\nBuild G3 Cowardly\nBuild R1 Wise\nBuild R2 Jeep\n\n67) eriinfo: Move R3 Eriinfo Cire\n\n68) jeep: Move Y1 Baron Wise\n\n69) eriinfo: Move R3 Cire Owl\n\n70) jeep: Sacrifice Y3 Baron\nMove R1 Wise Owl\nMove R1 Wise Owl\nDiscover G2 Wise Y3 Bank\nCatastrophe Owl Red\n\n71) eriinfo: Move G1 Cire Bank\n\n72) jeep: Sacrifice R2 Jeep\nAttack G1N Bank\nPass\n\n73) eriinfo: Build R1 Eriinfo\n\n74) jeep: Move G1 Bank Wise\n\n75) eriinfo: Move R1 Eriinfo Wise\n\n76) jeep: Sacrifice G3 Cowardly\nBuild G3 Cowardly\nBuild R1 Tin\nBuild R1 Jeep\n\n77) eriinfo: Attack Y1 Wise\n\n78) jeep: Sacrifice R3 Tin\nAttack Y1N Wise\nAttack R1N Wise\nPass\n\n79) eriinfo: Move Y2 Owl Cire\n\n80) jeep: Move G3 Cowardly Cire\n\n81) eriinfo: Move Y2 Cire Cowardly\n\tjeep: Sorry, thought one thing, typed another.\n\n82) jeep: Sacrifice R3 Jeep\nAttack Y2N Cowardly\nAttack Y1N Cire\nAttack B1N Cire\n\n83) eriinfo: Discover R2 Eriinfo R2 Rice\n\n84) jeep: Sacrifice G3 Cire\nBuild G3 Jeep\nBuild R2 Tin\nBuild R3 Wise\n\n\tjeep: Thanks for the game.\n\nHomeworlds Online (SDG# 6114)\nVariants: &quot;Hard time&quot;\nStarted: 2007.1.24, Ended: 2007.2.11\nParticipants: antihero (S), Personman (N)\nWinner: antihero\n\n1) Personman: Homeworld B2 Y3 G3\n\n2) antihero: Homeworld B1 Y2 G3\n\n3) Personman: Build G1 Personman\n\n4) antihero: Build G1 Antihero\n\n5) Personman: Trade G1 Y1 Personman\n\n6) antihero: Build G1 Antihero\n\n7) Personman: Build G1 Personman\n\n8) antihero: Trade G1 Y1 Antihero\n\n\nHomeworlds Online (SDG# 6167)\nStarted: 2007.1.27, Ended: 2007.4.23\nParticipants: jan (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\n2) jan: Homeworld G2 Y3 B3\n\tKeith: Hello jan.  Welcome to SDG and have a good game.\n\tjan: Hey Kieth, i am excited to try this. i have played the table top version of homeworlds before. i think im getting how to write orders. thanks jan\n\tjan: Kieth, Do you know why i am getting the message that there are no G2 or Y3pieces in the stash left?\n\tKeith: That is a mystery to me.  My order looked like this:\r\n\r\nhomeworld b1 y2 g3\n\n3) Keith: Build G1 Keith\n\n4) jan: Build B1 Jan\n\tjan: hey thanks i got it!  is there a way to name your systems? also what does the setting 2/2/8 mean?   \n\n5) Keith: Discover G1 Keith Y3 Midworld\n\tKeith: Whenever you discover a new system you will get to name it.  For example &quot;discover g1 keith y3 Midworld&quot;\n\n6) jan: Build B1 Jan\n\tKeith: The 2/2/8 means you start with two days to make a move, each move adds to days to your remaining time, the maximum is 8 days.  That way if you run into an emergency or even take a week off you don&#39;t run out of time to move.  Though I won&#39;t force a surrender if I know the other player needs extra time.\n\n7) Keith: Build G1 Keith\n\n8) jan: Trade B1 G1 Jan\n\n9) Keith: Trade G1 B1 Keith\n\tjan: hey Kieth i saw someone posted a homeworlds challenge that says &quot;hard time&quot;  and ladder challenge or something and it didn&#39;t have a join game option on the right do you know what this means?\n\n10) jan: Build B2 Jan\n\n11) Keith: Build B2 Keith\n\tKeith: There is a Homeworlds ladder.  Sort of like an ongoing king of the hill competition Homeworlds style.  GreedyAlgorithm has directly challenged eugman to a match.  Hard time means there would be an automatic forfeit if someone ran out of time to make their move.\n\n12) jan: Discover B2 Jan G1 Gio\n\n13) Keith: Trade B1 Y1 Keith\n\n14) jan: Build G2 Jan\n\n15) Keith: Build G2 Midworld\n\n16) jan: Discover G1 Jan B1 Droo\n\n17) Keith: Build G3 Keith\n\n18) jan: Build G3 Droo\n\n19) Keith: Move B2 Keith Midworld\n\n20) jan: Trade G3 R3 Droo\n\n21) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Midworld\nBuild Y1 Keith\n\n22) jan: Trade B2 Y2 Gio\n\n23) Keith: Trade G1 R1 Midworld\n\n24) jan: Move B1 Jan Gio\n\n25) Keith: Discover G2 Midworld Y1 Darebase\n\n26) jan: Build R1 Droo\n\n27) Keith: Build R1 Midworld\n\n28) jan:\nBuild Y2 Gio\n\n29) Keith: Move Y1 Keith Midworld\n\n30) jan: Discover Y2 Gio B3 Fenu\n\n31) Keith: Move R1 Midworld Droo\n\n32) jan: Trade R1 G1 Droo\n\n33) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R1 Droo\nBuild R2 Droo\nCatastrophe Droo Red\n\n34) jan: Build Y3 Gio\n\n35) Keith: Move Y1 Midworld Gio\n\n36) jan: Trade G2 R2 Jan\n\n37) Keith: Sacrifice G2 Darebase\nBuild Y1 Gio\nBuild R1 Midworld\nCatastrophe Gio Yellow\n\n38) jan: Build G2 Droo\n\n39) Keith: Move G3 Midworld Droo\nCatastrophe Droo Green\n\tjan: that looks a little more reasonable ...\n\tKeith: The homeworld yellow catastrophe would have been a disadvantage for me but not as much as my being able to put a g3 in your home system backed by an r1.  Now that you have a red backup I better do something about the yellow situation.\n\n40) jan: Build R1 Jan\n\n41) Keith: Move G3 Keith Fenu\n\n42) jan: Move Y2 Fenu Gio\n\n43) Keith: Build G1 Keith\n\n44) jan: Build Y1 Gio\n\n45) Keith: Sacrifice Y1 Keith\nMove G3 Fenu Gio\n\n46) jan: Discover Y2 Gio G3 Eden\n\tjan: well i guess so\n\n47) Keith: Sacrifice R1 Midworld\nAttack B1 Gio\n\n48) jan: Sacrifice R1 Jan\nAttack B1 Gio\n\n49) Keith: Sacrifice R1 Midworld\nAttack B1 Gio\n\n50) jan: Build B1 Jan\n\n51) Keith: Trade G1 R1 Keith\n\n52) jan: Move Y1 Gio Eden\n\n53) Keith: Trade G3 Y3 Gio\n\n54) jan: Trade B3 G3 Jan\n\n55) Keith: Build G1 Keith\n\n56) jan: Build B2 Jan\n\n57) Keith: Move G1 Keith Midworld\n\n58) jan: Sacrifice B1 Jan\nTrade Y1 B1 Eden\n\n59) Keith: Build G1 Keith\n\n60) jan: Sacrifice Y2 Eden\nMove B1 Eden Keith\nMove R2 Jan Gio\n\n61) Keith: Sacrifice R1 Keith\nAttack R2 Gio\n\n62) jan: Build B2 Jan\n\n63) Keith: Sacrifice G3 Keith\nBuild G2 Midworld\nBuild G2 Midworld\nBuild G3 Keith\n\n64) jan: Trade B2 R2 Jan\n\n65) Keith: Sacrifice R2 Gio\nAttack B1 Keith\nPass\n\n66) jan: Build B2 Jan\n\n67) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B3 Gio\nBuild B3 Midworld\n\n68) jan: Discover B2 Jan Y1 Elf\n\n69) Keith: Move G1 Midworld Gio\n\n70) jan: Move B2 Elf Midworld\n\n71) Keith: Sacrifice Y3 Gio\nMove B3 Gio Jan\nMove G1 Gio Jan\nMove B1 Gio Jan\n\n72) jan: Attack B3 Jan\n\n73) Keith: Sacrifice G2 Midworld\nBuild G1 Jan\nBuild B3 Jan\nCatastrophe Jan Green\nCatastrophe Jan Blue\n\n74) jan: Discover B2 Midworld G1 Goblin\n\n75) Keith: Trade B3 R3 Midworld\n\n76) jan: Trade B2 Y2 Goblin\n\n77) Keith: Move G3 Keith Jan\n\n78) jan: Build Y1 Goblin\n\n79) Keith: Sacrifice R3 Midworld\nAttack R2 Jan\nPass\nPass\n\tjan: sorry my internet has been down \n\tKeith: Glad to see you made it back and that it was not something like your health going down.\n\n\tjan: good game\n\tjan: i will start a new life on the lovely planet of goblin\n\tKeith: Thank you for the game.  Have you thought about joining the Ladder?\n\tjan: Im afraid im a poor play by internet player. i find that i am constantly getting sucked up into other aspects of life and keep going over time.\r\n\n\tKeith: Your going overtime was not a problem for me.  Perhaps we will have that SDG face to face gathering some day and you can have at me in real time.\n\nHomeworlds Online (SDG# 6174)\nVariants: &quot;Hard time&quot;\nStarted: 2007.1.28, Ended: 2007.2.25\nParticipants: eugman (S), GreedyAlgorithm (N)\nWinner: eugman\n\n1) GreedyAlgorithm: Homeworld Y1 B2 G3\n\n2) eugman: Homeworld B3 G2 Y3\n\tGreedyAlgorithm: Hi. Keith suggested I join the ladder, so here I am. Have fun!\n\teugman: Haven&#39;t played in a while so I may be rusty at first.\r\n\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) eugman: Build Y1 Eugman\n\n5) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n6) eugman: Discover Y1 Eugman G1 Newireland\n\n7) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Motieprime\n\n8) eugman: Build Y1 Eugman\n\n9) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm\nBuild G2 Motieprime\nBuild G2 Greedyalgorithm\nBuild G3 Greedyalgorithm\n\teugman: Talk about last minute decision.\n\n10) eugman: Trade Y3 G3 Eugman\n\n11) GreedyAlgorithm: Trade G2 Y2 Greedyalgorithm\n\n12) eugman: Build Y2 Newireland\n\n\nHomeworlds Online (SDG# 6182)\nStarted: 2007.1.29, Ended: 2007.2.13\nParticipants: clockwise (S), GreedyAlgorithm (N)\nWinner: clockwise\n\n1) GreedyAlgorithm: Homeworld Y1 B2 G3\n\n2) clockwise: Homeworld B3 G1 Y3\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) clockwise: Build Y1 Clockwise\n\n5) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm\n\n6) clockwise: Build Y1 Clockwise\n\n7) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n8) clockwise: Trade Y3 G3 Clockwise\n\n9) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n10) clockwise: Build G2 Clockwise\n\n11) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Tosystem\n\n12) clockwise: Discover G2 Clockwise Y2 Gyro\n\n13) GreedyAlgorithm: Build G2 Tosystem\n\n14) clockwise: Build Y2 Clockwise\n\n15) GreedyAlgorithm: Move G2 Tosystem Gyro\n\n16) clockwise: Discover G2 Gyro G3 Denial\n\n17) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm\nBuild G2 Gyro\nBuild G3 Greedyalgorithm\nBuild B1 Greedyalgorithm\n\tclockwise: I should have paid more attention in the opening...\n\n18) clockwise: Sacrifice Y1 Clockwise\nMove G2 Denial Greedyalgorithm\n\n19) GreedyAlgorithm: Sacrifice G2 Gyro\nBuild G2 Tosystem\nBuild G3 Gyro\n\n20) clockwise: Trade G2 B2 Greedyalgorithm\nCatastrophe Greedyalgorithm Blue\n\n21) GreedyAlgorithm: Discover G2 Tosystem B2 Blue\n\n22) clockwise: Discover Y1 Clockwise G2 Hovercraft\n\n23) GreedyAlgorithm: Trade G2 R2 Blue\n\n24) clockwise: Sacrifice G3 Clockwise\nBuild Y1 Hovercraft\nBuild Y2 Hovercraft\nBuild Y3 Clockwise\n\n25) GreedyAlgorithm: Move G3 Gyro Clockwise\n\n26) clockwise: Sacrifice Y3 Clockwise\nMove Y1 Hovercraft Greedyalgorithm\nMove Y1 Hovercraft Greedyalgorithm\nMove Y2 Hovercraft Greedyalgorithm\nCatastrophe Greedyalgorithm Yellow\n\tGreedyAlgorithm: What is correct etiquette at SDG, to resign like chess or play to the end like Warcraft?\n\tclockwise: I&#39;m not entirely sure, this is only my third game on SDG.  In my game against Zoltar (who has been around awhile) he resigned quite early in the endgame.\n\tclockwise: My own feeling is that Homeworlds is very unforgiving of mistakes so playing to the end is pretty reasonable.\n\tclockwise: Thanks for the game, I thought you had me for a while there!\n\tGreedyAlgorithm: Yeah, I&#39;m not sure how I missed the blue catastrophe. But it is _very_ unforgiving. :)\n\tGreedyAlgorithm: Good game!\n\n\nHomeworlds Online (SDG# 6204)\nStarted: 2007.1.30, Ended: 2007.2.6\nParticipants: dsheldon (S), wmreed (N)\nWinner: dsheldon\n\n1) wmreed: Homeworld B2 G1 Y3\n\n2) dsheldon: Homeworld B3 R2 G3\n\twmreed: Interesting that the north seat is at the bottom.  Or does the game orient itself to me?  Hmm.  This will take some getting used to.  I&#39;m new to SuperDuper, and Homeworlds!  LOL.\n\tdsheldon: Yes, you are always at the bottom and your pieces always point up.\n\n3) wmreed: Trade Y3 R3 Wmreed\n\n4) dsheldon: Build G1 Dsheldon\n\n5) wmreed: Build R1 Wmreed\n\tdsheldon: You said you were new to both SDG and Homeworlds, right?  Would you like me to try and teach you some strategy?  I can&#39;t guarantee that it will be great; even though I&#39;ve been playing Homeworlds for a long time, I don&#39;t play it very often.\r\n\r\nThat being said, I don&#39;t think your last move (G3-&gt;R3) was very good.  Only in very rare situations do you want to do anything but build a second ship on your first regular move.  If you&#39;re worried about my red star and are trying to defend yourself, don&#39;t be.  Neither of us has the capacity to begin an offensive yet.\n\twmreed: Strategy hints will be much appreciated.  I&#39;ll remember your suggestion here.\r\n\r\nNot really knowing what to do, I thought that I should have had a red to begin with (an error in my opening), and this was a way to get a large red before the game went too much farther.\n\n6) dsheldon: Trade G1 Y1 Dsheldon\n\tdsheldon: There are several schools of thought on that.  Firstly (and the one I subscribe to, generally) is that red is among the least useful colors as it is only useful once you and your opponent are physically near each other.  At this point neither of us could easily get our ship near each other, hence red is useless in the early game.  All other colors are necessary for sustained growth and, therefore, you want to start with them.\r\n\r\nThe second school (which I&#39;m trying out here) is that red has great defensive powers as a deterrent.  As I have a red star I will always be able to defend myself in my homeworld.  I also will probably have a large ship in my homeworld at most points in the game, making that defense even stronger.\r\n\r\nThe third school (and there may be more still) is that a red ship gives you a jump on the attack.  This would probably only be greatly useful if you were able to engineer your homeworld to be closer than normal (say your opponent has a 1-2 world, like yours in this game.  if you make a 3-3 world then they are actually adjacent.  having a red ship in that case could be very advantageous).\r\n\r\nAt least, that&#39;s how I figure it.\n\n7) wmreed: Trade R1 Y1 Wmreed\n\n8) dsheldon: Build G1 Dsheldon\n\n9) wmreed: Discover Y1 Wmreed B3 Andy\n\n10) dsheldon: Discover G1 Dsheldon B1 Lichen\n\tdsheldon: That was a good change for your last move.  Diversification of your Homeworld is a great way to start.\n\n11) wmreed: Build R1 Wmreed\n\n12) dsheldon: Build G1 Dsheldon\n\n13) wmreed: Trade R1 Y1 Wmreed\n\n14) dsheldon: Discover G1 Dsheldon B1 Tooth\n\n15) wmreed: Build Y2 Wmreed\n\n16) dsheldon: Build G2 Dsheldon\n\tdsheldon: You&#39;re in a pretty bad position here because you don&#39;t have any green ships.  Early on, green is key because it&#39;s how you get more ships.  There are also no small greens left, so you can&#39;t swap your other small ships to get greens that way.  What I strongly recommend you do is build a medium yellow this turn and swap it for a medium green next turn.  Otherwise I will rapidly overcome you in fleet size.\n\twmreed: I see.  Thanks!\r\n\n\n17) wmreed: Trade Y2 G2 Wmreed\n\n18) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Lichen\nBuild G3 Tooth\nBuild G3 Dsheldon\n\n19) wmreed: Build G3 Wmreed\n\n20) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y2 Dsheldon\nBuild Y2 Dsheldon\n\n21) wmreed: Build Y2 Wmreed\n\n22) dsheldon: Sacrifice Y2 Dsheldon\nMove G1 Lichen Andy\nMove G1 Andy Wmreed\nCatastrophe Wmreed G\n\n23) wmreed: Move R3 Wmreed Tooth\n\n24) dsheldon: Sacrifice Y2 Dsheldon\nDiscover G3 Tooth Y3 Bus\nDiscover G1 Tooth Y3 Jerome\n\twmreed: nice move\r\n\n\n25) wmreed: Trade R3 Y3 Tooth\n\tdsheldon: Be careful now, losing one of the stars in your homeworld changes the shape of the board.  Our homeworlds are now just two moves from each other instead of three.\r\n\r\nAlso, in case it wasn&#39;t already obvious, Catastrophies are the killer move of the game.  Unlike Red actions, there&#39;s no chance to fight back.  Catastrophies let you &quot;move and shoot&quot; all in one turn.\n\tdsheldon: Good move!  Way to go on the aggressive.\n\twmreed: yeah, i know.  i was so busy setting up a similar move on you that I wasn&#39;t paying attention to how many jumps away you were.\r\n\n\n26) dsheldon: Build G1 Lichen\n\n27) wmreed: Trade Y2 G2 Wmreed\n\n28) dsheldon: Move G1 Jerome Wmreed\n\tdsheldon: My next move will take a while, I have to go pick up my wife at work now.\n\n29) wmreed: Trade Y1 R1 Andy\n\n30) dsheldon: Trade G1 B1 Wmreed\n\n31) wmreed: Sacrifice Y1 Wmreed\nMove R1 Andy Wmreed\n\n32) dsheldon: Sacrifice G2 Dsheldon\nBuild B2 Wmreed\nBuild B2 Wmreed\nCatastrophe Wmreed B\n\n\tdsheldon: Good game.  I look forward to playing against you again.\n\twmreed: Thank you!\r\n\n\nHomeworlds Online (SDG# 6227)\nStarted: 2007.1.30, Ended: 2007.2.22\nParticipants: Preacher (S), NateStraight (N)\nWinner: NateStraight\n\n1) NateStraight: Homeworld B3 G2 R3\n\n2) Preacher: Homeworld Y2 G1 B3\n\tNateStraight: Hey! :)\r\n\r\nI&#39;m glad I started with Alien City before trying to play this game. I think I would have been scared away from the site entirely. I can see why they chose a command-line system instead of something simple like a drag-and-drop from the reserve, but it&#39;ll probably take me a minute to figure it out. :)\n\n3) NateStraight: Build R1 Natestraight\n\tPreacher: you get used to it pretty quickly :)\n\n4) Preacher: Build B1 Preacher\n\n5) NateStraight: Trade R1 Y1 Natestraight\n\n6) Preacher: Trade B1 R1 Preacher\n\n7) NateStraight: Discover Y1 Natestraight B1 Blue\n\n8) Preacher: Build R1 Preacher\n\n9) NateStraight: Trade Y1 G1 Blue\n\n10) Preacher: Trade R1 Y1 Preacher\n\n11) NateStraight: Build R1 Natestraight\n\n12) Preacher: Build B1 Preacher\n\n13) NateStraight: Trade R1 Y1 Natestraight\n\n14) Preacher: Trade B1 G1 Preacher\n\n15) NateStraight: Build G2 Blue\n\n16) Preacher: Discover G1 Preacher B3 Sol\n\n17) NateStraight: Trade G2 R2 Blue\n\n18) Preacher: Trade G1 Y1 Sol\n\n19) NateStraight: Build Y2 Natestraight\n\n20) Preacher: Build B1 Preacher\n\n21) NateStraight: Move Y2 Natestraight Blue\n\n22) Preacher: Build R1 Preacher\n\n23) NateStraight: Build Y2 Natestraight\n\n24) Preacher: Discover Y1 Preacher G3 Mars\n\n25) NateStraight: Build Y3 Blue\n\n26) Preacher: Build Y3 Mars\n\n27) NateStraight: Move Y2 Blue Sol\n\n28) Preacher: Move Y1 Mars Preacher\n\n29) NateStraight: Build Y3 Blue\n\n30) Preacher: Move R1 Preacher Mars\n\n31) NateStraight: Move R2 Blue Sol\n\n32) Preacher: Sacrifice Y3 Mars\nMove Y1 Sol Blue\nMove Y1 Preacher Sol\nMove Y1 Sol Blue\nCatastrophe Blue Yellow\n\n33) NateStraight: Trade Y2 G2 Sol\n\tNateStraight: Ahahahaha... that was fun. :p\n\n34) Preacher: Trade B1 Y1 Preacher\n\n35) NateStraight: Move Y1 Natestraight Blue\n\n36) Preacher: Build B1 Preacher\n\n37) NateStraight: Build R1 Sol\n\n38) Preacher: Build R2 Preacher\n\n39) NateStraight: Trade R2 Y2 Sol\n\n40) Preacher: Build R2 Mars\n\n41) NateStraight: Build G1 Sol\n\n42) Preacher: Move Y1 Preacher Mars\n\n43) NateStraight: Trade G2 B2 Sol\n\n44) Preacher: Move R1 Mars Blue\n\n45) NateStraight: Sacrifice Y1 Blue\nMove G1 Blue Sol\n\n46) Preacher: Build R2 Mars\n\n47) NateStraight: Build R3 Sol\n\n48) Preacher: Trade B3 Y3 Preacher\n\n49) NateStraight: Sacrifice Y2 Sol\nMove R1 Sol Preacher\nMove R3 Sol Preacher\nCatastrophe Preacher Red\n\n50) Preacher: Move R2 Mars Blue\n\n51) NateStraight: Trade B2 R2 Sol\n\n52) Preacher: Build Y1 Mars\n\n53) NateStraight: Build G2 Sol\n\n54) Preacher: Trade R2 G2 Blue\n\n55) NateStraight: Trade G2 Y2 Sol\n\n56) Preacher: Build G2 Blue\n\n57) NateStraight: Build Y1 Sol\n\n58) Preacher: Trade G2 R2 Blue\n\n59) NateStraight: Sacrifice Y2 Natestraight\nMove Y1 Sol Preacher\nMove Y2 Sol Preacher\nCatastrophe Preacher Yellow\n\n\nHomeworlds Online (SDG# 6258)\nStarted: 2007.2.1, Ended: 2007.2.28\nParticipants: jbj77 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R1 G3\n\n2) jbj77: Homeworld R3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jbj77: Build G1 Jbj77\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) jbj77: Trade G1 Y1 Jbj77\n\n7) TwoShort: Build G1 Twoshort\n\n8) jbj77: Build G1 Jbj77\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) jbj77: Discover G1 Jbj77 Y2 Alpha\n\n11) TwoShort: Build Y1 Twoshort\n\n12) jbj77: Build Y2 Jbj77\n\tTwoShort: So, looking at your game history, I notice that in your first game you beat Zoltar, who I know to be  a pretty good player.  May I conclude you&#39;ve played a bit of &quot;in person&quot; Homeworlds before?\n\tjbj77: I&#39;ve played four in-person games.  I didn&#39;t think I had any chance against Zoltar...maybe just beginner&#39;s luck?!\n\n13) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n14) jbj77: Discover Y1 Jbj77 B2 Beta\n\n15) TwoShort: Build G1 Twoshort\n\n16) jbj77: Trade Y1 R1 Beta\n\n17) TwoShort: Build Y1 Twoshort\n\n18) jbj77: Move G1 Alpha Yolonda\n\n19) TwoShort: Discover G1 Yolonda Y2 Yellonia\n\n20) jbj77: Build G2 Jbj77\n\n21) TwoShort: Move Y1 Twoshort Yolonda\n\n22) jbj77: Sacrifice R1 Beta\nAttack Y1 Yolonda\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\nBuild Y3 Twoshort\n\n24) jbj77: Sacrifice Y2 Jbj77\nMove Y1 Yolonda Twoshort\nMove Y1 Twoshort Bluestar\nCatastrophe Bluestar Yellow\n\n25) TwoShort: Build G2 Yellonia\n\n26) jbj77: Trade G2 Y2 Jbj77\n\n27) TwoShort: Build G2 Twoshort\n\tjbj77: I hate to have to do this...\n\tTwoShort: I was hoping you&#39;d hate to have to do it so much that you wouldn&#39;t...\n\n28) jbj77: Build G2 Yolonda\n\n29) TwoShort: Trade G2 R2 Twoshort\n\n30) jbj77: Build Y1 Jbj77\n\n31) TwoShort: Move R2 Twoshort Yolonda\n\n32) jbj77: Discover G2 Yolonda B2 Beta\n\n33) TwoShort: Trade Y3 G3 Twoshort\n\n34) jbj77: Sacrifice G3 Jbj77\nBuild G2 Beta\nBuild G3 Beta\nBuild G3 Yolonda\n\tjbj77: I seem to have fallen behind.\n\n35) TwoShort: Move G1 Yellonia Yolonda\n\n36) jbj77: Move G3 Yolonda Twoshort\n\n37) TwoShort: Sacrifice R2 Yolonda\nAttack G1S Yolonda\nAttack G3S Twoshort\n\n38) jbj77: Sacrifice Y2 Jbj77\nMove G2 Beta Yolonda\nMove G2 Yolonda Twoshort\nCatastrophe Twoshort Green\n\n39) TwoShort: Move G2 Yellonia Jbj77\n\n40) jbj77: Sacrifice Y1 Jbj77\nMove G3 Beta Jbj77\n\n41) TwoShort: Build G1 Jbj77\n\n42) jbj77: Trade G3 Y3 Jbj77\n\n43) TwoShort: Build G2 Jbj77\n\n44) jbj77: Build G3 Beta\n\n45) TwoShort: Build G3 Yolonda\n\n46) jbj77: Trade G3 Y3 Beta\n\n47) TwoShort: Move G1 Yolonda Twoshort\n\n48) jbj77: Build G3 Beta\n\n49) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Twoshort\n\n50) jbj77: Trade G2 R2 Beta\n\n51) TwoShort: Trade G1 R1 Twoshort\n\n52) jbj77: Attack G2 Jbj77\n\n53) TwoShort: Sacrifice G3 Yolonda\nBuild G1 Jbj77\nBuild G2 Yolonda\nBuild G3 Twoshort\nCatastrophe Jbj77 Green\n\n54) jbj77: Build G1 Beta\n\n55) TwoShort: Discover G1 Yolonda B2 Banzai\n\n56) jbj77: Discover G3 Beta B3 Gamma\n\n57) TwoShort: Trade Y1 B1 Twoshort\n\n58) jbj77: Build Y1 Beta\n\n59) TwoShort: Trade G1 B1 Banzai\n\n60) jbj77: Trade Y3 B3 Beta\n\n61) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Banzai\nBuild Y1 Twoshort\nBuild Y2 Twoshort\n\n62) jbj77: Discover B3 Beta Y3 Delta\n\n63) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n64) jbj77: Sacrifice G3 Gamma\nBuild B3 Delta\nBuild Y2 Jbj77\nBuild Y2 Beta\n\n65) TwoShort: Sacrifice Y2 Twoshort\nMove B1 Twoshort Delta\nMove B1 Banzai Delta\nCatastrophe Delta Blue\n\n66) jbj77: Trade Y2 G2 Jbj77\n\n67) TwoShort: Build Y2 Grogar\n\n68) jbj77: Discover G1 Beta Y3 Epsilon\n\n69) TwoShort: Move Y1 Grogar Banzai\n\n70) jbj77: Move Y1 Beta Yolonda\n\n71) TwoShort: Trade B3 R3 Banzai\n\n72) jbj77: Build Y2 Jbj77\n\n73) TwoShort: Move R3 Banzai Epsilon\n\n74) jbj77: Move G1 Epsilon Beta\n\n75) TwoShort: Sacrifice R1 Twoshort\nAttack Y1S Yolonda\n\n76) jbj77: Move R2 Beta Yolonda\n\n77) TwoShort: Move Y1 Yolonda Beta\n\n78) jbj77: Trade Y2 R2 Jbj77\n\n79) TwoShort: Move R3 Epsilon Beta\n\n80) jbj77: Attack G2 Yolonda\n\tjbj77: I knew I was dead meat when I made that blunder with the blues.\n\n81) TwoShort: Attack Y2S Beta\n\n\tjbj77: There is no need to prolong my misery.\r\nGreat game.  Thanks a ton.\n\nHomeworlds Online (SDG# 6256)\nStarted: 2007.2.1, Ended: 2007.2.8\nParticipants: jbj77 (S), morganfitzp (N)\nWinner: morganfitzp\n\n1) morganfitzp: Homeworld G3 Y1 B3\n\n2) jbj77: Homeworld B2 R1 G3\n\n3) morganfitzp: Build B1 Morganfitzp\n\n4) jbj77: Build G1 Jbj77\n\n5) morganfitzp: Discover B1 Morganfitzp G2 Sourdough\n\n6) jbj77: Trade G1 Y1 Jbj77\n\n7) morganfitzp: Build B1 Morganfitzp\n\n8) jbj77: Build Y1 Jbj77\n\n9) morganfitzp: Trade B3 G3 Morganfitzp\n\n10) jbj77: Discover Y1 Jbj77 B3 Alpha\n\n11) morganfitzp: Build B1 Morganfitzp\n\n12) jbj77: Trade G3 B3 Jbj77\n\n13) morganfitzp: Sacrifice G3 Morganfitzp\nBuild B2 Sourdough\nBuild B2 Sourdough\nBuild B3 Morganfitzp\n\n14) jbj77: Trade Y1 G1 Jbj77\n\tjbj77: Ouch!\n\n15) morganfitzp: Trade B1 Y1 Sourdough\n\n16) jbj77: Build G1 Jbj77\n\n17) morganfitzp: Build Y2 Sourdough\n\n18) jbj77: Sacrifice G1 Jbj77\nBuild Y2 Alpha\n\tjbj77: I think I&#39;m toast.\n\tmorganfitzp: ...Toast is better than stale bread.\n\n19) morganfitzp: Discover B2 Sourdough G3 Kvass\n\n20) jbj77: Discover Y1 Alpha G2 Beta\n\n21) morganfitzp: Trade B3 G3 Morganfitzp\n\n22) jbj77: Build Y2 Beta\n\n23) morganfitzp: Build B1 Kvass\n\n24) jbj77: Trade B3 R3 Jbj77\n\n25) morganfitzp: Trade B2 R2 Kvass\n\tjbj77: You seem to like blue.\n\n26) jbj77: Sacrifice G1 Jbj77\nBuild Y3 Alpha\n\n27) morganfitzp: Sacrifice Y2 Sourdough\nMove B1 Kvass Jbj77\nMove R2 Kvass Jbj77\n\tmorganfitzp: Yes. Blue feels very calm and peaceful. Mix it with yellow, and you get green. But you don&#39;t have to mix it with anything in this game to make it green, yellow, or even red.\n\n28) jbj77: Sacrifice Y2 Beta\nMove Y3 Alpha Jbj77\nMove R3 Jbj77 Alpha\n\tjbj77: Normally I would agree that blue is very peaceful, but in this game it has made me uneasy.  Red seems very threatening right now too.  Yellow is looking a bit better to me.\n\n29) morganfitzp: Sacrifice G3 Morganfitzp\nBuild R1 Jbj77\nBuild R1 Jbj77\nBuild B2 Jbj77\nCatastrophe Jbj77 Red\n\n30) jbj77: Sacrifice R3 Alpha\nAttack B2 Jbj77\nAttack B1 Jbj77\nPass\n\tjbj77: I almost made a big blunder there.  I didn&#39;t see this coming...things are not looking good for South.\n\n31) morganfitzp: Move B1 Morganfitzp Jbj77\nCatastrophe Jbj77 Blue\n\n\tmorganfitzp: Now your people have been set free!\n\nHomeworlds Online (SDG# 6259)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.1, Ended: 2007.3.18\nParticipants: Kermit (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld B2 G3 Y3\n\n2) Kermit: Homeworld G1 B3 Y3\n\n3) jbj77: Build Y1 Jbj77\n\n4) Kermit: Build Y1 Kermit\n\n5) jbj77: Trade Y1 R1 Jbj77\n\n6) Kermit: Discover Y1 Kermit B2 Ipaq\n\n7) jbj77: Build R1 Jbj77\n\n8) Kermit: T Y1 G1 Ipaq\n\n9) jbj77: Trade R1 G1 Jbj77\n\n10) Kermit: Build G2 Ipaq\n\n11) jbj77: Discover G1 Jbj77 Y1 Alpha\n\n12) Kermit: Build Y1 Kermit\n\n13) jbj77: Build G2 Alpha\n\n14) Kermit: Trade Y1 B1 Kermit\n\n15) jbj77: Build G2 Alpha\n\n16) Kermit: Trade G1 Y1 Ipaq\n\n17) jbj77: Discover G1 Alpha B2 Beta\n\n18) Kermit: Build B1 Kermit\n\n19) jbj77: Discover G2 Alpha Y2 Gamma\n\n20) Kermit: Trade B1 R1 Kermit\n\n21) jbj77: Trade G1 B1 Beta\n\n22) Kermit: Build G1 Ipaq\n\n23) jbj77: Build G1 Alpha\n\n24) Kermit: Discover G1 Ipaq B3 Visor\n\n25) jbj77: Discover G1 Alpha B3 Delta\n\n26) Kermit: Build G3 Visor\n\n27) jbj77: Build G3 Alpha\n\n28) Kermit: Trade G2 Y2 Ipaq\n\n29) jbj77: Move G2 Alpha Beta\n\n30) Kermit: Sacrifice Y1 Ipaq\nMove G1 Visor Alpha\n\n31) jbj77: Discover G3 Alpha Y3 Epsilon\n\n32) Kermit: Build G2 Alpha\n\n33) jbj77: Trade G2 Y2 Beta\n\n34) Kermit: Sacrifice G2 Alpha\nBuild R1 Kermit\nBuild R2 Kermit\n\n35) jbj77: Discover B1 Beta R3 Phi\n\n36) Kermit: Build Y1 Kermit\n\n37) jbj77: Build R2 Jbj77\n\n38) Kermit: Build G2 Alpha\n\n39) jbj77: Build G2 Gamma\n\n40) Kermit: Move R2 Kermit Ipaq\n\n41) jbj77: Discover R2 Jbj77 Y1 Zeta\n\n42) Kermit: Sacrifice Y2 Ipaq\nMove G2 Alpha Gamma\nMove G1 Alpha Gamma\nCatastrophe Gamma Green\n\n43) jbj77: Sacrifice G3 Epsilon\nBuild R2 Jbj77\nBuild R3 Jbj77\nBuild R3 Zeta\n\tKermit: a mild reset.  :{)}\n\tjbj77: Yah, I was hoping you weren&#39;t going to do that.\n\n44) Kermit: Sacrifice Y1 Kermit\nMove G3 Visor Ipaq\n\n45) jbj77: Discover R3 Jbj77 B1 Theta\n\n46) Kermit: Build Y1 Kermit\n\n47) jbj77: Sacrifice G1 Delta\nBuild B3 Phi\n\n48) Kermit: Discover Y1 Kermit G2 Snark\n\n49) jbj77: Trade B3 G3 Phi\n\n50) Kermit: Move R1 Kermit Snark\n\n51) jbj77: Build B3 Phi\n\n52) Kermit: Discover B1 Kermit G2 Weasel\n\n53) jbj77: Move R3 Zeta Weasel\n\n54) Kermit: Sacrifice Y1 Snark\nDiscover B1 Weasel G1 Xerxes\n\n55) jbj77: Move Y2 Beta Xerxes\n\n56) Kermit: Build B2 Xerxes\n\n57) jbj77: Sacrifice R2 Jbj77\nAttack B2 Xerxes\nAttack B1 Xerxes\n\n\nHomeworlds Online (SDG# 6269)\nStarted: 2007.2.2, Ended: 2007.2.12\nParticipants: eriinfo (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld B1 G2 R3\n\teriinfo: Hey.\n\n2) eriinfo: Homeworld Y3 B1 G3\n\n3) jbj77: Build R1 Jbj77\n\n4) eriinfo: Build G1 Eriinfo\n\tjbj77: Oh man, bet you weren&#39;t expecting that move!\n\n5) jbj77: Trade R3 Y3 Jbj77\n\n6) eriinfo: Trade G1 R1 Eriinfo\n\n7) jbj77: Build Y1 Jbj77\n\teriinfo: Red ships are comin&#39; out, yo&#39;\n\n8) eriinfo: Build G1 Eriinfo\n\n9) jbj77: Trade Y1 G1 Jbj77\n\n10) eriinfo: Trade G1 Y1 Eriinfo\n\n11) jbj77: Build Y1 Jbj77\n\n12) eriinfo: Build G1 Eriinfo\n\n13) jbj77: Trade Y1 B1 Jbj77\n\n14) eriinfo: Trade G3 B3 Eriinfo\n\n15) jbj77: Build B2 Jbj77\n\n16) eriinfo: Build Y1 Eriinfo\n\n17) jbj77: Discover B1 Jbj77 G3 Alpha\n\n18) eriinfo: Discover Y1 Eriinfo B2 Cire2\n\n19) jbj77: Build B2 Alpha\n\n20) eriinfo: Trade B3 G3 Eriinfo\n\n21) jbj77: Build B3 Alpha\n\n22) eriinfo: Build R1 Eriinfo\n\n23) jbj77: Trade B2 Y2 Alpha\n\n24) eriinfo: Build R2 Eriinfo\n\n25) jbj77: Build R2 Jbj77\n\n26) eriinfo: Move R2 Eriinfo Cire2\n\n27) jbj77: Move R1 Jbj77 Alpha\n\n28) eriinfo: Move G1 Eriinfo Cire2\n\n29) jbj77: Trade B3 G3 Alpha\n\n30) eriinfo: Move R1 Eriinfo Cire2\n\n31) jbj77: Move G3 Alpha Cire2\n\n32) eriinfo: Build G1 Cire2\n\n33) jbj77: Sacrifice R2 Jbj77\nAttack R2 Cire2\nAttack R1 Cire2\n\n34) eriinfo: Build R2 Eriinfo\n\n35) jbj77: Sacrifice Y3 Jbj77\nMove G3 Cire2 Eriinfo\nMove R1 Cire2 Eriinfo\nMove R2 Cire2 Eriinfo\nCatastrophe Eriinfo Red\n\n36) eriinfo: Build G2 Eriinfo\n\n37) jbj77: Trade G3 R3 Eriinfo\n\n38) eriinfo: Sacrifice G3 Eriinfo\nBuild G2 Eriinfo\nBuild G3 Cire2\nBuild Y1 Cire2\n\n39) jbj77: Attack G2 Eriinfo\n\n40) eriinfo: Sacrifice G3 Cire2\nBuild G3 Cire2\nBuild G3 Eriinfo\nBuild Y2 Eriinfo\n\n41) jbj77: Attack G3 Eriinfo\n\n42) eriinfo: Move G1 Cire2 Eriinfo\nCatastrophe Eriinfo G\n\n43) jbj77: Attack Y2 Eriinfo\n\n44) eriinfo: Move G3 Cire2 Eriinfo\n\n45) jbj77: Attack G3 Eriinfo\n\n46) eriinfo: Move G1 Cire2 Eriinfo\n\n47) jbj77: Sacrifice R3 Eriinfo\nAttack G1 Eriinfo\nAttack Y1 Eriinfo\nPass\n\n\tjbj77: Thanks for the game.  It was fun.\n\teriinfo: Thank you. I had a good time.\n\nHomeworlds Online (SDG# 6284)\nStarted: 2007.2.2, Ended: 2007.2.10\nParticipants: jan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 R2 G3\n\n2) jan: Homeworld G1 B2 Y3\n\tTwoShort: Howdy...\r\n\n\n3) TwoShort: Build G1 Twoshort\n\tjan: Hi, nice to be playing with you. how did you come up with the name two short , are there two of you? \n\n4) jan: Build Y1 Jan\n\tTwoShort: Sadly, there&#39;s only one of me.  There are *supposed* to be three of me, but currently I&#39;m two short.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) jan: Trade Y1 G1 Jan\n\tTwoShort: Seriously though, TwoShort doesn&#39;t actually mean anything.  Many years ago I signed up for an account somewhere that would only allow a 6 charachter username, and none of my ususal handles fit.  In frustration, I came up with &quot;2Short&quot;, as in 6 letters was too short, and eventually I decided I liked the sound of it.  Then when I ran into places (like here) that wouldn&#39;t let you start with a digit, I decied to spell out the 2 just to stay cryptic.  At at this point TwoShort has been my informal online persona for years, so I&#39;m kind of attached to it, even thought the origin is sort of silly.\n\tjan: Thats great! I love that story. i had a similar experience trying to get my first email account. i tried many different versions of my name Jan Burger but to my suprise they were all taken. the closest i could get was jan burger 116 or something. my sweety sugested janthehero and it wasn&#39;t taken so i said i guess that&#39;s it.\n\n7) TwoShort: Build Y1 Twoshort\n\n8) jan: Build G1 Jan\n\n9) TwoShort: Build G2 Twoshort\n\tTwoShort: Eek.  I just realized we&#39;re in a small universe.  Was that intentional?\n\n10) jan: Discover G1 Jan Y3 Wolo\n\tjan: i noticed that to. but no it wasn&#39;t concious on my part.\n\n11) TwoShort: Move G2 Twoshort Wolo\n\n12) jan: Build G2 Wolo\n\n13) TwoShort: Move G2 Wolo Jan\n\n14) jan: Discover G1 Jan B3 Zed\n\n15) TwoShort: Build G2 Jan\n\n16) jan: Build G3 Zed\n\n17) TwoShort: Trade G2 B2 Jan\n\n18) jan: Sacrifice G3 Zed\nBuild G2 Zed\nBuild G3 Wolo\nBuild G3 Zed\n\tjan: Whoops. i made a mistake. i learned to play homeworlds from a fellow who plays with his kids in school. some of the rules he simplifys for them. there was one that we always played with that for some reason i didn&#39;t question, and check the rulebook. i thought you couldn&#39;t use another players homeworld powers. i guess me and my friend just played that way. \n\n19) TwoShort: Sacrifice Y1 Twoshort\nMove G2 Jan Zed\nCatastrophe Zed Green\n\n20) jan: Trade Y3 R3 Jan\n\n21) TwoShort: Build B1 Jan\n\n22) jan: Move G2 Wolo Jan\n\n23) TwoShort: Build B1 Jan\nCatastrophe Jan Blue\n\n24) jan: Discover G3 Wolo B2 New Zed\n\n25) TwoShort: Build G1 Twoshort\n\n26) jan: Build G2 New\n\tjan: You sent me back to the stone age!\n\n27) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n28) jan: Sacrifice G3 New\nBuild G2 New\nBuild G3 Wolo\nBuild R1 Jan\n\n29) TwoShort: Build G3 Yoyodyne\n\n30) jan: Trade G2 Y2 New\n\n31) TwoShort: Move G1 Yoyodyne Jan\n\n32) jan: Sacrifice G2 Jan\nBuild G2 New\nBuild G2 New\n\tTwoShort: gotcha. :)\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Jan\nPass\nPass\n\n34) jan: Sacrifice Y2 New\nMove G3 Wolo Twoshort\nMove G1 Wolo Twoshort\n\n35) TwoShort: Move G3 Yoyodyne Jan\nCatastrophe Jan Green\n\tjan: wow looks like you got me. one last move.... that was a strange game being so close you did a great job keeping me guessing.\n\n\tTwoShort: Yeah, usually my problem is being too agressive, but the small universe really rewards that.  Thanks for the game!\n\nHomeworlds Online (SDG# 6308)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.4, Ended: 2007.2.20\nParticipants: Uglyfoot (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\tTwoShort: Howdy...\n\n3) TwoShort: Build G1 Twoshort\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Bflat\n\n7) TwoShort: Build G1 Twoshort\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) TwoShort: Build G2 Twoshort\n\n10) Uglyfoot: Build G2 Bflat\n\n11) TwoShort: Trade G2 Y2 Twoshort\n\n12) Uglyfoot: Trade G2 Y2 Bflat\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) Uglyfoot: Build G2 Bflat\n\n15) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n16) Uglyfoot: Trade G1 R1 Uglyfoot\n\n17) TwoShort: Build G1 Twoshort\n\n18) Uglyfoot: Build G2 Uglyfoot\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild Y1 Grogar\nBuild G3 Twoshort\n\n20) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Bflat\nBuild R1 Uglyfoot\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n22) Uglyfoot: Move Y2 Bflat Grogar\nCatastrophe Grogar Y\n\n23) TwoShort: Trade Y2 R2 Twoshort\n\n24) Uglyfoot: Trade G2 R2 Bflat\n\n25) TwoShort: Discover G1 Yolonda Y2 Yellonia\n\n26) Uglyfoot: Discover R2 Bflat Y3 Gminor\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n28) Uglyfoot: Move R1 Uglyfoot Yellonia\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove G2 Yellonia Uglyfoot\nMove G1 Yellonia Uglyfoot\nMove G3 Yolonda Yellonia\nCatastrophe Uglyfoot Green\n\n30) Uglyfoot: Move G1 Bflat Uglyfoot\n\n31) TwoShort: Move G3 Yellonia Uglyfoot\n\n32) Uglyfoot: Build G1 Uglyfoot\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Uglyfoot\nBuild G2 Yolonda\nBuild G3 Twoshort\n\tUglyfoot: I&#39;ll keep struggling even though it looks like I&#39;m finished.\n\n34) Uglyfoot: Build R2 Uglyfoot\nCatastrophe Uglyfoot G\n\tTwoShort: Hmm... It sure looks like you&#39;re finished, but I can&#39;t come up with bullet proof way to finish you off.\n\n35) TwoShort: Trade G1 Y1 Twoshort\n\n36) Uglyfoot: Trade R2 G2 Uglyfoot\n\n37) TwoShort: Discover R2 Twoshort Y3 Yak\n\n38) Uglyfoot: Build R2 Uglyfoot\n\n39) TwoShort: Sacrifice G2 Yolonda\nBuild R3 Yak\nBuild Y1 Twoshort\n\n40) Uglyfoot: Build R3 Uglyfoot\n\n41) TwoShort: Discover Y1 Twoshort R3 Rosie\n\n42) Uglyfoot: Trade R3 G3 Uglyfoot\n\n43) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Twoshort\nBuild Y3 Rosie\n\n44) Uglyfoot: Sacrifice G2 Uglyfoot\nBuild R3 Gminor\nBuild G1 Uglyfoot\n\n45) TwoShort: Move R3 Yak Bflat\n\n46) Uglyfoot: Move Y2 Bflat Gminor\n\n47) TwoShort: Trade Y2 G2 Twoshort\n\n48) Uglyfoot: Trade R2 B2 Uglyfoot\n\n49) TwoShort: Build Y2 Twoshort\n\n50) Uglyfoot: Sacrifice B2 Uglyfoot\nTrade R2 G2 Gminor\nTrade R3 B3 Gminor\n\n51) TwoShort: Discover Y1 Rosie G2 Gloria\n\n52) Uglyfoot: Build G1 Gminor\n\n53) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Twoshort Gminor\nMove Y1 Gloria Gminor\nCatastrophe Gminor Yellow\n\n54) Uglyfoot: Move G1 Uglyfoot Yellonia\n\n55) TwoShort: Move R2 Yak Yellonia\n\tUglyfoot: So your saying I had too much stacked in gminor?  ;&gt;\n\n56) Uglyfoot: Build R2 Yellonia\n\tTwoShort: Something like that :)  You were way over the effective limit of &quot;what it will cost me to blow it up.&quot;\n\n57) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Yellonia\nBuild R3 Bflat\nCatastrophe Yellonia Red\n\n58) Uglyfoot: Build R1 Uglyfoot\n\n59) TwoShort: Trade R3 G3 Bflat\n\tUglyfoot: nicely played\n\n60) Uglyfoot: Move R1 Uglyfoot Yellonia\n\n61) TwoShort: Build R2 Bflat\n\n62) Uglyfoot: Build R2 Yellonia\n\n63) TwoShort: Move Y3 Rosie Yellonia\n\n64) Uglyfoot: Build R2 Uglyfoot\n\n65) TwoShort: Sacrifice R3 Bflat\nAttack R2S Yellonia\nAttack R1S Yellonia\nAttack G1S Yellonia\n\n66) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n67) TwoShort: Build G1 Twoshort\n\n68) Uglyfoot: Build R2 Uglyfoot\n\n69) TwoShort: Sacrifice Y3 Yellonia\nMove R1 Yellonia Uglyfoot\nMove R2 Bflat Uglyfoot\nMove G3 Bflat Uglyfoot\nCatastrophe Uglyfoot Red\n\n70) Uglyfoot: Build G1 Uglyfoot\n\n71) TwoShort: Sacrifice R2 Yellonia\nAttack G3S Uglyfoot\nAttack Y2S Uglyfoot\n\tTwoShort: Thanks for the game...  I thought I had you early on there, but it turned into quite an epic!\n\n72) Uglyfoot: Build G2 Uglyfoot\n\n73) TwoShort: Pass\nCatastrophe Uglyfoot Green\n\n\nHomeworlds Online (SDG# 6318)\nStarted: 2007.2.4, Ended: 2007.3.28\nParticipants: jbj77 (S), larry (N)\nWinner: jbj77\n\n1) larry: Homeworld G3 B1 R3\n\tjbj77: Is this my long lost Texan brother Larry?\n\n2) jbj77: Homeworld Y1 B2 G3\n\tlarry: Yep, Larry from Texas.  Hey, I don&#39;t remember any strategies, and despite our three day playing period, I don&#39;t spend a lot of time thinking about it.  So, tell me if I&#39;ve done something obviously retarded.\n\tjbj77: OK.  I just realized I&#39;ve gotten myself into 5 simultaneous games, so I won&#39;t have much time to think either.\n\n3) larry: Build R1 Larry\n\n4) jbj77: Build G1 Jbj77\n\n5) larry: Trade R1 Y1 Larry\n\n6) jbj77: Trade G1 R1 Jbj77\n\tlarry: Sorry Bro, I went over on my time.  Thanks for not forcing my surrender.\n\n7) larry: Build R1 Larry\n\tjbj77: No problem.\n\n8) jbj77: Build G1 Jbj77\n\tlarry: All right, looks like I was late again, but I did try to get on yesterday and the website wouldn&#39;t let me.\n\n9) larry: Trade R3 G3 Larry\n\tjbj77: That&#39;s OK.  I&#39;m stuck in Baltimore right now.\n\tlarry: I didn&#39;t know you were going to Baltimore, are you doing the polygraph for NSA or something?  Did you get snowed in?\n\n10) jbj77: Build G1 Jbj77\n\tlarry: By the way, I don&#39;t get how the timing works.  I guess that&#39;s why I always run out of time.\n\tjbj77: Yah, I got snowed in.\n\n11) larry: Discover G3 Larry Y2 Clubron\n\n12) jbj77: Trade G3 Y3 Jbj77\n\tjbj77: Wow, that&#39;s an unorthodox move.  Almost like moving your queen out early in chess.  Of course I have no way to  threaten your unprotected homeworld, so it&#39;s probably not a bad move.\n\n13) larry: Build Y1 Larry\n\n14) jbj77: Build Y2 Jbj77\n\tlarry: Do you like the name Clubron?\n\tjbj77: Umm.  I don&#39;t think I get it.\n\n15) larry: Build Y2 Larry\n\n16) jbj77: Sacrifice Y2 Jbj77\nDiscover G1 Jbj77 Y3 Alpha\nDiscover G1 Jbj77 Y3 Beta\n\tlarry: There&#39;s nothing to get-I just thought it was a funny name.\n\tjbj77: Oh, well it is a good name.\n\n17) larry: Build G1 Clubron\n\n18) jbj77: Build G2 Beta\n\tlarry: I finally went.\n\n19) larry: Move R1 Larry Clubron\n\n20) jbj77: Sacrifice G2 Beta\nBuild Y2 Jbj77\nBuild G2 Beta\n\n21) larry: Build R1 Clubron\n\n22) jbj77: Sacrifice Y3 Jbj77\nMove Y2 Jbj77 Alpha\nMove Y2 Alpha Clubron\nMove Y2 Clubron Larry\nCatastrophe Larry Yellow\n\n\nHomeworlds Online (SDG# 6271)\nStarted: 2007.2.5, Ended: 2007.3.26\nParticipants: Uglyfoot (S), zoltar (W), morganfitzp (N), jan (E)\nWinner: jan\n\n1) morganfitzp: Homeworld G2 Y1 B3\n\n2) jan: Homeworld B3 Y2 G3\n\tmorganfitzp: Good morning!\n\n3) Uglyfoot: Homeworld B3 Y1 G3\n\tjan: hey folks .   Zoltar is that movie on the website &quot;zoltar from zoron&quot; one that you made or one that you are a fan of ? it looks amazing!\n\n4) zoltar: Homeworld R2 B1 G3\n\n5) morganfitzp: Build B1 Morganfitzp\n\tzoltar: No, I&#39;ve never seen it, much less had anything to do with making it, but it looked cool to me as well, so I chose it as my alias here for fun.\n\n6) jan: Build G1 Jan\n\n7) Uglyfoot: Build G1 Uglyfoot\n\tUglyfoot: Greetings everyone!\n\n8) zoltar: Build G1 Zoltar\n\n9) morganfitzp: Build B1 Morganfitzp\n\n10) jan: Build G1 Jan\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) zoltar: Build G2 Zoltar\n\tzoltar: b g2 zoltar\n\n13) morganfitzp: Trade B3 G3 Morganfitzp\n\tzoltar: Let&#39;s see, build one more ship each, and we could all blow up together!\n\n14) jan: Discover G1 Jan B1 First World\n\tmorganfitzp: (i just guffawed at zoltar&#39;s message)\n\n15) Uglyfoot: Discover G1 Uglyfoot B2 Nyse\n\n16) zoltar: Trade G1 Y1 Zoltar\n\n17) morganfitzp: Build B1 Morganfitzp\n\n18) jan: Build G1 First\n\n19) Uglyfoot: Build G2 Nyse\n\n20) zoltar: Discover G2 Zoltar Y3 Yellowstone\n\n21) morganfitzp: Discover B1 Morganfitzp G3 Brasil\n\n22) jan: Trade G1 Y1 First\n\n23) Uglyfoot: Trade G1 R1 Nyse\n\n24) zoltar: Build G1 Zoltar\n\n25) morganfitzp: Build B2 Brasil\n\n26) jan: Build G1 Jan\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Nyse\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n29) morganfitzp: Trade B1 R1 Morganfitzp\n\n30) jan: Trade G1 R1 Jan\n\n31) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n32) zoltar: Discover Y2 Zoltar B3 Blueridge\n\n33) morganfitzp: Trade B2 Y2 Brasil\n\n34) jan: Build Y2 First\n\n35) Uglyfoot: Build Y3 Uglyfoot\n\n36) zoltar: Sacrifice G1 Zoltar\nBuild Y3 Blueridge\n\n37) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y3 Brasil\nBuild B1 Morganfitzp\nBuild B2 Brasil\n\n38) jan: Discover Y1 First G3 Triclops\n\n39) Uglyfoot: Discover Y3 Uglyfoot R2 Guardian\n\n40) zoltar: Trade Y1 G1 Zoltar\n\n41) morganfitzp: Move Y3 Brasil Nyse\n\n42) jan: Build R1 Jan\n\n43) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove G2 Nyse Yellowstone\nMove G2 Yellowstone Morganfitzp\n\n44) zoltar: Trade Y2 B2 Blueridge\n\n45) morganfitzp: Sacrifice R1 Morganfitzp\nAttack R1S Nyse\n\n46) jan: Sacrifice G3 Jan\nBuild G1 First\nBuild G2 First\nBuild G3 Jan\n\n47) Uglyfoot: Trade G1 R1 Uglyfoot\n\n48) zoltar: Discover B2 Blueridge G1 Greenbelt\n\n49) morganfitzp: Attack G2S Nyse\n\n50) jan: Trade G2 B2 First\n\n51) Uglyfoot: Build G2 Uglyfoot\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Blueridge\nBuild Y2 Zoltar\n\n53) morganfitzp: Sacrifice G2 Nyse\nBuild Y2 Nyse\nBuild Y3 Brasil\n\n54) jan: Move B2 First Triclops\n\n55) Uglyfoot: Trade G2 R2 Uglyfoot\n\n56) zoltar: Discover Y2 Zoltar B3 Bluemoon\n\n57) morganfitzp: Sacrifice Y3 Nyse\nMove Y3 Brasil Morganfitzp\nMove B1 Brasil Zoltar\nMove B2 Brasil Zoltar\n\n58) jan: Build Y3 Triclops\n\n59) Uglyfoot: Build G2 Morganfitzp\n\n60) zoltar: Sacrifice Y3 Blueridge\nMove Y1 Blueridge Morganfitzp\nMove Y2 Bluemoon Morganfitzp\nMove G2 Yellowstone Morganfitzp\nCatastrophe Morganfitzp Y\nCatastrophe Morganfitzp G\n\n61) jan: Move B2 Triclops Zoltar\nCatastrophe Zoltar Blue\n\n62) Uglyfoot: Build R1 Uglyfoot\n\n63) zoltar: Trade B2 R2 Greenbelt\n\n64) jan: Move R1 Jan First\n\tzoltar: Hey wait a second -- can&#39;t let morgan attack my homeworld like that without repercussions! \n\n65) Uglyfoot: Sacrifice Y3 Guardian\nMove R1 Uglyfoot Zoltar\nMove R1 Uglyfoot Zoltar\nMove R2 Uglyfoot Zoltar\nCatastrophe Zoltar R\n\n66) jan: Sacrifice Y2 First\nMove G1 First Nyse\nMove G1 First Nyse\n\tjan: hey wait a second -- you can&#39;t destroy Morgan without reprecussions!\n\n67) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: Yeah, I&#39;m dead too, I see. Oh well.\r\n\n\n68) jan: Sacrifice Y3 Triclops\nMove G1 Nyse Uglyfoot\nMove G1 Nyse Uglyfoot\nPass\nCatastrophe Uglyfoot Green\n\tzoltar: But I avoided last place in a four player game for the first time ever, so I&#39;m happy to die now.\n\tmorganfitzp: Yeah, looks like those sacrifices may have cost more than just my game...Enjoy the rest&#151;I&#39;m with you all in spirit!\n\tmorganfitzp: Question: What happens to those pieces in the nyse system? Nothing?\n\tzoltar: They just sit there until someone captures them\n\n\tjan: BOOOOOOOOOOOOOOOOOMMMMM!!!! (sorry but that was satisfying)  thanks guys\n\tUglyfoot: Thanks for the game.\n\tzoltar: You too.  We all fell in one turn.  Wow.\n\nHomeworlds Online (SDG# 6334)\nStarted: 2007.2.5, Ended: 2007.2.23\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) TwoShort: Homeworld G3 B1 B3 *\n\tzoltar: Hi, TwoShort!  Ok, I&#39;ll try this silly opening again which I still think is the best but which I can&#39;t seem to win with.  :)\n\tTwoShort: In that case, I&#39;ll have to try my response to that opening that I think should be good, but can&#39;t seem to make work.\n\n3) zoltar: Build G1 Zoltar\n\tTwoShort: You know it&#39;s a good idea when the system makes you put in an asterix to prove you really want to do it :)\r\n\n\n4) TwoShort: Build B1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) zoltar: Build Y1 Zoltar\n\n8) TwoShort: Build B2 Twoshort\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) TwoShort: Trade B2 R2 Twoshort\n\n11) zoltar: Build Y1 Zoltar\n\n12) TwoShort: Build B2 Twoshort\n\tzoltar: Looks like my position is already lost after the 4th move!\n\n13) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n14) TwoShort: Discover B1 Twoshort G2 Grogar\n\n15) zoltar: Build Y1 Greenbelt\n\n16) TwoShort: Build B2 Twoshort\n\n17) zoltar: Discover Y1 Greenbelt B2 Blueberry\n\n18) TwoShort: Discover B2 Twoshort G2 Globulus\n\n19) zoltar: Build Y2 Greenbelt\n\n20) TwoShort: Build B3 Grogar\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n22) TwoShort: Build B3 Globulus\n\n23) zoltar: Move R1 Zoltar Greenbelt\n\tTwoShort: Dammit!  I thought you wouldn&#39;t do that.  Not sure why.\n\n24) TwoShort: Build B3 Twoshort\n\tzoltar: I figured it was a trap and I was about to die, but as I was lost if I didn&#39;t do it, my only choice besides resigning was to grab the rest of the yellow pieces, as now at least you are contained for a while.\n\n25) zoltar: Build R1 Greenbelt\n\n26) TwoShort: Build R1 Twoshort\n\n27) zoltar: Build R2 Greenbelt\n\n28) TwoShort: Move Y3 Twoshort Blueberry\n\n\tzoltar: Yep, there&#39;s nothing I can do to stop you at this point.  I analyzed the game, and figured that if you move your Y3 out, even if I blow up the star, then you trade a B3 immediately for a Y3 again, and I&#39;m out that many yellow ships, etc.  I now realize that the first person can never build a small blue star, given the opening response of yours.  GG.\n\tTwoShort: Um, OK...  I would have said I narrowly snuck out of the total domination you had imposed on me, and that after you blew up the star and we broke each others monopolies, I&#39;d be up by a couple ships, but nothing devastating.  I certainly don&#39;t see how I could possibly have won in any kind of short term.  Sorry, but it&#39;s really frustrating to have you resign at the first reversal; I&#39;ve played games that have covered 4 or 5 lead-changes of this magnitude.  This game was just about to get interesting. \n\tzoltar: I didn&#39;t see that I had anything; also I was over at Andy Looney&#39;s, and showed him the position, and he said also that I was toast and didn&#39;t have a chance.  You have the blue industry, you can get all the rest of the big ships, and now I can&#39;t stop you from getting Yellow ones either.  I have nothing I can do at this point, as your yellow ship can march down and if I blow it up, you trade a blue ship for the Y3, and build your B3 again, and then you can always trade your B3&#39;s for R3&#39;s and rebuild your B3&#39;s whenever you want, and then just march them into my homeworld.  I don&#39;t have anything I can do to attack you except to sit around and get the r1&#39;s while you get more of the 3-sized ships. \n\tTwoShort: It seems to me after you blow it up and I trade a B3 to get my only yellow back, you can trade for the B3 at your homeworld or move from Greenbelt to the b2.  I don&#39;t know, maybe you thought it through further than me, maybe I had you.  But I didn&#39;t see it, and I&#39;d have liked to.  Personally, I never resign until I can see the exact, short series of moves that will finish me off.  I don&#39;t know, I guess you&#39;ve got to call them like you see them, but I think you&#39;d be surprised ocasionally if you kept trying even when it seemed hopeless.  If nothing else, you give me the chance to screw it up :)\n\nHomeworlds Online (SDG# 6344)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.5, Ended: 2007.2.11\nParticipants: dsheldon (S), morganfitzp (N)\nWinner: morganfitzp\n\n1) morganfitzp: Homeworld B1 Y2 G3\n\n2) dsheldon: Homeworld B3 R2 G3\n\n3) morganfitzp: Build G1 Morganfitzp\n\n4) dsheldon: Build G1 Dsheldon\n\n5) morganfitzp: Trade G1 Y1 Morganfitzp\n\n6) dsheldon: Build G1 Dsheldon\n\n7) morganfitzp: Build Y1 Morganfitzp\n\n8) dsheldon: Trade G1 Y1 Dsheldon\n\n9) morganfitzp: Discover Y1 Morganfitzp G3 Ur\n\n10) dsheldon: Discover G1 Dsheldon B1 Frankfurt\n\n11) morganfitzp: Build Y2 Ur\n\n12) dsheldon: Build G1 Frankfurt\n\n13) morganfitzp: Build Y2 Morganfitzp\n\n14) dsheldon: Build Y3 Dsheldon\n\n15) morganfitzp: Trade Y1 B1 Morganfitzp\n\n16) dsheldon: Discover Y1 Dsheldon G1 Kermit\n\n17) morganfitzp: Build G2 Morganfitzp\n\n18) dsheldon: Build G2 Dsheldon\n\n19) morganfitzp: Discover Y1 Ur G2 Babylon\n\tdsheldon: You are much better than my last opponent.  The system says this is your first game of Homeworlds, but I suspect that you have some face-to-face experience ;)\n\n20) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y1 Kermit\nBuild Y3 Dsheldon\n\tmorganfitzp: True, I&#39;m new to Homeworlds, though I&#39;ve been acquainted with these colors and shapes for most of my life.\n\n21) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G3 Morganfitzp\nBuild B2 Morganfitzp\nBuild Y3 Ur\n\n22) dsheldon: Trade G1 R1 Frankfurt\n\n23) morganfitzp: Trade B2 R2 Morganfitzp\n\n24) dsheldon: Sacrifice Y3 Dsheldon\nMove Y1 Kermit Ur\nMove Y1 Kermit Ur\nDiscover G1 Frankfurt Y3 Memphis\nCatastrophe Ur Y\n\n25) morganfitzp: Move R2 Morganfitzp Memphis\n\tdsheldon: It was getting too crowded out there.\n\n26) dsheldon: Move G1 Memphis Morganfitzp\n\tmorganfitzp: Yes, overpopulation was a problem in Ur. But there seems to be lots of room in Memphis.\n\n27) morganfitzp: Trade G3 R3 Morganfitzp\n\tdsheldon: I thought Ur&#39;s problems were mostly floods... and that Memphis was the same.\n\n28) dsheldon: Sacrifice G3 Dsheldon\nBuild G1 Morganfitzp\nBuild G1 Morganfitzp\nBuild G3 Dsheldon\nCatastrophe Morganfitzp G\n\tmorganfitzp: My only problems with Memphis have involved humorless administrators, flaky anarchists, and inebriated punks listening to country music.\n\n29) morganfitzp: Trade R3 G3 Morganfitzp\n\tdsheldon: Different Memphis, but valid concerns to be sure.  I&#39;m starting to wonder if I&#39;m overly fond of catastrophies.  What do you think?\n\n30) dsheldon: Discover G3 Dsheldon Y1 Cairo\n\tmorganfitzp: I think that my ships think that they&#39;re traffic lights.\n\n31) morganfitzp: Build B2 Morganfitzp\n\n32) dsheldon: Build G1 Dsheldon\n\n33) morganfitzp: Move B2 Morganfitzp Memphis\n\n34) dsheldon: Move G1 Dsheldon Frankfurt\n\n35) morganfitzp: Build B2 Morganfitzp\n\n36) dsheldon: Build Y1 Dsheldon\n\n37) morganfitzp: Move B1 Morganfitzp Memphis\n\n38) dsheldon: Move Y1 Dsheldon Frankfurt\n\n39) morganfitzp: Discover B2 Memphis G1 Beirut\n\n40) dsheldon: Build Y2 Frankfurt\n\n41) morganfitzp: Build Y3 Babylon\n\n42) dsheldon: Discover Y1 Frankfurt G3 Eridu\n\n43) morganfitzp: Discover Y2 Morganfitzp B3 Beijing\n\n44) dsheldon: Sacrifice G3 Cairo\nBuild G1 Frankfurt\nBuild G2 Frankfurt\nBuild G3 Dsheldon\n\n45) morganfitzp: Sacrifice Y3 Babylon\nMove B2 Beirut Dsheldon\nMove B1 Memphis Frankfurt\nMove B1 Frankfurt Dsheldon\n\n\n46) dsheldon: Sacrifice Y2 Frankfurt\nDiscover G1 Frankfurt B3 Paris\nDiscover G1 Frankfurt B2 Versailles\n\n47) morganfitzp: Sacrifice Y2 Beijing\nMove R2 Memphis Frankfurt\nMove R2 Frankfurt Dsheldon\n\n48) dsheldon: Sacrifice G2 Dsheldon\nBuild Y1 Eridu\nBuild Y2 Eridu\n\n49) morganfitzp: Sacrifice G3 Morganfitzp\nBuild B3 Dsheldon\nBuild R1 Dsheldon\nBuild R1 Dsheldon\nCatastrophe Dsheldon Red\nCatastrophe Dsheldon Blue\n\n\tdsheldon: This is getting pretty intense.\n\tmorganfitzp: Yes. Intense like a super nova.\n\tdsheldon: I knew I was losing one star.  I failed to recognize I was going to lose both.  I might have been able to hold you off for another turn or two, but my defeat was assured a good while ago.\r\n\r\nMy major blunder was in failing to diversify my fleet sooner (or at all really...).  Thanks for a very eye-opening defeat.\n\tmorganfitzp: Yeah - That was an amazing game! Very interesting moves on your part. I was sure that I was getting your blue star a turn earlier. Thanks for playing!\n\nHomeworlds Online (SDG# 6367)\nStarted: 2007.2.8, Ended: 2007.2.10\nParticipants: nycavri (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\tnycavri: Hi, Z.  My first shot at Homeworlds.  I&#39;m happy to be playing someone who clearly knows what they&#39;re doing - please mention any blinding errors I make.  Thanks!  a\n\tzoltar: Sure, no problem.  Good luck.\n\n2) nycavri: Homeworld Y3 G2 R3 *\n\n3) zoltar: Build G1 Zoltar\n\tnycavri: You too.  By the way, playing GRY rather than BGY for an opening is intentional, rather than an error.  I understand the reasons for starting with access to Blue, but humor me.....\n\n4) nycavri: Build R1 Nycavri\n\tzoltar: No problem.  The point is that you are forced to build red, and then to move a red out (probably to a blue star) or else build one more red and then move a red out, before you can switch colors.  You have few options, whereas I can trade my g1 to any of the 3 colors or build another green or move my green out next turn, so I have more options to start with, and hopefully (for me) can manipulate exhausting smalls of one color and building larger ships sooner than you.  But there are so many tricks I haven&#39;t learned yet, maybe you can find one this way.  I&#39;ll be interested to see what you are up to here!\n\n5) zoltar: Build G1 Zoltar\n\tnycavri: Yup.  Unorthodox, but since I&#39;m all but flying blind anyway, I&#39;m just looking to have a little fun.  Success would just be gravy.....\n\tzoltar: b g1 zoltar\n\n6) nycavri: Discover R1 Nycavri B1 Downtown\n\tzoltar: Oops, I typed that in the wrong field!\n\tzoltar: If your large star were a blue instead of a yellow, you could now trade the r1 for a y1, and you&#39;d have yellow as well as blue tech in your system.  But as it stands, you can&#39;t get blue tech for a while, which will limit your options considerably.\n\n7) zoltar: Trade G1 R1 Zoltar\n\n8) nycavri: Trade R1 G1 Downtown\n\tnycavri: As I said, i understand the theory, but after just 3 turns I now have access to Blue, and I figure an R3 on the Homeworld is a solid defence for a rookie to have up his sleeve.....\n\n9) zoltar: Trade G1 Y1 Zoltar\n\tzoltar: Yes, though it would be nice to have a blue on your homeworld as well, as you can only build reds there until you get one.  In the meantime, I&#39;m going to follow the standard opening rule that if your opponent builds a red, you should build one immediately, and considering that *all* your ships are red, it&#39;s never too soon to have a defensive piece at home, even though you are many moves from making any threat.\n\n10) nycavri: Build G1 Downtown\n\tnycavri: Long way to go.  I&#39;m a big Icehouse fan, and have read all the Homeworld strategy.  Want to put some of it into practice, but need to be convinced first-hand of the insistence of a BGY opening.  Likely you&#39;ll be the one to show me, but in the meantime, the game seems as intuitive and fun as I had hoped.\n\n11) zoltar: Build Y1 Zoltar\n\n12) nycavri: Trade G1 B1 Downtown\n\n13) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\tzoltar: Well, obviously I wanted to build the last y1 piece here, so that you couldn&#39;t immediately trade a green piece for it.  Now your pieces on &#39;downtown&#39; are grounded or landlocked until you get a yellow piece, which will take more moves.  So you have to either build more red in your homeworld, or build another green, letting me get the first mid-sized green, or trade your green for a blue, a tech you already have at Downtown, or trade a green for a red, a tech you already can make anyway back in your homeworld.  None of them are great options, though you aren&#39;t in bad shape yet, but without even trying yet, I&#39;m able to slow down your getting yellow tech to expand, so you&#39;re gonna be cramped for a while.  \r\n\r\nThis is similar to a chess game where you&#39;ve locked your own Bishops in with pawn moves so that they don&#39;t have much scope and your position has thus become rather cramped.  Again, I have no threats or anything, but later on, this will be trouble if you don&#39;t get yellow to expand further.  \n\n14) nycavri: Build G1 Downtown\n\tnycavri: Yup again.  I see that you&#39;ve stalled me.  You can tell it&#39;s my first game - I wasn&#39;t expecting you to grab that last y1, and I should have been.  \n\n15) zoltar: Build Y2 Zoltar\n\tzoltar: b g2 zoltar\n\n16) nycavri: Trade G1 B1 Downtown\n\n17) zoltar: Trade Y2 B2 Zoltar\n\tzoltar: Oops, I used the wrong field again, and I meant to say Y2 anyway.  \r\n\r\nYep, building the Y1 was my only reasonable move, given that you could use one and there was only one left.  When you have more flexibility, you have an option of different pieces to make, so that your opponent can&#39;t easily block you by taking the single piece that you need.\n\n18) nycavri: Build R1 Nycavri\n\tzoltar: Now I can build any of the four colors in my homeworld.\n\tnycavri: I really feel like rookie.  Keep trying to do things and running into the rules head first.....  But I don&#39;t know that I&#39;ve ever enjoyed being thrashed as much as this. (Although the thrashing hasn&#39;t actually begun, we both know it&#39;s coming)\n\n19) zoltar: Build B2 Zoltar\n\tzoltar: Btw, trading your R3 for a Y3 here, and then building a Y2 next move may look like a simple way out, but it would be a horrible game-ending blunder.   I would build a Y2 (at either star) and then when you built a Y2, I would sacrifice my Y2 that I had built for two movements, and I would move my Y1 from Greenbelt to nycavri immediately, cause a catastrophe (with four yellows total), destroy all your ships at nycavri, and the game would be over!\n\tzoltar: I meant to say if you sacrificed a b1 so you could trade your R3 for a Y3 that it wouldn&#39;t have worked.  Building reds and eventually getting a r2 to your blue star and trading it for a y2 is the only way to get yellow for now, but I might have them all by the time you do it.\n\n20) nycavri: Trade B1 R1 Downtown\n\tnycavri: Thanks for the sacrifice tip.  Not sure I would have spotted it as an option, but can see why it&#39;s a game ender.  There may be a way to open GRY, but I sure didn&#39;t find it!\n\n21) zoltar: Move B2 Zoltar Greenbelt\n\n22) nycavri: Build R2 Downtown\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Greenbelt\nBuild Y2 Greenbelt\n\tnycavri: Sorry - gotta run.  I&#39;ll be back tomorrow to pick up.  Thanks again for talking strategy with a newbie - it&#39;s appreciated. \n\n24) nycavri: Build R2 Nycavri\n\tzoltar: ...just in time\n\n25) zoltar: Discover Y2 Greenbelt G3 Greendale\n\tzoltar: You may wish to take that move back, as it&#39;s now mate in three or so.\r\n\r\nI can sac my Y2 in zoltar to move a Y2 from Greenbelt to nycavri.  As you are defenseless without the R3, you can&#39;t capture the Y2, nor can you move your R3 back to your homeworld.  So next move I sac my R1 in Zoltar and take your R1 and win the game.  Or you can build an R2 in your homeworld and I sac my R1 and take your R2 and it&#39;s checkmate the move after that!\n\n26) nycavri: Discover R2 Nycavri G1 Sunset\n\tnycavri: Thanks again - spending too much time worrying about my position, and too little about yours.  Good lesson to learn.\n\n27) zoltar: Trade B2 G2 Zoltar\n\tzoltar: It&#39;s almost always deadly to move or sacrifice your defending 3-size piece in your homeworld.  The only reason I&#39;ve got away with it is to keep you out of yellow production, so while you can&#39;t reach my homeworld, I&#39;m safe without a large piece, but eventually I&#39;ll want to restore one there as well.\n\n28) nycavri: Build R2 Sunset\n\n29) zoltar: Sacrifice G2 Zoltar\nBuild R3 Zoltar\nBuild R3 Zoltar\n\n30) nycavri: Trade R2 G2 Downtown\n\n31) zoltar: Trade R3 G3 Zoltar\n\n32) nycavri: Sacrifice B1 Downtown\nTrade R3 Y3 Nycavri\n\tnycavri: So, you successfully demonstrated why a Yellow is necessary in the opening!  Happy to play it out anyway....\n\n33) zoltar: Move R3 Zoltar Greenbelt\n\tzoltar: Actually, it was the blue that was necessary, along with green, as if you created another green or blue, you could immediately trade it for a yellow piece.\n\tnycavri: Right, right, that&#39;s what I said.  ;)\n\n34) nycavri: Build Y3 Nycavri\n\n35) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Greenbelt Downtown\nMove Y1 Downtown Nycavri\nCatastrophe Nycavri Y\n\tzoltar: Oops, I want to think about this for a minute or two first, actually.\n\n36) nycavri: Trade G1 Y1 Downtown\n\tzoltar: Well, at least you finally got your yellow ship!\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild R2 Zoltar\nBuild R3 Zoltar\nBuild R3 Greenbelt\n\n38) nycavri: Discover Y1 Downtown G3 Ues\n\tzoltar: Of course if you try to get a third yellow, I can blow up all your yellow ships and your star, but you had few other options\n\n39) zoltar: Move R2 Zoltar Nycavri\n\n40) nycavri: Move Y1 Ues Sunset\n\tzoltar: I think I can win right away my moving my y2 ship into your homeworld, but I&#39;ll retract that and play it more slowly as I usually would.\n\tnycavri: Ooooh.  You got in just in time - I had entered my move.....\n\tnycavri: But yes, I assumed you had the win next turn with y2 to my Homeworld.\n\n41) zoltar: Attack R1 Nycavri\n\tzoltar: Actually, moving my G3 from my homeworld to yours (which is possible now that your small star is gone) would have won the most decisively.  But getting all the red ships first is the safe way to proceed as I can attack next move if I wish.\n\n\tnycavri: If you are happy to continue playing a rookie, send me a direct challenge.  I&#39;m flying back to New York tomorrow, and will be back at my computer regularly after Tuesday.  Thanks for taking the time to coach me - it&#39;s appreciated.  And yes, you can bet on seeing a BGY opening from me in future!\n\nHomeworlds Online (SDG# 6403)\nStarted: 2007.2.9, Ended: 2007.3.16\nParticipants: zoltar (S), GreedyAlgorithm (N)\nWinner: zoltar\n\n1) GreedyAlgorithm: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) zoltar: Build G1 Zoltar\n\n5) GreedyAlgorithm: Trade G1 Y1 Greedyalgorithm\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n8) zoltar: Build G1 Zoltar\n\n9) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n12) zoltar: Build B2 Zoltar\n\n13) GreedyAlgorithm: Build B2 Greedyalgorithm\n\n14) zoltar: Trade B2 R2 Zoltar\n\n15) GreedyAlgorithm: Discover B1 Greedyalgorithm B3 Teh\n\n16) zoltar: Build B2 Zoltar\n\n17) GreedyAlgorithm: Build B2 Greedyalgorithm\n\n18) zoltar: Discover B1 Zoltar Y1 Yellowstone\n\n\nHomeworlds Online (SDG# 6440)\nStarted: 2007.2.10, Ended: 2007.2.15\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld G3 Y2 B3\n\tnycavri: Thanks for the long start time - I&#39;m going to need some of it.\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) nycavri: Build B1 Nycavri\n\tzoltar: Well, you said you&#39;d be away, so I figure I&#39;d change the start time so we could get underway.\n\n4) zoltar: Build G1 Zoltar\n\tnycavri: Back home in New York now.  Should be reasonably active M-F, 9-5 EST now that I&#39;m back at work.  Where are you based?\n\tzoltar: I&#39;m in Greenbelt, MD, just outside of the Washington, DC Beltway.\n\n5) nycavri: Discover B1 Nycavri G1 Deacon\n\n6) zoltar: Discover G1 Zoltar B2 Blues\n\n7) nycavri: Build B1 Deacon\n\n8) zoltar: Build G1 Zoltar\n\n9) nycavri: Trade B1 Y1 Deacon\n\n10) zoltar: Build G2 Blues\n\n11) nycavri: Build Y1 Deacon\n\n12) zoltar: Trade G2 Y2 Blues\n\n13) nycavri: Build B1 Nycavri\n\n14) zoltar: Build G2 Blues\n\n15) nycavri: Trade Y1 R1 Deacon\n\n16) zoltar: Trade G2 R2 Blues\n\n17) nycavri: Build R1 Deacon\n\n18) zoltar: Build G2 Blues\n\tnycavri: Homeworlds is a fascinating game when I don&#39;t needlessly handicap myself.\n\n19) nycavri: Trade B1 Y1 Nycavri\n\tzoltar: Yes, I know the feeling.  Right now I&#39;m playing against a much better player, and he already has the upper hand after 5 moves and is into the middle sized pieces as I am here, and is going to get a bigger advantage, and I have no idea where I went wrong.  The game seems to have the complexity almost of chess, though it is mostly tactics.\n\n20) zoltar: Move G2 Blues Deacon\n\n21) nycavri: Build Y2 Nycavri\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blues\nBuild G2 Deacon\nBuild G3 Zoltar\n\n23) nycavri: Move B1 Deacon Nycavri\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blues\nBuild Y3 Blues\n\n25) nycavri: Trade B3 R3 Nycavri\n\n26) zoltar: Discover Y2 Blues B1 Blueberry\n\n27) nycavri: Build Y3 Deacon\n\n28) zoltar: Sacrifice G2 Blues\nBuild Y3 Blueberry\nBuild G2 Deacon\nCatastrophe Deacon G\n\n29) nycavri: Trade Y1 G1 Nycavri\n\tzoltar: How was that for a sophisticated tactical move: I sacked my g2, grew the last y3, then grew my g2 back  in the system with all your pieces and created a catastrophe, leaving a simplified position where I have 3 extra large ships!\n\n30) zoltar: Discover Y2 Blueberry G2 Greenbelt\n\tnycavri: Yes, but I thought you were going to blow up my y2 planet, so we&#39;ll call it a push.  *grin*\n\tzoltar: I had that choice, but this way I had such a material advantage at the end that it seemed to be a much safer move, and now you even had to spend a move to stop the threat to your yellow star; the other way, I take out one of your binary stars, but you have the Y3 which you could do trouble with. \n\tnycavri: I&#39;m still expecting to lose, but at least now it will take a couple of turns longer.  I hope.....\n\n31) nycavri: Move Y2 Nycavri Blueberry\n\n32) zoltar: Sacrifice R2 Blues\nAttack Y2 Blueberry\nPass\n\tzoltar: Well, I&#39;m playing slowly now, spreading out my forces so I can build up more forces before I attack.\n\n33) nycavri: Build R1 Nycavri\n\n34) zoltar: Sacrifice G3 Blues\nBuild G2 Zoltar\nBuild G2 Blues\nBuild G3 Blues\n\tnycavri: You&#39;re able to do that when your opponent appears incapable of creating any offense of his own.....\n\n35) nycavri: Discover R3 Nycavri Y1 May\n\n36) zoltar: Trade Y3 R3 Blueberry\n\n37) nycavri: Move R3 May Nycavri\n\tzoltar: That is an insane move, leaving your homeworld undefendend.  You&#39;re lucky that I don&#39;t have any red pieces!\n\n38) zoltar: Sacrifice G3 Blues\nBuild G3 Blues\nBuild R1 Blueberry\nBuild Y1 Blueberry\n\tnycavri: You&#39;re just toying with me now - you can blow me up almost at will.  The fact is you have no Reds, and I&#39;m going to try and steal a move from you somewhere to try and make some sort of comeback.  Again, not expecting it to work, but what do I have to lose?\n\tzoltar: Well, if you don&#39;t run your r3 back to your homeworld, it&#39;s all over.\n\tnycavri: Yup.  I keep looking for you to make a mistake, but no.....\n\n39) nycavri: Trade R1 Y1 Nycavri\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Blues\nBuild Y3 Greenbelt\n\n41) nycavri: Discover Y1 Nycavri R1 Mercury\n\n42) zoltar: Move Y2 Greenbelt Blueberry\n\n43) nycavri: Move G1 Nycavri Mercury\n\n44) zoltar: Move G2 Blues Mercury\n\n45) nycavri: Sacrifice Y1 Mercury\nDiscover G1 Mercury B2 Taylor\n\n46) zoltar: Sacrifice Y3 Blues\nMove Y1 Blueberry Nycavri\nMove Y2 Blueberry Nycavri\nMove Y2 Blueberry Nycavri\nCatastrophe Nycavri Y\n\n47) nycavri: Trade G1 Y1 Taylor\n\n48) zoltar: Sacrifice Y3 Blues\nMove G1 Blues Nycavri\nMove G2 Mercury Nycavri\nMove G3 Blues Nycavri\nCatastrophe Nycavri G\n\tzoltar: Too bad you don&#39;t have another y1 ship, or you&#39;d be threatening &quot;the blueberry&quot; checkmate, as all my homeworld ships are green (the ideal setup would be to have a large green and one other ship red, so all four colors are represented, and no more than one of each color for maximum stability.  I haven&#39;t traded, say my g2 to r2, which I would have done the move after I built the third green ship, only because you didn&#39;t have any yellow tech to reach it.\n\tzoltar: Sorry, that would be called the &#39;bluebird&#39; checkmate, when you sacrifice to move to an opponent&#39;s homeworld where they have only one color, and you destroy all of their ships\n\n\tzoltar: Here the story from the Homeworlds World Champion himself:\r\n\r\nhttp://www.youtube.com/profile?user=AndrewLooney\r\n\r\nAnd look for the video called &quot;The Bluebird Mistake&quot;  \n\tzoltar: Well, gg again. You&#39;re doing great as a beginner.  Took me a dozen games till I won one, as this is hard, like chess, but worth the initial frustration as it&#39;s a wonderful fun game.\n\tnycavri: Thanks.  This is one of the few gamse I seem to enjoy even when being trounced.  Looking forward to eventually being able to teach this face to face - I imagine it&#39;s even *more* fun with players getting into the space opera theme.\n\nHomeworlds Online (SDG# 6420)\nStarted: 2007.2.12, Ended: 2007.2.22\nParticipants: dsheldon (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tdsheldon: So you&#39;re like... the best there is, huh?  I&#39;m looking forward to a good whupin&#39;.\n\n2) dsheldon: Homeworld B3 R2 G3\n\tTwoShort: Hmmm...  I&#39;ll be the first to say I think Jesse is better than me.  I&#39;ve driven my rating higher than his because I spend more time than him handing out whupin&#39;s...  :)\n\n3) TwoShort: Build G1 Twoshort\n\n4) dsheldon: Build G1 Dsheldon\n\n5) TwoShort: Discover G1 Twoshort Y3 Yoyo\n\n6) dsheldon: Trade G1 Y1 Dsheldon\n\n7) TwoShort: Build G1 Twoshort\n\n8) dsheldon: Build G1 Dsheldon\n\n9) TwoShort: Build G2 Twoshort\n\n10) dsheldon: Discover G1 Dsheldon Y1 Buttercup\n\n11) TwoShort: Discover G2 Twoshort B3 Bluestar\n\n12) dsheldon: Build G2 Dsheldon\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yoyo\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n14) dsheldon: Build Y2 Dsheldon\n\n15) TwoShort: Trade G2 Y2 Bluestar\n\n16) dsheldon: Build G2 Buttercup\n\n17) TwoShort: Trade G1 R1 Twoshort\n\n18) dsheldon: Discover Y2 Dsheldon B1 Capillary\n\n19) TwoShort: Move G1 Yoyo Buttercup\n\n20) dsheldon: Trade G2 B2 Dsheldon\n\n21) TwoShort: Sacrifice G3 Bluestar\nBuild G1 Buttercup\nBuild G2 Yoyo\nBuild G3 Twoshort\nCatastrophe Buttercup Green\n\n22) dsheldon: Build G1 Dsheldon\n\n23) TwoShort: Move G2 Yoyo Capillary\n\n24) dsheldon: Trade Y2 R2 Capillary\n\n25) TwoShort: Sacrifice R1 Twoshort\nAttack R2S Capillary\n\n26) dsheldon: Discover G1 Dsheldon G1 Vinyard\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yoyo\nBuild G2 Capillary\nBuild G3 Twoshort\n\n28) dsheldon: Build Y1 Dsheldon\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild R1 Capillary\nBuild G3 Twoshort\n\tdsheldon: Hmm, having half the ships definitely has me worried.\n\n30) dsheldon: Move Y1 Dsheldon Vinyard\n\n31) TwoShort: Move Y2 Bluestar Vinyard\n\n32) dsheldon: Sacrifice G3 Dsheldon\nBuild Y2 Vinyard\nBuild Y3 Dsheldon\nBuild G3 Vinyard\n\n33) TwoShort: Sacrifice Y2 Vinyard\nMove G1 Yoyo Vinyard\nMove Y2 Bluestar Capillary\nCatastrophe Vinyard Green\n\n34) dsheldon: Trade Y3 G3 Dsheldon\n\n35) TwoShort: Build R1 Capillary\n\n36) dsheldon: Discover B2 Dsheldon G1 Escape Hatch\n\n37) TwoShort: Sacrifice Y2 Capillary\nMove R1 Capillary Dsheldon\nMove R1 Capillary Dsheldon\n\n38) dsheldon: Build B1 Escape\n\n39) TwoShort: Sacrifice G2 Yoyo\nBuild R1 Dsheldon\nBuild R2 Capillary\nCatastrophe Dsheldon Red\n\n40) dsheldon: Trade B2 Y2 Escape\n\n41) TwoShort: Move G3 Twoshort Dsheldon\n\n42) dsheldon: Move Y2 Escape Dsheldon\n\n43) TwoShort: Sacrifice R2 Capillary\nAttack G3S Dsheldon\nAttack Y2S Dsheldon\n\n44) dsheldon: Build B1 Escape\n\n45) TwoShort: Sacrifice R2 Capillary\nAttack Y1S Dsheldon\nPass\n\tdsheldon: You&#39;ve got me.  It might take you two moves, but I&#39;m as good as dead.\n\tTwoShort: Yeah, if you&#39;d taken a red last turn instead of yellow, you might have drawn it out more; but behind on ships I don&#39;t think you could have stopped me from amassing enough blues to take out your other star.  Anyway, thanks for the game!\n\n\nHomeworlds Online (SDG# 6498)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.13, Ended: 2007.2.20\nParticipants: dsheldon (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld R1 B2 G3\n\n2) dsheldon: Homeworld Y3 B2 G3\n\tclockwise: Greetings dsheldonites, the people of Clockwise Prime wish to challenge you to a little game we like to call &quot;destroying your homeworld&quot;.  May the best triangular lifeform win.\n\n3) clockwise: Build G1 Clockwise\n\n4) dsheldon: Build G1 Dsheldon\n\tdsheldon: Destruction is not necessary, simply depopulation.  But I do agree that I find destruction to be easier.  Allow me to demonstrate...\r\n\r\n(mmm, semi-rp homeworlds trashtalking.  fun.)\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) dsheldon: Discover G1 Dsheldon Y1 Babycorn\n\n7) clockwise: Build G1 Clockwise\n\n8) dsheldon: Build G1 Dsheldon\n\n9) clockwise: Build G2 Clockwise\n\n10) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Babycorn\nBuild G2 Babycorn\nBuild G3 Dsheldon\n\n11) clockwise: Discover G2 Clockwise G3 Kermit\n\n12) dsheldon: Discover G2 Babycorn B2 Reststop\n\n13) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild Y1 Clockwise\nBuild Y2 Clockwise\n\n14) dsheldon: Trade G2 Y2 Reststop\n\n15) clockwise: Discover Y1 Clockwise B3 Cookie\n\n16) dsheldon: Move G1 Babycorn Cookie\n\n17) clockwise: Sacrifice G3 Clockwise\nBuild G2 Kermit\nBuild G3 Clockwise\nBuild Y2 Cookie\n\n18) dsheldon: Move G2 Babycorn Kermit\nCatastrophe Kermit G\n\n19) clockwise: Trade Y2 R2 Cookie\n\tclockwise: You monster!  All those frogs... wasted...\n\n20) dsheldon: Sacrifice G1 Cookie\nBuild Y1 Reststop\n\n21) clockwise: Discover Y1 Clockwise G3 Kermit\n\n22) dsheldon: Trade Y1 R1 Reststop\n\n23) clockwise: Build Y1 Kermit\n\n24) dsheldon: Build G1 Dsheldon\n\n25) clockwise: Sacrifice G3 Clockwise\nBuild Y2 Clockwise\nBuild Y3 Clockwise\nBuild Y3 Cookie\n\n26) dsheldon: Discover G1 Dsheldon R1 Skirmish\n\n27) clockwise: Trade Y3 G3 Clockwise\n\n28) dsheldon: Sacrifice G3 Dsheldon\nBuild Y3 Reststop\nBuild R2 Reststop\nBuild G2 Dsheldon\n\n29) clockwise: Sacrifice Y2 Clockwise\nMove Y1 Kermit Reststop\nMove Y1 Cookie Reststop\nCatastrophe Reststop Yellow\n\n30) dsheldon: Trade R2 Y2 Reststop\n\n31) clockwise: Sacrifice Y2 Clockwise\nMove Y3 Cookie Skirmish\nMove Y3 Skirmish Dsheldon\n\n32) dsheldon: Sacrifice Y2 Reststop\nMove R1 Reststop Skirmish\nMove R1 Skirmish Dsheldon\n\tclockwise: The move I should have made last turn.\n\n33) clockwise: Sacrifice R2 Cookie\nAttack G2S Dsheldon\nAttack R1S Dsheldon\n\tdsheldon: Wait... no, you have other non-explodey avenues of attack.  Oh, this&#39;ll be hard.\n\n34) dsheldon: Build G2 Dsheldon\n\tdsheldon: This could go a couple different ways, all of them bad.\n\n35) clockwise: Sacrifice G3 Clockwise\nBuild G2 Dsheldon\nBuild G3 Clockwise\nBuild G3 Clockwise\nCatastrophe Dsheldon Green\n\tclockwise: Your move actually makes this a little easier.\n\tdsheldon: I figured you&#39;d either nuke my Y3 star, or switch your Y3 to an R3 and just take over everything.  At least this way you lose a ship in the process.\r\n\r\nSo I have one ship that can&#39;t move, and one small in my homeworld.  All I can do is make green ships and all the ones I&#39;ll make you can steal until there are four and all my forces die...\r\n\r\nI&#39;ve lost, do you want to play it through or should I just resign?\n\n\tclockwise: Actually, this way I get an extra g3 in the process, not that it really matters.\n\tclockwise: Thanks for the game!\n\tdsheldon: You&#39;re quite welcome.  Every time I lose I learn something.\r\n\r\nI&#39;ve been learning a lot lately...\n\nHomeworlds Online (SDG# 6463)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.13, Ended: 2007.4.5\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Discover G1 Personman Y2 Y2a\n\tzoltar: Greetingz Earthling: We meet again, Personman!\n\tPersonman: :) Hi! It has been a while, hasn&#39;t it? I wonder if I&#39;ve learned anything since last time. Probably not!\n\tzoltar: Well, I was on a losing streak for a while, but all that&#39;s about to change, I hope! \n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build Y1 Zoltar\n\n9) Personman: Build G1 Y2a\n\n10) zoltar: Discover Y1 Zoltar B1 Blueberry\n\n11) Personman: Build G2 Personman\n\n12) zoltar: Build G2 Zoltar\n\n13) Personman: Trade G2 Y2 Personman\n\n14) zoltar: Build Y2 Zoltar\n\n15) Personman: Build G2 Personman\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Blueberry\nBuild Y3 Blueberry\n\n17) Personman: Trade G1 R1 Personman\n\n18) zoltar: Trade Y3 R3 Zoltar\n\n19) Personman: Trade G2 B2 Personman\n\n20) zoltar: Trade Y3 G3 Blueberry\n\tzoltar: Yeah, gotta go for the Yellow superiority.\n\n21) Personman: Move G1 Y2a Blueberry\n\n22) zoltar: Sacrifice G3 Blueberry\nBuild Y3 Blueberry\nBuild Y3 Zoltar\nBuild R1 Zoltar\n\n23) Personman: Build G1 Blueberry\n\n24) zoltar: Move Y3 Blueberry Y2a\n\n25) Personman: Sacrifice Y2 Personman\nDiscover R1 Personman Y2 Y2b\nDiscover G1 Y2a B1 B1a\n\n26) zoltar: Move R3 Zoltar B1a\n\n27) Personman: Trade G1 R1 Blueberry\n\n28) zoltar: Trade Y3 G3 Zoltar\n\n29) Personman: Attack Y1 Blueberry\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild R2 B1a\nBuild Y3 Blueberry\n\n31) Personman: Sacrifice G1 B1a\nBuild R2 Y2b\n\n32) zoltar: Sacrifice R3 B1a\nAttack R1 Blueberry\nAttack G1 Blueberry\nAttack Y1 Blueberry\n\n33) Personman: Build G1 Personman\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild R2 Zoltar\nBuild R3 B1a\nBuild R3 Blueberry\n\n35) Personman: Move R1 Y2b Personman\n\n36) zoltar: Move R3 Blueberry Y2b\n\n37) Personman: Discover R2 Y2b G1 G1a\n\n38) zoltar: Move Y1 Zoltar B1a\n\n39) Personman: Build B1 Personman\n\n40) zoltar: Move R1 Zoltar Blueberry\n\n41) Personman: Discover B1 Personman G2 G2a\n\n42) zoltar: Move R3 B1a G2a\n\n43) Personman: Build B2 G2a\n\n44) zoltar: Move Y3 Blueberry Zoltar\n\n45) Personman: Build G2 Personman\n\n46) zoltar: Sacrifice Y3 Blueberry\nMove G1 Blueberry Y2a\nMove G1 Y2a Personman\nMove Y3 Y2a Personman\nCatastrophe Personman G\n\n47) Personman: Build B3 G2a\n\n48) zoltar: Sacrifice R3 Y2b\nAttack B3 G2a\nAttack B2 Personman\nAttack R1 Personman\n\n\tzoltar: gg Earthling!\n\nHomeworlds Online (SDG# 6481)\nStarted: 2007.2.14, Ended: 2007.2.20\nParticipants: eriinfo (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) eriinfo: Homeworld B1 Y3 G3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: howdy...\r\n\n\n4) eriinfo: Build G1 Eriinfo\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\teriinfo: hello, good luck.\n\n6) eriinfo: Trade G1 B1 Eriinfo\n\n7) TwoShort: Build G1 Twoshort\n\n8) eriinfo: Build G1 Eriinfo\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) eriinfo: Discover G1 Eriinfo Y2 Cire\n\n11) TwoShort: Build G1 Twoshort\n\n12) eriinfo: Build G2 Cire\n\n13) TwoShort: Build G2 Twoshort\n\n14) eriinfo: Move G1 Cire Eriinfo\n\n15) TwoShort: Discover G2 Twoshort G3 Landgrab\n\n16) eriinfo: Build G2 Eriinfo\n\n17) TwoShort: Sacrifice G2 Landgrab\nBuild G2 Twoshort\nBuild G3 Yolonda\n\n18) eriinfo: Trade G2 Y2 Eriinfo\n\n19) TwoShort: Trade G2 R2 Twoshort\n\n20) eriinfo: Build G2 Cire\n\n21) TwoShort: Discover G3 Yolonda Y2 Threat\n\n22) eriinfo: Trade G1 R1 Eriinfo\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Threat\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n24) eriinfo: Discover G2 Cire Y3 Rice\n\n25) TwoShort: Build Y1 Twoshort\n\n26) eriinfo: Build Y1 Eriinfo\n\n27) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n28) eriinfo: Move Y1 Eriinfo Cire\n\n29) TwoShort: Move G3 Threat Rice\n\n30) eriinfo: Move B1 Eriinfo Cire\n\n31) TwoShort: Sacrifice G1 Threat\nBuild Y2 Bluestar\n\n32) eriinfo: Build G1 Eriinfo\n\n33) TwoShort: Build R1 Twoshort\n\n34) eriinfo: Build R2 Eriinfo\n\n35) TwoShort: Sacrifice R1 Twoshort\nAttack G2S Rice\n\n36) eriinfo: Trade R1 B1 Eriinfo\n\n37) TwoShort: Trade Y2 R2 Bluestar\n\n38) eriinfo: Build B2 Eriinfo\n\n39) TwoShort: Move G3 Rice Cire\n\n40) eriinfo: Discover B2 Eriinfo Y2 Icer\n\n41) TwoShort: Sacrifice G2 Rice\nBuild Y3 Bluestar\nBuild R1 Bluestar\n\n42) eriinfo: Sacrifice G2 Cire\nBuild B2 Eriinfo\nBuild B3 Icer\n\n43) TwoShort: Sacrifice R2 Bluestar\nAttack Y1S Cire\nAttack B1S Cire\n\n44) eriinfo: Sacrifice Y2 Eriinfo\nMove G1 Eriinfo Icer\nDiscover B1 Eriinfo G2 Crie\n\n45) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Cire\nBuild B3 Cire\nBuild G3 Twoshort\n\n46) eriinfo: Trade B3 R3 Icer\n\n47) TwoShort: Sacrifice G1 Yolonda\nBuild Y2 Twoshort\n\n48) eriinfo: Move B2 Eriinfo Icer\n\n49) TwoShort: Sacrifice G2 Yolonda\nBuild B3 Cire\nBuild Y3 Cire\n\n50) eriinfo: Build G1 Eriinfo\n\n51) TwoShort: Sacrifice Y3 Cire\nMove B1 Cire Eriinfo\nMove B3 Cire Eriinfo\nMove B3 Cire Eriinfo\nCatastrophe Eriinfo Blue\n\n52) eriinfo: Build B1 Crie\n\n53) TwoShort: Sacrifice Y3 Bluestar\nMove Y1 Cire Eriinfo\nMove Y2 Twoshort Eriinfo\nMove Y1 Twoshort Eriinfo\nCatastrophe Eriinfo Yellow\n\tTwoShort: Your resistance to being finished off is quite impressive, but now I think I&#39;ve got you. :)\n\n\nHomeworlds Online (SDG# 6465)\nStarted: 2007.2.14, Ended: 2007.2.18\nParticipants: nycavri (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B1 Y3 G3\n\n2) nycavri: Homeworld G2 Y1 B3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) nycavri: Build B1 Nycavri\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Thestrip\n\n6) nycavri: Build B1 Nycavri\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) nycavri: Trade B1 G1 Nycavri\n\n9) Uglyfoot: Build G2 Thestrip\n\n10) nycavri: Build G2 Nycavri\n\tnycavri: Hello again!  This is only my third attempt at playing Homeworlds, and I was severely thumped in my first two games!  I hope I&#39;ve learned something from those losses, though.  What&#39;s your Icehouse background?\n\n11) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Thestrip\n\tUglyfoot: I have been a Mad Lab Rabbit for 3 years, doing several conventions around the Kansas City area.  I&#39;ve been learning as many games as possible to support my 10+ stashes.  Volcano is a face-to-face favorite.\r\n\n\tUglyfoot: For Homeworlds, I have been getting thumped at it for over a year now and last time I checked I had the worst rating.\n\n12) nycavri: Trade B3 Y3 Nycavri\n\n13) Uglyfoot: Trade G3 Y3 Uglyfoot\n\tnycavri: Rabbit since December, when I discovered the Icehouse games at BGG, bought a bunch of Treehouse sets, Volcano caps, boards, books, stickers, coasters, and awndered over to SDG to play smoe of the more complicated games on a regular basis.  Homeworlds is clearly my favorite, despite my mediocre play, but I&#39;ve loved playing Pikemen and BBT, both of which I had played elsewhere.  I&#39;ve introduced everyone I&#39;ve met to Icehouse, played Treehouse in bars and restaurants on 2 continents and will be whipping them out next week at the slightest provocation at the NY ComicCon.  Pity the Looneys can&#39;t be there.\n\tnycavri: I should read my posts before hitting send, &#39;specially when I&#39;m excited.  I &quot;sound&quot; like a teenager.....\n\n14) nycavri: Discover G1 Nycavri B3 Mv\n\n15) Uglyfoot: Trade G2 R2 Thestrip\n\n16) nycavri: Trade G1 Y1 Mv\n\n17) Uglyfoot: Trade G1 Y1 Thestrip\n\n18) nycavri: Sacrifice G2 Nycavri\nBuild Y2 Mv\nBuild B1 Nycavri\n\n19) Uglyfoot: Move G3 Thestrip Mv\n\tnycavri: Any interest in my Blam! challenge?  That&#39;s the only Icehouse game I haven&#39;t played on SDG.\n\n20) nycavri: Trade Y3 R3 Nycavri\n\n21) Uglyfoot: Sacrifice R2 Thestrip\nAttack Y2 Mv\nAttack Y1 Mv\n\n22) nycavri: Build B2 Nycavri\n\n23) Uglyfoot: Trade Y1 R1 Mv\n\n24) nycavri: Trade B2 R2 Nycavri\n\n25) Uglyfoot: Build R1 Mv\n\n26) nycavri: Discover R2 Nycavri Y3 Iw\n\n27) Uglyfoot: Build R1 Mv\n\n28) nycavri: Trade R3 G3 Nycavri\n\n29) Uglyfoot: Move R1 Mv Nycavri\n\n30) nycavri: Move R2 Iw Nycavri\n\n31) Uglyfoot: Build R2 Nycavri\n\n32) nycavri: Attack R2 Nycavri\n\n33) Uglyfoot: Build R2 Nycavri\nCatastrophe Nycavri R\n\n34) nycavri: Trade B1 R1 Nycavri\n\n35) Uglyfoot: Build G1 Mv\n\n36) nycavri: Build B1 Nycavri\n\n37) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G1 Mv Nycavri\nMove G3 Mv Nycavri\nMove Y2 Mv Nycavri\nCatastrophe Nycavri G\n\n38) nycavri: Trade B1 G1 Nycavri\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild Y1 Nycavri\nBuild Y2 Nycavri\nBuild G1 Uglyfoot\nCatastrophe Nycavri Y\n\tUglyfoot: Thank you for the game.  Annihilation turned out to be key...\n\tnycavri: Well played.  I&#39;m sure we&#39;ll play again in future.\n\n\nHomeworlds Online (SDG# 6478)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2007.2.15, Ended: 2007.6.18\nParticipants: jan (S), dsheldon (W), Gort (N), zoltar (E)\nWinner: zoltar\n\n1) Gort: Homeworld G3 B2 Y3\n\tdsheldon: OK!  This game filled up sooner than I expected.  This should be great.\r\n\r\nPhooey, why do I /always/ go last?\n\n2) zoltar: H B2 R1 G3\n\tGort: If I take too long to move, send me an email, Zoltar. Then don&#39;t wait long before you resign me. Thanks, and Good Skill!\n\n3) jan: Homeworld B3 Y1 G3\n\tzoltar: Ok.  How do you play &#39;sinister&#39; btw?  \n\n4) dsheldon: Homeworld R2 B1 G3\n\tjan: yes what are the differences with sinister? dsheldon. ...playing this game i can&#39;t being reminded of H. Sheldon. Harry Sheldon from Issac Asimov&#39;s Foundation trilogy. have you read it?\n\tjan: or was it Harry Seldon?\n\tzoltar: No, I haven&#39;t read it.  But I think you have to destroy one particular opponent to win, and each has to destroy a different one, but I don&#39;t know which one. \n\tdsheldon: Everyone has to destroy the player to their left (sinister:left::dexter:right, get it?).  If someone else destroys the player to your left, play continues and you now target the new person to your left (your former target&#39;s target).\r\n\r\nAnd no, I haven&#39;t read The Foundation Trilogy, but I do have a cat named Asimov. ;)\n\n5) Gort: Build Y1 Gort\n\n6) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n7) jan: Build G1 Jan\n\tzoltar: Ok, that makes sense!  I suppose that makes the opponent across from you your ally, unless they are about to kill your worst enemy, and which case ironically you&#39;d want to save the team trying to destroy you.\n\tdsheldon: Less of an ally, more of a guy that really doesn&#39;t care.  It&#39;s not like he&#39;s going to intentionally destroy huge numbers of his own ships to help you out.\r\n\r\nFor additionally irony, if the player to your left is about to win, it is very likely that you will want to destroy the player across from you.  That way, the game continues with three players.\r\n\r\nSo yeah, not an ally at all.\n\n8) dsheldon: Build G1 Dsheldon\n\n9) Gort: Discover Y1 Gort G1 Gone\n\n10) zoltar: Trade G3 Y3 Zoltar\n\n11) jan: Trade G1 R1 Jan\n\n12) dsheldon: Trade G1 Y1 Dsheldon\n\tdsheldon: Just looking at this board and seeing four players is so awesome.  I don&#39;t mean to gush, but wow.\n\n13) Gort: Build Y1 Gort\n\n14) zoltar: Build G1 Zoltar\n\n15) jan: Build G1 Jan\n\n16) dsheldon: Build G1 Dsheldon\n\n17) Gort: Trade Y3 G3 Gort\n\n18) zoltar: Build G2 Zoltar\n\n19) jan: Discover G1 Jan B2 Dolphin\n\n20) dsheldon: Discover G1 Dsheldon B3 Deep\n\n21) Gort: Build G2 Gort\n\n22) zoltar: Trade G1 R1 Zoltar\n\n23) jan: Build G1 Dolphin\n\tGort: Didn&#39;t think you&#39;d do it, Zol... I&#39;m in trouble now!\n\tzoltar: Yup. The problem is that dsheldon can checkmate you in 3 moves or so, and the game is over, so weakening myself to weaken you more doesn&#39;t help me.\n\n24) dsheldon: Build G2 Deep\n\tzoltar: So I&#39;ll just make a wimpy move instead...\n\tGort: I figured three moves gave enough time for me to come up with something... but no matter; our people persevere. Your alien ways are strange and disturbing to us. We must eradicate you.\n\tGort: PS: Thanks for using your time machine.\n\n25) Gort: Trade G2 R2 Gort\n\n26) zoltar: Discover G2 Zoltar B3 Bluemoon\n\n27) jan: Build G2 Jan\n\n28) dsheldon: Trade G2 Y2 Deep\n\n29) Gort: Build R1 Gort\n\tjan: sorry i took so long im not such an avid computer user. but if you want to move faster i don&#39;t mind if you nix me.\n\tzoltar: In no hurry is Zoltar.\n\n30) zoltar: Build G2 Bluemoon\n\n31) jan: Discover G2 Jan B2 Exos\n\n32) dsheldon: Build G2 Dsheldon\n\n33) Gort: Move R2 Gort Gone\n\n34) zoltar: Trade G2 Y2 Bluemoon\n\n35) jan: Build G2 Exos\n\n36) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Deep\nBuild G3 Deep\nBuild G3 Dsheldon\n\tdsheldon: Once Jan goes I won&#39;t be moving until at least Tuesday.  I&#39;ll be out of town all weekend and then some.  Sorry in advance for the delay that will cause.\n\n37) Gort: Move Y1 Gone Deep\n\n38) zoltar: Move G1 Zoltar Deep\nCatastrophe Deep G\n\n39) jan: Trade G2 Y2 Exos\n\n40) dsheldon: Move G2 Dsheldon Deep\n\tdsheldon: zoltar, buddy, pal, why&#39;d you have to go and do that?  You&#39;re, um... just making your true enemies more powerful.  Yeah, that&#39;s it!\n\tzoltar: It would be irrational to allow you to maintain a lead of a large ship when I could neutralize your advanced fleet with only the sacrifice of a pawn.\n\n41) Gort: Trade Y1 G1 Deep\n\n42) zoltar: Move R1 Zoltar Bluemoon\n\n43) jan: Build G1 Jan\n\n44) dsheldon: Build G2 Dsheldon\n\n45) Gort: Build G2 Deep\n\n46) zoltar: Build G3 Bluemoon\n\n47) jan: Sacrifice G3 Jan\nBuild R1 Jan\nBuild Y1 Exos\nBuild G3 Jan\n\n48) dsheldon: Trade G2 R2 Deep\n\n49) Gort: Sacrifice R2 Gone\nAttack R2W Deep\nAttack Y2W Deep\n\n50) zoltar: Move G3 Bluemoon Zoltar\n\n51) jan: Move R1 Jan Exos\n\n52) dsheldon: Build Y1 Dsheldon\n\n53) Gort: Sacrifice Y2 Deep\nMove R2 Deep Zoltar\nMove G1 Deep Zoltar\n\tdsheldon: Woah.  Sucks to be me.\n\n54) zoltar: Attack R2N Zoltar\n\tGort: Just need to use the Deep system as a hyperspace bypass.\n\n55) jan: Build R2 Exos\n\n56) dsheldon: Discover G2 Dsheldon R3 Apple\n\n57) Gort: Sacrifice G3 Gort\nBuild G1 Zoltar\nBuild G2 Zoltar\nBuild G3 Deep\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild G3 Bluemoon\nBuild Y2 Bluemoon\nBuild R2 Bluemoon\n\n59) jan: Discover R1 Exos Y3 Plato\n\n60) dsheldon: Trade Y1 B1 Dsheldon\n\n61) Gort: Sacrifice G3 Deep\nBuild G3 Deep\nBuild R2 Gort\nBuild R3 Gort\n\tzoltar: Geez Gort, with an undefended homeworld, aren&#39;t you dead in 2 moves?\n\tzoltar: Then again, it&#39;s dsheldon that would have to kill you to win, and he&#39;s weak right now.  That explains your crazy aggression.\n\tdsheldon: hey, just because I&#39;ve got four ships to jan&#39;s nine, uh...  yeah, little help here?\n\tzoltar: Perhaps Gort will help you and is planning to invade  Exos, in which case I have no reason to attack him; but as he has three ships in my homeworld, if he attacks further I&#39;ll have to place my G3 in his homeworld next turn; as for now, Jan is still not an immediate threat to you, having no ships within one jump of your homeworld.\n\tzoltar: Then again, Gort has only one yellow piece and can&#39;t attack anyone right now; if jan moves tons of pieces into orbits of large stars, by then my homeworld crisis will hopefully be over and Gort will have yellow ships, so we can attack the ships right outside your homeworld.  \n\n62) zoltar: Sacrifice Y2 Bluemoon\nDiscover R1 Bluemoon Y1 Wormhole\nMove R1 Wormhole Gort\nCatastrophe Gort R\n\n63) jan: Sacrifice G3 Jan\nBuild G3 Jan\nBuild R1 Jan\nBuild R1 Plato\n\n64) dsheldon: Move B1 Dsheldon Apple\n\n65) Gort: Trade G2 B2 Deep\n\n66) zoltar: Attack G2N Zoltar\n\tjan: im realy sorry folks my internet has been down all this time . hopefully it will be fine now.\n\n67) jan: Sacrifice Y2 Exos\nMove R1 Plato Dsheldon\nMove R1 Plato Dsheldon\n\n68) dsheldon: Attack R1S Dsheldon\n\n69) Gort: Build G2 Deep\n\n70) zoltar: Move G3 Bluemoon Exos\n\n71) jan: Sacrifice G3 Jan\nBuild G3 Jan\nBuild R2 Dsheldon\nBuild Y1 Exos\nCatastrophe Dsheldon Red\n\tzoltar: Wow -- I accidentally attacked my own ship by mistake and it worked! I suppose that is technically  isomorphic to passing one&#39;s turn.  Anyway, I undid it and swallowed a green ship instead.  Yum. \n\n72) dsheldon: Build Y2 Dsheldon\n\n73) Gort: Build Y2 Gort\n\n74) zoltar: Sacrifice R2 Zoltar\nAttack R2S Exos\nAttack G2S Exos\n\n75) jan: Trade G3 B3 Jan\n\tzoltar: jan&#39;s internet must still be down\n\n76) dsheldon: Move Y1 Dsheldon Gort\n\n77) Gort: Trade Y2 R2 Gort\n\n78) zoltar: Sacrifice G3 Exos\nBuild G3 Exos\nBuild G3 Bluemoon\nBuild Y2 Bluemoon\n\n79) jan: Sacrifice Y1 Exos\nMove Y1 Exos Jan\n\tzoltar: Wear ease Jan????\n\n80) dsheldon: Discover Y1 Gort B1 Harumph\n\tjan: here i am ,  sorry\n\tzoltar: Jan is back!  Whew Who!!!\n\n81) Gort: Sacrifice Y1 Gort\nMove B2 Deep Dsheldon\n\n82) zoltar: Move G2 Bluemoon Harumph\n\n83) dsheldon: Sacrifice G2 Apple\nBuild B1 Apple\nBuild B1 Apple\n\n84) Gort: Sacrifice G3 Deep\nBuild B3 Dsheldon\nBuild G2 Zoltar\nBuild R1 Gort\n\n85) zoltar: Sacrifice G3 Exos\nBuild G3 Exos\nBuild G3 Harumph\nBuild Y1 Zoltar\nCatastrophe Zoltar G\n\n86) dsheldon: Trade G3 R3 Dsheldon\n\n87) Gort: Sacrifice R2 Gort\nAttack Y2W Dsheldon\nAttack R3W Dsheldon\n\n88) zoltar: Sacrifice Y2 Bluemoon\nMove G3 Harumph Gort\nMove G3 Bluemoon Zoltar\n\tzoltar: Jan has been gone for 4 days again...\n\tdsheldon: I&#39;ve noticed.  I am loathe to eject him from the game however, as he&#39;s the one trying to kill me and I don&#39;t want to appear vindictive.  That, and you (Zoltar) will likely annihilate me in short order.\n\tzoltar: I&#39;d hate to eject anyone because their time was up.  Jan had internet trouble before. This is my first &quot;Sinister&quot; game -- and it&#39;s rather interesting.\n\tGort: I certainly don&#39;t mind waiting.\n\tzoltar: Attention: Jan hazz knot moved in one cycle of Earth&#39;s moon, Luna.  Perhaps the Earthling hazz been sucked into a black hole.  Shall we terminate Jan&#39;s fleet now?\n\n89) Gort: Sacrifice Y2 Dsheldon\nMove R3 Dsheldon Gort\nMove B2 Dsheldon Gort\n\tdsheldon: Woah, good thing I came and checked on the game.  I didn&#39;t get any email notification when Jan resigned.\r\n\r\nAlso: now we&#39;re down to three players, and that&#39;s sad.\n\n90) zoltar: Sacrifice R2 Exos\nAttack R1N Gort\nAttack R3N Gort\n\tGort: I thought Jan had excellent position. Sorry to see the species begin its slow tumble into the dark ages. Our race intends to die out sooner, but more gloriously.\n\n91) Gort: Sacrifice G2 Deep\nBuild B3 Gort\nPass\n\n92) zoltar: Sacrifice R2 Bluemoon\nAttack B2N Gort\nAttack B3N Gort\n\tGort: that&#39;ll teach me to wait on catastrophes.\n\tdsheldon: I got nuthin&#39;.  Looks like I&#39;m done for.\n\n\tzoltar: Very well.  Zoltar will not destroy your species and supernova your homeworld, but will instead claim your ships for the Zoronian Armada, and make your species loyal minions under the protection of the Great Galactic Emperor Zoltar!!!\n\nHomeworlds Online (SDG# 6541)\nStarted: 2007.2.15, Ended: 2007.2.17\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld B2 Y3 G3\n\tnycavri: &quot;Hey, didn&#39;t we just leave this patry?&quot;\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) nycavri: Build G1 Nycavri\n\tzoltar: Did you watch the &#39;bluebird&#39; video?\n\tnycavri: I did, thanks - good stuff.  And the &quot;real&quot; game looks so pretty in progress.\n\n4) zoltar: Build G1 Zoltar\n\n5) nycavri: Trade G1 R1 Nycavri\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) nycavri: Build G1 Nycavri\n\n8) zoltar: Build Y1 Zoltar\n\n9) nycavri: Trade G1 Y1 Nycavri\n\n10) zoltar: Build Y2 Zoltar\n\n11) nycavri: Build Y2 Nycavri\n\n12) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n13) nycavri: Sacrifice Y2 Nycavri\nDiscover R1 Nycavri R1 Hop\nMove R1 Hop Greenbelt\n\n14) zoltar: Discover Y1 Greenbelt G1 Greendale\n\n15) nycavri: Build G1 Nycavri\n\n16) zoltar: Build Y2 Greendale\n\n17) nycavri: Move Y1 Nycavri Greendale\n\n18) zoltar: Discover Y2 Zoltar B2 Blueridge\n\n19) nycavri: Build Y2 Greendale\n\n20) zoltar: Build G1 Zoltar\n\n21) nycavri: Build Y3 Greendale\n\n22) zoltar: Build Y3 Zoltar\nCatastrophe Greendale Y\n\n23) nycavri: Trade G1 Y1 Nycavri\n\tnycavri: And I&#39;ve gone and given you the edge again.....\n\n24) zoltar: Move G1 Zoltar Blueridge\n\n25) nycavri: Build G1 Nycavri\n\tzoltar: yes, you have!\n\n26) zoltar: Build G1 Blueridge\n\n27) nycavri: Trade G1 B1 Nycavri\n\n28) zoltar: Trade G1 B1 Blueridge\n\n29) nycavri: Discover B1 Nycavri Y1 Jw\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Blueridge\n\n31) nycavri: Move B1 Jw Greenbelt\n\tzoltar: hold on a sec, I need to think for a minute about this -- I may have an interesting sacrifice\n\n32) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: This would usually be suicidal, leaving two of my systems so vulnerable with three yellows in each, especially my homeworld, but as you only have a y1, I can get away with it and then separate my pieces or change colors if you threaten to blow up a system.\n\tnycavri: I saw this move, and figured it was 50/50 you doing it.  Gives you strong color position, but leaves you potentially vulnerable.  I took into account my response if you did go for it.....  \n\n33) nycavri: Trade R1 Y1 Greenbelt\n\tnycavri: At this point in my Homeworlds career, I understand the game, I see dangers one (or sometimes 2) move away, but haven&#39;t yet enough experience to spot problems before that, or to disguise my attacks against you.  I feel like I&#39;ve improved in each of my 3 games, but at some point I lose ground in the &quot;arms race&quot; and spend the rest of the time unsuccessfully trying to catch up again.  Usually ends with me hoping you make a mistake, which to date you have avoided.  In all, this speaks to a well designed game.....\n\n34) zoltar: Trade Y1 R1 Zoltar\n\n35) nycavri: Build Y1 Greenbelt\n\n36) zoltar: Build Y3 Zoltar\n\tzoltar: I can get a red ship and stop you from getting a Y3 all in one move, so that was a very efficient move, I figure!\n\n37) nycavri: Build B2 Greenbelt\n\n38) zoltar: Build B3 Blueridge\n\n39) nycavri: Discover Y1 Greenbelt G1 Fr\n\n40) zoltar: Sacrifice Y2 Blueridge\nMove B3 Blueridge Fr\nMove B3 Fr Nycavri\n\tzoltar: Well, I&#39;m grabbing the big ships, and now have to hope I can stop you from blowing them up before I can spread them out...\n\n41) nycavri: Build Y2 Fr\n\n42) zoltar: Sacrifice R1 Zoltar\nAttack G3 Nycavri\n\tzoltar: Hey wait a second, you got rid of your red ship and you don&#39;t have a red star in your homeworld -- no need to chase the pawns when I can go for the checkmate!\n\n43) nycavri: Sacrifice B1 Greenbelt\nTrade Y2 R2 Fr\n\n44) zoltar: Trade B3 R3 Nycavri\n\tzoltar: You needed to trade your yellow for a red again that last move, as with my having a red ship and you without one, and my having 3-sized ships that can reach your homeworld in one move with a yellow sacrifice, I have checkmate if you don&#39;t build a &#39;gun&#39; somewhere to defend your homeworld.\n\n45) nycavri: Build Y2 Fr\n\n46) zoltar: Attack Y1 Nycavri\n\tnycavri: I hear what you&#39;re saying, but it&#39;s not like I&#39;d have been in any better shape if I&#39;d traded for red last turn....\n\tzoltar: Sure you would, as you could sac your r1 and capture my B3 if I put it in your homeworld!  Now it&#39;s mate in 1.\n\n\tzoltar: The crucial thing to remember is to always have a 3-sized ship in your homeworld and a red ship somewhere, so that you are defended from 3-sized ships attacking.\n\tnycavri: Right, a turn or two earlier I could have rebuilt a red.\n\nHomeworlds Online (SDG# 6551)\nStarted: 2007.2.17, Ended: 2007.2.19\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: Hello again.  You can tell a good game when you want to play again even after being thrashed 3 games in a row.....\n\n2) zoltar: Homeworld G3 B1 B3 *\n\tnycavri: One game at a time, I think.  *grin*\n\n3) nycavri: Build G1 Nycavri\n\n4) zoltar: Build B1 Zoltar\n\tzoltar: Ah, I think you accepted my generic challenge while I was issuing a personal one.  Ok, I&#39;ll just create another generic one for other players again.  Meanwhile, going to try a &#39;trick&#39; opening that a better player just pulled on me for the first time, which is this one, where you start with two blues and a green, the idea being to try to get into 2-sized ships first by using up all the b1&#39;s.  I don&#39;t know if it works, but I didn&#39;t make the best moves and got behind early.\n\n5) nycavri: Build G1 Nycavri\n\n6) zoltar: Trade B3 Y3 Zoltar\n\tnycavri: And you threw me with your Red opening last game.  I&#39;m trying to go by the book for now - builder opening with a G3.\n\n7) nycavri: Trade G1 Y1 Nycavri\n\n8) zoltar: Build B2 Zoltar\n\n9) nycavri: Build Y1 Nycavri\n\n10) zoltar: Discover B2 Zoltar G2 Greendale\n\tzoltar: Yes, the red stars are more tricky, and are difficult in the opening, as red comes into play only in the later stages of the game (as you just saw), so that you have a slower start with a red star because it&#39;s the least used in the opening.\r\n\r\nThe strongest, safest opening is the one you have now, with yellow, blue, and green, and the small and medium stars, and this is called &quot;the banker&quot; because you can put green ships on 3-sized stars, and then when the color of the star is gone, you can sack your green, destroying the star, then build the 3-sized color that was the star, thus cashing in your &#39;investment&#39;.  If you play the blue as small star and yellow as medium as you did, it allows this new trick response, which I just saw for the first time and am trying now.  If my trick is successful, then maybe a yellow small star and blue medium star would prevent any tricks.  We&#39;ll have to see.  I know very little about openings, and am learning them as I go.\n\n11) nycavri: Build G1 Nycavri\n\n12) zoltar: Build B2 Greendale\n\tnycavri: Yup - I meant banker, not builder.   Concentrating hard of the stash right now, but you&#39;re off to a flyer this time.\n\n13) nycavri: Discover Y1 Nycavri B3 Hl\n\n14) zoltar: Build B2 Zoltar\n\n15) nycavri: Move G1 Nycavri Hl\n\tzoltar: I think I&#39;m going to call this response to the banker the &quot;bankrobber&quot;!\n\n16) zoltar: Build B3 Greendale\n\n17) nycavri: Build Y1 Hl\n\tnycavri: Not sure how much more I could be doing to stop you hoarding blue.....\n\tnycavri: Bankrobber is a good name, though!\n\n18) zoltar: Trade B3 Y3 Greendale\n\n19) nycavri: Discover Y1 Nycavri B3 Tl\n\n20) zoltar: Build B3 Greendale\n\n21) nycavri: Build G1 Nycavri\n\n22) zoltar: Sacrifice B2 Zoltar\nTrade B2 R2 Greendale\nTrade B3 G3 Greendale\n\n23) nycavri: Trade G1 R1 Nycavri\n\n24) zoltar: Sacrifice G3 Greendale\nBuild Y2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Greendale\n\tzoltar: You avoided my sneaky bluebird checkmate, I see!\n\tnycavri: I do *try* to pay attention.  *grin*\n\n25) nycavri: Discover Y1 Hl B2 Bh\n\n26) zoltar: Move Y2 Zoltar Bh\n\n27) nycavri: Move Y1 Bh Zoltar\n\n28) zoltar: Discover Y2 Zoltar B2 Blueberry\n\n29) nycavri: Move Y1 Tl Bh\n\n30) zoltar: Build B3 Zoltar\n\n31) nycavri: Trade G3 B3 Nycavri\n\n32) zoltar: Trade B3 R3 Zoltar\n\n33) nycavri: Move Y1 Bh Zoltar\n\n34) zoltar: Sacrifice R2 Greendale\nAttack Y1 Zoltar\nAttack Y1 Zoltar\n\n35) nycavri: Move Y1 Hl Bh\n\n36) zoltar: Move Y3 Zoltar Blueberry\n\n37) nycavri: Sacrifice G1 Hl\nBuild R1 Nycavri\n\n38) zoltar: Build B3 Greendale\n\n39) nycavri: Build R1 Nycavri\n\n40) zoltar: Trade B3 G3 Greendale\n\n41) nycavri: Discover R1 Nycavri B3 Sw\n\n42) zoltar: Sacrifice G3 Greendale\nBuild B3 Greendale\nBuild R2 Zoltar\nBuild R2 Zoltar\n\n43) nycavri: Move Y1 Bh Sw\n\tnycavri: I have to run.  Back tonight or tomorrow.  Lots to think about for me in this position - none of it good!\n\n44) zoltar: Move Y2 Blueberry Sw\n\n45) nycavri: Build G1 Nycavri\n\n46) zoltar: Sacrifice R2 Zoltar\nAttack Y1 Sw\nAttack R1 Sw\n\n47) nycavri: Build R2 Nycavri\n\n48) zoltar: Sacrifice Y3 Greendale\nMove R1 Sw Nycavri\nMove Y3 Blueberry Sw\nMove Y3 Sw Nycavri\nCatastrophe Nycavri R\n\n49) nycavri: Build G1 Nycavri\n\n50) zoltar: Sacrifice R3 Zoltar\nAttack G1 Nycavri\nAttack G1 Nycavri\nAttack G1 Nycavri\n\tnycavri: Have to biuld or I lose this turn.  If I build blue you blow up half my world.  So I build a green, which just delays the inevitable by a turn.  Did I miss anything?\n\n51) nycavri: Pass\n\tzoltar: No, it&#39;s mate in two no matter what at this point.\n\tnycavri: I lost this one very early - when I did nothing to prevent your Bankrobber.  Have to look at that offline to see if there&#39;s a defense.\n\n52) zoltar: Sacrifice R2 Zoltar\nAttack B3 Nycavri\nPass\n\n\nHomeworlds Online (SDG# 6570)\nStarted: 2007.2.19, Ended: 2007.2.27\nParticipants: nycavri (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) nycavri: Build G1 Nycavri\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) zoltar: Build Y2 Zoltar\n\n8) nycavri: Build G1 Nycavri\n\tnycavri: Didn&#39;t think that one through.....\n\n9) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n10) nycavri: Discover Y1 Nycavri G3 Jd\n\n11) zoltar: Build Y2 Greenhills\n\n12) nycavri: Build Y2 Jd\n\n13) zoltar: Discover Y2 Greenhills B3 Bluemoon\n\n14) nycavri: Build Y3 Jd\n\n15) zoltar: Move Y1 Greenhills Jd\nCatastrophe Jd Y\n\n16) nycavri: Build G1 Nycavri\n\n17) zoltar: Build Y1 Zoltar\n\n18) nycavri: Trade G1 R1 Nycavri\n\n19) zoltar: Trade Y2 R2 Zoltar\n\n20) nycavri: Build R1 Nycavri\n\n21) zoltar: Build R2 Zoltar\n\n22) nycavri: Trade R1 Y1 Nycavri\n\n23) zoltar: Build Y2 Zoltar\n\n24) nycavri: Discover Y1 Nycavri G3 Sk\n\n25) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n26) nycavri: Trade G1 B1 Nycavri\n\n27) zoltar: Build G1 Zoltar\n\n28) nycavri: Build Y2 Sk\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Greenbelt\n\n30) nycavri: Build R1 Nycavri\n\tzoltar: Yellow power!\n\n31) zoltar: Move Y3 Greenbelt Sk\n\tnycavri: Just another Homeworlds humiliation.....\n\n32) nycavri: Move R1 Nycavri Sk\n\n33) zoltar: Sacrifice R2 Zoltar\nAttack Y2 Sk\nAttack R1 Sk\n\n34) nycavri: Discover Y1 Sk B2 Klf\n\n35) zoltar: Trade Y3 G3 Zoltar\n\n36) nycavri: Sacrifice G3 Nycavri\nBuild Y3 Klf\nBuild R2 Nycavri\nBuild R2 Nycavri\n\tnycavri: Ouch.....\n\tzoltar: The Death Star is almost fully functional...\n\tnycavri: Where&#39;s Luke when you need him?  Or Lando?  Hell, I&#39;d take Jar Jar at this point.....\n\n37) zoltar: Sacrifice Y2 Bluemoon\nMove R1 Sk Nycavri\nMove Y3 Sk Nycavri\nCatastrophe Nycavri R\n\tzoltar: Actually I meant to trade the Y3 at zoltar, but it makes no difference: either way, zee Zoronian fleet has monopolized zee warp drive technology and plans to expand and expel zee earthlingz from zee galaxy!  Whew Who!\n\n38) nycavri: Sacrifice Y3 Klf\nMove Y1 Klf Sk\nMove Y1 Sk Nycavri\nPass\n\n39) zoltar: Sacrifice R2 Zoltar\nAttack B1 Nycavri\nAttack Y1 Nycavri\n\tzoltar: The nycavri homeworld has fallen to the great Zoltarian fleet!\n\tnycavri: Yup - that&#39;s game.  I think I&#39;m done with Homeworlds on SDG for a little while.  0 for 6 is a little depressing.  Thanks for schooling me again, though.  *grin*\n\n\tzoltar: Hey, try playing someone else at it, as I&#39;m one of the three best players -- you now have the experience to have an even game against many of the other players.  Also, try a 4 player homeworlds game, as there is less pressure, and you can lay low and build your fleet while the others attack each other sometimes.\n\nHomeworlds Online (SDG# 6582)\nStarted: 2007.2.19, Ended: 2007.3.1\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B1 G3\n\n2) Uglyfoot: Homeworld Y1 B2 G3\n\tUglyfoot: Oh no.  I just moved out of last place.  ;&gt;  How&#39;s it goin&#39; Emporer?\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) zoltar: Build Y2 Zoltar\n\n8) Uglyfoot: Build Y2 Uglyfoot\n\n9) zoltar: Build Y2 Zoltar\n\n10) Uglyfoot: Discover Y2 Uglyfoot G3 Lee\n\n11) zoltar: Trade Y1 R1 Zoltar\n\n12) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: I&#39;ve been on a losing streak, but I&#39;m trying to make my comeback.  \n\n13) zoltar: Discover Y2 Zoltar G2 Greenhills\n\tUglyfoot: Please forgive me if I try to continue your streak...  ;&gt;\n\n14) Uglyfoot: Trade G1 R1 Uglyfoot\n\n15) zoltar: Build G1 Zoltar\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) zoltar: Trade G1 B1 Zoltar\n\n18) Uglyfoot: Build G1 Uglyfoot\n\n19) zoltar: Build B1 Zoltar\n\n20) Uglyfoot: Trade G3 B3 Uglyfoot\n\n21) zoltar: Move B1 Zoltar Greenhills\n\n22) Uglyfoot: Discover G1 Uglyfoot B3 Bigun\n\n23) zoltar: Build B2 Greenhills\n\n24) Uglyfoot: Discover Y1 Uglyfoot B3 Largess\n\n25) zoltar: Build B2 Greenhills\n\n26) Uglyfoot: Build Y1 Lee\n\n27) zoltar: Build Y3 Greenhills\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) zoltar: Build Y3 Zoltar\n\n30) Uglyfoot: Build G2 Bigun\n\n31) zoltar: Move Y3 Greenhills Largess\n\n32) Uglyfoot: Move Y2 Lee Greenhills\n\n33) zoltar: Build Y3 Greenhills\n\n34) Uglyfoot: Move Y1 Largess Greenhills\nCatastrophe Greenhills Y\n\n35) zoltar: Trade B2 Y2 Greenhills\n\n36) Uglyfoot: Trade G2 Y2 Bigun\n\n37) zoltar: Trade Y3 G3 Zoltar\n\n38) Uglyfoot: Build G2 Bigun\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Largess\nBuild Y3 Greenhills\nBuild Y3 Zoltar\n\n40) Uglyfoot: Trade G2 B2 Bigun\n\n41) zoltar: Move B2 Greenhills Bigun\n\n42) Uglyfoot: Discover B2 Bigun R2 Battlestar\n\n43) zoltar: Sacrifice R1 Zoltar\nAttack Y2 Bigun\n\n44) Uglyfoot: Trade B3 G3 Uglyfoot\n\tzoltar: The Death Star is now fully functional. Prepare to fire on the rebel base....stand by...\n\n45) zoltar: Build B3 Greenhills\n\n46) Uglyfoot: Move G1 Uglyfoot Lee\n\n47) zoltar: Move Y3 Zoltar Battlestar\n\n48) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Bigun\nBuild G2 Bigun\nBuild G3 Uglyfoot\n\n49) zoltar: Trade B3 R3 Greenhills\n\n50) Uglyfoot: Build R1 Uglyfoot\n\n51) zoltar: Build B3 Greenhills\n\n\nHomeworlds Online (SDG# 6612)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.20, Ended: 2007.3.4\nParticipants: TwoShort (S), antihero (N)\nWinner: TwoShort\n\n1) antihero: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld G3 B1 B3 *\n\n3) antihero: Build Y1 Antihero\n\tTwoShort: Greetings...\r\n\n\tantihero: Hello. I fear I am in much trouble here. ;)\n\n4) TwoShort: Build B1 Twoshort\n\n5) antihero: Build Y1 Antihero\n\tTwoShort: Hmm, we&#39;ll see.  Against the particular homeworld set up you picked, I feel compelled to yet again attempt my wacky &quot;Blue freeze-out&quot; opening, which I like becaus it&#39;s different, and seems like it should be effective.  My record with it so far has been considerably less than stellar though.\n\tantihero: It is wacky. After a beating at Keith&#39;s hands I made a mental note to always watch out when small blues are in both towers, but I didn&#39;t imagine playing an opening like that. It looks like it could work pretty well. We&#39;ll see.\n\tantihero: towers = homeworlds. I just lost horribly at alien city, so it&#39;s on my mind.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) antihero: Discover Y1 Antihero G3 Evergreen\n\n8) TwoShort: Build B2 Twoshort\n\n9) antihero: Build Y1 Evergreen\n\n10) TwoShort: Discover B1 Twoshort B2 Bluestar\n\n11) antihero: Trade Y3 B3 Antihero\n\n12) TwoShort: Build B2 Twoshort\n\tantihero: this could go badly very quickly\n\n13) antihero: Build Y2 Antihero\n\n14) TwoShort: Trade B2 Y2 Twoshort\n\n15) antihero: Discover Y1 Evergreen G2 Greenstar\n\n16) TwoShort: Discover Y2 Twoshort B2 Bluesville\n\n17) antihero: Move Y1 Greenstar Twoshort\n\n18) TwoShort: Trade B2 R2 Twoshort\n\n19) antihero: Build Y2 Twoshort\n\n20) TwoShort: Trade Y3 G3 Twoshort\n\n21) antihero: Build Y3 Evergreen\n\tantihero: snap, didn&#39;t see that. Should pay more attention.\n\n22) TwoShort: Sacrifice R2 Twoshort\nAttack Y2N Twoshort\nAttack Y1N Twoshort\n\tTwoShort: You had me worried for a bit there\n\n23) antihero: Sacrifice Y2 Antihero\nMove Y1 Evergreen Bluesville\nMove Y1 Bluesville Twoshort\n\tantihero: I realize this is a competitive game and all, but did I have a better follow up move than b y3 evergreen?\n\tTwoShort: Not necessarily; When you first put the y1 in my homeworld, I figured the whole point was to give yourself room to grow the y3 and throw a wrench in my plans to grab the b3s; both of which you&#39;ve now done.  What I was worried you might do last turn is sacrifice your b3 to turn both of the ys in my homeworld to green and cause a catastrophe, taking my 3 point and one of my stars.  The result of that might have been to your advantage, but any game with the 3 pointers gone is going to be pretty volatile.  In any case, getting a Y3 is hard to argue with.\n\n24) TwoShort: Trade Y2 R2 Twoshort\n\tantihero: &lt;-- flying by the seat of his pants!\n\tTwoShort: Hmm...  That one I don&#39;t think was such a good idea.\n\n\tantihero: yeah, I&#39;m making backwards progress here.. woo!\n\tantihero: whoops. Sorry. I wish I hadn&#39;t done that.\n\nHomeworlds Online (SDG# 6568)\nStarted: 2007.2.21, Ended: 2007.3.16\nParticipants: zoltar (S), beanbagboy (N)\nWinner: zoltar\n\n1) beanbagboy: Homeworld B2 G1 Y3\n\n2) zoltar: Homeworld R3 B1 G3\n\tbeanbagboy: Hi, I&#39;m new to SuperDuperGames (but not to Homeworlds. ;)) so how do you name your homeworld?\r\nThanks.\n\n3) beanbagboy: Build Y1 Beanbagboy\n\n4) zoltar: Build G1 Zoltar\n\tbeanbagboy: I just realized that you can&#39;t name the homesystem. So never mind.\n\n5) beanbagboy: Discover Y1 Beanbagboy G3 Megafactory\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) beanbagboy: Trade Y3 G3 Beanbagboy\n\n8) zoltar: Build G1 Zoltar\n\n\nHomeworlds Online (SDG# 6649)\nStarted: 2007.2.23, Ended: 2007.3.4\nParticipants: papa_bear (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld B2 Y1 G3\n\n2) papa_bear: Homeworld Y3 B2 G3\n\tclockwise: Hello, and good luck.\n\tpapa_bear: You too. Are you fairly new to SDG?\n\n3) clockwise: Build G1 Clockwise\n\n4) papa_bear: Build G1 Papa_bear\n\tclockwise: Relatively yes, I just signed up in January.\n\tpapa_bear: Welcome. What do you think of it?\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) papa_bear: Trade G1 B1 Papa_bear\n\tclockwise: I&#39;ve enjoyed it thusfar, though I haven&#39;t done anything other than Homeworlds yet.\n\n7) clockwise: Build G1 Clockwise\n\n8) papa_bear: Build B1 Papa_bear\n\n9) clockwise: Trade G1 B1 Clockwise\n\n10) papa_bear: Trade B1 Y1 Papa_bear\n\tpapa_bear: Do you play Homeworlds offline, with physical pieces?\n\n11) clockwise: Build Y2 Clockwise\n\tclockwise: Yes, though not very often.  It&#39;s hard to convince my friends to start playing when I beat them all the time.  Plus my preferred icehous game is really Gnostica.\n\n12) papa_bear: Build Y2 Papa_bear\n\tpapa_bear: Sounds like you won&#39;t have much trouble beating me in Homeworlds, then. But my understanding is that some of the guys here at SDG are very sharp players.\r\n\r\nI&#39;m unfamiliar with Gnostica. I&#39;ll do a search later and have a look at it. Homeworlds is the only Icehouse game I&#39;ve ever played, and I&#39;ve only played it here.\n\n13) clockwise: Discover Y1 Clockwise G3 Ham\n\tclockwise: If the forums are to be believed there are a couple people working on an sdg adaption of Gnostica.  But we&#39;ll see, it&#39;s a pretty complicated game.\n\n14) papa_bear: Discover Y1 Papa_bear R1 Shem\n\tpapa_bear: It does look complicated. I have a low threshhold for complexity when first coming to a game. I prefer a game in which I can get my head around the rules in a matter of minutes, and then spend years or decades trying to get my head around actually playing well. Homeworlds and Chase are about the most complicated games I think I&#39;ve tried out here at SDG.\n\n15) clockwise: Build G1 Clockwise\n\tclockwise: And aside from it&#39;s complexity it also doesn&#39;t work particularly well as a two player game, which I think is a second mark against it for being a good candidate for sdg.  But it&#39;s a good game.\n\n16) papa_bear: Build G1 Papa_bear\n\tpapa_bear: Is there something about the processing of multiple players&#39; turns which would be more difficult to program than in the cases of other 3+ player games on SDG?\n\n17) clockwise: Discover G1 Clockwise Y3 Spam\n\tclockwise: No, not really.  I just find that asynchronous play gets more annoying the more people you add, esp with the possibility of dropouts disrupting the game.\n\tpapa_bear: Ah, yes. Dropouts would be a problem. I have yet to play any 3+ player games here, and I&#39;m not really excited about trying it.\n\n18) papa_bear: Move G1 Papa_bear Shem\n\n19) clockwise: Build G1 Clockwise\n\tclockwise: Yes, that rather sums up my thoughts.\n\n20) papa_bear: Build B1 Papa_bear\n\n21) clockwise: Build B2 Clockwise\n\n22) papa_bear: Move B1 Papa_bear Shem\n\n23) clockwise: Trade B1 R1 Clockwise\n\n24) papa_bear: Build Y2 Shem\n\n25) clockwise: Build Y3 Ham\n\n26) papa_bear: Build G2 Shem\n\n27) clockwise: Sacrifice Y2 Clockwise\nDiscover Y3 Ham R1 Viper\nMove Y3 Viper Papa_bear\n\n28) papa_bear: Trade Y2 R2 Papa_bear\n\n29) clockwise: Sacrifice R1 Clockwise\nAttack R2S Papa_bear\n\n\tpapa_bear: Doh! I always forget about sacrificing red ones. I better think about this for a bit...\n\tpapa_bear: I can&#39;t see a way to survive. Thanks for the game!\n\tclockwise: The two main mistakes you made were not following me into red and letting me build the y3, both of which compounded each other.  \n\tclockwise: Thanks for the game!\n\tpapa_bear: I didn&#39;t feel comfortable letting you have the y3, so I should have &quot;gone with my gut&quot; that time. As for not developing red, I didn&#39;t realize the problem until it was too late :)\n\tpapa_bear: Oh, thanks for the feedback, by the way.\n\nHomeworlds Online (SDG# 6615)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.23, Ended: 2007.3.3\nParticipants: TwoShort (S), Greo (N)\nWinner: TwoShort\n\n1) Greo: Homeworld B3 Y2 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) Greo: Build G1 Greo\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy.\n\n5) Greo: Discover G1 Greo Y1 Loller\n\tGreo: Hello :D\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Greo: Build G1 Loller\n\n8) TwoShort: Build G1 Twoshort\n\n9) Greo: Build G2 Greo\n\n10) TwoShort: Build Y1 Twoshort\n\n11) Greo: Trade G2 B2 Greo\n\n12) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n13) Greo: Build G2 Loller\n\n14) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n15) Greo: Move B2 Greo Loller\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n\tTwoShort: ???!?\n\nHomeworlds Online (SDG# 6725)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.26, Ended: 2007.3.15\nParticipants: eugman (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld R1 B2 G3\n\n2) eugman: Homeworld Y3 B1 G3\n\tclockwise: Hello, and good luck!\n\teugman: Interesting start. You are either very foolish or very smart.\n\n3) clockwise: Build G1 Clockwise\n\n4) eugman: Build G1 Eugman\n\tclockwise: Oh good, I was hoping I wouldn&#39;t win this by timing you out before you built your homeworld.\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) eugman: Build G1 Eugman\n\n7) clockwise: Build G1 Clockwise\n\teugman: Well that should give me a decent buffer of time.\n\n8) eugman: Trade G1 B1 Eugman\n\teugman: Will make a move tomorrow.\n\n9) clockwise: Build Y1 Clockwise\n\n\teugman: Oh shoot. I must apologize. My graduation project has taken up my focus.\n\tclockwise: Ah, that&#39;s understandable, perhaps we can have another game sometime when you have more time.\n\nHomeworlds Online (SDG# 6696)\nVariants: &quot;Hard time&quot;\nStarted: 2007.2.27, Ended: 2007.3.2\nParticipants: lurker123 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 6754)\nVariants: &quot;Sinister&quot;\nStarted: 2007.2.27, Ended: 2008.3.9\nParticipants: kteague (S), A_TRAIN (N), josser (E)\nWinner: josser\n\n1) A_TRAIN: Homeworld G2 B1 Y3\n\tjosser: Hi guys. Just reminding you that this is sinister homeworlds so you have to kill the next person in player order. Adam you lucky guy, you get to kill Kev.\n\n2) josser: Homeworld Y3 G2 B3\n\tA_TRAIN: I think I&#39;m killing you, cause your next. Your the lucky one.\n\tjosser: You&#39;re right Adam, I was looking at the play list. Yay! I get to kill Kev!\n\n3) kteague: Homeworld R1 G2 B3\n\n4) A_TRAIN: Build Y1 A_train\n\tkteague: i forget how to play ...\n\tkteague: does this game system allow you to say fuck? I like to say fuck.\n\tjosser: looks like you can say fuck!\n\n5) josser: Build B1 Josser\n\n6) kteague: Build B1 Kteague\n\n7) A_TRAIN: Trade Y1 G1 A_train\n\n8) josser: Discover B1 Josser R1 Kevsux\n\n9) kteague: Trade B1 Y1 Kteague\n\n10) A_TRAIN: Build Y1 A_train\n\n11) josser: Build B1 Josser\n\n\nHomeworlds Online (SDG# 6790)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.1, Ended: 2007.5.4\nParticipants: nycavri (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld R1 B2 G3\n\n2) nycavri: Homeworld B2 Y3 G3\n\tdsheldon: Don&#39;t I remember you from the Icehouse list?\n\tnycavri: Could be - I recently signed up.  I asked about literature on openings for a couple of games.\n\n3) dsheldon: Build G1 Dsheldon\n\n4) nycavri: Build G1 Nycavri\n\n5) dsheldon: Trade G1 Y1 Dsheldon\n\n6) nycavri: Build G1 Nycavri\n\n7) dsheldon: Build G1 Dsheldon\n\n8) nycavri: Trade G1 Y1 Nycavri\n\n9) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n10) nycavri: Discover Y1 Nycavri B1 Deacon\n\n11) dsheldon: Build G1 Jerome\n\n12) nycavri: Build G2 Nycavri\n\n13) dsheldon: Build G2 Dsheldon\n\n14) nycavri: Trade G2 Y2 Nycavri\n\n15) dsheldon: Move G1 Jerome Deacon\n\n16) nycavri: Trade Y1 R1 Deacon\n\n17) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Deacon\nBuild G2 Jerome\nBuild G3 Dsheldon\n\n18) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild R1 Deacon\nBuild R2 Deacon\n\n19) dsheldon: Trade G2 R2 Deacon\nCatastrophe Deacon R\n\n20) nycavri: Trade G1 R1 Nycavri\n\tdsheldon: I&#39;m going away for the weekend and a bit more.  I might not make another move until Tuesday, so don&#39;t worry if I&#39;m a little late.\n\n21) dsheldon: Sacrifice G3 Dsheldon\nBuild G1 Jerome\nBuild G2 Deacon\nBuild G3 Dsheldon\n\tnycavri: No problem.  Have a good trip.\n\n22) nycavri: Build G3 Nycavri\n\tdsheldon: ok... maybe one more, but that&#39;s it.\n\n23) dsheldon: Trade G2 Y2 Deacon\n\n24) nycavri: Move Y2 Nycavri Deacon\n\tnycavri: Welcome back!\n\n25) dsheldon: Discover G1 Jerome Y1 Buttercup\n\tdsheldon: Thanks.  I had actually forgotten how much I like my family.  15 months will do that, I suppose.\n\n26) nycavri: Sacrifice R1 Nycavri\nAttack Y2 Deacon\n\n27) dsheldon: Move G1 Buttercup Nycavri\n\n28) nycavri: Trade G3 R3 Nycavri\n\n29) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Nycavri\nBuild G3 Nycavri\nBuild G3 Dsheldon\nCatastrophe Nycavri G\n\n30) nycavri: Trade R3 G3 Nycavri\n\n31) dsheldon: Build G1 Deacon\n\n32) nycavri: Trade Y2 R2 Deacon\n\n33) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Jerome\nBuild G3 Dsheldon\nBuild G3 Dsheldon\n\n34) nycavri: Attack G1 Deacon\n\n35) dsheldon: Trade G3 Y3 Dsheldon\n\n36) nycavri: Move G1 Deacon Jerome\nCatastrophe Jerome G\n\n37) dsheldon: Sacrifice Y1 Dsheldon\nMove G1 Deacon Nycavri\n\tnycavri: *Not* smart.....\n\n38) nycavri: Move R2 Deacon Nycavri\n\n39) dsheldon: Build G1 Nycavri\n\n40) nycavri: Trade G3 R3 Nycavri\n\n41) dsheldon: Build G1 Nycavri\n\n42) nycavri: Attack G1 Nycavri\n\n43) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Nycavri\nBuild G2 Dsheldon\nBuild G3 Dsheldon\nCatastrophe Nycavri G\n\n44) nycavri: Trade R3 G3 Nycavri\n\n45) dsheldon: Trade G2 R2 Dsheldon\n\n46) nycavri: Build G1 Nycavri\n\n47) dsheldon: Discover R2 Dsheldon Y3 Busstop\n\n48) nycavri: Move G1 Nycavri Deacon\n\n49) dsheldon: Move R2 Busstop Deacon\n\n50) nycavri: Sacrifice R2 Nycavri\nAttack R2 Deacon\nPass\n\n51) dsheldon: Discover G2 Dsheldon R3 Caution\n\n52) nycavri: Build G1 Nycavri\n\tdsheldon: I didn&#39;t expect you to leave your homeworld so undefended.  But now that I look at it, I&#39;m in no condition to make an attack, so I guess you made the right choice.\n\n53) dsheldon: Build Y1 Dsheldon\n\tnycavri: That&#39;s what I&#39;m hoping anyway.  In this, my seventh Homeworlds game, I&#39;ve still yet to be on the front foot.  Needless to say, I&#39;m 0-6 so far.....\n\n54) nycavri: Build Y1 Deacon\n\tdsheldon: My record&#39;s not much better.  The one win I do have was against an exceedingly unskilled opponent.\n\n55) dsheldon: Trade Y1 B1 Dsheldon\n\n56) nycavri: Trade Y1 B1 Deacon\n\tnycavri: Yup.  The quality of Homeworlds play on SDG is seriously high!\n\n57) dsheldon: Move B1 Dsheldon Caution\n\n58) nycavri: Discover R2 Deacon Y3 May\n\n59) dsheldon: Build B2 Caution\n\n60) nycavri: Discover Y2 Deacon G3 Mercury\n\n61) dsheldon: Trade B2 Y2 Caution\n\n62) nycavri: Trade B1 Y1 Deacon\n\n63) dsheldon: Discover G2 Caution R1 Pom\n\n64) nycavri: Trade G1 R1 Nycavri\n\n65) dsheldon: Build G1 Pom\n\n66) nycavri: Move G1 Deacon May\n\n67) dsheldon: Trade Y2 R2 Caution\n\n68) nycavri: Build R2 Nycavri\n\n69) dsheldon: Build Y1 Dsheldon\n\n70) nycavri: Build R3 May\n\n71) dsheldon: Build G1 Dsheldon\n\n72) nycavri: Build G2 May\n\n73) dsheldon: Trade G1 B1 Dsheldon\n\n74) nycavri: Move R1 Nycavri Deacon\n\n75) dsheldon: Sacrifice B1 Dsheldon\nTrade G1 B1 Pom\n\n76) nycavri: Build R3 Nycavri\n\n77) dsheldon: Build B2 Pom\n\n78) nycavri: Move R3 Nycavri Pom\n\n79) dsheldon: Sacrifice Y3 Dsheldon\nMove G2 Pom Caution\nDiscover B1 Pom B3 Chase\nDiscover B2 Pom G2 Pacific\n\n80) nycavri: Move R1 Deacon Chase\n\n81) dsheldon: Build B3 Caution\n\n82) nycavri: Attack B1 Chase\n\n83) dsheldon: Build B3 Pacific\n\n84) nycavri: Sacrifice B1 Chase\nTrade R3 Y3 Pom\n\n85) dsheldon: Sacrifice B2 Pacific\nTrade B3 R3 Pacific\nTrade B1 Y1 Caution\n\n86) nycavri: Sacrifice Y3 Pom\nMove R1 Chase Dsheldon\nMove R2 May Dsheldon\nMove R3 May Dsheldon\nCatastrophe Dsheldon R\n\tdsheldon: Uh oh.  I didn&#39;t think much of your trade in Chase, but now I am quite worried.\n\tdsheldon: Err, not trade, move to.  I am so kicking myself for not seeing that.\n\n87) dsheldon: Build Y2 Dsheldon\n\n88) nycavri: Move G1 May Dsheldon\n\tnycavri: Worried with good reason it turned out....  First time I&#39;ve taken out an opponent&#39;s home planet on SDG.  Apparently I *was* learning something in all those previous thrashings!\n\n89) dsheldon: Sacrifice B3 Caution\nTrade G3 R3 Dsheldon\nTrade Y1 B1 Dsheldon\nTrade Y1 B1 Caution\n\n90) nycavri: Build G1 Nycavri\n\n91) dsheldon: Attack G1S Dsheldon\n\n92) nycavri: Move Y2 Mercury Deacon\n\tdsheldon: I&#39;m a big fan of unorthodox defenses\n\n93) dsheldon: Build B2 Caution\n\n94) nycavri: Move G1 Nycavri Deacon\n\tdsheldon: y&#39;know what, that&#39;s the first time I ever captured a ship.  huh.\n\n95) dsheldon: Build B3 Dsheldon\n\n96) nycavri: Build G1 Nycavri\n\n97) dsheldon: Move B3 Dsheldon Deacon\n\n98) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild G3 Deacon\nBuild G3 May\n\n99) dsheldon: Sacrifice R3 Pacific\nAttack G3S Deacon\nAttack Y2S Deacon\nAttack G1S Deacon\n\n100) nycavri: Trade G1 Y1 Nycavri\n\n101) dsheldon: Trade G3 R3 Deacon\n\n102) nycavri: Trade G3 B3 Nycavri\n\n103) dsheldon: Attack Y1S Deacon\n\tnycavri: Ooops.....\n\n104) nycavri: Trade Y1 R1 Nycavri\n\n105) dsheldon: Sacrifice Y1 Deacon\nDiscover B1 Caution G1 Penny\n\n106) nycavri: Discover G3 May Y2 Mercury\n\tnycavri: That wasn&#39;t it.  Don&#39;t know why I thought Deacon had a Yellow star.....\n\n107) dsheldon: Build B3 Penny\n\n108) nycavri: Trade B3 Y3 Nycavri\n\n109) dsheldon: Move R3 Deacon May\n\n110) nycavri: Discover G2 May Y1 Taylor\n\n111) dsheldon: Build G2 Dsheldon\n\n112) nycavri: Build G3 Taylor\n\n113) dsheldon: Sacrifice Y2 Deacon\nMove G2 Caution Taylor\nMove G1 Dsheldon Taylor\nCatastrophe Taylor G\n\tdsheldon: That was a really good move.  Very frustrating ;)\n\n114) nycavri: Build G1 Mercury\n\n115) dsheldon: Sacrifice B3 Penny\nTrade R3 G3 May\nTrade R2 Y2 Caution\nTrade B3 R3 Deacon\n\n116) nycavri: Discover G3 Mercury B3 Taylor\n\n117) dsheldon: Trade B1 Y1 Penny\n\n118) nycavri: Sacrifice G3 Taylor\nBuild R1 Nycavri\nBuild G2 Mercury\nBuild G2 Mercury\n\n119) dsheldon: Sacrifice Y2 Caution\nMove G1 Deacon Mercury\nMove R3 Deacon Nycavri\nCatastrophe Nycavri R\nCatastrophe Mercury G\n\n120) nycavri: Trade Y3 R3 Nycavri\n\n121) dsheldon: Build R1 Dsheldon\n\n\tnycavri: Ah, right you are.  Well played.  I&#39;m now 0 for 9.....\n\nHomeworlds Online (SDG# 6856)\nStarted: 2007.3.3, Ended: 2007.3.3\nParticipants: josser (S), guymauve (N)\nWinner: guymauve\n\n1) guymauve: Homeworld G3 B2 Y3\n\n2) josser: Homeworld G3 B2 Y3\n\n3) guymauve: Build Y1 Guymauve\n\n4) josser: Build Y1 Josser\n\n5) guymauve: Discover Y3 Guymauve R1 Kaka\n\n6) josser: Trade Y3 G3 Josser\n\n7) guymauve: Build Y1 Guymauve\n\n8) josser: Sacrifice G3 Josser\nBuild Y2 Josser\nBuild Y2 Josser\nPass\n\n9) guymauve: Build Y2 Guymauve\n\n10) josser: Build Y3 Josser\n\n11) guymauve: Move Y2 Guymauve Kaka\nCatastrophe Josser Y\n\n\nHomeworlds Online (SDG# 6823)\nStarted: 2007.3.3, Ended: 2008.2.22\nParticipants: kteague (S), josser (N)\nWinner: josser\n\n1) josser: Homeworld G3 B2 Y3\n\n2) kteague: Homeworld G3 B1 R3\n\n3) josser: Build Y1 Josser\n\n4) kteague: Build R1 Kteague\n\n5) josser: Trade Y1 R1 Josser\n\n6) kteague: Trade R1 Y1 Kteague\n\n7) josser: Build Y1 Josser\n\n\nHomeworlds Online (SDG# 6862)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.5, Ended: 2007.5.3\nParticipants: antihero (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 R1 G3\n\n2) antihero: Homeworld B1 Y2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) antihero: Build G1 Antihero\n\n5) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) antihero: Build G1 Antihero\n\n9) Uglyfoot: Trade G1 R1 Uglyfoot\n\n10) antihero: Trade G1 R1 Antihero\n\n11) Uglyfoot: Discover R1 Uglyfoot G2 Aleph\n\n12) antihero: Build G1 Antihero\n\n13) Uglyfoot: Build R2 Aleph\n\n14) antihero: Build R2 Antihero\n\n15) Uglyfoot: Build G1 Uglyfoot\n\n16) antihero: Discover G1 Antihero Y3 Gamma\n\n17) Uglyfoot: Build Y1 Uglyfoot\n\n18) antihero: Build Y2 Antihero\n\n19) Uglyfoot: Move Y1 Uglyfoot Aleph\n\n20) antihero: Discover Y2 Antihero G3 Biggreen\n\n21) Uglyfoot: Move R2 Aleph Gamma\n\n22) antihero: Discover G1 Gamma B2 Switch\n\n23) Uglyfoot: Build R2 Aleph\n\n24) antihero: Build G1 Switch\n\n25) Uglyfoot: Move G1 Uglyfoot Switch\n\n26) antihero: Build G2 Antihero\n\n27) Uglyfoot: Sacrifice R2 Aleph\nAttack G1 Switch\nAttack G1 Switch\n\n28) antihero: Build G2 Antihero\n\n29) Uglyfoot: Build Y2 Aleph\n\n30) antihero: Sacrifice G2 Antihero\nBuild Y3 Biggreen\nPass\n\n31) Uglyfoot: Build Y3 Uglyfoot\n\n32) antihero: Discover G2 Antihero B3 Delta\n\n33) Uglyfoot: Move Y2 Aleph Biggreen\n\n34) antihero: Sacrifice Y2 Biggreen\nMove R2 Antihero Delta\nMove R2 Delta Switch\n\n35) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G1 Switch Gamma\nMove G1 Switch Delta\nMove G1 Switch Biggreen\n\n\nHomeworlds Online (SDG# 6859)\nStarted: 2007.3.6, Ended: 2007.3.18\nParticipants: TwoShort (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld Y2 B1 G3\n\n2) TwoShort: Homeworld R3 B1 G3\n\tclockwise: Greetings\n\n3) clockwise: Build G1 Clockwise\n\tTwoShort: Howdy.\n\n4) TwoShort: Build G1 Twoshort\n\n5) clockwise: Trade G1 B1 Clockwise\n\n6) TwoShort: Build G1 Twoshort\n\n7) clockwise: Build B2 Clockwise\n\tTwoShort: I was wondering if you would go for that... \n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) clockwise: Discover B2 Clockwise G3 Spawningpool\n\tclockwise: I generally think it&#39;s a terrible idea to start with a small of the same color as the starting player. If you were a weaker player I&#39;d assume it was just bad play, but right now I&#39;m wondering if instead it is some sort of trap.\n\tTwoShort: Lately I&#39;ve been responding to your opening (or any with a b1 star) with G3 B1 B3, enabling me to grow the final B1 on the first turn before the opponent can do anything about it.  This has been fairly effective, but I theorize that this is because my opponents don&#39;t handle it well.  So in order to test this theory, I was somewhat interested in having someone put the freeze-out on me for a change.  So, a trap?  Not really.  I wanted you to do it, but I don&#39;t have a concrete plan what to do next, and I&#39;m wondering if it was really a bad idea...\n\n10) TwoShort: Build Y1 Twoshort\n\tclockwise: In this case I think I have three main advantages that the G3 B1 B3 opening doesn&#39;t have: Tempo, immediate access to yellow, and the ability to safely factory in my homesystem.  I guess we&#39;ll see how it turns out.\n\n11) clockwise: Build B2 Spawningpool\n\n12) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n13) clockwise: Build B3 Spawningpool\n\n14) TwoShort: Build Y1 Twoshort\n\n15) clockwise: Trade B3 Y3 Spawningpool\n\tTwoShort: Did I say something about having any theory whatsoever about what the bleep I&#39;m doing?  \r\nHeh.\n\n16) TwoShort: Discover Y1 Twoshort Y2 Yolonda\n\tclockwise: Well two good things about this game are that it is different from most, and that it is moving quickly...\n\n17) clockwise: Build Y2 Spawningpool\n\tclockwise: Nice play\n\tTwoShort: Well, my basic theory for dealing with the blue freeze-out (mostly ignore it, and push yellow) seems to be working out; but I hope your delay in making the next move isn&#39;t from discouragement, because I think your position is still pretty strong.  I&#39;m having to resist posting an extensive analysis of what I think you should do :)  \n\tclockwise: No, not discouragement, but need to sit down and work things through, and I&#39;ve been pretty busy with other things.\n\tclockwise: You can give me an analysis of what you think I should do at this point once the game is done ;)\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Twoshort\nBuild G1 Twoshort\n\tclockwise: My own analysis is that unless I have a second yellow it will be very hard to win... though I don&#39;t like letting you into the large pieces.\n\tTwoShort: That&#39;s essentially what I was thinking, except to note that letting me into the Y3s was not avoidable :)\n\n19) clockwise: Build B3 Spawningpool\n\n20) TwoShort: Discover Y1 Yolonda B3 Borbor\n\n21) clockwise: Build B3 Clockwise\n\n22) TwoShort: Sacrifice G1 Twoshort\nBuild Y2 Borbor\n\n23) clockwise: Discover Y3 Spawningpool G2 Ultralisk\n\tclockwise: So, I&#39;m guessing you&#39;re Robert over on the icehouse list.  Does that mean I could win the zpips if I win this game, or would that only apply to a game where you hadn&#39;t intentionally crippled yourself at the start?  :)\n\tTwoShort: Yes I am, but sorry, you&#39;ll have to start a new game if you want the ZPIPs.  I think &quot;pursued a dubious experimental strategy&quot; sounds better than &quot;intentionally crippled yourself&quot;, but yeah... :)\n\tclockwise: Only reasonable I suppose.\n\n24) TwoShort: Trade Y2 R2 Borbor\n\n25) clockwise: Trade B2 R2 Spawningpool\n\n26) TwoShort: Trade Y3 G3 Twoshort\n\n27) clockwise: Move B3 Clockwise Borbor\n\n28) TwoShort: Sacrifice Y1 Borbor\nDiscover R2 Borbor G1 Glenwood\n\n29) clockwise: Build R1 Spawningpool\n\n30) TwoShort: Trade Y1 G1 Bluestar\n\n31) clockwise: Move R1 Spawningpool Ultralisk\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n33) clockwise: Build R1 Ultralisk\n\n34) TwoShort: Sacrifice Y3 Bluestar\nMove G1 Bluestar Spawningpool\nMove G2 Bluestar Spawningpool\nMove G2 Bluestar Spawningpool\nCatastrophe Spawningpool Green\n\n35) clockwise: Build G1 Clockwise\n\n36) TwoShort: Discover G1 Twoshort B2 Bluonia\n\tclockwise: doh!\r\n\n\tclockwise: Well, I guess this game isn&#39;t just about over afterall.\n\n37) clockwise: Build R1 Ultralisk\n\n38) TwoShort: Sacrifice Y1 Twoshort\nMove R2 Glenwood Ultralisk\nCatastrophe Ultralisk Red\n\tTwoShort: I can&#39;t say I&#39;m thrilled with my chances, but I imagine I can make you work for it :)\n\n39) clockwise: Build Y1 Ultralisk\n\tclockwise: Yeah I do still have a strong advantage; I just have to be careful so that I don&#39;t make some little mistake which lets you turn the tides...  For the tides, they are fickle in homeworlds.\n\n40) TwoShort: Build G1 Twoshort\n\tclockwise: I was wondering if you&#39;d accept that exchange.\n\n41) clockwise: Build B2 Clockwise\n\n42) TwoShort: Build G2 Bluonia\n\tTwoShort: I wasn&#39;t crazy about it, but if I let you blow up my red star, I wasn&#39;t going to be able to stop you from taking out the blue one in short order.\n\n43) clockwise: Trade B2 R2 Clockwise\n\n44) TwoShort: Trade G2 Y2 Bluonia\n\n45) clockwise: Trade G3 Y3 Clockwise\n\n46) TwoShort: Trade Y2 R2 Bluonia\n\n47) clockwise: Sacrifice Y1 Ultralisk\nMove B3 Borbor Bluonia\n\tclockwise: You&#39;d have been better off trading the g1.\n\tTwoShort: And you&#39;d have been better off not saying anything... I might not have seen it :) The wasted turn isn&#39;t what I needed though.\r\n\n\n\tclockwise: I probably would have kept quiet, except that I believe it was already to late.\n\tTwoShort: Ahh... so it is.  Great game.  Whenever you&#39;re ready for a rematch, let me know!\n\nHomeworlds Online (SDG# 6915)\nStarted: 2007.3.9, Ended: 2007.4.28\nParticipants: Personman (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y3 B1 G3\n\t_SYSTEM_: Welcome to round 6 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\n\tJesse: Have a good game.\n\n2) Personman: Homeworld Y2 B1 G3\n\tPersonman: Ganbatte.\n\n3) Jesse: Build G1 Jesse\n\n4) Personman: Build G1 Personman\n\n5) Jesse: Trade G1 B1 Jesse\n\n6) Personman: Trade G1 Y1 Personman\n\n7) Jesse: Build B2 Jesse\n\n8) Personman: Build Y1 Personman\n\tPersonman: \n\n9) Jesse: Discover B2 Jesse G2 Wens\n\n10) Personman: Discover Y1 Personman G3 G3a\n\n11) Jesse: Build B2 Wens\n\n12) Personman: Move Y1 G3a Wens\n\n13) Jesse: Trade B2 R2 Wens\n\n14) Personman: Move Y1 Wens Jesse\n\n15) Jesse: Sacrifice R2 Wens\nAttack Y1 Jesse\nPass\n\n16) Personman: Build G1 Personman\n\n17) Jesse: Build B2 Wens\n\n18) Personman: Build G1 Personman\n\n19) Jesse: Trade B2 Y2 Wens\n\n20) Personman: Discover G1 Personman B3 B3a\n\n21) Jesse: Build B2 Wens\n\n22) Personman: Build G1 B3a\n\n23) Jesse: Build G2 Jesse\n\n24) Personman: Trade G1 Y1 B3a\n\n25) Jesse: Discover B2 Wens G3 Scrim\n\n26) Personman: Sacrifice G3 Personman\nBuild G1 B3a\nBuild G2 Personman\nBuild G3 Personman\n\n27) Jesse: Sacrifice G3 Jesse\nBuild B2 Wens\nBuild B3 Scrim\nBuild G3 Jesse\n\n28) Personman: Sacrifice G3 Personman\nBuild Y2 Personman\nBuild Y3 B3a\nBuild G3 Personman\n\n29) Jesse: Trade B3 R3 Scrim\n\n30) Personman: Sacrifice Y2 Personman\nDiscover Y1 B3a R2 Temp\nMove Y1 Temp Jesse\n\n31) Jesse: Sacrifice Y1 Jesse\nMove R3 Scrim Personman\n\n\nHomeworlds Online (SDG# 6916)\nStarted: 2007.3.9, Ended: 2007.4.15\nParticipants: Lexicon (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\t_SYSTEM_: Welcome to round 6 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\n\n2) Lexicon: Homeworld Y1 B3 G3\n\n3) jeep: Build G1 Jeep\n\tjeep: b g1 jeep\n\tjeep: *laugh*  I suck.. I shouldn&#39;t be making moves right now I guess.  Still pretty out of it.  Had the flu all week.\n\n4) Lexicon: Build G1 Lexicon\n\tLexicon: I have at least half a dozen chat messages saved in my Notebook. :)\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Lexicon: Build G1 Lexicon\n\n7) jeep: Build Y2 Jeep\n\n8) Lexicon: Discover G1 Lexicon G2 Alanine\n\n9) jeep: Discover Y1 Jeep G3 Thumb\n\n10) Lexicon: Trade G1 R1 Lexicon\n\n11) jeep: Build Y2 Jeep\n\n12) Lexicon: Build G1 Lexicon\n\n13) jeep: Build G1 Jeep\n\n14) Lexicon: Discover G1 Lexicon B2 Candle\n\n15) jeep: Discover Y2 Jeep B3 Wind\n\n16) Lexicon: Build G2 Lexicon\n\n17) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G3 Jeep\nBuild Y2 Thumb\n\n18) Lexicon: Trade G1 B1 Candle\n\n19) jeep: Sacrifice G3 Jeep\nBuild Y3 Jeep\nBuild Y3 Wind\nBuild Y3 Wind\n\n20) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Alanine\nBuild G3 Lexicon\nBuild B1 Candle\n\n21) jeep: Build G3 Jeep\n\n22) Lexicon: Sacrifice B1 Candle\nTrade G1 B1 Alanine\n\n23) jeep: Trade G2 B2 Jeep\n\n24) Lexicon: Discover G2 Lexicon R2 Lysine\n\n25) jeep: Move G1 Jeep Wind\n\n26) Lexicon: Build G1 Lexicon\n\n27) jeep: Build G2 Wind\n\n28) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild R1 Lexicon\nBuild R1 Lexicon\n\n29) jeep: Trade G2 R2 Wind\n\n30) Lexicon: Move R1 Lexicon Alanine\n\n31) jeep: Sacrifice G3 Jeep\nBuild G2 Wind\nBuild G3 Wind\nBuild R2 Wind\n\n32) Lexicon: Sacrifice G3 Lexicon\nBuild B1 Candle\nBuild B3 Alanine\nBuild G3 Lexicon\n\n33) jeep: Build R3 Wind\n\n34) Lexicon: Build R3 Alanine\n\tLexicon: I feel a hurtin&#39; comin&#39; on.\n\n35) jeep: Move R2 Wind Candle\n\n36) Lexicon: Move R1 Lexicon Lysine\n\tjeep: Yeah, I think so.  I&#39;m just paranoid that I&#39;m going to give up what looks like a locked up game.\n\n37) jeep: Sacrifice G2 Wind\nBuild G2 Wind\nBuild R3 Candle\n\n38) Lexicon: Pass\n\n39) jeep: Move G2 Wind Candle\n\tLexicon: I honestly would have resigned like ten moves ago (whenever you hoarded the yellows), but tournament etiquette suggests I shouldn&#39;t I suppose and hey, maybe you&#39;ll screw up. :)\n\tjeep: I won&#39;t be offended if you resign.  But yeah, I might screw up...\n\n\tLexicon: meh.  I doubt this is much fun for either of us.  I have been trounced.  Good game! :)\n\tjeep: Yeah, not really, but I think I had it in hand.  I think I could have won it faster, but I was paranoid I&#39;d screw up.\n\tLexicon: Better safe than sorry for the tournament.  :)\n\nHomeworlds Online (SDG# 6917)\nStarted: 2007.3.9, Ended: 2007.3.20\nParticipants: Uglyfoot (S), bigby (N)\nWinner: bigby\n\n1) bigby: Homeworld B1 G2 Y3\n\t_SYSTEM_: Welcome to round 6 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\n3) bigby: Build Y1 Bigby\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) bigby: Trade Y1 G1 Bigby\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) bigby: Build G1 Bigby\n\n8) Uglyfoot: Discover Y1 Uglyfoot B2 Leo\n\n9) bigby: Build Y1 Bigby\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) bigby: Build Y2 Bigby\n\n12) Uglyfoot: Move G1 Uglyfoot Leo\n\n13) bigby: Discover Y2 Bigby R3 Fallback\n\n14) Uglyfoot: Build G2 Uglyfoot\n\n15) bigby: Move G1 Bigby Fallback\n\n16) Uglyfoot: Build Y2 Leo\n\n17) bigby: Discover G1 Fallback B2 Roget\n\n18) Uglyfoot: Discover Y2 Leo G3 Geo\n\n19) bigby: Build G2 Roget\n\n20) Uglyfoot: Build G3 Leo\n\n21) bigby: Sacrifice Y2 Fallback\nMove G1 Roget Uglyfoot\nMove G2 Roget Uglyfoot\nCatastrophe Uglyfoot G\n\tbigby: By the skin of my teeth.  Thanks for the game!\n\tUglyfoot: Nicely played.  \n\n\nHomeworlds Online (SDG# 6918)\nStarted: 2007.3.9, Ended: 2007.4.28\nParticipants: Aaron (S), ldd23 (N)\nWinner: Aaron\n\n1) ldd23: Homeworld B3 Y1 G3\n\t_SYSTEM_: Welcome to round 6 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\n\n2) Aaron: Homeworld B2 Y1 G3\n\tAaron: You live!  Welcome back!  I hope all is well.\n\n\tAaron: Sorry, ldd.  I sure hope all is well!\n\nHomeworlds Online (SDG# 6919)\nStarted: 2007.3.9, Ended: 2007.4.13\nParticipants: Cerulean (S), Subhan64 (N)\nWinner: Cerulean\n\n1) Subhan64: Homeworld B1 Y3 G3\n\t_SYSTEM_: Welcome to round 6 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\n\n2) Cerulean: Homeworld G2 B1 Y3\n\tSubhan64: good luck!\r\n\n\n3) Subhan64: Build G1 Subhan64\n\n4) Cerulean: Build Y1 Cerulean\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Cerulean: Trade Y1 G1 Cerulean\n\n7) Subhan64: Build G1 Subhan64\n\n8) Cerulean: Build Y1 Cerulean\n\n9) Subhan64: Discover G1 Subhan64 G2 Omicronpersei8\n\n10) Cerulean: Discover Y1 Cerulean G3 Jithrii\n\n11) Subhan64: Build G1 Subhan64\n\n12) Cerulean: Build Y1 Cerulean\n\n13) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Omicronpersei8\nBuild G3 Subhan64\nBuild G3 Subhan64\n\n14) Cerulean: Move G1 Cerulean Jithrii\n\n15) Subhan64: Trade G3 R3 Subhan64\n\n16) Cerulean: Build Y2 Jithrii\n\n17) Subhan64: Trade G1 B1 Subhan64\n\n18) Cerulean: Build Y2 Cerulean\n\n19) Subhan64: Sacrifice B1 Subhan64\nTrade G2 Y2 Omicronpersei8\n\n20) Cerulean: Trade Y2 R2 Cerulean\n\n21) Subhan64: Move R3 Subhan64 Omicronpersei8\n\n22) Cerulean: Discover Y1 Jithrii B2 Betou\n\n23) Subhan64: Sacrifice Y2 Omicronpersei8\nMove R3 Omicronpersei8 Jithrii\nMove R3 Jithrii Cerulean\n\n24) Cerulean: Attack R3N Cerulean\n\n25) Subhan64: Trade Y1 R1 Subhan64\n\n26) Cerulean: Trade R2 G2 Cerulean\n\tCerulean: uh, thanks!\n\tSubhan64: D&#39;oh!  Misread the rules I guess, was thinking you couldn&#39;t capture it as it was bigger than your red ship :-(\n\n27) Subhan64: Build R1 Subhan64\n\n28) Cerulean: Move Y1 Cerulean Jithrii\n\n29) Subhan64: Trade R1 Y1 Subhan64\n\n30) Cerulean: Build Y2 Cerulean\n\n31) Subhan64: Build Y2 Subhan64\n\n32) Cerulean: Move Y1 Betou Subhan64\nCatastrophe Subhan64 Y\n\n\tSubhan64: Ouch.  At this point I think I should just resign,rather than drag this on &amp; on\n\tSubhan64: gg!\n\nHomeworlds Online (SDG# 6920)\nStarted: 2007.3.9, Ended: 2007.4.19\nParticipants: Hedge_o_Matic (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld B1 Y3 G3\n\t_SYSTEM_: Welcome to round 6 of &quot;SDG Triathlon 2006&quot;!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!\n\tLaurie_Menke: Have a good game, Hedge!\n\n2) Hedge_o_Matic: Homeworld Y3 B1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tHedge_o_Matic: Thanks!  Sorry for that delay!\n\tLaurie_Menke: No problem.\n\n4) Hedge_o_Matic: Build G1 Hedge_o_matic\n\n5) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n6) Hedge_o_Matic: Build G1 Hedge_o_matic\n\n7) Laurie_Menke: Build B2 Laurie_menke\n\n8) Hedge_o_Matic: Trade G1 Y1 Hedge_o_matic\n\n9) Laurie_Menke: Discover B1 Laurie_menke Y2 Luella\n\n10) Hedge_o_Matic: Discover G1 Hedge_o_matic R2 Penrose\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) Hedge_o_Matic: Build G1 Penrose\n\n13) Laurie_Menke: Move G1 Laurie_menke Luella\n\n14) Hedge_o_Matic: Build G2 Hedge_o_matic\n\n15) Laurie_Menke: Move G1 Luella Hedge_o_matic\n\n16) Hedge_o_Matic: Trade G2 R2 Hedge_o_matic\n\tHedge_o_Matic: Alert!  Alert!  Bug-eyed monsters have invaded!\n\tLaurie_Menke: Hey now!  Who you calling bug-eyed?!?  ;o)\n\n17) Laurie_Menke: Move G1 Hedge_o_matic Luella\n\n18) Hedge_o_Matic: Move R2 Hedge_o_matic Luella\n\n19) Laurie_Menke: Move G1 Luella Hedge_o_matic\n\tHedge_o_Matic: Ha!  My tracking device worked!\n\tLaurie_Menke: For now...we&#39;re just orbiting the planet.  ;o)\n\n20) Hedge_o_Matic: Discover Y1 Hedge_o_matic G2 Phi\n\n21) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Hedge_o_matic\nBuild G2 Hedge_o_matic\nBuild G3 Hedge_o_matic\nCatastrophe Hedge_o_matic Green\n\tLaurie_Menke: Surprise!  ;o)  Thanks for the fun, Hedge_o_Matic!  :o)\n\n\nHomeworlds Online (SDG# 6882)\nStarted: 2007.3.11, Ended: 2007.3.11\nParticipants: TwoShort (S), colodo (N)\nWinner: TwoShort\n\n1) colodo: Pass\n\tTwoShort: Howdy.\n\n\nHomeworlds Online (SDG# 6815)\nStarted: 2007.3.11, Ended: 2007.3.22\nParticipants: Uglyfoot (S), MikeYarrum (N)\nWinner: Uglyfoot\n\n1) MikeYarrum: Homeworld G2 Y1 B3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n6) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) Uglyfoot: Build Y2 Uglyfoot\n\n9) MikeYarrum: Trade Y2 G2 Mikeyarrum\n\n10) Uglyfoot: Discover Y2 Uglyfoot B2 Thestrip\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) Uglyfoot: Build G1 Uglyfoot\n\n13) MikeYarrum: Discover Y2 Mikeyarrum B3 Zone\n\n14) Uglyfoot: Move G1 Uglyfoot Thestrip\n\n15) MikeYarrum: Move G2 Mikeyarrum Zone\n\n16) Uglyfoot: Build G1 Thestrip\n\n17) MikeYarrum: Build Y2 Zone\n\n18) Uglyfoot: Build G2 Uglyfoot\n\n19) MikeYarrum: Trade Y2 R2 Zone\n\n20) Uglyfoot: Trade G2 R2 Uglyfoot\n\n21) MikeYarrum: Build R1 Zone\n\n22) Uglyfoot: Build G2 Uglyfoot\n\n23) MikeYarrum: Move R1 Zone Thestrip\n\n24) Uglyfoot: Move G1 Thestrip Zone\n\n25) MikeYarrum: Attack G1 Zone\n\n26) Uglyfoot: Build G3 Thestrip\n\n27) MikeYarrum: Attack G1 Thestrip\n\n28) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack R1 Thestrip\nAttack G1 Thestrip\n\n29) MikeYarrum: Sacrifice Y2 Zone\nMove G1 Zone Thestrip\nMove G2 Zone Thestrip\nCatastrophe Thestrip Green\n\n30) Uglyfoot: Build Y2 Uglyfoot\n\n31) MikeYarrum: Trade B3 G3 Mikeyarrum\n\n32) Uglyfoot: Move G2 Uglyfoot Thestrip\n\n33) MikeYarrum: Move G3 Mikeyarrum Zone\n\n34) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove Y2 Thestrip Zone\nMove Y2 Zone Mikeyarrum\n\n35) MikeYarrum: Sacrifice Y1 Mikeyarrum\nMove R2 Zone Mikeyarrum\n\n36) Uglyfoot: Sacrifice R1 Thestrip\nAttack R2 Mikeyarrum\n\n\nHomeworlds Online (SDG# 6774)\nStarted: 2007.3.11, Ended: 2007.3.24\nParticipants: MikeYarrum (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld Y1 B2 G3\n\tdsheldon: Woah, I don&#39;t even remember placing this challenge.  Sorry for the slow response, I was out of town all weekend and yesterday.\n\n2) MikeYarrum: Homeworld Y1 B3 G3\n\tMikeYarrum: No problem.\n\n3) dsheldon: Build G1 Dsheldon\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) dsheldon: Trade G1 Y1 Dsheldon\n\n6) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n7) dsheldon: Build G1 Dsheldon\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) dsheldon: Build Y2 Dsheldon\n\n10) MikeYarrum: Build B1 Mikeyarrum\n\n11) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n12) MikeYarrum: Discover B1 Mikeyarrum G2 Eugene\n\n13) dsheldon: Move Y2 Dsheldon Jerome\n\n14) MikeYarrum: Build B1 Mikeyarrum\n\n15) dsheldon: Build Y2 Jerome\n\n16) MikeYarrum: Build B2 Eugene\n\n17) dsheldon: Build G1 Dsheldon\n\n18) MikeYarrum: Trade B2 Y2 Eugene\n\n19) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Jerome\nBuild G2 Dsheldon\nBuild G3 Dsheldon\n\n20) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild Y3 Eugene\nBuild B2 Eugene\n\n21) dsheldon: Trade G3 R3 Dsheldon\n\n22) MikeYarrum: Trade Y3 R3 Eugene\n\n23) dsheldon: Discover Y2 Jerome R2 Phobos\n\n24) MikeYarrum: Move R3 Eugene Jerome\n\n25) dsheldon: Sacrifice Y2 Jerome\nMove G1 Jerome Eugene\nMove G2 Jerome Eugene\n\n26) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n27) dsheldon: Build G3 Dsheldon\n\n28) MikeYarrum: Trade B2 R2 Eugene\n\n29) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Eugene\nBuild Y2 Dsheldon\nBuild Y3 Phobos\nCatastrophe Eugene G\n\n30) MikeYarrum: Trade B1 G1 Mikeyarrum\n\n31) dsheldon: Trade Y2 B2 Dsheldon\n\n32) MikeYarrum: Build G2 Mikeyarrum\n\n33) dsheldon: Sacrifice G2 Dsheldon\nBuild Y2 Phobos\nBuild G2 Dsheldon\n\n34) MikeYarrum: Discover G1 Mikeyarrum B2 Apollo\n\n35) dsheldon: Sacrifice B2 Dsheldon\nTrade Y2 B2 Phobos\nTrade Y2 G2 Phobos\n\n36) MikeYarrum: Build G3 Apollo\n\n37) dsheldon: Build G3 Phobos\n\n38) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n39) dsheldon: Trade G3 B3 Phobos\n\n40) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R3 Jerome Phobos\nMove R3 Mikeyarrum Phobos\n\n41) dsheldon: Sacrifice Y3 Phobos\nMove B2 Phobos Mikeyarrum\nMove B3 Phobos Mikeyarrum\nMove G2 Phobos Mikeyarrum\nCatastrophe Mikeyarrum B\n\n42) MikeYarrum: Build G2 Mikeyarrum\n\n43) dsheldon: Build G3 Mikeyarrum\nCatastrophe Mikeyarrum G\n\n\tdsheldon: Any time is fine.  I wouldn&#39;t force you to continue if you felt you had no chance, but I would also gladly play through with you just for the experience.  In any event, it will be moot in about thirty seconds.\n\tdsheldon: I was actually quite worried until you over extended yourself into Phobos right near the end.\n\nHomeworlds Online (SDG# 6956)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.12, Ended: 2007.3.26\nParticipants: Werebear (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Werebear: Homeworld G2 Y1 B3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tWerebear: Greetings!\n\n4) Werebear: Build B1 Werebear\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Werebear: Discover B1 Werebear G3 Harvest\n\n7) TwoShort: Build G1 Twoshort\n\n8) Werebear: Build B1 Harvest\n\n9) TwoShort: Build Y1 Twoshort\n\n10) Werebear: Build B1 Werebear\n\n11) TwoShort: Discover Y1 Twoshort B3 Borbor\n\n12) Werebear: Build B2 Werebear\n\n13) TwoShort: Build Y2 Twoshort\n\tTwoShort: Dangit, the blue freeze-out is supposed to be my trademark tactic.\n\n14) Werebear: Build B2 Harvest\n\n15) TwoShort: Discover Y1 Twoshort G3 Grogar\n\tWerebear: Hrm... Well, I&#39;ve had a bit of practice at it...\n\tTwoShort: Clearly :)\n\n16) Werebear: Trade B2 Y2 Harvest\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Borbor\nBuild Y3 Twoshort\n\n18) Werebear: Discover B2 Werebear G3 Charity\n\n19) TwoShort: Move Y1 Grogar Werebear\n\n20) Werebear: Build Y3 Harvest\n\n21) TwoShort: Sacrifice Y2 Twoshort\nMove Y2 Grogar Werebear\nMove Y1 Borbor Werebear\nCatastrophe Werebear Yellow\n\n22) Werebear: Trade B3 G3 Werebear\n\n23) TwoShort: Build G1 Twoshort\n\n24) Werebear: Sacrifice G3 Werebear\nBuild B2 Charity\nBuild B3 Harvest\nBuild B3 Werebear\n\n25) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 6972)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.12, Ended: 2007.4.15\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld B1 Y2 G3\n\tjeep: ZPIP challenge?  I suspect that that challenge could  gain you a handful more rating points.  ;)\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: Well, the idea was to get me more games :) \n\n3) jeep: Build G1 Jeep\n\tjeep: I like that start, if I was you.  Hmm...\n\n4) TwoShort: Build B1 Twoshort\n\n5) jeep: Trade G3 B3 Jeep\n\tTwoShort: I&#39;m rather fond of it, because it&#39;s different.  I&#39;ve been doing it lately when my opponent starts with a b1 star, and gone back and forth about it&#39;s true worthiness.  I debated this time, since I&#39;m intending to avoid wacky experiments and just play my best game for the ZPIP challenge.  But my current theory is that it really is a good idea, so here we go...\n\n6) TwoShort: Trade B1 Y1 Twoshort\n\n7) jeep: Build G1 Jeep\n\n8) TwoShort: Build Y1 Twoshort\n\n9) jeep: Discover G1 Jeep Y3 Brickroad\n\n10) TwoShort: Build Y1 Twoshort\n\n11) jeep: Build B1 Jeep\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) jeep: Trade B3 Y3 Jeep\n\n14) TwoShort: Build Y2 Grogar\n\n15) jeep: Build B2 Jeep\n\tjeep: Gah, how did I get myself here?\n\n16) TwoShort: Build Y2 Twoshort\n\n17) jeep: Trade B2 R2 Jeep\n\n18) TwoShort: Build Y3 Grogar\n\n19) jeep: Build B2 Jeep\n\n20) TwoShort: Trade Y2 R2 Twoshort\n\n21) jeep: Build G1 Jeep\n\n22) TwoShort: Build Y2 Twoshort\n\n23) jeep: Build G2 Brickroad\n\n24) TwoShort: Discover Y2 Grogar B3 Bluzilla\n\n25) jeep: Discover B1 Jeep G3 Builder\n\n26) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Bluzilla\nMove Y1 Bluzilla Jeep\nMove Y2 Bluzilla Jeep\nCatastrophe Jeep Yellow\n\n\tjeep: Thanks for the game.  I got myself in a fix early... I liked your opening.\n\nHomeworlds Online (SDG# 6962)\nVariants: &quot;Unrated&quot;\nStarted: 2007.3.12, Ended: 2007.3.15\nParticipants: Cinnibar (S), MikeYarrum (N)\nWinner: Cinnibar\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) Cinnibar: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Cinnibar: Build G1 Cinnibar\n\n5) MikeYarrum: Discover G1 Mikeyarrum B3 Deep\n\n6) Cinnibar: Trade G1 R1 Cinnibar\n\tMikeYarrum: This should be a quick game - we&#39;re right next door to each other.\n\n7) MikeYarrum: Build G1 Deep\n\tCinnibar: Indeed, See what happens. :)\n\n8) Cinnibar: Move R1 Cinnibar Deep\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) Cinnibar: Build G2 Cinnibar\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) Cinnibar: Attack G1 Deep\n\n13) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n14) Cinnibar: Build R1 Deep\n\n15) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n16) Cinnibar: Trade G2 Y2 Cinnibar\n\n17) MikeYarrum: Discover Y1 Mikeyarrum G3 Mean\n\n18) Cinnibar: Build G1 Cinnibar\n\n19) MikeYarrum: Sacrifice G1 Deep\nBuild Y1 Mean\n\n20) Cinnibar: Move Y2 Cinnibar Mean\n\n21) MikeYarrum: Build G1 Mikeyarrum\n\n22) Cinnibar: Build G2 Deep\n\n23) MikeYarrum: Move Y1 Mean Cinnibar\n\tMikeYarrum: Would you mind if I resigned? You&#39;ve had me on the defensive for awhile, and I don&#39;t think I can recover.\n\n24) Cinnibar: Sacrifice Y2 Mean\nMove G1 Deep Mikeyarrum\nMove G2 Deep Mikeyarrum\nCatastrophe Mikeyarrum G\n\tCinnibar: No problem, Mike.  Thanks for the game!\n\n\nHomeworlds Online (SDG# 6977)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.13, Ended: 2007.4.5\nParticipants: Lexicon (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tLexicon: I&#39;m guessing this is just a ploy to get you more Homeworlds games. :)\n\n2) Lexicon: Homeworld R1 B3 G3\n\tTwoShort: Uh oh, he&#39;s on to me...\n\n3) TwoShort: Build G1 Twoshort\n\n4) Lexicon: Build G1 Lexicon\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Lexicon: Trade G1 R1 Lexicon\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Lexicon: Build R2 Lexicon\n\n9) TwoShort: Build Y1 Twoshort\n\n10) Lexicon: Trade R2 Y2 Lexicon\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) Lexicon: Build Y2 Lexicon\n\n13) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n14) Lexicon: Build R2 Lexicon\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Twoshort\nBuild Y3 Twoshort\n\n16) Lexicon: Discover Y2 Lexicon G2 Pyori\n\n17) TwoShort: Discover Y1 Twoshort Y3 Canary\n\n18) Lexicon: Move R1 Lexicon Pyori\n\n19) TwoShort: Trade Y2 R2 Bluonia\n\n20) Lexicon: Build Y2 Pyori\n\n21) TwoShort: Discover R2 Bluonia G2 Glenda\n\n22) Lexicon: Discover Y2 Pyori B3 Pombe\n\n23) TwoShort: Move Y3 Twoshort Pombe\n\n24) Lexicon: Move Y2 Pyori Bluonia\n\n25) TwoShort: Trade Y3 R3 Pombe\n\n26) Lexicon: Build Y3 Lexicon\n\n27) TwoShort: Attack Y2S Pombe\n\n28) Lexicon: Sacrifice Y2 Lexicon\nMove R2 Lexicon Pyori\nMove R2 Pyori Bluonia\n\n29) TwoShort: Discover Y1 Bluonia G2 Gorgon\n\n30) Lexicon: Sacrifice G3 Lexicon\nBuild R2 Pyori\nBuild R3 Bluonia\nBuild Y2 Bluonia\n\n31) TwoShort: Build R3 Glenda\n\n32) Lexicon: Sacrifice Y2 Bluonia\nMove R1 Pyori Bluonia\nMove R1 Bluonia Twoshort\n\n33) TwoShort: Build Y2 Gorgon\n\n34) Lexicon: Move R2 Bluonia Twoshort\n\n35) TwoShort: Discover Y1 Canary B2 Blaze\n\n36) Lexicon: Trade Y3 G3 Lexicon\n\n37) TwoShort: Build Y3 Grogar\n\n38) Lexicon: Build G1 Lexicon\n\n39) TwoShort: Build Y3 Grogar\n\n40) Lexicon: Move R3 Bluonia Gorgon\n\n41) TwoShort: Sacrifice Y2 Gorgon\nDiscover Y1 Gorgon G1 Lupus\nDiscover Y3 Grogar Y2 Yonderboy\n\n42) Lexicon: Move Y2 Bluonia Gorgon\n\n43) TwoShort: Attack R2S Twoshort\n\n44) Lexicon: Move R3 Gorgon Lupus\n\n45) TwoShort: Move Y1 Lupus Pombe\n\tLexicon: this was a fairly interesting game for a while, but it&#39;s looking grim now.\n\n46) Lexicon: Sacrifice Y2 Gorgon\nMove R2 Pyori Pombe\nMove R2 Pombe Twoshort\nCatastrophe Twoshort Red\n\n47) TwoShort: Build Y2 Grogar\n\tTwoShort: Yeah, I was pretty worried a little while back; but at this point you are looking at a slight disadvantage in material. :)\n\n48) Lexicon: Trade G1 B1 Lexicon\n\tLexicon: at least I have the satisfaction of taking out half your system.  of course, I can&#39;t move anymore.......\n\n49) TwoShort: Trade Y2 B2 Pombe\n\n50) Lexicon: Build R1 Lupus\n\n51) TwoShort: Move B2 Pombe Glenda\n\n52) Lexicon: Sacrifice B1 Lexicon\nTrade R1 B1 Lupus\n\n53) TwoShort: Trade R3 G3 Pombe\n\n54) Lexicon: Build G1 Lexicon\n\n55) TwoShort: Sacrifice G3 Pombe\nBuild R1 Glenda\nBuild B1 Glenda\nBuild B1 Glenda\n\n56) Lexicon: Build B3 Lupus\n\n57) TwoShort: Sacrifice Y3 Grogar\nMove B1 Glenda Lexicon\nMove B1 Glenda Lexicon\nMove B2 Glenda Lexicon\nCatastrophe Lexicon Blue\n\n58) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Lexicon\nBuild G2 Lexicon\nBuild G2 Lexicon\n\tLexicon: Looks like you&#39;ve got this pretty well sorted out now. :)\n\tTwoShort: Yeah, once I got you entirely locked out of yellow, there wasn&#39;t much chance of my letting you make a comeback :)\n\n59) TwoShort: Pass\nCatastrophe Lexicon Green\n\tLexicon: Funny thing is, jeep locked me out of yellow the next day in another game.  I don&#39;t think I&#39;ll ever forget this lesson. :)\n\n\nHomeworlds Online (SDG# 6980)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.13, Ended: 2007.3.28\nParticipants: Cochise (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Cochise: Homeworld B1 G2 Y3\n\tCochise: This is my first time trying to play this, so please bear with me as I fuddle moves. :)\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy\n\n4) Cochise: Build Y1 Cochise\n\n5) TwoShort: Build G1 Twoshort\n\tCochise: Hey there. This looks like a fun game. I only have one TreeHouse set so far, but wanted to try the game out to get a better grasp on the rules. Nothing like a few games of actually playing to help solidify some learning.\n\tTwoShort: Well, I certainly think it&#39;s a fun game, but it does have a bit of a learning curve.  I don&#39;t know if it was intentional, but one thing to note is that by choosing both the same size stars as me, you&#39;ve put us in a &quot;small universe&quot;, with our Homeworlds only 2 moves from each other.  Not necessarily a bad idea, but it does make the game more quick and brutal.\n\n6) Cochise: Build Y1 Cochise\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\tCochise: Hmm, now I&#39;m confused.  I thought that travel between stars had to be of different sizes, so by choosing the same size as you have I was making the trip longer. Did I read or understand that rule wrong?\n\tTwoShort: We can each move from our homeworlds only to 3 point stars, and from there to the other homeworld.  If you had chosen a 1 and a 3, we would still not be ajacent thanks to the 1s, and I for example, would have to go to a 3 then a 2 then to your world.  \n\n8) Cochise: Trade Y1 G1 Cochise\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: You should undo that.  With 4 of the same color in one system, I can call a catastrophe and remove them all. \n\tCochise: Oops!  Many thanks on that \n\n10) Cochise: Move G1 Cochise Yolonda\n\n11) TwoShort: Build G1 Twoshort\n\n12) Cochise: Build G2 Yolonda\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\nCatastrophe Yolonda Green\n\n14) Cochise: Build Y1 Cochise\n\tTwoShort: well, this is too fun to resist...\n\n15) TwoShort: Discover G3 Twoshort B3 Bluonia\n\n16) Cochise: Trade Y1 G1 Cochise\n\n17) TwoShort: Trade G3 R3 Bluonia\n\n18) Cochise: Move G1 Cochise Bluonia\n\n19) TwoShort: Sacrifice Y1 Twoshort\nMove R3 Bluonia Cochise\n\n20) Cochise: Trade Y3 R3 Cochise\n\n21) TwoShort: Attack R3S Cochise\n\n22) Cochise: Build G1 Bluonia\n\n23) TwoShort: Attack Y1S Cochise\n\n\nHomeworlds Online (SDG# 6995)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.13, Ended: 2007.3.16\nParticipants: TwoShort (S), ts52 (N)\nWinner: TwoShort\n\n1) ts52: Homeworld B1 G2 Y3\n\tts52: I&#39;m sure I don&#39;t have a shot in heck at the ZPIPs, but I&#39;d love to get back into playing Homeworlds.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) ts52: Build Y1 Ts52\n\tTwoShort: Well, I&#39;m glad to have lured you back in!  I hadn&#39;t actually played in a while, and when I came back, couldn&#39;t find many opponents; Hence the challenge...\n\tts52: Seems like a good way to get opponents.\n\n4) TwoShort: Build B1 Twoshort\n\n5) ts52: Discover Y1 Ts52 B3 Blueberry\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) ts52: Build Y1 Ts52\n\n8) TwoShort: Build B2 Twoshort\n\n9) ts52: Trade Y1 G1 Blueberry\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) ts52: Build Y1 Ts52\n\n12) TwoShort: Build B2 Twoshort\n\n13) ts52: Move Y1 Ts52 Blueberry\n\n14) TwoShort: Discover B2 Twoshort B2 Blutacular\n\n15) ts52: Discover Y1 Ts52 G3 Oscar\n\n16) TwoShort: Build B3 Grogar\n\n17) ts52: Build G1 Blueberry\n\tts52: Wow, how did I not notice the blues go so quickly...\n\n18) TwoShort: Build B3 Twoshort\n\tTwoShort: They were gone when I set up my homeworld :)  Or at least, that guaranteed I could get the last b1 before you got a chance at it.\n\n19) ts52: Move G1 Blueberry Ts52\n\n20) TwoShort: Trade B3 R3 Grogar\n\tts52: Which just goes to show, there&#39;s still a lot I need to learn about this game.\n\tTwoShort: Well, it&#39;s only recently I&#39;ve gotten this startegy to the point where I think starting with a small blue star as first player is inherently a bad idea.\n\n21) ts52: Trade Y3 B3 Ts52\n\tts52: Ok then, time to try something different.\n\n22) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Grogar Blueberry\nMove R3 Blueberry Ts52\nPass\n\tTwoShort: The Gun Rule: When the other guy draws a gun, draw your gun.  \r\nSorry. :)\n\n23) ts52: Trade G1 R1 Ts52\n\tts52: No problem. That&#39;s what I get for trying something different. Thanks for the game.\n\n24) TwoShort: Attack B3N Ts52\n\n25) ts52: Build R1 Ts52\n\tts52: So, is it better to resign, or play it out?\r\nIt&#39;s only one more turn, I guess. Thanks again for the game.\n\n26) TwoShort: Sacrifice R3 Ts52\nAttack R1N Ts52\nAttack R1N Ts52\nPass\n\tTwoShort: Thanks for the game :)\n\n\nHomeworlds Online (SDG# 7017)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.14, Ended: 2007.6.6\nParticipants: TwoShort (S), Keith (N)\nWinner: TwoShort\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: When I last met you I was but the learner. Now I am ...?\r\n\r\nHello TwoShort.  Don&#39;t count this game as part of your ZPIP challenge.  I had already decided not to enter that fray because, while it would be a nice trophy, others are more likely to get to play a face to face game with the pocket set.   \n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: If you don&#39;t want to count it, that&#39;s no problem.  I&#39;ve been enjoying my ZPIPs even thought I can count the in-person opponents I&#39;ve had on my thumbs.  It&#39;s that much less space to clear on my notoriously messy desk when I want to set up a tricky position.\n\n3) Keith: Build G1 Keith\n\tKeith: Good point about using the ZPIP to set up tricky problems.  I use a virtual piece set in Illustrator for the same purpose.\n\n4) TwoShort: Build B1 Twoshort\n\n5) Keith: Build G1 Keith\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Keith: Discover G1 Keith Y3 Amazons\n\tKeith: I am interested in seeing how your Homeworld startng setup works out.  I had actually typed in the command window for a y1 b2 g3 start when I remembered your chat in your game with jeep and changed it so I had a b1.\n\n8) TwoShort: Build B2 Twoshort\n\n9) Keith: Build G1 Amazons\n\n10) TwoShort: Discover B1 Twoshort B2 Blitz\n\n11) Keith: Build G2 Keith\n\n12) TwoShort: Build B2 Twoshort\n\n13) Keith: Discover G1 Amazons G2 Fanorona\n\tKeith: I am going to continue on my risky course.  I was interested in seeing how your blue ploy went because I had two games (one against Zoltar) where going for blue worked out in my favor.  Tried it in a third game against a relatively new player and it all fell apart.\r\n\r\nAt this point I find your blue efforts quite threatening.  I am going to continue on my course.  Can&#39;t tell if it will make for an interesting game or a very short one in your favor.\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) Keith: Build G3 Amazons\n\n16) TwoShort: Build B3 Grogar\n\n17) Keith: Trade G3 B3 Keith\n\n18) TwoShort: Trade B3 G3 Grogar\n\n19) Keith: Trade G2 R2 Keith\n\n20) TwoShort: Trade B2 R2 Twoshort\n\n21) Keith: Build G2 Amazons\n\n22) TwoShort: Sacrifice G3 Grogar\nBuild B2 Blitz\nBuild B3 Grogar\nBuild B3 Grogar\n\n23) Keith: Build G3 Keith\n\tKeith: Sigh.  I should have gone with move g3 Amazons Grogar.  If you attacked it I send in another green and destroy the system.  Otherwise I could have attacked ships.  Grabbing that g2 with the idea of not having to lose a g3 just put your blue strategy in high gear.\n\n24) TwoShort: Trade B3 Y3 Grogar\n\n25) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R1 Keith\nBuild R1 Keith\n\n26) TwoShort: Trade B3 R3 Grogar\n\n27) Keith: Trade R2 Y2 Keith\n\n28) TwoShort: Build Y1 Grogar\n\n29) Keith: Sacrifice Y2 Keith\nMove G3 Amazons Grogar\nMove G2 Amazons Grogar\n\n30) TwoShort: Sacrifice Y3 Grogar\nMove R3 Grogar Amazons\nMove B2 Grogar Twoshort\nMove R2 Twoshort Fanorona\n\tTwoShort: Well that looks like trouble...\n\n31) Keith: Sacrifice G2 Grogar\nBuild G2 Fanorona\nBuild B3 Keith\n\n32) TwoShort: Sacrifice Y1 Grogar\nDiscover B1 Blitz Y3 Yoyodyne\n\n33) Keith: Move B3 Keith Yoyodyne\n\n34) TwoShort: Build B3 Twoshort\n\n35) Keith: Sacrifice R1 Keith\nAttack R2 Fanorona\n\n36) TwoShort: Attack G1N Amazons\n\n37) Keith: Sacrifice B3 Keith\nTrade G2 Y2 Fanorona\nTrade G1 Y1 Fanorona\nTrade G1 Y1 Keith\n\n38) TwoShort: Move B3 Twoshort Fanorona\n\n39) Keith: Move Y2 Fanorona Twoshort\n\n40) TwoShort: Sacrifice R3 Amazons\nAttack Y2N Twoshort\nAttack R2N Fanorona\nAttack Y1N Fanorona\n\n41) Keith: Build R1 Keith\n\tKeith: Wow, talk about brain lock.  I never considered your applying your sacrificed R3 to more than one sector.  I think your move will turn out to be the decisive move of the game.\n\n42) TwoShort: Build B3 Fanorona\n\n43) Keith: Sacrifice R1 Keith\nAttack B1 Yoyodyne\n\n44) TwoShort: Move B3 Fanorona Yoyodyne\n\n45) Keith: Build R1 Keith\n\n46) TwoShort: Sacrifice R2 Fanorona\nAttack B3N Yoyodyne\nAttack B1N Yoyodyne\n\n\tKeith: Forgot about the threat to my B3.  I am just not able to give this game the time and energy it deserves.  Welcome to the top rung of the Homeworlds ladder.\n\nHomeworlds Online (SDG# 7027)\nVariants: &quot;Sinister&quot;\nStarted: 2007.3.16, Ended: 2007.4.16\nParticipants: jimpurbrick (S), Cinnibar (N), MikeYarrum (E)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) jimpurbrick: Homeworld B3 G1 Y3\n\tjimpurbrick: homeworld B3 G1 Y3\n\n4) Cinnibar: Build Y1 Cinnibar\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) jimpurbrick: Build Y1 Jimpurbrick\n\n7) Cinnibar: Discover Y1 Cinnibar G1 Vivat\n\n8) MikeYarrum: Discover G1 Mikeyarrum B3 Connie\n\n9) jimpurbrick: Discover Y1 Jimpurbrick G2 Disco\n\n10) Cinnibar: Build Y1 Vivat\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) jimpurbrick: Build Y1 Disco\n\n13) Cinnibar: Build Y2 Cinnibar\n\n14) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Mikeyarrum\nBuild G2 Mikeyarrum\nBuild G2 Connie\n\n15) jimpurbrick: Build Y2 Jimpurbrick\n\n16) Cinnibar: Trade Y3 G3 Cinnibar\n\n17) MikeYarrum: Trade G2 Y2 Connie\n\n18) jimpurbrick: Trade Y3 G3 Jimpurbrick\n\n19) Cinnibar: Build Y3 Cinnibar\n\n20) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n21) jimpurbrick: Build Y3 Jimpurbrick\n\n22) Cinnibar: Trade Y3 R3 Cinnibar\n\n23) MikeYarrum: Move G1 Connie Disco\n\n24) jimpurbrick: Trade Y3 R3 Jimpurbrick\n\n25) Cinnibar: Build Y3 Cinnibar\n\n26) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack Y1S Disco\nAttack Y1S Disco\n\n27) jimpurbrick: Build Y3 Jimpurbrick\n\n28) Cinnibar: Sacrifice Y2 Cinnibar\nMove Y1 Vivat Connie\nMove Y1 Connie Mikeyarrum\n\n29) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n30) jimpurbrick: Trade Y3 R3 Jimpurbrick\n\n31) Cinnibar: Sacrifice G3 Cinnibar\nBuild Y2 Mikeyarrum\nBuild Y3 Mikeyarrum\nBuild Y3 Cinnibar\nCatastrophe Mikeyarrum Y\n\n32) MikeYarrum: Build G2 Mikeyarrum\n\n33) jimpurbrick: Move R3 Jimpurbrick Disco\n\n34) Cinnibar: Trade Y3 R3 Cinnibar\n\n35) MikeYarrum: Sacrifice Y1 Disco\nMove G1 Disco Connie\n\n36) jimpurbrick: Attack Y1E Disco\n\n37) Cinnibar: Build Y1 Cinnibar\n\n38) MikeYarrum: Build G2 Mikeyarrum\n\n39) jimpurbrick: Build R1 Disco\n\n40) Cinnibar: Discover Y1 Vivat G3 Osmosis\n\n41) MikeYarrum: Build G1 Connie\n\n42) jimpurbrick: Build R1 Jimpurbrick\n\n43) Cinnibar: Build Y1 Osmosis\n\n44) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n45) jimpurbrick: Discover R1 Jimpurbrick B2 Funk\n\n46) Cinnibar: Discover Y1 Osmosis G2 Gemini\n\n47) MikeYarrum: Discover G1 Mikeyarrum G3 Yomi\n\n48) jimpurbrick: Build Y2 Disco\n\n49) Cinnibar: Build Y3 Osmosis\n\n50) MikeYarrum: Sacrifice G2 Mikeyarrum\nBuild Y3 Connie\nBuild Y3 Mikeyarrum\n\n51) jimpurbrick: Move Y2 Jimpurbrick Funk\n\n52) Cinnibar: Move Y1 Gemini Mikeyarrum\n\n53) MikeYarrum: Attack Y1N Mikeyarrum\n\n54) jimpurbrick: Trade Y2 G2 Funk\n\n55) Cinnibar: Move Y1 Osmosis Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n56) MikeYarrum: Sacrifice Y2 Connie\nMove Y3 Connie Mikeyarrum\nMove G1 Yomi Mikeyarrum\n\n57) jimpurbrick: Build G2 Funk\n\n58) Cinnibar: Trade Y1 B1 Cinnibar\n\n59) MikeYarrum: Build G2 Mikeyarrum\n\n60) jimpurbrick: Trade G2 Y2 Funk\n\n61) Cinnibar: Sacrifice B1 Cinnibar\nTrade Y3 B3 Osmosis\n\n62) MikeYarrum: Discover G1 Mikeyarrum Y3 Chihiro\n\n63) jimpurbrick: Build R1 Jimpurbrick\n\n64) Cinnibar: Trade R3 G3 Cinnibar\n\n65) MikeYarrum: Build G2 Mikeyarrum\n\n66) jimpurbrick: Trade R1 Y1 Jimpurbrick\n\n67) Cinnibar: Sacrifice G3 Cinnibar\nBuild B1 Osmosis\nBuild B1 Osmosis\nBuild Y1 Cinnibar\n\n68) MikeYarrum: Build G3 Chihiro\n\n69) jimpurbrick: Build R1 Funk\n\n70) Cinnibar: Sacrifice Y3 Cinnibar\nMove B1 Osmosis Mikeyarrum\nMove B1 Osmosis Mikeyarrum\nMove B3 Osmosis Mikeyarrum\nCatastrophe Mikeyarrum B\n\n\nHomeworlds Online (SDG# 7061)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.17, Ended: 2007.3.20\nParticipants: TwoShort (S), timotab (N)\nWinner: TwoShort\n\n1) timotab: Homeworld G1 B2 Y3\n\ttimotab: relative newbie here.  played 3 games on Binary Homeworlds so far, and I got your name from the IceHouse list in the ZPIP discussion.\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) timotab: Build Y1 Timotab\n\n4) TwoShort: Build G1 Twoshort\n\n5) timotab: Discover Y1 Timotab B3 Treehouse\n\tTwoShort: Howdy.  Always nice to have more homeworlds players!\n\n6) TwoShort: Build G1 Twoshort\n\ttimotab: I think I like the game so far.  I really haven&#39;t got a clue, having played only 3 games.  So, analysis after the game welcomed :)\r\n\n\n7) timotab: Build Y1 Timotab\n\ttimotab: oops.  mistake number 1 :)\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) timotab: Build Y2 Timotab\n\n10) TwoShort: Build G1 Twoshort\n\tTwoShort: You&#39;re doing OK so far...  As general strategic advice, the early game is largely about stash management: jockeying for position so that you&#39;ll get to grab more 3 pointers when they become available in some particular color.\n\n11) timotab: Trade Y2 G2 Timotab\n\n12) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n13) timotab: Move G2 Timotab Treehouse\n\n14) TwoShort: Build G2 Twoshort\n\n15) timotab: Build Y2 Treehouse\n\n16) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n17) timotab: Build G2 Treehouse\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n19) timotab: Sacrifice Y2 Treehouse\nMove G2 Treehouse Bluonia\nMove G2 Treehouse Bluonia\nCatastrophe Bluonia Green\n\ttimotab: ahh... nicely done.  I like it.\n\n20) TwoShort: Move G3 Yolonda Treehouse\n\tTwoShort: If I were giving you a proper tutorial, I&#39;d have mentioned a couple basic tactics before we got there, including &quot;the Factory&quot;, wherein a sacrificed g3 leads to growing itself back again.\n\n21) timotab: Trade Y1 G1 Treehouse\n\n22) TwoShort: Trade G3 R3 Treehouse\n\ttimotab: well, tell you what, how about we just play this one, and once you&#39;ve beaten me, we can do a tutorial :)\r\n\n\n23) timotab: Trade Y1 R1 Timotab\n\n24) TwoShort: Attack G1N Treehouse\n\n25) timotab: Build R1 Timotab\n\tTwoShort: Well, I really just mean that I usually throw in a little more discussion, particularly when playing newer players.  I still play to win because I&#39;m not really capable of making anything but the best move I see.  But with the ZPIP challenge I&#39;ve got a few more games going at once than I&#39;m used to :)\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\n\ttimotab: oh, yes, that&#39;s fine, I&#39;m happy with more discussion next game :)\r\n\n\n27) timotab: Build Y1 Timotab\n\tTwoShort: woops...\n\n28) TwoShort: Discover G2 Yolonda Y3 Yoyodyne\n\n29) timotab: Move R1 Timotab Yoyodyne\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yoyodyne\nBuild G3 Treehouse\n\n31) timotab: Build R2 Timotab\n\n32) TwoShort: Trade G3 Y3 Twoshort\n\ttimotab: I can&#39;t see any way to recover.  You&#39;ve monopolised all the greens.  Nicely done.\n\n33) timotab: Move R2 Timotab Yoyodyne\n\n34) TwoShort: Sacrifice R3 Treehouse\nAttack R2 Yoyodyne\nAttack R1 Yoyodyne\nPass\n\tTwoShort: Yeah, I think you&#39;re pretty doomed.  I&#39;ll be happy to play it out if you want to see how long you can fend me off.\n\n\ttimotab: heh.  OK.  I&#39;d done that myself on other people, but didn&#39;t expect you to pass one of your attacks, so thought I was safe for another turn.  I&#39;m very hosed\r\n\n\nHomeworlds Online (SDG# 7073)\nStarted: 2007.3.21, Ended: 2007.3.29\nParticipants: ts52 (S), MikeYarrum (N)\nWinner: ts52\n\n1) MikeYarrum: Homeworld Y2 B3 G3\n\n2) ts52: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tts52: Have a good game!\n\tMikeYarrum: Thanks! You too.\n\n4) ts52: Build Y1 Ts52\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) ts52: Trade Y1 G1 Ts52\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n8) ts52: Build Y1 Ts52\n\n9) MikeYarrum: Discover G1 Mikeyarrum B1 Dot\n\n10) ts52: Trade Y1 B1 Ts52\n\n11) MikeYarrum: Build Y1 Mikeyarrum\n\n12) ts52: Discover B1 Ts52 G3 Kermit\n\n13) MikeYarrum: Build G1 Dot\n\n14) ts52: Build G2 Ts52\n\n15) MikeYarrum: Build G2 Mikeyarrum\n\n16) ts52: Discover G2 Ts52 G3 Oscar\n\n17) MikeYarrum: Trade G1 R1 Dot\n\n18) ts52: Trade G1 R1 Ts52\n\n19) MikeYarrum: Build G1 Dot\n\n20) ts52: Trade B1 G1 Kermit\n\n21) MikeYarrum: Trade G1 Y1 Dot\n\n22) ts52: Build Y2 Ts52\n\n23) MikeYarrum: Build Y2 Dot\n\n24) ts52: Move Y2 Ts52 Kermit\n\n25) MikeYarrum: Move Y2 Dot Oscar\n\n26) ts52: Sacrifice G2 Oscar\nBuild Y3 Ts52\nBuild Y3 Kermit\n\n27) MikeYarrum: Move Y1 Mikeyarrum Dot\n\n28) ts52: Discover Y3 Kermit B1 Gonzo\n\n29) MikeYarrum: Move Y1 Dot Kermit\n\n30) ts52: Trade Y3 R3 Ts52\n\n31) MikeYarrum: Build Y3 Dot\n\n32) ts52: Move R3 Ts52 Oscar\n\n33) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n34) ts52: Attack Y2N Oscar\n\n35) MikeYarrum: Build R1 Dot\n\n36) ts52: Build R2 Ts52\n\n37) MikeYarrum: Build R2 Mikeyarrum\n\n38) ts52: Move R2 Ts52 Kermit\n\n39) MikeYarrum: Build G1 Dot\n\n40) ts52: Move G1 Kermit Gonzo\n\n41) MikeYarrum: Move R1 Dot Oscar\n\n42) ts52: Attack R1N Oscar\n\n43) MikeYarrum: Discover Y3 Dot R3 Piggy\n\n44) ts52: Build R2 Kermit\n\n45) MikeYarrum: Move G1 Dot Piggy\n\n46) ts52: Move R3 Oscar Dot\n\n47) MikeYarrum: Move G1 Dot Piggy\n\n48) ts52: Attack Y1N Dot\n\n49) MikeYarrum: Move G1 Piggy Ts52\n\n50) ts52: Attack G1N Ts52\n\n51) MikeYarrum: Build G2 Piggy\n\n52) ts52: Move G1 Ts52 Oscar\n\n\tMikeYarrum: You&#39;ve got me. How about a new game?\n\tts52: Sure, I&#39;d be happy to start another.\n\nHomeworlds Online (SDG# 7110)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.21, Ended: 2007.3.26\nParticipants: MikeYarrum (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) MikeYarrum: Homeworld B3 G2 Y3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tMikeYarrum: Hey.\n\n4) MikeYarrum: Build Y1 Mikeyarrum\n\n5) TwoShort: Build G1 Twoshort\n\n6) MikeYarrum: Build Y1 Mikeyarrum\n\n7) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n8) MikeYarrum: Discover Y1 Mikeyarrum B1 Bluey\n\n9) TwoShort: Build G1 Twoshort\n\n10) MikeYarrum: Build Y2 Mikeyarrum\n\n11) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n12) MikeYarrum: Move Y1 Mikeyarrum Bluey\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n14) MikeYarrum: Build Y2 Mikeyarrum\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Yellonia\n\n16) MikeYarrum: Move Y1 Bluey Bluonia\n\n17) TwoShort: Trade G3 R3 Bluonia\n\n18) MikeYarrum: Move Y2 Mikeyarrum Bluey\n\n19) TwoShort: Attack Y1S Bluonia\n\n20) MikeYarrum: Trade Y2 R2 Bluey\n\n21) TwoShort: Discover G2 Twoshort Y3 Yonderboy\n\n22) MikeYarrum: Trade Y3 G3 Mikeyarrum\n\n23) TwoShort: Trade G3 Y3 Twoshort\n\n24) MikeYarrum: Move R2 Bluey Yonderboy\n\n25) TwoShort: Sacrifice G3 Yellonia\nBuild Y2 Bluonia\nBuild G3 Twoshort\nBuild G3 Yonderboy\n\n26) MikeYarrum: Attack G2 Yonderboy\n\n27) TwoShort: Sacrifice R3 Bluonia\nAttack R2S Yonderboy\nAttack G2S Yonderboy\nPass\n\n\tMikeYarrum: Well, I fought to the last. Thanks for the game!\n\nHomeworlds Online (SDG# 7130)\nStarted: 2007.3.22, Ended: 2007.3.22\nParticipants: MikeYarrum (S), Moueska (N)\nWinner: MikeYarrum\n\n1) Moueska: Homeworld G2 R3 B3\n\n\n\n2) MikeYarrum: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 7131)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.22, Ended: 2007.3.28\nParticipants: MikeYarrum (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B2 G1 Y3\n\n2) MikeYarrum: Homeworld B3 Y1 G3\n\n3) mneme: Build Y1 Mneme\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) mneme: Discover Y1 Mneme G3 Fir\n\n6) MikeYarrum: Discover G1 Mikeyarrum Y2 Thor\n\n7) mneme: Build Y1 Fir\n\tmneme: We are so not continuing at this pace.  But that&#39;s ok.\n\n8) MikeYarrum: Build G1 Thor\n\n9) mneme: Build Y2 Mneme\n\tMikeYarrum: Heh, that&#39;s okay... as long as I&#39;m playing.\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) mneme: Trade Y2 G2 Mneme\n\n12) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n13) mneme: Discover G2 Mneme B3 Pine\n\n14) MikeYarrum: Build Y2 Mikeyarrum\n\n15) mneme: Build Y3 Mneme\n\n16) MikeYarrum: Discover Y2 Mikeyarrum G2 Loki\n\n17) mneme: Build Y3 Fir\n\n18) MikeYarrum: Move Y2 Loki Fir\nCatastrophe Fir Yellow\n\n19) mneme: Build G2 Pine\n\n20) MikeYarrum: Build G2 Mikeyarrum\n\n21) mneme: Trade G2 Y2 Pine\n\n22) MikeYarrum: Discover G1 Thor Y3 Frigg\n\n23) mneme: Trade Y3 R3 Mneme\n\n24) MikeYarrum: Build G2 Frigg\n\n25) mneme: Build G3 Pine\n\n26) MikeYarrum: Build G3 Thor\n\n27) mneme: Sacrifice Y2 Pine\nMove R3 Mneme Frigg\nMove R3 Frigg Thor\n\n28) MikeYarrum: Move G3 Thor Frigg\n\n29) mneme: Move R3 Thor Mikeyarrum\n\n30) MikeYarrum: Build Y1 Mikeyarrum\n\n31) mneme: Attack G3 Mikeyarrum\n\tMikeYarrum: I&#39;m not quite clear on the rules here - Can you now sacrifice your r3 to attack the ships in my homeworld?\n\tmneme: no -- I&#39;d need to have another ship in your system for that.  but I can keep taking your ships until they&#39;re all gone, and there&#39;s pretty much no way out.  (play it out, to see how it works, I think)\n\n32) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove G1 Frigg Mneme\nMove G2 Frigg Mneme\n\tMikeYarrum: Ouch, that&#39;s right. I was hoping I could at least take out one of your stars before too long.\n\tmneme: unless I&#39;m miscalculating or you do something unexpected, I win next turn -- build, and I cause a catastrophe.  anything else, and I sac the red and take your home system.\n\n33) mneme: Sacrifice R3 Mikeyarrum\nAttack G2 Mikeyarrum\nAttack Y1 Mikeyarrum\nAttack G2 Mneme\n\tmneme: good game!  Again?\n\tMikeYarrum: Definitely.\n\n\nHomeworlds Online (SDG# 7137)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.22, Ended: 2007.4.2\nParticipants: morganfitzp (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld Y1 B2 G3\n\tjbj77: A chance to redeem myself after our last game!  I hope I don&#39;t mess it up.\n\n2) morganfitzp: Homeworld B3 Y2 G3\n\tmorganfitzp: Yup. Welcome back.\n\n3) jbj77: Build G1 Jbj77\n\n4) morganfitzp: Build G1 Morganfitzp\n\n5) jbj77: Trade G1 Y1 Jbj77\n\n6) morganfitzp: Trade G1 Y1 Morganfitzp\n\n7) jbj77: Discover Y1 Jbj77 G3 Alpha\n\n8) morganfitzp: Build Y2 Morganfitzp\n\n9) jbj77: Build Y2 Alpha\n\n10) morganfitzp: Discover Y1 Morganfitzp G1 Ri\n\n11) jbj77: Discover Y1 Alpha G1 Beta\n\n12) morganfitzp: Trade Y2 G2 Morganfitzp\n\n13) jbj77: Build G1 Jbj77\n\n14) morganfitzp: Discover G2 Morganfitzp B1 Cn\n\n15) jbj77: Trade G1 B1 Jbj77\n\n16) morganfitzp: Build G1 Morganfitzp\n\n17) jbj77: Build G2 Jbj77\n\n18) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G2 Cn\nBuild G3 Morganfitzp\nBuild Y2 Ri\n\n19) jbj77: Sacrifice G3 Jbj77\nBuild Y3 Alpha\nBuild Y3 Beta\nBuild G3 Jbj77\n\n20) morganfitzp: Trade G2 R2 Cn\n\n21) jbj77: Sacrifice B1 Jbj77\nTrade Y3 R3 Alpha\n\n22) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G2 Cn\nBuild Y3 Ri\nBuild G3 Morganfitzp\n\n23) jbj77: Build Y3 Alpha\n\n24) morganfitzp: Sacrifice Y2 Ri\nMove G2 Cn Alpha\nMove G2 Cn Alpha\n\tjbj77: I struggled with this one, but in the end I couldn&#39;t overcome my greed.\n\tmorganfitzp: I must say, I am surprised.\n\n25) jbj77: Sacrifice R3 Alpha\nAttack G2 Alpha\nAttack G2 Alpha\nPass\n\n26) morganfitzp: Sacrifice Y3 Ri\nMove G1 Morganfitzp Ri\nMove G1 Ri Alpha\nDiscover R2 Cn B3 Me\nCatastrophe Alpha Green\n\tjbj77: I don&#39;t think that I had much choice here.\n\n27) jbj77: Discover Y1 Beta B3 Gamma\n\tmorganfitzp: Neither did I.\n\n28) morganfitzp: Build G1 Morganfitzp\n\tjbj77: I suspected you were going to do that.\n\n29) jbj77: Build G2 Jbj77\n\n30) morganfitzp: Sacrifice G1 Morganfitzp\nBuild R1 Me\n\n31) jbj77: Trade G2 R2 Jbj77\n\n32) morganfitzp: Trade R1 G1 Me\n\n33) jbj77: Move Y3 Beta Me\n\n34) morganfitzp: Sacrifice G1 Me\nBuild Y2 Ri\n\n35) jbj77: Sacrifice R2 Jbj77\nAttack R2 Me\nPass\n\n36) morganfitzp: Discover Y2 Ri B2 Nh\n\n37) jbj77: Discover Y3 Me G1 Delta\n\n38) morganfitzp: Trade Y2 R2 Nh\n\n39) jbj77: Build Y2 Delta\n\n40) morganfitzp: Build G1 Morganfitzp\n\n41) jbj77: Move Y2 Delta Me\n\n42) morganfitzp: Trade G1 B1 Morganfitzp\n\n43) jbj77: Build G1 Jbj77\n\n44) morganfitzp: Build G2 Morganfitzp\n\n45) jbj77: Move G1 Jbj77 Me\n\n46) morganfitzp: Move B1 Morganfitzp Ri\n\n47) jbj77: Sacrifice G3 Jbj77\nBuild G2 Jbj77\nBuild G3 Jbj77\nBuild G3 Me\n\n48) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G3 Morganfitzp\nBuild B1 Ri\nBuild B1 Ri\n\n49) jbj77: Sacrifice G3 Jbj77\nBuild Y2 Me\nBuild Y3 Gamma\nBuild Y3 Delta\n\n50) morganfitzp: Sacrifice G2 Morganfitzp\nBuild G2 Morganfitzp\nBuild R1 Nh\n\n51) jbj77: Sacrifice Y2 Me\nMove G3 Me Ri\nMove G3 Ri Morganfitzp\n\n52) morganfitzp: Trade G3 R3 Morganfitzp\n\tmorganfitzp: Slow death, or quick death?\n\n53) jbj77: Sacrifice R2 Me\nAttack R3 Morganfitzp\nAttack G2 Morganfitzp\n\tmorganfitzp: Slow death.\n\tjbj77: Quick death.  This makes us one and one, so we&#39;ll have to have another match-up sometime.\n\tmorganfitzp: Ah! Didn&#39;t see it. Nice work, though it felt inevitable from the get-go.\n\tjbj77: That&#39;s OK, because I totally missed the death blow that you dealt me on our first game.\n\n\nHomeworlds Online (SDG# 7072)\nStarted: 2007.3.25, Ended: 2007.3.31\nParticipants: ts52 (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tclockwise: Hello and good luck\n\n3) clockwise: Build G1 Clockwise\n\tts52: thanks. Good luck to you too.\n\n4) ts52: Build G1 Ts52\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) ts52: Discover G1 Ts52 B3 Gonzo\n\n7) clockwise: Build Y1 Clockwise\n\n8) ts52: Build G1 Gonzo\n\n9) clockwise: Build Y2 Clockwise\n\n10) ts52: Trade G1 R1 Gonzo\n\n11) clockwise: Trade Y2 R2 Clockwise\n\n12) ts52: Build G1 Gonzo\n\n13) clockwise: Build Y2 Clockwise\n\n14) ts52: Build G1 Ts52\n\n15) clockwise: Move Y2 Clockwise Gonzo\n\n16) ts52: Build G2 Gonzo\n\n17) clockwise: Sacrifice R2 Clockwise\nAttack G2S Gonzo\nAttack R1S Gonzo\n\n18) ts52: Trade G1 R1 Ts52\n\n19) clockwise: Trade G2 R2 Gonzo\n\n20) ts52: Build R2 Ts52\n\n21) clockwise: Sacrifice R2 Gonzo\nAttack G1S Gonzo\nAttack G1S Gonzo\n\n22) ts52: Trade R2 Y2 Ts52\n\n23) clockwise: Build Y2 Gonzo\n\n24) ts52: Discover Y2 Ts52 G3 Oscar\n\n25) clockwise: Build Y3 Gonzo\n\n26) ts52: Build Y3 Oscar\n\n27) clockwise: Sacrifice Y2 Gonzo\nMove Y1 Clockwise Oscar\nMove Y1 Clockwise Oscar\nCatastrophe Oscar Yellow\n\n28) ts52: Build R2 Ts52\n\n29) clockwise: Build G1 Clockwise\n\n30) ts52: Discover R2 Ts52 B3 Grover\n\n31) clockwise: Build G2 Gonzo\n\n32) ts52: Trade G3 R3 Ts52\n\n33) clockwise: Build R2 Gonzo\n\n34) ts52: Discover R1 Ts52 Y3 Bigbird\n\n35) clockwise: Build R2 Gonzo\n\n36) ts52: Trade R3 Y3 Ts52\n\tclockwise: Heh, I don&#39;t think I&#39;ve ever overdeveloped a system so much.  :)\n\tts52: It is pretty impressive.\n\n37) clockwise: Move Y3 Gonzo Ts52\n\tts52: I&#39;m pretty sure this is just about over, but I have to try...\n\n38) ts52: Sacrifice R1 Bigbird\nAttack Y3N Ts52\n\tclockwise: The correct choice was blue, but I think that would have just given a few more turns.\n\tts52: Ah right, as you didn&#39;t have any blue ships. Ah well. Thanks for playing.\n\n39) clockwise: Move Y2 Gonzo Ts52\nCatastrophe Ts52 Yellow\n\tclockwise: Thanks for the game\n\n\nHomeworlds Online (SDG# 7202)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.28, Ended: 2007.4.4\nParticipants: TwoShort (S), MikeYarrum (N)\nWinner: TwoShort\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) TwoShort: Build B1 Twoshort\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) MikeYarrum: Discover G1 Mikeyarrum Y3 Chiyo\n\n8) TwoShort: Build B2 Twoshort\n\n9) MikeYarrum: Build G1 Chiyo\n\n10) TwoShort: Discover B1 Twoshort B2 Blitz\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) TwoShort: Build B2 Twoshort\n\n13) MikeYarrum: Discover G2 Mikeyarrum B3 Osa\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Chiyo\nBuild G3 Osa\nBuild G3 Mikeyarrum\n\n16) TwoShort: Build B3 Grogar\n\n17) MikeYarrum: Trade G3 R3 Osa\n\n18) TwoShort: Build B3 Twoshort\n\n19) MikeYarrum: Discover G1 Chiyo Y2 Tomo\n\n20) TwoShort: Trade B3 G3 Grogar\n\n21) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild R1 Osa\nBuild R1 Osa\nBuild G3 Mikeyarrum\n\n22) TwoShort: Build B3 Grogar\n\n23) MikeYarrum: Trade R1 Y1 Osa\n\n24) TwoShort: Trade B3 R3 Grogar\n\n25) MikeYarrum: Move R1 Osa Blitz\n\n26) TwoShort: Sacrifice G3 Grogar\nBuild B3 Blitz\nBuild R1 Grogar\nBuild Y1 Twoshort\n\n27) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild G3 Tomo\nBuild R1 Osa\n\n28) TwoShort: Sacrifice R1 Grogar\nAttack R1N Blitz\n\n29) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n30) TwoShort: Build R1 Grogar\n\n31) MikeYarrum: Sacrifice G3 Tomo\nBuild Y2 Osa\nBuild G1 Tomo\nBuild G3 Tomo\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove R1 Grogar Osa\nMove R1 Blitz Osa\nMove R3 Grogar Chiyo\nCatastrophe Osa Red\n\n33) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n34) TwoShort: Attack G2N Chiyo\n\n35) MikeYarrum: Sacrifice Y2 Osa\nMove G1 Tomo Twoshort\nMove G1 Tomo Twoshort\n\tMikeYarrum: According to the SDG wiki, you are the second-best Homeworlds player in the world. I knew you were good, but I can&#39;t help but feel a little intimidated now.\r\n\r\nHopefully I&#39;ll learn some good strategies! =D\n\tTwoShort: Hmm... I don&#39;t really agree with that; there&#39;s at least two people I&#39;d expect to lose to next time we played.  In any case, you&#39;ve been playing an excellent game, I&#39;ve really been feeling the pressure.  \r\n  In fact, you&#39;ve only made one move I&#39;d say was a mistake; unfortunately, it&#39;s the one you just made :)\n\n36) TwoShort: Build G3 Chiyo\n\n37) MikeYarrum: Move G3 Tomo Chiyo\nCatastrophe Chiyo Green\n\n38) TwoShort: Sacrifice R3 Chiyo\nAttack G1N Twoshort\nAttack G1N Twoshort\nPass\n\n39) MikeYarrum: Build Y2 Osa\n\n40) TwoShort: Trade G1 R1 Twoshort\n\n41) MikeYarrum: Discover Y1 Osa G2 Yomi\n\n42) TwoShort: Trade B3 Y3 Blitz\n\n43) MikeYarrum: Sacrifice G2 Osa\nBuild Y2 Yomi\nBuild Y3 Osa\n\n44) TwoShort: Build B3 Grogar\n\n45) MikeYarrum: Discover Y1 Yomi G3 Nyamo\n\n46) TwoShort: Build Y3 Twoshort\n\n47) MikeYarrum: Trade Y3 G3 Osa\n\n48) TwoShort: Sacrifice Y1 Twoshort\nMove B3 Grogar Nyamo\n\n49) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n50) TwoShort: Trade B3 R3 Twoshort\n\n51) MikeYarrum: Build G1 Osa\n\n52) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Nyamo Mikeyarrum\nMove Y3 Blitz Nyamo\nMove Y3 Nyamo Mikeyarrum\n\n53) MikeYarrum: Sacrifice Y2 Osa\nMove G3 Osa Mikeyarrum\nMove G1 Osa Mikeyarrum\n\n54) TwoShort: Sacrifice R3 Twoshort\nAttack R3N Mikeyarrum\nAttack G3N Mikeyarrum\nAttack G1N Mikeyarrum\n\n55) MikeYarrum: Move Y1 Nyamo Mikeyarrum\n\n56) TwoShort: Sacrifice R3 Mikeyarrum\nAttack R1N Mikeyarrum\nAttack Y1N Mikeyarrum\nPass\n\n\tTwoShort: I&#39;m a big fan of trying to put off the end as long as possible, though in this case the end is here.  But anyway, thanks for an excellent game!  You really made me work for it.\n\tMikeYarrum: No problem. I usually resign when I&#39;m doomed, but I figured you&#39;d want me to fight it out. =D\n\nHomeworlds Online (SDG# 7226)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.28, Ended: 2007.4.20\nParticipants: MikeYarrum (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld B3 R2 G3\n\n2) MikeYarrum: Homeworld Y3 B1 G3\n\n3) Lexicon: Build G1 Lexicon\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Lexicon: Trade G1 Y1 Lexicon\n\n6) MikeYarrum: Discover G1 Mikeyarrum Y2 Kagu\n\n7) Lexicon: Build G1 Lexicon\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Lexicon: Build G2 Lexicon\n\n10) MikeYarrum: Build G2 Kagu\n\n11) Lexicon: Discover G2 Lexicon Y1 Nature\n\n12) MikeYarrum: Discover G1 Kagu B1 Tomo\n\n13) Lexicon: Sacrifice G3 Lexicon\nBuild G2 Lexicon\nBuild G3 Nature\nBuild G3 Lexicon\n\n14) MikeYarrum: Trade G1 R1 Mikeyarrum\n\tMikeYarrum: I just pulled that same trick in another homeworlds game... I&#39;m learning, but still a n00b.\n\n15) Lexicon: Discover G2 Nature B2 Science\n\tLexicon: Factories are Fun!  So long as you&#39;re the one who has one, anyway. :)\n\n16) MikeYarrum: Build R1 Mikeyarrum\n\n17) Lexicon: Sacrifice G2 Lexicon\nBuild G1 Science\nBuild G2 Science\n\n18) MikeYarrum: Move R1 Mikeyarrum Science\n\n19) Lexicon: Trade G2 R2 Science\n\n20) MikeYarrum: Attack G1 Science\n\n21) Lexicon: Attack R1 Science\n\n22) MikeYarrum: Trade G1 R1 Science\n\n23) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Nature\nBuild G2 Science\nBuild G3 Lexicon\n\n24) MikeYarrum: Build R2 Mikeyarrum\n\n25) Lexicon: Trade R2 Y2 Science\n\n26) MikeYarrum: Attack R1 Science\n\n27) Lexicon: Sacrifice G3 Nature\nBuild G3 Nature\nBuild Y1 Science\nBuild Y2 Science\n\n28) MikeYarrum: Attack Y1 Science\n\n29) Lexicon: Sacrifice Y2 Science\nMove G2 Science Mikeyarrum\nMove G2 Science Mikeyarrum\n\n30) MikeYarrum: Trade G3 B3 Mikeyarrum\n\n31) Lexicon: Trade G2 B2 Mikeyarrum\n\n32) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack G2 Mikeyarrum\nAttack B2 Mikeyarrum\n\n33) Lexicon: Discover G3 Nature Y2 Cell\n\n34) MikeYarrum: Move B2 Mikeyarrum Science\n\tLexicon: somehow I planned that attack all wrong. :)\n\n35) Lexicon: Sacrifice G3 Lexicon\nBuild G2 Cell\nBuild G3 Lexicon\nBuild G3 Nature\n\tMikeYarrum: At first, I thought you had something sneaky planned. You almost had me.\n\n36) MikeYarrum: Build R2 Mikeyarrum\n\tLexicon: Yeah, I think I was over confident or something.  I&#39;ll have to reevaluate the situation a bit before proceeding. :)\n\n37) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild Y3 Lexicon\nBuild Y3 Science\n\n38) MikeYarrum: Attack Y2 Science\n\n39) Lexicon: Trade G1 B1 Lexicon\n\n40) MikeYarrum: Move B2 Science Tomo\n\n41) Lexicon: Sacrifice B1 Lexicon\nTrade G3 B3 Cell\n\n42) MikeYarrum: Trade B2 R2 Tomo\n\n43) Lexicon: Sacrifice G3 Nature\nBuild G1 Lexicon\nBuild G3 Cell\nBuild B1 Cell\n\n44) MikeYarrum: Build G3 Kagu\n\n45) Lexicon: Move B1 Cell Mikeyarrum\n\n46) MikeYarrum: Move B3 Mikeyarrum Science\n\n47) Lexicon: Sacrifice G1 Nature\nBuild Y1 Science\nCatastrophe Science Yellow\n\n48) MikeYarrum: Trade B3 Y3 Science\n\n49) Lexicon: Sacrifice G2 Cell\nBuild B2 Mikeyarrum\nBuild B2 Mikeyarrum\nCatastrophe Mikeyarrum Blue\n\n50) MikeYarrum: Sacrifice G3 Kagu\nBuild G1 Kagu\nBuild G2 Tomo\nBuild G3 Mikeyarrum\n\n51) Lexicon: Trade G3 R3 Cell\n\n52) MikeYarrum: Discover R1 Science Y1 Chiyo\n\n53) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild R3 Cell\nBuild Y1 Lexicon\n\n54) MikeYarrum: Trade G2 Y2 Tomo\n\n55) Lexicon: Discover Y1 Lexicon B1 Plos\n\n56) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Kagu\nBuild G3 Tomo\nBuild G3 Mikeyarrum\n\n57) Lexicon: Move R3 Cell Chiyo\n\n58) MikeYarrum: Sacrifice Y3 Science\nMove G1 Kagu Tomo\nMove G1 Tomo Lexicon\nMove G1 Tomo Lexicon\nCatastrophe Lexicon Green\n\n59) Lexicon: Trade B3 G3 Cell\n\n60) MikeYarrum: Build R3 Tomo\n\n61) Lexicon: Build G1 Cell\n\n62) MikeYarrum: Build Y3 Tomo\n\n63) Lexicon: Move G3 Cell Mikeyarrum\n\n64) MikeYarrum: Attack G3 Mikeyarrum\n\n65) Lexicon: Move G1 Cell Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n66) MikeYarrum: Move G3 Tomo Mikeyarrum\n\n67) Lexicon: Trade Y3 G3 Lexicon\n\n68) MikeYarrum: Move R1 Chiyo Lexicon\n\n69) Lexicon: Build Y3 Lexicon\n\n70) MikeYarrum: Sacrifice Y3 Tomo\nMove R2 Tomo Lexicon\nMove R3 Tomo Lexicon\nMove R1 Science Plos\nCatastrophe Lexicon R\n\n71) Lexicon: Sacrifice G3 Lexicon\nBuild Y3 Plos\nBuild R1 Cell\nBuild R2 Chiyo\n\n72) MikeYarrum: Discover G2 Kagu B1 Koneko\n\n73) Lexicon: Sacrifice R1 Cell\nAttack R1 Plos\n\n74) MikeYarrum: Build G1 Koneko\n\tMikeYarrum: Ugh, I was afraid you&#39;d do that.\r\n\r\nAnyway, I tried taking my turn, but Homeworlds won&#39;t let me name my new system, even though it&#39;s a legal name. Last time something like this happened, it cleared up on its own...\n\n75) Lexicon: Move R3 Chiyo Mikeyarrum\n\tMikeYarrum: There, it worked.\n\n76) MikeYarrum: Attack R3 Mikeyarrum\n\n77) Lexicon: Move R2 Chiyo Mikeyarrum\nCatastrophe Mikeyarrum Red\n\n78) MikeYarrum: Trade G2 R2 Koneko\n\n79) Lexicon: Move R3 Cell Tomo\n\n80) MikeYarrum: Build R1 Koneko\n\n81) Lexicon: Attack Y2 Tomo\n\n82) MikeYarrum: Trade R2 Y2 Koneko\n\n83) Lexicon: Sacrifice Y3 Lexicon\nMove Y1 Plos Mikeyarrum\nMove Y3 Plos Mikeyarrum\nMove Y2 Tomo Mikeyarrum\nCatastrophe Mikeyarrum Yellow\n\n\tLexicon: Thanks for the game! :)\n\tMikeYarrum: My pleasure.\n\nHomeworlds Online (SDG# 7227)\nStarted: 2007.3.28, Ended: 2007.4.3\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) mneme: Homeworld G3 Y2 B3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tmneme: Oh, good -- you took banker.  I was going to ask you to do that to help with the experience gap, since it&#39;s a slightly easier position.  You should seek down and read Andy Looney&#39;s strategy guide if you get a chance -- it&#39;s short and good.\n\n4) mneme: Build B1 Mneme\n\tMikeYarrum: It&#39;s my usual opening move. Now that I&#39;ve had time to get a handle on the game, that&#39;s really not a bad idea. Thank you!\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) mneme: Discover B1 Mneme G1 Emerald\n\n7) MikeYarrum: Discover G1 Mikeyarrum Y3 Saka\n\n8) mneme: Build B1 Mneme\n\n9) MikeYarrum: Build G2 Saka\n\n10) mneme: Trade B3 G3 Mneme\n\n11) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Saka\nBuild G2 Mikeyarrum\nBuild G3 Mikeyarrum\n\tmneme: s b3 g3 mneme\n\tmneme: s b3 g3 mneme\n\n12) mneme: Build B2 Mneme\n\n13) MikeYarrum: Discover G2 Saka B2 Yuka\n\n14) mneme: Build B2 Mneme\n\n15) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n16) mneme: Build B3 Emerald\n\n17) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Yuka\nBuild G3 Mikeyarrum\nBuild R1 Mikeyarrum\n\n18) mneme: Discover B2 Mneme Y1 Jacinth\n\n19) MikeYarrum: Move R2 Mikeyarrum Saka\n\n20) mneme: Build B3 Mneme\n\n21) MikeYarrum: Build R1 Mikeyarrum\n\n22) mneme: Trade B3 R3 Emerald\n\n23) MikeYarrum: Trade G2 Y2 Yuka\n\n24) mneme: Build B3 Emerald\n\n25) MikeYarrum: Build G2 Yuka\n\n26) mneme: Trade B3 Y3 Emerald\n\n27) MikeYarrum: Move G2 Yuka Jacinth\n\n28) mneme: Discover B2 Jacinth Y3 Jasper\n\n29) MikeYarrum: Move G2 Yuka Jacinth\n\n30) mneme: Discover G3 Mneme Y1 Tigereye\n\n31) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n32) mneme: Build B3 Emerald\n\n33) MikeYarrum: Move G2 Jacinth Mneme\n\n34) mneme: Trade B3 R3 Mneme\n\n35) MikeYarrum: Build G1 Mneme\n\n36) mneme: Move R3 Emerald Saka\n\n37) MikeYarrum: Move G2 Jacinth Mneme\nCatastrophe Mneme Green\n\n38) mneme: Attack R2 Saka\n\n39) MikeYarrum: Move G2 Saka Yuka\n\tmneme: It&#39;s an interesting matchup -- green factory vs mean blue machine.\n\tMikeYarrum: Definitely. You are an interesting opponent. =D\n\n40) mneme: Sacrifice Y3 Emerald\nMove B3 Emerald Saka\nMove B3 Saka Mikeyarrum\nMove R3 Saka Mikeyarrum\n\n41) MikeYarrum: Build R1 Mikeyarrum\nCatastrophe Mikeyarrum Red\n\tmneme: planning on making a move some time soon?\r\n/me is impatient.  :)\r\n\r\nBTW, trying MC as a 4p game is a good idea -- it&#39;s very different; lighter, and easier, as a multiplayer game than as a duel.\r\n\n\n42) mneme: Sacrifice R2 Saka\nAttack G3 Mikeyarrum\nAttack Y1 Mikeyarrum\n\tMikeYarrum: Sorry about that. Sometimes I wait a bit before I take my turn, &#39;cuz I&#39;m &quot;not in the mood&quot;.\r\n\r\nAnd I&#39;m easily frustrated sometimes, but I kind of calmed down about MC and I&#39;d heard it&#39;s different with 4 players.\n\tmneme: It&#39;s ok -- I was just getting impatient because my brain was spinning circles in planning ahead -- witch is kinda stupid, but there it is.  \n\tmneme: It&#39;s ok -- I was just getting impatient because my brain was spinning circles in planning ahead -- which is kinda stupid, but there it is.  \n\n\tMikeYarrum: Doomsday device?\n\tmneme: doomsday device = the setup for blowing up a player&#39;s homeworld in two moves.  Yours was slower, but the same concept.\r\n\r\nGood game -- again?\n\tMikeYarrum: I&#39;m always up for another game!\n\nHomeworlds Online (SDG# 7220)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.29, Ended: 2007.5.11\nParticipants: jeep (S), unic (N)\nWinner: jeep\n\n1) unic: Homeworld B3 Y2 G3\n\n2) jeep: Homeworld Y1 B2 G3\n\n3) unic: Build G1 Unic\n\n4) jeep: Build G1 Jeep\n\n5) unic: Discover G1 Unic Y1 Zato\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) unic: Build G1 Unic\n\n8) jeep: Build Y2 Jeep\n\n9) unic: Trade G1 R1 Unic\n\n10) jeep: Discover Y1 Jeep G3 Bob\n\n11) unic: Build G1 Unic\n\n12) jeep: Build G1 Jeep\n\n13) unic: Build G2 Unic\n\n14) jeep: Sacrifice G3 Jeep\nBuild Y2 Bob\nBuild Y3 Bob\nBuild Y3 Jeep\n\n\nHomeworlds Online (SDG# 7159)\nStarted: 2007.3.29, Ended: 2007.4.13\nParticipants: MikeYarrum (S), ts52 (N), morganfitzp (E)\nWinner: morganfitzp\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) morganfitzp: Homeworld R2 B3 G3\n\tts52: Have a great game everyone!\n\tMikeYarrum: I like playing this with three players, so thanks for joining.\n\tmorganfitzp: Aye!\n\n3) MikeYarrum: Homeworld Y1 B3 G3\n\n4) ts52: Build G1 Ts52\n\n5) morganfitzp: Build G1 Morganfitzp\n\n6) MikeYarrum: Build G1 Mikeyarrum\n\n7) ts52: Discover G1 Ts52 B3 Gonzo\n\n8) morganfitzp: Trade G1 Y1 Morganfitzp\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) ts52: Build G1 Gonzo\n\n11) morganfitzp: Build G2 Morganfitzp\n\n12) MikeYarrum: Discover G1 Mikeyarrum Y2 Tomo\n\n13) ts52: Trade G1 Y1 Gonzo\n\n14) morganfitzp: Build Y2 Morganfitzp\n\n15) MikeYarrum: Build G1 Tomo\n\n16) ts52: Build G2 Ts52\n\n17) morganfitzp: Discover Y1 Morganfitzp B1 Prospero\n\n18) MikeYarrum: Build G2 Mikeyarrum\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Ts52\n\n20) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y2 Morganfitzp\nBuild Y2 Prospero\nBuild G3 Morganfitzp\n\n21) MikeYarrum: Discover G1 Tomo Y3 Kagu\n\n22) ts52: Discover G3 Ts52 Y3 Bigbird\n\n23) morganfitzp: Build Y3 Morganfitzp\n\n24) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n25) ts52: Discover G2 Ts52 G3 Kermit\n\n26) morganfitzp: Discover Y2 Morganfitzp B1 Miranda\n\n27) MikeYarrum: Discover Y3 Mikeyarrum B2 Kao\n\n28) ts52: Discover G2 Gonzo B2 Grover\n\n29) morganfitzp: Trade Y1 B1 Prospero\n\n30) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n31) ts52: Sacrifice G3 Bigbird\nBuild Y3 Gonzo\nBuild G1 Ts52\nBuild G3 Grover\n\n32) morganfitzp: Sacrifice G2 Morganfitzp\nBuild G2 Morganfitzp\nBuild B1 Prospero\n\n33) MikeYarrum: Sacrifice G1 Kagu\nBuild Y3 Kao\n\n34) ts52: Trade G1 R1 Ts52\n\n35) morganfitzp: Trade B1 R1 Prospero\n\n36) MikeYarrum: Trade Y3 R3 Kao\n\n37) ts52: Move Y1 Gonzo Grover\n\n38) morganfitzp: Sacrifice G2 Morganfitzp\nBuild Y3 Prospero\nBuild G1 Morganfitzp\n\n39) MikeYarrum: Sacrifice G1 Tomo\nBuild Y2 Kao\n\n40) ts52: Build G1 Ts52\n\n41) morganfitzp: Move G1 Morganfitzp Prospero\n\n42) MikeYarrum: Move Y3 Kao Kermit\n\n43) ts52: Trade G3 R3 Grover\n\n44) morganfitzp: Build G1 Morganfitzp\n\n45) MikeYarrum: Build G2 Mikeyarrum\n\n46) ts52: Move R3 Grover Mikeyarrum\n\n47) morganfitzp: Sacrifice Y2 Morganfitzp\nDiscover Y2 Miranda G3 Caliban\nDiscover Y2 Prospero B3 Ariel\n\n48) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n49) ts52: Attack R1S Mikeyarrum\n\n50) morganfitzp: Build Y1 Caliban\n\n51) MikeYarrum: Move R3 Kao Mikeyarrum\n\n52) ts52: Attack R3S Mikeyarrum\n\n53) morganfitzp: Sacrifice G3 Morganfitzp\nBuild R1 Prospero\nBuild Y2 Morganfitzp\nBuild G3 Morganfitzp\n\n54) MikeYarrum: Trade G2 R2 Mikeyarrum\nCatastrophe Mikeyarrum Red\n\n55) ts52: Discover Y3 Gonzo B1 Jax\n\tts52: Sorry about the undo. I confused two games I&#39;m in because my browser went back a page unexpectedly. Re-made the same move.\n\tMikeYarrum: No problem. Well, I have a problem, but it&#39;s in-game, not out-of-game. :)\n\n56) morganfitzp: Sacrifice Y3 Morganfitzp\nMove Y2 Ariel Ts52\nMove Y2 Caliban Ts52\nMove Y1 Caliban Ts52\nCatastrophe Ts52 Yellow\n\tmorganfitzp: Your problems are interesting to me, and for every problem there is a solution. Even in Homeworlds two wrongs don&#39;t make a right, but three rights do make a left. And four of any one thing makes....\n\tMikeYarrum: Nice point, Morgan. :)\r\n\r\nI feel a little like I&#39;m playing king maker by not just accepting this attack... I&#39;ll be pretty weakened after it. On the other hand, if I just gave in, it really WOULD be playing king maker.\n\n57) MikeYarrum: Build G2 Mikeyarrum\n\n58) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild Y1 Jax\n\tmorganfitzp: Well, how about I make it easier for you two to access each other&#39;s homeworlds?\n\n59) morganfitzp: Discover B1 Prospero Y3 Boatswain\n\tMikeYarrum: For some reason, I thought we were playing Sinister Homeworlds instead of standard last-man-standing. Kind of explains a few things.\n\n60) MikeYarrum: Build Y1 Kermit\n\n61) ts52: Trade G1 B1 Gonzo\n\n62) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G1 Prospero\nBuild G3 Morganfitzp\nBuild Y2 Prospero\n\n63) MikeYarrum: Trade Y2 R2 Kao\n\tMikeYarrum: As long as we&#39;re being chatty, I appreciate your naming system, morgan. ;)\n\n64) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild R1 Ts52\n\n65) morganfitzp: Sacrifice Y2 Prospero\nMove G1 Prospero Ts52\nMove G1 Prospero Ts52\nCatastrophe Ts52 Green\n\n66) MikeYarrum: Move Y1 Kermit Kao\n\n67) ts52: Sacrifice Y1 Grover\nMove G3 Gonzo Ts52\n\n68) morganfitzp: Trade R1 G1 Prospero\n\n69) MikeYarrum: Trade Y1 R1 Kao\n\n70) ts52: Trade Y1 G1 Jax\n\n71) morganfitzp: Build R2 Prospero\n\n72) MikeYarrum: Sacrifice R1 Kao\nAttack G2N Kermit\n\n73) ts52: Trade R1 Y1 Ts52\n\n74) morganfitzp: Discover R1 Prospero G3 Trinculo\n\tMikeYarrum: The game keeps insisting that there&#39;s no system named &quot;kermit&quot;. Yes, I&#39;m sure I spelled it right.\n\tMikeYarrum: Should I Call an Admin?\n\tMikeYarrum: Thanks. :)\n\tAaron: Could you please post the orderset?  I&#39;ll run an offline test and see what happens.\n\n75) MikeYarrum: Build Y1 Kermit\n\tMikeYarrum: I tried to submit the same order to double-check, but for some reason it&#39;s working now. Thanks a lot for getting to us so quickly!\n\tMikeYarrum: If you were wondering, it was\r\n\r\nsacrifice r1 kao\r\nattack g2n kermit\r\n\r\nI tried a few other orders regarding the same system and checked the spelling before realizing something was wrong.\n\tAaron: how odd =/  I apologize.  If it happens again beep me.  Cheers!\n\n76) ts52: Build G1 Grover\n\n77) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y1 Prospero\nBuild Y2 Morganfitzp\nBuild G3 Morganfitzp\n\n78) MikeYarrum: Move Y3 Kermit Grover\n\n79) ts52: Sacrifice Y2 Grover\nMove G2 Grover Mikeyarrum\nMove G1 Grover Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n80) morganfitzp: Move Y3 Prospero Grover\n\n81) ts52: Build G1 Ts52\n\n82) morganfitzp: Sacrifice R1 Trinculo\nAttack Y3S Grover\n\n83) ts52: Build G2 Jax\n\n84) morganfitzp: Sacrifice G1 Morganfitzp\nBuild B2 Boatswain\n\n85) ts52: Move G1 Jax Gonzo\n\n86) morganfitzp: Trade Y3 B3 Grover\n\n87) ts52: Trade B1 Y1 Gonzo\n\n88) morganfitzp: Sacrifice Y2 Morganfitzp\nMove B1 Boatswain Ts52\nMove B2 Boatswain Ts52\n\n89) ts52: Attack B2E Ts52\n\n90) morganfitzp: Sacrifice G1 Prospero\nBuild B1 Ts52\nCatastrophe Ts52 Blue\n\n\tmorganfitzp: Good game y&#39;all! Thanks for playing!\n\tMikeYarrum: My pleasure!\n\tts52: Thanks again. 3 is much different from 2.\n\nHomeworlds Online (SDG# 7116)\nStarted: 2007.3.29, Ended: 2007.4.13\nParticipants: MikeYarrum (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) MikeYarrum: Homeworld B3 Y2 G3\n\tts52: Have a good game!\n\tMikeYarrum: You too.\n\n3) ts52: Build G1 Ts52\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) ts52: Discover G1 Ts52 G3 Kermit\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) ts52: Build G1 Ts52\n\n8) MikeYarrum: Discover Y1 Mikeyarrum G1 Chi\n\n9) ts52: Build G2 Ts52\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) ts52: Trade G2 Y2 Ts52\n\n12) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n13) ts52: Build G2 Ts52\n\n14) MikeYarrum: Build G2 Mikeyarrum\n\n15) ts52: Discover G1 Ts52 B3 Gonzo\n\n16) MikeYarrum: Build Y1 Mikeyarrum\n\n17) ts52: Move Y2 Ts52 Gonzo\n\n18) MikeYarrum: Build Y3 Chi\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y3 Gonzo\n\n20) MikeYarrum: Discover Y1 Chi Y3 Saka\n\n21) ts52: Discover G2 Gonzo B1 Grover\n\n22) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n23) ts52: Trade G2 R2 Ts52\n\n24) MikeYarrum: Move G2 Mikeyarrum Grover\n\n25) ts52: Build G2 Grover\n\n26) MikeYarrum: Sacrifice G2 Grover\nBuild Y1 Chi\nBuild G2 Mikeyarrum\n\n27) ts52: Move Y2 Gonzo Grover\n\n28) MikeYarrum: Move Y3 Chi Kermit\n\n29) ts52: Build R1 Ts52\n\n30) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack G1 Kermit\n\n31) ts52: Move R1 Ts52 Saka\n\n32) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n33) ts52: Attack Y1S Saka\n\n34) MikeYarrum: Move Y3 Kermit Grover\n\n35) ts52: Sacrifice Y2 Grover\nMove G2 Grover Mikeyarrum\nMove G2 Grover Mikeyarrum\n\n36) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n37) ts52: Sacrifice G2 Mikeyarrum\nBuild Y2 Gonzo\nBuild G2 Gonzo\n\n38) MikeYarrum: Attack G2 Mikeyarrum\n\n39) ts52: Build R1 Ts52\n\n40) MikeYarrum: Build G2 Mikeyarrum\n\n41) ts52: Build G3 Ts52\n\n42) MikeYarrum: Move Y3 Grover Saka\n\n43) ts52: Discover R1 Saka B1 Berry\n\n44) MikeYarrum: Move R2 Mikeyarrum Chi\n\n45) ts52: Move R2 Ts52 Kermit\n\n46) MikeYarrum: Sacrifice G1 Kermit\nBuild R1 Chi\n\n47) ts52: Move Y2 Gonzo Berry\n\n48) MikeYarrum: Discover Y3 Saka G1 Osaka\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Berry\n\n50) MikeYarrum: Build R3 Mikeyarrum\n\n51) ts52: Move G3 Ts52 Saka\n\n52) MikeYarrum: Move R3 Mikeyarrum Osaka\n\n53) ts52: Discover Y1 Saka B1 Fozzie\n\n54) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R2 Chi Kermit\nMove R1 Chi Kermit\nCatastrophe Kermit Red\n\n55) ts52: Build G3 Saka\n\n56) MikeYarrum: Discover R3 Osaka B3 Yukari\n\n57) ts52: Move G3 Saka Fozzie\n\n58) MikeYarrum: Build Y2 Chi\n\n59) ts52: Move G1 Gonzo Berry\n\n60) MikeYarrum: Build R1 Mikeyarrum\n\n61) ts52: Sacrifice G3 Saka\nBuild G3 Gonzo\nBuild Y3 Fozzie\nBuild R2 Ts52\n\n62) MikeYarrum: Move R1 Mikeyarrum Osaka\n\n63) ts52: Sacrifice Y2 Berry\nMove G1 Berry Mikeyarrum\nMove G3 Fozzie Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n64) MikeYarrum: Move Y3 Osaka Mikeyarrum\n\n65) ts52: Move Y3 Fozzie Mikeyarrum\n\n66) MikeYarrum: Trade Y3 G3 Mikeyarrum\n\n67) ts52: Sacrifice R2 Ts52\nAttack R3S Mikeyarrum\nAttack G3S Mikeyarrum\n\n\tts52: Thanks for the game!\n\tMikeYarrum: My pleasure.\n\nHomeworlds Online (SDG# 7246)\nStarted: 2007.3.29, Ended: 2007.5.1\nParticipants: ts52 (S), nycavri (N)\nWinner: ts52\n\n1) nycavri: Homeworld Y1 B2 G3\n\tnycavri: Looking to find another opponent to beat me at Homeworlds.....  TaGG.\n\n2) ts52: Homeworld Y1 B3 G3\n\tts52: I&#39;m happy to try...\n\n3) nycavri: Build G1 Nycavri\n\n4) ts52: Build G1 Ts52\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) ts52: Build G1 Ts52\n\n7) nycavri: Build Y2 Nycavri\n\n8) ts52: Discover G1 Ts52 B2 Berry\n\n9) nycavri: Discover Y2 Nycavri B3 Deacon\n\n10) ts52: Build G1 Berry\n\n11) nycavri: Sacrifice G3 Nycavri\nBuild Y2 Deacon\nBuild Y2 Deacon\nBuild Y3 Nycavri\n\n12) ts52: Build G2 Berry\n\n13) nycavri: Trade Y2 G2 Deacon\n\n14) ts52: Trade G2 Y2 Berry\n\n15) nycavri: Sacrifice Y2 Deacon\nMove G2 Deacon Berry\nMove G2 Berry Ts52\n\n16) ts52: Trade G3 R3 Ts52\n\n17) nycavri: Trade Y1 R1 Nycavri\n\n18) ts52: Attack G2N Ts52\n\n19) nycavri: Trade Y2 G2 Deacon\n\n20) ts52: Discover G1 Berry B3 Grover\n\n21) nycavri: Build G2 Deacon\n\n22) ts52: Build G3 Grover\n\n23) nycavri: Trade G2 Y2 Deacon\n\n24) ts52: Trade G1 Y1 Berry\n\n25) nycavri: Build Y2 Deacon\n\n26) ts52: Move Y2 Berry Grover\n\n27) nycavri: Trade Y3 R3 Nycavri\n\n28) ts52: Sacrifice G2 Ts52\nBuild Y3 Berry\nBuild Y3 Grover\n\n29) nycavri: Trade Y2 B2 Deacon\n\n30) ts52: Sacrifice Y2 Grover\nMove G3 Grover Nycavri\nMove Y3 Grover Nycavri\n\n31) nycavri: Attack G3 Nycavri\n\n32) ts52: Sacrifice R3 Ts52\nAttack G3N Nycavri\nAttack R3N Nycavri\nAttack R1N Nycavri\n\tts52: Thanks for the game!\n\tnycavri: Well played.\n\n\nHomeworlds Online (SDG# 7230)\nVariants: &quot;Hard time&quot;\nStarted: 2007.3.30, Ended: 2007.4.6\nParticipants: mneme (S), eugman (N)\nWinner: mneme\n\n1) eugman: Homeworld B3 Y1 G3\n\n2) mneme: Homeworld G3 Y2 B3\n\n\nHomeworlds Online (SDG# 7228)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.1, Ended: 2007.4.4\nParticipants: TwoShort (S), colodo (N)\nWinner: TwoShort\n\n\nHomeworlds Online (SDG# 7273)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.1, Ended: 2007.4.21\nParticipants: TwoShort (S), nycavri (N)\nWinner: TwoShort\n\n1) nycavri: Homeworld Y1 B2 G3\n\tnycavri: Hi, there.  I&#39;ll pass on the ZPIPs challenge in exchange for a &quot;friendly&quot; game.  I&#39;ve had my butt handed to me in 6 straight, although I look to have my first ladder match sewn up and feel comfortable early in my other current game.  I would appreciate any words of wisdom as we proceed, thanks.  TaGG.\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) nycavri: Build G1 Nycavri\n\n4) TwoShort: Build G1 Twoshort\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: So I guess I should be coming up with some words of wisdom here...  \n\n7) nycavri: Build Y2 Nycavri\n\tTwoShort: Much of the game, particularly the early game, is about jockeying for access to the bigger peices in the stash.  But I&#39;m thinking you know that and that you took the y1 despite having access to yellow just to force me to let you have the 2 pointer.\n\n8) TwoShort: Build Y2 Twoshort\n\tnycavri: That, and stalling you from getting the first g2.  Now I need to make my Homeworld a little less catastrophe-ready..... \n\n9) nycavri: Trade Y2 R2 Nycavri\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) nycavri: Discover Y1 Nycavri G3 Deacon\n\n12) TwoShort: Build Y2 Grogar\n\n13) nycavri: Build G1 Nycavri\n\n14) TwoShort: Discover Y2 Grogar B3 Bluonia\n\n15) nycavri: Build Y2 Deacon\n\tTwoShort: So I&#39;m setting a bit of a bad example here; I&#39;d generally recommend obtaining a sacrificeable red ship immediately when your opponent does.  But I frequently flaunt that rule when I think I can get away with it, and I think you took red a bit early;  it doesn&#39;t really help you much until you can threaten to move in with stuff it would be worth sacrificing you r2 for.\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\nBuild Y3 Bluonia\n\tnycavri: I have heard that before, and understand the wisdom, but see why you didn&#39;t need to respond yet.  How about now?\n\tTwoShort: Well, I was going to mention that the reason I didn&#39;t want to respond was to chase the really big prize of the early game (or even in general): 3 pointers, particularly yellow ones.  So, sorry, not yet... :)\n\n17) nycavri: Move Y2 Deacon Grogar\n\n18) TwoShort: Trade Y2 R2 Bluonia\n\n19) nycavri: Build Y2 Deacon\n\n20) TwoShort: Trade Y3 G3 Twoshort\n\n21) nycavri: Discover Y2 Deacon B2 May\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild R1 Bluonia\nBuild R1 Bluonia\n\n23) nycavri: Build R2 Nycavri\n\n24) TwoShort: Sacrifice Y3 Grogar\nMove Y3 Bluonia Nycavri\nMove R1 Bluonia Nycavri\nMove R1 Bluonia Nycavri\nCatastrophe Nycavri Red\n\tTwoShort: Very well played game to this point, but that last move was a mistake I&#39;m afraid...\n\n25) nycavri: Build G1 Nycavri\n\n26) TwoShort: Sacrifice R2 Bluonia\nAttack G3N Nycavri\nAttack G1N Nycavri\n\tnycavri: I had to build or lose to an r2 attack, right?  Although I guess I could have moved in a Yellow.  Either way, this is all but done..... \n\tnycavri: Building the r2 was clearly a game breaker, but if I recall correctly, it was over if I didn&#39;t get access to Red at home.....  Did I miss something?\n\tTwoShort: Well, you had the first r2 at home, the game breaker was building the second, thus allowing me to blow up your red while keeping one of my own and getting a three into your homeworld.  If you hit the &quot;history&quot; link at the top of the page you can step through stuff... I&#39;m not entirely sure what you should have done instead of building the second red, maybe moved the first out to Bluonia to blow up all our red.\n\n27) nycavri: Build Y3 Grogar\n\n28) TwoShort: Build G1 Nycavri\nCatastrophe Nycavri Green\n\tnycavri: Ooops!  Well played, and thanks for the tips.\n\n\nHomeworlds Online (SDG# 7286)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.2, Ended: 2007.5.6\nParticipants: morganfitzp (S), Kermit (N)\nWinner: morganfitzp\n\n1) Kermit: Homeworld Y3 G1 B3\n\n2) morganfitzp: Homeworld G2 Y1 B3\n\n3) Kermit: Build B1 Kermit\n\tmorganfitzp: Hi Kermit\n\tKermit: hello, prepare to win. I like Homeworlds a lot but I suck (generally) at the binary version, doing much better at multiplayer.\n\n4) morganfitzp: Build B1 Morganfitzp\n\n5) Kermit: Discover B1 Kermit G2 Chronos\n\n6) morganfitzp: Discover B1 Morganfitzp G3 Couve\n\n7) Kermit: Build B1 Chronos\n\n8) morganfitzp: Build B2 Couve\n\n9) Kermit: Trade B1 Y1 Chronos\n\n10) morganfitzp: Trade B2 Y2 Couve\n\n11) Kermit: Build B1 Kermit\n\n12) morganfitzp: Build B2 Couve\n\n13) Kermit: Trade B1 G1 Kermit\n\n14) morganfitzp: Discover B2 Couve Y2 Aboborinha\n\n15) Kermit: Trade B1 R1 Chronos\n\n16) morganfitzp: Build B1 Couve\n\n17) Kermit: Discover Y1 Chronos B3 Phobos\n\n18) morganfitzp: Trade B1 R1 Couve\n\n19) Kermit: Build B1 Kermit\n\n20) morganfitzp: Build B1 Couve\n\n\nHomeworlds Online (SDG# 7290)\nStarted: 2007.4.3, Ended: 2007.6.12\nParticipants: jeep (S), jbj77 (N)\nWinner: jeep\n\n1) jbj77: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld B1 G3 B3 *\n\n3) jbj77: Build G1 Jbj77\n\n4) jeep: Build B1 Jeep\n\n5) jbj77: Discover G1 Jbj77 Y3 Alpha\n\n6) jeep: Trade B3 Y3 Jeep\n\n7) jbj77: Build G1 Jbj77\n\n8) jeep: Build B2 Jeep\n\n9) jbj77: Build G1 Jbj77\n\n10) jeep: Trade B2 G2 Jeep\n\n11) jbj77: Trade G1 Y1 Jbj77\n\n12) jeep: Build B2 Jeep\n\n13) jbj77: Build G1 Alpha\n\n14) jeep: Trade B2 R2 Jeep\n\n15) jbj77: Trade G1 R1 Jbj77\n\n16) jeep: Build B2 Jeep\n\n17) jbj77: Build G1 Alpha\n\n18) jeep: Discover B2 Jeep Y2 Wanderer\n\n19) jbj77: Build G2 Jbj77\n\n20) jeep: Build G2 Jeep\n\n21) jbj77: Discover G1 Alpha Y2 Beta\n\n22) jeep: Discover B2 Wanderer G3 Gamma\n\n23) jbj77: Move G1 Beta Jeep\nCatastrophe Jeep Green\n\n24) jeep: Trade B1 G1 Jeep\n\tjeep: I didn&#39;t notice they were connected.  *sigh*\n\n25) jbj77: Trade G2 B2 Jbj77\n\tjbj77: I thought it was a blunder, or else I was walking into a very well concealed trap.\n\n26) jeep: Build G2 Jeep\n\n27) jbj77: Build G2 Jbj77\n\tjeep: I&#39;ve looked and looked and I see nothing good coming.  :(\n\n28) jeep: Build Y1 Jeep\n\n29) jbj77: Discover G1 Alpha Y2 Delta\n\n30) jeep: Move Y1 Jeep Gamma\n\n31) jbj77: Sacrifice G3 Jbj77\nBuild G2 Alpha\nBuild G3 Delta\nBuild G3 Jbj77\n\n32) jeep: Build Y1 Gamma\n\n33) jbj77: Sacrifice B2 Jbj77\nTrade G2 Y2 Alpha\nTrade G3 Y3 Delta\n\n34) jeep: Discover G1 Jeep B3 Stage\n\n\tjeep: Thanks for the game... did you resign or lose on time?\n\nHomeworlds Online (SDG# 7302)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.3, Ended: 2007.4.27\nParticipants: jbj77 (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld B2 R1 G3\n\n2) jbj77: Homeworld B1 Y2 G3\n\n3) clockwise: Build G1 Clockwise\n\n4) jbj77: Build G1 Jbj77\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) jbj77: Trade G1 Y1 Jbj77\n\tjbj77: Oops, I really meant that to be a y3 instead of a y2, oh well.  I never have bought the argument that you should always be distance 3 from your opponent&#39;s homeworld.  In fact, I think I&#39;m glad that I used a y2 instead of a y3.\n\n7) clockwise: Build G1 Clockwise\n\tclockwise: Ah, I was wondering about that.  The last game I played someone did the same thing, though I don&#39;t know if it was intentional or not.  Hopefully I can show you why it&#39;s a bad idea ;)\n\n8) jbj77: Discover Y1 Jbj77 G3 Alpha\n\n9) clockwise: Trade G1 R1 Clockwise\n\tjbj77: In any case I should learn something here.\n\tjbj77: I notice that you are doing quite well with Homeworlds: no losses so far.\n\n10) jbj77: Build G1 Jbj77\n\n11) clockwise: Build R1 Clockwise\n\n12) jbj77: Trade G3 R3 Jbj77\n\tclockwise: I&#39;m going to be out of town for the weekend, so you shouldn&#39;t expect any more moves from me before Monday.\n\n13) clockwise: Move R1 Clockwise Alpha\n\n14) jbj77: Discover Y1 Alpha G2 Beta\n\n15) clockwise: Trade R1 B1 Clockwise\n\n16) jbj77: Build Y1 Beta\n\n17) clockwise: Build Y2 Clockwise\n\n18) jbj77: Build Y2 Beta\n\n19) clockwise: Sacrifice Y2 Clockwise\nDiscover Y1 Clockwise Y3 Flux\nMove Y1 Flux Beta\nCatastrophe Beta Yellow\n\n20) jbj77: Build G1 Jbj77\n\n21) clockwise: Build B1 Clockwise\n\n22) jbj77: Build G1 Jbj77\n\n23) clockwise: Build G2 Clockwise\n\n24) jbj77: Discover G1 Jbj77 B3 Gamma\n\n25) clockwise: Trade G2 Y2 Clockwise\n\n26) jbj77: Trade G1 Y1 Jbj77\n\n27) clockwise: Move B1 Clockwise Alpha\n\n28) jbj77: Build R1 Jbj77\n\n29) clockwise: Build B2 Clockwise\n\n30) jbj77: Move R1 Jbj77 Gamma\n\n31) clockwise: Move B2 Clockwise Gamma\n\n32) jbj77: Build R2 Jbj77\n\n33) clockwise: Sacrifice G3 Clockwise\nBuild B2 Alpha\nBuild R2 Alpha\nBuild B3 Clockwise\n\n34) jbj77: Discover R2 Jbj77 B3 Delta\n\n35) clockwise: Sacrifice R2 Alpha\nAttack R1S Gamma\nAttack G1S Gamma\n\n36) jbj77: Build G1 Jbj77\n\n37) clockwise: Trade B3 G3 Clockwise\n\n38) jbj77: Discover G1 Jbj77 B3 Epsilon\n\n39) clockwise: Build Y1 Clockwise\n\tclockwise: Out of curiosity... do you still feel that the proximity of our homeworlds is not to your disadvantage?  \r\n\r\nOr do you feel the added pressure that it has enabled me to place you under?  If so, do you feel that the advantage it gives in control over the large pieces is adequate compensation?\n\tjbj77: Hmmm...I&#39;ll just say that I&#39;m not yet convinced that it is to my disadvantage.\n\n40) jbj77: Move Y1 Jbj77 Delta\n\tjbj77: I do feel that my efforts are rather futile at this point.  But, I don&#39;t blame it on the proximity of our homeworlds.  I think that I would be toast without the ability to keep these large pieces out of your hands.\n\tclockwise: You are definitely suffering more from my blue monopoly, but I feel that the reason that came about was back when I first assaulted the alpha system with my r1 forcing you to lose tempo retreating.  With the extra tempo I was able to push both blue and red and you were only able to prevent one of the monopolies.\r\n\r\nSimilarly I was able to use the proximity and tempo advantage in overtaking gamma.  Which was mostly an even exchange from my perspective except that it also gave me additional development while taking away what was your only developed system.  Plus even exchanges almost always favor the leader.\n\tclockwise: So, yes, at the moment it is helping you a bit, but on the other hand it&#39;s also part of how we got to this situation to begin with.\n\n41) clockwise: Move Y1 Clockwise Gamma\n\tjbj77: Well yes, I suppose so.  I can see how being closer amplifies the tempo advantage of the first player.  So in that case, why doesn&#39;t the first player choose her/his homeworld markers to be of the same size?  Then the other player can be at most distance 2.\n\n42) jbj77: Build G2 Epsilon\n\n43) clockwise: Sacrifice G3 Clockwise\nBuild Y1 Gamma\nBuild Y2 Gamma\nBuild Y3 Clockwise\n\tclockwise: Good question.  It&#39;s actually something I&#39;ve been wondering about testing, but have not yet done so.  I&#39;m guessing that it starts out as an advantage, but if the game goes on too long you will start suffering from the fact that your opponent has more choices for staging attacks.  So if it gives enough of an early advantage it may be worthwhile, otherwise it is probably a net disadvantage.  One of these days I&#39;ll give it a try.\n\n44) jbj77: Sacrifice G2 Epsilon\nBuild G2 Epsilon\nBuild Y3 Delta\n\n45) clockwise: Sacrifice Y2 Clockwise\nMove Y1 Gamma Jbj77\nMove Y1 Gamma Jbj77\n\n46) jbj77: Sacrifice Y3 Delta\nMove R2 Delta Jbj77\nMove R3 Jbj77 Gamma\nMove G2 Epsilon Jbj77\n\n47) clockwise: Sacrifice B2 Alpha\nTrade B2 R2 Gamma\nTrade Y2 R2 Gamma\nCatastrophe Gamma Red\n\n48) jbj77: Move R2 Jbj77 Alpha\n\n49) clockwise: Build G2 Gamma\n\tclockwise: Hmm, nice move\n\tjbj77: Very much an act of desperation.  I was about to resign when I thought of this.\n\n50) jbj77: Trade G1 R1 Jbj77\n\n51) clockwise: Sacrifice R1 Alpha\nAttack R1S Jbj77\n\tclockwise: The B2 move was more elegant, but sadly flawed.  Claiming your yellow star was also tempting, but ultimately I&#39;ll just have to accept being a large ship up even though this position is less than ideal.\n\tjbj77: I&#39;m going to have to think about this one for a little bit.\n\n52) jbj77: Attack B1 Alpha\n\n53) clockwise: Sacrifice G2 Gamma\nBuild Y2 Jbj77\nBuild Y2 Clockwise\nCatastrophe Jbj77 Yellow\n\n54) jbj77: Build B2 Alpha\n\n55) clockwise: Move Y3 Clockwise Alpha\n\n56) jbj77: Sacrifice R2 Alpha\nAttack R1 Jbj77\nPass\n\n57) clockwise: Trade Y2 R2 Clockwise\n\n58) jbj77: Build R1 Jbj77\n\n59) clockwise: Sacrifice R2 Clockwise\nAttack B1S Alpha\nAttack B2S Alpha\n\n60) jbj77: Sacrifice Y1 Delta\nMove R1 Jbj77 Gamma\n\n61) clockwise: Build B2 Alpha\n\n62) jbj77: Attack G1 Gamma\n\n63) clockwise: Sacrifice Y3 Alpha\nMove B1 Alpha Jbj77\nMove B2 Alpha Jbj77\nMove B2 Alpha Jbj77\nCatastrophe Jbj77 Blue\n\tclockwise: Isn&#39;t blue pretty?\n\tclockwise: The red build is a nice counter, I had been expecting you to move the y1 back.  Of course my response would have been the same.  I think you loose in 2 turns (3 if you do a failed kamakazi on my homeworld), but you&#39;ve surprised me once already so perhaps you have another trick to pull out.\n\n\tjbj77: Thanks for allowing me that.  And thanks for the game.  I guess you did teach me some things!  :)\n\tclockwise: Great game, thanks\n\nHomeworlds Online (SDG# 7287)\nStarted: 2007.4.4, Ended: 2007.4.24\nParticipants: jbj77 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 Y2 G3\n\n2) jbj77: Homeworld B1 G3 B3 *\n\tjbj77: I think I&#39;ll try this TwoShort response to that opening (it seems to work for him).\n\n3) mneme: Build G1 Mneme\n\n4) jbj77: Build B1 Jbj77\n\tmneme: I&#39;m curious as to how this will work.  I&#39;ve played b3 vs g3 and won, but not starting with Y in your home system is pretty ballsy.\n\tjbj77: Yah, it&#39;s a bit scary for me.  I hope I&#39;m not messing it up already.\n\n5) mneme: Build G1 Mneme\n\tmneme: messing it up on the second move would be tricky, I&#39;d think.\n\n6) jbj77: Trade B3 Y3 Jbj77\n\n7) mneme: Discover G1 Mneme Y3 Diamant\n\tmneme: hmm.  Intrestnng.  I see some of the logic here.\n\n8) jbj77: Build B2 Jbj77\n\tjbj77: Yup, look at those blues, ripe for the picking.\n\n9) mneme: Build G1 Diamant\n\n10) jbj77: Discover B2 Jbj77 B2 Alpha\n\n11) mneme: Build G2 Mneme\n\tjbj77: Of course I have this sinking feeling that I&#39;m going to be hard pressed to get any greens...\n\n12) jbj77: Build B2 Jbj77\n\tmneme: I&#39;m going to have problems backing my way into blues, though.\n\tmneme: eh.  should have scooped 2.  or maybe not\n\n13) mneme: Discover G2 Mneme B3 Bazaar\n\n14) jbj77: Discover B1 Jbj77 G2 Beta\n\n15) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Mneme\nBuild G3 Bazaar\n\n16) jbj77: Build B3 Jbj77\n\n17) mneme: Discover G2 Mneme B3 Alhambra\n\n18) jbj77: Trade B3 R3 Jbj77\n\n19) mneme: Trade G3 R3 Bazaar\n\n20) jbj77: Build B3 Beta\n\n21) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Bazaar\nBuild R1 Bazaar\n\n22) jbj77: Trade B3 Y3 Beta\n\n23) mneme: Discover G1 Mneme B3 Hacienda\n\n24) jbj77: Move R3 Jbj77 Beta\n\n25) mneme: Trade G2 Y2 Bazaar\n\n26) jbj77: Move R3 Beta Alhambra\n\n27) mneme: Sacrifice G2 Alhambra\nBuild G2 Bazaar\nBuild Y1 Bazaar\n\n28) jbj77: Trade B2 G2 Alpha\n\n29) mneme: Discover Y1 Bazaar B2 Ingenious\n\n30) jbj77: Build Y1 Beta\n\n31) mneme: Sacrifice G3 Bazaar\nBuild Y1 Ingenious\nBuild Y2 Ingenious\nBuild G3 Bazaar\n\n32) jbj77: Move Y1 Beta Alhambra\n\n33) mneme: Move Y1 Ingenious Jbj77\n\n34) jbj77: Trade B2 R2 Jbj77\n\n35) mneme: Sacrifice Y2 Bazaar\nMove Y1 Ingenious Jbj77\nMove Y2 Ingenious Jbj77\nCatastrophe Jbj77 Y\n\n36) jbj77: Build B2 Beta\n\n37) mneme: Trade G2 Y2 Bazaar\n\n38) jbj77: Move Y3 Beta Jbj77\n\n39) mneme: Sacrifice G3 Bazaar\nBuild G2 Mneme\nBuild G3 Hacienda\nBuild Y1 Bazaar\n\n40) jbj77: Sacrifice G2 Alpha\nBuild Y1 Alhambra\nBuild Y2 Alhambra\n\n41) mneme: Trade G3 Y3 Hacienda\n\n42) jbj77: Trade Y2 G2 Alhambra\n\n43) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Hacienda\nBuild Y2 Hacienda\n\n44) jbj77: Build B2 Beta\n\tjbj77: Darn, I didn&#39;t think of that.\n\n45) mneme: Move Y3 Hacienda Beta\n\n46) jbj77: Build B2 Beta\n\tmneme: I&#39;ve got a pretty good position now.  the question is whether I can keep it, given my lack of 1337 endgame skills.\n\n47) mneme: Move G1 Diamant Beta\nCatastrophe Beta B\n\tjbj77: I agree that you do have a very good position.\n\n48) jbj77: Build R1 Jbj77\n\n49) mneme: Sacrifice G1 Diamant\nBuild Y3 Hacienda\n\tjbj77: Half a league, half a league,\r\n     Half a league onward,\n\n50) jbj77: Build G1 Alhambra\n\n51) mneme: Sacrifice Y2 Hacienda\nMove G2 Mneme Alhambra\nMove G1 Beta Alhambra\nCatastrophe Alhambra G\n\n52) jbj77: Build R1 Jbj77\n\n53) mneme: Sacrifice Y2 Bazaar\nMove R1 Bazaar Beta\nMove R1 Beta Jbj77\nCatastrophe Jbj77 R\n\n54) jbj77: Trade Y1 G1 Alhambra\n\n55) mneme: Build Y1 Beta\n\n56) jbj77: Build Y2 Alhambra\n\n57) mneme: Discover G3 Hacienda B2 Niagra\n\n58) jbj77: Discover Y1 Alhambra G2 Gamma\n\n59) mneme: Trade G3 R3 Mneme\n\n60) jbj77: Build Y2 Gamma\n\n61) mneme: Move Y1 Bazaar Niagra\n\n62) jbj77: Sacrifice Y2 Gamma\nMove R3 Alhambra Gamma\nMove R3 Gamma Jbj77\n\n63) mneme: Build Y2 Niagra\n\n\tjbj77: I might as well give it up.  I have no chance.  Good  game though.  I&#39;m going to have to study this B1 G3 B3 opening some more.  I&#39;m not sure if I just messed it up or what.  In any case you played very well, and deserve the victory.\n\tmneme: thanks -- good game!  You mean b1 g3 Y3?\r\n\n\tjbj77: No I mean Homeworldd (B1 G3 B3) which was my opening move.  Trying to get a blue monopoly quickly.  It seems difficult to get it to work.\n\tmneme: Not sure.  Looking at the full log, it did let you get three large ships early, but you weren&#39;t able to capitalize on the advantage (and then I started causing catastrophes)\n\nHomeworlds Online (SDG# 7311)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.4, Ended: 2007.4.13\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) mneme: Homeworld G3 B1 Y3\n\tTwoShort: Howdy.\n\tmneme: Hey!  I figure my butt needs some more kicking, after a several-seson gap.  Has anyone won that ultra-small challenge?\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Not so far...\n\n4) mneme: Build Y1 Mneme\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mneme: Trade Y1 B1 Mneme\n\n7) TwoShort: Build G1 Twoshort\n\n8) mneme: Build B1 Mneme\n\n9) TwoShort: Build G1 Twoshort\n\n10) mneme: Discover B1 Mneme B2 Azure\n\tTwoShort: Trying to turn my favorite blue freeze-out tactic against me eh?\n\tmneme: Might as well. (actially, I used it before it was used against me, so...)\n\n11) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n12) mneme: Build B2 Mneme\n\tTwoShort: I just mean I&#39;ve been playing it a lot lately; It&#39;s a great tactic, and I&#39;m annoyed I let you get it started.  I guess I get to test my latest theory on how to respond...\n\tmneme: we&#39;ll see how it works -- I&#39;m playing against it in another game, so I&#39;m curious as to how your response will work.\n\n13) TwoShort: Discover G1 Twoshort B3 Bluotron\n\n14) mneme: Discover B2 Mneme G2 John\n\tmneme: I was wondering if you&#39;d do that.\n\n15) TwoShort: Discover Y1 Twoshort B3 Bluzilla\n\tTwoShort: Well, this wasn&#39;t actually my plan, but it looks too fun to resist :)\n\n16) mneme: Trade B2 R2 John\n\tmneme: Heh.  No way I could have predicted that. :)\r\n\r\nI should have moved to green before building -- that would have been, well, smarter.  :)\n\n17) TwoShort: Build G1 Twoshort\n\n18) mneme: Build Y1 Mneme\n\tmneme: and this...is where it gets ugly.  Ah well\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluotron\nBuild G3 Twoshort\n\n20) mneme: Sacrifice Y1 Mneme\nMove R2 John Bluotron\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluotron\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n22) mneme: Attack G2 Bluotron\n\n23) TwoShort: Trade G2 R2 Bluonia\n\n24) mneme: Sacrifice R2 Bluotron\nAttack G1 Bluotron\nAttack G2 Bluotron\n\n25) TwoShort: Sacrifice Y1 Bluzilla\nMove G1 Twoshort Bluotron\nCatastrophe Bluotron Green\n\n26) mneme: Build B2 Mneme\n\tTwoShort: Dangit; I was hoping you&#39;d do what you did first :)\n\n27) TwoShort: Trade G1 Y1 Bluonia\n\tmneme: heh.  Yeah.  That one lets you get away with a cheap solution, if one that doesn&#39;t cost me as much either.  Despite the insane amount by which I&#39;m losing...one of my choices lets me get into blue freeze mode again, and is therefore clearly superior.\n\n28) mneme: Discover B2 Mneme G2 Emerald\n\n29) TwoShort: Move G3 Bluonia Emerald\n\n30) mneme: Build B3 Mneme\n\n31) TwoShort: Sacrifice R2 Bluonia\nAttack B2 Emerald\nPass\n\tmneme: yeah, I was afraid of that.  This game is over -- but it&#39;s interesting, at least.\n\n32) mneme: Trade B3 R3 Mneme\n\n33) TwoShort: Trade G3 R3 Emerald\n\n34) mneme: Trade B1 G1 Azure\n\n35) TwoShort: Build B1 Emerald\n\n36) mneme: Discover B1 Mneme G2 Forest\n\n37) TwoShort: Trade B2 Y2 Emerald\n\n38) mneme: Build Y1 Mneme\n\n39) TwoShort: Build G1 Twoshort\n\n40) mneme: Trade Y3 G3 Mneme\n\n41) TwoShort: Trade G1 Y1 Twoshort\n\n42) mneme: Build Y2 Mneme\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Emerald\nBuild Y3 Twoshort\nBuild Y3 Bluonia\n\n44) mneme: Move Y2 Mneme Forest\n\n45) TwoShort: Discover R3 Emerald Y3 Yonderboy\n\n46) mneme: Build G1 Mneme\n\n47) TwoShort: Sacrifice Y2 Emerald\nMove Y2 Emerald Mneme\nMove B1 Emerald Mneme\n\tmneme: yeah -- knew that was a mistake at the time -- but too late now.\n\n48) mneme: Sacrifice G3 Mneme\nBuild B2 Forest\nBuild Y2 Forest\nBuild G1 Azure\n\n49) TwoShort: Build B3 Mneme\n\tTwoShort: Hmmm... I&#39;m always suspicious of the plan that jumps into my head before coffee in the morning :) but I don&#39;t see why it won&#39;t work...\n\n50) mneme: Attack B3 Mneme\n\n51) TwoShort: Build B3 Mneme\n\tmneme: we&#39;ll see.  it certainly forces the green sac (or I lose green in my home system, which is...ungood).  I don&#39;t see a checkmate here, but I may be missing something.\n\tTwoShort: I didn&#39;t see a checkmate either; I just thought I was forcing you to lose green :)  I hadn&#39;t really considered the green sac... so we&#39;ll see...\n\n52) mneme: Attack Y2 Mneme\nCatastrophe Mneme B\n\tTwoShort: DO NOT BLUEBIRD!\n\tTwoShort: Oops, that was supposed to go in the notebook. :) I guess I&#39;ve given away my cunning plan to avoid screwing up.\n\tmneme: hmm.  Now I need to figure out wtf that means...\n\n53) TwoShort: Trade Y3 G3 Twoshort\n\tTwoShort: It means I need to be sure I don&#39;t let you get to where you can throw two yellows into my homeworld and win.  I picked up this name for such a blunder from Andy Looney, who named it after an Amsterdam cofeehouse he once made it in, as detailed in his YouTube video &quot;The Bluebird Mistake&quot;.\n\n54) mneme: Sacrifice Y2 Mneme\nMove Y2 Forest Bluonia\nMove Y2 Forest Bluonia\nCatastrophe Bluonia Y\n\tmneme: Ah.  I was kinda hoping you&#39;d let me get two yellows into your homeworld and win. :)\n\n55) TwoShort: Build G2 Twoshort\n\tTwoShort: Between the blue catastrophe suddenly putting your homeworld next to mine, and me getting all over-eager to finish you off, it&#39;s exactly where I might have screwed that up...\n\n56) mneme: Sacrifice B1 Forest\nTrade G1 B1 Mneme\n\tmneme: *nod*.  I was keeping it (and the threat forcing you to take non-growing action) in mind.  I didn&#39;t expect you to fall for it, but it was worth a try. :)\n\n57) TwoShort: Build G1 Twoshort\n\n58) mneme: Build B1 Mneme\n\tmneme: *@*#@.  The system should force you to pass if you don&#39;t cause a catastrophe and one is available, just like it forces you to pass to avoid other optional moves.  Is that why you didn&#39;t catastrophe my home system, or did you decide that if I didn&#39;t, it was a win for you anyway?\n\tTwoShort: I agree it should force you to explicitly pass.  In my case, I intentionally skipped it because I figured you had to trigger it or waste a move capturing my B3 if you really wanted to force me to trigger it.  By making you do it, the pieces aren&#39;t in the stash and your homeworlds adjacency doesn&#39;t change until the end of your turn.  I don&#39;t know that it made any difference in this case, but I just habitually try to inflict whatever inconveniences I can :)\n\n59) TwoShort: Move G1 Twoshort Mneme\n\n60) mneme: Attack G1 Mneme\n\n61) TwoShort: Move G2 Twoshort Mneme\n\n62) mneme: Discover G1 Mneme G2 Emerald\n\n63) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Mneme\nBuild G3 Mneme\nPass\nCatastrophe Mneme Green\n\n\tTwoShort: Yeah, I&#39;m afraid so.  Excellent game though, thanks!\n\nHomeworlds Online (SDG# 7322)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2007.4.5, Ended: 2007.4.5\nParticipants: Cinnibar (S), Magni (N)\nWinner: Cinnibar\n\n1) Magni: Homeworld B3 Y2 G3\n\n2) Cinnibar: Homeworld Y1 B2 G3\n\n3) Magni: Discover G3 Magni Y1 Void\n\n\nHomeworlds Online (SDG# 7323)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2007.4.5, Ended: 2007.4.29\nParticipants: Magni (S), Cinnibar (N)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld B3 G1 Y3\n\n2) Magni: Homeworld Y2 B1 G3\n\n3) Cinnibar: Build Y1 Cinnibar\n\n4) Magni: Build G1 Magni\n\n5) Cinnibar: Build Y1 Cinnibar\n\n6) Magni: Trade G1 Y1 Magni\n\n7) Cinnibar: Discover Y1 Cinnibar G2 Vivat\n\n8) Magni: Build G1 Magni\n\n9) Cinnibar: Build Y2 Vivat\n\n10) Magni: Build G1 Magni\n\n11) Cinnibar: Build Y2 Cinnibar\n\n12) Magni: Discover G1 Magni Y3 Void\n\n13) Cinnibar: Build Y3 Vivat\n\n14) Magni: Discover Y1 Magni R3 Fire\n\n15) Cinnibar: Move Y2 Vivat Fire\n\n16) Magni: Discover G1 Magni B3 Water\n\n17) Cinnibar: Attack Y1 Fire\n\n\nHomeworlds Online (SDG# 7329)\nStarted: 2007.4.5, Ended: 2007.4.10\nParticipants: MikeYarrum (S), Magni (N)\nWinner: MikeYarrum\n\n1) Magni: Homeworld B2 Y3 G3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\n3) Magni: Build G1 Magni\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Magni: Build G1 Magni\n\n6) MikeYarrum: Build G2 Mikeyarrum\n\n7) Magni: Trade G1 R1 Magni\n\n8) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n9) Magni: Discover G1 Magni Y1 Shangrala\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) Magni: Build G1 Shangrala\n\tMikeYarrum: You play aggressively, I notice.\n\n12) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n\nHomeworlds Online (SDG# 7341)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.9, Ended: 2007.4.13\nParticipants: Personman (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 7425)\nVariants: &quot;Unrated&quot;\nStarted: 2007.4.12, Ended: 2007.4.17\nParticipants: dsheldon (S), gypsydog (N)\nWinner: dsheldon\n\n1) gypsydog: Homeworld G3 B2 Y3\n\n2) dsheldon: Homeworld Y1 B2 G3\n\n3) gypsydog: Build Y1 Gypsydog\n\n4) dsheldon: Build G1 Dsheldon\n\tdsheldon: Good so far.  I&#39;m holding back from spewing forth the various theories on how to play the midgame until we get there.\r\n\r\nIn the beginning you want to get a good spread of ships, both colorwise and locationwise.\r\n\r\nYou also want to try and finagle things such that you get more large ships than I do.\r\n\r\nMake sure you understand Sacrifice actions and Catastrophies (these mostly come up later, I&#39;ll point them out when we get closer), re-read those parts of the rules since they&#39;re pretty much how the game is won and lost.\n\n5) gypsydog: Build Y1 Gypsydog\n\n6) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\tdsheldon: See, right now you&#39;ve got what is normally considered a dangerous situation: having three pieces of the same color in a system.\r\n\r\nRight now it&#39;s OK because there is no way I could get a fourth there (and destroy them all), but after the opening rush of the game it would be a Bad Idea (tm) to repeat that.\n\n7) gypsydog: Trade Y1 G1 Gypsydog\n\n8) dsheldon: Build G1 Dsheldon\n\n9) gypsydog: Discover G1 Gypsydog Y1 Yzerman\n\tgypsydog: so how exactly do I get larger ships?\n\n10) dsheldon: Trade G1 B1 Dsheldon\n\tdsheldon: When you build ships you get the smallest one available in the color you are making.  The way to get large ships is run out of smaller pieces.\r\n\r\nThe game, in the end, is about manipulating the global stash.  Board position is a close second, but it&#39;s all about the stash.\n\n11) gypsydog: Build Y2 Gypsydog\n\n12) dsheldon: Build G1 Dsheldon\n\n13) gypsydog: Build G2 Yzerman\n\n14) dsheldon: Discover G1 Dsheldon G3 Bank\n\n15) gypsydog: Discover G2 Yzerman R2 Datsyuk\n\n16) dsheldon: Build G2 Dsheldon\n\n17) gypsydog: Trade Y1 B1 Gypsydog\n\n18) dsheldon: Trade B1 Y1 Dsheldon\n\n19) gypsydog: Build G2 Datsyuk\n\n20) dsheldon: Sacrifice G2 Dsheldon\nBuild G2 Bank\nBuild Y2 Dsheldon\n\n21) gypsydog: Move B1 Gypsydog Yzerman\n\tdsheldon: now, I&#39;ve set up two dangerous situations for myself.  see if you can do some damage (if you want to).\n\n22) dsheldon: Sacrifice Y1 Dsheldon\nDiscover G1 Bank B1 Colony\n\n23) gypsydog: Move B1 Yzerman Datsyuk\n\n24) dsheldon: Sacrifice G2 Bank\nBuild G2 Dsheldon\nBuild G3 Colony\n\tdsheldon: A note on topography: Because of the nature of the rules, the galaxy ends up being kind of triangular.  All the ones can get to all the twos and threes, all the twos to the ones and threes, and so on - but a two can&#39;t get to a two.  Homeworlds are a special case because they have two stars.  Usually (and this is true for this game as well) each of our Homeworlds only connects to one size of star.  Yours goes to ones, mine goes to threes.  Twos then, are kinda out in no-man&#39;s land.  Now, this can change if one of our home stars is lost to a catastrophe, but that looks to be a ways off.\r\n\r\nYou&#39;re building up all these guys at Datsyuk and they can&#39;t get anywhere.  Now, it can be good to have them out there for sacrifice actions, but that&#39;s pretty much it.  Comprende?\n\n25) gypsydog: Trade G2 R2 Datsyuk\n\tgypsydog: I was actually kinda counting on that.  I don&#39;t know if this strategy will work or not, but we&#39;re about to find out.\n\n26) dsheldon: Trade G2 R2 Dsheldon\n\n27) gypsydog: Build R1 Datsyuk\n\tgypsydog: Wait a sec!  I thought you needed one of a color to build that color in a system!  How&#39;d you do that?\n\n28) dsheldon: Sacrifice G3 Colony\nBuild G2 Dsheldon\nBuild G2 Jerome\nBuild G3 Colony\n\tdsheldon: Where, in dsheldon?  I built a g2 there last turn (which I could do because I had a g3 even though the actual action came from the sacrifice of that same g2 in a system which no longer exists) and then this turn traded it for an r2 (which I can do because there is a blue star).\r\n\r\nTrading (with the blue action) lets you go to any color, even ones you don&#39;t have access to yet.  Was that your point of confusion?\n\tdsheldon: And now, a lesson in denying your enemy pieces:\n\n29) gypsydog: Trade R1 Y1 Datsyuk\n\n30) dsheldon: Discover G2 Jerome R1 Striker\n\tgypsydog: Yeah, I thought you could only trade for colors of ships you had colors in a system.  Ugh.  That would have made planning much easier.  Ah well.\n\n31) gypsydog: Build R1 Datsyuk\n\tdsheldon: Now, what I&#39;ve done here is position myself with three Green ships all one hop away from your homeworld (2 at Colony and 1 at Striker).  The plan is, once I have a large Yellow ship, to sacrifice it and move all three green ships to gypsydog and triggering a Green catastrophe (because 3 ships + 1 star = 4 = BOOM!).  This will obliterate half of your stars and make your homeworld (theoretically) much more vulnerable.  It will also change the shape of the board because gypsydog will now be adjacent to 1s AND 3s because there will only be a size 2 star left in it.\r\n\r\nAlso, you really should diversify your homeworld fleet (yeah, I know, you thought you couldn&#39;t) because one catastrophe of the right color can knock you out completely.\n\n32) dsheldon: Sacrifice Y2 Dsheldon\nMove R2 Dsheldon Jerome\nMove R2 Jerome Datsyuk\nCatastrophe Datsyuk R\n\tdsheldon: Now it&#39;s time to learn about sacrifice and catastrophe first hand:\n\n33) gypsydog: Trade Y2 R2 Gypsydog\n\n34) dsheldon: Trade G2 R2 Dsheldon\n\n35) gypsydog: Move R2 Gypsydog Striker\n\n36) dsheldon: Attack R2N Striker\n\tdsheldon: Do you realize that this was a poor decision?\n\n37) gypsydog: Build G2 Yzerman\n\tdsheldon: Because Striker is a red star, any ships there can make attacks.\n\tgypsydog: ah crap.  yeah, i lost this one.  this can only end badly now.\n\n38) dsheldon: Sacrifice G3 Colony\nBuild G2 Striker\nBuild G3 Colony\nBuild R1 Dsheldon\n\tdsheldon: Yeah, well, that was true a while ago.  But do you understand enough to play a /real/ game yet?  We haven&#39;t even begun the really deep stash manipulation stuff yet.\r\n\r\nI lied, there isn&#39;t really anything that deep about, but it&#39;s a ton of fun to say stuff like that.\n\n\tgypsydog: yeah, i think i could.\n\nHomeworlds Online (SDG# 7317)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.12, Ended: 2007.5.11\nParticipants: lambda (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tlambda: Hello! I look forward to playing you again, and hope that I can keep up with SDG this time around. Have a great game!\n\n2) lambda: Homeworld G3 B2 Y3\n\tTwoShort: Howdy...  A great game to you too.\n\n3) TwoShort: Build G1 Twoshort\n\n4) lambda: Build Y1 Lambda\n\n5) TwoShort: Build G1 Twoshort\n\n6) lambda: Build Y1 Lambda\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) lambda: Trade Y1 G1 Lambda\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) lambda: Discover G1 Lambda B1 Rigel\n\n11) TwoShort: Build Y1 Twoshort\n\n12) lambda: Build Y2 Lambda\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) lambda: Discover Y1 Lambda G1 Deneb\n\n15) TwoShort: Build Y2 Grogar\n\n16) lambda: Build G2 Rigel\n\n17) TwoShort: Move Y1 Grogar Deneb\n\n18) lambda: Trade Y2 R2 Lambda\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Deneb\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n20) lambda: Build R1 Lambda\n\n21) TwoShort: Discover Y2 Grogar B1 Jeans\n\n22) lambda: Sacrifice R1 Lambda\nAttack Y1 Deneb\n\n23) TwoShort: Trade Y2 R2 Jeans\n\n24) lambda: Discover Y1 Deneb G3 Antares\n\n25) TwoShort: Sacrifice R2 Jeans\nAttack Y1S Deneb\nPass\n\n26) lambda: Build Y2 Antares\n\n27) TwoShort: Trade Y1 R1 Twoshort\n\n28) lambda: Move Y1 Antares Rigel\n\n29) TwoShort: Build G2 Yolonda\n\n30) lambda: Discover G1 Rigel B3 Arcturus\n\n31) TwoShort: Discover G1 Yolonda B1 Blewstar\n\n32) lambda: Trade Y1 B1 Rigel\n\n33) TwoShort: Build G2 Blewstar\n\n34) lambda: Build Y1 Antares\n\n35) TwoShort: Sacrifice G2 Yolonda\nBuild Y1 Twoshort\nBuild Y3 Grogar\n\n36) lambda: Build B2 Rigel\n\n37) TwoShort: Sacrifice Y2 Grogar\nMove G2 Blewstar Lambda\nMove G1 Blewstar Lambda\n\n\tlambda: Sorry, I don&#39;t think I have the time for this game any more.\n\nHomeworlds Online (SDG# 7426)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.13, Ended: 2007.5.1\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tmneme: *g*  I&#39;m nothing if not persistent. :)  Will you be at Origins?\n\n2) mneme: Homeworld Y1 B3 G3\n\tTwoShort: I&#39;m afraid not; I live in Colorado and have 2 small children...\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build G1 Mneme\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mneme: Build G1 Mneme\n\n7) TwoShort: Build Y1 Twoshort\n\n8) mneme: Discover G1 Mneme B2 Aramis\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) mneme: Build G1 Mneme\n\n11) TwoShort: Build Y2 Twoshort\n\n12) mneme: Build G2 Aramis\n\tmneme: distance isn&#39;t always a showstopper -- it&#39;s not like transportation is the largest expense.  Children can be, of course.\n\n13) TwoShort: Discover Y2 Twoshort B3 Bluonia\n\tTwoShort: I went to various cons &quot;back in the day&quot;, but now I occasionally go to cons I can drive to for the day, (which these days means &quot;in Denver&quot;); but anything far enough away that you have to stay overnight is a radically different proposition in terms of budget and time away from family.  It&#39;s just not that kind of priority for me at this point in my life.  Come to think of it, even when I&#39;ve driven to Denver recently, one or more old friends was a guest of honor...\n\n14) mneme: Trade G2 Y2 Aramis\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n16) mneme: Build Y3 Aramis\n\tmneme: *nod*  If you haven&#39;t done Origins, it&#39;s worth doing when/if life intervenes less, as the big LL con.  And, of course, organized sf, gaming, and other styles have very different whys and wherefores.  (which isn&#39;t to say that I, as a fairly heavily con-going 30-something, don&#39;t have a bit much con on the brain, but then, I&#39;m not planning on kids).\n\tTwoShort: Yeah, Origins is the one I would do if I did... I went once long ago when it was in Philadelphia, and before that I used to go to Disclave because that was the big Icehouse Games con... When it was Icehouse Games and Disclave existed :)  \n\n17) TwoShort: Trade Y3 G3 Twoshort\n\n18) mneme: Discover G1 Mneme B2 Portho\n\n19) TwoShort: Build Y3 Twoshort\n\tmneme: Yup!  I played Icehouse then (and east coast cons) but never did Disclave before it, er, washed out.\n\n20) mneme: Discover Y2 Aramis B3 D&#39;artanian\n\n21) TwoShort: Build G2 Twoshort\n\n22) mneme: Sacrifice G3 Mneme\nBuild G2 Aramis\nBuild G2 Portho\nBuild G3 Mneme\n\n23) TwoShort: Trade Y3 R3 Bluonia\n\n24) mneme: Trade G3 R3 Mneme\n\n25) TwoShort: Move R3 Bluonia Portho\n\n26) mneme: Build Y3 Aramis\n\n27) TwoShort: Sacrifice Y2 Bluonia\nMove Y2 Grogar Aramis\nMove Y1 Grogar Aramis\nCatastrophe Aramis Yellow\n\n28) mneme: Build G3 Mneme\n\n29) TwoShort: Attack G2S Portho\n\n30) mneme: Sacrifice G2 Aramis\nBuild G2 Portho\nBuild G3 Portho\nCatastrophe Portho G\n\n31) TwoShort: Discover Y1 Twoshort G3 Planchet\n\n32) mneme: Build R1 Mneme\n\n33) TwoShort: Build Y1 Planchet\n\n34) mneme: Move R3 Mneme Aramis\n\n35) TwoShort: Discover Y1 Planchet Y2 Cyrano\n\n36) mneme: Trade R3 Y3 Aramis\n\n37) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Planchet\n\n38) mneme: Build R1 Mneme\n\n39) TwoShort: Build G1 Twoshort\n\n40) mneme: Build G2 Aramis\n\n41) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort D&#39;artanian\nMove R3 Portho D&#39;artanian\n\n42) mneme: Discover Y2 D&#39;artanian G2 Portho\n\n43) TwoShort: Build R2 D&#39;artanian\n\n44) mneme: Move R1 Mneme Aramis\n\n45) TwoShort: Sacrifice Y3 Planchet\nMove G3 D&#39;artanian Aramis\nMove R3 D&#39;artanian Aramis\nMove G3 Aramis Mneme\n\n46) mneme: Attack G3 Mneme\n\n47) TwoShort: Sacrifice R2 D&#39;artanian\nAttack Y3S Aramis\nAttack G2S Aramis\n\tmneme: clever\n\n48) mneme: Sacrifice G3 Mneme\nBuild R2 Aramis\nBuild R2 Aramis\nBuild R2 Mneme\nCatastrophe Aramis R\n\n49) TwoShort: Trade G2 R2 Aramis\n\tTwoShort: With so many pieces in play, I was sure there was something good there. I was pretty pleased when I finally saw it :)  \n\n50) mneme: Discover G1 Mneme B2 Athos\n\n51) TwoShort: Build G2 Twoshort\n\n52) mneme: Trade G1 B1 Aramis\n\n53) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Planchet\n\n54) mneme: Build G1 Mneme\n\n55) TwoShort: Attack B1S Aramis\n\n56) mneme: Discover R1 Mneme G2 Dewinter\n\n57) TwoShort: Trade Y3 G3 Aramis\n\n58) mneme: Sacrifice G3 Mneme\nBuild G2 Athos\nBuild G3 Mneme\nBuild Y3 Portho\n\n59) TwoShort: Sacrifice Y3 Planchet\nMove Y1 Cyrano Planchet\nMove Y1 Planchet Portho\nMove Y1 Planchet Portho\nCatastrophe Portho Yellow\n\n60) mneme: Trade G2 Y2 Athos\n\tTwoShort: My favorite Homeworlds strategy maxim:  It&#39;s better to be slightly ahead in a simpler game than slightly ahead in a more complex one.  Also, it&#39;s fun to blow stuff up :)\n\n61) TwoShort: Build G2 Aramis\n\tmneme: It&#39;s very true.\r\n\n\n62) mneme: Sacrifice G3 Mneme\nBuild G2 Athos\nBuild G3 Athos\nBuild G3 Mneme\n\n63) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Aramis Mneme\nMove G2 Mneme Athos\nCatastrophe Athos Green\n\n64) mneme: Build R1 Dewinter\n\n65) TwoShort: Build G1 Aramis\n\n66) mneme: Sacrifice G3 Mneme\nBuild R2 Dewinter\nBuild R3 Mneme\nBuild Y1 Athos\n\n67) TwoShort: Build R3 Aramis\n\n68) mneme: Trade R3 G3 Mneme\n\n69) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Aramis Mneme\nMove G1 Aramis Mneme\nMove R3 Aramis Mneme\nCatastrophe Mneme Green\n\n\tmneme: see: blunder. A really nice one, too.\n\nHomeworlds Online (SDG# 7439)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.14, Ended: 2007.4.19\nParticipants: zoltar (S), mneme (N)\nWinner: zoltar\n\n1) mneme: Homeworld Y1 G2 B3\n\n2) zoltar: Homeworld B3 G1 Y3\n\n3) mneme: Build B1 Mneme\n\n4) zoltar: Build Y1 Zoltar\n\n5) mneme: Build B1 Mneme\n\n6) zoltar: Build Y1 Zoltar\n\n7) mneme: Discover B1 Mneme Y3 Canary\n\n8) zoltar: Trade Y1 B1 Zoltar\n\n9) mneme: Trade B1 Y1 Mneme\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) mneme: Build B1 Mneme\n\n12) zoltar: Build B2 Zoltar\n\n13) mneme: Trade B1 R1 Mneme\n\n14) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n15) mneme: Discover Y1 Mneme G3 Parrot\n\n16) zoltar: Discover B1 Zoltar G2 Greenhills\n\n17) mneme: Trade B1 G1 Canary\n\n18) zoltar: Trade B2 Y2 Greenbelt\n\n19) mneme: Build G1 Canary\n\n20) zoltar: Move Y2 Greenbelt Canary\n\n21) mneme: Build G2 Canary\n\n22) zoltar: Sacrifice R1 Zoltar\nAttack G2 Canary\n\n23) mneme: Build G3 Canary\nCatastrophe Canary G\n\n24) zoltar: Build B1 Greenhills\n\n25) mneme: Build R1 Mneme\n\n26) zoltar: Trade B1 R1 Greenhills\n\n27) mneme: Build R2 Mneme\n\n28) zoltar: Build R2 Greenhills\n\n29) mneme: Move R2 Mneme Parrot\n\n30) zoltar: Trade R2 Y2 Greenhills\n\n31) mneme: Build R2 Parrot\n\n32) zoltar: Build R2 Greenhills\n\n33) mneme: Discover R2 Parrot G2 Sparrow\n\n34) zoltar: Trade R1 G1 Greenhills\n\n35) mneme: Build B1 Mneme\n\n36) zoltar: Build G1 Greenhills\n\n37) mneme: Trade B3 G3 Mneme\n\n38) zoltar: Move G1 Greenhills Canary\n\n39) mneme: Discover R1 Mneme G3 Crow\n\n40) zoltar: Discover G1 Greenhills Y3 Vulture\n\n41) mneme: Sacrifice G3 Mneme\nBuild R1 Crow\nBuild R3 Mneme\nBuild R3 Parrot\n\tmneme: nice\n\n42) zoltar: Build R3 Greenhills\n\n43) mneme: Discover R1 Mneme G3 Fledge\n\n44) zoltar: Move R2 Greenhills Fledge\n\n45) mneme: Discover R3 Parrot Y2 Frank\n\n46) zoltar: Attack R1 Fledge\n\n47) mneme: Move R3 Frank Canary\n\n48) zoltar: Build Y1 Canary\n\n49) mneme: Attack G1 Canary\n\n50) zoltar: Build Y2 Greenhills\n\n51) mneme: Attack Y2 Canary\n\n52) zoltar: Sacrifice G1 Vulture\nBuild Y3 Zoltar\n\n53) mneme: Move Y2 Canary Sparrow\n\n54) zoltar: Move Y3 Zoltar Sparrow\n\n55) mneme: Attack Y1 Canary\n\n56) zoltar: Sacrifice R2 Fledge\nAttack R2 Sparrow\nAttack Y2 Sparrow\n\n57) mneme: Build R2 Parrot\n\n58) zoltar: Move Y3 Sparrow Parrot\n\n59) mneme: Move R3 Canary Sparrow\n\n60) zoltar: Sacrifice R2 Sparrow\nAttack R2 Parrot\nAttack R2 Parrot\n\n61) mneme: Attack Y2 Sparrow\n\n62) zoltar: Move R3 Greenhills Canary\n\n63) mneme: Sacrifice Y2 Sparrow\nMove R3 Sparrow Parrot\nMove R3 Parrot Greenhills\n\n64) zoltar: Sacrifice Y2 Greenhills\nMove Y2 Greenhills Crow\nMove B1 Greenhills Zoltar\n\n65) mneme: Move Y1 Parrot Greenhills\n\n66) zoltar: Sacrifice Y3 Parrot\nMove R1 Fledge Mneme\nMove R2 Parrot Mneme\nMove R2 Parrot Mneme\nCatastrophe Mneme R\n\n67) mneme: Build Y2 Canary\n\tmneme: I&#39;m clearly doomed, of course.  But playing this out isn&#39;t necessarily a bad learning experience\n\n68) zoltar: Move R3 Canary Mneme\n\n\nHomeworlds Online (SDG# 7437)\nStarted: 2007.4.15, Ended: 2007.4.24\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: H Y1 B3 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tts52: Have a good game!\r\n\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zoltar: Build Y2 Zoltar\n\tzoltar: Greetingz Earthling!\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) ts52: Build G1 Ts52\n\n11) zoltar: Build R1 Zoltar\n\tzoltar: Red Alert!  Prepare for Battle!\n\n12) ts52: Trade G1 R1 Ts52\n\tzoltar: b r1 zoltar\n\n13) zoltar: Discover R1 Zoltar G2 Greenbelt\n\n14) ts52: Build R2 Ts52\n\n15) zoltar: Build R2 Zoltar\n\n16) ts52: Move R2 Ts52 Kermit\n\n17) zoltar: Move Y2 Zoltar Greenbelt\n\n18) ts52: Build G1 Ts52\n\n19) zoltar: Discover R1 Zoltar G2 Greenhills\n\n20) ts52: Build G1 Ts52\n\n21) zoltar: Build G1 Zoltar\n\n22) ts52: Discover G1 Ts52 Y3 Bigbird\n\n23) zoltar: Build G2 Zoltar\n\n24) ts52: Discover G1 Bigbird Y2 Sol\n\n25) zoltar: Move G2 Zoltar Sol\n\n26) ts52: Move G1 Sol Kermit\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild R2 Greenhills\nBuild R3 Greenbelt\nBuild R3 Zoltar\n\n28) ts52: Build R3 Ts52\n\n29) zoltar: Build G3 Zoltar\n\n30) ts52: Discover R3 Ts52 Y3 Lemon\n\n31) zoltar: Trade G3 Y3 Zoltar\n\n32) ts52: Move R3 Lemon Sol\n\n33) zoltar: Sacrifice G2 Sol\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n34) ts52: Move G1 Kermit Sol\n\n35) zoltar: Move G1 Zoltar Greenbelt\n\n36) ts52: Discover G1 Sol Y3 Daffodil\n\n37) zoltar: Move R3 Greenbelt Kermit\n\n38) ts52: Move Y1 Kermit Sol\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Greenbelt\nBuild Y3 Greenbelt\n\n40) ts52: Discover Y1 Sol B3 Gonzo\n\n41) zoltar: Move Y3 Greenbelt Daffodil\n\n42) ts52: Move R3 Sol Gonzo\n\n43) zoltar: Sacrifice R2 Greenhills\nAttack G1 Daffodil\nAttack R2 Kermit\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild Y2 Gonzo\n\n45) zoltar: Sacrifice Y3 Zoltar\nMove G1 Greenbelt Daffodil\nMove G1 Daffodil Ts52\nMove G1 Daffodil Ts52\nCatastrophe Ts52 G\n\n46) ts52: Trade R1 G1 Ts52\n\n47) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Daffodil Ts52\nMove R3 Kermit Ts52\n\n48) ts52: Build R1 Ts52\n\tzoltar: All ships: storm zee ts52 Homeworld!  Attack!\n\tts52: Ouch!\n\tts52: Well, this wont last long. Thanks for the game.\n\n49) zoltar: Sacrifice R3 Zoltar\nAttack G1 Ts52\nAttack R1 Ts52\nAttack R2 Ts52\n\tzoltar: s y2 greenbelt\r\nm y3 daffodil ts52\r\nm r3 kermit ts52\n\n\tts52: Sure.\n\nHomeworlds Online (SDG# 7434)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.17, Ended: 2007.4.20\nParticipants: sordros (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) sordros: Homeworld Y1 G3 B3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tsordros: Hello there!\r\nWhere are you from?\n\n4) sordros: Build B1 Sordros\n\tTwoShort: I&#39;m in Boulder, Colorado... How about you?\n\n5) TwoShort: Build G1 Twoshort\n\tsordros: I&#39;m in Heredia, Costa Rica.\n\n6) sordros: Build B1 Sordros\n\tTwoShort: Are you a student?  I had a friend in school who spent a year in Heredia, so I know it&#39;s a college town, but that&#39;s the extent of my knowledge :), except that my friend thought it was great. \n\n7) TwoShort: Trade G1 B1 Twoshort\n\n8) sordros: Trade B1 G1 Sordros\n\tsordros: Nope, I&#39;m not a student anymore.  Heredia is both the town name and the &quot;province&quot; name.  I&#39;m in the province Heredia but not exactly in the town.  This is a very small country anyway, so I&#39;m close college you refer. Sorry about the undo.  This is my first homeworld game, so I&#39;m kind of confused :-)\n\n9) TwoShort: Trade G1 Y1 Twoshort\n\n10) sordros: Build G1 Sordros\n\n11) TwoShort: Build G1 Twoshort\n\n12) sordros: Trade G1 R1 Sordros\n\n13) TwoShort: Build Y1 Twoshort\n\n14) sordros: Build R1 Sordros\n\n15) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n16) sordros: Build R2 Sordros\n\n17) TwoShort: Build Y2 Grogar\n\n18) sordros: Trade R2 Y2 Sordros\n\n19) TwoShort: Discover Y1 Grogar Y2 Yolonda\n\n20) sordros: Build Y3 Sordros\n\n21) TwoShort: Move Y1 Yolonda Sordros\nCatastrophe Sordros Yellow\n\n22) sordros: Build R2 Sordros\n\n23) TwoShort: Sacrifice Y2 Grogar\nMove G1 Twoshort Sordros\nMove G3 Twoshort Sordros\nCatastrophe Sordros Green\n\n\nHomeworlds Online (SDG# 7473)\nStarted: 2007.4.18, Ended: 2007.4.23\nParticipants: dsheldon (S), gypsydog (N)\nWinner: dsheldon\n\n1) gypsydog: Homeworld Y1 B2 G3\n\n2) dsheldon: Homeworld R2 B3 G3\n\n3) gypsydog: Build G1 Gypsydog\n\tgypsydog: Interesting.  I&#39;ll be rather fascinated to find out how you develop that.  I saw mention that using a red star was in vogue with the &quot;pros&quot; but I&#39;ll watch with fascination, I&#39;m sure, as I get pwnzor&#39;d ;)\n\n4) dsheldon: Build G1 Dsheldon\n\n5) gypsydog: Discover G1 Gypsydog B3 Howe\n\n6) dsheldon: Trade G1 Y1 Dsheldon\n\tdsheldon: My theory red home stars is that it allows me to always defend myself without appearing aggressive.  It&#39;s not like I can bring the thing with me.\n\n7) gypsydog: Build G1 Gypsydog\n\n8) dsheldon: Build Y1 Dsheldon\n\tdsheldon: ugh.  I can&#39;t believe I mistyped that...\n\n9) gypsydog: Build G1 Howe\n\n10) dsheldon: Discover Y1 Dsheldon B1 Berry\n\tgypsydog: right.  other than catastrophes, you&#39;ll always get first shot off in your home system.  highly defensive.  seems compatible with the style people are talking about for the Fortress opening.  i kinda like it in a way.\n\n11) gypsydog: Build G2 Howe\n\tgypsydog: also, you are a jerk and i hate you and your superior strategy knowledge :P\n\n12) dsheldon: Build G2 Dsheldon\n\n13) gypsydog: Trade G2 Y2 Howe\n\n14) dsheldon: Sacrifice G2 Dsheldon\nBuild G2 Dsheldon\nBuild Y2 Berry\n\n15) gypsydog: Build G2 Gypsydog\n\n16) dsheldon: Trade Y2 G2 Berry\n\tdsheldon: and I&#39;m only 50/50 in my record.  competition around here is tough.  i once read through the log of the top two players against each other (TwoShort and, uh, I forget the other guy&#39;s name).  wow.  let me see if I can find the text around here some place.  it was quite long.\n\n17) gypsydog: Build Y2 Howe\n\n18) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y2 Dsheldon\nBuild Y3 Berry\n\n19) gypsydog: Move Y2 Howe Gypsydog\n\n20) dsheldon: Sacrifice Y2 Dsheldon\nMove G2 Berry Howe\nMove G2 Howe Gypsydog\nCatastrophe Gypsydog G\n\n21) gypsydog: Trade G1 R1 Howe\n\n22) dsheldon: Discover Y1 Berry B3 Bruise\n\n23) gypsydog: Build R1 Howe\n\n24) dsheldon: Sacrifice G3 Dsheldon\nBuild Y2 Berry\nBuild Y3 Bruise\nBuild Y3 Dsheldon\n\n25) gypsydog: Trade Y2 G2 Gypsydog\n\n26) dsheldon: Move Y3 Bruise Gypsydog\n\n27) gypsydog: Build R1 Howe\n\n28) dsheldon: Trade Y3 R3 Dsheldon\n\n29) gypsydog: Move R1 Howe Gypsydog\n\n30) dsheldon: Sacrifice R3 Dsheldon\nAttack G2N Gypsydog\nAttack R1N Gypsydog\nPass\n\tdsheldon: You really need to have defended your homeworld better.\n\n\tdsheldon: There was nothing you could have done in your last turn.\n\nHomeworlds Online (SDG# 7463)\nStarted: 2007.4.18, Ended: 2007.5.11\nParticipants: lambda (S), morganfitzp (N)\nWinner: morganfitzp\n\n1) morganfitzp: Homeworld B1 R2 G3\n\n2) lambda: Homeworld B2 Y3 G3\n\tmorganfitzp: Hello &quot;^&quot; !\n\n3) morganfitzp: Build G1 Morganfitzp\n\tlambda: Hi! Have a great game!\n\n4) lambda: Build G1 Lambda\n\n5) morganfitzp: Trade G1 Y1 Morganfitzp\n\n6) lambda: Build G1 Lambda\n\n7) morganfitzp: Build Y1 Morganfitzp\n\n8) lambda: Trade G1 Y1 Lambda\n\n9) morganfitzp: Discover Y1 Morganfitzp G3 Cama\n\n10) lambda: Discover Y1 Lambda G1 Altair\n\n11) morganfitzp: Build Y2 Morganfitzp\n\n12) lambda: Build Y2 Altair\n\n13) morganfitzp: Build Y2 Cama\n\n14) lambda: Discover Y1 Altair B3 Betelgeuse\n\n15) morganfitzp: Trade Y1 B1 Morganfitzp\n\n16) lambda: Trade G1 B1 Lambda\n\n17) morganfitzp: Move B1 Morganfitzp Cama\n\n18) lambda: Build G1 Lambda\n\n19) morganfitzp: Build B2 Cama\n\n20) lambda: Discover B1 Lambda G1 Mira\n\n21) morganfitzp: Trade B1 R1 Cama\n\n22) lambda: Build G2 Lambda\n\n23) morganfitzp: Move Y2 Cama Mira\n\n24) lambda: Trade G2 R2 Lambda\n\n25) morganfitzp: Build G2 Morganfitzp\n\n26) lambda: Build G2 Lambda\n\n27) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y1 Cama\nBuild Y3 Mira\nBuild Y3 Morganfitzp\n\n28) lambda: Discover G2 Lambda B1 Sirius\n\n29) morganfitzp: Discover Y1 Cama R1 Fogo\n\n30) lambda: Sacrifice G3 Lambda\nBuild G2 Sirius\nBuild G3 Sirius\nBuild G3 Lambda\n\n31) morganfitzp: Sacrifice Y2 Mira\nMove G2 Morganfitzp Cama\nMove G2 Cama Sirius\nCatastrophe Sirius Green\n\n32) lambda: Build Y2 Altair\n\n33) morganfitzp: Trade Y2 G2 Morganfitzp\n\n34) lambda: Discover G1 Lambda B1 Sirius\n\n35) morganfitzp: Trade Y3 G3 Morganfitzp\n\n\tlambda: Sorry, I don&#39;t think I have enough time for this game any more.\n\nHomeworlds Online (SDG# 7460)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.20, Ended: 2007.5.25\nParticipants: Nupanick (S), sordros (W), Cinnibar (N), MikeYarrum (E)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G2 B3 Y3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\n3) Nupanick: Homeworld B1 G3 Y3\n\tNupanick: This is my first time with this engine, hope I entered it right.\n\n4) sordros: Homeworld G1 Y2 B3\n\n5) Cinnibar: Build Y1 Cinnibar\n\n6) MikeYarrum: Build G1 Mikeyarrum\n\n7) Nupanick: Build Y1 Nupanick\n\n8) sordros: Build B1 Sordros\n\n9) Cinnibar: Build Y1 Cinnibar\n\n10) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n11) Nupanick: Build Y1 Nupanick\n\n12) sordros: Build B1 Sordros\n\n13) Cinnibar: Trade Y1 R1 Cinnibar\n\n14) MikeYarrum: Build G1 Mikeyarrum\n\tCinnibar: So tempting\n\n15) Nupanick: Trade Y1 G1 Nupanick\n\n16) sordros: Trade B1 G1 Sordros\n\n17) Cinnibar: Build R1 Cinnibar\n\n18) MikeYarrum: Build G2 Sakaki\n\n19) Nupanick: Discover G1 Nupanick B2 Damogran\n\n20) sordros: Trade B1 Y1 Sordros\n\tNupanick: Damogran consists of a few small islands seperated by inconveniently large stretches of ocean. Because of this trade is vital to its inhabitants&#39; survival.\n\n21) Cinnibar: Build R1 Cinnibar\n\n22) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n23) Nupanick: Trade Y1 R1 Nupanick\n\n24) sordros: Build B1 Sordros\n\n25) Cinnibar: Discover R1 Cinnibar Y1 Hyperion\n\n26) MikeYarrum: Discover G2 Sakaki B2 Kaorin\n\n27) Nupanick: Build Y2 Nupanick\n\n28) sordros: Discover B1 Sordros G3 Verdega\n\n29) Cinnibar: Move R1 Hyperion Verdega\n\n30) MikeYarrum: Trade G2 R2 Kaorin\n\n31) Nupanick: Build G1 Damogran\n\n32) sordros: Move B3 Sordros Verdega\n\n33) Cinnibar: Sacrifice Y1 Cinnibar\nMove R1 Verdega Sordros\n\n34) MikeYarrum: Build G2 Sakaki\n\n35) Nupanick: Build G2 Damogran\n\n36) sordros: Build G2 Sordros\n\n37) Cinnibar: Attack Y1W Sordros\n\tCinnibar: I tried to &#39;attack Y1 sordros&#39; and got error that ship Y1 is not in system sordros.  I see it though.\n\n38) MikeYarrum: Move G1 Sakaki Kaorin\n\tCinnibar: Never mind, found the small print showing the correct format.  My bad.  Sorry.\n\n39) Nupanick: Move Y2 Nupanick Damogran\n\n40) sordros: Move G1 Sordros Verdega\n\n41) Cinnibar: Build Y1 Sordros\n\n42) MikeYarrum: Trade G1 B1 Kaorin\n\n43) Nupanick: Trade G1 R1 Damogran\n\n44) sordros: Sacrifice B1 Verdega\nTrade G2 R2 Sordros\n\n45) Cinnibar: Build Y1 Sordros\nCatastrophe Sordros Y\n\n46) MikeYarrum: Build G1 Sakaki\n\n47) Nupanick: Build R2 Damogran\n\n48) sordros: Trade G1 Y1 Verdega\n\n49) Cinnibar: Build R2 Sordros\n\n50) MikeYarrum: Build G1 Mikeyarrum\n\n51) Nupanick: Move R1 Damogran Sordros\nCatastrophe Sordros Red\n\n52) Cinnibar: Build Y1 Cinnibar\n\tNupanick: Take that, SordroS and Cinnibar!\n\n53) MikeYarrum: Move G1 Sakaki Kaorin\n\tMikeYarrum: Shoot, what do I do now?\n\n54) Nupanick: Build R1 Damogran\n\n55) Cinnibar: Discover R1 Cinnibar Y1 Hyperion\n\n56) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n57) MikeYarrum: Build Y2 Yomi\n\n58) Cinnibar: Move R1 Hyperion Damogran\n\tMikeYarrum: Resignation? Why are his pieces still around? Don&#39;t leave me all alone against Cinnibar!\n\n59) MikeYarrum: Build B1 Kaorin\n\n60) Cinnibar: Attack G1S Damogran\n\tCinnibar: Hard time. :)  Forced surrender when time rounds out.  I imagine Nupanick will be surprised when finally logs back in. :)\n\n61) MikeYarrum: Trade B1 Y1 Kaorin\n\tMikeYarrum: Oh! I missed that thing about Hard Time.\n\n62) Cinnibar: Attack R1S Damogran\n\n63) MikeYarrum: Build Y2 Kaorin\n\n64) Cinnibar: Sacrifice Y1 Cinnibar\nMove R1 Damogran Nupanick\n\n65) MikeYarrum: Build B1 Kaorin\n\n66) Cinnibar: Attack R1S Nupanick\n\n67) MikeYarrum: Build G1 Kaorin\n\n68) Cinnibar: Build Y1 Cinnibar\n\n69) MikeYarrum: Build Y2 Kaorin\n\n70) Cinnibar: Trade R1 B1 Nupanick\n\n71) MikeYarrum: Build R1 Kaorin\n\n72) Cinnibar: Sacrifice Y1 Cinnibar\nMove B1 Nupanick Kaorin\nCatastrophe Kaorin B\n\n73) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n74) Cinnibar: Build Y1 Cinnibar\n\n75) MikeYarrum: Build G1 Sakaki\n\n76) Cinnibar: Build R1 Cinnibar\n\n77) MikeYarrum: Build R2 Mikeyarrum\n\n78) Cinnibar: Build R2 Damogran\n\n79) MikeYarrum: Trade R1 B1 Mikeyarrum\n\n80) Cinnibar: Sacrifice R1 Damogran\nAttack R2S Damogran\n\n81) MikeYarrum: Build R1 Mikeyarrum\n\n82) Cinnibar: Sacrifice R2 Damogran\nAttack G2S Damogran\nAttack Y2S Damogran\n\n83) MikeYarrum: Build G1 Mikeyarrum\n\n84) Cinnibar: Build R1 Damogran\n\n85) MikeYarrum: Move R2 Mikeyarrum Yomi\n\n86) Cinnibar: Build R2 Nupanick\n\n87) MikeYarrum: Build R2 Mikeyarrum\n\n88) Cinnibar: Move R2 Damogran Verdega\n\n89) MikeYarrum: Move B1 Mikeyarrum Yomi\n\n90) Cinnibar: Sacrifice G2 Damogran\nBuild R2 Damogran\nBuild R3 Verdega\n\n91) MikeYarrum: Build R3 Yomi\n\n92) Cinnibar: Sacrifice R2 Damogran\nAttack B3W Verdega\nAttack Y1W Verdega\n\n93) MikeYarrum: Move R3 Yomi Damogran\n\n94) Cinnibar: Trade Y2 R2 Damogran\n\n95) MikeYarrum: Build R3 Yomi\n\n96) Cinnibar: Trade R2 B2 Nupanick\n\n97) MikeYarrum: Attack G1N Damogran\n\n98) Cinnibar: Attack G1E Damogran\n\n99) MikeYarrum: Attack R2N Damogran\n\n100) Cinnibar: Build R2 Damogran\nCatastrophe Damogran R\n\n101) MikeYarrum: Move R2 Yomi Damogran\n\n102) Cinnibar: Sacrifice Y1 Cinnibar\nMove G1 Damogran Verdega\n\n103) MikeYarrum: Move G1 Sakaki Damogran\n\n104) Cinnibar: Build Y1 Cinnibar\n\n105) MikeYarrum: Build G1 Sakaki\n\n106) Cinnibar: Move R3 Verdega Damogran\n\n107) MikeYarrum: Build B1 Yomi\n\n108) Cinnibar: Attack R2E Damogran\n\n109) MikeYarrum: Build B1 Yomi\n\n110) Cinnibar: Attack G1E Damogran\n\n111) MikeYarrum: Discover Y2 Yomi G1 Osaka\n\n112) Cinnibar: Sacrifice Y1 Cinnibar\nMove R3 Damogran Osaka\n\n113) MikeYarrum: Sacrifice Y2 Osaka\nMove B1 Yomi Osaka\nMove B1 Osaka Sakaki\n\n114) Cinnibar: Build Y1 Verdega\n\n115) MikeYarrum: Discover G1 Sakaki Y2 Kaorin\n\n116) Cinnibar: Sacrifice Y1 Verdega\nMove R3 Osaka Kaorin\n\n\tNupanick: wtf is hard time? I didn&#39;t get a warning or anything? I didn&#39;t even know it was my turn!\n\tMikeYarrum: Hard Time means you are automatically resigned when your time is up. Sorry if you didn&#39;t know.\n\nHomeworlds Online (SDG# 7489)\nStarted: 2007.4.21, Ended: 2007.4.26\nParticipants: zoltar (S), sordros (N)\nWinner: zoltar\n\n1) sordros: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) sordros: Build Y1 Sordros\n\n4) zoltar: Build G1 Zoltar\n\n5) sordros: Build Y1 Sordros\n\n6) zoltar: Build G1 Zoltar\n\n7) sordros: Discover Y1 Sordros G3 Picolino\n\n8) zoltar: Discover G1 Zoltar B2 Bluemoon\n\n9) sordros: Build Y2 Picolino\n\n10) zoltar: Build G2 Bluemoon\n\n11) sordros: Build Y2 Sordros\n\n12) zoltar: Trade G2 Y2 Bluemoon\n\n13) sordros: Trade Y2 B2 Sordros\n\n14) zoltar: Build Y2 Bluemoon\n\n15) sordros: Build B1 Sordros\n\n16) zoltar: Discover Y2 Bluemoon G3 Greengiant\n\n17) sordros: Move Y2 Picolino Bluemoon\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Greengiant\n\n19) sordros: Move Y1 Picolino Bluemoon\nCatastrophe Bluemoon Yellow\n\tsordros: Nice move.  I&#39;ll have to take note of that :-)\n\n20) zoltar: Build G2 Bluemoon\n\n21) sordros: Trade Y1 R1 Sordros\n\tzoltar: Thanx, Earthling!\n\n22) zoltar: Trade G2 R2 Zoltar\n\n23) sordros: Trade B2 G2 Sordros\n\n24) zoltar: Build G2 Bluemoon\n\n25) sordros: Discover G2 Sordros Y3 Mugie\n\n26) zoltar: B G3 Zoltar\n\n27) sordros: Move G2 Mugie Bluemoon\nCatastrophe Bluemoon Green\n\n28) zoltar: Discover Y3 Greengiant G1 Greenpea\n\n29) sordros: Build B1 Sordros\n\n30) zoltar: Build G2 Zoltar\n\n31) sordros: Discover B1 Sordros G3 Verdega\n\n32) zoltar: Trade G2 B2 Zoltar\n\n33) sordros: Build Y1 Sordros\n\n34) zoltar: Build G2 Zoltar\n\n35) sordros: Build B1 Verdega\n\n36) zoltar: Discover B2 Zoltar Y2 Banana\n\n37) sordros: Trade B1 Y1 Verdega\n\n38) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Greengiant\nBuild Y3 Greenpea\n\n39) sordros: Build B1 Verdega\n\n40) zoltar: Sacrifice Y3 Greenpea\nMove Y3 Greenpea Verdega\nMove Y2 Greengiant Sordros\nMove Y2 Greengiant Sordros\nCatastrophe Sordros Y\n\n41) sordros: Build Y1 Verdega\n\n42) zoltar: Move Y3 Verdega Sordros\n\n43) sordros: Build B2 Sordros\n\n44) zoltar: Sacrifice R2 Zoltar\nAttack R1 Sordros\nAttack B2 Sordros\n\n45) sordros: Build B3 Sordros\n\n46) zoltar: Sacrifice Y3 Sordros\nMove B2 Banana Verdega\nMove B2 Verdega Sordros\nMove R1 Sordros Verdega\nCatastrophe Sordros B\n\tzoltar: gg. Play again?\n\tsordros: GG.\r\nPlay again? Sure! This was my second game, and even though I&#39;m getting all beaten up, I really like it! :-)\n\n\nHomeworlds Online (SDG# 7470)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.23, Ended: 2007.7.25\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 Y2 G3\n\tJesse: It&#39;s been a while since I&#39;ve played you.  This should be fun.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tJesse: Ooh, I just noticed your ZPip challenge.  Obviously, I haven&#39;t been following either the Icehouse list or SDG forums much, lately.  This is the first I&#39;ve heard of Andy&#39;s video.  I believe it&#39;s the first time I&#39;ve ever been mentioned on YouTube, and it feels good.  :D\r\n\r\nIs your challenge still on?  If so, let me just declare myself ineligible up front.  I&#39;ve already got a set, you see.\n\n3) Jesse: Build G1 Jesse\n\tTwoShort: Good to be playing you again too.  The ZPip challenge is still on... At some point I noted that the two people on SDG I&#39;d give a better than 50-50 chance of beating me the next time we played were the same two people who already had ZPips, i.e. you and Andy. \n\tJesse: Heh heh.  Well, we&#39;ll see how this game goes...\n\n4) TwoShort: Build B1 Twoshort\n\n5) Jesse: Trade G3 B3 Jesse\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Jesse: Build B2 Jesse\n\n8) TwoShort: Build B2 Twoshort\n\n9) Jesse: Discover B2 Jesse G3 Gruber\n\n10) TwoShort: Discover B2 Twoshort G2 Ed\n\n11) Jesse: Build G1 Jesse\n\n12) TwoShort: Build Y1 Twoshort\n\n13) Jesse: Trade G1 Y1 Jesse\n\n14) TwoShort: Move Y1 Twoshort Ed\n\n15) Jesse: Move Y1 Jesse Gruber\n\n16) TwoShort: Trade B2 R2 Ed\n\n17) Jesse: Build B2 Gruber\n\n18) TwoShort: Move R2 Ed Gruber\n\tJesse: I should have waited, last night, instead of playing hastily.\n\n19) Jesse: Trade G1 R1 Jesse\n\n20) TwoShort: Attack B2N Gruber\n\tTwoShort: Speaking of playing too hastily...\n\tJesse: This has its drawbacks for me, as well.  I think I would have been better off if I&#39;d done something like building another green at the HW, or a blue at Gruber, instead of moving out my y2, a couple of turns back.\n\tJesse: But yeah, I looked at this sequence before I decided it was okay to build another blue instead of swapping for a red.  I really couldn&#39;t afford losing the moves that would have cost me, especially after scrambling into blue like I did.\n\n21) Jesse: Sacrifice R1 Jesse\nAttack R2 Gruber\n\n22) TwoShort: Build B2 Gruber\n\n23) Jesse: Sacrifice R2 Gruber\nAttack B2 Gruber\nAttack B2 Gruber\n\n24) TwoShort: Build B3 Twoshort\n\n25) Jesse: Discover B2 Gruber G2 Munch\n\n26) TwoShort: Trade B3 R3 Twoshort\n\n27) Jesse: Trade B2 R2 Gruber\n\n28) TwoShort: Move R3 Twoshort Munch\n\n29) Jesse: Build B2 Munch\n\n30) TwoShort: Attack B2N Munch\n\n31) Jesse: Build B3 Gruber\n\n32) TwoShort: Attack B2N Munch\n\n33) Jesse: Trade B3 G3 Jesse\n\tJesse: I wish I&#39;d discovered a y2 instead of a g2, there.  Oh well.\n\n34) TwoShort: Build B3 Twoshort\n\n35) Jesse: Discover B2 Gruber G2 Bjorn\n\n36) TwoShort: Sacrifice B2 Munch\nTrade B2 Y2 Munch\nTrade B3 R3 Twoshort\n\n37) Jesse: Build Y1 Gruber\n\n38) TwoShort: Move R3 Twoshort Bjorn\n\n39) Jesse: Build G1 Jesse\n\n40) TwoShort: Build Y2 Ed\n\n41) Jesse: Discover Y1 Gruber G1 Leroy\n\n42) TwoShort: Build Y3 Munch\n\n43) Jesse: Sacrifice G3 Jesse\nBuild G1 Jesse\nBuild G3 Jesse\nBuild Y3 Leroy\n\n44) TwoShort: Sacrifice Y2 Munch\nMove Y2 Ed Leroy\nMove Y1 Ed Leroy\nCatastrophe Leroy Yellow\n\n45) Jesse: Discover G1 Jesse B3 Harvey\n\n46) TwoShort: Move R3 Munch Harvey\n\n47) Jesse: Sacrifice G1 Harvey\nBuild B2 Gruber\n\n48) TwoShort: Attack B2N Bjorn\n\n49) Jesse: Trade B2 R2 Gruber\n\n50) TwoShort: Build B2 Bjorn\n\n51) Jesse: Move R2 Gruber Jesse\n\n52) TwoShort: Trade B2 Y2 Bjorn\n\n53) Jesse: Build B2 Gruber\n\n54) TwoShort: Sacrifice Y3 Munch\nMove B1 Twoshort Bjorn\nMove B1 Bjorn Gruber\nMove B2 Bjorn Gruber\nCatastrophe Gruber Blue\n\n55) Jesse: Build R1 Gruber\n\n56) TwoShort: Build Y1 Twoshort\n\n57) Jesse: Build Y1 Gruber\n\tJesse: I&#39;m torm between sticking it out and giving in to the apparently inevitable.\n\n58) TwoShort: Build Y2 Twoshort\n\n59) Jesse: Discover Y1 Gruber G2 Sam\n\n60) TwoShort: Trade Y2 G2 Twoshort\n\tTwoShort: Sorry for the slow play... that &quot;life&quot; thing...\r\nAs far as sticking it out or not, it&#39;s your call... I certainly like my position, but I can&#39;t find any short route to victory.\n\tJesse: No, sometimes the most reliable victory is a long, slow process.  Still, it&#39;s not over yet.  It&#39;s just Very Long Odds(TM).\r\n\r\nThe slow play is not a problem, except that I would hate to win this one on time.\n\n61) Jesse: Discover R1 Gruber G1 Johnny\n\n62) TwoShort: Trade R3 Y3 Harvey\n\n63) Jesse: Discover R2 Jesse Y3 Rrrrr\n\n64) TwoShort: Build Y2 Bjorn\n\n65) Jesse: Trade G1 B1 Jesse\n\n66) TwoShort: Move R3 Bjorn Gruber\n\n67) Jesse: Build R1 Gruber\n\n68) TwoShort: Sacrifice Y1 Twoshort\nMove R3 Gruber Sam\n\n69) Jesse: Move Y1 Sam Johnny\n\n70) TwoShort: Build R1 Sam\n\n71) Jesse: Build Y1 Johnny\n\n\tJesse: Aw, that&#39;s a shame.  Let me know when you&#39;re finished traveling.  We can start a fresh game.\n\tTwoShort: Sorry about that; I thought I&#39;d get a chance to get online and make some moves while on the road, then it didn&#39;t work out that way.\n\nHomeworlds Online (SDG# 7527)\nStarted: 2007.4.24, Ended: 2007.5.4\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y3 B1 G3\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 B1 Ts52\n\n6) zoltar: Trade G1 B1 Zoltar\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) zoltar: Build B2 Zoltar\n\n9) ts52: Build B2 Kermit\n\n10) zoltar: Trade B2 R2 Zoltar\n\n11) ts52: Trade B1 R1 Kermit\n\n12) zoltar: Build R1 Zoltar\n\n13) ts52: Build G1 Ts52\n\n14) zoltar: Trade R1 Y1 Zoltar\n\n15) ts52: Build B1 Kermit\n\n16) zoltar: Discover B1 Zoltar G2 Greendale\n\n17) ts52: Trade B2 G2 Kermit\n\n18) zoltar: Build B2 Greendale\n\n19) ts52: Trade G1 Y1 Ts52\n\n20) zoltar: Trade B2 Y2 Greendale\n\n21) ts52: Build Y2 Ts52\n\n22) zoltar: Build Y2 Greendale\n\n23) ts52: Move Y1 Ts52 Kermit\n\n24) zoltar: Trade Y1 G1 Zoltar\n\n25) ts52: Build G1 Ts52\n\n26) zoltar: Build B2 Greendale\n\n27) ts52: Discover G1 Ts52 Y3 Zoe\n\n28) zoltar: Move B2 Greendale Zoe\n\n29) ts52: Build G1 Ts52\n\n30) zoltar: Build R1 Zoltar\n\n31) ts52: Discover Y2 Ts52 B3 Gonzo\n\n32) zoltar: Trade Y2 R2 Greendale\n\n33) ts52: Discover G1 Zoe Y2 Bert\n\n34) zoltar: Move R2 Zoltar Bert\n\n35) ts52: Sacrifice G3 Ts52\nBuild G2 Bert\nBuild G3 Ts52\nBuild R1 Kermit\n\n36) zoltar: Sacrifice R2 Greendale\nAttack G1 Bert\nAttack G2 Bert\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Gonzo\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Zoe\nBuild B3 Greendale\n\n39) ts52: Build B3 Kermit\n\n40) zoltar: Sacrifice Y2 Greendale\nMove G1 Bert Kermit\nMove G2 Bert Kermit\nCatastrophe Kermit G\n\n41) ts52: Trade G1 R1 Ts52\n\n42) zoltar: Trade B2 G2 Zoe\n\n43) ts52: Build G1 Ts52\n\n44) zoltar: Build G1 Zoe\n\n45) ts52: Move G1 Ts52 Gonzo\n\n46) zoltar: Discover G1 Zoe Y1 Yellowstone\n\n47) ts52: Trade Y3 R3 Gonzo\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoe\nBuild G3 Yellowstone\nBuild G3 Zoltar\n\n49) ts52: Move R3 Gonzo Bert\n\n50) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild R1 Bert\nBuild R2 Bert\nCatastrophe Bert R\n\n51) ts52: Build Y1 Gonzo\n\tzoltar: Jihadists strike in Bert! \n\n52) zoltar: Trade B3 Y3 Greendale\n\n53) ts52: Trade Y1 R1 Gonzo\n\n54) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild B1 Zoe\nBuild B2 Greendale\n\n55) ts52: Build R2 Ts52\n\n56) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild B3 Greendale\nBuild B3 Zoe\n\n57) ts52: Build R2 Gonzo\n\n58) zoltar: Sacrifice B2 Zoe\nTrade B3 R3 Zoe\nTrade B3 R3 Greendale\n\n59) ts52: Build Y1 Gonzo\n\n60) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoe\nBuild R3 Zoltar\n\n61) ts52: Discover R1 Gonzo Y2 Sol\n\n62) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild Y2 Greendale\nBuild B2 Zoe\n\n63) ts52: Move R2 Gonzo Sol\n\n64) zoltar: Sacrifice Y2 Greendale\nMove R1 Zoltar Sol\nMove R2 Zoe Sol\nCatastrophe Sol R\n\n65) ts52: Move R1 Ts52 Gonzo\n\n66) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild B3 Greendale\nBuild B3 Zoe\n\n67) ts52: Build R1 Ts52\n\n68) zoltar: Move B3 Greendale Gonzo\n\tzoltar: The Blue Fleet is mine, all mine!!! [Insert sinister Evil Overlord laughter here.]\n\tts52: Ah yes, I wont be much longer for this world then. Thanks for the game.\n\n69) ts52: Discover Y2 Gonzo R2 Deetoo\n\tzoltar: m b3 greendale gonzo\n\n70) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild R1 Greendale\nBuild R2 Zoltar\n\tzoltar: oops\n\tzoltar: Let me know if you wish to play another after this.\n\tzoltar: Thanks for the game too.\n\n71) ts52: Build Y2 Gonzo\n\n72) zoltar: Sacrifice R3 Zoltar\nAttack Y2 Gonzo\nAttack Y1 Gonzo\nAttack R1 Gonzo\n\n73) ts52: Sacrifice G1 Gonzo\nBuild Y2 Deetoo\n\n74) zoltar: Sacrifice G3 Yellowstone\nBuild G1 Zoe\nBuild G3 Yellowstone\nBuild R3 Gonzo\n\n\tts52: I don&#39;t think I&#39;ve ever seen the reserve run out before. Thanks again for the game.\n\tzoltar: gg -- play again?\n\nHomeworlds Online (SDG# 7523)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.24, Ended: 2007.4.25\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B2 Y2 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) TwoShort: Trade G1 Y1 Bluonia\n\n12) zoltar: Move Y1 Zoltar Bluonia\n\n13) TwoShort: Build Y2 Twoshort\n\n14) zoltar: Sacrifice R1 Zoltar\nAttack Y1 Bluonia\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) zoltar: Discover Y1 Bluonia G1 Greenpea\n\n17) TwoShort: Build Y2 Twoshort\n\n18) zoltar: Build Y2 Greenpea\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort Bluonia\nMove G3 Bluonia Zoltar\n\n\tzoltar: Oops, I should have stuck with my first try.  Well that sucks!  gg.\n\nHomeworlds Online (SDG# 7531)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.24, Ended: 2007.5.1\nParticipants: mneme (S), zoltar (N)\nWinner: mneme\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) mneme: Homeworld R2 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\tmneme: bah.  I&#39;d been planning on trying out the &quot;no yellows&quot; opening for a while, but I didn&#39;t really want a nigh-identical setup.\n\n4) mneme: Build G1 Mneme\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n8) mneme: Build G1 Mneme\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) mneme: Build G1 Mneme\n\tzoltar: I&#39;m not used to the red star setup either, and I don&#39;t think I&#39;ve played a symmetrical red-blue star game before.\n\n11) zoltar: Build R1 Zoltar\n\tmneme: Nor have I.  Should be interesting, at least.\n\n12) mneme: Discover G1 Mneme R3 Hunter\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) mneme: Discover G1 Mneme B3 Harper\n\n15) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n16) mneme: Build G1 Mneme\n\n17) zoltar: Move R1 Zoltar Greenbelt\n\n18) mneme: Build G2 Harper\n\tzoltar: I think I&#39;m way behind in this one -- probably in big trouble here.\n\n19) zoltar: Build G2 Zoltar\n\tmneme: I hope so... :)  We&#39;ll see\n\n20) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Hunter\nBuild Y1 Mneme\n\tzoltar: I just lost a Homeworlds game in 8 moves.  That must be a record.\n\tmneme: wow.  To whom?\r\n\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Zoltar\n\n22) mneme: Move Y1 Mneme Harper\n\n23) zoltar: Discover Y2 Zoltar B2 Blueberry\n\n24) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Harper\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Blueberry\nBuild R1 Greenbelt\n\n26) mneme: Move Y2 Mneme Hunter\n\n27) zoltar: Sacrifice Y2 Zoltar\nMove G2 Zoltar Blueberry\nMove Y2 Blueberry Harper\n\tzoltar: I&#39;m pretty much doomed unless you make a major mistake.\n\tmneme: true, but that&#39;s not that unlikely.\n\n28) mneme: Sacrifice G3 Hunter\nBuild G3 Hunter\nBuild G3 Mneme\nBuild Y2 Hunter\n\n29) zoltar: Build R2 Greenbelt\n\n30) mneme: Trade Y3 R3 Harper\n\n31) zoltar: Build Y3 Zoltar\n\n32) mneme: Attack Y2 Harper\n\n33) zoltar: Sacrifice Y3 Blueberry\nMove R1 Greenbelt Hunter\nMove R1 Greenbelt Hunter\nMove R2 Greenbelt Hunter\nCatastrophe Hunter R\n\n34) mneme: Move R3 Harper Blueberry\n\n35) zoltar: Sacrifice G2 Blueberry\nBuild B1 Greenbelt\nBuild B2 Greenbelt\n\n36) mneme: Sacrifice Y2 Harper\nMove R3 Blueberry Harper\nMove R3 Harper Greenbelt\n\n37) zoltar: Sacrifice B2 Greenbelt\nTrade B1 R1 Greenbelt\nTrade B1 R1 Greenbelt\n\n38) mneme: Sacrifice Y1 Mneme\nMove R3 Greenbelt Harper\n\n39) zoltar: Move Y3 Zoltar Greenbelt\n\n40) mneme: Build R2 Harper\n\n41) zoltar: Discover R1 Greenbelt Y1 Yellowstone\n\n42) mneme: Discover R2 Harper G2 Grocer\n\n43) zoltar: Build Y2 Greenbelt\n\n44) mneme: Discover G2 Harper B2 Archer\n\n45) zoltar: Build G1 Zoltar\n\n46) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Archer\nBuild Y2 Mneme\n\n47) zoltar: Discover Y3 Greenbelt B3 Desperation\n\n48) mneme: Sacrifice Y3 Mneme\nMove G1 Harper Archer\nMove G2 Archer Zoltar\nMove G1 Archer Zoltar\nCatastrophe Zoltar G\n\n49) zoltar: Sacrifice Y3 Desperation\nMove R1 Yellowstone Greenbelt\nMove Y1 Zoltar Greenbelt\nPass\n\n\tzoltar: gg -- well done.\n\tmneme: Cool game (and nice to win one occasionally) -- thanks!\n\nHomeworlds Online (SDG# 7529)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.24, Ended: 2007.4.28\nParticipants: MikeYarrum (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) MikeYarrum: Homeworld Y1 B3 G3\n\tTwoShort: Howdy.\n\tMikeYarrum: Hello again. (darn, I wanted banker...)\n\n3) TwoShort: Build G1 Twoshort\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\tTwoShort: I noticed if you go through the &quot;New Challenge&quot; screen you can specify who goes first.  If you challenge me that way next time, I&#39;ll be happy to go second.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tMikeYarrum: Thanks, but it&#39;s no big deal. =D I need to learn to be flexible.\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) TwoShort: Build Y2 Twoshort\n\n8) MikeYarrum: Build Y2 Mikeyarrum\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) MikeYarrum: Discover Y1 Mikeyarrum Y2 Kaorin\n\n11) TwoShort: Build Y3 Grogar\n\tMikeYarrum: Kaorin is relatively isolated in space, and colonists must rely on advanced transport technology for contact with other worlds.\n\n12) MikeYarrum: Build G1 Mikeyarrum\n\tTwoShort: They should be careful; advanced technology can be dangerous.\n\n13) TwoShort: Build Y3 Twoshort\n\n14) MikeYarrum: Discover Y2 Mikeyarrum G2 Yomi\n\n15) TwoShort: Discover Y2 Twoshort Y3 Niroak\n\tMikeYarrum: Yomi is rich in natural resources and an ideal system for construction.\n\n16) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n17) TwoShort: Build G1 Twoshort\n\n18) MikeYarrum: Build G1 Mikeyarrum\n\n19) TwoShort: Move G1 Twoshort Niroak\n\n20) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n21) TwoShort: Discover Y2 Niroak B2 Bluonia\n\n22) MikeYarrum: Build G1 Mikeyarrum\n\n23) TwoShort: Sacrifice G1 Niroak\nBuild Y3 Bluonia\n\n24) MikeYarrum: Discover G1 Mikeyarrum B2 Chihiro\n\n25) TwoShort: Trade Y2 R2 Bluonia\n\n26) MikeYarrum: Build Y2 Yomi\n\n27) TwoShort: Trade Y3 R3 Bluonia\n\n\tMikeYarrum: I know this probably seems like a really short game, but I think I made way too many mistakes, and you&#39;re really far ahead. Mind if we start over?\n\tTwoShort: I&#39;d be happy to.  For what it&#39;s worth, I believe it&#39;s mate in 3:  Next turn I sacrifice my y3 at twoshort to move my other y3 and my r3 into your homeworld.  You can only take one of them, so next I sac my r2 to take it back and your g3 as well. Finally I sac the r3 to take whatever is left.  I&#39;m pretty sure there&#39;s nothing you can do to derail that.  I don&#39;t mean to gloat, it&#39;s just that I almost never can figure things out that far in advance, so if you&#39;re going to resign I had to at least tell you about it :)\n\tMikeYarrum: No, I don&#39;t mind. =D Explaining how something is a mistake is the best way to learn.\n\nHomeworlds Online (SDG# 7530)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.24, Ended: 2007.4.29\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build B1 Zoltar\n\n5) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: The lovely but perilous mountains of Sakaki have made her inhabitants naturals at transport technology\n\n8) zoltar: Build B2 Zoltar\n\n9) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n10) zoltar: Trade B2 R2 Zoltar\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) zoltar: Build B2 Zoltar\n\n13) MikeYarrum: Discover G1 Mikeyarrum Y3 Kagura\n\n14) zoltar: Discover B2 Zoltar G2 Greenhills\n\n15) MikeYarrum: Build G1 Mikeyarrum\n\n16) zoltar: Trade Y3 G3 Zoltar\n\n17) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Sakaki\nBuild G2 Sakaki\nBuild G3 Mikeyarrum\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenhills\nBuild B2 Greenhills\nBuild B3 Zoltar\n\n19) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Kagura\nBuild Y1 Mikeyarrum\nBuild G3 Mikeyarrum\n\n20) zoltar: Trade B3 Y3 Zoltar\n\n21) MikeYarrum: Discover Y1 Mikeyarrum B3 Nyamo\n\n22) zoltar: Build B3 Zoltar\n\n23) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n24) zoltar: Trade B3 R3 Zoltar\n\n25) MikeYarrum: Sacrifice G2 Sakaki\nBuild Y1 Nyamo\nBuild Y2 Nyamo\n\n26) zoltar: Trade B2 Y2 Greenhills\n\n27) MikeYarrum: Discover Y2 Nyamo B2 Yukari\n\n28) zoltar: Build B3 Greenhills\n\n29) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n30) zoltar: Trade B3 R3 Greenhills\n\n31) MikeYarrum: Move G2 Sakaki Yukari\n\n32) zoltar: Move R3 Zoltar Yukari\n\n33) MikeYarrum: Sacrifice Y2 Yukari\nMove G2 Yukari Nyamo\nMove G3 Kagura Mikeyarrum\n\n34) zoltar: Move R3 Greenhills Nyamo\n\n35) MikeYarrum: Trade Y1 R1 Nyamo\n\n36) zoltar: Build B3 Greenhills\n\n37) MikeYarrum: Move G2 Nyamo Greenhills\n\n38) zoltar: Sacrifice R2 Zoltar\nAttack G2 Greenhills\nAttack R1 Nyamo\n\n39) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G1 Kagura\nBuild G2 Sakaki\nBuild Y1 Nyamo\n\n40) zoltar: Sacrifice G2 Greenhills\nBuild B3 Zoltar\nBuild Y2 Greenhills\n\n41) MikeYarrum: Move G1 Kagura Greenhills\n\n42) zoltar: Sacrifice R3 Yukari\nAttack G1 Greenhills\nAttack Y1 Nyamo\nAttack Y1 Nyamo\n\n43) MikeYarrum: Move G1 Kagura Greenhills\n\n44) zoltar: Sacrifice Y2 Greenhills\nMove Y1 Nyamo Mikeyarrum\nMove Y1 Nyamo Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n45) MikeYarrum: Move G1 Sakaki Greenhills\nCatastrophe Greenhills Green\n\n46) zoltar: Sacrifice Y3 Zoltar\nMove R1 Nyamo Mikeyarrum\nMove R3 Nyamo Mikeyarrum\nPass\nCatastrophe Mikeyarrum R\n\tzoltar: Zoltar to fleet: all ships storm the MikeYarrum homeworld! Attack!\n\n\tMikeYarrum: But we&#39;re not going down without a fight! Kamikaze Green, this is your finest hour! Move all &#39;zig&#39; for great justice!\r\n\r\n(oh, and yes please to the new game!)\n\nHomeworlds Online (SDG# 7535)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.26, Ended: 2007.5.4\nParticipants: sordros (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B3 G3\n\n2) sordros: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) sordros: Build G1 Sordros\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) zoltar: Build Y2 Zoltar\n\n8) sordros: Discover Y1 Sordros G3 Gamma\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) sordros: Build G1 Sordros\n\n11) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n12) sordros: Trade G1 B1 Sordros\n\n13) zoltar: Build R1 Zoltar\n\n14) sordros: Build B1 Sordros\n\n15) zoltar: Trade R1 B1 Zoltar\n\n16) sordros: Trade B1 R1 Sordros\n\n17) zoltar: Build G1 Zoltar\n\n18) sordros: Move B1 Sordros Gamma\n\n19) zoltar: Move B1 Zoltar Greenpea\n\n20) sordros: Build G1 Sordros\n\n21) zoltar: Build G2 Zoltar\n\n22) sordros: Build G2 Sordros\n\n23) zoltar: Discover G2 Zoltar Y1 Yellowstone\n\n24) sordros: Discover G2 Sordros Y3 Flavega\n\n25) zoltar: Build G2 Yellowstone\n\n26) sordros: Build Y2 Gamma\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Greenpea\nBuild B1 Greenpea\n\n28) sordros: Discover Y2 Gamma R1 Rugeta\n\n29) zoltar: Move G2 Yellowstone Flavega\n\tzoltar: I am soooo stuck.  I&#39;ll have to sleep on this one and take a break and come back tomorrow to find something to do here.\n\n30) sordros: Sacrifice G3 Sordros\nBuild Y3 Rugeta\nBuild B2 Gamma\nBuild G3 Sordros\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoltar\nBuild R2 Zoltar\n\n32) sordros: Sacrifice G3 Sordros\nBuild G3 Sordros\nBuild R2 Sordros\nBuild R3 Sordros\n\n33) zoltar: Sacrifice R1 Zoltar\nAttack G2 Flavega\n\n34) sordros: Move R3 Sordros Flavega\n\n35) zoltar: Sacrifice Y2 Greenpea\nMove G2 Flavega Sordros\nMove G2 Flavega Sordros\nCatastrophe Sordros G\n\n36) sordros: Build Y2 Gamma\n\n37) zoltar: Sacrifice Y3 Greenpea\nMove G3 Zoltar Yellowstone\nMove G3 Yellowstone Flavega\nMove G3 Flavega Sordros\n\n38) sordros: Move R3 Flavega Sordros\n\n39) zoltar: Trade G3 R3 Sordros\nCatastrophe Sordros R\n\tzoltar: Thanks for the game.  You were winning all the way to last two moves when you blundered by building that y2 instead of sacking your other y2 and sending your y3 back to your homeworld.  You can&#39;t leave your homeworld without a 3-pip ship even for  one turn in a situation like this!\n\tsordros: Thanks for the game and for the feedback Zoltar!\r\nI&#39;m liking this game more and more.  Should buy some pyramids and get a live partner as well.  Hopefully our next game I&#39;ll be a little more challenging.  \n\n\nHomeworlds Online (SDG# 7537)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.26, Ended: 2007.5.16\nParticipants: TwoShort (S), sordros (N)\nWinner: TwoShort\n\n1) sordros: Homeworld Y2 B3 G3\n\n2) TwoShort: Homeworld Y1 B2 G3\n\n3) sordros: Build G1 Sordros\n\n4) TwoShort: Build G1 Twoshort\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) TwoShort: Build G1 Twoshort\n\n7) sordros: Build Y1 Sordros\n\n8) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n9) sordros: Discover Y1 Sordros G1 Verdeto\n\n10) TwoShort: Build G2 Twoshort\n\n11) sordros: Sacrifice G3 Sordros\nBuild Y2 Verdeto\nBuild Y2 Verdeto\nBuild Y3 Sordros\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G2 Yellonia\nBuild G3 Twoshort\n\n13) sordros: Trade Y3 G3 Sordros\n\n14) TwoShort: Discover G2 Twoshort G3 Greensville\n\n15) sordros: Build Y3 Sordros\n\n16) TwoShort: Trade G1 R1 Twoshort\n\n17) sordros: Trade Y1 R1 Sordros\n\n18) TwoShort: Build G1 Twoshort\n\n19) sordros: Build Y1 Sordros\n\n20) TwoShort: Move G2 Yellonia Verdeto\n\n21) sordros: Sacrifice R1 Sordros\nAttack G2 Verdeto\n\n22) TwoShort: Move G1 Yellonia Verdeto\n\n23) sordros: Sacrifice Y2 Verdeto\nDiscover G2 Verdeto B3 Zuleo\nMove Y2 Verdeto Zuleo\n\n24) TwoShort: Sacrifice R1 Twoshort\nAttack Y1N Verdeto\n\n25) sordros: Trade Y1 R1 Sordros\n\n26) TwoShort: Trade G1 R1 Twoshort\n\n27) sordros: Move Y3 Sordros Verdeto\n\n28) TwoShort: Build G1 Verdeto\n\n29) sordros: Build Y1 Verdeto\n\n30) TwoShort: Sacrifice G2 Greensville\nBuild G2 Verdeto\nBuild G3 Twoshort\nCatastrophe Verdeto Green\n\n31) sordros: Build Y1 Zuleo\n\n32) TwoShort: Move G3 Twoshort Zuleo\n\n33) sordros: Build G1 Sordros\n\n34) TwoShort: Sacrifice R1 Twoshort\nAttack G2N Zuleo\n\n35) sordros: Trade Y2 G2 Zuleo\n\n36) TwoShort: Trade G3 R3 Zuleo\n\n37) sordros: Build G1 Zuleo\n\n38) TwoShort: Sacrifice R3 Zuleo\nAttack G2N Zuleo\nAttack G1N Zuleo\nAttack Y1N Zuleo\n\n39) sordros: Build R1 Sordros\n\n40) TwoShort: Discover G1 Zuleo G1 Greedo\n\n41) sordros: Discover G1 Sordros Y1 Flaveta\n\n42) TwoShort: Sacrifice G2 Zuleo\nBuild G2 Twoshort\nBuild G3 Zuleo\n\n43) sordros: Trade R1 B1 Sordros\n\n44) TwoShort: Sacrifice G3 Zuleo\nBuild G3 Zuleo\nBuild Y2 Zuleo\nBuild Y2 Zuleo\n\n45) sordros:\nBuild R1 Sordros\n\n46) TwoShort: Move Y2 Zuleo Greedo\n\n47) sordros: Build B1 Sordros\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Greedo\nBuild Y3 Greedo\n\n49) sordros: Move B1 Sordros Flaveta\n\n50) TwoShort: Trade G3 R3 Zuleo\n\n51) sordros:\nBuild G3 Sordros\n\n52) TwoShort: Sacrifice Y2 Greedo\nMove Y3 Greedo Sordros\nMove Y3 Greedo Sordros\n\n53) sordros: Attack Y3 Sordros\n\n54) TwoShort: Sacrifice R3 Zuleo\nAttack R1N Sordros\nAttack R1N Sordros\nAttack G3N Sordros\n\n\tsordros: Thanks for the game!\n\nHomeworlds Online (SDG# 7500)\nVariants: &quot;Sinister&quot;\nStarted: 2007.4.26, Ended: 2007.6.6\nParticipants: Jesse (S), sordros (W), MikeYarrum (N), zoltar (E)\nWinner: Jesse\n\n1) MikeYarrum: Homeworld R3 G2 B3\n\tJesse: Yah!  Look at all those pieces.  Heh heh.  It&#39;s been a while since I&#39;ve played anything other than Binary.  Have a good game, all.\n\tMikeYarrum: Yep! Nice to meet you Jesse, I don&#39;t think we&#39;ve played before.\n\tMikeYarrum: My first try playing something besides b-y-g banker.\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) Jesse: Homeworld R1 B3 G3\n\n4) sordros: Homeworld B1 Y2 G3\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) zoltar: Build G1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) sordros: Build G1 Sordros\n\n9) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n11) Jesse: Trade G1 Y1 Jesse\n\n12) sordros: Trade G1 Y1 Sordros\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) zoltar: Build Y2 Zoltar\n\n15) Jesse: Build Y2 Jesse\n\n16) sordros: Discover Y1 Sordros G3 Verdosia\n\n17) MikeYarrum: Build B1 Mikeyarrum\n\n18) zoltar: Trade Y1 R1 Zoltar\n\n19) Jesse: Discover Y2 Jesse G2 Boz\n\n20) sordros: Build G1 Sordros\n\n21) MikeYarrum: Trade B1 R1 Mikeyarrum\n\n22) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n23) Jesse: Build Y1 Boz\n\n24) sordros: Build Y2 Verdosia\n\n25) MikeYarrum: Discover Y2 Mikeyarrum G1 Chiyo\n\n26) zoltar: Build Y3 Greenbelt\n\n27) Jesse: Build Y3 Jesse\n\n28) sordros: Discover Y2 Verdosia G1 Galatea\n\n29) MikeYarrum: Build Y3 Mikeyarrum\n\n30) zoltar: Move Y3 Greenbelt Chiyo\n\n31) Jesse: Build Y3 Jesse\n\n32) sordros: Build Y3 Galatea\n\n33) MikeYarrum: Move Y2 Chiyo Verdosia\n\n34) zoltar: Build R1 Zoltar\n\n35) Jesse: Trade Y1 R1 Jesse\n\n36) sordros: Trade G1 B1 Sordros\n\n37) MikeYarrum: Discover R1 Mikeyarrum G1 Osaka\n\n38) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Chiyo Verdosia\nMove Y3 Verdosia Sordros\n\n39) Jesse: Discover Y3 Jesse G2 Squa\n\n40) sordros: Build G1 Sordros\n\n41) MikeYarrum: Build R2 Osaka\n\n42) zoltar: Sacrifice R1 Zoltar\nAttack G3W Sordros\n\n43) Jesse: Move R1 Jesse Squa\n\n44) sordros: Build G1 Sordros\n\n45) MikeYarrum: Build B1 Mikeyarrum\n\n46) zoltar: Discover G3 Sordros B3 Bluemoon\n\n47) Jesse: Build G1 Jesse\n\n48) sordros: Build B1 Sordros\n\n49) MikeYarrum: Sacrifice R1 Osaka\nAttack Y1W Verdosia\n\n50) zoltar: Move Y3 Sordros Bluemoon\n\n51) Jesse: Discover G3 Jesse B2 Schnook\n\n52) sordros: Discover B1 Sordros G3 Verdesia\n\n53) MikeYarrum: Move B1 Mikeyarrum Osaka\n\n54) zoltar: Build G2 Bluemoon\n\n55) Jesse: Build G2 Schnook\n\n56) sordros: Sacrifice Y2 Galatea\nMove Y3 Galatea Verdesia\nMove Y3 Verdesia Sordros\n\n57) MikeYarrum: Trade B1 Y1 Osaka\n\n58) zoltar: Sacrifice G3 Bluemoon\nBuild Y2 Bluemoon\nBuild G1 Zoltar\nBuild G3 Bluemoon\n\n59) Jesse: Sacrifice G3 Schnook\nBuild R1 Squa\nBuild R1 Squa\nBuild G3 Schnook\n\n60) sordros: Build B1 Verdesia\n\n61) MikeYarrum: Build Y2 Osaka\n\n62) zoltar: Discover Y3 Bluemoon B2 Blueberry\n\n63) Jesse: Trade G3 R3 Schnook\n\n64) sordros: Build G3 Sordros\n\n65) MikeYarrum: Build R2 Osaka\n\n66) zoltar: Build R2 Zoltar\n\n67) Jesse: Sacrifice Y2 Boz\nMove R3 Schnook Bluemoon\nMove R3 Bluemoon Sordros\n\n68) Jesse: Attack G3W Sordros\n\n69) MikeYarrum: Discover Y1 Osaka R3 Kimura\n\tJesse: Hrm.  That&#39;s pretty uncool, in a sinister game.  At least I didn&#39;t have to make a big, crippling sacrifice to get in there.\n\n70) zoltar: Move G2 Bluemoon Sordros\nCatastrophe Sordros G\n\tsordros: Oops, my mistake Jesse... This is my first sinister game.  I thought it would grant you the win if I resigned.  I apologize.\n\n71) Jesse: Attack Y3W Sordros\n\n72) MikeYarrum: Sacrifice Y2 Osaka\nMove Y1 Kimura Sordros\nMove Y1 Verdosia Sordros\nCatastrophe Sordros Yellow\n\tJesse: Okay, Sordros.  Now you know.  Of course, if it *had* given me the win, that would have been unfair to someone who might have been able to defeat their target before me.  (You never know!)  In a sinister game, it&#39;s best to stick it out.\n\tJesse: On another topic, you do know what your big mistake was, don&#39;t you?\n\tzoltar: Not as big as mine, which was to weaken but not obliterate Sordros after his big mistake!\n\n73) zoltar: Move R2 Zoltar Verdesia\n\tJesse: Indeed, Zoltar.  That&#39;s risky business.  You did profit well from it, however.\n\n74) Jesse: Discover R1 Squa G1 Rutabaga\n\n75) MikeYarrum: Move Y1 Mikeyarrum Osaka\n\n76) zoltar: Move Y3 Blueberry Rutabaga\n\n77) Jesse: Attack B1W Sordros\n\n78) MikeYarrum: Move R2 Osaka Boz\n\n79) zoltar: Build R2 Verdesia\n\n80) Jesse: Move Y1 Boz Sordros\n\n81) MikeYarrum: Build Y1 Osaka\n\n82) zoltar: Sacrifice R2 Verdesia\nAttack B1W Verdesia\nAttack R1S Rutabaga\n\n83) Jesse: Build Y1 Jesse\n\n84) MikeYarrum: Build Y2 Verdosia\n\n85) zoltar: Attack B1W Verdesia\n\n86) Jesse: Move B1 Sordros Squa\n\n87) MikeYarrum: Build Y2 Mikeyarrum\n\n88) zoltar: Build R2 Rutabaga\n\n89) Jesse: Trade Y3 G3 Jesse\n\n90) MikeYarrum: Sacrifice Y2 Verdosia\nMove Y1 Osaka Squa\nMove Y1 Osaka Squa\n\tzoltar: Can anyone see the stashes at the top?  I click on refresh and then tried another computer, but they don&#39;t show up for me.\n\tMikeYarrum: I can&#39;t. It&#39;s a bug that&#39;s hit another Homeworlds game I&#39;m in.\n\tAaron: Had a major permissions snafu the other day.  I missed this directory.  Fixed.\n\n91) zoltar: Move Y2 Bluemoon Squa\nCatastrophe Squa Y\n\n92) Jesse: Sacrifice G2 Schnook\nBuild R2 Sordros\nBuild R3 Squa\n\n93) MikeYarrum: Build R3 Osaka\n\n94) zoltar: Move R1 Rutabaga Squa\nCatastrophe Squa R\n\tJesse: &lt;sigh&gt;  Nothing like being consistently teamed against to spoil my game.  Congratulations to Zoltar on his impending win.  I only hope it&#39;s premature.  XD\n\tMikeYarrum: Well, he wins pretty much every game he and I play against each other. Why should this be any different?\n\tzoltar: Actually, up until this move, I thought Jesse had the game, but seeing those two y1 ships, I had no choice but to sac my y2.  Now I&#39;m stronger, but it&#39;s far from over, as now that I&#39;ve prevented you from wiping out the yellows of MikeYarrum&#39;s homeworld, Mike is stronger as well, and has a chance to attack me if I&#39;m overtaxed going after the Jesse homeworld.  Btw, I&#39;ve never won one of these multi-player games yet, and Mike, I&#39;m having as hard a time with Jesse in one-to-one games as you are with me (wait till you play TwoShort -- you won&#39;t even see it coming and then BOOM), so you have a reasonable chance here. I have less of an advantage now than Jesse had 3 moves ago. My biggest advantage is that you might not get the timing and sharp tactics right to attack me just when I&#39;m weak and sacrificing to attack Jesse, but if you do, you could pull off the win, letting us go at it while you build and then striking at me at the right moment when I&#39;m weak.\n\n95) Jesse: Move R3 Sordros Verdesia\n\tJesse: Mike, I believe it&#39;s in both of our interests for everyone to get stronger at this point.  That may even make what Zoltar says about not having a big advantage true.\r\n\r\nZoltar, I think you&#39;re nuts to think I had a big advantage, before.  Maybe I could have, if Mike hadn&#39;t blasted yellow at Sordros.  After that, I&#39;d spent about 4 turns on that attack with no profit (and minus a Y2 sacrifice) to show for it, and had ship distribution problems besides.  Having that b1 at Sordros was a particular problem, given your then-impending collection of blues at Verdesia.  Besides that, you had a significant lead in production potential (close to achieving a factory lock-out).\n\n96) MikeYarrum: Build Y1 Verdosia\n\n97) zoltar: Trade B1 R1 Verdesia\n\tJesse: Argh.  I&#39;m blind.  That&#39;ll teach me to chat and play at the same time, I suppose.  :P\n\tzoltar: Well, it&#39;s not like it&#39;s a real time game and you don&#39;t have time for both!  Now Mike has the strongest fleet...\n\n98) Jesse: Sacrifice B1 Squa\nTrade R3 Y3 Verdesia\n\n99) MikeYarrum: Build R1 Boz\n\n100) zoltar: Sacrifice G3 Zoltar\nBuild R1 Verdesia\nBuild R3 Rutabaga\nBuild R3 Zoltar\n\n101) Jesse: Sacrifice G1 Jesse\nBuild R3 Sordros\n\n102) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R1 Boz Rutabaga\nMove R2 Boz Rutabaga\nCatastrophe Rutabaga Red\n\n103) zoltar: Sacrifice Y3 Rutabaga\nMove R1 Zoltar Bluemoon\nMove R1 Verdesia Sordros\nMove R1 Verdesia Sordros\nCatastrophe Sordros R\n\n104) Jesse: Trade Y1 R1 Sordros\n\n105) MikeYarrum: Sacrifice Y1 Verdosia\nMove R3 Osaka Verdosia\n\n106) zoltar: Sacrifice R2 Verdesia\nPass\nPass\n\n107) Jesse: Build G1 Jesse\n\n108) MikeYarrum: Build R1 Verdosia\n\n109) zoltar: Build G1 Zoltar\n\n110) Jesse: Trade G1 R1 Jesse\n\n111) MikeYarrum: Build R2 Osaka\n\n112) zoltar: Build R2 Bluemoon\n\tMikeYarrum: I hate it when this happens - three pointers are so hard to get.\n\tzoltar: Hey, you do have three of them, you know!\n\tzoltar: b g1 zoltar\n\n113) Jesse: Sacrifice R1 Jesse\nAttack B1E Verdesia\n\n114) MikeYarrum: Build Y1 Verdosia\n\n115) zoltar: Trade R2 Y2 Bluemoon\n\n116) Jesse: Build G1 Jesse\n\n117) MikeYarrum: Build Y1 Mikeyarrum\n\n118) zoltar: Trade G1 B1 Zoltar\n\n119) Jesse: Build B1 Verdesia\n\n120) MikeYarrum: Move Y1 Verdosia Osaka\n\n121) zoltar: Move B1 Zoltar Bluemoon\n\n122) Jesse: Discover B1 Verdesia G1 Gortisol\n\n123) MikeYarrum: Discover R2 Osaka B3 Yukari\n\n124) zoltar: Discover B1 Bluemoon G1 Greenpea\n\n125) Jesse: Discover G1 Jesse Y2 Bert\n\n126) MikeYarrum: Build B1 Mikeyarrum\n\n127) zoltar: Build G2 Bluemoon\n\n128) Jesse: Build G2 Jesse\n\n129) MikeYarrum: Move B1 Mikeyarrum Osaka\n\n130) zoltar: Build B2 Greenpea\n\n131) Jesse: Build B2 Gortisol\n\n132) MikeYarrum: Build B2 Osaka\n\n133) zoltar: Trade B1 Y1 Greenpea\n\n134) Jesse: Trade B2 Y2 Gortisol\n\n135) MikeYarrum: Move Y3 Mikeyarrum Osaka\n\n136) zoltar: Sacrifice G2 Bluemoon\nBuild Y2 Bluemoon\nBuild Y3 Greenpea\n\n137) Jesse: Sacrifice G2 Jesse\nBuild Y3 Jesse\nBuild Y3 Gortisol\n\n138) MikeYarrum: Trade B2 G2 Osaka\n\n139) zoltar: Build G2 Zoltar\n\n140) Jesse: Build G2 Jesse\n\n141) MikeYarrum: Build R1 Osaka\n\tMikeYarrum: This is more complicated than I expected it would get...\n\n142) zoltar: Discover G2 Zoltar B3 Regula\n\n143) Jesse: Trade Y2 R2 Gortisol\n\n144) MikeYarrum: Build Y2 Verdosia\n\n145) zoltar: Build R2 Bluemoon\n\n146) Jesse: Sacrifice G2 Jesse\nBuild R2 Gortisol\nBuild R3 Sordros\n\n147) MikeYarrum: Sacrifice Y2 Verdosia\nMove R3 Verdosia Zoltar\nMove R2 Yukari Zoltar\n\n148) zoltar: Attack R3N Zoltar\n\n149) Jesse: Trade R3 G3 Sordros\n\n150) MikeYarrum: Sacrifice Y3 Osaka\nMove R2 Osaka Verdosia\nMove Y2 Verdosia Zoltar\nMove R1 Verdosia Zoltar\nCatastrophe Zoltar Red\n\n151) zoltar: Sacrifice G3 Bluemoon\nBuild G2 Regula\nBuild G2 Regula\nBuild G3 Zoltar\n\n152) Jesse: Sacrifice Y3 Jesse\nMove R2 Gortisol Bert\nDiscover G1 Bert Y3 Superbert\nMove Y3 Gortisol Regula\n\n153) MikeYarrum: Sacrifice G2 Osaka\nBuild Y2 Osaka\nBuild Y3 Mikeyarrum\n\n154) zoltar: Sacrifice Y2 Bluemoon\nMove B2 Greenpea Mikeyarrum\nMove Y1 Greenpea Mikeyarrum\n\n155) Jesse: Sacrifice G3 Sordros\nBuild G2 Superbert\nBuild R1 Gortisol\nBuild R2 Sordros\n\n156) MikeYarrum: Sacrifice R2 Verdosia\nAttack Y1E Mikeyarrum\nAttack B2E Mikeyarrum\n\n157) zoltar: Sacrifice Y2 Bluemoon\nMove R1 Bluemoon Zoltar\nMove Y3 Greenpea Mikeyarrum\nCatastrophe Mikeyarrum Y\n\tzoltar: Well. since you crippled me and now I am doomed in any case, I will emotionally counterattack your homeworld in a blind jihad, Mike!\n\n158) Jesse: Sacrifice Y3 Verdesia\nMove B1 Gortisol Mikeyarrum\nMove B1 Verdesia Gortisol\nMove B1 Gortisol Mikeyarrum\nCatastrophe Mikeyarrum B\n\n\tJesse: Here, I&#39;ve got my doomsday machine all set up, but need to take a couple of extra turns to make sure Zoltar can&#39;t blast the green marker after I blast the red... and he opens up the opportunity for me to blast ships instead, making my last few moves irreleant.\n\tJesse: Good game, guys.\n\tMikeYarrum: Well, it was wait until you got your machine in gear, or try to catch zoltar with a surprise move. In retrospect, it might not have been the best idea, but things were sticky in this game since way back.\n\nHomeworlds Online (SDG# 7555)\nVariants: &quot;Sinister&quot;\nStarted: 2007.4.27, Ended: 2007.5.15\nParticipants: Jesse (S), mneme (N)\nWinner: Jesse\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld B1 R3 G3\n\n3) mneme: Build G1 Mneme\n\tJesse: Hello, and have a good game.\n\tmneme: You too.  (hmm.  Another symetrical game.)\n\n4) Jesse: Build G1 Jesse\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) mneme: Build G1 Mneme\n\n8) Jesse: Build G1 Jesse\n\n9) mneme: Discover G1 Mneme B3 Tsalmoth\n\n10) Jesse: Discover G1 Jesse B2 Eliot\n\n11) mneme: Build Y1 Mneme\n\tJesse: Now the little asymmetries begin to build.\n\n12) Jesse: Build Y2 Jesse\n\tmneme: Yup.\r\n\n\tmneme: You&#39;ve got tempo here.  Interesting.\n\n13) mneme: Build Y2 Mneme\n\n14) Jesse: Build Y2 Jesse\n\n15) mneme: Move Y1 Mneme Tsalmoth\n\n16) Jesse: Trade Y1 B1 Jesse\n\n17) mneme: Discover Y1 Mneme B3 Jhegalla\n\n18) Jesse: Move Y2 Jesse Eliot\n\n19) mneme: Build G1 Mneme\n\n20) Jesse: Build G2 Jesse\n\n21) mneme: Discover G1 Mneme Y3 Yendi\n\n22) Jesse: Discover G2 Jesse B2 Tommy\n\n23) mneme: Sacrifice G3 Mneme\nBuild Y1 Jhegalla\nBuild Y3 Mneme\nBuild Y3 Tsalmoth\n\n24) Jesse: Build G2 Jesse\n\n25) mneme: Trade Y1 R1 Tsalmoth\n\n26) Jesse: Trade G2 R2 Jesse\n\n27) mneme: Build G2 Tsalmoth\n\n28) Jesse: Build G2 Jesse\n\n29) mneme: Build G3 Yendi\n\n30) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Eliot\nBuild Y1 Eliot\n\n31) mneme: Trade Y1 B1 Jhegalla\n\n32) Jesse: Sacrifice Y2 Eliot\nMove G1 Eliot Yendi\nMove G2 Tommy Yendi\nCatastrophe Yendi G\n\n33) mneme: Sacrifice G2 Tsalmoth\nBuild R1 Tsalmoth\nBuild B2 Jhegalla\n\n34) Jesse: Discover B1 Jesse Y2 Emmet\n\n35) mneme: Discover Y2 Mneme B3 Holdout\n\n36) Jesse: Move R2 Jesse Eliot\n\n37) mneme: Trade B2 G2 Jhegalla\n\n38) Jesse: Sacrifice G3 Jesse\nBuild Y1 Eliot\nBuild Y3 Jesse\nBuild R2 Eliot\n\n39) mneme: Move R1 Tsalmoth Emmet\n\n40) Jesse: Sacrifice R2 Eliot\nAttack R1 Emmet\nPass\n\n41) mneme: Build R2 Tsalmoth\n\tmneme: bah.  was wondering about that.\n\n42) Jesse: Build G1 Jesse\n\n43) mneme: Discover R2 Tsalmoth G2 Orca\n\tmneme: ok, that was fairly dumb.  \n\n44) Jesse: Sacrifice G2 Jesse\nBuild R2 Eliot\nBuild R3 Emmet\n\n45) mneme: Build R3 Orca\n\n46) Jesse: Move R3 Emmet Jhegalla\n\n47) mneme: Sacrifice Y2 Holdout\nMove G2 Jhegalla Emmet\nMove B1 Jhegalla Emmet\n\tJesse: That&#39;s weird; my move got rolled back.\n\n48) Jesse: Attack Y1 Jhegalla\n\n49) mneme: Sacrifice R2 Orca\nAttack B1 Emmet\nAttack R1 Emmet\n\n50) Jesse: Move R3 Jhegalla Emmet\n\n51) mneme: Sacrifice G2 Emmet\nBuild R2 Orca\nBuild B2 Emmet\n\tmneme: It probably crossed with my undo.\r\n\n\tJesse: I kind of doubt that&#39;s it.  Another of my games was rolled back 3 moves, all of which occurred within a few minutes of my move in this game which was rolled back.  But who knows?\n\n52) Jesse: Build Y2 Eliot\n\n53) mneme: Move G1 Tsalmoth Mneme\n\tmneme: dunno.  maybe a db hiccough?\r\n\n\n54) Jesse: Build G1 Eliot\n\n55) mneme: Sacrifice Y3 Tsalmoth\nMove R3 Orca Jesse\nMove B2 Emmet Jesse\nMove R1 Emmet Jesse\n\n56) Jesse: Sacrifice R2 Eliot\nAttack R3 Jesse\nAttack B1 Emmet\n\n57) mneme: Sacrifice Y3 Mneme\nMove R1 Tsalmoth Orca\nMove R1 Orca Jesse\nMove B1 Emmet Jesse\nCatastrophe Jesse R\n\n58) Jesse: Sacrifice R2 Eliot\nAttack B1 Jesse\nAttack B2 Jesse\n\n\tJesse: I know I can save a turn by leaving them there.  I just feel better this way.\n\tmneme: You were winning sufficiently that I figured it was worth launching a suicide attack on the hope that you&#39;d make a mistake -- thanks for the game! (You making Origins?)\n\tJesse: I certainly can&#39;t blame you for launching a desperation attack.  I was in a fine position to squeeze you slowly out of the game.  It was a good game, thanks.\n\tJesse: And yes, I do plan to attend Origins.  Do I know you?\n\tmneme: We&#39;ve met.  Joshua Kronengold.  I made the Dicehouse set.\n\tJesse: Ah, yes.  It&#39;s nice to make the connection between you and your SDG name.  See you at Origins!\n\tmneme: Heh.  I actually use &quot;mneme&quot; nearly everywhere (including my username on the lists).  And definitely.\r\n\n\nHomeworlds Online (SDG# 7570)\nVariants: &quot;Hard time&quot;\nStarted: 2007.4.28, Ended: 2007.5.24\nParticipants: TwoShort (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) TwoShort: Build G1 Twoshort\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) TwoShort: Build G1 Twoshort\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n9) MikeYarrum: Discover Y2 Mikeyarrum B3 Nyamo\n\n10) TwoShort: Build G1 Twoshort\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n13) MikeYarrum: Build G3 Mikeyarrum\n\n14) TwoShort: Trade G2 Y2 Bluonia\n\n15) MikeYarrum: Move G3 Mikeyarrum Nyamo\n\n16) TwoShort: Discover G1 Twoshort B2 Borbor\n\n17) MikeYarrum: Build G2 Nyamo\n\n18) TwoShort: Trade G1 B1 Bluonia\n\n19) MikeYarrum: Discover G2 Mikeyarrum Y3 Sakaki\n\n20) TwoShort: Discover B1 Bluonia Y3 Yoyodyne\n\n21) MikeYarrum: Sacrifice G2 Nyamo\nBuild Y2 Nyamo\nBuild Y3 Mikeyarrum\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G2 Borbor\nBuild G3 Twoshort\n\n23) MikeYarrum: Trade G3 R3 Nyamo\n\n24) TwoShort: Trade G2 R2 Bluonia\n\tTwoShort: I&#39;ll be travelling on and off  for the next week.  Just so you don&#39;t think my slow play is *exclusively* stalling because you&#39;re kicking my ass :)\n\n25) MikeYarrum: Discover Y2 Nyamo R2 Tadakichi\n\tMikeYarrum: No problem. Thanks for the heads-up!\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Borbor\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n27) MikeYarrum: Move R3 Nyamo Borbor\n\n28) TwoShort: Sacrifice B1 Yoyodyne\nTrade G3 Y3 Bluonia\n\n29) MikeYarrum: Build G3 Sakaki\n\n30) TwoShort: Sacrifice Y3 Bluonia\nMove Y2 Bluonia Nyamo\nMove Y2 Nyamo Mikeyarrum\nMove R2 Bluonia Twoshort\nCatastrophe Mikeyarrum Yellow\n\n31) MikeYarrum: Attack G2 Borbor\n\n32) TwoShort: Trade G1 B1 Twoshort\n\n33) MikeYarrum: Attack G2 Borbor\n\n34) TwoShort: Build B1 Twoshort\n\n35) MikeYarrum: Sacrifice Y2 Tadakichi\nMove G2 Borbor Twoshort\nMove G2 Borbor Twoshort\n\n\tTwoShort: OK, now I&#39;m just stalling...  Excellent game, well done!  I&#39;m not sure whether you&#39;re even aware of my &quot;ZPIP Challenge&quot;, but this makes you the probable winner... (My game vs. Keith started before this one, but I&#39;m pretty confident I&#39;ll win that one.)\n\tMikeYarrum: Cool, thanks! As you probably figured out, I learned almost everything I know about Homeworlds through trial and (mostly) error on SDG, so it&#39;s cool to finally see myself making a bit of progress.\r\n\r\nIt&#39;s funny how zoltar has warned me about playing against you, when I&#39;ve yet to win a game against him. \r\n\r\nAnd a quick Google led me to a blog which I guess is yours. Good job on those zero pointers! I&#39;d make some myself, but I&#39;m not ready to butcher my 3-pointers.\n\nHomeworlds Online (SDG# 7582)\nStarted: 2007.4.29, Ended: 2007.5.1\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld B1 G3 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build Y1 Zoltar\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) zoltar: Build Y1 Zoltar\n\n7) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n8) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n9) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n10) zoltar: Build Y2 Zoltar\n\n11) MikeYarrum: Build B1 Mikeyarrum\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) MikeYarrum: Discover B1 Mikeyarrum G3 Yomi\n\n14) zoltar: Build Y2 Greendale\n\n15) MikeYarrum: Build B2 Yomi\n\n16) zoltar: Build Y2 Zoltar\n\n17) MikeYarrum: Discover B1 Mikeyarrum Y3 Kagura\n\n18) zoltar: Trade Y3 R3 Zoltar\n\n19) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n20) zoltar: Build Y3 Zoltar\n\n21) MikeYarrum: Trade B2 G2 Yomi\n\n22) zoltar: Trade Y3 G3 Zoltar\n\n23) MikeYarrum: Sacrifice G2 Yomi\nBuild B2 Kagura\nBuild B2 Yomi\n\n24) zoltar: Build Y3 Greendale\n\n25) MikeYarrum: Build B3 Yomi\n\n26) zoltar: Move Y3 Greendale Yomi\n\n\tMikeYarrum: Your game. I figured you wouldn&#39;t mind, since we&#39;ve got a few others going.\n\tzoltar: That&#39;s cool.  I didn&#39;t see the winning move at first, and then when I realized that your R3 was &#39;pinned&#39; and thus just like not having any red pieces at all, I saw that I could simply win all three blue ships the next move and you could do nothing to stop me!\n\tMikeYarrum: I really should have moved another ship to my homeworld, but I kept putting it off with the idea that I had to utilize every move.\n\nHomeworlds Online (SDG# 7591)\nStarted: 2007.4.30, Ended: 2007.5.1\nParticipants: Forscyvus (S), lackerhill (N)\nWinner: lackerhill\n\n1) lackerhill: Homeworld G1 B3 R3\n\n2) Forscyvus: Homeworld G3 Y2 B3\n\n3) lackerhill: Build R1 Lackerhill\n\n4) Forscyvus: Build B1 Forscyvus\n\n5) lackerhill: Trade R1 Y1 Lackerhill\n\n6) Forscyvus: Trade B1 Y1 Forscyvus\n\n7) lackerhill: Build R1 Lackerhill\n\n8) Forscyvus: Discover Y1 Forscyvus B1 Omgflotzorz\n\n9) lackerhill: Trade R1 B1 Lackerhill\n\n10) Forscyvus: Build B1 Forscyvus\n\n11) lackerhill: Build B2 Lackerhill\n\n12) Forscyvus: Trade B1 G1 Forscyvus\n\n13) lackerhill: Discover B2 Lackerhill Y2 Foxtrot\n\n14) Forscyvus: Move G1 Forscyvus Omgflotzorz\n\n15) lackerhill: Build B1 Lackerhill\n\n16) Forscyvus: Build B2 Forscyvus\n\n17) lackerhill: Trade B1 G1 Lackerhill\n\n18) Forscyvus: Trade B2 Y2 Forscyvus\n\n19) lackerhill: Move G1 Lackerhill Foxtrot\n\n20) Forscyvus: Move Y2 Forscyvus Omgflotzorz\n\n21) lackerhill: Build B1 Foxtrot\n\n22) Forscyvus: Trade Y2 G2 Omgflotzorz\n\n23) lackerhill: Build B2 Lackerhill\n\n24) Forscyvus: Discover G2 Omgflotzorz Y3 Dontkillme\n\n25) lackerhill: Sacrifice B2 Lackerhill\nTrade B1 Y1 Lackerhill\nTrade B2 Y2 Foxtrot\n\n26) Forscyvus: Build G2 Omgflotzorz\n\n27) lackerhill: Build Y3 Lackerhill\n\n28) Forscyvus: Build Y3 Omgflotzorz\n\n29) lackerhill: Sacrifice Y3 Lackerhill\nMove R3 Lackerhill Foxtrot\nMove R3 Foxtrot Omgflotzorz\nMove R3 Omgflotzorz Forscyvus\n\n30) Forscyvus: Sacrifice G2 Omgflotzorz\nBuild B1 Forscyvus\nBuild Y3 Omgflotzorz\n\n\n31) lackerhill: Attack B3S Forscyvus\n\n\nHomeworlds Online (SDG# 7585)\nStarted: 2007.4.30, Ended: 2007.5.2\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld G2 R3 B3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n7) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Discover B1 Mikeyarrum Y1 Tomo\n\n10) zoltar: Build G1 Bluemoon\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) zoltar: Build G2 Bluemoon\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) zoltar: Trade G2 Y2 Bluemoon\n\n15) MikeYarrum: Trade Y2 G2 Mikeyarrum\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bluemoon\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n17) MikeYarrum: Move G2 Mikeyarrum Tomo\n\n18) zoltar: Trade G1 R1 Zoltar\n\tzoltar: Threatening mate-in-one with the old &quot;Bluebird&quot;, eh?\n\n19) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\tMikeYarrum: Gotta keep you on your toes somehow. ;)\n\n20) zoltar: Discover G2 Bluemoon B2 Blueberry\n\n21) MikeYarrum: Build G1 Tomo\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild Y1 Bluemoon\n\n23) MikeYarrum: Build B1 Tomo\n\n24) zoltar: Trade G3 Y3 Blueberry\n\n25) MikeYarrum: Trade B3 Y3 Mikeyarrum\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild Y2 Blueberry\n\n27) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove G1 Tomo Blueberry\nMove G2 Tomo Blueberry\nCatastrophe Blueberry Green\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Bluemoon\nBuild G1 Zoltar\n\n29) MikeYarrum: Discover B1 Tomo G3 Yomi\n\tzoltar: Well if you are going to blow up my greens, I&#39;ll go for a lock on the Yellow Tech. Warp drive is mine!\n\n30) zoltar: Sacrifice Y2 Blueberry\nMove Y2 Bluemoon Tomo\nDiscover G1 Bluemoon R1 Redrover\n\n31) MikeYarrum: Build Y2 Mikeyarrum\n\n32) zoltar: Sacrifice Y3 Blueberry\nMove Y1 Bluemoon Tomo\nMove Y1 Tomo Mikeyarrum\nMove Y2 Tomo Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n33) MikeYarrum: Trade B1 Y1 Yomi\n\n34) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Bluemoon Redrover\nMove Y3 Redrover Mikeyarrum\n\n35) MikeYarrum: Move B1 Tomo Mikeyarrum\n\n36) zoltar: Trade G3 R3 Zoltar\n\n37) MikeYarrum: Pass\n\n38) zoltar: Sacrifice R3 Zoltar\nAttack R1 Mikeyarrum\nAttack B1 Mikeyarrum\nPass\n\n\nHomeworlds Online (SDG# 7592)\nStarted: 2007.5.1, Ended: 2007.5.3\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld G3 Y2 B3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MikeYarrum: Discover B1 Mikeyarrum G1 Tomo\n\n8) zoltar: Build Y1 Zoltar\n\n9) MikeYarrum: Trade B1 Y1 Tomo\n\n10) zoltar: Trade Y1 B1 Zoltar\n\n11) MikeYarrum: Trade B1 G1 Mikeyarrum\n\n12) zoltar: Build B1 Zoltar\n\n13) MikeYarrum: Build B1 Mikeyarrum\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) MikeYarrum: Move B1 Mikeyarrum Tomo\n\n16) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n17) MikeYarrum: Build G1 Mikeyarrum\n\n18) zoltar: Build G2 Zoltar\n\n19) MikeYarrum: Discover G1 Mikeyarrum R1 Osaka\n\n20) zoltar: Build R2 Zoltar\n\n21) MikeYarrum: Build G2 Osaka\n\n22) zoltar: Move R2 Zoltar Greenbelt\n\n23) MikeYarrum: Sacrifice B1 Tomo\nTrade G2 R2 Osaka\n\n24) zoltar: Discover R1 Zoltar Y3 Yellowstone\n\n25) MikeYarrum: Build G2 Osaka\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild R2 Yellowstone\n\n27) MikeYarrum: Sacrifice G2 Osaka\nBuild Y1 Tomo\nBuild Y2 Tomo\n\n28) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild R3 Greenbelt\n\n29) MikeYarrum: Sacrifice Y1 Tomo\nMove R2 Osaka Mikeyarrum\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild R3 Yellowstone\nBuild R3 Greenbelt\n\n31) MikeYarrum: Sacrifice Y2 Tomo\nMove R2 Mikeyarrum Tomo\nMove R2 Tomo Greenbelt\nCatastrophe Greenbelt Red\n\n32) zoltar: Sacrifice Y2 Zoltar\nMove R3 Yellowstone Osaka\nMove R3 Osaka Mikeyarrum\n\n33) MikeYarrum: Pass\n\n34) zoltar: Sacrifice R2 Yellowstone\nAttack G1 Mikeyarrum\nAttack B3 Mikeyarrum\n\n\nHomeworlds Online (SDG# 7600)\nStarted: 2007.5.1, Ended: 2007.6.11\nParticipants: KaneGreyfeather (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) KaneGreyfeather: Homeworld G3 Y2 B3\n\tts52: Have a great game!\n\n3) ts52: Build G1 Ts52\n\n4) KaneGreyfeather: Build B1 Kanegreyfeather\n\n5) ts52: Trade G1 B1 Ts52\n\n6) KaneGreyfeather: Build B2 Kanegreyfeather\n\n7) ts52: Build G1 Ts52\n\n8) KaneGreyfeather: Trade B1 R1 Kanegreyfeather\n\n9) ts52: Trade G1 R1 Ts52\n\n\nHomeworlds Online (SDG# 7599)\nStarted: 2007.5.1, Ended: 2007.5.20\nParticipants: MikeYarrum (S), KaneGreyfeather (N)\nWinner: MikeYarrum\n\n1) KaneGreyfeather: Homeworld G3 Y2 B3\n\n2) MikeYarrum: Homeworld R1 G2 B3\n\n3) KaneGreyfeather: Build B1 Kanegreyfeather\n\n4) MikeYarrum: Build B1 Mikeyarrum\n\n5) KaneGreyfeather: Trade B1 R1 Kanegreyfeather\n\n6) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n7) KaneGreyfeather: Build B1 Kanegreyfeather\n\n8) MikeYarrum: Build B1 Mikeyarrum\n\n9) KaneGreyfeather: Trade B1 G1 Kanegreyfeather\n\n10) MikeYarrum: Build Y1 Mikeyarrum\n\n11) KaneGreyfeather: Build G1 Kanegreyfeather\n\n12) MikeYarrum: Trade B1 G1 Mikeyarrum\n\n13) KaneGreyfeather: Discover G1 Kanegreyfeather B1 Thenewworld\n\n14) MikeYarrum: Build G2 Mikeyarrum\n\n15) KaneGreyfeather: Build G2 Thenewworld\n\n16) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n17) KaneGreyfeather: Trade G2 Y2 Thenewworld\n\n18) MikeYarrum: Build B1 Mikeyarrum\n\n19) KaneGreyfeather: Build Y1 Thenewworld\n\n20) MikeYarrum: Build G2 Sakaki\n\n21) KaneGreyfeather: Build G3 Thenewworld\n\n22) MikeYarrum: Sacrifice B1 Mikeyarrum\nTrade G2 Y2 Sakaki\n\n23) KaneGreyfeather: Build G2 Kanegreyfeather\n\n24) MikeYarrum: Build G3 Sakaki\n\n25) KaneGreyfeather: Move Y1 Thenewworld Kanegreyfeather\n\n26) MikeYarrum: Sacrifice Y2 Sakaki\nMove G1 Sakaki Thenewworld\nMove G1 Thenewworld Kanegreyfeather\nCatastrophe Kanegreyfeather Green\n\n27) KaneGreyfeather: Build Y2 Thenewworld\n\n28) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n\nHomeworlds Online (SDG# 7610)\nStarted: 2007.5.3, Ended: 2007.5.10\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld Y2 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) zoltar: Build Y2 Zoltar\n\n9) MikeYarrum: Discover Y2 Mikeyarrum G3 Yomi\n\n10) zoltar: Discover Y1 Zoltar G1 Greendale\n\n11) MikeYarrum: Build Y3 Yomi\n\n12) zoltar: Build Y3 Greendale\n\n13) MikeYarrum: Build G1 Mikeyarrum\n\n14) zoltar: Discover Y3 Greendale B3 Blueridge\n\n15) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n18) zoltar: Build R1 Zoltar\n\n19) MikeYarrum: Build R1 Mikeyarrum\n\n20) zoltar: Trade R1 B1 Zoltar\n\n21) MikeYarrum: Discover Y2 Yomi B1 Chiyo\n\n22) zoltar: Build B1 Zoltar\n\n23) MikeYarrum: Trade Y2 B2 Chiyo\n\n24) zoltar: Move B1 Zoltar Greendale\n\n25) MikeYarrum: Discover R1 Mikeyarrum B3 Nyamo\n\n26) zoltar: Build B2 Greendale\n\n27) MikeYarrum: Trade B2 Y2 Chiyo\n\n28) zoltar: Move B2 Greendale Sakaki\n\n29) MikeYarrum: Move Y3 Yomi Greendale\n\n30) zoltar: Trade B1 Y1 Greendale\n\n31) MikeYarrum: Discover Y3 Greendale G3 Yomi2\n\n32) zoltar: Build Y2 Greendale\n\n33) MikeYarrum: Move G1 Sakaki Chiyo\n\n34) zoltar: Trade B2 G2 Sakaki\n\n35) MikeYarrum: Build G1 Chiyo\n\n36) zoltar: Build G2 Sakaki\n\n37) MikeYarrum: Sacrifice Y2 Chiyo\nMove G1 Chiyo Sakaki\nMove G1 Chiyo Sakaki\nCatastrophe Sakaki Green\n\n38) zoltar: Discover Y1 Greendale G2 Greenhills\n\n39) MikeYarrum: Build G1 Mikeyarrum\n\n40) zoltar: Build Y2 Greenhills\n\n41) MikeYarrum: Discover G1 Mikeyarrum Y3 Kagura\n\n42) zoltar: Build B1 Zoltar\n\n43) MikeYarrum: Build G1 Mikeyarrum\n\n44) zoltar: Build G2 Zoltar\n\n45) MikeYarrum: Build G2 Kagura\n\n46) zoltar: Trade Y3 R3 Blueridge\n\n47) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n48) zoltar: Trade G3 R3 Zoltar\n\n49) MikeYarrum: Build G3 Mikeyarrum\n\n50) zoltar: Build G3 Zoltar\n\n51) MikeYarrum: Discover G1 Kagura B1 Chiyo\n\n52) zoltar: Move G3 Zoltar Chiyo\n\n53) MikeYarrum: Trade G1 R1 Chiyo\n\n54) zoltar: Move Y2 Greendale Nyamo\n\n55) MikeYarrum: Build R2 Mikeyarrum\n\n56) zoltar: Sacrifice R2 Zoltar\nAttack R1 Chiyo\nAttack R1 Nyamo\n\n57) MikeYarrum: Trade R2 B2 Mikeyarrum\n\n58) zoltar: Move B1 Zoltar Greendale\n\n59) MikeYarrum: Move B2 Mikeyarrum Yomi2\n\n60) zoltar: Sacrifice Y2 Nyamo\nMove Y2 Greenhills Kagura\nMove G3 Chiyo Yomi2\n\n61) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack G3 Yomi2\n\n62) zoltar: Sacrifice Y1 Greenhills\nMove R3 Blueridge Mikeyarrum\n\n63) MikeYarrum: Sacrifice G3 Yomi2\nBuild G1 Mikeyarrum\nBuild B2 Yomi2\nBuild Y1 Yomi2\n\n64) zoltar: Attack Y3 Mikeyarrum\n\tzoltar: Hey, you can&#39;t do that and squander your only red ship!\n\n65) MikeYarrum: Sacrifice Y3 Yomi2\nMove B2 Yomi2 Greendale\nMove B2 Greendale Zoltar\nMove B2 Yomi2 Greendale\n\tMikeYarrum: Not like you weren&#39;t ahead anyway.\n\n66) zoltar: Trade Y3 G3 Mikeyarrum\nCatastrophe Mikeyarrum G\n\n\nHomeworlds Online (SDG# 7612)\nStarted: 2007.5.3, Ended: 2007.5.10\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tMikeYarrum: I was concerned I might not be enough of a challenge, but if you keep playing against me, I must be doing something right!\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tzoltar: It&#39;s more that I&#39;m too much of a wimp to keep playing the best players, such as TwoShort, who destroyed me in about 10 moves last week!\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: LOL, I guess this is hazing the new guy.\n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Build G2 Mikeyarrum\n\n10) zoltar: Sacrifice Y3 Zoltar\nDiscover G1 Zoltar Y2 Wormhole-1\nDiscover G1 Wormhole-1 Y3 Wormhole-2\nMove G1 Wormhole-2 Mikeyarrum\nCatastrophe Mikeyarrum G\n\n11) MikeYarrum: Trade Y1 G1 Mikeyarrum\n\tMikeYarrum: ... I was wondering if discovering, then abandoning a world in the same turn was legal. Quite an interesting move you&#39;ve made, there.\n\n12) zoltar: Build G1 Zoltar\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) zoltar: Build G2 Zoltar\n\n15) MikeYarrum: Build G2 Mikeyarrum\n\tzoltar: yes, though I seem to have given you a slight advantage, as you get the first g2.\n\n16) zoltar: Trade G1 Y1 Zoltar\n\n17) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\tMikeYarrum: Sorry, had a second thought.\n\n18) zoltar: Trade G1 R1 Zoltar\n\n19) MikeYarrum: Build G1 Mikeyarrum\n\n20) zoltar: Build R1 Zoltar\n\n21) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n22) zoltar: Trade R1 B1 Zoltar\n\n23) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n24) zoltar: Build G1 Zoltar\n\n25) MikeYarrum: Discover R2 Mikeyarrum G3 Yomi\n\n26) zoltar: Discover R1 Zoltar G2 Yummy\n\n27) MikeYarrum: Build G1 Mikeyarrum\n\n28) zoltar: Discover G1 Zoltar B2 Bluemoon\n\n29) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n30) zoltar: Build G2 Bluemoon\n\n31) MikeYarrum: Build G3 Sakaki\n\n32) zoltar: Sacrifice G2 Bluemoon\nBuild G2 Bluemoon\nBuild G3 Zoltar\n\n33) MikeYarrum: Build Y1 Mikeyarrum\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Zoltar\n\n35) MikeYarrum: Move Y1 Mikeyarrum Yomi\n\n36) zoltar: Sacrifice Y1 Zoltar\nMove Y2 Zoltar Bluemoon\n\n37) MikeYarrum: Build B1 Mikeyarrum\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Bluemoon\nBuild Y3 Zoltar\n\n39) MikeYarrum: Move B1 Mikeyarrum Yomi\n\n40) zoltar: Sacrifice Y2 Zoltar\nMove G1 Bluemoon Sakaki\nMove G2 Bluemoon Sakaki\nCatastrophe Sakaki G\n\n41) MikeYarrum: Build G1 Mikeyarrum\n\n42) zoltar: Discover Y1 Bluemoon G3 Yippee\n\n43) MikeYarrum: Trade Y2 R2 Mikeyarrum\n\n44) zoltar: Build Y2 Yippee\n\n45) MikeYarrum: Discover R2 Yomi G2 Chihiro\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Yippee\n\n47) MikeYarrum: Build B2 Yomi\n\n48) zoltar: Move B1 Zoltar Yummy\n\n49) MikeYarrum: Move B1 Yomi Chihiro\n\n50) zoltar: Sacrifice Y2 Bluemoon\nMove Y3 Bluemoon Yomi\nMove Y3 Yippee Chihiro\n\n51) MikeYarrum: Trade B2 Y2 Yomi\n\n52) zoltar: Sacrifice R1 Yummy\nAttack R2 Chihiro\n\n53) MikeYarrum: Build B2 Chihiro\n\n54) zoltar: Attack B2 Chihiro\n\n55) MikeYarrum: Build B2 Chihiro\n\n56) zoltar: Sacrifice R2 Chihiro\nAttack Y1 Yomi\nAttack Y2 Yomi\n\n57) MikeYarrum: Trade B2 R2 Chihiro\n\n58) zoltar: Move B2 Chihiro Yomi\n\n59) MikeYarrum: Build R1 Mikeyarrum\n\n60) zoltar: Sacrifice Y3 Zoltar\nMove B1 Yummy Yomi\nMove B1 Yomi Mikeyarrum\nMove B2 Yomi Mikeyarrum\nCatastrophe Mikeyarrum B\n\n61) MikeYarrum: Build B1 Chihiro\n\tzoltar: Retreat!!!\n\n62) zoltar: Sacrifice Y3 Yomi\nMove Y1 Yomi Mikeyarrum\nMove Y2 Yomi Mikeyarrum\nMove Y1 Yippee Mikeyarrum\nCatastrophe Mikeyarrum Y\n\tzoltar: Attack!!!\n\n\tzoltar: There&#39;s a name for the double-sacrifice to blow up both homeworld stars in consecutive moves, but I forgot what it is.  An important tactic in a close game, if you don&#39;t want your opponent to have time to mount a counterattack after your first sacrifice, so you wait and then do it all at once. gg.\n\nHomeworlds Online (SDG# 7614)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.3, Ended: 2007.5.31\nParticipants: clockwise (S), Uglyfoot (N)\nWinner: clockwise\n\n1) Uglyfoot: Homeworld Y1 B3 G3\n\n2) clockwise: Homeworld B1 G2 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) clockwise: Build Y1 Clockwise\n\n5) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n6) clockwise: Trade Y1 B1 Clockwise\n\n7) Uglyfoot: Discover Y1 Uglyfoot G2 Assembly\n\n8) clockwise: Build B1 Clockwise\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) clockwise: Discover B1 Clockwise G3 Godzilla\n\n11) Uglyfoot: Trade G1 R1 Uglyfoot\n\n12) clockwise: Build B2 Godzilla\n\n13) Uglyfoot: Build G1 Uglyfoot\n\n14) clockwise: Trade B2 R2 Godzilla\n\n15) Uglyfoot: Build Y1 Assembly\n\n16) clockwise: Build Y2 Clockwise\n\n17) Uglyfoot: Build Y2 Assembly\n\n18) clockwise: Move Y2 Clockwise Godzilla\n\n19) Uglyfoot: Discover Y2 Assembly G3 Forward\n\n20) clockwise: Build Y2 Godzilla\n\n21) Uglyfoot: Build Y3 Forward\n\n22) clockwise: Build Y3 Clockwise\n\n23) Uglyfoot: Move Y2 Forward Clockwise\n\n24) clockwise: Discover Y3 Clockwise B3 Leviathan\n\n25) Uglyfoot: Trade Y2 B2 Clockwise\n\n26) clockwise: Trade B1 R1 Clockwise\n\n27) Uglyfoot: Discover G1 Uglyfoot B2 Exchange\n\n28) clockwise: Build Y2 Clockwise\n\tclockwise: Are you having the same problem as me, where the global reserve stash isn&#39;t showing up?\n\n29) Uglyfoot: Build G1 Exchange\n\tUglyfoot: Yes, I was.\n\n30) clockwise: Attack B2N Clockwise\n\n31) Uglyfoot: Move Y3 Forward Exchange\n\tclockwise: Hmm, yes it seems to have fixed itself.\n\n32) clockwise: Move B1 Godzilla Assembly\n\n33) Uglyfoot: Move Y1 Assembly Godzilla\n\n34) clockwise: Sacrifice R2 Godzilla\nAttack Y1N Assembly\nAttack Y1N Godzilla\n\n35) Uglyfoot: Build G1 Uglyfoot\n\n36) clockwise: Sacrifice Y2 Godzilla\nMove Y2 Godzilla Assembly\nDiscover Y1 Godzilla B2 Kraken\n\n37) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Exchange\n\n38) clockwise: Build B1 Assembly\n\n39) Uglyfoot: Discover G3 Exchange R3 Firebase\n\n40) clockwise: Sacrifice Y3 Leviathan\nMove Y1 Assembly Uglyfoot\nMove Y2 Assembly Uglyfoot\nMove Y1 Kraken Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n41) Uglyfoot: Sacrifice Y3 Exchange\nMove G1 Uglyfoot Assembly\nMove G2 Uglyfoot Assembly\nMove G3 Firebase Assembly\nCatastrophe Assembly G\n\tclockwise: The green strategy was, I believe, the correct one to pursue this game, but you only started pushing it once it was too late.\n\n42) clockwise: Build B1 Clockwise\n\tUglyfoot: That clears the board...\n\n43) Uglyfoot: Build G1 Uglyfoot\n\n44) clockwise: Sacrifice Y2 Clockwise\nDiscover B1 Clockwise Y3 Mothra\nDiscover B1 Mothra G2 Mechagodzilla\n\n45) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Exchange\nBuild G3 Uglyfoot\n\n46) clockwise: Build B1 Mechagodzilla\n\n47) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n48) clockwise: Sacrifice Y3 Clockwise\nMove B2 Clockwise Uglyfoot\nMove B1 Mechagodzilla Uglyfoot\nMove B1 Mechagodzilla Uglyfoot\nCatastrophe Uglyfoot Blue\n\tUglyfoot: So I survived a couple extra turns....\n\tclockwise: Pretty much\n\tclockwise: Overall I&#39;d say you played much better than our first game back in April.  \r\n\r\nThanks for the game.\n\n\nHomeworlds Online (SDG# 7628)\nStarted: 2007.5.4, Ended: 2007.5.12\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R2 B3 G3\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build Y2 Ts52\n\n8) zoltar: Build Y2 Zoltar\n\n9) ts52: Build G1 Ts52\n\n10) zoltar: Build Y2 Zoltar\n\n11) ts52: Trade Y1 R1 Ts52\n\n12) zoltar: Trade Y2 R2 Zoltar\n\n13) ts52: Build G1 Ts52\n\n14) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n15) ts52: Discover G1 Ts52 Y3 Sol\n\n16) zoltar: Build G2 Zoltar\n\n17) ts52: Trade G1 B1 Ts52\n\n18) zoltar: Discover G2 Zoltar Y1 Yellowjacket\n\n19) ts52: Discover Y2 Ts52 G3 Frogstar\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y3 Zoltar\nBuild Y3 Zoltar\n\n21) ts52: Sacrifice G1 Sol\nBuild Y3 Frogstar\n\n22) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Greenpea Frogstar\nMove Y2 Greenpea Frogstar\nCatastrophe Frogstar Y\n\n23) ts52: Discover B1 Ts52 G3 Frogstar\n\n24) zoltar: Trade Y3 G3 Zoltar\n\n25) ts52: Build B1 Frogstar\n\n26) zoltar: Build Y1 Zoltar\n\n27) ts52: Build R1 Ts52\n\n28) zoltar: Build Y2 Zoltar\n\n29) ts52: Build G1 Ts52\n\n30) zoltar: Discover Y3 Zoltar G1 Greenpea\n\n31) ts52: Discover G1 Ts52 Y3 Sol\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y2 Greenpea\nBuild Y3 Zoltar\n\n33) ts52: Move R1 Ts52 Sol\n\n34) zoltar: Move Y2 Greenpea Sol\n\n35) ts52: Build R1 Sol\n\n36) zoltar: Sacrifice R2 Zoltar\nAttack R1 Sol\nAttack R1 Sol\n\n37) ts52: Build R2 Ts52\n\n38) zoltar: Attack G1 Sol\n\n39) ts52: Move R1 Ts52 Frogstar\n\n40) zoltar: Move R1 Sol Yellowjacket\n\n41) ts52: Build R2 Frogstar\n\n42) zoltar: Build R3 Sol\n\n43) ts52: Build R3 Ts52\n\n44) zoltar: Sacrifice Y3 Greenpea\nMove R1 Yellowjacket Sol\nMove R1 Sol Ts52\nMove R1 Sol Ts52\nCatastrophe Ts52 R\n\n45) ts52: Build R1 Frogstar\n\n46) zoltar: Build Y3 Greenpea\n\n47) ts52: Trade B1 G1 Frogstar\n\n48) zoltar: Sacrifice G2 Yellowjacket\nBuild G2 Sol\nBuild G2 Sol\n\n49) ts52: Trade G3 B3 Ts52\n\n50) zoltar: Discover G1 Sol Y1 Luna\n\n51) ts52: Build B1 Frogstar\n\n52) zoltar: Build G2 Luna\n\n53) ts52: Sacrifice G1 Frogstar\nBuild B1 Ts52\n\n54) zoltar: Trade Y2 B2 Zoltar\n\n55) ts52: Discover B1 Ts52 G3 Kermit\n\n56) zoltar: Build Y2 Greenpea\n\n57) ts52: Trade B1 G1 Kermit\n\n58) zoltar: Build G3 Luna\n\n59) ts52: Trade B3 R3 Ts52\n\n60) zoltar: Sacrifice G3 Luna\nBuild G3 Luna\nBuild R1 Sol\nBuild R2 Sol\n\n61) ts52: Trade R3 B3 Ts52\n\n62) zoltar: Sacrifice B2 Zoltar\nTrade R3 B3 Sol\nTrade R2 B2 Sol\n\n63) ts52: Trade B3 R3 Ts52\n\n64) zoltar: Sacrifice G3 Luna\nBuild G3 Sol\nBuild R2 Sol\nBuild R3 Sol\n\n65) ts52: Sacrifice G1 Kermit\nBuild R3 Ts52\n\tts52: You know, this game is really hard when you don&#39;t have any yellow ships... ;) Thanks for the game.\n\n66) zoltar: Sacrifice Y3 Greenpea\nMove R1 Sol Ts52\nMove R2 Sol Ts52\nMove G3 Sol Ts52\nCatastrophe Ts52 R\n\tzoltar: Yes, when I &quot;locked you out&quot; of yellow tech, the game was pretty much over, and I just had to slowly build up and then destroy your homeworld (there may have been a tactically more precise faster victory, but the slow build-up was unstoppable.  Thanks.  Play again?\n\tts52: Sure, I&#39;d be happy to play again. Thanks.\n\n\nHomeworlds Online (SDG# 7637)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.4, Ended: 2007.6.7\nParticipants: nycavri (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld R1 B2 G3\n\n2) nycavri: Homeworld B1 G3 Y3\n\n3) Lexicon: Build G1 Lexicon\n\n4) nycavri: Build Y1 Nycavri\n\n5) Lexicon: Trade G1 Y1 Lexicon\n\n6) nycavri: Trade Y1 B1 Nycavri\n\n7) Lexicon: Build G1 Lexicon\n\n8) nycavri: Build Y1 Nycavri\n\n9) Lexicon: Discover G1 Lexicon B3 Drosophila\n\n10) nycavri: Discover Y1 Nycavri G2 Deacon\n\n11) Lexicon: Build G1 Drosophila\n\n12) nycavri: Discover Y1 Deacon G3 May\n\n13) Lexicon: Build G1 Lexicon\n\n14) nycavri: Build Y1 May\n\n15) Lexicon: Build Y2 Lexicon\n\tnycavri: Looks like a bunch of games hiccoughed, but no harm done here.\n\n16) nycavri: Move Y1 May Lexicon\n\n17) Lexicon: Move Y2 Lexicon Drosophila\n\n18) nycavri: Build Y2 May\n\n19) Lexicon: Discover G1 Drosophila B2 Bostaurus\n\n20) nycavri: Trade B1 R1 Nycavri\n\n21) Lexicon: Build G2 Bostaurus\n\n22) nycavri: Attack G1 Lexicon\n\n23) Lexicon: Build G2 Drosophila\n\n24) nycavri: Build G2 Lexicon\n\n25) Lexicon: Attack G2 Lexicon\n\n26) nycavri: Build Y2 Lexicon\n\n27) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild Y3 Drosophila\nBuild Y3 Lexicon\nCatastrophe Lexicon Yellow\n\n28) nycavri: Build Y1 Nycavri\n\n29) Lexicon: Attack G1 Lexicon\n\n30) nycavri: Trade Y1 B1 Nycavri\n\n31) Lexicon: Sacrifice Y2 Drosophila\nMove G1 Bostaurus Nycavri\nMove G2 Bostaurus Nycavri\n\n32) nycavri: Attack G2 Nycavri\n\n33) Lexicon: Sacrifice G1 Lexicon\nBuild G1 Nycavri\nCatastrophe Nycavri Green\n\n34) nycavri: Trade B1 G1 Nycavri\n\n35) Lexicon: Discover G2 Drosophila B2 Rattus\n\n36) nycavri: Build R1 Nycavri\n\n37) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Rattus\nBuild G2 Drosophila\nBuild G3 Lexicon\n\n38) nycavri: Build G3 Nycavri\n\n39) Lexicon: Trade G1 B1 Rattus\n\n40) nycavri: Build R2 Nycavri\n\n41) Lexicon: Trade G1 B1 Drosophila\n\n42) nycavri: Move G1 Nycavri May\n\n43) Lexicon: Sacrifice Y3 Drosophila\nMove B1 Drosophila Nycavri\nMove G2 Rattus Nycavri\nMove B1 Rattus Nycavri\n\n44) nycavri: Attack G2 Nycavri\n\tnycavri: Well played.  I think I&#39;m now 0 for 10 now.....\n\n45) Lexicon: Sacrifice G3 Lexicon\nBuild B2 Nycavri\nBuild B2 Nycavri\nBuild B3 Nycavri\nCatastrophe Nycavri Blue\n\n\tLexicon: party in nycavri&#39;s system!\n\tLexicon: I was going to let it sit there a round, but that would just be mean. :)\r\n\r\nTook me a while to get the hang of homeworlds.  And I&#39;m still relatively bad at it. But it&#39;s the most popular game here, so there are no shortage of learning experiences...\n\nHomeworlds Online (SDG# 7636)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.4, Ended: 2007.6.9\nParticipants: jbj77 (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld B2 Y1 G3\n\n2) jbj77: Homeworld B1 Y3 G3\n\n3) dsheldon: Build G1 Dsheldon\n\n4) jbj77: Build G1 Jbj77\n\n5) dsheldon: Build G1 Dsheldon\n\n6) jbj77: Build G2 Jbj77\n\n7) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n8) jbj77: Discover G2 Jbj77 Y2 Alpha\n\n9) dsheldon: Trade G1 Y1 Dsheldon\n\n10) jbj77: Trade G1 Y1 Jbj77\n\n11) dsheldon: Discover Y1 Dsheldon B3 Hope\n\n12) jbj77: Build Y2 Jbj77\n\n13) dsheldon: Build G1 Dsheldon\n\n14) jbj77: Discover Y2 Jbj77 G2 Beta\n\n15) dsheldon: Trade G1 R1 Dsheldon\n\n16) jbj77: Build Y2 Beta\n\n17) dsheldon: Build G1 Dsheldon\n\tdsheldon: Somehow I have completely bungled my opening...\n\n18) jbj77: Trade Y1 R1 Jbj77\n\n19) dsheldon: Move G1 Dsheldon Hope\n\n20) jbj77: Discover Y2 Beta G3 Gamma\n\n21) dsheldon: Build G1 Dsheldon\n\n22) jbj77: Build G2 Jbj77\n\n23) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y1 Hope\nBuild Y3 Hope\n\n24) jbj77: Move Y2 Beta Hope\nCatastrophe Hope Yellow\n\n25) dsheldon: Build G2 Hope\n\n26) jbj77: Sacrifice G3 Jbj77\nBuild R1 Jbj77\nBuild R2 Jbj77\nBuild G3 Jbj77\n\n27) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild R2 Dsheldon\nBuild R2 Dsheldon\n\tdsheldon: I should have mentioned that I was going to be out of town Wednesday and Thursday.  I&#39;m back now!\n\n\tdsheldon: I like that plan...\n\nHomeworlds Online (SDG# 7613)\nStarted: 2007.5.5, Ended: 2007.6.3\nParticipants: MikeYarrum (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) sordros: Build G1 Sordros\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) sordros: Discover Y1 Sordros G3 Verdolaga\n\n8) MikeYarrum: Build Y2 Mikeyarrum\n\n9) sordros: Build Y2 Verdolaga\n\n10) MikeYarrum: Discover Y2 Mikeyarrum G1 Osaka\n\n11) sordros: Build G1 Sordros\n\n12) MikeYarrum: Build Y2 Osaka\n\n13) sordros: Discover Y2 Verdolaga B1 Bluemoon\n\n14) MikeYarrum: Build Y3 Mikeyarrum\n\n15) sordros: Build Y3 Verdolaga\n\n16) MikeYarrum: Discover Y2 Osaka Y3 Sakaki\n\n17) sordros: Trade G1 B1 Sordros\n\n18) MikeYarrum: Build G1 Mikeyarrum\n\n19) sordros: Build B1 Sordros\n\n20) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n21) sordros: Trade B1 R1 Sordros\n\n22) MikeYarrum: Build G1 Mikeyarrum\n\n23) sordros: Build B1 Sordros\n\n24) MikeYarrum: Move G1 Mikeyarrum Osaka\n\n25) sordros: Move B1 Sordros Verdolaga\n\n26) MikeYarrum: Move Y3 Mikeyarrum Bluemoon\n\n27) sordros: Move Y3 Verdolaga Osaka\n\n28) MikeYarrum: Move G1 Osaka Sakaki\n\n29) sordros: Build B2 Verdolaga\n\n30) MikeYarrum: Build G1 Mikeyarrum\n\n31) sordros: Trade B2 G2 Verdolaga\n\n32) MikeYarrum: Build G2 Sakaki\n\n33) sordros: Build G2 Sordros\n\n34) MikeYarrum: Move R1 Mikeyarrum Bluemoon\n\n35) sordros: Sacrifice R1 Sordros\nAttack R1 Bluemoon\n\n36) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n37) sordros: Sacrifice R1 Bluemoon\nAttack Y2 Osaka\n\n38) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack Y2 Bluemoon\n\n39) sordros: Sacrifice G3 Sordros\nBuild B2 Verdolaga\nBuild B2 Verdolaga\nBuild B3 Sordros\n\n40) MikeYarrum: Trade Y2 R2 Bluemoon\n\n41) sordros: Sacrifice B2 Verdolaga\nTrade B2 R2 Verdolaga\nTrade B3 R3 Sordros\n\n42) MikeYarrum: Build Y2 Mikeyarrum\n\n43) sordros: Build B2 Verdolaga\n\n44) MikeYarrum: Move G1 Sakaki Bluemoon\n\n45) sordros: Move B1 Verdolaga Osaka\n\n46) MikeYarrum: Build R1 Bluemoon\n\n47) sordros: Build R1 Sordros\n\n48) MikeYarrum: Move R1 Bluemoon Sakaki\n\n49) sordros: Trade R3 G3 Sordros\n\n50) MikeYarrum: Move G2 Sakaki Sordros\n\n51) sordros: Sacrifice G3 Sordros\nBuild B2 Verdolaga\nBuild B3 Sordros\nBuild B3 Osaka\n\n52) MikeYarrum: Sacrifice R2 Bluemoon\nAttack B1 Sordros\nAttack G2 Sordros\n\n53) sordros: Sacrifice R2 Verdolaga\nAttack B1 Sordros\nAttack G2 Sordros\n\n54) MikeYarrum: Sacrifice R1 Sakaki\nAttack R1 Sordros\n\n55) sordros: Trade B3 R3 Sordros\n\n56) MikeYarrum: Sacrifice G2 Sordros\nBuild R1 Sordros\nBuild R1 Sordros\nCatastrophe Sordros Red\n\n57) sordros: Build B3 Sordros\n\n58) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n59) sordros: Trade B3 R3 Sordros\n\n60) MikeYarrum: Move R1 Mikeyarrum Bluemoon\n\n61) sordros: Sacrifice Y2 Osaka\nMove Y3 Osaka Mikeyarrum\nMove B3 Osaka Mikeyarrum\n\n62) MikeYarrum: Sacrifice Y3 Bluemoon\nMove G1 Bluemoon Mikeyarrum\nMove R1 Bluemoon Mikeyarrum\nMove Y2 Sakaki Sordros\n\n63) sordros: Attack G3 Mikeyarrum\n\n\tsordros: Thanks for the game\n\tMikeYarrum: My pleasure.\n\nHomeworlds Online (SDG# 7641)\nStarted: 2007.5.6, Ended: 2007.5.18\nParticipants: MatrixFrog (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) MatrixFrog: Homeworld G2 B3 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n8) MatrixFrog: Build G1 Matrixfrog\n\n9) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n10) MatrixFrog: Discover G1 Matrixfrog B1 Grape\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n12) MatrixFrog: Build G1 Matrixfrog\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild G2 Grape\nBuild G3 Matrixfrog\nBuild G3 Grape\n\n15) MikeYarrum: Sacrifice Y3 Mikeyarrum\nMove G1 Mikeyarrum Yomi\nMove G1 Yomi Grape\nMove G1 Grape Matrixfrog\nCatastrophe Matrixfrog Green\n\n16) MatrixFrog: Sacrifice G1 Grape\nBuild Y1 Matrixfrog\n\tMatrixFrog: Yeah, that was stupid.\n\n17) MikeYarrum: Build Y2 Yomi\n\n18) MatrixFrog: Build G1 Grape\n\tMikeYarrum: Well, it did leave you the advantage in ships.\n\n19) MikeYarrum: Build G1 Mikeyarrum\n\n20) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove G3 Grape Matrixfrog\n\n21) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n22) MatrixFrog: Build G1 Matrixfrog\n\n23) MikeYarrum: Build R1 Mikeyarrum\n\n24) MatrixFrog: Build Y1 Matrixfrog\n\n25) MikeYarrum: Build G1 Mikeyarrum\n\n26) MatrixFrog: Move Y1 Matrixfrog Grape\n\n27) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n28) MatrixFrog: Build Y3 Matrixfrog\n\n29) MikeYarrum: Build G2 Mikeyarrum\n\n30) MatrixFrog: Move Y3 Matrixfrog Mikeyarrum\n\n31) MikeYarrum: Move Y2 Yomi Grape\n\n32) MatrixFrog: Sacrifice G1 Grape\nBuild Y3 Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n33) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack G2 Grape\n\n34) MatrixFrog: Move Y1 Grape Matrixfrog\n\n35) MikeYarrum: Build G1 Grape\n\n36) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n37) MikeYarrum: Move G1 Grape Matrixfrog\n\n38) MatrixFrog: Move G3 Matrixfrog Mikeyarrum\n\n39) MikeYarrum: Sacrifice Y2 Grape\nMove G1 Matrixfrog Mikeyarrum\nMove Y1 Yomi Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n40) MatrixFrog: Build G1 Matrixfrog\n\tMikeYarrum: I was wondering when you&#39;d finally hit me with that ship.\n\n41) MikeYarrum: Build G1 Grape\n\n42) MatrixFrog: Build R1 Matrixfrog\n\n43) MikeYarrum: Trade G1 Y1 Grape\n\n44) MatrixFrog: Build Y2 Matrixfrog\n\n45) MikeYarrum: Build Y2 Grape\n\n46) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n47) MikeYarrum: Move R1 Mikeyarrum Matrixfrog\nCatastrophe Matrixfrog Red\n\n48) MatrixFrog: Move Y1 Matrixfrog Mikeyarrum\n\n49) MikeYarrum: Move G2 Grape Matrixfrog\n\n50) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y2 Mikeyarrum\n\n51) MikeYarrum: Trade G2 R2 Matrixfrog\n\n52) MatrixFrog: Build G1 Matrixfrog\n\n53) MikeYarrum: Attack G1 Matrixfrog\n\tMatrixFrog: Good game.\n\tMatrixFrog: Ack. Nevermind.\n\n54) MatrixFrog: Move Y2 Mikeyarrum Matrixfrog\n\n55) MikeYarrum: Attack Y2 Matrixfrog\n\n56) MatrixFrog: Move Y1 Mikeyarrum Matrixfrog\n\n57) MikeYarrum: Attack G1 Matrixfrog\n\n\tMikeYarrum: Thanks for the game - I was pretty nervous for awhile.\n\nHomeworlds Online (SDG# 7649)\nStarted: 2007.5.6, Ended: 2007.5.27\nParticipants: MikeYarrum (S), rkalajian (N)\nWinner: MikeYarrum\n\n1) rkalajian: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) rkalajian: Build Y1N Rkalajian\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) rkalajian: Discover Y1 Rkalajian R1 Redstarsystem\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) rkalajian: Build Y1N Rkalajian\n\n8) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n9) rkalajian: Trade Y1 G1 Rkalajian\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) rkalajian: Move G1 Rkalajian Redstarsystem\n\n12) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n13) rkalajian: Build Y1 Rkalajian\n\n14) MikeYarrum: Build Y2 Yomi\n\n15) rkalajian: Build Y2 Redstarsystem\n\n16) MikeYarrum: Discover Y1 Yomi G1 Tomo\n\n17) rkalajian: Trade Y1 B1 Rkalajian\n\n18) MikeYarrum: Build R1 Mikeyarrum\n\n19) rkalajian: Discover Y1 Redstarsystem B3 Bluestarsystem\n\n20) MikeYarrum: Build R2 Mikeyarrum\n\n21) rkalajian: Build Y1N Rkalajian\n\n22) MikeYarrum: Build Y3 Yomi\n\n23) rkalajian: Trade Y3 R3 Rkalajian\n\n24) MikeYarrum: Build Y3 Tomo\n\n25) rkalajian: Build R2 Rkalajian\n\n26) MikeYarrum: Discover R1 Mikeyarrum Y3 Sakaki\n\n27) rkalajian: Move R2 Rkalajian Redstarsystem\n\n28) MikeYarrum: Trade R1 B1 Mikeyarrum\n\n29) rkalajian: Move G1 Redstarsystem Bluestarsystem\n\n30) MikeYarrum: Build B2 Mikeyarrum\n\n31) rkalajian: Build B2N Rkalajian\n\n32) MikeYarrum: Move B1 Mikeyarrum Yomi\n\n33) rkalajian: Move B2 Rkalajian Redstarsystem\n\n34) MikeYarrum: Build B3 Yomi\n\n35) rkalajian: Build G1 Bluestarsystem\n\n36) MikeYarrum: Move B3 Yomi Tomo\n\n37) rkalajian: Build G2 Bluestarsystem\n\n38) MikeYarrum: Build B3 Tomo\n\n39) rkalajian: Move R2 Redstarsystem Bluestarsystem\n\n40) MikeYarrum: Trade B3 R3 Tomo\n\tMikeYarrum: You should probably take that move back. Any player can cause a catastrophe if there are four or more pieces of any single color in a system (right now, I could take all of your green pieces in blueStarsystem without even doing anything).\n\n41) rkalajian: Move G1 Bluestarsystem Redstarsystem\n\trkalajian: Thanks for the heads up\n\n42) MikeYarrum: Build B3 Tomo\n\n43) rkalajian: Build G2 Bluestarsystem\n\n44) MikeYarrum: Move R3 Tomo Bluestarsystem\n\n45) rkalajian: Build G2 Redstarsystem\n\n46) MikeYarrum: Attack R2 Bluestarsystem\n\n47) rkalajian: Build R1 Rkalajian\n\n48) MikeYarrum: Attack Y1 Bluestarsystem\n\n49) rkalajian: Trade G2 R2 Bluestarsystem\n\n50) MikeYarrum: Move R3 Bluestarsystem Redstarsystem\n\n51) rkalajian: Attack R2 Bluestarsystem\n\n52) MikeYarrum: Attack B2 Redstarsystem\n\n53) rkalajian: Build R3 Bluestarsystem\n\n54) MikeYarrum: Sacrifice Y2 Yomi\nMove R1 Sakaki Tomo\nMove R1 Tomo Bluestarsystem\nCatastrophe Bluestarsystem Red\n\n55) rkalajian: Build G2 Bluestarsystem\n\n56) MikeYarrum: Attack G2 Redstarsystem\n\n57) rkalajian: Move Y2 Redstarsystem Bluestarsystem\n\n58) MikeYarrum: Attack G1 Redstarsystem\n\n59) rkalajian: Trade G2 R2 Bluestarsystem\n\n60) MikeYarrum: Trade B3 R3 Tomo\n\n61) rkalajian: Attack Y1 Bluestarsystem\n\n62) MikeYarrum: Build B3 Redstarsystem\n\n63) rkalajian: Build Y2 Rkalajian\n\n64) MikeYarrum: Sacrifice Y3 Tomo\nMove G2 Redstarsystem Rkalajian\nMove G1 Redstarsystem Rkalajian\nMove R3 Redstarsystem Rkalajian\n\n65) rkalajian: Attack R3 Rkalajian\n\n66) MikeYarrum: Trade G1 R1 Rkalajian\nCatastrophe Rkalajian Red\n\n67) rkalajian: Build Y3 Rkalajian\n\n68) MikeYarrum: Move Y1 Tomo Rkalajian\nCatastrophe Rkalajian Yellow\n\n69) rkalajian: Move G2 Bluestarsystem Redstarsystem\n\n70) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack B1 Rkalajian\nPass\n\trkalajian: Guess my first game isn&#39;t going so well :)\n\n\tMikeYarrum: It&#39;s to be expected. There are a lot of good players on this site. But I&#39;m sure you&#39;ll pick it up pretty quickly. =D\n\tMikeYarrum: Thanks for playing!\n\trkalajian: Thanks for the game!\n\nHomeworlds Online (SDG# 7668)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.7, Ended: 2007.6.20\nParticipants: antihero (S), mneme (N)\nWinner: antihero\n\n1) mneme: Homeworld R1 B2 G3\n\n2) antihero: Homeworld B2 Y3 G3\n\n3) mneme: Build G1 Mneme\n\n4) antihero: Build G1 Antihero\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) mneme: Build G1 Mneme\n\n8) antihero: Build G1 Antihero\n\n9) mneme: Discover G1 Mneme Y3 Alpha\n\n10) antihero: Trade G1 R1 Antihero\n\n11) mneme: Build G1 Mneme\n\n12) antihero: Build R1 Antihero\n\n13) mneme: Build Y1 Mneme\n\n14) antihero: Build Y2 Antihero\n\n15) mneme: Discover G1 Mneme Y3 Beta\n\n16) antihero: Discover Y1 Antihero B1 Switch\n\n17) mneme: Discover Y1 Mneme B3 Artist\n\n18) antihero: Build R2 Antihero\n\n19) mneme: Build Y2 Mneme\n\n20) antihero: Move R2 Antihero Switch\n\n21) mneme: Trade Y2 R2 Mneme\n\n22) antihero: Move R1 Antihero Switch\n\n23) mneme: Move R2 Mneme Beta\n\n24) antihero: Trade R1 G1 Switch\n\n25) mneme: Build G2 Mneme\n\n26) antihero: Build Y2 Switch\n\n27) mneme: Sacrifice G2 Mneme\nBuild G2 Alpha\nBuild Y2 Artist\n\n28) antihero: Build R1 Switch\n\n29) mneme: Sacrifice G1 Alpha\nBuild G1 Mneme\n\n30) antihero: Move Y2 Switch Alpha\n\n31) mneme: Sacrifice R2 Beta\nAttack Y2 Alpha\nPass\n\n32) antihero: Move R1 Switch Beta\n\n33) mneme: Build G2 Beta\n\n34) antihero: Move R2 Switch Alpha\n\n35) mneme: Trade Y2 R2 Artist\n\n36) antihero: Sacrifice G3 Antihero\nBuild R2 Beta\nBuild R3 Antihero\nBuild R3 Alpha\n\n37) mneme: Sacrifice G2 Alpha\nBuild Y2 Artist\nBuild R3 Artist\n\n38) antihero: Sacrifice R2 Alpha\nAttack Y2 Alpha\nAttack G2 Beta\n\n39) mneme: Sacrifice G3 Mneme\nBuild G2 Beta\nBuild G2 Beta\nBuild G3 Mneme\nCatastrophe Beta G\n\n40) antihero: Trade R3 G3 Antihero\n\n41) mneme: Trade R2 G2 Artist\n\n42) antihero: Sacrifice Y2 Alpha\nMove R1 Beta Mneme\nMove R2 Beta Mneme\n\n43) mneme: Sacrifice R3 Artist\nAttack R2 Mneme\nAttack R1 Mneme\nPass\n\n44) antihero: Move R1 Antihero Switch\n\n45) mneme: Move R2 Mneme Artist\n\n46) antihero: Build R2 Switch\n\n47) mneme: Build G1 Artist\n\n48) antihero: Build G2 Switch\n\n49) mneme: Sacrifice G2 Artist\nBuild Y2 Artist\nBuild Y3 Mneme\n\n50) antihero: Move Y1 Switch Artist\nCatastrophe Artist Y\n\n51) mneme: Build G2 Artist\n\n52) antihero: Discover R3 Alpha Y2 Sigmund\n\n53) mneme: Move Y1 Mneme Artist\n\n54) antihero: Move R3 Sigmund Artist\n\n55) mneme: Sacrifice G3 Mneme\nBuild R2 Artist\nBuild R3 Artist\nBuild R3 Mneme\nCatastrophe Artist R\n\n56) antihero: Sacrifice Y2 Antihero\nDiscover R1 Switch B3 Wormhole\nMove R1 Wormhole Mneme\nCatastrophe Mneme R\n\n57) mneme: Trade G2 R2 Artist\n\n58) antihero: Build G2 Antihero\n\n59) mneme: Build G2 Artist\n\tantihero: nice! (for you, not for me) :)\n\n60) antihero: Trade G1 Y1 Switch\n\tmneme: I managed to even-up, anyway.  It&#39;s not amazing when I have to force a catastrophe in my own system to do it, though (but better than staying behind)\n\n61) mneme: Trade G1 B1 Artist\n\n62) antihero: Build G1 Switch\n\n63) mneme: Build G1 Artist\n\n64) antihero: Trade G1 B1 Switch\n\n65) mneme: Discover G2 Artist Y1 Trucker\n\n66) antihero: Trade G2 R2 Antihero\n\n67) mneme: Build Y2 Mneme\n\n68) antihero: Build Y2 Switch\n\n69) mneme: Discover Y2 Mneme G3 Cookie\n\n70) antihero: Discover Y1 Switch G3 Toy\n\n71) mneme: Sacrifice G2 Trucker\nBuild G1 Mneme\nBuild G2 Artist\n\n72) antihero: Move G2 Switch Mneme\n\n73) mneme: Build G2 Mneme\nCatastrophe Mneme G\n\n74) antihero: Move B1 Switch Toy\n\n75) mneme: Build R1 Artist\n\n76) antihero: Build B2 Toy\n\n77) mneme: Discover B1 Artist G1 Piper\n\n78) antihero: Discover B2 Toy G1 Another\n\n79) mneme: Build B3 Piper\n\n80) antihero: Build B3 Toy\n\n81) mneme: Trade B1 Y1 Piper\n\n82) antihero: Sacrifice Y2 Switch\nMove B2 Another Mneme\nMove B1 Toy Mneme\n\n\tmneme: nicely done!\n\tantihero: Thanks! That was a good game for sure.\n\nHomeworlds Online (SDG# 7653)\nStarted: 2007.5.10, Ended: 2007.6.12\nParticipants: nycavri (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) nycavri: Homeworld Y2 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) nycavri: Build G1 Nycavri\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) nycavri: Build G1 Nycavri\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) nycavri: Trade G3 Y3 Nycavri\n\n9) MikeYarrum: Trade Y1 B1 Mikeyarrum\n\n10) nycavri: Discover G1 Nycavri Y1 Taylor\n\n11) MikeYarrum: Build B1 Mikeyarrum\n\n12) nycavri: Build G1 Taylor\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) nycavri: Build G2 Nycavri\n\n15) MikeYarrum: Discover B1 Mikeyarrum G3 Yomi\n\n16) nycavri: Trade G2 B2 Nycavri\n\n17) MikeYarrum: Build B2 Yomi\n\n18) nycavri: Discover G1 Taylor Y3 Mercury\n\n19) MikeYarrum: Build B2 Yomi\n\n20) nycavri: Build B3 Nycavri\n\n21) MikeYarrum: Discover B1 Mikeyarrum G3 Kagura\n\n22) nycavri: Move B2 Nycavri Taylor\n\n23) MikeYarrum: Sacrifice Y1 Mikeyarrum\nDiscover B2 Yomi Y1 Tomo\n\n24) nycavri: Trade B3 R3 Nycavri\n\n25) MikeYarrum: Sacrifice G2 Mikeyarrum\nBuild B3 Tomo\nBuild B3 Kagura\n\n26) nycavri: Move G1 Mercury Mikeyarrum\n\n27) MikeYarrum: Sacrifice B2 Yomi\nTrade B3 Y3 Kagura\nTrade B3 R3 Tomo\n\n28) nycavri: Build G2 Mikeyarrum\n\n29) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n30) nycavri: Sacrifice B2 Taylor\nTrade G1 R1 Mikeyarrum\nTrade G2 R2 Mikeyarrum\n\n31) MikeYarrum: Trade R3 G3 Mikeyarrum\n\n32) nycavri: Trade R1 G1 Mikeyarrum\n\n33) MikeYarrum: Build B2 Yomi\n\n34) nycavri: Trade R2 B2 Mikeyarrum\n\n35) MikeYarrum: Move B1 Kagura Taylor\n\n36) nycavri: Build G2 Mikeyarrum\n\n37) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n38) nycavri: Build B3 Mikeyarrum\n\n39) MikeYarrum: Sacrifice R3 Tomo\nAttack B3 Mikeyarrum\nAttack G2 Mikeyarrum\nAttack B2 Mikeyarrum\n\n40) nycavri: Build G2 Taylor\n\n41) MikeYarrum: Trade B3 Y3 Mikeyarrum\n\n42) nycavri: Build G2 Mikeyarrum\n\n43) MikeYarrum: Discover G2 Mikeyarrum B3 Nyamo\n\n44) nycavri: Build G3 Nycavri\n\n45) MikeYarrum: Attack G2 Mikeyarrum\n\n46) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild R1 Nycavri\nBuild R1 Nycavri\n\n47) MikeYarrum: Trade B1 R1 Taylor\n\n48) nycavri: Trade G1 B1 Mikeyarrum\n\n49) MikeYarrum: Move B2 Mikeyarrum Kagura\n\n50) nycavri: Move G3 Nycavri Tomo\n\n51) MikeYarrum: Move R1 Taylor Nycavri\nCatastrophe Nycavri Red\n\n52) nycavri: Build G1 Nycavri\n\n53) MikeYarrum: Build B3 Kagura\n\n54) nycavri: Trade G1 R1 Nycavri\n\n55) MikeYarrum: Trade B3 R3 Kagura\n\n56) nycavri: Sacrifice R1 Nycavri\nAttack B2 Tomo\n\n57) MikeYarrum: Build B3 Kagura\n\n58) nycavri: Trade B1 Y1 Mikeyarrum\n\n59) MikeYarrum: Attack Y1 Mikeyarrum\n\n60) nycavri: Sacrifice B2 Tomo\nTrade G2 Y2 Taylor\nTrade G1 B1 Taylor\n\n61) MikeYarrum: Move R3 Kagura Tomo\n\n62) nycavri: Discover Y2 Taylor R3 Edney\n\n63) MikeYarrum: Attack G3 Tomo\n\n64) nycavri: Move Y2 Edney Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n65) MikeYarrum: Move G3 Tomo Nycavri\n\n66) nycavri: Trade G1 R1 Nycavri\n\tnycavri: Forgot to pull the trigger!\n\tMikeYarrum: I was wondering if you&#39;d try that.\n\n67) MikeYarrum: Sacrifice R3 Tomo\nAttack Y3 Nycavri\nAttack R1 Nycavri\nPass\n\n\tMikeYarrum: Thank you for the game!\n\tnycavri: And you!\n\nHomeworlds Online (SDG# 7695)\nStarted: 2007.5.10, Ended: 2007.5.14\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) MikeYarrum: Homeworld B1 G2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build Y1 Mikeyarrum\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) MikeYarrum: Trade Y1 G1 Mikeyarrum\n\n7) zoltar: Build G1 Zoltar\n\n8) MikeYarrum: Build Y1 Mikeyarrum\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) zoltar: Build G1 Zoltar\n\n12) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: This always seems to happen with us - both trying not to take the last smallest piece and give the opponent the first bigger one.\n\n15) zoltar: Discover B1 Zoltar G1 Greendale\n\n16) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n17) zoltar: Build G2 Zoltar\n\n18) MikeYarrum: Build R1 Mikeyarrum\n\n19) zoltar: Discover G2 Zoltar Y1 Yellowstone\n\n20) MikeYarrum: Build Y2 Mikeyarrum\n\n21) zoltar: Build Y2 Zoltar\n\n22) MikeYarrum: Build R2 Mikeyarrum\n\n23) zoltar: Move R1 Zoltar Greendale\n\n24) MikeYarrum: Discover R1 Mikeyarrum G3 Yomi\n\n25) zoltar: Move Y1 Zoltar Greendale\n\n26) MikeYarrum: Move Y1 Mikeyarrum Yomi\n\n27) zoltar: Build R2 Greendale\n\n28) MikeYarrum: Move R2 Mikeyarrum Sakaki\n\n29) zoltar: Move R2 Greendale Yomi\n\n30) MikeYarrum: Move R2 Sakaki Greendale\n\n31) zoltar: Sacrifice G2 Yellowstone\nBuild R2 Yomi\nBuild R3 Greendale\n\n32) MikeYarrum: Build R3 Greendale\nCatastrophe Greendale Red\n\n33) zoltar: Sacrifice R2 Yomi\nAttack R1 Yomi\nAttack Y1 Yomi\n\tzoltar: Kaboom!  \n\n34) MikeYarrum: Build G2 Sakaki\n\n35) zoltar: Build G2 Zoltar\n\n36) MikeYarrum: Build G3 Mikeyarrum\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Yomi\nBuild Y2 Greendale\nBuild Y3 Zoltar\n\n38) MikeYarrum: Build R1 Mikeyarrum\n\n39) zoltar: Build G3 Zoltar\n\n40) MikeYarrum: Discover G2 Sakaki B1 Tomo\n\n41) zoltar: Sacrifice Y2 Greendale\nMove Y1 Yomi Mikeyarrum\nMove Y1 Yomi Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n42) MikeYarrum: Move G1 Sakaki Tomo\n\n43) zoltar: Sacrifice Y3 Zoltar\nMove G2 Zoltar Greendale\nMove G2 Greendale Yomi\nMove G2 Yomi Mikeyarrum\nCatastrophe Mikeyarrum G\n\n44) MikeYarrum: Trade G1 Y1 Tomo\n\n45) zoltar: Sacrifice Y2 Zoltar\nMove R1 Yomi Mikeyarrum\nMove R2 Yomi Mikeyarrum\nCatastrophe Mikeyarrum R\n\tzoltar: Well, that one went from a close game to armageddon in 3 moves!\n\n\nHomeworlds Online (SDG# 7728)\nStarted: 2007.5.13, Ended: 2007.5.22\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 G2 B3\n\n2) zoltar: Homeworld B3 Y2 G3\n\tts52: Have a great game!\n\n3) ts52: Build B1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade B1 Y1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build Y2 Ts52\n\n8) zoltar: Build Y2 Zoltar\n\n9) ts52: Discover Y2 Ts52 G3 Frogstar\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) ts52: Trade Y1 R1 Ts52\n\n12) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n13) ts52: Build B1 Ts52\n\n14) zoltar: Build G1 Zoltar\n\n15) ts52: Trade B1 G1 Ts52\n\n16) zoltar: Discover G1 Zoltar Y1 Yellowjacket\n\n17) ts52: Discover G1 Ts52 Y3 Crikket\n\n18) zoltar: Build G2 Zoltar\n\n19) ts52: Build B1 Ts52\n\n20) zoltar: Trade G2 B2 Zoltar\n\n21) ts52: Move B1 Ts52 Crikket\n\n22) zoltar: Move B2 Zoltar Yellowjacket\n\n23) ts52: Build B1 Ts52\n\n24) zoltar: Build G2 Zoltar\n\n25) ts52: Build G2 Crikket\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowjacket\nBuild B1 Yellowjacket\n\n27) ts52: Sacrifice Y2 Frogstar\nMove G1 Crikket Yellowjacket\nMove G2 Crikket Yellowjacket\nCatastrophe Yellowjacket Green\n\n28) zoltar: Discover B1 Yellowjacket G3 Greenland\n\n29) ts52: Trade B1 G1 Crikket\n\n30) zoltar: Build B1 Greenland\n\n31) ts52: Trade B1 G1 Ts52\n\n32) zoltar: Trade B1 Y1 Greenland\n\n33) ts52: Build B1 Ts52\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenland\nBuild Y3 Greenland\nBuild Y3 Greenpea\n\n35) ts52: Build G2 Crikket\n\tts52: Aw man, here we go again... how did I not see that coming??\r\n\n\tts52: (ie, well played, I am an idiot that doesn&#39;t learn. ;) )\n\n36) zoltar: Sacrifice B2 Yellowjacket\nTrade Y3 G3 Greenland\nTrade Y3 G3 Greenpea\n\tzoltar: sacrifices are the hardest moves to see in Homeworlds.  When I play Jesse or TwoShort, sometimes I&#39;m lost after about 10 moves, as they will make sacrificing combos that are devastating and that I don&#39;t see coming even though I&#39;ve gotten pretty good at the game.\n\n37) ts52: Trade B1 Y1 Ts52\n\n38) zoltar: Sacrifice G3 Greenland\nBuild G3 Zoltar\nBuild Y3 Greenpea\nBuild Y3 Greenpea\n\n39) ts52: Discover Y1 Ts52 B3 Grover\n\n40) zoltar: Move Y2 Greenpea Grover\n\n41) ts52: Discover Y1 Grover B2 Gonzo\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenland\nBuild B1 Greenland\n\n43) ts52: Trade B3 R3 Ts52\n\n44) zoltar: Trade B1 R1 Greenland\n\n45) ts52: Move G1 Crikket Gonzo\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoltar\nBuild R2 Greenland\n\n47) ts52: Discover R1 Ts52 B3 Grape\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Greenland\nBuild R3 Zoltar\n\n49) ts52: Sacrifice G2 Crikket\nBuild G2 Gonzo\nBuild Y3 Gonzo\n\n50) zoltar: Sacrifice Y3 Greenpea\nMove Y2 Grover Gonzo\nMove Y1 Greenland Gonzo\nMove R1 Greenland Ts52\nCatastrophe Gonzo Y\n\n51) ts52: Trade G2 Y2 Gonzo\n\n52) zoltar: Build R3 Ts52\n\n53) ts52: Attack R3S Ts52\n\n54) zoltar: Sacrifice Y3 Greenpea\nMove R2 Greenland Ts52\nMove G3 Greenpea Greenland\nMove G3 Greenland Ts52\nCatastrophe Ts52 R\n\n55) ts52: Sacrifice Y2 Gonzo\nDiscover R1 Grape G1 Pebble\nMove R1 Pebble Zoltar\nCatastrophe Zoltar Red\n\tts52: Thanks for another good game.\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild B1 Greenland\nBuild B2 Greenland\nBuild G1 Ts52\nCatastrophe Greenland B\nCatastrophe Ts52 G\n\tzoltar: Same to you as well.\n\n\nHomeworlds Online (SDG# 7723)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.13, Ended: 2007.6.6\nParticipants: zoltar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\tJesse: Hey, Zoltar.  Have a good game.\n\n3) Jesse: Build G1 Jesse\n\tzoltar: You as well!\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) zoltar: Build G1 Zoltar\n\n9) Jesse: Build Y1 Jesse\n\n10) zoltar: Build Y2 Zoltar\n\n11) Jesse: Discover Y1 Jesse G2 Goedel\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) Jesse: Build Y1 Jesse\n\n14) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n15) Jesse: Discover Y1 Jesse B2 Leibniz\n\tJesse: Ack.  Think &quot;Jesse&quot;, type &quot;Goedel&quot;.  :P\n\n16) zoltar: Build G2 Zoltar\n\n17) Jesse: Sacrifice G3 Jesse\nBuild Y2 Goedel\nBuild Y3 Leibniz\nBuild Y3 Jesse\n\n18) zoltar: Build Y3 Greenpea\n\n19) Jesse: Trade Y3 G3 Jesse\n\n20) zoltar: Trade G3 Y3 Zoltar\n\n21) Jesse: Sacrifice Y2 Goedel\nMove Y1 Goedel Greenpea\nMove Y1 Leibniz Greenpea\nCatastrophe Greenpea Y\n\n22) zoltar: Sacrifice G2 Zoltar\nBuild R1 Zoltar\nBuild R2 Zoltar\n\tzoltar: I think I&#39;m lost already. This is like playing TwoShort!\n\n23) Jesse: Move G1 Jesse Leibniz\n\n24) zoltar: Discover R2 Zoltar Y1 Yellowjacket\n\tJesse: TwoShort&#39;s stomping me, in our current game, too.  He&#39;s a fearsome opponent.  Though I used to be the #1 around here before he came along, I can&#39;t say I mind the comparison.  :D  It&#39;s good to have some others rated in the same neighborhood, such as yourself, too.\n\n25) Jesse: Trade Y3 R3 Leibniz\n\n26) zoltar: Build R2 Zoltar\n\n27) Jesse: Build G1 Jesse\n\n28) zoltar: Build G2 Zoltar\n\n29) Jesse: Build G2 Leibniz\n\n30) zoltar: Discover G2 Zoltar B1 Blueberry\n\n31) Jesse: Trade G1 Y1 Leibniz\n\n32) zoltar: Build Y2 Zoltar\n\n33) Jesse: Sacrifice G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Jesse\nBuild Y3 Leibniz\n\n34) zoltar: Sacrifice Y2 Zoltar\nDiscover R1 Zoltar G1 Greenpea\nMove R1 Zoltar Blueberry\n\n35) Jesse: Move Y3 Leibniz Blueberry\n\n36) zoltar: Sacrifice G2 Blueberry\nBuild R2 Yellowjacket\nBuild R3 Zoltar\n\n37) Jesse: Build Y2 Leibniz\n\n38) zoltar: Build R3 Greenpea\n\n39) Jesse: Build G2 Leibniz\n\n40) zoltar: Move Y3 Zoltar Greenpea\n\n41) Jesse: Move G2 Leibniz Blueberry\n\n42) zoltar: Discover R2 Zoltar B1 Bluejay\n\n43) Jesse: Build G2 Leibniz\n\n44) zoltar: Build G3 Zoltar\n\n45) Jesse: Build G3 Leibniz\n\n46) zoltar: Move G1 Zoltar Yellowjacket\n\n47) Jesse: Sacrifice G2 Leibniz\nBuild G2 Jesse\nBuild G3 Blueberry\n\n48) zoltar: Sacrifice Y3 Greenpea\nMove R2 Bluejay Leibniz\nMove R3 Zoltar Blueberry\nMove G3 Zoltar Blueberry\n\n\tzoltar: I can&#39;t find anything to do and think my position is lost, but I&#39;ll wait and come back to it again.\n\tzoltar: Yup, I&#39;m toast in this one as well.  gg.\n\tJesse: Interesting.  SDG allows you to commit suicide, which is technically illegal.  (Not that it matters.)  Good game.\n\nHomeworlds Online (SDG# 7701)\nStarted: 2007.5.13, Ended: 2007.5.22\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) zoltar: Build G2 Zoltar\n\n13) MikeYarrum: Build G2 Sakaki\n\n14) zoltar: Discover G1 Zoltar Y2 Yellowstone\n\n15) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n16) zoltar: Build G1 Yellowstone\n\n17) MikeYarrum: Build B1 Mikeyarrum\n\n18) zoltar: Discover G1 Yellowstone Y3 Cornflake\n\n19) MikeYarrum: Trade B1 R1 Mikeyarrum\n\tzoltar: I see that you are bidding on the Ice Towers set on eBay -- I bought one on eBay last year. I bid on a Zendo set (which unlike Ice Towers has the Homeworlds colors) a couple of months ago but I was outbid -- it sold for an outrageous $60.\n\tMikeYarrum: Yep, I figured that I might as well give it a shot - not planning on winning it, though. I mostly wanted the Zendo set because I already have a full set of Xeno pieces.\n\n20) zoltar: Build G2 Cornflake\n\n21) MikeYarrum: Build R2 Mikeyarrum\n\n22) zoltar: Build G3 Zoltar\n\n23) MikeYarrum: Move R2 Mikeyarrum Sakaki\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\nBuild R2 Zoltar\n\n25) MikeYarrum: Move B1 Mikeyarrum Sakaki\n\n26) zoltar: Move R1 Zoltar Yellowstone\n\n27) MikeYarrum: Build B1 Sakaki\n\n28) zoltar: Discover R2 Zoltar Y2 Yellowjacket\n\n29) MikeYarrum: Discover G2 Sakaki B2 Kaorin\n\n30) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n31) MikeYarrum: Build B1 Sakaki\n\n32) zoltar: Move Y1 Zoltar Yellowstone\n\n33) MikeYarrum: Move B1 Sakaki Kaorin\n\n34) zoltar: Trade Y3 R3 Zoltar\n\n35) MikeYarrum: Build B2 Sakaki\n\n36) zoltar: Build Y3 Yellowstone\n\n37) MikeYarrum: Build B3 Kaorin\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild R2 Zoltar\nBuild R3 Yellowjacket\nBuild R3 Yellowstone\n\n39) MikeYarrum: Build G3 Sakaki\n\n40) zoltar: Move G1 Cornflake Yellowjacket\n\n41) MikeYarrum: Move Y1 Mikeyarrum Sakaki\n\n42) zoltar: Discover Y1 Yellowstone B3 Bluemoon\n\n43) MikeYarrum: Move R2 Sakaki Kaorin\n\tMikeYarrum: ... out of pieces? This situation is... new to me. I guess it means I&#39;ve been getting better if I can hold out this long.\n\n44) zoltar: Sacrifice G2 Cornflake\nBuild G2 Yellowjacket\nBuild Y3 Bluemoon\n\tzoltar: Yup, it&#39;s not that common, though with the extra red and yellow ships, I have quite the advantage, though it will probably take a while to win.\n\n45) MikeYarrum: Move Y1 Sakaki Kaorin\n\n46) zoltar: Move R2 Zoltar Yellowstone\n\n47) MikeYarrum: Move B1 Kaorin Zoltar\n\n48) zoltar: Attack B1 Zoltar\n\n49) MikeYarrum: Move B1 Sakaki Kaorin\n\n50) zoltar: Sacrifice Y3 Bluemoon\nMove G1 Yellowjacket Sakaki\nMove G1 Yellowstone Sakaki\nMove B1 Zoltar Kaorin\nCatastrophe Sakaki G\nCatastrophe Kaorin B\n\tzoltar: very sneaky, but you forgot that your plan to blow up my blue star could backfire...\n\n51) MikeYarrum: Trade B2 G2 Sakaki\n\tMikeYarrum: True, but it&#39;s not as if I had much of a choice. You kinda got me up against a wall, here.\n\n52) zoltar: Sacrifice G3 Yellowstone\nBuild Y1 Bluemoon\nBuild Y3 Bluemoon\nBuild R2 Zoltar\n\tMikeYarrum: Inside joke, Kaorin and Sakaki are characters from a Japanese cartoon, and K has a crush on S, but usually finds herself thwarted in her romantic attempts. So having her get supernova&#39;ed right next to Sakaki... meh, I guess you&#39;d have to get the reference.\n\tzoltar: I see -- I&#39;d never heard of the cartoon.\n\n53) MikeYarrum: Build G1 Sakaki\n\tzoltar: Yep, there was not much you could do, but giving me the b1 sped things up.\n\n54) zoltar: Move R3 Yellowstone Sakaki\n\n55) MikeYarrum: Discover G2 Sakaki B2 Nyamo\n\n56) zoltar: Sacrifice R2 Zoltar\nAttack G1 Sakaki\nAttack B1 Sakaki\n\n57) MikeYarrum: Build G1 Nyamo\n\n58) zoltar: Build R2 Sakaki\n\n59) MikeYarrum: Build G1 Mikeyarrum\n\n60) zoltar: Build G3 Sakaki\n\n61) MikeYarrum: Trade G1 B1 Nyamo\n\tzoltar: Your last move in the multi-player game was great, as it forced me to sac to wipe out the Y3 before it could escape, destroying all Jesse&#39;s threats against you.  Of course, now you&#39;ve turned me into  an &#39;Iran&#39; having weakened Jesse enough and have left me with an extra 3-pip ship.  Now you have to build and try to get the two of us to fight while you get strong and ready to attack -- you can&#39;t wait too long, and if I attack Jesse you have to respond, not only to keep me from winning, but because I&#39;ll be weak and over-extended at the same time -- so build fast and get ready for a big 3-way showdown!\n\n62) zoltar: Sacrifice Y3 Yellowstone\nMove Y3 Bluemoon Mikeyarrum\nMove G3 Sakaki Mikeyarrum\nMove R3 Sakaki Mikeyarrum\n\n63) MikeYarrum: Attack R3 Mikeyarrum\n\tzoltar: Oh that was silly -- I don&#39;t need any more big ships -- I can attack right now!\r\n\n\n64) zoltar: Sacrifice R2 Yellowjacket\nAttack R3 Mikeyarrum\nAttack G3 Mikeyarrum\n\n65) MikeYarrum: Sacrifice G2 Nyamo\nBuild G1 Mikeyarrum\nBuild R2 Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n66) zoltar: Sacrifice Y3 Mikeyarrum\nMove R3 Yellowjacket Sakaki\nMove R2 Sakaki Mikeyarrum\nMove R3 Sakaki Mikeyarrum\nCatastrophe Mikeyarrum R\n\n\nHomeworlds Online (SDG# 7734)\nStarted: 2007.5.16, Ended: 2007.5.20\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) zoltar: Homeworld B1 Y3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\tzoltar: Hey we have a chance to win the 4-player game.  Jesse almost won (due to my mistake of weakening sordros and not killing him) but sordros resigned just as Jesse was pouncing on him.  So I sacked my green to blow up Jesse&#39;s green (else he sacks his G3, rebuilds it in his homeworld plus two more free builds, probably an r2 and y2) and your last move puts you in a position to move two y1&#39;s into the sardros system and blow up the star and the Y3 which Jesse is about to capture, and which would give Jesse the game (I can&#39;t stop him from blowing you up if he gets that Y3 for free).  But now if we weaken him, I have a chance to win if I then go after Jesse, and you have a chance to win if you can recover and then attack me when I weaken myself to go after Jesse, so he no longer has a lock on the game as he did a move ago.  All in all, the two player version is still better, but this 4-player one has gotten interesting, now that we can stop Jesse from winning and weaken him so that I can attack him before he can move his troops to your homeworld.\n\tMikeYarrum: Oh, secret plans. I forgot he left himself open there.\r\n\r\nDue to two resignations in my 4-player game with Cinnibar, it&#39;s now a Binary game with a lot of extra pieces. I guess I know how that can be...\n\n6) zoltar: Trade G1 R1 Zoltar\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\tzoltar: I just want to make sure you don&#39;t let Jesse have an overwhelming lead and steamroll you before I have a chance to attack him.  Besides not letting him have a third y3 ship (meaning he could do consecutive sacs and swarm your homeworld with nasty beasties and threaten multiple catastrophes), you need to move your y3 out of your homeworld: it is 1) a liability, as you have two yellow ships together and a sac could send two ships in and blow them up, and 2) it&#39;s an attacking piece, as an r2 can be sacked and capture two pieces wherever your y3 is present, and 3) you have good defence with a red star, plus at least one r2 that could be sacked to destroy two attackers, and the most stable castle (the b3 and y1) with all colors represented only once after the y3 is gone.  \n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Build Y1 Mikeyarrum\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G1 Osaka\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) MikeYarrum: Build Y2 Osaka\n\n14) zoltar: Build Y2 Greendale\n\tzoltar: In my personal game with Jesse, I&#39;m already lost after about 10 moves.  I&#39;m no match for Jesse or TwoShort, and it&#39;s like I&#39;m playing my first game when I&#39;m up against them.\n\n15) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\tMikeYarrum: For a game that&#39;s not even ten years old, Homeworlds is surprisingly deep!\r\n\r\nRight now, I&#39;m in 24 SDG matches, and half are Homeworlds. I&#39;m wondering if this is healthy...\n\n16) zoltar: Discover Y1 Greendale G1 Greenbelt\n\tzoltar: I think it&#39;s good brain exercise.  In our four player game, I don&#39;t know why you moved you little y1 out and not your y3 as an extra 3-pip at home doesn&#39;t do more, and you could have moved your y3 right into rutabaga, where Jesse has an r1 and wants to build reds to then move in and blow up your red star.  So I suppose I&#39;ll have to move my y3 to rutabaga and stop him from amassing a red fleet at your border!\n\n17) MikeYarrum: Build G2 Mikeyarrum\n\n18) zoltar: Build Y1 Greenbelt\n\n19) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n20) zoltar: Build Y2 Greenbelt\n\n21) MikeYarrum: Discover Y1 Osaka G2 Chiyo\n\n22) zoltar: Build Y3 Greendale\n\n23) MikeYarrum: Discover G2 Mikeyarrum B1 Tomo\n\n24) zoltar: Sacrifice Y3 Greendale\nMove Y1 Greenbelt Mikeyarrum\nMove Y1 Greenbelt Mikeyarrum\nMove Y2 Greenbelt Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n25) MikeYarrum: Build Y1 Osaka\n\n26) zoltar: Build Y1 Greendale\n\n27) MikeYarrum: Build Y2 Chiyo\n\n28) zoltar: Discover Y2 Greendale G1 Greenbelt\n\n29) MikeYarrum: Move Y1 Chiyo Tomo\n\n30) zoltar: Build Y3 Greenbelt\n\n31) MikeYarrum: Build Y3 Tomo\n\n32) zoltar: Move Y3 Greenbelt Mikeyarrum\n\n33) MikeYarrum: Sacrifice Y3 Tomo\nMove Y1 Tomo Mikeyarrum\nMove Y1 Osaka Mikeyarrum\nMove Y2 Osaka Mikeyarrum\nCatastrophe Mikeyarrum Yellow\n\n34) zoltar: Move Y2 Greenbelt Mikeyarrum\n\n\nHomeworlds Online (SDG# 7733)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.16, Ended: 2007.5.29\nParticipants: Jesse (S), MikeYarrum (N)\nWinner: Jesse\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) Jesse: Homeworld R3 B1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Jesse: Build G1 Jesse\n\tJesse: Have a good game.\n\n5) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\tMikeYarrum: Thanks, you too.\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) Jesse: Build Y1 Jesse\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) Jesse: Build Y2 Jesse\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) Jesse: Discover Y2 Jesse G2 Blork\n\n13) MikeYarrum: Discover Y2 Mikeyarrum B1 Tomo\n\n14) Jesse: Build Y2 Jesse\n\n15) MikeYarrum: Move G1 Mikeyarrum Tomo\n\n16) Jesse: Trade Y1 R1 Jesse\n\n17) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n18) Jesse: Trade Y1 B1 Jesse\n\n19) MikeYarrum: Move R1 Mikeyarrum Tomo\n\n20) Jesse: Move B1 Jesse Blork\n\n21) MikeYarrum: Build R1 Tomo\n\n22) Jesse: Build B2 Blork\n\n23) MikeYarrum: Build Y1 Mikeyarrum\n\n24) Jesse: Discover B2 Blork G3 Glog\n\n25) MikeYarrum: Discover R1 Tomo G2 Yomi\n\tMikeYarrum: Nice names.\n\n26) Jesse: Move R1 Jesse Blork\n\n27) MikeYarrum: Build R2 Yomi\n\n28) Jesse: Build B2 Blork\n\n29) MikeYarrum: Build Y1 Tomo\n\n30) Jesse: Trade B2 G2 Blork\n\n31) MikeYarrum: Trade Y2 B2 Tomo\n\n32) Jesse: Build B2 Blork\n\n33) MikeYarrum: Discover B2 Tomo G3 Nyamo\n\n34) Jesse: Build B3 Glog\n\n35) MikeYarrum: Build B3 Nyamo\n\n36) Jesse: Sacrifice Y2 Blork\nMove B1 Blork Nyamo\nMove B2 Blork Nyamo\nCatastrophe Nyamo B\n\n37) MikeYarrum: Trade Y1 B1 Tomo\n\n38) Jesse: Trade B3 Y3 Glog\n\n39) MikeYarrum: Move Y1 Mikeyarrum Tomo\n\n40) Jesse: Move Y3 Glog Yomi\n\n41) MikeYarrum: Build Y1 Tomo\n\n42) Jesse: Sacrifice R1 Blork\nAttack R2 Yomi\n\n\nHomeworlds Online (SDG# 7751)\nStarted: 2007.5.16, Ended: 2007.6.4\nParticipants: MikeYarrum (S), Lexicon (N)\nWinner: MikeYarrum\n\n1) Lexicon: Homeworld R1 B2 G3\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) Lexicon: Build G1 Lexicon\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Lexicon: Trade G1 Y1 Lexicon\n\n6) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n7) Lexicon: Build Y1 Lexicon\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Lexicon: Discover Y1 Lexicon G3 One\n\n10) MikeYarrum: Discover G1 Mikeyarrum B1 Tomo\n\n11) Lexicon: Build Y1 One\n\n12) MikeYarrum: Build Y2 Mikeyarrum\n\n13) Lexicon: Build Y2 Lexicon\n\n14) MikeYarrum: Move Y2 Mikeyarrum Tomo\n\n15) Lexicon: Discover Y1 One B2 Two\n\n16) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n17) Lexicon: Build G1 Lexicon\n\n18) MikeYarrum: Discover B1 Mikeyarrum G1 Osaka\n\n19) Lexicon: Build Y2 One\n\n20) MikeYarrum: Build Y3 Tomo\n\n21) Lexicon: Sacrifice G1 Lexicon\nBuild Y3 Two\n\n22) MikeYarrum: Trade Y2 R2 Tomo\n\n23) Lexicon: Trade Y1 G1 Two\n\n24) MikeYarrum: Build G2 Tomo\n\n25) Lexicon: Build G2 Two\n\n26) MikeYarrum: Build R1 Tomo\n\n27) Lexicon: Trade G2 R2 Two\n\tLexicon: To me, the global reserve stash appears to be empty.  This seems pretty weird.\n\tMikeYarrum: Me too.\n\tAaron: Had a major permissions snafu the other day.  I missed this directory.  Fixed.\n\tLexicon: Ack,  those can be tricky.  Thanks!\n\n28) MikeYarrum: Discover G2 Tomo R3 Yukari\n\n29) Lexicon: Discover G1 Two B1 Three\n\n30) MikeYarrum: Build G2 Yukari\n\n31) Lexicon: Build G2 Three\n\n32) MikeYarrum: Build G3 Tomo\n\n33) Lexicon: Trade Y2 B2 Lexicon\n\n34) MikeYarrum: Build B3 Osaka\n\n35) Lexicon: Trade G1 Y1 Three\n\n36) MikeYarrum: Build Y2 Tomo\n\n37) Lexicon: Sacrifice Y3 Two\nMove Y1 Lexicon One\nMove Y1 One Tomo\nMove Y1 One Tomo\nCatastrophe Tomo Yellow\n\n38) MikeYarrum: Trade B3 Y3 Osaka\n\n39) Lexicon: Build G1 Three\n\n40) MikeYarrum: Build B3 Osaka\n\n41) Lexicon: Move G1 Three Yukari\n\n42) MikeYarrum: Move B3 Osaka One\n\n43) Lexicon: Sacrifice G2 Three\nBuild G2 Yukari\nBuild Y1 Three\nCatastrophe Yukari Green\n\n44) MikeYarrum: Sacrifice R1 Tomo\nAttack Y2 One\n\n45) Lexicon: Trade Y1 G1 Three\n\n46) MikeYarrum: Trade B3 R3 One\n\n47) Lexicon: Build G2 Lexicon\n\n48) MikeYarrum: Move R3 One Two\n\n49) Lexicon: Sacrifice Y1 Three\nDiscover R2 Two Y1 Four\n\n50) MikeYarrum: Build B3 Osaka\n\n51) Lexicon: Sacrifice G3 Lexicon\nBuild G2 Three\nBuild G2 Three\nBuild G3 Lexicon\n\n52) MikeYarrum: Sacrifice Y2 One\nMove G1 Tomo Two\nMove G1 Two Three\nCatastrophe Three Green\n\n53) Lexicon: Trade G2 Y2 Lexicon\n\n54) MikeYarrum: Discover B3 Osaka Y3 Kagura\n\n55) Lexicon: Move B2 Lexicon Kagura\n\n56) MikeYarrum: Build Y1 Osaka\n\n57) Lexicon: Discover B2 Kagura G1 Five\n\n58) MikeYarrum: Sacrifice Y1 Osaka\nMove R3 Two Five\n\n59) Lexicon: Sacrifice B2 Five\nTrade R2 G2 Four\nTrade Y2 G2 Lexicon\n\n60) MikeYarrum: Build B1 Osaka\n\n61) Lexicon: Build G1 Four\n\tLexicon: tenacious game we&#39;ve got here.\n\tMikeYarrum: Indeed!\n\n62) MikeYarrum: Trade B3 G3 Kagura\n\n63) Lexicon: Discover G1 Four B2 Six\n\n64) MikeYarrum: Move B1 Osaka Kagura\n\n65) Lexicon: Build G2 Six\n\n66) MikeYarrum: Build B2 Kagura\n\n67) Lexicon: Trade G1 R1 Six\n\n68) MikeYarrum: Build B3 Osaka\n\n69) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Six\nBuild G3 Lexicon\nBuild R1 Six\n\n70) MikeYarrum: Build B3 Kagura\n\n71) Lexicon: Trade R1 Y1 Six\n\n72) MikeYarrum: Sacrifice Y3 Osaka\nMove B1 Kagura Lexicon\nMove B2 Kagura Lexicon\nMove B3 Kagura Lexicon\n\n73) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild Y1 Six\nBuild Y2 Six\nCatastrophe Lexicon Blue\n\n74) MikeYarrum: Trade B3 Y3 Osaka\n\tLexicon: blow up time?\n\tMikeYarrum: I suppose so...\n\n75) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Four\nBuild R1 Six\nBuild R2 Six\n\tLexicon: You forgot a step.\n\n76) MikeYarrum: Move G3 Kagura Lexicon\n\tMikeYarrum: Not really. I figured you&#39;d be forced to do it yourself, or I would have attacked your Homeworld ships.\n\n77) Lexicon: Sacrifice Y2 Six\nMove G1 Six Lexicon\nMove G2 Six Lexicon\nCatastrophe Lexicon Green\n\n\tLexicon: OK, that was satisfying.\n\tLexicon: I messed up in the beginning because I meant to attack you from two, but it was the wrong size.  And then you kept too much pressure on for me to recover.\n\tMikeYarrum: Thanks for the game!\n\nHomeworlds Online (SDG# 7748)\nStarted: 2007.5.17, Ended: 2007.6.4\nParticipants: MikeYarrum (S), Cinnibar (N)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G1 B2 Y3\n\tCinnibar: Ah, Binary?  Cool.  I&#39;m no zoltan, but enjoy the game. ;)\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) Cinnibar: Build Y1 Cinnibar\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Cinnibar: Build Y1 Cinnibar\n\n6) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\tMikeYarrum: Heh, I&#39;m getting my butt kicked by him quite enough, thank you.\n\n7) Cinnibar: Discover Y1 Cinnibar G3 Vitae\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Cinnibar: Trade Y3 G3 Cinnibar\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) Cinnibar: Build Y1 Vitae\n\n12) MikeYarrum: Build Y2 Mikeyarrum\n\n13) Cinnibar: Discover Y1 Vitae B2 Morpheus\n\n14) MikeYarrum: Discover G2 Mikeyarrum B1 Tomo\n\n15) Cinnibar: Sacrifice G3 Cinnibar\nBuild Y2 Morpheus\nBuild Y2 Vitae\nBuild Y3 Cinnibar\n\n16) MikeYarrum: Move Y2 Mikeyarrum Tomo\n\n17) Cinnibar: Discover Y1 Morpheus Y3 Lained\n\n18) MikeYarrum: Build G2 Tomo\n\n19) Cinnibar: Trade Y2 G2 Morpheus\n\n20) MikeYarrum: Discover G2 Tomo B3 Nyamo\n\n21) Cinnibar: Build G3 Morpheus\n\n22) MikeYarrum: Build G3 Nyamo\n\n23) Cinnibar: Trade G2 R2 Morpheus\n\n24) MikeYarrum: Sacrifice G3 Nyamo\nBuild G2 Tomo\nBuild Y2 Tomo\nBuild G3 Nyamo\n\n25) Cinnibar: Build R1 Morpheus\n\n26) MikeYarrum: Trade G2 R2 Tomo\n\n27) Cinnibar: Build G2 Morpheus\n\n28) MikeYarrum: Build R1 Tomo\n\n29) Cinnibar: Sacrifice Y1 Cinnibar\nDiscover R1 Morpheus B1 Phase\n\n30) MikeYarrum: Move R2 Tomo Lained\n\n31) Cinnibar: Move Y1 Lained Phase\n\n32) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n33) Cinnibar: Build Y1 Cinnibar\n\n34) MikeYarrum: Move R2 Lained Phase\n\n35) Cinnibar: Sacrifice Y1 Phase\nDiscover R1 Phase Y3 I-storm\n\n36) MikeYarrum: Discover B1 Mikeyarrum G1 Chiyo\n\n37) Cinnibar: Discover Y1 Cinnibar B3 Lained\n\n38) MikeYarrum: Sacrifice G3 Nyamo\nBuild R1 Tomo\nBuild R3 Phase\nBuild G3 Nyamo\n\n39) Cinnibar: Sacrifice G3 Morpheus\nBuild R3 Morpheus\nBuild G3 Morpheus\nBuild R3 I-storm\n\n40) MikeYarrum: Sacrifice Y2 Tomo\nMove R1 Tomo Morpheus\nMove R1 Tomo Morpheus\nCatastrophe Morpheus Red\n\n41) Cinnibar: Move R3 I-storm Tomo\n\n42) MikeYarrum: Sacrifice Y2 Tomo\nMove G2 Tomo I-storm\nMove R2 Phase Lained\n\n43) Cinnibar: Move Y1 Lained Tomo\n\n44) MikeYarrum: Trade G2 Y2 Nyamo\n\n45) Cinnibar: Sacrifice G2 Morpheus\nBuild Y1 Tomo\nBuild G2 Morpheus\n\n46) MikeYarrum: Build G2 Nyamo\n\n47) Cinnibar: Sacrifice G3 Morpheus\nBuild Y2 Cinnibar\nBuild R1 I-storm\nBuild G3 Morpheus\n\n48) MikeYarrum: Sacrifice R2 Lained\nAttack R1 I-storm\nAttack R1 I-storm\n\n49) Cinnibar: Sacrifice Y2 Vitae\nMove Y1 Tomo Mikeyarrum\nMove Y1 Tomo Mikeyarrum\n\n50) MikeYarrum: Trade Y3 B3 Mikeyarrum\n\n51) Cinnibar: Attack G1S Mikeyarrum\n\n52) MikeYarrum: Trade G3 R3 Nyamo\n\n53) Cinnibar: Sacrifice G3 Morpheus\nBuild G3 Morpheus\nBuild R1 Tomo\nBuild G3 Mikeyarrum\n\n54) MikeYarrum: Sacrifice R3 Phase\nAttack G3 Mikeyarrum\nAttack G1 Mikeyarrum\nAttack Y1 Mikeyarrum\n\n55) Cinnibar: Trade Y3 R3 Cinnibar\n\n56) MikeYarrum: Sacrifice Y2 Nyamo\nMove R1 I-storm Cinnibar\nMove R1 I-storm Cinnibar\n\n57) Cinnibar: Sacrifice R3 Tomo\nAttack R1S Cinnibar\nAttack R1S Cinnibar\nAttack Y1S Mikeyarrum\n\n58) MikeYarrum: Trade G2 Y2 Nyamo\n\n59) Cinnibar: Sacrifice R1 Cinnibar\nAttack G1S Mikeyarrum\n\n60) MikeYarrum: Sacrifice Y2 Nyamo\nMove R3 Nyamo Cinnibar\nMove G2 I-storm Cinnibar\n\n61) Cinnibar: Sacrifice R1 Cinnibar\nAttack R3S Cinnibar\n\n62) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Cinnibar\nBuild G3 Cinnibar\nBuild B1 Chiyo\nCatastrophe Cinnibar Green\n\n63) Cinnibar: Trade R3 B3 Cinnibar\n\n64) MikeYarrum: Build B2 Chiyo\n\n65) Cinnibar: Move R3 Cinnibar Chiyo\n\n66) MikeYarrum: Sacrifice B2 Chiyo\nTrade B1 R1 Chiyo\nTrade B1 R1 Chiyo\n\n67) Cinnibar: Sacrifice B3 Cinnibar\nTrade Y1 B1 Mikeyarrum\nTrade Y1 B1 Mikeyarrum\nPass\nCatastrophe Mikeyarrum B\n\n\nHomeworlds Online (SDG# 7806)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.18, Ended: 2007.5.28\nParticipants: zoltar (S), morganfitzp (N)\nWinner: zoltar\n\n1) morganfitzp: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) morganfitzp: Build G1 Morganfitzp\n\n4) zoltar: Build B1 Zoltar\n\n5) morganfitzp: Trade G3 B3 Morganfitzp\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) morganfitzp: Build B2 Morganfitzp\n\n8) zoltar: Build B2 Zoltar\n\n9) morganfitzp: Trade B3 Y3 Morganfitzp\n\n10) zoltar: Trade B2 R2 Zoltar\n\n11) morganfitzp: Discover B2 Morganfitzp G3 Ganesh\n\tmorganfitzp: I can&#39;t see the Global Reserve Stash. Can you?\n\n12) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n13) morganfitzp: Build B2 Ganesh\n\n14) zoltar: Build B2 Greenbelt\n\n15) morganfitzp: Trade B2 Y2 Ganesh\n\n16) zoltar: Trade B2 Y2 Greenbelt\n\n17) morganfitzp: Build B2 Ganesh\n\n18) zoltar: Build B2 Greenbelt\n\n19) morganfitzp: Trade B2 R2 Ganesh\n\n20) zoltar: Discover B2 Greenbelt G3 Greenhills\n\n21) morganfitzp: Discover B2 Ganesh G2 Lakshmi\n\n22) zoltar: Build B2 Greenhills\n\n23) morganfitzp: Build B3 Lakshmi\n\n24) zoltar: Build B3 Greenbelt\n\n25) morganfitzp: Trade B2 G2 Lakshmi\n\n26) zoltar: Trade B3 R3 Greenbelt\n\n27) morganfitzp: Build Y1 Ganesh\n\n28) zoltar: Trade B2 Y2 Greenhills\n\n29) morganfitzp: Move Y1 Ganesh Lakshmi\n\n30) zoltar: Build B2 Greenhills\n\n31) morganfitzp: Build G1 Morganfitzp\n\n32) zoltar: Build B2 Greenhills\n\n33) morganfitzp: Build B3 Lakshmi\n\n34) zoltar: Sacrifice Y2 Greenbelt\nMove B2 Greenhills Lakshmi\nMove B2 Greenhills Lakshmi\nCatastrophe Lakshmi B\n\n35) morganfitzp: Build G1 Lakshmi\n\n36) zoltar: Build B2 Greenbelt\n\n37) morganfitzp: Discover G1 Morganfitzp B3 Vishnu\n\n38) zoltar: Build B2 Greenhills\n\n39) morganfitzp: Build Y1 Lakshmi\n\n40) zoltar: Build B3 Greenbelt\n\n41) morganfitzp: Sacrifice Y1 Lakshmi\nDiscover G1 Vishnu Y2 Shiva\n\n42) zoltar: Sacrifice Y2 Greenhills\nMove B2 Greenhills Shiva\nMove B3 Greenbelt Ganesh\n\n43) morganfitzp: Sacrifice Y2 Ganesh\nMove G1 Shiva Zoltar\nMove G1 Lakshmi Zoltar\n\n44) zoltar: Sacrifice R2 Zoltar\nAttack G1 Zoltar\nAttack R2 Ganesh\n\n45) morganfitzp: Sacrifice G1 Morganfitzp\nBuild G1 Zoltar\nCatastrophe Zoltar Green\n\n46) zoltar: Trade B3 G3 Ganesh\n\n47) morganfitzp: Build G1 Lakshmi\n\tzoltar: well, nothing I can do about that, but at least you&#39;re fleet will be weakened terribly in order to supernova my green star...\n\n48) zoltar: Sacrifice G3 Ganesh\nBuild B3 Greenbelt\nBuild B3 Greenhills\nBuild B3 Shiva\n\tmorganfitzp: My fleet is weak as it is. I&#39;ve been losing this game for a while. It&#39;ll just be nice to knock out one of your suns before I go.\n\n49) morganfitzp: Sacrifice G2 Lakshmi\nBuild Y1 Morganfitzp\nBuild Y1 Lakshmi\n\n50) zoltar: Sacrifice B3 Greenhills\nTrade Y3 R3 Zoltar\nTrade B3 Y3 Greenbelt\nTrade B3 G3 Shiva\n\n\tmorganfitzp: Man, forget it.\n\nHomeworlds Online (SDG# 7597)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.18, Ended: 2007.5.21\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n\tmneme: shit.  What I get for going away on the weekend. (and forgetting to play a move on Friday).\r\n\n\nHomeworlds Online (SDG# 7801)\nStarted: 2007.5.18, Ended: 2007.6.6\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) mneme: Build G1 Mneme\n\n5) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n6) mneme: Trade G3 Y3 Mneme\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) mneme: Build Y1 Mneme\n\n9) MikeYarrum: Trade Y1 B1 Mikeyarrum\n\n10) mneme: Build Y1 Mneme\n\n11) MikeYarrum: Build B1 Mikeyarrum\n\n12) mneme: Trade Y1 B1 Mneme\n\n13) MikeYarrum: Discover B1 Mikeyarrum Y1 Tomo\n\n14) mneme: Build B2 Mneme\n\n15) MikeYarrum: Trade B1 R1 Mikeyarrum\n\n16) mneme: Trade B2 R2 Mneme\n\n17) MikeYarrum: Build G1 Mikeyarrum\n\n18) mneme: Build G2 Mneme\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) mneme: Discover G2 Mneme G3 Greenacre\n\n21) MikeYarrum: Move G2 Mikeyarrum Tomo\n\n22) mneme: Discover R2 Mneme G3 Yule\n\n23) MikeYarrum: Build B1 Tomo\n\n24) mneme: Discover B1 Mneme G3 Emerald\n\n25) MikeYarrum: Build G2 Tomo\n\n26) mneme: Sacrifice G2 Greenacre\nBuild G2 Mneme\nBuild G3 Mneme\n\n27) MikeYarrum: Discover G2 Tomo Y3 Yomi\n\tMikeYarrum: Oh shoot, I should&#39;ve seen that coming!\n\n28) mneme: Move G2 Mneme Emerald\n\tmneme: Yep.  :)\n\n29) MikeYarrum: Move B1 Tomo Yomi\n\n30) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild R1 Yule\nBuild B2 Emerald\n\n31) MikeYarrum: Discover G1 Mikeyarrum Y1 Chiyo\n\n32) mneme: Move Y1 Mneme Emerald\n\n33) MikeYarrum: Build Y2 Mikeyarrum\n\n34) mneme: Move G2 Emerald Chiyo\n\n35) MikeYarrum: Build B2 Tomo\n\n36) mneme: Move G3 Mneme Yomi\n\n37) MikeYarrum: Sacrifice Y3 Mikeyarrum\nMove B1 Tomo Yomi\nMove B1 Yomi Mneme\nMove B1 Yomi Mneme\n\n38) mneme: Move B1 Emerald Mneme\nCatastrophe Mneme B\n\n39) MikeYarrum: Move R1 Mikeyarrum Tomo\n\tmneme: this is interesting.  Oh, now what?\n\n40) mneme: Sacrifice G3 Yomi\nBuild G3 Mneme\nBuild Y2 Mneme\nBuild B1 Emerald\n\n41) MikeYarrum: Sacrifice B2 Tomo\nTrade G2 R2 Tomo\nTrade G2 Y2 Yomi\n\n42) mneme: Move G3 Mneme Mikeyarrum\n\n43) MikeYarrum: Sacrifice Y2 Yomi\nMove R1 Tomo Yule\nMove R2 Tomo Yule\nCatastrophe Yule Red\n\n44) mneme: Attack Y2 Mikeyarrum\n\n\tmneme: good game.\n\tMikeYarrum: Yep, thanks for playing.\n\nHomeworlds Online (SDG# 7813)\nStarted: 2007.5.20, Ended: 2007.5.27\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) MikeYarrum: Build G1 Mikeyarrum\n\n7) zoltar: Build G1 Zoltar\n\n8) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n9) zoltar: Discover G1 Zoltar Y1 Yeltar\n\n10) MikeYarrum: Build G2 Sakaki\n\n11) zoltar: Build G2 Yeltar\n\n12) MikeYarrum: Discover G2 Sakaki B1 Tomo\n\n13) zoltar: Sacrifice G2 Yeltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n14) MikeYarrum: Trade G2 Y2 Tomo\n\tzoltar: One thing I like about this game is that when I get to positions like this, where I think you have the advantage and I felt stuck, there are creative things one can do to break the symmetry, such as this sack and creating yellows.  Now instead of my being clearly behind and your getting the last G3 ship without a fight, this mixes things up, and there&#39;s another green in the stack, so I can both delay anyone getting the G3 for another move, as well as threaten to get ahead in yellow ships.\n\tMikeYarrum: Oh, I didn&#39;t think of things like that. But I have an idea about how I might counter it...\n\n15) zoltar: Trade Y1 R1 Zoltar\n\n16) MikeYarrum: Build G2 Sakaki\n\n17) zoltar: Move Y2 Zoltar Tomo\n\n18) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n19) zoltar: Sacrifice R1 Zoltar\nAttack Y2 Tomo\n\n20) MikeYarrum: Build R1 Mikeyarrum\n\n21) zoltar: Trade Y2 R2 Tomo\n\n22) MikeYarrum: Trade R1 B1 Mikeyarrum\n\n23) zoltar: Build Y1 Zoltar\n\n24) MikeYarrum: Build B2 Mikeyarrum\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Tomo\nBuild Y3 Tomo\nBuild Y3 Zoltar\n\n26) MikeYarrum: Move B2 Mikeyarrum Sakaki\n\n27) zoltar: Move Y3 Tomo Sakaki\n\n\nHomeworlds Online (SDG# 7881)\nStarted: 2007.5.26, Ended: 2007.6.1\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\tts52: Let&#39;s see if I can manage to not get locked out of yellow this time. ;) Have a good game!\r\n\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 R1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build G1 Ts52\n\n8) zoltar: Build Y1 Zoltar\n\n9) ts52: Build R1 Ts52\n\n10) zoltar: Build Y2 Zoltar\n\n11) ts52: Build R2 Ts52\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) ts52: Trade R2 Y2 Ts52\n\n14) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n15) ts52: Discover Y2 Ts52 G3 Kermit\n\n16) zoltar: Build G1 Zoltar\n\n17) ts52: Discover G1 Ts52 Y3 Sol\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Greenhills\nBuild Y3 Zoltar\n\n19) ts52: Build G1 Ts52\n\n20) zoltar: Trade Y3 R3 Zoltar\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Sol\nBuild G3 Ts52\nBuild G3 Sol\n\n22) zoltar: Sacrifice Y2 Greendale\nMove G1 Zoltar Greendale\nMove G1 Greendale Sol\nCatastrophe Sol G\n\n23) ts52: Discover R1 Ts52 G3 Crikket\n\n24) zoltar: Move Y3 Greenhills Crikket\n\n25) ts52: Build G1 Ts52\n\n26) zoltar: Build Y2 Crikket\n\n27) ts52: Discover G1 Ts52 Y3 Wikket\n\n28) zoltar: Build Y3 Greendale\n\n29) ts52: Sacrifice G3 Ts52\nBuild G1 Wikket\nBuild G2 Wikket\nBuild G3 Ts52\n\n30) zoltar: Move Y3 Greendale Wikket\n\n31) ts52: Sacrifice Y2 Kermit\nDiscover G2 Wikket Y2 Lemon\nDiscover G1 Wikket B2 Berry\n\n32) zoltar: Move Y3 Crikket Lemon\n\n33) ts52: Build G3 Berry\n\n34) zoltar: Sacrifice R3 Zoltar\nAttack G2 Lemon\nAttack G1 Wikket\nAttack R1 Crikket\n\n35) ts52: Build R2 Ts52\n\tzoltar: Hey, no fair! Only I&#39;m allowed to get big ships!\n\n36) zoltar: Build R2 Crikket\n\n37) ts52: Discover R2 Ts52 B3 Grape\n\n38) zoltar: Sacrifice G2 Lemon\nBuild R2 Crikket\nBuild G2 Wikket\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Grape\nPass\n\n40) zoltar: Sacrifice Y3 Lemon\nMove G1 Wikket Ts52\nMove G2 Wikket Ts52\nMove R2 Crikket Ts52\nCatastrophe Ts52 G\n\n41) ts52: Sacrifice G1 Berry\nBuild R3 Ts52\n\n42) zoltar: Sacrifice Y3 Wikket\nMove Y2 Crikket Ts52\nMove R2 Crikket Ts52\nMove R1 Crikket Ts52\nCatastrophe Ts52 R\n\n\tts52: Thanks for another good game. I think I&#39;m learning, slowly...\n\tzoltar: Good game.  Don&#39;t get discouraged -- I lost my first dozen games before I won one -- it&#39;s a hard game to get the hang of.\n\nHomeworlds Online (SDG# 7838)\nStarted: 2007.5.26, Ended: 2007.5.30\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) zoltar: Build Y2 Zoltar\n\n9) MikeYarrum: Discover Y2 Mikeyarrum G3 Yomi\n\n10) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) zoltar: Build Y2 Zoltar\n\n13) MikeYarrum: Build Y3 Yomi\n\n14) zoltar: Build Y3 Greenhills\n\n15) MikeYarrum: Discover Y3 Yomi G2 Tomo\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n18) zoltar: Move Y3 Greenhills Yomi\n\n19) MikeYarrum: Move Y2 Yomi Greenhills\n\n20) zoltar: Build G1 Zoltar\n\n21) MikeYarrum: Build R1 Mikeyarrum\n\n22) zoltar: Discover Y1 Greenhills G1 Greendale\n\n23) MikeYarrum: Build R1 Mikeyarrum\n\n24) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n25) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n26) zoltar: Sacrifice Y1 Greendale\nMove R2 Greenbelt Sakaki\n\n\tMikeYarrum: I&#39;m beginning to think we shouldn&#39;t play each other anymore - you&#39;re too good!\n\tzoltar: Yeah, I avoid TwoShort for the same reason.  We learn the most when we lose, but several losses in a row isn&#39;t very fun -- I know that feeling well, so maybe you should continue to play me, but only a small percentage, and try to find others of differing strengths as well to balance things out.\n\tMikeYarrum: Sometimes I make a major mistake like this one, and I feel like scrapping the game. That doesn&#39;t bother you, does it? (I&#39;m trying to be neither a quitter nor a sore loser here.)\n\tzoltar: No, not at all.  No need wasting time in a losing position, unless you think there is something to be learned about the endgame in some cases.\n\tzoltar: But you do seem to be winning in the multi-player game: as long as you can keep Jesse and me weak fighting each other, you have the best chance at winning.\n\tMikeYarrum: Thanks! It will be interesting to see how that game turns out...\n\nHomeworlds Online (SDG# 7752)\nVariants: &quot;Sinister, Hard time&quot;\nStarted: 2007.5.26, Ended: 2007.6.29\nParticipants: stoneaxe (S), MikeYarrum (W), mneme (N), zoltar (E)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\n3) stoneaxe: Homeworld G2 B3 Y3\n\n4) MikeYarrum: Homeworld B3 Y1 G3\n\n5) mneme: Build G1 Mneme\n\n6) zoltar: Build G1 Zoltar\n\n7) stoneaxe: Build Y1 Stoneaxe\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) mneme: Build G1 Mneme\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) stoneaxe: Build Y1 Stoneaxe\n\n12) MikeYarrum: Build G1 Mikeyarrum\n\n13) mneme: Trade G3 Y3 Mneme\n\n14) zoltar: Build R1 Zoltar\n\n15) stoneaxe: Trade Y1 R1 Stoneaxe\n\n16) MikeYarrum: Discover G1 Mikeyarrum B2 Tomo\n\n17) mneme: Trade G1 R1 Mneme\n\n18) zoltar: Trade R1 B1 Zoltar\n\n19) stoneaxe: Build Y1 Stoneaxe\n\n20) MikeYarrum: Build G1 Tomo\n\n21) mneme: Build Y1 Mneme\n\n22) zoltar: Discover B1 Zoltar G1 Greenpea\n\n23) stoneaxe: Trade Y1 R1 Stoneaxe\n\n24) MikeYarrum: Build G2 Tomo\n\n25) mneme: Build G2 Mneme\n\n26) zoltar: Build G2 Zoltar\n\n27) stoneaxe: Move R1 Stoneaxe Greenpea\n\n28) MikeYarrum: Trade G2 R2 Tomo\n\n29) mneme: Discover G2 Mneme B3 Saph\n\n30) zoltar: Move G2 Zoltar Greenpea\n\n31) stoneaxe: Discover Y1 Stoneaxe B1 Zpm\n\n32) MikeYarrum: Build R2 Tomo\n\n33) mneme: Build G2 Saph\n\n34) zoltar: Build R2 Zoltar\n\n35) stoneaxe: Build R2 Stoneaxe\n\n36) MikeYarrum: Trade G1 Y1 Tomo\n\n37) mneme: Move R1 Mneme Saph\n\n38) zoltar: Sacrifice R1 Zoltar\nAttack R1S Greenpea\n\n39) stoneaxe: Build R1 Stoneaxe\n\n40) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n41) mneme: Trade G2 Y2 Saph\n\n42) zoltar: Sacrifice G2 Greenpea\nBuild R2 Zoltar\nBuild R3 Greenpea\n\n43) stoneaxe: Move R2 Stoneaxe Zpm\n\n44) MikeYarrum: Move R2 Tomo Mikeyarrum\n\n45) mneme: Build R3 Saph\n\n46) zoltar: Trade R1 Y1 Greenpea\n\n47) stoneaxe: Trade R1 G1 Stoneaxe\n\n48) MikeYarrum: Build Y2 Tomo\n\n49) mneme: Build Y2 Saph\n\n50) zoltar: Discover R2 Zoltar G1 Greenbean\n\n51) stoneaxe: Build G2 Stoneaxe\n\n52) MikeYarrum: Build G2 Mikeyarrum\n\n53) mneme: Trade Y3 G3 Mneme\n\n54) zoltar: Build R1 Greenpea\n\n55) stoneaxe: Move G1 Stoneaxe Zpm\n\n56) MikeYarrum: Build B1 Mikeyarrum\n\n57) mneme: Discover Y2 Saph B1 Aph\n\n58) zoltar: Build B2 Greenpea\n\n59) stoneaxe: Build Y2 Stoneaxe\n\n60) MikeYarrum: Discover Y2 Tomo G3 Yomi\n\n61) mneme: Sacrifice G3 Mneme\nBuild Y3 Mneme\nBuild Y3 Aph\nBuild Y3 Saph\n\n62) zoltar: Build Y3 Greenpea\n\n63) stoneaxe: Build G2 Stoneaxe\n\n64) MikeYarrum: Discover B1 Mikeyarrum B2 Nyamo\n\n65) mneme: Build G3 Saph\n\n66) zoltar: Sacrifice G3 Zoltar\nBuild R1 Greenpea\nBuild R3 Greenbean\nBuild R3 Zoltar\n\n67) stoneaxe: Build R3 Stoneaxe\n\n68) MikeYarrum: Build G3 Tomo\n\n69) mneme: Move R3 Saph Zpm\n\n70) zoltar: Sacrifice B2 Greenpea\nTrade R3 G3 Greenpea\nTrade R2 B2 Zoltar\n\n71) stoneaxe: Discover G1 Zpm B2 Ned\n\n72) MikeYarrum: Sacrifice G3 Tomo\nBuild G3 Tomo\nBuild R2 Mikeyarrum\nBuild R3 Tomo\n\n73) mneme: Attack R2S Zpm\n\n74) zoltar: Build B3 Greenpea\n\n75) stoneaxe: Move R3 Stoneaxe Aph\n\n76) MikeYarrum: Move R3 Tomo Yomi\n\n77) mneme: Sacrifice R1 Saph\nAttack R3S Aph\n\tmneme: Er.  Is the syntax for attacking in multiplayer Homeworlds documented -anywhere-?  I had to basically guess until i figured it out (&quot;a r2s zpm&quot;, in this case.\n\tMikeYarrum: It&#39;s hidden in the fine print below the list of recognized commands.\n\n78) zoltar: Move G3 Greenpea Zoltar\n\n79) stoneaxe: Build R1 Stoneaxe\n\tMikeYarrum: This must be the last episode of Homeworlds: The Series, because we just reached the end of the universe.\n\n80) MikeYarrum: Move R2 Tomo Yomi\n\n81) mneme: Attack Y1S Zpm\n\n82) zoltar: Sacrifice Y3 Greenpea\nMove R2 Greenbean Stoneaxe\nMove R1 Greenpea Stoneaxe\nMove B3 Greenpea Stoneaxe\nCatastrophe Stoneaxe R\n\n83) stoneaxe: Build Y3 Stoneaxe\n\tstoneaxe: Is there a TV series called &quot;Clueless&quot;?  Because thats what I am in this game.\n\tzoltar: If you&#39;re wondering why I retreated my G3 to my homeworld instead of the obvious move of moving it into your homeworld, where you are on the brink of catastrophe and blowing up your green star, it&#39;s because I&#39;m already behind and losing a 3-pip ship would leave me really weak.  I figure it&#39;s better to lay low with a safe G3-R3 castle (after I move out my blue ship) and let someone else blow up your stars, rather than make myself a target by getting weaker.\n\tzoltar: The game will be over soon anyway, as I&#39;m pretty much dead.\n\n84) MikeYarrum: Move R2 Mikeyarrum Tomo\n\n85) mneme: Move G3 Saph Zpm\n\tmneme: Zoltar: I&#39;m not sure.  I&#39;ve got a hefty advantage over you, but I&#39;m not seeing a good way to finish you off quickly, especially with your castling up.\n\tmneme: And Yarrum probably -can- make a doomsday device that will take me out, given time.\n\tmneme: Oh, stoneaxe, if you&#39;re wondering why I targetted your stuff when it was Zoltar who&#39;s my &quot;prey&quot;, it was an attack of opportunity.  I needed more material that was one step away from Zoltar&#39;s homeworld, and your stuff was convenienty situated and unprotected.\n\tzoltar: Since my yellow star is toast, I had to protect my homeworld I figure, but as soon as you get any blue ships I&#39;m toast.\n\tzoltar: Well, the best I can do is to help Mike blow some of your stuff up, as it helps him and saves me...\n\n86) zoltar: Sacrifice R3 Zoltar\nAttack G2S Stoneaxe\nAttack G2S Stoneaxe\nAttack Y3S Stoneaxe\n\tzoltar: on second thought, maybe I&#39;m being too defensive...\n\n87) stoneaxe: Trade Y3 R3 Stoneaxe\n\tzoltar: Now that I&#39;m castled, I&#39;m going on a mad all-out attack, as I don&#39;t have the time to wait while either Mike or Mneme builds a doomsday device. Prepare for battle!\n\tmneme: Very nice.  I&#39;m trying to figure out how to effect a rescue, and not seeing a good one.  Mike, any ideas?\r\n\r\nI think this is a case where the person to the left of the weakest player has a sizable advantage.\r\n\n\tzoltar: Yep, I didn&#39;t see that move until I&#39;d made the other one attacking mneme, and that I could take a red ship from both greenbean and greenpea, so that neither of you could ram the other with 2 red ships this turn, leaving my red fleet maximally dispersed and intact.  I went from thinking I was worst off to being best off, all because stoneaxe made a crazy move and set himself up for catastrophe.\n\tmneme: Pretty much.  By &quot;counter&quot; attacking me, he gave away nearly all his red.  \r\n\r\nAnd mike&#39;s the only one who even -owns- enough blue to take out your invasion fleet, and it&#39;s not even close to positioned right for that. :(\n\tMikeYarrum: Aside from hitting mneme&#39;s homeworld (which would weaken me quite a bit), I&#39;m out of ideas.\n\tzoltar: Then the Galaxy will be mine! All mine! [Insert Evil Overlord Laughter here]\n\n88) MikeYarrum: Sacrifice Y2 Yomi\nMove R2 Tomo Greenbean\nMove R2 Yomi Greenbean\n\tstoneaxe: Aha!  Take that zoltar!\n\tzoltar: I plan to next turn, oh primitive carbon waterbag unit!\n\n89) mneme: Sacrifice Y3 Saph\nMove R2 Zpm Nyamo\nMove R2 Nyamo Greenbean\nMove G3 Zpm Zoltar\nCatastrophe Greenbean R\n\n90) zoltar: Sacrifice G2 Stoneaxe\nBuild G1 Zoltar\nBuild G2 Zoltar\n\n91) stoneaxe: Attack B3E Stoneaxe\nCatastrophe Zoltar G\n\tzoltar: Pray pear two meat yore DOOM, hyu-maahn beanz!\n\tmneme: Hmm.  Ok, I see a way out.  Stoneaxe, swap your large for a red.\r\nMike, if you put two reds in greenbean, I&#39;ll put another one in for the party.\r\n\n\tzoltar: Reziztanz ease few tile.\n\tzoltar: Yes, you can buy yourselves one more turn, in which you can pray to your respective deities for a better afterlife...\n\n92) MikeYarrum: Sacrifice B1 Nyamo\nTrade R3 Y3 Yomi\n\n93) mneme: Move R3 Aph Zoltar\n\tmneme: Oh, two more turns at least.\n\n94) zoltar: Sacrifice G2 Stoneaxe\nBuild B1 Zoltar\nBuild B2 Zoltar\n\tzoltar: Yep, that was the way to do it.  I&#39;m toast.  Well, it was worth a try.  Good game.\n\n95) stoneaxe: Attack Y3E Stoneaxe\n\n96) MikeYarrum: Build R1 Mikeyarrum\n\tzoltar: Well, stoneaxe, your only way out is to capture one of my green and leave my red and yellow, and then cause a catastrophe in my homeworld at the end of your turn.  Then Mike will have to move a blue ship into my homeworld, so that on my turn I can sac my Y3 and bring my B3 and B1 back into my homeworld and destroy them.  Only way you can stop  mneme from winning next turn, after he moves another ship in.\n\tmneme: I&#39;m honestly not sure how that would help -- the described catastrophe would depopulate your homeworld, zoltar, wouldn&#39;t it?\n\tzoltar: Well, yes, but it would stop you from instantly winning the game.\n\tmneme: Ah -- &quot;eliminating a player to your left or across from you does not end the game or give someone else the victory&quot;.  Doesn&#39;t say anything about suicide, mind.  Mind, I&#39;m not sure this -should- be true -- I think the game&#39;s probably more elegant if -anything- eliminating a player will cause the player to their right to win, thus avoiding &quot;you can&#39;t kill him; I&#39;ll do it after you&#39;ve weakened him!&quot; nonsense.\n\tzoltar: Well, in any case, the 4 player version is &#39;broken&#39; because of situations like this, where Mike got to be &#39;KingMaker&#39; and choose whether you or I win.  I thought I had enough reds to force the issue but I did not.  So here perhaps I can commit suicide without your getting the victory, just to make it less then a binary choice.  I don&#39;t like the sinister version because of this.  The two player game is great, except that the good players always kick my butt and I kick everyone else&#39;s butt so I&#39;m in this limbo in terms of strength.  Well, maybe with more players when the game catches on, that gap will close...\n\tMikeYarrum: It took me a few games to realize why the &quot;standard&quot; Homeworlds has Good and Evil alignments, though there was enough politics going on when I played it IRL with my friends.\n\tzoltar: What&#39;s IRL? I&#39;ve never heard of it.\n\tMikeYarrum: In Real Life. Like, with the plastic pyramids.\n\tzoltar: Ahhh, &quot;Real Life&quot; -- oh I get it now.  That&#39;s something like Plato&#39;s heaven of ideal forms, isn&#39;t it, compared to which this is just a play of shadows, eh?\n\tMikeYarrum: Something like that. Brad kept taking the last pyramids of smallest size, so Matt easily took the lead, having first chance at all the 2 and 3 pointers. But it wasn&#39;t all bad - Brad ended up saving my butt when he wiped out Matt&#39;s doomsday machine for no other reason than he could.\n\tmneme: Zoltar: I don&#39;t know; we seem to be reasonably evenly matched in two player -- and unlike me, you&#39;ve actually beaten TwoShort.  I don&#39;t know about &quot;broken&quot; -- you over-extended to hit stoneaxe, (a little) but in theory, people could do a lot of detent to force a situation where a player was going to die and nobody could stop it.\n\tzoltar: That&#39;s true, we&#39;re fairly evenly matched, but it&#39;s rare that I have an even game.  As for 4 player, any time someone is about to win the others can swoop in and attack him, so it&#39;s hard to see how the game can be as interesting.\n\tstoneaxe: This is (was?) my first game of this, so I am a little overwhelmed/confused.  I think I will just do this and see how it all works out.  Maybe next time I&#39;ll understand what the heck is goin on a little sooner-???\n\n97) mneme: Sacrifice R3 Zpm\nAttack B2E Zoltar\nAttack B2E Zoltar\nAttack B1E Zoltar\n\n\tmneme: *blink*.  I take it nobody else could create the catastrophe either?  Good game, everyone.\n\tzoltar: Or were the two of you asleep and simply forgot to type &quot;c zoltar b&quot; at the end of your turns (in which case mneme deserves the win)!?\n\tmneme: I...was wondering about that.  I think I deserve the win anyway, given that you&#39;d have needed a suicide to stop it.  But the mind boggles.  I went for the attack win rather than the &quot;c zoltar b&quot; win because it seemed classier, of course.\n\tmneme: It&#39;s possible that the game prevents you from killing other players who aren&#39;t your prey -- which makes huge amounts of sense, if so, but should be spelled out in the rules in that case.\r\n\n\tzoltar: I really think that the game only prevents a player from ending a turn with none of the player&#39;s ships in that player&#39;s homeworld, and that&#39;s all, and that anyone else can cause a catastrophe anywhere except in their own homeworld  if none of there own ships are left there.\n\tMikeYarrum: I wasn&#39;t paying enough attention, sorry.\r\n\r\nBut on another note, we would have also had to deal with mneme&#39;s big ol&#39; warship in the zoltar system. Could that have also given mneme the win, even if he didn&#39;t directly eliminate zoltar?\n\tzoltar: no, it would not have.\n\nHomeworlds Online (SDG# 7936)\nStarted: 2007.5.27, Ended: 2007.6.1\nParticipants: MikeYarrum (S), kawotan (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 7812)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.27, Ended: 2007.5.31\nParticipants: TwoShort (S), Marcus (N)\nWinner: TwoShort\n\n1) Marcus: Homeworld B3 Y2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Marcus: Build G1 Marcus\n\n4) TwoShort: Build G1 Twoshort\n\n5) Marcus: Discover G1 Marcus B1 Procyon\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Marcus: Build G1 Procyon\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Marcus: Trade G1 Y1 Procyon\n\n10) TwoShort: Build G1 Twoshort\n\n11) Marcus: Build G1 Procyon\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) Marcus: Build Y2 Procyon\n\n14) TwoShort: Build Y2 Grogar\n\n15) Marcus: Trade Y2 R2 Procyon\n\n16) TwoShort: Discover Y2 Grogar B1 Bluonia\n\n17) Marcus: Build G2 Marcus\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n19) Marcus: Sacrifice G3 Marcus\nBuild G2 Marcus\nBuild G3 Marcus\nBuild G3 Procyon\n\n20) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Twoshort Grogar\nMove G1 Grogar Procyon\nMove G1 Procyon Marcus\nCatastrophe Marcus Green\n\tTwoShort: You had been doing well, but I&#39;m afraid that&#39;s the infamous &quot;Bluebird Mistake&quot;...\n\n\nHomeworlds Online (SDG# 7953)\nStarted: 2007.5.27, Ended: 2007.6.2\nParticipants: Marcus (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n\nHomeworlds Online (SDG# 7961)\nVariants: &quot;Unrated&quot;\nStarted: 2007.5.28, Ended: 2007.5.30\nParticipants: Prock (S), kobeyu (N)\nWinner: kobeyu\n\n1) kobeyu: Homeworld B2 Y3 G3\n\n2) Prock: Homeworld Y2 B1 G3\n\n3) kobeyu: Build G1 Kobeyu\n\n4) Prock: Build G1 Prock\n\n5) kobeyu: Trade G1 Y1 Kobeyu\n\n6) Prock: Trade G1 Y1 Prock\n\tkobeyu: are you just copying everything i do?\n\n7) kobeyu: Build G1 Kobeyu\n\n8) Prock: Sacrifice G3 Prock\nBuild Y1 Prock\nBuild Y2 Prock\nBuild Y2 Prock\n\n9) kobeyu: Discover G1 Kobeyu B1 Fiji\nCatastrophe Prock Yellow\n\tProck: Bet you didn&#39;t expect that one!\n\tkobeyu: That is bold.\r\nWhich is a thing fortune favours, so I hear.\r\nBut there is no luck in this game...\n\n\tkobeyu: Foolhardy. Another?\n\nHomeworlds Online (SDG# 7999)\nVariants: &quot;Hard time&quot;\nStarted: 2007.5.31, Ended: 2007.7.30\nParticipants: Kermit (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\tMikeYarrum: Thanks for accepting my challenge.\n\n2) Kermit: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tKermit: no problem.\n\n4) Kermit: Build Y1 Kermit\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Kermit: Trade Y1 B1 Kermit\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Kermit: Build Y1 Kermit\n\n9) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n10) Kermit: Discover Y1 Kermit G3 Semi\n\n11) MikeYarrum: Build Y2 Yomi\n\n12) Kermit: Trade B1 G1 Kermit\n\n13) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n14) Kermit: Trade G1 R1 Kermit\n\n15) MikeYarrum: Build Y2 Yomi\n\n16) Kermit: Build Y2 Semi\n\n17) MikeYarrum: Discover Y2 Yomi G2 Tomo\n\n18) Kermit: Build Y3 Semi\n\n19) MikeYarrum: Build Y3 Tomo\n\n20) Kermit: Discover Y3 Semi B1 Noles\n\n21) MikeYarrum: Build G1 Mikeyarrum\n\n22) Kermit: Move Y1 Semi Noles\n\n23) MikeYarrum: Discover Y2 Tomo B3 Kagura\n\n24) Kermit: Trade Y1 G1 Noles\n\n25) MikeYarrum: Build Y1 Tomo\n\n26) Kermit: Discover G1 Noles B3 Muskogee\n\n27) MikeYarrum: Move Y1 Tomo Kagura\n\n28) Kermit: Build G1 Muskogee\n\n29) MikeYarrum: Sacrifice Y2 Yomi\nMove Y1 Yomi Kermit\nMove Y1 Kagura Kermit\n\n30) Kermit: Trade Y3 R3 Kermit Kermit\n\n31) MikeYarrum: Trade Y1 R1 Kermit\n\n32) Kermit: Sacrifice Y2 Semi\nMove G1 Muskogee Mikeyarrum\nMove G1 Muskogee Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n33) MikeYarrum: Build R2 Kermit\nCatastrophe Kermit Red\n\tMikeYarrum: Just an FYI - I can still, on my next move, build a red ship in your homeworld and cause a catastrophe, winning the game.\n\tMikeYarrum: Well, I have 3 hours left of my turn, I guess it&#39;s time.\n\n\nHomeworlds Online (SDG# 8031)\nStarted: 2007.6.1, Ended: 2007.6.25\nParticipants: ts52 (S), papa_bear (N)\nWinner: ts52\n\n1) papa_bear: Homeworld Y3 B2 G3\n\tpapa_bear: Hi.\n\n2) ts52: Homeworld Y2 B1 G3\n\tts52: Hi. Have a great game!\n\n3) papa_bear: Build G1 Papa_bear\n\tpapa_bear: You too!\n\n4) ts52: Build G1 Ts52\n\n5) papa_bear: Trade G1 B1 Papa_bear\n\n6) ts52: Trade G1 B1 Ts52\n\n7) papa_bear: Build B2 Papa_bear\n\n8) ts52: Build G1 Ts52\n\n9) papa_bear: Build G1 Papa_bear\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) papa_bear: Trade B1 Y1 Papa_bear\n\n12) ts52: Build G1 Ts52\n\n13) papa_bear: Trade G1 R1 Papa_bear\n\n14) ts52: Trade G1 R1 Ts52\n\n15) papa_bear: Build G1 Papa_bear\n\n16) ts52: Build G1 Ts52\n\n17) papa_bear: Discover G1 Papa_bear R1 Aleph\n\n18) ts52: Build R2 Ts52\n\n19) papa_bear: Build R2 Papa_bear\n\n20) ts52: Discover R2 Ts52 G3 Kermit\n\n21) papa_bear: Move R2 Papa_bear Aleph\n\n22) ts52: Move Y1 Ts52 Kermit\n\n23) papa_bear: Move B2 Papa_bear Aleph\n\n24) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Kermit\nBuild R3 Ts52\n\n25) papa_bear: Trade B2 Y2 Aleph\n\n26) ts52: Discover R2 Ts52 G3 Wikket\n\n27) papa_bear: Build R3 Papa_bear\n\n28) ts52: Build B1 Ts52\n\n29) papa_bear: Move R2 Aleph Papa_bear\n\n30) ts52: Move B1 Ts52 Kermit\n\n31) papa_bear: Trade R2 B2 Papa_bear\n\n32) ts52: Move R3 Kermit Aleph\n\n33) papa_bear: Discover R3 Papa_bear G1 Bet\n\n34) ts52: Attack Y2N Aleph\n\n35) papa_bear: Sacrifice G1 Aleph\nBuild R2 Papa_bear\n\n36) ts52: Build Y1 Kermit\n\n37) papa_bear: Move Y1 Papa_bear Bet\n\n38) ts52: Build G1 Ts52\n\n39) papa_bear: Move R3 Bet Kermit\n\n40) ts52: Move R2 Kermit Bet\n\n41) papa_bear: Move Y1 Bet Kermit\n\n42) ts52: Move Y1 Kermit Bet\n\n43) papa_bear: Attack B1 Kermit\n\n44) ts52: Move Y1 Kermit Bet\n\n45) papa_bear: Build G2 Papa_bear\n\n46) ts52: Sacrifice Y2 Aleph\nMove R3 Aleph Kermit\nMove R3 Kermit Bet\n\n47) papa_bear: Trade R2 Y2 Papa_bear\n\n48) ts52: Build G2 Ts52\n\n49) papa_bear: Build G2 Papa_bear\n\n50) ts52: Trade G2 Y2 Ts52\n\n51) papa_bear: Discover Y2 Papa_bear R1 Gimmel\n\n52) ts52: Move Y2 Ts52 Wikket\n\n53) papa_bear: Build Y3 Kermit\n\n54) ts52: Build Y3 Wikket\n\n55) papa_bear: Move G2 Papa_bear Gimmel\n\n56) ts52: Move Y3 Wikket Gimmel\n\n57) papa_bear: Sacrifice Y2 Gimmel\nDiscover G2 Gimmel R2 Dalet\nMove Y3 Kermit Dalet\n\n58) ts52: Move B1 Ts52 Wikket\n\n59) papa_bear: Build G2 Dalet\n\n60) ts52: Build Y2 Wikket\n\n61) papa_bear: Move G2 Dalet Kermit\n\n62) ts52: Move Y2 Wikket Gimmel\n\n63) papa_bear: Pass\n\n64) ts52: Sacrifice Y3 Gimmel\nMove Y1 Bet Papa_bear\nMove Y1 Bet Papa_bear\nMove Y2 Gimmel Papa_bear\nCatastrophe Papa_bear Yellow\n\n65) papa_bear: Build Y1 Kermit\n\n66) ts52: Build B2 Wikket\n\tpapa_bear: Oh.\n\n67) papa_bear: Trade B2 Y2 Papa_bear\n\n68) ts52: Discover G1 Ts52 Y3 Sol\n\tts52: Sorry, did you not mean to pass before? I thought that was a bit odd...\n\tpapa_bear: I did mean to pass :) I really didn&#39;t know what to do, so I passed.\r\n\r\nI just hadn&#39;t seen that particular threat. &quot;Oh&quot; was understated surprise :)\n\tts52: Ah, ok then. The sacrifices can be hard to see. \n\n69) papa_bear: Build R1 Kermit\n\n70) ts52: Move B2 Wikket Bet\n\n71) papa_bear: Sacrifice G3 Papa_bear\nBuild G3 Papa_bear\nBuild Y1 Dalet\nBuild Y3 Papa_bear\n\n72) ts52: Build B2 Wikket\n\n73) papa_bear: Move B1 Kermit Dalet\n\n74) ts52: Sacrifice B1 Wikket\nTrade G1 B1 Sol\n\n75) papa_bear: Build G1 Dalet\n\n76) ts52: Sacrifice Y2 Wikket\nMove B2 Bet Papa_bear\nMove B2 Wikket Papa_bear\n\n77) papa_bear: Trade G3 B3 Papa_bear\nCatastrophe Papa_bear Blue\n\n\tpapa_bear: Good game!\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 8055)\nStarted: 2007.6.2, Ended: 2008.2.22\nParticipants: Homepie (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\n\nHomeworlds Online (SDG# 8056)\nStarted: 2007.6.2, Ended: 2007.6.19\nParticipants: MatrixFrog (S), DaDRK (N)\nWinner: DaDRK\n\n1) DaDRK: Homeworld G2 R3 B3\n\n2) MatrixFrog: Homeworld G2 B1 Y3\n\n3) DaDRK: Build B1 Dadrk\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) DaDRK: Trade B1 Y1 Dadrk\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\tDaDRK: good luck, this is one of my first games.\n\tMatrixFrog: It&#39;s generally considered a good idea to start out with some green and yellow, and usually blue in your homeworld. Green to start building a fleet, yellow so that you can start expanding, and blue because, well, red isn&#39;t going to be particularly helpful until later in the game. Not that you&#39;ve completely screwed yourself over or anything, especially since you got to move first. But just giving you the sort of conventional wisdom for future games.\n\n7) DaDRK: Build Y2 Dadrk\n\n8) MatrixFrog: Discover Y1 Matrixfrog G3 Alpha\n\n9) DaDRK: Discover Y2 Dadrk B1 First\n\n10) MatrixFrog: Build Y2 Alpha\n\n11) DaDRK: Build B1 Dadrk\n\n12) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n13) DaDRK: Discover B1 Dadrk G1 Scnd\n\n14) MatrixFrog: Build R1 Matrixfrog\n\n15) DaDRK: Build B2 Scnd\n\n16) MatrixFrog: Move Y2 Alpha Scnd\n\n17) DaDRK: Trade Y1 R1 Dadrk\n\n18) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack B2 Scnd\n\n19) DaDRK: Build B2 Dadrk\n\n20) MatrixFrog: Build Y1 Matrixfrog\n\n21) DaDRK: Trade B3 R3 Dadrk\n\n22) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack B1 Scnd\n\n23) DaDRK: Trade R1 Y1 Dadrk\n\n24) MatrixFrog: Build Y2 Alpha\n\n25) DaDRK: Move R3 Dadrk Scnd\n\n26) MatrixFrog: Move B2 Scnd Dadrk\n\n27) DaDRK: Attack B2 Dadrk\n\n28) MatrixFrog: Build B2 Scnd\n\n29) DaDRK: Attack B2 Scnd\n\tDaDRK: hmm I seem to be in trouble from what I can tell\n\n30) MatrixFrog: Build Y3 Alpha\n\tMatrixFrog: Well, I feel like I&#39;m always one step behind you because you have red powers and I don&#39;t. So we&#39;ll see.\n\n31) DaDRK: Move Y2 First Alpha\nCatastrophe Alpha Y\n\n32) MatrixFrog: Build Y1 Matrixfrog\n\n33) DaDRK: Attack Y2 Scnd\n\n34) MatrixFrog: Build B1 Scnd\n\n35) DaDRK: Sacrifice B2 Scnd\nTrade B2 Y2 Dadrk\nTrade Y1 G1 Dadrk\n\n36) MatrixFrog: Discover Y1 Matrixfrog G3 Beta\n\n37) DaDRK: Attack B1 Scnd\n\n38) MatrixFrog: Build Y1 Beta\n\n39) DaDRK: Move R3 Scnd Beta\n\n40) MatrixFrog: Sacrifice Y1 Beta\nMove Y1 Beta Scnd\n\n41) DaDRK: Sacrifice Y2 Dadrk\nMove B1 Scnd Beta\nMove R3 Beta Matrixfrog\n\n42) MatrixFrog: Trade Y1 R1 Scnd\n\tDaDRK: I believe if I capture all your ships in your home world I win correct?\n\tDaDRK: If thats true I think this would be a checkmate. GG\n\tMatrixFrog: You&#39;re right, but it&#39;s not checkmate. At least not yet, because you can only do one attack at a time.\n\tMatrixFrog: On the other hand, I don&#39;t see a way out of thise. I think starting with a red star was actually pretty helpful for you.\n\n43) DaDRK: Attack Y3 Matrixfrog\n\tDaDRK: I didn&#39;t know how well it would work out, just figured I should have access to attack ships\n\n44) MatrixFrog: Build Y1 Matrixfrog\n\n45) DaDRK: Build Y1 Matrixfrog\nCatastrophe Matrixfrog Y\n\tDaDRK: good game\n\n\nHomeworlds Online (SDG# 7960)\nStarted: 2007.6.2, Ended: 2007.6.12\nParticipants: DaDRK (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) DaDRK: Homeworld G2 B3 R3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: Hey! I almost thought you&#39;d forgotten about the game.\n\n4) DaDRK: Build R1 Dadrk\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) DaDRK: Trade R1 Y1 Dadrk\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tDaDRK: didn&#39;t notice this down here, so like to wish you good luck, probably don&#39;t need it I&#39;m a complete noob at this gaem\n\tMikeYarrum: No problem - I probably lose 95% of the games I play on here. Enjoy!\n\n8) DaDRK: Discover Y1 Dadrk G1 Frstyi\n\tDaDRK: ah I see\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) DaDRK: Build Y1 Frstyi\n\tDaDRK: er that was a stupid move, hope you don&#39;t mind me taking it back.\n\tMikeYarrum: Nah, there&#39;s a &quot;No Undo&quot; option which you can choose when issuing a challenge. I&#39;d have picked that if I had a problem with it.\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) DaDRK: Build R1 Dadrk\n\n13) MikeYarrum: Discover G1 Mikeyarrum B1 Nyamo\n\n14) DaDRK: Trade R1 B1 Dadrk\n\n15) MikeYarrum: Build G2 Nyamo\n\n16) DaDRK: Discover Y1 Frstyi G2 Scnd\n\n17) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Nyamo\nBuild G3 Mikeyarrum\nBuild G3 Mikeyarrum\n\n18) DaDRK: Build Y2 Scnd\n\n19) MikeYarrum: Trade G1 R1 Nyamo\n\n20) DaDRK: Trade B1 G1 Dadrk\n\n21) MikeYarrum: Discover G3 Mikeyarrum B1 Yukari\n\n22) DaDRK: Build R1 Dadrk\n\n23) MikeYarrum: Build R1 Nyamo\n\n24) DaDRK: Move Y1 Scnd Frstyi\n\n25) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R1 Nyamo Dadrk\nMove R1 Nyamo Dadrk\nCatastrophe Dadrk Red\n\n26) DaDRK: Trade G1 R1 Dadrk\n\n27) MikeYarrum: Trade G3 R3 Nyamo\n\n28) DaDRK: Move Y1 Frstyi Dadrk\n\n29) MikeYarrum: Sacrifice Y1 Mikeyarrum\nMove R3 Nyamo Dadrk\n\n\tDaDRK: well good game, I may not know much but I know I&#39;m beat.\n\tMikeYarrum: Yeah, Homeworlds takes awhile to really get the hang of. But thanks for the game!\n\nHomeworlds Online (SDG# 8078)\nStarted: 2007.6.6, Ended: 2007.6.29\nParticipants: sordros (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 Y1 G3\n\n2) sordros: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) sordros: Build G1 Sordros\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) sordros: Discover G1 Sordros Y3 Flavega\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) sordros: Build G1 Sordros\n\n9) MikeYarrum: Discover Y2 Mikeyarrum G2 Yomi\n\n10) sordros: Trade G1 B1 Sordros\n\n11) MikeYarrum: Build Y2 Yomi\n\n12) sordros: Build G1 Sordros\n\n13) MikeYarrum: Build Y2 Yomi\n\n14) sordros: Build G1 Flavega\n\n15) MikeYarrum: Build G2 Mikeyarrum\n\n16) sordros: Discover G1 Sordros Y3 Bigy\n\n17) MikeYarrum: Discover Y2 Yomi G3 Tomo\n\n18) sordros: Build G2 Sordros\n\n19) MikeYarrum: Build Y3 Tomo\n\n20) sordros: Build B1 Sordros\n\n21) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n22) sordros: Trade B1 R1 Sordros\n\n23) MikeYarrum: Build G2 Mikeyarrum\n\n24) sordros: Build R1 Sordros\n\n25) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild R1 Mikeyarrum\nBuild R2 Mikeyarrum\n\n26) sordros: Sacrifice G3 Sordros\nBuild G3 Sordros\nBuild R2 Sordros\nBuild B1 Sordros\n\n27) MikeYarrum: Move R2 Mikeyarrum Yomi\n\n28) sordros: Discover R1 Sordros B3 Zuleo\n\n29) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild R3 Yomi\nBuild R3 Yomi\n\n30) sordros: Build R3 Sordros\n\n31) MikeYarrum: Sacrifice Y2 Yomi\nMove R2 Yomi Tomo\nMove R2 Tomo Sordros\nCatastrophe Sordros Red\n\n32) sordros: Trade G2 Y2 Sordros\n\n33) MikeYarrum: Move R3 Yomi Flavega\n\n34) sordros: Sacrifice G1 Bigy\nBuild Y3 Sordros\n\n35) MikeYarrum: Move Y2 Tomo Sordros\nCatastrophe Sordros Yellow\n\tMikeYarrum: CAPTIAN! THE ENEMY HOMEWORLD IS VULNERABLE!\r\n\r\nHMMM... IS THIS SOME KIND OF SORDROSIAN TRICK?\n\n36) sordros: Trade B1 R1 Sordros\n\tsordros: hmm... not really, I think it is the poor sleep due to my dear newborn combined with greed for a large Y3... :-)\n\n37) MikeYarrum: Build R2 Yomi\n\n38) sordros: Build G1 Sordros\n\tMikeYarrum: Ah, congrats. I&#39;m currently giving my opponent in another game a chance to undo, as he left himself with four green pieces in one of &quot;his&quot; systems.\n\n39) MikeYarrum: Build G2 Mikeyarrum\n\n40) sordros: Sacrifice G3 Sordros\nBuild G3 Sordros\nBuild R2 Sordros\nBuild R3 Zuleo\n\n41) MikeYarrum: Sacrifice R2 Yomi\nAttack G1 Flavega\nAttack G1 Flavega\n\n42) sordros: Trade R1 Y1 Sordros\n\n43) MikeYarrum: Sacrifice Y2 Yomi\nMove G2 Mikeyarrum Sordros\nMove G2 Mikeyarrum Sordros\nCatastrophe Sordros Green\n\n44) sordros: Trade B1 G1 Sordros\n\n45) MikeYarrum: Move R3 Flavega Sordros\n\n\tsordros: Great game Mike.  Thanks for the game\n\tMikeYarrum: Thank you sir!\n\nHomeworlds Online (SDG# 8156)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.7, Ended: 2007.10.11\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) jeep: Build Y1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Build Y1 Jeep\n\tjeep: I first saw this opening against Sketchwick.  It&#39;s interesting...  It will be interesting to see how you use it to destroy me.  ;)\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) jeep: Discover Y1 Jeep B3 Moon\n\tTwoShort: You mean the blue-red homeworld?  I&#39;ve come to decide it&#39;s my favorite, mostly because you can have more Green and yellow ships without danger.\r\nRecently I&#39;ve been toying with the idea that the 1-3 is actually better than the 1-2, but I&#39;m still undecided there.\n\n8) TwoShort: Build Y2 Twoshort\n\n9) jeep: Trade Y3 G3 Jeep\n\n10) TwoShort: Build G1 Twoshort\n\n11) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y2 Jeep\nBuild Y3 Jeep\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) jeep: Trade Y1 R1 Jeep\n\n14) TwoShort: Build G1 Twoshort\n\n15) jeep: Trade Y2 G2 Moon\n\n16) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n17) jeep: Trade Y2 G2 Jeep\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\nBuild G3 Twoshort\n\tjeep: I&#39;m horribly inefficient...\n\n19) jeep: Build R1 Jeep\n\tjeep: Nice, I missed that.\n\tjeep: *sigh* I thought I would be able to blow you up safely if you did that... but I see now that I can&#39;t.\n\n20) TwoShort: Trade G1 Y1 Bluonia\n\n21) jeep: Build G1 Moon\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild Y2 Bluonia\nPass\n\n23) jeep: Sacrifice G2 Moon\nBuild Y2 Jeep\nBuild Y3 Moon\n\n24) TwoShort: Sacrifice Y2 Bluonia\nMove Y1 Bluonia Moon\nMove Y1 Grogar Moon\nCatastrophe Moon Yellow\n\n25) jeep: Discover R1 Jeep Y3 Traveller\n\n26) TwoShort: Trade G3 R3 Bluonia\n\n27) jeep: Build G2 Moon\n\n28) TwoShort: Build Y1 Twoshort\n\n29) jeep: Trade G1 Y1 Moon\n\n30) TwoShort: Build G1 Bluonia\n\n31) jeep: Build G2 Moon\n\n32) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n33) jeep: Sacrifice G2 Moon\nBuild Y1 Jeep\nBuild Y3 Moon\n\n34) TwoShort: Sacrifice G3 Bluonia\nBuild G2 Bluonia\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n35) jeep: Trade Y3 R3 Jeep\n\n36) TwoShort: Move Y1 Twoshort Bluonia\n\n37) jeep: Build Y3 Jeep\n\n38) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Bluonia Moon\nMove Y1 Moon Jeep\nCatastrophe Jeep Yellow\n\n39) jeep: Discover Y1 Moon B2 Stage\n\n40) TwoShort: Trade G2 Y2 Bluonia\n\n41) jeep: Build G2 Moon\n\n42) TwoShort: Trade G3 Y3 Twoshort\n\n43) jeep: Trade R1 Y1 Jeep\n\n44) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yolonda\nBuild G3 Bluonia\nBuild R1 Bluonia\n\n45) jeep: Move G2 Moon Stage\n\n46) TwoShort: Move G3 Bluonia Traveller\n\n47) jeep: Move R1 Traveller Stage\n\n48) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Bluonia\nBuild Y2 Twoshort\nBuild G3 Yolonda\n\n49) jeep: Sacrifice G2 Moon\nBuild G2 Stage\nBuild R1 Stage\n\n50) TwoShort: Move Y3 Twoshort Stage\n\n\tjeep: I see nothing useful.  :(  I hope to get back to it before I time out, but if not, consider it a concession.\n\tTwoShort: I think you&#39;re pretty doomed :)  You&#39;ve done an excellent job in not giving me an opening to go for the kill, but with the factory exclusive I&#39;ve been able to keep the old take-all-the-pieces tactic rolling.  \n\tjeep: Yeah, thanks for the game.\n\nHomeworlds Online (SDG# 8133)\nStarted: 2007.6.9, Ended: 2007.6.23\nParticipants: Uglyfoot (S), MikeYarrum (N)\nWinner: Uglyfoot\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) Uglyfoot: Homeworld B1 G3 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Uglyfoot: Discover Y1 Uglyfoot G2 Egg\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Uglyfoot: Build Y1 Uglyfoot\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) Uglyfoot: Build Y2 Egg\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n12) Uglyfoot: Discover Y1 Egg B3 Evo\n\n13) MikeYarrum: Build Y3 Yomi\n\n14) Uglyfoot: Build Y3 Egg\n\n15) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n16) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n17) MikeYarrum: Build B2 Mikeyarrum\n\n18) Uglyfoot: Move Y2 Egg Evo\n\n19) MikeYarrum: Move B2 Mikeyarrum Yomi\n\n20) Uglyfoot: Trade Y1 G1 Evo\n\n21) MikeYarrum: Build B2 Yomi\n\n22) Uglyfoot: Build Y1 Evo\n\n23) MikeYarrum: Discover B2 Yomi G2 Tomo\n\n24) Uglyfoot: Build Y1 Uglyfoot\n\n25) MikeYarrum: Trade B2 R2 Tomo\n\n26) Uglyfoot: Trade Y2 B2 Evo\n\n27) MikeYarrum: Move Y1 Yomi Tomo\n\n28) Uglyfoot: Build Y2 Egg\n\n29) MikeYarrum: Build G1 Mikeyarrum\n\n30) Uglyfoot: Move Y2 Egg Evo\n\n31) MikeYarrum: Build B2 Yomi\n\n32) Uglyfoot: Sacrifice Y3 Egg\nDiscover B2 Evo G2 Egg\nMove Y1 Evo Mikeyarrum\nMove Y2 Evo Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n33) MikeYarrum: Move R2 Tomo Evo\n\n34) Uglyfoot: Build G1 Evo\n\tUglyfoot: That probably was a mistake but it was fun...\n\tMikeYarrum: Well, SOMEBODY made a mistake just there... (lol)\n\n35) MikeYarrum: Move B2 Yomi Tomo\n\n36) Uglyfoot: Build B3 Egg\n\n37) MikeYarrum: Build B3 Tomo\n\n38) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove B2 Egg Mikeyarrum\nMove B3 Egg Mikeyarrum\nDiscover G1 Evo Y1 Vlp\nCatastrophe Mikeyarrum B\n\n\tMikeYarrum: Good show!\n\tUglyfoot: Thanks for the game\r\n\n\nHomeworlds Online (SDG# 8223)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.11, Ended: 2007.7.18\nParticipants: clockwise (S), dsheldon (N)\nWinner: clockwise\n\n1) dsheldon: Homeworld R1 B2 G3\n\n2) clockwise: Homeworld B3 Y1 G3\n\n3) dsheldon: Build G1 Dsheldon\n\n4) clockwise: Build G1 Clockwise\n\n5) dsheldon: Build G1 Dsheldon\n\n6) clockwise: Build G2 Clockwise\n\n7) dsheldon: Trade G1 Y1 Dsheldon\n\n8) clockwise: Trade G2 Y2 Clockwise\n\n9) dsheldon: Discover G1 Dsheldon G3 Greenback\n\n10) clockwise: Discover G1 Clockwise Y2 Sophocles\n\n11) dsheldon: Build G1 Dsheldon\n\n12) clockwise: Build G2 Sophocles\n\n13) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n14) clockwise: Build G2 Clockwise\n\n15) dsheldon: Build G2 Dsheldon\n\n16) clockwise: Discover G2 Sophocles Y3 Aristotle\n\n17) dsheldon: Discover G2 Dsheldon B3 Sky\n\n18) clockwise: Discover G1 Sophocles Y3 Pascal\n\n19) dsheldon: Build Y1 Dsheldon\n\tclockwise: I&#39;m being very indecisive this game...\n\n20) clockwise: Build Y2 Clockwise\n\n21) dsheldon: Trade Y1 R1 Dsheldon\n\n22) clockwise: Trade Y2 R2 Clockwise\n\n23) dsheldon: Sacrifice G2 Sky\nBuild G2 Jerome\nBuild Y1 Dsheldon\n\n24) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild Y2 Clockwise\nBuild R1 Clockwise\n\n25) dsheldon: Discover G1 Jerome B2 Puddle\n\n26) clockwise: Move Y2 Clockwise Puddle\n\n27) dsheldon: Sacrifice G1 Puddle\nBuild G1 Jerome\n\n28) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild Y2 Puddle\nBuild R2 Clockwise\n\n29) dsheldon: Trade Y1 B1 Dsheldon\n\n30) clockwise: Move R2 Clockwise Puddle\n\n31) dsheldon: Discover G1 Jerome B1 Droplet\n\n32) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild R2 Puddle\nBuild R3 Puddle\n\n33) dsheldon: Trade G1 Y1 Droplet\n\n34) clockwise: Move R3 Puddle Jerome\n\n35) dsheldon: Move R1 Dsheldon Pascal\n\n36) clockwise: Sacrifice R2 Puddle\nAttack R1N Pascal\nAttack G2N Jerome\n\n37) dsheldon: Build B1 Dsheldon\n\n38) clockwise: Discover Y2 Puddle B3 Machiavelli\n\n39) dsheldon: Move B1 Dsheldon Greenback\n\n40) clockwise: Sacrifice G2 Aristotle\nBuild Y3 Machiavelli\nBuild R2 Jerome\n\n41) dsheldon: Build B2 Greenback\n\n42) clockwise: Sacrifice Y2 Puddle\nMove R3 Jerome Dsheldon\nMove Y3 Machiavelli Dsheldon\n\n43) dsheldon: Attack Y3S Dsheldon\n\n44) clockwise: Sacrifice R2 Puddle\nAttack Y3N Dsheldon\nAttack G3N Dsheldon\n\n45) dsheldon: Trade B1 G1 Dsheldon\n\n46) clockwise: Sacrifice R2 Clockwise\nAttack G1N Dsheldon\nAttack Y1N Dsheldon\n\tdsheldon: I rather certain that I have absolutely no chance of winning this.  Actually, I&#39;ve been pretty certain of that for a while...\n\n\nHomeworlds Online (SDG# 8194)\nStarted: 2007.6.14, Ended: 2007.6.28\nParticipants: dayleh (S), MikeYarrum (N)\nWinner: dayleh\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) dayleh: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tdayleh: Hi and GL\n\tMikeYarrum: Hello.\n\n4) dayleh: Build Y1 Dayleh\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) dayleh: Trade Y1 R1 Dayleh\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) dayleh: Build Y1 Dayleh\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) dayleh: Build R1 Dayleh\n\n11) MikeYarrum: Discover G1 Mikeyarrum B1 Tomo\n\n12) dayleh: Trade Y3 G3 Dayleh\n\n13) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n14) dayleh: Discover Y1 Dayleh G3 Erin\n\n15) MikeYarrum: Build B2 Mikeyarrum\n\n16) dayleh: Build Y1 Erin\n\n17) MikeYarrum: Build Y2 Mikeyarrum\n\n18) dayleh: Move Y1 Erin Dayleh\n\n19) MikeYarrum: Build Y2 Mikeyarrum\n\n20) dayleh: Sacrifice G3 Dayleh\nBuild Y2 Erin\nBuild Y3 Dayleh\nBuild Y3 Dayleh\n\n21) MikeYarrum: Move Y1 Mikeyarrum Tomo\n\n22) dayleh: Trade Y1 G1 Dayleh\n\n23) MikeYarrum: Move B2 Mikeyarrum Tomo\n\n24) dayleh: Move Y2 Erin Tomo\n\n25) MikeYarrum: Build B2 Tomo\n\n26) dayleh: Sacrifice R1 Dayleh\nAttack B2 Tomo\n\n27) MikeYarrum: Build B2 Tomo\nCatastrophe Tomo Blue\n\n28) dayleh: Build R1 Dayleh\n\n29) MikeYarrum: Trade Y2 R2 Mikeyarrum\n\n30) dayleh: Trade Y3 G3 Dayleh\n\n31) MikeYarrum: Discover R2 Mikeyarrum G1 Osaka\n\n32) dayleh: Discover G3 Dayleh Y3 Callie\n\n33) MikeYarrum: Build Y1 Mikeyarrum\n\n34) dayleh: Build Y1 Dayleh\n\n35) MikeYarrum: Build Y2 Mikeyarrum\n\n36) dayleh: Build Y2 Erin\n\n37) MikeYarrum: Move Y2 Mikeyarrum Osaka\n\n38) dayleh: Discover G1 Dayleh Y3 Kadon\n\n39) MikeYarrum: Build G1 Mikeyarrum\n\n40) dayleh: Trade R1 B1 Dayleh\n\n41) MikeYarrum: Move B1 Mikeyarrum Osaka\n\n42) dayleh: Move B1 Dayleh Erin\n\n43) MikeYarrum: Build B2 Osaka\n\n44) dayleh: Build B2 Erin\n\n45) MikeYarrum: Discover Y2 Mikeyarrum R1 Kimura\n\n46) dayleh: Discover Y2 Erin G2 Tammy\n\n47) MikeYarrum: Move R2 Osaka Kadon\n\n48) dayleh: Sacrifice G1 Kadon\nBuild R1 Dayleh\n\n49) MikeYarrum: Move B1 Osaka Kadon\n\n50) dayleh: Trade B2 G2 Erin\n\n51) MikeYarrum: Build B2 Osaka\n\n52) dayleh: Move R1 Dayleh Callie\n\n53) MikeYarrum: Move G1 Mikeyarrum Kimura\n\n54) dayleh: Sacrifice G2 Erin\nBuild R2 Dayleh\nBuild R3 Callie\n\n55) MikeYarrum: Sacrifice G1 Kimura\nBuild R3 Kadon\n\n56) dayleh: Sacrifice Y2 Tammy\nMove R1 Dayleh Kadon\nMove R2 Dayleh Kadon\nCatastrophe Kadon Red\n\n57) MikeYarrum: Trade B2 R2 Osaka\n\n58) dayleh: Move G3 Callie Osaka\n\n59) MikeYarrum: Sacrifice Y2 Osaka\nMove R2 Osaka Callie\nMove B2 Osaka Callie\n\n60) dayleh: Attack B2N Callie\n\n61) MikeYarrum: Attack B2 Callie\n\n62) dayleh: Move R1 Callie Osaka\n\n63) MikeYarrum: Build G1 Mikeyarrum\n\n64) dayleh: Attack R2N Callie\n\n65) MikeYarrum: Move B2 Callie Dayleh\n\n66) dayleh: Sacrifice R1 Osaka\nAttack B2N Dayleh\n\n67) MikeYarrum: Move B1 Kadon Dayleh\n\n68) dayleh: Trade B2 R2 Dayleh\n\n69) MikeYarrum: Build B2 Dayleh\n\n70) dayleh: Sacrifice R2 Callie\nAttack B1N Dayleh\nAttack B2N Dayleh\n\n71) MikeYarrum: Move G1 Mikeyarrum Osaka\n\n72) dayleh: Sacrifice Y1 Dayleh\nDiscover G3 Osaka Y3 Kadon\n\n73) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n74) dayleh: Move B2 Dayleh Kadon\n\n75) MikeYarrum: Sacrifice G1 Osaka\nBuild Y1 Kimura\n\n76) dayleh: Discover B2 Kadon G1 Tammy\n\n77) MikeYarrum: Build G1 Mikeyarrum\n\n78) dayleh: Sacrifice G3 Kadon\nBuild B2 Erin\nBuild B2 Dayleh\nBuild B3 Tammy\n\n\tMikeYarrum: Sorry, I didn&#39;t like any of my available moves. Good game, though.\n\tdayleh: Thanks for the game.  Good Luck with our other game.\n\nHomeworlds Online (SDG# 8244)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.12, Ended: 2007.7.2\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld Y1 B3 G3\n\tnycavri: Hello once again.  Let&#39;s see how far I&#39;ve come since you first helped me learn the game..... it&#39;s not far according to the ratings!  TaGG.\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) nycavri: Build G1 Nycavri\n\tzoltar: Nice to see you again!\n\n4) zoltar: Build G1 Zoltar\n\tnycavri: I think I&#39;m 0 for 12, including the first 5 losses you handed me.  But I&#39;m sticking with it until I figure it out.....\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) zoltar: Build G1 Zoltar\n\tzoltar: I went at least 0 for 12 until I&#39;ve won a game.  And the three top players, TwoShort, Jesse, and AndyLooney, beat me almost every single game, though I&#39;ve now beat each of them once.  Just keep playing.  \n\n7) nycavri: Build G1 Nycavri\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) nycavri: Build Y2 Nycavri\n\n10) zoltar: Build Y2 Zoltar\n\n11) nycavri: Discover Y2 Nycavri G2 Jep\n\n12) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n13) nycavri: Trade Y1 B1 Nycavri\n\n14) zoltar: Build Y1 Zoltar\n\n15) nycavri: Build B1 Nycavri\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n17) nycavri: Move Y2 Jep Greenbelt\nCatastrophe Greenbelt Y\n\n18) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n19) nycavri: Discover B1 Nycavri G2 Jlb\n\n20) zoltar: Build Y1 Greenbelt\n\n21) nycavri: Trade G1 R1 Nycavri\n\n22) zoltar: Build Y2 Zoltar\n\n23) nycavri: Build B1 Jlb\n\n24) zoltar: Discover Y2 Zoltar B3 Bluemoon\n\n25) nycavri: Build B2 Jlb\n\n26) zoltar: Build Y2 Zoltar\n\n27) nycavri: Build G1 Nycavri\n\n28) zoltar: Trade Y3 G3 Zoltar\n\n29) nycavri: Trade G3 Y3 Nycavri\n\tnycavri: Ooops.  Miscounted there.....\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G1 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluemoon\n\n31) nycavri: Build R1 Nycavri\n\n32) zoltar: Trade Y3 G3 Bluemoon\n\n33) nycavri: Build R2 Nycavri\n\n34) zoltar: Trade Y3 R3 Zoltar\n\n35) nycavri: Discover R2 Nycavri G2 Rcl\n\n36) zoltar: Build Y3 Bluemoon\n\n37) nycavri: Sacrifice Y3 Nycavri\nMove B1 Jlb Bluemoon\nMove B1 Jlb Bluemoon\nMove B2 Jlb Bluemoon\nCatastrophe Bluemoon B\n\n38) zoltar: Sacrifice Y2 Zoltar\nMove Y2 Greenbelt Rcl\nMove Y2 Rcl Nycavri\n\n39) nycavri: Build G2 Nycavri\n\n40) zoltar: Sacrifice R3 Zoltar\nAttack G2 Nycavri\nAttack R1 Nycavri\nAttack R1 Nycavri\n\n41) nycavri: Sacrifice R2 Rcl\nAttack R1 Nycavri\nAttack R1 Nycavri\n\n42) zoltar: Build G2 Zoltar\n\n43) nycavri: Discover R1 Nycavri Y2 Bdw\n\n44) zoltar: Trade G2 R2 Zoltar\n\tzoltar: This is getting exciting.  Don&#39;t think I can pull out a win, but rather after all the pieces are traded off, I&#39;m hoping to end up with the edge with some extra small pieces.\n\n45) nycavri: Move R1 Bdw Greenbelt\n\n46) zoltar: Sacrifice R2 Zoltar\nAttack R1 Greenbelt\nAttack R1 Nycavri\n\n47) nycavri: Build B1 Nycavri\n\n48) zoltar: Build G2 Zoltar\n\n49) nycavri: Discover B1 Nycavri Y2 Cmg\n\n50) zoltar: Attack G1 Nycavri\n\tzoltar: Now you&#39;re in trouble!\n\tnycavri: I was already in trouble.  You had any number of 2 move wins.\n\n51) nycavri: Discover B1 Cmg G3 Ct\n\n52) zoltar: Attack B1 Nycavri\n\n\tzoltar: gg\n\nHomeworlds Online (SDG# 8255)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.14, Ended: 2007.9.29\nParticipants: zoltar (S), jeep (N)\nWinner: zoltar\n\n1) jeep: Homeworld Y1 B2 G3\n\tjeep: Hello again.\n\tjeep: I prefer going second.  I like being able to react to my opponents opening... esp when my opponent is a stronger player than I am.\n\n2) zoltar: Homeworld B1 R3 G3\n\tzoltar: h b1 r3 g3\n\n3) jeep: Build G1 Jeep\n\tzoltar: Hi again!\n\tjeep: Wow, that opening has taken off like wildfire.\n\tzoltar: Which opening?  The banker (yours) or mine?  Or using B-R stars?  I still suck at openings, and the good players (TwoShort, Jesse, and Andy Looney) get the advantage early every game before I know what hit me.  The banker opening you are using Andy thinks is strongest, but TwoShort devastates me in the opening every game when I play it.  Unlike with chess, where I have several opening books on my bookshelf, there ain&#39;t no book openings or, as the Japenese say, &#39;joseki&#39; for this game yet.\n\tjeep: Yours.  I&#39;ve heard TwoShort say he thought that Traveller was stronger than Banker.\n\n4) zoltar: Build G1 Zoltar\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) zoltar: Build G1 Zoltar\n\tzoltar: Aha! I just saw a comment of his spying on his game with you. I didn&#39;t even know it was called the &quot;Traveler&quot;, as I&#39;ve been calling it &quot;Goldilocks&quot; because it&#39;s between the Banker and the Fortress where you are barricaded behind the scarce 1-pip stars.  Well, I&#39;m only using it because TwoShort beats me every time with it; but  then again, he beats me with the Banker every time as well. \n\n7) jeep: Build Y1 Jeep\n\n8) zoltar: Trade G3 Y3 Zoltar\n\n9) jeep: Trade Y1 G1 Jeep\n\n10) zoltar: Build G2 Zoltar\n\tjeep: Hmm... This is quickly going downhill already\n\tzoltar: Well, I do get to sneak in the first 2-pip piece.\n\n11) jeep: Discover G1 Jeep B3 Moon\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) jeep: Build G1 Jeep\n\n14) zoltar: Trade G1 B1 Zoltar\n\n15) jeep: Build G1 Moon\n\n16) zoltar: Build G2 Zoltar\n\n17) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G3 Jeep\nBuild G3 Moon\n\n18) zoltar: Build G3 Zoltar\n\n19) jeep: Trade G1 R1 Jeep\n\tzoltar: Looks like you may have taken the lead back!\n\n20) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo\n\tjeep: We&#39;ll see...\n\n21) jeep: Trade G1 Y1 Moon\n\n22) zoltar: Build Y2 Zoltar\n\n23) jeep: Build Y2 Moon\n\n24) zoltar: Discover Y2 Zoltar B2 Bloohoohoo\n\n25) jeep: Trade Y1 R1 Moon\n\n26) zoltar: Move R1 Zoltar Yabbadabbadoo\n\n27) jeep: Discover Y1 Jeep B3 Changer\n\n28) zoltar: Build R2 Yabbadabbadoo\n\n29) jeep: Build R2 Moon\n\n30) zoltar: Move R2 Yabbadabbadoo Changer\n\n31) jeep: Sacrifice G3 Moon\nBuild Y1 Changer\nBuild Y3 Changer\nBuild Y3 Moon\n\n32) zoltar: Move Y2 Bloohoohoo Changer\nCatastrophe Changer Y\n\tzoltar: Yep, good move.  I&#39;m in bad shape this game.\n\n33) jeep: Move Y3 Moon Yabbadabbadoo\n\n34) zoltar: Sacrifice G2 Yabbadabbadoo\nBuild R2 Yabbadabbadoo\nBuild R3 Changer\n\n35) jeep: Sacrifice R2 Moon\nAttack R2S Yabbadabbadoo\nAttack R1S Yabbadabbadoo\n\n36) zoltar: Trade R2 Y2 Changer\n\n37) jeep: Move G1 Moon Yabbadabbadoo\n\tjeep: That was a tough choice... no idea if it was correct or not.\n\n38) zoltar: Build Y1 Zoltar\n\n39) jeep: Trade R1 B1 Moon\n\n40) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Zoltar Yabbadabbadoo\nMove Y2 Changer Yabbadabbadoo\nDiscover B1 Zoltar G2 Greenslime\nCatastrophe Yabbadabbadoo Y\n\n41) jeep: Build G1 Jeep\n\n42) zoltar: Sacrifice G2 Zoltar\nBuild R1 Changer\nBuild B2 Greenslime\n\n43) jeep: Move G1 Jeep Moon\n\n44) zoltar: Trade B2 Y2 Greenslime\n\n45) jeep: Build Y1 Moon\n\n46) zoltar: Build B2 Greenslime\n\n47) jeep: Discover B1 Moon G2 Grower\n\n48) zoltar: Trade R3 G3 Changer\n\n49) jeep: Build B2 Grower\n\n50) zoltar: Discover B1 Greenslime Y1 Yabbadabbadoo\n\tzoltar: Oh, I can&#39;t find anything better...\n\n51) jeep: Discover G2 Jeep B3 Moon2\n\n52) zoltar: Build Y2 Greenslime\n\n53) jeep: Move Y2 Moon Grower\n\n54) zoltar: Trade Y2 R2 Greenslime\n\n55) jeep: Build G1 Moon\n\n56) zoltar: Build G1 Changer\n\n57) jeep: Sacrifice G2 Moon2\nBuild G2 Jeep\nBuild B3 Grower\n\n58) zoltar: Move B1 Yabbadabbadoo Grower\nCatastrophe Grower B\n\n59) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Moon\nBuild Y2 Grower\n\n60) zoltar: Sacrifice G3 Changer\nBuild G3 Changer\nBuild Y3 Greenslime\nBuild R1 Changer\n\n61) jeep: Sacrifice Y2 Grower\nMove Y1 Moon Greenslime\nMove Y1 Moon Greenslime\nCatastrophe Greenslime Y\n\tjeep: Hmm... I guess I wasn&#39;t paying attention. I thought you&#39;d have to sac your y2 in GreenSlime to do that.\n\n62) zoltar: Sacrifice G3 Changer\nBuild G3 Changer\nBuild B1 Greenslime\nBuild B1 Greenslime\n\n63) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Grower\nBuild Y1 Grower\n\tjeep: Hmm... I forgot you could make a R1... I shouldn&#39;t allow myself to get so rushed.  ;)\n\n64) zoltar: T B2 Y2 Greenslime\n\n65) jeep: Move Y1 Grower Moon\n\tzoltar: This is complicated -- maybe I shouldn&#39;t be so rushed either.\n\n66) zoltar: Sacrifice G3 Changer\nBuild G3 Zoltar\nBuild R2 Changer\nBuild B2 Greenslime\n\n67) jeep: Move R1 Jeep Changer\nCatastrophe Changer R\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G3 Changer\nBuild R1 Greenslime\nBuild R1 Greenslime\n\n69) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 Grower\nBuild Y3 Moon\n\n70) zoltar: Sacrifice Y2 Greenslime\nMove G1 Changer Jeep\nMove G3 Changer Jeep\nCatastrophe Jeep G\n\n\tzoltar: Or can you? I&#39;ll have to look at this some more...\n\tzoltar: No, you can&#39;t.  If I just move the g3 in, you sac a y2, and move a g1 and y3 into your homeworld and blow up the greens, leaving you with a y3 defending.  But I still can send both the g3 and the g1 in immediately for a bluebird checkmate!\n\tjeep: Oops.  Thanks for the game.\n\nHomeworlds Online (SDG# 8227)\nStarted: 2007.6.14, Ended: 2007.6.26\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R2 B3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\tts52: Have a great game!\n\n4) ts52: Build G1 Ts52\n\tzoltar: You as well, human bean!\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zoltar: Build Y2 Zoltar\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) ts52: Build G1 Ts52\n\n11) zoltar: Build G1 Zoltar\n\n12) ts52: Trade G1 R1 Ts52\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) ts52: Build G1 Ts52\n\n15) zoltar: Build B1 Zoltar\n\n16) ts52: Trade G1 B1 Ts52\n\n17) zoltar: Discover B1 Zoltar G1 Greenpea\n\n18) ts52: Move B1 Ts52 Kermit\n\n19) zoltar: Build B2 Greenpea\n\n20) ts52: Build B2 Kermit\n\n21) zoltar: Build B3 Zoltar\n\n22) ts52: Trade B2 Y2 Kermit\n\tzoltar: I think I can get away with building a Big Blue.\n\n23) zoltar: Sacrifice B1 Zoltar\nTrade B2 Y2 Greenpea\n\n24) ts52: Build G1 Ts52\n\n25) zoltar: Move R1 Zoltar Greenpea\n\n26) ts52: Discover Y1 Kermit G2 Wikket\n\n27) zoltar: Build G1 Zoltar\n\n28) ts52: Build G2 Ts52\n\n29) zoltar: Discover B3 Zoltar R1 Redwarf\n\n30) ts52: Build R2 Ts52\n\n31) zoltar: Trade B3 Y3 Redwarf\n\n32) ts52: Discover G2 Ts52 Y3 Bigstar\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Greenpea\nBuild Y3 Zoltar\nBuild R2 Greenpea\n\n34) ts52: Move R1 Ts52 Kermit\n\n35) zoltar: Move Y3 Redwarf Kermit\n\n36) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit Wikket\nMove R1 Kermit Wikket\n\n37) zoltar: Move Y3 Kermit Wikket\n\n38) ts52: Sacrifice G3 Ts52\nBuild G2 Bigstar\nBuild G3 Ts52\nBuild G3 Bigstar\n\n39) zoltar: Sacrifice Y2 Greenpea\nMove G1 Zoltar Greenpea\nMove G1 Greenpea Bigstar\nCatastrophe Bigstar G\n\n40) ts52: Build Y2 Wikket\n\n41) zoltar: Sacrifice B1 Greenpea\nTrade Y3 G3 Wikket\n\n42) ts52: Discover Y2 Wikket B1 Dot\n\n43) zoltar: Sacrifice R2 Greenpea\nAttack R1 Wikket\nAttack Y1 Wikket\n\n44) ts52: Sacrifice G1 Ts52\nBuild Y2 Dot\n\n45) zoltar: Trade Y3 G3 Zoltar\n\n46) ts52: Build G1 Ts52\n\n47) zoltar: Sacrifice G3 Wikket\nBuild Y3 Wikket\nBuild Y3 Greenpea\nBuild Y3 Zoltar\n\n48) ts52: Discover G1 Ts52 G3 Easygreen\n\n49) zoltar: Trade Y3 R3 Zoltar\n\n50) ts52: Move Y2 Dot Easygreen\n\n51) zoltar: Build Y3 Zoltar\n\n52) ts52: Move G1 Easygreen Dot\n\n53) zoltar: Move R3 Zoltar Dot\n\n54) ts52: Sacrifice Y2 Dot\nMove G1 Dot Easygreen\nPass\n\n55) zoltar: Build Y2 Zoltar\n\n56) ts52: Build G1 Ts52\n\tzoltar: With five Battlestars, I&#39;m finally feeling safe...\n\n57) zoltar: Attack B1 Wikket\n\n58) ts52: Discover G1 Ts52 B3 Saphire\n\tts52: Is that all it takes... :(\n\n59) zoltar: Build G2 Zoltar\n\n60) ts52: Build G2 Ts52\n\tzoltar: Wikket is mine! All mine!\n\n61) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Wikket\nBuild B2 Wikket\n\n62) ts52: Trade G2 B2 Ts52\n\n63) zoltar: Discover B1 Wikket R3 Attackoutpost\n\n64) ts52: Move B2 Ts52 Easygreen\n\n65) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild B3 Attackoutpost\n\n66) ts52: Discover G1 Easygreen R1 Lasthope\n\tts52: Subtle.\n\n67) zoltar: Move Y3 Wikket Saphire\n\n68) ts52: Build G2 Lasthope\n\n69) zoltar: Sacrifice G2 Zoltar\nBuild R2 Greenpea\nBuild R3 Wikket\n\n70) ts52: Move Y2 Easygreen Lasthope\n\tzoltar: With six Battlestars, I can go on the offensive!\n\n71) zoltar: Move Y3 Zoltar Lasthope\n\tzoltar: But I need that 7th one to really feel confident...\n\n72) ts52: Sacrifice Y2 Lasthope\nMove G1 Lasthope Zoltar\nMove G2 Lasthope Zoltar\n\tts52: I can see that.\n\n73) zoltar: Sacrifice R2 Greenpea\nAttack G1 Zoltar\nAttack G2 Zoltar\n\tzoltar: Now the Zoltarian Death Fleet is complete!  Prepare for battle!\n\tts52: well, this should be quick...\n\n74) ts52: Build G2 Ts52\n\n75) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Saphire\nBuild R2 Greenpea\n\tzoltar: Attttackkkkk!!!\n\tzoltar: Reziztanz ease few tile!\n\n76) ts52: Sacrifice G1 Saphire\nBuild G1 Ts52\n\n77) zoltar: Sacrifice Y2 Zoltar\nMove B2 Wikket Easygreen\nMove Y1 Greenpea Easygreen\n\tzoltar: Your green ships have been assimilated. \n\n78) ts52: Sacrifice R2 Ts52\nAttack B2N Easygreen\nAttack Y1N Easygreen\n\tts52: All according to plan?\n\n79) zoltar: Sacrifice Y3 Lasthope\nMove G1 Zoltar Dot\nMove G1 Dot Saphire\nMove G1 Saphire Ts52\nCatastrophe Ts52 G\n\n\tzoltar: Good Game.  My 7 battlestars proved effective in the end!\n\tts52: Indeed. Thanks for the game.\n\nHomeworlds Online (SDG# 8148)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.14, Ended: 2007.7.9\nParticipants: Jesse (S), zoltar (N)\nWinner: Jesse\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) Jesse: Homeworld R3 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Jesse: Build G1 Jesse\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Jesse: Trade G3 Y3 Jesse\n\n7) zoltar: Build G1 Zoltar\n\n8) Jesse: Build G1 Jesse\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Jesse: Trade G1 R1 Jesse\n\n11) zoltar: Build G1 Zoltar\n\n12) Jesse: Build G1 Jesse\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) Jesse: Trade G1 B1 Jesse\n\n15) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n16) Jesse: Build Y1 Jesse\n\n17) zoltar: Build B2 Greenbelt\n\n18) Jesse: Discover B1 Jesse G2 Cloud\n\n19) zoltar: Trade B2 Y2 Greenbelt\n\n20) Jesse: Build B2 Cloud\n\n21) zoltar: Build Y2 Greenbelt\n\n22) Jesse: Trade B2 Y2 Cloud\n\n23) zoltar: Trade Y2 R2 Greenbelt\n\n24) Jesse: Discover Y1 Jesse G2 Armchair\n\n25) zoltar: Discover Y1 Zoltar G3 Greenhills\n\n26) Jesse: Build Y2 Cloud\n\n27) zoltar: Build Y3 Greenbelt\n\n28) Jesse: Build Y3 Armchair\n\n29) zoltar: Move Y2 Greenbelt Cloud\n\n30) Jesse: Sacrifice Y2 Cloud\nDiscover Y2 Cloud R3 Electrodynamics\nMove B1 Cloud Electrodynamics\n\n31) zoltar: Build Y2 Greenbelt\n\n32) Jesse: Discover Y1 Armchair B3 Lamppost\n\n33) zoltar: Build B2 Greenbelt\n\n34) Jesse: Move B1 Electrodynamics Armchair\n\n35) zoltar: Move B1 Greenbelt Cloud\n\n36) Jesse: Move R1 Jesse Armchair\n\n\nHomeworlds Online (SDG# 7959)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.14, Ended: 2007.7.12\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) zoltar: Homeworld B1 Y2 G3\n\tTwoShort: Did you mean to start two games?\n\tzoltar: No, I didn&#39;t, but may as well\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Build Y1 Twoshort\n\n10) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n11) TwoShort: Build Y2 Twoshort\n\n12) zoltar: Build Y2 Greenbelt\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) zoltar: Discover Y2 Greenbelt G2 Greenhills\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n18) zoltar: Build G1 Zoltar\n\n19) TwoShort: Build G1 Twoshort\n\n20) zoltar: Trade G1 B1 Zoltar\n\n21) TwoShort: Trade G1 B1 Twoshort\n\n22) zoltar: Build B2 Zoltar\n\n23) TwoShort: Move B1 Twoshort Grogar\n\n24) zoltar: Move B2 Zoltar Greenbelt\n\n25) TwoShort: Build G1 Twoshort\n\n26) zoltar: Build G1 Zoltar\n\n27) TwoShort: Build B2 Grogar\n\n28) zoltar: Build B3 Greenbelt\n\n29) TwoShort: Discover B1 Grogar Y3 Yoyodyne\n\n30) zoltar: Trade B2 R2 Greenbelt\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild B2 Yoyodyne\nBuild Y3 Twoshort\n\n32) zoltar: Build B3 Greenbelt\n\n33) TwoShort: Sacrifice Y2 Grogar\nMove B1 Yoyodyne Zoltar\nMove B2 Yoyodyne Zoltar\nCatastrophe Zoltar Blue\n\n34) zoltar: Trade B3 Y3 Greenbelt\n\n35) TwoShort: Build G2 Twoshort\n\tzoltar: Well, that just about does it for me! :(\n\tTwoShort: Whereas I just see a minefield of ways I could screw up and give you the opening blow up my 3 point...  I think I see the path though.\r\n \n\n36) zoltar: Sacrifice Y3 Greenbelt\nMove Y1 Greenbelt Greenhills\nMove Y1 Greenhills Twoshort\nMove Y2 Greenhills Twoshort\nCatastrophe Twoshort Y\n\n37) TwoShort: Build G2 Bluestar\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Greenbelt\n\tTwoShort: Gah! I thought I had a plan if you did that, but now it doesn&#39;t work.\n\n39) TwoShort: Sacrifice Y1 Grogar\nMove G1 Twoshort Zoltar\nCatastrophe Zoltar Green\n\n40) zoltar: Trade R2 Y2 Greenbelt\n\tzoltar: Well, it was my only move -- I&#39;m still in deep trouble\n\n41) TwoShort: Trade G2 Y2 Bluestar\n\tzoltar: Oops -- well, so much for that\n\n42) zoltar: Sacrifice Y2 Greenbelt\nMove B3 Greenbelt Bluestar\nMove B3 Bluestar Twoshort\n\n43) TwoShort: Sacrifice Y2 Bluestar\nMove R2 Twoshort Zoltar\nMove G1 Bluestar Twoshort\n\tTwoShort: I think you&#39;ve got me...\n\n\tzoltar: Well, I was going to resign when you blew up my greens, but kept playing as to not piss you off.  If I had a chance in this game, I didn&#39;t see it.  At least I got to put a piece in your homeworld before I died.\n\tTwoShort: I feel bad that I got upset in that other game.  I over-reacted an I apologize.  It&#39;s obviously your right to resign if you don&#39;t think you can win, but this game is a good example of why I don&#39;t think you should.  If you built an r2 at Greenbelt, and (depending what I did) moved your b3 home before attacking, I didn&#39;t see a way to stop you.  \n\tzoltar: I&#39;ll have to set up the position and check it out.  I was still demoralized by missing that you could take out all my greens earlier.\n\nHomeworlds Online (SDG# 8264)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.14, Ended: 2007.7.15\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build Y2 Zoltar\n\n8) TwoShort: Build Y2 Twoshort\n\n9) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n10) TwoShort: Discover Y1 Twoshort G2 Twisty\n\n11) zoltar: Build G1 Zoltar\n\n12) TwoShort: Build G1 Twoshort\n\n13) zoltar: Discover Y2 Zoltar B3 Bloohoohoo\n\n14) TwoShort: Discover G1 Twoshort G2 Grozilla\n\n15) zoltar: Trade G1 R1 Zoltar\n\n16) TwoShort: Build G1 Twoshort\n\n17) zoltar: Build R1 Zoltar\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Grozilla\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n19) zoltar: Build R2 Zoltar\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twisty\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\n21) zoltar: Build Y3 Greenbelt\n\n22) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Twisty Greenbelt\nMove Y2 Twisty Greenbelt\nCatastrophe Greenbelt Yellow\n\n23) zoltar: Trade Y2 G2 Bloohoohoo\n\n24) TwoShort: Trade G2 R2 Twoshort\n\n25) zoltar: Trade R2 Y2 Zoltar\n\n26) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n27) zoltar: Build R2 Zoltar\n\n28) TwoShort: Sacrifice G1 Grozilla\nBuild G1 Twoshort\n\n29) zoltar: Discover R1 Zoltar G3 Goodgrief\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bluonia\nBuild Y1 Twoshort\n\n31) zoltar: Discover R2 Zoltar Y3 Yuck\n\n32) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild R2 Yuck\nBuild R3 Zoltar\nBuild G3 Bloohoohoo\n\n34) TwoShort: Sacrifice G3 Bluonia\nBuild Y1 Bluestar\nBuild Y2 Twoshort\nBuild G3 Bluonia\n\n35) zoltar: Sacrifice G3 Bloohoohoo\nBuild G3 Bloohoohoo\nBuild R3 Goodgrief\nBuild R3 Zoltar\n\n36) TwoShort: Sacrifice G3 Bluonia\nBuild G3 Bluonia\nBuild Y2 Twoshort\nBuild Y3 Bluestar\n\n37) zoltar: Move R3 Zoltar Bloohoohoo\n\n38) TwoShort: Move Y2 Twoshort Bluonia\n\n39) zoltar: Move Y2 Zoltar Bloohoohoo\n\n40) TwoShort: Trade Y1 B1 Bluestar\n\n41) zoltar: Trade G3 B3 Bloohoohoo\n\tzoltar: m y2 zoltar bloohoohoo\n\n42) TwoShort: Trade G1 B1 Bluonia\n\n43) zoltar: Move R2 Yuck Grozilla\n\n44) TwoShort: Sacrifice Y2 Twoshort\nMove B1 Bluonia Bloohoohoo\nMove B1 Bluestar Bloohoohoo\nCatastrophe Bloohoohoo Blue\n\n45) zoltar: Build R3 Grozilla\n\n46) TwoShort: Sacrifice G3 Bluonia\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Bluonia\n\n\tzoltar: Yep, I&#39;m dead in this one too.  Good game.\n\nHomeworlds Online (SDG# 7874)\nStarted: 2007.6.19, Ended: 2007.7.10\nParticipants: sudosub (S), dayleh (W), MikeYarrum (N), zoltar (E)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\tdayleh: Hello All .. and Good Luck\n\tMikeYarrum: Ships away!\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) dayleh: Homeworld Y1 B2 G3\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) zoltar: Build G1 Zoltar\n\tMikeYarrum: Oh my, I forgot about this game... squeezed in with six hours left!\n\n6) dayleh: Build G1 Dayleh\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) dayleh: Trade G1 Y1 Dayleh\n\n10) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n11) zoltar: Build G1 Zoltar\n\n12) dayleh: Build G1 Dayleh\n\n13) MikeYarrum: Build G1 Mikeyarrum\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) dayleh: Build G1 Dayleh\n\n16) MikeYarrum: Discover G1 Mikeyarrum B1 Kaorin\n\n17) zoltar: Build R1 Zoltar\n\n18) dayleh: Trade G1 R1 Dayleh\n\n19) MikeYarrum: Build G1 Kaorin\n\n20) zoltar: Trade R1 B1 Zoltar\n\n21) dayleh: Build R1 Dayleh\n\n22) MikeYarrum: Trade G1 R1 Kaorin\n\n23) zoltar: Build G1 Zoltar\n\n24) dayleh: Discover Y1 Dayleh G3 Kadon\n\n25) MikeYarrum: Discover G1 Mikeyarrum B1 Chihiro\n\n26) zoltar: Discover B1 Zoltar G3 Yabbadabbadoo\n\n27) dayleh: Discover G1 Dayleh Y3 Callie\n\n28) MikeYarrum: Build R1 Kaorin\n\n29) zoltar: Trade R1 B1 Zoltar\n\n30) dayleh: Move R1 Dayleh Yabbadabbadoo\n\n31) MikeYarrum: Trade R1 Y1 Kaorin\n\n32) zoltar: Build B2 Yabbadabbadoo\n\n33) dayleh: Build Y2 Kadon\n\n34) MikeYarrum: Build Y2 Kaorin\n\n35) zoltar: Trade B2 R2 Yabbadabbadoo\n\n36) dayleh: Sacrifice Y1 Kadon\nDiscover R1 Yabbadabbadoo G2 Erin\n\n37) MikeYarrum: Build R1 Kaorin\n\n38) zoltar: Build B2 Yabbadabbadoo\n\n39) dayleh: Move Y2 Kadon Chihiro\n\n40) MikeYarrum: Sacrifice G1 Chihiro\nBuild G1 Kaorin\n\n41) zoltar: Trade B2 Y2 Yabbadabbadoo\n\n42) dayleh: Trade Y2 G2 Chihiro\n\n43) MikeYarrum: Build G1 Mikeyarrum\n\n44) zoltar: Discover G1 Zoltar B3 Bloohoohoo\n\n45) dayleh: Build G2 Chihiro\n\n46) MikeYarrum: Discover R1 Kaorin G3 Boynamo\n\n47) zoltar: Build G2 Zoltar\n\n48) dayleh: Build G2 Dayleh\n\n49) MikeYarrum: Discover Y1 Kaorin B3 Rachael\n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B2 Yabbadabbadoo\n\n51) dayleh: Trade G2 Y2 Chihiro\n\n52) MikeYarrum: Move G1 Kaorin Rachael\n\n53) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bloohoohoo\nBuild G3 Zoltar\nBuild B2 Zoltar\n\n54) dayleh: Sacrifice G3 Dayleh\nBuild G3 Dayleh\nBuild R1 Erin\nBuild R2 Dayleh\n\n55) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild R2 Boynamo\nBuild R3 Kaorin\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Yabbadabbadoo\nBuild Y1 Yabbadabbadoo\n\n57) dayleh: Sacrifice Y2 Chihiro\nMove R1 Erin Yabbadabbadoo\nMove R1 Erin Yabbadabbadoo\nCatastrophe Yabbadabbadoo Red\n\n58) MikeYarrum: Build Y2 Rachael\n\n59) zoltar: Sacrifice Y2 Yabbadabbadoo\nMove G2 Bloohoohoo Dayleh\nMove G1 Bloohoohoo Dayleh\nCatastrophe Dayleh G\n\n60) dayleh: Trade R2 G2 Dayleh\n\n61) MikeYarrum: Build Y2 Kaorin\n\n62) zoltar: Move B2 Zoltar Callie\n\n63) dayleh: Trade G2 Y2 Chihiro\n\n64) MikeYarrum: Move R3 Kaorin Yabbadabbadoo\n\tzoltar: Back at&#39;cha!\n\n65) zoltar: Discover Y1 Yabbadabbadoo G2 Hubbahubbahubba\n\tdayleh: Ouch.  Nice move.\n\n66) dayleh: Build R1 Dayleh\n\n67) MikeYarrum: Attack B2E Yabbadabbadoo\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Callie\nBuild B3 Zoltar\nCatastrophe Yabbadabbadoo B\n\n69) dayleh: Build G1 Dayleh\n\n70) MikeYarrum: Build G2 Rachael\n\n71) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Hubbahubbahubba\n\n72) dayleh: Sacrifice G2 Dayleh\nBuild Y3 Chihiro\nBuild G2 Dayleh\n\tMikeYarrum: I used to worry about capitalization, too - looks much nicer. Then I decided it would be more science-fictiony to enter my commands in all caps.\n\n73) MikeYarrum: Build Y3 Mikeyarrum\n\n74) zoltar: Sacrifice B2 Callie\nTrade Y3 R3 Hubbahubbahubba\nTrade B3 G3 Zoltar\n\n75) dayleh: Trade Y3 G3 Chihiro\n\n76) MikeYarrum: Discover Y2 Rachael G2 Perapera\n\n77) zoltar: Build Y3 Hubbahubbahubba\n\n78) dayleh: Build Y3 Chihiro\n\n79) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Kaorin\nBuild G3 Mikeyarrum\nBuild Y3 Rachael\n\n80) zoltar: Sacrifice Y2 Zoltar\nMove B3 Callie Dayleh\nMove Y3 Hubbahubbahubba Boynamo\n\n81) dayleh: Trade R1 B1 Dayleh\n\n82) MikeYarrum: Sacrifice Y1 Mikeyarrum\nMove R3 Yabbadabbadoo Kaorin\n\n83) zoltar: Sacrifice R3 Hubbahubbahubba\nAttack R2N Boynamo\nAttack B1W Dayleh\nAttack G2W Dayleh\n\n84) zoltar: Move B3 Dayleh Callie\n\n85) MikeYarrum: Sacrifice Y2 Kaorin\nMove R3 Kaorin Boynamo\nMove R3 Boynamo Chihiro\n\n\tzoltar: Yep, that about does it for me.  No chance at this point.  If I build the G3 you just blow all my greens up and I&#39;m dead in the water.  Good game!\n\tMikeYarrum: Thanks for playing, everyone! It didn&#39;t turn out as smoothly as the 1 day clock Zendo game, though.\n\tzoltar: No, it didn&#39;t.  My mistake was to attack, as after I trash dayleh&#39;s homeworld, you get to mop up and end up with all the big ships and I&#39;m too weak to rebuild.  I had to, after my initial weakening of his forces, ignored him and built up.  I am terrible at these multi-player games and I always seem to choose the wrong strategy and tactics.\n\tzoltar: Thanks for the game.\n\nHomeworlds Online (SDG# 8374)\nStarted: 2007.6.19, Ended: 2007.7.27\nParticipants: MatrixFrog (S), DaDRK (N)\nWinner: DaDRK\n\n1) DaDRK: Homeworld R3 G1 B3\n\n2) MatrixFrog: Homeworld G1 B2 Y3\n\tDaDRK: hello again, good luck on the game :)\n\n3) DaDRK: Build B1 Dadrk\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) DaDRK: Build B1 Dadrk\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) DaDRK: Trade B1 Y1 Dadrk\n\n8) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n9) DaDRK: Build B1 Dadrk\n\n10) MatrixFrog: Discover Y1 Matrixfrog G3 Gandalf\n\n11) DaDRK: Discover B1 Dadrk G2 Frst\n\n12) MatrixFrog: Build Y1 Gandalf\n\n13) DaDRK: Build Y2 Dadrk\n\n14) MatrixFrog: Build Y2 Matrixfrog\n\n15) DaDRK: Trade Y2 R2 Dadrk\n\n16) MatrixFrog: Discover Y1 Gandalf B2 Frodo\n\n17) DaDRK: Move R2 Dadrk Frodo\n\n18) MatrixFrog: Discover Y1 Frodo G1 Bilbo\n\n19) DaDRK: Build B1 Frst\n\n20) MatrixFrog: Build Y2 Bilbo\n\tMatrixFrog: I don&#39;t know how many character names I&#39;m going to be able to remember...\n\tDaDRK: hehe\n\n21) DaDRK: Trade B1 R1 Dadrk\n\n22) MatrixFrog: Discover Y2 Bilbo B2 Elves\n\n23) DaDRK: Trade B1 R1 Frst\n\n24) MatrixFrog: Move Y1 Gandalf Elves\n\n25) DaDRK: Build Y2 Dadrk\n\tDaDRK: hmm don&#39;t know how to proceed from this point\n\tMatrixFrog: Homeworlds is very open sometimes. You have a zillion things you COULD do, but which one is going to actually be useful?\n\n26) MatrixFrog: Move Y1 Elves Dadrk\n\n27) DaDRK: Sacrifice Y2 Dadrk\nMove Y1 Dadrk Frodo\nMove R2 Frodo Bilbo\n\n28) MatrixFrog: Build Y2 Bilbo\n\n29) DaDRK: Attack Y2 Bilbo\n\n30) MatrixFrog: Build Y3 Bilbo\n\n31) DaDRK: Build Y3 Bilbo\nCatastrophe Bilbo Y\n\n32) MatrixFrog: Build Y1 Dadrk\n\n33) DaDRK: Sacrifice R2 Bilbo\nAttack Y1 Dadrk\nAttack Y1 Dadrk\n\n34) MatrixFrog: Build R2 Matrixfrog\n\n35) DaDRK: Build R2 Frst\n\n36) MatrixFrog: Build Y2 Matrixfrog\n\n37) DaDRK: Move Y1 Dadrk Frst\n\n38) MatrixFrog: Discover Y2 Matrixfrog G3 Gigawatt\n\n39) DaDRK: Build Y3 Dadrk\n\n40) MatrixFrog: Build Y3 Gigawatt\n\n41) DaDRK: Discover R2 Frst R3 Scnd\n\n42) MatrixFrog: Trade R1 B1 Matrixfrog\n\n43) DaDRK: Sacrifice Y3 Dadrk\nMove R1 Dadrk Frodo\nMove R2 Scnd Frodo\nMove R2 Frodo Gigawatt\n\n44) MatrixFrog: Move Y2 Gigawatt Frodo\n\n45) DaDRK: Build Y3 Dadrk\n\n46) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack R1 Frodo\nAttack Y1 Frodo\n\n47) DaDRK: Build B1 Frst\n\n48) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n49) DaDRK: Build Y3 Frst\n\n50) MatrixFrog: Build G1 Matrixfrog\n\n51) DaDRK: Build B3 Dadrk\n\n52) MatrixFrog: Sacrifice Y2 Elves\nMove Y2 Frodo Dadrk\nMove Y1 Frodo Dadrk\nCatastrophe Dadrk Y\n\n53) DaDRK: Sacrifice Y3 Frst\nMove B1 Frst Gigawatt\nMove B1 Gigawatt Matrixfrog\nMove R2 Gigawatt Matrixfrog\n\n54) MatrixFrog: Discover G1 Matrixfrog Y3 Cheese\n\n55) DaDRK: Trade R2 B2 Matrixfrog\nCatastrophe Matrixfrog Blue\n\n56) MatrixFrog: Build Y1 Matrixfrog\n\n57) DaDRK: Build R1 Frst\n\n58) MatrixFrog: Trade R1 B1 Frodo\n\n59) DaDRK: Move R1 Frst Cheese\n\n60) MatrixFrog: Sacrifice G1 Cheese\nBuild G1 Matrixfrog\n\n61) DaDRK: Build R1 Frst\n\n62) MatrixFrog: Sacrifice B1 Frodo\nTrade G1 B1 Matrixfrog\n\n63) DaDRK: Trade R1 G1 Frst\n\n64) MatrixFrog: Build B1 Matrixfrog\n\tDaDRK: funny move :p\n\tMatrixFrog: I love doing that. I feel so clever. I&#39;ve only played this with real pieces a few times, but I think I would actually move the piece to the stash, then take it out again.\n\n65) DaDRK: Trade B3 G3 Dadrk\n\n66) MatrixFrog: Move Y3 Gigawatt Frst\n\tDaDRK: would probably work like that\n\n67) DaDRK: Move G1 Frst Matrixfrog\n\n68) MatrixFrog: Trade G3 R3 Matrixfrog\n\n69) DaDRK: Sacrifice G3 Dadrk\nBuild G2 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Matrixfrog\nCatastrophe Matrixfrog Green\n\n\tDaDRK: gg\n\tDaDRK: quick question, how does this rating system work?\n\tMatrixFrog: I don&#39;t know the details, but obviously your rating goes up if you win, down if you lose. If you win against a better player, your rating goes up more than against a so-so player. The exact formulas, I don&#39;t know.\n\nHomeworlds Online (SDG# 8271)\nStarted: 2007.6.19, Ended: 2007.6.29\nParticipants: DaDRK (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B2 Y1 G3\n\n2) DaDRK: Homeworld R3 G1 B3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) DaDRK: Build B1 Dadrk\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) DaDRK: Build B1 Dadrk\n\tDaDRK: a little late but good luck\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\tMikeYarrum: Thanks, you too!\n\n8) DaDRK: Trade B1 G1 Dadrk\n\n9) MikeYarrum: Discover Y1 Mikeyarrum G3 Sakaki\n\n10) DaDRK: Build G1 Dadrk\n\n11) MikeYarrum: Build Y2 Sakaki\n\n12) DaDRK: Build G2 Dadrk\n\n13) MikeYarrum: Build G2 Mikeyarrum\nCatastrophe Dadrk Green\n\tMikeYarrum: You may want to undo that move. Now that you have four green pieces in a system, I can cause a catastrophe at the end of my turn.\n\tMikeYarrum: Sorry - waited as long as I could.\n\n\tDaDRK: I actually thought I undid that, oh well\n\tDaDRK: well good game I don&#39;t think I can do much now, thanks for the game even if I did such a stupid move.\n\tMikeYarrum: I was worried you had left the site, as many sometimes do. It&#39;s best to just start a new game when an old one goes sour.\n\nHomeworlds Online (SDG# 8265)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.19, Ended: 2007.6.28\nParticipants: dayleh (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) dayleh: Homeworld B1 G2 Y3\n\tTwoShort: Howdy...\n\n3) TwoShort: Build G1 Twoshort\n\n4) dayleh: Build Y1 Dayleh\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dayleh: Trade Y1 R1 Dayleh\n\n7) TwoShort: Build G1 Twoshort\n\n8) dayleh: Build R1 Dayleh\n\n9) TwoShort: Build G1 Twoshort\n\n10) dayleh: Build R2 Dayleh\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\tdayleh: How are you today... sorry, didn&#39;t notice the salutation until now.\n\n12) dayleh: Discover R1 Dayleh G3 Tammy\n\n13) TwoShort: Build G1 Twoshort\n\n14) dayleh: Trade R2 G2 Dayleh\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n16) dayleh: Sacrifice G2 Dayleh\nBuild R2 Dayleh\nBuild R2 Tammy\n\n17) TwoShort: Trade G2 R2 Bluonia\n\n18) dayleh: Build R3 Dayleh\n\n19) TwoShort: Sacrifice G3 Bluonia\nBuild R3 Bluonia\nBuild R3 Bluonia\nBuild G2 Bluonia\n\n20) dayleh: Sacrifice Y3 Dayleh\nMove R1 Tammy Bluonia\nDiscover R1 Bluonia Y3 Temp\nMove R1 Temp Bluonia\nCatastrophe Bluonia R\n\n21) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n22) dayleh: Trade R3 G3 Dayleh\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n24) dayleh: Trade R2 Y2 Dayleh\n\n25) TwoShort: Trade G2 R2 Bluonia\n\n26) dayleh: Build G2 Dayleh\n\n27) TwoShort: Trade G2 Y2 Bluonia\n\n28) dayleh: Sacrifice G2 Dayleh\nBuild Y1 Dayleh\nBuild Y3 Dayleh\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n30) dayleh: Discover Y2 Dayleh Y3 Callie\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluonia\nBuild R1 Bluonia\nBuild G3 Twoshort\n\n32) dayleh: Build R2 Dayleh\n\n33) TwoShort: Move Y3 Bluonia Tammy\n\n34) dayleh: Sacrifice Y2 Callie\nDiscover Y3 Dayleh R3 Temp\nMove Y3 Temp Bluonia\n\n35) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild G3 Twoshort\nCatastrophe Bluonia Yellow\n\n36) dayleh: Build Y2 Dayleh\n\n37) TwoShort: Sacrifice R1 Bluonia\nAttack R2S Tammy\n\n38) dayleh: Discover R1 Dayleh Y3 Kadon\n\n39) TwoShort: Trade G1 B1 Bluonia\n\n40) dayleh: Trade Y1 B1 Dayleh\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G3 Twoshort\nBuild Y1 Tammy\n\n42) dayleh: Discover R2 Dayleh Y3 Callie\n\n43) TwoShort: Trade G2 Y2 Bluonia\n\n\tdayleh: Good Game.  Thanks.\n\nHomeworlds Online (SDG# 8379)\nStarted: 2007.6.20, Ended: 2007.7.27\nParticipants: rkalajian (S), maka (N)\nWinner: rkalajian\n\n1) maka: Homeworld B3 G2 Y3\n\n2) rkalajian: Homeworld B2 G3 Y3\n\tmaka: Hello! \n\n3) maka: Build Y1 Maka\n\trkalajian: Hey there!\n\n4) rkalajian: Build Y1 Rkalajian\n\n5) maka: Trade Y1 G1 Maka\n\n6) rkalajian: Trade Y1 G1 Rkalajian\n\n7) maka: Discover G1 Maka R1 Reddwarf\n\n8) rkalajian: Discover G1 Rkalajian B1 Fei\n\n9) maka: Build G1 Reddwarf\n\n10) rkalajian: Build G2 Fei\n\n11) maka: Build Y1 Maka\n\n12) rkalajian: Trade G1 Y1 Fei\n\n13) maka: Build G1 Reddwarf\n\n14) rkalajian: Discover Y1 Fei G3 Elly\n\n15) maka: Sacrifice Y3 Maka\nMove G1 Reddwarf Rkalajian\nMove G1 Reddwarf Rkalajian\nMove G1 Reddwarf Rkalajian\nCatastrophe Rkalajian Green\n\n16) rkalajian: Build G1 Fei\n\tmaka: kamikaze attack! :)\n\n17) maka: Build Y1 Maka\n\n18) rkalajian: Build Y2 Elly\n\n19) maka: Build Y2 Maka\n\n20) rkalajian: Trade Y3 G3 Rkalajian\n\n21) maka: Trade Y1 G1 Maka\n\n22) rkalajian: Build G1 Rkalajian\n\n23) maka: Move Y1 Maka Fei\n\n24) rkalajian: Trade G2 R2 Fei\n\n25) maka: Move Y1 Fei Elly\n\n26) rkalajian: Build G2 Fei\n\n27) maka: Move Y1 Elly Rkalajian\n\n28) rkalajian: Trade G3 R3 Rkalajian\n\n29) maka: Discover Y1 Rkalajian B1 Bool\n\n30) rkalajian: Build G2 Fei\n\n31) maka: Move G1 Maka Fei\nCatastrophe Fei Green\n\n32) rkalajian: Move Y1 Elly Fei\n\n33) maka: Build Y1 Maka\n\n34) rkalajian: Build G1 Rkalajian\n\n35) maka: Trade Y2 G2 Maka\n\n36) rkalajian: Trade R2 G2 Fei\n\n37) maka: Move G2 Maka Bool\n\n38) rkalajian: Build Y2 Fei\n\n39) maka: Sacrifice G2 Bool\nBuild Y2 Bool\nBuild Y3 Maka\n\n40) rkalajian: Trade Y2 R2 Fei\n\n41) maka: Trade Y2 G2 Bool\n\n42) rkalajian: Build Y2 Fei\n\n43) maka: Build Y2 Bool\n\n44) rkalajian: Build Y3 Elly\n\n45) maka: Trade Y3 B3 Maka\n\n46) rkalajian: Build G1 Fei\n\n47) maka: Sacrifice Y2 Bool\nDiscover G2 Bool G3 Yay\nMove Y1 Bool Yay\n\n48) rkalajian: Build G3 Fei\n\n49) maka: Sacrifice G2 Yay\nBuild Y2 Yay\nBuild Y3 Maka\n\n50) rkalajian: Sacrifice Y3 Elly\nMove R2 Fei Maka\nMove G3 Fei Maka\nMove Y2 Fei Maka\n\n51) maka: Sacrifice B3 Maka\nTrade Y1 R1 Yay\nTrade Y3 R3 Maka\nTrade Y1 R1 Maka\n\n52) rkalajian: Attack R3 Maka\n\n53) maka: Build R1 Maka\n\n54) rkalajian: Sacrifice R3 Rkalajian\nAttack R1 Maka\nAttack R1 Maka\nPass\n\tmaka: ok. you got me :) there&#39;s nothing I can do... Well played! \n\n\tmaka: Ok. Want to try out the new Volcano? I&#39;ve played it at home, but haven&#39;t tried it here yet\n\trkalajian: Sure, I&#39;ve never played Volcano before.  Setup and I&#39;ll join.\n\nHomeworlds Online (SDG# 8375)\nStarted: 2007.6.20, Ended: 2007.6.25\nParticipants: dayleh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) dayleh: Homeworld B1 G2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) dayleh: Build Y1 Dayleh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dayleh: Trade Y1 R1 Dayleh\n\n7) zoltar: Build G1 Zoltar\n\n8) dayleh: Build Y1 Dayleh\n\n9) zoltar: Build Y1 Zoltar\n\n10) dayleh: Build Y2 Dayleh\n\n11) zoltar: Build Y2 Zoltar\n\n12) dayleh: Discover Y2 Dayleh G3 Tammy\n\n13) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n14) dayleh: Trade Y1 G1 Dayleh\n\tdayleh: Hey Zoltar .. Are you local to MD &#39;burbs?  You named the system Greenbelt.  Just Wondering\n\n15) zoltar: Trade Y2 R2 Zoltar\n\tzoltar: Affirmative, I reside in Old Greenbelt, just down the street from the creator of Homeworlds, Gort.\n\n16) dayleh: Build Y1 Dayleh\n\n17) zoltar: Build Y2 Zoltar\n\tdayleh: Kewl.  I work in Lanham and line in Columbia.  We eat at Beijing frequently.  Are you going to Origins?\n\tzoltar: The &quot;Chef&#39;s Secret&quot; Thai restaurant is the best in Greenbelt, btw.  No, I&#39;m in Florida through the 4th of July visiting my family that live down here, but I&#39;ll make it to Origins next year I hope.\n\n18) dayleh: Trade Y3 G3 Dayleh\n\n19) zoltar: Discover Y2 Zoltar B2 Blueridge\n\n20) dayleh: Sacrifice Y1 Dayleh\nDiscover G1 Dayleh Y3 Callie\n\n21) zoltar: Build Y1 Greenbelt\n\n22) dayleh: Build G1 Callie\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\n24) dayleh: Move Y2 Tammy Greenbelt\nCatastrophe Greenbelt Y\n\n25) zoltar: Build G2 Zoltar\n\tzoltar: Owe Know!!! You destroyed Greenbelt!\n\n26) dayleh: Discover G1 Callie B1 Erin\n\n27) zoltar: Trade Y3 G3 Blueridge\n\tdayleh: I often thought about destroying greenbelt, but its such a pretty, serene place ... lol\n\n28) dayleh: Build R1 Dayleh\n\n29) zoltar: Build R2 Zoltar\n\n30) dayleh: Trade G1 Y1 Erin\n\n31) zoltar: Discover Y1 Zoltar B2 Bluemoon\n\n32) dayleh: Discover Y1 Erin G3 Kadon\n\n33) zoltar: Move R2 Zoltar Bluemoon\n\n34) dayleh: Trade R1 Y1 Dayleh\n\n35) zoltar: Move R2 Bluemoon Callie\n\n36) dayleh: Discover G1 Callie Y2 Tammy\n\n37) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Bluemoon\n\n38) dayleh: Build G1 Tammy\n\n39) zoltar: Move R2 Zoltar Tammy\n\n40) dayleh: Build G2 Tammy\n\tdayleh: Not Looking Good in this Solar System\n\n41) zoltar: Attack G2 Tammy\n\tzoltar: Yes, that last sacrifice gives me a powerful lead.\n\n\nHomeworlds Online (SDG# 8376)\nStarted: 2007.6.20, Ended: 2007.8.18\nParticipants: antihero (S), MikeYarrum (N)\nWinner: antihero\n\n1) MikeYarrum: Homeworld B3 Y1 G3\n\n2) antihero: Homeworld B2 Y3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) antihero: Build G1 Antihero\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) antihero: Build Y2 Antihero\n\n9) MikeYarrum: Discover Y1 Mikeyarrum G2 Kagura\n\n10) antihero: Discover Y1 Antihero G1 Greenie\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) antihero: Build G1 Antihero\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) antihero: Build G2 Antihero\n\n15) MikeYarrum: Discover G2 Mikeyarrum B2 Boynamo\n\n16) antihero: Trade G1 R1 Antihero\n\tantihero: hmm this was not a well-thought-out plan... :)\n\n17) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n18) antihero: Discover G2 Antihero B1 Switch\n\n19) MikeYarrum: Build G1 Mikeyarrum\n\n20) antihero: Move Y1 Greenie Kagura\n\n21) MikeYarrum: Build G1 Boynamo\n\n22) antihero: Build G1 Switch\n\n23) MikeYarrum: Trade G2 R2 Boynamo\n\n24) antihero: Trade G1 R1 Switch\n\n25) MikeYarrum: Build R2 Boynamo\n\n26) antihero: Build R2 Switch\n\n27) MikeYarrum: Build R3 Mikeyarrum\n\n28) antihero: Build R3 Antihero\n\n29) MikeYarrum: Discover R3 Mikeyarrum G2 Rachael\n\n30) antihero: Sacrifice R1 Antihero\nAttack Y1 Kagura\n\n31) MikeYarrum: Move Y2 Mikeyarrum Rachael\n\n32) antihero: Move Y2 Antihero Switch\n\n33) MikeYarrum: Discover R3 Rachael B1 Chihiro\n\n34) antihero: Build Y2 Kagura\n\n35) MikeYarrum: Build Y3 Rachael\n\n36) antihero: Build Y3 Switch\n\n37) MikeYarrum: Sacrifice Y2 Rachael\nMove R2 Boynamo Switch\nMove R2 Boynamo Switch\nCatastrophe Switch Red\n\n38) antihero: Move Y1 Kagura Mikeyarrum\n\n39) MikeYarrum: Build Y2 Rachael\n\n40) antihero: Move Y1 Kagura Mikeyarrum\n\n41) MikeYarrum: Build R1 Mikeyarrum\n\n42) antihero: Move Y2 Kagura Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n43) MikeYarrum: Move Y3 Rachael Mikeyarrum\n\n44) antihero: Build R1 Antihero\n\n\tantihero: Wait, did I have a winning move here that I didn&#39;t see?\n\tMikeYarrum: Sorry, I just didn&#39;t like where this game was headed, and I didn&#39;t think I had any good moves.\n\tantihero: Ah, no problem. Always fun to play you. I&#39;ll accept another challenge again some time. \n\tMikeYarrum: =D\n\nHomeworlds Online (SDG# 8387)\nStarted: 2007.6.21, Ended: 2007.8.19\nParticipants: antihero (S), Kermit (N)\nWinner: antihero\n\n1) Kermit: Homeworld G1 B2 Y3\n\n2) antihero: Homeworld B1 G3 Y3\n\n3) Kermit: Build Y1 Kermit\n\n4) antihero: Build Y1 Antihero\n\n5) Kermit: Discover Y1 Kermit B3 Slinky\n\n6) antihero: Discover Y1 Antihero G2 Builder\n\n7) Kermit: Trade Y1 G1 Slinky\n\n8) antihero: Build Y1 Antihero\n\n9) Kermit: Build G1 Slinky\n\n10) antihero: Build Y1 Builder\n\n11) Kermit: Build G2 Slinky\n\n12) antihero: Build Y2 Antihero\n\n13) Kermit: Build Y2 Kermit\n\n14) antihero: Trade Y2 G2 Antihero\n\n15) Kermit: Trade G2 R2 Slinky\n\n16) antihero: Trade Y1 R1 Antihero\n\n17) Kermit: Move Y2 Kermit Slinky\n\n18) antihero: Discover Y1 Builder G3 Biggreen\n\n19) Kermit: Move G1 Slinky Builder\n\n20) antihero: Move Y1 Biggreen Kermit\n\n21) Kermit: Build R1 Slinky\n\n22) antihero: Sacrifice G2 Antihero\nBuild Y1 Kermit\nBuild Y2 Kermit\nCatastrophe Kermit Y\n\tantihero: thanks for playing! I&#39;m sorry for all the delays.\n\n\nHomeworlds Online (SDG# 8386)\nStarted: 2007.6.22, Ended: 2007.7.3\nParticipants: discord35 (S), MikeYarrum (N)\nWinner: discord35\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tdiscord35: Hello! This is my first time playing here.\n\tMikeYarrum: Hello! I think I noticed your watching another game of mine. Hope you enjoy!\n\n2) discord35: Homeworld G1 B2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) discord35: Build Y1 Discord35\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) discord35: Trade Y1 G1 Discord35\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) discord35: Discover G1 Discord35 G3 Dakota\n\n9) MikeYarrum: Discover Y1 Mikeyarrum B1 Osaka\n\tdiscord35: That will be my last move for tonight, I think. I&#39;ve got to focus on other things.\n\n10) discord35: Build Y1 Discord35\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) discord35: Move Y1 Discord35 Dakota\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) discord35: Build Y2 Dakota\n\n15) MikeYarrum: Trade Y1 G1 Osaka\n\n16) discord35: Sacrifice Y2 Dakota\nMove Y1 Dakota Osaka\nMove Y1 Osaka Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n17) MikeYarrum: Build G2 Osaka\n\n18) discord35: Build Y1 Discord35\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) discord35: Move Y1 Discord35 Dakota\n\n21) MikeYarrum: Trade G2 Y2 Osaka\n\n22) discord35: Build G2 Dakota\n\n23) MikeYarrum: Move G1 Osaka Dakota\nCatastrophe Dakota Green\n\n24) discord35: Build Y1 Discord35\n\n25) MikeYarrum: Build G1 Mikeyarrum\n\n26) discord35: Trade Y1 R1 Discord35\n\n27) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n28) discord35: Build Y1 Discord35\n\n29) MikeYarrum: Build G1 Mikeyarrum\n\n30) discord35: Discover Y1 Discord35 B3 Dakota\n\n31) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n32) discord35: Trade Y1 G1 Dakota\n\n33) MikeYarrum: Build Y1 Mikeyarrum\n\n34) discord35: Build R1 Discord35\n\n35) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n36) discord35: Build G1 Dakota\n\n37) MikeYarrum: Build G2 Mikeyarrum\n\n38) discord35: Trade G1 Y1 Dakota\n\n39) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n40) discord35: Build Y2 Dakota\n\n41) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove Y1 Mikeyarrum Osaka\nDiscover Y2 Osaka G3 Sakaki\n\n42) discord35: Trade Y2 G2 Dakota\n\n43) MikeYarrum: Build Y2 Sakaki\n\n44) discord35: Sacrifice G2 Dakota\nBuild Y2 Discord35\nBuild Y3 Dakota\n\n45) MikeYarrum: Build Y3 Mikeyarrum\n\n46) discord35: Discover Y1 Dakota G2 Carolina\n\n47) MikeYarrum: Move R2 Mikeyarrum Osaka\n\n48) discord35: Move R1 Discord35 Dakota\n\n49) MikeYarrum: Move Y3 Mikeyarrum Osaka\n\n50) discord35: Build R1 Dakota\n\n51) MikeYarrum: Sacrifice B1 Mikeyarrum\nTrade Y2 G2 Sakaki\n\n52) discord35: Build Y2 Dakota\n\n53) MikeYarrum: Move G2 Sakaki Osaka\n\n54) discord35: Move R1 Dakota Carolina\n\n55) MikeYarrum: Build R2 Osaka\n\n56) discord35: Build R2 Carolina\n\n57) MikeYarrum: Move R2 Osaka Sakaki\n\n58) discord35: Build R3 Discord35\n\n59) MikeYarrum: Build R3 Osaka\n\n60) discord35: Sacrifice Y2 Dakota\nMove R1 Dakota Osaka\nMove R1 Carolina Osaka\nCatastrophe Osaka R\n\n61) MikeYarrum: Build R1 Sakaki\n\n62) discord35: Build Y2 Dakota\n\n63) MikeYarrum: Sacrifice Y2 Sakaki\nMove R1 Sakaki Discord35\nMove R2 Sakaki Discord35\nCatastrophe Discord35 Red\n\n64) discord35: Sacrifice Y2 Discord35\nMove Y1 Carolina Osaka\nMove Y2 Dakota Osaka\nCatastrophe Osaka Y\n\n65) MikeYarrum: Build Y1 Mikeyarrum\n\n66) discord35: Move Y3 Dakota Osaka\n\n67) MikeYarrum: Move Y1 Mikeyarrum Osaka\n\n68) discord35: Sacrifice R2 Carolina\nAttack G2N Osaka\nAttack Y1N Osaka\n\n\tMikeYarrum: I think that&#39;s checkmate. Thank you for the game!\n\tdiscord35: Thank you as well!\n\nHomeworlds Online (SDG# 8377)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.24, Ended: 2007.7.22\nParticipants: JeffW (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) JeffW: Homeworld Y1 G3 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) JeffW: Build B1 Jeffw\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) JeffW: Trade B1 Y1 Jeffw\n\n7) TwoShort: Build Y2 Twoshort\n\n8) JeffW: Build Y2 Jeffw\n\n9) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort R2 Boomtime\nMove Y1 Boomtime Jeffw\nCatastrophe Jeffw Yellow\n\n10) JeffW: Build B1 Jeffw\n\n11) TwoShort: Build G1 Twoshort\n\n12) JeffW: Trade B1 Y1 Jeffw\n\n13) TwoShort: Build G1 Twoshort\n\n14) JeffW: Build Y1 Jeffw\n\n15) TwoShort: Trade G3 Y3 Twoshort\n\n16) JeffW: Trade Y1 R1 Jeffw\n\n17) TwoShort: Discover G1 Twoshort R2 Rosy\n\n\nHomeworlds Online (SDG# 8483)\nStarted: 2007.6.26, Ended: 2007.7.15\nParticipants: nycavri (S), JeffW (N)\nWinner: nycavri\n\n1) JeffW: Homeworld Y1 G3 B3\n\n2) nycavri: Homeworld Y2 B1 G3\n\tnycavri: h y2 b1 g3\n\tnycavri: *blush*\n\n3) JeffW: Build B1 Jeffw\n\n4) nycavri: Build G1 Nycavri\n\n5) JeffW: Trade B1 Y1 Jeffw\n\n6) nycavri: Build G1 Nycavri\n\n7) JeffW: Build Y1 Jeffw\n\n8) nycavri: Discover G1 Nycavri Y3 Mvb\n\n9) JeffW: Build Y2 Jeffw\n\n10) nycavri: Discover G1 Mvb Y2 Mvg\nCatastrophe Jeffw Y\n\n11) JeffW: Build B1 Jeffw\n\tnycavri: Anyone can trigger a catastrophe in any system...\n\n12) nycavri: Move G1 Mvg Jeffw\n\tJeffW: I must admit I don&#39;t understand the strategy of this game yet\n\tnycavri: Steepest learning curve of any game on SDG, imo.  I feel like I know what I&#39;m doing, but have still yet to win my first game here.  Says something about the design, however, that I keep coming back for more!\n\n13) JeffW: Trade B3 R3 Jeffw\n\n14) nycavri: Sacrifice G3 Nycavri\nBuild G1 Jeffw\nBuild G2 Jeffw\nBuild G2 Jeffw\nCatastrophe Jeffw G\n\tnycavri: Thanks for the game.  The early game strategy is to work towards getting bigger ships while preventing you opponent doing the same.  If you can shut them out of ships of one color entirely, so much the better.  Easier said than done however, as seen by my sub 1500 rating!  Feel free to challenge again, unrated if you prefer.\n\n\nHomeworlds Online (SDG# 8496)\nStarted: 2007.6.27, Ended: 2007.7.22\nParticipants: Pensator (S), hellboy79 (W), Maeglor (N), tesla (E)\nWinner: Pensator\n\n1) Maeglor: Homeworld Y1 B2 G3\n\n2) tesla: Homeworld Y2 B3 G3\n\n3) Pensator: Homeworld Y3 B2 G3\n\n4) hellboy79: Homeworld B1 G3 Y3\n\n5) Maeglor: Build G1 Maeglor\n\n6) tesla: Build G1 Tesla\n\n7) Pensator: Build G1 Pensator\n\n8) hellboy79: Build Y1 Hellboy79\n\n9) Maeglor: Build G1 Maeglor\n\n10) tesla: Trade G1 Y1 Tesla\n\n11) Pensator: Discover G1 Pensator Y1 Pensaluna\n\n12) hellboy79: Build Y1 Hellboy79\n\n13) Maeglor: Discover G1 Maeglor Y3 Maedhros\n\n14) tesla: Build Y2 Tesla\n\n15) Pensator: Build G1 Pensator\n\n16) hellboy79: Discover Y1 Hellboy79 Y2 Terminus\n\n17) Maeglor: Build G1 Maeglor\n\n18) tesla: Discover Y2 Tesla B1 Altes\n\n19) Pensator: Build G2 Pensaluna\n\n20) hellboy79: Trade Y3 G3 Hellboy79\n\n21) Maeglor: Build G2 Maedhros\n\n22) tesla: Build G2 Tesla\n\n23) Pensator: Discover G1 Pensaluna Y3 Clon\n\n24) hellboy79: Sacrifice G3 Hellboy79\nBuild Y2 Terminus\nBuild Y2 Hellboy79\nBuild Y3 Hellboy79\n\n25) Maeglor: Sacrifice G2 Maedhros\nBuild G2 Maedhros\nBuild G2 Maedhros\n\n26) tesla: Sacrifice G2 Tesla\nBuild G2 Tesla\nBuild Y3 Altes\n\n27) Pensator: Move G1 Clon Maeglor\nCatastrophe Maeglor G\n\n28) tesla: Sacrifice Y3 Altes\nMove G2 Tesla Altes\nMove Y2 Altes Terminus\nMove Y2 Terminus Hellboy79\nCatastrophe Hellboy79 Y\n\n29) Pensator: Trade G1 R1 Pensator\n\n30) tesla: Build G1 Altes\n\n31) Pensator: Move G2 Pensaluna Terminus\n\ttesla: me he unido al carro de los sacrificios\n\n32) tesla: Move Y1 Tesla Altes\n\tPensator: Lo siento :S\n\n33) Pensator: Build R1 Pensator\n\ttesla: est&aacute; el tema bastante sangriento, perdona hellboy\n\tMaeglor: Esto es que me he muerto, &iquest;no? :P\n\thellboy79: ...\n\thellboy79: si es que soy un torpe...\n\n34) tesla: Build G1 Tesla\n\n35) Pensator: Sacrifice R1 Pensator\nAttack Y2W Terminus\n\n36) tesla: Trade G2 R2 Altes\n\n37) Pensator: Move Y2 Terminus Maedhros\n\n38) tesla: Trade G3 R3 Tesla\n\ttesla: miedo me das\n\n39) Pensator: Build R1 Pensator\n\tPensator: Ummm.. Como no me termino de aclarar con las normas quiz&aacute;s me l&iacute;e, &iquest;No puedo atacar al Y2 de terminus (despu&eacute;s de sacrificar un rojo) porque ya no pertenece a nadie? Pensaba que si ains. Conrfimame si es as&iacute; o es que lo estoy haciendo mal\r\n\r\nEstaba escribiendo, Sacrifice r1 Pensator\r\nAttack Y2 Terminus\n\ttesla: s r1 Pensator\r\na y2w Terminus\r\nespero que as&iacute; te deje\n\n40) tesla: Move G1 Altes Maedhros\nCatastrophe Maedhros G\n\tPensator: Gracias por la ayuda con los comandos\n\n41) Pensator: Build G1 Pensator\n\ttesla: no hay de qu&eacute;, ya casi ni me acordaba\n\n42) tesla: Build R1 Tesla\n\n43) Pensator: Discover R1 Pensator Y1 Quarto\n\n44) tesla: Trade R2 G2 Altes\n\n45) Pensator: Discover R1 Pensator G1 Quorridor\n\ttesla: voy a hacer un undo de esos\n\n46) tesla: Trade R3 Y3 Tesla\n\n47) Pensator: Trade G3 Y3 Pensator\n\n48) tesla: Build Y1 Altes\n\n49) Pensator: Sacrifice R1 Quorridor\nAttack Y1W Terminus\n\n50) tesla: Discover G2 Altes Y3 Telas\n\n51) Pensator: Build G1 Terminus\n\n52) tesla: Build G1 Telas\n\n53) Pensator: Build G1 Pensator\n\n54) tesla: Move G2 Telas Quarto\n\tPensator: Yo tambi&eacute;n he provado el undo :)\r\n\n\n55) Pensator: Trade G1 R1 Pensator\n\n56) tesla: Move R1 Tesla Quarto\n\n57) Pensator: Attack R1E Quarto\n\n58) tesla: Trade G1 R1 Tesla\n\n59) Pensator: Move G2 Terminus Quarto\n\n60) tesla: Move G2 Quarto Telas\n\n61) Pensator: Move Y1 Terminus Altes\n\n62) tesla: Sacrifice R1 Tesla\nAttack Y1S Altes\n\n63) Pensator: Sacrifice Y2 Maedhros\nMove Y3 Pensator Quarto\nMove Y3 Quarto Tesla\n\n64) tesla: Trade Y3 R3 Tesla\n\ttesla: bien, cre&iacute; que al tener yo una pieza mayor no pod&iacute;as hacer eso... bueno es saberlo\n\n65) Pensator: Sacrifice R1 Quarto\nAttack R3E Tesla\n\n\ttesla: el cambio de color es por plantar cara :-))\r\nvolver&eacute;...\n\tPensator: Me ha encantado el juego, esta muy bien. Y la partida ha sido muy emocionante :) Gracias por organizar la partida :)\n\nHomeworlds Online (SDG# 8508)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.28, Ended: 2007.9.8\nParticipants: antihero (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R3 B1 G3\n\n2) antihero: Homeworld B1 Y2 G3\n\tantihero: hello again!\n\n3) mneme: Build G1 Mneme\n\n4) antihero: Build G1 Antihero\n\n5) mneme: Trade G1 B1 Mneme\n\n6) antihero: Build G1 Antihero\n\n7) mneme: Build B2 Mneme\n\n8) antihero: Discover G1 Antihero B3 Trader\n\tmneme: *waves*\r\n\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) antihero: Build G1 Trader\n\n11) mneme: Build G2 Mneme\n\n12) antihero: Build G2 Antihero\n\n13) mneme: Discover G2 Mneme B2 Gambit\n\n14) antihero: Trade G2 B2 Antihero\n\n15) mneme: Build G2 Mneme\n\n16) antihero: Trade G1 Y1 Trader\n\n17) mneme: Build Y1 Mneme\n\n18) antihero: Trade G1 R1 Antihero\n\n19) mneme: Discover B1 Mneme G2 Giant\n\n20) antihero: Move Y1 Trader Giant\n\n21) mneme: Sacrifice Y2 Mneme\nDiscover G2 Gambit R3 Nova\nMove B1 Giant Nova\n\n22) antihero: Build R1 Antihero\n\n23) mneme: Trade G2 R2 Mneme\n\n24) antihero: Discover B2 Antihero G3 Builder\n\n25) mneme: Build B2 Nova\n\n26) antihero: Build G1 Trader\n\n27) mneme: Build G1 Mneme\n\n28) antihero: Build G2 Antihero\n\n29) mneme: Move R2 Mneme Giant\n\n30) antihero: Move Y1 Giant Builder\n\n31) mneme: Trade B2 Y2 Nova\n\n32) antihero: Trade G1 Y1 Trader\n\n33) mneme: Sacrifice G3 Mneme\nBuild G1 Nova\nBuild G3 Mneme\nBuild B2 Nova\n\n34) antihero: Move R1 Antihero Builder\n\n35) mneme: Sacrifice Y2 Nova\nMove G2 Nova Antihero\nMove G1 Nova Antihero\nCatastrophe Antihero G\n\n36) antihero: Move B2 Builder Antihero\n\n37) mneme: Build Y2 Mneme\n\n38) antihero: Trade B2 G2 Antihero\n\tantihero: Well that was a pretty large oversight on my part. Bummer. :)\n\n39) mneme: Sacrifice Y1 Mneme\nMove R2 Giant Trader\n\tmneme: Yep.  Sorry about that; I certainly didn&#39;t expect for you to miss the check.\n\n\tantihero: good game! Next time I won&#39;t ignore the obvious. :)\n\tmneme: I hope so -- that was too easy.\r\n\n\nHomeworlds Online (SDG# 8513)\nVariants: &quot;Hard time&quot;\nStarted: 2007.6.28, Ended: 2007.7.31\nParticipants: clockwise (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R1 G3\n\tclockwise: Hello again\n\n2) clockwise: Homeworld R3 B1 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tclockwise: Those zpips still up for the winning?\n\tTwoShort: I&#39;m afraid not; Mike Yarrum finally took me down.  You remind me I should make an official announcement though...\n\n4) clockwise: Build G1 Clockwise\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) clockwise: Trade G1 B1 Clockwise\n\n7) TwoShort: Build B2 Twoshort\n\n8) clockwise: Build B2 Clockwise\n\n9) TwoShort: Trade B2 Y2 Twoshort\n\n10) clockwise: Trade B1 Y1 Clockwise\n\n11) TwoShort: Build Y1 Twoshort\n\n12) clockwise: Build B1 Clockwise\n\n13) TwoShort: Build B2 Twoshort\n\n14) clockwise: Discover B1 Clockwise G2 Avocado\n\n15) TwoShort: Trade B2 R2 Twoshort\n\n16) clockwise: Trade B1 R1 Avocado\n\tclockwise: Sorry for my lack of internet presence recently.  I&#39;ve been a little preoccupied with other things.\r\n\n\n17) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 8497)\nStarted: 2007.6.29, Ended: 2007.7.31\nParticipants: clockwise (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) clockwise: Homeworld Y2 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) clockwise: Build G1 Clockwise\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) clockwise: Trade G1 R1 Clockwise\n\n7) zoltar: Build Y1 Zoltar\n\n8) clockwise: Build R1 Clockwise\n\n9) zoltar: Build Y1 Zoltar\n\n10) clockwise: Build R2 Clockwise\n\n11) zoltar: Discover Y1 Zoltar G2 Gabbagabbahey\n\n12) clockwise: Trade R2 Y2 Clockwise\n\tclockwise: Well... this could certainly go very badly.\n\n13) zoltar: Discover Y1 Zoltar B2 Bloohoohoo\n\n14) clockwise: Discover Y2 Clockwise G3 Peppercorn\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bloohoohoo\nBuild Y3 Gabbagabbahey\nBuild Y3 Zoltar\n\n16) clockwise: Move Y2 Peppercorn Gabbagabbahey\n\n17) zoltar: Trade Y2 G2 Bloohoohoo\n\n18) clockwise: Build Y2 Gabbagabbahey\nCatastrophe Gabbagabbahey Y\n\n19) zoltar: Build Y1 Bloohoohoo\n\n20) clockwise: Build R2 Clockwise\n\n21) zoltar: Build Y2 Bloohoohoo\n\tclockwise: I am not in the slightest pleased about this...\n\n22) clockwise: Discover R2 Clockwise Y3 Hyperion\n\n23) zoltar: Trade Y2 R2 Bloohoohoo\n\n\tclockwise: Sorry, I just haven&#39;t had time for sdg recently.  Perhaps we can play again when my schedule opens up.\n\nHomeworlds Online (SDG# 8481)\nStarted: 2007.6.29, Ended: 2007.7.9\nParticipants: dayleh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) dayleh: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) dayleh: Build G1 Dayleh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dayleh: Build G1 Dayleh\n\n7) zoltar: Build Y1 Zoltar\n\n8) dayleh: Trade G1 Y1 Dayleh\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) dayleh: Build G1 Dayleh\n\n11) zoltar: Build R1 Zoltar\n\n12) dayleh: Discover G1 Dayleh Y3 George\n\n13) zoltar: Discover R1 Zoltar G2 Gertrude\n\n14) dayleh: Build G1 George\n\n15) zoltar: Sacrifice Y1 Zoltar\nMove R1 Gertrude George\n\n16) dayleh: Build G2 George\n\n17) zoltar: Attack G1 George\n\n18) dayleh: Discover G2 George B2 B2\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild R2 George\nBuild R2 George\nBuild R3 Zoltar\n\n20) dayleh: Trade G1 B1 Dayleh\n\n21) zoltar: Move R2 George B2\n\n22) dayleh: Build Y1 Dayleh\n\n23) zoltar: Attack G2 B2\n\tdayleh: How the hell do I keep getting into these positions .. {doh}\n\n24) dayleh: Discover Y1 Dayleh R3 R3\n\n25) zoltar: Build R3 B2\n\tzoltar: Beats me!\n\tdayleh: lol\n\n26) dayleh: Discover G1 George Y1 Y1\n\n27) zoltar: Trade R3 Y3 B2\n\n28) dayleh: Build Y2 Dayleh\n\n29) zoltar: Trade R3 Y3 Zoltar\n\n30) dayleh: Build B1 Dayleh\n\n31) zoltar: Build R3 B2\n\n32) dayleh: Move B1 Dayleh R3\n\n33) zoltar: B R3 George\n\n34) dayleh: Sacrifice G3 Dayleh\nBuild B2 R3\nBuild B2 R3\nBuild B3 Dayleh\n\n35) zoltar: Move R3 B2 R3\n\tzoltar: And the Red Fleet is mine! All mine!\n\n\tdayleh: Good Game\n\nHomeworlds Online (SDG# 8468)\nStarted: 2007.6.29, Ended: 2007.7.4\nParticipants: zoltar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build B1 Zoltar\n\n5) ts52: Build G1 Ts52\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) ts52: Discover G1 Ts52 Y3 Sol\n\n8) zoltar: Build B2 Zoltar\n\n9) ts52: Build G1 Sol\n\n10) zoltar: Trade B2 G2 Zoltar\n\n11) ts52: Discover G1 Ts52 Y3 Wikket\n\n12) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo\n\n13) ts52: Build G2 Ts52\n\n14) zoltar: Trade Y3 G3 Zoltar\n\n15) ts52: Discover G1 Sol Y2 Krikket\n\tzoltar: I think my position is hopeless.\n\n16) zoltar: Build G2 Yabbadabbadoo\n\tts52: Don&#39;t worry, I&#39;m sure I can screw something up.\n\n17) ts52: Move G1 Krikket Zoltar\n\n18) zoltar: Move G2 Yabbadabbadoo Wikket\n\n19) ts52: Sacrifice G1 Wikket\nBuild G1 Zoltar\nCatastrophe Zoltar Green\n\tzoltar: That doesn&#39;t work either.\n\n\tzoltar: Yup. GG. I was lost from the start.\n\nHomeworlds Online (SDG# 8518)\nStarted: 2007.7.4, Ended: 2007.7.9\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Build G1 Ts52\n\n7) zoltar: Build Y1 Zoltar\n\n8) ts52: Trade G1 Y1 Ts52\n\n9) zoltar: Build Y2 Zoltar\n\n10) ts52: Discover G1 Ts52 Y3 Sol\n\n11) zoltar: Discover Y1 Zoltar G2 Greenarrow\n\n12) ts52: Discover Y1 Ts52 G3 Kermit\n\n13) zoltar: Discover Y2 Zoltar G2 Greenlantern\n\n14) ts52: Build G1 Ts52\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenlantern\nBuild Y3 Greenarrow\nBuild Y3 Zoltar\n\n16) ts52: Sacrifice G3 Ts52\nBuild G1 Sol\nBuild G2 Ts52\nBuild G3 Ts52\n\n17) zoltar: Trade Y3 G3 Zoltar\n\n18) ts52: Build Y3 Kermit\n\n19) zoltar: Sacrifice Y3 Greenarrow\nMove G3 Zoltar Greenlantern\nMove G3 Greenlantern Sol\nMove G3 Sol Ts52\nCatastrophe Ts52 G\n\n\tzoltar: Hey wait a second -- you can&#39;t do that -- I&#39;ve got the &quot;bluebird&quot; checkmate!\n\nHomeworlds Online (SDG# 8579)\nStarted: 2007.7.5, Ended: 2007.8.1\nParticipants: ts52 (S), discord35 (N)\nWinner: ts52\n\n1) discord35: Homeworld G2 B1 Y3\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Have a great game!\n\n3) discord35: Build Y1 Discord35\n\n4) ts52: Build G1 Ts52\n\tdiscord35: Thanks! This should be fun!\n\n5) discord35: Trade Y1 G1 Discord35\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) discord35: Discover G1 Discord35 Y3 Y3-1\n\n8) ts52: Build G1 Ts52\n\n9) discord35: Build Y1 Discord35\n\n10) ts52: Discover G1 Ts52 B1 Berry\n\n11) discord35: Trade Y1 R1 Discord35\n\n12) ts52: Trade Y1 R1 Ts52\n\n13) discord35: Build Y1 Discord35\n\n14) ts52: Build G1 Berry\n\n15) discord35: Build G2 Y3-1\n\n16) ts52: Trade G1 Y1 Berry\n\n17) discord35: Discover G2 Y3-1 Y2 Y2-1\n\n18) ts52: Build G1 Ts52\n\n19) discord35: Move G2 Y2-1 Berry\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Berry\nBuild G3 Berry\nBuild G3 Ts52\n\n21) discord35: Build G3 Y3-1\nCatastrophe Berry G\n\n22) ts52: Move G1 Ts52 Berry\n\n23) discord35: Move G3 Y3-1 Berry\n\n24) ts52: Build G1 Berry\n\n25) discord35: Trade G3 R3 Berry\n\n26) ts52: Build G2 Ts52\n\n27) discord35: Attack Y1S Berry\n\n28) ts52: Discover G2 Ts52 B1 Grape\n\n29) discord35: Attack G1S Berry\n\n30) ts52: Sacrifice G2 Grape\nBuild G2 Berry\nBuild G2 Berry\nCatastrophe Berry Green\n\n31) discord35: Build G1 Y3-1\n\n32) ts52: Build G1 Ts52\n\n33) discord35: Move G1 Y3-1 Berry\n\n34) ts52: Trade G1 Y1 Ts52\n\n35) discord35: Build Y2 Berry\n\n36) ts52: Discover Y1 Ts52 B1 Grape\n\n37) discord35: Move Y2 Berry Ts52\n\n38) ts52: Attack Y2N Ts52\n\n39) discord35: Build Y2 Berry\n\n40) ts52: Move Y2 Ts52 Grape\n\n41) discord35: Discover Y1 Berry Y2 Y2-1\n\n42) ts52: Trade Y2 R2 Grape\n\n43) discord35: Build Y2 Berry\n\n44) ts52: Build G1 Ts52\n\n45) discord35: Move Y1 Discord35 Y3-1\n\n46) ts52: Move G1 Ts52 Grape\n\n47) discord35: Discover Y1 Y3-1 R1 R1-1\n\n48) ts52: Build R2 Ts52\n\n49) discord35: Sacrifice G1 Y3-1\nBuild Y3 Discord35\n\n50) ts52: Move R2 Ts52 R1-1\n\n51) discord35: Sacrifice Y3 Discord35\nMove Y1 R1-1 Ts52\nMove Y2 Berry Ts52\nMove Y2 Berry Ts52\nCatastrophe Ts52 Y\n\n52) ts52: Build R2 Grape\n\n53) discord35: Build R3 Discord35\n\n54) ts52: Build R3 Ts52\n\n55) discord35: Move Y1 Y2-1 Berry\n\n56) ts52: Build G1 Ts52\n\n57) discord35: Discover Y3 Discord35 G3 G3-1\n\n58) ts52: Discover R2 Grape Y3 Sol\n\n59) discord35: Move Y3 G3-1 Grape\n\n60) ts52: Move R2 Sol Discord35\n\n61) discord35: Attack R2S Discord35\n\n62) ts52: Discover R2 Grape Y3 Sol\n\n63) discord35: Sacrifice R2 Discord35\nAttack Y1S Grape\nAttack G1S Grape\n\n64) ts52: Trade R3 Y3 Ts52\n\n65) discord35: Trade R1 Y1 Discord35\n\n66) ts52: Move G3 Ts52 Sol\n\n67) discord35: Build Y2 Berry\n\n68) ts52: Build R1 Ts52\n\n69) discord35: Sacrifice Y3 Grape\nMove Y1 Grape Ts52\nMove Y1 Berry Ts52\nMove Y2 Berry Ts52\nCatastrophe Ts52 Y\n\n70) ts52: Move G3 Sol Ts52\n\n71) discord35: Build G2 Berry\n\n72) ts52: Trade R1 Y1 Ts52\n\n73) discord35: Trade G2 Y2 Berry\n\n74) ts52: Move G1 Ts52 R1-1\n\n75) discord35: Build G2 Grape\n\n76) ts52: Build Y1 Ts52\n\n77) discord35: Move R3 Berry Sol\n\n78) ts52: Move R2 Sol Grape\n\n79) discord35: Move R3 Sol Grape\n\n80) ts52: Attack G2N Grape\n\n81) discord35: Attack R2S Grape\n\n82) ts52: Sacrifice G2 Grape\nBuild G2 R1-1\nPass\n\n83) discord35: Trade R2 Y2 Grape\n\n84) ts52: Move Y1 Ts52 R1-1\n\n85) discord35: Discover R3 Grape Y3 Y3-1\n\n86) ts52: Discover R2 R1-1 Y3 Sol\n\n87) discord35: Build R1 Discord35\n\n88) ts52: Build R2 Ts52\n\n89) discord35: Trade R3 G3 Discord35\n\n90) ts52: Sacrifice G2 R1-1\nBuild Y2 Ts52\nBuild Y3 R1-1\n\n91) discord35: Sacrifice G1 Grape\nBuild R2 Y3-1\n\n92) ts52: Trade R2 B2 Ts52\n\n93) discord35: Move R2 Y3-1 Grape\n\n94) ts52: Move B2 Ts52 R1-1\n\n95) discord35: Sacrifice G3 Discord35\nBuild R2 Y3-1\nBuild R3 Grape\nBuild R3 Discord35\n\n96) ts52: Build G1 Ts52\n\n97) discord35: Move R3 Grape Sol\n\n98) ts52: Discover R2 Sol B2 Blueish\n\n99) discord35: Move R3 Y3-1 Blueish\n\n100) ts52: Build B3 R1-1\n\n101) discord35: Attack R2S Blueish\n\n102) ts52: Move B3 R1-1 Y3-1\n\n103) discord35: Move R2 Y3-1 Discord35\n\n104) ts52: Build G2 R1-1\n\n105) discord35: Build G2 Berry\n\n106) ts52: Move G1 Ts52 Y3-1\n\n107) discord35: Move G1 Berry Sol\n\n108) ts52: Build G3 Y3-1\n\n109) discord35: Sacrifice Y2 Grape\nMove R3 Sol R1-1\nMove R3 Blueish R1-1\n\n110) ts52: Attack R3N R1-1\n\n111) discord35: Sacrifice R2 Grape\nAttack R3S R1-1\nAttack Y3S R1-1\n\n112) ts52: Trade B2 R2 R1-1\nCatastrophe R1-1 Red\n\n113) discord35: Build G1 Berry\n\n114) ts52: Sacrifice Y2 Ts52\nMove R1 Ts52 Sol\nMove R1 Sol Discord35\nCatastrophe Discord35 Red\n\n115) discord35: Move Y2 Berry Y3-1\n\n116) ts52: Move B3 Y3-1 Discord35\n\n117) discord35: Sacrifice G2 Berry\nBuild Y1 Y3-1\nBuild Y2 Y3-1\nCatastrophe Y3-1 Y\n\n118) ts52: Trade B3 R3 Discord35\n\n\nHomeworlds Online (SDG# 8610)\nStarted: 2007.7.9, Ended: 2007.7.24\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B1 R3 G3 Zoltar\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build G1 Ts52\n\n8) zoltar: Build G1 Zoltar\n\n9) ts52: Trade G1 B1 Ts52\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) ts52: Trade B1 R1 Ts52\n\n12) zoltar: Build R2 Zoltar\n\n13) ts52: Discover R1 Ts52 G3 Kermit\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) ts52: Build G1 Ts52\n\n16) zoltar: Build G1 Zoltar\n\n17) ts52: Discover G1 Ts52 Y3 Krikket\n\n18) zoltar: Discover G1 Zoltar B2 Blueberry\n\n19) ts52: Build G1 Ts52\n\n20) zoltar: Build G2 Zoltar\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Krikket\nBuild G2 Ts52\nBuild G3 Ts52\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n23) ts52: Discover G2 Ts52 Y3 Wikket\n\n24) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Zoltar Blueberry\nMove R2 Zoltar Blueberry\n\n25) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Ts52\nBuild Y2 Ts52\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Blueberry\n\n27) ts52: Move Y2 Ts52 Kermit\n\n28) zoltar: Move Y3 Blueberry Kermit\n\n29) ts52: Move R1 Kermit Ts52\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Zoltar\nBuild R1 Blueberry\n\n31) ts52: Discover Y2 Ts52 B3 Gameyed\n\n32) zoltar: Move R1 Blueberry Kermit\n\n33) ts52: Sacrifice R1 Ts52\nAttack R1S Kermit\n\n34) zoltar: Sacrifice R2 Blueberry\nAttack R1 Kermit\nAttack Y2 Kermit\n\n35) ts52: Move G1 Ts52 Gameyed\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Kermit\nBuild R2 Kermit\n\n37) ts52: Sacrifice G2 Wikket\nBuild G2 Ts52\nBuild Y3 Gameyed\n\n38) zoltar: Sacrifice Y2 Zoltar\nMove Y2 Kermit Blueberry\nMove Y2 Blueberry Gameyed\n\n39) ts52: Trade Y3 R3 Gameyed\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Zoltar\n\n41) ts52: Attack Y2S Gameyed\n\n42) zoltar: Move R1 Kermit Blueberry\n\n43) ts52: Trade Y2 B2 Gameyed\n\n44) zoltar: Discover B1 Zoltar Y2 Yukkieposition\n\n45) ts52: Move B2 Gameyed Yukkieposition\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Blueberry\nBuild R2 Blueberry\n\n47) ts52: Move R3 Gameyed Blueberry\nCatastrophe Blueberry Red\n\n48) zoltar: Move R2 Kermit Yukkieposition\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Yukkieposition\nBuild B3 Yukkieposition\nCatastrophe Yukkieposition Blue\n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Kermit\nBuild R2 Yukkieposition\n\n51) ts52: Move G2 Ts52 Gameyed\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Kermit\nBuild R3 Yukkieposition\n\n53) ts52: Discover G1 Gameyed B2 Lasthope\n\n54) zoltar: Move R3 Yukkieposition Krikket\n\n55) ts52: Move G2 Krikket Lasthope\n\n56) zoltar: Sacrifice G2 Zoltar\nBuild G2 Blueberry\nBuild R3 Krikket\n\n57) ts52: Sacrifice G1 Krikket\nBuild G1 Gameyed\n\n58) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Kermit Ts52\nMove R3 Krikket Ts52\n\n59) ts52: Attack R3S Ts52\n\tzoltar: Zee Death Star ease now fully functional! Attack!!\n\tzoltar: My extra 7 red sheeps and 2 giant yellow sheeps should give me zee edge!\n\n60) zoltar: Sacrifice R3 Krikket\nAttack Y1 Ts52\nAttack R3 Ts52\nAttack G3 Ts52\n\n\tzoltar: Yup. Thanks for the game, Earthling!\n\nHomeworlds Online (SDG# 8646)\nVariants: &quot;Unrated&quot;\nStarted: 2007.7.10, Ended: 2007.11.13\nParticipants: cobaltstarfire (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R2 B3 G3\n\n2) cobaltstarfire: Homeworld B2 Y1 G3\n\n3) Jesse: Build G1 Jesse\n\n4) cobaltstarfire: Build G1 Cobaltstarfire\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) cobaltstarfire: Discover G1 Cobaltstarfire B3 Cactus\n\n7) Jesse: Build G1 Jesse\n\n8) cobaltstarfire: Trade G3 R3 Cobaltstarfire\n\n9) Jesse: Discover G1 Jesse B1 Muffin\n\n10) cobaltstarfire: Trade R3 G3 Cobaltstarfire\n\n11) Jesse: Build G1 Jesse\n\n12) cobaltstarfire: Build G2 Cactus\n\n13) Jesse: Build G2 Muffin\n\n14) cobaltstarfire: Trade G1 Y1 Cactus\n\n15) Jesse: Trade G2 Y2 Muffin\n\n16) cobaltstarfire: Build G1 Cobaltstarfire\n\n17) Jesse: Build G2 Muffin\n\n18) cobaltstarfire: Build Y2 Cactus\n\n19) Jesse: Trade G2 R2 Muffin\n\n20) cobaltstarfire: Trade Y1 R1 Cactus\n\n21) Jesse: Build Y1 Muffin\n\n22) cobaltstarfire: Trade G1 R1 Cobaltstarfire\n\n23) Jesse: Discover Y1 Muffin G3 Starboard\n\n24) cobaltstarfire: Build G1 Cactus\n\n25) Jesse: Build Y2 Starboard\n\n26) cobaltstarfire: Build Y3 Cactus\n\n27) Jesse: Build Y3 Muffin\n\n28) cobaltstarfire: Sacrifice Y2 Cactus\nDiscover Y3 Cactus R1 Balls\nMove G1 Cactus Balls\n\n29) Jesse: Discover Y2 Muffin B3 Reddwarf\n\n30) cobaltstarfire: Sacrifice G2 Cactus\nBuild R2 Cactus\nBuild Y2 Balls\n\n31) Jesse: Build Y3 Jesse\n\n32) cobaltstarfire: Move G1 Balls Cactus\n\n33) Jesse: Build R3 Muffin\n\n34) cobaltstarfire: Build G2 Cactus\n\n35) Jesse: Move R3 Muffin Reddwarf\n\n36) cobaltstarfire: Move Y2 Balls Cactus\n\n37) Jesse: Build G2 Muffin\n\n\tcobaltstarfire: I think this game is just too hard for me to play and really have it be worth your time :|\n\nHomeworlds Online (SDG# 8400)\nStarted: 2007.7.16, Ended: 2007.9.18\nParticipants: MikeYarrum (S), nycavri (N)\nWinner: MikeYarrum\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: Howdy!\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\tMikeYarrum: Hello again. =D\n\n3) nycavri: Build G1 Nycavri\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) nycavri: Build G1 Nycavri\n\n6) MikeYarrum: Build G2 Mikeyarrum\n\n7) nycavri: Discover G1 Nycavri Y3 Fr\n\n8) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n9) nycavri: Build G1 Nycavri\n\n10) MikeYarrum: Discover G2 Mikeyarrum B1 Boynamo\n\n11) nycavri: Discover G1 Nycavri Y3 Hl\n\n12) MikeYarrum: Build G2 Mikeyarrum\n\n13) nycavri: Sacrifice G3 Nycavri\nBuild G2 Fr\nBuild G3 Hl\nBuild G3 Nycavri\n\n14) MikeYarrum: Build Y1 Mikeyarrum\n\n15) nycavri: Discover G3 Hl Y1 Iw\n\n16) MikeYarrum: Build Y2 Mikeyarrum\n\n17) nycavri: Move G1 Hl Iw\n\n18) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n19) nycavri: Trade G1 B1 Nycavri\n\n20) MikeYarrum: Move R1 Mikeyarrum Boynamo\n\n21) nycavri: Trade B1 R1 Nycavri\n\n22) MikeYarrum: Move Y2 Mikeyarrum Boynamo\n\n23) nycavri: Build G1 Nycavri\n\n24) MikeYarrum: Build Y1 Mikeyarrum\n\n25) nycavri: Trade G1 B1 Nycavri\n\n26) MikeYarrum: Build Y2 Boynamo\n\n27) nycavri: Sacrifice B1 Nycavri\nTrade G3 Y3 Iw\n\n28) MikeYarrum: Discover Y2 Boynamo G3 Perapera\n\n29) nycavri: Build G1 Iw\n\n30) MikeYarrum: Build Y3 Perapera\n\n31) nycavri: Sacrifice Y3 Iw\nMove G1 Iw Mikeyarrum\nMove G1 Iw Mikeyarrum\nPass\nCatastrophe Mikeyarrum G\n\n32) MikeYarrum: Build Y1 Boynamo\n\n33) nycavri: Build G1 Nycavri\n\tnycavri: b g1 nycavri\n\n34) MikeYarrum: Build Y3 Perapera\n\n35) nycavri: Trade G1 B1 Nycavri\n\n36) MikeYarrum: Build G1 Boynamo\n\n37) nycavri: Build B2 Nycavri\n\n38) MikeYarrum: Trade G2 B2 Boynamo\n\n39) nycavri: Move B1 Nycavri Fr\n\n40) MikeYarrum: Trade B2 R2 Boynamo\n\n41) nycavri: Trade G1 R1 Fr\n\n42) MikeYarrum: Discover R2 Boynamo G3 Chihiro\n\n43) nycavri: Build R2 Fr\n\n44) MikeYarrum: Build R3 Chihiro\n\n45) nycavri: Build R3 Nycavri\n\n46) MikeYarrum: Build R3 Boynamo\n\n47) nycavri: Move R2 Fr Boynamo\n\n48) MikeYarrum: Sacrifice Y2 Perapera\nMove R3 Boynamo Fr\nMove R3 Fr Nycavri\n\tnycavri: &quot;Chaaaaaaaaaaaaaarge!&quot;\n\n49) nycavri: Attack R3 Nycavri\n\n50) MikeYarrum: Attack R2 Boynamo\n\n51) nycavri: Move R3 Nycavri Perapera\n\n52) MikeYarrum: Sacrifice R1 Boynamo\nAttack R3 Perapera\n\n53) nycavri: Trade G2 Y2 Fr\n\n54) MikeYarrum: Sacrifice Y3 Perapera\nMove R3 Chihiro Boynamo\nMove R3 Boynamo Fr\nMove Y2 Boynamo Mikeyarrum\n\n55) nycavri: Discover Y2 Fr R1 Iw\n\n56) MikeYarrum: Trade Y2 G2 Mikeyarrum\n\n57) nycavri: Sacrifice G3 Nycavri\nBuild Y2 Iw\nBuild Y3 Iw\nBuild B2 Nycavri\n\n58) MikeYarrum: Move Y1 Mikeyarrum Iw\nCatastrophe Iw Yellow\n\n59) nycavri: Trade B2 G2 Nycavri\n\n60) MikeYarrum: Attack B1 Fr\n\n61) nycavri: Discover B2 Nycavri Y3 Tl\n\n62) MikeYarrum: Build G1 Boynamo\n\n63) nycavri: Build G1 Nycavri\n\n64) MikeYarrum: Sacrifice G1 Boynamo\nBuild B2 Fr\n\n65) nycavri: Discover B2 Tl Y1 Bk\n\n66) MikeYarrum: Move R3 Fr Bk\n\n67) nycavri: Attack B1 Fr\n\n68) MikeYarrum: Attack B2 Bk\n\n69) nycavri: Sacrifice G1 Nycavri\nBuild B2 Fr\n\n70) MikeYarrum: Discover B2 Fr G2 Kimura\n\n71) nycavri: Discover B2 Fr Y2 Ad\n\n72) MikeYarrum: Build B3 Kimura\n\n73) nycavri: Sacrifice G2 Nycavri\nBuild B3 Ad\nBuild R1 Fr\n\n\tMikeYarrum: You may want to take that move back. I can win if I sac my 3-point yellow and move a few reds into your Homeworld\n\tnycavri: No, &#39;sok.  You got me.  I have real trouble with this game online when it gets bigger than a couple of systems.  I think I&#39;ll give it a rest for a while, especially now I have some face to face opponents for Homeworlds . . .  Well played.\n\tMikeYarrum: I knew you were experienced enough to probably catch that, but I thought I&#39;d let you know anyway. Thanks for the game!\n\nHomeworlds Online (SDG# 8733)\nVariants: &quot;Hard time&quot;\nStarted: 2007.7.21, Ended: 2007.9.12\nParticipants: nycavri (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld G1 B2 Y3\n\n2) nycavri: Homeworld Y2 B3 G3\n\tnycavri: Hi, there.  TaGG.\n\n3) dsheldon: Build Y1 Dsheldon\n\n4) nycavri: Build G1 Nycavri\n\tdsheldon: fancy seeing you here again ;)\n\n5) dsheldon: Trade Y3 G3 Dsheldon\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) dsheldon: Build G1 Dsheldon\n\n8) nycavri: Build G1 Nycavri\n\n9) dsheldon: Discover G1 Dsheldon B3 Ocean\n\n10) nycavri: Discover G1 Nycavri Y1 Fr\n\n11) dsheldon: Build G2 Dsheldon\n\n12) nycavri: Build Y2 Nycavri\n\n13) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Ocean\nBuild Y2 Dsheldon\nBuild Y3 Dsheldon\n\n14) nycavri: Discover Y2 Nycavri R1 Hl\n\n15) dsheldon: Trade Y2 R2 Dsheldon\n\n16) nycavri: Build G2 Fr\n\n17) dsheldon: Move Y1 Dsheldon Ocean\n\n18) nycavri: Trade Y1 B1 Nycavri\n\n19) dsheldon: Discover G1 Ocean B1 Pond\n\n20) nycavri: Sacrifice G1 Fr\nBuild Y1 Hl\n\n21) dsheldon: Sacrifice G2 Ocean\nBuild Y2 Dsheldon\nBuild Y3 Ocean\n\n22) nycavri: Build G1 Nycavri\n\n23) dsheldon: Trade Y3 G3 Ocean\n\n24) nycavri: Trade G1 R1 Nycavri\n\n25) dsheldon: Build Y3 Ocean\n\n26) nycavri: Discover G2 Fr Y3 Iw\n\n27) dsheldon: Move G3 Ocean Hl\n\n28) nycavri: Sacrifice Y2 Hl\nDiscover Y1 Hl G3 Tl\nMove R1 Nycavri Pond\n\n29) dsheldon: Move Y3 Ocean Pond\n\n30) nycavri: Trade B1 Y1 Nycavri\n\n31) dsheldon: Sacrifice G1 Pond\nBuild Y2 Ocean\n\n32) nycavri: Build G1 Iw\n\n33) dsheldon: Move G2 Dsheldon Tl\n\n34) nycavri: Sacrifice Y1 Tl\nMove R1 Pond Nycavri\n\n35) dsheldon: Discover Y1 Ocean G1 Eden\n\n36) nycavri: Move Y1 Nycavri Eden\n\n37) dsheldon: Move Y3 Pond Iw\n\n38) nycavri: Build Y1 Eden\n\n39) dsheldon: Sacrifice R2 Dsheldon\nAttack G2 Iw\nAttack Y1 Eden\n\n40) nycavri: Build G2 Iw\n\n41) dsheldon: Trade Y3 R3 Dsheldon\n\n42) nycavri: Build Y3 Eden\nCatastrophe Eden Y\n\n43) dsheldon: Build G1 Iw\nCatastrophe Iw G\n\n44) nycavri: Build G1 Nycavri\n\n45) dsheldon: Sacrifice Y3 Iw\nMove G2 Tl Hl\nMove G2 Hl Nycavri\nMove G3 Hl Nycavri\nCatastrophe Nycavri G\n\n46) nycavri: Trade R1 G1 Nycavri\n\tdsheldon: I think that might seal my victory.  You&#39;ll have to trade to green, I&#39;ll take a step forward from Ocean.  You&#39;ll have to build another ship.  I&#39;ll move in to your homeworld.  No matter what you do next I&#39;ll capture your entire fleet.\n\tnycavri: I remain terrible at this game.  I do seem to do better in person, rather than the &quot;stop-start&quot; nature of concentration online.  Happy to play it out as ever.\n\n47) dsheldon: Discover Y2 Ocean R1 Reaper\n\n48) nycavri: Build G1 Nycavri\n\tdsheldon: That wasn&#39;t terrible at all!  It&#39;s got to end sometime.  That&#39;s the real problem with these games, eventually someone has to win ;)\r\n\r\nFrom what I remember of our last encounter, you&#39;ve definitely improved.  This was not easy.\n\tnycavri: As I&#39;ve commented before, there&#39;s an unforgiving learning curve.  I may have &quot;improved&quot;, but I have still lost 15 out of 16 games here . . . and the one was against another newbie who began by building one color in his Homeworld his first 3 turns and allowing me to blow up one of his stars!\r\n\r\nI don&#39;t mind losing - it&#39;s losing this consistently!\n\n49) dsheldon: Move Y2 Reaper Nycavri\n\n\tdsheldon: Hmm, I wish I had any kind of useful advice.  I&#39;ll see if I can look over the log of this game and try to point out any glaring mistakes once it&#39;s over.\r\n\r\nHere&#39;s a thought, take a look at the log yourself and tell me if there are any of my moves that really surprised you, and we&#39;ll see what you did to get to that situation.\n\tnycavri: Thanks, I appreciate the offer of help - I&#39;ll see about looking back over this the next few days.\n\tnycavri: Well played, by the way!\n\tdsheldon: My pleasure.  It&#39;s an especially satisfying victory because you were quite a worthy opponent.\n\tnycavri: *blush*\n\nHomeworlds Online (SDG# 8688)\nStarted: 2007.7.22, Ended: 2007.8.24\nParticipants: scottobear (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tMikeYarrum: Hello, and happy starship captain-ing!\n\n2) scottobear: Homeworld G3 B2 R3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) scottobear: Build R1 Scottobear\n\tscottobear: Thank you! this is my very first game of homeworlds!\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) scottobear: Trade R1 Y1 Scottobear\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) scottobear: Build R1 Scottobear\n\n9) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n10) scottobear: Trade R1 B1 Scottobear\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) scottobear: Build B1 Scottobear\n\n13) MikeYarrum: Discover Y1 Mikeyarrum G1 Chiyo\n\n14) scottobear: Trade R3 G3 Scottobear\n\n15) MikeYarrum: Build R1 Mikeyarrum\n\n16) scottobear: Move B1 Scottobear Chiyo\n\n17) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack B1 Chiyo\n\n18) scottobear: Build G1 Scottobear\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) scottobear: Move Y1 Scottobear Chiyo\n\n21) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack Y1 Chiyo\n\tMikeYarrum: You should take that move back, otherwise I can catastrophe your system.\n\tscottobear: thank you!\r\n\n\n22) scottobear: Trade G1 R1 Scottobear\n\n23) MikeYarrum: Build Y1 Chiyo\n\n24) scottobear: Trade G3 Y3 Scottobear\n\n25) MikeYarrum: Trade Y1 R1 Chiyo\n\tscottobear: I need to develop some strategy here! :D\n\n26) scottobear: Trade Y3 R3 Scottobear\n\tMikeYarrum: no worries - it takes time and many, many lost games.\n\n27) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n28) scottobear: Trade B1 Y1 Scottobear\n\n29) MikeYarrum: Build R1 Chiyo\n\n30) scottobear: Move R1 Scottobear Chiyo\n\n31) MikeYarrum: Attack R1 Chiyo\n\n32) scottobear: Build Y2 Scottobear\n\n33) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R1 Chiyo Scottobear\nMove R1 Chiyo Scottobear\n\tscottobear: nice! I&#39;m glad you&#39;re showing me how this works. :D\n\n34) scottobear: Attack R1 Scottobear\n\tMikeYarrum: No problem.\n\n35) MikeYarrum: Build R2 Scottobear\n\n36) scottobear: Attack R2 Scottobear\n\tscottobear: uhoh... am I getting set up for a bluebird?\n\tMikeYarrum: I don&#39;t think it&#39;s technically a bluebird, because you&#39;d still be able to diversify your homeworld ships before I launched another attack... but it will still be difficult to recover once I take out your only 3-pointer.\n\n37) MikeYarrum: Discover Y1 Chiyo G2 Sakaki\nCatastrophe Scottobear Red\n\n38) scottobear: Move Y1 Scottobear Chiyo\n\n39) MikeYarrum: Attack Y1 Chiyo\n\n40) scottobear: Build Y2 Scottobear\n\tMikeYarrum: You might want to take that move back. If I move my y1 from chiyo to your homeworld, I can win with a catastrophe.\n\tscottobear: yikes... thank you\r\n\n\n41) MikeYarrum: Build Y2 Sakaki\n\n42) scottobear: Trade Y2 R2 Scottobear\n\n43) MikeYarrum: Build R1 Chiyo\n\n44) scottobear: Move R2 Scottobear Chiyo\n\tblackhellkat: trade y2 r2 scottobear\n\n45) MikeYarrum: Sacrifice Y2 Sakaki\nMove Y1 Chiyo Scottobear\nMove Y1 Chiyo Scottobear\n\tMikeYarrum: Rawr, you do have a decent second-in-command, but it&#39;ll take more than that to stop me! ;D\n\n46) scottobear: Attack R1 Chiyo\n\tscottobear: haha! Nobody can call my number one a number 2!\n\n47) MikeYarrum: Build Y2 Scottobear\nCatastrophe Scottobear Yellow\n\n\tscottobear: arrrrgh!\r\n\n\tMikeYarrum: You would have put me on the defensive, except that I had the finishing move.\n\nHomeworlds Online (SDG# 8671)\nVariants: &quot;Hard time&quot;\nStarted: 2007.7.22, Ended: 2007.7.25\nParticipants: Bob (S), TwoShort (N)\nWinner: Bob\n\n\tBob: homeworld g3,b3,g3\r\n \n\nHomeworlds Online (SDG# 8745)\nStarted: 2007.7.23, Ended: 2007.8.24\nParticipants: DaDRK (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) DaDRK: Homeworld B1 G2 R3\n\tMikeYarrum: Hey again! Happy gaming!\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) DaDRK: Build R1 Dadrk\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) DaDRK: Build R1 Dadrk\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) DaDRK: Trade R1 Y1 Dadrk\n\tDaDRK: sorry bout that thought I could have possibly screwed myself over big time, oh and good luck.\n\tMikeYarrum: No problem. Good luck for too.\n\tMikeYarrum: *you, too\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) DaDRK: Discover R1 Dadrk G3 Frst\n\n11) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n12) DaDRK: Build Y1 Dadrk\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) DaDRK: Build Y2 Dadrk\n\n15) MikeYarrum: Discover Y1 Mikeyarrum G1 Osaka\n\n16) DaDRK: Trade Y1 G1 Dadrk\n\n17) MikeYarrum: Move R1 Mikeyarrum Osaka\n\n18) DaDRK: Discover G1 Dadrk B3 Scnd\n\n19) MikeYarrum: Discover Y1 Osaka G3 Kagura\n\n20) DaDRK: Build G1 Scnd\n\n21) MikeYarrum: Build Y1 Mikeyarrum\n\n22) DaDRK: Build G2 Scnd\n\n23) MikeYarrum: Build Y3 Kagura\n\n24) DaDRK: Move Y1 Dadrk Kagura\n\n25) MikeYarrum: Discover Y3 Kagura B2 Tomo\n\tDaDRK: whoops, bad move sorry bout that.\n\tMikeYarrum: No problem.\n\n26) DaDRK: Sacrifice Y2 Dadrk\nMove Y1 Kagura Osaka\nMove Y1 Osaka Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n27) MikeYarrum: Build Y1 Kagura\n\n28) DaDRK: Trade G1 Y1 Scnd\n\n29) MikeYarrum: Move Y1 Kagura Osaka\n\n30) DaDRK: Discover G2 Scnd R1 Thrd\n\n31) MikeYarrum: Build Y2 Kagura\n\n32) DaDRK: Build G1 Thrd\n\n33) MikeYarrum: Build G2 Mikeyarrum\n\n34) DaDRK: Trade R3 Y3 Dadrk\n\n35) MikeYarrum: Build Y2 Kagura\n\n36) DaDRK: Trade Y3 R3 Dadrk\n\n37) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild Y2 Osaka\nBuild R2 Osaka\nBuild G3 Mikeyarrum\n\n38) DaDRK: Build R2 Dadrk\n\n39) MikeYarrum: Move R2 Osaka Scnd\n\n40) DaDRK: Move Y1 Scnd Thrd\n\n41) MikeYarrum: Sacrifice Y1 Kagura\nMove R2 Scnd Dadrk\n\n\tDaDRK: good game I know when I&#39;m beat\n\tMikeYarrum: Thanks. =D\n\nHomeworlds Online (SDG# 8737)\nStarted: 2007.7.23, Ended: 2007.7.26\nParticipants: mnviii (S), The_Horrible_DrB (N)\nWinner: The_Horrible_DrB\n\n1) The_Horrible_DrB: Homeworld G2 B1 Y3\n\n2) mnviii: Homeworld G3 B1 Y3\n\n3) The_Horrible_DrB: Build Y1 The_horrible_drb\n\n4) mnviii: Discover Y3 Mnviii G2 Star1\n\n\nHomeworlds Online (SDG# 8817)\nStarted: 2007.7.28, Ended: 2007.8.10\nParticipants: Mr_Shine (S), MatrixFrog (N)\nWinner: Mr_Shine\n\n1) MatrixFrog: Homeworld R1 G3 Y3 *\n\n2) Mr_Shine: Homeworld B2 Y3 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Mr_Shine: B G1 Mr_shine\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) MatrixFrog: Discover Y1 Matrixfrog B2 Zip\n\n8) Mr_Shine: Discover G1 Mr_shine B1 Kobol\n\n9) MatrixFrog: Trade Y1 G1 Zip\n\n10) Mr_Shine: B G2 Mr_shine\n\n11) MatrixFrog: Build G2 Zip\n\n12) Mr_Shine: Trade G1 Y1 Mr_shine\n\n13) MatrixFrog: Trade G1 B1 Zip\n\n14) Mr_Shine: Trade G2 B2 Mr_shine\n\n15) MatrixFrog: Build G1 Zip\n\n16) Mr_Shine: Discover B2 Mr_shine G1 Caprica\n\n17) MatrixFrog: Trade G2 Y2 Zip\n\n18) Mr_Shine: Build G2 Mr_shine\n\n19) MatrixFrog: Build G2 Zip\n\n20) Mr_Shine: Build G2 Kobol\n\n21) MatrixFrog: Discover G1 Zip Y1 Zap\n\n22) Mr_Shine: Trade G1 R1 Kobol\n\n23) MatrixFrog: Build G1 Zap\n\n24) Mr_Shine: Trade G2 R2 Mr_shine\n\n25) MatrixFrog: Build Y2 Zip\n\n26) Mr_Shine: Build B1 Caprica\n\n27) MatrixFrog: Move Y2 Zip Matrixfrog\n\n28) Mr_Shine: Trade B2 Y2 Caprica\n\n29) MatrixFrog: Sacrifice B1 Zip\nTrade Y3 G3 Matrixfrog\n\n30) Mr_Shine: Build Y3 Caprica\n\n31) MatrixFrog: Build Y3 Zip\n\n32) Mr_Shine: Move Y3 Caprica Zip\n\n33) MatrixFrog: Move Y3 Zip Caprica\n\n34) Mr_Shine: Sacrifice R2 Mr_shine\nAttack Y2 Zip\nAttack G2 Zip\n\n35) MatrixFrog: Discover G1 Zap B2 Zop\n\n36) Mr_Shine: Build G2 Zip\n\n37) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove G1 Zap Mr_shine\nMove Y3 Caprica Mr_shine\n\n38) Mr_Shine: Sacrifice Y2 Zip\nMove G2 Zip Matrixfrog\nMove G2 Zip Matrixfrog\nCatastrophe Matrixfrog G\n\n39) MatrixFrog: Build Y1 Mr_shine\nCatastrophe Mr_shine Y\n\n40) Mr_Shine: Move Y3 Zip Matrixfrog\n\n41) MatrixFrog: Sacrifice G1 Zop\nBuild G1 Mr_shine\n\n42) Mr_Shine: Attack Y1 Matrixfrog\n\n\tMr_Shine: Thanks for the game.\n\nHomeworlds Online (SDG# 8766)\nStarted: 2007.7.28, Ended: 2007.8.5\nParticipants: MikeYarrum (S), Mr_Shine (N)\nWinner: MikeYarrum\n\n1) Mr_Shine: Homeworld G1 B3 Y3\n\n2) MikeYarrum: Homeworld R3 B2 G3\n\tMr_Shine: Hi, and good luck!\n\tMikeYarrum: Hello, happy starshiping!\n\n3) Mr_Shine: Build Y1 Mr_shine\n\tMr_Shine: b y1 mr_shine\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Mr_Shine: Trade Y3 G3 Mr_shine\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) Mr_Shine: Build G1 Mr_shine\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Mr_Shine: D G1 Mr_shine B2 Earth\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) Mr_Shine: Build G2 Mr_shine\n\tMikeYarrum: What a silly name for a planet!\n\n12) MikeYarrum: Discover G2 Mikeyarrum B1 Osaka\n\tMr_Shine: It wasn&#39;t my idea. It&#39;s what the locals call it. I decided I&#39;d let them keep their name as they&#39;re such good slave labour.\n\n13) Mr_Shine: Trade G2 Y2 Mr_shine\n\n14) MikeYarrum: Build G2 Osaka\n\n15) Mr_Shine: Build G2 Mr_shine\n\n16) MikeYarrum: Trade G2 Y2 Osaka\n\n17) Mr_Shine: Discover G2 Mr_shine B2 Pluto\n\n18) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n19) Mr_Shine: Trade Y1 R1 Mr_shine\n\n20) MikeYarrum: Build Y1 Osaka\n\n21) Mr_Shine: Sacrifice G2 Pluto\nBuild G1 Mr_shine\nBuild G2 Mr_shine\nCatastrophe Mr_shine G\n\n\tMikeYarrum: Would you like to try again? That was a bit unexpected...\n\nHomeworlds Online (SDG# 8848)\nVariants: &quot;Hard time&quot;\nStarted: 2007.7.29, Ended: 2007.7.31\nParticipants: Mr_Shine (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) Mr_Shine: Homeworld B2 Y3 G3\n\n3) zoltar: Build G1 Zoltar\n\tzoltar: Greetingz, Earthling.\n\n4) Mr_Shine: Build G1 Mr_shine\n\tMr_Shine: What is this Earth of which you speak? Is it that medium blue planet I conquered and abandoned awhile back?\r\n\r\nGreetings to you as well.\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) zoltar: Build G1 Zoltar\n\n8) Mr_Shine: Trade G1 Y1 Mr_shine\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Mr_Shine: Trade G1 R1 Mr_shine\n\n11) zoltar: Build R2 Zoltar\n\n12) Mr_Shine: Build R2 Mr_shine\n\n13) zoltar: Discover R2 Zoltar G3 Greengiant\n\n14) Mr_Shine: Trade R2 B2 Mr_shine\n\n15) zoltar: Build R2 Zoltar\n\n16) Mr_Shine: Discover B2 Mr_shine G1 New_eden\n\n17) zoltar: Trade R1 B1 Zoltar\n\n18) Mr_Shine: Build G1 Mr_shine\n\n19) zoltar: Move B1 Zoltar Greengiant\n\n20) Mr_Shine: Trade G1 B1 Mr_shine\n\n21) zoltar: Build G1 Zoltar\n\n22) Mr_Shine: Move Y1 Mr_shine New_eden\n\n23) zoltar: Discover G1 Zoltar B3 Bloohoohoo\n\n24) Mr_Shine: B G1 Mr_shine\n\n25) zoltar: Build G2 Zoltar\n\n26) Mr_Shine: Discover G1 Mr_shine B1 Sapphire\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bloohoohoo\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n28) Mr_Shine: Sacrifice G3 Mr_shine\nBuild G3 Sapphire\nBuild B3 Mr_shine\nBuild B3 New_eden\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\tzoltar: wow -- looks like I&#39;ve lost this game already!\n\n30) Mr_Shine: Trade B3 Y3 Mr_shine\n\n31) zoltar: Sacrifice G2 Zoltar\nBuild B3 Greengiant\nBuild R1 Greengiant\n\n32) Mr_Shine: Sacrifice Y1 New_eden\nMove G1 Sapphire Mr_shine\n\n33) zoltar: Trade B3 Y3 Greengiant\n\n34) Mr_Shine: Build G2 Sapphire\n\n35) zoltar: Sacrifice Y2 Zoltar\nMove G1 Bloohoohoo Sapphire\nMove G2 Bloohoohoo Sapphire\nCatastrophe Sapphire G\n\n36) Mr_Shine: Build R2 Mr_shine\n\n37) zoltar: Discover R2 Greengiant Y1 Attackoutpost\n\tMr_Shine: Looks like victory. Congrats.\n\n38) Mr_Shine: Sacrifice R1 Mr_shine\nPass\n\tzoltar: Victory? You&#39;re as pessimistic as I! More like gone from lost to a close game...\n\n39) zoltar: Build Y2 Greengiant\n\n40) Mr_Shine: Trade B2 Y2 New_eden\n\n41) zoltar: Build Y2 Zoltar\n\n42) Mr_Shine: Discover B1 Mr_shine B1 Lonelybluestar\n\n\tMr_Shine: Well done. There was no way I was going to blunt your attack from there. Cheers for the game.\n\nHomeworlds Online (SDG# 8776)\nStarted: 2007.7.31, Ended: 2007.9.3\nParticipants: ts52 (S), wmreed (N)\nWinner: ts52\n\n1) wmreed: Homeworld G3 B1 R3\n\n2) ts52: Homeworld G1 B2 R3\n\twmreed: Hello!  Good luck!\n\tts52: Thanks! Good luck to you too!\n\n3) wmreed: Build R1 Wmreed\n\n4) ts52: Build R1 Ts52\n\n5) wmreed: Trade R1 Y1 Wmreed\n\n6) ts52: Trade R1 Y1 Ts52\n\n7) wmreed: Build Y1 Wmreed\n\n8) ts52: Build Y2 Ts52\n\n9) wmreed: Build Y2 Wmreed\n\n10) ts52: Trade Y1 G1 Ts52\n\n11) wmreed: Trade Y1 B1 Wmreed\n\n12) ts52: Build Y1 Ts52\n\n13) wmreed: Discover B1 Wmreed G2 Bendon\n\n14) ts52: Discover G1 Ts52 B3 Grover\n\n15) wmreed: Build R1 Wmreed\n\n16) ts52: Build R1 Ts52\n\n17) wmreed: Move R1 Wmreed Bendon\n\n18) ts52: Move Y1 Ts52 Grover\n\n19) wmreed: Move Y1 Wmreed Bendon\n\n20) ts52: Move R1 Ts52 Grover\n\n21) wmreed: Build Y1 Bendon\n\n22) ts52: Build R1 Ts52\n\n23) wmreed: Discover B1 Bendon Y3 Telgar\n\n24) ts52: Discover R1 Ts52 Y3 Sol\n\n25) wmreed: Build R2 Bendon\n\n26) ts52: Build R2 Grover\n\n27) wmreed: Move Y1 Bendon Wmreed\n\n28) ts52: Trade R2 G2 Grover\n\n29) wmreed: Build R2 Wmreed\n\n30) ts52: Sacrifice G2 Grover\nBuild Y2 Ts52\nBuild Y3 Grover\n\n31) wmreed: Trade R2 G2 Wmreed\n\n32) ts52: Build R2 Ts52\n\n33) wmreed: Sacrifice G2 Wmreed\nBuild B1 Telgar\nBuild B2 Telgar\n\n34) ts52: Sacrifice Y2 Ts52\nMove Y3 Grover Bendon\nMove Y3 Bendon Telgar\n\n35) wmreed: Move B1 Telgar Bendon\n\n36) ts52: Sacrifice R2 Ts52\nAttack B2N Telgar\nAttack B1N Telgar\n\n37) wmreed: Discover R1 Bendon G3 Ista\n\n38) ts52: Build Y2 Ts52\n\twmreed: Crap.  Well done.\r\n\n\n39) wmreed: Build R2 Ista\n\tts52: It&#39;s far from over. But thanks.\n\n40) ts52: Trade B2 G2 Telgar\n\n41) wmreed: Build B2 Bendon\n\n42) ts52: Sacrifice G2 Telgar\nBuild R2 Sol\nBuild R3 Grover\n\n43) wmreed: Trade B2 G2 Bendon\n\n44) ts52: Move Y3 Telgar Bendon\n\n45) wmreed: Sacrifice Y2 Wmreed\nDiscover R2 Bendon G1 Fort\nMove G2 Bendon Fort\n\n46) ts52: Move R1 Sol Bendon\n\twmreed: Hm.  I&#39;m not sure what to do next, darn you.\n\n47) wmreed: Sacrifice Y1 Bendon\nMove B1 Bendon Wmreed\n\n48) ts52: Move R3 Grover Fort\n\tts52: It&#39;s ok. I&#39;m not so sure myself.\n\n49) wmreed: Sacrifice G2 Fort\nBuild Y1 Wmreed\nBuild Y2 Wmreed\n\n50) ts52: Sacrifice Y2 Ts52\nMove Y1 Grover Bendon\nMove Y1 Bendon Wmreed\nCatastrophe Wmreed Yellow\n\n51) wmreed: Sacrifice B1 Wmreed\nTrade R2 G2 Ista\n\n52) ts52: Attack R2N Fort\n\n53) wmreed: Build R2 Wmreed\n\n54) ts52: Build Y1 Bendon\n\n55) wmreed: Trade R2 Y2 Wmreed\n\n56) ts52: Sacrifice Y1 Bendon\nMove R3 Fort Bendon\n\n57) wmreed: Build G2 Ista\n\n58) ts52: Build G3 Grover\n\n59) wmreed: Build Y1 Wmreed\n\n60) ts52: Sacrifice Y2 Ts52\nMove Y3 Bendon Wmreed\nMove R3 Bendon Wmreed\n\n61) wmreed: Attack R3 Wmreed\n\n62) ts52: Sacrifice R2 Fort\nAttack R3N Wmreed\nAttack R3N Wmreed\n\n\twmreed: Good game!  Thank you!\n\nHomeworlds Online (SDG# 8831)\nStarted: 2007.7.31, Ended: 2007.8.6\nParticipants: MikeYarrum (S), Freemonty (N)\nWinner: MikeYarrum\n\n1) Freemonty: Homeworld Y2 G1 R3 *\n\tFreemonty: look, I&#39;m new with this system. Seince I tried playing I can&#39;t get it to make my first move. Is there something that I don&#39;t know, or am I just putting in the commands wrong? You might not know the answer to that Question.\n\n2) MikeYarrum: Homeworld G3 Y1 B3\n\tFreemonty: ignore my first comment. I&#39;m a N00b, it might show in my move.\n\tMikeYarrum: No problem, it takes awhile to get used to, but it&#39;ll become second-nature soon.\n\n3) Freemonty: Build R1 Freemonty\n\n4) MikeYarrum: Build B1 Mikeyarrum\n\tFreemonty: Is it just standard convention to start with green/blue, or are there other ways to start? [look at my starting position]\n\tMikeYarrum: Actually, it&#39;s highly recommended that you start with both green and blue, whether it&#39;s in your homeworld or your ship. Some advanced players like to start with green/blue/red and trade for yellow ASAP, but most start with green/blue/yellow and trade for red later. The problem with your set-up is, if you want any other color ship besides red, you&#39;re going to have to discover a blue star system, then trade for other colors besides red, and then possibly move them back to your homeworld. It&#39;s not very efficient. I, on the other hand, can build and trade more easily with my setup.\r\n\r\nDon&#39;t worry, it takes a game or two to see the strategy in establishing a homeworld. Try reading the SDG wiki and any other pages you can find on the game.\n\n5) Freemonty: Discover R1 Freemonty B3 Sevensevenseven\n\n6) MikeYarrum: Trade B1 R1 Mikeyarrum\n\tFreemonty: Ok. I guess we&#39;ll see how this ends up then.\n\n7) Freemonty: Trade R1 B1 Sevensevenseven\n\n\tFreemonty: I hope this rectifies my mistake.\n\tMikeYarrum: It&#39;s going to take more than that, I&#39;m afraid. Without yellow ships to sacrifice, that blue ship is pretty much stuck there. It might have made sense if you traded for green, so you could build more green ships then trade for other colors, but you&#39;d still be playing catch-up against me.\r\n\r\nI wouldn&#39;t mind ending this game and starting another, if you want a fair shot.\n\tFreemonty: Sounds fair to me. [last time I argue with a computer]\n\nHomeworlds Online (SDG# 8864)\nStarted: 2007.8.1, Ended: 2007.8.5\nParticipants: Mr_Shine (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 R3 G3\n\n2) Mr_Shine: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Mr_Shine: Build G1 Mr_shine\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) zoltar: Build Y1 Zoltar\n\n8) Mr_Shine: Discover G1 Mr_shine B3 Kobol\n\n9) zoltar: Build Y2 Zoltar\n\n10) Mr_Shine: Build G1 Mr_shine\n\n11) zoltar: Build G2 Zoltar\n\n12) Mr_Shine: Build G2 Kobol\n\n13) zoltar: Build G2 Zoltar\n\n14) Mr_Shine: Trade G2 Y2 Kobol\n\n15) zoltar: Discover G2 Zoltar B1 Blueberry\n\n16) Mr_Shine: Trade G1 R1 Mr_shine\n\n17) zoltar: Trade Y1 R1 Zoltar\n\n18) Mr_Shine: Build R1 Mr_shine\n\n19) zoltar: Build R2 Zoltar\n\n20) Mr_Shine: Move R1 Mr_shine Kobol\n\n21) zoltar: Trade R1 B1 Zoltar\n\n22) Mr_Shine: Build R1 Kobol\n\n23) zoltar: Move R2 Zoltar Blueberry\n\n24) Mr_Shine: Build Y1 Kobol\n\n25) zoltar: Move Y1 Zoltar Blueberry\n\n26) Mr_Shine: Trade R1 B1 Kobol\n\n27) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Blueberry\n\n28) Mr_Shine: Discover Y1 Kobol G1 Caprica\n\n29) zoltar: Sacrifice Y2 Zoltar\nMove B1 Zoltar Caprica\nMove Y3 Blueberry Kobol\n\tMr_Shine: Bravo. I think I&#39;m well and truly beaten now:)\n\tMr_Shine: Sorry about that. Building  Caprica was a very bad move.\n\n30) Mr_Shine: Sacrifice G3 Mr_shine\nBuild Y2 Kobol\nBuild Y3 Kobol\nBuild Y3 Caprica\nCatastrophe Kobol Y\n\tMr_Shine: Slight adjustment, as I can&#39;t think of anything better to do. (After the game would it be possible for you to tell me what you would have done here?)\n\tzoltar: Actually, I would have made one of those moves as well.  I&#39;m getting pretty good at the game, but in positions like these I&#39;m usually in a fog as well, and still am not too sure what I&#39;m doing, and just try to make the most tactical threats at once and go for getting bigger pieces. I&#39;m super busy so I&#39;ll have to put this on hold and think about it, as this is a tough position for me as well.\n\n31) zoltar: Sacrifice Y2 Zoltar\nMove G2 Blueberry Kobol\nMove G2 Kobol Mr_shine\n\n32) Mr_Shine: Pass\n\n33) zoltar: Sacrifice R2 Blueberry\nAttack R1 Mr_shine\nAttack G1 Mr_shine\n\n\tMr_Shine: Congratulations. Good game.\n\tzoltar: You were doing fine up till that last sack, and you&#39;d be fine now if you only had another y2 to sack to bring your y3 back home, or if your y3 were only one jump away.  Without a 3-pip ship able to get to your homeworld the next turn, it&#39;s almost always disastrous to leave your homeworld unprotected by a 3-pip ship.\n\tzoltar: Thanks. Good game.\n\nHomeworlds Online (SDG# 8961)\nStarted: 2007.8.6, Ended: 2007.9.1\nParticipants: Freemonty (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) Freemonty: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Freemonty: Build Y1 Freemonty\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Freemonty: Trade Y1 R1 Freemonty\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Freemonty: Build R1 Freemonty\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) Freemonty: Build Y1 Freemonty\n\n11) MikeYarrum: Discover G1 Mikeyarrum B1 Yotsuba\n\n12) Freemonty: Trade R1 B1 Freemonty\n\n13) MikeYarrum: Build G1 Yotsuba\n\n14) Freemonty: Discover R1 Freemonty Y3 Sevensevenseven\n\n15) MikeYarrum: Build G2 Yotsuba\n\n16) Freemonty: Move B1 Freemonty Sevensevenseven\n\n17) MikeYarrum: Trade G1 Y1 Yotsuba\n\n18) Freemonty: Trade B1 G1 Sevensevenseven\n\n19) MikeYarrum: Build Y2 Yotsuba\n\n20) Freemonty: Build G2 Sevensevenseven\n\n21) MikeYarrum: Trade G1 R1 Yotsuba\n\n22) Freemonty: Sacrifice Y3 Freemonty\nMove R1 Sevensevenseven Yotsuba\nMove G1 Sevensevenseven Yotsuba\nMove G2 Sevensevenseven Yotsuba\n\n23) MikeYarrum: Attack G2 Yotsuba\n\n24) Freemonty: Attack R1N Yotsuba\n\n25) MikeYarrum: Discover Y2 Yotsuba G3 Asagi\n\n26) Freemonty: Trade Y1 R1 Freemonty\n\n27) MikeYarrum: Trade G2 R2 Yotsuba\n\n28) Freemonty: Build R2 Yotsuba\nCatastrophe Yotsuba R\n\n29) MikeYarrum: Trade G2 R2 Yotsuba\n\n30) Freemonty: Build R1 Freemonty\n\n31) MikeYarrum: Sacrifice Y2 Asagi\nDiscover R2 Yotsuba B3 Fuuka\nMove R2 Fuuka Freemonty\n\n32) Freemonty: Trade G1 R1 Yotsuba\n\tFreemonty: Nice knowing ya...\n\n33) MikeYarrum: Build R2 Freemonty\nCatastrophe Freemonty Red\n\tMikeYarrum: ^_^ It was a good game.\n\n\nHomeworlds Online (SDG# 8617)\nVariants: &quot;Hard time&quot;\nStarted: 2007.8.8, Ended: 2007.8.9\nParticipants: Jesse (S), Horowits (N)\nWinner: Jesse\n\n1) Horowits: Homeworld G3 B2 R3\n\n2) Jesse: Homeworld G3 B1 Y3\n\tHorowits: The people of planet Gwar celebrate as they launch their first ship.\n\n3) Horowits: Build R1 Horowits\n\tJesse: The people of planet Gwar are clearly gwarlike.  In the interest of galactic gpeace, something must be done.  The people of planet Gpolice prepare for action.\n\n4) Jesse: Build Y1 Jesse\n\n5) Horowits: Trade R1 Y1 Horowits\n\n6) Jesse: Discover Y1 Jesse G2 Riotgear\n\tHorowits: Planet Gwar throws another bash celebrating a shiny new yellow ship.\n\n7) Horowits: Discover Y1 Horowits G1 Greenjello\n\n8) Jesse: Build Y1 Jesse\n\n9) Horowits: Build Y2 Greenjello\n\n10) Jesse: Discover Y1 Jesse G2 Baton\n\n11) Horowits: Build R1 Horowits\n\n12) Jesse: Build Y2 Jesse\n\n13) Horowits: Trade R1 B1 Horowits\n\n14) Jesse: Trade Y2 R2 Jesse\n\n15) Horowits: Move Y2 Greenjello Horowits\n\n16) Jesse: Build Y2 Jesse\n\n17) Horowits: Move B1 Horowits Greenjello\n\n18) Jesse: Trade Y2 B2 Jesse\n\n19) Horowits: Trade Y1 R1 Greenjello\n\n20) Jesse: Move B2 Jesse Riotgear\n\n21) Horowits: Build Y1 Horowits\n\n22) Jesse: Build Y2 Riotgear\n\n23) Horowits: Move Y2 Horowits Greenjello\n\n24) Jesse: Trade Y2 G2 Riotgear\n\n25) Horowits: Move R1 Greenjello Baton\n\n26) Jesse: Build Y2 Baton\n\n27) Horowits: Attack Y1 Baton\n\n28) Jesse: Sacrifice R2 Jesse\nAttack Y1 Baton\nAttack R1 Baton\n\n\nHomeworlds Online (SDG# 8867)\nStarted: 2007.8.9, Ended: 2007.9.2\nParticipants: inundator (S), MikeYarrum (N)\nWinner: inundator\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) inundator: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) inundator: Build Y1 Inundator\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) inundator: Build Y1 Inundator\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n8) inundator: Trade Y1 R1 Inundator\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) inundator: Build R1 Inundator\n\tinundator: Sorry for the delay. I was at Gencon and my hotel&#39;s wi-fi sucked.\n\n11) MikeYarrum: Discover G1 Mikeyarrum B1 Ena\n\tMikeYarrum: no problem. =D\n\n12) inundator: Discover R1 Inundator Y3 Galahad\n\n13) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n14) inundator: Build R2 Inundator\n\n15) MikeYarrum: Build G1 Ena\n\n16) inundator: Move R2 Inundator Galahad\n\n17) MikeYarrum: Move R1 Mikeyarrum Ena\n\n18) inundator: Move R2 Galahad Ena\n\n19) MikeYarrum: Build R2 Ena\n\n20) inundator: Attack R2 Ena\n\n21) MikeYarrum: Build R2 Ena\nCatastrophe Ena Red\n\n22) inundator: Move R1 Galahad Ena\n\n23) MikeYarrum: Build G1 Mikeyarrum\n\n24) inundator: Attack G1 Ena\n\n25) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Ena\nBuild G2 Mikeyarrum\nBuild G3 Mikeyarrum\n\n26) inundator: Sacrifice Y1 Inundator\nMove G1 Ena Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n\tMikeYarrum: Shoot, I forgot you had that move. Unless you&#39;re prone to bigger mistakes than that, it&#39;s your game.\n\nHomeworlds Online (SDG# 9014)\nStarted: 2007.8.10, Ended: 2008.2.21\nParticipants: MatrixFrog (S), Horowits (N)\nWinner: MatrixFrog\n\n1) Horowits: Homeworld G2 B1 R3\n\n2) MatrixFrog: Homeworld B3 G2 Y3\n\n3) Horowits: Build R1 Horowits\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Horowits: Trade R1 Y1 Horowits\n\n6) MatrixFrog: Discover Y1 Matrixfrog Y1 Bom\n\n7) Horowits: Build Y2 Horowits\n\n8) MatrixFrog: Build Y2 Matrixfrog\n\n9) Horowits: Discover Y1 Horowits G3 Gwar\n\n10) MatrixFrog: Trade Y2 G2 Matrixfrog\n\n11) Horowits: Build Y2 Gwar\n\n12) MatrixFrog: Build G1 Matrixfrog\n\n13) Horowits: Build R1 Horowits\n\n14) MatrixFrog: Build Y2 Matrixfrog\n\n15) Horowits: Trade R1 G1 Horowits\n\n16) MatrixFrog: Discover Y1 Bom G3 Zip\n\n\nHomeworlds Online (SDG# 8874)\nStarted: 2007.8.11, Ended: 2007.8.11\nParticipants: Mr_Shine (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Mr_Shine: Homeworld Y3 B1 G3\n\n\tts52: Did you really mean to resign?\n\nHomeworlds Online (SDG# 8995)\nStarted: 2007.8.13, Ended: 2007.9.20\nParticipants: Horowits (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) Horowits: Homeworld Y3 B1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Horowits: Build G1 Horowits\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Horowits: Discover G1 Horowits G2 Greenjello\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n\nHomeworlds Online (SDG# 8484)\nStarted: 2007.8.14, Ended: 2008.1.22\nParticipants: Uglyfoot (S), DaDRK (W), JeffW (N), nycavri (E)\nWinner: Uglyfoot\n\n1) nycavri: Homeworld B1 G2 Y3\n\tDaDRK: good luck on the game :)\n\n2) Uglyfoot: Homeworld Y3 B1 G3\n\tnycavri: My first ever multi-player Homeworlds. . . TaGG.\n\n3) DaDRK: Homeworld G3 B2 R3\n\tDaDRK: same here\n\n4) nycavri: Build Y1 Nycavri\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) DaDRK: Build R1 Dadrk\n\n7) nycavri: Build Y1 Nycavri\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) DaDRK: Build R1 Dadrk\n\n10) nycavri: Trade Y1 B1 Nycavri\n\n11) Uglyfoot: Discover G1 Uglyfoot B2 Themall\n\n12) DaDRK: Trade R1 Y1 Dadrk\n\n13) nycavri: Build Y1 Nycavri\n\n14) Uglyfoot: Build G1 Themall\n\n15) DaDRK: Discover R1 Dadrk B1 Frst\n\n16) nycavri: Discover Y1 Nycavri G3 Mvb\n\n17) Uglyfoot: Trade G1 Y1 Themall\n\n18) DaDRK: Build Y1 Dadrk\n\n19) nycavri: Build Y2 Mvb\n\n20) Uglyfoot: Build Y2 Themall\n\n21) DaDRK: Move Y1 Dadrk Frst\n\n22) nycavri: Trade Y1 G1 Nycavri\n\n23) Uglyfoot: Trade Y1 R1 Themall\n\n24) DaDRK: Trade Y1 G1 Frst\n\n25) nycavri: Trade B1 R1 Nycavri\n\n26) Uglyfoot: Build Y1 Themall\n\n27) DaDRK: Build G1 Frst\n\n28) nycavri: Discover Y2 Mvb R2 Mvg\n\n29) Uglyfoot: Build G2 Themall\n\n30) DaDRK: Trade G1 Y1 Frst\n\n31) nycavri: Build R1 Nycavri\n\n32) Uglyfoot: Move G2 Themall Mvb\n\n33) DaDRK: Build R1 Frst\n\n34) nycavri: Move Y1 Mvb Mvg\n\n35) Uglyfoot: Build R2 Themall\n\n36) DaDRK: Build R2 Dadrk\n\n37) nycavri: Discover Y1 Mvg B1 Iw\n\n38) Uglyfoot: Trade R1 B1 Themall\n\n39) DaDRK: Move R2 Dadrk Iw\n\n40) nycavri: Move Y1 Iw Mvg\n\n41) Uglyfoot: Move B1 Themall Mvb\n\n42) DaDRK: Discover R1 Frst Y2 Scnd\n\n43) nycavri: Move G1 Nycavri Mvb\n\n44) Uglyfoot: Trade G2 R2 Mvb\n\n45) DaDRK: Move R1 Scnd Uglyfoot\n\n46) nycavri: Sacrifice G1 Mvb\nBuild Y1 Nycavri\n\n47) Uglyfoot: Sacrifice R2 Themall\nAttack R1W Uglyfoot\nPass\n\n48) DaDRK: Move R1 Frst Themall\n\n49) nycavri: Discover Y1 Nycavri G3 Jw\n\n50) Uglyfoot: Build B2 Mvb\n\n51) DaDRK: Build G1 Frst\n\n52) nycavri: Build Y2 Jw\n\n53) Uglyfoot: Trade B2 Y2 Mvb\n\n54) DaDRK: Build Y2 Dadrk\n\n55) nycavri: Build Y3 Nycavri\n\tDaDRK: for some reason I can&#39;t attack in themall\n\n56) Uglyfoot: Build Y3 Mvb\n\tnycavri: I&#39;m guessing this was the problem: \r\n\r\n&quot;Stars and Ships are referred to by their colour and size (eg. R1, Y3) with the sole exception of the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player&#39;s seat designation (eg. G2S, B1E).&quot;\n\n57) DaDRK: Attack G1S Themall\n\n58) nycavri: Sacrifice Y3 Nycavri\nMove Y1 Mvg Uglyfoot\nMove Y1 Jw Mvg\nMove Y2 Mvg Uglyfoot\n\n59) Uglyfoot: Sacrifice Y2 Themall\nMove Y2 Mvb Nycavri\nMove Y3 Mvb Nycavri\n\n60) DaDRK: Sacrifice Y2 Dadrk\nMove Y1 Frst Mvg\nMove Y1 Mvg Uglyfoot\nCatastrophe Uglyfoot Y\n\n61) nycavri: Attack Y3S Nycavri\n\n\n62) Uglyfoot: Build Y1 Nycavri\nCatastrophe Nycavri Y\n\n63) DaDRK: Attack Y1S Themall\n\n64) nycavri: Move Y2 Jw Nycavri\n\n65) Uglyfoot: Build B2 Mvb\n\n66) DaDRK: Build Y1 Themall\n\tnycavri: For some reason I blanked on the fact that you could use the green star inmy Homeworld . . .\n\n67) nycavri: Build Y1 Nycavri\n\n68) Uglyfoot: Trade B2 Y2 Mvb\n\n69) DaDRK: Build Y2 Dadrk\n\n70) nycavri: Trade Y2 B2 Nycavri\n\n71) Uglyfoot: Build B2 Mvb\n\n72) DaDRK: Build Y2 Dadrk\n\n73) nycavri: Build Y2 Nycavri\n\n74) Uglyfoot: Build Y2 Mvb\n\n75) DaDRK: Move Y2 Dadrk Frst\n\n76) nycavri: Trade Y2 G2 Nycavri\n\n77) Uglyfoot: Sacrifice Y2 Mvb\nMove B1 Mvb Nycavri\nMove B2 Mvb Nycavri\nCatastrophe Nycavri B\n\n78) DaDRK: Sacrifice Y2 Frst\nMove G1 Frst Nycavri\nMove G1 Frst Nycavri\nCatastrophe Nycavri G\n\n79) Uglyfoot: Move R2 Mvb Themall\n\n80) DaDRK: Sacrifice Y1 Themall\nMove G1 Themall Uglyfoot\n\n81) Uglyfoot: Attack G1W Uglyfoot\n\n82) DaDRK: Trade Y1 G1 Dadrk\n\n83) Uglyfoot: Sacrifice Y2 Mvb\nMove G1 Uglyfoot Dadrk\nMove G1 Uglyfoot Dadrk\nCatastrophe Dadrk G\n\n84) DaDRK: Sacrifice Y1 Themall\nMove R1 Themall Iw\n\n85) Uglyfoot: Build R1 Uglyfoot\n\n86) DaDRK: Trade R2 G2 Iw\n\n87) Uglyfoot: Build R1 Uglyfoot\n\n88) DaDRK: Build G1 Iw\n\n89) Uglyfoot: Trade R1 Y1 Uglyfoot\n\n90) DaDRK: Build R1 Iw\n\n91) Uglyfoot: Trade R2 G2 Themall\n\n92) DaDRK: Trade R1 Y1 Iw\n\n93) Uglyfoot: Build G1 Uglyfoot\n\n94) DaDRK: Sacrifice G2 Iw\nBuild G1 Iw\nBuild Y1 Dadrk\n\n95) Uglyfoot: Sacrifice Y1 Uglyfoot\nMove G2 Themall Iw\n\n96) DaDRK: Sacrifice Y2 Dadrk\nMove G1 Iw Dadrk\nMove G1 Iw Mvg\n\n97) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R1W Iw\n\n98) DaDRK: Sacrifice Y1 Iw\nMove G1 Mvg Uglyfoot\n\n99) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n100) DaDRK: Build G1 Uglyfoot\n\n101) Uglyfoot: Build R1 Iw\n\n102) DaDRK: Trade R3 B3 Dadrk\n\n103) Uglyfoot: Discover G1 Uglyfoot Y3 Grande\n\n104) DaDRK: Build G1 Uglyfoot\n\n105) Uglyfoot: Move G1 Grande Uglyfoot\nCatastrophe Uglyfoot G\n\n106) DaDRK: Build G1 Dadrk\n\n107) Uglyfoot: Trade R1 Y1 Iw\n\n108) DaDRK: Trade G1 R1 Dadrk\n\n109) Uglyfoot: Build G1 Iw\n\n110) DaDRK: Build G1 Dadrk\n\n111) Uglyfoot: Trade G1 B1 Iw\n\n112) DaDRK: Move G1 Dadrk Uglyfoot\n\n113) Uglyfoot: Build B1 Iw\n\n114) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove B1 Iw Dadrk\nMove B1 Iw Dadrk\nMove G2 Iw Mvg\nCatastrophe Dadrk B\n\n\nHomeworlds Online (SDG# 9025)\nStarted: 2007.8.16, Ended: 2007.8.16\nParticipants: Mr_Shine (S), ts52 (N)\nWinner: ts52\n\n\tMr_Shine: Sorry. Accidently clicked the link\n\nHomeworlds Online (SDG# 9072)\nVariants: &quot;Hard time&quot;\nStarted: 2007.8.17, Ended: 2007.8.31\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) MikeYarrum: Homeworld G1 B2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build Y1 Mikeyarrum\n\n5) zoltar: Build G1 Zoltar\n\n6) MikeYarrum: Build Y1 Mikeyarrum\n\n7) zoltar: Trade G3 Y3 Zoltar\n\n8) MikeYarrum: Discover Y1 Mikeyarrum B3 Asagi\n\tMikeYarrum: I was wondering what your next move would be.\n\n9) zoltar: Build G2 Zoltar\n\n10) MikeYarrum: Build Y1 Mikeyarrum\n\n11) zoltar: Build Y2 Zoltar\n\tzoltar: I think trading the large G3 for a Y3 was a &#39;forced&#39; move, as I needed yellow, and trading a small gives you 2-pip yellows a move earlier.\n\n12) MikeYarrum: Discover Y1 Mikeyarrum G3 Fuuka\n\tMikeYarrum: My problem is, I should&#39;ve snatched up a green 1-pip earlier. Now you can shut me out of them for good.\n\n13) zoltar: Discover Y2 Zoltar B2 Plorrgh\n\n14) MikeYarrum: Build Y2 Fuuka\n\tzoltar: One of the reasons I&#39;ve been using the red-blue star system is that if you had red-blue now you could easily trade a Y3 for a G3; but now if you do so, as soon as you build another green I send a green in and blow it up; the red-blue allows you to build both green and yellow without having to have 3 of a color in your system.\n\tMikeYarrum: Ah, that&#39;s very true.\n\n15) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Plorrgh\n\n16) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n17) zoltar: Trade Y2 R2 Plorrgh\n\n18) MikeYarrum: Discover Y2 Fuuka B2 Ena\n\tzoltar: Btw, you&#39;d better go for broke now and fire off all your guesses in the Zendo game, because I doubt you&#39;ll get another turn...\n\tMikeYarrum: Dude, if I had ANY idea of what to guess, I&#39;d have done it a long time ago. The reason I asked to be kicked out is because I seriously have no clue whatsoever of any kind of rule that would be accepted. Everytime I think I&#39;ve got a pattern, one of the koans busts it.\r\n\r\nI appreciate your belief in me, but... man, stuff&#39;s hard.\n\n19) zoltar: Move G1 Zoltar Plorrgh\n\tzoltar: Well, then sit back in awe and watch Ryan do what Gort did in the last game and then ask him how he did it.  Can&#39;t give you any hints as that would be cheating, but look how ryan&#39;s last koan was so close to several others and revealed a lot of information -- more than enough for you to win with 3 stones (or with one stone if you are Ryan or Gort). Just try to formulate any rule at all that works on all the koans, and then when I give a counterexample, use that as a clue, and so forth. Of course as you say, you have to have some hunch to get the ball initially rolling when you have 3 guesses to burn. Well, good luck.\n\tzoltar: Btw, I really love my rules -- I think I&#39;m coming up with great rules that are easy to formulate (six English words or so) but very hard to crack, but not too hard so that Ryan or Gort still get them easily whilst everyone else is stumped.  If you are still stumped and Ryan gets it easily, besides illustrating how amazing Ryan is (I&#39;m actually not much better than you, but I come up with better koans to test things than you do), it will show that I&#39;m making really good rules.\n\n20) MikeYarrum: Trade Y2 G2 Ena\n\n21) zoltar: Build G2 Plorrgh\n\n\tMikeYarrum: Sorry, I just didn&#39;t have any moves I liked.\n\nHomeworlds Online (SDG# 9049)\nStarted: 2007.8.18, Ended: 2007.9.6\nParticipants: weevilgenius (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) weevilgenius: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) weevilgenius: Build Y1 Weevilgenius\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) weevilgenius: Trade Y1 G1 Weevilgenius\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) weevilgenius: Discover G1 Weevilgenius B3 Andromeda\n\n9) MikeYarrum: Build Y1 Mikeyarrum\n\n10) weevilgenius: Build G1 Andromeda\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) weevilgenius: Trade G1 R1 Andromeda\n\n13) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n14) weevilgenius: Build G1 Andromeda\n\n15) MikeYarrum: Discover G2 Mikeyarrum B1 Ena\n\n16) weevilgenius: Build Y1 Weevilgenius\n\n17) MikeYarrum: Move Y1 Mikeyarrum Ena\n\n18) weevilgenius: Build Y2 Weevilgenius\n\n19) MikeYarrum: Build Y2 Ena\n\n20) weevilgenius: Trade Y2 R2 Weevilgenius\n\n21) MikeYarrum: Build Y2 Mikeyarrum\n\n22) weevilgenius: Build Y2 Weevilgenius\n\n23) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove Y1 Ena Andromeda\nMove Y1 Andromeda Weevilgenius\nCatastrophe Weevilgenius Yellow\n\n24) weevilgenius: Trade G1 Y1 Andromeda\n\tweevilgenius: Kabloey!\n\n25) MikeYarrum: Build G1 Mikeyarrum\n\n26) weevilgenius: Build R1 Andromeda\n\n27) MikeYarrum: Move R1 Mikeyarrum Ena\n\n28) weevilgenius: Build R2 Weevilgenius\n\n29) MikeYarrum: Build R3 Ena\n\n30) weevilgenius: Build R3 Weevilgenius\n\n31) MikeYarrum: Sacrifice Y2 Ena\nMove R1 Ena Andromeda\nMove R1 Andromeda Weevilgenius\nCatastrophe Weevilgenius Red\n\n\nHomeworlds Online (SDG# 9098)\nVariants: &quot;Hard time&quot;\nStarted: 2007.8.27, Ended: 2007.8.29\nParticipants: Mr_Shine (S), SpaceHobo (N)\nWinner: Mr_Shine\n\n1) SpaceHobo: Homeworld G1 B2 Y3\n\n2) Mr_Shine: Homeworld B1 Y3 G3\n\n3) SpaceHobo: Build Y1 Spacehobo\n\n4) Mr_Shine: B G1 Mr_shine\n\n5) SpaceHobo: Discover Y1 Spacehobo G3 Devaloka\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) SpaceHobo: Build Y1 Spacehobo\n\n8) Mr_Shine: Discover G1 Mr_shine Y2 Sol\n\n9) SpaceHobo: Discover Y1 Spacehobo G3 Urbanka\n\n10) Mr_Shine: Discover G1 Sol B3 Whirlpool\n\n11) SpaceHobo: Build Y1 Spacehobo\n\n12) Mr_Shine: Build G2 Whirlpool\n\n13) SpaceHobo: Build Y2 Urbanka\n\n14) Mr_Shine: Trade G2 Y2 Whirlpool\n\n15) SpaceHobo: Trade Y1 B1 Spacehobo\n\n16) Mr_Shine: Trade G1 R1 Mr_shine\n\n17) SpaceHobo: Move B1 Spacehobo Urbanka\n\n18) Mr_Shine: Build G1 Whirlpool\n\n19) SpaceHobo: Trade Y2 G2 Urbanka\n\n20) Mr_Shine: Build G2 Whirlpool\n\n21) SpaceHobo: Move Y1 Devaloka Spacehobo\n\n22) Mr_Shine: Build G2 Mr_shine\n\n23) SpaceHobo: Build G3 Urbanka\n\n24) Mr_Shine: Sacrifice Y2 Whirlpool\nMove G1 Whirlpool Spacehobo\nMove G1 Spacehobo Urbanka\nCatastrophe Urbanka G\n\n25) SpaceHobo: Trade Y1 G1 Spacehobo\n\n26) Mr_Shine: Trade G2 Y2 Whirlpool\n\n27) SpaceHobo: Build G2 Spacehobo\n\n28) Mr_Shine: Move G1 Whirlpool Spacehobo\nCatastrophe Spacehobo G\n\n29) SpaceHobo: Trade Y3 G3 Spacehobo\n\n30) Mr_Shine: Move G3 Mr_shine Spacehobo\n\n31) SpaceHobo: Trade G3 R3 Spacehobo\n\n32) Mr_Shine: Sacrifice R1 Mr_shine\nAttack R3 Spacehobo\n\n\nHomeworlds Online (SDG# 9165)\nStarted: 2007.8.28, Ended: 2007.8.29\nParticipants: SpaceHobo (S), Polyhymnia (N)\nWinner: SpaceHobo\n\n1) Polyhymnia: Homeworld Y1 G2 B3\n\n2) SpaceHobo: Homeworld B1 Y2 G3\n\n3) Polyhymnia: Build B1 Polyhymnia\n\n4) SpaceHobo: Build G1 Spacehobo\n\n5) Polyhymnia: Build B1 Polyhymnia\n\n6) SpaceHobo: Build G1 Spacehobo\n\n7) Polyhymnia: Build B2 Polyhymnia\n\n8) SpaceHobo: Discover G1 Spacehobo B3 Marylebone\n\n9) Polyhymnia: Move B2 Polyhymnia Marylebone\n\n10) SpaceHobo: Build G1 Marylebone\n\n11) Polyhymnia: Trade B2 G2 Marylebone\n\tSpaceHobo: That guy isn&#39;t watching the game any more.\n\n12) SpaceHobo: Trade G1 Y1 Marylebone\n\n13) Polyhymnia: Build G1 Marylebone\n\n14) SpaceHobo: Build G2 Marylebone\n\n15) Polyhymnia: Build G3 Marylebone\n\n16) SpaceHobo: Trade G2 B2 Marylebone\n\n17) Polyhymnia: Trade G3 R3 Marylebone\n\n18) SpaceHobo: Move B2 Marylebone Polyhymnia\nCatastrophe Polyhymnia B\n\n\nHomeworlds Online (SDG# 9183)\nStarted: 2007.8.29, Ended: 2007.8.29\nParticipants: SpaceHobo (S), Polyhymnia (N)\nWinner: Polyhymnia\n\n1) Polyhymnia: Homeworld G2 B1 Y3\n\n2) SpaceHobo: Homeworld Y1 B3 G3\n\n3) Polyhymnia: Build Y1 Polyhymnia\n\n4) SpaceHobo: Build G1 Spacehobo\n\n5) Polyhymnia: Discover Y1 Polyhymnia G3 Botanico\n\n6) SpaceHobo: Trade G1 Y1 Spacehobo\n\n7) Polyhymnia: Build Y2 Botanico\n\n8) SpaceHobo: Build Y2 Spacehobo\n\n9) Polyhymnia: Discover Y2 Botanico Y2 Citagazze\n\n10) SpaceHobo: Discover Y2 Spacehobo B2 Svalbard\n\n11) Polyhymnia: Build Y3 Polyhymnia\n\n12) SpaceHobo: Build Y3 Spacehobo\n\n13) Polyhymnia: Move Y2 Citagazze Spacehobo\nCatastrophe Spacehobo Yellow\n\n14) SpaceHobo: Build G1 Spacehobo\n\n15) Polyhymnia: Build Y1 Botanico\n\n16) SpaceHobo: Trade G3 Y3 Spacehobo\n\n17) Polyhymnia: Trade Y3 B3 Polyhymnia\n\n18) SpaceHobo: Build G1 Spacehobo\n\n19) Polyhymnia: Move B3 Polyhymnia Botanico\n\n20) SpaceHobo: Build G1 Spacehobo\n\n21) Polyhymnia: Build Y1 Polyhymnia\n\n22) SpaceHobo: Build G2 Spacehobo\n\n23) Polyhymnia: Move Y1 Polyhymnia Spacehobo\nCatastrophe Spacehobo Green\n\n24) SpaceHobo: Trade Y3 G3 Spacehobo\n\n25) Polyhymnia: Build Y2 Polyhymnia\n\n26) SpaceHobo: Move Y2 Svalbard Spacehobo\n\n27) Polyhymnia: Build Y2 Botanico\n\n28) SpaceHobo: Sacrifice G3 Spacehobo\nBuild Y3 Spacehobo\nBuild Y3 Spacehobo\nPass\n\n29) Polyhymnia: Move Y2 Polyhymnia Spacehobo\nCatastrophe Spacehobo Yellow\n\n\nHomeworlds Online (SDG# 8749)\nVariants: &quot;Hard time&quot;\nStarted: 2007.8.29, Ended: 2007.9.16\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R3 B1 G3\n\n2) mneme: Homeworld R1 G2 B3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy...\n\n4) mneme: Build B1 Mneme\n\tmneme: hey.  When was the last time you -lost- a game of this?\r\n\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) mneme: Build B2 Mneme\n\tTwoShort: Well, besides an accidental time-out over my summer vacation, Mike Yarrum beat me in May.  He played a really excellent game right after losing a couple via newbie blunders that lulled me into a false sense of security.  Unfortunately, I already know you&#39;re pretty good :) \n\n7) TwoShort: Build B2 Twoshort\n\tmneme: Yeah, that one doesn&#39;t help me too much, even though I&#39;ve never beaten you.\r\n\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) TwoShort: Trade B2 Y2 Twoshort\n\n10) mneme: Trade B2 G2 Mneme\n\n11) TwoShort: Build B2 Twoshort\n\n12) mneme: Build B2 Mneme\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) mneme: Discover B2 Mneme G3 Apple\n\n15) TwoShort: Build G1 Twoshort\n\n16) mneme: Build Y1 Mneme\n\n17) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n18) mneme: Move Y1 Mneme Apple\n\n19) TwoShort: Build G1 Twoshort\n\n20) mneme: Discover G2 Mneme G3 Stash\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n22) mneme: Build Y1 Mneme\n\n23) TwoShort: Move Y1 Twoshort Grogar\n\n24) mneme: Sacrifice G2 Stash\nBuild B2 Apple\nBuild B3 Mneme\n\tmneme: eh -- should have traded y for g in my home system rather than letting you freeze me out of effective g.  :(\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\tTwoShort: Agreed... and as long as I&#39;m freezing you out of green, I guess I&#39;ll push it. :)\n\n26) mneme: Trade B2 R2 Apple\n\n27) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yolonda\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n28) mneme: Build Y3 Apple\n\n29) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar Apple\nMove Y2 Grogar Apple\nCatastrophe Apple Yellow\n\n30) mneme: Move Y1 Mneme Apple\n\n31) TwoShort: Trade G2 R2 Twoshort\n\n32) mneme: Build Y1 Apple\n\n33) TwoShort: Sacrifice G3 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n34) mneme: Build Y2 Mneme\n\n35) TwoShort: Move Y1 Twoshort Grogar\n\n36) mneme: Discover B3 Mneme Y3 Winter\n\n37) TwoShort: Build Y2 Grogar\n\n38) mneme: Build R1 Apple\n\n39) TwoShort: Discover Y1 Grogar B3 Bluestar\n\n40) mneme: Move B3 Winter Yolonda\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Apple\nMove G1 Yolonda Apple\nMove G2 Yolonda Apple\nCatastrophe Apple Green\n\n42) mneme: Trade B3 G3 Yolonda\n\n43) TwoShort: Trade G3 Y3 Twoshort\n\n44) mneme: Build G1 Yolonda\n\n45) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Grogar\nBuild Y1 Bluestar\nBuild Y3 Twoshort\n\n46) mneme: Build B2 Mneme\n\n47) TwoShort: Sacrifice Y2 Grogar\nMove Y1 Bluestar Mneme\nMove Y1 Bluestar Mneme\nCatastrophe Mneme Yellow\n\n48) mneme: Trade B2 Y2 Mneme\n\n49) TwoShort: Move Y3 Twoshort Yolonda\n\n50) mneme: Discover G3 Yolonda Y3 Tmp\n\n51) TwoShort: Discover Y3 Yolonda B3 Boom\n\n52) mneme: Move G3 Tmp Mneme\n\n53) TwoShort: Trade Y3 G3 Boom\n\tmneme: I&#39;d kinda rather you had gone for the quick kill -- dropping a 3 in my home system the turn after the catastrophe.  Why didn&#39;t you?\r\n\n\tTwoShort: I&#39;d have gone for it if I thought it would work :)  Let&#39;s see... After you flipped your 2 to yellow, if I sacrificed one of my y3s to put the other one in your homeworld, you could have sacrificed your g3 to build a two yellows (and a b2), causing a catastrophe and leaving nobody with any 3s.  So, not a kill, and while I&#39;d have been at an advantage, I think I&#39;m at a bigger one this way.\n\tTwoShort: I was fully expecting to go for the kill, and when you traded to yellow I was surprised and impressed you found the way to fend me off.\n\n54) mneme: Build B2 Mneme\n\tmneme: Fair enough -- I did flip to green to try to head you off for a few more turns.  Very much a forgone conclusion at this point, though.\n\n55) TwoShort: Build G1 Boom\n\n56) mneme: Discover B2 Mneme Y3 Jacinth\n\n57) TwoShort: Move B2 Twoshort Yolonda\n\n58) mneme: Sacrifice G3 Mneme\nBuild B2 Mneme\nBuild B3 Mneme\nBuild B3 Jacinth\n\n59) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Boom Mneme\nMove B1 Grogar Boom\nMove B1 Boom Mneme\nCatastrophe Mneme Blue\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 8997)\nVariants: &quot;Hard time&quot;\nStarted: 2007.8.29, Ended: 2007.10.8\nParticipants: Jesse (S), mneme (N)\nWinner: Jesse\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld R3 B1 G3\n\tJesse: Have a good game.\n\n3) mneme: Build G1 Mneme\n\n4) Jesse: Build G1 Jesse\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) mneme: Build G1 Mneme\n\n8) Jesse: Build G1 Jesse\n\n9) mneme: Trade G1 B1 Mneme\n\n10) Jesse: Trade G1 B1 Jesse\n\n11) mneme: Build G1 Mneme\n\n12) Jesse: Build G1 Jesse\n\n13) mneme: Build B2 Mneme\n\n14) Jesse: Build B2 Jesse\n\n15) mneme: Discover B2 Mneme G3 Verdant\n\n16) Jesse: Trade B2 Y2 Jesse\n\n17) mneme: Trade B1 R1 Mneme\n\n18) Jesse: Discover Y2 Jesse G2 Purple\n\n19) mneme: Build R1 Mneme\n\n20) Jesse: Trade G3 R3 Jesse\n\n21) mneme: Move R1 Mneme Verdant\n\n22) Jesse: Build R2 Jesse\n\n23) mneme: Build R2 Verdant\n\n24) Jesse: Move R2 Jesse Purple\n\n25) mneme: Trade R2 Y2 Verdant\n\n26) Jesse: Build R2 Purple\n\n27) mneme: Build Y1 Verdant\n\n28) Jesse: Trade R3 Y3 Jesse\n\n29) mneme: Build R2 Verdant\n\n30) Jesse: Discover R2 Purple Y3 Ecru\n\n31) mneme: Trade R1 B1 Verdant\n\n32) Jesse: Move B1 Jesse Purple\n\n33) mneme: Discover Y2 Verdant G2 Brilliant\n\n34) Jesse: Build B2 Purple\n\n35) mneme: Move B1 Verdant Brilliant\n\n36) Jesse: Discover B2 Purple Y3 Olive\n\n37) mneme: Build B3 Brilliant\n\n38) Jesse: Build B3 Purple\n\n39) mneme: Build B3 Verdant\n\n40) Jesse: Trade B3 G3 Purple\n\n41) mneme: Trade B2 Y2 Verdant\n\n42) Jesse: Move G3 Purple Ecru\n\n43) mneme: Move Y1 Verdant Brilliant\n\n44) Jesse: Discover Y1 Jesse G2 Aqua\n\n45) mneme: Discover R1 Mneme B3 Bluebird\n\n46) Jesse: Build G1 Ecru\n\n47) mneme: Move G1 Mneme Bluebird\n\n48) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild R1 Ecru\nBuild R3 Purple\n\n49) mneme: Build R3 Bluebird\n\n50) Jesse: Build B2 Purple\n\n51) mneme: Sacrifice Y2 Brilliant\nMove R2 Verdant Purple\nMove R1 Bluebird Purple\nCatastrophe Purple R\n\n52) Jesse: Move B2 Olive Aqua\n\n53) mneme: Build R1 Bluebird\n\n54) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild Y2 Jesse\nBuild Y3 Aqua\n\n55) mneme: Sacrifice Y2 Verdant\nMove R3 Bluebird Purple\nMove R1 Bluebird Purple\n\n56) Jesse: Sacrifice Y2 Jesse\nMove R2 Ecru Purple\nMove R1 Ecru Purple\nCatastrophe Purple R\n\n57) mneme: Sacrifice G1 Bluebird\nBuild B3 Verdant\n\n58) Jesse: Sacrifice G3 Ecru\nBuild G1 Ecru\nBuild G3 Ecru\nBuild Y2 Jesse\n\n59) mneme: Trade B3 R3 Brilliant\n\n60) Jesse: Trade B1 R1 Purple\n\n61) mneme: Trade B3 R3 Verdant\n\n62) Jesse: Trade Y1 R1 Aqua\n\n63) mneme: Build Y1 Brilliant\n\n64) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild Y2 Aqua\nBuild R2 Purple\n\n65) mneme: Move Y1 Brilliant Jesse\n\n66) Jesse: Discover Y2 Jesse R2 White\n\n67) mneme: Attack G1 Jesse\n\n68) Jesse: Sacrifice R2 Purple\nAttack Y1 Jesse\nAttack G1 Jesse\n\n69) mneme: Build R2 Brilliant\n\n70) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild B1 Aqua\nBuild B3 Purple\n\n71) mneme: Build B3 Brilliant\n\n72) Jesse: Build R2 Purple\n\n73) mneme: Move Y1 Brilliant Verdant\n\n74) Jesse: Move B2 Purple Ecru\n\tmneme: your game to lose.\r\n\n\n75) mneme: Move B3 Verdant White\n\n76) Jesse: Sacrifice Y2 White\nDiscover G1 Ecru Y2 Elbow\nMove R1 Purple Ecru\n\n77) mneme: Move R3 Verdant Elbow\n\n78) Jesse: Move G1 Elbow Ecru\n\n79) mneme: Move R3 Elbow Verdant\n\n80) Jesse: Build Y2 Purple\n\n81) mneme: Move Y1 Verdant Brilliant\n\n82) Jesse: Move G1 Ecru Brilliant\n\n83) mneme: Move B3 Brilliant Verdant\n\n84) Jesse: Sacrifice Y2 Purple\nMove G1 Ecru Brilliant\nMove G1 Jesse Brilliant\nCatastrophe Brilliant G\n\n85) mneme: Build G1 Mneme\n\n86) Jesse: Build G1 Ecru\n\n87) mneme: Discover G1 Mneme R3 Ack\n\n88) Jesse: Move B3 Purple Ack\n\n89) mneme: Sacrifice G1 Ack\nBuild R2 Verdant\n\n90) Jesse: Move R2 Purple Ecru\n\n91) mneme: Trade R2 Y2 Verdant\n\n92) Jesse: Build B1 Ecru\n\n93) mneme: Build Y1 Verdant\n\n94) Jesse: Sacrifice Y3 Aqua\nMove B3 Ack Mneme\nMove B2 Ecru Mneme\nMove B1 Ecru Mneme\nCatastrophe Mneme B\n\n95) mneme: Build Y3 Mneme\n\n96) Jesse: Sacrifice Y3 Jesse\nMove R1 Aqua Mneme\nMove R2 Ecru Mneme\nMove R1 Ecru Mneme\nCatastrophe Mneme R\n\tmneme: gg\r\n\n\n\tJesse: You too.\n\nHomeworlds Online (SDG# 9063)\nStarted: 2007.8.29, Ended: 2007.9.24\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) ts52: Homeworld R3 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) mneme: Build G1 Mneme\n\n8) ts52: Build G1 Ts52\n\n9) mneme: Trade G1 R1 Mneme\n\n10) ts52: Build G1 Ts52\n\n11) mneme: Build R1 Mneme\n\n12) ts52: Discover G1 Ts52 B1 Blueberry\n\n13) mneme: Discover R1 Mneme G3 Redwood\n\n14) ts52: Build Y1 Ts52\n\n15) mneme: Build R2 Mneme\n\n16) ts52: Build Y2 Ts52\n\n17) mneme: Build Y2 Mneme\n\n18) ts52: Trade Y2 R2 Ts52\n\n19) mneme: Build R2 Redwood\n\n20) ts52: Move R2 Ts52 Blueberry\n\n21) mneme: Trade R2 B2 Mneme\n\n22) ts52: Build Y2 Ts52\n\n23) mneme: Move Y1 Mneme Redwood\n\n24) ts52: Move Y2 Ts52 Blueberry\n\n25) mneme: Discover B2 Mneme Y3 Sirius\n\n26) ts52: Move G1 Ts52 Blueberry\n\n27) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Redwood\n\n28) ts52: Trade G1 B1 Blueberry\n\n29) mneme: Trade Y2 G2 Mneme\n\n30) ts52: Build Y2 Blueberry\n\n31) mneme: Discover Y3 Redwood B1 Outpost\n\n32) ts52: Discover B1 Blueberry G3 Oscar\n\n33) mneme: Move Y3 Outpost Oscar\n\n34) ts52: Trade B1 G1 Oscar\n\n35) mneme: Sacrifice R1 Redwood\nAttack G1 Oscar\n\n36) ts52: Build G1 Ts52\n\n37) mneme: Sacrifice B2 Sirius\nTrade Y3 B3 Oscar\nTrade G1 R1 Oscar\n\n38) ts52: Discover Y2 Blueberry B3 Grover\n\n39) mneme: Sacrifice Y1 Redwood\nMove B3 Oscar Blueberry\n\n40) ts52: Sacrifice G3 Ts52\nBuild Y1 Grover\nBuild Y3 Blueberry\nBuild Y3 Ts52\n\n41) mneme: Sacrifice R2 Redwood\nAttack Y3 Blueberry\nAttack R2 Blueberry\n\n42) ts52: Trade Y2 R2 Grover\n\n43) mneme: Sacrifice Y2 Mneme\nMove Y3 Blueberry Ts52\nMove B3 Blueberry Ts52\nCatastrophe Ts52 Y\n\n44) ts52: Build G1 Ts52\n\tmneme: and...we&#39;re done.  good game.\n\n45) mneme: Sacrifice R2 Blueberry\nAttack G1 Ts52\nAttack G1 Ts52\n\tts52: Wow. Thanks for the game.\n\n\nHomeworlds Online (SDG# 9086)\nStarted: 2007.8.29, Ended: 2007.11.27\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld G3 Y1 B3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) mneme: Build G1 Mneme\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) mneme: Trade G1 B1 Mneme\n\n7) MikeYarrum: Discover B1 Mikeyarrum G2 Chihiro\n\n8) mneme: Build B2 Mneme\n\n9) MikeYarrum: Build B2 Chihiro\n\n10) mneme: Trade B2 Y2 Mneme\n\n11) MikeYarrum: Trade B2 Y2 Chihiro\n\n12) mneme: Discover B1 Mneme G3 Pine\n\n13) MikeYarrum: Trade B1 R1 Chihiro\n\n14) mneme: Build G1 Mneme\n\n15) MikeYarrum: Move R1 Chihiro Pine\n\n16) mneme: Build G1 Mneme\n\n17) MikeYarrum: Attack B1 Pine\n\n18) mneme: Build Y1 Mneme\n\n19) MikeYarrum: Trade B1 G1 Pine\n\n20) mneme: Trade G1 R1 Mneme\n\n21) MikeYarrum: Build R2 Pine\n\n22) mneme: Discover Y2 Mneme R3 Disaster\n\n23) MikeYarrum: Build B1 Mikeyarrum\n\n24) mneme: Trade G1 B1 Mneme\n\n25) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n26) mneme: Discover R1 Mneme Y3 Sign\n\n27) MikeYarrum: Move Y1 Mikeyarrum Chihiro\n\n28) mneme: Build Y2 Mneme\n\n29) MikeYarrum: Move Y1 Chihiro Pine\n\n30) mneme: Trade Y2 G2 Mneme\n\n31) MikeYarrum: Move R1 Pine Chihiro\n\n32) mneme: Move G2 Mneme Sign\n\n33) MikeYarrum: Build R2 Chihiro\n\n34) mneme: Discover B1 Mneme Y3 Beauty\n\n35) MikeYarrum: Move R2 Chihiro Beauty\n\n36) mneme: Sacrifice G2 Sign\nBuild Y2 Disaster\nBuild Y3 Mneme\n\n37) MikeYarrum: Attack B1 Beauty\n\n38) mneme: Trade Y1 B1 Mneme\n\n\nHomeworlds Online (SDG# 9143)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.8.29, Ended: 2007.8.30\nParticipants: mneme (S), scottobear (N)\nWinner: mneme\n\n1) scottobear: Homeworld G2 B3 Y3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) scottobear: Discover Y3 Scottobear R1 Boog\n\tscottobear: whoops. \n\tscottobear: sorry about that.. I couldn&#39;t undo!\n\tmneme: doh!  I though the system stopped you from such silliness, but I guess not.\r\n\n\n\nHomeworlds Online (SDG# 9185)\nVariants: &quot;Hard time&quot;\nStarted: 2007.8.29, Ended: 2007.9.2\nParticipants: mneme (S), Mr_Shine (N)\nWinner: mneme\n\n1) Mr_Shine: Homeworld B1 Y3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) Mr_Shine: Build G1 Mr_shine\n\n4) mneme: Build G1 Mneme\n\n5) Mr_Shine: Discover G1 Mr_shine B2 Kobol\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) Mr_Shine: Build G1 Mr_shine\n\n8) mneme: Build Y1 Mneme\n\n9) Mr_Shine: Discover G1 Mr_shine B2 Caprica\n\n10) mneme: Build Y1 Mneme\n\n11) Mr_Shine: Build G1 Kobol\n\n12) mneme: Build G2 Mneme\n\n13) Mr_Shine: Build G2 Mr_shine\n\n14) mneme: Discover Y1 Mneme G3 Rough\n\n15) Mr_Shine: Build G2 Caprica\n\n16) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y2 Rough\nBuild Y2 Mneme\n\n17) Mr_Shine: Trade G2 Y2 Caprica\n\n18) mneme: Trade Y1 B1 Mneme\n\n19) Mr_Shine: Trade G1 B1 Kobol\n\n20) mneme: Move B1 Mneme Rough\n\n\nHomeworlds Online (SDG# 9197)\nStarted: 2007.8.29, Ended: 2007.8.29\nParticipants: Polyhymnia (S), SpaceHobo (N)\nWinner: SpaceHobo\n\n1) SpaceHobo: Homeworld Y1 B2 G3\n\n2) Polyhymnia: Homeworld B2 G3 Y3\n\n3) SpaceHobo: Build G1 Spacehobo\n\n4) Polyhymnia: Build Y1 Polyhymnia\n\n5) SpaceHobo: Discover G1 Spacehobo Y3 Pimlico\n\n6) Polyhymnia: Discover Y1 Polyhymnia G1 Mornington\n\n7) SpaceHobo: Build G1 Spacehobo\n\n8) Polyhymnia: Build Y1 Mornington\n\n9) SpaceHobo: Sacrifice G3 Spacehobo\nBuild G2 Spacehobo\nBuild G2 Spacehobo\nBuild G2 Spacehobo\n\n10) Polyhymnia: Build Y2 Mornington\n\n11) SpaceHobo: Trade G2 Y2 Spacehobo\n\n12) Polyhymnia: Build Y2 Polyhymnia\n\n13) SpaceHobo: Build Y3 Spacehobo\n\n14) Polyhymnia: Trade Y2 G2 Polyhymnia\n\n15) SpaceHobo: Build G3 Pimlico\n\n16) Polyhymnia: Build G3 Polyhymnia\n\n17) SpaceHobo: Move Y2 Spacehobo Pimlico\n\n18) Polyhymnia: Move Y1 Mornington Pimlico\n\n19) SpaceHobo: Discover G3 Pimlico B1 Plaistow\n\n20) Polyhymnia: Trade G3 R3 Polyhymnia\n\n21) SpaceHobo: Build G3 Plaistow\n\n22) Polyhymnia: Build Y2 Polyhymnia\n\n23) SpaceHobo: Trade G3 R3 Plaistow\n\n24) Polyhymnia: Move Y2 Mornington Pimlico\n\n25) SpaceHobo: Build G3 Plaistow\n\n26) Polyhymnia: Move Y2 Pimlico Spacehobo\n\n27) SpaceHobo: Sacrifice Y2 Pimlico\nMove G3 Plaistow Polyhymnia\nMove G3 Plaistow Polyhymnia\n\n28) Polyhymnia: Attack G3 Polyhymnia\n\n29) SpaceHobo: Sacrifice R3 Plaistow\nAttack R3 Polyhymnia\nAttack G3 Polyhymnia\nAttack Y3 Polyhymnia\n\n30) Polyhymnia: Move Y1 Mornington Polyhymnia\nCatastrophe Polyhymnia Green\n\n31) SpaceHobo: Sacrifice R3 Polyhymnia\nAttack Y2 Polyhymnia\nAttack Y1 Polyhymnia\nPass\n\n\nHomeworlds Online (SDG# 9202)\nStarted: 2007.8.30, Ended: 2008.2.22\nParticipants: Polyhymnia (S), SpaceHobo (N)\nWinner: SpaceHobo\n\n1) SpaceHobo: Homeworld B3 Y2 G3\n\n2) Polyhymnia: Homeworld G3 B1 Y3\n\n3) SpaceHobo: Build G1 Spacehobo\n\n4) Polyhymnia: Build Y1 Polyhymnia\n\n5) SpaceHobo: Trade G1 Y1 Spacehobo\n\n6) Polyhymnia: Discover Y1 Polyhymnia B2 Neverwhere\n\n7) SpaceHobo: Discover Y1 Spacehobo G1 Signaltonoise\n\n8) Polyhymnia: Build Y1 Polyhymnia\n\n9) SpaceHobo: Build G1 Spacehobo\n\n10) Polyhymnia: Build Y2 Polyhymnia\n\n11) SpaceHobo: Build G1 Spacehobo\n\n12) Polyhymnia: Move Y1 Polyhymnia Neverwhere\n\n13) SpaceHobo: Move G1 Spacehobo Signaltonoise\n\n14) Polyhymnia: Move Y1 Neverwhere Signaltonoise\n\n15) SpaceHobo: Build G2 Spacehobo\n\n16) Polyhymnia: Build Y2 Signaltonoise\n\n17) SpaceHobo: Discover G1 Spacehobo B1 Sandman\n\n18) Polyhymnia: Build Y3 Polyhymnia\n\n19) SpaceHobo: Discover G1 Signaltonoise B2 Stardust\n\n20) Polyhymnia: Trade Y3 R3 Polyhymnia\n\n21) SpaceHobo: Sacrifice G3 Spacehobo\nBuild G2 Stardust\nBuild G2 Stardust\nBuild G3 Spacehobo\n\n22) Polyhymnia: Build Y3 Polyhymnia\n\n23) SpaceHobo: Sacrifice G3 Spacehobo\nBuild G3 Spacehobo\nBuild G3 Spacehobo\nBuild Y3 Signaltonoise\n\n24) Polyhymnia: Move Y2 Signaltonoise Neverwhere\n\n25) SpaceHobo: Trade G3 R3 Spacehobo\n\n26) Polyhymnia: Move Y3 Polyhymnia Stardust\n\n27) SpaceHobo: Build G3 Spacehobo\n\n\nHomeworlds Online (SDG# 9192)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.8.30, Ended: 2007.9.6\nParticipants: scottobear (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) scottobear: Homeworld R2 B1 G3\n\tscottobear: thanks!\n\n3) mneme: Build G1 Mneme\n\n4) scottobear: Build G1 Scottobear\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) mneme: Build G1 Mneme\n\n8) scottobear: Build G1 Scottobear\n\n9) mneme: Trade G1 B1 Mneme\n\n10) scottobear: Trade G1 B1 Scottobear\n\n11) mneme: Build B2 Mneme\n\n12) scottobear: Build B2 Scottobear\n\n13) mneme: Discover B1 Mneme Y3 Bb\n\n14) scottobear: Discover B1 Scottobear Y3 Ips\n\n15) mneme: Sacrifice G3 Mneme\nBuild B3 Mneme\nBuild B3 Bb\nBuild B3 Bb\n\tmneme: huh.  didn&#39;t remember this was a small universe game!\n\n16) scottobear: Move B1 Ips Mneme\n\tscottobear: wow... I have no idea how you did that!\n\n17) mneme: Sacrifice B2 Mneme\nTrade B3 G3 Mneme\nTrade B3 R3 Bb\n\n18) scottobear: Trade B2 R2 Scottobear\n\tmneme: it was actually a blunder -- but you forgot to actually -cause- the catastrophe that would have decimated my homeworld.\r\n\n\tmneme: And...um...read the rules on sacrifices.  they&#39;re important.\r\n\n\tscottobear: that was my plan, to blow up the system.\r\n\n\n19) mneme: Attack B1 Mneme\n\tmneme: Yes.  But to do that, you have to specify the catastrophe at the end of the move where you cause it.  Otherwise, I can act to prevent the catastrophe, if possible\n\n20) scottobear: Build Y1 Scottobear\n\tscottobear: I see... I just failed to activate it?\n\n21) mneme: Build Y2 Mneme\n\tmneme: yes.  you have to explicitly cause a catastrophe at the end of your turn, or it doesn&#39;t happen.\n\n22) scottobear: Move Y1 Scottobear Bb\n\tscottobear: that&#39;ll teach me!\n\n23) mneme: Attack Y1 Bb\n\n24) scottobear: Move R2 Scottobear Bb\n\n25) mneme: Attack R2 Bb\n\tmneme: this whole &quot;moving your ships into my systems with r&quot; plan doesn&#39;t work all that well, you know.\n\n26) scottobear: Trade Y1 R1 Scottobear\n\tscottobear: so it would appear!\n\n27) mneme: Discover B1 Mneme G3 Gnu\n\n28) scottobear: Trade R1 Y1 Scottobear\n\n29) mneme: Move Y2 Mneme Gnu\n\tscottobear: oh, I see.. it took me a sec to realize you came from your home world, rather than bb. \n\tscottobear: let&#39;s see if gnu is easier. :D\n\n30) scottobear: Build Y2 Scottobear\n\tscottobear: trade r1 y1 scottobear\r\n\n\n31) mneme: Sacrifice Y2 Gnu\nMove R3 Bb Scottobear\nMove B3 Bb Scottobear\n\n32) scottobear: Trade G3 R3 Scottobear\n\n33) mneme: Sacrifice R3 Scottobear\nAttack R3 Scottobear\nAttack Y2 Scottobear\nAttack Y1 Scottobear\n\tmneme: ok, let&#39;s finish this.\n\n\nHomeworlds Online (SDG# 9213)\nStarted: 2007.8.30, Ended: 2008.2.22\nParticipants: geoperry (S), SpaceHobo (N)\nWinner: geoperry\n\n1) SpaceHobo: Homeworld G1 Y2 B3\n\n2) geoperry: Homeworld B1 Y3 G3\n\n3) SpaceHobo: Build B1 Spacehobo\n\n4) geoperry: Build G1 Geoperry\n\n5) SpaceHobo: Discover B1 Spacehobo Y3 Cockfosters\n\n6) geoperry: Discover G1 Geoperry R2 Clever\n\n7) SpaceHobo: Build B1 Spacehobo\n\n8) geoperry: Build G1 Clever\n\n9) SpaceHobo: Move B1 Spacehobo Cockfosters\n\n10) geoperry: Build G2 Clever\n\n11) SpaceHobo: Build B2 Spacehobo\n\n12) geoperry: Build G2 Clever\n\n13) SpaceHobo: Trade B3 G3 Spacehobo\n\n14) geoperry: Build G2 Geoperry\n\n\nHomeworlds Online (SDG# 9214)\nStarted: 2007.8.30, Ended: 2007.8.30\nParticipants: SpaceHobo (S), rattus (N)\nWinner: SpaceHobo\n\n1) rattus: Homeworld B1 Y3 G3\n\n2) SpaceHobo: Homeworld Y2 G1 B3\n\n3) rattus: Build G1 Rattus\n\n4) SpaceHobo: Build B1 Spacehobo\n\n5) rattus: Discover G1 Rattus Y2 Themoon\n\n6) SpaceHobo: Discover B1 Spacehobo G3 Upminster\n\n7) rattus: Build G1 Rattus\n\n8) SpaceHobo: Build B1 Upminster\n\n9) rattus: Trade G1 Y1 Rattus\n\n10) SpaceHobo: Build B2 Spacehobo\n\n11) rattus: Sacrifice G3 Rattus\nBuild Y1 Rattus\nBuild Y1 Rattus\nBuild Y2 Rattus\n\n12) SpaceHobo: Build B2 Upminster\n\n13) rattus: Build G1 Themoon\n\n14) SpaceHobo: Build B2 Spacehobo\n\n15) rattus:\nBuild G2 Themoon\nCatastrophe Rattus Y\n\n\nHomeworlds Online (SDG# 9189)\nStarted: 2007.8.30, Ended: 2008.2.22\nParticipants: Zen (S), SpaceHobo (N)\nWinner: SpaceHobo\n\n1) SpaceHobo: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 9198)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.8, Ended: 2007.9.28\nParticipants: zoltar (S), SpaceHobo (N)\nWinner: zoltar\n\n1) SpaceHobo: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) SpaceHobo: Build G1 Spacehobo\n\n4) zoltar: Build B1 Zoltar\n\n5) SpaceHobo: Build G1 Spacehobo\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) SpaceHobo: Discover G1 Spacehobo Y3 Cockfosters\n\n8) zoltar: Build B2 Zoltar\n\n9) SpaceHobo: Build G1 Cockfosters\n\n10) zoltar: Trade B2 G2 Zoltar\n\n11) SpaceHobo: Trade G1 Y1 Spacehobo\n\n12) zoltar: Build B2 Zoltar\n\tzoltar: Oops. You have 4 greens in your homeworld.  If it were not for this fact, your move would be a good one.  Unfortunately, I can make any move (such as building the last green ship) and then add &quot;c SpaceHobo g&quot; as the last line of my move, and all your greens will blow up and your homeworld will be empty and you will lose the game.  So why don&#39;t you undo that move and make a different one, such as moving a green out or trading a green for another color.\n\n13) SpaceHobo: Build G1 Spacehobo\n\n14) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo\n\n15) SpaceHobo: Trade G1 R1 Spacehobo\n\n16) zoltar: Trade B2 R2 Zoltar\n\n17) SpaceHobo: Discover G1 Cockfosters G1 Upminster\n\n18) zoltar: Build B2 Zoltar\n\n\nHomeworlds Online (SDG# 9203)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.9.8, Ended: 2007.9.18\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld B2 G3 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Trade Y1 R1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Discover R1 Scottobear G1 Xx\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Build R1 Xx\n\n10) zoltar: Build G1 Zoltar\n\n11) scottobear: Build Y1 Scottobear\n\n12) zoltar: Discover G1 Zoltar B3 Bloohoohoo\n\n13) scottobear: Move Y1 Scottobear Xx\n\n14) zoltar: Build G2 Bloohoohoo\n\n15) scottobear: Move R1 Xx Bloohoohoo\n\n16) zoltar: Build G2 Bloohoohoo\n\n17) scottobear:\n\nAttack G1 Bloohoohoo\n\n18) zoltar: Trade G2 R2 Bloohoohoo\n\n19) scottobear: Build R1 Bloohoohoo\n\n20) zoltar: Sacrifice R2 Bloohoohoo\nAttack R1 Bloohoohoo\nAttack R1 Bloohoohoo\n\n21) scottobear: Build R2 Xx\n\n22) zoltar: Attack G1 Bloohoohoo\n\n23) scottobear: Move R2 Xx Bloohoohoo\n\n24) zoltar: Sacrifice R1 Bloohoohoo\nAttack R2 Bloohoohoo\n\n25) scottobear: Build R1 Xx\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bloohoohoo\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n27) scottobear: Move R1 Xx Scottobear\n\n28) zoltar: Sacrifice Y1 Zoltar\nMove G2 Bloohoohoo Xx\n\n29) scottobear: Build Y1 Scottobear\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild G2 Xx\nBuild G3 Bloohoohoo\n\n31) scottobear: Move R1 Xx Scottobear\n\tscottobear: ack! :D\n\n32) zoltar: Sacrifice R1 Bloohoohoo\nAttack Y1 Xx\n\n33) scottobear: Build R1 Scottobear\n\n34) zoltar: Trade G3 Y3 Bloohoohoo\n\n35) scottobear: Move R1 Scottobear Xx\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Bloohoohoo\nBuild Y1 Xx\n\n37) scottobear: Move R1 Scottobear Xx\n\n38) zoltar: Sacrifice R2 Bloohoohoo\nAttack R1 Xx\nAttack R1 Xx\n\n39) scottobear: Trade Y3 R3 Scottobear\n\tzoltar: The xx system has been conquered by the Imperial Zoltarian Fleet.  Hail Zoltar, Mighty Galactic Evil Overlord! [Insert sinister evil overlord laughter here]\n\tscottobear: oh, the humanity!!\n\n40) zoltar: Sacrifice Y3 Bloohoohoo\nMove R1 Xx Scottobear\nMove R1 Xx Scottobear\nMove G2 Xx Scottobear\nCatastrophe Scottobear R\n\n41) scottobear: Build Y2 Scottobear\n\n42) zoltar: Trade G3 R3 Bloohoohoo\n\tzoltar: Prepare to be boarded, hyu-maahn beanz!\n\tscottobear: ah, well. Humanity had a good run. Let&#39;s hear it for our new zoltarian masters!\n\n43) scottobear: Trade Y2 R2 Scottobear\n\n44) zoltar: Sacrifice R3 Bloohoohoo\nAttack Y1 Scottobear\nAttack R2 Scottobear\nPass\n\tzoltar: Play again, primitive carbon waterbag unit?\n\tscottobear: sure, I&#39;m for it!\n\n\nHomeworlds Online (SDG# 9312)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.9, Ended: 2007.10.7\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld R2 B3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) mneme: Build G1 Mneme\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) mneme: Build G1 Mneme\n\n9) MikeYarrum: Discover G1 Mikeyarrum B1 Chubbz\n\n10) mneme: Discover G1 Mneme B3 Bluebird\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) mneme: Build G2 Bluebird\n\n13) MikeYarrum: Build G2 Chubbz\n\n14) mneme: Trade G2 R2 Bluebird\n\n15) MikeYarrum: Trade G1 R1 Chubbz\n\n16) mneme: Build G1 Mneme\n\n17) MikeYarrum: Trade G2 Y2 Chubbz\n\n18) mneme: Build G2 Bluebird\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) mneme: Sacrifice G3 Mneme\nBuild G2 Bluebird\nBuild G3 Mneme\nBuild G3 Mneme\n\n\nHomeworlds Online (SDG# 9308)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.9.10, Ended: 2007.9.19\nParticipants: scottobear (S), Visible (N)\nWinner: Visible\n\n1) Visible: Homeworld G2 Y1 B3\n\tVisible: Hey there. my first game of Homeworlds. Good luck!\n\n2) scottobear: Homeworld B3 G2 Y3\n\n3) Visible: Build B1 Visible\n\n4) scottobear: Build Y1 Scottobear\n\tscottobear: great! I&#39;m still very new, too! have fun!\n\n5) Visible: Discover B1 Visible Y3 Invisible\n\n6) scottobear: Trade Y1 R1 Scottobear\n\n7) Visible: Build B1 Visible\n\n8) scottobear: Discover R1 Scottobear G1 Shiny\n\n9) Visible: Trade B1 R1 Invisible\n\n10) scottobear: Build R1 Shiny\n\n11) Visible: Discover R1 Invisible Y1 Devisible\n\n12) scottobear:\nBuild Y1 Scottobear\n\n13) Visible: Trade B3 G3 Visible\n\n14) scottobear: Build Y2 Scottobear\n\n15) Visible: Move R1 Devisible Scottobear\n\n16) scottobear: Trade Y2 R2 Scottobear\n\n17) Visible: Attack Y1 Scottobear\n\n18) scottobear: Attack R1 Scottobear\n\tVisible: Hmmm.\n\n19) Visible: Discover Y1 Scottobear G1 Revisible\n\n20) scottobear: Move R2 Scottobear Revisible\n\n21) Visible: Discover Y1 Revisible B2 Unvisible\n\tscottobear: pretty spiffy!\n\n22) scottobear: Trade R1 Y1 Scottobear\n\n23) Visible: Trade Y1 G1 Unvisible\n\tVisible: heh. very spiffy, indeed!\n\n24) scottobear: Move Y1 Scottobear Shiny\n\n25) Visible: Sacrifice G3 Visible\nBuild G2 Unvisible\nBuild G3 Unvisible\nBuild B1 Visible\n\tVisible: hmm. that may have been a mistake. guess we&#39;ll see.\n\n26) scottobear: Build Y1 Scottobear\n\n27) Visible: Trade G2 Y2 Unvisible\n\n28) scottobear: Trade Y1 R1 Scottobear\n\n29) Visible: Trade G3 R3 Unvisible\n\n30) scottobear: Move R1 Shiny Unvisible\n\n31) Visible: Attack R1 Unvisible\n\n32) scottobear: Discover R1 Shiny G3 Bright\n\n33) Visible: Move R3 Unvisible Revisible\n\n34) scottobear: Build R2 Bright\n\n35) Visible: Attack R2 Revisible\n\n36) scottobear: Move Y1 Shiny Bright\n\n37) Visible: Sacrifice Y2 Unvisible\nMove R2 Revisible Bright\nMove R1 Unvisible Bright\nCatastrophe Bright Red\n\n38) scottobear: Discover R1 Scottobear B1 Dark\n\n39) Visible: Trade B1 Y1 Visible\n\tscottobear: very neat!\n\tVisible: Heh. Well, still not sure it was the right thing to do. Whatever, though.\n\n40) scottobear: Build Y2 Bright\n\n\n41) Visible: Sacrifice Y1 Visible\nMove R3 Revisible Scottobear\n\n42) scottobear: Trade Y3 R3 Scottobear\n\n43) Visible: Attack R3 Scottobear\n\n\tVisible: Good game!\n\tscottobear: good game! kudos on winning!!\n\tVisible: Thanks! It was a pretty close game.\n\nHomeworlds Online (SDG# 9314)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.9.11, Ended: 2007.9.14\nParticipants: scottobear (S), daengle (N)\nWinner: scottobear\n\n\nHomeworlds Online (SDG# 9329)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.12, Ended: 2008.2.24\nParticipants: dsheldon (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) dsheldon: Homeworld B2 G3 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) dsheldon: Build Y1 Dsheldon\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dsheldon: Discover Y1 Dsheldon B1 Berry\n\n7) zoltar: Build G1 Zoltar\n\n8) dsheldon: Trade Y1 G1 Berry\n\n9) zoltar: Build Y1 Zoltar\n\n10) dsheldon: Build Y1 Dsheldon\n\n11) zoltar: Build Y2 Zoltar\n\n12) dsheldon: Build Y2 Dsheldon\n\n13) zoltar: Discover Y1 Zoltar G2 Greenslime\n\n14) dsheldon: Trade Y2 G2 Dsheldon\n\n15) zoltar: Build Y2 Greenslime\n\n16) dsheldon: Trade Y1 R1 Dsheldon\n\n17) zoltar: Trade Y2 R2 Zoltar\n\n18) dsheldon: Build G1 Berry\n\n19) zoltar: Discover G1 Zoltar Y2 Yabbadabbadoo\n\n20) dsheldon: Trade G1 Y1 Berry\n\n21) zoltar: Move Y2 Greenslime Berry\n\n22) dsheldon: Sacrifice Y1 Berry\nDiscover G1 Berry Y2 Shortbus\n\n23) zoltar: Move R2 Zoltar Shortbus\n\n24) dsheldon: Build Y1 Dsheldon\n\tdsheldon: Hmm, I seem to find myself in a very poor position.\n\n25) zoltar: Build Y3 Greenslime\n\n26) dsheldon: Discover Y1 Dsheldon G1 Hope\n\n27) zoltar: Build Y3 Zoltar\n\n28) dsheldon: Discover Y1 Hope B2 Deep\n\n29) zoltar: Attack G1 Shortbus\n\n30) dsheldon: Build R1 Dsheldon\n\n31) zoltar: Build G1 Zoltar\n\n32) dsheldon: Build R2 Dsheldon\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Shortbus\nBuild G3 Yabbadabbadoo\n\n34) dsheldon: Discover R1 Dsheldon B1 Sigh\n\n35) zoltar: Trade G2 B2 Zoltar\n\n36) dsheldon: Move G2 Dsheldon Sigh\n\n37) zoltar: Sacrifice G3 Shortbus\nBuild G2 Zoltar\nBuild G3 Shortbus\nBuild B1 Zoltar\n\n38) dsheldon: Build R2 Sigh\n\n39) zoltar: Build R3 Shortbus\n\n40) dsheldon: Move Y1 Deep Sigh\n\n41) zoltar: Move R3 Shortbus Berry\n\n42) dsheldon: Move R1 Dsheldon Berry\n\n43) zoltar: Sacrifice G3 Shortbus\nBuild G3 Shortbus\nBuild R3 Shortbus\nBuild R3 Berry\n\n44) dsheldon: Move R2 Dsheldon Berry\nCatastrophe Berry R\n\n45) zoltar: Move Y3 Greenslime Sigh\n\tzoltar: With seven battlestars, the Zoltarian fleet is prepared for zee final assault on zee dsheldon homeworld. Battlestations!\n\n46) dsheldon: Sacrifice Y3 Dsheldon\nMove G2 Sigh Dsheldon\nMove R1 Sigh Shortbus\nMove R2 Sigh Shortbus\nCatastrophe Shortbus R\n\tdsheldon: The best choice of several bad options...\n\tzoltar: Yep, and the one that holds out the longest, I think.  And my response is the most agressive reply I can find, as well.\n\n47) zoltar: Move G3 Shortbus Sigh\n\tdsheldon: I&#39;m trying to do this and it&#39;s not working:\r\n\r\ns y3 dsheldon\r\nm g2 sigh dsheldon\r\nm r1 sigh shortbus\r\nm r2 sigh shortbus\r\nc shortbus r\r\n\r\nIt gives the error &quot;the dsheldon system does not exist.&quot;  I wonder if this is a failure to implement the &quot;temporarily leaving your homeworld&quot; rule.\n\tzoltar: I think that the rule doesn&#39;t work, as your homeworld disappears before the other ship returns to it. I don&#39;t think the game will let you temporarily abandon your homeworld without destroying it.\n\tdsheldon: Well, it is a pretty extreme action.  It also means I&#39;m left without large ships and in a poor position to ever get one again.  I&#39;m considering just resigning.  It&#39;s been pretty clear for most of the game that I will be defeated.\n\tAaron: I was sure that this had been tested in the past and worked fine.  I will need to run some tests.  The orderset looks fine though.  I&#39;m going to freeze the clock.  I have a paper due tomorrow but I hope to have a little time over the weekend to catch up a little bit and will look then.  Thanks for your patience.\n\tdsheldon: That sounds just fab.  Thanks for the quick response.\n\tzoltar: Cool.  We can wait and see what happens.  In the meantime, if you want to start another game, that&#39;s fine with me.  You&#39;re toast in this one no matter what, I think, but this way Aaron can fix the problem with the program in general.\n\tAaron: &quot;Fixed.&quot;  I&#39;m very sorry for the extreme delay.  Please see the forums for additional comments regarding this situation.\n\tzoltar: Whew Who!\n\n48) dsheldon: Trade G2 B2 Dsheldon\n\tdsheldon: I have no recollection of what I was doing, so I just pasted my old command in from previous comments.  It worked!  Yeah!\n\n49) zoltar: Sacrifice G3 Yabbadabbadoo\nBuild G2 Yabbadabbadoo\nBuild G3 Sigh\nBuild Y3 Berry\n\n50) dsheldon: Build B3 Dsheldon\n\n51) zoltar: Sacrifice Y3 Zoltar\nMove B1 Zoltar Shortbus\nMove B1 Shortbus Sigh\nMove B1 Sigh Dsheldon\nCatastrophe Dsheldon B\n\tdsheldon: Well, here goes my last move...\n\n\tzoltar: Ok, the game will let me move my blue ship in, but it won&#39;t let me blow up the dsheldon homeworld.  I suppose this move will do, unless Aaron&#39;s fix prevents catastrophes from ever occurring in a homeworld, which would make for an interesting handicap actually...\n\tdsheldon: Well, I must say that I&#39;m quite glad I didn&#39;t resign then because I&#39;m always glad to help find bugs.\r\n\r\nStill, I&#39;m starting to feel bad for the rest of the ladder participants.\n\tAaron: Can you copy and paste the top part of the error screen please?  Sorry for the trouble.  I was afraid I would blow something up.  Homeworlds is a complex beast.\n\tzoltar: Sure: let&#39;s see, I can undo my move, and then redo it with the catastrophe to get the white screen of death, and I&#39;ll paste that in for you.\n\tzoltar: System error\r\nerror:  \tS at /home/html/games/lib/Homeworlds/Pos.pm line 641.\r\ncontext:  \t\r\n...  \t\r\n352:  \t}\r\n353:  \t\r\n354:  \t# These are the originals\r\n355:  \tsub realwarn { CORE::warn(@_); }\r\n356:  \tsub realdie { CORE::die(@_); }\r\n357:  \t\r\n358:  \tsub id {\r\n359:  \tmy $level = shift;\r\n360:  \tmy($pack,$file,$line,$sub) = caller($level);\r\n...  \t\r\ncode stack:  \t/usr/local/lib/perl5/site_perl/5.8.8/CGI/Carp.pm:356\r\n/usr/local/lib/perl5/site_perl/5.8.8/CGI/Carp.pm:437\r\n/home/html/games/lib/Homeworlds/Pos.pm:641\r\n/usr/local/lib/perl5/site_perl/5.8.8/Games/Sequential.pm:161\r\n/home/html/games/lib/SDG/Game2.pm:938\r\n/home/html/games/HTML/mhtml/play_homeworlds.mhtml:375\r\n/home/html/games/HTML/main.html:36\r\n/home/html/games/HTML/autohandler:10\r\n\n\tAaron: Try again please.\n\tzoltar: Hey, it worked. The binary star system blew up instead of the program this time!  Cool.  GG.\n\nHomeworlds Online (SDG# 9190)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.13, Ended: 2007.9.14\nParticipants: Visible (S), TwoShort (N)\nWinner: Visible\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy.\n\n2) Visible: Homeworld R2 B2 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\tVisible: Hey there. We&#39;ll see how this plays out...\r\nGood luck!\n\n4) Visible: Build G1 Visible\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Visible: Trade G1 Y1 Visible\n\n7) TwoShort: Build G1 Twoshort\n\n8) Visible: Build G1 Visible\n\n9) TwoShort: Move G1 Twoshort Visible\n\n10) Visible: Attack G1 Visible\n\n11) TwoShort: Build G1 Twoshort\n\n12) Visible: Move G1 Visible Twoshort\n\n13) TwoShort: Move G1 Twoshort Visible\n\n14) Visible: Attack Y1 Twoshort\n\n15) TwoShort: Build G2 Visible\nCatastrophe Visible Green\n\n16) Visible: Build G1 Twoshort\n\tVisible: oops.\n\n17) TwoShort: Trade G3 R3 Twoshort\n\n18) Visible: Trade Y1 R1 Twoshort\n\tTwoShort: I think we&#39;re headed for a draw here...\n\n19) TwoShort: Attack G1 Twoshort\n\tVisible: how exactly are draws handled?\n\tTwoShort: In more draw-prone games (e.g. Fanorona) there&#39;s a button to offer a draw; I guess it hasn&#39;t come up enough in Homeworlds.  We&#39;d have to get Aaron to do it manually.  But actually now I&#39;m wondering if I can stop you...  This is a freaky game :)\n\n20) Visible: Build R1 Twoshort\nCatastrophe Twoshort Red\n\n21) TwoShort: Trade G1 R1 Twoshort\n\n22) Visible: Sacrifice G1 Twoshort\nBuild Y1 Visible\n\tVisible: sorry for the undo. forgot to actually cause my catastrophe... ;)\r\nI think you would have been better off sac&#39;ing your 3r and taking all 3 of my ships.\n\tVisible: MAN this game is fun. :)\n\n23) TwoShort: Trade R1 G1 Twoshort\n\tTwoShort: I couldn&#39;t sac the 3, it was my only ship and I&#39;d have had nothing to actually perform the attack actions with.\n\n24) Visible: Trade Y1 R1 Visible\n\tVisible: ooooh yeah. hmmm.\n\tTwoShort: Oh... and don&#39;t worry about the undo; I personally don&#39;t see any problem with undoing even just because I see a better move.\n\tVisible: Gotcha. Good to know. =)\n\n25) TwoShort: Trade G1 R1 Twoshort\n\n26) Visible: Trade Y1 G1 Visible\n\n27) TwoShort: Trade R1 G1 Twoshort\n\n28) Visible: Build R1 Visible\n\n29) TwoShort: Build G1 Twoshort\n\n30) Visible: Trade R1 Y1 Visible\n\n31) TwoShort: Trade G1 R1 Twoshort\n\n32) Visible: Build Y1 Visible\n\n33) TwoShort: Build R1 Twoshort\n\n34) Visible: Build R2 Visible\n\n35) TwoShort: Build G1 Twoshort\n\n36) Visible: Move R2 Visible Twoshort\n\tTwoShort: Hmmm, I&#39;m beginning to think I might not win this one.\n\n37) TwoShort: Build R2 Twoshort\nCatastrophe Twoshort Red\n\tVisible: Eh, well. All it&#39;ll take is a mistake on my part to turn it around.\n\n38) Visible: Move G1 Visible Twoshort\n\tTwoShort: Certainly, though it will take a pretty crazy blunder at this point... not that you should let that stop you from making one :)\n\n39) TwoShort: Trade G1 R1 Twoshort\n\tVisible: Mmm. Decisions, decisions.\n\n40) Visible: Sacrifice R1 Visible\nAttack R1 Twoshort\n\n\tVisible: good game!\n\tTwoShort: Good game to you too!  \n\nHomeworlds Online (SDG# 9340)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.14, Ended: 2007.9.29\nParticipants: TwoShort (S), Visible (N)\nWinner: TwoShort\n\n1) Visible: Pass\n\tVisible: Hey there. Feel like a rematch?\n\n2) TwoShort: Homeworld B3 R1 G3\n\tVisible: Heh. Couldn&#39;t decide on an opening, so I figured I&#39;d find out if it lets you pass your first turn... =X\n\n3) Visible: Homeworld Y2 B2 G3 *\n\n4) TwoShort: Build G1 Twoshort\n\n5) Visible: Build G1 Visible\n\tTwoShort: Couldn&#39;t decide on an opening, or wanted to force another micro-universe game? :) Not that it matters, I think the microverse favors player 1 despite my screwing it up last time.\n\tVisible: Didn&#39;t really want to force the same game. I just think it&#39;s the optimal response to your homeworld.\r\nIt puts the game on rails, as far as I can tell. Optimal or near-optimal play by both players results in victory for me.\r\nI think. =P\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Visible: Trade G1 R1 Visible\n\tVisible: And honestly, I couldn&#39;t decide on an opening. Most of the possibilities are just... so... not good.\n\n8) TwoShort: Build Y1 Twoshort\n\tTwoShort: You may be right, I haven&#39;t given the micro-universe all that much thought.  Out of curiosity, how much analysis are you basing your conclusion on?  \n\n9) Visible: Build G1 Visible\n\tVisible: Not a great deal. If you run through our last game, though, you&#39;ll notice a LOT of cause and effect. \r\nI think taking a yellow star instead of red may mess that up, for this game. I didn&#39;t give it much thought; just wanted to change it up.\r\n\n\tTwoShort: As far as openings as first player, my only current debate is whether the blue should be a 2 or a 3 :)  But I do think it&#39;s better to go first under the rules in use here.\n\n10) TwoShort: Build Y1 Twoshort\n\tVisible: Well, taking any single-pip first is probably a handicap. The 1r 3b 3g means that you&#39;ll almost always take -two- small pieces first. \n\tTwoShort: I just wanted to make sure your answer was &quot;mostly our last game&quot; rather than &quot;extensive computer modeling&quot; :)  The game is certainly constrained in this set up, but I think the last game is mostly down to one stupid move I made.  Which I&#39;ll be happy to point out after I don&#39;t make it this time :)\n\tVisible: Heh. Pretty sure it was when you moved your 1g into my homeworld without any way to make use of it. -_^\n\n11) Visible: Build R1 Visible\n\tVisible: Hmmm. Yeah... was afraid this would happen. Definately a mistake taking a yellow star.\n\n12) TwoShort: Discover Y1 Twoshort Y2 Yolonda\n\n13) Visible: Build R2 Visible\n\n14) TwoShort: Build Y2 Twoshort\n\n15) Visible: Discover R1 Visible Y3 Invisible\n\tTwoShort: So have you played much Homeworlds off-line?\n\n16) TwoShort: Discover Y2 Twoshort B2 Bluonia\n\tVisible: None at all. Actually, our previous game was the first that I&#39;ve completed. I&#39;ve got one in progress which I started prior to that, though.\n\n17) Visible: Discover R2 Visible Y3 Unvisible\n\n18) TwoShort: Build Y3 Twoshort\n\tVisible: This is absolutely bizarre.\n\tTwoShort: Sigh.  I was afraid it was your first game.  I guess I&#39;ll blame your unconventional tactics for throwing me off :)  \n\n19) Visible: Sacrifice G3 Visible\nBuild R2 Invisible\nBuild R2 Unvisible\nBuild R3 Visible\n\tVisible: Well, if it&#39;s any comfort, you seem to be stomping all over me this time around. ;)\r\nThis&#39;ll be my last move for this evening, incidentally.\n\n20) TwoShort: Trade Y3 R3 Twoshort\n\tTwoShort: Hmmm, I think I&#39;ll feel better if I crush you a half-dozen times or so. :) I mean, nothing personal, but I&#39;m the highest rated Homeworlds player here.  I&#39;m supposed to be an unstoppable juggernaut; not get tripped up by first-timers who don&#39;t know enough to be intimidated ;)  Seriously though, you&#39;re playing shockingly well for a newbie.\n\n21) Visible: Move R1 Invisible Yolonda\n\tVisible: Oh, I knew who you were when I joined the game. ;)\r\nWas the whole reason I went with the aggressive strategy.\r\nAnyway, you don&#39;t learn anything playing against newbs.\n\n22) TwoShort: Move R3 Twoshort Yolonda\n\n23) Visible: Move R2 Unvisible Bluonia\n\tVisible: Good move. \n\n24) TwoShort: Sacrifice R3 Yolonda\nAttack R2N Bluonia\nAttack R1N Yolonda\nPass\n\tTwoShort: Well, I&#39;m learning a lot, having never played a game with adjacent homeworlds before.  The last one was exactly the sort of desperately constricted game I&#39;d always assumed it would be, but this one is fascinating.  It&#39;s too dangerous to build up the forces for a direct assault in one&#39;s own homeworld, so you have to also expand around the long way, making it like a normal 3-hop universe bent into a circle.  Room to grow, but not to breathe.\n\tVisible: I meant that I, as a newbie, wasn&#39;t going to learn much playing other newbies.\r\nIt has been an extremely interesting game.\r\nI think same-size stars in your homeworld may be an extremely strong opening. It basically halves your initial movement costs, while doubling your initial movement options.\n\tVisible: As you said, though, you do probably sacrifice breathing room.\n\n25) Visible: Sacrifice G1 Visible\nBuild R3 Invisible\n\tVisible: Ooooof. Not good.\n\n26) TwoShort: Build Y3 Twoshort\n\n27) Visible: Move R3 Invisible Bluonia\n\n28) TwoShort: Discover R2 Bluonia G3 Threatamantic\n\tTwoShort: So out of curiosity, where are you? \r\n(I&#39;m in Boulder, Colorado)\n\tVisible: Minneapolis, Minnesota.\r\nBoulder, eh? Starting to get cold over there, too?\n\n29) Visible: Sacrifice R1 Visible\nAttack Y2 Bluonia\n\n30) TwoShort: Trade Y1 R1 Twoshort\n\tVisible: =/\n\n31) Visible: Move R2 Unvisible Yolonda\n\n32) TwoShort: Discover R1 Yolonda B3 Bluestar\n\n33) Visible: Trade R3 G3 Visible\n\tVisible: WOW. I didn&#39;t think that was a great move, when I made it...\r\nbut... just WOW. talk about oversight. =X\n\n34) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 9191)\nStarted: 2007.9.15, Ended: 2007.9.15\nParticipants: MikeYarrum (S), Metroidfans (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9307)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.17, Ended: 2007.9.23\nParticipants: stoneaxe (S), SpaceHobo (N)\nWinner: stoneaxe\n\n1) SpaceHobo: Homeworld Y1 B2 G3\n\n2) stoneaxe: Homeworld B1 Y3 G3\n\n\tstoneaxe: Interstellar greetings to you.  I&#39;m a relative newbie at this game, so prepare to battle my awesome powers of beginners luck!!!\n\nHomeworlds Online (SDG# 9315)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.9.18, Ended: 2007.9.24\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\tscottobear: I&#39;ve never seen a red homeworld!\n\n5) scottobear: Trade Y1 R1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Discover R1 Scottobear G1 Teeth\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Build Y1 Scottobear\n\tzoltar: I usually use red/blue homeworlds, because I don&#39;t have to worry about not having a red ship and having my homeworld invaded -- it always has defense abilities to capture an invader -- and I can build more greens and yellows without worrying as much about catastrophes, so if I build a &#39;factory&#39; (when all the greens are used and I have a G3 and another green ship in my homeworld and can sacrifice the green and immediately rebuild it and get two more grow turns at once) a single green ship won&#39;t be able to blow up my factory.\n\tscottobear: sounds like a good strategy! i&#39;m still developing mine..I&#39;m new!\n\n10) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n11) scottobear: Move Y1 Scottobear Teeth\n\n12) zoltar: Build G1 Bluemoon\n\n13) scottobear: Move R1 Teeth Bluemoon\n\tscottobear: move r1 teeth bluemoon\n\tscottobear: oops!\n\n14) zoltar: Build G2 Bluemoon\n\n15) scottobear:\nBuild Y1 Scottobear\n\tzoltar: So I&#39;m going to ignore your attack, and let you waste 2 moves to move your red ship and capture my green, while I develop larger green ships.\n\tscottobear: thank you for showing me the ropes!\n\n16) zoltar: Trade G2 R2 Bluemoon\n\n17) scottobear: Build Y2 Teeth\n\n18) zoltar: Attack R1 Bluemoon\n\n19) scottobear: Build Y2 Scottobear\n\n20) zoltar: Trade R2 Y2 Bluemoon\n\n21) scottobear: Trade Y3 R3 Scottobear\n\n22) zoltar: Build Y3 Zoltar\n\tzoltar: You&#39;re playing much better this game. Now I have to go for some very dangerous tricks to catch up in development here.\n\n23) scottobear: Build Y3 Teeth\n\tzoltar: Actually, that&#39;s too dangerous, I think.\n\n24) zoltar: Move Y2 Bluemoon Teeth\nCatastrophe Teeth Y\n\tzoltar: Ok, I like my position now, with two battlestars defending my homeworld.\n\tscottobear: thank you again for the hints and tips!\n\n25) scottobear: Trade Y1 R1 Scottobear\n\n26) zoltar: Move Y3 Zoltar Bluemoon\n\tzoltar: Time to send in a jihadist!\n\n27) scottobear: Discover R1 Scottobear B1 Monkey\n\tzoltar: Building the Y3 in your homeworld would have been much better, as I would have to sac my Y3 in my homeworld to send my y1 into your homeworld to blow up the yellow ships, and then forces would remain equal.  In this case, however, I got to sacrifice only my y2 to take out your Y3 and blow up the entire system, leaving me with two large ships to your one after the simplification.\n\tzoltar: And you&#39;re welcome -- I love discussing this game, as it&#39;s the most interesting new game I&#39;ve discovered in years -- and I live just down the street from the designer/author of the game. \n\tzoltar: And you&#39;re welcome -- I love discussing this game, as it&#39;s the most interesting new game I&#39;ve discovered in years -- and I live just down the street from the designer/author of the game. \n\tscottobear: It is a fascinating one.. probably the most interesting icehouse game I&#39;ve seen yet. \r\n\r\nI&#39;m in Maryland - not very far from the Looneys.\n\n28) zoltar: Build Y1 Bluemoon\n\n29) scottobear: Build R1 Scottobear\n\n30) zoltar: Build R2 Bluemoon\n\n31) scottobear: Build Y1 Scottobear\n\n32) zoltar: Move Y3 Bluemoon Monkey\n\n33) scottobear: Move Y2 Scottobear Monkey\n\n34) zoltar: Sacrifice R2 Bluemoon\nAttack Y2 Monkey\nAttack R1 Monkey\n\n35) scottobear: Trade R1 B1 Scottobear\n\n36) zoltar: Build Y2 Bluemoon\n\n37) scottobear: Build Y2 Scottobear\n\tzoltar: Resistance is futile -- you will be assimilated.\n\tscottobear: aw, pah!\n\n38) zoltar: Discover Y1 Bluemoon R1 Attackoutpost\n\tscottobear: trade r1 b1 scottobear\r\n\n\n39) scottobear: Build Y3 Scottobear\n\n40) zoltar: Move Y1 Attackoutpost Scottobear\nCatastrophe Scottobear Y\n\n41) scottobear: Build B2 Scottobear\n\n42) zoltar: Move G1 Bluemoon Monkey\n\tscottobear: sacrifice y2 scottobear\r\nmove r3 scottobear monkey\r\nattack y3 r3 monkey\r\n\r\nam I missing something, it says I&#39;m out of actions. \n\n43) scottobear: Trade B2 R2 Scottobear\n\tzoltar: Yes, you can&#39;t both move and attack in one round. If you sac a Y2, you get two movements. If you sac an R2, you get two attacks.  But you can&#39;t sac a Y2 (nor an R2) and get one movement and one attack.  So you can&#39;t both move your R3 and then attack my Y3 in the same turn.\r\n\r\nObviously you don&#39;t want to simply move your R3, as I can now capture it. So click on undo and find another move, but be careful, as the software only lets you undo your move once per turn.\n\tscottobear: thanks!\n\n44) zoltar: Sacrifice Y3 Monkey\nMove R1 Bluemoon Monkey\nMove R1 Monkey Scottobear\nMove R1 Monkey Scottobear\nCatastrophe Scottobear R\n\tscottobear: aw, nuts. \n\n45) scottobear: Build B2 Scottobear\n\tzoltar: Hey, I invited you to my Zendo game, because one of the players never showed up yet, and I saw that you&#39;ve signed up for a couple of Zendo games. Zendo and Homeworlds are now my two favorites.\r\n\r\nBtw, I live in Greenbelt, close to the Looneys as well, and down the street from John Cooper (aka Gort here), the author of Homeworlds.\n\tscottobear: Very keen... I&#39;m in north beach - I go to work in greenbelt every weekday!\n\tscottobear: I&#39;d love to try zendo... I&#39;ve been wanting to learn for ages!\n\n46) zoltar: Build G1 Zoltar\n\n47) scottobear: Trade B2 R2 Scottobear\n\n48) zoltar: Build G2 Monkey\n\n49) scottobear: Build B2 Scottobear\n\tscottobear: uh-oh! \n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bluemoon\nBuild G2 Bluemoon\nBuild G3 Zoltar\n\n51) scottobear: Trade B2 Y2 Scottobear\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Monkey\nBuild G3 Zoltar\nBuild Y1 Monkey\n\n53) scottobear: Build B2 Scottobear\n\n54) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Monkey\nBuild Y3 Bluemoon\nBuild Y3 Zoltar\n\n55) scottobear: Trade B2 R2 Scottobear\n\n56) zoltar: Sacrifice G3 Monkey\nBuild G3 Monkey\nBuild G3 Zoltar\nBuild Y3 Bluemoon\n\n57) scottobear: Pass\n\tscottobear: that&#39;s a whole lot of green goin&#39; on!\n\n58) zoltar: Trade G3 R3 Monkey\n\n59) scottobear: Build B2 Scottobear\n\n60) zoltar: Trade Y3 B3 Bluemoon\n\n61) scottobear: Move Y2 Scottobear Monkey\nCatastrophe Monkey Y\n\tscottobear: I have no idea! \n\n62) zoltar: Sacrifice Y3 Bluemoon\nMove B3 Bluemoon Monkey\nMove B3 Monkey Scottobear\nMove R3 Monkey Scottobear\nCatastrophe Scottobear B\n\n63) scottobear: Build R1 Scottobear\nCatastrophe Scottobear R\n\n\tzoltar: Though actually, this move is cuter, as it puts you in what chessplayers call &quot;Zugzwang&quot;, which means that every possible move spells doom for you.\n\tscottobear: that&#39;s no moon!!\n\nHomeworlds Online (SDG# 9370)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.19, Ended: 2007.9.22\nParticipants: Kermit (S), Visible (N)\nWinner: Kermit\n\n\nHomeworlds Online (SDG# 9382)\nVariants: &quot;Unrated&quot;\nStarted: 2007.9.20, Ended: 2007.11.13\nParticipants: wyons (S), MikeYarrum (N)\nWinner: wyons\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tMikeYarrum: Okay, here&#39;s your training game. Pardon me if I go over something you already know.\r\n\r\nThe most important thing is picking a good Homeworld. If you don&#39;t have any green technology to start with, you&#39;ll either have to trade for it (and waste a valuable turn). It&#39;s also good to start with blue, or you&#39;ll be stuck with only one kind of color in your Homeworld, unless you waste turns moving different colors back to your Homeworld.\r\n\r\nFor beginningers, a Homeworld of one small and one medium is recommended, with a combination of yellow-blue-green technology. Some advanced players, myself included, prefer a large-medium Homeworld with blue-red-green technology.\r\n\r\nYou can pick whatever size ship you&#39;d like to start with, but there&#39;s no reason you&#39;d want to go with anything except a 3-pointer.\n\n2) wyons: Homeworld G1 B2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\twyons: thanks that is all just the help I need\n\tMikeYarrum: Okay, but if you have any questions at all, feel free to ask. =D\n\n4) wyons: Build Y1 Wyons\n\twyons: --I wasnt saying that was enough - I was saying it was good. :) please keep going. :)\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) wyons: Discover Y1 Wyons G3 Spinach\n\tMikeYarrum: Oh, my bad! I&#39;ll keep going.\r\n\r\nWell, right now my red technology isn&#39;t helping, which puts you at the advantage. You&#39;ll want to build as many yellow ships as possible, to keep me from getting any. But I took the first opportunity I had to trade an extra ship for yellow (again, some new players will waste time trading instead of building - but this was a good time to trade). Now, it wouldn&#39;t be wise of you to build another yellow ship, because that puts you at three yellow ships in your Homeworld - if you built any after that, I could catastrophe and destroy all of your ships. Plus, I could build a 2-point yellow if you took the last 1-point yellow.\r\n\r\nSo, this gives you several options. You could trade your 1-point yellow for a blue or a green, but you already have those technologies in your Homeworld (it&#39;s always wise to have ships of different colors, but one-pointers of colors you already have don&#39;t help much). Also, trading for red at this point might not be a good idea, since you wouldn&#39;t have any use for it yet.\r\n\r\nI&#39;d recommend discovering a 3-point Green system with your one-point yellow. This not only takes away a 3-point Green that I would definitely want to build later in the game, but gives you another place to safely build more yellow ships (that&#39;s the big reason to discover new systems - room to build).\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\twyons: OK, that all makes sense.... I shall certainly take your advice!\n\n8) wyons: Build Y1 Wyons\n\tMikeYarrum: Besides discovering a new system like you did, I can only build another green ship. I could trade it my next turn, or maybe use it for discovery later. Keeping at least one green ship around also allows me to have a &quot;factory&quot; later in the game (which means sacrificing a green 3 pointer, building twice, then re-building the green 3 pointer I just sacrificed). Naturally, I can only do this much later in the game - otherwise, I&#39;d be forced to build the smallest green ship available, which would usually mean losing my 3 pointer.\r\n\r\nThis puts you in a tricky situation - You&#39;re in a much better position to build yellow ships than I am, because you already have two systems to do it in. However, building any more yellow ships would mean I get first chance to build a 2-point yellow.\r\n\r\nLet&#39;s just see how it plays out. =D (make sure you play against other people - my strategy isn&#39;t the only one you can use!)\n\twyons: if you sacrifice a yellow two pointer can you hop from system a to b to c (assuming they are connected)?\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\twyons: OK so I am going to allow you a two pointer yellow because I dont really see how else I can develop effectively...   :)\n\tMikeYarrum: Yes, that&#39;s right. Also, because you can only attack ships that are the same size or smaller, larger ships mean you have more opportunities to attack, but can more easily defend.\n\tMikeYarrum: Oh, and don&#39;t forget - it&#39;s entirely legal (at least in the SDG system) to &quot;discover&quot; a system, then abandon it the same turn. So, for example, you could sacrifice your 3 point yellow, &quot;discover&quot; a 1 point system, then move directly into my homeworld in one turn, abandoning spinach and the 1 point system in the process.\r\n\r\nNot that you&#39;d want to, but if a similar situation comes up...\n\n10) wyons: Build Y2 Spinach\n\n11) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\twyons: thanks, I hadnt realised that and it is a useful tactic. \n\n12) wyons: Trade Y1 R1 Wyons\n\n13) MikeYarrum: Discover G1 Mikeyarrum B1 Ena\n\n14) wyons: Build Y1 Wyons\n\n15) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: Oh, by the way, I noticed how you traded that one point yellow away - that&#39;s always a good tactic to keep the higher-pointers away, if you didn&#39;t already know.\r\n\r\nDoesn&#39;t work later in the game, when there&#39;s barely anything to trade for, though.\n\n16) wyons: Trade Y1 B1 Wyons\n\twyons: hmm , I&#39;ve let you get a nice line in green..\n\n17) MikeYarrum: Build G2 Ena\n\tMikeYarrum: Yes... apparently, this wasn&#39;t the best strategy for you.\r\n\r\nUnfortunately, I seem to run into a similar problem in my games against zoltar - we get into a game of &quot;chicken&quot; about giving the other first crack at the big pieces, and he always seems to come out ahead. So I really didn&#39;t have much advice about the situation - try playing against some others. ^_^\n\tMikeYarrum: *by &quot;others&quot;, I mean both more games, and against other people.\n\n18) wyons: Move B1 Wyons Spinach\n\n19) MikeYarrum: Trade G2 R2 Ena\n\twyons: I am playing several other games.... :) And I am also not sure now about the wisdom of building a green star in the home world. I&#39;d rather have a green ship and a red and blue star. A green star means you also have to have a green ship in order to build green- and that opens you up to easier attack. :)\n\tMikeYarrum: True, but usually you build whatever color ship you started with, then discover either blue systems to either trade for green or green systems.\n\n20) wyons: Trade Y2 G2 Spinach\n\n21) MikeYarrum: Build G2 Ena\n\n22) wyons: Build Y1 Wyons\n\n\nHomeworlds Online (SDG# 9378)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.9.21, Ended: 2007.10.1\nParticipants: scottobear (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld Y1 B2 G3\n\n2) scottobear: Homeworld G3 B2 Y3\n\twyons: Hi again :). You will have to bear with me (no pun intended!) as this is my first game!\n\tscottobear: no worries! I&#39;m *very* new, too... still getting sacrifices worked out. :D\n\n3) wyons: Build G1 Wyons\n\n4) scottobear: Build Y1 Scottobear\n\n5) wyons: Trade G1 R1 Wyons\n\twyons: why am I labelled North but in the south?? \r\n\r\n\n\n6) scottobear: Trade Y1 R1 Scottobear\n\tscottobear: I think it&#39;s just to make it look like it&#39;s from your perspective - your pieces facing away from you.\n\tscottobear: you&#39;re off to a good start!\n\n7) wyons: Build G1 Wyons\n\twyons: but thats not the way it seems to work in other ongoing games and ah thank you (that I am off to a good start) though I dont really understand why you think so.\n\n8) scottobear: Discover R1 Scottobear G1 Teeth\n\tscottobear: just that you seemed to start doing very similar moves to me. :D\n\n9) wyons: Trade G1 Y1 Wyons\n\n10) scottobear: Build Y1 Scottobear\n\n11) wyons: Build Y2 Wyons\n\n12) scottobear: Move Y1 Scottobear Teeth\n\n13) wyons: Discover Y2 Wyons G3 Gondola\n\n14) scottobear: Build Y2 Scottobear\n\tscottobear: build y2 scottobear\n\n15) wyons: Trade Y1 B1 Wyons\n\n16) scottobear: Trade Y3 R3 Scottobear\n\n17) wyons: Trade G3 R3 Wyons\n\n18) scottobear: Move Y2 Scottobear Teeth\n\n19) wyons: Trade R1 G1 Wyons\n\n20) scottobear: Move R1 Teeth Gondola\n\n21) wyons: Build R1 Wyons\n\n22) scottobear: Move Y2 Teeth Scottobear\n\n23) wyons: Sacrifice R1 Wyons\nAttack R1S Gondola\n\n24) scottobear: Build Y1 Scottobear\n\n25) wyons: Move B1 Wyons Gondola\n\n26) scottobear: Trade Y2 R2 Scottobear\n\n27) wyons: Build Y2 Gondola\n\n28) scottobear: Move R2 Scottobear Teeth\n\n29) wyons: Build B1 Gondola\n\n30) scottobear: Build Y2 Scottobear\n\n31) wyons: Discover Y2 Gondola G2 Kayak\n\n32) scottobear: Build Y3 Scottobear\n\n33) wyons: Build Y3 Kayak\n\n34) scottobear: Trade Y3 R3 Scottobear\n\n35) wyons: Build Y3 Gondola\n\n36) scottobear: Move R2 Teeth Gondola\n\twyons: is red your favourite colour (its got me nervous) :)\n\n37) wyons: Attack R2 Gondola\n\tscottobear: I do like red!\n\n38) scottobear: Discover Y2 Scottobear B1 Claws\n\n39) wyons: Trade Y3 G3 Gondola\n\twyons: phew! I thought I could attack your ship in that way but had not been able to check the rules as they were frozen up. Me - my favourite colour is yellow!\n\tscottobear: yellow is a good color! I didn&#39;t know if you could attack that way, either! :D\n\n40) scottobear: Build Y3 Scottobear\n\n41) wyons: Build Y3 Gondola\n\n42) scottobear: Move Y3 Scottobear Teeth\n\n43) wyons: Discover Y3 Gondola G1 Punt\n\n44) scottobear: Trade Y2 R2 Claws\n\n45) wyons: Build G2 Wyons\n\tscottobear: this is the biggest system I&#39;ve ever played in!\n\n46) scottobear: Discover Y3 Teeth B3 Eyes\n\n47) wyons: Build G2 Gondola\n\twyons: yes... and it is getting very complicated!\n\n48) scottobear: Build Y2 Teeth\n\n49) wyons: Sacrifice Y2 Kayak\nMove B1 Gondola Punt\nMove R1 Gondola Punt\n\n50) scottobear: Trade R2 Y2 Claws\n\n51) wyons: Sacrifice G3 Gondola\nBuild R1 Punt\nBuild R1 Wyons\nBuild G3 Gondola\n\n52) scottobear: Move R3 Scottobear Teeth\n\n53) wyons: Sacrifice G3 Gondola\nBuild B2 Punt\nBuild B3 Gondola\nBuild G3 Gondola\n\n54) scottobear: Build R2 Scottobear\n\n55) wyons: Sacrifice Y3 Kayak\nMove R1 Punt Scottobear\nMove R1 Punt Scottobear\nMove Y3 Punt Scottobear\nCatastrophe Scottobear Red\n\n56) scottobear: Build Y3 Scottobear\n\n57) wyons: Sacrifice R2 Gondola\nAttack Y3S Scottobear\nAttack Y1S Scottobear\n\n\twyons: many thanks for the game. Happy to play another.\n\tscottobear: thank you!\n\nHomeworlds Online (SDG# 9417)\nStarted: 2007.9.24, Ended: 2007.10.3\nParticipants: wyons (S), stoneaxe (N)\nWinner: wyons\n\n1) stoneaxe: Homeworld Y1 B3 G3\n\twyons: Hiya, I&#39;m a newbie too!\n\n2) wyons: Homeworld Y1 B2 G3\n\tstoneaxe: Okay, thanks for playing and good luck!\n\tstoneaxe: I like the games Golem, Generatorb, and Pikemen pretty well too.  This site rocks!\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) wyons: Build G1 Wyons\n\twyons: I dont know those games yet- I am pretty new to this site as well.\n\n5) stoneaxe: Build G1 Stoneaxe\n\n6) wyons: Build G2 Wyons\n\n7) stoneaxe: Build G2 Stoneaxe\n\n8) wyons: Trade G1 R1 Wyons\nCatastrophe Stoneaxe Green\n\twyons: many thanks- your mistake was to have four of one colour in your homeworld- all I had to do was trigger a catastrophe. Do challenge me again if you want to.\n\n\nHomeworlds Online (SDG# 9356)\nStarted: 2007.9.27, Ended: 2008.2.22\nParticipants: NMcCoy (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) NMcCoy: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) NMcCoy: Build G1 Nmccoy\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) NMcCoy: Trade G1 Y1 Nmccoy\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) NMcCoy: Discover Y1 Nmccoy G3 Meganium\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) NMcCoy: Build Y2 Meganium\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G1 Ena\n\n\nHomeworlds Online (SDG# 9247)\nStarted: 2007.9.27, Ended: 2007.10.10\nParticipants: ts52 (S), Sunnan (N)\nWinner: ts52\n\n1) Sunnan: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld B3 Y1 G3\n\n3) Sunnan: Build G1 Sunnan\n\tts52: Have a great game!\n\n4) ts52: Build G1 Ts52\n\tSunnan: Oh, thanks! You too! This is the first time I play Homeworlds and the first time I play on SDG; but I&#39;ve read a lot about the game and I just yesterday got a real set.\n\n5) Sunnan: Discover G1 Sunnan B3 Alice\n\tts52: Well, welcome! Homeworlds is a great game, with more depth than I&#39;ve even found yet. And SDG is just fantastic, as I can&#39;t get any of my friends to play.\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Sunnan: Build G1 Sunnan\n\n8) ts52: Build Y1 Ts52\n\n9) Sunnan: Trade G3 Y3 Sunnan\n\n10) ts52: Discover Y1 Ts52 G2 Kermit\n\n11) Sunnan: Build Y2 Sunnan\n\n12) ts52: Discover Y1 Ts52 G2 Oscar\n\n13) Sunnan: Discover Y2 Sunnan B3 Ruth\n\n14) ts52: Build Y2 Kermit\n\n15) Sunnan: Sacrifice G1 Sunnan\nBuild Y3 Ruth\n\n16) ts52: Build Y3 Oscar\n\n17) Sunnan: Trade Y3 G3 Ruth\n\n18) ts52: Discover Y1 Kermit G3 Frogstar\n\n19) Sunnan: Trade Y3 R3 Sunnan\n\n20) ts52: Build Y3 Frogstar\n\n21) Sunnan: Trade G1 R1 Alice\n\n22) ts52: Build Y3 Kermit\n\n23) Sunnan: Sacrifice Y2 Ruth\nMove G3 Ruth Kermit\nMove G3 Kermit Ts52\n\n24) ts52: Sacrifice Y2 Kermit\nMove Y3 Kermit Ts52\nMove Y3 Oscar Ts52\n\n25) Sunnan: Sacrifice R1 Alice\nAttack G3 Ts52\n\n26) ts52: Trade Y3 R3 Ts52\n\n27) Sunnan: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G1 Ts52\nBuild R1 Sunnan\n\n28) ts52: Sacrifice R3 Ts52\nAttack G3N Ts52\nAttack G1N Ts52\nAttack G1N Ts52\n\n29) Sunnan: Move R1 Sunnan Frogstar\n\n30) ts52: Trade G1 R1 Ts52\n\n31) Sunnan: Attack Y1 Frogstar\n\n32) ts52: Sacrifice R1 Ts52\nAttack R1N Frogstar\n\n33) Sunnan: Discover Y1 Frogstar R2 Manhattan\n\n34) ts52: Build Y2 Oscar\n\n35) Sunnan: Trade R3 G3 Sunnan\n\n36) ts52: Move Y3 Frogstar Sunnan\n\n37) Sunnan: Build G1 Sunnan\n\n38) ts52: Sacrifice R1 Frogstar\nAttack G3N Sunnan\n\n39) Sunnan: Build G1 Sunnan\n\n40) ts52: Build G2 Sunnan\nCatastrophe Sunnan Green\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 9438)\nStarted: 2007.9.27, Ended: 2007.9.27\nParticipants: NMcCoy (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9368)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.27, Ended: 2007.9.30\nParticipants: NMcCoy (S), SpaceHobo (N)\nWinner: NMcCoy\n\n\nHomeworlds Online (SDG# 9390)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.9.27, Ended: 2007.10.3\nParticipants: NMcCoy (S), scottobear (N)\nWinner: NMcCoy\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) NMcCoy: Homeworld B2 Y1 G3\n\n3) scottobear: Build Y1 Scottobear\n\tscottobear: hello!\n\n4) NMcCoy: Build G1 Nmccoy\n\n5) scottobear: Discover Y1 Scottobear G1 Point\n\tNMcCoy: Hello! I&#39;m interested to see how this game goes, since you led off with a notably different setup than most of my other opponents I&#39;m currently playing. I look forward to seeing your strategy. :)\n\tscottobear: well, I&#39;m still very new! I&#39;m still trying to work out my best course of action.. I don&#39;t always get it right. :D\n\n6) NMcCoy: Discover G1 Nmccoy Y3 Ampharos\n\n7) scottobear: Build Y1 Scottobear\n\tNMcCoy: I&#39;ve just found out due to the rules handling of this version that I&#39;ve been misunderstanding the rules in my offline games the whole time, so that changes my understanding of strategy significantly.\n\tscottobear: I haven&#39;t played many games yet, myself... I still don&#39;t quite get the sacrifice part right all the time. \n\n8) NMcCoy: Build G1 Nmccoy\n\n9) scottobear: Trade Y1 B1 Scottobear\n\n10) NMcCoy: Build G2 Ampharos\n\n11) scottobear: Trade B1 R1 Scottobear\n\n12) NMcCoy: Discover G2 Ampharos B1 Mudkip\n\n13) scottobear: Build Y1 Point\n\n14) NMcCoy: Build G2 Mudkip\n\n15) scottobear: Build Y2 Scottobear\n\n16) NMcCoy: Sacrifice G3 Nmccoy\nBuild G3 Nmccoy\nBuild G3 Ampharos\nBuild G3 Mudkip\n\n17) scottobear: Trade Y2 B2 Scottobear\n\n18) NMcCoy: Trade G3 Y3 Mudkip\n\n19) scottobear: Move B2 Scottobear Point\n\n20) NMcCoy: Sacrifice G3 Ampharos\nBuild G3 Mudkip\nBuild G3 Ampharos\nBuild Y2 Mudkip\n\n21) scottobear: Build B1 Point\n\n22) NMcCoy: Trade G3 R3 Nmccoy\n\n23) scottobear: Trade B1 R1 Point\n\n24) NMcCoy: Sacrifice Y2 Mudkip\nMove Y3 Mudkip Scottobear\nMove G3 Mudkip Scottobear\n\n25) scottobear: Attack Y3 Scottobear\n\n26) NMcCoy: Sacrifice R3 Nmccoy\nAttack Y3N Scottobear\nAttack Y3N Scottobear\nAttack R1N Scottobear\n\tNMcCoy: Good game!\n\tscottobear: thanks!!\n\n\nHomeworlds Online (SDG# 9439)\nStarted: 2007.9.27, Ended: 2007.10.5\nParticipants: NMcCoy (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) NMcCoy: Homeworld B3 Y1 G3\n\tts52: Have a great game!\n\n3) ts52: Build G1 Ts52\n\tNMcCoy: Thanks. First time playing online, and against someone other than family.\n\n4) NMcCoy: Build G1 Nmccoy\n\tts52: Having family that plays must be pretty cool. Online is the only place I can find people to play...\n\n5) ts52: Trade G1 Y1 Ts52\n\tNMcCoy: Family plays intermittently - My girlfriend (who shares my apartment) isn&#39;t all that interested, and I&#39;m not around the rest of my family all that much. This is one of my favorite Icehouse games - tactically rich, and much more engaging to me than chess for example.\n\n6) NMcCoy: Trade G3 Y3 Nmccoy\n\tNMcCoy: Oh, wow, I&#39;ve been playing the game wrong the whole time. Never knew about the rule for matching ship color when building.\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\tts52: Oh wow, yeah. That&#39;s going to make a huge difference.\n\n8) NMcCoy: Build Y2 Nmccoy\n\n9) ts52: Build Y2 Kermit\n\n10) NMcCoy: Discover Y2 Nmccoy G2 Bayleef\n\n11) ts52: Discover Y1 Kermit G2 Oscar\n\n12) NMcCoy: Build G1 Nmccoy\n\n13) ts52: Build Y2 Oscar\n\n14) NMcCoy: Trade Y3 G3 Nmccoy\n\tNMcCoy: Erk. Not good...\n\n15) ts52: Build Y3 Kermit\n\tNMcCoy: Not a lot I can do at this point...\n\n16) NMcCoy: Build Y3 Bayleef\n\n17) ts52: Build G1 Ts52\n\n18) NMcCoy: Sacrifice Y2 Bayleef\nDiscover Y3 Bayleef Y3 Raichu\nDiscover G3 Nmccoy Y2 Pikachu\n\n19) ts52: Move Y2 Oscar Nmccoy\n\n20) NMcCoy: Sacrifice Y3 Raichu\nMove G3 Pikachu Nmccoy\nDiscover G1 Nmccoy G2 Grovyle\nDiscover G1 Nmccoy G2 Ivysaur\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Nmccoy\nBuild Y3 Nmccoy\nCatastrophe Nmccoy Yellow\n\tNMcCoy: *cackles madly*\n\n22) NMcCoy: Sacrifice G1 Grovyle\nBuild G1 Nmccoy\n\n23) ts52: Build G2 Ts52\n\n24) NMcCoy: Trade G3 Y3 Nmccoy\n\n25) ts52: Discover G2 Ts52 Y3 Bigbird\n\n26) NMcCoy: Build G3 Nmccoy\n\n27) ts52: Trade G1 R1 Ts52\n\n28) NMcCoy: Sacrifice Y3 Nmccoy\nMove G1 Ivysaur Bigbird\nMove G1 Bigbird Ts52\nMove G1 Nmccoy Ts52\n\n29) ts52: Trade G3 B3 Ts52\n\n30) NMcCoy: Build G1 Nmccoy\n\n31) ts52: Attack G1S Ts52\n\n32) NMcCoy: Trade G3 R3 Nmccoy\n\tNMcCoy: Okay, it clearly looks like I have no way to survive at this point...\n\n33) ts52: Attack G1S Ts52\n\n34) NMcCoy: Build G2 Nmccoy\n\tts52: It&#39;s not looking too good, but it&#39;s not over yet...\n\n35) ts52: Build G3 Bigbird\n\n36) NMcCoy: Trade G2 Y2 Nmccoy\n\n37) ts52: Build B1 Ts52\n\n38) NMcCoy: Build G2 Nmccoy\n\n39) ts52: Sacrifice Y2 Kermit\nMove B3 Ts52 Nmccoy\nMove B1 Ts52 Nmccoy\n\tNMcCoy: Don&#39;t think there&#39;s any way I can stop you killing me with blue now.\n\n40) NMcCoy: Sacrifice Y2 Nmccoy\nMove G2 Nmccoy Ts52\nMove G1 Nmccoy Ts52\nCatastrophe Ts52 Green\n\n41) ts52: Sacrifice G3 Bigbird\nBuild B1 Nmccoy\nBuild B1 Nmccoy\nBuild B2 Nmccoy\nCatastrophe Nmccoy Blue\n\tNMcCoy: Might as well go out with a bang. Good game.\n\tts52: Thanks for the game. \n\n\nHomeworlds Online (SDG# 9443)\nStarted: 2007.9.28, Ended: 2007.12.15\nParticipants: NMcCoy (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld Y1 B2 G3\n\twyons: hiya, we&#39;ve not met before I think, have a good game!\n\n2) NMcCoy: Homeworld Y3 B1 G3\n\n3) wyons: Build G1 Wyons\n\tNMcCoy: You too! I&#39;m new to playing online here, though I&#39;ve done a few games in person with family before.\n\n4) NMcCoy: Build G1 Nmccoy\n\n5) wyons: Trade G1 Y1 Wyons\n\n6) NMcCoy: Discover G1 Nmccoy B2 Wartortle\n\n7) wyons: Build G1 Wyons\n\n8) NMcCoy: Trade G1 R1 Wartortle\n\n9) wyons: Build G1 Wyons\n\n10) NMcCoy: Build G1 Nmccoy\n\n11) wyons: Trade G1 R1 Wyons\n\n12) NMcCoy: Move G1 Nmccoy Wartortle\n\n13) wyons: Trade G1 B1 Wyons\n\n14) NMcCoy: Build G1 Nmccoy\n\n15) wyons: Discover Y1 Wyons G3 Headington\n\n16) NMcCoy: Trade G1 Y1 Wartortle\n\n17) wyons: Build Y2 Headington\n\n18) NMcCoy: Move G1 Nmccoy Wartortle\n\n19) wyons: Move Y1 Headington Wyons\n\n20) NMcCoy: Build Y2 Wartortle\n\n21) wyons: Build Y2 Headington\n\n22) NMcCoy: Move Y2 Wartortle Nmccoy\n\n23) wyons: Discover Y2 Headington G1 Oxford\n\n24) NMcCoy: Build Y3 Wartortle\n\n25) wyons: Build Y3 Headington\n\n26) NMcCoy: Build G1 Wartortle\n\n27) wyons: Build G2 Wyons\n\n28) NMcCoy: Build G2 Nmccoy\n\n29) wyons: Discover G2 Wyons B3 Oxfordshire\n\n30) NMcCoy: Trade G2 R2 Nmccoy\n\n31) wyons: Move B1 Wyons Headington\n\n32) NMcCoy: Build G2 Nmccoy\n\n33) wyons: Build G2 Wyons\n\n34) NMcCoy: Trade G1 B1 Wartortle\n\n35) wyons: Sacrifice G3 Wyons\nBuild G1 Oxfordshire\nBuild B2 Headington\nBuild G3 Wyons\n\n36) NMcCoy: Move Y3 Wartortle Oxfordshire\n\n37) wyons: Move Y3 Headington Wartortle\n\n38) NMcCoy: Move R1 Wartortle Oxfordshire\n\n39) wyons: Trade G2 R2 Wyons\n\n40) NMcCoy: Attack G2N Oxfordshire\n\n41) wyons: Sacrifice R2 Wyons\nAttack G1S Wartortle\nAttack B1S Wartortle\n\n42) NMcCoy: Move G2 Oxfordshire Wartortle\n\n43) wyons: Build B3 Wartortle\n\n44) NMcCoy: Sacrifice R1 Oxfordshire\nAttack B1N Wartortle\n\n45) wyons: Trade B3 R3 Wartortle\n\n46) NMcCoy: Sacrifice G2 Wartortle\nBuild B3 Wartortle\nBuild B3 Wartortle\nCatastrophe Wartortle Blue\n\n47) wyons: Build R1 Wyons\n\n48) NMcCoy: Discover G2 Nmccoy R2 Charmeleon\n\n49) wyons: Trade R1 B1 Wyons\n\n50) NMcCoy: Build G1 Charmeleon\n\n51) wyons: Build G2 Wyons\n\n52) NMcCoy: Build G2 Nmccoy\n\n53) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild Y1 Oxford\nBuild Y3 Headington\n\n54) NMcCoy: Build R1 Nmccoy\n\n55) wyons: Sacrifice G3 Wyons\nBuild B2 Wyons\nBuild B3 Headington\nBuild G3 Wyons\n\n56) NMcCoy: Sacrifice Y2 Nmccoy\nMove G1 Charmeleon Headington\nMove G2 Charmeleon Headington\n\n57) wyons: Sacrifice Y2 Headington\nMove B3 Headington Oxford\nDiscover G2 Wyons R3 England\n\n58) NMcCoy: Sacrifice G2 Nmccoy\nBuild G2 Nmccoy\nBuild Y2 Oxfordshire\n\n59) wyons: Sacrifice G2 England\nBuild B3 Oxford\nBuild Y2 Headington\n\n60) NMcCoy: Build G2 Headington\nCatastrophe Headington Green\n\n61) wyons: Sacrifice Y2 Oxford\nMove Y1 Oxford Oxfordshire\nMove Y1 Wyons Oxfordshire\nCatastrophe Oxfordshire Yellow\n\n62) NMcCoy: Discover G2 Nmccoy B2 Prinplup\n\n63) wyons: Trade B3 Y3 Oxford\n\n64) NMcCoy: Trade R1 Y1 Nmccoy\n\n65) wyons: Build B1 Oxford\n\n66) NMcCoy: Trade G3 B3 Nmccoy\n\n67) wyons: Build Y1 Oxford\n\n68) NMcCoy: Discover Y1 Nmccoy G2 Ivysaur\n\n69) wyons: Trade B3 R3 Oxford\n\n70) NMcCoy: Build G1 Prinplup\n\n71) wyons: Build B3 Oxford\n\n\twyons: well, you&#39;ve had a months leeway- I am presuming you arent returning\n\nHomeworlds Online (SDG# 9442)\nVariants: &quot;Hard time&quot;\nStarted: 2007.9.28, Ended: 2007.10.1\nParticipants: zoltar (S), SpaceHobo (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 9444)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.9.28, Ended: 2007.10.4\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Discover Y1 Scottobear G1 Camera\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Build Y1 Camera\n\n8) zoltar: Build Y2 Zoltar\n\n9) scottobear: Build Y2 Scottobear\n\n10) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n11) scottobear: Trade Y2 R2 Scottobear\n\n12) zoltar: Build Y2 Greengiant\n\n13) scottobear: Discover Y1 Camera B3 Glove\n\n14) zoltar: Move Y2 Greengiant Camera\n\n15) scottobear: Build Y2 Camera\n\n16) zoltar: Build Y3 Zoltar\n\n17) scottobear: Move Y1 Camera Glove\n\n18) zoltar: Build Y3 Greengiant\n\n19) scottobear: Trade Y1 R1 Glove\n\n20) zoltar: Move Y2 Camera Glove\n\n21) scottobear: Trade Y1 G1 Glove\n\n22) zoltar: Trade Y2 R2 Zoltar\n\tzoltar: Hey if it&#39;s ok with you for me to add Gort to the Zendo game (8639), then let Gort know in a comment in that game, as he doesn&#39;t want to join unless it&#39;s ok with everyone.\n\tzoltar: And I&#39;m not sure what the best move was, but there must have been some way for you to get one of those two large yellow ships.  Or maybe trade for a red ship earlier so that I could only build a small yellow.\n\tscottobear: sure, it&#39;s ok with me!\n\tzoltar: Cool.  So tell Gort in the other game, and then he&#39;ll make his move.\n\n23) scottobear: Build Y1 Camera\n\n24) zoltar: Sacrifice R2 Zoltar\nAttack R1 Glove\nAttack G1 Glove\n\n25) scottobear:\nMove Y2 Camera Glove\n\n26) zoltar: Attack Y2 Glove\n\n27) scottobear: Build R1 Scottobear\n\n28) zoltar: Build R2 Glove\n\n29) scottobear: Move R1 Scottobear Camera\n\n30) zoltar: Move Y2 Glove Camera\n\n31) scottobear: Build R2 Camera\n\n32) zoltar: Sacrifice R2 Glove\nAttack R2 Camera\nAttack R1 Camera\n\n33) scottobear: Build Y1 Camera\n\n34) zoltar: Sacrifice R2 Camera\nAttack Y1 Camera\nAttack Y1 Camera\n\n35) scottobear: Move Y3 Scottobear Camera\nCatastrophe Camera Y\n\tscottobear: aw, nuts!\n\n36) zoltar: Sacrifice Y2 Glove\nMove Y3 Greengiant Camera\nMove Y3 Camera Scottobear\n\n37) scottobear: Build R2 Scottobear\n\tzoltar: The camera and glove systems have been totally liberated by the Zoltarian Empire! \n\n38) zoltar: Sacrifice Y3 Zoltar\nMove R1 Glove Camera\nMove R1 Camera Scottobear\nMove R1 Camera Scottobear\nCatastrophe Scottobear R\n\n\tzoltar: Good game. Play again?\n\nHomeworlds Online (SDG# 9446)\nStarted: 2007.9.29, Ended: 2008.1.4\nParticipants: zoltar (S), NMcCoy (W), Charlemagne (N), wyons (E)\nWinner: wyons\n\n1) Charlemagne: Homeworld G2 B1 Y3\n\n2) wyons: Homeworld B3 Y2 G3\n\tCharlemagne: Hi All\r\nIs this the version where we aim to eliminate the player on our left, or are we doing the good/evil thing?\n\tNMcCoy: As I understand it, SDG&#39;s default mode of play is &quot;last man standing&quot;.\n\twyons: agreed, and that there is no good/evil provision here..\n\n3) zoltar: Homeworld R3 B1 G3\n\n4) NMcCoy: Homeworld G3 B1 Y3\n\n5) Charlemagne: Build Y1 Charlemagne\n\n6) wyons: Build G1 Wyons\n\n7) zoltar: Build G1 Zoltar\n\tCharlemagne: Well, I am good, in case you interested...:)\n\tCharlemagne: In an evil kind of way, you understand ....\n\twyons: well, I see that your species is as confused as ours... \n\n8) NMcCoy: Build Y1 Nmccoy\n\n9) Charlemagne: Trade Y1 G1 Charlemagne\n\n10) wyons: Discover G1 Wyons B1 Mongoose\n\tNMcCoy: Don&#39;t mind me, I&#39;m just chaotic neutral.\n\tCharlemagne: Chaotic neutral? Ah, that takes me back... the most popular alignment.....\n\n11) zoltar: Trade G1 B1 Zoltar\n\n12) NMcCoy: Trade Y1 G1 Nmccoy\n\n13) Charlemagne: Build Y1 Charlemagne\n\n14) wyons: Build G1 Wyons\n\n15) zoltar: Build B2 Zoltar\n\n16) NMcCoy: Discover G1 Nmccoy B2 Croconaw\n\n17) Charlemagne: Trade Y3 B3 Charlemagne\n\n18) wyons: Trade G3 B3 Wyons\n\n19) zoltar: Trade B2 Y2 Zoltar\n\n20) NMcCoy: Build Y1 Nmccoy\n\n21) Charlemagne: Build B2 Charlemagne\n\n22) wyons: Build B2 Wyons\n\n23) zoltar: Build B2 Zoltar\n\n24) NMcCoy: Trade Y3 B3 Nmccoy\n\n25) Charlemagne: Discover B2 Charlemagne R3 Frogstar\n\n26) wyons: Move B2 Wyons Mongoose\n\n27) zoltar: Discover B1 Zoltar G2 Plastogalepsus\n\n28) NMcCoy: Build Y1 Nmccoy\n\n29) Charlemagne: Build B2 Charlemagne\n\n30) wyons: Build B3 Wyons\n\n31) zoltar: Sacrifice Y2 Zoltar\nMove B1 Plastogalepsus Mongoose\nMove B1 Mongoose Wyons\nCatastrophe Wyons B\n\n32) NMcCoy: Trade Y1 R1 Nmccoy\n\n33) Charlemagne: Move B2 Charlemagne Frogstar\n\twyons: yaargh! I feared that you might do that Zoltar- but it was a gamble I couldnt resist. I thought you wouldnt do it because it weakens you...  :)\n\tzoltar: It does weaken me a little, but it weakens you a lot, so it is worth a slight weakening; also, now that I&#39;m more weak, (I was the strongest, getting the first 2-pip ship), now I&#39;m less of a target, being 3 ships and several tempi behing the other two; the two strong players will be keeping each other in check while you and I try to catch up.\r\n\r\nThe alternative, not take responsibility and allow you to have two 3-pip ships and a commanding lead, might have just come back to haunt me, and I&#39;d find myself in your position now, had I neglected to stop you when I did. \r\n\r\nIf this were instead a &#39;sinister&#39; variation, where you win when you kill the fleet to your left, I never would have made the move, as now Charlemagne would go for the kill and finish you off and win the game.  But in a standard game, it would be a waste of Charlemagne&#39;s resources to attack you, as it&#39;s of no benefit and you pose no threat; and again, I can catch up with some extra free moves as soon as the two leaders lock horns, I figure.  \n\twyons: Yes I feared you might make an analysis along those lines- time will tell if the disadvantage to both of us is terminal.\n\twyons: --- but you are forgiven in the interests of cosmic compassion. \n\n34) wyons: Build G1 Mongoose\n\tNMcCoy: Wait, I&#39;m a leader now? Eep!\n\tzoltar: Not only that, but now you&#39;re the only one with a gun...\n\tNMcCoy: It&#39;s for self-defense! Really!\r\nActually, I mostly wanted another color to build. I didn&#39;t want to overload on yellow, or take the last small blue or green.\n\n35) zoltar: Build G2 Zoltar\n\n36) NMcCoy: Build G2 Croconaw\n\n37) Charlemagne: Build G2 Charlemagne\n\n38) wyons: Trade G1 Y1 Mongoose\n\n39) zoltar: Trade G2 Y2 Zoltar\n\n40) NMcCoy: Trade G1 Y1 Croconaw\n\n41) Charlemagne: Move G1 Charlemagne Frogstar\n\n42) wyons: Move B2 Mongoose Wyons\n\n43) zoltar: Discover B2 Zoltar G2 Greenschlyme\n\n44) NMcCoy: Build G1 Croconaw\n\n45) Charlemagne: Trade B2 Y2 Frogstar\n\twyons: looks like a busy anti-clockwise roundabout\n\n46) wyons: Build G1 Mongoose\n\n47) zoltar: Build G2 Zoltar\n\n48) NMcCoy: Trade G2 Y2 Croconaw\n\n49) Charlemagne: Discover G2 Charlemagne G3 Vortex1\n\n50) wyons: Trade G1 R1 Mongoose\n\n51) zoltar: Discover G2 Zoltar B2 Bloozebrotherz\n\n52) NMcCoy: Trade B3 G3 Nmccoy\n\n53) Charlemagne: Trade B3 G3 Charlemagne\n\n54) wyons: Build R1 Mongoose\n\n55) zoltar: Build G1 Zoltar\n\n56) NMcCoy: Build G2 Croconaw\n\n57) Charlemagne: Sacrifice G2 Vortex1\nBuild G2 Charlemagne\nBuild G3 Frogstar\n\n58) wyons: Move R1 Mongoose Wyons\n\n59) zoltar: Sacrifice Y2 Zoltar\nMove G2 Bloozebrotherz Frogstar\nMove G2 Frogstar Charlemagne\nCatastrophe Charlemagne G\n\n60) NMcCoy: Sacrifice Y2 Croconaw\nMove G2 Croconaw Zoltar\nMove G1 Croconaw Zoltar\nCatastrophe Zoltar Green\n\tzoltar: Banzai!!!\n\n61) Charlemagne: Move G3 Frogstar Charlemagne\n\twyons: hey guys (N &amp; W)... I think Zoltar might be a klingon!\n\tNMcCoy: Well, it&#39;s risky and you guys might gang up on me, but I feel compelled to secure the position of Not Last.\n\n62) wyons: Build G1 Wyons\n\tCharlemagne: ouch - thanks for the action, Zoltar\r\nand thanks for the not last McCoy.... I may even feel happier now \n\n63) NMcCoy: Build R1 Nmccoy\n\tzoltar: I figured it was in NMcCoy&#39;s best interest to not kill me but to take out the G3 in frogstar, before it could retreat to the Charlemagne homeworld.\r\n\r\nThat would have left NMcCoy in the best position by far, with me having weakened myself twice and both Charlemagne and Wyons without a 3-pip ship.\r\n\r\nNow Charlemagne is stronger than I would have been after weakening myself -- I didn&#39;t think NMcCoy would choose the scenario where he&#39;s clearly in second place to one where he&#39;s clearly the alpha player, but he went against his own self-interest, which I didn&#39;t at all expect. \r\n\r\nAnd you should feel happier now, Charlemagne, as you&#39;re in a great position since NMcCoy allowed you to move your new Battlestar to your homeworld and retain the lead in the game.\n\n64) Charlemagne: Trade B2 R2 Frogstar\n\tNMcCoy: Ack, I hadn&#39;t considered that. I&#39;m still pretty new to the game ,especially multiplayer, and hadn&#39;t thought of what /everyone/&#39;s next move might be.\n\n65) wyons: Build B1 Wyons\n\tzoltar: Well, there is something to be said for eliminating any player at low cost, as now your winning chances increase from 1/4 to 1/3 if everything else were equal.\n\n66) NMcCoy: Move R1 Nmccoy Croconaw\n\n67) Charlemagne: Move R2 Frogstar Charlemagne\n\n68) wyons: Discover B1 Wyons G3 Meercat\n\n69) NMcCoy: Build R1 Nmccoy\n\n70) Charlemagne: Build R2 Charlemagne\n\n71) wyons: Build R2 Mongoose\n\tNMcCoy: Sorry to keep you waiting - life&#39;s been hectic lately.\n\n72) NMcCoy: Move R1 Nmccoy Greenschlyme\n\n73) Charlemagne: Move R2 Charlemagne Greenschlyme\n\n74) wyons: Build R2 Wyons\n\n75) NMcCoy: Sacrifice G3 Nmccoy\nBuild R2 Greenschlyme\nBuild R3 Croconaw\nBuild R3 Nmccoy\n\n76) Charlemagne: Sacrifice G3 Charlemagne\nBuild R3 Charlemagne\nBuild R3 Greenschlyme\nBuild G1 Frogstar\nCatastrophe Greenschlyme Red\n\n77) wyons: Build G2 Mongoose\n\n78) wyons: Move R2 Mongoose Greenschlyme\n\n\nHomeworlds Online (SDG# 9441)\nStarted: 2007.9.29, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Charlemagne (N)\nWinner: MikeYarrum\n\n1) Charlemagne: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\tCharlemagne: Hi Mike - enjoy this friendly little war :)\n\tMikeYarrum: Hey, I&#39;m sure I will!\n\n3) Charlemagne: Build Y1 Charlemagne\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Charlemagne: Trade Y1 G1 Charlemagne\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) Charlemagne: Discover Y3 Charlemagne G1 Fido\n\n8) MikeYarrum: Discover Y1 Mikeyarrum B3 Torako\n\n9) Charlemagne: Build Y1 Fido\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) Charlemagne: Build G2 Charlemagne\n\n12) MikeYarrum: Move G1 Mikeyarrum Torako\n\n\nHomeworlds Online (SDG# 9369)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.1, Ended: 2007.10.4\nParticipants: Jesse (S), Visible (N)\nWinner: Jesse\n\n\tJesse: Have a good game.\n\tJesse: Or not.\n\nHomeworlds Online (SDG# 9468)\nStarted: 2007.10.2, Ended: 2008.2.22\nParticipants: kreiger (S), MikeYarrum (N)\nWinner: kreiger\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tkreiger: This is my first game on SDG, so sorry if i make any mistakes.\n\tMikeYarrum: No problem, it happens to everyone.\n\n2) kreiger: Homeworld Y1 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tkreiger: I&#39;m sorry, i have to go to bed. I hope you&#39;re not disappointed if the game takes a long time.\n\tMikeYarrum: No problem - this site is designed for games where people can log on when they are free and play when they can. Games usually take quite a while.\n\n4) kreiger: Build G1 Kreiger\n\n\tkreiger: Do you want me to terminate the game?\n\tKeith: I believe Mike is gone.  He has not been logged into SDG for 44+ days.\n\tMikeYarrum: Um... I&#39;m back, if you want to continue.\n\nHomeworlds Online (SDG# 9496)\nVariants: &quot;Unrated&quot;\nStarted: 2007.10.3, Ended: 2008.2.22\nParticipants: Sunnan (S), kreiger (N)\nWinner: Sunnan\n\n1) kreiger: Homeworld Y3 B1 G3\n\tSunnan: I&#39;m sorry we called you a sopa the other day.\n\n2) Sunnan: Homeworld B1 R2 G3\n\n3) kreiger: Build G1 Kreiger\n\n4) Sunnan: Build G1 Sunnan\n\n5) kreiger: Discover G1 Kreiger B2 Slylandro\n\n6) Sunnan: Trade G1 Y1 Sunnan\n\n7) kreiger: Build G1 Slylandro\n\n8) Sunnan: Build Y1 Sunnan\n\n9) kreiger: Trade G1 Y1 Slylandro\n\n10) Sunnan: Discover Y1 Sunnan G3 Alonzo\n\n11) kreiger: Build Y2 Slylandro\n\n12) Sunnan: Build Y2 Sunnan\n\n13) kreiger: Move Y1 Slylandro Alonzo\n\n14) Sunnan: Discover Y1 Sunnan B3 Veronica\n\n15) kreiger: Discover Y2 Slylandro Y3 Orz\n\n16) Sunnan: Sacrifice G3 Sunnan\nBuild Y2 Veronica\nBuild Y3 Sunnan\nPass\n\n17) kreiger: Build G1 Slylandro\n\n18) Sunnan: Trade Y1 G1 Veronica\n\n19) kreiger: Trade G1 Y1 Slylandro\n\n20) Sunnan: Discover Y2 Sunnan B3 Knuth\n\n21) kreiger: Move Y2 Orz Slylandro\n\n22) Sunnan: Build Y3 Veronica\n\n23) kreiger: Trade Y1 R1 Slylandro\n\n24) Sunnan: Discover Y1 Alonzo G2 Compose\n\n25) kreiger: Build G1 Kreiger\n\n26) Sunnan: Build Y1 Compose\n\n27) kreiger: Move Y1 Alonzo Compose\n\n28) Sunnan: Move Y1 Compose Kreiger\n\n29) kreiger: Sacrifice R1 Slylandro\nAttack Y1 Compose\n\n30) Sunnan: Sacrifice Y2 Veronica\nMove Y2 Knuth Compose\nMove Y2 Compose Kreiger\n\n31) kreiger: Build Y2 Slylandro\n\n32) Sunnan: Trade Y3 B3 Veronica\n\n33) kreiger: Sacrifice G3 Kreiger\nBuild G2 Slylandro\nBuild G2 Slylandro\nBuild G3 Kreiger\n\n34) Sunnan: Sacrifice Y1 Kreiger\nMove G1 Veronica Slylandro\nCatastrophe Slylandro Green\n\n35) kreiger: Trade G1 R1 Kreiger\n\n36) Sunnan: Discover Y2 Kreiger R2 Earth\n\n37) kreiger: Build G1 Kreiger\n\n38) Sunnan: Trade Y3 G3 Sunnan\n\n39) kreiger: Sacrifice Y2 Slylandro\nMove G3 Kreiger Slylandro\nMove G3 Slylandro Veronica\n\n40) Sunnan: Sacrifice Y2 Earth\nMove B3 Veronica Compose\nMove B3 Compose Kreiger\n\n41) kreiger: Sacrifice Y2 Slylandro\nMove G3 Veronica Compose\nMove G3 Compose Kreiger\n\n42) Sunnan: Discover B3 Kreiger R2 Zebedee\n\n43) kreiger: Discover Y1 Compose G3 Melnorme\n\n44) Sunnan: Build G1 Sunnan\n\n45) kreiger: Build Y1 Compose\n\n46) Sunnan: Trade G1 R1 Sunnan\n\n47) kreiger: Build Y2 Melnorme\n\n48) Sunnan: Trade B3 Y3 Zebedee\n\n\nHomeworlds Online (SDG# 9508)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.3, Ended: 2007.11.15\nParticipants: Kermit (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld G3 Y2 B3\n\tnycavri: TaGG.\n\n2) Kermit: Homeworld Y1 B2 G3\n\n3) nycavri: Build B1 Nycavri\n\n4) Kermit: B G1 Kermit\n\n5) nycavri: Build B1 Nycavri\n\n6) Kermit: Build G1 Kermit\n\n7) nycavri: Discover B1 Nycavri Y1 Jb\n\n8) Kermit: Discover G1 Kermit B3 Beaudelaire\n\n9) nycavri: Discover B1 Jb Y3 Db\n\n10) Kermit: Trade G1 R1 Kermit\n\n11) nycavri: Trade B1 Y1 Nycavri\n\n12) Kermit: Move R1 Kermit Db\n\n13) nycavri: Move B1 Db Kermit\n\n14) Kermit: Sacrifice R1 Db\nAttack B1 Kermit\n\n15) nycavri: Build B1 Nycavri\n\n16) Kermit: Build G1 Beaudelaire\n\n17) nycavri: Trade B1 R1 Nycavri\n\n18) Kermit: Trade G1 R1 Beaudelaire\n\n19) nycavri: Build B1 Nycavri\n\n20) Kermit: Build G1 Kermit\n\n21) nycavri: Discover B1 Nycavri Y1 Indeep\n\n\nHomeworlds Online (SDG# 9503)\nVariants: &quot;Unrated&quot;\nStarted: 2007.10.4, Ended: 2008.2.22\nParticipants: Sunnan (S), kreiger (N)\nWinner: Sunnan\n\n1) kreiger: Homeworld R1 G3 B3\n\tSunnan: What&#39;s with all the unrated games? Why can&#39;t we play normally?\n\tkreiger: I don&#39;t want to be rated until i stop sucking.\n\n2) Sunnan: Homeworld Y1 B2 G3\n\n3) kreiger: Build B1 Kreiger\n\n4) Sunnan: Build G1 Sunnan\n\n5) kreiger: Build B1 Kreiger\n\n6) Sunnan: Discover G1 Sunnan G3 Orson\n\tSunnan: I think that&#39;s unfair.\n\n7) kreiger: Trade B1 Y1 Kreiger\n\n8) Sunnan: Build G1 Sunnan\n\n9) kreiger: Discover B1 Kreiger G2 Syreen\n\n10) Sunnan: Discover G1 Sunnan Y3 Thistlesun\n\n11) kreiger: Trade Y1 G1 Kreiger\n\n12) Sunnan: Build G2 Sunnan\n\n13) kreiger: Build G2 Kreiger\n\n14) Sunnan: Trade G2 Y2 Sunnan\n\n15) kreiger: Trade G1 Y1 Kreiger\n\n16) Sunnan: Build G1 Sunnan\n\n17) kreiger: Discover Y1 Kreiger G2 Arilou\n\n18) Sunnan: Discover G1 Thistlesun Y2 Farrah\n\n19) kreiger: Trade G2 Y2 Kreiger\n\n20) Sunnan: Build G2 Orson\n\n21) kreiger: Build B1 Syreen\n\n22) Sunnan: Sacrifice G1 Orson\nBuild G1 Farrah\n\n23) kreiger: Build Y1 Kreiger\n\n24) Sunnan: Sacrifice G2 Orson\nBuild G2 Farrah\nBuild G3 Sunnan\n\n25) kreiger: Build Y3 Arilou\n\n26) Sunnan: Discover Y2 Sunnan B3 Laura\n\n27) kreiger: Build Y3 Kreiger\n\n28) Sunnan: Discover G1 Sunnan Y3 Johnny\n\n29) kreiger: Move Y3 Kreiger Syreen\n\n30) Sunnan: Trade G3 R3 Sunnan\n\n31) kreiger: Trade B1 R1 Syreen\n\n32) Sunnan: Sacrifice G2 Farrah\nBuild G2 Sunnan\nBuild G3 Farrah\n\n\nHomeworlds Online (SDG# 9509)\nStarted: 2007.10.4, Ended: 2007.10.21\nParticipants: wyons (S), stoneaxe (N)\nWinner: wyons\n\n1) stoneaxe: Homeworld B2 Y3 G3\n\n2) wyons: Homeworld R1 B3 G3\n\tstoneaxe: Thanks for playing again!  I need the practice!  I learned an important lesson last game though.\n\n3) stoneaxe: Build G1 Stoneaxe\n\twyons: no worries, I&#39;m learning too!\n\n4) wyons: Build G1 Wyons\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) stoneaxe: Discover G3 Stoneaxe Y1 Zpm\n\n8) wyons: Build Y2 Wyons\n\n9) stoneaxe: Build G1 Zpm\n\n10) wyons: Trade Y1 R1 Wyons\n\n11) stoneaxe: Build G1 Zpm\n\n12) wyons: Build G1 Wyons\n\n13) stoneaxe: Move G3 Zpm Stoneaxe\n\n14) wyons: Build G2 Wyons\n\n15) stoneaxe: Build G2 Stoneaxe\n\n16) wyons: Discover G2 Wyons Y2 Live Alley\n\n17) stoneaxe: Trade G2 R2 Stoneaxe\n\n18) wyons: Build G2 Live\n\n19) stoneaxe: Move G1 Zpm Live\n\n20) wyons: Move G2 Live Zpm\n\n21) stoneaxe: Build G2 Stoneaxe\n\n22) wyons: Sacrifice R1 Wyons\nAttack G1N Live\n\n23) stoneaxe: Build G3 Zpm\n\n24) wyons: Move G1 Live Zpm\nCatastrophe Zpm Green\n\n25) stoneaxe: Discover G2 Stoneaxe Y1 Kronos\n\n26) wyons: Trade G1 R1 Wyons\n\n27) stoneaxe: Build Y1 Stoneaxe\n\n28) wyons: Build Y2 Wyons\n\n29) stoneaxe: Trade Y1 B1 Stoneaxe\n\n30) wyons: Build G1 Wyons\n\n31) stoneaxe: Build G1 Stoneaxe\n\n32) wyons: Move Y2 Wyons Live\n\n33) stoneaxe: Move R2 Stoneaxe Kronos\n\n34) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild Y3 Live\nBuild Y3 Wyons\n\n35) stoneaxe: Move G3 Stoneaxe Kronos\n\n36) wyons: Sacrifice Y2 Live\nMove Y3 Live Kronos\nMove Y3 Kronos Stoneaxe\n\n37) stoneaxe: Sacrifice B1 Stoneaxe\nTrade G2 Y2 Kronos\n\tstoneaxe: I moved a little too hastily.  Probably doesn&#39;t matter, I sense my destruction is near.\r\n\n\n38) wyons: Trade Y3 R3 Stoneaxe\n\tstoneaxe: There, that seems like a better defense.\n\n39) stoneaxe: Sacrifice G3 Kronos\nBuild G1 Stoneaxe\nBuild R1 Kronos\nBuild R2 Kronos\n\tstoneaxe: well, maybe not.   Okay, now what....\n\n40) wyons: Attack G1N Stoneaxe\n\n41) stoneaxe: Build Y3 Stoneaxe\n\n42) wyons: Attack Y3N Stoneaxe\n\tstoneaxe: You would just catastrophe me if I did that last move, but I think I need to do something drastic like that.\n\tstoneaxe: too late for it now I guess.\n\n43) stoneaxe: Move R2 Kronos Live\n\tstoneaxe: I suppose the lesson  &quot;never move the 3 pointer out of your HW&quot; has to be learned somehow.  That will teach me.\n\twyons: yes, I think that must be another one to me. But this match was tougher than the last and I am happy to play again if you wish... :)\n\twyons: no, I spoke too soon! I thought i could sacrifice my r3 ship and take over your three little ones, but of course, once it is sacrificed there isnt a ship in the sytem so the red cant operate..so the fight continues!!\n\n44) wyons: Sacrifice R3 Stoneaxe\nAttack G1N Stoneaxe\nAttack Y1N Stoneaxe\nAttack R2N Live\n\n\tstoneaxe: Sounds good, that will give me more practice anyways!\n\twyons: fine, just challenge me as you want. Thanks for the game. :)\r\n\n\nHomeworlds Online (SDG# 9515)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.10.4, Ended: 2007.10.15\nParticipants: scottobear (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) scottobear: Homeworld R2 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) scottobear: Build G1 Scottobear\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) scottobear: Trade G3 Y3 Scottobear\n\n7) zoltar: Build G1 Zoltar\n\n8) scottobear: Build Y1 Scottobear\n\n9) zoltar: Discover G1 Zoltar B2 Blueberry\n\n10) scottobear: Build G1 Scottobear\n\n11) zoltar: Build G2 Blueberry\n\n12) scottobear: Discover G1 Scottobear B1 Thor\n\n13) zoltar: Trade G1 R1 Blueberry\n\n14) scottobear: Trade G1 R1 Thor\n\n15) zoltar: Build R2 Blueberry\n\n16) scottobear: Build G1 Scottobear\n\n17) zoltar: Trade R2 Y2 Blueberry\n\n18) scottobear: Move G1 Scottobear Thor\n\n19) zoltar: Move Y2 Blueberry Thor\n\n20) scottobear: Build R2 Thor\n\n21) zoltar: Sacrifice R1 Blueberry\nAttack R2 Thor\n\n22) scottobear: Trade Y3 R3 Scottobear\n\tscottobear: eek!\n\n23) zoltar: Sacrifice R2 Thor\nAttack R1 Thor\nAttack G1 Thor\n\n24) scottobear: Move R3 Scottobear Thor\n\n25) zoltar: Sacrifice G2 Blueberry\nBuild R1 Thor\nBuild R2 Thor\nCatastrophe Thor R\n\tzoltar: Very, very dangerous, and though I&#39;m ahead a couple of small pieces, it doesn&#39;t warrant taking your 3-pip defender out of your homeworld.  It&#39;s worth it to me, then, to sacrifice lots of stuff to blow up your battlestar, as we&#39;ll be left with a simplified position where I have a large defender and you don&#39;t.\r\n\r\nNow either I&#39;ll build fast and invade and win outright, or else, in the best case for you, I&#39;ll only build a huge lead while you scramble to defend your homeworld and get another 3-pip ship.\r\n\r\nIn sum, it&#39;s a cardinal sin in homeworlds to leave your homeworld without a 3-pip ship, unless you are threatening checkmate and your opponent has to respond.  \n\n26) scottobear: Build Y1 Scottobear\n\tscottobear: ah, I see... maybe for home defense, I should&#39;ve tried a r3 planet!\n\n27) zoltar: Build Y2 Thor\n\n28) scottobear: Move Y1 Scottobear Thor\n\tscottobear: move y1 thor\n\tscottobear: move y1 scottobear thor\n\n29) zoltar: Move Y2 Thor Scottobear\n\n30) scottobear: Build Y2 Scottobear\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Scottobear\nCatastrophe Scottobear Y\n\n32) scottobear: Build G1 Scottobear\n\n33) zoltar: Move Y2 Thor Scottobear\n\tzoltar: Attack!!!\n\n34) scottobear: Discover Y1 Thor G2 Loki\n\n35) zoltar: Trade Y3 R3 Zoltar\n\n36) scottobear: Build G2 Scottobear\n\n37) zoltar: Sacrifice Y3 Zoltar\nMove Y2 Scottobear Thor\nMove G1 Thor Scottobear\nMove Y2 Thor Loki\nCatastrophe Scottobear G\n\n\nHomeworlds Online (SDG# 9497)\nVariants: &quot;Unrated&quot;\nStarted: 2007.10.4, Ended: 2007.11.18\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) kreiger: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) kreiger: Build G1 Kreiger\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) kreiger: Build G1 Kreiger\n\n7) zoltar: Build Y1 Zoltar\n\n8) kreiger: Discover G1 Kreiger Y3 Shofixti\n\n9) zoltar: Build Y2 Zoltar\n\n10) kreiger: Discover G1 Kreiger Y3 Mycon\n\n11) zoltar: Discover Y1 Zoltar G2 Gonorrhea\n\n12) kreiger: Build G1 Kreiger\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Gonorrhea\nBuild Y2 Gonorrhea\nBuild Y3 Zoltar\n\n14) kreiger: Sacrifice G3 Kreiger\nBuild G2 Mycon\nBuild G2 Shofixti\nBuild G3 Kreiger\n\n15) zoltar: Trade Y3 G3 Zoltar\n\n16) kreiger: Trade G3 Y3 Kreiger\n\n17) zoltar: Build G3 Zoltar\n\n18) kreiger: Build G3 Kreiger\n\n19) zoltar: Trade Y2 R2 Zoltar\n\n20) kreiger: Trade G1 R1 Kreiger\n\n21) zoltar: Move R2 Zoltar Gonorrhea\n\n22) kreiger: Build G1 Kreiger\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild R1 Gonorrhea\nBuild G3 Zoltar\n\n24) kreiger: Sacrifice Y3 Kreiger\nMove G1 Mycon Gonorrhea\nMove G1 Shofixti Gonorrhea\nMove G2 Shofixti Gonorrhea\nCatastrophe Gonorrhea Green\n\n25) zoltar: Discover G3 Zoltar B2 Bluehoohoo\n\n26) kreiger: Trade G1 B1 Kreiger\n\n27) zoltar: Build G1 Bluehoohoo\n\tzoltar: Yikes!  \n\n28) kreiger: Build G1 Mycon\n\n29) zoltar: Trade G1 Y1 Bluehoohoo\n\n30) kreiger: Sacrifice B1 Kreiger\nTrade G2 Y2 Mycon\n\n31) zoltar: Discover Y2 Zoltar B2 Blooze\n\n32) kreiger: Move Y2 Mycon Blooze\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blooze\nBuild Y3 Bluehoohoo\nBuild Y3 Zoltar\n\n34) kreiger: Build R1 Kreiger\n\n35) zoltar: Trade Y3 R3 Bluehoohoo\n\n36) kreiger: Sacrifice G1 Mycon\nBuild Y3 Blooze\nCatastrophe Blooze Yellow\n\n37) zoltar: Build Y2 Bluehoohoo\n\n38) kreiger: Build G1 Kreiger\n\n39) zoltar: Build Y2 Bluehoohoo\n\n40) kreiger: Build R2 Kreiger\n\n41) zoltar: Build R2 Bluehoohoo\n\tzoltar: Battlestations!\n\n42) kreiger: Trade R2 Y2 Kreiger\n\n43) zoltar: Discover Y2 Bluehoohoo B3 Bluesbrothers\n\n44) kreiger: Discover R1 Kreiger B3 Spathi\n\n45) zoltar: Trade Y3 G3 Zoltar\n\n46) kreiger: Sacrifice G3 Kreiger\nBuild R2 Kreiger\nBuild R2 Kreiger\nBuild R3 Spathi\n\n47) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluesbrothers\nBuild Y3 Bluehoohoo\n\n48) kreiger: Build G1 Kreiger\n\n49) zoltar: Move R2 Bluehoohoo Bluesbrothers\n\n50) kreiger: Discover R2 Kreiger G3 Vux\n\n51) zoltar: Build R3 Bluehoohoo\n\n52) kreiger: Move Y2 Kreiger Spathi\n\n53) zoltar: Sacrifice Y2 Bluehoohoo\nMove R3 Bluehoohoo Vux\nDiscover Y1 Zoltar B2 Bloozebrotherz\n\n54) kreiger: Sacrifice G1 Kreiger\nBuild Y2 Spathi\n\n55) zoltar: Attack R2 Vux\n\n\tzoltar: Sure, and we can start another game when you get back, if you wish.\n\nHomeworlds Online (SDG# 9495)\nStarted: 2007.10.4, Ended: 2007.11.5\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n\nHomeworlds Online (SDG# 9462)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.4, Ended: 2007.10.7\nParticipants: SpaceHobo (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 9519)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.6, Ended: 2007.10.9\nParticipants: SpaceHobo (S), Charlemagne (N)\nWinner: Charlemagne\n\n1) Charlemagne: Homeworld G2 B1 Y3\n\n\tCharlemagne: Enjoy\n\nHomeworlds Online (SDG# 9518)\nStarted: 2007.10.6, Ended: 2007.10.12\nParticipants: Metroidfans (S), MikeYarrum (N)\nWinner: Metroidfans\n\n\nHomeworlds Online (SDG# 9466)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.9, Ended: 2007.10.15\nParticipants: TwoShort (S), stoneaxe (N)\nWinner: TwoShort\n\n1) stoneaxe: Homeworld Y1 B3 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy.\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\tstoneaxe: Hi There.  I see you are the current highest ranking Homeworlds expert.  I&#39;m a newbie, so feel free to impart some galactic wisdom!  Just getting into this game... there is a lot of strategy to it!!!\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) stoneaxe: Build G1 Stoneaxe\n\tTwoShort: Hmmm, there is definitely a lot of strategy to it; as far as galactic wisdom:  In the early game, don&#39;t get locked out of a color and don&#39;t let me get more 3 pointers than you.\n\n8) TwoShort: Build Y2 Twoshort\n\n9) stoneaxe: Build Y2 Stoneaxe\n\n10) TwoShort: Build G1 Twoshort\n\tstoneaxe: I need to learn better when to sacrifice ships to do something else.\n\tTwoShort: Sacrifices are somewhat rare;  you might sacrifice a 1 or 2 if you need to use that color in different system and it&#39;s just worth the cost.  If you sacrifice a g3, you generally want to be growing a new 3 pointer as part of the action; the most common sacrifice is a g3 that lets you regrow the very same g3 (plus two other things)- we call that the factory.  Sacrificing a yellow 3 should mean you&#39;re going for the kill.\n\n11) stoneaxe: Trade Y2 B2 Stoneaxe\n\n12) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n13) stoneaxe: Build B1 Stoneaxe\n\n14) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n15) stoneaxe: Discover G1 Stoneaxe G2 Bespin\n\n16) TwoShort: Build Y2 Grogar\n\tTwoShort: As long as I&#39;m throwing around advice, that&#39;s a bit of an odd move; you won&#39;t really be able to do much with that ship or star in the future.  I do essentially that move from similar position, but the point is to suck up the g2 in order to affect who gets a chance to grow 3 point greens, and that doesn&#39;t currently apply.  It might have been better to move to a different color, so you&#39;d have more options, or to move out a y or b, neither of which can grow further in your homeworld without danger.\n\n17) stoneaxe: Move B1 Stoneaxe Bespin\n\tstoneaxe: I see.  Thank you!  Keep the advice coming!  \n\n18) TwoShort: Discover Y2 Grogar B2 Bluestar\n\n19) stoneaxe: Build Y2 Stoneaxe\n\tstoneaxe: I feel like if I MOVE pieces, then i&#39;m not building pieces, so I&#39;m probly falling behind.  Well, I should&#39;ve planned it better.  \n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Twoshort\nBuild G1 Yolonda\n\tTwoShort: I know the feeling, but I think the key realization for the early game is that it doesn&#39;t really matter too much if you fall behind in 1s &amp; 2s, the key is the timing on building the 3 points.  So you want to have a safe place to build any color that&#39;s getting close, and to set up your opponent to build the last 2.  Alternatively, you can set up several places to safely build a particular color, so that you can sacrifice a g3 to build the last 2 pointer of that color yourself and immediately plow into building the 3s.\n\n21) stoneaxe: Move Y2 Stoneaxe Bluestar\n\tTwoShort: Hmm, I&#39;m not sure if you realize that lets me move my y2 in from BlueStar to blow up half your homeworld, or if you just don&#39;t se a better option (which there may not be)   In any case, you&#39;ll get away with it for a turn at least, because I think the grow more firmly ensures my victory :)\n\n22) TwoShort: Trade Y3 R3 Bluestar\n\tstoneaxe: I did not realize that, but I see how now... you would&#39;ve moved in and caused catastrophe on yellow.\n\n23) stoneaxe: Trade B2 R2 Stoneaxe\n\tstoneaxe: Its probably dumb, but I will threaten to do the same thing in BlueStar.  Should I have done something else?  You will probably sac and still catastrophe Y in my homeworld, right?\n\tTwoShort: You didn&#39;t have great options, because I&#39;m winning :)  You might have moved the y2 out to a new star, but I&#39;m saying that knowing what I&#39;m going to do this turn. It&#39;s easy to think an extra move ahead if you wait a turn to do it :)  I could still blow up half your homeworld, but it would be expensive, and I have no immediate threat vs the other half.  By flipping my y3 to red, you must spend next turn turning something red or lose, so I can take your y2 the turn after that, then you still won&#39;t be able to safely grow the y3, so I&#39;ll probably get that back too.\n\n24) TwoShort: Attack Y2N Bluestar\n\n25) stoneaxe: Build G2 Stoneaxe\n\n26) TwoShort: Move G1 Yolonda Bluestar\n\n27) stoneaxe: Sacrifice Y1 Stoneaxe\nMove G1 Bespin Yolonda\n\n28) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Bluestar\nMove G1 Bluestar Stoneaxe\nMove G1 Bluestar Stoneaxe\nCatastrophe Stoneaxe Green\n\n29) stoneaxe: Build B1 Bespin\n\n30) TwoShort: Move R3 Bluestar Stoneaxe\n\n31) stoneaxe: Move G1 Yolonda Twoshort\n\n32) TwoShort: Attack R2N Stoneaxe\n\n\tstoneaxe: I sense my destruction is near!  (didn&#39;t see any way out)  Good game!  I feel like I learned a lot in this game.  Also read some of your Archive games.  Thanks for all the tips.  Can you play another?\n\tTwoShort: Thanks for the game!\n\tTwoShort: I&#39;ll be happy to play another...\n\nHomeworlds Online (SDG# 9517)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.10.9, Ended: 2007.11.4\nParticipants: stoneaxe (S), scottobear (N)\nWinner: stoneaxe\n\n1) scottobear: Homeworld R3 B2 G3\n\n2) stoneaxe: Homeworld Y1 B3 G3\n\n3) scottobear: Build G1 Scottobear\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) stoneaxe: Build G1 Stoneaxe\n\n7) scottobear: Discover Y1 Scottobear B1 Hoth\n\n8) stoneaxe: Discover G1 Stoneaxe B2 Romulus\n\n9) scottobear: Trade Y1 G1 Hoth\n\n10) stoneaxe: Build G2 Romulus\n\n11) scottobear: Build G2 Hoth\n\n12) stoneaxe: Discover G1 Stoneaxe Y2 Vulcan\n\tstoneaxe: Hi again,  I&#39;m new to this game, but this is about my 4th or 5th game.  I&#39;m trying to learn more about it.  Good luck!\n\n13) scottobear: Build G2 Scottobear\n\n14) stoneaxe: Build G3 Vulcan\n\n15) scottobear: Trade G3 Y3 Scottobear\n\n16) stoneaxe: Build G3 Stoneaxe\n\n17) scottobear: Trade G1 Y1 Hoth\n\n18) stoneaxe: Trade G3 R3 Stoneaxe\n\n19) scottobear: Build Y1 Hoth\n\n20) stoneaxe: Trade G2 Y2 Romulus\n\n21) scottobear: Trade Y1 G1 Hoth\n\n22) stoneaxe: Build R1 Stoneaxe\n\n23) scottobear: Trade G2 R2 Hoth\n\n24) stoneaxe: Move G3 Vulcan Hoth\n\n25) scottobear: Move R2 Hoth Romulus\n\n26) stoneaxe: Sacrifice R1 Stoneaxe\nAttack R2 Romulus\n\n27) scottobear: Build G2 Hoth\n\n28) stoneaxe: Sacrifice G3 Hoth\nBuild G2 Vulcan\nBuild G3 Romulus\nBuild G3 Stoneaxe\n\tstoneaxe: Sorry, I had to do it!  :-)  Its happened to me before too, the sacrifice of R1 in my homeworld let me attack in any other world where I control a big enough ship.\n\tscottobear: no worries! eek!\n\n29) scottobear: Build Y1 Scottobear\n\n30) stoneaxe: Move R2 Romulus Hoth\n\tscottobear: nice home fleet!\n\n31) scottobear: Build Y2 Hoth\n\n32) stoneaxe: Build Y3 Romulus\n\tstoneaxe: Thanks!  Yours is doing good too.  We have another good match going here.  Which of these games do you like the best?\n\tscottobear: I like homeworlds, but haven&#39;t mastered sacrifice strategy yet. martian chess is pretty sold. how about you?\n\n33) scottobear: Build Y3 Scottobear\n\tstoneaxe: Funny, I told someone the same thing about sacrifices a couple weeks ago.  I like both games, but I currently think Homeworlds is more interesting.\n\n34) stoneaxe: Attack Y2 Hoth\n\n35) scottobear: Move G2 Hoth Romulus\n\n36) stoneaxe: Sacrifice Y2 Romulus\nMove G3 Romulus Hoth\nMove Y3 Romulus Hoth\n\n37) scottobear: Trade Y3 B3 Scottobear\n\n38) stoneaxe: Sacrifice Y2 Hoth\nMove Y3 Hoth Scottobear\nMove G3 Hoth Scottobear\n\n39) scottobear: Attack G3 Scottobear\n\n40) stoneaxe: Sacrifice R3 Stoneaxe\nAttack G3N Scottobear\nAttack B3N Scottobear\nAttack Y3N Scottobear\n\n\tscottobear: holy cow!!\n\tscottobear: good game!!\n\nHomeworlds Online (SDG# 9557)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.11, Ended: 2007.10.31\nParticipants: sordros (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R3 B2 G3\n\n2) sordros: Homeworld B1 Y2 G3\n\twyons: Hi there! Enjoy the game.\n\n3) wyons: Build G1 Wyons\n\tsordros: Hi there, have a good game!\n\n4) sordros: Build G1 Sordros\n\n5) wyons: Trade G1 Y1 Wyons\n\n6) sordros: Discover G1 Sordros Y3 Flavega\n\n7) wyons: Build G1 Wyons\n\n8) sordros: Build G1 Sordros\n\n9) wyons: Build G2 Wyons\n\n10) sordros: Build G2 Flavega\n\n11) wyons: Trade G1 R1 Wyons\n\n12) sordros: Trade G1 Y1 Sordros\n\n13) wyons: Discover G2 Wyons B1 Sa-fire\n\n14) sordros: Build G1 Sordros\n\n15) wyons: Build Y1 Wyons\n\n16) sordros: Build Y2 Sordros\n\n17) wyons: Build Y2 Wyons\n\n18) sordros: Trade Y1 R1 Sordros\n\n19) wyons: Trade Y1 B1 Wyons\n\n20) sordros: Build Y1 Sordros\n\n21) wyons: Build B2 Wyons\n\n22) sordros: Trade Y2 B2 Sordros\n\n23) wyons: Trade B2 G2 Wyons\n\n24) sordros: Discover G1 Flavega Y2 Flava\n\n25) wyons: Sacrifice G3 Wyons\nBuild G1 Wyons\nBuild G3 Wyons\nBuild G3 Sa-fire\n\n26) sordros: Discover G1 Sordros Y3 Amarella\n\n27) wyons: Sacrifice Y1 Wyons\nMove G3 Sa-fire Flavega\n\n28) sordros: Sacrifice G2 Flavega\nBuild G2 Amarella\nBuild Y1 Sordros\n\n29) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild G3 Sa-fire\nBuild Y3 Wyons\n\n30) sordros: Sacrifice G2 Amarella\nBuild G2 Sordros\nBuild B2 Sordros\n\n31) wyons: Sacrifice G2 Sa-fire\nBuild G2 Flavega\nBuild B3 Wyons\n\n32) sordros: Move B2 Sordros Amarella\n\n33) wyons: Sacrifice Y3 Wyons\nMove Y1 Wyons Sa-fire\nMove Y1 Sa-fire Flavega\nMove Y1 Flavega Sordros\nCatastrophe Sordros Yellow\n\n34) sordros: Trade G2 Y2 Sordros\n\n\tsordros: Thanks for the game.\n\nHomeworlds Online (SDG# 9556)\nStarted: 2007.10.12, Ended: 2007.10.29\nParticipants: Charlemagne (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R3 B2 G3\n\tCharlemagne: Enjoy\n\twyons: and U\n\n2) Charlemagne: Homeworld B2 Y1 G3\n\tCharlemagne: Ooh you are experiementing with an aggressive one, then, good stuff\n\n3) wyons: Build G1 Wyons\n\twyons: actually, it is more about wanting greater freedom to create yellow and green (if one of these colours are the stars then that restricts building capacity)... erm, thats my current theory anyway though I am finding the tactics of this game very elusive.\n\n4) Charlemagne: Build G1 Charlemagne\n\tCharlemagne: ok, I see.\r\nI love the green expansion strategy idea which I am now shamelessly stealing from you :)\n\n5) wyons: Trade G1 Y1 Wyons\n\twyons: as I stole from others..\n\n6) Charlemagne: Trade G1 Y1 Charlemagne\n\n7) wyons: Build Y2 Wyons\n\n8) Charlemagne: Build Y2 Charlemagne\n\tCharlemagne: nice\n\n9) wyons: Build Y2 Wyons\n\n10) Charlemagne: Discover Y2 Charlemagne G3 Blogspot\n\n11) wyons: Trade Y1 R1 Wyons\n\n12) Charlemagne: Sacrifice G3 Charlemagne\nBuild Y1 Blogspot\nBuild Y3 Blogspot\nBuild Y3 Charlemagne\n\n13) wyons: Sacrifice Y2 Wyons\nDiscover Y2 Wyons R1 Ephemeral\nMove Y2 Ephemeral Blogspot\nCatastrophe Blogspot Yellow\n\n14) Charlemagne: Trade Y3 G3 Charlemagne\n\twyons: ooh no, I couldnt allow that.\n\n15) wyons: Trade R1 Y1 Wyons\n\tCharlemagne: ah well, back to square one then\n\n16) Charlemagne: Build Y2 Charlemagne\n\twyons: similar except you have sente this time...\n\n17) wyons: Build Y2 Wyons\n\tCharlemagne: hmmmmmm....\r\nOh, by the way, I won&#39;t be able to play games in person on Friday this week... diary filling up with work type things.... Ian x\n\n18) Charlemagne: Discover Y2 Charlemagne G3 Puttyx\n\n19) wyons: Discover Y2 Wyons G1 Emma-rald\n\n20) Charlemagne: Discover Y1 Charlemagne R3 Grundon\n\n21) wyons: Build Y2 Emma-rald\n\n22) Charlemagne: Build Y3 Puttyx\n\n23) wyons: Build Y3 Wyons\n\n24) Charlemagne: Move Y2 Puttyx Emma-rald\n\n25) wyons: Trade Y1 R1 Wyons\n\n26) Charlemagne: Build G1 Charlemagne\n\twyons: ooooh I like this game- so many different possibilities to try and hold...\n\n27) wyons: Build G1 Wyons\n\n28) Charlemagne: Move G1 Charlemagne Grundon\n\n29) wyons: Move Y2 Emma-rald Grundon\n\n30) Charlemagne: Build G2 Charlemagne\n\n31) wyons: Attack G1S Grundon\n\n32) Charlemagne: Trade G2 R2 Charlemagne\n\n33) wyons: Sacrifice R1 Wyons\nAttack Y2S Emma-rald\n\n34) Charlemagne: Build G2 Charlemagne\n\n35) wyons: Build G2 Grundon\n\n36) Charlemagne: Build R1 Charlemagne\n\n37) wyons: Sacrifice Y2 Emma-rald\nMove G2 Grundon Charlemagne\nMove G1 Grundon Charlemagne\nCatastrophe Charlemagne Green\n\n\twyons: --oh?! I didnt expect you to resign then... Thanks for the game and yes - see you on Friday.\n\nHomeworlds Online (SDG# 9523)\nStarted: 2007.10.12, Ended: 2007.11.2\nParticipants: ts52 (S), sordros (N)\nWinner: ts52\n\n1) sordros: Homeworld B1 Y2 G3\n\tsordros: Hi there! Have fun\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) sordros: Build G1 Sordros\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks. You too.\n\n5) sordros: Discover G1 Sordros Y3 Amarega\n\n6) ts52: Trade G1 B1 Ts52\n\n7) sordros: Build G1 Sordros\n\n8) ts52: Build B1 Ts52\n\n9) sordros: Trade G1 Y1 Sordros\n\n10) ts52: Discover B1 Ts52 G2 Oscar\n\n11) sordros: Build G1 Sordros\n\n12) ts52: Build B2 Oscar\n\n13) sordros: Build Y1 Sordros\n\n14) ts52: Trade B2 Y2 Oscar\n\n15) sordros: Trade Y1 R1 Sordros\n\n16) ts52: Trade B1 R1 Ts52\n\n17) sordros: Trade G1 B1 Sordros\n\n18) ts52: Build B2 Oscar\n\n19) sordros: Build B2 Sordros\n\n20) ts52: Move B2 Oscar Amarega\n\n21) sordros: Discover B2 Sordros G3 Duamarega\n\n22) ts52: Trade B2 R2 Amarega\n\n23) sordros: Discover G1 Amarega B2 Blua\n\n24) ts52: Build G1 Ts52\n\n25) sordros: Sacrifice G3 Sordros\nBuild B2 Duamarega\nBuild B3 Sordros\nBuild B3 Duamarega\n\n26) ts52: Sacrifice Y2 Oscar\nMove B1 Oscar Amarega\nMove B1 Amarega Sordros\nCatastrophe Sordros Blue\n\n27) sordros: Sacrifice B2 Duamarega\nTrade B3 R3 Duamarega\nTrade B2 Y2 Duamarega\n\n28) ts52: Move R2 Amarega Sordros\n\n\tsordros: GG\n\nHomeworlds Online (SDG# 9467)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.13, Ended: 2008.1.22\nParticipants: stoneaxe (S), jeep (N)\nWinner: stoneaxe\n\n1) jeep: Homeworld R1 B2 G3\n\n2) stoneaxe: Homeworld Y2 B3 G3\n\n3) jeep: Build G1 Jeep\n\tstoneaxe: Hello and thanks for playing.  I&#39;m pretty new to this game, so feel free to comment on my moves! \n\tjeep: *laugh* with as badly as I&#39;ve been sucking lately, you should get a second opinion on anything I tell you.  ;)\r\n\r\nThanks for playing.  I just found out that I&#39;m heading to Brazil in a couple weeks.  There might be a slight lag then.\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) jeep: Build G1 Jeep\n\n8) stoneaxe: Build G1 Stoneaxe\n\n9) jeep: Trade G3 Y3 Jeep\n\n10) stoneaxe: Build Y1 Stoneaxe\n\n11) jeep: Build Y2 Jeep\n\n12) stoneaxe: Discover Y1 Stoneaxe G1 Gruno\n\n13) jeep: Build G2 Jeep\n\n14) stoneaxe: Sacrifice G3 Stoneaxe\nBuild Y2 Gruno\nBuild Y3 Gruno\nBuild Y3 Stoneaxe\n\n15) jeep: Sacrifice Y2 Jeep\nDiscover Y1 Jeep B3 Temp\nMove Y1 Temp Gruno\nCatastrophe Gruno Yellow\n\n16) stoneaxe: Discover Y1 Stoneaxe G1 Tiz\n\n17) jeep: Discover G2 Jeep Y3 Submarine\n\n18) stoneaxe: Build G2 Stoneaxe\n\n19) jeep: Build G2 Jeep\n\n20) stoneaxe: Trade G1 B1 Stoneaxe\n\n21) jeep: Trade G2 Y2 Jeep\n\tstoneaxe: Deep strategy in this game....  Homeworlds is such a cool game!\n\n22) stoneaxe: Build B1 Stoneaxe\n\n23) jeep: Trade Y2 R2 Jeep\n\n24) stoneaxe: Trade B1 R1 Stoneaxe\n\n25) jeep: Build Y1 Jeep\n\n26) stoneaxe: Build B1 Stoneaxe\n\n27) jeep: Trade Y1 B1 Jeep\n\n28) stoneaxe: Trade Y3 G3 Stoneaxe\n\n29) jeep: Build B2 Jeep\n\n30) stoneaxe: Move B1 Stoneaxe Tiz\n\n31) jeep: Move B1 Jeep Submarine\n\n32) stoneaxe: Trade B1 R1 Tiz\n\n33) jeep: Move R2 Jeep Submarine\n\tjeep: The stash image is gone for me... do you see it?\n\tstoneaxe: The image is gone for me too.  I noticed it disappeared after my last move (the trade).\n\tstoneaxe: feel free to make a move and then undo it to see if that fixes it...  I could try to undo my last one too.  Just a thought...\n\tjeep: I&#39;ll be traveling tomorrow.  Please don&#39;t unfreeze it tomorrow.  ;)  When I get to my destination on Monday, I&#39;ll see about setting up the game so I know the stash contents without having to figure it out repeatedly.\n\n34) stoneaxe: Build R2 Tiz\n\n35) jeep: Build Y1 Jeep\n\tstoneaxe: Welcome back!  Glad to see that our game is fixed.\n\n36) stoneaxe: Build R2 Stoneaxe\n\n37) jeep: Build R3 Submarine\n\n38) stoneaxe: Build R3 Stoneaxe\n\n39) jeep: Sacrifice Y3 Jeep\nMove R3 Submarine Jeep\nMove R2 Submarine Tiz\nMove R2 Tiz Stoneaxe\nCatastrophe Stoneaxe Red\n\n40) stoneaxe: Sacrifice B1 Stoneaxe\nTrade R1 G1 Tiz\n\n41) jeep: Trade B2 Y2 Jeep\n\tstoneaxe: Hmmm.  I think I might have moved too fast there, but we&#39;ll see how this goes.\n\n42) stoneaxe: Move R2 Tiz Submarine\n\n\tjeep: Gah!  Sorry about that.  Life got in the way.  Sick child.  :(\n\tstoneaxe: No sweat.  I know how it is.  Hope everyone is feeling better.  I&#39;m sure we&#39;ll play again sometime; take care.\n\nHomeworlds Online (SDG# 9549)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.15, Ended: 2007.11.15\nParticipants: stoneaxe (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B3 R1 G3\n\n2) stoneaxe: Homeworld Y3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) TwoShort: Build G1 Twoshort\n\n8) stoneaxe: Build G1 Stoneaxe\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) stoneaxe: Build G1 Stoneaxe\n\n11) TwoShort: Build G1 Twoshort\n\n12) stoneaxe: Trade G1 R1 Stoneaxe\n\n13) TwoShort: Build G1 Twoshort\n\n14) stoneaxe: Trade G1 B1 Stoneaxe\n\n15) TwoShort: Discover G1 Twoshort Y2 Yellonia\n\tstoneaxe: This move was very stressful!  There are so many options to consider, and all of them have their advantages... Not sure how to choose, so I just went with this one!\n\tTwoShort: Well, you avoided taking the g2 bait :)\n\n16) stoneaxe: Discover Y1 Stoneaxe G1 Grax\n\n17) TwoShort: Build G2 Yellonia\n\n18) stoneaxe: Build R1 Stoneaxe\n\n19) TwoShort: Discover B1 Twoshort G2 Grogar\n\n20) stoneaxe: Build R2 Stoneaxe\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yellonia\n\n22) stoneaxe: Move R2 Stoneaxe Grax\n\n23) TwoShort: Trade G2 R2 Twoshort\n\n24) stoneaxe: Sacrifice G3 Stoneaxe\nBuild R2 Grax\nBuild R3 Stoneaxe\nBuild R3 Grax\n\n25) TwoShort: Move R2 Twoshort Yellonia\n\n26) stoneaxe: Discover R2 Grax R3 Rez\n\n27) TwoShort: Discover G2 Yellonia B1 Bluzon\n\n28) stoneaxe: Move R3 Stoneaxe Bluzon\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yellonia\n\n30) stoneaxe: Attack G2N Bluzon\n\n31) TwoShort: Discover G3 Yellonia Y1 Yolonda\n\n32) stoneaxe: Move R3 Grax Stoneaxe\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Grogar\nBuild Y2 Twoshort\n\n34) stoneaxe: Move Y1 Grax Rez\n\n35) TwoShort: Sacrifice Y2 Twoshort\nMove R2 Yellonia Grax\nMove R2 Grax Stoneaxe\nCatastrophe Stoneaxe Red\n\n36) stoneaxe: Move Y1 Rez Bluzon\n\n37) TwoShort: Trade B2 R2 Grogar\n\n38) stoneaxe: Move R3 Bluzon Stoneaxe\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild B2 Grogar\nBuild G3 Twoshort\n\n40) stoneaxe: Move G2 Bluzon Stoneaxe\n\n41) TwoShort: Move Y1 Twoshort Grogar\n\tstoneaxe: Wow, G3&#39;s are really powerful when all the green is gone!!!  Sac and re-build!!!\n\tTwoShort: We call that &quot;the Factory&quot;, and yeah, it&#39;s pretty huge. \n\n42) stoneaxe: Sacrifice G2 Stoneaxe\nBuild Y2 Bluzon\nBuild Y3 Bluzon\n\n43) TwoShort: Move Y1 Grogar Bluzon\nCatastrophe Bluzon Yellow\n\tstoneaxe: That was a terrible move, but what else was I supposed to do...\n\tTwoShort: Not that :)\n\n44) stoneaxe: Move B1 Stoneaxe Grax\n\tTwoShort: But seriously, you&#39;re pretty doomed in any case.  The Factory domination is pretty unstoppable.  Unless you could force me to let you get your own g3, I can just keep sucking up all the pieces, leaving you with fewer and fewer options.\n\n45) TwoShort: Move G3 Yellonia Grax\n\n46) stoneaxe: Build B1 Grax\n\n47) TwoShort: Sacrifice R2 Grogar\nAttack R2 Grax\nAttack B1 Grax\n\tstoneaxe: Yeah, I should just give up on this one and resign.\n\n48) stoneaxe: Build B2 Grax\n\n49) TwoShort: Sacrifice R2 Grax\nAttack B2S Grax\nAttack B1S Grax\n\n50) stoneaxe: Pass\n\n51) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Grogar\nBuild G2 Yellonia\nBuild G3 Twoshort\n\n52) stoneaxe: Sacrifice R2 Rez\nPass\nPass\n\n53) TwoShort: Trade B3 R3 Grogar\n\tstoneaxe: Aha, take that!\n\n54) stoneaxe: Pass\n\tTwoShort: Ack!  Now what!\n\n55) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Grax Stoneaxe\nMove G3 Yolonda Stoneaxe\n\n56) stoneaxe: Attack G3N Stoneaxe\n\n57) TwoShort: Sacrifice R3 Grogar\nAttack G3S Stoneaxe\nAttack R3S Stoneaxe\nPass\n\tTwoShort: Thanks for the game!\n\n\nHomeworlds Online (SDG# 9608)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.10.17, Ended: 2007.11.26\nParticipants: stoneaxe (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B3 R1 G3\n\n2) stoneaxe: Homeworld Y3 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) stoneaxe: Trade G1 R1 Stoneaxe\n\n7) mneme: Build Y1 Mneme\n\n8) stoneaxe: Build R1 Stoneaxe\n\n9) mneme: Build Y1 Mneme\n\n10) stoneaxe: Build R2 Stoneaxe\n\n11) mneme: Discover Y1 Mneme G2 Apple\n\n12) stoneaxe: Discover R1 Stoneaxe G1 Zed\n\n13) mneme: Build Y2 Mneme\n\tstoneaxe: Was that a fatal error?  I know I need to build some yellow, but i seemed to be playing right into your &#39;sac G3 and build all the rest of yellow trap&#39;, so I went with this move instead.\n\tmneme: Not sure -- we&#39;re both playing serious freeze strategies, which keeps things interesting.\n\n14) stoneaxe: Trade R2 Y2 Stoneaxe\n\n15) mneme: Trade Y2 R2 Mneme\n\n16) stoneaxe: Build R2 Stoneaxe\n\n17) mneme: Move R2 Mneme Apple\n\n18) stoneaxe: Move R2 Stoneaxe Zed\n\n19) mneme: Build Y2 Apple\n\n20) stoneaxe: Sacrifice G3 Stoneaxe\nBuild R2 Zed\nBuild R3 Stoneaxe\nBuild R3 Stoneaxe\n\n21) mneme: Sacrifice Y2 Apple\nMove R2 Apple Zed\nMove R2 Zed Stoneaxe\nCatastrophe Stoneaxe R\n\n22) stoneaxe: Trade Y2 G2 Stoneaxe\n\tmneme: that...might have been a mistake.\r\n\n\n23) mneme: Build Y2 Mneme\n\n24) stoneaxe: Build G1 Stoneaxe\n\n25) mneme: Discover Y2 Mneme G2 Gambit\n\tstoneaxe: Crap.  Where did my 3 pointer go!?!  :-)  Nice catastrophe.\n\n26) stoneaxe: Discover G1 Stoneaxe G1 Gamma\n\n27) mneme: Discover Y1 Apple G3 Heart\n\tstoneaxe: I need to get the G3 back to have any glimmer of hope.  This might give you 2 3&#39;s, but at least I get one 3.  Or, if you sac and go for all the yellows, then I get some choices... I think.  \n\tmneme: on the contrary, my best dodge is to keep you out of 3s.  \n\n28) stoneaxe: Sacrifice G1 Gamma\nBuild G1 Stoneaxe\n\tmneme: I&#39;m pretty sure I&#39;ve failed to leave you any options here.  Not accidentally.\n\n29) mneme: Sacrifice G3 Mneme\nBuild Y2 Gambit\nBuild Y2 Heart\nBuild Y3 Mneme\n\n30) stoneaxe: Trade G1 B1 Stoneaxe\n\n31) mneme: Build Y3 Gambit\n\tstoneaxe: Hmmm no Yellow for me.  Thats spells certain defeat, doesn&#39;t it.\n\n32) stoneaxe: Build B1 Stoneaxe\n\tmneme: that was pretty much the case when you got both of your larges blown, but yeah, now I get to monopolize y -and- churn out larges -and- be the only one who can move ships around or make catastrophes.  Not so good for you.\n\n33) mneme: Trade Y3 G3 Mneme\n\n34) stoneaxe: Move B1 Stoneaxe Zed\n\n35) mneme: Build Y3 Mneme\n\n36) stoneaxe: Build B1 Zed\n\n37) mneme: Trade Y3 R3 Mneme\n\n38) stoneaxe: Build B2 Stoneaxe\n\n39) mneme: Sacrifice Y2 Gambit\nMove Y3 Gambit Zed\nMove Y3 Zed Stoneaxe\n\n40) stoneaxe: Build B2 Stoneaxe\n\tmneme: It&#39;s time...\n\n41) mneme: Sacrifice R3 Mneme\nAttack B2 Stoneaxe\nAttack G2 Stoneaxe\nAttack B2 Stoneaxe\nCatastrophe Stoneaxe B\n\tmneme: good game!\n\n\nHomeworlds Online (SDG# 9602)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.17, Ended: 2008.3.11\nParticipants: jeep (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) jeep: Homeworld G1 B3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\tjeep: You&#39;re probably too good for me to make this work, but it&#39;s been working out for me irl.\n\n4) jeep: Build Y1 Jeep\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Build Y1 Jeep\n\tjeep: D&#39;oh.  I should have had my homeworld be b1 g3...  I  should have remembered that.\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) jeep: Trade Y1 G1 Jeep\n\n9) TwoShort: Discover G1 Twoshort Y2 Yellonia\n\n10) jeep: Move G1 Jeep Yellonia\n\n11) TwoShort: Build G2 Twoshort\n\n12) jeep: Trade Y1 R1 Jeep\n\tjeep: Gah, what was I thinking.\n\n13) TwoShort: Build G2 Yellonia\n\n14) jeep: Build R1 Jeep\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G3 Twoshort\nBuild G3 Twoshort\nCatastrophe Yellonia Green\n\n16) jeep: Build R2 Jeep\n\n17) TwoShort: Trade G2 R2 Twoshort\n\n18) jeep: Trade R2 Y2 Jeep\n\n19) TwoShort: Trade G3 Y3 Twoshort\n\n20) jeep: Build R2 Jeep\n\n21) TwoShort: Discover R2 Twoshort G2 Grogar\n\n22) jeep: Trade R2 G2 Jeep\n\n23) TwoShort: Build G1 Twoshort\n\n24) jeep: Discover R1 Jeep G2 Thumb\n\n25) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n26) jeep: Build R2 Thumb\n\n27) TwoShort: Build G1 Twoshort\n\n28) jeep: Build R2 Jeep\n\n29) TwoShort: Move Y3 Twoshort Thumb\n\n30) jeep: Build R3 Thumb\n\n31) TwoShort: Sacrifice R2 Grogar\nAttack R3S Thumb\nAttack R2S Thumb\n\n32) jeep: Sacrifice G2 Jeep\nBuild R2 Thumb\nBuild R3 Jeep\nCatastrophe Thumb Red\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n34) jeep: Move R3 Jeep Yolonda\n\tjeep: I&#39;m nervously and anxiously waiting to see what I missed there...\n\tTwoShort: You missed the possibility that I screwed up when I moved into thumb in the first place :)\r\n\r\nOut of curiosity, do you see the stash image above?  It&#39;s not showing up for me.\n\n35) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\n\tjeep: Nope, stash is gone. :(\n\tTwoShort: The stash is back...\n\n36) jeep: Attack G2N Yolonda\n\tjeep: Thanks, I haven&#39;t been checking.\n\n37) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Thumb\nCatastrophe Yolonda Green\n\n38) jeep: Trade R2 G2 Jeep\n\n39) TwoShort: Sacrifice Y3 Thumb\nMove Y1 Twoshort Thumb\nMove Y1 Thumb Jeep\nMove Y1 Thumb Jeep\nCatastrophe Jeep Yellow\n\n40) jeep: Trade G2 Y2 Jeep\n\n41) TwoShort: Trade G3 Y3 Twoshort\n\tjeep: ouch\n\n42) jeep: Move R3 Yolonda Jeep\n\n43) TwoShort: Build G1 Twoshort\n\n44) jeep: Trade R3 G3 Jeep\n\n45) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n46) jeep: Build Y1 Jeep\n\n47) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Twoshort Yolonda\nMove G1 Yolonda Jeep\nMove G1 Yolonda Jeep\nCatastrophe Jeep Green\n\n48) jeep: Trade Y1 G1 Jeep\n\n49) TwoShort: Build G1 Twoshort\n\n50) jeep: Build G1 Jeep\n\n51) TwoShort: Trade G3 Y3 Twoshort\n\n52) jeep: Build G2 Jeep\n\n53) TwoShort: Build G2 Twoshort\n\n54) jeep: Discover G1 Jeep Y2 Mover\n\n55) TwoShort: Trade G2 B2 Twoshort\n\n56) jeep: Build G2 Mover\n\n57) TwoShort: Build B1 Twoshort\n\n58) jeep: Sacrifice G2 Jeep\nBuild R1 Jeep\nBuild R2 Jeep\n\n59) TwoShort: Build G2 Twoshort\n\n60) jeep: Build G2 Jeep\n\n61) TwoShort: Discover B2 Twoshort R2 Rosie\n\n62) jeep: Trade R1 B1 Jeep\n\n\tTwoShort: Good game.\n\tTwoShort: Hmm, seems to be a problem here...\n\tjeep: I didn&#39;t even notice you had a blue in you home.  I SHOULD have moved into Rosie instead.\n\tjeep: It&#39;s tempting to try to build a homeworld... see if it works.  ;)\n\tTwoShort: Heck, you could blow up my greens and see if you win :)\r\n\n\tjeep: *laugh*  That would be funny...\n\tAaron: Sorry about that.\n\nHomeworlds Online (SDG# 9625)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.18, Ended: 2007.11.13\nParticipants: kawotan (S), stoneaxe (N)\nWinner: stoneaxe\n\n1) stoneaxe: Homeworld R3 B2 G3\n\n2) kawotan: Homeworld G2 B1 Y3\n\tstoneaxe: Hi, thanks for playing!  Good luck!\n\n3) stoneaxe: Build G1 Stoneaxe\n\tkawotan: Hi, this is my first game of Homeworlds.\r\nEnjoy game !\r\n\n\tstoneaxe: I&#39;m new to it too.  Its a fascinating game though.  Deep strategy. \n\n4) kawotan: Build Y1 Kawotan\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) kawotan: Trade Y3 R3 Kawotan\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) kawotan: Build Y1 Kawotan\n\n9) stoneaxe: Build Y2 Stoneaxe\n\n10) kawotan: Build R1 Kawotan\n\n11) stoneaxe: Build Y2 Stoneaxe\n\n12) kawotan: Build Y2 Kawotan\n\n13) stoneaxe: Discover Y2 Stoneaxe G1 Jupiter\n\n14) kawotan: Discover Y1 Kawotan R3 Saturn\n\n15) stoneaxe: Sacrifice G3 Stoneaxe\nBuild Y3 Stoneaxe\nBuild Y3 Jupiter\nBuild G1 Stoneaxe\n\n16) kawotan: Build Y3 Kawotan\n\n17) stoneaxe: Move Y3 Jupiter Saturn\n\n18) kawotan: Discover Y3 Kawotan B3 Pluto\n\n19) stoneaxe: Move Y1 Stoneaxe Jupiter\n\n20) kawotan: Trade Y3 G3 Pluto\n\n21) stoneaxe: Build Y3 Stoneaxe\n\n22) kawotan: Move R3 Kawotan Saturn\n\n23) stoneaxe: Attack R3S Saturn\n\n24) kawotan: Build G2 Pluto\n\tstoneaxe: Sorry, I had to do it!   Because I had a 3-pointer and the Star is red (giving access to attack technology), I was able to attack your R3 and take over your ship!\n\n25) stoneaxe: Move R3 Saturn Kawotan\n\n26) kawotan: Build R1 Kawotan\n\n27) stoneaxe: Attack Y2S Kawotan\n\n28) kawotan: Sacrifice G3 Pluto\nBuild R1 Kawotan\nBuild R2 Kawotan\nBuild R2 Kawotan\n\n29) stoneaxe: Attack R2S Kawotan\n\n30) kawotan: Attack Y2 Kawotan\n\n31) stoneaxe: Sacrifice R2 Kawotan\nAttack R2S Kawotan\nAttack Y2S Kawotan\n\n32) kawotan: Sacrifice G2 Pluto\nBuild R2 Kawotan\nBuild R2 Kawotan\n\n\n33) stoneaxe: Move R3 Kawotan Saturn\nCatastrophe Kawotan R\n\n34) kawotan: Trade Y1 R1 Kawotan\n\n35) stoneaxe: Sacrifice R3 Saturn\nAttack R1S Kawotan\nAttack Y1S Saturn\nPass\n\tstoneaxe: Good game!\n\n\nHomeworlds Online (SDG# 9534)\nStarted: 2007.10.18, Ended: 2007.12.4\nParticipants: MikeYarrum (S), taniss99 (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9566)\nStarted: 2007.10.19, Ended: 2008.2.22\nParticipants: liamjake (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 9668)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.24, Ended: 2007.11.29\nParticipants: TwoShort (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld R3 B1 G3\n\twyons: great, glad you wanted to play. I am relatively new at this game and I see you have a good track record, so I am hoping you might be willing to teach me a few tricks along the way.  :)\n\n3) wyons: Build G1 Wyons\n\n4) TwoShort: Build G1 Twoshort\n\n5) wyons: Trade G1 Y1 Wyons\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) wyons: Build Y1 Wyons\n\tTwoShort: I&#39;m pretty much always happy to play.  As far as teaching tricks, I can give you general strategic advice (like &quot;Get more 3 points than the other guy&quot;).  Specific tactics I often notice only after they come up, and I presumably wouldn&#39;t want to tell you exactly what I&#39;m up to anyway.  But I&#39;m happy to teach by example and expound after the fact as though I knew what I was doing all along :)\n\n8) TwoShort: Build B1 Twoshort\n\twyons: sounds good to me and TTFN\n\n9) wyons: Build Y1 Wyons\n\n10) TwoShort: Build G1 Twoshort\n\n11) wyons: Discover Y1 Wyons G3 Headington\n\n12) TwoShort: Trade G3 Y3 Twoshort\n\n13) wyons: Build Y2 Wyons\n\n14) TwoShort: Build Y2 Twoshort\n\n15) wyons: Build Y2 Headington\n\n16) TwoShort: Discover Y2 Twoshort B2 Bluonia\n\n17) wyons: Trade Y2 B2 Wyons\n\n18) TwoShort: Discover B1 Twoshort G2 Grogar\n\n19) wyons: Discover B2 Wyons G3 Oxford\n\n20) TwoShort: Build B3 Grogar\n\n21) wyons: Build B3 Oxford\n\n22) TwoShort: Trade B3 R3 Grogar\n\n23) wyons: Trade B2 R2 Oxford\n\n24) TwoShort: Build Y2 Twoshort\n\n25) wyons: Move Y1 Wyons Oxford\n\n26) TwoShort: Trade Y2 G2 Twoshort\n\n27) wyons: Discover Y2 Headington R2 Uk\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluonia\n\n29) wyons: Build Y3 Headington\n\n30) TwoShort: Move Y2 Twoshort Grogar\n\n31) wyons: Sacrifice Y2 Uk\nMove Y1 Headington Bluonia\nMove Y1 Oxford Bluonia\nCatastrophe Bluonia Yellow\n\n32) TwoShort: Build B2 Grogar\n\n33) wyons: Build Y1 Wyons\n\n34) TwoShort: Discover B1 Grogar Y3 Yolonda\n\n35) wyons: Move Y1 Wyons Oxford\n\n36) TwoShort: Build B2 Grogar\n\n37) wyons: Build B3 Oxford\n\n38) TwoShort: Sacrifice Y2 Grogar\nMove B2 Grogar Oxford\nMove B2 Grogar Oxford\nCatastrophe Oxford Blue\n\n39) wyons: Build Y1 Headington\n\n40) TwoShort: Build Y2 Twoshort\n\n41) wyons: Build Y2 Wyons\n\twyons: nice line you&#39;ve got on the blues..\n\tTwoShort: Yeah, but I can&#39;t grab them very fast, and if I try, you&#39;ll grab all the yellow.  I am feeling a lot better now that the 3-point balance is even...\n\twyons: indeed,  yellow grabbing was my plan... :)\n\n42) TwoShort: Move Y2 Twoshort Grogar\n\n43) wyons: Trade Y2 B2 Wyons\n\n44) TwoShort: Move R3 Grogar Oxford\n\n45) wyons: Move R2 Oxford Grogar\n\n46) TwoShort: Attack Y1N Oxford\n\n47) wyons: Attack Y2S Grogar\n\n48) TwoShort: Sacrifice Y1 Oxford\nMove R3 Oxford Grogar\n\n49) wyons: Sacrifice Y2 Grogar\nMove R2 Grogar Yolonda\nMove B2 Wyons Headington\n\n50) TwoShort: Move B1 Yolonda Grogar\n\n51) wyons: Build G1 Wyons\n\n52) TwoShort: Build R1 Grogar\n\n53) wyons: Trade Y1 R1 Headington\n\n54) TwoShort: Trade R3 G3 Grogar\n\n55) wyons: Build R2 Headington\n\n56) TwoShort: Build G1 Twoshort\n\n57) wyons: Move G1 Wyons Yolonda\n\n58) TwoShort: Discover B1 Twoshort Y2 Yoyo\n\n59) wyons: Build G2 Wyons\n\n60) TwoShort: Move G1 Twoshort Yoyo\n\n61) wyons: Sacrifice G3 Wyons\nBuild G2 Yolonda\nBuild G3 Wyons\nBuild Y1 Headington\n\n62) TwoShort: Sacrifice G3 Grogar\nBuild G3 Yoyo\nBuild B2 Yoyo\nBuild B3 Grogar\n\n63) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild B3 Headington\nBuild Y1 Wyons\n\n64) TwoShort: Sacrifice G3 Yoyo\nBuild Y2 Twoshort\nBuild R2 Grogar\nBuild G3 Yoyo\n\n65) wyons: Sacrifice G3 Wyons\nBuild R3 Yolonda\nBuild G3 Wyons\nBuild Y2 Wyons\n\n66) TwoShort: Trade G3 R3 Yoyo\n\n67) wyons: Trade B3 G3 Headington\n\twyons: whooey  - this is getting a bit hot.\n\n68) TwoShort: Move B1 Yoyo Headington\n\tTwoShort: It is a tad complex :)\n\n69) wyons: Attack B1S Headington\n\n70) TwoShort: Sacrifice B2 Yoyo\nTrade Y3 B3 Twoshort\nTrade B3 Y3 Grogar\n\n71) wyons: Sacrifice Y2 Wyons\nDiscover G3 Headington Y2 Solsys\nMove B1 Headington Solsys\n\n72) TwoShort: Discover R1 Grogar B3 Blueit\n\twyons: hmmm, nice move, I hadnt seen that line before.\n\n73) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild B2 Solsys\nBuild B3 Headington\n\n74) TwoShort: Move R3 Yoyo Twoshort\n\n75) wyons: Move B3 Headington Yoyo\n\n\tTwoShort: For the record, I was meaning to resign anyway: you have crushed me.  \n\tTwoShort: Actually, the ZPIP challenge is over - you&#39;re the third person to beat me since I made it.\r\n\r\nBut in any case- Great game!  I&#39;ll be wanting a rematch sometime soon.\n\twyons: thank you for your honour in admitting that. Did someone else win the icehouse peices??\n\twyons: looks like our messages crossed, and - yes I am up for a rematch\n\nHomeworlds Online (SDG# 9674)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.24, Ended: 2007.11.8\nParticipants: Keith (S), stoneaxe (N)\nWinner: Keith\n\n1) stoneaxe: Homeworld R1 B3 G3\n\tKeith: Hello stoneaxe.  Decided to bypass Wyons I see.\n\tstoneaxe: He already has another Ladder challenge going.  Plus, he and I are already playing a non-ladder game. Is it unorthodox to bypass someone in the Ladder?  If so I was not aware!  Well in any case, thanks for accepting.  Good luck!\n\n2) Keith: Homeworld Y2 B3 G3\n\tKeith: Trying to move up more than one rung is fair game and happens often. It lets you pick the opponent you think you have the best chance against. \r\n\r\nWyons happens to be my favorite opponent in Grim Reaper.\n\n3) stoneaxe: Build G1 Stoneaxe\n\tstoneaxe: I&#39;ve been thinking of trying a game of Grim Reaper soon!  Sounds fun.\n\n4) Keith: Build G1 Keith\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) Keith: Trade G1 Y1 Keith\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) Keith: Build G1 Keith\n\n9) stoneaxe: Build G1 Stoneaxe\n\n10) Keith: Build G2 Keith\n\n11) stoneaxe: Discover G1 Stoneaxe Y2 Rez\n\n12) Keith: Trade G1 Y1 Keith\n\n13) stoneaxe: Trade G1 B1 Stoneaxe\n\n14) Keith: Discover Y1 Keith G1 Midori\n\n15) stoneaxe: Build B1 Stoneaxe\n\n16) Keith: Sacrifice G3 Keith\nBuild Y2 Midori\nBuild Y3 Midori\nBuild Y3 Keith\n\tKeith: It has been a while since I played and I am a little rusty... still my gut says this will work in my favor.\n\n17) stoneaxe: Build Y3 Stoneaxe\n\tstoneaxe: Yeah, that was a nice sac!\n\n18) Keith: Trade Y1 B1 Keith\n\n19) stoneaxe: Build G1 Rez\n\n20) Keith: Sacrifice Y3 Midori\nMove B1 Keith Midori\nMove B1 Midori Rez\nMove B1 Rez Stoneaxe\nCatastrophe Stoneaxe Blue\n\tKeith: I feel a little bit bad about doing this but since it is a ladder game I will play hardball.\n\n21) stoneaxe: Discover Y3 Stoneaxe B3 Pez\n\n22) Keith: Build G2 Keith\n\tstoneaxe: Thats okay.  It will make my revenge all that much sweeter!!!  Mwaaahaha.\n\n23) stoneaxe: Move G1 Rez Stoneaxe\n\n24) Keith: Sacrifice Y2 Midori\nMove G2 Keith Stoneaxe\nMove G2 Keith Stoneaxe\nCatastrophe Stoneaxe Green\n\tKeith: I must say I admire your willingness to jump into the deep end by choosing highly rated opponents.\n\n25) stoneaxe: Build G1 Rez\n\tstoneaxe: Thanks!  I wasn&#39;t really trying to choose the highest rated opponents, just searching for some games.  The ladder seems like a fun little mini-tournament.  Plus, I&#39;m learning a ton by watching all you experts tear me to shreds.   :)  This is a really cool game.  Its a lot like Chess somehow...\n\n26) Keith: Trade Y3 R3 Keith\n\tKeith: I am glad to learn it is not discouraging you.  We should try an unrated game.  Then we can ask questions and discuss the game since learning, rather than winning, will be the goal.\r\n\r\nMy favorite games at SDG are Cannon, Grim Reaper and HomeWorlds.\n\n27) stoneaxe: Move Y3 Pez Stoneaxe\n\tstoneaxe: An unrated game after this one sounds great!\n\n28) Keith: Move Y1 Midori Keith\n\n29) stoneaxe: Build G1 Rez\n\n30) Keith: Trade Y1 R1 Keith\n\tKeith: Good move.  I can&#39;t swap for green and my growth is temporarily suspended.\n\n31) stoneaxe: Discover G1 Rez B3 Bluegrass\n\tstoneaxe: I&#39;m trying to make a game out of this, but with half my homeworld gone... its not going to be pretty.\n\n32) Keith: Trade R3 G3 Keith\n\n33) stoneaxe: Trade G1 Y1 Bluegrass\n\tKeith: Well you have blue powers back now.\n\n34) Keith: Build R1 Keith\n\n35) stoneaxe: Sacrifice G1 Rez\nBuild Y1 Bluegrass\n\n36) Keith: Build R2 Keith\n\n37) stoneaxe: Move G1 Rez Stoneaxe\n\n38) Keith: Trade R2 G2 Keith\n\n39) stoneaxe: Trade Y1 B1 Bluegrass\n\n40) Keith: Build R2 Keith\n\n41) stoneaxe: Move B1 Bluegrass Stoneaxe\n\n42) Keith: Move R1 Keith Stoneaxe\n\n43) stoneaxe: Attack R1S Stoneaxe\n\n44) Keith: Move R1 Keith Stoneaxe\n\tstoneaxe: Thanks.  I think...\n\tKeith: Well then have another.\n\n45) stoneaxe: Move R1 Stoneaxe Bluegrass\n\tKeith: :)\n\n46) Keith: Sacrifice G2 Keith\nBuild R2 Stoneaxe\nBuild R2 Stoneaxe\nCatastrophe Stoneaxe Red\n\tstoneaxe: I think I figured out your generous plan, but I&#39;m not sure how I will stop it once you get more ships.\n\tKeith: That is the reason I delayed sending in reds till I had a green 2-ship.  Otherwise you could move them out before I had enough.\n\tKeith: I have at this point watched some of your moves in all of your current games.  Your learning very quickly.  I expect you will be climbing the challenge ladder soon.\n\n\nHomeworlds Online (SDG# 9632)\nStarted: 2007.10.28, Ended: 2007.11.18\nParticipants: zoltar (S), liamjake (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 9551)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.10.28, Ended: 2007.11.9\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build G1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Build G1 Scottobear\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Discover G1 Scottobear B1 Monkey\n\n10) zoltar: Discover G1 Zoltar B3 Kingkong\n\n11) scottobear: Build Y1 Scottobear\n\tscottobear: copycat! :D\r\n\n\n12) zoltar: Build Y2 Zoltar\n\n13) scottobear: Move Y1 Scottobear Monkey\n\tzoltar: I got the first 2-pip ship.  Ha-ha-ha-HA-ha!\n\tscottobear: Argh! neener neener!\n\n14) zoltar: Trade Y1 B1 Zoltar\n\n15) scottobear: Trade Y1 R1 Monkey\n\n16) zoltar: Build B2 Zoltar\n\n17) scottobear: Build Y1 Scottobear\n\tscottobear: ohhhh.. ok, I see what you did there. \n\n18) zoltar: Discover B2 Zoltar Y3 Yabbadabbadoo\n\n19) scottobear: Build R1 Monkey\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\n21) scottobear: Move Y1 Scottobear Monkey\n\tscottobear: my, what a lovely blue fleet you have there!\n\n22) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 G3 Yabbadabbadoo\nTrade B3 G3 Zoltar\n\tzoltar: My fleet has decided to go environmentalist...\n\n23) scottobear: Move R1 Monkey Kingkong\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\tzoltar: You may have all the little ships, if you wish -- I have no time to worry about scout ships...\n\n25) scottobear: Attack G1 Kingkong\n\n26) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 R3 Yabbadabbadoo\nTrade B3 G3 Zoltar\n\tscottobear: yikes.. \n\n27) scottobear: Trade R1 G1 Monkey\n\tzoltar: Well if you&#39;re gonna play THAT way, I&#39;m gettin&#39; me a red ship!\n\tscottobear: sure, sure.. I see how it is!!\n\tscottobear: hmm.. I&#39;m trying to sacrifice my red in monkey to build 2 greens, but I can&#39;t seem to do it.. am I missing a rules point?\n\tzoltar: Yes, two rules points apply here.\r\n\r\nFirst, you can only sacrifice red to attack, not to build; if you wish to build, you would have to sacrifice a green.\r\n\r\nSecond, you can only sacrifice a 1-pip ship for 1 action, and a 2-pip ship for two actions, and a 3-pip ship for 3 actions.  \r\n\r\nHence, you&#39;d need to sacrifice a green 2-pip ship to be able to have 2 grows.  (In my 2-step &#39;factory&#39; I&#39;ve created, I sac my G3 for a B2, and 2 B3s, then sac the B2 to convert one of the B3s to a G3 and the other to either a Y3 or R3; the net result after two moves is an extra 3-pip ship built by my &#39;factory&#39;.) \r\n\r\nHope that answers your rule question.\n\tscottobear: ohh... I was only totally confused there! thanks\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\tscottobear: a lot of observers, eh?\n\n29) scottobear: Build G2 Kingkong\n\n30) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 Y3 Yabbadabbadoo\nTrade B3 G3 Zoltar\n\tscottobear: I&#39;ve got a sinking feeling here. \n\n31) scottobear: Trade G1 Y1 Kingkong\n\tzoltar: But you have 8 ships and I have only 7... heh\n\tscottobear: trade ya!\n\n32) zoltar: Sacrifice G3 Yabbadabbadoo\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\n33) scottobear: Build Y2 Kingkong\n\n34) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 G3 Yabbadabbadoo\nTrade B3 Y3 Zoltar\n\n35) scottobear: Build Y2 Scottobear\n\tscottobear: ok... is this right? \r\nsacrifice y1 monkey\r\nmove y1 kingkong zoltar\r\nmove y2 kingkong zoltar\r\ncatastrophe zoltar yellow\n\tzoltar: No. You would have to sac a y2 to get 2 moves; sacking a y1 only gets you one move.  Hence, if you had a y2 in monkey instead of a y1, you could sack it and move the two yellows from KingKong to Zoltar and catastrophe the yellows.  However, the only y2 you can sac is in KingKong, which is one of the yellows you wanted to move; so the action isn&#39;t possible.  \r\n\r\nYou could sac a g1 to build another y2 in KingKong, so that on your next turn you could sack it and send the other two yellows in KingKong to Zoltar.  But -- seeing you were about to do that, I&#39;d simply move my y2 from Zoltar to KingKong and catastrophe the yellows in KingKong first, so that my Y3 would remain and all of your KingKong yellows would go away, which would favor me (from the position as it is now, I&#39;d lose a y2; you&#39;d lose a Y2, a Y1, and a G1).  \r\n\r\nSo your best move might be to build a y2 in Scottobear and threaten to sack it next turn.  This forces me to scatter my yellow ships.\n\n36) zoltar: Sacrifice Y2 Zoltar\nDiscover Y3 Yabbadabbadoo R1 Redrover\nDiscover B2 Yabbadabbadoo Y2 Mellowyellow\n\tscottobear: thanks.. I appreciate the help!!\n\n37) scottobear: Trade Y2 B2 Kingkong\n\n38) zoltar: Sacrifice G3 Yabbadabbadoo\nBuild B3 Mellowyellow\nBuild Y2 Redrover\nBuild R1 Yabbadabbadoo\n\n39) scottobear: Build B3 Kingkong\n\tzoltar: Hey, you&#39;re not spos&#39;ta get any blue ships!\n\n40) zoltar: Sacrifice Y2 Redrover\nMove R1 Yabbadabbadoo Monkey\nMove B1 Zoltar Kingkong\nCatastrophe Kingkong B\n\tscottobear: Whoops!\n\tzoltar: That&#39;ll teach ya to muscle in on my blue monopoly!\n\n41) scottobear: Trade G1 R1 Monkey\n\n42) zoltar: Attack R1 Monkey\n\tscottobear: sakes! all a guy wants is a matched set!\n\n43) scottobear: Trade Y2 R2 Scottobear\n\tzoltar: munch munch munch\n\tzoltar: Screw the blue! The red monopoly is mine! Awl Mine! \r\n[Insert Evil Overlord Sinister Laughter Here]\n\tscottobear: you&#39;re hopped up on red! you zoltarian fiend!\n\n44) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Redrover Scottobear\nMove R1 Monkey Scottobear\nMove R1 Monkey Scottobear\nCatastrophe Scottobear R\n\n45) scottobear: Trade Y1 R1 Scottobear\n\tzoltar: Banzai!!!\n\tscottobear: hey, wha???\r\n\r\nI had no idea you could blow up planets!\n\n46) zoltar: Sacrifice R3 Yabbadabbadoo\nAttack R1 Scottobear\nAttack G3 Scottobear\nPass\n\tzoltar: Yep, and indeed, while it was checkmate in 5 moves the other way, I think, now I have checkmate immediately.\r\n\r\nWhat I was going to do was move my B2 to a small star (in reach of your homeworld, then trade the B3 for a G3, sac the G3 for two blues and a red, then sack a Y3 and send all three reds in and blow up your red star, and the next move sac the other Y3 and blow up your blue star.  That&#39;s called the &quot;doomsday machine&quot;.  \r\n\r\nBut you saved yourself all the fancy fireworks by letting me do this cheap maneuver instead, knocking out the red star and slipping a 3-pip ship into your homeworld with my third movement so I can take all your pieces before you could get a red ship to defend.  Play again?\n\tzoltar: Yep, and indeed, while it was checkmate in 5 moves the other way, I think, now I have checkmate immediately.\r\n\r\nWhat I was going to do was move my B2 to a small star (in reach of your homeworld, then trade the B3 for a G3, sac the G3 for two blues and a red, then sack a Y3 and send all three reds in and blow up your red star, and the next move sac the other Y3 and blow up your blue star.  That&#39;s called the &quot;doomsday machine&quot;.  \r\n\r\nBut you saved yourself all the fancy fireworks by letting me do this cheap maneuver instead, knocking out the red star and slipping a 3-pip ship into your homeworld with my third movement so I can take all your pieces before you could get a red ship to defend.  Play again?\n\n\nHomeworlds Online (SDG# 9540)\nStarted: 2007.10.28, Ended: 2007.11.18\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9590)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.29, Ended: 2007.10.29\nParticipants: TwoShort (S), Personman (N)\nWinner: TwoShort\n\n\tPersonman: I&#39;m terribly sorry, but starting this game was a complete accident, due to a misclick.\n\nHomeworlds Online (SDG# 9718)\nStarted: 2007.10.31, Ended: 2007.11.6\nParticipants: sordros (S), kreiger (N)\nWinner: sordros\n\n\nHomeworlds Online (SDG# 9746)\nStarted: 2007.10.31, Ended: 2007.12.17\nParticipants: sordros (S), antihero (N)\nWinner: sordros\n\n1) antihero: Homeworld B1 Y2 G3\n\n2) sordros: Homeworld R3 B2 G3\n\n3) antihero: Build G1 Antihero\n\n4) sordros: Build G1 Sordros\n\n5) antihero: Discover G1 Antihero Y3 Bigyella\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) antihero: Build G1 Antihero\n\n8) sordros: Build Y1 Sordros\n\n9) antihero: Trade G1 Y1 Antihero\n\n10) sordros: Build Y2 Sordros\n\n11) antihero: Build Y2 Antihero\n\n12) sordros: Discover Y1 Sordros G1 Amareto\n\n13) antihero: Discover Y1 Antihero G3 Krez\n\n14) sordros: Build Y3 Amareto\n\n15) antihero: Build Y3 Krez\n\n16) sordros: Trade Y1 R1 Sordros\n\n17) antihero: Trade Y2 R2 Antihero\n\n18) sordros: Build Y1 Sordros\n\n19) antihero: Build R1 Antihero\n\n20) sordros: Trade Y1 B1 Sordros\n\n21) antihero: Move R1 Antihero Krez\n\n22) sordros: Build B1 Sordros\n\n23) antihero: Build R1 Antihero\n\n24) sordros: Move B1 Sordros Amareto\n\n25) antihero: Build R2 Krez\n\n26) sordros: Trade Y3 R3 Amareto\n\n27) antihero: Discover R1 Krez G1 Arnn\n\n28) sordros: Build G2 Sordros\n\n29) antihero: Sacrifice Y3 Krez\nMove R1 Arnn Sordros\nMove R2 Krez Amareto\nMove R2 Amareto Sordros\nCatastrophe Sordros R\n\n30) sordros: Sacrifice G3 Sordros\nBuild B2 Amareto\nBuild B2 Amareto\nBuild B3 Sordros\n\tantihero: I may regret that, but let&#39;s see what happens. :)\n\n31) antihero: Move G1 Bigyella Sordros\n\n32) sordros: Trade B3 R3 Sordros\n\n33) antihero: Build G1 Sordros\n\tsordros: Hi Antihero, are you still up to see what happens?\n\tantihero: hey sordros. Sorry. Everytime I look at this game I try to figure out what I can do and then can&#39;t see anything good. So I&#39;ll just make a move and let you finish this off. :)\n\n34) sordros: Attack G1 Sordros\n\n35) antihero: Build G2 Sordros\nCatastrophe Sordros G\n\n36) sordros: Trade R3 G3 Sordros\n\n37) antihero: Trade G3 B3 Antihero\n\n38) sordros: Build B3 Sordros\n\n\nHomeworlds Online (SDG# 9745)\nStarted: 2007.10.31, Ended: 2007.11.28\nParticipants: kreiger (S), DaDRK (N)\nWinner: DaDRK\n\n1) DaDRK: Homeworld B3 G2 R3\n\tDaDRK: good luck\n\n\nHomeworlds Online (SDG# 9748)\nVariants: &quot;Hard time&quot;\nStarted: 2007.10.31, Ended: 2008.3.2\nParticipants: antihero (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R1 B2 G3\n\n2) antihero: Homeworld Y1 B3 G3\n\n3) wyons: Build G1 Wyons\n\twyons: Hi there- enjoy the game!\n\n4) antihero: Build G1 Antihero\n\n5) wyons: Trade G1 Y1 Wyons\n\tantihero: thanks, you too!\n\n6) antihero: Build G1 Antihero\n\n7) wyons: Build G1 Wyons\n\n8) antihero: Discover G1 Antihero Y2 Crater\n\n9) wyons: Build G2 Wyons\n\n10) antihero: Build G2 Crater\n\n11) wyons: Sacrifice G2 Wyons\nBuild Y1 Wyons\nBuild Y2 Wyons\n\n12) antihero: Build G2 Antihero\n\n13) wyons: Discover Y2 Wyons G3 Solsys\n\n14) antihero: Trade G3 Y3 Antihero\n\n15) wyons: Sacrifice G3 Wyons\nBuild Y2 Solsys\nBuild Y3 Wyons\nBuild G2 Wyons\n\n16) antihero: Discover G1 Crater Y3 Pha\n\n17) wyons: Trade G1 R1 Wyons\n\n18) antihero: Trade G1 R1 Antihero\n\n19) wyons: Move R1 Wyons Solsys\n\n20) antihero: Build R2 Antihero\n\n21) wyons: Build R2 Solsys\n\n22) antihero: Move R2 Antihero Crater\n\n23) wyons: Discover R2 Solsys G1 Milkyway\n\n24) antihero: Build G1 Antihero\n\n25) wyons: Build G3 Wyons\n\n26) antihero: Build G3 Crater\n\n27) wyons: Move Y3 Wyons Solsys\n\n28) antihero: Move G2 Crater Pha\n\n29) wyons: Sacrifice G3 Wyons\nBuild R2 Milkyway\nBuild R3 Solsys\nBuild G3 Wyons\n\n30) antihero: Sacrifice G2 Pha\nBuild R3 Antihero\nBuild R3 Crater\n\n31) wyons: Sacrifice Y2 Solsys\nMove R1 Solsys Crater\nMove R2 Milkyway Crater\nCatastrophe Crater Red\n\n32) antihero: Build G2 Pha\n\tantihero: the stash won&#39;t show up for me... Aaron, I&#39;d really appreciate it if you&#39;d freeze the clock (or email me or something) when you un-page-admin the game, otherwise I might time out on this one.\n\tantihero: seems to have fixed itself. hmm, now to figure out how not to lose. :)\n\n33) wyons: Discover G2 Wyons B3 Andromclust\n\n34) antihero: Discover Y3 Antihero B2 Bb\n\n35) wyons: Build Y2 Wyons\n\n36) antihero: Trade G1 B1 Antihero\n\n37) wyons: Move Y3 Solsys Milkyway\n\n38) antihero: Move B1 Antihero Crater\n\n39) wyons: Move Y1 Wyons Solsys\n\twyons: yes, thank you for the game of GR- just challenge me if you want another (I am always up for it) :)\n\n40) antihero: Sacrifice G1 Pha\nBuild B1 Crater\n\n41) wyons: Build G1 Wyons\n\n42) antihero: Build B1 Crater\n\n43) wyons: Sacrifice G3 Wyons\nBuild G1 Andromclust\nBuild G3 Wyons\nBuild R1 Milkyway\n\n44) antihero: Sacrifice G2 Pha\nBuild Y3 Bb\nBuild G2 Antihero\n\n45) wyons: Sacrifice Y2 Wyons\nMove Y1 Solsys Bb\nMove Y2 Solsys Bb\nCatastrophe Bb Yellow\n\n46) antihero: Discover B1 Crater Y3 Aplace\n\twyons: arch! need to think about that more, sorry.\n\n47) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild Y1 Milkyway\nBuild Y2 Wyons\n\twyons: back to where I stated\n\n48) antihero: Trade G2 Y2 Antihero\n\n49) wyons: Sacrifice G3 Wyons\nBuild G2 Andromclust\nBuild G3 Wyons\nBuild Y3 Wyons\n\n50) antihero: Build B2 Crater\n\n51) wyons: Move Y3 Wyons Aplace\n\n52) antihero: Discover Y2 Antihero R2 Rockin&#39;\n\n53) wyons: Sacrifice R1 Milkyway\nAttack B1S Aplace\n\n54) antihero: Move B1 Crater Aplace\n\n55) wyons: Sacrifice G3 Wyons\nBuild R1 Milkyway\nBuild R2 Solsys\nBuild G3 Wyons\n\n\twyons: I am inclined to agree with you- however there are so many twists and turns in this beautiful game that I am fending off any complacency!\n\tantihero: Ack, I&#39;m so bad about that sometimes. Sorry. This comes of only checking SDG every 2 days or so. My bad.\r\n\r\nYou were going to win anyways, but it&#39;s too bad we didn&#39;t get to play it out.\n\nHomeworlds Online (SDG# 9545)\nVariants: &quot;Hard time&quot;\nStarted: 2007.11.1, Ended: 2007.11.16\nParticipants: wmreed (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\twmreed: Hello!  I&#39;m pretty much a newb at Homeworlds, but I love it.  Do you mind if I ask you questions as we play about strategies, or why you made certain moves?\n\tJesse: Not at all.  Have a good game.\n\n2) wmreed: Homeworld B2 G1 Y3\n\n3) Jesse: Build G1 Jesse\n\twmreed: You, too!  okay, first question:  when sacrificing a piece, does that sacrificed piece become available for use ON that turn?  In other words, if I sacrifice a G3 piece, can I build that same G3 piece as one of those builds?  Is there any difference between the face-to-face implementation and the SDG implementation of that rule?\n\tJesse: Yes, the sacrificed piece becomes immediately available.  The G3 sacrifice you mention is a particularly common example known as the factory.  If you sacrifice the last ship in a star system, that system&#39;s marker likewise becomes immediately available.  SDG&#39;s implementation of this is correct.\n\n4) wmreed: Build Y1 Wmreed\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) wmreed: Trade Y1 R1 Wmreed\n\n7) Jesse: Build G1 Jesse\n\n8) wmreed: Build Y1 Wmreed\n\n9) Jesse: Trade G1 R1 Jesse\n\n10) wmreed: Build R2 Wmreed\n\n11) Jesse: Build G1 Jesse\n\n12) wmreed: Build R2 Wmreed\n\n13) Jesse: Discover G1 Jesse B2 Blarg\n\n14) wmreed: Trade R2 G2 Wmreed\n\n15) Jesse: Move R1 Jesse Blarg\n\n16) wmreed: Build G1 Wmreed\n\n17) Jesse: Build G2 Blarg\n\n18) wmreed: Discover G1 Wmreed B3 Logan\n\n19) Jesse: Trade G2 Y2 Blarg\n\n20) wmreed: Build G2 Logan\n\n21) Jesse: Build G2 Jesse\n\n22) wmreed: Trade G1 Y1 Logan\n\n23) Jesse: Build Y2 Blarg\n\twmreed: Is it correct that your g1 in blarg is two hops from my homeworld?  You could get it there by sacrificing a y2, correct?\n\tJesse: Yes.\n\n24) wmreed: Move R1 Wmreed Logan\n\n25) Jesse: Discover Y2 Blarg G3 Grr\n\n26) wmreed: Build R2 Logan\n\n27) Jesse: Sacrifice G3 Jesse\nBuild Y2 Grr\nBuild Y3 Blarg\nBuild Y3 Jesse\n\n28) wmreed: Discover R2 Logan B2 Jessica\n\n29) Jesse: Sacrifice Y2 Blarg\nMove Y2 Grr Wmreed\nMove Y2 Grr Wmreed\nCatastrophe Wmreed Y\n\n30) wmreed: Sacrifice G2 Logan\nBuild R2 Logan\nBuild R3 Wmreed\n\n31) Jesse: Build R3 Blarg\n\n32) wmreed: Trade R2 Y2 Wmreed\n\n33) Jesse: Discover R3 Blarg G3 Sniffle\n\n34) wmreed: Discover R1 Logan Y2 Ballard\n\n35) Jesse: Build G1 Jesse\n\n36) wmreed: Sacrifice G2 Wmreed\nBuild R2 Ballard\nBuild R3 Logan\n\n37) Jesse: Build G2 Blarg\n\n38) wmreed: Trade R3 Y3 Logan\n\n39) Jesse: Build R3 Blarg\n\n40) wmreed: Sacrifice Y3 Logan\nMove R2 Jessica Jesse\nMove R2 Ballard Jesse\nMove R1 Ballard Jesse\nCatastrophe Jesse Red\n\n41) Jesse: Build G2 Blarg\n\n42) wmreed: Build Y1 Wmreed\n\tJesse: I think you will find that, although you did knock out half my homeworld, without being able to follow it up to finish the job quickly, you&#39;ve hurt yourself more than you have me.\n\n43) Jesse: Build G3 Jesse\n\twmreed: Yes, I was woried about that, but I can&#39;t yet see more than one or two moves ahead in Homeworlds.  Not seeing where else to go, I decided to try and press.\n\tJesse: It&#39;s often difficult to see very far ahead in the middle game, even for me, but I know it&#39;s especially difficult for new players.  It is also typical for new players to try to attack when they don&#39;t know what else to do.  Attacking is difficult and costly in Homeworlds, though.  It is usually better to build your forces.  Have your red pieces poised?  Start building blue so you can hit me with an unstoppable 1-2 smash.  Have a numerical superiority in red?  See if you can cause a red catastrophe or force a sacrifice that reduces me to one red ship, while you retain a few, and try to increase that advantage.  If I have more large ships, you should probably be trying to get more of them yourself, rather than sacrificing them.\n\n44) wmreed: Trade Y1 B1 Wmreed\n\n45) Jesse: Sacrifice Y3 Blarg\nMove Y3 Jesse Wmreed\nMove G3 Jesse Wmreed\nMove R3 Sniffle Wmreed\n\n46) wmreed: Sacrifice R2 Logan\nAttack R3 Wmreed\nAttack Y3 Wmreed\n\tJesse: Another thing that new players often seem to overlook is the ship capture strategy.  I find it&#39;s often easier to drop a bunch of large ships into the opponent&#39;s home system and capture all his defenders than it is to destroy both his stars.  It doesn&#39;t work if the defender has a large red he is able to sacrifice to capture all my attackers in one shot, though.\n\n47) Jesse: Sacrifice R3 Blarg\nAttack R3 Wmreed\nAttack R3 Wmreed\nAttack Y3 Wmreed\n\twmreed: If I had sacrificed the R3 in wmreed, is it correct that I would not have been able to attack your large ships?\n\tJesse: Yes.  After the sacrifice, you would have no ships large enough to make the captures.\n\n\tJesse: You played a pretty good game, really.  You had a strong opening, taking control of red, and kept your homeworld protected.  The g2 sacrifice to restore a large ship to your homeworld and simultaneously keep me from it was particularly nice.  Trading the R3 for a Y3, letting me build another R3, was not so good though.  It would be better to save that for a time when it was difficult for me to build a red ship.\n\twmreed: \n\twmreed: \n\twmreed: Thank you for the game, Jesse!\n\nHomeworlds Online (SDG# 9717)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.11.2, Ended: 2007.11.15\nParticipants: scottobear (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) scottobear: Homeworld R3 B2 G3\n\n3) sordros: Build G1 Sordros\n\n4) scottobear: Build G1 Scottobear\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) sordros: Build Y2 Sordros\n\n8) scottobear: Build Y2 Scottobear\n\n9) sordros: Trade Y1 B1 Sordros\n\n10) scottobear: Build G1 Scottobear\n\n11) sordros: Build B1 Sordros\n\n12) scottobear: Discover G1 Scottobear B1 Chimp\n\n13) sordros: Discover B1 Sordros Y3 Amarego\n\n14) scottobear: Build G1 Chimp\n\n15) sordros: Sacrifice G3 Sordros\nBuild B2 Amarego\nBuild B3 Amarego\nBuild B3 Sordros\n\n16) scottobear: Move Y1 Scottobear Chimp\n\n17) sordros: Discover B3 Amarego R1 Rugxeto\n\n18) scottobear: Build G1 Scottobear\n\n19) sordros: Sacrifice B2 Amarego\nTrade B3 G3 Rugxeto\nTrade B3 G3 Sordros\n\n20) scottobear: Trade G1 R1 Scottobear\n\n21) sordros: Sacrifice G3 Sordros\nBuild B2 Amarego\nBuild B3 Amarego\nBuild B3 Sordros\n\n22) scottobear: Build R1 Scottobear\n\n23) sordros: Move B3 Amarego Rugxeto\n\n24) scottobear: Move R1 Scottobear Chimp\n\n25) sordros: Build B3 Rugxeto\n\n26) scottobear: Build R2 Chimp\n\n27) sordros: Trade B2 R2 Amarego\n\n28) scottobear: Trade R2 B2 Chimp\n\n29) sordros: Sacrifice Y2 Sordros\nMove B3 Rugxeto Scottobear\nMove G3 Rugxeto Scottobear\n\n30) scottobear: Attack G3 Scottobear\n\n31) sordros: Sacrifice R2 Amarego\nAttack G3 Scottobear\nAttack G3 Scottobear\n\n32) scottobear:\nBuild R2 Chimp\n\n33) sordros: Trade B3 R3 Sordros\n\n34) scottobear: Build B3 Chimp\n\n35) sordros: Sacrifice R3 Sordros\nAttack Y2 Scottobear\nAttack R1 Scottobear\nPass\n\n\tsordros: Good game.  Thanks!\n\nHomeworlds Online (SDG# 9775)\nVariants: &quot;Unrated&quot;\nStarted: 2007.11.6, Ended: 2007.11.29\nParticipants: stoneaxe (S), Keith (N)\nWinner: stoneaxe\n\n1) Keith: Homeworld B1 Y3 G3\n\tKeith: Hello again,  This will ba a good game for asking questions or trying things.  I will play to give you a challenge but not to overwhelm.\n\n2) stoneaxe: Homeworld R1 B2 G3\n\n3) Keith: Build G1 Keith\n\tstoneaxe: Sounds great!\n\tKeith: I have two questions for you.  1) have you read the SDG wiki on Homeworlds?  2) you seem to prefer a red homeworld.  Why?\n\n4) stoneaxe: Build G1 Stoneaxe\n\tstoneaxe: 1) Yes, I have read the wiki and looked at some Archive games.  2)  Seems like a strong defensive position and TwoShort does it!  What are the considerations of doing this?\n\n5) Keith: Discover G1 Keith Y2 Bend\n\tKeith: TwoShort doing it is certainly a strong endorsement.  I think I tried it a few times and decided it was an advanced technique I was not ready for that seemed to slow down my early game development.\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) Keith: Build G1 Keith\n\n8) stoneaxe: Build Y1 Stoneaxe\n\tstoneaxe: For all I know, TwoShort does that just to make it more challenging for himself!  Ha.  I definitely need to guard against that pair of catastrophe that you got me with last game.  Nice play, by the way!\n\n9) Keith: Trade G1 B1 Keith\n\tKeith: Thank you,  I was given many hard lessons by Zoltar.  Having three of a color at your homeworld is dangerous if the other player has a lot of mobility.\n\n10) stoneaxe: Build G1 Stoneaxe\n\n11) Keith: Move B1 Keith Bend\n\tKeith: One possibility on your last move would be to take the last y1 making it harder for me to get into yellow.  I could swap my g3 for a y3 but then I would fall behind a turn, two if I have not created another green ship in my homeworld first.  It would leave you with 3 yellows in your homeworld but I don&#39;t have one to move in.\n\n12) stoneaxe: Build Y1 Stoneaxe\n\n13) Keith: Build G1 Keith\n\tstoneaxe: I see.  Ok, I will try that strategy on this move.\n\tKeith: Well there is that.  I am going to have to shut down for the day soon.  1:04AM here and I get up at 5:30AM.\n\n14) stoneaxe: Discover Y1 Stoneaxe B3 Broke\n\tstoneaxe: yeah, it was 1AM for me too.  I signed off right after my last move and didn&#39;t see your last note.  Hope you got some sleep that night.\n\n15) Keith: Build G2 Bend\n\tKeith: About 4 hours.  The sleeping part was easy.  Getting up though...  \n\tKeith: Bend, Broke.   Ha ha.  How do you decide on system names?\n\n16) stoneaxe: Move G1 Stoneaxe Broke\n\tKeith: This does give me a way to get into Yellow.  To prevent it you would have to do something fairly extreme like sacrifice your G3 and build to Y2s in Broke and a Y3 in stoneaxe.  Safe for the moment till I got a yellow.\n\n17) Keith: Trade G2 Y2 Bend\n\tstoneaxe: Awww shoot.  I shouldve done what you said.  But this way I&#39;m threatening to fight you for some green , so which would be better?  I Still think what you said wouldve be better. \n\tstoneaxe: System names:  I like names of planets or Star Trek worlds or making the first letter of the systems match their color, but then I forget and use a &quot;G&quot; system name on a yellow color and then I try to blow up that system just so I can rename it at the expense of losing the game.    ;)\n\tKeith: This is probably safer.  If I did get a yellow you would really be in a scramble.  Also, there would be the risk that I would dominate green.  Though with your move I can&#39;t build a green in Bend without you moving a green in and causing a catastrophe.\n\tKeith: I will keep your system naming strategy, and quirks, in mind.  I usually pick a subject like Firefly, towns in Oregon, Japanese names.\n\n18) stoneaxe: Build Y2 Broke\n\n19) Keith: Discover Y2 Bend G3 Boring\n\n20) stoneaxe: Build Y3 Broke\n\n21) Keith: Build Y3 Boring\n\tstoneaxe: Whoa!  I can&#39;t do that!  What was I thinking?\n\n22) stoneaxe: Sacrifice Y2 Broke\nMove Y1 Stoneaxe Boring\nMove Y1 Stoneaxe Boring\nCatastrophe Boring Yellow\n\tKeith: I would have pointed it out and let you take it back if you had not noticed.\n\n23) Keith: Discover G1 Keith B2 Prineville\n\n24) stoneaxe: Build G2 Stoneaxe\n\tstoneaxe: Was that dumb?  Thats enough mental anguish for me for tonight.  :)  Goodnite!  signing off, for now.\n\tKeith: You blew me up! At least you burned 3 ships doing it.\n\tKeith: It was as expensive as I could make it.  Probably still worth it on your part.  Good night.\n\tKeith: Look at it this way.  We both have 4 ships.  You have two 3-pointers and two 1-pointers.  I have one 3-pointer and three 1-pointers.  I have some initiative because it is my move but it won&#39;t make up for the material difference.\n\n25) Keith: Build G2 Keith\n\n26) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G2 Broke\nBuild G3 Stoneaxe\nBuild G3 Stoneaxe\n\n27) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B1 Bend\nBuild B2 Bend\n\n28) stoneaxe: Trade Y1 R1 Broke\n\tKeith: Very good.  The absence of yellow ships on my part makes that a safe move.\n\n29) Keith: Trade B2 Y2 Bend\n\n30) stoneaxe: Trade G2 Y2 Stoneaxe\n\n31) Keith: Build B2 Bend\n\n32) stoneaxe: Move G2 Broke Bend\n\n33) Keith: Sacrifice Y2 Bend\nMove B2 Bend Broke\nMove B1 Bend Broke\n\tKeith: Do you see the threat I have built that uses blue?\n\n34) stoneaxe: Sacrifice Y3 Broke\nMove G3 Stoneaxe Broke\nMove G3 Broke Bend\nMove G3 Bend Keith\n\tstoneaxe: I think I saw the blue threat:  if I would&#39;ve traded for blue in Broke, you would&#39;ve moved in 2 more blues and cat&#39;d, right?\n\tKeith: You are on the right track.  Though I could provide the fourth blue myself.  Two on one turn and one on the next.  You have partially diffused it by moving a ship out.  \n\n35) Keith: Trade G3 Y3 Keith\n\n36) stoneaxe: Trade G3 R3 Stoneaxe\n\tKeith: You have a number of choices here.  You can make a sacrifice and capture my two blues but then I will move in another one and you would lose your y3.  You can sacrifice the y3 to evacuate your other ships from Broke.  Expensive.  It might have been worth it if the g2 was still there.  You can sacrifice the r1 and capture my other blue in Bend, though I could then build another one with a green sacrifice.  You can run with the y3 and leave the others behind.  Or you can sacrifice the y3 and...\n\tKeith: I can build another blue with a green sacrifice and you wouldl lose your ships at Broke.  Take it back and see what your best play is involving the Y3.\n\n37) Keith: Sacrifice Y3 Keith\nMove B1 Bend Keith\nMove G1 Bend Keith\nMove G1 Prineville Keith\nCatastrophe Keith Green\n\tstoneaxe: Thanks for the help!  I&#39;m still learning!  This one seems like a better move, but?  \r\n\r\n(signing off for tonight... until next time!)\r\n\n\tKeith: Good night then.\r\n\r\nYou almost had it.  The y3 sacrifice was right.  But you could have moved the g1 in Broke to Keith and the g2 in Bend to Keith and catastrophied green in Keith and won the game.  Though this still gives me a severe problem.  \r\n\r\nI ignored a general rule.  If the other person pulls a gun (red ship) you had better pull one too.\n\tKeith: If you sacrifice your r1 and convert my g3 at Keith then I am a gonner.  \n\n38) stoneaxe: Move G2 Bend Keith\n\tKeith: Guess I am done for because blowing up Broke still leaves you able to move from Bend to Keith with that fourth green.\n\n39) Keith: Trade B2 G2 Broke\n\n40) stoneaxe: Sacrifice R1 Broke\nAttack B1 Keith\n\n\tstoneaxe: You were very generous in this game... Thanks for the help!\n\tKeith: Your welcome.  Hope you learned something and enjoyed it.  \n\nHomeworlds Online (SDG# 9630)\nStarted: 2007.11.8, Ended: 2007.11.30\nParticipants: MikeYarrum (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B2 R3 G3\n\n\tsordros: Hi, good luck.\n\nHomeworlds Online (SDG# 9761)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.11.9, Ended: 2007.12.3\nParticipants: scottobear (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) scottobear: Homeworld G3 R2 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) scottobear: Build B1 Scottobear\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) scottobear: Trade B1 Y1 Scottobear\n\n7) zoltar: Build G1 Zoltar\n\n8) scottobear: Build B1 Scottobear\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) scottobear: Trade B1 R1 Scottobear\n\n11) zoltar: Build R2 Zoltar\n\n12) scottobear: Build B1 Scottobear\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) scottobear: Discover B1 Scottobear G1 Gorgon\n\n15) zoltar: Discover B1 Zoltar G2 Greenslime\n\n16) scottobear: Build B1 Gorgon\n\n17) zoltar: Build B2 Greenslime\n\n18) scottobear: Build B2 Gorgon\n\n19) zoltar: Sacrifice Y1 Zoltar\nMove B1 Greenslime Gorgon\nCatastrophe Gorgon B\n\n20) scottobear: Build Y1 Scottobear\n\n21) zoltar: Build B1 Greenslime\n\n22) scottobear: Discover Y1 Scottobear G1 Oz\n\n23) zoltar: Trade B2 Y2 Greenslime\n\n24) scottobear: Move R1 Scottobear Oz\n\n25) zoltar: Build G1 Zoltar\n\n26) scottobear: Build B1 Scottobear\n\n27) zoltar: Trade G1 Y1 Zoltar\n\n28) scottobear: Build Y2 Oz\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenslime\n\n30) scottobear: Build Y3 Scottobear\n\n31) zoltar: Discover Y1 Zoltar B2 Blooze\n\n32) scottobear: Trade Y1 B1 Scottobear\n\n33) zoltar: Sacrifice Y2 Greenslime\nMove B1 Greenslime Oz\nMove B1 Oz Scottobear\nCatastrophe Scottobear B\n\n34) scottobear: Move Y2 Oz Blooze\n\n35) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: Whoops! You know better than to grow a third of the same color in your homeworld when I have a ship of the same color!\n\tscottobear: you&#39;re right.. I do! Silly mistake!\n\n36) scottobear: Move R1 Oz Blooze\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Blooze\nBuild Y2 Greenslime\nBuild Y3 Zoltar\n\n38) scottobear: Trade Y2 B2 Blooze\n\tzoltar: Retreat!!!\n\n39) zoltar: Trade Y3 G3 Zoltar\n\n40) scottobear: Attack Y1 Blooze\n\tzoltar: Attack!\n\n41) zoltar: Sacrifice R2 Zoltar\nAttack R1 Blooze\nAttack Y1 Blooze\n\n42) scottobear: Build Y2 Oz\n\n43) zoltar: Build Y3 Zoltar\n\n44) scottobear: Move Y2 Oz Blooze\n\n45) zoltar: Sacrifice Y3 Zoltar\nMove Y2 Greenslime Oz\nDiscover Y1 Blooze G1 Vim\nDiscover Y1 Blooze G1 Vigor\n\n46) scottobear: Build Y3 Oz\n\n47) zoltar: Sacrifice Y3 Greenslime\nMove Y2 Oz Scottobear\nMove Y1 Vim Scottobear\nMove Y1 Vigor Scottobear\nCatastrophe Scottobear Y\n\n\tzoltar: Gotta watchout for those check-mate in ones, especially if you only have one color of ship in your homeworld.  Ready to try again?\n\nHomeworlds Online (SDG# 9760)\nStarted: 2007.11.9, Ended: 2007.12.21\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\tts52: Sorry I didn&#39;t respond for so long. Missed the email notice.\n\tzoltar: no problem\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tts52: huh, no email for that move either, must look into it more. Thanks again for waiting.\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zoltar: Build Y2 Zoltar\n\n8) ts52: Build Y2 Ts52\n\n9) zoltar: Build Y2 Zoltar\n\n10) ts52: Discover Y2 Ts52 G3 Kermit\n\n11) zoltar: Trade Y1 R1 Zoltar\n\n12) ts52: Trade Y1 R1 Ts52\n\n13) zoltar: Discover R1 Zoltar G2 Proxima\n\n14) ts52: Build R2 Ts52\n\n15) zoltar: Move Y2 Zoltar Proxima\n\n16) ts52: Move R2 Ts52 Kermit\n\n17) zoltar: Build R2 Proxima\n\n18) ts52: Build G1 Ts52\n\n19) zoltar: Discover R2 Proxima G1 Greenpea\n\n20) ts52: Discover G1 Ts52 B3 Grover\n\n21) zoltar: Build Y1 Zoltar\n\n22) ts52: Build G1 Grover\n\n23) zoltar: Build G2 Zoltar\n\n24) ts52: Build G2 Ts52\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Greenpea\nBuild R3 Proxima\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\n\n27) zoltar: Sacrifice Y2 Zoltar\nMove R1 Proxima Kermit\nMove R2 Greenpea Kermit\nCatastrophe Kermit R\n\n28) ts52: Trade G1 R1 Grover\n\n29) zoltar: Build R2 Proxima\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) zoltar: Move R2 Proxima Grover\n\n32) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Grover\nBuild G1 Grover\n\n33) zoltar: Sacrifice Y2 Proxima\nDiscover G2 Zoltar B2 Orion\nMove R2 Greenpea Grover\nCatastrophe Grover R\n\n34) ts52: Move R2 Ts52 Grover\n\n35) zoltar: Build Y1 Zoltar\n\n36) ts52: Build R1 Grover\n\n37) zoltar: Move Y1 Zoltar Proxima\n\n38) ts52: Build Y2 Kermit\n\n39) zoltar: Sacrifice G2 Orion\nBuild Y2 Zoltar\nBuild Y3 Proxima\n\n40) ts52: Discover Y2 Kermit G2 Robin\n\n41) zoltar: Sacrifice Y1 Zoltar\nMove Y3 Proxima Grover\n\n42) ts52: Sacrifice Y2 Robin\nMove R1 Grover Proxima\nMove R2 Grover Proxima\n\n43) zoltar: Sacrifice Y1 Proxima\nMove R3 Proxima Grover\n\n44) ts52: Sacrifice G1 Grover\nBuild G1 Ts52\n\n45) zoltar: Attack G1 Grover\n\n46) ts52: Build Y1 Kermit\n\n47) zoltar: Build G1 Zoltar\n\n48) ts52: Discover G2 Ts52 G3 Oscar\n\n49) zoltar: Sacrifice G3 Zoltar\nBuild G2 Grover\nBuild G3 Zoltar\nBuild Y1 Grover\n\n50) ts52: Move Y1 Kermit Proxima\n\n51) zoltar: Discover Y3 Grover B1 Blueberry\n\n52) ts52: Build Y2 Proxima\n\n53) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Grover\nBuild Y3 Zoltar\n\n54) ts52: Build R2 Ts52\n\n55) zoltar: Trade Y1 B1 Grover\n\n56) ts52: Trade R2 B2 Ts52\n\n57) zoltar: Trade Y3 B3 Zoltar\n\n58) ts52: Sacrifice B2 Ts52\nTrade R2 B2 Proxima\nTrade Y1 B1 Proxima\n\n59) zoltar: Sacrifice Y2 Zoltar\nDiscover B3 Zoltar B2 Bloohoohoo\nDiscover B1 Grover Y1 Oldyeller\n\n60) ts52: Build R2 Proxima\n\n61) zoltar: Trade B3 R3 Bloohoohoo\n\n62) ts52: Build Y1 Proxima\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Grover\nBuild Y3 Blueberry\n\tzoltar: Ack! I&#39;ve built all this firepower, yet I&#39;m running around on the defensive trying to not let my star get blown up.  Yikes!\n\n64) ts52: Sacrifice Y2 Kermit\nMove Y1 Proxima Blueberry\nMove Y2 Proxima Blueberry\nCatastrophe Blueberry Yellow\n\tzoltar: Well, I lost 2 moves and a ship for nothing.  Well done.  Hopefully I will do something with my massive fleet of 5 big ships, if I can keep them from being blown up.\n\tzoltar: Have to come back to this -- there must be a better way to save both stars in a less painful way.\n\tzoltar: Have to come back to this -- there must be a better way to save both stars in a less painful way.\n\n65) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Bloohoohoo\nBuild R2 Grover\n\n66) ts52: Trade B2 Y2 Proxima\n\n67) zoltar: Move R3 Grover Proxima\n\tzoltar: There -- I&#39;m happy now.\n\tts52: I can&#39;t get the page to show me the global reserve stash, and I know there should be at least 1 yellow of each size. On a mac, 10,4, running firefox 2.0.0.11.\n\tzoltar: I can&#39;s tee the global reserve stash either, and I couldn&#39;t see it in another homeworlds game yesterday as well using Opera.\n\tts52: I&#39;m also still not getting any email notifications.\n\tts52: Ok, not sure how the call an admin thing really works, but I&#39;ve set up a physical set of the game, so I can see the reserve here. b3, y1, y2, y3, r2, r2. I&#39;m going to take my move so we don&#39;t stagnate here forever.\n\n68) ts52: Build Y1 Proxima\n\n69) zoltar: Sacrifice R3 Bloohoohoo\nAttack Y2 Proxima\nAttack R2 Proxima\nAttack R1 Proxima\n\tzoltar: With 6 battlestars to your 1, I&#39;m finally feeling confident...\n\tts52: I&#39;m feeling a certain sense of deja&#39;vu.\n\tts52: Hey, I can see the global reserve again! Woot!\n\tts52: Email still isn&#39;t working though.\n\n70) ts52: Build R3 Ts52\n\tts52: Sigh, reserve stash is gone again.\n\tzoltar: Sigh, so is my yellow fleet :(\n\n71) zoltar: Sacrifice Y3 Grover\nMove R2 Grover Ts52\nMove R1 Proxima Grover\nMove R1 Grover Ts52\nCatastrophe Ts52 R\n\n72) ts52: Sacrifice Y1 Proxima\nMove R1 Kermit Ts52\n\n73) zoltar: Move G2 Grover Ts52\n\tzoltar: The fleet has returned to liberate Proxima!\n\n74) ts52: Build G3 Ts52\n\tts52: We will not give up Proxima without a fight!\n\tzoltar: Proxima has been liberated in the name of the Zoltarian Empire!  Hurrah!\n\n75) zoltar: Sacrifice Y2 Proxima\nMove Y2 Grover Ts52\nMove G1 Grover Ts52\nCatastrophe Ts52 G\n\tzoltar: The Zoltarian fleet may soon be down from 5 to 2 battlestars, but the liberation of Proxima was worth the sacrifice of many brave Zoltarian freedom fighters. Long Live Zoltar! \n\n76) ts52: Sacrifice G2 Oscar\nBuild R1 Ts52\nBuild R2 Ts52\n\tzoltar: Zoltar to fleet: sacrifice everything and storm the ts52 homeworld! All-out blitz! Attack!\n\n77) zoltar: Sacrifice R3 Proxima\nAttack R2 Ts52\nAttack R1 Ts52\nAttack R1 Ts52\n\tzoltar: Three attacking Zoltarian battlestars have been destroyed, but as a result, victory is at hand -- Our last red battlestar will arrive at the undefended ts52 homeworld next move -- the galaxy has been restored to Pax Zoltar once again! \n\n\tzoltar: gg\n\tts52: Thanks for the game. One of these days I&#39;ll figure out how to keep you from getting the upper hand with all those large ships....\n\tAaron: Are you still unable to see the stashes and stuff?  Call me again if so.  Cheers!\n\tts52: Sorry, I\n\tts52: Sorry, I am getting email again. Thanks!\n\nHomeworlds Online (SDG# 9747)\nStarted: 2007.11.9, Ended: 2007.11.18\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9791)\nStarted: 2007.11.9, Ended: 2008.1.4\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n\nHomeworlds Online (SDG# 9802)\nStarted: 2007.11.9, Ended: 2007.12.8\nParticipants: sordros (S), kreiger (N)\nWinner: sordros\n\n\nHomeworlds Online (SDG# 9804)\nStarted: 2007.11.11, Ended: 2007.11.18\nParticipants: TheDunwichHorror (S), kreiger (N)\nWinner: TheDunwichHorror\n\n\nHomeworlds Online (SDG# 9812)\nVariants: &quot;Unrated&quot;\nStarted: 2007.11.12, Ended: 2007.11.15\nParticipants: ahoodedfigure (S), peio (N)\nWinner: ahoodedfigure\n\n1) peio: Homeworld G2 B1 Y3\n\tahoodedfigure: SPACE!!\n\tpeio: I couldn&#39;t find the time yet to go thru the whole rules... promise, i&#39;ll do it !\n\n2) ahoodedfigure: Homeworld G3 Y3 R3 *\n\tahoodedfigure: It&#39;s been so long since I read the rules, now I have to do it again.\n\tahoodedfigure: i&#39;m going to experiment, then we can reset it if I screw everything up\n\n3) peio: Discover Y3 Peio R3 Weardahel-r-whe\n\tpeio: shit, I think I over estimated my chances ....\r\n*actually: LOTS of laughing*\n\tpeio: please challenge me again on this one. I&#39;m too ashamed of doing it (i&#39;m sure the button is going to refuse me clicking on it, just to make fun of me)\n\tahoodedfigure: Hello Peio. you made my husband laugh hysterically just now. - The Wife\n\tahoodedfigure: NEWSFLASH: Darth Vader blew up Coruscant.\n\tpeio: Me too, i was laughing so hard of my stupidity ... !!\r\n\r\nDV: Hey, Palpat, what&#39;s the orange button on the dashboard ?\r\nP : Dunno,... just press it to see whahapen ...\n\n\nHomeworlds Online (SDG# 9803)\nStarted: 2007.11.12, Ended: 2008.2.22\nParticipants: TheDunwichHorror (S), MikeYarrum (N)\nWinner: TheDunwichHorror\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) TheDunwichHorror: Homeworld G3 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) TheDunwichHorror: Build Y1 Thedunwichhorror\n\n\nHomeworlds Online (SDG# 9830)\nStarted: 2007.11.13, Ended: 2009.10.13\nParticipants: Nupanick (S), MikeYarrum (N)\nWinner: Nupanick\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) Nupanick: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Nupanick: Build Y1 Nupanick\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Nupanick: Discover Y1 Nupanick G3 Slippery\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Nupanick: Build Y1 Slippery\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) Nupanick: Build Y2 Nupanick\n\n11) MikeYarrum: Discover Y2 Mikeyarrum G1 Yotsuba\n\n12) Nupanick: Discover Y1 Slippery B1 Damogran\n\n13) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n14) Nupanick: Trade Y1 G1 Damogran\n\n15) MikeYarrum: Build B2 Mikeyarrum\n\n16) Nupanick: Build G1 Damogran\n\n17) MikeYarrum: Trade B2 R2 Mikeyarrum\n\n18) Nupanick: Build G2 Damogran\n\n19) MikeYarrum: Build B2 Mikeyarrum\n\n20) Nupanick: Trade G2 B2 Damogran\n\n21) MikeYarrum: Move B2 Mikeyarrum Damogran\n\n22) Nupanick: Trade B2 G2 Damogran\n\n23) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack G2 Damogran\nAttack G1 Damogran\n\n24) Nupanick: Build G2 Damogran\nCatastrophe Damogran G\n\n25) MikeYarrum: Trade B2 G2 Damogran\n\n26) Nupanick: Build Y1 Slippery\n\n\tNupanick: Yeah... are you coming back or do I need to call time up on this game?\n\nHomeworlds Online (SDG# 9719)\nVariants: &quot;Hard time&quot;\nStarted: 2007.11.13, Ended: 2007.11.16\nParticipants: TwoShort (S), MXX (N)\nWinner: TwoShort\n\n1) MXX: Homeworld G2 Y3 R3 *\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) MXX: Build R1 Mxx\n\tTwoShort: Howdy.\n\n4) TwoShort: Build G1 Twoshort\n\tMXX: Hi.\n\n5) MXX: Discover R1 Mxx B1 Centi\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) MXX: Trade R1 G1 Centi\n\n8) TwoShort: Build B2 Twoshort\n\n9) MXX: Build G1 Centi\n\n10) TwoShort: Trade B2 R2 Twoshort\n\n11) MXX: Trade G1 Y1 Centi\n\n12) TwoShort: Build B2 Twoshort\n\n13) MXX: Build G1 Centi\n\n14) TwoShort: Discover B2 Twoshort Y3 Yolonda\n\n15) MXX: Trade G1 Y1 Centi\n\n16) TwoShort: Build B2 Twoshort\n\n17) MXX: Move Y1 Centi Yolonda\n\n18) TwoShort: Discover B2 Twoshort Y3 Yoyodyne\n\n19) MXX: Build Y1 Centi\n\n20) TwoShort: Build B2 Twoshort\n\n21) MXX: Build Y2 Centi\n\n22) TwoShort: Discover B2 Twoshort G3 Grogar\n\n23) MXX: Trade Y1 R1 Centi\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Grogar\nBuild B3 Yoyodyne\n\n25) MXX: Move Y2 Centi Yolonda\n\n26) TwoShort: Trade B2 Y2 Yolonda\nCatastrophe Yolonda Yellow\n\n27) MXX: Build R1 Centi\n\n28) TwoShort: Trade B3 Y3 Twoshort\n\n29) MXX: Build Y1 Centi\n\n30) TwoShort: Move B3 Yoyodyne Centi\n\n31) MXX: Move Y1 Centi Yoyodyne\n\tTwoShort: So, not to be presumptuous, but I&#39;m guessing you haven&#39;t played this much before?   I ask because I feel a little bad just systematically destroying you (which I will, 2 turns from now).  Usually when I play new players I try to give out some advice along the way; though in this case it would just be &quot;Have some blue in your homeworld&quot; :)\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Grogar Centi\nMove B3 Centi Mxx\nMove B3 Centi Mxx\n\n33) MXX: Attack B3S Mxx\n\tMXX: Thanks, I&#39;ll keep that in mind\n\n34) TwoShort: Sacrifice R2 Twoshort\nAttack B3N Mxx\nAttack R3N Mxx\n\n\tTwoShort: I mainly hoping you won&#39;t be discouraged; the game is a lot more fun if you&#39;re not crippled right out of the box.\n\tTwoShort: In any case, thanks for the game!\n\nHomeworlds Online (SDG# 9823)\nVariants: &quot;No undo&quot;\nStarted: 2007.11.16, Ended: 2007.12.23\nParticipants: Nupanick (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) Nupanick: Homeworld G3 B2 Y3\n\n3) sordros: Build G1 Sordros\n\n4) Nupanick: Build Y1 Nupanick\n\n5) sordros: Trade G1 B1 Sordros\n\n6) Nupanick: Trade Y1 R1 Nupanick\n\n7) sordros: Build B1 Sordros\n\n8) Nupanick: Build Y1 Nupanick\n\n9) sordros: Trade B1 R1 Sordros\n\n10) Nupanick: Discover Y1 Nupanick B1 Damogran\n\n11) sordros: Build G1 Sordros\n\n12) Nupanick: Build Y1 Nupanick\n\n13) sordros: Discover G1 Sordros Y3 Amarego\n\n14) Nupanick: Trade Y1 G1 Nupanick\n\n15) sordros: Build B1 Sordros\n\n16) Nupanick: Move G1 Nupanick Damogran\n\n17) sordros: Move B1 Sordros Amarego\n\n18) Nupanick: Build Y1 Nupanick\n\n19) sordros: Sacrifice G3 Sordros\nBuild B2 Amarego\nBuild B3 Amarego\nBuild B3 Sordros\n\n20) Nupanick: Build Y2 Damogran\n\n21) sordros: Sacrifice B2 Amarego\nTrade B3 G3 Sordros\nTrade B3 Y3 Amarego\n\n22) Nupanick: Trade Y2 B2 Damogran\n\n23) sordros: Build B3 Amarego\n\n\tsordros: Hi Nupanick, are you still up to finish this game? or should we just terminate it?\n\tNupanick: Oops, sorry about that. I forgot it was my turn.\r\n\n\tsordros: It&#39;s ok, perhaps we&#39;ll play again sometime.  Happy new year!\n\nHomeworlds Online (SDG# 9846)\nVariants: &quot;Unrated&quot;\nStarted: 2007.11.17, Ended: 2007.11.20\nParticipants: peio (S), ahoodedfigure (N)\nWinner: ahoodedfigure\n\n1) ahoodedfigure: Homeworld G3 B3 R3 *\n\tahoodedfigure: Oh, shit.  I&#39;m first.  Watch me screw up.  I never did get to experiment like I wanted to before.  You mind starting a new one if my experiment doesn&#39;t work?\n\n2) peio: Homeworld Y3 G3 R3 *\n\n3) ahoodedfigure: Build R1 Ahoodedfigure\n\tpeio: no prblm, I know the feeling  ;) \n\tahoodedfigure: My tactic works better if I go second.\n\n4) peio: Build R1 Peio\n\tahoodedfigure: Sheesh.  About damn time.  I don&#39;t know how many commands I did before that worked.\n\n5) ahoodedfigure: Trade R1 Y1 Ahoodedfigure\n\tpeio: same ! Each turn it takes me 4 times b4 it takes my order.\r\nI thought one could build a given color in a system as long as the system piece is of that color ?!\n\tahoodedfigure: I thought that was what the rules said.  Apparently this thing thinks it has to match a ship type.  So, what good are the planet colors?\n\n6) peio: Discover R3 Peio B2 Whrdahellrwee2\n\tahoodedfigure: I had a baby!  I always wanted to have a baby!!\n\n7) ahoodedfigure: Build Y1 Ahoodedfigure\n\tpeio: Finally, I get to name a system ! (2nd move of 2nd game !!)\n\tahoodedfigure: Yeah...  and that&#39;s a real nice...  name.  &quot;name.&quot;\n\n8) peio: Build R1 Peio\n\n9) ahoodedfigure: Trade Y1 B1 Ahoodedfigure\n\n10) peio: Move R1 Peio Whrdahellrwee2\n\n11) ahoodedfigure: Build Y1 Ahoodedfigure\n\tpeio: I sorta don&#39;t know what to do to win...\n\tahoodedfigure: wipe out my homeworld&#39;s defenses, I think\n\tahoodedfigure: I&#39;ll have to leave this one hanging.  Should be in bed.  Later.\n\n12) peio: Trade R1 G1 Whrdahellrwee2\n\tahoodedfigure: Actually, according to the rules, you can&#39;t take an action that will destroy your own homeworld.  It&#39;s not allowed.  Which means your Palpatine Manuever was an illegal move.\n\n13) ahoodedfigure: Discover Y1 Ahoodedfigure B2 Lappland\n\n14) peio: Build R1 Peio\n\tahoodedfigure: wow, I managed to do it right the first time\n\n15) ahoodedfigure: Build B1 Ahoodedfigure\n\tpeio: not me... I fnd it (a bit) annoying I must say. Each time i try to do smtg it is first denied because i missed a rule detail. Then it takes for ever to perform smtg ... Will see how the game evolves as we move on.\n\n16) peio: Build R1 Whrdahellrwee2\n\tahoodedfigure: Since there are a lot of factors at work it&#39;s understandable.  If we were playing this in person moves would take seconds.  Then again, if we were playing my space conquering game, once you understood the basic principles, movement would be even MORE intuitive...  :)\n\tahoodedfigure: There&#39;s a video game called Mass Effect coming out now that&#39;s going to make me space-obsessed for many, many weeks.  Just warning you.\n\n17) ahoodedfigure: Trade B1 G1 Ahoodedfigure\n\tpeio: oookay\n\n18) peio: Move R1 Peio Whrdahellrwee2\n\n19) ahoodedfigure: Move G1 Ahoodedfigure Lappland\n\n20) peio: Trade R1 Y1 Whrdahellrwee2\n\n21) ahoodedfigure: Build Y2 Lappland\n\n22) peio: Build R1 Peio\n\tahoodedfigure: The rising tension...  OF THE STARS!!\n\tahoodedfigure: did you actually make up the name of your planet, or was that just randomly given?\n\tahoodedfigure: ...  IN THE GREAT VOID!!\n\tpeio: i decided the name. 2 comes from previous game. I named the new sytsem the same way on the previous game\n\n23) ahoodedfigure: Move Y2 Lappland Peio\n\n24) peio: Build R2 Peio\n\tahoodedfigure: Right, I gathered that it was a sequel...  but what the heck did the original mean?  :)\n\tpeio: Where the hell are we !?\n\n25) ahoodedfigure: Sacrifice R3 Ahoodedfigure\nAttack R1 Peio\nAttack R1 Peio\nAttack R2 Peio\n\tahoodedfigure: You&#39;re totally going to hate me.  Don&#39;t give up on this game yet =)\n\tahoodedfigure: Oh, I get it.  Where the hell are we.\n\n\nHomeworlds Online (SDG# 9871)\nStarted: 2007.11.26, Ended: 2007.11.30\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9934)\nStarted: 2007.11.28, Ended: 2008.2.22\nParticipants: kreiger (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n\nHomeworlds Online (SDG# 9891)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.11.29, Ended: 2007.12.12\nParticipants: scottobear (S), Mr_Shine (N)\nWinner: scottobear\n\n1) Mr_Shine: Homeworld B1 Y3 G3\n\n2) scottobear: Homeworld B3 G2 Y3\n\tscottobear: mr shine, him diamond!\n\n3) Mr_Shine: Build G1 Mr_shine\n\n4) scottobear: Build Y1 Scottobear\n\tMr_Shine: Mountain crush me no\r\nSun stop me no\r\nHammer me break me no:)\r\n\n\n5) Mr_Shine: Build G1 Mr_shine\n\n6) scottobear: Discover Y1 Scottobear B1 Library\n\n7) Mr_Shine: Discover G1 Mr_shine Y2 Propellor\n\n8) scottobear: Build Y1 Scottobear\n\n9) Mr_Shine: Discover G1 Propellor B1 Flux\n\n10) scottobear: Trade Y1 G1 Scottobear\n\n11) Mr_Shine: Build G2 Flux\n\n12) scottobear: Build G2 Scottobear\n\n13) Mr_Shine: Trade G1 Y1 Flux\n\n14) scottobear: Trade G2 R2 Scottobear\n\n15) Mr_Shine: Trade G1 R1 Mr_shine\n\n16) scottobear: Move G1 Scottobear Library\n\n17) Mr_Shine: Build G1 Mr_shine\n\n\nHomeworlds Online (SDG# 9838)\nVariants: &quot;Hard time&quot;\nStarted: 2007.11.30, Ended: 2008.3.17\nParticipants: wyons (S), TwoShort (N)\nWinner: wyons\n\n1) TwoShort: Homeworld R1 B3 G3\n\twyons: your chance of revenge!\n\twyons: your chance of revenge!\n\n2) wyons: Homeworld R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) wyons: Build G1 Wyons\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wyons: Trade G1 R1 Wyons\n\n7) TwoShort: Build Y1 Twoshort\n\n8) wyons: Build R2 Wyons\n\n9) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n10) wyons: Trade R2 Y2 Wyons\n\n11) TwoShort: Build Y1 Twoshort\n\n12) wyons: Discover Y2 Wyons G3 Astralweeks\n\n13) TwoShort: Discover Y1 Twoshort Y2 Yonderboy\n\n14) wyons: Build R2 Wyons\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n16) wyons: Move Y2 Astralweeks Wyons\n\n17) TwoShort: Trade Y2 G2 Twoshort\n\twyons: yep.. I think I made a mistake discovering astral weeks...  :{\n\n18) wyons: Trade R2 G2 Wyons\n\n19) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluonia\n\tTwoShort: Yeah, moving out before you grew a second one just put your only spot to grow yellow closer to me without helping you particularly.  The competing-monopolies situation we were heading into demands growing efficiently while not getting blown up.\n\twyons: oh dear- this seems to be going from bad to worse..\n\n20) wyons: Build R2 Wyons\n\twyons: whilst you polish me off can I tempt you to a game of grim reaper.. I think you might have the right sort of brain..?\n\n21) TwoShort: Trade Y2 G2 Twoshort\n\n22) wyons: Build Y2 Wyons\n\n23) TwoShort: Discover Y3 Bluonia B3 Wedge\n\n24) wyons: Discover Y2 Wyons G3 Stargazer\n\n25) TwoShort: Trade Y3 R3 Wedge\n\n26) wyons: Build Y3 Wyons\n\n27) TwoShort: Move Y1 Yonderboy Wedge\n\n28) wyons: Build Y2 Stargazer\n\n29) TwoShort: Trade Y3 G3 Twoshort\n\n30) wyons: Sacrifice Y2 Wyons\nDiscover G3 Wyons Y3 Stella\nMove R1 Wyons Stella\n\twyons: I have also lost the picture of the global stash\n\twyons: oh--- and after  my move it came back!  :)\n\tTwoShort: I didn&#39;t mean to blow off your suggestion of a game of grim reaper - I&#39;m just a bit short on attention cycles at the moment...  issue a challenge in January and I&#39;ll be happy to play.  Also, I&#39;m not sure &quot;polishing you off&quot; is quite where this game is at :)  Someone (Steely-eyed Russell?) once referred to monopolizing yellow to the point that you have nothing else as &quot;the sand trap&quot;, but this is the first time I&#39;ve understood what he meant.  Anyway, I mention it just to point out my dumb golf reference: Using a Wedge to get out of the sand trap.  Now on to the green...\n\n31) TwoShort: Trade Y3 R3 Bluonia\n\twyons: no offence taken. I shall challenge you to GR in January.\n\twyons: ...and I still feel like I have barely a head above the sand.\n\n32) wyons: Sacrifice G2 Wyons\nBuild Y2 Stargazer\nBuild Y3 Wyons\n\n33) TwoShort: Move Y1 Bluonia Stargazer\nCatastrophe Stargazer Yellow\n\n34) wyons: Discover Y3 Wyons G3 Stardust\n\n35) TwoShort: Move G2 Twoshort Bluonia\n\n36) wyons: Trade R2 G2 Wyons\n\n37) TwoShort: Build R2 Bluonia\n\twyons: Aaron- happy Xmas! Do you know that the global stash picture is only functioning intermittently\n\twyons: TwoShort- you can still play on I believe (even though it says frozen).\n\n38) wyons: Build G1 Wyons\n\n39) TwoShort: Trade R2 Y2 Bluonia\n\n40) wyons: Build R2 Stella\n\n41) TwoShort: Build R2 Bluonia\n\n42) wyons: Discover R2 Stella Y2 Nickoftime\n\twyons: the display is back!\n\n43) TwoShort: Trade R2 B2 Bluonia\n\n44) wyons: Sacrifice G3 Stella\nBuild R2 Stella\nBuild R2 Stella\nBuild R3 Nickoftime\n\n45) TwoShort: Move R3 Bluonia Stella\nCatastrophe Stella Red\n\n46) wyons: Discover G2 Wyons Y3 Startrek\n\n47) TwoShort: Build B1 Bluonia\n\n48) wyons: Build G1 Wyons\n\n49) TwoShort: Build G1 Twoshort\n\n50) wyons: Trade G1 B1 Wyons\n\n51) TwoShort: Discover B2 Bluonia G3 Greenfly\n\n52) wyons: Discover R2 Nickoftime B3 Cosmicgorilla\n\n53) TwoShort: Sacrifice Y2 Bluonia\nMove B1 Bluonia Wedge\nMove B2 Greenfly Wyons\n\n54) wyons: Move B1 Wyons Stardust\n\n55) TwoShort: Sacrifice G2 Bluonia\nBuild B1 Wyons\nBuild B2 Wyons\nCatastrophe Wyons Blue\n\n56) wyons: Build B1 Stardust\n\n57) TwoShort: Trade B1 R1 Wedge\n\twyons: hmmm... that was very unpleasant. I fear I am about to lose my first game of homeworlds. \n\twyons: I am also challenging you to GR as agreed. :)\n\n58) wyons: Move B1 Stardust Wyons\n\n59) TwoShort: Discover R1 Wedge G2 Grogar\n\n60) wyons: Build G1 Startrek\n\n61) TwoShort: Sacrifice G1 Twoshort\nBuild R2 Wedge\n\n62) wyons: Sacrifice G2 Startrek\nBuild R2 Nickoftime\nBuild R3 Cosmicgorilla\n\n63) TwoShort: Discover R2 Wedge Y2 Yolonda\n\n64) wyons: Sacrifice Y3 Stardust\nDiscover R2 Cosmicgorilla Y1 Warp1\nDiscover R3 Cosmicgorilla Y2 Warp2\nDiscover R3 Nickoftime Y3 Warp3\n\n65) TwoShort: Move R3 Wedge Nickoftime\n\n66) wyons: Sacrifice G1 Startrek\nBuild Y3 Wyons\n\n67) TwoShort: Attack R2S Nickoftime\n\n68) wyons: Move Y3 Wyons Stardust\n\n69) TwoShort: Move R2 Yolonda Wyons\n\n70) wyons: Sacrifice R2 Warp1\nAttack R2N Wyons\nPass\n\n71) TwoShort: Move R2 Nickoftime Wedge\n\n72) wyons: Trade R2 Y2 Wyons\n\n73) TwoShort: Build R2 Grogar\n\n74) wyons: Build G1 Wyons\n\n75) TwoShort: Discover R3 Nickoftime B3 Bluonia\n\n76) wyons: Discover G1 Wyons Y2 Wormhole\n\n77) TwoShort: Sacrifice Y1 Wedge\nMove R3 Bluonia Wormhole\n\twyons: shouldnt nickoftime have been abandoned??\n\twyons: ah you must have been undoing that when I wrote it!....\n\tTwoShort: yeah, something was wrong there.  Besides my move that is... the move is going to require more thought.\n\twyons: I have just noticed that Aaron is tinkering with the code. \n\twyons: and oh good- glad you are having to think! :)\n\n78) wyons: Sacrifice G1 Wormhole\nBuild R2 Warp2\n\n79) TwoShort: Build G1 Twoshort\n\n80) wyons: Build B1 Stardust\n\n81) TwoShort: Build Y1 Twoshort\n\n82) wyons: Build G1 Wyons\n\n83) TwoShort: Move Y1 Twoshort Grogar\n\n84) wyons: Move G1 Wyons Warp2\n\n85) TwoShort: Move R3 Wormhole Wyons\n\n86) wyons: Attack R3N Wyons\n\n87) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Grogar\n\twyons: I just challenged you on the ladder. I know it will be our third game but I couldnt resist a shot at the top!\n\n88) wyons: Sacrifice Y2 Wyons\nMove R3 Wyons Grogar\nMove R3 Warp3 Grogar\nCatastrophe Grogar Red\n\n89) TwoShort: Trade Y1 R1 Twoshort\n\n90) wyons: Sacrifice Y3 Stardust\nMove G1 Wyons Grogar\nMove G1 Grogar Twoshort\nMove G1 Warp2 Twoshort\nCatastrophe Twoshort Green\n\n91) TwoShort: Move Y2 Grogar Twoshort\n\n\tTwoShort: Oh, I don&#39;t have green, so my suicide defense plan wont work.  Well, it wasn&#39;t going to stave you off for more than another turn or two anyway :)  Good job, and thanks for the game!\n\nHomeworlds Online (SDG# 9834)\nStarted: 2007.11.30, Ended: 2007.12.13\nParticipants: MikeYarrum (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) alexcobo: Trade Y1 R1 Alexcobo\n\n\nHomeworlds Online (SDG# 9940)\nStarted: 2007.11.30, Ended: 2008.1.4\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9949)\nStarted: 2007.12.3, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Annagul (N)\nWinner: Annagul\n\n1) Annagul: Homeworld B3 G2 R3\n\n2) MikeYarrum: Homeworld R1 B3 G3\n\n3) Annagul: Build R1 Annagul\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Annagul: Trade R1 Y1 Annagul\n\n\nHomeworlds Online (SDG# 9955)\nStarted: 2007.12.3, Ended: 2008.2.22\nParticipants: Annagul (S), kreiger (N)\nWinner: Annagul\n\n\nHomeworlds Online (SDG# 9942)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.12.3, Ended: 2007.12.23\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Trade Y1 G1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Build Y1 Scottobear\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Discover G1 Scottobear B1 Whoopsie\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) scottobear: Build G1 Whoopsie\n\n12) zoltar: Build B2 Zoltar\n\n13) scottobear: Trade G1 R1 Whoopsie\n\n14) zoltar: Trade B2 R2 Zoltar\n\n15) scottobear: Move Y1 Scottobear Whoopsie\n\n16) zoltar: Build B2 Zoltar\n\n17) scottobear: Build Y1 Scottobear\n\n18) zoltar: Discover B2 Zoltar G3 Daisy\n\n19) scottobear: Build Y2 Whoopsie\n\n20) zoltar: Build Y2 Zoltar\n\n\nHomeworlds Online (SDG# 9960)\nVariants: &quot;Hard time&quot;\nStarted: 2007.12.4, Ended: 2007.12.10\nParticipants: MikeYarrum (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y2 B3 G3\n\n2) MikeYarrum: Homeworld R3 B1 G3\n\n3) nycavri: Build G1 Nycavri\n\n\nHomeworlds Online (SDG# 9969)\nStarted: 2007.12.6, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Bryce (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9968)\nStarted: 2007.12.6, Ended: 2007.12.13\nParticipants: alexcobo (S), kreiger (N)\nWinner: alexcobo\n\n\nHomeworlds Online (SDG# 10009)\nStarted: 2007.12.6, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Teraphim (N)\nWinner: Teraphim\n\n1) Teraphim: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 10014)\nStarted: 2007.12.6, Ended: 2007.12.7\nParticipants: Teraphim (S), MisterMorn (N)\nWinner: Teraphim\n\n1) MisterMorn: Homeworld G2 Y1 B3\n\n2) Teraphim: Homeworld G3 B2 Y3\n\n3) MisterMorn: Build B1 Mistermorn\n\n4) Teraphim: Build Y1 Teraphim\n\n5) MisterMorn: Discover B1 Mistermorn R3 Mars\n\n6) Teraphim: Build Y1 Teraphim\n\n7) MisterMorn: Trade B1 G1 Mars\n\n8) Teraphim: Discover Y1 Teraphim G1 February\n\n9) MisterMorn: Build B1 Mistermorn\n\n10) Teraphim: Build Y2 February\n\n11) MisterMorn: Build B1 Mistermorn\n\n12) Teraphim: Trade Y1 R1 Teraphim\n\n13) MisterMorn: Trade B1 Y1 Mistermorn\n\tMisterMorn: Hey. Check this out. There&#39;s a little chat dealy down here by the system messages. Let&#39;s see how it works.\n\n14) Teraphim: Build Y2 Teraphim\n\tTeraphim: hehe neat, ffxi just went down for emerg. maint.\r\nso I&#39;ll play you, you&#39;ve got some evil plan dont you?\r\n\n\n15) MisterMorn: Move Y1 Mistermorn Mars\n\tMisterMorn: My plan has already come to fruition... well, as soon as I send the check off to the good people at S-E for setting up maintenance.\n\tTeraphim: You bastard I&#39;ll kill you\r\nso is mine btw(evil plan, not check)\r\n\n\tMisterMorn: Is it just me or did the system glitch out, since it says you made a y2, but the picture says you didn&#39;t...\n\n16) Teraphim: Sacrifice Y2 Teraphim\nMove Y3 Teraphim February\nMove Y3 February Mars\n\tTeraphim: it glitched\r\n\n\n17) MisterMorn: Build Y2 Mars\n\n18) Teraphim: Sacrifice Y2 February\nMove Y1 February Teraphim\nMove Y3 Mars Mistermorn\n\n19) MisterMorn: Build B1 Mistermorn\n\n20) Teraphim: Sacrifice R1 Teraphim\nAttack B3N Mistermorn\n\n21) MisterMorn: Sacrifice Y2 Mars\nMove B1 Mistermorn Mars\nDiscover B1 Mars G1 Bundtcake\n\tTeraphim: I think I got you\r\n\n\tMisterMorn: And now we see why you don&#39;t put building in your homeworld. I suck\n\n22) Teraphim: Trade B3 R3 Mistermorn\n\n23) MisterMorn: Build B1 Mistermorn\n\tMisterMorn: ...actually, it&#39;s a lack of red that screws me. Not my choice of homeworld. In any event...\n\tTeraphim: Suicide if you want I still claiming the win ^.-\r\n\n\tTeraphim: I&#39;m*\r\n\n\n24) Teraphim: Sacrifice R3 Mistermorn\nAttack B1N Mistermorn\nAttack B1N Mistermorn\nPass\n\tMisterMorn: I never said the game was over. I said I suck. There&#39;s a difference.\n\n\nHomeworlds Online (SDG# 9853)\nVariants: &quot;Hard time&quot;\nStarted: 2007.12.6, Ended: 2007.12.9\nParticipants: Jesse (S), kepesman (N)\nWinner: Jesse\n\n\nHomeworlds Online (SDG# 10012)\nStarted: 2007.12.6, Ended: 2007.12.12\nParticipants: MikeYarrum (S), kepesman (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9986)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2007.12.6, Ended: 2007.12.10\nParticipants: kepesman (S), scottobear (N)\nWinner: scottobear\n\n1) scottobear: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 9985)\nStarted: 2007.12.6, Ended: 2009.12.9\nParticipants: kevbo082 (S), cworth (N)\nWinner: cworth\n\n1) cworth: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 10018)\nVariants: &quot;No undo&quot;\nStarted: 2007.12.7, Ended: 2007.12.7\nParticipants: Teraphim (S), MisterMorn (N)\nWinner: Teraphim\n\n1) MisterMorn: Homeworld G2 B1 Y3\n\tTeraphim: XP\n\n2) Teraphim: Homeworld Y3 B2 G3\n\tMisterMorn: So, didja get your order placed?\n\n3) MisterMorn: Build Y1 Mistermorn\n\n4) Teraphim: Build G1 Teraphim\n\tTeraphim: no not yet\r\n\n\n5) MisterMorn: Trade Y1 R1 Mistermorn\n\n6) Teraphim: Trade G1 R1 Teraphim\n\tTeraphim: hahahahahahaha nice \n\n7) MisterMorn: Build R1 Mistermorn\n\n8) Teraphim: Build R2 Teraphim\n\tMisterMorn: I believe it&#39;s called &quot;learning from your mistakes.&quot;\n\n9) MisterMorn: Discover R1 Mistermorn Y3 Twinkie\n\n10) Teraphim: Build G1 Teraphim\n\tMisterMorn: I still suck, though. ^_~\n\n11) MisterMorn: Build Y1 Mistermorn\n\n12) Teraphim: Discover G1 Teraphim Y1 Ol\n\n13) MisterMorn: Trade Y1 G1 Mistermorn\n\n14) Teraphim: Build R2 Teraphim\n\tMisterMorn: Wow. OI looks like a neat system. What kind of stuff do they do there?\n\tTeraphim: WE are the Borg. You will be assimilated. We will add your biological and technological distinctiveness to our own. Your culture will adapt to service us. Resistance is futile.\n\n15) MisterMorn: Build R2 Mistermorn\n\n16) Teraphim: Move R2 Teraphim Ol\n\tMisterMorn: God damn Borg. But, wait... those ships look like triangles! Borg only travel in cubes... YOU&#39;RE IMPOSTERS!\n\n17) MisterMorn: Discover R1 Twinkie G1 Angelfood\n\n18) Teraphim: Build R3 Ol\n\tTeraphim: Small words from a small being, trying to attack what it doesn&#39;t understand.(Ps nice try but you&#39;d be wrong about the only cubes, never seen a triangle though)\n\tMisterMorn: Oh, that&#39;s right... they have spheres too, don&#39;t they?\n\n19) MisterMorn: Trade R2 Y2 Mistermorn\n\n20) Teraphim: Move R2 Teraphim Angelfood\n\tTeraphim: Watch your future&#39;s end. \r\n(yep and wierd little diamond shaped ones)\n\tMisterMorn: (neat)\r\nYour armada is certainly impressive, oh Borg King, but we shall see how this battle plays itself out.\n\n21) MisterMorn: Build R2 Angelfood\n\n22) Teraphim: Build R3 Angelfood\nCatastrophe Angelfood R\n\tTeraphim: You are an imperfect being, created by an imperfect being. Finding your weakness is only a matter of time.(yes these are all borg quotes)\n\tMisterMorn: (In case you&#39;re wondering, I did build that r2 on purpose as bait.)\n\n23) MisterMorn: Trade G1 B1 Mistermorn\n\tMisterMorn: Nicely done. Thank you for taking the bait.\n\n24) Teraphim: Build R1 Teraphim\n\tTeraphim: Mistermorn: Yes, I... I remember you. You were there all the time. But... that ship... and all the Borg on it were destroyed...\r\nBorg King: You think in such three-dimensional terms. How small you&#39;ve become. \n\tMisterMorn: [insert laughter here]\n\n25) MisterMorn: Build R2 Mistermorn\n\n26) Teraphim: Trade R1 B1 Teraphim\n\tTeraphim: Borg King: Do you always talk this much?\r\nMistermorn: Not always, but often.\n\n27) MisterMorn: Sacrifice Y2 Mistermorn\nDiscover R2 Mistermorn Y3 Twinkie\nDiscover R2 Twinkie G1 Angelfood\n\n28) Teraphim: Trade B1 Y1 Teraphim\n\tMisterMorn: I found my old Angelfood system. It&#39;s a little less pretty than it last was, thanks to your horrible weapons experiments. I didn&#39;t think the Borg made mistakes.\n\tTeraphim: Brave words. I&#39;ve heard them before, from thousands of species across thousands of worlds, since long before you were created. But, now they are all Borg.\n\n29) MisterMorn: Build B1 Mistermorn\n\n30) Teraphim: Build Y1 Teraphim\n\n31) MisterMorn: Build Y2 Mistermorn\n\n32) Teraphim: Discover R2 Ol B3 Lo\n\n33) MisterMorn: Sacrifice Y2 Mistermorn\nMove B1 Mistermorn Lo\nMove B1 Lo Angelfood\n\n34) Teraphim: Move Y1 Teraphim Ol\n\tTeraphim: Former people of lO: Borg? Sounds Swedish.\r\n[after having seen the Borg]\r\nFormer people of lO: Definitely not Swedish. \n\n35) MisterMorn: Build B2 Angelfood\n\n36) Teraphim: Build Y2 Ol\n\n37) MisterMorn: Build B2 Angelfood\n\n38) Teraphim: Sacrifice Y2 Ol\nMove R3 Ol Lo\nMove R3 Lo Angelfood\n\n39) MisterMorn: Sacrifice Y3 Mistermorn\nMove B1 Angelfood Teraphim\nMove B2 Angelfood Teraphim\nMove B2 Angelfood Teraphim\nCatastrophe Teraphim Blue\n\tMisterMorn: You forced me to pull the trigger a little early. Congratulations there...\n\n40) Teraphim: Sacrifice Y1 Ol\nMove R2 Lo Mistermorn\n\tTeraphim: You flatter yourself! I&#39;ve overseen the assimilition of countless millions. You were no different! \n\n41) MisterMorn: Build R1 Mistermorn\n\n42) Teraphim: Sacrifice R3 Angelfood\nAttack R1N Mistermorn\nAttack R1N Mistermorn\nAttack B1N Mistermorn\n\tTeraphim: I am the beginning. The end. The one who is many. I am the Borg. \n\tTeraphim: And ow so are you.\n\tTeraphim: And os so are you.\n\tTeraphim: And now so are you.\n\tTeraphim: Resistance was futile. \n\tMisterMorn: Exercises in futility are still a good workout.\n\tTeraphim: This game has now concluded due to Assimilition OF ALL OPPOSITION. The winner was the Borg King.\n\n\nHomeworlds Online (SDG# 10020)\nStarted: 2007.12.8, Ended: 2007.12.8\nParticipants: Teraphim (S), CakePan (N)\nWinner: Teraphim\n\n1) CakePan: Homeworld G3 B1 Y3\n\tCakePan: Why do I always seem to go first? I pick &quot;random&quot; when I set the rules, and, so, I assume, did you...\n\n2) Teraphim: Homeworld Y2 G2 R3 *\n\n3) CakePan: Build Y1 Cakepan\n\tTeraphim: idk just bad luck for me?\r\n\n\n4) Teraphim: Build R1 Teraphim\n\n5) CakePan: Build Y1 Cakepan\n\n6) Teraphim: Move R3 Teraphim Cakepan\n\n7) CakePan: Move Y3 Cakepan Teraphim\n\n8) Teraphim: Attack Y1N Cakepan\n\n9) CakePan: Build Y1 Cakepan\n\n10) Teraphim: Sacrifice R3 Cakepan\nAttack Y1N Cakepan\nAttack Y1N Cakepan\nPass\n\tCakePan: I know it&#39;s over, but I&#39;m going to keep struggling, out of penalty for you making such a short game.\n\tTeraphim: Resistance is futile.\n\tCakePan: Yes. Yes it is. But, as I&#39;ve said, exercises in futility still burn calories.\n\n\nHomeworlds Online (SDG# 10016)\nStarted: 2007.12.9, Ended: 2007.12.13\nParticipants: MikeYarrum (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 R3\n\n\nHomeworlds Online (SDG# 10030)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2007.12.9, Ended: 2007.12.18\nParticipants: CakePan (S), Borg_King (N)\nWinner: CakePan\n\n1) Borg_King: Homeworld R2 G1 Y3 *\n\n2) CakePan: Homeworld R3 B2 G3\n\n3) Borg_King: Build Y1 Borg_king\n\tCakePan: Attention all units! The Borg has entered the galaxy! Repeat, the Borg has entered the Galaxy! Prepare defensive measures immediately!\n\tBorg_King: We are the Borg. Lower your shields and prepare to be assimilated. \n\n4) CakePan: Build G1 Cakepan\n\n5) Borg_King: Discover Y1 Borg_king B3 One\n\n6) CakePan: Trade G1 Y1 Cakepan\n\n7) Borg_King: Trade Y1 B1 One\n\n8) CakePan: Build G1 Cakepan\n\tBorg_King: All drones report to terminals for regeneration. I am the one who is many and the many who are one. Now rest.\n\tCakePan: (was that a mistake?)\n\n9) Borg_King: Build Y1 Borg_king\n\n10) CakePan: Discover G1 Cakepan B1 Redvelvet\n\n11) Borg_King: Move Y1 Borg_king One\n\n12) CakePan: Build G1 Redvelvet\n\n\nHomeworlds Online (SDG# 10081)\nVariants: &quot;Hard time&quot;\nStarted: 2007.12.17, Ended: 2008.1.18\nParticipants: sordros (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B3 Y1 G3\n\n2) sordros: Homeworld B1 Y2 G3\n\tKeith: Hello Sordos.  Thank you for accepting my challenge.\n\n3) Keith: Build G1 Keith\n\tsordros: Hi Keith.  You are welcome.  Good luck!\n\n4) sordros: Build G1 Sordros\n\n5) Keith: Trade G1 Y1 Keith\n\n6) sordros: Trade G1 B1 Sordros\n\n7) Keith: Build Y1 Keith\n\n8) sordros: Build B1 Sordros\n\n9) Keith: Discover Y1 Keith G2 Midori\n\n10) sordros: Discover B1 Sordros G3 Verdego\n\n11) Keith: Build Y2 Keith\n\n12) sordros: Build B2 Verdego\n\n13) Keith: Build Y2 Midori\n\n14) sordros: Discover B1 Sordros Y3 Flavega\n\tKeith: Whew.  Bad typo, wrong system.\n\n15) Keith: Build Y3 Midori\n\tsordros: That was close :-)\n\n16) sordros: Build G1 Sordros\n\n17) Keith: Trade Y2 B2 Keith\n\n18) sordros: Trade B2 Y2 Verdego\n\n19) Keith: Move Y1 Midori Verdego\n\n20) sordros: Build B2 Verdego\n\tKeith: That was probably a mistake on my part, letting you break into yellow ships.  Good pickup on that opening.\n\n21) Keith: Build Y3 Keith\n\tsordros: Thanks, but only time will tell if it is a mistake. Let&#39;s see what happens next.\n\n22) sordros: Trade B1 R1 Verdego\n\n23) Keith: Sacrifice Y1 Keith\nMove Y2 Midori Verdego\n\n24) sordros: Attack Y2 Verdego\n\n25) Keith: Build Y1 Verdego\nCatastrophe Verdego Yellow\n\n26) sordros: Build G1 Sordros\n\tKeith: Now you will see why I sacrificed a yellow ship to move a yellow ship.\n\n27) Keith: Sacrifice Y3 Midori\nDiscover G3 Keith G2 Midworld\nMove G3 Midworld Flavega\nMove G3 Flavega Sordros\nCatastrophe Sordros Green\n\tsordros: Very clever. I didn&#39;t see that coming.\n\n\tKeith: Alas, I don&#39;t think you saw this next thing coming either.  Though I have dragged my feet before taking my turn on the off chance you would look over the board and catch it.\n\tKeith: With a yellow 3-pointer I could sacrifice and reach any system on the board from any other system.  So any system with three of the same color was subject to catastrophe.\r\n\r\nThank you very much for taking up my challenge.  Three others before you did not.  \r\n\r\nI feel a bit bad about playing hardball though such is the nature of a ladder game.  Had this been an unrated game I would have offered a warning and encouraged you to redo your move.\n\tsordros: You are right, I didn&#39;t see that coming either.  \r\nDon&#39;t feel bad about winning a game if you are following all the rules!  I am the one that should apologize for not providing a suitable challenge!\r\nThanks for the game, and good luck climbing up the charts.\n\tKeith: It is the nature of the ladder system to create some mis-matches since newcomers to the ladder always start at the bottom.  No need to be concerned about your level of challenge.  Homeworlds has a lot of learning curve.  FWIW I beat Zoltar once using your grab the blue strategy while he used my grab the yellow strategy.  So your approach was viable.\n\nHomeworlds Online (SDG# 10022)\nStarted: 2007.12.17, Ended: 2008.1.18\nParticipants: kreiger (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 10032)\nStarted: 2008.1.2, Ended: 2008.4.11\nParticipants: loopywolf (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 10159)\nStarted: 2008.1.2, Ended: 2008.1.2\nParticipants: MikeYarrum (S), loopywolf (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 10105)\nStarted: 2008.1.6, Ended: 2008.1.19\nParticipants: ts52 (S), MatrixFrog (N)\nWinner: ts52\n\n1) MatrixFrog: Homeworld G3 B2 Y3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) ts52: Build G1 Ts52\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\tts52: Have a good game!\n\n6) ts52: Build G1 Ts52\n\n7) MatrixFrog: Discover Y1 Matrixfrog G1 Zoop\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) MatrixFrog: Build Y1 Zoop\n\n10) ts52: Build G2 Grover\n\n11) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n12) ts52: Trade G2 Y2 Grover\n\n13) MatrixFrog: Discover Y1 Zoop B3 Zeep\n\n14) ts52: Build G2 Grover\n\n15) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Zeep\nBuild Y3 Matrixfrog\nBuild Y3 Zoop\n\n16) ts52: Build Y3 Grover\n\n17) MatrixFrog: Trade Y2 G2 Zeep\n\n18) ts52: Discover G2 Grover Y2 Sol\n\n19) MatrixFrog: Move G2 Zeep Ts52\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Sol\nBuild G3 Ts52\n\n21) MatrixFrog: Trade G2 R2 Ts52\n\n22) ts52: Trade G2 R2 Grover\n\n23) MatrixFrog: Attack G1 Ts52\n\n24) ts52: Sacrifice R2 Grover\nAttack R2 Ts52\nAttack G1 Ts52\n\n25) MatrixFrog: Trade Y3 B3 Matrixfrog\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Sol\nBuild G3 Ts52\n\n27) MatrixFrog: Build Y3 Matrixfrog\n\n28) ts52: Trade G2 B2 Grover\n\n29) MatrixFrog: Move Y3 Zoop Zeep\n\n30) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Ts52\n\n31) MatrixFrog: Trade Y1 R1 Zeep\n\n32) ts52: Discover G2 Grover Y1 Zoe\n\n33) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n34) ts52: Move G2 Sol Zoe\n\n35) MatrixFrog: Build Y1 Zoop\n\n36) ts52: Move B2 Grover Zoe\n\n37) MatrixFrog: Build R2 Matrixfrog\n\n38) ts52: Move R2 Ts52 Grover\n\n39) MatrixFrog: Move Y1 Zoop Zeep\n\n40) ts52: Move G2 Sol Zoe\n\n41) MatrixFrog: Sacrifice Y3 Zeep\nMove Y1 Zoop Grover\nDiscover Y1 Zeep R2 Flash\nMove Y1 Flash Grover\nCatastrophe Grover Y\n\n42) ts52: Build G1 Sol\n\tMatrixFrog: Homeworld: safe. For now. Presence throughout the galaxy: decimated.\r\n\r\nHopefully that will prove to have been &quot;worth it&quot;\n\n43) MatrixFrog: Trade R1 Y1 Zeep\n\n44) ts52: Build R1 Grover\n\n45) MatrixFrog: Build Y1 Matrixfrog\n\n46) ts52: Trade R2 Y2 Grover\n\n47) MatrixFrog: Build Y3 Matrixfrog\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild B1 Zoe\n\n49) MatrixFrog: Discover B3 Matrixfrog B1 Llama\n\n50) ts52: Sacrifice Y3 Grover\nMove G2 Zoe Matrixfrog\nMove G2 Zoe Matrixfrog\nMove G2 Zoe Matrixfrog\nCatastrophe Matrixfrog Green\n\n51) MatrixFrog: Move R2 Matrixfrog Zoe\n\n52) ts52: Sacrifice R1 Grover\nAttack R2 Zoe\n\n53) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n54) ts52: Sacrifice Y2 Grover\nMove B2 Zoe Matrixfrog\nMove B1 Zoe Matrixfrog\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 9947)\nVariants: &quot;Hard time&quot;\nStarted: 2008.1.6, Ended: 2008.1.8\nParticipants: cheinzmann (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Howdy.\n\n2) cheinzmann: Homeworld B1 G3 R3\n\n\n3) TwoShort: Build G1 Twoshort\n\tcheinzmann: Never played before, have my sets at home but want to learn. Please be patient\n\tTwoShort: No problem.  I&#39;m always happy to teach new players. Lesson 1:  Don&#39;t start with a red ship... :)  Red isn&#39;t useful until we&#39;re in range of each other.\n\n4) cheinzmann: Trade R3 Y3 Cheinzmann\n\n5) TwoShort: Build G1 Twoshort\n\n6) cheinzmann: Discover Y3 Cheinzmann G2 Grogg\n\tcheinzmann: Oops I should have built another ship or two\n\tcheinzmann: I am willing to try again if you dont mind.\n\tTwoShort: I thought that it wouldn&#39;t let you do that.  Well, in any case, I&#39;m happy to start again...\n\n\nHomeworlds Online (SDG# 10210)\nVariants: &quot;Hard time&quot;\nStarted: 2008.1.8, Ended: 2008.2.3\nParticipants: cheinzmann (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) cheinzmann: Homeworld Y1 B3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) cheinzmann: Build G1 Cheinzmann\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) cheinzmann: Build G1 Cheinzmann\n\n7) TwoShort: Build Y1 Twoshort\n\n8) cheinzmann: Trade G3 Y3 Cheinzmann\n\n9) TwoShort: Build Y2 Twoshort\n\n10) cheinzmann: Build G1 Cheinzmann\n\n11) TwoShort: Build G2 Twoshort\n\n12) cheinzmann: Discover Y3 Cheinzmann G2 Grogg\n\n13) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n14) cheinzmann: Trade G1 R1 Cheinzmann\n\tTwoShort: Check.\n\n15) TwoShort: Build G1 Twoshort\n\tcheinzmann: Why can&#39;t I build a G2 ship in Grogg, and how do I attack if necessary?\n\tTwoShort: You can only build a ship of the same color as a ship you have in the system, (the star being green means you can grow there, but not that you can grow green).  To attack, you need access to red (a red ship or star) in a system containing a ship of mine, and a ship of yours as big as mine or bigger.  \r\n  Finally, you ought to undo that move.  With 4 of the same color in a system, I can call a catastrophe and since it&#39;s your homeworld, and that&#39;s all that&#39;s there, you&#39;ll lose.  I said &quot;Check&quot; to indicate that I would win on the next turn if you didn&#39;t stop me.  Even with just 3 greens, I could sacrifice my y2 to move my g2 twice into your Homeworld to trigger the catastrophe.\n\n16) cheinzmann: Build G2 Cheinzmann\n\tcheinzmann: thanks!\n\tcheinzmann: probably should have built a Y2\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\tTwoShort: Well, you probably shouldn&#39;t have moved your 3 pointer out of your Homeworld; typically, that never happens before you get another big piece.  If I get a piece in your Homeworld (like my g2), you need a piece the same size or bigger to attack it.  It&#39;s not threat this turn because I don&#39;t have a red of my own to sacrifice, so my g2 would just sit there.  In general, &quot;Always have a 3 pointer at home&quot; is one of the more bedrock maxims of Homeworlds strategy.\n\n18) cheinzmann: Move G1 Cheinzmann Grogg\n\tTwoShort: So again I could blow up your greens in exchange for my y2 &amp; g2.  But instead I&#39;m going demonstrate a key tactic, called &quot;the factory&quot;...\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Yolonda Grogg\nMove G2 Yolonda Grogg\nCatastrophe Grogg Green\n\tcheinzmann: So by doing a sacrifice of you G3, you get 3 actions points then you built 3 ships with that.\n\tcheinzmann: I will read up on catastrophe not sure how it works. Let me try a smaller factory\n\n20) cheinzmann: Trade G2 Y2 Cheinzmann\n\n21) TwoShort: Trade G3 Y3 Twoshort\n\tTwoShort: Catastrophe:  At the end of your turn, if any system has 4 or more pieces of the same color (including both players ships and the star(s)) you can trigger a catastrophe, which removes all pieces of the relevant color from that system.  If one of the pieces was the (only) star, any remaining ships are going to go away too.  Despite red being &quot;attack&quot;, causing catastrophes to blow up your opponents ships is frequently the dominant offensive mechanic of the game.\r\n  For example... :)\n\n22) cheinzmann: Build Y2 Cheinzmann\n\tcheinzmann: You forgot to say &quot;This will hurt me a lot more than it does you&quot;.\n\n23) TwoShort: Trade G3 R3 Twoshort\n\n24) cheinzmann: Build G1 Cheinzmann\n\n25) TwoShort: Sacrifice Y3 Twoshort\nDiscover Y1 Twoshort R3 Boom\nDiscover Y1 Boom R2 Boomboom\nMove Y1 Boomboom Cheinzmann\nCatastrophe Cheinzmann Yellow\n\n26) cheinzmann: Trade G1 Y1 Cheinzmann\n\n27) TwoShort: Build G1 Twoshort\n\tTwoShort: This will hurt you a lot more than it does me...\n\n28) cheinzmann: Build G2 Cheinzmann\n\tcheinzmann: holy crap\n\n29) TwoShort: Discover G1 Twoshort B3 Backup\n\n30) cheinzmann: Discover Y1 Cheinzmann Y2 Newone\n\n31) TwoShort: Build G2 Backup\n\n\nHomeworlds Online (SDG# 10231)\nStarted: 2008.1.9, Ended: 2008.1.18\nParticipants: peterh (S), icheyne (N)\nWinner: peterh\n\n1) icheyne: Homeworld B1 G2 Y3\n\ticheyne: This game is a weird one. Here goes...\n\n2) peterh: Homeworld G2 Y3 B3\n\n3) icheyne: Discover Y3 Icheyne G3 Oddball\n\tpeterh: Yes indeed - I&#39;ve always wanted to play this FTF, this is next best thing\n\ticheyne: Sorry for the delay, but I&#39;ve been away...\n\n\nHomeworlds Online (SDG# 10160)\nStarted: 2008.1.9, Ended: 2008.1.12\nParticipants: random56 (S), MikeYarrum (N)\nWinner: random56\n\n\nHomeworlds Online (SDG# 10017)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.1.9, Ended: 2008.1.12\nParticipants: scottobear (S), smilingra (N)\nWinner: smilingra\n\n1) smilingra: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 10241)\nStarted: 2008.1.10, Ended: 2008.1.22\nParticipants: airbender (S), random56 (N)\nWinner: random56\n\n1) random56: Homeworld G3 B2 R3\n\n2) airbender: Homeworld G3 B1 R3\n\n3) random56: Build R1 Random56\n\n4) airbender: Build R1 Airbender\n\n\n5) random56: Trade R1 Y1 Random56\n\n6) airbender: Build R1 Airbender\n\n7) random56: Discover R3 Random56 G1 Otown\n\n8) airbender: Trade R1 Y1 Airbender\n\n9) random56: Build Y1 Random56\n\n10) airbender: Build Y2 Airbender\n\n11) random56: Build Y2 Random56\n\n12) airbender: Trade Y2 R2 Airbender\n\n13) random56: Move Y1 Random56 Otown\n\n14) airbender: Build Y2 Airbender\n\n15) random56: Sacrifice Y2 Random56\nDiscover R3 Otown Y2 Monkey\nMove R3 Monkey Airbender\nCatastrophe Airbender R\n\n16) airbender: Trade Y2 R2 Airbender\n\n17) random56: Build Y2 Random56\n\n18) airbender: Build Y2 Airbender\n\trandom56: the jedi are going to feel that one ( and a many red were lost)\n\n19) random56: Trade Y2 R2 Random56\n\n20) airbender: Discover R2 Airbender Y2 Zombiezone\n\n21) random56: Build R1 Random56\n\n22) airbender: Move R2 Zombiezone Otown\n\n23) random56: Build Y2 Random56\n\n24) airbender: Attack Y1 Otown\n\n25) random56: Discover Y1 Random56 G1 O-ma-cron\n\n26) airbender: Trade Y2 R2 Airbender\n\n27) random56: Build Y2 O-ma-cron\n\n28) airbender: Build R1 Airbender\n\n29) random56: Trade Y2 G2 Random56\n\n30) airbender: Build R1 Otown\n\n31) random56: Sacrifice Y1 O-ma-cron\nMove R1 Random56 O-ma-cron\n\n32) airbender: Discover R1 Otown Y2 Fafsa\n\n33) random56: Build R3 O-ma-cron\n\n34) airbender: Build R3 Otown\n\n35) random56: Build R3 Random56\n\n\tairbender: this takes too long I kinda lost interest\n\trandom56: do you not want toplay anymore ?????\n\nHomeworlds Online (SDG# 10033)\nVariants: &quot;Hard time&quot;\nStarted: 2008.1.12, Ended: 2008.1.12\nParticipants: Jesse (S), coleman (N)\nWinner: Jesse\n\n\nHomeworlds Online (SDG# 10256)\nVariants: &quot;Hard time&quot;\nStarted: 2008.1.14, Ended: 2008.1.24\nParticipants: smilingra (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\tJesse: Hello.  Welcome to SDG, and have a good game.\n\n2) smilingra: Homeworld G1 B2 Y3\n\n3) Jesse: Build G1 Jesse\n\n4) smilingra: Build Y1 Smilingra\n\n5) Jesse: Build G1 Jesse\n\tsmilingra: Thanks for playing - this is my first game, so I&#39;m interested to see how it will turn out!\n\tJesse: Let me know if you have any questions.  I&#39;m happy to help.\n\n6) smilingra: Discover Y1 Smilingra G3 Alpha\n\n7) Jesse: Trade G3 Y3 Jesse\n\n8) smilingra: Trade Y3 G3 Smilingra\n\tJesse: This may be a little advanced, but notice how trading my large for a yellow, rather than one of my smalls, has done a couple of things.  It allows me to shortly start building medium sized ships, and makes it difficult for you to get into the green economy.  See if you can figure out why I was able to do this, and you were not in a position to do the same thing with yellow.\n\tsmilingra: trade y3 g3 smilingra\n\n9) Jesse: Discover G1 Jesse B2 Broog\n\tsmilingra: I understand how you can build medium sized ships, but I don&#39;t know how it makes it hard to get me into the green economy, as well as why I&#39;m not in the same position with yellow.\n\tJesse: If you now build a green ship in your homeworld, there will be 3 green pieces there.  One more, and it&#39;s an overpopulation.  I could sacrifice my Y3 to fly in a green piece and cause a catastrophe which costs you your defense and half your system.  If you didn&#39;t first get a ship of a different color there before this even happened, it would immediately cost you the game.  This is why trading your large ship for a green doesn&#39;t get you into the green economy easily.\n\tJesse: You would do better to build green ships away from your homeworld, due to having a green system marker.  If you had a medium yellow there, it would be reasonable to trade it for a green, then move it to another system so you won&#39;t be in danger of a catastrophe when you try to build more greens.  The problem here is that there are still 2 more small yellows to build before you can even get a medium yellow piece to trade for green, and meanwhile I&#39;ll be building medium green ships.  (You generally don&#39;t want to move your large ship away from your homeworld, if you can help it, because it leaves you undefended.  You might try it briefly, to make another green piece, but it&#39;s risky, and you&#39;ll definitely need another ship there, first.)  So, it&#39;s hard to get into green without trading your large, too.\n\tJesse: There&#39;s nothing wrong with a blue-green homeworld, by the way.  You just need to be aware that you don&#39;t want to keep green pieces there any more than you have to, just as I don&#39;t want to keep blue or red pieces in my homeworld.\n\tJesse: Where your homeworld choice is problematic is that your small system marker is the same color as my initial ship.  That means it only takes two builds for me to exhaust the small green pieces, and there&#39;s very little you can do about it.\n\tJesse: Is that instructive, or just overloading you?\n\tJesse: disc g1 b2 Broog\n\n10) smilingra: Build Y1 Alpha\n\tJesse: Arr.  Not only the wrong syntax, but the wrong place as well.  How embarrassing.  XD\n\n11) Jesse: Build G2 Broog\n\tsmilingra: Actually, it does make sense.  I totally forgot that you could move in a fourth piece of a given color and cause a catastrophe.  I doubt that I&#39;m going to win this game, but I&#39;ll chalk it up to a valuable learning experience. :)\n\tJesse: You should be prepared to have continuing valuable learning experiences for a long time to come.  I know I still do.\n\n12) smilingra: Move Y1 Alpha Smilingra\n\n13) Jesse: Trade G2 Y2 Broog\n\tsmilingra: Thanks for the pointers - keep &#39;em coming!\n\n14) smilingra: Discover G3 Smilingra R3 Gamma\n\tJesse: This move diversifies my holdings at Broog, and gives me greater mobility.  Y2s are nice, because they extend your reach with a piece that you can sacrifice a lot more easily than a large, especially early on.  This also leaves the last Y1 still in the pool, so if you build it, I can grab another Y2 directly.  (And if you grabbed the other, a large would be available for me.)\n\tJesse: If you would like a sporting chance, I&#39;ll give you the opportunity to build a G2 in your home system.  Instead of immediately smashing you, I&#39;ll make a build of my own to give you the opportunity to fix your green concentration.\n\n15) Jesse: Build G2 Broog\n\tsmilingra: Thanks for the offer, but I&#39;m going to still make the move I wanted to, just to see how it will pan out.  I&#39;m just stubborn that way. :)\n\tsmilingra: Still, if you&#39;d like to prolong my demise, you could point out how you could blow me away. :)\n\tJesse: If you&#39;d rather play it out straight up, that is absolutely fine by me.  I was referring to blowing you away if you just built a green in your home system.  I cannot immediately blow you away, in the current position.\n\n16) smilingra: Build Y1 Smilingra\n\tJesse: Although, now that I have a second green ship one step from Gamma, if you build another green there I can blow your green ships away at the cost of everything at Broog.  Leaving you without a large ship would be quite advantageous, even if it doesn&#39;t take out half your home system.\n\tJesse: It&#39;s worth noting additionally that it is quite dangerous to leave your home system without the defense of a large ship.  Consider what happens when I now sacrifice my Y2 to move my G2 into your system.\n\n17) Jesse: Build Y2 Jesse\n\tsmilingra: I&#39;m now beginning to understand how using up the supply of small ships is critical.  At this point, I can see that I&#39;m in big trouble.\n\tsmilingra: Although, my system is not connected to Broog, so your g2 can&#39;t get to my system, correct?\n\tJesse: Broog is two steps from your home system, so I would have to sacrifice the Y2.\n\n18) smilingra: Build Y2 Alpha\n\n19) Jesse: Build Y3 Broog\n\tsmilingra: Ah, it had not occurred to me that you could move one ships twice.  I think I&#39;m learning something on every move! :)\n\tJesse: Yup, you get N completely independent actions to use when you sacrifice.  Also note that the sacrificed ship goes back into the pool before you do any of the actions.\n\n20) smilingra: Move Y1 Smilingra Gamma\n\tJesse: Notice that with two yellow ships in each of your systems with yellows, building the remaining Y3 will put you close to an overconcentration.\n\n21) Jesse: Trade G2 R2 Broog\n\tsmilingra: Yes, I&#39;m painfully aware of that. :)\n\tJesse: Just making sure.  Now, what&#39;s the next lesson?  Hmm...\n\tJesse: The Banker is tempting, taking that Y3 out of circulation by sending my g2 to a Y3 system.  That would work towards increasing my material advantage.  But I think, actually, a sharper threat is in order.  Something to drive home the importance of keeping your home system protected.\n\n22) smilingra: Build Y3 Smilingra\n\tJesse: Hmm, I should have traded the Y2, instead, to keep the Y3 in the stash one more step away.  In any case, there are two important proverbs that apply here: Never leave your homeworld undefended; and, When your opponent picks up a gun, you must pick up a gun.  You can take care of either one with one turn, but not both.  After my next turn, you will likely find yourself with my Y3 in your home system, ready to capture two ships with the sacrifice of the R2.  What you would like very much to have is a large ship and a red of your own there, to capture it first.  But since you can only get one of those things, you&#39;re a move behind.\n\n23) Jesse: Sacrifice Y2 Jesse\nMove Y3 Broog Alpha\nMove Y3 Alpha Smilingra\n\n24) smilingra: Trade Y3 R3 Smilingra\n\tsmilingra: Yes, you&#39;ve made it *painfully* obvious that I need to defend my homeworld.  I know that I need to have a large ship in my homeworld area; otherwise, you can take me over.  At least I recognized (thanks to your comment) that I can build a y3 there, thus allowing me to have two large ships.  I at least get to hang on for a couple more turns this way. :)\n\n25) Jesse: Sacrifice R2 Broog\nAttack R3 Smilingra\nAttack Y1 Smilingra\n\n\tJesse: So, now you see where being a move late in picking up a gun can kill you.  Not a bad first game, especially given that you stumbled into that problem early on with the greens, which I would not expect a new player to see coming anyway.  If you want another game, you&#39;re welcome to it.\n\tJesse: By the way, I think the move you could have made to last the longest would have been: Sacrifice your Y2.  Move your G3 and a Y1 into your home system.  Trigger a yellow catastrophe, wiping out my attacking Y3.  That leaves you with just a G3 and a Y1, and the same trouble developing that you had before, but it would take me a few turns to get into a position in which I could attack again.\n\tsmilingra: Thanks for all the pointers!  I&#39;m going to accept a new challenge.  I was wondering about how to prolong the game - I hadn&#39;t thought about the catastrophe!\n\nHomeworlds Online (SDG# 10294)\nVariants: &quot;Unrated&quot;\nStarted: 2008.1.20, Ended: 2008.1.20\nParticipants: axeman (S), pete_asman (N)\nWinner: pete_asman\n\n1) pete_asman: Homeworld B2 G1 Y3\n\n2) axeman: Homeworld G2 B1 Y3\n\n3) pete_asman: Build Y1 Pete_asman\n\n4) axeman: Build Y1 Axeman\n\n5) pete_asman: Trade Y3 R3 Pete_asman\n\n6) axeman: Discover Y1 Axeman G3 Ds9\n\n7) pete_asman: Move R3 Pete_asman Ds9\n\n8) axeman: Trade Y3 R3 Axeman\n\n9) pete_asman: Attack Y1 Ds9\n\n10) axeman: Build R1 Axeman\n\n11) pete_asman: Build R1 Ds9\n\n12) axeman: Build R1 Axeman\n\n13) pete_asman: Move R3 Ds9 Axeman\nCatastrophe Axeman R\n\n\nHomeworlds Online (SDG# 10295)\nVariants: &quot;Unrated&quot;\nStarted: 2008.1.20, Ended: 2008.2.17\nParticipants: pete_asman (S), axeman (N)\nWinner: axeman\n\n1) axeman: Homeworld G1 B2 R3\n\n2) pete_asman: Homeworld G1 B2 Y3\n\n3) axeman: Build R1 Axeman\n\n4) pete_asman: Build Y1 Pete_asman\n\n5) axeman: Trade R1 Y1 Axeman\n\n6) pete_asman: Trade Y3 R3 Pete_asman\n\n7) axeman: Build Y1 Axeman\n\n8) pete_asman: Build Y2 Pete_asman\n\n9) axeman: Build Y2 Axeman\n\n10) pete_asman: Discover Y1 Pete_asman G3 Sol\n\n11) axeman: Trade Y2 R2 Axeman\n\n12) pete_asman: Build Y2 Pete_asman\n\n13) axeman: Trade Y1 B1 Axeman\n\n14) pete_asman: Build R1 Pete_asman\n\n15) axeman: Build B1 Axeman\n\n16) pete_asman: Move R3 Pete_asman Sol\n\n17) axeman: Trade B1 Y1 Axeman\n\n18) pete_asman: Build R1 Sol\n\n19) axeman: Build Y2 Axeman\n\n20) pete_asman: Sacrifice Y2 Pete_asman\nMove R1 Sol Axeman\nMove R3 Sol Axeman\nCatastrophe Axeman R\n\n21) axeman: Trade Y2 R2 Axeman\n\n22) pete_asman: Build Y2 Pete_asman\n\n23) axeman: Move R2 Axeman Sol\n\n24) pete_asman: Move Y1 Sol Pete_asman\n\n25) axeman: Move Y1 Axeman Sol\n\n26) pete_asman: Trade Y2 R2 Pete_asman\n\n27) axeman: Build Y2 Sol\n\n28) pete_asman: Discover R2 Pete_asman Y3 Alphac\n\n29) axeman: Move R2 Sol Axeman\n\n30) pete_asman: Trade Y1 B1 Pete_asman\n\n31) axeman: Move Y2 Sol Axeman\n\n32) pete_asman: Build R1 Pete_asman\n\n33) axeman: Trade Y2 R2 Axeman\n\n34) pete_asman: Build B1 Pete_asman\n\n35) axeman: Build Y1 Sol\n\n36) pete_asman: Build Y2 Pete_asman\n\n37) axeman: Build Y2 Axeman\n\n38) pete_asman: Move Y2 Pete_asman Alphac\n\n39) axeman: Sacrifice Y2 Axeman\nMove B1 Axeman Sol\nMove B1 Sol Pete_asman\nCatastrophe Pete_asman Blue\n\n40) pete_asman: Discover Y2 Alphac B2 Betazed\n\n41) axeman: Move R2 Axeman Sol\n\n42) pete_asman: Build Y2 Pete_asman\n\n43) axeman: Move R2 Sol Pete_asman\n\n44) pete_asman: Attack R2 Pete_asman\n\n45) axeman: Build Y3 Axeman\n\n46) pete_asman: Sacrifice Y2 Pete_asman\nMove R1 Pete_asman Alphac\nMove R1 Pete_asman Betazed\n\n47) axeman: Trade Y3 R3 Axeman\n\n48) pete_asman: Sacrifice Y2 Betazed\nMove R1 Alphac Axeman\nMove R2 Alphac Axeman\nCatastrophe Axeman R\n\n49) axeman: Build Y2 Axeman\n\n50) pete_asman: Build R1 Pete_asman\n\n51) axeman: Trade Y2 R2 Axeman\n\n52) pete_asman: Build Y2 Pete_asman\n\n53) axeman: Build Y2 Axeman\n\n54) pete_asman: Move Y2 Pete_asman Betazed\n\n55) axeman: Build R1 Axeman\n\n56) pete_asman: Move R2 Pete_asman Sol\n\n57) axeman: Build Y3 Sol\n\n58) pete_asman: Move Y2 Betazed Sol\nCatastrophe Sol Y\n\n59) axeman: Discover Y1 Axeman B3 Backwater\n\n60) pete_asman: Build Y1 Pete_asman\n\n61) axeman: Move R2 Axeman Backwater\n\n62) pete_asman: Trade R1 B1 Betazed\n\n63) axeman: Move R2 Backwater Betazed\n\n64) pete_asman: Sacrifice Y1 Pete_asman\nMove B1 Betazed Pete_asman\n\n65) axeman: Build Y1 Axeman\n\n66) pete_asman: Build Y1 Pete_asman\n\n67) axeman: Sacrifice Y1 Axeman\nMove R2 Betazed Backwater\n\n68) pete_asman: Build R1 Pete_asman\n\n69) axeman: Build Y1 Axeman\n\n70) pete_asman: Move Y1 Pete_asman Sol\n\n71) axeman: Trade Y1 G1 Axeman\n\n72) pete_asman: Build B1 Pete_asman\n\n73) axeman: Move G1 Axeman Backwater\n\n74) pete_asman: Move B1 Pete_asman Sol\n\n75) axeman: Build G2 Backwater\n\n76) pete_asman: Build R2 Sol\n\n77) axeman: Build G2 Backwater\n\n78) pete_asman: Discover R2 Sol Y2 Sigma957\n\n79) axeman: Move G1 Backwater Pete_asman\n\n80) pete_asman: Build R3 Sol\n\n81) axeman: Sacrifice Y2 Axeman\nMove G2 Backwater Pete_asman\nMove G2 Backwater Pete_asman\nCatastrophe Pete_asman Green\n\n\nHomeworlds Online (SDG# 10292)\nStarted: 2008.1.21, Ended: 2008.1.30\nParticipants: ts52 (S), wmreed (N)\nWinner: ts52\n\n1) wmreed: Homeworld G2 B1 R3\n\n2) ts52: Homeworld B2 Y3 G3\n\twmreed: Hello!\r\n\r\n\n\tts52: Hi! Have a good game!\n\n3) wmreed: Build R1 Wmreed\n\n4) ts52: Build G1 Ts52\n\twmreed: Thanks!  You, too.  Are you a fan of LooneyLabs games?\n\n5) wmreed: Build R1 Wmreed\n\tts52: I am. I used to go to Origins every year and demo for them. But life&#39;s gotten in the way the past couple years.\n\twmreed: Cool. I go to Origins every year myself. I spend a lot of time in the Big Experiment room. \n\n6) ts52: Trade G1 R1 Ts52\n\n7) wmreed: Trade R1 Y1 Wmreed\n\n8) ts52: Build G1 Ts52\n\n9) wmreed: Build Y1 Wmreed\n\n10) ts52: Build G1 Ts52\n\n11) wmreed: Discover Y1 Wmreed G3 Ballard\n\tts52: Cool, if you were there in 2005-2002 we&#39;ve probably met!\n\twmreed: I was thinking the same thing. Are you planning on attending this summer?\n\n12) ts52: Discover G1 Ts52 B1 Grover\n\n13) wmreed: B Y1 Wmreed\n\n14) ts52: Build G1 Grover\n\n15) wmreed: Build Y2 Wmreed\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Ts52\nBuild G3 Ts52\n\n17) wmreed: Trade R3 G3 Wmreed\n\n\twmreed: THAT was a beautiful play.\n\n18) ts52: Trade G2 Y2 Grover\n\n19) wmreed: Trade Y1 B1 Wmreed\n\tts52: Thanks. I&#39;ve been on the other end of it too many times...\n\n20) ts52: Build G2 Grover\n\n21) wmreed: B B2 Wmreed\n\n22) ts52: Trade G2 B2 Grover\n\n23) wmreed: Build G2 Wmreed\n\n24) ts52: Sacrifice Y2 Grover\nMove B2 Grover Ballard\nMove B2 Ballard Wmreed\nCatastrophe Wmreed Blue\n\n25) wmreed: S G3 Wmreed\nBuild R1 Wmreed\nBuild Y1 Ballard\nBuild G3 Wmreed\n\twmreed: I knew I shouldn&#39;t be playing when I&#39;m sick. How did I miss that when I was specifically watching for the double jump catastrophe?!  Nice play. \n\n26) ts52: Trade G2 Y2 Ts52\n\n27) wmreed: Discover Y1 Wmreed B3 Frances\n\tts52: Thanks, I was a bit surprised you left it there.\r\nSorry to hear your sick, colds suck.\n\n28) ts52: Sacrifice Y2 Ts52\nMove G1 Grover Wmreed\nMove G1 Grover Wmreed\nCatastrophe Wmreed Green\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 10237)\nVariants: &quot;Hard time&quot;\nStarted: 2008.1.28, Ended: 2008.2.29\nParticipants: alexcobo (S), smilingra (W), Uglyfoot (N), spearjr (E)\nWinner: smilingra\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\tspearjr: Hope you all don&#39;t mind, this will be my first game of Homeworlds here at SDG. I&#39;ve played 3 times in person so I&#39;m not at a total loss, but I may have some trouble with the interface.\n\tsmilingra: No worries - I&#39;ve only played one game ever.  I&#39;m excited to see how this work with 4 players.  Good luck everyone, and thanks for accepting my invite!\n\n2) spearjr: Homeworld Y2 B1 G3\n\n3) alexcobo: Homeworld G3 B2 Y3\n\n4) smilingra: Homeworld Y1 B2 G3\n\talexcobo: This is my firts Homeworld game ever! :-)\r\nGood luck!\n\n5) Uglyfoot: Build G1 Uglyfoot\n\tsmilingra: Glad to see that everyone has taken their turn in a timely manner.  I was a bit worried that since I sent out the challenge a couple of weeks ago, that someone might not actually play!\n\n6) spearjr: Build G1 Spearjr\n\tUglyfoot: Looks like we&#39;re all here!  Have fun everyone.\n\n7) alexcobo: Build Y1 Alexcobo\n\n8) smilingra: Build G1 Smilingra\n\n9) Uglyfoot: Discover G1 Uglyfoot B1 Xchg\n\n10) spearjr: Discover G1 Spearjr Y3 Endor\n\n11) alexcobo: Discover Y1 Alexcobo G1 Ariel\n\tspearjr: With online play, do we have that whole good/evil thing going on, or just kill everyone else?\n\n12) smilingra: Discover G1 Smilingra B3 Beta\n\n13) Uglyfoot: Build G1 Uglyfoot\n\tsmilingra: We kill everyone else.  This is last man standing, so you have to kill *everyone* else.\n\n14) spearjr: Build G2 Endor\n\n15) alexcobo: Build Y1 Alexcobo\n\n16) smilingra: Build G2 Beta\n\n17) Uglyfoot: Trade G1 Y1 Xchg\n\n18) spearjr: Build G1 Spearjr\n\n19) alexcobo: Build Y1 Ariel\n\n20) smilingra: Trade G2 Y2 Beta\n\n21) Uglyfoot: Move G1 Uglyfoot Xchg\n\n22) spearjr: Trade G1 B1 Spearjr\n\n23) alexcobo: Trade Y1 B1 Alexcobo\n\n24) smilingra: Build Y1 Beta\n\n25) Uglyfoot: Build Y2 Xchg\n\n26) spearjr: Move B1 Spearjr Endor\n\n27) alexcobo: Discover Y1 Ariel G3 Breta\n\n28) smilingra: Discover Y2 Beta G2 Gamma\n\n29) Uglyfoot: Build G1 Uglyfoot\n\n30) spearjr: Trade G2 Y2 Endor\n\n31) alexcobo: Trade B1 R1 Alexcobo\n\n32) smilingra: Build Y3 Beta\n\n33) Uglyfoot: Trade Y1 R1 Xchg\n\n34) spearjr: Build G2 Spearjr\n\n35) alexcobo: Build Y1 Ariel\n\n36) smilingra: Build Y3 Gamma\n\n37) Uglyfoot: Build Y3 Xchg\n\n38) spearjr: Build G2 Endor\n\n39) alexcobo: Move Y1 Ariel Beta\n\n40) smilingra: Trade Y3 R3 Beta\n\n41) Uglyfoot: Discover Y3 Xchg R3 Heat\n\n42) spearjr: Sacrifice Y2 Endor\nMove G1 Endor Smilingra\nMove G2 Endor Smilingra\n\n43) alexcobo: Build Y2 Ariel\n\n44) smilingra: Trade G3 R3 Smilingra\n\n45) Uglyfoot: Build Y3 Xchg\n\n46) spearjr: Build G2 Smilingra\n\tsmilingra: spearjr, what did I ever do to you? :)\n\n47) alexcobo: Build R1 Alexcobo\n\tspearjr: smilinigra -&gt; Nothing, just saw an opportunity.\n\n48) smilingra: Sacrifice R3 Beta\nAttack G2E Smilingra\nAttack G1E Smilingra\nAttack G2E Smilingra\n\n49) Uglyfoot: Sacrifice Y2 Xchg\nMove G1 Xchg Beta\nMove G1 Beta Smilingra\nCatastrophe Smilingra G\n\n50) spearjr: Trade G2 Y2 Spearjr\n\n51) alexcobo: Move R1 Alexcobo Ariel\n\n52) smilingra: Build G1 Beta\n\n53) Uglyfoot: Move G1 Uglyfoot Xchg\n\n54) spearjr: Discover B1 Endor G1 Home\n\n55) alexcobo: Build Y3 Breta\n\n56) smilingra: Discover G1 Beta B2 Zeta\n\n57) Uglyfoot: Build G2 Uglyfoot\n\n58) spearjr: Build G2 Spearjr\n\n59) alexcobo: Sacrifice R1 Ariel\nAttack Y1W Beta\n\n60) smilingra: Build G2 Beta\n\n61) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Xchg\nBuild G3 Uglyfoot\nBuild R1 Xchg\n\talexcobo: Nothing personal...\n\n62) spearjr: Build G3 Spearjr\n\n63) alexcobo: Sacrifice Y2 Ariel\nMove Y1 Beta Spearjr\nMove Y1 Breta Spearjr\nCatastrophe Spearjr Y\n\tsmilingra: I know, but why does everyone have to come after *me*? :)\n\n64) smilingra: Trade G2 R2 Beta\n\n65) Uglyfoot: Sacrifice Y3 Xchg\nMove G2 Xchg Heat\nMove R1 Xchg Heat\nMove R1 Xchg Zeta\n\n66) spearjr: Trade G3 Y3 Spearjr\n\talexcobo: My palms are sweaty as I do this!\n\n67) alexcobo: Build Y1 Ariel\n\tspearjr: Boo\n\n68) smilingra: Sacrifice R2 Beta\nAttack Y1S Beta\nAttack R1N Zeta\n\n69) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Heat\nBuild G3 Xchg\nBuild G3 Uglyfoot\n\n70) spearjr: Build Y1 Spearjr\n\tsmilingra: double boo - I thought I could pass on it, since Uglyfoot would take care of it.\n\n71) alexcobo: Build Y2 Breta\n\tUglyfoot: My only defense is that I didn&#39;t want all those green ships in the supply just yet.  If I cripple myself will my opponents give me time to recover?  Nope, it is a competitive crowd.\n\n72) smilingra: Build Y2 Beta\n\n73) Uglyfoot: Build Y2 Heat\n\n74) spearjr: Discover G2 Spearjr B3 Tichu\n\n75) alexcobo: Move Y1 Ariel Beta\n\n76) smilingra: Trade Y1 R1 Beta\n\n77) spearjr: Sacrifice Y3 Spearjr\nMove G2 Tichu Home\nMove G2 Home Alexcobo\nDiscover B1 Home Y2 Fort\nCatastrophe Alexcobo Green\n\n78) alexcobo: Move R1 Alexcobo Ariel\n\n79) smilingra: Sacrifice Y3 Gamma\nMove R1 Zeta Heat\nMove R1 Beta Gamma\nMove R1 Gamma Heat\nCatastrophe Heat R\n\n80) Uglyfoot: Trade G2 R2 Uglyfoot\n\tUglyfoot: Hmm...  The xchg system should have disappeared when I moved my last ship out of the system.  It is a minor annoyance to this game but the &lt;b1&gt; should be back in supply.\n\tAaron: *sighs* I guess I really did blow something up with my change yesterday.  I&#39;ll take a look asap.\n\tAaron: Let me know if anything else odd happens.  Cheers!\n\n81) spearjr: Build G1 Spearjr\n\n82) alexcobo: Build R1 Ariel\n\talexcobo: Hmm. Lousy situation. Do I intercep the fleet at Heat or do I deal with the fleat at Homeworld?\r\nAlas! Homeworld security first!\n\n83) smilingra: Build G1 Zeta\n\n84) Uglyfoot: Move R2 Uglyfoot Ariel\n\tsmilingra: Please don&#39;t force Uglyfoot to surrender, as something went wrong and it now appears that he is out of time (when he in fact, is not).  This is due to a bug in the system, it appears.\n\tAaron: Corrected.\n\tsmilingra: Thanks, Aaron.  Also, alexcobo, I&#39;m sure you&#39;ll appreciate my move.  Uglyfoot probably does not. :p\n\talexcobo: Beautiful move! Your earned my gratitud for the rest of the game!\n\tUglyfoot: Wow.  I had too many eggs in one basket.  And yes, smilingra, that was a good move.\n\n85) spearjr: Build G2 Spearjr\n\talexcobo: I will be out for a few days, starting Saturday, due to a surgery I need to have done. I once saw an automated message for a player that went out for a few days. Do you know how to set up a message like that?\n\tsmilingra: Click on My SDG.  When that page loads, scroll down to User Information for alexcobo (it&#39;s the first line in red).  Below that, in small text, there are three links in parenthesis.  The middle one is Manage Aways.  Click on that and follow the instructions on the next page.  Hope that the surgery goes well and you&#39;ll be back playing soon!\r\n\r\nThanks for the compliments on my move.  I just hope that you won&#39;t return the favor. :)\n\n86) alexcobo: Move Y3 Breta Ariel\n\n87) smilingra: Build G2 Beta\n\n88) Uglyfoot: Build R1 Ariel\nCatastrophe Ariel R\n\n89) spearjr: Sacrifice G3 Spearjr\nBuild Y1 Spearjr\nBuild Y3 Spearjr\nBuild B1 Fort\n\n90) alexcobo: Build Y3 Breta\n\n91) smilingra: Build Y3 Gamma\n\n92) Uglyfoot: Build G2 Uglyfoot\n\n93) spearjr: Sacrifice Y3 Spearjr\nMove G2 Spearjr Uglyfoot\nMove G1 Spearjr Uglyfoot\nMove B1 Fort Ariel\nCatastrophe Uglyfoot G\n\tUglyfoot: Not really what I wanted to do but it&#39;ll have to do.\n\n94) alexcobo: Sacrifice Y2 Breta\nMove Y1 Beta Spearjr\nMove Y3 Breta Spearjr\nCatastrophe Spearjr Y\n\n95) smilingra: Move Y2 Beta Alexcobo\n\n96) alexcobo: Trade Y3 R3 Alexcobo\n\n97) smilingra: Move Y2 Alexcobo Beta\n\n98) alexcobo: Move Y1 Ariel Alexcobo\n\n99) smilingra: Discover G1 Beta B1 Zzz\n\n100) alexcobo: Trade Y1 R1 Alexcobo\n\talexcobo: Fortunately for me the surgery was not necesary.\r\nI am not sure how this works but, after East eliminated North. Wasn&#39;t my turn?\n\n101) smilingra: Build G1 Zzz\n\tsmilingra: I froze the game, because it does look like we skipped Alex&#39;s (South) turn.\n\tAaron: So who&#39;s turn should it be?  That I can fix right away.  Please leave the admin page active so I don&#39;t lose track of the game, but I won&#39;t be able to fix the underlying problem for a little bit.\n\tsmilingra: Well, we need to undo the last three turns, and then set it to South.  Aaron, can you do that, or do you need each one of us to undo our last turn?\n\tsmilingra: Well, we need to undo the last three turns, and then set it to South.  Aaron, can you do that, or do you need each one of us to undo our last turn?\n\tsmilingra: Oops!  Needed to leave the admin page button active!\n\tAaron: Let me know if that didn&#39;t work.\n\n102) alexcobo: Move Y3 Ariel Fort\n\talexcobo: I eliminated East player (spearjr). Now it should be West player&#39;s turn (smilingra)\n\talexcobo: And b1 ship at ariel and the system fort should be gone also\n\tAaron: Sorry, I haven&#39;t been able to track down the fundamental problem.  I&#39;ll get this specific instance fixed and take a look at the code just as soon as I can.\n\tAaron: Sorry, why should the b1 ship in Ariel not be there?\n\tspearjr: The ships should be gone because it belonged to the East seat. Which has been eliminated.\n\tAaron: My reading of the rules does not say this.  Any remaining ships are left stranded and unable to complete any actions as their government has collapsed.  They are still open to attack.\r\n\r\nFixing the &quot;Current Player&quot; flag now...\n\tAaron: Done.\n\n103) smilingra: Trade G1 R1 Zzz\n\n104) alexcobo: Sacrifice R1 Alexcobo\nAttack B1E Fort\n\n105) smilingra: Build R1 Zzz\n\n106) alexcobo: Discover B1 Fort G3 Cow\n\n107) smilingra: Sacrifice Y2 Gamma\nMove R1 Zzz Alexcobo\nMove R1 Zzz Alexcobo\n\n108) alexcobo: Trade R3 B3 Alexcobo\n\n109) smilingra: Sacrifice Y3 Gamma\nMove R3 Smilingra Beta\nMove R3 Beta Alexcobo\nMove Y2 Beta Smilingra\n\n110) alexcobo: Trade B1 R1 Cow\n\n111) smilingra: Attack B3S Alexcobo\n\n\tsmilingra: Good game, all!\n\talexcobo: Good game! I did not know this game could have such twistes!\n\tUglyfoot: Congrats, smilingra.  Good game everyone!\n\tspearjr: Congrats. Good game all.\n\tAaron: I&#39;m clearing the page because I don&#39;t see any chat regarding a problem.  If there is something that needs my attention, please don&#39;t hesitate to page me again.  Cheers!\n\nHomeworlds Online (SDG# 10331)\nVariants: &quot;Hard time&quot;\nStarted: 2008.1.28, Ended: 2008.2.25\nParticipants: smilingra (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tsmilingra: I&#39;m a glutton for punishment!  Looking forward to learning a bunch more...\n\tJesse: Very well.\n\n2) smilingra: Homeworld B1 Y2 G3\n\tJesse: So, what kind of small system marker are you not going to choose? XD\n\n3) Jesse: Build G1 Jesse\n\tsmilingra: Yeah, no green planets to make it hard to get into the green economy. :)\n\tJesse: A medium or large green would be okay.  Of course, choosing the same color ship as your opponent makes it easier to maintain a color balance in the early game.\n\n4) smilingra: Build G1 Smilingra\n\n5) Jesse: Trade G1 Y1 Jesse\n\tsmilingra: I&#39;ll stop copying you at some time - I promise :)\n\n6) smilingra: Discover G1 Smilingra B3 Alpha\n\n7) Jesse: Build G1 Jesse\n\n8) smilingra: Build G1 Alpha\n\n9) Jesse: Build G2 Jesse\n\n10) smilingra: Trade G1 Y1 Alpha\n\n11) Jesse: Discover G2 Jesse Y2 Transience\n\tJesse: Ordinarily, I wouldn&#39;t want to build three greens in my home system, but in the early game it&#39;s often possible to get away with things like this temporarily.  You have no means of moving a ship here, so I&#39;m not concerned about being near to catastrophe.\n\n12) smilingra: Build G1 Alpha\n\n13) Jesse: Build G2 Transience\n\tsmilingra: Understood.  I still built a y1 just in case you weren&#39;t going to do anything about it. :)\n\n14) smilingra: Build G2 Smilingra\n\n15) Jesse: Discover G2 Transience B3 Directionality\n\tJesse: So, you leave the G3 for me...\n\n16) smilingra: Discover G2 Smilingra G3 Beta\n\tJesse: Rather than taking it directly (at Jesse, where you can&#39;t reach), I&#39;m going to spread out first, since you&#39;re too concentrated to build another green safely.  Moving a green up close to your home system increases the pressure on you to diversify there, and prevents you from simply building the G3 yourself.\n\tJesse: There is another way to deny me the G3, which I will leave for you to discover.\n\n17) Jesse: Trade G1 R1 Jesse\n\tsmilingra: How was that?\n\tJesse: That&#39;s the way.\n\n18) smilingra: Trade G1 R1 Alpha\n\tJesse: Time to pick up a gun, I think.\n\n19) Jesse: Move R1 Jesse Transience\n\n20) smilingra: Move R1 Alpha Smilingra\n\n21) Jesse: Build G1 Directionality\n\n22) smilingra: Build R2 Smilingra\n\n23) Jesse: Build R2 Transience\n\n24) smilingra: Move R2 Smilingra Alpha\n\n25) Jesse: Move R2 Transience Directionality\n\tsmilingra: I&#39;m not sure how all of this is going to play out... you&#39;ll have to give me pointers when it&#39;s all over (as I&#39;m sure that doing so now would spoil it).\n\tJesse: Well, you&#39;re developing just fine.  One fault I can point out is that you&#39;ve wasted one of your last three turns, by moving the R1 home before building the R2.  If you&#39;d built first, you wouldn&#39;t have used an extra turn moving the R2 back.  You can&#39;t avoid inefficient play like that all the time.  (Sometimes it&#39;s forced.)  But you obviously want to avoid wasting turns if you can help it.\n\n26) smilingra: Build G1 Smilingra\n\n27) Jesse: Trade G2 Y2 Directionality\n\n28) smilingra: Build G2 Alpha\n\n29) Jesse: Sacrifice G3 Jesse\nBuild Y1 Directionality\nBuild Y3 Jesse\nBuild Y3 Jesse\n\n30) smilingra: Sacrifice G3 Smilingra\nBuild G3 Smilingra\nBuild Y3 Alpha\nBuild G3 Beta\n\n31) Jesse: Sacrifice Y2 Directionality\nMove G2 Transience Beta\nDiscover Y1 Jesse B2 Discernment\nCatastrophe Beta G\n\n32) smilingra: Discover G2 Alpha B2 Gamma\n\tJesse: Clever.  Hmm...\n\n33) Jesse: Trade Y3 G3 Jesse\n\n34) smilingra: Build G2 Gamma\n\n35) Jesse: Build G2 Jesse\n\n36) smilingra: Build G3 Alpha\n\tJesse: I&#39;ve got myself into a somewhat difficult situation, here.  I must be more careful.\n\n37) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Discernment\nBuild Y3 Directionality\n\n38) smilingra: Sacrifice G3 Alpha\nBuild G3 Alpha\nBuild R2 Smilingra\nBuild R3 Alpha\n\tsmilingra: At least I&#39;m not quite experienced enough to take advantage of it. :)\n\n39) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Directionality\nBuild R3 Transience\n\tJesse: If I&#39;m going to lose the advantage in green, at least I can grab a yellow advantage in return.\n\n40) smilingra: Move R3 Alpha Discernment\n\n41) Jesse: Sacrifice Y2 Discernment\nDiscover Y1 Discernment B1 Vastness\nMove R3 Directionality Gamma\n\n42) smilingra: Sacrifice Y3 Alpha\nMove G2 Gamma Jesse\nMove G2 Gamma Jesse\nMove G1 Alpha Discernment\nCatastrophe Jesse G\n\n43) Jesse: Build G2 Directionality\n\n44) smilingra: Build G2 Alpha\n\n45) Jesse: Sacrifice G2 Directionality\nBuild Y2 Jesse\nBuild Y3 Vastness\n\n46) smilingra: Discover R2 Smilingra G3 Zeta\n\n47) Jesse: Build G2 Directionality\n\n48) smilingra: Move R2 Alpha Transience\n\n49) Jesse: Move R3 Transience Zeta\n\tJesse: It&#39;s painful to be frozen, or nearly frozen, out of any color.  But of all colors, it is perhaps most painful to be short on yellow, as I&#39;m sure you&#39;re seeing now.\n\n50) smilingra: Attack R1 Transience\n\n51) Jesse: Sacrifice Y3 Vastness\nMove G1 Directionality Smilingra\nMove G2 Directionality Smilingra\nMove Y3 Directionality Smilingra\nCatastrophe Smilingra G\n\tJesse: Oh, hmm.  That wasn&#39;t necessary.  Oh well.\n\n52) smilingra: Move G3 Alpha Smilingra\n\n53) Jesse: Sacrifice R3 Gamma\nAttack R2 Zeta\nAttack R1 Smilingra\nAttack G3 Smilingra\n\tJesse: I&#39;m really not sure why I was focused on getting that r3 into position, rather than using a y3.\n\n\tsmilingra: not that it makes much difference...\n\tJesse: I&#39;m sure there&#39;s a lesson in there somewhere, but I&#39;m not sure how to formulate it beyond, &quot;Watch what&#39;s on your doorstep.&quot;  Good game.  You seem to be picking it up quickly.  I&#39;ll have to remember to be careful when I play against you.\n\tsmilingra: Thanks for the words of encouragement.  I&#39;m holding my own in a four-player game - we&#39;ve already eliminated one of them.  I think that the main lesson to hold is that you need to keep diversified.  When I got frozen out of yellow, I was in big trouble.  It&#39;s been fun, and I look forward to another match soon.\n\tsmilingra: Thanks for the words of encouragement.  I&#39;m holding my own in a four-player game - we&#39;ve already eliminated one of them.  I think that the main lesson to hold is that you need to keep diversified.  When I got frozen out of yellow, I was in big trouble.  It&#39;s been fun, and I look forward to another match soon.\n\nHomeworlds Online (SDG# 10304)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.4, Ended: 2008.2.7\nParticipants: jeep (S), matteo (N)\nWinner: jeep\n\n\nHomeworlds Online (SDG# 10238)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.2.4, Ended: 2008.2.7\nParticipants: scottobear (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B3 Y1 G3\n\n\tsordros: Hi!\n\nHomeworlds Online (SDG# 10397)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.2.5, Ended: 2008.2.8\nParticipants: scottobear (S), divreon (N)\nWinner: divreon\n\n1) divreon: Homeworld Y3 G2 B3\n\n\tdivreon: I&#39;m new at homeworlds on Superduper. If I make a mistake in the order process, please tell me.\n\nHomeworlds Online (SDG# 10235)\nStarted: 2008.2.5, Ended: 2008.2.8\nParticipants: divreon (S), MikeYarrum (N)\nWinner: divreon\n\n\tdivreon: I&#39;m new at homeworlds on Superduper. If I make a mistake in the order process, please tell me.\n\nHomeworlds Online (SDG# 10490)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.13, Ended: 2008.3.25\nParticipants: nycavri (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R3 B2 G3\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) nycavri: Build G1 Nycavri\n\tmneme: Have fun!\n\tnycavri: &#39;hanks, you too . . .\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) nycavri: Build G1 Nycavri\n\n7) mneme: Build Y1 Mneme\n\n8) nycavri: Discover G1 Nycavri Y3 Mvb\n\n9) mneme: Build Y2 Mneme\n\n10) nycavri: Trade G1 B1 Nycavri\n\n11) mneme: Discover Y1 Mneme G1 Jolly\n\n12) nycavri: Build G1 Nycavri\n\n13) mneme: Build G2 Mneme\n\n14) nycavri: Build G2 Nycavri\n\n15) mneme: Discover Y1 Jolly B2 Harpo\n\n16) nycavri: Trade G2 Y2 Nycavri\n\n17) mneme: Sacrifice G3 Mneme\nBuild Y2 Harpo\nBuild Y3 Harpo\nBuild Y3 Mneme\n\n18) nycavri: Discover Y2 Nycavri G3 Mvg\n\n19) mneme: Trade Y2 G2 Harpo\n\n20) nycavri: Trade G1 R1 Nycavri\n\n21) mneme: Trade Y3 R3 Harpo\n\n22) nycavri: Build R1 Nycavri\n\n23) mneme: Discover Y2 Mneme R1 Danger\n\n24) nycavri: Build R2 Nycavri\n\n25) mneme: Build R2 Harpo\n\n26) nycavri: Move R2 Nycavri Mvb\n\n27) mneme: Discover Y2 Danger B3 River\n\n28) nycavri: Build G1 Nycavri\n\n29) mneme: Move R3 Harpo Mvg\n\n30) nycavri: Discover Y2 Mvg B1 Iw\n\n31) mneme: Sacrifice G2 Harpo\nBuild Y2 River\nBuild Y3 Harpo\n\n32) nycavri: Build G1 Mvb\n\n33) mneme: Move Y3 Harpo Mvb\n\n34) nycavri: Move R2 Mvb Iw\n\n35) mneme: Sacrifice R2 Harpo\nAttack G1 Mvb\nAttack G1 Mvb\n\n36) nycavri: Discover B1 Nycavri G3 Jw\n\n37) mneme: Sacrifice Y3 Mneme\nMove G1 Mvb Nycavri\nMove G1 Mvb Nycavri\nMove Y3 Mvb Nycavri\nCatastrophe Nycavri G\n\n38) nycavri: Move Y2 Iw Mneme\n\n39) mneme: Sacrifice R3 Mvg\nAttack R1 Nycavri\nAttack R1 Nycavri\nAttack Y2 Mneme\n\tmneme: I believe it is time to make an end to this.\n\n\tmneme: thanks for the game!\n\tnycavri: Still never won a real game here on SDG . . .\n\tmneme: How do you define &quot;real game&quot;?  Or do you mean &quot;real game of Binary Homeworlds?&quot;  It&#39;s a pretty hard game, very inelastic in terms of skill/victory.\r\n\n\tnycavri: I mean that, technically, I&#39;ve won two games on SDG, but both were against 100% first timers who literally didn&#39;t know what they were doing.\r\n\r\nI understand that the competition here is very stiff - the fact is, I win more than I lose face to face - but it can get frustrating.  I don&#39;t feel that I&#39;m especially bad, just the locals are especially good!\r\n\r\nI guess now I know how people feel playing me at Penguin Soccer . . .\r\n\r\n*grin*\n\tmneme: Ah, gotcha, yeah.  I -never- beat TwoShort, but do reasonably well against everyone else (I think I&#39;m a little better than zoltar; not sure who else is up in the top echeon)\n\tmneme: If we found one another at the NYC thing, I suppose I could try to help you with that &quot;winning in person&quot; thing too.  :P  FWIW, my livejournal has a decent pic: http://mnemex.livejournal.com\n\tmneme: Oh, right, Andy.  I lose to Andy too, though I may have gotten better than the last time I played him.\r\n\n\nHomeworlds Online (SDG# 9359)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.10, Ended: 2008.2.16\nParticipants: theodorelogan (S), tibuga (N), kohen (E)\nWinner: theodorelogan\n\n\nHomeworlds Online (SDG# 10372)\nStarted: 2008.2.10, Ended: 2008.11.15\nParticipants: ts52 (S), theodorelogan (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 10398)\nVariants: &quot;Unrated&quot;\nStarted: 2008.2.10, Ended: 2008.3.6\nParticipants: theodorelogan (S), BenBen (N)\nWinner: BenBen\n\n1) BenBen: Homeworld B3 R2 G3\n\n\nHomeworlds Online (SDG# 10402)\nStarted: 2008.2.10, Ended: 2008.4.20\nParticipants: theodorelogan (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 10415)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.11, Ended: 2008.3.7\nParticipants: random56 (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld B3 Y1 G3\n\tjeep: I canceled this standing challenge...  I&#39;ll play one more, but I&#39;ll be playing at the slowest rate, I&#39;m sure.\n\n2) random56: Homeworld B1 G2 R3\n\n3) jeep: Build G1 Jeep\n\n4) random56: Build R1 Random56\n\n5) jeep: Build G1 Jeep\n\n6) random56: Trade R1 Y1 Random56\n\n7) jeep: Discover G1 Jeep Y2 Mover\n\n8) random56: Build Y1 Random56\n\n9) jeep: Build G1 Mover\n\n10) random56: Discover Y1 Random56 G3 O-ma-cron\n\n11) jeep: Discover G1 Mover B3 Changer\n\n\nHomeworlds Online (SDG# 10453)\nStarted: 2008.2.13, Ended: 2008.2.18\nParticipants: MikeYarrum (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 10477)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.13, Ended: 2008.3.3\nParticipants: sordros (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld Y3 B3 G3 *\n\tKeith: Hello Sordos.  Nice to see you on the other side again.\n\n2) sordros: Homeworld Y1 B3 G3\n\tsordros: Hello there!\r\nGood luck\n\n3) Keith: Build G1 Keith\n\tsordros: whoops, didn&#39;t realize I was moving second :-)\n\n4) sordros: Build G1 Sordros\n\tKeith: I thought I would start out by trying to throw you a curve.  :)\n\n5) Keith: Trade G1 R1 Keith\n\n6) sordros: Trade G1 R1 Sordros\n\n7) Keith: Build G1 Keith\n\n8) sordros: Build G1 Sordros\n\n9) Keith: Trade G1 Y1 Keith\n\n10) sordros: Trade G1 B1 Sordros\n\n11) Keith: Build Y1 Keith\n\n12) sordros: Build G1 Sordros\n\n13) Keith: Discover Y1 Keith G2 Midworld\n\n14) sordros: Build G1 Sordros\n\n15) Keith: Build Y2 Midworld\n\n16) sordros: Discover G1 Sordros G2 Eco2\n\n17) Keith: Build G1 Keith\n\n18) sordros: Discover G1 Sordros Y2 Sol2\n\n19) Keith: Discover G1 Keith Y2 Born\n\n20) sordros: Discover G1 Sol2 G3 Sol3\n\n21) Keith: Build G2 Keith\n\n22) sordros: Build B1 Sordros\n\n23) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y2 Midworld\nBuild Y3 Keith\n\n24) sordros: Sacrifice G1 Eco2\nBuild G1 Sordros\n\n25) Keith: Sacrifice Y3 Keith\nMove G1 Born Sordros\nMove G2 Keith Midworld\nMove G2 Midworld Sordros\nCatastrophe Sordros Green\n\n\tsordros: Hmm... definitely need more practice, didn&#39;t see that coming :-)\r\nThanks for the game.\n\tKeith: It was the small universe.  We were only two apart rather than three.  Where three of a color are easily threatend with a y3, here, two of a kind are easily threatened if one ship is one away.\r\n\r\nIt was heavier handed than I like, however, it is in keeping with the ladder system.  I am available for a less heavy handed unrated game if you like.\n\tsordros: Ok, let me finish up some of my unfinished games and I&#39;ll start one up.  I think I can learn a lot from playing with you :-)\n\nHomeworlds Online (SDG# 10403)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.2.14, Ended: 2008.2.17\nParticipants: sordros (S), scottobear (N)\nWinner: sordros\n\n\nHomeworlds Online (SDG# 10215)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.14, Ended: 2008.2.26\nParticipants: TwoShort (S), spearjr (N)\nWinner: TwoShort\n\n1) spearjr: Homeworld G3 B1 Y3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\tspearjr: Hello, Good luck and have fun.\n\n3) spearjr: Build Y1 Spearjr\n\tTwoShort: Howdy\n\n4) TwoShort: Build B1 Twoshort\n\n5) spearjr: Trade Y3 B3 Spearjr\n\tspearjr: I imagine you will smash me, I only hope to learn something from the experience. Feel free to tell me when I do something truly stupid.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) spearjr: Build B2 Spearjr\n\n8) TwoShort: Build B2 Twoshort\n\tTwoShort: OK...  So far you&#39;re doing fine.  I&#39;d generally recommend against a small blue star as first player, because it lets me play this opening... but you&#39;ve found the right response to it.\n\n9) spearjr: Discover B2 Spearjr G2 Alpha\n\n10) TwoShort: Discover B2 Twoshort G3 Grogar\n\n11) spearjr: Build B2 Alpha\n\n12) TwoShort: Build B3 Grogar\n\tTwoShort: Hmm, I wouldn&#39;t call that move stupid, but if I&#39;m correctly predicting where it will lead in a few moves I think you&#39;ll regret it.  One should generaly be wary of growing the last 2 pointer of a color.\n\n13) spearjr: Build B3 Alpha\n\n14) TwoShort: Trade B3 G3 Grogar\n\n15) spearjr: Sacrifice B2 Alpha\nTrade B3 Y3 Alpha\nTrade B2 G2 Alpha\n\n16) TwoShort: Build B2 Grogar\n\n17) spearjr: Build Y1 Spearjr\n\n18) TwoShort: Trade B2 Y2 Grogar\n\n19) spearjr: Trade Y1 R1 Spearjr\n\n20) TwoShort: Trade B1 R1 Twoshort\n\n21) spearjr: Build Y1 Alpha\n\tspearjr: If this was in person, I think I could formulate some sort of strategy, but I&#39;m totally floundering here. Sigh.\n\n22) TwoShort: Build B1 Grogar\n\tTwoShort: Actually, I was thinking you were doing really well, and despite your claims, I&#39;d better stop looking for you to make newbie mistakes.  Have you played much off-line?\r\n  It is interesting how playing here differs from face-to-face... I&#39;m actually not nearly as good in person. \n\n23) spearjr: Discover G2 Alpha B3 Beta\n\tspearjr: I&#39;m in the midst of a 4 player game here and I&#39;ve played 7 games off-line. However we had a number of rules wrong for all but 2 of those. (We forgot sacrifice completely!! And we were allowing players to create a new ship in a system, so long as they had the green power in the system, regardless if they already had a ship of that color there.)\n\n24) TwoShort: Discover B1 Grogar B2 Boomtime\n\n25) spearjr: Trade B3 Y3 Spearjr\n\n26) TwoShort: Sacrifice G3 Grogar\nBuild B2 Boomtime\nBuild B3 Grogar\nBuild B3 Grogar\n\n27) spearjr: Build G1 Beta\n\tspearjr: You&#39;re freakin me out with all those blue on my boarder.\n\n28) TwoShort: Discover B3 Grogar Y2 Yolonda\n\tspearjr: And don&#39;t have a clue how to stop it.\n\n29) spearjr: Build G1 Beta\n\n30) TwoShort: Sacrifice B2 Boomtime\nTrade B3 G3 Yolonda\nTrade B3 R3 Grogar\n\n31) spearjr: Sacrifice Y3 Alpha\nMove G1 Beta Twoshort\nMove G1 Beta Twoshort\nMove G2 Beta Twoshort\nCatastrophe Twoshort Green\n\n32) TwoShort: Sacrifice G3 Yolonda\nBuild B2 Grogar\nBuild B3 Boomtime\nBuild B3 Grogar\n\n33) spearjr: Build Y1 Alpha\n\n34) TwoShort: Move B2 Grogar Alpha\n\n35) spearjr: Build Y2 Alpha\n\n36) TwoShort: Sacrifice R3 Grogar\nAttack Y2 Alpha\nAttack Y1 Alpha\nAttack Y1 Alpha\n\n37) spearjr: Build R1 Spearjr\n\n38) TwoShort: Build B3 Alpha\n\n39) spearjr: Discover Y1 Spearjr G2 Thatsnomoon\n\n40) TwoShort: Trade B3 R3 Grogar\n\n41) spearjr: Trade Y3 B3 Spearjr\n\n42) TwoShort: Sacrifice Y3 Twoshort\nMove B1 Boomtime Spearjr\nMove B2 Alpha Spearjr\nMove Y2 Alpha Spearjr\nCatastrophe Spearjr Blue\n\n\tspearjr: Good game.\n\nHomeworlds Online (SDG# 10513)\nVariants: &quot;Unrated&quot;\nStarted: 2008.2.16, Ended: 2008.9.29\nParticipants: msolis_cr (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B3 G3\n\n\tsordros: Idiay Mau? se rinde?\n\nHomeworlds Online (SDG# 10478)\nStarted: 2008.2.21, Ended: 2008.2.25\nParticipants: Horowits (S), MikeYarrum (N)\nWinner: Horowits\n\n\nHomeworlds Online (SDG# 10504)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.22, Ended: 2008.3.13\nParticipants: TwoShort (S), Horowits (N)\nWinner: TwoShort\n\n1) Horowits: Homeworld B3 G2 R3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Horowits: Build R1 Horowits\n\tTwoShort: Greetings\n\n4) TwoShort: Build G1 Twoshort\n\tHorowits: ahoy\n\n5) Horowits: Trade R1 G1 Horowits\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Horowits: Build G1 Horowits\n\n8) TwoShort: Build G1 Twoshort\n\n9) Horowits: Trade G1 Y1 Horowits\n\n10) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n11) Horowits: Build R1 Horowits\n\n12) TwoShort: Build G1 Twoshort\n\n13) Horowits: Build G2 Horowits\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n15) Horowits: Discover G2 Horowits R1 Doom\n\n16) TwoShort: Trade G2 R2 Bluestar\n\n17) Horowits: Move R1 Horowits Doom\n\n18) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n19) Horowits: Build R2 Horowits\n\n20) TwoShort: Sacrifice G3 Bluestar\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Bluestar\n\n21) Horowits: Move R2 Horowits Doom\n\n22) TwoShort: Trade G3 Y3 Bluestar\n\n23) Horowits: Move G1 Horowits Doom\n\n24) TwoShort: Move R2 Bluestar Doom\nCatastrophe Doom Red\n\n25) Horowits: Trade Y1 G1 Horowits\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n27) Horowits: Build R1 Horowits\n\n28) TwoShort: Trade G2 R2 Bluestar\n\tHorowits: Happy Extra-Day-In-Febuary-Every-Four-Years.\n\n29) Horowits: Trade R1 Y1 Horowits\n\n30) TwoShort: Trade G3 B3 Bluestar\n\n31) Horowits: Build R1 Horowits\n\n32) TwoShort: Discover B3 Bluestar B1 Checkmate\n\n\nHomeworlds Online (SDG# 10573)\nStarted: 2008.2.22, Ended: 2008.3.30\nParticipants: velgarath (S), maka (N)\nWinner: velgarath\n\n1) maka: Homeworld G2 B1 Y3\n\n2) velgarath: Homeworld B3 G1 Y3\n\n3) maka: Build Y1 Maka\n\n4) velgarath: Build Y1 Velgarath\n\n5) maka: Discover Y1 Maka G3 Loko\n\n6) velgarath: Discover Y1 Velgarath B2 Friki\n\n7) maka: Move Y1 Loko Maka\n\n8) velgarath: Build Y1 Velgarath\n\n9) maka: Trade Y1 B1 Maka\n\n10) velgarath: Trade Y1 G1 Velgarath\n\n11) maka: Build Y1 Maka\n\n12) velgarath: Build G1 Velgarath\n\n13) maka: Discover Y1 Maka G3 Keke\n\n14) velgarath: Move G1 Velgarath Friki\n\n15) maka: Move B1 Maka Keke\n\n16) velgarath: Build G2 Friki\n\n17) maka: Trade Y1 R1 Keke\n\n18) velgarath: Trade G2 R2 Friki\n\n19) maka: Build B1 Keke\n\n20) velgarath: Build R1 Friki\n\n21) maka: Build B2 Keke\n\n22) velgarath: Move R2 Friki Keke\n\n23) maka: Build R1 Keke\n\n24) velgarath: Attack B2 Keke\n\tmaka: Yo a este juego soy malisimo :)\n\n25) maka: Build R2 Keke\nCatastrophe Keke Red\n\n26) velgarath: Trade B2 R2 Keke\n\n27) maka: Build Y1 Maka\n\n28) velgarath: Attack B1 Keke\n\n29) maka: Trade Y1 R1 Maka\n\n30) velgarath: Attack B1 Keke\n\n31) maka: Build R1 Maka\n\n32) velgarath: Build R2 Keke\n\n33) maka: Discover R1 Maka B3 Loko\n\n34) velgarath: Build Y1 Friki\n\n35) maka: Trade R1 Y1 Loko\n\n36) velgarath: Build G2 Friki\n\n37) maka: Build Y2 Maka\n\n38) velgarath: Move Y1 Friki Keke\n\n39) maka: Trade Y2 G2 Maka\n\n40) velgarath: Build G3 Velgarath\n\n41) maka: Build G3 Maka\n\n42) velgarath: Build Y2 Keke\n\n43) maka: Discover G3 Maka R3 Fire\n\n44) velgarath: Build Y2 Friki\n\n45) maka: Build Y2 Maka\n\n46) velgarath: Sacrifice Y2 Friki\nMove Y2 Keke Maka\nMove Y1 Keke Maka\nCatastrophe Maka Y\n\n47) maka: Sacrifice Y1 Loko\nDiscover G3 Fire Y2 Sun\n\n48) velgarath: Trade B1 Y1 Keke\n\n49) maka: Move G3 Sun Velgarath\nCatastrophe Velgarath Green\n\n50) velgarath: Move G1 Friki Velgarath\n\n51) maka: Build G1 Maka\n\n52) velgarath: Trade Y3 R3 Velgarath\n\n53) maka: Trade G2 Y2 Maka\n\n54) velgarath: Build G1 Velgarath\n\n55) maka: Trade G1 B1 Maka\n\n56) velgarath: Sacrifice Y1 Friki\nMove R3 Velgarath Maka\n\n57) maka: Build R1 Maka\n\n58) velgarath: Sacrifice R2 Keke\nAttack R1 Maka\nAttack R1 Maka\n\n59) maka: Trade Y2 R2 Maka\nCatastrophe Maka Red\n\n60) velgarath: Move R2 Keke Maka\n\tmaka: lo tengo chungo :)\n\n61) maka: Build B2 Maka\n\n62) velgarath: Move B1 Keke Maka\nCatastrophe Maka B\n\tvelgarath: creo que esta es mia, si no hay sorpresas\n\n\tmaka: muy bien. la verdad es que este juego con todo lo bueno que me parece no acabo de pillarle el truco... me cuesta mogollon...\n\nHomeworlds Online (SDG# 10560)\nStarted: 2008.2.24, Ended: 2008.12.22\nParticipants: slyfordtrabbit (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 B2 Y3\n\tslyfordtrabbit: Homeworld b3 y2 g3\n\n2) slyfordtrabbit: Homeworld B3 Y1 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tslyfordtrabbit: Just FYI -- this is my first game, so I may not be much of a challenge.  :(\n\n4) slyfordtrabbit: Build G1 Slyfordtrabbit\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) slyfordtrabbit: Discover G1 Slyfordtrabbit Y2 Flotsam\n\tslyfordtrabbit: build y2 at slyfordtrabbit\n\n7) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n8) slyfordtrabbit: Build G1 Slyfordtrabbit\n\tslyfordtrabbit: build b1 floatsam\n\n9) MatrixFrog: Build B1 Matrixfrog\n\n10) slyfordtrabbit: Trade G1 B1 Slyfordtrabbit\n\n11) MatrixFrog: Trade B1 G1 Matrixfrog\n\n12) slyfordtrabbit: Build G2 Slyfordtrabbit\n\n13) MatrixFrog: Build G2 Matrixfrog\n\n14) slyfordtrabbit: Discover G1 Flotsam Y3 Jetsam\n\n15) MatrixFrog: Discover G2 Matrixfrog Y3 Beach\n\n16) slyfordtrabbit: Move G1 Jetsam Matrixfrog\n\n17) MatrixFrog: Trade G1 R1 Matrixfrog\n\tslyfordtrabbit: Just an FYI -- I may or may not be able to make moves between Tuesday and Friday -- I&#39;ll be out of town.\n\n18) slyfordtrabbit: Sacrifice G3 Slyfordtrabbit\nBuild G1 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Slyfordtrabbit\nCatastrophe Matrixfrog Green\n\n19) MatrixFrog: Move G2 Beach Matrixfrog\n\tMatrixFrog: How did I allow this to happen in two different games at the same time? I must be tired this week.\n\n20) slyfordtrabbit: Trade G2 R2 Slyfordtrabbit\n\tslyfordtrabbit: I&#39;m surprised it actually worked.  o.o  Don&#39;t worry; i&#39;m sure I&#39;ll make a terrible error in the next few moves.\n\n21) MatrixFrog: Build G1 Matrixfrog\n\n22) slyfordtrabbit: Discover B1 Slyfordtrabbit Y2 Driftwood\n\n23) MatrixFrog: Build R1 Matrixfrog\n\n\nHomeworlds Online (SDG# 10563)\nStarted: 2008.2.24, Ended: 2008.2.24\nParticipants: MikeYarrum (S), slyfordtrabbit (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 10589)\nStarted: 2008.2.26, Ended: 2008.3.1\nParticipants: spearjr (S), MikeYarrum (N)\nWinner: spearjr\n\n\nHomeworlds Online (SDG# 10459)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.26, Ended: 2008.5.26\nParticipants: Uglyfoot (S), sordros (W), alexcobo (N), smilingra (E)\nWinner: Uglyfoot\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) smilingra: Homeworld B1 G2 Y3\n\talexcobo: Hello! Good luck, everyone!\n\n3) Uglyfoot: Homeworld B1 Y3 G3\n\n4) sordros: Homeworld R1 B2 G3\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) smilingra: Build Y1 Smilingra\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) sordros: Build G1 Sordros\n\n9) alexcobo: Discover Y1 Alexcobo G1 Andromeda\n\n10) smilingra: Trade Y1 G1 Smilingra\n\n11) Uglyfoot: Discover G1 Uglyfoot B2 Mall\n\tsmilingra: sorry about the delay - I was moving and was out of town recently.\n\n12) sordros: Trade G1 Y1 Sordros\n\n13) alexcobo: Build Y1 Alexcobo\n\n14) smilingra: Discover G1 Smilingra B3 Boron\n\n15) Uglyfoot: Build G1 Uglyfoot\n\n16) sordros: Build Y1 Sordros\n\n17) alexcobo: Trade Y1 R1 Alexcobo\n\n18) smilingra: Build G1 Boron\n\n19) Uglyfoot: Build G2 Mall\n\n20) sordros: Build G2 Sordros\n\n21) alexcobo: Build Y1 Andromeda\n\n22) smilingra: Trade G1 Y1 Boron\n\n23) Uglyfoot: Trade G2 Y2 Mall\n\n24) sordros: Trade Y1 B1 Sordros\n\n25) alexcobo: Move R1 Alexcobo Andromeda\n\n26) smilingra: Build Y1 Smilingra\n\n27) Uglyfoot: Build Y2 Mall\n\n28) sordros: Build Y2 Sordros\n\n29) alexcobo: Build Y2 Alexcobo\n\n30) smilingra: Trade Y1 R1 Smilingra\n\n31) Uglyfoot: Trade Y2 B2 Mall\n\n32) sordros: Discover B1 Sordros G3 Verdego\n\n33) alexcobo: Move Y1 Andromeda Mall\n\n34) smilingra: Build R1 Smilingra\n\n35) Uglyfoot: Move B2 Mall Andromeda\n\n36) sordros: Build B1 Verdego\n\n37) alexcobo: Build Y1 Andromeda\n\n38) smilingra: Build Y2 Boron\n\n39) Uglyfoot: Trade G1 R1 Uglyfoot\n\n40) sordros: Trade G2 R2 Sordros\n\n41) alexcobo: Move R1 Andromeda Verdego\n\n42) smilingra: Build Y2 Smilingra\n\n43) Uglyfoot: Build R2 Uglyfoot\n\n44) sordros: Move R2 Sordros Verdego\n\n45) alexcobo: Build R2 Verdego\n\n46) smilingra: Move R1 Smilingra Verdego\nCatastrophe Verdego R\n\n47) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack Y1N Andromeda\nAttack Y1N Andromeda\n\n48) sordros: Move Y2 Sordros Verdego\n\n49) alexcobo: Trade Y3 R3 Alexcobo\n\n50) smilingra: Trade Y2 R2 Smilingra\n\n51) Uglyfoot: Trade Y1 B1 Andromeda\n\n52) sordros: Trade B1 R1 Verdego\n\n53) alexcobo: Discover Y1 Mall G3 Donthitme\n\n54) smilingra: Move Y3 Smilingra Verdego\n\n55) Uglyfoot: Build G1 Mall\n\n56) sordros: Build Y1 Verdego\n\n57) alexcobo: Build Y2 Donthitme\n\n58) smilingra: Sacrifice R1 Smilingra\nAttack R1W Verdego\n\n59) Uglyfoot: Move Y1 Andromeda Verdego\nCatastrophe Verdego Y\n\n60) sordros: Build Y1 Sordros\n\n61) alexcobo: Build R1 Alexcobo\n\n62) smilingra: Attack B1W Verdego\n\n63) Uglyfoot: Move G1 Mall Boron\n\n64) sordros: Build G1 Sordros\n\n65) alexcobo: Build Y1 Alexcobo\n\n66) smilingra: Build R1 Smilingra\n\n67) Uglyfoot: Build G2 Boron\n\n68) sordros: Trade Y1 B1 Sordros\n\n69) alexcobo: Discover Y2 Donthitme B2 Trader\n\n70) smilingra: Build B3 Verdego\n\n71) Uglyfoot: Build R2 Uglyfoot\n\n72) sordros: Discover G1 Sordros B3 Azurra\n\n73) alexcobo: Trade Y2 G2 Trader\n\n74) smilingra: Trade B3 Y3 Verdego\n\n75) Uglyfoot: Discover R2 Uglyfoot Y2 Move\n\n76) sordros: Build G2 Sordros\n\n77) alexcobo: Build Y1 Donthitme\n\n78) smilingra: Sacrifice Y2 Boron\nMove Y3 Verdego Smilingra\nMove R2 Smilingra Boron\n\n79) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R2E Boron\n\n80) sordros: Sacrifice G3 Sordros\nBuild G2 Azurra\nBuild G3 Sordros\nBuild Y2 Sordros\n\n81) alexcobo: Move Y1 Donthitme Trader\n\n82) smilingra: Build B3 Verdego\n\n83) Uglyfoot: Sacrifice Y2 Mall\nMove G2 Boron Smilingra\nMove G1 Boron Smilingra\n\n84) sordros: Trade G2 R2 Azurra\n\n85) alexcobo: Build Y2 Donthitme\n\n86) smilingra: Trade B3 Y3 Verdego\n\n87) Uglyfoot: Build G2 Smilingra\nCatastrophe Smilingra G\n\n88) sordros: Move Y2 Sordros Azurra\n\n89) alexcobo: Build G1 Trader\n\n90) smilingra: Move Y3 Verdego Trader\n\n91) Uglyfoot: Attack G1E Boron\n\n92) sordros: Build Y2 Sordros\n\n93) alexcobo: Sacrifice Y2 Alexcobo\nMove G2 Trader Verdego\nMove Y1 Trader Verdego\n\n94) smilingra: Build B3 Verdego\n\n95) Uglyfoot: Build G2 Uglyfoot\n\n96) sordros: Build G2 Azurra\n\n97) alexcobo: Sacrifice R1 Alexcobo\nAttack R1E Verdego\n\n98) smilingra: Trade B3 R3 Verdego\n\n99) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Boron\nBuild G3 Uglyfoot\nBuild R1 Move\n\n100) sordros: Sacrifice G3 Sordros\nBuild Y2 Azurra\nBuild Y3 Azurra\nBuild G3 Sordros\n\n101) alexcobo: Sacrifice G2 Verdego\nBuild R1 Verdego\nBuild R2 Verdego\nCatastrophe Verdego R\n\n102) smilingra: Build B3 Verdego\n\talexcobo: It was either that or keep running...\n\n103) Uglyfoot: Attack Y1E Boron\n\n104) sordros: Trade Y3 R3 Azurra\n\n105) alexcobo: Build Y3 Alexcobo\n\n106) smilingra: Trade B3 R3 Verdego\n\n107) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Mall\nBuild G3 Uglyfoot\nBuild Y3 Boron\n\n108) sordros: Trade R3 B3 Azurra\n\n109) alexcobo: Move Y1 Verdego Mall\n\n110) smilingra: Move Y3 Trader Verdego\n\n111) Uglyfoot: Sacrifice Y3 Boron\nMove G1 Mall Andromeda\nMove B1 Andromeda Azurra\nMove B2 Andromeda Azurra\nCatastrophe Azurra B\n\n112) sordros: Discover G2 Sordros B3 Azurra2\n\n113) alexcobo: Build G1 Trader\n\n114) smilingra: Build Y2 Verdego\n\n115) Uglyfoot: Trade G2 R2 Uglyfoot\n\n116) sordros: Build G2 Sordros\n\n117) alexcobo: Build R1 Alexcobo\n\n118) smilingra: Trade Y2 G2 Verdego\n\n119) Uglyfoot: Build Y2 Boron\n\tsmilingra: Going down to the wire there, eh Alex?\n\n120) sordros: Trade Y2 R2 Sordros\n\n121) alexcobo: Move Y2 Donthitme Andromeda\n\n122) smilingra: Move R3 Verdego Trader\n\n123) Uglyfoot: Move R1 Move Smilingra\n\n124) sordros: Build Y2 Sordros\n\n125) Uglyfoot: Sacrifice Y2 Boron\nMove G1 Boron Sordros\nMove G2 Boron Sordros\nCatastrophe Sordros G\n\n126) sordros: Trade Y2 G2 Sordros\n\n127) Uglyfoot: Build G1 Uglyfoot\n\n128) sordros: Build Y2 Sordros\n\tsmilingra: That sucks!  I just resigned on two games because it didn&#39;t say that any games were waiting on me!  Good luck, you two!\n\talexcobo: Same for me here. It did not say it was my turn!\n\n129) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Andromeda\nBuild G3 Uglyfoot\nBuild G3 Mall\n\n\tsordros: Too weak to keep going on.  Congrats Uglyfoot!\n\tUglyfoot: Thanks.\r\n\n\nHomeworlds Online (SDG# 10590)\nStarted: 2008.2.27, Ended: 2008.3.3\nParticipants: MatrixFrog (S), wmshub (N)\nWinner: MatrixFrog\n\n1) wmshub: Homeworld G1 B2 Y3\n\n2) MatrixFrog: Homeworld B1 G2 Y3\n\twmshub: Hi, this is my first superdupergames game ever and my first homeworlds game\r\nhope you don&#39;t mind if I&#39;m just learning the game&amp;system\n\tMatrixFrog: no problem. i&#39;m hardly the homeworlds expert of the world, but let me know if you want any little tips or whatever\n\n3) wmshub: Build Y1 Wmshub\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) wmshub: Trade Y1 G1 Wmshub\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) wmshub: Build G1 Wmshub\n\n8) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n9) wmshub: Discover G1 Wmshub B3 Bigblue\n\n10) MatrixFrog: Build G2 Matrixfrog\n\n11) wmshub: Build G2 Bigblue\n\n12) MatrixFrog: Discover G2 Matrixfrog Y3 Bigyellow\n\n13) wmshub: Sacrifice Y3 Wmshub\nMove G1 Bigblue Matrixfrog\nMove G2 Bigblue Matrixfrog\nPass\nCatastrophe Matrixfrog Green\n\n14) MatrixFrog: Move G2 Bigyellow Wmshub\n\tMatrixFrog: This is why you don&#39;t create homeworlds that are size-identical to your opponent&#39;s homeworld. Oops.\n\n15) wmshub: Trade G1 R1 Wmshub\n\twmshub: Wow, I&#39;m screwed now, aren&#39;t I?\r\n\r\nWell, might as well get it over with...\n\n16) MatrixFrog: Trade G2 R2 Wmshub\n\tMatrixFrog: Well, we&#39;re both relatively screwed, so don&#39;t give up hope just yet.\n\n17) wmshub: Build R1 Wmshub\n\n18) MatrixFrog: Build R1 Wmshub\nCatastrophe Wmshub R\n\twmshub: I see no way out for me! You can keep capturing my ships, I can only build red, eventually there will be a catastrophe and all my ships will be gone...\n\tMatrixFrog: Right, but you can trade one of your reds for another color. I probably have this game, but just in case, your best bet is probably to switch to yellow, and get to my homeworld asap.\n\n\nHomeworlds Online (SDG# 10561)\nVariants: &quot;Hard time&quot;\nStarted: 2008.2.29, Ended: 2008.3.3\nParticipants: alexcobo (S), Horowits (N)\nWinner: alexcobo\n\n\nHomeworlds Online (SDG# 10625)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.2, Ended: 2008.3.13\nParticipants: slyfordtrabbit (S), h3d0 (N)\nWinner: h3d0\n\n1) h3d0: Homeworld B1 Y2 G3\n\n2) slyfordtrabbit: Homeworld B3 G2 Y3\n\n3) h3d0: Build G1 H3d0\n\n4) slyfordtrabbit: Build Y1 Slyfordtrabbit\n\n5) h3d0: Trade G1 R1 H3d0\n\n6) slyfordtrabbit: Build Y1 Slyfordtrabbit\n\n7) h3d0: Build R1 H3d0\n\n8) slyfordtrabbit: Trade Y1 G1 Slyfordtrabbit\n\n9) h3d0: Discover R1 H3d0 R3 C3p0\n\n10) slyfordtrabbit: Build G1 Slyfordtrabbit\n\n11) h3d0: Move G3 H3d0 C3p0\n\n\nHomeworlds Online (SDG# 10626)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.2, Ended: 2008.3.14\nParticipants: Snow (S), slyfordtrabbit (N)\nWinner: Snow\n\n1) slyfordtrabbit: Homeworld G2 Y1 B3\n\n2) Snow: Homeworld G3 Y2 B3\n\n3) slyfordtrabbit: Build B1 Slyfordtrabbit\n\n4) Snow: Build B1 Snow (s)\n\n5) slyfordtrabbit: Trade B1 G1 Slyfordtrabbit\n\n6) Snow: Discover B1 Snow G1 Tf\n\n7) slyfordtrabbit: Build B1 Slyfordtrabbit\n\n8) Snow: Trade B1 Y1 Tf\n\n9) slyfordtrabbit: Trade B1 Y1 Slyfordtrabbit\n\n10) Snow: Build B1 Snow\n\n11) slyfordtrabbit: Build Y2 Slyfordtrabbit\n\n12) Snow: Trade B1 R1 Snow\n\n13) slyfordtrabbit: Discover Y1 Slyfordtrabbit G3 Flotsam\n\n14) Snow: Move R1 Snow Tf\n\tSnow: I&#39;m not sure how you got that Y2... ah, the star had the third Y1.\n\n\nHomeworlds Online (SDG# 10581)\nStarted: 2008.3.3, Ended: 2008.3.23\nParticipants: ts52 (S), Nupanick (N)\nWinner: ts52\n\n1) Nupanick: Homeworld B2 G3 Y3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Nupanick: Build Y1 Nupanick\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Nupanick: Build Y1 Nupanick\n\n6) ts52: Build G1 Ts52\n\n7) Nupanick: Trade Y1 R1 Nupanick\n\n8) ts52: Trade G1 R1 Ts52\n\n9) Nupanick: Discover Y1 Nupanick B1 Damogran\n\n10) ts52: Discover G1 Ts52 Y3 Sol\n\n11) Nupanick: Trade Y1 G1 Damogran\n\n12) ts52: Build G1 Ts52\n\n13) Nupanick: Build G2 Damogran\n\n14) ts52: Build G2 Sol\n\n15) Nupanick: Trade G2 R2 Damogran\n\n16) ts52: Trade G1 B1 Ts52\n\n17) Nupanick: Build G1 Damogran\n\n18) ts52: Build G2 Ts52\n\n19) Nupanick: Trade G1 Y1 Damogran\n\n20) ts52: Move B1 Ts52 Sol\n\n21) Nupanick: Move R2 Damogran Sol\n\n22) ts52: Sacrifice R1 Ts52\nAttack R2N Sol\n\n23) Nupanick: Build R1 Nupanick\n\tNupanick: whoops, forgot about the sacrificing rules as they apply to red.\n\n24) ts52: Discover G2 Ts52 B3 Grover\n\n25) Nupanick: Build G1 Damogran\n\n26) ts52: Build B2 Sol\n\n27) Nupanick: Build Y1 Damogran\n\n28) ts52: Move R2 Sol Damogran\n\n29) Nupanick: Move G1 Damogran Sol\n\n30) ts52: Attack G1N Damogran\n\n31) Nupanick: Move Y1 Damogran Sol\n\n32) ts52: Attack Y1 Damogran\n\n33) Nupanick: Build Y1 Sol\n\n34) ts52: Sacrifice R2 Damogran\nAttack Y1 Sol\nAttack Y1 Sol\n\n35) Nupanick: Move R1 Nupanick Damogran\n\n36) ts52: Trade G2 R2 Sol\n\tNupanick: Nice move, btw. I like having to think with catastrophes.\n\n37) Nupanick: Build R1 Nupanick\n\n38) ts52: Sacrifice R2 Sol\nAttack R1 Damogran\nAttack G1 Sol\n\n39) Nupanick: Build Y2 Nupanick\n\tts52: Thanks, catastrophes and sacrifices are the toughest things to get a handle on in this game.\n\n40) ts52: Build G2 Damogran\n\n41) Nupanick: Trade Y2 B2 Nupanick\n\n42) ts52: Move B1 Sol Damogran\n\n43) Nupanick: Trade B2 Y2 Nupanick\n\n44) ts52: Move Y1 Sol Damogran\n\n45) Nupanick: Build R2 Nupanick\n\n46) ts52: Build Y2 Sol\n\n47) Nupanick: Sacrifice Y2 Nupanick\nMove R2 Nupanick Damogran\nDiscover R2 Damogran B3 Catan\n\n48) ts52: Sacrifice G2 Grover\nBuild G2 Ts52\nBuild R2 Damogran\n\n49) Nupanick: Move R1 Nupanick Damogran\n\tNupanick: I like coming up with names for the systems. That&#39;s probably the one thing I prefer in the online version.\n\n50) ts52: Attack R1 Damogran\n\n51) Nupanick: Move R1 Nupanick Damogran\nCatastrophe Damogran R\n\n52) ts52: Trade G2 R2 Damogran\n\n53) Nupanick: Build Y2 Nupanick\n\n54) ts52: Sacrifice Y2 Sol\nMove Y1 Damogran Nupanick\nMove Y1 Damogran Nupanick\nCatastrophe Nupanick Yellow\n\n\tts52: Thanks for the game!\n\tNupanick: Good game, you got me early on and I guess I lost any chance of survival. Good job!\n\nHomeworlds Online (SDG# 10634)\nStarted: 2008.3.3, Ended: 2008.4.19\nParticipants: wmshub (S), MatrixFrog (N)\nWinner: wmshub\n\n1) MatrixFrog: Homeworld G2 B3 Y3\n\twmshub: OK, let&#39;s try again...\n\n2) wmshub: Homeworld G1 B2 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) wmshub: Build Y1 Wmshub\n\n5) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n6) wmshub: Trade Y1 G1 Wmshub\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) wmshub: Build Y1 Wmshub\n\n9) MatrixFrog: Build B1 Matrixfrog\n\n10) wmshub: Discover Y1 Wmshub G3 Biggreen\n\n11) MatrixFrog: Trade B1 R1 Matrixfrog\n\n12) wmshub: Build G1 Wmshub\n\n13) MatrixFrog: Build R1 Matrixfrog\n\n14) wmshub: Trade G1 B1 Wmshub\n\n15) MatrixFrog: Trade R1 G1 Matrixfrog\n\n16) wmshub: Build G2 Wmshub\n\n17) MatrixFrog: Discover G1 Matrixfrog Y1 One\n\n18) wmshub: Discover G2 Wmshub Y3 Bigyellow\n\n19) MatrixFrog: Build G2 One\n\n20) wmshub: Build Y2 Wmshub\n\n21) MatrixFrog: Discover G2 One B3 Two\n\n22) wmshub: Move G1 Wmshub Two\n\n23) MatrixFrog: Move G1 One Bigyellow\n\n24) wmshub: Discover G2 Bigyellow Y1 Smallyellow\n\n25) MatrixFrog: Sacrifice G2 Two\nBuild G2 Bigyellow\nBuild G3 Bigyellow\n\n26) wmshub: Move G2 Smallyellow Bigyellow\nCatastrophe Bigyellow Green\n\n27) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n28) wmshub: Move Y3 Wmshub Two\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) wmshub: Build Y2 Two\n\n31) MatrixFrog: Discover Y1 Matrixfrog G1 H4\n\n32) wmshub: Build G2 Two\n\n33) MatrixFrog: Move Y1 H4 Biggreen\n\n34) wmshub: Trade Y2 R2 Wmshub\n\n35) MatrixFrog: Build R1 Matrixfrog\n\n36) wmshub: Sacrifice Y2 Two\nDiscover G2 Two R1 Temp\nMove G2 Temp Matrixfrog\n\n37) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Matrixfrog\nBuild B1 Matrixfrog\nBuild Y2 Biggreen\n\n38) wmshub: Build G1 Matrixfrog\n\n39) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack Y1 Biggreen\n\n40) wmshub: Sacrifice B1 Wmshub\nTrade G1 B1 Matrixfrog\nCatastrophe Matrixfrog Blue\n\n41) MatrixFrog: Attack G2 Matrixfrog\n\n42) wmshub: Build G1 Two\n\n43) MatrixFrog: Sacrifice Y2 Biggreen\nMove Y1 Biggreen Wmshub\nMove Y1 Biggreen Wmshub\n\n44) wmshub: Sacrifice Y3 Two\nMove G1 Two Matrixfrog\nMove G1 Two Matrixfrog\nPass\nCatastrophe Matrixfrog Green\n\n45) MatrixFrog: Move Y2 Matrixfrog Wmshub\n\twmshub: Wait...isn&#39;t your homeworld gone? I thought this would be a win for me...\n\twmshub: Not sure how all this works, I call an admin. Admin - when you come, I have read the rules carefully, it looks like all of m.f.&#39;s ships in his homeworld should be gone, and it should be my game...shouldn&#39;t it?\n\tMatrixFrog: Yup. Looks like a bug to me.\n\n46) wmshub: Build R1 Wmshub\n\tMatrixFrog: Cool. Apparently the empty space where my homeworld used to be is connected to your homeworld.\n\n47) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove R1 Matrixfrog Wmshub\n\tMatrixFrog: Let&#39;s see how this goes...\n\tMatrixFrog: Re-paging the admin... I effectively resigned, but I should have lost a few turns ago.\n\twmshub: Thanks for the game! And thanks for fiddling around, I guess we had to empty your homeworld to end things.\n\tAaron: Hoh boy.  Yes indeed this should be game over.  Checking the code again.\n\tAaron: Oh.  Yeah, the game should have ended as soon as your starts went supernova.  Hoh boy, not good.  Still checking...\n\tAaron: oh wow, how long was Matrix&#39;s homeworld starless?  As soon as a system has no stars it should cease to exist.\n\tAaron: The problem that happened 4 moves ago was fixed a while back and should not happen again.  Sorry for the extreme delay!\n\tMatrixFrog: Sorry we kept playing after the bug happened. Thanks for the fix!\n\n\nHomeworlds Online (SDG# 10629)\nStarted: 2008.3.4, Ended: 2008.3.28\nParticipants: Nupanick (S), virx61 (N)\nWinner: Nupanick\n\n1) virx61: Homeworld G3 B2 Y3\n\n2) Nupanick: Homeworld Y1 B3 G3\n\n3) virx61: Build Y1 Virx61\n\n4) Nupanick: Build G1 Nupanick\n\tvirx61: Hi. I hope this game is as fun as it looks. Good luck.\n\tNupanick: I&#39;ve played this game a couple times and it can get pretty good, although I honestly prefer it in real life because at only one action per turn, quicker play is better. Although I&#39;ve played some rapid games here, so who cares?\n\n5) virx61: Discover Y1 Virx61 G1 Tina\n\n6) Nupanick: Trade G1 R1 Nupanick\n\n7) virx61: Trade Y3 G3 Virx61\n\n8) Nupanick: Build G1 Nupanick\n\n9) virx61: Build Y1 Tina\n\n10) Nupanick: Discover G1 Nupanick B2 Atlantis\n\n11) virx61: Build G1 Virx61\n\n12) Nupanick: Build G2 Atlantis\n\n13) virx61: Sacrifice Y1 Tina\nMove G1 Virx61 Tina\n\n14) Nupanick: Trade G2 Y2 Atlantis\n\n15) virx61: Discover G1 Tina R3 Aries\n\n16) Nupanick: Build G2 Atlantis\n\n17) virx61: Discover Y1 Tina B2 Daniel\n\n18) Nupanick: Discover G2 Atlantis R1 Zena\n\n19) virx61: Trade Y1 G1 Daniel\n\n20) Nupanick: Move G1 Atlantis Zena\n\n21) virx61: Build G2 Daniel\n\n22) Nupanick: Sacrifice Y2 Atlantis\nMove G1 Zena Virx61\nMove G2 Zena Virx61\nCatastrophe Virx61 G\n\tNupanick: Tip: look out for sacrifices and catastrophes. They can finish up a game quite effectively when enough ships are built up.\n\n\nHomeworlds Online (SDG# 10500)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.3.5, Ended: 2008.3.8\nParticipants: benji_stein (S), scottobear (N)\nWinner: benji_stein\n\n\tbenji_stein: I&#39;m not terribly experienced with homeworlds, but It&#39;s fun, and I&#39;d like to get better. Feel free to point out my mistakes, so I can learn from them.\n\nHomeworlds Online (SDG# 10633)\nStarted: 2008.3.6, Ended: 2008.3.15\nParticipants: MatrixFrog (S), benji_stein (N)\nWinner: benji_stein\n\n1) benji_stein: Homeworld Y3 B1 G3\n\tbenji_stein: I&#39;m not terribly experienced with homeworlds, but It&#39;s fun, and I&#39;d like to get better. Feel free to point out my mistakes, so I can learn from them.\n\n2) MatrixFrog: Homeworld G3 B2 Y3\n\tMatrixFrog: Sure. There seems to be a sudden influx of new Homeworlds players lately. It&#39;s great!\n\n3) benji_stein: Build G1 Benji_stein\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) benji_stein: Build G1 Benji_stein\n\tbenji_stein: Yeah. I love that I can play people online, instead of struggling to find others irl. Though it does make it a slower game.  \n\n6) MatrixFrog: Build Y1 Matrixfrog\n\tMatrixFrog: It&#39;s also harder to keep track of multi-move plans. That&#39;s what the notebook is for, but it&#39;s just not the same.\n\n7) benji_stein: Trade G1 Y1 Benji_stein\n\n8) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n9) benji_stein: Build G1 Benji_stein\n\n10) MatrixFrog: Discover Y1 Matrixfrog G1 Alpha\n\n11) benji_stein: Discover G1 Benji_stein G2 Upchuck\n\n12) MatrixFrog: Build Y1 Matrixfrog\n\n13) benji_stein: Build G2 Upchuck\n\n14) MatrixFrog: Discover Y1 Alpha G2 Beta\n\n15) benji_stein: Move Y1 Benji_stein Upchuck\n\n16) MatrixFrog: Build Y2 Beta\n\tMatrixFrog: You now have three yellow ships in your homeworld, and I have one only a step away from it. You probably didn&#39;t notice it moved because it&#39;s in the same place on the screen. Make sure you read the log if it&#39;s not obvious what happened.\n\tbenji_stein: Wow. You&#39;re right. I&#39;m not sure how I missed that - possibly I thought I had a 3/2 system as in a different game I&#39;m playing. But it&#39;s still pretty bad of me to not notice. I&#39;m guessing you&#39;ve not moved yourself to let me undo it. Thanks!\n\n17) benji_stein: Build Y2 Upchuck\n\n18) MatrixFrog: Build B1 Matrixfrog\n\n19) benji_stein: Discover G2 Upchuck B3 Hurl\n\n20) MatrixFrog: Build Y2 Beta\n\n21) benji_stein: Sacrifice G3 Benji_stein\nBuild G1 Hurl\nBuild G3 Benji_stein\nBuild G3 Hurl\n\tMatrixFrog: The system you&#39;ve just created is not connected to anyone&#39;s homeworld. I guess this makes it a fairly safe place, but it will take two moves to get from it to my homeworld, or from your homeworld to it. Just checking...\n\tbenji_stein: I realize, but thanks. I wanted to move to a new location, and wanted blue, which meant I either had to move to a b3, or move out my second-to-last ship in my homeworld to get to a b2. I suppose I could take an extra turn to get to it, but I thought I&#39;d try it this way. Plus, it might be a good out-of-the-way place to store some ships to sacrifice.\n\tMatrixFrog: Okay that makes sense.\n\n22) MatrixFrog: Sacrifice Y2 Beta\nMove Y1 Beta Benji_stein\nMove Y2 Beta Benji_stein\n\n23) benji_stein: Trade G2 B2 Hurl\n\n24) MatrixFrog: Trade Y2 G2 Benji_stein\n\n25) benji_stein: Trade G3 R3 Benji_stein\n\n26) MatrixFrog: Trade G2 Y2 Benji_stein\n\n27) benji_stein: Attack Y2 Benji_stein\n\n28) MatrixFrog: Sacrifice Y3 Matrixfrog\nDiscover Y1 Matrixfrog R1 Zip\nDiscover Y1 Zip R2 Zop\nMove Y1 Zop Benji_stein\nCatastrophe Benji_stein Y\n\n29) benji_stein: Sacrifice Y2 Upchuck\nDiscover B2 Hurl R1 Boom\nMove B2 Boom Matrixfrog\nCatastrophe Matrixfrog B\n\tbenji_stein: Can I ask what you&#39;re threatening here?\r\nIf it was to catastrophe yellow, you could have done that last turn instead of building the green. If it&#39;s green, you&#39;re destroying more ships of yours than mine. You have to sacrifice too much to destroy upchuck, and otherwise I&#39;m not seeing it.\r\nI can think of a variety of moves that could be useful, but I want to make sure I&#39;m not missing something...\n\tMatrixFrog: I guess I didn&#39;t totally think it through... the advantage of a green catastrophe is that you have no green ships, so in order to build anything new will require an extra turn. It&#39;s probably not worth it, but I&#39;ll stick with it and see how it goes.\n\tbenji_stein: I have a bunch of green ships in other systems, though. In fact, one of the moves I was considering was sacrificing my g3, rebuilding it, and causing the catastrophe myself, to prevent your doing the yellow one. I&#39;ll wait and let you undo it, if you&#39;d like, since you let me undo a mistake of mine when you pointed it out. Your call.\n\tMatrixFrog: Okay, good point. Thanks.\n\n\tbenji_stein: I guess you missed my blue ship in hurl threatening your homeworld. :(\n\tbenji_stein: Good game. Care for another? \n\nHomeworlds Online (SDG# 10592)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.6, Ended: 2008.3.7\nParticipants: Jesse (S), benji_stein (N)\nWinner: Jesse\n\n1) benji_stein: Homeworld B1 G3 Y3\n\tbenji_stein: I&#39;m not terribly experienced with homeworlds, but It&#39;s fun, and I&#39;d like to get better. Feel free to point out my mistakes, so I can learn from them.\n\n2) Jesse: Homeworld B3 G2 Y3\n\tJesse: Certainly.  Have a good game.\n\n3) benji_stein: Build Y1 Benji_stein\n\n4) Jesse: Build Y1 Jesse\n\n5) benji_stein: Trade Y1 B1 Benji_stein\n\n6) Jesse: Trade Y1 B1 Jesse\n\n7) benji_stein: Build B2 Benji_stein\n\n8) Jesse: Build B2 Jesse\n\n9) benji_stein: Sacrifice Y3 Benji_stein\nDiscover B1 Benji_stein Y2 Goes\nDiscover B1 Goes Y1 Boom\nMove B1 Boom Jesse\nCatastrophe Jesse B\n\tbenji_stein: You going to copy everything I do? :P\r\n\n\tbenji_stein: You going to copy everything I do? :P\r\n\n\tbenji_stein: Hmm. This is probably a really bad idea. But I&#39;ll risk it.\n\n10) Jesse: Build Y1 Jesse\n\n11) benji_stein: Build B1 Benji_stein\n\n12) Jesse: Move Y3 Jesse Benji_stein\n\tJesse: The first few moves are often roughly symmetrical.  It&#39;s not necessarily the only way, but it&#39;s often a good way to avoid being cut off from something important.  In this case, the blue economy, which was the quickest path to medium-sized ships.\r\n\r\nAnd to your second point, yes.  I do believe that was too aggressive.  You damage my home system, but you leave yours without the defense of a large ship, so that I can likely just stroll in and capture your ships.\n\n13) benji_stein: Trade B2 G2 Benji_stein\n\tbenji_stein: Oh, I realize that the early moves can be similar, I&#39;ve just never see it so move-for-move identical, other than the sizes of the pieces in our homeworlds. I was mostly just teasing.\r\n\r\nYou&#39;re probably right about not having a big ship; I somehow missed that it now brings our worlds next to each other. :(\n\n14) Jesse: Trade Y3 R3 Benji_stein\n\tJesse: Yeah, that&#39;s an easy oversight to make.\n\n\tJesse: A green ship doesn&#39;t really help you, at this point.  To counter-attack, you need red and yellow.  If you&#39;d traded for a red ship before I did, it would have given me some problems.\n\tbenji_stein: Yeah. I had a brain-fart. I&#39;d wanted to sacrifice the green ship and then build two others. I would have loved two red, but realized after I did it that the only thing I could build was blue, which doesn&#39;t help any.\r\n\r\nWith red, it&#39;s a little better, but I think we just end in a stalemate, or you sacrifice your big ship to attack more of mine.\n\tbenji_stein: But you&#39;re right. Far too agressive a move so early in the game; it&#39;s yours. Care for another?\n\tbenji_stein: Out of curiosity, and so I can learn more strategy, what would you have done if I&#39;d swapped my b2 for a r2 instead?\n\tJesse: If you had swapped for a red, I couldn&#39;t have swapped for a red.  (You could build another red, then another, and blow up my large ship.  I could only have forestalled that by capturing your blue, but you could just capture it back endlessly.)  So, I could either withdraw my y3 to defend my home system, essentially wasting two turns, or I could leave it there, and start building in my home system.  My objective would be to get a medium piece at home for defense, and to move out to a blue system to obtain reds I could sacrifice to take over your system.  It would be an awkward operation, and if I&#39;d read that possibility before I moved into your home system, I might have played more conservatively.\r\n\r\nAnd yes, I&#39;m always happy to help a new player on the road.\n\tbenji_stein: Interesting. I&#39;m kind of curious as to how a game like that would have panned out, but I&#39;m pretty sure I would have slipped up some other way to lose. If you&#39;d like, I&#39;d be willing to play it out, and offer to resign if I end up in a winning position.\r\n\r\nOtherwise, we can play a fresh game (eg without my taking a huge risk so early). I&#39;ve gone ahead and started a new game with you, I&#39;ll let it be your call, though I think there&#39;ll need to be a pass at some point to get it to the same turn order.\n\nHomeworlds Online (SDG# 10575)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.7, Ended: 2008.3.13\nParticipants: benji_stein (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tbenji_stein: I&#39;m not terribly experienced with homeworlds, but It&#39;s fun, and I&#39;d like to get better. Feel free to point out my mistakes, so I can learn from them.\n\n2) benji_stein: Homeworld G3 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) benji_stein: Build Y1 Benji_stein\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) benji_stein: Trade Y1 B1 Benji_stein\n\n7) TwoShort: Build Y1 Twoshort\n\n8) benji_stein: Build B1 Benji_stein\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) benji_stein: Trade B1 R1 Benji_stein\n\n11) TwoShort: Build G1 Twoshort\n\n12) benji_stein: Build R1 Benji_stein\n\n13) TwoShort: Build Y1 Grogar\n\n14) benji_stein: Build R2 Benji_stein\n\tTwoShort: Just in the realm of general strategy advice, red isn&#39;t useful until we&#39;re in contact, so taking much this early is odd unless you&#39;re trying to rush into it so fast I don&#39;t get any.  Dominating a color is a fine idea, but it&#39;s hard to do effectively with red.\n\n15) TwoShort: Build Y2 Twoshort\n\tbenji_stein: Makes sense, and I appreciate the tips. I took one just so I had one, and then decided it might be a good route into the 2pip ships.\n\n16) benji_stein: Build Y2 Benji_stein\n\n17) TwoShort: Discover Y1 Grogar Y2 Yellorama\n\n18) benji_stein: Trade Y2 G2 Benji_stein\n\n19) TwoShort: Discover G1 Twoshort Y3 Jethro\n\n20) benji_stein: Trade R2 B2 Benji_stein\n\n21) TwoShort: Build G1 Twoshort\n\n22) benji_stein: Build R2 Benji_stein\n\n23) TwoShort: Trade Y2 R2 Twoshort\n\n24) benji_stein: Build Y2 Benji_stein\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild G1 Twoshort\n\n26) benji_stein: Discover Y2 Benji_stein G2 Upchuck\n\n27) TwoShort: Build G2 Jethro\n\n28) benji_stein: Move G2 Benji_stein Upchuck\n\n29) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n30) benji_stein: Discover G2 Upchuck G3 Hurl\n\n31) TwoShort: Trade G1 B1 Bluestar\n\n32) benji_stein: Move R2 Benji_stein Yellorama\n\n33) TwoShort: Sacrifice Y2 Grogar\nMove B1 Bluestar Yellorama\nMove B1 Yellorama Benji_stein\nCatastrophe Benji_stein Blue\n\n34) benji_stein: Sacrifice Y2 Upchuck\nMove R1 Benji_stein Twoshort\nMove R1 Benji_stein Twoshort\nCatastrophe Twoshort Red\n\tbenji_stein: Ouch. Very nice.\n\n35) TwoShort: Sacrifice G2 Jethro\nBuild G1 Twoshort\nBuild G2 Twoshort\n\n36) benji_stein: Sacrifice Y3 Benji_stein\nMove R2 Yellorama Benji_stein\nMove G2 Hurl Twoshort\nPass\nCatastrophe Twoshort Green\n\tbenji_stein: Yikes. I think this is my only move, though it&#39;s a painful one...\n\n37) TwoShort: Trade Y3 R3 Twoshort\n\tbenji_stein: Hmm. I thought I&#39;d had one more ship somewhere. Well, now I&#39;m trapped at my homeworld with only red, and I&#39;m pretty sure there&#39;s nothing I can do to prevent you from biding your time and building up enough of a fleet to move in and catastrophe my system in one move.\n\tTwoShort: Yeah, this was the only way you could stop me from blowing you up immediately, but now you&#39;re stuck.  I can end it slightly faster than building up to the next catastrophe though...\n\n38) benji_stein: Build R1 Benji_stein\n\n39) TwoShort: Move R3 Twoshort Benji_stein\n\tbenji_stein: Well, if ou&#39;re going to do that, I&#39;ll at least take you out with me! :P\n\n40) benji_stein: Build R1 Benji_stein\nCatastrophe Benji_stein R\n\tTwoShort: Thanks for the game.  Sorry if I didn&#39;t come up with too much strategy advice, but I figure you got the part about paying attention to where your opponent can cause catastrophes :)\n\tbenji_stein: That&#39;s fair. It&#39;s definitely something I sometimes don&#39;t catch. I probably should have waited a little longer in retaliating to catastrophe your homeworld. \r\nGood game. Care for another? (No is a fine answer, I won&#39;t take offense.) \n\tTwoShort: I&#39;m happy to play another, any time.\n\n\nHomeworlds Online (SDG# 10658)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.7, Ended: 2008.3.26\nParticipants: benji_stein (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tbenji_stein: Also see comment at http://superdupergames.org/main.html?page=play_homeworlds&amp;num=10592, if interested. Let me know which you decide.\n\n2) benji_stein: Homeworld Y3 B2 G3\n\tJesse: I&#39;d really rather start fresh.\n\tbenji_stein: Sure. That&#39;s fine, too.\n\n3) Jesse: Build G1 Jesse\n\n\n4) benji_stein: Build G1 Benji_stein\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) benji_stein: Build G1 Benji_stein\n\n7) Jesse: Build G1 Jesse\n\n8) benji_stein: Trade G1 Y1 Benji_stein\n\n9) Jesse: Discover G1 Jesse B2 Moooo\n\n10) benji_stein: Trade G1 B1 Benji_stein\n\n11) Jesse: Build G1 Jesse\n\n\n12) benji_stein: Build B1 Benji_stein\n\n13) Jesse: Trade G1 B1 Jesse\n\n\n14) benji_stein: Trade B1 R1 Benji_stein\n\n15) Jesse: Build G1 Jesse\n\n16) benji_stein: Discover B1 Benji_stein G1 Upchuck\n\n17) Jesse: Build G2 Moooo\n\n18) benji_stein: Build G2 Benji_stein\n\n19) Jesse: Sacrifice G3 Jesse\nBuild G2 Moooo\nBuild G3 Jesse\nBuild G3 Jesse\n\n20) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild Y1 Benji_stein\nBuild Y2 Benji_stein\n\tbenji_stein: Nice. Didn&#39;t see that one.\n\n21) Jesse: Trade G2 R2 Moooo\n\n22) benji_stein: Trade Y2 R2 Benji_stein\n\tbenji_stein: Gah. I&#39;m tired and can&#39;t count. Those should have been red, and it won&#39;t let me re-undo it. *sigh*\n\tJesse: Well, we can correct it.  I&#39;ll go ahead and take my turn, then you can spend the next two turns trading those ships for red, while I pass.  How&#39;s that?\r\n\n\n23) Jesse: Pass\n\n24) benji_stein: Trade Y1 R1 Benji_stein\n\tbenji_stein: Works for me. You&#39;re very kind. Thanks!\n\n25) Jesse: Pass\n\n26) benji_stein: Sacrifice G3 Benji_stein\nBuild G2 Benji_stein\nBuild G3 Benji_stein\nBuild B1 Upchuck\n\n27) Jesse: Trade G2 Y2 Moooo\n\tJesse: No problem.  It would be a shame for the game to be derailed by a silly technical issue like that.\n\n28) benji_stein: Move G2 Benji_stein Upchuck\n\tbenji_stein: I agree, but it&#39;s still appreciated!\n\n29) Jesse: Discover B1 Jesse G2 Oinkoink\n\n30) benji_stein: Move Y1 Benji_stein Upchuck\n\n31) Jesse: Trade G3 Y3 Jesse\n\n32) benji_stein: Discover B1 Upchuck G3 Hurl\n\tbenji_stein: Sorry; I should stop undoing moves. I realize if I did that, you&#39;d be able to sac a green ship to build a lot of big blues, leaving me unable to build a big green ship or blue ship for fear of your destroying them.\n\n33) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R2 Moooo\nBuild R3 Moooo\n\tJesse: You&#39;re right that it&#39;s better practice to read the consequences of your moves before submitting, but don&#39;t worry about putting me out with undos.  As for me building a bunch of blues, if I built two of them, I would have three in one system.  Even if your yellow was still at your home system, you could sacrifice it to move one of your small blues to OinkOink and destroy my three blues.  That said, moving out the little yellow is still better.  You don&#39;t want three yellow pieces in your home system.  (I don&#39;t want three greens for any longer than necessary, either.)  You do want more mobility from Upchuck, and a place to safely build more yellow ships.  And, it is usually preferable to build new ships, than to trade a ship for a color you already have in the system.  (My move here will be an exception.)  You should be wanting to spread out your reds and build more of them, as well.\n\n34) benji_stein: Move R1 Benji_stein Upchuck\n\tJesse: I reduce myself to two greens in my home system, so I don&#39;t have to worry so much about my defenses being destroyed if you can get another green piece there.  And since there are already two green pieces everywhere you have a green ship, you can&#39;t build the large green without bringing the total to three.  (Notice that my medium yellow allows me to reach your home system with the G1 at Moooo.)  You can&#39;t really afford to build it, so I expect to be able to build it on my next turn.  I&#39;ve essentially snagged a Y3 without having to exhaust the pool of smaller yellow pieces first.\n\tbenji_stein: Yes, I had noticed that, actually. It&#39;s a similar situation with blues, but not quite as beneficial to you. I had been thinking of doing it before your comment, but I like the idea of preventing you from getting the free green. \n\n35) Jesse: Move R3 Moooo Hurl\n\n36) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild R3 Benji_stein\nBuild R3 Upchuck\n\n37) Jesse: Attack B1 Hurl\n\tbenji_stein: Out of curiosity, is it wiser to move out and threaten your three reds, or to sacrifice a green to build some bigger ships - probably the g3 (otherwise you get it), a b2 and b3, letting you get the final b3?\n\tJesse: If you&#39;d built the blues, I would have had the opportunity to be first to move out a red in preparation for building more.  I can&#39;t say definitively which is better, but I would prefer the move you chose, myself.\n\n38) benji_stein: Trade R3 Y3 Benji_stein\n\n39) Jesse: Sacrifice G3 Jesse\nBuild G3 Moooo\nBuild R3 Hurl\nBuild Y1 Moooo\n\tbenji_stein: That makes sense, and is probably why I liked it better. I realize the move I just made makes my reds vulnerable for catastrophe, but it was better than letting you get if cheaply, and you&#39;ll have to give up a y2 and r2 to destroy my r1 and r2, and the r3 which I otherwise got for free.\n\n40) benji_stein: Move R3 Upchuck Oinkoink\n\tJesse: Taking out the reds at your home world is certainly a strong possibility, even though it weakens my position in yellow.  On balance, I think I prefer this, though.\n\n41) Jesse: Sacrifice G3 Moooo\nBuild G3 Moooo\nBuild B2 Oinkoink\nBuild B3 Hurl\n\tbenji_stein: Hmm. Interesting choice. I&#39;m not sure I see the advantage. It lets you get a bunch of blues, but you could have done that before. I don&#39;t have any particularly thrilling moves. I think I&#39;d like to move to a new system, but I can&#39;t do a whole lot in it for several turns unless I move a green, ewhich leaves my reds still exposed...\n\tJesse: If I&#39;d built more than one blue before, you could have destroyed them all.  This way, I have the advantage in how my blues are dispersed.\n\n42) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild Y2 Upchuck\nBuild B3 Upchuck\n\tbenji_stein: Hmph. Probably shouldn&#39;t have told you I wanted to move out. You stle the last small piece. :P\n\n43) Jesse: Sacrifice Y2 Moooo\nMove B1 Oinkoink Upchuck\nMove B2 Oinkoink Upchuck\nCatastrophe Upchuck B\n\tbenji_stein: Gee, there are so many tempting moves. I was toying with blowing up your two big reds, but decided it was probably unwise.\n\tJesse: Yeah, that would have been very costly.\n\tbenji_stein: Yes, but it would have been two r3&#39;s of yours for a y3 and two r1s of mine. I&#39;d still have an r3, and you wouldn&#39;t be able to swap them for other colors. In pip-count I end up a little ahead, but I&#39;m not sure about positionally.\r\n\r\nThere was also the &quot;build more stuff&quot; move, but I think I&#39;m getting a little cramped, and I wouldn&#39;t want you to destory my fleet too easily, and it lets you get to the big blues for free, since I&#39;d have to build the medium one.\n\n44) benji_stein: Sacrifice Y3 Benji_stein\nMove G2 Benji_stein Upchuck\nMove G2 Upchuck Moooo\nMove G2 Upchuck Moooo\nCatastrophe Moooo G\n\n45) Jesse: Sacrifice Y1 Jesse\nDiscover R3 Hurl Y1 Meow\n\tbenji_stein: Yikes. Sure is getting crowded in this galaxy. I don&#39;t think I&#39;ve ever seen so many pieces in use before!\n\tJesse: Well then, let&#39;s clean it up a bit.\n\n46) benji_stein: Move Y1 Upchuck Oinkoink\n\tbenji_stein: Yikes. Excellent move. I&#39;m having a hard time coming up with what to do for mine.\n\tbenji_stein: The one thing that I think this system could do with is a before/after picture. Or specify what ships get destroyed in catastrophes.\n\n47) Jesse: Trade B3 Y3 Hurl\n\tbenji_stein: In the end I was torn between destroying your reds in hurl, or your green in Moooo. The latter was a lot more expensive for me, but you now have only a single g1).\r\n\r\nOut of curiosity, what would you have done? A different choice from my final two is also a fine answer. \n\n48) benji_stein: Con Y2 Oinkoink\n\n49) Jesse: Build Y2 Hurl\n\n50) benji_stein: Move R3 Oinkoink Upchuck\n\tbenji_stein: I&#39;m confused. What are you threatening, here? You don&#39;t have enough greens, blues or yellows to catastrophe my star, and blowing up the reds hurts you more than me. You could potentially move in a couple of big ships, but I could sacrifice an r2 or r3 to capture them at the same time.\r\n\r\nI guess I&#39;m just not sure how to respond or plan... :(\n\tJesse: It&#39;s not necessarily an immediate threat.  I want to have my R3s separated, to protect them.  I want a foothold adjacent to your homeworld, so I can attack eventually, and to keep the pressure on.  Trading for the Y3 is to make sure you can&#39;t take the advantage in yellow, increase my maneuverability, and improve my rebuilding (medium ships).\n\tJesse: It does become difficult to plan at this stage of the game.  Beginners especially have difficulty figuring out what they should be doing.  With both sides having solid positions, it can take a while of jockeying for advantage before either side gains a position to strike a decisive blow.\n\n51) Jesse: Trade R2 G2 Moooo\n\tbenji_stein: OK. That makes sense. I just wanted to make sure that I wasn&#39;t missing something critical.\r\n\r\nFeel free to point out whatever you think migt be useful. I don&#39;t normally get to this part, since the other people I play with are beginners as well. \n\n52) benji_stein: Move R3 Upchuck Moooo\n\n53) Jesse: Sacrifice G2 Moooo\nBuild B1 Hurl\nBuild R2 Moooo\n\n54) benji_stein: Attack R2 Moooo\n\n55) Jesse: Move R3 Meow Moooo\nCatastrophe Moooo R\n\n56) benji_stein: Build R2 Upchuck\n\n57) Jesse: Move Y3 Hurl Moooo\n\n58) benji_stein: Build Y1 Upchuck\n\n59) Jesse: Trade Y3 G3 Moooo\n\n\n60) benji_stein: Trade R1 B1 Benji_stein\n\n61) Jesse: Build Y3 Moooo\n\n62) benji_stein: Move Y2 Upchuck Benji_stein\n\n63) Jesse: Discover Y1 Moooo G1 Neigh\n\tbenji_stein: Ick. I botched that one up. I thought I had blue somewhere else... gave you a free 3-pointer. *sigh* \n\tJesse: One option would have been to use it as a system marker, but that has its own issues.\n\n64) benji_stein: Discover Y2 Benji_stein R1 Retch\n\n65) Jesse: Build G2 Moooo\n\n66) benji_stein: Build G2 Benji_stein\n\n67) Jesse: Move B1 Hurl Neigh\n\tJesse: Why did you move that to your home world, rather than discovering a new system?\n\tbenji_stein: Hmm. I&#39;m not entirely sure. I undid the blue move because if I left two yellows in both systems it allowed you to do the swap-yellow+rebuild from the previous two turns. There hadn&#39;t been much that I&#39;d wanted to remove from the stash, since taking a blue, or green would give you access to the bigger ships. But you&#39;re right, I should have seen your move coming, so I effectively wasted a turn.\n\n68) benji_stein: Move B1 Benji_stein Retch\n\n69) Jesse: Sacrifice G3 Moooo\nBuild B2 Hurl\nBuild B3 Neigh\nBuild G3 Moooo\n\n\n70) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild R2 Benji_stein\nBuild B3 Retch\n\n71) Jesse: Trade B3 R3 Neigh\n\n72) benji_stein: Trade B3 R3 Retch\n\n73) Jesse: Sacrifice G3 Moooo\nBuild G3 Moooo\nBuild B3 Neigh\nBuild B3 Hurl\n\n74) benji_stein: Move B1 Retch Hurl\nCatastrophe Hurl B\n\tbenji_stein: I feel like that was probably not a great move, but there&#39;s not much better I can do, I think.\n\n75) Jesse: Move G3 Moooo Upchuck\n\n76) benji_stein: Move G2 Benji_stein Retch\n\n77) Jesse: Sacrifice R3 Neigh\nAttack R1 Upchuck\nAttack R2 Upchuck\nAttack Y1 Upchuck\n\n78) benji_stein: Discover R3 Retch B2 Spew\n\n79) Jesse: Build B1 Neigh\n\n80) benji_stein: Discover Y1 Oinkoink B3 Barf\n\n81) Jesse: Move B3 Neigh Benji_stein\n\tbenji_stein: Ouch. I saw that coming, but there wasn&#39;t a whole lot I could do. I felt the threat of blowing up my greens was worse. *sigh* \n\n82) benji_stein: Attack B3 Benji_stein\n\tbenji_stein: Hmm. Seems like the backend system could do with a little work in organizing the stars. \n\tJesse: Yeah, it just sorts them in alphabetical order, which is almost never what you want.  And the systems could be shown with much less space, and the ships organized within the systems, as well.  Easy enough to do for binary games (my own software does a fine job of resizing things), but SDG needs to cope with 3- and 4-player games, as well, where the ideal organization is less obvious.\n\n83) Jesse: Sacrifice Y2 Hurl\nMove B1 Neigh Benji_stein\nMove B1 Neigh Benji_stein\nCatastrophe Benji_stein B\n\tbenji_stein: True, I&#39;d forgotten about 3/4 player. 4 Would be odd, but 2 or 3 seems doable by arranging them so that the stars that are connected are nearest, in groups of the same size. So for this game, you&#39;d have my homeworld, all the 1s, all the 3s all the 2s, and then your homeworld. Yes, the 1s connect to the 2s, but at least the groups are easily seen.\n\n84) benji_stein: Build Y2 Oinkoink\n\tbenji_stein: *sigh* I think I know what you&#39;re about to do, and there&#39;s nothing I can do to stop it.\n\tJesse: Yes, that&#39;s exactly how we arrange the systems when we play binary face to face.\n\n85) Jesse: Sacrifice Y3 Jesse\nMove Y3 Moooo Benji_stein\nMove Y1 Upchuck Benji_stein\nMove Y1 Neigh Benji_stein\nCatastrophe Benji_stein Y\n\tJesse: If you were expecting me to sac a Y3 and throw all the blues in at once, here&#39;s a lesson in resource conservation.\n\n\tJesse: Yes, it&#39;s expensive.  Blasting someone&#39;s home system always is.  That&#39;s why I prefer to capture their ships, if possible.  Or, failing that, wait until I&#39;m sure I can finish the job.  Notice that by saving my Y3s, I now have 3 yellows adjacent to your world, and another Y3 ready to sacrifice.\n\tJesse: Good game.  Do you feel like you&#39;re getting the hang of it?\n\tbenji_stein: Very nice. I saw the yellows getting close (why I&#39;d moved a yellow out earlier), but I&#39;d missed the threat of the third one closer once you&#39;d catastrophed my blues.\r\n\r\nI think I&#39;m getting a little better (you would probably be a better judge), but I still don&#39;t have the middle game, as you mentioned. I felt like I was always struggling to respond to your moves, and not doing much offensively, myself. Particularly in those cases where I can see it coming (probably too late), but not do anything about it.\r\n\r\nI&#39;d be up for another if you&#39;d like, but don&#39;t feel obliged if you&#39;re tired of it. I&#39;m sure I&#39;m not a terribly challenging opponent.\n\nHomeworlds Online (SDG# 10668)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.10, Ended: 2008.4.24\nParticipants: alexcobo (S), stoneaxe (N)\nWinner: stoneaxe\n\n1) stoneaxe: Homeworld B3 Y2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\tstoneaxe: Hi!  Thanks for playing- good luck!\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) alexcobo: Build Y1 Alexcobo\n\talexcobo: Hello. Thank you! Good luvk.\n\n5) stoneaxe: Trade G1 R1 Stoneaxe\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) stoneaxe: Build G1 Stoneaxe\n\n10) alexcobo: Trade Y1 G1 Alexcobo\n\n11) stoneaxe: Discover G1 Stoneaxe Y1 Copper\n\n12) alexcobo: Discover R1 Alexcobo Y1 Highway\n\n13) stoneaxe: Build G2 Copper\n\n14) alexcobo: Trade G1 R1 Alexcobo\n\n15) stoneaxe: Build R2 Stoneaxe\n\n16) alexcobo: Build Y1 Alexcobo\n\n17) stoneaxe: Discover G2 Copper B2 Bluesband\n\n18) alexcobo: Move R1 Alexcobo Highway\n\n19) stoneaxe: Build G1 Stoneaxe\n\n20) alexcobo: Build Y2 Alexcobo\n\n21) stoneaxe: Trade R2 Y2 Stoneaxe\n\n22) alexcobo: Trade Y2 B2 Alexcobo\n\n23) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G2 Copper\nBuild G2 Bluesband\nBuild G3 Stoneaxe\n\n24) alexcobo: Build Y2 Alexcobo\n\n25) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G3 Bluesband\nBuild G3 Stoneaxe\nBuild R2 Stoneaxe\n\n26) alexcobo: Trade Y3 R3 Alexcobo\n\n27) stoneaxe: Discover Y2 Stoneaxe B1 Bonham\n\n28) alexcobo: Move R3 Alexcobo Copper\n\n29) stoneaxe: Sacrifice Y2 Bonham\nMove G3 Bluesband Highway\nMove G3 Highway Alexcobo\n\n30) alexcobo: Attack G2N Copper\n\n31) stoneaxe: Sacrifice R2 Stoneaxe\nAttack B2 Alexcobo\nAttack Y2 Alexcobo\n\n32) alexcobo: Move G2 Copper Stoneaxe\nCatastrophe Stoneaxe G\n\n33) stoneaxe: Sacrifice G1 Copper\nBuild R2 Stoneaxe\n\talexcobo: Alas! Too little too late. Good game!\n\n34) alexcobo: Build Y2 Alexcobo\n\tstoneaxe: Ahh!  Nice sacrifice. Close one!  Let me see if I can be careful and not screw this one up...\n\n35) stoneaxe: Sacrifice R2 Stoneaxe\nAttack Y2 Alexcobo\nAttack Y1 Alexcobo\n\n\nHomeworlds Online (SDG# 10689)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.11, Ended: 2008.3.24\nParticipants: TwoShort (S), wyons (N)\nWinner: TwoShort\n\n1) wyons: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) wyons: Build G1 Wyons\n\n4) TwoShort: Build G1 Twoshort\n\n5) wyons: Trade G1 R1 Wyons\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) wyons: Build G1 Wyons\n\n8) TwoShort: Build B1 Twoshort\n\n9) wyons: Trade G1 Y1 Wyons\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) wyons: Build G1 Wyons\n\n12) TwoShort: Build B2 Twoshort\n\twyons: yaarg! this looks unpleasant rather quickly- I inderestimated the value of an early blue monopoly\n\n13) wyons: Discover G1 Wyons Y3 Portsalut\n\n14) TwoShort: Discover B1 Twoshort B2 Blitz\n\n15) wyons: Build G1 Portsalut\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Grogar\nBuild B3 Blitz\nBuild B3 Twoshort\n\n17) wyons: Move G1 Portsalut Grogar\n\twyons: :(   I think I am pretty near resigning!.. but will play on a bit just to see what happens.  \n\n18) TwoShort: Trade B3 G3 Blitz\n\twyons: g1 portsalut grogar\n\n19) wyons: Build G1 Wyons\n\n20) TwoShort: Discover B2 Twoshort Y2 Yolonda\n\n21) wyons: Build G2 Portsalut\n\n22) TwoShort: Discover B2 Yolonda G3 Greenland\n\n23) wyons: Sacrifice G3 Wyons\nBuild G2 Wyons\nBuild R1 Wyons\nBuild G3 Grogar\n\n24) TwoShort: Sacrifice B2 Greenland\nTrade B3 G3 Grogar\nTrade B3 R3 Twoshort\n\n25) wyons: Sacrifice G3 Grogar\nBuild G3 Wyons\nBuild Y1 Wyons\nBuild Y1 Wyons\n\n26) TwoShort: Sacrifice G3 Grogar\nBuild G3 Blitz\nBuild B2 Grogar\nBuild B3 Blitz\n\n27) wyons: Sacrifice R1 Wyons\nAttack B1S Grogar\n\n28) TwoShort: Sacrifice G3 Blitz\nBuild G3 Blitz\nBuild B3 Grogar\nBuild R1 Twoshort\n\n29) wyons: Sacrifice B1 Grogar\nTrade G1 B1 Portsalut\n\n30) TwoShort: Sacrifice B2 Grogar\nTrade B3 Y3 Blitz\nTrade R1 G1 Twoshort\n\n31) wyons: Sacrifice G2 Wyons\nBuild G2 Grogar\nBuild B2 Portsalut\n\n32) TwoShort: Sacrifice G3 Blitz\nBuild G3 Twoshort\nBuild Y2 Blitz\nBuild R1 Twoshort\n\n33) wyons: Sacrifice G1 Wyons\nBuild G1 Grogar\nCatastrophe Grogar Green\n\n\twyons: Although I just about seem to have been hanging  in there for some time it has been pretty hopeless since about the 11th move and I am sure the end is only a matter of time. Well played and thanks for the game- the first I have lost!\n\nHomeworlds Online (SDG# 10683)\nStarted: 2008.3.11, Ended: 2008.3.12\nParticipants: gui_jim (S), velgarath (N)\nWinner: velgarath\n\n1) velgarath: Homeworld G1 B2 Y3\n\n2) gui_jim: Homeworld Y1 G2 B3\n\n3) velgarath: Build Y1 Velgarath\n\n4) gui_jim: Build B1 Gui_jim\n\n5) velgarath: Discover Y1 Velgarath B3 Friki\n\n6) gui_jim: Trade B1 Y1 Gui_jim\n\n7) velgarath: Build Y2 Velgarath\n\n8) gui_jim: Discover Y1 Gui_jim G3 Kaito\n\n9) velgarath: Move Y2 Velgarath Friki\n\n10) gui_jim: Build Y2 Kaito\n\n11) velgarath: Trade Y2 R2 Friki\n\n12) gui_jim: Build B1 Gui_jim\n\n13) velgarath: Move R2 Friki Gui_jim\n\n14) gui_jim: Trade B3 Y3 Gui_jim\n\n15) velgarath: Attack B1 Gui_jim\n\n16) gui_jim: Build Y2 Gui_jim\n\n17) velgarath: Trade R2 Y2 Gui_jim\nCatastrophe Gui_jim Y\n\n\tvelgarath: JAJAJAJAJAJAJA.\r\nCUIDADO CON LAS CATASTROFES!!!!!\n\nHomeworlds Online (SDG# 10701)\nStarted: 2008.3.13, Ended: 2008.3.17\nParticipants: velgarath (S), gui_jim (N)\nWinner: gui_jim\n\n1) gui_jim: Homeworld B3 G2 Y3\n\n2) velgarath: Homeworld B1 G2 Y3\n\n3) gui_jim: Build Y1 Gui_jim\n\n4) velgarath: Build Y1 Velgarath\n\n5) gui_jim: Discover Y1 Gui_jim G1 Kaito\n\n6) velgarath: Discover Y1 Velgarath B3 Trantor\n\n7) gui_jim: Build Y1 Kaito\n\n8) velgarath: Build Y2 Velgarath\n\n9) gui_jim: Build Y2 Gui_jim\n\n10) velgarath: Move Y2 Velgarath Trantor\n\n11) gui_jim: Discover Y1 Kaito B3 Krypton\n\n12) velgarath: Trade Y2 R2 Trantor\n\n13) gui_jim: Build Y2 Kaito\n\n14) velgarath: Move R2 Trantor Kaito\n\n15) gui_jim: Sacrifice Y2 Gui_jim\nMove Y2 Kaito Krypton\nMove Y1 Kaito Trantor\n\n16) velgarath: Move Y1 Trantor Kaito\n\n17) gui_jim: Build Y2 Gui_jim\n\n18) velgarath: Build Y2 Kaito\n\n19) gui_jim: Sacrifice Y3 Gui_jim\nMove Y1 Trantor Velgarath\nMove Y1 Krypton Velgarath\nMove Y2 Krypton Velgarath\nCatastrophe Velgarath Y\n\n\nHomeworlds Online (SDG# 10657)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.14, Ended: 2008.3.16\nParticipants: benji_stein (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) benji_stein: Homeworld B2 G3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) benji_stein: Build Y1 Benji_stein\n\n5) TwoShort: Build G1 Twoshort\n\n6) benji_stein: Build Y1 Benji_stein\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) benji_stein: Trade Y1 B1 Benji_stein\n\n9) TwoShort: Build G1 Twoshort\n\n10) benji_stein: Trade Y1 G1 Benji_stein\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) benji_stein: Build G2 Benji_stein\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\tbenji_stein: Fast moves, these. It&#39;s great when the opponent happens to be at their computer and we can hammer out a bunch at once. Then again, the early moves don&#39;t require as much thinking. ;)\n\tbenji_stein: Ha. Murphy&#39;s law. Right when I comment, you go off. *sigh*\n\n14) benji_stein: Sacrifice G2 Benji_stein\nBuild Y1 Benji_stein\nBuild B1 Benji_stein\n\tTwoShort: I&#39;m at work, so when the email comes in, if I&#39;ve got a second and the move is clear, I&#39;ll make it.  It means you don&#39;t get so much in the way of strategy advice though.\n\tTwoShort: Anyway, the general strategy advice is in the early game, focus mainly on trying to get more 3 pointers than the other guy.\r\n  Tactics-wise, sacrificing a g3 such that you regrow the same piece you sacrificed is called the &quot;Factory&quot;, and can be devastating if I can keep doing it and you can&#39;t.  Also note that by growing that 3rd G in your homeworld, you have no place to  build another G so I was free to leave the last g3 available.\n\tbenji_stein: Ouch. You&#39;re right; I&#39;d missed that move. Very nice. Makes sense about work, I do the same, though I try not to check my personal mail too often.\r\n\r\nThe advice is always appreciated, but I do understand being busy. I probably shouldn&#39;t do this, but at least it prevents you from getting the final green so easily...\n\n15) TwoShort: Trade G2 Y2 Bluonia\n\n16) benji_stein: Discover G1 Benji_stein B1 Retch\n\n17) TwoShort: Discover G2 Bluonia Y1 Yolonda\n\n18) benji_stein: Move B1 Benji_stein Retch\n\n19) TwoShort: Build G2 Yolonda\n\tTwoShort: Forgot you were playing a 2-3 Homeworld.  FYI, conventional wisdom holds that 1-2 is the best...\n\n20) benji_stein: Build G2 Retch\n\tbenji_stein: No problem. I often play a 1-2, but they all have advantages. With a 2-3, I can lock you out of a large piece, plus it&#39;s harder to reach my homeworld if there aren&#39;t many small pieces left in the stash.\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\nBuild Y2 Bluonia\n\n22) benji_stein: Build B2 Retch\n\tbenji_stein: I know you&#39;re about to use your factory to get the last two greens, but there&#39;s nothing I can do to stop you. swapping a green out only cuts me out of it entirely, and building a green just lets you get something of a different color as well (probably yellow)\n\n23) TwoShort: Trade G3 B3 Bluonia\n\tbenji_stein: aww, screw it. I can&#39;t afford to only have one green ship. *sigh*\n\n24) benji_stein: Sacrifice Y1 Benji_stein\nDiscover B1 Retch G3 Hurl\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Bluonia\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n26) benji_stein: Sacrifice Y3 Benji_stein\nMove G2 Retch Benji_stein\nMove B2 Retch Hurl\nMove B1 Hurl Bluonia\nCatastrophe Bluonia B\n\n27) TwoShort: Move G2 Yolonda Benji_stein\n\n28) benji_stein: Trade B1 R1 Benji_stein\n\tbenji_stein: Ha. I knew there was a reason I was keeping a y1 around - I can&#39;t easily get into that system.\r\nThis is probably a really bad idea, but I feel like that system is just too powerful to pass it up.\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Benji_stein\nBuild Y2 Twoshort\nBuild G3 Twoshort\nCatastrophe Benji_stein Green\n\tTwoShort: Yeah, giving up your 3 point pretty much spells doom;  it means my 3 is invulnerable to red, so I can win if I take a red and march the three to your Homeworld without your getting a 3 of blowing mine up.  In this case, I&#39;m going to start by shortening the march :)\n\n30) benji_stein: Sacrifice G1 Retch\nBuild R1 Benji_stein\n\n31) TwoShort: Trade Y2 R2 Twoshort\n\n32) benji_stein: Trade R1 G1 Benji_stein\n\tbenji_stein: Yeah, I figure it&#39;ll be difficult, but I think if I hadn&#39;t done it I would have been doomed pretty quickly, as well.\n\tbenji_stein: crud. I knew there was a reason I&#39;d wanted to swap the green one. I switched it to the 1-pointer so I could keep my green in case I wanted to build several ships at once. *sigh* \n\n33) TwoShort: Move G3 Twoshort Benji_stein\n\n34) benji_stein: Build R1 Benji_stein\n\n\tbenji_stein: Yeah, it&#39;s yours. I thought I could stave it off a little longer, but you just sac your red ship to take both of my reds. I build another green, and you blow them all up with the g1 from your homeworld.\r\n\r\nInteresting game, though I must say it was pretty miserable on my part.\n\nHomeworlds Online (SDG# 10650)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.14, Ended: 2008.4.24\nParticipants: benji_stein (S), jeep (N)\nWinner: benji_stein\n\n1) jeep: Homeworld B3 Y1 G3\n\tbenji_stein: I&#39;m not terribly experienced with homeworlds, but It&#39;s fun, and I&#39;d like to get better. Feel free to point out my mistakes, so I can learn from them. \n\n2) benji_stein: Homeworld G2 B3 Y3\n\tjeep: I&#39;ll give it a shot, but I&#39;m not great at this game either.\n\tbenji_stein: That&#39;s fair. I just thought I&#39;d give you a warning. ;)\n\n3) jeep: Build G1 Jeep\n\n4) benji_stein: Build Y1 Benji_stein\n\n5) jeep: Build G1 Jeep\n\n6) benji_stein: Build Y1 Benji_stein\n\n7) jeep: Discover G1 Jeep B2 Changer\n\n8) benji_stein: Trade Y1 B1 Benji_stein\n\n9) jeep: Trade G1 Y1 Changer\n\n10) benji_stein: Build Y2 Benji_stein\n\n11) jeep: Build G1 Jeep\n\n12) benji_stein: Trade Y2 G2 Benji_stein\n\n13) jeep: Move G1 Jeep Changer\n\tbenji_stein: Could we try to pick up the pace a little? Your moves all seem to take several days.\n\tjeep: Not really.  I chose 3/2/10 because that is the pace I can maintain.  When I&#39;m not too busy, I speed up and clear the queue every day.  But my moves will generally take close to 2 days per move.\n\n14) benji_stein: Build Y2 Benji_stein\n\n15) jeep: Build Y2 Changer\n\tbenji_stein: OK, I guess...\n\n16) benji_stein: Trade Y1 R1 Benji_stein\n\tjeep: Sorry if it&#39;s too slow...  You can always start another game.  Then you&#39;re more likely to have a play to make every day.\n\tbenji_stein: That&#39;s OK. I was actually playing a few others, but they ended recently. I realize that it doesn&#39;t have to be played as fast, but all ther others seemed to be. I guess I&#39;m just a little impatient about it. I&#39;ll try not to be - work and other things are a good reason to take your time.\n\n17) jeep: Sacrifice G3 Jeep\nBuild G1 Changer\nBuild G2 Changer\nBuild G3 Jeep\n\n18) benji_stein: Discover G2 Benji_stein B1 Retch\n\n19) jeep: Trade G1 R1 Changer\n\n20) benji_stein: Move Y2 Benji_stein Retch\n\tjeep: Tough decision there... I was tempted to go for the green monopoly.\n\n21) jeep: Discover G2 Changer Y3 Mover\n\n22) benji_stein: Discover G2 Retch Y2 Hurl\n\tbenji_stein: If you had tried, I would have destroyed a lot of your ships...\n\tjeep: Impossible.  I would not have built, I would have moved into large green worlds.  Taken them out of circulation instead of building them.  Then later, I could have probably cashed them in.\n\n23) jeep: Discover G1 Changer Y3 Cache\n\n24) benji_stein: Build R1 Benji_stein\n\n25) jeep: Discover Y1 Changer G3 Grower\n\n26) benji_stein: Build R2 Benji_stein\n\n27) jeep: Sacrifice G3 Jeep\nBuild G1 Cache\nBuild G3 Jeep\nBuild G3 Mover\n\n28) benji_stein: Move R2 Benji_stein Retch\n\n29) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Changer\nBuild R2 Changer\n\n30) benji_stein: Move R2 Retch Cache\n\n31) jeep: Move G3 Mover Retch\n\n32) benji_stein: Attack G1 Cache\n\n33) jeep: Sacrifice R1 Changer\nAttack Y2S Retch\n\n34) benji_stein: Sacrifice Y3 Benji_stein\nMove G1 Cache Hurl\nMove G1 Hurl Jeep\nMove G2 Hurl Jeep\nCatastrophe Jeep Green\n\n\tbenji_stein: Good game. Thanks!\n\tjeep: *laugh* Caught me not paying attention. Thanks for the game.\n\nHomeworlds Online (SDG# 10763)\nStarted: 2008.3.23, Ended: 2008.3.28\nParticipants: xeger (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) xeger: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) xeger: Build G1 Xeger\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) xeger: Discover G1 Xeger Y3 Countrywide\n\n7) ts52: Trade G1 R1 Grover\n\n8) xeger: Build G1 Xeger\n\n9) ts52: Build G1 Ts52\n\n10) xeger: Build G2 Xeger\n\n11) ts52: Move G1 Ts52 Countrywide\n\n12) xeger: Move G2 Xeger Grover\n\n13) ts52: Move G1 Countrywide Xeger\n\n14) xeger: Trade G1 R1 Xeger\n\n15) ts52: Sacrifice R1 Grover\nAttack R1S Xeger\n\n16) xeger: Move G1 Countrywide Ts52\n\txeger: Erm ... how were you able to take over my r1 when I had a g3 in the system? Perhaps I need to brush up on the rules!\n\n17) ts52: Trade G3 R3 Ts52\n\txeger: Ahh, I see -- I thought my larger ship would protect ANY of the smaller ships from being attacked. Live and learn!\n\n18) xeger: Trade G2 R2 Grover\n\tts52: Yeah, you can attack any ship up to the size of your largest ship in the system.\n\n19) ts52: Build G1 Xeger\n\n20) xeger: Trade G3 R3 Xeger\n\txeger: Goodbye, cruel world!\n\n21) ts52: Build R1 Xeger\n\n22) xeger: Attack R1 Xeger\n\n23) ts52: Build R1 Xeger\nCatastrophe Xeger Red\n\tts52: Thanks for the game. A few tips, creating a &#39;small universe&#39; (using the same size pieces in your homeworld as your opponents) makes the game much tougher, as it&#39;s one fewer step for your enemy to get to your homeworld.\n\txeger: Thanks for the tip.\n\n\nHomeworlds Online (SDG# 10771)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.24, Ended: 2008.5.27\nParticipants: wyons (S), jeep (N)\nWinner: wyons\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) wyons: Homeworld B1 R3 G3\n\n3) jeep: Build G1 Jeep\n\n4) wyons: Build G1 Wyons\n\n5) jeep: Trade G1 Y1 Jeep\n\twyons: hi there, enjoy the game!\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) jeep: Build Y2 Jeep\n\n8) wyons: B Y2 Wyons\n\n9) jeep: Discover Y1 Jeep G3 Grower\n\n10) wyons: Discover Y1 Wyons G2 Bag\n\n11) jeep: Build G1 Jeep\n\n12) wyons: Build G1 Wyons\n\n13) jeep: Discover Y2 Jeep B3 Changer\n\n14) wyons: Trade G1 B1 Wyons\n\n15) jeep: Discover G1 Jeep Y3 Cache\n\n16) wyons: Build B1 Wyons\n\n17) jeep: Build G1 Jeep\n\n18) wyons: Move B1 Wyons Bag\n\n19) jeep: Trade G1 R1 Jeep\n\n20) wyons: Build B2 Bag\n\n21) jeep: Build G1 Jeep\n\n22) wyons: Build B2 Wyons\n\tjeep: Yeah, after staring at things for 3 days, it still hasn&#39;t improved for me.\n\n23) jeep: Build R1 Jeep\n\n24) wyons: Build B3 Bag\n\twyons: I agree you might be in trouble. But there are so many twists and turns with this game........:)\n\n25) jeep: Discover R1 Jeep B3 Sigh\n\n26) wyons: Trade B3 R3 Bag\n\n27) jeep: Discover G1 Jeep B3 Scary\n\n28) wyons: Build R1 Bag\n\n29) jeep: Build G1 Jeep\n\n30) wyons: Build G2 Wyons\n\n31) jeep: Sacrifice G3 Jeep\nBuild G2 Scary\nBuild G3 Jeep\nBuild R2 Sigh\n\n32) wyons: Move R3 Bag Scary\n\n\tjeep: Sorry.  *sigh*  Life has taken over my time.\n\nHomeworlds Online (SDG# 10777)\nVariants: &quot;Hard time&quot;\nStarted: 2008.3.26, Ended: 2008.6.1\nParticipants: dsheldon (S), nycavri (N)\nWinner: dsheldon\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: Hello again!  TaGG.\n\n2) dsheldon: Homeworld B3 Y1 G3\n\n3) nycavri: Build G1 Nycavri\n\n4) dsheldon: Build G1 Dsheldon\n\n5) nycavri: Trade G1 Y1 Nycavri\n\tdsheldon: Hello yourself.  I haven&#39;t had a game in months, I hope I&#39;m not too rusty.\n\tnycavri: I can only hope . . . *grin*\n\n6) dsheldon: Discover G1 Dsheldon B2 Chip\n\n7) nycavri: Build G1 Nycavri\n\n8) dsheldon: Build G1 Chip\n\n9) nycavri: Build G2 Nycavri\n\n10) dsheldon: Build G2 Dsheldon\n\n11) nycavri: Discover G1 Nycavri Y3 Mvb\n\n12) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Dsheldon\nBuild G3 Dsheldon\nBuild G3 Chip\n\n13) nycavri: Discover G1 Mvb Y2 Mvg\n\n14) dsheldon: Discover G2 Dsheldon Y2 Frito\n\n15) nycavri: Move G1 Mvg Dsheldon\n\tnycavri: Ack.  Was right the first time . . .\n\n16) dsheldon: Trade G2 R2 Dsheldon\n\n17) nycavri: Sacrifice G2 Nycavri\nBuild G2 Dsheldon\nBuild G2 Dsheldon\nCatastrophe Dsheldon G\n\n18) dsheldon: Trade G1 Y1 Chip\n\n19) nycavri: Build G1 Nycavri\n\tdsheldon: Oh yeah... you can sacrifice stuff to go back in the pool too.  Somehow I thought there was no Green available to you.  This could be... hard.\n\n20) dsheldon: Build G1 Frito\n\tnycavri: When you didn&#39;t respond to the threat, I assumed I must have made a mistake!\n\n21) nycavri: Build G2 Nycavri\n\n22) dsheldon: Move G3 Chip Dsheldon\n\n23) nycavri: Discover G2 Nycavri Y3 Iw\n\n24) dsheldon: Sacrifice G1 Frito\nBuild Y2 Chip\n\n25) nycavri: Trade G1 R1 Nycavri\n\n26) dsheldon: Build Y3 Chip\n\n27) nycavri: Discover G2 Iw B2 Jw\n\n28) dsheldon: Discover Y2 Chip G3 Hulk\n\n29) nycavri: Discover Y1 Nycavri B3 Fr\n\n30) dsheldon: Build Y3 Hulk\n\n31) nycavri: Build G1 Nycavri\n\n32) dsheldon: Sacrifice Y2 Hulk\nMove Y3 Hulk Jw\nMove Y3 Chip Fr\n\n33) nycavri: Build G1 Jw\n\n34) dsheldon: Sacrifice R2 Dsheldon\nAttack G1N Jw\nAttack G2N Jw\n\n35) nycavri: Sacrifice G1 Nycavri\nBuild Y2 Fr\n\tdsheldon: I&#39;m not sure it will help you much this time, but you need to be much more aggresive.  Since the beginning of the game you&#39;ve overdeveloped near your homeworld.  So far you&#39;ve brought one medium ship within a jump of my homeworld while I frequently have had several larges threatening yours.  I put some notes on the Icehousegames wiki about this last week:\r\n\r\nhttp://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy#The_Early_Game_-__Building_Up\r\n\r\nWe&#39;re past the opening, but it&#39;s still something to think about.  For reference, the simple rubric here gives you a score of 11 to my 21, which doesn&#39;t even give an accounting of your unfavorable color distribution.\r\n\r\nI hope this doesn&#39;t come across as grandstanding and is taken as the constructive advice it is intended to be.\n\tnycavri: No problem, d.  I know I can use the help!\r\n\r\nI&#39;ve found when I&#39;m agressive, I lose quickly.  Of course, when I&#39;m defensive, I still end up losing, but less quickly!\r\n\r\nI was concentrating on stalling you with my green catastrophe gambit, but since it has looked to me that I was always one move away from losing a home star, and have played the only move I could see which defended against this.\r\n\r\nI have to go back and see if there was somewhere where I could have been more agressive, but if memory serves, this would only have been possible if you missed an obvious opening . . .\r\n\r\n\r\nI continue to either get greamed by experts, or beat rookies on silly mistakes.  Neither is especially satisfying.  I really would like to play Homeworlds with someone at my own level . . .\n\tnycavri: I think the pace of play also hurts me here, where it doesn&#39;t on other SDG games.\r\n\r\nI have a pretty good idea of my/your next few moves once I look over the board but, even with the notes, I often miss something when I come bac for my move sometimes days later . . .\n\n36) dsheldon: Sacrifice G2 Jw\nBuild Y3 Fr\nBuild G1 Dsheldon\nCatastrophe Fr Y\n\n37) nycavri: Build G2 Nycavri\n\tdsheldon: Maybe you would have an easier time if you don&#39;t have so many active games.  Our game is he only one I&#39;m in right now.  It makes it pretty easy to concentrate, even with several days between moves.\r\n\r\nI would be overjoyed if I could ever play against you face to face.\r\n\r\nHave you tried looking for SDG players with a similar ranking?  The interface to do that is pretty clunky, but I&#39;m pretty sure it&#39;s possible.\n\tnycavri: It&#39;s true, I do prefer a certain type of game here - one where I can see the whole situation in one look.  Penguin Soccer is like that, and Blam!  Also games like Photonic Attack and Diagonals.\r\n\r\nWhere are you based?  I&#39;m in New York.  My full time job in Summer Camping means I don&#39;t get to do any of the big f2f cons (althought I did get to NonCon this year, which was great).\r\n\r\nThe problem with the ranking system is that to get a score as low as mine, you have to have an awful lot of games under your belt.  Most people quit on a game long before their score gets into the 1400s . . .\n\n38) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Frito\nBuild G3 Chip\nBuild G3 Dsheldon\n\n39) nycavri: Build R1 Nycavri\n\tdsheldon: I&#39;m in Pittsburgh, I also never get out to cons and, with a baby on the way in September, it&#39;s not something I expect to be able to do for a while.  But my sister lives in New York City and it&#39;s not impossible that I would find my way out there sometime.\n\tnycavri: Congrats on your &quot;package in the mail&quot;!  My wife goes off the pill this summer . . .\n\n40) dsheldon: Discover G2 Frito R3 Strawberry\n\n41) nycavri: Trade R1 B1 Nycavri\n\tdsheldon: Thank you.  It&#39;s an exciting time, to be sure.  Best of luck once you get started ;)\n\n42) dsheldon: Sacrifice Y3 Jw\nMove G1 Chip Strawberry\nMove G1 Strawberry Nycavri\nMove G2 Strawberry Nycavri\nCatastrophe Nycavri G\n\n43) nycavri: Trade B1 G1 Nycavri\n\n44) dsheldon: Discover G3 Chip Y3 Sun\n\n45) nycavri: Build G2 Nycavri\n\n46) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Frito\nBuild G3 Jw\nBuild G3 Dsheldon\n\n47) nycavri: Discover G1 Nycavri Y3 Tl\n\n48) dsheldon: Sacrifice G3 Jw\nBuild G3 Jw\nBuild Y1 Chip\nBuild Y2 Chip\n\n49) nycavri: Discover G1 Tl B1 Bk\n\n50) dsheldon: Trade Y2 R2 Chip\n\n51) nycavri: Build R1 Nycavri\n\n52) dsheldon: Move G3 Sun Nycavri\n\n\tnycavri: Not sure why I&#39;ve tried to play this one out.  Good Game.\n\nHomeworlds Online (SDG# 10806)\nStarted: 2008.4.1, Ended: 2008.4.26\nParticipants: wyons (S), ts52 (N)\nWinner: wyons\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) wyons: Homeworld G3 Y1 B3\n\tts52: Have a good game!\n\twyons: and you\n\n3) ts52: Build G1 Ts52\n\n4) wyons: Build B1 Wyons\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wyons: Build B1 Wyons\n\n7) ts52: Build G1 Ts52\n\n8) wyons: Discover B1 Wyons B2 Bluemeanies\n\tts52: Oops, sorry. Typo there I noticed just after I hit send. D&#39;oh!\n\n9) ts52: Build G1 Ts52\n\twyons: no worries. I think it is fine to change moves anyway.\n\n10) wyons: Build B2 Wyons\n\n11) ts52: Build G2 Grover\n\n12) wyons: Discover B1 Wyons B2 Trueblue\n\n13) ts52: Discover G1 Ts52 B3 Cookie_monster\n\n14) wyons: Trade B3 G3 Wyons\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Cookie_monster\nBuild G2 Cookie_monster\nBuild G3 Ts52\n\n16) wyons: Build B3 Wyons\n\n17) ts52: Trade G2 Y2 Cookie_monster\n\n18) wyons: Discover G3 Wyons Y2 Grassgreener\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild Y1 Cookie_monster\n\n20) wyons: Discover G3 Grassgreener Y3 Xanthrophyl\n\n21) ts52: Discover G2 Ts52 Y3 Bigbird\n\n22) wyons: Trade B3 R3 Wyons\n\n23) ts52: Trade G2 R2 Cookie_monster\n\n24) wyons: Build B3 Wyons\n\n25) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild Y1 Cookie_monster\n\n26) wyons: Trade B3 Y3 Wyons\n\n27) ts52: Discover Y2 Cookie_monster R2 Elmo\n\n28) wyons: Discover R3 Wyons Y2 Orange\n\n29) ts52: Move R2 Cookie_monster Trueblue\n\n30) wyons: Build B3 Wyons\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Trueblue\nBuild R1 Trueblue\n\n32) wyons: Move R3 Orange Bigbird\n\n33) ts52: Sacrifice Y2 Elmo\nMove G2 Bigbird Bluemeanies\nMove G2 Bigbird Bluemeanies\n\n34) wyons: Trade B3 R3 Wyons\n\n35) ts52: Attack B1 Trueblue\n\n36) wyons: Build B3 Wyons\n\n37) ts52: Build Y2 Cookie_monster\n\n38) wyons: Move Y3 Wyons Bluemeanies\n\n39) ts52: Sacrifice Y2 Cookie_monster\nMove Y1 Cookie_monster Bluemeanies\nMove Y1 Cookie_monster Bluemeanies\n\n40) wyons: Sacrifice Y3 Bluemeanies\nMove B2 Wyons Trueblue\nMove B1 Bluemeanies Bigbird\nMove B1 Bigbird Trueblue\nCatastrophe Trueblue Blue\n\n41) ts52: Trade Y1 R1 Bluemeanies\n\n42) wyons: Move G3 Xanthrophyl Ts52\n\n43) ts52: Sacrifice R1 Bluemeanies\nAttack G3 Ts52\n\n44) wyons: Move R3 Bigbird Ts52\n\n45) ts52: Trade G3 R3 Ts52\n\n46) wyons: Sacrifice R3 Wyons\nAttack R3N Ts52\nAttack G3N Ts52\nAttack G1N Ts52\n\n\tts52: Well played. Thanks for the game.\n\twyons: thank you too! Interesting game. I thought I was losing for a large part of it. \n\nHomeworlds Online (SDG# 10821)\nStarted: 2008.4.1, Ended: 2008.7.25\nParticipants: Keith (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld B3 R1 G3\n\n2) Keith: Homeworld Y1 B2 G3\n\twyons: since we have been talking so much about all this I thought it would be good to try it and see. Also I dont think we have ever played any other game appart from GR. Hope your computer woes are over.\n\tKeith: A good idea.  I see you have risen through the ranks rather quickly.  You seem to have quickly become one of the sophisticated strategists.  I remember reading about those starting position/play styles once though I have not put any real effort into understanding them.  It is probably something I need to do if I am ever to break out of the group that lags behind the top tier of players by 100 to 150 points.\n\tKeith: My computer woes may be over by this weekend.  It will probably be a day before I make my opening move.\n\n3) wyons: Build G1 Wyons\n\n4) Keith: Build G1 Keith\n\twyons: so many considerations for the first move, then the second move is forced...\n\tKeith: It is an odd element of the design.  Things do tend to pick up quickly after that though we will probably see a few low tension turns before fighting for control of the stash makes things interesting.\n\n5) wyons: Trade G1 Y1 Wyons\n\tKeith: &quot;... I remember reading about those starting position/play styles once...&quot;  \r\n\r\nI took a second look.  I am the one that posted it to the wiki!\n\n6) Keith: Trade G1 Y1 Keith\n\twyons: Interesting- I think I may have read what your wrote. Homeworlds is an awesome game I think- full of unexpected twists. Sometimes when I am losing if I stare at it for long enough suddenly a completely unexpected escape pops up that has been staring me in the face but which I just did not see...\n\tKeith: Actually I did not write it, Zoltar did in a game that I was monitoring.  I just posted it.  \r\n\r\nI don&#39;t think of my start in terms of Banker.  I think g3 ship can I crank a factory.  I only remember banking a ship once.  FWIW my event horizon is probably only about 3 to 5 ply.  I go on gut as much as anything and it easy with all the possibilities to overlook something.\n\n7) wyons: Build Y2 Wyons\n\n8) Keith: Build Y2 Keith\n\n9) wyons: Build Y2 Wyons\n\n10) Keith: Discover Y1 Keith G3 Geeliwan\n\twyons: I only usually go to about 3 ply aswell. Given that once this game is underway there must be around 40+ options each ply we are talking 40 cubed for a three ply search (76,000!). The only hope is to prune the tree and this is where gut/intuition comes in. I dont like it when games are purely logical. See my entry under too many options (towards the end): http://forums.superdupergames.org/viewtopic.php?t=648&amp;postdays=0&amp;postorder=asc&amp;start=90&amp;sid=b6d6be28a3f0a06b6d9661c4011b075e\n\n11) wyons: Discover Y1 Wyons G2 Greengenie\n\n12) Keith: Build Y3 Geeliwan\n\tKeith: I looked up your post.  That topic was one of the most interesting discussions in the forums.  I tracked it all the way through page 6 but had missed your input.  It helped me decide the move I just made in my Cannon tournament game against Meadmaker.  I was in a situation of being able to decide to initiate an exchange of cannon fire or to initiate both sides moving to avoid the cannon fire.  I played out on a physical board half a dozen moves ahead then mentally looked another 4 to 6 ply beyond that.  I did not see any advantage looking 10 to 12 ply forward between cannon fire or avoidence.  This is where your post comes in.  After reading it I went with the move that my gut said would make more of a difference in the end game, which is probably 20 moves or more down the line.\n\n13) wyons: Build Y3 Greengenie\n\twyons: good, I am glad it might have been helpful. Guts arent always right of course! By the way I finally cracked around offering a prize for GR (forums, general)\n\n14) Keith: Move Y1 Geeliwan Greengenie\n\tKeith: Saw that.  Sent you an email via my litigation email address.\n\n15) wyons: Discover Y1 Greengenie Y3 Mellowyellow\n\n16) Keith: Build G1 Keith\n\twyons: Thanks for your email. I have responded directly to it\n\n17) wyons: Build G1 Wyons\n\n18) Keith: Trade G1 R1 Keith\n\n19) wyons: Trade Y2 R2 Wyons\n\n20) Keith: Build Y2 Geeliwan\n\tKeith: So far in the game I have been working to avoid having stash troubles rather than to give you stash troubles.  My gut says I need to be careful on the next move but I have not had a good chunk of sit down and think time.\n\n21) wyons: Build G1 Wyons\n\n22) Keith: Build G1 Keith\n\twyons: yes, it certainly seems to take &#39;sit down and think time&#39; - there are so many twists and turns..\n\n23) wyons: Trade G1 B1 Wyons\n\n24) Keith: Trade G1 B1 Keith\n\n25) wyons: Build G1 Wyons\n\twyons: b g1 wyons\n\n26) Keith: Build G1 Keith\n\n27) wyons: Discover G1 Wyons B2 Bluegreens\n\n28) Keith: Build R1 Keith\n\n29) wyons: Build R2 Wyons\n\n30) Keith: Move R1 Keith Mellowyellow\n\n31) wyons: Sacrifice R2 Wyons\nAttack R1S Mellowyellow\nAttack Y1S Greengenie\n\tKeith: maybe not.\n\tKeith: I was originally okay with your being able to build a red two.  My thought being that could sacrifice a yellow three and make one home system star and all of your reds go boom.  I failed to factor in that your homeworld would then be only one system away from mine.  You can then sacrifice your yellow three and make my greens go away.  You then have a 3-pointer and I don&#39;t.  Can&#39;t be good.\n\n32) Keith: Move B1 Keith Geeliwan\n\twyons: I agree with your analysis. I think it is rarely good going for a home star. :)\n\n33) wyons: Sacrifice G3 Wyons\nBuild G2 Bluegreens\nBuild G2 Bluegreens\nBuild G3 Wyons\n\tKeith: Ahem!  Well at least I am better off than if I had done the red catstrophe.  Not much, but better off.\r\n\r\nWell I would have it you would have ended up two systems away.  a 3-pointer and a 1-pointer for two 2-pointers and a home star would have been worth it.\n\n34) Keith: Sacrifice Y2 Geeliwan\nMove G1 Keith Geeliwan\nMove G1 Geeliwan Bluegreens\nCatastrophe Bluegreens Green\n\n35) wyons: Build Y2 Wyons\n\n36) Keith: Build R2 Keith\n\n37) wyons: Move R1 Mellowyellow Greengenie\n\n38) Keith: Move R2 Keith Geeliwan\n\n39) wyons: Move B1 Wyons Greengenie\n\n40) Keith: Build G1 Keith\n\n41) wyons: Discover Y1 Mellowyellow G2 Xanthrophyl\n\n42) Keith: Sacrifice G3 Keith\nBuild Y3 Geeliwan\nBuild R2 Geeliwan\nBuild R3 Keith\n\n43) wyons: Sacrifice Y2 Wyons\nMove Y1 Greengenie Geeliwan\nMove Y1 Xanthrophyl Geeliwan\nCatastrophe Geeliwan Yellow\n\twyons: I wasnt atall sure about that move but time is running out..\n\tKeith: I am not sure about all the rammifications of this next move but most of the options that fall out of it seem to be in my favor.\n\n44) Keith: Trade R3 G3 Keith\n\n45) wyons: Build R3 Greengenie\n\twyons: well that is what I expected you to do, so I have only myself to blame if I got it wrong.\n\n46) Keith: Build R3 Keith\n\n47) wyons: Discover R3 Greengenie Y3 O-range\n\n48) Keith: Trade R3 B3 Keith\n\n49) wyons: Build R3 Greengenie\n\n50) Keith: Build R3 Keith\n\n51) wyons: Trade R3 Y3 Greengenie\n\n52) Keith: Sacrifice B3 Keith\nTrade R2 Y2 Geeliwan\nTrade B1 Y1 Geeliwan\nPass\n\tKeith: I am slowly going under here.  Four 3-pointers to two. \n\tKeith: Perhaps three to two but given that you are spread out over three sectors with yours to my one I am going to run into trouble adding 3-pointers before you will.\n\n53) wyons: Discover Y3 Greengenie G1 Dewshine\n\tKeith: I mean four to three.  Ghaaa.  I can&#39;t think straight anymore.\n\n54) Keith: Move R3 Keith Geeliwan\n\twyons: I think you are right in assessing that 3-pointers are crucial. It seems to be far more important to have one 3-pointer -say- than several smaller ones..\n\n55) wyons: Build G2 Wyons\n\n56) Keith: Discover G1 Keith R3 Brightlygo\n\n57) wyons: Sacrifice G1 Wyons\nBuild B1 Greengenie\n\n58) Keith: Build G1 Keith\n\twyons: thanks for all the work you&#39;ve been doing with \r\nGR AI\n\n59) wyons: Move Y3 Dewshine Brightlygo\n\n60) Keith: Sacrifice G1 Brightlygo\nBuild R2 Keith\n\twyons: hmm need to think on that some more...\n\n61) wyons: Move G2 Wyons Greengenie\n\tKeith: Did you get my GR4 email?\n\n62) Keith: Move G1 Keith Geeliwan\n\twyons: I did, but I havent had a chance to study it yet as its at home (and I seem to be living at work at present!)\n\tKeith: No problem.  I did not expect feedback on it yet.  I am just not sure what email gets through to you.  At one time email from my personal account was not making it through.\n\n63) wyons: Build G1 Wyons\n\n64) Keith: Build G1 Keith\n\n65) wyons: Sacrifice Y3 Greengenie\nMove G2 Greengenie Geeliwan\nMove G1 Wyons Greengenie\nMove G1 Greengenie Geeliwan\nCatastrophe Geeliwan Green\n\n66) Keith: Discover Y2 Keith G3 Midworld\n\n67) wyons: Discover R2 Wyons R2 Redperil\n\n68) Keith: Trade R2 Y2 Keith\n\n69) wyons: Build G1 Wyons\n\tKeith: Hmmmm... I had the same thing in mind for greengeni.\n\tKeith: As long as you don&#39;t make a critical error you are going to win this one.  Your play has been sharper than mine all the way through.\n\n70) Keith: Build R2 Keith\n\twyons: and a critical error is easy in this game!\n\n71) wyons: Build R3 Greengenie\n\n72) Keith: Move G1 Keith Midworld\n\n73) wyons: Trade R3 Y3 Greengenie\n\n74) Keith: Build G1 Keith\n\n75) wyons: Build R3 Greengenie\n\n76) Keith: Build G2 Midworld\n\n77) wyons: Sacrifice Y3 Brightlygo\nDiscover R1 Greengenie B1 Purpleheart\nMove G1 Wyons Greengenie\nMove G1 Greengenie Midworld\nCatastrophe Midworld Green\n\twyons: thanks for your emails. I havent had time to study them yet.\n\tKeith: Your welcome.\r\n\r\nI am still consistently failing to see ply ahead.\n\n\tKeith: My Homeworlds fu has become weak while yours has become strong.  I am just dragging things out at this point.  Well done.\r\n\r\nGrim Reaper weekend for me.  The family is out of the country and I have only a bathroom&#39;s worth of wallpapering to do.  I hae probably gotten 80% of the improvement I am going to be able to get with the limited look ahead and two of my five evaluation elements having some accuracy issues.  I am hoping that playing a bunch of games this weeked, instead of watching them be played, will give me the information for squeezing out the remaining 20% of possible improvement.\n\twyons: Many thanks for the game and I dont blame you for resigning! The GR outcomes should be interesting.\n\nHomeworlds Online (SDG# 10847)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.2, Ended: 2008.4.7\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) mneme: Build G1 Mneme\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\tmneme: Heya.  Should be enjoyable to lose to you (again).\n\n5) mneme: Trade G1 Y1 Mneme\n\tTwoShort: I&#39;m not sure whether to argue with that attitude or encourage it. :)\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) mneme: Build Y1 Mneme\n\tmneme: Hey, might as well take the psych advantage you have.\n\n8) TwoShort: Build B1 Twoshort\n\n9) mneme: Build Y1 Mneme\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) mneme: Discover Y1 Mneme G3 Applesauce\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Build Y2 Applesauce\n\n14) TwoShort: Discover B1 Twoshort B2 Bluzilla\n\n15) mneme: Discover Y1 Mneme B3 Bluebird\n\n16) TwoShort: Build B3 Grogar\n\n17) mneme: Build Y2 Mneme\n\n18) TwoShort: Trade B3 Y3 Grogar\n\n19) mneme: Trade Y2 G2 Mneme\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Bluzilla\nBuild B3 Twoshort\nBuild Y2 Grogar\n\n21) mneme: Sacrifice G2 Mneme\nBuild Y2 Mneme\nBuild Y3 Bluebird\n\n22) TwoShort: Trade B3 G3 Twoshort\n\n23) mneme: Sacrifice Y2 Mneme\nMove Y1 Applesauce Grogar\nMove Y1 Bluebird Grogar\nCatastrophe Grogar Y\n\n24) TwoShort: Build B3 Grogar\n\n25) mneme: Build G1 Mneme\n\n26) TwoShort: Trade B3 Y3 Grogar\n\n27) mneme: Trade G3 B3 Mneme\n\n28) TwoShort: Trade B3 G3 Bluzilla\n\n\tmneme: no point.  blue freeze out = death in this case.\n\nHomeworlds Online (SDG# 10593)\nStarted: 2008.4.3, Ended: 2008.4.25\nParticipants: dl33t (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 10851)\nStarted: 2008.4.3, Ended: 2009.12.9\nParticipants: dl33t (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n\nHomeworlds Online (SDG# 10848)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.5, Ended: 2008.5.6\nParticipants: MikeYarrum (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y3 G3\n\tKeith: This is a suprise.  I was beginning to think you had moved on from SDG.\n\n2) MikeYarrum: Homeworld R3 B2 G3\n\tMikeYarrum: Moved on? To where?\r\n\r\nIt was a whole series of unfortunate events. But Now I&#39;m back.\n\n3) Keith: Build G1 Keith\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Keith: Trade G1 B1 Keith\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) Keith: Build G1 Keith\n\n8) MikeYarrum: Build Y1 Mikeyarrum\n\n9) Keith: Trade G1 Y1 Keith\n\n10) MikeYarrum: Discover Y1 Mikeyarrum G1 Yotsuba\n\n11) Keith: Build Y2 Keith\n\n\nHomeworlds Online (SDG# 10644)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.4.8, Ended: 2008.4.11\nParticipants: scottobear (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 10704)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.10, Ended: 2008.7.19\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) TwoShort: Build G1 Twoshort\n\n5) Jesse: Build G1 Jesse\n\n6) TwoShort: Build G2 Twoshort\n\n7) Jesse: Trade G1 Y1 Jesse\n\n8) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n9) Jesse: Build Y1 Jesse\n\n10) TwoShort: Build G1 Twoshort\n\n11) Jesse: Discover G1 Jesse B2 Honeybee\n\n12) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n13) Jesse: Move Y1 Jesse Honeybee\n\n14) TwoShort: Discover G2 Yolonda G2 Greenland\n\n15) Jesse: Discover Y1 Honeybee G3 Apogee\n\n16) TwoShort: Build G2 Bluonia\n\n17) Jesse: Build Y1 Jesse\n\n18) TwoShort: Trade G2 Y2 Bluonia\n\n19) Jesse: Build G2 Jesse\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\n\n21) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Apogee\nBuild Y3 Apogee\n\n22) TwoShort: Sacrifice Y2 Bluonia\nMove G2 Greenland Jesse\nDiscover G1 Bluonia Y2 Yonderboy\n\n23) Jesse: Sacrifice Y3 Apogee\nMove Y1 Jesse Honeybee\nMove G2 Jesse Honeybee\nDiscover G2 Honeybee Y3 Wonderwhy\n\n24) TwoShort: Trade G1 R1 Twoshort\n\tTwoShort: Well that looks grim.\n\n25) Jesse: Attack G2 Jesse\n\n26) TwoShort: Build G1 Yonderboy\n\n27) Jesse: Trade G2 R2 Jesse\n\n28) TwoShort: Discover Y2 Bluonia G2 Gordon\n\n29) Jesse: Move R2 Jesse Yonderboy\n\n30) TwoShort: Move Y3 Bluonia Yonderboy\n\tTwoShort: OK, I&#39;ve stalled long enough to win my other game and hit 1900.  Woo-hoo!  The way things are going here, I think I should bask in the glory quickly :)\n\n31) Jesse: Move R2 Yonderboy Apogee\n\n32) TwoShort: Build R1 Twoshort\n\n33) Jesse: Sacrifice G2 Wonderwhy\nBuild Y3 Jesse\nBuild R2 Apogee\n\n34) TwoShort: Build G2 Twoshort\n\n35) Jesse: Sacrifice Y3 Apogee\nMove R2 Apogee Honeybee\nMove Y1 Jesse Yonderboy\nMove Y1 Apogee Yonderboy\nCatastrophe Yonderboy Y\n\n36) TwoShort: Discover R1 Twoshort B3 Bluestar\n\n37) Jesse: Build G1 Jesse\n\n38) TwoShort: Move G2 Twoshort Bluestar\n\n39) Jesse: Build G1 Honeybee\n\n40) TwoShort: Build G2 Twoshort\n\n41) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y1 Jesse\nBuild Y1 Honeybee\n\n42) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n43) Jesse: Move Y1 Honeybee Apogee\n\n44) TwoShort: Sacrifice G2 Bluestar\nBuild R2 Twoshort\nBuild R3 Bluestar\n\n45) Jesse: Sacrifice G3 Jesse\nBuild G2 Honeybee\nBuild G3 Jesse\nBuild R3 Honeybee\n\n46) TwoShort: Trade R3 Y3 Bluestar\n\n47) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Apogee\nBuild R3 Apogee\n\n48) TwoShort: Sacrifice G2 Yolonda\nBuild R3 Bluestar\nBuild Y3 Gordon\n\n49) Jesse: Discover Y3 Jesse G2 Perigee\n\n50) TwoShort: Sacrifice Y2 Gordon\nMove R1 Twoshort Apogee\nMove R2 Twoshort Apogee\nCatastrophe Apogee Red\n\n51) Jesse: Build Y2 Honeybee\n\n52) TwoShort: Move R3 Bluestar Twoshort\n\n53) Jesse: Move R2 Honeybee Apogee\n\n54) TwoShort: Build R1 Twoshort\n\n55) Jesse: Build R2 Apogee\n\n56) TwoShort: Trade R1 B1 Twoshort\n\n57) Jesse: Trade G1 B1 Honeybee\n\n58) TwoShort: Build G1 Twoshort\n\n59) Jesse: Move R2 Apogee Perigee\n\n60) TwoShort: Build R1 Twoshort\n\n61) Jesse: Sacrifice G3 Jesse\nBuild R2 Perigee\nBuild R3 Apogee\nBuild G3 Jesse\n\n62) TwoShort: Build B2 Twoshort\n\n63) Jesse: Sacrifice Y3 Perigee\nMove B1 Honeybee Apogee\nMove B1 Apogee Twoshort\nDiscover G1 Jesse B2 Frisbee\nCatastrophe Twoshort B\n\n\tJesse: I almost fell into your tricky trap.\n\tTwoShort: Shucks :)  Not that I really expected to get away with it, but it seemed like it was worth a try.  Anyway, now you have me for sure.  \r\n   Great game, thanks!\n\nHomeworlds Online (SDG# 10749)\nStarted: 2008.4.11, Ended: 2008.5.2\nParticipants: larry (S), smilingra (N)\nWinner: smilingra\n\n1) smilingra: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 10711)\nStarted: 2008.4.11, Ended: 2008.4.30\nParticipants: MatrixFrog (S), Wheatberry (N)\nWinner: MatrixFrog\n\n1) Wheatberry: Homeworld G2 Y1 B3\n\n2) MatrixFrog: Homeworld B3 G2 Y3\n\tWheatberry: Hiya! Been wanting to learn Homeworlds for awhile now, but haven&#39;t been able to get any of my local friends interested in it. Feel free to trounce me if I make any newbish mistakes? ;)\n\n3) Wheatberry: Build B1 Wheatberry\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Wheatberry: Trade B1 Y1 Wheatberry\n\n6) MatrixFrog: Build Y2 Matrixfrog\n\n7) Wheatberry: Build Y2 Wheatberry\n\n8) MatrixFrog: Discover Y2 Matrixfrog G1 Bing\n\tWheatberry: Oh snap! Can you use sacrifice actions sequentially? i.e. could you sacrifice your Y3 to make 3 jumps in a row with a single piece? i.e. can you send your y1 out to discover a small star, then send it from *there* to discover a large star, then move it from *there* into my homeworld, triggering a catastrophe on yellow?\n\tMatrixFrog: I could indeed, however, I probably won&#39;t do something that drastic, this early in the game. I would probably use my smallest ship to do that, which is y1 here. So I would be left with a single y2. On the other hand, you would be left with a single b3, plus a 1-star homeworld, which is easier for me to get to. So maybe it would be worth it. I won&#39;t do it now, in any case, but you should probably move one of your y ships out or trade them, pretty soon.\n\n9) Wheatberry: Discover Y1 Wheatberry B3 Crosby\n\n10) MatrixFrog: Trade Y1 G1 Matrixfrog\n\tWheatberry: Okay, phew. Glad I asked. That&#39;s a cool rule, makes the galaxy seem a whole lot smaller. :)\n\n11) Wheatberry: Move Y2 Wheatberry Crosby\n\n12) MatrixFrog: Build G1 Matrixfrog\n\n13) Wheatberry: Trade Y2 R2 Crosby\n\n14) MatrixFrog: Trade G1 R1 Matrixfrog\n\n15) Wheatberry: Move R2 Crosby Bing\n\n16) MatrixFrog: Discover Y2 Bing G3 Jello\n\n17) Wheatberry: Move Y1 Crosby Bing\n\n18) MatrixFrog: Build R1 Matrixfrog\n\n19) Wheatberry: Build R1 Bing\n\n20) MatrixFrog: Build Y1 Jello\n\n21) Wheatberry: Build B1 Wheatberry\n\n22) MatrixFrog: Build Y2 Matrixfrog\n\n23) Wheatberry: Build Y2 Bing\n\n24) MatrixFrog: Build G1 Matrixfrog\n\n25) Wheatberry: Trade B3 Y3 Wheatberry\n\n26) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y2 Jello Wheatberry\nMove Y1 Jello Wheatberry\nCatastrophe Wheatberry Y\n\n27) Wheatberry: Move R2 Bing Wheatberry\n\n28) MatrixFrog: Discover G1 Matrixfrog Y1 Bang\n\n29) Wheatberry: Build R2 Wheatberry\n\tWheatberry: Ooof. Don&#39;t know what I was thinking there... Well played.\n\n30) MatrixFrog: Build G2 Bang\n\n31) Wheatberry: Sacrifice Y2 Bing\nMove Y1 Bing Wheatberry\nMove R1 Bing Matrixfrog\n\n32) MatrixFrog: Attack R1 Matrixfrog\n\n33) Wheatberry: Move R2 Wheatberry Bang\n\tWheatberry: Nothing much I could do to stop you at this point, lacking green...\n\n34) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R2 Bang\n\n35) Wheatberry: Discover B1 Wheatberry Y3 Bounce\n\n36) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Bang Wheatberry\nMove G2 Bang Wheatberry\nMove R2 Bang Wheatberry\n\n37) Wheatberry: Attack G2 Wheatberry\n\n38) MatrixFrog: Build G1 Wheatberry\nCatastrophe Wheatberry G\n\n\tWheatberry: Surrender? NEVER! ;)\r\n\r\nGood game.\n\nHomeworlds Online (SDG# 10792)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.13, Ended: 2008.5.18\nParticipants: Jesse (S), Wheatberry (N)\nWinner: Jesse\n\n1) Wheatberry: Homeworld B3 G2 Y3\n\n2) Jesse: Homeworld R3 B1 G3\n\tJesse: Hello.  Welcome, and have a good game.\n\n3) Wheatberry: Build Y1 Wheatberry\n\n4) Jesse: Build G1 Jesse\n\tWheatberry: Hi &amp; thanks. Still new to Homeworlds but it&#39;s a nifty game. I&#39;ll give it my best shot.\n\n5) Wheatberry: Trade Y1 G1 Wheatberry\n\tJesse: Let me know if you have any questions.  I&#39;m always pleased to help a new player get oriented.\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Wheatberry: Discover G1 Wheatberry R1 Algol\n\n8) Jesse: Build Y1 Jesse\n\n\tWheatberry: Heh! I love that you get to name each new star system, instead of just getting something random.\n\n9) Wheatberry: Build G1 Algol\n\tJesse: First tip: It is unusual to discover red star systems, especially early in the game.  It makes it harder to develop, because the red doesn&#39;t do anything but give you limited local protection.  The home system is kind of a special case, though.  I happen to like that a red-blue system gives me a little more flexibility to go with either a green or yellow large defender.\n\n10) Jesse: Build G1 Jesse\n\tWheatberry: Okay, good to know. I was just going with a &quot;get a little of everything&quot; strategy\n\tJesse: That&#39;s a good instinct.\n\n11) Wheatberry: Build Y1 Wheatberry\n\n12) Jesse: Discover G1 Jesse B2 Ocaml\n\n13) Wheatberry: Build Y2 Wheatberry\n\n14) Jesse: Move Y1 Jesse Ocaml\n\n15) Wheatberry: Trade Y2 R2 Wheatberry\n\n16) Jesse: Build Y2 Ocaml\n\n17) Wheatberry: Move Y1 Wheatberry Algol\n\n18) Jesse: Build G2 Jesse\n\n19) Wheatberry: Build Y2 Algol\n\n20) Jesse: Trade Y2 R2 Ocaml\n\n21) Wheatberry: Build Y2 Wheatberry\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G2 Ocaml\nBuild G3 Jesse\nBuild Y2 Ocaml\n\n23) Wheatberry: Discover G1 Algol B2 Simula\n\tWheatberry: WHOA. Very clever.\n\n24) Jesse: Trade G1 B1 Ocaml\n\tWheatberry: Heh. Sorry. Just realized I couldn&#39;t pull the same trick, lacking another green ship in my home system...\n\n25) Wheatberry: Move G1 Algol Simula\n\tJesse: Yeah, that&#39;s called &quot;the factory&quot;.  It is a common and very useful tactic.\n\n26) Jesse: Discover Y2 Ocaml G3 Erlang\n\n27) Wheatberry: Sacrifice Y2 Wheatberry\nMove G1 Simula Jesse\nMove G1 Simula Jesse\nCatastrophe Jesse Green\n\tJesse: It&#39;s better to have diversity at each system and spread out your ships of like colors, than to clump them.  For instance, you could have moved one of the yellows to Simula, instead, so both Algol and Simula could have served production purposes.  Being a red star, Algol doesn&#39;t help you diversify, which slows you down in the opening, but with both a green and a yellow ship there, it&#39;s not something you need to abandon.\n\n28) Jesse: Sacrifice G2 Ocaml\nBuild Y2 Ocaml\nBuild Y3 Jesse\n\n29) Wheatberry: Discover Y1 Algol B2 Simula\n\tWheatberry: True. Though in this case I had other plans... mwahaha ;-)\n\n30) Jesse: Trade Y3 G3 Jesse\n\tJesse: I really must stop being incautious with mew players.\n\n31) Wheatberry: Trade Y1 G1 Simula\n\n32) Jesse: Trade Y1 G1 Ocaml\n\n33) Wheatberry: Build G1 Simula\n\n34) Jesse: Build R1 Ocaml\n\n35) Wheatberry: Move Y2 Algol Simula\n\n36) Jesse: Build G2 Ocaml\n\n\n37) Wheatberry: Build Y1 Simula\n\n38) Jesse: Discover G1 Ocaml Y3 Self\n\n39) Wheatberry: Trade Y1 R1 Simula\n\n40) Jesse: Build G2 Self\n\n41) Wheatberry: Build Y1 Simula\n\n42) Jesse: Build G3 Ocaml\n\n43) Wheatberry: Move G1 Simula Self\n\n44) Jesse: Sacrifice G3 Ocaml\nBuild G3 Ocaml\nBuild Y1 Erlang\nBuild Y3 Ocaml\n\n45) Wheatberry: Trade Y1 B1 Simula\n\n46) Jesse: Sacrifice Y3 Ocaml\nDiscover G3 Ocaml Y3 Intercal\nDiscover G1 Self Y1 Scheme\nMove B1 Ocaml Erlang\n\n47) Wheatberry: Move R2 Wheatberry Scheme\n\n48) Jesse: Sacrifice G3 Intercal\nBuild G3 Scheme\nBuild Y3 Ocaml\nBuild B2 Erlang\n\n49) Wheatberry: Move R2 Scheme Wheatberry\n\n50) Jesse: Sacrifice Y3 Ocaml\nMove R2 Ocaml Self\nMove B2 Erlang Scheme\nDiscover G3 Scheme Y3 Unlambda\n\n51) Wheatberry: Discover G1 Self R1 Algol\n\n52) Jesse: Sacrifice G3 Unlambda\nBuild G3 Scheme\nBuild Y3 Ocaml\nBuild B3 Scheme\n\n53) Wheatberry: Move B1 Simula Algol\n\n54) Jesse: Sacrifice G3 Scheme\nBuild G3 Scheme\nBuild B3 Erlang\nBuild R2 Ocaml\n\n55) Wheatberry: Build R3 Simula\n\n56) Jesse: Sacrifice Y2 Ocaml\nMove B3 Erlang Scheme\nMove B3 Scheme Wheatberry\n\n57) Wheatberry: Build R3 Wheatberry\n\n58) Jesse: Sacrifice R2 Ocaml\nAttack R3 Wheatberry\nAttack Y3 Wheatberry\n\n59) Wheatberry: Pass\n\n60) Jesse: Attack R2 Wheatberry\n\n\tWheatberry: It appears that you&#39;ve got me. Good show. :)\n\tJesse: Thanks for the game.  I hope you learned a few things to get you started on your Homeworlds career.\n\tWheatberry: I can see how stash control becomes critical in the one-on-one game. I&#39;ll be sure to get in on the arms race faster next time.\n\nHomeworlds Online (SDG# 10852)\nStarted: 2008.4.14, Ended: 2011.8.19\nParticipants: inundator (S), MikeYarrum (N)\nWinner: inundator\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) inundator: Homeworld Y3 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) inundator: Build G1 Inundator\n\n5) MikeYarrum: Discover G1 Mikeyarrum Y3 Asagi\n\n6) inundator: Trade G1 R1 Inundator\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) inundator: Discover R1 Inundator Y1 Tiny\n\n9) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n10) inundator: Move R1 Tiny Asagi\n\n11) MikeYarrum: Discover G1 Asagi R1 Ena\n\n12) inundator: Build G1 Inundator\n\n13) MikeYarrum: Build Y1 Mikeyarrum\n\n14) inundator: Move R1 Asagi Mikeyarrum\n\n15) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n16) inundator: Attack R1 Mikeyarrum\n\n17) MikeYarrum: Discover Y1 Mikeyarrum R3 Asagi\n\n18) inundator: Trade R1 G1 Mikeyarrum\n\n\nHomeworlds Online (SDG# 10897)\nStarted: 2008.4.14, Ended: 2008.6.14\nParticipants: JJ12121616 (S), MikeYarrum (N)\nWinner: JJ12121616\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) JJ12121616: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tJJ12121616: Good luck.\n\tMikeYarrum: Thanks, same to you!\n\n4) JJ12121616: Build Y1 Jj12121616\n\tJJ12121616: I&#39;m sorry for the extended absence. My Internet was knocked out by roofers nudging our satellite while repairing storm damage. I&#39;m back in now.\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tMikeYarrum: Not a problem. Glad to have you back.\n\n6) JJ12121616: Discover Y1 Jj12121616 B3 Market\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\tJJ12121616: I am fairly new to the game. Don&#39;t go light on me, though. Might I ask why the red homestar?\n\tMikeYarrum: No problem. It&#39;s something I picked up here from advanced players - it makes it really difficult to attack my homeworld. Combine this with the fact that it will also be difficult to attack later in the game when 1 point pieces will be rare (2 and 3 point homestars).\r\n\r\nIt does put me at a slight disadvantage early in the game, as I have to trade for a yellow ship ASAP. But it tends to pay off later.\n\n8) JJ12121616: Build Y1 Jj12121616\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) JJ12121616: Build Y2 Jj12121616\n\tJJ12121616: I understand. Basically I&#39;m going to have to sac Y1&#39;s to get to your home. Your going to lock up all the small pieces all over the smalls, and just move a fat attacker out and dominate.\r\n\r\nI don&#39;t mind my setup. I&#39;ve used it the most. Just make dudes and catastrophes, getting all the 3&#39;s to use.\r\n\r\nThis could be interesting. I&#39;ll end up locking up the 3&#39;s and you locking your home world entirely.\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G1 Yotsuba\n\n12) JJ12121616: Discover Y1 Jj12121616 G3 Slime\n\n13) MikeYarrum: Build G1 Mikeyarrum\n\tJJ12121616: You won&#39;t get me like that. This time anyways.\n\n14) JJ12121616: Trade Y2 R2 Jj12121616\n\n15) MikeYarrum: Build Y2 Yotsuba\n\n16) JJ12121616: Build Y2 Slime\n\n\tJJ12121616: When your timer gets to -14d, I will force surrender. I would prefer not to, but I would not like to leave the game hanging.\n\nHomeworlds Online (SDG# 10902)\nStarted: 2008.4.15, Ended: 2009.12.9\nParticipants: MikeYarrum (S), mick (N)\nWinner: MikeYarrum\n\n1) mick: Homeworld B3 G1 Y3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\tmick: HI Mike.  Go easy on me.  This is my first ever game.  I just got my stash last week, and I haven&#39;t found anyone to play with.  \n\tMikeYarrum: Hello. I&#39;ll be forgiving. This site is a great place to learn the ins and outs of a game before you try to teach anyone.\n\n3) mick: Build Y1 Mick\n\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) mick: Discover Y1 Mick B2 Orion\n\tmick: ?? how do I move my ship to a new system?  What&#39;s the command?\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tMikeYarrum: I think you figured it out. =D\n\n7) mick: Trade Y1 G1 Orion\n\n8) MikeYarrum: Discover Y1 Mikeyarrum G3 Sakaki\n\n9) mick: Trade Y3 G3 Mick\n\n10) MikeYarrum: Build Y1 Sakaki\n\tMikeYarrum: You might want to take that move back. When you take the last small piece like that, it means you&#39;re giving me a medium ship.\n\tmick: thanks for the advice.\n\n11) mick: Build G1 Orion\n\n12) MikeYarrum: Build G2 Mikeyarrum\n\n13) mick: Build G2 Orion\n\tmick: Hi Mike.  Sorry for the delay.  Was off sick.\n\tMikeYarrum: Not a problem.\n\n\nHomeworlds Online (SDG# 10751)\nVariants: &quot;Sinister, Hard time&quot;\nStarted: 2008.4.19, Ended: 2008.11.12\nParticipants: Wheatberry (S), smilingra (W), wyons (N), wmreed (E)\nWinner: wyons\n\n1) wyons: Homeworld B2 R1 G3\n\n2) wmreed: Homeworld B3 G2 Y3\n\twmreed: homeworld b3 g2 y3\n\twmreed: duh.  I should wake up before I play this game.\r\n\r\n\n\n3) Wheatberry: Homeworld R2 G1 B3\n\twyons: enjoy the game everyone...\n\n4) smilingra: Homeworld B2 R3 G3\n\n5) wyons: Build G1 Wyons\n\tsmilingra: Yes, good luck to all.  Hope we can have some fun...\n\n6) wmreed: Build Y1 Wmreed\n\tWheatberry: Lotsa red out there, this should be interesting... May the best Martian win. :)\n\n7) Wheatberry: Build B1 Wheatberry\n\twmreed: I was noticing that, too.  Lots of red green and blue.\n\n8) smilingra: Build G1 Smilingra\n\n9) wyons: Trade G1 Y1 Wyons\n\tsmilingra: I guess they made me West because I was the only one whose name did not start with a &#39;w&#39; :)\n\twyons: *laughs* - that&#39;s exactly the brand of absurd humour I love.\n\n10) wmreed: Trade Y1 R1 Wmreed\n\n11) Wheatberry: Trade B1 Y1 Wheatberry\n\n12) smilingra: Trade G1 Y1 Smilingra\n\n13) wyons: Build Y1 Wyons\n\n14) wmreed: Build R1 Wmreed\n\n15) Wheatberry: Build B1 Wheatberry\n\n16) smilingra: Build G1 Smilingra\n\tsmilingra: Glad you appreciated it.  I&#39;ll try to keep them coming. :)\n\n17) wyons: Discover Y1 Wyons G3 Xanthrophyl\n\n18) wmreed: Trade R1 G1 Wmreed\n\n19) Wheatberry: Trade B3 G3 Wheatberry\n\n20) smilingra: Discover G1 Smilingra B1 Alpha\n\n21) wyons: Build G1 Wyons\n\n22) wmreed: Build R1 Wmreed\n\n23) Wheatberry: Build B1 Wheatberry\n\n24) smilingra: Build G1 Alpha\n\n25) wyons: Build G2 Wyons\n\n26) wmreed: Build Y1 Wmreed\n\n27) Wheatberry: Build Y2 Wheatberry\n\n28) smilingra: Build G2 Smilingra\n\n29) wyons: Build Y2 Wyons\n\n30) wmreed: Move G1 Wmreed Alpha\n\n31) Wheatberry: Move B1 Wheatberry Xanthrophyl\n\n32) smilingra: Build Y2 Smilingra\n\n33) wyons: Discover G1 Wyons Y3 Mellowyellow\n\n34) wmreed: Build Y2 Wmreed\n\n35) Wheatberry: Discover Y1 Wheatberry G3 Metric\n\n36) smilingra: Trade G1 R1 Alpha\n\n37) wyons: Sacrifice Y2 Wyons\nMove Y1 Xanthrophyl Alpha\nMove Y1 Alpha Wmreed\nCatastrophe Wmreed Yellow\n\n38) wmreed: Sacrifice R1 Wmreed\nAttack R1W Alpha\n\n39) Wheatberry: Trade B1 G1 Xanthrophyl\n\n40) smilingra: Trade G2 R2 Smilingra\n\n41) wyons: Trade G2 R2 Wyons\n\n42) wmreed: Build R1 Wmreed\n\n43) Wheatberry: Build Y1 Wheatberry\n\n44) smilingra: Move R2 Smilingra Alpha\n\n45) wyons: Move R2 Wyons Mellowyellow\n\n46) wmreed: Build G2 Alpha\n\n47) Wheatberry: Move Y2 Wheatberry Xanthrophyl\n\n48) smilingra: Attack G2E Alpha\n\n49) wyons: Discover R2 Mellowyellow Y1 Orange\n\n50) wmreed: Pass\n\n51) Wheatberry: Move G1 Xanthrophyl Alpha\n\n52) smilingra: Trade G2 Y2 Alpha\n\twmreed: I&#39;m screwed.  Gods I suck at this game.  Why do I even like it?\n\n53) wyons: Move R2 Orange Wmreed\n\n54) wmreed: Trade R1 Y1 Wmreed\n\n55) Wheatberry: Sacrifice Y1 Metric\nMove G1 Alpha Wmreed\n\tWheatberry: Huh. Just realized that if I trigger that catastrophe, wmreed would have no way to recover &amp; it&#39;d be game over in a couple turns. This is where the Sinister rules get a bit wacky sometimes; I basically have to defend my enemy just to keep from losing.\n\tWheatberry: So let&#39;s try this... smilingra, please sacrifice your y1 to move your g1 from alpha to wmreed&#39;s homesystem. In exchange, you could capture my g1 in alpha next turn.\n\tWheatberry: Otherwise, wyons jumps his R2 from orange to wmreed, builds another red in wmreed next turn, and it&#39;s checkmate.\n\tWheatberry: Oh, wait a second. wmreed can just trade his r1 for something else on his turn, using his blue star. I am an idiot. Please ignore previous messages. :)\n\n56) smilingra: Attack R1E Alpha\n\tsmilingra: Thanks for the running commentary, Wheatberry. :)\n\n57) wyons: Attack R1E Wmreed\n\n58) wmreed: Build Y1 Wmreed\n\twmreed: it doesn&#39;t really save me though. He&#39;s got me on his next turn. \n\twmreed: unless I&#39;m confused on a rule.  Which I often am. \n\n59) Wheatberry: Trade G1 R1 Wmreed\n\tWheatberry: This should keep things interesting then. If he steals your yellow, steal my green. Sorry wyons. ;)\n\n60) smilingra: Move R1 Alpha Wmreed\nCatastrophe Wmreed Red\n\n61) wyons: Build Y2 Wyons\n\twmreed: I don&#39;t see a way out of this one. \n\n62) wmreed: Trade Y1 R1 Wmreed\n\n63) Wheatberry: Build B1 Wheatberry\n\tWheatberry: There&#39;s always a way. *grin*\r\nAssuming smilingra&#39;s willing to help out, of course...\n\n64) smilingra: Attack G1E Alpha\n\tsmilingra: You mean like that?\n\n65) wyons: Trade Y2 R2 Wyons\n\n66) wmreed: Build Y1 Wmreed\n\n67) Wheatberry: Trade B1 R1 Wheatberry\n\tWheatberry: Yep, like that. :)\n\n68) smilingra: Move R2 Alpha Xanthrophyl\n\n69) wyons: Build Y2 Wyons\n\n70) wmreed: Discover Y1 Wmreed G1 Logan\n\n71) Wheatberry: Sacrifice R1 Wheatberry\nAttack R2W Xanthrophyl\n\n72) smilingra: Build Y2 Alpha\n\n73) wyons: Trade Y1 B1 Wyons\n\n74) wmreed: Build Y1 Wmreed\n\n\n75) Wheatberry: Sacrifice G3 Wheatberry\nBuild Y3 Wheatberry\nBuild Y3 Wheatberry\nBuild Y3 Xanthrophyl\n\tWheatberry: Yoink! :-D\n\n76) smilingra: Trade G1 R1 Alpha\n\tsmilingra: grrr... nice move!\n\n77) wyons: Build Y3 Wyons\n\n78) wmreed: Trade Y1 B1 Wmreed\n\n79) Wheatberry: Trade Y3 G3 Wheatberry\n\n80) smilingra: Build R1 Alpha\n\n81) wyons: Discover Y3 Wyons G3 Leafshine\n\n82) wmreed: Move B1 Wmreed Logan\n\n\n83) Wheatberry: Move Y3 Xanthrophyl Alpha\n\n84) smilingra: Discover R1 Alpha B3 Zeta\n\n85) wyons: Discover Y3 Leafshine G1 Dewdrop\n\n86) wmreed: Build R1 Wmreed\n\n87) Wheatberry: Trade Y3 G3 Alpha\n\n88) smilingra: Build G2 Alpha\n\n89) wyons: Move R2 Wyons Mellowyellow\n\n90) wmreed: Build B1 Logan\n\n91) Wheatberry: Sacrifice R2 Xanthrophyl\nAttack G2W Alpha\nAttack R1W Alpha\n\n92) smilingra: Sacrifice R1 Zeta\nAttack R1S Alpha\n\n93) wyons: Move R2 Mellowyellow Logan\n\n94) wmreed: Sacrifice Y1 Logan\nMove B1 Logan Xanthrophyl\n\n95) Wheatberry: Trade G2 R2 Alpha\n\n96) smilingra: Attack R2S Alpha\n\n97) wyons: Build R1 Logan\n\n98) wmreed: Build B2 Xanthrophyl\n\n99) Wheatberry: Trade Y3 R3 Wheatberry\n\n100) Wheatberry: Pass\n\tWheatberry: Oh, crud. For some reason I was thinking you couldn&#39;t attack my 2s with a 3 in the system. Invasion: BOTCHED.\n\tWheatberry: (hastily hides his &quot;MISSION ACCOMPLISHED!&quot; banner) :-D\n\twyons: b r1 logan\n\n101) wyons: Sacrifice Y2 Wyons\nMove R2 Logan Wmreed\nMove Y3 Dewdrop Wmreed\n\n102) wmreed: Trade B2 G2 Xanthrophyl\n\n103) Wheatberry: Move Y2 Xanthrophyl Alpha\n\n104) wyons: Sacrifice G3 Wyons\nBuild Y1 Wmreed\nBuild Y1 Wmreed\nBuild R2 Wmreed\nCatastrophe Wmreed Red\nCatastrophe Wmreed Yellow\n\twyons: In this situation (with smilingra timing out) surely the move should continue passing clockwise (to me!)- otherwise Wheatberry will get two moves (one after the other).\n\twmreed: I agree. \n\tsmilingra: My deepest apologies.  I thought that I had made my move, but I guess not.   Good luck to you all.\n\twyons: Aaron: any chance you can bring smilingra back- that would solve the problem and also save the game from suddenly having a different dynamic?\n\tsmilingra: wyons, you are quite kind.  As long as the others are willing to have me back, I&#39;d gladly hop back in!\n\twmreed: i&#39;m willing to allow smilingra to return to play.\n\twyons: just up to wheatberry and aaron then?\n\twmreed: What&#39;s happening with this game?  Anything?\r\n\n\twyons: Well, nothing at present- but I have been hoping Aaron will be able to fix it when he is back from his travels.\n\tWheatberry: This game has sort of slipped off my radar, but I&#39;m willing to hop back into it anytime. And I agree with wyons: we should either (A) have an admin reset smilingra&#39;s timer &amp; pass the turn to him, or (B) drop down to a 3-person game &amp; pass the turn to wyons. If smilingra&#39;s still around and wants back in, I have no problem doing option A.\n\n\tWheatberry: Hi all! I&#39;m back. I&#39;ve completely forgetten what my strategy even was in this game, though, so this should be interesting... heh heh\n\twyons: sorry guys- that&#39;s it. My reading was that Smilingra could not have prevented that attack. But I could be wrong...\n\nHomeworlds Online (SDG# 10884)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.20, Ended: 2008.5.2\nParticipants: TwoShort (S), YourEternalGod (N)\nWinner: TwoShort\n\n1) YourEternalGod: Homeworld G1 Y2 B3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) YourEternalGod: Build B1 Youreternalgod\n\n4) TwoShort: Build G1 Twoshort\n\n5) YourEternalGod: Build B1 Youreternalgod\n\n6) TwoShort: Build G1 Twoshort\n\n7) YourEternalGod: Discover B1 Youreternalgod Y3 Wanderer\n\n8) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n9) YourEternalGod: Build B1 Youreternalgod\n\n10) TwoShort: Build G2 Yolonda\n\n11) YourEternalGod: Trade B1 R1 Wanderer\n\n12) TwoShort: Build G2 Twoshort\n\n13) YourEternalGod: Move R1 Wanderer Yolonda\n\n14) TwoShort: Trade G2 R2 Twoshort\n\n15) YourEternalGod: Attack G1 Yolonda\n\n16) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Yolonda\nAttack G1 Yolonda\n\n17) YourEternalGod: Discover B3 Youreternalgod G3 Go\n\n18) TwoShort: Discover G2 Yolonda Y3 Ynot\n\n19) YourEternalGod: Trade B1 R1 Youreternalgod\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Ynot\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n\nHomeworlds Online (SDG# 10928)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.20, Ended: 2008.5.2\nParticipants: YourEternalGod (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) YourEternalGod: Homeworld B1 G1 Y3 *\n\n3) TwoShort: Build G1 Twoshort\n\n4) YourEternalGod: Build Y1 Youreternalgod\n\n5) TwoShort: Build G1 Twoshort\n\n6) YourEternalGod: Build Y1 Youreternalgod\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) YourEternalGod: Discover Y1 Youreternalgod B2 Tyco\n\n9) TwoShort: Build G1 Twoshort\n\n10) YourEternalGod: Build Y2 Youreternalgod\n\n11) TwoShort: Discover G1 Twoshort Y3 Jethro\n\n12) YourEternalGod: Move Y1 Youreternalgod Tyco\n\n13) TwoShort: Build G2 Twoshort\n\n14) YourEternalGod: Trade Y2 G2 Youreternalgod\n\n15) TwoShort: Discover G1 Twoshort B3 Bluzilla\n\n16) YourEternalGod: Build Y2 Youreternalgod\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluzilla\nBuild G3 Jethro\nBuild G3 Twoshort\n\n18) YourEternalGod: Build G3 Youreternalgod\n\n19) TwoShort: Move G1 Jethro Youreternalgod\nCatastrophe Youreternalgod Green\n\n\nHomeworlds Online (SDG# 10929)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.20, Ended: 2008.5.2\nParticipants: TwoShort (S), YourEternalGod (N)\nWinner: TwoShort\n\n1) YourEternalGod: Homeworld Y3 B2 G3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) YourEternalGod: Build G1 Youreternalgod\n\tTwoShort: Howdy... out of curiosity, did you intend to start 3 games at once?\n\n4) TwoShort: Build G1 Twoshort\n\tYourEternalGod: Not horribly, But I&#39;m more then happy to play them out. Lets me try different options\n\n5) YourEternalGod: Discover G1 Youreternalgod Y1 Amber\n\tTwoShort: Sounds good to me.  \n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) YourEternalGod: Build G1 Youreternalgod\n\n8) TwoShort: Build B1 Twoshort\n\n9) YourEternalGod: Trade G1 Y1 Youreternalgod\n\n10) TwoShort: Discover B1 Twoshort Y3 Yolonda\n\n11) YourEternalGod: Build G1 Youreternalgod\n\n12) TwoShort: Build B2 Twoshort\n\n13) YourEternalGod: Discover G1 Amber B3 Azure\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) YourEternalGod: Sacrifice G3 Youreternalgod\nBuild G1 Youreternalgod\nBuild G2 Youreternalgod\nBuild G2 Azure\n\n16) TwoShort: Move R2 Twoshort Azure\n\n\nHomeworlds Online (SDG# 10907)\nStarted: 2008.4.26, Ended: 2009.12.9\nParticipants: MikeYarrum (S), lostsoul (N)\nWinner: MikeYarrum\n\n1) lostsoul: Homeworld G1 B3 R3\n\tlostsoul: Hi -- I&#39;m very, very new to this game.  I hope that is ok?\n\n2) MikeYarrum: Homeworld B2 Y1 G3\n\tMikeYarrum: No problem, we were all new at one point. =D\n\n3) lostsoul: Trade R3 G3 Lostsoul\n\n\nHomeworlds Online (SDG# 10959)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.26, Ended: 2008.5.19\nParticipants: spearjr (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) spearjr: Homeworld B3 G2 Y3\n\n3) jeep: Build G1 Jeep\n\n4) spearjr: Build Y1 Spearjr\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) spearjr: Trade Y1 B1 Spearjr\n\n7) jeep: Build G1 Jeep\n\n8) spearjr: Build Y1 Spearjr\n\n9) jeep: Build G1 Jeep\n\n10) spearjr: Build Y1 Spearjr\n\tspearjr: build y1 spearjr\r\n\n\n11) jeep: Discover G1 Jeep Y3 Cache\n\n12) spearjr: Trade Y1 G1 Spearjr\n\n13) jeep: Trade G1 B1 Jeep\n\n\nHomeworlds Online (SDG# 10971)\nVariants: &quot;Hard time&quot;\nStarted: 2008.4.28, Ended: 2008.6.1\nParticipants: stoneaxe (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B1 Y2 G3\n\n2) stoneaxe: Homeworld Y1 B3 G3\n\tsordros: Good luck.  Have fun.\n\n3) sordros: Build G1 Sordros\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) sordros: Discover G1 Sordros Y3 Itani\n\n6) stoneaxe: Trade G1 B1 Stoneaxe\n\n7) sordros: Build G1 Sordros\n\tstoneaxe: Forgot to respond to your greeting.  Having fun so far!  Good luck to you too.\n\n8) stoneaxe: Build B1 Stoneaxe\n\n9) sordros: Trade G1 Y1 Sordros\n\n10) stoneaxe: Discover B1 Stoneaxe G2 Opter\n\n11) sordros: Build Y1 Sordros\n\n12) stoneaxe: Build B2 Opter\n\n13) sordros: Discover Y1 Sordros B3 Uit\n\n14) stoneaxe: Trade B2 Y2 Opter\n\n15) sordros: Build G1 Sordros\n\n16) stoneaxe: Build B2 Stoneaxe\n\n17) sordros: Build Y2 Sordros\n\n18) stoneaxe: Build Y3 Opter\n\n19) sordros: Move G1 Sordros Uit\n\n\tstoneaxe: Gaaahhhhh..... Sorry bout that!  Got into a busy weekend and forgot to make my move.  Well, nice game!  Apologies for the timeout!\n\nHomeworlds Online (SDG# 10963)\nStarted: 2008.4.28, Ended: 2008.8.23\nParticipants: MikeYarrum (S), Cinnibar (N)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G1 B3 Y3\n\n\nHomeworlds Online (SDG# 10997)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.1, Ended: 2008.5.22\nParticipants: fnord (S), Horowits (N)\nWinner: Horowits\n\n1) Horowits: Homeworld B3 G2 Y3\n\n2) fnord: Homeworld B2 G1 Y3\n\tHorowits: Ahoy mon.  If you need to contact me - 20camels@gmail.com.  good luck... not that you will need it\n\n3) Horowits: Build Y1 Horowits\n\n4) fnord: B Y1 Fnord\n\tfnord: Greetings, and to all the spectators as well.  Sure is a big crowd.\n\n5) Horowits: Trade Y1 G1 Horowits\n\n6) fnord: Discover Y1 Fnord R3 Discord\n\n7) Horowits: Discover G1 Horowits B1 Doom\n\n8) fnord: Build Y1 Fnord\n\n9) Horowits: Build Y1 Horowits\n\n10) fnord: Discover Y1 Fnord B3 Kallisti\n\n11) Horowits: Move Y1 Horowits Doom\n\n12) fnord: Build Y2 Fnord\n\n13) Horowits: Build Y2 Doom\n\n\tfnord: Frell, sorry about that! I realized I didn&#39;t have much time left yesterday, but couldn&#39;t get to the site. Again, my apologies.\n\nHomeworlds Online (SDG# 10931)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.2, Ended: 2008.5.18\nParticipants: TwoShort (S), smilingra (N)\nWinner: TwoShort\n\n1) smilingra: Homeworld B3 R1 G3\n\tTwoShort: Howdy\n\tsmilingra: hi there\r\n\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) smilingra: Build G1 Smilingra\n\n4) TwoShort: Build G1 Twoshort\n\n5) smilingra: Trade G1 Y1 Smilingra\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) smilingra: Build G1 Smilingra\n\n8) TwoShort: Build B1 Twoshort\n\n9) smilingra: Discover G1 Smilingra B2 Beta\n\n10) TwoShort: Discover B1 Twoshort G3 Grogar\n\n11) smilingra: Build G1 Beta\n\n12) TwoShort: Build B2 Twoshort\n\n\nHomeworlds Online (SDG# 10876)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.5.2, Ended: 2008.5.5\nParticipants: scottobear (S), Horowits (N)\nWinner: Horowits\n\n1) Horowits: Homeworld G2 B3 Y3\n\n\nHomeworlds Online (SDG# 10962)\nStarted: 2008.5.8, Ended: 2008.5.13\nParticipants: Horowits (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) Horowits: Homeworld B3 G2 Y3\n\n3) ts52: Build G1 Ts52\n\tHorowits: Greetings\n\tts52: Salutations. Have a good game!\n\n4) Horowits: Build Y1 Horowits\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Horowits: Trade Y1 G1 Horowits\n\n7) ts52: Build B1 Ts52\n\n8) Horowits: Build Y1 Horowits\n\n9) ts52: Build G1 Ts52\n\n10) Horowits: Discover Y1 Horowits R1 Doom\n\n11) ts52: Discover B1 Ts52 R3 Elmo\n\n12) Horowits: Trade G1 R1 Horowits\n\n13) ts52: Trade G1 R1 Ts52\n\n14) Horowits: Build R2 Horowits\n\n15) ts52: Build R2 Ts52\n\n16) Horowits: Trade R2 G2 Horowits\n\n17) ts52: Build G1 Ts52\n\n18) Horowits: Move G2 Horowits Doom\n\n19) ts52: Sacrifice G1 Ts52\nBuild B2 Elmo\n\n20) Horowits: Build R2 Horowits\n\n21) ts52: Build G1 Ts52\n\n22) Horowits: Build Y1 Doom\n\n23) ts52: Move G1 Ts52 Elmo\n\n24) Horowits: Discover Y1 Doom G3 Tinygreen\n\n25) ts52: Build B2 Elmo\n\n26) Horowits: Trade R1 G1 Horowits\n\n27) ts52: Trade B2 Y2 Elmo\n\n28) Horowits: Trade R2 B2 Horowits\n\n29) ts52: Build G1 Ts52\n\n30) Horowits: Trade Y3 G3 Horowits\n\n31) ts52: Sacrifice Y2 Elmo\nMove G1 Elmo Doom\nMove G1 Doom Horowits\nCatastrophe Horowits Green\n\n32) Horowits: Move G2 Doom Horowits\n\n33) ts52: Move B1 Ts52 Horowits\n\tHorowits: haha wow. what a fool i am\n\n34) Horowits: Trade B2 R2 Horowits\n\n35) ts52: Sacrifice G3 Ts52\nBuild B2 Horowits\nBuild B2 Horowits\nBuild B3 Horowits\nCatastrophe Horowits Blue\n\n\tts52: Thanks for the game. Catasrophes can be hard to see coming.\n\tHorowits: indeed.  learned something though :) thanks\n\nHomeworlds Online (SDG# 10984)\nStarted: 2008.5.10, Ended: 2008.5.10\nParticipants: wastelands (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11019)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.12, Ended: 2008.6.11\nParticipants: mneme (S), Keith (N)\nWinner: mneme\n\n1) Keith: Homeworld Y1 B3 G3\n\n2) mneme: Homeworld R2 B3 G3\n\n3) Keith: Build G1 Keith\n\n4) mneme: Build G1 Mneme\n\n5) Keith: Discover G1 Keith Y2 Brightlygo\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) Keith: Build G1 Keith\n\n8) mneme: Build Y1 Mneme\n\n9) Keith: Trade G1 B1 Keith\n\n10) mneme: Discover Y1 Mneme G1 Grape\n\n11) Keith: Move B1 Keith Brightlygo\n\n12) mneme: Build Y2 Grape\n\n13) Keith: Build G1 Keith\n\tKeith: Getting myself locked out of yellow. I saw it coming and decided I could wait a turn to do something about it.\n\n14) mneme: Sacrifice G3 Mneme\nBuild Y2 Grape\nBuild Y3 Mneme\nBuild Y3 Mneme\n\n15) Keith: Build G2 Brightlygo\n\n16) mneme: Trade Y3 G3 Mneme\n\n17) Keith: Build G2 Keith\n\n18) mneme: Sacrifice Y3 Mneme\nMove G3 Mneme Grape\nMove G3 Grape Brightlygo\nMove G3 Brightlygo Keith\nCatastrophe Keith G\n\tmneme: um  Oddly enough...\n\tmneme: And yeah, the yellow lockout was nasty -- though taking advantage of your blunder was arguably moreso.\r\n\n\tKeith: Wow, way to go.  Nice lesson in factoring in the possibility of your moving your 3-pointer out.  Alas, I was never in this game enough to give you a challenge.  I will be back for a re-match after I learn to think Homeworlds again.\n\tmneme: Looking forward to it.  Meanwhile, Andy challenged me to a game at Origins; will have to see how it goes.\n\n\nHomeworlds Online (SDG# 11027)\nStarted: 2008.5.14, Ended: 2008.6.12\nParticipants: ts52 (S), Horowits (N)\nWinner: ts52\n\n1) Horowits: Homeworld G3 B2 Y3\n\tHorowits: best of 3 ;)\n\n2) ts52: Homeworld B1 Y2 G3\n\tts52: Sure, sounds good to me\n\n3) Horowits: Build Y1 Horowits\n\n4) ts52: Build G1 Ts52\n\n5) Horowits: Trade Y1 G1 Horowits\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Horowits: Build G1 Horowits\n\n8) ts52: Build B1 Ts52\n\n9) Horowits: Build Y1 Horowits\n\n10) ts52: Discover B1 Ts52 G3 Kermit\n\n11) Horowits: Discover G1 Horowits Y1 Wolley\n\n12) ts52: Build B2 Kermit\n\n13) Horowits: Trade Y3 B3 Horowits\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) Horowits: Discover B3 Horowits R1 Der\n\n16) ts52: Build B2 Kermit\n\n17) Horowits: Build G1 Horowits\n\n18) ts52: Build G2 Ts52\n\n19) Horowits: Build G2 Wolley\n\n20) ts52: Build G2 Ts52\n\n21) Horowits: Sacrifice G1 Horowits\nBuild B2 Der\n\n22) ts52: Build B3 Ts52\n\n23) Horowits: Trade B2 Y2 Der\n\n24) ts52: Sacrifice B2 Kermit\nTrade B3 R3 Ts52\nTrade G2 R2 Ts52\n\n25) Horowits: Sacrifice G2 Wolley\nBuild Y1 Der\nBuild Y3 Horowits\n\n26) ts52: Move R3 Ts52 Kermit\n\n27) Horowits: Trade Y1 R1 Horowits\n\n28) ts52: Build B2 Kermit\n\n29) Horowits: Trade Y2 G2 Der\n\n30) ts52: Build B2 Ts52\n\n31) Horowits: Discover B3 Der Y3 Move\n\n32) ts52: Trade B2 Y2 Ts52\n\n33) Horowits: Sacrifice G2 Der\nBuild Y1 Horowits\nBuild Y3 Der\n\n34) ts52: Move B2 Kermit Wolley\n\n35) Horowits: Move G1 Wolley Move\n\n36) ts52: Sacrifice G2 Ts52\nBuild B2 Kermit\nBuild B3 Wolley\n\n37) Horowits: Build B3 Move\n\n38) ts52: Sacrifice Y2 Ts52\nMove B3 Wolley Move\nMove B2 Wolley Move\nCatastrophe Move Blue\n\n39) Horowits: Build R1 Horowits\n\n40) ts52: Move R2 Ts52 Move\n\n41) Horowits: Move G1 Move Ts52\n\n42) ts52: Build B2 Kermit\n\n43) Horowits: Sacrifice R1 Horowits\nAttack B1S Ts52\n\n44) ts52: Sacrifice R2 Move\nAttack G1N Ts52\nAttack B1N Ts52\n\n45) Horowits: Move G1 Horowits Der\n\n46) ts52: Build B3 Ts52\n\n47) Horowits: Discover Y1 Der B3 Eulb\n\tHorowits: sorry for delay internet was down :P\n\n48) ts52: Discover B2 Kermit G1 Oscar\n\n49) Horowits: Move G1 Der Eulb\n\tts52: no problem\n\n50) ts52: Build B3 Oscar\n\n51) Horowits: Move Y1 Eulb Ts52\n\n52) ts52: Trade B3 R3 Ts52\n\n53) Horowits: Build G2 Eulb\n\n54) ts52: Attack Y1N Ts52\n\n55) Horowits: Move Y3 Der Eulb\n\n56) ts52: Trade B3 R3 Oscar\n\n57) Horowits: Move G1 Eulb Ts52\n\n58) ts52: Discover G3 Ts52 Y3 Bigbird\n\n59) Horowits: Trade G1 Y1 Ts52\n\n60) ts52: Move Y1 Ts52 Kermit\n\n61) Horowits: Build Y2 Eulb\n\n62) ts52: Attack Y1N Ts52\n\n63) Horowits: Trade Y3 B3 Eulb\n\n64) ts52: Build B3 Oscar\n\n65) Horowits: Build Y3 Eulb\n\n66) ts52: Sacrifice Y2 Kermit\nMove R3 Oscar Horowits\nMove B3 Oscar Horowits\n\n67) Horowits: Sacrifice G2 Eulb\nBuild R1 Horowits\nBuild R1 Horowits\nCatastrophe Horowits Red\n\n68) ts52: Sacrifice R3 Kermit\nAttack Y3N Horowits\nAttack Y1N Horowits\nPass\n\n\tts52: Thanks for the game\n\tHorowits: was fun\n\nHomeworlds Online (SDG# 11002)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.18, Ended: 2008.5.21\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Danner: Homeworld R2 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build G1 Danner\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) Danner: Trade G1 Y1 Danner\n\n7) TwoShort: Build B1 Twoshort\n\n8) Danner: Build Y1 Danner\n\n9) TwoShort: Trade B1 Y1 Twoshort\n\n10) Danner: Build Y2 Danner\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Danner: Discover Y1 Danner G3 Stargate\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) Danner: Trade Y1 B1 Danner\n\n15) TwoShort: Build Y1 Grogar\n\n16) Danner: Move Y1 Stargate Grogar\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild Y3 Twoshort\nCatastrophe Grogar Yellow\n\n18) Danner: Discover B1 Danner G3 Stargate\n\tDanner: Wow, you are great!\n\n19) TwoShort: Trade Y3 G3 Twoshort\n\tTwoShort: Thanks, but you didn&#39;t give me much choice :)\n\n20) Danner: Build B2 Stargate\n\n21) TwoShort: Discover B1 Twoshort G2 Greenland\n\n22) Danner: Trade B1 Y1 Stargate\n\n23) TwoShort: Move Y3 Twoshort Greenland\n\n24) Danner: Build Y1 Stargate\n\n25) TwoShort: Build G1 Twoshort\n\n26) Danner: Trade Y1 G1 Stargate\n\n27) TwoShort: Build Y1 Greenland\n\n28) Danner: Build G1 Danner\n\n29) TwoShort: Discover Y1 Greenland Y1 Yellonia\n\n30) Danner: Move Y1 Stargate Greenland\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Yellonia\nBuild Y3 Greenland\nBuild Y3 Twoshort\n\n32) Danner: Sacrifice Y2 Danner\nDiscover G1 Stargate R2 Mars\nPass\n\tDanner: Lol, I have calculated a lot to prevent this event, but I was wrong. I thought it is enough to be able to create one catastrophe, but now I can only destroy lesser ships :D\n\n33) TwoShort: Discover Y2 Yellonia Y2 Yolonda\n\tDanner: Now, I have no chance to win :D\n\tTwoShort: I don&#39;t suppose this will make you feel better...\n\n34) Danner: Move Y1 Greenland Yellonia\n\tDanner: Exactly what? :)\n\n35) TwoShort: Trade B1 R1 Greenland\n\n36) Danner: Build G2 Mars\n\tTwoShort: Oh, I meant that in response to your noting that you could only destroy lesser ships; my move took away your chance for any catastrophe at all.\n\tDanner: indeed\n\n37) TwoShort: Sacrifice R1 Greenland\nAttack Y1 Yellonia\n\n38) Danner: Sacrifice G3 Danner\nBuild G2 Danner\nBuild G3 Danner\nBuild G3 Danner\nCatastrophe Danner G\n\tDanner: woohoo, you control all the yellow pieces! I have no chance to make any yellow catastrophe, what is more, my ships are stuck :D\n\tDanner: Congratulation! :)\n\n\nHomeworlds Online (SDG# 11036)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.18, Ended: 2008.6.25\nParticipants: Jesse (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R3 B2 G3\n\n2) Jesse: Homeworld R2 B1 G3\n\n3) Danner: Build G1 Danner\n\tJesse: Hello.  Have a good game.\n\tDanner: Hi. Thx, the same to you.\n\n4) Jesse: Build G1 Jesse\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Danner: Build G1 Danner\n\n8) Jesse: Build G1 Jesse\n\n9) Danner: Trade G1 R1 Danner\n\n10) Jesse: Build G1 Jesse\n\n11) Danner: Build G1 Danner\n\n12) Jesse: Discover G1 Jesse B3 Cheese\n\n13) Danner: Discover G1 Danner Y1 Moon\n\n14) Jesse: Build G2 Cheese\n\n\n15) Danner: Build Y2 Danner\n\n16) Jesse: Trade G2 R2 Cheese\n\n17) Danner: Build G2 Danner\n\n18) Jesse: Build G2 Cheese\n\n19) Danner: Sacrifice G3 Danner\nBuild G2 Danner\nBuild G3 Moon\nBuild G3 Danner\n\n20) Jesse: Trade G2 Y2 Cheese\n\n21) Danner: Sacrifice Y2 Danner\nMove G3 Danner Moon\nMove G3 Moon Cheese\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G2 Cheese\nBuild G3 Jesse\nBuild R1 Cheese\n\n23) Danner: Trade G3 B3 Cheese\n\n24) Jesse: Build G3 Jesse\n\n25) Danner: Sacrifice G3 Moon\nBuild G3 Moon\nBuild B1 Cheese\nBuild B1 Cheese\nCatastrophe Cheese B\n\n26) Jesse: Trade G1 R1 Jesse\n\n27) Danner: Build Y2 Danner\n\n28) Jesse: Build Y2 Jesse\n\n29) Danner: Discover Y1 Danner G1 Hyperspace\n\n30) Jesse: Discover G3 Jesse Y3 Oscar\n\n31) Danner: Sacrifice G3 Moon\nBuild Y2 Hyperspace\nBuild Y3 Danner\nBuild Y3 Danner\n\n32) Jesse: Discover Y2 Jesse B3 Smellify\n\n33) Danner: Move Y1 Hyperspace Oscar\n\n34) Jesse: Build G1 Jesse\n\n35) Danner: Build G2 Moon\n\n36) Jesse: Discover R1 Jesse G3 Thbt\n\n37) Danner: Move G2 Moon Oscar\n\n\tJesse: \n\tJesse: Sorry about that.  You certainly had control of the game, anyway.  Well played.\n\tDanner: Thanks.\n\nHomeworlds Online (SDG# 10999)\nStarted: 2008.5.19, Ended: 2008.6.11\nParticipants: Danner (S), MatrixFrog (N)\nWinner: Danner\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Danner: Build G1 Danner\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MatrixFrog: Discover Y1 Matrixfrog G3 Bop\n\n8) Danner: Build Y2 Danner\n\n9) MatrixFrog: Build Y2 Bop\n\n10) Danner: Move Y1 Danner Bop\n\n11) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n12) Danner: Sacrifice G3 Danner\nBuild Y1 Bop\nBuild Y2 Danner\nBuild Y3 Danner\nCatastrophe Bop Y\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) Danner: Trade Y3 G3 Danner\n\n15) MatrixFrog: Build R1 Matrixfrog\n\n16) Danner: Trade Y2 R2 Danner\n\n17) MatrixFrog: Discover R1 Matrixfrog Y3 Bip\n\n18) Danner: Move R2 Danner Bip\n\n19) MatrixFrog: Build R2 Matrixfrog\n\n20) Danner: Attack R1N Bip\n\n21) MatrixFrog: Trade R2 G2 Matrixfrog\n\n22) Danner: Build G1 Danner\n\n23) MatrixFrog: Discover G2 Matrixfrog Y3 Bap\n\n24) Danner: Discover R2 Bip Y2 Bup\n\n25) MatrixFrog: Build G1 Bap\n\n26) Danner: Sacrifice G3 Danner\nBuild R2 Bup\nBuild R2 Bup\nBuild R3 Bip\n\n27) MatrixFrog: Build R3 Matrixfrog\n\n28) Danner: Move R3 Bip Matrixfrog\n\n29) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R3 Matrixfrog\n\n30) Danner: Move R1 Bip Matrixfrog\n\n31) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n32) Danner: Trade R1 Y1 Matrixfrog\nCatastrophe Matrixfrog Y\n\n33) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n34) Danner: Move R2 Bup Bap\n\n35) MatrixFrog: Build Y1 Matrixfrog\n\n36) Danner: Sacrifice R2 Bup\nAttack G1N Bap\nAttack G2N Bap\n\n37) MatrixFrog: Build Y1 Matrixfrog\n\n38) Danner: Move R2 Bap Matrixfrog\n\n39) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n40) Danner: Attack G1N Matrixfrog\n\n41) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n42) Danner: Attack R1 Matrixfrog\n\n43) MatrixFrog: Build Y1 Matrixfrog\n\n44) Danner: Attack Y1N Matrixfrog\n\n\tDanner: Thx the game!\n\nHomeworlds Online (SDG# 11042)\nStarted: 2008.5.20, Ended: 2008.7.24\nParticipants: Cerulean (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Cerulean: Homeworld Y3 B1 G3\n\n3) Danner: Build G1 Danner\n\n4) Cerulean: Build G1 Cerulean\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Cerulean: Discover G1 Cerulean Y2 Wytu\n\n7) Danner: Build G1 Danner\n\n8) Cerulean: Move G1 Wytu Cerulean\n\n9) Danner: Discover G1 Danner Y3 Treshold\n\n10) Cerulean: Trade G1 R1 Cerulean\n\tDanner: ooops, mispelled :D\n\tDanner: lol, again... I must be tired\n\n11) Danner: Build Y1 Danner\n\n12) Cerulean: Build G1 Cerulean\n\n13) Danner: Discover Y1 Danner G3 Cube\n\n14) Cerulean: Discover G1 Cerulean Y2 Wytu\n\n15) Danner: Build Y1 Cube\n\n16) Cerulean: Build G1 Cerulean\n\n17) Danner: Sacrifice G3 Danner\nBuild Y2 Cube\nBuild Y2 Danner\nBuild Y3 Danner\n\n18) Cerulean: Build G2 Wytu\n\n19) Danner: Discover Y1 Cube G2 Earth\n\n20) Cerulean: Trade G1 B1 Cerulean\n\n21) Danner: Trade Y3 R3 Danner\n\n22) Cerulean: Trade G3 Y3 Cerulean\n\n23) Danner: Move Y1 Cube Earth\n\n24) Cerulean: Trade Y3 G3 Cerulean\n\n25) Danner: Build Y3 Cube\n\n26) Cerulean: Move G1 Wytu Cube\n\n27) Danner: Discover Y3 Cube G2 Refuge\n\n28) Cerulean: Move B1 Cerulean Earth\n\n29) Danner: Move G1 Treshold Danner\n\n30) Cerulean: Trade B1 R1 Earth\n\n31) Danner: Build Y3 Earth\n\n32) Cerulean: Attack Y1N Earth\n\n33) Danner: Sacrifice R3 Danner\nAttack R1S Earth\nAttack Y1S Earth\nAttack G1S Cube\n\n34) Cerulean: Build R2 Cerulean\n\n35) Danner: Build R2 Earth\n\n36) Cerulean: Trade R1 B1 Cerulean\n\n37) Danner: Move R2 Earth Cube\n\n38) Cerulean: Build B1 Cerulean\n\n39) Danner: Discover Y3 Refuge B3 Garrett\n\n40) Cerulean: Move B1 Cerulean Wytu\n\n41) Danner: Trade Y3 B3 Garrett\n\n42) Cerulean: Move B1 Wytu Garrett\n\n43) Danner: Build Y3 Danner\n\n44) Cerulean: Move B1 Cerulean Wytu\n\n45) Danner: Trade B3 R3 Garrett\n\n46) Cerulean: Trade B1 R1 Garrett\n\n47) Danner: Trade Y3 G3 Danner\n\n48) Cerulean: Build B1 Wytu\n\n49) Danner: Sacrifice G3 Danner\nBuild Y3 Danner\nBuild R2 Cube\nBuild R3 Earth\n\n50) Cerulean: Build R3 Cerulean\n\n51) Danner: Move R3 Earth Cerulean\n\n52) Cerulean: Attack R3N Cerulean\n\n53) Danner: Sacrifice Y2 Danner\nMove R1 Earth Cerulean\nMove Y3 Earth Cerulean\nCatastrophe Cerulean R\n\n54) Cerulean: Sacrifice R1 Garrett\nAttack Y3N Cerulean\n\n55) Danner: Sacrifice Y2 Cube\nMove R3 Garrett Earth\nMove R3 Earth Cerulean\n\n56) Cerulean: Trade G2 R2 Wytu\n\n57) Danner: Sacrifice R2 Cube\nAttack G3S Cerulean\nAttack Y3S Cerulean\n\n\tDanner: Thanks the game.\n\tDanner: Hm, it was longer than 2 months. :)\n\tCerulean: i hope i posed something of a challenge.  great game design, but i have better luck herding cats.\n\tDanner: Then, don&#39;t you want another one?\n\nHomeworlds Online (SDG# 11055)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.24, Ended: 2008.6.27\nParticipants: Horowits (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) Horowits: Homeworld Y2 B1 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\tHorowits: Greetings\n\n4) Horowits: Build G1 Horowits\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Horowits: Trade G1 Y1 Horowits\n\n7) alexcobo: Discover Y1 Alexcobo G1 G1\n\n8) Horowits: Build G1 Horowits\n\talexcobo: Hello. Good luck!\n\n9) alexcobo: Build Y2 Alexcobo\n\tHorowits: hehe yeah luck is something i need.  You online folk are better players then my circle of friends ;)\n\n10) Horowits: Discover Y1 Horowits G3 Neerg\n\n11) alexcobo: Trade Y1 B1 Alexcobo\n\n12) Horowits: Build G1 Horowits\n\n13) alexcobo: Move B1 Alexcobo G1\n\n14) Horowits: Discover G1 Horowits B3 Eulb\n\n15) alexcobo: Build Y1 G1\n\tHorowits: sorry for delay internet was down :P\n\n16) Horowits: Build G2 Eulb\n\n17) alexcobo: Build Y2 Alexcobo\n\n18) Horowits: Build Y3 Neerg\n\n19) alexcobo: Sacrifice Y2 Alexcobo\nMove Y1 G1 Neerg\nMove Y1 G1 Neerg\nCatastrophe Neerg Y\n\n20) Horowits: Trade G1 Y1 Eulb\n\n21) alexcobo: Trade B1 G1 G1\n\n22) Horowits: Build G2 Eulb\n\n23) alexcobo: Build G2 G1\n\n24) Horowits: Discover G2 Eulb Y1 Tiny\n\n25) alexcobo: Build Y1 Alexcobo\n\n26) Horowits: Build G3 Tiny\n\n27) alexcobo: Trade Y2 R2 Alexcobo\n\n28) Horowits: Trade G1 R1 Horowits\n\n29) alexcobo: Build Y2 Alexcobo\n\n30) Horowits: Build R1 Horowits\n\n31) alexcobo: Trade Y1 B1 Alexcobo\n\n\nHomeworlds Online (SDG# 11065)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.27, Ended: 2008.5.27\nParticipants: fuguru (S), neoprofin (N)\nWinner: fuguru\n\n1) neoprofin: Homeworld G1 B2 Y3\n\n2) fuguru: Homeworld B1 Y3 G3\n\n3) neoprofin: Discover Y3 Neoprofin R3 Minbar\n\n\nHomeworlds Online (SDG# 11068)\nStarted: 2008.5.27, Ended: 2008.5.28\nParticipants: neoprofin (S), fuguru (N)\nWinner: fuguru\n\n1) fuguru: Homeworld B3 Y2 G3\n\n2) neoprofin: Homeworld G2 B1 Y3\n\n3) fuguru: Build G1 Fuguru\n\n4) neoprofin: Build Y1 Neoprofin\n\n5) fuguru: Discover G1 Fuguru B1 Centauri Prime\n\n6) neoprofin: Trade Y3 R3 Neoprofin\n\tfuguru: Dammit.  That was supposed to be Centauri Prime\n\n7) fuguru: Build G1 Centauri\n\tneoprofin: londo is gonig to be pissed\r\n\n\n8) neoprofin: Discover R3 Neoprofin R3 Minbar\n\n9) fuguru: Trade G1 Y1 Centauri\n\tfuguru: Minbar is HUGE!\n\n10) neoprofin: Build Y1 Neoprofin\n\tneoprofin: that&#39;s what she said\n\n11) fuguru: Discover G1 Centauri B2 Narn\n\n12) neoprofin: Move Y1 Neoprofin Minbar\n\n13) fuguru: Build G1 Narn\n\n14) neoprofin: Move R3 Minbar Centauri\n\n15) fuguru: Move Y1 Centauri Narn\n\tneoprofin: in some ways the drazi have taught us that sometimes genocide is the answer\r\n\n\n16) neoprofin: Move Y1 Minbar Centauri\n\n17) fuguru: Trade G3 R3 Fuguru\n\tfuguru: If the Centauri&#39;s have the audacity to invade Narn, then Narns _will_ fight back!  We are a peaceful race moving across the universe and multiplying!\n\n18) neoprofin: Build Y2 Neoprofin\n\n19) fuguru: Build Y2 Narn\n\tneoprofin: That was a peaceful research colony!\n\n20) neoprofin: Trade Y1 G1 Centauri\n\n21) fuguru: Trade Y2 R2 Narn\n\n22) neoprofin: Build G2 Centauri\n\tneoprofin: I wish I could remember what my strategy was from each turn, it&#39;s like starting the game all over again every time.\n\n23) fuguru: Discover R2 Narn Y3 Minbar\n\n24) neoprofin: Discover Y1 Neoprofin R3 Vorlonworld\n\n25) fuguru: Move R2 Minbar Neoprofin\n\tfuguru: My Minbar wasn&#39;t big enough.\n\n26) neoprofin: Trade G1 Y1 Centauri\n\n27) fuguru: Attack Y2S Neoprofin\n\tfuguru: DUH DUH DUUUUUN\n\n\nHomeworlds Online (SDG# 11066)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.27, Ended: 2008.8.16\nParticipants: wyons (S), TwoShort (N)\nWinner: wyons\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) wyons: Homeworld B1 R3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) wyons: Build G1 Wyons\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) TwoShort: Build G1 Twoshort\n\n8) wyons: Build G1 Wyons\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) wyons: Build Y1 Wyons\n\n11) TwoShort: Build Y2 Twoshort\n\n12) wyons: Build Y2 Wyons\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) wyons: Discover Y1 Wyons G2 Xanthrophyl\n\n15) TwoShort: Build G1 Twoshort\n\n16) wyons: Trade Y1 B1 Wyons\n\n17) TwoShort: Build G1 Twoshort\n\n18) wyons: Build G2 Wyons\n\n19) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n20) wyons: Trade G1 R1 Wyons\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n22) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild R1 Wyons\nBuild B2 Wyons\n\n23) TwoShort: Trade G2 R2 Bluonia\n\n24) wyons: Move R1 Wyons Xanthrophyl\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\nBuild B2 Twoshort\n\n26) wyons: Move B2 Wyons Xanthrophyl\n\n27) TwoShort: Sacrifice B2 Twoshort\nTrade G1 Y1 Twoshort\nTrade G2 R2 Bluonia\n\n28) wyons: Discover B1 Wyons B2 Bluemeanies\n\n29) TwoShort: Discover Y1 Grogar G2 Grozuki\n\n30) wyons: Sacrifice G2 Wyons\nBuild B3 Bluemeanies\nBuild B3 Xanthrophyl\n\n31) TwoShort: Sacrifice Y2 Twoshort\nMove B1 Twoshort Bluonia\nMove B1 Bluonia Bluemeanies\nCatastrophe Bluemeanies Blue\n\n32) wyons: Trade B3 G3 Xanthrophyl\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n34) wyons: Sacrifice G3 Xanthrophyl\nBuild G3 Wyons\nBuild R2 Xanthrophyl\nBuild R3 Wyons\n\n35) TwoShort: Trade G2 Y2 Bluonia\n\n36) wyons: Move R3 Wyons Grozuki\n\tTwoShort: I&#39;m about to leave on vacation for two weeks, and I&#39;m not entirely sure how much internet access I&#39;ll have.  Would you mind if we froze the clock for a bit?\n\twyons: yep thats fine, please can you unfreeze it in two weeks (I dont know how to)\n\tTwoShort: I&#39;m back...\n\n\tTwoShort: Ack! Timed out during a server outage; I guess that will teach me to let it run down to the last day.  In any case, you had me pretty thoroughly cornered; I&#39;m just sorry to be a lame ass and deny you the satisfaction of finishing me off.\n\twyons: No worries, thank you for the game!\n\nHomeworlds Online (SDG# 11062)\nStarted: 2008.5.27, Ended: 2008.6.1\nParticipants: Daarck (S), MikeYarrum (N)\nWinner: Daarck\n\n\nHomeworlds Online (SDG# 11073)\nStarted: 2008.5.28, Ended: 2008.5.29\nParticipants: neoprofin (S), fuguru (N)\nWinner: neoprofin\n\n1) fuguru: Homeworld G1 B3 Y3\n\n2) neoprofin: Homeworld B3 G2 R3\n\n3) fuguru: Build Y1 Fuguru\n\n4) neoprofin: Build R1 Neoprofin\n\n5) fuguru: Build Y1 Fuguru\n\n6) neoprofin: Trade R1 Y1 Neoprofin\n\n7) fuguru: Discover Y1 Fuguru Y2 Tattooine\n\tneoprofin: there is a hole in your mind\n\n8) neoprofin: Build Y2 Neoprofin\n\n9) fuguru: Discover Y1 Fuguru Y2 Dantooine\n\n10) neoprofin: Discover Y2 Neoprofin G1 Dagobah\n\n11) fuguru: Build Y3 Fuguru\n\n12) neoprofin: Build Y3 Dagobah\n\n13) fuguru: Discover Y1 Tattooine G1 Endor\n\n14) neoprofin: Discover Y2 Dagobah B2 Coruscant\n\n15) fuguru: Build Y2 Fuguru\n\n16) neoprofin: Move Y2 Coruscant Fuguru\nCatastrophe Fuguru Y\n\n\nHomeworlds Online (SDG# 11040)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.28, Ended: 2008.5.29\nParticipants: mneme (S), jeep (N)\nWinner: mneme\n\n\tjeep: This challenge is supposed to be suspended... I&#39;m not going to take on any new games right now.  When I return, I&#39;m happy to play.\n\tmneme: Cool -- have a good trip!\n\nHomeworlds Online (SDG# 11049)\nVariants: &quot;Hard time&quot;\nStarted: 2008.5.28, Ended: 2008.6.5\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) mneme: Homeworld B1 R3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build G1 Mneme\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) TwoShort: Build G1 Twoshort\n\n8) mneme: Build G1 Mneme\n\tmneme: Ok, so where did all the spectators come from?\r\nNot that I mind seeing people watch me get my ass handed to me (again) :)\n\n9) TwoShort: Trade G1 B1 Twoshort\n\tmneme: Particularly since...oh, look, not only playing HW against Twoshort, but with him going first...as banker...\n\n10) mneme: Trade G1 B1 Mneme\n\tTwoShort: Must be because I&#39;m a big celebrity :)  I&#39;m not clear what it actually means that they are there.  You can look at any game right?  Are they getting emails when a move is made or something?  \r\n\n\tTwoShort: Hey! Spectators!  You&#39;re always there, but are any of you actually actively watching my every move?  That&#39;d be weird.\n\n11) TwoShort: Build B2 Twoshort\n\tmneme: I think it means the game appears on their display.\r\n\n\n12) mneme: Build G1 Mneme\n\n13) TwoShort: Discover B1 Twoshort G3 Grogar\n\n14) mneme: Trade G1 R1 Mneme\n\n15) TwoShort: Build G1 Twoshort\n\n16) mneme: Build R1 Mneme\n\n17) TwoShort: Discover G1 Twoshort B3 Bluzilla\n\n18) mneme: Discover R1 Mneme G2 Jade\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B3 Grogar\nBuild B3 Twoshort\n\n20) mneme: Build R2 Jade\n\n21) TwoShort: Sacrifice B2 Grogar\nTrade B3 Y3 Grogar\nTrade B3 G3 Twoshort\n\n22) mneme: Build Y1 Mneme\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B3 Grogar\nBuild B3 Twoshort\n\tmneme: sweet.  Also, toast.\r\n\n\n24) mneme: Sacrifice Y1 Mneme\nMove R1 Jade Bluzilla\n\n25) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Grogar\nTrade B3 G3 Twoshort\n\tTwoShort: Well, if you liked it the first time... :)\n\tmneme: mnnn.  Toast.  It was the blue sacrifice refinement I didn&#39;t expect.\n\n26) mneme: Attack G1 Bluzilla\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B3 Grogar\nBuild B3 Twoshort\n\n28) mneme: Build R2 Bluzilla\n\n29) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Grogar\nTrade B3 G3 Twoshort\n\n30) mneme: Trade R2 B2 Bluzilla\n\n31) TwoShort: Build B3 Grogar\n\n32) mneme: Build B3 Bluzilla\n\tTwoShort: This is getting addictive :)\n\n33) TwoShort: Move B2 Twoshort Bluzilla\nCatastrophe Bluzilla Blue\n\n\tmneme: Ok, that&#39;s enough; I wanted to see if you&#39;d make a mistake, but I didn&#39;t have enough yellow to take advantage of one even if you had made such a mistake.  grats.\n\nHomeworlds Online (SDG# 11071)\nStarted: 2008.5.28, Ended: 2008.6.3\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n\tmneme: you taking a move?\n\nHomeworlds Online (SDG# 11003)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.5.28, Ended: 2008.6.10\nParticipants: mneme (S), scottobear (N)\nWinner: mneme\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) mneme: Homeworld B1 R3 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) mneme: Build G1 Mneme\n\n5) scottobear: Trade Y1 G1 Scottobear\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) scottobear: Discover G1 Scottobear B1 Monkey\n\n8) mneme: Build G1 Mneme\n\n9) scottobear: Build Y1 Scottobear\n\n10) mneme: Trade G1 B1 Mneme\n\n11) scottobear: Build G1 Monkey\n\n12) mneme: Build B2 Mneme\n\n13) scottobear: Trade Y1 R1 Scottobear\n\n14) mneme: Discover B2 Mneme Y2 Daffodil\n\n15) scottobear: Trade Y3 B3 Scottobear\n\n16) mneme: Sacrifice G3 Mneme\nBuild B2 Daffodil\nBuild B2 Daffodil\nBuild B3 Mneme\n\n17) scottobear: Build G1 Monkey\n\n18) mneme: Sacrifice B2 Daffodil\nTrade B2 Y2 Daffodil\nTrade B3 G3 Mneme\n\n19) scottobear: Trade G1 Y1 Monkey\n\n20) mneme: Sacrifice G3 Mneme\nBuild B2 Daffodil\nBuild B2 Daffodil\nBuild B3 Mneme\n\n21) scottobear: Build R1 Scottobear\n\tscottobear: I&#39;m still getting the hang of sacrifcies for moves.. that was nice!\n\n22) mneme: Trade B3 G3 Mneme\n\tmneme: *nod*  I actually stole a few moves from TwoShort, who&#39;s kicking my ass in another game.\n\n23) scottobear: Build B3 Scottobear\n\n24) mneme: Sacrifice Y2 Daffodil\nMove B2 Daffodil Monkey\nMove B2 Monkey Scottobear\nCatastrophe Scottobear B\n\tmneme: You have chosen...poorly.\r\nBut hey, learning experience, right?\n\n25) scottobear: Build Y1 Monkey\n\tmneme: If you want to see how the endgame works, just keep playing -- I&#39;m killing you in 3 moves no matter what you do, so there&#39;s not that much reason to short circuit it if you want to see the endgame.  (hmm.  Crazy play on your part can push it to 4 rounds; I don&#39;t see it going past that).\r\n\r\n\n\tscottobear: thanks! I appreciate the strategy assist!\n\n26) mneme: Move G3 Mneme Scottobear\n\n27) scottobear: Move G1 Monkey Scottobear\n\tmneme: I could fairly easily kill you with red...swap blue for red in daffodil, then move from mneme to your home system, then sac red to take 2 pieces from your home system.  But you could delay it -- grow a red in your home system, move stuff back to keep going, etc.  This way...I move to your home system, next turn I grow a green...after that, there&#39;s no hope; no matter what you do, I catastrophe your home system on t3; no more star = game over.\n\tmneme: normally, moving my g3 out of my home system would be foolish.  But in this case, with your only controlling smalls, it&#39;s quite safe.\n\n28) mneme: Build G1 Scottobear\nCatastrophe Scottobear G\n\tmneme: Well, that makes it faster...thanks for the game!  \n\tmneme: Oh, FWIW, the &quot;crazy play that can push it to four rounds&quot; was, on move 25, &quot;m r1 scottobear mneme&quot;.  This threatened either a stalemate or a win if I didn&#39;t deal with it -- so instead of a three move win (was 2, but only because you helped by moving a g in), I&#39;d have to spend 1 round capturing the red, (then you only had one ship in your home system, so you couldn&#39;t repeat the trick), one moving the g into your home system, and then either swap b for r and take both ships (a sure win only if you had only two ships in your home system and no drones) or grow twice to win by catastrophe.\r\n\n\n\nHomeworlds Online (SDG# 11086)\nVariants: &quot;Unrated&quot;\nStarted: 2008.5.29, Ended: 2008.7.23\nParticipants: Danner (S), LordTom (N), Factorial (E)\nWinner: Danner\n\n1) LordTom: Homeworld B1 Y2 G3\n\n2) Factorial: Homeworld G1 B2 Y3\n\n3) Danner: Homeworld R1 B2 G3\n\n4) LordTom: Build G1 Lordtom\n\n5) Factorial: Build Y1 Factorial\n\n6) Danner: Build G1 Danner\n\n7) LordTom: Trade G1 R1 Lordtom\n\n8) Factorial: Build Y1 Factorial\n\n9) Danner: Trade G1 Y1 Danner\n\tLordTom: &Iacute;rjunk m&aacute;r ide valami magyar sz&ouml;veget is!\n\n10) LordTom: Discover R1 Lordtom R3 Mars\n\n11) Factorial: Trade Y1 R1 Factorial\n\n12) Danner: Build G1 Danner\n\n\nHomeworlds Online (SDG# 11083)\nStarted: 2008.5.30, Ended: 2010.2.9\nParticipants: scottobear (S), MikeYarrum (N)\nWinner: scottobear\n\n\nHomeworlds Online (SDG# 11090)\nStarted: 2008.6.2, Ended: 2008.6.20\nParticipants: neoprofin (S), fuguru (N)\nWinner: fuguru\n\n1) fuguru: Homeworld B3 Y2 G3\n\tneoprofin: 23 hours bitch!\n\n2) neoprofin: Homeworld G1 B3 R3\n\n3) fuguru: Build G1 Fuguru\n\n4) neoprofin: Build R1 Neoprofin\n\n5) fuguru: Discover G1 Fuguru G1 Aa\n\n6) neoprofin: Trade R1 Y1 Neoprofin\n\n7) fuguru: Build G2 Fuguru\n\n8) neoprofin: Build Y1 Neoprofin\n\n9) fuguru: Trade G3 Y3 Fuguru\n\n10) neoprofin: Build R1 Neoprofin\n\n11) fuguru: Build G2 Fuguru\n\n12) neoprofin: Discover Y1 Neoprofin Y2 Xxx\n\n13) fuguru: Build G2 Fuguru\n\n14) neoprofin: Discover Y1 Neoprofin Y2 Nambla\n\tfuguru: I&#39;m only double A but I&#39;m thinkin&#39; triple X.\n\n15) fuguru: Discover G2 Fuguru B1 Nafta\n\n16) neoprofin: Trade R1 B1 Neoprofin\n\n17) fuguru: Build G3 Nafta\n\n18) neoprofin: Build B1 Neoprofin\n\n19) fuguru: Trade G3 R3 Nafta\n\n20) neoprofin: Trade B1 Y1 Neoprofin\n\n21) fuguru: Build G3 Nafta\n\n22) neoprofin: Build Y3 Neoprofin\n\n23) fuguru: Trade G3 Y3 Nafta\n\n24) neoprofin: Build R1 Neoprofin\n\n25) fuguru: Move R3 Nafta Nambla\n\n26) neoprofin: Move Y1 Nambla Aa\n\n27) fuguru: Build G3 Nafta\n\n28) neoprofin: Trade Y3 G3 Neoprofin\n\n29) fuguru: Trade G3 R3 Nafta\n\n30) neoprofin: Build Y3 Neoprofin\n\n31) fuguru: Move R3 Nafta Xxx\n\n32) neoprofin: Sacrifice Y3 Neoprofin\nMove Y1 Aa Fuguru\nMove Y1 Xxx Aa\nMove Y1 Aa Fuguru\nCatastrophe Fuguru Y\n\n33) fuguru: Move Y3 Nafta Xxx\n\n34) neoprofin: Build G3 Neoprofin\n\tneoprofin: OH NOOOOOO! CATASTROPHE!!!!\n\n35) fuguru: Build G3 Fuguru\n\n36) neoprofin: Trade G3 Y3 Neoprofin\n\n37) fuguru: Trade G3 Y3 Fuguru\n\n38) neoprofin: Sacrifice Y3 Neoprofin\nDiscover R1 Neoprofin Y2 Fafsa\nMove G3 Neoprofin Fafsa\nMove G3 Fafsa Fuguru\n\n39) fuguru: Trade G2 R2 Fuguru\n\n40) neoprofin: Build R1 Neoprofin\n\n41) fuguru: Sacrifice Y3 Fuguru\nMove R3 Xxx Neoprofin\nMove Y3 Xxx Neoprofin\nMove R3 Nambla Fuguru\n\n42) neoprofin: Attack R3 Neoprofin\n\n43) fuguru: Sacrifice R3 Fuguru\nAttack R3 Neoprofin\nAttack R3 Neoprofin\nAttack R1 Neoprofin\n\n44) neoprofin: Move R1 Fafsa Neoprofin\nCatastrophe Neoprofin R\n\n45) fuguru: Sacrifice R2 Fuguru\nAttack B1 Neoprofin\nAttack Y1 Neoprofin\n\tfuguru: BWAHAHAHA!\n\n\tneoprofin: I do not know what weapons WWIII will be fought with, but I know WWIV will be fought with stones.\n\tfuguru: There will always be hidden stockpiles!\n\nHomeworlds Online (SDG# 11082)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.3, Ended: 2008.6.12\nParticipants: inundator (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy.\n\n2) inundator: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) inundator: Build G1 Inundator\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) inundator: Trade G1 R1 Inundator\n\n7) TwoShort: Build G1 Twoshort\n\n8) inundator: Build G1 Inundator\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) inundator: Discover G1 Inundator B1 Akihabara\n\n11) TwoShort: Build Y1 Twoshort\n\n12) inundator: Build G1 Inundator\n\n13) TwoShort: Build G2 Twoshort\n\n14) inundator: Build G2 Akihabara\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n16) inundator: Sacrifice G3 Inundator\nBuild G3 Inundator\nBuild R1 Inundator\nBuild R2 Inundator\n\n17) TwoShort: Trade G2 R2 Twoshort\n\n18) inundator: Discover R1 Inundator Y1 Shibuya\n\n19) TwoShort: Move G3 Yolonda Shibuya\n\n20) inundator: Move R1 Shibuya Yolonda\n\n21) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Shibuya\nBuild Y2 Twoshort\n\n22) inundator: Sacrifice G2 Akihabara\nBuild G2 Akihabara\nBuild R2 Yolonda\n\n23) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n24) inundator: Move R1 Yolonda Twoshort\n\n25) TwoShort: Sacrifice R2 Twoshort\nAttack R1S Twoshort\nPass\n\n26) inundator: Sacrifice G2 Akihabara\nBuild R2 Yolonda\nBuild R3 Inundator\n\n27) TwoShort: Sacrifice G3 Shibuya\nBuild Y3 Bluestar\nBuild Y3 Bluestar\nBuild Y3 Twoshort\n\n28) inundator: Move R3 Inundator Shibuya\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Shibuya\nMove G1 Shibuya Inundator\nMove G2 Shibuya Inundator\nCatastrophe Inundator Green\n\n30) inundator: Trade R2 G2 Inundator\n\n31) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluestar Shibuya\nMove Y3 Shibuya Inundator\n\n32) inundator: Move R3 Shibuya Inundator\n\n33) TwoShort: Sacrifice R1 Twoshort\nAttack R3S Inundator\n\n34) inundator: Build R1 Inundator\n\n35) TwoShort: Sacrifice R3 Inundator\nAttack R1S Inundator\nAttack R1S Inundator\nAttack G2S Inundator\n\tinundator: I thinks that&#39;s game. Thank you!\n\n\nHomeworlds Online (SDG# 11095)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.6.3, Ended: 2008.6.27\nParticipants: MadWuher (S), scottobear (N)\nWinner: MadWuher\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) MadWuher: Homeworld G1 B2 Y3\n\n3) scottobear: Build Y1 Scottobear\n\tscottobear: wow.. look at all the spectators!\n\n4) MadWuher: Build Y1 Madwuher\n\n5) scottobear: Trade Y1 B1 Scottobear\n\n6) MadWuher: Trade Y1 G1 Madwuher\n\n7) scottobear: Build Y1 Scottobear\n\n8) MadWuher: Build Y1 Madwuher\n\n9) scottobear: Discover Y1 Scottobear B1 Hershey\n\n10) MadWuher: Discover G1 Madwuher Y3 Mars\n\n11) scottobear: Trade Y1 G1 Hershey\n\tscottobear: isn&#39;t mars a red planet?? ;)\n\n12) MadWuher: Trade Y1 R1 Madwuher\n\n13) scottobear: Build Y1 Scottobear\n\n14) MadWuher: Build G2 Mars\n\n15) scottobear: Build G2 Hershey\n\n16) MadWuher: Build Y1 Madwuher\n\n17) scottobear: Build B1 Scottobear\n\n\tMadWuher: I know Mars is red, I just saw the Hershey name and I thought of chocolate. =)  MMMmmmmm chocolate....\n\tscottobear: yummy! \n\n18) MadWuher: Discover G1 Mars Y1 Aero\n\n19) scottobear: Trade G2 Y2 Hershey\n\n20) MadWuher: Build G2 Aero\n\n21) scottobear: Trade Y3 R3 Scottobear\n\n22) MadWuher: Build G3 Mars\n\n23) scottobear: Move R3 Scottobear Aero\n\n24) MadWuher: Sacrifice G2 Aero\nBuild G2 Mars\nBuild Y2 Madwuher\n\n25) scottobear: Move G1 Hershey Mars\nCatastrophe Mars Green\n\n26) MadWuher: Trade Y2 B2 Madwuher\n\n27) scottobear: Attack G1 Aero\n\n28) MadWuher: Trade Y1 G1 Madwuher\n\n29) scottobear: Build G2 Aero\n\n30) MadWuher: Build R1 Madwuher\n\n31) scottobear: Trade Y2 G2 Hershey\n\n32) MadWuher: Build G3 Madwuher\n\n33) scottobear: Build G3 Hershey\n\n34) MadWuher: Sacrifice Y3 Madwuher\nDiscover B2 Madwuher G3 Hmmm\nMove B2 Hmmm Hershey\nMove B2 Hershey Scottobear\nCatastrophe Scottobear Blue\n\n35) scottobear: Build G3 Hershey\n\n36) MadWuher: Trade G1 Y1 Madwuher\n\n37) scottobear: Trade G3 Y3 Hershey\n\tscottobear: nicely done!\n\n38) MadWuher: Build Y2 Madwuher\n\tMadWuher: Thanks. These are my first games, so I thought I might as well go for the gusto. =) \n\n39) scottobear: Discover G3 Hershey B3 Quisp\n\tscottobear: kudos! :D\n\n40) MadWuher: Trade Y1 B1 Madwuher\n\n41) scottobear: Build Y1 Scottobear\n\n42) MadWuher: Discover B1 Madwuher G3 Crisp\n\n43) scottobear: Build G1 Quisp\n\n44) MadWuher: Build B1 Crisp\n\n45) scottobear: Move R3 Aero Crisp\n\n46) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Madwuher Crisp\nMove G3 Crisp Scottobear\n\n47) scottobear: Trade G3 R3 Quisp\n\n48) MadWuher: Sacrifice B1 Crisp\nTrade R1 B1 Madwuher\n\n49) scottobear: Trade Y3 B3 Hershey\n\n50) MadWuher: Build G3 Scottobear\n\n51) scottobear: Move Y1 Scottobear Quisp\n\n52) MadWuher: Sacrifice B1 Crisp\nTrade G3 R3 Scottobear\n\n53) scottobear: Move R3 Quisp Madwuher\n\n54) MadWuher: Attack Y1N Scottobear\n\n\nHomeworlds Online (SDG# 11116)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.6.3, Ended: 2008.6.27\nParticipants: MadWuher (S), scottobear (N)\nWinner: MadWuher\n\n1) scottobear: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld G1 B3 Y3\n\n3) scottobear: Build G1 Scottobear\n\n4) MadWuher: Build Y1 Madwuher\n\n5) scottobear: Trade G1 B1 Scottobear\n\n6) MadWuher: Trade Y1 G1 Madwuher\n\n7) scottobear: Build B1 Scottobear\n\n8) MadWuher: Build Y1 Madwuher\n\n9) scottobear: Discover B1 Scottobear G1 Eye\n\n10) MadWuher: Build G2 Madwuher\n\n11) scottobear: Build G2 Scottobear\n\n12) MadWuher: Discover G2 Madwuher Y2 Dagger\n\n13) scottobear: Build B1 Eye\n\n14) MadWuher: Build Y1 Madwuher\n\n15) scottobear: Build B2 Eye\n\n16) MadWuher: Trade Y3 B3 Madwuher\n\n17) scottobear: Trade B2 G2 Eye\n\n18) MadWuher: Build B2 Madwuher\n\n19) scottobear: Trade G2 R2 Eye\n\n20) MadWuher: Trade Y1 R1 Madwuher\n\n21) scottobear: Trade G3 Y3 Scottobear\n\n22) MadWuher: Move B3 Madwuher Dagger\n\n23) scottobear: Trade B1 Y1 Eye\n\n24) MadWuher: Build G2 Dagger\n\n25) scottobear: Move R2 Eye Dagger\n\n26) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Dagger\n\n27) scottobear: Build G3 Scottobear\n\n28) MadWuher: Trade G2 R2 Dagger\n\n29) scottobear: Trade G3 R3 Scottobear\n\n30) MadWuher: Build G2 Madwuher\n\n31) scottobear: Build G3 Scottobear\n\n32) MadWuher: Build G3 Dagger\n\n33) scottobear: Move R3 Scottobear Eye\n\n34) MadWuher: Trade G2 Y2 Madwuher\n\n35) scottobear: Build R1 Eye\n\n36) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Dagger Madwuher\nMove G1 Madwuher Dagger\n\n37) scottobear: Trade G3 R3 Scottobear\n\n38) MadWuher: Discover G1 Dagger Y1 Axe\n\n39) scottobear: Build Y2 Eye\n\n40) MadWuher: Build G2 Axe\n\n41) scottobear: Move R3 Scottobear Axe\n\n42) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Madwuher\nBuild Y3 Madwuher\nBuild G3 Dagger\n\n43) scottobear: Attack G2 Axe\n\n44) MadWuher: Sacrifice G3 Dagger\nBuild G3 Dagger\nBuild G3 Axe\nBuild G3 Axe\n\n45) scottobear: Build B1 Scottobear\nCatastrophe Axe Green\n\n46) MadWuher: Sacrifice Y2 Madwuher\nDiscover B3 Dagger R1 Boomtime\nMove B3 Boomtime Scottobear\nCatastrophe Scottobear B\n\n47) scottobear: Move R3 Axe Scottobear\n\n48) MadWuher: Discover Y1 Madwuher G2 Axe\n\n49) scottobear: Move R3 Eye Scottobear\n\n50) MadWuher: Sacrifice G2 Dagger\nBuild Y1 Axe\nBuild Y2 Madwuher\n\n51) scottobear: Move R3 Scottobear Dagger\n\n52) MadWuher: Sacrifice R2 Dagger\nAttack R3N Dagger\nPass\n\n53) scottobear: Build B1 Eye\n\n54) MadWuher: Sacrifice Y2 Madwuher\nMove Y1 Axe Scottobear\nMove Y1 Axe Scottobear\nCatastrophe Scottobear Y\n\n\nHomeworlds Online (SDG# 11115)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.5, Ended: 2008.6.12\nParticipants: TwoShort (S), patwillis (N)\nWinner: TwoShort\n\n1) patwillis: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n3) patwillis: Build Y1 Patwillis\n\tTwoShort: Woops, didn&#39;t mean to make a small universe there...\n\n4) TwoShort: Build G1 Twoshort\n\n5) patwillis: Trade Y1 G1 Patwillis\n\n6) TwoShort: Build G2 Twoshort\n\tpatwillis: Hi. Enjoy the game...\n\n7) patwillis: Build G2 Patwillis\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) patwillis: Discover G2 Patwillis B3 Blue3\n\n10) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n11) patwillis: Build G2 Blue3\n\n12) TwoShort: Build G2 Twoshort\n\n13) patwillis: Trade G1 R1 Patwillis\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) patwillis: Build Y1 Patwillis\n\n16) TwoShort: Discover G1 Yolonda Y3 Yellonia\n\n17) patwillis: Discover R1 Patwillis G3 Greenland\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) patwillis: Move Y1 Patwillis Blue3\n\n20) TwoShort: Sacrifice G3 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n21) patwillis: Move G2 Blue3 Yolonda\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yellonia\nBuild R1 Twoshort\nBuild Y1 Twoshort\n\n23) patwillis: Build Y2 Patwillis\n\n24) TwoShort: Discover G1 Yolonda Y3 Yellamatic\n\n25) patwillis: Sacrifice Y2 Patwillis\nMove R1 Greenland Yolonda\nMove R1 Yolonda Twoshort\nCatastrophe Twoshort Red\n\n26) TwoShort: Build G3 Yellamatic\n\n27) patwillis: Build Y2 Blue3\n\n28) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n29) patwillis: Trade Y1 B1 Blue3\n\n30) TwoShort: Trade Y2 R2 Twoshort\n\n31) patwillis: Build Y1 Patwillis\n\n32) TwoShort: Move G3 Yellamatic Patwillis\n\n33) patwillis: Trade Y1 R1 Patwillis\n\n34) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Patwillis\nAttack Y3 Patwillis\n\n\tTwoShort: That&#39;s it I&#39;m afraid...  Thanks for the game!\n\tpatwillis: Thanks - only my 2nd game ever - so picked up a few tips.\n\nHomeworlds Online (SDG# 11118)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.6.6, Ended: 2008.6.25\nParticipants: patwillis (S), scottobear (N)\nWinner: patwillis\n\n1) scottobear: Homeworld G3 B2 Y3 Scottobear\n\n2) patwillis: Homeworld R1 B2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) patwillis: Build G1 Patwillis\n\n5) scottobear: Discover Y1 Scottobear B1 Fria\n\n6) patwillis: Trade G1 Y1 Patwillis\n\n7) scottobear: Trade Y1 G1 Fria\n\n8) patwillis: Build Y1 Patwillis\n\n9) scottobear: Build G1 Fria\n\n10) patwillis: Discover Y1 Patwillis G3 Greenland\n\n11) scottobear: Trade G1 Y1 Fria\n\n12) patwillis: Build Y2 Greenland\n\n13) scottobear: Build Y2 Fria\n\n14) patwillis: Build G1 Patwillis\n\n\nHomeworlds Online (SDG# 11130)\nStarted: 2008.6.10, Ended: 2008.6.24\nParticipants: patwillis (S), Danner (N)\nWinner: patwillis\n\n1) Danner: Homeworld R1 B2 G3\n\n2) patwillis: Homeworld Y1 B3 G3\n\tDanner: Hi, have a good game!\n\n3) Danner: Build G1 Danner\n\n4) patwillis: Build G1 Patwillis\n\n5) Danner: Trade G1 Y1 Danner\n\n6) patwillis: Build G1 Patwillis\n\n7) Danner: Build Y1 Danner\n\n8) patwillis: Trade G1 R1 Patwillis\n\n9) Danner: Build Y2 Danner\n\n10) patwillis: Build R1 Patwillis\n\n11) Danner: Discover Y1 Danner G3 Earth\n\n12) patwillis: Trade G3 Y3 Patwillis\n\n13) Danner: Discover Y1 Earth R2 Mars\n\n14) patwillis: Move Y3 Patwillis Mars\n\n15) Danner: Sacrifice G3 Danner\nBuild Y2 Mars\nBuild Y2 Mars\nBuild Y3 Danner\nCatastrophe Mars Y\n\n16) patwillis: Build R2 Patwillis\n\n17) Danner: Trade Y2 R2 Danner\n\n18) patwillis: Discover R2 Patwillis G2 Greenland\n\n19) Danner: Sacrifice Y3 Danner\nDiscover R2 Danner R3 Temporal\nMove R2 Temporal Greenland\nMove R2 Greenland Patwillis\n\n20) patwillis: Build R2 Patwillis\nCatastrophe Patwillis Red\n\n21) Danner: Trade Y1 G1 Danner\n\n22) patwillis: Build G1 Patwillis\n\n23) Danner: Build G2 Danner\n\n24) patwillis: Trade G1 Y1 Patwillis\n\n25) Danner: Trade G1 Y1 Danner\n\n26) patwillis: Build Y2 Patwillis\n\n27) Danner: Build Y2 Danner\n\n28) patwillis: Move Y2 Patwillis Greenland\n\n29) Danner: Discover Y2 Danner R3 Mars\n\n30) patwillis: Build G1 Patwillis\n\n31) Danner: Build Y2 Danner\n\n32) patwillis: Build Y3 Greenland\n\n33) Danner: Build Y3 Danner\n\n34) patwillis: Sacrifice Y3 Greenland\nMove Y1 Patwillis Greenland\nMove Y1 Greenland Mars\nMove Y1 Mars Danner\nCatastrophe Danner Yellow\n\n35) Danner: Build G1 Danner\n\n36) patwillis: Discover G1 Patwillis Y2 Yellonia\n\n37) Danner: Trade G1 Y1 Danner\n\n38) patwillis: Build G1 Patwillis\n\n39) Danner: Discover G2 Danner Y3 Sun\n\n40) patwillis: Sacrifice Y2 Greenland\nMove R2 Greenland Mars\nMove R2 Mars Danner\n\n41) Danner: Sacrifice G2 Sun\nBuild Y1 Danner\nBuild Y2 Danner\n\n42) patwillis: Attack Y2 Danner\n\n\tDanner: I give up. Congrats!\n\tpatwillis: Thanks - set up another if you like\r\n\n\tDanner: Ok, I will :)\n\nHomeworlds Online (SDG# 11151)\nStarted: 2008.6.11, Ended: 2008.6.29\nParticipants: MatrixFrog (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) MatrixFrog: Homeworld B3 G1 Y3\n\n3) Danner: Build G1 Danner\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Danner: Trade G1 Y1 Danner\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) Danner: Build Y2 Danner\n\n8) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n9) Danner: Discover Y1 Danner G3 Earth\n\n10) MatrixFrog: Discover Y1 Matrixfrog G2 Mars\n\n11) Danner: Build Y1 Earth\n\n12) MatrixFrog: Build Y2 Matrixfrog\n\n13) Danner: Move Y1 Earth Mars\n\n14) MatrixFrog: Move Y1 Mars Earth\n\n15) Danner: Sacrifice G3 Danner\nBuild Y2 Earth\nBuild Y3 Mars\nBuild Y3 Danner\n\n16) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n17) Danner: Trade Y3 G3 Danner\n\n18) MatrixFrog: Build R1 Matrixfrog\n\n19) Danner: Trade Y2 R2 Danner\n\n20) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade Y1 R1 Earth\n\n21) Danner: Move Y1 Earth Danner\n\n22) MatrixFrog: Build R2 Earth\n\n23) Danner: Sacrifice R2 Danner\nAttack R1S Earth\nAttack R2S Earth\n\n24) MatrixFrog: Build Y1 Matrixfrog\n\n25) Danner: Move Y3 Mars Matrixfrog\n\n26) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n27) Danner: Sacrifice R2 Earth\nAttack G3S Matrixfrog\nAttack R2S Matrixfrog\n\n28) MatrixFrog: Build R2 Matrixfrog\n\n29) Danner: Sacrifice G3 Matrixfrog\nBuild R2 Matrixfrog\nBuild Y2 Matrixfrog\nBuild Y2 Matrixfrog\nCatastrophe Matrixfrog R\nCatastrophe Matrixfrog Y\n\tMatrixFrog: *sigh* this isn&#39;t looking good\n\n\tDanner: Indeed.\r\nThanks the game.\n\nHomeworlds Online (SDG# 11085)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.13, Ended: 2008.6.13\nParticipants: Koukaakiva (S), jeep (N)\nWinner: Koukaakiva\n\n\tjeep: This standing challenge is supposed to be suspended.  Sorry.  Aaron is aware that suspended challenges are still cropping up.\n\nHomeworlds Online (SDG# 11091)\nStarted: 2008.6.13, Ended: 2009.12.9\nParticipants: MikeYarrum (S), Koukaakiva (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11122)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.13, Ended: 2008.6.16\nParticipants: TwoShort (S), Koukaakiva (N)\nWinner: TwoShort\n\n\nHomeworlds Online (SDG# 11138)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.13, Ended: 2008.6.18\nParticipants: Danner (S), Koukaakiva (N)\nWinner: Danner\n\n\tDanner: oh well...\n\nHomeworlds Online (SDG# 11147)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.6.13, Ended: 2008.6.13\nParticipants: scottobear (S), Koukaakiva (N)\nWinner: Koukaakiva\n\n\nHomeworlds Online (SDG# 11159)\nStarted: 2008.6.13, Ended: 2008.11.15\nParticipants: ts52 (S), Koukaakiva (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 11166)\nStarted: 2008.6.14, Ended: 2009.7.8\nParticipants: Horowits (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Horowits: Homeworld G2 B3 Y3\n\tDanner: Welcome! Good luck!\n\tHorowits: Thanks! You too.\n\n3) Danner: Build G1 Danner\n\n4) Horowits: Build Y1 Horowits\n\n5) Danner: Trade G1 R1 Danner\n\n6) Horowits: Trade Y1 G1 Horowits\n\n7) Danner: Build R1 Danner\n\n8) Horowits: Build G1 Horowits\n\n9) Danner: Build G1 Danner\n\n10) Horowits: Trade Y3 R3 Horowits\n\n11) Danner: Trade R1 Y1 Danner\n\n12) Horowits: Trade G1 Y1 Horowits\n\n13) Danner: Discover G1 Danner Y3 Sun\n\n\nHomeworlds Online (SDG# 11161)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.17, Ended: 2008.6.18\nParticipants: TwoShort (S), MadWuher (N)\nWinner: TwoShort\n\n1) MadWuher: Homeworld Y1 B2 G3\n\tTwoShort: Howdy\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) TwoShort: Build G1 Twoshort\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) MadWuher: Build G1 Madwuher\n\n8) TwoShort: Build Y2 Twoshort\n\tMadWuher: Hi there. Looking forward to a good game. =)\n\n9) MadWuher: Discover G1 Madwuher Y3 Yuuzhan&#39;tar\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) MadWuher: Build Y2 Madwuher\n\n12) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Grogar R3 Boomtime\nMove Y1 Boomtime Madwuher\nCatastrophe Madwuher Yellow\n\n13) MadWuher: Build G1 Madwuher\n\n14) TwoShort: Build G1 Twoshort\n\tMadWuher: Yeah, I thought that might happen.\n\n15) MadWuher: Build G2 Yuuzhan&#39;tar\n\n16) TwoShort: Trade G1 Y1 Twoshort\n\n17) MadWuher: Trade G1 Y1 Madwuher\n\n18) TwoShort: Build G1 Twoshort\n\n19) MadWuher: Build G1 Madwuher\n\n20) TwoShort: Trade G1 B1 Twoshort\n\n21) MadWuher: Trade G1 B1 Madwuher\n\n22) TwoShort: Move B1 Twoshort Madwuher\n\tTwoShort: Gotcha :)  Thanks for the game.\n\n23) MadWuher: Sacrifice G3 Madwuher\nBuild B1 Madwuher\nPass\nPass\nCatastrophe Madwuher B\n\tMadWuher: Very Nice....\n\n\nHomeworlds Online (SDG# 11169)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.17, Ended: 2008.6.18\nParticipants: jeep (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n\tjeep: Sorry, these standing challenges are suspended, they weren&#39;t supposed to appear.\n\nHomeworlds Online (SDG# 11177)\nStarted: 2008.6.18, Ended: 2008.6.28\nParticipants: MadWuher (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) MadWuher: Homeworld B3 R1 G3\n\n3) Danner: Build G1 Danner\n\tDanner: Good luck!\n\n4) MadWuher: Build G1 Madwuher\n\n5) Danner: Trade G1 R1 Danner\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\tMadWuher: You too.\n\n7) Danner: Build R2 Danner\n\n8) MadWuher: Build G1 Madwuher\n\n9) Danner: Trade R2 Y2 Danner\n\n10) MadWuher: Trade G3 R3 Madwuher\n\n11) Danner: Build R2 Danner\n\n12) MadWuher: Build R2 Madwuher\n\n13) Danner: Discover R1 Danner G3 Earth\n\n14) MadWuher: Discover R2 Madwuher G2 Googleplex\n\n15) Danner: Sacrifice G3 Danner\nBuild R2 Earth\nBuild R3 Earth\nBuild R3 Danner\n\n16) MadWuher: Build G1 Madwuher\n\n17) Danner: Sacrifice R1 Earth\nPass\n\n18) MadWuher: Build G1 Madwuher\n\n19) Danner: Trade R3 G3 Danner\n\n20) MadWuher: Trade G1 Y1 Madwuher\n\n21) Danner: Sacrifice Y2 Danner\nDiscover R2 Earth Y2 Alpha\nDiscover R3 Earth Y2 Beta\n\n22) MadWuher: Build Y1 Madwuher\n\n23) Danner: Move R3 Beta Madwuher\n\n24) MadWuher: Attack R3 Madwuher\n\tMadWuher: Nice.... Don&#39;t know why I didn&#39;t see this coming....\n\n25) Danner: Move R2 Alpha Madwuher\nCatastrophe Madwuher R\n\n26) MadWuher: Move Y1 Madwuher Googleplex\n\n27) Danner: Trade R2 Y2 Danner\n\n28) MadWuher: Build Y2 Googleplex\n\n29) Danner: Build Y2 Danner\n\n30) MadWuher: Sacrifice Y2 Googleplex\nMove Y1 Madwuher Danner\nMove Y1 Madwuher Danner\nCatastrophe Danner Y\n\n31) Danner: Build G1 Danner\n\n32) MadWuher: Build G2 Madwuher\n\n33) Danner: Trade G1 Y1 Danner\n\n34) MadWuher: Trade G2 Y2 Madwuher\n\n35) Danner: Build G1 Danner\n\n36) MadWuher: Discover G1 Madwuher B2 Blutopia\n\n37) Danner: Trade G1 B1 Danner\n\n38) MadWuher: Build G1 Madwuher\n\n39) Danner: Build B1 Danner\n\n40) MadWuher: Build G2 Blutopia\n\n41) Danner: Move B1 Danner Madwuher\n\n42) MadWuher: Sacrifice G2 Blutopia\nBuild G2 Blutopia\nBuild R1 Googleplex\n\n43) Danner: Sacrifice G3 Danner\nBuild B1 Madwuher\nBuild B2 Madwuher\nPass\nCatastrophe Madwuher B\n\n\tDanner: Thx the game. How about an another one?\n\tMadWuher: Didn&#39;t see that G3 in your system.... Wow, big mistake.\n\nHomeworlds Online (SDG# 11160)\nStarted: 2008.6.18, Ended: 2008.6.23\nParticipants: MadWuher (S), MikeYarrum (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11183)\nStarted: 2008.6.21, Ended: 2008.11.8\nParticipants: Sunnan (S), MikeYarrum (N)\nWinner: Sunnan\n\n\nHomeworlds Online (SDG# 11182)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.23, Ended: 2008.6.28\nParticipants: TwoShort (S), MadWuher (N)\nWinner: TwoShort\n\n1) MadWuher: Homeworld B1 R2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) MadWuher: Build G1 Madwuher\n\tMadWuher: Hopefully, I last longer than last time. =)\n\n4) TwoShort: Build B1 Twoshort\n\tMadWuher: Great homeworld. Way to take advantage of the blue pyramids quickly.\n\n5) MadWuher: Build G1 Madwuher\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\tTwoShort: Yeah, I love this opening, but most people have learned not to take a b1 star as first player against me :)\n\n7) MadWuher: Trade G1 Y1 Madwuher\n\n8) TwoShort: Build B2 Twoshort\n\tMadWuher: Still learning. Thanks for the schooling last time. =) I know I have a long way to go.\n\n9) MadWuher: Build Y1 Madwuher\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) MadWuher: Discover Y1 Madwuher G3 Gimble\n\n12) TwoShort: Build B2 Twoshort\n\n13) MadWuher: Trade G1 R1 Madwuher\n\n14) TwoShort: Build B2 Grogar\n\n15) MadWuher: Build Y1 Gimble\n\n16) TwoShort: Build B3 Grogar\n\n17) MadWuher: Build G1 Madwuher\n\n18) TwoShort: Discover B2 Twoshort Y2 Yellonia\n\n19) MadWuher: Discover G1 Madwuher B3 Bluto\n\n20) TwoShort: Build B3 Twoshort\n\n21) MadWuher: Build G1 Madwuher\n\n22) TwoShort: Sacrifice B2 Twoshort\nTrade B2 R2 Grogar\nTrade B3 Y3 Grogar\n\n23) MadWuher: Build Y2 Madwuher\n\n24) TwoShort: Build B2 Grogar\n\n25) MadWuher: Trade Y2 B2 Madwuher\n\n26) TwoShort: Build B3 Grogar\n\n27) MadWuher: Build G1 Bluto\n\n28) TwoShort: Move B3 Grogar Gimble\n\n29) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Bluto\nBuild G3 Madwuher\n\n30) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Grogar Gimble\nMove B3 Gimble Madwuher\nMove Y3 Gimble Madwuher\n\n31) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y2 Madwuher\nCatastrophe Madwuher Y\n\tMadWuher: Nice move.\n\n32) TwoShort: Sacrifice R2 Grogar\nAttack G3N Madwuher\nAttack B2N Madwuher\n\n33) MadWuher: Attack B2S Madwuher\n\n34) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Madwuher\nTrade G3 Y3 Madwuher\n\n35) MadWuher: Sacrifice G2 Bluto\nBuild G2 Bluto\nBuild R1 Madwuher\nCatastrophe Madwuher R\n\n36) TwoShort: Sacrifice Y3 Madwuher\nMove B1 Grogar Madwuher\nMove B2 Yellonia Madwuher\nPass\nCatastrophe Madwuher Blue\n\tMadWuher: Wow, after doing the Red Catastrophe, totally missed the blue catastrophe coming my way.  Nice Game.\n\tMadWuher: Was there any option for me to get out of that mess??\n\tTwoShort: Depends which mess you mean :)  Once I moved the 3s into your homeworld it was definitely over.  Before that, you were hurting pretty bad because my blue monopoly was getting me 3s that you weren&#39;t getting.  To get out of that you should have either broken the monopoly immediately by trading your 3 to blue on turn 2 or so, or agressively pushed for your own monopoly in another color, probably yellow.  Or, optimally, don&#39;t take a b1 star as first player :)\r\n  In any case, thanks for the game!\n\n\nHomeworlds Online (SDG# 11210)\nStarted: 2008.6.25, Ended: 2008.8.6\nParticipants: Danner (S), iwilson (N)\nWinner: Danner\n\n1) iwilson: Homeworld Y3 B2 G3\n\n2) Danner: Homeworld R1 B2 G3\n\tiwilson: \n\tDanner: homeworld R1 B2 G3\n\tDanner: Oh, sorry, I&#39;m tired :D\r\nAnyway, welcome and good luck!\n\n3) iwilson: Build G1 Iwilson\n\n4) Danner: Build G1 Danner\n\tiwilson: \n\n5) iwilson: Trade G1 R1 Iwilson\n\n6) Danner: Trade G1 R1 Danner\n\n7) iwilson: Build G1 Iwilson\n\n8) Danner: Build R2 Danner\n\n9) iwilson: Build R2 Iwilson\n\n10) Danner: Trade R1 Y1 Danner\n\n11) iwilson: Trade R2 Y2 Iwilson\n\n12) Danner: Build Y1 Danner\n\n13) iwilson: Build G1 Iwilson\n\n14) Danner: Build G1 Danner\n\n15) iwilson: Build G2 Iwilson\n\n16) Danner: Build G2 Danner\nCatastrophe Iwilson G\n\n17) iwilson: Trade Y2 G2 Iwilson\n\n18) Danner: Discover Y1 Danner G3 Earth\n\n19) iwilson: Build R1 Iwilson\n\n20) Danner: Build R2 Danner\n\n21) iwilson: Build R2 Iwilson\n\n\n22) Danner: Trade R2 Y2 Danner\n\n\tDanner: Thx the game\n\nHomeworlds Online (SDG# 11212)\nStarted: 2008.6.25, Ended: 2008.7.18\nParticipants: Danner (S), patwillis (N)\nWinner: Danner\n\n1) patwillis: Homeworld G1 B2 Y3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) patwillis: Build Y1 Patwillis\n\n4) Danner: Build G1 Danner\n\n5) patwillis: Trade Y1 G1 Patwillis\n\n6) Danner: Trade G1 R1 Danner\n\n7) patwillis: Build Y1 Patwillis\n\n8) Danner: Build R1 Danner\n\n9) patwillis: Trade Y3 R3 Patwillis\n\n10) Danner: Trade R1 Y1 Danner\n\n11) patwillis: Build G1 Patwillis\n\n12) Danner: Build G2 Danner\n\n13) patwillis: Discover G1 Patwillis Y3 Yelland\n\n14) Danner: Move G2 Danner Yelland\n\n15) patwillis: Discover G1 Patwillis Y3 Venus\n\n16) Danner: Build G2 Danner\n\n17) patwillis: Build G2 Yelland\n\n18) Danner: Sacrifice G2 Danner\nBuild G2 Yelland\nBuild G3 Danner\nCatastrophe Yelland G\n\n19) patwillis: Build G1 Venus\n\n20) Danner: Discover G3 Danner Y3 Sun\n\n21) patwillis: Build G2 Venus\n\n22) Danner: Build G2 Danner\n\n23) patwillis: Sacrifice G2 Venus\nBuild Y1 Patwillis\nBuild Y2 Patwillis\n\n24) Danner: Sacrifice G2 Danner\nBuild G2 Sun\nBuild Y2 Danner\n\n25) patwillis: Discover Y1 Patwillis G3 Greenland\n\n26) Danner: Discover Y1 Danner B3 Cube\n\n27) patwillis: Build R1 Patwillis\n\n28) Danner: Sacrifice G2 Sun\nBuild Y2 Danner\nBuild Y3 Cube\n\n29) patwillis: Build G2 Venus\n\n30) Danner: Move R1 Danner Sun\n\n31) patwillis: Move R1 Patwillis Greenland\n\n32) Danner: Build R2 Sun\n\n33) patwillis: Build R2 Greenland\n\n34) Danner: Discover R1 Sun G2 Trickster\n\n35) patwillis: Move G2 Venus Danner\n\n36) Danner: Attack G2N Danner\n\tDanner: uhh, I was not watchful\n\n37) patwillis: Sacrifice Y2 Patwillis\nMove G1 Venus Danner\nMove G1 Venus Danner\nCatastrophe Danner Green\n\n38) Danner: Move Y3 Cube Trickster\n\n39) patwillis: Build Y2 Patwillis\n\n40) Danner: Sacrifice Y1 Cube\nMove G3 Sun Danner\n\n41) patwillis: Discover R1 Greenland G2 Fred\n\n42) Danner: Trade Y2 G2 Danner\n\n43) patwillis: Build R2 Fred\n\n44) Danner: Sacrifice G2 Danner\nBuild R3 Sun\nBuild R3 Trickster\n\n45) patwillis: Trade R3 G3 Patwillis\n\n46) Danner: Move R3 Trickster Greenland\n\n47) patwillis: Build R3 Greenland\n\n48) Danner: Attack R3N Greenland\n\n49) patwillis: Sacrifice Y1 Greenland\nMove R1 Fred Greenland\nCatastrophe Greenland Red\n\n50) Danner: Move R3 Sun Fred\n\n51) patwillis: Sacrifice Y1 Patwillis\nDiscover R2 Fred Y3 Yellonia\n\n52) Danner: Build R1 Trickster\n\n53) patwillis: Build G1 Patwillis\n\n54) Danner: Sacrifice Y3 Trickster\nMove R3 Fred Yellonia\nMove G3 Danner Yellonia\nMove G3 Yellonia Patwillis\nCatastrophe Patwillis G\n\n\tDanner: Thx the game.\n\nHomeworlds Online (SDG# 11194)\nStarted: 2008.6.25, Ended: 2008.6.26\nParticipants: whippingboy (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11204)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.25, Ended: 2008.6.26\nParticipants: whippingboy (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 11202)\nStarted: 2008.6.26, Ended: 2009.12.9\nParticipants: jdcc789 (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n\tDanner: Hi, good luck!\n\nHomeworlds Online (SDG# 11214)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.26, Ended: 2008.8.7\nParticipants: Jesse (S), MadWuher (N)\nWinner: Jesse\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld Y3 B1 G3\n\tJesse: Hello, and have a good game.\n\n3) MadWuher: Build G1 Madwuher\n\tMadWuher: Good luck to you too.\r\nPlay this much? This (I think) is my 6th game. Still learning the ropes.\n\n4) Jesse: Build G1 Jesse\n\n5) MadWuher: Trade G1 B1 Madwuher\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) MadWuher: Build B2 Madwuher\n\tJesse: I have played quite a lot.  If you have any questions, I&#39;m happy to help.\n\n8) Jesse: Build B2 Jesse\n\tMadWuher: Feel free to point out my mistakes, so I can learn from them.\n\n9) MadWuher: Trade B2 Y2 Madwuher\n\n10) Jesse: Trade B1 R1 Jesse\n\n11) MadWuher: Trade B1 R1 Madwuher\n\n12) Jesse: Build R2 Jesse\n\tJesse: It&#39;s good to get a red as soon as possible after your opponent does, but you could have afforded a turn or two delay, since I can&#39;t reach you, and you have red in your system markers for defense.  What you&#39;ve done isn&#39;t necessarily bad, but now it will cost you an extra turn to get back into the blue economy.\n\n13) MadWuher: Build R2 Madwuher\n\n14) Jesse: Discover R2 Jesse G2 Papawaio\n\n15) MadWuher: Discover R2 Madwuher G3 Edora\n\n16) Jesse: Move B2 Jesse Papawaio\n\n17) MadWuher: Trade R1 B1 Madwuher\n\n18) Jesse: Build R1 Papawaio\n\n\n19) MadWuher: Move B1 Madwuher Edora\n\n20) Jesse: Trade R1 Y1 Papawaio\n\n21) MadWuher: Build Y1 Madwuher\n\n22) Jesse: Build Y1 Papawaio\n\n23) MadWuher: Build Y2 Madwuher\n\n24) Jesse: Discover Y1 Papawaio G1 Ulkesh\n\n25) MadWuher: Move Y2 Madwuher Edora\n\n26) Jesse: Build Y2 Ulkesh\n\n27) MadWuher: Build Y3 Edora\n\n28) Jesse: Build Y3 Papawaio\n\n29) MadWuher: Build G1 Madwuher\n\n30) Jesse: Build G1 Jesse\n\n31) MadWuher: Discover G1 Madwuher B3 Blarney\n\n32) Jesse: Discover G1 Jesse B2 Twiki\n\n33) MadWuher: Build G2 Madwuher\n\n34) Jesse: Build G2 Jesse\n\n35) MadWuher: Discover Y2 Edora R2 Amber\n\n36) Jesse: Sacrifice G3 Jesse\nBuild B1 Papawaio\nBuild B3 Papawaio\nBuild G3 Jesse\n\n37) MadWuher: Move B1 Edora Papawaio\nCatastrophe Papawaio Blue\n\n38) Jesse: Sacrifice G3 Jesse\nBuild R1 Papawaio\nBuild R3 Jesse\nBuild G3 Jesse\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Edora\nPass\n\n40) Jesse: Sacrifice Y2 Ulkesh\nMove R1 Papawaio Edora\nMove R2 Papawaio Edora\nCatastrophe Edora R\n\n41) MadWuher: Build Y2 Edora\n\n42) Jesse: Move R3 Jesse Papawaio\n\n43) MadWuher: Trade Y1 R1 Madwuher\n\n44) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R2 Papawaio\nBuild Y1 Ulkesh\n\n45) MadWuher: Move R1 Madwuher Blarney\n\n46) Jesse: Move R2 Papawaio Blarney\n\n47) MadWuher: Sacrifice Y2 Edora\nMove G1 Blarney Amber\nMove R1 Blarney Twiki\n\n48) Jesse: Sacrifice R2 Blarney\nAttack R1 Twiki\nPass\n\n49) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Amber\nBuild Y2 Edora\n\n50) Jesse: Discover G2 Jesse B2 Gurgi\n\n51) MadWuher: Move Y3 Edora Madwuher\n\n52) Jesse: Move Y1 Ulkesh Twiki\n\n53) MadWuher: Trade Y2 R2 Madwuher\n\n54) Jesse: Build Y2 Twiki\n\n55) MadWuher: Move R2 Madwuher Edora\n\n56) Jesse: Move R3 Papawaio Edora\n\n57) MadWuher: Sacrifice G2 Amber\nBuild R2 Edora\nBuild G2 Madwuher\n\n58) Jesse: Sacrifice G3 Jesse\nBuild G3 Twiki\nBuild R3 Jesse\nBuild R3 Edora\nCatastrophe Edora R\n\n59) MadWuher: Trade G2 R2 Madwuher\n\n60) Jesse: Build G2 Gurgi\n\n61) MadWuher: Move R2 Madwuher Edora\n\n62) Jesse: Move R1 Jesse Papawaio\n\n\n63) MadWuher: Sacrifice G3 Madwuher\nBuild R2 Edora\nBuild G3 Amber\nPass\n\n64) Jesse: Sacrifice G3 Twiki\nBuild G3 Twiki\nBuild R3 Twiki\nBuild R3 Papawaio\n\n65) MadWuher: Pass\n\n66) Jesse: Sacrifice Y3 Papawaio\nDiscover G3 Twiki Y3 Orochi\nMove R1 Twiki Edora\nMove R1 Papawaio Edora\nCatastrophe Edora R\n\tMadWuher: I think I gave up many turns ago..... Now I&#39;m just playing to see how diabolically ruthless you can be in the end.\n\n67) MadWuher: Move Y2 Edora Madwuher\n\tJesse: You&#39;ve certainly been in a tight spot, and it only gets tighter as I squeeze to extend my advantage.  I can&#39;t point to any particular mistake you&#39;ve made along the way.  It&#39;s just been a gradual slide.\n\n68) Jesse: Sacrifice G3 Orochi\nBuild G3 Twiki\nBuild Y3 Papawaio\nBuild R1 Twiki\n\tMadWuher: I love the way you denied me a Y3 by moving your green into position. Very nice move. Where did you learn that one from? (Or, are there any archived battles where might I find other examples of you pulling this move or similar)\n\n69) MadWuher: Trade Y3 G3 Madwuher\n\tJesse: This is something called the Super Factory.  I think Andy Looney was the first to discover it.  The other half of the maneuver goes like this...\n\n70) Jesse: Sacrifice G3 Twiki\nBuild G3 Twiki\nBuild Y3 Ulkesh\nBuild R1 Papawaio\n\tJesse: As for archived games, you might look at the games histories of the top rated players here, and look at some of the games between them.\n\tMadWuher: How do you find a list of the top rated players?\n\n71) MadWuher: Sacrifice G3 Amber\nBuild G3 Madwuher\nPass\nPass\n\n72) Jesse: Sacrifice Y3 Papawaio\nDiscover G3 Twiki Y3 Vash\nDiscover R3 Papawaio B3 Spike\nDiscover R3 Twiki B3 Tetsuo\n\tJesse: Click the &quot;Players&quot; link at the top of the page.  Select Homeworlds in the list of games, and click &quot;View Game Ratings&quot;.  Click the Homeworlds tab at the top of the player list to sort by Homeworlds rating.  Viola!\n\tMadWuher: Thanks.... I kept looking under leaderboard and games tabs. Thought the players tab would just list the names of all the registered users. D&#39;oh!!!\n\n73) MadWuher: Pass\n\n74) Jesse: Sacrifice Y2 Twiki\nMove G3 Vash Madwuher\nMove R3 Spike Madwuher\n\n75) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y3 Madwuher\n\n76) Jesse: Sacrifice R3 Tetsuo\nAttack Y3 Madwuher\nAttack G3 Madwuher\nAttack G3 Madwuher\n\tJesse: Party at your place!\n\n77) MadWuher: Sacrifice Y2 Amber\nDiscover G1 Amber B3 Noboomyet\nMove G1 Noboomyet Madwuher\n\n78) Jesse: Trade G3 B3 Madwuher\n\tMadWuher: OK... Is it possible for us to get 4 of each colour in to the homeworld and do a catastrophe with all four colours at once???? \n\n79) MadWuher: Build G3 Madwuher\n\tMadWuher: Let&#39;s see how the system handles it. =)\n\tJesse: I suspect it handles it just as through four catastrophes happen in sequence.  We can try it, though.\n\n80) Jesse: Attack G3 Madwuher\n\n81) MadWuher: Build Y2 Madwuher\n\n82) Jesse: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild B1 Madwuher\nBuild B1 Madwuher\n\tJesse: Just as a matter of principle, I can&#39;t let you keep the large.  ;)  Now if you build the y2, I can build a couple of blues and blow it all away.\n\n83) MadWuher: Pass\n\n84) Jesse: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Madwuher\nBuild R2 Madwuher\nCatastrophe Madwuher R\nCatastrophe Madwuher B\nCatastrophe Madwuher Y\nCatastrophe Madwuher G\n\tJesse: Oh, right.  The reds...\n\n\tJesse: Interesting.  I thought possibly it would choke after the second marker was eliminated, complaining that the system no longer existed.  But apparently not.\n\tMadWuher: Yes. I thought it might act strangely, but I guess not.\n\nHomeworlds Online (SDG# 11232)\nStarted: 2008.6.28, Ended: 2009.12.9\nParticipants: syluxtrace (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n\tDanner: Hi, good luck!\n\nHomeworlds Online (SDG# 11236)\nVariants: &quot;Hard time&quot;\nStarted: 2008.6.28, Ended: 2008.7.1\nParticipants: syluxtrace (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n\tMadWuher: Hi there syluxtrace. Welcome to the game.\r\n\n\nHomeworlds Online (SDG# 11242)\nStarted: 2008.6.28, Ended: 2008.7.18\nParticipants: Danner (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Danner: Build G1 Danner\n\tMadWuher: And so, we meet again......\n\n5) MadWuher: Trade G1 R1 Madwuher\n\tDanner: And not for the last time :)\n\n6) Danner: Trade G3 R3 Danner\n\n7) MadWuher: Build R2 Madwuher\n\n8) Danner: Build R2 Danner\n\n9) MadWuher: Trade R2 Y2 Madwuher\n\n10) Danner: Trade R2 Y2 Danner\n\n11) MadWuher: Build R2 Madwuher\n\n12) Danner: Build R2 Danner\n\n13) MadWuher: Discover R2 Madwuher B2 Abydos\n\n14) Danner: Discover R2 Danner Y3 Dakara\n\tMadWuher: A planet once under the rule of Ra. The first planet modern Tau&#39;ri travelled to via Stargate, it was liberated by Jack O&#39;Neill&#39;s company and is the home of Skaara and Sha&#39;re (AKA Sha&#39;uri from the original movie). From Stargate and &quot;Children of the Gods&quot;. Destroyed by Anubis using the Eye of Ra at the end of Season 6.\n\n15) MadWuher: Build Y1 Madwuher\n\tDanner: Home of the ancient super-weapon, that destroyed all replicators in the Milky way :( (it is my favourite &quot;race&quot;)\n\tDanner: Here it&#39;s 0:05 AM, I go to bed :) bye\n\n16) Danner: Build Y1 Danner\n\tMadWuher: Ciao for now....\n\n17) MadWuher: Discover R1 Madwuher G2 Chulak\n\n18) Danner: Sacrifice G1 Danner\nBuild R2 Dakara\n\tMadWuher: A homeworld of the Jaffa and the name of the only city on the planet. Was a source of soldiers and slaves to Apophis until Teal&#39;c rebelled. After the defeat of the Goa&#39;uld, Chulak became a major stronghold for the Free Jaffa Nation. But after their victory at the Battle of P3Y-229, the Ori forces moved on to Chulak, where they took control after a ferocious battle\n\tDanner: That battle is in the tenth season, isn&#39;t it?\n\n19) MadWuher: Sacrifice G3 Madwuher\nBuild R3 Chulak\nBuild R3 Abydos\nBuild Y1 Madwuher\n\tDanner: You play very well!\n\n20) Danner: Sacrifice Y2 Danner\nMove R2 Dakara Abydos\nMove R2 Dakara Abydos\nCatastrophe Abydos R\n\tMadWuher: Carp..... sorry for the spoiler. I&#39;m pulling the information off a wiki.\n\n21) MadWuher: Sacrifice Y1 Madwuher\nMove R3 Chulak Madwuher\n\tDanner: No problem.\n\n22) Danner: Trade R3 G3 Danner\n\n23) MadWuher: Build R2 Chulak\n\n24) Danner: Build Y1 Danner\n\n25) MadWuher: Trade Y1 G1 Madwuher\n\n26) Danner: Discover Y1 Danner G3 Tollana\n\n27) MadWuher: Build R2 Madwuher\n\n28) Danner: Build G1 Danner\n\tDanner: The new homeworld for the Tollan people. The planet was originally settled by ships, and had no Stargate. The Nox helped the Tollan to construct a new gate for their new home.\r\nThe species&#39; original homeworld, Tollan, was destroyed after the inhabitants of the neighboring world of Serita destroyed themselves with advanced technology given them by the Tollan.\n\n29) MadWuher: Discover R2 Madwuher G2 Tartarus\n\n30) Danner: Build Y1 Danner\n\n31) MadWuher: Build Y2 Madwuher\n\tMadWuher: Tartarus - Homeworld of the Kull Warriors.\n\n32) Danner: Build Y2 Tollana\n\n33) MadWuher: Move Y2 Madwuher Tartarus\n\n34) Danner: Sacrifice G3 Danner\nBuild Y3 Tollana\nBuild Y3 Danner\nBuild G1 Danner\n\n35) MadWuher: Build Y3 Tartarus\n\n36) Danner: Discover Y3 Tollana B2 Earth\n\n37) MadWuher: Build G2 Madwuher\n\n38) Danner: Build G3 Danner\n\tDanner: Earth - Homeworld of the Tau&#39;ri\n\n39) MadWuher: Trade G2 B2 Madwuher\n\n40) Danner: Discover Y3 Danner G3 Abydos\n\n41) MadWuher: Sacrifice Y2 Madwuher\nMove R2 Chulak Tollana\nMove B2 Madwuher Chulak\n\n42) Danner: Discover Y2 Tollana B1 Dakara\n\tDanner: Abydos - see below :)\n\n43) MadWuher: Build R2 Chulak\n\n44) Danner: Move G1 Danner Abydos\n\n45) MadWuher: Attack Y1 Tollana\n\n46) Danner: Trade Y3 R3 Earth\n\n47) MadWuher: Build R3 Tollana\n\n48) Danner: Build G2 Danner\n\n49) MadWuher: Sacrifice Y3 Tartarus\nMove G1 Madwuher Chulak\nMove G1 Chulak Abydos\nMove G1 Abydos Danner\nCatastrophe Danner G\n\n50) Danner: Sacrifice Y1 Danner\nMove Y3 Abydos Danner\n\n51) MadWuher: Sacrifice B2 Chulak\nTrade R3 Y3 Tollana\nTrade R3 G3 Madwuher\n\n52) Danner: Sacrifice G1 Abydos\nBuild R3 Earth\n\n53) MadWuher: Sacrifice Y2 Tartarus\nMove Y3 Tollana Danner\nMove Y1 Tollana Danner\nCatastrophe Danner Y\n\n\tMadWuher: Booooooom. Wish it had come from dakara though.\n\tDanner: :D\r\nCongrats!\n\nHomeworlds Online (SDG# 11224)\nStarted: 2008.6.29, Ended: 2008.10.3\nParticipants: MadWuher (S), MikeYarrum (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11247)\nStarted: 2008.6.29, Ended: 2008.7.25\nParticipants: Danner (S), MatrixFrog (N)\nWinner: Danner\n\n1) MatrixFrog: Homeworld B1 Y2 G3\n\n2) Danner: Homeworld R1 B2 G3\n\tDanner: homeworld R1 B2 G3\n\n3) MatrixFrog: Build G1 Matrixfrog\n\tDanner: oops, I made this mistake for the second time...\n\n4) Danner: Build G1 Danner\n\n5) MatrixFrog: Trade G1 R1 Matrixfrog\n\n6) Danner: Trade G1 R1 Danner\n\n7) MatrixFrog: Build R2 Matrixfrog\n\n8) Danner: Build R2 Danner\n\n9) MatrixFrog: Build G1 Matrixfrog\n\n10) Danner: Trade R1 Y1 Danner\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) Danner: Build G1 Danner\n\n13) MatrixFrog: Trade G1 B1 Matrixfrog\n\n14) Danner: Trade G1 B1 Danner\n\n15) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n16) Danner: Build B2 Danner\n\n17) MatrixFrog: Build G1 Matrixfrog\n\n18) Danner: Trade B2 Y2 Danner\n\n19) MatrixFrog: Discover G1 Matrixfrog Y3 Sploosh\n\n20) Danner: Build B2 Danner\n\n21) MatrixFrog: Build G1 Matrixfrog\n\n22) Danner: Discover Y1 Danner G3 Earth\n\n23) MatrixFrog: Build G1 Sploosh\n\n24) Danner: Sacrifice G3 Danner\nBuild Y1 Danner\nBuild Y2 Earth\nBuild Y3 Danner\n\n25) MatrixFrog: Build Y3 Matrixfrog\n\n26) Danner: Move Y1 Earth Matrixfrog\nCatastrophe Matrixfrog Y\n\n27) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n28) Danner: Move B1 Danner Earth\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) Danner: Build B2 Earth\n\n31) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade G1 R1 Sploosh\n\n32) Danner: Build B1 Earth\n\n33) MatrixFrog: Move R1 Sploosh Danner\n\n34) Danner: Sacrifice Y3 Danner\nMove B1 Earth Matrixfrog\nMove B1 Earth Matrixfrog\nMove B2 Earth Matrixfrog\nCatastrophe Matrixfrog B\n\n\tDanner: Thx the game.\n\nHomeworlds Online (SDG# 11264)\nVariants: &quot;Hard time&quot;\nStarted: 2008.7.1, Ended: 2008.7.14\nParticipants: zingor (S), cordgrote (N)\nWinner: zingor\n\n1) cordgrote: Homeworld B3 R1 G3\n\n2) zingor: Homeworld Y1 B2 G3\n\n3) cordgrote: Build G1 Cordgrote\n\n4) zingor: Build G1 Zingor\n\n5) cordgrote: Trade G1 Y1 Cordgrote\n\n6) zingor: Build G1 Zingor\n\n7) cordgrote: Build Y1 Cordgrote\n\n8) zingor: Trade G1 R1 Zingor\n\n9) cordgrote: Build Y2 Cordgrote\n\n10) zingor: Build R1 Zingor\n\n11) cordgrote: Discover Y1 Cordgrote G2 Genevive\n\n12) zingor: Build G1 Zingor\n\n13) cordgrote: Trade Y1 G1 Cordgrote\n\tcordgrote: I&#39;m out for tonight, see you tomorrow.\n\n14) zingor: Trade G1 Y1 Zingor\n\tzingor: Ok, thanks. I made that bad choice a couple moves ago and I&#39;m still... sleep will help.\n\n15) cordgrote: Build Y2 Genevive\n\n16) zingor: Build Y2 Zingor\n\n17) cordgrote: Discover Y1 Genevive Y3 Yarrow\n\n18) zingor: Discover Y1 Zingor G3 Guava\n\n19) cordgrote: Build Y3 Genevive\n\n20) zingor: Build Y3 Guava\n\n21) cordgrote: Build G1 Cordgrote\n\n22) zingor: Move Y1 Guava Genevive\n\n23) cordgrote: Trade Y2 R2 Cordgrote\n\n24) zingor: Build Y2 Guava\n\n25) cordgrote: Trade G1 B1 Cordgrote\n\n26) zingor: Trade G1 B1 Zingor\n\n27) cordgrote: Move Y2 Genevive Cordgrote\n\n28) zingor: Build G1 Zingor\n\n\nHomeworlds Online (SDG# 11246)\nStarted: 2008.7.1, Ended: 2008.7.15\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n1) MatrixFrog: Homeworld R2 G1 B3\n\n2) MadWuher: Homeworld G1 B3 G3 *\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) MadWuher: Build G1 Madwuher\n\tMadWuher: Hello. Sorry about the &quot;Undo&quot;. Just thought I&#39;d try this start out. Looking forward to seeing how it all pans out.\n\n5) MatrixFrog: Build B1 Matrixfrog\n\n6) MadWuher: Trade G3 Y3 Madwuher\n\n7) MatrixFrog: Trade B3 Y3 Matrixfrog\n\n8) MadWuher: Build G2 Madwuher\n\n9) MatrixFrog: Build Y1 Matrixfrog\n\n10) MadWuher: Discover G2 Madwuher B2 Ambleside\n\n11) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n12) MadWuher: Build G2 Madwuher\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) MadWuher: Trade G2 Y2 Madwuher\n\n15) MatrixFrog: Build Y1 Matrixfrog\n\n16) MadWuher: Build G2 Ambleside\n\n17) MatrixFrog: Discover Y1 Matrixfrog G3 Ping\n\n18) MadWuher: Build G2 Madwuher\n\n19) MatrixFrog: Build Y2 Ping\n\n20) MadWuher: Build G3 Ambleside\n\n21) MatrixFrog: Move Y2 Ping Ambleside\n\n22) MadWuher: Trade G2 R2 Ambleside\n\n23) MatrixFrog: Build Y2 Ping\n\n24) MadWuher: Attack Y2 Ambleside\n\n25) MatrixFrog: Discover Y1 Ping G2 Pong\n\n26) MadWuher: Build Y3 Ambleside\n\n27) MatrixFrog: Build Y3 Pong\n\n28) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Ambleside\nBuild R1 Ambleside\n\n29) MatrixFrog: Trade B1 R1 Matrixfrog\n\n30) MadWuher: Sacrifice Y2 Madwuher\nDiscover G2 Ambleside B3 Sunnybrook\nMove Y2 Ambleside Sunnybrook\n\n31) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade Y2 R2 Ping\n\n32) MadWuher: Move R1 Ambleside Sunnybrook\n\n33) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild R1 Ping\nBuild R3 Ping\nBuild Y2 Pong\n\n34) MadWuher: Sacrifice G3 Ambleside\nBuild G3 Ambleside\nBuild R3 Sunnybrook\nBuild R3 Ambleside\n\n35) MatrixFrog: Discover Y3 Pong B3 Pang\n\n36) MadWuher: Sacrifice Y3 Ambleside\nMove R2 Ambleside Sunnybrook\nMove R2 Sunnybrook Matrixfrog\nMove R1 Sunnybrook Matrixfrog\nCatastrophe Matrixfrog Red\n\n37) MatrixFrog: Sacrifice Y3 Pang\nMove Y1 Pong Madwuher\nMove Y2 Pong Madwuher\nMove R3 Ping Matrixfrog\n\n38) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Ambleside Matrixfrog\nMove G2 Ambleside Matrixfrog\nMove G2 Sunnybrook Matrixfrog\nCatastrophe Matrixfrog G\n\n\tMadWuher: Good game, want to play another?\n\tMatrixFrog: Sure, if you want.\n\nHomeworlds Online (SDG# 11240)\nStarted: 2008.7.3, Ended: 2009.12.9\nParticipants: Danner (S), kreiger (N)\nWinner: Danner\n\n1) kreiger: Homeworld B3 Y2 G3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) kreiger: Build G1 Kreiger\n\n4) Danner: Build G1 Danner\n\n5) kreiger: Discover G1 Kreiger Y1 Mycon\n\n6) Danner: Trade G1 Y1 Danner\n\n\nHomeworlds Online (SDG# 11225)\nVariants: &quot;Hard time&quot;\nStarted: 2008.7.3, Ended: 2008.7.7\nParticipants: kreiger (S), TwoShort (N)\nWinner: kreiger\n\n\tTwoShort: Hey - I wasn&#39;t actually able to get to the site at all before Hard Time triggered... Looks like it&#39;s back up now, so I&#39;ll be happy to play if you start another one.\n\nHomeworlds Online (SDG# 11241)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.7.8, Ended: 2008.8.13\nParticipants: MadWuher (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B3 G3\n\n2) MadWuher: Homeworld R2 B1 G3\n\tMadWuher: Howdy....\n\n3) mneme: Build G1 Mneme\n\tmneme: Heya.  Mirror start?\n\n4) MadWuher: Build G1 Madwuher\n\tMadWuher: Looks like it.....\n\n5) mneme: Trade G1 Y1 Mneme\n\tMadWuher: So far that is .....\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) mneme: Build G1 Mneme\n\n8) MadWuher: Build G1 Madwuher\n\n9) mneme: Trade G1 B1 Mneme\n\n10) MadWuher: Trade G1 B1 Madwuher\n\n11) mneme: Build B2 Mneme\n\n12) MadWuher: Build B2 Madwuher\n\n13) mneme: Discover B2 Mneme Y2 Ector\n\n14) MadWuher: Discover B1 Madwuher G3 Edora\n\tmneme: there&#39;s a problem with the &quot;strategy&quot; of repeating every move your opponent makes.\n\n15) mneme: Sacrifice G3 Mneme\nBuild B2 Ector\nBuild B3 Mneme\nBuild Y1 Mneme\n\n16) MadWuher: Build B3 Edora\n\n17) mneme: Trade B2 G2 Ector\n\tmneme: *sigh*  that was dumb of me.  Ah well.\n\n18) MadWuher: Build Y2 Madwuher\n\n19) mneme: Trade B3 G3 Mneme\n\n20) MadWuher: Move Y1 Madwuher Edora\n\n21) mneme: Discover Y1 Mneme B2 Friendly\n\n22) MadWuher: Build B3 Madwuher\n\n23) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Friendly\n\n24) MadWuher: Sacrifice B2 Madwuher\nTrade B1 R1 Edora\nTrade B3 Y3 Madwuher\n\n25) mneme: Trade Y1 R1 Mneme\n\n26) MadWuher: Build R2 Edora\n\n27) mneme: Discover B1 Mneme B2 Bomber\n\n28) MadWuher: Move R2 Edora Bomber\n\n29) mneme: Sacrifice G2 Ector\nBuild B1 Bomber\nBuild B3 Ector\n\n30) MadWuher: Attack B1 Bomber\n\n31) mneme: Trade Y1 G1 Friendly\n\n32) MadWuher: Attack B1 Bomber\n\n33) mneme: Sacrifice Y2 Mneme\nMove B2 Ector Edora\nMove B2 Edora Bomber\nCatastrophe Bomber B\n\n34) MadWuher: Build R2 Edora\n\n35) mneme: Move R1 Mneme Friendly\n\n36) MadWuher: Discover R2 Edora Y2 Bologna\n\n37) mneme: Build G1 Friendly\n\n38) MadWuher: Build G1 Madwuher\n\n39) mneme: Move G1 Friendly Mneme\n\n40) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Madwuher Edora\nMove G1 Edora Bologna\n\n41) mneme: Build G2 Friendly\n\n42) MadWuher: Build G2 Madwuher\n\n43) mneme: Discover G2 Friendly G3 Hector\n\n44) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G3 Madwuher\nBuild R2 Edora\n\n45) mneme: Sacrifice G2 Hector\nBuild G2 Mneme\nBuild G3 Friendly\n\n46) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Bologna\nBuild R3 Bologna\n\n47) mneme: Sacrifice G3 Friendly\nBuild G3 Friendly\nBuild R3 Friendly\nBuild B1 Ector\n\n48) MadWuher: Trade G2 Y2 Madwuher\n\n49) mneme: Sacrifice Y3 Friendly\nMove R1 Friendly Edora\nMove R1 Edora Bologna\nMove G2 Mneme Ector\nCatastrophe Bologna R\n\n50) MadWuher: Build G2 Madwuher\n\n51) mneme: Trade G3 Y3 Friendly\n\n52) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Bologna\nBuild B1 Edora\n\n53) mneme: Move G1 Mneme Bologna\nCatastrophe Bologna G\n\n54) MadWuher: Discover B1 Edora G2 Bologna\n\n55) mneme: Build G1 Friendly\n\n56) MadWuher: Build B2 Bologna\n\n57) mneme: Sacrifice Y3 Friendly\nMove G1 Friendly Edora\nMove G1 Friendly Edora\nMove G2 Ector Edora\nCatastrophe Edora G\n\n58) MadWuher: Build B2 Bologna\n\n59) mneme: Trade B3 G3 Ector\n\n60) MadWuher: Sacrifice B1 Bologna\nTrade B2 Y2 Bologna\n\n61) mneme: Build B1 Ector\n\n62) MadWuher: Sacrifice G2 Madwuher\nBuild B2 Bologna\nBuild B3 Bologna\n\n63) mneme: Discover B1 Ector G3 Artis\n\n64) MadWuher: Sacrifice B2 Bologna\nTrade Y2 G2 Madwuher\nTrade B3 R3 Bologna\n\n65) mneme: Sacrifice G3 Ector\nBuild B2 Ector\nBuild B3 Ector\nBuild B3 Artis\n\n66) MadWuher: Sacrifice Y2 Bologna\nMove B2 Bologna Artis\nMove B2 Artis Ector\nCatastrophe Ector B\n\n67) mneme: Trade B3 Y3 Artis\n\n68) MadWuher: Build G1 Madwuher\n\n69) mneme: Build B1 Artis\n\n70) MadWuher: Trade G2 B2 Madwuher\n\tmneme: sweet!\n\n71) mneme: Move B1 Artis Madwuher\n\n72) MadWuher: Trade B2 R2 Madwuher\n\n73) mneme: Attack G1 Madwuher\n\n74) MadWuher: Sacrifice R2 Madwuher\nAttack B1 Madwuher\nAttack G1 Madwuher\n\n75) mneme: Build B2 Artis\n\n76) MadWuher: Discover B1 Madwuher G3 Caviar\n\n77) mneme: Build Y1 Artis\n\n78) MadWuher: Build B2 Caviar\n\n79) mneme: Sacrifice Y1 Artis\nMove R3 Friendly Caviar\n\n80) MadWuher: Sacrifice Y3 Madwuher\nMove B2 Caviar Bologna\nDiscover B1 Caviar G2 Edora\nPass\n\n81) mneme: Move B2 Artis Edora\n\n82) MadWuher: Build R1 Bologna\n\n83) mneme: Build R1 Caviar\n\n84) MadWuher: Sacrifice B1 Edora\nTrade R1 Y1 Bologna\n\n85) mneme: Build B1 Artis\n\n86) MadWuher: Build G1 Madwuher\n\n87) mneme: Trade B1 R1 Artis\n\n88) MadWuher: Trade G1 Y1 Madwuher\n\n89) mneme: Build R2 Artis\n\n90) MadWuher: Build B1 Bologna\n\n91) mneme: Trade R2 G2 Artis\n\n92) MadWuher: T B1 G1 Bologna\n\n93) mneme: Sacrifice G2 Artis\nBuild Y1 Mneme\nBuild B1 Artis\n\n94) MadWuher: B Y2 Madwuher\n\n95) mneme: Sacrifice Y3 Artis\nMove R1 Artis Madwuher\nMove R1 Caviar Madwuher\nMove R3 Caviar Madwuher\nCatastrophe Madwuher R\n\n96) MadWuher: Move Y1 Bologna Mneme\n\n97) mneme: Sacrifice Y3 Mneme\nMove B1 Artis Madwuher\nMove B1 Artis Madwuher\nMove B2 Edora Madwuher\nCatastrophe Madwuher B\n\n\tmneme: *nod*  I&#39;m not even sure you had a sequence that would avoid inevitable doom once I grew the r2--the big turning point was, I think, when I got ahead on larges, and you didn&#39;t find a way to capitalize on my limited growth and smaller number of pieces.  Good game!\n\nHomeworlds Online (SDG# 11244)\nStarted: 2008.7.8, Ended: 2008.8.26\nParticipants: MikeYarrum (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 G3 B3\n\n\nHomeworlds Online (SDG# 11275)\nVariants: &quot;Hard time&quot;\nStarted: 2008.7.8, Ended: 2008.9.5\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) mneme: Homeworld G1 R2 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build B1 Mneme\n\n5) TwoShort: Build G1 Twoshort\n\n6) mneme: Build B1 Mneme\n\tTwoShort: I&#39;m quite curious if you have a master plan with the blue-ship opening or if you&#39;re just trying to throw me off by being different.\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\tmneme: TS: me too!  Really, within the GBR range, I think there are valid strategies for G and B.  I&#39;m actually curious for R -- since the color of your lead ship has =more= to do with what you can expand/try to freeze your opponent out of, I could see a game plan -- though of course, for G and B, it&#39;s very useful to be able to sac for powers.  I got Andy with the blue freeze engine at Origins, btw.\r\n\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) TwoShort: Build G1 Twoshort\n\n10) mneme: Build B1 Mneme\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) mneme: Discover B1 Mneme G3 Hastor\n\n13) TwoShort: Build G2 Twoshort\n\n14) mneme: Build B2 Hastor\n\n15) TwoShort: Discover G1 Twoshort G2 Greensville\n\n16) mneme: Discover B1 Mneme G3 Chiles\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n18) mneme: Build B2 Chiles\n\n19) TwoShort: Trade G2 R2 Bluonia\n\n20) mneme: Trade B2 R2 Hastor\n\n21) TwoShort: Trade G2 B2 Twoshort\n\n22) mneme: Build B3 Mneme\n\n23) TwoShort: Build G2 Twoshort\n\n24) mneme: Build B3 Hastor\n\n25) TwoShort: Discover B2 Twoshort Y2 Yellonia\n\n26) mneme: Trade B2 Y2 Chiles\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\nBuild R1 Bluonia\n\n28) mneme: Trade B3 Y3 Hastor\n\n29) TwoShort: Move Y1 Twoshort Bluonia\n\n30) mneme: Build B2 Chiles\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Yellonia\nBuild Y1 Bluonia\nBuild G3 Twoshort\n\n32) mneme: Sacrifice Y2 Chiles\nMove B1 Chiles Yellonia\nMove B1 Hastor Yellonia\nCatastrophe Yellonia B\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n34) mneme: Discover B3 Mneme Y3 Yenta\n\n35) TwoShort: Discover R1 Bluonia B3 Bluestar\n\n36) mneme: Move B3 Yenta Bluonia\n\n37) TwoShort: Sacrifice Y1 Bluonia\nDiscover R2 Bluonia Y3 Yolonda\n\n38) mneme: Sacrifice R2 Hastor\nAttack G2 Bluonia\nAttack G1 Bluonia\n\n39) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Greensville\nBuild R1 Bluestar\n\n40) mneme: Trade B3 R3 Bluonia\n\n41) TwoShort: Sacrifice Y2 Twoshort\nMove R1 Bluestar Mneme\nMove R1 Bluestar Mneme\n\n42) mneme: Attack Y1 Bluonia\n\n43) TwoShort: Sacrifice G2 Greensville\nBuild G2 Greensville\nBuild R2 Mneme\nCatastrophe Mneme Red\n\n44) mneme: Build Y1 Bluonia\n\n45) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Greensville Mneme\nDiscover G3 Twoshort Y2 Skinofmyteeth\n\tTwoShort: I&#39;m about to leave on vacation for two weeks, and I&#39;m not entirely sure how much internet access I&#39;ll have. Would you mind if we froze the clock for a bit?\n\tmneme: It&#39;s cool.\r\n\n\n46) mneme: Sacrifice Y3 Mneme\nMove R3 Bluonia Mneme\nMove G2 Bluonia Twoshort\nMove B1 Mneme Greensville\n\tTwoShort: I&#39;m back, but yikes this is thorny.  I&#39;ve come up with about a dozen moves that look good but when I look closer they all lose.\n\tTwoShort: Got it.\n\n47) TwoShort: Move G3 Skinofmyteeth Twoshort\n\tmneme: mn...  Yeah, I think that&#39;s it.  :(  \n\n48) mneme: Attack G1 Mneme\n\n49) TwoShort: Attack G2S Twoshort\n\tmneme: Alas, I think that was the only move that didn&#39;t lead to inevitable obvious doom.  Still, might as well play it out.  \n\n50) mneme: Sacrifice Y3 Hastor\nMove G1 Mneme Bluonia\nMove G1 Bluonia Twoshort\nMove G1 Bluonia Twoshort\nCatastrophe Twoshort G\n\tTwoShort: attack g2s twoshort\n\tTwoShort: oops\n\n51) TwoShort: Sacrifice G2 Greensville\nBuild Y2 Twoshort\nBuild R1 Yolonda\n\n52) mneme: Trade B2 Y2 Chiles\n\n53) TwoShort: Trade Y2 G2 Twoshort\n\n54) mneme: Build Y2 Chiles\n\n55) TwoShort: Build Y2 Twoshort\n\n56) mneme: Move Y2 Chiles Greensville\n\n57) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort G2 Grogar\nMove R2 Yolonda Greensville\n\n58) mneme: Sacrifice Y2 Chiles\nMove Y2 Greensville Mneme\nMove B1 Greensville Mneme\n\n59) TwoShort: Build Y2 Grogar\n\n60) mneme: Build Y2 Mneme\n\n61) TwoShort: Sacrifice Y1 Grogar\nMove R2 Greensville Twoshort\n\n62) mneme: Trade Y2 R2 Mneme\n\n63) TwoShort: Build G1 Twoshort\n\n64) mneme: Trade R3 Y3 Mneme\n\n65) TwoShort: Move Y2 Grogar Twoshort\n\n66) mneme: Trade Y1 G1 Bluonia\n\n67) TwoShort: Discover G2 Twoshort Y2 Yak\n\n68) mneme: Build G2 Bluonia\n\n69) TwoShort: Build G2 Yak\n\n70) mneme: Trade G1 Y1 Bluonia\n\n71) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Twoshort Yak\nMove G1 Yak Mneme\n\tmneme: you know, somewhere in here, I&quot;m either going to win or make a horrible mistake.\n\n72) mneme: Attack G1 Mneme\n\tTwoShort: I expect one of us will win brilliantly or mess up horribly very soon.  But I&#39;ve been expecting that for a couple dozen moves now :)\n\n73) TwoShort: Move G2 Yak Mneme\n\n\nHomeworlds Online (SDG# 11287)\nStarted: 2008.7.11, Ended: 2008.7.11\nParticipants: smartmo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B3 G3\n\tsmartmo: pass\n\tsmartmo: I have no idea what I am supposed to do now kevin !?? :D\n\tMadWuher: First step: Make a homeworld.\r\nThe command for creating one is at the top of this page. type &quot;homeworld star1 star2 ship&quot; where you replace ship and each star# with a color and size (ie R2 or Y3). I&#39;ll set mine up to show you. \n\n2) smartmo: Homeworld B1 Y2 G3\n\tMadWuher: I typed in &quot;homeworld y1 b3 g3&quot; to make my system. Its just like the game we played in the lab, only a play by post game, so it may take a bit longer for it to play out.\n\n3) MadWuher: Build G1 Madwuher\n\n4) smartmo: Build G1 Smartmo\n\tMadWuher: Now, you will want to start building ships and discovering new systems. Your I typed in &quot;build g1 MadWuher&quot; to build a green 1-pip in my system.\n\n5) MadWuher: Trade G1 R1 Madwuher\n\n6) smartmo: Build G1 Smartmo\n\tsmartmo: Please check your sfu email kevin !!! :) \n\n7) MadWuher: Build G1 Madwuher\n\n8) smartmo: Build G2 Smartmo\n\n9) MadWuher: Pass\nCatastrophe Smartmo G\n\n\nHomeworlds Online (SDG# 11300)\nStarted: 2008.7.12, Ended: 2008.7.31\nParticipants: MadWuher (S), smartmo (N)\nWinner: MadWuher\n\n1) smartmo: Homeworld B3 Y2 G3\n\n2) MadWuher: Homeworld R1 B3 G3\n\tsmartmo: Last game was so funny ... lool ... I wanted to take easy on you (you knew it riiight !??) looolll\r\nI remember you said the system gives us a hint if something like that is possible to happen !!!\n\n3) smartmo: Build G1 Smartmo\n\tMadWuher: Take a look at the wiki link and/or the rules link at the top of this game. Some hints are given by the system, but not all. =)\n\n4) MadWuher: Build G1 Madwuher\n\n5) smartmo: Trade G1 Y1 Smartmo\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) smartmo: Build G1 Smartmo\n\n8) MadWuher: Build G1 Madwuher\n\n9) smartmo: Discover G1 Smartmo G1 Matrix\n\n10) MadWuher: Build G2 Madwuher\n\n11) smartmo: Build G2 Smartmo\n\n12) MadWuher: Discover G2 Madwuher B2 Edora\n\n13) smartmo: Sacrifice G3 Smartmo\nBuild G2 Smartmo\nBuild G3 Smartmo\nBuild Y1 Smartmo\n\n14) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Edora\nBuild Y2 Madwuher\n\n15) smartmo: Discover G2 Smartmo R1 Eigenspace\n\n16) MadWuher: Build Y2 Madwuher\n\n17) smartmo: Sacrifice G2 Smartmo\nBuild G2 Smartmo\nBuild Y3 Smartmo\n\n18) MadWuher: Move Y2 Madwuher Edora\nCatastrophe Smartmo Y\n\n19) smartmo: Trade G2 Y2 Smartmo\n\n20) MadWuher: Trade G1 R1 Madwuher\n\n21) smartmo: Sacrifice G1 Matrix\nBuild Y1 Smartmo\n\n22) MadWuher: Sacrifice Y2 Edora\nMove G3 Edora Eigenspace\nMove G3 Eigenspace Smartmo\n\n23) smartmo: Trade Y2 R2 Smartmo\n\n24) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Smartmo\n\n25) smartmo: Sacrifice G3 Smartmo\nBuild Y1 Smartmo\nBuild Y2 Smartmo\nBuild Y2 Smartmo\n\tsmartmo: with a green ship are u able to attack my red ship !??\n\n26) MadWuher: Build R1 Smartmo\nCatastrophe Smartmo Y\n\tMadWuher: In a manner of speaking..... yes\n\n\nHomeworlds Online (SDG# 11307)\nStarted: 2008.7.13, Ended: 2008.10.3\nParticipants: smartmo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B3 G3\n\n2) smartmo: Homeworld R3 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) smartmo: Build G1 Smartmo\n\n5) MadWuher: Discover G1 Madwuher B2 Edora\n\n6) smartmo: Trade G1 Y1 Smartmo\n\n7) MadWuher: Build G1 Madwuher\n\n8) smartmo: Build G1 Smartmo\n\n9) MadWuher: Build G2 Edora\n\n10) smartmo: Discover G1 Smartmo B1 Alpha\n\n11) MadWuher: Trade G2 Y2 Edora\n\n12) smartmo: Build G2 Smartmo\n\n13) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n14) smartmo: Sacrifice G3 Smartmo\nBuild G3 Smartmo\nBuild Y1 Smartmo\nBuild Y2 Smartmo\n\n15) MadWuher: Sacrifice G1 Madwuher\nBuild Y2 Edora\n\n16) smartmo: Move Y1 Smartmo Alpha\n\n17) MadWuher: Trade G2 R2 Madwuher\n\n18) smartmo: Build Y3 Alpha\n\n19) MadWuher: Discover Y2 Edora B1 Bologna\n\n\tMadWuher: Mo???\n\nHomeworlds Online (SDG# 11309)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2008.7.14, Ended: 2008.7.30\nParticipants: MadWuher (S), smartmo (N)\nWinner: MadWuher\n\n1) smartmo: Homeworld G3 Y3 G3 *\n\n2) MadWuher: Homeworld R1 B3 G3\n\n3) smartmo: Build G1 Smartmo\n\n4) MadWuher: Build G1 Madwuher\n\n5) smartmo: Discover G1 Smartmo Y2 Delta\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) smartmo: Build G1 Smartmo\n\n8) MadWuher: Build G1 Madwuher\n\n9) smartmo: Build G2 Delta\n\n10) MadWuher: Build G2 Madwuher\n\n11) smartmo: Move G1 Delta Madwuher\nCatastrophe Madwuher G\n\n12) MadWuher: Trade Y1 G1 Madwuher\n\n13) smartmo: Discover G1 Smartmo B1 Gamma\n\n14) MadWuher: Build G1 Madwuher\n\n\nHomeworlds Online (SDG# 11310)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2008.7.14, Ended: 2008.10.3\nParticipants: smartmo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y2 B3 G3\n\n2) smartmo: Homeworld G3 Y1 B3\n\n3) MadWuher: Build G1 Madwuher\n\n4) smartmo: Build B1 Smartmo\n\n5) MadWuher: Build G1 Madwuher\n\n6) smartmo: Build B1 Smartmo\n\n7) MadWuher: Discover G1 Madwuher B1 Bluetopia\n\n8) smartmo: Trade B1 Y1 Smartmo\n\n9) MadWuher: Build G1 Madwuher\n\n10) smartmo: Build B1 Smartmo\n\n11) MadWuher: Build G2 Bluetopia\n\n12) smartmo: Trade B3 G3 Smartmo\n\n13) MadWuher: Build G2 Bluetopia\n\n14) smartmo: Build B2 Smartmo\n\n15) MadWuher: Trade G2 Y2 Bluetopia\n\n16) smartmo: Discover B1 Smartmo B2 Alpha\n\n17) MadWuher: Trade G2 B2 Bluetopia\n\n\nHomeworlds Online (SDG# 11318)\nStarted: 2008.7.15, Ended: 2008.8.17\nParticipants: MatrixFrog (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) MatrixFrog: Homeworld B2 Y1 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) MadWuher: Trade G3 Y3 Madwuher\n\n6) MatrixFrog: Trade G1 B1 Matrixfrog\n\n7) MadWuher: Build G1 Madwuher\n\n8) MatrixFrog: Build G1 Matrixfrog\n\n9) MadWuher: Discover G1 Madwuher B2 Edora\n\n10) MatrixFrog: Build B1 Matrixfrog\n\n11) MadWuher: Build G2 Madwuher\n\n12) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n13) MadWuher: Discover G1 Madwuher Y2 Bologna\n\n14) MatrixFrog: Build G1 Matrixfrog\n\n15) MadWuher: Build G2 Edora\n\n16) MatrixFrog: Trade B1 R1 Matrixfrog\n\n17) MadWuher: Trade G2 R2 Edora\n\n18) MatrixFrog: Discover G1 Matrixfrog Y3 Beep\n\n19) MadWuher: Build G2 Edora\n\n20) MatrixFrog: Discover G1 Beep B2 Beeep\n\n21) MadWuher: Trade G2 Y2 Edora\n\n22) MatrixFrog: Build G2 Matrixfrog\n\n23) MadWuher: Discover G1 Bologna Y3 Caviar\n\n24) MatrixFrog: Build G2 Beeep\n\n25) MadWuher: Build G3 Caviar\n\n26) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild R1 Matrixfrog\nBuild B1 Matrixfrog\n\n27) MadWuher: Sacrifice G3 Caviar\nBuild G2 Madwuher\nBuild G3 Edora\nBuild G3 Caviar\n\n28) MatrixFrog: Trade G1 Y1 Beeep\n\n29) MadWuher: Trade G1 B1 Edora\n\n30) MatrixFrog: Discover B1 Matrixfrog Y3 Boop\n\n31) MadWuher: Move B1 Edora Caviar\n\n32) MatrixFrog: Build G1 Beeep\n\n33) MadWuher: Sacrifice G3 Caviar\nBuild B3 Caviar\nBuild Y2 Edora\nBuild Y2 Madwuher\n\n34) MatrixFrog: Move G1 Beeep Madwuher\n\n35) MadWuher: Sacrifice B1 Caviar\nTrade G2 R2 Madwuher\n\n36) MatrixFrog: Sacrifice G2 Beeep\nBuild G1 Madwuher\nBuild G2 Madwuher\nCatastrophe Madwuher G\n\n37) MadWuher: Trade Y2 G2 Madwuher\n\n38) MatrixFrog: Build G1 Matrixfrog\n\n39) MadWuher: Build Y2 Madwuher\n\n40) MatrixFrog: Move G1 Matrixfrog Boop\n\n41) MadWuher: Sacrifice G2 Madwuher\nBuild B1 Caviar\nBuild B3 Caviar\n\n42) MatrixFrog: Move B1 Matrixfrog Caviar\nCatastrophe Caviar B\n\n43) MadWuher: Build R2 Edora\n\n44) MatrixFrog: Move R1 Matrixfrog Caviar\n\n45) MadWuher: Sacrifice R2 Edora\nAttack R1 Caviar\nPass\n\n46) MatrixFrog: Build G1 Matrixfrog\n\n47) MadWuher: Build G2 Caviar\n\n48) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild G2 Boop\nBuild B1 Boop\nBuild R2 Matrixfrog\n\n49) MadWuher: Sacrifice G3 Edora\nBuild R3 Edora\nBuild R3 Caviar\nBuild R3 Madwuher\n\n50) MatrixFrog: Move Y1 Beeep Madwuher\n\n51) MadWuher: Attack Y1 Madwuher\n\n52) MatrixFrog: Sacrifice R1 Matrixfrog\nPass\n\n53) MadWuher: Move R3 Caviar Matrixfrog\n\n\nHomeworlds Online (SDG# 11294)\nStarted: 2008.7.15, Ended: 2008.7.17\nParticipants: MadWuher (S), DJAnyReason (N)\nWinner: MadWuher\n\n1) DJAnyReason: Homeworld R2 B1 G3\n\n2) MadWuher: Homeworld B1 G3 B3 *\n\n3) DJAnyReason: Build G1 Djanyreason\n\tMadWuher: heya.....\n\n4) MadWuher: Build B1 Madwuher\n\n5) DJAnyReason: Trade G3 Y3 Djanyreason\n\n6) MadWuher: Trade B3 Y3 Madwuher\n\n7) DJAnyReason: Build G1 Djanyreason\n\n8) MadWuher: Build B2 Madwuher\n\n9) DJAnyReason: Discover G1 Djanyreason Y3 N1\n\n10) MadWuher: Discover B2 Madwuher Y2 Edora\n\n11) DJAnyReason: Build G1 Djanyreason\n\n12) MadWuher: Trade B2 G2 Edora\n\n13) DJAnyReason: Discover G1 Djanyreason B3 N2\n\n14) MadWuher: Build B2 Madwuher\n\n15) DJAnyReason: Build G2 Djanyreason\n\n16) MadWuher: Move B2 Madwuher Edora\n\n17) DJAnyReason: Discover G1 Djanyreason R3 N3\n\n18) MadWuher: Move B2 Edora N3\n\n19) DJAnyReason: Trade Y3 G3 Djanyreason\n\n20) MadWuher: Attack G1 N3\n\n21) DJAnyReason: Sacrifice G3 Djanyreason\nBuild G2 N1\nBuild G3 N2\nBuild G3 Djanyreason\n\n22) MadWuher: Sacrifice G2 Edora\nBuild G2 N3\nBuild Y1 Madwuher\n\n23) DJAnyReason: Trade G2 B2 Djanyreason\n\n24) MadWuher: Build B2 N3\n\n25) DJAnyReason: Sacrifice B2 Djanyreason\nTrade G1 R1 N1\nTrade G3 Y3 N2\n\n26) MadWuher: Build B2 Madwuher\n\n27) DJAnyReason: Discover R1 N1 G1 N4\n\n28) MadWuher: Build B3 N3\n\n29) DJAnyReason: Sacrifice G2 N1\nBuild R1 N4\nBuild R1 N4\n\n30) MadWuher: Sacrifice Y3 Madwuher\nMove B3 N3 Djanyreason\nMove B2 N3 Djanyreason\nMove G2 N3 Djanyreason\n\n31) DJAnyReason: Attack B3S Djanyreason\n\n32) MadWuher: Build G2 Djanyreason\n\n33) DJAnyReason: Sacrifice B3 Djanyreason\nTrade G3 Y3 Djanyreason\nTrade Y3 R3 N2\nPass\n\n34) MadWuher: Sacrifice G2 Djanyreason\nBuild G2 Djanyreason\nBuild B3 Djanyreason\n\n35) DJAnyReason: Sacrifice R3 N2\nAttack B3S Djanyreason\nAttack G2S Djanyreason\nAttack G2S Djanyreason\n\n36) MadWuher: Sacrifice G1 N3\nBuild B3 Djanyreason\nCatastrophe Djanyreason B\n\n37) DJAnyReason: Trade G1 B1 N2\n\n38) MadWuher: Trade B2 R2 Madwuher\n\n39) DJAnyReason: Sacrifice Y3 Djanyreason\nMove R1 N4 N2\nMove R1 N4 Djanyreason\nMove B1 N2 Djanyreason\n\n40) MadWuher: Build Y1 Madwuher\n\n41) DJAnyReason: Trade R1 Y1 Djanyreason\n\n42) MadWuher: Build Y2 Madwuher\n\n43) DJAnyReason: Move Y1 Djanyreason Madwuher\nCatastrophe Madwuher Yellow\n\n44) MadWuher: Build B2 Madwuher\n\n45) DJAnyReason: Sacrifice G2 Djanyreason\nBuild B2 Djanyreason\nBuild B3 Djanyreason\n\n46) MadWuher: Trade B2 Y2 Madwuher\n\tMadWuher: Wow.... Stupid move by me. I wish there was a way to see the result before you commit it. Grrrrr.\n\n47) DJAnyReason: Sacrifice B1 Djanyreason\nTrade B3 Y3 Djanyreason\n\n48) MadWuher: Build Y1 Madwuher\n\n49) DJAnyReason: Build Y1 Djanyreason\n\n50) MadWuher: Trade B2 R2 N3\n\n51) DJAnyReason: Sacrifice G2 Djanyreason\nBuild R1 N2\nBuild R3 N2\n\n52) MadWuher: Build R3 Madwuher\n\n53) DJAnyReason: Move Y3 Djanyreason Madwuher\n\n54) MadWuher: Attack Y3 Madwuher\n\n55) DJAnyReason: Move Y1 Djanyreason Madwuher\nCatastrophe Madwuher Yellow\n\n56) MadWuher: Trade B1 Y1 Madwuher\n\n57) DJAnyReason: Trade R3 Y3 N2\n\n58) MadWuher: Move R3 Madwuher Djanyreason\n\n59) DJAnyReason: Move Y3 N2 Djanyreason\n\n60) MadWuher: Sacrifice R2 Madwuher\nAttack Y3 Djanyreason\nAttack B2 Djanyreason\n\n\nHomeworlds Online (SDG# 11320)\nStarted: 2008.7.15, Ended: 2008.7.16\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Hello..\n\n2) DJAnyReason: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build Y1 Djanyreason\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) DJAnyReason: Trade Y1 R1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build R1 Djanyreason\n\n9) MadWuher: Discover G1 Madwuher Y3 Edora\n\n10) DJAnyReason: Build R2 Djanyreason\n\n11) MadWuher: Build G1 Madwuher\n\n12) DJAnyReason: Discover R2 Djanyreason G1 S1\n\n13) MadWuher: Build G2 Madwuher\n\n14) DJAnyReason: Trade R1 B1 Djanyreason\n\n15) MadWuher: Trade G2 R2 Madwuher\n\n16) DJAnyReason: Move B1 Djanyreason S1\n\n17) MadWuher: Build G2 Edora\n\n18) DJAnyReason: Trade B1 Y1 S1\n\n19) MadWuher: Discover G1 Edora B1 Bologna\n\n20) DJAnyReason: Move R2 S1 Edora\n\n21) MadWuher: Sacrifice R2 Madwuher\nAttack R2 Edora\nPass\n\n22) DJAnyReason: Move Y1 S1 Djanyreason\n\n23) MadWuher: Build G1 Bologna\n\n\nHomeworlds Online (SDG# 11321)\nStarted: 2008.7.15, Ended: 2008.7.17\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 Y3 G3\n\tMadWuher: Howdy...\n\n2) DJAnyReason: Homeworld R3 G1 B3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build B1 Djanyreason\n\n5) MadWuher: Build G1 Madwuher\n\n6) DJAnyReason: Trade B3 G3 Djanyreason\n\n7) MadWuher: Discover G1 Madwuher Y1 Edora\n\n8) DJAnyReason: Build G2 Djanyreason\n\n9) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Madwuher\n\n10) DJAnyReason: Trade G2 Y2 Djanyreason\n\n11) MadWuher: Trade G2 B2 Madwuher\n\n12) DJAnyReason: Build B1 Djanyreason\n\n13) MadWuher: Move B2 Madwuher Edora\n\n14) DJAnyReason: Trade B1 R1 Djanyreason\n\n15) MadWuher: Discover G2 Edora B2 Bologna\n\n16) DJAnyReason: Discover R1 Djanyreason Y2 S1\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n18) DJAnyReason: Build G3 Djanyreason\n\n19) MadWuher: Sacrifice B2 Edora\nTrade G2 Y2 Bologna\nTrade G2 R2 Edora\n\n20) DJAnyReason: Trade G3 B3 Djanyreason\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n22) DJAnyReason: Sacrifice Y2 Djanyreason\nMove G3 Djanyreason Bologna\nMove G3 Bologna Edora\n\n23) MadWuher: Sacrifice G2 Bologna\nBuild G2 Edora\nBuild G3 Bologna\nCatastrophe Edora G\n\n24) DJAnyReason: Move R1 S1 Djanyreason\n\n25) MadWuher: Sacrifice G2 Bologna\nBuild G1 Bologna\nBuild G2 Bologna\n\n26) DJAnyReason: Trade B3 Y3 Djanyreason\n\n27) MadWuher: Sacrifice G2 Bologna\nBuild G2 Bologna\nBuild R1 Edora\n\n28) DJAnyReason: Build B1 Djanyreason\n\n29) MadWuher: Move G1 Bologna Djanyreason\n\n30) DJAnyReason: Attack G1N Djanyreason\n\n31) MadWuher: Sacrifice Y2 Bologna\nMove G3 Bologna Djanyreason\nMove G2 Bologna Djanyreason\nCatastrophe Djanyreason G\n\n32) DJAnyReason: Trade B1 G1 Djanyreason\n\n33) MadWuher: Trade G3 Y3 Madwuher\n\n34) DJAnyReason: Trade R1 B1 Djanyreason\n\n35) MadWuher: Build G1 Madwuher\n\n36) DJAnyReason: Build G2 Djanyreason\n\n37) MadWuher: Sacrifice G1 Madwuher\nBuild R1 Edora\n\n\nHomeworlds Online (SDG# 11308)\nStarted: 2008.7.16, Ended: 2008.7.20\nParticipants: smartmo (S), MikeYarrum (N)\nWinner: smartmo\n\n\tsmartmo: yooohooo I won !!!! lool\n\nHomeworlds Online (SDG# 11324)\nStarted: 2008.7.16, Ended: 2009.12.9\nParticipants: DJAnyReason (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) DJAnyReason: Homeworld B3 G2 Y3\n\n3) Danner: Build G1 Danner\n\n4) DJAnyReason: Build Y1 Djanyreason\n\n5) Danner: Trade G1 R1 Danner\n\n6) DJAnyReason: Trade Y3 R3 Djanyreason\n\n7) Danner: Build G1 Danner\n\n8) DJAnyReason: Build Y1 Djanyreason\n\n9) Danner: Trade G1 Y1 Danner\n\n10) DJAnyReason: Build Y2 Djanyreason\n\n11) Danner: Build Y2 Danner\n\n12) DJAnyReason: Trade Y2 G2 Djanyreason\n\n13) Danner: Build Y2 Danner\n\n14) DJAnyReason: Discover Y1 Djanyreason G1 S1\n\n15) Danner: Trade Y1 B1 Danner\n\n16) DJAnyReason: Build G1 Djanyreason\n\n17) Danner: Build G1 Danner\n\n18) DJAnyReason: Trade G1 B1 Djanyreason\n\n19) Danner: Discover Y2 Danner G3 Earth\n\n20) DJAnyReason: Trade R3 G3 Djanyreason\n\n21) Danner: Discover G1 Danner Y3 Sun\n\n22) DJAnyReason: Trade G2 R2 Djanyreason\n\n23) Danner: Build G1 Danner\n\n24) DJAnyReason: Build G2 Djanyreason\n\n25) Danner: Sacrifice Y2 Earth\nMove G1 Sun S1\nMove G1 S1 Djanyreason\nCatastrophe Djanyreason G\n\n\tDanner: Hey! You regularry log in and make moves in other games! Make your move in this game too, I have been waiting enough\n\tDanner: Okay, you used to log in and make moves in other games.\n\tDanner: [checking time zone]\n\nHomeworlds Online (SDG# 11327)\nStarted: 2008.7.16, Ended: 2008.7.21\nParticipants: DJAnyReason (S), MikeYarrum (N)\nWinner: DJAnyReason\n\n\nHomeworlds Online (SDG# 11322)\nStarted: 2008.7.17, Ended: 2008.7.24\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) DJAnyReason: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build G1 Djanyreason\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) DJAnyReason: Trade Y1 R1 Djanyreason\n\n11) MadWuher: Build B1 Madwuher\n\n12) DJAnyReason: Trade G1 Y1 Djanyreason\n\tDJAnyReason: uhh... can&#39;t undo that undo, huh?\n\n13) MadWuher: Discover B1 Madwuher G2 Edora\n\n14) DJAnyReason: Build R1 Djanyreason\n\n15) MadWuher: Build B2 Edora\n\n16) DJAnyReason: Discover R1 Djanyreason B3 S1\n\n17) MadWuher: Trade B2 R2 Edora\n\n18) DJAnyReason: Build G1 Djanyreason\n\n19) MadWuher: Build B2 Edora\n\n20) DJAnyReason: Move G1 Djanyreason S1\n\n21) MadWuher: Trade B2 Y2 Edora\n\n22) DJAnyReason: Build G1 Djanyreason\n\n23) MadWuher: Build B2 Madwuher\n\n24) DJAnyReason: Build R2 S1\n\n25) MadWuher: Build R3 Edora\n\n26) DJAnyReason: Discover R1 Djanyreason G3 S2\n\n27) MadWuher: Trade R2 Y2 Edora\n\n28) DJAnyReason: Trade R2 B2 S1\n\n29) MadWuher: Discover Y2 Edora B3 Bologna\n\n30) DJAnyReason: Trade G1 Y1 S1\n\n31) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild Y3 Bologna\nBuild Y3 Madwuher\n\n32) DJAnyReason: Build Y3 Djanyreason\n\n33) MadWuher: Sacrifice B1 Madwuher\nTrade B2 G2 Madwuher\n\n34) DJAnyReason: Trade G1 B1 Djanyreason\n\n35) MadWuher: Build B2 Edora\n\n36) DJAnyReason: Sacrifice Y1 S1\nDiscover B2 S1 B2 S3\n\n37) MadWuher: Sacrifice Y2 Edora\nMove Y3 Bologna Djanyreason\nMove B2 Edora Bologna\n\n38) DJAnyReason: Attack Y3N Djanyreason\n\n39) MadWuher: Move Y2 Bologna Djanyreason\nCatastrophe Djanyreason Y\n\n40) DJAnyReason: Trade R1 G1 S1\n\n41) MadWuher: Move R3 Edora S1\n\n42) DJAnyReason: Build G1 S1\n\n43) MadWuher: Attack G1 S1\n\n44) DJAnyReason: Build G1 S1\n\n45) MadWuher: Move B1 Edora S1\n\n46) DJAnyReason: Build G2 Djanyreason\n\n47) MadWuher: Build G3 Madwuher\n\n48) DJAnyReason: Trade B2 Y2 S3\n\n49) MadWuher: Sacrifice Y2 Edora\nMove B2 Bologna Djanyreason\nMove B1 S1 Djanyreason\nCatastrophe Djanyreason B\n\n50) DJAnyReason: Sacrifice Y2 S3\nMove G2 Djanyreason Madwuher\nDiscover G1 S1 Y2 S4\n\n51) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Madwuher Djanyreason\nMove G1 S1 Djanyreason\nMove G2 Madwuher Djanyreason\nCatastrophe Djanyreason G\n\n\nHomeworlds Online (SDG# 11336)\nStarted: 2008.7.17, Ended: 2008.7.21\nParticipants: MikeYarrum (S), DJAnyReason (N)\nWinner: DJAnyReason\n\n1) DJAnyReason: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 11343)\nStarted: 2008.7.18, Ended: 2008.8.4\nParticipants: patwillis (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) patwillis: Homeworld Y1 B3 G3\n\n3) Danner: Build G1 Danner\n\n4) patwillis: Build G1 Patwillis\n\n5) Danner: Trade G1 Y1 Danner\n\n6) patwillis: Trade G1 Y1 Patwillis\n\n7) Danner: Build Y2 Danner\n\n8) patwillis: Build Y2 Patwillis\n\n9) Danner: Discover Y1 Danner G3 Earth\n\n10) patwillis: Discover Y1 Patwillis G2 Greenland\n\n11) Danner: Build Y2 Earth\n\n12) patwillis: Build Y3 Greenland\n\n13) Danner: Build Y3 Danner\n\n14) patwillis: Discover Y3 Greenland G1 Littlegreenland\n\n15) Danner: Move Y1 Earth Greenland\n\n16) patwillis: Build Y3 Greenland\n\n17) Danner: Move Y2 Earth Greenland\nCatastrophe Greenland Y\n\n18) patwillis: Build G1 Patwillis\n\n19) Danner: Discover Y2 Danner G3 Earth\n\n20) patwillis: Discover G1 Patwillis Y2 Yellonia\n\n21) Danner: Sacrifice G3 Danner\nBuild Y1 Earth\nBuild Y1 Earth\nBuild Y3 Danner\n\n22) patwillis: Build G1 Patwillis\n\n23) Danner: Trade Y3 G3 Danner\n\n24) patwillis: Trade Y2 R2 Patwillis\n\n25) Danner: Build G2 Danner\n\n26) patwillis: Discover G1 Yellonia Y3 Sun\n\n27) Danner: Move Y1 Earth Littlegreenland\n\n28) patwillis: Discover Y3 Littlegreenland R3 Mars\n\n29) Danner: Build Y2 Littlegreenland\n\n30) patwillis: Sacrifice G3 Patwillis\nBuild G2 Patwillis\nBuild G2 Patwillis\nBuild G3 Sun\n\n31) Danner: Build Y2 Danner\n\n32) patwillis: Move G1 Sun Danner\n\n33) Danner: Move G3 Danner Sun\n\n34) patwillis: Sacrifice R2 Patwillis\nAttack G3 Sun\nPass\n\n35) Danner: Sacrifice Y3 Danner\nMove G2 Danner Sun\nDiscover G2 Sun R2 Temporal\nMove G2 Temporal Patwillis\nCatastrophe Patwillis G\n\n\tDanner: Thx the game.\n\nHomeworlds Online (SDG# 11347)\nStarted: 2008.7.18, Ended: 2008.7.27\nParticipants: MadWuher (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) MadWuher: Homeworld Y1 B3 G3\n\n3) Danner: Build G1 Danner\n\n4) MadWuher: Build G1 Madwuher\n\n5) Danner: Trade G1 Y1 Danner\n\n6) MadWuher: Discover G1 Madwuher B2 Abydos\n\n7) Danner: Build Y1 Danner\n\n8) MadWuher: Build G1 Madwuher\n\n9) Danner: Build Y2 Danner\n\n10) MadWuher: Build G1 Abydos\n\n11) Danner: Discover Y1 Danner G3 Earth\n\n12) MadWuher: Build G2 Abydos\n\n13) Danner: Sacrifice G3 Danner\nBuild Y2 Earth\nBuild Y2 Earth\nBuild Y3 Danner\n\n14) MadWuher: Discover G1 Madwuher B2 Chulak\n\n15) Danner: Trade Y3 G3 Danner\n\n16) MadWuher: Trade G2 R2 Abydos\n\n17) Danner: Discover Y1 Danner B3 Atlantis\n\n18) MadWuher: Trade G3 Y3 Madwuher\n\n19) Danner: Build Y3 Danner\n\tMadWuher: It&#39;s amazing how little I actually think of strategy when I play. I have been totally screwing up the idea of locking someone out of a colour.\n\n20) MadWuher: Build G2 Chulak\n\n21) Danner: Build Y3 Danner\n\n22) MadWuher: Trade Y3 G3 Madwuher\n\n23) Danner: Discover Y3 Danner R3 P3r-118\n\n24) MadWuher: Build G2 Madwuher\n\n25) Danner: Build G2 Danner\n\n26) MadWuher: Trade G3 Y3 Madwuher\n\n27) Danner: Build G3 Danner\n\n28) MadWuher: Sacrifice Y3 Madwuher\nMove G1 Abydos Atlantis\nMove R2 Abydos Earth\nMove G1 Atlantis Danner\nCatastrophe Danner G\n\n29) Danner: Sacrifice Y2 Earth\nMove Y3 P3r-118 Abydos\nMove Y3 Abydos Madwuher\n\n30) MadWuher: Build G1 Abydos\n\n31) Danner: Trade Y3 R3 Danner\n\n32) MadWuher: Sacrifice G2 Chulak\nBuild G2 Madwuher\nBuild G2 Madwuher\n\n33) Danner: Trade Y3 G3 Madwuher\nCatastrophe Madwuher G\n\tDanner: Thx the game.\n\n\nHomeworlds Online (SDG# 11329)\nStarted: 2008.7.18, Ended: 2008.7.24\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y2 B3 G3\n\n2) DJAnyReason: Homeworld B1 R3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Discover G1 Madwuher B1 Edora\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build Y1 Djanyreason\n\n9) MadWuher: Trade G1 Y1 Edora\n\n10) DJAnyReason: Trade Y1 B1 Djanyreason\n\n11) MadWuher: Build G1 Madwuher\n\n12) DJAnyReason: Build G1 Djanyreason\n\n13) MadWuher: Move G1 Madwuher Edora\n\n14) DJAnyReason: Trade G1 R1 Djanyreason\n\n15) MadWuher: Trade G1 R1 Madwuher\n\n16) DJAnyReason: Build B2 Djanyreason\n\n17) MadWuher: Build G1 Madwuher\n\n18) DJAnyReason: Discover B2 Djanyreason Y2 S1\n\n19) MadWuher: Build G1 Edora\n\n20) DJAnyReason: Build G2 Djanyreason\n\n21) MadWuher: Discover G1 Edora B2 Bologna\n\n22) DJAnyReason: Sacrifice G3 Djanyreason\nBuild B2 S1\nBuild B3 S1\nBuild B3 Djanyreason\n\n23) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G2 Edora\nBuild G3 Madwuher\n\n24) DJAnyReason: Build G3 Djanyreason\n\tMadWuher: Excellent use of sacrificing in the past few games we&#39;ve played. I&#39;m learning a lot about it from you.\n\tDJAnyReason: Seriously? Learning? You&#39;ve been kicking my ass with it! ;)\n\n25) MadWuher: Build G3 Edora\n\n26) DJAnyReason: Move G3 Djanyreason S1\n\n27) MadWuher: Trade G2 Y2 Edora\n\n28) DJAnyReason: Trade R1 Y1 Djanyreason\n\n29) MadWuher: Move Y1 Edora S1\n\n30) DJAnyReason: Discover G3 S1 R3 S2\n\n31) MadWuher: Sacrifice G3 Edora\nBuild Y3 Edora\nBuild Y3 S1\nBuild Y3 S1\nCatastrophe S1 Y\n\n32) DJAnyReason: Discover B1 Djanyreason G2 S3\n\n33) MadWuher: Build G3 Edora\n\n34) DJAnyReason: Sacrifice G3 S2\nBuild B2 S3\nBuild B2 S3\nBuild G3 Djanyreason\n\n35) MadWuher: Move Y3 Edora Bologna\n\n36) DJAnyReason: Build B3 Djanyreason\n\n37) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Madwuher\nBuild R1 Madwuher\n\n38) DJAnyReason: Discover G3 Djanyreason R2 S4\n\n39) MadWuher: Move R1 Madwuher Edora\n\n40) DJAnyReason: Trade B3 R3 Djanyreason\n\n41) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild Y1 Bologna\nBuild R2 Edora\n\n42) DJAnyReason: Sacrifice Y1 Djanyreason\nMove Y1 Djanyreason S4\n\n43) MadWuher: Move R1 Edora Bologna\n\n44) DJAnyReason: Build B3 Djanyreason\n\n45) MadWuher: Sacrifice G3 Madwuher\nBuild R2 Bologna\nBuild R3 Edora\nBuild G3 Madwuher\n\n46) DJAnyReason: Trade B3 Y3 Djanyreason\n\n47) MadWuher: Sacrifice Y2 Edora\nMove R1 Bologna Djanyreason\nMove R2 Bologna Djanyreason\nCatastrophe Djanyreason R\n\n48) DJAnyReason: Sacrifice Y3 Djanyreason\nMove B2 S3 Edora\nMove B2 S3 Edora\nMove B1 S3 Edora\nCatastrophe Edora B\n\n49) MadWuher: Move Y3 Bologna Djanyreason\n\n50) DJAnyReason: Move Y1 S4 Djanyreason\n\n51) MadWuher: Sacrifice R1 Madwuher\nAttack B3 Djanyreason\n\n52) DJAnyReason: Sacrifice G3 S4\nBuild Y1 Djanyreason\nBuild Y2 Djanyreason\nBuild G1 Djanyreason\nCatastrophe Djanyreason Y\n\n53) MadWuher: Sacrifice G2 Bologna\nBuild B1 Djanyreason\nBuild B1 Djanyreason\nCatastrophe Djanyreason B\n\n\nHomeworlds Online (SDG# 11352)\nStarted: 2008.7.19, Ended: 2009.12.9\nParticipants: bang (S), surfball1028 (N)\nWinner: surfball1028\n\n1) surfball1028: Homeworld G3 B2 Y3\n\n2) bang: Homeworld G1 Y2 B3\n\tsurfball1028: MOVE!!\r\nhaha \r\ndan u r slow!\n\n3) surfball1028: Build Y1 Surfball1028\n\n4) bang: Build B1 Bang\n\n5) surfball1028: Build Y1 Surfball1028\n\n6) bang: Trade B1 Y1 Bang\n\n7) surfball1028: Discover Y1 Surfball1028 B1 Playalinda\n\n8) bang: Build Y2 Bang\n\n9) surfball1028: Trade Y1 G1 Playalinda\n\n10) bang: Trade Y1 G1 Bang\n\n11) surfball1028: Build G2 Playalinda\n\n12) bang: Build G2 Bang\n\n13) surfball1028: Trade G2 R2 Playalinda\n\n14) bang: Trade G1 R1 Bang\n\n15) surfball1028: Build Y1 Surfball1028\n\n16) bang: Discover G2 Bang B3 Boom\n\n17) surfball1028: Move Y1 Surfball1028 Playalinda\n\n18) bang: Build R1 Bang\n\n19) surfball1028: Build Y1 Playalinda\n\n20) bang: Discover R1 Bang Y3 Bing\n\n21) surfball1028: Trade Y1 B1 Surfball1028\n\n22) bang: Discover Y2 Bang G3 Bump\n\n23) surfball1028: Build G1 Playalinda\n\n24) bang: Build G2 Boom\n\n25) surfball1028: Move G1 Playalinda Boom\n\n26) bang: Trade G2 R2 Boom\n\n27) surfball1028: Build G2 Playalinda\n\n28) bang: Attack G1 Boom\n\n29) surfball1028: Discover G1 Playalinda Y3 Cocobeach\n\n30) bang: Sacrifice Y2 Bump\nMove G1 Boom Playalinda\nMove G1 Playalinda Surfball1028\n\n31) surfball1028: Trade B1 R1 Surfball1028\n\n32) bang: Sacrifice R1 Bing\nAttack R1 Surfball1028\n\n33) surfball1028: Build R1 Playalinda\n\n34) bang: Build G2 Boom\n\n35) surfball1028: Sacrifice R2 Playalinda\nAttack R1 Surfball1028\nAttack G1 Surfball1028\n\n36) bang: Trade G2 Y2 Boom\n\n37) surfball1028: Build G2 Cocobeach\n\n38) bang: Build G3 Boom\n\n39) surfball1028: Build G3 Playalinda\n\n40) bang: Build R2 Bang\n\n41) surfball1028: Trade Y1 B1 Playalinda\n\n42) bang: Move B3 Bang Cocobeach\n\n43) surfball1028: Discover G2 Cocobeach B1 Jfkspacecenter\n\n44) bang: Sacrifice R1 Bang\nAttack G1 Cocobeach\n\n45) surfball1028: Trade G2 Y2 Jfkspacecenter\n\n46) bang: Move B3 Cocobeach Bang\n\n47) surfball1028: Move G1 Surfball1028 Jfkspacecenter\n\n48) bang: Discover R2 Boom Y1 Base\n\n49) surfball1028: Build G2 Jfkspacecenter\n\n50) bang: Trade G3 R3 Boom\n\n51) surfball1028: Trade G2 B2 Jfkspacecenter\n\n52) bang: Move R3 Boom Jfkspacecenter\n\n53) surfball1028: Sacrifice Y2 Jfkspacecenter\nMove B2 Jfkspacecenter Surfball1028\nMove G1 Jfkspacecenter Cocobeach\n\n54) bang: Build R1 Bang\n\n55) surfball1028: Sacrifice G2 Playalinda\nBuild R2 Surfball1028\nBuild R3 Playalinda\n\n56) bang: Sacrifice Y2 Boom\nMove R3 Jfkspacecenter Cocobeach\nMove R1 Bang Cocobeach\n\n57) surfball1028: Move R3 Playalinda Boom\n\n\nHomeworlds Online (SDG# 11341)\nStarted: 2008.7.20, Ended: 2008.7.20\nParticipants: w00t (S), MadWuher (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11342)\nStarted: 2008.7.20, Ended: 2009.12.9\nParticipants: w00t (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11353)\nStarted: 2008.7.20, Ended: 2008.10.3\nParticipants: w00t (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) w00t: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) w00t: Build Y1 W00t\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) w00t: Discover Y1 W00t B1 O_o\n\n7) MadWuher: Build G1 Madwuher\n\n8) w00t: Trade Y1 G1 O_o\n\n9) MadWuher: Discover G1 Madwuher B2 Edora\n\n10) w00t: Build Y1 W00t\n\n11) MadWuher: Build G1 Madwuher\n\n12) w00t: Build G2 O_o\n\n13) MadWuher: Build G2 Edora\n\n14) w00t: Trade G1 Y1 O_o\n\n15) MadWuher: Trade G2 Y2 Edora\n\n16) w00t: Discover G2 O_o G3 Reactor\n\n17) MadWuher: Build Y2 Edora\n\n18) w00t: Trade Y1 R1 W00t\n\n19) MadWuher: Trade Y2 R2 Edora\n\n20) w00t: Build R1 W00t\n\n21) MadWuher: Build R2 Edora\n\n22) w00t: Move R1 W00t O_o\n\n23) MadWuher: Discover R2 Edora G1 Bologna\n\n24) w00t: Sacrifice G2 Reactor\nBuild Y1 W00t\nBuild Y2 O_o\n\n25) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n\nHomeworlds Online (SDG# 11357)\nStarted: 2008.7.20, Ended: 2009.12.9\nParticipants: MikeYarrum (S), smartmo (N)\nWinner: MikeYarrum\n\n1) smartmo: Homeworld B3 Y2 G3\n\n\nHomeworlds Online (SDG# 11356)\nStarted: 2008.7.21, Ended: 2008.7.22\nParticipants: DJAnyReason (S), w00t (N)\nWinner: DJAnyReason\n\n1) w00t: Homeworld Y2 R1 G3 *\n\n2) DJAnyReason: Homeworld R3 B3 G3 *\n\n3) w00t: Build G1 W00t\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) w00t: Discover G1 W00t B3 O_o\n\n6) DJAnyReason: Trade G3 Y3 Djanyreason\n\n7) w00t: Build G1 O_o\n\n8) DJAnyReason: Build G2 Djanyreason\n\n9) w00t: Build G2 W00t\n\n10) DJAnyReason: Move G1 Djanyreason W00t\n\n11) w00t: Discover G2 W00t G3 X1\n\n12) DJAnyReason: Sacrifice G2 Djanyreason\nBuild G2 W00t\nBuild G2 W00t\nCatastrophe W00t G\n\n\nHomeworlds Online (SDG# 11354)\nStarted: 2008.7.21, Ended: 2009.7.8\nParticipants: Horowits (S), w00t (N)\nWinner: w00t\n\n1) w00t: Homeworld B3 R1 G3\n\n2) Horowits: Homeworld G3 B2 Y3\n\n3) w00t: Build G1 W00t\n\tHorowits: Im going to ding the doom song.  Doom doom doom doomy doom doom dooooooooooooom doom doomy doom doom. the end.\n\n4) Horowits: Build Y1 Horowits\n\tw00t: fear my 1 pip green!  fear it!\n\n5) w00t: Trade G1 Y1 W00t\n\n6) Horowits: Trade Y1 G1 Horowits\n\n7) w00t: Discover Y1 W00t B2 O_o\n\tHorowits: so are you playing on your pda?\n\n\tw00t: I am playing on the pda :)\n\tw00t: slacker :)\n\nHomeworlds Online (SDG# 11355)\nStarted: 2008.7.21, Ended: 2008.10.3\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 Y3 G3\n\n2) DJAnyReason: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Trade G1 B1 Madwuher\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build B1 Madwuher\n\n8) DJAnyReason: Build Y1 Djanyreason\n\n9) MadWuher: Discover B1 Madwuher G1 Edora\n\n10) DJAnyReason: Discover Y1 Djanyreason G3 S1\n\n11) MadWuher: Build B2 Edora\n\n12) DJAnyReason: Build G1 Djanyreason\n\n13) MadWuher: Trade B2 Y2 Edora\n\n14) DJAnyReason: Build G1 Djanyreason\n\n15) MadWuher: Build G2 Madwuher\n\n16) DJAnyReason: Discover G1 Djanyreason B3 S2\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Edora\nBuild B2 Edora\nBuild B3 Madwuher\n\n18) DJAnyReason: Discover G1 Djanyreason B3 S3\n\n19) MadWuher: Sacrifice B2 Edora\nTrade B3 G3 Madwuher\nTrade B2 R2 Edora\n\n20) DJAnyReason: Build G2 Djanyreason\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild B2 Edora\n\n22) DJAnyReason: Trade G2 B2 Djanyreason\n\n23) MadWuher: Build B3 Edora\n\n24) DJAnyReason: Discover B2 Djanyreason Y3 S4\n\n25) MadWuher: Sacrifice B1 Edora\nTrade B3 Y3 Edora\n\n26) DJAnyReason: Build G2 Djanyreason\n\n27) MadWuher: Move R2 Edora S2\n\n28) DJAnyReason: Move Y1 S1 Edora\n\n29) MadWuher: Sacrifice B2 Edora\nTrade Y3 R3 Edora\nTrade G2 Y2 Madwuher\n\n30) DJAnyReason: Move Y1 Edora Madwuher\n\n31) MadWuher: Sacrifice R2 S2\nAttack Y1 Madwuher\nPass\n\n32) DJAnyReason: Sacrifice G3 Djanyreason\nBuild G2 S2\nBuild G3 Djanyreason\nBuild G3 Djanyreason\n\n33) MadWuher: Sacrifice Y1 Madwuher\nMove B1 Madwuher Edora\n\n34) DJAnyReason: Sacrifice B2 S4\nTrade G1 B1 S2\nTrade G2 B2 Djanyreason\n\n35) MadWuher: Build B2 Edora\n\n36) DJAnyReason: Sacrifice B2 Djanyreason\nTrade G3 B3 Djanyreason\nTrade G2 Y2 S2\n\n37) MadWuher: Discover B2 Edora G3 Bologna\n\n38) DJAnyReason: Sacrifice Y2 S2\nMove G1 S3 Edora\nMove G1 Edora Madwuher\n\n39) MadWuher: Trade G3 R3 Madwuher\n\n40) DJAnyReason: Build G1 Madwuher\n\n41) MadWuher: Attack G1 Madwuher\n\n42) DJAnyReason: Build G2 Madwuher\nCatastrophe Madwuher G\n\n43) MadWuher: Trade Y2 G2 Madwuher\n\n44) DJAnyReason: Build Y1 Djanyreason\n\n45) MadWuher: Build B2 Edora\n\n46) DJAnyReason: Trade B1 G1 S2\n\n47) MadWuher: Build B1 Bologna\n\n48) DJAnyReason: Discover B3 Djanyreason R3 S3\n\n49) MadWuher: Build B3 Bologna\n\n50) DJAnyReason: Sacrifice G1 S2\nBuild B3 S3\n\n51) MadWuher: Sacrifice Y2 Edora\nMove B1 Edora S3\nMove B2 Edora S3\nCatastrophe S3 B\n\n\nHomeworlds Online (SDG# 11358)\nStarted: 2008.7.24, Ended: 2009.8.16\nParticipants: MikeYarrum (S), virx61 (N)\nWinner: virx61\n\n1) virx61: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 11364)\nStarted: 2008.7.24, Ended: 2008.10.3\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) DJAnyReason: Homeworld B1 R3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build G1 Djanyreason\n\n9) MadWuher: Trade G1 R1 Madwuher\n\n10) DJAnyReason: Trade G1 R1 Djanyreason\n\n11) MadWuher: Build R2 Madwuher\n\n\nHomeworlds Online (SDG# 11380)\nStarted: 2008.7.25, Ended: 2008.11.18\nParticipants: Danner (S), Cerulean (N)\nWinner: Danner\n\n1) Cerulean: Homeworld G3 B2 Y3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) Cerulean: Build Y1 Cerulean\n\n4) Danner: Build G1 Danner\n\n5) Cerulean: Build Y1 Cerulean\n\n6) Danner: Trade G1 Y1 Danner\n\n7) Cerulean: Trade Y1 G1 Cerulean\n\n8) Danner: Build G1 Danner\n\n9) Cerulean: Trade Y1 R1 Cerulean\n\n10) Danner: Trade G1 R1 Danner\n\n11) Cerulean: Build Y1 Cerulean\n\n12) Danner: Build R2 Danner\n\n13) Cerulean: Build R2 Cerulean\n\n14) Danner: Discover R2 Danner Y3 Sun\n\n15) Cerulean: Build G1 Cerulean\n\n16) Danner: Build G1 Danner\n\n17) Cerulean: Trade G1 B1 Cerulean\n\n18) Danner: Trade G1 B1 Danner\n\n19) Cerulean: Discover Y1 Cerulean G1 Jiwun\n\n20) Danner: Move R2 Sun Jiwun\n\n21) Cerulean: Discover Y1 Jiwun G3 Jithree\n\n22) Danner: Build R2 Danner\n\n23) Cerulean: Discover R1 Cerulean Y1 Wywun\n\n24) Danner: Trade R1 G1 Danner\n\n25) Cerulean: Build G2 Cerulean\n\n26) Danner: Build G2 Danner\n\n27) Cerulean: Move G2 Cerulean Wywun\n\n28) Danner: Discover R2 Danner Y3 Sun\n\n29) Cerulean: Build G2 Wywun\n\n30) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild Y2 Danner\nBuild B1 Danner\n\n31) Cerulean: Move G2 Wywun Jithree\n\n32) Danner: Move G1 Danner Sun\n\n33) Cerulean: Build Y2 Jithree\n\n34) Danner: Discover B1 Danner Y3 Highway\n\n35) Cerulean: Move Y1 Jithree Danner\n\n36) Danner: Attack Y1N Danner\n\n37) Cerulean: Move G2 Jithree Danner\n\n38) Danner: Move G2 Danner Highway\n\n39) Cerulean: Trade G2 Y2 Danner\nCatastrophe Danner Y\n\n40) Danner: Build G2 Danner\n\n41) Cerulean: Build Y1 Jithree\n\n42) Danner: Trade G2 Y2 Highway\n\n43) Cerulean: Build G2 Wywun\n\n44) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild B2 Danner\nBuild B3 Highway\n\n45) Cerulean: Move B1 Cerulean Wywun\n\n46) Danner: Sacrifice B1 Highway\nTrade B2 Y2 Danner\n\n47) Cerulean: Build Y1 Cerulean\n\n48) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild B1 Highway\n\n49) Cerulean: Move G2 Wywun Jithree\n\n50) Danner: Move G2 Danner Highway\n\n51) Cerulean: Move B1 Wywun Jithree\n\n52) Danner: Move B1 Danner Sun\n\n53) Cerulean: Trade Y2 B2 Jithree\n\n54) Danner: Sacrifice G3 Danner\nBuild G3 Sun\nBuild B3 Sun\nBuild B3 Sun\n\n55) Cerulean: Build Y2 Jithree\n\n56) Danner: Move B3 Sun Wywun\n\n57) Cerulean: Sacrifice G2 Wywun\nBuild R1 Wywun\nBuild R3 Cerulean\n\tDanner: Ji means green, Wy means yellow, wun means one, eh, I didn&#39;t notice it before.\n\n58) Danner: Move G3 Sun Danner\n\n59) Cerulean: Move R1 Wywun Jithree\n\n60) Danner: Sacrifice G2 Highway\nBuild R3 Jiwun\nBuild R3 Sun\n\n61) Cerulean: Sacrifice Y1 Cerulean\nDiscover R3 Cerulean Y1 Wywuntu\n\n62) Danner: Sacrifice Y2 Highway\nMove R3 Jiwun Jithree\nMove B1 Highway Wywun\n\n63) Cerulean: Sacrifice Y2 Jithree\nMove Y1 Jithree Danner\nMove G2 Jithree Danner\n\n64) Danner: Attack G2N Danner\n\n65) Cerulean: Move R1 Wywun Highway\n\n66) Danner: Attack Y1N Danner\n\tDanner: I can&#39;t see the point.\n\n67) Cerulean: Trade B2 Y2 Jithree\n\n68) Danner: Attack Y2N Jithree\n\n69) Cerulean: Move R1 Highway Wywuntu\n\n70) Danner: Build Y2 Jithree\n\n71) Cerulean: Move R3 Wywuntu Cerulean\n\n72) Danner: Attack R1N Jithree\n\n73) Cerulean: Move R3 Cerulean Jiwun\n\n74) Danner: Sacrifice Y2 Danner\nDiscover R2 Jiwun Y2 Honeymaker\nMove G2 Danner Highway\n\n75) Cerulean: Sacrifice R1 Wywuntu\nAttack R1S Jithree\n\n76) Danner: Build Y1 Danner\n\n77) Cerulean: Build R1 Cerulean\n\n78) Danner: Sacrifice Y2 Jithree\nMove G1 Sun Jiwun\nMove G1 Jiwun Cerulean\n\n79) Cerulean: Sacrifice R1 Cerulean\nAttack G1S Cerulean\n\n80) Danner: Sacrifice Y2 Jithree\nMove G2 Highway Jiwun\nMove G2 Jiwun Cerulean\nCatastrophe Cerulean G\n\n81) Cerulean: Trade R2 G2 Cerulean\n\n82) Danner: Move B1 Wywun Cerulean\n\n83) Cerulean: Build Y2 Cerulean\n\n84) Danner: Move B1 Sun Cerulean\n\n85) Cerulean: Sacrifice R3 Jiwun\nAttack B1S Cerulean\nAttack B1S Cerulean\nPass\n\n86) Danner: Move B3 Highway Cerulean\nCatastrophe Cerulean B\n\n\tDanner: Thanks the game.\n\nHomeworlds Online (SDG# 11382)\nStarted: 2008.7.25, Ended: 2008.8.8\nParticipants: Jesse (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld B1 R3 G3\n\n3) Danner: Build G1 Danner\n\n4) Jesse: Build G1 Jesse\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Danner: Build G1 Danner\n\n8) Jesse: Build G1 Jesse\n\n9) Danner: Trade G1 R1 Danner\n\n10) Jesse: Trade G1 R1 Jesse\n\n11) Danner: Build R2 Danner\n\n12) Jesse: Build R2 Jesse\n\n13) Danner: Discover R1 Danner Y3 Sun\n\n14) Jesse: Discover R2 Jesse G2 One\n\n15) Danner: Sacrifice G3 Danner\nBuild R2 Sun\nBuild R3 Sun\nBuild R3 Danner\n\n16) Jesse: Build Y1 Jesse\n\n17) Danner: Move R3 Sun One\n\n18) Jesse: Sacrifice Y1 Jesse\nDiscover R2 One G3 Two\n\n19) Danner: Trade R2 G2 Danner\n\n20) Jesse: Build R2 Two\n\n21) Danner: Sacrifice Y1 Danner\nMove R3 One Two\n\n\tJesse: I hate to give up, but I can&#39;t see any realistic chance to get through this.\n\tDanner: Thanx the game.\n\nHomeworlds Online (SDG# 11381)\nStarted: 2008.7.25, Ended: 2008.8.12\nParticipants: Danner (S), MatrixFrog (N)\nWinner: Danner\n\n1) MatrixFrog: Homeworld B2 Y1 G3\n\n2) Danner: Homeworld R2 B1 G3\n\n3) MatrixFrog: Build G1 Matrixfrog\n\n4) Danner: Build G1 Danner\n\n5) MatrixFrog: Discover G1 Matrixfrog Y3 Bounce\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MatrixFrog: Build G1 Matrixfrog\n\n8) Danner: Build Y1 Danner\n\n9) MatrixFrog: Trade G1 B1 Matrixfrog\n\n10) Danner: Discover Y1 Danner G3 Earth\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) Danner: Build Y2 Danner\n\n13) MatrixFrog: Trade G1 R1 Matrixfrog\n\n14) Danner: Build Y2 Earth\n\n15) MatrixFrog: Build G1 Bounce\n\n16) Danner: Build Y2 Earth\n\n17) MatrixFrog: Build R1 Matrixfrog\n\n18) Danner: Build Y3 Danner\n\n19) MatrixFrog: Build B1 Matrixfrog\n\n20) Danner: Trade Y3 B3 Danner\n\n21) MatrixFrog: Move R1 Matrixfrog Earth\n\n22) Danner: Trade Y2 R2 Danner\n\n23) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild R1 Matrixfrog\nBuild R2 Earth\nBuild G1 Bounce\n\n24) Danner: Sacrifice R2 Danner\nAttack R1 Earth\nAttack R2 Earth\n\n25) MatrixFrog: Move G1 Bounce Matrixfrog\n\n26) Danner: Move Y2 Earth Matrixfrog\n\n27) MatrixFrog: Move R1 Matrixfrog Bounce\n\n28) Danner: Sacrifice R2 Earth\nAttack R1N Matrixfrog\nAttack B1N Matrixfrog\n\n29) MatrixFrog: Build R2 Bounce\n\n30) Danner: Sacrifice G3 Danner\nBuild Y2 Matrixfrog\nBuild Y3 Matrixfrog\nBuild B2 Matrixfrog\nCatastrophe Matrixfrog Y\nCatastrophe Matrixfrog B\n\n\tDanner: Thx the game\n\nHomeworlds Online (SDG# 11365)\nStarted: 2008.7.26, Ended: 2008.9.14\nParticipants: MadWuher (S), wmreed (N)\nWinner: MadWuher\n\n1) wmreed: Homeworld G2 B1 R3\n\n2) MadWuher: Homeworld B1 G3 B3 *\n\twmreed: Hello!\n\n3) wmreed: Build R1 Wmreed\n\n4) MadWuher: Build B1 Madwuher\n\n5) wmreed: Trade R3 Y3 Wmreed\n\n6) MadWuher: Trade B3 Y3 Madwuher\n\n7) wmreed: Build Y1 Wmreed\n\n\n8) MadWuher: Build B2 Madwuher\n\n9) wmreed: Trade Y1 G1 Wmreed\n\n10) MadWuher: Trade B2 R2 Madwuher\n\n11) wmreed: Build Y1 Wmreed\n\n\n12) MadWuher: Build B2 Madwuher\n\n13) wmreed: Trade Y3 B3 Wmreed\n\n\n14) MadWuher: Trade B2 Y2 Madwuher\n\n15) wmreed: Discover B3 Wmreed G3 Ruatha\n\n16) MadWuher: Build B2 Madwuher\n\n17) wmreed: Build B2 Ruatha\n\n18) MadWuher: Trade B2 Y2 Madwuher\n\n19) wmreed: Sacrifice Y1 Wmreed\nMove B3 Ruatha Wmreed\n\n20) MadWuher: Build B2 Madwuher\n\n21) wmreed: Build B2 Ruatha\n\n\n22) MadWuher: Sacrifice Y2 Madwuher\nDiscover B1 Madwuher G2 Camelot\nMove Y2 Madwuher Camelot\n\n23) wmreed: Trade B3 Y3 Wmreed\n\n24) MadWuher: Build B3 Camelot\n\n25) wmreed: Trade B2 Y2 Ruatha\n\n26) MadWuher: Trade B1 R1 Camelot\n\n27) wmreed: Build R1 Wmreed\n\n28) MadWuher: Build R2 Camelot\n\n29) wmreed: Move R1 Wmreed Ruatha\n\n\n30) MadWuher: Trade R1 G1 Camelot\n\n31) wmreed: Build B1 Ruatha\n\n32) MadWuher: Build Y1 Madwuher\n\n33) wmreed: Trade B2 R2 Ruatha\n\n34) MadWuher: Build B2 Camelot\n\n35) wmreed: Discover R2 Ruatha G2 Bendon\n\n36) MadWuher: Discover G1 Camelot Y3 Edora\n\n37) wmreed: Build B2 Ruatha\n\n38) MadWuher: Move B3 Camelot Edora\n\n39) wmreed: Move B1 Ruatha Bendon\n\twmreed: oops.\n\n40) MadWuher: Build B3 Camelot\n\n41) wmreed: Build B3 Bendon\n\n\n42) MadWuher: Sacrifice B2 Camelot\nTrade B2 Y2 Madwuher\nTrade Y1 G1 Madwuher\n\n43) wmreed: Trade B3 G3 Bendon\n\n44) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Madwuher Bendon\nMove G1 Edora Bendon\nCatastrophe Bendon G\n\n45) wmreed: Build Y1 Wmreed\n\n46) MadWuher: Build Y1 Madwuher\n\n47) wmreed: Discover Y1 Wmreed B3 Tillek\n\n48) MadWuher: Trade B3 G3 Edora\n\n49) wmreed: Build R1 Ruatha\n\n50) MadWuher: Build G1 Edora\n\n51) wmreed: Build R2 Wmreed\n\n52) MadWuher: Sacrifice G3 Edora\nBuild G1 Edora\nBuild R3 Camelot\nBuild R3 Madwuher\n\n53) wmreed: Move G1 Wmreed Tillek\n\n54) MadWuher: Move R3 Camelot Edora\n\n55) wmreed: Build G2 Tillek\n\n56) MadWuher: Build G3 Edora\n\n57) wmreed: Sacrifice Y2 Ruatha\nMove G1 Tillek Camelot\nMove G1 Camelot Edora\nCatastrophe Edora G\n\n58) MadWuher: Move B3 Camelot Tillek\n\n59) wmreed: Sacrifice G2 Tillek\nBuild Y1 Tillek\nBuild Y2 Wmreed\n\n60) MadWuher: Build Y2 Camelot\n\n61) wmreed: Move Y2 Wmreed Ruatha\n\n62) MadWuher: Sacrifice R2 Madwuher\nAttack Y1 Tillek\nAttack Y1 Tillek\n\n63) wmreed: Discover R1 Ruatha G2 Fort\n\n\n64) MadWuher: Trade B3 G3 Tillek\n\twmreed: hmmm.\n\n65) wmreed: Build B1 Ruatha\n\n66) MadWuher: Build G1 Tillek\n\n67) wmreed: Move B2 Ruatha Fort\n\n68) MadWuher: Sacrifice G3 Tillek\nBuild R2 Edora\nBuild R3 Camelot\nBuild G1 Tillek\n\n69) wmreed: Build B2 Fort\n\n\n70) MadWuher: Move R3 Edora Fort\n\n\twmreed: I feel like anything I&#39;m doing at this point is just prolonging the my inevitable loss.\n\tMadWuher: I will admit that letting me control the R3&#39;s and control the flow of much of the Yellow stack caused you some problems. I have a few means of making you submit, but they are not setup yet and may take a few turns. There are ways to disrupt my plans (and maybe thwart them) but I think I have you on the ropes.\n\twmreed: Would you prefer to end the game now, or play it out?\n\tMadWuher: It&#39;s up to you. Would you rather start another?\n\twmreed: let&#39;s start another. Are you willing to teach as you play?\n\twmreed: thanks for playing!\n\tMadWuher: Sure, I&#39;m happy to teach while we play. (I&#39;ll do my best)\n\nHomeworlds Online (SDG# 11384)\nStarted: 2008.7.27, Ended: 2008.8.27\nParticipants: Danner (S), MadWuher (N)\nWinner: Danner\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Danner: Homeworld R3 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Danner: Build G1 Danner\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MadWuher: Build G1 Madwuher\n\n8) Danner: Build G1 Danner\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) Danner: Trade G1 R1 Danner\n\n11) MadWuher: Build G1 Madwuher\n\n12) Danner: Build R1 Danner\n\n13) MadWuher: Build B1 Madwuher\n\n14) Danner: Discover R1 Danner Y1 Abydos\n\n15) MadWuher: Discover B1 Madwuher G3 Chulak\n\n16) Danner: Move R1 Abydos Chulak\n\n17) MadWuher: Sacrifice B1 Chulak\nTrade G1 B1 Madwuher\n\n18) Danner: Build R2 Danner\n\n19) MadWuher: Discover B1 Madwuher Y3 Earth\n\n20) Danner: Discover R2 Danner Y1 Abydos\n\n21) MadWuher: Build G1 Madwuher\n\n22) Danner: Sacrifice G3 Danner\nBuild R2 Abydos\nBuild R2 Abydos\nBuild R3 Danner\n\n23) MadWuher: Build B1 Madwuher\n\n24) Danner: Build R3 Chulak\n\n25) MadWuher: Discover B1 Madwuher G3 Atlantis\n\n26) Danner: Move R2 Abydos Earth\n\n27) MadWuher: Build Y2 Madwuher\n\n28) Danner: Attack B1N Earth\n\n29) MadWuher: Build Y2 Madwuher\n\n30) Danner: Move R2 Abydos Atlantis\n\n31) MadWuher: Sacrifice B1 Atlantis\nTrade Y2 G2 Madwuher\n\tMadWuher: Wow..... This is going nowhere fast for me.......\n\n32) Danner: Discover R2 Abydos Y3 Tollan\n\n33) MadWuher: Discover G2 Madwuher B3 Madrona\n\n34) Danner: Trade R1 G1 Danner\n\n35) MadWuher: Trade G1 R1 Madwuher\n\n36) Danner: Move R2 Earth Madwuher\n\n37) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Madwuher\n\n38) Danner: Build G1 Danner\n\tDanner: uh oh I forgot this...\n\n39) MadWuher: Move R2 Madwuher Madrona\n\n40) Danner: Build Y1 Danner\n\n41) MadWuher: Move Y1 Madwuher Madrona\n\n42) Danner: Sacrifice Y1 Danner\nDiscover R3 Chulak Y2 Tollana\n\n43) MadWuher: Build G1 Madwuher\n\n44) Danner: Move R3 Tollana Madrona\n\n45) MadWuher: Sacrifice Y1 Madrona\nMove R2 Madrona Madwuher\n\n46) Danner: Attack G2 Madrona\n\n47) MadWuher: Build Y1 Madwuher\n\n48) Danner: Build G2 Madrona\n\tMadWuher: I have to ask. Where did you pickup this 3-pip pyramid denying strategy? Did you lookup a past game from someone? If so, where might I find it. Any other strategies you might suggest looking up?\n\tDanner: As I remember, I have never examined archive (or ongoing) games to learn strategies :)\r\nI think I have seen Jesse or TwoShort using this strategy against me (using discovery to modify stash in order to alter ship building opportunities - I hope I used proper expressions :D)\n\n49) MadWuher: Discover G1 Madwuher B3 Aschen\n\tMadWuher: I have no clue what I can do from this point.\n\n50) Danner: Build G2 Danner\n\n51) MadWuher: Sacrifice Y2 Madwuher\nDiscover G1 Aschen B1 Kallana\nMove G1 Kallana Danner\nCatastrophe Danner G\n\n52) Danner: Build R1 Madrona\n\n53) MadWuher: Build G1 Madwuher\n\n54) Danner: Trade R3 Y3 Madrona\n\n55) MadWuher: Trade G1 Y1 Madwuher\n\tMadWuher: Yup. Here comes the pain.....\n\n56) Danner: Build R3 Madrona\n\n57) MadWuher: Build G1 Madwuher\n\tDanner: not yet. I need some more ships :)\n\n58) Danner: Sacrifice Y3 Madrona\nMove G2 Madrona Madwuher\nMove G2 Madrona Madwuher\nMove R3 Madrona Madwuher\nCatastrophe Madwuher G\n\n59) MadWuher: Trade B1 G1 Madwuher\n\tDanner: well, you have built what I needed\n\tMadWuher: Yup..... thought I&#39;d speed things up a bit\r\n\n\n60) Danner: Attack R2N Madwuher\n\n61) MadWuher: Build Y2 Madwuher\n\n62) Danner: Trade R2 Y2 Madwuher\nCatastrophe Madwuher Y\n\n63) MadWuher: Build G1 Madwuher\n\n64) Danner: Sacrifice R2 Tollan\nAttack G1N Madwuher\nAttack G1N Madwuher\n\tDanner: Thx the game\n\tMadWuher: Thank you for kickin my buttttttt. =)\n\tDanner: :D\r\nIf you want to play more with me, you can challenge me anytime\n\n\nHomeworlds Online (SDG# 11375)\nStarted: 2008.7.29, Ended: 2008.9.30\nParticipants: MikeYarrum (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n\nHomeworlds Online (SDG# 11387)\nStarted: 2008.8.1, Ended: 2008.9.19\nParticipants: nycavri (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 Y3 G3\n\n2) nycavri: Homeworld B1 Y2 G3\n\tnycavri: h b1 y2 g3\n\n3) MadWuher: Build G1 Madwuher\n\tnycavri: Doh!\n\n4) nycavri: Build G1 Nycavri\n\n5) MadWuher: Trade G1 B1 Madwuher\n\n6) nycavri: Discover G1 Nycavri B3 Fr94\n\n7) MadWuher: Build B1 Madwuher\n\n8) nycavri: Build G1 Fr94\n\n9) MadWuher: Discover B1 Madwuher Y1 Edora\n\n10) nycavri: Trade G1 Y1 Fr94\n\n11) MadWuher: Build B2 Madwuher\n\n12) nycavri: Build G1 Nycavri\n\n13) MadWuher: Trade B2 R2 Madwuher\n\n14) nycavri: Trade G1 R1 Nycavri\n\n15) MadWuher: Build G1 Madwuher\n\n16) nycavri: Build R1 Nycavri\n\n17) MadWuher: Move G1 Madwuher Edora\n\n18) nycavri: Discover Y1 Fr94 G1 Hl95\n\n19) MadWuher: Build G2 Madwuher\n\n20) nycavri: Build G2 Nycavri\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild G3 Edora\n\n22) nycavri: Trade G2 Y2 Nycavri\n\n23) MadWuher: Sacrifice G2 Madwuher\nBuild B2 Edora\nBuild B2 Madwuher\n\n24) nycavri: Sacrifice G3 Nycavri\nBuild Y1 Hl95\nBuild Y2 Hl95\nBuild Y3 Nycavri\n\n25) MadWuher: D B2 Edora Y3 Bologna\n\n26) nycavri: Sacrifice Y2 Nycavri\nMove Y1 Hl95 Madwuher\nMove Y1 Hl95 Madwuher\n\n27) MadWuher: Sacrifice G3 Edora\nBuild B3 Bologna\nBuild B3 Bologna\nBuild G2 Edora\n\n28) nycavri: Sacrifice G1 Fr94\nBuild Y2 Madwuher\nCatastrophe Madwuher Y\n\n29) MadWuher: Sacrifice B2 Madwuher\nTrade B2 Y2 Bologna\nTrade G2 R2 Edora\n\n30) nycavri: Trade Y3 G3 Nycavri\n\n31) MadWuher: Sacrifice Y2 Bologna\nMove B3 Bologna Nycavri\nMove B3 Bologna Nycavri\n\n32) nycavri: Build G1 Nycavri\n\n33) MadWuher: Sacrifice R2 Madwuher\nAttack G3 Nycavri\nAttack G1 Nycavri\n\n34) nycavri: Attack G1 Nycavri\n\n35) MadWuher: Sacrifice R2 Edora\nAttack R1 Nycavri\nAttack R1 Nycavri\n\n\tMadWuher: Are you up for another? Maybe an unrated game?\n\tnycavri: Thanks, but I keep timing out of games atm - apartment hunting.  Maybe when I get on top of my current crop . . .\n\tMadWuher: Good luck with the apartment hunting.\n\nHomeworlds Online (SDG# 11397)\nStarted: 2008.8.11, Ended: 2009.12.9\nParticipants: MikeYarrum (S), skybean (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11472)\nStarted: 2008.8.19, Ended: 2008.8.28\nParticipants: random56 (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) random56: Homeworld R1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) random56: Build G1 Random56\n\n5) MadWuher: Trade G1 R1 Madwuher\n\n6) random56: Trade G1 Y1 Random56\n\n7) MadWuher: Build R2 Madwuher\n\n8) random56: Build G1 Random56\n\n9) MadWuher: Build G1 Madwuher\n\n10) random56: Discover G1 Random56 B3 Alma\n\n11) MadWuher: Trade R2 Y2 Madwuher\n\n12) random56: Sacrifice G3 Random56\nBuild G1 Alma\nBuild G2 Alma\nBuild Y1 Random56\n\n13) MadWuher: Build R2 Madwuher\n\n14) random56: Trade G2 Y2 Alma\n\n15) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Madwuher Alma\nMove G3 Alma Random56\n\n16) random56: Move G1 Alma Random56\n\n17) MadWuher: Attack G1 Random56\n\n18) random56: Attack G1 Random56\n\n\n19) MadWuher: Sacrifice R2 Madwuher\nAttack G1 Random56\nAttack Y1 Random56\n\n20) random56: Attack G1 Random56\n\n21) MadWuher: Build R2 Madwuher\n\n22) random56: Build Y1 Random56\n\n23) MadWuher: Build Y2 Random56\nCatastrophe Random56 Y\n\n24) random56: Move Y2 Alma Random56\n\n25) MadWuher: Sacrifice R2 Madwuher\nAttack Y2 Random56\nAttack G1 Random56\n\n\trandom56: gg this was my first game in a while. i will do better next time\n\tMadWuher: Not to worry. Want to try again??\n\trandom56: shure\n\nHomeworlds Online (SDG# 11532)\nVariants: &quot;Hard time&quot;\nStarted: 2008.8.24, Ended: 2008.8.25\nParticipants: Danner (S), alexcobo (N)\nWinner: Danner\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) Danner: Homeworld R2 B1 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) Danner: Build G1 Danner\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Danner: Trade G1 Y1 Danner\n\n7) alexcobo: Trade Y1 B1 Alexcobo\n\n8) Danner: Build Y1 Danner\n\n9) alexcobo: Discover B1 Alexcobo G1 Geeone\n\n10) Danner: Discover Y1 Danner G3 Earth\n\n11) alexcobo: Build B1 Geeone\n\n12) Danner: Build Y2 Earth\n\n13) alexcobo: Build Y2 Alexcobo\n\n14) Danner: Sacrifice Y2 Earth\nMove Y1 Earth Geeone\nMove Y1 Geeone Alexcobo\nCatastrophe Alexcobo Y\n\tDanner: Thx the game\n\n\nHomeworlds Online (SDG# 11546)\nStarted: 2008.8.25, Ended: 2009.12.9\nParticipants: nilesdavid (S), elpepe (N)\nWinner: nilesdavid\n\n\nHomeworlds Online (SDG# 11470)\nStarted: 2008.8.27, Ended: 2008.9.18\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n2) MadWuher: Homeworld G1 B3 G3 *\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) MadWuher: Build G1 Madwuher\n\n5) MatrixFrog: Discover Y1 Matrixfrog G3 Apple\n\n6) MadWuher: Trade G3 Y3 Madwuher\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) MadWuher: Build G2 Madwuher\n\n9) MatrixFrog: Discover Y1 Apple G2 Pear\n\n10) MadWuher: Discover G2 Madwuher B2 Edora\n\n11) MatrixFrog: Build Y1 Pear\n\n12) MadWuher: B G2 Edora\n\n13) MatrixFrog: Build Y2 Matrixfrog\n\n14) MadWuher: Build G3 Edora\n\n15) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y1 Pear Madwuher\nMove Y1 Pear Madwuher\n\n16) MadWuher: Trade Y3 R3 Madwuher\n\n17) MatrixFrog: Move Y1 Madwuher Edora\n\n18) MadWuher: Attack Y1 Madwuher\n\n19) MatrixFrog: Build Y2 Matrixfrog\n\n20) MadWuher: Trade G2 R2 Edora\n\n21) MatrixFrog: Discover Y1 Edora G3 Efora\n\n22) MadWuher: Trade G2 Y2 Edora\n\n23) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n24) MadWuher: Build G2 Edora\n\n25) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n26) MadWuher: Sacrifice G3 Edora\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Edora\n\n27) MatrixFrog: Discover Y1 Efora B2 Pandora\n\n28) MadWuher: Discover G2 Edora B3 Bologna\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) MadWuher: Sacrifice G3 Edora\nBuild G3 Bologna\nBuild G3 Edora\nBuild G3 Bologna\n\n31) MatrixFrog: Build Y2 Matrixfrog\n\n32) MadWuher: Trade G3 Y3 Bologna\n\n33) MatrixFrog: Discover Y1 Matrixfrog G3 Scarcity\n\n34) MadWuher: Sacrifice G3 Bologna\nBuild G3 Bologna\nBuild Y2 Edora\nBuild Y3 Madwuher\n\n35) MatrixFrog: Build R1 Matrixfrog\n\n36) MadWuher: Sacrifice G3 Edora\nBuild G3 Bologna\nBuild R1 Edora\nBuild R1 Madwuher\n\n37) MatrixFrog: Move Y2 Matrixfrog Scarcity\n\n38) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Bologna Matrixfrog\nMove G3 Bologna Matrixfrog\nMove Y3 Bologna Matrixfrog\n\n39) MatrixFrog: Attack Y3 Matrixfrog\n\n40) MadWuher: Sacrifice R3 Madwuher\nAttack Y3 Matrixfrog\nAttack Y3 Matrixfrog\nAttack R2 Matrixfrog\n\n\tMadWuher: Up to another??? How about an unrated game?\n\nHomeworlds Online (SDG# 11427)\nStarted: 2008.8.29, Ended: 2008.9.5\nParticipants: random56 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Howdy\n\n2) random56: Homeworld G1 B3 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\n4) random56: Build G1 Random56\n\n5) TwoShort: Build G2 Twoshort\n\n6) random56: Trade G1 R1 Random56\n\n7) TwoShort: Trade G2 Y2 Twoshort\n\n8) random56: Build R1 Random56\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) random56: Build R2 Random56\n\n11) TwoShort: Build G1 Twoshort\n\n12) random56: Trade R1 Y1 Random56\n\n13) TwoShort: Build G2 Yolonda\n\n14) random56: Discover R2 Random56 Y2 Dixy\n\n15) TwoShort: Discover G1 Yolonda Y2 Yellonia\n\n16) random56: Move R2 Dixy Yolonda\n\n17) TwoShort: Discover G2 Yolonda Y2 Yonderboy\n\n18) random56: Move G3 Random56 Yonderboy\n\n19) TwoShort: Move G2 Yonderboy Random56\n\n20) random56: Move R1 Random56 Yonderboy\n\n21) TwoShort: Build G2 Random56\n\n22) random56: Build Y1 Random56\n\n23) TwoShort: Trade G2 R2 Random56\n\n24) random56: Move R2 Yolonda Twoshort\n\n25) TwoShort: Sacrifice R2 Random56\nAttack Y1S Random56\nAttack Y1S Random56\n\n\nHomeworlds Online (SDG# 11432)\nStarted: 2008.8.30, Ended: 2008.10.5\nParticipants: Danner (S), MadWuher (N)\nWinner: Danner\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) Danner: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\tDanner: Hello again :)\r\nGood luck!\r\n(Oh, I think you haven&#39;t answered my last PM. It was a few months ago :D)\n\n4) Danner: Build G1 Danner\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MadWuher: Build G1 Madwuher\n\n8) Danner: Build G1 Danner\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) Danner: Trade G1 B1 Danner\n\n11) MadWuher: Build B2 Madwuher\n\n12) Danner: Build B2 Danner\n\n13) MadWuher: Build G1 Madwuher\n\n14) Danner: Trade B2 R2 Danner\n\n15) MadWuher: Trade B2 R2 Madwuher\n\n16) Danner: Build B2 Danner\n\n17) MadWuher: Build B2 Madwuher\n\n18) Danner: Discover B1 Danner Y3 Sun\n\n19) MadWuher: Discover B1 Madwuher G2 Earth\n\n20) Danner: Build R1 Danner\n\n21) MadWuher: Discover B2 Madwuher Y2 Abydos\n\n22) Danner: Trade R2 G2 Danner\n\n23) MadWuher: Discover B2 Abydos Y3 Chulak\n\n24) Danner: Discover Y1 Danner B3 Tollan\n\n25) MadWuher: Build G1 Madwuher\n\n26) Danner: Build G1 Danner\n\n27) MadWuher: Discover G1 Madwuher Y2 Abydos\n\n28) Danner: Trade G1 Y1 Danner\n\n29) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Chulak\nBuild B3 Earth\nBuild Y2 Madwuher\n\n30) Danner: Discover B2 Danner G3 Tollana\n\n31) MadWuher: Move G1 Abydos Chulak\n\n32) Danner: Build Y2 Danner\n\n33) MadWuher: Move Y1 Madwuher Earth\n\n34) Danner: Sacrifice G2 Danner\nBuild Y2 Danner\nBuild Y3 Tollan\n\n35) MadWuher: Sacrifice Y2 Madwuher\nMove Y1 Earth Chulak\nMove Y1 Chulak Danner\nCatastrophe Danner Y\n\n36) Danner: Discover Y3 Tollan R2 Abydos\n\n37) MadWuher: Sacrifice B2 Chulak\nTrade B3 G3 Earth\nTrade G1 Y1 Madwuher\n\tMadWuher: I so realize I am going to get hurt for this. =P\n\n38) Danner: Move Y3 Abydos Madwuher\n\tDanner: I think it would have been better if you had moved your B3 to your homeworld.\n\tMadWuher: I have been totally behind on my thinking. I thought I&#39;d have one more turn before you&#39;d get to my homeworld. Just thinking if there is anything I can do to fix this.......\r\n\r\nNow I&#39;m just wondering what I can do to not make this timing mistake again.\n\tMadWuher: Still thinking.... sorry for the delay.\n\tDanner: No problem, feel free to continue thinking as long as you want :)\n\tMadWuher: Yeah, you&#39;re sitting here thinking &quot;there isn&#39;t anything he can possibly do to escape the inevitable&quot; while I&#39;m trying to think if there is any way to grasp victory from the arms of defeat (which I highly doubt).\n\tDanner: Stop reading my mind :D\n\tMadWuher: Yeah. I&#39;m not seeing anything....\n\n39) MadWuher: Sacrifice G3 Earth\nBuild Y1 Madwuher\nBuild Y2 Madwuher\nBuild G1 Chulak\nCatastrophe Madwuher Y\n\n40) Danner: Build R1 Danner\n\tDanner: Hm. Now you can destroy my Y3 at the cost of your big ship. But, if you had traded your B2 to G2, you would be able to do that without sacrificing your big ship...or am I wrong? This idea came to my mind only when I saw your move.\n\tMadWuher: yes, you&#39;re right.  I should have thought of that. I thought that the g3 was necessary. Boy, am I off my game.\n\n41) MadWuher: Discover G1 Chulak Y2 Madrona\n\n42) Danner: Trade R1 Y1 Danner\n\n43) MadWuher: Discover G1 Madrona B3 Atlantis\n\n44) Danner: Build B2 Tollana\n\n45) MadWuher: Sacrifice G1 Atlantis\nBuild B3 Earth\n\n46) Danner: Build Y1 Danner\n\n47) MadWuher: Trade B3 Y3 Earth\n\n48) Danner: Trade B2 Y2 Tollana\n\tDanner: Wow, great trick\n\n49) MadWuher: Build Y2 Earth\n\n50) Danner: Build Y2 Tollana\n\n51) MadWuher: Move Y3 Earth Madwuher\n\n52) Danner: Trade B1 G1 Sun\n\n53) MadWuher: Build B1 Chulak\n\n54) Danner: Sacrifice G1 Sun\nBuild Y3 Danner\n\n55) MadWuher: Build G1 Chulak\n\n56) Danner: Move Y3 Danner Chulak\n\n57) MadWuher: Move B2 Chulak Earth\n\n58) Danner: Build B2 Tollana\n\n59) MadWuher: Move B2 Earth Tollan\n\n60) Danner: Trade B2 R2 Tollana\n\n61) MadWuher: Move G1 Chulak Earth\n\n62) Danner: Move R1 Danner Chulak\n\tMadWuher: Nice one...\n\n63) MadWuher: Move G1 Earth Madwuher\n\n64) Danner: Attack G1N Chulak\n\n65) MadWuher: Discover B1 Chulak G2 Abydos\n\n66) Danner: Move Y3 Chulak Earth\n\n67) MadWuher: Move Y2 Earth Tollan\n\n68) Danner: Move R2 Tollana Abydos\n\n69) MadWuher: Build B2 Abydos\n\n70) Danner: Attack B2N Abydos\n\n71) MadWuher: Build B3 Abydos\n\tMadWuher: It seems like all I will be doing is running away.....\n\n72) Danner: Move B2 Tollana Abydos\nCatastrophe Abydos B\n\tDanner: Then I will keep chasing you :)\n\n73) MadWuher: Build B1 Earth\n\n74) Danner: Sacrifice R2 Abydos\nAttack B1N Earth\nAttack B1N Earth\n\n75) MadWuher: Discover B2 Tollan G2 Hanka\n\n76) Danner: Trade B1 R1 Earth\n\n77) MadWuher: Move R2 Madwuher Hanka\n\n78) Danner: Move Y3 Earth Tollan\n\tMadWuher: This is an uphill battle......\n\n79) MadWuher: Move Y2 Tollan Earth\n\n80) Danner: Move Y3 Tollan Earth\n\tMadWuher: Planet whose inhabitants and an SG team are wiped out by Nirrti using a virus, except for Cassandra.\r\nA very poignant name for a planet if I do say so myself. =)\n\tMadWuher: Poignant was the wrong word..... I meant to say &quot;a very fitting planet for me to discover.&quot; =)\n\n81) MadWuher: Move Y2 Earth Chulak\n\tDanner: :D\n\n82) Danner: Move Y3 Earth Chulak\n\n83) MadWuher: Move Y2 Chulak Earth\n\n84) Danner: Move Y3 Chulak Earth\n\n85) MadWuher: Move Y2 Earth Madwuher\n\n86) Danner: Move Y3 Earth Madwuher\n\n87) MadWuher: Attack Y3 Madwuher\n\tDanner: What to do now?\n\tMadWuher: I dunno, cry?? =P\n\n88) Danner: Sacrifice Y2 Tollana\nMove Y1 Tollan Earth\nMove Y1 Earth Madwuher\nCatastrophe Madwuher Y\n\n89) MadWuher: Trade B2 Y2 Hanka\n\n90) Danner: Build G1 Danner\n\n91) MadWuher: Build R2 Hanka\n\n92) Danner: Sacrifice G3 Danner\nBuild G2 Chulak\nBuild G3 Danner\nBuild G3 Chulak\n\tMadWuher: Yeah, I know what&#39;s coming.....\n\tDanner: Yeah, I know you know it :)\n\n93) MadWuher: Move R2 Hanka Madwuher\n\n94) Danner: Sacrifice G3 Chulak\nBuild G3 Chulak\nBuild R3 Chulak\nBuild R3 Earth\n\n95) MadWuher: Build R3 Hanka\n\n96) Danner: Sacrifice Y2 Tollana\nMove G3 Chulak Earth\nMove G3 Earth Madwuher\n\n97) MadWuher: Sacrifice Y2 Hanka\nMove R3 Hanka Madwuher\nMove R2 Hanka Madwuher\nCatastrophe Madwuher R\n\tMadWuher: Well, I think I&#39;m toast...... \r\nLets make this easy for you.... =)\n\n98) Danner: Sacrifice G3 Danner\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild G3 Danner\nCatastrophe Madwuher G\n\tDanner: oh, thx :)\n\n\tDanner: Thx the game. How about another one?\n\tMadWuher: why don&#39;t we run a few unrated ones at the same time and try out a few different strategies in each? Up to a few??\n\tDanner: Well, until 20th october I haven&#39;t got much time, and I haven&#39;t read the Homeworlds strategies yet. It would be better if we run that experimentals after I read that page.\n\tMadWuher: OK.... I&#39;ll catch up with you around the end of the month then. Talk to you later.\n\nHomeworlds Online (SDG# 11622)\nVariants: &quot;Hard time&quot;\nStarted: 2008.9.1, Ended: 2008.9.29\nParticipants: random56 (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) random56: Homeworld B3 G1 R3\n\n3) MadWuher: Build G1 Madwuher\n\n4) random56: Build R1 Random56\n\n5) MadWuher: Build G1 Madwuher\n\n6) random56: Trade R1 Y1 Random56\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) random56: Build Y1 Random56\n\n9) MadWuher: Discover G1 Madwuher B3 Edora\n\n10) random56: Build Y1 Random56\n\n11) MadWuher: Build Y2 Madwuher\n\n12) random56: Trade Y1 R1 Random56\n\n13) MadWuher: Build G2 Edora\n\n14) random56: Build R1 Random56\n\n15) MadWuher: Sacrifice G2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n16) random56: Discover R3 Random56 Y2 Nephi\n\n17) MadWuher: Trade Y3 R3 Madwuher\n\n18) random56: Build R2 Random56\n\n19) MadWuher: Sacrifice G2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n20) random56: Discover R1 Random56 Y2 Alma\n\n21) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n22) random56: Move R3 Nephi Bologna\n\n23) MadWuher: Sacrifice G2 Bologna\nBuild G2 Madwuher\nBuild G3 Edora\n\trandom56: move r3 Nephi bologna\n\n24) random56: Move R1 Alma Edora\n\n25) MadWuher: Trade G2 R2 Edora\n\n26) random56: Trade R2 G2 Random56\n\n27) MadWuher: Trade G1 Y1 Edora\n\n28) random56: Build G1 Random56\n\n29) MadWuher: Attack R1 Edora\n\n30) random56: Discover G1 Random56 Y2 Steve\n\n31) MadWuher: Sacrifice Y2 Madwuher\nDiscover G2 Madwuher G3 Yogurt\nDiscover G2 Madwuher G3 Raisin\n\n32) random56: Build R2 Random56\n\n33) MadWuher: Sacrifice G2 Raisin\nBuild G2 Edora\nBuild G3 Madwuher\n\n34) random56: Move R1 Random56 Steve\n\n35) MadWuher: Move G3 Edora Steve\n\n36) random56: Sacrifice G2 Random56\nBuild R2 Steve\nBuild R3 Steve\n\n37) MadWuher: Sacrifice R2 Edora\nAttack R3 Steve\nAttack R2 Steve\n\n38) random56: Move R3 Bologna Steve\nCatastrophe Steve R\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\nBuild Y2 Edora\n\n40) random56: Build Y2 Random56\n\n41) MadWuher: Move G3 Steve Random56\n\n\nHomeworlds Online (SDG# 11446)\nStarted: 2008.9.3, Ended: 2009.12.9\nParticipants: bassbum (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11436)\nVariants: &quot;Hard time&quot;\nStarted: 2008.9.7, Ended: 2008.10.7\nParticipants: Jesse (S), AnalogKid (N)\nWinner: Jesse\n\n1) AnalogKid: Homeworld B2 R1 G3\n\n2) Jesse: Homeworld B1 Y3 G3\n\tAnalogKid: Hi!\r\n\r\nThis is my first time playing on SDG (and my first Homeworlds game) so I am just learning how all of this works.  :)\n\tJesse: Hello.  Welcome to SDG, and I hope you enjoy Homeworlds.  It can be a difficult game to wrap your head around at first, so feel free to ask about anything that comes up.\n\n3) AnalogKid: Build G1 Analogkid\n\tAnalogKid: Thanks.  I&#39;ve been reading up on Homeworlds so I hope that I won&#39;t have too many questions about how to play. (Playing well is different issue ^_^ )\n\n4) Jesse: Build G1 Jesse\n\n\n5) AnalogKid: Trade G3 Y3 Analogkid\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) AnalogKid: Build G1 Analogkid\n\n8) Jesse: Build B1 Jesse\n\n9) AnalogKid: Discover G1 Analogkid B3 Aldebaran\n\n10) Jesse: Discover B1 Jesse G2 Pollux\n\n11) AnalogKid: Trade Y3 B3 Analogkid\n\n12) Jesse: Build B2 Pollux\n\n\n13) AnalogKid: Build B2 Analogkid\n\n14) Jesse: Build B3 Pollux\n\n15) AnalogKid: Trade G1 Y1 Analogkid\n\n16) Jesse: Trade B3 Y3 Pollux\n\n17) AnalogKid: Move B2 Analogkid Aldebaran\n\tJesse: I think you&#39;ll find that giving up your green there will make things difficult in the upcoming turns.  It&#39;s usually better to diversify when you have the chance.\n\n18) Jesse: Build B3 Pollux\n\n19) AnalogKid: Build G1 Aldebaran\n\tAnalogKid: I am in central Ohio and we are without electricity now and my laptop battery is almost gone so I will not be able to play for a few days ...\n\tJesse: I am also in central Ohio.  I hope your power is restored soon, if it is not already.\n\tAnalogKid: Hello, I&#39;m back now.  Sorry for the one week delay.  Power was out until Saturday and it then took a couple of days for things to return to normal.\n\n20) Jesse: Trade B3 Y3 Pollux\n\tAnalogKid: I see a little better now what you meant about giving up my green in my home system.  I was a little focused on issues of blue though ...\n\tJesse: Yeah, blue was awkward for you, which is why I rushed it.  You did the right thing, getting in.  You don&#39;t necessarily need a lot of blue to stop me from abusing it, so you would probably have been better off trading your B3 back to yellow, rather than your green.  Another possibility would be building another green first, and trading that one.  I&#39;d lean towards trading the B3, though, since you don&#39;t want to keep it blue in the long term anyway.\n\tJesse: t b3 y3 pollux\n\tJesse: Grr.  I hate when I do that.  XD\n\n21) AnalogKid: Move Y1 Analogkid Aldebaran\n\n22) Jesse: Discover B2 Pollux G3 Markab\n\n23) AnalogKid: Trade B3 G3 Analogkid\n\tJesse: Do you see the immediate threat I&#39;m making?\n\tAnalogKid: No -- I&#39;m not sure that I see any &quot;immediate threat&quot; but I can foresee a few possible problems 3-4 turns from now ...\n\n24) Jesse: Build B3 Pollux\n\tJesse: That was a good move, because I was threatening to destroy your large ship and half your home system.  With a Y3 sacrifice, I could make three moves: Move my B1 from Pollux to Markab, then move the B1 and B2 from Markab to your home system.  That would have left four blue pieces there, so I could call a catastrophe to send them all back to the global reserve.\n\n25) AnalogKid: Discover B2 Aldebaran G2 Altair\n\tAnalogKid: Well, that was lucky then because I thought it would take at least two turns for you to do that :)  And it would have ended the game unless I had moved another ship home.  I had no idea that you could move the same ship more than once in a turn -- it had never occurred to me.\n\n26) Jesse: Build B3 Markab\n\n27) AnalogKid: Move Y1 Aldebaran Pollux\n\tJesse: It&#39;s an easy thing for a beginner to overlook or not realize, which is why I&#39;m pointing it out.\n\tAnalogKid: Thanks :)\n\n28) Jesse: Trade Y3 R3 Pollux\n\n29) AnalogKid: Build Y1 Pollux\n\tJesse: I may not hold back much, but I do believe in helping new players with advice and second chances.  :)\n\n30) Jesse: Move Y3 Pollux Markab\n\n31) AnalogKid: Move Y1 Pollux Markab\n\n32) Jesse: Trade B2 R2 Markab\n\n33) AnalogKid: Move Y1 Pollux Markab\n\n34) Jesse: Move Y3 Markab Altair\n\n35) AnalogKid: Build B2 Altair\n\n36) Jesse: Sacrifice R3 Pollux\nAttack B2 Altair\nAttack B2 Altair\nAttack Y1 Markab\n\n37) AnalogKid: Move Y1 Markab Analogkid\n\tJesse: Sending in your little yellows to try to blow up my Y3 was a nice idea, but it didn&#39;t have much chance of working, and it left them vulnerable to capture when I got some red ships.  On the other hand, with your material disadvantage pretty much any course available to you is unlikely to help much.\n\tAnalogKid: Hello - sorry for the long delay!  BGF is now over so I should have more time now to play on SDG.\n\tAnalogKid: Well, I did not necessarily think that I would be successful but I was trying to disrupt a perceived threat.  Of course, I did not think my efforts would end in my being completely shut out of blue!  (BTW, I had a chance to play Homeworlds last night with another local player at BGF).\n\n38) Jesse: Sacrifice Y3 Altair\nMove B3 Pollux Markab\nMove B3 Markab Analogkid\nMove B3 Markab Analogkid\n\tJesse: Cool.  How&#39;d it go?\n\n39) AnalogKid: Attack B3S Analogkid\n\tAnalogKid: Well, I lost half of my homeworld very early in the game, but then both my opponent and I floundered around for awhile, uncertain of what to do.  Finally, I saw an opening, got lucky, and managed to destroy the only ship in the opposing homeworld.\n\n40) Jesse: Sacrifice R2 Markab\nAttack G3 Analogkid\nAttack B3 Analogkid\n\tJesse: Yeah, in the middle game it can be difficult for beginning players to figure out what they need to be doing.\n\n41) AnalogKid: Sacrifice G1 Aldebaran\nBuild Y1 Analogkid\n\n42) Jesse: Trade B3 R3 Analogkid\n\n\n43) AnalogKid: Trade Y1 G1 Analogkid\n\tAnalogKid: Well, looks like this is just about over ... thanks for the game ^_^\n\n44) Jesse: Sacrifice R3 Analogkid\nAttack G1 Analogkid\nAttack Y1 Analogkid\nPass\n\tJesse: My pleasure.  I hope it&#39;s been educational.\n\n\nHomeworlds Online (SDG# 11695)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.9.10, Ended: 2008.9.10\nParticipants: rikko (S), demerzel (N)\nWinner: rikko\n\n1) demerzel: Homeworld G3 B1 R3\n\n2) rikko: Homeworld G2 R1 B3\n\n3) demerzel: Build R1 Demerzel\n\n4) rikko: Build B1 Rikko\n\n5) demerzel: Trade R1 Y1 Demerzel\n\n6) rikko: Build B1 Rikko\n\n7) demerzel: Discover R3 Demerzel Y2 Dagobah\n\n8) rikko: Trade B1 Y1 Rikko\n\n9) demerzel: Discover R3 Dagobah Y3 Corusan\n\n10) rikko: Trade B1 R1 Rikko\n\n11) demerzel: Move R3 Corusan Rikko\n\n12) rikko: Attack R3 Rikko\n\n13) demerzel: Build Y1 Demerzel\n\n14) rikko: Discover B3 Rikko Y3 Dagobah\n\n15) demerzel: Build Y2 Demerzel\n\n16) rikko: Move R3 Rikko Dagobah\n\n17) demerzel: Trade Y2 R2 Demerzel\n\n18) rikko: Discover R3 Dagobah Y2 Corusan\n\n19) demerzel: Trade Y1 R1 Demerzel\n\n20) rikko: Move R1 Rikko Dagobah\n\n21) demerzel: Trade R1 G1 Demerzel\n\n22) rikko: Move B3 Dagobah Corusan\n\n23) demerzel: Move Y1 Demerzel Corusan\n\n24) rikko: Move R3 Corusan Demerzel\n\n25) demerzel: Build R1 Demerzel\n\n26) rikko: Attack R1N Demerzel\n\n27) demerzel: Attack R1 Demerzel\n\n28) rikko: Move B3 Corusan Demerzel\n\n29) demerzel: Move Y1 Corusan Dagobah\n\n30) rikko: Sacrifice R3 Demerzel\nAttack R1N Demerzel\nAttack R2N Demerzel\nAttack G1N Demerzel\n\n\nHomeworlds Online (SDG# 11644)\nStarted: 2008.9.13, Ended: 2008.9.16\nParticipants: ben (S), MikeYarrum (N)\nWinner: ben\n\n\nHomeworlds Online (SDG# 11715)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.9.15, Ended: 2008.9.30\nParticipants: wmreed (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B2 G3\n\twmreed: Currently, my favorite Homeworld is a blue-green combo.  I think it&#39;s best because it allows me to build and change no matter what else happens.  I&#39;ve lately been starting with a Y3 ship, to take advantage of an opponent&#39;s careless Bluebird mistake.  What are your thoughts on openings?\n\n2) wmreed: Homeworld B3 G2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) wmreed: Build Y1 Wmreed\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) wmreed: Build Y2 Wmreed\n\n\n7) MadWuher: Build G1 Madwuher\n\n8) wmreed: Trade Y1 G1 Wmreed\n\n9) MadWuher: Discover G1 Madwuher Y3 Edora\n\n10) wmreed: Discover Y2 Wmreed R1 Arthur\n\n11) MadWuher: Discover G1 Edora Y1 Bologna\n\n12) wmreed: Build Y2 Wmreed\n\n13) MadWuher: Move G1 Bologna Wmreed\n\n14) wmreed: Trade Y2 R2 Wmreed\n\n15) MadWuher: Build G1 Wmreed\nCatastrophe Wmreed G\n\n16) wmreed: Move Y2 Arthur Wmreed\n\n\n17) MadWuher: Trade Y1 R1 Madwuher\n\twmreed: nicely done.  how foolish  of me.\n\n18) wmreed: T Y2 G2 Wmreed\n\n19) MadWuher: Build G1 Madwuher\n\n20) wmreed: Build Y1 Wmreed\n\n\n21) MadWuher: Discover G1 Madwuher Y3 Edora\n\n\tMadWuher: Wow, I never realized how quickly the Hard Time variant sets in. I&#39;ve played quite a few hard time games and this is only the second (as I remember) that triggered hard time. \n\nHomeworlds Online (SDG# 11315)\nVariants: &quot;Sinister, Hard time&quot;\nStarted: 2008.9.15, Ended: 2008.10.20\nParticipants: alexcobo (S), smilingra (W), MadWuher (N), random56 (E)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) random56: Homeworld G1 B3 R3\n\n3) alexcobo: Homeworld G3 B2 Y3\n\trandom56: this is a long time comming\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MadWuher: Build G1 Madwuher\n\tsmilingra: sorry guys... just had my first baby and hadn&#39;t logged in recently. gl to you all\n\n6) random56: Build R1 Random56\n\n7) alexcobo: Build Y1 Alexcobo\n\n8) MadWuher: Trade G1 Y1 Madwuher\n\n9) random56: Build R1 Random56\n\n10) alexcobo: Trade Y1 R1 Alexcobo\n\n11) MadWuher: Build Y1 Madwuher\n\tMadWuher: Quick question: Do your accounts all organize this game in the &quot;opponents time is up&quot; section?\n\trandom56: \n\n12) random56: Trade R1 G1 Random56\n\n13) alexcobo: Build R1 Alexcobo\n\n14) MadWuher: Trade Y1 R1 Madwuher\n\n15) random56: Build G1 Random56\n\n16) alexcobo: Trade R1 B1 Alexcobo\n\n17) MadWuher: Build G1 Madwuher\n\n18) alexcobo: Discover R1 Alexcobo Y1 Waypoint\n\n19) MadWuher: Build G1 Madwuher\n\n20) alexcobo: Discover R1 Waypoint Y2 Wp\n\n21) MadWuher: Discover G1 Madwuher B3 Edora\n\n22) alexcobo: Move R1 Wp Random56\n\n23) MadWuher: Build G2 Edora\n\n24) alexcobo: Attack R1E Random56\n\n25) MadWuher: Build G2 Edora\n\n26) alexcobo: Attack G1E Random56\n\talexcobo: I am trying to attack the r1 ship at random56 system, but I get this message &quot;The R1 ship could not be found at random56 system&quot;\n\tMadWuher: Stars and Ships are referred to by their colour and size (eg. R1, Y3) with the sole exception of the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player&#39;s seat designation (eg. G2S, B1E). Systems are referred to by their given names and are case insensitive.\n\n27) MadWuher: Trade G2 Y2 Edora\n\talexcobo: Thank you for your help!\r\nI cancelled the call to Admin\n\n28) alexcobo: Attack G1E Random56\n\n29) MadWuher: Build G2 Edora\n\n30) alexcobo: Trade G1 Y1 Random56\n\n31) MadWuher: Trade G1 R1 Edora\n\n32) alexcobo: Trade Y3 R3 Alexcobo\n\n33) MadWuher: Build R2 Edora\n\n34) alexcobo: Build R2 Alexcobo\n\n35) MadWuher: Build R2 Madwuher\n\n36) alexcobo: Build Y1 Alexcobo\n\n37) MadWuher: Trade R2 Y2 Madwuher\n\n\n38) alexcobo: Discover R1 Random56 G2 Aldebaran\n\n39) MadWuher: Move R2 Edora Aldebaran\n\n40) alexcobo: Sacrifice Y1 Alexcobo\nDiscover R1 Aldebaran G1 Antares\n\n41) MadWuher: Build R2 Edora\n\n42) alexcobo: Build R2 Antares\n\n43) MadWuher: Trade R1 Y1 Edora\n\n44) alexcobo: Build Y1 Random56\n\n45) MadWuher: Trade Y1 B1 Edora\n\n46) alexcobo: Build Y1 Alexcobo\n\n47) MadWuher: Sacrifice Y1 Madwuher\nMove B1 Edora Aldebaran\n\n48) alexcobo: Discover R3 Alexcobo Y1 Waypoint\n\n49) MadWuher: Sacrifice G2 Edora\nBuild Y2 Edora\nBuild Y2 Madwuher\n\n50) alexcobo: Move R3 Waypoint Aldebaran\n\n51) MadWuher: Sacrifice G2 Edora\nBuild R1 Aldebaran\nBuild R2 Aldebaran\nCatastrophe Aldebaran R\n\n52) alexcobo: Build B1 Alexcobo\n\n53) MadWuher: Sacrifice Y2 Edora\nMove B1 Aldebaran Antares\nMove B1 Antares Alexcobo\nCatastrophe Alexcobo B\n\n54) alexcobo: Trade G1 B1 Random56\n\n55) MadWuher: Move G3 Madwuher Alexcobo\n\n56) alexcobo: Build R1 Alexcobo\n\n57) MadWuher: Build G1 Alexcobo\n\n58) alexcobo: Build Y1 Alexcobo\n\n59) MadWuher: Sacrifice G3 Alexcobo\nBuild G1 Alexcobo\nBuild G2 Alexcobo\nBuild G2 Madwuher\nCatastrophe Alexcobo G\n\n\nHomeworlds Online (SDG# 11769)\nVariants: &quot;Hard time&quot;\nStarted: 2008.9.23, Ended: 2008.10.1\nParticipants: alexcobo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) alexcobo: Homeworld G2 B3 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) alexcobo: Trade Y1 B1 Alexcobo\n\n7) MadWuher: Build G1 Madwuher\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) MadWuher: Trade G1 R1 Madwuher\n\n10) alexcobo: Discover B1 Alexcobo G1 Scorpia\n\n11) MadWuher: Build G1 Madwuher\n\n12) alexcobo: Build B1 Scorpia\n\n13) MadWuher: Build G1 Madwuher\n\n14) alexcobo: Build B1 Scorpia\n\n15) MadWuher: Discover G1 Madwuher B3 Edora\n\n16) alexcobo: Trade B1 Y1 Scorpia\n\n17) MadWuher: Build G2 Edora\n\n18) alexcobo: Build Y2 Scorpia\n\n19) MadWuher: Sacrifice G2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n20) alexcobo: Build Y2 Scorpia\n\n21) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n22) alexcobo: Trade Y2 R2 Scorpia\n\n23) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Edora\nBuild G3 Bologna\n\n24) alexcobo: Build Y2 Scorpia\n\n25) MadWuher: Trade G3 Y3 Edora\n\n26) alexcobo: Build Y2 Alexcobo\n\n27) MadWuher: Discover G2 Bologna R1 Camelot\n\n28) alexcobo: Build R2 Scorpia\n\n29) MadWuher: Sacrifice G3 Bologna\nBuild G3 Camelot\nBuild G3 Edora\nBuild Y3 Madwuher\n\n30) alexcobo: Build B1 Scorpia\n\n31) MadWuher: Sacrifice Y3 Madwuher\nMove Y3 Edora Camelot\nMove Y3 Camelot Alexcobo\nMove G3 Camelot Alexcobo\nCatastrophe Alexcobo Y\n\n\nHomeworlds Online (SDG# 11780)\nVariants: &quot;Hard time&quot;\nStarted: 2008.9.23, Ended: 2008.12.11\nParticipants: wyons (S), mneme (N)\nWinner: wyons\n\n1) mneme: Homeworld R1 B2 G3\n\twyons: Hi there and goodness- you bring a lot of spectators with you!\n\n2) wyons: Homeworld B1 R3 G3\n\tmneme: So it seems.  I&#39;m not quite sure where they came from -- maybe my matches against twoshort?  (almost beat him last time, too)\n\tmneme: (hmm.  Actually, are you sure?  Don&#39;t see any right now)\n\n3) mneme: Build G1 Mneme\n\twyons: yep, my display is showing 10 spectators...\n\tmneme: ah, it is now.  w3rd; didn&#39;t see them before.\n\n4) wyons: Build G1 Wyons\n\n5) mneme: Trade G1 R1 Mneme\n\n6) wyons: Trade G1 R1 Wyons\n\n7) mneme: Build R2 Mneme\n\n8) wyons: Build R2 Wyons\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) wyons: Trade R2 Y2 Wyons\n\n11) mneme: Build R2 Mneme\n\n12) wyons: Build R2 Wyons\n\n13) mneme: Discover R2 Mneme G3 Bootiful\n\n14) wyons: Discover R2 Wyons G2 Chillies\n\n15) mneme: Discover R1 Mneme Y3 Poet\n\n16) wyons: Trade R1 B1 Wyons\n\n17) mneme: Build Y1 Mneme\n\n18) wyons: Build B1 Wyons\n\n19) mneme: Trade Y2 B2 Mneme\n\n20) wyons: Discover B1 Wyons B2 Trueblues\n\n21) mneme: Move B2 Mneme Bootiful\n\n22) wyons: Build B3 Wyons\n\n23) mneme: Build B3 Bootiful\n\n24) wyons: Move B1 Wyons Chillies\n\n25) mneme: Trade B2 Y2 Bootiful\n\n26) wyons: Build B2 Chillies\n\n27) mneme: Discover Y1 Mneme B3 Holdover\n\n28) wyons: Trade B3 Y3 Wyons\n\n29) mneme: Build Y1 Bootiful\n\n30) wyons: Build B3 Chillies\n\n31) mneme: Move B3 Bootiful Chillies\nCatastrophe Chillies B\n\n32) wyons: Move Y3 Wyons Chillies\n\n33) mneme: Move Y1 Bootiful Mneme\n\tmneme: bah.  I was better off making you make that move.  \n\n34) wyons: Build Y1 Wyons\n\twyons: hmm yes, I think you are probably right. But there is still everything to play for.\n\n35) mneme: Sacrifice G3 Mneme\nBuild Y2 Holdover\nBuild Y3 Mneme\nBuild R1 Bootiful\n\n36) wyons: Move Y3 Chillies Bootiful\n\n37) mneme: Sacrifice Y2 Bootiful\nMove R1 Bootiful Trueblues\nDiscover R2 Bootiful Y2 Desert\n\n38) wyons: Sacrifice B1 Trueblues\nTrade Y2 R2 Wyons\n\n39) mneme: Trade R1 G1 Trueblues\n\n40) wyons: Build Y2 Wyons\n\n41) mneme: Trade Y2 G2 Holdover\n\n42) wyons: Build Y2 Bootiful\n\n43) mneme: Discover Y1 Mneme R3 Haze\n\n44) wyons: Trade R2 G2 Wyons\n\n45) mneme: Build G1 Trueblues\n\n46) wyons: Discover G2 Wyons B2 Neverbeseen\n\n47) mneme: Trade G1 B1 Trueblues\n\n48) wyons: Trade Y1 B1 Wyons\n\n49) mneme: Build Y1 Holdover\n\n50) wyons: Build G1 Wyons\n\n51) mneme: Trade G1 R1 Trueblues\n\n52) wyons: Trade G3 R3 Wyons\n\n53) mneme: Sacrifice Y1 Haze\nMove R1 Trueblues Wyons\n\n54) wyons: Build Y1 Bootiful\n\n55) mneme: Trade Y3 G3 Mneme\n\n56) wyons: Trade R3 Y3 Wyons\n\twyons: I&#39;m enjoying this. You are a tough nut.\n\tmneme: Thanks.  It&#39;s a good game.\r\nI do try not to make too many mistakes.\n\n57) mneme: Sacrifice G2 Holdover\nBuild R2 Wyons\nBuild R3 Desert\n\n58) wyons: Build R3 Chillies\n\n59) mneme: Move Y1 Holdover Mneme\n\n60) wyons: Move Y1 Bootiful Chillies\n\n61) mneme: Attack B1 Wyons\n\n62) wyons: Sacrifice R2 Chillies\nAttack R2N Wyons\nAttack B1N Wyons\n\n63) mneme: Move R2 Desert Wyons\nCatastrophe Wyons R\n\n64) wyons: Trade Y2 R2 Wyons\n\n65) mneme: Build Y2 Mneme\n\n66) wyons: Move B1 Wyons Bootiful\n\n67) mneme: Sacrifice Y1 Mneme\nDiscover B1 Trueblues G3 Pretty\n\n68) wyons: Move R3 Chillies Pretty\n\twyons: that was your turn to put me in check!\n\n69) mneme: Sacrifice Y1 Holdover\nDiscover B1 Pretty G1 Giggle\n\tmneme: pretty much.\n\n70) wyons: Sacrifice Y1 Chillies\nMove R3 Pretty Giggle\n\tmneme: bah.  You&#39;re too good a player for me to try that trick and hope you won&#39;t see the escape.\n\n71) mneme: Sacrifice B1 Giggle\nTrade R1 B1 Poet\n\twyons: this is very close, I think.\n\n72) wyons: Move Y2 Bootiful Giggle\n\tmneme: Indeed.\n\n73) mneme: Build G1 Mneme\n\n74) wyons: Build G2 Wyons\n\n75) mneme: Build Y1 Mneme\n\n76) wyons: Build Y1 Bootiful\n\n77) mneme: Discover Y2 Mneme G3 Emerald\n\n78) wyons: Build Y1 Giggle\n\n79) mneme: Move G1 Mneme Emerald\n\n80) wyons: Build G2 Neverbeseen\n\n81) mneme: Move G1 Emerald Mneme\n\n82) wyons: Sacrifice G2 Neverbeseen\nBuild R1 Giggle\nBuild R1 Wyons\n\n83) mneme: Move G1 Mneme Poet\n\n84) wyons: Build G2 Neverbeseen\n\n85) mneme: Move G1 Poet Desert\n\n86) wyons: Sacrifice Y2 Giggle\nMove R3 Giggle Emerald\nMove R2 Wyons Poet\n\n87) mneme: Sacrifice Y2 Emerald\nMove B1 Poet Desert\nPass\n\n88) wyons: Sacrifice G2 Neverbeseen\nBuild Y2 Giggle\nBuild Y2 Giggle\n\n89) mneme: Build G2 Mneme\n\n90) wyons: Sacrifice Y3 Bootiful\nMove Y1 Bootiful Desert\nMove Y1 Giggle Desert\nMove Y2 Giggle Desert\nCatastrophe Desert Yellow\n\n91) mneme: Trade G2 B2 Mneme\n\n92) wyons: Build B1 Bootiful\n\n93) mneme: Discover B2 Mneme Y3 Knife\n\twyons: that should at least churn things up a bit. I think I have been playing more like a boar constrictor than a cobra....\n\tmneme: Don&#39;t sell yourself short -- I got nothing here.  But I can hope you&#39;ll blunder.\r\n\n\n94) wyons: Build B3 Bootiful\n\n95) mneme: Build G1 Mneme\n\twyons: and of course a blunder is well possible.\n\n96) wyons: Sacrifice Y2 Giggle\nMove R3 Emerald Mneme\nMove B3 Bootiful Mneme\n\n\tmneme: good game\n\twyons: oh it was a super game - I dont mind admitting that I totted up hours looking at it. You also taught me a bit- particularly the value of g2s. And I thought you stemmed off the blue monopoly attack masterfully. At the end of course you were stuck with a fork between developing blue or red and elected blue- I think developing red would also not have worked at that stage (because of what I could then do with blue). Thanks very much though, I really enjoyed it!\n\tmneme: I&#39;m glad.  The endgame was a bit painful (yay, walking wounded), but yeah -- it was superb.\r\n\r\nI love g2s, yeah -- they let you threaten larges without saccing your own larges -- which does -so- many things, even aside from, you know, the ability to get more larges.\r\n\n\nHomeworlds Online (SDG# 11819)\nVariants: &quot;Hard time&quot;\nStarted: 2008.9.26, Ended: 2008.10.29\nParticipants: Keith (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Keith: Homeworld Y2 B3 G3\n\tDanner: Hi! Good luck!\n\tKeith: Thank you. May you do your best.\n\n3) Danner: Build G1 Danner\n\n4) Keith: Build G1 Keith\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Keith: Trade G1 Y1 Keith\n\n7) Danner: Build G1 Danner\n\n8) Keith: Build G1 Keith\n\n9) Danner: Trade G1 R1 Danner\n\n10) Keith: Trade G1 R1 Keith\n\n11) Danner: Build R2 Danner\n\n12) Keith: Build R2 Keith\n\n13) Danner: Discover R2 Danner Y3 Sun\n\n14) Keith: Build G1 Keith\n\n15) Danner: Build G1 Danner\n\n16) Keith: Discover G1 Keith Y1 Kiro\n\n17) Danner: Build Y2 Danner\n\n18) Keith: Move R2 Keith Kiro\n\n19) Danner: Discover Y1 Danner G3 Earth\n\n20) Keith: Move R2 Kiro Earth\n\n21) Danner: Sacrifice G3 Danner\nBuild Y2 Earth\nBuild Y3 Earth\nBuild Y3 Danner\n\n22) Keith: Attack Y2 Earth\n\tKeith: Oh my.  I knew my rating no longer relfected my Homeworlds ability.  I have just been too inactive.  However, I thought I would still be able to give you more of a challenge than this.\n\n23) Danner: Sacrifice R2 Sun\nAttack R2 Earth\nAttack Y2 Earth\n\n24) Keith: Discover Y1 Keith B1 Dimm\n\tDanner: If you are interested, I can give you a link where Homeworlds strategies can be found, so you can regain your abilities. (In fact, I haven&#39;t read them due to lack of time, but I&#39;m going to do so)\n\tKeith: I would like to have the link.  I have read what I could find on strategy.  The area i am primarily falling short in from being out of practice is not being able to see 4+ moves ahead anymore.\n\n25) Danner: Move Y3 Earth Dimm\n\tDanner: http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\r\nIt&#39;s from MadWuher.\n\n\tKeith: Thanks for the link.  I am too far gone here.  By the way I evaluate material you have about a 3x material advantage and are about to make significant gains.\r\n\r\nIf I decide to reinvest in Homeworlds I will come looking for a rematch.\n\tDanner: Thanks for the game. You can challenge me anytime.\n\nHomeworlds Online (SDG# 11745)\nStarted: 2008.10.3, Ended: 2008.10.29\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n2) MadWuher: Homeworld R1 B3 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) MadWuher: Build G1 Madwuher\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) MatrixFrog: Discover Y1 Matrixfrog G3 Time\n\n8) MadWuher: Build Y2 Madwuher\n\n9) MatrixFrog: Build Y2 Time\n\n10) MadWuher: Build G1 Madwuher\n\n11) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n12) MadWuher: Discover G1 Madwuher B2 Edora\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) MadWuher: Move Y2 Madwuher Edora\n\n15) MatrixFrog: Build B1 Matrixfrog\n\n16) MadWuher: Build Y2 Madwuher\n\n17) MatrixFrog: Trade B1 R1 Matrixfrog\n\n18) MadWuher: Build Y3 Edora\n\n19) MatrixFrog: Build B1 Matrixfrog\n\n20) MadWuher: Trade Y1 R1 Madwuher\n\n21) MatrixFrog: Trade B1 G1 Matrixfrog\n\n22) MadWuher: Build G2 Madwuher\n\n23) MatrixFrog: Discover Y2 Time G2 Space\n\n24) MadWuher: Discover G1 Edora Y3 Bologna\n\n25) MatrixFrog: Build B1 Matrixfrog\n\n26) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G3 Madwuher\nBuild Y1 Madwuher\n\n27) MatrixFrog: Discover G1 Matrixfrog G3 Dreams\n\n28) MadWuher: Move R1 Madwuher Edora\n\n29) MatrixFrog: Move Y1 Time Space\n\n30) MadWuher: Sacrifice Y2 Edora\nMove G2 Bologna Edora\nDiscover G2 Edora G3 Camelot\n\n31) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove Y1 Space Madwuher\nMove Y2 Space Madwuher\nDiscover G1 Dreams Y2 Cheese\nCatastrophe Madwuher Y\n\n32) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Camelot\nBuild G3 Bologna\nBuild G3 Madwuher\n\n33) MatrixFrog: Move G1 Cheese Camelot\nCatastrophe Camelot G\n\n34) MadWuher: Move G3 Bologna Matrixfrog\n\n35) MatrixFrog: Move B1 Matrixfrog Bologna\n\n36) MadWuher: Sacrifice R1 Edora\nAttack R1 Matrixfrog\n\n\tMadWuher: Thanks for the game. Want to play another???\n\tMatrixFrog: To be honest... not really\n\nHomeworlds Online (SDG# 11707)\nStarted: 2008.10.4, Ended: 2009.10.13\nParticipants: MikeYarrum (S), Nupanick (N)\nWinner: Nupanick\n\n1) Nupanick: Homeworld G3 B1 Y3\n\n\tNupanick: Yeah... You start lots of games.\n\nHomeworlds Online (SDG# 11474)\nStarted: 2008.10.6, Ended: 2008.11.6\nParticipants: MadWuher (S), hasse (N)\nWinner: MadWuher\n\n1) hasse: Homeworld B1 G3 Y3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) hasse: Build Y1 Hasse\n\n4) MadWuher: Build G1 Madwuher\n\n5) hasse: Discover Y3 Hasse G2 Qwerty\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) hasse: Build Y1 Hasse\n\n8) MadWuher: Build Y2 Madwuher\n\n9) hasse: Trade Y1 R1 Hasse\n\n10) MadWuher: Build G1 Madwuher\n\n11) hasse: Build R1 Hasse\n\n12) MadWuher: Discover Y2 Madwuher B3 Edora\n\n13) hasse: Move R1 Hasse Qwerty\n\n14) MadWuher: Move G1 Madwuher Edora\n\n15) hasse: Move Y3 Qwerty Edora\n\n16) MadWuher: Discover Y2 Edora B2 Bologna\n\n17) hasse: Build Y1 Hasse\n\n18) MadWuher: Build Y2 Madwuher\n\n19) hasse: Move Y1 Hasse Qwerty\n\n20) MadWuher: Build Y2 Madwuher\n\n21) hasse: Move Y3 Edora Madwuher\nCatastrophe Madwuher Yellow\n\n22) MadWuher: Build G1 Madwuher\n\n23) hasse: Build Y1 Qwerty\n\n24) MadWuher: Build G1 Edora\n\n25) hasse: Move Y1 Qwerty Edora\n\n26) MadWuher: Build G2 Madwuher\n\n27) hasse: Move R1 Qwerty Edora\n\n28) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\nBuild Y2 Bologna\n\n29) hasse: Attack G1 Edora\n\n30) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\nCatastrophe Edora G\n\n31) hasse: Build Y2 Qwerty\n\n32) MadWuher: Move Y2 Bologna Hasse\n\n33) hasse: Build R2 Hasse\n\n34) MadWuher: Sacrifice G3 Madwuher\nBuild Y3 Bologna\nBuild Y3 Hasse\nBuild Y3 Hasse\nCatastrophe Hasse Y\n\n35) hasse: Move Y2 Qwerty Edora\n\n36) MadWuher: Trade Y2 R2 Bologna\n\n37) hasse: Trade Y2 G2 Edora\n\n38) MadWuher: Move Y3 Bologna Hasse\n\n39) hasse: Trade R1 Y1 Hasse\n\n40) MadWuher: Sacrifice R2 Bologna\nAttack R2 Hasse\nAttack Y1 Hasse\n\n\tMadWuher: Hasse, I&#39;d recommend not letting your size 3 ship out of your home system. You should always keep it home (and have a red ship elsewhere) so you can secure your homeworld. By moving it out (and by me destroying your size 3 ship), it made it possible for me to take over your home planet (while you are left trying to get back up to a size 3 ship). Do you want to try again?\n\nHomeworlds Online (SDG# 11582)\nStarted: 2008.10.7, Ended: 2008.10.26\nParticipants: MadWuher (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MadWuher: Homeworld B1 R2 G3\n\tTwoShort: Howdy\n\tMadWuher: Hey there. It&#39;s been a while.\n\n3) TwoShort: Build G1 Twoshort\n\n4) MadWuher: Build G1 Madwuher\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) TwoShort: Build G1 Twoshort\n\n8) MadWuher: Build G1 Madwuher\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) MadWuher: Discover G1 Madwuher Y3 Edora\n\n11) TwoShort: Build Y1 Twoshort\n\n12) MadWuher: Build Y2 Madwuher\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) MadWuher: Discover Y1 Madwuher G3 Bologna\n\n15) TwoShort: Build G1 Twoshort\n\n16) MadWuher: Build G2 Madwuher\n\n\n17) TwoShort: Discover G1 Yolonda Y3 Yak\n\n18) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Madwuher\nBuild Y2 Bologna\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n20) MadWuher: Sacrifice G1 Edora\nBuild Y3 Madwuher\n\n21) TwoShort: Discover Y1 Grogar G3 Grody\n\n22) MadWuher: Discover G2 Madwuher B3 Edora\n\n23) TwoShort: Sacrifice G1 Yak\nBuild Y3 Grody\n\n24) MadWuher: Move Y3 Madwuher Edora\n\n25) TwoShort: Trade G1 R1 Twoshort\n\n26) MadWuher: Build G1 Edora\n\n27) TwoShort: Sacrifice Y2 Grogar\nDiscover Y3 Grody R1 Gunrule\nMove Y3 Gunrule Edora\n\n28) MadWuher: Build Y2 Edora\n\n29) TwoShort: Trade Y3 R3 Edora\n\n30) MadWuher: Sacrifice Y2 Edora\nDiscover Y3 Edora R2 Camelot\nMove G2 Edora Camelot\n\n31) TwoShort: Trade Y1 B1 Twoshort\n\n32) MadWuher: Sacrifice G1 Edora\nBuild Y1 Madwuher\n\n33) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Grody\n\n34) MadWuher: Trade Y2 B2 Madwuher\n\n35) TwoShort: Trade Y2 R2 Twoshort\n\n36) MadWuher: Build Y2 Camelot\n\n37) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Grody Madwuher\nMove R3 Edora Madwuher\nPass\n\n38) MadWuher: Sacrifice Y2 Camelot\nMove Y1 Bologna Madwuher\nMove Y2 Bologna Madwuher\n\n39) TwoShort: Sacrifice R2 Twoshort\nAttack G3S Madwuher\nAttack Y2S Madwuher\n\tTwoShort: I think that&#39;s checkmate; thanks for the game.  You had me really worried for a while there.\n\tMadWuher: If I might ask, where did I make my first bonehead move?\r\nI see that you like to move ships to planets of size 3 right away (and of course it puts the pressure on me). Any comments or hints as to when you came up with your strategy here?\n\tMadWuher: Since it&#39;s game. Want to go for a big bang? Suppose we fill up my system with as many ships as possible (I think the max is 16, but I digress) and do one giant catastrophe. Up for it?\n\n40) MadWuher: Sacrifice G2 Camelot\nBuild B1 Madwuher\nBuild B2 Madwuher\n\tTwoShort: Eh... I&#39;m not that intrigued by a big catastrophe; but I&#39;ll always rehash strategy :)\r\n\r\nI didn&#39;t come up with this specific strategy until two moves ago when I took the R2; but I basically always try to get more big stuff in range of moving in than you can take in one turn, and get a sacable R2 in the backfield; and also some ships of the color of the other guys stars and a bunch of big yellow.  I just try to push whatever threats I can.  So as far as where you went wrong, it&#39;s where I was able to switch from making the moves you forced me to, to making ones that forced you to do things.  \r\n  You were doing well when I took the r1: it was because I couldn&#39;t figure out how to stop you from getting more 3 points than me.  According to the &quot;Gun Rule&quot; (if the other guy draws a gun, draw your gun), you should have taken a red yourself, which would have thrown you off your grow pace only slightly, but it was the best I could do.  When you didn&#39;t take the red, I was able to jump on the offensive and force the action a few turns.  Once you got your ships out of there to Camelot though, you were back in control: poised to sacrifice your G2 to take the remaining y2 &amp; y3, which would have given you a commanding lead in 3s and in yellow.  So I flipped the y1 to blue mainly to put it back in the stash and force you to use the g3 if you wanted all that yellow, which would have been more painful, but you probably should have done it.  At the least, you should not have taken the y1 there. Letting me take the big Ys is probably the move I&#39;d say decided the game.  Obviously you didn&#39;t see the threat represented by my taking the r2, but by that point the defense options would have been pretty drastic and probably just delayed the inevitable. \r\n\r\nHmmm, did I mention a willingness to yack on about Homeworlds strategy?\n\n41) TwoShort: Sacrifice G3 Madwuher\nBuild R1 Madwuher\nBuild R2 Madwuher\nPass\nCatastrophe Madwuher Blue\nCatastrophe Madwuher Yellow\nCatastrophe Madwuher Red\n\tMadWuher: Time for a quick death....... and bow out gracefully.\n\tMadWuher: RUNNNNN!!!!!!\n\tMadWuher: ARGH!!!!! I am trying to go out either in a blaze of glory, or just by running away, but it won&#39;t allow me to leave the system undefended. =(\r\n\r\nOh well, guess you get to take me out in style....\n\n\tTwoShort: Thanks for the game!\n\tMadWuher: Anytime..... Still trying to figure out the multitude of strategies that people use. If I might ask, how many moves ahead do you typically plan out. Another few questions, since you are the highest rated player here, do you find yourself using any similar game ending moves against your opponents?\n\tTwoShort: Hmmm, I don&#39;t really plan ahead in the sense of a strategy I&#39;m going to follow; I&#39;ll re-evaluate that each turn.  As far as thinking ahead the results of a particular move, for the critical ones I&#39;ll set it up, make my move, and look through the responses I see, playing out the most obvious chain of moves.  But generally I don&#39;t think you need to look at much more than a couple moves ahead.  In most cases, a Homeworlds player has so much power to affect the board that purely tactical advantages are short lived;  If I&#39;m trading material for position, I want to be pretty sure I see a payoff that gets me back to a material advantage in fairly short order.\r\n  As far as ending moves... My basic strategy is to threaten to blow up stars or move in and sacrifice red so they&#39;ll be forced to spend moves dealing with the threats and I can take more pieces.  If that works you eventually get enough of an advantage that they can&#39;t stop everything.  But at least as often, they don&#39;t notice that I&#39;m forcing them to do something particular or be destroyed, and they do something else.  That seems to most often be leaving themselves open for me to move in more big pieces than they can take in a turn while I have a big red in my backfield.\r\n  But really, the actual game-ending sequence is usually academic; it&#39;s just a matter of what turns out to work for the guy in control of the game, which is generally the guy with more 3 pointers. \n\nHomeworlds Online (SDG# 11893)\nStarted: 2008.10.10, Ended: 2008.10.24\nParticipants: shadowfirebird (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) shadowfirebird: Homeworld Y3 B2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\n4) shadowfirebird: Build G1 Shadowfirebird\n\tshadowfirebird: Hi there.  What is it about Homeworlds that people either seem to love it or hate it?  I&#39;ve got a bunch of gamer friends, but none of them will play :(\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) shadowfirebird: Trade G1 B1 Shadowfirebird\n\n7) TwoShort: Build G1 Twoshort\n\n8) shadowfirebird: Build G1 Shadowfirebird\n\tTwoShort: Hmmm, not sure... I too have a bunch of gamer friends who aren&#39;t that into pure abstract strategy games.  I don&#39;t suppose you&#39;re in Colorado?\n\tshadowfirebird: Unfortunately, no -- Manchester, UK!\n\n9) TwoShort: Build Y1 Twoshort\n\n10) shadowfirebird: Build B1 Shadowfirebird\n\n11) TwoShort: Trade G1 B1 Twoshort\n\n12) shadowfirebird: Trade B1 G1 Shadowfirebird\n\n13) TwoShort: Build G1 Twoshort\n\n14) shadowfirebird: Discover B1 Shadowfirebird Y1 Frogstarb\n\n15) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n16) shadowfirebird: Move G1 Shadowfirebird Frogstarb\n\tshadowfirebird: Sorry.  Very rude of me.  I&#39;ll try not to do that in future.  It&#39;s not as if I don&#39;t have two weeks to move or anything!\n\n17) TwoShort: Build Y2 Grogar\n\n18) shadowfirebird: Build G2 Frogstarb\n\tTwoShort: Actually, I don&#39;t mind at all.  I myself periodically notice something bad about a move immediately after I make it, and I&#39;d like to feel free to hit undo in those situations.  It will only let you hit it once per move; and just naturally you don&#39;t wind up doing it except right after making a move, so the chances of the other guy putting much time into considering the wrong position are inherently small.  So anyway, don&#39;t worry about it, and be advised that I won&#39;t. :)\n\n19) TwoShort: Discover Y2 Grogar B1 Bluestar\n\tshadowfirebird: Cool.\n\n20) shadowfirebird: Trade G2 B2 Frogstarb\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n22) shadowfirebird: Move B1 Frogstarb Shadowfirebird\n\n23) TwoShort: Trade Y3 G3 Twoshort\n\tshadowfirebird: Gaah.  I think I&#39;m outclassed  :)\n\n24) shadowfirebird: Sacrifice G3 Shadowfirebird\nBuild B3 Frogstarb\nBuild B3 Frogstarb\nBuild B3 Shadowfirebird\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\nBuild G2 Twoshort\n\tshadowfirebird: Either I&#39;ve just made the smartest move of my life or the dumbest.  \n\n26) shadowfirebird: Sacrifice B2 Frogstarb\nTrade B3 G3 Frogstarb\nTrade B3 R3 Shadowfirebird\n\n27) TwoShort: Trade Y2 B2 Bluestar\n\n28) shadowfirebird: Move R3 Shadowfirebird Bluestar\n\n29) TwoShort: Sacrifice Y2 Bluestar\nMove B2 Bluestar Shadowfirebird\nMove Y3 Bluestar Shadowfirebird\n\n30) shadowfirebird: Build B3 Shadowfirebird\nCatastrophe Shadowfirebird B\n\n31) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Shadowfirebird\nBuild Y2 Shadowfirebird\nCatastrophe Shadowfirebird Yellow\n\n\tTwoShort: Yeah, the yellow monopoly is pretty devastaing.   Thanks for the game!\n\tshadowfirebird: Any time!\n\nHomeworlds Online (SDG# 11864)\nStarted: 2008.10.10, Ended: 2009.2.11\nParticipants: MikeYarrum (S), shadowfirebird (N)\nWinner: shadowfirebird\n\n1) shadowfirebird: Homeworld G3 B1 Y3\n\n\tshadowfirebird: Hi!  I&#39;m afraid I&#39;m unlikely to be much of a challenge... Frankly it&#39;s just nice to be playing Homeworlds -- I can&#39;t persuade anyone else here to play!\n\tshadowfirebird: I&#39;m new to the site and clicked on a challenge only to find that MikeYarrum hasn&#39;t been active for 103 days.\r\nIs there any way you can remove his standing challenges from the challenge page?\n\tAaron: I am very sorry for the delayed response, shadow.  Things have been a little crazy over here.  I will suspend his standing challenges.  Thanks, and welcome!\n\nHomeworlds Online (SDG# 11781)\nStarted: 2008.10.22, Ended: 2009.3.3\nParticipants: smilingra (S), MadWuher (W), alexcobo (N), shadowfirebird (E)\nWinner: MadWuher\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) shadowfirebird: Homeworld B2 Y1 G3\n\n3) smilingra: Homeworld R3 B2 Y3 *\n\tshadowfirebird: Hi all!\n\n4) MadWuher: Homeworld R1 B3 G3\n\tsmilingra: Welcome!  I&#39;ve seem to have had problems in my last two games with not taking my turn in a timely manner (due to very extenuating circumstances); hope to respond quickly and have a fun game!\n\n5) alexcobo: Build Y1 Alexcobo\n\tMadWuher: Glad to see we got a game going. =)\n\n6) shadowfirebird: Build G1 Shadowfirebird\n\n7) smilingra: Trade Y3 G3 Smilingra\n\tshadowfirebird: I&#39;ve just played out my first 3 person game in RL and I couldn&#39;t believe how *long* it took.  Or how complicated it was!\n\tsmilingra: Be prepared for a month or two of some delightful decision-making!\n\n8) MadWuher: Build G1 Madwuher\n\tsmilingra: grrr... wasted a whole move there by being dumb with the setup!  It&#39;s true that I needed green and blue tech; what was I thinking?\n\n9) alexcobo: Trade Y1 R1 Alexcobo\n\tMadWuher: Woo hoo...... Month of fun? Here we go......\n\n10) shadowfirebird: Trade G1 B1 Shadowfirebird\n\n11) smilingra: Build G1 Smilingra\n\n12) MadWuher: Trade G1 Y1 Madwuher\n\tshadowfirebird: Hmm.  Am I missing something or is there no way to send conspiratorial notes to other players?\n\n13) alexcobo: Build Y1 Alexcobo\n\n14) shadowfirebird: Build G1 Shadowfirebird\n\n15) smilingra: Build G1 Smilingra\n\n16) MadWuher: Build G1 Madwuher\n\n17) alexcobo: Trade Y1 G1 Alexcobo\n\n18) shadowfirebird: Trade G1 Y1 Shadowfirebird\n\n19) smilingra: Trade G1 Y1 Smilingra\n\n20) MadWuher: Trade G1 B1 Madwuher\n\n21) alexcobo: Build R1 Alexcobo\n\n22) shadowfirebird: Build G1 Shadowfirebird\n\n23) smilingra: Discover G1 Smilingra B1 Alpha\n\n24) MadWuher: Build G1 Madwuher\n\n25) alexcobo: Move R1 Alexcobo Alpha\n\n26) shadowfirebird: Build B1 Shadowfirebird\n\n27) smilingra: Build G1 Smilingra\n\n28) MadWuher: Discover G1 Madwuher B2 Beta\n\n29) alexcobo: Attack G1S Alpha\n\n30) shadowfirebird: Build G2 Shadowfirebird\n\tshadowfirebird: build g2 shadowfirebird\n\n31) smilingra: Trade G1 R1 Smilingra\n\tshadowfirebird: Huh.  Not enough sleep, obviously.\n\n32) MadWuher: Move B1 Madwuher Beta\n\n33) alexcobo: Build Y1 Alexcobo\n\n34) shadowfirebird: Discover G2 Shadowfirebird B3 Formica\n\tMadWuher: I guess I cannot blame hitting the UNDO button on lack of sleep. Will &quot;my kid grabbed a hold of the mouse&quot; do?\n\n35) smilingra: Build Y2 Smilingra\n\n36) MadWuher: Build Y2 Madwuher\n\n37) alexcobo: Move Y1 Alexcobo Alpha\n\n38) shadowfirebird: Build Y2 Shadowfirebird\n\n39) smilingra: Move Y2 Smilingra Alpha\n\n40) MadWuher: Trade Y2 R2 Madwuher\n\n41) alexcobo: Build Y2 Alexcobo\n\tMadWuher: shadowfirebird, I&#39;m so tempted to create a blue catastrophe in your home system and leave you open to a one system jump from the other two players homeworlds. I&#39;ll wait a day and see if anything else comes to mind (ie, you ask me not to, if the others want to start a bloodbath right away, etc...) \n\talexcobo: Blood! Blood! Blood! Blood! Blood!\n\tshadowfirebird: Well, of course I&#39;m going to ask you not to. :)\r\nI would also suggest that at this stage of the game it would leave you with no 2-point pieces and make you vulnerable to attacks from other others later.  (Which may be why Alex is screaming for blood.  Or maybe he does that all the time, I don&#39;t know.)\r\n\r\n\r\n\n\tshadowfirebird: You could also build another y2.  Only Smilinggra and I have y2s at the moment, and neither of us have (another) yellow piece out of their home system, so that should be safe; it would put you ahead in the piece-gathering part of the game.\r\nBut, of course, you should do what you think is best...\n\tMadWuher: alexcobo? Any input? =D\n\n42) shadowfirebird: Sacrifice Y1 Shadowfirebird\nMove B1 Shadowfirebird Formica\n\tMadWuher: Though it would be fun to start the blood early, I figure, if we&#39;re going to enjoy the game, I better put together a more devious long term plan (Just you wait....... You&#39;ll get yours...... heh heh)\n\tshadowfirebird: Figure I will, if I&#39;m going to make mistakes like that...\n\talexcobo: I really do not think so far ahead when I play, so I have no devious scheme in mind yet.\r\nAnd yes: I always scream for blood (specialy when I know it will not be mine) &gt;:&not;)\n\n43) smilingra: Sacrifice R1 Smilingra\nAttack R1N Alpha\n\n44) MadWuher: Move R2 Madwuher Beta\n\tshadowfirebird: Thus removing temptation and slowing the run on y2s at one go...\n\tsmilingra: Blood!  Blood!  (sound of crickets chirping)\r\nCrap! I knew I should have logged in earlier...\n\n45) alexcobo: Sacrifice R1 Alexcobo\nAttack R1S Alpha\n\n46) shadowfirebird: Trade G1 R1 Shadowfirebird\n\n47) smilingra: Trade Y2 R2 Alpha\n\n48) MadWuher: Build G1 Madwuher\n\tshadowfirebird: Goodness! Such violence!  :)\r\n\n\n49) alexcobo: Trade Y2 B2 Alexcobo\n\tsmilingra: And it&#39;s only just begun... :)\n\n50) shadowfirebird: Build G1 Formica\n\tMadWuher: And here I thought we were playing for fun. =)\n\n51) smilingra: Attack G1N Alpha\n\n52) MadWuher: Build G2 Beta\n\tshadowfirebird: Well, we Shadowfirebirdians are a peaceful people.  Sarcastic, but peaceful...\n\n53) alexcobo: Attack G1S Alpha\n\n54) shadowfirebird: Trade G2 R2 Formica\n\n55) smilingra: Attack R1N Alpha\n\n56) MadWuher: Sacrifice G2 Beta\nBuild G2 Beta\nBuild R1 Beta\n\n57) alexcobo: Sacrifice Y1 Alpha\nDiscover G1 Alpha B3 Alba\n\n58) shadowfirebird: Build G2 Shadowfirebird\n\tshadowfirebird: You know, I&#39;m not sure it should have let you do that, strictly speaking.  After you sacrificed the G2 you didn&#39;t have any green ships in beta.\n\tshadowfirebird: Oh wait, forget I said anything so dumb.  Yes you did.\n\talexcobo: I know this will put me in a weak position... but I always scream for blood...\n\talexcobo: Duh! Well... It would have left me in an even weaker position if I could pull it off... :-(\n\n59) smilingra: Build G2 Smilingra\n\n60) MadWuher: Trade R1 Y1 Beta\n\tshadowfirebird: The SHadowfirebirdianians welcome their new neighbours with open arms and weapons ports -- which is a sign of friendship, of course...\n\n61) alexcobo: Build G2 Alba\n\n62) shadowfirebird: Sacrifice Y2 Shadowfirebird\nMove B1 Shadowfirebird Alba\nMove G2 Shadowfirebird Alba\n\n63) smilingra: Build Y1 Smilingra\n\n64) MadWuher: Discover G2 Beta Y3 Gamma\n\tshadowfirebird: The shadowfirebirdian embassy would like to apologise for this unfortunate navigational error.  Be assured we will rectify the situation as soon as possible.\n\n65) alexcobo: Build Y2 Alexcobo\n\n66) shadowfirebird: Trade G2 Y2 Alba\n\n67) smilingra: Move Y1 Smilingra Alpha\n\n68) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Beta\nBuild G2 Gamma\nBuild G3 Madwuher\n\n69) alexcobo: Trade G1 R1 Alba\n\n70) shadowfirebird: Sacrifice R1 Shadowfirebird\nAttack G2N Alba\n\n71) smilingra: Build Y2 Smilingra\n\n72) MadWuher: Build Y2 Madwuher\n\n73) alexcobo: Attack B1E Alba\n\n74) shadowfirebird: Move G2 Alba Shadowfirebird\n\n75) smilingra: Move R2 Alpha Gamma\n\n76) MadWuher: Sacrifice R2 Beta\nAttack R2S Gamma\nPass\n\tshadowfirebird: ::sigh:: so many wasted moves...\n\n77) alexcobo: Discover Y2 Alexcobo G1 Green\n\n78) shadowfirebird: Build G3 Formica\n\tMadWuher: What is this intrusion upon my turf? For this, you will be punished. So says the harbinger of DOOM!!!\n\n79) smilingra: Trade Y2 R2 Smilingra\n\n80) MadWuher: Move B1 Beta Gamma\n\tshadowfirebird: Thanks for the freebie, Alex...\n\tsmilingra: uh, we meant nothing by that... got off-course, or something...\n\n81) alexcobo: Build Y2 Green\n\n82) shadowfirebird: Trade G2 R2 Shadowfirebird\n\n83) smilingra: Move R2 Smilingra Alpha\n\n84) MadWuher: Discover G2 Beta Y3 Delta\n\tshadowfirebird: first things first...\n\n85) alexcobo: Build Y2 Alexcobo\n\n86) shadowfirebird: Sacrifice G1 Formica\nBuild Y3 Alba\n\n87) smilingra: Build Y3 Smilingra\n\n88) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Delta\nBuild G2 Beta\nBuild G3 Madwuher\n\n89) alexcobo: Sacrifice Y2 Alexcobo\nMove Y2 Green Alba\nMove Y2 Green Alba\nCatastrophe Alba Y\n\tshadowfirebird: Ta again Alex ;)\n\n90) shadowfirebird: Trade R2 Y2 Formica\n\n91) smilingra: Build G1 Smilingra\n\n92) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Gamma\nBuild Y2 Beta\n\talexcobo: No strategy! No technique! No plan! Just being anoying... :-)\n\n93) alexcobo: Build Y2 Alexcobo\n\n94) shadowfirebird: Build Y2 Formica\n\n95) smilingra: Move G2 Smilingra Alpha\n\n96) MadWuher: Discover G2 Beta Y3 Juniper\n\n97) alexcobo: Trade B2 R2 Alexcobo\n\n98) shadowfirebird: Move Y2 Formica Shadowfirebird\n\n99) smilingra: Sacrifice Y3 Smilingra\nMove G1 Smilingra Alpha\nMove G1 Alpha Alexcobo\nMove G2 Alpha Alexcobo\nCatastrophe Alexcobo G\n\n100) MadWuher: Discover Y2 Madwuher B2 Jessica\n\n101) alexcobo: Discover Y2 Alexcobo G3 G3\n\n102) shadowfirebird: Build Y3 Formica\n\tsmilingra: had to shake things up a bit...\n\n103) smilingra: Move R2 Alpha G3\n\n104) MadWuher: Sacrifice G2 Juniper\nBuild Y3 Jessica\nBuild G1 Beta\n\n105) alexcobo: Trade B1 G1 Alba\n\n106) shadowfirebird: Build R1 Shadowfirebird\n\n107) smilingra: Attack Y2N G3\n\n108) MadWuher: Move R1 Gamma Beta\n\n109) alexcobo: Build G2 Alba\n\n110) shadowfirebird: Sacrifice Y2 Shadowfirebird\nMove Y3 Formica Shadowfirebird\nMove Y3 Shadowfirebird Alba\n\n111) smilingra: Discover R2 G3 Y2 Epsilon\n\n112) MadWuher: Discover G1 Beta R3 Talbot\n\n113) alexcobo: Sacrifice G2 Alba\nBuild R2 Alba\nBuild R3 Alba\n\n114) shadowfirebird: Sacrifice R2 Shadowfirebird\nAttack R3N Alba\nAttack R2N Alba\n\n115) smilingra: Move R1 Alpha Epsilon\n\n116) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Beta\nBuild G2 Talbot\nBuild G3 Madwuher\n\n117) alexcobo: Build R2 Alba\nCatastrophe Alba R\n\n118) shadowfirebird: Build R1 Shadowfirebird\n\n119) smilingra: Move R2 Epsilon Delta\n\n120) MadWuher: Sacrifice R2 Gamma\nAttack R2S Delta\nPass\n\n121) alexcobo: Sacrifice G1 Alba\nBuild R2 Alexcobo\n\n122) shadowfirebird: Build G1 Shadowfirebird\n\n123) smilingra: Trade Y1 B1 Alpha\n\n124) MadWuher: D G2 Beta B3 Magna\n\n125) alexcobo: Move R2 Alexcobo Gamma\n\talexcobo: Mommy, why do all the other kids have more ships than I do? :&#39;-(\n\tshadowfirebird: ::grin:: my personal theory?  This only *looks* like a space combat game.\n\n126) shadowfirebird: Sacrifice Y2 Formica\nMove Y3 Alba Shadowfirebird\nMove Y3 Shadowfirebird Delta\n\n127) smilingra: Build Y1 Smilingra\n\tsmilingra: can someone blow something else up??\n\n128) MadWuher: Sacrifice Y2 Beta\nMove G1 Talbot Shadowfirebird\nMove G1 Delta Shadowfirebird\nCatastrophe Shadowfirebird G\n\n129) alexcobo: Attack G2W Gamma\n\n130) shadowfirebird: Sacrifice R1 Shadowfirebird\nAttack R2W Delta\n\n131) smilingra: Build G1 Smilingra\n\n132) MadWuher: Sacrifice Y3 Jessica\nMove G2 Delta Shadowfirebird\nMove Y1 Beta Delta\nMove Y2 Jessica Delta\nCatastrophe Delta Y\n\n133) alexcobo: Attack G2W Gamma\n\n134) shadowfirebird: Trade B1 Y1 Formica\n\tshadowfirebird: That was interesting.  I guess you can afford to do that, Mad&#39;, since you have both the positional and the piece advantage on me...  still, you have your own problems...\n\n135) smilingra: Build Y2 G3\n\tsmilingra: now THAT&#39;s what I&#39;m talking about!  Nice work, shadow and Mad!\n\n136) MadWuher: Trade G2 B2 Shadowfirebird\n\tMadWuher: had to do something eh??\n\n137) alexcobo: Attack B1W Gamma\n\tMadWuher: Now that the new year has begun, I figure I might as well have a bit o&#39; fun before I go back to work. =)\n\tshadowfirebird: Nice.  Should have seen that.  You&#39;ve got me, I think...\n\tshadowfirebird: I guess I wasn&#39;t expecting you to spend so many resources on me!\n\n138) shadowfirebird: Move G3 Formica Shadowfirebird\n\n139) smilingra: Sacrifice Y2 G3\nMove G1 Smilingra Alpha\nMove Y1 Smilingra Alpha\n\tshadowfirebird: Well, here it is.  Are you going to sacrifice your last r1 to finish me off (and perhaps leave yourself vulnerable to North and South)?  Or not?\n\n140) MadWuher: Sacrifice G2 Talbot\nBuild B1 Shadowfirebird\nBuild B1 Shadowfirebird\nCatastrophe Shadowfirebird B\n\tsmilingra: If he does, I&#39;ll miss your chattiness, shadow.  And maybe he might spare you?\n\n141) alexcobo: Move R2 Gamma Beta\n\tMadWuher: I figure, since alexcobo is down to a single planet system, why not try to do the same to everybody else. (I&#39;m looking at you next smilingra) =D\n\n142) shadowfirebird: Build R1 Shadowfirebird\n\n143) smilingra: Discover B1 Alpha G2 Delta\n\tshadowfirebird: ::grins and bows:: Thank you kindly...\n\n144) MadWuher: Sacrifice G2 Magna\nBuild R2 Beta\nBuild Y2 Madwuher\n\n145) alexcobo: Attack G1W Beta\n\tMadWuher: All right. Time to regroup, find smilingra&#39;s weaknesses, and start picking him apart. &lt;insert evil laugh here&gt;\n\n146) shadowfirebird: Move R1 Shadowfirebird Beta\nCatastrophe Beta R\n\n147) smilingra: Build Y2 Smilingra\n\n148) MadWuher: Discover Y2 Madwuher G2 Aleph-not\n\n149) alexcobo: Move G2 Gamma Alexcobo\n\n150) shadowfirebird: Build G1 Shadowfirebird\n\n151) smilingra: Build Y2 G3\n\n152) MadWuher: Build Y3 Aleph-not\n\tshadowfirebird: Oops!\n\n153) alexcobo: Build Y3 Alexcobo\n\n154) shadowfirebird: Move G1 Shadowfirebird Formica\n\n155) smilingra: Build Y3 Alpha\n\n156) MadWuher: Trade G1 R1 Madwuher\n\n157) alexcobo: Move Y3 Alexcobo G3\n\n158) shadowfirebird: Build R1 Shadowfirebird\n\n159) smilingra: Sacrifice Y2 Smilingra\nMove Y2 G3 Delta\nMove Y2 G3 Delta\n\n160) MadWuher: Move R1 Madwuher Aleph-not\n\n161) alexcobo: Build Y2 G3\n\n162) shadowfirebird: Move R1 Shadowfirebird Formica\n\n163) smilingra: Build G1 Alpha\n\n164) MadWuher: Build R2 Aleph-not\n\n165) alexcobo: Build R2 Alexcobo\n\n166) shadowfirebird: Build R2 Shadowfirebird\n\n167) smilingra: Move G1 Alpha Epsilon\n\n168) MadWuher: Build G1 Madwuher\n\n169) alexcobo: Build G2 Gamma\n\n170) shadowfirebird: Build G3 Formica\n\n171) smilingra: Build B1 Delta\n\n172) MadWuher: Discover R2 Aleph-not B1 Sliced-ham\n\n173) alexcobo: Move Y3 G3 Delta\n\n174) shadowfirebird: Discover G1 Formica B2 Fintlewoddlewix\n\n175) smilingra: Sacrifice Y2 Delta\nMove B1 Delta Madwuher\nMove B1 Delta Madwuher\n\n176) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Sliced-ham\nBuild R3 Aleph-not\n\n177) alexcobo: Sacrifice R2 Alexcobo\nAttack Y2S Delta\nPass\n\n178) shadowfirebird: Build Y2 Formica\n\n179) smilingra: Sacrifice G1 Alpha\nBuild B2 Madwuher\nCatastrophe Madwuher B\n\n180) MadWuher: Sacrifice Y2 Aleph-not\nMove R2 Sliced-ham Smilingra\nMove R2 Sliced-ham Smilingra\n\n181) alexcobo: Sacrifice Y2 Delta\nMove R2 Alexcobo Alpha\nMove R2 Alpha Smilingra\nCatastrophe Smilingra R\n\n182) shadowfirebird: Move R2 Shadowfirebird Fintlewoddlewix\n\tMadWuher: Woo-hoo. Looks like we&#39;re all going to be in the same boat soon enough. =)\n\n183) smilingra: Build Y2 Smilingra\n\n184) MadWuher: Build Y2 Madwuher\n\n185) alexcobo: Trade G2 R2 Gamma\n\n186) shadowfirebird: Build G1 Formica\n\n187) smilingra: Build G2 Epsilon\n\n188) MadWuher: Discover Y2 Madwuher B3 Boo-hoo\n\n189) alexcobo: Build R2 Gamma\n\n190) shadowfirebird: Move Y2 Formica Fintlewoddlewix\n\n191) smilingra: Build R2 Epsilon\n\n192) MadWuher: Move R3 Aleph-not Boo-hoo\n\n193) alexcobo: Move B1 Gamma Delta\n\n194) shadowfirebird: Sacrifice G3 Formica\nBuild R2 Shadowfirebird\nBuild R3 Formica\nBuild R3 Fintlewoddlewix\n\n195) smilingra: Build G3 Smilingra\n\n196) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Aleph-not\nBuild R3 Boo-hoo\n\n197) alexcobo: Build B1 Delta\n\n198) shadowfirebird: Trade R2 B2 Fintlewoddlewix\n\n199) smilingra: Sacrifice Y3 Alpha\nMove G3 Smilingra Shadowfirebird\nMove G2 Epsilon Shadowfirebird\nMove G1 Epsilon Shadowfirebird\nCatastrophe Shadowfirebird G\n\n200) MadWuher: Build Y3 Madwuher\n\tshadowfirebird: Sorry about the wait.  Hope that was worth it...\n\n201) alexcobo: Sacrifice Y2 G3\nMove R2 Gamma Shadowfirebird\nMove R2 Gamma Shadowfirebird\nCatastrophe Shadowfirebird R\n\n202) smilingra: Build G1 Smilingra\n\n203) MadWuher: Move R3 Boo-hoo Fintlewoddlewix\n\n204) alexcobo: Trade G2 R2 Alexcobo\n\n205) smilingra: Trade Y1 R1 Smilingra\n\tsmilingra: Had to shake things up a bit... we needed to get some pieces back in the supply!\n\tshadowfirebird: Wow.  I would never have guessed that you would do that.\n\n206) MadWuher: Sacrifice R3 Aleph-not\nAttack R3E Fintlewoddlewix\nAttack B2E Fintlewoddlewix\nAttack Y2E Fintlewoddlewix\n\n207) alexcobo: Build G2 Gamma\n\talexcobo: Sorry. But someone had to go first...\n\n208) smilingra: Trade Y1 B1 Alpha\n\tsmilingra: Sorry, shadowfirebird.  But you had so many ships...\n\n209) MadWuher: Move R3 Fintlewoddlewix Gamma\n\n210) alexcobo: Sacrifice Y3 Delta\nMove G2 Gamma Madwuher\nMove G2 Gamma Madwuher\nPass\nCatastrophe Madwuher G\n\n211) smilingra: Build Y1 Smilingra\n\n212) MadWuher: Move Y3 Aleph-not Formica\n\n213) alexcobo: Build G1 Beta\n\n214) smilingra: Sacrifice Y1 Smilingra\nDiscover B1 Alpha G3 New_alpha\n\tshadowfirebird: I&#39;m flattered.  Nice work, guys.  Hope to play again soon...\n\n215) MadWuher: Move B2 Fintlewoddlewix Gamma\n\talexcobo: Oh... you should not done that MadWuher...\r\n\n\n216) alexcobo: Build G2 Beta\n\n217) smilingra: Build B1 New_alpha\n\tMadWuher: knew it was coming..... Just awaiting the onslaught. =)\n\n218) MadWuher: Sacrifice R1 Aleph-not\nAttack R3E Formica\n\n219) alexcobo: Trade G2 Y2 Beta\n\n220) smilingra: Sacrifice Y2 Smilingra\nMove B1 New_alpha Alexcobo\nMove B1 New_alpha Alexcobo\n\n221) MadWuher: Sacrifice Y3 Madwuher\nMove R3 Formica Smilingra\nMove R3 Boo-hoo Smilingra\nMove Y3 Formica Smilingra\n\n222) alexcobo: Attack B1S Alexcobo\n\n223) smilingra: Build R1 Smilingra\nCatastrophe Smilingra R\n\n224) MadWuher: Sacrifice R3 Gamma\nAttack G1E Fintlewoddlewix\nAttack G3S Smilingra\nAttack G1S Smilingra\n\n225) alexcobo: Move Y3 Alexcobo Madwuher\n\n226) MadWuher: Move B2 Gamma Alexcobo\nCatastrophe Alexcobo B\n\n\tMadWuher: Thanks for the game.\n\nHomeworlds Online (SDG# 11920)\nStarted: 2008.10.24, Ended: 2009.12.9\nParticipants: ajwill (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 12052)\nStarted: 2008.10.29, Ended: 2008.10.30\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11919)\nStarted: 2008.10.31, Ended: 2008.11.4\nParticipants: MrMoto (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MrMoto: Homeworld R2 G1 B3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tMrMoto: Hello! This is my first game of Homeworlds.\n\n4) MrMoto: Build B1 Mrmoto\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MrMoto: Trade B1 Y1 Mrmoto\n\n7) TwoShort: Build G1 Twoshort\n\n8) MrMoto: Discover Y1 Mrmoto G3 Plasmulon\n\n9) TwoShort: Build G1 Twoshort\n\n10) MrMoto: Build Y1 Plasmulon\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) MrMoto: Build Y2 Plasmulon\n\n13) TwoShort: Build G2 Twoshort\n\n14) MrMoto: Build B1 Mrmoto\n\n15) TwoShort: Discover G1 Twoshort G2 Grognar\n\n16) MrMoto: Discover Y1 Plasmulon B1 Arachne\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n18) MrMoto: Build B1 Mrmoto\n\n19) TwoShort: Trade G2 Y2 Bluonia\n\n20) MrMoto: Sacrifice Y1 Plasmulon\nMove B1 Mrmoto Plasmulon\n\tTwoShort: oops, sorry\n\n21) TwoShort: Sacrifice G3 Bluonia\nBuild G2 Bluonia\nBuild G3 Bluonia\nBuild Y1 Bluonia\n\n22) MrMoto: Build Y2 Plasmulon\n\tMrMoto: No problem.\n\n23) TwoShort: Discover Y1 Bluonia B3 Blitz\n\n24) MrMoto: Build Y3 Plasmulon\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Blitz\nBuild Y3 Twoshort\n\n26) MrMoto: Trade Y3 R3 Plasmulon\n\tTwoShort: So I feel a little guilty - normally for someones first game, I&#39;d be giving them a fair amount of pointers and advice, but that takes more attention than I&#39;ve had during this game, so I&#39;ve just been systematically destroying you :)\r\n  Anyway, tip number 1: try starting with a green ship, it&#39;s usually best.  \r\n Tip number 2: watch out for catastrophes.  I could move my y2 from Bluonia into Plasmulon, and cause a catastrophe that would cost me little and leave you crippled.\r\n  Typically, that&#39;s exactly what I&#39;d do, but in this case, I think I see an even faster route to victory...\n\n27) TwoShort: Trade G2 R2 Bluonia\n\tMrMoto: Don&#39;t worry about it -- I see that I have a lot to learn! Your strategy of sacrificing green ships to build up your fleet makes a lot of sense.\r\n\r\nAs for catastrophes, I was concentrating on just not building four like-coloured ships in one system. Clearly I must start to consider your moves -- I thought there would be more build-up before I would have to do so.\r\n\r\nAnd finally I am honoured to lose against the second-best player in the world! :)\n\n28) MrMoto: Trade Y2 G2 Plasmulon\n\tMrMoto: Oh dear. I thought I would blow up the whole system, but I&#39;ve just lost a bunch of ships. Hm ...\n\n29) TwoShort: Sacrifice Y2 Bluonia\nMove G1 Bluonia Plasmulon\nMove G1 Grognar Plasmulon\nCatastrophe Plasmulon Green\n\n\tMrMoto: Pla- Plasmulon!\n\tMrMoto: Thanks for the game.\n\nHomeworlds Online (SDG# 12098)\nVariants: &quot;Hard time&quot;\nStarted: 2008.11.3, Ended: 2008.11.23\nParticipants: MathGod (S), fnord (N)\nWinner: MathGod\n\n1) fnord: Homeworld B2 Y1 G3\n\n2) MathGod: Homeworld R1 B3 G3\n\tfnord: Greetings!  Hope you have fun!\n\tMathGod: Ola! Hope you have fun too.\n\n3) fnord: Build G1 Fnord\n\n4) MathGod: Build G1 Mathgod\n\n5) fnord: Discover G1 Fnord B3 Discordia\n\n6) MathGod: Trade G1 Y1 Mathgod\n\n7) fnord: Build G1 Discordia\n\n8) MathGod: Build Y1 Mathgod\n\n9) fnord: Trade G1 B1 Discordia\n\n10) MathGod: Build Y2 Mathgod\n\n11) fnord: Build G1 Fnord\n\n12) MathGod: Discover Y2 Mathgod R2 Midway\n\n\tfnord: Sorry about that, my weekend got out of hand and I forgot to sign on in time.\n\tMathGod: It&#39;s OK. Want to play another? (Non-hardtime that is)\n\tfnord: Sure!  I could use the practice.  I tried playing this game a long while ago, and didn&#39;t do so well at it.\n\nHomeworlds Online (SDG# 12025)\nStarted: 2008.11.4, Ended: 2009.1.14\nParticipants: MathGod (S), MikeYarrum (N)\nWinner: MathGod\n\n\nHomeworlds Online (SDG# 12103)\nStarted: 2008.11.4, Ended: 2008.11.8\nParticipants: MrMoto (S), MikeYarrum (N)\nWinner: MrMoto\n\n\nHomeworlds Online (SDG# 11891)\nStarted: 2008.11.4, Ended: 2008.11.7\nParticipants: MadWuher (S), MrMoto (N)\nWinner: MadWuher\n\n1) MrMoto: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\tMrMoto: I come in peace.\n\tMadWuher: &quot;Nanu-nanu&quot; - Welcome.\n\n3) MrMoto: Build G1 Mrmoto\n\n4) MadWuher: Build G1 Madwuher\n\n5) MrMoto: Discover G1 Mrmoto B1 Denebula\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) MrMoto: Build G1 Denebula\n\n8) MadWuher: Build Y1 Madwuher\n\n9) MrMoto: Trade G1 Y1 Denebula\n\n10) MadWuher: Trade Y1 G1 Madwuher\n\n11) MrMoto: Build G1 Denebula\n\n12) MadWuher: Build G2 Madwuher\n\n13) MrMoto: Build G2 Mrmoto\n\n14) MadWuher: Discover G2 Madwuher G3 Bologna\n\n15) MrMoto: Sacrifice G3 Mrmoto\nBuild G2 Mrmoto\nBuild G3 Mrmoto\nBuild Y1 Denebula\n\n16) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y2 Madwuher\n\n17) MrMoto: Trade G2 R2 Mrmoto\n\n18) MadWuher: Trade Y2 R2 Madwuher\n\n19) MrMoto: Discover G2 Mrmoto B1 Fragrance\n\n20) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\n\n21) MrMoto: Discover Y1 Denebula R2 Dawn\n\n22) MadWuher: S Y2 Madwuher\nD G2 Madwuher B3 Edora\nM Y1 Madwuher Edora\n\n23) MrMoto: Sacrifice G3 Mrmoto\nBuild Y2 Dawn\nBuild Y2 Denebula\nBuild G3 Fragrance\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Edora\n\n25) MrMoto: Trade G3 R3 Fragrance\n\n26) MadWuher: Sacrifice Y3 Madwuher\nMove Y3 Edora Fragrance\nMove Y3 Fragrance Mrmoto\nDiscover G1 Madwuher Y3 Camelot\n\n27) MrMoto: Sacrifice Y1 Dawn\nMove R3 Fragrance Mrmoto\n\n28) MadWuher: S R2 Madwuher\nA R3 Mrmoto\nA R2 Mrmoto\n\n\tMadWuher: thanks for da game. Up to another?\n\tMrMoto: Ah, zut! I didn&#39;t see that coming.\r\nThanks, and sure, let&#39;s play again.\n\nHomeworlds Online (SDG# 11897)\nVariants: &quot;Hard time&quot;\nStarted: 2008.11.5, Ended: 2008.11.22\nParticipants: Jesse (S), MrMoto (N)\nWinner: Jesse\n\n1) MrMoto: Homeworld G3 Y1 B3\n\n2) Jesse: Homeworld B2 R1 G3\n\tJesse: Hello, and have a good game.\n\n3) MrMoto: Build B1 Mrmoto\n\tMrMoto: You too!\n\n4) Jesse: Build G1 Jesse\n\n5) MrMoto: Trade B3 G3 Mrmoto\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) MrMoto: Build G1 Mrmoto\n\n8) Jesse: Build Y1 Jesse\n\n9) MrMoto: Discover G1 Mrmoto R2 Woolly\n\n10) Jesse: Build G1 Jesse\n\n11) MrMoto: Build G1 Woolly\n\n12) Jesse: Build Y2 Jesse\n\n13) MrMoto: Build G2 Mrmoto\n\n14) Jesse: Discover Y2 Jesse B3 Chompy\n\n15) MrMoto: Discover G2 Mrmoto Y2 Dandelion\n\n16) Jesse: Discover Y1 Jesse B3 Bitey\n\n17) MrMoto: Build G2 Mrmoto\n\n18) Jesse: Sacrifice G3 Jesse\nBuild G2 Jesse\nBuild G3 Jesse\nBuild Y2 Jesse\n\n19) MrMoto: Trade G3 Y3 Mrmoto\n\tJesse: You have a serious problem developing in your lack of yellow ships.  You will quickly find yourself frozen out and unable to move your ships where you want them.  To avoid this in the future, you&#39;ll want to make sure you get into any given color before your opponent can run away with all the smaller pieces.  One good idea for retaining the flexibility to do that is when you&#39;re sending small green ships out from your homeworld, discover blue systems.  Then you can quickly build more green ships and trade them for yellow (or whatever color you need).  Red single stars are particularly limiting.\n\tMrMoto: Hm, you are right. I don&#39;t have many yellow ships. Thank you for the advice; I am new to this game.\n\n20) Jesse: Discover G2 Jesse B3 Nibbly\n\n21) MrMoto: Build G3 Dandelion\n\tJesse: It&#39;s my pleasure to help new players.  The problem you have now is that you can&#39;t effectively use your Y3 to build new yellow ships, because you also have a yellow system marker.  If you build another yellow, that puts you at three yellow pieces, on the brink of a catastrophe.  That situation can be alright as long as I don&#39;t have any yellow ships within movement range, but I can now sacrifice a Y2 to move a piece two steps from Bitey to your home system.\n\tMrMoto: Ah, right -- thanks for pointing that out. I see that it was important not to build a green ship in my homeworld this turn for the same reason.\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Chompy\nBuild Y3 Jesse\n\tJesse: Yes, exactly.  It&#39;s usually best to defend the home world with ships of colors different from either of your system markers.  Even if you don&#39;t plan to use them for production, it&#39;s relatively easy for your opponent to two ships into range to sacrifice to get them both into your system in one turn.\r\n\r\nAlthough your last couple of moves don&#39;t do as much as you would like for keeping you in the yellow economy, they do help.  And, by the way, they are also a good example of using the weakness of my green concentration against me.  Because I could not build another green, trading your large green for another color and rebuilding it on the following turn was an inexpensive way for you to get another large ship.  But that&#39;s okay with me, because now I get to exploit my yellow advantage...\n\n23) MrMoto: Build B1 Mrmoto\n\n24) Jesse: Trade Y2 R2 Chompy\n\tJesse: In case you don&#39;t know it, this maneuver of sacrificing a G3 for two free builds is a common tactic called the factory.  Another thing to note: Although having three of the same color in your system is generally bad, I wanted another large ship there, and I feel safe because you cannot immediately reach me and I have several possible development plans to correct the issue well before you could get there.\n\tJesse: You *could* have done the same thing to build two small blues, here.  You may undo and try that, if you like.  I&#39;ll leave it to your judgement whether building one or two at this moment is better.\n\n25) MrMoto: Discover Y3 Mrmoto B2 Potato\n\tMrMoto: Thanks for the advice, and sorry for the wait. I have learned the strategy of trading in G3s, but maybe I ruled it out because there were no greens left in stash, and I forgot I could get my G3 back. I&#39;ll know for next time.\n\n26) Jesse: Sacrifice Y2 Jesse\nMove Y3 Chompy Potato\nMove Y3 Potato Mrmoto\n\tJesse: Yes, the fact that sacrificed ships and abandoned systems go directly to the stash can be quite important.\r\n\n\n27) MrMoto: Sacrifice B1 Mrmoto\nTrade G3 R3 Dandelion\n\n28) Jesse: Sacrifice R2 Chompy\nAttack G2 Mrmoto\nAttack B1 Mrmoto\n\tJesse: There are two strategic rules of thumb that this situation should show the importance of.  One is, never leave your homeworld undefended.  That almost always means having a large ship there, because mediums and smalls cannot capture large ships on their own.  The other is, when your opponent picks up a gun, you should pick up a gun.  Guns, in this context, are red ships.  Red system markers can allow captures only in that system.  Red ships can be sacrificed to provide captures anywhere.  Sometimes one of these can be violated temporarily to gain an advantage, but that&#39;s usually quite early on.\n\tJesse: Thanks for the game.  I hope it&#39;s been helpful.\n\tMrMoto: Argh! Thank you, you have been very helpful indeed.\n\n\nHomeworlds Online (SDG# 12090)\nStarted: 2008.11.6, Ended: 2008.11.13\nParticipants: TwoShort (S), MrMoto (N)\nWinner: TwoShort\n\n1) MrMoto: Homeworld G3 Y2 B3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) MrMoto: Build B1 Mrmoto\n\n4) TwoShort: Build G1 Twoshort\n\n5) MrMoto: Trade B3 G3 Mrmoto\n\tTwoShort: Wacky -  Here I was about to tell you that you&#39;re ignoring my &quot;start with a green ship&quot; advice, and that you shouldn&#39;t start with a blue except in the rare case the opponent takes a b1 star, which you also shouldn&#39;t do.  But apparently you psychically predicted I&#39;d typo my homeworld and flip the colors...\n\tMrMoto: I see the trans-galactic psychomodulator orbiting my homeworld has met with success.\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) MrMoto: Build G1 Mrmoto\n\n8) TwoShort: Build G1 Twoshort\n\n9) MrMoto: Build B1 Mrmoto\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) MrMoto: Discover B1 Mrmoto G1 Delivery\n\n12) TwoShort: Build G2 Twoshort\n\n13) MrMoto: Sacrifice G3 Mrmoto\nBuild B2 Mrmoto\nBuild B2 Mrmoto\nBuild B2 Delivery\n\n14) TwoShort: Build G2 Yolonda\n\tTwoShort: Not the way I expected you to grab the blue monopoly...  Usually leaving yourself without a 3 is a bad idea, but I guess I can&#39;t get a red and get my 3 to your home world before you move a blue out and grow a new 3...  Nice.\n\n15) MrMoto: Build B3 Delivery\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\tMrMoto: Well, I&#39;m still learning and experimenting -- we&#39;ll find out soon enough if it was a clever move or a disaster.\n\tTwoShort: It was clever as long as you get 3 in your homeworld before I do.  Long term, I think green beats blue...\n\n17) MrMoto: Sacrifice B2 Mrmoto\nTrade B2 Y2 Delivery\nTrade B3 R3 Delivery\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) MrMoto: Build G2 Mrmoto\n\n20) TwoShort: Discover G1 Yolonda Y1 Yak\n\n21) MrMoto: Trade G1 R1 Mrmoto\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yak\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n23) MrMoto: Move R3 Delivery Yolonda\n\n24) TwoShort: Sacrifice R2 Twoshort\nAttack R3N Yolonda\nPass\n\n25) MrMoto: Trade B2 Y2 Mrmoto\n\n26) TwoShort: Sacrifice Y1 Twoshort\nMove G1 Yak Mrmoto\n\n27) MrMoto: Move G2 Mrmoto Yak\n\n28) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Mrmoto\nBuild Y1 Twoshort\nBuild R1 Yolonda\n\n\tMrMoto: Thanks for the game.\n\nHomeworlds Online (SDG# 12114)\nStarted: 2008.11.8, Ended: 2008.11.21\nParticipants: MadWuher (S), MrMoto (N)\nWinner: MadWuher\n\n1) MrMoto: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld B1 R2 G3\n\n3) MrMoto: Build G1 Mrmoto\n\n4) MadWuher: Build G1 Madwuher\n\n5) MrMoto: Discover G1 Mrmoto B1 Riel\n\n6) MadWuher: Trade G1 B1 Madwuher\n\n7) MrMoto: Build G1 Mrmoto\n\n8) MadWuher: Build B2 Madwuher\n\n9) MrMoto: Discover G1 Mrmoto Y1 Crawford\n\n10) MadWuher: Trade B2 Y2 Madwuher\n\n11) MrMoto: Build G1 Mrmoto\n\n12) MadWuher: Build G2 Madwuher\n\n13) MrMoto: Sacrifice G3 Mrmoto\nBuild G2 Riel\nBuild G2 Crawford\nBuild G3 Mrmoto\n\n14) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Madwuher\nBuild Y1 Madwuher\n\n15) MrMoto: Trade G2 Y2 Riel\n\n16) MadWuher: Sacrifice Y2 Madwuher\nDiscover G3 Madwuher Y3 Edora\nMove B1 Madwuher Edora\n\n17) MrMoto: Build G2 Riel\n\n18) MadWuher: S G3 Madwuher\nB G3 Madwuher\nB B2 Edora\nB B2 Edora\n\n\n19) MrMoto: Trade G1 R1 Riel\n\n20) MadWuher: Trade B2 R2 Edora\n\n21) MrMoto: Sacrifice G3 Mrmoto\nBuild G1 Mrmoto\nBuild G3 Mrmoto\nBuild R1 Riel\n\n22) MadWuher: Discover B2 Edora Y1 Bologna\n\n23) MrMoto: Discover R1 Riel Y3 Ion\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y2 Madwuher\n\n25) MrMoto: Trade G1 R1 Mrmoto\n\n26) MadWuher: Move Y2 Madwuher Edora\n\n27) MrMoto: Build R2 Riel\n\n28) MadWuher: Build R3 Edora\n\n29) MrMoto: Discover R2 Riel B3 Gradus\n\n30) MadWuher: Move R3 Edora Bologna\n\n31) MrMoto: Sacrifice G1 Crawford\nBuild R3 Gradus\n\n32) MadWuher: Build R3 Edora\n\n33) MrMoto: Move R1 Ion Madwuher\n\n34) MadWuher: Build Y3 Madwuher\n\n35) MrMoto: Sacrifice Y2 Riel\nMove R2 Gradus Madwuher\nMove R3 Gradus Madwuher\nCatastrophe Madwuher R\n\n36) MadWuher: Sacrifice Y2 Edora\nMove G3 Madwuher Mrmoto\nMove R3 Bologna Mrmoto\n\n37) MrMoto: Attack R3 Mrmoto\n\n38) MadWuher: Sacrifice R3 Edora\nAttack R3 Mrmoto\nAttack G3 Mrmoto\nAttack R1 Mrmoto\n\n\tMadWuher: Just a few quick comments (in case it helps you in your next game). In the first few turns I was able to get control of the Blue tech (I did this because I saw a lot of B1&#39;s already being used on the table). If you had switched from producing Green tech to Blue tech, you would have forced me to abandon my control over Blue and I would have had to trade over to yellow or red right away. A bit part of this game is to control the colours (or at least force your opponents into doing something that will help you). \n\tMadWuher: There was one turn where you sacrificed your Green 3 to create two Green 2&#39;s and a Green 3. This left a Green 3 open for me to take. Then you traded some Green tech and rebuilt your Green tech, letting me use the green production strategy against you. You did all the work, but I got to use it. I&#39;ve seen others try to do similar work, but instead sacrifice their G3 when they control another colour, letting them get to other 3 pointers (then trading them back for the G3) and not letting your opponents have a production centre.\n\tMadWuher: Later in the game, I was able to control most of the Yellow tech (leaving you with only size 1 and/or 2 Yellow). This seemed to cause some trouble for you as you then had to navigate a little more carefully to get the catastrophe in my home system. Knowing that you didn&#39;t have either Blue tech ready to destroy my other star, or that you would use up most of your Red tech to destroy one of my stars, I chose to keep my Red tech out of the way and force a fight in your home system. Since I had a Red 3 to sacrifice and you had at most an R1 to fight back, I chose to overwhelm you in your home system with two size 3 ships (different colours in case you tried to make a catastrophe at your home planet). \n\tMadWuher: I would recommend using your small ships to create catastrophes, only using your big ships if a catastrophe would allow you to destroy more points of ships on my side than on yours. The player TwoShort likes to think around two moves ahead, destroying ships if he will be in a better position (pointwise and/or endgame I think) within the next 2 turns. Also, TwoShort does a great job controlling the size 3 pyramids, and the colours. If you get a chance, you might want to check out some of his games to see how he does it. He has a few unorthodox starts and does similar steps in the first few turns, which, if you don&#39;t keep aware of, will hurt you later on in the game. \n\tMrMoto: I- I thought I was winning! Hm, I have a lot to learn. Thanks for all your advice; it helps to see where I went wrong.\n\tMadWuher: Up to another? I played 3 games at the same time once to try different starts and different moves. If you select my &quot;Hard Time, Unrated&quot; challenge we can play without effecting ratings and if one of us times out, it will resign us from the game.\n\nHomeworlds Online (SDG# 12133)\nStarted: 2008.11.8, Ended: 2008.11.13\nParticipants: TwoShort (S), Sunnan (N)\nWinner: TwoShort\n\n1) Sunnan: Homeworld R3 Y1 G3 *\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) Sunnan: Build G1 Sunnan\n\n4) TwoShort: Build G1 Twoshort\n\n5) Sunnan: Discover G1 Sunnan B2 Penny\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Sunnan: Build G1 Penny\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Sunnan: Build G1 Sunnan\n\n10) TwoShort: Build G2 Twoshort\n\n11) Sunnan: Sacrifice G3 Sunnan\nBuild G2 Penny\nBuild G2 Sunnan\nBuild G3 Sunnan\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n13) Sunnan: Trade G2 Y2 Penny\n\n14) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Twoshort Y3 Nickel\nDiscover Y1 Twoshort B3 Dime\n\n15) Sunnan: Discover G1 Penny Y3 Quarter\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Dime\nBuild Y2 Dime\nBuild Y3 Twoshort\n\n17) Sunnan: Sacrifice G2 Sunnan\nBuild G2 Penny\nBuild G2 Quarter\n\n18) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Twoshort Quarter\nMove G3 Quarter Penny\nMove G3 Penny Sunnan\n\n19) Sunnan: Move G2 Quarter Twoshort\n\n\tSunnan: There was nothing I could&#39;ve done. Guess I really do need blue at the base. (It&#39;s so dangerous to have a blue star, though... (since opponents can go in and change to your color and call catastrophe) otoh, this time my red hurt me arguably more than blue would&#39;ve.) Thanks for the game!\n\nHomeworlds Online (SDG# 12172)\nVariants: &quot;Hard time&quot;\nStarted: 2008.11.11, Ended: 2008.12.21\nParticipants: Keith (S), stoneaxe (N)\nWinner: Keith\n\n1) stoneaxe: Homeworld Y3 B2 G3\n\n2) Keith: Homeworld Y1 B2 G3\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) Keith: Build G1 Keith\n\tstoneaxe: Hi and good luck.  Thanks for playing!\n\tKeith: You welcome.  Have a good game.\n\n5) stoneaxe: Discover G1 Stoneaxe Y1 Yanni\n\n6) Keith: Trade G1 Y1 Keith\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) Keith: Build Y2 Keith\n\n9) stoneaxe: Build G1 Yanni\n\n10) Keith: Build G2 Keith\n\n11) stoneaxe: Trade G1 B1 Stoneaxe\n\n12) Keith: Discover Y2 Keith G3 Behemoth\n\n13) stoneaxe: Build G1 Stoneaxe\n\n14) Keith: Discover G2 Keith Y3 Daikiro\n\n15) stoneaxe: Trade G3 Y3 Stoneaxe\n\n16) Keith: Build Y2 Behemoth\n\n17) stoneaxe: Discover G1 Yanni G3 Gor\n\n18) Keith: Build Y2 Keith\n\n19) stoneaxe: Build G2 Stoneaxe\n\n20) Keith: Build G2 Keith\n\n21) stoneaxe: Build B1 Stoneaxe\n\n22) Keith: Trade Y2 B2 Keith\n\n23) stoneaxe: Move B1 Stoneaxe Yanni\n\n24) Keith: Build Y2 Keith\n\n25) stoneaxe: Sacrifice G2 Stoneaxe\nBuild B1 Yanni\nBuild B3 Yanni\n\n26) Keith: Sacrifice Y2 Keith\nMove B2 Keith Gor\nMove B2 Gor Yanni\nCatastrophe Yanni Blue\n\n27) stoneaxe: Build G2 Stoneaxe\n\n28) Keith: Build Y2 Keith\n\n29) stoneaxe: Move B1 Stoneaxe Yanni\n\n30) Keith: Trade Y2 R2 Keith\n\n31) stoneaxe: Build B1 Yanni\n\n32) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R1 Keith\nBuild Y2 Keith\n\n33) stoneaxe: Trade G1 B1 Stoneaxe\n\n34) Keith: Sacrifice G2 Daikiro\nBuild R1 Keith\nBuild Y3 Behemoth\n\n35) stoneaxe: Trade B1 R1 Stoneaxe\n\n36) Keith: Sacrifice Y2 Keith\nMove Y3 Behemoth Yanni\nMove Y3 Yanni Stoneaxe\n\n37) stoneaxe: Attack Y3 Stoneaxe\n\n\tstoneaxe: Sorry I wasn&#39;t more of a challenge!  I&#39;m going to resign now because this is such a Rout.  Well played!\n\tKeith: Thank you.  Your game was off from your usual.  \n\nHomeworlds Online (SDG# 12113)\nStarted: 2008.11.13, Ended: 2008.11.13\nParticipants: MikeYarrum (S), willynch (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 12140)\nStarted: 2008.11.15, Ended: 2008.12.7\nParticipants: MadWuher (S), Uglyfoot (N)\nWinner: MadWuher\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tMadWuher: Hello. Have a good game.\n\tUglyfoot: Have a good game.\n\n4) MadWuher: Build G1 Madwuher\n\n5) Uglyfoot: Discover G1 Uglyfoot R1 Newton\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) Uglyfoot: Build G1 Newton\n\n8) MadWuher: Build Y1 Madwuher\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) MadWuher: Build Y1 Madwuher\n\n11) Uglyfoot: Build G2 Uglyfoot\n\n12) MadWuher: Build G2 Madwuher\n\n13) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n14) MadWuher: Sacrifice Y1 Madwuher\nDiscover G2 Madwuher B3 Edora\n\n15) Uglyfoot: Move Y2 Uglyfoot Newton\n\n16) MadWuher: Build G2 Madwuher\n\n17) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Newton\nBuild G3 Uglyfoot\nBuild G3 Uglyfoot\n\n18) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n19) Uglyfoot: Move G1 Newton Bologna\n\n20) MadWuher: Trade Y1 R1 Madwuher\n\n21) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n22) MadWuher: Build G3 Edora\n\n23) Uglyfoot: Trade G1 B1 Uglyfoot\n\n24) MadWuher: Trade G3 Y3 Edora\n\n25) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G1 Newton Bologna\nMove G1 Bologna Madwuher\nMove G1 Bologna Madwuher\n\n26) MadWuher: Sacrifice G2 Bologna\nBuild G1 Madwuher\nBuild R2 Madwuher\nCatastrophe Madwuher G\n\tMadWuher: Sorry. Doing these moves from my iPod and I&#39;m still learning how to type on it. My big thumb keeps hitting the wrong keys.\n\n27) Uglyfoot: Move B1 Uglyfoot Newton\n\n28) MadWuher: Trade R2 G2 Madwuher\n\n29) Uglyfoot: Build G1 Newton\n\n30) MadWuher: Build R2 Madwuher\n\n31) Uglyfoot: Build G1 Uglyfoot\n\n32) MadWuher: Build G1 Madwuher\n\n33) Uglyfoot: Trade G2 R2 Newton\n\n34) MadWuher: Move R1 Madwuher Edora\n\n35) Uglyfoot: Discover R2 Newton Y3 Tesla\n\n36) MadWuher: Discover R2 Madwuher Y3 Bologna\n\n37) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Newton\nBuild G3 Uglyfoot\nBuild Y1 Newton\n\n38) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n39) Uglyfoot: Trade G2 R2 Newton\n\n40) MadWuher: Sacrifice G2 Edora\nBuild R3 Edora\nBuild R3 Bologna\n\n41) Uglyfoot: Move R2 Newton Uglyfoot\n\n42) MadWuher: Trade R1 Y1 Edora\n\n43) Uglyfoot: Build G2 Newton\n\n44) MadWuher: Move R3 Bologna Newton\n\n45) Uglyfoot: Sacrifice Y2 Newton\nMove G2 Newton Tesla\nMove B1 Newton Tesla\n\n46) MadWuher: Sacrifice R2 Bologna\nAttack G1 Newton\nAttack Y1 Newton\n\n47) Uglyfoot: Discover G1 Uglyfoot R1 Franklin\n\n48) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Newton\nBuild Y2 Madwuher\nBuild Y3 Madwuher\n\n49) Uglyfoot: Move R2 Uglyfoot Newton\n\n50) MadWuher: Sacrifice Y2 Newton\nMove R3 Newton Tesla\nMove Y1 Newton Tesla\n\n51) Uglyfoot: Sacrifice G2 Tesla\nBuild R2 Tesla\nBuild R3 Tesla\nCatastrophe Tesla R\n\n52) MadWuher: Sacrifice G1 Newton\nBuild Y2 Edora\n\n53) Uglyfoot: Build G1 Uglyfoot\n\n54) MadWuher: Build G2 Madwuher\n\n55) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Franklin\nBuild G3 Uglyfoot\nBuild G3 Franklin\n\n56) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n\tUglyfoot: I have no moves that will benefit me...\n\nHomeworlds Online (SDG# 12198)\nStarted: 2008.11.18, Ended: 2008.12.7\nParticipants: ts52 (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y3 B2 G3\n\n2) ts52: Homeworld G1 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) ts52: Build Y1 Ts52\n\n5) MadWuher: Build G1 Madwuher\n\tts52: Have a good game!\n\tMadWuher: You too\n\n6) ts52: D Y1 Ts52 G3 Kermit\n\n7) MadWuher: Discover G1 Madwuher B1 Edora\n\n8) ts52: Build Y1 Ts52\n\n9) MadWuher: Build G2 Edora\n\n10) ts52: Build Y1 Kermit\n\n11) MadWuher: Build G2 Edora\n\n12) ts52: Build Y2 Ts52\n\n13) MadWuher: Trade G2 Y2 Edora\n\n14) ts52: Discover Y1 Ts52 G3 Oscar\n\n15) MadWuher: Trade G1 R1 Edora\n\n16) ts52: Trade Y2 R2 Ts52\n\n17) MadWuher: Build Y2 Edora\n\n18) ts52: Build R1 Ts52\n\n19) MadWuher: Discover Y2 Edora B3 Bologna\n\n20) ts52: Build Y2 Oscar\n\n21) MadWuher: Sacrifice G1 Madwuher\nBuild Y3 Bologna\n\n22) ts52: Trade R1 G1 Ts52\n\n23) MadWuher: Build G1 Madwuher\n\n24) ts52: Discover G1 Ts52 B3 Gonzo\n\n25) MadWuher: Move G2 Edora Gonzo\n\n26) ts52: Build G2 Gonzo\n\tts52: b g2 gonzo\n\tts52: oops, wrong window\n\n27) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Gonzo\nBuild G3 Madwuher\nBuild R1 Edora\nCatastrophe Gonzo G\n\n28) ts52: Build R1 Ts52\n\n29) MadWuher: Build G1 Madwuher\n\n30) ts52: Trade R2 G2 Ts52\n\n31) MadWuher: Move G1 Madwuher Edora\n\n32) ts52: Build R2 Ts52\n\n33) MadWuher: Build G2 Edora\n\n34) ts52: Move R2 Ts52 Kermit\n\n35) MadWuher: Move R1 Edora Bologna\n\n36) ts52: Build R2 Ts52\n\n37) MadWuher: Move G1 Edora Bologna\n\n38) ts52: Move R1 Ts52 Oscar\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G3 Madwuher\nPass\n\n40) ts52: Move Y1 Oscar Ts52\n\n41) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Bologna\nBuild R3 Edora\n\n42) ts52: Sacrifice G2 Ts52\nBuild R3 Oscar\nBuild R3 Kermit\n\n43) MadWuher: Build G2 Edora\n\n44) ts52: Sacrifice Y2 Oscar\nMove R1 Oscar Edora\nMove R2 Kermit Edora\nCatastrophe Edora Red\n\n45) MadWuher: Trade G1 R1 Madwuher\n\n46) ts52: Move R3 Kermit Edora\n\n47) MadWuher: Sacrifice Y2 Edora\nDiscover G2 Edora Y2 Camelot\nDiscover G2 Edora Y2 Farthington\n\n48) ts52: Move Y1 Ts52 Oscar\n\n49) MadWuher: Build G1 Madwuher\n\n50) ts52: Move Y1 Kermit Edora\n\n51) MadWuher: Move R2 Bologna Camelot\n\n52) ts52: Move R3 Oscar Camelot\n\n53) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Camelot\nBuild R2 Camelot\nCatastrophe Camelot R\n\n54) ts52: M R3 Edora Camelot\n\n55) MadWuher: Sacrifice G2 Camelot\nBuild G2 Farthington\nBuild R1 Bologna\n\n56) ts52: Move R3 Camelot Edora\n\n57) MadWuher: Move R1 Bologna Farthington\n\n58) ts52: Build Y2 Ts52\n\n59) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Bologna\nBuild R2 Madwuher\n\n60) ts52: Build R3 Ts52\n\n61) MadWuher: Build R3 Farthington\n\n62) ts52: Move R2 Ts52 Oscar\n\n63) MadWuher: Move G2 Farthington Kermit\n\n64) ts52: Move R3 Ts52 Kermit\n\n65) MadWuher: Sacrifice G2 Kermit\nBuild G2 Bologna\nPass\n\n66) ts52: Move Y1 Kermit Edora\n\n67) MadWuher: Move Y3 Bologna Ts52\n\n68) ts52: Move R2 Oscar Ts52\n\n69) MadWuher: Sacrifice R3 Farthington\nAttack Y3 Ts52\nAttack Y2 Ts52\nAttack R2 Ts52\n\n\nHomeworlds Online (SDG# 12199)\nStarted: 2008.11.23, Ended: 2009.1.9\nParticipants: MathGod (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) MathGod: Homeworld B1 G3 B3 *\n\tMathGod: Hi there. Thanks for the game.\n\n3) ts52: Build G1 Ts52\n\tts52: Have a good game.\n\n4) MathGod: Build B1 Mathgod\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) MathGod: Trade B3 Y3 Mathgod\n\n7) ts52: Build G1 Ts52\n\n8) MathGod: Build B2 Mathgod\n\n9) ts52: Build G1 Ts52\n\n10) MathGod: Trade B2 G2 Mathgod\n\n11) ts52: Discover G1 Ts52 B3 Grover\n\n12) MathGod: Build G2 Mathgod\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Grover\nBuild G3 Ts52\n\n14) MathGod: Discover G2 Mathgod Y2 Yell-o\n\n15) ts52: T G2 R2 Gonzo\n\n16) MathGod: Trade G2 R2 Mathgod\n\n17) ts52: B G2 Gonzo\n\n18) MathGod: Build G2 Yell-o\n\n19) ts52: Sacrifice G3 Grover\nB G3 Grover\nB R1 Gonzo\nB R1 Gonzo\n\n20) MathGod: Build B2 Mathgod\n\n21) ts52: T R1 Y1 Gonzo\n\n22) MathGod: Move B2 Mathgod Yell-o\n\n23) ts52: Build Y1 Gonzo\n\n24) MathGod: Sacrifice G2 Yell-o\nBuild B2 Yell-o\nBuild B2 Mathgod\n\n25) ts52: D G1 Ts52 B3 Rosalita\n\n26) MathGod: Move B2 Yell-o Rosalita\n\n27) ts52: Move R2 Gonzo Ts52\n\n28) MathGod: Trade B2 G2 Rosalita\n\n29) ts52: Build R1 Gonzo\n\n30) MathGod: Build B2 Yell-o\n\n31) ts52: Move Y1 Gonzo Ts52\n\n32) MathGod: Sacrifice B2 Mathgod\nTrade G2 R2 Rosalita\nTrade B2 G2 Yell-o\n\n33) ts52: Sacrifice G3 Grover\nBuild G3 Rosalita\nBuild R1 Gonzo\nBuild R3 Ts52\n\n34) MathGod: Sacrifice G2 Yell-o\nBuild G2 Yell-o\nBuild R3 Mathgod\n\n35) ts52: Sacrifice R1 Gonzo\nAttack R2S Rosalita\n\n36) MathGod: Move R3 Mathgod Yell-o\n\n37) ts52: Sacrifice G3 Rosalita\nBuild G3 Grover\nBuild R1 Gonzo\nBuild R3 Rosalita\n\n38) MathGod: Build B2 Yell-o\n\n39) ts52: Discover R1 Gonzo Y2 Zoe\n\n40) MathGod: Discover G2 Yell-o Y3 Barry\n\n41) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y1 Ts52\nBuild Y3 Gonzo\n\n42) MathGod: Sacrifice G2 Barry\nBuild G2 Yell-o\nBuild Y3 Mathgod\n\n43) ts52: Discover G2 Gonzo B2 Cookie\n\n44) MathGod: Move B1 Mathgod Yell-o\n\n45) ts52: Move Y1 Ts52 Rosalita\n\n46) MathGod: Sacrifice Y3 Mathgod\nMove B1 Yell-o Gonzo\nMove B2 Yell-o Gonzo\nMove B2 Yell-o Gonzo\nCatastrophe Gonzo B\n\n47) ts52: Build G1 Ts52\n\n48) MathGod: Discover G2 Yell-o Y3 Y-too\n\tMathGod: Ohh well. Not much else to do.\n\n49) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y1 Ts52\nBuild Y3 Rosalita\n\n50) MathGod: Sacrifice G2 Y-too\nBuild G2 Yell-o\nBuild Y3 Mathgod\n\n51) ts52: Move Y1 Ts52 Grover\n\n52) MathGod: Discover Y3 Mathgod B2 Blue-toe\n\n53) ts52: Move R2 Rosalita Cookie\n\n54) MathGod: Move G2 Yell-o Grover\n\n55) ts52: Move R3 Ts52 Grover\n\n56) MathGod: Sacrifice G2 Grover\nBuild G2 Yell-o\nBuild R1 Yell-o\n\n57) ts52: Move G3 Grover Zoe\n\n58) MathGod: Discover G2 Yell-o B3 Bell-o\n\n59) ts52: Build R1 Zoe\n\n60) MathGod: Move R1 Yell-o Bell-o\n\n61) ts52: Move G3 Zoe Bell-o\n\n62) MathGod: Sacrifice G2 Bell-o\nBuild G2 Yell-o\nPass\n\n63) ts52: Sacrifice R1 Zoe\nAttack R1 Bell-o\n\n64) MathGod: Discover G2 Yell-o B1 Blue\n\n65) ts52: Build R1 Cookie\n\n66) MathGod: Move Y3 Mathgod Cookie\n\n67) ts52: Sacrifice Y3 Rosalita\nMove R3 Grover Cookie\nMove R3 Cookie Mathgod\nMove R3 Rosalita Cookie\n\tMathGod: I have no clue what to do.\n\n68) MathGod: Sacrifice R3 Yell-o\nAttack R3 Cookie\nAttack R2 Cookie\nAttack G2 Cookie\n\tMathGod: Yes, I know this is suicide. \n\n69) ts52: Attack R2 Mathgod\n\tts52: It&#39;s been an interesting game.\n\n\tts52: Thanks for the game.\n\tMathGod: Thank you\n\nHomeworlds Online (SDG# 12256)\nVariants: &quot;Hard time&quot;\nStarted: 2008.11.24, Ended: 2008.12.27\nParticipants: alexcobo (S), MathGod (N)\nWinner: MathGod\n\n1) MathGod: Homeworld R1 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) MathGod: Build G1 Mathgod\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MathGod: Trade G1 Y1 Mathgod\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) MathGod: Build G1 Mathgod\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) MathGod: Trade G1 R1 Mathgod\n\n10) alexcobo: Build R2 Alexcobo\n\n11) MathGod: Discover R1 Mathgod G3 Green-ee\n\n12) alexcobo: Build R2 Alexcobo\n\n13) MathGod: Build G1 Mathgod\n\n14) alexcobo: Discover R2 Alexcobo B1 Azure\n\n15) MathGod: Build G1 Mathgod\n\n16) alexcobo: Trade Y1 G1 Alexcobo\n\n17) MathGod: Discover G1 Mathgod R3 Rendil-ee\n\n18) alexcobo: Build Y1 Alexcobo\n\n19) MathGod: Discover G1 Mathgod R3 Bell-ee-flop\n\n20) alexcobo: Build G2 Alexcobo\n\n21) MathGod: Build G2 Mathgod\n\n22) alexcobo: Sacrifice G1 Alexcobo\nBuild R2 Azure\n\n23) MathGod: Build R3 Green-ee\n\n24) alexcobo: Trade R2 Y2 Alexcobo\n\n25) MathGod: Trade G2 Y2 Mathgod\n\n26) alexcobo: Trade R2 Y2 Azure\n\n27) MathGod: Build G1 Mathgod\n\n28) alexcobo: Build G2 Alexcobo\n\n29) MathGod: Sacrifice Y2 Mathgod\nMove G1 Bell-ee-flop Azure\nMove G1 Azure Alexcobo\nCatastrophe Alexcobo G\n\n30) alexcobo: Discover Y2 Alexcobo G3 Green\n\n31) MathGod: Build G1 Mathgod\n\n32) alexcobo: Trade Y2 G2 Azure\n\n33) MathGod: Discover G1 Mathgod Y3 Yellow-ee\n\n34) alexcobo: Build G2 Azure\n\n35) MathGod: Build G2 Yellow-ee\n\n36) alexcobo: Build Y1 Green\n\n37) MathGod: Build Y2 Mathgod\n\n38) alexcobo: Build R2 Azure\n\n39) MathGod: Move Y1 Mathgod Green-ee\n\n40) alexcobo: Trade R2 B2 Azure\n\n41) MathGod: Sacrifice G3 Mathgod\nBuild G3 Mathgod\nBuild Y2 Green-ee\nBuild Y3 Mathgod\n\n42) alexcobo: Sacrifice Y1 Alexcobo\nMove R2 Azure Rendil-ee\n\n43) MathGod: Sacrifice Y1 Green-ee\nMove G1 Rendil-ee Azure\n\n44) alexcobo: Trade G2 R2 Azure\n\n45) MathGod: Sacrifice G3 Mathgod\nBuild G2 Mathgod\nBuild G3 Azure\nBuild Y1 Green-ee\n\n46) alexcobo: Sacrifice G2 Azure\nBuild R2 Rendil-ee\nBuild R3 Alexcobo\n\n47) MathGod: Trade G1 B1 Mathgod\n\n48) alexcobo: Attack G1N Azure\n\n49) MathGod: Sacrifice R3 Green-ee\nAttack B2 Azure\nAttack G1 Azure\nAttack R2 Azure\n\n50) alexcobo: Trade R1 G1 Alexcobo\n\n51) MathGod: Sacrifice G2 Yellow-ee\nBuild R1 Azure\nBuild R3 Green-ee\n\n52) alexcobo: Build G2 Alexcobo\n\n53) MathGod: Move B1 Mathgod Green-ee\n\n54) alexcobo: Build Y1 Alexcobo\n\n55) MathGod: Move Y2 Green-ee Azure\n\n56) alexcobo: Sacrifice Y2 Green\nMove R2 Rendil-ee Alexcobo\nMove R2 Alexcobo Yellow-ee\n\n57) MathGod: Sacrifice G3 Azure\nBuild G2 Mathgod\nBuild G3 Azure\nBuild B1 Green-ee\n\n58) alexcobo: Attack G1N Yellow-ee\n\n59) MathGod: Sacrifice Y3 Mathgod\nMove B1 Green-ee Alexcobo\nMove B1 Green-ee Alexcobo\nMove B2 Azure Alexcobo\nCatastrophe Alexcobo B\n\n\tMathGod: Thanks for the game.\n\nHomeworlds Online (SDG# 12240)\nStarted: 2008.11.25, Ended: 2009.3.10\nParticipants: stoneaxe (S), MrMoto (W), MadWuher (N), Trollkin (E)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Trollkin: Homeworld B2 G1 Y3\n\tMadWuher: Welcome, One and All to this wonderful game we call Homeworlds. Prepare yourself for a real slobber-knocker as our four contestants vie for the coveted Homeworlds Champion Title. Now entering the arena, MadWuher! (And the fans go wild)\n\n3) stoneaxe: Homeworld B3 R1 G3\n\n4) MrMoto: Homeworld G3 Y2 B3\n\tstoneaxe: 4 players- wow!  This is going to be a wild game!  Good luck all.\n\n5) MadWuher: Build G1 Madwuher\n\tMrMoto: Galactic greetings from the MrMotonians.\n\tTrollkin: Good luck. First time player here. :-/\n\tMadWuher: Welcome Trollkin (does that mean we hafta go easy on him??? guys???) j/k\n\n6) Trollkin: Build Y1 Trollkin\n\tstoneaxe: MadWuher, you need to go easy on All of us!!!  By the way, I liked your introduction! LOL\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) MrMoto: Build B1 Mrmoto\n\tstoneaxe: Trollkin, welcome to the game!  Make sure you don&#39;t build 4 of the same color in your homeworld, or someone will &#39;Catastrophe&#39; you!    I did it in one of my first games.  Haha!  The 2 player version of this game is easier to &quot;strategize&quot; about.  4 player is just too many variables for me to think about, so I will just take it one move at a time.  This is only my 2nd game of 4-player.  My very first Homeworlds game was also 4-player, and its harder to learn the strategies this way.  But you are off to a good start!\r\n\r\nSome may disagree, but I think Homeworlds is similar to Chess; or it exercises similar parts of the brain, or something.   Alien City is cool like that too.\n\tstoneaxe: Just curious:  What do you 3 have as far as real-life Icehouse pieces (stashes)?  I only have some homemade ones made out of card-stock.  I&#39;ve played Martian Chess with them and a crude game of Homeworlds, but they worked.  Maybe I&#39;ll place an order for some &#39;real&#39; plastic ones around Christmas.    Any Recommendations?\n\tMadWuher: I have 5 sets of the Rainbow colour treehouse sets giving me a total of 5 full stashes (Red, Green, Blue, Yellow and Black). I also bought the Grey stash from Looneylabs (so I can play Volcano) and am thinking of getting the Pink stash (just so I can play Volcano with all opaque colours). I want to create some card stock pyramids so I can keep them in my office in case I have a tricky move to make (in Homeworlds of course) and then I can keep my plastics ones safe and sound at home.\n\n9) MadWuher: Trade G1 Y1 Madwuher\n\n10) Trollkin: Discover Y1 Trollkin R3 Omicronpersei8\n\n11) stoneaxe: Build G1 Stoneaxe\n\n12) MrMoto: Build B1 Mrmoto\n\n13) MadWuher: Build G1 Madwuher\n\n14) Trollkin: Trade Y3 B3 Trollkin\n\n15) stoneaxe: Trade G1 Y1 Stoneaxe\n\n16) MrMoto: Discover B1 Mrmoto G1 Maillot\n\n17) MadWuher: Discover G1 Madwuher B3 Decapod10\n\n18) Trollkin: Build B1 Trollkin\n\n19) stoneaxe: Build Y1 Stoneaxe\n\n20) MrMoto: Build B1 Maillot\n\n21) MadWuher: Build G1 Madwuher\n\n22) Trollkin: Trade B3 G3 Trollkin\n\n23) stoneaxe: Build G2 Stoneaxe\n\n24) MrMoto: Trade B3 G3 Mrmoto\n\n25) MadWuher: B G2 Decapod10\n\n26) Trollkin: Build G2 Trollkin\n\n\n27) stoneaxe: Discover Y1 Stoneaxe G2 Newgondor\n\n28) MrMoto: Build G2 Mrmoto\n\n29) MadWuher: Trade G2 Y2 Decapod10\n\tMrMoto: Trollkin, you might want to avoid building so many Green ships in one spot. Remember that if a system has four pieces of one colour, including stars, then they can be wiped out in a catastrophe -- and Decapod10 isn&#39;t far away ...\n\n30) Trollkin: Move Y1 Omicronpersei8 Maillot\n\n\n31) stoneaxe: Build Y1 Newgondor\n\n32) MrMoto: Trade G2 Y2 Mrmoto\n\n33) MadWuher: Build Y2 Decapod10\n\tMadWuher: Just to warn both Trollkin and Stoneaxe, I have the ability to reach either of your homeworlds with a green ship and cause a catastrophe. I see Mr. Moto traded a green away so he is safe (for the moment). I would suggest fixing this ASAP as next turn, I may not feel so generous as to leave the two of you alone. &lt;insert evil laugh here&gt;\n\n34) Trollkin: Sacrifice Y1 Maillot\nDiscover G2 Trollkin Y3 Quacky\n\n35) stoneaxe: Trade G2 R2 Stoneaxe\n\n36) MrMoto: Discover Y2 Mrmoto B1 Popcorn\n\tstoneaxe: Thanks for the warning!\n\n37) MadWuher: Build G2 Decapod10\n\n38) Trollkin: Build G2 Quacky\n\n39) stoneaxe: Move R2 Stoneaxe Newgondor\n\n40) MrMoto: Build B2 Mrmoto\n\n41) MadWuher: Build G2 Decapod10\n\n42) Trollkin: Move G2 Quacky Maillot\n\n\n43) stoneaxe: Move R2 Newgondor Decapod10\n\n44) MrMoto: Build B2 Maillot\n\n45) MadWuher: Sacrifice Y2 Decapod10\nMove G1 Decapod10 Newgondor\nMove G1 Newgondor Stoneaxe\n\n46) Trollkin: Trade B1 Y1 Trollkin\n\n\n47) stoneaxe: Attack Y2N Decapod10\n\n48) MrMoto: Trade B2 Y2 Maillot\n\n49) MadWuher: Sacrifice G2 Decapod10\nBuild G2 Stoneaxe\nBuild Y2 Madwuher\nCatastrophe Stoneaxe G\n\n50) Trollkin: Build Y3 Trollkin\n\n51) stoneaxe: Attack G2N Decapod10\n\n52) MrMoto: Sacrifice G3 Mrmoto\nBuild Y3 Popcorn\nBuild Y3 Maillot\nBuild B1 Mrmoto\n\n53) MadWuher: Discover Y2 Madwuher G3 Newbury\n\n54) Trollkin: Move Y3 Trollkin Decapod10\n\n55) stoneaxe: Sacrifice G2 Decapod10\nBuild Y3 Stoneaxe\nBuild R1 Decapod10\n\n56) MrMoto: Trade Y3 R3 Maillot\n\n57) MadWuher: Build Y3 Madwuher\n\n58) Trollkin: Build G1 Quacky\n\n59) stoneaxe: Trade Y1 G1 Stoneaxe\n\n60) MrMoto: Attack G2E Maillot\n\n61) MadWuher: Discover G1 Madwuher B3 Blarney\n\n62) Trollkin: Build Y1 Trollkin\n\n\n63) stoneaxe: Build G2 Stoneaxe\n\n64) MrMoto: Sacrifice Y2 Popcorn\nDiscover R3 Maillot R3 Hereicome\nMove R3 Hereicome Trollkin\n\n65) MadWuher: Trade Y1 R1 Madwuher\n\n66) Trollkin: Move Y1 Trollkin Decapod10\n\n\n\n67) stoneaxe: Discover G1 Stoneaxe Y2 Solace\n\n68) MrMoto: Attack G3E Trollkin\n\n69) MadWuher: Build G2 Blarney\n\n70) Trollkin: Trade Y3 B3 Decapod10\n\n71) stoneaxe: Build G3 Stoneaxe\n\n72) MrMoto: Trade B1 R1 Mrmoto\n\n73) MadWuher: Move R1 Madwuher Blarney\n\n74) Trollkin: Build Y1 Trollkin\n\n75) stoneaxe: Sacrifice G3 Stoneaxe\nBuild Y3 Stoneaxe\nBuild R2 Decapod10\nBuild G3 Stoneaxe\n\n76) MrMoto: Build R2 Mrmoto\n\n77) MadWuher: Sacrifice G2 Blarney\nBuild G2 Madwuher\nBuild R2 Blarney\n\n78) Trollkin: Move B3 Decapod10 Popcorn\n\n\n79) stoneaxe: Move R2 Decapod10 Newgondor\n\n80) MrMoto: Attack Y1E Trollkin\n\n81) MadWuher: Trade R1 B1 Blarney\n\n82) Trollkin: Trade B3 R3 Popcorn\n\n83) stoneaxe: Sacrifice G1 Solace\nBuild R1 Decapod10\n\n84) MrMoto: Attack Y1E Trollkin\n\n85) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Blarney\nBuild G3 Madwuher\nBuild Y2 Madwuher\n\n86) stoneaxe: Trade R2 B2 Decapod10\n\n87) MrMoto: Discover B1 Maillot R2 Glomp\n\n88) MadWuher: Discover G2 Madwuher R3 Helios\n\n89) stoneaxe: Sacrifice G3 Stoneaxe\nBuild R2 Newgondor\nBuild R3 Newgondor\nBuild G3 Stoneaxe\n\n90) MrMoto: Build B2 Maillot\n\tstoneaxe: I&#39;m sorry, that was a typo.\n\n91) MadWuher: Build R3 Blarney\n\n92) stoneaxe: Discover R3 Newgondor B3 Bree\n\n93) MrMoto: Sacrifice Y2 Maillot\nDiscover B1 Maillot Y2 Sticky\nMove B2 Maillot Sticky\n\n94) MadWuher: Sacrifice Y2 Madwuher\nMove R3 Blarney Sticky\nMove G1 Blarney Madwuher\n\tstoneaxe: This board is too large for my brain to process.\n\n95) stoneaxe: Sacrifice Y2 Decapod10\nMove R3 Bree Maillot\nMove R3 Maillot Mrmoto\n\tMrMoto: If you think this is bad, I bet real-life outer space is at least twice as big!\n\n96) MrMoto: Sacrifice Y3 Popcorn\nMove B1 Sticky Stoneaxe\nMove B2 Sticky Stoneaxe\nMove B1 Glomp Stoneaxe\nCatastrophe Stoneaxe B\n\n97) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Sticky\nBuild Y2 Newbury\n\n98) stoneaxe: Sacrifice Y3 Stoneaxe\nMove R1 Decapod10 Sticky\nMove R1 Decapod10 Sticky\nMove R2 Newgondor Newbury\nCatastrophe Sticky Red\n\n99) MrMoto: Build R1 Mrmoto\nCatastrophe Mrmoto R\n\n100) MadWuher: Sacrifice R2 Blarney\nAttack R2S Newbury\nPass\n\tstoneaxe: If you think real-life outer space is bad, check out.... uhm... oh wait.  nevermind.\r\n\n\tstoneaxe: Observation:  It kind of makes it tough because the System&#39;s squares keep moving around anytime something changes.  It would be nicer if once a System was in one spot, it stayed there.  Its like you have to &quot;re-learn&quot; all the locations of Systems every time turn.  I doubt if I have the energy to start hacking away at the code though.  \r\nDoesn&#39;t seem like it would do this if we played over a real board.  Do you think the enhancement would justify a Forum posting though? That could help in 2P games too.\n\tMrMoto: I agree very much, it&#39;s very disorienting. I think it definitely justifies a forum post.\n\n101) stoneaxe: Sacrifice Y1 Newgondor\nMove B2 Decapod10 Maillot\n\n102) MrMoto: Trade B2 R2 Mrmoto\n\n103) MadWuher: Build Y1 Madwuher\n\n104) stoneaxe: Build Y2 Newgondor\n\n105) MrMoto: Sacrifice G2 Maillot\nBuild B1 Mrmoto\nBuild R1 Mrmoto\n\n106) MadWuher: Move Y2 Newbury Popcorn\n\n107) stoneaxe: Move G3 Stoneaxe Mrmoto\n\n108) MrMoto: Move R3 Trollkin Quacky\n\n109) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Blarney\nBuild G3 Madwuher\nBuild R1 Newbury\n\n110) stoneaxe: Sacrifice R2 Newgondor\nAttack R2W Mrmoto\nAttack B1W Mrmoto\n\n111) MrMoto: Attack B1S Mrmoto\n\tMadWuher: Sorry. Been sick for the past 6 days.\n\n112) MadWuher: Discover R2 Newbury B2 Hera\n\n113) stoneaxe: Attack R1W Mrmoto\n\n114) MrMoto: Move G3 Trollkin Quacky\n\n115) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Newbury\nBuild R2 Hera\n\n116) stoneaxe: Sacrifice R2 Mrmoto\nAttack B1W Mrmoto\nAttack B1W Mrmoto\n\n117) MadWuher: Sacrifice Y3 Madwuher\nMove R1 Newbury Stoneaxe\nMove R1 Newbury Stoneaxe\nMove R2 Hera Stoneaxe\nCatastrophe Stoneaxe R\n\n\tstoneaxe: Well, Great game to all of you!  It was fun!  There was a critical moment in the game where if I went after wuher, then moto would wipe me out, and if I went after moto, then wuher would wipe me out.  I wavered, and ended up attacking moto, which cost me some extra moves.  He seemed the more immediate threat, but by the time I got into position, you had built up.   I must learn more patience............ :)   And now the unstoppable MadWuher empire will rule the galaxy!\n\tMrMoto: Thanks for the game! I think I was too impatient as well, going for the attack instead of waiting for the other two players to weaken themselves ...\r\n\r\nIt was fun though!\n\tMadWuher: Thank you all for the game. These multiplayer games are a lot of fun. Trying to keep everything clear though is difficult.\r\n\n\nHomeworlds Online (SDG# 12058)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.11.27, Ended: 2008.12.8\nParticipants: MadWuher (S), MrMoto (N)\nWinner: MrMoto\n\n1) MrMoto: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld B1 Y2 G3\n\tMrMoto: Have fun!\n\n3) MrMoto: Build G1 Mrmoto\n\n4) MadWuher: Build G1 Madwuher\n\n5) MrMoto: Discover G1 Mrmoto B1 Supertonic\n\n6) MadWuher: Discover G1 Madwuher B3 Edora\n\n7) MrMoto: Build G1 Supertonic\n\n8) MadWuher: Build G2 Madwuher\n\n9) MrMoto: Trade G1 Y1 Supertonic\n\n10) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n11) MrMoto: Build G1 Mrmoto\n\n12) MadWuher: Build G2 Madwuher\n\n13) MrMoto: Sacrifice G3 Mrmoto\nBuild G2 Supertonic\nBuild G3 Mrmoto\nBuild G3 Mrmoto\n\n14) MadWuher: Trade G1 R1 Edora\n\n15) MrMoto: Discover G3 Mrmoto Y1 Morley\n\n16) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Bologna\nBuild G3 Madwuher\nBuild R1 Edora\n\n17) MrMoto: Sacrifice G3 Mrmoto\nBuild G3 Mrmoto\nBuild Y1 Supertonic\nBuild Y2 Supertonic\n\n18) MadWuher: Move G2 Bologna Supertonic\n\n19) MrMoto: Discover Y2 Supertonic R3 Toque\n\n20) MadWuher: Sacrifice R1 Edora\nAttack Y1 Supertonic\n\n21) MrMoto: Sacrifice G3 Mrmoto\nBuild G3 Mrmoto\nBuild Y2 Toque\nBuild Y3 Supertonic\n\n22) MadWuher: Sacrifice G1 Bologna\nBuild Y3 Supertonic\nCatastrophe Supertonic Y\n\n23) MrMoto: Sacrifice Y2 Toque\nDiscover G2 Supertonic Y3 Runcible\nDiscover G1 Supertonic B3 Spoon\n\tMadWuher: Couldn&#39;t help myself..... =)\n\tMrMoto: Ah! This game is truly complex. It took me a while to see how that was possible.\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Supertonic\nBuild G3 Madwuher\nBuild R1 Edora\n\n25) MrMoto: Sacrifice Y2 Toque\nMove G1 Spoon Madwuher\nMove G2 Runcible Madwuher\nCatastrophe Madwuher G\n\tMadWuher: It&#39;s too much fun to blow things up like that. Now it looks like we&#39;ll both be doing similar moves for a little while. =)\n\tMrMoto: It sure is fun to blow things up! ;)\n\tMadWuher: =) Upto another unrated game?\n\n\nHomeworlds Online (SDG# 12257)\nStarted: 2008.11.30, Ended: 2008.12.7\nParticipants: agentofchaos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld G3 Y1 B3\n\n3) ts52: Build G1 Ts52\n\tagentofchaos: Hi, enjoy the game. \n\n4) agentofchaos: Build B1 Agentofchaos\n\tts52: Thanks, you too!\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) agentofchaos: Discover B1 Agentofchaos G2 Castrafoon\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Build B1 Castrafoon\n\n9) ts52: Build G1 Grover\n\n10) agentofchaos: Build B2 Agentofchaos\n\n11) ts52: Build G2 Ts52\n\n12) agentofchaos: Build B2 Castrafoon\n\n13) ts52: Discover G2 Ts52 B3 Gonzo\n\n14) agentofchaos: Trade B1 Y1 Castrafoon\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Grover\n\n16) agentofchaos: Build Y1 Castrafoon\n\n17) ts52: Trade G3 Y3 Grover\n\n18) agentofchaos: Trade B3 G3 Agentofchaos\n\n19) ts52: Trade G2 Y2 Gonzo\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) ts52: Sacrifice Y2 Gonzo\nMove G1 Grover Castrafoon\nMove G1 Castrafoon Agentofchaos\nCatastrophe Agentofchaos Green\n\n22) agentofchaos: Trade B2 G2 Agentofchaos\n\n23) ts52: Move G1 Grover Agentofchaos\n\tagentofchaos: Clever play, didn&#39;t see that coming. \n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) ts52: Build G3 Agentofchaos\nCatastrophe Agentofchaos G\n\tts52: Yeah, the sacrifice =&gt; catastrophe can be hard to see coming.\n\n\tts52: thanks for the game\n\tagentofchaos: Thanks well played\n\nHomeworlds Online (SDG# 12142)\nStarted: 2008.11.30, Ended: 2008.12.28\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld G1 Y2 B3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) agentofchaos: Build B1 Agentofchaos\n\tTwoShort: Howdy\n\tagentofchaos: Hi there. I&#39;m new to this game, looks like fun. \n\n4) TwoShort: Build G1 Twoshort\n\n5) agentofchaos: Discover B1 Agentofchaos G3 Spiderworld\n\tTwoShort: Well then, I&#39;ll engage in my typical practice of giving new players pointers slightly too late for it to help them :) ... \r\n  I&#39;d recommend starting with a green ship; it&#39;s easiest, and usually best in any case.\n\tagentofchaos: OK, I&#39;ll keep that in my mind in later games (so it will help eventually!)\n\n6) TwoShort: Build G1 Twoshort\n\n7) agentofchaos: Build B1 Agentofchaos\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) agentofchaos: Build B1 Spiderworld\n\n10) TwoShort: Build G1 Twoshort\n\n11) agentofchaos: Build B2 Spiderworld\n\n12) TwoShort: Discover G1 Twoshort Y2 Yellonia\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) TwoShort: Build G2 Yellonia\n\n15) agentofchaos: Trade B1 Y1 Spiderworld\n\n16) TwoShort: Build Y1 Twoshort\n\tTwoShort: OK, since you&#39;re new I&#39;m going to give you the chance to undo that... Otherwise I&#39;m just going to call a catastrophe.  \n\tagentofchaos: Thanks for pointing that out, i forgot that catastrophes could be triggered even if you don&#39;t have  a ship in the system. \n\n17) agentofchaos: Build Y2 Spiderworld\n\n18) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n19) agentofchaos: Trade Y2 R2 Spiderworld\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yellonia\nBuild G3 Twoshort\n\n21) agentofchaos: Build Y2 Spiderworld\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Grogar\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\n23) agentofchaos: Build R1 Spiderworld\n\tagentofchaos: That was a clever sacrifice tactic, I&#39;ll remember to use that technique to build extra ships. \n\tTwoShort: That&#39;s called &quot;the Factory&quot;, and it&#39;s a big part of why I recommend starting with a green ship.  Because if your opponent gets a factory going and you don&#39;t, it&#39;s really bad... :)\n\n24) TwoShort: Trade G2 R2 Twoshort\n\tagentofchaos: The factory system is awesome!\n\n25) agentofchaos: Trade B3 Y3 Agentofchaos\n\n26) TwoShort: Sacrifice Y1 Twoshort\nDiscover Y3 Grogar R3 Deathstar\n\n27) agentofchaos: Trade Y3 R3 Agentofchaos\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Deathstar\nBuild Y3 Grogar\nBuild G2 Twoshort\n\n29) agentofchaos: Discover B1 Agentofchaos R3 Ectopia\n\n30) TwoShort: Move Y3 Deathstar Agentofchaos\n\n31) agentofchaos: Attack Y3 Agentofchaos\n\n32) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Deathstar\nMove Y1 Deathstar Agentofchaos\nMove Y1 Deathstar Agentofchaos\nCatastrophe Agentofchaos Yellow\n\n33) agentofchaos: Trade B2 G2 Spiderworld\n\n34) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yellonia Agentofchaos\nMove G2 Yellonia Agentofchaos\nMove G3 Yellonia Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: Clever play. I&#39;m starting to get a clearer sense of the strategy in this game.\n\tTwoShort: Three-pointers are the key; they represent such a huge ability to affect the game that if you can get any more 3 pointers than the other guy you can usually find a way to turn that into victory.\n\tagentofchaos: Well played. Thanks for the playing tips, I&#39;ll keep them in mind. \n\nHomeworlds Online (SDG# 12183)\nStarted: 2008.11.30, Ended: 2008.12.7\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 12220)\nStarted: 2008.11.30, Ended: 2009.1.9\nParticipants: agentofchaos (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) agentofchaos: Homeworld G1 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\tagentofchaos: Hi, enjoy the game. \n\tMadWuher: Same to you.\n\n4) agentofchaos: Build Y1 Agentofchaos\n\n5) MadWuher: Build G1 Madwuher\n\n6) agentofchaos: Discover Y1 Agentofchaos G3 Leviathan\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) agentofchaos: Build Y1 Leviathan\n\n9) MadWuher: Discover G1 Madwuher B1 Edora\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) MadWuher: Build G2 Madwuher\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) MadWuher: Build G2 Edora\n\n14) agentofchaos: Trade Y3 G3 Agentofchaos\n\n15) MadWuher: Build Y2 Madwuher\n\n16) agentofchaos: Build G2 Agentofchaos\n\n17) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Edora Leviathan\nMove G1 Leviathan Agentofchaos\nCatastrophe Agentofchaos G\n\n18) agentofchaos: Trade Y2 R2 Agentofchaos\n\tagentofchaos: Oh crud, good move :-)\n\n19) MadWuher: Build Y2 Madwuher\n\n20) agentofchaos: Trade Y1 G1 Agentofchaos\n\n21) MadWuher: Discover G2 Madwuher B1 Bologna\n\n22) agentofchaos: Build G1 Agentofchaos\n\n23) MadWuher: Build G2 Madwuher\n\n24) agentofchaos: Build R1 Agentofchaos\n\n25) MadWuher: Build G3 Edora\n\n26) agentofchaos: Trade G1 Y1 Agentofchaos\n\n27) MadWuher: Trade G2 R2 Madwuher\n\n28) agentofchaos: Build G1 Agentofchaos\n\n29) MadWuher: Sacrifice G3 Edora\nBuild G2 Madwuher\nBuild G3 Edora\nBuild G3 Bologna\n\n30) agentofchaos: Build R1 Agentofchaos\n\n31) MadWuher: Move Y2 Madwuher Edora\n\n32) agentofchaos: Build Y2 Agentofchaos\n\n33) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild Y2 Madwuher\nBuild Y3 Edora\n\n34) agentofchaos: Discover Y1 Leviathan B2 Cryoferno\n\n35) MadWuher: Move G3 Edora Agentofchaos\n\n36) agentofchaos: Move G1 Agentofchaos Leviathan\n\n37) MadWuher: Sacrifice Y2 Edora\nMove Y2 Madwuher Bologna\nMove R2 Madwuher Bologna\n\n38) agentofchaos: Move R1 Agentofchaos Leviathan\n\n39) MadWuher: Sacrifice G3 Bologna\nBuild G3 Bologna\nBuild Y2 Edora\nBuild Y3 Bologna\n\n40) agentofchaos: Move G1 Leviathan Cryoferno\n\n41) MadWuher: Sacrifice R2 Bologna\nAttack R2 Agentofchaos\nAttack Y2 Agentofchaos\n\n\tagentofchaos: well played\n\tMadWuher: thanks. whenever you&#39;re up to another, just start one of my challenges.\n\nHomeworlds Online (SDG# 12252)\nVariants: &quot;Hard time&quot;\nStarted: 2008.11.30, Ended: 2009.1.8\nParticipants: Jesse (S), agentofchaos (N)\nWinner: Jesse\n\n1) agentofchaos: Homeworld G1 B2 Y3\n\n2) Jesse: Homeworld B3 R1 G3\n\n3) agentofchaos: Build Y1 Agentofchaos\n\tJesse: Have a good game.\n\tagentofchaos: Thanks you too! I only just started playing as of yesterday, looks like fun. \n\n4) Jesse: Build G1 Jesse\n\n5) agentofchaos: Discover Y1 Agentofchaos G3 Wendigo\n\tJesse: Since your profile says you like Chess variants, I expect you will enjoy it.  I&#39;ll be happy to help you along the way to learning Homeworlds strategy.\n\n6) Jesse: Build G1 Jesse\n\n7) agentofchaos: Build Y1 Wendigo\n\n8) Jesse: Trade G3 Y3 Jesse\n\n9) agentofchaos: Build Y1 Wendigo\n\tagentofchaos: Yes another player recommended this game to me based on my liking of chess variants. i also like space themes, so that&#39;s good too. Any strategy tips would be welcome. \n\n10) Jesse: Build Y2 Jesse\n\n11) agentofchaos: Discover Y1 Wendigo B1 Freehold\n\tJesse: The games require similar skills, have similar issues of attack and defense, and have similar scope in space and piece variety.  Yet, they do no feel the same to me.  Homeworlds feels more strategically driven, with most of the decisions being decided on fuzzy reasoning about trade-offs of strengths in different areas.  Chess has sharper decisions, I think.  They are still more similar than, say, Chess and Go.  It&#39;s more the Chess variants that make me think you are likely to enjoy Homeworlds than Chess itself.  It shows you like different things in roughly the same vein.\r\n\r\nAs for strategy tips, let&#39;s start with this: To avoid catastrophes, you generally want to spread out your ships of the same color, and diversify the colors in any given system.  It&#39;s harder and much more expensive for your opponent to drop two ships into your system to cause a catastrophe than it is for him to drop in one, and it&#39;s harder and more expensive still to drop in three.  Spread and diversification of your ships also improves your economic strength.  Control of the global stash economy is sort of like control of the center in Chess.  It gives you the strength and flexibility to do what you want.  Without it, you are forced into awkward positions from which it is difficult to gain the advantage.\n\n12) Jesse: Discover Y2 Jesse B2 Bloom\n\tagentofchaos: Thanks for the tips, the analogies with chess are quite interesting. \n\n13) agentofchaos: Build Y2 Wendigo\n\n14) Jesse: Build G2 Jesse\n\n15) agentofchaos: Trade Y3 G3 Agentofchaos\n\n16) Jesse: Move G1 Jesse Bloom\n\n17) agentofchaos: Move Y2 Wendigo Freehold\n\tJesse: Careful with that.  Four pieces of the same color can trigger a catastrophe.  If you build another green, that makes three, and I now have a g1 two steps from your homeworld, which means I can get it there in one turn with a y2 sacrifice.\n\tagentofchaos: Thanks for the heads up. deeper and deeper... :-)\n\n18) Jesse: Build Y2 Bloom\n\n19) agentofchaos: Trade G3 Y3 Agentofchaos\n\n20) Jesse: Build Y3 Jesse\n\n21) agentofchaos: Trade Y2 G2 Freehold\n\n22) Jesse: Trade Y2 R2 Bloom\n\n23) agentofchaos: Trade G2 R2 Freehold\n\tJesse: There is an ancient Homeworlds proverb: When your opponent picks up a gun, you should pick up a gun.  It refers to not leaving yourself vulnerable to capture when your opponent gets a red ship.\n\n24) Jesse: Build G2 Bloom\n\tagentofchaos: Sounds like a wise proverb!\n\n25) agentofchaos: Build Y2 Agentofchaos\n\n26) Jesse: Build G2 Bloom\n\n27) agentofchaos: Trade Y3 G3 Agentofchaos\n\n28) Jesse: Discover G2 Bloom Y3 Tide\n\n29) agentofchaos: Trade G3 R3 Agentofchaos\n\tJesse: Your home is one step from Tide and two steps from Bloom, so a Y3 sacrifice can put two of my ships there.\n\n30) Jesse: Build G3 Tide\n\n31) agentofchaos: Build R1 Agentofchaos\n\n32) Jesse: Sacrifice G3 Tide\nBuild G3 Tide\nBuild G3 Bloom\nBuild Y2 Bloom\n\tagentofchaos: Thanks for the heads up, I&#39;ll watch out for sacrifice opportunities. \n\n33) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y1 Freehold Bloom\nMove Y1 Wendigo Bloom\nCatastrophe Bloom Y\n\tJesse: This is a common maneuver called &quot;the factory&quot;.\n\tagentofchaos: Yes, another player told me about the factory, it&#39;s an awesome tactic. \n\n34) Jesse: Trade G2 Y2 Bloom\n\n35) agentofchaos: Build Y1 Wendigo\n\n36) Jesse: Move R2 Bloom Wendigo\n\n\n37) agentofchaos: Move Y1 Wendigo Freehold\n\n38) Jesse: Attack Y1 Wendigo\n\n39) agentofchaos: Trade R1 Y1 Agentofchaos\n\n40) Jesse: Sacrifice G3 Bloom\nBuild G2 Bloom\nBuild G3 Bloom\nBuild R1 Wendigo\n\n41) agentofchaos: Build Y2 Agentofchaos\n\n42) Jesse: Trade G3 R3 Bloom\n\n43) agentofchaos: Discover R2 Freehold G3 Titian\n\n44) Jesse: Sacrifice G3 Tide\nBuild G3 Tide\nBuild Y2 Wendigo\nBuild R1 Bloom\n\n45) agentofchaos: Build R2 Agentofchaos\n\tJesse: Nice move, blocking me from rebuilding the g3, by the way.\n\n46) Jesse: Sacrifice Y3 Jesse\nMove R1 Wendigo Agentofchaos\nMove R2 Wendigo Agentofchaos\nMove G3 Tide Agentofchaos\nCatastrophe Agentofchaos R\n\tJesse: Ah, now that&#39;s trouble for you.\n\n47) agentofchaos: Build Y3 Agentofchaos\n\n48) Jesse: Sacrifice R3 Bloom\nAttack Y3 Agentofchaos\nAttack Y2 Agentofchaos\nAttack Y1 Agentofchaos\n\tagentofchaos: Feeling quite disarmed I am...\n\tJesse: Thanks for the game.  I hope you learned a few things.\n\n\nHomeworlds Online (SDG# 12269)\nVariants: &quot;Unrated&quot;\nStarted: 2008.12.1, Ended: 2009.1.23\nParticipants: fnord (S), MathGod (N)\nWinner: MathGod\n\n1) MathGod: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld B3 Y2 G3\n\n3) MathGod: Build G1 Mathgod\n\n4) fnord: Build G1 Fnord\n\n5) MathGod: Discover G1 Mathgod Y3 Yelena\n\n6) fnord: Trade G1 Y1 Fnord\n\n7) MathGod: Build G1 Mathgod\n\n8) fnord: Build Y1 Fnord\n\n9) MathGod: Trade G1 R1 Mathgod\n\n10) fnord: Discover Y1 Fnord B1 Eris\n\n11) MathGod: Build G1 Mathgod\n\n12) fnord: Trade Y1 G1 Eris\n\n13) MathGod: Build G2 Mathgod\n\n14) fnord: Build G2 Fnord\n\n15) MathGod: Sacrifice G3 Mathgod\nBuild G2 Yelena\nBuild G3 Yelena\nBuild G3 Mathgod\n\n16) fnord: Trade G2 R2 Fnord\n\n17) MathGod: Discover G2 Yelena B1 Belena\n\tfnord: Gah, I can&#39;t count, can I.\n\n18) fnord: Build G2 Eris\n\n19) MathGod: Trade G1 B1 Mathgod\n\n20) fnord: Move R2 Fnord Eris\n\n21) MathGod: Build B2 Mathgod\n\n22) fnord: Trade G2 Y2 Eris\n\n23) MathGod: Move B2 Mathgod Yelena\n\n24) fnord: Build R1 Eris\n\n25) MathGod: Sacrifice G3 Mathgod\nBuild G1 Belena\nBuild G2 Belena\nBuild G3 Mathgod\n\n26) fnord: Sacrifice Y2 Eris\nMove G1 Eris Yelena\nMove G1 Yelena Belena\nCatastrophe Belena Green\n\n27) MathGod: Move G3 Yelena Eris\n\n28) fnord: Trade R2 Y2 Eris\n\n29) MathGod: Sacrifice R1 Mathgod\nAttack R1 Eris\n\n30) fnord: Build G1 Fnord\n\n31) MathGod: Attack Y2 Eris\n\n32) fnord: Trade G3 R3 Fnord\n\n33) MathGod: Build B1 Yelena\n\n34) fnord: Build R1 Fnord\n\n35) MathGod: Discover B1 Yelena Y2 Hail\n\n36) fnord: Discover Y1 Fnord G1 Chaos\n\n37) MathGod: Sacrifice G3 Mathgod\nBuild B2 Yelena\nBuild B3 Mathgod\nBuild B3 Hail\n\n38) fnord: Build G2 Fnord\n\n39) MathGod: Build G2 Eris\n\n40) fnord: Move G1 Fnord Eris\n\n41) MathGod: Sacrifice G3 Eris\nBuild G3 Mathgod\nBuild G3 Mathgod\nBuild G3 Yelena\n\n42) fnord: Trade R3 Y3 Fnord\n\n43) MathGod: Attack G1 Eris\n\n44) fnord: Sacrifice Y3 Fnord\nMove G2 Fnord Chaos\nMove G2 Chaos Yelena\nMove G2 Yelena Mathgod\nCatastrophe Mathgod Green\n\n45) MathGod: Move G2 Eris Fnord\n\n46) fnord: Move Y1 Chaos Fnord\n\n47) MathGod: Sacrifice R1 Eris\nAttack R1 Fnord\n\n48) fnord: Trade Y1 G1 Fnord\n\n49) MathGod: Attack G1 Fnord\n\n\tMathGod: Thank you for the game\n\tfnord: And thank you, too!\n\nHomeworlds Online (SDG# 12295)\nStarted: 2008.12.1, Ended: 2008.12.21\nParticipants: MathGod (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MathGod: Homeworld Y1 B2 G3\n\tMathGod: Hi there. Hope you enjoy the game\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy... have a good game.\n\n4) MathGod: Build G1 Mathgod\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MathGod: Build G1 Mathgod\n\n7) TwoShort: Build Y1 Twoshort\n\n8) MathGod: Discover G1 Mathgod Y3 Yelonia\n\n9) TwoShort: Build Y2 Twoshort\n\n10) MathGod: Trade G3 Y3 Mathgod\n\tTwoShort: Hmmm... &quot;Yelonia&quot; is a name I use periodically; coincidence, or are you subtly telling me you&#39;ve been perusing my past games?\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\tMathGod: Saw it once, didn&#39;t know it was yours. Want me to take it back? =D\n\n12) MathGod: Trade G1 R1 Mathgod\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n14) MathGod: Build G1 Yelonia\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) MathGod: Move G1 Yelonia Mathgod\n\n17) TwoShort: Move Y2 Grogar Yelonia\n\n18) MathGod: Discover G1 Yelonia Y2 Yell-o\n\n19) TwoShort: Move R2 Twoshort Yell-o\n\n20) MathGod: Build G1 Yell-o\n\n21) TwoShort: Trade Y3 G3 Twoshort\n\n22) MathGod: Build G2 Mathgod\n\n23) TwoShort: Attack G1S Yell-o\n\n24) MathGod: Sacrifice G2 Mathgod\nBuild G2 Yell-o\nBuild G2 Mathgod\n\n25) TwoShort: Attack G2S Yell-o\n\n26) MathGod: Sacrifice G2 Mathgod\nBuild G2 Yell-o\nBuild G3 Mathgod\nCatastrophe Yell-o G\n\n27) TwoShort: Build Y3 Twoshort\n\tMathGod: Woo-hoo!!!!\n\n28) MathGod: Discover Y3 Mathgod B3 Bellyflop\n\tMathGod: D&#39;oh\n\n29) TwoShort: Build G1 Twoshort\n\n30) MathGod: Move G1 Mathgod Bellyflop\n\n31) TwoShort: Trade G1 B1 Twoshort\n\n32) MathGod: Build G1 Bellyflop\n\n33) TwoShort: Move B1 Twoshort Grogar\n\n34) MathGod: Discover G1 Bellyflop B2 Gumboot\n\n35) TwoShort: Discover B1 Grogar G3 Deathstar\n\n36) MathGod: Build G1 Mathgod\n\n37) TwoShort: Build B1 Deathstar\n\n38) MathGod: Sacrifice G3 Mathgod\nBuild G2 Bellyflop\nBuild G2 Gumboot\nBuild G3 Mathgod\n\n39) TwoShort: Discover Y2 Grogar B3 Blitzen\n\n40) MathGod: Build R1 Mathgod\n\n41) TwoShort: Sacrifice Y2 Yelonia\nMove B1 Deathstar Mathgod\nMove B1 Deathstar Mathgod\n\n42) MathGod: Build G3 Gumboot\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Mathgod\nBuild Y2 Blitzen\nBuild Y3 Blitzen\nCatastrophe Mathgod Blue\n\n44) MathGod: Sacrifice Y3 Bellyflop\nMove G1 Bellyflop Grogar\nMove G2 Bellyflop Grogar\nMove G1 Mathgod Grogar\nCatastrophe Grogar G\n\tMathGod: Ohhhh. Now I&#39;m in trouble. Thanks for the game.\n\tTwoShort: Thanks for the game,\n\n45) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Blitzen Mathgod\nMove Y2 Blitzen Mathgod\nMove Y2 Blitzen Mathgod\nCatastrophe Mathgod Yellow\n\tMathGod: Is it be better etiquette to let my opponent playout the win? Or should I bow out gracefully by resigning?\n\tTwoShort: When the game is completely decided, it&#39;s certainly not impolite to resign - nobody expects you to slog on once it&#39;s hopeless.  But I, at least, also have no problem with playing it out to the very end.  If nothing else, it&#39;s good practice to see if you can stave off the end for even one more turn.  \n\tTwoShort: All of which is academic for this game, I&#39;m afraid :)\n\tMathGod: Thanks for the information and the game. I really appreciate it.\n\n\nHomeworlds Online (SDG# 12296)\nStarted: 2008.12.7, Ended: 2008.12.23\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 12359)\nStarted: 2008.12.7, Ended: 2008.12.23\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld G3 B1 Y3\n\tagentofchaos: G3 B1 Y2 \n\n\tagentofchaos: Hi, enjoy the game!\n\nHomeworlds Online (SDG# 12307)\nStarted: 2008.12.7, Ended: 2008.12.11\nParticipants: TwoShort (S), MadWuher (N)\nWinner: TwoShort\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) MadWuher: B G1 Madwuher\n\n4) TwoShort: Build G1 Twoshort\n\n5) MadWuher: T G1 Y1 Madwuher\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) MadWuher: Build G1 Madwuher\n\n8) TwoShort: Build G1 Twoshort\n\n9) MadWuher: Discover G1 Madwuher B1 Edora\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) MadWuher: Build G1 Madwuher\n\n12) TwoShort: Build G2 Twoshort\n\n13) MadWuher: Build G2 Edora\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) MadWuher: Trade G2 Y2 Edora\n\n16) TwoShort: Trade G2 R2 Twoshort\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Madwuher\n\n18) TwoShort: Discover G1 Yolonda Y1 Yak\n\n19) MadWuher: Trade G1 R1 Madwuher\n\n20) TwoShort: Discover R2 Twoshort Y3 Yoyo\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild Y2 Madwuher\nBuild Y3 Madwuher\n\n22) TwoShort: Move G2 Twoshort Yoyo\n\n23) MadWuher: Sacrifice Y1 Madwuher\nDiscover G2 Edora G3 Bologna\n\n24) TwoShort: Build R1 Yoyo\n\n25) MadWuher: Build R2 Madwuher\n\n26) TwoShort: Discover R2 Yoyo Y1 Yanyan\n\n27) MadWuher: Sacrifice Y2 Madwuher\nMove R1 Madwuher Edora\nDiscover R2 Madwuher G1 Camelot\n\n28) TwoShort: Sacrifice G2 Yoyo\nBuild R3 Yoyo\nBuild R3 Yanyan\n\n29) MadWuher: Build R3 Edora\n\n30) TwoShort: Build Y2 Twoshort\n\n31) MadWuher: Build G2 Edora\n\n32) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n33) MadWuher: Sacrifice G2 Bologna\nBuild G2 Edora\nBuild G3 Madwuher\n\n34) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yak\nBuild Y3 Bluestar\nPass\n\n35) MadWuher: Trade G2 B2 Edora\n\n36) TwoShort: Sacrifice Y2 Bluestar\nMove R3 Yoyo Edora\nMove R1 Yoyo Edora\nCatastrophe Edora Red\n\n37) MadWuher: Sacrifice Y2 Edora\nMove G3 Madwuher Edora\nMove G2 Edora Madwuher\n\n38) TwoShort: Sacrifice G3 Yak\nBuild Y2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluestar\n\tTwoShort: Sorry.\n\tMadWuher: Not a problem.....\n\n39) MadWuher: Discover G2 Madwuher B1 Bologna\n\n40) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluestar Edora\nMove Y3 Bluestar Camelot\n\n41) MadWuher: Sacrifice R2 Camelot\nAttack Y3 Edora\nPass\n\n42) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Camelot Madwuher\nMove R3 Yanyan Madwuher\n\n43) MadWuher: Sacrifice Y2 Edora\nMove G3 Edora Madwuher\nMove Y3 Edora Madwuher\n\n44) TwoShort: Sacrifice R3 Madwuher\nAttack Y3N Madwuher\nAttack Y3N Madwuher\nAttack G3N Madwuher\n\n45) MadWuher: Sacrifice G2 Bologna\nBuild G1 Madwuher\nBuild G2 Madwuher\n\tMadWuher: D&#39;oh....... Didn&#39;t see that one coming so quickly.\n\n46) TwoShort: Pass\nCatastrophe Madwuher Green\n\tMadWuher: Oh well, C&#39;est la vie.\r\n\r\nAny way I could have gotten out of that mess?\n\tMadWuher: How many moves ago did you plan this/see this coming?\n\tTwoShort: Well, you shouldn&#39;t have let me get ahead on 3 points way back at the beginning.  But you were doing a remarkably good job holding me off after that until right after the red catastrophe.  I think I was expecting you to go after the big yellows at that point, but instead you let me take them.  At that point it was probably over; once I jumped into your systems with the y3s you could have done something desperate to preserve the r2 and live a bit longer, but it would have been ugly.\r\n  Anyway, thanks for the game!\n\n\tMadWuher: Thanks for the game. I&#39;ll replay that game again with my pieces and see what I could do better for the next time we play. (After all, I have to beat you at least once, right?)\n\tTwoShort: I hadn&#39;t seen your &quot;how many moves&quot; question when I wrote that last message, so to answer that: I guess I thought through this sequence when I was considering the move that built the 3 yellow pieces.  But not really as what I expected to happen; rather as &quot;If I do that, he could set up to take the g3, but if he does I can threaten Edora and his r2, and he&#39;ll have to sacrifice a yellow and run away with whatever he can, because if he leaves the r2 I can take it and threaten to pounce on his homeworld, or if he uses it I can pounce immediately.&quot;  So I guess that&#39;s 2 of my moves in advance, but it&#39;s not like I considered every other thing you could have done; I tend to just look for what the other guy could do that might make my move not worth it, and see if I can respond to that.\r\n  In any case, I&#39;m happy to play anytime...\n\nHomeworlds Online (SDG# 12362)\nStarted: 2008.12.7, Ended: 2009.1.18\nParticipants: MadWuher (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) MadWuher: Homeworld R2 B3 G3\n\tts52: Have a good game!\n\tMadWuher: You too.\n\n3) ts52: Build G1 Ts52\n\n4) MadWuher: Build G1 Madwuher\n\n5) ts52: Trade G1 R1 Ts52\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) ts52: Build G1 Ts52\n\n8) MadWuher: Build G1 Madwuher\n\n9) ts52: Discover G1 Ts52 B3 Grover\n\n10) MadWuher: Discover G1 Madwuher Y1 Edora\n\n11) ts52: Build R1 Ts52\n\n12) MadWuher: Build Y1 Madwuher\n\n13) ts52: Trade R1 B1 Ts52\n\n14) MadWuher: Build Y2 Madwuher\n\n15) ts52: Discover B1 Ts52 G3 Kermit\n\n16) MadWuher: Trade Y2 B2 Madwuher\n\n17) ts52: Build G1 Ts52\n\n18) MadWuher: Build G2 Madwuher\n\n19) ts52: Build G2 Grover\n\n20) MadWuher: Build G2 Edora\n\n21) ts52: Trade G2 Y2 Grover\n\n22) MadWuher: Sacrifice Y1 Madwuher\nDiscover G2 Edora Y3 Bologna\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Ts52\n\n24) MadWuher: Move B2 Madwuher Edora\n\n25) ts52: Move R1 Ts52 Grover\n\n26) MadWuher: Trade G1 R1 Edora\n\n27) ts52: Build R2 Ts52\n\n28) MadWuher: Trade G2 Y2 Madwuher\n\n29) ts52: Move R2 Ts52 Kermit\n\n30) MadWuher: Build G1 Madwuher\n\n31) ts52: Build B1 Kermit\n\n32) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n33) ts52: Trade B1 Y1 Kermit\n\n34) MadWuher: Sacrifice Y2 Madwuher\nMove G2 Bologna Ts52\nMove G2 Bologna Ts52\nCatastrophe Ts52 G\n\n35) ts52: Sacrifice G2 Grover\nBuild R2 Grover\nBuild R3 Ts52\n\tMadWuher: Had to do something eh? I was hoping to find time to setup a better move but felt I better do something soon. I&#39;ll be in and out of touch for a few days but I should be able to login on Sunday (by the earliest).\n\n36) MadWuher: Sacrifice G1 Madwuher\nBuild R3 Edora\n\tts52: No problem. Happy Holidays!\n\n37) ts52: Trade R1 G1 Ts52\n\n38) MadWuher: Trade B2 G2 Edora\n\n39) ts52: Trade R2 G2 Grover\n\n40) MadWuher: Build G1 Madwuher\n\n41) ts52: Sacrifice G2 Grover\nBuild Y2 Grover\nBuild Y3 Kermit\n\n42) MadWuher: Build Y3 Madwuher\n\n43) ts52: Build Y3 Grover\n\n44) MadWuher: Sacrifice Y3 Madwuher\nMove Y1 Madwuher Edora\nMove Y1 Edora Grover\nMove G2 Edora Grover\nCatastrophe Grover Y\n\n45) ts52: Build G2 Ts52\n\n46) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Madwuher\nCatastrophe Grover G\n\n47) ts52: Move G2 Ts52 Grover\n\n48) MadWuher: Trade G1 Y1 Madwuher\n\n49) ts52: Build G1 Grover\n\n50) MadWuher: Build Y2 Madwuher\n\n51) ts52: Trade G2 Y2 Grover\n\n52) MadWuher: Trade Y1 G1 Madwuher\n\n53) ts52: Build G2 Grover\n\n54) MadWuher: Move G1 Madwuher Edora\n\n55) ts52: Sacrifice G2 Grover\nBuild Y1 Kermit\nBuild Y3 Grover\n\n56) MadWuher: Build Y3 Madwuher\n\n57) ts52: Sacrifice Y3 Kermit\nMove Y1 Kermit Edora\nMove Y1 Kermit Edora\nMove Y2 Grover Edora\nCatastrophe Edora Yellow\n\n58) MadWuher: Build G1 Madwuher\n\n59) ts52: Build G2 Grover\n\n60) MadWuher: Discover G3 Madwuher B1 Edora\n\n61) ts52: Move Y3 Grover Edora\n\n62) MadWuher: Sacrifice Y2 Madwuher\nDiscover G3 Edora Y3 Bologna\nPass\n\tMadWuher: Wow, I seem to be getting stomped be you. I have no idea where my minds been lately.\n\n63) ts52: Build G2 Grover\n\n64) MadWuher: Build G2 Bologna\n\n65) ts52: Build G3 Ts52\n\n66) MadWuher: Build Y1 Madwuher\n\n67) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Edora\nBuild B2 Kermit\n\n68) MadWuher: Discover Y1 Madwuher R1 Camelot\n\n69) ts52: Move Y1 Edora Kermit\n\n70) MadWuher: Sacrifice G3 Bologna\nBuild G3 Madwuher\nBuild Y1 Camelot\nBuild Y2 Madwuher\n\n71) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Edora\nBuild B2 Kermit\n\n72) MadWuher: Discover Y1 Camelot B3 Marco\n\n73) ts52: Move B2 Kermit Camelot\n\n74) MadWuher: Sacrifice G2 Bologna\nBuild Y3 Camelot\nPass\n\n75) ts52: Attack Y1S Camelot\n\n76) MadWuher: Attack B2 Camelot\n\n77) ts52: Move Y1 Camelot Grover\n\n78) MadWuher: Trade Y1 R1 Marco\n\n79) ts52: Move G1 Grover Edora\n\n80) MadWuher: Move G1 Madwuher Camelot\n\n81) ts52: Sacrifice G3 Ts52\nBuild G2 Edora\nBuild G3 Ts52\nBuild Y1 Grover\n\n82) MadWuher: Build B2 Camelot\n\n83) ts52: Sacrifice Y3 Edora\nMove Y2 Edora Madwuher\nMove G2 Edora Madwuher\nMove G1 Edora Madwuher\n\n84) MadWuher: Sacrifice B2 Camelot\nTrade Y3 R3 Madwuher\nTrade Y2 B2 Madwuher\n\n85) ts52: Sacrifice B2 Kermit\nTrade G2 B2 Madwuher\nTrade G1 B1 Madwuher\nCatastrophe Madwuher Blue\n\n86) MadWuher: Sacrifice G3 Madwuher\nBuild R2 Marco\nBuild R3 Marco\nBuild B1 Camelot\n\n87) ts52: Sacrifice Y1 Grover\nDiscover G2 Grover Y1 Zoe\n\tMadWuher: Woo hoo. I can go out in style !!!\n\tMadWuher: Thanks for the game\n\n88) MadWuher: Attack Y2 Madwuher\n\n89) ts52: Sacrifice G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Grover\nBuild B2 Kermit\n\n90) MadWuher: Sacrifice B2 Camelot\nTrade R3 G3 Madwuher\nTrade R2 G2 Marco\n\n91) ts52: Sacrifice G2 Grover\nBuild R2 Grover\nBuild R3 Kermit\n\n92) MadWuher: Build Y3 Camelot\n\n93) ts52: Sacrifice Y2 Kermit\nMove Y1 Kermit Camelot\nMove Y1 Grover Camelot\nCatastrophe Camelot Yellow\n\n94) MadWuher: Build B2 Camelot\n\tMadWuher: I&#39;m trying to figure out why you haven&#39;t just taken me out yet. \n\n95) ts52: Trade B2 Y2 Kermit\n\tts52: I haven&#39;t seen a certain way to take you out. I&#39;m working on it though...\n\n96) MadWuher: Build G1 Madwuher\n\tMadWuher: What? The red catastrophe in my home system doesn&#39;t work for you? \n\n97) ts52: Sacrifice Y3 Grover\nMove R1 Grover Madwuher\nMove R2 Grover Madwuher\nMove R2 Kermit Madwuher\nCatastrophe Madwuher Red\n\tts52: Wow, I forgot about being able to get there straight from 3s. Sorry about that.\n\tts52: Now I feel like an idiot. Sorry about that. Thanks for the game.\n\tMadWuher: Not a`problem. I just thought you were trying to rub it in or something. =) \n\n\nHomeworlds Online (SDG# 12366)\nStarted: 2008.12.11, Ended: 2008.12.29\nParticipants: apeloverage (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) apeloverage: Homeworld B1 G2 Y3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tapeloverage: Hi!\n\n4) apeloverage: Build Y1 Apeloverage\n\n5) TwoShort: Build G1 Twoshort\n\n6) apeloverage: Discover Y1 Apeloverage B3 Apeloverage1\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) apeloverage: Trade Y1 G1 Apeloverage1\n\n9) TwoShort: Build Y1 Twoshort\n\n10) apeloverage: Build Y1 Apeloverage\n\n11) TwoShort: Build Y2 Twoshort\n\n12) apeloverage: Discover Y3 Apeloverage B3 Apeloverage2\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) apeloverage: Discover Y3 Apeloverage2 B2 Apeloverage0\n\n15) TwoShort: Trade G1 R1 Twoshort\n\n16) apeloverage: Trade Y3 R3 Apeloverage0\n\n17) TwoShort: Build Y2 Grogar\n\n18) apeloverage: Build Y2 Apeloverage\n\n19) TwoShort: Build Y3 Grogar\n\n20) apeloverage: Build Y3 Apeloverage\n\n21) TwoShort: Sacrifice Y2 Grogar\nDiscover Y1 Grogar B3 Bluebird\nMove Y1 Bluebird Apeloverage\nCatastrophe Apeloverage Yellow\n\n\n\nHomeworlds Online (SDG# 12294)\nVariants: &quot;Hard time&quot;\nStarted: 2008.12.15, Ended: 2009.2.22\nParticipants: MrMoto (S), MadWuher (W), apeloverage (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) apeloverage: Homeworld B1 G2 Y3\n\tagentofchaos: Hi everybody, thanks for joining - I think this will be a great game!\n\tMrMoto: Have fun!\n\n2) agentofchaos: Homeworld Y3 B1 G3\n\n3) MrMoto: Homeworld G3 Y2 B3\n\n4) MadWuher: Homeworld R1 B2 G3\n\n5) apeloverage: Build Y1 Apeloverage\n\tapeloverage: Thanks agentofchaos.\n\n6) agentofchaos: Build G1 Agentofchaos\n\tMadWuher: Let the battle begin!!!!\n\tMadWuher: Uhhh. I mean, have a good game.\n\tagentofchaos: Same thing! :-)\n\n7) MrMoto: Build B1 Mrmoto\n\n8) MadWuher: Build G1 Madwuher\n\n9) apeloverage: Discover Y3 Apeloverage G3 Apeloverage1\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) MrMoto: Discover B1 Mrmoto Y1 Stout\n\n12) MadWuher: Trade G1 Y1 Madwuher\n\n13) apeloverage: Build Y1 Apeloverage1\n\tMadWuher: apeloverage, you may not want to move your size 3 ship out of your home system. If someone moves their size 3 ship in, you will have no defense against their attack. Just sayin&#39;.\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\tagentofchaos: t g1 r1 agentofchaos\n\tagentofchaos: oops sorry, keep getting the boxes mixed up...\r\n\n\n15) MrMoto: Build B1 Mrmoto\n\n16) MadWuher: Build G1 Madwuher\n\n17) apeloverage: Discover Y1 Apeloverage1 G1 Apeloverage2\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) MrMoto: Build B1 Mrmoto\n\n20) MadWuher: Discover G1 Madwuher Y3 Edora\n\n21) apeloverage: Build Y1 Apeloverage1\n\n22) agentofchaos: Discover G1 Agentofchaos Y2 Zurvan\n\n23) MrMoto: Trade B1 G1 Mrmoto\n\n24) MrMoto: Build G2 Mrmoto\n\n25) apeloverage: Build Y2 Apeloverage\n\n26) agentofchaos: Discover G1 Agentofchaos Y2 Argo\n\tMadWuher: D&#39;oh.  Sorry guys. Guess I&#39;ll be sitting this one out. Hope to play against each of you soon.\n\n27) MrMoto: Move G2 Mrmoto Stout\n\n28) apeloverage: Move Y3 Apeloverage1 Apeloverage\n\tagentofchaos: Oops, our first casualty! Hope everyone else survives a bit longer! ;-)\n\n29) agentofchaos: Build G2 Zurvan\n\n30) MrMoto: Move B1 Stout Edora\n\n31) apeloverage: Trade Y3 R3 Apeloverage\n\n32) agentofchaos: Build G2 Agentofchaos\n\n33) MrMoto: Build G2 Stout\n\n34) apeloverage: Build Y2 Apeloverage1\n\n35) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild G3 Argo\nBuild R1 Agentofchaos\n\n36) MrMoto: Trade B1 R1 Edora\n\n37) apeloverage: Build Y3 Apeloverage\n\n38) agentofchaos: Trade G3 Y3 Agentofchaos\n\n39) MrMoto: Trade B3 Y3 Mrmoto\n\n40) apeloverage: Move R3 Apeloverage Edora\n\n41) agentofchaos: Build G3 Agentofchaos\n\n42) MrMoto: Move R1 Edora Apeloverage\n\n43) apeloverage: Trade Y3 R3 Apeloverage\n\n44) agentofchaos: Trade Y3 R3 Agentofchaos\n\n45) MrMoto: Trade G1 R1 Mrmoto\n\n46) apeloverage: Attack R1S Apeloverage\n\n47) agentofchaos: Move R3 Agentofchaos Zurvan\n\n48) MrMoto: Discover G2 Stout B2 Fil\n\n49) apeloverage: Attack G1W Edora\n\n50) agentofchaos: Move R3 Zurvan Apeloverage2\n\n51) MrMoto: Build R2 Mrmoto\n\n52) apeloverage: Move Y1 Apeloverage2 Apeloverage1\n\n53) agentofchaos: Trade G3 Y3 Agentofchaos\n\tapeloverage: Y1 apeloverage2 apeloverage1\n\n54) MrMoto: Build B1 Mrmoto\n\n55) apeloverage: Move R3 Edora Fil\n\n56) agentofchaos: Sacrifice G3 Argo\nBuild Y3 Agentofchaos\nBuild G1 Agentofchaos\nBuild G3 Argo\n\tapeloverage: move R3 Edora Fil\n\n57) MrMoto: Sacrifice G2 Fil\nBuild G2 Stout\nBuild R2 Mrmoto\n\n58) apeloverage: Build G3 Edora\n\n59) agentofchaos: Move Y3 Agentofchaos Argo\n\n60) MrMoto: Move R2 Mrmoto Stout\n\n61) apeloverage: Build R2 Apeloverage\n\n62) agentofchaos: Sacrifice Y3 Argo\nMove G1 Zurvan Stout\nMove G1 Argo Stout\nMove R3 Apeloverage2 Edora\nCatastrophe Stout G\n\n63) MrMoto: Move R2 Stout Apeloverage1\n\n64) apeloverage: Move R3 Apeloverage Apeloverage1\n\n65) agentofchaos: Attack G3N Edora\n\n66) MrMoto: Sacrifice R2 Mrmoto\nAttack Y2N Apeloverage1\nAttack Y1N Apeloverage1\n\n67) apeloverage: Sacrifice R2 Apeloverage\nAttack R2S Apeloverage1\nAttack Y2S Apeloverage1\n\n68) agentofchaos: Move R3 Edora Madwuher\n\n69) MrMoto: Discover Y1 Apeloverage1 G1 Tam\n\n70) apeloverage: Build R2 Apeloverage\n\n71) agentofchaos: Attack G3W Madwuher\n\n72) MrMoto: Build Y1 Tam\n\n73) apeloverage: Build Y3 Apeloverage1\n\n74) agentofchaos: Attack Y1W Madwuher\n\n75) MrMoto: Move Y1 Tam Apeloverage1\nCatastrophe Apeloverage1 Y\n\n76) apeloverage: Build R2 Apeloverage\n\n77) agentofchaos: Move R3 Madwuher Edora\n\n78) MrMoto: Build R2 Mrmoto\n\n79) apeloverage: Discover R2 Apeloverage Y3 Apeloverage2\n\n80) agentofchaos: Attack G1N Edora\n\n81) MrMoto: Trade R2 G2 Mrmoto\n\n82) apeloverage: Sacrifice Y2 Apeloverage\nMove R3 Apeloverage1 Tam\nMove R3 Tam Mrmoto\n\n83) agentofchaos: Build G1 Madwuher\n\n84) MrMoto: Attack R3N Mrmoto\n\n85) apeloverage: Build R2 Apeloverage\n\n86) agentofchaos: Sacrifice G3 Edora\nBuild G1 Edora\nBuild G2 Argo\nBuild G3 Zurvan\n\n87) MrMoto: Build Y1 Tam\n\n88) apeloverage: Build R2 Apeloverage1\n\n89) agentofchaos: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Edora\nBuild Y1 Madwuher\n\n90) MrMoto: Build R3 Mrmoto\n\n91) apeloverage: Build Y2 Apeloverage\n\n92) agentofchaos: Move R3 Edora Tam\n\n93) MrMoto: Discover R3 Mrmoto B1 Dogsled\n\n94) apeloverage: Build Y2 Apeloverage\n\n95) agentofchaos: Attack Y1S Tam\n\n96) MrMoto: Sacrifice Y1 Tam\nMove R3 Dogsled Apeloverage2\n\n97) apeloverage: Discover R2 Apeloverage2 B2 Apeloverage3\n\n98) agentofchaos: Build Y1 Tam\n\n99) MrMoto: Sacrifice Y3 Mrmoto\nDiscover R1 Mrmoto B1 Hop\nDiscover R1 Hop B3 Skip\nMove R1 Skip Apeloverage\nCatastrophe Apeloverage R\n\n100) apeloverage: Trade R3 Y3 Fil\n\n101) agentofchaos: Discover G2 Argo R3 Klaatu\n\n102) MrMoto: Move R3 Apeloverage2 Apeloverage\n\n103) apeloverage: Sacrifice Y3 Fil\nMove R2 Apeloverage3 Apeloverage1\nMove R2 Apeloverage1 Apeloverage\nMove R2 Apeloverage1 Apeloverage\n\n104) agentofchaos: Build Y3 Agentofchaos\n\n105) MrMoto: Attack Y2N Apeloverage\n\n106) apeloverage: Sacrifice Y1 Apeloverage\nMove R2 Apeloverage1 Apeloverage\nCatastrophe Apeloverage R\n\n107) agentofchaos: Move R3 Edora Apeloverage\n\n108) MrMoto: Discover Y2 Apeloverage G3 Telly\n\n109) apeloverage: Build Y1 Apeloverage\n\n110) agentofchaos: Attack Y2N Apeloverage\n\n111) MrMoto: Build Y3 Telly\n\n112) apeloverage: Pass\n\n113) agentofchaos: Discover Y3 Agentofchaos B2 Xenon\n\n114) MrMoto: Discover Y3 Telly R2 Supertonic\n\n115) apeloverage: Pass\n\n116) agentofchaos: Sacrifice Y2 Apeloverage\nMove Y1 Tam Mrmoto\nMove Y1 Tam Mrmoto\n\n117) MrMoto: Build Y2 Telly\n\n118) apeloverage: Pass\n\n119) agentofchaos: Sacrifice Y3 Agentofchaos\nMove Y1 Madwuher Telly\nMove Y1 Telly Tam\nMove Y1 Tam Mrmoto\nCatastrophe Mrmoto Y\n\n120) MrMoto: Move Y3 Supertonic Agentofchaos\n\n121) apeloverage: Build Y1 Apeloverage\n\n122) agentofchaos: Sacrifice Y3 Xenon\nMove G2 Zurvan Mrmoto\nMove G1 Madwuher Mrmoto\nPass\nCatastrophe Mrmoto G\n\n123) apeloverage: Build Y1 Apeloverage\n\n124) agentofchaos: Sacrifice R3 Tam\nAttack Y1N Apeloverage\nAttack Y1N Apeloverage\nAttack Y1N Apeloverage\n\n\tagentofchaos: Thankyou also Apeloverage, it was fun playing you, we can play again anytime if you like :-)\n\tMrMoto: Ah, congratulations! Thanks for the game, it was fun. :)\n\tapeloverage: Congratulations agentofchaos!\n\tMadWuher: Good job.\n\tagentofchaos: Thanks guys! :-)\n\nHomeworlds Online (SDG# 12424)\nStarted: 2008.12.25, Ended: 2009.3.3\nParticipants: agentofchaos (S), nycavri (N)\nWinner: agentofchaos\n\n1) nycavri: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld Y3 B2 G3 Agentofchaos\n\n3) nycavri: Build G1 Nycavri\n\tagentofchaos: Hi, enjoy the game. \n\tnycavri: Thanks, you too . . .\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) nycavri: Discover Y1 Nycavri G3 Mvb\n\n8) agentofchaos: Discover G1 Agentofchaos Y1 Icarus\n\n9) nycavri: Build Y1 Mvb\n\n10) agentofchaos: Build G1 Icarus\n\n11) nycavri: Build G2 Nycavri\n\n12) agentofchaos: Build G2 Icarus\n\n13) nycavri: Sacrifice G3 Nycavri\nBuild G2 Nycavri\nBuild G3 Nycavri\nBuild Y2 Mvb\n\n14) agentofchaos: Move G1 Icarus Mvb\n\n15) nycavri: Trade G2 R2 Nycavri\n\n16) agentofchaos: Build G2 Agentofchaos\n\n17) nycavri: Sacrifice Y2 Mvb\nMove Y1 Mvb Icarus\nMove Y1 Icarus Agentofchaos\n\n18) agentofchaos: Trade G1 R1 Agentofchaos\n\n19) nycavri: Sacrifice G2 Nycavri\nBuild Y2 Agentofchaos\nBuild Y2 Agentofchaos\nCatastrophe Agentofchaos Y\n\n20) agentofchaos: Trade G3 R3 Agentofchaos\n\n21) nycavri: Build R1 Nycavri\n\n22) agentofchaos: Trade R1 Y1 Agentofchaos\n\n23) nycavri: Trade R1 G1 Nycavri\n\n24) agentofchaos: Build Y2 Agentofchaos\n\n25) nycavri: Build Y2 Mvb\n\n26) agentofchaos: Discover Y1 Agentofchaos G3 Hades\n\n27) nycavri: Build Y3 Mvb\n\n28) agentofchaos: Move Y2 Agentofchaos Mvb\nCatastrophe Mvb Y\n\n29) nycavri: Build R1 Nycavri\n\n30) agentofchaos: Discover Y1 Hades G2 Io\n\n31) nycavri: Move R2 Nycavri Mvb\n\n32) agentofchaos: Build G3 Mvb\n\n33) nycavri: Trade G1 Y1 Nycavri\n\n34) agentofchaos: Sacrifice G3 Mvb\nBuild G1 Agentofchaos\nBuild Y2 Io\nBuild G3 Mvb\n\n35) nycavri: Move Y1 Nycavri Mvb\n\n36) agentofchaos: Discover G1 Icarus Y2 Agon\n\n37) nycavri: Build Y3 Mvb\n\n38) agentofchaos: Move Y1 Io Icarus\n\n39) nycavri: Build R1 Nycavri\n\n40) agentofchaos: Sacrifice R3 Agentofchaos\nAttack Y3N Mvb\nAttack Y1N Mvb\nAttack R2N Mvb\n\n41) nycavri: Discover R1 Nycavri Y3 Mvg\n\n42) agentofchaos: Move R2 Mvb Agentofchaos\n\n43) nycavri: Build R1 Nycavri\n\n44) agentofchaos: Sacrifice G3 Mvb\nBuild Y3 Io\nBuild R2 Agentofchaos\nBuild G3 Agon\n\n45) nycavri: Trade R1 B1 Nycavri\n\n46) agentofchaos: Move Y1 Mvb Agentofchaos\n\n47) nycavri: Build B1 Nycavri\n\n48) agentofchaos: Trade G2 B2 Agentofchaos\n\n49) nycavri: Move B1 Nycavri Mvg\n\n50) agentofchaos: Move R2 Agentofchaos Mvg\n\n51) nycavri: Move B1 Mvg Agentofchaos\n\n52) agentofchaos: Attack B1N Agentofchaos\n\n53) nycavri: Move R1 Mvg Agentofchaos\n\n54) agentofchaos: Attack R1N Agentofchaos\n\n55) nycavri: Build R1 Nycavri\n\n56) agentofchaos: Sacrifice G3 Agon\nBuild G2 Agon\nBuild G3 Agentofchaos\nBuild R2 Mvg\n\n57) nycavri: Trade G3 B3 Nycavri\n\n58) agentofchaos: Sacrifice Y2 Io\nMove B1 Agentofchaos Mvb\nMove B1 Mvb Nycavri\nCatastrophe Nycavri B\n\n59) nycavri: Move R1 Nycavri Icarus\n\n60) agentofchaos: Move R2 Mvg Nycavri\n\n61) nycavri: Move R1 Icarus Agentofchaos\n\n62) agentofchaos: Attack R1N Nycavri\n\n\tagentofchaos: Thanks for a good game!\n\tnycavri: Thank you!\n\nHomeworlds Online (SDG# 12388)\nStarted: 2008.12.27, Ended: 2009.1.12\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld B3 R1 G3\n\tagentofchaos: Hi again! I&#39;ve taken your advice about starting with a green ship. Let&#39;s see how I fair in this game. Merry christmas! :)\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) TwoShort: Build G1 Twoshort\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) TwoShort: Build G2 Twoshort\n\n7) agentofchaos: Discover G1 Agentofchaos Y3 Klingsor\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) agentofchaos: Build G1 Klingsor\n\n10) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n11) agentofchaos: Discover G1 Klingsor Y1 Odin\n\n12) TwoShort: Build Y2 Twoshort\n\n13) agentofchaos: Build G2 Klingsor\n\n14) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n15) agentofchaos: Discover G2 Klingsor B1 Extensor\n\n16) TwoShort: Build G3 Twoshort\n\n17) agentofchaos: Trade G2 Y2 Extensor\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n19) agentofchaos: Build G3 Klingsor\n\n20) TwoShort: Trade G2 R2 Twoshort\n\n21) agentofchaos: Move G3 Klingsor Extensor\n\n22) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Grogar Klingsor\nMove Y3 Klingsor Agentofchaos\n\n23) agentofchaos: Trade G3 R3 Agentofchaos\n\tTwoShort: So, you did a good job controlling green, to the point I had to bail out of that race and threaten to lock you out of yellow, so now you probably see that it&#39;s also essential to diversify into multiple colors early.  That&#39;s why I don&#39;t usually bother with a yellow star: I&#39;m going to want a yellow ship in the first few turns anyway.  So now I&#39;ve got more 3 points and most of the yellow, so it&#39;s looking bad for you, even if that last move wasn&#39;t a critical error :)\r\n\n\n24) TwoShort: Sacrifice R2 Twoshort\nAttack R3N Agentofchaos\nAttack G1N Agentofchaos\n\tTwoShort: Now might be a good time to mention the &quot;Gun rule&quot;: If your opponent draws their gun (takes a red ship), immediately draw your gun.  You can occasionally ignore it for a turn if the opponent can&#39;t reach you, but in general, the turn after the other guy first takes a red ship, you need to do the same.\n\n\tagentofchaos: Thanks, I&#39;ll remember the gun rule. \n\nHomeworlds Online (SDG# 12278)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2008.12.28, Ended: 2009.1.22\nParticipants: MadWuher (S), agentofchaos (N)\nWinner: MadWuher\n\n1) agentofchaos: Homeworld B1 Y2 G3\n\n2) MadWuher: Homeworld R2 B3 G3\n\tagentofchaos: Hi, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\tMadWuher: You too\n\n4) MadWuher: Build G1 Madwuher\n\n5) agentofchaos: Discover G1 Agentofchaos Y3 Elysia\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) agentofchaos: Build G1 Elysia\n\n8) MadWuher: Build Y1 Madwuher\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) MadWuher: Build G2 Madwuher\n\n11) agentofchaos: Discover G1 Elysia B2 Hades\n\n12) MadWuher: Discover G2 Madwuher Y1 Edora\n\n13) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Hades\nBuild G2 Elysia\nBuild G3 Agentofchaos\n\n14) MadWuher: Build G3 Edora\n\n15) agentofchaos: Trade G2 Y2 Hades\n\n16) MadWuher: Build G2 Madwuher\n\n17) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y2 Hades\nBuild Y3 Hades\n\n18) MadWuher: Discover Y1 Madwuher B1 Bologna\n\n19) agentofchaos: Trade Y3 R3 Hades\n\n20) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n21) agentofchaos: Move R3 Hades Edora\n\n22) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Edora Hades\nMove G2 Edora Hades\nMove G2 Hades Bologna\n\n23) agentofchaos: Move G1 Elysia Edora\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nPass\n\n25) agentofchaos: Move R3 Edora Madwuher\n\n26) MadWuher: Attack R3 Madwuher\n\n\tMadWuher: Hmmmm, not what you thought would happen eh?\n\tagentofchaos: No it isn&#39;t, clearly the wrong move by me!\n\nHomeworlds Online (SDG# 12297)\nStarted: 2008.12.28, Ended: 2009.1.8\nParticipants: MadWuher (S), mschlat (N)\nWinner: MadWuher\n\n1) mschlat: Homeworld Y3 B1 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\tmschlat: First game I&#39;ve ever played, so I just learning how this works.\n\n3) mschlat: Build G1 Mschlat\n\tMadWuher: I&#39;ll do my best to guide you as we go along.\n\n4) MadWuher: Build G1 Madwuher\n\tmschlat: Thanks, but don&#39;t take it easy on me either.\n\n5) mschlat: Trade G1 Y1 Mschlat\n\tMadWuher: will do. =)\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) mschlat: Discover Y1 Mschlat G2 Oneaway1\n\n8) MadWuher: Build G1 Madwuher\n\n9) mschlat: Build G1 Mschlat\n\n10) MadWuher: Trade G1 B1 Madwuher\n\n11) mschlat: Build G1 Mschlat\n\n12) MadWuher: Build B1 Madwuher\n\n13) mschlat: Move G1 Mschlat Oneaway1\n\n14) MadWuher: Discover B1 Madwuher G3 Edora\n\n15) mschlat: Trade G1 R1 Mschlat\n\n16) MadWuher: Build B2 Edora\n\tmschlat: Okay, this is about the place where I&#39;m feeling pretty lost.  About the only thing I&#39;m focused on is not giving you a chance to build a 2 ship.\n\tMadWuher: you&#39;ll notice that I already have access to the size 2 ships (blue in this case) while you don&#39;t have any blues available. Some ways to fix this: trade your G3 for a B3 and then create B ships, take control of another colour (all that seems to be left that I don&#39;t have is Red).You&#39;ll notice I chose blue because a b1 was already used in your homeworld giving me a quicker monopoly.\n\n17) mschlat: Build R1 Mschlat\n\tMadWuher: At this point, I have a few options. Keep building the blues until I get to size 3, or start diversifying my colours at the Edora system. Let me warn you, that if you trade your g3 for a b3, you will be 1 step closer to a blue catastrophe in your homeworld (and you won&#39;t be able to build anything there anymore).\n\n18) MadWuher: Build B2 Madwuher\n\tmschlat: Yes, I don&#39;t like the G3 for B3 option.  I&#39;ll try more focus on red.\n\n19) mschlat: Build R2 Mschlat\n\n20) MadWuher: Discover B2 Madwuher Y3 Camelot\n\n21) mschlat: Move R2 Mschlat Oneaway1\n\n22) MadWuher: Sacrifice G3 Madwuher\nBuild B3 Madwuher\nBuild B3 Camelot\nBuild B3 Edora\n\n23) mschlat: Sacrifice G3 Mschlat\nBuild R2 Mschlat\nBuild R2 Oneaway1\nBuild R3 Oneaway1\n\n24) MadWuher: Sacrifice B2 Edora\nTrade B3 R3 Camelot\nTrade B3 G3 Madwuher\n\n25) mschlat: Move R2 Oneaway1 Edora\n\n26) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Camelot\nBuild B3 Edora\nBuild B3 Madwuher\n\n27) mschlat: Build R3 Edora\n\n28) MadWuher: Sacrifice R3 Camelot\nAttack R3 Edora\nAttack R2 Edora\nPass\n\n29) mschlat: Move R3 Oneaway1 Camelot\n\tmschlat: Ah, I didn&#39;t realize how the red sacrifice could work in that way.  I think I&#39;m toast.\n\n30) MadWuher: Sacrifice B2 Camelot\nTrade B3 G3 Madwuher\nTrade B3 Y3 Edora\n\n31) mschlat: Discover R1 Mschlat G2 Oneaway2\n\tMadWuher: One thing to think about, you have no size 3 ships in your home system. If I can move a size 3 ship there then you cannot attack it (you can only attack ships the same size or less than the largest ship you have there) and I can start to attack your ships. The other thing you should think about, since I now have access to yellow (and can use a sacrifice to move any of my ships) I can move my R2 from Edora into your home system (discovering another planet if I have to) and cause a catastrophe there, leaving you no ships in your homeworld (so I would win).\n\n32) MadWuher: Sacrifice Y3 Edora\nMove B3 Edora Oneaway2\nMove B3 Oneaway2 Mschlat\nDiscover B2 Camelot Y2 Bologna\n\n33) mschlat: Build R3 Oneaway2\n\tMadWuher: I&#39;m just taking advantage of the fact that you have no size three ships to defend your system.\n\n34) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Edora\nBuild B3 Madwuher\nBuild B3 Bologna\n\n35) mschlat: Move R3 Camelot Oneaway1\n\n36) MadWuher: Sacrifice R2 Edora\nAttack R2 Mschlat\nAttack R1 Mschlat\n\tMadWuher: Thanks for the game. Want to play another? Feel free to ask me any questions you may have about homeworlds.\n\tmschlat: Yeah, I&#39;d like to play another, but I don&#39;t understand what happened in this one.  It&#39;s hard for me to see what happens as a result of sacrifice (so I don&#39;t understand the last turn and how I&#39;ve lost).  I&#39;m going to try and review with some Icehouse pieces.\n\tMadWuher: sacrifice a red piece and attack at any system (as long as the ship I use is = or greater in size than yours). sacrifice an r2, get 2 attacks.\n\tmschlat: I finally figured that out - I was thinking the B3 was in my system to set up a catastrophe later on, not give you a chance to use a red sacrifice.\n\tmschlat: Yes, I&#39;d like to play another.  How do we do that?\n\tMadWuher: I was about to say &quot;choose one of my challenges from the challenges screen&quot; but I think it might be better for you to setup a new challenge against me. Select the &quot;challenges&quot; screen, scroll down to homeworlds, and click &quot;New Challenge&quot;. In the next screen, you can choose any of the options you want, and choose MadWuher from the &quot;challenge whom&quot; option. This sets up a challenge against me of your choosing. Otherwise, you can select any of the other open challenges that I or other players have available.\n\n\nHomeworlds Online (SDG# 12475)\nVariants: &quot;Hard time&quot;\nStarted: 2008.12.31, Ended: 2009.1.3\nParticipants: dsheldon (S), stoneaxe (N)\nWinner: dsheldon\n\n\nHomeworlds Online (SDG# 12465)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.1.7, Ended: 2009.1.19\nParticipants: Sgeo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B3 R2 G3\n\tSgeo: Hello! Have fun and good luck! This is my first time on SDG, as well as playing Homeworlds.\n\tMadWuher: Welcome. I&#39;ll try to remember to make some comments as we go along to help you out. If you have any questions, just ask.\n\n2) Sgeo: Homeworld G1 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\tSgeo: How do I spectate on games?\n\tSgeo: Ok figured it out.\n\n4) Sgeo: Build Y1 Sgeo\n\n5) MadWuher: Build G1 Madwuher\n\n6) Sgeo: Trade Y3 R3 Sgeo\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) Sgeo: Trade R3 G3 Sgeo\n\tSgeo: ..I didn&#39;t realize that you need a _ship_ of the color in order to build a ship, I thought a star would work too.. I&#39;m screwed, aren&#39;t I?\n\n9) MadWuher: Sacrifice G1 Madwuher\nBuild Y1 Madwuher\n\tMadWuher: not necessarily.\n\n\nHomeworlds Online (SDG# 12363)\nStarted: 2009.1.9, Ended: 2009.1.17\nParticipants: MikeYarrum (S), array (N)\nWinner: array\n\n1) array: Homeworld G3 Y2 B3\n\n\nHomeworlds Online (SDG# 12583)\nStarted: 2009.1.9, Ended: 2009.1.14\nParticipants: mschlat (S), MikeYarrum (N)\nWinner: mschlat\n\n\tTester1: \n\nHomeworlds Online (SDG# 12589)\nStarted: 2009.1.9, Ended: 2009.1.21\nParticipants: MadWuher (S), mschlat (N)\nWinner: MadWuher\n\n1) mschlat: Homeworld B1 Y2 G3\n\tMadWuher: Thanx for starting another game.\n\tmschlat: No problem.\n\n2) MadWuher: Homeworld B3 R2 G3\n\n3) mschlat: Build G1 Mschlat\n\n4) MadWuher: Build G1 Madwuher\n\n5) mschlat: Trade G1 Y1 Mschlat\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) mschlat: Build G1 Mschlat\n\n8) MadWuher: Build G1 Madwuher\n\n9) mschlat: Build G1 Mschlat\n\n10) MadWuher: Build G2 Madwuher\n\n11) mschlat: Trade G1 R1 Mschlat\n\tMadWuher: Sorry about that Undo\r\n\n\n12) MadWuher: Trade G2 R2 Madwuher\n\n13) mschlat: Trade G1 B1 Mschlat\n\n14) MadWuher: Trade G1 B1 Madwuher\n\n15) mschlat: Build B2 Mschlat\n\n16) MadWuher: Build B2 Madwuher\n\n17) mschlat: Discover B1 Mschlat G3 Adama\n\n18) MadWuher: Discover B2 Madwuher Y1 Edora\n\n19) mschlat: Build B2 Adama\n\n20) MadWuher: Sacrifice G3 Madwuher\nBuild B3 Madwuher\nBuild B3 Edora\nBuild Y2 Madwuher\n\n21) mschlat: Build Y2 Mschlat\n\n22) MadWuher: Trade B3 G3 Madwuher\n\n\n23) mschlat: Sacrifice Y2 Mschlat\nMove B1 Adama Edora\nMove B2 Adama Edora\nPass\nCatastrophe Edora B\n\n24) MadWuher: Build G1 Madwuher\n\n25) mschlat: Build Y1 Mschlat\n\n26) MadWuher: Discover Y1 Madwuher G1 Edora\n\n27) mschlat: Discover Y1 Mschlat G3 Adama\n\n28) MadWuher: Move B1 Madwuher Edora\n\n29) mschlat: Build R1 Mschlat\n\n30) MadWuher: Move R2 Madwuher Edora\n\n31) mschlat: Build G1 Mschlat\n\n32) MadWuher: Build B1 Edora\n\n33) mschlat: Move B2 Mschlat Adama\n\n34) MadWuher: Discover B1 Edora G2 Bologna\n\n35) mschlat: Build B2 Adama\n\n36) MadWuher: Build B2 Bologna\n\n37) mschlat: Trade B2 R2 Adama\n\n38) MadWuher: Build G2 Madwuher\n\n39) mschlat: Move R2 Adama Bologna\n\n40) MadWuher: Sacrifice R2 Edora\nAttack R2 Bologna\nPass\n\n41) mschlat: Build Y2 Adama\n\n42) MadWuher: Sacrifice G2 Madwuher\nBuild Y3 Edora\nBuild Y3 Madwuher\n\tmschlat: Yep, I forgot you could do that _again_.  I do not have a solid understanding of red attacks and sacrifice.\n\n43) mschlat: Trade Y2 G2 Adama\n\n44) MadWuher: Trade Y1 R1 Edora\n\n45) mschlat: Build G2 Adama\n\n46) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Madwuher Edora\nMove G1 Edora Adama\nCatastrophe Adama G\n\n\tmschlat: I&#39;ll give.  You have more and bigger ships and I can&#39;t follow sacrifices.  A couple of questions:\r\n\r\n1) Why did you build the Bologna system?  I didn&#39;t see any particular reason for building something not adjacent to me?\r\n\r\n2) I keep on being behind on ship sizes.  Is this connected to going first?  Is this a game where first or second is an advantage?\r\n\r\n3) How and where do you learn strategy for this game?  I&#39;m willing to lose many games to understand the game better (I did so with go), but I&#39;d like some direction.\n\tMadWuher: I built the other size 2 system thinking that it will connect to yours if I get a yellow catastrophe in your home system and/or a safe haven for me to build up my ships and hold onto some kind of piece advantage. When I was making it, I felt that the size 3 system would be easy for you to get to and attack, thereby losing some of my ships in the process.\r\n\r\nI don&#39;t think it is a matter of going first or second. I just saw what size 3 ships were available in the least number of turns while sacrificing the size 1 ships when you finally had access to that color. (Maybe that didn&#39;t come up in this game, but it&#39;s something I tend to think about) As I have read from other players, it is important to leverage the reserve stash by creating some planets and ships at opportune times.\r\n\r\nI learned most of my strategy by losing lots of times. It has been stated that SDG-Homeworld players can be too good as many beginners leave the game after losing a few times to the veterans. I found some strategies using the Wiki here at SDG http://wiki.superdupergames.org/games/homeworlds and from the IceHouse Wiki http://www.icehousegames.org/wiki/index.php?title=Homeworlds which has a link to a few strategy pages. I can&#39;t think of where else to get help besides the book Playing with Pyramids which includes only a few other tidbits of information you can&#39;t seem to find elsewhere. Not earthshaking information mind you.\r\n\r\nI hope this helps.\r\n\r\n\n\nHomeworlds Online (SDG# 12599)\nVariants: &quot;Hard time&quot;\nStarted: 2009.1.11, Ended: 2009.6.19\nParticipants: wyons (S), TwoShort (N)\nWinner: wyons\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) wyons: Homeworld B1 R3 G3\n\n3) TwoShort: Build G1 Twoshort\n\twyons: I thought you wouldnt let me rest on my laurels for long.\n\n4) wyons: Build G1 Wyons\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) TwoShort: Build G1 Twoshort\n\n8) wyons: Build G1 Wyons\n\n9) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n10) wyons: Trade G1 B1 Wyons\n\n11) TwoShort: Build G1 Twoshort\n\twyons: you just departed from game 11066.. :)\n\tTwoShort: That&#39;s funny.  Taking the b1 was the other move I was considering, but I recalled I had tried some tricky/agressive move early last time and it hadn&#39;t worked out, so I decided to play it a little safer.  I had no (conscious) idea it was exactly the same decision though.\n\n12) wyons: Build B1 Wyons\n\twyons: well we will have to see if the early tricky/aggressive pays off for me....\n\n13) TwoShort: Build G1 Twoshort\n\n14) wyons: Build G2 Wyons\n\n15) TwoShort: Build G2 Bluonia\n\n16) wyons: Discover B1 Wyons B2 Trueblue\n\n17) TwoShort: Discover G1 Twoshort B3 Blunderbuss\n\n18) wyons: Sacrifice G2 Wyons\nBuild B2 Trueblue\nBuild B3 Wyons\n\n19) TwoShort: Build G2 Twoshort\n\n20) wyons: Trade B3 G3 Wyons\n\n21) TwoShort: Discover G1 Twoshort B3 Blutacular\n\n22) wyons: Trade B2 R2 Trueblue\n\n23) TwoShort: Trade G2 B2 Twoshort\n\n24) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild Y2 Wyons\nBuild G2 Wyons\n\n25) TwoShort: Sacrifice G2 Bluonia\nBuild G2 Twoshort\nBuild Y2 Twoshort\n\n26) wyons: Sacrifice Y1 Wyons\nDiscover R2 Trueblue G3 Zoo\n\n27) TwoShort: Discover B2 Twoshort Y3 Ynot\n\n28) wyons: Move B1 Wyons Trueblue\n\tTwoShort: This is my weirdest game in quite a while.\n\n29) TwoShort: Discover B2 Ynot Y2 Yonderboy\n\twyons: I nearly gave myself a cerebal haemorrage looking at this lot and I do not really know if this is the best option. But time is running out. I also think you have me beat.\n\tTwoShort: Hmmm, I am feeling better about it than I was a few moves ago.  But it feels like a festival of ways to screw up...\n\n30) wyons: Trade B1 Y1 Trueblue\n\n31) TwoShort: Build Y3 Twoshort\n\twyons: I think I became unhinged when I made the r2 ship. I had missed you could safely create a b2 in your homeworld. Now it is damage control but I think you have a compelling advantage.\n\tTwoShort: The red you haven&#39;t been able to seriously threaten me with yet may have been a mistake.  As to overall advantage, I guess the view depends on where you sit :)  That last move may have been damage control to you, but it looks like a crushing reversal to me.  I&#39;ll be happy to come out of the next couple turns only slightly behind.\n\n32) wyons: Sacrifice G2 Wyons\nBuild Y3 Wyons\nBuild Y3 Trueblue\n\n33) TwoShort: Move Y1 Twoshort Bluonia\n\n34) wyons: Move Y3 Wyons Yonderboy\n\n35) TwoShort: Trade G2 R2 Twoshort\n\n36) wyons: Build G2 Wyons\n\n37) TwoShort: Move Y3 Twoshort Zoo\n\n38) wyons: Sacrifice R2 Zoo\nAttack B2N Yonderboy\nPass\n\n39) TwoShort: Build G2 Twoshort\n\n40) wyons: Trade Y1 R1 Trueblue\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluonia\nBuild G2 Blutacular\nBuild G3 Twoshort\n\tTwoShort: So if you undid because you saw a better move, you&#39;d have made it. So you must have undid because you saw some fatal flaw.  But I&#39;ve looked at this until I gave up on finding something I could commit to at least twice, so how did I miss it?  Or maybe you undid as a clever psych-out strategy.  If that&#39;s it, it&#39;s working :)\n\n42) wyons: Sacrifice G3 Wyons\nBuild R1 Trueblue\nBuild B1 Trueblue\nBuild G3 Wyons\n\twyons: not a psycho-out strategy- nor did I see a better move. I thought I saw a fatal flaw- but this is such a complex situation I couldnt be sure even of that...\n\n43) TwoShort: Trade G2 R2 Blutacular\n\n44) wyons: Move R1 Trueblue Wyons\n\twyons: I do hope we are building up to some casualties soon as this is beginning to do my head in!\n\n45) TwoShort: Discover Y3 Zoo G2 Gonzo\n\n46) wyons: Discover Y3 Yonderboy G3 Xanthrophyl\n\twyons: sadly work is so busy at present I have not had time to think this one through fully (lame excuse I know)\n\tTwoShort: Well, the last couple moves I&#39;ve spent a long time trying to think them through, but in the end felt like it hadn&#39;t got me anywhere and I was just guessing :)  \n\twyons: I think sooner or later- especially when there are this many pieces in play it starts to default to intuition  rather than logic. The trouble is without the logical analysis as well intuition isnt enough on its own....\n\n47) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Blutacular Gonzo\nMove G1 Gonzo Wyons\n\n48) wyons: Sacrifice G2 Wyons\nBuild R2 Trueblue\nBuild R3 Trueblue\n\twyons: In early April I am off on holiday for a couple of weeks. If you havent beaten me by then do you know a way that we might suspend play for the period and would that be OK with you?  :)\n\tTwoShort: Actually, I&#39;m off the week after next.  I&#39;ve figured out how to freeze the clock in the past, so sometime before I go I&#39;ll figure it out again...\n\n49) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Wyons\nBuild R3 Blutacular\nBuild G3 Twoshort\n\tTwoShort: Just coming by for a visit\n\n50) wyons: Sacrifice R2 Trueblue\nAttack G2N Wyons\nAttack G1N Wyons\n\twyons: What an unexpected visit! Welcome to Wyons and do lets party!\n\n51) TwoShort: Sacrifice Y3 Gonzo\nDiscover G1 Bluonia G2 Gonzo\nMove Y1 Bluonia Gonzo\nMove G1 Gonzo Wyons\nCatastrophe Wyons Green\n\n52) wyons: Sacrifice B2 Yonderboy\nTrade R3 G3 Trueblue\nTrade Y2 G2 Wyons\n\n53) TwoShort: Trade R3 Y3 Blutacular\n\tTwoShort: I think if you type &quot;~vote accept freeze&quot; as a chat, that will do it.  I also beleive we can keep playing with the clock frozen.  I&#39;m departing on Monday and coming back the following Monday...\n\tTwoShort: actually, maybe it&#39;s  &quot;~vote accept clock freeze&quot;\n\twyons: as a matter of interest: how did you set up the clock freeze request? was it ~clock freeze   ?\n\tTwoShort: yes, that was it.  more to the point, what I remember each time is &quot;search the wiki for &#39;freeze&#39;&quot;...\n\twyons: thanks, and have a good holiday\n\n54) wyons: Build G1 Trueblue\n\tTwoShort: I&#39;m back from my vacation, but I guess you&#39;re just headed to yours.  In any case, feel free to thaw the clock whenever you are ready.\n\n55) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Blunderbuss\nBuild G3 Twoshort\nBuild Y2 Bluonia\n\twyons: b g1 trueblue\n\n56) wyons: Sacrifice G3 Trueblue\nBuild G3 Wyons\nBuild Y2 Trueblue\nBuild Y2 Xanthrophyl\n\n57) TwoShort: Trade G2 B2 Twoshort\n\n58) wyons: Move B1 Trueblue Xanthrophyl\n\n59) TwoShort: Sacrifice Y2 Bluonia\nDiscover B2 Twoshort R3 Rover\nMove G1 Blunderbuss Trueblue\n\n60) wyons: Sacrifice G2 Wyons\nBuild R2 Wyons\nBuild R3 Trueblue\n\n61) TwoShort: Sacrifice G1 Blunderbuss\nBuild B3 Rover\n\n62) wyons: Sacrifice Y2 Xanthrophyl\nMove R3 Trueblue Bluonia\nMove B1 Trueblue Bluonia\n\n63) TwoShort: Build Y2 Gonzo\n\n64) wyons: Sacrifice R2 Wyons\nAttack G1N Trueblue\nAttack Y1N Bluonia\n\n65) TwoShort: Build G1 Twoshort\n\n66) wyons: Move G1 Trueblue Bluonia\n\n67) TwoShort: Sacrifice Y1 Gonzo\nMove G1 Twoshort Blutacular\n\n68) wyons: Build G2 Bluonia\n\n69) TwoShort: Build R2 Blutacular\n\n70) wyons: Sacrifice G2 Bluonia\nBuild Y1 Xanthrophyl\nBuild Y2 Bluonia\n\n71) TwoShort: Move R2 Blutacular Gonzo\n\n72) wyons: Build G2 Bluonia\n\n73) TwoShort: Build G2 Blutacular\n\n74) wyons: Move G1 Trueblue Xanthrophyl\n\n75) TwoShort: Move Y3 Blutacular Twoshort\n\n76) wyons: Move Y3 Trueblue Blutacular\n\n\tTwoShort: Got me again.  Good game.\n\nHomeworlds Online (SDG# 12466)\nStarted: 2009.1.12, Ended: 2009.2.13\nParticipants: zoltar (S), MadWuher (N)\nWinner: zoltar\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Hello Zoltar. Hope you have a good game.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) MadWuher: Build G1 Madwuher\n\tzoltar: Hi, I haven&#39;t played in months.  Should be fun!\n\n4) zoltar: Build G1 Zoltar\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MadWuher: Build G1 Madwuher\n\n8) zoltar: Build G1 Zoltar\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) MadWuher: Discover B1 Madwuher G3 Edora\n\n12) zoltar: Build B2 Zoltar\n\n13) MadWuher: Build B2 Edora\n\n14) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n15) MadWuher: Trade B1 R1 Edora\n\tzoltar: Hmm -- somehow I seem to be a whole move behind.\n\n16) zoltar: Build Y1 Zoltar\n\tMadWuher: I wouldn&#39;t worry. =) You&#39;ll be in control (i think) soon enough\n\tzoltar: I&#39;m better in the middle-game, but I always suck at openings in this game\n\n17) MadWuher: Build Y2 Madwuher\n\n18) zoltar: Build Y2 Zoltar\n\n19) MadWuher: Move Y1 Madwuher Edora\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) MadWuher: Build R2 Edora\n\n22) zoltar: Move Y2 Zoltar Greenbelt\n\n23) MadWuher: Discover R2 Edora Y2 Bologna\n\n24) zoltar: Move R1 Zoltar Greenbelt\n\n25) MadWuher: Build R2 Edora\n\n26) zoltar: Build R2 Greenbelt\n\n27) MadWuher: Trade R1 G1 Edora\n\n28) zoltar: Trade R1 G1 Greenbelt\n\n29) MadWuher: Move G1 Edora Bologna\n\n30) zoltar: Discover G1 Greenbelt Y3 Yellowstone\n\n31) MadWuher: Build G1 Madwuher\n\n32) zoltar: Build G2 Yellowstone\n\n33) MadWuher: Sacrifice G1 Madwuher\nBuild R1 Bologna\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\n\n35) MadWuher: Discover R1 Bologna B3 Camelot\n\n36) zoltar: Move Y3 Greenbelt Edora\n\n37) MadWuher: Sacrifice B2 Edora\nTrade Y1 G1 Edora\nTrade R2 G2 Edora\n\n38) zoltar: Move Y3 Edora Bologna\n\n39) MadWuher: Sacrifice G2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n40) zoltar: Sacrifice Y2 Greenbelt\nMove G1 Yellowstone Madwuher\nMove G2 Yellowstone Madwuher\nCatastrophe Madwuher G\n\n41) MadWuher: Move G2 Bologna Camelot\n\n42) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Zoltar Greenbelt\nMove Y3 Bologna Camelot\nMove Y3 Camelot Madwuher\n\tMadWuher: I knew I made a mistake a long time ago. =)  Oh well.\r\n\r\n\n\n\tzoltar: Yeah, without a 3-pip ship, I don&#39;t see any way for you to defend your homeworld at this point.  Play again?\n\tMadWuher: Sure.\n\nHomeworlds Online (SDG# 12567)\nStarted: 2009.1.12, Ended: 2009.2.13\nParticipants: zoltar (S), Trollkin (N)\nWinner: zoltar\n\n1) Trollkin: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) Trollkin: Build Y1 Trollkin\n\tzoltar: Hi from Greenbelt, MD\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Oops, I better pick a different setup than you so it isn&#39;t one of those weird short-worlds.\n\n5) Trollkin: Build Y1 Trollkin\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Trollkin: Trade Y1 B1 Trollkin\n\n8) zoltar: Build G1 Zoltar\n\n9) Trollkin: Discover B1 Trollkin G3 Ensiferum\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Trollkin: Build B2 Ensiferum\n\n\n12) zoltar: Build G1 Zoltar\n\n13) Trollkin: Trade B2 G2 Ensiferum\n\n14) zoltar: Build B2 Zoltar\n\n15) Trollkin: Build G1 Ensiferum\n\n16) zoltar: Trade B1 R1 Zoltar\n\n17) Trollkin: Trade G2 B2 Ensiferum\n\n18) zoltar: Discover G1 Zoltar Y2 Korpiklaani\n\n19) Trollkin: Trade B2 Y2 Ensiferum\n\n20) zoltar: Build G2 Korpiklaani\n\n21) Trollkin: Trade Y1 R1 Trollkin\n\n22) zoltar: Build G2 Zoltar\n\n23) Trollkin: Build Y1 Trollkin\n\n24) zoltar: Move G1 Korpiklaani Ensiferum\n\n25) Trollkin: Trade G1 R1 Ensiferum\n\n26) zoltar: Build G1 Ensiferum\n\n27) Trollkin: Attack G1S Ensiferum\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild G2 Ensiferum\nBuild G3 Korpiklaani\nBuild G3 Zoltar\nCatastrophe Ensiferum G\n\n29) Trollkin: Trade Y3 R3 Trollkin\n\n30) zoltar: Move B2 Zoltar Korpiklaani\n\n31) Trollkin: Discover R1 Trollkin Y3 Tranquillity\n\n32) zoltar: Move G3 Korpiklaani Tranquillity\n\n33) Trollkin: Trade Y1 G1 Trollkin\n\n34) zoltar: Sacrifice R1 Zoltar\nAttack R1 Tranquillity\n\n35) Trollkin: Build R1 Trollkin\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G1 Tranquillity\nBuild G2 Korpiklaani\nBuild G3 Zoltar\n\n37) Trollkin: Build G3 Trollkin\n\n38) zoltar: Move G1 Tranquillity Trollkin\nCatastrophe Trollkin G\n\n39) Trollkin: Trade R1 Y1 Trollkin\n\n40) zoltar: Discover B2 Korpiklaani G1 Greenpeace\n\n41) Trollkin: Trade Y1 G1 Trollkin\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G1 Tranquillity\nBuild G3 Korpiklaani\nBuild G3 Zoltar\n\n43) Trollkin: Build R1 Trollkin\n\n44) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenpeace\nBuild B1 Greenpeace\n\n\nHomeworlds Online (SDG# 12604)\nStarted: 2009.1.15, Ended: 2009.3.7\nParticipants: dkthegm (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Hi there. Hope you have a good game.\n\n\nHomeworlds Online (SDG# 12646)\nVariants: &quot;Hard time&quot;\nStarted: 2009.1.19, Ended: 2009.4.21\nParticipants: Keith (S), MadWuher (N)\nWinner: Keith\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Keith: Homeworld B1 Y2 G3\n\n3) MadWuher: Build G1 Madwuher\n\tKeith: Hello MadWuher.  Experimenting against a player with your track record is probably a mistake.  However, I am a bit out of practice and I hope to steer the game into territory that is new to both of us.\n\tMadWuher: Sounds good to me. Always wanting to try out new things.\n\n4) Keith: Build G1 Keith\n\tKeith: Well I am already having second thoughts.  As much as I find having a green homeworld risky I think it would have been better to have a yellow ship at start and gain mobility first.  We shall see...\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Keith: Trade G1 Y1 Keith\n\n7) MadWuher: Build G1 Madwuher\n\n8) Keith: Build G1 Keith\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) Keith: Trade G1 R1 Keith\n\n11) MadWuher: Build B1 Madwuher\n\n12) Keith: Discover Y1 Keith G3 Midori\n\n13) MadWuher: Discover B1 Madwuher Y3 Edora\n\n14) Keith: Move R1 Keith Edora\n\n15) MadWuher: Discover B1 Edora R2 Bologna\n\n16) Keith: Build Y1 Midori\n\n17) MadWuher: Build B2 Madwuher\n\n18) Keith: Discover Y1 Midori G1 Chisai\n\n19) MadWuher: Trade B2 R2 Madwuher\n\n20) Keith: Build Y2 Midori\n\n21) MadWuher: Build B2 Madwuher\n\n22) Keith: Move Y2 Midori Bologna\n\n23) MadWuher: Sacrifice B1 Bologna\nTrade B2 Y2 Madwuher\n\n24) Keith: Build Y3 Midori\n\n25) MadWuher: Move R2 Madwuher Edora\n\tMadWuher: Wow..... I am so lagging behind in this game. Sorry about the lack of competition here.\n\n26) Keith: Move R1 Edora Keith\n\tKeith: Lack of competition?  Your blue build and covert situation had me under a lot of pressure.  If you mean how fast you take your turns don&#39;t worry.  I usually keep a light game schedule because of my job and I am fine with a slow moving game.\n\n27) MadWuher: Build B1 Madwuher\n\n28) Keith: Build Y3 Chisai\n\n29) MadWuher: Discover B1 Madwuher B3 Camelot\n\n30) Keith: Build R1 Keith\n\n31) MadWuher: Build G1 Madwuher\n\n32) Keith: Move R1 Keith Midori\n\n33) MadWuher: Sacrifice G1 Madwuher\nBuild R2 Edora\n\n34) Keith: Build R3 Midori\n\n35) MadWuher: Build B2 Madwuher\n\n36) Keith: Build R3 Keith\n\n37) MadWuher: Discover R2 Edora G1 Pi\n\n38) Keith: Move R3 Keith Edora\n\n39) MadWuher: Build R3 Pi\n\n40) Keith: Move R3 Midori Pi\n\n41) MadWuher: Sacrifice R2 Edora\nAttack R3 Pi\nPass\n\n42) Keith: Move R1 Midori Pi\nCatastrophe Pi Red\n\n43) MadWuher: Trade B1 R1 Camelot\n\n44) Keith: Move Y3 Chisai Camelot\n\n45) MadWuher: Discover B2 Madwuher B3 Blarney\n\n46) Keith: Trade Y3 R3 Camelot\n\n47) MadWuher: Sacrifice Y1 Madwuher\nMove R1 Camelot Chisai\n\n48) Keith: Sacrifice Y2 Bologna\nMove Y3 Midori Madwuher\nMove R3 Camelot Madwuher\n\n49) MadWuher: Sacrifice G3 Madwuher\nBuild B1 Blarney\nBuild B2 Blarney\nBuild B3 Madwuher\n\tMadWuher: I think you&#39;ve got me. Thanks for the game. \n\n50) Keith: Sacrifice R3 Madwuher\nAttack Y2 Madwuher\nAttack B3 Madwuher\nAttack B1 Madwuher\n\tKeith: Good game.  I can see why you have the track record you have.  If I had not been able to grab that last G3 before you had a chance to your blue machine would have groud me under.\n\n\nHomeworlds Online (SDG# 12643)\nStarted: 2009.1.21, Ended: 2009.5.6\nParticipants: Laurie_Menke (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y3 B2 G3\n\n2) Laurie_Menke: Homeworld B1 Y3 G3\n\tLaurie_Menke: Ack!  I am so sorry, Avri!  First I invite you to a game, then I skip out on you.  Please forgive me.  I kept putting it off because I needed to refresh my memory on the rules, and then life got in the way and here I am timed out and apologetic.  Please forgive me.  :o(\n\n3) nycavri: Build G1 Nycavri\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: And then I make an error right off the bat.  Grrr.   Sorry.\n\tnycavri: Don&#39;t sweat it, Laurie.  Enjoy . . .\n\n5) nycavri: Discover G1 Nycavri Y1 Mvb\n\tLaurie_Menke: Thanks.  :o)  You, too!\n\n6) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n7) nycavri: Build G1 Mvb\n\n8) Laurie_Menke: Build G2 Blue\n\tnycavri: You need to undo that, Laurie - I can cause a catastrophe (in green) in your homeworld . . .\n\tLaurie_Menke: Oops...sorry.  I didn&#39;t see your note earlier.  Thanks for the warning, but how so?  You aren&#39;t directly connected to my homeworld at the moment, are you?\n\tnycavri: Either player can trigger a catastrophe whenever there are 4 or more pyramids of one color in a system . . .\n\tLaurie_Menke: Ahhh.... you&#39;re right.  It says catastrophes can be triggered from anywhere.  I was thinking you had to be in the homeworld to trigger it.  Duh.  Sorry for the long delay while I got my head on straight.  :o/  Thanks for the &quot;do over.&quot;  ;o)\n\n9) nycavri: Build G2 Nycavri\n\n10) Laurie_Menke: Trade G1 Y1 Blue\n\n11) nycavri: Discover G1 Mvb Y2 Mvg\n\n12) Laurie_Menke: Move G2 Blue Laurie_menke\n\n13) nycavri: Move G1 Mvg Laurie_menke\n\n14) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tLaurie_Menke: OK, I&#39;ve gotta ask... how do you name your star systems?\n\n15) nycavri: Sacrifice G2 Nycavri\nBuild G1 Laurie_menke\nBuild G2 Laurie_menke\nCatastrophe Laurie_menke G\n\tnycavri: lol.  I name them for the units at my summer camp - Mountainview Boys, Moutainview Girls.  Next will be Idyllwood (IW), then Journey&#39;s Way (JW) . . .\r\n\r\nI used to name them Deacon, May, Mercury, Taylor, etc . . .\n\n16) Laurie_Menke: Move Y1 Blue Mvb\n\tLaurie_Menke: LOL... that works.  :o)\n\n17) nycavri: Trade G3 R3 Nycavri\n\n18) Laurie_Menke: Discover Y1 Mvb G3 Green\n\n19) nycavri: Build G1 Mvb\n\n20) Laurie_Menke: Build Y1 Green\n\n21) nycavri: Discover G1 Mvb Y2 Iw\n\n22) Laurie_Menke: Discover Y1 Green B1 Blue\n\n23) nycavri: Sacrifice G1 Mvb\nBuild R1 Nycavri\n\n24) Laurie_Menke: Build Y1 Green\n\n25) nycavri: Trade R3 G3 Nycavri\n\n26) Laurie_Menke: Build Y2 Green\n\n27) nycavri: Build G1 Nycavri\n\n28) Laurie_Menke: Move Y1 Green Blue\n\n29) nycavri: Build G1 Iw\n\n30) Laurie_Menke: Build Y2 Green\n\n31) nycavri: Build G2 Nycavri\n\n32) Laurie_Menke: Move Y2 Green Blue\n\n33) nycavri: Trade G2 R2 Nycavri\n\tLaurie_Menke: Sorry for the delay, Avri.  I&#39;ve been having internet trouble.  :o(\n\n34) Laurie_Menke: Build Y3 Green\n\tnycavri: Wecome back . . .\n\n35) nycavri: Move G1 Iw Laurie_menke\n\tLaurie_Menke: Thanks.  :o)\n\n36) Laurie_Menke: Attack G1 Laurie_menke\n\n37) nycavri: Move G1 Iw Laurie_menke\n\n38) Laurie_Menke: Attack G1 Laurie_menke\n\n39) nycavri: Discover R2 Nycavri B1 Jw\n\n40) Laurie_Menke: Discover Y1 Blue Y2 Yellow\n\n41) nycavri: Sacrifice G1 Nycavri\nBuild R1 Jw\n\n42) Laurie_Menke: Move Y2 Green Blue\n\n43) nycavri: Build R1 Nycavri\n\n44) Laurie_Menke: Sacrifice Y3 Green\nMove Y2 Blue Nycavri\nMove Y2 Blue Nycavri\nMove Y1 Blue Nycavri\nCatastrophe Nycavri Y\n\tLaurie_Menke: Whew... that was close.  I almost didn&#39;t see what you were doing.\n\n45) nycavri: Trade R2 Y2 Jw\n\n46) Laurie_Menke: Build R2 Laurie_menke\n\n47) nycavri: Build R2 Nycavri\n\n48) Laurie_Menke: Move R2 Laurie_menke Nycavri\nCatastrophe Nycavri R\n\n49) nycavri: Trade Y2 G2 Jw\n\n50) Laurie_Menke: Move R3 Laurie_menke Nycavri\n\n51) nycavri: Sacrifice R1 Jw\nAttack R3 Nycavri\n\n52) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n53) nycavri: Sacrifice G2 Jw\nBuild R1 Nycavri\nBuild G1 Nycavri\n\n54) Laurie_Menke: Build Y1 Green\n\n55) nycavri: Trade R3 Y3 Nycavri\n\tLaurie_Menke: Ouch!\n\n56) Laurie_Menke: Discover Y1 Green G2 Alsogreen\n\n57) nycavri: Build Y2 Nycavri\n\n58) Laurie_Menke: Build Y2 Alsogreen\n\n59) nycavri: Move Y2 Nycavri Laurie_menke\n\n60) Laurie_Menke: Build R1 Laurie_menke\n\n61) nycavri: Move Y3 Nycavri Laurie_menke\n\tnycavri: lol.  Love your naming conventions!\n\n62) Laurie_Menke: Move Y1 Alsogreen Laurie_menke\nCatastrophe Laurie_menke Y\n\tLaurie_Menke: :oD\n\n63) nycavri: Trade G3 Y3 Nycavri\n\n64) Laurie_Menke: Sacrifice Y2 Alsogreen\nMove Y1 Green Laurie_menke\nMove Y1 Yellow Laurie_menke\n\n65) nycavri: Build R2 Nycavri\n\n66) Laurie_Menke: Build R2 Laurie_menke\n\n67) nycavri: Move R1 Nycavri Laurie_menke\nCatastrophe Laurie_menke R\n\n68) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n69) nycavri: Move R2 Nycavri Laurie_menke\n\tLaurie_Menke: Wow... cool board right now.  But this is getting much too tense!  ;o)\n\n70) Laurie_Menke: Build R1 Laurie_menke\n\n71) nycavri: Build Y1 Nycavri\n\n72) Laurie_Menke: Build R1 Laurie_menke\n\n73) nycavri: Attack G1 Laurie_menke\nCatastrophe Laurie_menke R\n\n74) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n75) nycavri: Trade G1 R1 Laurie_menke\n\n76) Laurie_Menke: Build G1 Laurie_menke\n\n77) nycavri: Attack G1 Laurie_menke\n\n78) Laurie_Menke: Build G2 Laurie_menke\n\n79) nycavri: Build G2 Laurie_menke\nCatastrophe Laurie_menke G\n\n\tLaurie_Menke: Good game, Avri!  It is much more fun to play when we&#39;re more closely matched... even though you&#39;re still better than me!  ;o)  I&#39;d be more than happy to play again now or at a later time if you&#39;d like.  In any case, congrats on the win and thanks for the fun!  :o)\n\tnycavri: Thanks, Laurie!  I&#39;ll have to pass on another game - I&#39;m scaling back a litle, since my wife is 37 weeks pregnant!\r\n\r\nStay tuned . . .\n\tLaurie_Menke: I definitely will stay tuned!  Congratulations!  :o)\n\nHomeworlds Online (SDG# 12459)\nStarted: 2009.1.21, Ended: 2009.1.24\nParticipants: TwoShort (S), xpdf (N)\nWinner: TwoShort\n\n\txpdf: discover\n\nHomeworlds Online (SDG# 12659)\nVariants: &quot;Hard time&quot;\nStarted: 2009.1.22, Ended: 2009.1.25\nParticipants: Danner (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld Y1 B2 G3\n\n\tDanner: Sorry, I haven&#39;t played on SDG so long that I forgot to check it regularly.\n\nHomeworlds Online (SDG# 12526)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.1.23, Ended: 2009.2.1\nParticipants: MadWuher (S), Mouce (N)\nWinner: MadWuher\n\n1) Mouce: Homeworld B3 G2 R3\n\n2) MadWuher: Homeworld B1 Y2 G3\n\n3) Mouce: Build R1 Mouce\n\n4) MadWuher: Build G1 Madwuher\n\tMadWuher: Sorry, changed my homeworld. (I hit enter before I thought about it)\r\n\r\nHave a good game\n\n5) Mouce: Trade R1 Y1 Mouce\n\tMouce: Hi, this is my first game of homeworlds; looks like a great game... Best of luck!\n\n6) MadWuher: Discover G1 Madwuher B3 Edora\n\tMadWuher: Welcome. Enjoy!\r\n\r\nJust ask if you have any questions. I&#39;ll do my best to help.\n\n7) Mouce: Build Y1 Mouce\n\n8) MadWuher: Build G1 Madwuher\n\n9) Mouce: Discover Y1 Mouce G1 Xombargle\n\n10) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Madwuher\n\n11) Mouce: Move Y1 Xombargle Edora\n\n12) MadWuher: Trade G2 R2 Madwuher\n\n13) Mouce: Discover R3 Mouce Y1 Whoops\n\n14) MadWuher: Trade G2 R2 Edora\n\tMouce: Oops, a slight misunderstanding of the rules... Oh, well - that&#39;s what first games are for!\n\n15) Mouce: Build Y2 Mouce\n\n16) MadWuher: Attack Y1 Edora\n\n17) Mouce: Sacrifice Y2 Mouce\nMove R3 Whoops Edora\nMove R3 Edora Madwuher\n\n\tMouce: Thanks for the game! I made a pretty critical error mid-game (I didn&#39;t read the &quot;attack&quot; command closely enough...) and it wasn&#39;t the best starting ship choice. Still I like the game a lot, and am grateful for the introduction to it. Happy future gaming!\n\nHomeworlds Online (SDG# 12650)\nStarted: 2009.1.27, Ended: 2009.2.5\nParticipants: TwoShort (S), Trollkin (N)\nWinner: TwoShort\n\n1) Trollkin: Homeworld G1 R3 B3\n\tTrollkin: Hello, good luck\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) Trollkin: Build B1 Trollkin\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) Trollkin: Trade B1 Y1 Trollkin\n\n6) TwoShort: Build G1 Twoshort\n\n7) Trollkin: Discover Y1 Trollkin G2 Bozo\n\n8) TwoShort: Trade G3 Y3 Twoshort\n\n9) Trollkin: Build Y1 Bozo\n\n10) TwoShort: Build G2 Twoshort\n\n11) Trollkin: Build B1 Trollkin\n\n12) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n13) Trollkin: Trade B3 G3 Trollkin\n\n14) TwoShort: Discover G1 Yolonda Y2 Yonderboy\n\n15) Trollkin: Trade G3 Y3 Trollkin\n\n16) TwoShort: Build G2 Twoshort\n\n17) Trollkin: Trade B1 R1 Trollkin\n\n18) TwoShort: Build G3 Yonderboy\n\n19) Trollkin: Discover Y1 Bozo B3 Heinlein\n\n20) TwoShort: Sacrifice G3 Yonderboy\nBuild G3 Yonderboy\nBuild Y1 Twoshort\nBuild G3 Yonderboy\n\n21) Trollkin: Build Y2 Bozo\n\n22) TwoShort: Trade G2 R2 Twoshort\n\n23) Trollkin: Move R1 Trollkin Yonderboy\n\n24) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Yonderboy Trollkin\nMove G3 Yonderboy Trollkin\nPass\n\n25) Trollkin: Attack G3S Trollkin\n\n26) TwoShort: Sacrifice R2 Twoshort\nAttack G3N Trollkin\nAttack Y3N Trollkin\n\n\tTwoShort: thanks for the game\n\nHomeworlds Online (SDG# 12755)\nVariants: &quot;Hard time&quot;\nStarted: 2009.2.1, Ended: 2009.2.15\nParticipants: Mouce (S), Uglyfoot (N)\nWinner: Mouce\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) Mouce: Homeworld G3 Y1 B3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Mouce: Build B1 Mouce\n\tUglyfoot: Greetings, Mouce.  Have a good game!\n\tMouce: Hi, enjoy the game!\n\n5) Uglyfoot: Discover G1 Uglyfoot Y1 Txfr\n\n6) Mouce: Discover B1 Mouce G2 Shangrilala\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) Mouce: Build B1 Shangrilala\n\n9) Uglyfoot: Build G1 Txfr\n\n10) Mouce: Trade B1 Y1 Shangrilala\n\n11) Uglyfoot: Discover G1 Txfr B2 Path\n\n12) Mouce: Build B1 Mouce\n\n13) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Path\nBuild G2 Path\nBuild G3 Uglyfoot\n\n14) Mouce: Build Y2 Shangrilala\n\n15) Uglyfoot: Trade G2 Y2 Path\n\n16) Mouce: Build Y3 Shangrilala\n\n17) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Txfr\nBuild G3 Uglyfoot\nBuild Y3 Path\n\n18) Mouce: Trade Y3 R3 Shangrilala\n\n19) Uglyfoot: Trade G1 R1 Uglyfoot\n\n20) Mouce: Sacrifice Y2 Shangrilala\nMove R3 Shangrilala Txfr\nMove R3 Txfr Path\n\n21) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R3 Path\n\n22) Mouce: Trade B1 R1 Mouce\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) Mouce: Build Y2 Shangrilala\n\n25) Uglyfoot: Sacrifice Y3 Path\nMove Y2 Path Mouce\nMove G2 Path Mouce\nMove G1 Path Mouce\n\n26) Mouce: Attack Y2 Mouce\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Mouce\nBuild R1 Path\nCatastrophe Mouce G\n\n28) Mouce: Build Y3 Shangrilala\n\n29) Uglyfoot: Trade R3 Y3 Path\n\n30) Mouce: Trade Y2 R2 Shangrilala\n\n31) Uglyfoot: Move G1 Txfr Path\n\n32) Mouce: Sacrifice Y2 Mouce\nMove Y3 Shangrilala Mouce\nMove B3 Mouce Uglyfoot\n\n33) Uglyfoot: Sacrifice R1 Path\nAttack B3 Uglyfoot\n\n34) Mouce: Move Y3 Mouce Uglyfoot\n\n35) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Txfr\nBuild G2 Txfr\nBuild G3 Uglyfoot\n\n36) Mouce: Sacrifice R2 Shangrilala\nAttack G3 Uglyfoot\nAttack B3 Uglyfoot\n\n37) Uglyfoot: Sacrifice Y3 Path\nMove G2 Txfr Uglyfoot\nMove G2 Txfr Path\nMove G2 Path Mouce\n\n38) Mouce: Trade Y3 G3 Uglyfoot\nCatastrophe Uglyfoot Green\n\n\tMouce: Thank you for the exciting game! Play you again sometime...\n\nHomeworlds Online (SDG# 12757)\nVariants: &quot;Hard time&quot;\nStarted: 2009.2.2, Ended: 2009.8.1\nParticipants: dsheldon (S), Danner (N)\nWinner: dsheldon\n\n1) Danner: Homeworld B1 R2 G3\n\tDanner: Hi again! Good luck! I hope this game will be longer :)\n\n2) dsheldon: Homeworld Y3 G2 B3\n\n3) Danner: Build G1 Danner\n\tDanner: A blue starter ship? Unusuall, at least for me. I guess you chose that because I have a small blue star.\n\n4) dsheldon: Build B1 Dsheldon\n\n5) Danner: Trade G1 B1 Danner\n\tdsheldon: It&#39;s true.  I&#39;m hoping to beat you to the g2&#39;s.  We&#39;ll see how it works out, I haven&#39;t really tried it before.\n\n6) dsheldon: Build B2 Dsheldon\n\tDanner: I&#39;m curious.\n\n7) Danner: Build B2 Danner\n\n8) dsheldon: Discover B2 Dsheldon G1 Penny\n\n9) Danner: Trade B1 Y1 Danner\n\n10) dsheldon: Build B1 Penny\n\n11) Danner: Discover B2 Danner G3 Existenz\n\n12) dsheldon: Trade B2 G2 Penny\n\n13) Danner: Build B2 Existenz\n\n14) dsheldon: Trade B1 Y1 Penny\n\n15) Danner: Trade B2 Y2 Existenz\n\n16) dsheldon: Discover G2 Penny R3 Albiorix\n\n17) Danner: Build Y1 Existenz\n\n18) dsheldon: Build Y2 Penny\n\n19) Danner: Discover Y2 Existenz G1 Garrett\n\n20) dsheldon: Build G1 Albiorix\n\n21) Danner: Sacrifice G3 Danner\nBuild Y2 Garrett\nBuild Y3 Existenz\nBuild Y3 Danner\n\n22) dsheldon: Trade B1 R1 Dsheldon\n\n23) Danner: Trade Y3 R3 Existenz\n\n24) dsheldon: Sacrifice Y2 Penny\nDiscover G1 Albiorix B2 Tube\nDiscover G1 Tube Y3 Knox\n\n25) Danner: Build Y2 Existenz\n\n26) dsheldon: Build G2 Albiorix\n\n27) Danner: Trade Y3 G3 Danner\n\n28) dsheldon: Build Y3 Penny\n\n29) Danner: Sacrifice Y2 Garrett\nMove Y1 Existenz Penny\nMove Y2 Existenz Penny\nCatastrophe Penny Y\n\n30) dsheldon: Build B1 Dsheldon\n\n31) Danner: Build Y1 Garrett\n\tdsheldon: Sorry for the delay, I was sick for two days and then so were my wife and son all weekend.\n\n32) dsheldon: Sacrifice B1 Dsheldon\nTrade G2 Y2 Albiorix\n\tDanner: No problem, I hope you are all well now.\n\n33) Danner: Sacrifice Y2 Garrett\nMove R3 Existenz Garrett\nMove R3 Garrett Albiorix\n\n34) dsheldon: Sacrifice Y2 Albiorix\nMove G2 Albiorix Garrett\nDiscover G2 Garrett B3 Poseidon\n\n35) Danner: Trade B2 Y2 Existenz\n\n36) dsheldon: Build G1 Poseidon\n\n37) Danner: Sacrifice G3 Danner\nBuild Y1 Garrett\nBuild Y2 Existenz\nBuild Y2 Danner\n\n38) dsheldon: Build G2 Knox\n\n39) Danner: Build Y3 Existenz\n\n40) dsheldon: Build G3 Knox\n\n41) Danner: Move Y3 Existenz Danner\n\n42) dsheldon: Sacrifice G3 Knox\nBuild G3 Knox\nBuild G3 Poseidon\nBuild R1 Dsheldon\n\n43) Danner: Move Y1 Garrett Albiorix\n\n44) dsheldon: Move G2 Knox Garrett\n\n45) Danner: Move Y1 Garrett Albiorix\n\n46) dsheldon: Sacrifice G3 Knox\nBuild G3 Knox\nBuild B1 Dsheldon\nBuild B1 Dsheldon\n\n47) Danner: Move R3 Albiorix Danner\n\n48) dsheldon: Sacrifice G2 Garrett\nBuild G1 Knox\nBuild R1 Dsheldon\n\n49) Danner: Move R3 Danner Existenz\n\n50) dsheldon: Trade G2 R2 Poseidon\n\n51) Danner: Build R2 Existenz\n\n52) dsheldon: Build R3 Poseidon\n\n53) Danner: Move R3 Existenz Danner\n\n54) dsheldon: Build G2 Poseidon\n\n55) Danner: Move R2 Existenz Danner\n\tDanner: Sorry for the big delay, last week there was 4 rounds of a competition, and the next one is on Friday, which requires preparation.\n\n56) dsheldon: Trade R2 B2 Poseidon\n\tdsheldon: Not like I haven&#39;t done the same before.\n\n57) Danner: Trade R2 G2 Danner\n\n58) dsheldon: Sacrifice G2 Poseidon\nBuild R2 Poseidon\nBuild R2 Poseidon\n\tdsheldon: I&#39;ll be a bit before my next move.  Emergency cross-country trip.\n\n59) Danner: Build G2 Danner\n\tDanner: Ok.\n\n60) dsheldon: Move G1 Knox Danner\n\n61) Danner: Move G2 Danner Albiorix\n\n62) dsheldon: Sacrifice R1 Dsheldon\nAttack Y1N Danner\n\n\n63) Danner: Attack Y1S Danner\n\n64) dsheldon: Attack Y1N Danner\n\tDanner: Sorry for the delay, it&#39;s an interesting setting, and I sat for my final examinations this week.\n\n65) Danner: Attack Y1S Danner\n\tdsheldon: No problem.  I was worried you&#39;d time out on me.  It&#39;d be terrible if that happened now.\n\n66) dsheldon: Attack Y1N Danner\n\n67) Danner: Attack Y1S Danner\n\tdsheldon: We can do this forever, unless you want to try something different.\n\n68) dsheldon: Sacrifice B1 Dsheldon\nTrade G1 B1 Knox\n\tDanner: I don&#39;t have much choice\n\n69) Danner: Build G1 Albiorix\n\tdsheldon: Well, at least we know where our conflict lies.  You should totally sac your R3 and take both my ships in your homeworld.\n\tDanner: It wouldn&#39;t help, because after a few moves there will be the same situation again. (You bring your other G1 ship, I remove my G1 from my HW, and there is it.)\n\n70) dsheldon: Build B2 Knox\n\tDanner: Oh no! You have only 12 hours left! :S\r\nI undo my last move. I dunno how the time bank will be changed exactly. Let&#39;s hope the best.\n\tDanner: Well, you didn&#39;t get any time back, but at least your clock is stopped. Now you have about 6 days to return. Tell me when I can redo my move.\n\tdsheldon: Eek!  Has it been a week already?  Thanks so much for stalling.  I&#39;m ready now.\n\tDanner: Np.\n\n71) Danner: Attack G1S Danner\n\n72) dsheldon: Discover G3 Knox B2 Sidebet\n\tdsheldon: guess it&#39;s only fair that I try something different to break this stalemate\n\n73) Danner: Move R3 Danner Knox\n\tDanner: Thx.\n\n74) dsheldon: Move B2 Knox Danner\n\n75) Danner: Attack B2S Danner\n\n76) dsheldon: Move B1 Knox Sidebet\n\n77) Danner: Build B3 Danner\n\n78) dsheldon: Sacrifice B2 Poseidon\nPass\nPass\n\n79) Danner: Discover Y2 Existenz R1 Deathstar\n\tDanner: Oh no! You have only 6 hours left!\n\tdsheldon: Hit me, I&#39;m ready.  (All I need to do is check again before midnight.)\n\n80) dsheldon: Sacrifice B1 Sidebet\nTrade G1 B1 Poseidon\n\n81) Danner: Move B3 Danner Knox\n\n82) dsheldon: Build G1 Poseidon\n\n83) Danner: Move B3 Knox Deathstar\n\n84) dsheldon: Move B1 Dsheldon Deathstar\n\tdsheldon: Uh oh... aptly named.\n\n85) Danner: Attack B1 Deathstar\n\tDanner: :)\n\n86) dsheldon: Move R1 Dsheldon Deathstar\n\n87) Danner: Attack R1S Deathstar\n\tdsheldon: Things do not look good.  Being immobilized has been un-good.\n\tDanner: You&#39;re right.\n\n88) dsheldon: Sacrifice R2 Poseidon\nPass\nPass\n\tDanner: Oh no, the stash is empty! What will I build now?\n\tDanner: Sorry, I have changed my mind.\n\n89) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild R2 Knox\n\n90) dsheldon: Sacrifice B1 Poseidon\nPass\n\n91) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild B1 Deathstar\n\n92) dsheldon: Trade R2 B2 Poseidon\n\n93) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild R2 Knox\n\tDanner: Special offer: free ships! Available until stocks are exhausted! Only at DeathStar!\n\n94) dsheldon: Pass\n\n95) Danner: Move R1 Deathstar Existenz\n\tdsheldon: Without any yellow, this game becomes very difficult.\n\n96) dsheldon: Pass\n\tDanner: Indeed.\n\n97) Danner: Move R3 Knox Deathstar\n\n98) dsheldon: Pass\n\n\tDanner: Oh no, you have only 12 hours left...\n\tDanner: Oh, my god...\n\nHomeworlds Online (SDG# 12672)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.2.4, Ended: 2009.2.9\nParticipants: Hix (S), MadWuher (N)\nWinner: Hix\n\n1) MadWuher: Homeworld B1 Y3 G3\n\n2) Hix: Homeworld B2 Y1 G3\n\tHix: homeworld b2 y1 g3\n\n\tMadWuher: Sorry about that. Forgot to setup my vacation message before I left.\n\nHomeworlds Online (SDG# 12587)\nStarted: 2009.2.6, Ended: 2009.7.9\nParticipants: MikeYarrum (S), pmagnus (N)\nWinner: pmagnus\n\n1) pmagnus: Homeworld G2 B3 Y3\n\n\nHomeworlds Online (SDG# 12676)\nStarted: 2009.2.6, Ended: 2009.7.9\nParticipants: mschlat (S), pmagnus (N)\nWinner: mschlat\n\n1) pmagnus: Homeworld G1 Y2 B3\n\n2) mschlat: Homeworld Y3 B1 G3\n\n3) pmagnus: Build B1 Pmagnus\n\n4) mschlat: Build G1 Mschlat\n\n5) pmagnus: Discover B1 Pmagnus Y3 Barnard\n\n6) mschlat: Trade G1 Y1 Mschlat\n\n7) pmagnus: Build B1 Pmagnus\n\n8) mschlat: Build G1 Mschlat\n\n9) pmagnus: Trade B1 G1 Barnard\n\n10) mschlat: Build G2 Mschlat\n\n11) pmagnus: Build G2 Barnard\n\n12) mschlat: Trade G2 Y2 Mschlat\n\n13) pmagnus: Build G2 Barnard\n\n\n14) mschlat: Sacrifice Y2 Mschlat\nDiscover G1 Mschlat R2 Temp\nMove G1 Temp Barnard\nCatastrophe Barnard Green\n\n15) pmagnus: Trade B1 G1 Pmagnus\n\n16) mschlat: Build Y1 Mschlat\n\n17) pmagnus: Build B1 Pmagnus\n\n18) mschlat: Trade Y1 R1 Mschlat\n\n19) pmagnus: Trade B1 Y1 Pmagnus\n\n20) mschlat: Build R1 Mschlat\n\n\nHomeworlds Online (SDG# 12588)\nStarted: 2009.2.8, Ended: 2009.2.28\nParticipants: agentofchaos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld Y1 B3 G3\n\tts52: Have a good game. \n\tagentofchaos: Thanks, you too. \n\n3) ts52: Build G1 Ts52\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Discover G1 Agentofchaos B2 Jophur\n\n9) ts52: Build G2 Ts52\n\n10) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G2 Jophur\nBuild G3 Agentofchaos\n\n11) ts52: Discover G2 Ts52 G3 Kermit\n\n12) agentofchaos: Trade G2 Y2 Jophur\n\n13) ts52: Discover G1 Ts52 Y3 Bigbird\n\n14) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Jophur\nBuild Y1 Jophur\nBuild G3 Agentofchaos\n\n15) ts52: Sacrifice G2 Kermit\nBuild G2 Bigbird\nBuild G3 Ts52\n\n16) agentofchaos: Move Y1 Jophur Agentofchaos\n\n17) ts52: Discover Y1 Ts52 B3 Grover\n\n18) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Jophur\nBuild Y3 Agentofchaos\nBuild G3 Agentofchaos\n\n19) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild Y3 Grover\n\n20) agentofchaos: Discover Y1 Agentofchaos R2 Orocore\n\n21) ts52: Trade Y1 R1 Grover\n\n22) agentofchaos: Trade G1 R1 Jophur\n\n23) ts52: Discover G1 Bigbird Y1 Zoe\n\n24) agentofchaos: Trade G1 R1 Agentofchaos\n\n25) ts52: Sacrifice G1 Zoe\nBuild Y1 Grover\n\n26) agentofchaos: Build R2 Jophur\n\n27) ts52: Move Y3 Grover Orocore\n\n28) agentofchaos: Discover Y1 Orocore G1 Abaddon\n\n29) ts52: Build G1 Bigbird\n\n30) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G1 Jophur\nBuild R2 Agentofchaos\nBuild G3 Agentofchaos\n\n31) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild R3 Grover\n\n32) agentofchaos: Sacrifice Y2 Jophur\nMove R1 Jophur Grover\nMove R2 Jophur Grover\nCatastrophe Grover R\n\n33) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild Y2 Grover\n\n34) agentofchaos: Trade R1 B1 Agentofchaos\n\n35) ts52: Trade Y1 R1 Grover\n\n36) agentofchaos: Trade G2 R2 Jophur\n\n37) ts52: Move G1 Bigbird Orocore\n\n38) agentofchaos: Move G2 Agentofchaos Jophur\n\n39) ts52: Build Y1 Orocore\n\n40) agentofchaos: Discover Y3 Agentofchaos G2 Kakradoom\n\n41) ts52: Sacrifice G2 Bigbird\nBuild Y3 Grover\nBuild G2 Orocore\n\n42) agentofchaos: Discover Y2 Jophur B3 Icefall\n\n43) ts52: Move G1 Orocore Grover\n\n44) agentofchaos: Build R1 Jophur\n\n45) ts52: Discover G3 Ts52 R3 Elmo\n\n46) agentofchaos: Move Y1 Abaddon Jophur\n\n47) ts52: Build G1 Ts52\n\n48) agentofchaos: Sacrifice G2 Jophur\nBuild B1 Agentofchaos\nBuild G2 Agentofchaos\n\n49) ts52: Trade Y2 B2 Grover\n\n50) agentofchaos: Move B1 Agentofchaos Kakradoom\n\n51) ts52: Move B2 Grover Orocore\n\n52) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Icefall\nBuild B2 Kakradoom\nBuild G3 Agentofchaos\n\n53) ts52: Sacrifice Y3 Orocore\nMove G1 Grover Orocore\nMove G1 Orocore Agentofchaos\nMove G2 Orocore Agentofchaos\nCatastrophe Agentofchaos G\n\n54) agentofchaos: Build Y3 Jophur\n\n55) ts52: Build G1 Elmo\n\n56) agentofchaos: Trade Y3 G3 Jophur\n\n57) ts52: Sacrifice G1 Elmo\nBuild Y3 Orocore\n\n58) agentofchaos: Move G3 Jophur Agentofchaos\n\n59) ts52: Build G1 Elmo\n\n60) agentofchaos: Discover Y1 Jophur R3 Threndor\n\n61) ts52: Trade G3 R3 Ts52\n\n62) agentofchaos: Trade B1 R1 Kakradoom\n\n63) ts52: Sacrifice G1 Elmo\nBuild B1 Orocore\n\n64) agentofchaos: Move B1 Agentofchaos Kakradoom\n\n65) ts52: B G1 Ts52\n\n66) agentofchaos: Build G2 Jophur\n\n67) ts52: Move G1 Ts52 Grover\n\n68) agentofchaos: Discover B1 Kakradoom G3 Ghede\n\n69) ts52: Sacrifice G3 Elmo\nBuild R3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\n\n70) agentofchaos: Sacrifice Y3 Kakradoom\nMove Y2 Icefall Ts52\nMove Y2 Icefall Ts52\nMove Y1 Threndor Ts52\nCatastrophe Ts52 Y\n\n71) ts52: Move Y3 Grover Jophur\n\n72) agentofchaos: Build R3 Kakradoom\n\n73) ts52: Sacrifice G2 Grover\nBuild G2 Grover\nBuild B3 Orocore\n\n74) agentofchaos: Trade R2 Y2 Jophur\n\n75) ts52: Sacrifice R3 Ts52\nAttack Y2S Jophur\nAttack R1S Jophur\nAttack G2S Jophur\n\n76) agentofchaos: Build R2 Agentofchaos\n\n77) ts52: Sacrifice Y3 Jophur\nMove B1 Orocore Agentofchaos\nMove B2 Orocore Agentofchaos\nMove B3 Orocore Agentofchaos\nCatastrophe Agentofchaos B\n\n78) agentofchaos: Trade R1 Y1 Kakradoom\n\n79) ts52: Build Y2 Jophur\n\n80) agentofchaos: Build B1 Ghede\n\n81) ts52: Sacrifice Y3 Orocore\nMove Y1 Orocore Agentofchaos\nMove Y2 Jophur Agentofchaos\nM Y2 Jophur Agentofchaos\nC Agentofchaos Yellow\n\n\nHomeworlds Online (SDG# 12700)\nStarted: 2009.2.9, Ended: 2009.2.15\nParticipants: agentofchaos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) agentofchaos: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\tagentofchaos: Hi, enjoy the game. \n\n4) agentofchaos: Build G1 Agentofchaos\n\tTwoShort: Howdy.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) TwoShort: Build Y1 Twoshort\n\n8) agentofchaos: Discover G1 Agentofchaos Y3 Synchron\n\n9) TwoShort: Build Y2 Twoshort\n\n10) agentofchaos: Build G1 Synchron\n\n11) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) TwoShort: Build G2 Twoshort\n\n14) agentofchaos: Trade G2 Y2 Agentofchaos\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n16) agentofchaos: Move Y2 Agentofchaos Synchron\n\n17) TwoShort: Trade Y2 R2 Bluonia\n\n18) agentofchaos: Trade G1 R1 Agentofchaos\n\n19) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n20) agentofchaos: Move R1 Agentofchaos Synchron\n\n21) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar Synchron\nMove Y1 Bluonia Synchron\nCatastrophe Synchron Yellow\n\n22) agentofchaos: Build G1 Agentofchaos\n\n23) TwoShort: Sacrifice Y3 Twoshort\nDiscover Y3 Bluonia R3 Doomtime\nMove Y3 Doomtime Agentofchaos\nPass\n\n24) agentofchaos: Trade G1 R1 Agentofchaos\n\n25) TwoShort: Sacrifice R2 Bluonia\nAttack G3S Agentofchaos\nAttack R1S Agentofchaos\n\n\nHomeworlds Online (SDG# 12625)\nStarted: 2009.2.9, Ended: 2009.6.8\nParticipants: agentofchaos (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 R3 G3\n\n2) agentofchaos: Homeworld Y1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\tagentofchaos: Hi again. \n\tMadWuher: Hi there. Good luck.\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) MadWuher: Build Y1 Madwuher\n\n8) agentofchaos: Discover G1 Agentofchaos B3 Tchad\n\n9) MadWuher: Discover Y1 Madwuher B1 Edora\n\n10) agentofchaos: Build G1 Tchad\n\n11) MadWuher: Build G2 Madwuher\n\n12) agentofchaos: Trade G1 R1 Agentofchaos\n\n13) MadWuher: Trade G2 R2 Madwuher\n\n14) agentofchaos: Build G1 Agentofchaos\n\n15) MadWuher: Build G2 Madwuher\n\n16) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G2 Tchad\nBuild G3 Agentofchaos\n\n17) MadWuher: Build G3 Madwuher\n\n18) agentofchaos: Trade G2 Y2 Tchad\n\n19) MadWuher: Move G3 Madwuher Edora\n\n20) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Tchad\nBuild R1 Agentofchaos\n\n21) MadWuher: Build Y2 Edora\n\n22) agentofchaos: Trade Y2 R2 Tchad\n\n23) MadWuher: Move R2 Madwuher Edora\n\n24) agentofchaos: Build Y2 Tchad\n\n25) MadWuher: Discover Y2 Edora B3 Bologna\n\n26) agentofchaos: Discover Y2 Tchad G2 Quasmer\n\n27) MadWuher: Sacrifice G3 Madwuher\nBuild Y3 Edora\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n28) agentofchaos: Build R1 Tchad\n\n29) MadWuher: Build G2 Edora\n\n30) agentofchaos: Move R1 Tchad Quasmer\n\n31) MadWuher: Build G3 Madwuher\n\n32) agentofchaos: Trade R1 B1 Agentofchaos\n\n33) MadWuher: Move Y3 Edora Tchad\n\n34) agentofchaos: Sacrifice Y2 Tchad\nMove G1 Tchad Edora\nMove G1 Tchad Edora\nCatastrophe Edora G\n\n35) MadWuher: Sacrifice G2 Madwuher\nBuild G1 Madwuher\nBuild Y2 Edora\n\n36) agentofchaos: Discover R1 Quasmer G3 Gloam\n\n37) MadWuher: Move G1 Madwuher Edora\n\n38) agentofchaos: Trade R2 G2 Tchad\n\n39) MadWuher: Build G1 Madwuher\n\n40) agentofchaos: Trade G2 B2 Tchad\n\n41) MadWuher: Sacrifice R2 Edora\nAttack B2 Tchad\nPass\n\n42) agentofchaos: Move B1 Agentofchaos Gloam\n\n43) MadWuher: Trade B2 R2 Tchad\n\n44) agentofchaos: Build B1 Gloam\n\n45) MadWuher: Sacrifice Y3 Madwuher\nDiscover G1 Edora Y3 Camelot\nMove Y2 Edora Gloam\nMove Y1 Edora Tchad\n\n46) agentofchaos: Build B1 Gloam\n\n47) MadWuher: Sacrifice G1 Camelot\nBuild Y3 Madwuher\n\n48) agentofchaos: Build R1 Agentofchaos\n\n49) MadWuher: Sacrifice G1 Madwuher\nBuild R2 Tchad\n\n50) agentofchaos: Discover Y2 Quasmer B3 Seti\n\n51) MadWuher: Sacrifice R2 Tchad\nAttack R1 Gloam\nAttack B1 Gloam\n\n52) agentofchaos: Build B2 Gloam\nCatastrophe Gloam B\n\n53) MadWuher: Build R2 Gloam\n\n54) agentofchaos: Move R1 Agentofchaos Seti\n\n55) MadWuher: Discover R2 Gloam B2 Edora\n\n56) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R2 Seti\n\n57) MadWuher: Build R3 Gloam\n\n58) agentofchaos: Build R3 Agentofchaos\n\n59) MadWuher: Build G1 Madwuher\n\n60) agentofchaos: Trade R1 B1 Agentofchaos\n\n61) MadWuher: Trade G1 B1 Madwuher\n\n62) agentofchaos: Build G1 Agentofchaos\n\n63) MadWuher: Build G1 Madwuher\n\n64) agentofchaos: Move B1 Agentofchaos Seti\n\n65) MadWuher: Discover Y3 Madwuher B1 Camelot\n\n66) agentofchaos: Discover R2 Seti G2 Tenebrus\n\n67) MadWuher: Move Y3 Camelot Seti\n\n68) agentofchaos: Move Y2 Seti Tenebrus\n\n69) MadWuher: Sacrifice R2 Edora\nAttack R1 Seti\nAttack B1 Seti\n\n70) agentofchaos: Build R1 Tenebrus\n\n71) MadWuher: Trade R1 G1 Seti\n\n72) agentofchaos: Move R1 Tenebrus Gloam\n\n73) MadWuher: Sacrifice R1 Gloam\nAttack R1 Gloam\n\n74) agentofchaos: Build R1 Tenebrus\n\n75) MadWuher: Discover R1 Gloam G2 Edora\n\n76) agentofchaos: Build R1 Agentofchaos\n\n77) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Seti\nBuild G3 Madwuher\nBuild R2 Edora\n\n78) agentofchaos: Discover R1 Tenebrus B1 Kobold\n\n79) MadWuher: Build B2 Seti\n\n80) agentofchaos: Move R2 Tenebrus Kobold\n\n81) MadWuher: Move Y3 Tchad Kobold\n\n82) agentofchaos: Sacrifice Y2 Tenebrus\nMove R2 Kobold Edora\nMove R1 Kobold Edora\nCatastrophe Edora R\n\n83) MadWuher: Sacrifice G2 Seti\nBuild G2 Seti\nBuild Y2 Madwuher\n\n84) agentofchaos: Move R3 Agentofchaos Tchad\n\n85) MadWuher: Sacrifice Y1 Tchad\nDiscover R2 Tchad Y1 Monopoly\n\n86) agentofchaos: Move G1 Agentofchaos Tchad\n\n87) MadWuher: Move G1 Seti Monopoly\n\n88) agentofchaos: Build G2 Agentofchaos\n\n89) MadWuher: Sacrifice Y3 Kobold\nMove G2 Seti Agentofchaos\nMove G1 Monopoly Seti\nMove G1 Seti Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: Thanks for the game. \n\tMadWuher: Thank you.\n\nHomeworlds Online (SDG# 12825)\nStarted: 2009.2.11, Ended: 2009.2.14\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 12579)\nVariants: &quot;Hard time&quot;\nStarted: 2009.2.11, Ended: 2009.2.15\nParticipants: SuperDelete (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\tJesse: Hello, and have a good game.\n\n\nHomeworlds Online (SDG# 12842)\nStarted: 2009.2.11, Ended: 2009.5.8\nParticipants: pedrop (S), Hix (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) Hix: Homeworld B3 G1 Y3\n\n2) agentofchaos: Homeworld R1 B2 G3\n\n3) pedrop: Homeworld Y1 B3 G3\n\tagentofchaos: Hi everyone, thanks for playing. Enjoy the game. \n\n4) Hix: Build Y1 Hix\n\tpedrop: Hi! Thanks to You too!:)\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) pedrop: Build G1 Pedrop\n\n7) Hix: Build Y1 Hix\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\tHix: Yes, Hello!  And thanks for the game.\n\n9) pedrop: Discover G1 Pedrop Y2 Transka\n\n10) Hix: Discover Y1 Hix G2 Bubble\n\n11) agentofchaos: Build Y2 Agentofchaos\n\tpedrop: Are the rules of Good &amp; Evil implemented on SDG?\n\n12) pedrop: Build G1 Pedrop\n\tagentofchaos: No, there are no good and evil designations in this version as far as I know. \n\n13) Hix: Build Y2 Bubble\n\n14) agentofchaos: Build G1 Agentofchaos\n\tpedrop: Sorry, for undo, but it was quite sensless move...:)\n\n15) pedrop: Build G2 Transka\n\n16) Hix: Trade Y1 B1 Hix\n\n17) agentofchaos: Discover Y2 Agentofchaos G3 Kakra\n\n18) pedrop: Sacrifice G3 Pedrop\nBuild G2 Pedrop\nBuild G2 Transka\nBuild G3 Pedrop\n\n19) Hix: Trade Y3 G3 Hix\n\n20) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Kakra\nBuild G3 Agentofchaos\n\n21) pedrop: Trade G1 B1 Pedrop\n\n22) Hix: Build B1 Hix\n\n23) agentofchaos: Trade Y1 B1 Agentofchaos\n\n24) pedrop: Discover G2 Transka G1 Techlord\n\n25) Hix: Trade B1 R1 Hix\n\n26) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild B1 Agentofchaos\nBuild G3 Agentofchaos\n\n27) pedrop: Sacrifice B1 Pedrop\nTrade G2 R2 Techlord\n\tpedrop: This is Sinister variant(I have to eliminate Hix to win) or last man standing?\n\tpedrop: Ok, I have figured it out myself: default is &quot;last man standing&quot; - good:)\n\n28) Hix: Move Y2 Bubble Hix\n\n29) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y2 R2 Kakra\n\n30) pedrop: Trade G2 Y2 Pedrop\n\n31) Hix: Build Y3 Hix\n\n32) agentofchaos: Build Y3 Kakra\n\n33) pedrop: Build G2 Pedrop\n\n34) Hix: Sacrifice Y3 Hix\nMove Y2 Hix Bubble\nMove Y2 Bubble Pedrop\nMove Y1 Bubble Pedrop\nCatastrophe Pedrop Y\n\n35) agentofchaos: Discover G1 Agentofchaos Y3 Kalki\n\n36) pedrop: Trade G2 Y2 Pedrop\n\n37) Hix: Trade G3 Y3 Hix\n\n38) agentofchaos: Build G2 Agentofchaos\n\n39) pedrop: Build G2 Pedrop\n\n40) agentofchaos: Sacrifice G2 Agentofchaos\nBuild G2 Kalki\nBuild R1 Kakra\n\n41) pedrop: Discover G2 Transka R3 Ziemia\n\n42) agentofchaos: Move Y3 Kakra Transka\n\n43) pedrop: Sacrifice G3 Pedrop\nBuild G2 Transka\nBuild G3 Ziemia\nBuild G3 Pedrop\n\tagentofchaos: I don&#39;t know where Hix disappeared to, I sent a PM a couple of days ago, but there was no response, so I&#39;ve forced surrender so we can continue the game. So all Hix&#39;s ships are up for grabs!! \n\n44) agentofchaos: Sacrifice R2 Kakra\nAttack G2S Transka\nAttack G1S Transka\n\n45) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y1 Pedrop\nBuild R1 Techlord\n\tagentofchaos: Hi pedrop, nice to see you&#39;ve come back, hope everything is OK :-)\n\n46) agentofchaos: Move Y3 Transka Hix\n\n47) pedrop: Trade Y1 B1 Pedrop\n\tagentofchaos: Come back soon! ;-)\n\n48) agentofchaos: Trade Y3 R3 Hix\n\tpedrop: Ok... ;)\n\n49) pedrop: Move B1 Pedrop Techlord\n\n50) agentofchaos: Sacrifice Y2 Kakra\nMove G1 Transka Pedrop\nMove G2 Transka Pedrop\nCatastrophe Pedrop G\n\n51) pedrop: Build B1 Techlord\n\n52) agentofchaos: Attack Y3N Hix\n\n53) pedrop: Sacrifice B1 Techlord\nTrade G2 Y2 Ziemia\n\n54) agentofchaos: Discover Y3 Hix R2 Haema\n\n55) pedrop: Build G1 Ziemia\n\n56) agentofchaos: Move Y3 Haema Pedrop\n\n57) pedrop: Sacrifice Y2 Ziemia\nMove G3 Ziemia Techlord\nMove G3 Techlord Pedrop\n\n58) agentofchaos: Sacrifice R3 Hix\nAttack G3S Pedrop\nAttack Y2S Pedrop\nPass\n\n\tpedrop: Thanks for the game, when Hix has broken my system, I was already &quot;dead&quot;;) Cheers!\n\tagentofchaos: Thanks for staying in the game. I know what you mean, it&#39;s hard to make a comeback when you lose a system marker!\r\nCheers! :-)\n\nHomeworlds Online (SDG# 12795)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.2.12, Ended: 2009.3.3\nParticipants: Mouce (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Enjoy the game\r\n\n\n2) Mouce: Homeworld Y1 B3 G3\n\tMouce: You too!\n\n3) MadWuher: Build G1 Madwuher\n\n4) Mouce: Build G1 Mouce\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Mouce: Discover G1 Mouce B2 Rathome\n\n7) MadWuher: Build G1 Madwuher\n\n8) Mouce: Build G1 Mouce\n\n9) MadWuher: Build G2 Madwuher\n\n10) Mouce: Sacrifice G3 Mouce\nBuild G2 Rathome\nBuild G2 Mouce\nBuild G3 Mouce\n\n11) MadWuher: Discover G2 Madwuher G3 Edora\n\n12) Mouce: Trade G1 Y1 Rathome\n\n13) MadWuher: Build Y2 Madwuher\n\n14) Mouce: Discover G2 Mouce B2 Scamper\n\n15) MadWuher: Discover G1 Madwuher B3 Camelot\n\n16) Mouce: Sacrifice G3 Mouce\nBuild G1 Scamper\nBuild Y2 Rathome\nBuild G3 Mouce\n\n17) MadWuher: Sacrifice G2 Edora\nBuild G2 Madwuher\nBuild G3 Camelot\n\n18) Mouce: Discover Y2 Rathome B3 Scritch\n\n19) MadWuher: Move Y1 Madwuher Camelot\n\n20) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild Y2 Rathome\nBuild Y3 Scritch\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Camelot\n\n22) Mouce: Sacrifice Y2 Rathome\nMove G2 Scamper Scritch\nMove G1 Scamper Scritch\n\n23) MadWuher: Discover G3 Camelot Y2 Edora\n\n24) Mouce: Trade Y3 R3 Scritch\n\n25) MadWuher: Sacrifice Y3 Madwuher\nMove G1 Camelot Edora\nMove G1 Edora Mouce\nMove G3 Edora Mouce\nCatastrophe Mouce G\n\tMadWuher: Thanks for the game. Just a quick question, why trade away your y3 for an r3?\n\tMouce: Heh, I didn&#39;t see that at all!  I just made a stupid move, not noticing your threat... I traded the y3 for an r3, as you had no safe space to construct another y3, and I could have safely (perhaps) gained the y3 back in the next turn. A good move if you had no threat, obviously not a nice move given the position. I felt that I was playing nicely up until that point, too. Oh well! Live and learn. Thanks!\n\n\nHomeworlds Online (SDG# 12838)\nStarted: 2009.2.12, Ended: 2009.2.20\nParticipants: ts52 (S), Mouce (N)\nWinner: ts52\n\n1) Mouce: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Mouce: Build G1 Mouce\n\n4) ts52: Build G1 Ts52\n\tMouce: Enjoy the game!\n\tts52: Thanks, you too!\n\n5) Mouce: Discover G1 Mouce B3 Rathome\n\n6) ts52: Discover G1 Ts52 B1 Gonzo\n\n7) Mouce: Build G1 Mouce\n\n8) ts52: Build G2 Ts52\n\n9) Mouce: Build G2 Rathome\n\n10) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Gonzo\n\n11) Mouce: Trade G1 Y1 Rathome\n\n12) ts52: Trade G3 Y3 Gonzo\n\n13) Mouce: Sacrifice G3 Mouce\nBuild G1 Rathome\nBuild Y1 Rathome\nBuild G3 Mouce\n\n14) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\n\n15) Mouce: Move Y1 Rathome Gonzo\n\n16) ts52: Trade Y3 R3 Gonzo\n\n17) Mouce: Sacrifice G3 Mouce\nBuild Y2 Gonzo\nBuild Y2 Rathome\nBuild G3 Mouce\n\n18) ts52: Discover G3 Ts52 R1 Elmo\n\n19) Mouce: Sacrifice Y2 Gonzo\nMove G1 Rathome Gonzo\nMove G1 Gonzo Ts52\n\n20) ts52: Trade G3 R3 Ts52\n\n21) Mouce: Sacrifice G3 Mouce\nBuild Y2 Gonzo\nBuild Y3 Gonzo\nBuild G3 Mouce\nCatastrophe Gonzo Yellow\n\n22) ts52: Build G3 Elmo\n\n23) Mouce: Sacrifice Y2 Rathome\nMove G1 Ts52 Elmo\nMove G2 Rathome Elmo\nCatastrophe Elmo Green\n\tts52: Wow, I totally missed the part where you moved a ship into Gonzo. Not that I could do anything differently... nice play.\n\n24) ts52: Trade G2 Y2 Gonzo\n\n25) Mouce: Trade G1 R1 Mouce\n\n26) ts52: Move R3 Gonzo Rathome\n\tts52: Man, where is my head today.\n\tMouce: You remain *very* ahead in development nevertheless... I am enjoying this game quite a bit, as I have only kept you from crushing me via sacrifices! I enjoy playing against stronger players.\n\n27) Mouce: Discover Y1 Rathome G1 Scurry\n\n28) ts52: Build R1 Ts52\n\n29) Mouce: Build Y1 Scurry\n\n30) ts52: Build Y2 Gonzo\n\n31) Mouce: Build G1 Mouce\n\n32) ts52: Build G2 Gonzo\n\n33) Mouce: Discover Y1 Scurry B3 Hole\n\n34) ts52: Move Y2 Gonzo Rathome\n\n35) Mouce: Discover Y1 Hole G2 Nest\n\n36) ts52: Build G3 Ts52\n\n37) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild Y2 Nest\nBuild Y3 Scurry\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild Y3 Gonzo\n\n39) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild R1 Mouce\nBuild R2 Mouce\n\n40) ts52: Move G2 Gonzo Rathome\n\n41) Mouce: Sacrifice Y3 Scurry\nMove Y1 Nest Scurry\nMove Y1 Scurry Ts52\nMove Y1 Scurry Ts52\n\n42) ts52: Sacrifice R3 Ts52\nAttack Y1N Ts52\nAttack Y1N Ts52\nPass\n\n43) Mouce: Discover Y2 Nest B1 Mercury\n\n44) ts52: Discover Y1 Ts52 B1 Grover\n\n45) Mouce: Discover R2 Mouce Y3 Sniffle\n\n46) ts52: Build R2 Rathome\n\n47) Mouce: Trade Y2 G2 Mercury\n\n48) ts52: Sacrifice G3 Ts52\nBuild G1 Rathome\nBuild G3 Ts52\nBuild Y2 Rathome\n\n49) Mouce: Move R1 Mouce Rathome\n\n50) ts52: M R3 Rathome Gonzo\n\n51) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild R2 Sniffle\nBuild R3 Mouce\n\n52) ts52: Build R3 Gonzo\n\n53) Mouce: Move R3 Mouce Rathome\n\n54) ts52: Sacrifice Y3 Gonzo\nMove G1 Rathome Mouce\nMove G2 Rathome Mouce\nMove R2 Rathome Mouce\nCatastrophe Mouce G\n\n55) Mouce: Sacrifice R2 Sniffle\nAttack Y2 Rathome\nAttack Y2 Rathome\n\n56) ts52: Attack R1N Mouce\n\tMouce: sorry,typo\n\n\tMouce: Kudos for the win! You have taught me quite a bit...  I enjoyed our game thoroughly!\n\tts52: Thanks! And thanks for the game. I&#39;d be happy to play you again any time.\n\nHomeworlds Online (SDG# 12840)\nStarted: 2009.2.12, Ended: 2009.2.26\nParticipants: jgabin1 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) jgabin1: Homeworld G2 B1 Y3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\n4) jgabin1: Build Y1 Jgabin1\n\n5) TwoShort: Build G1 Twoshort\n\tjgabin1: Hello\n\tjgabin1: This is my first time on this site\n\n6) jgabin1: Discover Y1 Jgabin1 G3 Bob\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) jgabin1: Build Y1 Bob\n\n9) TwoShort: Build Y2 Twoshort\n\n10) jgabin1: Build Y2 Bob\n\n11) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n12) jgabin1: Build Y2 Jgabin1\n\n13) TwoShort: Build Y3 Twoshort\n\tTwoShort: Since you&#39;re new, a couple words of strategy advice: First, I&#39;d generally recommend starting with a green ship, it&#39;s easiest and usually best.  Second, you don&#39;t usually want to build up to three of the same color in one system.  I could move my y1 from Bluonia into bob right now and cause a catastophe.  I won&#39;t this turn because I&#39;d rather take the y3 while I can get it.  Also note that you can&#39;t take the other y3 at your homeworld because I&#39;ll sacrifice my y2 to move the y1 twice, and win with a catastrophe in your home.\n\n14) jgabin1: Trade Y3 G3 Jgabin1\n\tjgabin1: Thanks man, im still trying to get the basics, i see what your saying. hopefully next time ill be a big challenge for you!! I really appreciate the advice.\n\n15) TwoShort: Move Y1 Bluonia Bob\nCatastrophe Bob Yellow\n\n\nHomeworlds Online (SDG# 12841)\nStarted: 2009.2.12, Ended: 2009.3.7\nParticipants: MadWuher (S), jgabin1 (N)\nWinner: MadWuher\n\n1) jgabin1: Homeworld G2 B1 Y3\n\n2) MadWuher: Homeworld R2 B3 G3\n\tjgabin1: Hay this is my first time on the site\r\n\n\n3) jgabin1: Build Y1 Jgabin1 (n)\n\n4) MadWuher: Build G1 Madwuher\n\n5) jgabin1: Discover Y1 Jgabin1 G3 Bob\n\tMadWuher: Welcome. Hope you enjoy the game. Feel free to ask any questions you may have.\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\tjgabin1: Thanks Man, I think i&#39;v got the hang of the basics\n\n7) jgabin1: Trade Y3 G3 Jgabin1\n\n8) MadWuher: Build G1 Madwuher\n\n\nHomeworlds Online (SDG# 12855)\nStarted: 2009.2.12, Ended: 2009.2.18\nParticipants: pedrop (S), MikeYarrum (N)\nWinner: pedrop\n\n\nHomeworlds Online (SDG# 12871)\nStarted: 2009.2.12, Ended: 2009.2.16\nParticipants: CanisFirebrand (S), xmiyux (N)\nWinner: xmiyux\n\n1) xmiyux: Homeworld B3 G1 Y3\n\n2) CanisFirebrand: Homeworld B3 G1 Y3\n\n3) xmiyux: Trade Y3 B3 Xmiyux\n\n4) CanisFirebrand: Build Y1 Canisfirebrand\n\txmiyux: At some point we will in fact puzzle out this game. :lol:\n\tCanisFirebrand: I&#39;m learning as I go.. Never played before, and trying to make sense of the directions.\n\n5) xmiyux: Build B1 Xmiyux\n\n6) CanisFirebrand: Trade Y1 R1 Canisfirebrand\n\n7) xmiyux: Trade B1 G1 Xmiyux\n\tCanisFirebrand: I could not figure out the discover command or what that middle portion of the map is for.\n\n8) CanisFirebrand: Discover R1 Canisfirebrand R2 Canis2\n\txmiyux: Perhaps this evening we can chat in the chatbox or on Live and i can explain it to you?\n\tCanisFirebrand: That would be cool.. It seems like a complex and fun game, but I can&#39;t make heads or tails with the wiki page you linked with the rules.\n\n9) xmiyux: Build G2 Xmiyux\n\n10) CanisFirebrand: Build Y1 Canisfirebrand\n\n11) xmiyux: Trade G1 Y1 Xmiyux\n\n12) CanisFirebrand: Build Y1 Canisfirebrand\n\n13) xmiyux: Build Y2 Xmiyux\n\n14) CanisFirebrand: Trade Y1 G1 Canisfirebrand\n\n15) xmiyux: Discover G2 Xmiyux B2 Miranda\n\n16) CanisFirebrand: Build G2 Canisfirebrand\n\n17) xmiyux: Move Y1 Xmiyux Miranda\n\n18) CanisFirebrand: Move G2 Canisfirebrand Canis2\n\n19) xmiyux: Build Y1 Miranda\n\n20) CanisFirebrand: Build R1 Canis2\n\n21) xmiyux: Move Y1 Miranda Canisfirebrand\n\n22) CanisFirebrand: Move Y1 Canisfirebrand Canis2\n\n23) xmiyux: Build Y2 Canisfirebrand\n\n24) CanisFirebrand: Move R1 Canis2 Xmiyux\n\n25) xmiyux: Trade Y2 R2 Xmiyux\n\n26) CanisFirebrand: Build R1 Xmiyux\n\n27) xmiyux: Sacrifice Y2 Canisfirebrand\nMove R2 Xmiyux Canis2\nMove G2 Miranda Canisfirebrand\n\n28) CanisFirebrand: Build R2 Xmiyux\n\n29) xmiyux: Build G2 Canisfirebrand\nCatastrophe Canisfirebrand G\n\n30) CanisFirebrand: Attack R2 Canis2\n\n31) xmiyux: Trade Y1 G1 Canisfirebrand\n\n32) CanisFirebrand: Trade R1 Y1 Xmiyux\n\n33) xmiyux: Build G1 Canisfirebrand\n\n34) CanisFirebrand: Build G2 Canis2\n\n35) xmiyux: Trade G1 R1 Canisfirebrand\n\n36) CanisFirebrand: Build R3 Xmiyux\n\n37) xmiyux: Sacrifice R1 Canisfirebrand\nAttack R3 Xmiyux\n\n38) CanisFirebrand: Build R1 Xmiyux\nCatastrophe Xmiyux R\n\n39) xmiyux: Build G1 Canisfirebrand\n\n40) CanisFirebrand: Build G2 Canis2\n\n41) xmiyux: Trade G1 B1 Canisfirebrand\n\n42) CanisFirebrand: Sacrifice R1 Canis2\nAttack G1 Canisfirebrand\n\n43) xmiyux: Trade B3 R3 Xmiyux\n\n44) CanisFirebrand: Trade Y1 R1 Xmiyux\n\n45) xmiyux: Attack R1 Xmiyux\n\n46) CanisFirebrand: Trade G1 R1 Canisfirebrand\n\n47) xmiyux: Sacrifice R1 Xmiyux\nAttack R1 Canisfirebrand\n\n48) CanisFirebrand: Sacrifice R2 Canis2\nAttack R1 Canisfirebrand\nAttack B1 Canisfirebrand\n\n49) xmiyux: Build R1 Xmiyux\n\n50) CanisFirebrand: Move G2 Canis2 Canisfirebrand\n\n51) xmiyux: Trade R1 G1 Xmiyux\n\n52) CanisFirebrand: Move R1 Canisfirebrand Miranda\n\n53) xmiyux: Move Y1 Miranda Xmiyux\n\n54) CanisFirebrand: Trade Y3 R3 Canisfirebrand\n\n55) xmiyux: Build R1 Xmiyux\n\n56) CanisFirebrand: Build Y1 Canis2\n\n57) xmiyux: Build Y2 Xmiyux\n\n58) CanisFirebrand: Sacrifice Y1 Canis2\nMove R3 Canisfirebrand Canis2\n\n59) xmiyux: Trade Y1 B1 Xmiyux\n\n60) CanisFirebrand: Sacrifice G2 Canis2\nBuild Y1 Canis2\nBuild G1 Canis2\n\n61) xmiyux: Build Y1 Xmiyux\n\n62) CanisFirebrand: Move Y1 Canis2 Canisfirebrand\n\n63) xmiyux: Discover Y2 Xmiyux R2 Serenityvalley\n\n64) CanisFirebrand: Build G2 Canisfirebrand\n\n65) xmiyux: Move Y2 Serenityvalley Canisfirebrand\n\n66) CanisFirebrand: Sacrifice R1 Miranda\nAttack Y2 Canisfirebrand\n\n67) xmiyux: Build Y2 Xmiyux\n\n68) CanisFirebrand: Sacrifice G2 Canisfirebrand\nBuild Y2 Canis2\nBuild Y3 Canis2\n\n69) xmiyux: Move Y1 Xmiyux Canis2\nCatastrophe Canis2 Yellow\n\n70) CanisFirebrand: Move Y2 Canisfirebrand Canis2\n\n71) xmiyux: Build Y1 Xmiyux\n\n72) CanisFirebrand: Sacrifice Y2 Canis2\nMove G1 Canis2 Xmiyux\nMove G2 Canis2 Xmiyux\nCatastrophe Xmiyux G\n\n73) xmiyux: Discover Y2 Xmiyux G2 Miranda\n\n74) CanisFirebrand: Build G1 Canisfirebrand\n\n75) xmiyux: Move Y2 Miranda Canisfirebrand\n\n76) CanisFirebrand: Move G2 Canisfirebrand Canis2\n\n77) xmiyux: Sacrifice R3 Xmiyux\nAttack Y1 Canisfirebrand\nAttack G1 Canisfirebrand\nAttack B1 Canisfirebrand\n\n\nHomeworlds Online (SDG# 12861)\nStarted: 2009.2.13, Ended: 2009.2.21\nParticipants: agentofchaos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\tTwoShort: Two games at once?\n\n3) TwoShort: Build G1 Twoshort\n\tagentofchaos: Why not? Might be interesting to compare how they go :)\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) TwoShort: Build Y1 Twoshort\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) TwoShort: Build Y2 Twoshort\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) TwoShort: Discover Y1 Twoshort G3 Grognard\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) TwoShort: Build Y3 Grognard\n\n14) agentofchaos: Build G1 Agentofchaos\n\n15) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n16) agentofchaos: Discover Y2 Agentofchaos B1 Agrajag\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\nPass\n\n18) agentofchaos: Discover Y1 Agentofchaos B1 Kakrafoon\n\n19) TwoShort: Trade Y1 G1 Twoshort\n\n20) agentofchaos: Move G1 Agentofchaos Kakrafoon\n\n21) TwoShort: Trade Y2 R2 Bluestar\n\n22) agentofchaos: Build G2 Kakrafoon\n\n23) TwoShort: Move Y3 Bluestar Kakrafoon\n\n24) agentofchaos: Move G2 Kakrafoon Grognard\n\n25) TwoShort: Sacrifice R2 Bluestar\nAttack G2 Grognard\nAttack G1 Kakrafoon\n\n26) agentofchaos: Move G1 Agentofchaos Agrajag\n\n27) TwoShort: Sacrifice G2 Grognard\nBuild G2 Kakrafoon\nBuild G2 Twoshort\n\n28) agentofchaos: Move Y2 Agrajag Grognard\n\n29) TwoShort: Move Y3 Grognard Agrajag\n\n30) agentofchaos: Trade G1 Y1 Agrajag\n\n31) TwoShort: Trade G2 R2 Kakrafoon\n\n32) agentofchaos: Build Y2 Grognard\n\n33) TwoShort: Attack Y1 Kakrafoon\n\n34) agentofchaos: Trade Y2 R2 Agentofchaos\n\n35) TwoShort: Build R1 Kakrafoon\n\n36) agentofchaos: Trade R2 Y2 Agentofchaos\n\n37) TwoShort: Move Y1 Kakrafoon Grognard\nCatastrophe Grognard Yellow\n\n38) agentofchaos: Trade Y1 R1 Agrajag\n\n39) TwoShort: Trade Y3 B3 Agrajag\n\n40) agentofchaos: Build G1 Agentofchaos\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Kakrafoon Agentofchaos\nMove B3 Agrajag Agentofchaos\nMove G1 Kakrafoon Agentofchaos\n\n42) agentofchaos: Trade G1 Y1 Agentofchaos\n\n43) TwoShort: Sacrifice R2 Kakrafoon\nAttack G3 Agentofchaos\nAttack Y2 Agentofchaos\n\tagentofchaos: Very clever attack. \n\n\tTwoShort: I like to say that you win by getting more pieces than the other guy (which you&#39;ll notice I did), but the actual end comes either by catastrophe ( generally in the star colors), or by throwing multiple 3s into the homeworld when they don&#39;t have an r2/3 and you do.  I generally avoid taking an r1 if I can; when you need a red, they&#39;re not enough.\r\nIt&#39;s generally a good idea to have an r2 (or 3), because otherwise I can throw in more \n\tagentofchaos: Thanks for the tips and the game, I learned a few things (hopefully) :-)\n\nHomeworlds Online (SDG# 12872)\nStarted: 2009.2.13, Ended: 2009.2.21\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build G1 Zoltar\n\n8) TwoShort: Build G1 Twoshort\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) TwoShort: Build G1 Twoshort\n\n11) zoltar: Build B1 Zoltar\n\n12) TwoShort: Trade G1 R1 Twoshort\n\n13) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n14) TwoShort: Build R2 Twoshort\n\n\tzoltar: Well, you did it again -- I&#39;m already lost this early in the opening -- I&#39;m locked out of the reds and I don&#39;t see anything I can possibly do.\n\tTwoShort: Hypothetically, if I saw something I thought you could try, I might decide I was better off not saying anything about it, particularly since I might be missing some obvious reason it couldn&#39;t work in any case.  Potentially.\n\tzoltar: Well, I set up the position and studied it, and I can only conclude my position is hopeless.  I&#39;d rather resign and start over where I have a chance! \n\tTwoShort: Fair enough.  I also set up the position and tried to figure out what you should do. The only option I was hinting at as build at greenbelt, sac the y1 to move to a b2, sac the green to build all the remaining blue, sac a b2 to flip the 3 pointers to red and green or yellow.  Everything else I saw for you was doom, I probably could have figured out how to stop that, I just hadn&#39;t yet...\r\n Anyway, that&#39;s the first time I&#39;ve ever tried a red lock-out; I sort of backed into when I didn&#39;t see anything else good. \n\nHomeworlds Online (SDG# 12860)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.2.13, Ended: 2009.2.13\nParticipants: suniltrip (S), MadWuher (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 12862)\nStarted: 2009.2.13, Ended: 2009.5.18\nParticipants: MadWuher (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) MadWuher: Build G1 Madwuher\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) zoltar: Build G1 Zoltar\n\n8) MadWuher: Build G1 Madwuher\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) MadWuher: Trade G1 R1 Madwuher\n\n11) zoltar: Build R2 Zoltar\n\n12) MadWuher: Build R2 Madwuher\n\n13) zoltar: Discover R2 Zoltar G1 Greenbelt\n\n14) MadWuher: Discover R2 Madwuher Y3 Edora\n\n15) zoltar: Build R3 Greenbelt\n\n16) MadWuher: Build R3 Madwuher\n\n17) zoltar: Build R3 Zoltar\n\n18) MadWuher: Trade R1 B1 Madwuher\n\n19) zoltar: Trade R1 B1 Zoltar\n\n20) MadWuher: Build G1 Madwuher\n\n21) zoltar: Move B1 Zoltar Greenbelt\n\n22) MadWuher: Move R3 Madwuher Edora\n\n23) zoltar: Trade R3 Y3 Greenbelt\n\n24) MadWuher: Move B1 Madwuher Edora\n\n25) zoltar: Build Y1 Greenbelt\n\n26) MadWuher: Build Y2 Madwuher\n\n27) zoltar: Build Y2 Zoltar\n\n28) MadWuher: Discover Y2 Madwuher G3 Bologna\n\n29) zoltar: Discover Y1 Zoltar G1 Greenarrow\n\n30) MadWuher: Discover G1 Madwuher Y3 Camelot\n\n31) zoltar: Move R3 Zoltar Greenarrow\n\n32) MadWuher: Build Y2 Madwuher\n\n33) zoltar: Move R3 Greenarrow Camelot\n\n34) MadWuher: Sacrifice G1 Camelot\nBuild G1 Madwuher\n\n35) zoltar: Build G2 Zoltar\n\n36) MadWuher: Move G1 Madwuher Edora\n\n37) zoltar: Discover G2 Zoltar R1 Reddwarf\n\n38) MadWuher: Build G2 Madwuher\n\n39) zoltar: Build G2 Zoltar\n\n40) MadWuher: Move R2 Edora Greenarrow\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Camelot\nBuild R3 Greenbelt\n\n42) MadWuher: Attack Y1 Greenarrow\n\n43) zoltar: Move R3 Camelot Greenarrow\n\n44) MadWuher: Move R2 Greenarrow Camelot\n\n45) zoltar: Sacrifice R1 Camelot\nAttack Y1 Greenarrow\n\n46) MadWuher: Sacrifice G2 Madwuher\nBuild R1 Camelot\nBuild G2 Edora\n\n47) zoltar: Move R3 Greenbelt Camelot\n\n48) MadWuher: Sacrifice Y2 Bologna\nDiscover R2 Camelot Y2 Bologna\nMove G1 Edora Bologna\n\n49) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Reddwarf\nBuild B1 Greenbelt\n\n50) MadWuher: Build B2 Edora\n\n51) zoltar: Attack R1 Camelot\n\n52) MadWuher: Move B1 Edora Bologna\n\n53) zoltar: Move B1 Greenbelt Camelot\n\n54) MadWuher: Sacrifice G1 Bologna\nBuild G1 Madwuher\n\n55) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Camelot\n\n56) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild B3 Bologna\nPass\n\n57) zoltar: Sacrifice Y2 Zoltar\nMove B1 Camelot Bologna\nMove B1 Greenbelt Bologna\nCatastrophe Bologna B\n\n58) MadWuher: Build B1 Edora\n\n59) zoltar: Sacrifice G3 Reddwarf\nBuild G3 Reddwarf\nBuild Y2 Greenarrow\nBuild B1 Camelot\n\n60) MadWuher: Move B1 Edora Bologna\n\n61) zoltar: Sacrifice Y2 Greenarrow\nMove G3 Reddwarf Bologna\nDiscover G2 Reddwarf B3 Bluemoon\n\n62) MadWuher: Move R2 Bologna Bluemoon\n\n63) zoltar: Sacrifice G3 Bologna\nBuild G3 Bluemoon\nBuild Y2 Greenarrow\nBuild R1 Greenbelt\n\n64) MadWuher: Attack G2 Bluemoon\n\n65) zoltar: Sacrifice R2 Greenbelt\nAttack R2 Bluemoon\nAttack G2 Bluemoon\n\n66) MadWuher: Move G1 Madwuher Edora\n\n67) zoltar: Sacrifice G3 Bluemoon\nBuild G3 Bluemoon\nBuild R2 Greenbelt\nBuild B1 Greenbelt\n\n68) MadWuher: Sacrifice Y1 Madwuher\nDiscover G1 Edora Y1 Dung\n\n69) zoltar: Move Y3 Greenbelt Zoltar\n\n70) MadWuher: Sacrifice G1 Dung\nBuild Y1 Madwuher\n\tzoltar: Retreat!!!\n\n71) zoltar: Move B1 Greenbelt Bluemoon\n\n72) MadWuher: Build G1 Edora\n\n73) zoltar: Move B3 Camelot Madwuher\n\n74) MadWuher: Attack B3 Madwuher\n\n75) zoltar: Sacrifice Y2 Greenarrow\nMove B1 Bluemoon Madwuher\nMove B1 Camelot Madwuher\nCatastrophe Madwuher Blue\n\tzoltar: The Death Star is now fully operational.  Prepare to fire on the rebel base. Stand by...\n\tMadWuher: Commence primary ignition.......\n\n76) MadWuher: Build Y2 Madwuher\n\n77) zoltar: Sacrifice Y3 Zoltar\nMove R1 Camelot Madwuher\nMove R2 Bluemoon Madwuher\nMove R3 Camelot Madwuher\nCatastrophe Madwuher Red\n\n\tMadWuher: Thanx for the game\n\tzoltar: gg -- want to play again?\n\tMadWuher: I think I&#39;ll take some time off for a bit. Got bogged down at work lately. Maybe in a few weeks? (Once everything is settled that is)\r\n\n\nHomeworlds Online (SDG# 12874)\nStarted: 2009.2.13, Ended: 2009.6.11\nParticipants: sordros (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) sordros: Homeworld B1 Y3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) sordros: Build G1 Sordros\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) sordros:\nTrade G1 B1 Sordros\n\tsordros: t g1 b1 sordros\n\tsordros: oops :-)\n\n7) MadWuher: Build Y1 Madwuher\n\n8) sordros: Build B1 Sordros\n\n9) MadWuher: Discover Y1 Madwuher Y1 Edora\n\n10) sordros: Discover B1 Sordros B2 Blua\n\n11) MadWuher: Build Y2 Madwuher\n\n12) sordros: Build G1 Sordros\n\n13) MadWuher: Trade Y2 B2 Madwuher\n\n14) sordros: Trade G3 Y3 Sordros\n\n15) MadWuher: Build Y2 Madwuher\n\n16) sordros: Build G1 Sordros\n\n17) MadWuher: Build Y2 Madwuher\n\n18) sordros: Discover B1 Sordros G2 Verda\n\n19) MadWuher: Discover B2 Madwuher G1 Bologna\n\n20) sordros: Build B2 Verda\n\n21) MadWuher: Build B3 Bologna\n\n22) sordros: Trade B2 Y2 Verda\n\n23) MadWuher: Trade Y2 G2 Madwuher\n\n24) sordros: Build Y2 Verda\n\n25) MadWuher: Trade B2 R2 Bologna\n\n26) sordros: Trade Y3 R3 Sordros\n\n27) MadWuher: Move Y1 Madwuher Bologna\n\n\nHomeworlds Online (SDG# 12873)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.2.13, Ended: 2009.4.17\nParticipants: pedrop (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) pedrop: Homeworld Y1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) pedrop: Build G1 Pedrop\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) MadWuher: Build Y2 Madwuher\n\tpedrop: Wow... so many spectators... I haven&#39;t known that so many people are just watching;) Or... You - MadWuher - are very famous Homeworlds gamer? :) Hello all and good luck MadWuher:)\n\n8) pedrop: Build Y2 Pedrop\n\n9) MadWuher: Discover Y1 Madwuher G1 Edora\n\n10) pedrop: Discover Y1 Pedrop G3 Ziemia\n\n11) MadWuher: Build G1 Madwuher\n\tMadWuher: Good luck to you too. (never seen that many before.... hmmm)\n\n12) pedrop: Build G1 Pedrop\n\n13) MadWuher: Trade G1 R1 Madwuher\n\n14) pedrop: Discover G1 Pedrop B3 Dupa\n\n15) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild Y3 Edora\nBuild Y3 Madwuher\n\tpedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)\n\n16) pedrop: Move Y1 Ziemia Edora\nCatastrophe Edora Y\n\n17) MadWuher: Trade Y3 G3 Madwuher\n\n18) pedrop: Build G1 Dupa\n\n19) MadWuher: Build R1 Madwuher\n\n20) pedrop: Trade G1 R1 Dupa\n\n21) MadWuher: Trade R1 G1 Madwuher\n\n22) pedrop: Build G1 Dupa\n\n23) MadWuher: Discover G1 Madwuher B1 Edora\n\n24) pedrop: Build R1 Dupa\n\n25) MadWuher: Build G2 Edora\n\n26) pedrop: Build G2 Pedrop\n\n27) MadWuher: Trade G1 Y1 Edora\n\n28) pedrop: Move Y2 Pedrop Dupa\n\n29) MadWuher: Build G1 Edora\n\n30) pedrop: Discover G1 Dupa B2 Ziemia\n\n31) MadWuher: Discover G2 Edora G3 Bologna\n\n32) pedrop: Sacrifice G3 Pedrop\nBuild G2 Ziemia\nBuild G3 Pedrop\nBuild Y1 Dupa\n\n33) MadWuher: Sacrifice G2 Bologna\nBuild G2 Madwuher\nBuild G3 Edora\n\n34) pedrop: Discover Y1 Dupa B1 Niebo\n\n35) MadWuher: Move R1 Madwuher Edora\n\n36) pedrop: Move R1 Dupa Niebo\n\n37) MadWuher: Discover G1 Edora B3 Bologna\n\n\tpedrop: Sorry, had no time nowadays:/\n\tMadWuher: Totally understand. Not a problem. Hope to play against you again when you have more time.\n\nHomeworlds Online (SDG# 12882)\nVariants: &quot;Hard time&quot;\nStarted: 2009.2.14, Ended: 2009.3.29\nParticipants: pedrop (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B3 G3\n\n2) pedrop: Homeworld Y1 B2 G3\n\tagentofchaos: Hi again :)\n\n3) agentofchaos: Build G1 Agentofchaos\n\tpedrop: Hi:) Seeing You played so many games, I have decided to chellange You in hope for quite fast and dynamic game:) Good luck.\n\n4) pedrop: Build G1 Pedrop\n\tagentofchaos: I usually play pretty quickly, and try to logon everyday. I&#39;ve only played this game a few times, so I&#39;m no expert, but I think it&#39;s fun :-)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\tpedrop: heh:) Those Homeworld games i&#39;m playing now... are my first ever, so You may be an expert for me;) But I will be concetrated, so the game shouldn&#39;t be bad:) I also think this game is fun and maybe the most interesting on SDG - for me.\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) agentofchaos: Build Y2 Agentofchaos\n\n8) pedrop: Build Y2 Pedrop\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) pedrop: Discover Y2 Pedrop B3 Blues\n\n11) agentofchaos: Discover Y2 Agentofchaos G2 Kantele\n\n12) pedrop: Move Y1 Pedrop Blues\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) pedrop: Trade Y1 B1 Blues\n\n15) agentofchaos: Discover G1 Agentofchaos Y2 Squid\n\n16) pedrop: Move B1 Blues Pedrop\n\n17) agentofchaos: Build G1 Squid\n\n18) pedrop: Build G2 Pedrop\n\n19) agentofchaos: Discover G1 Squid Y3 Kalki\n\n20) pedrop: Move G2 Pedrop Blues\n\n21) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Kalki\nBuild G3 Agentofchaos\nBuild Y1 Kantele\n\n22) pedrop: Sacrifice G2 Blues\nBuild Y3 Blues\nBuild Y3 Blues\n\tpedrop: Sorry for that &quot;undo&quot;, but sytuation is getting more n more interesting;)\n\tagentofchaos: That&#39;s alright I use the undo button myself quite often ;-)\n\n23) agentofchaos: Move Y1 Kantele Blues\nCatastrophe Blues Y\n\n24) pedrop: Build B1 Pedrop\n\n25) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Squid\nBuild G3 Squid\nBuild G3 Agentofchaos\n\tagentofchaos: Be careful to avoid overpopulating your systems! ;-)\n\tpedrop: So... the overpopulation in binary(for two players) homeworlds is triggered when there are 3 elements of the same color? Not 4 like for Homewolrds for 3 and more players?\n\tpedrop: So... the overpopulation in binary(for two players) homeworlds is triggered when there are 3 elements of the same color? Not 4 like for Homewolrds for 3 and more players?\n\tagentofchaos: No it&#39;s still triggered by 4 elements of the same color. You had 3 of your own y elements in Blues, but I had a y ship in a connected system, so I sent it to Blues and triggered a catastrophe. So be careful of having 3 elements in a system that is connected to an opponent&#39;s system. \n\tpedrop: Oh...! I should predict it...;))) Thanks for answer:) Ok, let see what I can do now...:)\n\n26) pedrop: Trade B1 Y1 Pedrop\n\n27) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y3 Agentofchaos\nBuild G3 Agentofchaos\n\n28) pedrop: Discover B1 Pedrop Y3 Hard\n\n29) agentofchaos: Trade G1 B1 Agentofchaos\n\n30) pedrop: Build G1 Pedrop\n\tpedrop: By sacrifcing of yellow ship(2 or 3 size) can one discover a new system in first action, and then in secound action abendon it, an move furher?\n\tagentofchaos: Yes you can, I&#39;ve known players to do that. \n\n31) agentofchaos: Move B1 Agentofchaos Squid\n\n32) pedrop: Trade Y1 R1 Pedrop\n\tpedrop: Thanks for answer. Knowing of such posibility may be vary handy:)\n\tagentofchaos: Yes it can be a very effective strategy :)\n\n33) agentofchaos: Build Y1 Kantele\n\n34) pedrop: Sacrifice G3 Pedrop\nBuild R1 Pedrop\nBuild R2 Pedrop\nBuild G3 Pedrop\n\n35) agentofchaos: Build B1 Squid\n\n36) pedrop: Move R1 Pedrop Kalki\n\n37) agentofchaos: Move B1 Squid Kalki\n\n38) pedrop: Sacrifice G3 Pedrop\nBuild R2 Pedrop\nBuild R2 Kalki\nBuild G3 Pedrop\n\n39) agentofchaos: Sacrifice Y3 Agentofchaos\nMove G1 Kalki Pedrop\nMove G2 Kalki Pedrop\nMove B1 Kalki Kantele\nCatastrophe Pedrop G\n\n40) pedrop: Trade B1 G1 Hard\n\n41) agentofchaos: Trade G3 R3 Squid\n\n42) pedrop: Move R2 Kalki Kantele\n\n43) agentofchaos: Sacrifice R3 Squid\nAttack R2S Kantele\nPass\nPass\n\n44) pedrop: Trade R1 G1 Pedrop\n\n45) agentofchaos: Build Y3 Agentofchaos\n\n46) pedrop: Build G2 Hard\n\n47) agentofchaos: Build G3 Agentofchaos\n\n48) pedrop: Build G3 Pedrop\n\n49) agentofchaos: Trade B1 R1 Squid\n\n50) pedrop: Trade R2 B2 Pedrop\n\n51) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R2 Squid\nBuild R3 Kantele\nBuild G3 Agentofchaos\n\n52) pedrop: Sacrifice G3 Pedrop\nBuild R3 Pedrop\nBuild R3 Kalki\nBuild G3 Pedrop\n\tpedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)\n\n53) agentofchaos: Move Y3 Agentofchaos Squid\n\tagentofchaos: I&#39;ve never played those games, will think about it. \n\n54) pedrop: Move R3 Pedrop Hard\n\n55) agentofchaos: Sacrifice Y2 Kantele\nMove R2 Kantele Kalki\nMove R1 Squid Kalki\nCatastrophe Kalki R\n\n56) pedrop: Trade B2 Y2 Pedrop\n\n57) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Kantele\nBuild B1 Kantele\nBuild G3 Agentofchaos\n\n58) pedrop: Build R1 Pedrop\n\n59) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R1 Squid\nBuild B1 Kantele\nBuild G3 Agentofchaos\n\n60) pedrop: Trade R2 B2 Pedrop\n\n61) agentofchaos: Discover B1 Kantele B3 Juvar\n\n62) pedrop: Move B2 Pedrop Hard\n\n63) agentofchaos: Build R2 Kantele\n\n64) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild R2 Hard\nBuild R3 Pedrop\n\n65) agentofchaos: Move R3 Kantele Juvar\n\n66) pedrop: Discover R2 Hard B2 Never\n\n67) agentofchaos: Discover G1 Squid B3 Oa\n\n68) pedrop: Move R3 Pedrop Hard\n\n69) agentofchaos: Move B1 Kantele Oa\n\n70) pedrop: Move G1 Pedrop Oa\n\n71) agentofchaos: Move R2 Squid Oa\n\n72) pedrop: Move R3 Hard Never\n\n73) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Oa Pedrop\nMove B1 Juvar Pedrop\n\n74) pedrop: Trade R2 Y2 Never\n\n75) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Squid\nBuild R2 Squid\nPass\n\n76) pedrop: Move R3 Never Oa\n\n77) agentofchaos: Sacrifice Y3 Squid\nMove B1 Kantele Juvar\nMove B1 Juvar Pedrop\nMove Y1 Kantele Juvar\nCatastrophe Pedrop B\n\n78) pedrop: Discover Y2 Pedrop Y3 Ziemia\n\n79) agentofchaos: Move R2 Squid Ziemia\n\n80) pedrop: Sacrifice R3 Hard\nAttack R2 Ziemia\nAttack R2 Oa\nAttack G1 Oa\n\n81) agentofchaos: Build R3 Kantele\n\n82) pedrop: Move G1 Hard Squid\n\n83) agentofchaos: Move G2 Squid Juvar\n\n84) pedrop: Move G1 Squid Hard\n\n85) agentofchaos: Move R3 Kantele Ziemia\n\tpedrop: It looks like this is the end...:(\n\n86) pedrop: Sacrifice Y2 Ziemia\nMove G1 Oa Kantele\nMove G1 Oa Kantele\n\n87) agentofchaos: Build Y2 Juvar\n\tagentofchaos: Could be, but you&#39;re not making it easy! ;-)\n\n88) pedrop: Move G1 Hard Kantele\nCatastrophe Kantele G\n\n89) agentofchaos: Build Y3 Agentofchaos\n\tpedrop: And I won&#39;t...:)\n\n90) pedrop: Move Y2 Never Oa\n\n91) agentofchaos: Move Y1 Agentofchaos Squid\n\n92) pedrop: Discover R3 Oa G2 Theend\n\n93) agentofchaos: Sacrifice Y3 Agentofchaos\nMove Y1 Juvar Pedrop\nMove Y2 Juvar Pedrop\nMove Y1 Squid Pedrop\nCatastrophe Pedrop Y\n\n\tpedrop: So now it is the end for sure:) Thanks for a realy good game and see You in return match some day(now I have to many games;). \n\tagentofchaos: Thanks for a great game, and for your sportsmanship! Let me know when you would like a return match :-)\n\nHomeworlds Online (SDG# 12876)\nStarted: 2009.2.15, Ended: 2009.6.2\nParticipants: MadWuher (S), agentofchaos (N)\nWinner: MadWuher\n\n1) agentofchaos: Homeworld B1 R3 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) MadWuher: Build G1 Madwuher\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) MadWuher: Build G1 Madwuher\n\n9) agentofchaos: Discover G1 Agentofchaos Y2 Shaka\n\n10) MadWuher: Discover G1 Madwuher Y3 Edora\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) MadWuher: Build Y2 Madwuher\n\n13) agentofchaos: Discover Y1 Agentofchaos B2 Zoovar\n\n14) MadWuher: Discover Y1 Madwuher B3 Bologna\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n17) agentofchaos: Build G2 Shaka\n\n18) MadWuher: Trade Y2 G2 Madwuher\n\n19) agentofchaos: Sacrifice G2 Shaka\nBuild Y2 Zoovar\nBuild G2 Shaka\n\n20) MadWuher: Build G2 Madwuher\n\n21) agentofchaos: Trade G1 R1 Agentofchaos\n\n22) MadWuher: Trade Y2 R2 Madwuher\n\n23) agentofchaos: Build G1 Agentofchaos\n\n24) MadWuher: Build G3 Edora\n\n25) agentofchaos: Build Y2 Agentofchaos\n\n26) MadWuher: Trade Y1 R1 Bologna\n\n27) agentofchaos: Move R1 Agentofchaos Shaka\n\n28) MadWuher: Discover G2 Madwuher G3 Camelot\n\n29) agentofchaos: Build R2 Shaka\n\n30) MadWuher: Move R2 Madwuher Edora\n\n31) agentofchaos: Move R2 Shaka Camelot\n\n32) MadWuher: Sacrifice G2 Camelot\nBuild G2 Madwuher\nBuild Y1 Madwuher\n\n33) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R2 Camelot\nBuild R3 Shaka\nBuild G3 Agentofchaos\n\n34) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Madwuher\nBuild R3 Bologna\n\n35) agentofchaos: Trade Y1 B1 Agentofchaos\n\n36) MadWuher: Trade G2 B2 Madwuher\n\n37) agentofchaos: Build Y1 Agentofchaos\n\n38) MadWuher: Sacrifice G3 Edora\nBuild G2 Madwuher\nBuild G3 Edora\nBuild B1 Madwuher\n\n39) agentofchaos: Move B1 Agentofchaos Shaka\n\n40) MadWuher: Move B2 Madwuher Edora\n\n41) agentofchaos: Move Y1 Zoovar Camelot\n\n42) MadWuher: Build B3 Edora\n\n43) agentofchaos: Build B3 Shaka\n\n44) MadWuher: Move R3 Bologna Zoovar\n\n45) agentofchaos: Sacrifice Y2 Zoovar\nMove B3 Shaka Camelot\nMove B1 Shaka Camelot\n\n46) MadWuher: Sacrifice B1 Madwuher\nTrade B2 Y2 Edora\n\n47) agentofchaos: Trade G1 B1 Agentofchaos\n\n48) MadWuher: Build B2 Edora\n\n49) agentofchaos: Move B1 Agentofchaos Shaka\n\n50) MadWuher: Move Y2 Edora Zoovar\n\n51) agentofchaos: Move G1 Shaka Edora\n\n52) MadWuher: Move G1 Edora Zoovar\n\n53) agentofchaos: Move G1 Edora Madwuher\n\n54) MadWuher: Sacrifice G2 Madwuher\nBuild G1 Edora\nBuild G2 Zoovar\n\n55) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Camelot Madwuher\nMove B3 Camelot Madwuher\n\n56) MadWuher: Sacrifice R3 Zoovar\nAttack G1 Madwuher\nAttack B3 Madwuher\nAttack B1 Madwuher\n\n57) agentofchaos: Build Y2 Camelot\n\n58) MadWuher: Move B3 Madwuher Camelot\n\n59) agentofchaos: Build R3 Camelot\n\n60) MadWuher: Sacrifice R2 Edora\nAttack R3 Camelot\nAttack Y2 Camelot\n\n61) agentofchaos: Build R2 Camelot\nCatastrophe Camelot R\n\n62) MadWuher: Sacrifice G2 Zoovar\nBuild G2 Zoovar\nBuild R2 Bologna\n\n63) agentofchaos: Move R1 Shaka Bologna\n\n64) MadWuher: Sacrifice R1 Bologna\nAttack R1 Bologna\n\n65) agentofchaos: Build R1 Shaka\n\n66) MadWuher: Move R2 Bologna Zoovar\n\n67) agentofchaos: Discover R3 Shaka R3 Irae\n\n68) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild R2 Bologna\nBuild R2 Zoovar\n\n69) agentofchaos: Sacrifice Y1 Agentofchaos\nMove R3 Irae Zoovar\n\n70) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild Y1 Zoovar\nBuild R3 Zoovar\nCatastrophe Zoovar R\n\n71) agentofchaos: Build R2 Shaka\n\n72) MadWuher: Move R1 Bologna Zoovar\n\n73) agentofchaos: Move R1 Shaka Bologna\n\n74) MadWuher: Attack R1 Bologna\n\n75) agentofchaos: Build R2 Shaka\n\n76) MadWuher: Sacrifice R1 Bologna\nAttack Y1 Camelot\n\n\nHomeworlds Online (SDG# 12904)\nVariants: &quot;Hard time&quot;\nStarted: 2009.2.15, Ended: 2009.3.27\nParticipants: pedrop (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\n2) pedrop: Homeworld B2 Y1 G3\n\tJesse: Hello, and have a good game.\n\n3) Jesse: Build G1 Jesse\n\tpedrop: Hi. The same to You! Are You experienced player?\n\n4) pedrop: Build G1 Pedrop\n\tJesse: Yes, I am a very experienced player.  I see from your comments in another game that you are new.  It is always my pleasure to help a new player get better, so let me know if you have any questions.\n\n5) Jesse: Trade G1 Y1 Jesse\n\tpedrop: Thanks for that, and I hope that beacouse of the other games I won&#39;t do any more basic mistakes and be some challenge for You:)\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) Jesse: Build Y2 Jesse\n\tpedrop: Of course feel free to comment my bad moves, if You will see such ones:)\n\n8) pedrop: Discover Y1 Pedrop G3 Newhope\n\tJesse: Certainly.\n\n9) Jesse: Trade Y1 R1 Jesse\n\n10) pedrop: Build G1 Pedrop\n\tJesse: There&#39;s a saying that when your opponent picks up a gun (red piece), you must pick up a gun.  You do have a little time before you really have to, because it&#39;s hard for me to get to you this early in the game.  Just don&#39;t wait too long...\n\n11) Jesse: Build R1 Jesse\n\tpedrop: Ok, I won&#39;t, thanks:) (You are fast with guns then... ;P ;) )\n\n12) pedrop: Trade G1 Y1 Pedrop\n\tJesse: I was fast with the guns mostly because I saw the opportunity to make it awkward for you to grab one yourself.\n\n13) Jesse: Discover R1 Jesse G2 Pripyat\n\tpedrop: I see:) (hmm... openinig with red small planet...;) ) \n\n14) pedrop: Build Y2 Pedrop\n\tJesse: The r1 system marker is mostly for defense early on, and the flexibility offered by defending with G3 and Y3 later.  Jumping into red quickly makes the first point less important.\n\tJesse: It&#39;s also good for developing green and yellow early on, since you can have a couple of each at the homeworld without getting into danger of a catastrophe.\n\n15) Jesse: Discover R1 Jesse G2 Kyzyl\n\tpedrop: Thanks for advices:) I already have experienced that having yellow star on me starting system is \r\n&quot;not-so-good&quot;;) I had to &quot;loose&quot; 1 action to move yellow ships out of it if i wanted to develop them further. And this action is usually very valuable...;) So I agree that this is very useful opening and advice from You.\n\tJesse: Having yellow in your system can also be good, because you can immediately start moving things out without taking a turn to trade for yellow.  So there are pros and cons either way.\n\n16) pedrop: Trade Y2 R2 Pedrop\n\n17) Jesse: Build Y2 Jesse\n\n18) pedrop: Build R2 Pedrop\n\n19) Jesse: Move Y2 Jesse Pripyat\n\n20) pedrop: Move R2 Pedrop Newhope\n\n21) Jesse: Build G1 Jesse\n\n22) pedrop: Build G1 Pedrop\n\n23) Jesse: Trade G1 B1 Jesse\n\n24) pedrop: Trade G1 B1 Pedrop\n\n25) Jesse: Discover B1 Jesse G2 Suzdal\n\n26) pedrop: Build G1 Pedrop\n\tpedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)\n\n27) Jesse: Build G1 Jesse\n\n28) pedrop: Build G1 Pedrop\n\tJesse: I think I&#39;ll pass, for now.\n\n29) Jesse: Build B1 Suzdal\n\n30) pedrop: Discover Y1 Pedrop B3 Ziemia\n\n31) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Pripyat\n\n32) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y3 Ziemia\nBuild Y3 Newhope\n\tJesse: Have you seen this maneuver yet?  If not, it&#39;s called the factory.  If you have, it&#39;s still called the factory.\n\n33) Jesse: Sacrifice B1 Suzdal\nTrade Y3 B3 Pripyat\n\tpedrop: Yes I have seen it:) But didn&#39;t know how it&#39;s called:) But now I do:) Thanks.\n\n34) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild R2 Newhope\nBuild R3 Pedrop\n\n35) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Pripyat\nBuild R3 Kyzyl\n\n36) pedrop: Move G1 Pedrop Ziemia\n\n37) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Pripyat\nBuild B1 Pripyat\n\tJesse: I wonder why that registered that red build as a pass, the first time.\n\n38) pedrop: Move Y3 Ziemia Suzdal\n\n39) Jesse: Move R3 Pripyat Ziemia\n\n40) pedrop: Sacrifice Y1 Ziemia\nMove R2 Newhope Suzdal\n\n41) Jesse: Sacrifice Y2 Jesse\nMove B1 Suzdal Ziemia\nMove Y2 Pripyat Ziemia\n\n\n\tpedrop: Sorry, one of my family member was taken to hospital, so I haven&#39;t time to play.\n\tJesse: I&#39;m sorry to hear that.  I hope it turned out okay.  It&#39;s too bad about the game, but there are more important things.\n\tpedrop: Thanks. It&#39;s better now with her. See You in other games.\n\nHomeworlds Online (SDG# 12918)\nVariants: &quot;Unrated&quot;\nStarted: 2009.2.16, Ended: 2009.2.25\nParticipants: dsheldon (S), xmiyux (N)\nWinner: dsheldon\n\n1) xmiyux: Homeworld B3 Y1 G3\n\n2) dsheldon: Homeworld B2 Y1 G3\n\tdsheldon: I see that you&#39;ve gone with what&#39;s called a &quot;Goldilocks&quot; homeworld.  It gives you direct access to medium stars.  I&#39;m going to go with a &quot;Banker,&quot; which gives access to large stars.  The general thinking is that the banker is the easiest to play but my personal experience has been an even split of success and failure.\n\n3) xmiyux: Build G1 Xmiyux\n\txmiyux: I have absolutely no idea what Goldilocks is other than a child in a fairy tale. *laugh* My thought process was that blue and green are both important in the beginning. I like being able to explore quickly so I wanted yellow. And when I was taught the game the person told me it is always best to take a large and a small for your first stars.\n\n4) dsheldon: Build G1 Dsheldon\n\tdsheldon: Goldilocks refers to the size of the stars, not their colors.  Because you have a large and a small, your homeworld is adjacent to mediums.  Mediums are neither too large nor too small.  My homeworld is next to larges.  The strategy I will be employing is to discover large stars with small green ships.  This will take these pieces out of circulation until I&#39;m ready to build them, stopping you from building them.  As far as colors go, you&#39;re dead on.  Only very extreme strategies suggest anything other than blue yellow and green for your opening.\n\n5) xmiyux: Trade G1 Y1 Xmiyux\n\tdsheldon: Your next move you have a very interesting choice.  If you build another g1, you&#39;ll give me access to the g2s.  Your other choices are to send your ship out exploring or to change it to a different color.  Out of the two, I recommend exploration.  Early on, since there&#39;s no danger to your homeworld, exploration is a very good idea.  That, and every step away from home is a step toward your enemy and aggressiveness is good.\n\n6) dsheldon: Discover G1 Dsheldon Y3 Investment\n\tdsheldon: Very good move.  See how I can&#39;t get a yellow ship at all since there are no y1&#39;s left in the stash?  (I could, technically, trade my g3 for a y3, but that doesn&#39;t seem like a good idea right now.)\n\n7) xmiyux: Discover Y1 Xmiyux G2 Miranda\n\n8) dsheldon: Build G1 Dsheldon\n\txmiyux: So with the banker strategy you build the small greens, explore the large stars (most likely yellow so you can move the new ship out), and control the access to large yellows?\n\tdsheldon: Here&#39;s why my homeworld is called the Banker.  Later, when I get some yellow (so not any time soon) I can sacrifice the g1 on Investment, anihilating the star, and then build the y3 wherever I have a yellow ship (assuming there aren&#39;t any y1s or y2s in the stash).  In the end game yellow is very important because it&#39;s very easy to use to set up catastrophes.\n\n9) xmiyux: Build Y2 Miranda\n\n10) dsheldon: Build G1 Dsheldon\n\tdsheldon: Oh no, you don&#39;t move the little greenies away, you sacrifice them to /immediately/ build the large.  It works for every color but green (you need a medium green to sacrifice because you&#39;ll have to build the g2 and the g3 or your investment is sort of wasted).\n\n11) xmiyux: Discover Y2 Miranda G3 Serenityvalley\n\n12) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Investment\nBuild G2 Investment\nBuild G3 Dsheldon\n\tdsheldon: Ah, now the problem here is that there are a lot of green ships in play, and now I&#39;m going to take the rest of them, which will be a problem for you since you only have one.\n\n13) xmiyux: Build Y2 Miranda\n\tdsheldon: This is a classic move.  Sac a green and rebuild it.  You might think I should worry about the huge piles of green ships waiting for catastrophe, but since you only control one green ship, and it&#39;s alone in your homeworld, I have nothing to fear.  You&#39;re seeing a prime example of having spread yourself too thin when there were good routes for growth toward reinforcement.\n\n14) dsheldon: Trade G1 B1 Dsheldon\n\txmiyux: I can definitely feel the pinch on green right now.\n\tdsheldon: Now I&#39;m looking to transform my fleet.  I&#39;m going to try and get some of that yellow.  I can&#39;t swap the 1Gs in my homeworld, and I don&#39;t want to give up my 3G because then you could build it.  So I&#39;ll have to take a few extra steps to get where I want.\n\n15) xmiyux: Build G1 Xmiyux\n\tdsheldon: Now you can build another green ship, which is a really good idea because then you can sac and rebuild the g3 in your homeworld.\n\n16) dsheldon: Sacrifice B1 Dsheldon\nTrade G1 B1 Investment\n\txmiyux: Although had we been being competitive, you never would have given me that green would you?\n\tdsheldon: It&#39;s a calculated risk.  I&#39;m playing sort of &quot;fast and loose,&quot; but I&#39;m not intentionally playing poorly.  I needed blue in my homeworld more than I needed you to not have green.  Besides, I have more tricks up my sleeve to control the stash.\n\n17) xmiyux: Build G1 Xmiyux\n\n18) dsheldon: Trade G2 Y2 Investment\n\tdsheldon: Now, even when you do sac your g3, between having to build through the g1 I just put back in the stash and rebuilding your g3 (&#39;cuz you&#39;ve gotta keep that) you&#39;ll only be able to get one more build elsewhere (which you could have had anyway from the stars) and you won&#39;t be able to build a y3 this turn.  Next turn looks a little sticky for me though.\n\tdsheldon: OK, you&#39;re just too fast.  How&#39;s a guy supposed to pontificate if you&#39;re making your move while I&#39;m still explaining my last one? ;)\n\tdsheldon: Ah, here&#39;s why I can make a good suggestion.  If you had instead made this move:\r\n\r\ns g3 xmiyux\r\nb g1 xmiyux\r\nb g3 xmiyux\r\nb y2 serenityvalley\r\n\r\nYou&#39;d be in the same position you are now, but with one more ship.  Since I have no yellow there&#39;s no danger of me building up to the y3s and you&#39;d be pretty much just better off than you are now.\n\n19) xmiyux: Discover G1 Xmiyux G2 Aker&#39;s\n\tdsheldon: Check.  Watch out!  If I &quot;s y2 investment, d g2 investment r2 blah, m g2 blah xmiyux, c g xmiyux&quot; you will lose.  So trade or move some of that green.\n\n20) dsheldon: Move Y2 Investment Aker&#39;s\n\txmiyux: I knew you needed two moves to get to that system so I knew I was safe for a turn.  I&#39;m trying to prevent you from s the g3, rebuilding it and some mediums. On retrospect I should have traded that g1 instead of moving it so there would be at least a single g1 in the stash to make it rougher to rebuild a sacced g3.\n\tdsheldon: Sounds like you know more about what you&#39;re doing than you first implied.  OK, what I *really* want to do right now is get a y3, but that makes me too vulnerable to catastrophe, and that makes me sad.  I think I can still take a good stab at your homeworld though.  If I move in my g2, there&#39;s not enough to nuke it yet, but you would have a very few options on how to respond.\n\n21) xmiyux: Build Y3 Serenityvalley\n\tdsheldon: Yeah, I decided against it.  Discovering that g2 was a very smart move.\n\n22) dsheldon: Build Y3 Aker&#39;s\n\txmiyux: Well, i have been simultaneously playing against another total rookie and we have went through a couple games so i am getting more a grasp of the game.\r\n\r\nAlso, i run an after school board game club for kids and i made them sit down and play Homeworlds with me a couple times so i could puzzle out things. :lol:\n\n23) xmiyux: Move Y1 Miranda Xmiyux\n\tdsheldon: Not a lot to say on this move.  I&#39;ve got to have me that y3.\n\txmiyux: If you didn&#39;t take it i would have tried. :D\n\n24) dsheldon: Trade B1 R1 Investment\n\n25) xmiyux: Trade G1 B1 Xmiyux\n\tdsheldon: Sorry for the delay.  Work and family conspired to keep me busy.\n\n26) dsheldon: Move Y3 Aker&#39;s Xmiyux\n\txmiyux: No worries at all. Between the beginning explanation and a few other games I have been playing I think I have a grasp of the general game right now if you would rather abandon this one if you are busy and such.\n\tdsheldon: By no means would I want to end the game, I just usually hope to able to play more than one move in four days.  That&#39;s my apology to you, not a request to be released from the &quot;obligation&quot; of entertainment.\n\n27) xmiyux: Move Y2 Miranda Xmiyux\nCatastrophe Xmiyux Y\n\tdsheldon: Moving on with the lesson: now I&#39;m got a three in your homeworld and a red on table.  It looks like you&#39;ll have a tough time maintaining control of any large ships at home.  You never got any red, so you can&#39;t take my y3 from me.  You could move your g3 away, so that you don&#39;t lose it, but then you still won&#39;t have any large ships in your homeworld.  I thought you might be able to destroy Investment (and my red ship), but you don&#39;t have enough yellow in the right places to do that either.\r\n\r\nIt&#39;s a tough position.\n\n28) dsheldon: Sacrifice R1 Investment\nAttack G1N Aker&#39;s\n\txmiyux: Yep.  With your red you would take the G3. Then you my blue star to get a R3 and mate. I was pretty much stuck.  I think the game is actually over now, but my only foreseen chance was to kill my own star to take out the Y3.\r\n\r\nThis connects our galaxies. Unfortunately I axed my own yellow abilities so it will take a turn or two to even get set up.  Hypothetically if you sat on your hands without any threats I oculd move a G3 to your base, sac a R2 or R3 if I had them to try to attack.\r\n\r\nThat, however, is not going to happen. :lol:\n\tdsheldon: Woah, drastic.  But I&#39;m still in an awkward position to try any follow up attacks.\n\tdsheldon: Funny thing is, you&#39;re one move from destroying my homeworld: s y3 serenity valley; m g3 xmiyux dsheldon; m g1 aker&#39;s xmiyux; m g1 xmiyux dsheldon; c dsheldon g.  So my first goal is to prevent that.\n\n29) xmiyux: Trade B1 R1 Xmiyux\n\n30) dsheldon: Trade G1 R1 Dsheldon\n\n31) xmiyux: Discover Y3 Serenityvalley G2 Miranda\n\tdsheldon: Allow me to commend your tenacity.\n\txmiyux: *laugh* Nothing ventured I guess.\n\n32) dsheldon: Build G1 Dsheldon\n\txmiyux: Almost handed you the win\n\n33) xmiyux: Build Y1 Miranda\n\n34) dsheldon: Sacrifice G3 Dsheldon\nBuild G1 Aker&#39;s\nBuild G3 Dsheldon\nBuild Y1 Aker&#39;s\n\n35) xmiyux: Move Y1 Miranda Xmiyux\n\n36) dsheldon: Trade G1 B1 Dsheldon\n\n37) xmiyux: Trade Y1 G1 Xmiyux\n\n38) dsheldon: Sacrifice Y2 Aker&#39;s\nMove G1 Aker&#39;s Xmiyux\nMove G1 Aker&#39;s Xmiyux\nCatastrophe Xmiyux G\n\n39) xmiyux: Trade R1 B1 Xmiyux\n\tdsheldon: It&#39;s important in your end game to have multiple attack avenues and to limit the possible moves available to your opponent.  It is very unsafe for you to build green which is hampering your growth and, while that holds you down, I&#39;m now building up a blue attack in my diversified homeworld.  I don&#39;t think you need my advice anymore, you seem to have a really good handle on the game now.\n\tdsheldon: Wait... really?  You could just *build* a g1, why the trade?  And you&#39;ve opened yourself to an even worse catastrophe.  That doesn&#39;t look like a very good move.\n\tdsheldon: I guess if you were going to undo you&#39;d have done it by now.\n\n40) dsheldon: Move B1 Dsheldon Xmiyux\n\txmiyux: Doh - yeah - a complete oversight.  I had foreseen that move before. Then turned around and did it again. :lol: Thanks for punishing the mistake. The only way I will learn. :)\n\n41) xmiyux: Pass\n\txmiyux: Finish me off. I can&#39;t bring myself to resign. :lol:\n\tdsheldon: These are among the reasons I wish SDG had an easy way to notify players that you have a game related message for them.  I guess I could have emailed you, I have your address... somewhere.\n\n42) dsheldon: Sacrifice G2 Investment\nBuild Y1 Aker&#39;s\nBuild B1 Xmiyux\nCatastrophe Xmiyux B\n\tdsheldon: I totally understand your preference to play out a game you&#39;ve lost rather than to resign, I&#39;m the same way.\n\txmiyux: Indeed. Well thanks for the game and the help.  To be honest I think there needs to be a Facebook plugin for Super Duper so everyone could play through that site.\r\n\r\nI also think Homeworlds would make an absolute killer Community Game on Xbox Live.  Andy needs to hook up with some programmers and make a little money on that front.\n\n\tdsheldon: I totally agree.  I even downloaded some instructions once, long ago, about writing facebook aps for precisely that reason.  I hadn&#39;t thought of it as far as XBL goes but that would rule too.  Catan and Carcassone are raking it in, how about a little love for the icehouse set?\n\tdsheldon: Always have to finish with a bang.  Glad I could help, I think you&#39;ll do well, you seemed to really learn a lot and quickly.  Just be a bit more careful of catastrophes and you&#39;ll be a real competitor.\n\nHomeworlds Online (SDG# 12921)\nStarted: 2009.2.16, Ended: 2009.2.17\nParticipants: CanisFirebrand (S), xmiyux (N)\nWinner: xmiyux\n\n1) xmiyux: Homeworld Y2 B1 G3\n\n2) CanisFirebrand: Homeworld B2 Y1 G3\n\n3) xmiyux: Build G1 Xmiyux\n\n4) CanisFirebrand: Build G1 Canisfirebrand\n\n5) xmiyux: Trade G1 Y1 Xmiyux\n\n6) CanisFirebrand: Discover G1 Canisfirebrand Y3 Inverness\n\n7) xmiyux: Build G1 Xmiyux\n\n8) CanisFirebrand: Build G1 Canisfirebrand\n\n9) xmiyux: Discover Y1 Xmiyux G3 Miranda\n\n10) CanisFirebrand: Build G2 Canisfirebrand\n\n11) xmiyux: Discover G1 Xmiyux B3 Serenityvalley\n\n12) CanisFirebrand: Discover G1 Canisfirebrand R3 Erebus\n\n13) xmiyux: Build G2 Xmiyux\n\n14) CanisFirebrand: Build G2 Erebus\n\n15) xmiyux: Build Y1 Miranda\n\n16) CanisFirebrand: Trade G2 B2 Canisfirebrand\n\n17) xmiyux: Sacrifice G3 Xmiyux\nBuild G2 Serenityvalley\nBuild G3 Xmiyux\nBuild Y2 Miranda\n\n18) CanisFirebrand: Move B2 Canisfirebrand Erebus\n\n19) xmiyux: Discover Y1 Miranda Y2 Aker&#39;s\n\n20) CanisFirebrand: Move G1 Inverness Canisfirebrand\n\n21) xmiyux: Sacrifice G3 Xmiyux\nBuild G3 Xmiyux\nBuild Y3 Miranda\nBuild Y3 Aker&#39;s\n\n22) CanisFirebrand: Sacrifice G3 Canisfirebrand\nBuild G3 Canisfirebrand\nBuild B1 Erebus\nBuild B1 Erebus\n\n23) xmiyux: Sacrifice Y2 Miranda\nMove G1 Serenityvalley Canisfirebrand\nMove G2 Serenityvalley Canisfirebrand\nCatastrophe Canisfirebrand Green\n\n\tCanisFirebrand: That is a pretty good strategy to take almost all playable pieces of one color. Makes it difficult for your opponent to do much.\n\nHomeworlds Online (SDG# 12935)\nStarted: 2009.2.17, Ended: 2009.2.24\nParticipants: xmiyux (S), CanisFirebrand (N)\nWinner: xmiyux\n\n1) CanisFirebrand: Homeworld G3 B1 R3\n\n2) xmiyux: Homeworld B2 Y1 G3\n\n3) CanisFirebrand: Build R1 Canisfirebrand\n\n4) xmiyux: Build G1 Xmiyux\n\n5) CanisFirebrand: Trade R1 G1 Canisfirebrand\n\n6) xmiyux: Trade G1 Y1 Xmiyux\n\n7) CanisFirebrand: Build R1 Canisfirebrand\n\n8) xmiyux: Build G1 Xmiyux\n\n9) CanisFirebrand: Trade G1 Y1 Canisfirebrand\n\n10) xmiyux: Discover G1 Xmiyux G3 Miranda\n\n11) CanisFirebrand: Trade R1 G1 Canisfirebrand\n\n12) xmiyux: Build Y2 Xmiyux\n\n13) CanisFirebrand: Discover G1 Canisfirebrand B2 Inverness\n\n14) xmiyux: Discover Y1 Xmiyux B3 Serenity\n\n15) CanisFirebrand: Build R1 Canisfirebrand\n\n16) xmiyux: Build Y2 Xmiyux\n\n17) CanisFirebrand: Trade R3 B3 Canisfirebrand\n\n18) xmiyux: Discover Y2 Xmiyux B3 Aker&#39;s\n\n19) CanisFirebrand: Build Y2 Canisfirebrand\n\n20) xmiyux: Build G1 Xmiyux\n\n21) CanisFirebrand: Discover Y1 Canisfirebrand G2 Erebus\n\n22) xmiyux: Move Y2 Xmiyux Miranda\n\n23) CanisFirebrand: Build Y3 Erebus\n\n24) xmiyux: Build Y3 Miranda\n\n25) CanisFirebrand: Build G2 Inverness\n\n26) xmiyux: Trade G1 R1 Xmiyux\n\n27) CanisFirebrand: Sacrifice Y3 Erebus\nMove Y2 Canisfirebrand Inverness\nMove G1 Inverness Miranda\nMove G2 Inverness Miranda\nCatastrophe Miranda G\n\n28) xmiyux: Move Y2 Aker&#39;s Inverness\n\n29) CanisFirebrand: Sacrifice R1 Canisfirebrand\nAttack Y2 Inverness\n\n30) xmiyux: Build R1 Xmiyux\n\n31) CanisFirebrand: Build Y2 Erebus\n\n32) xmiyux: Build G1 Xmiyux\n\n33) CanisFirebrand: Move Y2 Inverness Canisfirebrand\n\n34) xmiyux: Trade G3 Y3 Xmiyux\n\n35) CanisFirebrand: Build Y3 Canisfirebrand\n\n36) xmiyux: Build G1 Xmiyux\n\n37) CanisFirebrand: Discover Y1 Erebus Y3 Dunsinane\n\n38) xmiyux: Move R1 Xmiyux Serenity\n\n39) CanisFirebrand: Build B1 Canisfirebrand\n\n40) xmiyux: Move G1 Xmiyux Serenity\n\n41) CanisFirebrand: Discover Y2 Inverness G3 Nottingham\n\n42) xmiyux: Trade Y3 G3 Xmiyux\n\n43) CanisFirebrand: Build Y3 Nottingham\n\n44) xmiyux: Build G1 Serenity\n\n45) CanisFirebrand: Sacrifice B3 Canisfirebrand\nTrade Y1 B1 Dunsinane\nTrade Y2 B2 Nottingham\nTrade Y3 B3 Nottingham\n\n46) xmiyux: Discover G1 Serenity Y2 Akers\n\n47) CanisFirebrand: Sacrifice Y3 Canisfirebrand\nMove B3 Nottingham Erebus\nMove B2 Nottingham Erebus\nMove B1 Canisfirebrand Erebus\n\n48) xmiyux: Discover R1 Serenity G2 Valley\n\n49) CanisFirebrand: Discover B1 Erebus B3 Inverness\n\n50) xmiyux: Sacrifice G3 Xmiyux\nBuild G2 Serenity\nBuild G3 Xmiyux\nBuild G3 Akers\n\n51) CanisFirebrand: Build B2 Erebus\n\n52) xmiyux: Sacrifice G3 Xmiyux\nBuild G3 Xmiyux\nBuild R1 Xmiyux\nBuild R2 Valley\n\n53) CanisFirebrand: Build Y1 Erebus\n\n54) xmiyux: Move G3 Akers Canisfirebrand\n\n55) CanisFirebrand: Sacrifice Y2 Erebus\nMove B2 Erebus Canisfirebrand\nMove B2 Erebus Canisfirebrand\n\n56) xmiyux: Sacrifice R2 Valley\nAttack Y2 Canisfirebrand\nAttack B2 Canisfirebrand\n\n57) CanisFirebrand: Move B3 Erebus Canisfirebrand\n\n58) xmiyux: Sacrifice G3 Xmiyux\nBuild G3 Xmiyux\nBuild R2 Valley\nBuild R2 Valley\nCatastrophe Canisfirebrand Blue\n\n\nHomeworlds Online (SDG# 12934)\nStarted: 2009.2.18, Ended: 2009.3.17\nParticipants: slitt_vicious (S), xmiyux (N), CanisFirebrand (E)\nWinner: slitt_vicious\n\n1) xmiyux: Homeworld Y1 B2 G3\n\n2) CanisFirebrand: Homeworld G3 B1 R3\n\n3) slitt_vicious: Homeworld R3 B2 G3\n\n4) xmiyux: Build G1 Xmiyux\n\n5) CanisFirebrand: Build R1 Canisfirebrand\n\n6) slitt_vicious: Build G1 Slitt_vicious\n\n7) xmiyux: Trade G1 B1 Xmiyux\n\n8) CanisFirebrand: Trade R1 G1 Canisfirebrand\n\n9) slitt_vicious: Trade G3 R3 Slitt_vicious\n\n10) xmiyux: Build B1 Xmiyux\n\n11) CanisFirebrand: Build G1 Canisfirebrand\n\n12) slitt_vicious: Build R1 Slitt_vicious\n\n13) xmiyux: Discover B1 Xmiyux R3 Serenity\n\n14) CanisFirebrand: Trade G1 Y1 Canisfirebrand\n\n15) slitt_vicious: Trade R1 Y1 Slitt_vicious\n\n16) xmiyux: Build G1 Xmiyux\n\n17) CanisFirebrand: Build Y1 Canisfirebrand\n\n18) slitt_vicious: Build Y2 Slitt_vicious\n\n19) xmiyux: Build G1 Xmiyux\n\n20) CanisFirebrand: Discover G1 Canisfirebrand B2 Inverness\n\n21) slitt_vicious: Build G2 Slitt_vicious\n\n22) xmiyux: Discover G1 Xmiyux Y3 Miranda\n\n23) CanisFirebrand: Build G2 Inverness\n\n24) slitt_vicious: Build G2 Slitt_vicious\n\n25) xmiyux: Trade B1 R1 Xmiyux\n\n26) CanisFirebrand: Move Y1 Canisfirebrand Inverness\n\txmiyux: Careful Slitt, you have 3 green in your home system - if you end up with 4 (or if someone moves in a 4th) they could declare a catastrophe and all the green in that system would die.\n\n27) slitt_vicious: Discover G2 Slitt_vicious B1 Poopy\n\n28) xmiyux: Discover R1 Xmiyux G3 Akers\n\tslitt_vicious: fuck me.  This would be fun in person, but this website is just painful.\n\n29) CanisFirebrand: Build Y2 Canisfirebrand\n\n30) slitt_vicious: Move Y2 Slitt_vicious Poopy\n\n31) xmiyux: Build R1 Akers\n\n32) CanisFirebrand: Discover G1 Inverness B3 Erebus\n\n33) slitt_vicious: Build Y2 Poopy\n\n\tCanisFirebrand:  I agree.. Unfortunetly I think continuing this game as a 2 player game won&#39;t work either since many pieces are out there. Probably best to quit the game and if slitt wants to learn still, challenge one of us to a  2 player game.\n\nHomeworlds Online (SDG# 12877)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.3.1, Ended: 2009.3.19\nParticipants: acirruscloud (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 R1 G3\n\tacirruscloud: homeworld g1 y2 y3\n\n2) acirruscloud: Homeworld B3 G1 Y3\n\tacirruscloud: Hallo and good luck. This and one other game are my first on the site. Sort of messed up already.\n\n3) MadWuher: Build G1 Madwuher\n\tMadWuher: not to worry. Feel free to ask any questions as we go along.\n\n4) acirruscloud: Build Y1 Acirruscloud\n\n5) MadWuher: Build G1 Madwuher\n\n6) acirruscloud: Discover Y1 Acirruscloud B2 Onett\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) acirruscloud: Build Y1 Acirruscloud\n\n9) MadWuher: Build G2 Madwuher\n\n10) acirruscloud: Trade Y3 G3 Acirruscloud\n\n11) MadWuher: Discover G2 Madwuher B3 Edora\n\n\nHomeworlds Online (SDG# 12895)\nStarted: 2009.3.1, Ended: 2009.3.28\nParticipants: agentofchaos (S), acirruscloud (N)\nWinner: agentofchaos\n\n1) acirruscloud: Homeworld B2 G1 Y3\n\tacirruscloud: homeworld g1 b2 y3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\tagentofchaos: Hi, enjoy the game. \n\n3) acirruscloud: Build Y1 Acirruscloud\n\tacirruscloud: Hi, thanks. You too. This is my first time on SDG.\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) acirruscloud: Trade Y3 G3 Acirruscloud\n\tagentofchaos: I&#39;ve been on here a couple of months. Homeworlds is my favourite game here. \n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) acirruscloud: Build G1 Acirruscloud\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) acirruscloud: Discover G1 Acirruscloud Y3 Porre\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) acirruscloud: Discover G1 Porre B2 Enhasa\n\n12) agentofchaos: Trade G2 R2 Agentofchaos\n\n\nHomeworlds Online (SDG# 12961)\nStarted: 2009.3.1, Ended: 2009.3.31\nParticipants: agentofchaos (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld G2 B1 R3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\twmreed: Hello!\n\tagentofchaos: Hello, enjoy the game!\n\n3) wmreed: B R1 Wmreed\n\n4) agentofchaos: Build G1 Agentofchaos\n\twmreed: How long have you been playing Homeworlds?\n\tagentofchaos: I started playing it about 2 months ago. You?\n\n5) wmreed: T R1 G1 Wmreed\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\twmreed: Longer. I get a game in every couple of months. \n\n7) wmreed: B R1 Wmreed\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) wmreed: Build G1 Wmreed\n\n10) agentofchaos: Trade Y1 R1 Agentofchaos\n\n11) wmreed: Trade G1 Y1 Wmreed\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) wmreed: B R2 Wmreed\n\n14) agentofchaos: Build Y1 Agentofchaos\n\n15) wmreed: T R3 Y3 Wmreed\n\n16) agentofchaos: Discover R2 Agentofchaos Y2 Eris\n\n17) wmreed: Trade Y1 B1 Wmreed\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) wmreed: Build B1 Wmreed\n\n20) agentofchaos: Move G1 Agentofchaos Eris\n\n21) wmreed: Discover B1 Wmreed G3 Odin\n\n22) agentofchaos: Build R2 Eris\n\n23) wmreed: Build B2 Odin\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) wmreed: Build R3 Wmreed\n\n26) agentofchaos: Discover Y1 Agentofchaos G2 Zurvan\n\n27) wmreed: Move R3 Wmreed Odin\n\n28) agentofchaos: Build R3 Eris\n\n29) wmreed: Trade B2 Y2 Odin\n\n30) agentofchaos: Discover R2 Eris Y3 Quasgar\n\n31) wmreed: M Y3 Wmreed Quasgar\n\n32) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R3 Quasgar\n\n33) wmreed: Sacrifice R1 Wmreed\nAttack R3 Quasgar\n\n34) agentofchaos: Move R3 Eris Quasgar\n\n35) wmreed: Sacrifice R3 Quasgar\nAttack R3 Quasgar\nAttack R2 Quasgar\nPass\n\n36) agentofchaos: Build Y1 Zurvan\n\n37) wmreed: Move R3 Quasgar Zurvan\n\n38) agentofchaos: Discover Y1 Zurvan Y3 Elysia\n\n39) wmreed: Attack Y1 Zurvan\n\n40) agentofchaos: Build G1 Agentofchaos\n\n41) wmreed: Move Y3 Quasgar Wmreed\n\n42) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Eris\nBuild R1 Eris\nBuild G3 Agentofchaos\n\n43) wmreed: M R2 Quasgar Zurvan\n\n44) agentofchaos: Discover R1 Agentofchaos Y2 Hades\n\n45) wmreed: Build Y3 Zurvan\n\n46) agentofchaos: Move G1 Agentofchaos Hades\n\n47) wmreed: Move R3 Odin Eris\n\n48) agentofchaos: Build R3 Eris\nCatastrophe Eris R\n\n49) wmreed: Move R3 Zurvan Odin\n\n\n50) agentofchaos: Build G3 Agentofchaos\n\n51) wmreed: M R3 Odin Eris\n\n52) agentofchaos: Move G2 Eris Elysia\n\n53) wmreed: Attack G1 Eris\n\n54) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R1 Hades\nBuild R2 Hades\nBuild G3 Agentofchaos\n\n55) wmreed: M R3 Eris Elysia\n\n56) agentofchaos: Move Y1 Agentofchaos Hades\n\n57) wmreed: Attack G2 Elysia\n\n58) agentofchaos: Discover Y1 Elysia B2 Morgoth\n\n59) wmreed: Build R3 Zurvan\n\n\twmreed: Here&#39;s something I can&#39;t remember: if I sacrifice the last ship in a system, to build for example, does that star become available in the pool to build right then?\n\tagentofchaos: Hi, I&#39;ve been a bit busy last few days but didn&#39;t forget our game. \r\nI think sacrificing the last ship in a system would make the system marker available immediately. \n\n60) agentofchaos: Discover Y1 Hades B3 Skurve\n\n61) wmreed: Sacrifice Y3 Zurvan\nMove G2 Elysia Eris\nMove G2 Eris Agentofchaos\nMove G1 Eris Agentofchaos\nCatastrophe Agentofchaos Green\n\n\n\twmreed: I almost missed that.  Thank you for the game!\n\tagentofchaos: Good game, well played. \n\nHomeworlds Online (SDG# 13003)\nStarted: 2009.3.2, Ended: 2009.6.18\nParticipants: pedrop (S), Orl (N)\nWinner: pedrop\n\n1) Orl: Homeworld R2 B1 G3\n\n2) pedrop: Homeworld B3 R1 G3\n\tOrl: hi\n\n3) Orl: Build G1 Orl\n\tpedrop: Hi! Good luck:)\n\tOrl: thanks. This is my first game\n\n4) pedrop: Build G1 Pedrop\n\n5) Orl: Trade G1 R1 Orl\n\tpedrop: Those games I&#39;m currently playing are my first too, so I&#39;m not an experienced player either:) What is good - beacouse this match should be balanced, I think:)\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) Orl: Build G1 Orl\n\n8) pedrop: Build Y1 Pedrop\n\n9) Orl: Trade G1 Y1 Orl\n\n10) pedrop: Discover Y1 Pedrop G2 Ziemia\n\n11) Orl: Build G1 Orl\n\n12) pedrop: Build G1 Pedrop\n\n13) Orl: Discover G1 Orl Y3 Nova\n\n14) pedrop: Build Y2 Pedrop\n\n15) Orl: Build Y2 Orl\n\n16) pedrop: Build Y2 Pedrop\n\n17) Orl: Move Y1 Orl Nova\n\n18) pedrop: Trade Y1 R1 Pedrop\n\n19) Orl: Build G1 Orl\n\n20) pedrop: Discover G1 Pedrop B2 Niebo\n\n21) Orl: Trade G1 B1 Orl\n\n22) pedrop: Move Y2 Pedrop Niebo\n\n23) Orl: Move R1 Orl Nova\n\n24) pedrop: Move R1 Pedrop Niebo\n\n25) Orl: Build R2 Nova\n\n26) pedrop: Build Y1 Niebo\n\n27) Orl: Build Y3 Nova\n\n28) pedrop: Move Y1 Niebo Nova\nCatastrophe Nova Y\n\n29) Orl: Build Y1 Orl\n\tOrl: the Nova system has gone supernova...he he he\n\n30) pedrop: Build R1 Niebo\n\tpedrop: Hehe:) Maybe You have predicted it the moment You gave the name to the star? ;)\n\n31) Orl: Trade Y2 R2 Orl\n\n32) pedrop: Trade R1 B1 Niebo\n\tOrl: nope. I didn&#39;t even knew how SDG tells the loss of a system...\n\n33) Orl: Discover R2 Orl Y3 Nova2\n\n34) pedrop: Build B2 Niebo\n\n35) Orl: Build B2 Orl\n\n36) pedrop: Discover B2 Niebo G3 Ogien\n\n37) Orl: Move B2 Orl Ogien\n\n38) pedrop: Build B3 Ogien\n\n39) Orl: Build B3 Ogien\nCatastrophe Ogien B\n\n40) pedrop: Build R1 Niebo\n\n41) Orl: Build B2 Orl\n\n42) pedrop: Discover R1 Niebo G3 Ogien\n\n43) Orl: Move B1 Orl Nova2\n\n44) pedrop: Move B1 Niebo Ogien\n\tpedrop: Sorry, for delay:/\n\tOrl: No problem!\n\n45) Orl: Build G1 Orl\n\n\n46) pedrop: Build Y1 Ziemia\n\n47) Orl: Move R2 Nova2 Ziemia\n\n48) pedrop: Sacrifice G3 Pedrop\nBuild Y2 Niebo\nBuild Y3 Pedrop\nBuild Y3 Ziemia\n\n49) Orl: Move G1 Orl Nova2\n\n50) pedrop: Sacrifice R1 Niebo\nAttack R2 Ziemia\n\n51) Orl: Discover B1 Nova2 G2 Li\n\n52) pedrop: Build G1 Niebo\n\n53) Orl: Sacrifice G1 Nova2\nBuild Y3 Orl\n\n54) pedrop: Move Y3 Ziemia Ogien\n\n55) Orl: Discover B2 Orl G3 Esab\n\n56) pedrop: Move G1 Niebo Pedrop\n\n57) Orl: Build B2 Esab\n\n58) pedrop: Build B3 Ogien\n\n59) Orl: Build B3 Li\n\n60) pedrop: Move B3 Ogien Ziemia\n\n61) Orl: Sacrifice Y3 Orl\nMove B3 Li Pedrop\nMove B2 Esab Li\nMove B2 Li Pedrop\n\n\n62) pedrop: Build Y3 Pedrop\n\n63) Orl: Attack Y3 Pedrop\n\n64) pedrop: Sacrifice R2 Ziemia\nAttack Y3 Pedrop\nAttack B3 Pedrop\n\n65) Orl: Move Y1 Orl Esab\n\n66) pedrop: Move B3 Pedrop Ziemia\n\n67) Orl: Move B2 Esab Li\n\n68) pedrop: Attack B2 Pedrop\n\n69) Orl: Move Y1 Esab Li\n\n70) pedrop: Move Y3 Pedrop Li\n\n71) Orl: Discover B2 Li G1 G1\n\n72) pedrop: Build R1 Ogien\n\n73) Orl: Move Y1 Li G1\n\n74) pedrop: Build R2 Ogien\n\n75) Orl: Trade B2 R2 G1\n\n76) pedrop: Sacrifice Y3 Li\nMove R2 Ogien Orl\nMove R1 Ogien Orl\nMove R1 Ogien Orl\nCatastrophe Orl R\n\n77) Orl: Move R2 G1 Niebo\n\n78) pedrop: Sacrifice Y3 Pedrop\nMove B1 Ogien Orl\nMove B3 Ziemia Orl\nMove B3 Ziemia Orl\nCatastrophe Orl B\n\n\tpedrop: Thanks for the game.\n\tOrl: To you, too. I am way better with real pyramids... this way I can&#39;t concentrate.\n\tpedrop: I haven&#39;t play real piramides... so maybe thats the reson? :)\n\nHomeworlds Online (SDG# 13047)\nVariants: &quot;Unrated&quot;\nStarted: 2009.3.3, Ended: 2009.3.8\nParticipants: Ageless (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R3 G3\n\n\tagentofchaos: Hi, I hope you enjoy the game. I think it&#39;s fun. \n\tAgeless: I am sure I will. But please, wait a few days for me to begin. I am not understanding the notation. Sorry.\n\tAgeless: Sorry, but i did not understando how to play. English is not my first language.\n\nHomeworlds Online (SDG# 13040)\nStarted: 2009.3.3, Ended: 2009.4.22\nParticipants: pedrop (S), Mouce (N)\nWinner: Mouce\n\n1) Mouce: Homeworld Y1 B2 G3\n\n2) pedrop: Homeworld B3 R1 G3\n\n3) Mouce: Build G1 Mouce\n\n4) pedrop: Build G1 Pedrop\n\tMouce: Have a great game!\n\n5) Mouce: Build G1 Mouce\n\tpedrop: The same to You!\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) Mouce: Discover G1 Mouce B3 Skrich\n\n8) pedrop: Build Y1 Pedrop\n\n9) Mouce: Build G1 Mouce\n\n10) pedrop: Build Y2 Pedrop\n\n11) Mouce: Build G2 Skrich\n\n12) pedrop: Build G2 Pedrop\n\n13) Mouce: Trade G2 Y2 Skrich\n\n14) pedrop: Discover Y1 Pedrop G2 Ziemia\n\n15) Mouce: Trade G1 R1 Mouce\n\n16) pedrop: Discover Y2 Pedrop G2 Niebo\n\n17) Mouce: Discover G1 Skrich B2 Gnaw\n\n18) pedrop: Sacrifice G3 Pedrop\nBuild Y2 Ziemia\nBuild Y3 Pedrop\nBuild Y3 Niebo\n\n19) Mouce: Sacrifice G3 Mouce\nBuild G1 Gnaw\nBuild G3 Mouce\nBuild Y3 Skrich\n\n20) pedrop: Build G3 Pedrop\n\n21) Mouce: Sacrifice Y2 Skrich\nMove Y3 Skrich Gnaw\nMove G1 Gnaw Pedrop\n\n22) pedrop: Trade G2 R2 Pedrop\n\n23) Mouce: Sacrifice G3 Mouce\nBuild G2 Pedrop\nBuild G3 Gnaw\nBuild G3 Mouce\n\n24) pedrop: Discover G3 Pedrop Y2 Ogien\n\n25) Mouce: Trade G1 R1 Gnaw\n\n26) pedrop: Build G1 Ogien\n\n27) Mouce: Move R1 Gnaw Pedrop\n\n28) pedrop: Move R2 Pedrop Ziemia\n\n29) Mouce: Sacrifice G3 Mouce\nBuild R2 Pedrop\nBuild R2 Pedrop\nBuild G3 Mouce\nCatastrophe Pedrop Red\n\n30) pedrop: Trade Y1 B1 Pedrop\n\n31) Mouce: Trade G2 B2 Pedrop\n\n32) pedrop: Sacrifice R2 Ziemia\nAttack B2 Pedrop\nAttack G1 Pedrop\n\n33) Mouce: Move G3 Gnaw Pedrop\n\n34) pedrop: Sacrifice Y3 Pedrop\nMove B1 Pedrop Mouce\nMove B2 Pedrop Mouce\nMove Y1 Ziemia Pedrop\n\n35) Mouce: Trade G3 B3 Pedrop\n\n36) pedrop: Sacrifice Y3 Niebo\nMove G1 Pedrop Mouce\nMove G1 Ogien Pedrop\nMove G1 Pedrop Mouce\nCatastrophe Mouce G\n\tMouce: I&#39;ll wait for you awhile yet... I&#39;ve been enjoying our game.\n\n37) Mouce: Trade Y3 G3 Gnaw\n\tpedrop: Sorry, for delay - I have not much time nowdays:/ Thanks for waiting:) And I enjoy this game too. It is very interesting. And... before this game I didn&#39;t know that one can be agressive in Homewordls, like You(I mean Your strategy of course! ;). Thanks for that.\n\n38) pedrop: Sacrifice G3 Ogien\nBuild B1 Mouce\nBuild Y1 Niebo\nBuild Y2 Ziemia\nCatastrophe Mouce B\n\n39) Mouce: Sacrifice G3 Gnaw\nBuild B1 Pedrop\nBuild B1 Pedrop\nBuild R1 Mouce\nCatastrophe Pedrop Blue\n\n\tpedrop: Thanks for the game. It was realy interesting. Cheers.\n\tMouce: What a wacky game (and ending!); I really enjoyed it! I&#39;m glad that i could introduce to you a different play-style. This game has a surprising amount of depth (I feel that I am scratching the surface as yet), and seems to have been well-honed on this server. I hope we will play again in the near future!\n\nHomeworlds Online (SDG# 13043)\nStarted: 2009.3.3, Ended: 2009.3.7\nParticipants: Mouce (S), MikeYarrum (N)\nWinner: Mouce\n\n\tMouce: Hi, enjoy the game!\n\nHomeworlds Online (SDG# 13004)\nStarted: 2009.3.4, Ended: 2009.8.11\nParticipants: pedrop (S), Orl (W), agentofchaos (N), alexcobo (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B3 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\tagentofchaos: Hi everybody, thanks for playing. I hope you all enjoy the game. \n\n3) pedrop: Homeworld R1 B2 G3\n\n4) Orl: Homeworld R2 B1 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) pedrop: Build G1 Pedrop\n\n8) Orl: Build G1 Orl\n\tOrl: hi\n\n9) agentofchaos: Build G1 Agentofchaos\n\talexcobo: Hello. Good luck!\n\tagentofchaos: Thanks, you too!\n\n10) alexcobo: Trade Y1 R1 Alexcobo\n\n11) pedrop: Trade G1 Y1 Pedrop\n\n12) Orl: Trade G1 Y1 Orl\n\tpedrop: Good luck to You all! :)\n\n13) agentofchaos: Trade G1 Y1 Agentofchaos\n\n14) alexcobo: Build Y1 Alexcobo\n\n15) pedrop: Build G1 Pedrop\n\n16) Orl: Build G1 Orl\n\n17) agentofchaos: Build Y1 Agentofchaos\n\n18) alexcobo: Build Y2 Alexcobo\n\n19) pedrop: Build Y2 Pedrop\n\n20) Orl: Trade G1 B1 Orl\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) alexcobo: Trade Y1 G1 Alexcobo\n\n23) pedrop: Discover Y2 Pedrop G3 Ziemia\n\n24) Orl: Move B1 Orl Ziemia\n\n25) agentofchaos: Discover G1 Agentofchaos Y2 Skurj\n\n26) alexcobo: Discover G1 Alexcobo G1 Venia\n\n27) pedrop: Trade G1 R1 Pedrop\n\n28) Orl: Build B1 Ziemia\n\n29) agentofchaos: Discover Y1 Agentofchaos B2 Morgoth\n\n30) alexcobo: Build R1 Alexcobo\n\n31) pedrop: Move R1 Pedrop Ziemia\n\n32) Orl: Build G1 Orl\n\tOrl: a question: are we playing with the sinister homeworlds variant? I can&#39;t see nothing that states my alignment...\n\n33) agentofchaos: Build G2 Skurj\n\tpedrop: :) Not so long ago, I was asking for the same thing:) AFAIK the sinister variant is about that, who first beat oponent on his left - is the winner of whole game(and he doesn&#39;t have to beat others to be the winner). So I presume You are asking about standard Homeworlds rules, where there are good-evil designatons. This is not implemented on SDG. The standard rules(and those we are playing in this game) have one-man-standing winning condition.\n\tpedrop: There should be:\r\n&quot;(...)The default rules on SDG(and those we are(...)&quot;\r\nCouse those are not the standard rules for board game, I think.\n\tOrl: Ok, understood, thanks! But I think it would be very nice if SDG implemented standard rules.\n\n34) alexcobo: Trade R1 B1 Alexcobo\n\n35) pedrop: Build G2 Pedrop\n\n36) Orl: Build G2 Orl\n\n37) agentofchaos: Sacrifice G2 Skurj\nBuild Y1 Agentofchaos\nBuild Y2 Morgoth\n\n38) alexcobo: Sacrifice Y2 Alexcobo\nMove G1 Venia Ziemia\nMove G1 Ziemia Orl\nCatastrophe Orl G\n\n39) pedrop: Attack B1W Ziemia\n\tpedrop: Sorry, but I had to call an admin, couse I could&#39;n attack b1 in Ziemia. I got the &quot;The ship B1 could not be found in the Ziemia system.&quot; message.\n\talexcobo: Try this, pedrop: &quot;attack b1w Ziemia&quot;.\r\nYou have to declare the position of the player you are attacking.\n\tAaron: aye\n\n40) Orl: Trade Y1 G1 Orl\n\tpedrop: Yes, You were right:/ I didn&#39;t read this notice, about 3+ Homeworlds games:/ Realy sorry for delay and making problems for Aron:/\n\tAaron: np at all\n\n41) agentofchaos: Trade Y1 R1 Morgoth\n\n42) alexcobo: Build R2 Alexcobo\n\n43) pedrop: Discover G2 Pedrop Y3 Niebo\n\n44) Orl: Build G1 Orl\n\n45) agentofchaos: Move G1 Agentofchaos Morgoth\n\n46) alexcobo: Build Y1 Alexcobo\n\n47) pedrop: Build R2 Ziemia\n\n48) Orl: Trade G1 Y1 Orl\n\n49) agentofchaos: Build R2 Morgoth\n\n50) alexcobo: Discover B1 Alexcobo G1 Inga\n\n51) pedrop: Move R2 Ziemia Skurj\n\n52) Orl: Build Y2 Orl\n\n53) agentofchaos: Discover G1 Skurj Y3 Orcus\n\n54) alexcobo: Trade R1 B1 Alexcobo\n\n55) pedrop: Build Y2 Ziemia\n\n56) Orl: Discover Y1 Orl G3 Glomi\n\n57) agentofchaos: Build Y3 Morgoth\n\n58) alexcobo: Build B2 Inga\n\n59) pedrop: Build Y3 Pedrop\n\n60) Orl: Build G1 Orl\n\n61) agentofchaos: Build G2 Orcus\n\n62) alexcobo: Trade B2 G2 Inga\n\n63) pedrop: Build G2 Pedrop\n\n64) Orl: Move G1 Orl Glomi\n\n65) agentofchaos: Build G2 Morgoth\n\n66) alexcobo: Build B2 Inga\n\n67) pedrop: Move B1 Ziemia Skurj\n\n68) Orl: Move G1 Glomi Orl\n\n69) agentofchaos: Move R1 Morgoth Orcus\n\n70) alexcobo: Trade B1 R1 Inga\n\n71) pedrop: Attack B1W Ziemia\n\n72) Orl: Trade G1 B1 Orl\n\n\n73) agentofchaos: Sacrifice G2 Orcus\nBuild R2 Morgoth\nBuild R3 Orcus\n\n74) alexcobo: Build R3 Alexcobo\n\n75) pedrop: Sacrifice G2 Pedrop\nBuild R3 Skurj\nBuild R3 Ziemia\n\n76) Orl: Move B1 Orl Glomi\n\n\n77) agentofchaos: Build G1 Agentofchaos\n\n78) alexcobo: Build R3 Inga\n\n79) pedrop: Build G2 Pedrop\n\n80) Orl: Build G2 Orl\n\n81) agentofchaos: Move R3 Orcus Orl\n\n82) alexcobo: Move Y3 Alexcobo Inga\n\n83) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild B2 Skurj\nBuild B3 Ziemia\n\n84) Orl: Build B3 Glomi\n\n85) agentofchaos: Attack Y2W Orl\n\n86) alexcobo: Build B3 Inga\n\n87) pedrop: Discover Y3 Pedrop B3 Nowy\n\n88) Orl: Move B3 Glomi Inga\n\n89) agentofchaos: Sacrifice Y2 Morgoth\nMove G1 Morgoth Inga\nMove G1 Orcus Inga\nCatastrophe Inga G\n\n90) alexcobo: Build Y2 Alexcobo\n\n91) pedrop: Build Y3 Pedrop\n\n92) Orl: Build G1 Orl\n\n93) agentofchaos: Attack G2W Orl\n\n94) alexcobo: Trade R2 G2 Alexcobo\n\n95) pedrop: Discover R3 Ziemia G1 Ogien\n\n96) Orl: Move B1 Glomi Orl\n\n97) agentofchaos: Move G2 Orl Orcus\n\n98) alexcobo: Discover Y2 Alexcobo G1 G1\n\n99) pedrop: Move B1 Skurj Niebo\n\n100) Orl: Move Y1 Glomi Orl\n\n101) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Orcus\nBuild R1 Orcus\nBuild G3 Agentofchaos\n\n102) alexcobo: Build R2 Alexcobo\n\n103) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild B2 Skurj\nBuild B3 Niebo\n\n\nHomeworlds Online (SDG# 13036)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.3.8, Ended: 2009.4.8\nParticipants: a_magical_me (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) a_magical_me: Homeworld G3 B2 Y3\n\ta_magical_me: Hi.\n\n3) MadWuher: Build G1 Madwuher\n\n4) a_magical_me: Build Y1 A_magical_me\n\tMadWuher: Hi there. Hope you enjoy the game. If you have any questions, feel free to ask.\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\ta_magical_me: Sure. I&#39;ve played a couple games, but don&#39;t really grok it yet. We&#39;ll see what happens.\n\n6) a_magical_me: Trade Y1 B1 A_magical_me\n\n7) MadWuher: Build G1 Madwuher\n\n8) a_magical_me: Build B1 A_magical_me\n\n9) MadWuher: Build G1 Madwuher\n\n10) a_magical_me: Discover B1 A_magical_me G1 Goo\n\n11) MadWuher: Discover G1 Madwuher Y2 Edora\n\n12) a_magical_me: Build B1 Goo\n\n13) MadWuher: Build G2 Edora\n\n14) a_magical_me: Build B2 Goo\n\n15) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n\nHomeworlds Online (SDG# 13057)\nStarted: 2009.3.9, Ended: 2009.3.12\nParticipants: MikeYarrum (S), Skotte (N)\nWinner: Skotte\n\n1) Skotte: Homeworld G1 Y3 R3 *\n\n\nHomeworlds Online (SDG# 13087)\nStarted: 2009.3.11, Ended: 2009.4.29\nParticipants: MikeYarrum (S), dethdukk (N)\nWinner: dethdukk\n\n1) dethdukk: Homeworld B2 Y1 G3\n\tdethdukk: I assume this is were I talk to you in?\r\n\n\tdethdukk: Just so you know, this is my first game on this system, give me some time to get used to it, I may have to ask a few questions.\n\n\nHomeworlds Online (SDG# 12913)\nStarted: 2009.3.11, Ended: 2009.3.15\nParticipants: dethdukk (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n2) dethdukk: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\tdethdukk: evening.  This is my first game using this system (SDG that is) and my first homeworlds game against anyone outside of my immediate friends group.  any suggestions or corrections at the end of the game would be appreciated\n\n4) dethdukk: Build G1 Dethdukk\n\tTwoShort: Sure.  My typical approach with new players is to give them advice a little too late to actually help :) Only semi-intentionally though.  It&#39;s hard to know what advice to give in advance, and no fun just telling people what to do in any case.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: &quot;evening&quot;?  you must be in a different time zone than me :)\n\n6) dethdukk: Build G1 Dethdukk\n\tdethdukk: I agree wholeheartedly.  As I said, END of the game.  I like to make my mistakes and learn from them, it helps imprint the lesson better.  In any case, I think I understand most of the basis, its the details that&#39;ll get me.\n\n7) TwoShort: Build Y1 Twoshort\n\tdethdukk: I should have said &quot;morning&quot; or perhaps &quot;afternoon&quot;.  I tend to greet peaple with evening no matter the time of day.  I am in the mountains.\n\n8) dethdukk: Discover G1 Dethdukk B3 Lauch\n\tTwoShort: I don&#39;t always remember the advice at the end of the game, which is why I figure &quot;too late to help&quot; is equivalent.. for example, be careful about letting your opponent get the last 1 point of a color you don&#39;t have before you have any 2 pointers...\r\n\n\tTwoShort: Where in the mountains? (he wonders from Boulder, CO)\n\tdethdukk: Denver actually.  (gasps in astonishment as he realizes what just happened)\n\n9) TwoShort: Build Y2 Twoshort\n\n10) dethdukk: Build G1 Lauch\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Lauch\nBuild G2 Dethdukk\nBuild G3 Dethdukk\n\n13) TwoShort: Build G3 Twoshort\n\tdethdukk: there, that worked out pretty well...  not to get my number of greens down.  Thanks again for playing.  I understand that you are a rather high-level player, hopefully playing against a completely new person isnt too annoying :P\n\tdethdukk: hm... is there a way to get the past turns, or perhaps review the game as a whole?  I can save the pictures from here on out, but it would be nice to get the first few turns.\n\tdethdukk: for review.  I want the past turns so I can review how the game went.\n\n14) dethdukk: Trade G2 Y2 Lauch\n\tTwoShort: You can step through past games once they are over by going to the homepage -&gt; games history-&gt; pick the specific game.\n\n15) TwoShort: Discover G3 Twoshort B2 Bluebird\n\tdethdukk: thanks\n\tTwoShort: Oh, and as far as playing new players, I don&#39;t mind at all.  When people have no idea what they are doing it can be a little annoying because I don&#39;t always have time for a good tutorial, and I feel guilty just crushing them.  But using a factory to escape my yellow lock means you&#39;re well beyond that.\n\n16) dethdukk: Trade G2 R2 Dethdukk\n\tdethdukk: So what you are saying is that you wont feel guilty after crushing me?  Oh, and I dont think you will get a bluebird on me.  Unless I have somehow mis-judged my position...\n\n17) TwoShort: Build G2 Twoshort\n\tTwoShort: I tend to name systems by free association; I was vaguely worried you&#39;d leave yourself open to a bluebird right after I said how well you were doing.  In any case, if I manage to crush you, I won&#39;t feel guilty at all :)\n\n18) dethdukk: Build Y2 Lauch\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluebird\nBuild G3 Twoshort\nBuild Y3 Grogar\n\tdethdukk: well I will try to give you a run for your money.  I think I can do some damage, but I think you may have me because of your 2 builder ships.\n\n20) dethdukk: Sacrifice Y2 Lauch\nMove G1 Lauch Bluebird\nMove G1 Lauch Bluebird\nCatastrophe Bluebird G\n\n21) TwoShort: Discover Y1 Twoshort B2 Blitz\n\n22) dethdukk: Move Y2 Lauch Grogar\n\n23) TwoShort: Discover Y3 Grogar B3 Bonanza\n\n24) dethdukk: Discover G1 Dethdukk B3 Colony\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bonanza\nBuild Y3 Twoshort\nBuild Y3 Blitz\n\n26) dethdukk: Build G1 Dethdukk\n\n27) TwoShort: Trade Y3 G3 Bonanza\n\n28) dethdukk: Discover G1 Dethdukk Y3 Standing\n\n29) TwoShort: Build G1 Twoshort\n\n30) dethdukk: Build G2 Standing\n\tdethdukk: so the point of the game is not neccesarily to kill off the other player in one stroke, but rather to cut them down slowly by gaining control of the ship stash.  which would mean that green is extremely important, yellow ia second most important, and perhaps even most important, red is helpfun but not needed except perhaps as surgical stikes, meant to cut someone out or a color, and blue is used almost exclusively for systems.\n\tdethdukk: yellow is second*, red is helpful*, any others I missed\n\n31) TwoShort: Trade G2 R2 Twoshort\n\tTwoShort: 3 pointers are the most important :) But yes, barring any big blunders, you win by buildign enough of a ship advantage that the exact mechanics of finishing the guy off become academic.\r\n\r\nGreen is essential early, and devastating if you can get the only factory ( a g3 you can sac to build 2 ships and itself right back).\r\n\r\nYellow has the biggest ability to transform the board; getting most of the big ones will be a big advantage.\r\n\r\nBlue is sometimes mostly systems like in this game, but there&#39;s a great strategy if you can get a complete monopoly (you can continually flip a b3 to something else and regrow it).\r\n\r\nI&#39;ve only once had a red monopoly.  Generally, you want an r2 (or 3, but a 2 is about as good) you can sacrifice somewhere, and &quot;the gun rule&quot; says you should take a red somewhere as soon as your opponent does.  This is excellent advice, even though I&#39;m currently ignoring it :)\n\n32) dethdukk: Move Y2 Grogar Colony\n\tdethdukk: I have been reading a bit...  you believe that a small/large homeworld is better than a small/medium homeworld correct?  Is this simply because you can explore mediums, and thus get to larges faster, or some other reason?  Also, red seems to be the starting color of choice over yellow nowadays.  I assume that that is simply because you can get a greater benifit out of a red system later on, where a yellow system looses its usefulness so long as you have even a single yellow ship.\n\n33) TwoShort: Move Y3 Blitz Colony\n\n34) dethdukk: Sacrifice Y2 Colony\nDiscover G1 Colony Y2 Point\nMove R2 Dethdukk Bonanza\n\tTwoShort: As far as goldilocks (1-3) vs. banker (1-2), I&#39;ve probably changed my mind a half dozen times since I wrote that.  Today I think they are about comparable.  Both are better than Fortress (2-3). Certain good players (named Andy Looney) strongly prefer banker, and crush me with it. \r\n  I like the red-blue homeworld best, mostly because you can grow more green and yellow ships without getting close to a catastrophe.  The red is nice defensively, but that&#39;s secondary.\n\n35) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Bonanza\nPass\n\n36) dethdukk: Build G2 Dethdukk\n\tdethdukk: thanks again for your help.  I have 3 more questions, all of them unrelated to this game:  Are you planning on going to origins?  do you play icehouse at all?  and would you play another homeworlds game against me after this one?\n\n37) TwoShort: Move G3 Bonanza Dethdukk\n\tTwoShort: - I&#39;m not going to Origins (young children, limited budget, other commitments).\r\n- Back in the day (1992) I played vast amounts of Icehouse and was part of the team that won the fourth tournament.  I haven&#39;t played it much in years though.\r\n - I&#39;m always happy to play more homeworlds.  I am going on vacation without net access the week after next, so if you start another game before then you&#39;ll wind up waiting a week for my next move at some point.\r\n\n\n38) dethdukk: Trade G2 R2 Dethdukk\n\n39) TwoShort: Sacrifice R2 Bonanza\nAttack G3 Dethdukk\nAttack R2 Dethdukk\n\n\tdethdukk: good game.  I think you had me no matter what I did that turn.  I will send you a challange, accept it when you wish.  Thanks againfor the game/suggestions.\n\nHomeworlds Online (SDG# 12896)\nStarted: 2009.3.11, Ended: 2009.6.11\nParticipants: nilesenator (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) nilesenator: Homeworld G3 B1 R3\n\tMadWuher: sorry for not being online sooner. hope you enjoy the game.\n\tnilesenator: No problem! Thanks for playing\n\n3) MadWuher: Build G1 Madwuher\n\n4) nilesenator: Build R1 Nilesenator\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) nilesenator: Trade R1 Y1 Nilesenator\n\n7) MadWuher: Build G1 Madwuher\n\n8) nilesenator: Build R1 Nilesenator\n\n9) MadWuher: Build G1 Madwuher\n\n10) nilesenator: Trade R1 G1 Nilesenator\n\n11) MadWuher: Discover G1 Madwuher B1 Bologna\n\n12) nilesenator: Build Y1 Nilesenator\n\n13) MadWuher: Build Y2 Madwuher\n\n14) nilesenator: Build R1 Nilesenator\n\n15) MadWuher: Build G2 Bologna\n\n16) nilesenator: Discover R1 Nilesenator G2 Emptyspace\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild G3 Bologna\n\n\nHomeworlds Online (SDG# 12951)\nStarted: 2009.3.29, Ended: 2009.4.7\nParticipants: ts52 (S), pam (N)\nWinner: ts52\n\n1) pam: Homeworld Y1 B2 G3\n\tts52: Have a good game! Hey, two different games with you at once. Should be fun!\n\tpam: how do i make a move on this game?sorry,i thought i was going to be an observer!\n\n2) ts52: Homeworld B1 Y3 G3\n\tts52: No problem, first you need to create a homeworld. You only do this once, at the beginning of the game, with the homeworld command. A standard opening is &#39;homeworld y1 b2 g3&#39; which gives you a homeworld with small yellow and medium blue stars with a large green ship.\n\n3) pam: Build G1 Pam\n\tpam: thanks!\n\n4) ts52: Build G1 Ts52\n\tpam: now what?\n\n5) pam: Build G1 Pam\n\tpam: \n\tts52: That&#39;s good.\n\n6) ts52: Discover G1 Ts52 B2 Grover\n\tts52: Now you can discover a new star, build another green ship, or trade one of your green ships for another color.\n\n\tpam: i&#39;m sorry,maybe i can play this later after i watch some games\n\tts52: No problem. It&#39;s a game probably best learned in person. I&#39;m probably not the best teacher, but if you&#39;d like to challenge me to an unrated game, any time, I&#39;d be happy to try to answer any questions. My only problem with SDG is you can&#39;t tell the system to notify you of new messages in a game.\n\nHomeworlds Online (SDG# 13194)\nVariants: &quot;Hard time&quot;\nStarted: 2009.3.30, Ended: 2009.4.21\nParticipants: fnord (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) fnord: Homeworld Y3 B1 G3\n\tjeep: Have a good game!\n\n3) jeep: Build G1 Jeep\n\n4) fnord: Build G1 Fnord\n\tfnord: Thanks, hope you do too!\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) fnord: Discover G1 Fnord B2 Discordia\n\n7) jeep: Build Y1 Jeep\n\n8) fnord: Build G1 Fnord\n\n9) jeep: Build Y1 Jeep\n\n10) fnord: Build G1 Fnord\n\n11) jeep: Discover Y1 Jeep G3 Thumb\n\n12) fnord: Build G2 Discordia\n\n13) jeep: Build G2 Jeep\n\n14) fnord: Trade G2 Y2 Discordia\n\n15) jeep: Sacrifice G3 Jeep\nBuild Y2 Thumb\nBuild Y2 Thumb\nBuild Y3 Jeep\n\n16) fnord: Move Y2 Discordia Thumb\nCatastrophe Thumb Yellow\n\n17) jeep: Sacrifice Y3 Jeep\nDiscover G2 Jeep Y3 Temp\nMove G2 Temp Discordia\nMove G2 Discordia Fnord\nCatastrophe Fnord Green\n\n\tjeep: Thanks for the game.\n\nHomeworlds Online (SDG# 13060)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.3.31, Ended: 2009.4.18\nParticipants: Mouce (S), agentofchaos (N)\nWinner: Mouce\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Mouce: Homeworld B1 R3 G3\n\tagentofchaos: Hi there, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Mouce: Build G1 Mouce\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Mouce: Build G1 Mouce\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Mouce: Trade G1 Y1 Mouce\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Mouce: Build Y2 Mouce\n\n11) agentofchaos: Trade Y2 G2 Agentofchaos\n\n12) Mouce: Build Y2 Mouce\n\n13) agentofchaos: Build Y2 Agentofchaos\n\n14) Mouce: Discover Y2 Mouce B2 Nest\n\n15) agentofchaos: Discover Y1 Agentofchaos G3 Freakout\n\n16) Mouce: Sacrifice G1 Mouce\nBuild Y3 Nest\n\n17) agentofchaos: Build Y3 Freakout\n\n18) Mouce: Trade Y2 G2 Nest\n\n19) agentofchaos: Trade Y1 B1 Agentofchaos\n\n20) Mouce: Build G1 Nest\n\n21) agentofchaos: Build Y1 Agentofchaos\n\n22) Mouce: Move G1 Nest Freakout\n\n23) agentofchaos: Discover Y3 Freakout B2 Glurge\n\n24) Mouce: Sacrifice G2 Nest\nBuild Y2 Mouce\nBuild Y3 Nest\n\n25) agentofchaos: Move Y3 Glurge Mouce\nCatastrophe Mouce Y\n\n26) Mouce: Build G1 Mouce\n\n27) agentofchaos: Discover G2 Agentofchaos Y3 Midas\n\n28) Mouce: Trade G1 Y1 Mouce\n\n29) agentofchaos: Trade Y1 R1 Agentofchaos\n\n30) Mouce: Build G1 Mouce\n\n31) agentofchaos: Sacrifice R1 Agentofchaos\nAttack G1 Freakout\n\n32) Mouce: Move G1 Mouce Nest\n\n33) agentofchaos: Move B1 Agentofchaos Midas\n\n34) Mouce: Discover Y3 Nest B3 Droppings\n\n35) agentofchaos: Build Y1 Agentofchaos\n\n36) Mouce: Move G1 Nest Droppings\n\n37) agentofchaos: Build Y2 Freakout\n\n38) Mouce: Build Y2 Mouce\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) Mouce: Build G2 Droppings\n\n41) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Midas\nBuild B1 Midas\nBuild G3 Agentofchaos\n\n42) Mouce: Sacrifice Y3 Nest\nMove Y3 Droppings Agentofchaos\nMove G1 Droppings Agentofchaos\nMove G2 Droppings Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: well played\n\tMouce: thanks for the game, i&#39;m glad we have another going! this game is pretty amazing. it&#39;s a bit like abstract wrestling \n\nHomeworlds Online (SDG# 12843)\nStarted: 2009.4.1, Ended: 2009.4.14\nParticipants: gregcrowe (S), Trollkin (W), soapdog (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B3 G3\n\n\tagentofchaos: Three people sign up and no-one&#39;s playing, what a disappointment!!\n\nHomeworlds Online (SDG# 13205)\nVariants: &quot;Unrated&quot;\nStarted: 2009.4.1, Ended: 2009.4.8\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tjeep: pass first build\n\tjeep: Heh, that was supposed to be a note.  I think that your flip to red strategy can be worse.   You can actually take a R3 ship, grow, then flip the large on turn 2.  Not sure it is any different than your way, but it sure feels worse to be locked out first turn.\n\tTwoShort: I need green and blue, so if I take the red ship, I have need to grow twice to get both 1s, so it&#39;s the same.\n\n3) jeep: Pass\n\tTwoShort: For maximum pain, I probably should have made a small universe...\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Build G1 Jeep\n\n6) TwoShort: Trade G1 R1 Twoshort\n\tjeep: Wow, we have a lot of spectators.\n\n7) jeep: Trade G1 Y1 Jeep\n\tTwoShort: Oh, that&#39;s just my adoring fans; they follow me everywhere :)  Actually, I don&#39;t think any of them are there.  Once you start &quot;watching&quot; a player, it takes an actual action to stop, so if they don&#39;t come back to the site, their ghost haunts me forever.  Notably, only a couple of the names do I even vaguely remember as someone I might have played once.  Also I periodically say &quot;Hey, spectators, if you&#39;re really there PM me!&quot; and they never do.\n\n8) TwoShort: Build R2 Twoshort\n\n9) jeep: Build G1 Jeep\n\tjeep: Wow... I don&#39;t even know how I&#39;m going to deal with this.  ;)\n\n10) TwoShort: Trade R2 Y2 Twoshort\n\tjeep: I&#39;m now a man with a plan.\n\n11) jeep: Trade G3 R3 Jeep\n\tjeep: Yeah, small universe would be tough here.\n\n12) TwoShort: Discover R1 Twoshort G2 Noescape\n\tTwoShort: So this will get you out if I don&#39;t do something extreme, but knowing I was going to play this way, would you still play Banker, or would you go to fortress to avoid it?\n\tjeep: Fortress is better in this case.\n\tTwoShort: Well in any case, time to try something extreme :)\r\n\n\n13) jeep: Build G1 Jeep\n\tjeep: How is that extreme?  Pretty rough on me, though.  Have to think a little more than the 5 min while compiling.\n\n14) TwoShort: Build R2 Noescape\n\n15) jeep: Discover G1 Jeep R3 Onlyhope\n\tTwoShort:  I was thinking the straight forward thing for me to do there was to build the r2 before moving out which would let you build an r2 and break the monopoly, and we&#39;d emerge from the early game with me at a clear advantage, but the game still in play.  This is the first step of a more extreme plan, which if it doesn&#39;t work, I&#39;ll be in a tough spot.  But I think now it will work, and you&#39;ll be inescapably doomed :) \n\tjeep: Yep, the switch to red was bad.\n\n16) TwoShort: Build R2 Noescape\n\n17) jeep: Trade R3 G3 Jeep\n\n18) TwoShort: Sacrifice Y2 Twoshort\nMove R2 Noescape Onlyhope\nMove R1 Noescape Twoshort\n\tjeep: Okay, I want overs after this game.  ;)  \n\n19) jeep: Sacrifice G1 Onlyhope\nBuild Y1 Jeep\n\n20) TwoShort: Build G1 Twoshort\n\n21) jeep: Discover Y1 Jeep R3 Reserve\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild R2 Noescape\nBuild R3 Twoshort\nBuild G1 Twoshort\n\n23) jeep: Build G2 Jeep\n\n24) TwoShort: Trade R3 G3 Twoshort\n\n25) jeep: Trade G3 R3 Jeep\n\n26) TwoShort: Trade G1 Y1 Twoshort\n\n27) jeep: Discover G1 Jeep Y3 Mover\n\n28) TwoShort: Build Y2 Twoshort\n\n29) jeep: Trade R3 G3 Jeep\n\n30) TwoShort: Build R3 Noescape\n\n31) jeep: Sacrifice G2 Jeep\nBuild Y2 Jeep\nBuild Y2 Reserve\n\tjeep: Too much flipping in my homeworld.  Bleh.\n\n32) TwoShort: Sacrifice Y2 Twoshort\nDiscover R2 Onlyhope B2 Bluestar\nMove R3 Noescape Reserve\n\n33) jeep: Sacrifice Y1 Reserve\nDiscover Y2 Reserve B2 Stage\n\n34) TwoShort: Build R3 Twoshort\n\n35) jeep: Discover Y1 Jeep Y3 Shaker\n\n36) TwoShort: Trade R3 Y3 Twoshort\n\n37) jeep: Build Y1 Jeep\n\n38) TwoShort: Sacrifice G1 Twoshort\nBuild R3 Reserve\n\n39) jeep: Sacrifice G1 Mover\nBuild Y2 Stage\n\n40) TwoShort: Sacrifice Y3 Twoshort\nMove R2 Noescape Reserve\nMove R3 Reserve Jeep\nMove R3 Reserve Jeep\n\tTwoShort: I&#39;ve been pretty sure you were stuck since move 1, but it has certainly taken a long while to work that around into actual victory.  Quite the valiant fight!\n\n\nHomeworlds Online (SDG# 13240)\nVariants: &quot;Hard time&quot;\nStarted: 2009.4.6, Ended: 2009.4.16\nParticipants: Subhan64 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\tagentofchaos: Hi, enjoy the game. \n\n2) Subhan64: Homeworld G3 B2 Y3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Subhan64: Build Y1 Subhan64\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Subhan64: Discover Y1 Subhan64 R1 Omecronpersei8\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) Subhan64: Build Y1 Subhan64\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Subhan64: Build Y2 Subhan64\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) Subhan64: Trade Y2 G2 Subhan64\n\n13) agentofchaos: Discover Y2 Agentofchaos G3 Seti\n\n14) Subhan64: Sacrifice Y3 Subhan64\nMove G2 Subhan64 Omecronpersei8\nMove G2 Omecronpersei8 Seti\nMove G2 Seti Agentofchaos\nCatastrophe Agentofchaos Green\n\n15) agentofchaos: Build Y2 Seti\n\n16) Subhan64: Trade Y1 G1 Subhan64\n\n17) agentofchaos: Sacrifice Y2 Seti\nMove Y2 Seti Omecronpersei8\nMove Y2 Omecronpersei8 Subhan64\n\n18) Subhan64: Build G1 Subhan64\n\n19) agentofchaos: Trade Y2 G2 Subhan64\nCatastrophe Subhan64 G\n\n\tSubhan64: GG, thanks!  Totally spaced on your being able to use the star tech in my home system!\n\tagentofchaos: I didn&#39;t really understand that I could use another player&#39;s tech in their home system, until someone did it to me once - quite a learning experience! Thanks for the game :-)\n\nHomeworlds Online (SDG# 13080)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.4.6, Ended: 2009.6.27\nParticipants: efwin (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B3 G3\n\tefwin: Hi -- I&#39;m trying this one for the first time, so any advice is appreciated\n\tMadWuher: I&#39;ll do my best. Have you read up on the rules and how the colours work?\n\n2) efwin: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\tefwin: I&#39;ve read the rules and think I&#39;ve understood them enough to give the game a try (we&#39;ll see how well soon enough, I imagine)\n\n4) efwin: Build Y1 Efwin\n\n5) MadWuher: Build G1 Madwuher\n\n6) efwin: Build Y1 Efwin\n\n7) MadWuher: Discover G1 Madwuher B2 Edora\n\n8) efwin: Trade Y1 B1 Efwin\n\n9) MadWuher: Trade G1 Y1 Edora\n\tefwin: Oops -- set up a catastrophe situation....  Need to do something different than that, or it will be a very short game\n\n10) efwin: Build Y2 Efwin\n\n11) MadWuher: Move G1 Madwuher Edora\n\tMadWuher: Good catch. It just gives me an opportunity to get into the yellow.\n\n12) efwin: Discover B1 Efwin G1 Enoneergtod\n\tefwin: Perhaps I should venture forth soon...\n\n13) MadWuher: Build Y2 Edora\n\tMadWuher: If there was any way I could get to your homeworld with my yellow, I would. =) Too bad you&#39;re going to start moving out of there shortly.\n\n14) efwin: Move Y1 Efwin Enoneergtod\n\tefwin: I better do something about my yellow situation next turn....\n\n15) MadWuher: Build G1 Madwuher\n\n16) efwin: Build Y2 Enoneergtod\n\n17) MadWuher: Discover Y1 Edora B1 Bologna\n\n18) efwin: Trade Y2 G2 Enoneergtod\n\n19) MadWuher: Build G2 Edora\n\n20) efwin: Build Y2 Enoneergtod\n\n21) MadWuher: Sacrifice G2 Edora\nBuild Y3 Edora\nBuild Y3 Bologna\n\n22) efwin: Trade Y2 G2 Efwin\n\n23) MadWuher: Trade G1 R1 Madwuher\n\n24) efwin: Discover G2 Enoneergtod Y2 Owtwolleytod\n\tefwin: Defense seemed like the prudent choice\n\n25) MadWuher: Build G1 Madwuher\n\n26) efwin: Build G2 Owtwolleytod\n\n27) MadWuher: Build G3 Edora\n\n28) efwin: Trade Y1 R1 Enoneergtod\n\n29) MadWuher: Trade G3 R3 Edora\n\n30) efwin: Move B1 Enoneergtod Owtwolleytod\n\tefwin: Strategy question -- I see that I could have sacrificed one of my yellow ships and moved greens to your homeworld or yellows to Bolonga to cause a catastrophe -- but it seemed like I would have had to have spent too many resources for what would have been a more or less even tradeoff of the ships -- am I thinking about that right?  Do you typically only catastrophe if you hurt the opponent more than yourself? \n\tMadWuher: Right. Typically only cause catastrophes if you will end up ahead in the numbers game, or you take out more points of ships than you are losing. Right now, I could cause you to lose your 2 green 2&#39;s by losing only 4 points of ships (sac a y2 and move my g1&#39;s into owtwolleytod (DotYellowTwo??? interesting naming habit)) I&#39;m just looking to see if there are any other options available for me. \n\n31) MadWuher: Build G3 Edora\n\n32) efwin: Trade G2 R2 Owtwolleytod\n\tefwin: OK, thanks for confirming that -- Not sure if I&#39;ll stick with the naming thing - when I had to name the first one, I thought &quot;one green dot&quot; and then just flipped each word -- but I guess &quot;green one dot&quot; or &quot;one dot green&quot; are really more accurate so maybe I&#39;ll have to switch things around the next game...\n\tMadWuher: Oh-oh. You might want to take that move back.......\r\n\r\n\n\tefwin: Thanks -- I only counted two green ships and thought I was safe (still learning)\n\n33) MadWuher: Discover G3 Edora Y1 Camelot\n\n34) efwin: Build G2 Owtwolleytod\n\n35) MadWuher: Move G1 Madwuher Edora\n\n36) efwin: Build R1 Enoneergtod\n\n37) MadWuher: Build R2 Madwuher\n\n38) efwin: Build R2 Owtwolleytod\n\n39) MadWuher: Discover R2 Madwuher B2 Dualla\n\n40) efwin: Discover G2 Owtwolleytod R3 Eerhtdertod\n\n41) MadWuher: Sacrifice G1 Edora\nBuild R3 Dualla\n\tefwin: I&#39;m thinking that the fact that you have five size 3 ships and I have one, is not so good for me\n\n42) efwin: Sacrifice Y2 Enoneergtod\nMove R1 Enoneergtod Dualla\nMove R1 Enoneergtod Dualla\nCatastrophe Dualla R\n\n43) MadWuher: Build Y2 Edora\n\n44) efwin: Discover R2 Owtwolleytod G1 Enoneergtod\n\n45) MadWuher: Move Y3 Edora Enoneergtod\n\n46) efwin: Build R1 Owtwolleytod\n\n47) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Enoneergtod\n\tefwin: Sacrifice question (v. hypothetical - I&#39;m not planning anything) -- if you sacrifice a red ship, do you affect only ships up to the size of the sacrificed red ship in the other star systems, or can you affect a ship up to the largest size of a ship you have in that star system -- for example, I foolishly move my Y3 to Bologna, can you sacrifice your R1 @ MadWuher and attack my Y3 with your Y3 there, or not?\n\tMadWuher: Here are some options:\r\nIf you move an R3 into MadWuher I can attack it without sacrificing my r1 there. I have access to the technology at my homeworld so I can use it. \r\nIf instead you get your y3 to Camelot then I cannot attack your y3 without a sacrifice because I do not have access to red at that system. By sacrificing any size red at any system I can use the red power (attacking) at any system. If I sacrifice a sized 2 red ship, then I can make two attacks (each at different systems if I&#39;d like). If I sacrifice a sized 2 ship, and I only wanted one attack action, then I type pass as my second attack action.\r\n\r\nDoes this make sense??\n\n48) efwin: Build G1 Owtwolleytod\n\n49) MadWuher: Move R3 Edora Madwuher\n\tefwin: OK, thanks -- that makes sense.  I think I was confused by the red having the size comparison aspect...  and I wasn&#39;t considering that access to technology = ability to use that technology with any ship in the system\n\n50) efwin: Build B1 Owtwolleytod\n\n51) MadWuher: Move Y3 Bologna Owtwolleytod\n\tefwin: Nice demonstration!\n\n52) efwin: Move R2 Owtwolleytod Bologna\n\tMadWuher: Always glad to show a bit of finesse, if I get the chance. =D\n\n53) MadWuher: Sacrifice Y1 Bologna\nDiscover G1 Edora Y1 Darfur\n\tefwin: Lack of yellow is going to be problematic for implementing any kind of galaxy-wide plans\n\n54) efwin: Move B1 Owtwolleytod Bologna\n\n55) MadWuher: Sacrifice R2 Enoneergtod\nAttack R1 Owtwolleytod\nAttack G2 Owtwolleytod\n\n56) efwin: Sacrifice G2 Eerhtdertod\nBuild B2 Owtwolleytod\nBuild B3 Bologna\n\n57) MadWuher: Build G2 Camelot\n\n58) efwin: Trade B3 R3 Bologna\n\n59) MadWuher: Attack B2 Owtwolleytod\n\n60) efwin: Move G1 Owtwolleytod Bologna\n\n61) MadWuher: Attack B1 Owtwolleytod\n\n62) efwin: Trade G2 R2 Efwin\n\n63) MadWuher: Build G2 Owtwolleytod\n\n64) efwin: Build R1 Efwin\n\n65) MadWuher: Move B1 Owtwolleytod Camelot\n\tefwin: Didn&#39;t seem to have any better options, but maybe I missed something\n\n66) efwin: Move R2 Efwin Darfur\n\n67) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Darfur\nBuild B3 Camelot\nBuild B3 Owtwolleytod\n\n68) efwin: Attack G1 Darfur\n\n69) MadWuher: Sacrifice R1 Owtwolleytod\nAttack R2 Darfur\n\n70) efwin: Discover G1 Darfur R3 Eerhtdertodii\n\n71) MadWuher: Move G2 Owtwolleytod Madwuher\n\n72) efwin: Build R1 Efwin\n\n73) MadWuher: Sacrifice G3 Camelot\nBuild G3 Camelot\nBuild R1 Darfur\nBuild R2 Madwuher\n\tefwin: not sure why trading an R2 for a G1 seemed like a good idea to me two moves ago....\n\n74) efwin: Move R1 Efwin Camelot\n\n75) MadWuher: Sacrifice R1 Darfur\nAttack R1 Camelot\n\n76) efwin: Build R1 Efwin\n\n77) MadWuher: Move B2 Owtwolleytod Darfur\n\tefwin: Is the goal of this game to own all of the stuff? :-)\n\n78) efwin: Move R1 Efwin Enoneergtod\n\tMadWuher: I thought I&#39;d give it a try. =)\n\n79) MadWuher: Sacrifice Y3 Owtwolleytod\nMove B1 Camelot Efwin\nMove B3 Camelot Efwin\nMove B2 Darfur Efwin\nCatastrophe Efwin B\n\n80) efwin: Sacrifice Y3 Efwin\nMove G1 Eerhtdertodii Camelot\nMove G1 Bologna Edora\nMove G1 Edora Camelot\nCatastrophe Camelot G\n\n81) MadWuher: Move G3 Darfur Efwin\n\n82) efwin: Build R3 Efwin\n\n83) MadWuher: Sacrifice G2 Madwuher\nBuild G1 Efwin\nBuild G1 Efwin\nCatastrophe Efwin G\n\tMadWuher: One down.\r\n\r\nOne to go.\n\n\tefwin: well, you&#39;ll have to do a little extra typing to win, this way :-)  Thanks for the game and the advice\n\tMadWuher: Thanks for the game.\n\nHomeworlds Online (SDG# 13101)\nStarted: 2009.4.8, Ended: 2011.2.6\nParticipants: Bubba_G (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\tBubba_G: homeworld green 3 yellow 1 3 red\n\tBubba_G: homeworld G3 Y1 3R\n\nHomeworlds Online (SDG# 13247)\nVariants: &quot;Unrated&quot;\nStarted: 2009.4.8, Ended: 2009.6.23\nParticipants: jeep (S), TwoShort (N)\nWinner: jeep\n\n1) TwoShort: Homeworld B1 R2 G3\n\n2) jeep: Homeworld B1 R2 G3\n\tjeep: Wow, didn&#39;t take fortress because you want to see if you can get out of it?  I&#39;m sure you won&#39;t have quite so many wasted moves.  ;)\n\n3) TwoShort: Pass\n\n4) jeep: Build G1 Jeep\n\tTwoShort: Well, I figured the point of playing an unrated game was to do the experiment.  If taking fortress is the way to go, then I&#39;m convinced 2nd1st is worse than 1st1st; ditto for the other opening I considered: g1b2-G3.  They might stop the one strategy, but even if they do I think they&#39;re not as good as being second in 1st1st.\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Trade G1 B1 Jeep\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) jeep: Build B2 Jeep\n\n9) TwoShort: Build Y1 Twoshort\n\n10) jeep: Trade B2 Y2 Jeep\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) jeep: Build B2 Jeep\n\n13) TwoShort: Build Y1 Grogar\n\n14) jeep: Build Y2 Jeep\n\n15) TwoShort: Build Y2 Twoshort\n\n16) jeep: Discover Y2 Jeep B3 Moon\n\n17) TwoShort: Trade Y2 B2 Twoshort\n\tjeep: I think making this a small universe was a mistake.\n\n18) jeep: Move B2 Jeep Grogar\n\tjeep: Hmm... I feel like I should go total aggro to get you out of blue again, but wonder if that is smart.  ;)\n\tTwoShort: I agree about the small universe.  If I&#39;d done it with red I could have immediately attacked everything you moved out of your Homeworld.  But in terms of going for the monopoly, Goldilocks is better because you could have built a b2 instead of your second y2, then moved to the last b2 before I got it.\n\tTwoShort: As far as the all out attack to get me out of blue again, I&#39;m refraining from comment at the insistence of my competitive nature :)\n\n19) TwoShort: Discover B2 Twoshort Y3 Yolonda\n\n20) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y3 Jeep\nBuild B2 Grogar\n\n21) TwoShort: Build Y3 Twoshort\n\n22) jeep: Sacrifice Y2 Jeep\nMove Y2 Moon Twoshort\nMove Y2 Moon Twoshort\nCatastrophe Twoshort Yellow\n\n23) TwoShort: Build G1 Twoshort\n\n24) jeep: Trade B2 R2 Grogar\n\tTwoShort: I saw that catastrophe coming and decided the net result of my build and that was a positive for me.  But, ouch! Somehow I feel much more doomed now.\n\tjeep: Nod, it was net positive for you.  Now I have three different things that I want to do... I need to determine what the right order is.\n\tjeep: Sorry, Easter yesterday and tonight is busy, so probably no move until tomorrow.\n\n25) TwoShort: Trade G1 Y1 Twoshort\n\n26) jeep: Attack Y1N Grogar\n\n27) TwoShort: Build Y2 Grogar\n\n28) jeep: Attack Y2N Grogar\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nCatastrophe Grogar Yellow\n\n30) jeep: Build B2 Grogar\n\n31) TwoShort: Trade Y3 G3 Twoshort\n\tjeep: I missed something important... oops.  Oh well.\n\n32) jeep: Build B3 Grogar\n\n33) TwoShort: Sacrifice Y2 Twoshort\nMove B2 Yolonda Twoshort\nMove B2 Twoshort Grogar\nCatastrophe Grogar Blue\n\n34) jeep: Trade Y3 G3 Jeep\n\tjeep: I forgot I needed to spend a turn to get green... boy, I suck.\n\n35) TwoShort: Build G1 Twoshort\n\n36) jeep: Build B2 Jeep\n\n37) TwoShort: Build Y1 Twoshort\n\n38) jeep: Trade B2 Y2 Jeep\n\n39) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n40) jeep: Build B2 Jeep\n\n41) TwoShort: Build Y1 Twoshort\n\n42) jeep: Discover B2 Jeep Y3 Submarine\n\n43) TwoShort: Build Y2 Twoshort\n\n44) jeep: Build B2 Jeep\n\n45) TwoShort: Discover Y1 Twoshort B3 Bonbon\n\n46) jeep: Build Y2 Jeep\n\tjeep: Sorry for the delay.  This is hard and I haven&#39;t had time to really study this.\n\n47) TwoShort: Trade Y2 B2 Twoshort\n\n48) jeep: Move B2 Jeep Grogar\n\n49) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bonbon\nBuild Y3 Twoshort\n\n50) jeep: Move Y2 Jeep Bluestar\n\n51) TwoShort: Trade Y1 R1 Bonbon\n\tjeep: You never let me complete any of my plans... I guess I need better plans.\n\n52) jeep: Sacrifice R2 Grogar\nAttack Y2N Bluestar\nAttack Y1N Bluestar\n\n53) TwoShort: Move Y1 Twoshort Bluestar\nCatastrophe Bluestar Yellow\n\n54) jeep: Build B3 Grogar\n\n55) TwoShort: Discover B2 Twoshort G3 Guessso\n\n56) jeep: Build B3 Grogar\n\n57) TwoShort: Build G1 Twoshort\n\tjeep: Hmm... Eventually, I&#39;ll figure out how to get into a situation where I can pull the trigger, but it&#39;s taking me forever to figure it out.\n\n58) jeep: Trade B2 R2 Grogar\n\n59) TwoShort: Build B2 Guessso\n\n60) jeep: Trade B3 R3 Grogar\n\tTwoShort: sorry to take so long... life has been hectic, and I keep wanting to find a good move where there isn&#39;t one...\n\tjeep: No problem.  I know the feeling.  ;)\n\tjeep: Yeah, I feel I have a couple good moves... not sure which one I want to take... immediate gain or trying to set up a checkmate.\n\n61) TwoShort: Trade Y3 R3 Bonbon\n\n62) jeep: Build B3 Grogar\n\n63) TwoShort: Build G1 Twoshort\n\tjeep: So last turn, should I have moved the two B3s into your homeworld and forced you to catastrophe them away?  I figured this forced you to spend a turn changing color and keeps me moving towards doomsday.\n\tTwoShort: I think you probably made the right choice.  One of the classic ways to blow a dominant position like yours is to use up all your piece advantage destroying half a homeworld.  You don&#39;t necessarily need to wait for a full doomsday machine, but you want to be looking at the situation after blowing up the first half, and feel like there&#39;s no way they can stop you.  And my general rule is any move that forces the opponent to make one specific move in response is probably good, because that&#39;s probably not what they wanted to be doing.\n\n64) jeep: Trade B3 Y3 Grogar\n\n65) TwoShort: Move G1 Twoshort Grogar\n\n66) jeep: Build G2 Jeep\n\n67) TwoShort: Trade B2 Y2 Guessso\n\n68) jeep: Sacrifice Y2 Jeep\nDiscover R3 Grogar Y2 Movers\nDiscover Y3 Grogar G2 Shakers\n\tjeep: Sorry, thinking.\n\tjeep: Or, more accurately, waiting for some time to think... should move tomorrow.\n\tTwoShort: No rush\n\n69) TwoShort: Build B2 Guessso\n\tjeep: I almost didn&#39;t check tonight.  Sorry for the delay, we&#39;re two weeks behind schedule and I have family in town. ;)\n\n70) jeep: Build B3 Grogar\n\n71) TwoShort: Sacrifice G1 Grogar\nBuild R1 Bonbon\n\n72) jeep: Move R3 Movers Bonbon\nCatastrophe Bonbon Red\n\n73) TwoShort: Sacrifice Y2 Guessso\nMove B2 Guessso Jeep\nMove B2 Guessso Jeep\nCatastrophe Jeep Blue\n\n74) jeep: Sacrifice G2 Jeep\nBuild B1 Submarine\nBuild B1 Submarine\n\n75) TwoShort: Trade G1 R1 Twoshort\n\n76) jeep: Sacrifice Y3 Shakers\nMove B3 Grogar Twoshort\nMove B3 Grogar Twoshort\nMove B2 Submarine Jeep\n\n\tTwoShort: good game!\n\tjeep: Thanks, it was a good game.  I think that is a decent handicap for us.  ;)  I still had to think to get the win and you were able to hold out for a long time.  I think that it shows that 2nd1st is pretty unbalanced.\n\nHomeworlds Online (SDG# 13102)\nStarted: 2009.4.9, Ended: 2009.4.22\nParticipants: TwoShort (S), Orl (N)\nWinner: TwoShort\n\n1) Orl: Homeworld B2 Y1 G3\n\tTwoShort: Howdy\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Orl: Build G1 Orl\n\tOrl: Hi, have a good game!\n\n4) TwoShort: Build G1 Twoshort\n\n5) Orl: Discover G1 Orl B3 Nova\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Orl: Build G1 Nova\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Orl: Build G1 Nova\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) Orl: Build G2 Orl\n\n12) TwoShort: Build Y2 Grogar\n\n13) Orl: Trade G2 Y2 Orl\n\n14) TwoShort: Build G2 Twoshort\n\n15) Orl: Trade G1 R1 Nova\n\n16) TwoShort: Discover Y2 Grogar B3 Bluestar\n\n17) Orl: Move Y2 Orl Nova\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\n19) Orl: Build Y3 Nova\n\n20) TwoShort: Sacrifice Y2 Bluestar\nMove Y1 Grogar Nova\nMove Y2 Grogar Nova\nCatastrophe Nova Yellow\n\n21) Orl: Trade G1 Y1 Nova\n\n22) TwoShort: Build Y2 Twoshort\n\n23) Orl: Build Y2 Nova\n\n24) TwoShort: Discover Y1 Twoshort B2 Bonanza\n\n25) Orl: Build G1 Nova\n\n26) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bonanza\n\n27) Orl: Trade G1 B1 Nova\n\n28) TwoShort: Trade Y2 R2 Bluestar\n\n29) Orl: Build G1 Orl\n\n\n30) TwoShort: Trade Y3 G3 Bonanza\n\n31) Orl: Move Y1 Nova Orl\n\n\tTwoShort: Red Alert\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Bonanza Bluestar\nMove G3 Bluestar Orl\nMove Y3 Bluestar Orl\n\n33) Orl: Move R1 Nova Orl\n\n34) TwoShort: Sacrifice R2 Bluestar\nAttack G3 Orl\nAttack R1 Orl\n\n35) Orl: Move G1 Nova Orl\nCatastrophe Orl G\n\n36) TwoShort: Attack Y1 Orl\n\tOrl: good game. I have to learn more this game...\n\tTwoShort: Thanks for the game.\n\n\nHomeworlds Online (SDG# 13253)\nStarted: 2009.4.11, Ended: 2009.5.2\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\tagentofchaos: Hi again, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) TwoShort: Build G1 Twoshort\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) TwoShort: Build G1 Twoshort\n\n9) agentofchaos: Discover Y1 Agentofchaos G3 Myxo\n\n10) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n11) agentofchaos: Trade G1 R1 Agentofchaos\n\n12) TwoShort: Build Y1 Twoshort\n\n13) agentofchaos: Build Y2 Myxo\n\n14) TwoShort: Move Y1 Twoshort Bluestar\n\n15) agentofchaos: Build R1 Agentofchaos\n\n16) TwoShort: Build Y2 Bluestar\n\n17) agentofchaos: Move Y2 Myxo Bluestar\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\nBuild Y3 Twoshort\nCatastrophe Bluestar Yellow\n\n19) agentofchaos: Trade R1 Y1 Agentofchaos\n\n20) TwoShort: Trade Y3 G3 Twoshort\n\n21) agentofchaos: Build Y2 Myxo\n\n22) TwoShort: Move Y3 Twoshort Bluestar\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) TwoShort: Discover G1 Bluestar Y3 Yolonda\n\n25) agentofchaos: Trade Y1 B1 Agentofchaos\n\n26) TwoShort: Build G1 Twoshort\n\n27) agentofchaos: Build G1 Agentofchaos\n\n28) TwoShort: Build G2 Yolonda\n\n29) agentofchaos: Discover G1 Agentofchaos Y3 Zurvan\n\n30) TwoShort: Move G1 Yolonda Bluestar\n\n31) agentofchaos: Discover Y2 Myxo B2 Seti\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n33) agentofchaos: Move R1 Agentofchaos Myxo\n\n34) TwoShort: Trade G2 R2 Bluestar\n\n35) agentofchaos: Move Y1 Myxo Seti\n\n36) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n37) agentofchaos: Build Y2 Agentofchaos\n\n38) TwoShort: Trade G1 B1 Bluestar\n\n39) agentofchaos: Trade Y1 G1 Seti\n\n40) TwoShort: Move B1 Bluestar Yolonda\n\n41) agentofchaos: Move B1 Agentofchaos Zurvan\n\n42) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Yolonda\nBuild B3 Yolonda\nBuild G3 Twoshort\n\n43) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Zurvan Seti\nMove B1 Seti Yolonda\nCatastrophe Yolonda B\n\n44) TwoShort: Trade Y1 B1 Bluestar\n\n45) agentofchaos: Build Y1 Seti\n\n46) TwoShort: Move G2 Bluestar Zurvan\n\n47) agentofchaos: Trade G3 R3 Agentofchaos\n\n48) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Zurvan\nBuild G3 Yolonda\n\n49) agentofchaos: Discover G1 Zurvan Y2 Titan\n\n50) TwoShort: Trade G1 B1 Twoshort\n\n51) agentofchaos: Build G1 Titan\n\n52) TwoShort: Sacrifice G2 Yolonda\nBuild B3 Bluestar\nBuild B3 Twoshort\n\n53) agentofchaos: Build G2 Seti\n\n54) TwoShort: Sacrifice Y3 Bluestar\nMove B3 Bluestar Yolonda\nMove B3 Yolonda Agentofchaos\nMove G3 Yolonda Agentofchaos\n\n55) agentofchaos: Attack B3 Agentofchaos\n\n56) TwoShort: Sacrifice R2 Bluestar\nAttack R3 Agentofchaos\nAttack B3 Agentofchaos\n\n57) agentofchaos: Sacrifice G2 Seti\nBuild Y1 Agentofchaos\nBuild Y3 Agentofchaos\n\n58) TwoShort: Trade B3 Y3 Agentofchaos\nCatastrophe Agentofchaos Yellow\n\tagentofchaos: gg\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 13193)\nStarted: 2009.4.13, Ended: 2009.4.30\nParticipants: ts52 (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) ts52: Homeworld R2 B3 G3\n\n3) jeep: Build G1 Jeep\n\tts52: Have a good game!\n\tjeep: You too.\n\n4) ts52: Build G1 Ts52\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) jeep: Build G1 Jeep\n\n8) ts52: Build G1 Ts52\n\n9) jeep: Discover G1 Jeep B3 Moon\n\n10) ts52: Discover G1 Ts52 B1 Grover\n\n11) jeep: Discover Y1 Jeep G3 Thumb\n\n12) ts52: Move Y1 Ts52 Grover\n\n13) jeep: Build G1 Moon\n\n14) ts52: Build G2 Ts52\n\n15) jeep: Trade G1 Y1 Moon\n\tjeep: BAH!  That was supposed to be build in jeep, not Moon... *sigh*  sloppy\n\n16) ts52: Build Y2 Grover\n\n17) jeep: Build Y2 Moon\n\n18) ts52: Move Y1 Grover Ts52\n\n19) jeep: Build G1 Jeep\n\n20) ts52: Build G2 Grover\n\n21) jeep: Trade G1 R1 Jeep\n\n22) ts52: Trade G1 R1 Grover\n\n23) jeep: Build G1 Jeep\n\n24) ts52: Build R2 Grover\n\n25) jeep: Move Y1 Moon Jeep\n\n26) ts52: Discover R2 Grover Y3 Bigbird\n\n27) jeep: Sacrifice G3 Jeep\nBuild Y2 Thumb\nBuild Y3 Moon\nBuild Y3 Jeep\n\n28) ts52: Discover R1 Grover G3 Kermit\n\n29) jeep: Move Y3 Moon Grover\n\n30) ts52: Move Y2 Grover Kermit\n\n31) jeep: Sacrifice R1 Jeep\nAttack G2S Grover\n\n32) ts52: Discover G2 Ts52 B1 Gonzo\n\n33) jeep: Build G1 Grover\n\n34) ts52: Build G2 Gonzo\n\n35) jeep: Discover G1 Moon B1 Stage\n\n36) ts52: Trade G3 R3 Ts52\n\n37) jeep: Build G3 Stage\n\n38) ts52: Move Y2 Kermit Gonzo\n\n39) jeep: Trade G2 R2 Grover\n\n40) ts52: Sacrifice G2 Gonzo\nBuild R1 Kermit\nBuild R3 Bigbird\n\n41) jeep: Sacrifice G3 Stage\nBuild G2 Grover\nBuild G2 Stage\nBuild G3 Jeep\n\n42) ts52: Move R3 Bigbird Stage\n\n43) jeep: Sacrifice G2 Stage\nBuild R3 Grover\nBuild G2 Grover\n\n44) ts52: Sacrifice Y2 Gonzo\nMove R1 Kermit Grover\nMove R1 Kermit Grover\nCatastrophe Grover Red\n\n45) jeep: Trade G2 R2 Grover\n\n46) ts52: Build G2 Gonzo\n\n47) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Grover\nBuild Y2 Grover\n\n48) ts52: Attack G1 Stage\n\n49) jeep: Build R1 Grover\n\n50) ts52: Sacrifice Y1 Ts52\nMove R3 Stage Thumb\n\n51) jeep: Sacrifice Y2 Thumb\nMove R1 Grover Ts52\nMove R2 Grover Ts52\nCatastrophe Ts52 Red\n\tjeep: Thanks for the game.\n\tts52: Thanks. Good game. \n\tjeep: Want to play again?\n\tts52: Sure, I&#39;d be happy to play again.\n\n\nHomeworlds Online (SDG# 13105)\nStarted: 2009.4.13, Ended: 2009.6.16\nParticipants: jeep (S), MadWuher (N)\nWinner: jeep\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) jeep: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) jeep: Build G1 Jeep\n\tjeep: Heh, oops, I didn&#39;t mean to create a small universe... I meant to go goldilocks. This will be interesting.\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) jeep: Trade G1 Y1 Jeep\n\tMadWuher: I am so unprepared for the small universe start. Well, it should be interesting. \n\n7) MadWuher: Build G1 Madwuher\n\n8) jeep: Build G1 Jeep\n\n9) MadWuher: Discover G1 Madwuher Y3 Edora\n\n10) jeep: Discover G1 Jeep Y3 Submarine\n\n11) MadWuher: Build G1 Madwuher\n\n12) jeep: Build G2 Jeep\n\n13) MadWuher: Trade G1 B1 Madwuher\n\n14) jeep: Discover G2 Jeep B3 Moon\n\n15) MadWuher: Build G1 Madwuher\n\n16) jeep: Move G1 Submarine Madwuher\n\n17) MadWuher: Trade G3 Y3 Madwuher\n\n18) jeep: Build G2 Moon\n\tjeep: Bah! I was going to factory... but forgot I can&#39;t put another green in my homeworld.\n\n19) MadWuher: Attack G1 Madwuher\n\n20) jeep: Trade G2 Y2 Moon\n\n21) MadWuher: Build G2 Edora\n\n22) jeep: Build G2 Moon\n\n23) MadWuher: Trade G1 R1 Madwuher\n\n24) jeep: Build Y1 Moon\n\n25) MadWuher: Discover Y1 Madwuher G3 Bologna\n\n26) jeep: Trade Y1 R1 Moon\n\n27) MadWuher: Move R1 Madwuher Edora\n\n28) jeep: Sacrifice G2 Moon\nBuild Y1 Moon\nBuild Y2 Moon\n\n29) MadWuher: Build Y2 Bologna\n\n30) jeep: Build Y3 Jeep\n\n31) MadWuher: Build R2 Edora\n\n32) jeep: Build R2 Moon\n\n33) MadWuher: Discover R2 Edora B1 Camelot\n\n34) jeep: Move Y1 Moon Madwuher\n\n35) MadWuher: Attack Y1 Madwuher\n\n36) jeep: Sacrifice Y3 Jeep\nMove Y2 Moon Madwuher\nMove Y2 Moon Madwuher\nMove G2 Moon Madwuher\nCatastrophe Madwuher Yellow\n\n37) MadWuher: Sacrifice G2 Edora\nBuild G1 Madwuher\nBuild G2 Madwuher\nCatastrophe Madwuher G\n\n38) jeep: Sacrifice Y1 Jeep\nMove R2 Moon Madwuher\n\n39) MadWuher: Sacrifice Y2 Bologna\nMove R2 Camelot Bologna\nMove R2 Bologna Madwuher\n\tMadWuher: The small universe start really threw me. No chance to recover since then. =)\n\n40) jeep: Attack R2N Madwuher\n\n41) MadWuher: Move R1 Edora Madwuher\nCatastrophe Madwuher R\n\n42) jeep: Build G1 Jeep\n\n43) MadWuher: Build Y1 Bologna\n\tjeep: Yeah, it&#39;s quite the uphill battle for you now. I&#39;m good at screwing up won positions, though.\n\n44) jeep: Trade G1 Y1 Jeep\n\n45) MadWuher: Trade B1 R1 Madwuher\n\n46) jeep: Build Y2 Jeep\n\n47) MadWuher: Move Y1 Bologna Madwuher\n\n48) jeep: Sacrifice Y1 Jeep\nDiscover Y2 Jeep G3 Thumb\n\n49) MadWuher: Build G1 Edora\n\n50) jeep: Move Y2 Thumb Madwuher\n\n51) MadWuher: Sacrifice G1 Edora\nBuild R1 Madwuher\n\tjeep: Sorry for the delay.\n\tMadWuher: Not a problem. \n\n52) jeep: Build G1 Jeep\n\n53) MadWuher: Build G1 Edora\n\n54) jeep: Trade G3 R3 Jeep\n\n55) MadWuher: Sacrifice G1 Edora\nBuild R2 Madwuher\n\n56) jeep: Sacrifice R3 Jeep\nAttack R1N Madwuher\nAttack R1N Madwuher\nAttack R2N Madwuher\n\n\tMadWuher: Thanks for the game. I was trying to think of what I could do to stave off elimination, but to no avail.\n\tjeep: Thanks for the game.\n\nHomeworlds Online (SDG# 13173)\nVariants: &quot;Hard time&quot;\nStarted: 2009.4.14, Ended: 2009.4.30\nParticipants: Wheatberry (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tJesse: Hello, and have a good game.\n\n2) Wheatberry: Homeworld R2 G1 B3\n\n3) Jesse: Build G1 Jesse\n\n\tWheatberry: Hi, Jesse. Back atcha. :)\n\n4) Wheatberry: Build B1 Wheatberry\n\tJesse: It&#39;s generally not a good idea to make your small system marker the same color as your opponent&#39;s ship.  This will quickly make it difficult for you to get into green.\n\n5) Jesse: Build G1 Jesse\n\tWheatberry: Hrm, thanks. I&#39;ll remember that next time...\n\n6) Wheatberry: Trade B1 Y1 Wheatberry\n\n7) Jesse: Trade G3 Y3 Jesse\n\n8) Wheatberry: Build Y1 Wheatberry\n\n9) Jesse: Discover G1 Jesse B2 Disc\n\n10) Wheatberry: Trade B3 G3 Wheatberry\n\n11) Jesse: Build G2 Jesse\n\tWheatberry: Hmm... that&#39;s not going to work either... this is a miserable start.\n\n12) Wheatberry: Discover G3 Wheatberry B3 Donjon\n\n13) Jesse: Build G2 Disc\n\tWheatberry: When in doubt, try something crazy... :)\n\n14) Wheatberry: Build G2 Donjon\n\n15) Jesse: Sacrifice Y3 Jesse\nMove G2 Jesse Disc\nMove G1 Disc Donjon\nMove G2 Disc Donjon\nCatastrophe Donjon G\n\n16) Wheatberry: Discover Y1 Wheatberry B3 Deep\n\n17) Jesse: Build G1 Disc\n\n\n18) Wheatberry: Build Y1 Wheatberry\n\n19) Jesse: Build G2 Jesse\n\n\n20) Wheatberry: Build Y2 Wheatberry\n\n21) Jesse: Build G2 Jesse\n\n22) Wheatberry: Trade Y1 B1 Deep\n\n23) Jesse: Build G3 Disc\n\n24) Wheatberry: Move Y1 Wheatberry Deep\n\n25) Jesse: Trade G3 Y3 Disc\n\n26) Wheatberry: Move B1 Deep Wheatberry\n\n27) Jesse: Discover G2 Disc Y3 Ring\n\n28) Wheatberry: Trade Y1 R1 Wheatberry\n\n29) Jesse: Build G3 Disc\n\n30) Wheatberry: Build Y1 Wheatberry\n\n31) Jesse: Sacrifice G3 Disc\nBuild G3 Disc\nBuild G3 Ring\nBuild G3 Disc\n\n\tWheatberry: Pah, no point in playing out this massacre from here. I won&#39;t be able to build a large ship in time to stop you from sweeping my homeworld. Well done.\n\nHomeworlds Online (SDG# 13196)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.4.14, Ended: 2009.5.5\nParticipants: agentofchaos (S), Mouce (N)\nWinner: Mouce\n\n1) Mouce: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) Mouce: Build G1 Mouce\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Mouce: Discover G1 Mouce B3 Hole\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Mouce: Build G1 Hole\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Mouce: Trade G1 Y1 Hole\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) Mouce: Build Y2 Hole\n\n12) agentofchaos: Discover Y2 Agentofchaos G2 Galdr\n\n13) Mouce: Move Y1 Hole Galdr\n\n14) agentofchaos: Trade Y1 R1 Agentofchaos\n\n15) Mouce: Discover Y1 Galdr B3 Twitch\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) Mouce: Build G1 Mouce\n\n18) agentofchaos: Move G1 Agentofchaos Galdr\n\n19) Mouce: Build G2 Hole\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) Mouce: Move G1 Hole Galdr\n\n22) agentofchaos: Discover G1 Galdr Y3 Spunk\n\n23) Mouce: Build G3 Hole\n\n24) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Galdr\nBuild Y3 Agentofchaos\nBuild G3 Spunk\n\n25) Mouce: Trade G3 R3 Mouce\n\tagentofchaos: &#39;Abstract wrestling&#39; - that&#39;s a clever way of describing this game, quite apt. \n\n26) agentofchaos: Trade Y1 B1 Agentofchaos\n\n27) Mouce: Sacrifice G3 Hole\nBuild G3 Hole\nBuild Y1 Hole\nBuild Y3 Twitch\n\n28) agentofchaos: Sacrifice G3 Spunk\nBuild G3 Agentofchaos\nBuild B1 Agentofchaos\nBuild G3 Spunk\n\n29) Mouce: Sacrifice Y1 Twitch\nMove G1 Galdr Agentofchaos\n\n30) agentofchaos: Move G2 Agentofchaos Galdr\n\n31) Mouce: Sacrifice G2 Hole\nBuild G2 Agentofchaos\nBuild R1 Mouce\n\n32) agentofchaos: Discover G3 Agentofchaos R2 Panik\n\n33) Mouce: Trade G2 B2 Agentofchaos\nCatastrophe Agentofchaos Blue\n\n34) agentofchaos: Attack G1 Agentofchaos\n\n35) Mouce: Trade Y2 R2 Hole\n\n36) agentofchaos: Move R1 Agentofchaos Spunk\n\n37) Mouce: Build R2 Hole\n\n38) agentofchaos: Build R3 Spunk\n\n39) Mouce: Sacrifice Y3 Twitch\nMove R2 Hole Agentofchaos\nMove R2 Hole Agentofchaos\nMove R1 Mouce Hole\n\n40) agentofchaos: Attack R2 Agentofchaos\n\tMouce: Glad you started yet another game! I look forward to it.\n\n41) Mouce: Move R1 Hole Agentofchaos\nCatastrophe Agentofchaos Red\n\tagentofchaos: Looks like the end is nigh! I&#39;m hoping I&#39;ll do better in our other game. :-)\n\n\nHomeworlds Online (SDG# 13344)\nVariants: &quot;Hard time&quot;\nStarted: 2009.4.23, Ended: 2009.8.6\nParticipants: fnord (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld B2 G3 Y3\n\n2) fnord: Homeworld Y1 B2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) fnord: Build G1 Fnord\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) fnord: Discover G1 Fnord B3 Eris\n\n7) Subhan64: Build Y1 Subhan64\n\n8) fnord: Build G1 Eris\n\n9) Subhan64: Build G2 Subhan64\n\n10) fnord: Trade G1 Y1 Eris\n\n11) Subhan64: Trade G2 R2 Subhan64\n\n12) fnord: Build G1 Fnord\n\n13) Subhan64: Build G2 Subhan64\n\n14) fnord: Sacrifice G3 Fnord\nBuild G2 Fnord\nBuild G2 Fnord\nBuild G3 Eris\n\n15) Subhan64: Discover Y1 Subhan64 B1 Vogon12\n\n16) fnord: Trade G2 R2 Fnord\n\n17) Subhan64: Build Y2 Subhan64\n\n18) fnord: Trade Y1 R1 Eris\n\n19) Subhan64: Trade G2 R2 Subhan64\n\n20) fnord: Build R1 Fnord\n\n21) Subhan64: Trade Y3 R3 Subhan64\n\n22) fnord: Trade G1 B1 Fnord\n\n23) Subhan64: Move R3 Subhan64 Vogon12\n\n24) fnord: Trade G1 Y1 Eris\n\tfnord: Gah!  Thank you, for unknowingly pointing out a misunderstanding I&#39;ve had in the ruled for quite a long time!\n\n25) Subhan64: Sacrifice Y2 Subhan64\nMove R3 Vogon12 Eris\nMove R3 Eris Fnord\n\n26) fnord: Sacrifice Y1 Eris\nMove R1 Eris Fnord\nCatastrophe Fnord Red\n\n27) Subhan64: Trade R2 Y2 Subhan64\n\n28) fnord: Build G1 Eris\n\n29) Subhan64: Move R2 Subhan64 Vogon12\n\n30) fnord: Trade G2 R2 Fnord\n\n31) Subhan64: Move R2 Vogon12 Eris\n\n32) fnord: Trade G1 Y1 Eris\n\n33) Subhan64: Attack Y1 Eris\n\n34) fnord: Trade R2 Y2 Fnord\n\n35) Subhan64: Move R2 Eris Fnord\n\n36) fnord: Sacrifice Y2 Fnord\nMove G3 Eris Fnord\nPass\n\n37) Subhan64: Build Y2 Subhan64\n\n38) fnord: Trade G3 R3 Fnord\n\n39) Subhan64: Sacrifice Y2 Subhan64\nMove R2 Fnord Eris\nMove R2 Eris Vogon12\n\n40) fnord: Trade B1 G1 Fnord\n\n41) Subhan64: Build Y2 Subhan64\n\n42) fnord: Build G1 Fnord\n\n43) Subhan64: Build G2 Subhan64\n\n44) fnord: Build G2 Fnord\n\n45) Subhan64: Move G1 Subhan64 Vogon12\n\n46) fnord: Move G2 Fnord Eris\n\n47) Subhan64: Trade Y2 R2 Subhan64\n\n48) fnord: Build G2 Eris\n\n49) Subhan64: Trade G1 R1 Vogon12\n\n50) fnord: Trade G2 Y2 Eris\n\n51) Subhan64: Move R2 Vogon12 Eris\n\n52) fnord: Move R3 Fnord Eris\n\n53) Subhan64: Sacrifice Y2 Subhan64\nMove R1 Vogon12 Eris\nMove R1 Eris Fnord\n\n54) fnord: Move Y2 Eris Fnord\n\n55) Subhan64: Move R2 Eris Fnord\n\n56) fnord: Sacrifice G2 Eris\nBuild Y2 Fnord\nBuild G1 Fnord\n\n57) Subhan64: Move Y1 Eris Fnord\nCatastrophe Fnord Yellow\n\n58) fnord: Trade R3 Y3 Eris\n\n59) Subhan64: Trade R2 G2 Fnord\nCatastrophe Fnord Green\n\n\tSubhan64: GG, thanks!\n\tfnord: Thanks for the game.  I think I&#39;m learning more, bit by bit, but this is a dense game.\n\tSubhan64: yeah, there&#39;s a lot going on!\n\nHomeworlds Online (SDG# 13279)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 13361)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13362)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13363)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13364)\nStarted: 2009.4.28, Ended: 2009.5.2\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13365)\nStarted: 2009.4.28, Ended: 2009.5.2\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13277)\nVariants: &quot;Hard time&quot;\nStarted: 2009.4.29, Ended: 2009.5.10\nParticipants: CheshireSwift (S), headphoned (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) headphoned: Homeworld G1 B2 Y3\n\tagentofchaos: Hi everybody, thanks for playing, enjoy the game :-)\n\tCheshireSwift: You too!\n\n2) agentofchaos: Homeworld R3 B1 G3\n\theadphoned: I apologise in advance if I&#39;m not very good. I can never talk anyone into playing icehouse games with me in real life, so this is my first time trying out Homeworlds. :)\n\tagentofchaos: Don&#39;t worry if you&#39;re not too good, I&#39;ve only played a few games on this site, myself. The main thing is to have fun! :-)\n\n3) CheshireSwift: Homeworld G2 Y3 B3\n\tCheshireSwift: Well that makes two and a half of us, this is my first game too...\n\n4) headphoned: Build Y1 Headphoned\n\n5) agentofchaos: Build G1 Agentofchaos\n\tCheshireSwift: Eep. Not a good start =P\n\n6) CheshireSwift: Build B1 Cheshireswift\n\n7) headphoned: Discover Y1 Headphoned G3 Copernicus\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) CheshireSwift: Discover B1 Cheshireswift Y1 Aleph\n\n10) headphoned: Build Y1 Headphoned\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) CheshireSwift: Discover B1 Aleph G2 Bet\n\n13) headphoned: Discover Y1 Copernicus R2 Elektro\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\n15) CheshireSwift: Trade B1 G1 Bet\n\n16) headphoned: Trade Y1 R1 Headphoned\n\n17) agentofchaos: Move R1 Agentofchaos Bet\n\n18) CheshireSwift: Build B1 Cheshireswift\n\n19) headphoned: Build R1 Headphoned\n\n20) agentofchaos: Attack G1S Bet\n\n21) CheshireSwift: Trade B1 G1 Cheshireswift\n\n22) headphoned: Trade R1 G1 Headphoned\n\n23) agentofchaos: Build Y1 Agentofchaos\n\n24) CheshireSwift: Build G2 Cheshireswift\n\n25) headphoned: Build G2 Headphoned\n\n26) agentofchaos: Build G3 Agentofchaos\n\n27) CheshireSwift: Build G3 Cheshireswift\n\n28) headphoned: Build R1 Headphoned\nCatastrophe Cheshireswift G\n\n29) agentofchaos: Move Y1 Agentofchaos Bet\n\n30) CheshireSwift: Trade B3 G3 Cheshireswift\n\n31) headphoned: Build Y1 Headphoned\n\n32) agentofchaos: Build Y2 Bet\n\n33) CheshireSwift: Build G1 Cheshireswift\n\n34) headphoned: Sacrifice G2 Headphoned\nBuild G2 Headphoned\nBuild Y2 Headphoned\n\n35) agentofchaos: Sacrifice Y2 Bet\nDiscover G1 Bet R3 Mjolnir\nMove G1 Mjolnir Headphoned\nCatastrophe Headphoned G\n\n36) CheshireSwift: Move G1 Cheshireswift Elektro\n\n37) headphoned: Move Y1 Elektro Cheshireswift\n\n38) agentofchaos: Move Y1 Agentofchaos Headphoned\nCatastrophe Headphoned Y\n\n39) CheshireSwift: Sacrifice G1 Elektro\nBuild G1 Cheshireswift\n\n40) headphoned: Trade R1 Y1 Headphoned\n\n41) agentofchaos: Sacrifice Y1 Bet\nMove G3 Agentofchaos Headphoned\n\n42) CheshireSwift: Move G1 Cheshireswift Headphoned\n\n43) headphoned: Sacrifice R1 Headphoned\nAttack G1S Headphoned\n\n44) agentofchaos: Trade G3 R3 Headphoned\n\n45) CheshireSwift: Build G1 Cheshireswift\n\n46) headphoned: Sacrifice G1 Headphoned\nBuild Y1 Cheshireswift\n\n47) agentofchaos: Attack Y1N Headphoned\n\n48) agentofchaos: Pass\n\n49) CheshireSwift: Move G1 Cheshireswift Headphoned\n\n50) agentofchaos: Move Y1 Headphoned Cheshireswift\nCatastrophe Cheshireswift Y\n\n\tagentofchaos: Thanks for a fun game guys! :-)\n\tCheshireSwift: Likewise :)\n\nHomeworlds Online (SDG# 13276)\nStarted: 2009.4.29, Ended: 2009.7.7\nParticipants: MadWuher (S), dethdukk (N)\nWinner: MadWuher\n\n1) dethdukk: Homeworld B1 Y3 G3\n\n2) MadWuher: Homeworld B1 G2 B3 *\n\n3) dethdukk: Build G1 Dethdukk\n\tdethdukk: sorry about that... I didnt get an email letting me know it was my turn\n\n4) MadWuher: Build B1 Madwuher\n\tMadWuher: Not a problem\r\n\n\n5) dethdukk: Trade G3 B3 Dethdukk\n\n6) MadWuher: Trade B3 Y3 Madwuher\n\n7) dethdukk: Build B2 Dethdukk\n\tdethdukk: yeah, twoshort used this same strategy... I think I can break it if I stop you from locking me out.\n\n8) MadWuher: Build B2 Madwuher\n\n9) dethdukk: Discover B2 Dethdukk Y2 Time\n\n10) MadWuher: Discover B2 Madwuher G3 Edora\n\n11) dethdukk: Move B2 Time Edora\n\n12) MadWuher: Trade B1 R1 Madwuher\n\n13) dethdukk: Build B1 Edora\n\n14) MadWuher: Trade B2 R2 Edora\n\n\nHomeworlds Online (SDG# 13375)\nStarted: 2009.4.30, Ended: 2009.6.3\nParticipants: TwoShort (S), dethdukk (N)\nWinner: TwoShort\n\n1) dethdukk: Homeworld B1 Y3 G3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\n3) dethdukk: Build G1 Dethdukk\n\tdethdukk: taking a handicap?  or just trying a strategy?\n\n4) TwoShort: Build B1 Twoshort\n\tTwoShort: Demonstrating the error in taking a b1 star as first player. :)\n\n5) dethdukk: Build G1 Dethdukk\n\tdethdukk: hm...  never seen this one.  should be interesting.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) dethdukk: Discover G1 Dethdukk Y2 Launch\n\tTwoShort: It&#39;s a wacky tactic (which I&#39;m inherently a sucker for), and at least reverses the 1st player advantage.  Looking at it now, it appears it is actually slightly less devastating since you started with Goldilocks and not Banker.\n\n8) TwoShort: Build B2 Twoshort\n\n9) dethdukk: Build G1 Dethdukk\n\n10) TwoShort: Discover B2 Twoshort G3 Greed\n\n11) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Launch\nBuild G2 Launch\nBuild G3 Dethdukk\n\n12) TwoShort: Build B2 Twoshort\n\n13) dethdukk: Discover G1 Launch Y3 Point\n\n14) TwoShort: Discover B1 Twoshort G3 Grogar\n\n15) dethdukk: Discover G1 Dethdukk Y2 Move\n\n16) TwoShort: Build B2 Grogar\n\n17) dethdukk: Discover G2 Launch B3 Trader\n\n18) TwoShort: Build B3 Grogar\n\n19) dethdukk: Discover G2 Launch B3 Pull\n\n20) TwoShort: Trade B2 R2 Grogar\n\n21) dethdukk: Trade G2 R2 Pull\n\n22) TwoShort: Build B2 Grogar\n\n23) dethdukk: Build G2 Move\n\n24) TwoShort: Trade B2 Y2 Grogar\n\tdethdukk: hm.  it is interesting.  I wouldnt have thought you could lock me down quite that easily.  I probably should have explored medium greens and gotten some G3 ships before you locked them into worlds\n\n25) dethdukk: Move G2 Move Pull\n\tTwoShort: Meanwhile, I&#39;ve been thinking this strategy is really tough to pull off starting from banker; I usually do it from Goldilocks so I&#39;m able to move out to a b2 and lock them down a turn faster.  \n\n26) TwoShort: Build B2 Grogar\n\n27) dethdukk: Build R1 Pull\n\n28) TwoShort: Move B2 Grogar Move\n\n29) dethdukk: Trade R2 Y2 Pull\n\n30) TwoShort: Sacrifice B2 Greed\nTrade B3 G3 Grogar\nTrade B2 R2 Move\n\n31) dethdukk: Build Y1 Pull\n\n32) TwoShort: Attack G1 Move\n\n33) dethdukk: Trade G3 R3 Dethdukk\n\n34) TwoShort: Build G3 Move\n\n35) dethdukk: Build R1 Pull\n\n36) TwoShort: Discover G3 Grogar B2 Boomer\n\tdethdukk: so MadWuher tried using this same strategy with the game I am in with him...  unless I am mistaken (which I might be) I believe I have escaped it by trading my G3 starting ship for a B3.\n\n37) dethdukk: Discover Y1 Pull Y1 Mobile\n\tTwoShort: Nice work.  It&#39;s clear that this opening isn&#39;t effective vs. as many first player homeworlds as I previously thought.\n\n38) TwoShort: Sacrifice G3 Move\nBuild B2 Grogar\nBuild B3 Grogar\nBuild G3 Move\n\n\tdethdukk: ya got me, not much I can do about it now.  good game, I learned a lot that I should be able to use.\n\nHomeworlds Online (SDG# 13366)\nStarted: 2009.5.1, Ended: 2009.5.4\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13384)\nStarted: 2009.5.1, Ended: 2009.5.4\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13288)\nVariants: &quot;Hard time&quot;\nStarted: 2009.5.2, Ended: 2009.5.30\nParticipants: heavytanhat (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) heavytanhat: Homeworld G1 B3 Y3\n\theavytanhat: homeworld b1 b3 y3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) heavytanhat: Build Y1 Heavytanhat\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) heavytanhat: Discover Y1 Heavytanhat G2 Halver\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) heavytanhat: Build Y1 Halver\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) heavytanhat: Build Y2 Heavytanhat\n\n11) agentofchaos: Discover Y2 Agentofchaos G3 Axolotl\n\n12) heavytanhat: Trade Y2 G2 Heavytanhat\n\n13) agentofchaos: Build Y2 Axolotl\n\n14) heavytanhat: Trade Y3 G3 Heavytanhat\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) heavytanhat: Move Y1 Halver Heavytanhat\n\n17) agentofchaos: Build Y3 Agentofchaos\n\n\nHomeworlds Online (SDG# 13385)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13283)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.5.4, Ended: 2009.5.27\nParticipants: Mouce (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n2) Mouce: Homeworld Y1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Mouce: Build G1 Mouce\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Mouce: Build G1 Mouce\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Mouce: Discover G1 Mouce B3 Crumbz\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Mouce: Build G1 Crumbz\n\n11) agentofchaos: Discover Y2 Agentofchaos B1 Ghost\n\n12) Mouce: Build G2 Crumbz\n\n13) agentofchaos: Build G2 Agentofchaos\n\n14) Mouce: Trade G2 Y2 Crumbz\n\n15) agentofchaos: Move G2 Agentofchaos Ghost\n\n16) Mouce: Discover G1 Crumbz B1 Nibble\n\n17) agentofchaos: Sacrifice G2 Ghost\nBuild Y2 Agentofchaos\nBuild Y3 Ghost\n\n18) Mouce: Build Y3 Crumbz\n\n19) agentofchaos: Trade Y3 R3 Ghost\n\n20) Mouce: Trade G1 R1 Mouce\n\n21) agentofchaos: Trade Y2 G2 Agentofchaos\n\n22) Mouce: Move Y3 Crumbz Nibble\n\n23) agentofchaos: Move G2 Agentofchaos Ghost\n\n24) Mouce: Build G1 Mouce\n\n25) agentofchaos: Build G2 Agentofchaos\n\n\nHomeworlds Online (SDG# 13394)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 13395)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13396)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13397)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13398)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13399)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13400)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13401)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13266)\nStarted: 2009.5.4, Ended: 2009.5.6\nParticipants: TwoShort (S), headphoned (N)\nWinner: TwoShort\n\n1) headphoned: Homeworld B3 G1 Y3\n\n2) TwoShort: Homeworld B1 R2 G3\n\tTwoShort: Howdy\n\n3) headphoned: Build Y1 Headphoned\n\n4) TwoShort: Build G1 Twoshort\n\n5) headphoned: Trade Y1 B1 Headphoned\n\n6) TwoShort: Build G1 Twoshort\n\n7) headphoned: Build B1 Headphoned\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) headphoned: Build Y1 Headphoned\n\n10) TwoShort: Build G1 Twoshort\n\n11) headphoned: Trade B1 R1 Headphoned\n\n12) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n13) headphoned: Build R1 Headphoned\n\n14) TwoShort: Build G2 Bluonia\n\n15) headphoned: Trade Y3 G3 Headphoned\n\n16) TwoShort: Trade G2 Y2 Bluonia\n\n17) headphoned: Build Y1 Headphoned\n\n18) TwoShort: Build G2 Bluonia\n\n19) headphoned: Build G2 Headphoned\n\n20) TwoShort: Sacrifice Y2 Bluonia\nDiscover G1 Bluonia B2 Boomtime\nMove G1 Boomtime Headphoned\nCatastrophe Headphoned Green\n\n\nHomeworlds Online (SDG# 13393)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.5.4, Ended: 2009.5.11\nParticipants: headphoned (S), Mouce (N)\nWinner: Mouce\n\n1) Mouce: Homeworld Y1 B2 G3\n\tMouce: Welcome; have a great game!\n\n2) headphoned: Homeworld B3 G2 Y3\n\n3) Mouce: Build G1 Mouce\n\n4) headphoned: Build Y1 Headphoned\n\n5) Mouce: Build G1 Mouce\n\n6) headphoned: Build Y1 Headphoned\n\n7) Mouce: Discover G1 Mouce B3 Wisker\n\n8) headphoned: Trade Y3 G3 Headphoned\n\n9) Mouce: Build G1 Mouce\n\n10) headphoned: Build Y2 Headphoned\n\n11) Mouce: Discover G1 Mouce B3 Scritch\n\n12) headphoned: Build G2 Headphoned\n\n13) Mouce: Sacrifice G3 Mouce\nBuild G2 Scritch\nBuild G3 Wisker\nBuild G3 Mouce\n\n14) headphoned: Trade Y1 B1 Headphoned\n\n15) Mouce: Trade G2 Y2 Scritch\n\n16) headphoned: Discover G3 Headphoned Y1 Khat\n\n17) Mouce: Sacrifice Y2 Scritch\nMove G1 Wisker Khat\nMove G1 Khat Headphoned\n\n18) headphoned: Sacrifice Y2 Headphoned\nMove G3 Khat Scritch\nMove G3 Scritch Mouce\n\n19) Mouce: Trade G3 R3 Mouce\n\n20) headphoned: Sacrifice G2 Headphoned\nBuild Y1 Headphoned\nBuild Y2 Headphoned\n\n21) Mouce: Attack G3 Mouce\n\n22) headphoned: Trade Y1 R1 Headphoned\n\n23) Mouce: Sacrifice R3 Mouce\nAttack B1 Headphoned\nAttack R1 Headphoned\nAttack Y1 Headphoned\n\n24) headphoned: Build Y1 Headphoned\n\n25) Mouce: Build Y2 Headphoned\nCatastrophe Headphoned Yellow\n\n\tMouce: Thanks for the game - keep it up, it can take a little while to get used to homeworlds, but it&#39;s a great game! Challenge me anytime...\n\nHomeworlds Online (SDG# 13407)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.5.6, Ended: 2009.5.21\nParticipants: zoltar (S), Mouce (N)\nWinner: zoltar\n\n1) Mouce: Homeworld B1 Y2 G3\n\tMouce: hi, have a great game\r\n\r\nyou aren&#39;t an automated fortune teller, by chance?\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) Mouce: Build G1 Mouce\n\tzoltar: Nope, I&#39;m just a run of the mill alien!\r\nHave a fun game as well.\n\n4) zoltar: Build G1 Zoltar\n\n5) Mouce: Discover G1 Mouce B3 Skitter\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Mouce: Build G1 Skitter\n\n8) zoltar: Build Y1 Zoltar\n\n9) Mouce: Build G1 Mouce\n\n10) zoltar: Build G2 Zoltar\n\n11) Mouce: Trade G1 Y1 Skitter\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) Mouce: Build G1 Skitter\n\n14) zoltar: Discover G2 Zoltar Y2 Yippee\n\n15) Mouce: Discover G1 Skitter B2 Squeak\n\n16) zoltar: Move G2 Yippee Skitter\n\n17) Mouce:\nBuild G2 Skitter\n\n18) zoltar: Trade G2 R2 Skitter\n\tzoltar: Nice move.  I&#39;m going to spend a day or two and look at this more carefully when I have the time before I reply.\n\tzoltar: On second thought, I now see a defense.\n\n19) Mouce: Sacrifice G2 Skitter\nBuild G2 Squeak\nBuild G2 Squeak\n\n20) zoltar: Attack G1 Skitter\n\n21) Mouce: Trade G1 Y1 Squeak\n\tzoltar: By imperial order of Zoltar the Evil Overlord, I hereby commandeer this vessel!\n\n22) zoltar: Attack Y1 Skitter\n\n23) Mouce: Sacrifice G2 Squeak\nBuild G1 Squeak\nBuild Y2 Squeak\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G2 Skitter\nBuild Y2 Skitter\nBuild Y3 Zoltar\n\n25) Mouce: Trade G1 R1 Mouce\n\n26) zoltar: Discover Y2 Skitter R2 Redrum\n\tzoltar: Alright -- my turn for a fancy sacrifice!\n\n27) Mouce: Trade G2 R2 Squeak\n\n28) zoltar: Sacrifice G2 Skitter\nBuild Y3 Skitter\nBuild Y3 Redrum\n\n29) Mouce: Move Y1 Squeak Zoltar\n\n30) zoltar: Sacrifice Y2 Redrum\nDiscover Y1 Zoltar G2 Greenbelt\nMove Y3 Skitter Squeak\n\n31) Mouce: Sacrifice Y2 Squeak\nMove R2 Squeak Zoltar\nMove G1 Squeak Zoltar\n\n32) zoltar: Sacrifice R1 Zoltar\nAttack R2 Zoltar\n\n\tMouce: well played!\n\tzoltar: Thanks.  I thought it was a great, close game until I sacked the g2 for the two remaining y3s.  I figured you were going after 2 of the 3 r3s (I&#39;d get one of them), and I&#39;ve have the advantage, with all the yellow power, but far from a won game.  Your trading pieces instead and letting my Y3s chase and destroy your fleet proved instead disastrous.  Play again?\n\tMouce: yeah, take me up for another challenge\n\nHomeworlds Online (SDG# 13430)\nStarted: 2009.5.10, Ended: 2009.6.5\nParticipants: nycavri (S), molnar (N)\nWinner: nycavri\n\n1) molnar: Homeworld Y3 B1 G3\n\tmolnar: OK, hopefully I can figure out the interface...\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) molnar: Build G1 Molnar\n\n4) nycavri: Build G1 Nycavri\n\n5) molnar: Trade G1 R1 Molnar\n\n6) nycavri: Discover G1 Nycavri Y3 Mvb\n\n7) molnar: Build G1 Molnar\n\n8) nycavri: Build G1 Mvb\n\n9) molnar: Discover G1 Molnar Y2 Poop\n\n10) nycavri: Build G2 Nycavri\n\n11) molnar: Move R1 Molnar Poop\n\n12) nycavri: Build G2 Nycavri\n\n13) molnar: Move G1 Poop Mvb\n\n14) nycavri: Build G2 Mvb\nCatastrophe Mvb G\n\n15) molnar: Build G1 Molnar\n\tmolnar: on purpose?\r\nisn&#39;t that a lot of work for nothing?\n\n16) nycavri: Trade G2 Y2 Nycavri\n\tnycavri: Gives me a size advantage.  You&#39;re building size 1s, while I already have size 2s . . .\n\n17) molnar: Move G3 Molnar Poop\n\n18) nycavri: Discover G2 Nycavri Y3 Mvg\n\n19) molnar: Move G3 Poop Mvg\n\n20) nycavri: Trade Y2 R2 Nycavri\n\n21) molnar: Build G1 Molnar\n\n22) nycavri: Move G2 Mvg Poop\n\n23) molnar: Move G3 Mvg Poop\n\n24) nycavri: Move G2 Poop Molnar\n\n25) molnar: Build R1 Poop\n\n26) nycavri: Build G1 Molnar\nCatastrophe Molnar G\n\tnycavri: Thanks for the game.  Challenge anytime, and feel free to ask questions as swe play . . .\n\n\nHomeworlds Online (SDG# 13412)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.5.21, Ended: 2009.5.27\nParticipants: Mouce (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) Mouce: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\tMouce: here we go again! enjoy the game\n\n4) Mouce: Build G1 Mouce\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mouce: Build G1 Mouce\n\n7) zoltar: Build Y1 Zoltar\n\n8) Mouce: Discover G1 Mouce B3 Squeak\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) Mouce: Trade G1 R1 Mouce\n\n11) zoltar: Build R2 Zoltar\n\n12) Mouce: Build R2 Mouce\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) Mouce: Build G1 Squeak\n\n15) zoltar: Build Y1 Zoltar\n\n16) Mouce: Trade G1 Y1 Squeak\n\n17) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n18) Mouce: Build Y2 Squeak\n\n19) zoltar: Build Y2 Zoltar\n\n\nHomeworlds Online (SDG# 13402)\nStarted: 2009.5.22, Ended: 2009.5.25\nParticipants: MikeYarrum (S), skykingt13 (N)\nWinner: skykingt13\n\n1) skykingt13: Homeworld Y2 G1 R3 *\n\n\nHomeworlds Online (SDG# 13409)\nStarted: 2009.5.22, Ended: 2009.5.27\nParticipants: TwoShort (S), skykingt13 (N)\nWinner: TwoShort\n\n1) skykingt13: Homeworld G1 B2 R3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n3) skykingt13: Build R1 Skykingt13\n\n\tskykingt13: &#39;ello\n\n4) TwoShort: Build G1 Twoshort\n\tskykingt13: good luck\r\n\r\n\n\n5) skykingt13: Trade R1 G1 Skykingt13\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) skykingt13: Build R1 Skykingt13\n\n8) TwoShort: Build G1 Twoshort\n\n9) skykingt13: Trade R1 Y1 Skykingt13\n\n10) TwoShort: Build G2 Twoshort\n\n11) skykingt13: Build G2 Skykingt13\n\n12) TwoShort: Discover G1 Twoshort G2 Graben\n\n13) skykingt13: Discover G1 Skykingt13 Y3 Space\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Graben\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n15) skykingt13: Move G1 Space Graben\nCatastrophe Graben Green\n\n16) TwoShort: Discover G3 Twoshort B2 Bluonia\n\n17) skykingt13: Discover R3 Skykingt13 Y3 Space\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) skykingt13: Move R3 Space Bluonia\n\n20) TwoShort: Sacrifice R2 Twoshort\nAttack R3 Bluonia\nPass\n\tTwoShort: I think you must have missed how sacrifices work?  Sometimes with new players, I&#39;d encourage you to undo the first time you do something you obviously should not; but even doing something else now you&#39;d be pretty doomed, so I&#39;m just going to destroy you, sorry :)  If you want pointers for next time: start with a green ship, and never move it out of your homeworld.\n\n21) skykingt13: Build Y1 Skykingt13\n\n22) TwoShort: Trade G3 Y3 Bluonia\n\n\nHomeworlds Online (SDG# 13380)\nVariants: &quot;Hard time&quot;\nStarted: 2009.5.22, Ended: 2009.5.26\nParticipants: skykingt13 (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 Y1 G3\n\tJesse: Hello, and have a good game.\n\n2) skykingt13: Homeworld B1 Y2 G3\n\tskykingt13: &#39;ello good luck\n\n3) Jesse: Build G1 Jesse\n\n4) skykingt13: Build G1 Skykingt13\n\n5) Jesse: Discover G1 Jesse B2 Time\n\n6) skykingt13: Discover G1 Skykingt13 B3 Space\n\n\n7) Jesse: Build G1 Time\n\n8) skykingt13: Build G2 Space\n\n9) Jesse: Build G2 Jesse\n\n10) skykingt13: Trade G2 Y2 Space\n\n11) Jesse: Trade G1 Y1 Time\n\n\n12) skykingt13: Build G1 Skykingt13\n\n13) Jesse: Build Y1 Time\n\n14) skykingt13: Build G2 Space\n\n15) Jesse: Discover Y1 Time G3 Energy\n\n\n16) skykingt13: Trade G2 R2 Space\n\n17) Jesse: Sacrifice G2 Jesse\nBuild Y2 Energy\nBuild Y3 Time\n\n18) skykingt13: Build Y3 Space\n\n19) Jesse: Trade Y1 R1 Time\n\n20) skykingt13: Trade Y2 G2 Space\n\n\n21) Jesse: Build G2 Jesse\n\n22) skykingt13: Build R1 Space\n\n23) Jesse: Sacrifice G3 Jesse\nBuild G2 Time\nBuild G3 Jesse\nBuild R1 Time\n\n24) skykingt13: Discover R2 Space Y2 Sky\n\n25) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y1 Time\nBuild Y3 Energy\n\n26) skykingt13: Sacrifice G3 Skykingt13\nBuild R2 Sky\nBuild R2 Space\nBuild R3 Sky\n\n27) Jesse: Sacrifice Y2 Energy\nMove Y3 Energy Skykingt13\nDiscover G1 Time B3 Will\n\n28) skykingt13: Sacrifice Y3 Space\nMove R3 Sky Jesse\nMove R2 Sky Jesse\nPass\n\tJesse: That would have been a good way to gain a red advantage, if it hadn&#39;t left your homeworld undefended.  You could almost get away with it, but I think I have it covered.  A better alternative would have been to trade your g3 for an r3, a move I had been considering myself to improve my homeworld defense and my red distribution.\n\n29) Jesse: Sacrifice R1 Time\nAttack G1 Skykingt13\n\tJesse: Thanks for the game.  You played an excellent opening, forcing me to let you take a few small advantages.  Things didn&#39;t go wrong for you until your discovery of Sky let me grab the remainder of the yellow.\n\n\nHomeworlds Online (SDG# 13461)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.5.22, Ended: 2009.6.11\nParticipants: MadWuher (S), skykingt13 (N)\nWinner: MadWuher\n\n1) skykingt13: Homeworld B2 R1 G3\n\n\n2) MadWuher: Homeworld R2 B3 G3\n\n3) skykingt13: Build G1 Skykingt13\n\n4) MadWuher: Build G1 Madwuher\n\n5) skykingt13: Trade G1 Y1 Skykingt13\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) skykingt13: Build G1 Skykingt13\n\n8) MadWuher: Build G1 Madwuher\n\n9) skykingt13: Discover G1 Skykingt13 Y3 Space\n\n10) MadWuher: Discover G1 Madwuher B1 Bologna\n\n11) skykingt13: Build G1 Skykingt13\n\n12) MadWuher: Build G2 Madwuher\n\n13) skykingt13: Build Y1 Skykingt13\n\n14) MadWuher: Build Y2 Madwuher\n\n15) skykingt13: Move Y1 Skykingt13 Space\n\n16) MadWuher: Build G2 Bologna\n\n17) skykingt13: Discover Y1 Space R1 Sky\n\n18) MadWuher: Move Y2 Madwuher Sky\n\n19) skykingt13: Sacrifice G1 Skykingt13\nBuild Y2 Sky\n\n20) MadWuher: Attack Y2 Sky\n\n21) skykingt13: Sacrifice G3 Skykingt13\nBuild Y2 Sky\nBuild Y3 Skykingt13\nBuild Y3 Skykingt13\nCatastrophe Sky Yellow\n\n22) MadWuher: Trade G2 Y2 Bologna\n\n23) skykingt13: Trade Y3 G3 Skykingt13\n\n24) MadWuher: Build Y1 Bologna\n\n25) skykingt13: Discover Y1 Skykingt13 B3 Sky\n\n26) MadWuher: Discover G1 Bologna Y3 Edora\n\n27) skykingt13: Move G1 Space Bologna\n\n28) MadWuher: Trade Y1 R1 Bologna\n\n29) skykingt13: Trade Y1 R1 Sky\n\n30) MadWuher: Attack G1 Bologna\n\n31) skykingt13: Build Y1 Skykingt13\n\n\n32) MadWuher: Build R2 Bologna\n\n33) skykingt13: Move Y1 Skykingt13 Sky\n\n34) MadWuher: Build G1 Edora\n\n35) skykingt13: Move G3 Skykingt13 Sky\n\n36) MadWuher: Move R2 Bologna Edora\n\n\tMadWuher: Thanx for the game.\n\nHomeworlds Online (SDG# 13289)\nVariants: &quot;Hard time&quot;\nStarted: 2009.5.22, Ended: 2009.6.8\nParticipants: Qat (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Qat: Homeworld Y3 B1 G3\n\tagentofchaos: Hi there, sorry I didn&#39;t start sooner, I&#39;ve been very busy recently. Enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\tQat: No problem. Have fun yourself.\n\n4) Qat: Build G1 Qat\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Qat: Build G2 Qat\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) Qat: Discover G2 Qat B2 Chaos\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) Qat: Build G1 Qat\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) Qat: Trade G1 Y1 Qat\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) Qat: Build Y2 Qat\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) Qat: Move Y1 Qat Chaos\n\n17) agentofchaos: Discover Y1 Agentofchaos G3 Zool\n\n18) Qat: Trade G1 R1 Qat\n\n19) agentofchaos: Build R2 Agentofchaos\n\n20) Qat: Build R2 Qat\n\n21) agentofchaos: Move R2 Agentofchaos Zool\n\n22) Qat: Discover R2 Qat G2 Produce\n\n23) agentofchaos: Build R2 Zool\n\n24) Qat: Sacrifice G2 Chaos\nBuild R3 Qat\nBuild R3 Produce\n\n25) agentofchaos: Move R2 Zool Chaos\n\n26) Qat: Discover Y1 Chaos B3 Whoosh\n\n27) agentofchaos: Build R3 Zool\n\n28) Qat: Move R3 Qat Chaos\n\n29) agentofchaos: Sacrifice Y1 Zool\nDiscover R2 Chaos Y3 Kakradoom\n\n30) Qat: Sacrifice Y2 Qat\nMove R3 Produce Whoosh\nMove R2 Produce Whoosh\n\n31) agentofchaos: Move Y1 Agentofchaos Zool\n\n32) Qat: Trade R2 G2 Whoosh\n\n33) agentofchaos: Trade R1 B1 Agentofchaos\n\n34) Qat: Trade R3 B3 Whoosh\n\n35) agentofchaos: Move B1 Agentofchaos Kakradoom\n\n36) Qat: Discover B3 Whoosh G2 Produce\n\n37) agentofchaos: Build Y1 Zool\n\n38) Qat: Build Y2 Whoosh\n\n39) agentofchaos: Trade B1 G1 Kakradoom\n\n40) Qat: Sacrifice Y2 Whoosh\nMove R3 Chaos Whoosh\nMove B3 Produce Kakradoom\n\n41) agentofchaos: Discover R2 Kakradoom Y2 Kastria\n\n42) Qat: Sacrifice G2 Whoosh\nBuild Y2 Whoosh\nBuild Y3 Whoosh\n\n43) agentofchaos: Move Y2 Agentofchaos Whoosh\nCatastrophe Whoosh Y\n\n44) Qat: Sacrifice R1 Qat\nAttack G1 Kakradoom\n\n45) agentofchaos: Trade G1 Y1 Agentofchaos\n\n46) Qat: Build G1 Qat\n\n\nHomeworlds Online (SDG# 13483)\nStarted: 2009.5.22, Ended: 2009.6.19\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build G1 Zoltar\n\n8) TwoShort: Build G1 Twoshort\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) zoltar: Build B2 Zoltar\n\n12) TwoShort: Build B2 Twoshort\n\n13) zoltar: Trade B1 R1 Zoltar\n\n14) TwoShort: Build G1 Twoshort\n\n15) zoltar: Build G1 Zoltar\n\n16) TwoShort: Discover B1 Twoshort G3 Grogar\n\n17) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n18) TwoShort: Build G1 Twoshort\n\n19) zoltar: Build G2 Zoltar\n\n20) TwoShort: Discover G1 Twoshort B3 Bonanza\n\n21) zoltar: Sacrifice G2 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n23) zoltar: Move Y1 Zoltar Greenbelt\n\n24) TwoShort: Sacrifice B2 Twoshort\nTrade G2 Y2 Bonanza\nTrade G2 R2 Twoshort\n\n25) zoltar: Discover Y2 Zoltar G2 Greendale\n\n26) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n27) zoltar: S G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n28) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Twoshort\n\n29) zoltar: Move R1 Zoltar Greenbelt\n\n30) TwoShort: Build G1 Twoshort\n\n31) zoltar: Build R1 Greenbelt\n\n32) TwoShort: Discover R2 Twoshort G3 Gondor\n\n33) zoltar: Move Y2 Greendale Grogar\n\n34) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bonanza\nBuild B1 Grogar\n\tzoltar: yep -- I&#39;m doomed!\n\n\tzoltar: Yep, with the factory, the rest of the ships are yours.  Good game, as always!\n\nHomeworlds Online (SDG# 13482)\nStarted: 2009.5.22, Ended: 2009.5.28\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 13290)\nVariants: &quot;Hard time&quot;\nStarted: 2009.5.22, Ended: 2009.6.12\nParticipants: zoltar (S), agentofchaos (N)\nWinner: zoltar\n\n1) agentofchaos: Homeworld R3 B1 G3\n\n2) zoltar: Homeworld B2 R3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) zoltar: Build G1 Zoltar\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) zoltar: Build G1 Zoltar\n\n9) agentofchaos: Discover Y1 Agentofchaos B2 Groove\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) zoltar: Build B1 Zoltar\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) zoltar: Build B1 Zoltar\n\n17) agentofchaos: Trade G1 Y1 Agentofchaos\n\n18) zoltar: Discover B1 Zoltar G1 Greenbelt\n\n19) agentofchaos: Build Y2 Agentofchaos\n\n20) zoltar: Build B2 Greenbelt\n\n21) agentofchaos: Build Y2 Agentofchaos\n\n22) zoltar: Build B3 Greenbelt\n\n23) agentofchaos: Build G1 Agentofchaos\n\n24) zoltar: Trade B3 Y3 Greenbelt\n\n25) agentofchaos: Discover Y2 Agentofchaos G2 Blackguard\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Zoltar\nBuild B3 Zoltar\n\n27) agentofchaos: Build Y3 Blackguard\n\n28) zoltar: Trade B3 G3 Zoltar\n\n29) agentofchaos: Move G1 Agentofchaos Blackguard\n\n30) zoltar: Build G2 Zoltar\n\n31) agentofchaos: Move G1 Agentofchaos Groove\n\n32) zoltar: Sacrifice Y3 Greenbelt\nMove G3 Zoltar Greenbelt\nDiscover G3 Greenbelt Y3 Yellowstone\nMove B2 Greenbelt Groove\n\n33) agentofchaos: Move G1 Groove Agentofchaos\n\n34) zoltar: Sacrifice G3 Yellowstone\nBuild Y3 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Groove\n\n35) agentofchaos: Discover Y1 Groove R1 Heme\n\n36) zoltar: Build B3 Zoltar\n\n37) agentofchaos: Move R1 Agentofchaos Blackguard\n\n38) zoltar: Sacrifice B2 Groove\nTrade B3 R3 Greenbelt\nTrade B3 G3 Zoltar\n\n39) agentofchaos: Build R2 Blackguard\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild B2 Groove\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n41) agentofchaos: Move R2 Blackguard Heme\n\n42) zoltar: Trade B3 G3 Zoltar\n\n43) agentofchaos: Sacrifice Y3 Blackguard\nMove R2 Heme Zoltar\nMove R1 Blackguard Heme\nMove R1 Heme Zoltar\nCatastrophe Zoltar R\n\n44) zoltar: Sacrifice Y3 Greenbelt\nMove G2 Zoltar Agentofchaos\nMove G3 Zoltar Agentofchaos\nMove B3 Groove Agentofchaos\nCatastrophe Agentofchaos G\n\n45) agentofchaos: Build Y3 Blackguard\n\n46) zoltar: Sacrifice Y2 Greenbelt\nMove Y1 Zoltar Agentofchaos\nMove Y3 Zoltar Agentofchaos\nCatastrophe Agentofchaos Y\n\n\tzoltar: Well, I had the extra 3 big blue ships, so I just had to bide my time and grab as many big ships left as possible and then slowly attack, but this ended things quickly.  Play again?\n\tagentofchaos: Sure I&#39;d like a rematch, see if I can do better :-)\n\nHomeworlds Online (SDG# 13275)\nStarted: 2009.5.22, Ended: 2009.6.19\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 B1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) zoltar: Build G1 Zoltar\n\n9) ts52: Build B1 Kermit\n\n10) zoltar: Trade G3 B3 Zoltar\n\n11) ts52: Build B2 Kermit\n\n12) zoltar: Build B2 Zoltar\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) zoltar: Trade B3 G3 Zoltar\n\n15) ts52: Build G1 Ts52\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) ts52: Trade B1 R1 Kermit\n\n18) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n19) ts52: Build R2 Kermit\n\n20) zoltar: Move R1 Zoltar Greenbelt\n\n21) ts52: M R2 Kermit Ts52\n\n22) zoltar: Build R2 Greenbelt\n\n23) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\n\n24) zoltar: Trade R2 Y2 Greenbelt\n\n25) ts52: Trade R3 G3 Ts52\n\tzoltar: Good Job. I think I&#39;m toast.\n\n26) zoltar: Build R2 Greenbelt\n\n27) ts52: D R3 Kermit Y1 Slimey\n\n28) zoltar: Discover R2 Greenbelt Y1 Yellowstone\n\n29) ts52: Build Y3 Kermit\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild R3 Yellowstone\nBuild R3 Greenbelt\n\n31) ts52: Discover R2 Ts52 Y3 Bigbird\n\n32) zoltar: Trade Y3 G3 Zoltar\n\n33) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit Yellowstone\nMove R2 Bigbird Yellowstone\nCatastrophe Yellowstone Red\n\n34) zoltar: Build G1 Zoltar\n\n35) ts52: Discover R3 Slimey Y3 Bigbird\n\n36) zoltar: Discover B2 Greenbelt Y3 Yellowstone\n\n37) ts52: Move G1 Ts52 Bigbird\n\n38) zoltar: Build Y1 Greenbelt\n\n39) ts52: Build G1 Ts52\n\n40) zoltar: Build Y1 Greenbelt\n\n41) ts52: Build Y2 Kermit\n\n42) zoltar: Sacrifice Y2 Greenbelt\nMove Y1 Greenbelt Kermit\nMove Y1 Greenbelt Kermit\nCatastrophe Kermit Y\n\n43) ts52: Build R1 Bigbird\n\n44) zoltar: Build Y1 Zoltar\n\n45) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Ts52\nBuild G3 Ts52\n\n46) zoltar: Move Y1 Zoltar Greenbelt\n\n47) ts52: Move R2 Ts52 Kermit\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Greenbelt\n\n49) ts52: Trade G2 Y2 Ts52\n\n50) zoltar: Build Y3 Greenbelt\n\n51) ts52: Move Y2 Ts52 Kermit\n\n52) zoltar: Move Y3 Greenbelt Kermit\n\n53) ts52: Discover Y2 Kermit G2 Robin\n\n54) zoltar: Sacrifice R1 Greenbelt\nAttack R2 Kermit\n\n55) ts52: Move R1 Bigbird Robin\n\n56) zoltar: Attack B1 Kermit\n\n57) ts52: Build R1 Robin\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Yellowstone\nBuild B2 Kermit\n\n59) ts52: Move R1 Robin Yellowstone\n\n60) zoltar: Discover B1 Yellowstone B2 Blueridge\n\n61) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Yellowstone\nBuild R2 Yellowstone\n\n62) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Kermit\nBuild B3 Yellowstone\n\n63) ts52: Attack B2 Yellowstone\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Yellowstone\nPass\n\n65) ts52: Move R2 Yellowstone Blueridge\n\n66) zoltar: Sacrifice R2 Kermit\nAttack R2 Yellowstone\nAttack B2 Yellowstone\n\n67) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild R2 Blueridge\n\n68) zoltar: Move Y3 Kermit Blueridge\n\n69) ts52: Attack B1 Blueridge\n\n70) zoltar: Move B3 Yellowstone Robin\n\tzoltar: My ships are bigger than your ships!\n\n71) ts52: Sacrifice Y2 Robin\nDiscover R3 Bigbird Y2 Littlebird\nMove G2 Bigbird Littlebird\n\n72) zoltar: Move Y1 Greenbelt Kermit\n\n73) ts52: Move G1 Bigbird Littlebird\n\n74) zoltar: Sacrifice G1 Zoltar\nBuild Y3 Zoltar\n\n75) ts52: Build G1 Littlebird\n\n76) zoltar: Sacrifice Y3 Zoltar\nMove B1 Kermit Ts52\nMove B2 Kermit Ts52\nMove B3 Yellowstone Ts52\n\n77) ts52: Trade G3 Y3 Ts52\n\n78) zoltar: Sacrifice R2 Yellowstone\nAttack G1 Ts52\nAttack Y3 Ts52\n\n\tzoltar: Good game, though it got rather one-sided after I got the advantage and slowly maneuvered to grab most of the pieces.  Play again?\n\tts52: Wow. I&#39;m really out of it today. I knew it was all but over a while ago, but I totally missed the fact that you&#39;d moved all those ships into my homeworld. Sigh, just out of it toady. Anyway, well played. Thanks for the game.\n\tts52: Sure, I&#39;d be glad to play again.\n\nHomeworlds Online (SDG# 13486)\nStarted: 2009.5.23, Ended: 2009.5.29\nParticipants: Deudanann (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Deudanann: Homeworld R1 B2 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\n4) Deudanann: Build G1 Deudanann\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Deudanann: Trade G1 Y1 Deudanann\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) Deudanann: Discover Y1 Deudanann R3 Yipyip\n\n9) ts52: Build G1 Ts52\n\n10) Deudanann: Build G1 Deudanann\n\n11) ts52: Build B1 Kermit\n\n\nHomeworlds Online (SDG# 13485)\nStarted: 2009.5.23, Ended: 2009.5.27\nParticipants: Deudanann (S), MikeYarrum (N)\nWinner: Deudanann\n\n\nHomeworlds Online (SDG# 13478)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.5.25, Ended: 2009.5.27\nParticipants: Mouce (S), mzmzmz (N)\nWinner: mzmzmz\n\n1) mzmzmz: Homeworld R1 G3 B3\n\n2) Mouce: Homeworld B1 Y2 G3\n\n3) mzmzmz: Build B1 Mzmzmz\n\n4) Mouce: Build G1 Mouce\n\tMouce: have a great game!\n\n5) mzmzmz: Trade B1 Y1 Mzmzmz\n\tmzmzmz: You too.  This is my first time playing this, it seems like a good game.\n\n6) Mouce: Build G1 Mouce\n\n7) mzmzmz: Build B1 Mzmzmz\n\tMouce: i&#39;ve only played it a handful of times, but it has great depth and a lot of possibility for creativity. the community here has some very strong players, too\n\tmzmzmz: cool.  I&#39;ll have to get a set of these pieces and try it out offline some time :)\n\n8) Mouce: Discover G1 Mouce B3 Whisker\n\n9) mzmzmz: Discover B1 Mzmzmz G2 Vigor\n\n\tmzmzmz: ?\n\nHomeworlds Online (SDG# 13481)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.5.27, Ended: 2009.7.8\nParticipants: mzmzmz (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) mzmzmz: Homeworld G3 Y1 B3\n\tMadWuher: Hi there.\n\n3) MadWuher: Build G1 Madwuher\n\n4) mzmzmz: Build B1 Mzmzmz\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\tmzmzmz: Hello\n\n6) mzmzmz: Discover B1 Mzmzmz G2 Carpet\n\n7) MadWuher: Build Y1 Madwuher\n\n8) mzmzmz: Build B1 Carpet\n\n9) MadWuher: Discover Y1 Madwuher G3 Edora\n\n10) mzmzmz: Trade B1 R1 Carpet\n\n11) MadWuher: Build Y2 Edora\n\n12) mzmzmz: Build B1 Mzmzmz\n\n13) MadWuher: Discover Y1 Edora G2 Bologna\n\n14) mzmzmz: Build B1 Carpet\n\n15) MadWuher: Build Y2 Bologna\n\n16) mzmzmz: Build B2 Carpet\n\n17) MadWuher: Build Y2 Madwuher\n\n18) mzmzmz: Build B2 Mzmzmz\n\n19) MadWuher: Sacrifice G3 Madwuher\nBuild Y3 Edora\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n20) mzmzmz: Trade B2 G2 Carpet\n\n21) MadWuher: Trade Y3 G3 Madwuher\n\n22) mzmzmz: Build B2 Carpet\n\n23) MadWuher: Build Y3 Madwuher\n\n24) mzmzmz: Trade B3 R3 Mzmzmz\n\n25) MadWuher: Trade Y3 R3 Madwuher\n\n26) mzmzmz: Build B3 Mzmzmz\n\n27) MadWuher: Build Y3 Madwuher\n\n28) mzmzmz: Trade B1 G1 Carpet\n\n29) MadWuher: Build G1 Madwuher\n\n30) mzmzmz: Move B3 Mzmzmz Carpet\n\n31) MadWuher: Discover G1 Madwuher R3 Camelot\n\n32) mzmzmz: Move B2 Mzmzmz Bologna\n\n33) MadWuher: Sacrifice Y1 Bologna\nDiscover Y2 Bologna Y1 Abydos\n\n34) mzmzmz: Build B1 Bologna\n\n35) MadWuher: Build R1 Madwuher\n\n36) mzmzmz: Build B3 Bologna\n\n37) MadWuher: Sacrifice R3 Madwuher\nAttack B3 Bologna\nAttack B2 Bologna\nAttack B1 Bologna\n\n38) mzmzmz: Move B1 Mzmzmz Bologna\nCatastrophe Bologna B\n\n39) MadWuher: Build G1 Madwuher\n\n40) mzmzmz: Build R2 Mzmzmz\n\n41) MadWuher: Build R2 Madwuher\n\n\tmzmzmz: Good game.\n\nHomeworlds Online (SDG# 13494)\nStarted: 2009.5.27, Ended: 2009.7.24\nParticipants: zoltar (S), skykingt13 (N)\nWinner: zoltar\n\n1) skykingt13: Homeworld Y3 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) skykingt13: Build G1 Skykingt13\n\n4) zoltar: Build G1 Zoltar\n\n5) skykingt13: Trade G1 R1 Skykingt13\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) skykingt13: Discover R1 Skykingt13 G1 Space\n\n8) zoltar: Build Y1 Zoltar\n\n9) skykingt13: Build G1 Skykingt13\n\n10) zoltar: Build Y1 Zoltar\n\n11) skykingt13: Build R1 Space\n\n12) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n13) skykingt13: Build R2 Space\n\n14) zoltar: Build Y2 Greenbelt\n\n15) skykingt13: Trade G1 B1 Skykingt13\n\n16) zoltar: Build Y2 Zoltar\n\n17) skykingt13: Move B1 Skykingt13 Space\n\n18) zoltar: Trade Y2 R2 Zoltar\n\n19) skykingt13: Trade R2 Y2 Space\n\n\n20) zoltar: Trade Y1 B1 Zoltar\n\n21) skykingt13: Move R1 Space Skykingt13\n\n22) zoltar: Discover R2 Zoltar G2 Greendale\n\n23) skykingt13: Build R2 Space\n\n24) zoltar: Move B1 Zoltar Greendale\n\n25) skykingt13: Move R2 Space Greenbelt\n\n26) zoltar: Sacrifice R2 Greendale\nAttack R2 Greenbelt\nPass\n\n27) skykingt13: Build R2 Space\n\n28) zoltar: Build G1 Zoltar\n\n29) skykingt13: Discover R2 Space B2 Sky\n\n30) zoltar: Discover Y2 Greenbelt B1 Blueberry\n\n31) skykingt13: Build R2 Space\n\n32) zoltar: Build R3 Greenbelt\n\n33) skykingt13: Sacrifice G3 Skykingt13\nBuild R3 Sky\nBuild R3 Skykingt13\nBuild B2 Space\n\n34) zoltar: Build B3 Greendale\n\n35) skykingt13: Move B1 Space Greendale\n\n\n36) zoltar: Trade B1 Y1 Greendale\n\n37) skykingt13: Trade R3 G3 Sky\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Blueberry\nBuild Y3 Zoltar\n\n39) skykingt13: Sacrifice G3 Sky\nBuild B1 Greendale\nBuild R3 Sky\nBuild B3 Space\n\n40) zoltar: Sacrifice Y2 Blueberry\nDiscover R3 Greenbelt G1 Greenville\nMove B3 Greendale Space\n\n41) skykingt13: Move R1 Skykingt13 Greenville\n\n42) zoltar: Sacrifice R3 Greenville\nAttack B3 Space\nAttack Y2 Space\nAttack R1 Space\n\n43) skykingt13: Build R3 Greenville\n\n44) zoltar: Sacrifice Y3 Zoltar\nDiscover R1 Space Y2 Yellowstone\nDiscover Y2 Space G2 Greenacres\nDiscover Y1 Greendale Y3 Oldyeller\n\n45) skykingt13: Trade R3 G3 Skykingt13\n\n46) zoltar: Build G3 Zoltar\n\n47) skykingt13: Build G3 Skykingt13\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Yellowstone\nPass\n\n49) skykingt13: Pass\n\n50) zoltar: Move R3 Yellowstone Space\n\n51) skykingt13: Pass\n\n52) zoltar: Attack R2 Space\n\n53) skykingt13: Pass\n\n54) zoltar: Attack B2 Space\n\n55) skykingt13: Pass\n\n56) zoltar: Move G3 Zoltar Greendale\n\n57) skykingt13: Pass\n\n58) zoltar: Move G3 Greendale Oldyeller\n\n59) skykingt13: Pass\n\n60) zoltar: Move Y1 Oldyeller Space\n\n\nHomeworlds Online (SDG# 13267)\nVariants: &quot;Hard time&quot;\nStarted: 2009.5.27, Ended: 2009.6.15\nParticipants: agentofchaos (S), headphoned (W), zoltar (N), skykingt13 (E)\nWinner: agentofchaos\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) skykingt13: Homeworld B3 Y2 G3\n\n3) agentofchaos: Homeworld B3 R1 G3\n\n4) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: Hi everyone, enjoy the game. \n\n5) zoltar: Build G1 Zoltar\n\n6) skykingt13: Build G1 Skykingt13\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) skykingt13: Trade G1 R1 Skykingt13\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) zoltar: Build Y1 Zoltar\n\n12) skykingt13: Build R1 Skykingt13\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) zoltar: Build Y1 Zoltar\n\n\nHomeworlds Online (SDG# 13488)\nStarted: 2009.5.28, Ended: 2009.6.12\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 13529)\nStarted: 2009.5.29, Ended: 2009.7.23\nParticipants: ts52 (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) ts52: H Y2 B3 G3\n\n3) jeep: Build G1 Jeep\n\tts52: Have a good game. \n\n4) ts52: B G1 Ts52\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) ts52: Trade G1 R1 Ts52\n\n7) jeep: Build G1 Jeep\n\n8) ts52: Build G1 Ts52\n\n9) jeep: Build Y1 Jeep\n\n10) ts52: Discover G1 Ts52 B1 Grover\n\n11) jeep: Discover Y1 Jeep G3 Thumb\n\n12) ts52: Build R1 Ts52\n\tjeep: Sorry for the delay.\n\n13) jeep: Build Y1 Thumb\n\tts52: no problem\n\n14) ts52: Build R2 Ts52\n\n15) jeep: Build Y2 Jeep\n\n16) ts52: Move R2 Ts52 Grover\n\n17) jeep: Build Y2 Thumb\n\n18) ts52: Build R2 Ts52\n\n19) jeep: Build Y3 Jeep\n\n20) ts52: Build R2 Grover\n\n21) jeep: Sacrifice Y3 Jeep\nDiscover G1 Jeep Y3 Temp\nDiscover Y1 Jeep Y3 Movement\nDiscover Y2 Jeep Y3 Lock\n\n22) ts52: Build G1 Ts52\n\tts52: Wow, well played. I didn&#39;t see that one coming...\n\n23) jeep: Build G2 Jeep\n\tjeep: Thanks, now, can I take advantage?\n\n24) ts52: Discover R2 Ts52 B1 Cookiemonster\n\n25) jeep: Sacrifice G1 Temp\nBuild Y3 Movement\n\n26) ts52: Move G1 Ts52 Cookiemonster\n\n27) jeep: Sacrifice Y3 Movement\nDiscover G2 Jeep Y3 Temp\nDiscover Y1 Thumb B2 Cache\nDiscover Y2 Thumb B2 Cache2\n\tjeep: Sorry, late night.  I thought I&#39;d already cashed the Y3.\n\n28) ts52: Discover R1 Ts52 B1 Gonzo\n\n29) jeep: Build G1 Jeep\n\n30) ts52: Build G2 Ts52\n\n31) jeep: Sacrifice G2 Temp\nBuild Y3 Cache\nBuild G2 Jeep\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Cookiemonster\nBuild G3 Ts52\nBuild R3 Ts52\n\n33) jeep: Trade G3 B3 Jeep\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R3 Cookiemonster\n\n35) jeep: Move Y3 Cache Lock\n\n36) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R3 Gonzo\n\n37) jeep: Build B3 Jeep\n\tjeep: I built that in the wrong place.  :(\n\n38) ts52: Move G2 Ts52 Gonzo\n\n39) jeep: Move Y3 Lock Jeep\n\tjeep: And now the slow plod towards the doomsday machine...\n\n40) ts52: Pass\n\n41) jeep: Move G2 Jeep Thumb\n\n42) ts52: Pass\n\tts52: This is very curious. I&#39;m sure I&#39;m going to lose, but I&#39;m not sure how.... And I know I don&#39;t want to do anything. Not sure if it&#39;s really legal to pass, but SDG seems to accept it.\n\tjeep: I think passing is actually legal.  If nothing else, you could do a &quot;no op&quot; type move like: s g1 cookiemonster; b g1 cookiemonster\n\n43) jeep: Move Y1 Thumb Jeep\n\tts52: Right, that makes sense.\n\n44) ts52: Pass\n\n45) jeep: Move B3 Jeep Movement\n\n46) ts52: Pass\n\tts52: This is tough. With no transportation, I&#39;m left to wait and watch you make your move...\n\tjeep: Nod, I&#39;m about to make a move that would take several moves to undo if I later decide it&#39;s wrong, so I&#39;m going to think about this for a little bit and not make the move at midnight.  ;)\n\tjeep: Okay, here&#39;s a move I can undo if needed and I know I want to make it. ;)\n\n47) jeep: Move B3 Jeep Movement\n\n48) ts52: Pass\n\n49) jeep: Move Y1 Jeep Thumb\n\n50) ts52: Pass\n\n51) jeep: Move G2 Thumb Cache2\n\tjeep: *sigh* changed plans and had to undo a move I made earlier.  :(\n\tts52: I&#39;m still curious to see how you&#39;re going to get through. I&#39;m starting to wonder if we&#39;ve hit a stalemate.\n\n52) ts52: Pass\n\n53) jeep: Move Y2 Cache2 Thumb\n\tjeep: No, pretty sure my new plan will work, it&#39;s just slow.\n\tjeep: Bah, I guess I got off a line in my planned moves.  I wasn&#39;t supposed to move both blue3 to movement, only 1...  yet another wasted move.  Good thing there isn&#39;t a 50 move rule here.  ;)\n\n54) ts52: Pass\n\n55) jeep: Sacrifice G2 Cache2\nBuild G2 Jeep\nBuild B2 Movement\n\n56) ts52: Pass\n\n57) jeep: Move B3 Movement Jeep\n\n58) ts52: Pass\n\n59) jeep: Move G2 Jeep Thumb\n\n60) ts52: Pass\n\n61) jeep: Move G2 Thumb Cache\n\n62) ts52: Pass\n\n63) jeep: Move Y1 Cache Movement\n\n64) ts52: Pass\n\n65) jeep: Sacrifice G2 Cache\nBuild G2 Jeep\nBuild B2 Movement\n\n66) ts52: Pass\n\n67) jeep: Move Y1 Thumb Jeep\n\tts52: Yep, that&#39;s going to hurt. But at least I&#39;ll be able to get some yellow...\n\n68) ts52: Pass\n\tjeep: I hope not. ;)  But it&#39;s a tricky plan, so I don&#39;t want to make it in a rush.  I&#39;m on vacation and will make my move when I&#39;m settled at my destination and not on the road.\n\n69) jeep: Move G2 Jeep Thumb\n\n70) ts52: Pass\n\tts52: Sorry for the delay. I was away on vacation.\n\n71) jeep: Move Y2 Thumb Jeep\n\n72) ts52: Pass\n\n73) jeep: Sacrifice G2 Thumb\nBuild G2 Jeep\nBuild G3 Jeep\n\n74) ts52: Pass\n\n75) jeep: Move G1 Jeep Lock\n\n76) ts52: Pass\n\n77) jeep: Move G3 Jeep Lock\n\n78) ts52: Pass\n\n79) jeep: Move B3 Jeep Lock\n\tjeep: Woo Hoo, the action is about to start...\n\n80) ts52: Pass\n\tts52: Ok, let&#39;s see it! :)\n\tjeep: Gah!  Stupid typo... \n\n81) jeep: Move B2 Movement Grover\n\n82) ts52: Attack B2 Grover\n\n83) jeep: Sacrifice Y3 Jeep\nDiscover G2 Jeep Y3 Cache\nMove B2 Movement Grover\nMove B3 Movement Grover\nCatastrophe Grover Blue\n\n84) ts52: Build G1 Ts52\n\tts52: Aha, the slow and painful death, I see... :)\n\n85) jeep: Sacrifice G3 Lock\nBuild G3 Lock\nBuild G3 Lock\nBuild B1 Lock\n\tjeep: Yeah, I hope to make you dwindle down to just your homeworld and in the meantime, I&#39;ll recover faster the extra material faster than you do.  Then I&#39;ll have the opportunity to set up the doomsday and I&#39;ll be able to execute it before you have a chance to invade my space.  At least, that&#39;s the plan.\n\n86) ts52: Trade R3 B3 Ts52\n\tts52: Sorry for the delay.\n\n87) jeep: Discover G3 Lock B2 Slow\n\n88) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R2 Ts52\n\n89) jeep: Sacrifice G2 Cache\nBuild G2 Lock\nBuild Y3 Jeep\n\n90) ts52: Build R3 Gonzo\n\n91) jeep: Build B2 Lock\n\n92) ts52: Sacrifice G1 Cookiemonster\nPass\n\n93) jeep: Build G1 Slow\n\n94) ts52: Sacrifice R1 Gonzo\nPass\n\n95) jeep: Discover B3 Lock R1 Slayer\n\n96) ts52: Sacrifice R1 Ts52\nPass\n\tjeep: I guess I need a red to make this plan work, eh?  Hmm...\n\n97) jeep: Discover G3 Lock R1 Slayer2\n\n98) ts52: Pass\n\tts52: Yeah, I really didn&#39;t want to give one up, but I think it&#39;s my only shot at survival... ironically it may hasten my demise. :)\n\n99) jeep: Move B1 Lock Slayer2\n\tts52: And since I have no yellow, I can&#39;t move two ships in there to be able to take either of those systems. Yeah, I&#39;m pretty much screwed...\n\n\tts52: Yeah, unfortunately the only way to stop you was to get a small star of my own that I could park blues on, to keep you from building the doomsday machine. But there was just no way that was going to work. Excellent game. Now I know, never let yourself get shut out of yellow!\n\tjeep: Thanks for the game. It was good.  Shut out of any color is bad.  Shut out of yellow is really bad.  \n\nHomeworlds Online (SDG# 13533)\nVariants: &quot;Unrated&quot;\nStarted: 2009.5.29, Ended: 2009.6.10\nParticipants: johannz (S), riddick (N)\nWinner: johannz\n\n1) riddick: Homeworld B2 Y1 G3\n\n2) johannz: Homeworld Y3 B2 G3\n\n3) riddick: Build G1 Riddick\n\n4) johannz: Build G1 Johannz\n\n5) riddick: Discover G3 Riddick Y3 Nomansland\n\n6) johannz: Discover G3 Johannz R1 Gateway\n\n7) riddick: Build G1 Nomansland\n\n8) johannz: Build G2 Johannz\n\n9) riddick: Build G2 Riddick\n\n10) johannz: Trade G2 Y2 Johannz\n\n11) riddick: Trade G1 B1 Riddick\n\n12) johannz: Move Y2 Johannz Gateway\n\n13) riddick: Move B1 Riddick Nomansland\n\n14) johannz: Build G1 Johannz\n\n15) riddick: Build G2 Riddick\n\n16) johannz: Move G1 Johannz Gateway\n\n17) riddick: Build G2 Nomansland\n\n18) johannz: Move G1 Gateway Nomansland\nCatastrophe Nomansland Green\n\n19) riddick: Move G2 Riddick Nomansland\n\n20) johannz: Build G1 Johannz\n\tjohannz: Sorry Bryan, I just had to do it :)\n\tjohannz: Think of it as a learning experience\n\n21) riddick: Build G1 Riddick\n\n22) johannz: Trade G1 B1 Johannz\n\n23) riddick: Trade G2 R2 Nomansland\n\n24) johannz: Move B1 Johannz Gateway\n\n25) riddick: Move G2 Riddick Nomansland\n\triddick: Crap! If you think about it, I think you win this next turn. Think planetary sacrifice....\n\triddick: Actually -- maybe I&#39;m still safe -- for some reason I though you could sacrifice system markers, but I guess it&#39;s only ships.\n\n26) johannz: Build Y1 Gateway\n\tjohannz: Not sure why you thought I could win this turn, even with planetary sacrifice. Don&#39;t have enough green close enough.\r\nBut I can seriously weaken you.\r\nBuild y1 in gateway\r\nsacrifice y2 in gateway, move b1 through nomansland into riddick\r\nsacrifice g3 in gateway, build 2 b&#39;s in riddick, catastrope blue (including planets) in riddick, build y1 in gateway.\r\nNow riddick is a y1 system, and directly accessible from my home world.\r\nYou still have some easy options to prevent this.\n\n27) riddick: Trade G1 R1 Riddick\n\n28) johannz: Trade G3 R3 Gateway\n\n29) riddick: Move G2 Nomansland Riddick\n\n30) johannz: Sacrifice Y2 Gateway\nMove R3 Gateway Nomansland\nMove R3 Nomansland Riddick\n\n31) riddick: Build G1 Riddick\n\n32) johannz: Attack G2 Riddick\n\n\triddick: You the man! I think at this point I&#39;d just be creating ships that you&#39;ll then attach until you can catastrophe the whole system. I bow before you&#39;re interplanetary prowess!!\n\nHomeworlds Online (SDG# 13523)\nVariants: &quot;Hard time&quot;\nStarted: 2009.5.30, Ended: 2009.7.6\nParticipants: zoltar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B2 R1 G3\n\tJesse: So, we meet again.  Have a good game.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) Jesse: Build G1 Jesse\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) zoltar: Build G1 Zoltar\n\n9) Jesse: Trade G1 B1 Jesse\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Jesse: Build B2 Jesse\n\n12) zoltar: Build B2 Zoltar\n\n13) Jesse: Discover B2 Jesse G3 Golem\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) Jesse: Build B1 Golem\n\n16) zoltar: Build B3 Zoltar\n\n17) Jesse: Build B3 Golem\n\n\n18) zoltar: Trade B3 Y3 Zoltar\n\n19) Jesse: Trade B1 R1 Golem\n\n20) zoltar: Build R2 Zoltar\n\n21) Jesse: Trade B3 Y3 Golem\n\n\n22) zoltar: Discover R1 Zoltar G2 Greenbelt\n\n23) Jesse: Build R2 Golem\n\n24) zoltar: Move Y3 Zoltar Greenbelt\n\n25) Jesse: Discover R2 Golem G2 Gorgon\n\n26) zoltar: Build G1 Zoltar\n\n27) Jesse: Build G1 Jesse\n\n28) zoltar: Discover R2 Zoltar Y2 Yellowstone\n\n29) Jesse: Build B1 Golem\n\n30) zoltar: Move B2 Zoltar Greenbelt\n\n31) Jesse: Move B1 Golem Gorgon\n\n\n32) zoltar: Build B3 Greenbelt\n\n33) Jesse: Build B3 Gorgon\n\n34) zoltar: Trade B3 R3 Greenbelt\n\n35) Jesse: Trade B3 Y3 Gorgon\n\n36) zoltar: Build B3 Greenbelt\n\n37) Jesse: Build B3 Gorgon\n\n\n38) zoltar: Discover R3 Greenbelt B3 Bluemoon\n\n39) Jesse: Build R2 Gorgon\n\n40) zoltar: Build R3 Greenbelt\n\n41) Jesse: Discover R1 Golem Y2 Yeti\n\n42) zoltar: Sacrifice Y3 Greenbelt\nMove R1 Greenbelt Bluemoon\nMove R1 Bluemoon Gorgon\nMove R3 Bluemoon Gorgon\nCatastrophe Gorgon R\n\n43) Jesse: Trade B3 R3 Gorgon\n\tzoltar: Yeah, looks like you&#39;ve got a doomsday machine there and I&#39;m pretty much doomed!\n\tJesse: Yes, I&#39;m afraid your turns are numbered, my friend.\n\n44) zoltar: Sacrifice Y1 Zoltar\nDiscover B3 Greenbelt Y3 Yellowbelly\n\n45) Jesse: Build R1 Gorgon\n\n46) zoltar: Build B3 Greenbelt\n\n47) Jesse: Move R3 Gorgon Zoltar\n\n\tzoltar: Yep, it&#39;s mate in 2.  Good game!\n\nHomeworlds Online (SDG# 13547)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2009.5.30, Ended: 2009.5.31\nParticipants: Qat (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 R3 G3\n\n2) Qat: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\tQat: Hi there, good luck to you\n\n4) Qat: Build G1 Qat\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Qat: Discover G1 Qat B3 Chaos\n\n7) zoltar: Build G1 Zoltar\n\n8) Qat: Build G1 Qat\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) Qat: Discover G1 Qat B3 Whoosh\n\n11) zoltar: Build B1 Zoltar\n\n12) Qat: Build G1 Qat\n\n13) zoltar: Build G2 Zoltar\n\n14) Qat: Build G2 Whoosh\n\n15) zoltar: Trade G2 Y2 Zoltar\n\n16) Qat: Trade G2 B2 Whoosh\n\n17) zoltar: Build G2 Zoltar\n\n18) Qat: Build G2 Whoosh\n\n19) zoltar: Discover B1 Zoltar Y2 Yellowstone\n\n20) Qat: Trade G2 Y2 Whoosh\n\n21) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n22) Qat: Sacrifice G3 Qat\nBuild G2 Whoosh\nBuild G3 Chaos\nBuild G3 Qat\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Yellowstone\n\n24) Qat: Move B2 Whoosh Yellowstone\n\n25) zoltar: Trade B3 R3 Yellowstone\n\n26) Qat: Discover B2 Yellowstone Y1 Endgame\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild B3 Yellowstone\n\n\tQat: Cheers.\n\tzoltar: I thought you had the upper hand for a while when you threatened to get all the Greens, but breaking open with the Blue industry gave me the lead.\n\nHomeworlds Online (SDG# 13484)\nStarted: 2009.6.3, Ended: 2009.6.10\nParticipants: TwoShort (S), aleis (N)\nWinner: TwoShort\n\n1) aleis: Homeworld G2 B3 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\taleis: Hi there, just to let you know I&#39;m new to both homeworld and SDG so bare with me if you will.\n\n3) aleis: Build Y1 Aleis\n\tTwoShort: Welcome! I&#39;ll try to give you some tips from time to time, but they&#39;ll probably mostly be slightly to late to help you :)  For example, I&#39;d recomend starting with a green ship.\n\n4) TwoShort: Build G1 Twoshort\n\n5) aleis: Build Y1 Aleis\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) aleis: Trade Y1 B1 Aleis\n\n8) TwoShort: Build G1 Twoshort\n\n9) aleis: Discover B1 Aleis G1 Acentari\n\n10) TwoShort: Build G1 Twoshort\n\n11) aleis: Build B1 Acentari\n\n12) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n13) aleis: Trade B1 R1 Acentari\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n15) aleis: Move Y1 Aleis Acentari\n\tTwoShort: Essential Homeworlds tactic #1: The Factory. (this is a big part of why to start with a green ship)\n\n16) TwoShort: Trade G2 R2 Bluonia\n\n17) aleis: Build R1 Acentari\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n19) aleis: Trade Y3 G3 Aleis\n\n20) TwoShort: Trade G3 Y3 Bluonia\n\n21) aleis: Move R1 Acentari Aleis\n\tTwoShort: Unfortunately, it&#39;s too late to take the green now.  If you build another one, I&#39;ll sacrifice my big yellow to move a green of my own all the way to your Homeworld and cause a catastrophe.\n\n22) TwoShort: Discover G2 Bluonia Y1 Yolonda\n\n23) aleis: Build R2 Acentari\n\n24) TwoShort: Sacrifice Y3 Bluonia\nMove G1 Bluonia Yolonda\nMove G1 Yolonda Aleis\nMove G2 Yolonda Aleis\nCatastrophe Aleis Green\n\n25) aleis: Move R2 Acentari Aleis\n\n26) TwoShort: Move G3 Twoshort Aleis\n\n\nHomeworlds Online (SDG# 13530)\nStarted: 2009.6.3, Ended: 2010.6.29\nParticipants: MikeYarrum (S), aleis (N)\nWinner: MikeYarrum\n\n1) aleis: Homeworld G2 Y3 B3\n\n\nHomeworlds Online (SDG# 13550)\nStarted: 2009.6.3, Ended: 2009.10.28\nParticipants: aleis (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) aleis: Homeworld G3 Y2 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) aleis: Build B1 Aleis\n\n5) ts52: Trade G1 B1 Ts52\n\n6) aleis: Trade B1 G1 Aleis\n\taleis: Will try still fairly new at this,  \n\n7) ts52: Build G1 Ts52\n\n8) aleis: Build B1 Aleis\n\n9) ts52: Discover B1 Ts52 G3 Kermit\n\n10) aleis: Trade B1 R1 Aleis\n\n11) ts52: Build B1 Kermit\n\n12) aleis: Discover R1 Aleis G1 Porcky\n\n13) ts52: Trade B1 R1 Kermit\n\n14) aleis: Build B1 Aleis\n\n15) ts52: Build G2 Ts52\n\n16) aleis: Build R1 Porcky\n\n17) ts52: Build R2 Kermit\n\taleis: What command do i use to grow a ship?\n\n18) aleis: Build R2 Porcky\n\tts52: You can&#39;t actually grow a ship. You can only build a new ship with the green power (cloning the color of a ship you have in that system, using the smallest available size from the stash)\n\n19) ts52: Trade B1 Y1 Kermit\n\n20) aleis: Trade B1 Y1 Aleis\n\n21) ts52: Move R1 Kermit Porcky\nCatastrophe Porcky Red\n\n22) aleis: Build B1 Aleis\n\n23) ts52: B Y2 Kermit\n\n24) aleis: Trade B1 R1 Aleis\n\n25) ts52: Discover G2 Ts52 Y3 Bigbird\n\n26) aleis: Discover Y1 Aleis G1 Elmer\n\n27) ts52: Discover Y2 Kermit B1 Grover\n\n28) aleis: Build Y2 Elmer\n\n29) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Ts52\nBuild G3 Ts52\n\n30) aleis: Build Y3 Elmer\n\n31) ts52: Move Y1 Kermit Elmer\nCatastrophe Elmer Yellow\n\n32) aleis: Trade B3 Y3 Aleis\n\n33) ts52: Discover G2 Ts52 Y3 Zoe\n\n34) aleis: Move G1 Aleis Grover\n\n35) ts52: Sacrifice G3 Ts52\nBuild G1 Zoe\nBuild G3 Ts52\nBuild R1 Kermit\n\n\nHomeworlds Online (SDG# 13284)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.4, Ended: 2009.6.4\nParticipants: agentofchaos (S), Joe (N)\nWinner: agentofchaos\n\n1) Joe: Homeworld G1 Y2 B3\n\n2) agentofchaos: Homeworld R3 B1 G3\n\tJoe: Hi agentofchaos, good luck (maybe you dont even need it, this is my first game ;) )\r\n\n\tagentofchaos: Hi Joe, thanks, I could always use some luck! I&#39;ve played this a few times, but I&#39;m no expert. I hope you enjoy it :-)\n\n3) Joe: Discover B3 Joe R3 Dilant\n\tJoe: Hmmm some serious mistake here...\n\tJoe: Ahh indeed, no ships in my homeworld :( Shall I set up a new game and we will begin the same as here?\r\n\n\n\nHomeworlds Online (SDG# 13580)\nVariants: &quot;Unrated&quot;\nStarted: 2009.6.5, Ended: 2009.6.13\nParticipants: fumanstu (S), Joe (N)\nWinner: Joe\n\n1) Joe: Homeworld G1 Y2 B3\n\tJoe: Hi fumantsu! Good luck! (And smack me if I do something wrong...)\n\n\nHomeworlds Online (SDG# 13584)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.5, Ended: 2009.6.12\nParticipants: Joe (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B3 R2 G3\n\n2) Joe: Homeworld G1 Y2 B3\n\tagentofchaos: Hi again Joe. I think it takes a while to get the hang of the rules in this game, it&#39;s a bit complicated I know. I hope you enjoy it anyway :-)\n\tJoe: Well, after reading I guess it is not THAT complicated, but such simple mistakes happen ;)\r\n\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Joe: Build B1 Joe\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Joe: Build B1 Joe\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) Joe: Trade B1 G1 Joe\n\n9) agentofchaos: Build G2 Agentofchaos\n\n10) Joe: Build G2 Joe\n\n11) agentofchaos: Trade G1 B1 Agentofchaos\n\n12) Joe: Build B1 Joe\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) Joe: Trade B1 R1 Joe\n\n15) agentofchaos: Trade B2 Y2 Agentofchaos\n\n16) Joe: Trade B3 Y3 Joe\n\n17) agentofchaos: Discover G2 Agentofchaos Y1 Cymru\n\n18) Joe: Discover G2 Joe Y3 Prok\n\n19) agentofchaos: Build G1 Agentofchaos\n\n20) Joe: Trade Y3 R3 Joe\n\n21) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G3 Cymru\nBuild G3 Agentofchaos\n\n22) Joe: Move R3 Joe Prok\n\n23) agentofchaos: Trade G1 R1 Agentofchaos\n\n24) Joe: Move R3 Prok Cymru\n\n25) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R3 Cymru\n\n26) Joe: Build B1 Joe\n\n27) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R3 Cymru Prok\nMove R3 Prok Joe\n\n28) Joe: Move B1 Joe Prok\n\n29) agentofchaos: Sacrifice B1 Agentofchaos\nTrade G3 R3 Cymru\n\n30) Joe: Build R1 Joe\n\n31) agentofchaos: Sacrifice R3 Cymru\nAttack R1 Joe\nAttack R1 Joe\nAttack G1 Joe\n\n32) Joe: Move G2 Prok Joe\n\n33) agentofchaos: Attack G2 Joe\n\tJoe: Tough one there...\r\n\n\tJoe: m g2 prok joe\n\n\tagentofchaos: Yes, once I got my r3 into your homeworld you were pretty well lost :-)\n\tJoe: I will resign with dignity then ;)\n\tJoe: Thx, enlightening experience!\r\n\n\tagentofchaos: Thanks for a fun game! We can play again any time :-)\n\nHomeworlds Online (SDG# 13607)\nVariants: &quot;Unrated&quot;\nStarted: 2009.6.8, Ended: 2009.6.11\nParticipants: ZackStack (S), Joe (N)\nWinner: ZackStack\n\n1) Joe: Homeworld Y1 G2 B3\n\tJoe: HI Zack! Good luck and... smack me if I make a BIG mistake ;)\n\n2) ZackStack: Homeworld B3 R1 G3\n\tZackStack: Hey Joe!  There&#39;s no luck in Homeworlds :-P  Have fun anyway! :D  I&#39;ve only played around 10 games myself, but I&#39;ll point out anything really strange I see.\n\n3) Joe: Build B1 Joe\n\n4) ZackStack: Build G1 Zackstack\n\n5) Joe: Build B1 Joe\n\tZackStack: Well... I just learned a rule I had missed in my tabletop games!  I thought you could build any color of ship if you had green tech... The restriction on like color ships will require more planning!\n\tJoe: Yup, thought about it also in that way...\r\n\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) Joe: Discover B1 Joe G3 Prinsh\n\n8) ZackStack: Build G1 Zackstack\n\n9) Joe: Build B1 Prinsh\n\n10) ZackStack: Discover G1 Zackstack B2 Azure\n\n11) Joe: Build B2 Prinsh\n\tZackStack: Nice work blocking up the blue ships for a bit!  It looks like I&#39;m behind the learning curve now that I can&#39;t spawn any color ship I want!\n\n12) ZackStack: Build G1 Azure\n\tJoe: That may be pure luck, not a strategy (for now) ;)\r\n\n\n13) Joe: Trade B2 R2 Prinsh\n\n14) ZackStack: Build Y1 Zackstack\n\tZackStack: chuckle...  I know when I&#39;m getting sharked :-D\n\n15) Joe: Trade B3 Y3 Joe\n\n16) ZackStack: Build Y2 Zackstack\n\tJoe: Ha! The longer road then...\n\tZackStack: Of course my move should buy me a little time :-)\n\tZackStack: Hmmm... Unexpected.  Nice move!\n\n17) Joe: Move Y3 Joe Prinsh\n\n18) ZackStack: Sacrifice Y2 Zackstack\nDiscover G1 Azure Y3 Sunshine\nMove G1 Azure Sunshine\n\tJoe: We shall see... I am off home so dont know about playing today yet. Maaan this is interesting, I might get it on a table at home (though proxying with one Xeno stash instead of a Rainbow...).\r\n\n\n19) Joe: Build B2 Joe\n\tZackStack: I know what you mean about interesting!  This is my favorite Icehouse game and it got even better now that I&#39;m playing the build tech right.\n\tZackStack: Good luck with any table top play too!  I hope the colors don&#39;t end up confusing anyone too much.  Also, there is a three player unrated game waiting on the challenge board if you really want to break your brain (I&#39;ve never played with more than two players...)\n\n20) ZackStack: Move G1 Sunshine Joe\n\n21) Joe: Trade Y3 R3 Prinsh\n\n22) ZackStack: Build G1 Joe\n\n23) Joe: Build B2 Joe\n\tZackStack: Did you get a chance to play tabletop yesterday?\n\tJoe: Nope... all my tabletop plays (also with other games) happen rather irregularly, as my wife is not that interested in gaming, maybe except Stone Age a couple of times, so I have to resort to scarce playing with my Dad and my brother, who live nearby... And I have a lot of work around the house ;) So sometimes I invite them both to help me out and after that we can play a game or two. But I plan to soon!\n\n24) ZackStack: Build G2 Sunshine\n\n25) Joe: Sacrifice R2 Prinsh\nAttack G1 Joe\nAttack G1 Joe\n\tZackStack: I know the feeling... My wife loves Alhambra and Ingenious so I get to play plenty of those.  I do have a weekly game club, but I rarely have sucess bringing out the pyramids there.\n\n26) ZackStack: Move G1 Sunshine Joe\nCatastrophe Joe Green\n\tJoe: Whew... I fought! :)\n\tZackStack: Indeed.  I wondered how long until you zapped those guys... now to learn about catastrophes!\n\n27) Joe: Trade B2 Y2 Joe\n\n28) ZackStack: Build Y2 Zackstack\n\tZackStack: Sorry about the undo... I forgot about the carriage return between commands...\n\tJoe: Ah, yes. Now I know the effect ;)\n\n29) Joe: Build B2 Prinsh\n\n30) ZackStack: Build G1 Zackstack\n\tZackStack: Of course now I have to be a little less aggressive since I used so many of my own ships to do that...\n\n31) Joe: Trade B2 Y2 Prinsh\n\n32) ZackStack: Discover Y2 Zackstack R2 Crimson\n\n33) Joe: Trade B1 R1 Joe\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Crimson\nBuild Y3 Zackstack\nBuild G1 Sunshine\n\n35) Joe: Move R3 Prinsh Joe\n\n36) ZackStack: Sacrifice Y3 Zackstack\nMove Y3 Crimson Joe\nMove G2 Sunshine Crimson\nMove Y2 Crimson Joe\nCatastrophe Joe Yellow\n\n\tZackStack: Thanks for playing!  I&#39;m looking forward to the rematch!\n\nHomeworlds Online (SDG# 13595)\nStarted: 2009.6.8, Ended: 2009.6.28\nParticipants: Joe (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld G2 B1 Y3\n\tJoe: Hi Laurie! Good luck!\n\tLaurie_Menke: Hi Joe... you, too!  Sorry for the delay in getting started.  I moved this weekend and am just getting back into &quot;normal&quot; life.  ;o)\r\n\r\nLet me know if you have any questions!\n\n2) Joe: Homeworld R1 B2 G3\n\tJoe: No probs Laurie! Sure, if I will have some, I will shout out. Or if you see something utterly stupid :) shout back...\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\n4) Joe: Build G1 Joe\n\n5) Laurie_Menke: Build Y1 Laurie_menke\n\n6) Joe: Build G1 Joe\n\n7) Laurie_Menke: Discover Y3 Laurie_menke G3 Jollygreengiant\n\n8) Joe: Trade G3 R3 Joe\n\n9) Laurie_Menke: Build Y1 Laurie_menke\n\n10) Joe: Trade G1 B1 Joe\n\n11) Laurie_Menke: Build Y2 Jollygreengiant\n\n12) Joe: Build G1 Joe\n\n13) Laurie_Menke: Discover Y1 Laurie_menke Y3 Bigyellowsun\n\n14) Joe: Pass\n\n15) Laurie_Menke: Discover Y1 Laurie_menke Y3 Bigyellowmoon\n\n16) Joe: Build G1 Joe\n\n17) Laurie_Menke: Discover Y2 Jollygreengiant Y2 Yellowsubmarine\n\n18) Joe: Build B1 Joe\n\tLaurie_Menke: Hey, Joe... I just realized that I meant to make this an unrated game, but accidentally made it rated.  I&#39;m sorry.  :o(  If you want to play another game (it takes a few to get the hang of it), feel free to challenge me any time, and definitely make it unrated.  :o)\n\tJoe: That&#39;s no problem :) And I cannot move effectively, as I forgot to include yellow in my starting point :D\n\n19) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: Right.  And I took advantage of that and used up all the yellow so it would be hard for you to trade for some.  ;o)  That&#39;s how I learned... just played a few games until I got the hang of what kind of mischief my opponent could cook up.  ;o)\n\n20) Joe: Pass\n\tJoe: So I sit tight and wait...\n\n21) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\n22) Joe: Build R1 Joe\n\n23) Laurie_Menke: Sacrifice Y2 Yellowsubmarine\nMove B2 Laurie_menke Bigyellowmoon\nMove B2 Bigyellowmoon Joe\nCatastrophe Joe B\n\n24) Joe: Pass\n\tLaurie_Menke: Sorry... this game can be brutal sometimes.  :o(\n\tJoe: Yes, especially when you start weirdly ;)\r\nI guess I am done for, as you can bash me with catastrophes on and on (one red and I am dead). Shall we call it quits now, rather than later?\n\n25) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: Sure.  You actually did quite well for one of your first games.  It took me several games just to understand what to do without having to ask my opponent for help all the time.  :o)  If you&#39;d like to go again, feel free to challenge me any time.  And thanks for the fun!  :o)\n\n\tJoe: Thx for the game also! I will sure come back again ;)\n\nHomeworlds Online (SDG# 13608)\nStarted: 2009.6.8, Ended: 2009.7.1\nParticipants: Joe (S), molnar (N)\nWinner: Joe\n\n1) molnar: Homeworld Y3 B1 G3\n\tJoe: Hi molnar! And good luck! :)\n\n2) Joe: Homeworld B1 G2 Y3\n\n3) molnar: Build G1 Molnar\n\n4) Joe: Build Y1 Joe\n\n5) molnar: Trade G1 R1 Molnar\n\n6) Joe: Build Y1 Joe\n\n7) molnar: Build G1 Molnar\n\n8) Joe: Trade Y1 G1 Joe\n\n9) molnar: Discover G1 Molnar Y2 Xxx\n\n10) Joe: Build G1 Joe\n\n11) molnar: Build G2 Molnar\n\n12) Joe: Trade G1 B1 Joe\n\n13) molnar: Move R1 Molnar Xxx\n\n14) Joe: Discover G1 Joe Y3 Bob\n\n15) molnar: Move G2 Molnar Xxx\n\n16) Joe: Trade Y3 R3 Joe\n\n17) molnar: Move G1 Xxx Molnar\n\n18) Joe: Build R1 Joe\n\n19) molnar: Trade G3 B3 Molnar\n\n20) Joe: Move B1 Joe Bob\n\n21) molnar: Build B2 Molnar\n\n22) Joe: Build Y1 Joe\n\n23) molnar: Move B3 Molnar Xxx\n\n24) Joe: Build B2 Bob\n\n25) molnar: Trade B2 R2 Molnar\n\n26) Joe: Trade B2 R2 Bob\n\n27) molnar: Build B2 Xxx\n\n28) Joe: Move R1 Joe Bob\n\n29) molnar: Trade B3 R3 Xxx\n\n30) Joe: Build R1 Joe\n\n31) molnar: Build B2 Xxx\n\n32) Joe: Build G1 Bob\n\n33) molnar: Trade B2 Y2 Xxx\n\n34) Joe: Move R3 Joe Bob\n\n35) molnar: Move R1 Xxx Bob\nCatastrophe Bob Red\n\n36) Joe: Move G1 Bob Joe\n\n37) molnar: Move R3 Xxx Bob\n\n38) Joe: Build G2 Joe\n\n\tmolnar: huh? did I time out?\n\tJoe: Yup, unfortunately....\n\nHomeworlds Online (SDG# 13643)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2009.6.11, Ended: 2010.1.25\nParticipants: johannz (S), untcodegeek (N), riddick (E)\nWinner: riddick\n\n1) untcodegeek: Homeworld B1 Y2 G3\n\n2) riddick: Homeworld Y1 B2 G3\n\n3) johannz: Homeworld G3 Y1 B3\n\n4) untcodegeek: Build G1 Untcodegeek\n\triddick: From the Homeworlds website -- http://www.wunderland.com/WTS/Ginohn/games/Homeworlds/HomeworldsRules.html -- &quot;Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected.&quot; -- So wouldn&#39;t that mean that my 1 and 2 sized star system homeworld is correct? Phil shouldn&#39;t be able to get to me if my star sizes match his.\n\tjohannz: I didn&#39;t say they were connected. I said they were &quot;close together&quot;. Phil can go to a whatever-3, then straight to your homeworld. But if you had built a Y1, B3, he would have to go to a 2, then a 3, then your homeworld. Instead of 2 jumps away, you would be 3.\n\n5) riddick: Build G1 Riddick\n\triddick: Thanks man -- Phil and I will just be close to each other then this game.\n\n6) johannz: Build B1 Johannz\n\n\tjohannz: See forum message #7611 for details of issue \n\tAaron: Is riddick not able to play?  My tests show he is the current player.\n\tjohannz: No, he is able to. The problem was earlier, on 2009-06-18 10:18:47, when untcodegeek accidently abandoned his homeworld. It glitched, but self-fixed when he undid the move.\n\nHomeworlds Online (SDG# 13639)\nVariants: &quot;Unrated&quot;\nStarted: 2009.6.12, Ended: 2009.6.22\nParticipants: ZackStack (S), Joe (N)\nWinner: ZackStack\n\n1) Joe: Homeworld Y3 B2 G3\n\n2) ZackStack: Homeworld Y3 B1 G3\n\tJoe: And off we go! Good luck!\n\n3) Joe: Build G1 Joe\n\tZackStack: Nice looking color choices to begin... I think I&#39;ll borrow them :-) Enjoy the game!\n\n4) ZackStack: Build G1 Zackstack\n\tJoe: Indeed ;)\r\nYou too!\n\n5) Joe: Build G1 Joe\n\n6) ZackStack: Discover G1 Zackstack B2 Grover\n\n7) Joe: Trade G1 Y1 Joe\n\n8) ZackStack: Build G1 Zackstack\n\n9) Joe: Discover G1 Joe Y1 Fogo\n\n10) ZackStack: Build G2 Grover\n\n11) Joe: Move G1 Fogo Grover\n\n12) ZackStack: Trade G2 R2 Grover\n\n13) Joe: Build G2 Joe\n\n14) ZackStack: Attack G1 Grover\n\n15) Joe: Trade G3 R3 Joe\n\n16) ZackStack: Trade G1 R1 Zackstack\n\tZackStack: I sure wish I had enough room to sacrafice my big green ship... I&#39;ll just have to take your little one instead :-)\n\n17) Joe: Build R1 Joe\n\tJoe: Well well... fighting, eh?\n\n18) ZackStack: Trade G1 Y1 Grover\n\n19) Joe: Discover R3 Joe Y1 Pope\n\n20) ZackStack: Discover R2 Grover G1 Oscar\n\n21) Joe: Move R3 Pope Joe\n\n22) ZackStack: Build G1 Zackstack\n\tZackStack: Ever get the &#39;Vader&#39; theme in your head when you move those big warships? :-)\n\n23) Joe: Build G2 Joe\n\n24) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Zackstack\n\tJoe: Hehe, nope, but I hummed it right now! :)\n\n25) Joe: Move R3 Joe Oscar\n\n26) ZackStack: Sacrifice Y1 Grover\nMove R2 Oscar Grover\n\n27) Joe: Build G3 Joe\n\tZackStack: I sure like that trick :-)\n\n28) ZackStack: Trade G2 Y2 Grover\n\n29) Joe: Trade G3 R3 Joe\n\n30) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Grover\nBuild G3 Zackstack\n\n31) Joe: Build R1 Oscar\n\tZackStack: I see you have a couple SDG games running... So, how are you liking Homeworlds so far?  \n\n32) ZackStack: Discover G3 Grover Y1 Bigbird\n\tJoe: I like it! Mainly the thing that you have to think about many small things and im my phase now I am playing more or less intuitively. But once all of them *click* together, I will be able to foresee certain developments... Gotta buy another Rainbow stash or two ;)\n\n33) Joe: Move Y1 Joe Oscar\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild R2 Grover\nBuild R2 Zackstack\n\n35) Joe: Build R3 Joe\n\n36) ZackStack: Sacrifice Y2 Grover\nMove R2 Grover Bigbird\nMove R2 Bigbird Joe\nCatastrophe Joe Red\n\n37) Joe: Trade G2 B2 Joe\n\n38) ZackStack: Move G3 Bigbird Joe\n\n39) Joe: Move R3 Oscar Joe\n\tZackStack: Maybe 3 turns was optimistic... but possible.  Pull out the stops and show me I&#39;m wrong :-)\n\n40) ZackStack: Sacrifice R2 Zackstack\nAttack R3 Joe\nAttack G2 Joe\n\tJoe: Hehe, the space is vaaaaaaaaaaaaaast...\r\n\n\n\tZackStack: Sorry Joe... the defense was a move to late I fear...\n\tJoe: Ah yesI forgot about the &quot;attack where your ships are&quot; part ;)\r\n\n\tJoe: Congrats! Will create a new one...\r\n\n\nHomeworlds Online (SDG# 13634)\nStarted: 2009.6.12, Ended: 2009.9.8\nParticipants: MrStickman (S), face (N)\nWinner: face\n\n1) face: Homeworld R3 B2 G3\n\tMrStickman: Hiya! Glad you could make it!\n\tMrStickman: Hiya! Glad you could make it!\n\n2) MrStickman: Homeworld G1 Y2 B3\n\tface: going to take some time getting used to these commands.\n\n3) face: Build G1 Face\n\tMrStickman: You do know the clock is currently set to never refill, right? That might hurt during your trip. We can change it later, if you want...\n\tface: nope. had no idea what refill is. thought i was setting it to allow 60 days for each turn.\n\n4) MrStickman: Build B1 Mrstickman\n\n5) face: Trade G3 Y3 Face\n\n6) MrStickman: Build B1 Mrstickman\n\n7) face: Build Y1 Face\n\tMrStickman: Type &quot;~vote accept 85&quot; (without the quotation marks) to make the clock do what you wanted.\n\n8) MrStickman: Trade B1 G1 Mrstickman\n\n9) face: Build G2 Face\n\n10) MrStickman: Discover G1 Mrstickman Y3 Lorem\n\n11) face: Trade G2 R2 Face\n\tface: trade g2 r2 face\n\tface: i just put that in the wrong place. sorry.\n\n12) MrStickman: Build G2 Lorem\n\n13) face: Discover R2 Face Y1 Jabulani\n\n14) MrStickman: Build G2 Lorem\n\n15) face: Move R2 Jabulani Lorem\n\tMrStickman: Welcome back to the Kingdom of Loathing. Noob.\n\n16) MrStickman: Move G2 Lorem Mrstickman\n\n17) face: Attack G2 Lorem\n\n18) MrStickman: Discover G1 Lorem Y2 Ipsum\n\n19) face: Trade Y1 B1 Face\n\n20) MrStickman: Trade B3 R3 Mrstickman\n\n21) face: Discover B1 Face Y1 Algebra Chainsaw\n\n22) MrStickman: Discover G1 Ipsum Y3 Dolor\n\n23) face: Move B1 Algebra Lorem\n\n24) MrStickman: Build R1 Mrstickman\n\n25) face: Build G2 Face\n\n26) MrStickman: Build G3 Dolor\n\n27) face: Build G3 Lorem\n\n28) MrStickman: Build G3 Dolor\n\n29) face: Discover G1 Face Y1 Saveseats\n\tMrStickman: You&#39;re playing more quickly. If you back from camp, do you mind if I speed the clock up a tad?\n\tMrStickman: You&#39;re playing more quickly. If you back from camp, do you mind if I speed the clock up a tad?\n\n30) MrStickman: Discover G3 Dolor B1 Sit\n\n31) face: Trade G3 R3 Lorem\n\tface: i am officially done with the camp thing.\n\n32) MrStickman: Sacrifice G3 Dolor\nBuild G3 Dolor\nBuild G3 Sit\nBuild B2 Mrstickman\n\n33) face: Build B2 Lorem\n\tMrStickman: Type &quot;~vote accept 87&quot; (without the quotes) to speed things up a bit.\n\tMrStickman: By the way, Zach left town, so I informed him that he was signing up for this site. His handle is &quot;Griffandor&quot;.\n\tface: geez this is getting interesting. had to break out the real pieces to better visualize what is going on.\n\n34) MrStickman: Trade G2 Y2 Mrstickman\n\tMrStickman: This *is* a scary good game, so far. I figure ten more moves before I crack and revert to my usual bad gameplay. :)\n\n35) face: Build G2 Saveseats\n\n36) MrStickman: Move R1 Mrstickman Dolor\n\n37) face: Move B2 Lorem Saveseats\n\n38) MrStickman: Build R1 Dolor\n\n39) face: Build B3 Saveseats\n\n40) MrStickman: Move R1 Dolor Sit\n\n41) face: Build B3 Lorem\n\n42) MrStickman: Move B1 Mrstickman Dolor\n\n43) face: Trade B2 Y2 Saveseats\n\n44) MrStickman: Sacrifice G3 Sit\nBuild G3 Sit\nBuild B2 Dolor\nBuild B3 Mrstickman\n\n45) face: Build Y1 Saveseats\n\n46) MrStickman: Trade B1 Y1 Dolor\n\n47) face: Move Y1 Saveseats Lorem\n\tMrStickman: Have I mentioned lately that I love the notepad section on these pages?\n\n48) MrStickman: Sacrifice G3 Sit\nBuild G3 Sit\nBuild R1 Sit\nBuild B1 Dolor\n\n49) face: Move G1 Saveseats Lorem\n\tMrStickman: Also, I think I like this game more on SDG than in real life. I can take ten minutes for my turn and not bother anybody.\n\n50) MrStickman: Sacrifice Y2 Mrstickman\nMove R1 Sit Lorem\nMove R1 Sit Lorem\nCatastrophe Lorem Red\n\n51) face: Sacrifice Y2 Saveseats\nMove G1 Lorem Sit\nMove G2 Lorem Sit\nCatastrophe Sit Green\n\tface: huh. i didn&#39;t think that move was worth your time. but it surprisingly doesn&#39;t change my move.\n\n52) MrStickman: Discover B2 Dolor G1 Amet\n\n53) face: Trade B3 G3 Lorem\n\n54) MrStickman: Discover G1 Dolor B1 Adipiscing\n\n55) face: Build B3 Lorem\n\n56) MrStickman: Move R3 Mrstickman Lorem\n\n57) face: Sacrifice Y3 Face\nMove B1 Lorem Mrstickman\nMove B3 Lorem Mrstickman\nDiscover G3 Lorem Y2 Goodgame\nCatastrophe Mrstickman Blue\n\n\nHomeworlds Online (SDG# 13501)\nVariants: &quot;Unrated&quot;\nStarted: 2009.6.12, Ended: 2009.8.17\nParticipants: ZackStack (S), agentofchaos (N), mzmzmz (E)\nWinner: ZackStack\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) mzmzmz: Homeworld R2 G3 B3\n\tZackStack: This will be my first game of Homeworlds with more than two players... Enjoy taking advantage of my noobness!  Have fun!\n\n3) ZackStack: Homeworld Y1 B3 G3\n\tmzmzmz: My first with more than two too, and only my third game ever :)\n\n4) agentofchaos: Build G1 Agentofchaos\n\tZackStack: Well, clearly we need to gang up on Agent then ;-)  Have fun!\n\tagentofchaos: Looks like I could be in trouble...;-)\n\n5) mzmzmz: Build B1 Mzmzmz\n\n6) ZackStack: Build G1 Zackstack\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) mzmzmz: Build B1 Mzmzmz\n\n9) ZackStack: Discover G1 Zackstack B2 Zaan\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) mzmzmz: Trade B1 Y1 Mzmzmz\n\n12) ZackStack: Build G1 Zaan\n\n13) agentofchaos: Trade G1 B1 Agentofchaos\n\n14) mzmzmz: Discover B1 Mzmzmz G1 Clot\n\n15) ZackStack: Trade G1 Y1 Zaan\n\n16) agentofchaos: Build Y2 Agentofchaos\n\n17) mzmzmz: Build B1 Clot\n\n18) ZackStack: Build Y2 Zaan\n\n19) agentofchaos: Trade Y2 R2 Agentofchaos\n\n20) mzmzmz: Build Y2 Mzmzmz\n\n21) ZackStack: Build G1 Zackstack\n\n22) agentofchaos: Build Y2 Agentofchaos\n\n23) mzmzmz: Move Y2 Mzmzmz Clot\n\n24) ZackStack: Trade G1 R1 Zackstack\n\n25) agentofchaos: Discover Y2 Agentofchaos G3 Draco\n\n26) mzmzmz: Build Y2 Mzmzmz\n\n27) ZackStack: Trade Y1 R1 Zaan\n\n28) agentofchaos: Build G1 Agentofchaos\n\n29) mzmzmz: Move B1 Clot Draco\n\n30) ZackStack: Build G1 Zackstack\n\n31) agentofchaos: Move R2 Agentofchaos Draco\n\n32) mzmzmz: Trade B1 R1 Clot\n\n33) ZackStack: Discover G1 Zaan Y3 Lemon\n\n34) agentofchaos: Attack B1E Draco\n\n35) mzmzmz: Build R2 Clot\n\n36) ZackStack: Build G2 Lemon\n\n37) agentofchaos: Build Y1 Agentofchaos\n\tZackStack: Hey guys... sorry if this slows us down, but I&#39;m leaving for a wedding out of state this weekend and will have no internet access while at my inlaws... I might get a chance to check in on Saturday... Otherwise, I&#39;ll check back in on Monday.\n\n38) mzmzmz: Build Y3 Clot\n\tagentofchaos: Enjoy the wedding! :-)\n\tmzmzmz: Yeah, have fun.\n\n39) ZackStack: Sacrifice G2 Lemon\nBuild Y3 Zaan\nBuild R2 Zackstack\n\n40) agentofchaos: Build Y3 Draco\n\n41) mzmzmz: Move R1 Clot Mzmzmz\n\n42) ZackStack: Discover Y3 Zaan R3 Clifford\n\n43) agentofchaos: Build R3 Draco\n\n44) mzmzmz: Build R3 Clot\n\n45) ZackStack: Sacrifice G1 Zackstack\nBuild R3 Zaan\n\n46) agentofchaos: Trade R2 G2 Draco\n\n47) mzmzmz: Build B1 Mzmzmz\n\n48) ZackStack: Sacrifice G1 Lemon\nBuild Y3 Zaan\n\n49) agentofchaos: Build R2 Draco\n\n50) mzmzmz: Trade B1 G1 Mzmzmz\n\n51) ZackStack: Trade R1 G1 Zackstack\n\n52) agentofchaos: Build B1 Draco\n\n53) mzmzmz: Build G2 Mzmzmz\n\n54) ZackStack: Sacrifice Y3 Zaan\nMove G1 Zackstack Zaan\nMove G1 Zaan Clot\nMove G1 Clot Mzmzmz\nCatastrophe Mzmzmz Green\n\tZackStack: Sorry mz... you made this too easy...\n\n55) agentofchaos: Build B1 Draco\n\n56) mzmzmz: Sacrifice Y2 Mzmzmz\nMove B3 Mzmzmz Clot\nMove Y3 Clot Mzmzmz\n\tmzmzmz: Yeah, I always forget that sacrifice rule.  I thought those greens would be safe for 1 turn . . .\n\n57) ZackStack: Build G1 Zackstack\n\n58) agentofchaos: Discover R3 Draco Y2 Trog\n\n59) mzmzmz: Build B2 Clot\n\n60) ZackStack: Trade R3 G3 Zaan\n\n61) agentofchaos: Move B1 Draco Trog\n\n62) mzmzmz: Trade B2 G2 Clot\n\n63) ZackStack: Build G1 Zaan\n\n64) agentofchaos: Sacrifice G2 Draco\nBuild R1 Trog\nBuild R3 Draco\n\n65) mzmzmz: Build Y3 Clot\n\n66) ZackStack: Move G1 Zaan Clifford\n\n67) agentofchaos: Move G1 Agentofchaos Draco\n\n68) mzmzmz: Build B2 Clot\n\n69) ZackStack: Build G2 Zaan\n\n70) agentofchaos: Build G2 Agentofchaos\n\n71) mzmzmz: Move G2 Clot Mzmzmz\n\n72) ZackStack: Sacrifice Y2 Zaan\nMove G2 Zaan Draco\nMove G3 Zaan Draco\nCatastrophe Draco Green\n\n73) agentofchaos: Discover G2 Agentofchaos Y3 Fallen\n\n74) mzmzmz: Move R3 Clot Zaan\n\n75) ZackStack: Build R2 Zackstack\n\n76) agentofchaos: Build Y2 Agentofchaos\n\tZackStack: I don&#39;t know if I&#39;m being to aggressive in a multi-player game... but that was also too good to pass up!\n\tagentofchaos: Alas, all my beautiful ships...\n\n77) mzmzmz: Trade B2 G2 Clot\n\n78) ZackStack: Build Y2 Clifford\n\n79) agentofchaos: Build G1 Agentofchaos\n\n80) mzmzmz: Build R3 Clot\n\n81) ZackStack: Move R2 Zackstack Mzmzmz\n\n82) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Trog Clot\nMove R1 Clot Mzmzmz\nCatastrophe Mzmzmz R\n\n83) ZackStack: Move Y3 Clifford Clot\n\n84) agentofchaos: Move R3 Trog Clifford\n\tZackStack: Care to do the honors Agent?\n\n85) ZackStack: Sacrifice Y2 Clifford\nMove G1 Clifford Zaan\nMove R1 Zaan Clot\n\tagentofchaos: Sorry Mz, this is too tempting to resist! ;-)\n\n86) agentofchaos: Sacrifice Y1 Agentofchaos\nMove R3 Clifford Zaan\n\n87) ZackStack: Trade G1 R1 Zaan\n\n88) agentofchaos: Trade R3 Y3 Zaan\n\n89) ZackStack: Attack R3E Clot\n\n90) agentofchaos: Trade B1 R1 Agentofchaos\n\n91) ZackStack: Move R3 Clot Fallen\n\n92) agentofchaos: Sacrifice G2 Fallen\nBuild Y1 Zaan\nBuild Y1 Agentofchaos\n\n93) ZackStack: Attack B3E Clot\n\n94) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R3E Zaan\n\n95) ZackStack: Discover Y3 Clot G3 Rygel\n\n96) agentofchaos: Attack R1S Zaan\n\n97) ZackStack: Build Y2 Rygel\n\n98) agentofchaos: Trade Y1 B1 Zaan\n\n99) ZackStack: Attack Y3E Clot\n\n100) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B1 Trog\n\n101) ZackStack: Move B3 Clot Rygel\n\n102) agentofchaos: Sacrifice Y3 Zaan\nMove B1 Trog Zackstack\nMove B1 Trog Zackstack\nMove B1 Zaan Zackstack\nCatastrophe Zackstack B\n\n103) ZackStack: Build B1 Rygel\n\n104) agentofchaos: Trade Y1 G1 Agentofchaos\n\n105) ZackStack: Move R1 Clot Rygel\n\n106) agentofchaos: Trade R1 Y1 Zaan\n\n107) ZackStack: Build B1 Rygel\n\n108) agentofchaos: Discover G1 Agentofchaos Y3 Krakadoom\n\n109) ZackStack: Sacrifice Y3 Clot\nMove B1 Rygel Agentofchaos\nMove B1 Rygel Agentofchaos\nMove B3 Rygel Agentofchaos\nCatastrophe Agentofchaos Blue\n\n110) agentofchaos: Build G1 Agentofchaos\n\n111) ZackStack: Build R1 Rygel\n\n112) agentofchaos: Build Y1 Agentofchaos\n\n113) ZackStack: Sacrifice Y3 Rygel\nMove R1 Rygel Agentofchaos\nMove R1 Rygel Agentofchaos\nMove R3 Fallen Agentofchaos\nCatastrophe Agentofchaos Red\n\n\tZackStack: Good game Agent!  Perhaps we&#39;ll have to try with just the two of us sometime...\n\nHomeworlds Online (SDG# 13647)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2009.6.12, Ended: 2009.6.17\nParticipants: Qat (S), agentofchaos (N)\nWinner: Qat\n\n1) agentofchaos: Homeworld R2 B3 G3\n\n2) Qat: Homeworld B1 Y2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Qat: Build G1 Qat\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Qat: Build G1 Qat\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Qat: Discover G1 Qat B3 Whoosh\n\n9) agentofchaos: Trade Y1 B1 Agentofchaos\n\n10) Qat: Trade G1 B1 Qat\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) Qat: Build B2 Qat\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) Qat: Discover B2 Qat G3 Verte\n\n15) agentofchaos: Trade B2 R2 Agentofchaos\n\n16) Qat: Sacrifice G3 Qat\nBuild B2 Verte\nBuild B2 Verte\nBuild B3 Qat\n\n17) agentofchaos: Discover R2 Agentofchaos Y1 Krombe\n\n18) Qat: Trade B2 R2 Verte\n\n19) agentofchaos: Build B2 Agentofchaos\n\n20) Qat: Sacrifice G1 Whoosh\nBuild B3 Verte\n\n21) agentofchaos: Build Y2 Agentofchaos\n\n22) Qat: Trade B3 Y3 Verte\n\n23) agentofchaos: Discover R2 Krombe B3 Glurgon\n\n24) Qat: Trade B3 G3 Qat\n\n25) agentofchaos: Build G1 Agentofchaos\n\n26) Qat: Build B3 Qat\n\n27) agentofchaos: Trade R2 Y2 Glurgon\n\n28) Qat: Discover B3 Qat Y3 Northward_ho\n\n29) agentofchaos: Build G1 Agentofchaos\n\n30) Qat: Discover B2 Verte Y1 Sandy\n\n31) agentofchaos: Discover B2 Agentofchaos G1 Hagrol\n\n32) Qat: Build Y3 Verte\n\n33) agentofchaos: Move Y2 Agentofchaos Hagrol\n\n34) Qat: Move R2 Verte Hagrol\n\n35) agentofchaos: Trade G1 R1 Agentofchaos\n\n36) Qat: Attack B2 Hagrol\n\n37) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R2 Hagrol\n\n38) Qat: Sacrifice B2 Hagrol\nTrade B1 R1 Qat\nTrade B3 R3 Northward_ho\n\n39) agentofchaos: Move R2 Hagrol Glurgon\n\n40) Qat: Sacrifice Y3 Verte\nMove B2 Verte Sandy\nMove B2 Sandy Agentofchaos\nMove B2 Sandy Agentofchaos\nCatastrophe Agentofchaos B\n\n41) agentofchaos: Build Y1 Hagrol\n\n42) Qat: Build Y3 Verte\n\n43) agentofchaos: Sacrifice Y2 Glurgon\nMove Y1 Hagrol Verte\nMove Y1 Agentofchaos Verte\nCatastrophe Verte Y\n\n44) Qat: Discover R3 Northward_ho B1 Sapphire\n\n45) agentofchaos: Build G1 Agentofchaos\n\n46) Qat: Build G2 Qat\n\n47) agentofchaos: Move G1 Agentofchaos Glurgon\n\n48) Qat: Sacrifice G2 Qat\nBuild G2 Qat\nBuild R1 Sapphire\n\n49) agentofchaos: Build G2 Glurgon\n\n50) Qat: Discover G2 Qat Y3 Sahara\n\n51) agentofchaos: Sacrifice G2 Glurgon\nBuild Y1 Hagrol\nBuild Y1 Hagrol\n\n52) Qat: Build R1 Qat\n\n53) agentofchaos: Build Y2 Agentofchaos\n\n54) Qat: Trade G3 Y3 Qat\n\n55) agentofchaos: Build Y3 Agentofchaos\n\n56) Qat: Sacrifice Y3 Qat\nMove R3 Sapphire Agentofchaos\nMove R1 Sapphire Agentofchaos\nDiscover R1 Qat Y3 Gameover\n\n\nHomeworlds Online (SDG# 13578)\nStarted: 2009.6.15, Ended: 2009.7.29\nParticipants: TwoShort (S), skykingt13 (N)\nWinner: TwoShort\n\n1) skykingt13: Homeworld B3 R2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) skykingt13: Build G1 Skykingt13\n\n\n4) TwoShort: Build G1 Twoshort\n\n5) skykingt13: Trade G1 Y1 Skykingt13\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) skykingt13: Build G1 Skykingt13\n\n8) TwoShort: Build G1 Twoshort\n\n9) skykingt13: Trade G1 B1 Skykingt13\n\n10) TwoShort: Build G1 Twoshort\n\n11) skykingt13: Build B1 Skykingt13\n\n12) TwoShort: Trade G1 B1 Twoshort\n\n13) skykingt13: Trade B1 R1 Skykingt13\n\n14) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 13663)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.15, Ended: 2009.6.16\nParticipants: Qat (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) Qat: Homeworld G1 Y2 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) Qat: Build B1 Qat\n\n5) zoltar: Build G1 Zoltar\n\n6) Qat: Trade B3 G3 Qat\n\n7) zoltar: Trade G1 Y1 Zoltar\n\n8) Qat: Build B1 Qat\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) Qat: Trade B1 Y1 Qat\n\n11) zoltar: Build G1 Zoltar\n\n12) Qat: Build B1 Qat\n\n13) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n14) Qat: Build B2 Qat\n\n15) zoltar: Build B2 Greenbelt\n\n16) Qat: Discover B2 Qat G3 Verte\n\n17) zoltar: Trade B2 Y2 Greenbelt\n\n18) Qat: Build B2 Verte\n\n19) zoltar: Build Y1 Greenbelt\n\n20) Qat: Trade B1 R1 Qat\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\n\n22) Qat: Build R1 Qat\n\tQat: Ouch\n\n23) zoltar: Move Y3 Greenbelt Verte\n\n\nHomeworlds Online (SDG# 13579)\nStarted: 2009.6.15, Ended: 2009.6.19\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 13667)\nStarted: 2009.6.15, Ended: 2009.7.23\nParticipants: zoltar (S), agentofchaos (N)\nWinner: zoltar\n\n1) agentofchaos: Homeworld B3 R2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tagentofchaos: Hi again!\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) zoltar: Build G1 Zoltar\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\tzoltar: Hi!\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) zoltar: Build G1 Zoltar\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) zoltar: Build R2 Zoltar\n\n13) agentofchaos: Build Y1 Agentofchaos\n\n14) zoltar: Build Y2 Zoltar\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n17) agentofchaos: Trade Y1 B1 Agentofchaos\n\n18) zoltar: Trade R1 B1 Zoltar\n\n19) agentofchaos: Discover Y2 Agentofchaos G1 Drogue\n\n20) zoltar: Move R2 Zoltar Greenbelt\n\n21) agentofchaos: Move R1 Agentofchaos Drogue\n\n22) zoltar: Move B1 Zoltar Greenbelt\n\n23) agentofchaos: Move G1 Agentofchaos Drogue\n\n24) zoltar: Build B1 Greenbelt\n\n25) agentofchaos: Build G1 Agentofchaos\n\n26) zoltar: Discover B1 Greenbelt G3 Greengiant\n\n27) agentofchaos: Build G2 Agentofchaos\n\n28) zoltar: Build G2 Zoltar\n\n29) agentofchaos: Move B1 Agentofchaos Drogue\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greenbelt\nBuild B2 Greengiant\n\n31) agentofchaos: Sacrifice G3 Agentofchaos\nBuild B2 Drogue\nBuild Y1 Agentofchaos\nBuild G3 Agentofchaos\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Zoltar\n\n33) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Drogue\nBuild R1 Drogue\nBuild G3 Agentofchaos\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Greenbelt\nBuild B3 Greenbelt\n\n35) agentofchaos: Move Y2 Drogue Greenbelt\nCatastrophe Greenbelt Y\n\n36) zoltar: Sacrifice B2 Greenbelt\nTrade B3 Y3 Greenbelt\nTrade B2 R2 Greengiant\n\n37) agentofchaos: Discover R1 Drogue Y2 Gathlok\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Greenbelt\nBuild R3 Greengiant\n\n39) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R3 Gathlok\n\n40) zoltar: Build B2 Greengiant\n\n41) agentofchaos: Discover R1 Drogue Y2 Flame\n\n42) zoltar: Sacrifice Y3 Zoltar\nMove R2 Greenbelt Greengiant\nMove R2 Greengiant Gathlok\nMove R2 Greengiant Gathlok\nCatastrophe Gathlok R\n\n43) agentofchaos: Trade B2 Y2 Drogue\n\n44) zoltar: Sacrifice G2 Zoltar\nBuild Y1 Greenbelt\nBuild Y3 Zoltar\n\n45) agentofchaos: Move R1 Flame Zoltar\n\n46) zoltar: Attack R1 Zoltar\n\n47) agentofchaos: Build Y2 Agentofchaos\n\tzoltar: Sorry, I was sick the last couple of days and have been distracted.  I want to look this over when I have more time tomorrow or the day after.\n\n48) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Greenbelt Greengiant\nMove R3 Greenbelt Drogue\n\tzoltar: On second thought, I just went for the most greedy move. When in doubt, hoard big ships.\n\tagentofchaos: Take as much time as you need, there&#39;s no rush.\r\nHoarding big ships seems to work pretty well!\n\n49) agentofchaos: Sacrifice Y2 Drogue\nDiscover Y3 Drogue G2 Karnak\nMove B1 Drogue Agentofchaos\n\n50) zoltar: Attack G1 Drogue\n\n51) agentofchaos: Trade Y1 R1 Agentofchaos\n\n52) zoltar: Move B1 Greengiant Drogue\n\n53) agentofchaos: Discover R1 Agentofchaos Y1 Grump\n\n54) zoltar: Build B2 Drogue\n\n55) agentofchaos: Build Y2 Karnak\n\n56) zoltar: Build Y2 Greengiant\n\n57) agentofchaos: Move R1 Grump Karnak\n\n58) zoltar: Build G1 Zoltar\n\n59) agentofchaos: Build R2 Karnak\n\n60) zoltar: Move R1 Zoltar Greenbelt\n\n61) agentofchaos: Discover B1 Agentofchaos Y1 Ghast\n\n62) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greengiant\nBuild B3 Greenbelt\n\n63) agentofchaos: Move B1 Ghast Karnak\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Drogue\nBuild R3 Greenbelt\n\n65) agentofchaos: Discover G2 Agentofchaos Y1 Kakradoom\n\n66) zoltar: Sacrifice Y2 Greengiant\nMove R3 Greenbelt Kakradoom\nMove B3 Greenbelt Kakradoom\n\n67) agentofchaos: Build Y2 Agentofchaos\n\n68) zoltar: Sacrifice Y3 Greenbelt\nMove R2 Drogue Agentofchaos\nMove R3 Drogue Agentofchaos\nMove R3 Kakradoom Agentofchaos\nCatastrophe Agentofchaos R\n\n\tzoltar: The Death Star is now in range of the Rebel Base. Prepare to Fire!\n\tagentofchaos: The rebels better surrender while they still have the chance! Well played. \n\nHomeworlds Online (SDG# 13666)\nStarted: 2009.6.18, Ended: 2009.6.23\nParticipants: MikeYarrum (S), CheshireSwift (N)\nWinner: CheshireSwift\n\n1) CheshireSwift: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 13677)\nStarted: 2009.6.19, Ended: 2009.6.29\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 13672)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.19, Ended: 2009.6.20\nParticipants: zoltar (S), Qat (N)\nWinner: zoltar\n\n1) Qat: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) Qat: Build G1 Qat\n\n4) zoltar: Build G1 Zoltar\n\n5) Qat: Trade G1 B1 Qat\n\n6) zoltar: Trade G1 B1 Zoltar\n\n7) Qat: Build B2 Qat\n\n8) zoltar: Build B2 Zoltar\n\n9) Qat: Discover B2 Qat G3 Verte\n\n10) zoltar: Trade B1 Y1 Zoltar\n\n11) Qat: Build B1 Verte\n\n12) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n13) Qat: Trade B1 Y1 Verte\n\n14) zoltar: Build G1 Zoltar\n\n15) Qat: Build G1 Qat\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) Qat: Trade G1 R1 Qat\n\n18) zoltar: Build G1 Zoltar\n\n19) Qat: Build R2 Qat\n\n20) zoltar: Build R2 Zoltar\n\n21) Qat: Move R2 Qat Verte\n\n22) zoltar: Move R2 Zoltar Greenbelt\n\n23) Qat: Build B1 Verte\n\n24) zoltar: Trade R2 Y2 Greenbelt\n\n25) Qat: Trade B2 Y2 Verte\n\n26) zoltar: Move R1 Zoltar Greenbelt\n\n27) Qat: Discover Y2 Verte G2 Produce\n\n28) zoltar: Build R2 Greenbelt\n\n29) Qat: Sacrifice G3 Qat\nBuild B2 Verte\nBuild R2 Verte\nBuild R3 Qat\n\n30) zoltar: Discover R2 Greenbelt Y1 Yellowstone\n\n31) Qat: Build Y3 Produce\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\nBuild R3 Yellowstone\n\n33) Qat: Sacrifice Y2 Produce\nMove R2 Verte Yellowstone\nMove R2 Verte Yellowstone\nCatastrophe Yellowstone R\n\n34) zoltar: Build R2 Greenbelt\n\n35) Qat: Trade R1 G1 Qat\n\n\tzoltar: Why resign in such a close game? Am I missing something?\n\nHomeworlds Online (SDG# 13679)\nStarted: 2009.6.19, Ended: 2009.11.20\nParticipants: MikeYarrum (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n\nHomeworlds Online (SDG# 13682)\nStarted: 2009.6.20, Ended: 2009.7.7\nParticipants: ts52 (S), ZackStack (N)\nWinner: ts52\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi TS!  I&#39;ve played a bit more Homeworlds on the tabletop than I have of Volcano... but I&#39;m still interested in learning some new tricks!  I hope I&#39;m more of a challenge here than I turned out to be in Volcano :-)\n\n2) ts52: Homeworld Y2 B3 G3\n\tts52: Hey, happy to play either game. I&#39;m still trying to work out homeworlds strategy. But I have a lot of fun playing.\n\n3) ZackStack: Build G1 Zackstack\n\tZackStack: Strategy would involve thinking, so I try to stay away from the stuff :-p\n\n4) ts52: Build G1 Ts52\n\tts52: Heh, good plan, (or unplan).\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) ts52: Discover G1 Ts52 B1 Gonzo\n\n7) ZackStack: Build G1 Zackstack\n\n8) ts52: Build G1 Gonzo\n\n9) ZackStack: Discover G1 Zackstack B3 Grover\n\n10) ts52: Build G2 Ts52\n\n11) ZackStack: Build Y1 Zackstack\n\n12) ts52: Trade G2 Y2 Ts52\n\n13) ZackStack: Build G2 Grover\n\n14) ts52: Build G2 Ts52\n\n15) ZackStack: Trade G1 R1 Grover\n\n16) ts52: Trade G2 R2 Ts52\n\n17) ZackStack: Build G1 Zackstack\n\n18) ts52: Build G2 Ts52\n\n19) ZackStack: Move Y1 Zackstack Grover\n\n20) ts52: Move Y2 Ts52 Gonzo\n\n21) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Grover\nBuild G3 Zackstack\n\n22) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Grover\nMove G1 Grover Zackstack\nCatastrophe Zackstack Green\n\n23) ZackStack: Move G2 Grover Gonzo\n\tZackStack: I expected that might happen, but there was a chance you&#39;d overlook it :-)\n\n24) ts52: Trade G3 Y3 Ts52\n\n25) ZackStack: Move G3 Grover Zackstack\n\tts52: Only a very, very small chance... (-:\n\n26) ts52: Build G1 Ts52\n\n27) ZackStack: Trade G2 R2 Gonzo\n\n28) ts52: Discover G2 Ts52 B1 Blueberry\n\n29) ZackStack: Attack G1S Gonzo\n\n30) ts52: Build Y1 Ts52\n\n31) ZackStack: Move Y1 Grover Gonzo\n\n32) ts52: Trade Y3 G3 Ts52\n\n33) ZackStack: Build Y2 Zackstack\n\n34) ts52: Move Y1 Ts52 Blueberry\n\n35) ZackStack: Build G1 Zackstack\n\n36) ts52: Move R2 Ts52 Blueberry\n\n37) ZackStack: Move Y2 Zackstack Grover\n\n38) ts52: Discover G2 Blueberry Y3 Bigbird\n\n39) ZackStack: Sacrifice G3 Zackstack\nBuild Y2 Grover\nBuild Y3 Zackstack\nBuild Y3 Gonzo\n\n40) ts52: Move G1 Ts52 Blueberry\n\tZackStack: Mmmm... Bright shiny yellow...\n\n41) ZackStack: Discover Y2 Grover R1 Elmo\n\n42) ts52: Sacrifice G2 Bigbird\nBuild Y3 Blueberry\nBuild G2 Ts52\n\n43) ZackStack: Discover Y2 Grover B1 Herry\n\tZackStack: Clever move turning that star into a big ship! I like it!\n\n44) ts52: Build G2 Blueberry\n\n45) ZackStack: Build G2 Zackstack\n\n46) ts52: Discover G2 Blueberry B3 Grape\n\n47) ZackStack: Build G3 Gonzo\n\n48) ts52: Sacrifice G2 Ts52\nBuild G2 Grape\nBuild G3 Blueberry\n\n49) ZackStack: Sacrifice Y3 Gonzo\nMove G1 Gonzo Ts52\nMove G3 Gonzo Ts52\nMove R2 Gonzo Ts52\n\n\n50) ts52: Sacrifice R2 Blueberry\nAttack G3N Ts52\nAttack R2N Ts52\n\n51) ZackStack: Sacrifice G2 Zackstack\nBuild G2 Ts52\nBuild Y3 Elmo\nCatastrophe Ts52 Green\n\n52) ts52: Move G3 Blueberry Ts52\n\n53) ZackStack: Trade Y2 G2 Herry\n\n54) ts52: Move Y1 Blueberry Grape\n\tZackStack: Hmmm... I would have been much better off moving a Y to your system than that R... I am still learning a lot of the nuances!\n\n55) ZackStack: Build G1 Herry\n\n56) ts52: Build G3 Blueberry\n\n57) ZackStack: Build G3 Zackstack\n\n58) ts52: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y2 Blueberry\nBuild R2 Ts52\n\n59) ZackStack: Trade G2 R2 Herry\n\n60) ts52: Move R2 Ts52 Gonzo\n\n61) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Herry\nBuild G3 Zackstack\nBuild R3 Herry\n\n62) ts52: Attack Y1N Gonzo\n\n63) ZackStack: Sacrifice Y3 Elmo\nMove G1 Herry Ts52\nMove R3 Herry Ts52\nMove G2 Herry Ts52\n\n64) ts52: Sacrifice R2 Ts52\nAttack R3N Ts52\nAttack G2N Ts52\n\n65) ZackStack: Sacrifice G1 Zackstack\nBuild G1 Ts52\nCatastrophe Ts52 Green\n\tZackStack: I thought that was a pretty solid attack, but wondered what response I&#39;d missed... Thanks for another lesson :-)\n\n66) ts52: Move G3 Blueberry Ts52\n\n67) ZackStack: Move Y1 Zackstack Grover\n\n68) ts52: Sacrifice G2 Grape\nBuild R2 Ts52\nBuild R3 Gonzo\n\tts52: Sorry for the delay, I was away on vacation.\n\tZackStack: Not a problem.  I hope you had a good time!\n\n69) ZackStack: Trade R1 G1 Grover\n\n70) ts52: Move R3 Ts52 Herry\n\n71) ZackStack: Sacrifice Y1 Grover\nMove R2 Herry Grover\n\n72) ts52: Move R3 Gonzo Grover\n\n73) ZackStack: Sacrifice G1 Grover\nBuild Y1 Elmo\n\n74) ts52: Attack R2 Grover\n\tZackStack: I know I should resign, but its interesting to see such a methodical endgame :-)\n\n75) ZackStack: Discover Y1 Elmo G3 Kermit\n\n76) ts52: Build Y3 Grape\n\tts52: My theory is not to resign until doom is absolutely certain. Never underestimate your opponents ability to really screw things up. ;)\n\n77) ZackStack: Discover Y1 Kermit B2 Beetle\n\tZackStack: Heh.  I hear the fat lady singing and see the writing on the wall, but am pretty interested to see how it finishes :-)\n\n78) ts52: Move Y1 Grape Herry\n\n79) ZackStack: Trade Y1 G1 Beetle\n\n80) ts52: Sacrifice G2 Grape\nBuild R1 Herry\nBuild R3 Grover\n\n81) ZackStack: Move Y2 Elmo Beetle\n\n82) ts52: Sacrifice Y2 Blueberry\nMove R3 Grover Zackstack\nMove R3 Grover Zackstack\n\n83) ZackStack: Attack R3S Zackstack\n\n84) ts52: Sacrifice R3 Herry\nAttack R3N Zackstack\nAttack G3N Zackstack\nAttack Y3N Zackstack\n\tZackStack: And here I pictured you blowing up my red star... Nicely done!  And thanks for the game!\n\n\tts52: I wasn&#39;t sure how this one was going to end for a while either. Thanks for the game.\n\nHomeworlds Online (SDG# 13700)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.22, Ended: 2009.6.26\nParticipants: Joe (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld G1 Y2 R3 *\n\tZackStack: And here we go again!  Time to try an unconventional starting setup... let&#39;s see how bad an idea this is :-)\n\n2) Joe: Homeworld R1 Y3 G3 *\n\tJoe: Yup! Let&#39;s go!\n\n3) ZackStack: Build R1 Zackstack\n\tJoe: Countersetup! \n\tZackStack: No blue for you either?  Now we&#39;re both in trouble :-)\n\n4) Joe: Build G1 Joe\n\n5) ZackStack: Build R1 Zackstack\n\tJoe: Trouble among the stars... :)\n\n6) Joe: Build G1 Joe\n\n7) ZackStack: Discover R1 Zackstack B3 Bigblue\n\n8) Joe: Discover G3 Joe B2 Mb\n\n9) ZackStack: Build R2 Zackstack\n\n10) Joe: Build G2 Joe\n\n11) ZackStack: Move R2 Zackstack Bigblue\n\n12) Joe: Move G1 Joe Mb\n\n13) ZackStack: Trade R2 G2 Bigblue\n\n14) Joe: Trade G3 R3 Mb\n\n15) ZackStack: Build R2 Bigblue\n\n16) Joe: Build G2 Mb\n\n17) ZackStack: Build G3 Bigblue\n\n18) Joe: Build R2 Mb\n\n19) ZackStack: Trade R2 Y2 Bigblue\n\n20) Joe: Trade G1 Y1 Mb\n\n21) ZackStack: Discover G3 Bigblue Y2 Oldyeller\n\n22) Joe: Move R2 Mb Joe\n\tZackStack: I&#39;m still having a mighty fine time playing Homeworlds (and will happily play as many games as you&#39;d like)... but I wondered if you&#39;d like to try any games that are brand new to both of us. I&#39;m interested in Alien City and Pikemen.  Alien you could play tabletop if you made up some tiles and had another game to borrow some cubes for.  Pikemen it will be a while for tabletop, but its a popular chesslike icehouse game.  Let me know and I can set up a challenge (or we can just focus on Homeworlds for the time being...)  \n\n23) ZackStack: Move G3 Oldyeller Joe\n\tZackStack: Hey Joe!  You know to take over a ship you need one ship of equal size in the system right? In other words... moving that R2 to your homeworld wasn&#39;t a defense against my G3 ship.  Feel free to undo if you&#39;d like (or we can just see what happens...)\n\tJoe: Yup, I know that I cannot destroy it with the R2 ;)\r\nAnd I will happily play Alien City, cause it is just the game I am tinkering about (and read the rules two days ago!). I have issued a challenge already so you can jump on that vagon if you like...\n\n24) Joe: Move R3 Mb Bigblue\n\n25) ZackStack: Sacrifice R3 Zackstack\nAttack G1S Joe\nAttack G2S Joe\nAttack R2S Joe\n\tZackStack: Sorry Joe... you missed a big one!\n\tJoe: Ah, yes - attacking in a system with your ship, sacrificing R3 far far away ;)\n\n\nHomeworlds Online (SDG# 13664)\nStarted: 2009.6.23, Ended: 2009.6.25\nParticipants: CheshireSwift (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) CheshireSwift: Homeworld B2 R1 G3\n\tTwoShort: howdy\n\n3) TwoShort: Build G1 Twoshort\n\tCheshireSwift: Hey. Good luck.\n\n4) CheshireSwift: Build G1 Cheshireswift\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) CheshireSwift: Build G1 Cheshireswift\n\n7) TwoShort: Build R2 Twoshort\n\n8) CheshireSwift: Trade G3 R3 Cheshireswift\n\n9) TwoShort: Trade R2 Y2 Twoshort\n\n10) CheshireSwift: Build R2 Cheshireswift\n\n11) TwoShort: Discover R1 Twoshort G2 Grogar\n\n12) CheshireSwift: Trade R3 Y3 Cheshireswift\n\n13) TwoShort: Build R2 Grogar\n\n14) CheshireSwift: Discover R2 Cheshireswift Y3 Aleph\n\n15) TwoShort: Build Y1 Twoshort\n\n16) CheshireSwift: Discover G1 Cheshireswift R3 Bet\n\n17) TwoShort: Build G1 Twoshort\n\n18) CheshireSwift: Build G2 Bet\n\n19) TwoShort: Move Y1 Twoshort Grogar\n\n20) CheshireSwift: Build Y1 Cheshireswift\n\n21) TwoShort: Discover R1 Grogar G3 Gordo\n\n22) CheshireSwift: Discover G1 Cheshireswift Y3 Gimel\n\n23) TwoShort: Move R2 Grogar Gimel\n\n24) CheshireSwift: Move G1 Gimel Grogar\n\n25) TwoShort: Sacrifice R1 Gordo\nAttack G1 Grogar\n\n26) CheshireSwift: Trade Y1 B1 Cheshireswift\n\n27) TwoShort: Move G1 Grogar Gimel\n\n28) CheshireSwift: Trade Y3 G3 Cheshireswift\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Gimel\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n30) CheshireSwift: Move R2 Aleph Grogar\n\n31) TwoShort: Move G3 Twoshort Grogar\n\n32) CheshireSwift: Attack Y1N Grogar\n\n33) TwoShort: Sacrifice R2 Gimel\nAttack R2 Grogar\nAttack Y1 Grogar\n\n34) CheshireSwift: Trade B1 R1 Cheshireswift\n\n35) TwoShort: Sacrifice G3 Grogar\nBuild G3 Gimel\nBuild Y1 Grogar\nBuild R2 Grogar\n\n36) CheshireSwift: Trade R1 Y1 Cheshireswift\n\n37) TwoShort: Move G3 Gimel Cheshireswift\n\n38) CheshireSwift: Attack G3 Cheshireswift\n\n39) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Gimel Cheshireswift\nMove G2 Gimel Cheshireswift\nCatastrophe Cheshireswift Green\n\n40) CheshireSwift: Sacrifice Y1 Cheshireswift\nMove G2 Bet Grogar\n\tCheshireSwift: There really isn&#39;t much hope for me here, is there? =P\n\tCheshireSwift: I don&#39;t know why, but I find Homeworld really hard on SDG. Playing it offline I somehow find it easier to see strategies. That said, good game, thanks :)\n\tTwoShort: Part of it might be the organization of the pieces - for really tough moves I set them up with real pyramids or copy the picture into a paint program to organize them the way I like.  In any case, thanks for the game!\n\tCheshireSwift: Nice idea, I may try that. Thanks.\n\n\nHomeworlds Online (SDG# 13683)\nStarted: 2009.6.25, Ended: 2009.7.6\nParticipants: MikeYarrum (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Greetings Mike!  I&#39;m fairly new to the site and only have about 10 games of Homeworlds under my belt between tabletop and SDG... but I&#39;m always interested in learning new ways to loose :-)  Have Fun!\n\n\nHomeworlds Online (SDG# 13748)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.26, Ended: 2009.7.8\nParticipants: ZackStack (S), Joe (N)\nWinner: ZackStack\n\n1) Joe: Homeworld Y1 B2 G3\n\n2) ZackStack: Homeworld R2 B3 G3\n\tZackStack: Glutton for punishment? :-D  Have a good game!\n\n3) Joe: Build G1 Joe\n\n4) ZackStack: Build G1 Zackstack\n\tJoe: Hell yeah!\n\n5) Joe: Build G1 Joe\n\n6) ZackStack: Build G2 Zackstack\n\n7) Joe: Discover G1 Joe B3 Ann\n\n8) ZackStack: Trade G2 Y2 Zackstack\n\n9) Joe: Build G2 Ann\n\n10) ZackStack: Discover G1 Zackstack Y1 Tina\n\n11) Joe: Trade G1 Y1 Ann\n\n12) ZackStack: Build G1 Zackstack\n\n13) Joe: Build G2 Ann\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Zackstack\nBuild G3 Tina\n\n15) Joe: Trade G3 R3 Joe\n\tZackStack: Hey Joe!  Something to keep in mind strategically is supply control.  Your creating the G2 ship on your last move allowed me to make my sacrifice move.  Sometimes its worth making odd trades and other builds to keep an opponent from getting more and bigger ships than you.  \n\tZackStack: Also, I haven&#39;t read it all, but you have enough understanding of how the game works that this strategy article might be very useful to you if you have the time: http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\n16) ZackStack: Discover G3 Tina R3 Gwen\n\n17) Joe: Build G3 Joe\n\n18) ZackStack: Discover G1 Zackstack B1 Belle\n\n19) Joe: Trade G2 R2 Ann\n\n20) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Belle\nBuild G3 Zackstack\nBuild Y2 Zackstack\n\n21) Joe: Move R2 Ann Belle\n\n22) ZackStack: Sacrifice Y2 Zackstack\nDiscover G1 Belle Y3 Gina\nMove G2 Belle Gina\n\n23) Joe: Build Y2 Ann\n\n24) ZackStack: Move G1 Gina Joe\n\n25) Joe: Sacrifice Y2 Ann\nMove G1 Joe Gina\nMove G3 Joe Ann\n\n26) ZackStack: Discover G1 Joe Y3 Daisy\n\n27) Joe: Trade G3 R3 Ann\n\tZackStack: Nice evade :-)\n\n28) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Zackstack\nBuild G3 Daisy\n\tJoe: Phew, and a close one ;)\n\n29) Joe: Build Y2 Ann\n\n30) ZackStack: Move G1 Tina Gwen\n\n31) Joe: Trade Y2 R2 Ann\n\n32) ZackStack: Trade Y2 B2 Zackstack\n\n33) Joe: Build Y1 Ann\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B1 Zackstack\nBuild Y2 Zackstack\n\n35) Joe: Move Y1 Ann Belle\n\n36) ZackStack: Sacrifice B2 Zackstack\nTrade G1 B1 Daisy\nTrade G2 B2 Gina\n\n37) Joe: Move R2 Belle Gina\n\n38) ZackStack: Sacrifice G3 Daisy\nBuild B2 Daisy\nBuild B3 Daisy\nBuild G1 Zackstack\n\n39) Joe: Attack B2 Gina\n\tJoe: There is another Alien City game waiting, you can join ;)\n\tZackStack: On my way :-)  Though I&#39;ll have to log off soon to make supper...\n\n40) ZackStack: Move B1 Daisy Joe\n\n41) Joe: Build R1 Ann\n\n42) ZackStack: Move B2 Daisy Joe\n\n43) Joe: Move R1 Ann Belle\n\n44) ZackStack: Discover G2 Zackstack R1 Pippi\n\n45) Joe: Build Y2 Ann\n\n46) ZackStack: Move Y2 Zackstack Pippi\n\n47) Joe: Move R3 Ann Pippi\n\n48) ZackStack: Sacrifice Y2 Zackstack\nMove Y2 Pippi Daisy\nMove G2 Pippi Daisy\n\n49) Joe: Sacrifice Y1 Ann\nMove R3 Pippi Daisy\n\n50) ZackStack: Sacrifice Y2 Daisy\nMove B3 Daisy Joe\nDiscover G2 Daisy Y2 Mae\nCatastrophe Joe Blue\n\n51) Joe: Build Y1 Ann\n\tZackStack: Tired of waiting for catastrophe to strike? :-)\n\n52) ZackStack: Trade G3 Y3 Zackstack\n\n53) Joe: Build G2 Gina\n\n54) ZackStack: Sacrifice G3 Gwen\nBuild G3 Zackstack\nBuild Y2 Zackstack\nBuild G3 Gwen\n\tJoe: well, it was a matter of time so I pursue my own course of action...\n\n55) Joe: Move R3 Daisy Belle\n\n56) ZackStack: Sacrifice B1 Zackstack\nTrade G3 Y3 Gwen\n\n57) Joe: Build B1 Gina\n\n58) ZackStack: Sacrifice G2 Mae\nBuild G2 Gwen\nBuild Y2 Gwen\n\n59) Joe: Move Y1 Ann Belle\n\n60) ZackStack: Sacrifice Y3 Zackstack\nMove Y2 Zackstack Joe\nMove Y2 Gwen Joe\nMove Y3 Gwen Joe\nCatastrophe Joe Yellow\n\n\tZackStack: You did a great job limiting my access to yellow in the mid-game, but you made that trade and let me get more yellow ships...  Good game though!  That was quite a fleet you were building up!\n\nHomeworlds Online (SDG# 13711)\nStarted: 2009.6.28, Ended: 2009.7.29\nParticipants: TwoShort (S), skykingt13 (N)\nWinner: TwoShort\n\n1) skykingt13: Homeworld R3 B2 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n\nHomeworlds Online (SDG# 13719)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.28, Ended: 2009.7.3\nParticipants: skykingt13 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) skykingt13: Homeworld B3 R2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n\nHomeworlds Online (SDG# 13768)\nVariants: &quot;Hard time&quot;\nStarted: 2009.6.30, Ended: 2009.7.8\nParticipants: wyons (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R3 G3\n\n2) wyons: Homeworld R2 B1 G3\n\n3) mneme: Build G1 Mneme\n\twyons: have a gg\n\tmneme: yt.  \n\n4) wyons: Build G1 Wyons\n\n5) mneme: Trade G1 B1 Mneme\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) mneme: Build B2 Mneme\n\twyons: hmmm. not such a gd start for me..  :)\n\n8) wyons: Build Y1 Wyons\n\tmneme: Indeed not.  I think matching my b1 in your home system was a blunder.\r\n\n\twyons: I agree. :{\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) wyons: Build G1 Wyons\n\n11) mneme: Build B2 Mneme\n\n\twyons: I think this has to be hopeless! Thank you!\n\tmneme: Thanks for the game.  I usually continue them farther than this, but there&#39;s no shame in deciding it was lost once I got that kind of advantage.\r\n\n\nHomeworlds Online (SDG# 13761)\nStarted: 2009.7.1, Ended: 2009.7.20\nParticipants: MikeYarrum (S), Joe (N)\nWinner: Joe\n\n1) Joe: Homeworld Y1 B2 G3\n\tJoe: Hi Mike, good luck! ;)\n\n\nHomeworlds Online (SDG# 13774)\nStarted: 2009.7.2, Ended: 2009.7.6\nParticipants: mindloss (S), MikeYarrum (N)\nWinner: mindloss\n\n\nHomeworlds Online (SDG# 13783)\nVariants: &quot;Unrated&quot;\nStarted: 2009.7.4, Ended: 2009.7.4\nParticipants: mindloss (S), AnalogKid (N)\nWinner: AnalogKid\n\n1) AnalogKid: Homeworld Y3 B1 G3\n\tAnalogKid: Hello, how are you?\n\n2) mindloss: Homeworld B1 G2 Y3\n\n3) AnalogKid: Build G1 Analogkid\n\n4) mindloss: Discover Y3 Mindloss B3 Lorenzo\n\tmindloss: Good, my first game. How are you?\n\tAnalogKid: I&#39;m fine.  Is there an Undo button for your last move??  If not, do you want to start another game?\n\n\nHomeworlds Online (SDG# 13762)\nStarted: 2009.7.4, Ended: 2009.7.10\nParticipants: mindloss (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) mindloss: Homeworld B1 G2 Y3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tmindloss: howdy... first game for me, maybe i&#39;ll learn a little something :)\n\n4) mindloss: Build Y1 Mindloss\n\n5) TwoShort: Build G1 Twoshort\n\n6) mindloss: Discover Y1 Mindloss G3 Lorenzo\n\tTwoShort: So when I play new players, I try to give a few pointers, but usually a bit too late to actually help :)  For example, I&#39;d recommend starting with a green ship. \n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) mindloss: Build Y1 Mindloss\n\n9) TwoShort: Build Y2 Twoshort\n\n10) mindloss: Build Y2 Lorenzo\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) mindloss: Trade Y1 R1 Mindloss\n\n13) TwoShort: Build Y1 Grogar\n\n14) mindloss: Build Y2 Mindloss\n\n15) TwoShort: Build Y3 Twoshort\n\n16) mindloss: Build Y3 Lorenzo\n\tTwoShort: You probably didn&#39;t want to take the last y2.  You can&#39;t build a y3 this turn because I&#39;ll blow it up, so now I have more 3 pointers, which is a big advantage.\n\n17) TwoShort: Move Y1 Grogar Lorenzo\nCatastrophe Lorenzo Yellow\n\n18) mindloss: Discover Y2 Mindloss B3 Sophia\n\n19) TwoShort: Discover Y3 Twoshort G2 Gonzo\n\n20) mindloss: Build Y1 Mindloss\n\n21) TwoShort: Build G1 Twoshort\n\n22) mindloss: Trade Y1 G1 Mindloss\n\n23) TwoShort: Discover G1 Twoshort B2 Bomber\n\n24) mindloss: Build G3 Mindloss\n\n25) TwoShort: Sacrifice Y2 Twoshort\nDiscover G1 Bomber B3 Boomtime\nMove G1 Boomtime Mindloss\nCatastrophe Mindloss Green\n\n26) mindloss: Move Y2 Sophia Grogar\n\n27) TwoShort: Move Y1 Grogar Twoshort\n\n28) mindloss: Trade R1 G1 Mindloss\n\n29) TwoShort: Trade G1 B1 Twoshort\n\n30) mindloss: Build G1 Mindloss\n\n31) TwoShort: Move B1 Twoshort Gonzo\n\n32) mindloss: Trade G1 R1 Mindloss\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Gonzo\nBuild B2 Gonzo\nPass\n\n34) mindloss: Move R1 Mindloss Gonzo\n\n35) TwoShort: Sacrifice Y3 Gonzo\nMove B1 Gonzo Mindloss\nMove B1 Gonzo Mindloss\nMove B2 Gonzo Mindloss\nCatastrophe Mindloss Blue\n\n\tmindloss: gg :)\n\tTwoShort: Thanks for the game :)\n\nHomeworlds Online (SDG# 13718)\nVariants: &quot;Hard time&quot;\nStarted: 2009.7.4, Ended: 2009.9.10\nParticipants: mindloss (S), Mandrel (W), agentofchaos (N), Uglyfoot (E)\nWinner: Uglyfoot\n\n1) agentofchaos: Homeworld R2 B1 G3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\tagentofchaos: Hi everybody, thanks for joining the game, enjoy! \n\n3) mindloss: Homeworld R1 B2 G3\n\n4) Mandrel: Homeworld B3 Y1 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) mindloss: Build G1 Mindloss\n\n8) Mandrel: Build G1 Mandrel\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) mindloss: Trade G1 Y1 Mindloss\n\n12) Mandrel: Build G1 Mandrel\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n15) mindloss: Build G1 Mindloss\n\n16) Mandrel: Trade G1 Y1 Mandrel\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) Uglyfoot: Build Y2 Uglyfoot\n\n19) mindloss: Build Y2 Mindloss\n\n20) Mandrel: Build Y2 Mandrel\n\n21) agentofchaos: Discover G1 Agentofchaos Y3 Krome\n\n22) Uglyfoot: Discover Y2 Uglyfoot R1 Alpha\n\n23) mindloss: Trade Y1 R1 Mindloss\n\n24) Mandrel: Trade Y2 R2 Mandrel\n\n25) agentofchaos: Trade Y1 R1 Agentofchaos\n\n26) Uglyfoot: Move G1 Uglyfoot Alpha\n\n27) mindloss: Move G3 Mindloss Krome\n\n28) Mandrel: Discover G1 Mandrel R2 Happy\n\n29) agentofchaos: Move G1 Krome Agentofchaos\n\n30) Uglyfoot: Discover Y2 Alpha G3 Beta\n\n31) mindloss: Build Y1 Mindloss\n\n32) Mandrel: Move G3 Mandrel Happy\n\n33) agentofchaos: Build Y1 Agentofchaos\n\n34) Uglyfoot: Build Y2 Beta\n\n35) mindloss: Move Y2 Mindloss Krome\n\n36) Mandrel: Move Y1 Mandrel Happy\n\n37) agentofchaos: Trade Y2 R2 Agentofchaos\n\n38) Uglyfoot: Build Y2 Uglyfoot\n\n39) mindloss: Build G1 Mindloss\n\n40) Mandrel: Move G1 Happy Mandrel\n\n41) agentofchaos: Build Y2 Agentofchaos\n\n42) Uglyfoot: Trade Y2 R2 Uglyfoot\n\n43) mindloss: Move R1 Mindloss Krome\n\n44) Mandrel: Build G2 Mandrel\n\n45) agentofchaos: Discover R2 Agentofchaos Y3 Kazam\n\n46) Uglyfoot: Trade Y1 B1 Uglyfoot\n\n47) mindloss: Trade G1 B1 Mindloss\n\n48) Mandrel: Trade G1 B1 Mandrel\n\n49) agentofchaos: Trade Y1 B1 Agentofchaos\n\n50) Uglyfoot: Build B2 Uglyfoot\n\n51) mindloss: Build G1 Krome\n\n52) Mandrel: Build Y1 Happy\n\n53) agentofchaos: Move G1 Agentofchaos Kazam\n\n54) Uglyfoot: Move B2 Uglyfoot Alpha\n\n55) mindloss: Move B1 Mindloss Krome\n\n56) Mandrel: Move B1 Mandrel Happy\n\n57) agentofchaos: Build G1 Kazam\n\n58) Uglyfoot: Build B2 Alpha\n\n59) mindloss: Trade G3 R3 Krome\n\n60) Mandrel: Build G2 Mandrel\n\n61) agentofchaos: Move R1 Agentofchaos Kazam\n\n62) Uglyfoot: Move Y2 Beta Mindloss\n\n63) mindloss: Move R3 Krome Agentofchaos\n\n64) Mandrel: Build G2 Happy\n\n65) agentofchaos: Attack R3S Agentofchaos\n\n66) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack G1S Mindloss\nAttack Y1S Mindloss\n\tUglyfoot: The eastern world gives welcome.  Trade good offered at reasonable rates...\n\n67) Mandrel: Move G2 Happy Krome\n\n68) agentofchaos: Move R3 Agentofchaos Krome\n\n69) Uglyfoot: Build G2 Uglyfoot\n\n70) Mandrel: Sacrifice G2 Krome\nBuild G2 Happy\nBuild B2 Happy\n\n71) agentofchaos: Attack Y2S Krome\n\n72) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Alpha\nBuild G3 Uglyfoot\nBuild G3 Mindloss\n\n73) Mandrel: Trade G2 Y2 Mandrel\n\n74) agentofchaos: Build G2 Agentofchaos\n\n75) Uglyfoot: Sacrifice Y1 Mindloss\nMove B2 Alpha Beta\n\n76) Mandrel: Build Y1 Mandrel\n\n77) agentofchaos: Move R3 Krome Alpha\n\n78) Uglyfoot: Sacrifice Y2 Mindloss\nDiscover G2 Alpha Y3 Delta\nMove B2 Alpha Delta\n\n79) Mandrel: Build R1 Mandrel\n\n80) agentofchaos: Attack G1E Alpha\n\n81) Uglyfoot: Trade G3 R3 Uglyfoot\n\n82) Mandrel: Build G3 Mandrel\n\n83) agentofchaos: Sacrifice B1 Agentofchaos\nTrade G1 Y1 Alpha\n\n84) Uglyfoot: Sacrifice G3 Mindloss\nBuild G1 Delta\nBuild G3 Mindloss\nBuild Y2 Beta\n\n85) Mandrel: Move G3 Happy Kazam\n\n86) agentofchaos: Sacrifice G2 Agentofchaos\nBuild G2 Kazam\nBuild Y3 Alpha\nCatastrophe Kazam G\n\n87) Uglyfoot: Sacrifice Y2 Beta\nMove Y2 Beta Happy\nMove Y2 Happy Mandrel\nCatastrophe Mandrel Y\n\n88) Mandrel: Trade G2 Y2 Mandrel\n\n89) agentofchaos: Build G1 Agentofchaos\n\n90) Uglyfoot: Trade B2 Y2 Beta\n\n91) Mandrel: Build G1 Happy\n\n92) agentofchaos: Sacrifice R2 Kazam\nAttack B1S Krome\nAttack G1S Krome\n\n93) Uglyfoot: Sacrifice Y2 Beta\nMove G1 Delta Agentofchaos\nMove G2 Delta Agentofchaos\nCatastrophe Agentofchaos G\n\n94) Mandrel: Sacrifice Y2 Mandrel\nMove R1 Mandrel Alpha\nMove R2 Mandrel Alpha\nCatastrophe Alpha Red\n\n95) agentofchaos: Trade Y2 G2 Krome\n\n96) Uglyfoot: Trade B2 Y2 Delta\n\n97) Mandrel: Trade G3 R3 Mandrel\n\n98) agentofchaos: Build B1 Krome\n\n99) Uglyfoot: Sacrifice Y2 Delta\nMove G3 Mindloss Kazam\nMove G3 Kazam Agentofchaos\n\n100) Mandrel: Move G1 Happy Mandrel\n\n101) agentofchaos: Trade Y2 G2 Agentofchaos\n\n102) Uglyfoot: Attack G2N Agentofchaos\n\n103) Uglyfoot: Discover B1 Uglyfoot R1 Pool\n\n104) Mandrel: Build R1 Mandrel\n\n105) Uglyfoot: Trade G3 Y3 Agentofchaos\n\tagentofchaos: Alas, darkness has fallen.... arrgghhh....\n\n106) Mandrel: Build G1 Happy\n\n107) Uglyfoot: Trade G2 B2 Agentofchaos\n\n108) Mandrel: Trade G2 R2 Happy\n\n109) Uglyfoot: Sacrifice G1 Mindloss\nBuild B2 Pool\n\n110) Mandrel: Trade R3 Y3 Mandrel\n\n111) Uglyfoot: Sacrifice Y3 Agentofchaos\nMove B2 Agentofchaos Mandrel\nMove B2 Pool Mandrel\nMove B1 Pool Mandrel\nCatastrophe Mandrel B\n\n\tUglyfoot: Thanks for the game everyone!\n\nHomeworlds Online (SDG# 13788)\nVariants: &quot;Unrated&quot;\nStarted: 2009.7.5, Ended: 2009.7.5\nParticipants: mindloss (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 13781)\nStarted: 2009.7.5, Ended: 2009.7.8\nParticipants: zxcv411 (S), MikeYarrum (N)\nWinner: zxcv411\n\n\nHomeworlds Online (SDG# 13799)\nStarted: 2009.7.5, Ended: 2009.7.8\nParticipants: zxcv411 (S), MikeYarrum (N)\nWinner: zxcv411\n\n\nHomeworlds Online (SDG# 13801)\nVariants: &quot;Unrated&quot;\nStarted: 2009.7.7, Ended: 2009.7.14\nParticipants: zxcv411 (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B3 G3\n\tZackStack: Hi zx!  Have you played much homeworlds or is this a learning game for you?  Either way... have fun!\n\n2) zxcv411: Homeworld R3 B2 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) zxcv411: Build G1 Zxcv411\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\tzxcv411: learning, but dont go too easy on me. Can&#39;t learn that way &gt;.&lt;\n\tZackStack: I won&#39;t :-)  But I might point out any moves that seem strange.\n\n6) zxcv411: Build G1 Zxcv411\n\n7) ZackStack: Discover Y1 Zackstack G2 Emerald\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) ZackStack: Build G1 Zackstack\n\n10) zxcv411: Discover G1 Zxcv411 B1 Richard\n\n11) ZackStack: Trade G1 B1 Zackstack\n\n12) zxcv411: Build G1 Richard\n\n13) ZackStack: Build B1 Zackstack\n\n14) zxcv411: Trade G1 R1 Richard\n\n15) ZackStack: Build G1 Zackstack\n\n16) zxcv411: Build R1 Richard\n\n17) ZackStack: Trade B1 Y1 Zackstack\n\n18) zxcv411: Build R2 Richard\n\n19) ZackStack: Move B1 Zackstack Emerald\n\n20) zxcv411: Build Y2 Zxcv411\n\n21) ZackStack: Build Y2 Emerald\n\n22) zxcv411: Trade R2 Y2 Richard\n\n23) ZackStack: Trade Y2 R2 Emerald\n\n24) zxcv411: Discover R1 Richard B2 Dave\n\n25) ZackStack: Build Y2 Emerald\n\n26) zxcv411: Discover Y2 Richard R2 Mark\n\n27) ZackStack: Discover B1 Emerald G1 Lime\n\n28) zxcv411: Move Y1 Zxcv411 Richard\n\n29) ZackStack: Move Y1 Emerald Lime\n\n30) zxcv411: Move G1 Richard Mark\n\n31) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Zackstack\nBuild Y3 Lime\nBuild Y3 Emerald\n\n32) zxcv411: Build G2 Mark\n\n33) ZackStack: Move R2 Emerald Lime\n\n34) zxcv411: Build G2 Zxcv411\n\tZackStack: So, what&#39;s on your mind these days zx?\n\tzxcv411: Nothing much, starting to build giant Icehouse pieces for a local game store&#39;s game day. You?\n\n35) ZackStack: Build G3 Zackstack\n\tZackStack: Heh, that&#39;s much cooler than anything I&#39;m up too.  What games are you planning to play?\r\n\r\nMy wife and I are starting to get into Go.  Other than that new obsession its pretty much the same old stay at home Dad stuff... I just like to live vicariously throgh others sometimes :-)\n\n36) zxcv411: Move G2 Mark Richard\n\tzxcv411: Yeah, currently for now just Ice Towers, but if I can get enough stashes made, maybe a giant Volcano.\n\n37) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B1 Lime\nBuild B2 Lime\n\tZackStack: That would be quite a sight!  Be sure to post some pics to BGG if they&#39;re worth the effort!\n\n38) zxcv411: Build G3 Zxcv411\n\n39) ZackStack: Sacrifice Y3 Emerald\nMove G1 Zackstack Dave\nMove G1 Dave Lime\nMove G1 Lime Zxcv411\nCatastrophe Zxcv411 Green\n\tZackStack: Ooo... 3 ships of the same color in the same place is always dangerous at this point in the game.\n\n40) zxcv411: Build G1 Mark\n\n41) ZackStack: Move Y3 Lime Zxcv411\n\n42) zxcv411: Sacrifice G2 Richard\nBuild R2 Richard\nBuild R3 Richard\n\n43) ZackStack: Attack Y2S Zxcv411\n\tZackStack: Thanks for the game!  I think you played fairly well and have a nice assault on my homeworld set up.  I was just more aggresive and beat you too it...  Let me know how those big icehouse pieces turn out and challenge me to a rematch any time!\n\n\nHomeworlds Online (SDG# 13811)\nStarted: 2009.7.7, Ended: 2009.7.8\nParticipants: ts52 (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) zxcv411: Build G1 Zxcv411\n\tts52: Have a good game.\n\tzxcv411: Why is it not letting me sacrifice my green to build 3 ships?\n\n4) ts52: Build G1 Ts52\n\tzxcv411: Nevermind, sorry first time playing Homeworlds &gt;.&lt;\n\n5) zxcv411: Trade G1 Y1 Zxcv411\n\tts52: No problem. It&#39;s generally a good idea to keep a large ship in your homeworld anyway.\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zxcv411: Build Y1 Zxcv411\n\n8) ts52: Discover Y1 Ts52 G1 Robin\n\n9) zxcv411: Build Y2 Zxcv411\n\n10) ts52: Build Y2 Robin\n\n11) zxcv411: Sacrifice Y1 Zxcv411\nDiscover Y2 Zxcv411 R3 Reddwarf\n\n12) ts52: Build G1 Ts52\n\n13) zxcv411: Build Y1 Zxcv411\n\tts52: You might have meant to sacrifice the y1, but you didn&#39;t need to in order to move the y2. FYI.\n\n14) ts52: Discover Y1 Robin G3 Kermit\n\tzxcv411: Really, oh. I just wasted a turn then...\n\n15) zxcv411: Discover Y1 Zxcv411 Y3 Starbug\n\n16) ts52: Build Y3 Kermit\n\n17) zxcv411: Build Y3 Zxcv411\n\n18) ts52: Trade G1 B1 Ts52\n\n19) zxcv411: Trade Y1 G1 Zxcv411\n\n20) ts52: Move B1 Ts52 Robin\n\n21) zxcv411: Move G1 Zxcv411 Starbug\n\n22) ts52: Build B1 Robin\n\n23) zxcv411: Build G1 Starbug\n\n24) ts52: Build G2 Ts52\n\n25) zxcv411: Build G2 Zxcv411\n\n26) ts52: Move B1 Robin Kermit\n\n27) zxcv411: Move G2 Zxcv411 Reddwarf\n\n28) ts52: Discover B1 Robin G2 Oscar\n\n29) zxcv411: Discover G1 Starbug B1 Rimmer\n\n30) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B2 Oscar\n\n31) zxcv411: Sacrifice Y3 Zxcv411\nMove G1 Starbug Rimmer\nMove G1 Rimmer Ts52\nMove G1 Rimmer Ts52\nCatastrophe Ts52 Green\n\tzxcv411: Good game\n\tts52: Wow, I totally didn&#39;t see that coming. Well played.\n\n\nHomeworlds Online (SDG# 13800)\nStarted: 2009.7.7, Ended: 2009.7.11\nParticipants: MikeYarrum (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 13807)\nVariants: &quot;Hard time&quot;\nStarted: 2009.7.10, Ended: 2009.8.1\nParticipants: Jesse (S), headphoned (N)\nWinner: Jesse\n\n1) headphoned: Homeworld B3 G2 Y3\n\n2) Jesse: Homeworld G1 B3 Y3\n\n3) headphoned: Build Y1 Headphoned\n\tJesse: Hello.  Have a good game.\n\n4) Jesse: Build Y1 Jesse\n\n5) headphoned: Trade Y1 R1 Headphoned\n\n6) Jesse: Trade Y1 R1 Jesse\n\n7) headphoned: Build Y1 Headphoned\n\n8) Jesse: Build Y1 Jesse\n\n\n9) headphoned: Trade Y1 G1 Headphoned\n\n10) Jesse: Trade Y1 G1 Jesse\n\n\n11) headphoned: Build Y1 Headphoned\n\n12) Jesse: Build Y1 Jesse\n\n\n13) headphoned: Discover Y1 Headphoned B1 Alcatraz\n\n14) Jesse: Discover Y1 Jesse G2 Tomato\n\n15) headphoned: Discover G1 Headphoned Y1 Phlebas\n\n16) Jesse: Discover G1 Jesse B2 Newt\n\n17) headphoned: Build Y2 Headphoned\n\n18) Jesse: Build Y2 Jesse\n\n19) headphoned: Trade Y2 B2 Headphoned\n\n20) Jesse: Move Y2 Jesse Newt\n\n21) headphoned: Build Y2 Headphoned\n\n22) Jesse: Trade Y2 R2 Newt\n\n23) headphoned: Build G2 Phlebas\n\n24) Jesse: Build G3 Newt\n\n25) headphoned: Sacrifice Y2 Headphoned\nMove G2 Phlebas Newt\nMove G1 Phlebas Newt\nCatastrophe Newt Green\n\n26) Jesse: Trade R2 G2 Newt\n\n27) headphoned: Build B1 Headphoned\n\n28) Jesse: Build G1 Newt\n\n\nHomeworlds Online (SDG# 13825)\nStarted: 2009.7.11, Ended: 2009.7.14\nParticipants: zxcv411 (S), TwoShort (N)\nWinner: zxcv411\n\n\tTwoShort: I&#39;m headed to vacation; I had meant to suspend the standing challenges sooner.  Anyway, if you want to just leave this game active, I&#39;ll be able to play in a couple weeks.\n\nHomeworlds Online (SDG# 13829)\nStarted: 2009.7.11, Ended: 2009.7.14\nParticipants: zxcv411 (S), TwoShort (N)\nWinner: zxcv411\n\n\tTwoShort: I&#39;m about to head off on vacation to the land of no internet.  I&#39;ll be happy to play a game in a couple weeks.\n\nHomeworlds Online (SDG# 13778)\nStarted: 2009.7.12, Ended: 2009.9.19\nParticipants: iwilson (S), rogwyn (N)\nWinner: rogwyn\n\n1) rogwyn: Pass\n\n2) iwilson: Homeworld G3 B2 Y3\n\n3) rogwyn: Homeworld Y2 B1 G3\n\n4) iwilson: Build Y1 Iwilson\n\n5) rogwyn: Pass\n\n6) iwilson: Trade Y1 B1 Iwilson\n\n7) rogwyn: Build G1 Rogwyn\n\n8) iwilson: Trade B1 R1 Iwilson\n\n9) rogwyn: Trade G1 R1 Rogwyn\n\n10) iwilson: Discover R1 Iwilson Y1 Newone\n\n11) rogwyn: Build G1 Rogwyn\n\n12) iwilson: Move Y3 Iwilson Newone\n\n\nHomeworlds Online (SDG# 13779)\nStarted: 2009.7.12, Ended: 2009.12.11\nParticipants: rogwyn (S), iwilson (N)\nWinner: rogwyn\n\n1) iwilson: Homeworld G3 B2 Y3\n\n2) rogwyn: Homeworld B3 G2 R3\n\n3) iwilson: Build Y1 Iwilson\n\n4) rogwyn: Pass\n\n5) iwilson: Trade Y1 G1 Iwilson\n\n6) rogwyn: Build R1 Rogwyn\n\n7) iwilson: Build Y1 Iwilson\n\n8) rogwyn: Build R1 Rogwyn\n\n9) iwilson: Trade Y1 R1 Iwilson\n\n10) rogwyn: Build R2 Rogwyn\n\n11) iwilson: Build Y1 Iwilson\n\n12) rogwyn: Build R2 Rogwyn\n\n13) iwilson: Discover Y3 Iwilson G1 Newone\n\n14) rogwyn: Trade R1 Y1 Rogwyn\n\n15) iwilson: Move R1 Iwilson Newone\n\n16) rogwyn: Move R3 Rogwyn Newone\n\n17) iwilson: Build Y1 Iwilson\n\n18) rogwyn: Build Y2 Rogwyn\n\n19) iwilson: Build G1 Iwilson\n\n20) rogwyn: Trade R1 B1 Rogwyn\n\n21) iwilson: Move G1 Iwilson Newone\n\n22) rogwyn: Attack Y3 Newone\n\n23) iwilson: Trade Y1 R1 Iwilson\n\n24) rogwyn: Trade Y2 G2 Rogwyn\n\n25) iwilson: Move R1 Iwilson Newone\n\n26) rogwyn: Move R3 Newone Iwilson\n\n27) iwilson: Trade Y1 B1 Iwilson\n\n28) rogwyn: Attack G1 Iwilson\n\n29) iwilson: Build B1 Iwilson\n\n30) rogwyn: Attack B1 Iwilson\n\n31) iwilson: Build B2 Iwilson\n\n32) rogwyn: Attack B1 Iwilson\n\n33) iwilson: Trade B2 R2 Iwilson\n\n34) rogwyn: Attack R2 Iwilson\n\n\nHomeworlds Online (SDG# 13834)\nStarted: 2009.7.12, Ended: 2009.7.12\nParticipants: Twoflower (S), PottyTroll (N)\nWinner: PottyTroll\n\n1) PottyTroll: Homeworld G2 B1 Y3\n\n2) Twoflower: Homeworld B1 G2 Y3\n\tTwoflower: homeworld b1 g2 y3\n\n3) PottyTroll: Build Y1 Pottytroll\n\n4) Twoflower: Build Y1 Twoflower\n\n5) PottyTroll: Discover Y1 Pottytroll R3 Grundletown\n\n6) Twoflower: Trade Y1 G1 Twoflower\n\n7) PottyTroll: Build Y1 Pottytroll\n\n8) Twoflower: Discover G1 Twoflower B3 Theface\n\n9) PottyTroll: Trade Y1 B1 Pottytroll\n\n10) Twoflower: Build G1 Theface\n\n11) PottyTroll: Build B2 Pottytroll\n\n12) Twoflower: Trade G1 Y1 Theface\n\n13) PottyTroll: Trade B2 R2 Pottytroll\n\n14) Twoflower: Build Y1 Theface\n\n15) PottyTroll: Move R2 Pottytroll Theface\n\n16) Twoflower: Build Y2 Twoflower\n\n17) PottyTroll: Attack Y1 Theface\n\n18) Twoflower: Trade Y2 G2 Twoflower\n\n19) PottyTroll: Attack G1 Theface\n\n20) Twoflower: Build Y2 Twoflower\n\n21) PottyTroll: Sacrifice Y3 Pottytroll\nMove Y1 Grundletown Twoflower\nMove Y1 Theface Twoflower\nMove R2 Theface Twoflower\nCatastrophe Twoflower Y\n\n\nHomeworlds Online (SDG# 13835)\nStarted: 2009.7.12, Ended: 2009.7.13\nParticipants: PottyTroll (S), Twoflower (N)\nWinner: Twoflower\n\n1) Twoflower: Homeworld R2 G3 B3\n\n2) PottyTroll: Homeworld B3 G1 Y3\n\n3) Twoflower: Build B1 Twoflower\n\n4) PottyTroll: Build Y1 Pottytroll\n\n5) Twoflower: Build B1 Twoflower\n\n6) PottyTroll: Discover Y1 Pottytroll G2 Pigtesticles\n\n7) Twoflower: Trade B1 Y1 Twoflower\n\n8) PottyTroll: Build Y1 Pottytroll\n\n9) Twoflower: Build Y2 Twoflower\n\n10) PottyTroll: Build Y2 Pottytroll\n\n11) Twoflower: Trade Y2 R2 Twoflower\n\n12) PottyTroll: Trade Y2 B2 Pottytroll\n\n13) Twoflower: Build Y2 Twoflower\n\n14) PottyTroll: Move B2 Pottytroll Pigtesticles\n\n15) Twoflower: Discover R2 Twoflower B1 Cmot-dibbler\n\n16) PottyTroll: Trade Y1 R1 Pottytroll\n\n17) Twoflower: Trade Y2 G2 Twoflower\n\n18) PottyTroll: Build R1 Pottytroll\n\n19) Twoflower: Build G1 Twoflower\n\n20) PottyTroll: Move R1 Pottytroll Pigtesticles\n\n21) Twoflower: Move G1 Twoflower Cmot-dibbler\n\n22) PottyTroll: Discover R1 Pigtesticles B1 Cameltoe\n\n23) Twoflower: Sacrifice G2 Twoflower\nBuild G1 Cmot-dibbler\nBuild G2 Cmot-dibbler\n\n24) PottyTroll: Build B2 Pigtesticles\n\n25) Twoflower: Trade G2 B2 Cmot-dibbler\n\n26) PottyTroll: Trade B2 Y2 Pigtesticles\n\n27) Twoflower: Build G2 Cmot-dibbler\n\n28) PottyTroll: Move Y2 Pigtesticles Cameltoe\n\n29) Twoflower: Trade G1 Y1 Cmot-dibbler\n\n30) PottyTroll: Trade Y2 G2 Cameltoe\n\n31) Twoflower: Discover G1 Cmot-dibbler G3 Brainpick\n\n32) PottyTroll: Sacrifice Y1 Pigtesticles\nMove B2 Pigtesticles Cameltoe\n\n33) Twoflower: Discover G2 Cmot-dibbler Y2 Zombietestes\n\n34) PottyTroll: Trade B2 Y2 Cameltoe\n\n35) Twoflower: Sacrifice G2 Zombietestes\nBuild B2 Twoflower\nBuild B2 Cmot-dibbler\n\n36) PottyTroll: Sacrifice G2 Cameltoe\nBuild R1 Cameltoe\nBuild R2 Cameltoe\n\n37) Twoflower: Sacrifice G1 Brainpick\nBuild R3 Cmot-dibbler\n\n38) PottyTroll: Build R3 Pottytroll\n\n39) Twoflower: Discover B2 Cmot-dibbler G2 Poobag\n\n40) PottyTroll: Sacrifice Y3 Pottytroll\nMove R1 Cameltoe Twoflower\nMove R1 Cameltoe Twoflower\nMove R2 Cameltoe Twoflower\nCatastrophe Twoflower Red\n\n41) Twoflower: Build B3 Poobag\n\n42) PottyTroll: Build R1 Pottytroll\n\n43) Twoflower: Move R3 Cmot-dibbler Poobag\n\n44) PottyTroll: Trade R1 Y1 Pottytroll\n\n45) Twoflower: Build Y2 Twoflower\n\n46) PottyTroll: Build Y2 Pottytroll\n\n47) Twoflower: Sacrifice Y2 Twoflower\nMove R3 Poobag Pottytroll\nMove B3 Poobag Pottytroll\n\n48) PottyTroll: Attack R3 Pottytroll\n\n49) Twoflower: Sacrifice R2 Cmot-dibbler\nAttack R3 Pottytroll\nAttack R3 Pottytroll\n\n50) PottyTroll: Build R1 Pottytroll\nCatastrophe Pottytroll R\n\n51) Twoflower: Trade B3 R3 Twoflower\n\n\nHomeworlds Online (SDG# 13813)\nStarted: 2009.7.13, Ended: 2009.7.17\nParticipants: MikeYarrum (S), PottyTroll (N)\nWinner: PottyTroll\n\n1) PottyTroll: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 13837)\nStarted: 2009.7.14, Ended: 2009.7.19\nParticipants: MikeYarrum (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 13822)\nVariants: &quot;Hard time&quot;\nStarted: 2009.7.15, Ended: 2009.9.3\nParticipants: agentofchaos (S), ZackStack (W), zxcv411 (N), headphoned (E)\nWinner: ZackStack\n\n1) zxcv411: Homeworld R1 B2 G3\n\tZackStack: I&#39;m having enough trouble keeping track of what I&#39;m doing in my first three player game... this should get really interesting :-)\r\n\r\nHave fun everyone!\n\n2) headphoned: Homeworld G1 B3 Y3\n\n3) agentofchaos: Homeworld R2 B3 G3\n\tagentofchaos: Multiplayer games can be confusing, but that&#39;s part of the fun! Enjoy the game :-)\n\n4) ZackStack: Homeworld R1 B3 G3\n\n5) zxcv411: Build G1 Zxcv411\n\n6) headphoned: Build Y1 Headphoned\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) ZackStack: Build G1 Zackstack\n\n9) zxcv411: Build G1 Zxcv411\n\n10) headphoned: Trade Y1 R1 Headphoned\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) ZackStack: Trade G1 Y1 Zackstack\n\n13) zxcv411: Trade G1 Y1 Zxcv411\n\n14) headphoned: Build R1 Headphoned\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) ZackStack: Build G1 Zackstack\n\n17) zxcv411: Trade G3 Y3 Zxcv411\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) ZackStack: Build G1 Zackstack\n\n20) zxcv411: Discover Y1 Zxcv411 G3 Starbug\n\n21) agentofchaos: Trade Y1 R1 Agentofchaos\n\n22) ZackStack: Discover G1 Zackstack Y2 Criton\n\n23) zxcv411: Build Y1 Starbug\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) ZackStack: Build G2 Criton\n\n26) zxcv411: Move Y1 Starbug Zxcv411\n\n27) agentofchaos: Build R2 Agentofchaos\n\n28) ZackStack: Move G2 Criton Headphoned\n\n29) zxcv411: Trade Y1 B1 Zxcv411\n\n30) agentofchaos: Discover R2 Agentofchaos Y1 Quasgar\n\n31) ZackStack: Build G2 Headphoned\n\n32) zxcv411: Move B1 Zxcv411 Starbug\n\n33) agentofchaos: Build R2 Agentofchaos\n\n34) ZackStack: Trade G2 R2 Headphoned\n\n35) zxcv411: Build G2 Zxcv411\n\n36) agentofchaos: Move G1 Agentofchaos Quasgar\n\n37) ZackStack: Build G2 Zackstack\n\n38) zxcv411: Trade G2 R2 Zxcv411\n\n39) agentofchaos: Move R2 Quasgar Criton\n\n40) ZackStack: Discover G1 Criton B1 Lister\n\n41) zxcv411: Build R3 Zxcv411\n\n42) agentofchaos: Move R2 Agentofchaos Quasgar\n\n43) ZackStack: Sacrifice R2 Headphoned\nAttack R1E Headphoned\nAttack R1E Headphoned\n\n44) zxcv411: Move R3 Zxcv411 Starbug\n\n45) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R2 Criton\nBuild R3 Quasgar\n\n46) ZackStack: Build G2 Lister\n\n47) zxcv411: Build R3 Starbug\n\n48) agentofchaos: Discover R2 Criton Y3 Io\n\n49) ZackStack: Trade G2 Y2 Lister\n\n50) zxcv411: Build R3 Zxcv411\n\n51) agentofchaos: Move R2 Io Zxcv411\nCatastrophe Zxcv411 R\n\n52) ZackStack: Build G2 Lister\n\n53) zxcv411: Move R3 Starbug Zxcv411\n\n54) agentofchaos: Build G2 Quasgar\n\n55) ZackStack: Trade G2 Y2 Zackstack\n\n56) zxcv411: Move R3 Starbug Criton\n\n57) agentofchaos: Sacrifice G2 Quasgar\nBuild R1 Criton\nBuild R2 Criton\nCatastrophe Criton R\n\n58) ZackStack: Trade G1 R1 Lister\n\n59) zxcv411: Build B1 Starbug\n\n60) agentofchaos: Move R3 Quasgar Starbug\n\tZackStack: On second thought... that would probably be a bit too tempting for you zx :-)\n\n61) ZackStack: Build R2 Lister\n\n62) zxcv411: Build R2 Zxcv411\n\n63) agentofchaos: Discover R1 Agentofchaos Y1 Demento\n\n64) ZackStack: Build Y2 Lister\n\n65) zxcv411: Move R2 Zxcv411 Demento\n\n66) agentofchaos: Discover R1 Demento Y2 Yorgmoss\n\n67) ZackStack: Sacrifice Y2 Lister\nMove R1 Lister Agentofchaos\nMove R2 Lister Agentofchaos\n\n68) zxcv411: Trade Y3 R3 Zxcv411\n\n69) agentofchaos: Build Y2 Agentofchaos\n\n70) ZackStack: Sacrifice Y2 Zackstack\nMove R1 Headphoned Zxcv411\nMove R1 Headphoned Zxcv411\nCatastrophe Zxcv411 Red\n\n71) zxcv411: Move R2 Demento Agentofchaos\nCatastrophe Agentofchaos Red\n\n72) agentofchaos: Move R2 Quasgar Zxcv411\n\n73) ZackStack: Build G1 Lister\n\tZackStack: Looking for some revenge zx?\n\n74) zxcv411: Build G2 Zxcv411\n\n75) agentofchaos: Attack G2N Zxcv411\n\tZackStack: Sigh... by revenge I meant blow up Agent&#39;s red star! :-)\n\n76) ZackStack: Trade G1 B1 Zackstack\n\n77) zxcv411: Build B1 Starbug\n\tagentofchaos: Yes well that has happened anyway!\n\n78) agentofchaos: Attack G1N Zxcv411\n\tZackStack: I figured some incentive was in order :-)\n\n79) agentofchaos: Trade G2 B2 Zxcv411\n\n80) ZackStack: Discover B1 Zackstack Y2 Holly\n\n81) agentofchaos: Attack Y1N Starbug\n\n82) ZackStack: Build G1 Zackstack\n\n83) agentofchaos: Build G2 Agentofchaos\n\tagentofchaos: Payback time!\n\n84) ZackStack: Trade G2 B2 Lister\n\n85) agentofchaos: Sacrifice Y1 Agentofchaos\nMove B2 Zxcv411 Starbug\nCatastrophe Starbug B\n\n86) ZackStack: Sacrifice G2 Headphoned\nBuild B1 Holly\nBuild B1 Holly\n\n87) agentofchaos: Move R3 Starbug Holly\n\n88) ZackStack: Sacrifice Y2 Lister\nMove B1 Holly Agentofchaos\nMove B1 Holly Agentofchaos\n\n89) agentofchaos: Sacrifice R2 Zxcv411\nAttack B1W Agentofchaos\nAttack B1W Agentofchaos\n\n90) ZackStack: Move B1 Holly Agentofchaos\nCatastrophe Agentofchaos Blue\n\n\tZackStack: Thanks for the game!  Now I need to find a 4 player where one of the players doesn&#39;t drop out...\n\tagentofchaos: Yes seems to be hard to find four reliable players. \n\nHomeworlds Online (SDG# 13851)\nVariants: &quot;Unrated&quot;\nStarted: 2009.7.16, Ended: 2009.7.23\nParticipants: ZackStack (S), umfpt (N)\nWinner: ZackStack\n\n1) umfpt: Homeworld B3 G1 Y3\n\n2) ZackStack: Homeworld Y1 B2 G3\n\n3) umfpt: Build Y1 Umfpt\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: Sorry about the undo... forgot what sizes I needed when I scrolled to the top... :-/  Have a good game!\n\n5) umfpt: Discover Y1 Umfpt B2 Tola\n\n6) ZackStack: Build G1 Zackstack\n\n7) umfpt: Build Y1 Umfpt\n\n8) ZackStack: Discover G1 Zackstack Y3 Daisy\n\tZackStack: Having 3 of a color in one place is dangerous later... but for now I&#39;m safe from reprisal.\n\tumfpt: Yeah, there&#39;s no way for me to get there and I don&#39;t have any green ships anyway.\n\n9) umfpt: Build Y2 Umfpt\n\n10) ZackStack: Build G2 Daisy\n\n11) umfpt: Trade Y2 G2 Umfpt\n\n12) ZackStack: Discover G2 Daisy B2 Bluebell\n\n13) umfpt: Move G2 Umfpt Tola\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Bluebell\nBuild G3 Daisy\nBuild G3 Zackstack\n\n15) umfpt: Build G3 Tola\n\tZackStack: This is a neat move to make with big green ships. :-)\n\n16) ZackStack: Trade G2 Y2 Bluebell\n\n17) umfpt: Discover G2 Tola Y3 Ohnoes\n\tumfpt: Nice\r\n\n\n18) ZackStack: Sacrifice G3 Daisy\nBuild Y2 Bluebell\nBuild G2 Daisy\nBuild G3 Bluebell\n\tZackStack: Are you going to be at DP tomorrow (Tuesday)?  Or are we skipping construction week?\n\n19) umfpt: Move G2 Ohnoes Zackstack\n\tumfpt: I&#39;ll probably go on Tuesday to check out the setup.  I could see it being difficult for you if you have Hazel with you.\n\n20) ZackStack: Trade G1 R1 Zackstack\n\tZackStack: I&#39;ll just have to keep it short... though Gwen might be able to pick her up.  We&#39;ll see.\n\n21) umfpt: Sacrifice G2 Zackstack\nBuild G1 Tola\nBuild Y2 Tola\n\tZackStack: Bold, but dangerous :-)\n\n22) ZackStack: Build G2 Zackstack\n\n23) umfpt: Trade Y1 R1 Umfpt\n\n24) ZackStack: Discover G2 Daisy R2 Rose\n\tZackStack: Be careful with that homeworld...\n\n25) umfpt: Move G3 Tola Daisy\n\n26) ZackStack: Sacrifice Y2 Bluebell\nMove G2 Rose Umfpt\nMove G2 Bluebell Umfpt\n\n27) umfpt: Trade Y1 R1 Tola\n\n28) ZackStack: Sacrifice G1 Daisy\nBuild G1 Umfpt\nCatastrophe Umfpt Green\n\n29) umfpt: Move R1 Tola Daisy\n\tumfpt: Sorry about that. It seemed like a wasted move based on what I&#39;m guessing your next move will be.\n\n30) ZackStack: Build R2 Zackstack\n\tZackStack: Good call on the wasted move.  ;-)\n\n31) umfpt: Build R2 Daisy\n\n32) ZackStack: Trade Y2 R2 Bluebell\n\n33) umfpt: Sacrifice Y3 Umfpt\nMove G3 Daisy Zackstack\nMove R1 Daisy Zackstack\nMove R2 Daisy Zackstack\nCatastrophe Zackstack R\n\n34) ZackStack: Trade G2 R2 Zackstack\n\n35) umfpt: Move G3 Zackstack Umfpt\n\n36) ZackStack: Build G1 Bluebell\n\tZackStack: Hey! Retaliation!  Good times :-)\n\n37) umfpt: Build R1 Umfpt\n\tumfpt: If only I had a plan of what to do now.\n\n38) ZackStack: Build G1 Zackstack\n\tZackStack: If it makes you feel better, I think I missed a chance to win on my last move... now we build up again :-)\n\n39) umfpt: Build G2 Umfpt\n\n40) ZackStack: Trade G3 Y3 Bluebell\n\n41) umfpt: Sacrifice G3 Umfpt\nBuild G2 Tola\nBuild Y1 Tola\nBuild Y1 Tola\n\n42) ZackStack:\nMove Y3 Bluebell Umfpt\n\n43) umfpt: Move Y1 Tola Umfpt\n\n44) ZackStack: Sacrifice R2 Bluebell\nAttack R1 Umfpt\nAttack R1 Umfpt\n\tZackStack: You probably shouldn&#39;t have destroyed your only size 3 ship... the G3 sacrifice is best when you get a size three or two out of it.  Though I am curious how this plays out!\n\n45) umfpt: Sacrifice G2 Tola\nBuild Y2 Umfpt\nBuild Y2 Umfpt\nCatastrophe Umfpt Y\n\tumfpt: I couldn&#39;t move it and figured you would trigger a catastrophy if I didn&#39;t sacrifice it myself.  That&#39;s if I&#39;m remembering the game position correctly. \n\n46) ZackStack: Trade R1 B1 Umfpt\n\n47) umfpt: Move G1 Tola Umfpt\n\n48) ZackStack: Sacrifice G3 Zackstack\nBuild B1 Umfpt\nBuild B1 Umfpt\nBuild G2 Zackstack\nCatastrophe Umfpt Blue\n\n\tumfpt: Good game. I couldn&#39;t stop you winning this turn.\n\tZackStack: Good game.  You&#39;re getting better fast!\n\nHomeworlds Online (SDG# 13845)\nVariants: &quot;Unrated&quot;\nStarted: 2009.7.17, Ended: 2009.10.15\nParticipants: jonaskoelker (S), AnalogKid (N)\nWinner: AnalogKid\n\n1) AnalogKid: Homeworld Y3 B1 G3\n\n2) jonaskoelker: Homeworld Y2 B1 G3\n\tAnalogKid: Hello! Thanks for accepting my challenge :)\r\nHave you played Homeworlds before?\n\n3) AnalogKid: Build G1 Analogkid\n\tjonaskoelker: No, this is my first game.  I don&#39;t even have IceHouse pieces, though I have ordered my first set very recently.  I&#39;ve read the game between Andy and Russell and a few strategy discussions on the icehouse mailing list.  I felt tempted to open with &quot;homeworld G2 Y2 R3&quot;, then build, move, attack, but I think that fails when you make the first (real) move (you build, I build, you convert small to red, then I can&#39;t move)... oh well...\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\tAnalogKid: I think you chose a much better opening.  The &quot;banker&quot; homeworld is a good option for new players and the supposedly choosing a homeworld only one hop away from your opponent is not.\r\n\r\nI have only played Homeworlds twice now myself.  So, I am a newbie too.  I like playing on SDG because you can take several days to think about a turn ^_^\n\tjonaskoelker: Yeah, that&#39;s what I hear.  I also hear Andy prefers &quot;homeworld B2 R1 G3&quot;, but maybe yellow will work out fine.\r\n\r\nIn any case, behold the constructive power of my fully armed an operational battlestati... erm, factory ;-)\r\n\n\n5) AnalogKid: Trade G1 Y1 Analogkid\n\tjonaskoelker: By the way, instead of building a small green, could I have sacrificed my large green an built three small ones?\r\n\r\nOr would I lose because I didn&#39;t have any ships in my homeworld?  What if I had G3 R1 in some other system; could I sacrifice the G3 and build three greens?  What if I had just the G3?\r\n\r\nMy interpretation is that star systems &quot;die&quot; &quot;as soon as possible&quot;, so I when I sacrifice the lonely G3, its star system disappears before I can use my three build actions. Similarly, the green-producing ability it gave itself would be gone (but other green ships could give it to compensate).\r\n\r\nDo you know what SDG&#39;s interpretation is?\r\n\n\tjonaskoelker: &quot;supposedly choosing a homeworld only one hop away from your opponent is not [good for newbies].&quot;\r\n\r\nThat&#39;s interesting.  I think it might--the game would be more tactical (as opposed to strategic)--you need to think a few moves ahead and examine them thoroughly, but you don&#39;t need to understand much of the broader, long term strategies that are useful if you want to conquer a large(st) world.\r\n\r\nI think it&#39;s also easier to know how good your position is---you&#39;ll probably either be thinking &quot;I could win if only he didn&#39;t have that damn...&quot; or &quot;Whew, I would have lost if I hadn&#39;t found the defense against [maneuver].&quot;  I think the mid-game in large worlds are closer to &quot;roughly evn&quot;, &quot;slightly advantageous&quot; and &quot;moderately advantageous&quot; in range.\r\n\r\nBut I speculate :)\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\tAnalogKid: The 3HOUSE booklet, in the &quot;Game Over&quot; section says:\r\n\r\n&quot;It&#39;s OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over.&quot;\r\n\r\n(I believe SDG follows this rule).  Additionally, the rule about immediately returning abandoned stars to the bank only applies to non-homeworld star-systems.\r\n\r\nHowever, you still could not have sacrificed your large green effectively because you can only build ships of the same color as another ship you control in the target system.  i.e. The colors of your stars and the sacrificed green ship are not usable.  So, you would not have been allowed to build ANY ships if you had sac&#39;d the G3.  If you had had other ships anywhere, you could build new ships of the same color(s) in their systems, being careful to have a ship at your homeworld in the end.\n\tAnalogKid: I have read of some advanced players starting with a small universe (and presumably a red ship).  I am too new of a player to judge the effectiveness of that strategy or to judge the relative merits of starting with red vs. yellow in the homeworld.  I want to explore the B-Y G3 option for awhile before I move on to the others. :)\n\n7) AnalogKid: Discover Y1 Analogkid G2 Ramandu\n\tjonaskoelker: So, for instance, if I had (only) a Y3 at my homeworld, I could sacrifice it if I used (at least one of) the moves to move something back there.  Isn&#39;t that also the only way in which I can temporarily leave my homeworld empty?\n\n8) jonaskoelker: Discover Y1 Jonaskoelker G3 Alderaan\n\tAnalogKid: Yes, my understanding is that sacrificing a yellow ship as you describe would be OK.  I was also thinking you could sac your last ship at the homeworld if it was red and take control of an opponent&#39;s ship in that system.  However, I see now that that fails too.  The G, R, and B actions all require a ship in the target system (as do sacrifice actions).\n\n9) AnalogKid: Build G1 Analogkid\n\tjonaskoelker: &quot;We are on a diplomatic mission.  These aren&#39;t the death star blueprints you&#39;re looking for&quot; ;-)\r\n\n\n10) jonaskoelker: Build G1 Jonaskoelker\n\n11) AnalogKid: Trade G1 B1 Analogkid\n\n12) jonaskoelker: Trade G3 B3 Jonaskoelker\n\n13) AnalogKid: Build B2 Analogkid\n\n14) jonaskoelker: Build B2 Jonaskoelker\n\tAnalogKid: I&#39;m very curious to see how this series of moves works out :)\n\n15) AnalogKid: Discover Y1 Ramandu G3 Coriakin\n\tjonaskoelker: So am I...\n\n16) jonaskoelker: Move B2 Jonaskoelker Alderaan\n\n17) AnalogKid: Build G1 Analogkid\n\tjonaskoelker: I&#39;ll be interested to see how your plan develops :)\n\n18) jonaskoelker: Build B2 Alderaan\n\n19) AnalogKid: Trade B1 R1 Analogkid\n\n20) jonaskoelker: Trade B2 G2 Alderaan\n\n21) AnalogKid: Discover B2 Analogkid G2 Ramandu\n\n22) jonaskoelker: Build B1 Alderaan\n\n23) AnalogKid: Build Y1 Coriakin\n\tjonaskoelker: I&#39;m not sure I like how the board looks...\n\tAnalogKid: Sorry for the long delay!  I was finding it rather difficult to choose a move ...\n\n24) jonaskoelker: Build Y2 Alderaan\n\tjonaskoelker: That&#39;s fine--I have not been left homworlds-less in the meantime :)\n\n25) AnalogKid: Move Y1 Coriakin Ramandu\n\n26) jonaskoelker: Trade Y2 R2 Alderaan\n\n27) AnalogKid: Build Y2 Ramandu\n\n\tAnalogKid: Hi, I see that you&#39;ve been swamped for awhile with your games, but I&#39;m wondering whether you intend to continue this one.  If so, I&#39;m willing to wait, but if not, I&#39;d like to start another Homeworlds game with someone. (But I don&#39;t want two games going at once ...)\n\tjonaskoelker: Hey, AnalogKid.  Sorry for falling off the planet.  Resigning me was fine.\n\nHomeworlds Online (SDG# 13828)\nVariants: &quot;No undo, Sinister, Hard time&quot;\nStarted: 2009.7.17, Ended: 2009.7.27\nParticipants: zoltar (S), headphoned (W), zxcv411 (N), mindloss (E)\nWinner: zxcv411\n\n1) zxcv411: Homeworld R1 B2 G3\n\n2) mindloss: Homeworld B2 R3 G3\n\n3) zoltar: Homeworld B1 R2 G3\n\n4) headphoned: Homeworld R1 B3 G3\n\n5) zxcv411: Build G1 Zxcv411\n\n6) mindloss: Build G1 Mindloss\n\n7) zoltar: Build G1 Zoltar\n\n8) headphoned: Build G1 Headphoned\n\n9) zxcv411: Trade G3 Y3 Zxcv411\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n\tzoltar: With two of them gone, we should either play a new multi-player game or else just start a two-player one.\n\nHomeworlds Online (SDG# 13844)\nStarted: 2009.7.17, Ended: 2009.7.21\nParticipants: zoltar (S), TwoShort (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 13857)\nStarted: 2009.7.17, Ended: 2009.8.5\nParticipants: TwoShort (S), mick71 (N)\nWinner: TwoShort\n\n1) mick71: Homeworld B1 G3 R3\n\n2) TwoShort: Homeworld B1 R2 G3\n\tTwoShort: I had meant to suspend my standing challenge during my vacation.  Sorry; I&#39;m back now.  Also, you appear to be a new player, and you&#39;ve made, in my opinion, no offense, a disastrous opening.  Which all adds up to probably nobody is reading this.  On the other hand, if you want to play, or drop this game in favor of an unrated tutorial, or whatever, what the heck...\n\n\nHomeworlds Online (SDG# 13821)\nVariants: &quot;Hard time&quot;\nStarted: 2009.7.18, Ended: 2009.7.27\nParticipants: agentofchaos (S), PottyTroll (N)\nWinner: agentofchaos\n\n1) PottyTroll: Homeworld G3 B1 Y3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\tPottyTroll: good luck\n\tagentofchaos: Thanks, good luck to you too!\n\n3) PottyTroll: Build Y1 Pottytroll\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) PottyTroll: Build Y1 Pottytroll\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) PottyTroll: Discover Y1 Pottytroll R2 Hogdumpling\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) PottyTroll: Build Y2 Pottytroll\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) PottyTroll: Move Y2 Pottytroll Hogdumpling\n\n12) agentofchaos: Trade Y1 R1 Agentofchaos\n\n13) PottyTroll: Trade Y1 B1 Pottytroll\n\n14) agentofchaos: Trade G1 B1 Agentofchaos\n\n15) PottyTroll: Build B2 Pottytroll\n\n16) agentofchaos: Discover B1 Agentofchaos Y1 Dreamzone\n\n17) PottyTroll: Move B2 Pottytroll Hogdumpling\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) PottyTroll: Trade Y2 G2 Hogdumpling\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) PottyTroll: Build Y2 Hogdumpling\n\n22) agentofchaos: Move Y2 Agentofchaos Dreamzone\n\n23) PottyTroll: Trade Y2 R2 Hogdumpling\n\n24) agentofchaos: Build Y2 Agentofchaos\n\n25) PottyTroll: Move R2 Hogdumpling Dreamzone\n\n26) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R2 Dreamzone\n\n27) PottyTroll: Build Y2 Hogdumpling\n\n28) agentofchaos: Trade Y2 G2 Dreamzone\n\tPottyTroll: oops\n\tagentofchaos: :-)\n\n29) PottyTroll: Trade B1 R1 Pottytroll\n\n30) agentofchaos: Build R1 Dreamzone\n\n31) PottyTroll: Sacrifice G2 Hogdumpling\nBuild Y2 Pottytroll\nBuild Y3 Pottytroll\n\n32) agentofchaos: Discover Y2 Agentofchaos G1 Earthroot\n\n33) PottyTroll: Trade Y2 G2 Hogdumpling\n\n34) agentofchaos: Sacrifice G2 Dreamzone\nBuild Y2 Agentofchaos\nBuild Y3 Earthroot\n\n35) PottyTroll: Discover Y3 Pottytroll B2 Baitmaster\n\n36) agentofchaos: Move Y3 Earthroot Hogdumpling\n\n37) PottyTroll: Move G2 Hogdumpling Earthroot\n\n38) agentofchaos: Discover Y2 Earthroot B2 Terrorworld\n\n39) PottyTroll: Trade Y2 G2 Pottytroll\n\n40) agentofchaos: Sacrifice R2 Dreamzone\nAttack B2 Hogdumpling\nAttack Y1 Hogdumpling\n\n41) PottyTroll: Build Y2 Pottytroll\n\n42) agentofchaos: Move B1 Dreamzone Terrorworld\n\n43) PottyTroll: Move Y2 Pottytroll Terrorworld\n\n44) agentofchaos: Sacrifice Y2 Terrorworld\nMove B1 Terrorworld Pottytroll\nMove B2 Hogdumpling Pottytroll\n\n45) PottyTroll: Build G1 Earthroot\n\n46) agentofchaos: Move G1 Agentofchaos Earthroot\nCatastrophe Earthroot G\n\n47) PottyTroll: Trade Y2 R2 Terrorworld\n\n48) agentofchaos: Build B1 Pottytroll\nCatastrophe Pottytroll B\n\n49) PottyTroll: Build G1 Pottytroll\n\n50) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G3 Agentofchaos Dreamzone\nMove G3 Dreamzone Pottytroll\nCatastrophe Pottytroll G\n\n\tagentofchaos: Thanks for a fun game :-)\n\tPottyTroll: yeah it was a good one, learned a few things there.  thanks for playing\n\nHomeworlds Online (SDG# 13863)\nStarted: 2009.7.18, Ended: 2009.7.22\nParticipants: PottyTroll (S), umfpt (N)\nWinner: PottyTroll\n\n1) umfpt: Homeworld Y2 B1 G3\n\n2) PottyTroll: Homeworld G3 B1 Y3\n\tumfpt: Good luck.\n\n3) umfpt: Build G1 Umfpt\n\tPottyTroll: you too\n\n4) PottyTroll: Build Y1 Pottytroll\n\n5) umfpt: Build G1 Umfpt\n\n6) PottyTroll: Build Y1 Pottytroll\n\n7) umfpt: Discover G1 Umfpt B3 Tola\n\n8) PottyTroll: Discover Y1 Pottytroll R2 Spud\n\n9) umfpt: Build G1 Tola\n\n10) PottyTroll: Trade Y3 G3 Pottytroll\n\n11) umfpt: Trade G1 Y1 Tola\n\n12) PottyTroll: Build Y2 Pottytroll\n\n13) umfpt: Build Y2 Tola\n\n14) PottyTroll: Build Y3 Pottytroll\n\n15) umfpt: Sacrifice Y2 Tola\nMove Y1 Tola Spud\nMove Y1 Spud Pottytroll\nCatastrophe Pottytroll Y\n\n16) PottyTroll: Build G1 Pottytroll\n\n17) umfpt: Build G2 Tola\n\n18) PottyTroll: Trade G3 Y3 Pottytroll\n\n19) umfpt: Trade G2 Y2 Tola\n\n20) PottyTroll: Build G2 Pottytroll\n\n21) umfpt: Sacrifice Y2 Tola\nMove G1 Tola Spud\nMove G1 Spud Pottytroll\nCatastrophe Pottytroll G\n\n22) PottyTroll: Trade Y3 G3 Pottytroll\n\n23) umfpt: Discover G1 Umfpt Y3 Tola\n\n24) PottyTroll: Build G1 Pottytroll\n\n25) umfpt: Build G1 Umfpt\n\n26) PottyTroll: Trade G1 Y1 Pottytroll\n\n27) umfpt: Move G1 Tola Pottytroll\n\n28) PottyTroll: Trade Y1 R1 Pottytroll\n\n29) umfpt: Trade G1 Y1 Umfpt\n\n30) PottyTroll: Attack G1 Pottytroll\n\n31) umfpt: Discover Y1 Umfpt B3 Tola\n\n32) PottyTroll: Move Y1 Spud Pottytroll\n\n33) umfpt: Build G1 Umfpt\n\n34) PottyTroll: Move R1 Pottytroll Tola\n\n35) umfpt: Move Y1 Tola Pottytroll\n\n36) PottyTroll: Trade G1 R1 Pottytroll\n\n37) umfpt: Discover G1 Umfpt B3 Ohnoes\n\n38) PottyTroll: Attack Y1 Pottytroll\n\n39) umfpt: Build G1 Ohnoes\n\n40) PottyTroll: Move Y1 Pottytroll Tola\n\n41) umfpt: Trade G3 R3 Umfpt\n\n42) PottyTroll: Build G1 Pottytroll\n\n43) umfpt: Build G2 Ohnoes\n\n44) PottyTroll: Move G1 Pottytroll Ohnoes\nCatastrophe Ohnoes G\n\n45) umfpt: Trade R3 G3 Umfpt\n\tumfpt: Ouch.\r\n\n\n46) PottyTroll: Build G1 Pottytroll\n\n47) umfpt: Build G1 Umfpt\n\n48) PottyTroll: Move G1 Pottytroll Tola\n\n49) umfpt: Trade G1 R1 Umfpt\n\n50) PottyTroll: Build R2 Tola\n\n51) umfpt: Build G1 Umfpt\n\n52) PottyTroll: Trade R1 Y1 Tola\n\n53) umfpt: Trade G1 B1 Umfpt\n\n54) PottyTroll: Build Y2 Tola\n\n55) umfpt: Build B2 Umfpt\n\n56) PottyTroll: Trade Y2 B2 Tola\n\n57) umfpt: Discover B1 Umfpt Y3 Ohnoes\n\n58) PottyTroll: Build Y2 Pottytroll\n\n59) umfpt: Build B2 Umfpt\n\n60) PottyTroll: Move B2 Tola Umfpt\nCatastrophe Umfpt B\n\n61) umfpt: Build G1 Umfpt\n\n62) PottyTroll: Build Y2 Tola\n\n63) umfpt: Move B1 Ohnoes Umfpt\n\n64) PottyTroll: Move Y2 Tola Umfpt\n\n65) umfpt: Attack Y2S Umfpt\n\n66) PottyTroll: Sacrifice Y2 Pottytroll\nMove Y1 Tola Umfpt\nMove Y1 Tola Umfpt\nCatastrophe Umfpt Y\n\n\tPottyTroll: good game man\n\tumfpt: Thanks for the game.  I&#39;ve only played a couple of times before so I&#39;m still learning.\n\tPottyTroll: hey, no worries, I&#39;m learning too :)\n\nHomeworlds Online (SDG# 13823)\nVariants: &quot;Hard time&quot;\nStarted: 2009.7.19, Ended: 2009.10.15\nParticipants: agentofchaos (S), PottyTroll (N), umfpt (E)\nWinner: agentofchaos\n\n1) PottyTroll: Homeworld B2 Y1 G3\n\n2) umfpt: Homeworld Y3 B1 G3\n\n3) agentofchaos: Homeworld B3 R2 G3\n\tagentofchaos: Hi guys, enjoy the game :-)\n\n4) PottyTroll: Build G1 Pottytroll\n\n5) umfpt: Build G1 Umfpt\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) PottyTroll: Discover G1 Pottytroll Y3 Flapjacks\n\n8) umfpt: Discover G1 Umfpt B2 Tola\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) PottyTroll: Build G1 Pottytroll\n\n11) umfpt: Build G1 Umfpt\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) PottyTroll: Build G2 Pottytroll\n\n14) umfpt: Build G2 Tola\n\n15) agentofchaos: Build G2 Agentofchaos\n\n16) PottyTroll: Build G3 Flapjacks\n\n17) umfpt: Trade G2 Y2 Tola\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) PottyTroll: Trade G1 B1 Pottytroll\n\n20) umfpt: Build Y1 Tola\n\n21) agentofchaos: Trade G2 R2 Agentofchaos\n\n22) PottyTroll: Move B1 Pottytroll Flapjacks\n\n23) umfpt: Trade G1 R1 Umfpt\n\n24) agentofchaos: Discover Y1 Agentofchaos G1 Ixion\n\n25) PottyTroll: Trade G3 R3 Flapjacks\n\n26) umfpt: Build R1 Umfpt\n\n27) agentofchaos: Discover Y1 Ixion G3 Dagon\n\n28) PottyTroll: Move R3 Flapjacks Tola\n\n29) umfpt: Sacrifice Y2 Tola\nMove G1 Tola Flapjacks\nMove G1 Flapjacks Pottytroll\n\n30) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y2 Dagon\n\n31) PottyTroll: Trade G3 R3 Pottytroll\n\n32) umfpt: Move Y1 Tola Flapjacks\n\n33) agentofchaos: Build Y2 Dagon\n\n34) PottyTroll: Attack G1E Pottytroll\n\tPottyTroll: is there any reason the game isn&#39;t letting me attack the g1 ship in my homeworld?\n\tagentofchaos: In a multiplayer game the attack command has to specify the seat of the ship being attacked, i.e. the attack command for you would be &#39;a g1e pottytroll&#39;. If you leave out the &#39;e&#39; the command won&#39;t work. \n\tPottyTroll: ahh thanks :)\n\n35) umfpt: Build G1 Umfpt\n\n36) agentofchaos: Build Y2 Agentofchaos\n\n37) PottyTroll: Build R1 Pottytroll\n\n38) umfpt: Discover Y1 Flapjacks B1 Ohnoes\n\n39) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Dagon Pottytroll\nMove Y1 Dagon Pottytroll\n\n40) PottyTroll: Move G2 Pottytroll Flapjacks\n\n41) umfpt: Trade Y1 G1 Ohnoes\n\n42) agentofchaos: Move Y2 Dagon Pottytroll\nCatastrophe Pottytroll Y\n\n43) PottyTroll: Trade R1 Y1 Pottytroll\n\n44) umfpt: Build G2 Ohnoes\n\n45) agentofchaos: Build G2 Agentofchaos\n\n46) PottyTroll: Build G2 Pottytroll\n\n47) umfpt: Sacrifice G3 Umfpt\nBuild G3 Ohnoes\nBuild G3 Umfpt\nBuild G3 Umfpt\n\n48) agentofchaos: Move G2 Agentofchaos Ohnoes\nCatastrophe Ohnoes G\n\n49) PottyTroll: Move G1 Pottytroll Umfpt\nCatastrophe Umfpt G\n\n50) umfpt: Trade R1 G1 Umfpt\n\tPottyTroll: sorry bud :(\n\n51) agentofchaos: Build R1 Agentofchaos\n\tumfpt: lol well I expected one of the systems to get hit.\n\n52) PottyTroll: Build Y1 Pottytroll\n\n53) umfpt: Build G1 Umfpt\n\n54) agentofchaos: Build G1 Agentofchaos\n\n55) PottyTroll: Sacrifice Y1 Pottytroll\nMove R3 Tola Umfpt\n\n56) umfpt: Build R1 Umfpt\n\n57) agentofchaos: Trade R1 B1 Agentofchaos\n\n58) PottyTroll: Discover R3 Umfpt G2 Porkslap\n\n59) umfpt: Trade R1 Y1 Umfpt\n\n60) agentofchaos: Build G2 Agentofchaos\n\n61) PottyTroll: Build G3 Pottytroll\n\n62) umfpt: Build R1 Umfpt\n\n63) agentofchaos: Discover G3 Agentofchaos Y1 Lionheart\n\n64) PottyTroll: Build Y2 Pottytroll\n\n65) umfpt: Discover G1 Umfpt B2 Tola\n\n66) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Agentofchaos Lionheart\nMove G3 Lionheart Agentofchaos\n\n67) PottyTroll: Move Y2 Pottytroll Umfpt\n\n68) umfpt: Move R1 Umfpt Tola\n\n69) agentofchaos: Build G3 Lionheart\n\n70) PottyTroll: Sacrifice G1 Flapjacks\nBuild Y2 Umfpt\nCatastrophe Umfpt Y\n\n71) umfpt: Trade R1 Y1 Tola\n\n72) agentofchaos: Build Y2 Agentofchaos\n\n73) PottyTroll: Build Y2 Pottytroll\n\n74) umfpt: Build Y2 Tola\n\n75) agentofchaos: Move G3 Lionheart Tola\n\n76) PottyTroll: Sacrifice Y1 Pottytroll\nMove R3 Porkslap Lionheart\n\n77) umfpt: Build G1 Umfpt\n\n78) agentofchaos: Discover G2 Lionheart Y2 Braveheart\n\n79) PottyTroll: Move G2 Pottytroll Lionheart\n\n80) umfpt: Build G2 Tola\n\n81) agentofchaos: Trade G3 R3 Tola\n\n82) PottyTroll: Build R1 Lionheart\n\n83) umfpt: Sacrifice Y2 Tola\nMove G2 Tola Flapjacks\nMove Y1 Tola Flapjacks\n\n84) agentofchaos: Move R2 Agentofchaos Umfpt\n\n85) PottyTroll: Build G3 Lionheart\n\n86) umfpt: Build Y1 Flapjacks\n\n87) agentofchaos: Move G1 Agentofchaos Umfpt\n\n88) PottyTroll: Move G2 Flapjacks Umfpt\nCatastrophe Umfpt G\n\n89) umfpt: Sacrifice G2 Flapjacks\nBuild R1 Umfpt\nBuild Y2 Flapjacks\n\n90) agentofchaos: Attack R1E Umfpt\nCatastrophe Flapjacks Y\n\n91) PottyTroll: Build Y1 Pottytroll\n\n92) umfpt: Attack R1S Umfpt\n\n93) agentofchaos: Attack G1E Tola\n\n94) PottyTroll: Discover G2 Lionheart B2 Baconwave\n\n95) umfpt: Trade R1 Y1 Umfpt\n\n96) agentofchaos: Discover Y2 Agentofchaos G1 Kirilthrendor\n\n97) PottyTroll: Trade Y1 B1 Pottytroll\n\n98) umfpt: Trade R1 G1 Umfpt\n\n99) agentofchaos: Sacrifice G2 Braveheart\nBuild G1 Agentofchaos\nBuild G2 Tola\n\n100) PottyTroll: Build G2 Lionheart\n\n101) umfpt: Build G2 Umfpt\n\n102) agentofchaos: Trade G1 R1 Agentofchaos\n\n103) PottyTroll: Move B1 Pottytroll Lionheart\n\n104) umfpt: Trade G1 R1 Umfpt\n\n105) agentofchaos: Discover R1 Agentofchaos Y1 Kakrafoon\n\n106) PottyTroll: Build B1 Lionheart\n\n107) umfpt: Attack R2S Umfpt\n\n108) agentofchaos: Move B1 Agentofchaos Kirilthrendor\n\n109) PottyTroll: Build Y2 Pottytroll\n\n110) umfpt: Build Y2 Umfpt\n\n111) agentofchaos: Sacrifice G2 Tola\nBuild Y3 Agentofchaos\nBuild Y3 Kirilthrendor\n\n112) PottyTroll: Trade G3 Y3 Lionheart\n\n113) umfpt: Build Y3 Umfpt\n\n114) agentofchaos: Build B2 Kirilthrendor\n\n115) PottyTroll: Move Y2 Pottytroll Umfpt\nCatastrophe Umfpt Y\n\n116) umfpt: Trade R1 Y1 Umfpt\n\n117) agentofchaos: Trade R3 B3 Tola\n\n118) PottyTroll: Sacrifice Y3 Lionheart\nMove B1 Lionheart Tola\nMove B1 Lionheart Tola\nMove R1 Lionheart Baconwave\nCatastrophe Tola B\n\n119) umfpt: Build Y2 Umfpt\n\n120) agentofchaos: Sacrifice B2 Kirilthrendor\nTrade Y2 B2 Kirilthrendor\nTrade R1 B1 Kakrafoon\n\n121) PottyTroll: Build Y2 Pottytroll\n\n122) umfpt: Build R1 Umfpt\n\n123) agentofchaos: Sacrifice Y3 Kirilthrendor\nMove B1 Kirilthrendor Pottytroll\nMove B1 Kakrafoon Pottytroll\nMove B2 Kirilthrendor Pottytroll\nCatastrophe Pottytroll B\n\n124) umfpt: Move R2 Umfpt Baconwave\n\n125) agentofchaos: Move Y3 Agentofchaos Lionheart\n\n126) umfpt: Attack G2N Baconwave\n\n127) agentofchaos: Trade Y1 R1 Agentofchaos\n\n128) umfpt: Sacrifice Y1 Umfpt\nMove R2 Baconwave Umfpt\n\n129) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R3N Lionheart\n\n130) umfpt: Build G1 Umfpt\n\n131) agentofchaos: Attack G2N Lionheart\n\n132) umfpt: Sacrifice Y2 Umfpt\nMove G2 Umfpt Agentofchaos\nMove G1 Umfpt Agentofchaos\n\n133) agentofchaos: Sacrifice R3 Lionheart\nAttack G1E Agentofchaos\nAttack G2E Agentofchaos\nPass\n\n134) umfpt: Trade R2 Y2 Umfpt\n\n135) agentofchaos: Trade G2 R2 Agentofchaos\n\n136) umfpt: Sacrifice G2 Baconwave\nBuild R1 Umfpt\nBuild Y1 Umfpt\n\n137) agentofchaos: Trade R2 Y2 Agentofchaos\n\n138) umfpt: Trade Y1 G1 Umfpt\n\n139) agentofchaos: Move Y3 Lionheart Baconwave\n\n140) umfpt: Build G1 Umfpt\n\n141) agentofchaos: Move G1 Agentofchaos Lionheart\n\n142) umfpt: Build Y1 Umfpt\n\n143) agentofchaos: Move Y3 Baconwave Umfpt\n\n144) umfpt: Sacrifice Y2 Umfpt\nMove R1 Umfpt Agentofchaos\nMove R1 Umfpt Agentofchaos\n\n145) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Lionheart Baconwave\nMove G2 Baconwave Umfpt\n\n146) umfpt: Sacrifice G1 Umfpt\nBuild R1 Agentofchaos\nCatastrophe Agentofchaos R\n\n147) agentofchaos: Trade Y3 R3 Umfpt\n\n148) umfpt: Build G1 Umfpt\n\n149) agentofchaos: Sacrifice G1 Lionheart\nBuild G1 Umfpt\nCatastrophe Umfpt G\n\n150) umfpt: Trade Y1 G1 Umfpt\n\n151) agentofchaos: Attack G1E Umfpt\n\n\tagentofchaos: Thanks for the game and for hanging in there. I enjoyed playing you :)\n\nHomeworlds Online (SDG# 13818)\nStarted: 2009.7.20, Ended: 2009.8.12\nParticipants: ts52 (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld G2 B1 Y3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) wmreed: Build Y1 Wmreed\n\twmreed: Hello!\n\n4) ts52: Build G1 Ts52\n\n5) wmreed: Trade Y1 G1 Wmreed\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wmreed: Build G1 Wmreed\n\n8) ts52: Discover Y1 Ts52 G1 Robin\n\twmreed: Just FYI, I will be out of town Thurs. - Sun. if our game is still going on.\n\n9) wmreed: Discover G1 Wmreed B3 Ballard\n\n10) ts52: Build G2 Ts52\n\tts52: Ok, no problem. Thanks for the heads up.\n\n11) wmreed: B Y1 Wmreed\n\n12) ts52: D G2 Ts52 B1 Grover\n\n13) wmreed: T G1 R1 Wmreed\n\n14) ts52: Build G1 Grover\n\n15) wmreed: T Y3 G3 Wmreed\n\n16) ts52: Sacrifice Y1 Robin\nDiscover G2 Grover G3 Kermit\n\n17) wmreed: M G3 Wmreed Kermit\n\n18) ts52: Build G1 Kermit\nCatastrophe Kermit Green\n\n19) wmreed: Build R1 Wmreed\n\n20) ts52: Trade G3 R3 Ts52\n\twmreed: Nice play following my stupid move.\r\n\n\n21) wmreed: Build Y1 Wmreed\n\n22) ts52: Sacrifice G1 Grover\nBuild R1 Ts52\n\n23) wmreed: Build R2 Wmreed\n\n24) ts52: Trade R1 G1 Ts52\n\n25) wmreed: Move R1 Wmreed Ballard\n\n26) ts52: Build G1 Ts52\n\n27) wmreed: Build G2 Ballard\n\n28) ts52: Discover G1 Ts52 B1 Gonzo\n\n29) wmreed: Discover Y1 Wmreed G3 Logan\n\n30) ts52: Build R1 Ts52\n\n31) wmreed: Move R1 Wmreed Logan\n\n32) ts52: Move R1 Ts52 Gonzo\n\n33) wmreed: Build Y1 Logan\n\n34) ts52: Build R2 Gonzo\n\n35) wmreed: Sacrifice G2 Ballard\nBuild R2 Logan\nBuild R3 Wmreed\n\n36) ts52: Build R3 Ts52\n\n37) wmreed: Build Y2 Wmreed\n\n38) ts52: Trade R2 Y2 Gonzo\n\n39) wmreed: Discover R2 Wmreed Y3 Jessica\n\n40) ts52: Discover R3 Ts52 B1 Grover\n\n41) wmreed: Move Y2 Wmreed Ballard\n\twmreed: man, that&#39;s a lot of red.\r\n\n\n42) ts52: Build G2 Ts52\n\n43) wmreed: Build Y2 Wmreed\n\n44) ts52: Discover G1 Gonzo Y3 Bigbird\n\n45) wmreed: Sacrifice Y1 Logan\nDiscover R2 Logan Y1 Francis\n\n46) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R2 Gonzo\n\n47) wmreed: Trade R3 G3 Wmreed\n\n48) ts52: Move G2 Ts52 Gonzo\n\n49) wmreed: Move R1 Ballard Wmreed\n\n50) ts52: Move G2 Gonzo Bigbird\n\n51) wmreed: Sacrifice G3 Wmreed\nBuild R3 Wmreed\nBuild G2 Ballard\nBuild G3 Ballard\n\n52) ts52: Build G3 Ts52\n\n53) wmreed: Move G3 Ballard Gonzo\n\n54) ts52: Move R2 Gonzo Ballard\n\n55) wmreed: Sacrifice R2 Jessica\nAttack R2 Ballard\nAttack Y2 Gonzo\n\n56) ts52: Trade R3 Y3 Grover\n\n57) wmreed: Sacrifice R1 Logan\nAttack R1 Gonzo\n\n58) ts52: Move R3 Ts52 Grover\n\n59) wmreed: Move G1 Ballard Francis\n\n60) ts52: Move R3 Grover Logan\n\n61) wmreed: Sacrifice Y2 Gonzo\nMove G3 Gonzo Ts52\nMove G1 Francis Ts52\nCatastrophe Ts52 Green\n\n\twmreed: Thank you for the game.\n\tts52: Well played. I somehow missed that you had the green ships in place to do that.\r\nThanks for the game.\n\nHomeworlds Online (SDG# 13861)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2009.7.21, Ended: 2009.9.6\nParticipants: agentofchaos (S), jonaskoelker (N)\nWinner: agentofchaos\n\n1) jonaskoelker: Homeworld B2 R1 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\tagentofchaos: Hi, enjoy the game. \n\n4) agentofchaos: Build G1 Agentofchaos\n\tjonaskoelker: Hi.  Thanks, You too :)\r\n\r\nAre you an experienced player?  This is my second game of homeworlds, and my first is still in progress.  Expect me to make a mistake or two ;)\r\n\r\nMaybe we can have a post-game strategy discussion?\r\n\n\tagentofchaos: I&#39;m moderately experienced, I&#39;ve played about a dozen games or so. I&#39;d be happy to have a discussion about strategy afterwards. \n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) agentofchaos: Build G1 Agentofchaos\n\tjonaskoelker: cool, I&#39;m looking forward to the post-game discussion :)\r\n\r\nAs a tangent, what do you think about micro-world openings (i.e. B2 Y1 G3 vs B3 Y3 G3)?  How about extremely offensive microworlds, such as B2 Y1 G3 vs G3 Y3 R3?\n\tagentofchaos: I&#39;m not sure if the rules allow you to have 2 stars of the same size in your homeworld but I could be wrong on that point. I think microworlds like b2 y1 g3 are fine, as I don&#39;t think the size of your homeworld stars matters too much. Personally I prefer to start with a red star in my homeworld so I can always protect it even if I don&#39;t have a red ship. \n\n7) jonaskoelker: Build Y1 Jonaskoelker\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) jonaskoelker: Build Y2 Jonaskoelker\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) jonaskoelker: Discover Y1 Jonaskoelker G3 Lush\n\n12) agentofchaos: Trade Y1 R1 Agentofchaos\n\n13) jonaskoelker: Trade Y1 R1 Jonaskoelker\n\n14) agentofchaos: Build Y1 Agentofchaos\n\tjonaskoelker: Sorry for the long delay, I&#39;ll try and play faster.\n\tagentofchaos: That&#39;s alright, how you use your time is up to you. \n\n15) jonaskoelker: Build R2 Jonaskoelker\n\n16) agentofchaos: Discover R1 Agentofchaos G1 Ykron\n\n17) jonaskoelker: Move R2 Jonaskoelker Lush\n\n18) agentofchaos: Build R2 Ykron\n\n19) jonaskoelker: Build R3 Lush\n\n20) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R2 Ykron Y3 Jeroboam\n\tjonaskoelker: Planet wide celebration was held on Lush, in honor of the planet&#39;s first large ship.  She has been christened &quot;Red 3&quot;.\r\n\r\n(For bonus geek credit, name the pilot of Red 3 in A New Hope :D)\r\n\n\n21) jonaskoelker: Build R3 Lush\n\tagentofchaos: A joyous occasion I&#39;m sure!\r\nI&#39;ll have to pass on the geek credit, my Star Wars trivia is a bit rusty :-)\n\tjonaskoelker: The answer is Biggs :)\n\n22) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Ykron Lush\nPass\nCatastrophe Lush R\n\tjonaskoelker: Another large warship was constructed on Lush.  The people celebrated yet again, and in honor of King Arthur, the greatest counter of numbers among men, named this ship &quot;Red 5&quot;.\r\n\r\nRumor has it that our neighbors (with whom we have a friendly but tense relationship) wants to participate in the space race as well.  But they are no match for jonaskoelkerian nor lushian proud red cosmonauts!\n\tagentofchaos: I&#39;m getting a bit nervous about all those large red ships, time for drastic measures...\n\n23) jonaskoelker: Build G1 Jonaskoelker\n\n24) agentofchaos: Trade G1 Y1 Agentofchaos\n\tjonaskoelker: Yay, my plan worked :)\n\n25) jonaskoelker: Build Y1 Lush\n\tagentofchaos: A very dark design, I&#39;ll wager...\n\n26) agentofchaos: Build Y2 Agentofchaos\n\n27) jonaskoelker: Discover Y1 Lush B1 Smallblue\n\n28) agentofchaos: Trade Y1 G1 Agentofchaos\n\tjonaskoelker: Let&#39;s see what you will do about my next sinister plan... :)\n\n29) jonaskoelker: Build Y1 Lush\n\tagentofchaos: I shudder to think...\n\n30) agentofchaos: Build G1 Agentofchaos\n\n31) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild Y2 Smallblue\nBuild Y3 Jonaskoelker\nBuild Y3 Lush\n\n32) agentofchaos: Trade G1 B1 Agentofchaos\n\n33) jonaskoelker: Trade Y1 B1 Smallblue\n\tagentofchaos: Ooh you greedy so and so... ;-)\n\n34) agentofchaos: Build Y1 Agentofchaos\n\n35) jonaskoelker: Trade Y3 G3 Jonaskoelker\n\n36) agentofchaos: Discover Y1 Agentofchaos G1 Superfreak\n\tjonaskoelker: Yes, I am greedy.  Very, very greedy! :)\r\n\n\n37) jonaskoelker: Build Y3 Jonaskoelker\n\n38) agentofchaos: Move Y1 Superfreak Lush\nCatastrophe Lush Y\n\n39) jonaskoelker: Move G3 Jonaskoelker Jeroboam\n\tjonaskoelker: You bunning castard! ;-)\n\tagentofchaos: I have my bunning moments!\n\n40) agentofchaos: Discover R2 Jeroboam Y1 Jehannum\n\n41) jonaskoelker: Discover Y2 Jonaskoelker G3 Large_green\n\n42) agentofchaos: Build Y1 Agentofchaos\n\n\tjonaskoelker: Aww crap, you overrun your time by a week and hard time triggers :(\r\n\r\nSorry for disappearing off the face of the earth for so long.  I&#39;d like to finish this game.  How about you?  (If you feel like it&#39;s just &quot;going through the motions&quot;, that&#39;s okay...)\r\n\r\nWe can either recreate it here on SDG, or play by plain old email, or some other solution.\n\tagentofchaos: OK we can try recreating the game, email might get confusing as I don&#39;t have a set of icehouse pieces. Send me a challenge and we can set it up. \n\nHomeworlds Online (SDG# 13877)\nStarted: 2009.7.22, Ended: 2009.7.25\nParticipants: PottyTroll (S), TwoShort (N)\nWinner: PottyTroll\n\n\nHomeworlds Online (SDG# 13881)\nVariants: &quot;No undo&quot;\nStarted: 2009.7.22, Ended: 2009.7.22\nParticipants: uncledan (S), MangoToque (N)\nWinner: MangoToque\n\n1) MangoToque: Homeworld G2 Y1 B3\n\tuncledan: homeworld G3 B1 R3\n\n2) uncledan: Homeworld G3 B1 R3\n\n3) MangoToque: Build B1 Mangotoque\n\tMangoToque: done\r\n\n\n4) uncledan: Build R1 Uncledan\n\n5) MangoToque: Discover B1 Mangotoque G3 Bob\n\n6) uncledan: Trade R1 Y1 Uncledan\n\n7) MangoToque: Build B1 Bob\n\n8) uncledan: Build R1 Uncledan\n\n9) MangoToque: Build B2 Mangotoque\n\n10) uncledan: Discover R1 Uncledan B2 Jim\n\n11) MangoToque: Discover B2 Mangotoque G3 Ken\n\n12) uncledan: Sacrifice Y1 Uncledan\nMove R1 Jim Ken\n\n13) MangoToque: Build B2 Ken\n\n14) uncledan: Build R1 Uncledan\n\n15) MangoToque: Build B2 Mangotoque\n\n16) uncledan: Trade R1 Y1 Uncledan\n\n17) MangoToque: Build B3 Bob\n\n18) uncledan: Discover R3 Uncledan Y2 Jim\n\n19) MangoToque: Sacrifice B3 Mangotoque\nTrade B2 Y2 Ken\nTrade B3 R3 Bob\nTrade B1 R1 Bob\n\n20) uncledan: Discover R3 Jim Y3 Jack\n\n21) MangoToque: Sacrifice Y2 Ken\nDiscover R3 Bob Y2 Bill\nMove R3 Bill Uncledan\n\n22) uncledan: Build Y1 Uncledan\n\n23) MangoToque: Attack Y1 Uncledan\n\n24) uncledan: Build Y2 Uncledan\n\n25) MangoToque: Attack Y2 Uncledan\n\n26) uncledan: Build Y2 Uncledan\n\n27) MangoToque: Pass\nCatastrophe Uncledan Y\n\n\nHomeworlds Online (SDG# 13882)\nVariants: &quot;No undo&quot;\nStarted: 2009.7.22, Ended: 2009.7.28\nParticipants: uncledan (S), MangoToque (N)\nWinner: uncledan\n\n1) MangoToque: Homeworld Y2 G1 B3\n\n2) uncledan: Homeworld B3 G2 R3\n\n3) MangoToque: Build B1 Mangotoque\n\n4) uncledan: Build R1 Uncledan\n\n5) MangoToque: Discover B1 Mangotoque G3 Bob\n\n6) uncledan: Build R1 Uncledan\n\n7) MangoToque: Build B1 Mangotoque\n\n8) uncledan: Trade R1 Y1 Uncledan\n\n9) MangoToque: Build B1 Mangotoque\n\n10) uncledan: Build Y1 Uncledan\n\n11) MangoToque: Build B2 Bob\n\n12) uncledan: Build R1 Uncledan\n\n13) MangoToque: Build B2 Bob\n\n14) uncledan: Discover R1 Uncledan G1 Zog\n\n15) MangoToque: Sacrifice B2 Bob\nTrade B3 G3 Mangotoque\nTrade B2 Y2 Bob\n\n16) uncledan: Build R1 Zog\n\n17) MangoToque: Build B2 Bob\n\n18) uncledan: Build R2 Zog\n\n19) MangoToque: Build B2 Mangotoque\n\n20) uncledan: Sacrifice Y1 Uncledan\nMove R2 Zog Bob\n\n21) MangoToque: Sacrifice Y2 Bob\nDiscover B2 Bob B2 Ken\nMove B1 Bob Ken\n\n22) uncledan: Build R2 Bob\n\n23) MangoToque: Discover B2 Mangotoque R3 Bill\n\n24) uncledan: Build R2 Zog\n\n25) MangoToque: Discover B1 Mangotoque R3 Joe\n\n26) uncledan: Discover R3 Uncledan Y1 Gred\n\n27) MangoToque: Build G1 Mangotoque\n\n28) uncledan: Move R3 Gred Ken\n\n29) MangoToque: Sacrifice G3 Mangotoque\nBuild B3 Mangotoque\nBuild B3 Mangotoque\nBuild G2 Mangotoque\n\n30) uncledan: Attack B2 Ken\n\n31) MangoToque: Sacrifice B2 Bill\nTrade B3 R3 Mangotoque\nTrade G1 Y1 Mangotoque\n\n32) uncledan: Trade B2 Y2 Ken\n\n33) MangoToque: Move R3 Mangotoque Bob\n\n34) uncledan: Move R3 Ken Joe\n\n35) MangoToque: Sacrifice Y1 Mangotoque\nDiscover R3 Bob Y1 Tim\n\n36) uncledan: Sacrifice Y2 Ken\nMove R3 Joe Zog\nMove R3 Zog Uncledan\n\n37) MangoToque: Sacrifice B1 Joe\nTrade B3 R3 Mangotoque\n\n38) uncledan: Build Y1 Uncledan\n\n39) MangoToque: Build G1 Mangotoque\n\n40) uncledan: Move Y1 Uncledan Zog\n\n41) MangoToque: Trade G2 Y2 Mangotoque\n\n42) uncledan: Build Y2 Uncledan\n\n43) MangoToque: Discover R3 Mangotoque Y3 Dave\n\n44) uncledan: Build Y3 Uncledan\n\n45) MangoToque: Discover Y2 Mangotoque Y3 Bill\n\n46) uncledan: Sacrifice Y3 Uncledan\nMove R3 Uncledan Tim\nMove R3 Tim Bob\nMove R3 Bob Mangotoque\n\n47) MangoToque: Sacrifice Y2 Bill\nMove R3 Tim Uncledan\nMove R3 Dave Mangotoque\n\n48) uncledan: Sacrifice R2 Bob\nAttack R3 Mangotoque\nAttack B1 Mangotoque\n\n49) MangoToque: Attack Y2 Uncledan\n\n50) uncledan: Attack G1 Mangotoque\n\n\nHomeworlds Online (SDG# 13860)\nVariants: &quot;Hard time&quot;\nStarted: 2009.7.23, Ended: 2009.9.4\nParticipants: tikimcfee (S), PottyTroll (W), agentofchaos (N), umfpt (E)\nWinner: PottyTroll\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n2) umfpt: Homeworld G3 B1 Y3\n\tagentofchaos: Hi guys, enjoy the game :-)\n\n3) tikimcfee: Homeworld B1 R2 G3\n\n4) PottyTroll: Homeworld Y3 G1 B3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) umfpt: Build Y1 Umfpt\n\n7) tikimcfee: Build G1 Tikimcfee\n\n8) PottyTroll: Build B1 Pottytroll\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) umfpt: Trade Y1 G1 Umfpt\n\n11) tikimcfee: Build G2 Tikimcfee\n\n12) PottyTroll: Discover B1 Pottytroll G2 Trampstamp\n\n13) agentofchaos: Trade G1 Y1 Agentofchaos\n\n14) umfpt: Build G1 Umfpt\n\n15) tikimcfee: Trade G1 Y1 Tikimcfee\n\n16) PottyTroll: Build B1 Trampstamp\n\n17) agentofchaos: Trade G1 B1 Agentofchaos\n\n18) umfpt: Move G1 Umfpt Trampstamp\n\n19) tikimcfee: Build Y1 Tikimcfee\n\n20) PottyTroll: Build B2 Pottytroll\n\n21) agentofchaos: Build B2 Agentofchaos\n\n22) umfpt: Build Y1 Umfpt\n\n23) tikimcfee: Trade Y1 R1 Tikimcfee\n\n24) PottyTroll: Trade B1 R1 Trampstamp\n\n25) agentofchaos: Trade B1 R1 Agentofchaos\n\n26) umfpt: Discover Y1 Umfpt B2 Tola\n\n27) tikimcfee: Trade G3 B3 Tikimcfee\n\n28) PottyTroll: Attack G1E Trampstamp\n\n29) agentofchaos: Build G1 Agentofchaos\n\n30) umfpt: Trade G1 R1 Umfpt\n\n31) tikimcfee: Discover R1 Tikimcfee G3 Gobligook\n\n32) PottyTroll: Trade B2 Y2 Pottytroll\n\n33) agentofchaos: Build B1 Agentofchaos\n\n34) umfpt: Build R1 Umfpt\n\n35) tikimcfee: Build R2 Gobligook\n\n36) PottyTroll: Build R2 Trampstamp\n\n37) agentofchaos: Trade B2 Y2 Agentofchaos\n\n38) umfpt: Move R1 Umfpt Tola\n\n39) tikimcfee: Build B1 Tikimcfee\n\n40) PottyTroll: Build B2 Pottytroll\n\n41) agentofchaos: Discover Y2 Agentofchaos G1 Goldome\n\n42) umfpt: Build R2 Umfpt\n\n43) tikimcfee: Sacrifice Y1 Tikimcfee\nMove R2 Gobligook Tola\n\n44) PottyTroll: Trade G1 Y1 Trampstamp\n\n45) agentofchaos: Move R1 Agentofchaos Goldome\n\n46) umfpt: Sacrifice Y1 Tola\nMove R1 Tola Umfpt\n\n47) tikimcfee: Trade B3 Y3 Tikimcfee\n\n48) PottyTroll: Move R1 Trampstamp Umfpt\nCatastrophe Umfpt R\n\n49) agentofchaos: Move B1 Agentofchaos Goldome\n\n50) umfpt: Build Y1 Umfpt\n\n51) tikimcfee: Move B1 Tikimcfee Gobligook\n\n52) PottyTroll: Build Y1 Trampstamp\n\n53) agentofchaos: Build B2 Goldome\n\n54) umfpt: Trade Y1 R1 Umfpt\n\n55) tikimcfee: Build B2 Gobligook\n\n56) PottyTroll: Trade B2 R2 Pottytroll\n\n57) agentofchaos: Trade B2 G2 Goldome\n\n58) umfpt: Build Y1 Umfpt\n\n59) tikimcfee: Trade B1 Y1 Gobligook\n\n60) PottyTroll: Sacrifice Y2 Pottytroll\nMove Y1 Trampstamp Umfpt\nMove Y1 Trampstamp Umfpt\nCatastrophe Umfpt Y\n\n61) agentofchaos: Trade G2 R2 Goldome\n\n62) umfpt: Build R1 Umfpt\n\n63) tikimcfee: Sacrifice G2 Tikimcfee\nBuild R1 Tola\nBuild R3 Gobligook\n\n64) PottyTroll: Build R3 Pottytroll\n\n65) agentofchaos: Discover R2 Goldome G3 Agragore\n\n66) umfpt: Build R3 Umfpt\n\n67) tikimcfee: Sacrifice Y1 Gobligook\nMove R1 Tola Umfpt\nCatastrophe Umfpt R\n\n68) agentofchaos: Build Y1 Agentofchaos\n\n69) tikimcfee: Trade R1 Y1 Gobligook\n\n70) PottyTroll: Trade R2 Y2 Pottytroll\n\n71) agentofchaos: Build R1 Agragore\n\n72) tikimcfee: Build Y1 Gobligook\n\n73) PottyTroll: Build R1 Trampstamp\n\n74) agentofchaos: Sacrifice Y2 Goldome\nMove R1 Agragore Tikimcfee\nMove R2 Agragore Tikimcfee\n\n75) tikimcfee: Attack R2N Tikimcfee\n\n76) PottyTroll: Build B1 Trampstamp\n\n77) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Tikimcfee\nCatastrophe Tikimcfee R\n\n78) tikimcfee: Trade B2 G2 Gobligook\n\n79) PottyTroll: Trade R1 G1 Trampstamp\n\n80) agentofchaos: Trade R1 Y1 Goldome\n\n81) tikimcfee: Move Y1 Gobligook Tola\n\n82) PottyTroll: Discover Y2 Pottytroll G2 Slippyfist\n\n83) agentofchaos: Discover B1 Goldome G3 Mjolnir\n\n84) tikimcfee: Trade Y1 G1 Tola\n\n85) PottyTroll: Build R1 Pottytroll\n\n86) agentofchaos: Build B1 Mjolnir\n\n87) tikimcfee: Sacrifice Y1 Gobligook\nMove R2 Tola Mjolnir\n\n88) PottyTroll: Build B2 Pottytroll\n\n89) agentofchaos: Sacrifice Y1 Goldome\nMove B1 Mjolnir Tikimcfee\n\n90) tikimcfee: Attack B1N Mjolnir\n\n91) PottyTroll: Sacrifice Y2 Slippyfist\nMove B1 Trampstamp Tikimcfee\nMove B1 Trampstamp Tikimcfee\nCatastrophe Tikimcfee B\n\n92) agentofchaos: Trade Y1 R1 Agentofchaos\n\n93) PottyTroll: Move B2 Pottytroll Trampstamp\n\n94) agentofchaos: Build G1 Agentofchaos\n\n95) PottyTroll: Trade G1 Y1 Trampstamp\n\n96) agentofchaos: Build Y1 Agentofchaos\n\n97) PottyTroll: Discover R2 Trampstamp G1 Porkslap\n\n98) agentofchaos: Discover Y1 Agentofchaos G1 Feldspar\n\n99) PottyTroll: Build R1 Porkslap\n\n100) agentofchaos: Move Y1 Feldspar Gobligook\n\n101) PottyTroll: Move B2 Trampstamp Porkslap\n\n102) agentofchaos: Build Y1 Gobligook\n\n103) PottyTroll: Move Y1 Trampstamp Porkslap\n\n104) agentofchaos: Trade G1 B1 Agentofchaos\n\n105) PottyTroll: Trade R2 Y2 Porkslap\n\n106) agentofchaos: Build Y1 Agentofchaos\n\n107) PottyTroll: Build B1 Porkslap\n\n108) agentofchaos: Discover B1 Agentofchaos G1 Dreamland\n\n109) PottyTroll: Build B1 Porkslap\n\n110) agentofchaos: Move Y1 Gobligook Porkslap\n\n111) PottyTroll: Move Y2 Porkslap Tola\n\n112) agentofchaos: Build Y2 Porkslap\n\n113) PottyTroll: Move B1 Porkslap Agentofchaos\n\n114) agentofchaos: Build Y2 Porkslap\nCatastrophe Porkslap Y\n\n115) PottyTroll: Sacrifice Y2 Tola\nMove B1 Porkslap Agentofchaos\nMove B2 Porkslap Agentofchaos\nCatastrophe Agentofchaos B\n\n116) agentofchaos: Build G1 Agentofchaos\n\n117) PottyTroll: Build B1 Pottytroll\n\tagentofchaos: You blackguard! ;-)\n\n118) agentofchaos: Trade B1 Y1 Dreamland\n\n119) PottyTroll: Move R3 Pottytroll Tola\n\n120) agentofchaos: Build G2 Agentofchaos\n\n121) PottyTroll: Attack G1S Tola\n\n122) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Gobligook\n\n123) PottyTroll: Build G2 Tola\n\n124) agentofchaos: Build Y2 Dreamland\n\n125) PottyTroll: Trade G2 Y2 Tola\n\n126) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R1 Agentofchaos Y1 Troubletimes\n\n127) PottyTroll: Sacrifice Y2 Tola\nMove R3 Tola Agentofchaos\nMove R1 Porkslap Agentofchaos\n\n128) agentofchaos: Attack R3W Agentofchaos\n\n129) PottyTroll: Sacrifice G1 Tola\nBuild R1 Agentofchaos\nCatastrophe Agentofchaos R\n\n\tPottyTroll: good game\n\tagentofchaos: well done\n\nHomeworlds Online (SDG# 13889)\nVariants: &quot;Hard time&quot;\nStarted: 2009.7.26, Ended: 2009.8.12\nParticipants: Horowits (S), agentofchaos (N)\nWinner: Horowits\n\n1) agentofchaos: Homeworld R3 B2 G3\n\n2) Horowits: Homeworld G3 Y1 B3\n\tagentofchaos: Hi enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\tHorowits: thanks, you too\n\n4) Horowits: Build B1 Horowits\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Horowits: Build B1 Horowits\n\n7) agentofchaos: Trade G1 B1 Agentofchaos\n\n8) Horowits: Trade B1 R1 Horowits\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) Horowits: Discover B1 Horowits G2 Greens\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) Horowits: Build R1 Horowits\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) Horowits: Build R2 Horowits\n\n15) agentofchaos: Build R2 Agentofchaos\n\n16) Horowits: Move R1 Horowits Greens\n\n17) agentofchaos: Build Y1 Agentofchaos\n\n18) Horowits: Trade R2 Y2 Horowits\n\n19) agentofchaos: Trade R1 G1 Agentofchaos\n\n20) Horowits: Build B1 Horowits\n\n21) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R2 Agentofchaos Y1 Myxo\n\n22) Horowits: Build B2 Greens\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) Horowits: Trade B2 Y2 Greens\n\n25) agentofchaos: Discover Y2 Agentofchaos G1 Glaucous\n\n26) Horowits: Build Y3 Greens\n\n27) agentofchaos: Build Y3 Glaucous\n\n28) Horowits: Sacrifice Y2 Horowits\nDiscover B1 Horowits G2 Gwar\nDiscover Y3 Greens R1 Gir\n\n29) agentofchaos: Build G1 Agentofchaos\n\n30) Horowits: Build B2 Gwar\n\n31) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R2 Myxo\n\n32) Horowits: Build B2 Horowits\n\n33) agentofchaos: Move B1 Agentofchaos Glaucous\n\n34) Horowits: Build B3 Greens\n\n35) agentofchaos: Build B3 Glaucous\n\n36) Horowits: Sacrifice Y2 Greens\nMove B1 Greens Glaucous\nMove B1 Gwar Glaucous\nCatastrophe Glaucous Blue\n\n37) agentofchaos: Build Y2 Glaucous\n\n38) Horowits: Trade B3 Y3 Greens\n\n39) agentofchaos: Discover Y2 Glaucous G2 Zurwheel\n\n40) Horowits: Trade B2 R2 Gwar\n\n41) agentofchaos: Build Y2 Agentofchaos\n\n42) Horowits: Build R3 Horowits\n\n43) agentofchaos: Move Y2 Glaucous Zurwheel\n\n44) Horowits: Move R3 Horowits Zurwheel\n\n45) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Zurwheel Horowits\nMove Y2 Zurwheel Horowits\n\n46) Horowits: Build R3 Horowits\n\n47) agentofchaos: Build Y2 Horowits\nCatastrophe Horowits Y\n\n48) Horowits: Sacrifice Y3 Greens\nMove R1 Horowits Myxo\nMove R2 Gwar Myxo\nDiscover B3 Horowits B1 Bluish\nCatastrophe Myxo Red\n\n49) agentofchaos: Trade G1 R1 Agentofchaos\n\n50) Horowits: Sacrifice Y3 Gir\nMove B3 Bluish Agentofchaos\nMove R3 Zurwheel Glaucous\nMove R3 Glaucous Agentofchaos\n\n51) agentofchaos: Attack R3 Agentofchaos\n\n52) Horowits: Sacrifice R3 Horowits\nAttack R3N Agentofchaos\nAttack G3N Agentofchaos\nAttack Y1N Agentofchaos\n\tagentofchaos: Hmm, a very bold move...\n\tHorowits: sorry for undo\n\tagentofchaos: confused me for a moment, didn&#39;t know what was happening!\n\tHorowits: yeah, shameful moment but a big error on my part :S\n\n\tagentofchaos: Arrgghhh, I&#39;m overrun!! Very well played, your cunning plans have paid off :-)\n\tHorowits: thakns for your time, I had a lot of fun. :) good game.\n\nHomeworlds Online (SDG# 13879)\nStarted: 2009.7.27, Ended: 2009.8.11\nParticipants: PottyTroll (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B3 G3\n\tZackStack: Hey Potty!  Have a good game!\n\n2) PottyTroll: Homeworld B2 Y1 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) PottyTroll: Build G1 Pottytroll\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) PottyTroll: Discover G1 Pottytroll B3 Porkslap\n\n7) ZackStack: Build G1 Zackstack\n\n8) PottyTroll: Build G1 Porkslap\n\n9) ZackStack: Discover G1 Zackstack B2 Meatpunch\n\n10) PottyTroll: Build G2 Porkslap\n\n11) ZackStack: Build G2 Zackstack\n\tZackStack: Tempting for a catastrophe there... but that would just set us back to square one I suppose :-)\n\n12) PottyTroll: Trade G2 Y2 Porkslap\n\tPottyTroll: haha I was wondering if you&#39;d do it\n\n13) ZackStack: Build G2 Meatpunch\n\n14) PottyTroll: Build G2 Pottytroll\n\n15) ZackStack: Sacrifice Y1 Zackstack\nDiscover G2 Meatpunch G3 Hamkick\n\n16) PottyTroll: Trade G2 R2 Pottytroll\n\tZackStack: Have I mentioned I like your naming convention for systems? :-)\n\n17) ZackStack: Trade G2 Y2 Zackstack\n\tPottyTroll: sure seems like it :)\n\n18) PottyTroll: Build G2 Pottytroll\n\n19) ZackStack: Build G2 Meatpunch\n\n20) PottyTroll: Build R1 Pottytroll\n\n21) ZackStack: Trade G2 Y2 Meatpunch\n\n22) PottyTroll: Trade G2 B2 Pottytroll\n\n23) ZackStack: Build G2 Zackstack\n\n24) PottyTroll: Move G1 Porkslap Meatpunch\n\n25) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Meatpunch\nBuild G3 Zackstack\nBuild Y1 Meatpunch\n\n26) PottyTroll: Move G1 Porkslap Meatpunch\nCatastrophe Meatpunch G\n\n27) ZackStack: Trade Y2 R2 Meatpunch\n\n28) PottyTroll: Trade B2 G2 Pottytroll\n\n29) ZackStack: Move R2 Meatpunch Hamkick\n\n30) PottyTroll: Move G2 Pottytroll Porkslap\n\n31) ZackStack: Move G2 Zackstack Meatpunch\n\n32) PottyTroll: Build G1 Porkslap\n\n33) ZackStack: Build R1 Hamkick\n\n34) PottyTroll: Trade G2 R2 Porkslap\n\n35) ZackStack: Build G1 Meatpunch\n\n36) PottyTroll: Discover R2 Porkslap G2 Sausagepunt\n\n37) ZackStack: Trade G1 B1 Meatpunch\n\n38) PottyTroll: Build R3 Sausagepunt\n\n39) ZackStack: Discover G2 Meatpunch R3 Spamgrapple\n\n40) PottyTroll: Trade R2 Y2 Pottytroll\n\n41) ZackStack: Sacrifice G2 Hamkick\nBuild Y1 Zackstack\nBuild Y3 Meatpunch\n\n42) PottyTroll: Build Y3 Porkslap\n\n43) ZackStack: Move Y1 Meatpunch Hamkick\n\n44) PottyTroll: Move Y2 Porkslap Sausagepunt\n\n45) ZackStack: Build Y3 Hamkick\n\n46) PottyTroll: Build R2 Pottytroll\n\n47) ZackStack: Sacrifice Y2 Zackstack\nMove Y1 Hamkick Pottytroll\nMove Y3 Hamkick Pottytroll\nCatastrophe Pottytroll Yellow\n\n48) PottyTroll: Trade R2 Y2 Pottytroll\n\n49) ZackStack: Move B1 Meatpunch Hamkick\n\n50) PottyTroll: Build R2 Pottytroll\n\n51) ZackStack: Sacrifice G2 Spamgrapple\nBuild B1 Hamkick\nBuild B1 Hamkick\n\n52) PottyTroll: Build Y1 Sausagepunt\n\tPottyTroll: ahh.  Well played man.\n\n53) ZackStack: Sacrifice Y3 Meatpunch\nMove B1 Hamkick Pottytroll\nMove B1 Hamkick Pottytroll\nMove B1 Hamkick Pottytroll\nCatastrophe Pottytroll Blue\n\tZackStack: Thanks!  You too.  It was a fun one!\n\n\nHomeworlds Online (SDG# 13892)\nStarted: 2009.7.31, Ended: 2009.10.1\nParticipants: jonaskoelker (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tjonaskoelker: Hi, TwoShort.  This&#39;ll be my 6th game of Homeworlds, with two of my previous games still in progress, so I&#39;m kinda&#39; new.  Feel free to give tips &quot;too late&quot; as I&#39;ve seen you do before.\r\n\r\nI think I got the basics down: start with a green ship; have more large pieces than your opponent; don&#39;t get locked out of any color; always have a large ship in your homeworld.\r\n\r\nI also think it tends to be a good idea to have a diverse fleet, color-wise, that&#39;s spread out (so it&#39;s easier to make good use of a G3 sacrifice); and that it&#39;s good to have your pieces close to your opponent&#39;s homeworld (and your opponents pieces in general) so it&#39;s easier to threaten invasion or catastrophe.\r\n\r\nIn any case, I&#39;d love to have a strategy-and-tactics discussion during and/or after the game.  You up for it?\r\n\r\nIn any case, good luck and have fun :)\n\n2) jonaskoelker: Homeworld B1 R2 G3\n\tTwoShort: I&#39;m generally up for strategy discussions.  I should note that when I give people &quot;late&quot; tips, it&#39;s not generally because I want to make sure I win.  Mostly it&#39;s just that it&#39;s not clear what tips to give until they&#39;re too late.  \n\n3) TwoShort: Build G1 Twoshort\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\tjonaskoelker: Well, let me kick off some strategy discussion already, then:\r\n\r\nI&#39;ve been looking a bit at http://superdupergames.org/?page=archive_play&amp;gid=2121&amp;idx=26\r\n\r\nIn the final move, you invade Andy&#39;s homeworld, threatening either conquest (by sacrificing R2 @home) or yellow catastrophe by building yellow @Andy.\r\n\r\nInstead of building G3 (@B3), how do you think Andy should have continued?\r\n\r\nI see three main lines; either trade Y3 to R3 @home; or sacrifice G2 to build R1 and R2 @B1; or trade Y2 to R2 @B1.\r\n\r\nAs far as I can tell, &quot;trade Y3 R3 @home&quot; is answered by &quot;build G3 @B1&quot;, forcing Andy to sacrifice G2 to build R1 and R2 @(a mix of B1 and home).  Then you have a 3-to-1 lead in large ships with a large &quot;forward deployment&quot; giving you a lot of initiative and putting Andy under pressure; maybe continue by building red @home and moving one forward (to a large star), threatening red catastrophe if Andy isn&#39;t careful.  Or chase down the G1@B3 and try to monopolize the green pieces?  Or maybe just hang back and grab all the large pieces and build &#39;em up slowly, banker-style.\r\n\r\nIf Andy continues with &quot;sacrifice G2, build R1 and R2 @B1&quot; instead, things get more interesting.  One good next move might be &quot;build R2 @home&quot;, threatening &quot;sacrifice Y3 @home, move R2 home b1 (with red catastrophe), move Y3 b1 Andy&quot;, with conquest the next turn.  Moving a red piece from B1 to Andy seems to counter this threat, and I&#39;m not sure how to best proceed.  What do you think?\r\n\r\nI&#39;m not sure how to best proceed if Andy trades his Y2 for R2 @B1.  How would you proceed?\r\n\r\nAlso, do you think you had the lead when Andy screwed up?  What was the most decisive move in the game besides Andy&#39;s blunder?  What helped tip the scales?\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\tTwoShort: Well, really I think Andy was doomed, and the previous move, when I advanced the g2, was the game winner.  Before that, he had moved his Gs apart, threatening to grow and getting the better end of the g3s.  He missed the immediate threat my move represented, but at the time I expected he would see it and be forced to deal with it, and none of his options there are any good.  Since he can&#39;t build a G3 or immediately threaten me, I get to build a G3 the next turn, and wind up with at least one of the two remaining ones.  Depending how that all works out, I get 4 or 5 3 points to his 1 or 2, and that&#39;s game over, pretty much whatever the details.\r\n\n\n7) TwoShort: Build G1 Twoshort\n\n8) jonaskoelker: Build G1 Jonaskoelker\n\tjonaskoelker: &quot;the previous move, when I advanced the g2, was the game winner.&quot;\r\n\r\nInstead of moving the G2 forward, I think you can sacrifice the Y3 at home, move your Y1 and Y3 from B1 into Andy&#39;s homeworld, and move the G2 to the Y1 (where Andy has a G2).  Your R2 at home threatens to take Andy&#39;s ships, so he has to get rid of your invaders; the only way I can see of doing that is to sacrifice a Y2 (or his Y3) and move his remaining yellow(s) and some other piece back home.  Then you build G3 at Y1, and Andy can&#39;t defend against the impending invasion.\r\n\r\nYour thoughts?\r\n\r\n[but if instead you move G2 to B1 as you did] &quot;I get to build a G3 the next turn&quot; -- not if Andy sacrifices his G2 to build R1 and R2 at B1; it&#39;s not clear to me how to get an overwhelming material advantage (say a 3-pointer lead of at least two).  What are your thoughts?\r\n\n\n9) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: My main thought is that you&#39;ve analyzed this more deeply than I did at the time or have since :)\r\n\r\nLet&#39;s see - if he sacs to build the 2 reds, I build a 2 (@B1), he builds a 3 (@B3), I build a 3 (@Y2).  He can then catastrophe my G3 (and \r\nG1) at the cost of his G3, G1, and Y2; or separate his gs to go after the last 3 at the cost of a y2, which I can block by moving something to g3.  So best case (for him) I still have the single 3 advantage I started with, and I gain ground in the little stuff.\r\n\r\nHonestly, I seldom bother to think more than a move or two in advance.  I figure out what happens if everyone does the most straightforward growing thing (like above), and hope I&#39;ll find as many clever twists as the other guy.\r\n\r\n  Homeworlds positions in a developed game offer so many options, it&#39;s a struggle to not miss a good one considering a single position, once you get a few moves into speculation, the chance you&#39;re considering a position you&#39;ll actually reach vs. a real opponent is tiny...  I look for ways to grab material; ways to force my opponent to do something other than grab material, and that&#39;s about it.  Tactical, positional advantages are obviously what determines who gets to grab stuff, and are where all the action is.  But if you can&#39;t turn them into a material advantage in a pretty short term, straightforward way, they may be illusory.\r\n\r\nThe other question is what constitutes an overwhelming material advantage.  By my count, I had a pretty good lead before the g2 move, and was really only looking to prevent him using his tactical position to change that.\n\n10) jonaskoelker: Trade G1 B1 Jonaskoelker\n\tjonaskoelker: &quot;My main thought is that you&#39;ve analyzed this more deeply than I did at the time or have since :)&quot;\r\n\r\nProbably true :)  I think it&#39;s an interesting game with a lot of sharp variations near the (premature?) end, which illustrate the tactics of homeworlds very well.\r\n\r\nBy the way, as I look at the line of play I suggest instead of &quot;14. move g2; ...&quot;, I don&#39;t think building G3 at Y1 in the end is good enough; then Andy can build G at Y1 and trigger a green catastrophe.  But I better look at a board before I make any definitive claims about that.\r\n\r\n[Just got home from vacation.  I&#39;ll move soon]\r\n\n\tjonaskoelker: Ah crap, I looked at the wrong position on SDG.  Instead of &quot;14. move g2&quot;, do the sac Y3 as suggested earlier.  Then Andy has to move all his yellows home, and either R1 or G2.  If he moves R1 home, invade with G2 and win; if he moves G2 home, build a G3 (which is safe from catastrophe, but wasn&#39;t in the position I looked at), invade and win.\r\n\n\n11) TwoShort: Build B2 Twoshort\n\tjonaskoelker: I&#39;m not really sure this is the right move.  It lets you get the B2s first; but alternatively I might get locked out of blue, which is no good either.  Probably letting you get the first B2 is no problem, since you can&#39;t get the last too, unless you let me get the first B3.\r\n\r\nOh well, we&#39;ll see...\n\tjonaskoelker: Going back to your game vs. Andy (please let me know if you get bored of it), I&#39;ve come to the conclusion that &quot;13. ..., discover g1 different b3 BigBlueFrog&quot; is the definitively losing move.  But even in that position, I&#39;d rather bet on you winning than him.\r\n\r\nBut how did you get to have the advantageous position?  I may be going out on a limb here, but I think it might be on the strength of the banker opening; that, combined with your plays, got you the second Y3 which makes your position preferable.\r\n\r\nYour thoughts?\n\n12) jonaskoelker: Discover B1 Jonaskoelker G3 Biggreen\n\n13) TwoShort: Discover B2 Twoshort G2 Grogar\n\n14) jonaskoelker: Build B2 Biggreen\n\n15) TwoShort: Build B2 Grogar\n\tjonaskoelker: Do you think I made the right move here?\r\n\r\nI&#39;m worried about you setting up a &quot;green/blue factory&quot;, alternating between [sac g3, build b2/b3/b3] and [sac b2, trade b3/g3 and b3/*], netting you a big ship every other turn.\r\n\r\nMeanwhile, I of course want one of those.  But I&#39;m starting to suspect that sending out my blue was a bad move.  Instead I should have built a b2, then ventured out.  Maybe.\r\n\r\nWhat do you think?\r\n\n\tTwoShort: build b2 grogar\n\n16) jonaskoelker: Trade B2 Y2 Biggreen\n\tTwoShort: I&#39;m not sure if building first would be better.  I&#39;d have done something different if you did - flip my initial b2 to red or yellow, then grow it again.\r\n\r\nAs long as you have blue somewhere that can grow, I can&#39;t do flip green and sac to get it back thing - you can take it in the middle.  The threat I&#39;m pursuing here is that I can sac my g3 to build both b3s, getting a 3 pointer lead.  The hope is really that you&#39;ll have to do unproductive things to prevent this, while I can do productive things that also keep the threat going.  Or you can build a 3 now, I&#39;ll blow it up, and I&#39;ll be ahead by a 2 point beyond my homeworld...  Which is reasonably good from my perspective; from yours it&#39;s a question of whether you can do better, which is not clear to me...\r\n\r\nI used to think you should never take a b1 star as first player, but someone recently wiggled out of my response to that.  My new theory is that you should never take a b1 star playing Banker; but I haven&#39;t played enough against people doing so as second player to be sure.\n\tjonaskoelker: hmm... you probably have a good point wrt. regrowing your blue.  And wrt. me stopping your blue/green factory.\r\n\r\nHmm...  let&#39;s see if there&#39;s something I can do about your evul schemes ;-)\n\tTwoShort: So the other reason I avoid giving timely advice is that opponents seem to think I have things all figured out, which isn&#39;t true...  Just hope you&#39;re not stressing too much and thinking I have you entirely boxed in; I&#39;m happy with my position, but you&#39;ve certainly got options that I can&#39;t calculate the results of...\n\tjonaskoelker: I think I&#39;m stressing out just enough ;-)\r\n\r\nI&#39;d be happy with your position too, it seems better right now.  But I still got a fighting chance, it&#39;s not just a matter of losing more slowly.\r\n\n\n17) TwoShort: Trade B2 R2 Grogar\n\tjonaskoelker: I hope this was one of the options you couldn&#39;t quite figure out ;-)\n\tTwoShort: Well, when I said you had good options, I really meant just that one :)  On the other hand, I thought I had only a single obvious response, but it wasn&#39;t this...\n\n18) jonaskoelker: Trade Y1 R1 Jonaskoelker\n\n19) TwoShort: Build B2 Grogar\n\tjonaskoelker: That was not funny.  Not funny at all :(\r\n\r\nI think my move was bad but the alternatives I could come up with were worse.\r\n\r\nIf I built b2 at biggreen, you&#39;d move your b2 from Grogar to biggreen (sac y1 home), threatening to take my last blue ship.  I can build and trigger catastrophe, but then you build b1 at home and I&#39;m left... erm... &quot;blueless&quot; ;-)\r\n\r\nWhat do you think?\n\tTwoShort: I don&#39;t think your being blueless would have been a problem since there would have been plenty in the stash... which is why I would have moved in the r2 instead, expecting you to sac the y2 to run away with the other two.  Which would have been not great for you.  Better or worse than this, I&#39;m not sure...\n\n20) jonaskoelker: Build B2 Biggreen\n\n21) TwoShort: Trade B2 Y2 Grogar\n\n22) jonaskoelker: Discover B2 Biggreen G2 Medium_green\n\n23) TwoShort: Build R1 Grogar\n\n24) jonaskoelker: Build B2 Biggreen\n\tjonaskoelker: eek... my position keeps getting worse :\\\n\n25) TwoShort: Build B3 Grogar\n\n26) jonaskoelker: Build B3 Medium_green\n\n27) TwoShort: Discover R1 Grogar Y3 Yolonda\n\n\nHomeworlds Online (SDG# 13923)\nStarted: 2009.8.1, Ended: 2009.8.6\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld R3 B1 G3\n\n2) TwoShort: Homeworld B1 G1 B3 *\n\tagentofchaos: Hi there, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) TwoShort: Build B1 Twoshort\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) TwoShort: Build B2 Twoshort\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) TwoShort: Discover B1 Twoshort G3 Grogar\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) TwoShort: Build B2 Twoshort\n\n13) agentofchaos: Trade G3 B3 Agentofchaos\n\n14) TwoShort: Discover B2 Twoshort Y2 Yak\n\n15) agentofchaos: Build G2 Agentofchaos\n\n16) TwoShort: Build B2 Grogar\n\n17) agentofchaos: Trade G1 R1 Agentofchaos\n\n18) TwoShort: Build B3 Twoshort\n\n19) agentofchaos: Discover G2 Agentofchaos Y2 Hakra\n\n20) TwoShort: Sacrifice Y3 Twoshort\nMove B1 Grogar Yak\nMove B1 Yak Agentofchaos\nMove B2 Yak Agentofchaos\nCatastrophe Agentofchaos Blue\n\n21) agentofchaos: Build Y1 Agentofchaos\n\n22) TwoShort: Trade B2 Y2 Twoshort\n\n\tagentofchaos: Nothing more I can do here, very well played\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 13930)\nStarted: 2009.8.1, Ended: 2009.11.20\nParticipants: MatrixFrog (S), jonaskoelker (N)\nWinner: MatrixFrog\n\n1) jonaskoelker: Homeworld R1 B2 G3\n\n2) MatrixFrog: Homeworld B2 Y3 G3\n\tjonaskoelker: Hi.  I was on vacation and didn&#39;t see that the game begun.  Would you mind cutting me a bit of slack on the time until I get a day or two saved up?  I should be available for daily gaming in the near future (i.e. _at least_ a couple of months)\r\n\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\tMatrixFrog: Sure, I usually just let it go anyway because what do I gain by forcing resignation? Then I just have to start a whole new game and what fun is that...\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) MatrixFrog: Build G1 Matrixfrog\n\tjonaskoelker: Behold!  We have invented... THE HYPER DRIVE.  Do not fly near our hyper drive test zones: a catastrophic collision might happen.  We shall launch our convoy to share this wonderful technology with you in the near future.\r\n\r\n:-)\r\n\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) MatrixFrog: Trade G1 R1 Matrixfrog\n\n9) jonaskoelker: Build Y1 Jonaskoelker\n\n10) MatrixFrog: Discover G1 Matrixfrog Y1 Littlecheese\n\n11) jonaskoelker: Build Y2 Jonaskoelker\n\tjonaskoelker: Ahh, I see your people have a native understanding of physical principles behind THE HYPER DRIVE.\r\n\r\nHow pleasant to observe you venture forth, although we are not quite comfortable about your long-ranging artillery, and will be forced to take due precautions.\r\n\r\nOur scientists, military strategists and diplomats are working together to find the plan which will best enable the prosperity of my---I mean both our peoples.\r\n\n\n12) MatrixFrog: Build R1 Matrixfrog\n\n13) jonaskoelker: Trade Y2 R2 Jonaskoelker\n\n14) MatrixFrog: Build R2 Matrixfrog\n\n15) jonaskoelker: Build Y2 Jonaskoelker\n\n16) MatrixFrog: Trade R2 G2 Matrixfrog\n\n17) jonaskoelker: Discover G1 Jonaskoelker B3 Large_blue\n\n18) MatrixFrog: Build G1 Littlecheese\n\n19) jonaskoelker: Build G2 Jonaskoelker\n\n20) MatrixFrog: Build R2 Matrixfrog\n\n21) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild G2 Large_blue\nBuild G3 Jonaskoelker\nBuild G3 Jonaskoelker\n\tjonaskoelker: I&#39;ll be making a move very soon; please be patient?\n\tMatrixFrog: ok no problem\n\n22) MatrixFrog: Trade R2 Y2 Matrixfrog\n\n\tjonaskoelker: Hmm... interesting play...\n\tMatrixFrog: Sometimes I don&#39;t quite know what I&#39;m doing. It seemed like a good idea, kind of...\n\nHomeworlds Online (SDG# 13977)\nVariants: &quot;Hard time&quot;\nStarted: 2009.8.2, Ended: 2009.8.25\nParticipants: TwoShort (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tDanner: Hello, and good luck!\n\n3) Danner: Build G1 Danner\n\tTwoShort: Howdy; have a good game.\n\tDanner: Oh, instant blue monopoly? This game might teach me not to start with a little star.\n\n4) TwoShort: Build B1 Twoshort\n\tDanner: Ooops, never mind\n\n5) Danner: Trade G3 B3 Danner\n\tTwoShort: Never mind?  Because an instant monopoly that will teach you not to start with a little blue star was totally the idea :)\n\tDanner: :D\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Danner: Build B2 Danner\n\n8) TwoShort: Build B2 Twoshort\n\n9) Danner: Trade B3 Y3 Danner\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) Danner: Discover B2 Danner G3 Garrett\n\n12) TwoShort: Build Y1 Twoshort\n\n13) Danner: Build Y1 Danner\n\n14) TwoShort: Discover B1 Twoshort G2 Gloom\n\n15) Danner: Move Y1 Danner Garrett\n\n16) TwoShort: Move Y1 Twoshort Grogar\n\n17) Danner: Build G1 Danner\n\n18) TwoShort: Build Y1 Twoshort\n\n19) Danner: Build Y2 Garrett\n\n20) TwoShort: Build Y2 Grogar\n\n21) Danner: Build Y2 Danner\n\n22) TwoShort: Trade Y3 G3 Twoshort\n\n23) Danner: Trade Y2 R2 Garrett\n\n24) TwoShort: Discover Y2 Grogar B3 Bluestar\n\n25) Danner: Discover G1 Danner Y3 Sun\n\n26) TwoShort: Build B2 Gloom\n\n27) Danner: Build B3 Garrett\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\nBuild B3 Grogar\n\n29) Danner: Sacrifice Y2 Danner\nMove B3 Garrett Grogar\nMove B3 Grogar Twoshort\n\n\tTwoShort: Ack!  Well, that was dumb.\n\tTwoShort: Ack!  Well, that was dumb.\n\tTwoShort: Dumb enough to say it twice, apparently :)\n\tTwoShort: Good game.\n\tDanner: Thanks the game :)\n\nHomeworlds Online (SDG# 13894)\nVariants: &quot;Hard time&quot;\nStarted: 2009.8.4, Ended: 2009.10.16\nParticipants: agentofchaos (S), zxcv411 (N), PottyTroll (E)\nWinner: agentofchaos\n\n1) zxcv411: Homeworld R1 B2 G3\n\n2) PottyTroll: Homeworld G3 B2 Y3\n\n3) agentofchaos: Homeworld R1 B3 G3\n\n4) zxcv411: Build G1 Zxcv411\n\n5) PottyTroll: Build Y1 Pottytroll\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) zxcv411: Trade G1 Y1 Zxcv411\n\n8) PottyTroll: Build Y1 Pottytroll\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) zxcv411: Build Y2 Zxcv411\n\n11) PottyTroll: Trade Y1 B1 Pottytroll\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) zxcv411: Discover Y1 Zxcv411 G3 Starbug\n\n14) PottyTroll: Discover B1 Pottytroll G1 Spankmaster\n\n15) agentofchaos: Trade G1 R1 Agentofchaos\n\n16) zxcv411: Build G1 Zxcv411\n\n17) PottyTroll: Build B1 Spankmaster\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) zxcv411: Build G1 Zxcv411\n\n20) PottyTroll: Trade Y1 R1 Pottytroll\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) zxcv411: Trade Y2 R2 Zxcv411\n\n23) PottyTroll: Build R2 Pottytroll\n\n24) agentofchaos: Trade G2 Y2 Agentofchaos\n\n25) zxcv411: Trade G1 Y1 Zxcv411\n\n26) PottyTroll: Trade B1 Y1 Spankmaster\n\n27) agentofchaos: Discover Y2 Agentofchaos B2 Domesday\n\n28) zxcv411: Build R2 Zxcv411\n\n29) PottyTroll: Build Y2 Spankmaster\n\n30) agentofchaos: Build Y2 Agentofchaos\n\n31) zxcv411: Move R2 Zxcv411 Starbug\n\n32) PottyTroll: Build Y2 Pottytroll\n\n33) agentofchaos: Sacrifice G1 Agentofchaos\nBuild Y3 Domesday\n\n34) zxcv411: Build Y3 Zxcv411\n\n35) PottyTroll: Trade Y2 R2 Spankmaster\n\n36) agentofchaos: Trade Y3 R3 Domesday\n\n37) zxcv411: Trade G3 B3 Zxcv411\n\n38) PottyTroll: Build R3 Spankmaster\n\n39) agentofchaos: Trade Y2 G2 Domesday\n\n40) zxcv411: Build R3 Starbug\n\n41) PottyTroll: Discover R2 Spankmaster G2 Slippyfist\n\n42) agentofchaos: Build R3 Domesday\n\n43) zxcv411: Pass\n\n44) PottyTroll: Build Y2 Spankmaster\n\n45) agentofchaos: Move Y1 Agentofchaos Domesday\n\n46) zxcv411: Build G1 Zxcv411\n\n47) PottyTroll: Move Y1 Spankmaster Slippyfist\n\n48) agentofchaos: Sacrifice G2 Domesday\nBuild Y2 Agentofchaos\nBuild Y3 Domesday\n\n49) zxcv411: Build Y3 Starbug\n\n50) PottyTroll: Build B1 Spankmaster\n\n51) agentofchaos: Build G1 Agentofchaos\n\n52) zxcv411: Move B3 Zxcv411 Starbug\n\n53) PottyTroll: Move B1 Spankmaster Slippyfist\n\n54) agentofchaos: Trade G1 B1 Agentofchaos\n\n55) zxcv411: Build B1 Starbug\n\n56) PottyTroll: Trade Y2 G2 Pottytroll\n\n57) agentofchaos: Sacrifice Y1 Domesday\nDiscover R3 Domesday Y1 Iago\n\n58) zxcv411: Move B3 Starbug Zxcv411\n\n59) PottyTroll: Build Y2 Slippyfist\n\n60) agentofchaos: Move R1 Agentofchaos Domesday\n\n61) zxcv411: Build B2 Starbug\n\n62) PottyTroll: Build B3 Slippyfist\n\n63) agentofchaos: Discover Y3 Domesday B3 Kakrafooge\n\n64) zxcv411: Move G1 Zxcv411 Starbug\n\n65) PottyTroll: Sacrifice Y2 Slippyfist\nMove B3 Slippyfist Agentofchaos\nMove B1 Slippyfist Agentofchaos\nCatastrophe Agentofchaos B\n\n66) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Domesday Kakrafooge\nMove R3 Domesday Kakrafooge\n\n67) zxcv411: Build G1 Zxcv411\n\n68) PottyTroll: Build Y2 Slippyfist\n\n69) agentofchaos: Build Y2 Agentofchaos\n\n70) zxcv411: Discover G1 Starbug G2 Rimmer\n\n71) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Kakrafooge Zxcv411\nMove R3 Kakrafooge Zxcv411\nCatastrophe Zxcv411 R\n\n72) zxcv411: Move R3 Starbug Zxcv411\n\n73) agentofchaos: Move Y3 Kakrafooge Spankmaster\n\n74) zxcv411: Pass\n\n75) agentofchaos: Sacrifice R3 Iago\nAttack R3E Spankmaster\nAttack Y2E Spankmaster\nAttack B1E Spankmaster\n\n76) zxcv411: Move G1 Zxcv411 Starbug\n\n77) agentofchaos: Build B1 Spankmaster\n\n78) zxcv411: Build G2 Zxcv411\n\n79) agentofchaos: Sacrifice Y2 Spankmaster\nMove B1 Spankmaster Zxcv411\nMove B1 Spankmaster Zxcv411\nCatastrophe Zxcv411 B\n\n\tagentofchaos: Thanks for a great game :-)\n\nHomeworlds Online (SDG# 13936)\nStarted: 2009.8.6, Ended: 2009.8.21\nParticipants: ZackStack (S), jonaskoelker (N)\nWinner: jonaskoelker\n\n1) jonaskoelker: Homeworld B1 Y2 G3\n\tZackStack: Hi Jonas!  I understand you&#39;re pretty new to Icehouse.  If you&#39;d like I&#39;d be happy to point out any particularly dangerous moves you make.  Have a good game and have fun!\n\n2) ZackStack: Homeworld R1 B3 G3\n\tjonaskoelker: Good luck, have fun.\r\n\r\nAt http://www.superdupergames.org/?page=archive_play&amp;gid=2121&amp;idx=25 I think TwoShort has a better move than &quot;14. move g2 yonder bluonia; ...&quot;.  What do you think?  [I&#39;ll give my answer below]\r\n\r\nI think I know some of the important strategic considerations: always have a large ship in your homeworld; try to have more large ships than your opponents; having your ships near your opponent&#39;s homeworld (and secondarily near your opponent&#39;s ships) is good since you can threaten invasion and either conquest or catastrophe more often (and generally make it harder for your opponent to build up a fleet); similarly, you want your opponent&#39;s ships away from your homeworld and your ships; ideally both, by having more and bigger yellow ships than your opponent.  Don&#39;t get locked out of a color.  *Really* don&#39;t get locked out of yellow.  Pick the banker opening if you can.  The gun rule (get red the turn after your opponent).  Did I miss anything major?\r\n\r\nAt the position I pointed to, I think TwoShort should instead sacrifice his Y3 at home to move Y3 and Y1 to Andy&#39;s homeworld, and his G2 to the small yellow star.  This threatens both a yellow catastrophe at Andy&#39;s homeworld, and a takeover of Andy&#39;s ships.  This forces Andy to sacrifice a yellow ship, bring all his yellows and one other ship home, and trigger a yellow catastrophe himself.  If he brings home his R1, TwoShort can then invade Andy&#39;s homeworld with the G2 at Y1, and Andy is defenseless.  If instead Andy brings home his G2, TwoShort can build a G3 at Y1 and invade with that the next turn, against which Andy can build no adequate defense.\r\n\r\nI think TwoShort was already ahead in the position where he moved his g2, but I&#39;m not quite sure which strategic element put him ahead.  I&#39;m leaning somewhat to the strength of the banker opening, which gave him an easy investment in the Y3 which he later cashed in on.  But it&#39;s not clear to me how the race for big greens will turn out if both players play optimally.\r\n\r\nHow am I doing for a newbie? ;-)\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\tZackStack: You&#39;ve clearly done your research.  I look forward to seeing you put it into practice! :-)\r\n\r\nI think you might be right about that better move... but it would have left TwoShort without a large at his Homeworld and if Andy got out of his impending predicament somehow it would have left Two at a disadvantage.  I&#39;ve been learning patience is an important tactic in this game...\n\n4) ZackStack: Build G1 Zackstack\n\n5) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n6) ZackStack: Build G1 Zackstack\n\n7) jonaskoelker: Build B1 Jonaskoelker\n\n8) ZackStack: Trade G1 Y1 Zackstack\n\tjonaskoelker: Oh, you don&#39;t need any small blues?  I guess I&#39;ll have to keep them for myself then ;-)\r\n\n\n9) jonaskoelker: Discover B1 Jonaskoelker G3 Biggreen\n\tZackStack: Not right now... :-p\n\n10) ZackStack: Discover G1 Zackstack B2 Tooblue\n\n11) jonaskoelker: Build B2 Jonaskoelker\n\n12) ZackStack: Build G1 Tooblue\n\n13) jonaskoelker: Discover B1 Jonaskoelker Y3 Bigyellow\n\n14) ZackStack: Trade G1 Y1 Tooblue\n\n15) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild B2 Bigyellow\nBuild B3 Biggreen\nBuild B3 Jonaskoelker\n\n16) ZackStack: Discover Y1 Tooblue G3 Verygreen\n\tjonaskoelker: You don&#39;t need any blue? :-p\r\n\n\tZackStack: You&#39;ll have to trade them in for something else eventually :-)\n\n17) jonaskoelker: Trade B3 Y3 Biggreen\n\n18) ZackStack: Build G1 Zackstack\n\tjonaskoelker: How will you make use of a blue piece in the stash?  Trade to it?  Build it?\r\n\r\nI think I have strong answers to that until you have a second large ship; and I think I can build the large ships faster than you can.\r\n\r\nOh well, I guess I&#39;ll see :)\n\tZackStack: You are correct on all counts.  That is a pretty nice blue strategy you put together.  I&#39;ll have to try that myself sometime! :-)\n\n19) jonaskoelker: Build B3 Biggreen\n\n20) ZackStack: Build G1 Tooblue\n\n21) jonaskoelker: Trade B3 Y3 Biggreen\n\n22) ZackStack: Trade G1 Y1 Tooblue\n\n23) jonaskoelker: Build B3 Biggreen\n\n24) ZackStack: Build Y2 Tooblue\n\n25) jonaskoelker: Discover B3 Biggreen Y2 Medium_yellow\n\n26) ZackStack: Build G1 Tooblue\n\n27) jonaskoelker: Trade B3 R3 Jonaskoelker\n\n28) ZackStack: Discover Y2 Tooblue B3 Moreblue\n\tjonaskoelker: Behold the power of my fully armed and operational battle station!  I foresee millions of ZackStack&#39;ian souls crying out in terror, then being suddenly silenced.\r\n\r\n;-)\r\n\n\tZackStack: Eek!  Just do me a favor and hum the Darth Vader Theme whenever you move that sucker :-)\n\n29) jonaskoelker: Sacrifice Y3 Biggreen\nMove Y3 Biggreen Medium_yellow\nMove Y3 Medium_yellow Zackstack\nMove B3 Medium_yellow Zackstack\n\n30) ZackStack: Build Y2 Tooblue\n\tjonaskoelker: I don&#39;t think humming will be necessary.  My battle station has long-ranged weapons, capable of destroying a planet from afar, so it will stay behind and let the star destroyers do the invasion.\r\n\n\tZackStack: Wow.  Well played sir!  \n\n31) jonaskoelker: Sacrifice R3 Jonaskoelker\nAttack G3S Zackstack\nAttack G1S Zackstack\nAttack Y1S Zackstack\n\tZackStack: That thinking about your moves strategy of yours really worked out nicely... I&#39;ll have to try it sometime :-p\n\tjonaskoelker: Thank you :)\r\n\r\nI think you could have stayed alive longer if you traded to a medium red instead of discovering the b3.\r\n\r\nI&#39;m surprised you never invaded biggreen with a green ship, threatening disaster in a few moves.  Answering that threat would definitely delay and obstruct me.\r\n\r\nAlso, &quot;capturing&quot; the big pieces as stars seems like a good counter-move; if you could have done that earlier (I think--maybe--you could).  It&#39;s hard for me to capture back those stars and letting myself rebuild them as ships without giving you the opportunity to re-steal them, which would delay and obstruct my amassing of large ships further.\r\n\r\nBut yeah, monopolizing blue works wonders :)\r\n\r\nThanks for the game, it was fun.  I hope it was fun for you as well.\n\tZackStack: It was fun! And educational too...  I had the same thought about big stars about two turns too late and didn&#39;t see the big 3 sacrifice coming (you&#39;d been so focused on building on your &quot;half&quot; the sudden shift to the offense caught me totally by suprise!)  I&#39;m looking forward to a rematch sometime!\n\n\nHomeworlds Online (SDG# 13932)\nStarted: 2009.8.11, Ended: 2009.8.21\nParticipants: zxcv411 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 R3 G3\n\n2) zxcv411: Homeworld R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zxcv411: Build G1 Zxcv411\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zxcv411: Build G1 Zxcv411\n\n7) TwoShort: Build G1 Twoshort\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: I&#39;m going to suggest you undo that...\n\n10) zxcv411: Discover G1 Zxcv411 Y3 Starbug\n\tzxcv411: Oh, that&#39;s right, you can call it too &gt;.&lt;\n\n11) TwoShort: Build B1 Twoshort\n\n12) zxcv411: Build G1 Zxcv411\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) zxcv411: Trade G1 R1 Zxcv411\n\n15) TwoShort: Build B2 Twoshort\n\n16) zxcv411: Trade G3 Y3 Zxcv411\n\n17) TwoShort: Discover B1 Twoshort B2 Bonanza\n\n18) zxcv411: Build G1 Starbug\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Grogar\nBuild B3 Bonanza\n\n20) zxcv411: Move G1 Starbug Zxcv411\n\n21) TwoShort: Sacrifice B2 Twoshort\nTrade B3 G3 Bonanza\nTrade B3 Y3 Grogar\n\n22) zxcv411: Build R1 Zxcv411\n\n23) TwoShort: Sacrifice G3 Bonanza\nBuild B2 Twoshort\nBuild B3 Bonanza\nBuild B3 Grogar\n\n24) zxcv411: Move R1 Zxcv411 Starbug\n\n25) TwoShort: Discover B3 Grogar R3 Rosy\n\n26) zxcv411: Build R2 Starbug\n\n27) TwoShort: Sacrifice B2 Twoshort\nTrade B3 R3 Twoshort\nTrade B3 G3 Bonanza\n\n28) zxcv411: Discover R1 Starbug B2 Rimmer\n\n29) TwoShort: Sacrifice G3 Bonanza\nBuild B3 Rosy\nBuild B3 Bonanza\nBuild Y1 Twoshort\n\n30) zxcv411: Sacrifice Y3 Zxcv411\nMove R2 Starbug Rimmer\nMove R2 Rimmer Twoshort\nMove R1 Rimmer Twoshort\nCatastrophe Twoshort Red\n\n31) TwoShort: Trade B3 R3 Bonanza\n\n32) zxcv411: Build Y2 Zxcv411\n\n33) TwoShort: Sacrifice Y3 Grogar\nMove B3 Rosy Zxcv411\nMove R3 Bonanza Twoshort\nMove B3 Rosy Twoshort\n\n34) zxcv411: Build Y2 Zxcv411\n\n35) TwoShort: Sacrifice R3 Twoshort\nAttack Y2 Zxcv411\nAttack Y2 Zxcv411\nAttack G1 Zxcv411\n\n36) zxcv411: Attack G1 Zxcv411\n\n37) TwoShort: Sacrifice B3 Twoshort\nTrade Y2 B2 Zxcv411\nTrade Y2 R2 Zxcv411\nTrade B3 G3 Zxcv411\n\n38) zxcv411: Build R1 Zxcv411\nCatastrophe Zxcv411 Red\n\n39) TwoShort: Sacrifice G3 Zxcv411\nBuild B3 Zxcv411\nBuild B3 Zxcv411\nPass\nCatastrophe Zxcv411 Blue\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 13990)\nStarted: 2009.8.11, Ended: 2009.9.8\nParticipants: zxcv411 (S), jonaskoelker (N)\nWinner: zxcv411\n\n1) jonaskoelker: Homeworld R1 B2 G3\n\n2) zxcv411: Homeworld R1 B2 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) zxcv411: Build G1 Zxcv411\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) zxcv411: Build G1 Zxcv411\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) jonaskoelker: Discover G1 Jonaskoelker Y3 Large_yellow\n\n10) zxcv411: Build Y1 Zxcv411\n\tjonaskoelker: I must say I find your symmetric plays interesting.  I look forward to seeing how the game develops.\r\n\r\nOh by the way, hi, and good luck have fun, and such ;-)  May the best (&quot;most stellar&quot;? :D) man win.\n\n11) jonaskoelker: Build Y2 Jonaskoelker\n\n12) zxcv411: Trade Y1 B1 Zxcv411\n\n13) jonaskoelker: Trade Y1 R1 Jonaskoelker\n\n14) zxcv411: Move G1 Zxcv411 Large_yellow\n\n15) jonaskoelker: Build R2 Jonaskoelker\n\n16) zxcv411: Trade G3 Y3 Zxcv411\n\n\nHomeworlds Online (SDG# 14000)\nStarted: 2009.8.11, Ended: 2009.9.8\nParticipants: zxcv411 (S), jonaskoelker (N)\nWinner: zxcv411\n\n1) jonaskoelker: Homeworld B1 Y2 G3\n\n2) zxcv411: Homeworld R1 B2 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) zxcv411: Build G1 Zxcv411\n\n5) jonaskoelker: Trade G1 R1 Jonaskoelker\n\n6) zxcv411: Build G1 Zxcv411\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) jonaskoelker: Discover G1 Jonaskoelker Y3 Large_yellow\n\n10) zxcv411: Build Y1 Zxcv411\n\n11) jonaskoelker: Build G1 Large_yellow\n\n12) zxcv411: Trade Y1 R1 Zxcv411\n\n13) jonaskoelker: Build R2 Jonaskoelker\n\n14) zxcv411: Build R2 Zxcv411\n\n15) jonaskoelker: Move R2 Jonaskoelker Large_yellow\n\n16) zxcv411: Trade R2 B2 Zxcv411\n\n\nHomeworlds Online (SDG# 14001)\nStarted: 2009.8.11, Ended: 2009.9.8\nParticipants: jonaskoelker (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld B1 R2 G3\n\n2) jonaskoelker: Homeworld B2 R3 G3\n\n3) zxcv411: Build G1 Zxcv411\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) zxcv411: Trade G1 Y1 Zxcv411\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n7) zxcv411: Build G1 Zxcv411\n\n8) jonaskoelker: Build G1 Jonaskoelker\n\n9) zxcv411: Trade G3 Y3 Zxcv411\n\n10) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n11) zxcv411: Build G1 Zxcv411\n\n12) jonaskoelker: Build B1 Jonaskoelker\n\n13) zxcv411: Trade G1 R1 Zxcv411\n\n14) jonaskoelker: Discover B1 Jonaskoelker G1 Small_green\n\n15) zxcv411: Build R1 Zxcv411\n\n16) jonaskoelker: Build B2 Small_green\n\n17) zxcv411: Discover R1 Zxcv411 G3 Starbug\n\n18) jonaskoelker: Build B2 Jonaskoelker\n\n19) zxcv411: Move Y1 Zxcv411 Starbug\n\n20) jonaskoelker: Build B3 Small_green\n\n21) zxcv411: Build R1 Starbug\n\n\nHomeworlds Online (SDG# 14002)\nStarted: 2009.8.11, Ended: 2009.8.11\nParticipants: jonaskoelker (S), navn (N)\nWinner: jonaskoelker\n\n1) navn: Homeworld Y2 B1 G3\n\n2) jonaskoelker: Homeworld R2 B3 G3\n\n3) navn: Build G1 Navn\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) navn: Trade G1 Y1 Navn\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n7) navn: Discover Y1 Navn G3 Co\n\n8) jonaskoelker: Build G1 Jonaskoelker\n\n9) navn: Build G1 Navn\n\n10) jonaskoelker: Discover G1 Jonaskoelker B1 Hoth\n\n11) navn: Discover G1 Navn Y3 Ctrn\n\n12) jonaskoelker: Build G1 Jonaskoelker\n\n13) navn: Build G2 Navn\n\n14) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild G2 Hoth\nBuild G2 Hoth\nBuild G3 Jonaskoelker\n\n15) navn: Move G1 Ctrn Hoth\nCatastrophe Hoth G\n\n16) jonaskoelker: Build G1 Jonaskoelker\n\n17) navn: Move G3 Navn Co\n\n18) jonaskoelker: Discover G1 Jonaskoelker B1 Hoth\n\n19) navn: Discover Y1 Co G1 Nc\n\n20) jonaskoelker: Build G2 Hoth\n\n21) navn: Build G2 Navn\n\n22) jonaskoelker: Trade G2 Y2 Hoth\n\n23) navn: Discover G2 Navn Y3 Cost\n\n24) jonaskoelker: Build Y1 Hoth\n\n25) navn: Build G2 Navn\n\n26) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild G3 Jonaskoelker\nBuild Y2 Jonaskoelker\nBuild Y3 Hoth\n\n27) navn: Discover G2 Navn Y3 Coster\n\n28) jonaskoelker: Sacrifice Y2 Hoth\nMove Y3 Hoth Co\nMove Y3 Co Navn\n\n29) navn: Sacrifice G3 Co\nBuild G3 Cost\nBuild G3 Coster\nBuild Y2 Nc\n\n30) jonaskoelker: Trade G3 R3 Jonaskoelker\n\n\nHomeworlds Online (SDG# 13933)\nVariants: &quot;Hard time&quot;\nStarted: 2009.8.12, Ended: 2010.1.6\nParticipants: PottyTroll (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Hello, and have a good game.\r\n\n\n2) PottyTroll: Homeworld Y3 B1 G3\n\tPottyTroll: hey, you too\n\n3) Jesse: Build G1 Jesse\n\n4) PottyTroll: Build G1 Pottytroll\n\tJesse: Have you played Homeworlds much?\n\n5) Jesse: Trade G1 Y1 Jesse\n\tPottyTroll: still kind of new but I&#39;ve played a few games. You?\n\n6) PottyTroll: Discover G1 Pottytroll B2 Porkslap\n\tJesse: I have played a lot, and I am one of the stronger players on SDG.  I&#39;m always happy to help a new player out, so let me know if there&#39;s an area where you would like some guidance.\n\n7) Jesse: Build G1 Jesse\n\n\n8) PottyTroll: Build G1 Pottytroll\n\n9) Jesse: Build G2 Jesse\n\n10) PottyTroll: Build G2 Porkslap\n\n11) Jesse: Discover G2 Jesse G3 Blop\n\n12) PottyTroll: Trade G2 Y2 Porkslap\n\n13) Jesse: Build Y1 Jesse\n\n14) PottyTroll: Build G2 Porkslap\n\n15) Jesse: Discover G1 Jesse Y3 Dollop\n\n16) PottyTroll: Move G1 Porkslap Blop\n\n17) Jesse: Build G2 Dollop\n\n18) PottyTroll: Build Y1 Porkslap\n\n19) Jesse: Trade Y1 R1 Jesse\n\n20) PottyTroll: Trade Y1 B1 Porkslap\n\n21) Jesse: Move G2 Dollop Porkslap\n\n22) PottyTroll: Trade G1 R1 Pottytroll\n\n23) Jesse: Sacrifice R1 Jesse\nAttack Y2 Porkslap\n\n24) PottyTroll: Sacrifice R1 Pottytroll\nAttack Y2 Porkslap\n\n25) Jesse: Trade G2 R2 Porkslap\n\n\n26) PottyTroll: Sacrifice B1 Porkslap\nTrade G1 R1 Blop\n\n27) Jesse: Attack Y2 Porkslap\n\n28) PottyTroll: Sacrifice R1 Blop\nAttack R2 Porkslap\n\n29) Jesse: Discover Y2 Porkslap B3 Smidge\n\n30) PottyTroll: Build R1 Porkslap\n\n31) Jesse: Sacrifice G2 Blop\nBuild Y1 Smidge\nBuild G1 Jesse\n\n32) PottyTroll: Trade R1 Y1 Porkslap\n\n33) Jesse: Trade Y1 R1 Smidge\n\n34) PottyTroll: Build G1 Pottytroll\n\n35) Jesse: Build G2 Dollop\n\n36) PottyTroll: Trade G1 R1 Pottytroll\n\n37) Jesse: Sacrifice G1 Jesse\nBuild R2 Smidge\n\n38) PottyTroll: Sacrifice G2 Porkslap\nBuild R2 Pottytroll\nBuild R3 Porkslap\n\n39) Jesse: Discover R2 Smidge G2 Pinch\n\n40) PottyTroll: Trade R2 G2 Porkslap\n\n41) Jesse: Sacrifice G2 Dollop\nBuild R2 Pinch\nBuild R3 Smidge\n\n\tJesse: Well, that time it did the move I asked for.  I don&#39;t know what was different before, but I certainly didn&#39;t put &quot;pass&quot; instead of &quot;b r3 smidge&quot;.\n\tAaron: I&#39;m glad it worked!  I&#39;ll do a quick look-over the code anyway.  Call me again if something odd happens.\n\nHomeworlds Online (SDG# 14007)\nStarted: 2009.8.12, Ended: 2009.12.10\nParticipants: jonaskoelker (S), Horowits (N)\nWinner: Horowits\n\n1) Horowits: Homeworld G3 Y2 B3\n\n2) jonaskoelker: Homeworld R1 B2 G3\n\tHorowits: ahoy. good luck and have fun :)\n\n3) Horowits: Build B1 Horowits\n\tjonaskoelker: Ahoy!  Interesting opening, I don&#39;t think I&#39;ve played against a big *blue* ship (opening) before.   Let&#39;s see what will come of it.\r\n\r\nGood luck, have fun, and may the best interstellar commodore win ;-)\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) Horowits: Build B1 Horowits\n\n6) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n7) Horowits: Discover B1 Horowits G1 Rawg\n\tjonaskoelker: Hmm... I figure you&#39;re a sneaky bastard trying to monopolize the blue color.  Wanna&#39; discuss your opening strategy once it&#39;s no longer relevant (i.e. at the latest when the game is over, but before if you feel like it)?\r\n\n\n8) jonaskoelker: Build B2 Jonaskoelker\n\tHorowits: sure thing mon :)\n\n9) Horowits: Build B2 Horowits\n\n10) jonaskoelker: Trade B2 Y2 Jonaskoelker\n\n11) Horowits: Discover B2 Horowits G1 Megadeth\n\n12) jonaskoelker: Discover B1 Jonaskoelker G3 Large_green\n\n13) Horowits: Move B1 Horowits Rawg\n\tjonaskoelker: Were you hoping to have both the remaining two large blue ships for yourself? ;-)\r\n\n\n\nHomeworlds Online (SDG# 14021)\nStarted: 2009.8.14, Ended: 2009.10.28\nParticipants: ts52 (S), Horowits (N)\nWinner: ts52\n\n1) Horowits: Homeworld G3 R1 B3\n\n2) ts52: Homeworld Y1 B2 G3\n\tHorowits: ahoy. have fun and good luck :)\n\n3) Horowits: Build B1 Horowits\n\tts52: Good luck to you too. Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Horowits: Build B1 Horowits\n\n6) ts52: Build G1 Ts52\n\n7) Horowits: Trade B3 Y3 Horowits\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) Horowits: Discover B1 Horowits G2 Gwar\n\n10) ts52: Build G1 Ts52\n\n11) Horowits: Build B1 Gwar\n\n12) ts52: Build G2 Grover\n\n13) Horowits: Build B2 Horowits\n\n14) ts52: Discover G1 Ts52 B3 Gonzo\n\n15) Horowits: Sacrifice B2 Horowits\nTrade B1 Y1 Gwar\nTrade B1 R1 Gwar\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Grover\n\n17) Horowits: Build R1 Gwar\n\n18) ts52: Trade G3 R3 Grover\n\n19) Horowits: Trade Y3 G3 Horowits\n\n20) ts52: Build R2 Grover\n\n21) Horowits: Move R1 Gwar Gonzo\n\n22) ts52: Trade R2 Y2 Grover\n\n\nHomeworlds Online (SDG# 14053)\nStarted: 2009.8.18, Ended: 2009.9.29\nParticipants: ZackStack (S), agentofchaos (N)\nWinner: ZackStack\n\n1) agentofchaos: Homeworld B3 R1 G3\n\tZackStack: Have a good game Agent!  \n\tagentofchaos: Thanks you too Zack!\n\n2) ZackStack: Homeworld R1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) ZackStack: Build G1 Zackstack\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ZackStack: Build G1 Zackstack\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) ZackStack: Trade G1 Y1 Zackstack\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) ZackStack: Discover G1 Zackstack B3 Cookie\n\n11) agentofchaos: Trade Y1 R1 Agentofchaos\n\n12) ZackStack: Build G1 Zackstack\n\n13) agentofchaos: Build R2 Agentofchaos\n\n14) ZackStack: Build G1 Cookie\n\tZackStack: Ahhh... that&#39;s better :-) \n\n15) agentofchaos: Build G2 Agentofchaos\n\n16) ZackStack: Build G2 Zackstack\n\n17) agentofchaos: Discover Y2 Agentofchaos B2 Hearthome\n\n18) ZackStack: Trade G2 R2 Zackstack\n\n19) agentofchaos: Build G2 Agentofchaos\n\n20) ZackStack: Trade G1 Y1 Cookie\n\n21) agentofchaos: Move R2 Agentofchaos Hearthome\n\n22) ZackStack: Move R2 Zackstack Cookie\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) ZackStack: Discover G1 Zackstack Y3 Zoe\n\n25) agentofchaos: Move R2 Hearthome Zoe\n\n26) ZackStack: Discover G1 Zoe R2 Elmo\n\n27) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Zoe\nBuild Y2 Hearthome\n\n28) ZackStack: Build Y3 Zackstack\n\n29) agentofchaos: Move Y2 Agentofchaos Elmo\n\n30) ZackStack: Sacrifice Y3 Zackstack\nMove G1 Cookie Elmo\nMove G1 Elmo Agentofchaos\nMove G1 Elmo Agentofchaos\nCatastrophe Agentofchaos Green\n\n31) agentofchaos: Trade R1 G1 Agentofchaos\n\n32) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Zackstack\nBuild Y3 Cookie\nBuild R1 Cookie\n\tZackStack: Clearly I&#39;m better at this when there is someone else around to distract you :-)\n\n33) agentofchaos: Sacrifice Y2 Hearthome\nMove R3 Zoe Hearthome\nMove R3 Hearthome Agentofchaos\n\tagentofchaos: Oh bugger...\n\n34) ZackStack: Discover R2 Cookie Y2 Abbie\n\n35) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R3 Zoe\n\n36) ZackStack: Sacrifice Y3 Cookie\nMove R2 Abbie Agentofchaos\nMove R1 Cookie Elmo\nMove R1 Elmo Agentofchaos\nCatastrophe Agentofchaos Red\n\n37) agentofchaos: Sacrifice Y2 Hearthome\nMove R3 Zoe Elmo\nMove R3 Elmo Agentofchaos\n\n38) ZackStack: Trade Y3 G3 Zackstack\n\tZackStack: And my glut of undo&#39;s continues...  I guess my first instinct is to play conservatively, but once I make the conservative move I decide the field would look better if I went aggressive...\n\n39) agentofchaos: Trade Y1 G1 Agentofchaos\n\tagentofchaos: Sometimes the grass is greener... ;-)\n\n40) ZackStack: Build G1 Zackstack\n\tagentofchaos: Looks like it&#39;s all downhill from here...\n\n41) agentofchaos: Build G1 Agentofchaos\n\n42) ZackStack: Move G1 Zackstack Cookie\n\tZackStack: I&#39;ll do my best to make it quick and painless :-)\n\n43) agentofchaos: Trade G1 Y1 Agentofchaos\n\tagentofchaos: That&#39;s right kindly of you...\n\n44) ZackStack: Build Y2 Cookie\n\n45) agentofchaos: Build Y2 Agentofchaos\n\n46) ZackStack: Trade Y1 B1 Cookie\n\n47) agentofchaos: Trade Y1 B1 Agentofchaos\n\n48) ZackStack: Sacrifice Y2 Cookie\nDiscover G1 Cookie Y1 Tweetie\nMove B1 Cookie Tweetie\n\n\n49) agentofchaos: Build G1 Agentofchaos\n\tZackStack: Hmmm... why the heck am I building up Cookie system?\n\n50) ZackStack: Build B1 Tweetie\n\tagentofchaos: Are you a fan of cookie monster perhaps?\n\n51) agentofchaos: Move G1 Agentofchaos Elmo\n\tZackStack: Well... who isn&#39;t? :-)\n\n52) ZackStack: Move B1 Tweetie Agentofchaos\n\n53) agentofchaos: Sacrifice B1 Agentofchaos\nTrade R2 B2 Zoe\n\n54) ZackStack: Sacrifice G3 Zackstack\nBuild B1 Agentofchaos\nBuild B2 Agentofchaos\nBuild Y1 Zackstack\nCatastrophe Agentofchaos Blue\n\n\tZackStack: Thanks for the game agent!\n\nHomeworlds Online (SDG# 14057)\nVariants: &quot;Hard time&quot;\nStarted: 2009.8.20, Ended: 2010.1.1\nParticipants: alexcobo (S), Subhan64 (N)\nWinner: alexcobo\n\n1) Subhan64: Homeworld G3 B2 Y3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) alexcobo: Discover Y1 Alexcobo G1 Geneva\n\n7) Subhan64: Build Y1 Subhan64\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) Subhan64: Move Y1 Subhan64 Geneva\n\n10) alexcobo: Trade Y1 R1 Alexcobo\n\n11) Subhan64: Trade G1 R1 Subhan64\n\n12) alexcobo: Sacrifice R1 Alexcobo\nAttack Y1N Geneva\n\n13) Subhan64: Build R1 Subhan64\n\n14) alexcobo: Build Y1 Alexcobo\n\n15) Subhan64: Move R1 Subhan64 Geneva\n\n16) alexcobo: Build Y2 Geneva\n\n17) Subhan64: Attack Y1 Geneva\n\n18) alexcobo: Trade Y1 R1 Alexcobo\n\n19) Subhan64: Build R2 Geneva\n\n20) alexcobo: Sacrifice R1 Alexcobo\nAttack R2N Geneva\n\n21) Subhan64: Build Y1 Geneva\nCatastrophe Geneva Yellow\n\n22) alexcobo: Attack R1N Geneva\n\n23) Subhan64: Build Y1 Subhan64\n\n24) alexcobo: Build Y1 Alexcobo\n\n25) Subhan64: Trade Y1 G1 Subhan64\n\n26) alexcobo: Trade Y1 G1 Alexcobo\n\n27) Subhan64: Discover G1 Subhan64 Y1 Omicronpersei8\n\n28) alexcobo: Build Y1 Alexcobo\n\n29) Subhan64: Build G2 Omicronpersei8\n\n30) alexcobo: Discover G1 Alexcobo Y1 Ono\n\n31) Subhan64: Sacrifice G2 Omicronpersei8\nBuild G2 Omicronpersei8\nBuild G2 Omicronpersei8\n\n32) alexcobo: Build Y2 Alexcobo\n\n33) Subhan64: Sacrifice G2 Omicronpersei8\nBuild Y2 Subhan64\nBuild G2 Omicronpersei8\n\n34) alexcobo: Sacrifice Y2 Alexcobo\nMove G1 Ono Subhan64\nMove G1 Subhan64 Omicronpersei8\nCatastrophe Omicronpersei8 G\n\n35) Subhan64: Trade Y2 G2 Subhan64\n\n36) alexcobo: Build Y1 Alexcobo\n\n37) Subhan64: Build R1 Subhan64\n\n38) alexcobo: Trade Y3 R3 Alexcobo\n\tSubhan64: trade y2 g2 subhan64\n\n39) Subhan64: Build Y1 Subhan64\n\n40) alexcobo: Build R2 Alexcobo\n\n41) Subhan64: Move R1 Subhan64 Geneva\n\n42) alexcobo: Attack R1N Geneva\n\n43) Subhan64: Move R1 Subhan64 Geneva\nCatastrophe Geneva Red\n\n44) alexcobo: Discover R2 Alexcobo G1 Genevaagain\n\n45) Subhan64: Trade Y3 R3 Subhan64\n\n46) alexcobo: Build Y2 Alexcobo\n\n47) Subhan64: Build Y2 Subhan64\n\n48) alexcobo: Discover Y2 Alexcobo G1 Copy\n\n49) Subhan64: Move Y2 Subhan64 Copy\n\n50) alexcobo: Sacrifice R2 Genevaagain\nAttack Y2N Copy\nPass\n\n51) Subhan64: Trade G2 R2 Subhan64\n\n52) alexcobo: Build R1 Alexcobo\n\n53) Subhan64: Build Y2 Subhan64\n\n54) alexcobo: Trade Y1 B1 Alexcobo\n\n55) Subhan64: Trade Y2 G2 Subhan64\n\n56) alexcobo: Sacrifice B1 Alexcobo\nTrade Y2 R2 Copy\n\n57) Subhan64: Build Y1 Subhan64\n\n58) alexcobo: Build Y2 Alexcobo\n\n59) Subhan64: Discover Y1 Subhan64 G1 Sirius7\n\n60) alexcobo: Discover R2 Copy Y2 Waypoint\n\n61) Subhan64: Build Y3 Sirius7\n\n62) alexcobo: Build Y3 Copy\n\n63) Subhan64: Trade Y1 B1 Subhan64\n\n64) alexcobo: Move R2 Waypoint Copy\n\n65) Subhan64: Build B1 Subhan64\n\n66) alexcobo: Trade R1 G1 Alexcobo\n\n67) Subhan64: Sacrifice B1 Subhan64\nTrade Y3 R3 Sirius7\n\n68) alexcobo: Build G2 Alexcobo\n\n69) Subhan64: Trade G2 Y2 Subhan64\n\n70) alexcobo: Discover G2 Alexcobo R1 Titus\n\n71) Subhan64: Move R2 Subhan64 Titus\n\n72) alexcobo: Attack R2N Titus\n\n73) Subhan64: Sacrifice Y2 Subhan64\nMove R3 Sirius7 Alexcobo\nMove R3 Alexcobo Titus\n\n74) alexcobo: Sacrifice Y2 Copy\nMove R2 Copy Alexcobo\nMove R2 Alexcobo Titus\nCatastrophe Titus R\n\n75) Subhan64: Trade B1 Y1 Subhan64\n\n76) alexcobo: Trade Y1 R1 Alexcobo\n\tSubhan64: D&#39;oh!\n\n77) Subhan64: Build R1 Subhan64\n\n78) alexcobo: Build G2 Alexcobo\n\n79) Subhan64: Build Y1 Subhan64\n\n80) alexcobo: Move R3 Alexcobo Sirius7\n\n81) Subhan64: Discover Y1 Sirius7 G2 Sirius9\n\n82) alexcobo: Sacrifice Y3 Copy\nMove R1 Alexcobo Sirius7\nMove R1 Sirius7 Subhan64\nMove R3 Sirius7 Subhan64\nCatastrophe Subhan64 R\n\n83) Subhan64: Build Y2 Subhan64\n\n84) alexcobo: Build Y2 Alexcobo\n\n85) Subhan64: Trade Y2 G2 Subhan64\n\n86) alexcobo: Trade G2 R2 Alexcobo\n\n87) Subhan64: Discover Y1 Sirius9 B1 Sirius8\n\n88) alexcobo: Sacrifice Y2 Alexcobo\nMove R2 Alexcobo Sirius8\nMove R2 Sirius8 Subhan64\n\n89) Subhan64: Build Y2 Subhan64\n\n90) alexcobo: Attack Y2N Subhan64\n\n91) Subhan64: Sacrifice G2 Subhan64\nBuild Y2 Sirius8\nBuild Y3 Sirius8\n\n92) alexcobo: Sacrifice R2 Subhan64\nAttack Y1N Subhan64\nAttack Y1N Subhan64\n\n\talexcobo: Thank you for the game.\r\nHave a very happy 2010!\n\nHomeworlds Online (SDG# 14062)\nStarted: 2009.8.25, Ended: 2009.8.31\nParticipants: JimTarnung (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) JimTarnung: Homeworld B1 G2 Y3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tJimTarnung: To the stars and beyond!\n\n4) JimTarnung: Build Y1 Jimtarnung\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) JimTarnung: Trade Y1 G1 Jimtarnung\n\tJimTarnung: It&#39;s my first game of Homeworlds. I hope i don&#39;t suck too hard. I&#39;m quite sure that I understand the rules, as I translated them to German.\n\n7) TwoShort: Build G1 Twoshort\n\n8) JimTarnung: Build Y1 Jimtarnung\n\n9) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n10) JimTarnung: Trade Y1 R1 Jimtarnung\n\tTwoShort: I usually try to give new players a few strategy pointers, but be aware that by the time I figure out what pointers to give, it&#39;s usually to late to use them :)  For example, I&#39;d generally reccomend starting with a green ship.\n\n11) TwoShort: Build G1 Twoshort\n\n12) JimTarnung: Build Y1 Jimtarnung\n\tJimTarnung: Sacrificing a big green surely seems very powerful. I guess I&#39;ll learn by doing. Don&#39;t hesitate to give advice as you see fit. Even if it is to late..\n\n13) TwoShort: Build G2 Bluonia\n\tTwoShort: Well, as far as too late advice... don&#39;t take a red before there is any threat of your using it.  It&#39;s not hurting you, but you could have done something better with that turn.\n\n14) JimTarnung: Trade Y3 G3 Jimtarnung\n\tTwoShort: &quot;The Factory&quot; - sacrificing a g3 to grow 3 ships including a replacement g3, is definitely a key tactic.  If your opponent gets that set up and you don&#39;t, you&#39;ll have a big problem. \n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\n\tTwoShort: That will get you a factory, but note that it&#39;s only safe because I can&#39;t get a green to your Homeworld for a catastrophe.  If I took a y2, you&#39;d need to move a green out, and wouldn&#39;t be able to use the factory without moving your 3 out.\r\n  But for this turn at least,I&#39;m more interested in using the factory myself...\n\n16) JimTarnung: Build Y1 Jimtarnung\n\tJimTarnung: Oh no! I didn&#39;t realise that you can rebuild the ship you just sacrificed. I traded for a big green to avoid that you get two big ones in one turn. Well, I learned something new again..\n\n17) TwoShort: Trade G3 Y3 Bluonia\n\tTwoShort: Yes, sacrificed ships go tot the stash imediately.  The same is true of abandoned system markers; so if you sacrifice a green that was alone at a star, you can grow the star as a ship.\n\n18) JimTarnung: Discover G1 Jimtarnung Y3 Yello\n\n19) TwoShort: Trade G2 R2 Bluonia\n\n20) JimTarnung: Build Y2 Jimtarnung\n\n21) TwoShort: Discover G2 Twoshort B2 Blitzen\n\tJimTarnung: Yellow catastrophe? Are you willing to do it?\n\n22) JimTarnung: Trade Y1 B1 Jimtarnung\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Blitzen\nBuild G3 Twoshort\n\tTwoShort: The yellow catastrophe would have cost me a y3 &amp; y1 for your y2 and 2 y1s, which I&#39;d rate as a big loss for me.  My super-crude rule of thumb is a 2-point is worth 3 1-points, and a 3-point is worth 3 2-points.  So I&#39;ll pretty much never give up a 3 without getting one in return.\n\n24) JimTarnung: Move B1 Jimtarnung Yello\n\n25) TwoShort: Discover G2 Bluonia B3 Boomtime\n\n26) JimTarnung: Sacrifice G3 Jimtarnung\nBuild G3 Yello\nBuild B1 Yello\nBuild B2 Yello\n\n27) TwoShort: Sacrifice Y3 Bluonia\nMove G3 Blitzen Boomtime\nMove G3 Boomtime Jimtarnung\nPass\n\tJimTarnung: Lord have mercy..\n\n28) JimTarnung: Move B2 Yello Jimtarnung\n\n29) TwoShort: Sacrifice R2 Bluonia\nAttack B2 Jimtarnung\nAttack Y2 Jimtarnung\n\n30) JimTarnung: Move G3 Yello Jimtarnung\n\n31) TwoShort: Sacrifice G2 Blitzen\nBuild G2 Jimtarnung\nBuild B2 Jimtarnung\nCatastrophe Jimtarnung Green\n\n32) JimTarnung: Build G2 Yello\n\n33) TwoShort: Sacrifice G1 Bluonia\nBuild B2 Jimtarnung\nCatastrophe Jimtarnung Blue\n\tTwoShort: Thanks for the game.  Hope it wasn&#39;t too demoralizing :)\n\tJimTarnung: Thank you too. I learned a few basic moves, but there&#39;s a long way to go. This won&#39;t be my last time playing..\n\n\nHomeworlds Online (SDG# 13841)\nStarted: 2009.8.27, Ended: 2009.9.1\nParticipants: MikeYarrum (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G3 Y2 B3\n\tWerebear: Greetings!\n\n\nHomeworlds Online (SDG# 13868)\nVariants: &quot;Hard time&quot;\nStarted: 2009.8.27, Ended: 2009.10.4\nParticipants: agentofchaos (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld B3 Y2 G3\n\tWerebear: Hello!\n\n2) agentofchaos: Homeworld B3 R1 G3\n\tagentofchaos: Hi there, thanks for playing me!\n\n3) Werebear: Build G1 Werebear\n\tWerebear: My pleasure. Do you like a quiet game with no chatter, or are you a social player? I&#39;ll conform to whatever you like, but I do tend to be chattery if my fellow players enjoy that. Either way, I&#39;ll adhere to your pleasure.\n\n4) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: I&#39;m quite open to a bit of chatter, it can be fun to get to know players. \n\n5) Werebear: Discover G1 Werebear Y1 Pergi\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Werebear: Build G1 Werebear\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) Werebear: Discover G1 Pergi B3 Mengubah\n\tWerebear: Sorry, kind sir - got called away for a few days.\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) Werebear: Sacrifice G3 Werebear\nBuild G2 Mengubah\nBuild G2 Mengubah\nBuild G3 Werebear\n\tagentofchaos: Not to worry, nature calls sometimes ;-)\n\tWerebear: We are a watery people, we who are called by our friends the Todak. We have nothing but peaceful intentions and a love of nature. And nature called us away, to our meditations. But now, we come to meet with you, our newest found friend! Greetings from the Todak!\n\n12) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y1 Agentofchaos\nBuild G3 Agentofchaos\n\tWerebear: *squinting*\r\nAhh. Our meditations bear fruit. Blessings!\n\tagentofchaos: Nothing but peaceful intentions?? Says the wolf-in-sheep&#39;s-clothing!\n\n13) Werebear: Build G3 Werebear\n\n14) agentofchaos: Discover G2 Agentofchaos Y2 Dhamballa\n\tWerebear: My friend, we&#39;ve meditated on your thoughts. Surely, we&#39;re not wolves. Perhaps gentle bears? Perhaps your angry red sun tints your view of our peaceful people.\n\n15) Werebear: Discover G3 Werebear B1 Alkimia\n\tagentofchaos: How about locusts in gentle bears&#39; clothing then? The peaceful blue sun balances the angry red one...\n\n16) agentofchaos: Trade Y1 B1 Agentofchaos\n\tWerebear: Oh, yes, my friend, we know about peaceful blue suns.\n\n17) Werebear: Trade G2 Y2 Mengubah\n\n18) agentofchaos: Build B1 Agentofchaos\n\n19) Werebear: Build G2 Alkimia\n\n20) agentofchaos: Move B1 Agentofchaos Dhamballa\n\n21) Werebear: Sacrifice G3 Alkimia\nBuild G3 Alkimia\nBuild Y1 Mengubah\nBuild Y3 Mengubah\n\n22) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild B2 Dhamballa\nBuild B2 Dhamballa\n\n23) Werebear: Discover Y2 Mengubah B2 Berbeda\n\n24) agentofchaos: Move B1 Dhamballa Mengubah\n\n25) Werebear: Sacrifice G3 Alkimia\nBuild G3 Alkimia\nBuild Y3 Mengubah\nBuild Y3 Berbeda\n\tWerebear: Pray tell, have you come to visit? Or are you delivering a message? In all truth, it is wonderful to have met you, finally!\n\n26) agentofchaos: Move B2 Dhamballa Mengubah\n\n27) Werebear: Sacrifice Y3 Mengubah\nDiscover G2 Mengubah R2 Pintu\nMove Y3 Mengubah Dhamballa\nMove Y1 Mengubah Pintu\n\tagentofchaos: Always happy to visit the neighbours I am and bring glad tidings! \n\tWerebear: Methinks you are delivering some sort of eviction notice? Is that what&#39;s in this envelope?\n\n28) agentofchaos: Sacrifice Y1 Agentofchaos\nMove B1 Mengubah Alkimia\n\n29) Werebear: Sacrifice Y3 Berbeda\nMove G1 Mengubah Pintu\nMove G1 Pintu Agentofchaos\nMove G2 Pintu Agentofchaos\nCatastrophe Agentofchaos Green\n\tagentofchaos: Actually fireworks to celebrate our wonderful meeting!\n\tWerebear: You like you some fireworks? We like fireworks too! Here&#39;s some for you!\n\n30) agentofchaos: Trade B2 G2 Mengubah\n\tWerebear: Intergalatic News Services has learned that a horrible calamity has struck in the agentofchaos home system. During a brilliantly executed fireworks display, that drew fascinated audiences from as far away as Mengubah, the star fleets orbiting the home world began colliding. Apparently, the fireworks had a mesmerizing quality that distracted the star ship crews, and before it was all done, thousands of lifeboats had launched down. All hands from all vessels survived, and the agentofchaosians thought that the gigantic star ship explosions were just part of the show. Happy partying continued long into the night, as the lifeboats landed with great relief and celebration.\n\tagentofchaos: Hmm, an investigation is being launched into those fireworks... Foul play is suspected...\n\n31) Werebear: Sacrifice Y2 Berbeda\nDiscover G3 Alkimia B2 Berbeda\nMove Y3 Dhamballa Agentofchaos\n\n32) agentofchaos: Sacrifice G2 Mengubah\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\n\tWerebear: As per your request, we&#39;ll send investigators to assist you. We definitely want to find out about those fireworks problems, before it can happen again.\n\n33) Werebear: Trade Y3 R3 Agentofchaos\n\tagentofchaos: Hmm, we&#39;d really prefer to conduct an independent investigation, but something tells me it&#39;s too late for that....\n\n34) agentofchaos: Trade Y1 G1 Agentofchaos\n\tWerebear: Sorry about the delay, mate! But we think we&#39;ve finally found the problem. The results of investigation will be released to two star days.\n\n35) Werebear: Attack G1S Agentofchaos\n\tagentofchaos: I wait with baited breath...\n\n36) agentofchaos: Trade Y1 G1 Agentofchaos\n\tWerebear: I think I found the problem - right &#39;cheer... Should be all better now. Troublesome green ship stirring up troubles...\n\tagentofchaos: Alas, I fear an age of darkness is falling upon the agentofchaos system...\n\n37) Werebear: Trade G3 R3 Berbeda\n\n\tWerebear: Here, that&#39;ll help...\n\nHomeworlds Online (SDG# 14091)\nVariants: &quot;Hard time&quot;\nStarted: 2009.8.27, Ended: 2009.9.26\nParticipants: Werebear (S), mzmzmz (N)\nWinner: Werebear\n\n1) mzmzmz: Homeworld G2 Y1 B3\n\tWerebear: Howdy!\n\n2) Werebear: Homeworld Y2 B1 G3\n\n3) mzmzmz: Build B1 Mzmzmz\n\tWerebear: Oy! It is such a joy to find friendly peoples so close to us! We look forward to much trade and happiness between our peoples! Greetings!\n\tmzmzmz: Greetings to you as well.  We foresee great cultural exchanges between our peoples in the near future.\n\n4) Werebear: Build G1 Werebear\n\n5) mzmzmz: Trade B1 G1 Mzmzmz\n\n6) Werebear: Discover G1 Werebear Y3 Banana\n\n7) mzmzmz: Build B1 Mzmzmz\n\n8) Werebear: Build G1 Werebear\n\tWerebear: So sorry - started thinking too much.\n\n9) mzmzmz: Move G1 Mzmzmz Banana\n\n10) Werebear: Trade G1 R1 Werebear\n\n11) mzmzmz: Trade B1 Y1 Mzmzmz\n\n12) Werebear: Build R1 Werebear\n\tWerebear: Oy! We dance! What joy! Oy!\n\n13) mzmzmz: Build B1 Mzmzmz\n\n14) Werebear: Discover R1 Werebear G3 Spinach\n\n15) mzmzmz: Move B1 Mzmzmz Banana\n\n16) Werebear: Move R1 Werebear Banana\n\n\tmzmzmz: oops, sorry about that.  I didn&#39;t mean to let the time expire.\n\nHomeworlds Online (SDG# 32026)\nVariants: &quot;Hard time&quot;\nStarted: 2017.4.23, Ended: 2017.6.28\nParticipants: SilentTitan (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) Draw5PlayAll: Build B1 Draw5playall\n\n12) SilentTitan: Build R1 Silenttitan\n\n13) Draw5PlayAll: Build Y1 Draw5playall\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: UH OH.\n\n16) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n17) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n18) SilentTitan: Build Y2 Sol\n\n19) Draw5PlayAll: Discover R2 Draw5playall G2 G2\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n21) Draw5PlayAll: Move Y1 Draw5playall G2\n\n22) SilentTitan: Sacrifice Y2 Sol\nMove Y3 Silenttitan Sol\nMove Y3 Sol G2\n\n23) Draw5PlayAll: Sacrifice Y1 G2\nDiscover R2 G2 Y1 Y1\n\n24) SilentTitan: Discover R1 Silenttitan G1 Soul\n\n25) Draw5PlayAll: Discover B1 Draw5playall G2 G2b\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) Draw5PlayAll: Build B1 G2b\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 G2\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n29) Draw5PlayAll: Build B2 G2b\n\n30) SilentTitan: Trade Y3 B3 Silenttitan\n\n31) Draw5PlayAll: Build Y3 Draw5playall\n\n32) SilentTitan: Sacrifice Y2 Sol\nMove Y2 G2 Draw5playall\nMove Y3 G2 Draw5playall\nCatastrophe Draw5playall Yellow\n\n33) Draw5PlayAll: Trade B2 R2 G2b\n\n34) SilentTitan: Trade Y3 G3 Silenttitan\n\n35) Draw5PlayAll: Trade B1 Y1 G2b\n\tDraw5PlayAll: Thanks!\n\n36) SilentTitan: Move B3 Silenttitan Y1\n\tDraw5PlayAll: You gave more than I lost...\n\n37) Draw5PlayAll: Discover R2 Y1 Y3 Y3\n\n38) SilentTitan: Move B3 Y1 G2b\n\n39) Draw5PlayAll: Move R2 G2b Sol\n\n40) SilentTitan: Build R2 Soul\n\n41) Draw5PlayAll: Attack Y1 Sol\n\n42) SilentTitan: Sacrifice R2 Soul\nAttack B1 G2b\nAttack Y1 G2b\n\n43) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n44) SilentTitan: Build Y2 G2b\n\n45) Draw5PlayAll: Build Y2 Draw5playall\n\n46) SilentTitan: Move G3 Silenttitan Sol\n\n47) Draw5PlayAll: Discover Y1 Sol G3 G3\n\n48) SilentTitan: Sacrifice Y2 G2b\nDiscover B1 G2b Y3 Sole\nDiscover R1 Soul Y3 Tic\n\n49) Draw5PlayAll: Build Y2 G3\n\n\tSilentTitan: I&#39;ve done that in the past but I&#39;m not a good speller and I always have to look up how it is spelt\n\tdlwillson: Now you&#39;re both pushing ships aside! What kind of game is this?!\n\tdlwillson: Investments on the side... :-)\n\tFelix: Odd game indeed! I&#39;ve never seen such a tidy row of Y3 stars.\n\tdlwillson: And 3&#39;s aren&#39;t in anyone&#39;s orbit! Most of the action is in deep space!\n\tDraw5PlayAll: Odd game. I have never had THIS many spectator comments in 28 hours.\n\tdlwillson: The Peanut Gallery is very noisy.\n\tFelix: Man, it&#39;s tragic to see a ladder game go the way of the hard time. :(\n\tSilentTitan: Good game. Sometimes life gets in the way. \n\tDraw5PlayAll: It is even worse to have to wait so long only to lose... and my position is doubtful at best.\n\nHomeworlds Online (SDG# 14093)\nStarted: 2009.9.1, Ended: 2009.9.5\nParticipants: MikeYarrum (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld R3 G1 B3\n\tWerebear: Quake in fear, for I have arrived.\r\nYou may not even want to dare enter this game!\r\nI shall wait.\n\n\nHomeworlds Online (SDG# 14125)\nStarted: 2009.9.2, Ended: 2009.9.11\nParticipants: braino (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G3 Y1 B3\n\tWerebear: Greetings! We come in Peace. (That&#39;s the name of our ship, there, you see?). Peace.\n\n2) braino: Homeworld B3 Y2 G3\n\n3) Werebear: Build B1 Werebear\n\tWerebear: Our peoples seem so like each other. We sure we be fast friends, our peoples likes, much trade and happiness.\n\n4) braino: Build G1 Braino\n\n5) Werebear: Discover B1 Werebear G2 Kabbar\n\tbraino: I have some nuclear waste I would like to dispose of. Mind if I deliver to your homeworld?\n\n6) braino: Discover G1 Braino B1 Dismemberment\n\tWerebear: Oye? You like-uh the glowing blue stuff, you do? We does! We eats it for breakfasts, our peoples glow happily. Yes, please deliver promised delicious breakfasts to us! We bring gifts to you, as well!\n\n7) Werebear: Build B1 Werebear\n\n8) braino: Build G1 Dismemberment\n\tWerebear: Oops... one of our lifeboats fell out of our starship! Please avert your gazes, our peoples are embarrassed.\n\n9) Werebear: Build B2 Kabbar\n\tbraino: Bad move #1 ----&gt;South&#39;s ship G1 ventured forth from braino and discovered a new B1 star system! It has been named Dismemberment. \n\n10) braino: Trade G3 B3 Braino\n\n11) Werebear: Trade B3 G3 Werebear\n\tWerebear: The Kabbar system peoples throws a huge party, builds a new Blue Cruiser for the peaceful Iblesors Peoples.\n\tWerebear: Why you thinka that moves be bad?\n\tbraino: It was bad because I shortened the blue stack for you.\n\tWerebear: Ahh, yes, the economy... that will gets peoples sometimes, &#39;twill.\n\n12) braino: Build G1 Dismemberment\n\tWerebear: We like the ways you peoples dance. We Iblesors dance counter point?\n\tbraino: this game f***s with my brain. \n\n13) Werebear: Sacrifice G3 Werebear\nBuild B2 Kabbar\nBuild B2 Werebear\nBuild B3 Werebear\n\tWerebear: We was just gonna say, you peoples need some green, it calms you peoples all down. Oh. No. Not there!\n\n14) braino: Trade G1 Y1 Dismemberment\n\tWerebear: You peoples stay calm there. Anythings can happen. And usually does.\n\n15) Werebear: Discover B2 Werebear Y2 Dubbiena\n\tbraino: Abanadon ships! Abandon Ships! \n\tbraino: I think the best bet is to restart this one. I have blown it. It is only a matter of time before I lose my base. Then you could just pick me away.\n\n16) braino: Trade G1 R1 Dismemberment\n\tWerebear: You peoples need some rescueing? We send ships, we help you peoples, you see. We come see you very soon. No worry.\n\n17) Werebear: Sacrifice B2 Kabbar\nTrade B3 G3 Werebear\nTrade B1 R1 Kabbar\n\n18) braino: Discover G1 Dismemberment B3 Statue\n\n19) Werebear: Build G1 Werebear\n\tWerebear: We peoples scared - why you peoples got gun? Surely no reason to fear nice little Iblesors peoples. We peoples thinkas you peoples must see real scary other bad peoples somewhere behinds you planet. We get ready to help you peoples.\n\n20) braino: Discover R1 Dismemberment G3 Postal\n\tbraino: I am exploring for space fish... Have you seen any out this way?\n\n21) Werebear: Move G1 Werebear Dubbiena\n\tWerebear: Oooohhh.... Space Fish? Oh, my. My peoples calls those &quot;stilla huta&quot;. We send some peoples to come help you look. Theys very good with some saucy sweet. Yummy. Wes be right there, you wait, peoples, please?\n\n22) braino: Build G1 Statue\n\n23) Werebear: Build G2 Werebear\n\tWerebear: Is lonely in Dubienna. And that yellow star glow so brights. My peoples miss each other. We sends company and snacks.\n\n24) braino: Trade G1 Y1 Statue\n\tbraino: Ship is complete captain...\n\n25) Werebear: Sacrifice G3 Werebear\nBuild G1 Dubbiena\nBuild G2 Dubbiena\nBuild G3 Werebear\n\tWerebear: Did you find you the space fishes? My peoples wants to see.\n\n26) braino: Build Y2 Statue\n\tbraino: No fishes here...\n\n27) Werebear: Sacrifice B2 Dubbiena\nTrade G2 R2 Dubbiena\nTrade G3 Y3 Werebear\n\tWerebear: If you peoples are sure, we peoples believe you. We is sorely tempted to come see for our peoples selves, though.\n\tWerebear: ***buuurrrpppp***\r\nOh, my so sorry\n\n28) braino: Build Y3 Statue\n\tbraino: oh fishy fishy fishy, where are you sir fishy?\n\n29) Werebear: Discover G1 Dubbiena Y3 Anzen\n\n30) braino: Trade B3 G3 Braino\n\tbraino: &quot;look at what I found Mom&quot;\n\n31) Werebear: Build G2 Dubbiena\n\tWerebear: A nice new toy for you! Excellent. Our peoples are most pleased!\n\n32) braino: Discover Y1 Dismemberment B2 Hugs\n\n33) Werebear: Trade Y3 B3 Werebear\n\n34) braino: Trade Y2 B2 Statue\n\tWerebear: I see you peoples. You peoples be very sneaky wise, you are. You must have eaten of the fishies, we peoples think.\n\n35) Werebear: Trade B2 Y2 Kabbar\n\tWerebear: We think this big pretty blue be one of our lost peoples. Happy happy, we dance, we peoples party!\n\n36) braino: Move Y3 Statue Kabbar\n\n37) Werebear: Sacrifice G1 Anzen\nBuild Y3 Kabbar\n\tWerebear: We peoples appreciate making these peaceful trades with yous peoples. The Ilbesors are pleased that you take such good care of your wessels. We peoples likes the decorations. Fuzzy dices be a nice touch.\n\n38) braino: Move Y3 Kabbar Postal\n\tWerebear: Finally our peoples meet! What joy! Party party party!\n\n39) Werebear: Move Y3 Kabbar Statue\n\tWerebear: And you brought us a gift! So Sweet! Our peoples are very happy! Joy Joy! Party Party! Have some punch!\n\n40) braino: Build Y3 Postal\n\tbraino: &quot;Just flying through&quot;\n\tWerebear: Already our peoples miss yous peoples. &#39;twas so nice to have met yous.\n\n41) Werebear: Sacrifice R2 Dubbiena\nAttack B2S Statue\nAttack Y1S Statue\n\n42) braino: Move Y3 Postal Hugs\n\tWerebear: Fishy, fishy? Any space fishies here for our peoples?\n\n43) Werebear: Trade B2 R2 Statue\n\tbraino: no fishies here, I heard they were that way!\n\tWerebear: Wait, we find something. Ooohhh... the fishies ARE here... look, look deep into the fishies eyes. You peoples love the fishies, don&#39;t you? Now, just you peoples turn those little shippys around for the Ilbesors, like good peoples, you do. Yesss... Nice! Happy joy party!\n\n44) braino: Trade Y3 R3 Hugs\n\n45) Werebear: Build Y3 Kabbar\n\n46) braino: Build G1 Braino\n\n47) Werebear: Discover G1 Dubbiena B1 Bieb\n\n48) braino: Move R3 Hugs Bieb\n\tWerebear: Thankee!\n\tbraino: grrr....\n\n49) Werebear: Sacrifice Y3 Statue\nMove G1 Bieb Braino\nMove G2 Dubbiena Bieb\nMove G2 Bieb Braino\nCatastrophe Braino Green\n\n\tbraino: OH NOOOOsss!!! The fishies are gone!\n\tWerebear: And quite tasty, they were. Our peoples thanks yous peoples! yummmmmmmy! *smacks lips*\n\tWerebear: Thanks for playing! Good Game! Our peoples thanks yous peoples!\n\nHomeworlds Online (SDG# 14005)\nStarted: 2009.9.5, Ended: 2010.1.29\nParticipants: pedrop (S), JimTarnung (W), ZackStack (N), Mandrel (E)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Have a good game everyone!\n\n2) Mandrel: Homeworld Y3 B1 G3\n\n3) pedrop: Homeworld B3 Y2 G3\n\n4) JimTarnung: Homeworld Y1 B2 G3\n\tpedrop: The same to You.\n\n5) ZackStack: Build G1 Zackstack\n\n6) Mandrel: Build G1 Mandrel\n\n7) pedrop: Build G1 Pedrop\n\n8) JimTarnung: Build G1 Jimtarnung\n\n9) ZackStack: Trade G1 Y1 Zackstack\n\n10) Mandrel: Trade G1 R1 Mandrel\n\n11) pedrop: Discover G1 Pedrop B1 Ziemia\n\n12) JimTarnung: Discover G1 Jimtarnung B3 Blub\n\n13) ZackStack: Build G1 Zackstack\n\n14) Mandrel: Build G1 Mandrel\n\n15) pedrop: Build G1 Ziemia\n\n16) JimTarnung: Build G2 Jimtarnung\n\n17) ZackStack: Discover G1 Zackstack B3 Azure\n\n18) Mandrel: Build G2 Mandrel\n\n19) pedrop: Trade G1 Y1 Ziemia\n\n20) JimTarnung: Build G1 Blub\n\n21) ZackStack: Build G2 Zackstack\n\n22) Mandrel: Discover G1 Mandrel B2 Prosperity\n\n23) pedrop: Build G2 Ziemia\n\n24) JimTarnung: Trade G1 Y1 Blub\n\n25) ZackStack: Trade G2 Y2 Zackstack\n\n26) Mandrel: Build G1 Prosperity\n\n27) pedrop: Build G2 Pedrop\n\n28) JimTarnung: Sacrifice G3 Jimtarnung\nBuild G2 Blub\nBuild G3 Jimtarnung\nBuild Y1 Blub\n\n29) ZackStack: Build G3 Azure\n\n30) Mandrel: Trade G2 Y2 Mandrel\n\n31) pedrop: Trade G1 R1 Ziemia\n\n32) JimTarnung: Trade Y1 R1 Blub\n\n33) ZackStack: Sacrifice Y2 Zackstack\nMove G3 Azure Jimtarnung\nMove G1 Azure Jimtarnung\nCatastrophe Jimtarnung Green\n\n34) Mandrel: Build G1 Mandrel\n\tZackStack: My apologies Jim... you made this just a little too easy for me.\n\n35) pedrop: Build R1 Ziemia\n\n36) ZackStack: Build G1 Zackstack\n\n37) Mandrel: Build R2 Mandrel\n\n38) pedrop: Discover R1 Ziemia G3 Niebo\n\n39) ZackStack: Build Y1 Zackstack\n\n40) Mandrel: Trade G1 Y1 Prosperity\n\n41) pedrop: Build Y2 Ziemia\n\n42) ZackStack: Discover G1 Zackstack B3 Boo\n\n43) Mandrel: Build Y2 Prosperity\n\n44) pedrop: Trade Y1 B1 Ziemia\n\n45) ZackStack: Build G1 Zackstack\n\n46) Mandrel: Build G2 Prosperity\n\n47) pedrop: Sacrifice G3 Pedrop\nBuild G2 Ziemia\nBuild G3 Pedrop\nBuild Y1 Ziemia\n\n48) ZackStack: Build G3 Boo\n\n49) Mandrel: Trade G2 R2 Prosperity\n\n50) pedrop: Move Y2 Ziemia Niebo\n\n51) ZackStack: Move Y1 Zackstack Boo\n\n52) Mandrel: Move R2 Prosperity Blub\n\n53) pedrop: Move B1 Ziemia Niebo\n\n54) ZackStack: Sacrifice G3 Boo\nBuild Y2 Zackstack\nBuild Y3 Boo\nBuild G2 Boo\n\n55) Mandrel: Build G3 Prosperity\n\n56) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y3 Ziemia\nBuild Y3 Niebo\n\n57) ZackStack: Trade G2 R2 Boo\n\n58) Mandrel: Discover G1 Prosperity B1 Funland\n\n59) pedrop: Discover Y2 Niebo B1 Ogien\n\n60) ZackStack: Move Y3 Boo Funland\n\n61) Mandrel: Build G2 Funland\n\n62) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y3 Ogien\nBuild R2 Niebo\n\n63) ZackStack: Sacrifice R2 Boo\nAttack G2E Funland\nAttack G1E Funland\n\n64) Mandrel: Move Y2 Prosperity Funland\n\n65) pedrop: Move R1 Niebo Ogien\n\n66) ZackStack: Sacrifice Y2 Zackstack\nMove G2 Funland Pedrop\nMove G1 Funland Pedrop\nCatastrophe Pedrop Green\n\n67) Mandrel: Build Y2 Prosperity\n\tZackStack: ... and then there were two... I think you have the edge Mandrel.  But I&#39;ll go down swinging :-)\n\n68) ZackStack: Discover Y3 Funland G2 Rowan\n\tpedrop: Hehe... nice one:) But I think it should be a little harder for You to destroy my... but, of course its my fault...;) Let the best win now! :)\n\tZackStack: Hey pedrop!  Thanks for taking your demise so well :-)  Shoot me a one on one challenge if you up for some revenge! :-)\n\tpedrop: I probably will, but now I have to many games and to much work:) Take care.\n\tMandrel: I&#39;m not so sure, still not entirely sure what I&#39;m doing, not sure how I&#39;ve managed to last this long!\n\n69) Mandrel: Move Y1 Prosperity Blub\n\tZackStack: Since I ended up whacking the other two... perhaps it was because I wasn&#39;t focusing on you... now I am &lt;cue evil laughter&gt; :-p\n\n70) ZackStack: Build Y2 Rowan\n\tMandrel: I feel the fear now, I can no longer hide in the shadows, it&#39;s maddening!\n\n71) Mandrel: Trade Y1 G1 Blub\n\n72) ZackStack: Move Y2 Rowan Mandrel\n\n73) Mandrel: Move Y2 Mandrel Rowan\n\n74) ZackStack: Sacrifice G1 Boo\nBuild Y1 Mandrel\n\tZackStack: Don&#39;t mind me... just visiting :-)\n\tMandrel: Phew! I was worried for a minute thhat you had ill intentions in your heart.\n\n75) Mandrel: Trade R2 G2 Blub\n\n76) ZackStack: Move Y3 Rowan Mandrel\nCatastrophe Mandrel Yellow\nCatastrophe Blub Green\n\tZackStack: Not at all... though I did invite the kid along :-p\n\n77) Mandrel: Build G1 Prosperity\n\tMandrel: As long as it&#39;s all in good will, welcome!\n\tZackStack: Do you want to undo that last move?  I&#39;m pretty sure I can cause a catastrophe in blub even though I don&#39;t have prescense there...\n\tZackStack: Got your geekmail!  Here we go...\n\n78) ZackStack: Move G1 Zackstack Boo\n\tZackStack: Its not too often I get to type catastrophe twice on my turn! :-)\n\tMandrel: Oh dear. Things appear to have taken a slight turn for the worse.\n\n79) Mandrel: Discover G3 Prosperity Y3 Fear\n\tZackStack: You still have a major ship advantage.  That should help.\n\n80) ZackStack: Build G1 Zackstack\n\n81) Mandrel: Build G1 Fear\n\n82) ZackStack: Move G1 Zackstack Fear\n\n83) Mandrel: Sacrifice Y2 Funland\nMove G1 Fear Zackstack\nMove G3 Fear Zackstack\n\n84) ZackStack: Attack G3E Zackstack\n\n85) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Zackstack\nBuild Y1 Rowan\nBuild Y2 Prosperity\nCatastrophe Zackstack Green\n\tZackStack: Ooo.... That&#39;s not good...\n\n86) ZackStack: Sacrifice G1 Boo\nBuild Y2 Zackstack\n\n87) Mandrel: Discover Y2 Rowan G3 Winter\n\tMandrel: vengeance!\n\n88) ZackStack: Trade Y2 G2 Zackstack\n\tZackStack: Yup.  Looking pretty ugly over here!\n\n89) Mandrel: Build Y2 Winter\n\n90) ZackStack: Build G1 Zackstack\n\n91) Mandrel: Build Y3 Rowan\n\n92) ZackStack: Trade Y1 G1 Boo\n\tZackStack: Merry Christmas!\n\tMandrel: You too (belatedly!)\r\n\n\n93) Mandrel: Build G2 Prosperity\n\n94) ZackStack: Build G3 Boo\n\n95) Mandrel: Sacrifice Y2 Prosperity\nMove Y3 Rowan Blub\nMove Y3 Blub Zackstack\n\n96) ZackStack: Sacrifice G3 Boo\nBuild Y1 Zackstack\nBuild Y2 Zackstack\nBuild G3 Boo\nCatastrophe Zackstack Yellow\n\n97) Mandrel: Sacrifice Y2 Winter\nMove G1 Prosperity Winter\nMove G1 Winter Zackstack\n\n98) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: I dont think I&#39;ve ever created a catastrophe at my own homeworld before :-)\n\tMandrel: It has become a game of unusual catastrophes!\n\n99) Mandrel: Move Y2 Winter Zackstack\n\n100) ZackStack: Attack Y2E Zackstack\n\n101) Mandrel: Build G1 Zackstack\n\n102) ZackStack: Trade G2 R2 Zackstack\n\tZackStack: Why... thank you :-)\n\tMandrel: That wasn&#39;t very bright of me!\n\n103) Mandrel: Build G2 Mandrel\n\tZackStack: You are persistent though...\n\n104) ZackStack: Trade G3 Y3 Boo\n\n105) Mandrel: Build G3 Prosperity\n\n106) ZackStack: Move Y3 Boo Mandrel\n\n107) Mandrel: Trade G3 B3 Prosperity\n\n108) ZackStack: Attack G1E Zackstack\n\tZackStack: I am now humming the Darth Vader theme ;-)\n\tMandrel: Oh dear, I feel just like alderon.\n\n109) Mandrel: Build G3 Zackstack\n\tZackStack: Nice move with that trade!\n\n110) ZackStack: Sacrifice R2 Zackstack\nAttack R2E Mandrel\nAttack R1E Mandrel\n\n111) Mandrel: Move Y1 Rowan Mandrel\n\n112) ZackStack: Sacrifice R2 Mandrel\nAttack G2E Mandrel\nAttack G1E Mandrel\n\tZackStack: I sure hope I didn&#39;t miss an R3 lurking out there somewhere...\n\n113) Mandrel: Build G2 Zackstack\nCatastrophe Zackstack Green\n\tMandrel: Oh dear, its all looking rather grim.\n\tZackStack: Bought yourself another turn huh? :-)\n\n114) ZackStack: Attack Y1E Mandrel\n\n\tMandrel: I was lookin 4 the most dramatic final move I could muster, thats the best I could manage. Good game!\n\tZackStack: Well done.  A catastrophe is always fun to go out on!  Thanks for the game!\n\nHomeworlds Online (SDG# 14166)\nStarted: 2009.9.9, Ended: 2009.12.11\nParticipants: face (S), MrStickman (N)\nWinner: face\n\n1) MrStickman: Homeworld Y2 B3 G3\n\n2) face: Homeworld R3 B1 G3\n\tMrStickman: I can&#39;t promise a better performance than last time, unfortunately....\n\n3) MrStickman: Build G1 Mrstickman\n\n4) face: Build G1 Face\n\n5) MrStickman: Trade G1 R1 Mrstickman\n\n6) face: Trade G3 Y3 Face\n\n7) MrStickman: Build R1 Mrstickman\n\n8) face: Build Y1 Face\n\n9) MrStickman: Build R1 Mrstickman\n\n10) face: Build G1 Face\n\tMrStickman: Sorry for the delay; I was temporarily homeless.\n\tface: oh noes! is there a story worth telling?\n\n11) MrStickman: Discover R1 Mrstickman G1 Lorem\n\n12) face: Build G2 Face\n\tMrStickman: Not really; Candle brought a case of Ebola back from Burning Man and warned me not to be around.\n\n13) MrStickman: Build R2 Lorem\n\n14) face: Trade G2 R2 Face\n\n15) MrStickman: Build G2 Mrstickman\n\tMrStickman: So I injured my arm (no typing), then left town (no internet), then caught Martian Death Plague (no brain). Not the best month for using this site.\n\n16) face: Build G2 Face\n\tface: you injured your arm? what&#39;d you do, get hit by a car?\n\n17) MrStickman: Discover R1 Mrstickman Y1 Ipsum\n\tMrStickman: Bicep strain, acquired through working at a job that I have.\n\n18) face: Discover Y1 Face B2 Waste\n\n19) MrStickman: Discover R1 Ipsum G3 Dolor\n\n20) face: Discover R2 Face Y2 Plaster\n\n21) MrStickman: Build R2 Dolor\n\n22) face: Move G2 Face Plaster\n\n23) MrStickman: Build R3 Mrstickman\n\n24) face: Build R3 Plaster\n\n25) MrStickman: Discover G2 Mrstickman B1 Sit\n\n26) face: Move G1 Face Waste\n\n27) MrStickman: Trade R1 Y1 Mrstickman\n\n28) face: Discover R2 Plaster Y1 Blitz\n\n29) MrStickman: Build R1 Mrstickman\n\n30) face: Build Y2 Face\n\n31) MrStickman: Move Y1 Mrstickman Lorem\n\n32) face: Build Y3 Waste\n\tMrStickman: You&#39;re in town in like two days for Reversi, right?\n\tface: ha. ha. ha.\n\n33) MrStickman: Build Y3 Lorem\n\n34) face: Move R3 Plaster Sit\n\n35) MrStickman: Sacrifice G2 Sit\nBuild G2 Mrstickman\nPass\n\n36) face: Trade Y2 B2 Face\n\n37) MrStickman: Discover Y1 Lorem G2 Amet\n\n38) face: Build G3 Plaster\n\n39) MrStickman: Build Y2 Amet\n\n40) face: Move B2 Face Plaster\n\n41) MrStickman: Move Y1 Amet Dolor\n\n42) face: Build B1 Plaster\n\n43) MrStickman: Trade R3 B3 Mrstickman\n\n44) face: Sacrifice G2 Plaster\nBuild G2 Plaster\nBuild R3 Blitz\n\n45) MrStickman: Move B3 Mrstickman Lorem\n\n46) face: Move B1 Plaster Blitz\n\n47) MrStickman: Build B2 Lorem\n\n48) face: Build B3 Plaster\n\n49) MrStickman: Move B3 Lorem Amet\n\tface: lol @ global reserve stash.\n\n50) face: Move G1 Waste Blitz\n\n51) MrStickman: Move R1 Lorem Amet\n\n52) face: Sacrifice Y3 Waste\nMove G1 Blitz Mrstickman\nMove G2 Plaster Blitz\nMove G2 Blitz Mrstickman\nCatastrophe Mrstickman Green\n\n53) MrStickman: Move Y3 Lorem Mrstickman\n\n54) face: Build Y3 Face\n\n55) MrStickman: Sacrifice Y3 Mrstickman\nMove Y1 Dolor Amet\nMove Y2 Amet Face\nMove Y1 Amet Face\nCatastrophe Face Y\n\n56) face: Move R3 Blitz Mrstickman\n\n\tMrStickman: Double monkey fuck damn christpunching son of a bitch.\r\n\r\nI mean, good game! Wanna start a new game (of something else?)\n\tface: worth noting that i took the time to set up the board with real pieces about three moves back and was actually hoping you would do exactly what you did.\n\nHomeworlds Online (SDG# 14188)\nStarted: 2009.9.10, Ended: 2009.10.21\nParticipants: Uglyfoot (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G3 Y1 B3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\tWerebear: Greetings! Thanks for accepting my challenge. I see that you do not always open Banker, so I will not, either. If you&#39;d like to, that&#39;s cool, but that&#39;s of course up to you. Game on, Cap&#39;n Uglyfoot!\n\n3) Werebear: Build B1 Werebear\n\tUglyfoot: greetings.  open banker?\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Werebear: Discover B1 Werebear R2 Juang\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Basestar\n\n7) Werebear: Trade B1 G1 Juang\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Werebear: Build G2 Juang\n\n10) Uglyfoot: Build G2 Basestar\n\tWerebear: Oy, the joys of a red system... argh.\n\n11) Werebear: Sacrifice G1 Juang\nBuild B1 Werebear\n\n12) Uglyfoot: Trade G1 B1 Uglyfoot\n\n13) Werebear: Trade B1 Y1 Werebear\n\n14) Uglyfoot: Move B1 Uglyfoot Basestar\n\n15) Werebear: Move Y1 Werebear Juang\n\n16) Uglyfoot: Trade G2 Y2 Basestar\n\n17) Werebear: Build B1 Werebear\n\n18) Uglyfoot: Build G1 Uglyfoot\n\n19) Werebear: Move B1 Werebear Juang\n\n20) Uglyfoot: Trade G1 R1 Uglyfoot\n\n21) Werebear: Build G1 Juang\n\n22) Uglyfoot: Discover B1 Basestar G2 Forward\n\n23) Werebear: Build B1 Werebear\n\n24) Uglyfoot: Build B2 Forward\n\n25) Werebear: Trade B3 R3 Werebear\n\n26) Uglyfoot: Trade B2 R2 Forward\n\n27) Werebear: Build B2 Werebear\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) Werebear: Sacrifice G2 Juang\nBuild B2 Werebear\nBuild B3 Juang\n\n30) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild B3 Forward\nBuild G2 Basestar\nBuild G2 Uglyfoot\n\n31) Werebear: Build G3 Juang\n\tWerebear: Oops... sorry! Silly me...\n\n32) Uglyfoot: Sacrifice Y2 Basestar\nMove B1 Forward Werebear\nMove G1 Basestar Forward\nCatastrophe Werebear B\n\n33) Werebear: Build G3 Juang\n\n34) Uglyfoot: Build R1 Forward\n\tWerebear: Touche&#39;...\n\n35) Werebear: Move B3 Juang Werebear\n\n36) Uglyfoot: Trade R2 Y2 Forward\n\n37) Werebear: Discover G3 Juang Y1 Pisang\n\n38) Uglyfoot: Sacrifice Y2 Forward\nMove B3 Forward Pisang\nMove B3 Pisang Uglyfoot\n\n39) Werebear: Sacrifice G3 Juang\nBuild G3 Juang\nBuild R2 Werebear\nBuild Y2 Juang\n\n40) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n41) Werebear: Discover Y2 Juang B1 Bidla\n\n42) Uglyfoot: Build R2 Uglyfoot\n\n43) Werebear: Discover R2 Werebear Y2 Matahari\n\n44) Uglyfoot: Move Y2 Uglyfoot Basestar\n\n45) Werebear: Sacrifice G3 Juang\nBuild Y3 Bidla\nBuild Y3 Juang\nBuild R3 Matahari\n\n46) Uglyfoot: Build R3 Forward\n\n47) Werebear: Build B1 Juang\n\n48) Uglyfoot: Discover G2 Basestar B3 Outback\n\n49) Werebear: Move B1 Juang Pisang\n\n50) Uglyfoot: Build G2 Outback\n\n51) Werebear:\nBuild G3 Juang\n\n52) Uglyfoot: Move Y2 Basestar Forward\n\n53) Werebear: Sacrifice G3 Juang\nBuild G3 Juang\nBuild B2 Juang\nBuild B2 Pisang\n\n54) Uglyfoot: Move R1 Forward Werebear\n\n55) Werebear: Discover B1 Juang R1 Pedang\n\n56) Uglyfoot: Move R1 Uglyfoot Pisang\n\n57) Werebear: Sacrifice Y3 Juang\nMove R3 Matahari Bidla\nMove B1 Pedang Uglyfoot\nMove B1 Pisang Uglyfoot\nCatastrophe Uglyfoot Blue\n\n58) Uglyfoot: Build Y3 Forward\n\n59) Werebear: Sacrifice Y2 Bidla\nMove R3 Bidla Uglyfoot\nMove G3 Pisang Uglyfoot\n\n60) Uglyfoot: Sacrifice Y3 Forward\nMove R3 Forward Werebear\nMove R1 Pisang Forward\nMove R1 Forward Werebear\nCatastrophe Werebear R\n\n61) Werebear: Sacrifice R2 Matahari\nAttack R2S Uglyfoot\nAttack G1S Uglyfoot\n\n\tWerebear: Thank you very much for playing!\n\nHomeworlds Online (SDG# 14194)\nStarted: 2009.9.14, Ended: 2011.5.21\nParticipants: braino (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G1 Y3 B3\n\tWerebear: Oy, we meet again! Greetings, old friend!\n\n2) braino: Homeworld B3 Y1 G3\n\n3) Werebear: Build B1 Werebear\n\tbraino: &quot;No, No, No&quot;\r\n\n\n4) braino: Build G1 Braino\n\tWerebear: &quot;Yes, Yes, Yes!&quot;\n\n5) Werebear: Discover B1 Werebear Y2 Gobon\n\tbraino: &quot;Oh, No!&quot;\n\n6) braino: Discover G1 Braino Y2 Quinn\n\tWerebear: *tap tap tap*\r\n*tap tapity tap tap    tap*\r\n&quot;Attention! We come in Peace!\r\n(That&#39;s the name of our little ship. Ain&#39;t she pretty?)\n\n7) Werebear: Trade B1 G1 Gobon\n\tbraino: &quot;Know thy neighbor...&quot;\n\n8) braino: Build G2 Braino\n\tWerebear: You know the old saw about &quot;Imitation is the best flattery&quot;, right?\n\n9) Werebear: Build B1 Werebear\n\tbraino: &quot;Know... of course we know. We know everything!&quot;\n\n10) braino: Discover G2 Braino Y2 Cribbs\n\n11) Werebear: Build G2 Gobon\n\tbraino: &quot;No Justice, No Peace!&quot;\n\n12) braino: Build G2 Braino\n\tWerebear: &quot;Know Justice. Know Peace.&quot;\r\nPreach it, brother...\n\n13) Werebear: Sacrifice B1 Werebear\nTrade G1 B1 Gobon\n\tbraino: &quot;Fools!&quot;\n\n14) braino: Sacrifice G3 Braino\nBuild G1 Cribbs\nBuild G3 Quinn\nBuild G3 Braino\n\n15) Werebear: Build G3 Gobon\n\tbraino: &quot;What do you have in your sleeve?&quot;\n\n16) braino: Trade G3 Y3 Braino\n\tWerebear: &quot;There is nothing up my sleeve! Nothing!&quot;\n\n17) Werebear: Discover G2 Gobon Y3 Stilla\n\tbraino: I think I see something, let me get a closer look...\n\n18) braino: Sacrifice G3 Quinn\nBuild G3 Quinn\nBuild G3 Braino\nBuild Y1 Braino\n\tbraino: &quot;..oops!&quot;\n\n19) Werebear: Build B1 Gobon\n\tWerebear: Nice save\n\n20) braino: Sacrifice Y3 Braino\nMove G1 Cribbs Werebear\nMove G2 Cribbs Werebear\nMove G1 Quinn Werebear\nCatastrophe Werebear G\n\n21) Werebear: Move B1 Gobon Stilla\n\n22) braino: Trade G2 R2 Braino\n\n23) Werebear: Trade B1 R1 Gobon\n\tbraino: &quot;why is it so quiet in here...&quot;\n\n24) braino: Build Y1 Braino\n\n25) Werebear: Build G1 Gobon\n\n26) braino: Discover Y1 Braino B2 Jackson\n\n27) Werebear: Discover G1 Gobon Y3 Gwardja\n\tWerebear: &quot;huh? Hrmbph... eh? You talking to me?&quot;\n\n28) braino: Build R1 Braino\n\n29) Werebear: Trade G2 Y2 Stilla\n\n30) braino: Move G3 Quinn Stilla\n\n31) Werebear: Discover Y2 Stilla G2 Andar\n\tWerebear: I is back.\n\n32) braino: Sacrifice R1 Braino\nAttack B1 Stilla\n\tbraino: I was hoping that you weren&#39;t dead...\n\n33) Werebear: Build Y2 Andar\n\n34) braino: Build R1 Braino\n\n35) Werebear: Discover Y2 Andar R3 Strajk\n\tbraino: Nice move. I like it.\r\n\r\nMade me think....\n\n36) braino: Trade B1 R1 Stilla\n\n37) Werebear: Sacrifice G1 Gwardja\nBuild Y3 Strajk\n\n38) braino: Discover Y1 Braino G2 Anderson\n\n39) Werebear: Build R2 Gobon\n\n40) braino: Move R1 Braino Jackson\n\n41) Werebear: Move R2 Gobon Werebear\n\n42) braino: Sacrifice G3 Stilla\nBuild R2 Braino\nBuild R3 Stilla\nBuild R3 Jackson\n\n43) Werebear: Build G1 Gobon\n\n44) braino: Trade R3 G3 Jackson\n\n45) Werebear: Build R3 Gobon\n\n46) braino: Move R1 Stilla Anderson\n\n47) Werebear: Move G3 Gobon Werebear\n\n48) braino: Move R3 Stilla Andar\n\n49) Werebear: Sacrifice Y2 Andar\nDiscover Y2 Strajk G1 Anggur\nDiscover G1 Gobon Y3 Bersinar\n\tbraino: Sorry &#39;bout that\n\tbraino: more r3 Stilla Andar\n\n50) braino: Build Y2 Jackson\n\tWerebear: Welcome back.... Some party, eh?\n\n51) Werebear: Sacrifice G1 Bersinar\nBuild Y3 Strajk\n\n52) braino: Sacrifice Y2 Jackson\nMove Y1 Jackson Strajk\nMove Y1 Anderson Strajk\nCatastrophe Strajk Y\n\n53) Werebear: Build R3 Werebear\n\n54) braino: Trade R2 Y2 Braino\n\n55) Werebear: Build B1 Werebear\n\n56) braino: Move Y2 Braino Jackson\n\n57) Werebear: Build G1 Werebear\n\n58) braino: Build Y1 Jackson\n\n59) Werebear: Move R3 Werebear Anggur\n\n60) braino: Move Y1 Jackson Braino\n\n61) Werebear: Trade B3 Y3 Werebear\n\n62) braino: Sacrifice G3 Jackson\nBuild Y1 Jackson\nBuild Y3 Jackson\nBuild R2 Jackson\n\n63) Werebear: Move Y2 Anggur Jackson\nCatastrophe Jackson Yellow\n\n64) braino: Build Y1 Braino\n\n65) Werebear: Move Y3 Werebear Anderson\n\tbraino: damn. I can&#39;t undo twice!\n\n66) braino: Move Y1 Braino Andar\n\tWerebear: Whew... much neater now.\n\n67) Werebear: Build Y2 Anderson\n\n68) braino: Build Y2 Andar\n\tWerebear: Been meaning to visit. Look, I brought coffee-cake!\n\n69) Werebear: Move Y2 Anderson Anggur\n\n\nHomeworlds Online (SDG# 14016)\nVariants: &quot;Unrated, Sinister, Hard time&quot;\nStarted: 2009.9.19, Ended: 2009.11.7\nParticipants: JimTarnung (S), koikaze (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) JimTarnung: Homeworld B3 Y1 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: Enjoy the game! I suppose that other guy didn&#39;t want a 3-player game...but then why did he sign up in the first place?? I can&#39;t figure out some players...\n\n4) JimTarnung: Build G1 Jimtarnung\n\tJimTarnung: I hope you&#39;ll enjoy it too. I&#39;m a bloody Beginner so don&#39;t expect a lot..\n\tagentofchaos: It&#39;s all a learning experience, have fun along the way :-)\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) JimTarnung: Build G1 Jimtarnung\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) JimTarnung: Discover G1 Jimtarnung B2 Blu\n\n9) agentofchaos: Discover G1 Agentofchaos Y3 Dagon7\n\n10) JimTarnung: Trade G1 R1 Jimtarnung\n\n11) agentofchaos: Trade Y1 R1 Agentofchaos\n\n12) JimTarnung: Build G1 Blu\n\n13) agentofchaos: Build R1 Agentofchaos\n\n14) JimTarnung: Trade G1 Y1 Blu\n\n15) agentofchaos: Trade R1 Y1 Agentofchaos\n\n16) JimTarnung: Build G1 Blu\n\n17) agentofchaos: Move R1 Agentofchaos Dagon7\n\n18) JimTarnung: Trade G1 R1 Blu\n\n19) agentofchaos: Build G1 Agentofchaos\n\n20) JimTarnung: Discover Y1 Blu G3 Gren\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) JimTarnung: Build G2 Blu\n\n23) agentofchaos: Build G2 Dagon7\n\n24) JimTarnung: Trade G2 Y2 Blu\n\n25) agentofchaos: Trade G1 B1 Agentofchaos\n\n26) JimTarnung: Build Y1 Blu\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) JimTarnung: Build Y2 Gren\n\n29) agentofchaos: Discover Y2 Agentofchaos B3 Trigger\n\n30) JimTarnung: Trade Y1 B1 Blu\n\n31) agentofchaos: Move B1 Agentofchaos Dagon7\n\n32) JimTarnung: Move B1 Blu Gren\n\n33) agentofchaos: Discover B1 Dagon7 Y2 Kakron4\n\n34) JimTarnung: Discover Y2 Blu R3 Re\n\n35) agentofchaos: Sacrifice G1 Dagon7\nBuild B1 Kakron4\n\n\nHomeworlds Online (SDG# 14116)\nStarted: 2009.10.9, Ended: 2009.11.4\nParticipants: ExKirby (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: howdy\n\n2) ExKirby: Homeworld Y3 G1 B3\n\tExKirby: Hey, how do you make a homeworld? I&#39;m new to this, so...\n\n3) TwoShort: Build G1 Twoshort\n\tExKirby: NM, sorted.\n\n4) ExKirby: Build B1 Exkirby\n\tTwoShort: Out of curiosity, have you played Homeworlds before? (off-line)\n\tExKirby: No, this would be my first game.\n\n5) TwoShort: Build G1 Twoshort\n\n6) ExKirby: Trade B1 Y1 Exkirby\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: In that case, I&#39;ll throw out a few strategy tips... As second player, you usually want a star of the size I didn&#39;t use so we&#39;re three hops from each other; this way we&#39;re two.  Also, most people think the 1-2 homeworld is best; I took the 1-3 homeworld partly to be nice :)\r\n  Also, you usually want to start with a green ship.\n\tExKirby: OK... do you know how to make a new system?\n\n8) ExKirby: Discover Y1 Exkirby G2 Newstarname\n\tTwoShort: You could, for example, move your y1 to a new g2 with:\r\ndiscover y1 ExKirby g2 NewStarName\n\n9) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\tExKirby: Thanks.\n\n10) ExKirby: Build B1 Exkirby\n\n11) TwoShort: Build G1 Twoshort\n\n12) ExKirby: Move B1 Exkirby Bluestar\n\n13) TwoShort: Trade G1 Y1 Twoshort\n\n\nHomeworlds Online (SDG# 14163)\nStarted: 2009.10.13, Ended: 2009.11.2\nParticipants: nycavri (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi Avri!  Have a good game!\n\n2) nycavri: Homeworld B3 Y2 G3\n\tnycavri: You too.  I&#39;m extraordinarily ordinary at this game . . .\n\n3) ZackStack: Build G1 Zackstack\n\n4) nycavri: Build G1 Nycavri\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) nycavri: Build G1 Nycavri\n\n7) ZackStack: Discover Y1 Zackstack G3 Blob\n\n8) nycavri: Trade G1 Y1 Nycavri\n\n9) ZackStack: Build G1 Zackstack\n\n10) nycavri: Trade G1 R1 Nycavri\n\tZackStack: At this point in live games I start cackling maniacly to unnerve my opponent :-)\n\tnycavri: Consider your opponent unnerved . . .\n\n11) ZackStack: Build G1 Zackstack\n\n12) nycavri: Discover Y1 Nycavri B1 Deacon\n\n13) ZackStack: Trade G1 Y1 Zackstack\n\n14) nycavri: Build G1 Nycavri\n\n15) ZackStack: Sacrifice G3 Zackstack\nBuild Y2 Blob\nBuild Y2 Zackstack\nBuild Y3 Zackstack\n\n16) nycavri: Sacrifice G1 Nycavri\nBuild Y3 Deacon\n\n17) ZackStack: Sacrifice Y2 Zackstack\nMove Y1 Blob Deacon\nMove Y2 Blob Deacon\nCatastrophe Deacon Yellow\n\n18) nycavri: Trade R1 Y1 Nycavri\n\n19) ZackStack: Build G1 Zackstack\n\n20) nycavri: Discover Y1 Nycavri B1 May\n\n21) ZackStack: Discover G1 Zackstack B3 June\n\n22) nycavri: Discover Y1 May B3 Mercury\n\tnycavri: Funny man . . .\n\n23) ZackStack: Trade Y1 R1 Zackstack\n\n24) nycavri: Build G1 Nycavri\n\n25) ZackStack: Build G2 June\n\n26) nycavri: Discover G1 Nycavri Y1 Taylor\n\n27) ZackStack: Trade G2 Y2 June\n\n28) nycavri: Build G2 Nycavri\n\n29) ZackStack: Sacrifice Y2 June\nMove G1 June Taylor\nMove G1 Taylor Nycavri\n\tZackStack: Either you lured me in with the &quot;extrodinarily ordinary&quot; comment and I&#39;m in trouble... or you missed this...\n\n30) nycavri: Trade G2 R2 Nycavri\n\n31) ZackStack: Build G2 Nycavri\n\tnycavri: I saw that, but didn&#39;t I also have the counter (this move) set up . . . ?\n\n32) nycavri: Trade G3 Y3 Nycavri\n\tZackStack: Very true.  I think I thought I had more greens clustered around my Homeworld :-)\n\n33) ZackStack: Sacrifice R1 Zackstack\nAttack R2 Nycavri\n\n34) nycavri: Move G1 Taylor Mercury\n\n35) ZackStack: Trade Y3 B3 Zackstack\n\n36) nycavri: Build G2 Mercury\n\tZackStack: Remember that maniacal laughing from earlier? :-)  You&#39;ll have to school me in pikemen when we&#39;re done with this.  Some practice as the tournament begins wouldn&#39;t hurt!\n\n37) ZackStack: Sacrifice B3 Zackstack\nTrade G1 Y1 Nycavri\nTrade G2 Y2 Nycavri\nTrade R2 Y2 Nycavri\nCatastrophe Nycavri Yellow\n\tZackStack: Thanks for the game!  That&#39;s one of the emptier end game boards I&#39;ve seen...\n\n\nHomeworlds Online (SDG# 14412)\nStarted: 2009.10.21, Ended: 2010.1.23\nParticipants: face (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B2 Y1 G3\n\n2) face: Homeworld R3 B2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) face: Build G1 Face\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) face: Trade G3 Y3 Face\n\n7) Mandrel: Build G1 Mandrel\n\n8) face: Build G1 Face\n\n9) Mandrel: Discover G1 Mandrel Y3 Awesome\n\n10) face: Build G2 Face\n\n11) Mandrel: Build G2 Mandrel\n\n12) face: Trade G1 R1 Face\n\n13) Mandrel: Trade G2 R2 Mandrel\n\n14) face: Discover G2 Face B1 Tank\n\n15) Mandrel: Build G1 Awesome\n\n16) face: Build G2 Face\n\n17) Mandrel: Build G2 Mandrel\n\n18) face: Build G3 Tank\n\n19) Mandrel: Trade G2 Y2 Mandrel\n\n20) face: Trade G3 Y3 Tank\n\n21) Mandrel: Move Y1 Mandrel Awesome\n\n22) face: Move R1 Face Tank\n\n23) Mandrel: Discover G1 Awesome B1 Honour\n\n24) face: Build Y1 Tank\n\n25) Mandrel: Move G1 Awesome Honour\n\n26) face: Discover G2 Face R1 Blitz\n\n27) Mandrel: Build G2 Mandrel\n\n28) face: Build G3 Blitz\n\n29) Mandrel: Trade G2 B2 Mandrel\n\n30) face: Discover Y1 Tank G3 Plaster\n\n31) Mandrel: Move Y2 Mandrel Plaster\n\n32) face: Build Y2 Tank\n\n33) Mandrel: Move Y1 Awesome Tank\n\n34) face: Discover Y3 Tank R3 Smash\n\n35) Mandrel: Build Y2 Plaster\n\n36) face: Attack Y1 Tank\n\n37) Mandrel: Build G2 Mandrel\n\n38) face: Sacrifice G3 Blitz\nBuild G3 Blitz\nBuild Y3 Smash\nBuild R1 Tank\n\n39) Mandrel: Move G2 Mandrel Plaster\n\n40) face: Discover Y1 Tank R3 Waste\n\n41) Mandrel: Move G2 Plaster Blitz\n\n42) face: Sacrifice G2 Blitz\nBuild G2 Tank\nPass\n\n43) Mandrel: Build R2 Mandrel\n\n44) face: Attack G2 Blitz\n\n45) Mandrel: Move R2 Mandrel Waste\n\n46) face: Move Y1 Plaster Mandrel\n\n47) Mandrel: Move Y2 Plaster Honour\n\n48) face: Move Y1 Waste Mandrel\n\n49) Mandrel: Build R2 Mandrel\n\n50) face: Move Y3 Smash Mandrel\nCatastrophe Mandrel Yellow\n\n51) Mandrel: Trade G3 Y3 Mandrel\n\n52) face: Move Y3 Smash Blitz\n\n53) Mandrel: Build Y1 Honour\n\n54) face: Discover R1 Tank B3 Intoxicate\n\n55) Mandrel: Build Y1 Plaster\n\n56) face: Sacrifice G3 Blitz\nBuild G3 Blitz\nBuild R3 Intoxicate\nBuild Y1 Tank\n\n57) Mandrel: Sacrifice Y2 Plaster\nMove Y1 Honour Face\nMove Y2 Honour Face\n\n58) face: Trade Y3 B3 Face\n\n59) Mandrel: Sacrifice B2 Mandrel\nTrade Y2 B2 Face\nTrade Y1 B1 Face\nCatastrophe Face Blue\n\n60) face: Move Y3 Blitz Face\n\n61) Mandrel: Sacrifice Y1 Plaster\nMove G1 Honour Mandrel\n\tface: haha i&#39;m an idiot... that was a very nice move.\n\n62) face: Build Y1 Face\n\n63) Mandrel: Move R2 Mandrel Face\n\tMandrel: Kinda came from nowhere, spot of luck!\n\n64) face: Attack R2 Face\n\n65) Mandrel: Sacrifice Y3 Mandrel\nMove R2 Mandrel Face\nMove R2 Waste Mandrel\nMove R2 Mandrel Face\nCatastrophe Face Red\n\tface: wow i royally screwed that one up... i have been sorely outplayed. good game.\n\n\tMandrel: Not sure how that happened really, think I just had a run of luck at the end there, good game!\n\nHomeworlds Online (SDG# 14123)\nStarted: 2009.10.22, Ended: 2009.12.13\nParticipants: face (S), MikeYarrum (N)\nWinner: face\n\n\nHomeworlds Online (SDG# 14352)\nStarted: 2009.10.22, Ended: 2009.11.14\nParticipants: TwoShort (S), face (N)\nWinner: TwoShort\n\n1) face: Homeworld R3 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) face: Build G1 Face\n\n4) TwoShort: Build G1 Twoshort\n\n5) face: Trade G3 Y3 Face\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) face: Build Y1 Face\n\n8) TwoShort: Build G1 Twoshort\n\n9) face: Trade Y1 R1 Face\n\n10) TwoShort: Build Y1 Twoshort\n\n11) face: Discover R1 Face Y1 Plaster\n\n12) TwoShort: Build Y2 Twoshort\n\n13) face: Build Y2 Face\n\n14) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n15) face: Move Y2 Face Plaster\n\n16) TwoShort: Build G1 Twoshort\n\n17) face: Build G2 Face\n\n18) TwoShort: Discover G1 Twoshort B2 Bonanza\n\n19) face: Move G2 Face Plaster\n\n20) TwoShort: Trade Y2 R2 Twoshort\n\n21) face: Build Y2 Face\n\n22) TwoShort: Build Y2 Grogar\n\n23) face: Discover Y2 Face B1 Trash\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G3 Twoshort\nBuild Y3 Twoshort\n\n25) face: Build Y3 Face\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bonanza\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n27) face: Sacrifice Y2 Trash\nMove G2 Plaster Grogar\nMove G2 Grogar Twoshort\nCatastrophe Twoshort Green\n\n28) TwoShort: Sacrifice Y2 Grogar\nMove G3 Bonanza Plaster\nMove G1 Bonanza Twoshort\n\n29) face: Sacrifice Y2 Plaster\nDiscover R1 Plaster G2 Buzz\nDiscover Y3 Face R1 Tank\n\n30) TwoShort: Discover Y1 Grogar G3 Gonzo\n\n31) face: Build Y2 Face\n\n32) TwoShort: Build G1 Plaster\n\n33) face: Build R2 Buzz\n\n34) TwoShort: Discover R2 Twoshort Y2 Yolonda\n\n35) face: Build R2 Buzz\n\n36) TwoShort: Sacrifice G3 Plaster\nBuild G2 Twoshort\nBuild G3 Bonanza\nBuild G3 Plaster\n\n37) face: Move Y3 Tank Yolonda\n\n38) TwoShort: Move R2 Yolonda Plaster\n\n39) face: Sacrifice Y3 Yolonda\nMove R2 Buzz Twoshort\nMove R2 Buzz Twoshort\nMove R1 Buzz Twoshort\nCatastrophe Twoshort Red\n\n40) TwoShort: Trade G3 R3 Bonanza\n\tface: my gut tells me that move puts me in too weak a position, but let&#39;s see.\n\n41) face: Trade Y2 B2 Face\n\tTwoShort: I agree with your gut :)  But I don&#39;t think you had a better option.\n\n42) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Bonanza Plaster\nMove R3 Plaster Face\nMove G3 Plaster Face\n\n43) face: Build G2 Face\n\tface: very nice.\n\n44) TwoShort: Sacrifice R3 Face\nAttack Y3 Face\nAttack G2 Face\nAttack B2 Face\n\n45) face: Build G3 Face\n\n46) TwoShort: Pass\nCatastrophe Face Green\n\tTwoShort: Thanks for the game!\n\tface: going out on my terms!\n\tface: ha. was going to cause a green catastrophe in face, but it says &quot;You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.&quot;\n\n\tTwoShort: Don&#39;t worry, I&#39;ll help you out :)\n\nHomeworlds Online (SDG# 14386)\nStarted: 2009.10.22, Ended: 2009.11.11\nParticipants: ZackStack (S), face (N)\nWinner: ZackStack\n\n1) face: Homeworld R3 B2 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey Face!  Thanks for the game.  Have a good one!\n\n3) face: Build G1 Face\n\n4) ZackStack: Build G1 Zackstack\n\n5) face: Trade G3 Y3 Face\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) face: Build Y1 Face\n\n8) ZackStack: Build G1 Zackstack\n\n9) face: Build G1 Face\n\n10) ZackStack: Discover G1 Zackstack B3 Crush\n\n11) face: Build G2 Face\n\n12) ZackStack: Build G2 Zackstack\n\n13) face: Trade G1 R1 Face\n\n14) ZackStack: Build Y1 Zackstack\n\n15) face: Discover Y1 Face G1 Trash\n\n16) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Zackstack\nBuild G3 Crush\n\n17) face: Build G3 Face\n\n18) ZackStack: Trade G2 R2 Zackstack\n\n19) face: Move G3 Face Trash\n\n20) ZackStack: Move R2 Zackstack Crush\n\n21) face: Move R1 Face Trash\n\n22) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Crush\nBuild G3 Zackstack\nBuild Y2 Zackstack\n\n23) face: Trade G2 B2 Face\n\n24) ZackStack: Trade G2 Y2 Crush\n\n25) face: Discover G3 Trash Y3 Plaster\n\n26) ZackStack: Discover G3 Crush B1 Stomp\n\n27) face: Discover Y1 Trash R3 Buzz\n\n28) ZackStack: Move Y2 Zackstack Buzz\n\n29) face: Discover Y1 Buzz B2 Waste\n\n30) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Stomp\nBuild G2 Crush\nBuild G3 Zackstack\n\n31) face: Move G3 Plaster Waste\n\n32) ZackStack: Move R2 Crush Trash\n\n33) face: Trade B2 R2 Face\n\n34) ZackStack: Attack R1 Trash\n\n35) face: Discover R2 Face R1 Plaster\n\n36) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Crush\nBuild Y3 Buzz\n\n37) face: Build Y3 Waste\n\n38) ZackStack: Move Y3 Buzz Plaster\n\n39) face: Sacrifice Y1 Waste\nMove R2 Plaster Waste\n\n40) ZackStack: Move G1 Crush Plaster\n\n41) face: Build Y1 Face\n\n42) ZackStack: Move Y2 Crush Trash\n\n43) face: Discover Y1 Face R1 Tank\n\n44) ZackStack: Trade G3 R3 Stomp\n\n45) face: Build G3 Waste\n\n46) ZackStack: Sacrifice Y3 Plaster\nMove R3 Stomp Face\nMove R2 Trash Face\nMove R1 Trash Face\nCatastrophe Face Red\n\tZackStack: You just had to make me do this the hard way didn&#39;t you? :-)\n\n47) face: Sacrifice G3 Waste\nBuild G3 Waste\nBuild Y3 Tank\nBuild R1 Waste\n\tface: i do my best.\n\n48) ZackStack: Trade Y1 B1 Zackstack\n\n49) face: Move G3 Waste Plaster\n\n50) ZackStack: Move B1 Zackstack Buzz\n\n51) face: Move G3 Waste Buzz\n\n52) ZackStack: Sacrifice Y2 Buzz\nMove B1 Buzz Trash\nMove G1 Plaster Face\n\n53) face: Move R2 Waste Trash\n\n54) ZackStack: Sacrifice G2 Zackstack\nBuild B2 Trash\nBuild B3 Trash\n\tZackStack: I knew letting you get that large advantage was going to be ugly :-)\n\n55) face: Sacrifice G3 Buzz\nBuild G2 Plaster\nBuild R2 Waste\nBuild R3 Trash\n\tface: maybe. but you&#39;re in a good enough position that you can afford a mistake or two.\n\n56) ZackStack: Sacrifice Y2 Trash\nMove B1 Trash Face\nMove B2 Trash Face\n\tZackStack: I do try to keep the pressure on! :-)  Though you&#39;re doing a good job of that yourself!\n\n57) face: Sacrifice Y3 Tank\nMove G3 Plaster Face\nMove G2 Plaster Face\nDiscover R1 Waste B3 Goodgame\nCatastrophe Face Green\n\tZackStack: Eek!\n\n58) ZackStack: Sacrifice Y1 Zackstack\nMove B3 Trash Face\nCatastrophe Face Blue\n\tface: was the &quot;eek&quot; just for show? i&#39;m not sure if i can get out of this... should have build another r3 instead of the g2. may have to think about this one for a bit.\n\tZackStack: It was my initial reaction to the large red ships popping up all over my space...  As you say, I might have found my one way out :-)\n\n\tface: after staring at the board off and on for a couple of days, i figure you got me good. very well played. care to play another? i&#39;ll try to be more competative.\n\tZackStack: Dont sell yourself short!  You played the ship supply part of the game better than I did... I just got after your Homeworld a little sooner.  I&#39;m looking forward to the rematch!\n\nHomeworlds Online (SDG# 14423)\nStarted: 2009.10.24, Ended: 2009.10.26\nParticipants: TwoShort (S), winner (N)\nWinner: TwoShort\n\n1) winner: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) winner: Build Y1 Winner\n\n4) TwoShort: Build G1 Twoshort\n\n5) winner: Build Y1 Winner\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) winner: Trade Y1 G1 Winner\n\n8) TwoShort: Build G1 Twoshort\n\n9) winner: Build G2 Winner\n\n10) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n11) winner: Discover Y3 Winner B3 Hello\n\n12) TwoShort: Build G2 Twoshort\n\n13) winner: Trade Y3 R3 Hello\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) winner: Build G3 Winner\n\n16) TwoShort: Trade G2 R2 Twoshort\nCatastrophe Winner Green\n\n17) winner: Trade R3 G3 Hello\n\n18) TwoShort: Move G3 Twoshort Winner\n\tTwoShort: Not sure what happened there - I was going to suggest you undo your move, but since you redid it I guess you can&#39;t...  I&#39;ll be happy to play again if you like, but in any case, thanks for the game...\n\n\nHomeworlds Online (SDG# 14457)\nVariants: &quot;Unrated&quot;\nStarted: 2009.10.30, Ended: 2009.12.13\nParticipants: captncavern (S), supergnouf (N)\nWinner: supergnouf\n\n1) supergnouf: Homeworld B3 G1 Y3\n\n2) captncavern: Homeworld B3 G2 Y3\n\n3) supergnouf: Build Y1 Supergnouf\n\tcaptncavern: Ouverture classique :)\n\n4) captncavern: Build Y1 Captncavern\n\n5) supergnouf: Discover Y1 Supergnouf G2 Loki\n\n6) captncavern: Trade Y1 R1 Captncavern\n\n7) supergnouf: Build Y1 Supergnouf\n\n8) captncavern: Build R1 Captncavern\n\tsupergnouf: c&#39;est pas exactement les memes regles que celles qu&#39;on utilisait...\n\tcaptncavern: Ah bon ? C&#39;est quoi les diff&eacute;rences ?\n\n9) supergnouf: Trade Y1 R1 Supergnouf\n\tsupergnouf: essaie de fabriqu&eacute; un vaisseau vert ou bleu\n\n10) captncavern: Discover R1 Captncavern Y1 Kaori\n\tcaptncavern: Ah oui, en fait, c&#39;est &eacute;crit dans les r&egrave;gles. Bon, ben, on va faire comme &ccedil;a, alors.\n\n11) supergnouf: Build R2 Supergnouf\n\tcaptncavern: D&#39;ailleurs, je viens de v&eacute;rifier, c&#39;&eacute;tait &eacute;crit comme &ccedil;a aussi dans 3HOUSE. Pas la premi&egrave;re erreur de lecture de r&egrave;gles que j&#39;aurai faite... ni la derni&egrave;re.\n\n12) captncavern: Build R2 Captncavern\n\n13) supergnouf: Move R2 Supergnouf Loki\n\n14) captncavern: Trade R1 G1 Captncavern\n\n15) supergnouf: Build R1 Supergnouf\n\n16) captncavern: Move G1 Captncavern Kaori\n\n17) supergnouf: Move R2 Loki Kaori\n\n18) captncavern: Build R2 Kaori\n\n19) supergnouf: Build R3 Supergnouf\n\n20) captncavern: Build R3 Captncavern\n\n21) supergnouf: Move R3 Supergnouf Loki\n\tcaptncavern: T&#39;es &agrave; Dampierre, l&agrave; ?\n\n22) captncavern: Discover G1 Kaori Y2 Kiiro\n\n23) supergnouf: Attack R2 Kaori\n\tsupergnouf: ouaip, pour le week end, mais j&#39;ai pas mal de boulot &agrave; faire pour lundi...\n\n24) captncavern: Move R1 Kaori Kiiro\n\n25) supergnouf: Build R3 Loki\n\tcaptncavern: Et tu perds du temps &agrave; jouer ! :p\r\nMoi aussi, je bosse, aujourd&#39;hui... Trop de boulot en ce moment.\n\n26) captncavern: Build G1 Kiiro\n\n27) supergnouf: Move R2 Kaori Kiiro\n\n28) captncavern: Move R3 Captncavern Kaori\n\n29) supergnouf: Sacrifice R2 Kaori\nAttack G1 Kiiro\nAttack R1 Kiiro\n\n30) captncavern: Move R3 Kaori Kiiro\n\n31) supergnouf: Move R1 Supergnouf Kiiro\nCatastrophe Kiiro R\n\n32) captncavern: Build Y1 Captncavern\n\n33) supergnouf: Sacrifice R1 Supergnouf\nAttack G1 Kiiro\n\n34) captncavern: Build R1 Captncavern\n\n35) supergnouf: Discover R3 Loki Y1 Fall\n\n36) captncavern: Discover Y1 Captncavern B1 Alaide\n\tcaptncavern: Pfff... Je suis mal barr&eacute;, moi !\n\n37) supergnouf: Build Y2 Loki\n\n38) captncavern: Discover Y1 Alaide B2 Coucou\n\tsupergnouf: je dois dire qu&#39;a certain moment, je n&#39;ai pas compris tes choix, du coup je respire un peu parce qu&#39;&agrave; un moment, je le sentais pas :)\n\n39) supergnouf: Move G1 Kiiro Supergnouf\n\n40) captncavern: Move Y1 Coucou Supergnouf\n\n41) supergnouf: Build R1 Loki\n\tcaptncavern: T&#39;as retrouv&eacute; Internet, &ccedil;a y est ?\n\n42) captncavern: Build Y2 Supergnouf\n\tsupergnouf: ouaip, c&#39;est mieux du coup chez moi, mais il y a encore pas mal de boulot avant que ce soit agr&eacute;able &agrave; vivre...\n\n43) supergnouf: Build Y3 Loki\n\n44) captncavern: Trade R2 B2 Captncavern\n\tsupergnouf: petit con va :)\r\nqu&#39;est ce que je vais bien pouvoir faire de ce suicidaire...\n\n45) supergnouf: Sacrifice Y2 Loki\nMove R3 Loki Supergnouf\nDiscover G1 Supergnouf Y2 Omely\n\n46) captncavern: Sacrifice B2 Captncavern\nTrade Y2 B2 Supergnouf\nTrade Y1 B1 Supergnouf\n\tcaptncavern: Ah, ben &ccedil;a... &Agrave; toi de voir, mais il se multiplie, &agrave; ta place, j&#39;agirais vite ;)\n\tsupergnouf: je sais je sais, mais je vais pas sacrifier un trois rouge pour un 1 jaune...\n\tsupergnouf: aller, il faut savoir prendre des risques dans la vie\n\n47) supergnouf: Sacrifice R3 Supergnouf\nAttack B1 Supergnouf\nAttack B2 Supergnouf\nPass\n\n48) captncavern: Build R1 Captncavern\n\tcaptncavern: Y a du monde &agrave; Loki, dis-moi :)\n\tsupergnouf: c&#39;est quoi ca ? des menaces :)\r\nben ouai, mais la j&#39;ai trop de trucs &agrave; faire et qu&#39;un coup &agrave; jouer alors...\n\n49) supergnouf: Discover G1 Kiiro Y1 Mer\n\n50) captncavern: Build Y2 Captncavern\n\tsupergnouf: mouai, pas mal comme tactique, mais je suis pas sur que ce soit r&eacute;element &agrave; ton avantage\n\n51) supergnouf: Move R1 Loki Mer\n\n52) captncavern: Discover R1 Captncavern B1 Hop\n\tcaptncavern: Fallait bien que je tente quelque chose, et dans ma position, je n&#39;avais pas trop le choix :(\n\n53) supergnouf: Move Y3 Loki Hop\n\n54) captncavern: Build R2 Captncavern\n\n55) supergnouf: Build R2 Mer\n\n56) captncavern: Discover R2 Captncavern B1 Aie\n\n57) supergnouf: Sacrifice R1 Mer\nAttack R1 Hop\n\n58) captncavern: Trade R2 B2 Aie\n\n59) supergnouf: Discover Y1 Loki R1 Mad\n\n60) captncavern: Sacrifice Y2 Captncavern\nMove B2 Aie Omely\nMove B2 Omely Supergnouf\nCatastrophe Supergnouf B\n\n61) supergnouf: Sacrifice G1 Omely\nBuild Y2 Mad\n\n62) captncavern: Build R2 Captncavern\n\n63) supergnouf: Build Y2 Supergnouf\n\tcaptncavern: Bon, je tente un truc, mais ce sera surement pas &ccedil;a qui va me sauver\n\n64) captncavern: Move R1 Captncavern Supergnouf\n\n65) supergnouf: Sacrifice Y3 Hop\nMove Y1 Mad Captncavern\nMove Y2 Mad Captncavern\nMove Y2 Supergnouf Captncavern\nCatastrophe Captncavern Y\n\tcaptncavern: J&#39;avais oubli&eacute; de d&eacute;clarer la catastrophe :)\n\n66) captncavern: Build R1 Captncavern\n\n67) supergnouf: Move R3 Fall Captncavern\n\n68) captncavern: Trade R1 Y1 Captncavern\n\tcaptncavern: Ca sent tr&egrave;s mauvais pour moi !\n\n69) supergnouf: Sacrifice R2 Mer\nAttack R2 Captncavern\nAttack Y1 Captncavern\n\tsupergnouf: fait chier, je peux pas faire de troisieme ordre apr&egrave;s une catastrophe\n\n\tcaptncavern: Bah, les carottes sont cuites !\n\tcaptncavern: Si t&#39;as du temps &agrave; tuer, Grim Reaper est bien chouette, comme jeu\n\tcaptncavern: Ah ah ! Et t&#39;as quand m&ecirc;me failli faire la boulette :)\n\nHomeworlds Online (SDG# 14510)\nStarted: 2009.11.3, Ended: 2010.1.12\nParticipants: ZackStack (S), agentofchaos (N)\nWinner: ZackStack\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) ZackStack: Homeworld B3 R1 G3\n\tagentofchaos: Hi again, enjoy the game. \n\tZackStack: Hey Agent!  Thanks for the challenge.  Have fun!\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) ZackStack: Build G1 Zackstack\n\tagentofchaos: Sure will! :)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ZackStack: Build G1 Zackstack\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) ZackStack: Trade G1 Y1 Zackstack\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) ZackStack: Discover G1 Zackstack B2 Gooey\n\n11) agentofchaos: Trade Y1 G1 Agentofchaos\n\n12) ZackStack: Build G1 Zackstack\n\n13) agentofchaos: Build G2 Agentofchaos\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Gooey\nBuild G2 Zackstack\nBuild G3 Zackstack\n\n15) agentofchaos: Discover G2 Agentofchaos Y3 Despero\n\n16) ZackStack: Trade G2 Y2 Gooey\n\n17) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Despero Gooey\nMove G2 Gooey Zackstack\nCatastrophe Zackstack G\n\n18) ZackStack: Build G1 Gooey\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\tZackStack: Oooo... That&#39;s really bad.  I havent made that particular mistake before :-)\n\n20) ZackStack: Move G1 Gooey Zackstack\n\n21) agentofchaos: Build R2 Agentofchaos\n\n22) ZackStack: Build Y1 Gooey\n\n23) agentofchaos: Discover R2 Agentofchaos Y3 Phreniaville\n\tagentofchaos: i thought it seemed unlike you :-)\n\n24) ZackStack: Trade Y2 R2 Gooey\n\n25) agentofchaos: Build Y2 Agentofchaos\n\n26) ZackStack: Build Y2 Zackstack\n\n27) agentofchaos: Build G1 Agentofchaos\n\n28) ZackStack: Build Y2 Gooey\n\n29) agentofchaos: Discover Y1 Agentofchaos G3 Aporia\n\n30) ZackStack: Discover Y1 Zackstack G2 Gummy\n\tZackStack: So... am I only still alive out of kindness over there? :-)\n\n31) agentofchaos: Build Y3 Agentofchaos\n\n32) ZackStack: Build Y3 Zackstack\n\n33) agentofchaos: Move R1 Agentofchaos Aporia\n\n34) ZackStack: Discover Y2 Gooey G3 Slimey\n\n35) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R2 Aporia\n\n36) ZackStack: Build R3 Gooey\n\tagentofchaos: Sorry to keep you waiting, the site was offline for a while I didn&#39;t know it was back up. \n\n37) agentofchaos: Move R2 Aporia Gummy\n\n38) ZackStack: Move Y1 Gummy Slimey\n\tZackStack: No problem!  I just figured you were on holiday.  \n\n39) agentofchaos: Trade Y2 G2 Agentofchaos\n\n40) ZackStack: Move R3 Gooey Aporia\n\n41) agentofchaos: Move Y1 Aporia Gummy\n\n42) ZackStack: Build R3 Gooey\n\n43) agentofchaos: Build R3 Gummy\n\n44) ZackStack: Attack R1 Aporia\n\n45) agentofchaos: Build Y2 Gummy\n\n46) ZackStack: Sacrifice Y2 Slimey\nMove R1 Aporia Agentofchaos\nMove R3 Aporia Agentofchaos\n\n47) agentofchaos: Sacrifice R2 Phreniaville\nAttack R3 Agentofchaos\nAttack R1 Agentofchaos\n\n48) ZackStack: Sacrifice Y2 Zackstack\nMove R2 Gooey Slimey\nMove R2 Slimey Agentofchaos\nCatastrophe Agentofchaos Red\n\tZackStack: Might as well go out with a bang :-)\n\n49) agentofchaos: Trade G2 R2 Agentofchaos\n\tagentofchaos: indeed...\n\n50) ZackStack: Build Y2 Gooey\n\n51) agentofchaos: Build R1 Agentofchaos\n\n52) ZackStack: Build G1 Zackstack\n\n53) agentofchaos: Sacrifice Y2 Gummy\nMove R1 Agentofchaos Zackstack\nMove R2 Gummy Zackstack\n\n54) ZackStack: Build Y2 Slimey\n\n55) agentofchaos: Build Y2 Gummy\n\n56) ZackStack: Trade Y1 B1 Gooey\n\n57) agentofchaos: Build R1 Gummy\n\n58) ZackStack: Move B1 Gooey Slimey\n\n59) agentofchaos: Move R3 Gummy Slimey\n\n60) ZackStack: Sacrifice Y2 Slimey\nDiscover B1 Slimey Y1 Binky\nMove Y1 Slimey Binky\n\n61) agentofchaos: Build R2 Slimey\n\n62) ZackStack: Build R3 Gooey\n\n63) agentofchaos: Move R1 Gummy Zackstack\nCatastrophe Zackstack R\n\n64) ZackStack: Trade G1 B1 Zackstack\n\n65) agentofchaos: Build R1 Agentofchaos\n\n66) ZackStack: Build B1 Zackstack\n\n\tZackStack: Thanks for the game agent!  I still can&#39;t beleive I came back from that early blunder...\n\nHomeworlds Online (SDG# 14436)\nStarted: 2009.11.4, Ended: 2009.11.5\nParticipants: shmil1 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) shmil1: Homeworld B3 G1 R3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy\n\n4) shmil1: Build R1 Shmil1\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) shmil1: Trade R1 Y1 Shmil1\n\n7) TwoShort: Build G1 Twoshort\n\n8) shmil1: Discover Y1 Shmil1 G2 Shmil2\n\n9) TwoShort: Build G1 Twoshort\n\n10) shmil1: Trade R3 G3 Shmil1\n\n11) TwoShort: Discover G1 Twoshort Y2 Threat\n\n12) shmil1: Build G2 Shmil1\n\n13) TwoShort: Move G1 Threat Shmil1\nCatastrophe Shmil1 Green\n\n\nHomeworlds Online (SDG# 14520)\nVariants: &quot;Hard time&quot;\nStarted: 2009.11.4, Ended: 2009.11.11\nParticipants: shmil1 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R3 B2 G3\n\n2) shmil1: Homeworld B3 G3 Y3 *\n\tagentofchaos: Hi, enjoy the game\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) shmil1: Build Y1 Shmil1\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) shmil1: Trade Y3 R3 Shmil1\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) shmil1: Build R1 Shmil1\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) shmil1: Trade R1 G1 Shmil1\n\n11) agentofchaos: Trade G1 R1 Agentofchaos\n\n12) shmil1: Build R1 Shmil1\n\n13) agentofchaos: Discover R1 Agentofchaos Y1 Terrorworld\n\n14) shmil1: Build Y2 Shmil1\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) shmil1: Move R3 Shmil1 Terrorworld\n\n17) agentofchaos: Move R1 Terrorworld Agentofchaos\n\n18) shmil1: Move R3 Terrorworld Agentofchaos\n\n19) agentofchaos: Attack R3 Agentofchaos\n\n20) shmil1: Sacrifice Y2 Shmil1\nDiscover R1 Shmil1 G1 Giborum\nMove R1 Giborum Agentofchaos\nCatastrophe Agentofchaos Red\n\n21) agentofchaos: Move G3 Agentofchaos Shmil1\n\n22) shmil1: Trade G1 R1 Shmil1\n\n23) agentofchaos: Trade Y2 R2 Agentofchaos\n\n24) shmil1: Trade R1 B1 Shmil1\n\n25) agentofchaos: Sacrifice R2 Agentofchaos\nAttack B1 Shmil1\nAttack Y1 Shmil1\n\tagentofchaos: Thanks for the game :)\n\n\nHomeworlds Online (SDG# 14015)\nVariants: &quot;Hard time&quot;\nStarted: 2009.11.11, Ended: 2010.3.25\nParticipants: shmil1 (S), MadWuher (W), agentofchaos (N), alexcobo (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\tMadWuher: Have a good game. (First time playing in months so I may be a bit rusty)\n\n2) alexcobo: Homeworld G3 B2 R3\n\tagentofchaos: Have fun everyone!\n\n3) shmil1: Homeworld B2 R1 G3\n\n4) MadWuher: H B1 R3 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) alexcobo: Build R1 Alexcobo\n\n7) shmil1: Build G1 Shmil1\n\n8) MadWuher: B G1 Madwuher\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) alexcobo: Trade R1 Y1 Alexcobo\n\n11) shmil1: Build G1 Shmil1\n\n12) MadWuher: Trade G1 Y1 Madwuher\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) alexcobo: Build Y1 Alexcobo\n\n15) MadWuher: Build G1 Madwuher\n\n16) agentofchaos: Discover Y1 Agentofchaos G3 Krome\n\n17) alexcobo: Trade Y1 G1 Alexcobo\n\n18) MadWuher: Build G2 Madwuher\n\n19) agentofchaos: Build G2 Agentofchaos\n\n20) alexcobo: Build G2 Alexcobo\n\n21) MadWuher: Discover G1 Madwuher Y2 Edora\n\n22) agentofchaos: Trade G2 Y2 Agentofchaos\n\n23) alexcobo: Discover G2 Alexcobo R1 Hot\n\n24) MadWuher: Build G2 Edora\n\n25) agentofchaos: Build G2 Agentofchaos\n\n26) alexcobo: Build G2 Hot\n\n27) MadWuher: Discover G1 Edora B3 Bologna\n\n28) agentofchaos: Trade G1 R1 Agentofchaos\n\n29) alexcobo: Build R1 Alexcobo\n\n30) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Bologna\nBuild G3 Madwuher\nBuild Y1 Madwuher\n\n31) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\nBuild G3 Agentofchaos\n\n32) alexcobo: Build Y2 Alexcobo\n\n33) MadWuher: Discover Y1 Madwuher B2 Camelot\n\n34) agentofchaos: Trade Y2 B2 Agentofchaos\n\n35) alexcobo: Trade Y1 B1 Alexcobo\n\n36) MadWuher: Trade G1 B1 Bologna\n\n37) agentofchaos: Move B2 Agentofchaos Krome\n\n38) alexcobo: Build Y1 Alexcobo\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Edora\nBuild G3 Madwuher\nBuild Y2 Camelot\n\n40) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Krome\nBuild R2 Agentofchaos\nBuild G3 Agentofchaos\n\n41) alexcobo: Build Y3 Alexcobo\n\n42) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Camelot\n\n43) agentofchaos: Move Y1 Krome Camelot\nCatastrophe Camelot Y\n\n44) alexcobo: Sacrifice Y2 Alexcobo\nMove G2 Hot Bologna\nMove G2 Bologna Shmil1\n\n45) MadWuher: Sacrifice B1 Bologna\nTrade G2 R2 Edora\nCatastrophe Shmil1 G\n\n46) agentofchaos: Move R1 Agentofchaos Krome\n\n47) alexcobo: Build G1 Hot\n\n48) MadWuher: Trade Y1 B1 Madwuher\n\n49) agentofchaos: Build B1 Krome\n\n50) alexcobo: Move Y3 Alexcobo Hot\n\n51) MadWuher: Move B1 Madwuher Edora\n\n52) agentofchaos: Move R2 Agentofchaos Bologna\n\n53) alexcobo: Build Y1 Hot\n\n54) MadWuher: Sacrifice G1 Bologna\nBuild Y1 Madwuher\n\n55) agentofchaos: Trade R2 Y2 Bologna\n\n56) alexcobo: Move B1 Alexcobo Hot\n\n57) MadWuher: Discover G2 Madwuher B2 Camelot\n\n58) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Krome\nBuild Y2 Bologna\n\n59) alexcobo: Build Y3 Alexcobo\n\n60) MadWuher: Move Y3 Madwuher Camelot\n\n61) agentofchaos: Sacrifice Y2 Bologna\nDiscover B1 Krome G2 Klaatu\nDiscover B2 Krome G2 Plasmor\n\n62) alexcobo: Build B1 Hot\n\n63) MadWuher: Build G1 Madwuher\n\n64) agentofchaos: Build B2 Klaatu\n\n65) alexcobo: Move Y3 Hot Edora\n\n66) MadWuher: Trade R2 Y2 Edora\n\n67) agentofchaos: Move Y1 Krome Edora\nCatastrophe Edora Y\n\n68) alexcobo: Move R1 Alexcobo Hot\n\n69) MadWuher: Trade G2 R2 Camelot\n\n70) agentofchaos: Build G1 Agentofchaos\n\n71) alexcobo: Discover G2 Hot R2 Heat\n\tMadWuher: =) Thanks agentofchaos..... That&#39;s what I had planned for the system too. \n\n72) MadWuher: Move G1 Madwuher Camelot\n\tagentofchaos: Don&#39;t tell me I&#39;m doing you&#39;re dirty work for you!?\n\n73) agentofchaos: Discover R1 Krome Y2 Dagon\n\n74) alexcobo: Build G1 Heat\n\n75) MadWuher: Build G2 Madwuher\n\n76) agentofchaos: Sacrifice Y2 Bologna\nMove B1 Klaatu Madwuher\nMove B2 Klaatu Madwuher\n\n77) alexcobo: Sacrifice Y3 Alexcobo\nMove G1 Hot Camelot\nMove G1 Camelot Madwuher\nMove G1 Heat Madwuher\nCatastrophe Madwuher G\n\n78) MadWuher: Move Y3 Camelot Madwuher\n\n79) agentofchaos: Sacrifice B2 Plasmor\nTrade B1 Y1 Madwuher\nTrade B2 Y2 Madwuher\nCatastrophe Madwuher Y\n\n80) alexcobo: Build G1 Heat\n\n81) agentofchaos: Move Y2 Krome Camelot\n\n82) alexcobo: Move G1 Alexcobo Hot\n\tagentofchaos: Sorry Madwuher, thanks for playing with us :-)\n\n83) agentofchaos: Sacrifice R1 Dagon\nAttack R2W Camelot\n\tMadWuher: not a prob....... thanks for the game.......\n\n84) alexcobo: Build Y1 Alexcobo\n\n85) agentofchaos: Attack G1W Camelot\n\n86) alexcobo: Build R1 Alexcobo\n\n87) agentofchaos: Build R1 Camelot\n\n88) alexcobo: Build R2 Hot\n\n89) agentofchaos: Move R1 Camelot Hot\nCatastrophe Hot R\n\n90) alexcobo: Discover Y1 Alexcobo G1 Waypoint\n\n91) agentofchaos: Build R1 Camelot\n\n92) alexcobo: Build Y1 Waypoint\n\n93) agentofchaos: Move R2 Camelot Waypoint\n\n94) alexcobo: Sacrifice Y1 Waypoint\nMove Y1 Waypoint Heat\n\n95) agentofchaos: Build R1 Waypoint\n\n96) alexcobo: Build Y1 Heat\n\n97) agentofchaos: Build R1 Camelot\n\n98) alexcobo: Build Y1 Alexcobo\n\n99) agentofchaos: Build Y2 Camelot\n\n100) alexcobo: Build Y2 Heat\n\n101) agentofchaos: Sacrifice Y2 Camelot\nDiscover Y1 Agentofchaos R3 Thanax\nMove Y1 Thanax Heat\nCatastrophe Heat Y\n\n102) alexcobo: Trade Y1 G1 Alexcobo\n\n103) agentofchaos: Build R2 Camelot\n\n104) alexcobo: Build Y1 Alexcobo\n\n105) agentofchaos: Trade R2 Y2 Camelot\n\n106) alexcobo: Build G2 Heat\n\n107) agentofchaos: Sacrifice Y2 Camelot\nMove R1 Waypoint Alexcobo\nMove R2 Waypoint Alexcobo\nCatastrophe Alexcobo R\n\n108) alexcobo: Build G1 Alexcobo\n\n109) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G1 Camelot Y1 Dagon\nMove G1 Dagon Alexcobo\nCatastrophe Alexcobo G\n\n110) agentofchaos: Discover Y2 Camelot G3 Dagon\n\n\tagentofchaos: Thanks for the game!\n\nHomeworlds Online (SDG# 14438)\nVariants: &quot;Sinister&quot;\nStarted: 2009.11.11, Ended: 2010.9.17\nParticipants: agentofchaos (S), shmil1 (W), alexcobo (N), Mandrel (E)\nWinner: agentofchaos\n\n1) alexcobo: Homeworld G3 B2 Y3\n\tagentofchaos: Hi everyone, enjoy the game :)\n\talexcobo: Hello. Good luck, everyone.\n\n2) Mandrel: Homeworld Y1 B3 G3\n\tMandrel: Oops, sorry. Have a good game!\n\n3) agentofchaos: Homeworld R1 B2 G3\n\n4) shmil1: Homeworld R1 B2 G3\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Mandrel: Build G1 Mandrel\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) shmil1: Build G1 Shmil1\n\n9) alexcobo: Build Y1 Alexcobo\n\n10) Mandrel: Build G1 Mandrel\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) shmil1: Trade G1 B1 Shmil1\n\n13) alexcobo: Trade Y1 R1 Alexcobo\n\n14) Mandrel: Trade G1 Y1 Mandrel\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) shmil1: Build B1 Shmil1\n\n17) alexcobo: Trade Y1 G1 Alexcobo\n\n18) Mandrel: Discover G1 Mandrel Y2 Party\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\n20) shmil1: Trade B1 Y1 Shmil1\n\n21) alexcobo: Build Y1 Alexcobo\n\n22) Mandrel: Build G1 Party\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) shmil1: Build Y2 Shmil1\n\n25) alexcobo: Trade Y1 G1 Alexcobo\n\n26) Mandrel: Build G1 Mandrel\n\n27) agentofchaos: Build G2 Agentofchaos\n\n28) shmil1: Build G2 Shmil1\n\n29) alexcobo: Build G2 Alexcobo\n\n30) Mandrel: Trade G1 B1 Mandrel\n\n31) agentofchaos: Discover G2 Agentofchaos Y3 Kakrafoon\n\n32) shmil1: Build B1 Shmil1\n\n33) alexcobo: Discover G2 Alexcobo B1 Trade\n\n34) Mandrel: Move B1 Mandrel Party\n\n35) agentofchaos: Build G1 Agentofchaos\n\n36) shmil1: Move G2 Shmil1 Kakrafoon\n\n37) alexcobo: Build G2 Trade\n\n38) Mandrel: Build G2 Mandrel\n\n39) agentofchaos: Sacrifice R1 Agentofchaos\nAttack G2W Kakrafoon\n\n40) shmil1: Build G3 Shmil1\n\n41) alexcobo: Build R1 Alexcobo\n\n42) Mandrel: Trade G2 R2 Mandrel\n\n43) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G2 Kakrafoon R1 Death\nMove G2 Death Alexcobo\nCatastrophe Alexcobo G\n\n44) shmil1: Move G3 Shmil1 Kakrafoon\n\tshmil1: move g3 shmil1 kakrafoon\n\n45) alexcobo: Trade G2 R2 Trade\n\n46) Mandrel: Discover G1 Party B3 Joy\n\n47) agentofchaos: Trade G1 R1 Agentofchaos\n\n48) shmil1: Sacrifice Y2 Shmil1\nMove B1 Shmil1 Kakrafoon\nMove B1 Shmil1 Kakrafoon\n\n49) alexcobo: Build R2 Trade\n\n50) Mandrel: Build R2 Mandrel\n\n51) agentofchaos: Trade Y1 B1 Agentofchaos\n\n52) shmil1: Move G3 Kakrafoon Alexcobo\n\n53) alexcobo: Attack G3W Alexcobo\n\n54) Mandrel: Build B2 Party\n\talexcobo: That was a nice gift. Not quite a Green Star, but it will work. Thank you very much.\n\n55) agentofchaos: Build G1 Agentofchaos\n\n56) shmil1: Trade B1 G1 Kakrafoon\n\n57) alexcobo: Build Y1 Alexcobo\n\n58) Mandrel: Move Y1 Mandrel Party\n\n59) agentofchaos: Trade G1 Y1 Agentofchaos\n\n60) shmil1: Build B1 Kakrafoon\n\n61) alexcobo: Trade R2 Y2 Trade\n\n62) Mandrel: Build G1 Mandrel\n\n63) agentofchaos: Sacrifice B1 Agentofchaos\nTrade G2 R2 Kakrafoon\n\n64) shmil1: Move B1 Kakrafoon Alexcobo\n\n65) alexcobo: Attack B1W Alexcobo\n\n66) Mandrel: Trade B2 G2 Party\n\n67) agentofchaos: Attack G1W Kakrafoon\n\n68) shmil1: Build Y2 Shmil1\n\n69) alexcobo: Sacrifice Y2 Trade\nMove R1 Alexcobo Mandrel\nMove R1 Alexcobo Mandrel\nCatastrophe Mandrel R\n\n70) Mandrel: Trade G1 R1 Mandrel\n\n71) agentofchaos: Attack B1W Kakrafoon\n\n72) shmil1: Build Y2 Shmil1\n\n73) alexcobo: Trade B1 R1 Alexcobo\n\n74) Mandrel: Build G1 Joy\n\n75) agentofchaos: Build Y2 Agentofchaos\n\n76) shmil1: Sacrifice Y2 Shmil1\nMove Y1 Shmil1 Joy\nMove Y1 Joy Alexcobo\n\n77) alexcobo: Attack Y1W Alexcobo\n\n78) Mandrel: Build R2 Mandrel\n\n79) agentofchaos: Build R2 Kakrafoon\n\n80) shmil1: Build Y2 Shmil1\n\n81) alexcobo: Build R2 Trade\n\n82) Mandrel: Move R2 Mandrel Party\n\n83) agentofchaos: Discover R2 Kakrafoon G2 Kirilthrendor\n\n84) shmil1: Move Y2 Shmil1 Joy\n\n85) alexcobo: Build R3 Alexcobo\n\n86) Mandrel: Build R3 Mandrel\n\n87) agentofchaos: Build R3 Kakrafoon\n\n88) shmil1: Move Y2 Joy Alexcobo\nCatastrophe Alexcobo Yellow\n\n89) alexcobo: Build G1 Alexcobo\n\n90) Mandrel: Build G2 Mandrel\n\n91) agentofchaos: Build R3 Kirilthrendor\n\n92) shmil1: Build G2 Shmil1\n\n93) alexcobo: Trade R2 Y2 Trade\n\n94) Mandrel: Trade G1 Y1 Joy\n\n95) agentofchaos: Move Y1 Agentofchaos Kakrafoon\n\n96) shmil1: Discover G2 Shmil1 G3 Zelenina\n\n97) alexcobo: Build G1 Alexcobo\n\n98) Mandrel: Trade G3 Y3 Mandrel\n\n99) agentofchaos: Build G3 Kakrafoon\n\n100) shmil1: Build Y1 Shmil1\n\n101) alexcobo: Build R2 Trade\n\n102) Mandrel: Build R3 Party\n\n103) agentofchaos: Move Y1 Kakrafoon Kirilthrendor\n\n104) shmil1: Trade Y1 B1 Shmil1\n\n105) Mandrel: Move R2 Party Joy\n\n106) agentofchaos: Build B1 Kakrafoon\n\n107) shmil1: Move B1 Shmil1 Zelenina\n\n108) Mandrel: Sacrifice Y3 Mandrel\nMove R3 Party Joy\nMove R2 Joy Agentofchaos\nMove R3 Joy Agentofchaos\nCatastrophe Agentofchaos Red\n\n109) agentofchaos: Move R3 Kakrafoon Party\n\n110) shmil1: Build B2 Zelenina\n\n111) Mandrel: Sacrifice G2 Party\nBuild G2 Joy\nBuild Y1 Joy\n\tagentofchaos: Didn&#39;t see that coming...\n\n112) agentofchaos: Move R2 Kirilthrendor Zelenina\n\n113) shmil1: Sacrifice Y2 Shmil1\nMove B1 Zelenina Agentofchaos\nMove G2 Zelenina Agentofchaos\n\n114) Mandrel: Move G2 Joy Agentofchaos\n\n115) agentofchaos: Sacrifice R3 Kirilthrendor\nAttack G2W Agentofchaos\nAttack G2E Agentofchaos\nAttack B1W Agentofchaos\n\n116) shmil1: Trade B2 Y2 Zelenina\n\n117) Mandrel: Move G1 Joy Agentofchaos\nCatastrophe Agentofchaos Green\n\n118) agentofchaos: Move G3 Kakrafoon Agentofchaos\n\tagentofchaos: I&#39;m not going down without a fight!!\n\n119) shmil1: Build G1 Shmil1\n\n120) Mandrel: Move B1 Party Mandrel\n\n121) agentofchaos: Attack Y2W Zelenina\n\n122) shmil1: Trade G3 Y3 Shmil1\n\n123) Mandrel: Build G2 Mandrel\n\n124) agentofchaos: Build Y2 Zelenina\n\n125) shmil1: Build G2 Shmil1\n\n126) Mandrel: Sacrifice G2 Mandrel\nBuild G2 Mandrel\nBuild Y3 Joy\n\n127) agentofchaos: Attack Y1E Party\n\n128) shmil1: Discover G1 Shmil1 Y3 Budanebo\n\n129) Mandrel: Move Y3 Joy Trade\n\n130) agentofchaos: Move R3 Party Kakrafoon\n\n131) shmil1: Move G1 Budanebo Alexcobo\nCatastrophe Alexcobo Green\n\n132) Mandrel: Sacrifice R1 Mandrel\nAttack R2N Trade\n\n133) agentofchaos: Build Y3 Kirilthrendor\n\n134) shmil1: Build Y3 Shmil1\n\n135) Mandrel: Sacrifice R2 Trade\nAttack R2N Trade\nAttack G2N Trade\n\n136) agentofchaos: Trade B1 R1 Agentofchaos\n\n137) shmil1: Discover Y3 Shmil1 B3 Modrina\n\n138) Mandrel: Trade Y1 B1 Joy\n\n139) agentofchaos: Build B2 Kakrafoon\n\n140) shmil1: Build G1 Shmil1\n\n141) Mandrel: Trade G2 B2 Trade\n\n142) agentofchaos: Sacrifice Y2 Zelenina\nMove B1 Kakrafoon Trade\nMove B1 Kakrafoon Trade\nCatastrophe Trade B\n\n143) shmil1: Move G2 Shmil1 Modrina\n\n144) Mandrel: Build G1 Party\n\n145) agentofchaos: Move R3 Kakrafoon Party\n\n146) shmil1: Build G1 Modrina\n\n147) Mandrel: Sacrifice G1 Party\nBuild Y1 Joy\n\n148) agentofchaos: Attack G1E Party\n\n149) shmil1: Trade G2 R2 Modrina\n\n150) Mandrel: T G2 Y2 Mandrel\n\n151) agentofchaos: Build Y2 Zelenina\n\n152) shmil1: Build G1 Modrina\n\n153) Mandrel: Build G2 Mandrel\n\n154) agentofchaos: Move B2 Kakrafoon Party\n\n155) shmil1: Sacrifice Y3 Modrina\nMove G1 Modrina Agentofchaos\nMove G1 Modrina Agentofchaos\nMove R2 Modrina Agentofchaos\n\n156) Mandrel: Build R1 Mandrel\n\n157) agentofchaos: Sacrifice R3 Party\nAttack R2W Agentofchaos\nAttack G1W Agentofchaos\nAttack G1W Agentofchaos\n\n158) shmil1: Build G2 Shmil1\n\n159) Mandrel: Move G2 Mandrel Agentofchaos\nCatastrophe Agentofchaos Green\n\n160) agentofchaos: Sacrifice G1 Party\nBuild Y3 Agentofchaos\n\tagentofchaos: You scoundrel!!\n\n161) shmil1: Build Y3 Shmil1\n\n162) Mandrel: Build G1 Mandrel\n\n163) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Zelenina Shmil1\nMove Y2 Zelenina Shmil1\nCatastrophe Shmil1 Y\n\n164) shmil1: Trade G2 Y2 Shmil1\n\n165) Mandrel: D B1 Mandrel G2 Calm\n\n166) agentofchaos: Move Y3 Kirilthrendor Kakrafoon\n\n167) shmil1: Build Y2 Shmil1\n\n168) Mandrel: B B1 Calm\n\n169) agentofchaos: Sacrifice Y3 Kakrafoon\nMove Y1 Kirilthrendor Mandrel\nMove Y1 Party Mandrel\nMove B2 Party Joy\nCatastrophe Mandrel Y\n\n170) shmil1: Build G1 Shmil1\n\n171) Mandrel: T G2 Y2 Mandrel\n\n172) agentofchaos: Sacrifice R2 Agentofchaos\nAttack B1E Joy\nAttack Y1E Joy\n\n173) shmil1: Trade Y2 R2 Shmil1\n\n174) Mandrel: S Y1 Joy\nMove B1 Calm Mandrel\n\n175) agentofchaos: Discover B2 Joy Y2 Volapuk\n\n176) shmil1: Move R2 Shmil1 Joy\n\tMandrel: Ouch!\n\n177) Mandrel: B B1 Calm\n\tagentofchaos: A bit of payback! ;-)\n\n178) agentofchaos: Discover B1 Joy Y2 Sacher\n\n179) shmil1: Build Y1 Shmil1\n\n180) Mandrel: Trade B1 Y1 Calm\n\n181) agentofchaos: Sacrifice G1 Kakrafoon\nBuild B1 Volapuk\n\n182) shmil1: Move G1 Shmil1 Joy\n\n183) Mandrel: Build B1 Calm\n\tshmil1: system says there&acute;s no y1 in joy. i see it? and you?\n\tMandrel: Is it an attack command? You have to put n/e/s/w after the ship you&#39;re attacking for attack. If so I had the same problem for ages, I thought it was the system having a problem after someone dropping out.\n\n184) agentofchaos: Move B1 Volapuk Mandrel\n\tshmil1: yes, i have tried it out in many different ways. \n\n185) shmil1: Build G1 Joy\n\n186) Mandrel: Discover B1 Mandrel Y1 Inspiration\n\n187) agentofchaos: Move B1 Sacher Mandrel\n\n188) shmil1: Trade G1 Y1 Joy\n\n189) Mandrel: Build Y2 Calm\n\n190) agentofchaos: Move B2 Volapuk Mandrel\nCatastrophe Mandrel B\n\n191) agentofchaos: Move R2 Kakrafoon Calm\n\n192) shmil1: Build Y2 Joy\n\n193) agentofchaos: Sacrifice R2 Zelenina\nAttack Y2E Calm\nAttack Y1E Calm\n\n194) shmil1: Move Y1 Joy Agentofchaos\n\n195) agentofchaos: Attack Y1W Agentofchaos\n\n196) shmil1: Sacrifice Y2 Shmil1\nMove Y2 Joy Agentofchaos\nMove G1 Joy Agentofchaos\n\tagentofchaos: Thanks for playing Mandrel :-)\n\n197) agentofchaos: Sacrifice R2 Calm\nAttack Y2W Agentofchaos\nAttack G1W Agentofchaos\n\tMandrel: Cheers, It&#39;s been fun, have a good rest of game you two.\n\n198) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Calm Joy\nMove Y2 Joy Shmil1\n\n\tagentofchaos: did you try the command &#39;a y1s joy&#39;?\n\nHomeworlds Online (SDG# 14558)\nStarted: 2009.11.11, Ended: 2009.12.16\nParticipants: ZackStack (S), face (N)\nWinner: face\n\n1) face: Homeworld R3 B2 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey face! Enjoy the rematch!\n\n3) face: Build G1 Face\n\n4) ZackStack: Build G1 Zackstack\n\n5) face: Trade G3 Y3 Face\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: Hmmm... I&#39;m tempted to tempt you to take us both out in one turn :-)\n\n7) face: Build Y1 Face\n\n8) ZackStack: Build G1 Zackstack\n\n9) face: Trade Y1 R1 Face\n\n10) ZackStack: Discover G1 Zackstack B3 Bigboy\n\n11) face: Discover R1 Face Y1 Blitz\n\n12) ZackStack: Build G1 Zackstack\n\n13) face: Build G2 Face\n\n14) ZackStack: Build G2 Bigboy\n\n15) face: Move G2 Face Blitz\n\n16) ZackStack: Trade G1 Y1 Bigboy\n\n17) face: Build Y2 Face\n\n18) ZackStack: Build Y2 Bigboy\n\n19) face: Trade Y2 B2 Face\n\n20) ZackStack: Trade Y1 R1 Bigboy\n\n21) face: Move B2 Face Blitz\n\n22) ZackStack: Discover Y2 Bigboy G1 Pea\n\n23) face: Build B1 Blitz\n\n24) ZackStack: Build R1 Bigboy\n\n25) face: Discover B1 Blitz Y3 Smash\n\n26) ZackStack: Trade R1 B1 Bigboy\n\n27) face: Build Y1 Face\n\n28) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Bigboy\nBuild G3 Zackstack\nBuild Y2 Pea\n\n29) face: Discover Y1 Face R1 Plaster\n\n30) ZackStack: Trade G2 Y2 Bigboy\n\n31) face: Build Y3 Face\n\n32) ZackStack: Sacrifice Y2 Bigboy\nMove Y2 Pea Face\nMove Y2 Pea Face\nCatastrophe Face Yellow\n\tZackStack: I think that was a mistake...\n\n33) face: Sacrifice G2 Blitz\nBuild B2 Smash\nBuild B3 Blitz\n\tface: haha yeah.\r\ni&#39;m still having trouble visualizing with the arrangement of the board. i tend not to make mistakes when i take the time to set up the game with real icehouse pieces.\n\n34) ZackStack: Build Y2 Zackstack\n\tface: pretty sure that was game, but i&#39;ll still try to put up a fight.\n\tZackStack: I prefer playing in person too... but I get to play a lot more here!  I wish I was in position to take better advantage... I don&#39;t think this is over by a longshot!\n\n35) face: Move B3 Blitz Face\n\n36) ZackStack: Build R2 Bigboy\n\n37) face: Trade B3 Y3 Face\n\n38) ZackStack: Sacrifice Y2 Zackstack\nMove R2 Bigboy Blitz\nMove G2 Bigboy Blitz\n\n39) face: Attack R2 Blitz\n\n40) ZackStack: Move G2 Blitz Bigboy\n\tZackStack: Oops\n\n41) face: Build G1 Face\n\n42) ZackStack: Build R2 Bigboy\n\n43) face: Move G1 Face Blitz\n\n44) ZackStack: Trade R2 Y2 Bigboy\n\n45) face: Build B3 Blitz\n\n46) ZackStack: Build Y2 Zackstack\n\n47) face: Trade B3 G3 Blitz\n\n48) ZackStack: Move Y2 Bigboy Plaster\n\n49) face: Discover Y1 Plaster G3 Tank\n\n50) ZackStack: Sacrifice Y2 Zackstack\nMove B1 Bigboy Plaster\nMove G2 Bigboy Plaster\n\n51) face: Build Y2 Tank\n\tZackStack: Have I complimented your pyramid advantage lately? :-)\n\n52) ZackStack: Build B3 Plaster\n\tface: heh. still having trouble turning &quot;advantage&quot; into &quot;win.&quot;\n\n53) face: Build B3 Blitz\n\n54) ZackStack: Move Y1 Zackstack Tank\n\n55) face: Discover Y2 Tank G2 Waste\n\n56) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Plaster\nBuild Y2 Plaster\nBuild G3 Zackstack\n\n57) face: Build Y3 Waste\n\n58) ZackStack: Sacrifice R1 Bigboy\nAttack Y1 Tank\n\n59) face: Discover Y2 Waste B3 Buzz\n\n60) ZackStack: Trade B1 R1 Plaster\n\n61) face: Move G1 Blitz Buzz\n\n62) ZackStack: Move Y1 Tank Zackstack\n\n63) face: Move R2 Blitz Tank\n\n64) ZackStack: Discover Y1 Tank B1 Speck\n\n65) face: Sacrifice G3 Blitz\nBuild G3 Buzz\nBuild R2 Tank\nBuild R3 Blitz\n\n66) ZackStack: Sacrifice Y2 Plaster\nMove G2 Plaster Buzz\nMove G1 Zackstack Buzz\nCatastrophe Buzz Green\n\tZackStack: Its only a matter of time now... but I&#39;ll try to do some damage on my way out :-)\n\n67) face: Move B1 Smash Zackstack\n\n68) ZackStack: Build Y2 Plaster\n\n69) face: Sacrifice Y3 Waste\nMove B2 Blitz Smash\nMove B2 Smash Zackstack\nMove B2 Smash Zackstack\nCatastrophe Zackstack Blue\n\tZackStack: Bye bye blue star...\n\n70) ZackStack: Move B3 Plaster Tank\n\n71) face: Sacrifice Y3 Face\nMove R2 Tank Zackstack\nMove R2 Tank Zackstack\nMove R1 Blitz Zackstack\nCatastrophe Zackstack Red\n\tface: still not certain how i recovered from that early mistake. very well played.\n\tZackStack: Well played indeed.  You were able to get a new large ship built and back to your homeworld very quickly while I simply tried to recover the ships I had burnt to blow up your first one...  Then you did a much better job building a large fleet of large ships!  Very good game!\n\n\nHomeworlds Online (SDG# 32028)\nVariants: &quot;Hard time&quot;\nStarted: 2017.4.24, Ended: 2017.5.3\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) wil: H Y3 R2 G3 *\n\n3) Felix: Build G1 Felix\n\tFelix: Here we go again. Interesting starting setup! I thought you&#39;d go for the classic yellow/blue banker.\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: D G1 Wil B1 B1\n\n7) Felix: Build G1 Felix\n\twil: I like playing around with openings... This one might be too deep a hole to dig myself out if\n\twil: Of\n\tFelix: I like to do the same, but I&#39;ve found that the ladder world is typically too aggressive for experimentation :P\n\n8) wil: B G1 B1\n\n9) Felix: Build G2 Felix\n\n10) wil: B G2 B1\n\twil: Meh... I want to see the responses... Look at my record...losing is not a thing that bothers me much.\n\n11) Felix: Trade G1 B1 Felix\n\tFelix: Well I&#39;ll be more experimental with you in the future :)\n\n12) wil: T G1 R1 B1\n\twil: That would be to your benefit... My failure here is the same as chess...I don&#39;t have the patience, attention, or interest to take the time and look for the best move... I shoot from the hip, and often to my detriment.\n\tFelix: I often do the same when playing on here, actually. I&#39;d be more inclined to strategize when playing in real life, but I often make moves on here while at work and can&#39;t afford more than a minute or two to think over my move.\n\n13) Felix: Trade G2 R2 Felix\n\n14) wil: T G1 B1 B1\n\n15) Felix: Build B2 Felix\n\n16) wil: B B2 B1\n\n17) Felix: Discover B2 Felix G2 G2\n\n18) wil: T B1 Y1 B1\n\n19) Felix: Build G1 Felix\n\n20) wil: B R1 B1\n\n21) Felix: Move R2 Felix G2\n\n22) wil: B R2 B1\n\n23) Felix: Build R3 G2\n\n24) wil: M R1 B1 G2\n\n25) Felix: Sacrifice R2 G2\nAttack R1 G2\nPass\n\n26) wil: Move B2 B1 Wil\n\twil: I like taking unknown paths\n\twil: Anybody scouted these rapids before we started?\n\n27) Felix: Trade R1 Y1 G2\n\tFelix: My ol&#39; grandpappy Cletus did once, but he ain&#39;t been heard from since.\n\twil: that was an elegant solution\n\n28) wil: B Y2 B1\n\n29) Felix: Build Y2 G2\n\tFelix: Why, thank you!\n\n30) wil: D Y2 B1 B2 B2\n\n31) Felix: Discover Y1 G2 G1 Rasp\n\n32) wil: B G1 B1\n\n33) Felix: Sacrifice G3 Felix\nBuild Y2 Rasp\nBuild Y3 G2\nBuild Y3 Felix\n\n34) wil: Move G1 B1 B2\n\n35) Felix: Move Y3 G2 B1\n\n36) wil: Move R2 B1 B2\n\n37) Felix: Sacrifice R3 G2\nAttack R1 B1\nAttack Y1 B1\nAttack G2 B1\n\n38) wil: B G2 Wil\n\n39) Felix: Build G3 B1\n\tFelix: Ah, a three for one deal.\n\twil: yeah...I am behind on this one...awaiting you to make a mistake\n\n40) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB R1 B2\n\tFelix: I had the early advantage thanks to your experimental opening, so it&#39;s a bitter upper hand I bear :P\n\n41) Felix: Sacrifice Y3 Felix\nMove G3 B1 Wil\nMove G2 B1 Wil\nMove Y3 B1 Wil\nCatastrophe Wil Green\n\n42) wil: S G3 B2\nB B1 Wil\nB B3 Wil\nB Y3 B2\n\n43) Felix: Sacrifice B1 Felix\nTrade Y3 B3 Wil\nCatastrophe Wil Blue\n\twil: Sweet\n\n\tFelix: Beginning without blue is a difficult opening to pull off, but I&#39;d love to experiment with it more myself and see if it&#39;s possible to turn it to an advantage. It&#39;s hard to see it as anything but a handicap right now...\n\twil: It is fun to try things..  Make mistakes and learn...  Thx for the game!\n\nHomeworlds Online (SDG# 14699)\nVariants: &quot;Hard time&quot;\nStarted: 2009.12.3, Ended: 2010.1.21\nParticipants: Uglyfoot (S), fnord (N)\nWinner: Uglyfoot\n\n1) fnord: Homeworld Y1 B2 G3\n\tfnord: Hi there!  Thanks for the challenge!  Just FYI, I&#39;m leaving for a week-long cruise tomorrow morning.  I expect to have some internet access on board the ship, but I&#39;m hoping to get enough moves in before going away that I can ride out the timer.\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) fnord: Build G1 Fnord\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) fnord: Discover G1 Fnord Y3 Eris\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) fnord: Build G1 Fnord\n\n8) Uglyfoot: Discover Y1 Uglyfoot R1 Fort\n\n9) fnord: Trade G1 B1 Fnord\n\n10) Uglyfoot: Build G1 Uglyfoot\n\tfnord: *waves to the audience*\n\n11) fnord: Move B1 Fnord Eris\n\n12) Uglyfoot: Move G1 Uglyfoot Fort\n\n13) fnord: Build B1 Eris\n\n14) Uglyfoot: Build G1 Uglyfoot\n\n15) fnord: Build G2 Fnord\n\n16) Uglyfoot: Build G2 Fort\n\n17) fnord: Trade G2 Y2 Fnord\n\n18) Uglyfoot: Discover G2 Fort B3 Dogstar\n\n19) fnord: Trade B1 Y1 Eris\n\n20) Uglyfoot: Build G2 Fort\n\n21) fnord: Build G2 Eris\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Dogstar\nBuild Y2 Fort\n\n23) fnord: Trade Y2 R2 Fnord\n\n24) Uglyfoot: Move Y2 Fort Dogstar\n\n25) fnord: Build R1 Fnord\n\n26) Uglyfoot: Sacrifice G3 Dogstar\nBuild G3 Dogstar\nBuild Y2 Dogstar\nBuild Y3 Fort\n\n\tfnord: Sorry about the Resignation, I&#39;ve not been able to get to the site from work, where I usually log on.\n\nHomeworlds Online (SDG# 14748)\nVariants: &quot;Hard time&quot;\nStarted: 2009.12.9, Ended: 2010.2.7\nParticipants: mneme (S), Danner (N)\nWinner: mneme\n\n1) Danner: Homeworld B1 R2 G3\n\tDanner: Hi! Good luck!\n\n2) mneme: Homeworld G3 R1 B3\n\n3) Danner: Build G1 Danner\n\n4) mneme: Build B1 Mneme\n\n5) Danner: Trade G1 B1 Danner\n\n6) mneme: Build B2 Mneme\n\n7) Danner: Build B2 Danner\n\n8) mneme: Trade B2 Y2 Mneme\n\n9) Danner: Trade B2 Y2 Danner\n\n10) mneme: Discover B1 Mneme G2 Alpha\n\n11) Danner: Discover B1 Danner G3 Beta\n\n12) mneme: Build B2 Mneme\n\n13) Danner: Build B2 Beta\n\n14) mneme: Build B2 Alpha\n\n15) Danner: Trade B2 Y2 Beta\n\n16) mneme: Discover B2 Mneme G2 Gamma\n\n17) Danner: Build G1 Danner\n\n18) mneme: Trade B2 R2 Alpha\n\n19) Danner: Build B2 Beta\n\n20) mneme: Build B2 Alpha\n\n21) Danner: Discover B1 Beta G2 Delta\n\n22) mneme: Build B3 Mneme\n\n23) Danner: Build B3 Delta\n\n24) mneme: Move B3 Mneme Delta\n\n25) Danner: Sacrifice Y2 Danner\nDiscover B1 Delta Y3 Epsilon\nDiscover B3 Delta Y3 Zeta\n\n26) mneme: Trade B2 Y2 Alpha\n\n27) Danner: Trade G1 R1 Danner\n\n28) mneme: Trade B3 Y3 Delta\n\n29) Danner: Move B3 Zeta Alpha\n\n30) mneme: Sacrifice Y2 Alpha\nMove R2 Alpha Epsilon\nMove Y3 Delta Beta\n\n31) Danner: Build Y1 Beta\n\n32) mneme: Sacrifice B1 Alpha\nTrade Y3 R3 Beta\n\n33) Danner: Sacrifice Y2 Beta\nMove Y1 Beta Alpha\nDiscover B2 Beta Y2 Delta\n\n34) mneme: Attack B1 Epsilon\n\n35) Danner: Build G1 Danner\n\n36) mneme: Build B1 Gamma\n\n37) Danner: Build Y1 Alpha\n\n38) mneme: Trade B2 G2 Gamma\n\n39) Danner: Discover Y1 Alpha B3 Zeta\n\n40) mneme: Build B2 Gamma\n\n41) Danner: Build B2 Alpha\n\n42) mneme: Trade B2 R2 Gamma\n\n43) Danner: Sacrifice Y1 Alpha\nDiscover R1 Danner Y3 Eta\n\n44) mneme: Sacrifice G2 Gamma\nBuild R1 Gamma\nBuild R3 Epsilon\n\n45) Danner: Sacrifice G1 Danner\nBuild R3 Eta\n\n46) mneme: Sacrifice Y2 Mneme\nMove R2 Gamma Eta\nMove R1 Gamma Eta\nCatastrophe Eta R\n\n\tDanner: Sorry for my slowness. And congratulations!\n\tmneme: Thanks.  So it goes; I&#39;d have preferred to play it out--I only had a minor advantage!\r\n\n\nHomeworlds Online (SDG# 14750)\nVariants: &quot;Hard time&quot;\nStarted: 2009.12.9, Ended: 2009.12.21\nParticipants: Horowits (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Horowits: Homeworld G3 B1 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Horowits: Build Y1 Horowits\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Horowits: Trade Y1 B1 Horowits\n\n7) MadWuher: Build G1 Madwuher\n\n8) Horowits: Build B1 Horowits\n\n9) MadWuher: Build G1 Madwuher\n\n10) Horowits: Discover B1 Horowits G2 Jello\n\n\nHomeworlds Online (SDG# 14017)\nVariants: &quot;Hard time&quot;\nStarted: 2009.12.11, Ended: 2009.12.16\nParticipants: ExKirby (S), zoltar (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 11422)\nStarted: 2009.12.11, Ended: 2010.5.3\nParticipants: Danner (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) Danner: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\tDanner: Hi! Have a good game!\n\tDanner: Did you choose the nickname &#39;zoltar&#39; after the Iceland character?\n\tzoltar: No I didn&#39;t, it was from a silly movie, actually. Have a great game!\n\n4) Danner: Build G1 Danner\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Danner: Trade G1 R1 Danner\n\n7) zoltar: Build Y1 Zoltar\n\n8) Danner: Build R1 Danner\n\n9) zoltar: Build Y1 Zoltar\n\n10) Danner: Build R2 Danner\n\tzoltar: b y1 zoltar\n\n11) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n12) Danner: Trade R2 Y2 Danner\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n14) Danner: Discover Y2 Danner G3 Garrett\n\tzoltar: Yellow Alert!\n\tDanner: :D\n\n15) zoltar: Sacrifice Y1 Zoltar\nDiscover Y1 Greenbelt G1 Greendale\n\n16) Danner: Build G1 Danner\n\n17) zoltar: T Y3 G3 Zoltar\n\n18) Danner: Discover G1 Danner Y3 Zombie\n\n19) zoltar: Discover Y2 Greenbelt B3 Bluebeard\n\n20) Danner: Build G1 Danner\n\n21) zoltar: Build G2 Zoltar\n\n22) Danner: Discover G1 Danner Y3 Artemus\n\n23) zoltar: Trade Y2 R2 Bluebeard\n\n24) Danner: Build G2 Danner\n\n25) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild R2 Bluebeard\n\n26) Danner: Move R1 Danner Artemus\n\n27) zoltar: Move Y3 Greenbelt Artemus\n\n28) Danner: Discover G1 Artemus Y2 Yellowbelt\n\n29) zoltar: Move G2 Zoltar Yellowbelt\n\n30) Danner: Discover G1 Yellowbelt Y1 Freeway\n\n31) zoltar: Move G2 Yellowbelt Zombie\n\n32) Danner: Sacrifice G3 Danner\nBuild G2 Zombie\nBuild G3 Danner\nBuild Y2 Garrett\n\n33) zoltar: Sacrifice R2 Bluebeard\nAttack R1 Artemus\nAttack G2 Zombie\n\n34) Danner: Move G1 Freeway Zombie\nCatastrophe Zombie G\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Greendale\nBuild Y3 Zoltar\nBuild R2 Bluebeard\n\n36) Danner: Move Y2 Garrett Greendale\n\n37) zoltar: Trade R2 G2 Bluebeard\n\n38) Danner: Build R2 Danner\n\n39) zoltar: Discover Y1 Zoltar R2 Redriver\n\n40) Danner: Sacrifice R1 Danner\nAttack Y1N Greendale\n\n41) zoltar: Move Y1 Redriver Greendale\nCatastrophe Greendale Y\n\n42) Danner: Build R1 Danner\n\n43) zoltar: Sacrifice G2 Bluebeard\nBuild R2 Bluebeard\nBuild R3 Artemus\n\n44) Danner: Move R2 Danner Garrett\n\n45) zoltar: Trade R2 G2 Bluebeard\n\n46) Danner: Build Y1 Garrett\n\n47) zoltar: Build G1 Bluebeard\n\n48) Danner: Sacrifice G2 Danner\nBuild R2 Danner\nBuild R3 Garrett\n\n49) zoltar: Build R3 Bluebeard\n\n50) Danner: Sacrifice Y2 Garrett\nMove R1 Danner Bluebeard\nMove R2 Danner Bluebeard\nCatastrophe Bluebeard R\n\n51) zoltar: Build G1 Bluebeard\n\n52) Danner: Move R3 Garrett Danner\n\n53) zoltar: Trade G2 Y2 Bluebeard\n\n54) Danner: Build Y1 Garrett\n\n55) zoltar: Sacrifice G1 Bluebeard\nBuild Y1 Zoltar\n\n56) Danner: Discover Y1 Garrett Y2 Gamall\n\n57) zoltar: Move R3 Artemus Gamall\n\n58) Danner: Discover Y1 Gamall R3 Orland\n\n59) zoltar: Build G1 Bluebeard\n\n60) Danner: Build R1 Garrett\n\tDanner: Oh yeah, the most stable homeworld.\n\tDanner: Pardon me, that I don&#39;t make my next move now, but I must go to the parliament.\n\n61) zoltar: Sacrifice G1 Bluebeard\nBuild R2 Artemus\n\n62) Danner: Build G1 Danner\n\n63) zoltar: Trade Y1 G1 Zoltar\n\n64) Danner: Build Y1 Garrett\n\n65) zoltar: Build G2 Bluebeard\n\n66) Danner: Discover G1 Danner B3 Caduca\n\n67) zoltar:\nBuild G2 Bluebeard\n\n68) Danner: Discover Y1 Garrett B2 Builder\n\n69) zoltar: Sacrifice G2 Bluebeard\nBuild G2 Bluebeard\nBuild R2 Artemus\n\n70) Danner: Move R2 Garrett Builder\n\n71) zoltar: Sacrifice Y3 Artemus\nMove R1 Artemus Danner\nMove R2 Artemus Danner\nMove R2 Artemus Danner\nCatastrophe Danner R\n\n72) Danner: Move R1 Garrett Danner\n\n73) zoltar: Sacrifice G2 Bluebeard\nBuild Y3 Bluebeard\nBuild Y3 Zoltar\n\n74) Danner: Build G2 Caduca\n\n75) zoltar: Build G2 Bluebeard\n\n76) Danner: Trade G1 R1 Caduca\n\n77) zoltar: Move G1 Bluebeard Danner\n\n78) Danner: Sacrifice G3 Danner\nBuild R2 Builder\nBuild R2 Builder\nBuild R3 Danner\n\n79) zoltar: Trade G2 B2 Bluebeard\n\n80) Danner: Move R2 Builder Bluebeard\n\n81) zoltar: Move Y3 Zoltar Builder\n\n82) Danner: Sacrifice R2 Builder\nAttack B2N Bluebeard\nAttack Y2N Bluebeard\n\tDanner: Victory is near... too bad it isn&#39;t mine\n\tzoltar: Well, then I&#39;d better start attacking, eh?\n\n83) zoltar: Sacrifice R3 Gamall\nAttack R2 Bluebeard\nAttack Y2 Bluebeard\nAttack B2 Bluebeard\n\n84) Danner: Sacrifice R2 Builder\nAttack G1N Danner\nPass\n\tDanner: Maybe.\n\n85) zoltar: Build Y2 Zoltar\n\tzoltar: Banzai!!!\n\n86) Danner: Move Y1 Garrett Builder\n\n87) zoltar: Move Y3 Builder Caduca\n\tDanner: Red Alert! The Homeworld is under seige!\n\tzoltar: nice defense!\n\n88) Danner: Move Y1 Builder Zoltar\n\tzoltar: Yeah, I don&#39;t even think it&#39;s worth wasting a move saving my &#39;invasion force&#39;. I have more pieces, but your defense was great. Had I seen that coming I would have sacked to move all three green ships into your homeworld and blow up your G3 immediately before you could have sacked it.\n\tDanner: Thanks!\n\n89) zoltar: Move Y2 Zoltar Builder\n\n90) Danner: Attack G1N Zoltar\n\n91) zoltar: Build R2 Bluebeard\n\n92) Danner: Discover R1 Danner G3 Garrett\n\n93) zoltar: Sacrifice R2 Bluebeard\nAttack Y1 Builder\nAttack R1 Caduca\n\n94) Danner: Sacrifice G2 Caduca\nBuild G1 Zoltar\nBuild G2 Zoltar\n\n95) zoltar: Attack G2 Zoltar\n\n96) Danner: Trade G1 B1 Zoltar\n\n97) zoltar: Sacrifice G2 Zoltar\nBuild R2 Bluebeard\nBuild B1 Bluebeard\n\n98) Danner: Build R2 Garrett\n\n99) zoltar: Build R3 Bluebeard\n\n100) Danner: Trade R3 G3 Danner\n\n101) zoltar: Trade R2 G2 Bluebeard\n\tDanner: Garrett is back, hurray!\n\n102) Danner: Sacrifice G1 Danner\nBuild B2 Zoltar\n\n103) zoltar: Build G1 Bluebeard\n\n104) Danner: Sacrifice Y1 Orland\nMove R2 Garrett Danner\n\n105) zoltar: Attack B2 Zoltar\n\n106) Danner: Build Y1 Zoltar\n\n107) zoltar: Move Y2 Builder Garrett\n\n108) Danner: Build G1 Zoltar\n\n109) zoltar: Sacrifice R3 Bluebeard\nAttack R1 Garrett\nAttack G1 Zoltar\nAttack G1 Zoltar\n\n110) Danner: Attack G1N Zoltar\n\n111) zoltar: Sacrifice G2 Bluebeard\nBuild R2 Garrett\nBuild R3 Caduca\n\n\n112) Danner: Discover B1 Zoltar G2 Karras\n\n113) zoltar: Move B2 Bluebeard Karras\n\n114) Danner: Attack G1N Zoltar\n\n115) zoltar: Sacrifice G2 Bluebeard\nBuild R3 Bluebeard\nBuild R3 Garrett\n\n116) Danner: Build G2 Zoltar\n\n117) zoltar: Attack G2 Zoltar\n\n118) Danner: Move G1 Zoltar Builder\n\n119) zoltar: Sacrifice R3 Garrett\nAttack G1 Zoltar\nAttack Y1 Zoltar\nAttack Y1 Zoltar\n\n120) Danner: Build G2 Builder\n\n121) zoltar: Sacrifice G2 Zoltar\nBuild G2 Bluebeard\nBuild G3 Zoltar\n\n122) Danner: Pass\n\n123) zoltar: Build R3 Garrett\n\n124) Danner: Pass\n\n125) zoltar: Move R3 Garrett Builder\n\n126) Danner: Pass\n\n127) zoltar: Sacrifice R3 Bluebeard\nAttack B1 Karras\nAttack G2 Builder\nAttack G1 Builder\n\n128) Danner: Pass\n\n129) zoltar: Sacrifice G2 Builder\nBuild G2 Bluebeard\nBuild R3 Bluebeard\n\n130) Danner: Pass\n\n131) zoltar: Move R2 Bluebeard Danner\n\tDanner: I bet null-move heuristic would not work with HomeWorlds. :D\n\n132) Danner: Sacrifice R2 Danner\nAttack R2N Danner\nPass\n\tDanner: Even the Global Reserve Stash has gone bankrupt.\n\n133) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Zoltar Karras\nMove B2 Karras Caduca\nMove B1 Karras Caduca\n\n134) Danner: Pass\n\tzoltar: My starfleet now rules the known galaxy!\n\tDanner: My starfleet is getting tired of doing nothing.\n\n135) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Caduca\nBuild R2 Bluebeard\n\n136) Danner: Pass\n\n137) zoltar: Sacrifice Y3 Caduca\nMove R1 Caduca Danner\nMove R1 Garrett Danner\nMove R2 Bluebeard Danner\nCatastrophe Danner R\n\n138) Danner: Pass\n\tDanner: Nice fleet!\n\n139) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Garrett\nBuild R1 Caduca\n\tzoltar: Thanks. I guess it&#39;s time to attack!\n\n140) Danner: Move G3 Danner Bluebeard\nCatastrophe Bluebeard G\n\n\tDanner: Oh, then this was cruel :(\r\nI didn&#39;t really think it will allow me to do this. HW rules don&#39;t allow this.\n\tDanner: &quot;Oh, then this was cruel&quot; I mean, what I did. I&#39;m not sure how well I can express myself in English.\r\nI remembered that this rule was implemented, but it seems, not completly, or I&#39;m just wrong.\n\tDanner: Anyway, congratulations on your victory, and sorry for the sudden end.\n\tzoltar: Oh, well, I was planning to assimilate the Danner homeworld peacefully.... But that&#39;s interesting to know. You used to not be able to abandon your homeworld, and I wonder what happens if you blow the other guy&#39;s up in the same move?\n\tDanner: Yeah, rightful question.\n\nHomeworlds Online (SDG# 14476)\nStarted: 2009.12.11, Ended: 2010.1.4\nParticipants: zoltar (S), shmil1 (N)\nWinner: zoltar\n\n1) shmil1: Homeworld R1 B3 G3\n\n2) zoltar: Homeworld B2 R3 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) zoltar: Build G1 Zoltar\n\n5) shmil1: Sacrifice G3 Shmil1\nBuild G1 Shmil1\nBuild G2 Shmil1\nBuild G2 Shmil1\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) shmil1: Trade G2 Y2 Shmil1\n\n8) zoltar: Build Y1 Zoltar\n\n9) shmil1: Discover G2 Shmil1 R2 K25\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) shmil1: Trade G1 B1 Shmil1\n\n12) zoltar: Build Y1 Zoltar\n\n13) shmil1: Move B1 Shmil1 K25\n\n14) zoltar: Trade Y1 B1 Zoltar\n\n15) shmil1: Sacrifice G2 K25\nBuild B1 K25\nBuild B2 K25\n\n16) zoltar: Build B2 Zoltar\n\n17) shmil1: Sacrifice Y2 Shmil1\nDiscover B2 K25 Y1 Mac\nMove B1 K25 Mac\n\n18) zoltar: Move B2 Zoltar Mac\n\n19) shmil1: Move B2 Mac Zoltar\n\n20) zoltar: Sacrifice R1 Zoltar\nAttack B1 Mac\n\n21) shmil1: Build G1 Shmil1\n\n22) zoltar: Sacrifice B1 Zoltar\nTrade B2 R2 Mac\n\n23) shmil1: Sacrifice B1 K25\nTrade B2 R2 Zoltar\n\n24) zoltar: Attack R2 Zoltar\n\n25) shmil1: Build G1 Shmil1\n\tzoltar: Zoronians cheer in celebration as the Zoltar homeworld has been successfully defended from alien barbarians!\n\n26) zoltar: Discover R2 Mac Y2 Deathstar\n\n27) shmil1: Trade G1 R1 Shmil1\n\n28) zoltar: Move R2 Deathstar Shmil1\n\n29) shmil1: Trade G1 Y1 Shmil1\n\n30) zoltar: Sacrifice R2 Zoltar\nAttack G1 Shmil1\nAttack Y1 Shmil1\n\n\nHomeworlds Online (SDG# 14561)\nStarted: 2009.12.11, Ended: 2010.1.25\nParticipants: zoltar (S), ZackStack (N)\nWinner: zoltar\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Thanks for the challenge Zoltar!  Have a good game.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) zoltar: Build G1 Zoltar\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ZackStack: Build G1 Zackstack\n\n8) zoltar: Build G1 Zoltar\n\n9) ZackStack: Discover G1 Zackstack B3 Or\n\tzoltar: Hi, ZackStack!\n\tZackStack: Hello zoltar!  I see we play similar opens... now to name a system something that strikes fear into all Zendo players... ;-)\n\n10) zoltar: Trade G1 B1 Zoltar\n\tzoltar: &quot;Mu&quot; perhaps?\n\n11) ZackStack: Build G1 Or\n\n12) zoltar: Build B1 Zoltar\n\n13) ZackStack: Build G1 Or\n\n14) zoltar: Build G2 Zoltar\n\n15) ZackStack: Build G2 Zackstack\n\n16) zoltar: Discover G2 Zoltar Y2 Yellowstone\n\n17) ZackStack: Trade G1 Y1 Or\n\n18) zoltar: Build Y2 Zoltar\n\n19) ZackStack: Build Y2 Or\n\n20) zoltar: Discover Y1 Zoltar B2 Blueridge\n\n21) ZackStack: Trade Y2 B2 Or\n\n22) zoltar: Move B1 Zoltar Yellowstone\n\n23) ZackStack: Discover B2 Or G2 Greengorge\n\n24) zoltar: Sacrifice G2 Yellowstone\nBuild B3 Yellowstone\nBuild B3 Yellowstone\n\n25) ZackStack: Build Y2 Or\n\tZackStack: Ooo... Nice move! And Merry Christmas!\n\n26) zoltar: Trade B3 R3 Yellowstone\n\tzoltar: Thanks, and Merry Christmas to you too.\n\n27) ZackStack: Build B3 Greengorge\n\n28) zoltar: Sacrifice B1 Zoltar\nTrade B3 Y3 Yellowstone\n\n29) ZackStack: Trade B2 R2 Greengorge\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Blueridge\nBuild R1 Yellowstone\n\tzoltar: Well, I&#39;ll try something fancy again!\n\n31) ZackStack: Trade G1 R1 Or\n\n32) zoltar: Trade R1 G1 Yellowstone\n\tZackStack: Yup.  You&#39;re getting way too fancy for me over there :-)\n\n33) ZackStack: Build R1 Greengorge\n\n34) zoltar: Build R2 Yellowstone\n\n35) ZackStack: Discover R1 Or G2 With\n\n36) zoltar: Move R3 Yellowstone Or\n\tzoltar: Now I&#39;m really confused. So many colors and planets and possibilities.\n\n37) ZackStack: Sacrifice Y2 Or\nMove R1 With Zoltar\nMove R1 Greengorge Zoltar\n\tZackStack: Isn&#39;t that why we play this game? ;-)\r\n\r\nAlso... I find it is manditory to hum Vader&#39;s Theme whenever moving a big red ship :-)\n\n38) zoltar: Sacrifice R2 Yellowstone\nAttack G1 Or\nAttack Y1 Or\n\n39) ZackStack: Sacrifice G2 Zackstack\nBuild R2 Zoltar\nBuild Y2 Zackstack\nCatastrophe Zoltar Red\n\n\n40) zoltar: Sacrifice Y2 Zoltar\nDiscover Y3 Yellowstone B3 Bluemoon\nDiscover G1 Yellowstone B1 Blueberry\n\tzoltar: Well, I may be doomed now...\n\tZackStack: I&#39;m sure you&#39;ll find a way to keep things interesting!\n\n41) ZackStack: Discover Y2 Zackstack G3 Greengiant\n\n42) zoltar: Trade Y3 G3 Bluemoon\n\tzoltar: Well, this is the best I can come up with. I can for now try to not let you get more than one blue piece so I may stay alive!\n\tZackStack: Effective... now I need a new plan :-)\n\n43) ZackStack: Trade B3 Y3 Greengorge\n\n44) zoltar: Sacrifice G3 Bluemoon\nBuild Y2 Or\nBuild B2 Yellowstone\nBuild B3 Yellowstone\n\n45) ZackStack: Build G1 Zackstack\n\tZackStack: On second thought...\n\n46) zoltar: Build G2 Or\n\n47) ZackStack: Trade G1 R1 Zackstack\n\tzoltar: Yeah, I was afraid if I traded in a Y3 you&#39;d grab it: I liked my position much better when I had all 3 Y3 ships. \n\tzoltar: But now I&#39;ve successfully hoarded the Blues!\n\tZackStack: Well... I wasn&#39;t going to break in on the blue market any time soon... so snagging some movement seemed like the most valuable move.\n\n48) zoltar: Move B3 Yellowstone Greengiant\n\n49) ZackStack: Discover Y2 Greengiant R2 Redsun\n\n50) zoltar: Build B3 Greengiant\n\n51) ZackStack: Move R2 Greengorge Blueberry\n\tZackStack: Sorry for the delay... I haven&#39;t had much time to sit an puzzle through games lately...  I should be back on track now!  Erm... in RL anyway.  I&#39;m feeling quite in trouble here :-)\n\n52) zoltar: Sacrifice G1 Blueberry\nBuild G1 Or\n\n53) ZackStack: Discover R1 Zackstack G3 Greenglob\n\tZackStack: I even saw that coming... what to do about it? Not sure...\n\n54) zoltar: Trade B3 R3 Greengiant\n\n55) ZackStack: Sacrifice Y2 Redsun\nMove R2 Blueberry Yellowstone\nMove R1 Greenglob Zoltar\n\tzoltar: Retreat!\n\tZackStack: How have you not turned that ship advantage into a win yet? :-p\n\n56) zoltar: Sacrifice R3 Greengiant\nAttack R1 Zoltar\nAttack R2 Yellowstone\nPass\n\n57) ZackStack: Build Y2 Greengorge\n\tzoltar: I&#39;m working on it! But I&#39;d like more big ships first.\n\tZackStack: Well... who wouldn&#39;t :-p\n\n58) zoltar: Move G1 Or Zackstack\n\n59) ZackStack: Move Y3 Greengorge Zoltar\n\tzoltar: I knew having a second red ship would come in handy!\n\n60) zoltar: Sacrifice Y3 Blueridge\nMove G2 Or Zackstack\nMove G1 Or Zackstack\nMove B3 Greengiant Zackstack\nCatastrophe Zackstack G\n\n61) ZackStack: Move Y2 Greengorge Zoltar\n\tzoltar: Attack!!!\n\tZackStack: I&#39;m not even in position to go down swinging here... good game!  I&#39;ll enjoy watching the end of my homeworld :-)\n\n62) zoltar: Sacrifice R3 Or\nAttack Y2 Zoltar\nAttack Y3 Zoltar\nAttack Y1 Zackstack\n\n\tZackStack: I think we&#39;ll watch from here where its safe :-)\n\tzoltar: gg -- wanna play again?\n\tZackStack: I don&#39;t think I&#39;ve ever lost *all* of my ships before :-)  And yes, I&#39;d enjoy another game!\n\nHomeworlds Online (SDG# 14718)\nStarted: 2009.12.11, Ended: 2009.12.17\nParticipants: zoltar (S), larry (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 14769)\nVariants: &quot;Hard time&quot;\nStarted: 2009.12.12, Ended: 2010.1.29\nParticipants: wyons (S), zoltar (N)\nWinner: wyons\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) wyons: Homeworld R2 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) wyons: Build G1 Wyons\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n8) wyons: Build G1 Wyons\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) wyons: Trade G1 B1 Wyons\n\n11) zoltar: Build B2 Zoltar\n\n12) wyons: Build B2 Wyons\n\n13) zoltar: Trade B2 R2 Zoltar\n\n14) wyons: Trade B1 R1 Wyons\n\n15) zoltar: Build G1 Zoltar\n\n16) wyons: Build G1 Wyons\n\n17) zoltar: Discover G1 Zoltar B2 Blueridge\n\n18) wyons: Discover G1 Wyons Y3 Armadillo\n\n19) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n20) wyons: Move B2 Wyons Armadillo\n\n21) zoltar: Move R2 Zoltar Blueridge\n\n22) wyons: Move R1 Wyons Armadillo\n\n23) zoltar: Build G1 Zoltar\n\n24) wyons: Build Y1 Wyons\n\n25) zoltar: Build Y2 Zoltar\n\n26) wyons: Build Y2 Wyons\n\n27) zoltar: Move Y1 Zoltar Blueridge\n\n28) wyons: Discover Y1 Wyons G3 Zebra\n\n29) zoltar: Build G2 Blueridge\n\n30) wyons: Trade Y1 R1 Wyons\n\n31) zoltar: Discover G2 Blueridge Y3 Yellowsun\n\n32) wyons: Build G2 Wyons\n\n33) zoltar: Discover G1 Blueridge Y3 Yellowjacket\n\n34) wyons: Move B2 Armadillo Greenbelt\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenbelt\nBuild B2 Greenbelt\nCatastrophe Greenbelt B\n\n36) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild G2 Armadillo\nBuild G3 Wyons\n\n37) zoltar: Build Y2 Zoltar\n\n38) wyons: Trade Y1 B1 Wyons\n\n39) zoltar: Sacrifice Y2 Zoltar\nMove G1 Yellowjacket Wyons\nMove G2 Yellowsun Wyons\nCatastrophe Wyons G\n\n40) wyons: Move G1 Armadillo Wyons\n\twyons: woops, I missed that.\n\n41) zoltar: Discover R2 Blueridge Y3 Yellowstone\n\twyons: ...and it may be fatal\n\n42) wyons: Build B1 Wyons\n\tzoltar: Yeah, but I have no easy way to exploit it yet, but only if I can attack before we both grow more 3-pip ships, then you&#39;re done for.\n\tzoltar: Actually, I better undo my move and think about this tomorrow, as I&#39;m sleepy and I&#39;ve had an exhaustive weekend of partying!\n\n43) zoltar: Move G1 Zoltar Blueridge\n\n44) wyons: Move B1 Wyons Armadillo\n\n45) zoltar: Discover G1 Blueridge Y3 Mellowyellow\n\n46) wyons: Build B2 Armadillo\n\n47) zoltar: Build Y1 Zoltar\n\n48) wyons: Build B2 Armadillo\n\n49) zoltar: Build Y2 Zoltar\n\n50) wyons: Build B3 Wyons\n\tzoltar: Wow, I&#39;m about ready to resign. I think I&#39;m lost.\n\n\tzoltar: Yeah, that is just as good as knocking out all my yellows. I&#39;m shut out of the Blues, and you can simply swap them for all the other larges and then grow them back immediately again. I don&#39;t have a chance. Well played. We can play again if you wish. Thanks!\n\nHomeworlds Online (SDG# 14804)\nStarted: 2009.12.13, Ended: 2009.12.23\nParticipants: supergnouf (S), captncavern (N)\nWinner: supergnouf\n\n1) captncavern: Homeworld B2 G3 R3\n\n2) supergnouf: Homeworld G3 B1 Y3\n\n3) captncavern: Build R1 Captncavern\n\n4) supergnouf: Build Y1 Supergnouf\n\tsupergnouf: ca t&#39;as pas suffit la derniere fois :)\n\n5) captncavern: Trade R1 Y1 Captncavern\n\tcaptncavern: Ben, on va essayer de se rattraper ce coup-ci :)\n\n6) supergnouf: Trade Y1 R1 Supergnouf\n\n7) captncavern: Build R1 Captncavern\n\n8) supergnouf: Build Y1 Supergnouf\n\n9) captncavern: Trade R1 G1 Captncavern\n\n10) supergnouf: Trade Y1 G1 Supergnouf\n\n11) captncavern: Build Y1 Captncavern\n\tcaptncavern: Ben alors, tu joues, mais tu r&eacute;ponds plus aux mails ?\n\n12) supergnouf: Build R1 Supergnouf\n\n13) captncavern: Discover Y1 Captncavern B1 Un\n\n14) supergnouf: Discover R1 Supergnouf Y2 Picoro\n\n15) captncavern: Build R1 Captncavern\n\n16) supergnouf: Build R2 Supergnouf\n\n17) captncavern: Build R2 Captncavern\n\n18) supergnouf: Build R2 Supergnouf\n\n19) captncavern: Move R2 Captncavern Un\n\tcaptncavern: Oh ! Qu&#39;est-ce que tu fais ? Tu veux plus me parler ? :p\n\n20) supergnouf: Sacrifice G1 Supergnouf\nBuild R3 Picoro\n\tsupergnouf: non, mais j&#39;ai pas grand chose &agrave; dire et je suis un peu occup&eacute; :)\r\npar ailleurs, je peux maintenant jouer de mon lieu de travail :D je suis pas sur que ce soit une bonne chose, m&#39;enfin, comme ca les journ&eacute;es passent plus vite.\n\n21) captncavern: Discover R2 Un Y2 Deux\n\n22) supergnouf: Discover R2 Supergnouf Y2 Bou\n\n23) captncavern: Build R3 Captncavern\n\n24) supergnouf: Sacrifice Y3 Supergnouf\nMove R1 Picoro Un\nMove R1 Un Captncavern\nDiscover R3 Picoro Y1 Freeze\nCatastrophe Captncavern R\n\n25) captncavern: Build Y2 Captncavern\n\n26) supergnouf: Move R3 Freeze Captncavern\n\tcaptncavern: Je croyais pas que tu ferais &ccedil;a, mais c&#39;est vrai que &ccedil;a me fout dans la m...\n\n27) captncavern: Trade G1 R1 Captncavern\n\n28) supergnouf: Sacrifice R2 Bou\nAttack Y2 Captncavern\nAttack R1 Captncavern\n\tcaptncavern: Tiens, tu peux aller sur cette page et me dire ce que tu penses de l&#39;id&eacute;e de logo de Fumie : http://forums.superdupergames.org/viewtopic.php?p=7954#7954 ?\n\tcaptncavern: Fumie dit qu&#39;elle pr&eacute;f&egrave;rerait un cercle entier autour...\n\n29) captncavern: Build Y1 Captncavern\n\n30) supergnouf: Sacrifice R2 Supergnouf\nAttack Y1 Captncavern\nAttack Y1 Captncavern\n\tcaptncavern: Vite vu, celle-l&agrave; !\n\n\nHomeworlds Online (SDG# 14846)\nVariants: &quot;Hard time&quot;\nStarted: 2009.12.16, Ended: 2010.1.31\nParticipants: jeep (S), stoneaxe (N)\nWinner: jeep\n\n1) stoneaxe: Homeworld B2 Y3 G3\n\n2) jeep: Homeworld B1 R2 G3\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) jeep: Build G1 Jeep\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) jeep: Trade G1 Y1 Jeep\n\tstoneaxe: Hi Jeep.  Thanks for the game of HW!  I haven&#39;t played this one in awhile, so I might be rusty.\n\tjeep: Yeah, me too. ;)\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) jeep: B G1 Jeep\n\n9) stoneaxe: Trade G1 R1 Stoneaxe\n\n10) jeep: D G1 Jeep Y3 Bank\n\n11) stoneaxe: Build G1 Stoneaxe\n\n12) jeep: D Y1 Jeep Y3 Submarine\n\n13) stoneaxe: Discover G1 Stoneaxe B1 Bogey\n\n14) jeep: Build G1 Jeep\n\n15) stoneaxe: Build G2 Stoneaxe\n\n16) jeep: Trade G1 Y1 Jeep\n\n17) stoneaxe: Build Y2 Stoneaxe\n\n18) jeep: Build Y2 Jeep\n\n\nHomeworlds Online (SDG# 14850)\nVariants: &quot;Hard time&quot;\nStarted: 2009.12.19, Ended: 2010.1.25\nParticipants: agentofchaos (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\tZackStack: Here&#39;s to a better game than that last one... :-)\n\n3) ZackStack: Build G1 Zackstack\n\tagentofchaos: We&#39;ll see...\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ZackStack: Build G1 Zackstack\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) ZackStack: Discover G1 Zackstack B3 Bigblue\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) ZackStack: Build Y2 Zackstack\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) ZackStack: Build G1 Bigblue\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) ZackStack: Sacrifice Y2 Zackstack\nDiscover G1 Bigblue Y2 Jump\nMove G1 Jump Agentofchaos\nCatastrophe Agentofchaos Green\n\tZackStack: Returning a favor from last game? :-)\n\n16) agentofchaos: Trade Y2 G2 Agentofchaos\n\tagentofchaos: oops...\n\n17) ZackStack: Build Y2 Zackstack\n\n18) agentofchaos: Build Y2 Agentofchaos\n\n19) ZackStack: Build G1 Bigblue\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) ZackStack: Build G2 Zackstack\n\n\tZackStack: Lousy hard time...\n\nHomeworlds Online (SDG# 14525)\nStarted: 2009.12.21, Ended: 2010.1.17\nParticipants: rawg (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy...  I&#39;m travelling on vacation right now, so while I&#39;m happy to play, my moves might not be very prompt for a bit...\n\n2) rawg: Homeworld G3 B2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\trawg: Hello. No worries. Enjoy your vacation :)\n\n4) rawg: Build Y1 Rawg\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) rawg: Trade Y1 B1 Rawg\n\n7) TwoShort: Build G1 Twoshort\n\n8) rawg: Build Y1 Rawg\n\trawg: a happy new year to you\n\n9) TwoShort: Build G1 Twoshort\n\n10) rawg: Discover B1 Rawg G1 Smalls\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) rawg: Sacrifice Y1 Rawg\nDiscover B1 Smalls G2 Med\n\n13) TwoShort: Build G1 Bluonia\n\n\nHomeworlds Online (SDG# 14456)\nStarted: 2009.12.22, Ended: 2009.12.22\nParticipants: ts52 (S), matthulgan (N)\nWinner: ts52\n\n\tts52: Sorry about that. I apparently missed several new game emails.\n\nHomeworlds Online (SDG# 14893)\nStarted: 2009.12.25, Ended: 2010.3.27\nParticipants: ts52 (S), face (N)\nWinner: ts52\n\n1) face: Homeworld R3 B2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) face: Build G1 Face\n\tts52: Have a good game.\n\n4) ts52: B G1 Ts52\n\n5) face: Trade G3 Y3 Face\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) face: Build G1 Face\n\n8) ts52: Discover Y1 Ts52 G3 Grover\n\n9) face: Trade G1 R1 Face\n\n10) ts52: Build G1 Ts52\n\n11) face: Discover R1 Face Y1 Smash\n\n12) ts52: B Y2 Grover\n\n13) face: Build Y2 Face\n\n14) ts52: T G1 B1 Ts52\n\n15) face: Build G1 Face\n\tface: build g1 face\n\n16) ts52: M B1 Ts52 Grover\n\n17) face: Trade Y2 R2 Face\n\n18) ts52: Trade Y2 R2 Grover\n\n19) face: Build Y2 Face\n\n20) ts52: Build Y2 Grover\n\n21) face: Move R2 Face Smash\n\n22) ts52: Build R1 Grover\n\n23) face: Move G1 Face Smash\n\n24) ts52: B B1 Grover\n\n25) face: Trade Y2 B2 Face\n\n26) ts52: Move R1 Grover Ts52\n\n27) face: Build Y2 Face\n\n28) ts52: B R1 Grover\n\n29) face: Move B2 Face Smash\n\n30) ts52: Discover R2 Grover G2 Kermit\n\n31) face: Move Y2 Face Smash\n\n32) ts52: M Y1 Grover Kermit\n\n33) face: Discover Y2 Smash R3 Waste\n\n34) ts52: M B1 Grover Kermit\n\n35) face: Build G1 Smash\n\n36) ts52: Build G2 Ts52\n\n37) face: Move G1 Smash Waste\n\n38) ts52: D G2 Ts52 R3 Elmo\n\n39) face: Discover R1 Smash G3 Plaster\n\n40) ts52: Build G2 Ts52\n\n41) face: Build R2 Plaster\n\n42) ts52: D G2 Ts52 Y3 Bigbird\n\n43) face: Build B1 Smash\n\n44) ts52: S G2 Elmo\nB G2 Ts52\nB R3 Grover\n\n45) face: Move G1 Smash Plaster\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild Y3 Kermit\n\n47) face: Sacrifice Y2 Waste\nMove G1 Waste Ts52\nMove G1 Plaster Ts52\nCatastrophe Ts52 Green\n\n48) ts52: Sacrifice Y2 Grover\nMove Y3 Kermit Grover\nMove Y3 Grover Ts52\n\n49) face: Move B1 Smash Plaster\n\n50) ts52: Build R3 Kermit\n\tts52: Nice move. I should have seen that coming.\n\tface: thanks... still thinking this is going to be your game in the long run.\n\n51) face: Build B3 Plaster\n\n52) ts52: T Y3 G3 Ts52\n\n53) face: Trade B3 Y3 Plaster\n\n54) ts52: M R3 Grover Smash\n\n55) face: Discover R2 Smash Y2 Waste\n\n56) ts52: Attack B2 Smash\n\n57) face: Build Y2 Plaster\n\n58) ts52: Discover R1 Grover G1 Robin\n\n59) face: Build B3 Plaster\n\n60) ts52: Sacrifice Y2 Grover\nMove B1 Kermit Plaster\nMove B2 Smash Plaster\nCatastrophe Plaster Blue\n\n61) face: Build G1 Face\n\n62) ts52: Build G2 Ts52\n\n63) face: Trade G1 B1 Face\n\n64) ts52: Sacrifice G3 Ts52\nBuild G1 Bigbird\nBuild G3 Ts52\nBuild Y2 Kermit\n\n65) face: Discover B1 Face B1 Tank\n\n66) ts52: Move Y2 Kermit Grover\n\n67) face: Move R2 Plaster Robin\n\n68) ts52: Move G1 Bigbird Smash\n\n69) face: Attack R1 Robin\n\n70) ts52: S G2 Bigbird\nB G2 Smash\nB Y3 Grover\n\n71) face: Move Y2 Plaster Tank\n\n72) ts52: Move R3 Kermit Tank\n\n73) face: Move Y3 Plaster Kermit\n\n74) ts52: Attack Y2 Tank\n\n75) face: Sacrifice R2 Robin\nAttack Y1 Kermit\nAttack R2 Kermit\n\n76) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild B2 Grover\n\n77) face: Move Y1 Kermit Plaster\n\n78) ts52: Attack B1 Tank\n\n79) face: Discover R2 Kermit B3 Trash\n\n80) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Grover\nBuild B3 Tank\n\n81) face: Move Y1 Plaster Robin\n\n82) ts52: Move R2 Ts52 Plaster\n\n83) face: Move R1 Robin Plaster\n\n84) ts52: Move G2 Smash Grover\n\n85) face: Sacrifice Y3 Kermit\nMove R1 Plaster Ts52\nMove R1 Plaster Ts52\nMove R2 Trash Ts52\n\n86) ts52: Sacrifice G3 Ts52\nBuild G2 Smash\nBuild G3 Ts52\nBuild Y3 Tank\nCatastrophe Ts52 Red\n\n\tface: now i concede. just wanted to have a little fun first.\r\ni got sorely outplayed.\n\tts52: It was fun, thanks for the game.\n\nHomeworlds Online (SDG# 14948)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.4, Ended: 2010.1.6\nParticipants: face (S), logikal (N)\nWinner: face\n\n1) logikal: Homeworld G2 B1 Y3\n\n2) face: Homeworld R3 B2 G3\n\tmakertron: I want to play.\n\n3) logikal: Trade Y3 G3 Logikal\n\n\n\nHomeworlds Online (SDG# 14904)\nStarted: 2010.1.5, Ended: 2010.1.17\nParticipants: ts52 (S), MatrixFrog (N)\nWinner: ts52\n\n1) MatrixFrog: Homeworld G2 B3 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tts52: Have a good game.\n\n4) ts52: Build G1 Ts52\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) ts52: Discover G1 Ts52 Y3 Bigbird\n\n7) MatrixFrog: Discover Y1 Matrixfrog G1 Pea\n\n8) ts52: Build G1 Bigbird\n\n9) MatrixFrog: Build Y2 Matrixfrog\n\n10) ts52: B G2 Ts52\n\n11) MatrixFrog: Discover Y1 Pea G3 Broccoli\n\n12) ts52: Trade G2 Y2 Ts52\n\n13) MatrixFrog: Build Y2 Broccoli\n\n14) ts52: Discover Y2 Ts52 G3 Kermit\n\n15) MatrixFrog: Trade Y2 G2 Matrixfrog\n\n16) ts52: M G1 Bigbird Ts52\n\n17) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n18) ts52: S G3 Ts52\nB G1 Bigbird\nB G2 Bigbird\nB G3 Ts52\n\n19) MatrixFrog: Build Y1 Broccoli\n\n20) ts52: Discover G2 Bigbird B1 Gonzo\n\n21) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y2 Matrixfrog\nPass\n\n22) ts52: Sacrifice G3 Ts52\nBuild Y3 Kermit\nBuild G2 Gonzo\nBuild G3 Ts52\n\n23) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove Y1 Broccoli Ts52\nMove Y1 Broccoli Ts52\nMove Y2 Broccoli Ts52\nCatastrophe Ts52 Y\n\n24) ts52: B G3 Gonzo\n\n25) MatrixFrog: Build Y1 Matrixfrog\n\n26) ts52: T G3 R3 Gonzo\n\n27) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n28) ts52: B G3 Gonzo\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) ts52: T G3 R3 Gonzo\n\n31) MatrixFrog: Discover Y1 Matrixfrog B1 Wokka\n\n32) ts52: S Y3 Kermit\nM R3 Gonzo Matrixfrog\nM G2 Gonzo Matrixfrog\nM G2 Gonzo Matrixfrog\n\n33) MatrixFrog: Build Y1 Matrixfrog\n\n34) ts52: S R3 Matrixfrog\nA R1 Matrixfrog\nA Y2 Matrixfrog\nA Y1 Matrixfrog\n\n35) MatrixFrog: Build B2 Matrixfrog\n\n36) ts52: T G2 B2 Matrixfrog\nC Matrixfrog Blue\n\n\nHomeworlds Online (SDG# 15056)\nStarted: 2010.1.6, Ended: 2010.2.2\nParticipants: Asur (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld G2 Y3 B3\n\tZackStack: Hey Ze&#39; Mario!  Welcome to SDG.  Let me know if you have any questions about how things work.\n\n2) Asur: Homeworld G1 Y2 B3\n\tAsur: Hello! I&#39;ll review the manual in a minute and play. Thanks.\n\tAsur: How do I see if I&#39;m evil or good?\n\n3) ZackStack: Build B1 Zackstack\n\tZackStack: Evil and good are not necessary in 2 player games.  We just have to take out the other player&#39;s homeworld!\n\tZackStack: Also... its a good idea to have different sized stars in your homeworld than I have in mine (say, small green and medium yellow).  With the movement rules that would keep me &quot;farther away&quot;  Feel free to undo, or we can just try this the way it is!\n\n4) Asur: Build B1 Asur\n\tAsur: Ok, Thanks!\n\n5) ZackStack: Discover B1 Zackstack G1 Emerald\n\tZackStack: I should have thought to mention it when I placed my Homeworld... \n\n6) Asur: Discover B1 Asur Y3 Saphire\n\tAsur: No problem ;)\n\tAsur: You should construct another small blue ship, right? :P\n\tZackStack: Yup.  You pretty well need to start with blue and green at your homeworld... and your first move is always to make a small ship.  From there you slowly get more options... but the game doesn&#39;t really get going for a few turns.\n\n7) ZackStack: Build B1 Emerald\n\tZackStack: Also... if you had left your homeworld sizes as they were... my small blue ship at emerald would have been &quot;right next&quot; to your homeworld instead of needing to visit a large first.\n\n8) Asur: Build B2 Asur\n\n9) ZackStack: Build B2 Zackstack\n\n10) Asur: Trade B2 R2 Asur\n\n11) ZackStack: Trade B1 Y1 Emerald\n\tZackStack: Turn based works pretty well for this game... but I prefer having my opponent across the table to make it easier to chat about tactics :-)\n\tAsur: I know. I&#39;m not a big fan of online versions for games. I tend to get lost... :)\n\n12) Asur: Move R2 Asur Saphire\n\n13) ZackStack: Trade B2 R2 Zackstack\n\n14) Asur: Move R2 Saphire Emerald\n\n15) ZackStack: Sacrifice Y1 Emerald\nMove B1 Emerald Saphire\n\n16) Asur: Build B1 Asur\n\tZackStack: Good move... pleasantly aggressive.  I probably should have traded for a yellow on my last turn so I could sacrifice for two moves...\n\n17) ZackStack: Trade B1 G1 Saphire\n\tAsur: Oh, you can move two ships at once? I didn&#39;t know that :)\n\n18) Asur: Trade B1 R1 Saphire\n\tZackStack: If you sacrifice a ship you may perform its technology actions once for each pip on the icehouse piece.  On my turn I sacrificed my little yellow ship to make one move with my blue ship (mostly to keep you from getting either).  Its generally a more valuable move when you sacrifice larger ships :-)\n\n19) ZackStack: Sacrifice R2 Zackstack\nAttack R1 Saphire\nPass\n\n20) Asur: Build R1 Emerald\n\n21) ZackStack: Build G2 Saphire\n\tZackStack: Here I thought we could coexist peacfully around that star :-p  \n\n22) Asur: Build B1 Asur\n\tAsur: Eheh. Sorry I took so long. I was kind of stuck regarding what I should do... :P I just realized I can&#39;t bring my red ships back home, ahah\n\tZackStack: No problem.  One of my friend&#39;s comments during his first couple games was: &quot;I can never do what I want to do!&quot;  There is definitely a large amount of planning ahead necessary in this one!\n\n23) ZackStack: Build B1 Zackstack\n\n24) Asur: Discover B1 Asur G3 Diamond\n\n25) ZackStack: Sacrifice B1 Zackstack\nTrade G1 B1 Saphire\n\n26) Asur: Move B1 Asur Diamond\n\n27) ZackStack: Build B2 Zackstack\n\tZackStack: There.  Now I&#39;m ready to cause some trouble :-)\n\n28) Asur: Trade B1 Y1 Diamond\n\tAsur: Eheh \r\n\n\tZackStack: That&#39;s a really bad move.  I can simply move my b1 ship from Saphire to Asur to cause a blue catastrophe.  You would loose all your ships at your homeworld and loose the game.  Feel free to undo!\n\tAsur: Just checking if you were paying attention.\r\n-blush- :P\n\n29) ZackStack: Discover B2 Zackstack Y1 Topaz\n\n30) Asur: Move Y1 Diamond Emerald\n\tAsur: Sigh... I completely messed up the colors.\n\n31) ZackStack: Build G1 Saphire\n\tZackStack: Bummer.  Its no fun when your ships won&#39;t do what you think they should! :-)\n\n32) Asur: Build Y1 Emerald\n\n33) ZackStack: Discover B2 Topaz G3 Garnet\n\n34) Asur: Discover Y1 Emerald R2 Stall\n\n35) ZackStack: Build B1 Garnet\n\tZackStack: Saphire is actually defended from that right now.  My G2 ship can use the attack action on your R2 ship since I have red technology in the system (my R1). Please undo or I will simply flip your ship to the dark... I mean... my side :-)\n\n36) Asur: Build B2 Asur\n\n37) ZackStack: Trade B2 Y2 Garnet\n\n38) Asur: Move Y1 Emerald Diamond\n\n39) ZackStack: Build B2 Garnet\n\n40) Asur: Move B2 Asur Diamond\n\n41) ZackStack: Build B2 Saphire\n\n42) Asur: Build B3 Diamond\n\tZackStack: Be careful... or its going to be business time! :-p\n\n43) ZackStack: Trade B1 Y1 Saphire\n\tAsur: Garnet: Sacrificing your Y2 to move both blues to my homeworld, right, causing overpopulation?\n\n44) Asur: Move B3 Diamond Emerald\n\tZackStack: Yes.  Leaving two blue at your home would have won me the game.  I&#39;ll have to try something else now :-)\n\n45) ZackStack: Sacrifice Y2 Garnet\nMove B1 Garnet Asur\nMove B2 Garnet Asur\n\tAsur: You wish. :P\n\n46) Asur: Trade B3 R3 Asur\n\n47) ZackStack: Sacrifice B2 Saphire\nTrade B1 R1 Asur\nTrade B2 R2 Asur\n\n48) Asur: Sacrifice B1 Diamond\nTrade R3 B3 Asur\n\n49) ZackStack: Move R2 Asur Saphire\n\tZackStack: Let&#39;s see how this goes ;-)\n\n50) Asur: Move Y1 Diamond Emerald\n\tAsur: Hummm\n\tZackStack: I should have taken a longer look at the ships availible in the stacks before I did that... lets see how this works!\n\n51) ZackStack: Build B1 Zackstack\n\n52) Asur: Trade B3 R3 Emerald\n\tAsur: Talk about prolonging your eventual death. :)\n\tAsur: *my \n\tZackStack: Yeah... I should have picked yellow or green to blow up one of your home stars this turn.  I was greedy and hoped for another bad mistake :-D\n\n53) ZackStack: Move R1 Saphire Emerald\nCatastrophe Emerald Red\n\n54) Asur: Build Y2 Emerald\n\n55) ZackStack: Move Y1 Saphire Asur\n\n56) Asur: Sacrifice Y1 Stall\nMove B2 Diamond Emerald\n\tZackStack: I feel a little dirty for doing this...\n\n57) ZackStack: Build Y1 Asur\n\tAsur: Nooooo\n\tAsur: Enemies forever, Santa! :)\n\tZackStack: Well... at least until the end of this game :-)\n\n58) Asur: Trade Y1 B1 Emerald\n\n59) ZackStack: Trade B1 R1 Zackstack\n\n60) Asur: Trade B3 R3 Asur\n\n61) ZackStack: Sacrifice G2 Saphire\nBuild R1 Asur\nBuild R2 Asur\nCatastrophe Asur Red\n\n\tAsur: No, no more undos :) I&#39;m on my own, now. \r\n\r\n(prepare yourself for a pikemen or alien city play after this :))\n\tZackStack: Bad time to pick being on your own I fear :-)\r\n\r\nI&#39;ll be happy to play either game (or both) send me a challenge and I&#39;ll accept!\r\n\r\nThanks for trying out Homeworlds as well.  I prefer 2 player person... but have played the vast majority of games on here.\n\nHomeworlds Online (SDG# 15040)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.6, Ended: 2010.3.31\nParticipants: makertron (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld R2 B1 G3\n\n2) makertron: Homeworld R2 B1 G3\n\n3) logikal: Build G1 Logikal\n\n4) makertron: Build G1 Makertron\n\n5) logikal: Trade G1 Y1 Logikal\n\n6) makertron: Trade G1 Y1 Makertron\n\n7) logikal: Discover Y1 Logikal Y3 L1\n\n8) makertron: Trade Y1 R1 Makertron\n\n9) logikal: Move Y1 L1 Logikal\n\n10) makertron: Trade R1 Y1 Makertron\n\n11) logikal: Build G1 Logikal\n\n12) makertron: Build G1 Makertron\n\n13) logikal: Discover G1 Logikal G3 L1\n\n14) makertron: Discover G1 Makertron Y3 L2\n\n15) logikal: Build Y1 Logikal\n\n16) makertron: Build G1 L2\n\n17) logikal: Sacrifice G1 L1\nBuild Y2 Logikal\n\n18) makertron: Build Y2 Makertron\n\n19) logikal: Build G1 Logikal\n\n20) makertron: Build G2 L2\n\n21) logikal: Trade Y1 B1 Logikal\n\n22) makertron: Build Y1 Makertron\n\n23) logikal: Build B2 Logikal\n\n24) makertron: Trade Y2 B2 Makertron\n\n25) logikal: Discover G1 Logikal Y3 L1\n\n26) makertron: Build Y2 Makertron\n\n27) logikal: Sacrifice Y2 Logikal\nMove G1 L1 Logikal\nMove G1 Logikal L2\nCatastrophe L2 Green\n\n28) makertron: Discover Y1 Makertron Y3 Spacehat\n\n29) logikal: Discover B1 Logikal G3 L1\n\n30) makertron: Trade Y1 G1 Makertron\n\n31) logikal: Build B2 L1\n\n32) makertron: Discover Y2 Makertron B3 Jhaze\n\n33) logikal: Trade B1 G1 L1\n\n34) makertron: Trade G1 Y1 Makertron\n\n35) logikal: Build G1 Logikal\n\n36) makertron: Build G1 Makertron\n\n37) logikal: Build Y2 Logikal\n\n38) makertron: Build Y2 Makertron\n\n39) logikal: Move Y1 Logikal L1\n\n40) makertron: Move G1 Makertron Spacehat\n\n41) logikal: Build B1 L1\n\n42) makertron: Build B3 Makertron\n\n43) logikal: Build Y3 L1\n\n44) makertron: Move B2 Makertron Spacehat\n\n45) logikal: Build Y3 Logikal\n\n46) makertron: Build B3 Spacehat\n\n47) logikal: Trade B2 R2 Logikal\n\n48) makertron: Trade B3 R3 Spacehat\n\n49) logikal: Sacrifice Y2 Logikal\nMove B1 L1 Makertron\nMove B2 L1 Makertron\nCatastrophe Makertron Blue\n\n50) makertron: Build B1 Spacehat\n\n51) logikal: Build Y2 Logikal\n\n52) makertron: Move B1 Spacehat Makertron\n\n53) logikal: Move R2 Logikal L1\n\n54) makertron: Build G2 Spacehat\n\n55) logikal: Discover Y2 Logikal B3 L2\n\n56) makertron: Build G2 Makertron\n\n\nHomeworlds Online (SDG# 15061)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.7, Ended: 2010.1.28\nParticipants: makertron (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld R1 G2 B3\n\tmathochist: It&#39;s my first time, be gentle :)\r\nOn my first turn, do I just set up my homeworld, or do I do that and then also take an action?\n\n2) makertron: Homeworld R2 B1 G3\n\n3) mathochist: Build B1 Mathochist\n\n4) makertron: Build G1 Makertron\n\n5) mathochist: Trade B1 Y1 Mathochist\n\n6) makertron: Trade G1 Y1 Makertron\n\n7) mathochist: Build B1 Mathochist\n\n8) makertron: Discover Y1 Makertron Y3 L2\n\n9) mathochist: Trade B1 R1 Mathochist\n\n10) makertron: Build G1 Makertron\n\n11) mathochist: Build R1 Mathochist\n\n12) makertron: Build G1 Makertron\n\n13) mathochist: Discover R1 Mathochist B3 Fred\n\n14) makertron: Trade G1 Y1 Makertron\n\n15) mathochist: B R2 Mathochist\n\n16) makertron: Build G1 Makertron\n\n17) mathochist: Build Y2 Mathochist\n\n18) makertron: Build G1 Makertron\n\n19) mathochist: B Y2 Mathochist\nC Makertron Green\n\n20) makertron: Trade Y1 G1 Makertron\n\n21) mathochist: M R2 Mathochist L2\n\n22) makertron: Build G1 Makertron\n\n23) mathochist: Move R2 L2 Makertron\n\n24) makertron: Build G1 Makertron\n\n25) mathochist: Attack G1 Makertron\n\n26) makertron: Build G2 Makertron\n\n27) mathochist: P\nC Makertron G\n\n\nHomeworlds Online (SDG# 15063)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.7, Ended: 2010.3.24\nParticipants: alexcobo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) alexcobo: Discover Y1 Alexcobo G1 Grow\n\n7) MadWuher: Build G1 Madwuher\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) MadWuher: Build Y2 Madwuher\n\n10) alexcobo: Build Y2 Grow\n\n11) MadWuher: Discover Y1 Madwuher G3 Edora\n\n12) alexcobo: Trade Y1 R1 Alexcobo\n\n13) MadWuher: Build G1 Madwuher\n\n14) alexcobo: Build R1 Alexcobo\n\n15) MadWuher: Discover G1 Madwuher Y3 Camelot\n\n16) alexcobo: Build R2 Alexcobo\n\n17) MadWuher: Build G2 Camelot\n\n18) alexcobo: Move Y2 Grow Camelot\n\n19) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Camelot\nBuild G3 Madwuher\n\n20) alexcobo: Sacrifice R2 Alexcobo\nAttack G2N Camelot\nAttack G2N Camelot\n\n21) MadWuher: Sacrifice G1 Madwuher\nBuild G1 Camelot\nCatastrophe Camelot G\n\n22) alexcobo: Trade R1 G1 Alexcobo\n\n23) MadWuher: T G2 R2 Madwuher\n\n24) alexcobo: Build G1 Alexcobo\n\n25) MadWuher: Build G2 Madwuher\n\n26) alexcobo: Trade G1 B1 Alexcobo\n\n27) MadWuher: Discover G2 Madwuher Y3 Bologna\n\tMadWuher: Sorry..... Just moved and don&#39;t have internet access at home yet. Sorry if I&#39;m a bit delayed in my turns.\n\n28) alexcobo: Move B1 Alexcobo Grow\n\n29) MadWuher: Build G1 Madwuher\n\n30) alexcobo: Build B1 Grow\n\n31) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Madwuher\nBuild G3 Bologna\n\n32) alexcobo: Move B1 Grow Camelot\n\n33) MadWuher: Move G3 Bologna Grow\n\n34) alexcobo: Sacrifice Y1 Grow\nMove B1 Grow Camelot\n\n35) MadWuher: Move G2 Madwuher Edora\n\n36) alexcobo: Build R1 Alexcobo\n\n37) MadWuher: Move R2 Madwuher Edora\n\n38) alexcobo: Trade Y2 R2 Camelot\n\n39) MadWuher: Sacrifice Y1 Edora\nMove G3 Grow Camelot\n\n40) alexcobo: Discover R2 Camelot G1 Grow\n\n41) MadWuher: Move G3 Camelot Grow\n\n42) alexcobo: Build Y1 Alexcobo\n\n43) MadWuher: Sacrifice R2 Edora\nAttack R2 Grow\nPass\n\n44) alexcobo: Discover R1 Alexcobo Y1 Waypoint\n\n45) MadWuher: Discover G2 Madwuher B3 Endor\n\n46) alexcobo: Build R2 Alexcobo\n\n47) MadWuher: Sacrifice G2 Edora\nBuild G2 Endor\nBuild G3 Madwuher\n\n48) alexcobo: Move G1 Alexcobo Waypoint\n\n49) MadWuher: Move G2 Bologna Waypoint\n\n50) alexcobo: Move G1 Waypoint Camelot\n\n51) MadWuher: Sacrifice R2 Grow\nAttack R1 Waypoint\nPass\n\n52) alexcobo: Move Y3 Alexcobo Waypoint\n\n53) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Grow Alexcobo\nMove R1 Waypoint Endor\n\n54) alexcobo: Sacrifice R2 Alexcobo\nAttack G2N Waypoint\nPass\n\n55) MadWuher: Trade G3 R3 Madwuher\n\n\nHomeworlds Online (SDG# 15072)\nStarted: 2010.1.8, Ended: 2010.1.8\nParticipants: GrantHenninger (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld R2 B1 G3\n\tGrantHenninger: homeworld C2 Y1 R3\n\n2) GrantHenninger: Homeworld G2 Y1 R3 *\n\tGrantHenninger: homeworld C2 Y1 R3\n\n3) logikal: Build G1 Logikal\n\n4) GrantHenninger: Build R1 Granthenninger\n\n5) logikal: Build G1 Logikal\n\n6) GrantHenninger: Build R1 Granthenninger\n\n7) logikal: Trade G1 Y1 Logikal\n\n8) GrantHenninger: Build R1 Granthenninger\n\n9) logikal: Discover G1 Logikal Y3 L1\n\n10) GrantHenninger: Build R2 Granthenninger\n\n11) logikal: Build Y1 Logikal\nCatastrophe Granthenninger Red\n\n\nHomeworlds Online (SDG# 15073)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.8, Ended: 2010.1.10\nParticipants: logikal (S), GrantHenninger (N)\nWinner: logikal\n\n1) GrantHenninger: Homeworld B1 Y2 G3\n\n2) logikal: Homeworld R3 B2 G3\n\n3) GrantHenninger: Build G1 Granthenninger\n\n4) logikal: Build G1 Logikal\n\n5) GrantHenninger: Trade G3 R3 Granthenninger\n\n6) logikal: Build G1 Logikal\n\n7) GrantHenninger: Build G2 Granthenninger\n\n8) logikal: Trade G1 Y1 Logikal\n\n9) GrantHenninger: Build R1 Granthenninger\n\n10) logikal: Discover G1 Logikal B1 L1\n\n11) GrantHenninger: Discover G2 Granthenninger R3 Gmh1\n\n12) logikal: Build G1 L1\n\n13) GrantHenninger: Build G2 Gmh1\n\n14) logikal: Build G2 L1\n\n15) GrantHenninger: Build G3 Gmh1\n\n16) logikal: Sacrifice G2 L1\nBuild G2 Logikal\nBuild G3 L1\n\n17) GrantHenninger: Trade R1 B1 Granthenninger\n\n18) logikal: Build Y1 Logikal\n\n19) GrantHenninger: Move B1 Granthenninger Gmh1\n\n20) logikal: Trade G1 Y1 L1\n\n21) GrantHenninger: Trade G2 R2 Gmh1\n\n22) logikal: Build Y2 L1\n\n23) GrantHenninger: Build B2 Gmh1\n\n24) logikal: Trade Y2 B2 L1\n\n25) GrantHenninger: Build B3 Gmh1\n\n26) logikal: Move B2 L1 Gmh1\nCatastrophe Gmh1 Blue\n\n27) GrantHenninger: Build R1 Granthenninger\n\n28) logikal: Discover Y1 Logikal G1 L2\n\n29) GrantHenninger: Build G2 Granthenninger\n\n30) logikal: Sacrifice G3 L1\nBuild G3 L1\nBuild Y2 L2\nBuild Y2 L2\n\n31) GrantHenninger: Trade G1 B1 Granthenninger\n\n32) logikal: Sacrifice G2 Logikal\nBuild Y3 Logikal\nBuild Y3 Logikal\n\n33) GrantHenninger: Move B1 Granthenninger Gmh1\n\n34) logikal: Build Y3 L1\n\n35) GrantHenninger: Build B2 Gmh1\n\n36) logikal: Sacrifice G3 L1\nBuild G1 L1\nBuild G2 L1\nBuild G3 Logikal\n\n37) GrantHenninger: Build B2 Gmh1\n\n38) logikal: Trade G3 B3 Logikal\n\n39) GrantHenninger: Trade R3 B3 Granthenninger\n\n40) logikal: Build B3 Logikal\n\n41) GrantHenninger: Build G3 Granthenninger\n\n42) logikal: Discover G1 L1 R3 L3\n\n43) GrantHenninger: Sacrifice G3 Granthenninger\nBuild G3 Granthenninger\nBuild R1 Granthenninger\nBuild R1 Granthenninger\n\n44) logikal: Move G2 L1 Logikal\n\n45) GrantHenninger: Sacrifice G3 Gmh1\nBuild G3 Gmh1\nBuild R2 Gmh1\nBuild R2 Gmh1\n\n46) logikal: Move B3 Logikal L1\nCatastrophe Gmh1 Red\n\n47) GrantHenninger: Move R1 Granthenninger L3\n\n48) logikal: Attack R1 L3\n\n49) GrantHenninger: Trade G3 R3 Granthenninger\n\n50) logikal: Sacrifice G3 Logikal\nBuild G2 L1\nBuild G3 L3\nBuild G3 Logikal\n\n51) GrantHenninger: Build G3 Granthenninger\n\n52) logikal: Move B3 L1 L3\n\n53) GrantHenninger: Sacrifice G2 Granthenninger\nBuild G2 Granthenninger\nBuild B1 Granthenninger\n\n54) logikal: Sacrifice Y2 L2\nMove B3 L3 Granthenninger\nMove R1 L3 Granthenninger\nCatastrophe Granthenninger Blue\nCatastrophe Granthenninger Red\n\n55) GrantHenninger: Move G3 Granthenninger L2\n\n56) logikal: Sacrifice Y3 Logikal\nMove Y1 L2 Granthenninger\nMove Y2 L2 Granthenninger\nMove Y1 L1 Granthenninger\nCatastrophe Granthenninger Yellow\n\n\nHomeworlds Online (SDG# 15080)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2010.1.9, Ended: 2010.1.20\nParticipants: GrantHenninger (S), makertron (N)\nWinner: GrantHenninger\n\n1) makertron: Homeworld B1 Y2 G3\n\n2) GrantHenninger: Homeworld Y1 B2 G3\n\n3) makertron: Build G1 Makertron\n\n4) GrantHenninger: Build G1 Granthenninger\n\n5) makertron: Discover G1 Makertron Y3 L2\n\n6) GrantHenninger: Trade G1 Y1 Granthenninger\n\n7) makertron: Build G1 L2\n\n8) GrantHenninger: Build Y1 Granthenninger\n\n9) makertron: Build G1 Makertron\n\n10) GrantHenninger: Trade Y1 R1 Granthenninger\n\n11) makertron: Trade G1 R1 Makertron\n\n12) GrantHenninger: Build G1 Granthenninger\n\n13) makertron: Move R1 Makertron L2\n\n14) GrantHenninger: Trade G1 B1 Granthenninger\n\n15) makertron: Build G1 Makertron\n\n16) GrantHenninger: Build G2 Granthenninger\n\n17) makertron: Trade G1 B1 Makertron\n\n18) GrantHenninger: Sacrifice G2 Granthenninger\nBuild B2 Granthenninger\nBuild B2 Granthenninger\n\n19) makertron: Build G1 Makertron\n\n20) GrantHenninger: Trade B2 R2 Granthenninger\n\n21) makertron: Build B2 Makertron\n\n22) GrantHenninger: Discover B1 Granthenninger Y3 Gmh1\n\n23) makertron: Trade B1 Y1 Makertron\n\n24) GrantHenninger: Build G2 Granthenninger\n\n25) makertron: Build G2 L2\n\n26) GrantHenninger: Sacrifice G3 Granthenninger\nBuild G2 Granthenninger\nBuild G3 Granthenninger\nBuild G3 Granthenninger\n\n27) makertron: Trade G1 R1 Makertron\n\n28) GrantHenninger: Move G2 Granthenninger L2\nCatastrophe L2 G\n\n29) makertron: Build G1 Makertron\n\n30) GrantHenninger: Build Y2 Granthenninger\n\n31) makertron: Build R2 Makertron\n\n32) GrantHenninger: Move R1 Granthenninger Gmh1\n\n33) makertron: Build Y2 Makertron\n\n34) GrantHenninger: Sacrifice Y2 Granthenninger\nMove Y1 Granthenninger Gmh1\nMove Y1 Gmh1 Makertron\nCatastrophe Makertron Y\n\n35) makertron: Trade G1 Y1 Makertron\n\n36) GrantHenninger: Sacrifice G3 Granthenninger\nBuild B1 Gmh1\nBuild B3 Gmh1\nBuild B3 Granthenninger\n\n37) makertron: Build G1 Makertron\n\n38) GrantHenninger: Trade B1 G1 Gmh1\n\n39) makertron: Move G1 Makertron L2\n\n40) GrantHenninger: Trade B3 Y3 Granthenninger\n\n41) makertron: Build R2 Makertron\n\n42) GrantHenninger: Sacrifice G3 Granthenninger\nBuild R3 Gmh1\nBuild R3 Gmh1\nBuild R3 Granthenninger\n\n43) makertron: Build B1 Makertron\n\n44) GrantHenninger: Move B1 Gmh1 Makertron\nCatastrophe Makertron B\n\n\nHomeworlds Online (SDG# 15084)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.10, Ended: 2010.1.11\nParticipants: melktart (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld B1 R2 G3\n\n2) melktart: Homeworld R1 B3 G3\n\n3) logikal: Build G1 Logikal\n\n4) melktart: Build G1 Melktart\n\n5) logikal: Trade G1 Y1 Logikal\n\n6) melktart: Trade G1 Y1 Melktart\n\n7) logikal: Build G1 Logikal\n\n8) melktart: Build G1 Melktart\n\n9) logikal: Discover G1 Logikal G3 L1\n\n10) melktart: Trade G1 R1 Melktart\n\n11) logikal: Build G1 Logikal\n\n12) melktart: Discover R1 Melktart R2 M2\n\n13) logikal: Build G1 Logikal\n\n14) melktart: Build G2 Melktart\n\n15) logikal: Discover G1 Logikal Y3 L2\n\n16) melktart: Move G2 Melktart M2\n\n17) logikal: Sacrifice G3 Logikal\nBuild G2 L2\nBuild G2 Logikal\nBuild G3 Logikal\n\n18) melktart: Build Y1 Melktart\n\n19) logikal: Discover G1 Logikal Y3 L3\n\n20) melktart: Move Y1 Melktart M2\n\n21) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild Y2 Logikal\nBuild Y2 Logikal\n\n22) melktart: Move R1 M2 L3\n\n23) logikal: Trade G2 B2 Logikal\n\n24) melktart: Attack G1 L3\n\n25) logikal: Move G2 L2 Logikal\n\n26) melktart: Build G2 M2\n\n27) logikal: Move Y2 Logikal L1\n\n28) melktart: Build Y2 Melktart\n\n29) logikal: Sacrifice G3 Logikal\nBuild Y3 Logikal\nBuild G3 Logikal\nBuild B1 Logikal\n\n30) melktart: Trade Y1 R1 Melktart\n\n31) logikal: Trade B2 R2 Logikal\n\n32) melktart: Build R3 Melktart\n\n33) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild R3 Logikal\nBuild Y1 L1\n\n34) melktart: Move R3 Melktart M2\n\n35) logikal: Sacrifice G1 L2\nBuild Y3 L1\n\n36) melktart: Move R3 M2 L1\n\n37) logikal: Move R3 Logikal L1\n\n38) melktart: Attack R3 L1\n\n39) logikal: Sacrifice Y2 L1\nDiscover Y3 L1 B2 L4\nMove G1 L1 L4\n\n40) melktart: Attack Y1 L1\n\n41) logikal: Move R2 Logikal L3\n\n42) melktart: Move R3 L1 M2\n\n43) logikal: Attack R1 L3\n\n44) melktart: Move R3 M2 L3\n\n45) logikal: Move R2 L3 L4\n\n46) melktart: Attack R1 L3\n\n47) logikal: Build R3 L4\n\n48) melktart: Move R1 Melktart M2\n\n49) logikal: Build Y2 L4\n\n50) melktart: Move R3 L3 M2\n\n51) logikal: Sacrifice Y2 L4\nMove R2 L4 L3\nMove R2 L3 M2\nCatastrophe M2 Red\n\n52) melktart: Move Y1 L1 Logikal\nCatastrophe Logikal Yellow\n\n53) logikal: Build R1 L4\n\n54) melktart: Build R2 L1\n\n55) logikal: Discover R3 L4 G1 L5\n\n56) melktart: Build G2 Melktart\n\n57) logikal: Sacrifice G3 Logikal\nBuild G2 L4\nBuild Y1 L4\nBuild G3 Logikal\n\n58) melktart: Sacrifice Y2 Melktart\nMove G2 Melktart L4\nMove G3 Melktart L4\nCatastrophe L4 Green\n\n\tlogikal: This seems to have let melktart make a move that caused her to abandon her system, which shouldn&#39;t be legal. neither of us can remember if there was another ship in her home system, but the game shouldn&#39;t have let her make that move.\n\tlogikal: Request that an admin rollback the game to the previous turn (if possible)\n\tlogikal: after checking the history, the game allowed melktart to abandon her homeworld, which should not be a legal move.\n\tlogikal: from the rules PDF: &quot;You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of \r\nyour turn. You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of \r\nyour turn. &quot;\n\tAaron: You are correct.  I will examine the code.  Normally such moves are caught.\n\nHomeworlds Online (SDG# 15086)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.11, Ended: 2010.1.13\nParticipants: logikal (S), GrantHenninger (N)\nWinner: logikal\n\n1) GrantHenninger: Homeworld Y1 B2 G3\n\n2) logikal: Homeworld Y1 B3 G3\n\n3) GrantHenninger: Build G1 Granthenninger\n\n4) logikal: Build G1 Logikal\n\n5) GrantHenninger: Trade G1 Y1 Granthenninger\n\n6) logikal: Build G1 Logikal\n\n7) GrantHenninger: Build Y2 Granthenninger\n\n8) logikal: Discover G1 Logikal Y2 L1\n\n9) GrantHenninger: Discover Y2 Granthenninger Y3 Gmh1\n\n10) logikal: Discover G1 L1 Y3 L2\n\n11) GrantHenninger: Build G1 Granthenninger\n\n12) logikal: Build G2 L2\n\n13) GrantHenninger: Move G1 Granthenninger Gmh1\n\n14) logikal: Discover G2 L2 B2 L3\n\n15) GrantHenninger: Build G2 Granthenninger\n\n16) logikal: Sacrifice G3 Logikal\nBuild G2 L3\nBuild G3 Logikal\nBuild G3 Logikal\n\n17) GrantHenninger: Sacrifice G3 Granthenninger\nBuild Y2 Granthenninger\nBuild G3 Granthenninger\nBuild Y2 Gmh1\n\n18) logikal: Trade G3 Y3 Logikal\n\n19) GrantHenninger: Build G3 Gmh1\n\n20) logikal: Sacrifice G1 L2\nBuild Y3 Logikal\n\n21) GrantHenninger: Sacrifice Y2 Granthenninger\nMove Y2 Gmh1 L3\nMove Y2 L3 Logikal\nCatastrophe Logikal Y\n\n22) logikal: Trade G1 R1 Logikal\n\n23) GrantHenninger: Trade G3 R3 Granthenninger\n\n24) logikal: Trade G2 Y2 L3\n\n25) GrantHenninger: Build G1 Granthenninger\n\n26) logikal: Build Y1 L3\n\n27) GrantHenninger: Move G3 Gmh1 Granthenninger\n\n28) logikal: Sacrifice Y2 L3\nMove G2 L3 Gmh1\nMove G2 Gmh1 Granthenninger\nCatastrophe Granthenninger Green\n\n29) GrantHenninger: Trade Y1 G1 Granthenninger\n\n30) logikal: Move Y1 L3 Logikal\n\n31) GrantHenninger: Build R1 Granthenninger\n\n32) logikal: Build G1 Logikal\n\n33) GrantHenninger: Build G2 Gmh1\n\n34) logikal: Build Y1 Logikal\n\n35) GrantHenninger: Build G2 Granthenninger\n\n36) logikal: Discover G1 Logikal Y2 L1\n\n37) GrantHenninger: Sacrifice Y2 Gmh1\nMove R3 Granthenninger Gmh1\nMove R3 Gmh1 L1\n\n38) logikal: Discover G1 L1 B3 L2\n\n39) GrantHenninger: Move G1 Gmh1 L1\n\n40) logikal: Build G2 Logikal\n\n41) GrantHenninger: Sacrifice G2 Granthenninger\nBuild G2 Granthenninger\nBuild G3 L1\n\n42) logikal: Build G3 L2\n\n43) GrantHenninger: Trade G2 Y2 Granthenninger\n\n44) logikal: Trade G2 B2 Logikal\n\n45) GrantHenninger: Trade G1 B1 Granthenninger\n\n46) logikal: Build B1 Logikal\n\n47) GrantHenninger: Move B1 Granthenninger Gmh1\n\n48) logikal: Discover B2 Logikal G1 L3\n\n49) GrantHenninger: Move B1 Gmh1 L1\n\n50) logikal: Trade B2 Y2 L3\n\n51) GrantHenninger: Trade G3 R3 L1\n\n52) logikal: Trade G3 R3 L2\n\n53) GrantHenninger: Sacrifice Y2 Granthenninger\nMove R3 L1 Logikal\nMove R3 L1 Logikal\n\n54) logikal: Sacrifice R3 L2\nAttack R3 Logikal\nAttack R3 Logikal\nPass\n\n55) GrantHenninger: Move R1 Granthenninger Logikal\nCatastrophe Logikal R\n\n\nHomeworlds Online (SDG# 15087)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.11, Ended: 2010.1.28\nParticipants: GrantHenninger (S), logikal (N), makertron (E)\nWinner: GrantHenninger\n\n1) logikal: Homeworld Y1 B2 G3\n\n2) makertron: Homeworld B2 Y3 G3\n\n3) GrantHenninger: Homeworld B3 Y2 G3\n\n4) logikal: Build G1 Logikal\n\n5) makertron: Build G1 Makertron\n\n6) GrantHenninger: Build G1 Granthenninger\n\n7) logikal: Discover G1 Logikal G3 L1\n\n8) makertron: Build G1 Makertron\n\n9) GrantHenninger: Discover G1 Granthenninger Y1 Gmh1\n\n10) logikal: Build G2 Logikal\n\n11) makertron: Discover G1 Makertron Y1 Spacehat\n\n12) GrantHenninger: Build G2 Granthenninger\n\n13) logikal: Build G2 Logikal\n\n14) makertron: Build G2 Makertron\n\n15) GrantHenninger: Move G1 Gmh1 Makertron\nCatastrophe Makertron G\n\n16) logikal: Trade G2 B2 Logikal\n\n17) GrantHenninger: Trade G2 Y2 Granthenninger\n\n18) logikal: Move B2 Logikal L1\n\n19) GrantHenninger: Build Y1 Granthenninger\n\n20) logikal: Build G1 Logikal\n\n21) GrantHenninger: Trade Y1 R1 Granthenninger\n\n22) logikal: Trade G1 Y1 Logikal\n\n23) GrantHenninger: Move R1 Granthenninger Spacehat\n\n24) logikal: Trade G1 Y1 L1\n\n25) GrantHenninger: Move R1 Spacehat Granthenninger\n\n26) logikal: Pass\n\n27) GrantHenninger: Build Y2 Granthenninger\n\n28) GrantHenninger: Move R1 Granthenninger Spacehat\n\n\nHomeworlds Online (SDG# 14890)\nStarted: 2010.1.11, Ended: 2010.1.12\nParticipants: MaxL (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MaxL: Homeworld B1 G3 R3\n\tTwoShort: Howdy\n\tMaxL: Hi, this is my first game. I&#39;ve read about it in the book but I&#39;m just trying to learn.\n\n3) TwoShort: Build G1 Twoshort\n\n4) MaxL: Build R1 Maxl\n\tTwoShort: I&#39;ll try to give you some pointers as we go...  for example, in future games, I&#39;d recommend starting with a green ship.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MaxL: Trade R1 Y1 Maxl\n\n7) TwoShort: Build G1 Twoshort\n\n8) MaxL: Discover Y1 Maxl B2 Beta\n\n9) TwoShort: Build G1 Twoshort\n\tTwoShort: You probably wanted to grow again before moving out.  Having 4 colors (or at least Green and Yellow) at each world (or at least your Homeworld) lets you build faster.  \n\n10) MaxL: Move Y1 Beta Maxl\n\n11) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n12) MaxL: Build R1 Maxl\n\n13) TwoShort: Build G1 Twoshort\n\n14) MaxL: Move R1 Maxl Bluestar\n\n15) TwoShort: Build G2 Bluestar\n\n16) MaxL: Attack G1 Bluestar\n\n17) TwoShort: Discover G1 Twoshort G2 Grogar\n\n18) MaxL: Move R3 Maxl Grogar\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Grogar\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n20) MaxL: Attack G2 Grogar\n\tTwoShort: So there&#39;s why you wanted a G3 :)\n\tMaxL: Ohhhhh.\r\n\r\nBluebird mistake?\n\n21) TwoShort: Sacrifice G2 Bluestar\nBuild G2 Grogar\nBuild Y1 Twoshort\nCatastrophe Grogar Green\n\tTwoShort: No, the &quot;Bluebird mistake&quot; is having only one color ships in your homeworld when the opponent can move in enough to cause a catastrophe.\r\n  What I just did, sacrificing a G3 to grow 3 ships, one of which is the same G3 back again, we call the &quot;Factory&quot;.  If your opponent gets the factory going and you don&#39;t, you&#39;re in trouble. It&#39;s easiest to avoid that if you start with a g3 to begin with (and Green is a good color to have early anyway.)\r\n  I believe Andy refers to &quot;the prime directive&quot;: Don&#39;t leave your homeworld without a 3 point.\r\n  And there&#39;s no special name for putting your only 3 point at a star the opponent can blow up, but...\n\tMaxL: No wait, Bluebird would be if I had all the same colour.\n\n22) MaxL: Discover Y1 Maxl Y2 Gamma\n\tMaxL: woops\n\tMaxL: forgot about that\r\n\r\nthanks for playing\n\tTwoShort: Weird, I didn&#39;t think it would let you abandon the Homeworld.  You couldn&#39;t have stopped me moving my g3 in then turning it red and taking over, so it wasn&#39;t long to go in any case.\r\nI hope it wasn&#39;t too demoralizing :)  One&#39;s first game is pretty much certain to be a disaster, because early missteps are generally impossible to recover from.\r\n  As a general guideline, try to concentrate at first on growing as efficiently as possible; the longer you can focus on expanding your forces rather than attacking the other guy, the better.\r\n  I mostly ignore the final goal at first, and pretend the whole game is to see who has more 3 pointers when we run out of one or two colors in the stash.  If you win that race, you&#39;ll probably win the game.  \n\n\nHomeworlds Online (SDG# 15092)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.11, Ended: 2010.1.20\nParticipants: melktart (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld R1 B2 G3\n\n2) melktart: Homeworld R1 B3 G3 Melktart\n\n3) logikal: Build G1 Logikal\n\n4) melktart: Build G1 Melktart\n\n5) logikal: Trade G1 Y1 Logikal\n\n6) melktart: Trade G1 Y1 Melktart\n\n7) logikal: Build G1 Logikal\n\n8) melktart: Build G1 Melktart\n\n9) logikal: Discover G1 Logikal Y3 L1\n\n10) melktart: Trade G1 R1 Melktart\n\n11) logikal: Build G1 Logikal\n\n12) melktart: Discover R1 Melktart G2 M2\n\n13) logikal: Build G1 Logikal\n\n14) melktart: Build Y1 Melktart\n\n15) logikal: Build G2 L1\n\n16) melktart: Move Y1 Melktart M2\n\n17) logikal: Trade G1 B1 Logikal\n\n18) melktart: Move R1 M2 L1\n\n19) logikal: Sacrifice B1 Logikal\nTrade G2 R2 L1\n\n20) melktart: Move R1 L1 M2\n\n21) logikal: Build G1 L1\n\n22) melktart: Build R2 M2\n\n23) logikal: Build Y2 Logikal\n\n24) melktart: Build Y2 M2\n\n25) logikal: Trade Y1 B1 Logikal\n\n26) melktart: Sacrifice Y2 M2\nMove R1 M2 L1\nMove R2 M2 L1\n\n27) logikal: Attack R2 L1\n\n28) melktart: Build G2 Melktart\n\n29) logikal: Sacrifice G3 Logikal\nBuild G2 Logikal\nBuild G3 Logikal\nBuild G3 L1\n\n30) melktart: Move G2 Melktart M2\n\n31) logikal: Discover G1 L1 B1 L2\n\n32) melktart: Move R1 L1 M2\n\n33) logikal: Move R2 L1 L2\n\n34) melktart: Discover R1 M2 Y3 M3\n\n35) logikal: Move R2 L1 M2\n\n36) melktart: Move G2 M2 M3\n\n37) logikal: Trade G2 Y2 Logikal\n\n38) melktart: Build G2 Melktart\n\n39) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild B1 Logikal\nBuild R2 M2\n\n40) melktart: Trade G2 B2 Melktart\n\n41) logikal: Sacrifice G3 Logikal\nBuild G2 L2\nBuild G3 Logikal\nBuild R3 L2\n\n42) melktart: Build R3 M3\n\n43) logikal: Move B1 Logikal L1\n\n44) melktart: Move Y1 M2 M3\n\n45) logikal: Move Y2 Logikal L1\n\n46) melktart: Discover R3 M3 B2 M4\n\n47) logikal: Trade G2 Y2 L2\n\n48) melktart: Move B2 Melktart M4\n\n49) logikal: Sacrifice G3 L1\nBuild G2 L2\nBuild G3 L1\nBuild B3 L1\n\n50) melktart: Trade R3 Y3 M4\n\n51) logikal: Build Y1 Logikal\n\n52) melktart: Sacrifice G2 M3\nBuild R3 M3\nBuild R3 M3\n\n53) logikal: Move R2 L2 M3\nCatastrophe M3 Red\n\n54) melktart: Build G2 Melktart\n\n55) logikal: Move R3 L2 M4\n\n56) melktart: Move Y3 M4 L1\n\n57) logikal: Attack B2 M4\n\n58) melktart: Trade G3 B3 Melktart\n\n59) logikal: Sacrifice Y1 Logikal\nMove R3 M4 L1\n\n60) melktart: Move Y1 M3 M4\n\n61) logikal: Trade Y2 R2 L1\n\n62) melktart: Move G2 Melktart M4\n\n63) logikal: Move R2 L1 M4\n\n64) melktart: Move Y3 L1 L2\n\n65) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild R1 L1\nBuild R3 M4\n\n66) melktart: Move G2 M4 L2\n\n67) logikal: Build R3 L1\n\n68) melktart: Trade B3 G3 Melktart\n\n69) logikal: Sacrifice Y2 Logikal\nMove R3 L1 L2\nMove R3 L1 M2\n\n70) melktart: Move G3 Melktart M4\n\n71) logikal: Attack Y3 L2\n\n72) melktart: Move G3 M4 Melktart\n\n73) logikal: Sacrifice Y3 L2\nMove R3 M4 Melktart\nMove G3 L1 M4\nMove G3 M4 Melktart\n\n74) melktart: Attack R3 Melktart\n\n75) logikal: Sacrifice R3 L2\nAttack R3 Melktart\nAttack G3 Melktart\nAttack Y1 Melktart\n\n\nHomeworlds Online (SDG# 15088)\nStarted: 2010.1.12, Ended: 2012.1.8\nParticipants: makertron (S), MaxL (N), GrantHenninger (E)\nWinner: GrantHenninger\n\n1) MaxL: Homeworld B3 R1 G3\n\n2) GrantHenninger: Homeworld Y1 B2 G3\n\n3) makertron: Homeworld Y2 B1 G3\n\tMaxL: Howdy, this is my second game. I&#39;m still a little fresh.\n\n4) MaxL: Build G1 Maxl\n\n5) GrantHenninger: Build G1 Granthenninger\n\n6) makertron: Build G1 Makertron\n\n7) MaxL: Trade G1 Y1 Maxl\n\n8) GrantHenninger: Build G1 Granthenninger\n\n9) makertron: Build G1 Makertron\n\n10) MaxL: Build G2 Maxl\n\n11) GrantHenninger: Trade G1 R1 Granthenninger\n\n12) makertron: Trade G1 R1 Makertron\n\n13) MaxL: Build Y1 Maxl\n\n14) GrantHenninger: Build G1 Granthenninger\n\n15) makertron: Build G1 Makertron\n\n16) MaxL: Discover Y1 Maxl R2 Sectorx\n\n17) GrantHenninger: Trade G1 B1 Granthenninger\n\n18) makertron: Build G1 Makertron\n\n19) MaxL: Move G2 Maxl Sectorx\nCatastrophe Makertron Green\n\n20) GrantHenninger: Discover G1 Granthenninger B3 Gmh1\n\n21) makertron: Trade R1 G1 Makertron\n\n22) MaxL: Build G1 Maxl\n\n23) GrantHenninger: Build G1 Gmh1\n\n24) makertron: Build G2 Makertron\n\n25) MaxL: Build G2 Maxl\n\n26) GrantHenninger: Trade G1 Y1 Gmh1\n\n27) makertron: Trade G1 B1 Makertron\n\n28) MaxL: Trade G1 R1 Maxl\n\n29) GrantHenninger: Build Y2 Gmh1\n\n30) makertron: Build G1 Makertron\n\n31) MaxL: Build Y2 Sectorx\n\n32) GrantHenninger: Move Y1 Gmh1 Granthenninger\n\n33) makertron: Discover G1 Makertron R3 Onoff\n\n34) MaxL: Move Y2 Sectorx Onoff\n\n35) GrantHenninger: Build Y2 Gmh1\n\n36) makertron: Move B1 Makertron Onoff\n\n37) MaxL: Build Y3 Maxl\n\n38) GrantHenninger: Trade Y2 R2 Gmh1\n\n39) makertron: Build G1 Makertron\n\n40) MaxL: Build G1 Sectorx\n\n41) GrantHenninger: Build G2 Gmh1\n\n42) makertron: Trade G1 R1 Makertron\n\n43) MaxL: Move G1 Sectorx Onoff\n\n44) GrantHenninger: Build R2 Granthenninger\n\n45) makertron: Build R2 Makertron\n\n46) MaxL: Build G1 Maxl\n\n47) GrantHenninger: Sacrifice G2 Gmh1\nBuild G2 Gmh1\nBuild G3 Granthenninger\n\n48) GrantHenninger: Sacrifice G3 Granthenninger\nBuild G3 Granthenninger\nBuild R3 Gmh1\nBuild R3 Granthenninger\n\n49) MaxL: Sacrifice G3 Maxl\nBuild G3 Maxl\nBuild G3 Sectorx\nBuild R3 Maxl\n\n50) GrantHenninger: Discover G1 Gmh1 Y2 Gmh2\n\n\nHomeworlds Online (SDG# 15091)\nStarted: 2010.1.12, Ended: 2010.1.16\nParticipants: MaxL (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tMaxL: Hello again!\n\tTwoShort: Hello again.  Here&#39;s my chance to get a pointer in when it can help:  You probably want one of your stars to be a 2.  That will put your homeworld 3 hops from mine instead of 2.  the &quot;small universe&quot; we played last time makes for a more quickly aggressive game, but that&#39;s generally thought to be to the first players advantage.  Most people think a 1/2 homeworld (&quot;Banker&quot;) is best, and I agree.  My habit of taking 1/3 (&quot;Goldilocks&quot;) vs. new players is mostly to be nice, as opposed to an example to follow...\n\n2) MaxL: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) MaxL: Build G1 Maxl\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MaxL: Build G1 Maxl\n\n7) TwoShort: Build Y1 Twoshort\n\n8) MaxL: Trade G1 Y1 Maxl\n\n9) TwoShort: Build Y2 Twoshort\n\n10) MaxL: Build G1 Maxl\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) MaxL: Trade G1 R1 Maxl\n\n13) TwoShort: Build G1 Twoshort\n\n14) MaxL: Discover Y1 Maxl B1 Abc\n\tTwoShort: Don&#39;t flip it back now, but as a general guideline, I wouldn&#39;t take red before you need to.  Until having a red means you could get to me and do real damage, or that I can&#39;t do real damage even though I could get to you, it&#39;s not doing anything for you.  \n\n15) TwoShort: Build G1 Twoshort\n\n16) MaxL: Move R1 Maxl Abc\n\n17) TwoShort: Discover G1 Twoshort B2 Bonanza\n\n18) MaxL: Move R1 Abc Grogar\n\n19) TwoShort: Discover Y1 Grogar B1 Blitzen\n\n20) MaxL: Move Y1 Abc Maxl\n\n21) TwoShort: Build G2 Bonanza\n\n22) MaxL: Trade G1 R1 Maxl\n\tTwoShort: Not sure I understand that; moving backward is seldom a good idea.  Note that if you build yellow at home, I can move in and blow it up.\n\tTwoShort: Green too.\n\n23) TwoShort: Discover Y1 Twoshort G2 Gonzo\n\n24) MaxL: Build R2 Grogar\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G3 Twoshort\nBuild G3 Bonanza\n\n26) MaxL: Build R2 Grogar\n\n27) TwoShort: Trade G2 R2 Bonanza\n\n28) MaxL: Build Y2 Maxl\n\n29) TwoShort: Move Y1 Blitzen Maxl\nCatastrophe Maxl Yellow\n\n30) MaxL: Trade R1 Y1 Maxl\n\n31) TwoShort: Sacrifice G3 Bonanza\nBuild R1 Bonanza\nBuild Y1 Twoshort\nBuild Y2 Gonzo\n\n32) MaxL: Build Y2 Maxl\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G3 Twoshort\nBuild Y3 Twoshort\n\n\n34) MaxL: Discover Y1 Maxl B1 Zeus\n\tMaxL: I&#39;ve started teaching some people how to play IRL, I just wanted to know if you could move if there was only a yellow ship in the system and not a yellow star.\n\n35) TwoShort: Sacrifice Y3 Twoshort\nMove R1 Bonanza Maxl\nMove R1 Maxl Grogar\nMove G2 Bonanza Maxl\nCatastrophe Grogar Red\n\tMaxL: Sorry, the thing early was me explaining why I reversed my last move.\n\n36) MaxL: Move Y1 Zeus Maxl\n\n37) TwoShort: Trade G2 B2 Maxl\n\n38) MaxL: Trade Y2 R2 Maxl\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Maxl\nBuild B1 Maxl\nPass\nCatastrophe Maxl Blue\n\n\tMaxL: Oh damn!\r\n\r\nI didn&#39;t even realize that move!\r\n\r\nGood game.\n\nHomeworlds Online (SDG# 15094)\nStarted: 2010.1.12, Ended: 2010.2.4\nParticipants: ZackStack (S), MaxL (N)\nWinner: ZackStack\n\n1) MaxL: Homeworld B3 R1 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey Max!  Thanks for the challenge.  Have a good game!\n\n3) MaxL: Build G1 Maxl\n\tMaxL: No problem!\r\n\r\nI&#39;m still trying to get a solid gameplay plan out, I&#39;m fairly new to homeworlds but I think it&#39;s a pretty sweet game.\r\n\r\nIf you have any constructive critism or pointers please tell me!\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: Will do!  I really enjoy playing also... but can&#39;t seem to interest anyone in actually playing in person :-(\n\n5) MaxL: Build G1 Maxl\n\tMaxL: See, I am the person starting Icehouse where I live. Everyone learns the games because I teach them, so I need to know the rules solidly, which I can&#39;t say I know about Homeworlds.\r\n\r\nSo I&#39;m just trying to learn the rules inside and out and be a better player.\n\n6) ZackStack: Build G2 Zackstack\n\tZackStack: I&#39;m in the same boat where I live... but few of the regular guys at my club are into abstracts.  I still get to play plenty of other games though :-)\r\n\r\nPlaying Homeworlds here definitely gave me a great grasp of how the game works though!\n\n7) MaxL: Trade G1 Y1 Maxl\n\tZackStack: One warning: If you leave a possible catastrophe on the board I can set it off on my turn...\n\n8) ZackStack: Trade G2 Y2 Zackstack\n\tZackStack: Hey Max!  That was what I meant!  On my turn I could cause a catastrophe to blow up all your green ships and win the game...  Undo that last build and try something else :-)\n\n9) MaxL: Discover G1 Maxl B2 Jupiter\n\tZackStack: Much Better ;-)\n\n10) ZackStack: Discover G1 Zackstack B3 Zeus\n\n11) MaxL: Trade G1 Y1 Jupiter\n\n12) ZackStack: Build G1 Zackstack\n\n13) MaxL: Build G1 Maxl\n\n14) ZackStack: Build G2 Zeus\n\n15) MaxL: Move G1 Maxl Jupiter\n\n16) ZackStack: Trade G1 Y1 Zeus\n\n17) MaxL: Build Y2 Maxl\n\n18) ZackStack: Build G1 Zeus\n\tZackStack: That is a very dangerous move!  I can sacrifice the Y2 in my system to move my G1 at Zeus to your homeworld and cause a green catastrophe there.  Not insurmountable perhaps... but a major setback for you all the same. \n\tZackStack: ... feel free to undo!\n\n19) MaxL: Build G2 Jupiter\n\n20) ZackStack: Sacrifice G2 Zeus\nBuild Y2 Zackstack\nBuild Y3 Zeus\n\n21) MaxL: Build Y3 Jupiter\n\n22) ZackStack: Trade Y3 R3 Zeus\n\n23) MaxL: Trade Y1 R1 Jupiter\n\n24) ZackStack: Discover R3 Zeus G2 Gaia\n\tZackStack: So... what do you think so far?\n\n25) MaxL: Build G2 Maxl\n\n26) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zeus\nBuild G3 Zackstack\nBuild R1 Gaia\n\n27) MaxL: Build R2 Jupiter\n\n28) ZackStack: Move Y1 Zeus Gaia\n\n29) MaxL: Discover G2 Maxl B2 Bluestar\n\tZackStack: Now here&#39;s a neat trick... ;-)\n\n30) ZackStack: Move Y2 Zackstack Zeus\n\n31) MaxL: Move Y1 Maxl Bluestar\n\n32) ZackStack: Sacrifice G3 Zackstack\nBuild Y1 Zeus\nBuild Y3 Gaia\nBuild Y3 Zackstack\n\n33) MaxL: Sacrifice Y2 Maxl\nMove G1 Jupiter Zeus\nMove G2 Jupiter Zeus\nCatastrophe Zeus Green\n\n34) ZackStack: Trade Y2 R2 Zeus\n\n35) MaxL: Discover R1 Jupiter G1 Saturn\n\n36) ZackStack: Discover R2 Zeus Y2 Apollo\n\n37) MaxL: Build G1 Maxl\n\n38) ZackStack: Sacrifice G1 Zackstack\nBuild R3 Apollo\n\tZackStack: I didn&#39;t see that coming... nice work!  Its always fun to blow up big ships :-)\n\n39) MaxL: Build R3 Saturn\n\n40) ZackStack: Move R3 Apollo Maxl\n\n41) MaxL: Attack R3 Maxl\n\n42) ZackStack: Sacrifice Y2 Zackstack\nMove R2 Apollo Maxl\nMove R1 Gaia Maxl\nCatastrophe Maxl Red\n\n43) MaxL: Build Y2 Bluestar\n\n44) ZackStack: Trade Y3 G3 Zackstack\n\n45) MaxL: Trade G1 R1 Maxl\n\n46) ZackStack: Move Y1 Zeus Zackstack\n\tZackStack: Boom!\n\n47) MaxL: Move Y1 Bluestar Saturn\n\n48) ZackStack: Build Y2 Zackstack\n\n49) MaxL: Build G1 Bluestar\n\n50) ZackStack: Trade Y1 B1 Zackstack\n\n51) MaxL: Build G1 Maxl\n\n52) ZackStack: Build B1 Zackstack\n\n53) MaxL: Trade G1 Y1 Maxl\n\n54) ZackStack: Discover B1 Zackstack Y3 Hera\n\n55) MaxL: Build Y2 Maxl\n\n56) ZackStack: Move B1 Hera Gaia\n\n57) MaxL: Build Y3 Saturn\n\n58) ZackStack: Build B2 Gaia\n\n59) MaxL: Discover G1 Bluestar B3 Kefka\n\n60) ZackStack: Sacrifice Y3 Gaia\nMove B2 Gaia Maxl\nMove B1 Gaia Maxl\nMove B1 Zackstack Maxl\nCatastrophe Maxl Blue\n\n\tZackStack: Thanks for the game Max!  I hope you enjoyed it and got a better handle on some of the rules.  Shoot me a challenge for another... or a different game if you&#39;re in the mood.  Good Gaming!\n\nHomeworlds Online (SDG# 15108)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.13, Ended: 2010.1.14\nParticipants: tvgide (S), grico (N)\nWinner: grico\n\n1) grico: Homeworld R3 G2 B3\n\tgrico: whore\n\ttvgide: bitch\n\n2) tvgide: Homeworld B1 Y2 G3\n\tgrico: start the game already\n\ttvgide: monk, i need a monk!\n\n3) grico: Build B1 Grico\n\ttvgide: monk, i need a monk!\n\n4) tvgide: Build G1 Tvgide\n\n5) grico: Trade B1 Y1 Grico\n\n6) tvgide: Trade G1 R1 Tvgide\n\n7) grico: Build Y1 Grico\n\n8) tvgide: Trade R1 Y1 Tvgide\n\n9) grico: Discover Y1 Grico G1 Teamslack\n\n10) tvgide: Discover Y1 Tvgide R3 Tvgide2\n\ttvgide: i&#39;m just moving the king through, i promise.\n\n11) grico: Build Y2 Teamslack\n\n12) tvgide: Build G1 Tvgide\n\n13) grico: Build Y2 Grico\n\n14) tvgide: Trade G1 R1 Tvgide\n\n15) grico: Build Y3 Grico\n\n16) tvgide: Build R1 Tvgide\n\n17) grico: Trade Y3 R3 Grico\n\n18) tvgide: Build G1 Tvgide\n\n19) grico: Build Y3 Grico\n\n20) tvgide: Move G1 Tvgide Tvgide2\n\n21) grico: Move R3 Grico Teamslack\n\n22) tvgide: Build G1 Tvgide2\n\n23) grico: Move Y1 Teamslack Tvgide2\n\n24) tvgide: Attack Y1 Tvgide2\n\n25) grico: Build Y3 Teamslack\n\n26) tvgide: Build Y3 Tvgide2\n\n27) grico: Move Y2 Teamslack Tvgide2\nCatastrophe Tvgide2 Y\n\n28) tvgide: Trade R1 Y1 Tvgide\n\n29) grico: Build Y1 Teamslack\n\n30) tvgide: Move G3 Tvgide Tvgide2\n\n31) grico: Sacrifice Y2 Grico\nMove R3 Teamslack Tvgide2\nMove R3 Tvgide2 Tvgide\n\n32) tvgide: Pass\n\n33) grico: Attack R1 Tvgide\n\n34) tvgide: Build G2 Tvgide2\n\n35) grico: Pass Catastrophe Tvgide2 G\n\n36) tvgide: Trade Y1 B1 Tvgide\nCatastrophe Tvgide2 G\n\n37) grico: Attack B1 Tvgide\n\n\nHomeworlds Online (SDG# 15120)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.14, Ended: 2010.1.20\nParticipants: tvgide (S), grico (N)\nWinner: tvgide\n\n1) grico: Homeworld Y3 G1 B3\n\n2) tvgide: Homeworld G2 B1 Y3\n\n3) grico: Build B1 Grico\n\n4) tvgide: Build Y1 Tvgide\n\n5) grico: Trade B1 Y1 Grico\n\n6) tvgide: Discover Y1 Tvgide B3 T1\n\n7) grico: Build B1 Grico\n\n8) tvgide: Build Y1 Tvgide\n\n9) grico: Build Y2 Grico\n\n10) tvgide: Trade Y1 R1 Tvgide\n\n11) grico: Trade B1 R1 Grico\n\n12) tvgide: Trade Y1 G1 T1\n\n13) grico: Discover Y1 Grico G2 G1\n\n14) tvgide: Build R1 Tvgide\n\n15) grico: Build R2 Grico\n\n16) tvgide: Move R1 Tvgide T1\n\n17) grico: Move R2 Grico G1\n\n18) tvgide: Build R2 T1\n\n19) grico: Build B1 Grico\n\n20) tvgide: Trade R2 Y2 T1\n\n21) grico: Trade B1 G1 Grico\n\n22) tvgide: Build R2 Tvgide\n\n23) grico: Move G1 Grico G1\n\n24) tvgide: Discover R2 Tvgide G3 T2\n\n25) grico: Build G2 G1\n\n26) tvgide: Move G1 T1 G1\nCatastrophe G1 Green\n\n27) grico: Build R2 Grico\n\n28) tvgide: Trade R1 G1 T1\n\n29) grico: Build B1 Grico\n\n30) tvgide: Build Y1 T1\n\n31) grico: Trade B1 G1 Grico\n\n32) tvgide: Discover Y2 T1 R2 T3\n\n33) grico: Discover G1 Grico G2 G1\n\n34) tvgide: Build Y1 Tvgide\n\n35) grico: Build Y1 Grico\n\n36) tvgide: Sacrifice Y2 T3\nMove Y1 T1 G1\nMove Y1 G1 Grico\nCatastrophe Grico Yellow\n\n37) grico: Build B1 Grico\n\n38) tvgide: Move Y1 Tvgide T2\n\n39) grico: Trade B1 Y1 Grico\n\n40) tvgide: Move R2 T2 G1\n\n41) grico: Build Y1 Grico\n\n42) tvgide: Attack G1 G1\n\n43) grico: Build R1 Grico\n\n44) tvgide: Build G2 T1\n\n45) grico: Discover R2 Grico B3 G2\n\n46) tvgide: Trade G2 Y2 T1\n\n47) grico: Move Y1 Grico G2\n\n48) tvgide: Build Y2 T1\n\n49) grico: Build Y2 Grico\n\n50) tvgide: Build Y3 T2\n\n51) grico: Move Y1 Grico G2\n\n52) tvgide: Trade Y2 G2 T1\n\n53) grico: Sacrifice Y2 Grico\nMove R2 G2 Grico\nMove R2 Grico T1\n\n54) tvgide: Sacrifice R1 Tvgide\nAttack R2 T1\n\n55) grico: Build R1 Grico\n\n56) tvgide: Build Y2 Tvgide\n\n57) grico: Build R2 Grico\n\n58) tvgide: Build R3 G1\nCatastrophe Grico Red\n\n59) grico: Move Y1 G2 Tvgide\n\n60) tvgide: Sacrifice Y2 Tvgide\nMove R3 G1 Grico\nPass\n\n61) grico: Move Y1 G2 Grico\n\n62) tvgide: Sacrifice R2 G1\nAttack B3 Grico\nAttack Y1 Grico\n\n\nHomeworlds Online (SDG# 15122)\nStarted: 2010.1.14, Ended: 2010.1.14\nParticipants: logikal (S), tvgide (N)\nWinner: tvgide\n\n1) tvgide: Homeworld G3 B2 Y3\n\n2) logikal: Homeworld R1 B2 G3\n\n3) tvgide: Build Y1 Tvgide\n\n4) logikal: Build G1 Logikal\n\n5) tvgide: Build Y1 Tvgide\n\n6) logikal: Build G1 Logikal\n\n7) tvgide: Discover Y1 Tvgide Y1 T1\n\n8) logikal: Trade G3 Y3 Logikal\n\n9) tvgide: Build Y2 Tvgide\n\n10) logikal: Discover G1 Logikal B3 L1\n\n11) tvgide: Trade Y1 R1 Tvgide\n\n12) logikal: Build Y1 Logikal\n\n13) tvgide: Sacrifice Y2 Tvgide\nMove R1 Tvgide T1\nMove R1 T1 L1\n\n14) logikal: Build G1 Logikal\n\n15) tvgide: Attack G1 L1\n\n16) logikal: Build Y2 Logikal\n\n17) tvgide: Build Y2 Tvgide\n\n18) logikal: Trade Y2 B2 Logikal\n\n19) tvgide: Trade Y2 R2 Tvgide\n\n20) logikal: Trade G1 R1 Logikal\n\n21) tvgide: Build R2 L1\n\n22) logikal: Discover R1 Logikal Y3 L2\n\n23) tvgide: Trade R2 Y2 L1\n\n24) logikal: Build G1 Logikal\n\n25) tvgide: Build R2 L1\n\n26) logikal: Move R1 L2 T1\n\n27) tvgide: Move R2 L1 T1\n\n28) logikal: Discover R1 T1 B3 L2\n\n29) tvgide: Build Y2 Tvgide\n\n30) logikal: Move B2 Logikal L2\n\n31) tvgide: Move Y2 Tvgide T1\n\n32) logikal: Move Y1 Logikal L2\n\n33) tvgide: Discover Y2 T1 R3 T2\n\n34) logikal: Move Y3 Logikal T2\n\n35) tvgide: Build G2 L1\n\n36) logikal: Trade G1 B1 Logikal\n\n37) tvgide: Sacrifice G2 L1\nBuild Y2 Tvgide\nBuild Y3 L1\n\n38) logikal: Discover Y3 T2 B1 L3\n\n39) tvgide: Trade Y3 R3 L1\n\n40) logikal: Trade Y3 G3 L3\n\n41) tvgide: Move R3 L1 Logikal\n\n42) logikal: Sacrifice G3 L3\nBuild Y3 L2\nBuild B1 L2\nBuild B1 L2\n\n43) tvgide: Sacrifice R2 T1\nAttack B1 Logikal\nAttack G1 Logikal\n\n\nHomeworlds Online (SDG# 15132)\nStarted: 2010.1.15, Ended: 2010.2.10\nParticipants: GrantHenninger (S), tvgide (N)\nWinner: GrantHenninger\n\n1) tvgide: Homeworld G3 B2 Y3\n\n2) GrantHenninger: Homeworld Y1 B2 G3\n\n3) tvgide: Build Y1 Tvgide\n\n4) GrantHenninger: Build G1 Granthenninger\n\n5) tvgide: Trade Y1 R1 Tvgide\n\n6) GrantHenninger: Build G1 Granthenninger\n\n7) tvgide: Discover R1 Tvgide G1 T1\n\n8) GrantHenninger: Trade G1 R1 Granthenninger\n\n9) tvgide: Build Y1 Tvgide\n\n10) GrantHenninger: Discover G1 Granthenninger B3 Gmh1\n\n11) tvgide: Trade Y1 R1 Tvgide\n\n12) GrantHenninger: Build R2 Granthenninger\n\n13) tvgide: Build R2 T1\n\n14) GrantHenninger: Move R1 Granthenninger Gmh1\n\n15) tvgide: Build Y1 Tvgide\n\n16) GrantHenninger: Sacrifice G3 Granthenninger\nBuild R2 Gmh1\nBuild R3 Granthenninger\nBuild R3 Gmh1\n\n17) tvgide: Move Y1 Tvgide T1\n\n18) GrantHenninger: Trade R2 Y2 Gmh1\n\n19) tvgide: Build Y1 Tvgide\n\n20) GrantHenninger: Trade R2 Y2 Granthenninger\n\n21) tvgide: Build Y2 T1\n\n22) GrantHenninger: Build Y3 Gmh1\n\n23) tvgide: Sacrifice Y2 T1\nMove R1 T1 Gmh1\nMove R2 T1 Gmh1\nCatastrophe Gmh1 Red\n\n24) GrantHenninger: Trade Y3 G3 Gmh1\n\n25) tvgide: Trade Y1 B1 Tvgide\n\n26) GrantHenninger: Discover G1 Gmh1 Y1 Gmh2\n\n27) tvgide: Build R1 Tvgide\n\n28) GrantHenninger: Build Y2 Gmh1\n\n29) tvgide: Build Y3 Tvgide\n\n30) GrantHenninger: Build Y3 Gmh1\n\n31) tvgide: Move Y1 T1 Gmh1\nCatastrophe Gmh1 Yellow\n\n32) GrantHenninger: Build G1 Gmh1\n\n33) tvgide: Move Y3 Tvgide Gmh2\n\n34) GrantHenninger: Trade G1 Y1 Gmh1\n\n35) tvgide: Move R1 Tvgide Gmh2\n\n36) GrantHenninger: Trade Y1 R1 Gmh1\n\n37) tvgide: Attack G1 Gmh2\n\n38) GrantHenninger: Build R2 Gmh1\n\n39) tvgide: Build Y1 Gmh2\n\n40) GrantHenninger: Trade R2 Y2 Gmh1\n\n41) tvgide: Build B1 Tvgide\n\n42) GrantHenninger: Build R2 Gmh1\n\n43) tvgide: Move B1 Tvgide Gmh2\n\n44) GrantHenninger: Trade R2 G2 Gmh1\n\n45) tvgide: Trade Y3 G3 Gmh2\n\n46) GrantHenninger: Move G2 Gmh1 Granthenninger\n\n47) tvgide: Build R2 Gmh2\n\n48) GrantHenninger: Build Y2 Gmh1\n\n49) tvgide: Trade Y1 B1 Gmh2\n\n50) GrantHenninger: Sacrifice G2 Granthenninger\nBuild Y1 Gmh1\nBuild Y3 Granthenninger\n\n51) tvgide: Discover G3 Gmh2 B3 T1\n\n52) GrantHenninger: Build R2 Gmh1\n\n53) tvgide: Trade G3 Y3 T1\n\n54) GrantHenninger: Discover Y2 Granthenninger B3 Gmh3\n\n55) tvgide: Build G1 Gmh2\n\n56) GrantHenninger: Discover Y2 Gmh1 G1 Gmh4\n\n57) tvgide: Move G1 Gmh2 T1\n\n58) GrantHenninger: Move R2 Gmh1 Gmh4\n\n59) tvgide: Move R1 Gmh2 T1\n\n60) GrantHenninger: Build G2 Gmh1\n\n61) tvgide: Build G2 T1\n\n62) GrantHenninger: Move G2 Gmh1 Granthenninger\n\n63) tvgide: Build B2 Gmh2\n\n64) GrantHenninger: Build G2 Gmh1\n\n65) tvgide: Sacrifice Y3 T1\nMove G2 T1 Granthenninger\nMove G1 T1 Granthenninger\nMove R1 T1 Granthenninger\n\n66) GrantHenninger: Attack R1 Granthenninger\n\n67) tvgide: Sacrifice G2 Granthenninger\nBuild B3 Tvgide\nBuild Y3 Tvgide\n\n68) GrantHenninger: Sacrifice G3 Gmh1\nBuild R2 Gmh1\nBuild R3 Gmh4\nBuild R3 Granthenninger\n\n69) tvgide: Move R2 Gmh2 Gmh3\n\n70) GrantHenninger: Move R3 Granthenninger Gmh3\n\n71) tvgide: Sacrifice Y3 Tvgide\nMove B1 Gmh2 Gmh3\nMove B1 Gmh2 Gmh3\nMove B2 Gmh2 Gmh3\nCatastrophe Gmh3 Blue\n\n72) GrantHenninger: Attack G1 Granthenninger\n\n73) tvgide: Build G2 Gmh2\n\n74) GrantHenninger: Build G3 Gmh1\n\n75) tvgide: Build Y2 Tvgide\n\n76) GrantHenninger: Sacrifice G3 Gmh1\nBuild Y3 Gmh4\nBuild G3 Gmh1\nBuild G3 Granthenninger\n\n77) tvgide: Sacrifice Y2 Tvgide\nMove G1 Gmh2 Gmh1\nMove G1 Gmh1 Granthenninger\nCatastrophe Granthenninger Green\n\n78) GrantHenninger: Trade R1 B1 Gmh1\n\n79) tvgide: Move B3 Tvgide Gmh2\n\n80) GrantHenninger: Move B1 Gmh1 Gmh4\n\n81) tvgide: Trade B3 R3 Gmh2\n\n82) GrantHenninger: Trade R2 G2 Gmh4\n\n83) tvgide: Move B1 Tvgide Gmh2\n\n84) GrantHenninger: Sacrifice Y2 Gmh1\nMove R3 Granthenninger Gmh1\nMove R3 Gmh1 Gmh4\n\n85) tvgide: Build G1 Gmh2\n\n86) GrantHenninger: Sacrifice Y2 Gmh4\nMove R3 Gmh4 Tvgide\nMove R3 Gmh4 Tvgide\n\n\nHomeworlds Online (SDG# 15149)\nStarted: 2010.1.16, Ended: 2010.1.23\nParticipants: captncavern (S), supergnouf (N)\nWinner: supergnouf\n\n1) supergnouf: Homeworld G3 B1 Y3\n\tcaptncavern: J&#39;en d&eacute;duis qu&#39;Ordo ne t&#39;int&eacute;resse pas ;)\n\n2) captncavern: Homeworld G3 B2 Y3\n\n3) supergnouf: Build Y1 Supergnouf\n\n4) captncavern: Build Y1 Captncavern\n\n5) supergnouf: Trade Y1 R1 Supergnouf\n\n6) captncavern: Build Y1 Captncavern\n\n7) supergnouf: Build R1 Supergnouf\n\n8) captncavern: Trade Y1 G1 Captncavern\n\n9) supergnouf: Trade R1 G1 Supergnouf\n\n10) captncavern: Trade Y1 R1 Captncavern\n\n11) supergnouf: Build Y1 Supergnouf\n\n12) captncavern: Discover G1 Captncavern Y1 Jaune\n\n13) supergnouf: Discover Y1 Supergnouf G2 Kilman\n\n14) captncavern: Build G1 Jaune\n\n15) supergnouf: Build Y1 Supergnouf\n\n16) captncavern: Build G2 Jaune\n\n17) supergnouf: Build Y2 Kilman\n\n18) captncavern: Build Y2 Captncavern\n\n19) supergnouf: Build Y2 Supergnouf\n\n20) captncavern: Build R1 Captncavern\n\n21) supergnouf: Sacrifice Y2 Supergnouf\nMove G1 Supergnouf Kilman\nMove G1 Kilman Jaune\nCatastrophe Jaune G\n\n22) captncavern: Discover Y2 Captncavern G1 Vert\n\n23) supergnouf: Build R2 Supergnouf\n\n24) captncavern: Build R2 Captncavern\n\n25) supergnouf: Discover Y1 Kilman B1 Tort\n\n26) captncavern: Trade R1 G1 Captncavern\n\n27) supergnouf:\nDiscover Y3 Supergnouf G2 Tiaw\n\n28) captncavern: Move G1 Captncavern Vert\n\n29) supergnouf: Sacrifice Y2 Kilman\nMove Y3 Tiaw Vert\nMove Y1 Tort Captncavern\n\n30) captncavern: Discover Y2 Vert G2 Plus\n\n31) supergnouf: Build Y1 Captncavern\n\n32) captncavern: Sacrifice R2 Captncavern\nAttack Y1 Captncavern\nAttack Y1 Captncavern\n\n33) supergnouf: Build Y2 Supergnouf\n\n34) captncavern: Sacrifice G1 Vert\nBuild R1 Captncavern\n\n35) supergnouf: Move Y3 Vert Captncavern\nCatastrophe Captncavern Y\n\n36) captncavern: Build R2 Captncavern\n\n37) supergnouf: Discover R2 Supergnouf G2 Roto\n\tcaptncavern: Agressif le Nico !\n\n38) captncavern: Trade R1 Y1 Captncavern\n\n39) supergnouf: Move Y1 Supergnouf Roto\n\n40) captncavern: Discover R1 Captncavern Y1 Hop\n\n41) supergnouf: Build R1 Supergnouf\n\n42) captncavern: Build Y2 Plus\n\n43) supergnouf: Build Y3 Roto\n\n44) captncavern: Build Y3 Captncavern\n\n45) supergnouf: Build Y3 Supergnouf\n\n46) captncavern: Discover Y2 Plus B1 Moins\n\n47) supergnouf: Move Y3 Roto Hop\n\n48) captncavern: Trade Y1 G1 Captncavern\n\n49) supergnouf: Sacrifice R1 Supergnouf\nAttack R1 Hop\n\n50) captncavern: Build Y1 Plus\n\n51) supergnouf: Discover Y2 Supergnouf B2 Atoa\n\n52) captncavern: Build R1 Captncavern\n\n53) supergnouf: Build R2 Supergnouf\n\n54) captncavern: Move R2 Captncavern Moins\n\n55) supergnouf: Build R3 Roto\n\n56) captncavern: Build R3 Captncavern\n\n57) supergnouf: Move R3 Roto Moins\n\n58) captncavern: Move R2 Moins Plus\n\n59) supergnouf: Build R3 Roto\n\tsupergnouf: ca resemble a une course &agrave; l&#39;armement ce qu&#39;on fait la...\n\n60) captncavern: Discover Y2 Moins G2 Loin\n\tcaptncavern: Y&#39;a trop de monde, l&agrave;, &ccedil;a devient difficile de s&#39;y retrouver.\n\n61) supergnouf: Move Y3 Supergnouf Plus\n\n62) captncavern: Sacrifice Y2 Loin\nMove Y1 Plus Hop\nMove Y2 Plus Hop\nCatastrophe Hop Y\n\tsupergnouf: ca deviendra vraiment le bordel quand on fera du vert et du bleu...\n\n63) supergnouf: Sacrifice R1 Supergnouf\nAttack R2 Plus\n\n64) captncavern: Build G1 Captncavern\n\n65) supergnouf: Build R1 Supergnouf\n\n66) captncavern: Trade R3 Y3 Captncavern\n\tcaptncavern: Un peu de m&eacute;nage, mais pas forc&eacute;ment &agrave; mon avantage :(\n\n67) supergnouf: Trade R2 G2 Supergnouf\n\tsupergnouf: j&#39;ai fait un peu de promo pour ton site ice house sur trick track.\r\nPar ailleur, je me disais que ca pourrais &ecirc;tre bien que ton logo en haut &agrave; gauche (enfin, pour le moment ta pile de pyramide) soit en fait un lien vers la page d&#39;accueil du site. Souvennt c&#39;est comme ca sur les sites et du coup, quand t&#39;es un peu perdu i3l suffit de cliquer en haut sur le logo et te revoila &agrave; l&#39;entr&eacute;e :)\r\ntu me dira que ton site est pas encore d&eacute;dalesque mais bon... de toute les mani&egrave;re, je ne fais que proposer :)\n\tcaptncavern: Merci pour la pub. Je comprends pas trop comment fonctionne tric-trac, mais c&#39;est plus par flemme qu&#39;autre chose, je pense. J&#39;ai rajout&eacute; des liens sur les pages des jeux qui en ont, mais c&#39;est tout, pour l&#39;instant.\r\nTr&egrave;s bonne id&eacute;e, le lien sur l&#39;image, et pas compliqu&eacute; &agrave; faire. Ce sera fait dans le WE, normalement. Je vais aussi r&eacute;fl&eacute;chir &agrave; une galerie de photos, d&egrave;s que j&#39;aurai un peu de temps.\r\nAh, et je me demandais si le lien du Flux RSS &eacute;tait suffisamment clair. Je vais peut-&ecirc;tre expliciter un peu plus dans l&#39;info-bulle, mais je ne suis pas s&ucirc;r que &ccedil;a suffise. Il faudrait que je regarde comment c&#39;est fait sur d&#39;autres sites.\n\n68) captncavern: Build R1 Captncavern\n\tsupergnouf: je suis toujours pas convaincu par les fils rss du coup je me suis pas trop pench&eacute; sur le tient.\n\n69) supergnouf: Build R2 Plus\n\n70) captncavern: Sacrifice Y3 Captncavern\nDiscover Y3 Captncavern Y1 Aa\nDiscover Y3 Aa Y2 Bb\nMove Y3 Bb Supergnouf\n\tcaptncavern: Ben, les fils rss, c&#39;est bien, mais il faut pas en avoir trop, sinon, tu les lis jamais. Ca t&#39;&eacute;vite juste d&#39;avoir &agrave; faire le tour des sites o&ugrave; tu passes r&eacute;guli&egrave;rement alors qu&#39;il n&#39;y a rien de nouveau. C&#39;est typiquement utile pour un petit site comme le mien o&ugrave; je rajoute un truc int&eacute;ressant de temps en temps, et inutile pour un gros site qui brasse des tonnes d&#39;infos, &agrave; mon avis.\n\n71) supergnouf: Sacrifice Y2 Atoa\nMove R3 Moins Captncavern\nMove Y1 Roto Supergnouf\n\tsupergnouf: je sais bien &agrave; quoi ca sert, mais les quelquesfois ou j&#39;ai essay&eacute; de m&#39;en servir, ca ne marchait pas suffisament bien pour que ca me soit vraiment utile (globalement ca foirais les dates d&#39;un rss qui du coup n&#39;apparaissait pas dans la liste)\n\n72) captncavern: Sacrifice R1 Captncavern\nAttack R1 Supergnouf\n\n73) supergnouf: Sacrifice R3 Roto\nAttack R1 Captncavern\nAttack G1 Captncavern\nAttack G1 Captncavern\n\tcaptncavern: Ca, c&#39;est surement que le flux rss en question &eacute;tait mal foutu. Le mien, normalement il arrive bien, et avec la bonne date :D\n\n\nHomeworlds Online (SDG# 15105)\nStarted: 2010.1.16, Ended: 2010.4.1\nParticipants: Mandrel (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) Mandrel: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\tMandrel: Have a good game!\n\tzoltar: You too!\n\n4) Mandrel: Build G1 Mandrel\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mandrel: Trade G1 R1 Mandrel\n\n7) zoltar: Build Y1 Zoltar\n\n8) Mandrel: Build R1 Mandrel\n\n9) zoltar: Build Y2 Zoltar\n\n10) Mandrel: Build R2 Mandrel\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) Mandrel: Trade R2 Y2 Mandrel\n\n13) zoltar: Build Y2 Zoltar\n\n14) Mandrel: Build R2 Mandrel\n\n15) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n16) Mandrel: Discover R2 Mandrel G3 Light\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n18) Mandrel: Move Y2 Mandrel Light\n\tzoltar: oh wait -- I can try a more fancy move instead!\n\n19) zoltar: Sacrifice Y1 Zoltar\nMove Y3 Greenbelt Light\n\tMandrel: Blimey, thats a bit scary!\n\n20) Mandrel: Move Y2 Light Mandrel\n\n21) zoltar: Sacrifice R2 Zoltar\nAttack R2 Light\nPass\n\n22) Mandrel: Build G1 Mandrel\n\n23) zoltar: Trade Y3 G3 Zoltar\n\n24) Mandrel: Discover G1 Mandrel Y3 Darkness\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Light\nBuild R2 Light\nBuild Y3 Zoltar\n\n26) Mandrel: Discover Y2 Mandrel B3 Grey\n\n27) zoltar: Trade Y2 G2 Zoltar\n\n28) Mandrel: Move R1 Mandrel Grey\n\n29) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Light Greenbelt\nMove Y3 Greenbelt Grey\n\n30) Mandrel: Sacrifice G1 Darkness\nBuild R2 Grey\n\n31) zoltar: Sacrifice R2 Light\nAttack R2 Grey\nAttack Y2 Grey\n\n32) Mandrel: Build R2 Mandrel\n\n33) zoltar: Sacrifice G2 Zoltar\nBuild R3 Light\nBuild R3 Grey\n\n34) Mandrel: Move R1 Mandrel Grey\nCatastrophe Grey Red\n\n35) zoltar: Build Y2 Light\n\n36) Mandrel: Build G1 Mandrel\n\n37) zoltar: Trade Y3 G3 Grey\n\n38) Mandrel: Trade G3 Y3 Mandrel\n\n39) zoltar: Sacrifice Y2 Grey\nMove Y2 Light Mandrel\nMove Y1 Light Mandrel\nCatastrophe Mandrel Y\n\n40) Mandrel: Build G1 Mandrel\n\n41) zoltar: Trade G3 Y3 Grey\n\n42) Mandrel: Build G1 Mandrel\n\n43) zoltar: Move Y3 Grey Mandrel\n\n44) Mandrel: Trade G1 B1 Mandrel\n\n45) zoltar: Sacrifice R3 Light\nAttack R2 Mandrel\nAttack G1 Mandrel\nAttack G1 Mandrel\n\n46) Mandrel: Trade B1 G1 Mandrel\n\n47) zoltar: Trade R2 G2 Mandrel\nCatastrophe Mandrel G\n\n\tzoltar: Thanks for the game!\n\nHomeworlds Online (SDG# 15103)\nStarted: 2010.1.17, Ended: 2010.1.25\nParticipants: MaxL (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Pass\n\n2) MaxL: Homeworld B2 Y1 G3\n\tTwoShort: I&#39;ll let you go first, since it randomly picked me for the third time in a row...\n\n3) TwoShort: Homeworld R1 B3 G3\n\n4) MaxL: Build G1 Maxl\n\n5) TwoShort: Build G1 Twoshort\n\n6) MaxL: Discover G1 Maxl Y3 Jaune\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) MaxL: Build G1 Maxl\n\n9) TwoShort: Build Y1 Twoshort\n\n10) MaxL: Build G1 Jaune\n\n11) TwoShort: Build G2 Twoshort\n\n12) MaxL: Trade G1 R1 Maxl\n\n13) TwoShort: Build G1 Twoshort\n\tTwoShort: You should have kept growing.  New players almost always over-value red.  I take a red star in my homeworld chiefly to give me more room to grow yellow &amp; green.  I generally take a red ship only when it means I could use it to take a particularly critical piece within two turns or when it will prevent my opponent from doing so.  An r1 in your homeworld at this point I can just ignore.  \r\n  If you&#39;d grown a green &amp; moved it out you could factory for the G3.  I can&#39;t factory green unless I get another, which would have been the last 2 and given you the 3 anyway.  I&#39;d have had to take desperate measures to make sure you didn&#39;t get it either (by moving to a g3 star), which I&#39;d have done, but forcing me to do unproductive things while you grow is good enough.\r\n  Oh, and while I like giving strategy advice, if you&#39;d rather I didn&#39;t jump in and tell you when I think you made a bad move, just tell me to shut up :)  \n\n14) MaxL: Build G2 Maxl\n\tMaxL: The advice is much appreciated.\n\n15) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n16) MaxL: Discover G2 Maxl G3 Vertino\n\tTwoShort: OK.  I just sometimes feel bad because when I see what I think you should obviously do, I don&#39;t want to tell you until you get it wrong :) \n\n17) TwoShort: Build Y2 Twoshort\n\n18) MaxL: Build G2 Maxl\n\n19) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n20) MaxL: Move G1 Jaune Yolonda\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\n\n22) MaxL: Sacrifice G2 Vertino\nBuild G2 Yolonda\nBuild G3 Jaune\n\n23) TwoShort: Trade Y2 R2 Bluestar\n\tTwoShort: Nice move.  \n\n24) MaxL: Trade G2 Y2 Maxl\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild Y3 Bluestar\nBuild G3 Twoshort\nCatastrophe Yolonda Green\n\n26) MaxL: Move G3 Jaune Maxl\n\n27) TwoShort: Trade Y3 B3 Bluestar\n\n28) MaxL: Build G1 Jaune\n\tTwoShort: Generally I&#39;d say never move backward; and indeed, I don&#39;t see what it&#39;s doing for you here.  Eventually you might like to leave a green alone at Jaune so you can sac and build it, but you&#39;re not ready for that yet (and I can disrupt it).\n\n29) TwoShort: Move B3 Bluestar Jaune\n\n30) MaxL: Discover G1 Jaune B1 Plus\n\n31) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\n\n32) MaxL: Build G1 Plus\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Bluestar Jaune\nMove Y3 Jaune Maxl\nMove B3 Jaune Maxl\n\n34) MaxL: Attack B3 Maxl\n\tTwoShort: Gotcha :)  So the other reason to wait before you take red is that you really want to get an r2; it&#39;s much better than an r1.  \n\n35) TwoShort: Sacrifice R2 Bluestar\nAttack R1 Maxl\nAttack B3 Maxl\n\n36) MaxL: Trade Y2 R2 Maxl\n\n37) TwoShort: Attack R2 Maxl\n\n38) MaxL: Trade G1 R1 Plus\n\n39) TwoShort: Sacrifice R2 Maxl\nAttack G3 Maxl\nAttack G3 Maxl\n\n\nHomeworlds Online (SDG# 15060)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.17, Ended: 2010.2.26\nParticipants: Jesse (S), MaxL (N)\nWinner: Jesse\n\n1) MaxL: Homeworld B2 Y1 G3\n\n2) Jesse: Homeworld G3 B1 Y3\n\n3) MaxL: Build G1 Maxl\n\tJesse: Hello, and have a good game.\n\n4) Jesse: Build Y1 Jesse\n\n5) MaxL: Build G1 Maxl\n\n6) Jesse: Build Y1 Jesse\n\tMaxL: Same to you!\n\n7) MaxL: Discover G1 Maxl G3 Sectorz\n\n8) Jesse: Discover Y1 Jesse B2 Moon\n\n9) MaxL: Trade G1 B1 Maxl\n\n10) Jesse: Build Y2 Jesse\n\n11) MaxL: Move B1 Maxl Sectorz\n\n12) Jesse: Trade Y2 B2 Jesse\n\n13) MaxL: Build B1 Sectorz\n\n14) Jesse: Build Y2 Jesse\n\n15) MaxL: Build G1 Maxl\n\n16) Jesse: Build B3 Jesse\n\n17) MaxL: Trade B1 R1 Sectorz\n\n18) Jesse: Discover Y2 Jesse G2 Groon\n\n19) MaxL: Build R1 Sectorz\n\n20) Jesse: Build Y2 Groon\n\n21) MaxL: Discover G1 Maxl Y3 Saviour\n\n22) Jesse: Build Y2 Jesse\n\n23) MaxL: Build G1 Saviour\n\n24) Jesse: Trade Y2 R2 Jesse\n\n25) MaxL: Move G1 Saviour Groon\n\n26) Jesse: Build Y2 Jesse\n\n27) MaxL: Build G2 Groon\n\n28) Jesse: Discover Y2 Jesse G2 Grood\n\n29) MaxL: Move G1 Saviour Groon\nCatastrophe Groon G\n\n30) Jesse: Build Y2 Jesse\n\n\tJesse: Thanks for the game.  Sorry if it was a frustrating one.  I know the yellow freeze-out can be a particularly annoying position to be in.\n\nHomeworlds Online (SDG# 15173)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.18, Ended: 2010.1.28\nParticipants: jonaskoelker (S), rootbier (N)\nWinner: jonaskoelker\n\n1) rootbier: Homeworld B1 R3 G3\n\n2) jonaskoelker: Homeworld B2 R1 G3\n\trootbier: hey. first timer here.\r\ni have played the game face-to-face.\r\nwe&#39;ll see how it goes with coding my moves :)\n\n3) rootbier: Build G1 Rootbier\n\tjonaskoelker: Hi, rootbier.  Good luck, have fun.\r\n\r\nI&#39;ve played a few games; I&#39;m not that great, but I seem to have a firmer grasp of the game than the friends I play face-to-face.\r\n\r\nI found the move encoding to be reasonably straightforward.  Once you grasp the homeworld command, the rest should be fairly easy.  You may also want to see Andy&#39;s game vs. Russell at http://www.wunderland.com/WTS/Andy/Games/HomeworldsPBEM/Game1Report1.html --- the notation is different, but it may help.\r\n\r\nMay the best intergalactic space fleet commander win! :)\r\n\n\tjonaskoelker: Captain&#39;s log, stardate 20100120: Our terraformers have just flown into the gravity well of a double system.  We have named the system after ourselves, jonaskoelker.  Headquarters informs us that settlers from an alien civilization may be occupying systems nearby in the galaxy.  We will proceed to make first contact immediately, in order to study these alcohol-based life forms.\r\n\n\trootbier: *BURP* You she&#39;here pal ... isch not really my fault. Isch jusch the una*URP*foidable an&#39; unfor*URP*chunate composischun of my blood.\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) rootbier: Trade G1 B1 Rootbier\n\tjonaskoelker: Captain&#39;s Log, stardate 20100121: We have just received our first communication from the strange alcohol-based life forms.  It appears their are peaceful and even submissive towards us, yet they multiply at an alarming rate.  I have ordered the construction of more ships.  We may need them for our safety.\r\n\n\n6) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n7) rootbier: Sacrifice G3 Rootbier\nBuild B2 Rootbier\nBuild B2 Rootbier\nBuild B3 Rootbier\n\tjonaskoelker: Captain&#39;s Log, stardate 20100127: We have reequipped one of our terraformer ships with trading technology, in anticipation of trade with our neighbours.\n\n8) jonaskoelker: Build B3 Jonaskoelker\nCatastrophe Rootbier Blue\n\trootbier: Am I seein&#39; dubble *HIC* or whud? Seems like I dun&#39; gonen&#39; shploded myschelf up innta big li&#39;l bits *HIC*\n\tjonaskoelker: Captain&#39;s Log, stardate 20100128: Our radio astronomers have reported an unexpected supernova from the nearby stars, where the alien civilization lives.\r\n\r\nOr rather used to live.  The radiation from the nearby blue giant&#39;s sudden explosion must have killed them.\r\n\r\nThere is nothing more to explore in this galaxy.  On to new adventures.\r\n\n\tjonaskoelker: Lesson: Keep the catastrophes in mind.  They limit the use of G3 in the early game.\r\n\r\nDon&#39;t blame the G3&#39;s, though---they&#39;re good mid-game threats, when you have a few systems and some different colours.\r\n\r\nThanks for playing.  I&#39;m up for another game if you are :)\r\n\n\trootbier: yeah -- somehow it is too abstract for me in iconic pixel form -- i have never done such a move when i have the pyramids in front of me -- so yes -- let&#39;s do that again\n\n\nHomeworlds Online (SDG# 15179)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.19, Ended: 2010.4.22\nParticipants: captncavern (S), face (N)\nWinner: face\n\n1) face: Homeworld R3 B2 G3\n\n2) captncavern: Homeworld G3 B1 Y3\n\n3) face: Build G1 Face\n\tcaptncavern: Thanks for accepting the challenge!\n\tface: no problem. i joined the ladder to play more homeworld games... i really see no good reason to reject a challenge.\n\n4) captncavern: Build Y1 Captncavern\n\tcaptncavern: Well I was rejected twice, so I was starting to believe I would never be able to play :)\n\n5) face: Trade G3 Y3 Face\n\n6) captncavern: Trade Y1 R1 Captncavern\n\n7) face: Build Y1 Face\n\n8) captncavern: Build R1 Captncavern\n\n9) face: Build G1 Face\n\n10) captncavern: Build Y1 Captncavern\n\n11) face: Discover G1 Face B1 Smash\n\n12) captncavern: Trade Y3 G3 Captncavern\n\n13) face: Move Y1 Face Smash\n\n14) captncavern: Build Y1 Captncavern\n\n15) face: Build Y2 Smash\n\n16) captncavern: Discover Y1 Captncavern B2 Out\n\n17) face: Build Y2 Face\n\n18) captncavern: Sacrifice G3 Captncavern\nBuild Y2 Out\nBuild Y3 Captncavern\nBuild R1 Captncavern\n\n19) face: Discover Y1 Smash R2 Tank\n\n20) captncavern: Move Y2 Out Smash\n\n21) face: Move G1 Smash Tank\n\n22) captncavern: Sacrifice R1 Captncavern\nAttack Y2 Smash\n\n23) face: Build Y3 Tank\n\n24) captncavern: Move Y1 Captncavern Tank\n\n25) face: Discover Y3 Tank R3 Waste\n\n26) captncavern: Discover Y1 Tank B1 Big\n\n27) face: Discover Y2 Face G1 Plaster\n\n28) captncavern: Discover Y1 Out R1 Come\n\n29) face: Move Y3 Waste Come\n\n30) captncavern: Sacrifice Y2 Smash\nMove Y1 Come Face\nMove Y1 Big Face\n\n31) face: Build Y2 Tank\n\n32) captncavern: Move Y2 Smash Face\n\n33) face: Build G2 Tank\nCatastrophe Face Y\n\n34) captncavern: Build R2 Captncavern\n\tface: that was... obnoxiously clever.\n\tcaptncavern: But you have a huge fleet now, and I have almost nothing!\n\n35) face: Move Y3 Come Face\n\n36) captncavern: Discover R2 Captncavern Y2 Not\n\tface: still, the next time someone asks me &quot;why wouldn&#39;t you declare a catastrophe?&quot; i&#39;ll finally have an answer other than &quot;i don&#39;t know.&quot;\n\tcaptncavern: Oh! It&#39;s the first time I had an opportunity not to declare it too. I can&#39;t really see it work though, since you can always declare it on your turn.\n\n37) face: Build G2 Face\n\n38) captncavern: Move Y3 Captncavern Tank\n\n39) face: Move G2 Tank Captncavern\n\n40) captncavern: Move R2 Not Plaster\n\n41) face: Build G2 Captncavern\n\n42) captncavern: Attack Y2 Plaster\n\n43) face: Trade G2 R2 Captncavern\n\n44) captncavern: Move Y3 Tank Captncavern\n\n45) face: Sacrifice G2 Face\nBuild R1 Captncavern\nBuild G2 Captncavern\n\n46) captncavern: Sacrifice R2 Plaster\nAttack G2 Captncavern\nAttack G2 Captncavern\nCatastrophe Captncavern R\n\n47) face: Move G1 Tank Captncavern\nCatastrophe Captncavern G\n\n48) captncavern: Build Y1 Plaster\n\n49) face: Build Y1 Face\n\n50) captncavern: Trade Y3 G3 Captncavern\n\n51) face: Build G1 Face\n\n52) captncavern: Move Y1 Plaster Face\n\n53) face: Discover Y1 Face R1 Smash\n\n54) captncavern: Attack G1 Face\n\n55) face: Attack G1 Face\n\n56) captncavern: Move Y1 Face Captncavern\n\n57) face: Move G1 Face Smash\n\n58) captncavern: Trade Y1 R1 Captncavern\n\n59) face: Build G2 Face\n\n60) captncavern:\nBuild R1 Captncavern\n\n61) face: Trade G1 B1 Face\n\n62) captncavern: Trade R1 Y1 Captncavern\n\n63) face: Build B1 Face\n\n64) captncavern: Sacrifice G3 Captncavern\nBuild Y2 Plaster\nBuild Y3 Plaster\nBuild Y3 Captncavern\n\n65) face: Move Y1 Tank Plaster\nCatastrophe Plaster Y\n\n66) captncavern: Trade Y1 G1 Captncavern\n\n67) face: Sacrifice Y2 Tank\nMove B1 Face Captncavern\nMove B1 Face Captncavern\n\n68) captncavern: Attack B1 Captncavern\n\n69) face: Sacrifice G1 Smash\nBuild B2 Captncavern\nCatastrophe Captncavern B\n\n\tface: good game, man.\n\tcaptncavern: Great game! I definitely suck at it, but I love it :)\n\nHomeworlds Online (SDG# 15194)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.20, Ended: 2010.5.10\nParticipants: makertron (S), grico (N)\nWinner: makertron\n\n1) grico: Homeworld R1 B3 G3\n\n2) makertron: Homeworld B3 Y2 G3 Makertron\n\n3) grico: Build G1 Grico\n\n4) makertron: Build G1 Makertron\n\n5) grico: Trade G1 Y1 Grico\n\n6) makertron: Discover G1 Makertron R1 Tatu\n\n\nHomeworlds Online (SDG# 15202)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.21, Ended: 2010.1.29\nParticipants: logikal (S), melktart (N)\nWinner: logikal\n\n1) melktart: Homeworld R1 B2 G3\n\n2) logikal: Homeworld B3 R1 G3\n\n3) melktart: Build G1 Melktart\n\n4) logikal: Build G1 Logikal\n\n5) melktart: Trade G3 Y3 Melktart\n\n6) logikal: Trade G1 Y1 Logikal\n\n7) melktart: Build G1 Melktart\n\n8) logikal: Build G1 Logikal\n\n9) melktart: Discover G1 Melktart R3 M1\n\n10) logikal: Discover G1 Logikal B2 L1\n\n11) melktart: Build G2 M1\n\n12) logikal: Build G2 L1\n\n13) melktart: Build G2 Melktart\n\n14) logikal: Trade G1 R1 L1\n\n15) melktart: Trade G1 B1 Melktart\n\n16) logikal: Build G1 L1\n\n17) melktart: Move B1 Melktart M1\n\n18) logikal: Trade G1 Y1 L1\n\n19) melktart: Trade G1 Y1 M1\n\n20) logikal: Build Y2 L1\n\n21) melktart: Build Y2 M1\n\n22) logikal: Build R2 L1\n\n23) melktart: Trade Y2 R2 M1\n\n24) logikal: Build G1 Logikal\n\n25) melktart: Build G1 M1\n\n26) logikal: Discover G1 Logikal B2 L2\n\n27) melktart: Discover G1 M1 Y2 M2\n\n28) logikal: Sacrifice Y2 L1\nMove R2 L1 M1\nMove R2 M1 M2\n\n29) melktart: Move R2 M1 L2\n\n30) logikal: Sacrifice G3 Logikal\nBuild G1 L1\nBuild G3 L2\nBuild Y2 Logikal\n\n31) melktart: Attack G1 L2\n\n32) logikal: Trade G3 R3 L2\n\n33) melktart: Build G3 M2\n\n34) logikal: Sacrifice G2 L1\nBuild R2 L2\nBuild R3 M2\n\n35) melktart: Move G3 M2 M1\n\n36) logikal: Trade Y2 G2 Logikal\n\n37) melktart: Discover G3 M1 Y2 Dtms\n\n38) logikal: Attack R2 L2\n\n39) melktart: Build B1 M1\n\n40) logikal: Move R3 M2 M1\n\n41) melktart: Sacrifice G2 M1\nBuild G2 Dtms\nBuild B1 M1\n\n42) logikal: Build G3 Logikal\n\n43) melktart: Sacrifice Y3 Melktart\nMove B1 M1 L2\nMove B1 M1 L2\nMove B1 M1 L2\nCatastrophe L2 Blue\n\n44) logikal: Sacrifice Y1 L1\nMove R3 M1 Melktart\n\n45) melktart: Build G1 Melktart\n\n46) logikal: Sacrifice R2 M2\nAttack G2 Melktart\nAttack G1 Melktart\n\n\nHomeworlds Online (SDG# 15248)\nStarted: 2010.1.25, Ended: 2010.2.13\nParticipants: dethdukk (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) dethdukk: Homeworld R1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) dethdukk: Build G1 Dethdukk\n\n5) dlwillson: Discover G1 Dlwillson Y2 Jimmy\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) dlwillson: Build G1 Dlwillson\n\n8) dethdukk: Build Y1 Dethdukk\n\n9) dlwillson: Trade G1 Y1 Dlwillson\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) dlwillson: Discover Y1 Dlwillson B2 Bobby\n\n12) dethdukk: Discover Y1 Dethdukk B3 Smallstep\n\n13) dlwillson: Build G1 Dlwillson\n\n14) dethdukk: Build G1 Dethdukk\n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Jimmy\nBuild Y2 Bobby\n\n16) dethdukk: Discover G1 Dethdukk R3 Giantleap\n\n17) dlwillson: Move Y2 Bobby Giantleap\n\n18) dethdukk: Sacrifice G1 Giantleap\nBuild Y3 Smallstep\n\n19) dlwillson: Sacrifice G2 Jimmy\nBuild Y3 Bobby\nBuild G1 Jimmy\n\n20) dethdukk: Build G2 Dethdukk\n\n21) dlwillson: Trade G2 R2 Dlwillson\n\n22) dethdukk: Trade Y2 R2 Dethdukk\n\n23) dlwillson: Move Y3 Bobby Dlwillson\n\n24) dethdukk: Move G2 Dethdukk Smallstep\n\n25) dlwillson: Sacrifice G1 Jimmy\nBuild Y2 Giantleap\n\n26) dethdukk: Build G1 Dethdukk\n\n27) dlwillson: Build G2 Jimmy\n\n28) dethdukk: Build G2 Smallstep\n\n29) dlwillson: Sacrifice G2 Jimmy\nBuild G2 Dlwillson\nBuild G3 Dlwillson\n\n30) dethdukk: Sacrifice Y3 Smallstep\nMove G2 Smallstep Bobby\nMove G2 Bobby Dlwillson\nMove G2 Smallstep Jimmy\nCatastrophe Dlwillson Green\n\n31) dlwillson: Sacrifice G1 Jimmy\nBuild Y3 Bobby\n\n32) dethdukk: Build G1 Dethdukk\n\tdethdukk: *sound of gun cocking*...  POW!\n\n33) dlwillson: Trade Y1 G1 Bobby\n\n34) dethdukk: Move G1 Dethdukk Smallstep\n\n35) dlwillson: Trade Y3 G3 Dlwillson\n\tdlwillson: Maybe it was the sound of a trap closing...  snap!  :-)  It&#39;s your turn.\n\tdlwillson: Why don&#39;t the systems arrange themselves by proximity?  It&#39;d be easier to read the map.  And, why don&#39;t I own that spawning cruiser in Jimmy?\n\tdethdukk: Because I moved it there using my y3 sacrifice.  so its miiine.\n\n36) dethdukk: Build Y1 Smallstep\n\n37) dlwillson: Build Y3 Bobby\n\n38) dethdukk: Trade Y1 R1 Smallstep\n\n39) dlwillson: Sacrifice Y2 Giantleap\nMove Y3 Bobby Smallstep\nMove G1 Bobby Dlwillson\n\n40) dethdukk: Move R1 Smallstep Jimmy\n\n41) dlwillson: Build R1 Dlwillson\n\n42) dethdukk: Build Y1 Smallstep\n\n43) dlwillson: Sacrifice Y3 Smallstep\nMove R1 Dlwillson Jimmy\nMove R1 Jimmy Smallstep\nMove R1 Smallstep Dethdukk\n\n44) dethdukk: Sacrifice R2 Dethdukk\nAttack R1 Dethdukk\nPass\n\n45) dlwillson: Trade Y3 G3 Bobby\n\n46) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Smallstep\nBuild G2 Smallstep\nBuild G3 Dethdukk\n\tdethdukk: I keep getting what I think are good ideas until you move and I see a flaw.\n\n47) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild Y2 Giantleap\nBuild R2 Dlwillson\n\n48) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Dethdukk\nBuild Y3 Dethdukk\nBuild Y3 Smallstep\n\n49) dlwillson: Move Y2 Giantleap Bobby\n\n50) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Dethdukk\nBuild R2 Jimmy\nBuild R3 Dethdukk\n\n51) dlwillson: Move Y2 Bobby Smallstep\nCatastrophe Smallstep Yellow\n\n52) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Jimmy\nPass\nPass\n\n53) dlwillson: Sacrifice Y2 Giantleap\nDiscover R2 Dlwillson Y2 Gambit\nMove G1 Dlwillson Gambit\n\tdlwillson: Grr...  My red torpedo definitely didn&#39;t cause all the disruption I hoped it would.\n\n54) dethdukk: Move R1 Dethdukk Smallstep\n\n55) dlwillson: Sacrifice G3 Bobby\nBuild G3 Gambit\nBuild R3 Gambit\nBuild R3 Dlwillson\n\n56) dethdukk: Trade R3 Y3 Dethdukk\n\n57) dlwillson: Trade R2 Y2 Dlwillson\n\n58) dethdukk: Move Y3 Dethdukk Smallstep\n\n59) dlwillson: Move G1 Gambit Smallstep\nCatastrophe Smallstep Green\n\n60) dethdukk: Build G1 Dethdukk\n\tdethdukk: I think I have you in...  2-3 turns.\n\tdlwillson: I think you&#39;re frickin&#39; mistaken.\n\n61) dlwillson: Build G1 Dlwillson\n\n62) dethdukk: Move G1 Dethdukk Smallstep\n\n63) dlwillson: Discover R3 Gambit B3 Potato\n\n64) dethdukk: Sacrifice G3 Jimmy\nBuild G2 Dethdukk\nBuild G2 Smallstep\nBuild G3 Jimmy\n\tdlwillson: Look, are you just fiddling around with me or what?\n\n65) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild R2 Potato\nBuild R3 Gambit\n\n66) dethdukk: Sacrifice G3 Jimmy\nBuild G3 Jimmy\nBuild Y1 Smallstep\nBuild Y1 Smallstep\n\tdethdukk: nah, looks like you found a move to hold me off for a bit.  still got you in a few more moves.\n\n67) dlwillson: Discover Y2 Dlwillson B2 Carrot\n\n68) dethdukk: Discover Y1 Smallstep B2 Finaljump\n\n69) dlwillson: Discover R2 Gambit B3 Rutabaga\n\n70) dethdukk: Move Y1 Smallstep Finaljump\n\tdlwillson: Any idea how I change my nick?\r\n\n\n71) dlwillson: Move G3 Dlwillson Finaljump\n\n72) dethdukk: Move Y1 Finaljump Dlwillson\n\tdethdukk: nah, no idea.  probably just make a new account...\n\n73) dlwillson: Sacrifice R2 Potato\nAttack Y1 Finaljump\nAttack Y1 Dlwillson\n\n74) dethdukk: Sacrifice Y3 Smallstep\nMove R1 Smallstep Jimmy\nMove R1 Jimmy Dlwillson\nMove R1 Jimmy Dlwillson\n\n75) dlwillson: Sacrifice G3 Gambit\nBuild G3 Dlwillson\nBuild Y3 Carrot\nBuild R2 Rutabaga\n\n76) dethdukk: Sacrifice Y3 Dethdukk\nMove G2 Jimmy Dlwillson\nMove G1 Smallstep Jimmy\nMove G1 Jimmy Dlwillson\nCatastrophe Dlwillson Green\n\n77) dlwillson: Sacrifice Y2 Carrot\nMove R3 Gambit Potato\nMove R3 Potato Dethdukk\n\n78) dethdukk: Sacrifice G2 Smallstep\nBuild Y2 Dethdukk\nBuild Y2 Dethdukk\n\tdlwillson: So, my reaction was: AAAAH!  Holy crap!  Oh, wait... Nevermind.  :-)\n\n79) dlwillson: Sacrifice R2 Rutabaga\n\nAttack G1 Dethdukk\nAttack G2 Dethdukk\n\n80) dethdukk: Sacrifice Y2 Dethdukk\nMove R2 Jimmy Dlwillson\nMove G3 Jimmy Dlwillson\nCatastrophe Dlwillson Red\n\n81) dlwillson: Sac R3 Potato\nAttack Y1 Dethdukk\nAttack Y2 Dethdukk\nPass\n\n\nHomeworlds Online (SDG# 14757)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.25, Ended: 2010.2.26\nParticipants: mathochist (S), dethdukk (W), alexcobo (N), crysnamtodshire (E)\nWinner: mathochist\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) crysnamtodshire: Homeworld G2 B1 R3\n\n3) mathochist: Homeworld R3 B1 G3\n\tmathochist: What&#39;s the goal? Defeat the player to your left, or defeat everyone, or what? I&#39;m not sure what the default is, here.\n\n4) dethdukk: Homeworld R3 B1 G3\n\n5) alexcobo: Build Y1 Alexcobo\n\tdethdukk: this isnt sinister, so I am going to assume kill everyone but you.\n\talexcobo: As far as I know, every Homeworld game at Superduper is LastOneStanding.\n\n6) crysnamtodshire: Build R1 Crysnamtodshire\n\tmathochist: Alexcobo: no, sinister is offered as a variant. I had seen on the wiki that n the sinister version, killing another player other than your left-hand neighbor doesn&#39;t end the game.\r\n\r\nSince it&#39;s offered as a variant but didn&#39;t show up in the offering or the title bar as such, I was pretty sure it wasn&#39;t that...  and I didn&#39;t see anything to indicate good or evil, so I didn&#39;t think it was that, either.  I just wasn&#39;t sure whether it might be something else I hadn&#39;t thought of.  Thanks!\r\n\n\tdethdukk: oh, good luck everyone.\n\n7) mathochist: Build G1 Mathochist\n\n8) dethdukk: Build G1 Dethdukk\n\n9) alexcobo: Trade Y1 R1 Alexcobo\n\n10) crysnamtodshire: Build R1 Crysnamtodshire\n\talexcobo: I felt rather &quot;naked&quot; seeing how all of you had Red Tech and I didn&#39;t.\n\tmathochist: that&#39;s ok, I&#39;m in another game where everybody chose the exact same 2 colors for their stars and the exact same color for their ships\n\n11) mathochist: T G1 Y1 Mathochist\n\n12) dethdukk: Build G1 Dethdukk\n\n13) alexcobo: Build Y1 Alexcobo\n\tdethdukk: I just took the set I did hoping math was going to be a little slower on the start (due to his red star).  also, I happen to like red stars.\n\n14) crysnamtodshire: Trade R1 Y1 Crysnamtodshire\n\n15) mathochist: Build G1 Mathochist\n\n16) dethdukk: Trade G1 Y1 Dethdukk\n\n17) alexcobo: Build R1 Alexcobo\n\n18) mathochist: Discover G1 Mathochist Y2 Magica\n\n19) dethdukk: Trade G1 R1 Dethdukk\n\n20) alexcobo: Discover Y1 Alexcobo G1 Beta\n\n21) mathochist: Build G1 Mathochist\n\n22) dethdukk: Build G1 Dethdukk\n\n23) alexcobo: Trade R1 G1 Alexcobo\n\n24) mathochist: Build G2 Mathochist\n\n25) dethdukk: Build G2 Dethdukk\n\n26) alexcobo: Build G2 Alexcobo\n\n27) mathochist: Move G1 Magica Dethdukk\nCatastrophe Dethdukk G\n\n28) dethdukk: Trade R1 G1 Dethdukk\n\n29) alexcobo: Build R1 Alexcobo\n\tdethdukk: whoh... yeah, didnt see that you could reach me.  serious mistake there...\n\n30) mathochist: Trade G1 R1 Mathochist\n\tmathochist: yeah, you left yourself open. sorry!\n\tdethdukk: nah, my bad.  maybe I&#39;ll be able to pll off a miraculous recovery...\n\n31) dethdukk: Build G1 Dethdukk\n\n32) alexcobo: Build Y1 Beta\n\n33) mathochist: Build Y2 Mathochist\n\n34) dethdukk:\nBuild Y2 Dethdukk\n\n35) alexcobo: Build Y2 Alexcobo\n\n36) mathochist: Discover Y2 Mathochist G2 Meta\n\n37) dethdukk: Discover Y1 Dethdukk B2 Twin\n\n38) mathochist: B Y2 Mathochist\n\n39) dethdukk: Move G1 Dethdukk Twin\n\n40) mathochist: Trade Y1 B1 Mathochist\n\tmathochist: Wonder whether it&#39;s worth scavenging all those undefended ships.  .. prolly not, there are still plenty of good ships left.\n\n\tmathochist: You can resign if you like.  We can start a second 1v1 if you like, too...  I&#39;m liking this game a lot, and I&#39;ve put up a standing challenge.  :)\r\n\n\tdethdukk: k.  gl in our 1v1 then\n\nHomeworlds Online (SDG# 15251)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.25, Ended: 2010.2.1\nParticipants: johannz (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) johannz: Homeworld Y2 B1 G3\n\tjohannz: homeworld y2 b1 g3\n\n3) dlwillson: Build G1 Dlwillson\n\tjohannz: Space. The final frontier. This is where Adam&#39;s brain is most days...\n\tdlwillson: :-)\n\n4) johannz: Build G1 Johannz\n\n5) dlwillson: Discover G1 Dlwillson Y2 Blarfo\n\n6) johannz: Trade G3 Y3 Johannz\n\n7) dlwillson: Build G1 Dlwillson\n\n8) johannz: Build G2 Johannz\n\n9) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Blarfo\nBuild G2 Blarfo\nBuild G3 Dlwillson\n\n10) johannz: Trade G2 Y2 Johannz\n\tdlwillson: You&#39;re doing great, Adam.  Are you watching any other games while you play this one?  So you know, I&#39;m going to try to shut you out of green.\n\n11) dlwillson: Discover G2 Blarfo B3 Gungho\n\tjohannz: No, I&#39;m not watching any other games.\r\nI realize that you are going for green. I have a vague plan in mind.\n\n12) johannz: Move Y3 Johannz Gungho\n\n13) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Blarfo\nBuild G3 Gungho\nBuild G3 Dlwillson\n\n14) johannz: Build G3 Johannz\n\n15) dlwillson: Trade G3 Y3 Gungho\n\n16) johannz: Sacrifice Y2 Johannz\nMove G1 Johannz Gungho\nMove G1 Gungho Blarfo\nCatastrophe Blarfo G\n\n17) dlwillson: Trade G2 R2 Gungho\n\tjohannz: I don&#39;t know if it was a good plan, I just know it was a vague plan. :)\n\n18) johannz: Trade Y3 R3 Gungho\n\tdlwillson: Excellent!  I&#39;d forgotten about that catastrophic possibility.\n\n19) dlwillson: Sacrifice R2 Gungho\nAttack R3 Gungho\nPass\n\tdlwillson: I thought of something even better...  I think I have you in a couple moves.  Not totally sure, but we&#39;ll see.\n\n20) johannz: Build G1 Johannz\n\tjohannz: Well, I think I saw the &quot;y3 to johannz, let adam make a ship in johannz, sacrifice r2 in gungho to capture everything in johannz with the y3&quot; move. Hopefully I countered it correctly.\n\n21) dlwillson: Move Y3 Gungho Johannz\n\tjohannz: Apparently I didn&#39;t counter it correctly.\n\n22) johannz: Discover G3 Johannz Y3 Mxyzptlk\n\n23) dlwillson: Sacrifice R3 Gungho\nAttack G1 Johannz\nPass\nPass\n\n\tdlwillson: Good game.\n\tjohannz: yes it was. I forgot you lost when you lost control of your home system. I thought you had to leave the system before I died. So I was going to move the G3 back in after you conquered the ships in the system.\n\nHomeworlds Online (SDG# 15253)\nStarted: 2010.1.25, Ended: 2010.3.15\nParticipants: ZackStack (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) ZackStack: Build G1 Zackstack\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) zoltar: Build G1 Zoltar\n\n8) ZackStack: Build G1 Zackstack\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) ZackStack: Discover G1 Zackstack B3 Bluemoon\n\n11) zoltar: Discover B1 Zoltar G1 Greenpea\n\n12) ZackStack: Build G1 Bluemoon\n\n13) zoltar: Build G2 Zoltar\n\n14) ZackStack: Build G2 Zackstack\n\n15) zoltar: Sacrifice G2 Zoltar\nBuild B1 Greenpea\nBuild B2 Greenpea\n\n16) ZackStack: Trade G1 R1 Bluemoon\n\n17) zoltar: Trade B2 Y2 Greenpea\n\n18) ZackStack: Build R1 Bluemoon\n\n19) zoltar: Build B2 Greenpea\n\n20) ZackStack: Trade G2 B2 Zackstack\n\n21) zoltar: Discover B2 Greenpea G3 Greengiant\n\n22) ZackStack: Move B2 Zackstack Greengiant\n\n23) zoltar: Build B3 Greenpea\n\n24) ZackStack: Sacrifice R1 Bluemoon\nAttack B2N Greengiant\n\n25) zoltar: Sacrifice Y2 Greenpea\nMove B1 Greenpea Greengiant\nMove B1 Greenpea Greengiant\nCatastrophe Greengiant B\n\n26) ZackStack: Trade G1 Y1 Bluemoon\n\n27) zoltar: Build Y2 Zoltar\n\n28) ZackStack: Build Y2 Zackstack\n\n29) zoltar: Move Y1 Zoltar Greenpea\n\n30) ZackStack: Build G1 Zackstack\n\n31) zoltar: Build B1 Greenpea\n\n32) ZackStack: Move G1 Zackstack Bluemoon\n\n33) zoltar: Build B1 Greenpea\n\n34) ZackStack: Trade Y2 B2 Zackstack\n\n35) zoltar: Trade B1 R1 Greenpea\n\n36) ZackStack: Discover R1 Bluemoon G1 Greenpip\n\n37) zoltar: Build G2 Zoltar\n\n38) ZackStack: Move Y1 Bluemoon Greenpip\n\n39) zoltar: Move G2 Zoltar Greenpip\n\n40) ZackStack: Build G2 Zackstack\n\n41) zoltar: Trade B3 G3 Greenpea\n\n42) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Bluemoon\nBuild Y2 Greenpip\nBuild G3 Zackstack\n\n43) zoltar: Sacrifice G3 Greenpea\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Greenpea\n\n44) ZackStack: Attack G2 Greenpip\n\n45) zoltar: Move Y3 Greenpea Bluemoon\n\n46) ZackStack: Sacrifice Y1 Greenpip\nDiscover G2 Bluemoon Y1 Yellowdot\n\n47) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Greenpea\n\n48) ZackStack: Sacrifice Y2 Greenpip\nMove G2 Greenpip Zoltar\nMove G2 Yellowdot Zoltar\nCatastrophe Zoltar Green\n\n49) zoltar: Sacrifice R1 Greenpea\nAttack G1 Bluemoon\n\n50) ZackStack: Build Y1 Zackstack\n\n51) zoltar: Trade Y3 G3 Bluemoon\n\tZackStack: After that this is just a minor pyrric victory...\n\n52) ZackStack: Discover G2 Zackstack Y3 Sunburst\n\n53) zoltar: Trade G1 R1 Bluemoon\n\tzoltar: Yeah, that leaves me with a devastatingly powerful position, owning all the large yellow ships.\n\n54) ZackStack: Discover Y1 Zackstack G3 Muchoverde\n\tZackStack: Yeah... I need to starting thinking a few more moves in advance in our games :-)\n\n55) zoltar: Move Y3 Greenpea Sunburst\n\n56) ZackStack: Discover G2 Sunburst B1 Bluedot\n\n57) zoltar: Build Y2 Greenpea\n\n58) ZackStack: Move Y1 Muchoverde Greenpip\n\n59) zoltar: Move Y2 Zoltar Greenpip\n\n60) ZackStack: Move Y1 Greenpip Sunburst\n\n61) zoltar: Move Y3 Sunburst Bluedot\n\n62) ZackStack: Build G1 Zackstack\n\n63) zoltar: Sacrifice R1 Bluemoon\nAttack G2 Bluedot\n\n64) ZackStack: Discover G1 Zackstack B3 Freefall\n\n65) zoltar: Build G2 Bluemoon\n\n66) ZackStack: Build R1 Greenpip\n\tZackStack: Is it just me or am I doing even worse than last time? :-)\n\n67) zoltar: Sacrifice G3 Bluemoon\nBuild G2 Bluemoon\nBuild G3 Bluemoon\nBuild G3 Bluedot\n\n68) ZackStack: Move B2 Zackstack Sunburst\n\tzoltar: Yeah, you&#39;re in bad shape, and I&#39;m just slowly building my lead. I have the same problem with TwoShort, who crushes me every game. I actually did beat him once, but have lost every one of the next half-dozen games since, and I&#39;m losing my current game against him.\n\tZackStack: Heh.  I&#39;m at a point where I manhandle newbs and inexperienced players and have a winning record against moderate players... but you pros trounce me every time :-)  I need to start paying attention so I can stop making the same mistakes...\n\n69) zoltar: Move G3 Bluemoon Zackstack\n\n70) ZackStack: Attack G3 Zackstack\n\n71) zoltar: Sacrifice Y3 Bluedot\nMove G2 Bluemoon Zackstack\nMove G2 Bluemoon Zackstack\nMove Y3 Bluemoon Zackstack\nCatastrophe Zackstack G\n\n72) ZackStack: Move Y1 Sunburst Zackstack\n\tzoltar: I&#39;m violating all the basic rules: I&#39;ve left my homeworld without a large ship, and I don&#39;t have a gun; but just by sheer overwhelming numbers it just doesn&#39;t matter.\n\tZackStack: Thanks for reminding me. :-p  Sorry I&#39;m not the sort to resign... I enjoy seeing the manner of my demise :-)\n\n73) zoltar: Sacrifice G3 Bluedot\nBuild Y3 Zackstack\nPass\nPass\nCatastrophe Zackstack Y\n\tzoltar: I can win without a gun. My &#39;pacifist green army&#39; is just going to march into your capital.\n\n\nHomeworlds Online (SDG# 15153)\nStarted: 2010.1.26, Ended: 2010.1.28\nParticipants: TwoShort (S), mathochist (N)\nWinner: TwoShort\n\n1) mathochist: Homeworld B1 R2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: Howdy\n\n3) mathochist: Build G1 Mathochist\n\tmathochist: hiya!\n\n4) TwoShort: Build B1 Twoshort\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) mathochist: Discover Y1 Mathochist G3 George\n\tmathochist: neat trick, that\n\n8) TwoShort: Build B2 Twoshort\n\n9) mathochist: Build G1 Mathochist\n\tmathochist: typo\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) mathochist: Trade G1 Y1 Mathochist\n\n12) TwoShort: Build B2 Twoshort\n\n13) mathochist: Build G1 Mathochist\n\n14) TwoShort: Build B2 Grogar\n\n15) mathochist: Discover G1 Mathochist B3 Sam\n\n16) TwoShort: Build B3 Grogar\n\n17) mathochist: D Y1 Mathochist B3 Fred\n\n18) TwoShort: Trade B3 Y3 Grogar\n\n19) mathochist: B G1 Mathochist\n\n20) TwoShort: Trade B2 R2 Grogar\n\n21) mathochist: B G1 Mathochist\n\n22) TwoShort: Build B2 Grogar\n\n23) mathochist: Build G2 Sam\n\n24) TwoShort: Move B2 Grogar George\n\n25) mathochist: Trade G2 R2 Sam\n\n26) TwoShort: Build B3 George\n\n27) mathochist: T G1 Y1 Mathochist\n\n28) TwoShort: Trade B3 R3 George\n\n29) mathochist: B Y2 Mathochist\n\n30) TwoShort: Build R1 George\n\n31) mathochist: M Y1 Mathochist Sam\n\n32) TwoShort: Sacrifice Y3 Grogar\nMove R3 George Mathochist\nMove R1 George Mathochist\nDiscover R2 Grogar Y3 Yolonda\n\n33) mathochist: A R3 Mathochist\n\n34) TwoShort: Move R2 Yolonda Mathochist\nCatastrophe Mathochist Red\n\tTwoShort: The Death Star is clear to fire... :)\n\n35) mathochist: S Y2 Mathochist\nM Y1 Sam Grogar\nM R2 Sam Grogar\n\n\n36) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Grogar Mathochist\nMove B2 George Mathochist\nDiscover B2 Twoshort Y2 Boomtime\n\n37) mathochist: M R2 Grogar Twoshort\n\n38) TwoShort: Move B2 Boomtime Mathochist\nCatastrophe Mathochist Blue\n\n\tmathochist: good game! that was a terrific opening for you, I&#39;ll have to remember that one.\n\tTwoShort: Thanks for the game!  I, indeed, love that opening.  I don&#39;t get to play it much, because nobody seems to take a b1 star as first player against me much anymore :)  Anyway, if you want to not take a b1 and have a more typical game, I&#39;m up for a rematch any time...\n\nHomeworlds Online (SDG# 15059)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.28, Ended: 2010.1.31\nParticipants: Jesse (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld G3 Y1 G3 *\n\n\tJesse: Sorry, this was not a good time for me to start a new game.\n\nHomeworlds Online (SDG# 15247)\nStarted: 2010.1.28, Ended: 2010.2.22\nParticipants: ZackStack (S), shmil1 (N)\nWinner: ZackStack\n\n1) shmil1: Homeworld G3 B1 Y3\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hey Schmil!  Have a good game!\n\n3) shmil1: Build Y1 Shmil1\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: I noticed you haven&#39;t played many games... would you like me to point out particularly bad moves when I see them to help your learning the game?\n\n5) shmil1: Discover Y1 Shmil1 G2 Eldor\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) shmil1: Discover Y1 Eldor G3 Techos\n\n8) ZackStack: Build G1 Zackstack\n\n9) shmil1: Move Y1 Techos Zackstack\n\n10) ZackStack: Attack Y1 Zackstack\n\n11) shmil1: Trade Y3 G3 Shmil1\n\n12) ZackStack: Discover G1 Zackstack B3 Azure\n\tZackStack: Hey Schmil!  You know I can just attack and capture your ship right?  Feel free to undo...\n\tZackStack: Sorry Schmil... I don&#39;t want to time out here.\n\n13) shmil1: Build G1 Shmil1\n\n\n14) ZackStack: Move Y1 Zackstack Azure\n\tshmil1: Sorry for mistake. I had a busy days to check it out. :(\n\tZackStack: Its okay.  Now you just have to trick me into giving it back :-)\n\n15) shmil1: Trade G1 R1 Shmil1\n\n16) ZackStack: Build Y1 Azure\n\n17) shmil1: Build G1 Shmil1\n\n18) ZackStack: Build Y2 Azure\n\n19) shmil1: Trade G3 Y3 Shmil1\n\tshmil1: build g1 shmil1\n\n20) ZackStack: Trade Y1 R1 Azure\n\tZackStack: I&#39;d love to, but I don&#39;t have any presence in that system yet :-p\n\n21) shmil1: Build R2 Shmil1\n\n22) ZackStack: Trade Y1 B1 Azure\n\n23) shmil1: Discover R2 Shmil1 G2 Gramm\n\n24) ZackStack: Build R2 Azure\n\n25) shmil1: Build Y1 Shmil1\n\n26) ZackStack: Discover B1 Azure G2 Verde\n\n27) shmil1: Move Y1 Shmil1 Gramm\n\n28) ZackStack: Build G1 Zackstack\n\n29) shmil1: Build R2 Gramm\n\n30) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Azure\nBuild G3 Zackstack\nBuild G3 Azure\n\n31) shmil1: Build R3 Shmil1\n\n32) ZackStack: Move G3 Azure Verde\n\n33) shmil1: Move R3 Shmil1 Verde\n\tZackStack: That move always feels a little like cheating...\n\n34) ZackStack: Sacrifice R1 Azure\nAttack R3 Verde\n\n35) shmil1: Trade Y3 B3 Shmil1\n\n36) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B1 Verde\nBuild Y1 Azure\n\tZackStack: Hey schmil!  I hope you see this one in time...   I can sacrifice one of my red ships to capture your R3 there.  You might want to undo!\n\tZackStack: Sorry... this might be the last time I log in until tomorrow night...\n\n37) shmil1: Build Y2 Gramm\n\n38) ZackStack: Sacrifice Y2 Azure\nMove B1 Verde Shmil1\nMove B1 Verde Shmil1\nCatastrophe Shmil1 Blue\n\n39) shmil1: Discover Y2 Gramm R3 Lastworld\n\n40) ZackStack: Sacrifice Y1 Azure\nMove G3 Verde Shmil1\n\n41) shmil1: Sacrifice Y2 Lastworld\nMove R2 Gramm Shmil1\nMove R2 Gramm Shmil1\n\n42) ZackStack: Sacrifice G1 Azure\nBuild G1 Shmil1\nCatastrophe Shmil1 Green\n\tZackStack: Ouch.  Not a very optimistic star name! \n\n\tZackStack: Thanks again for the game!  Sorry a couple of those moves got away from you... let me know if you&#39;d like a rematch sometime! \n\tshmil1: i would like to rematch although you are much more better. but it is good to have good teachers. once or twice i have played in a hurry in surgery. but it is no excuse...\n\nHomeworlds Online (SDG# 15297)\nVariants: &quot;Unrated&quot;\nStarted: 2010.1.28, Ended: 2010.4.5\nParticipants: MattWorden (S), makertron (N)\nWinner: MattWorden\n\n1) makertron: Homeworld R3 B1 G3\n\tMattWorden: Hi makertron ... I have not played this game before, but it looks very interesting.  Do you mind playing a newbie-learner? :-)\n\n2) MattWorden: Homeworld G3 R1 Y3 *\n\tmakertron: not at all. i&#39;m pretty inexperienced myself.\n\n3) makertron: Build G1 Makertron\n\n4) MattWorden: Build Y1 Mattworden\n\n5) makertron: Trade G1 Y1 Makertron\n\n6) MattWorden: Discover Y1 Mattworden B2 Butterball\n\n7) makertron: Build G1 Makertron\n\n8) MattWorden: Trade Y1 G1 Butterball\n\n9) makertron: Discover G1 Makertron B2 Ballbutter\n\n10) MattWorden: Build Y1 Mattworden\n\n11) makertron: Build Y1 Makertron\n\n12) MattWorden: Move Y1 Mattworden Butterball\n\n13) makertron: Move Y1 Makertron Ballbutter\n\n14) MattWorden: Trade Y1 R1 Butterball\n\n15) makertron: Build Y1 Ballbutter\n\n16) MattWorden: Build Y2 Mattworden\n\n17) makertron: Trade Y1 R1 Ballbutter\n\n18) MattWorden: Move Y2 Mattworden Butterball\n\n19) makertron: Build G1 Makertron\n\n20) MattWorden: Trade Y2 R2 Butterball\n\n21) makertron: Build R2 Ballbutter\n\n22) MattWorden: Build G2 Butterball\n\n23) makertron: Sacrifice G3 Makertron\nBuild G2 Ballbutter\nBuild G2 Ballbutter\nBuild G3 Makertron\n\n24) MattWorden: Build G3 Butterball\n\n25) makertron: Move G1 Makertron Butterball\n\n26) MattWorden: Attack G1 Butterball\n\n27) makertron: Build R2 Ballbutter\nCatastrophe Butterball Green\n\n28) MattWorden: Trade R1 G1 Butterball\n\tMattWorden: Wow -- nice one! :-p\n\n29) makertron: Build G1 Makertron\n\n30) MattWorden: Build Y1 Mattworden\n\n31) makertron: Move G2 Ballbutter Makertron\n\n32) MattWorden: Move Y1 Mattworden Butterball\n\n33) makertron: Move R2 Ballbutter Makertron\n\n34) MattWorden: Build G2 Butterball\n\n35) makertron: Trade G2 Y2 Makertron\n\n36) MattWorden: Sacrifice G2 Butterball\nBuild R1 Butterball\nBuild R3 Butterball\n\n37) makertron: Build R3 Makertron\n\n38) MattWorden: Move R1 Butterball Makertron\nCatastrophe Makertron R\n\n39) makertron: Move R1 Ballbutter Makertron\n\n40) MattWorden: Build Y2 Butterball\n\n41) makertron: Build Y2 Ballbutter\n\n42) MattWorden: Move R2 Butterball Mattworden\n\n43) makertron: Trade Y1 R1 Makertron\n\n44) MattWorden: Build G2 Butterball\n\n45) makertron: Trade G1 B1 Makertron\n\n46) MattWorden: Build R2 Butterball\n\n47) makertron: Build R3 Ballbutter\n\n48) MattWorden: Trade G1 B1 Butterball\n\n49) makertron: Trade R1 G1 Makertron\n\n50) MattWorden: Move B1 Butterball Mattworden\n\n51) makertron: Discover G1 Makertron R3 Sol\n\n52) MattWorden: Trade G2 B2 Butterball\n\n53) makertron: Sacrifice Y2 Ballbutter\nMove R3 Ballbutter Mattworden\nMove R2 Ballbutter Mattworden\nCatastrophe Mattworden R\n\n54) MattWorden: Build B3 Mattworden\n\n55) makertron: Build B3 Makertron\n\n56) MattWorden: Move B2 Butterball Makertron\nCatastrophe Makertron B\n\n\tMattWorden: Thanks for the game, makertron.\n\nHomeworlds Online (SDG# 15261)\nStarted: 2010.1.29, Ended: 2010.2.6\nParticipants: dethdukk (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) dethdukk: Homeworld R1 B2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tdethdukk: g&#39;day.  thanks for letting me take banker.\n\n4) dethdukk: Build G1 Dethdukk\n\tdethdukk: so, after reviewing your past games, I notice that you never actually lost to andy looney...  so why is it that you are considered the second best?  as andy is the world champ at this point.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dethdukk: Build G1 Dethdukk\n\n7) TwoShort: Build G1 Twoshort\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) TwoShort: Build G1 Twoshort\n\tTwoShort: dangit, I&#39;ve been composing a lengthy reply to your question and not paying enough attention :) should have built yellow.\n\n10) dethdukk: Build G2 Dethdukk\n\tdethdukk: It worked! Actually, I really did just ask cause i was curious.  I am liking this start, but I have no clue how to run banker (I actually prefer fortress) so I guess we will see how this turns out.\n\n11) TwoShort: Discover G1 Twoshort G2 Greenorama\n\tTwoShort: So, the lengthy response:  \r\nWho says I&#39;m second best?!  :)  Actually, I know someone wrote that in the wiki some number of years ago; but I don&#39;t know who or if they still think so.  Definitive Homeworlds rankings do not exist.  Andy is world champion because he won the annual tournament at the Origins game convention; but the tournament is not terribly well attended, and I&#39;ve never been to it.  If I did go, I expect I&#39;d lose.  I beat Andy all 3 times we played here, but I&#39;ve played him in person maybe 6 times and lost every one. I expect there are several people who would ususally be better than me under the time constraints of in-person play.  Around here, when I can take 20 minutes (or 2 days) to think about a move any time I want, I&#39;m pretty good :)  My completely stratospheric rating here should imply I&#39;m completely dominant, but honestly there&#39;s at least 3 players I wouldn&#39;t bet beating the next time we play.\n\tTwoShort: How to play Banker:  Move greens out to 3s (often yellow) in hopes that when that color is gone you can sacrifice the ships to build stars as ships without my ever getting a crack at them.\r\n  How to play Goldilocks: Move out to 2s, choosing the color based on what to pull out of the stash and control who gets the 3s.  for example...\r\n\n\n12) dethdukk: Discover G2 Dethdukk G3 Smallstep\n\tTwoShort: A vast number of other strategies and guidelines also apply, but that&#39;s my nutshell analysis of the strategies uniquely available based on opening.\n\tdethdukk: hm, so next turn you sac the g3 to get 2 g3s and a g2...  I *think* the best move is...\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n14) dethdukk: Discover G1 Dethdukk B3 Giantleap\n\n15) TwoShort: Trade G2 R2 Twoshort\n\n16) dethdukk: Build Y2 Dethdukk\n\n17) TwoShort: Move Y1 Twoshort Greenorama\n\tdethdukk: hm, that was annoying...  so judging by how you normally play, that means that you either see a way to use that ship soon, or you did that just to stop me from getting a g3.\n\n18) dethdukk: Build G2 Dethdukk\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Greenorama\n\tTwoShort: I generally want to use it, or have it force you to take a red also (The Gun Rule); since you could safely ignore it, yes, it was just the best move that stopped you getting the 3.  Of course, now that I&#39;ve got it, I&#39;ll try to develop the treat and force you to take a red when you&#39;d rather do something else.\n\tdethdukk: hm, odd.  I undid my turn, and it says it is my turn (to me at least), but all i got is an undo button.\n\n20) dethdukk: Move Y1 Dethdukk Giantleap\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Greenorama\n\tdethdukk: hm.  yeah, either way I did that you took the advantage.  \n\n22) dethdukk: Build Y3 Dethdukk\n\n23) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Greenorama Giantleap\nMove Y2 Greenorama Smallstep\n\n24) dethdukk: Trade G3 R3 Dethdukk\n\n25) TwoShort: Trade Y3 R3 Giantleap\n\n26) dethdukk: Build G3 Dethdukk\n\n27) TwoShort: Sacrifice R2 Twoshort\nAttack G2 Smallstep\nAttack G1 Giantleap\n\n28) dethdukk: Move Y3 Dethdukk Smallstep\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Giantleap\nBuild Y2 Smallstep\nBuild Y3 Greenorama\n\tdethdukk: ya got me.  you want to play it out, or call it?\n\n30) dethdukk: Trade G2 B2 Dethdukk\n\tTwoShort: I&#39;m always happy to play it out, but it&#39;s up to you; I&#39;d rather you resign not be having fun.  \r\n  By my reckoning, I&#39;ve got only a slight material advantage at the moment; but I can gain a big one this turn.  Personally, I don&#39;t resign until I can see exactly how the opponent can force victory no matter what I do; and I don&#39;t see that here quite yet.\n\n31) TwoShort: Sacrifice G3 Giantleap\nBuild G2 Giantleap\nBuild G3 Smallstep\nBuild R1 Giantleap\n\n32) dethdukk: Discover Y3 Smallstep R2 Haven\n\n33) TwoShort: Trade G2 B2 Giantleap\n\n34) dethdukk: Discover B2 Dethdukk B3 Stall\n\n35) TwoShort: Sacrifice Y3 Greenorama\nMove R3 Giantleap Dethdukk\nMove R1 Giantleap Dethdukk\nMove B2 Giantleap Dethdukk\nCatastrophe Dethdukk Red\n\n\tTwoShort: OK, now I&#39;ve got you :)  You can make me take two more turns to win instead of one, but that&#39;s it.  Anyway, nice game; you were right with me until I got you in the grow-a-3-or-defend-vs-red bind, and  you made it awfully hard to finally close the door after that.\n\tdethdukk: Thank ya much.  Yeah, I felt that you were always just one step ahead.  Did much better than the last time I played against you in any case.  Thanks for the game, hope to do another when some of mine end and college slows down a bit.\n\nHomeworlds Online (SDG# 15302)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.29, Ended: 2010.2.4\nParticipants: dethdukk (S), shmil1 (N)\nWinner: dethdukk\n\n1) shmil1: Homeworld G1 B2 Y3\n\n2) dethdukk: Homeworld R1 B3 G3\n\n\tdethdukk: Good luck, have fun.\n\nHomeworlds Online (SDG# 15309)\nVariants: &quot;Hard time&quot;\nStarted: 2010.1.29, Ended: 2010.4.4\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld B2 R1 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) zoltar: Build G1 Zoltar\n\tTwoShort: Howdy\n\tzoltar: Hi!\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build G1 Zoltar\n\n8) TwoShort: Build G1 Twoshort\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) zoltar: Build B2 Zoltar\n\n12) TwoShort: Build B2 Twoshort\n\n13) zoltar: Trade B2 R2 Zoltar\n\n14) TwoShort: Trade B2 Y2 Twoshort\n\n15) zoltar: Build B2 Zoltar\n\n16) TwoShort: Build B2 Twoshort\n\n17) zoltar: Trade B2 Y2 Zoltar\n\n18) TwoShort: Discover B1 Twoshort G2 Grogar\n\n19) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n20) TwoShort: Discover B2 Twoshort Y2 Yolonda\n\n21) zoltar: Move Y2 Zoltar Greenbelt\n\n22) TwoShort: Trade B2 R2 Yolonda\n\n23) zoltar: Build B2 Greenbelt\n\n24) TwoShort: Move Y1 Twoshort Grogar\n\n25) zoltar: Move B2 Greenbelt Grogar\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Grogar\n\n28) TwoShort: Sacrifice Y1 Twoshort\nMove Y3 Grogar Greenbelt\n\n29) zoltar: Sacrifice B2 Greenbelt\nTrade B1 Y1 Greenbelt\nTrade B3 R3 Grogar\n\n30) TwoShort: Sacrifice B1 Grogar\nTrade Y3 R3 Greenbelt\n\n31) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt G2 Greendale\nDiscover Y1 Zoltar G3 Greenville\n\tzoltar: Once again, I never saw your big sack coming, and my counter-sack did little. I think I&#39;m doomed!\n\n32) TwoShort: Trade Y3 G3 Twoshort\n\n33) zoltar: A Y1 Grogar\n\n34) TwoShort: Move R2 Yolonda Greenville\n\n35) zoltar: Build Y2 Greendale\n\n36) TwoShort: Attack Y1 Greenville\n\tzoltar: I survived all that sacrifices stuff and somehow came out of it with a good position, unless I missed your next trick...\n\tTwoShort: I&#39;ve thought your position was good throughout. I just didn&#39;t say anything because I figured if you wanted to psych yourself out I should let you :)  Of course, that might imply I&#39;m saying so now to psych you out so you&#39;ll miss my next trick...  I guess it depends if I come up with one :)\n\tzoltar: Well, you&#39;re the only player that consistently plays moves I didn&#39;t anticipate -- usually I figure I know what all the candidate moves are and I&#39;m not surprised. When you play something I didn&#39;t even consider, then I&#39;m automatically scared.\n\n37) zoltar: Trade R2 G2 Zoltar\n\n38) TwoShort: Build G1 Twoshort\n\n39) zoltar: Build Y2 Zoltar\n\n40) TwoShort: Build Y3 Greenville\n\n41) zoltar: Sacrifice Y2 Greendale\nMove Y1 Grogar Greenville\nMove Y1 Greendale Greenville\nCatastrophe Greenville Y\n\n42) TwoShort: Discover G1 Twoshort Y2 Yonderboy\n\n43) zoltar: Build B1 Grogar\n\n44) TwoShort: Build G1 Twoshort\n\n45) zoltar: Trade B1 Y1 Grogar\n\n46) TwoShort: Build G1 Yonderboy\n\n47) zoltar: Build G2 Zoltar\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild R1 Greenbelt\nBuild G3 Twoshort\n\n49) zoltar: Discover Y2 Zoltar B3 Bluemoon\n\n50) TwoShort: Discover Y2 Twoshort B2 Bluestar\n\n51) zoltar: Build B1 Grogar\n\n52) TwoShort: Sacrifice G3 Twoshort\nBuild R1 Greenville\nBuild R2 Greenville\nBuild G3 Twoshort\n\n53) zoltar: Discover G2 Zoltar Y3 Goldilox\n\n54) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\tTwoShort: Sorry to be so slow... I&#39;m having a busy week and and this game is getting more than a little bit complicated :) \n\n55) zoltar: Sacrifice G2 Goldilox\nBuild Y3 Grogar\nBuild R2 Grogar\n\n56) TwoShort: Sacrifice Y2 Bluestar\nMove R1 Greenville Grogar\nMove R1 Greenbelt Grogar\nCatastrophe Grogar Red\n\tzoltar: That&#39;s ok. I&#39;ve pretty much given up on this one anyway.\n\tTwoShort: If your pessimism is motivated by a move you see for me, I wish you&#39;d let me know what it is :)  I see a couple ways either of us could launch massive attacks that wouldn&#39;t quite be enough for victory and would cripple the attacker.  It seems like there should be a way for one of us to push it over the tipping point, but I don&#39;t see it yet. \n\tzoltar: I don&#39;t see the victory, but I think I&#39;m slowly being squeezed, and now you have a factory and I don&#39;t; nor do I have any plan of attack or way to threaten you. I am in the blue economy, but with your factory you can catch up and get most of the remaining pieces, I think. \n\tzoltar: I just wish I could see more clearly in a position like this, the way I can in chess, where I know if my opponent&#39;s advantage is crushing, or if I have good drawing chances, etc. Here I only am in a fog with a feeling of impending doom at any moment...\n\tTwoShort: I guess I just want to assure you that I too feel like I&#39;m in a fog of impending doom.  If I set up the position in real pyramids and make the moves I&#39;m considering, I can see if you can crush me in any obvious way the very next turn, but that&#39;s about as far as it goes.  \r\n  I&#39;m happy to have the factory, but I can&#39;t beat you to the blues, or even get one without giving you the choice of blowing up half my world or taking both b3s.  If I take the red this turn, you catastrophe me and put the g3 you need in the stash so I spend a turn keeping it away from you.  If I take yellow, you can cash Goldilox, which I guess is what I&#39;m leaning toward, but it&#39;s not much better than even.\r\n  I don&#39;t see how to force catastrophes so I can get more of the pieces after.  So it seems like the game is reaching a stable detente.  Since that never happens, I assume one of us will find the killer move here somewhere, but I don&#39;t see it so far.\n\tzoltar: That makes sense. I created Goldilox as an investment to make sure I could get one of the Y3&#39;s as if you get them both I&#39;m in big trouble, and I guess there&#39;s no way right now to use your factory in crushing way without my having powerful counter-moves. Making it an interesting game. I think my position has improved over the last few moves, too, and I&#39;m holding my own much better than I usually do in my games with you. And, even given all that, I feel I&#39;m in that fog of impending doom!\n\n57) zoltar: Trade Y3 R3 Grogar\n\n58) TwoShort: Discover G1 Yonderboy Y3 Yoyodyne\n\n59) zoltar: Move R3 Grogar Yoyodyne\n\n60) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yonderboy\nBuild G3 Twoshort\nBuild Y2 Bluestar\n\n61) zoltar: Attack G1 Yoyodyne\n\n62) TwoShort: Move Y3 Twoshort Grogar\n\n63) zoltar: Move R3 Yoyodyne Yonderboy\n\n64) TwoShort: Sacrifice G2 Yonderboy\nBuild R1 Greenbelt\nBuild R1 Greenville\n\n65) zoltar: Sacrifice G1 Yoyodyne\nBuild Y3 Bluemoon\n\n66) TwoShort: Sacrifice R2 Greenville\nAttack B2 Grogar\nAttack B1 Grogar\n\n\tzoltar: Well, that does it; my position has rapidly deteriorated, and now I lost all my blue pieces.\n\nHomeworlds Online (SDG# 15249)\nStarted: 2010.2.4, Ended: 2010.2.17\nParticipants: dethdukk (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) dethdukk: Homeworld R1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\tdethdukk: Hello, good luck in the game.\n\tzoltar: Hi, same to you!\n\n4) dethdukk: Build G1 Dethdukk\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) zoltar: Build G1 Zoltar\n\n8) dethdukk: Build G1 Dethdukk\n\n9) zoltar: Trade G1 R1 Zoltar\n\tdethdukk: kind of weird... my best choice is really to just do what you have done (so far)\n\n10) dethdukk: Build G1 Dethdukk\n\n11) zoltar: Build R1 Zoltar\n\n12) dethdukk: Discover G1 Dethdukk B2 Smallstep\n\n13) zoltar: Discover R1 Zoltar B1 Blueberry\n\n14) dethdukk: Trade G1 B1 Dethdukk\n\n15) zoltar: Build R2 Zoltar\n\n16) dethdukk: Build G1 Dethdukk\n\n17) zoltar: Trade R2 Y2 Zoltar\n\n18) dethdukk: Build G1 Dethdukk\n\n19) zoltar: Build G2 Zoltar\n\n20) dethdukk: Discover G1 Dethdukk Y2 Giantleap\n\n21) zoltar: Move G2 Zoltar Blueberry\n\n22) dethdukk: Build B1 Dethdukk\n\n23) zoltar: Build R2 Blueberry\n\n24) dethdukk: Move B1 Dethdukk Giantleap\n\n25) zoltar: Sacrifice Y1 Zoltar\nMove R2 Blueberry Giantleap\n\n26) dethdukk: Build B2 Giantleap\n\n27) zoltar: Attack B2 Giantleap\n\n28) dethdukk: Build B3 Giantleap\n\n29) zoltar: Sacrifice G2 Blueberry\nBuild R2 Blueberry\nBuild B3 Giantleap\nCatastrophe Giantleap B\n\n30) dethdukk: Discover G1 Giantleap R3 Pin\n\n31) zoltar: Trade R2 G2 Blueberry\n\n32) dethdukk: Build B1 Dethdukk\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild R2 Blueberry\nBuild R2 Giantleap\nBuild R3 Zoltar\n\n34) dethdukk: Discover B1 Dethdukk B2 Chess\n\n35) zoltar: Trade R3 G3 Zoltar\n\n36) dethdukk: Build B3 Dethdukk\n\n37) zoltar: Build R3 Blueberry\n\tdethdukk: interesting game so far.  never seen someone concentrate on red before.\n\n38) dethdukk: Sacrifice G1 Dethdukk\nBuild B3 Chess\n\n39) zoltar: Sacrifice Y2 Zoltar\nMove R2 Blueberry Smallstep\nMove R3 Blueberry Chess\n\tzoltar: Well, I&#39;ve never tried concentrating on red before.\n\tdethdukk: doing pretty good so far... you&#39;ve got my HW pinned down pretty well, and I keep feeling like I&#39;ve got no gun while you&#39;ve got a lot of them.\n\n40) dethdukk: Sacrifice B3 Chess\nTrade B1 G1 Chess\nTrade G1 B1 Pin\nTrade B3 G3 Dethdukk\n\tzoltar: Then I say it&#39;s time to start shootin&#39;!\n\n41) zoltar: Sacrifice R2 Giantleap\nAttack G1 Chess\nAttack G1 Smallstep\n\tdethdukk: I must admit that even if this game is completely odd, it is funny as hell trying to counter your attacks using blue...\n\n42) dethdukk: Sacrifice G3 Dethdukk\nBuild B3 Dethdukk\nBuild B3 Pin\nBuild Y1 Dethdukk\n\n43) zoltar: Build R2 Chess\n\n44) dethdukk: Trade B3 G3 Pin\n\n45) zoltar: Trade R3 Y3 Chess\n\n46) dethdukk: Build B3 Pin\n\n47) zoltar: Build R3 Smallstep\n\tdethdukk: not much I can do to stop whats coming...  fortunately its not quite the end of the game.\n\n48) dethdukk: Discover Y1 Dethdukk Y2 Expansion\n\n49) zoltar: Sacrifice Y3 Chess\nMove R1 Blueberry Pin\nMove R2 Giantleap Pin\nMove R2 Smallstep Pin\nCatastrophe Pin R\n\tzoltar: Well, you could have sacrificed that y1 and moved one of the big ships to &#39;expansion&#39; instead, I think.\n\tdethdukk: true...  I think that I will be a little better off in the long run this way.  \n\n50) dethdukk: Discover B3 Dethdukk R2 Reboot\n\n51) zoltar: Build R1 Smallstep\n\tdethdukk: yeah, I knew it was gunna happen when you made the Y3.  I was trying to decide if I should try to save a ship or not.  I think you&#39;ll get me in the long run, it takes too long to grow using blues as a main I think, so you are slowly out-growing me...  but yet sure tho, we&#39;ll see.  I&#39;m off for tonight.\n\tzoltar: Reboot is right -- it&#39;s a whole new game!\n\tzoltar: I&#39;m going to bed -- will come back to this with a fresh look later!\n\n52) dethdukk: Sacrifice G3 Dethdukk\nBuild B1 Reboot\nBuild B3 Dethdukk\nBuild Y1 Dethdukk\n\n53) zoltar: Sacrifice G2 Blueberry\nBuild R2 Smallstep\nBuild R3 Chess\n\n54) dethdukk: Trade B3 G3 Dethdukk\n\n55) zoltar: Trade R3 Y3 Smallstep\n\n56) dethdukk: Trade B3 R3 Reboot\n\n57) zoltar: Trade R3 Y3 Chess\n\tdethdukk: I has guns!  bwahahahah.  or something like that.\n\n58) dethdukk: Sacrifice G3 Dethdukk\nBuild B1 Reboot\nBuild B3 Dethdukk\nBuild B3 Reboot\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild R3 Zoltar\nBuild Y2 Chess\nBuild Y2 Smallstep\n\tzoltar: Yeah, I was afraid of that, but yellow is so crucial, that I was going to have to give up at least one R3 if I wanted to get into the Yellow industry. I might as well go for more yellow, then, now that you&#39;ve got a red ship.\n\n60) dethdukk: Move Y1 Dethdukk Reboot\n\tzoltar: Ok, I can do that too!\n\n61) zoltar: Trade R3 Y3 Zoltar\n\n62) dethdukk: Trade B3 G3 Dethdukk\n\tzoltar: There have been more large ship swaps and sacks in this game than in any homeworlds game I&#39;ve ever played, I think.\n\n63) zoltar: Discover R1 Smallstep B3 Blueyoudonthave\n\tdethdukk: I think its cause we both went for different colors, and we both succeeded.  or something.\n\n64) dethdukk: Trade B1 G1 Reboot\n\n65) zoltar: Sacrifice Y3 Smallstep\nDiscover R1 Zoltar B1 Wormhole\nMove R1 Wormhole Reboot\nMove R1 Blueyoudonthave Reboot\nCatastrophe Reboot R\n\tzoltar: Well, this is looking too dangerous, so I think once again, I&#39;ll simplify us down, and take the interest I get after the simplification.\n\n66) dethdukk: Build B1 Dethdukk\n\tdethdukk: narg, ya got me... that should be game in a couple turns.  didnt see that you could do that, I&#39;da moved the red ship outta there.  cant believe I didnt see it actually.  well gg, I&#39;d like to play you again when college calms down once more.\n\n67) zoltar: Trade Y3 G3 Chess\n\tzoltar: I was expecting you to move your red ship to challenge my small red ship. Then I sack my Y2 and move my two R2&#39;s into the system and blow up your red ship, still retaining my Y3. But leaving both the B3 and R3 in the reboot system meant I could sac a Y3 and just the two R1&#39;s and take out two of your large ships leaving me with the two-to-one large ship ratio, which gives me too much of an advantage now. The move of the R1 was to both block your growing the B3 and threaten to blow up reboot so I figured I&#39;d get to knock out your R3 and take away your only gun again when you moved it to respond.\n\n\tdethdukk: yeah, I&#39;m gunna have to forfeit.  If I move out, you move and capture me, if I stay in my homeworld, you catastrophy my ships soon as I get past 2.  gg as before, I&#39;ll ask for another when I have more time.  was very fun\n\tzoltar: Ok. Yeah, you can&#39;t expand, and I&#39;m gonna sack my G3 for all 3 remaining yellows next move, freezing you out of the yellow as well, and then just slowly build until I have a doomsday machine and can sack Y3&#39;s two turns in a row to move in and blow up your double star. There&#39;s really nothing you could do. I&#39;d like to go back and have you redo the move before I blew up the reboot system, but the system isn&#39;t sophisticated enough to allow it. \n\nHomeworlds Online (SDG# 15424)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.7, Ended: 2010.3.26\nParticipants: headphoned (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) headphoned: Homeworld R1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) headphoned: Build G1 Headphoned\n\n5) Uglyfoot: Discover G1 Uglyfoot R1 Fort\n\n6) headphoned: Trade G1 Y1 Headphoned\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) headphoned: Build Y1 Headphoned\n\n9) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n10) headphoned: Build Y2 Headphoned\n\n11) Uglyfoot: Build Y2 Uglyfoot\n\n12) headphoned: Trade Y1 R1 Headphoned\n\n13) Uglyfoot: Trade Y2 R2 Uglyfoot\n\n14) headphoned: Build R2 Headphoned\n\n15) Uglyfoot: Move Y1 Uglyfoot Fort\n\n16) headphoned: Discover R2 Headphoned G3 Trof\n\n17) Uglyfoot: Build Y1 Fort\n\n18) headphoned: Trade Y1 B1 Headphoned\n\n19) Uglyfoot: Discover Y1 Fort B3 Mall\n\n20) headphoned: Move B1 Headphoned Trof\n\n21) Uglyfoot: Build Y1 Fort\n\n22) headphoned: Build G1 Headphoned\n\n23) Uglyfoot: Build Y2 Fort\n\n24) headphoned: Build Y3 Headphoned\n\n25) Uglyfoot: Move Y1 Fort Mall\n\n26) headphoned: Move Y2 Headphoned Trof\n\n27) Uglyfoot: Build Y3 Fort\n\n28) headphoned: Move Y2 Trof Fort\nCatastrophe Fort Yellow\n\n29) Uglyfoot: Build G1 Uglyfoot\n\n30) headphoned: Move G1 Headphoned Trof\n\n31) Uglyfoot: Build G2 Fort\n\n32) headphoned: Trade R2 Y2 Trof\n\n33) Uglyfoot: Move Y1 Mall Fort\n\n34) headphoned: Discover G1 Trof B1 Kwest\n\n35) Uglyfoot: Move G1 Fort Mall\n\n36) headphoned: Move B1 Trof Kwest\n\n37) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Fort\nBuild G2 Mall\nBuild G3 Uglyfoot\n\n38) headphoned: Build B1 Kwest\n\n39) Uglyfoot: Trade G2 B2 Mall\n\n\theadphoned: WTF. I didn&#39;t resign and I didn&#39;t get an e-mail that it was my turn. Goddamnit. Oh well. \n\tUglyfoot: Play again?  Without hard time?\n\nHomeworlds Online (SDG# 15392)\nStarted: 2010.2.9, Ended: 2010.4.3\nParticipants: dethdukk (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R1 G3\n\n2) dethdukk: Homeworld R1 B3 G3\n\tagentofchaos: Hi, enjoy the game. \n\tdethdukk: thanks, you too.\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) dethdukk: Build G1 Dethdukk\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) dethdukk: Build G1 Dethdukk\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) dethdukk: Trade G1 B1 Dethdukk\n\n11) agentofchaos: Build R2 Agentofchaos\n\n12) dethdukk: Build B1 Dethdukk\n\n13) agentofchaos: Trade R2 Y2 Agentofchaos\n\n14) dethdukk: Discover B1 Dethdukk G2 Twin\n\n15) agentofchaos: Build R2 Agentofchaos\n\n16) dethdukk: Build B1 Dethdukk\n\n17) agentofchaos: Trade R2 G2 Agentofchaos\n\n18) dethdukk: Discover B1 Dethdukk R2 Bind\n\n19) agentofchaos: Build R2 Agentofchaos\n\n20) dethdukk: Sacrifice G3 Dethdukk\nBuild B2 Twin\nBuild B2 Bind\nBuild B3 Dethdukk\n\n21) agentofchaos: Discover Y2 Agentofchaos B3 Sinistrex\n\n22) dethdukk: Trade B3 G3 Dethdukk\n\n23) agentofchaos: Trade G3 B3 Agentofchaos\n\n24) dethdukk: Trade B2 R2 Twin\n\n25) agentofchaos: Move R1 Agentofchaos Sinistrex\n\n26) dethdukk: Build R3 Twin\n\n27) agentofchaos: Build R3 Agentofchaos\n\n28) dethdukk: Trade B2 Y2 Bind\n\n29) agentofchaos: Move R3 Agentofchaos Sinistrex\n\n30) dethdukk: Build B2 Dethdukk\n\n31) agentofchaos: Build Y1 Agentofchaos\n\n32) dethdukk: Trade B2 Y2 Dethdukk\n\n33) agentofchaos: Build G1 Agentofchaos\n\n34) dethdukk: Move Y1 Dethdukk Twin\n\n35) agentofchaos: Move G1 Agentofchaos Sinistrex\n\n36) dethdukk: Sacrifice G3 Dethdukk\nBuild Y3 Dethdukk\nBuild Y3 Bind\nBuild Y3 Twin\n\n37) agentofchaos: Build G1 Agentofchaos\n\n\nHomeworlds Online (SDG# 15486)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.10, Ended: 2010.2.19\nParticipants: jake007 (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld G2 R1 B3\n\n2) jake007: Homeworld G3 Y1 B3\n\n3) shmil1: Build B1 Shmil1\n\tjake007: To nech&aacute;pu...\n\n4) jake007: Build B1 Jake007\n\tshmil1: koukni na pravidla :) http://mwe.cz/binaryhomeworldspravidla.html\n\tshmil1: v t&amp;#283;ch p&amp;#345;&iacute;kazech nahrazuje&#154; barvy p&iacute;smeny b=blue... a velikosti jsou 1-3. v ka&#158;d&eacute;m kole&#154; zvol typ p&amp;#345;&iacute;kazu (build, move...) a pak to rozepi&#154;...\n\n5) shmil1: Trade B3 Y3 Shmil1\n\n6) jake007: Trade B3 Y3 Jake007\n\n7) shmil1: Discover B1 Shmil1 G3 Olddays\n\n8) jake007: Build B1 Jake007\n\n9) shmil1: Build B2 Olddays\n\tjake007: Nic jin&eacute;ho mi nefunguje, nevim, co m&aacute;m d&amp;#283;lat.\n\n\tjake007: nevim co mam delat, jak se mam pohnout, nic nefunguje\n\tjake007: nevim co mam delat, jak se mam pohnout, nic nefunguje, kdyz se skusim pohnout, pise to, ze systems are not connected\n\tshmil1: jasne, protoze jsou spolu spojene jen ruzne velke hvezdy. tak holt fungujou cervi diry. ty mas malou a velkou, tak jsi spojen jen se stredni. a tu musis teprve objevit...\n\nHomeworlds Online (SDG# 15487)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.10, Ended: 2010.3.14\nParticipants: Kermit (S), jeep (N)\nWinner: jeep\n\n1) jeep: H R1 B2 G3\n\n2) Kermit: Homeworld Y1 B2 G3\n\n3) jeep: B G1 Jeep\n\n4) Kermit: Build G1 Kermit\n\n5) jeep: T G1 Y1 Jeep\n\n6) Kermit: Trade G1 B1 Kermit\n\n7) jeep: B Y1 Jeep\n\n8) Kermit: Discover B1 Kermit G3 Freebus\n\n9) jeep: B Y2 Jeep\n\n10) Kermit: B B1 Freebus\n\tjeep: Haha. I missed that this is a small universe. I really should have noticed immediately \n\n11) jeep: Discover Y1 Jeep B3 Moon\n\n12) Kermit: Build G1 Kermit\n\n\n\n13) jeep: Trade Y2 G2 Jeep\n\n14) Kermit: Trade G1 R1 Kermit\n\n15) jeep: Build Y2 Jeep\n\n16) Kermit: Move R1 Kermit Moon\n\n17) jeep: Discover Y1 Moon B2 Far\n\n\tKermit: me be toast ... can&#39;t build yellow can&#39;t trade for it\n\tjeep: I don&#39;t think you were that bad off... You could have traded your G3 for yellow...\n\nHomeworlds Online (SDG# 15301)\nStarted: 2010.2.11, Ended: 2010.2.17\nParticipants: TwoShort (S), umfpt (N)\nWinner: TwoShort\n\n1) umfpt: Homeworld B2 Y1 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) umfpt: Build G1 Umfpt\n\n4) TwoShort: Build G1 Twoshort\n\n5) umfpt: Discover G1 Umfpt Y3 Tola\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) umfpt: Build G1 Umfpt\n\n8) TwoShort: Build Y1 Twoshort\n\n9) umfpt: Trade G1 B1 Umfpt\n\n10) TwoShort: Build Y2 Twoshort\n\n11) umfpt: Build G1 Tola\n\n12) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n13) umfpt: Move G1 Tola Bluonia\n\n14) TwoShort: Discover Y1 Twoshort Y2 Yelly\n\n15) umfpt: Build G1 Bluonia\n\n16) TwoShort: Build G2 Twoshort\n\n17) umfpt:\n\nBuild G2 Tola\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n19) umfpt: Trade G1 R1 Bluonia\n\n20) TwoShort: Trade Y2 R2 Bluonia\n\n21) umfpt: Move B1 Umfpt Tola\n\n22) TwoShort: Attack R1 Bluonia\n\n23) umfpt: Move G2 Tola Yelly\n\n24) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluonia Tola\nMove Y3 Tola Umfpt\n\n25) umfpt: Build G1 Umfpt\n\n26) TwoShort: Sacrifice R2 Bluonia\nAttack G3 Umfpt\nAttack G1 Umfpt\n\tTwoShort: Thanks for the game.\n\n\nHomeworlds Online (SDG# 15507)\nStarted: 2010.2.17, Ended: 2010.3.30\nParticipants: dethdukk (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) dethdukk: Homeworld B1 Y2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) dethdukk: Build G1 Dethdukk\n\tdlwillson: Dood, that took FOREVER.  I know it&#39;s hard to select homeworld colors, though.  Especially when you&#39;re new...  ;-)\n\n5) dlwillson: Discover G1 Dlwillson B1 Golly\n\n6) dethdukk: Trade G1 B1 Dethdukk\n\n7) dlwillson: Build G1 Dlwillson\n\n8) dethdukk: Build B2 Dethdukk\n\n9) dlwillson: Build G1 Golly\n\n10) dethdukk: Discover B1 Dethdukk R3 Bounds\n\n11) dlwillson: Trade G1 Y1 Golly\n\n12) dethdukk: Sacrifice G3 Dethdukk\nBuild B2 Bounds\nBuild B2 Bounds\nBuild B3 Dethdukk\n\n13) dlwillson: Trade G3 B3 Dlwillson\n\tdlwillson: wow!\n\n14) dethdukk: Trade B2 Y2 Bounds\n\n15) dlwillson: Discover B3 Dlwillson G1 Sprout\n\n16) dethdukk: Trade B1 R1 Bounds\n\n17) dlwillson: Build G2 Dlwillson\n\n18) dethdukk: Trade B3 G3 Dethdukk\n\tdlwillson: I can never decide whether to be annoyed or proud that you&#39;re beating me.  Mumble...\n\n19) dlwillson: Build G2 Golly\n\n20) dethdukk: Build G2 Dethdukk\n\n21) dlwillson: Discover G1 Golly B3 Whuhoo\n\n22) dethdukk: Move G2 Dethdukk Bounds\n\n23) dlwillson: Build G3 Golly\n\n24) dethdukk: Build G3 Dethdukk\n\n25) dlwillson: Trade G2 R2 Dlwillson\n\n26) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Dethdukk\nBuild G3 Bounds\nBuild Y1 Bounds\n\n27) dlwillson: Sacrifice G3 Golly\nBuild G3 Dlwillson\nBuild B1 Sprout\nBuild R1 Dlwillson\n\n28) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Dethdukk\nBuild R1 Bounds\nBuild B2 Dethdukk\n\n29) dlwillson: Trade B3 Y3 Sprout\n\n30) dethdukk: Sacrifice B2 Dethdukk\nTrade B2 R2 Dethdukk\nTrade R1 Y1 Bounds\n\n31) dlwillson: Move Y3 Sprout Whuhoo\n\n32) dethdukk: Move Y2 Bounds Sprout\n\n33) dlwillson: Sacrifice G3 Dlwillson\nBuild Y3 Golly\nBuild Y3 Whuhoo\nBuild G3 Dlwillson\n\n34) dethdukk: Move Y1 Bounds Golly\n\n35) dlwillson: Sacrifice Y3 Golly\nMove Y1 Golly Whuhoo\nMove Y3 Whuhoo Dethdukk\nMove Y1 Whuhoo Dethdukk\n\n36) dethdukk: Sacrifice R1 Bounds\nAttack Y3 Dethdukk\n\tdlwillson: I think I got you, buddy.\n\n37) dlwillson: S G1 Whuhoo\nB Y3 Dethdukk\nC Dethdukk Yellow\n\n\nHomeworlds Online (SDG# 15156)\nStarted: 2010.2.20, Ended: 2010.2.24\nParticipants: mathochist (S), ts52 (N)\nWinner: mathochist\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) mathochist: Homeworld Y1 B3 G3\n\tts52: Have a good game.\n\n3) ts52: B G1 Ts52\n\n4) mathochist: B G1 Mathochist\n\n5) ts52: D G1 Ts52 B3 Gonzo\n\n6) mathochist: Trade G1 Y1 Mathochist\n\n7) ts52: Build G1 Ts52\n\n8) mathochist: Build Y2 Mathochist\n\n9) ts52: Trade G1 R1 Ts52\n\n10) mathochist: Build G1 Mathochist\n\n11) ts52: Build R1 Ts52\n\n12) mathochist: Discover Y2 Mathochist B2 Kermit\n\n13) ts52: Move R1 Ts52 Gonzo\n\n14) mathochist: B Y2 Mathochist\n\n15) ts52: Build R1 Ts52\n\n16) mathochist: Move G1 Mathochist Kermit\n\n17) ts52: Build R2 Ts52\n\n18) mathochist: B Y2 Kermit\n\n19) ts52: Discover R2 Ts52 Y3 Bigbird\n\n20) mathochist: B Y3 Kermit\n\n21) ts52: B R2 Ts52\n\n22) mathochist: Trade Y3 R3 Kermit\n\n23) ts52: Discover R2 Ts52 Y3 Zoe\n\n24) mathochist: Build Y3 Kermit\n\n25) ts52: Trade R1 B1 Ts52\n\n26) mathochist: Build R1 Kermit\n\tts52: I don&#39;t think this one&#39;s going to well for me. Should have seen you getting all the yellow. D&#39;oh!\n\tmathochist: I&#39;ve only played this game a handful of times, but I do seem to be picking up a few tricks.  :)  But I still have to figure out what to do with it now that I have it all.  \n\n27) ts52: Build R2 Gonzo\n\n28) mathochist: Move R3 Kermit Bigbird\n\n29) ts52: Build R3 Ts52\n\n30) mathochist: Build R3 Kermit\n\n31) ts52: Move B1 Ts52 Zoe\n\n32) mathochist: M G1 Kermit Bigbird\n\n33) ts52: Attack G1 Bigbird\n\n34) mathochist: A R2 Bigbird\n\tmathochist: Huh that was weird, thought I&#39;d made another move\n\n35) ts52: Move G1 Bigbird Ts52\n\n36) mathochist: M Y2 Kermit Bigbird\n\n37) ts52: Discover R3 Ts52 G3 Oscar\n\n38) mathochist: M R3 Kermit Zoe\n\n39) ts52: Pass\n\n40) mathochist: Attack R2 Zoe\n\n\tts52: yeah, I don&#39;t see a way out of this unless you make some serious goofs. But I&#39;d love to play another if you&#39;re up for it.\n\tmathochist: This one was fun, anyway :) I started a rematch already.\n\nHomeworlds Online (SDG# 15546)\nStarted: 2010.2.20, Ended: 2010.4.3\nParticipants: dethdukk (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld R1 B2 G3\n\n2) dethdukk: Homeworld B1 Y3 G3\n\tdethdukk: sorry that took a while, I lost internet for 5+ days\n\n3) mathochist: Build G1 Mathochist\n\tmathochist: no problem.\n\n4) dethdukk: Build G1 Dethdukk\n\n5) mathochist: T G1 Y1 Mathochist\n\n6) dethdukk: Build G1 Dethdukk\n\n7) mathochist: Build Y1 Mathochist\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) mathochist: Build Y2 Mathochist\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) mathochist: Discover Y1 Mathochist G3 Dude\n\n12) dethdukk: Trade G1 R1 Dethdukk\n\n13) mathochist: Sacrifice Y2 Mathochist\nDiscover Y1 Dude G2 Babe\nMove Y1 Babe Dethdukk\nCatastrophe Dethdukk Yellow\n\n14) dethdukk: Build R1 Dethdukk\n\n15) mathochist: Build G1 Mathochist\n\n16) dethdukk: Build R2 Dethdukk\n\n17) mathochist: Build Y1 Mathochist\n\n18) dethdukk: Trade R2 Y2 Dethdukk\n\n19) mathochist: Discover G1 Mathochist Y3 Wishingstar\n\n20) dethdukk: Move R1 Dethdukk Wishingstar\n\n21) mathochist: Move G1 Wishingstar Mathochist\n\n\nHomeworlds Online (SDG# 15587)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.22, Ended: 2010.3.22\nParticipants: mneme (S), wyons (N)\nWinner: mneme\n\n1) wyons: Homeworld B1 R3 G3\n\n2) mneme: Homeworld R1 G2 B3\n\n3) wyons: Build G1 Wyons\n\n4) mneme: Build B1 Mneme\n\n5) wyons: Trade G1 B1 Wyons\n\n6) mneme: Build B2 Mneme\n\twyons: naaah , .. need to think!\n\tmneme: Understandable.\r\n\n\n7) wyons: Build B2 Wyons\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) wyons: Trade B1 Y1 Wyons\n\n10) mneme: Discover B2 Mneme G3 Alpha\n\n11) wyons: Discover B2 Wyons G2 Bonanza\n\n12) mneme: Build Y1 Mneme\n\n13) wyons: Build G1 Wyons\n\n14) mneme: Build B1 Alpha\n\n15) wyons: Trade G1 R1 Wyons\n\n16) mneme: Trade B2 G2 Alpha\n\n17) wyons: Build R1 Wyons\n\n18) mneme: Build B2 Alpha\n\n19) wyons: Move R1 Wyons Bonanza\n\n20) mneme: Trade B2 R2 Alpha\n\n21) wyons: Build R2 Bonanza\n\n22) mneme: Build B2 Mneme\n\n23) wyons: Trade R2 Y2 Bonanza\n\n24) mneme: Discover B2 Mneme Y3 Beta\n\n25) wyons: Discover Y2 Bonanza B3 Zardoz\n\n26) mneme: Sacrifice G2 Alpha\nBuild B2 Alpha\nBuild B3 Mneme\n\n27) wyons: Build B3 Bonanza\n\n28) mneme: Sacrifice B1 Alpha\nTrade B3 G3 Mneme\n\n29) wyons: Sacrifice Y1 Wyons\nDiscover B2 Bonanza B3 Ypres\n\n30) mneme: Build R2 Alpha\n\n31) wyons: Trade B2 R2 Ypres\n\n32) mneme: Trade R2 Y2 Alpha\n\n33) wyons: Build G1 Wyons\n\n34) mneme: Move G3 Mneme Ypres\n\n\twyons: I&#39;m out on this, sorry but you are a clear winner. thanks again.\n\tmneme: It&#39;s fair enough--you were in a bad place.  GG!\r\n\n\nHomeworlds Online (SDG# 15600)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.23, Ended: 2010.5.7\nParticipants: stoneaxe (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld B1 G3 Y3\n\n2) stoneaxe: Homeworld B1 R2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\tstoneaxe: Hello and good luck.  We&#39;re off to an interesting start so far.\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) Subhan64: Build G1 Subhan64\n\n8) stoneaxe: Build G1 Stoneaxe\n\n9) Subhan64: Trade G1 B1 Subhan64\n\n10) stoneaxe: Trade G1 R1 Stoneaxe\n\n11) Subhan64: Build B2 Subhan64\n\n12) stoneaxe: Build R1 Stoneaxe\n\n13) Subhan64: Trade B2 R2 Subhan64\n\n14) stoneaxe: Discover R1 Stoneaxe Y3 Yps\n\n15) Subhan64: Build B2 Subhan64\n\n16) stoneaxe: Build G1 Stoneaxe\n\n17) Subhan64: Trade B2 G2 Subhan64\n\n18) stoneaxe: Trade G3 B3 Stoneaxe\n\n19) Subhan64: Discover B1 Subhan64 R2 Harlans_world\n\n20) stoneaxe: Build G1 Stoneaxe\n\n21) Subhan64: Sacrifice G2 Subhan64\nBuild R1 Subhan64\nBuild R3 Subhan64\n\n22) stoneaxe: Sacrifice G1 Stoneaxe\nBuild R3 Yps\n\n23) Subhan64: Move R1 Subhan64 Harlans_world\n\n24) stoneaxe: Discover G1 Stoneaxe R3 Raz\n\n25) Subhan64: Build Y1 Subhan64\n\n26) stoneaxe: Move R3 Yps Harlans_world\n\n27) Subhan64: Move R2 Subhan64 Harlans_world\nCatastrophe Harlans_world Red\n\n28) stoneaxe: Trade B3 G3 Stoneaxe\n\n29) Subhan64: Build R1 Subhan64\n\n30) stoneaxe: Build G1 Stoneaxe\n\n31) Subhan64: Discover Y3 Subhan64 Y2 Sirius7\n\n32) stoneaxe: Build G2 Raz\n\n33) Subhan64: Move Y3 Sirius7 Raz\n\n34) stoneaxe: Move G1 Stoneaxe Yps\n\n35) Subhan64: Attack G2 Raz\n\n36) stoneaxe: Build G2 Stoneaxe\n\n37) Subhan64: Sacrifice G2 Raz\nBuild Y1 Subhan64\nBuild Y2 Raz\n\n\n38) stoneaxe: Build R2 Yps\n\n39) Subhan64: Discover R1 Subhan64 Y2 Dont_blink\n\n40) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G2 Raz\nBuild G2 Yps\nBuild G3 Stoneaxe\n\n41) Subhan64: Build G3 Subhan64\n\n\nHomeworlds Online (SDG# 15547)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.24, Ended: 2010.3.16\nParticipants: dlwillson (S), shmil1 (N)\nWinner: dlwillson\n\n1) shmil1: Homeworld B2 Y1 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) shmil1: Build G1 Shmil1\n\tdlwillson: Thanks for taking my challenge.  Why two games?\n\n4) dlwillson: Build G1 Dlwillson\n\n5) shmil1: Discover G1 Shmil1 B3 Modry\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) shmil1: Build G1 Modry\n\n8) dlwillson: Build Y1 Dlwillson\n\n9) shmil1: Trade G1 R1 Modry\n\n10) dlwillson: Build Y2 Dlwillson\n\n11) shmil1: Build G1 Modry\n\n12) dlwillson: Trade Y2 R2 Dlwillson\n\n13) shmil1: Build R1 Modry\n\n14) dlwillson: Build Y2 Dlwillson\n\n15) shmil1: Build G1 Shmil1\n\n16) dlwillson: Build G2 Dlwillson\n\n17) shmil1: Build G2 Shmil1\n\n18) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R2 Dlwillson Y2 Temp\nMove R2 Temp Modry\n\n19) shmil1: Trade G2 R2 Shmil1\n\n20) dlwillson: Sacrifice G2 Dlwillson\nBuild R2 Modry\nBuild G2 Dlwillson\nCat Modry Red\n\n21) shmil1: Build G2 Modry\n\n22) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Dlwillson\n\n23) shmil1: Trade G2 Y2 Modry\n\n24) dlwillson: Discover G2 Dlwillson B2 Dingo\n\n25) shmil1: Move G1 Modry Dingo\n\n26) dlwillson: Trade G2 R2 Dingo\n\n27) shmil1: Sacrifice G3 Shmil1\nBuild G2 Modry\nBuild G2 Modry\nBuild G3 Shmil1\n\n28) dlwillson: Sacrifice Y2 Dlwillson\nMove G2 Dlwillson Dingo\n\nMove G2 Dingo Modry\nCatastrophe Modry Green\n\n29) shmil1: Move G1 Shmil1 Modry\n\n30) dlwillson: Move Y1 Dlwillson Dingo\n\n31) shmil1: Build R1 Shmil1\n\n32) dlwillson: Build Y2 Dlwillson\n\n33) shmil1: Build G1 Dingo\n\n34) dlwillson: Discover Y1 Dlwillson B2 Sparkle\n\n35) shmil1: Sacrifice Y2 Modry\nMove G1 Dingo Dlwillson\nMove G1 Dingo Dlwillson\n\n36) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dingo\nBuild Y2 Sparkle\nBuild Y3 Dlwillson\n\n37) shmil1: Trade G1 R1 Dlwillson\n\n38) dlwillson: Attack R1 Dlwillson\n\n39) shmil1: Attack R1 Dlwillson\n\n40) dlwillson: Sacrifice R2 Dingo\nAttack R1 Dlwillson\nAttack G1 Dlwillson\n\n41) shmil1: Build R2 Shmil1\n\n42) dlwillson: Trade Y3 G3 Dlwillson\n\n43) shmil1: Trade G3 Y3 Shmil1\n\n44) dlwillson: Build Y3 Dlwillson\n\n45) shmil1: Move R2 Shmil1 Modry\n\n46) dlwillson: Move Y3 Dlwillson Dingo\n\n47) shmil1: Sacrifice Y3 Shmil1\nMove R2 Modry Dingo\nMove R1 Shmil1 Modry\nMove R1 Modry Sparkle\n\n48) dlwillson: Sacrifice Y2 Dingo\nMove Y3 Dingo Modry\nMove Y3 Modry Shmil1\n\n\nHomeworlds Online (SDG# 15500)\nStarted: 2010.2.24, Ended: 2010.3.2\nParticipants: shmil1 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) shmil1: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) shmil1: Build G1 Shmil1\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) shmil1: Discover G1 Shmil1 R3 Rudy\n\n7) TwoShort: Build G1 Twoshort\n\n8) shmil1: Build G1 Rudy\n\n9) TwoShort: Build G2 Twoshort\n\n10) shmil1: Build G2 Shmil1\n\n11) TwoShort: Trade G2 Y2 Twoshort\n\n12) shmil1: Build G2 Shmil1\n\n13) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n14) shmil1: Trade G2 B2 Shmil1\n\n15) TwoShort: Build Y1 Twoshort\n\n16) shmil1: Build G2 Rudy\n\n17) TwoShort: Discover Y1 Twoshort Y2 Yolonda\n\n18) shmil1: Move B2 Shmil1 Rudy\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n20) shmil1: Trade G3 Y3 Shmil1\n\n21) TwoShort: Discover Y2 Bluonia G3 Grogar\n\n22) shmil1: Build G2 Shmil1\n\n23) TwoShort: Sacrifice Y3 Bluonia\nMove Y1 Yolonda Grogar\nMove Y1 Grogar Shmil1\nMove Y2 Grogar Shmil1\nCatastrophe Shmil1 Yellow\n\n24) shmil1: Trade G2 R2 Shmil1\n\n25) TwoShort: Trade Y2 R2 Twoshort\n\n26) shmil1: Trade G2 Y2 Rudy\n\n27) TwoShort: Move Y3 Twoshort Shmil1\n\n28) shmil1: Sacrifice Y2 Rudy\nMove G1 Rudy Shmil1\nMove G1 Rudy Shmil1\n\n29) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Shmil1\nAttack G2 Shmil1\n\n30) shmil1: Sacrifice B2 Rudy\nTrade G1 R1 Shmil1\nTrade G1 Y1 Shmil1\n\n31) TwoShort: Sacrifice R2 Shmil1\nAttack R1 Shmil1\nAttack Y1 Shmil1\n\tTwoShort: Thanks for the game!\n\n\nHomeworlds Online (SDG# 15398)\nStarted: 2010.2.24, Ended: 2010.3.26\nParticipants: shmil1 (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld G1 R3 B3\n\n2) shmil1: Homeworld B2 Y1 G3\n\tZackStack: Hi shmil!  You should have mentioned you are a busy surgeon!  My wife is a Physician Assisstant in a surgical department...  I won&#39;t worry about time in this one :-)\n\n3) ZackStack: Build B1 Zackstack\n\n4) shmil1: Build G1 Shmil1\n\n5) ZackStack: Build B1 Zackstack\n\n6) shmil1: Discover G1 Shmil1 B3 Polar\n\n7) ZackStack: Trade B1 Y1 Zackstack\n\n8) shmil1: Build G1 Polar\n\n9) ZackStack: Discover B1 Zackstack Y2 Sunburst\n\n10) shmil1: Build G2 Polar\n\n11) ZackStack: Discover B1 Sunburst G3 Oaktree\n\n12) shmil1: Build G2 Shmil1\n\n13) ZackStack: Build B1 Oaktree\n\n14) shmil1: Move G2 Shmil1 Oaktree\n\n15) ZackStack: Trade B1 Y1 Oaktree\n\n16) shmil1: Build G2 Shmil1\n\n17) ZackStack: Build Y2 Oaktree\n\n18) shmil1: Trade G2 Y2 Polar\n\n19) ZackStack: Trade Y1 R1 Oaktree\n\n20) shmil1: Sacrifice Y2 Polar\nDiscover G1 Polar R2 Rudy\nMove G2 Shmil1 Oaktree\n\n21) ZackStack: Move Y2 Oaktree Rudy\n\n22) shmil1: Sacrifice G2 Oaktree\nBuild G2 Rudy\nBuild G2 Rudy\n\n23) ZackStack: Attack G2 Rudy\n\n24) shmil1: Attack Y2 Rudy\n\n25) ZackStack: Build G3 Rudy\nCatastrophe Rudy Green\n\n26) shmil1: Sacrifice G2 Oaktree\nBuild G1 Polar\nBuild G2 Polar\n\n27) ZackStack: Build B1 Oaktree\n\n28) shmil1: Build G2 Shmil1\n\n29) ZackStack: Build B1 Zackstack\n\n30) shmil1: Trade G1 Y1 Polar\n\n31) ZackStack: Build B2 Oaktree\n\n32) shmil1: Sacrifice Y2 Rudy\nDiscover G2 Polar Y2 Slunce\nMove G1 Polar Slunce\n\n33) ZackStack: Trade B2 Y2 Oaktree\n\n34) shmil1: Trade G2 R2 Shmil1\n\n35) ZackStack: Build B2 Oaktree\n\n36) shmil1: Sacrifice G2 Slunce\nBuild G1 Slunce\nBuild G2 Slunce\n\n37) ZackStack: Build Y2 Oaktree\n\n38) shmil1: Move G1 Slunce Zackstack\n\n39) ZackStack: Attack G1 Zackstack\n\n40) shmil1: Move G1 Slunce Zackstack\n\tshmil1: so, who will be quicker?\n\tZackStack: That will depend on what we&#39;re trying to do I suppose ;-)\n\n41) ZackStack: Discover G1 Zackstack B2 Puddle\n\n42) shmil1: Sacrifice G2 Slunce\nBuild G2 Zackstack\nBuild G2 Zackstack\nCatastrophe Zackstack Green\n\n43) ZackStack: Sacrifice Y2 Oaktree\nMove B1 Oaktree Shmil1\nMove B1 Oaktree Shmil1\n\n44) shmil1: Move R2 Shmil1 Zackstack\n\n45) ZackStack: Attack R2 Zackstack\n\n46) shmil1: Build G1 Shmil1\n\tZackStack: You really need to stop sending your ships over just to watch them get captured at red planets!\n\n47) ZackStack: Build B3 Oaktree\n\n48) shmil1: Move Y1 Polar Shmil1\n\n49) ZackStack: Sacrifice R2 Zackstack\nAttack Y1 Shmil1\nAttack G1 Shmil1\n\n50) shmil1: Trade G3 R3 Shmil1\n\n51) ZackStack: Build Y2 Shmil1\n\n52) shmil1: Attack G1 Shmil1\n\n53) ZackStack: Move B2 Oaktree Shmil1\nCatastrophe Shmil1 Blue\n\n54) shmil1: Build G1 Shmil1\n\n55) ZackStack: Move Y1 Zackstack Shmil1\nCatastrophe Shmil1 Yellow\n\n\tZackStack: Thanks for the game Shmil!  You are getting better.  But you really need to stop giving ships to your opponent!\n\nHomeworlds Online (SDG# 15603)\nVariants: &quot;Unrated&quot;\nStarted: 2010.2.24, Ended: 2010.3.4\nParticipants: ZackStack (S), shmil1 (N)\nWinner: ZackStack\n\n1) shmil1: Homeworld B2 Y1 G3\n\n2) ZackStack: Homeworld Y1 G3 B3\n\tZackStack: Ahhh... Yellow stars make such friendly targets I think I&#39;ll make one too :-)\n\n3) shmil1: Build G1 Shmil1\n\n4) ZackStack: Build B1 Zackstack\n\n5) shmil1: Build G1 Shmil1\n\n6) ZackStack: Discover B1 Zackstack B2 Bluemoon\n\n7) shmil1: Discover G1 Shmil1 B3 Modry\n\n8) ZackStack: Trade B1 G1 Bluemoon\n\n9) shmil1: Build G2 Modry\n\n10) ZackStack: Build B1 Zackstack\n\n11) shmil1: Trade G2 Y2 Modry\n\n12) ZackStack: Build G2 Bluemoon\n\n13) shmil1: Build G2 Modry\n\n14) ZackStack: Trade G2 Y2 Bluemoon\n\n15) shmil1: Move G2 Modry Bluemoon\n\n16) ZackStack: Trade B1 R1 Zackstack\n\n17) shmil1: Trade G2 R2 Bluemoon\n\n18) ZackStack: Sacrifice R1 Zackstack\nAttack R2 Bluemoon\n\n19) shmil1: Sacrifice Y2 Modry\nMove G1 Modry Bluemoon\nMove G1 Bluemoon Zackstack\n\tZackStack: Thanks schmil!  It can be kind of hard to go on the attack in this game...\n\n20) ZackStack: Build B1 Zackstack\n\n21) shmil1: Sacrifice G3 Shmil1\nBuild G2 Zackstack\nBuild G2 Zackstack\nBuild G2 Zackstack\nCatastrophe Zackstack Green\n\n22) ZackStack: Sacrifice Y2 Bluemoon\nDiscover G1 Bluemoon Y3 Passingthrough\nMove G1 Passingthrough Shmil1\n\tZackStack: I thought you might try that.  Its always dangerous to leave yourself without a defensive large at your Homeworld!\n\n23) shmil1: Trade G1 R1 Shmil1\n\n24) ZackStack: Sacrifice R2 Bluemoon\nAttack R1 Shmil1\nPass\n\tZackStack: Good work on your attack to destroy one of my stars.  It might have been a good idea to wait until your defenses were better able to handle loosing that many ships...  \n\n\nHomeworlds Online (SDG# 15612)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.24, Ended: 2010.3.7\nParticipants: shmil1 (S), dlwillson (N)\nWinner: shmil1\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) shmil1: Homeworld B2 Y3 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) shmil1: Build G1 Shmil1\n\n5) dlwillson: Discover G1 Dlwillson B1 Lucky\n\n6) shmil1: Trade G1 R1 Shmil1\n\n7) dlwillson: Build G1 Lucky\n\n8) shmil1: Move R1 Shmil1 Lucky\n\n9) dlwillson: Build G1 Dlwillson\n\n10) shmil1: Attack G1 Lucky\n\n11) dlwillson: Build G2 Dlwillson\n\n12) shmil1: Build G2 Shmil1\n\n13) dlwillson: Discover G2 Dlwillson Y1 Rich\n\n14) shmil1: Trade G2 R2 Shmil1\n\tdlwillson: I think I&#39;ve got you in a few moves.  Maybe not, though...  How are you doing?  Do you ever play Dethdukk?  He&#39;s my son. \n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Lucky\nBuild G2 Rich\nBuild G3 Dlwillson\n\n16) shmil1: Build G3 Shmil1\n\n17) dlwillson: Move G2 Rich Shmil1\n\n18) shmil1: Trade G3 Y3 Shmil1\n\n19) dlwillson: Sacrifice G2 Lucky\nBuild G2 Shmil1\nBuild G3 Lucky\n\n20) shmil1: Sacrifice Y3 Shmil1\nMove G3 Shmil1 Rich\nMove G3 Rich Dlwillson\nMove G1 Lucky Dlwillson\nCatastrophe Dlwillson Green\n\tdlwillson: Good game.  I forgot the universe was small. OOPS!\n\n\nHomeworlds Online (SDG# 15308)\nStarted: 2010.2.24, Ended: 2010.8.24\nParticipants: mathochist (S), zoltar (W), shmil1 (N), pedrop (E)\nWinner: zoltar\n\n1) shmil1: Homeworld B2 Y1 G3\n\n2) pedrop: Homeworld Y1 B3 G3\n\n3) mathochist: Homeworld B1 G2 Y3\n\n4) zoltar: Homeworld R3 B2 G3\n\n5) shmil1: Build G1 Shmil1\n\tmathochist: have fun all!\n\n6) pedrop: Build G1 Pedrop\n\n7) mathochist: Build Y1 Mathochist\n\n8) zoltar: Build G1 Zoltar\n\n9) shmil1: Build G1 Shmil1\n\n10) pedrop: Build G1 Pedrop\n\n11) mathochist: Trade Y3 G3 Mathochist\n\tpedrop: The same to You!\n\n12) zoltar: Build G2 Zoltar\n\n13) shmil1: Discover G1 Shmil1 R3 Rudy\n\n14) pedrop: Trade G1 Y1 Pedrop\n\n15) mathochist: Build Y1 Mathochist\n\n16) zoltar: Trade G2 Y2 Zoltar\n\tpedrop: (Czy&amp;#380;by Polak? )\n\tmathochist: huh?\n\n17) shmil1: Build G1 Rudy\n\n18) pedrop: Discover G1 Pedrop B2 Begining\n\n19) mathochist: Discover Y1 Mathochist G3 Tofu\n\n20) zoltar: Build G2 Zoltar\n\n21) shmil1: Build G2 Shmil1\n\n22) pedrop: Build G2 Pedrop\n\n23) mathochist: Build G2 Mathochist\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Zoltar\n\n25) shmil1: Trade G2 Y2 Shmil1\n\n26) pedrop: Sacrifice G3 Pedrop\nBuild G2 Begining\nBuild G3 Pedrop\nBuild Y2 Pedrop\n\n27) mathochist: Sacrifice G3 Mathochist\nBuild Y3 Tofu\nBuild Y3 Mathochist\nBuild Y3 Mathochist\n\n28) zoltar: Sacrifice Y2 Zoltar\nDiscover Y2 Zoltar B1 Blueberry\nMove G2 Zoltar Blueberry\n\n29) shmil1: Move Y2 Shmil1 Rudy\n\n30) pedrop: Move Y2 Pedrop Begining\n\n31) mathochist: Sacrifice Y1 Mathochist\nDiscover G2 Mathochist G3 Donut\n\n32) zoltar: Pass\n\n33) shmil1: Trade G1 R1 Shmil1\n\n34) pedrop: Trade G1 B1 Begining\n\n35) mathochist: Trade Y3 R3 Mathochist\n\n36) zoltar: Build G1 Blueberry\n\n37) shmil1: Move G1 Rudy Begining\n\n38) pedrop: Trade G2 R2 Begining\n\n39) mathochist: Build R1 Mathochist\n\n40) zoltar: Trade G2 R2 Blueberry\n\n41) shmil1: Sacrifice Y2 Rudy\nMove G1 Rudy Begining\nMove G1 Begining Pedrop\n\n42) pedrop: Trade G2 R2 Pedrop\n\n43) mathochist: B Y1 Mathochist\n\n44) zoltar: Build Y2 Blueberry\n\n45) shmil1: Build G1 Pedrop\n\tmathochist: Sorry! I actually fell asleep on this last night. :( still trying to get causght all the way up.\n\n46) pedrop: Discover G3 Pedrop R2 Dont\n\n47) mathochist: S Y3 Tofu\nM R3 Mathochist Tofu\nM R3 Tofu Dont\nM R3 Dont Pedrop\n\n48) zoltar: Discover Y2 Blueberry B3 Bluemoon\n\n49) shmil1: Trade G1 R1 Pedrop\n\n50) pedrop: Sacrifice G3 Dont\nBuild Y2 Begining\nBuild Y3 Pedrop\nBuild R1 Pedrop\nCatastrophe Pedrop Red\n\n51) mathochist: B Y3 Tofu\n\n52) zoltar: Build Y3 Blueberry\n\n53) shmil1: Build G1 Begining\n\n54) pedrop: Trade Y1 R1 Pedrop\n\n55) mathochist: Trade Y1 B1 Mathochist\n\tmathochist:  Pedrop? You there?\n\tpedrop: Sorry... been too busy lately:/ And this game requires much thinking... ;) I&#39;m making my move now.\n\n56) zoltar: Build G2 Blueberry\n\n57) shmil1: Trade G1 Y1 Begining\n\n58) pedrop: Trade Y2 G2 Begining\n\n59) mathochist: Move B1 Mathochist Tofu\n\n60) zoltar: Discover G2 Blueberry Y3 Goldmine\n\n61) shmil1: Move Y1 Begining Pedrop\n\n62) pedrop: Trade Y3 G3 Pedrop\n\n63) mathochist: Build B1 Tofu\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueberry\nBuild G2 Goldmine\nBuild G3 Zoltar\n\n65) shmil1: Build Y1 Pedrop\n\n66) pedrop: Sacrifice R2 Begining\nAttack Y1N Pedrop\nAttack Y1N Pedrop\n\n67) mathochist: Sacrifice Y3 Tofu\nMove Y1 Tofu Begining\nMove Y1 Begining Pedrop\nMove B1 Tofu Begining\nCatastrophe Pedrop Y\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Bluemoon\nBuild Y1 Bluemoon\n\n69) shmil1: Build R1 Shmil1\n\n70) pedrop: T B1 R1 Begining\n\n71) mathochist: Build Y1 Mathochist\n\n72) zoltar: Sacrifice Y2 Blueberry\nMove Y1 Bluemoon Mathochist\nMove Y1 Bluemoon Mathochist\nCatastrophe Mathochist Y\n\n73) shmil1: Sacrifice R1 Shmil1\nAttack R1E Pedrop\n\n74) pedrop: A B1S Begining\n\n75) mathochist: Trade B1 Y1 Tofu\n\n76) zoltar: Sacrifice Y2 Bluemoon\nMove G1 Blueberry Pedrop\nMove G1 Blueberry Pedrop\nCatastrophe Pedrop G\n\n77) shmil1: Trade R1 G1 Pedrop\n\n78) mathochist: Build R1 Mathochist\n\n79) zoltar: Move R2 Blueberry Begining\n\tmathochist: Dayamn!\n\n80) shmil1: Build G1 Pedrop\n\tzoltar: Yeah, I decided to go wild and blow lots of stuff up.\n\n81) mathochist: Trade R1 G1 Mathochist\n\n82) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n83) shmil1: Trade G1 Y1 Pedrop\n\n84) mathochist: Build R1 Mathochist\n\n85) zoltar: Attack Y2E Begining\n\n86) shmil1: Build G1 Begining\n\n87) mathochist: Build Y1 Tofu\n\n88) zoltar: Sacrifice Y1 Zoltar\nMove G3 Zoltar Blueberry\n\n89) shmil1: Trade G1 Y1 Begining\n\n90) mathochist: Move Y1 Tofu Mathochist\n\n91) zoltar: Attack G1N Begining\n\n92) shmil1: Discover Y1 Begining G1 Malazelena\n\n93) mathochist: B Y2 Mathochist\n\n94) zoltar: Discover G1 Begining Y3 Hummus\n\n95) shmil1: Build Y2 Malazelena\n\n96) mathochist: Discover G1 Mathochist Y3 Curry\n\n97) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Begining\n\n98) shmil1: Build R1 Shmil1\n\n99) mathochist: Trade R1 B1 Mathochist\n\n100) zoltar: Move Y2 Begining Curry\n\n101) shmil1: Move R1 Shmil1 Pedrop\n\n102) mathochist: B R1 Mathochist\n\n103) zoltar: Sacrifice G1 Hummus\nBuild Y3 Zoltar\n\n104) shmil1: Sacrifice Y2 Malazelena\nMove G1 Pedrop Mathochist\nMove Y1 Pedrop Mathochist\n\n105) mathochist: Attack Y1N Mathochist\n\n106) zoltar: Sacrifice Y2 Blueberry\nMove G2 Goldmine Mathochist\nMove Y2 Curry Mathochist\nCatastrophe Mathochist Y\n\n107) shmil1: Build G1 Mathochist\nCatastrophe Mathochist Green\n\n108) mathochist: Move G1 Curry Mathochist\n\n109) zoltar: Attack R1E Begining\n\n110) shmil1: Build Y1 Malazelena\n\n111) mathochist: Build Y1 Tofu\n\n112) zoltar: Move Y2 Zoltar Mathochist\n\n113) shmil1: Move Y1 Malazelena Pedrop\n\n114) zoltar: Attack G2E Begining\n\tmathochist: Ouch!  Ganging up on me, no fair :P\n\n115) shmil1: Build Y2 Malazelena\n\n116) zoltar: Build Y2 Blueberry\n\n117) shmil1: Move R1 Pedrop Malazelena\n\n118) zoltar: Move R2 Begining Donut\n\n119) shmil1: Sacrifice Y2 Malazelena\nMove R1 Malazelena Zoltar\nMove Y1 Malazelena Zoltar\n\n120) zoltar: Sacrifice G1 Zoltar\nBuild R2 Donut\n\n121) shmil1: Sacrifice G3 Shmil1\nBuild R2 Zoltar\nBuild R2 Zoltar\nBuild Y2 Zoltar\nCatastrophe Zoltar Red\n\n122) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Zoltar Pedrop\nMove Y3 Pedrop Shmil1\n\n123) shmil1: Trade Y2 G2 Zoltar\n\n124) zoltar: Sacrifice R2 Donut\nAttack G2N Zoltar\nAttack R1N Shmil1\n\n\nHomeworlds Online (SDG# 15619)\nStarted: 2010.2.24, Ended: 2010.5.2\nParticipants: mathochist (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) mathochist: Homeworld B1 G3 B3 *\n\tts52: Lets try this again. :)\n\n3) ts52: Build G1 Ts52\n\n4) mathochist: Build B1 Mathochist\n\n5) ts52: T G3 B3 Ts52\n\n6) mathochist: Trade B3 Y3 Mathochist\n\n7) ts52: Build B2 Ts52\n\n8) mathochist: Build B2 Mathochist\n\n9) ts52: Trade B3 G3 Ts52\n\n10) mathochist: D B1 Mathochist G2 Frito\n\n11) ts52: Discover B2 Ts52 G3 Kermit\n\n12) mathochist: Build Y1 Mathochist\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) mathochist: Move Y1 Mathochist Frito\n\n15) ts52: Move Y1 Ts52 Kermit\n\n16) mathochist: T B2 R2 Mathochist\n\n17) ts52: Build G1 Ts52\n\n18) mathochist: Build B2 Frito\n\n19) ts52: T G1 R1 Ts52\n\n20) mathochist: Trade B1 R1 Frito\n\n21) ts52: Build G1 Ts52\n\n22) mathochist: D Y1 Frito B3 Dorito\n\n23) ts52: Discover G1 Ts52 Y3 Bigbird\n\n24) mathochist: B B1 Frito\n\n25) ts52: Build G1 Ts52\n\n26) mathochist: Trade B1 Y1 Frito\n\n27) ts52: Build Y2 Kermit\n\n28) mathochist: Build Y2 Frito\n\n29) ts52: Discover Y2 Kermit G2 Robin\n\n30) mathochist: B Y3 Mathochist\n\n31) ts52: Sacrifice G1 Bigbird\nBuild Y3 Kermit\n\n32) mathochist: M Y3 Mathochist Robin\n\n33) ts52: Move Y2 Robin Dorito\n\n34) mathochist: Move Y3 Robin Kermit\n\n35) ts52: Move Y3 Kermit Frito\n\n36) mathochist: M R1 Frito Kermit\n\n37) ts52: Trade Y2 R2 Dorito\n\n38) mathochist: T Y2 R2 Frito\n\n39) ts52: Sacrifice R1 Ts52\nAttack R2 Frito\n\n40) mathochist: Sacrifice R1 Kermit\nAttack R2 Frito\n\n41) ts52: Attack Y1 Dorito\n\n42) mathochist: M B2 Frito Kermit\n\n43) ts52: Sacrifice R2 Dorito\nAttack R2 Frito\nAttack B2 Kermit\n\n44) mathochist: B R1 Mathochist\n\n45) ts52: Build R1 Frito\n\n46) mathochist: Build Y2 Mathochist\n\n47) ts52: Move G1 Ts52 Dorito\n\n48) mathochist: Sacrifice R2 Mathochist\nAttack B2 Kermit\nAttack B2 Kermit\n\n49) ts52: Build Y2 Kermit\n\n50) mathochist: Build B1 Kermit\n\n51) ts52: S R2 Frito\nA B2 Kermit\nA B2 Kermit\n\n52) mathochist: Build B2 Kermit\nCatastrophe Kermit Blue\n\n53) ts52: Attack Y1 Frito\n\n54) mathochist: Move Y2 Mathochist Frito\n\n55) ts52: Attack Y2 Frito\n\n56) mathochist: Move Y3 Kermit Frito\nCatastrophe Frito Yellow\n\n57) ts52: Build G1 Dorito\n\n58) mathochist: B Y1 Mathochist\n\n59) ts52: Move Y1 Kermit Frito\n\n60) mathochist: Discover Y1 Mathochist G2 Waldo\n\n61) ts52: Build G1 Ts52\n\n62) mathochist: Build Y2 Mathochist\n\n63) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild Y3 Dorito\nBuild Y3 Kermit\n\n64) mathochist: Trade Y3 G3 Mathochist\n\n65) ts52: B Y3 Frito\n\n66) mathochist: B R1 Mathochist\n\n67) ts52: Move Y3 Kermit Ts52\n\n68) mathochist: D G3 Mathochist R2 Cheeto\n\n69) ts52: Move Y3 Frito Mathochist\n\n70) mathochist: M Y2 Mathochist Cheeto\n\n71) ts52: S R1 Frito\nA R1 Mathochist\n\n72) mathochist: Attack R1 Mathochist\n\n73) ts52: Trade Y3 R3 Mathochist\n\tmathochist: Ulp!\n\n74) mathochist: M Y1 Waldo Mathochist\n\n75) ts52: B Y3 Frito\n\n76) mathochist: Build R1 Mathochist\nCatastrophe Mathochist R\n\n77) ts52: S Y2 Kermit\nM Y1 Frito Mathochist\nM Y3 Frito Mathochist\n\n78) mathochist: Move G3 Cheeto Mathochist\n\n79) ts52: Trade Y3 R3 Mathochist\n\n\tmathochist: Gleep!  I could delay another turn or two, but it&#39;s pointless.  Thanks for the game!\r\n\n\tts52: Thanks for the game. \n\nHomeworlds Online (SDG# 15615)\nVariants: &quot;Hard time&quot;\nStarted: 2010.2.27, Ended: 2010.4.12\nParticipants: dlwillson (S), ZackStack (N)\nWinner: dlwillson\n\n1) ZackStack: Homeworld B1 R2 G3\n\n2) dlwillson: Homeworld Y1 B3 G3\n\tZackStack: Hey DL!  Have a good game.\n\n3) ZackStack: Build G1 Zackstack\n\n4) dlwillson: Build G1 Dlwillson\n\tZackStack: I noticed you&#39;ve only played a couple of games here on SDG.  Have you played much on the tabletop?\n\tdlwillson: Half a dozen or so, I think.  I love Homeworlds, but it&#39;s hard to find players...\n\tdlwillson: How &#39;bout you?\n\tZackStack: Pretty much just the games here on SDG.  I taught the game to a couple guys from my game group but they aren&#39;t interested to get good enough to be challenging :-(\n\tdlwillson: Where are you, geographically speaking?  I&#39;m in CO.\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: Minnesota.  Perhaps we could meet halfway sometime :-)\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\tdlwillson: Sure.  But we&#39;ll have to play several games to make the trip worth it!  :-)\n\n7) ZackStack: Build G1 Zackstack\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) ZackStack: Build Y2 Zackstack\n\tdlwillson: You seem to have the lead...  :-)  You&#39;re good.\n\tZackStack: Buttering me up so I make a mistake I see :-p\n\n10) dlwillson: Discover Y2 Dlwillson G2 Spot\n\n11) ZackStack: Discover Y2 Zackstack G3 Blob\n\n12) dlwillson: Trade Y1 R1 Dlwillson\n\n13) ZackStack: Discover G1 Zackstack B3 Blub\n\n14) dlwillson: Move Y2 Spot Blub\n\n15) ZackStack: Sacrifice G1 Blub\nBuild G1 Zackstack\n\n16) dlwillson: Build G1 Dlwillson\n\n17) ZackStack: Trade G1 B1 Zackstack\n\n18) dlwillson: Build R1 Dlwillson\n\n19) ZackStack: Move B1 Zackstack Blob\n\n20) dlwillson: Trade Y2 R2 Blub\n\tdlwillson: Sorry for the delay, Zach.  I&#39;ve been super-busy day and night, lately.  I&#39;ll try to get my turn in over lunch or this evening.\n\tZackStack: Take your time.  We&#39;re not on hard time so nothing bad can happen if you need to take some time off :-)\n\n21) ZackStack: Build Y1 Blob\n\n22) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Blub\nBuild R2 Blub\nBuild R3 Dlwillson\n\n23) ZackStack: Sacrifice G3 Zackstack\nBuild Y2 Zackstack\nBuild Y2 Blob\nBuild Y3 Zackstack\n\tdlwillson: Davey pulled off a blue rush on me the other day, and I about pissed myself.  Do red rushes work, too?  Let&#39;s find out...  :-}\n\tZackStack: Hmmm... That would be a new one on me.  Good luck!\n\n24) dlwillson: Trade R3 Y3 Dlwillson\n\n25) ZackStack: Trade Y3 G3 Zackstack\n\n26) dlwillson: Sacrifice Y3 Dlwillson\nMove R2 Blub Zackstack\nMove R1 Blub Zackstack\nDiscover R1 Dlwillson G2 Kitty\n\n27) ZackStack: Attack R2 Zackstack\n\n28) dlwillson: Build R3 Dlwillson\n\n29) ZackStack: Build Y3 Zackstack\n\tZackStack: Here I was hoping locking you out of yellow would benefit me a little longer... :-)\n\n30) dlwillson: Trade R3 G3 Dlwillson\n\n31) ZackStack: Move Y3 Zackstack Blub\n\tdlwillson: It seems I went after you one turn too early or something.  I can&#39;t quite get the earth-shattering kaboom I want.\n\tZackStack: Heh.  Its okay.  I forgive you :-)\n\n32) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB R3 Blub\nB R3 Zackstack\nC Zackstack Red\n\n33) ZackStack: Move Y3 Blub Kitty\n\n34) dlwillson:\nT R3 Y3 Blub\n\tZackStack: Guess I should have seen that coming... :-)\n\n35) ZackStack: Build Y3 Kitty\n\n36) dlwillson: Trade R3 G3 Dlwillson\n\tdlwillson: Sorry for my lack of chat, Zack.  My phone can&#39;t submit chat messages.  Your yellow battleships in orbit are scaring me...\n\n37) ZackStack: Discover Y2 Blob R2 Crimson\n\tZackStack: No prob on the chat.  I&#39;m glad they are scaring you... now to figure out what to do with them :-/\n\n38) dlwillson: B R1 Kitty\n\n39) ZackStack: Move Y2 Crimson Dlwillson\n\n40) dlwillson: A Y2 Dlwillson\n\tZackStack: Nice bind you&#39;re getting me into with the red supply.  Well done.\n\n41) ZackStack: Sacrifice Y3 Kitty\nMove Y3 Kitty Dlwillson\nMove Y1 Blob Kitty\nMove Y1 Kitty Dlwillson\nCatastrophe Dlwillson Yellow\n\n42) dlwillson: Move Y3 Blub Zackstack\n\tZackStack: You have the upper hand here... use it well :-)\n\tdlwillson: Excellent!  I think I&#39;ve still got you, but I suppose we&#39;ll see, eh?\n\n43) ZackStack: Build Y1 Zackstack\nCatastrophe Zackstack Yellow\n\tZackStack: Probably... but I&#39;m not afraid to try some drastic things here :-)\n\n44) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Blub\nBuild R2 Blub\nBuild R3 Dlwillson\n\tdlwillson: Excellent choice. Sorry for the poor move on my part... :-/\n\n45) ZackStack: Build G1 Zackstack\n\tZackStack: No troubles... I&#39;m still very much in trouble at the moment :-)\n\n46) dlwillson: Trade R2 Y2 Blub\n\n47) ZackStack: Discover B1 Blob G2 Goob\n\n48) dlwillson: Trade R3 G3 Dlwillson\n\n49) ZackStack: Build B1 Goob\n\n50) dlwillson: S G3 Dlwillson\nB R2 Kitty\nB R3 Blub\nB R3 Dlwillson\n\n51) ZackStack: Trade G3 R3 Zackstack\n\n52) dlwillson: Sacrifice Y2 Blub\nMove R2 Blub Goob\nMove R2 Kitty Blob\n\n53) ZackStack: Sacrifice Y2 Blob\nDiscover B1 Goob Y1 Pip\nDiscover B1 Goob Y1 Speck\n\n54) dlwillson: Trade R3 Y3 Dlwillson\n\n55) ZackStack: Trade R3 Y3 Zackstack\n\tZackStack: I&#39;m so screwed... now I&#39;m just waiting to see how you decide to finish me off :-)\n\n56) dlwillson: Sacrifice Y3 Dlwillson\nMove R3 Blub Zackstack\nMove R1 Kitty Blub\nMove R1 Kitty Speck\n\n57) ZackStack: Sacrifice Y3 Zackstack\nMove B1 Pip Dlwillson\nMove B1 Speck Dlwillson\nPass\n\tdlwillson: I really wanted to get a red and a blue in, with a g2 sac&#39;able, but I never had time. Way to keep pressure on me, even in a declining game. Great play!\n\tZackStack: Thanks!  I didn&#39;t feel like I was causing you enough trouble... but I&#39;m glad you appreciated what I could do :-) So close...\n\n58) dlwillson: Attack G1 Zackstack\n\tdlwillson: Red rush can work! :-) Thanks for the great game, Zack! I&#39;d challenge you to a ladder-match, if I weren&#39;t already in one. I have an open challenge, if you are up for a rematch.\n\tZackStack: I don&#39;t think my ladder match has been accepted yet... I&#39;ll know in a day or two if I&#39;ve been rejected.  If so I&#39;ll welcome your challenge :-)  Otherwise, I&#39;ll go find your open challenge.  Thanks for the good game!\n\n\nHomeworlds Online (SDG# 15613)\nStarted: 2010.2.27, Ended: 2010.3.7\nParticipants: TwoShort (S), einhorn303 (N)\nWinner: TwoShort\n\n1) einhorn303: Homeworld G2 B3 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) einhorn303: Build Y1 Einhorn303 (n)\n\teinhorn303: Excuse me, this is my first time playing on SuperDuperGames. How do I find out the names of systems?\n\tTwoShort: When you use the yellow power, SuperDuper distinguishes between &quot;move&quot; to an existing system, or &quot;discover&quot; a new one.  If you discover a system, you give it a name.\r\n Just out of curiosity, have you played Homeworlds much off-line?\n\n4) TwoShort: Build G1 Twoshort\n\n5) einhorn303: Discover Y1 Einhorn303 B1 Abyss\n\teinhorn303: I wouldn&#39;t say I play it *much*, since I can&#39;t always find nearby gamers, but I have been playing it sparsely for about four/five years.\r\n\r\nI was curious to know for &quot;# build ship inSystem.&quot; I know that moving completely out of your home system is an illegal move, of course (ha).\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) einhorn303: Build Y1 Einhorn303\n\n8) TwoShort: Build Y2 Twoshort\n\n9) einhorn303: Build Y2 Einhorn303\n\n10) TwoShort: Build Y2 Twoshort\n\n11) einhorn303: Move Y2 Einhorn303 Abyss\n\n12) TwoShort: Trade Y2 R2 Twoshort\n\n13) einhorn303: Trade Y1 R1 Abyss\n\n14) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n15) einhorn303: Trade Y1 B1 Einhorn303\n\teinhorn303: discover Y1 G1 Virga\n\teinhorn303: discover Y1 einhorn303 G1 Virga\n\n16) TwoShort: Build G1 Twoshort\n\n17) einhorn303: Discover B1 Einhorn303 G1 Virga\n\n18) TwoShort: Build G1 Twoshort\n\n19) einhorn303: Trade Y2 G2 Abyss\n\n20) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n21) einhorn303: Build Y1 Einhorn303\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n23) einhorn303: Build B1 Virga\n\n24) TwoShort: Sacrifice Y1 Grogar\nMove G3 Yolonda Abyss\n\n25) einhorn303: Trade Y3 G3 Einhorn303\n\n26) TwoShort: Build Y1 Twoshort\n\n27) einhorn303: Build B2 Virga\n\n28) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Abyss Einhorn303\nDiscover G1 Yolonda Y1 Gotcha\n\n29) einhorn303: Trade G3 R3 Einhorn303\n\n30) TwoShort: Sacrifice R2 Twoshort\nAttack R3 Einhorn303\nAttack Y1 Einhorn303\n\n\nHomeworlds Online (SDG# 15614)\nStarted: 2010.3.10, Ended: 2010.4.7\nParticipants: disk (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey disk!  Thanks for the challenge and have a good game.\n\n\nHomeworlds Online (SDG# 15623)\nStarted: 2010.3.13, Ended: 2010.6.8\nParticipants: mathochist (S), zoltar (N)\nWinner: mathochist\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) mathochist: H R1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) mathochist: Build G1 Mathochist\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) mathochist: T G1 R1 Mathochist\n\n7) zoltar: Build Y1 Zoltar\n\n8) mathochist: B R2 Mathochist\n\n9) zoltar: Build Y1 Zoltar\n\tmathochist: Neh, I just saw the opportunity and thought I&#39;d see how it worked.  :)\n\n10) mathochist: T R2 Y2 Mathochist\n\n11) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n12) mathochist: Build Y2 Mathochist\n\n13) zoltar: Build Y2 Zoltar\n\n14) mathochist: Discover Y2 Mathochist R3 Redhat\n\n15) zoltar: Trade Y2 R2 Zoltar\n\n16) mathochist: Build G1 Mathochist\n\n17) zoltar: Discover Y1 Zoltar B2 Bluemoon\n\n18) mathochist: Sacrifice G3 Mathochist\nBuild Y2 Mathochist\nBuild Y3 Mathochist\nBuild Y3 Redhat\n\tzoltar: You&#39;re in trouble in our 4-player Homeworlds game. Shmil1 can sacrifice his Y2 and move his two G1&#39;s into your homeworld and destroy your green star and your G3 and G2, leaving you crippled with only two Y1&#39;s and one star left.\n\tzoltar: In the 4-player game, you&#39;re probably going to have to sack your G3 for three Yellow ships to avoid such a disaster.\n\tmathochist: Oh frak...  that won&#39;t even protect me.  Getting rid of one green ship would still leave one green ship and one green star, and he can wipe those out.  I&#39;m not sure there&#39;s any way out of that.  Ouch!\n\tzoltar: Well, if you sac your G3 for three yellows, including a Y3 in your homeworld and a Y3 in your outpost, he might not waste his resources to blow up a star and a G2, figuring that he weakens himself as well this early; but if you leave your G3 there, it&#39;s too much of a target to resist. Btw, this is why I start with red and blue stars and never green ones.\n\n19) zoltar: Build Y3 Greenbelt\n\tmathochist: true.  and I usually don&#39;t start with green stars either, but I&#39;m pretty new to the game and still experimenting (like with grabbing the reds early in this game so I could get to the medium pieces quickly.  I&#39;m not sure it really put me ahead of where I would have been anyway, by a couple turns later, y&#39;know?)\n\n20) mathochist: Discover Y2 Mathochist G3 Greensun\n\n21) zoltar: Move R2 Zoltar Greenbelt\n\n22) mathochist: Move Y2 Redhat Bluemoon\n\tmathochist: well, at least I wound up with 3 large yellows (in the 4 player game).  if he destroys my star, I still have several large pieces and am not *too* badly off, considering.  but I can still hope he doesn&#39;t.\n\n23) zoltar: Build R2 Greenbelt\n\tzoltar: I don&#39;t think he well, as you could sack one of your Y3&#39;s to move your two Y2&#39;s into his homeworld and blow up his star, so he probably doesn&#39;t want to weaken both of you by attacking so early. If he doesn&#39;t attack, you&#39;re in the best position by far.\n\n24) mathochist: Trade Y2 R2 Bluemoon\n\n25) zoltar: Sacrifice Y1 Bluemoon\nDiscover R2 Greenbelt G3 Greendale\n\tzoltar: Wow, I&#39;m pretty much doomed in this game!\n\n26) mathochist: Move R1 Mathochist Greensun\n\n27) zoltar: Build R3 Greendale\n\n28) mathochist: B R3 Greensun\n\n29) zoltar: Build G1 Zoltar\n\n30) mathochist: B G1 Mathochist\n\n31) zoltar: Trade G1 B1 Zoltar\n\n32) mathochist: Trade Y2 B2 Mathochist\n\n33) zoltar: Move B1 Zoltar Greenbelt\n\tmathochist: You don&#39;t look doomed.  Did I make a mistake?  :)\n\n34) mathochist: Move G1 Mathochist Redhat\n\tzoltar: No, I&#39;m still holding my own, and my position looks better to me now, but I don&#39;t think you made any mistake.\n\n35) zoltar: Discover Y1 Greenbelt G1 Greentree\n\n36) mathochist: M R1 Greensun Bluemoon\n\n37) zoltar: Build G2 Zoltar\n\n38) mathochist: B G2 Redhat\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Greentree\n\n40) mathochist: Move R3 Greensun Greentree\n\n41) zoltar: Sacrifice Y1 Greentree\nMove Y2 Greentree Greendale\n\n42) mathochist: Move G1 Redhat Bluemoon\n\n43) zoltar: Discover G2 Zoltar Y2 Yellojello\n\n44) mathochist: B Y1 Greensun\n\n45) zoltar: Build B1 Greenbelt\n\n46) mathochist: Move Y3 Redhat Bluemoon\n\n47) zoltar: Move B1 Greenbelt Greendale\n\n48) mathochist: Move B2 Mathochist Greensun\n\n49) zoltar: Move Y3 Greenbelt Redhat\n\n50) mathochist: S G2 Redhat\nB G2 Bluemoon\nB B1 Greensun\n\n\n51) zoltar: Build B3 Greenbelt\n\n52) mathochist: Build B3 Greensun\n\n53) zoltar: Sacrifice Y1 Zoltar\nMove B1 Greenbelt Greensun\nCatastrophe Greensun B\n\n54) mathochist: B Y1 Bluemoon\n\n55) zoltar: Sacrifice G2 Yellojello\nBuild Y2 Greendale\nBuild B1 Greendale\n\n56) mathochist: B G2 Mathochist\n\tmathochist: Yeah, I half expected that.\n\n57) zoltar: Build B1 Greendale\n\n58) mathochist: S Y3 Bluemoon\nM G1 Bluemoon Greendale\nM G2 Bluemoon Greendale\nM G1 Mathochist Greendale\nC Greendale G\n\n59) zoltar: Trade B3 Y3 Greenbelt\n\n60) mathochist: Build Y2 Mathochist\n\n61) zoltar: Build Y2 Zoltar\n\tzoltar: Ouch! I didn&#39;t expect that.\n\tmathochist: Too many eggs in one basket.  \n\n62) mathochist: Build G1 Mathochist\n\n63) zoltar: Trade Y1 B1 Zoltar\n\n64) mathochist: Trade R2 G2 Bluemoon\n\n65) zoltar: Move Y3 Redhat Bluemoon\n\n66) mathochist: Discover G2 Bluemoon G3 Greenmoon\n\n67) zoltar: Move Y3 Greenbelt Greenmoon\n\n68) mathochist: S G2 Greenmoon\nB Y1 Bluemoon\nB R2 Greentree\n\n\n\n69) zoltar: Discover Y3 Bluemoon B3 Bluedeath\n\n70) mathochist: Trade R1 B1 Bluemoon\n\n71) zoltar: Move B1 Zoltar Greenbelt\n\n72) mathochist: Move Y1 Bluemoon Greentree\n\n73) zoltar: Build B1 Greenbelt\n\n74) mathochist: M R3 Greentree Greenbelt\n\n\tzoltar: I looked at the position several times over the weekend and I don&#39;t see any way to save my pieces, and sacrificing a Y3 just lets you build it and get an even bigger advantage. Well done, good game.\n\tmathochist: Thanks!  This was sure an interesting one.  At one point didn&#39;t we have all but 1 or 2 of the pieces in play?  Amazing.\n\nHomeworlds Online (SDG# 15721)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.13, Ended: 2010.3.21\nParticipants: zoltar (S), dlwillson (N)\nWinner: zoltar\n\n1) dlwillson:\nHomeworld B2 R1 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\tdlwillson: Hi Zoltar, thanks for choosing to take a game with me.  Couldn&#39;t say Hi before because I was on my phone...\n\tdlwillson: and the phone&#39;s browser won&#39;t post chat messages, for some reason...\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Hi!\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) dlwillson: Build G1 Dlwillson\n\n8) zoltar: Build G1 Zoltar\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) dlwillson: Build G1 Dlwillson\n\n12) zoltar: Build B1 Zoltar\n\n13) dlwillson: Discover R1 Dlwillson G3 Blueberry\n\n14) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n15) dlwillson: Discover G1 Dlwillson B3 Luniversal\n\n16) zoltar: Build B2 Greenbelt\n\n17) dlwillson: Build G1 Dlwillson\n\n18) zoltar: Build B2 Zoltar\n\n19) dlwillson: Trade G3 B3 Dlwillson\n\n20) zoltar: Trade B2 Y2 Greenbelt\n\n21) dlwillson: Discover B3 Dlwillson Y3 Jumper\n\n22) zoltar: Trade B2 R2 Zoltar\n\n23) dlwillson: Build R1 Blueberry\n\n24) zoltar: Build B2 Greenbelt\n\n25) dlwillson: Build G1 Dlwillson\n\n26) zoltar: Move B2 Greenbelt Blueberry\n\n27) dlwillson: Discover G1 Dlwillson B3 Ring\n\n28) zoltar: Build G2 Zoltar\n\n29) dlwillson:\nBuild R2 Blueberry\n\n30) zoltar: Sacrifice Y1 Zoltar\nMove B2 Blueberry Dlwillson\n\n\tdlwillson: Good game.  Any advice for me?\n\tzoltar: Yeah: never, ever move your only large ship out of your homeworld. If you hadn&#39;t done that, it would still be a close game!\n\nHomeworlds Online (SDG# 15643)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.13, Ended: 2010.4.12\nParticipants: zoltar (S), Jesse (N)\nWinner: zoltar\n\n1) Jesse: Homeworld Y1 B2 G3\n\tJesse: Greetings, Zoltar.\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) Jesse: Build G1 Jesse\n\tzoltar: Greetings, Human!\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build Y2 Jesse\n\n8) zoltar: Build Y2 Zoltar\n\n9) Jesse: Trade Y1 R1 Jesse\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) Jesse: Build R2 Jesse\n\n12) zoltar: Build R2 Zoltar\n\n13) Jesse: Discover R1 Jesse G3 Cabbage\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) Jesse: Build R1 Jesse\n\n16) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n17) Jesse: Trade R1 B1 Jesse\n\n18) zoltar: Move B1 Zoltar Greenbelt\n\n19) Jesse: Move B1 Jesse Cabbage\n\n20) zoltar: Build Y1 Zoltar\n\n21) Jesse: Move Y2 Jesse Cabbage\n\n22) zoltar: Move Y1 Zoltar Greenbelt\n\n23) Jesse: Build R1 Jesse\n\n24) zoltar: Build G1 Zoltar\n\n25) Jesse: Build G1 Jesse\n\n26) zoltar: Build Y1 Zoltar\n\n27) Jesse: Build Y2 Cabbage\n\n28) zoltar: Discover Y2 Zoltar B2 Bluecheese\n\n29) Jesse: Discover Y2 Cabbage G2 Zucchini\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Bluecheese\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n\tJesse: Oops.  Sorry about that.  Oh well, I was probably going down anyway.  Well played.\n\tzoltar: Thanks -- it was close up until that last move -- having all three Y3&#39;s is a huge advantage, as I just need to get a couple more blues and then move my pieces into position for the Doomsday Machine.\n\tJesse: Yeah, I don&#39;t know why I missed that.  I&#39;d been looking at it earlier, but for some reason just at that moment I only saw yellows on two systems.  :/\n\nHomeworlds Online (SDG# 31951)\nVariants: &quot;Unrated&quot;\nStarted: 2017.4.23, Ended: 2017.5.9\nParticipants: wil (S), Personman (N)\nWinner: wil\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) wil: H B1 R2 G3\n\n3) Personman: Build G1 Personman\n\n4) wil: B G1 Wil\n\n5) Personman: Trade G1 Y1 Personman\n\n6) wil: T G1 Y1 Wil\n\n7) Personman: Build Y2 Personman\n\n8) wil: Build Y2 Wil\n\n9) Personman: Discover Y2 Personman B2 B2\n\n10) wil: T Y1 B1 Wil\n\n11) Personman: Build G1 Personman\n\n12) wil: B B1 Wil\n\n13) Personman: Move G1 Personman B2\n\n14) wil: D B1 Wil Y3 Y3\n\n15) Personman: Build Y1 B2\n\n16) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n17) Personman: Build Y2 Personman\n\n18) wil: Discover Y2 Wil G3 G3\n\n19) Personman: Trade Y1 R1 Personman\n\n20) wil: T B3 G3 Wil\n\n21) Personman: Move Y2 B2 Y3\n\n22) wil: T B1 R1 Wil\n\n23) Personman: Sacrifice R1 Personman\nAttack B2 Y3\n\n24) wil: T B2 R2 Y3\n\n25) Personman: Sacrifice Y2 Y3\nDiscover Y2 Personman G2 G2\nMove B2 Y3 G2\n\n26) wil: Move R2 Y3 G2\n\n27) Personman: Trade Y1 R1 B2\n\n28) wil: A Y2 G2\n\twil: I knew I should a went after the little ones\n\n\tPersonman: i keep not making a move here because everything seems terrible, so I think I&#39;ll concede and start another one soon. Sorry for the wait!\n\nHomeworlds Online (SDG# 15656)\nStarted: 2010.3.16, Ended: 2010.5.9\nParticipants: mathochist (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) mathochist: H R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mathochist: B G1 Mathochist\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mathochist: T G1 R1 Mathochist\n\n7) TwoShort: Build Y1 Twoshort\n\n8) mathochist: B R2 Mathochist\n\n9) TwoShort: Build Y1 Twoshort\n\n10) mathochist: Trade R2 Y2 Mathochist\n\n11) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n12) mathochist: Build Y2 Mathochist\n\n13) TwoShort: Build Y2 Twoshort\n\n14) mathochist: Discover Y2 Mathochist G3 Greonia\n\n15) TwoShort: Sacrifice Y1 Twoshort\nDiscover Y1 Twoshort B2 Bluestar\n\n16) mathochist: Build G1 Mathochist\n\n17) TwoShort: Build G1 Twoshort\n\n18) mathochist: Sacrifice G3 Mathochist\nBuild Y1 Greonia\nBuild Y3 Mathochist\nBuild R2 Mathochist\n\n19) TwoShort: Build Y3 Twoshort\n\n20) mathochist: D G1 Mathochist Y3 Yellowstar\n\n21) TwoShort: Move Y1 Bluonia Greonia\n\n22) mathochist: Move Y1 Greonia Bluestar\n\n23) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Bluestar Greonia\nMove Y1 Greonia Mathochist\nMove Y1 Greonia Mathochist\nCatastrophe Mathochist Yellow\n\n24) mathochist: B G1 Yellowstar\n\n25) TwoShort: Discover G3 Twoshort B2 Blitz\n\n26) mathochist: Move G1 Yellowstar Mathochist\n\tmathochist: Damn, I need a large ship.  I think I&#39;m done for.\n\n27) TwoShort: Build G2 Twoshort\n\n28) mathochist: B G2 Mathochist\n\n29) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Blitz\nBuild Y1 Twoshort\n\n30) mathochist: Sacrifice Y2 Greonia\nDiscover G2 Mathochist G3 Fritz\nDiscover R1 Mathochist G3 Glitz\n\tTwoShort: You need a large, and I can prevent your getting one if I don&#39;t blow it, so I also think you&#39;re done for.  But it sure looks like you can stave it off for a long time.\n\n31) TwoShort: Trade G2 R2 Blitz\n\tmathochist: Well, I can hold on to a couple larges, for now, even if I can&#39;t exactly put them to use.\n\n32) mathochist: Build G2 Mathochist\n\n33) TwoShort: Sacrifice Y1 Twoshort\nMove R2 Blitz Yellowstar\n\n34) mathochist: Move G1 Yellowstar Bluestar\n\n35) TwoShort: Build Y1 Twoshort\n\n36) mathochist: Build G2 Mathochist\n\n37) TwoShort: Sacrifice G3 Blitz\nBuild G3 Twoshort\nBuild R2 Yellowstar\nBuild Y1 Twoshort\n\n38) mathochist: Move Y1 Bluestar Twoshort\nCatastrophe Twoshort Yellow\n\n39) TwoShort: Move R2 Yellowstar Bluestar\n\n40) mathochist: S G1 Bluestar\nB R3 Glitz\n\tmathochist: Well, I still need a large, but I feel a little safer for the moment now.\n\tTwoShort: Yeah, I definitely jumped too fast in my haste to finish you.\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G3 Twoshort\nBuild R3 Yellowstar\n\n42) mathochist: Trade G2 Y2 Mathochist\n\n43) TwoShort: Sacrifice G1 Twoshort\nBuild R3 Bluestar\n\n44) mathochist: Sacrifice Y2 Mathochist\nMove R3 Glitz Mathochist\nDiscover R2 Mathochist Y3 Zit\n\n45) TwoShort: Move R3 Yellowstar Mathochist\n\n46) mathochist: A R3 Mathochist\n\tmathochist: Well, I finally have a large piece at my homeworld. Whew!\n\tTwoShort: Unfortunately, it&#39;s only visiting briefly :)\n\n47) TwoShort: Move R2 Yellowstar Mathochist\nCatastrophe Mathochist Red\n\n48) mathochist: T G2 Y2 Mathochist\n\tmathochist: Dammit.  This time I was in too much of a hurry.\n\n49) TwoShort: Trade R2 Y2 Bluestar\n\n50) mathochist: M R2 Zit Mathochist\n\n51) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Twoshort Mathochist\nDiscover R3 Bluestar Y1 Yonder\n\n52) mathochist: Sacrifice G2 Fritz\nBuild G1 Mathochist\nBuild G2 Mathochist\nCatastrophe Mathochist Green\n\n53) TwoShort: Move R3 Yonder Mathochist\n\n54) mathochist: Move R2 Mathochist Twoshort\n\n55) TwoShort: Attack Y2 Mathochist\n\n\tmathochist: I just need one more move, or one more piece!\n\tTwoShort: :) thanks for the game.\n\tmathochist: I actually didn&#39;t understand why you didn&#39;t move a large piece to my home system much earlier in the game.  I didn&#39;t think I&#39;d be able to stop you from winning in a few turns, at the time.\n\nHomeworlds Online (SDG# 15820)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.16, Ended: 2010.4.2\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: SilentTitan\n\n1) dlwillson: Homeworld R1 B3 G3\n\n2) SilentTitan: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) SilentTitan: Discover G1 Silenttitan Y3 Ook\n\n7) dlwillson: Build G1 Dlwillson\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dlwillson: Discover G1 Dlwillson B2 Stuph\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) dlwillson: Build Y1 Dlwillson\n\n12) SilentTitan: Build G1 Ook\n\n13) dlwillson: Build G2 Dlwillson\n\n14) SilentTitan: Move G1 Ook Stuph\n\tdlwillson: Can you take back your last move?  You might want to build that g1 at your homeworld, or add a red so you can split them up.  If you build a g1 in ook, you won&#39;t be able to multi-build, even if I short the greens.\n\tdlwillson: And do you want me to make suggestions, or just shut up and play?  I can do either...\n\tSilentTitan: ok.. .thanks for the help.  I&#39;ll go ahead and do it my way this time.   Take your turn.\n\n15) dlwillson: Build G2 Stuph\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Stuph\nBuild G3 Ook\nBuild G3 Ook\nCatastrophe Stuph G\n\n17) dlwillson: Build Y2 Dlwillson\n\n18) SilentTitan: Move G3 Ook Silenttitan\n\tSilentTitan: Well I think you got me ..... but that was still fun :)\n\tdlwillson: Great Scott!  I actually didn&#39;t see that one coming!\n\n19) dlwillson: Discover Y1 Dlwillson G2 Boogie\n\n20) SilentTitan: Sacrifice G3 Ook\nBuild R1 Silenttitan\nBuild R2 Silenttitan\nBuild G1 Ook\n\n21) dlwillson: Discover Y2 Dlwillson B2 Twist\n\n22) SilentTitan: Discover G1 Ook B2 Eek\n\n23) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Twist\nBuild Y2 Twist\nBuild Y3 Dlwillson\n\n24) SilentTitan: Trade R2 G2 Silenttitan\n\n25) dlwillson: Trade Y3 G3 Dlwillson\n\n26) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Ook\nBuild G3 Silenttitan\nBuild G3 Eek\n\n27) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y3 Dlwillson\nB Y3 Boogie\n\n28) SilentTitan: Move R1 Silenttitan Ook\n\n29) dlwillson: Sacrifice Y3 Dlwillson\nDiscover Y3 Boogie R3 Samba\nDiscover Y2 Twist R3 Tango\nMove Y1 Boogie Tango\n\n30) SilentTitan: Trade G3 Y3 Eek\n\n31) dlwillson: Trade G2 R2 Dlwillson\n\n32) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Eek\nBuild G2 Eek\nBuild G3 Silenttitan\n\n33) dlwillson: Sacrifice Y2 Twist\nMove Y2 Twist Ook\nMove Y1 Tango Silenttitan\n\n34) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Silenttitan\nBuild R2 Silenttitan\nBuild R3 Ook\n\n35) dlwillson: S Y2 Tango\nM Y1 Silenttitan Ook\nM Y3 Samba Silenttitan\n\n36) SilentTitan: Sacrifice Y3 Eek\nMove G2 Eek Dlwillson\nMove G2 Eek Dlwillson\nMove G1 Eek Dlwillson\nCatastrophe Dlwillson G\n\n37) dlwillson: S R2 Dlwillson\n\nA G2 Silenttitan\n\nA R2 Silenttitan\n\n38) SilentTitan: Sacrifice R3 Ook\nAttack R2 Silenttitan\nAttack G2 Silenttitan\nAttack Y1 Ook\n\n39) dlwillson: T Y3 G3 Silenttitan\n\n40) SilentTitan: Build Y2 Ook\nCatastrophe Ook Y\n\n41) dlwillson: T Y1 G1 Dlwillson\n\n42) SilentTitan: Trade R2 Y2 Silenttitan\n\n43) dlwillson: B G1 Dlwillson\n\tSilentTitan: SOoooooooo Let&#39;s go back to the Beginning?  eh?  only I&#39;ll start with a 2pip Green?  Maybe?\n\n44) SilentTitan: Build G1 Silenttitan\n\n45) dlwillson: B G2 Dlwillson\n\n46) SilentTitan: Build G2 Silenttitan\nCatastrophe Silenttitan G\n\n47) dlwillson: T G1 Y1 Dlwillson\n\n48) SilentTitan: Trade R2 G2 Silenttitan\n\n49) dlwillson: Discover G1 Dlwillson B2 Mook\n\n50) SilentTitan: Build R1 Silenttitan\n\n51) dlwillson: Build G1 Dlwillson\n\n52) SilentTitan: Build G1 Silenttitan\n\n53) dlwillson: S G2 Dlwillson\nB Y1 Dlwillson\nB G2 Mook\n\n54) SilentTitan: Discover R1 Silenttitan G3 Thunder\n\n55) dlwillson: Move Y1 Dlwillson Mook\n\n56) SilentTitan: Build R2 Thunder\n\n57) dlwillson: Trade G2 R2 Mook\n\n58) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 Thunder Mook\nMove R2 Mook Dlwillson\n\n59) dlwillson: Move R2 Mook Dlwillson\n\n60) SilentTitan: Attack R2 Dlwillson\n\n\tSilentTitan: I maybe be???? wow.. what I&#39;m missing is any sort of gramatical ability. \n\tdlwillson: Yep. You got me. Good play.\n\nHomeworlds Online (SDG# 15778)\nStarted: 2010.3.18, Ended: 2010.10.17\nParticipants: mathochist (S), zoltar (W), agentofchaos (N), xoet (E)\nWinner: zoltar\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) xoet: Homeworld B3 G2 Y2 *\n\n3) mathochist: Homeworld Y1 B2 G3\n\n4) zoltar: Homeworld R3 B1 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: Hi everybody!\n\n6) xoet: Build Y1 Xoet\n\tmathochist: have fun!\n\n7) mathochist: Build G1 Mathochist\n\n8) zoltar: Build G1 Zoltar\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) xoet: Trade Y1 G1 Xoet\n\n11) mathochist: B G1 Mathochist\n\n12) zoltar: Trade G1 Y1 Zoltar\n\n13) agentofchaos: Build Y1 Agentofchaos\n\n14) xoet: Build Y1 Xoet\n\n15) mathochist: Discover G1 Mathochist Y3 Otter\n\n16) zoltar: Build Y2 Zoltar\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) xoet: Build Y2 Xoet\n\n19) mathochist: Trade G3 Y3 Mathochist\n\n20) zoltar: Discover Y1 Zoltar G2 Greenland\n\tmathochist: Wow, yellow is going like hotcakes.  I may have made a mistake not getting some earlier.\n\n21) agentofchaos: Trade Y1 R1 Agentofchaos\n\n22) xoet: Trade Y1 B1 Xoet\n\tagentofchaos: Get &#39;em while they&#39;re hot!\n\n23) mathochist: Build G1 Mathochist\n\tzoltar: Well, it&#39;s mathochist&#39;s turn in no less than 40 games (that must be a record), but I hope he bothers to make a move in the next couple of days!\n\tmathochist: Sorry I&#39;ve been slower than usual the past couple weeks.  I have chronic illness and it&#39;s been acting up lately, plus I had family here for half a week over Easter, and conventions to attend 2 weekends in a row, and now it&#39;s tax time.  I&#39;ll be able to really catch up once the taxes are done this week.\n\n24) zoltar: Build Y1 Zoltar\n\tzoltar: No problem. I just thought you started too many games and had gotten overwhelmed and sick of them or something!\n\n25) agentofchaos: Move R1 Agentofchaos Otter\n\tmathochist: Nah, no such thing.  :)\n\n26) xoet: Build G1 Xoet\n\n27) mathochist: Discover G1 Otter R1 Bear\n\tmathochist: Okay, so it&#39;s taken me a few more days past tax time...\n\tmathochist: sorry, guys!\n\n28) zoltar: Build G2 Zoltar\n\n29) agentofchaos: Build G2 Agentofchaos\n\n30) xoet: Discover Y2 Xoet R1 Poet\n\n31) mathochist: T Y3 G3 Mathochist\n\n32) zoltar: Discover G2 Zoltar B2 Bluesky\n\n33) agentofchaos: Move G2 Agentofchaos Otter\n\n34) xoet: Trade G1 Y1 Xoet\n\n35) mathochist: T G1 R1 Mathochist\n\n36) zoltar: Move Y1 Zoltar Bluesky\n\n37) agentofchaos: Build G1 Otter\n\n38) xoet: Move G1 Xoet Poet\n\n39) mathochist: Discover G1 Mathochist Y3 Tree\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluesky\nBuild Y3 Greenland\nBuild Y3 Zoltar\n\n41) agentofchaos: Trade Y1 B1 Agentofchaos\n\n42) xoet: Build B1 Xoet\n\n43) mathochist: B G1 Mathochist\n\n44) zoltar: Trade Y3 G3 Zoltar\n\n45) agentofchaos: Build B2 Agentofchaos\n\n46) xoet: Move B1 Xoet Poet\n\n47) mathochist: S G3 Mathochist\nB G2 Bear\nB G3 Tree\nB G3 Mathochist\n\n48) zoltar: Build G3 Bluesky\n\n49) agentofchaos: Move B1 Agentofchaos Otter\n\n50) xoet: Trade Y1 R1 Xoet\n\n51) mathochist: Trade G1 Y1 Mathochist\n\n52) zoltar: Trade G2 R2 Bluesky\n\n53) agentofchaos: Build B2 Otter\n\n54) xoet: Build B2 Poet\n\n55) mathochist: Build R2 Mathochist\n\n56) zoltar: Move Y3 Greenland Bear\n\n57) agentofchaos: Trade B1 Y1 Otter\n\n58) xoet: Trade B1 G1 Xoet\n\n59) mathochist: Move G3 Tree Poet\n\n60) zoltar: Sacrifice G3 Bluesky\nBuild G2 Zoltar\nBuild Y3 Greenland\nBuild Y3 Bear\n\n61) agentofchaos: Build G3 Agentofchaos\n\n62) xoet: Build R2 Xoet\n\n63) mathochist: Attack Y2E Poet\n\n64) zoltar: Move R2 Bluesky Tree\n\tmathochist: Huh.  I&#39;m attempting to attack a ship, and it keeps telling me the ship cannot be found in that system.  I can see the ship, and I can see in the log when it came in, and that it hasn&#39;t left.  I&#39;ve tried attacking every other ship in the system, too, with the same results.  Has anybody had that happen before?\n\txoet: you either have no red ship or the size difference is wrong?\n\tmathochist: Neh.  It&#39;s the poet system.  Red star, my ship is large, the others are medium and small.  It should work, no?\n\tzoltar: You have to include the direction of the ship when you attack in a 4-player game, e.g., &quot;a y2e poet&quot; \n\tmathochist: oh!  ok.  I never noticed that fine print under the &quot;recognized commands&quot;.  Thanks!\n\n65) agentofchaos: Move G3 Agentofchaos Tree\n\n66) xoet: Move R1 Xoet Poet\n\n67) mathochist: Move Y1 Mathochist Otter\n\n68) zoltar: Sacrifice Y2 Bluesky\nMove R2 Tree Poet\nMove Y1 Greenland Otter\nCatastrophe Otter Y\n\txoet: i too am back and did not know how to set that away message thing just did the forum away post.\n\n69) agentofchaos: Trade B2 R2 Agentofchaos\n\n70) xoet: Build Y1 Xoet\n\n71) mathochist: A R2W Poet\n\n72) zoltar: Attack G2S Bear\n\n73) agentofchaos: Move R2 Agentofchaos Tree\n\n74) xoet: Trade B1 Y1 Poet\n\n75) zoltar: Attack G1S Bear\n\n76) agentofchaos: Attack G1S Tree\n\n77) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Greenland\nBuild Y2 Bluesky\nBuild Y3 Zoltar\n\n78) agentofchaos: Move G3 Tree Mathochist\n\n79) zoltar: Sacrifice Y2 Zoltar\nDiscover Y1 Greenland B3 Iceland\nMove G2 Bear Iceland\n\n80) agentofchaos: Build Y2 Agentofchaos\n\n81) zoltar: Sacrifice Y3 Bear\nMove G1 Bear Iceland\nMove G1 Iceland Mathochist\nMove G2 Iceland Mathochist\nCatastrophe Mathochist G\n\n82) agentofchaos: Build R1 Tree\n\n83) zoltar: Build Y3 Zoltar\n\n84) agentofchaos: Build R3 Tree\n\n85) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Bear Tree\nMove Y2 Bluesky Tree\nMove Y1 Bluesky Tree\nCatastrophe Tree Y\n\n86) agentofchaos: Trade Y2 R2 Agentofchaos\n\n87) zoltar: Build G1 Zoltar\n\n88) agentofchaos: Build R1 Agentofchaos\n\n89) zoltar: Trade Y1 R1 Iceland\n\n90) agentofchaos: Discover R2 Agentofchaos Y3 Dread\n\n91) zoltar: Sacrifice G1 Zoltar\nBuild R3 Iceland\n\n92) agentofchaos: Trade R1 G1 Agentofchaos\n\n93) zoltar: Trade R3 G3 Iceland\n\n94) agentofchaos: Discover G1 Agentofchaos Y3 Deimos\n\n95) zoltar: Build G1 Iceland\n\n96) agentofchaos: Build G1 Deimos\n\n97) zoltar: Build Y1 Greenland\n\n98) agentofchaos: Build G2 Deimos\n\n99) zoltar: Sacrifice G3 Iceland\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Iceland\n\n\tCuc: Is this game being played? When does it end?\r\n\n\tzoltar: It ended in November.\n\nHomeworlds Online (SDG# 15762)\nStarted: 2010.3.18, Ended: 2010.5.25\nParticipants: agentofchaos (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: H R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) mathochist: Build G1 Mathochist\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) mathochist: Build Y1 Mathochist\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) mathochist: Trade Y1 R1 Mathochist\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) mathochist: B G1 Mathochist\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) mathochist: Build R2 Mathochist\n\n14) agentofchaos: Build R2 Agentofchaos\n\n15) mathochist: Discover R2 Mathochist G3 Lgs\n\n16) agentofchaos: Discover R2 Agentofchaos G1 Entanglement\n\n17) mathochist: Build R3 Lgs\n\n18) agentofchaos: Build R3 Entanglement\n\n19) mathochist: Build R3 Mathochist\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) mathochist: Move G1 Mathochist Lgs\n\n22) agentofchaos: Trade G2 Y2 Agentofchaos\n\n23) mathochist: Trade R3 Y3 Mathochist\n\n24) agentofchaos: Move Y1 Agentofchaos Entanglement\n\n25) mathochist: Discover R1 Mathochist Y3 Lys\n\n26) agentofchaos: Trade R1 B1 Agentofchaos\n\n27) mathochist: Build G2 Mathochist\n\n28) agentofchaos: Build B1 Agentofchaos\n\n29) mathochist: Trade G2 B2 Mathochist\n\n30) agentofchaos: Move B1 Agentofchaos Entanglement\n\n31) mathochist: Build G2 Mathochist\n\n32) agentofchaos: Move G1 Agentofchaos Entanglement\n\n33) mathochist: Move G2 Mathochist Lys\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) mathochist: Build G2 Mathochist\n\n36) agentofchaos: Build Y1 Agentofchaos\n\n37) mathochist: Move Y1 Mathochist Lgs\n\n38) agentofchaos: Build Y2 Entanglement\n\n39) mathochist: S Y3 Mathochist\nM G1 Lgs Entanglement\nM G2 Lys Entanglement\nM G2 Mathochist Lys\nC Entanglement G\n\n40) agentofchaos: Build Y1 Agentofchaos\n\n41) mathochist: Build Y2 Lgs\n\n42) agentofchaos: Discover Y1 Agentofchaos G1 Despero\n\n43) mathochist: Move R2 Lgs Despero\n\n44) agentofchaos: Discover Y1 Despero R3 Hades\n\n45) mathochist: Sacrifice Y1 Lgs\nMove B2 Mathochist Hades\n\n\tagentofchaos: Don&#39;t think I can do much here, good game\n\tmathochist: Thanks for the game!\n\nHomeworlds Online (SDG# 15821)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.18, Ended: 2010.4.24\nParticipants: SilentTitan (S), dethdukk (W), dlwillson (N), johannz (E)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) johannz: Homeworld Y2 B1 G3\n\tdlwillson: Sorry that took so long!  I&#39;m on customer site.\n\tdlwillson: The rules, to review, are: 2 teams of 2.  Me and Tripp versus Davey and Adam.  The game is over as soon as one player falls.\n\tdlwillson: Now, hurry up you guys!  :-)\n\n3) SilentTitan: Homeworld Y3 B1 G3\n\tjohannz: Fine. I went. See what you made me do :)\n\n4) dethdukk: Homeworld G3 B2 R3\n\n5) dlwillson: Build G1 Dlwillson\n\n6) johannz: Build G1 Johannz\n\tdlwillson: Umm...  I thought we were going to choose same size homeworlds for teams?\n\tdlwillson: Davey...  Weren&#39;t we going to have same size homeworlds for teams, so that you are closer to your team-mate, and more easily able to contribute ships and aid?\n\tdlwillson: Is this thing on?\n\tjohannz: I actually am cool with him taking a different size. This way, you guys have to choose who to go after. You&#39;ll leave home to system 2, then you have to either go to a system 3 to attack me, or a system 1 to attack him. Either way, your intentions are clear.\n\tdlwillson: Hummm...  I&#39;m not sure I&#39;m OK with giving you guys an advantage, either!  But we&#39;ll go on with what we have and if Tripp and I lose, I can blame it on this...  :-D\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dethdukk: Build R1 Dethdukk\n\tdethdukk: my phone is on more than this thing is dad :P.  Also, having the same size homeworld is both helpful and hurtful.  I just dont like banker :/\n\n9) dlwillson: Discover G1 Dlwillson B2 Zulu\n\n10) johannz: Trade G1 Y1 Johannz\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) dethdukk: Trade R1 Y1 Dethdukk\n\n13) dlwillson: Build G1 Dlwillson\n\n14) johannz: Build Y1 Johannz\n\n15) SilentTitan: Discover G1 Silenttitan Y2 Xyzzy\n\n16) dethdukk: Build Y1 Dethdukk\n\n17) dlwillson: T G1 B1 Dlwillson\n\n18) johannz: Discover Y1 Johannz G3 Jprime\n\n19) SilentTitan: Build G1 Xyzzy\n\n20) dethdukk: Build Y2 Dethdukk\n\n21) dlwillson: Discover B1 Dlwillson G2 Warlord\n\n22) johannz: Build Y2 Jprime\n\n23) SilentTitan: Discover G1 Xyzzy Y3 Bankone\n\n24) dethdukk: Discover Y2 Dethdukk G1 Lastchance\n\n25) dlwillson: Build G2 Dlwillson\n\n26) johannz: Build G2 Johannz\n\n27) SilentTitan: Discover G1 Xyzzy Y3 Banktwo\n\n28) dethdukk: Build R1 Dethdukk\n\n29) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Zulu\n\n30) johannz: Sacrifice Y2 Jprime\nMove Y1 Jprime Zulu\nMove Y1 Zulu Silenttitan\n\tdlwillson: Wow, Davey!  Like to let the timer run a little close, do we?  Where you been, kiddo?\n\n31) SilentTitan: Build G3 Banktwo\n\n32) dethdukk: Move R3 Dethdukk Lastchance\n\n33) dlwillson: Trade G2 R2 Dlwillson\n\tdethdukk: yeah, a little close :p  I was busy with school, and I didn&#39;t realize my turn had come up so fast.\n\n34) johannz: Sacrifice G3 Johannz\nBuild Y2 Silenttitan\nBuild Y2 Silenttitan\nBuild G2 Johannz\nCatastrophe Silenttitan Y\n\tdlwillson: Like ONE HOUR close!\n\n35) SilentTitan: Trade G3 R3 Silenttitan\n\n36) dethdukk: Build Y1 Lastchance\n\tjohannz: Just call me the Catastrophe King, Baby...\n\tjohannz: When you sacrifice something, does it become available for building immediately? If so, I could do this without losing anything...Let&#39;s try it\n\n37) dlwillson: Sacrifice G3 Zulu\nBuild G3 Zulu\nBuild G3 Zulu\nBuild G3 Dlwillson\n\tjohannz: Cool. Same effect on SilentTitan, and all it cost was downgrading a G3 to a G2 ship instead of losing a g3.\n\n38) johannz: Build Y2 Johannz\n\tdethdukk: probably should have sacced a g2 to cat instead of the g3.  my mistake, I meant to advise you of that earlier.  the way you did it leaves them open to grab all the g3 stuff. simple mistake tho, I have done it a couple times.\n\n39) SilentTitan: Move G3 Banktwo Johannz\n\n40) dethdukk: Build Y2 Dethdukk\n\n41) dlwillson: Sacrifice G3 Dlwillson\nBuild B1 Warlord\nBuild B1 Warlord\nBuild G3 Dlwillson\n\n42) johannz: Trade Y2 R2 Johannz\n\n43) SilentTitan: Sacrifice R3 Silenttitan\nAttack R2E Johannz\nAttack G2E Johannz\nAttack G2E Johannz\n\n\nHomeworlds Online (SDG# 15814)\nStarted: 2010.3.21, Ended: 2010.4.14\nParticipants: TwoShort (S), Moves (N)\nWinner: TwoShort\n\n1) Moves: Homeworld B1 Y2 G3\n\tMoves: Hello! This is my first game of Homeworlds.\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Moves: Build G1 Moves\n\n4) TwoShort: Build G1 Twoshort\n\n5) Moves: Discover G1 Moves G3 Kuat\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\tMoves: I love how you can name the planets yourself.\n\tTwoShort: Welcome to SDG.  I generally try to give new players a few pointers, but I&#39;m having a hectic week, so you might not get as many as ususal...  Anyway, the standard early-game advice: the goal early on is generally to out-grow your opponent; particularly, to get more 3 point ships than the other guy.\n\n7) Moves: Build G1 Moves\n\tMoves: Thanks TwoShort. I have read all the written up material about the tactics of the game I could find. Some by you! I&#39;m actually happy that I go before you, since I have to learn and not just copy your move.\n\n8) TwoShort: Build G1 Twoshort\n\n9) Moves: Build G2 Moves\n\n10) TwoShort: Build G2 Twoshort\n\n11) Moves: Discover G2 Moves B3 Gunray\n\n12) TwoShort: Discover G2 Twoshort B2 Bluonia\n\n13) Moves: Trade G1 Y1 Moves\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n15) Moves: Discover Y1 Moves Y3 Kessel\n\tMoves: Oh wow! What a move.\n\tMoves: ah, I also did not know you could split it up into different locations. Nice.\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\tMoves: Ok, now I know how a Green sacrifice works. So, how does a Red sacrifice work?\n\tTwoShort: So for any sacrifice, the piece you sac goes back in the stash, then you get the chance to perform the action associated with that color as many times as the size of the peice, and you can use those actions with any of your ships.  For a red sacrifice, you would first need a red peice, and you would need a different piece (any color) that was in the same system as one of my pieces.  Red sacrifices are somewhat unusual, except as the final coup de grace.  The threat of a red sac often makes the opponent do something less-than-optimal to block, but by the time they can&#39;t prevent it, the game is effectively won.\r\n  The most common sacrifice is the tactic I just employed: sacrificing a g3 for three grows when you are able to use one of them to re-grow the same g3.  We call  this &quot;the factory&quot;.  It&#39;s definitely a key stratagem since it lets you grow twice as fast as otherwise, and anywhere you have ships.  If your opponent gets a factory going and you don&#39;t, you&#39;re probably in trouble.\r\n  In your current position, you&#39;ve got a g3, so you&#39;re not entirely locked out, but you don&#39;t have the extra green at home to let you regrow there.  You could get either of your smaller greens back home by sacrificing it, and using the action to regrow it at home.  \r\n   Generally, you don&#39;t want to move ships out to stars that are the same color; it means you have less options.  Unless you sac something somewhere elsewhere, all you can do at Kessel is leave, and you can&#39;t currently do anything at Kuat.  Even if there were greens available, if you grew one there, I could move one of mine in and cause a catastrophe.\n\n17) Moves: Sacrifice G2 Gunray\nBuild G2 Moves\nBuild Y2 Kessel\n\tMoves: Whoah! Crazy!\n\n18) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort R2 Temporary\nMove Y1 Temporary Kessel\nCatastrophe Kessel Yellow\n\tMoves: If the G sac was the most common, I wish the rules writer would have used that as the example instead of the yellow sac. :)\n\tTwoShort: Yellow sacs are also very important.  Most attacks will involve moving multiple pieces into an enemy system at once and/or moving one pieice multiple steps.  (An &quot;attack&quot; meaning generically either moving in more pieces than they can take with red while you have a sac-able red elsewhere, or moving in enough pieces to cause a catastrophe.)  So late in the game, Y3s are generally the most valuable pieces; and I&#39;d really like to set up to take them now that they are available.\r\n  But, for the super-topical example, if it were your turn now you could sac your y2 to move either your y1 or your g1 to a 3 star and then to my homeworld, and cause a catastrophe of the relevant color.  I lose more than you in either of those, so instead I&#39;m going to take even losses by sac&#39;ing my own y2....\r\n  \r\n\n\n19) Moves: Trade G2 Y2 Moves\n\tTwoShort: Where I said &quot;3 star&quot;, I should have said &quot;2 point star&quot;\n\tMoves: heh, I forgot the star counted for catastrophe as well...\n\n20) TwoShort: Discover G1 Twoshort G2 Grendel\n\tTwoShort: So I mentioned before that you generally don&#39;t want move ships to stars of the same color.  The reason you would want to do it sometimes is if your whole purpose is to pull the star piece out of the stash.\n\n21) Moves: Build Y1 Moves\n\n22) TwoShort: Trade G2 Y2 Bluonia\n\n23) Moves: Build G2 Moves\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluonia\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\n25) Moves: Discover Y1 Moves Y3 Aimless\n\n26) TwoShort: Sacrifice Y1 Twoshort\nDiscover G1 Grendel Y3 Yolonda\n\n27) Moves: Trade G2 R2 Moves\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n29) Moves: Move Y2 Moves Kuat\n\n30) TwoShort: Trade G2 R2 Bluonia\n\n31) Moves: Move G1 Kuat Moves\n\n32) TwoShort: Sacrifice Y2 Bluonia\nMove G2 Yolonda Moves\nMove G1 Yolonda Moves\nCatastrophe Moves Green\n\n33) Moves: Trade R2 G2 Moves\n\n34) TwoShort: Sacrifice Y3 Twoshort\nDiscover G3 Twoshort B2 Goodgame\nDiscover G3 Goodgame B3 Thanks\nMove G3 Thanks Moves\n\tMoves: uhhgg...\n\n\nHomeworlds Online (SDG# 15885)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.21, Ended: 2010.3.24\nParticipants: shmil1 (S), dlwillson (N)\nWinner: shmil1\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) shmil1: Homeworld B1 R2 G3\n\tdlwillson: Thanks for playing with me again, Shmil1.  :-)\n\n3) dlwillson: Build G1 Dlwillson\n\n4) shmil1: Build G1 Shmil1\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) shmil1: Build G1 Shmil1\n\n7) dlwillson: B Y1 Dlwillson\n\n8) shmil1: Trade G1 B1 Shmil1\n\n9) dlwillson: D Y1 Dlwillson B2 Potato\n\n10) shmil1: Build G1 Shmil1\n\n11) dlwillson: Build Y1 Dlwillson\n\n12) shmil1: Build B1 Shmil1\n\n13) dlwillson: Discover Y1 Dlwillson G2 Rutabaga\n\n14) shmil1: Trade G1 R1 Shmil1\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) shmil1: Build R1 Shmil1\n\n17) dlwillson: Discover Y1 Rutabaga B3 Carrot-of-doom\n\n18) shmil1: Pass\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Carrot-of-doom\nBuild Y2 Dlwillson\nBuild Y3 Carrot-of-doom\n\n20) shmil1: Trade G3 Y3 Shmil1\n\n21) dlwillson: Trade Y2 R2 Carrot-of-doom\n\n22) shmil1: Build Y2 Shmil1\n\n23) dlwillson: Move R2 Carrot-of-doom Shmil1 Cat Red Shmil1\n\n24) shmil1: Sacrifice Y3 Shmil1\nMove Y2 Shmil1 Carrot-of-doom\nMove Y2 Carrot-of-doom Potato\nMove Y2 Potato Dlwillson\nCatastrophe Dlwillson Yellow\n\n\tdlwillson: Ha!  Same way as last time you won!  Apparently, I learn slowly.  AND my red catastrophe didn&#39;t get in.  Not that it would have mattered.  Good job, Shmil1.\n\nHomeworlds Online (SDG# 15846)\nStarted: 2010.3.21, Ended: 2010.5.11\nParticipants: mathochist (S), Professor_Rabbit (N)\nWinner: mathochist\n\n1) Professor_Rabbit: Homeworld R1 G2 B3\n\n2) mathochist: Homeworld R1 B3 G3\n\n3) Professor_Rabbit: Build B1 Professor_rabbit\n\n\n4) mathochist: Build G1 Mathochist\n\n5) Professor_Rabbit: Trade B1 Y1 Professor_rabbit\n\n6) mathochist: Trade G1 Y1 Mathochist\n\n7) Professor_Rabbit: Discover Y1 Professor_rabbit G3 Alpha\n\n8) mathochist: Build G1 Mathochist\n\n9) Professor_Rabbit: Build Y1 Alpha\n\n10) mathochist: Build Y2 Mathochist\n\n11) Professor_Rabbit: Build Y2 Alpha\n\n12) mathochist: Sacrifice Y2 Mathochist\nDiscover Y1 Mathochist B2 Beta\nMove Y1 Beta Alpha\nCatastrophe Alpha Yellow\n\n13) Professor_Rabbit: Build B1 Professor_rabbit\n\n\n\n14) mathochist: Trade G1 R1 Mathochist\n\n15) Professor_Rabbit: Trade B1 Y1 Professor_rabbit\n\n\n16) mathochist: Build R2 Mathochist\n\n17) Professor_Rabbit: Discover Y1 Professor_rabbit Y3 Delta\n\n18) mathochist: Trade R2 Y2 Mathochist\n\n\tmathochist: Hello?\n\nHomeworlds Online (SDG# 15883)\nStarted: 2010.3.22, Ended: 2010.3.29\nParticipants: llasram (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) llasram: Homeworld R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) llasram: Build G1 Llasram\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) llasram: Trade G1 Y1 Llasram\n\n7) TwoShort: Build G1 Twoshort\n\n8) llasram: Build G1 Llasram\n\n9) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n10) llasram: Discover G1 Llasram B3 Starb3a\n\n11) TwoShort: Build G1 Twoshort\n\n12) llasram: Build G2 Llasram\n\n13) TwoShort: Build Y1 Twoshort\n\n14) llasram: Build Y2 Llasram\n\n15) TwoShort: Build Y2 Twoshort\n\n16) llasram: Trade Y1 B1 Llasram\n\n17) TwoShort: Build G2 Bluonia\n\n18) llasram: Sacrifice G3 Llasram\nBuild G2 Llasram\nBuild G3 Starb3a\nBuild G3 Llasram\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Bluonia Starb3a\nMove G1 Starb3a Llasram\nCatastrophe Llasram Green\n\n\nHomeworlds Online (SDG# 15889)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.23, Ended: 2010.4.15\nParticipants: agentofchaos (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld R3 B1 G3\n\n2) agentofchaos: Homeworld B2 R1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\tagentofchaos: enjoy the game\n\n4) agentofchaos: Build G1 Agentofchaos\n\tdlwillson: You too!  Thanks for taking one of my games!\n\tagentofchaos: My pleasure\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) dlwillson: Discover Y1 Dlwillson B2 Smorgasbord\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) dlwillson: B Y2 Dlwillson\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) dlwillson: Discover Y1 Dlwillson G2 Buffet\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\n15) dlwillson: Build G1 Dlwillson\n\n16) agentofchaos: Discover Y2 Agentofchaos G3 Dagon\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Smorgasbord\nBuild Y3 Buffet\nBuild Y3 Dlwillson\n\n18) agentofchaos: Build Y3 Dagon\n\n19) dlwillson: Sacrifice Y2 Dlwillson\nMove Y1 Buffet Dagon\nMove Y1 Smorgasbord Dagon\nCatastrophe Dagon Yellow\n\n20) agentofchaos: Build R1 Agentofchaos\n\n21) dlwillson: B G1 Dlwillson\n\n22) agentofchaos: Build Y1 Agentofchaos\n\n23) dlwillson: Move G1 Dlwillson Smorgasbord\n\n\tdlwillson: Agent...  You&#39;re running awfully short on time.  Are you still thinking?\n\nHomeworlds Online (SDG# 15916)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.24, Ended: 2010.4.8\nParticipants: rootbier (S), shmil1 (N)\nWinner: rootbier\n\n1) shmil1: Homeworld Y1 B3 G3\n\n2) rootbier: Homeworld B2 R2 G3 *\n\n3) shmil1: Build G1 Shmil1\n\trootbier: if you have no homeworld defense i am going brutal style :) but then i always make dumb mistakes so don&#39;t worry too much. good luck :)\n\n4) rootbier: Build G1 Rootbier\n\n5) shmil1: Trade G1 R1 Shmil1\n\n6) rootbier: Trade G1 Y1 Rootbier\n\trootbier: right. guess that&#39;s all it takes eh. this is maybe my fifth or sixth game ever (including face-to-face with icehouse pieces)\n\n7) shmil1: Build G1 Shmil1\n\n8) rootbier: Build G1 Rootbier\n\n9) shmil1: Trade G1 B1 Shmil1\n\n10) rootbier: Trade G1 R1 Rootbier\n\n11) shmil1: Build R1 Shmil1\n\n12) rootbier: Discover R1 Rootbier G3 Bagatelle\n\n13) shmil1: Build R2 Shmil1\n\n14) rootbier: Build Y1 Rootbier\n\n15) shmil1: Trade R2 Y2 Shmil1\n\n16) rootbier: Move Y1 Rootbier Bagatelle\n\n17) shmil1: Build R2 Shmil1\n\n18) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Bagatelle\nBuild Y2 Bagatelle\nBuild Y3 Rootbier\n\n19) shmil1: Sacrifice Y2 Shmil1\nMove R1 Shmil1 Rootbier\nMove R1 Shmil1 Rootbier\n\n20) rootbier: Build R2 Bagatelle\n\n21) shmil1: Sacrifice G3 Shmil1\nBuild R3 Shmil1\nBuild B1 Shmil1\nBuild R3 Rootbier\nCatastrophe Rootbier Red\n\n22) rootbier: Trade Y3 R3 Rootbier\n\n23) shmil1: Trade R2 G2 Shmil1\n\n24) rootbier: Trade Y1 G1 Rootbier\n\n25) shmil1: Move B1 Shmil1 Rootbier\n\n26) rootbier: Attack B1 Rootbier\n\n27) shmil1: Build B1 Shmil1\n\n28) rootbier: Sacrifice Y1 Bagatelle\nMove B1 Rootbier Shmil1\nCatastrophe Shmil1 Blue\n\trootbier: I like your style. Sacrifice kaboom... but don&#39;t you need one more blue to make that work? I take this one. You send the next. I take that one. We&#39;re still only at three here. Guess I&#39;ll find out.\n\n29) shmil1: Discover G2 Shmil1 B3 Obloha\n\n30) rootbier: Sacrifice Y2 Bagatelle\nMove Y2 Bagatelle Rootbier\nMove Y2 Rootbier Obloha\n\n31) shmil1: Build G1 Obloha\n\trootbier: or you could do that\n\n32) rootbier: Sacrifice R2 Bagatelle\nAttack G1 Obloha\nAttack G2 Obloha\n\n33) shmil1: Pass\n\n34) rootbier: Build Y1 Obloha\n\n\trootbier: you know this is going to take a while -- more or less for no reason. i build some yellows drop em in on you. bye bye homeworld.\n\nHomeworlds Online (SDG# 15920)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.24, Ended: 2010.4.2\nParticipants: dlwillson (S), dethdukk (N)\nWinner: dlwillson\n\n1) dethdukk: Homeworld R3 B1 G3\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) dlwillson: Build G1 Dlwillson\n\n\nHomeworlds Online (SDG# 15914)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.26, Ended: 2010.5.8\nParticipants: Danner (S), jeep (N)\nWinner: Danner\n\n1) jeep: Homeworld R1 B2 G3\n\tDanner: Hi! Have a great game!\n\n2) Danner: Homeworld B1 G2 R3\n\tjeep: Thanks, you too.\n\n3) jeep: B G1 Jeep\n\n4) Danner: Build R1 Danner\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Danner: Build R1 Danner\n\n7) jeep: Build G1 Jeep\n\n8) Danner: Trade R3 Y3 Danner\n\n9) jeep: Build Y1 Jeep\n\n10) Danner: Build R2 Danner\n\n11) jeep: B Y1 Jeep\n\n12) Danner: Discover R1 Danner Y3 Garrett\n\n13) jeep: Discover Y1 Jeep G3 Stage\n\n14) Danner: Build R2 Danner\n\n15) jeep: Build Y2 Jeep\n\n16) Danner: Move R2 Danner Stage\n\n17) jeep: Discover Y1 Stage Y2 Far\n\n18) Danner: Build R2 Stage\n\n19) jeep: Discover Y1 Jeep R3 Cornhuskers\n\n20) Danner: Build R3 Danner\n\n21) jeep: Sacrifice G3 Jeep\nBuild Y2 Cornhuskers\nBuild Y3 Jeep\nBuild G1 Jeep\n\n22) Danner: Trade R3 B3 Danner\n\n23) jeep: T G1 B1 Jeep\n\n24) Danner: Build R3 Danner\n\n25) jeep: Discover Y1 Jeep R3 Store\n\tjeep: Heh, oops, I got ahead of myself there. Was going to stop that...\n\n26) Danner: Move B3 Danner Cornhuskers\n\n27) jeep: Sacrifice Y2 Cornhuskers\nDiscover Y1 Cornhuskers Y2 Hrm\nPass\n\n28) Danner: Trade R2 G2 Danner\n\n29) jeep: Build G1 Jeep\n\n30) Danner: Move G2 Danner Store\n\n31) jeep: Discover Y1 Store R2 Depression\n\n32) Danner: Move R1 Garrett Jeep\n\n33) jeep: Build G1 Jeep\n\n34) Danner: Sacrifice Y3 Danner\nMove R2 Stage Jeep\nMove R2 Stage Jeep\nMove B3 Cornhuskers Jeep\nCatastrophe Jeep R\n\tjeep: I sure wish I&#39;d noticed the small universe immediately. ;) You&#39;ve played it well and I&#39;ve let you get me over the barrel.\n\tDanner: Thx :)\n\n\nHomeworlds Online (SDG# 15946)\nVariants: &quot;Hard time&quot;\nStarted: 2010.3.27, Ended: 2010.4.9\nParticipants: ZackStack (S), alexcobo (N)\nWinner: ZackStack\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Have a good game Alex!\n\n3) alexcobo: Build Y1 Alexcobo\n\talexcobo: You too Zack!\n\n4) ZackStack: Build G1 Zackstack\n\n5) alexcobo: Trade Y1 R1 Alexcobo\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n\tZackStack: Hmmm... that was unclimactic.  Shoot me a rematch when you have the time :-)\n\nHomeworlds Online (SDG# 15891)\nStarted: 2010.3.28, Ended: 2010.8.11\nParticipants: wmreed (S), mathochist (N)\nWinner: wmreed\n\n1) mathochist: H R1 B2 G3\n\n2) wmreed: Homeworld B3 G1 Y3\n\n3) mathochist: B G1 Mathochist\n\twmreed: Hello!  Have you been playing Homeworlds long?\n\tmathochist: Just learned a few weeks ago, actually.  You?\n\n4) wmreed: B Y1 Wmreed\n\n5) mathochist: T G1 Y1 Mathochist\n\twmreed: A while, but not often. \n\n6) wmreed: D Y1 Wmreed G2 Alice\n\n7) mathochist: Build G1 Mathochist\n\n8) wmreed: B Y1 Wmreed\n\n9) mathochist: Build Y2 Mathochist\n\n10) wmreed: T Y1 R1 Wmreed\n\n11) mathochist: Build G1 Mathochist\n\n12) wmreed: Build Y1 Wmreed\n\n13) mathochist: Discover G1 Mathochist B3 Hatter\n\n14) wmreed: B Y2 Alice\n\n15) mathochist: D Y1 Mathochist G3 Cheshire\n\n16) wmreed: Trade Y1 B1 Wmreed\n\n17) mathochist: S G3 Mathochist\nB G2 Hatter\nB G2 Mathochist\nB G3 Mathochist\n\n18) wmreed: Trade Y3 G3 Wmreed\n\n19) mathochist: S G3 Mathochist\nB G3 Mathochist\nB Y1 Mathochist\nB Y2 Cheshire\n\n20) wmreed: M Y1 Alice Wmreed\n\tmathochist: Thought I was still in another game;  the command box still held the text from my move in that game. Oops\n\n21) mathochist: Discover G1 Mathochist Y3 Tweedledee\n\n22) wmreed: B B1 Wmreed\n\n23) mathochist: Trade Y1 B1 Mathochist\n\n24) wmreed: Move B1 Wmreed Alice\n\n25) mathochist: S G3 Mathochist\nB Y1 Mathochist\nB Y3 Mathochist\nB G3 Mathochist\n\n26) wmreed: Build R1 Wmreed\n\n27) mathochist: T Y2 R2 Mathochist\n\n28) wmreed: Move R1 Wmreed Alice\n\n29) mathochist: M R2 Mathochist Tweedledee\n\n30) wmreed: Build R2 Alice\n\n31) mathochist: T G2 R2 Hatter\n\n32) wmreed: Trade R2 G2 Alice\n\n33) mathochist: S Y2 Cheshire\nM G1 Hatter Alice\nM G1 Tweedledee Alice\nC Alice G\n\n34) wmreed: Build Y2 Wmreed\n\n35) mathochist: Build Y2 Cheshire\n\n36) wmreed: Discover Y2 Wmreed B2 Mock\n\n37) mathochist: Move G2 Mathochist Tweedledee\n\n38) wmreed: T Y2 G2 Mock\n\n39) mathochist: B G1 Tweedledee\n\n40) wmreed: Build R1 Wmreed\n\n41) mathochist: Move R2 Tweedledee Mock\n\n42) wmreed: Sacrifice R1 Wmreed\nAttack R2 Mock\n\n43) mathochist: D G1 Tweedledee Y2 Tweedledum\n\n44) wmreed: T G3 R3 Wmreed\n\n45) mathochist: Build G1 Mathochist\n\tmathochist: Foo!  I forgot you could do that :P\n\n46) wmreed: B Y2 Wmreed\n\n47) mathochist: Sacrifice G3 Mathochist\nBuild Y3 Mathochist\nBuild G2 Tweedledum\nBuild G3 Mathochist\n\n48) wmreed: B G3 Mock\n\n49) mathochist: Move Y3 Mathochist Hatter\n\n50) wmreed: Sacrifice Y1 Wmreed\nMove G3 Mock Cheshire\n\n51) mathochist: S G3 Mathochist\nB R1 Hatter\nB Y1 Hatter\nB G3 Mathochist\n\n52) wmreed: Sacrifice R1 Wmreed\nAttack Y2 Cheshire\n\n53) mathochist: Sacrifice Y3 Mathochist\nMove G1 Mathochist Cheshire\nMove G1 Tweedledum Cheshire\nMove R1 Hatter Tweedledum\nCatastrophe Cheshire G\n\n54) wmreed: Build Y1 Wmreed\n\n55) mathochist: Build G1 Mathochist\n\n56) wmreed: T Y1 G1 Wmreed\n\n57) mathochist: Sacrifice G3 Mathochist\nBuild G3 Mathochist\nBuild G3 Tweedledee\nBuild G3 Tweedledum\n\n58) wmreed: Build Y1 Wmreed\n\n59) mathochist: Sacrifice G3 Mathochist\nBuild Y2 Mathochist\nBuild Y3 Mathochist\nBuild G3 Mathochist\n\n60) wmreed: Move G1 Wmreed Mock\n\n61) mathochist: S G3 Mathochist\nB G3 Mathochist\nB B1 Mathochist\nB R1 Hatter\n\n62) wmreed: Move Y1 Wmreed Mock\n\n63) mathochist: Discover Y2 Mathochist R3 Cheshire\n\twmreed: Everything OK?\n\tmathochist: Yeah, just lots going on.  Sorry!\n\n64) wmreed: Sacrifice G2 Mock\nBuild R2 Wmreed\nBuild R3 Mock\n\n\nHomeworlds Online (SDG# 15983)\nStarted: 2010.4.1, Ended: 2010.4.16\nParticipants: makertron (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld B1 Y2 G3\n\n2) makertron: Homeworld R3 B2 G3\n\n3) logikal: Build G1 Logikal\n\n4) makertron: Build G1 Makertron\n\n5) logikal: Discover G1 Logikal B3 L1\n\n6) makertron: Trade G1 Y1 Makertron\n\n7) logikal: Build G1 Logikal\n\n8) makertron: Build G1 Makertron\n\n9) logikal: Build G2 L1\n\n10) makertron: Discover G1 Makertron B1 Underage\n\n11) logikal: Trade G2 R2 L1\n\n12) makertron: Build G2 Underage\n\n13) logikal: Trade G1 Y1 L1\n\n14) makertron: Trade G1 R1 Underage\n\n15) logikal: Move G1 Logikal L1\n\n16) makertron: Build G1 Underage\n\n17) logikal: Build R1 L1\n\n18) makertron: Trade G1 Y1 Underage\n\n19) logikal: Build Y2 L1\n\n20) makertron: Build Y2 Underage\n\n21) logikal: Move Y1 L1 Logikal\n\n22) makertron: Build Y3 Makertron\n\n23) logikal: Build Y3 L1\n\n24) makertron: Build G1 Underage\n\n25) logikal: Discover Y1 Logikal Y3 L2\n\n26) makertron: Discover G1 Underage G3 Cumdumpster\n\n27) logikal: Move Y1 L2 Logikal\n\n28) makertron: Move Y2 Underage Cumdumpster\n\n29) logikal: Trade Y1 R1 Logikal\n\n30) makertron: Build R2 Underage\n\n31) logikal: Discover R2 L1 G2 L2\n\n32) makertron: Trade R1 B1 Underage\n\n33) logikal: Move Y3 L1 Underage\n\n34) makertron: Move Y3 Makertron Underage\n\n35) logikal: Sacrifice R2 L2\nAttack Y3 Underage\nAttack R2 Underage\n\n36) makertron: Move Y2 Cumdumpster Underage\nCatastrophe Underage Y\n\n37) logikal: Attack G2 Underage\n\n38) makertron: Build Y1 Makertron\n\n39) logikal: Attack B1 Underage\n\n40) makertron: Build G1 Makertron\n\n41) logikal: Sacrifice G3 Logikal\nBuild G2 Underage\nBuild G2 L1\nBuild G3 L1\n\n42) makertron: Discover G1 Makertron Y1 Spacehat\n\n43) logikal: Move G2 L1 Logikal\n\n44) makertron: Trade Y1 R1 Makertron\n\n45) logikal: Sacrifice G3 L1\nBuild G3 L1\nBuild R2 L1\nBuild R2 Underage\n\n46) makertron: Move R1 Makertron Spacehat\n\n47) logikal: Move G3 L1 Spacehat\n\n48) makertron: Build R3 Spacehat\n\n49) logikal: Sacrifice R1 L1\nAttack R3 Spacehat\n\n50) makertron: Build Y1 Makertron\n\n51) logikal: Sacrifice G3 Spacehat\nBuild G3 L1\nBuild R1 Logikal\nBuild R3 Spacehat\n\n52) makertron: Move R1 Spacehat Makertron\n\n53) logikal: Attack G1 Spacehat\n\n54) makertron: Build Y2 Makertron\n\n55) logikal: Build Y3 L1\n\n56) makertron: Build Y3 Makertron\n\n57) logikal: Build Y3 L1\nCatastrophe Makertron Yellow\n\n58) makertron: Trade R1 Y1 Makertron\n\n59) logikal: Sacrifice Y3 L1\nMove R3 Spacehat Makertron\nMove Y3 L1 Underage\nMove Y3 Underage Makertron\n\n60) makertron: Move G3 Makertron Spacehat\n\n61) logikal: Sacrifice R2 Underage\nAttack G3 Spacehat\nAttack Y1 Makertron\n\n\nHomeworlds Online (SDG# 15899)\nStarted: 2010.4.4, Ended: 2010.4.28\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) dlwillson:\nB G1 Dlwillson\n\n8) TwoShort: Build G1 Twoshort\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) dlwillson: Discover R1 Dlwillson G2 Dingo\n\n12) TwoShort: Build B1 Twoshort\n\n13) dlwillson: B G1 Dlwillson\n\n14) TwoShort: Discover B1 Twoshort G3 Grogar\n\n15) dlwillson: B G1 Dlwillson\n\n16) TwoShort: Build B2 Grogar\n\tTwoShort: Hadn&#39;t had coffee :)\n\n17) dlwillson: Discover G1 Dlwillson R2 Bingo\n\n18) TwoShort: Build G1 Twoshort\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Bingo\nBuild G3 Dlwillson\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Grogar\nBuild B2 Twoshort\n\n21) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Dingo\nBuild R2 Dingo\nBuild G3 Dlwillson\n\n22) TwoShort: Discover B1 Twoshort R3 Rover\n\n23) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Dlwillson\nBuild Y2 Dlwillson\nBuild G3 Dlwillson\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Rover\nBuild G3 Twoshort\n\n25) dlwillson: Move Y1 Dlwillson Dingo\n\n26) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Twoshort\nTrade B3 Y3 Rover\n\n27) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Dingo\nBuild Y2 Dingo\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Rover\nBuild B3 Grogar\nBuild B3 Twoshort\n\n29) dlwillson: S Y2 Dingo\nD R1 Dingo Y3 Xerox\nD R1 Dingo Y3 Ditto\n\tdlwillson: I&#39;m unlikely to win this one, so I&#39;ll have to take satisfaction from your doubled moves. OK, it&#39;s not much, but it&#39;s what I&#39;ve got.\n\n30) TwoShort: Sacrifice Y3 Rover\nDiscover R3 Twoshort G3 Grover\nDiscover B2 Twoshort R3 Rogar\nMove B3 Grogar Dingo\n\tdlwillson: Large ships? We don&#39;t need no steenkeeng large ships. OK, we do.\n\n31) dlwillson: Sacrifice Y2 Dingo\nMove R2 Dingo Ditto\nMove R1 Ditto Twoshort\n\n32) TwoShort: Attack R1 Twoshort\n\n33) dlwillson: Sacrifice Y2 Dlwillson\nMove R1 Xerox Twoshort\nMove R2 Ditto Twoshort\nCatastrophe Twoshort Red\n\n34) TwoShort: Sacrifice B2 Rover\nTrade B3 Y3 Twoshort\nTrade B2 R2 Rogar\n\n35) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y2 Dingo\nBuild G2 Dlwillson\n\n36) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Grover Dingo\nMove R3 Dingo Dlwillson\nMove B3 Dingo Dlwillson\n\tTwoShort: I deduce from the Icehouse mailing list that you are in Denver? (I&#39;m in Boulder) \n\n37) dlwillson: Sacrifice Y2 Dingo\nMove G1 Bingo Twoshort\nMove G2 Bingo Twoshort\n\tdlwillson: Yep, I&#39;m in Denver. I&#39;m Dethdukk&#39;s Dad. I hope you&#39;re not in a hurry for my turn; I haven&#39;t come up with any great ideas.\n\tTwoShort: No hurry... but I&#39;ll note that I don&#39;t see a way for you to stop me from victory in 3.  \n\tdlwillson: Neither do I. Ah well. Why&#39;d you ask about the location? Want to play with real plastic sometime?\n\n38) TwoShort: Sacrifice R2 Rogar\nAttack G2 Dlwillson\nAttack Y2 Dlwillson\n\tTwoShort: I&#39;m always curious where online opponents are, and it&#39;s kind of neat to find one not all that far away.  I&#39;m theoretically interested in playing in person some time, but practically, my schedule is often busy and I don&#39;t own a car :)   If you keep me apprised (directly or via the Icehouse mailing list) of the progress of this &quot;Icehouse Games at Tacticon&quot; concept, I&#39;ll most likely be there.\n\n39) dlwillson: Build G3 Twoshort\nCatastrophe Twoshort G\n\tdlwillson: Your playing a game with my brother-in-law, SilentTitan! Two more turns...\n\n40) TwoShort: Sacrifice R3 Dlwillson\nAttack G1 Dlwillson\nAttack Y1 Dlwillson\nPass\n\n\n\tdlwillson: Good game. Let me know if you want to come to my next Pyramid Party. I have another friend in Boulder, and I could ask him to pick you up.\n\tTwoShort: Thanks for the game.  As far as pyramid parties, I&#39;d certainly like to hear of such things, just don&#39;t be offended if I can&#39;t make it :) It&#39;s as much a question of scheduling as transportation, as I have many time-consuming activities (notably, two children).\n\nHomeworlds Online (SDG# 16017)\nStarted: 2010.4.5, Ended: 2010.4.15\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: SilentTitan\n\n1) dlwillson: Homeworld R3 Y1 G3 *\n\n2) SilentTitan: Homeworld Y3 B2 G3\n\tdlwillson: Heh...  Let&#39;s see what happens here.  OOP!  Late for dinner is what happens!  Bye\n\n3) dlwillson: Build G1 Dlwillson\n\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: Discover G1 Dlwillson B2 Fungo\n\n6) SilentTitan: Discover G1 Silenttitan Y1 Escort\n\n7) dlwillson: Trade G1 Y1 Fungo\n\n8) SilentTitan: Discover G1 Escort Y3 Vanbytheriver\n\n9) dlwillson: B G1 Dlwillson\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) dlwillson: Move G1 Dlwillson Fungo\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) dlwillson: B G2 Dlwillson\n\n14) SilentTitan: Trade G1 R1 Silenttitan\n\n15) dlwillson: Build Y1 Fungo\n\n16) SilentTitan: Trade G2 Y2 Silenttitan\n\n17) dlwillson: B Y2 Fungo\n\n18) SilentTitan: Move G1 Vanbytheriver Fungo\n\n19) dlwillson: T Y2 R2 Fungo\n\n\n20) SilentTitan: Discover Y2 Silenttitan G1 Fin\n\n21) dlwillson: A G1 Fungo\n\n22) SilentTitan: Build Y2 Fin\n\n23) dlwillson: Discover Y1 Fungo B1 Dingo\n\n24) SilentTitan: Discover Y2 Fin B2 Done\n\n25) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Fungo\nBuild Y3 Dingo\n\n26) SilentTitan: Trade Y2 G2 Done\n\n27) dlwillson: Build G2 Dlwillson\n\n28) SilentTitan: Build G2 Done\n\n29) dlwillson: Trade Y1 B1 Fungo\n\n\tdlwillson: Grr... Same oversight TWICE. Let&#39;s see if I can&#39;t win one of the other ones.\n\tdlwillson: By the way, you played an excellent game. Sorry for grumbling. I was just annoyed at myself.\n\tSilentTitan: I understand\n\nHomeworlds Online (SDG# 15976)\nStarted: 2010.4.6, Ended: 2010.9.18\nParticipants: Mandrel (S), dethdukk (N)\nWinner: Mandrel\n\n1) dethdukk: Homeworld B3 R1 G3\n\n2) Mandrel: Homeworld B2 R1 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) Mandrel: Build G1 Mandrel\n\n5) dethdukk: Trade G1 R1 Dethdukk\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) dethdukk: Build R2 Dethdukk\n\n8) Mandrel: Build Y1 Mandrel\n\n9) dethdukk: Trade R2 Y2 Dethdukk\n\n10) Mandrel: Trade Y1 B1 Mandrel\n\n11) dethdukk: Build R2 Dethdukk\n\n12) Mandrel: Build Y1 Mandrel\n\n13) dethdukk: Discover R1 Dethdukk G2 Leaps\n\n14) Mandrel: Build G1 Mandrel\n\n15) dethdukk: Build R2 Leaps\n\n16) Mandrel: Discover Y1 Mandrel G3 Imposition\n\n17) dethdukk: Build R2 Dethdukk\n\n18) Mandrel: Build Y1 Mandrel\n\n19) dethdukk: Build Y2 Dethdukk\n\n20) Mandrel: Build Y2 Imposition\n\n\nHomeworlds Online (SDG# 16027)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.6, Ended: 2010.4.27\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Build G1 Dlwillson\n\n7) SilentTitan: Build Y2 Silenttitan\n\n8) dlwillson: D G1 Dlwillson B2 Bell\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Dell\n\n10) dlwillson: Discover G1 Dlwillson B2 Well\n\n11) SilentTitan: Build Y2 Dell\n\n12) dlwillson: Build G1 Dlwillson\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) dlwillson: B G2 Dlwillson\n\n15) SilentTitan: Build Y3 Dell\n\n16) dlwillson: Trade G1 R1 Dlwillson\n\n17) SilentTitan: Move Y3 Dell Bell\n\n18) dlwillson: Sacrifice G2 Dlwillson\nBuild G1 Dlwillson\nBuild G2 Well\n\n19) SilentTitan: Trade Y3 R3 Bell\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Bell\nBuild G2 Well\nBuild G3 Dlwillson\n\n21) SilentTitan: Attack G2 Bell\n\n22) dlwillson: Trade G2 R2 Well\n\n23) SilentTitan: Attack G1 Bell\n\n24) dlwillson: Trade G1 B1 Dlwillson\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Bell Dlwillson\nMove G1 Bell Dlwillson\n\n26) dlwillson: Sacrifice R2 Well\nAttack G1 Dlwillson\nAttack G2 Dlwillson\n\n27) SilentTitan: Build Y2 Dell\n\n28) dlwillson: Trade G2 R2 Dlwillson\n\n29) SilentTitan: Sacrifice Y2 Dell\nDiscover Y2 Dell R2 Sell\nDiscover Y1 Dell Y2 Cell\n\n30) dlwillson: M G3 Dlwillson Sell\n\n31) SilentTitan: Discover Y2 Sell G3 Pell\n\n32) dlwillson: M R1 Dlwillson Cell\n\n33) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Pell\nBuild Y3 Cell\nBuild Y3 Silenttitan\n\tdlwillson: Pell? What&#39;s Pell?\n\n34) dlwillson: A Y1 Cell\n\n35) SilentTitan: Sacrifice R3 Bell\nAttack R1 Cell\nAttack Y1 Cell\nPass\n\n36) dlwillson: B G1 Sell\n\n37) SilentTitan: Move Y3 Cell Dlwillson\n\n38) dlwillson: Move R2 Dlwillson Cell\n\n39) SilentTitan: Sacrifice R1 Cell\nAttack G1S Dlwillson\n\n40) dlwillson: Sacrifice R2 Cell\nAttack G1 Dlwillson\nPass\n\n41) SilentTitan: Trade Y3 R3 Silenttitan\n\n42) dlwillson: Sacrifice G3 Sell\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nBuild B1 Dlwillson\n\n43) SilentTitan: Sacrifice R3 Silenttitan\nAttack G2S Dlwillson\nAttack G2S Dlwillson\nAttack G1S Dlwillson\n\n44) dlwillson: T B1 R1 Dlwillson\n\n45) SilentTitan: Trade G1 B1 Dlwillson\n\tSilentTitan: Pell Mell... I thought you&#39;d name the next system Mell.... \r\n\n\n46) dlwillson: Sacrifice G2 Well\nBuild B1 Dlwillson\nBuild G1 Well\nCatastrophe Dlwillson Blue\n\tdlwillson: We never got to Mell.  I kept expecting Heck.\n\n47) SilentTitan: Sacrifice Y3 Pell\nMove Y1 Cell Pell\nMove Y1 Pell Dlwillson\nMove Y2 Pell Dlwillson\nCatastrophe Dlwillson Y\n\n\nHomeworlds Online (SDG# 16028)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.6, Ended: 2010.5.10\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld G3 R2 B3\n\n2) dlwillson: Homeworld R3 B1 G3\n\n3) SilentTitan: Build B1 Silenttitan\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade B1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) SilentTitan: Build B1 Silenttitan\n\n8) dlwillson: B G1 Dlwillson\n\n9) SilentTitan: Discover B1 Silenttitan B1 Runningaway\n\n10) dlwillson: Build G1 Dlwillson\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) dlwillson: Discover G1 Dlwillson Y2 Silentrunning\n\n13) SilentTitan: Discover B2 Silenttitan R1 Cheeto\n\n14) dlwillson: B G1 Silentrunning\n\n15) SilentTitan: Build B2 Silenttitan\n\n16) dlwillson: Discover G1 Silentrunning R1 Dorito\n\n17) SilentTitan: Discover B2 Silenttitan Y1 Wrench\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dorito\nBuild G2 Silentrunning\nBuild G2 Dlwillson\n\n19) SilentTitan: Trade B3 G3 Silenttitan\n\n20) dlwillson: Build G3 Dlwillson\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Cheeto\nBuild B3 Wrench\nBuild B3 Wrench\n\n22) dlwillson: Sacrifice Y1 Dlwillson\nMove G2 Dorito Silenttitan\n\n23) SilentTitan: Move B3 Wrench Silenttitan\n\n24) dlwillson: Sacrifice G2 Silentrunning\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nCatastrophe Silenttitan Green\n\n25) SilentTitan: Sacrifice B2 Cheeto\nTrade B2 Y2 Cheeto\nTrade B3 G3 Wrench\n\n26) dlwillson: T G2 Y2 Dlwillson\n\n27) SilentTitan: Sacrifice G3 Wrench\nBuild Y1 Cheeto\nBuild Y3 Cheeto\nBuild Y3 Silenttitan\n\n28) dlwillson: Build Y3 Dlwillson\n\n29) SilentTitan: Sacrifice Y3 Cheeto\nMove Y1 Silenttitan Cheeto\nDiscover Y1 Cheeto B2 Screwdriver\nDiscover Y1 Cheeto B2 Toast\n\n30) dlwillson: D Y3 Dlwillson G2 Taco\n\n31) SilentTitan: Trade B3 G3 Silenttitan\n\n32) dlwillson: B Y3 Taco\n\n33) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Runningaway\nBuild B3 Wrench\nBuild B3 Wrench\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Dorito\nBuild G3 Dlwillson\n\n35) SilentTitan: Sacrifice B2 Wrench\nTrade B3 R3 Wrench\nTrade B3 G3 Runningaway\n\n36) dlwillson: Sacrifice Y3 Taco\nDiscover G2 Dorito Y3 Cheese\nDiscover G1 Dorito B3 Justlikemoms\nDiscover G2 Dlwillson B2 Mysterymeat\n\n37) SilentTitan: Sacrifice Y2 Cheeto\nMove G3 Runningaway Cheese\nMove B3 Wrench Taco\n\n38) dlwillson: Sacrifice Y2 Dlwillson\nDiscover Y3 Taco R3 Spaghetti\nDiscover G1 Silentrunning B3 Burnt\n\n39) SilentTitan: Sacrifice R3 Wrench\nAttack G2S Cheese\nPass\nPass\n\n40) dlwillson: Sacrifice G2 Mysterymeat\nBuild G2 Justlikemoms\nBuild G3 Burnt\n\n41) SilentTitan: Sacrifice G3 Cheese\nBuild Y1 Silenttitan\nBuild Y2 Toast\nBuild G3 Cheese\n\n42) dlwillson: Trade G3 R3 Burnt\n\n43) SilentTitan: Sacrifice Y2 Toast\nMove G3 Cheese Toast\nMove G3 Toast Dlwillson\n\n44) dlwillson: Sacrifice Y3 Spaghetti\nMove R3 Burnt Toast\nMove G2 Justlikemoms Runningaway\nMove R3 Toast Dlwillson\n\n45) SilentTitan: Sacrifice G3 Dlwillson\nBuild Y2 Toast\nBuild Y2 Screwdriver\nBuild G3 Cheese\n\n46) dlwillson: T G3 Y3 Dlwillson\n\n47) SilentTitan: Sacrifice B3 Taco\nTrade B1 R1 Runningaway\nTrade Y1 R1 Screwdriver\nTrade Y1 R1 Toast\n\n48) dlwillson: T R3 B3 Dlwillson\n\n49) SilentTitan: Sacrifice G3 Cheese\nBuild R2 Toast\nBuild R2 Screwdriver\nBuild R3 Runningaway\n\n50) dlwillson: S G2 Runningaway\nB G2 Justlikemoms\nB G2 Burnt\n\n51) SilentTitan: Sacrifice G2 Cheese\nBuild Y1 Screwdriver\nBuild Y1 Toast\n\n52) dlwillson: B G2 Justlikemoms\n\n53) SilentTitan: Trade R3 G3 Runningaway\n\n54) dlwillson: Build G3 Dlwillson\n\n55) SilentTitan: Sacrifice G3 Runningaway\nBuild R3 Screwdriver\nBuild R3 Toast\nBuild Y2 Silenttitan\n\n56) dlwillson: Move Y3 Dlwillson Silenttitan\nCatastrophe Silenttitan Yellow\n\n\tSilentTitan: Geez.. I hope I don&#39;t need a third color anywhere\n\tdlwillson: Thanks Tripp! :-)\n\tSilentTitan: I had no idea you could do that... I thought you had to still maintain the enty point I started the game with .... I would have never had done that had I known. \n\nHomeworlds Online (SDG# 16044)\nStarted: 2010.4.8, Ended: 2010.5.24\nParticipants: dethdukk (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld R3 B1 G3\n\n2) dethdukk: Homeworld G3 B1 B3 *\n\n3) rootbier: Build G1 Rootbier\n\n4) dethdukk: Build B1 Dethdukk\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) dethdukk: Trade B1 Y1 Dethdukk\n\n7) rootbier: Build G1 Rootbier\n\n8) dethdukk: Build B1 Dethdukk\n\n9) rootbier: Trade G3 B3 Rootbier\n\n10) dethdukk: Discover B1 Dethdukk G2 Planetx\n\n11) rootbier: Discover G1 Rootbier Y2 Bagatelle\n\n12) dethdukk: Build B2 Planetx\n\n13) rootbier: Build G1 Bagatelle\n\n14) dethdukk: Build B2 Dethdukk\n\n15) rootbier: Move G1 Bagatelle Dethdukk\n\n16) dethdukk: Trade B2 R2 Dethdukk\n\n17) rootbier: Build G1 Dethdukk\n\n\nHomeworlds Online (SDG# 16069)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.9, Ended: 2010.4.25\nParticipants: rootbier (S), jonaskoelker (N)\nWinner: rootbier\n\n1) jonaskoelker: Homeworld B1 R2 G3\n\n2) rootbier: Homeworld R3 B1 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) rootbier: Build G1 Rootbier\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) rootbier: Build G1 Rootbier\n\n\trootbier: oh :( bad ladder hard time :(\n\tjonaskoelker: Evil, naughty, distracting girlfriend :D\r\n\n\trootbier: lucky tricksy bastard :P\n\nHomeworlds Online (SDG# 15967)\nStarted: 2010.4.9, Ended: 2010.5.11\nParticipants: sucotronic (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld R1 B2 G3\n\tsucotronic: star1 star2 ship\n\n2) sucotronic: Homeworld B3 G1 R3\n\tmathochist: you want to enter &quot;homeworld colorsize colorsize colorsize&quot;, picking your stars &amp; ship.  For example, &quot;homeworld blue1 yellow3 green3&quot; would give you a small blue and large yellow for stars, and a large green ship.\n\tsucotronic: homeworld Y3 B1 R3\n\tsucotronic: homeworld yellow3 blue1 red3\n\n3) mathochist: B G1 Mathochist\n\tsucotronic: thanks for info, this is my first time in superdupergames and I&#39;m a bit lost :P\n\tmathochist: Yeah, the interface isn&#39;t exactly intuitive.  Looks like you figured it out.  :)  you probably want to read the wiki (click the link in the red bar, above). You can abbreviate commands and colors to their first letters, too.\n\n4) sucotronic: Build R1 Sucotronic\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) sucotronic: Trade R1 Y1 Sucotronic\n\n7) mathochist: B G1 Mathochist\n\n8) sucotronic: Discover Y1 Sucotronic G2 Trantor\n\n9) mathochist: Discover G1 Mathochist Y3 Renton\n\n10) sucotronic: Build R1 Sucotronic\n\n11) mathochist: Build G1 Mathochist\n\n12) sucotronic: Trade R1 B1 Sucotronic\n\n13) mathochist: Sacrifice G3 Mathochist\nBuild G2 Mathochist\nBuild G2 Renton\nBuild G3 Mathochist\n\n14) sucotronic: Build R1 Sucotronic\n\n15) mathochist: Discover G2 Mathochist G3 Kent\n\n16) sucotronic: Build B1 Sucotronic\n\n17) mathochist: Sacrifice G3 Mathochist\nBuild G3 Mathochist\nBuild G3 Mathochist\nBuild Y1 Mathochist\n\n18) sucotronic: Build Y2 Trantor\n\n19) mathochist: M Y1 Mathochist Kent\n\n20) sucotronic: Discover Y2 Trantor B3 Terminus\n\n21) mathochist: S G3 Mathochist\nB G3 Mathochist\nB Y2 Mathochist\nB Y2 Kent\n\n\n\n22) sucotronic: Build Y3 Trantor\n\n23) mathochist: T Y1 B1 Mathochist\n\n24) sucotronic: Sacrifice Y3 Trantor\nMove Y2 Terminus Trantor\nMove Y2 Trantor Kent\nMove Y1 Trantor Kent\n\n25) mathochist: S G3 Mathochist\nB Y1 Mathochist\nB Y3 Mathochist\nB G2 Mathochist\nC Kent Y\n\n\n26) sucotronic: Trade R3 G3 Sucotronic\n\n27) mathochist: S Y3 Mathochist\nM B1 Mathochist Kent\nD B1 Kent R2 Temp\nM B1 Temp Sucotronic\nC Sucotronic B\n\n\n\tsucotronic: good played, maybe I have to practice a bit more before next game :P\n\tmathochist: Challenge me again any time :)\n\nHomeworlds Online (SDG# 16006)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.13, Ended: 2010.4.19\nParticipants: ZackStack (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Pass\n\n2) ZackStack: Homeworld B1 R2 G3\n\tdlwillson: I won the last game, you can have first turn if you like.\n\tZackStack: That was unneccessary... but thanks.\n\n3) dlwillson: H Y3 B2 G3\n\n4) ZackStack: Build G1 Zackstack\n\n5) dlwillson: Build G1 Dlwillson\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) dlwillson: T G1 B1 Dlwillson\n\n8) ZackStack: Build Y1 Zackstack\n\tZackStack: I see blue denial in my future :-)\n\n9) dlwillson: Build B1 Dlwillson\n\n10) ZackStack: Build Y1 Zackstack\n\n11) dlwillson: D B1 Dlwillson G1 Frog\n\n12) ZackStack: Discover Y1 Zackstack G3 Toad\n\n13) dlwillson: B G1 Dlwillson\n\tdlwillson: We&#39;ll see... I&#39;ve never tried the &quot;Blue Denial&quot; strategy before, but Davey (dethdukk) swears it&#39;s nearly unbeatable. Says TwoShort uses it to great effect.\n\n\tdlwillson: I reset my move, hoping it would add some time to your timer, but no dice. Sorry. I&#39;ll change the cap on my standing challenge.\n\tZackStack: Thanks for trying... I just couldn&#39;t get free much to get on the computer this weekend.\n\nHomeworlds Online (SDG# 16103)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.14, Ended: 2010.5.5\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) mneme: Homeworld G3 B1 R3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build R1 Mneme\n\n5) TwoShort: Build G1 Twoshort\n\n6) mneme: Build R1 Mneme\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) TwoShort: Build G1 Twoshort\n\n10) mneme: Build R2 Mneme\n\n11) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n12) mneme: Trade R2 G2 Mneme\n\n13) TwoShort: Discover G1 Twoshort G3 Greedo\n\n14) mneme: Build R2 Mneme\n\n15) TwoShort: Build G1 Twoshort\n\tTwoShort: Sorry, saw the certain death right as I hit the button :)\n\n16) mneme: Discover R2 Mneme Y2 Staging\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Greedo\nBuild G2 Twoshort\nBuild G3 Twoshort\n\tmneme: heh.  Yeah, that would have been kinda bad.  \n\n18) mneme: Move R2 Staging Bluonia\n\n19) TwoShort: Trade G2 R2 Twoshort\n\n20) mneme: Attack G1 Bluonia\n\n21) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n22) mneme: Build Y1 Mneme\n\n23) TwoShort: Sacrifice G1 Greedo\nBuild G1 Yolonda\n\n24) mneme: Sacrifice G2 Mneme\nBuild R2 Mneme\nBuild R3 Bluonia\n\n25) TwoShort: Discover G1 Yolonda G2 Grinder\n\n26) mneme: Trade R3 Y3 Bluonia\n\n27) TwoShort: Build G2 Twoshort\n\n28) mneme: Build R3 Bluonia\n\tmneme: hmm.  I didn&#39;t realize until I did it what your plan was and that I&#39;d just foiled it.  Kinda bemusing.  \n\n29) TwoShort: Move R2 Twoshort Yolonda\n\tTwoShort: I&#39;m excited to hear I had a plan :) Well, I guess I had faint hopes you&#39;d do something else last turn, but that&#39;s about it.  Overall, my long held &quot;ignore the early monopoly if it is red&quot; theory is not seeming so solid in practice...\n\n30) mneme: Discover R1 Mneme Y2 Hunter\n\tmneme: We&#39;ll see; I haven&#39;t beaten you yet.  \n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R3 Yolonda\nBuild Y1 Twoshort\n\n32) mneme: Build R3 Mneme\n\tTwoShort: Oh certainly; I&#39;m not despairing, I just had higher hopes for the stratagem.\n\n33) TwoShort: Discover Y1 Twoshort B3 Blathe\n\n34) mneme: Sacrifice Y3 Mneme\nMove R1 Mneme Hunter\nMove R1 Hunter Yolonda\nMove R1 Hunter Yolonda\nCatastrophe Yolonda R\n\n35) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Blathe\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n36) mneme: Build Y2 Mneme\n\n37) TwoShort: Trade Y2 R2 Blathe\n\n38) mneme: Sacrifice Y1 Mneme\nMove R3 Bluonia Grinder\n\n39) TwoShort: Sacrifice G2 Greedo\nBuild G2 Grinder\nBuild G3 Yolonda\n\tmneme: sorry.  My first analysis missed the r1 in hunter.\r\n\n\tTwoShort: No problem.  I was briefly excited you hadn&#39;t done that, but oh well :)\n\n40) mneme: Sacrifice Y2 Mneme\nDiscover R3 Grinder Y3 Sign\nPass\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Blathe\nBuild R1 Blathe\nBuild G3 Twoshort\n\n42) mneme: Trade R2 Y2 Mneme\n\n43) TwoShort: Trade Y1 B1 Blathe\n\n44) mneme: Move G1 Bluonia Grinder\nCatastrophe Grinder G\n\n45) TwoShort: Sacrifice Y2 Twoshort\nDiscover G1 Yolonda G2 Getit\nDiscover R1 Blathe G2 Gotit\n\n46) mneme: Move R2 Bluonia Gotit\n\n47) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G1 Yolonda\nBuild G3 Twoshort\n\n48) mneme: Attack R1 Gotit\n\n49) TwoShort: Discover B1 Blathe Y2 Yelly\n\n50) mneme: Build R1 Mneme\n\tmneme: that factory was really irritating, you know?\n\tTwoShort: I guess it depends what side of the board you&#39;re on :)\n\n51) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Blathe\nBuild G3 Twoshort\n\n52) mneme: Move R1 Mneme Getit\n\n53) TwoShort: Sacrifice G3 Yolonda\nBuild B1 Yelly\nBuild B2 Yelly\nBuild G3 Getit\n\n54) mneme: Attack G1 Getit\n\n55) TwoShort: Sacrifice Y2 Blathe\nMove B2 Yelly Mneme\nMove G1 Yolonda Yelly\n\n56) mneme: Attack B2 Mneme\n\n57) TwoShort: Move B1 Yelly Mneme\n\n58) mneme: Move B2 Mneme Gotit\n\n59) TwoShort: Sacrifice G3 Getit\nBuild B2 Mneme\nBuild B3 Mneme\nBuild G3 Yelly\n\n60) mneme: Trade R2 Y2 Gotit\nCatastrophe Mneme B\n\n61) TwoShort: Move G1 Yelly Mneme\n\n62) mneme: Attack G1 Mneme\n\n63) TwoShort: Move G3 Twoshort Mneme\n\n64) mneme: Sacrifice Y3 Bluonia\nMove G1 Mneme Twoshort\nMove B2 Gotit Mneme\nMove R3 Sign Twoshort\n\n65) TwoShort: Sacrifice R2 Blathe\nAttack R3 Mneme\nAttack B2 Mneme\n\tmneme: hmm? Oh, interesting!  Delaying the catastrophe preventing me from growing blue.  Hadn&#39;t thought of that one.\n\n66) mneme: Attack G2 Twoshort\n\tTwoShort: That, and delaying when you were adjacent to my Homeworld.  I&#39;m not sure if either mattered, but I hadn&#39;t thought through the possibilities, and you obviously had to call it.\n\n67) TwoShort: Attack Y2 Mneme\n\n\nHomeworlds Online (SDG# 16099)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.14, Ended: 2010.5.27\nParticipants: ZackStack (S), sordros (N)\nWinner: ZackStack\n\n1) sordros: Homeworld B1 Y2 G3\n\n2) ZackStack: Homeworld R1 B3 G3\n\tsordros: Hi there\n\tZackStack: Hello!  Have a good game.\n\n3) sordros: Build G1 Sordros\n\n4) ZackStack: Build G1 Zackstack\n\n5) sordros: Trade G1 B1 Sordros\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) sordros: Build G1 Sordros\n\n8) ZackStack: Build Y1 Zackstack\n\n9) sordros: Build G1 Sordros\n\n10) ZackStack: Build Y1 Zackstack\n\n11) sordros: Build B1 Sordros\n\n12) ZackStack: Discover Y1 Zackstack G2 Globe\n\n13) sordros: Discover B1 Sordros G3 Verdega\n\n14) ZackStack: Build Y2 Zackstack\n\n15) sordros: Build B2 Verdega\n\n16) ZackStack: Build Y2 Globe\n\n17) sordros: Trade B2 R2 Verdega\n\n18) ZackStack: Trade Y2 R2 Zackstack\n\n19) sordros: Build B2 Sordros\n\n20) ZackStack: Build Y2 Zackstack\n\n21) sordros: Discover B2 Sordros Y3 Flavega\n\n22) ZackStack: Trade Y2 B2 Zackstack\n\n23) sordros: Sacrifice G3 Sordros\nBuild B2 Verdega\nBuild B3 Flavega\nBuild B3 Sordros\n\n24) ZackStack: Move B2 Zackstack Globe\n\n25) sordros: Sacrifice B2 Flavega\nTrade B3 G3 Sordros\nTrade B2 Y2 Verdega\n\n26) ZackStack: Trade Y1 G1 Globe\n\n\nHomeworlds Online (SDG# 15940)\nStarted: 2010.4.20, Ended: 2010.5.13\nParticipants: ZackStack (S), rootbier (N)\nWinner: ZackStack\n\n1) rootbier: Homeworld G3 B1 B3 *\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Thanks for the challenge!  Have you played much?\n\n3) rootbier: Build B1 Rootbier\n\trootbier: couple games face to face with my pyramids. few more here with varying success. played one recently with a strange starting strategy that i didn&#39;t quite understand but thought i would try.\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: I must admit that based on your starting setup that I thought about blitzing you with blue ships... but I heard Admiral Ackbar yelling &quot;Its a trap!&quot; in the back of my mind and decided to play it straight :-)\n\n5) rootbier: Trade B1 Y1 Rootbier\n\trootbier: yeah. those were my first thoughts when I saw the set-up. i think maybe the other guy went second on setup... but basically - by the time you get mobile enough to do anything i&#39;ll be safe. (unsure)\n\trootbier: &quot;second on making his homeworld&quot;*\n\n6) ZackStack: Build G1 Zackstack\n\tZackStack: I figured I couldn&#39;t get there fast enough to make a risky setup worthwhile :-)\n\n7) rootbier: Build B1 Rootbier\n\n8) ZackStack: Trade G1 B1 Zackstack\n\n9) rootbier: Discover B1 Rootbier Y2 Bagatelle\n\n10) ZackStack: Build B2 Zackstack\n\n11) rootbier: Build B2 Rootbier\n\n12) ZackStack: Trade B2 Y2 Zackstack\n\n13) rootbier: Discover B1 Bagatelle G3 Pistachio\n\n14) ZackStack: Discover B1 Zackstack Y3 Lemon\n\n15) rootbier: Trade B2 R2 Rootbier\n\n16) ZackStack: Build G1 Zackstack\n\n17) rootbier: Build B2 Pistachio\n\n18) ZackStack: Move G1 Zackstack Lemon\n\n19) rootbier: Trade B2 Y2 Pistachio\n\n20) ZackStack: Build B2 Lemon\n\n21) rootbier: Build B2 Pistachio\n\n22) ZackStack: Trade B1 R1 Lemon\n\n23) rootbier: Sacrifice Y2 Pistachio\nMove B1 Pistachio Zackstack\nMove B2 Pistachio Zackstack\n\n24) ZackStack: Attack B2 Zackstack\n\tZackStack: Hmmm... Aggressive and dangerous... I think I like it :-)\n\n25) rootbier: Trade Y1 G1 Rootbier\n\trootbier: slight miscalculation on my part :)\n\trootbier: makes the danger less dangery\n\n26) ZackStack: Attack B1 Zackstack\n\tZackStack: I didn&#39;t say who I thought it was dangerous for :-)  Pesky red worlds...\n\n27) rootbier: Build R1 Rootbier\n\trootbier: no no - i expected that.\r\njust kind of forgot i had no green to dump.\n\n28) ZackStack: Trade B2 Y2 Zackstack\n\n29) rootbier: Trade R1 Y1 Rootbier\n\n30) ZackStack: Build G2 Lemon\n\n31) rootbier: Discover G1 Rootbier Y2 Banksy\n\n32) ZackStack: Discover G2 Lemon B2 Grape\n\n33) rootbier: Build G2 Banksy\n\trootbier: regretting that starting &quot;thing&quot; i was trying. not liking having a green homestar.\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Grape\nBuild G3 Lemon\nBuild G3 Zackstack\n\tZackStack: Its too useful having a big green to sacrifice to pass it up (unless you really like blue denial).  \n\n35) rootbier: Move G1 Banksy Lemon\n\n36) ZackStack: Discover G1 Lemon R2 Cherry\n\n37) rootbier: Build R1 Rootbier\n\n38) ZackStack: Attack G1 Lemon\n\trootbier: no no - i USUALLY have big green - just bleh - should have traded long ago\n\tZackStack: Gotcha.  I&#39;ve had my share of bleh playing Homeworlds too ;-)\n\n39) rootbier: Move B3 Rootbier Grape\n\n40) ZackStack: Sacrifice Y2 Zackstack\nMove G2 Grape Rootbier\nMove G2 Grape Rootbier\n\trootbier: Aggress! The desperation begins.\n\tZackStack: I see...\n\n41) rootbier: Build R2 Rootbier\n\trootbier: I was just happy to learn that &quot;aggress&quot; is a valid verb :) The desperation continues.\n\n42) ZackStack: Sacrifice Y2 Zackstack\nMove R1 Lemon Cherry\nMove R1 Cherry Rootbier\nCatastrophe Rootbier Red\n\tZackStack: Hurrah for expanding vocabulary!  Sorry for the despair though...\n\n43) rootbier: Trade B3 Y3 Grape\n\trootbier: Nah. It&#39;s not actually me despairing - it&#39;s the sad fools of the short-lived Rootbier empire - and they&#39;re imaginary. Plus it&#39;s more like the &quot;reckless abandon&quot; than the &quot;no more hope&quot; kind of desperation.\n\n44) ZackStack: Trade G2 R2 Rootbier\n\tZackStack: &lt;chuckle&gt; \n\n45) rootbier: Move Y3 Grape Rootbier\n\n46) ZackStack: Sacrifice B2 Lemon\nTrade G2 Y2 Rootbier\nTrade R2 Y2 Rootbier\nCatastrophe Rootbier Yellow\n\tZackStack: Thanks for the game.  I&#39;m up for a rematch if you are!\n\n\nHomeworlds Online (SDG# 15982)\nVariants: &quot;Unrated&quot;\nStarted: 2010.4.20, Ended: 2012.2.27\nParticipants: makertron (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) makertron: Homeworld B3 Y1 G3\n\tsordros: Hi, let&#39;s have a good game. Cheers!\n\n3) sordros: Build G1 Sordros\n\tmakertron: Hi! You&#39;re going to win, but it will be fun for me regardless.\n\n4) makertron: Build G1 Makertron\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) makertron: Trade G1 R1 Makertron\n\n7) sordros: Build Y2 Sordros\n\n8) makertron: Build G1 Makertron\n\n9) sordros: Build G1 Sordros\n\n10) makertron: Discover G1 Makertron B2 Catastrophe\n\n11) sordros: Trade Y2 B2 Sordros\n\n12) makertron: Build G1 Makertron\n\n13) sordros: Trade G1 R1 Sordros\n\n14) makertron: Build R1 Makertron\n\n15) sordros: Build Y2 Sordros\n\n16) makertron: Build R2 Makertron\n\n17) sordros: Discover Y2 Sordros B3 Azurra\n\n18) makertron: Move R1 Makertron Catastrophe\n\n19) sordros: Build R2 Sordros\n\n20) makertron: Build R2 Catastrophe\n\n21) sordros: Sacrifice G3 Sordros\nBuild Y2 Azurra\nBuild Y2 Azurra\nBuild Y3 Sordros\n\n22) makertron: Build R3 Makertron\n\n23) sordros: Sacrifice B2 Sordros\nTrade Y3 G3 Sordros\nTrade R2 B2 Sordros\n\n24) makertron: Trade R2 G2 Catastrophe\n\n25) sordros: Build R2 Sordros\n\n26) makertron: Move R2 Makertron Catastrophe\n\n27) sordros: Trade Y2 R2 Azurra\n\n\nHomeworlds Online (SDG# 16013)\nStarted: 2010.4.21, Ended: 2010.5.18\nParticipants: sordros (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) sordros: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) sordros: Build G1 Sordros\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) TwoShort: Build G1 Twoshort\n\n8) sordros: Build G1 Sordros\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) sordros: Trade G1 R1 Sordros\n\n11) TwoShort: Build B1 Twoshort\n\n12) sordros: Build R1 Sordros\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) sordros: Build R2 Sordros\n\n15) TwoShort: Build B2 Grogar\n\n16) sordros: Trade R2 B2 Sordros\n\n17) TwoShort: Trade B2 Y2 Grogar\n\n18) sordros: Build R2 Sordros\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\n20) sordros: Discover R2 Sordros B3 Bluega\n\n21) TwoShort: Sacrifice B2 Grogar\nTrade B2 R2 Grogar\nTrade B3 G3 Twoshort\n\n22) sordros: Build G1 Sordros\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\n24) sordros: Build G1 Sordros\n\n25) TwoShort: Sacrifice B2 Grogar\nTrade B2 Y2 Grogar\nTrade B3 G3 Twoshort\n\n26) sordros: Build B2 Sordros\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Grogar\nBuild Y3 Twoshort\nBuild B2 Grogar\n\n28) sordros: Sacrifice G3 Sordros\nBuild R2 Bluega\nBuild R3 Bluega\nBuild R3 Sordros\n\n29) TwoShort: Sacrifice Y2 Grogar\nMove B1 Grogar Bluega\nMove B1 Bluega Sordros\nCatastrophe Sordros Blue\n\n30) sordros: Sacrifice Y1 Sordros\nMove R3 Bluega Grogar\n\n31) TwoShort: Discover Y2 Grogar G3 Greenland\n\n32) sordros: Attack B2 Grogar\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove Y2 Greenland Sordros\nMove Y1 Twoshort Sordros\nDiscover Y1 Grogar B3 Deathstar\n\n34) sordros: Sacrifice R2 Bluega\nAttack Y1 Sordros\nAttack Y2 Sordros\n\n35) TwoShort: Move Y1 Deathstar Sordros\nCatastrophe Sordros Yellow\n\tsordros: Thanks for the game!\n\tTwoShort: Good Game!\n\n\nHomeworlds Online (SDG# 16158)\nVariants: &quot;Unrated&quot;\nStarted: 2010.4.23, Ended: 2010.5.28\nParticipants: radio414 (S), makertron (N)\nWinner: radio414\n\n1) makertron: Homeworld R2 B3 G3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) makertron: Build G1 Makertron\n\n4) radio414: Build G1 Radio414\n\n5) makertron: Trade G1 Y1 Makertron\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) makertron: Build G1 Makertron\n\n8) radio414: Build G1 Radio414\n\n9) makertron: Discover G1 Makertron B1 Sol\n\n10) radio414: Trade G1 R1 Radio414\n\n11) makertron: Build G1 Makertron\n\n12) radio414: Discover Y1 Radio414 B3 Luna\n\n13) makertron: Trade G1 B1 Makertron\n\n14) radio414: Build G1 Radio414\n\n15) makertron: Move B1 Makertron Sol\n\n16) radio414: Trade G1 Y1 Radio414\n\n17) makertron: Build Y2 Makertron\n\n18) radio414: Trade Y1 G1 Luna\n\n19) makertron: Trade Y2 R2 Makertron\n\n20) radio414: Move R1 Radio414 Luna\n\n21) makertron: Move R2 Makertron Sol\n\n22) radio414: Build Y1 Radio414\n\n23) makertron: Build Y2 Makertron\n\n24) radio414: Build Y2 Radio414\n\n25) makertron: Move Y1 Makertron Sol\n\n26) radio414: Move Y2 Radio414 Luna\n\n27) makertron: Build Y2 Makertron\n\n28) radio414: Build Y3 Luna\n\n29) makertron: Build Y3 Sol\n\n30) radio414: Trade Y1 G1 Radio414\n\n31) makertron: Build G2 Sol\n\n32) radio414: Build G2 Luna\n\n33) makertron: Move G2 Sol Makertron\n\n34) radio414: Trade G1 B1 Luna\n\n35) makertron: Trade Y2 R2 Makertron\n\n36) radio414: Move G1 Radio414 Luna\n\n37) makertron: Build G1 Sol\n\n38) radio414: Build G2 Radio414\n\n39) makertron: Build G3 Makertron\n\n40) radio414: Sacrifice Y2 Luna\nMove G1 Luna Sol\nMove G1 Sol Makertron\nCatastrophe Makertron G\n\n41) makertron: Trade R2 G2 Makertron\n\n42) radio414: Trade G2 R2 Radio414\n\n43) makertron: Move Y3 Sol Makertron\n\n44) radio414: Move Y3 Luna Sol\n\n45) makertron: Sacrifice G2 Makertron\nBuild R1 Sol\nBuild R3 Sol\n\n46) radio414: Sacrifice Y1 Radio414\nMove R1 Luna Sol\nCatastrophe Sol Red\n\n47) makertron: Trade Y2 G2 Makertron\n\n48) radio414: Sacrifice R2 Radio414\nAttack Y1N Sol\nAttack B1N Sol\n\n49) makertron: Sacrifice G1 Sol\nBuild Y1 Makertron\n\n50) radio414: Trade B1 R1 Sol\n\n51) makertron: Build G1 Makertron\n\n52) radio414: Attack G1N Sol\n\n53) makertron: Discover G1 Makertron B1 Radion\n\n54) radio414: Move Y3 Sol Makertron\n\n55) makertron: Attack Y3 Makertron\n\n56) radio414: Move Y1 Sol Makertron\nCatastrophe Makertron Y\n\n57) makertron: Build G1 Makertron\n\n58) radio414: Build G2 Radio414\n\n59) makertron: Sacrifice G2 Makertron\nBuild G2 Radion\nBuild G3 Makertron\n\n60) radio414: Trade B1 Y1 Luna\n\n61) makertron: Trade G1 Y1 Makertron\n\n62) radio414: Sacrifice G3 Radio414\nBuild G1 Luna\nBuild G3 Sol\nBuild G3 Radio414\n\n63) makertron: Trade G1 Y1 Radion\n\n64) radio414: Build Y2 Luna\n\n65) makertron: Build Y2 Makertron\n\n66) radio414: Trade G2 Y2 Radio414\n\n67) makertron: Build Y3 Radion\n\n68) radio414: Build Y3 Radio414\n\n69) makertron: Trade Y1 G1 Radion\n\n70) radio414: Trade Y3 B3 Radio414\n\n71) makertron: Trade G1 R1 Radion\n\n72) radio414: Trade G1 B1 Sol\n\n73) makertron: Build R2 Radion\n\n74) radio414: Build R2 Sol\n\n75) makertron: Move R1 Radion Makertron\n\n76) radio414: Trade R1 G1 Sol\n\n77) makertron: Move R2 Radion Luna\n\n78) radio414: Sacrifice R2 Sol\nAttack R2N Luna\nPass\n\n79) makertron: Move R1 Makertron Radion\n\n80) radio414: Build B2 Radio414\n\n81) makertron: Build R1 Radion\n\n82) radio414: Move B3 Radio414 Luna\n\n83) makertron: Discover R1 Radion Y3 Radio\n\n84) radio414: Sacrifice Y2 Luna\nMove G1 Sol Makertron\nMove G3 Sol Makertron\n\n85) makertron: Attack G3 Makertron\n\n86) radio414: Build G1 Makertron\nCatastrophe Makertron Green\n\n87) makertron: Trade Y1 G1 Makertron\n\n88) radio414: Sacrifice Y2 Radio414\nMove B3 Luna Radion\nMove B3 Radion Makertron\n\n\nHomeworlds Online (SDG# 16171)\nVariants: &quot;Unrated&quot;\nStarted: 2010.4.24, Ended: 2011.5.21\nParticipants: rootbier (S), cnyh (N)\nWinner: rootbier\n\n\nHomeworlds Online (SDG# 16046)\nStarted: 2010.4.25, Ended: 2010.7.18\nParticipants: rootbier (S), bootdisk (N)\nWinner: rootbier\n\n1) bootdisk: Homeworld B1 G2 Y3\n\tbootdisk: incidentally i forgot the rules seth... -.- gimme a few days. my semester has going into its third week and it&#39;s beginning to become stressy. don&#39;t expect me to think a lot about this :P\n\n2) rootbier: Homeworld Y1 B3 G3\n\n3) bootdisk: Discover Y3 Bootdisk R3 R31\n\tbootdisk: d&#39;oh!\r\nthis happens if you don&#39;t read the rules again - after a long time. for a moment i wondered what kind of strange view-mode it is that hides my homeworld :P\r\n\r\nuhm.. rematch?\n\trootbier: oops there. it shouldn&#39;t actually let you finish yourself but i guess they didn&#39;t code suicide prevention into it. i have a standing challenge out there. you can use it to start a new game any time you like.\n\n\nHomeworlds Online (SDG# 16195)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.25, Ended: 2010.4.28\nParticipants: dethdukk (S), captncavern (N)\nWinner: captncavern\n\n1) captncavern: Homeworld B3 G1 R3\n\n\nHomeworlds Online (SDG# 16199)\nStarted: 2010.4.26, Ended: 2010.6.17\nParticipants: logikal (S), makertron (N)\nWinner: makertron\n\n1) makertron: Homeworld R3 B2 G3\n\n2) logikal: Homeworld R1 B2 G3\n\n3) makertron: Build G1 Makertron\n\n4) logikal: Build G1 Logikal\n\n5) makertron: Trade G1 Y1 Makertron\n\n6) logikal: Trade G1 Y1 Logikal\n\n7) makertron: Build G1 Makertron\n\n8) logikal: Build G1 Logikal\n\n9) makertron: Discover G1 Makertron B1 Sol\n\n10) logikal: Trade G1 B1 Logikal\n\n11) makertron: Build G1 Sol\n\n12) logikal: Discover B1 Logikal G3 L1\n\n13) makertron: Trade G1 R1 Sol\n\n14) logikal: Trade B1 R1 L1\n\n15) makertron: Build R2 Sol\n\n16) logikal: Build R2 L1\n\n17) makertron: Trade R1 Y1 Sol\n\n18) logikal: Build Y2 Logikal\n\n19) makertron: Build Y2 Makertron\n\n20) logikal: Move Y1 Logikal L1\n\n21) makertron: Trade Y2 G2 Makertron\n\n22) logikal: Build Y2 L1\n\n23) makertron: Sacrifice G2 Makertron\nBuild Y2 Makertron\nBuild Y3 Sol\n\n24) logikal: Build Y3 Logikal\n\n25) makertron: Trade Y1 B1 Sol\n\n26) logikal: Discover Y2 L1 G1 L2\n\n27) makertron: Build R1 Sol\n\n28) logikal: Move G3 Logikal L1\n\n29) makertron: Discover R1 Sol R3 Los\n\n30) logikal: Move Y2 L2 Los\n\n31) makertron: Build G1 Makertron\n\n32) logikal: Trade Y2 G2 Logikal\n\n33) makertron: Build R2 Sol\n\n34) logikal: Attack R1 Los\n\n35) makertron: Trade R2 G2 Sol\n\n36) logikal: Move R1 L1 Sol\n\n37) makertron: Discover G1 Sol Y3 Beta\n\n38) logikal: Move G2 Logikal Beta\n\n39) makertron: Sacrifice G3 Makertron\nBuild G1 Beta\nBuild G2 Sol\nBuild G3 Makertron\n\n40) logikal: Move G2 Beta Logikal\n\n41) makertron: Attack R1 Sol\n\n42) logikal: Sacrifice G3 L1\nBuild G3 Logikal\nBuild Y1 L1\nBuild Y2 Logikal\n\n43) makertron: Move R1 Sol Beta\n\n44) logikal: Discover G3 Logikal R3 L2\n\n45) makertron: Discover G1 Beta B1 Qo&#39;nos\n\n\nHomeworlds Online (SDG# 16164)\nStarted: 2010.4.26, Ended: 2010.5.5\nParticipants: SilentTitan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) SilentTitan: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) SilentTitan: Discover G1 Silenttitan Y3 Charm\n\n7) TwoShort: Build G1 Twoshort\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) TwoShort: Build G2 Twoshort\n\n10) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Charm\nBuild G2 Silenttitan\nBuild G3 Silenttitan\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) SilentTitan: Discover G2 Silenttitan G3 Roses\n\n13) TwoShort: Trade G2 Y2 Twoshort\n\n14) SilentTitan: Trade G1 R1 Silenttitan\n\n15) TwoShort: Build G1 Twoshort\n\n16) SilentTitan: Discover G2 Charm B2 Fear\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n18) SilentTitan: Sacrifice G2 Roses\nBuild G2 Charm\nBuild G3 Silenttitan\n\n19) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n20) SilentTitan: Trade G3 Y3 Silenttitan\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluonia\nBuild Y3 Twoshort\nBuild G3 Yolonda\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nMove G2 Charm Bluonia\nMove G1 Charm Yolonda\nMove G2 Fear Twoshort\n\tTwoShort: Just out of curiosity, have you played much Homeworlds off line?\n\n23) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y3 Bluonia\nCatastrophe Twoshort Green\n\tSilentTitan: yes... but I&#39;m not very good off line\n\tTwoShort: I&#39;m not at all as good off-line either.  Others I&#39;ve played are much better at coming up with a reasonably good move in 30 seconds or so, but I&#39;m better at coming up with a better move if I think for a half hour, or maybe wait a day until I&#39;m in the right mood; which doesn&#39;t work so well with an opponent sitting there :)\n\n24) SilentTitan: Sacrifice G2 Bluonia\nBuild G1 Yolonda\nBuild G2 Silenttitan\nCatastrophe Yolonda G\n\n25) TwoShort: Trade Y3 G3 Twoshort\n\n26) SilentTitan: Discover G2 Silenttitan Y3 Toast\n\n27) TwoShort: Discover Y1 Bluonia B3 Boomer\n\n28) SilentTitan: Build G1 Silenttitan\n\n29) TwoShort: Build G1 Twoshort\n\n30) SilentTitan: Discover G1 Silenttitan Y3 Jelly\n\n31) TwoShort: Build Y2 Twoshort\n\n32) SilentTitan: Build G1 Silenttitan\n\n33) TwoShort: Trade Y2 R2 Twoshort\n\n34) SilentTitan: Build G2 Jelly\n\n35) TwoShort: Build Y2 Twoshort\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Jelly\nBuild G3 Toast\nBuild G3 Silenttitan\n\n37) TwoShort: Trade Y2 B2 Twoshort\n\n38) SilentTitan: Discover G2 Jelly Y2 Snake\n\n39) TwoShort: Move B2 Twoshort Snake\n\n40) SilentTitan: Move G2 Snake Twoshort\n\n41) TwoShort: Attack G2 Twoshort\n\n42) SilentTitan: Trade G3 R3 Silenttitan\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B1 Snake\nBuild B1 Snake\n\n44) SilentTitan: Move G2 Jelly Snake\n\n45) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Twoshort Y2 Yolonda\nDiscover B1 Snake G3 Gonzo\n\n46) SilentTitan: Discover R1 Silenttitan B3 Yrua\n\n47) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Boomer\nBuild B2 Gonzo\n\n48) SilentTitan: Sacrifice G3 Toast\nBuild G2 Silenttitan\nBuild G3 Snake\nBuild R1 Yrua\n\n49) TwoShort: Sacrifice Y3 Bluonia\nMove B2 Snake Boomer\nMove B2 Boomer Silenttitan\nDiscover Y1 Bluonia R3 Rover\n\n50) SilentTitan: Move G3 Snake Twoshort\n\n51) TwoShort: Sacrifice R2 Twoshort\nAttack G3 Twoshort\nAttack G2 Silenttitan\n\n52) SilentTitan: Move G2 Snake Twoshort\nCatastrophe Twoshort G\n\n53) TwoShort: Sacrifice G2 Silenttitan\nBuild B2 Silenttitan\nBuild Y3 Twoshort\n\n54) SilentTitan: Sacrifice G2 Toast\nBuild R2 Yrua\nBuild R2 Silenttitan\n\tSilentTitan: oh... well my mistake. I missed calculating that you&#39;d be able to take the g2 in my homeworld\r\n\n\n55) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Boomer Silenttitan\nMove Y2 Boomer Silenttitan\nMove Y1 Rover Silenttitan\nCatastrophe Silenttitan Yellow\n\tTwoShort: I was glad when I spotted it, since I had missed the threat to my 3 pointer :)\n\n56) SilentTitan: Sacrifice R2 Silenttitan\nAttack B2N Silenttitan\nAttack B2N Silenttitan\n\n57) TwoShort: Move B1 Snake Silenttitan\nCatastrophe Silenttitan Blue\n\n\nHomeworlds Online (SDG# 16153)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.26, Ended: 2010.6.12\nParticipants: dlwillson (S), radio414 (N)\nWinner: dlwillson\n\n1) radio414: Homeworld B2 R1 G3\n\n2) dlwillson: H B3 Y2 G3\n\n3) radio414: Build G1 Radio414\n\n4) dlwillson: B G1 Dlwillson\n\n5) radio414: Trade G1 Y1 Radio414\n\n6) dlwillson: Build G1 Dlwillson\n\n7) radio414: Build Y1 Radio414\n\n8) dlwillson: Discover G1 Dlwillson B1 Funkytown\n\n9) radio414: Trade Y1 B1 Radio414\n\n10) dlwillson: Trade G1 Y1 Dlwillson\n\n11) radio414: Discover B1 Radio414 G3 Lonelystreet\n\n12) dlwillson: Build G1 Dlwillson\n\n13) radio414: Build B1 Lonelystreet\n\n14) dlwillson: Trade G1 R1 Dlwillson\n\n15) radio414: Build B2 Lonelystreet\n\n16) dlwillson: B G1 Dlwillson\n\n17) radio414: Trade B2 R2 Lonelystreet\n\n18) dlwillson: B G1 Dlwillson\n\n19) radio414: Build B2 Lonelystreet\n\n20) dlwillson: B G2 Funkytown\n\n21) radio414: Build G2 Radio414\n\n22) dlwillson: T G2 B2 Funkytown\n\n23) radio414: Trade B1 Y1 Lonelystreet\n\n24) dlwillson: Move Y1 Dlwillson Funkytown\n\n25) radio414: Move G2 Radio414 Lonelystreet\n\n26) dlwillson: Discover G1 Dlwillson B1 Electric_avenue\n\n27) radio414: Build Y2 Radio414\n\n28) dlwillson: Discover B2 Funkytown G2 Detroit\n\n29) radio414: Move R2 Lonelystreet Funkytown\n\n30) dlwillson: Sacrifice Y1 Funkytown\nDiscover G1 Funkytown B3 Heartbrk_hotel\n\n31) radio414: Build G2 Radio414\n\n32) dlwillson: Build B3 Detroit\n\n33) radio414: Sacrifice Y2 Radio414\nMove B1 Lonelystreet Detroit\nMove B2 Lonelystreet Detroit\nCatastrophe Detroit B\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Heartbrk_hotel\nBuild G3 Dlwillson\nBuild R1 Dlwillson\n\n35) radio414: Trade G2 R2 Radio414\n\n36) dlwillson: Move R1 Dlwillson Electric_avenue\n\n37) radio414: Build G2 Radio414\n\tdlwillson: You&#39;re doing great! I&#39;ll have to think a minute on this one, and put in a move tonight.\n\tradio414: Thanks. I sometimes play with one of my friends who taught me this game. He&#39;s the player to beat.\n\n38) dlwillson:\nT G2 Y2 Heartbrk_hotel\n\tdlwillson: I need a couple more moves to get caught up, but that&#39;ll have to do for now. How long have you been playing? How many games? For me 2 years, and about a dozen or so... Maybe 2 dozen at most.\n\n39) radio414: Move G2 Lonelystreet Funkytown\n\tradio414: I usually play on friday if i have free time. I started last year.\n\n40) dlwillson: B G2 Electric_avenue\n\n41) radio414: Trade R2 Y2 Radio414\n\n42) dlwillson: T G1 Y1 Electric_avenue\n\n43) radio414: Build Y3 Lonelystreet\n\n44) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Heartbrk_hotel\nBuild G3 Dlwillson\nBuild Y3 Electric_avenue\n\n45) radio414: Trade Y2 R2 Radio414\n\n46) dlwillson: Sacrifice Y3 Electric_avenue\nMove G1 Heartbrk_hotel Radio414\nMove G1 Heartbrk_hotel Radio414\nMove R1 Electric_avenue Heartbrk_hotel\nCatastrophe Radio414 G\n\n47) radio414: Move Y3 Lonelystreet Radio414\n\n48) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Heartbrk_hotel\nBuild R2 Heartbrk_hotel\nBuild R3 Dlwillson\n\n49) radio414: Trade R2 G2 Radio414\n\n50) dlwillson: Build Y3 Electric_avenue\n\n51) radio414: Build Y3 Lonelystreet\n\n52) dlwillson: Sacrifice Y3 Electric_avenue\nMove Y2 Heartbrk_hotel Radio414\nMove R2 Heartbrk_hotel Radio414\nMove G2 Electric_avenue Heartbrk_hotel\n\n53) radio414: Sacrifice R2 Funkytown\nAttack R2S Radio414\nAttack Y2S Radio414\n\n54) dlwillson: Move Y2 Heartbrk_hotel Radio414\nCatastrophe Radio414 Y\n\n55) radio414: Move Y3 Lonelystreet Radio414\n\n56) dlwillson: Move R1 Dlwillson Electric_avenue\n\n57) radio414: Build G1 Funkytown\n\n58) dlwillson: Build G1 Heartbrk_hotel\n\n59) radio414: Build G3 Radio414\n\n60) dlwillson: Build G3 Dlwillson\n\n61) radio414: Build Y1 Radio414\n\n62) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild Y2 Electric_avenue\nBuild R2 Heartbrk_hotel\n\n63) radio414: Trade R2 B2 Radio414\n\n64) dlwillson: Sacrifice Y2 Electric_avenue\nMove R1 Heartbrk_hotel Radio414\nMove R2 Heartbrk_hotel Radio414\n\n65) radio414: Build Y2 Lonelystreet\n\n66) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Radio414\nBuild R2 Electric_avenue\nBuild R3 Dlwillson\nCatastrophe Radio414 Red\n\n67) radio414: Trade Y1 R1 Radio414\n\n68) dlwillson: Sacrifice G2 Heartbrk_hotel\nBuild G2 Dlwillson\nBuild G3 Heartbrk_hotel\n\n69) radio414: Sacrifice Y2 Lonelystreet\nMove G2 Funkytown Heartbrk_hotel\nMove G1 Funkytown Heartbrk_hotel\nCatastrophe Heartbrk_hotel G\n\n70) dlwillson: Trade R2 B2 Electric_avenue\n\n71) radio414: Build Y1 Lonelystreet\n\n72) dlwillson: T R3 Y3 Dlwillson\n\n73) radio414: Move G3 Radio414 Electric_avenue\n\n74) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Electric_avenue Radio414\nMove B2 Electric_avenue Radio414\nMove Y1 Electric_avenue Radio414\n\n\tdlwillson: Checkmate?\n\nHomeworlds Online (SDG# 16197)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.26, Ended: 2010.5.14\nParticipants: Uglyfoot (S), rootbier (N)\nWinner: Uglyfoot\n\n1) rootbier: Homeworld B1 Y3 G3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\trootbier: good luck mate.\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) rootbier: Trade G1 R1 Rootbier\n\tUglyfoot: thanks!  have a good game.\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) rootbier: Build R1 Rootbier\n\n8) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n9) rootbier: Discover R1 Rootbier B2 Ruination\n\n10) Uglyfoot: Discover Y1 Uglyfoot R1 Moat\n\n11) rootbier: Build R2 Rootbier\n\n12) Uglyfoot: Build G1 Uglyfoot\n\n13) rootbier: Build R2 Rootbier\n\n14) Uglyfoot: Move G1 Uglyfoot Moat\n\n15) rootbier: Move R2 Rootbier Ruination\n\n16) Uglyfoot: Build G1 Moat\n\n17) rootbier: Trade R1 Y1 Ruination\n\n18) Uglyfoot: Build G2 Moat\n\n19) rootbier: Trade R2 G2 Ruination\n\n20) Uglyfoot: Discover G2 Moat Y2 Hub\n\n21) rootbier: Discover G2 Ruination Y1 Falter\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Moat\nBuild G3 Uglyfoot\nBuild G3 Hub\n\n23) rootbier: Trade R2 Y2 Rootbier\n\trootbier: i been sleepin&#39; something fierce here - nice fleet you&#39;ve got there :)\n\n24) Uglyfoot: Trade G1 B1 Uglyfoot\n\n25) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Ruination\nBuild Y3 Rootbier\nBuild R1 Rootbier\n\n26) Uglyfoot: Move G1 Moat Uglyfoot\n\trootbier: i swear my brain is on sideways right now - i somehow convinced myself i didn&#39;t see Ruination\n\n27) rootbier: Move Y3 Rootbier Hub\n\n28) Uglyfoot: Move G3 Hub Rootbier\n\n29) rootbier: Move Y3 Hub Rootbier\n\n30) Uglyfoot: Move Y1 Moat Hub\n\n31) rootbier: Trade Y3 G3 Rootbier\n\n32) Uglyfoot: Trade G3 Y3 Rootbier\n\n33) rootbier: Trade Y2 B2 Rootbier\n\n34) Uglyfoot: Move Y3 Rootbier Ruination\n\n35) rootbier: Sacrifice G2 Falter\nBuild R2 Rootbier\nBuild Y1 Ruination\nCatastrophe Ruination Y\n\trootbier: i underestimated you based on your record. you&#39;re tricksy :) -- it&#39;s fun\r\n\n\n36) Uglyfoot: Move B1 Uglyfoot Moat\n\trootbier: i am trying to do the following\r\n\r\nsacrifice g2 falter\r\nbuild r2 rootbier\r\nbuild y2 ruination\r\ncatastrophe ruination y\r\n\r\nand am getting an error message telling me to choose the smallest Y piece... which in this case is indeed y2... am i confused or is there a problem here?\n\tUglyfoot: I agree that you should be able to do that.  (Even if I don&#39;t like it.  ;&gt; )\n\tUglyfoot: Wait.  When you sacrifice a ruination the star (Y1) becomes available and you should build with it before triggering the catastrophe.\n\tUglyfoot: \n\tUglyfoot: not ruination.  when you sacrifice at falter...\n\trootbier: right right - i am pulling an all-nighter and space space out - thanks\r\ncancelled the page that is...\n\n37) rootbier: Move R2 Rootbier Hub\n\n38) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Hub\nBuild G2 Hub\nBuild G3 Uglyfoot\n\n39) rootbier: Attack G2 Hub\n\n40) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Hub\nBuild Y1 Hub\nCatastrophe Hub Y\n\n41) rootbier: Discover B2 Rootbier G2 Flax\n\n42) Uglyfoot: Trade G2 Y2 Moat\n\trootbier: wow. drastic. :)\n\n43) rootbier: Discover R1 Rootbier B2 Bell\n\n44) Uglyfoot: Build G1 Moat\n\n45) rootbier: Build G2 Rootbier\n\n46) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Moat\n\n47) rootbier: Trade B2 Y2 Flax\n\n48) Uglyfoot: Trade G2 R2 Uglyfoot\n\n49) rootbier: Sacrifice Y2 Flax\nDiscover G2 Rootbier G2 Snap\nMove G2 Snap Moat\nCatastrophe Moat G\n\n50) Uglyfoot: Move G1 Uglyfoot Moat\n\n51) rootbier: Sacrifice G3 Rootbier\nBuild R2 Rootbier\nBuild R2 Bell\nBuild R3 Rootbier\n\tUglyfoot: Oh Snap!\n\n52) Uglyfoot: Move R2 Uglyfoot Moat\n\n53) rootbier: Trade R3 G3 Rootbier\n\n54) Uglyfoot: Build R3 Moat\n\n55) rootbier: Trade R2 Y2 Bell\n\n56) Uglyfoot: Move R3 Moat Bell\n\n57) rootbier: Sacrifice Y2 Bell\nDiscover R1 Bell Y1 Offramp\nDiscover R1 Rootbier B2 Opine\n\n58) Uglyfoot: Build G1 Uglyfoot\n\n59) rootbier: Sacrifice G3 Rootbier\nBuild R2 Offramp\nBuild R3 Opine\nBuild R3 Rootbier\n\n60) Uglyfoot: Move R2 Moat Bell\n\n61) rootbier: Trade R2 G2 Rootbier\n\n62) Uglyfoot: Move G1 Moat Bell\n\n63) rootbier: Trade R3 G3 Opine\n\n64) Uglyfoot: Trade R3 B3 Bell\n\n65) rootbier: Trade R3 Y3 Rootbier\n\n66) Uglyfoot: Build R2 Bell\n\n67) rootbier: Sacrifice Y3 Rootbier\nMove G3 Opine Moat\nMove R1 Opine Rootbier\nMove R2 Offramp Bell\n\n68) Uglyfoot: Sacrifice Y2 Moat\nMove B3 Bell Rootbier\nDiscover R2 Bell Y1 Fort\n\n69) rootbier: Sacrifice G3 Moat\nBuild R3 Rootbier\nBuild R3 Rootbier\nBuild G1 Rootbier\n\n70) Uglyfoot: Sacrifice R2 Bell\nAttack R3 Rootbier\nAttack R3 Rootbier\n\trootbier: r2 not r2 :)\n\n71) rootbier: Build G2 Rootbier\n\n72) Uglyfoot: Sacrifice R3 Rootbier\nAttack R1 Rootbier\nAttack G2 Rootbier\nAttack G2 Rootbier\n\n73) rootbier: Build G2 Rootbier\n\n74) Uglyfoot: Build G3 Bell\nCatastrophe Rootbier G\n\n\nHomeworlds Online (SDG# 15901)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.27, Ended: 2010.5.6\nParticipants: agentofchaos (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld B1 Y2 G3\n\n2) agentofchaos:\nHomeworld B1 R3 G3\n\tagentofchaos: h b1 r3 g3\n\n3) shmil1: Build G1 Shmil1\n\tagentofchaos: Hi enjoy the game. \n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) shmil1: Trade G1 R1 Shmil1\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) shmil1: Build G1 Shmil1\n\n\nHomeworlds Online (SDG# 16215)\nVariants: &quot;Hard time&quot;\nStarted: 2010.4.27, Ended: 2010.5.16\nParticipants: radio414 (S), shmil1 (N)\nWinner: radio414\n\n1) shmil1: Homeworld R1 B2 G3\n\n2) radio414: Homeworld B3 R1 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) radio414: Build G1 Radio414\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) shmil1: Build G1 Shmil1\n\n8) radio414: Build G1 Radio414\n\n9) shmil1: Trade G1 B1 Shmil1\n\n10) radio414: Trade G1 B1 Radio414\n\n11) shmil1: Build G1 Shmil1\n\n12) radio414: Build G1 Radio414\n\n13) shmil1: Discover G1 Shmil1 B3 Modry\n\n14) radio414: Discover B1 Radio414 G2 Jaroslav\n\n15) shmil1: Move B1 Shmil1 Modry\n\n16) radio414: Move G1 Radio414 Jaroslav\n\n17) shmil1: Move Y1 Shmil1 Modry\n\n18) radio414: Build B1 Jaroslav\n\n19) shmil1: Build B2 Modry\n\n20) radio414: Sacrifice Y1 Radio414\nMove B1 Jaroslav Modry\nCatastrophe Modry B\n\n21) shmil1: Build G1 Shmil1\n\n22) radio414: Build B1 Jaroslav\n\n23) shmil1: Trade G1 Y1 Shmil1\n\n24) radio414: Build G1 Radio414\n\n25) shmil1: Build Y1 Shmil1\n\n26) radio414: Trade G1 B1 Radio414\n\n27) shmil1: Build G1 Shmil1\n\n28) radio414: Trade B1 R1 Jaroslav\n\n29) shmil1: Discover G1 Shmil1 B3 Modradobra\n\n30) radio414: Build R2 Jaroslav\n\n31) shmil1: Move Y1 Shmil1 Modradobra\n\n32) radio414: Trade R1 Y1 Jaroslav\n\n33) shmil1: Build Y2 Modradobra\n\n34) radio414: Build Y2 Jaroslav\n\n35) shmil1: Trade Y1 B1 Modradobra\n\n36) radio414: Move R2 Jaroslav Modradobra\n\n37) shmil1: Sacrifice Y2 Modradobra\nMove B1 Modradobra Jaroslav\nMove G1 Modradobra Jaroslav\n\n38) radio414: Trade B1 R1 Jaroslav\n\n39) shmil1: Build G1 Jaroslav\nCatastrophe Jaroslav Green\n\n40) radio414: Build G1 Radio414\n\n41) shmil1: Build G1 Shmil1\n\n42) radio414: Trade B1 Y1 Radio414\n\n43) shmil1: Discover G1 Shmil1 Y3 Zluta\n\n44) radio414: Trade G1 B1 Radio414\n\n45) shmil1: Discover G1 Zluta B2 Modra2\n\n46) radio414: Move B1 Radio414 Modra2\n\n47) shmil1: Build G1 Modra2\n\n48) radio414: Sacrifice R2 Modradobra\nAttack G1N Modra2\nAttack G1N Modra2\n\n49) shmil1: Build G1 Shmil1\n\n50) radio414: Build G2 Radio414\n\n51) shmil1: Discover G1 Shmil1 Y3 Zluty\n\n52) radio414: Trade G1 R1 Modra2\n\n53) shmil1: Discover G1 Zluty B2 Modry\n\n54) radio414: Build R2 Modra2\n\n55) shmil1: Build G1 Modry\n\n56) radio414: Trade G2 Y2 Radio414\n\n57) shmil1: Trade G1 Y1 Modry\n\n58) radio414: Build B1 Modra2\n\n59) shmil1: Build Y2 Shmil1\n\n60) radio414: Move Y1 Radio414 Modry\n\n61) shmil1: Sacrifice G3 Shmil1\nBuild Y2 Modry\nBuild Y3 Shmil1\nBuild G1 Modry\n\n62) radio414: Sacrifice Y2 Radio414\nDiscover Y1 Modry R3 Goodgame\nMove Y1 Goodgame Shmil1\nCatastrophe Shmil1 Yellow\n\n\nHomeworlds Online (SDG# 16184)\nStarted: 2010.4.29, Ended: 2010.5.2\nParticipants: rootbier (S), Teo (N)\nWinner: rootbier\n\n1) Teo: Homeworld G1 B2 Y3\n\n2) rootbier: Homeworld Y3 B1 G3\n\trootbier: Do you think you understand the game? We could do a round in person at some point - that would make it all clearer :) Thanks so much for coming last night.\n\n3) Teo: Build Y1 Teo\n\tTeo: I&#39;ll read the rules a second time and try to concentrate myself...\n\n4) rootbier: Build G1 Rootbier\n\n5) Teo: Build Y1 Teo\n\n6) rootbier: Trade G1 R1 Rootbier\n\trootbier: be careful about building too many of one color. catastrophes can be triggered by anyone - even if they haven&#39;t had a part in shaping the situation. \r\n\r\nnot a big deal now because i can&#39;t easily a yellow ship in there to mess with you. not yet :)\n\n7) Teo: Trade Y1 G1 Teo\n\n8) rootbier: Discover R1 Rootbier G2 Bagatelle\n\n9) Teo: Trade Y1 R1 Teo\n\n10) rootbier: Build G1 Rootbier\n\n11) Teo: Discover R1 Teo Y3 Frisbee\n\n12) rootbier: Trade G1 R1 Rootbier\n\n13) Teo: Move G1 Teo Frisbee\n\n14) rootbier: Build R2 Rootbier\n\n15) Teo: Build R2 Frisbee\n\n16) rootbier: Trade R2 Y2 Rootbier\n\n17) Teo: Move R2 Frisbee Bagatelle\n\n18) rootbier: Build R2 Bagatelle\n\n19) Teo: Build R2 Frisbee\n\n20) rootbier: Sacrifice G3 Rootbier\nBuild R3 Rootbier\nBuild R3 Bagatelle\nPass\nCatastrophe Bagatelle Red\n\n21) Teo: Build Y1 Teo\n\n22) rootbier: Trade R3 G3 Rootbier\n\n23) Teo: Trade Y1 B1 Teo\n\n24) rootbier: Build Y1 Rootbier\n\n25) Teo: Move B1 Teo Frisbee\n\n26) rootbier: Sacrifice Y2 Rootbier\nDiscover R1 Rootbier G2 Whateva\nDiscover R1 Whateva B3 Pratfall\n\n27) Teo: Discover R2 Frisbee Y2 Game\n\n28) rootbier: Trade R1 Y1 Pratfall\n\n29) Teo: Move R2 Game Pratfall\n\n30) rootbier: Move Y1 Pratfall Teo\n\n31) Teo: Trade Y3 R3 Teo\n\n32) rootbier: Discover Y1 Teo G3 Pistachio\n\n33) Teo: Trade R2 Y2 Pratfall\n\n34) rootbier: Trade Y1 R1 Rootbier\n\n35) Teo: Discover Y2 Pratfall G2 Intership\n\n36) rootbier: Build Y1 Pistachio\n\n37) Teo: Move R1 Frisbee Intership\n\n38) rootbier: Discover Y1 Pistachio R2 Knuckles\n\n39) Teo: Move B1 Frisbee Intership\n\n40) rootbier: Trade G3 R3 Rootbier\n\n41) Teo: Move G1 Frisbee Teo\n\n42) rootbier: Move R3 Rootbier Intership\n\n43) Teo: Move Y2 Intership Rootbier\n\n44) rootbier: Sacrifice Y1 Pistachio\nMove R3 Intership Rootbier\n\n45) Teo: Move Y2 Rootbier Knuckles\n\n46) rootbier: Move Y1 Knuckles Rootbier\n\n47) Teo: Build R1 Intership\n\n48) rootbier: Trade R3 G3 Rootbier\n\n49) Teo: Build R2 Teo\n\n50) rootbier: Discover R1 Rootbier Y2 Resignation\n\n51) Teo: Trade R1 Y1 Intership\n\n52) rootbier: Trade Y1 R1 Rootbier\n\n53) Teo: Trade R3 Y3 Teo\n\n54) rootbier: Build G1 Rootbier\n\n55) Teo: Build Y1 Intership\n\n56) rootbier: Sacrifice G3 Rootbier\nBuild G2 Rootbier\nBuild R2 Resignation\nBuild R3 Rootbier\n\n57) Teo: Sacrifice Y3 Teo\nMove Y1 Intership Rootbier\nMove Y1 Intership Rootbier\nMove Y2 Knuckles Rootbier\nCatastrophe Rootbier Y\n\n58) rootbier: Trade G1 Y1 Rootbier\n\n59) Teo: Build R2 Intership\n\n60) rootbier: Trade R1 B1 Rootbier\n\n61) Teo: Trade G1 Y1 Teo\n\n62) rootbier: Move R3 Rootbier Intership\n\n63) Teo: Build R1 Intership\nCatastrophe Intership R\n\n64) rootbier: Discover R2 Resignation Y3 Focus\n\n65) Teo: Build B2 Intership\n\n66) rootbier: Move R2 Focus Intership\n\n67) Teo: Sacrifice Y1 Teo\nMove B2 Intership Rootbier\n\n68) rootbier: Sacrifice R1 Resignation\nAttack B2 Rootbier\n\n69) Teo: Build B2 Intership\n\n70) rootbier: Trade B1 R1 Rootbier\n\n71) Teo: Build R1 Teo\n\n72) rootbier: Attack B2 Intership\n\n73) Teo: Build B1 Intership\n\n74) rootbier: Build B3 Rootbier\n\n75) Teo: Trade R1 Y1 Teo\n\n76) rootbier: Sacrifice R2 Intership\nAttack B1 Intership\nAttack B1 Intership\n\n77) Teo: Build R1 Teo\n\n78) rootbier: Sacrifice B2 Rootbier\nTrade B2 Y2 Intership\nTrade B3 G3 Rootbier\n\n79) Teo: Build Y1 Teo\n\n80) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Intership\nBuild Y2 Intership\nBuild Y3 Rootbier\n\n81) Teo: Discover Y1 Teo G3 Upside\n\n82) rootbier: Trade Y2 R2 Intership\n\n83) Teo: Trade R2 B2 Teo\n\n84) rootbier: Discover Y2 Intership R3 Bonus\n\n85) Teo: Build Y2 Teo\n\n86) rootbier: Sacrifice Y3 Rootbier\nMove G2 Rootbier Bonus\nMove G2 Bonus Teo\nMove Y2 Bonus Teo\n\n87) Teo: Attack G2 Teo\n\n88) rootbier: Sacrifice R2 Intership\nAttack R1 Teo\nAttack G2 Teo\n\n89) Teo: Sacrifice Y2 Teo\nMove B2 Teo Upside\nMove B2 Upside Rootbier\n\n90) rootbier: Attack Y1 Teo\n\n\nHomeworlds Online (SDG# 16239)\nStarted: 2010.4.30, Ended: 2010.5.14\nParticipants: ringebri (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld Y1 G2 B3\n\tringebri: I guess it&#39;s your first move.  I looked at an archive game, step by step.  Still not sure exactly how to do this but will give it a try.\n\n2) ringebri: Homeworld G1 B2 Y3\n\tMagicJohn: Here goes....\n\tMagicJohn: Here goes....  Isn&#39;t krepy going to try it?\n\tringebri: Forgot to ask him.  He&#39;s staying at Wendy&#39;s until Saturday.\n\n3) MagicJohn: Build B1 Magicjohn (n)\n\tringebri: Certainly is a colorful game!\n\n4) ringebri: Build Y1 Ringebri\n\tMagicJohn: Finally figured out how to construct a ship!!!! It was &quot;build b1 MagicJohn (N)\n\tMagicJohn: Forgot the end quotes...\n\n5) MagicJohn: Build B1 Magicjohn (n)\n\tringebri: my command was &quot;build y1 ringebri&quot;.  No seating designation.\n\n6) ringebri: Build Y1 Ringebri\n\tringebri: I&#39;ll try to play this one from home. Cell play not good.\n\n7) MagicJohn: Build B1 Magicjohn\n\n8) ringebri: Build Y2 Ringebri\n\n9) MagicJohn: Trade B1 G1 Magicjohn\n\n10) ringebri: Build Y2 Ringebri\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) ringebri: Trade Y2 B2 Ringebri\n\n13) MagicJohn: Build G2 Magicjohn\n\n14) ringebri: Build B1 Ringebri\n\n15) MagicJohn: Discover G1 Magicjohn R3 Patches1\n\n16) ringebri: Discover Y2 Ringebri G3 Buffy1\n\n17) MagicJohn: Build G2 Patches1\n\tringebri: We both discovered dog stars!\n\tMagicJohn: Canis you ever be Sirius?\n\n18) ringebri: Build Y2 Buffy1\n\n19) MagicJohn: Build G3 Patches1\n\n20) ringebri: Build Y2 Buffy1\n\n21) MagicJohn: Move B1 Magicjohn Patches1\n\n22) ringebri: Build Y3 Ringebri\n\tMagicJohn: Have you heard of the MIM? It&#39;s a new (as in just constructed)250 million dollar - 190,000-square foot Musical Instrument Museum. It&#39;s acquired 12,000 instruments so far. Thought you might be interested.\n\n23) MagicJohn: Trade G1 R1 Patches1\nCatastrophe Ringebri Y\n\tringebri: Sounds interesting. Where is it? What an orchestra that would be!\n\n24) ringebri: Trade B1 Y1 Ringebri\n\tMagicJohn: \n\tMagicJohn: Global warming perhaps? : }\n\tringebri: So. A catastrophe wiped out all my beautiful yellow ships! How dasterdly! And you&#39;ve got an attack ship ready to pounce. I&#39;ll look at this later at home.\n\n25) MagicJohn: Trade G1 Y1 Magicjohn\n\n26) ringebri: Build Y3 Ringebri\n\n27) MagicJohn: Move Y1 Magicjohn Buffy1\nCatastrophe Buffy1 Y\n\n28) ringebri: Trade B2 R2 Ringebri\n\tMagicJohn: Maybe if you monitored your CO2 emissions........\n\tringebri: Woof!  Wimper! I didn&#39;t see that coming.\r\n\n\n29) MagicJohn: Trade G3 R3 Patches1\n\n30) ringebri: Move R2 Ringebri Patches1 Catastrophe Patches1 Red\n\n31) MagicJohn: Attack R2 Patches1\n\n32) ringebri: Trade Y3 R3 Ringebri\nCatastrophe Patches1 Red\n\n33) MagicJohn: Build G1 Magicjohn\n\tringebri: I&#39;m so sorry! I&#39;ll call the president.  Maybe he&#39;ll send in the national guard to help out!\n\tMagicJohn: You killed Patches. The President Hell,  I&#39;m calling the ASPCA. \n\n34) ringebri: Trade Y1 G1 Ringebri\n\n35) MagicJohn: Discover G1 Magicjohn B3 Patches2\n\n36) ringebri: Build G2 Ringebri\n\n37) MagicJohn: Trade G2 Y2 Magicjohn\n\n38) ringebri: Build R1 Ringebri\n\n39) MagicJohn: Move Y2 Magicjohn Patches2\n\n40) ringebri: T G2 Y2 Ringebri D Y2 Ringebri Y3 Buffy2\n\n41) MagicJohn: Trade B3 R3 Magicjohn\n\n\n42) ringebri: Discover Y2 Ringebri Y3 Buffy2\n\n43) MagicJohn: Trade Y2 R2 Patches2\n\n44) ringebri: Trade R3 Y3 Ringebri\n\n45) MagicJohn: Move R3 Magicjohn Buffy2\n\n46) ringebri: Build G2 Ringebri\n\n47) MagicJohn: Attack Y2 Buffy2\n\n48) ringebri: Build R1 Ringebri\n\n49) MagicJohn: Build B1 Magicjohn\n\n50) ringebri: Build Y1 Ringebri\n\n51) MagicJohn: Trade B1 Y1 Magicjohn\n\n52) ringebri: Move G1 Ringebri Buffy2\n\n53) MagicJohn: Attack G1 Buffy2\n\tringebri: uh-oh!  bad guys here!\n\n54) ringebri: Trade G2 R2 Ringebri\n\tMagicJohn: Not bad guys, simply superior beings.\n\n55) MagicJohn: Build R1 Buffy2\n\tringebri: Beings with big heads, you mean.\n\n56) ringebri: Move R2 Ringebri Patches2\n\tMagicJohn: ET had a big head and he was cute!\n\n57) MagicJohn: Attack R2 Patches2\n\tringebri: &quot;Where no man has gone before!&quot; &quot;I see a patchesite!&quot;\n\n58) ringebri: Build Y2 Ringebri\n\n59) MagicJohn: Move Y2 Buffy2 Ringebri\nCatastrophe Ringebri Y\n\n60) ringebri: Trade R1 Y1 Ringebri\n\tringebri: Aaaaaahhh!  the suffering and pain!\n\n61) MagicJohn: Move R3 Buffy2 Ringebri\n\tMagicJohn: Remember, you are responsible for an entire civilization..... no matter how backwards they may be.\n\n62) ringebri: Construct R1 Ringebri\n\n63) MagicJohn: Attack Y1 Ringebri\n\tringebri: My people are very apprehensive. Doom is in the atmosphere.\n\n64) ringebri: Construct R2 Ringebri\n\n65) MagicJohn: Build R3 Buffy2\nCatastrophe Ringebri Red\n\tringebri: Hmmm. We&#39;re dead. Ok.\n\n\nHomeworlds Online (SDG# 15947)\nStarted: 2010.5.3, Ended: 2010.5.4\nParticipants: jims (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 R2 G3 *\n\n\tts52: Have a good game.\n\nHomeworlds Online (SDG# 16258)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.3, Ended: 2010.6.22\nParticipants: SilentTitan (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B1 R3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n11) agentofchaos: Discover Y1 Agentofchaos G3 Invictus\n\n12) SilentTitan: Discover G1 Sol Y3 Sole\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) SilentTitan: Build G1 Sole\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) agentofchaos: Build Y2 Invictus\n\n18) SilentTitan: Discover Y1 Silenttitan G2 Soul\n\n19) agentofchaos: Trade Y1 B1 Agentofchaos\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) agentofchaos: Build B2 Agentofchaos\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sole Agentofchaos\nMove G1 Sole Agentofchaos\n\n23) agentofchaos: Trade G3 Y3 Agentofchaos\n\n24) SilentTitan: Trade G1 R1 Agentofchaos\n\n25) agentofchaos: Move R1 Agentofchaos Invictus\n\n26) SilentTitan: Build R1 Agentofchaos\n\n27) agentofchaos: Attack G1 Agentofchaos\n\n28) SilentTitan: Trade R1 Y1 Agentofchaos\n\n29) agentofchaos: Attack Y1 Agentofchaos\n\n30) SilentTitan: Trade G3 Y3 Silenttitan\n\n31) agentofchaos: Attack R1 Agentofchaos\n\n32) SilentTitan: Build Y2 Silenttitan\n\n33) agentofchaos: Trade B2 G2 Agentofchaos\n\n34) SilentTitan: Trade Y2 B2 Silenttitan\n\n35) agentofchaos: Discover G2 Agentofchaos Y3 Plasmore\n\n36) SilentTitan: Build Y2 Silenttitan\n\n37) agentofchaos: Build R1 Agentofchaos\n\n38) SilentTitan: Build G1 Silenttitan\n\n39) agentofchaos: Build R2 Invictus\n\n40) SilentTitan: Discover G1 Silenttitan Y2 Flash\n\n41) agentofchaos: Build B2 Agentofchaos\n\n42) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover G1 Flash B3 Sump\nMove Y1 Soul Sump\n\n43) agentofchaos: Move B2 Agentofchaos Sump\n\n\tSilentTitan: good game.. Thanks\n\nHomeworlds Online (SDG# 16250)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.4, Ended: 2010.5.14\nParticipants: captncavern (S), jonaskoelker (N)\nWinner: captncavern\n\n1) jonaskoelker: Homeworld B1 R2 G3\n\n2) captncavern: Homeworld G3 B1 Y3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) captncavern: Build Y1 Captncavern\n\n\tjonaskoelker: I forgot to play AGAIN? :(  Seems to happen a lot these days.  I&#39;m sorry.\r\n\n\tcaptncavern: Well, you lost it, so it doesn&#39;t really matter to me ;)\r\nIf you care about the ratings, however, maybe Aaron can cancel this game...\n\tjonaskoelker: Nah, the ratings don&#39;t matter (that) much; it&#39;s more the fact that I can&#39;t seem to stick to playing homeworlds.  No need to cancel the game.  And why aren&#39;t you disappointed---did you play to win and not to play? :O ;-)\n\tcaptncavern: Oh... well, If you look at my rating for Homeworlds, you&#39;ll see that I&#39;m not playing this game for the ratings ;) I love the game, but I really can&#39;t get my head around it.\r\n\r\nI&#39;m actually (a little) more serious about Ordo, with the tournament going on right now and a chance to get the game from Nestorgames :)\n\nHomeworlds Online (SDG# 16095)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.6, Ended: 2010.5.13\nParticipants: Jesse (S), rootbier (N)\nWinner: Jesse\n\n1) rootbier: Homeworld B2 Y1 G3\n\n2) Jesse: Homeworld R1 B3 G3\n\trootbier: Impressive record.\r\nI&#39;ll try to give you some challenge.\n\n3) rootbier: Build G1 Rootbier\n\tJesse: Thanks.  Have a good game.\n\n4) Jesse: Build G1 Jesse\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) rootbier: Build G1 Rootbier\n\n8) Jesse: Build Y1 Jesse\n\n9) rootbier: D G1 Rootbier B3 Bagatelle\n\n10) Jesse: Build Y2 Jesse\n\n11) rootbier: Build R1 Rootbier\n\n12) Jesse: Discover Y2 Jesse B2 Eggplanet\n\n13) rootbier: Build R2 Rootbier\n\n14) Jesse: Sacrifice G3 Jesse\nBuild Y2 Eggplanet\nBuild Y2 Eggplanet\nBuild Y3 Jesse\n\n15) rootbier: Discover R2 Rootbier Y3 Aubergine\n\n16) Jesse: Trade Y2 R2 Eggplanet\n\n17) rootbier: Discover R1 Rootbier Y3 Mainfest\n\trootbier: that&#39;s the second time i&#39;ve moved when i should have traded for yellow. color control! :)\n\n18) Jesse: Trade Y3 G3 Jesse\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild R2 Aubergine\nBuild R3 Mainfest\nBuild R3 Rootbier\n\n20) Jesse: Sacrifice G3 Jesse\nBuild Y2 Eggplanet\nBuild Y3 Jesse\nBuild R3 Eggplanet\n\tJesse: Yellow freeze out is especially painful, if you can&#39;t find a way out of it.\n\n21) rootbier: Discover R3 Mainfest B1 Pony\n\trootbier: I&#39;m not sure why I am using this game (against super-pro you) to try new things. :)\n\n22) Jesse: Trade Y2 G2 Eggplanet\n\n23) rootbier: Discover R1 Mainfest B2 Typo\n\n24) Jesse: Discover R2 Eggplanet Y3 Check\n\n25) rootbier: Trade R1 B1 Rootbier\n\n26) Jesse: Build Y2 Eggplanet\n\trootbier: trying to bluebird me :D\n\n27) rootbier: Move B1 Rootbier Aubergine\n\tJesse: I&#39;d rather not catch you with your pants down on that one, hence the warning in the system name.  Defending keeps you busy so I can grab that y2 back up again, though.\n\n28) Jesse: Build R1 Eggplanet\n\n29) rootbier: Discover R2 Aubergine G2 Pesto\n\n30) Jesse: Sacrifice Y3 Jesse\nMove R3 Eggplanet Check\nMove R3 Check Rootbier\nMove R2 Check Rootbier\n\n31) rootbier: Sacrifice R2 Aubergine\nAttack R2 Rootbier\nAttack R3 Rootbier\n\n32) Jesse: Sacrifice Y2 Eggplanet\nMove R1 Eggplanet Aubergine\nMove R1 Aubergine Rootbier\nCatastrophe Rootbier R\n\trootbier: might as well at least go out owning the ships :P\n\n\trootbier: thanks for the game. i learned a valuable lesson (which i have already used once against a friend face-to-face)\n\tJesse: Thanks for the game.\n\nHomeworlds Online (SDG# 16276)\nStarted: 2010.5.7, Ended: 2010.8.7\nParticipants: rootbier (S), Mandrel (N)\nWinner: rootbier\n\n1) Mandrel: Homeworld B2 R1 G3\n\tMandrel: Have a good game!\n\n2) rootbier: Homeworld B1 Y3 G3\n\trootbier: You&#39;re the first to take my standing challenge :) Have a good one yourself :)\n\n3) Mandrel: Build G1 Mandrel\n\n4) rootbier: Build G1 Rootbier\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) rootbier: Trade G1 R1 Rootbier\n\n7) Mandrel: Build Y1 Mandrel\n\n8) rootbier: Build R1 Rootbier\n\n9) Mandrel: Build G1 Mandrel\n\n10) rootbier: Trade R1 Y1 Rootbier\n\n11) Mandrel: Build Y2 Mandrel\n\n12) rootbier: Build Y2 Rootbier\n\n13) Mandrel: Discover Y1 Mandrel G3 Queasy\n\n14) rootbier: Trade Y1 B1 Rootbier\n\n15) Mandrel: Build Y1 Mandrel\n\n16) rootbier: Discover Y2 Rootbier G2 Pesto\n\n17) Mandrel: T Y1 B1 Mandrel\n\n18) rootbier: Build B2 Rootbier\n\n19) Mandrel: Build B2 Mandrel\n\n20) rootbier: Discover B1 Rootbier Y2 Stone\n\n21) Mandrel: M B2 Mandrel Queasy\n\n22) rootbier: Move B2 Rootbier Pesto\n\n23) Mandrel: Build B3 Queasy\n\n24) rootbier: Build B3 Pesto\n\n25) Mandrel: Trade B3 R3 Queasy\n\n26) rootbier: Discover B2 Pesto R3 Ungarn\n\n27) Mandrel: Move R3 Queasy Stone\n\n28) rootbier: Move B1 Stone Queasy\n\n29) Mandrel: Move B1 Mandrel Queasy\n\n30) rootbier: Build G1 Rootbier\n\n31) Mandrel: Move B1 Queasy Stone\n\n32) rootbier: Sacrifice Y2 Pesto\nMove B2 Ungarn Mandrel\nMove B1 Queasy Mandrel\n\n33) Mandrel: Sacrifice R3 Stone\nAttack B1S Mandrel\nAttack B2S Mandrel\nPass\n\n34) rootbier: Discover G1 Rootbier G2 Posthaste\n\n35) Mandrel: Build Y1 Queasy\n\n36) rootbier: Build B3 Pesto\n\trootbier: If I had a plan when I made that last move - I&#39;ve since forgotten it. Thanks for your patience while I was away.\n\n37) Mandrel: Sacrifice G1 Mandrel\nBuild B3 Stone\n\tMandrel: No worries! Often have the same thing, a move that seemed part of some grand plan that I can&#39;t remember a few days later.\n\n38) rootbier: Trade B3 Y3 Pesto\n\n39) Mandrel: Trade B2 R2 Mandrel\n\n40) rootbier: Build B2 Pesto\n\n41) Mandrel: Trade B3 R3 Stone\n\n42) rootbier: Trade B3 R3 Pesto\n\n43) Mandrel: Move B2 Queasy Posthaste\n\n44) rootbier: Move B2 Pesto Queasy\n\n45) Mandrel: S Y1 Queasy\nMove Y1 Queasy Posthaste\n\n46) rootbier: Build B3 Queasy\n\n47) Mandrel: M B1 Mandrel Queasy\n\n48) rootbier: Trade B2 R2 Queasy\n\n49) Mandrel: Build B2 Posthaste\n\n50) rootbier: Build G1 Rootbier\n\n51) Mandrel: T B2 R2 Posthaste\n\n52) rootbier: Sacrifice G3 Rootbier\nBuild G1 Posthaste\nBuild G2 Posthaste\nBuild G3 Rootbier\nCatastrophe Posthaste G\n\n53) Mandrel: Build G1 Mandrel\n\n54) rootbier: Build R1 Queasy\n\n55) Mandrel: Discover R2 Mandrel Y3 Hollow\n\n56) rootbier: Move R3 Pesto Hollow\n\trootbier: btw. it&#39;s your turn on our four-(now three)-way game. http://superdupergames.org/main.html?page=play_homeworlds&amp;num=16201 i think the turn reporting might be messed up with that other player out.\n\n57) Mandrel: M R2 Hollow Stone\n\tMandrel: Cheers, I&#39;d almost forgotten about that game at all\n\n58) rootbier: Move R1 Rootbier Stone\n\n59) Mandrel: Sacrifice B1 Stone\nTrade R2 G2 Stone\n\n60) rootbier: Sacrifice G3 Rootbier\nBuild R2 Stone\nBuild R2 Stone\nBuild R3 Hollow\nCatastrophe Stone R\n\n61) Mandrel: M G2 Stone Rootbier\n\n62) rootbier: Move Y3 Pesto Rootbier\n\n63) Mandrel: Build G1 Rootbier\n\n64) rootbier: Sacrifice R2 Queasy\nAttack G1 Rootbier\nAttack G2 Rootbier\n\trootbier: Welcome to rootbier. Can I take your order?\n\n65) Mandrel: T G1 R1 Mandrel\n\n66) rootbier: Trade G2 Y2 Rootbier\n\tMandrel: Nothing for me thank you, just popping in briefly.\n\trootbier: At rootbier we have and enforce a chain-wide $10.00 minimum order policy. I&#39;m afraid I have to ask you to either order or kindly leave the establishment.\n\n67) Mandrel: Build Y1 Mandrel\n\n68) rootbier: Sacrifice Y2 Rootbier\nMove B3 Queasy Mandrel\nMove R3 Hollow Mandrel\n\n69) Mandrel: B R2 Mandrel\nC Mandrel Red\n\tMandrel: Fair enough, i&#39;ll bear that in mind on any future visits.\n\n70) rootbier: Sacrifice R3 Hollow\nAttack G3 Mandrel\nAttack Y2 Mandrel\nAttack Y1 Mandrel\n\n71) Mandrel: T Y1 R1 Mandrel\n\n72) rootbier: Sacrifice R1 Queasy\nAttack R1 Mandrel\n\n\trootbier: Thanks for the game. Grab my standing if you want a rematch.\n\tMandrel: Good game, well played.\n\nHomeworlds Online (SDG# 16201)\nStarted: 2010.5.8, Ended: 2010.12.4\nParticipants: rootbier (S), Mandrel (W), radio414 (N), zoltar (E)\nWinner: zoltar\n\n1) radio414: Homeworld B2 R1 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) rootbier: Homeworld Y1 B3 G3\n\n4) Mandrel: Homeworld B1 R2 G3\n\n5) radio414: Build G1 Radio414\n\n6) zoltar: Build G1 Zoltar\n\n7) rootbier: Build G1 Rootbier\n\n8) Mandrel: Build G1 Mandrel\n\n9) radio414: Trade G1 Y1 Radio414\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n11) rootbier: Trade G1 R1 Rootbier\n\trootbier: last man standing is it?\n\n12) Mandrel: Trade G1 Y1 Mandrel\n\n13) radio414: Build G1 Radio414\n\tMandrel: Yeah, that&#39;s the default setting for 3+ players.\n\n14) zoltar: Build G1 Zoltar\n\n15) rootbier: Build G1 Rootbier\n\n16) Mandrel: B G1 Mandrel\n\n17) radio414: Trade G1 B1 Radio414\n\n18) zoltar: Trade G1 B1 Zoltar\n\n19) rootbier: Trade G1 Y1 Rootbier\n\n20) Mandrel: Build Y2 Mandrel\n\n21) radio414: Build Y2 Radio414\n\n22) zoltar: Build Y2 Zoltar\n\n23) rootbier: Build Y2 Rootbier\n\n24) Mandrel: D Y2 Mandrel G3 Recovery\n\n25) radio414: Build G1 Radio414\n\n26) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n27) rootbier: Discover Y2 Rootbier B2 Aubergine\n\n28) Mandrel: Trade G1 R1 Mandrel\n\n29) radio414: Build B1 Radio414\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y3 Zoltar\nBuild Y3 Zoltar\n\n31) rootbier: Discover Y2 Aubergine G3 Pesto\n\n32) Mandrel: Build Y3 Recovery\n\n33) radio414: Trade Y1 R1 Radio414\n\n34) zoltar: Sacrifice Y2 Zoltar\nMove Y2 Greenpea Recovery\nMove Y1 Greenpea Recovery\nCatastrophe Recovery Y\n\n35) rootbier: Build G1 Rootbier\n\n36) Mandrel: Build G1 Mandrel\n\n37) radio414: Trade B1 Y1 Radio414\n\n38) zoltar: Trade Y3 G3 Zoltar\n\n39) rootbier: Trade G1 B1 Rootbier\n\n40) Mandrel: Discover G1 Mandrel Y3 Anxiety\n\n41) radio414: Discover Y2 Radio414 B3 Nothing\n\n42) zoltar: Discover B1 Zoltar G1 Greenpea\n\n43) rootbier: Discover Y1 Rootbier B2 Serendipity\n\n44) Mandrel: Build G1 Anxiety\n\n45) radio414: Move G1 Radio414 Nothing\n\n46) zoltar: Build B1 Greenpea\n\n47) rootbier: Move Y1 Serendipity Greenpea\n\n48) Mandrel: Build G1 Mandrel\n\n49) radio414: Build G2 Nothing\n\n50) zoltar: Build B2 Greenpea\n\n51) rootbier: Sacrifice Y2 Pesto\nDiscover B1 Rootbier R2 Nong\nMove B1 Nong Greenpea\nCatastrophe Greenpea B\n\n52) Mandrel: Build G2 Anxiety\n\n53) zoltar: Build G2 Zoltar\n\n54) rootbier: Build G2 Rootbier\n\n55) Mandrel: Discover G1 Anxiety B2 Empty\n\n56) zoltar: Discover G3 Zoltar B1 Blueberry\n\n57) rootbier: Trade G2 Y2 Rootbier\n\n58) Mandrel: Build G2 Empty\n\n59) zoltar: Build G2 Blueberry\n\n60) rootbier: Build G3 Rootbier\n\n61) Mandrel: Trade G2 Y2 Empty\n\n62) zoltar: Sacrifice G3 Blueberry\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n63) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Greenpea\nBuild G3 Rootbier\nBuild R1 Rootbier\n\n64) Mandrel: B Y2 Empty\n\n65) zoltar: Move Y3 Zoltar Blueberry\n\n66) rootbier: Sacrifice Y2 Rootbier\nMove G3 Rootbier Empty\nMove Y2 Greenpea Nothing\n\n67) Mandrel: B Y2 Mandrel\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Blueberry\n\n69) rootbier: Build Y3 Greenpea\n\n70) Mandrel: M G1 Anxiety Radio414\n\n71) zoltar: Trade G2 R2 Blueberry\n\n72) rootbier: Build G2 Rootbier\n\n73) Mandrel: S Y2 Empty\nMove Y2 Empty Rootbier\nMove G1 Empty Rootbier\n\n74) zoltar: Sacrifice Y3 Blueberry\nMove G2 Blueberry Empty\nMove G2 Empty Rootbier\nMove R2 Blueberry Nothing\nCatastrophe Rootbier G\n\n75) rootbier: Sacrifice Y1 Greenpea\nMove G3 Empty Rootbier\n\n76) Mandrel: Move R1 Mandrel Anxiety\n\n77) zoltar: Attack Y2S Nothing\n\n78) Mandrel: B R2 Anxiety\n\n79) zoltar: Attack G2N Nothing\n\n80) Mandrel: Attack R1N Radio414\n\n81) zoltar: Attack G1N Nothing\n\n82) Mandrel: Attack Y1N Radio414\n\tzoltar: rootbier: are you back from your mega-business tour yet?\n\n83) zoltar: Move Y3 Blueberry Anxiety\n\n84) Mandrel: Sacrifice Y2 Mandrel\nMove R2 Anxiety Greenpea\nMove G2 Anxiety Greenpea\n\n85) zoltar: Sacrifice Y3 Zoltar\nMove G1 Nothing Mandrel\nMove G2 Nothing Mandrel\nMove Y3 Anxiety Mandrel\nCatastrophe Mandrel G\n\n86) Mandrel: Move R1 Anxiety Mandrel\n\n87) zoltar: Sacrifice R2 Nothing\nAttack Y1W Mandrel\nAttack R1W Mandrel\n\n\tMandrel: eep.\n\tzoltar: Yeah, the Y3 is the most dangerous ship in the game, when it comes to sacrificing.\n\nHomeworlds Online (SDG# 16244)\nStarted: 2010.5.8, Ended: 2010.6.9\nParticipants: zoltar (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\tMandrel: Have a good game.\n\n3) Mandrel: Build G1 Mandrel\n\n4) zoltar: Build G1 Zoltar\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Mandrel: Build G1 Mandrel\n\n8) zoltar: Build G1 Zoltar\n\n9) Mandrel: Trade G1 R1 Mandrel\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) Mandrel: Build R2 Mandrel\n\n12) zoltar: Build R2 Zoltar\n\n13) Mandrel: Build G1 Mandrel\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) Mandrel: D G1 Mandrel Y3 Grim\n\n16) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n17) Mandrel: Build G1 Mandrel\n\n18) zoltar: Sacrifice Y1 Zoltar\nMove R2 Greenbelt Grim\n\n19) Mandrel: Trade R2 Y2 Mandrel\n\n20) zoltar: Attack G1 Grim\n\n21) Mandrel: Trade G1 B1 Mandrel\n\n22) zoltar: Build B2 Zoltar\n\n23) Mandrel: Build R1 Mandrel\n\n24) zoltar: Trade B2 Y2 Zoltar\n\n25) Mandrel: Discover R1 Mandrel G3 Sleep\n\n26) zoltar: Build R2 Grim\n\n27) Mandrel: Build R2 Sleep\n\n28) zoltar: Sacrifice Y2 Zoltar\nMove R2 Grim Mandrel\nMove R2 Grim Mandrel\nCatastrophe Mandrel R\n\n29) Mandrel: Sacrifice Y1 Mandrel\nDiscover R2 Sleep B2 Disappointment\n\n30) zoltar: Build G1 Zoltar\n\n31) Mandrel: Trade R2 B2 Disappointment\n\n32) zoltar: Sacrifice B1 Zoltar\nTrade G1 B1 Grim\n\n33) Mandrel: Build G1 Mandrel\n\n34) zoltar: Sacrifice G1 Zoltar\nBuild B3 Grim\n\n35) Mandrel: Sacrifice Y2 Mandrel\nMove G3 Mandrel Zoltar\nMove G1 Mandrel Zoltar\n\n\tzoltar: Oh, I forgot about that. My blowing up your star was terribly premature and a standard beginners&#39; mistake, and I realized I was lost after I did that and should&#39;ve known better. I used to do better, but these days I&#39;ve been losing every game these days, except the 4-player games. Good Game.\n\tMandrel: Thanks for the game, still quite new to it, thought I&#39;d lost when my star went, and was convinced I&#39;d overlooked something in the last move, Good game!\n\nHomeworlds Online (SDG# 16210)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.8, Ended: 2010.5.9\nParticipants: dlwillson (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 16298)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.8, Ended: 2010.5.18\nParticipants: zoltar (S), SilentTitan (N)\nWinner: zoltar\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) zoltar: Build G1 Zoltar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) zoltar: Build G1 Zoltar\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Swing\n\n10) zoltar: Discover G1 Zoltar B2 Bluemoon\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) zoltar: Build G2 Bluemoon\n\n13) SilentTitan: Build G2 Silenttitan\n\n14) zoltar: Trade G1 R1 Bluemoon\n\n15) SilentTitan: Discover G2 Silenttitan G3 Loaner\n\n16) zoltar: Build G1 Zoltar\n\n17) SilentTitan: Discover G1 Silenttitan R3 Wastenot\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bluemoon\nBuild G3 Zoltar\nBuild R1 Bluemoon\n\n19) SilentTitan: Sacrifice G2 Loaner\nBuild G2 Silenttitan\nBuild G3 Swing\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n21) SilentTitan: Trade G3 Y3 Silenttitan\n\n22) zoltar: Sacrifice Y2 Zoltar\nMove G2 Bluemoon Swing\nMove G2 Bluemoon Swing\nCatastrophe Swing G\n\n23) SilentTitan: Build Y2 Silenttitan\n\n24) zoltar: Build Y2 Zoltar\n\n25) SilentTitan: Discover Y1 Silenttitan B3 Simple\n\n26) zoltar: Move Y1 Zoltar Bluemoon\n\n27) SilentTitan: Trade Y2 R2 Silenttitan\n\n28) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) zoltar: Move G1 Zoltar Bluemoon\n\n31) SilentTitan: Discover G2 Silenttitan G3 Whippy\n\n32) zoltar: Discover R1 Bluemoon G3 Greengiant\n\n33) SilentTitan: Move R2 Silenttitan Simple\n\n34) zoltar: Build G2 Zoltar\n\n35) SilentTitan: Sacrifice G2 Whippy\nBuild G2 Wastenot\nBuild G3 Silenttitan\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Bluemoon\nBuild R3 Greengiant\n\n37) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover Y1 Simple B2 Ablaze\nDiscover G2 Wastenot Y2 Ablare\nDiscover G1 Wastenot Y2 Ablame\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Zoltar\n\n39) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Ablaze\nBuild R3 Simple\nBuild G3 Silenttitan\n\n40) zoltar: Sacrifice Y3 Bluemoon\nMove G3 Zoltar Greenbelt\nMove G3 Greenbelt Greengiant\nMove G3 Greengiant Silenttitan\n\n\tSilentTitan: good game ... thanks\n\tzoltar: gg -- I didn&#39;t see the win until the last move. I was aware you were vulnerable with only green in your homeworld, and my plan had been to sacrifice a Y2 to move my G1 from bluemoon into your homeworld to create a threat, but then I realized I can just put the large green in now, and you lose if you capture it and you lose if you don&#39;t. Your one defense was to sacrifice the Y3 to bring your own g1 back to your homeworld and blow up the greens, but use the other two moves of the sacrifice to bring your R3 and Y1 back as well: you&#39;d still be alive, but down in material, and then I could sacrifice my other Y3 to move two red pieces to your homeworld and blow up your R3 and red star. That game got really exciting and was close to the end!\n\nHomeworlds Online (SDG# 16047)\nStarted: 2010.5.8, Ended: 2010.5.23\nParticipants: zoltar (S), dethdukk (N)\nWinner: zoltar\n\n1) dethdukk: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) zoltar: Build G1 Zoltar\n\n\nHomeworlds Online (SDG# 16297)\nStarted: 2010.5.8, Ended: 2010.5.18\nParticipants: Teo (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B3 R1 G3\n\tTeo: homeworld b1 v2 y3\n\tTeo: oh I have to wait for you...\n\n2) Teo: Homeworld B1 G2 Y3\n\n3) rootbier: Build G1 Rootbier\n\n4) Teo: Build Y1 Teo\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) Teo: Trade Y1 G1 Teo\n\n7) rootbier: Build Y1 Rootbier\n\n8) Teo: Build G1 Teo\n\n9) rootbier: Trade Y1 R1 Rootbier\n\n10) Teo: Trade G1 B1 Teo\n\n11) rootbier: Build R1 Rootbier\n\n12) Teo: Build G1 Teo\n\n13) rootbier: Discover R1 Rootbier B2 Springless\n\n14) Teo: Trade Y3 R3 Teo\n\n15) rootbier: Build Y1 Rootbier\n\n16) Teo: Build R2 Teo\n\n17) rootbier: Build Y1 Rootbier\n\n18) Teo: Trade R2 Y2 Teo\n\n19) rootbier: Discover Y1 Rootbier G2 Special\n\n20) Teo: Build Y2 Teo\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Special\nBuild Y3 Rootbier\nBuild R2 Springless\n\n22) Teo: Build R2 Teo\n\n23) rootbier: Discover Y1 Rootbier G2 Optimal\n\n24) Teo: Discover Y2 Teo R3 Sun\n\n25) rootbier: Build Y3 Optimal\n\n26) Teo: Build Y3 Teo\n\n27) rootbier: Trade Y3 G3 Rootbier\n\n28) Teo: Move G1 Teo Sun\n\n29) rootbier: Discover Y1 Special B3 Noteworthy\n\n30) Teo: Move Y3 Teo Sun\n\n31) rootbier: Trade Y1 G1 Noteworthy\n\n32) Teo: Build G3 Sun\n\n33) rootbier: Build G3 Noteworthy\n\n34) Teo: Move Y3 Sun Springless\n\n35) rootbier: Sacrifice G3 Noteworthy\nBuild G3 Noteworthy\nBuild Y1 Special\nBuild Y3 Rootbier\n\n36) Teo: Move G1 Sun Springless\n\n37) rootbier: Sacrifice Y2 Special\nMove G1 Noteworthy Teo\nMove G3 Noteworthy Teo\nCatastrophe Teo G\n\n38) Teo: Trade B1 G1 Teo\n\n39) rootbier: Trade Y3 B3 Rootbier\n\n40) Teo: Trade R2 B2 Teo\n\n41) rootbier: Build Y2 Special\n\n42) Teo: Build Y3 Teo\n\n43) rootbier: Sacrifice B3 Rootbier\nTrade Y2 B2 Special\nTrade Y1 B1 Special\nTrade Y1 B1 Optimal\n\n\nHomeworlds Online (SDG# 16314)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.8, Ended: 2010.6.2\nParticipants: zoltar (S), jeep (N)\nWinner: zoltar\n\n1) jeep: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) jeep: Build G1 Jeep\n\tjeep: b g1 jeep\n\tjeep: heh, oops. My last two games have been small universes and I didn&#39;t notice until a couple moves in. This time, I actually looked at the starting position. ;)\n\n4) zoltar: Build G1 Zoltar\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) jeep: Build G1 Jeep\n\n8) zoltar: Build G1 Zoltar\n\n9) jeep: Trade G1 B1 Jeep\n\n10) zoltar: Build G1 Zoltar\n\n11) jeep: Build B1 Jeep\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) jeep: Discover B1 Jeep G3 Builder\n\n14) zoltar: Build R1 Zoltar\n\n\tzoltar: As usual, I think I&#39;m utterly lost from the start. I&#39;m almost ready to resign already. I think you can get all the blue pieces and I can&#39;t stop you\n\tjeep: Well, that became my plan. Monopolize blue... We&#39;ll see how it goes. I&#39;m baffled by your &quot;as usual&quot; statement. Aren&#39;t you (at least) one of the top rated players on SDG? You can&#39;t be in this situation too often. And you can&#39;t be talking about games against me... I don&#39;t think I&#39;ve beat you at Homeworlds. Or, is it the &quot;think&quot; part that is important? Do you always start off thinking you are losing, but win anyways? ;) \n\tzoltar: .\r\nI tend to get the worst of it in openings, even though I often play better and catch up in the middle. I whine the most with TwoShort, who beats me every game (I managed to beat him once a long time ago). So I do pull out of these situations, but I find myself in them with much lower-rated players. I&#39;m always playing catch-up, it seems. This one seems especially bad. I can get reds, but you&#39;ll get blues first. I&#39;m just surprised that I&#39;m continuing my streak of getting far behind in the opening. Anyway, it&#39;s nice to be playing you again. \n\tzoltar: Very good plan, btw, to get the advantage in blues right away, especially as they are the most easily cashed in for other colors, as you don&#39;t need a blue star or a sacrifice, as you do with the others. I&#39;ll have to try to get creative.\n\tzoltar: What the?  Damn, as I felt you had the upper hand, I was looking forward to try to catch up and play my best. I guess there&#39;s nothing I can do if it&#39;s set to &#39;hard time&#39;. Oh well.\n\tjeep: *sigh* sorry. I just got too busy. I&#39;m out of the country and have sporadic internet. When I had access, I didn&#39;t have time to play. :(\n\nHomeworlds Online (SDG# 16301)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.9, Ended: 2010.5.27\nParticipants: dlwillson (S), zoltar (N)\nWinner: dlwillson\n\n1) zoltar: Homeworld R3 B1 G3\n\n2) dlwillson: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) dlwillson: B G1 Dlwillson\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) zoltar: Build Y1 Zoltar\n\n8) dlwillson: Build B1 Dlwillson\n\n9) zoltar: Build Y2 Zoltar\n\n10) dlwillson: Discover B1 Dlwillson G3 Farmville\n\n11) zoltar: Trade Y2 B2 Zoltar\n\tdlwillson: good to see you again, z. hope you&#39;re well.\n\n12) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Farmville\nBuild B3 Farmville\nBuild B3 Dlwillson\n\n13) zoltar: Build B3 Zoltar\n\n14) dlwillson: Trade B3 Y3 Farmville\n\n15) zoltar: Discover B2 Zoltar G2 Greenbelt\n\tzoltar: nice to see you again too!\r\n\n\n16) dlwillson: Trade B3 G3 Dlwillson\n\tzoltar: never seen so much blue so early before!\n\n17) zoltar: Build B3 Greenbelt\n\tdlwillson: Let&#39;s put some back then! ;-)\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Farmville\nBuild Y2 Farmville\nBuild B3 Dlwillson\n\n19) zoltar: Sacrifice B2 Greenbelt\nTrade B3 Y3 Greenbelt\nTrade Y1 R1 Zoltar\n\tzoltar: Wow. I think I&#39;m going to take a long time out here and come back to this position tomorrow. It&#39;s pretty interesting, and I see 3 interesting moves I can make.\n\n20) dlwillson: Sacrifice B2 Farmville\nTrade B3 G3 Dlwillson\nTrade Y2 R2 Farmville\n\n21) zoltar: Move B3 Zoltar Greenbelt\n\n22) dlwillson: B G1 Dlwillson\n\n23) zoltar: Build G1 Zoltar\n\n24) dlwillson: Build B2 Farmville\n\n25) zoltar: Build B2 Greenbelt\n\n26) dlwillson: Sacrifice Y2 Farmville\nMove B1 Farmville Greenbelt\nMove B2 Farmville Greenbelt\nCatastrophe Greenbelt B\n\n27) zoltar: Trade G1 B1 Zoltar\n\tdlwillson: And now, there&#39;s hardly any blue anywhere... I&#39;m sad. No wait, I&#39;m blue... :-)\n\n28) dlwillson: Move B1 Dlwillson Farmville\n\n29) zoltar: Move B1 Zoltar Greenbelt\n\n30) dlwillson: Trade G1 R1 Dlwillson\n\n31) zoltar: Build B2 Greenbelt\n\n32) dlwillson: Build R1 Farmville\n\n33) zoltar: Trade B2 R2 Greenbelt\n\n34) dlwillson: Discover R1 Farmville B2 Cafeworld\n\n35) zoltar: Discover R1 Zoltar Y2 Yellowstone\n\n36) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Cafeworld\nBuild R3 Farmville\nBuild R3 Dlwillson\n\n37) zoltar: Move R1 Yellowstone Farmville\n\n38) dlwillson: Move B1 Farmville Dlwillson\n\tdlwillson: Excellent move! I have to think some more...\n\tzoltar: Well, not as good as your &#39;factory&#39; move, where you got a free large red ship: I had to try to do something in response and not just be a whole large ship behind.\n\n39) zoltar: Move R2 Greenbelt Farmville\nCatastrophe Farmville R\n\tdlwillson: Excellent move, like I said. Let&#39;s see if I can recover.\n\n40) dlwillson: T B1 R1 Dlwillson\n\tdlwillson: Is that what you meant to do?\n\tzoltar: No, it wasn&#39;t. My position is lost probably, but somehow it didn&#39;t catastrophe; I thought I added that.\n\n41) zoltar: Build B1 Greenbelt\n\n42) dlwillson: Move Y3 Farmville Greenbelt\n\n43) zoltar: Build Y1 Greenbelt\n\n44) dlwillson: Sacrifice R2 Cafeworld\nAttack B1 Greenbelt\nAttack B1 Greenbelt\n\n\tzoltar: Yeah, I&#39;m lost. Good game.\n\tdlwillson: Good game, Zoltar. I look forward to playing you again, anytime. You&#39;re a good opponent.\n\nHomeworlds Online (SDG# 16315)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.9, Ended: 2010.6.24\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Danner: Homeworld B1 G2 R3\n\tDanner: Hi! Good luck!\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build R1 Danner\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) Danner: Trade R3 Y3 Danner\n\n7) TwoShort: Build R2 Twoshort\n\n8) Danner: Build R2 Danner\n\n9) TwoShort: Trade R2 Y2 Twoshort\n\n10) Danner: Build R2 Danner\n\n11) TwoShort: Build R2 Twoshort\n\n12) Danner: Trade R2 G2 Danner\n\n13) TwoShort: Discover R2 Twoshort G3 Grogar\n\n14) Danner: Move Y3 Danner Grogar\n\n15) TwoShort: Build R2 Twoshort\n\n16) Danner: Sacrifice R1 Danner\nAttack R2N Grogar\n\n17) TwoShort: Discover R1 Twoshort G3 Gonzo\n\n18) Danner: Build G1 Danner\n\n19) TwoShort: Build G1 Twoshort\n\n20) Danner: Trade G1 Y1 Danner\n\n21) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n22) Danner: Move G2 Danner Yolonda\n\n23) TwoShort: Build G1 Twoshort\n\tDanner: Sorry for not making moves lately. I&#39;m in exam period, and the situation is not easy in the game either.\n\tTwoShort: No problem.\n\n24) Danner: Build Y1 Danner\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n26) Danner: Discover Y1 Danner R3 Builder\nCatastrophe Yolonda G\n\n27) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort Gonzo\nMove G3 Gonzo Danner\n\n28) Danner: Build Y1 Danner\n\n29) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Danner\nAttack Y1 Danner\n\tDanner: Yeah, I hoped you won&#39;t notice it. I risked it because I didn&#39;t have much chance anyway.\n\n30) Danner: Sacrifice Y3 Grogar\nMove Y1 Builder Danner\nMove R2 Grogar Danner\nPass\n\tDanner: I think that things have gone wrong because I didn&#39;t manage to get a Y2 long time ago.\n\tTwoShort: Great game.  I was feeling pretty cornered all the way up to a couple moves ago.\n\n31) TwoShort: Sacrifice G3 Danner\nBuild Y2 Danner\nBuild R1 Danner\nBuild R2 Danner\nCatastrophe Danner Yellow\nCatastrophe Danner Red\n\n\tDanner: One more turn :)\n\tTwoShort: Nope :)\n\tDanner: Yeah :D\r\nThx for the game :)\n\nHomeworlds Online (SDG# 16316)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.10, Ended: 2010.5.12\nParticipants: dlwillson (S), makertron (N)\nWinner: dlwillson\n\n1) makertron: Homeworld B1 R3 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\n\tdlwillson: I hope you noticed that the timing is pretty tight on my standing challenge... You only get about a day per move, buildable to 10 days.\n\nHomeworlds Online (SDG# 16306)\nStarted: 2010.5.10, Ended: 2012.2.27\nParticipants: makertron (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) makertron: Homeworld Y1 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) makertron: Build G1 Makertron\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) makertron: Trade G1 R1 Makertron\n\n7) rootbier: Build Y2 Rootbier\n\n8) makertron: Build G1 Makertron\n\n9) rootbier: Discover Y2 Rootbier B3 Palpate\n\n10) makertron: Discover G1 Makertron B3 Homeworld\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Palpate\nBuild Y2 Palpate\nBuild Y3 Rootbier\n\n12) makertron: Trade G3 Y3 Makertron\n\n13) rootbier: Sacrifice Y2 Palpate\nMove Y2 Palpate Makertron\nMove Y2 Palpate Makertron\nCatastrophe Makertron Y\n\n14) makertron: Trade R1 G1 Makertron\n\n15) rootbier: Trade Y3 G3 Rootbier\n\n16) makertron: Build G1 Makertron\n\n17) rootbier: Build Y1 Rootbier\n\n18) makertron: Build G2 Makertron\n\n19) rootbier: Discover Y1 Rootbier B3 Bolus\n\n\trootbier: poke.\n\nHomeworlds Online (SDG# 16156)\nStarted: 2010.5.10, Ended: 2010.6.2\nParticipants: ZackStack (S), makertron (N)\nWinner: ZackStack\n\n1) makertron: Homeworld B1 R3 G3\n\n2) ZackStack: Homeworld B2 R1 G3\n\tZackStack: Thanks for the challenge!  Have a good game.\n\n\nHomeworlds Online (SDG# 16228)\nStarted: 2010.5.10, Ended: 2010.5.13\nParticipants: makertron (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 16322)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.10, Ended: 2010.5.12\nParticipants: dlwillson (S), makertron (N)\nWinner: dlwillson\n\n1) makertron: Homeworld R3 B1 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\n\tdlwillson: why did you start two games exactly the same way\n\tdlwillson: Makertron, my standing challenge is hard time, and only allows about a day per turn. You might want to take a turn.\n\nHomeworlds Online (SDG# 16321)\nStarted: 2010.5.11, Ended: 2010.5.14\nParticipants: radio414 (S), makertron (N)\nWinner: radio414\n\n\nHomeworlds Online (SDG# 31739)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.4.21, Ended: 2017.4.27\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) wil: H Y2 B1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n6) wil: T G1 R1 Wil\n\n7) Draw5PlayAll: Build B1 Draw5playall\n\n8) wil: B R1 Wil\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) wil: B R2 Wil\n\n11) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\twil: Somebody has left these cruise missiles everywhere...they must be good for something.\n\n12) wil: D R1 Wil B3 B3\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) wil: S G3 Wil\nB R2 B3\nB R2 B3\nB R3 Wil\n\n15) Draw5PlayAll: Build B2 G2\n\n16) wil: D R2 Wil G3 G3\n\n17) Draw5PlayAll: Build B2 Draw5playall\n\n18) wil: T R3 G3 Wil\n\n19) Draw5PlayAll: Discover B1 Draw5playall Y2 Y2\n\n20) wil: S G3 Wil\nB R3 Wil\nB R3 G3\nB R3 Wil\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B2 Y2\nBuild B3 Draw5playall\nBuild Y1 Draw5playall\n\n22) wil: D R3 Wil Y3 Y3\n\n23) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n24) wil: M R3 Y3 Y2\n\n25) Draw5PlayAll: Build B3 G2\n\tDraw5PlayAll: Permission to resign?\n\n26) wil: Attack B2 Y2\n\twil: Any time, but i am not clear it is that bad.. this is such a game of capitalizing on mistakes...\n\n\tDraw5PlayAll: See, you even have blue now.\n\nHomeworlds Online (SDG# 16343)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.12, Ended: 2010.7.15\nParticipants: face (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) face: Homeworld R3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) face: Build G1 Face\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) face: Trade G3 Y3 Face\n\n7) dlwillson: Build G1 Dlwillson\n\n8) face: Build Y1 Face\n\n9) dlwillson: B R1 Dlwillson\n\n10) face: Trade Y1 B1 Face\n\n11) dlwillson: Build R1 Dlwillson\n\n12) face: Build Y1 Face\n\n13) dlwillson: Discover R1 Dlwillson B2 Potato\n\n14) face: Discover Y1 Face B1 Smash\n\n15) dlwillson: Discover R1 Dlwillson Y2 Meat\n\n16) face: Build Y1 Face\n\n17) dlwillson: S G3 Dlwillson\nB R2 Meat\nB R2 Meat\nB R2 Potato\n\n18) face: Trade Y3 R3 Face\n\n19) dlwillson: Build R3 Dlwillson\n\n20) face: Build Y2 Face\n\n21) dlwillson: M R2 Meat Smash\n\n22) face: Discover Y1 Smash G3 Waste\n\n23) dlwillson: T R3 Y3 Dlwillson\n\n24) face: Trade R3 Y3 Face\n\n25) dlwillson: B R3 Dlwillson\n\n26) face: Discover Y2 Face G1 Trash\n\n27) dlwillson: Build R3 Dlwillson\n\n28) face: Build Y2 Waste\n\n29) dlwillson: M Y3 Dlwillson Potato\n\n30) face: Build Y3 Trash\n\n31) dlwillson: T R3 G3 Dlwillson\n\n32) face: Move B1 Face Trash\n\n33) dlwillson: S G1 Dlwillson\nB R3 Smash\n\n34) face: Discover Y2 Trash G3 Tank\n\n35) dlwillson: M R3 Dlwillson Meat\n\n36) face: Build B1 Trash\n\n37) dlwillson: Move R3 Meat Smash\n\n38) face: Discover Y1 Waste G2 Plaster\n\n39) dlwillson: S Y3 Potato\nM R3 Smash Face\nM R3 Smash Face\nPass\n\n40) face: Discover Y2 Tank G2 Blitz\n\n41) dlwillson: Sacrifice R3 Face\nAttack Y3 Face\nAttack Y1 Face\nAttack G1 Face\n\n\nHomeworlds Online (SDG# 16361)\nStarted: 2010.5.13, Ended: 2010.5.21\nParticipants: rootbier (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Have a good game!  And don&#39;t forget to count your ships before you attack ;-)\n\n2) rootbier: Homeworld R1 B3 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) rootbier: Build G1 Rootbier\n\n5) ZackStack: Trade G1 R1 Zackstack\n\trootbier: here&#39;s where i see my first mistake and you put me in a temporary red freeze\n\trootbier: though now i think i know a good way out of color control freeze-out -- i haven&#39;t gotten to use it yet - but it ought to work just fine\n\tZackStack: Well... since you asked so nicely :-)\n\n6) rootbier: Build G1 Rootbier\n\n7) ZackStack: Build R2 Zackstack\n\n8) rootbier: Trade G1 Y1 Rootbier\n\n9) ZackStack: Trade R2 Y2 Zackstack\n\n10) rootbier: Trade G1 B1 Rootbier\n\n11) ZackStack: Build R2 Zackstack\n\n12) rootbier: Discover B1 Rootbier Y2 Falls\n\n13) ZackStack: Discover R2 Zackstack B3 Saphire\n\n14) rootbier: Build Y1 Rootbier\n\n15) ZackStack: Sacrifice G3 Zackstack\nBuild R2 Saphire\nBuild R2 Saphire\nBuild R3 Zackstack\n\n16) rootbier: Discover Y1 Rootbier Y2 Otter\n\tZackStack: Guess I&#39;m feeling kind of warlike this game...\n\trootbier: guess i pushed you that way - setting up the red freeze on myself\n\trootbier: but don&#39;t worry - it&#39;s intimidating nonetheless\n\n17) ZackStack: Trade R3 G3 Zackstack\n\n18) rootbier: Discover B1 Falls R3 Bell\n\tZackStack: Don&#39;t get me wrong... I do appreciate it :-)\n\trootbier: i do have to get past the &quot;intimidation&quot; and figure out what makes sense -- that much red is stressful\n\n19) ZackStack: Move Y2 Zackstack Bell\n\n20) rootbier: Sacrifice B1 Bell\nTrade Y1 G1 Otter\n\tZackStack: I understand how you feel.  I got pummelled by a red rush a few games ago :-/\n\n21) ZackStack: Build R3 Zackstack\n\n22) rootbier: Build Y1 Rootbier\n\trootbier: i&#39;m definitely low on clever ideas here\n\n23) ZackStack: Trade R2 Y2 Saphire\n\tZackStack: I had a clever idea once... it didn&#39;t work out particularly well :-)\n\n24) rootbier: Trade Y1 B1 Rootbier\n\n25) ZackStack: Move R2 Saphire Otter\n\n26) rootbier: Discover G1 Otter B1 Olive\n\n27) ZackStack: Trade R3 Y3 Zackstack\n\n28) rootbier: Trade G1 Y1 Olive\n\n29) ZackStack: Sacrifice G3 Zackstack\nBuild R2 Zackstack\nBuild R3 Otter\nBuild R3 Otter\n\tZackStack: sacrifice g3 zackstack\r\nbuild r2 zackstack\r\nbuild r3 otter\r\nbuild r3 otter\n\tZackStack: Oops. \n\n30) rootbier: Sacrifice G3 Rootbier\nBuild Y1 Olive\nBuild Y3 Rootbier\nBuild B1 Rootbier\n\n31) ZackStack: Sacrifice Y2 Saphire\nMove R3 Otter Rootbier\nMove R3 Otter Rootbier\n\trootbier: greenless universe\n\tZackStack: Very strange.  I don&#39;t think I&#39;ve ever seen that before...\n\n\tZackStack: I would like you to know that I am humming &quot;Vader&#39;s Theme&quot; right now ;-)\n\trootbier: you mean the imperial march?\n\trootbier: do over :P\n\tZackStack: Rematch indeed! :-)\n\nHomeworlds Online (SDG# 16323)\nStarted: 2010.5.16, Ended: 2010.6.19\nParticipants: rootbier (S), MagicJohn (N)\nWinner: rootbier\n\n1) MagicJohn: Homeworld G1 B2 R3\n\n2) rootbier: Homeworld B3 Y1 G3\n\n3) MagicJohn: Build R1 Magicjohn\n\n4) rootbier: Build G1 Rootbier\n\trootbier: Thanks for taking the challenge. Have a good game.\n\tMagicJohn: This is my second game of HW.  I&#39;m looking forward to seeing new approaches and strategies. Have a good game.\n\n5) MagicJohn: Trade R1 Y1 Magicjohn\n\trootbier: welcome to the game. i just flicked through the first few moves of your first (didn&#39;t know I could do that didja? :))\r\n\r\nand i&#39;ll tell you one thing that definitely won&#39;t work -- building four of the same color straight out like both you and ringebri did - it is possible to call catastrophes from all the way across the universe - rengebri could have beat you without doing anything on just his fourth move-- you could have done it to him on your fifth and sixth\r\n\r\nso. good plan on your next is trade. then start building up again. getting up to size 2 ships won&#39;t help if they can all just be catastrophied away. :)\r\n\r\ni&#39;m no super pro but i&#39;ve been playing a bunch lately and getting better - ask along the way if you have questions or concerns\n\n6) rootbier: Trade G1 Y1 Rootbier\n\trootbier: I flipped through a bit more of the game. I see you started to get the catastrophe&#39;s after a bit. They are far and away the most dangerous part of the game. Attacking is more or a defensive threat than anything. Best of luck :)\n\n7) MagicJohn: Build Y2 Magicjohn\n\n8) rootbier: Build Y2 Rootbier\n\n9) MagicJohn: Discover Y1 Magicjohn R3 Patches\n\n10) rootbier: Discover Y1 Rootbier G2 Pickle\n\n11) MagicJohn: Build R1 Magicjohn\n\n12) rootbier: Discover Y2 Rootbier B2 Aubergine\n\n13) MagicJohn: Move R1 Magicjohn Patches\n\n14) rootbier: Build G1 Rootbier\n\n15) MagicJohn: Build Y2 Magicjohn\n\n16) rootbier: Build Y3 Pickle\n\n17) MagicJohn: Build Y3 Magicjohn\n\n18) rootbier: Sacrifice Y2 Aubergine\nMove Y1 Pickle Patches\nMove Y1 Patches Magicjohn\nCatastrophe Magicjohn Y\n\n19) MagicJohn: Build R1 Magicjohn\n\n20) rootbier: Trade G1 R1 Rootbier\n\n21) MagicJohn: Trade R1 Y1 Magicjohn\n\tMagicJohn: I wondered if you would sacrifice two ships to destroy three. Found out.....\n\trootbier: you also have to consider the size of the ships - i lost a 1 and a 2 - you lost 2 2s and a 3. so yeah - i calc that as worth it.\n\n22) rootbier: Move Y3 Pickle Patches\n\n23) MagicJohn: Build Y2 Magicjohn\n\tMagicJohn: Kinda screws up my logistics too.\n\n24) rootbier: Attack Y1 Patches\n\trootbier: That&#39;s vague -- but yeah -- losing a technology will slow you down.\r\n\r\nBe careful here. Minimize your losses.\n\n25) MagicJohn: Trade Y1 G1 Magicjohn\n\n26) rootbier: Discover Y1 Patches G2 Pickle\n\n27) MagicJohn: Build Y1 Magicjohn\n\n28) rootbier: Build G1 Rootbier\n\n29) MagicJohn: Discover Y1 Magicjohn B3 Terra Yoda\n\n30) rootbier: Build G2 Rootbier\n\n31) MagicJohn: Build Y2 Magicjohn\n\n32) rootbier: Discover G2 Rootbier B2 Olive\n\n33) MagicJohn: Move Y2 Magicjohn Terra\n\n34) rootbier: Sacrifice G3 Rootbier\nBuild G2 Rootbier\nBuild G3 Rootbier\nBuild G3 Olive\n\n35) MagicJohn: Build G3 Magicjohn\n\tMagicJohn: Sorry about the time-warp. I was trying to make the game do something it objected to. Had to re-read the rules. Didn&#39;t know that all actions resulting from a sacrifice had to correspond to the color of the sacrificed ship.\n\n36) rootbier: Sacrifice Y3 Patches\nMove G2 Olive Patches\nMove G2 Patches Magicjohn\nDiscover G3 Olive B3 Bakeware\nCatastrophe Magicjohn G\n\trootbier: Did we time-warp? OOH!\r\nI&#39;m unclear-- did you think sacrifice was &quot;Do whatever the heck you want!&quot; or... did you think it just meant &quot;Take X number of legal actions.&quot;?\n\n37) MagicJohn: Trade Y2 G2 Magicjohn\n\tMagicJohn: &quot;B&quot;\n\n38) rootbier: Trade G2 Y2 Rootbier\n\n39) MagicJohn: Move Y1 Terra Pickle\n\n40) rootbier: Discover Y2 Rootbier B2 Porcelain\n\n41) MagicJohn: Build G1 Magicjohn\n\n42) rootbier: Trade G1 B1 Rootbier\n\n43) MagicJohn: Move Y2 Terra Magicjohn\n\n44) rootbier: M Y1 Pickle Bakeware\n\n45) MagicJohn: Build Y2 Magicjohn\n\n46) rootbier: Sacrifice G3 Bakeware\nBuild Y3 Bakeware\nBuild Y3 Porcelain\nBuild B1 Rootbier\n\n47) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y2 Magicjohn Rootbier\nMove Y1 Pickle Rootbier\n\n48) rootbier: Sacrifice Y2 Porcelain\nMove B1 Rootbier Magicjohn\nMove B1 Rootbier Magicjohn\n\n49) MagicJohn: Sacrifice G1 Magicjohn\nBuild Y2 Rootbier\nCatastrophe Rootbier Yellow\n\tMagicJohn:  I know experienced players have an advantage...... but the system making excuses for you, geez......  :  )  Final exams in process.    Been there, done that, no fun. \n\n50) rootbier: Sacrifice G3 Rootbier\nBuild B1 Magicjohn\nBuild B2 Magicjohn\nBuild B3 Magicjohn\nCatastrophe Magicjohn B\n\tMagicJohn: Aha!  Discovered life forms in the universe.\n\n\tMagicJohn: Kind of a &quot;Spite Check&quot;.  BP must be at work on rootbier as well as TP.  Perhaps I could have captured a couple of blue ships and flown them out next turn, but this was more fun. \n\tMagicJohn: Thanks for the game....... learned a lot\n\trootbier: We&#39;ll do another one after I am back from this conference thing next Monday.\n\tMagicJohn: OK\n\nHomeworlds Online (SDG# 16393)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.17, Ended: 2010.6.21\nParticipants: radio414 (S), jonaskoelker (N)\nWinner: jonaskoelker\n\n1) jonaskoelker: Homeworld R1 B2 G3\n\n2) radio414: Homeworld B3 R1 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) radio414: Build G1 Radio414\n\n5) jonaskoelker: Trade G1 R1 Jonaskoelker\n\n6) radio414: Trade G3 R3 Radio414\n\n7) jonaskoelker: Build R2 Jonaskoelker\n\n8) radio414: Build R2 Radio414\n\n9) jonaskoelker: Trade R2 Y2 Jonaskoelker\n\n10) radio414: Trade R3 G3 Radio414\n\n11) jonaskoelker: Build R2 Jonaskoelker\n\n12) radio414: Build R2 Radio414\n\n13) jonaskoelker: Discover R2 Jonaskoelker Y3 Big_yellow\n\n14) radio414: Trade R2 Y2 Radio414\n\n15) jonaskoelker: Build R2 Jonaskoelker\n\n16) radio414: Build Y1 Radio414\n\n17) jonaskoelker: Discover R2 Jonaskoelker B3 Big_blue\n\n18) radio414: Discover Y2 Radio414 B2 Not_so_big_blue\n\n19) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild R3 Jonaskoelker\nBuild R3 Big_yellow\nBuild R3 Big_blue\n\n20) radio414: Move R2 Radio414 Not_so_big_blue\n\n21) jonaskoelker: Trade R3 G3 Jonaskoelker\n\n\tjonaskoelker: I hope you have some good tricks up your sleeve ;-)\n\nHomeworlds Online (SDG# 16379)\nStarted: 2010.5.17, Ended: 2010.5.17\nParticipants: AdamBadura (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G1 B2 Y3\n\n2) AdamBadura: Homeworld B1 G2 R3\n\tgoulo: Hi!\n\n3) goulo: Build Y1 Goulo\n\tAdamBadura: Hi!\n\tAdamBadura: Sorry for the delay but SuperDuperGames emails got into spam so I found them today.\n\n4) AdamBadura: Build R1 Adambadura\n\tgoulo: I wondered if the email got lost like that. :)\n\tgoulo: I am amused that our homesystems are named &quot;goulo&quot; and &quot;AdamBadura&quot;. They could both sound sort of like science fiction star system names. :)\n\n5) goulo: Build Y1 Goulo\n\n6) AdamBadura: Build R1 Adambadura\n\n7) goulo: Trade Y1 R1 Goulo\n\tAdamBadura: I wonder how this game will end... This time I plan to use a different approach. But I guess you will win anyway... ;)\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\n9) goulo: Discover Y1 Goulo G3 Austin\n\n10) AdamBadura: Move R1 Adambadura Austin\n\n11) goulo: Move Y1 Austin Goulo\n\tAdamBadura: Why there are so many spectators here? Do those people really follow the game or they just came once by accident?\n\tgoulo: I think they just set some setting so that they automatically watch every game that starts.\r\n\r\nBy the way, if your &quot;new approach&quot; was &quot;hope that Russ does something stupid&quot;, it&#39;s working OK so far. I didn&#39;t pay attention that both our homesystems connect to large stars...\n\n12) AdamBadura: Move R3 Adambadura Austin\n\n13) goulo: Trade Y3 R3 Goulo\n\n14) AdamBadura: Build Y1 Adambadura\n\n15) goulo: Build Y2 Goulo\n\n16) AdamBadura: Move Y1 Adambadura Austin\n\n17) goulo: Sacrifice Y2 Goulo\nMove R3 Goulo Austin\nMove R3 Austin Adambadura\n\n18) AdamBadura: Build Y2 Adambadura\n\tAdamBadura: No. Nooooooooooo!!! How didn&#39;t I see that coming?! I must be really stupid. Especially that I remebered about this trick and I tried to prevent it.\n\n19) goulo: Attack Y2 Adambadura\n\tAdamBadura: From my current observation the main problem in this game is when to allow your oponent to build 2 ship and which should it be. And this time I failed to time it properly... ;)\n\n\tgoulo: It&#39;s only fair; I made a mistake earlier, so then you made a mistake. :)\n\tAdamBadura: No point in continuing. I will lose it. I must produce a ship each turn so you will not win by capturing my last ship. But I can produce only yellow ships and after making forth in this solar system you will make catastroph and leave me with no ships...\n\tgoulo: Technically, you could also move your red ships back home, but I think that will not work out much better. :)\n\tAdamBadura: I could have moved my small red ship back and count on your mistake to capture the yellow one rather than the red one and to not sacrifice the large ship. If you did so than I could produce red ships and the catastrophe would free me of your attack. It would be even quite good situation. But it is doubtfull you would make that.\n\nHomeworlds Online (SDG# 16387)\nVariants: &quot;Unrated&quot;\nStarted: 2010.5.17, Ended: 2010.8.11\nParticipants: radio414 (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld G1 B2 Y3\n\n2) radio414: Homeworld B3 R1 G3\n\twmreed: Hi Felix!\n\n3) wmreed: Build Y1 Wmreed\n\n4) radio414: Build G1 Radio414\n\tradio414: Hi Bill\n\n5) wmreed: Trade Y1 G1 Wmreed\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) wmreed: Build Y1 Wmreed\n\n8) radio414: Build Y1 Radio414\n\n9) wmreed: Discover Y1 Wmreed B3 Gandalf\n\n10) radio414: Build Y2 Radio414\n\tradio414: Gandalf? Really?\n\n11) wmreed: B G1 Wmreed\n\n12) radio414: Build G2 Radio414\n\twmreed: Why not?\n\n13) wmreed: Move G1 Wmreed Gandalf\n\n14) radio414: Trade Y1 R1 Radio414\n\n15) wmreed: B G2 Gandalf\n\n16) radio414: Discover G2 Radio414 Y2 Eagle\n\n17) wmreed: Trade G1 R1 Gandalf\n\n18) radio414: Build G1 Radio414\n\n19) wmreed: B R2 Gandalf\n\n20) radio414: Build R2 Radio414\n\n21) wmreed: Move R2 Gandalf Wmreed\n\n22) radio414: Trade R1 B1 Radio414\n\n23) wmreed: B R1 Gandalf\n\n24) radio414: Build G2 Eagle\n\n25) wmreed: Build G3 Gandalf\n\tradio414: Wrong ship, and wrong system. Oops\n\n26) radio414: Sacrifice Y2 Radio414\nMove G2 Eagle Gandalf\nMove G2 Eagle Gandalf\nCatastrophe Gandalf G\n\n27) wmreed: Build G2 Wmreed\n\n28) radio414: Build G2 Radio414\n\tradio414: Those eagles must have been comin&#39;\n\n29) wmreed: Move G2 Wmreed Gandalf\n\n30) radio414: Discover G2 Radio414 B2 Bobadil\n\n31) wmreed: Build G2 Gandalf\n\n32) radio414: Trade R2 Y2 Radio414\n\n33) wmreed: Move G2 Gandalf Bobadil\n\n\twmreed: Are we still playing?\n\nHomeworlds Online (SDG# 16397)\nStarted: 2010.5.17, Ended: 2010.5.18\nParticipants: goulo (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld B3 G2 R3\n\n2) goulo: Homeworld G1 B2 Y3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: I am talking with planszoweczka Michal/meehau at bgg about ordering some more pyramids in the &#39;correct&#39; rainbow colors for this game and for RAMbots (a robot combat programming game I think you&#39;d enjoy and I want to try). :)\n\n6) goulo: Trade Y3 R3 Goulo\n\n7) AdamBadura: Build R1 Adambadura\n\tAdamBadura: If you establish anything then let me know and maybe I would join in the order.\n\n8) goulo: Build R1 Goulo\n\tgoulo: Right now the open question is whether he can get 5 Rainbow sets from rebel immediately or soon. I don&#39;t want partial (fewer than 15 pyramids in each color) sets again, that was frustrating. :) Meanwhile I am definitely ordering a full pink set. :) Also Martian Coasters. He said he orders from rebel.pl each Tuesday, so let him know before 11.00 tomorrow, it seems, or else wait a week. :) I will tell you what I learn about getting the set of 5 Rainbows.\n\n9) AdamBadura: Trade R1 B1 Adambadura\n\tAdamBadura: I thought it was more complex thus. If he just tkaes them from Rebel then he may do it any time and there is no rush for me. Thanks for info.\n\n10) goulo: Build R1 Goulo\n\tgoulo: He might get a higher discount if more people order the same thing, I don&#39;t know. :)\r\n\r\nBut right, no rush. The advantage ordering through him is no shipping costs and a possible small discount.\n\n11) AdamBadura: Build B1 Adambadura\n\n12) goulo: Trade R1 G1 Goulo\n\n13) AdamBadura: Build R1 Adambadura\n\n14) goulo: Discover R3 Goulo G3 Zarkcity\n\n15) AdamBadura: Pass\n\tAdamBadura: Let me know what price Micha&sup3; offers (can offer). 5 sets costs in Rebel ~150 and it feels a bit much. After all I could get a good game with that price while here I get a set of plastic pyrmides... ;) (My wide would not understand that too... :)) Pity that book is out in Rebel.\n\tAdamBadura: Hmmmm... You forced me into bad situation here. I wonder what should I do now.\n\n16) goulo: Build Y1 Goulo\n\n17) AdamBadura: Build Y2 Adambadura\n\tgoulo: I wonder if I would have passed also, if that would have ended the game in a tie...?\n\n18) goulo: Build Y2 Goulo\n\tAdamBadura: That is a good question. :)\n\n19) AdamBadura: Trade Y2 G2 Adambadura\n\tAdamBadura: By the way. Is this game playable with more than 2 players? I guess it is not. But I don&#39;t see technical reasons for not allowing it. There are at least 4 well distinguishable angles..\n\n20) goulo: Move Y1 Goulo Zarkcity\n\n21) AdamBadura: Build Y2 Adambadura\n\tgoulo: Yes, it can have more than 2, and I want to play it that way. (I have in real life.) The rules talk about it.\n\tAdamBadura: Did you really wanted to make this move (catastrophe!)? If not then undo it.\n\tAdamBadura: Then we can try it here or in real life sometime. I would like to experience it.\n\tgoulo: Thanks for the undo. That was indeed a lame move. :)\n\n22) goulo: Build R1 Goulo\n\tgoulo: This game is surprisingly and interestingly easy to make really bad mistakes in, considering how simple and elegant its rules are. :)\n\tgoulo: I hope to get more people in the local club interested in playing! And not just Homeworlds; I suspect some people may enjoy RAMbots (which I&#39;ve not played yet) as it seems to be similar to RoboRally but more elegant and without the randomness of card draws, just the chaos of simultaneous robot programming.\n\n23) AdamBadura: Build R2 Adambadura\n\tAdamBadura: What you told me about this game indeed seems interesting so I would gladly try it out. Saddly I tend to come less often to locla club nowadays. I prefer playing at home (either my place or Max&#39;s) - but that doesn&#39;t happen that often either.\n\n24) goulo: Build R2 Zarkcity\n\n25) AdamBadura: Discover R2 Adambadura G1 Throughtheages\n\n26) goulo: Move R3 Zarkcity Throughtheages\n\n27) AdamBadura: Move R1 Adambadura Throughtheages\n\tAdamBadura: Are we going to build all the ships before we get to real action - I wonder? :)\n\tAdamBadura: And as it comes to how easy is to make really bad mistake let me remaind you that I lost previous three games due to the same stupid mistake... ;)\n\n28) goulo: Attack R2 Throughtheages\n\n29) AdamBadura: Build R2 Throughtheages\nCatastrophe Throughtheages R\n\n30) goulo: Trade Y1 B1 Goulo\n\n31) AdamBadura: Discover B1 Adambadura Y1 Newbetterworld\n\tAdamBadura: Haven&#39;t you forseen that?\n\tgoulo: ah, clever!\n\tgoulo: No, I was thinking only that you might move your R3 from AdamBadura to ThroughTheAges. Forgot that it was a green star so you could construct there. Such a sneaky game! :)\n\n32) goulo: Build B2 Goulo\n\n33) AdamBadura: Build G1 Adambadura\n\n34) goulo: Build G2 Goulo\n\n35) AdamBadura: Move G1 Adambadura Newbetterworld\n\n36) goulo: Discover G2 Goulo R3 Tzaar\n\n37) AdamBadura: Sacrifice G2 Adambadura\nBuild G2 Newbetterworld\nBuild G3 Newbetterworld\n\n38) goulo: Sacrifice Y1 Zarkcity\nMove G2 Tzaar Newbetterworld\nCatastrophe Newbetterworld G\n\n39) AdamBadura: Trade Y1 G1 Adambadura\n\tAdamBadura: Actually I didn&#39;t plant that. When I saw your ship invade my solar system I paniced. ;) But after caliming down I thought to my self that now I have to do whatever I can. Obviously moving R3 there would be a suicide. But then I thought about moving R1 and taking advantage.\r\n\r\nAlso I think you should have instead of attacking me sacrifice Y1 or Y2 and run away. Unless you realized what was comming to you first when you actually saw it.\n\n40) goulo: Build Y1 Goulo\n\n41) AdamBadura: Build G2 Adambadura\n\n42) goulo: Discover B1 Goulo Y3 Dvonn\n\n43) AdamBadura: Move G2 Adambadura Newbetterworld\n\n44) goulo: Move Y1 Goulo Zarkcity\n\n45) AdamBadura: Build B2 Newbetterworld\n\n46) goulo: Move B2 Goulo Zarkcity\n\n47) AdamBadura: Trade B2 Y2 Newbetterworld\n\n48) goulo: Build R1 Zarkcity\n\n49) AdamBadura: Build G2 Newbetterworld\n\n50) goulo: Build B2 Zarkcity\n\n51) AdamBadura: Move G2 Newbetterworld Dvonn\n\n52) goulo: Move B2 Zarkcity Goulo\n\n53) AdamBadura: Sacrifice G2 Newbetterworld\nBuild G2 Dvonn\nBuild G3 Adambadura\n\n54) goulo: Build R2 Goulo\n\n55) AdamBadura: Sacrifice Y2 Newbetterworld\nMove G2 Dvonn Goulo\nMove G2 Dvonn Goulo\nCatastrophe Goulo G\n\n\tAdamBadura: Show them no mercy as you will receive none! KILL THEM ALL!\n\tAdamBadura: Honestly there was time (at least one my round; but I think there were few such rounds) in which I could destroy your blue technology by moving my blue ship with sacrificed yellow ship. But when I realized that it was to late becase on your turn you moved away the blue ship.\n\tAdamBadura: This game is indeed interesting.\r\n\r\nThe interactions are deep. Shared usage of stars adds much to the game.\r\n\r\nBut I think with more than 2 players it will become a little chaotic. Still I want to try it that way. Does this system allow that?\r\n\r\nI have browsed through rules briefly and saw with muylti-player there is Good/Evil and special victory conditions which do not go well with this game I guess as they introduce hidden information (but still might be interesting). This was surprising as I thought there will be &quot;one man standing&quot; mode...\n\tAdamBadura: If the RAMbots game is as interesting (and it sounds so) then I will reconsider buying pyrmids as 150 z&sup3; for two good games is fine (also the games have the advantage of taking little space and being playable in travel or similar conditions).\n\tgoulo: yes, i noticed that you had an opportunity to do a blue catastrophe a while back and was relieved that you didn&#39;t. but after i lost my 3-ship early on, it seems this game was very hard for me in any case. i see now that the 3-ship we start with must stay safe! :)\n\tgoulo: Multiplayer homeworlds in its original form has the hidden good/evil stuff (like the werewolf/mafia type games), which indeed seems strange to me too. But there is also the &quot;sinister&quot; variant, where you win by killing the player to your left. And of course there is &quot;last survivor wins&quot; variant. So no problem, just don&#39;t play the good/evil version. :)\r\n\n\tAdamBadura: Yes. I think that loosing that ship was the beginning of the end (I think you will lose if I will not make any stupid move). Its not that one definitly looses after loosing 3-ship but it is much more defence later one.\r\n\r\nNote thou that you had lots of opportunities to build a 3-ship (you still have).\n\tgoulo: if you want to play on, we can, but i think i can safely resign this game and start a new one if you like. let me know... :)\n\tgoulo: every chance i had to build a 3-ship, you could have then moved in to make a catastrophe. it was frustrating! :)\n\tAdamBadura: OK, lets play new game\n\tgoulo: congrats. :)\n\tgoulo: Not my day for playing well. I just got my butt kicked in online Hive tournament (opponent won 3 games, I won 1). Ouch!\n\nHomeworlds Online (SDG# 16259)\nStarted: 2010.5.17, Ended: 2010.5.24\nParticipants: AltF4 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) AltF4: Homeworld B3 G2 R3\n\n3) ts52: Build G1 Ts52\n\n4) AltF4: Build R1 Altf4\n\tts52: Have a good game.\n\tAltF4: thanks\n\n5) ts52: Trade G1 R1 Ts52\n\n6) AltF4: Trade R1 Y1 Altf4\n\tAltF4: you have a good game too\n\n7) ts52: Discover R1 Ts52 G3 Kermit\n\n8) AltF4: Build Y1 Altf4\n\n9) ts52: Build R1 Kermit\n\n10) AltF4: Discover Y1 Altf4 G1 Apophis\n\n11) ts52: Build G1 Ts52\n\n12) AltF4: Build Y2 Altf4\n\n13) ts52: Trade G1 B1 Ts52\n\n14) AltF4: Build Y2 Apophis\n\n15) ts52: Discover B1 Ts52 G3 Oscar\n\n16) AltF4: Move Y2 Apophis Kermit\n\n17) ts52: Build G1 Ts52\n\n18) AltF4: Build Y2 Kermit\n\n19) ts52: Build B1 Oscar\n\n20) AltF4: Build Y3 Apophis\n\tts52: Sorry about the undo. I know I&#39;m in hot water, but that would have been suicide.\n\n21) ts52: Trade B1 R1 Oscar\n\n22) AltF4: Build Y3 Kermit\n\n23) ts52: Build R2 Kermit\n\n24) AltF4: Move Y3 Kermit Ts52\n\n25) ts52: Sacrifice R1 Kermit\nAttack Y3 Ts52\n\n26) AltF4: Move Y2 Kermit Ts52\n\tAltF4: that is okay, I sometimes undo\n\n27) ts52: Trade Y3 R3 Ts52\n\n28) AltF4: Move Y2 Kermit Ts52\n\n29) ts52: Sacrifice R2 Kermit\nAttack Y2 Ts52\nAttack Y2 Ts52\n\n30) AltF4: Sacrifice Y2 Altf4\nMove Y1 Apophis Kermit\nMove Y1 Kermit Ts52\nCatastrophe Ts52 Y\n\n31) ts52: Trade G1 Y1 Ts52\n\tAltF4: how do you sacrifice\n\n32) AltF4: Build Y1 Apophis\n\n33) ts52: B Y2 Ts52\n\n34) AltF4: Build Y2 Altf4\n\n35) ts52: Move Y2 Ts52 Oscar\n\n36) AltF4: Trade Y2 B2 Altf4\n\n37) ts52: Build Y2 Ts52\n\n38) AltF4: Move B2 Altf4 Apophis\n\tAltF4: sorry I keep undoing moves\n\tts52: No problem.\n\n39) ts52: M R3 Ts52 Apophis\n\n40) AltF4: Sacrifice R3 Altf4\nAttack R3 Apophis\nPass\nPass\n\n41) ts52: Sacrifice Y2 Ts52\nMove G3 Ts52 Apophis\nMove G3 Apophis Altf4\n\n42) AltF4: Build Y2 Altf4\n\n43) ts52: Sacrifice R1 Oscar\nAttack Y2 Altf4\n\n44) AltF4: Sacrifice Y3 Apophis\nMove Y1 Apophis Altf4\nMove B2 Apophis Altf4\nPass\n\n45) ts52: Build Y2 Altf4\nCatastrophe Altf4 Yellow\n\n\nHomeworlds Online (SDG# 16365)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.17, Ended: 2010.5.30\nParticipants: SilentTitan (S), AltF4 (N)\nWinner: SilentTitan\n\n1) AltF4: Homeworld B3 G2 R3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) AltF4: Build R1 Altf4\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) AltF4: Trade R1 Y1 Altf4\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) AltF4: Build Y1 Altf4\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) AltF4: Discover Y1 Altf4 G1 Aquagoran\n\n10) SilentTitan: Trade Y2 G2 Silenttitan\n\n11) AltF4: Build Y2 Aquagoran\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) AltF4: Build Y2 Altf4\n\n14) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover G2 Silenttitan Y3 Sol\n\n15) AltF4: Discover Y2 Aquagoran R3 Theunknown\n\n16) SilentTitan: Trade Y2 G2 Silenttitan\n\n17) AltF4: Trade Y2 B2 Altf4\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G1 Sol\nBuild G3 Silenttitan\n\n19) AltF4: Build R1 Altf4\n\n20) SilentTitan: Build G3 Silenttitan\n\n21) AltF4: Discover Y1 Aquagoran G3 Gondor\n\n22) SilentTitan: Discover G1 Sol Y1 Sole\n\n23) AltF4: Move R1 Altf4 Sole\n\n24) SilentTitan: Move G1 Sole Altf4\n\n25) AltF4: Build Y2 Gondor\n\n26) SilentTitan: Trade G3 B3 Silenttitan\n\n27) AltF4: Build Y2 Altf4\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Altf4\nBuild G3 Sol\nBuild G3 Silenttitan\n\n29) AltF4: Sacrifice R3 Altf4\nAttack G1S Altf4\nAttack G1S Altf4\nPass\n\n30) SilentTitan: Move G2 Sol Sole\n\n31) AltF4: Trade G1 R1 Altf4\n\n32) SilentTitan: Sacrifice B3 Silenttitan\nTrade G3 Y3 Sol\nTrade G2 R2 Silenttitan\nPass\n\n33) AltF4: Move R1 Sole Gondor\n\n34) SilentTitan: Build G1 Silenttitan\n\n35) AltF4: Build R2 Gondor\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Sole\nBuild G3 Sol\nBuild G3 Silenttitan\n\n\nHomeworlds Online (SDG# 16405)\nStarted: 2010.5.18, Ended: 2010.5.19\nParticipants: AdamBadura (S), goulo (N)\nWinner: AdamBadura\n\n1) goulo: Homeworld Y3 G2 B3\n\n2) AdamBadura: Homeworld B3 G1 R3\n\tgoulo: I&#39;ll try a different opening for variety!\n\n3) goulo: Build B1 Goulo\n\tAdamBadura: It is a disadviced strategy. But let us see the results...\n\n4) AdamBadura: Build R1 Adambadura\n\n5) goulo: Build B1 Goulo\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) goulo: Trade B1 R1 Goulo\n\n8) AdamBadura: Build R1 Adambadura\n\n9) goulo: Trade B1 Y1 Goulo\n\n10) AdamBadura: Trade R1 G1 Adambadura\n\n11) goulo: Build B1 Goulo\n\n12) AdamBadura: Build R1 Adambadura\n\n13) goulo: Build B1 Goulo\n\n14) AdamBadura: Discover R1 Adambadura Y2 Bombay\n\n15) goulo: Trade B1 G1 Goulo\n\n16) AdamBadura: Build G2 Adambadura\n\n17) goulo: Build G2 Goulo\n\n18) AdamBadura: Move G1 Adambadura Bombay\n\n19) goulo: Discover G2 Goulo Y1 Mumbai\n\n20) AdamBadura: Build G3 Bombay\n\tAdamBadura: I read the rules which are available here. There are two things which you tought me differently (or at least I understood it so):\r\n1) You homeworld can be made up from two pieces of the same size or same color (however sam color is useless and very risky).\r\n2) While using attack action you can capture an enemy ship which is not larger than your largest ship in that system; while I thought it is that you may capture a ship which is not larger than your largest red ship in that system.\n\n21) goulo: Build G3 Mumbai\n\tgoulo: Oh, I didn&#39;t remember/know your home system could have two pieces of the same size! Interesting!\r\n\r\nThe attack information indeed changes things. I&#39;m not sure if I knew that or not. :)  This is one of those games where I find myself continually making silly errors (e.g. trying to build when I have no green, etc), so even though I &quot;know&quot; the rules theoretically, I don&#39;t &quot;know&quot; them deeply and automatically and instinctively yet. Which is interesting, because the rules really are pretty simple, yet somehow they are very mind-bending. :)\n\n22) AdamBadura: Sacrifice G3 Bombay\nBuild G3 Bombay\nBuild Y2 Adambadura\nBuild G3 Adambadura\n\tgoulo: BTW, thanks for reading and verifying the rules! :)\n\n23) goulo: Sacrifice G3 Mumbai\nBuild G3 Mumbai\nBuild R1 Goulo\nBuild Y2 Goulo\n\n24) AdamBadura: Discover G3 Adambadura B2 Newdelhi\n\tgoulo: This game feels interestingly different from the previous ones. I guess we are learning or something! :)\n\n25) goulo: Move R1 Goulo Mumbai\n\n26) AdamBadura: Sacrifice G3 Bombay\nBuild G3 Bombay\nBuild Y3 Adambadura\nBuild R2 Adambadura\n\n27) goulo: Move Y1 Goulo Mumbai\n\n28) AdamBadura: Sacrifice Y3 Adambadura\nMove G3 Bombay Mumbai\nMove G3 Mumbai Goulo\nMove G1 Bombay Mumbai\n\n29) goulo: Discover G1 Goulo B1 Varkala\n\tAdamBadura: It&#39;s time to do some action. I hope I haven&#39;t missed any alternative and that in long term it will not be a mistake.\n\n30) AdamBadura: Sacrifice R3 Adambadura\nAttack B3 Goulo\nAttack Y2 Goulo\nAttack R1 Goulo\n\n\tgoulo: Oh crap, I forgot about that whole &quot;you don&#39;t need a red ship there to capture&quot; thing. :/\n\tAdamBadura: I think you should have accepted the los of G. Now it seems you will loose the game instead. But maybe I&#39;m mistaken?\r\n\r\nWhy do you think 3 and 2 initial stars are bad?\n\tgoulo: Let&#39;s see, you have 11 ships, I have 6 ships...\n\tAdamBadura: I considered suggesting another undo but you already did one and also I didn&#39;t want to sound arrogant. :)\r\n\r\nBut if you want to we may start a new game and repeat it step by step to that point so you can chose a different approach. However it seems the situation was difficult for you anyway.\n\tAdamBadura: But I don&#39;t think the numer of ships we have has anything to do with sizes of stars we started with. Colors may do matter thou.\n\tgoulo: 3 &amp; 2 star seems bad because it really hurt my mobility to leave my star, as many of the 1-pyramids were gone when I wanted to move out.\n\tgoulo: I doubt I was going to find a way to win this game after you pulled the trigger with the double invasion and threat to catastrophe in 2 places.\n\tgoulo: BTW I just geekmailed the guy who taught me homeworlds to see if he wants to play 3-player with us. :)\n\tgoulo: And now I pause to do &quot;real world&quot; stuff. :)\n\tAdamBadura: Great! Awaiting...\n\nHomeworlds Online (SDG# 16324)\nStarted: 2010.5.19, Ended: 2010.6.9\nParticipants: AdamBadura (S), mathochist (N)\nWinner: AdamBadura\n\n1) mathochist: Homeworld R1 B2 G3\n\tmathochist: Hi there. Are you new to this game?\n\tAdamBadura: Not quite. But novious. I played 5 times.\n\n2) AdamBadura: Homeworld B3 G1 R3\n\n3) mathochist: B G1 Mathochist\n\tmathochist: I&#39;ve played about twice that many.  It&#39;s a great game, I wish I had more people to play with offline.\n\n4) AdamBadura: Build R1 Adambadura\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) mathochist: Build G1 Mathochist\n\n8) AdamBadura: Build R1 Adambadura\n\n9) mathochist: Build G1 Mathochist\n\n10) AdamBadura: Trade R1 B1 Adambadura\n\n11) mathochist: B Y1 Mathochist\n\n12) AdamBadura: Build Y2 Adambadura\n\n13) mathochist: Build Y2 Mathochist\n\n14) AdamBadura: Trade Y2 G2 Adambadura\n\n15) mathochist: Discover G1 Mathochist Y3 Cheerio\n\n16) AdamBadura: Build Y2 Adambadura\n\n17) mathochist: Sacrifice G3 Mathochist\nBuild G2 Cheerio\nBuild G2 Mathochist\nBuild G3 Mathochist\n\n18) AdamBadura: Build G3 Adambadura\n\n19) mathochist: Discover Y2 Mathochist G3 Kix\n\n20) AdamBadura: Discover G3 Adambadura B2 Thevoid\n\n21) mathochist: Sacrifice G3 Mathochist\nBuild Y2 Kix\nBuild Y3 Mathochist\nBuild G3 Mathochist\n\n22) AdamBadura: Move Y1 Adambadura Thevoid\n\n23) mathochist: Trade G1 R1 Mathochist\n\n24) AdamBadura: Build Y3 Adambadura\n\n25) mathochist: Move Y1 Mathochist Cheerio\n\n26) AdamBadura: Build G1 Adambadura\n\n27) mathochist: Sacrifice Y2 Kix\nMove G1 Cheerio Thevoid\nMove G1 Thevoid Adambadura\nCatastrophe Adambadura G\n\n28) AdamBadura: Trade G3 R3 Thevoid\n\n29) mathochist: Trade Y1 B1 Mathochist\n\n30) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Adambadura Mathochist\nMove R3 Adambadura Mathochist\n\n31) mathochist: Move B1 Mathochist Adambadura\n\tAdamBadura: A bit risky move but let us see the results... :)\n\tmathochist: well, that is a conundrum.\r\nHmm, this might take a little time.\n\tAdamBadura: I will wait... :)\n\tAdamBadura: But how long do I have to wait...?\n\tmathochist: Sorry, I had a busy start to the week and then I got sick and I&#39;ve been sleeping a lot.  I&#39;ll get back to this tomorrow (after a few more hours&#39; sleep).\n\tAdamBadura: OK No problem then...\n\n32) AdamBadura: Sacrifice R3 Thevoid\nAttack B1 Adambadura\nAttack G3 Mathochist\nAttack Y3 Mathochist\n\n33) mathochist: Build R1 Mathochist\nCatastrophe Mathochist R\n\n34) AdamBadura: Sacrifice B1 Adambadura\nTrade Y3 R3 Mathochist\n\tmathochist: Well, I had to try.\r\nOne more chance...  just to see what happens.\n\n\tAdamBadura: Yes. It seems that your next turn will be your last turn...\n\tmathochist: Yeah, you got me.  Good game!\n\nHomeworlds Online (SDG# 16421)\nVariants: &quot;Sinister&quot;\nStarted: 2010.5.19, Ended: 2010.5.23\nParticipants: zara2stra (S), goulo (N), AdamBadura (E)\nWinner: goulo\n\n1) goulo: Homeworld G1 B2 Y3\n\tAdamBadura: What are the victory conditions?\n\tzara2stra: Kill the one to the left?\n\tAdamBadura: Or be the last man standing?\n\tzara2stra: in f2f I usually play with kill the one to the left (or kill the bad/good one) because the victor of the first fight will usually be weakened and easier to attack.\n\tzara2stra: in a three player game that might lead to turtling... of course we can play LMS if you want :)\n\tAdamBadura: Hmmm... I haven&#39;t thought about the weakening aspect. Lets wait for goulo to see what he says.\n\tAdamBadura: And to establis some facts:\r\n1) zara2stra is to the left of AdamBadura,\r\n2) goulo is to the left of zara2stra\r\n3) Adam Badura is to the left of goulo\r\n\r\nright?\n\tAdamBadura: Also in case of &quot;kill the one to the left&quot; mode the winner is obvious. But what about second and third place? Is it so that eliminated player looses eliminating player wins and game continues? (In case of 3 players game only one player is left so he gets the second place.)\n\tzara2stra: Concerning the lefty compass - yes. Concerning the winner - in KTOTTL there&#39;s only the winner; the player who manages to destroy his neighbour fastest wins, the remaining players are loosers. I think that it&#39;s much nicer in the standard good/bad mode, but the standard game works best in f2f mode, and would be rather hard to pull off online.\n\tAdamBadura: There is another way in OMS mode. Untill now I only thought of two subvariants:\r\n1) All ships of eliminated player are removed from the game (but not the homeworld - after all it can contain ships of other players).\r\n2) All ships of eliminated player remain int he game as neutral (so they still can be captured or lead to overpopulation).\r\n\r\nBut there is a third subvariant which might solve the weakening problem:\r\n3) The eliminating player takes control of all ships of the elimnated player.\r\n\r\nHowever would that make him/her too strong? But on the other hand this would encourage players to try to eliminate one another ASAP.\r\n\r\nAnother question is what mode is implemented here.\n\tgoulo: Hi! I selected the &quot;sinister&quot; (kill the guy on your left) variant.\n\tgoulo: And I agree with the &quot;who&#39;s on the left&quot; summary earlier, given the north/east/south alignment we have. :)\n\n2) AdamBadura: Homeworld G3 B1 R3\n\n3) zara2stra: Homeworld G3 Y2 B3\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Build R1 Adambadura\n\n6) zara2stra: Build B1 Zara2stra\n\n7) goulo: Build Y1 Goulo\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: Does the user interface show your homesystem at the bottom, as if you were looking at a live game on a table? I.e. I see zara at the top, adam on the left, and me on the bottom. Does adam see it with zara on left, adam on bottom, and goulo on right? Or is goulo on bottom for everyone?\n\n9) zara2stra: Build B1 Zara2stra\n\tAdamBadura: I see me on bottom, goulo on right, zara2stra on left so the system is smart. And now it is easy to see whom I shall destroy :) and from who is going to attack me.\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) zara2stra: Trade B1 R1 Zara2stra\n\n13) goulo: Build R1 Goulo\n\n14) AdamBadura: Trade Y1 B1 Adambadura\n\n15) zara2stra: Discover B1 Zara2stra G1 Alphacentauri\n\n16) goulo: Build Y1 Goulo\n\tzara2stra: We come in peace :)\n\n17) AdamBadura: Discover B1 Adambadura Y2 Coldandempty\n\n18) zara2stra: Build B1 Alphacentauri\n\n19) goulo: Discover R1 Goulo G3 Verda\n\n20) AdamBadura: Trade B1 R1 Coldandempty\n\n21) zara2stra: Move R1 Zara2stra Alphacentauri\n\n22) goulo: Build R2 Verda\n\n23) AdamBadura: Build R2 Adambadura\n\tgoulo: We build in peace!\n\n24) zara2stra: Trade B1 Y1 Alphacentauri\n\n25) goulo: Move Y1 Goulo Verda\n\n26) AdamBadura: Build Y2 Adambadura\n\n27) zara2stra: Build R2 Alphacentauri\n\n28) goulo: Trade Y1 B1 Goulo\n\n29) AdamBadura: Trade Y1 B1 Adambadura\n\n30) zara2stra: Move R1 Alphacentauri Zara2stra\n\n31) goulo: Build B2 Goulo\n\n32) AdamBadura: Build B2 Adambadura\n\n33) zara2stra: Build B2 Alphacentauri\n\n34) goulo: Move B1 Goulo Verda\n\n35) AdamBadura: Trade B2 G2 Adambadura\n\n36) zara2stra: Trade B1 G1 Alphacentauri\n\n37) goulo: Build Y1 Verda\n\n38) AdamBadura: Move G2 Adambadura Coldandempty\n\n39) zara2stra: Discover B2 Alphacentauri G3 Mecatolrex\n\n40) goulo: Discover R1 Verda Y2 Flava\n\n41) AdamBadura: Move R2 Adambadura Flava\n\n42) zara2stra: Move G1 Alphacentauri Mecatolrex\n\n43) goulo: Move R1 Flava Verda\n\n44) AdamBadura: Sacrifice G2 Coldandempty\nBuild R2 Coldandempty\nBuild R3 Flava\n\n45) zara2stra: Move R2 Alphacentauri Mecatolrex\n\tAdamBadura: Its time to increase military fleet! Its time to go to war!\n\n46) goulo: Build R3 Goulo\n\n47) AdamBadura: Build R3 Adambadura\n\n48) zara2stra: Move Y1 Alphacentauri Mecatolrex\n\n49) goulo: Build Y1 Verda\n\n50) AdamBadura: Move R3 Flava Mecatolrex\n\tgoulo: Adam, you are dominating again!\r\n\r\nBTW, are either or both of you interested in a game of Volcano or Martian Chess or Branches?\n\n51) zara2stra: Sacrifice B2 Mecatolrex\nTrade R2 G2 Mecatolrex\nTrade Y1 G1 Mecatolrex\nCatastrophe Mecatolrex G\n\tAdamBadura: I prefer this to Branches however I might try again. Those other two I don&#39;t know so I would better learn them first. :)\n\tzara2stra: I never played Martian Chess nor Branches, but I used to play Volcano with my wife - it&#39;s a fun game, and I&#39;d be happy to play (although it would be best to start it during the weekend - I have a lot of work tommorow). \n\tAdamBadura: This will be a bloody game... ;)\r\n\r\nPity that except for red ships I&#39;m very weak... :)\n\tAdamBadura: goulo, we have to be careful! zara2stra is going into a very secure strategy. He wants us all to use all the 1-ships so we cannot use them as stars while invading his homeworld. We have to maintain at least one 1-size star system to terrorize him... :)\n\tAdamBadura: By the way, what are our policies for politics? :)\r\n\r\nAs it comes to me I am very pro-politics either explitly here or through private messages.\n\n52) goulo: Trade R3 G3 Goulo\n\tzara2stra: This should mess things up a little :P\n\tzara2stra: I have nothing against politics, although IMO this game really shines with the standard alignment game; there&#39;s much more room for bluff and politics.\n\tgoulo: for me the standard game seems very odd; there&#39;s simply no way to know if someone is good or evil, so it&#39;s essentially random guessing, or acting skills (like a party game like Werewolf, which I don&#39;t think of as very strategic or interesting, but maybe that&#39;s just me :)\n\n53) AdamBadura: Discover R3 Adambadura G2 Thevoid\n\n54) zara2stra: Build R2 Zara2stra\n\n55) goulo: Sacrifice G3 Goulo\nBuild R3 Goulo\nBuild R3 Verda\nBuild B1 Verda\n\tzara2stra: Goulo, you&#39;re right that the game gets a new flavour - but which one you prefer is entirely a question of preferences. Contrary to what you say there is a way to know if a certain player is good or evil. It takes a good liar to deceive other players both with what he says and what he does.   \n\tzara2stra: All good players work in a team against the bad one(s). So usually they will be much more reluctant to actually attack someone, unless they are sure that they face an evil player. Evil players on the other hand, won&#39;t care who attacks who, and won&#39;t have any second thoughts on attacking other players - they have to kill only one player and that&#39;s it. \n\tgoulo: Except how do you know who the other good players are, to work &quot;together&quot; with them? And a bad player can also work in a team against the alleged bad ones. Then if he gets a chance to be the supposedly good player who kills the supposed bad player, he wins. And if some other good player kills another good player, the bad player is OK with that result too. :)\r\n\r\nI agree there are psychological/social skills that can come into play, but it&#39;s a lot more nebulous. Usually in these kinds of games I end up with 2 different players staring at me with serious sincere faces pointing at each other and both saying &quot;Russ, I&#39;M not the evil one, HE is&quot;, and it&#39;s indistinguishable from random noise for me. Quite possibly I am simply too socially lame to do well in such games. :)\n\n56) AdamBadura: Discover R2 Flava Y1 Nothingness\n\n57) zara2stra: Build B2 Zara2stra\n\n58) goulo: Move R3 Verda Coldandempty\n\tAdamBadura: The Good/Evil mode seems indeed like Mafia game.\r\n\r\nI enjoyed that game a lot. However in this full-information-no-luck game it feels kind of wierd. But still I would gladly try it out.\r\n\r\n\r\nBy the way. What happens if someone kills a wrong player? If I would kill goulo than there is no way to win for zara2stra so the only possibilities are that either I win or non of us. Or maybe I would become zara2stra&#39;s new left player?\r\n\r\n\r\nIt is easy to see we are very militaristic this time. :) But I guess zara2stra that the catastrophe you made helped only goulo. I&#39;m not sure whether that wasa good move... :)\n\tgoulo: I believe if your left-hand target is eliminated by another player, then the former left-hand target of your now-dead target becomes your new left-hand target.\n\tgoulo: I&#39;m sure zara is happier having you and me each have 2 R3&#39;s instead of you, who wants to kill him, having 3 R3&#39;s. :)\n\tzara2stra: By killing goulo you would become my new target. \r\n\r\nAs for the catastrophe; Any other move would get you 3 ships in a decent system (after sacrificing an R3). The situation was bad due to my error (not taking the r3 when it was available). Right now I helped goulo, but my military situation would be bad either way, and by aiding him I took a bit of strain off my back - after all, the only way for guolo to win is to kill you before you kill me.  \n\n59) AdamBadura: Move R2 Nothingness Coldandempty\nCatastrophe Coldandempty R\n\n60) zara2stra: Discover B2 Zara2stra G1 Mostlyharmless\n\tAdamBadura: That costed me dearly. goulo keep in mind that if I am strong zara2stra have to play more defence against me than attack you. So in other words your safty is in my power. You should support me... :P\n\n61) goulo: Discover Y1 Verda G2 Stelo\n\tzara2stra: Yeah, he should support you the same way you should support me: namely by trying to kill you at the same time ;)\n\n62) AdamBadura: Build Y1 Adambadura\n\n63) zara2stra: Trade B2 Y2 Mostlyharmless\n\n64) goulo: Build B2 Goulo\n\tAdamBadura: I undid my move. Hope you didn&#39;t mind. Sorry. Somehow I missed that I can just build that Y ship...\n\n65) AdamBadura: Move Y1 Adambadura Thevoid\n\n66) zara2stra: Build B2 Zara2stra\n\tgoulo: I don&#39;t mind an undo if it&#39;s done quickly. Otherwise there&#39;s the risk another player is already thinking about or typing their turn. :)\n\n67) goulo: Build B3 Verda\n\n68) AdamBadura: Build Y2 Thevoid\n\n69) zara2stra: Move B2 Zara2stra Mostlyharmless\n\n70) goulo: Discover B2 Goulo Y3 Freneza\n\n71) AdamBadura: Build Y3 Adambadura\n\n72) zara2stra: Build Y3 Mostlyharmless\n\n73) goulo: Move B1 Verda Stelo\n\n74) AdamBadura: Move B1 Adambadura Thevoid\n\n75) zara2stra: Build B3 Mostlyharmless\n\n76) goulo: Move B3 Verda Stelo\n\n77) AdamBadura: Build B3 Thevoid\n\n78) zara2stra: Sacrifice Y3 Mostlyharmless\nDiscover B3 Mostlyharmless G3 Betelgeuse\nMove B2 Mostlyharmless Betelgeuse\nMove Y2 Mostlyharmless Betelgeuse\n\n79) goulo: Discover B2 Goulo Y3 Zamenhof\n\n80) AdamBadura: Discover R3 Thevoid G1 Emptiness\n\n81) zara2stra: Trade B2 G2 Betelgeuse\n\n82) goulo: Discover B2 Zamenhof R2 Auld\n\n83) AdamBadura: Move Y1 Thevoid Emptiness\n\n84) zara2stra: Build G1 Betelgeuse\n\n85) goulo: Build Y3 Goulo\n\n86) AdamBadura: Move B1 Thevoid Emptiness\n\n87) zara2stra: Trade G2 R2 Betelgeuse\n\n88) goulo: Sacrifice Y3 Goulo\nMove B2 Auld Adambadura\nMove B3 Stelo Adambadura\nMove B1 Stelo Adambadura\nCatastrophe Adambadura Blue\n\n89) AdamBadura: Build Y3 Thevoid\n\n90) zara2stra: Build B1 Betelgeuse\n\tgoulo: I just felt a disturbance in The Force...\n\tAdamBadura: :(\r\n\r\nI knew you were trying to do that. Yet somehow I thought I am keeping my eyes on you... ;)\n\n91) goulo: Trade B2 G2 Freneza\n\tAdamBadura: I think it is zara2stra&#39;s fault. He is not pushing you strong enough... ;D\n\n92) AdamBadura: Sacrifice Y2 Adambadura\nDiscover Y2 Thevoid G1 Theendisnear\nMove Y3 Thevoid Theendisnear\n\tzara2stra: Ships are needed to threaten, and you attacked me in a system where I was one step away from goulo - ideal place to take him off your back. Blame yourself :P\n\n93) zara2stra: Sacrifice Y2 Betelgeuse\nMove B1 Betelgeuse Goulo\nMove B3 Betelgeuse Goulo\n\tgoulo: Adam, it&#39;s all your fault, for not having won and ended the game before I had the chance to catastrophe your blue star. :)\n\tAdamBadura: :D\n\tAdamBadura: On the plus side now it will be difficult to catastrophe me as G is used mostly for stars... :)\n\n94) goulo: Sacrifice R2 Verda\nAttack B3S Goulo\nAttack B1S Goulo\n\n95) AdamBadura: Sacrifice Y3 Adambadura\nMove Y1 Emptiness Zara2stra\nMove Y2 Theendisnear Zara2stra\nMove Y3 Theendisnear Zara2stra\nCatastrophe Zara2stra Y\n\n96) zara2stra: Build B1 Zara2stra\n\tzara2stra: here goes nothing - I hoped you would somehow miss it :)\n\n97) goulo: Trade B1 G1 Goulo\n\n98) AdamBadura: Trade B1 Y1 Emptiness\n\n99) zara2stra: Trade R2 Y2 Zara2stra\n\tgoulo: for some strange reason, there seem to be a lot more ships available again... :)\n\tAdamBadura: I&#39;m considering group-attacking goulo... ;)\n\n100) goulo: Trade B3 Y3 Goulo\n\n101) AdamBadura: Move Y1 Emptiness Adambadura\n\tzara2stra: sorry \n\tzara2stra: I forgot how close we all have become :P\n\n102) zara2stra: Build Y2 Zara2stra\n\n103) goulo: Build G2 Freneza\n\n104) AdamBadura: Build Y2 Adambadura\n\n105) zara2stra: Build R1 Zara2stra\n\n106) goulo: Sacrifice Y3 Goulo\nMove G2 Freneza Stelo\nMove G2 Stelo Adambadura\nDiscover G2 Freneza Y2 Malfreneza\n\n\tAdamBadura: Good game. Another one?\n\tAdamBadura: (Obvioulsy I blame zara2stra for my failure... ;D)\n\tzara2stra: yeah obviously - were I to lay on my back and wait for you to rip my throat you would surely win :) Ok - I&#39;m in for a rematch :)\n\tgoulo: thanks! a good epic game! :)\n\nHomeworlds Online (SDG# 16390)\nStarted: 2010.5.21, Ended: 2010.7.17\nParticipants: rootbier (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B3 G3\n\n2) rootbier: Homeworld R2 B3 G3\n\tZackStack: Rematch time! Have a good game :-)\n\n3) ZackStack: Build G1 Zackstack\n\n4) rootbier: Build G1 Rootbier\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) ZackStack: Build G1 Zackstack\n\n8) rootbier: Build G1 Rootbier\n\n9) ZackStack: Discover G1 Zackstack B2 Globe\n\n10) rootbier: Discover G1 Rootbier B1 Aubergine\n\n11) ZackStack: Build G1 Zackstack\n\n12) rootbier: Build G2 Rootbier\n\n13) ZackStack: Move Y1 Zackstack Globe\n\n14) rootbier: Discover G2 Rootbier B1 Uva\n\n15) ZackStack: Trade G1 B1 Zackstack\n\n16) rootbier: Build G1 Rootbier\n\n17) ZackStack: Build Y1 Globe\n\n18) rootbier: Sacrifice G3 Rootbier\nBuild G2 Uva\nBuild G2 Aubergine\nBuild G3 Rootbier\n\n19) ZackStack: Build G3 Globe\n\tZackStack: I hope you&#39;re enjoying your inside track to all the larger ships :-)\n\trootbier: I&#39;d say that&#39;s a pretty durn standard tactic - more bigger stronger.\n\trootbier: You&#39;re not taking it easy on me I hope.\n\n20) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild Y2 Rootbier\nBuild Y2 Rootbier\n\tZackStack: Certainly not.  You put yourself in a good position.  I&#39;ll do my best to take you out of it :-)\n\n21) ZackStack: Discover Y1 Globe R1 Crumb\n\trootbier: Looks to be a pretty balanced spread right now.\n\trootbier: No - I guess I&#39;m a little better placed for growth.\n\n22) rootbier: Trade Y1 R1 Rootbier\n\n23) ZackStack: Sacrifice G3 Globe\nBuild G3 Globe\nBuild B2 Zackstack\nBuild Y1 Crumb\n\n24) rootbier: Move Y2 Rootbier Aubergine\n\n25) ZackStack: Trade B2 R2 Zackstack\n\n26) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Aubergine\nBuild Y3 Rootbier\nBuild R2 Rootbier\n\n27) ZackStack: Sacrifice G3 Globe\nBuild G3 Globe\nBuild Y3 Globe\nBuild G3 Zackstack\n\n28) rootbier: Sacrifice Y2 Rootbier\nMove G1 Aubergine Globe\nMove Y2 Aubergine Globe\n\n29) ZackStack: Sacrifice Y3 Globe\nMove G3 Globe Crumb\nMove G1 Globe Crumb\nMove Y1 Globe Zackstack\n\n30) rootbier: Sacrifice Y2 Aubergine\nMove G1 Globe Zackstack\nMove G2 Uva Globe\n\n31) ZackStack: Trade G3 Y3 Zackstack\n\n32) rootbier: Sacrifice G1 Rootbier\nBuild G1 Zackstack\n\n33) ZackStack: Sacrifice Y3 Zackstack\nMove R2 Zackstack Globe\nMove R2 Globe Aubergine\nMove R2 Aubergine Rootbier\nCatastrophe Rootbier Red\n\trootbier: Thanks for your patience while I was away.\n\n34) rootbier: Sacrifice G2 Aubergine\nBuild G2 Zackstack\nBuild G3 Uva\nCatastrophe Zackstack G\n\tZackStack: No problem.  I&#39;m always willing to wait for a good opponent!  Nice move by the way...\n\trootbier: Looked like a nice way to press you a little. Question now is: How much am I willing to lose to press you further?\n\n35) ZackStack: Move Y1 Crumb Rootbier\n\trootbier: Let&#39;s see where this goes.\n\tZackStack: Noplace pleasant I&#39;m sure... ;-)\n\n36) rootbier: Move G2 Globe Rootbier\n\n37) ZackStack: Sacrifice G3 Crumb\nBuild Y2 Rootbier\nBuild Y2 Rootbier\nBuild Y3 Zackstack\nCatastrophe Rootbier Yellow\n\trootbier: Ajjhh - you did indeed red warp cat me.\r\nNew shape of the known universe.\n\n38) rootbier: Build G1 Rootbier\n\n39) ZackStack: Build G1 Crumb\n\trootbier: Too many options! Choice freeze!\n\n40) rootbier: Trade G1 Y1 Rootbier\n\tZackStack: Woot! That&#39;s why we play isn&#39;t it? :-)\n\n41) ZackStack: Build Y2 Crumb\n\trootbier: Bah! You did it without losing your 3 -- I didn&#39;t look far enough down that line.\n\tZackStack: I forgive you ;-)\n\n42) rootbier: Sacrifice G2 Uva\nBuild Y2 Globe\nBuild Y3 Rootbier\n\trootbier: I made my big mistake there -- I&#39;ll keep it simple (and safe?) for now.\r\n\r\nActually of to Tel&amp;#269; (Czech Republic) in the morning for some workshops/conferences -- won&#39;t hear from me again until some time on Monday. Sorry for the summer slowdown :)\n\tZackStack: Enjoy your conference!  I&#39;ll be here when you get back :-)\n\n43) ZackStack: Trade Y3 G3 Zackstack\n\n44) rootbier: Discover Y1 Rootbier G2 Greengrape\n\n45) ZackStack: Discover B1 Zackstack G2 Verde\n\n46) rootbier: Move G2 Rootbier Verde\n\n47) ZackStack: Build B1 Verde\n\tZackStack: Whew... That was close.  I&#39;d rather not hand you the game quite yet... ;-)\n\n48) rootbier: Sacrifice G3 Uva\nBuild G1 Verde\nBuild G3 Verde\nBuild Y3 Rootbier\nCatastrophe Verde G\n\n49) ZackStack: Build Y3 Zackstack\n\n50) rootbier: Sacrifice Y2 Globe\nMove Y2 Globe Zackstack\nMove Y1 Greengrape Zackstack\nCatastrophe Zackstack Y\n\n51) ZackStack: Build G1 Zackstack\n\n52) rootbier: Trade Y3 G3 Rootbier\n\n53) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: Clearly that was unexpected :-)\n\n54) rootbier: Build Y1 Rootbier\n\trootbier: In past I have waited far too long to address threats on my second star.\n\n55) ZackStack: Build Y2 Zackstack\n\trootbier: Hmmm... not sure if I should - but yeah I will.\n\n56) rootbier: Discover Y1 Rootbier G2 Huh\n\tZackStack: You took my bait!  Now only if I knew *why* I set that bait... :-)\n\n57) ZackStack: Trade Y1 B1 Zackstack\n\trootbier: Ha hah. Well. You&#39;re not bad off. I have two 3s against your one 3 and many smaller :/ Not quite sure why I took it. Guess I love the destruction(?)\n\n58) rootbier: Build Y1 Rootbier\n\trootbier: &quot;I guess I will do that,&quot; he said plaintively.\n\n59) ZackStack: Discover B1 Zackstack Y2 Sunspot\n\n60) rootbier: Build Y3 Huh\n\n61) ZackStack: Move B1 Sunspot Rootbier\n\n\trootbier: oh right - too long sighted to what was right there. one move action too far away to stop you.\n\nHomeworlds Online (SDG# 16453)\nVariants: &quot;Sinister&quot;\nStarted: 2010.5.23, Ended: 2010.5.27\nParticipants: goulo (S), zara2stra (N), AdamBadura (E)\nWinner: goulo\n\n1) zara2stra: Homeworld G3 Y1 B3\n\n2) AdamBadura: Homeworld G1 B2 R3\n\n3) goulo: Homeworld B3 G2 Y3\n\n4) zara2stra: Build B1 Zara2stra\n\tgoulo: have fun!\n\n5) AdamBadura: Build R1 Adambadura\n\tzara2stra: Just after ending the previous game I realized the flaw of this mod. Since you exactly know who you are after and who&#39;s after you, the third player can choose exactly the same planet sizes for his homeworld to draw himself near to his designated enemy. No, I didn&#39;t want to share it before the start of this game ;)\n\tAdamBadura: Yes. Indeed. In two players mode this is not a good strategy but in this mode it might be.\n\n6) goulo: Build Y1 Goulo\n\tgoulo: maybe, maybe not. i think only testing would tell. :)\n\n7) zara2stra: Build B1 Zara2stra\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\n9) goulo: Trade Y1 G1 Goulo\n\n10) zara2stra: Trade B1 R1 Zara2stra\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) goulo: Build G1 Goulo\n\n13) zara2stra: Trade B1 G1 Zara2stra\n\n14) AdamBadura: Trade Y1 B1 Adambadura\n\n15) goulo: Trade G1 R1 Goulo\n\n16) zara2stra: Build B1 Zara2stra\n\n17) AdamBadura: Build Y1 Adambadura\n\n18) goulo: Build R1 Goulo\n\n19) zara2stra: Trade B1 Y1 Zara2stra\n\n20) AdamBadura: Build Y2 Adambadura\n\n21) goulo: Build Y2 Goulo\n\n22) zara2stra: Build B1 Zara2stra\n\n23) AdamBadura: Discover Y1 Adambadura G3 Neighbourhood\n\n24) goulo: Discover Y2 Goulo G1 Arbeto\n\n25) zara2stra: Discover G1 Zara2stra B2 Hyperion\n\n26) AdamBadura: Build Y2 Neighbourhood\n\n27) goulo: Move R1 Goulo Arbeto\n\n28) zara2stra: Build G2 Hyperion\n\n29) AdamBadura: Build B1 Adambadura\n\n30) goulo: Build Y2 Goulo\n\n31) zara2stra: Move Y1 Zara2stra Hyperion\n\n32) AdamBadura: Move B1 Adambadura Neighbourhood\n\n33) goulo: Build Y3 Arbeto\n\n34) zara2stra: Build Y3 Hyperion\n\n35) AdamBadura: Build Y3 Adambadura\n\n36) goulo: Trade Y2 B2 Goulo\n\n37) zara2stra: Trade G1 R1 Hyperion\n\n38) AdamBadura: Discover Y1 Adambadura G3 Nextdoor\n\n39) goulo: Build Y2 Goulo\n\n40) zara2stra: Build R2 Hyperion\n\n41) AdamBadura: Build R2 Adambadura\n\n42) goulo: Build R2 Arbeto\n\n43) zara2stra: Discover Y3 Hyperion B3 Endymion\n\n44) AdamBadura: Move R2 Adambadura Neighbourhood\n\n45) goulo: Move B2 Goulo Arbeto\n\n46) zara2stra: Move R1 Hyperion Endymion\n\n47) AdamBadura: Trade Y1 G1 Neighbourhood\n\n48) goulo: Discover G1 Goulo Y1 Egiptujo\n\n49) zara2stra: Build G2 Hyperion\n\n50) AdamBadura: Discover Y1 Nextdoor B1 Nextstreet\n\n51) goulo: Move Y3 Arbeto Hyperion\n\n52) zara2stra: Sacrifice Y3 Endymion\nMove G2 Hyperion Endymion\nMove G2 Hyperion Endymion\nMove Y1 Hyperion Endymion\n\n53) AdamBadura: Build Y3 Neighbourhood\n\tzara2stra: Sorry guys, I&#39;m still in work and I had a lot to do. Didn&#39;t have a chance to drop by earlier.\n\n54) goulo: Sacrifice R1 Arbeto\nAttack R2N Hyperion\n\n55) zara2stra: Build G2 Endymion\n\tgoulo: no problem, that&#39;s why we&#39;re playing by email/web and not real-time. :)\n\n56) AdamBadura: Build B2 Neighbourhood\n\n57) goulo: Build B3 Arbeto\n\n58) zara2stra: Move G2 Endymion Adambadura\n\n59) AdamBadura: Attack G2N Adambadura\n\tAdamBadura: I wonder what zara2stra meant with this move.\r\n\r\nI am eager to see but somehow command:\r\nattack G2 AdamBadura\r\nclaims that:\r\n&quot;The ship G2 could not be found in the AdamBadura system.&quot;\r\n\r\nWhat to do now?\r\n\r\nAnd by the way: if both of you would have the same ship in my system how would I tell which one to attack?\n\tzara2stra: in the help, it says you should attack with a player designation so to attack my g2 you should attack g2n adambadura\n\n60) goulo: Trade B3 G3 Arbeto\n\tAdamBadura: It helped. Thanks! I two players mode it allowed to skip player mark and so I didn&#39;t new it is required.\n\n61) zara2stra: Move G2 Endymion Adambadura\n\n62) AdamBadura: Move G2 Adambadura Endymion\n\n63) goulo: Build G3 Egiptujo\n\n64) zara2stra: Attack G2E Endymion\n\n65) AdamBadura: Attack G2N Adambadura\n\n66) goulo: Move G3 Egiptujo Hyperion\n\n67) zara2stra: Build R1 Endymion\n\n68) AdamBadura: Build B3 Adambadura\n\n69) goulo: Sacrifice Y2 Goulo\nMove G1 Egiptujo Neighbourhood\nMove G3 Arbeto Neighbourhood\nCatastrophe Neighbourhood G\n\n70) zara2stra: Move G2 Endymion Adambadura\n\tgoulo: Who could resist killing 7 enemy ships in a supernova? :)\n\tgoulo: Or 6, I forget how many exactly. :)\n\n71) AdamBadura: Discover G2 Adambadura Y3 Endlessrage\n\n72) goulo: Build G1 Hyperion\n\tAdamBadura: So as I see kill the one on your left was changed to kill AdamBadura... ;)\n\tgoulo: No, just good old fashioned &quot;hurt the guy with the most ships AND the most 3-ships&quot;. :) After that result, we all became more equal.\n\n73) zara2stra: Sacrifice G2 Endymion\nBuild G1 Adambadura\nBuild G2 Adambadura\nCatastrophe Adambadura G\n\tzara2stra: besides, as I see it, goulo needed the supplies in the yellow stash :P I see this as an opportunity to use a plan he thwarted few turns earlier\n\tzara2stra: Anyway, what does this button do?\n\n74) AdamBadura: Sacrifice Y2 Adambadura\nDiscover B1 Adambadura G1 Runaways\nMove B3 Adambadura Runaways\n\n75) goulo: Sacrifice G3 Hyperion\nBuild Y1 Hyperion\nBuild Y2 Arbeto\nBuild Y2 Goulo\n\tzara2stra: forgot to add the catastrophe part\n\tAdamBadura: I don&#39;t know how I missed that way... :(\n\tzara2stra: The first time I tried it goulo took the last g ship from the stash\n\n76) zara2stra: Trade R1 G1 Endymion\n\tAdamBadura: Now I have to twice that careful. The game really got complex with goulo attacking me instead of zara2stra ;) and now loosing one of my stars... :(\n\tzara2stra: But that was normal - your fleet heeded his way.\n\tzara2stra: I mean, most of the time players plot to get as close to their target with as large fleet as possible, occasionally thwarting plans of the player who tries to get them. \n\tzara2stra: I mean, most of the time players plot to get as close to their target with as large fleet as possible, occasionally thwarting plans of the player who tries to get them. \n\tgoulo: Wow, i come back from lunch, and man! What a mess you guys have made in the galaxy!\n\n77) AdamBadura: Trade Y1 B1 Nextstreet\n\n78) goulo: Build G2 Hyperion\n\n79) zara2stra: Build G2 Endymion\n\n80) AdamBadura: Sacrifice Y3 Adambadura\nMove B1 Runaways Goulo\nMove B3 Runaways Goulo\nMove B1 Nextstreet Goulo\nCatastrophe Goulo B\n\n81) goulo: Discover Y2 Arbeto R2 Rubeno\n\n82) zara2stra: Trade G2 Y2 Endymion\n\tAdamBadura: However I am afraid this might have allowed zara2stra to win.\r\n\r\nSo consider goulo securing me for some time. As stupid as it sounds keep in mind that I am an easy target now and if zara2stra wins you will not... ;)\n\n83) AdamBadura: Build G1 Endlessrage\n\n84) goulo: Build R1 Hyperion\n\n85) zara2stra: Sacrifice Y2 Endymion\nMove B3 Zara2stra Adambadura\nMove B1 Zara2stra Adambadura\n\n86) AdamBadura: Attack B3N Adambadura\n\n87) goulo: Sacrifice Y3 Hyperion\nMove R1 Goulo Zara2stra\nMove R1 Hyperion Zara2stra\nMove R2 Hyperion Zara2stra\nCatastrophe Zara2stra R\n\tzara2stra: check\n\tzara2stra: ooops, should probably take that back - but in a live game I would really miss that possibility :(\n\tzara2stra: Ok, I take the last statement back - it seems that it was a good move after all :) \n\tzara2stra: for several minutes after the last move I thought that goulo will be able to catastrophe me with red in my HS\n\tzara2stra: oh but he will - excuse me, I&#39;m really tired ;)\n\tzara2stra: shitshitshit - ROTFL. I just explained how to win to my oponent. Note to self for future plays: do not make hasty moves after a several hour brake from analysing the situation.\n\tzara2stra: I just described my hilarious mistake on Blip. Folko sends his regards :)\n\tAdamBadura: Hmmm... I agree to undo your last move since you have seen it before I did and I guess befor goulo did as well. So if you still want to undo and goulo doesn&#39;t mind the do it. Otherwise let me know to continue.\n\tgoulo: Ummm. what a strange chat sequence! I guess take it back, given our convention so far in this game. And perhaps next game we should simply play with the No Undo option to avoid these confusing dilemmas. :) \n\tgoulo: By the way, convince Folko to start playing at superdupergames! I told him about it, but he is lazy and distracted. :)\n\tzara2stra: naah, I won&#39;t undo it - that&#39;s exactly the kind of error that often happens during a live game. I&#39;ll try to talk Folko into playing here - I think he would like it:) And BTW - Homeworlds once more? or maybe something light like Blam! I would also like to try the online interpretation of Alien City, but it&#39;s two player only. \n\n\tAdamBadura: So lets goulo finish the game properly.\r\n\r\nI would gladly play another one. Also I want to play Skur&eth;ir but they don&#39;t have it here.\n\tAdamBadura: By the way I wonder what did you intend to do now after moving those two B ships into my homeworld? Did you count on goulo to finish me off (as you already cooparted in the past agains me... :P)?\n\tAdamBadura: Sacrificing a G ship. Now I see it. Nice. A close game. Saddly not for me... ;)\n\tgoulo: thanks for the game!\r\nI will happily play this again, as well as Blam, Branches, Martian Chess, Subdivision, all of which are neat little pyramid games I&#39;ve played in real life and here online. Adam, will you join us for Blam? And do either of you want to play any of the others as well?\r\n\r\nI&#39;ve never played Alien City but always heard it&#39;s good. Feel free to challenge me, zara.\n\tAdamBadura: I never played Blam. I don&#39;t know the rules so start without me if you want to as I don&#39;t know when I will read them.\n\tzara2stra: Ok, I&#39;ll challenge you during the weekend - I have a business trip to Pozna&amp;#324; tommorow, so for most of the time I won&#39;t have access to a computer. As for Homeworlds and Blam, we can start today :) Thanks for the game.\n\tzara2stra: Adam, the rules for blam are easy - you place pyramids on a chessboard and all surrounding pyramids move away from the piece you place. The goal is for pyramids to fall from the board. You take your pyramids to use them again, and take any pieces from other players as trophies. that&#39;s all :)\n\tAdamBadura: Seems easy enogh. You may challange me as well... :)\n\nHomeworlds Online (SDG# 16363)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.24, Ended: 2010.6.16\nParticipants: Jesse (S), rootbier (N)\nWinner: Jesse\n\n1) rootbier: Homeworld B1 Y3 G3\n\n2) Jesse: Homeworld G2 B1 B3 *\n\n3) rootbier: Build G1 Rootbier\n\n4) Jesse: Build B1 Jesse\n\n5) rootbier: Build G1 Rootbier\n\trootbier: all the tricks :) schooling again thanks.\n\trootbier: or... no. that doesn&#39;t work that way... hmm.\n\n6) Jesse: Trade B3 Y3 Jesse\n\n7) rootbier: Discover G1 Rootbier Y2 Procra\n\trootbier: who are you and what have you done with Jesse?\n\tJesse: Heh.  Good question.  Apparently my brain has severe gas this morning.  I&#39;ll just correct that, if you don&#39;t mind.\n\n8) Jesse: Build B2 Jesse\n\trootbier: Some catastrophes you just can&#39;t feel good about eh?\n\n9) rootbier: Build G1 Procra\n\n10) Jesse: Discover B2 Jesse G3 Canada\n\tJesse: Indeed.  Usually I&#39;m the one giving a newbie a second chance when they make some silly oversight.  I guess karma has to count for something.\n\trootbier: Feel free to pretend I am a newbie at some point.\n\n11) rootbier: Discover G1 Procra B3 Stinat\n\n12) Jesse: Build B2 Canada\n\tJesse: Should the need arise, you&#39;ve got a deal.\n\n13) rootbier: Sacrifice G3 Rootbier\nBuild G2 Procra\nBuild G2 Stinat\nBuild G3 Rootbier\n\n14) Jesse: Build B2 Jesse\n\n\nHomeworlds Online (SDG# 16433)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.24, Ended: 2010.6.8\nParticipants: rootbier (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B2 Y1 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) rootbier: Build G1 Rootbier\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) SilentTitan: Discover B1 Silenttitan G3 All\n\n8) rootbier: Build Y1 Rootbier\n\n9) SilentTitan: Build B1 All\n\n10) rootbier: Discover Y1 Rootbier G2 Pesto\n\n11) SilentTitan: Build B2 All\n\n12) rootbier: Build Y2 Rootbier\n\n13) SilentTitan: Trade B2 Y2 All\n\n14) rootbier: Trade Y1 R1 Rootbier\n\n15) SilentTitan: Build B2 All\n\n16) rootbier: Trade Y2 B2 Rootbier\n\n17) SilentTitan: Sacrifice Y2 All\nDiscover B1 All Y2 Ball\nMove B2 All Silenttitan\n\n18) rootbier: Move R1 Rootbier Ball\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Ball\nBuild B3 All\nBuild B3 Silenttitan\n\n20) rootbier: Move B2 Rootbier Pesto\n\n21) SilentTitan: Sacrifice B3 All\nTrade B3 R3 Ball\nTrade B3 G3 Silenttitan\nTrade B1 R1 All\n\n22) rootbier: Build G1 Rootbier\n\n23) SilentTitan: Attack R1S Ball\n\trootbier: Rinse and repeat :/\n\n24) rootbier: Trade G3 R3 Rootbier\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Ball\nBuild B3 Ball\nBuild B3 Silenttitan\n\n26) rootbier: Build B3 Pesto\n\n27) SilentTitan: Sacrifice B2 Silenttitan\nTrade B3 Y3 Ball\nTrade B1 R1 Ball\n\n28) rootbier: Build G1 Rootbier\n\n29) SilentTitan: Move R1 Ball Rootbier\n\n30) rootbier: Sacrifice B2 Pesto\nTrade R3 B3 Rootbier\nTrade B3 R3 Pesto\n\n31) SilentTitan: Trade R1 B1 Rootbier\n\trootbier: What&#39;s that chirping sound?\n\n32) rootbier: Trade B3 R3 Rootbier\n\trootbier: Sounded a bit like an Eastern Bluebird, but without visual confirmation I can&#39;t really say with any certainty.\n\n33) SilentTitan: Trade Y3 G3 Ball\n\trootbier: all the jokey ribbing :P in the world wouldn&#39;t have saved me if i&#39;d let that sit :)\n\n34) rootbier: Attack B1 Rootbier\n\n35) SilentTitan: Build B2 Ball\n\trootbier: Ooh. I see that you do indeed have me in a bind. I&#39;ll end up having to sab my b3 to get out of this - knew i should have done it in the first place.\n\n36) rootbier: Move B1 Rootbier Pesto\n\n37) SilentTitan: Trade B2 Y2 Ball\n\tSilentTitan: I couldn&#39;t push the button fast enought to catch you on the no red in your homeworld move\n\trootbier: Hmm... maybe you weren&#39;t planning what I thought you were planning. You really had me in trouble there.\n\n38) rootbier: Build B2 Pesto\n\trootbier: Why did you switch the y3? You could have totally pulled off the move I think you were planning with the y3 and the little reds.\n\n39) SilentTitan: Sacrifice G3 Ball\nBuild B2 Ball\nBuild B3 Ball\nBuild B3 Silenttitan\n\n40) rootbier: Trade R3 G3 Pesto\n\n41) SilentTitan: Sacrifice B2 Ball\nTrade B3 R3 Silenttitan\nTrade B3 Y3 Silenttitan\n\n42) rootbier: Discover B1 Pesto G3 Flaco\n\n43) SilentTitan: Sacrifice Y2 Ball\nMove R3 Silenttitan All\nMove R3 All Pesto\n\tSilentTitan: you know ...  that&#39;s a good question...I thought I had a great idea ... but then I quess I much have lost track of what I was doing... happens I guess\n\tSilentTitan: much = must\n\trootbier: way i saw it i was at best going to lose my size 3 at home along with your three little reds at the sacrifice of your y3 - now that doesn&#39;t seem like a great trade off but you&#39;d have been a good deal ahead on position and remaining shipage -- might be okay either way\n\n44) rootbier: Sacrifice G3 Pesto\nBuild B2 Pesto\nBuild B3 Flaco\nBuild R1 Rootbier\n\n45) SilentTitan: Trade B3 Y3 Ball\n\n46) rootbier: Move R1 Rootbier Pesto\n\n47) SilentTitan: Sacrifice Y3 Ball\nMove R3 Pesto Rootbier\nMove R3 Ball Rootbier\nMove B1 Ball Rootbier\n\n48) rootbier: Build R2 Rootbier\nCatastrophe Rootbier R\n\n49) SilentTitan: Sacrifice R1 All\nAttack G1S Rootbier\n\n50) rootbier: Move B2 Pesto Rootbier\n\n51) SilentTitan: Build B3 Rootbier\nCatastrophe Rootbier B\n\n\nHomeworlds Online (SDG# 16327)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.24, Ended: 2010.6.9\nParticipants: dlwillson (S), rootbier (N)\nWinner: dlwillson\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) dlwillson: Build G1 Dlwillson\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) rootbier: Build Y1 Rootbier\n\n8) dlwillson: Build B1 Dlwillson\n\n9) rootbier: Discover Y1 Rootbier G3 Calabash\n\n10) dlwillson: Discover B1 Dlwillson G2 Bottlegourd\n\n11) rootbier: Build Y2 Calabash\n\n12) dlwillson: B B2 Bottlegourd\n\n13) rootbier: Move Y2 Calabash Bottlegourd\n\n14) dlwillson: B B2 Dlwillson\n\n15) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Calabash\nBuild Y2 Bottlegourd\nBuild Y3 Rootbier\n\n16) dlwillson: Trade B2 R2 Dlwillson\n\n17) rootbier: Build Y3 Bottlegourd\n\n18) dlwillson: Sacrifice R2 Dlwillson\nA Y2 Bottlegourd\nA Y2 Bottlegourd\n\n19) rootbier: Trade Y1 R1 Rootbier\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Bottlegourd\nBuild B2 Bottlegourd\nBuild B3 Dlwillson\n\n21) rootbier: Sacrifice Y2 Calabash\nDiscover Y3 Bottlegourd G3 Butternut\nMove Y1 Calabash Bottlegourd\nCatastrophe Bottlegourd Y\n\n22) dlwillson: Sacrifice B2 Bottlegourd\nTrade B3 G3 Dlwillson\nTrade B2 R2 Bottlegourd\n\n23) rootbier: Trade Y3 G3 Rootbier\n\n24) dlwillson: B B2 Dlwillson\n\n\tdlwillson: good game, thank you\n\nHomeworlds Online (SDG# 16325)\nStarted: 2010.5.24, Ended: 2010.6.18\nParticipants: TwoShort (S), rootbier (N)\nWinner: TwoShort\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) TwoShort: Build G1 Twoshort\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) rootbier: Build R1 Rootbier\n\n8) TwoShort: Build Y1 Twoshort\n\n9) rootbier: Build R2 Rootbier\n\n10) TwoShort: Build Y2 Twoshort\n\n11) rootbier: Trade R2 Y2 Rootbier\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) rootbier: Build R2 Rootbier\n\trootbier: Professor Slogar is determind to creat the perfect groom for her daughter?\n\n14) TwoShort: Trade Y2 R2 Twoshort\n\tTwoShort: Yes!  Well, sort of: Keith Baker and I are old friends and a long time ago we would both have thought of &#39;Grogar&#39; as a giant green monster; add some years and some free-associating to get &#39;Grogar&#39; the monstrous teddy bear in his mind and &#39;Grogar&#39; the green star name in mine...\n\n15) rootbier: Discover R2 Rootbier G3 Popsicle\n\trootbier: Rad &#39;nuff.\r\n\r\nI have to say it&#39;s a really pretty game and a great mechanic (stacking the clear cards) - but I don&#39;t get a lot of (re)play out of it.\r\n\r\nYou guys used to crawl/campaign together? Or?\r\nAre you also a designer/writer?\r\nDo you have a BGG account? Link me so I can check your collection :P :D\n\tTwoShort: Keith and I have been best friends since we met in college..let&#39;s see...20 years ago!?!  Yikes! I&#39;m old!  We&#39;ve mostly lived in the same cities since, until he moved a couple months ago :(\r\n\r\nAnyway:\r\n -Gloom is fun, but not exactly my thing either. I go more for the gear-headed: recent game-night favorites are Dominion and Small World.\r\n -Professionally, I&#39;m a software engineer.  I&#39;ve got a play-tester credit on Gloom, and probably some D&amp;D stuff, but that&#39;s about the extent of my game career.\r\n - No BGG account, but my collection is easily described:  Many Icehouse pyramids.  One of everything else by Looney Labs.  A random assortment of stuff that didn&#39;t fit in Keiths car when he moved :)\r\n\r\nSo how did you come across Homeworlds?  It shouldn&#39;t, but it still surprises me when people I don&#39;t know play Icehouse games. :)\n\trootbier: First time I encountered pyramids was err... 8 years ago(?)... playing Zendo with a best friend&#39;s kind-of-brother-in-law and his geekforce. Kind of got sucked into gaming properly a couple years ago - hanging out with this German chick at the international student village we were living in (I&#39;ve been studying in Norway for the last three years).\r\n\r\nI hear good things about Small World but haven&#39;t gotten to play it yet. I only get to play things I buy - which means --- things I bought last summer when I was back home for the first time. Even still it&#39;s mostly been just a lot of Carcassonne - which is fun but --- I wish my friends here were a bit more willing to mix it up.\r\n\r\nAnyway - one of the things I brought back here with me was 5 Treehouse/Icehouse sets. So I&#39;ve been trying to spread a bit of homeworlds to other folks. ... I should be studying for tomorrow&#39;s exam. :/\n\n16) TwoShort: Build Y2 Twoshort\n\n17) rootbier: Discover R1 Rootbier B3 Aubergine\n\trootbier: I was studying for the wrong exam -- genius. I think I still probably pulled off a C without having read a page. Which is considered fine here - not by my standards but by the country&#39;s. I am switching programs anyway - so I am not too bothered. Though I imagine I could have aced it had I checked to see which one was coming.\r\n\r\nExtra bonus: I won&#39;t have to study much for the one that happens next week.\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Grogar\nBuild Y3 Twoshort\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild R2 Popsicle\nBuild R3 Aubergine\nBuild R3 Rootbier\n\trootbier: such a tease - aaargh\n\n20) TwoShort: Move Y3 Grogar Popsicle\n\trootbier: forgot i had my own to do :)\n\n21) rootbier: Sacrifice Y2 Rootbier\nDiscover R2 Popsicle Y2 Maniac\nMove R2 Popsicle Maniac\n\n22) TwoShort: Build Y3 Grogar\n\n23) rootbier: Trade R1 G1 Aubergine\n\n24) TwoShort: Move Y3 Popsicle Maniac\n\n25) rootbier: Discover R2 Maniac G1 Pollen\n\n26) TwoShort: Trade Y2 G2 Twoshort\n\n27) rootbier: Move R2 Maniac Aubergine\n\n28) TwoShort: Build Y2 Twoshort\n\n29) rootbier: Trade R3 G3 Rootbier\n\n30) TwoShort: Build G1 Twoshort\n\n31) rootbier: Build G2 Rootbier\n\n32) TwoShort: Build G3 Twoshort\n\n33) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild G3 Aubergine\nBuild R1 Pollen\n\n34) TwoShort: Trade G1 B1 Twoshort\n\n35) rootbier: Trade G2 B2 Rootbier\n\trootbier: you&#39;re going to do something exciting soon right... :/\n\n36) TwoShort: Move B1 Twoshort Grogar\n\tTwoShort: Something exiting like sacrificing all my 3 pointers one after another to win?  Soon. :)\n\trootbier: well there&#39;s only so much building i can still do and then i&#39;ll just have to pass pass pass\n\n37) rootbier: Discover B2 Rootbier B3 Thpppbt\n\n38) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Grogar\nBuild B1 Grogar\nBuild G1 Twoshort\n\tTwoShort: Yeah, once I got the yellow monopoly it was just a matter of time.  Anyway... Victory in 5.\n\n39) rootbier: Sacrifice G3 Aubergine\nBuild G2 Rootbier\nBuild R3 Rootbier\nBuild G3 Aubergine\n\n40) TwoShort: Sacrifice Y3 Twoshort\nDiscover B1 Grogar Y3 Yonder\nMove B1 Grogar Yonder\nMove B1 Grogar Yonder\n\n41) rootbier: Sacrifice B2 Thpppbt\nTrade R3 B3 Aubergine\nTrade R2 B2 Pollen\n\n42) TwoShort: Sacrifice Y3 Grogar\nMove B1 Yonder Rootbier\nMove B1 Yonder Rootbier\nMove B1 Yonder Rootbier\nCatastrophe Rootbier Blue\n\n\trootbier: Now I remember where we were :)\r\nThanks for your patience while I was away.\n\nHomeworlds Online (SDG# 16452)\nStarted: 2010.5.24, Ended: 2010.11.7\nParticipants: dethdukk (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) dethdukk: Homeworld R3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) dethdukk: Build G1 Dethdukk\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) rootbier: Build Y2 Rootbier\n\n8) dethdukk: Build Y2 Dethdukk\n\n9) rootbier: Trade Y1 R1 Rootbier\n\n10) dethdukk: Build G1 Dethdukk\n\n11) rootbier: Build G1 Rootbier\n\n12) dethdukk: Discover G1 Dethdukk G1 Green\n\n13) rootbier: Trade G1 B1 Rootbier\n\trootbier: poke\n\tdethdukk: hey sorry, my life kicked my ass and I dropped out of sdg for a number of months...  I&#39;ll see if i can get back into it.\n\n\nHomeworlds Online (SDG# 16462)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.24, Ended: 2010.6.13\nParticipants: rootbier (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\trootbier: I&#39;m back for more school. :)\n\tUglyfoot: OK.  Let the lesson in pain begin.  Mwua-ha-ha!\n\n4) rootbier: Build G1 Rootbier\n\tUglyfoot: ;&gt;\n\n5) Uglyfoot: Discover G1 Uglyfoot R1 Step\n\n6) rootbier: Discover G1 Rootbier Y2 Son\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) rootbier: Build G2 Rootbier\n\n9) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n10) rootbier: Discover G1 Son B1 Daughter\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) rootbier: Build G2 Daughter\n\n13) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Step\n\n14) rootbier: Trade G2 Y2 Daughter\n\n15) Uglyfoot: Trade G2 R2 Uglyfoot\n\n16) rootbier: Build G2 Daughter\n\n17) Uglyfoot: Build G2 Step\n\n18) rootbier: Sacrifice Y2 Daughter\nMove G1 Daughter Uglyfoot\nMove G1 Uglyfoot Step\nCatastrophe Step G\n\n19) Uglyfoot: Move R2 Uglyfoot Daughter\n\n20) rootbier: Build G1 Daughter\n\n21) Uglyfoot: Attack G2 Daughter\n\n22) rootbier: Build G1 Daughter\n\n23) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Daughter\nBuild G3 Uglyfoot\nBuild G3 Uglyfoot\nCatastrophe Daughter G\n\n24) rootbier: Trade G2 B2 Rootbier\n\n25) Uglyfoot: Discover G3 Uglyfoot Y1 Links\n\n26) rootbier: Build B1 Rootbier\n\n27) Uglyfoot: Discover G3 Links Y2 Forward\n\n28) rootbier: Trade B1 R1 Rootbier\n\n29) Uglyfoot: Move Y1 Uglyfoot Daughter\n\n\nHomeworlds Online (SDG# 16467)\nStarted: 2010.5.26, Ended: 2010.7.19\nParticipants: dethdukk (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dethdukk: Homeworld B2 R3 G3\n\tSilentTitan: been playing for a while now.... time to take you down.\r\n\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dethdukk: Build G1 Dethdukk\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dethdukk: Build G1 Dethdukk\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Crazy\n\tSilentTitan: ha .... I almost trapped you into that move\r\n\n\n10) dethdukk: Trade G1 R1 Dethdukk\n\tdethdukk: yeah, I miscounted moves, then realized that I had when I submitted\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) dethdukk: Build R1 Dethdukk\n\tdethdukk: gotcha out of red methinks... so the real question is if it will matter\n\n13) SilentTitan: Build G1 Crazy\n\n14) dethdukk: Build G2 Dethdukk\n\n15) SilentTitan: Discover G1 Crazy B2 Mispelled\n\n16) dethdukk: Discover G2 Dethdukk Y1 Leaps\n\n17) SilentTitan: Build G2 Crazy\n\n18) dethdukk: Move R1 Dethdukk Leaps\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Mispelled\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n20) dethdukk: Build R2 Leaps\n\n21) SilentTitan: Trade G2 Y2 Mispelled\n\n22) dethdukk: Move R2 Leaps Mispelled\n\n23) SilentTitan: Sacrifice Y2 Mispelled\nDiscover G1 Mispelled R3 Danger\nDiscover G3 Silenttitan B3 Group\n\n\nHomeworlds Online (SDG# 16360)\nStarted: 2010.5.27, Ended: 2010.6.2\nParticipants: ZackStack (S), goulo (N)\nWinner: ZackStack\n\n1) goulo: Homeworld G1 B2 Y3\n\n2) ZackStack: Homeworld B1 R3 G3\n\tgoulo: hi, have fun!\n\tZackStack: You too! Thanks for the challenge!\n\n3) goulo: Build Y1 Goulo\n\n4) ZackStack: Build G1 Zackstack\n\n5) goulo: Trade Y1 G1 Goulo\n\tZackStack: Have you played Homeworlds very much?\n\tgoulo: 10 times. More than a newbie, but less than you. :)\n\n6) ZackStack: Build G2 Zackstack\n\tZackStack: Fair enough!  I like to give the true newbies some tips when they do something particularly perplexing ;-)\n\n7) goulo: Build G2 Goulo\n\tgoulo: I&#39;m open to tips, or general chat about strategy. Especially if I&#39;ve already done something particularly perplexing. :)\n\n8) ZackStack: Trade G2 Y2 Zackstack\n\n9) goulo: Trade G1 R1 Goulo\n\tZackStack: Well... I wondered if you&#39;d try mutual annihilation last turn (I have yet to see what SDG makes of that... :-)\n\tgoulo: I noticed that, but it is illegal to suicide according to the rules. So I assume the system would/should reject that order. But I didn&#39;t feel like testing that. :)\n\n10) ZackStack: Discover G1 Zackstack B2 Berry\n\n11) goulo: Discover G2 Goulo B3 Anna\n\n12) ZackStack: Build G1 Zackstack\n\n13) goulo: Build G2 Anna\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Berry\nBuild G3 Zackstack\nBuild G3 Berry\n\n15) goulo: Build Y1 Goulo\n\n16) ZackStack: Trade G3 Y3 Berry\n\n17) goulo: Trade G2 Y2 Anna\n\n18) ZackStack: Discover G2 Berry Y3 Lemon\n\n19) goulo: Trade Y3 G3 Goulo\n\n20) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Lemon\nBuild G3 Zackstack\nBuild G3 Berry\n\n21) goulo: Move G3 Goulo Anna\n\n22) ZackStack: Sacrifice Y2 Zackstack\nMove G3 Berry Anna\nMove G3 Anna Goulo\n\n23) goulo: Move G3 Anna Goulo\n\n24) ZackStack: Sacrifice G1 Berry\nBuild G1 Goulo\nCatastrophe Goulo Green\n\tgoulo: Wow, you are totally kicking my butt...! Thanks for the lesson in the power cycling through greens... :)\n\tZackStack: You bet! ;-)  Big green ships are pretty darn awsome!\n\n\tgoulo: Thanks! I will try another game with you when I am more of a challenge for you. :)\n\tZackStack: I look forward too it!  Or I&#39;d be happy to play an unrated challenge if you think you can learn from more games but are worried about your rating.\n\tgoulo: I&#39;m not worried about my rating. I prefer playing rated games, whether against weaker, stronger, or same-strength players, so that there is more data in the ratings pool and the ratings become more accurate. :)\n\nHomeworlds Online (SDG# 16490)\nVariants: &quot;No undo, Sinister&quot;\nStarted: 2010.5.27, Ended: 2010.6.4\nParticipants: AdamBadura (S), goulo (N), zara2stra (E)\nWinner: goulo\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) zara2stra: Homeworld Y3 G1 B3\n\n3) AdamBadura: Homeworld B2 G1 R3\n\n4) goulo: Build Y1 Goulo\n\tAdamBadura: Lets see how zara2stra idea works in reality... :)\n\n5) zara2stra: Build B1 Zara2stra\n\tzara2stra: aww - we could all build same homesystems for a quick and brutal game.\n\n6) AdamBadura: Build R1 Adambadura\n\n7) goulo: Trade Y1 B1 Goulo\n\n8) zara2stra: Build B1 Zara2stra\n\n9) AdamBadura: Trade R1 G1 Adambadura\n\n10) goulo: Build B2 Goulo\n\n11) zara2stra: Trade B1 G1 Zara2stra\n\n12) AdamBadura: Build G2 Adambadura\n\n13) goulo: Trade B2 G2 Goulo\n\n14) zara2stra: Discover G1 Zara2stra R2 Hopesend\n\n15) AdamBadura: Trade G1 Y1 Adambadura\n\n16) goulo: Build Y1 Goulo\n\n17) zara2stra: Trade B1 R1 Zara2stra\n\n18) AdamBadura: Build Y1 Adambadura\n\n19) goulo: Trade Y1 R1 Goulo\n\n20) zara2stra: Build B1 Zara2stra\n\n21) AdamBadura: Discover Y1 Adambadura G3 Thevoid\n\n22) goulo: Build Y1 Goulo\n\n23) zara2stra: Build R1 Zara2stra\n\n24) AdamBadura: Build R1 Adambadura\n\n25) goulo: Build R2 Goulo\n\n26) zara2stra: Trade R1 Y1 Zara2stra\n\n27) AdamBadura: Build Y2 Thevoid\n\n28) goulo: Discover Y1 Goulo G3 Smeraldo\n\n29) zara2stra: Move Y1 Zara2stra Hopesend\n\n30) AdamBadura: Move Y2 Thevoid Hopesend\n\n31) goulo: Build Y2 Smeraldo\n\n32) zara2stra: Build Y2 Hopesend\n\n33) AdamBadura: Attack Y2E Hopesend\n\tzara2stra: Adam, I hope you&#39;re just passing by?\n\n34) goulo: Move Y1 Smeraldo Hopesend\nCatastrophe Hopesend Y\n\tAdamBadura: Yeah... It was a bad move. It wasted my two moves and a 2 ship. You will lose likely as well... :)\n\n35) zara2stra: Trade B1 Y1 Zara2stra\n\n36) AdamBadura: Trade R1 B1 Adambadura\n\n37) goulo: Build R1 Goulo\n\tAdamBadura: I&#39;m surprised goulo did that. I expected zara2stra to build Y ship in that system and catastrophe it.\n\tgoulo: Unclear to me if zara would do that, so I figured it was worth it for me to do it. :)\n\n38) zara2stra: Build B1 Zara2stra\n\n39) AdamBadura: Move B1 Adambadura Thevoid\n\n40) goulo: Move R2 Goulo Smeraldo\n\n41) zara2stra: Build B2 Zara2stra\n\n42) AdamBadura: Build B2 Thevoid\n\n43) goulo: Move G2 Goulo Thevoid\n\n44) zara2stra: Move B2 Zara2stra Hopesend\n\n45) AdamBadura: Build B2 Thevoid\n\n46) goulo: Move B1 Goulo Thevoid\nCatastrophe Thevoid B\n\n47) zara2stra: Move Y1 Zara2stra Hopesend\n\n48) AdamBadura: Build R1 Adambadura\n\n49) goulo: Sacrifice R1 Goulo\nAttack Y1S Thevoid\n\n50) zara2stra: Build B1 Hopesend\n\n51) AdamBadura: Build Y1 Adambadura\n\n52) goulo: Build Y2 Goulo\n\n53) zara2stra: Build Y2 Hopesend\n\n54) AdamBadura: Discover Y1 Adambadura G3 Nexttothevoid\n\n55) goulo: Discover Y2 Smeraldo G2 Avokado\n\n56) zara2stra: Sacrifice B2 Hopesend\nTrade Y1 G1 Hopesend\nTrade B3 G3 Zara2stra\n\n57) AdamBadura: Trade R1 B1 Adambadura\n\n58) goulo: Build Y1 Avokado\n\n59) zara2stra: Build B2 Hopesend\n\n60) AdamBadura: Sacrifice G2 Adambadura\nBuild Y2 Adambadura\nBuild Y3 Nexttothevoid\n\n61) goulo: Build Y3 Thevoid\n\n62) zara2stra: Sacrifice Y2 Hopesend\nMove G1 Hopesend Thevoid\nMove G1 Hopesend Thevoid\nCatastrophe Thevoid G\n\n63) AdamBadura: Build R1 Adambadura\n\tAdamBadura: Great! I like it when you are smashing your heads yourself... :)\n\n64) goulo: Trade Y2 G2 Goulo\n\n65) zara2stra: Trade B2 G2 Hopesend\n\n66) AdamBadura: Move R1 Adambadura Nexttothevoid\n\n67) goulo: Build G1 Goulo\n\n68) zara2stra: Build B2 Hopesend\n\n69) AdamBadura: Trade Y1 G1 Adambadura\n\n70) goulo: Discover G1 Goulo G3 Piro\n\n71) zara2stra: Trade B2 Y2 Hopesend\n\n72) AdamBadura: Move B1 Adambadura Nexttothevoid\n\n73) goulo: Discover Y2 Avokado Y1 Banano\n\n74) zara2stra: Build B2 Hopesend\n\n75) AdamBadura: Build B2 Nexttothevoid\n\n76) goulo: Build Y1 Avokado\n\n77) zara2stra: Discover G2 Hopesend Y3 Fria\n\n78) AdamBadura: Build Y2 Adambadura\n\n79) goulo: Sacrifice Y2 Banano\nMove Y1 Avokado Zara2stra\nMove Y1 Avokado Zara2stra\n\n80) zara2stra: Build G2 Fria\n\n81) AdamBadura: Trade Y2 B2 Adambadura\n\tzara2stra: This will hurt\n\n82) goulo: Sacrifice G1 Piro\nBuild Y1 Zara2stra\nCatastrophe Zara2stra Y\n\n83) zara2stra: Sacrifice Y2 Hopesend\nMove G2 Fria Adambadura\nMove G2 Fria Adambadura\nCatastrophe Adambadura G\n\tgoulo: who knew 3 little y1 ships could do so much damage? :)\n\n84) AdamBadura: Discover B2 Adambadura Y3 Bravenewworld\n\n85) goulo: Build G1 Goulo\n\n86) zara2stra: Trade G3 Y3 Zara2stra\n\n87) AdamBadura: Sacrifice Y3 Nexttothevoid\nMove B2 Bravenewworld Goulo\nMove B2 Nexttothevoid Goulo\nMove B1 Nexttothevoid Goulo\nCatastrophe Goulo B\n\n88) goulo: Discover G1 Goulo R3 Pomo\n\n89) zara2stra: Build B1 Zara2stra\n\n90) AdamBadura: Sacrifice Y2 Adambadura\nMove R1 Nexttothevoid Zara2stra\nMove Y1 Nexttothevoid Zara2stra\n\tAdamBadura: goulo, unless you stop zara2stra somehow he will destroy me in two moves...\n\n91) goulo: Build G1 Goulo\n\tAdamBadura: This is just agony, but lets end this normally. Somehow I suck at multi-player version. I have srious problems with timing.\n\n92) zara2stra: Attack R1S Zara2stra\n\tgoulo: Then of course I must try to stop zara2stra! :)\n\tzara2stra: It&#39;s obvious since at least three turns, that I won&#39;t be able to stop goulo from eliminating me, nor will I be able to eliminate Adam first. So thanks for another nice game guys :) Maybe next time we should find another player to bring some variety to whom goulo eliminates :P \n\n93) AdamBadura: Build Y1 Zara2stra\n\tAdamBadura: :D\n\n94) goulo: Sacrifice Y3 Goulo\nMove G1 Pomo Zara2stra\nMove G1 Goulo Zara2stra\nMove G2 Goulo Zara2stra\nCatastrophe Zara2stra G\n\tgoulo: Thanks for the game! Very close!\r\na2na and I are going to Berlin for a long weekend. Feel free to start another game with me, just don&#39;t expect as frequent updates during the weekend. Maybe arturion would be a 4th for Homeworlds (feel free to ask him, Adam). Although then the players left and right of the newbie would have an advantage. :)\r\nOr start another game of blam for now. :)\n\n\nHomeworlds Online (SDG# 16464)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.27, Ended: 2010.6.7\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld B1 Y2 G3\n\n2) dlwillson: Homeworld R3 G1 B3\n\tSilentTitan: Ok.... Step1 DONE*  um... step to may be much harder...............\n\tSilentTitan: lol step2\n\tSilentTitan: oh... yeah.. I can see where this is going .... &quot;flurry of turns&quot; was the selling phrase I beleive.............\n\tSilentTitan: Hey... this is fun... maybe I should mock all the others ...... maybe they take turns faster then?\r\n\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: Build B1 Dlwillson\n\n5) SilentTitan: Discover G1 Silenttitan B3 Really\n\n6) dlwillson: B B1 Dlwillson\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dlwillson: T B3 Y3 Dlwillson\n\n9) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Really\nBuild G2 Really\nBuild G2 Silenttitan\n\n10) dlwillson: B B2 Dlwillson\n\tdlwillson: Impressive!\n\tSilentTitan: only if it leads to a win\n\tdlwillson: Well, it&#39;s still impressive. Even if it&#39;s just &#39;Zilla bait.\n\tSilentTitan: did you have a turn you wanted to submit to counter that ... or just chat about it some more?\r\n\n\tdlwillson: Just chat. I&#39;ll do a turn later. At work now and plenty to do.\n\n11) SilentTitan: Build G3 Silenttitan\n\n12) dlwillson: Discover B2 Dlwillson B2 Illusion\n\n13) SilentTitan: Trade G3 Y3 Silenttitan\n\n14) dlwillson: D B1 Dlwillson B2 Mystery\n\n15) SilentTitan: Build G3 Silenttitan\n\n16) dlwillson: Build B3 Dlwillson\n\n17) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover G2 Really Y2 Crazy\nDiscover G2 Really Y2 Isdaveyhelpingu\nDiscover G2 Silenttitan B3 Uhhunsure\n\n18) dlwillson: Trade B3 R3 Dlwillson\n\n19) SilentTitan: Trade G1 R1 Silenttitan\n\tSilentTitan: oh.. come on... there are great system names... yet no comment?  \n\n20) dlwillson: Build B3 Dlwillson\n\n21) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: wow.. I really screwed up this game .. sorry about that\r\n\n\n22) dlwillson: Sacrifice Y3 Dlwillson\nDiscover B1 Mystery G3 Insanity\nDiscover B2 Illusion G3 Dementia\nMove R3 Dlwillson Crazy\n\tdlwillson: :-) Yes, yes, you did. And yes, of course Davey is helping me. But never underestimate my ability to snatch defeat from the jaws of victory.\n\n23) SilentTitan: Move G2 Crazy Dementia\n\n24) dlwillson: B B2 Dementia\n\n25) SilentTitan: Trade G2 B2 Uhhunsure\n\n26) dlwillson: Sacrifice B2 Dementia\nTrade B1 Y1 Dlwillson\nTrade B1 Y1 Insanity\n\n27) SilentTitan: Sacrifice G2 Dementia\nBuild G2 Isdaveyhelpingu\nBuild R1 Silenttitan\n\n28) dlwillson: B Y1 Insanity\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Isdaveyhelpingu\nBuild G3 Silenttitan\nBuild R1 Silenttitan\n\n30) dlwillson: B Y3 Dlwillson\n\n31) SilentTitan: Move G2 Isdaveyhelpingu Dlwillson\n\n32) dlwillson: A G2 Dlwillson\n\n33) SilentTitan: Move G2 Isdaveyhelpingu Dlwillson\n\n34) dlwillson: Sacrifice G2 Dlwillson\nBuild Y3 Dlwillson\nBuild Y3 Insanity\n\n35) SilentTitan: Sacrifice G2 Isdaveyhelpingu\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nCatastrophe Dlwillson G\n\n36) dlwillson: Trade Y3 R3 Dlwillson\n\tSilentTitan: OOK\n\n37) SilentTitan: Move R1 Silenttitan Dlwillson\n\n38) dlwillson: S R3 Dlwillson\nA R1 Dlwillson\nPass\nPass\n\tSilentTitan: you&#39;re dead honey\n\n39) SilentTitan: Trade B2 Y2 Uhhunsure\n\n40) dlwillson: Sacrifice B2 Dementia\nTrade R1 G1 Dlwillson\nTrade Y1 R1 Insanity\n\n41) SilentTitan: Build G2 Really\n\n42) dlwillson: Build G2 Dlwillson\n\n43) SilentTitan: Sacrifice G2 Really\nBuild Y1 Uhhunsure\nBuild G2 Really\n\n44) dlwillson: Sacrifice Y3 Insanity\nMove G1 Dlwillson Silenttitan\nMove G2 Dlwillson Silenttitan\nMove Y3 Dlwillson Silenttitan\nCatastrophe Silenttitan G\n\n45) SilentTitan: Sacrifice Y2 Uhhunsure\nMove Y1 Uhhunsure Silenttitan\nMove G1 Really Silenttitan\n\n46) dlwillson: S R3 Crazy\nA G1 Silenttitan\nA R1 Silenttitan\nA R1 Silenttitan\n\tdlwillson: Looks like you only turned me into a llama, or something...\n\n\tSilentTitan: yup... made the one mistake that let you win\n\tSilentTitan: of course... 5 battleships to 1 .. I should have never even had a chance at you.  \n\tdlwillson: Technically, you had a pretty good chance when you had me locked out of green. Want to play again?\n\nHomeworlds Online (SDG# 16465)\nStarted: 2010.5.27, Ended: 2010.6.9\nParticipants: TwoShort (S), bhorner (N)\nWinner: TwoShort\n\n1) bhorner: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: Howdy\n\n3) bhorner: Build Y1 Bhorner\n\n4) TwoShort: Build B1 Twoshort\n\tbhorner: Hello.\n\n5) bhorner: Build Y1 Bhorner\n\tbhorner: I can&#39;t wait to see what you&#39;re doing.  Your moves seem so unwise that I can&#39;t help but learn something.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) bhorner: Trade Y1 G1 Bhorner\n\n8) TwoShort: Build B2 Twoshort\n\n9) bhorner: Build Y1 Bhorner\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) bhorner: Discover G1 Bhorner B3 Stumpy\n\n12) TwoShort: Build B2 Grogar\n\n13) bhorner: Move Y1 Bhorner Stumpy\n\n14) TwoShort: Build B2 Twoshort\n\tbhorner: It never seems like the right moment to make a blue...  I&#39;m sure this will be my downfall somehow.\n\tbhorner: *seemed...\n\n15) bhorner: Discover Y1 Stumpy G2 Toolate\n\tTwoShort: I think turn 1 was the only right moment.  Not that it would have made for a great opening, but that was the last time you could flip the three, grow a blue, and flip back or move out before I could get a y2 and throw in another for the catastrophe.  I also think this will be your downfall, but I know how :)\n\n16) TwoShort: Build B3 Grogar\n\n17) bhorner: Build Y1 Toolate\n\n18) TwoShort: Sacrifice B2 Grogar\nTrade B2 R2 Twoshort\nTrade B3 G3 Grogar\n\tbhorner: That would have been funny if I&#39;d caught you there.  :)\n\n19) bhorner: Trade Y1 R1 Bhorner\n\tTwoShort: Yeah.  I was thinking the right move, just somehow typed the wrong one :)\n\n20) TwoShort: Sacrifice G3 Grogar\nBuild B2 Grogar\nBuild B2 Twoshort\nBuild B3 Grogar\n\n21) bhorner: Build G1 Stumpy\n\tbhorner: Can you give me a gauge on how far ahead of me you think you are?  Is it like 60-40, or worse?  I can&#39;t see anything obviously threatening me...  are you just building up material for a big strike?\n\tTwoShort: Big pieces are much more valuable than little ones.  My super-crude rule of thumb is 2s are worth 3 1s, 3s are worth 3 2s.  So by that, I&#39;m up about 2-to-1.  That&#39;s subject to a lot of exceptions for position details of course.  But in this case, I&#39;ve got the blue engine going that will keep getting me more big pieces.  I&#39;m not threatening directly now, but that&#39;s how most games go; barring a big blunder by the opponent, the winner usually gets there by getting control of more/better material, building up until the actual attack is unstoppable.  I may threaten you shortly, but mostly to force you to deal with it rather than building.  Until I can get all the way to victory, if I can expand my 3 pointer advantage, that&#39;s the top priority.\n\n22) TwoShort: Trade B2 Y2 Grogar\n\n23) bhorner: Sacrifice Y1 Toolate\nMove G1 Stumpy Toolate\n\n24) TwoShort: Discover B3 Grogar G3 Gonzo\n\n25) bhorner: Trade Y3 G3 Bhorner\n\n26) TwoShort: Build B2 Grogar\n\n27) bhorner: Build Y1 Toolate\n\n28) TwoShort: Build B3 Gonzo\n\n29) bhorner: Sacrifice Y1 Toolate\nMove G1 Stumpy Bhorner\n\n30) TwoShort: Sacrifice Y2 Grogar\nMove B3 Gonzo Bhorner\nMove B3 Gonzo Bhorner\n\tTwoShort: Red Alert.\n\tTwoShort:   So I typed that because &quot;Red Alert&quot; is the traditional warning to newer players meaning I have a crushing move next turn if you don&#39;t do something about it.  But now that I&#39;m looking at it more, I don&#39;t think you can do anything about it.\r\n  I feel a little guilty in that the fast blue monopoly opening I used is a bit of a special case response to someone taking a small blue as part of a 1-2 homeworld as first player.  It&#39;s hard to deal with, and doesn&#39;t necessarily teach you much about the more general game, so sometimes I don&#39;t do it vs. new players; but this time I was in a bit of a rush and didn&#39;t check how much you&#39;d played...  Anyhow, I hope it wasn&#39;t too demoralizing :) \r\n  I&#39;ll be happy to play a more instructive game anytime; just don&#39;t take a b1 star :)\n\tbhorner: I bet this will hold you off for a move.  :)\n\n31) bhorner: Trade G3 B3 Bhorner\nCatastrophe Bhorner B\n\n32) TwoShort: Move B2 Twoshort Bhorner\n\n33) bhorner: Build R1 Bhorner\n\n34) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Bhorner\nAttack R1 Bhorner\n\n35) bhorner: Move G1 Toolate Twoshort\n\n36) TwoShort: Attack G1 Bhorner\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 16438)\nStarted: 2010.5.27, Ended: 2010.6.14\nParticipants: bhorner (S), rootbier (N)\nWinner: bhorner\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) bhorner: Homeworld B3 G2 Y3\n\trootbier: Welcome to the site Have you played homeworlds off-line?\n\n3) rootbier: Build G1 Rootbier\n\tbhorner: Hello, yes a few times (maybe 4?) with 3 and 4 players, two players seems like it should be a better game.\n\trootbier: Ahh good good - then good luck and good game and feel free to ask/discuss along the way.\n\n4) bhorner: Build Y1 Bhorner\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) bhorner: Build Y1 Bhorner\n\n7) rootbier: Build G1 Rootbier\n\n8) bhorner: Discover Y1 Bhorner G1 S1\n\tbhorner: I&#39;ve started a couple games, and it seems like everyone against me uses BY for their world, and G for their ship...  Is there a reason?  I made my ship Yellow for later triple sacrifice catastrophe moves, couldn&#39;t think of any other reason...\n\n9) rootbier: Discover Y1 Rootbier B3 Cornfed\n\trootbier: The g3 sacrifice can be really powerful (green sacrifices in general can be). None of the other sacrifices will give you back a size 3 ship (save certain rare attack situations I suppose) -- the g3-sac can not only get you right back to a g3 but can give you two more ships. You could generate half a catastrophe without losing a 3. You could generate multiple additional 3s.\r\n\r\nAs far as not having red at home -- I think people mix it up and sometimes do take it... but your safer just having a single little red ship at home (not supplying attack tech to visitors). And of course if you have the g3 as your flagship you&#39;re not going to want or need a green star... hence BY homes.\r\n\r\nI&#39;m often angling for a g3sac -- so you&#39;ll probably see it soon enough. It&#39;s also sometimes easy to just repeat and repeat.\n\n10) bhorner: Trade Y1 B1 Bhorner\n\n11) rootbier: Build G1 Rootbier\n\n12) bhorner: Discover Y1 S1 G3 Uncreative\n\n13) rootbier: Move G1 Rootbier Cornfed\n\n14) bhorner: Build Y1 Uncreative\n\n\nHomeworlds Online (SDG# 16401)\nStarted: 2010.5.27, Ended: 2010.6.1\nParticipants: bhorner (S), ts52 (N)\nWinner: bhorner\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) bhorner: Homeworld B3 G2 Y3\n\tts52: Have a good game.\n\tbhorner: You too!\n\n3) ts52: Build G1 Ts52\n\n4) bhorner: Build Y1 Bhorner\n\n5) ts52: Build G1 Ts52\n\n6) bhorner: Build Y1 Bhorner\n\n7) ts52: Trade G1 Y1 Ts52\n\n8) bhorner: Discover Y1 Bhorner G1 S1\n\n9) ts52: Discover Y1 Ts52 G3 Oscar\n\n10) bhorner: Build Y2 S1\n\n11) ts52: Discover G1 Ts52 Y3 Bigbird\n\n12) bhorner: Trade Y1 B1 Bhorner\n\n13) ts52: Build G1 Ts52\n\n14) bhorner: Move Y2 S1 Bigbird\n\n15) ts52: Build G2 Bigbird\n\n16) bhorner: Sacrifice B1 Bhorner\nTrade Y2 R2 Bigbird\n\n17) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\n\n18) bhorner: Attack G2 Bigbird\n\n19) ts52: Discover G2 Ts52 Y3 Zoe\n\tbhorner: Thanks, I&#39;ve learned something, I wonder if anyone could still pull this out?\n\n20) bhorner: Attack G1 Bigbird\n\tts52: It&#39;s probably possible. I&#39;ve recovered from some pretty bad spots, and lost some games that looked like they should have been mine.\n\n21) ts52: Discover G3 Bigbird Y2 Banana\n\n22) bhorner: Move Y1 S1 Bhorner\n\n23) ts52: Trade G1 B1 Ts52\n\n24) bhorner: Sacrifice Y3 Bhorner\nMove G2 Bigbird Ts52\nMove G1 Bigbird Ts52\nMove R2 Bigbird Ts52\n\n25) ts52: Trade G3 Y3 Ts52\n\tbhorner: going for broke!\n\n26) bhorner: Attack B1 Ts52\n\tts52: Good move. \n\n27) ts52: Discover G3 Banana Y1 Lemon\n\n28) bhorner: Build B1 Ts52\n\n29) ts52: M G3 Lemon Bhorner\n\n30) bhorner: Trade B1 Y1 Ts52\n\n31) ts52: T Y3 R3 Ts52\n\tbhorner: Oh wow...  when you said good move, I thought you were just humoring me.  I think I&#39;ve got you...?  Up until just now, I thought you were going to take me out, but I&#39;d get half your homeworld first.\n\tts52: Yeah, I failed to remember one of the central tenants of home worlds. When your enemy gets a gun, you get a gun.\n\n32) bhorner: Sacrifice G2 Ts52\nBuild R1 Ts52\nBuild R1 Ts52\nCatastrophe Ts52 R\n\tts52: Thanks for the game.\n\tbhorner: Oops, I posted the same thing: &quot;Thanks for the game!&quot;, but I put it in the notes section, instead of here.  So... Thanks for the game!\n\n\nHomeworlds Online (SDG# 16419)\nStarted: 2010.5.27, Ended: 2010.6.28\nParticipants: mathochist (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld G2 B1 Y3\n\n2) mathochist: Homeworld B1 Y3 G3\n\n3) bhorner: Build Y1 Bhorner\n\n4) mathochist: Build G1 Mathochist\n\n5) bhorner: Build Y1 Bhorner\n\n6) mathochist: Trade G1 B1 Mathochist\n\n7) bhorner: Discover Y1 Bhorner G3 S1\n\n8) mathochist: Build B2 Mathochist\n\n9) bhorner: Build Y1 S1\n\n10) mathochist: Discover B1 Mathochist G2 Oscar\n\n11) bhorner: Trade Y3 G3 Bhorner\n\n12) mathochist: Sacrifice G3 Mathochist\nBuild B2 Oscar\nBuild B2 Oscar\nBuild B3 Mathochist\n\n13) bhorner: Build Y2 Bhorner\n\n14) mathochist: Trade B3 G3 Mathochist\n\n15) bhorner: Discover Y1 S1 G2 Namey\n\n16) mathochist: Build B3 Mathochist\n\n17) bhorner: Move Y1 Bhorner S1\n\n18) mathochist: T B2 Y2 Oscar\n\n19) bhorner: Sacrifice G3 Bhorner\nBuild Y2 S1\nBuild Y3 Bhorner\nBuild Y3 Namey\n\n20) mathochist: Sacrifice B2 Oscar\nTrade B3 G3 Mathochist\nTrade B2 R2 Mathochist\n\tmathochist: Eep, there go all the yellows\n\n21) bhorner: Trade Y2 R2 Bhorner\n\n22) mathochist: Discover G3 Mathochist Y2 Ernie\n\tmathochist: This is an interesting game.\n\tbhorner: I think I&#39;m behind, but I haven&#39;t played enough to know for certain.\r\n\n\n23) bhorner: Discover Y1 S1 B2 Other\n\n24) mathochist: Move Y2 Oscar S1\n\tmathochist: Hard to say, but by most counts, I think you&#39;re actually ahead.\n\n25) bhorner: Move Y2 S1 Other\n\tbhorner: I hope I win then.  :)\n\n\nHomeworlds Online (SDG# 16476)\nVariants: &quot;Hard time&quot;\nStarted: 2010.5.28, Ended: 2010.6.13\nParticipants: dethdukk (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld B1 R2 G3\n\n2) dethdukk: Homeworld B1 G3 B3 *\n\n3) mathochist: Build G1 Mathochist\n\tmathochist: Grar, I think I made a mistake.  Oh well.\n\n4) dethdukk: Build B1 Dethdukk\n\tdethdukk: it depends... its pretty easy to beat if you do well, and i havent used it much so I might mess up.\n\n5) mathochist: Build G1 Mathochist\n\n6) dethdukk: Trade B1 Y1 Dethdukk\n\tmathochist: Hmm.  That&#39;s one possible way around it, but looking at it again, I can see the risk.  No good.\n\n7) mathochist: Trade G1 B1 Mathochist\n\n\tmathochist: Eep, sorry you ran out of time!  Challenge me again without hard time, if you like.\n\nHomeworlds Online (SDG# 16517)\nStarted: 2010.5.30, Ended: 2010.5.31\nParticipants: bhorner (S), TomClem (N)\nWinner: bhorner\n\n1) TomClem: Homeworld R1 B2 G3\n\n2) bhorner: Homeworld B3 G2 Y3\n\tTomClem: Good Luck!\n\n3) TomClem: Build G1 Tomclem\n\tbhorner: Can&#39;t move?\n\n4) bhorner: Build Y1 Bhorner\n\tTomClem: I&#39;ll have yellow soon\n\n5) TomClem: B G1 Tomclem\n\n6) bhorner: Build Y1 Bhorner\n\n7) TomClem: Trade G1 Y1 Tomclem\n\n8) bhorner: Discover Y1 Bhorner G1 S1\n\tTomClem: how are your other games going?  feeling good about them?\n\n9) TomClem: Build Y2 Tomclem\n\tbhorner: Can&#39;t tell about the other games, it concerns me that they all seem to be using the same homeworld setup against me...  and I don&#39;t know why.  I have a couple guesses though.\n\n10) bhorner: Build Y2 S1\n\n11) TomClem: Discover Y2 Tomclem G3 Badben\n\tTomClem: http://wiki.superdupergames.org/games/homeworlds\r\nI assume you have read the openings section?\n\tbhorner: Section of what?\n\n12) bhorner: Trade Y1 B1 Bhorner\n\tTomClem: of that wiki page.  they discuss what is considered the best starting position\n\tbhorner: I have now, sounds like it&#39;s all up in the air...  except for what we already thought about YBG at the homeworld...\n\n13) TomClem: Move G1 Tomclem Badben\n\n14) bhorner: Sacrifice B1 Bhorner\nTrade Y2 R2 S1\n\n15) TomClem: Build G1 Tomclem\n\n16) bhorner: Move R2 S1 Badben\n\n17) TomClem: Move Y2 Badben S1\n\n18) bhorner: Attack G1 Badben\n\n19) TomClem: Trade G1 B1 Tomclem\n\n20) bhorner: Build Y1 Bhorner\n\n21) TomClem: Build Y2 Tomclem\n\n22) bhorner: Build R1 Badben\n\n23) TomClem: Build G1 Tomclem\n\n24) bhorner: Move Y1 S1 Badben\n\n25) TomClem: Sacrifice B1 Tomclem\nTrade Y2 R2 S1\n\n26) bhorner: Discover Y1 Badben G2 Stall\n\n27) TomClem: Move G1 Tomclem Badben\n\n28) bhorner: Attack G1 Badben\n\n29) TomClem: Build G2 Tomclem\n\n30) bhorner: Sacrifice G1 Badben\nBuild Y2 Stall\n\n31) TomClem: Move G2 Tomclem Badben\n\n32) bhorner: Attack G2 Badben\n\n33) TomClem: Sacrifice Y1 Tomclem\nMove R2 S1 Stall\n\n34) bhorner: Sacrifice R1 Badben\nAttack R2 Stall\n\n35) TomClem: Move G3 Tomclem Badben\nCatastrophe Badben Green\n\n36) bhorner: Discover Y1 Stall G3 Stage\n\tTomClem: gg\n\tbhorner: I don&#39;t see a fast way to win, though it seems I have a big advantage...\n\n37) TomClem: Trade Y2 G2 Tomclem\n\n38) bhorner: Trade Y3 G3 Bhorner\n\n39) TomClem: Build G1 Tomclem\n\n40) bhorner: Build Y1 Stage\n\n41) TomClem: Trade G2 Y2 Tomclem\n\n42) bhorner: Build R1 Stall\n\n43) TomClem: Build G1 Tomclem\n\n44) bhorner: Discover G3 Bhorner B1 Twoaway\n\n45) TomClem: Build Y2 Tomclem\n\n46) bhorner: Sacrifice G3 Twoaway\nBuild Y3 Stall\nBuild Y3 Bhorner\nBuild Y3 Bhorner\n\n47) TomClem: Build G1 Tomclem\n\n48) bhorner: Sacrifice Y2 Stall\nMove Y1 Stage Tomclem\nMove Y1 Stage Tomclem\nCatastrophe Tomclem Y\n\n49) TomClem: Trade G1 Y1 Tomclem\n\n50) bhorner: Sacrifice Y3 Bhorner\nDiscover R2 Stall R3 Temp\nMove R2 Temp Tomclem\nPass\n\n51) TomClem: Build Y1 Tomclem\n\n52) bhorner: Attack G1 Tomclem\n\n53) TomClem: Build G1 Tomclem\n\n54) bhorner: Attack Y1 Tomclem\n\n55) TomClem: Build Y2 Tomclem\n\n56) bhorner: Build Y2 Tomclem\nCatastrophe Tomclem Y\n\n57) TomClem: Sacrifice G1 Tomclem\nBuild G1 Tomclem\n\n58) bhorner: Build G2 Tomclem\nCatastrophe Tomclem G\n\n\nHomeworlds Online (SDG# 16463)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.3, Ended: 2010.6.19\nParticipants: toriano (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) toriano: Homeworld B2 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) toriano: Build G1 Toriano\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) toriano: Discover G1 Toriano Y1 Lucy\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) toriano: Build G1 Toriano\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) toriano: Trade G3 Y3 Toriano\n\n11) SilentTitan: Trade Y1 B1 Silenttitan\n\n12) toriano: Build G1 Toriano\n\n13) SilentTitan: Discover Y2 Silenttitan R3 Burn\n\n14) toriano: Build G2 Lucy\n\n15) SilentTitan: Build G2 Silenttitan\n\n16) toriano: Trade G1 B1 Toriano\n\n17) SilentTitan: Move B1 Silenttitan Burn\n\n18) toriano: Move B1 Toriano Lucy\n\n19) SilentTitan: Move G2 Silenttitan Burn\n\n\tSilentTitan: I guess that game was too short for you ... we can play again if you&#39;d like and use a longer time frame.\n\nHomeworlds Online (SDG# 16565)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.4, Ended: 2010.6.16\nParticipants: SilentTitan (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi Titan.  Have a good game!\n\n2) SilentTitan: Homeworld B2 G3 R3\n\n3) ZackStack: Build G1 Zackstack\n\tSilentTitan: Hey, thanks you too\n\n4) SilentTitan: Build R1 Silenttitan\n\n5) ZackStack: Trade G1 R1 Zackstack\n\n6) SilentTitan: Build R2 Silenttitan\n\n7) ZackStack: Build R2 Zackstack\n\n8) SilentTitan: Trade R2 Y2 Silenttitan\n\n9) ZackStack: Trade R2 Y2 Zackstack\n\n10) SilentTitan: Discover R1 Silenttitan Y1 Sol\n\n11) ZackStack: Discover R1 Zackstack B3 Azure\n\n12) SilentTitan: Build R2 Silenttitan\n\n13) ZackStack: Build G1 Zackstack\n\n14) SilentTitan: Trade R2 G2 Silenttitan\n\n15) ZackStack: Move G1 Zackstack Azure\n\n16) SilentTitan: Sacrifice G2 Silenttitan\nBuild R2 Sol\nBuild R2 Silenttitan\n\n17) ZackStack: Build R2 Azure\n\tZackStack: On second thought...\n\n18) SilentTitan: Discover R2 Sol Y3 Sole\n\n19) ZackStack: Trade R2 Y2 Azure\n\n20) SilentTitan: Trade R2 B2 Silenttitan\n\n21) ZackStack: Build R2 Azure\n\n22) SilentTitan: Trade Y2 G2 Silenttitan\n\n23) ZackStack: Trade R2 G2 Azure\n\n24) SilentTitan: Sacrifice G2 Silenttitan\nBuild R2 Sol\nBuild B1 Silenttitan\n\n25) ZackStack: Trade G1 B1 Azure\n\n26) SilentTitan: Trade B2 Y2 Silenttitan\n\n27) ZackStack: Discover B1 Azure G1 Pea\n\n28) SilentTitan: Move B1 Silenttitan Sol\n\n29) ZackStack: Build G1 Zackstack\n\n30) SilentTitan: Trade R2 G2 Sol\n\n31) ZackStack: Discover G1 Zackstack R3 Rojo\n\n32) SilentTitan: Sacrifice G2 Sol\nBuild B1 Sol\nBuild R2 Sol\n\n33) ZackStack: Build B2 Pea\n\n34) SilentTitan: Discover B1 Sol G3 Soul\n\n35) ZackStack: Trade B1 Y1 Pea\n\n36) SilentTitan: Trade Y2 G2 Silenttitan\n\n37) ZackStack: Sacrifice G2 Azure\nBuild B1 Pea\nBuild B3 Pea\n\n38) SilentTitan: Sacrifice G2 Silenttitan\nBuild B3 Soul\nBuild R2 Sole\n\tZackStack: Bah.  That didn&#39;t look as good as I thought it would :-)\n\n39) ZackStack: Sacrifice Y2 Zackstack\nMove B1 Pea Silenttitan\nMove B2 Pea Silenttitan\n\tSilentTitan: well.. I don&#39;t know ... this has to be the most convoluted game of this I&#39;ve played\n\tZackStack: You haven&#39;t played very much? ;-)\n\tSilentTitan: true this is like only my 10th game I think\n\n40) SilentTitan: Sacrifice B3 Soul\nTrade R2 G2 Sole\nTrade B1 G1 Soul\nTrade R2 Y2 Sol\n\tdlwillson: Hey! You already used the &quot;sole&quot; theme!\n\tdlwillson: I always wondered if the peanut gallery could chime in. I guess they can.\n\tdlwillson: Hey Zack. Hey Tripp. I&#39;m going back on radio silence now, unless you talk to me, then I&#39;ll pick it right back up. I promise not to shout advice, except in generic and unusable ways, like, &quot;RUN SILENT!&quot; or things like that.\n\n41) ZackStack: Build B1 Silenttitan\nCatastrophe Silenttitan Blue\n\tZackStack: Hey DL!  I hope you&#39;re enjoying the view from the gallery ;-)  If you could take care of humming the imperial march for me I&#39;ll be able to focus on what I&#39;m doing here better :-D\n\tSilentTitan: wow... you&#39;d think that guy would spend more time trying to figure out how to win.\n\n42) SilentTitan: Build G2 Sole\n\tZackStack: HA!  Watching us is unlikely to help I think :-D\n\n43) ZackStack: Trade B3 R3 Pea\n\n44) SilentTitan: Sacrifice Y2 Sol\nMove G1 Soul Zackstack\nMove G2 Sole Zackstack\n\tdlwillson: Actually, I&#39;m learning a lot. Good game both. Here&#39;s your Imperial March, Zack. :-)\r\nhttp://www.youtube.com/watch?v=-bzWSJG93P8\n\n45) ZackStack: Trade G3 Y3 Zackstack\n\tZackStack: BOOM!  Now for the hard part...\n\n46) SilentTitan: Trade G1 Y1 Zackstack\n\n47) ZackStack: Sacrifice R3 Pea\nAttack Y1 Zackstack\nAttack G2 Zackstack\nPass\n\tZackStack: On second thought...\n\n48) SilentTitan: Build R2 Silenttitan\n\n49) ZackStack: Move R1 Azure Pea\n\n50) SilentTitan: Sacrifice B1 Sol\nTrade R2 B2 Silenttitan\n\n51) ZackStack: Sacrifice G2 Zackstack\nBuild Y2 Pea\nBuild Y2 Azure\n\tZackStack: I hate to loose this large... but I don&#39;t see a better move.\n\n52) SilentTitan: Build R2 Sole\n\n53) ZackStack: Build R2 Pea\n\n54) SilentTitan: Sacrifice G2 Sole\nBuild R3 Sol\nBuild B1 Silenttitan\n\n55) ZackStack: Build Y3 Pea\n\n56) SilentTitan: Move R3 Sol Azure\n\n57) ZackStack: Sacrifice Y2 Azure\nDiscover Y2 Azure B2 Berry\nMove R1 Pea Berry\n\n58) SilentTitan: Trade B2 Y2 Silenttitan\n\n59) ZackStack: Sacrifice G1 Rojo\nBuild R3 Berry\n\n60) SilentTitan: Trade R3 G3 Silenttitan\n\n61) ZackStack: Trade R1 G1 Berry\n\n62) SilentTitan: Trade R3 G3 Azure\n\n63) ZackStack: Build G1 Berry\n\n64) SilentTitan: Trade G3 B3 Silenttitan\n\n65) ZackStack: Sacrifice Y3 Pea\nMove G1 Berry Silenttitan\nMove G1 Berry Silenttitan\nMove R3 Berry Silenttitan\n\n\tSilentTitan: good game\n\tZackStack: Yes.  Thanks for playing!\n\nHomeworlds Online (SDG# 16496)\nStarted: 2010.6.8, Ended: 2010.6.14\nParticipants: rootbier (S), cleverpun (N)\nWinner: cleverpun\n\n1) cleverpun: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 16589)\nStarted: 2010.6.8, Ended: 2010.6.25\nParticipants: captncavern (S), supergnouf (N)\nWinner: supergnouf\n\n1) supergnouf: Homeworld G3 B1 Y3\n\n2) captncavern: Homeworld B3 G2 Y3\n\tcaptncavern: Allez, encore une partie que je vais perdre ;)\n\tsupergnouf: V&#39;la l&#39;optimisme ! En attendant si tu jouais ? :-)\n\n3) supergnouf: Buil Y1 Supergnouf\n\tcaptncavern: D&eacute;sol&eacute;, j&#39;ai d&ucirc; oublier de valider mon coup :)\n\n4) captncavern: Build Y1 Captncavern\n\n5) supergnouf: Trade Y1 B1 Supergnouf\n\n6) captncavern: Build Y1 Captncavern\n\n7) supergnouf: Build Y1 Supergnouf\n\n8) captncavern: Discover Y1 Captncavern G1 Abc\n\n9) supergnouf: Discover Y1 Supergnouf G2 Caraba\n\tsupergnouf: Bravo, vive l&#39;originalit&eacute; pour le nom de ce syst&egrave;me\r\npourquoi pas azerty tant qu&#39;on y est... :-)\n\n10) captncavern: Trade Y1 R1 Captncavern\n\n11) supergnouf: Build B1 Supergnouf\n\n12) captncavern: Build R1 Captncavern\n\n13) supergnouf: Move B1 Supergnouf Caraba\n\tcaptncavern: Parce que c&#39;est le premier nom qui m&#39;est venu :)\n\tcaptncavern: Ah, et pour azerty, merci, je note l&#39;id&eacute;e ;)\n\n14) captncavern: Build R1 Captncavern\n\n15) supergnouf: Build B2 Caraba\n\n16) captncavern: Move R1 Captncavern Abc\n\n17) supergnouf: Trade B2 R2 Caraba\n\n18) captncavern: Discover R1 Abc Y2 Azerty\n\n19) supergnouf: Build R2 Caraba\n\n20) captncavern: Trade R1 G1 Captncavern\n\n21) supergnouf: Build B2 Caraba\n\n22) captncavern: Build G1 Captncavern\n\tcaptncavern: T&#39;as eu le temps de jeter un oeil &agrave; mes petits dessins ou t&#39;es d&eacute;j&agrave; en vacances ?\n\n23) supergnouf: Trade B2 G2 Caraba\n\tsupergnouf: Ni trop le temps ni trop les moyens de recarder tes productions, vite fait, je dirais qu&#39;on s&#39;attend a voir la deuxi&egrave;me &quot;aile&quot; des vaisseaux au fond, rien a dire sur le reste.\n\n24) captncavern: Trade G1 R1 Captncavern\n\n25) supergnouf: Build B2 Caraba\n\n26) captncavern: Discover R1 Captncavern Y1 Xyz\n\n27) supergnouf: Move R2 Caraba Supergnouf\n\n28) captncavern: Build Y2 Abc\n\n29) supergnouf: Sacrifice G2 Caraba\nBuild Y2 Supergnouf\nBuild Y3 Caraba\n\n30) captncavern: Build G1 Captncavern\n\n31) supergnouf: Trade B2 G2 Caraba\n\n32) captncavern: Move G1 Captncavern Abc\n\n33) supergnouf: Move G2 Caraba Xyz\n\n34) captncavern: Move G1 Captncavern Xyz\n\n35) supergnouf: Sacrifice R2 Caraba\nAttack R1 Xyz\nAttack G1 Xyz\n\n36) captncavern: Build R2 Captncavern\n\n37) supergnouf: Sacrifice Y3 Caraba\nMove G1 Xyz Captncavern\nMove G2 Xyz Captncavern\nMove R1 Xyz Captncavern\n\tcaptncavern: C&#39;est pas franchement la f&ecirc;te !\n\n38) captncavern: Attack R1 Captncavern\n\tsupergnouf: &Ccedil;a va pas trop mal en ce qui me concerne :-)\r\n\n\tsupergnouf: Aller, je tente un truc, on verra bien\r\n\n\n39) supergnouf: Build G3 Captncavern\nCatastrophe Captncavern G\n\n40) captncavern: Move R2 Captncavern Caraba\n\tcaptncavern: Ouais, ben c&#39;est pas &ccedil;a qui va arranger mes bidons !\n\n41) supergnouf: Move Y3 Supergnouf Caraba\n\n42) captncavern: Sacrifice Y1 Abc\nDiscover R2 Caraba Y3 Bleu\n\n43) supergnouf: Build B2 Caraba\n\n44) captncavern: Trade R1 Y1 Captncavern\n\n45) supergnouf: Discover B1 Supergnouf B2 Vandemaar\n\n46) captncavern: Sacrifice Y3 Captncavern\nMove Y1 Captncavern Caraba\nMove Y2 Abc Caraba\nMove G1 Abc Captncavern\nCatastrophe Caraba Y\n\n47) supergnouf: Sacrifice Y2 Supergnouf\nMove B2 Caraba Captncavern\nPass\n\n48) captncavern: Move R2 Bleu Caraba\n\n49) supergnouf: Build R1 Supergnouf\n\tcaptncavern: Ah ! Ben on y voit plus clair :)\n\n50) captncavern: Build R2 Captncavern\n\n51) supergnouf: Sacrifice R2 Supergnouf\nAttack R2 Captncavern\nAttack R1 Captncavern\n\tcaptncavern: Tiens, j&#39;ai fini mon jeu (aux playtests pr&egrave;s, donc il peut encore beaucoup changer), tu peux voir &ccedil;a l&agrave; : http://www.boardgamegeek.com/boardgame/73209/spacebooters-sneaking-and-smuggling (il y a une erreur dans les composants actuels, la correction est en chemin) et les r&egrave;gles sont l&agrave; : http://www.griffon-traduction.com/temp/Spacebooters-Sneaking_and_smuggling_V0.2.doc\n\n52) captncavern: Build G1 Captncavern\n\tsupergnouf: J&#39;irais voir &ccedil;a des que je suis chez moi, avec  un peu de chance lundi prochain, pr&eacute;sentement, je suis enferm&eacute; dehors :-(\r\nn&#39;oublie pas de ramener une version de ton jeu\n\tcaptncavern: T&#39;inqui&egrave;tes, c&#39;&eacute;tait bien pr&eacute;vu ;)\r\nComment tu t&#39;es d&eacute;brouill&eacute; pour te retrouver enferm&eacute; dehors ? Et o&ugrave; tu dors ?\n\n53) supergnouf: Sacrifice R2 Captncavern\nAttack G1 Captncavern\nAttack G1 Captncavern\n\n\tcaptncavern: Bon, ben, comme d&#39;hab.\r\nOn remet &ccedil;a quand tu veux. Dis-moi si tu veux que je lance une partie.\n\nHomeworlds Online (SDG# 16504)\nVariants: &quot;Unrated&quot;\nStarted: 2010.6.9, Ended: 2010.6.12\nParticipants: makertron (S), Pename (N)\nWinner: Pename\n\n1) Pename: Homeworld G2 B1 Y3\n\n\nHomeworlds Online (SDG# 16493)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.9, Ended: 2010.6.22\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld G1 B2 Y3\n\n2) dlwillson: H B3 R2 G3\n\tSilentTitan: I don&#39;t think I&#39;ve tried this configuration yet\n\n3) SilentTitan: Build Y1 Silenttitan\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade Y1 G1 Silenttitan\n\n6) dlwillson: Trade G3 Y3 Dlwillson\n\n7) SilentTitan: Build G2 Silenttitan\n\n8) dlwillson: B G2 Dlwillson\n\tSilentTitan: neh.... can&#39;t get me\n\n9) SilentTitan: Trade G2 R2 Silenttitan\n\n10) dlwillson: D G1 Dlwillson B1 First\n\n11) SilentTitan: Build G2 Silenttitan\n\n12) dlwillson: B G2 Dlwillson\n\n13) SilentTitan: Discover G2 Silenttitan Y3 Tic\n\n14) dlwillson: B G3 First\n\n15) SilentTitan: Discover G2 Tic B1 Toe\n\n16) dlwillson: S G2 Dlwillson\nB G2 First\nB G3 Dlwillson\n\n17) SilentTitan: Build G3 Toe\n\n18) dlwillson: Sacrifice Y3 Dlwillson\nMove G2 Dlwillson Toe\nMove G1 First Dlwillson\nMove G1 Dlwillson Toe\nCatastrophe Toe G\n\n19) SilentTitan: Trade R2 Y2 Silenttitan\n\n20) dlwillson: Trade G2 Y2 First\n\tdlwillson: That was expensive and I&#39;m not sure I like it. Oh well. It&#39;ll have to do.\n\n21) SilentTitan: Trade Y3 R3 Silenttitan\n\n22) dlwillson: B G1 Dlwillson\n\n23) SilentTitan: Discover G1 Silenttitan Y3 Banana\n\n24) dlwillson: B G2 First\n\n25) SilentTitan: Build R1 Silenttitan\n\n26) dlwillson: Trade G1 Y1 Dlwillson\n\n27) SilentTitan: Discover G1 Banana B1 Grape\n\n28) dlwillson: T G3 R3 First\n\tSilentTitan: uh oh... I&#39;ve forgotten what I was going to do next\n\n29) SilentTitan: Build G1 Grape\n\n30) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 First\nBuild R1 First\nBuild G2 First\n\n31) SilentTitan: Trade G1 R1 Grape\n\n32) dlwillson: Move G2 First Dlwillson\n\n33) SilentTitan: Build R2 Grape\n\n34) dlwillson: Build Y1 First\n\n35) SilentTitan: Trade R2 Y2 Grape\n\n36) dlwillson: T Y1 G1 First\n\n37) SilentTitan: Trade R3 G3 Silenttitan\n\n38) dlwillson: D R3 First B3 Second\n\n39) SilentTitan: Build R2 Grape\n\n40) dlwillson: Move Y1 First Second\n\n41) SilentTitan: Discover R1 Grape Y3 Ugly\n\n42) dlwillson: Sacrifice G2 First\nBuild Y1 Second\nBuild R2 Second\n\n43) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Grape\nBuild R3 Silenttitan\n\tdlwillson: Evan says to tell you that he&#39;s rootin&#39; for you to win.\n\n44) dlwillson: S Y2 First\nM R3 Second First\nM R3 First Dlwillson\n\tSilentTitan: well... tell Evan Thanks\n\n45) SilentTitan: Sacrifice Y3 Grape\nMove R1 Ugly Grape\nMove R1 Grape Dlwillson\nMove R2 Grape Dlwillson\nCatastrophe Dlwillson Red\n\tdlwillson: Huh. I think Evan&#39;s team might win... I&#39;ll let you know if I think of a way to grow my foot back.\n\n46) dlwillson: Sacrifice Y1 Second\nMove R1 First Dlwillson\n\n47) SilentTitan: Move Y3 Silenttitan Dlwillson\n\n\nHomeworlds Online (SDG# 16610)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.10, Ended: 2010.8.7\nParticipants: mneme (S), dlwillson (N)\nWinner: mneme\n\n1) dlwillson: H B2 R1 G3\n\n2) mneme: Homeworld G3 B2 R3\n\n3) dlwillson: B G1 Dlwillson\n\n4) mneme: Build R1 Mneme\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) mneme: Build R1 Mneme\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) dlwillson: B G1 Dlwillson\n\n10) mneme: Build R2 Mneme\n\n11) dlwillson: Build G1 Dlwillson\n\n12) mneme: Trade R2 G2 Mneme\n\n13) dlwillson: Trade G1 B1 Dlwillson\n\n14) mneme: Build R2 Mneme\n\n15) dlwillson: B B1 Dlwillson\n\n16) mneme: Trade R2 B2 Mneme\n\n17) dlwillson: Discover B1 Dlwillson G3 Suse\n\n18) mneme: Discover B2 Mneme G1 Forest\n\n19) dlwillson: M Y1 Dlwillson Suse\n\n20) mneme: Build R2 Mneme\n\n21) dlwillson: D G1 Dlwillson B3 Fedora\n\n22) mneme: Trade R2 Y2 Mneme\n\n23) dlwillson: Build G1 Dlwillson\n\n24) mneme: Build G2 Mneme\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Fedora\nBuild Y1 Suse\nBuild G3 Dlwillson\n\n26) mneme: Move Y2 Mneme Forest\n\n27) dlwillson: T G2 R2 Fedora\n\n28) mneme: Move R1 Mneme Forest\n\n29) dlwillson: Sacrifice G3 Dlwillson\nB G2 Fedora\nB Y2 Dlwillson\nB G3 Dlwillson\n\n30) mneme: Sacrifice G2 Mneme\nBuild Y2 Forest\nBuild Y3 Mneme\n\n31) dlwillson: Sacrifice Y2 Dlwillson\nMove B1 Dlwillson Suse\nMove B1 Suse Forest\n\n32) mneme: Sacrifice Y2 Forest\nMove Y3 Mneme Forest\nMove Y3 Forest Fedora\n\n33) dlwillson: Trade G1 B1 Fedora\n\n34) mneme: Build B3 Forest\n\n35) dlwillson: Build B3 Forest\nCatastrophe Forest B\n\n36) mneme: Build R2 Forest\n\n37) dlwillson: Build B1 Fedora\n\n38) mneme: Sacrifice R2 Forest\nAttack R2 Fedora\nAttack G2 Fedora\n\n39) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Fedora\nBuild B3 Suse\nBuild B3 Suse\nCatastrophe Fedora B\n\n40) mneme: Discover R1 Forest Y2 Safe\n\n41) dlwillson: Trade B3 R3 Suse\n\n42) mneme: Build R2 Mneme\n\n43) dlwillson: M B3 Suse Dlwillson\n\n44) mneme: Move R2 Mneme Forest\n\n45) dlwillson: Discover Y1 Suse G1 Mint\n\n46) mneme: Build G2 Mneme\n\n47) dlwillson: Trade B3 G3 Dlwillson\n\n48) mneme: Sacrifice G2 Mneme\nBuild R2 Mneme\nBuild R2 Safe\n\n49) dlwillson: S G3 Dlwillson\nB Y2 Mint\nB Y3 Suse\nB Y3 Dlwillson\n\n50) mneme: Sacrifice G2 Mneme\nBuild R3 Mneme\nBuild R3 Forest\n\n51) dlwillson: B G2 Dlwillson\n\n52) mneme: Trade R3 G3 Mneme\n\n53) dlwillson: B R3 Suse\n\n54) mneme: Sacrifice Y2 Forest\nMove R1 Safe Suse\nMove R2 Forest Suse\nCatastrophe Suse R\n\n55) dlwillson: Trade Y3 R3 Suse\n\n56) mneme: Move R2 Safe Mint\n\n57) dlwillson: B Y2 Mint\n\n58) mneme: Attack Y2 Mint\n\n59) dlwillson: S R3 Suse\nA R2 Mint\nA Y2 Mint\nPass\n\n60) mneme: Move G3 Mneme Mint\n\n61) dlwillson: Sacrifice Y2 Mint\nMove R2 Mint Suse\nDiscover Y1 Mint B3 Fedora\n\n62) mneme: Sacrifice R1 Mneme\nAttack Y2 Mint\n\n63) dlwillson: Move G2 Dlwillson Fedora\n\n64) mneme: Move G3 Mint Suse\n\n65) dlwillson: T R2 G2 Suse\n\n66) mneme: Sacrifice R2 Mneme\nAttack G2 Suse\nAttack B1 Suse\n\n67) dlwillson: M G1 Dlwillson Suse\nC Suse G\n\n68) mneme: Build Y1 Mneme\n\n69) dlwillson: Trade Y1 R1 Fedora\n\n70) mneme: Trade Y1 R1 Mneme\n\n71) dlwillson: Move Y1 Dlwillson Fedora\n\tmneme: damn.  forgot about the g1 in your homeworld!\n\n72) mneme: Build R2 Mneme\n\n73) dlwillson: B R2 Fedora\n\n74) mneme: Trade R2 G2 Mneme\n\tdlwillson: Good game so far. Extremely challenging for me. That brouhaha in SUSE was just like the one in fedora earlier in the game, as expensive for me as it was for you, maybe more. Only worth it for the reduction of opportunity, but very costly.\n\tmneme: Oh, the one in fedora was deliberate for me; I figured I was destroying enough of your material to be worth losing a Large for.  I think I could have done better in SUSE, though had I realized you really did have your hand on the trigger.\r\n\r\n\n\n75) dlwillson: B G1 Fedora\n\n76) mneme: Build R2 Mneme\n\n77) dlwillson: Sacrifice G2 Fedora\nBuild Y1 Dlwillson\nBuild G2 Fedora\n\n78) mneme: Build R2 Forest\n\n79) dlwillson: Discover R2 Fedora Y1 Ydl\n\n80) mneme: Trade R2 B2 Mneme\n\n81) dlwillson: T Y3 G3 Dlwillson\n\n82) mneme: Sacrifice Y2 Mint\nDiscover R3 Forest B3 Touchstone\nMove B2 Mneme Forest\n\n83) dlwillson: S G2 Fedora\nBuild R2 Ydl\nB R3 Fedora\n\n84) mneme: Build R3 Forest\n\n85) dlwillson: B G1 Dlwillson\n\n86) mneme: Trade R3 Y3 Forest\n\n87) dlwillson: D R2 Ydl R3 Redhat\n\n88) mneme: Build B1 Forest\n\n89) dlwillson: Build G2 Fedora\n\n90) mneme: Build Y2 Forest\n\n91) dlwillson: M G1 Fedora Ydl\n\n92) mneme: Discover B2 Forest G3 Harpershall\n\n93) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Ydl\nBuild Y2 Fedora\nBuild G3 Dlwillson\n\n94) mneme: Discover R2 Forest Y3 Harper\n\n95) dlwillson: S Y2 Fedora\nM G2 Ydl Mneme\nM G1 Ydl Mneme\nC Mneme G\n\n96) mneme: Build B1 Harpershall\n\n97) dlwillson: Discover R1 Fedora G1 Suse\n\n98) mneme: Build B1 Harpershall\n\n99) dlwillson: T R3 B3 Fedora\n\n100) mneme: Sacrifice Y3 Forest\nMove B1 Harpershall Dlwillson\nMove B1 Harpershall Dlwillson\nMove B2 Harpershall Dlwillson\nCatastrophe Dlwillson B\n\n\tdlwillson: Excellent game, Mneme\n\tmneme: Thanks -- Excellent game!\n\nHomeworlds Online (SDG# 16558)\nStarted: 2010.6.12, Ended: 2010.6.23\nParticipants: dlwillson (S), ZackStack (N)\nWinner: dlwillson\n\n1) ZackStack: Homeworld R1 B3 G3\n\n2) dlwillson: H Y3 B2 G3\n\tZackStack: Hey DL!  Have a good game.\n\n3) ZackStack: Build G1 Zackstack\n\n4) dlwillson: Build G1 Dlwillson\n\tZackStack: I hope you won&#39;t be turning my strategy from my game against Titan against me ;-)\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\tdlwillson: I sure hope so! Actually, I&#39;m intending to green-race or red-race, whichever one works out. They both look promising from here. You&#39;ll grab the other and beat me, or you&#39;ll go blue and beat me, or you&#39;ll lock me out of yellow and beat me.  :-))))\n\tZackStack: Well... so long as we&#39;re clear on that point :-p\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) ZackStack: Build Y1 Zackstack\n\tdlwillson: &quot;Red!&quot; said Fred. :-)\n\n8) dlwillson: Build R1 Dlwillson\n\n9) ZackStack: Build Y1 Zackstack\n\n10) dlwillson: B R2 Dlwillson\n\n11) ZackStack: Discover Y1 Zackstack G2 Apple\n\n12) dlwillson: Discover R2 Dlwillson B1 Ibm\n\n13) ZackStack: Build Y2 Apple\n\n14) dlwillson: Discover R1 Dlwillson B1 Novell\n\tZackStack: Heh. Nice.\n\n15) ZackStack: Build Y2 Apple\n\n16) dlwillson: B R2 Dlwillson\n\n17) ZackStack: Build Y2 Zackstack\n\n18) dlwillson: B G1 Dlwillson\n\n19) ZackStack: Discover Y2 Apple G1 Linux\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Novell\nBuild R3 Novell\nBuild R3 Ibm\n\n21) ZackStack: Trade G3 R3 Zackstack\n\n22) dlwillson: T R3 Y3 Novell\n\tdlwillson: Gotta tell you, I don&#39;t know what it is about this game in particular, but I think this is a new &quot;most fun&quot; I&#39;ve had playing Homeworlds. :-)\n\tZackStack: Great!  I&#39;m glad you&#39;re enjoying the game.\n\n23) ZackStack: Build Y3 Linux\n\n24) dlwillson: Build R3 Dlwillson\n\n25) ZackStack: Trade Y1 G1 Zackstack\n\n26) dlwillson: Trade R3 G3 Dlwillson\n\n27) ZackStack: Discover Y1 Apple B1 Macos\n\n28) dlwillson: Trade R3 G3 Ibm\n\n29) ZackStack: Sacrifice Y2 Apple\nMove Y3 Linux Dlwillson\nMove Y2 Linux Dlwillson\n\n30) dlwillson: Sacrifice R2 Novell\nAttack Y3 Dlwillson\nAttack Y2 Dlwillson\n\n31) ZackStack: Move Y1 Macos Dlwillson\nCatastrophe Dlwillson Yellow\n\n32) dlwillson: S Y3 Novell\nM R2 Dlwillson Zackstack\nM R1 Dlwillson Zackstack\nM G3 Dlwillson Zackstack\nC Zackstack R\n\tdlwillson: Hm... Hm... think, think... Sure do like playing this game with you. ... I think.  :-D\n\n\tdlwillson: I think that ends it, but not sure. Do you see something I missed?\r\n\n\tZackStack: Nope.  I&#39;m doomed! Doomed I tells ya!  Good game!\n\tdlwillson: Yes, excellent game, thank you!\n\nHomeworlds Online (SDG# 16629)\nStarted: 2010.6.13, Ended: 2010.8.27\nParticipants: ZackStack (S), efwin (N)\nWinner: efwin\n\n1) efwin: Homeworld G1 B2 Y3\n\n2) ZackStack: Homeworld B3 R2 G3\n\tefwin: Hello, again -- I only played this one once before, so we&#39;ll see what&#39;s what...\n\tZackStack: I&#39;ll try to be gentle then ;-)  Have a good game!\n\n3) efwin: Build Y1 Efwin\n\n4) ZackStack: Build G1 Zackstack\n\n5) efwin: Build Y1 Efwin\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) efwin: Discover Y1 Efwin G3 Neergeerht\n\n8) ZackStack: Build Y2 Zackstack\n\n9) efwin: Build Y2 Efwin\n\n10) ZackStack: Discover Y1 Zackstack G1 Faargurt\n\n11) efwin: Trade Y2 R2 Efwin\n\tZackStack: Danger Will Robinson!  &lt;waves arms about frantically&gt;\n\n12) ZackStack: Build Y2 Faargurt\n\tefwin: Thanks for the warning -- I remembered about the more than three of any one color being a problem\n\tZackStack: I figured it was probably unneccessary... but am just too big a fan of frantically waving my arms around ;-)\n\n13) efwin: Build Y2 Neergeerht\n\n14) ZackStack: Build G1 Zackstack\n\tefwin: Well, it is best to do a lot of exercise due to the low gravity out here in space\n\tZackStack: &lt;chuckle&gt;\n\n15) efwin: Build R1 Efwin\n\n16) ZackStack: Discover Y2 Faargurt B3 Biggbloo\n\n17) efwin: Discover Y2 Neergeerht G2 Neergwot\n\n18) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Zackstack\nBuild Y3 Biggbloo\nBuild G2 Zackstack\n\n19) efwin: Trade R2 G2 Efwin\n\n20) ZackStack: Discover G1 Zackstack B1 Lilbloo\n\n21) efwin: Discover G2 Efwin R3 Dereerht\n\n22) ZackStack: Build G3 Lilbloo\n\tZackStack: You might want to Undo.  The green ship at LilBloo can make it to your Homeworld if I sac a yellow...\n\tefwin: Thanks -- I counted to two (ships) and figured I was OK -- I think I&#39;ll  try something different...\n\n23) efwin: Trade Y1 B1 Efwin\n\tZackStack: I also realized I can cause some serious damage if I sacrifice my y2 and send the ships from BigBloo to your home... just thought I&#39;d point that out :-)\n\n24) ZackStack: Build G3 Zackstack\n\n25) efwin: Build Y1 Neergeerht\n\tefwin: hmmmmmmmmm -- there&#39;s so much to watch out for in the universe\n\n26) ZackStack: Move Y2 Zackstack Lilbloo\n\n27) efwin: Discover Y1 Neergeerht B1 Eulbeno\n\n28) ZackStack: Move G3 Lilbloo Dereerht\n\n29) efwin: Sacrifice G2 Dereerht\nBuild B2 Efwin\nBuild R1 Efwin\n\n30) ZackStack: Trade G2 B2 Zackstack\n\n31) efwin: Move B2 Efwin Neergeerht\n\tefwin: Figured I might as well get a little something from my ship rather than let you just flip it to your side...\n\n32) ZackStack: Discover G1 Lilbloo B3 Largbloo\n\tZackStack: I figured you would respond with something like that.  Well played.\n\n33) efwin: Move B2 Neergeerht Eulbeno\n\tefwin: Thanks -- still doesn&#39;t quite make up for the fact that you have about 1000 size three ships and I have one\n\n34) ZackStack: Move B2 Zackstack Faargurt\n\n35) efwin: Move R1 Efwin Neergeerht\n\n36) ZackStack: Sacrifice G1 Largbloo\nBuild B3 Faargurt\n\n37) efwin: Build R1 Efwin\n\n38) ZackStack: Move B2 Faargurt Dereerht\n\n39) efwin: Build R2 Neergeerht\n\n40) ZackStack: Trade Y2 R2 Biggbloo\n\n41) efwin: Build Y2 Neergwot\n\n42) ZackStack: Move Y2 Lilbloo Dereerht\n\n43) efwin: Move R2 Neergeerht Neergwot\n\n44) ZackStack: Build B1 Dereerht\n\n45) efwin: Sacrifice Y2 Neergwot\nMove B1 Efwin Dereerht\nMove B2 Eulbeno Dereerht\nCatastrophe Dereerht Blue\n\n46) ZackStack: Build Y2 Dereerht\n\n47) efwin: Build R3 Neergeerht\n\tefwin: Probably should have just moved the blue away from danger -- but figured I&#39;d try something with a little bigger impact and see how that goes\n\tZackStack: Well... it set back my immediate plans.  Well done! :-)\n\n48) ZackStack: Sacrifice Y3 Zackstack\nMove Y3 Biggbloo Efwin\nMove Y2 Dereerht Efwin\nMove Y2 Dereerht Efwin\nCatastrophe Efwin Yellow\n\n49) efwin: Sacrifice Y2 Neergwot\nMove R3 Neergeerht Efwin\nDiscover R1 Efwin Y3 Wolleyeerht\n\tefwin: Thanks\n\n50) ZackStack: Sacrifice G3 Dereerht\nBuild G1 Zackstack\nBuild R3 Biggbloo\nBuild Y2 Faargurt\n\tZackStack: You&#39;re welcome ;-)\n\n51) efwin: Trade R3 Y3 Efwin\n\tefwin: Well, your move was going to put me in a bad spot...  Hopefully, that gives me momentary safety\n\n52) ZackStack: Move B3 Faargurt Neergeerht\n\tZackStack: Good defense... but I&#39;m hoping I can keep your back against the wall for a little while longer!\n\n53) efwin: Build Y2 Efwin\n\tefwin: You are forcing my moves at the moment... \n\n54) ZackStack: Sacrifice R2 Biggbloo\nAttack Y1 Neergeerht\nAttack R1 Neergeerht\n\n55) efwin: Trade Y2 G2 Efwin\n\n56) ZackStack: Build Y2 Neergeerht\n\n57) efwin: Build R2 Neergwot\n\n58) ZackStack: Trade Y2 G2 Neergeerht\n\n59) efwin: Build Y2 Efwin\n\n60) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild R3 Biggbloo\nBuild B1 Neergeerht\n\n61) efwin: Sacrifice Y2 Efwin\nMove R2 Neergwot Biggbloo\nMove R1 Efwin Biggbloo\nCatastrophe Biggbloo Red\n\n62) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Neergeerht\nBuild R1 Neergeerht\n\tZackStack: Sometimes that move feels like cheating...\n\tefwin: ... and yet, it seems to have been legal and something you can enjoy again\n\n63) efwin: Build R2 Neergwot\n\tZackStack: I wondered if I&#39;d made that system too big a target... :-)\n\n64) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Faargurt\n\n65) efwin: Discover G2 Efwin Y3 Wolleyeerhtii\n\tefwin: I&#39;m afraid I&#39;m just managing to put off the inevitable at this point -- but maybe the fleet at neergeerht is contemplating vacation spots ;-)\n\tZackStack: And here all I see is all my eggs in one basket!\n\n66) ZackStack: Trade G3 B3 Zackstack\n\tZackStack: Normally that move is insanely dangerous... but I think I have one turn to fix it before you can take advantage...\n\n67) efwin: Sacrifice G2 Wolleyeerhtii\nBuild Y3 Eulbeno\nBuild R3 Wolleyeerht\n\tefwin: I couldn&#39;t see anything better to do than carry through with the threat...\n\n68) ZackStack: Sacrifice Y2 Faargurt\nMove B3 Zackstack Faargurt\nDiscover B3 Faargurt G3 Yohgeert\n\tZackStack: Nice work denying the Y3 I wanted :-)\n\n69) efwin: Move R3 Wolleyeerht Faargurt\n\tefwin: Thanks -- Sorry for the delay. A storm knocked out power to our area TH afternoon and we only got it back this afternoon (Sun)\n\n70) ZackStack: Sacrifice Y2 Faargurt\nMove Y1 Faargurt Yohgeert\nMove B1 Neergeerht Efwin\n\tZackStack: Sorry to hear about the power outage!  I hope it hasn&#39;t been as nasty hot there as it has been here...\n\n71) efwin: Move Y1 Eulbeno Neergwot\n\tefwin: It&#39;s been hot here (DC) all summer -- but that&#39;s probably been the case around much of the country this year\n\n72) ZackStack: Sacrifice G2 Neergeerht\nBuild B1 Efwin\nBuild B2 Efwin\nCatastrophe Efwin Blue\n\n73) efwin: Move R2 Neergwot Efwin\n\tefwin: I&#39;m suspicious of the little blue visitor\n\tZackStack: Visitors are always trouble in this game...\n\n74) ZackStack: Trade Y2 G2 Neergeerht\n\n75) efwin: Build R3 Efwin\n\tefwin: Sorry to have to put your plans to dominate the universe on hold, but I&#39;ll be away the rest of the week (no computer) so won&#39;t be able to move again until Sunday -- have a good week\n\tZackStack: No problem!  Thanks for letting me know.  I&#39;ll be out of town from Thursday until Monday/Tuesday (also without a computer) so we&#39;ll finish up when we&#39;re both back! :-)\n\n76) ZackStack: Move R1 Neergeerht Efwin\n\n77) efwin: Sacrifice Y3 Efwin\nMove Y3 Eulbeno Zackstack\nMove R3 Efwin Zackstack\nMove Y1 Neergwot Efwin\n\n\tefwin: I hope I thought that through correctly...\n\tZackStack: You thought it through well.  Good Game!\n\tefwin: Thanks for the game\n\nHomeworlds Online (SDG# 16636)\nVariants: &quot;No undo, Sinister&quot;\nStarted: 2010.6.14, Ended: 2010.6.21\nParticipants: zara2stra (S), goulo (N), AdamBadura (E)\nWinner: AdamBadura\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) AdamBadura: Homeworld B2 G3 R3\n\n3) zara2stra: Homeworld G3 Y1 B3\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Build R1 Adambadura\n\n6) zara2stra: Build B1 Zara2stra\n\n7) goulo: Build Y1 Goulo\n\n8) AdamBadura: Trade R3 Y3 Adambadura\n\n9) zara2stra: Trade B1 Y1 Zara2stra\n\n10) goulo: Trade Y1 G1 Goulo\n\n11) AdamBadura: Discover R1 Adambadura B1 Bravenewworld\n\n12) zara2stra: Build B1 Zara2stra\n\n13) goulo: Discover Y1 Goulo G3 Smeraldo\n\n14) AdamBadura: Build Y1 Adambadura\n\n15) zara2stra: Build Y2 Zara2stra\n\n16) goulo: Build Y2 Smeraldo\n\n17) AdamBadura: Move Y1 Adambadura Bravenewworld\n\n18) zara2stra: Discover Y2 Zara2stra R2 Alpha\n\n19) goulo: Build Y2 Goulo\n\n20) AdamBadura: Build Y2 Adambadura\n\n21) zara2stra: Trade Y1 G1 Zara2stra\n\n22) goulo: Trade Y2 R2 Goulo\n\n23) AdamBadura: Move Y2 Adambadura Bravenewworld\n\n24) zara2stra: Trade B1 R1 Zara2stra\n\n25) goulo: Build R1 Goulo\n\n26) AdamBadura: Trade Y3 G3 Adambadura\n\n27) zara2stra: Build B1 Zara2stra\n\tAdamBadura: Another one of Branches? After winning previous game I suddenly started to like that game... ;)\n\n28) goulo: Move R2 Goulo Smeraldo\n\n29) AdamBadura: Trade Y2 R2 Bravenewworld\n\n30) zara2stra: Move G1 Zara2stra Alpha\n\n31) goulo: Discover G1 Goulo B3 Safiro\n\n32) AdamBadura: Trade G3 B3 Adambadura\n\n33) zara2stra: Move B1 Zara2stra Alpha\n\n34) goulo: Discover Y2 Smeraldo G1 Verdeto\n\n35) AdamBadura: Build B1 Adambadura\n\n36) zara2stra: Build B2 Alpha\n\n37) goulo: Build Y1 Goulo\n\n38) AdamBadura: Trade B3 Y3 Adambadura\n\n39) zara2stra: Build Y2 Alpha\n\tAdamBadura: Somehow I feel I&#39;m lost in this game. I must have made some bad moves at the begining and now it seems difficult to progress... But we shall see what the future brings...\n\tgoulo: I would not be surprised if we all feel that way. :)\r\nBTW Adam, zara2stra and I just finished a game of Alien City and it&#39;s excellent! Strictly 2-player though. If you want to play a game with me, I&#39;m happy to. :)\n\n40) goulo: Build Y2 Smeraldo\n\n41) AdamBadura: Build Y3 Adambadura\n\n42) zara2stra: Move Y2 Alpha Smeraldo\n\n43) goulo: Attack Y2S Smeraldo\n\n44) AdamBadura: Move Y1 Bravenewworld Smeraldo\nCatastrophe Smeraldo Y\n\tAdamBadura: Some how I feel goulo is ploting against me... ;)\n\n45) zara2stra: Build B2 Zara2stra\n\n46) goulo: Build Y1 Verdeto\n\n47) AdamBadura: Move Y3 Adambadura Verdeto\n\n48) zara2stra: Move Y2 Alpha Verdeto\nCatastrophe Verdeto Y\n\tAdamBadura: Oh... A bad move... :) Pity!\n\n49) goulo: Build R1 Smeraldo\n\n50) AdamBadura: Trade R1 G1 Bravenewworld\n\n51) zara2stra: Trade B2 Y2 Alpha\n\tAdamBadura: goule: I started reading Alien City rules... I will challange you as soon as I&#39;m ready.\n\n52) goulo: Move Y1 Goulo Smeraldo\n\n53) AdamBadura: Build B2 Adambadura\n\n54) zara2stra: Move B2 Zara2stra Alpha\n\n55) goulo: Build Y1 Goulo\n\n56) AdamBadura: Build R1 Bravenewworld\n\n57) zara2stra: Discover B2 Alpha R3 Beta\n\n58) goulo: Build R2 Goulo\n\n59) AdamBadura: Trade R1 Y1 Bravenewworld\n\n60) zara2stra: Move G1 Alpha Beta\n\n61) goulo: Move Y3 Goulo Beta\n\n62) AdamBadura: Build Y2 Bravenewworld\n\n63) zara2stra: Sacrifice Y2 Alpha\nMove B2 Beta Alpha\nMove G1 Beta Alpha\n\n64) goulo: Move Y3 Beta Bravenewworld\n\n65) AdamBadura: Build Y2 Bravenewworld\nCatastrophe Bravenewworld Y\n\n66) zara2stra: Trade B2 Y2 Alpha\n\tAdamBadura: I hope you are happy now goulo... :P\n\n67) goulo: Trade R2 B2 Goulo\n\tgoulo: Hm, that&#39;s what I get for doing too many turns in too many games... mistakes! :P\n\n68) AdamBadura: Discover B2 Adambadura G1 Theendisnigh\n\tAdamBadura: I considered this to be a mistake. I even considered making private agreements with you after that move.\r\n\r\nBut I changed my mind and deleted the email as you are my direct opponent and thus it was hard for me to trust you.\r\n\r\nSo basicly both of us lost and zara2stra gained...\n\n69) zara2stra: Build G2 Alpha\n\n70) goulo: Build R1 Goulo\n\n71) AdamBadura: Build G2 Bravenewworld\n\n72) zara2stra: Discover G2 Alpha R3 Beta\n\n73) goulo: Move B2 Goulo Smeraldo\n\n74) AdamBadura: Trade G2 Y2 Bravenewworld\n\n75) zara2stra: Build G2 Beta\n\n76) goulo: Discover R2 Smeraldo Y1 Poleno\n\n77) AdamBadura: Build Y2 Adambadura\n\n78) zara2stra: Sacrifice Y2 Alpha\nMove G2 Beta Goulo\nMove G2 Beta Goulo\n\n79) goulo: Build R2 Goulo\n\tgoulo: Hmm, this game is not my finest hour... :)\n\n80) AdamBadura: Build R3 Bravenewworld\n\n81) zara2stra: Build G2 Goulo\nCatastrophe Goulo G\n\n82) goulo: Build R3 Smeraldo\n\n83) AdamBadura: Build R3 Bravenewworld\n\tAdamBadura: goulo, look at the bright side. Now you are directly connected to my system... :)\n\n84) zara2stra: Build R3 Zara2stra\n\n85) goulo: Move R1 Smeraldo Bravenewworld\nCatastrophe Bravenewworld R\n\n86) AdamBadura: Build G2 Bravenewworld\n\tAdamBadura: goulo: Good move. Now zara2stra will have more freedom to destroy you... ;P\n\n87) zara2stra: Build G2 Alpha\n\n88) goulo: Build B2 Smeraldo\n\n89) AdamBadura: Build B3 Theendisnigh\n\n90) zara2stra: Build B3 Alpha\n\n91) goulo: Build Y2 Smeraldo\n\n92) AdamBadura: Trade B2 Y2 Theendisnigh\n\n93) zara2stra: Trade B3 Y3 Alpha\n\n94) goulo: Trade R2 G2 Goulo\n\n95) AdamBadura: Sacrifice G2 Bravenewworld\nBuild Y3 Bravenewworld\nBuild Y3 Theendisnigh\n\n96) zara2stra: Sacrifice Y3 Alpha\nMove B3 Zara2stra Alpha\nMove B3 Alpha Goulo\nMove B1 Alpha Zara2stra\n\tAdamBadura: I like it when they are big... ;) (Ships, I meant ships....)\n\n97) goulo: Build B2 Smeraldo\n\n98) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Bravenewworld Alpha\nMove Y3 Theendisnigh Alpha\n\tgoulo: Bleah... if there were 2 blues left to build, zara wins next turn.\n\n99) zara2stra: Sacrifice R1 Zara2stra\nAttack G2N Goulo\n\n100) goulo: Move Y1 Smeraldo Goulo\n\n101) AdamBadura: Trade Y2 R2 Theendisnigh\n\n102) zara2stra: Sacrifice G2 Alpha\nBuild B3 Goulo\nBuild R1 Zara2stra\n\n103) goulo: Build Y2 Smeraldo\n\n104) AdamBadura: Move B1 Adambadura Goulo\nCatastrophe Goulo B\n\n105) AdamBadura: Sacrifice Y3 Alpha\nMove Y3 Alpha Zara2stra\nMove B3 Theendisnigh Alpha\nMove B3 Alpha Zara2stra\n\tAdamBadura: Sorry goulo but it was to much risk zara2stra would manage to destroy you before I would destroy him.\n\tAdamBadura: Why again it is my turn?\n\n106) zara2stra: Attack B3E Zara2stra\n\tzara2stra: you won :/\n\n107) AdamBadura: Sacrifice R2 Theendisnigh\nAttack R3S Zara2stra\nAttack B3S Zara2stra\n\n108) zara2stra: Build R1 Zara2stra\n\n109) AdamBadura: Sacrifice R3 Zara2stra\nAttack R1S Zara2stra\nAttack R1S Zara2stra\nAttack B1S Zara2stra\n\tAdamBadura: Yes. I know. I was palnning to do that before, but first goulo destroyed my two 3 ships, and then you were to close to goulo.\r\n\r\nI think turning point of the game was when goulo (by mistake) lost his 3 ship by invading my system and forcing me to catastrophe.\r\n\r\nThen you attacked goulo lessering his pressure on me.\r\n\r\nBut in the end I think you somehow misscalculated your attcions with goulo. Haven&#39;t you thought of me destroying that system?\n\tAdamBadura: This was an interesting game bacause it is first time that only one player lost any stars. It is first time a player loses without loosing any star and it is first time a player is destroyed by the left one rather than the right one.\r\n\r\nAnother one?\n\tgoulo: Yes, interesting different game play! A good sign for Homeworlds as a game with lasting replay value. :)\r\n\r\nAnd yeah, I agree it made sense for Adam to destroy me before zara destroyed me and won.  Good game!\r\n\r\nI am happy to play another. Zara2stra, you want to also?\n\tgoulo: BTW Adam in theory I will have 3 rainbow pyramid sets before Saturday, so we could play binary homeworlds live then if you like. :)\n\tAdamBadura: I&#39;m not sure now whether I will be at Saturday at UP. But I will try to remember to let you know. Although if I will be it is most likely I will be at 11 as usually.\r\n\r\nWhy it took so long to get those sets? I though you had them for a long time now...\n\tzara2stra: Ok, we can play another game (although expect lags on my part during this week).\n\tgoulo: Rebel apparently had 3 rainbow stashes in stock, and then forgot to order more (and the Martian Coasters I wanted). Sigh. So now they are ordering the additional ones. Eventually I will have them all... :)\n\n\nHomeworlds Online (SDG# 16497)\nStarted: 2010.6.14, Ended: 2010.6.18\nParticipants: ts52 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) ts52: Homeworld B2 Y3 G3\n\tgoulo: Hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\tts52: Thanks. You too!\n\n4) ts52: Build G1 Ts52\n\n5) goulo: Build Y1 Goulo\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) goulo: Trade Y1 G1 Goulo\n\n8) ts52: Discover Y1 Ts52 G1 Robin\n\n9) goulo: Discover Y1 Goulo G3 Smeraldo\n\n10) ts52: Build G1 Ts52\n\n11) goulo: Build G2 Goulo\n\n12) ts52: Discover Y1 Robin G3 Kermit\n\n13) goulo: Trade G2 R2 Goulo\n\n14) ts52: Trade G1 R1 Ts52\n\n15) goulo: Build R1 Goulo\n\n16) ts52: Build G1 Ts52\n\n17) goulo: Move R2 Goulo Smeraldo\n\n18) ts52: Discover G1 Ts52 B1 Grover\n\n19) goulo: Build Y1 Smeraldo\n\n20) ts52: Build Y2 Kermit\n\n21) goulo: Build Y2 Goulo\n\n22) ts52: Build G1 Ts52\n\n23) goulo: Discover G1 Goulo Y3 Citrono\n\n24) ts52: Move Y2 Kermit Grover\n\n25) goulo: Move Y2 Goulo Kermit\n\n26) ts52: Build Y2 Grover\n\n27) goulo: Sacrifice G1 Citrono\nBuild Y3 Goulo\n\n28) ts52: B G1 Grover\n\n29) goulo: Build R1 Goulo\n\n30) ts52: Build R2 Ts52\n\n31) goulo: Sacrifice R1 Goulo\nAttack Y1 Kermit\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Ts52\nBuild G3 Ts52\n\n33) goulo: Discover Y2 Kermit R1 Rubeno\n\n34) ts52: Move R2 Ts52 Grover\n\n35) goulo: Discover Y1 Smeraldo B1 Mirtelo\n\n36) ts52: Move G2 Ts52 Mirtelo\n\n37) goulo: Move Y1 Mirtelo Ts52\n\n38) ts52: Attack Y1 Ts52\n\n39) goulo: Sacrifice Y3 Goulo\nMove Y1 Smeraldo Rubeno\nMove Y1 Rubeno Ts52\nMove Y2 Rubeno Ts52\nCatastrophe Ts52 Y\n\n40) ts52: Move R2 Grover Kermit\n\n41) goulo: Discover Y1 Kermit R1 Sangero\n\n42) ts52: Move Y2 Grover Kermit\n\n43) goulo: Build R2 Goulo\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\n\n45) goulo: Build R3 Smeraldo\n\n46) ts52: Build Y1 Grover\n\n47) goulo: Move Y1 Sangero Smeraldo\n\n48) ts52: Trade R1 Y1 Ts52\n\n49) goulo: Move R3 Smeraldo Grover\n\n50) ts52: Sacrifice Y2 Grover\nDiscover G2 Grover Y3 Bigbird\nMove G1 Grover Bigbird\n\n51) goulo: Attack Y1 Grover\n\n52) ts52: Sacrifice G1 Grover\nBuild G1 Bigbird\n\n53) goulo: Move R3 Grover Bigbird\n\n54) ts52: Sacrifice Y2 Kermit\nMove G2 Bigbird Goulo\nMove G1 Bigbird Goulo\n\n55) goulo: Attack G1 Bigbird\n\n56) ts52: Sacrifice G1 Ts52\nBuild G1 Goulo\nCatastrophe Goulo Green\n\n57) goulo: Trade R2 B2 Goulo\n\n58) ts52: Build Y2 Ts52\n\n59) goulo: Move B2 Goulo Bigbird\n\n60) ts52: Move R3 Ts52 Smeraldo\n\n61) goulo: Sacrifice Y1 Smeraldo\nMove R2 Smeraldo Grover\n\n62) ts52: Trade G2 B2 Mirtelo\n\n63) goulo: Build B3 Bigbird\n\n64) ts52: Move Y1 Ts52 Mirtelo\n\n65) goulo: Move R3 Bigbird Mirtelo\n\n66) ts52: Discover B2 Mirtelo Y2 Zoe\n\n67) goulo: Trade R3 B3 Mirtelo\n\n68) ts52: Sacrifice Y2 Ts52\nMove R3 Kermit Goulo\nMove R3 Smeraldo Goulo\n\n69) goulo: Sacrifice Y3 Goulo\nMove B3 Mirtelo Ts52\nMove B3 Bigbird Ts52\nMove B2 Bigbird Ts52\nCatastrophe Ts52 B\n\tts52: Thanks for the game.\n\tgoulo: Thanks! Man, that was a tense close tough game. :)\n\n\nHomeworlds Online (SDG# 16645)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.14, Ended: 2010.6.21\nParticipants: fnord (S), captncavern (N)\nWinner: captncavern\n\n1) captncavern: Homeworld G3 B1 Y3\n\tcaptncavern: Have a good game!\n\n2) fnord: Homeworld B2 Y3 G3\n\n3) captncavern: Build Y1 Captncavern\n\n\nHomeworlds Online (SDG# 16574)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.16, Ended: 2010.8.10\nParticipants: Mandrel (S), SilentTitan (N)\nWinner: Mandrel\n\n1) SilentTitan: Homeworld Y2 G3 B3\n\n2) Mandrel: Homeworld R1 B3 G3\n\n3) SilentTitan: Build B1 Silenttitan\n\tMandrel: Have a good game\n\tSilentTitan: you too\n\n4) Mandrel: Build G1 Mandrel\n\n5) SilentTitan: Discover B1 Silenttitan B1 Blue\n\n6) Mandrel: Trade G1 B1 Mandrel\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) Mandrel: Build B2 Mandrel\n\n9) SilentTitan: Trade B3 G3 Silenttitan\n\n10) Mandrel: Trade B2 Y2 Mandrel\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) Mandrel: Build B2 Mandrel\n\n13) SilentTitan: Build B3 Silenttitan\n\n14) Mandrel: Trade B1 R1 Mandrel\n\n15) SilentTitan: Discover B2 Silenttitan G1 Green\n\n16) Mandrel: Discover B2 Mandrel G2 Resolution\n\n17) SilentTitan: Trade B2 R2 Silenttitan\n\n18) Mandrel: Build Y1 Mandrel\n\n19) SilentTitan: Discover G3 Silenttitan R1 Red\n\n20) Mandrel: Build R2 Mandrel\n\n21) SilentTitan: Trade B2 R2 Green\n\n22) Mandrel: Move R2 Mandrel Resolution\n\n23) SilentTitan: Trade R2 Y2 Silenttitan\n\n24) Mandrel: Sacrifice Y1 Mandrel\nMove R2 Resolution Blue\n\n25) SilentTitan: Trade B3 R3 Silenttitan\n\n26) Mandrel: Attack B1N Blue\n\n27) SilentTitan: Build Y1 Silenttitan\n\n28) Mandrel: Trade B1 Y1 Blue\n\n29) SilentTitan: Move Y2 Silenttitan Green\n\n30) Mandrel: Build G1 Mandrel\n\n31) SilentTitan: Discover Y2 Green G2 Sink\n\n32) Mandrel: Sacrifice G1 Mandrel\nBuild Y1 Blue\n\n33) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover G3 Red B2 Rand\n\n34) Mandrel: Trade B2 R2 Resolution\n\n35) SilentTitan: Build G1 Rand\n\n36) Mandrel: Trade Y1 R1 Blue\n\n37) SilentTitan: Build R3 Green\n\n38) Mandrel: Build R3 Resolution\n\n39) SilentTitan: Trade G1 B1 Rand\n\n40) Mandrel: Trade R1 Y1 Mandrel\n\n41) SilentTitan: Sacrifice B1 Rand\nTrade R3 B3 Silenttitan\n\n42) Mandrel: Trade Y1 B1 Mandrel\n\n43) SilentTitan: Build G1 Rand\n\n44) Mandrel: Build Y1 Mandrel\n\n45) SilentTitan: Trade G1 Y1 Rand\n\n46) Mandrel: B G1 Mandrel\n\n47) SilentTitan: Sacrifice G3 Rand\nBuild Y3 Rand\nBuild Y3 Sink\nBuild B1 Silenttitan\n\n48) Mandrel: Sacrifice G1 Mandrel\nBuild Y3 Blue\n\n49) SilentTitan: Sacrifice Y3 Sink\nMove Y2 Sink Blue\nMove Y1 Rand Blue\nMove R3 Green Rand\nCatastrophe Blue Yellow\n\n50) Mandrel: T R2 Y2 Blue\n\n51) SilentTitan: Build B2 Silenttitan\n\n52) Mandrel: Move Y2 Mandrel Resolution\n\n53) SilentTitan: Sacrifice B2 Silenttitan\nTrade R2 B2 Green\nTrade B3 G3 Silenttitan\n\n54) Mandrel: Move B1 Mandrel Resolution\n\n55) SilentTitan: Build G1 Silenttitan\n\n56) Mandrel: T R2 G2 Resolution\n\n57) SilentTitan: Trade G1 Y1 Silenttitan\n\n58) Mandrel: Move G2 Resolution Blue\n\n59) SilentTitan: Sacrifice Y1 Silenttitan\nMove B2 Green Rand\n\n60) Mandrel: B Y1 Blue\n\n61) SilentTitan: Trade B2 G2 Rand\n\n62) Mandrel: B G1 Blue\n\n63) SilentTitan: Trade G3 R3 Silenttitan\n\n64) Mandrel: B Y1 Resolution\n\n65) SilentTitan: Build R1 Rand\n\n66) Mandrel: B Y3 Mandrel\n\n67) SilentTitan: Build B2 Silenttitan\n\n68) Mandrel: D Y1 Resolution G1 Tragedy\n\n69) SilentTitan: Move B1 Silenttitan Blue\n\n70) Mandrel: A B1N Blue\n\n71) SilentTitan: Build R2 Silenttitan\n\n72) Mandrel: B Y3 Resolution\n\n73) SilentTitan: Move R2 Silenttitan Tragedy\n\n74) Mandrel: S Y3 Resolution\nMove Y1 Tragedy Silenttitan\nMove Y1 Blue Silenttitan\nMove Y2 Blue Silenttitan\nC Silenttitan Yellow\n\n\tSilentTitan: Good game ... congrats\r\n\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 16632)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.16, Ended: 2010.7.23\nParticipants: Uglyfoot (S), sordros (N)\nWinner: Uglyfoot\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\tsordros: Hi, good luck\n\n3) sordros: Build G1 Sordros\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) sordros: Build G1 Sordros\n\n8) Uglyfoot: Discover G1 Uglyfoot R1 Step\n\n9) sordros: Build G2 Sordros\n\n10) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Step\nBuild G2 Step\nBuild G3 Uglyfoot\n\n11) sordros: Discover G2 Sordros G3 Verdega\n\n12) Uglyfoot: Trade G1 B1 Uglyfoot\n\n13) sordros: Trade G1 B1 Sordros\n\n14) Uglyfoot: Move B1 Uglyfoot Step\n\n15) sordros: Build G1 Sordros\n\n16) Uglyfoot: Trade G2 Y2 Step\n\n17) sordros: Trade G1 R1 Sordros\n\n18) Uglyfoot: Build G1 Uglyfoot\n\n19) sordros: Build R1 Sordros\n\n20) Uglyfoot: Move G1 Step Verdega\n\n21) sordros: Discover R1 Sordros B3 Bluega\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Verdega\nBuild G2 Step\nBuild G3 Uglyfoot\nCatastrophe Verdega G\n\n23) sordros: Build R2 Sordros\n\n24) Uglyfoot: Trade G2 R2 Step\n\n25) sordros: Build G1 Sordros\n\n26) Uglyfoot: Discover R2 Step Y3 Node\n\n\nHomeworlds Online (SDG# 16665)\nStarted: 2010.6.17, Ended: 2010.6.22\nParticipants: logikal (S), tvgide (N)\nWinner: logikal\n\n1) tvgide: Homeworld G3 B2 R3\n\n2) logikal: Homeworld B1 G3 Y3\n\n3) tvgide: Build R1 Tvgide\n\n4) logikal: Build Y1 Logikal\n\n5) tvgide: Trade R1 Y1 Tvgide\n\n6) logikal: Trade Y1 R1 Logikal\n\n7) tvgide: Discover R3 Tvgide Y1 Tv2\n\n8) logikal: Build R1 Logikal\n\n9) tvgide: Build Y1 Tvgide\n\n10) logikal: Build Y2 Logikal\n\n11) tvgide: Trade Y1 G1 Tvgide\n\n12) logikal: Trade Y3 G3 Logikal\n\n13) tvgide: Move G1 Tvgide Tv2\n\n14) logikal: Trade R1 B1 Logikal\n\n15) tvgide: Build G1 Tv2\n\n16) logikal: Discover G3 Logikal B2 L1\n\n17) tvgide: Trade Y1 R1 Tvgide\n\n18) logikal: Sacrifice Y2 Logikal\nMove G3 L1 Tv2\nMove G3 Tv2 Tvgide\n\n19) tvgide: Build R1 Tvgide\n\n20) logikal: Build R2 Logikal\n\n21) tvgide: Build R2 Tvgide\n\n22) logikal: Sacrifice R1 Logikal\nAttack R2 Tvgide\n\n23) tvgide: Move G1 Tv2 Tvgide\n\n24) logikal: Trade G3 Y3 Tvgide\n\n25) tvgide: Discover R3 Tv2 Y2 Tv1\n\n26) logikal: Sacrifice R2 Tvgide\nAttack R1 Tvgide\nAttack G1 Tvgide\n\n27) tvgide: Move R3 Tv1 Logikal\n\n28) logikal: Attack R1 Tvgide\n\n\nHomeworlds Online (SDG# 16625)\nVariants: &quot;Unrated&quot;\nStarted: 2010.6.17, Ended: 2010.8.17\nParticipants: makertron (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld G1 B2 Y3\n\n\tMandrel: Have a godd game!\n\tMandrel: Have a good game!\n\nHomeworlds Online (SDG# 16654)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.19, Ended: 2010.7.11\nParticipants: Jesse (S), daselva (N)\nWinner: Jesse\n\n1) daselva: Homeworld B2 G3 Y3\n\n2) Jesse: Homeworld R1 B3 G3\n\n3) daselva: Build Y1 Daselva\n\n4) Jesse: Build G1 Jesse\n\tJesse: Hello, and have a good game.\n\n5) daselva: Trade Y1 G1 Daselva\n\n6) Jesse: Trade G1 Y1 Jesse\n\tdaselva: hello,sorry if I do wrong things...I&acute;m a beginner\n\n7) daselva: Build G1 Daselva\n\tJesse: Have you read the tips on the wiki page?\n\n8) Jesse: Build G1 Jesse\n\tdaselva: yes I did...thank you,but reading is different of playing...you will be my first teacher\n\tJesse: Well, here&#39;s a tip: Variety is good.  That yellow star isn&#39;t helping your yellow ship do anything.  A green would let you build more ships, which would be the usual choice for a yellow ship.  A blue star would let you change your ship&#39;s color, but that would be more efficiently done directly at the homeworld, or it would be done after you&#39;d built some ships at a green system.  A red would provide you some security against small ships coming for you, but would not help you develop.\r\n\r\nDiscovering a same-colored system like that can be useful in situations where you&#39;re trying to keep a color to yourself.  If you were using up the last small yellow, for instance, to make it so I couldn&#39;t trade a small green for a yellow.  (That wouldn&#39;t work here, though, since I&#39;ve chosen a red-blue home system in part for the flexibility to trade either the large or the small ship for yellow at this point.)\r\n\r\nDo you want to stick with your move?  It won&#39;t cause anything horrible to happen, but may not be developing quite as smoothly as you could.\n\n9) daselva: Trade G1 R1 Daselva\n\tdaselva: thank you , you are very generous!...are you a lover of homeworlds? what do you think of it? is it a good and &laquo; serious&raquo; game?\n\tJesse: Yes, absolutely.  As Andy Looney puts it, Homeworlds is the True Space Chess.  I think it&#39;s an apt comparison of the depth of strategy involved.  But Homeworlds is a lot more to my taste.\n\n10) Jesse: Trade G1 R1 Jesse\n\n11) daselva: Build R2 Daselva\n\n12) Jesse: Build G1 Jesse\n\n13) daselva: Build R2 Daselva\n\tJesse: Don&#39;t forget about the catastrophe rule.  If there are four pieces of the same color in a system at the end of either player&#39;s turn, that player may choose for a catastrophe to occur which sends them back to the bank.  In this case, you now have four greens in your home system, including the green star.  You&#39;ll lose those ships and half your system with a move like that.\n\n14) Jesse: Discover R1 Jesse G2 Beeble\n\tdaselva: ok, thank you ,I understood that\n\n15) daselva: Trade R2 Y2 Daselva\n\n16) Jesse: Build R2 Beeble\n\tdaselva: hello.Can you explain me this?...Are there draws in homeworlds? Take this hypothetical situation:I&acute;ve reached the Homeworld of my opponent with a R3 ship.HIs Homeworld is a R1 G3 and the ships in his Homeworld are Y2 Y2 and B1.So if I attack one of his Y2,I will change it to mine.Then he will attack this Y2 and change it to his.Then I will do the same and my opponent to ...etc ...etc\n\n17) daselva: Discover R2 Daselva Y1 Letsee\n\tJesse: There is no rule for resolving such situations, unfortunately.  With sacrifices making it possible to perform multiple actions, there&#39;s usually a way out of a situation like that, though.\n\n18) Jesse: Build Y1 Jesse\n\tdaselva: thank you\n\n19) daselva: Build Y2 Daselva\n\n20) Jesse: Move Y1 Jesse Beeble\n\n21) daselva: Trade Y2 G2 Daselva\n\n22) Jesse: Build Y2 Beeble\n\n23) daselva: Move G1 Daselva Letsee\n\n24) Jesse: Discover R2 Beeble G1 Bobble\n\n\tdaselva: hello Jesse, can you help me? ...in the present situation I would to sacrifice the g2 in my HW in order to  build a r2 in my HW and build a r3 in Letsee system butI don&acute;t know how to write these commands\n\tdaselva: I wanted to say&laquo;I would like to&raquo;...by the way ,what is &laquo;carriage return&raquo;?\n\tJesse: Darn.  Too bad about that time limit.  To answer your question, though, you would write:\r\n\r\nsacrifice g2 daselva\r\nbuild r2 daselva\r\nbuild r3 letsee\r\n\r\nYou could also shorten the commands.  My habit is to write &quot;sac&quot; for &quot;sacrifice&quot; and just &quot;b&quot; for &quot;build&quot;.  A carriage return is the character you get from hitting [return] or [enter] on most keyboards.  Basically, you put each piece of a complex command on its own line.\n\tdaselva: Hello Jess thank you and forgive me...it was not timee limit,it was just ...awkward.Trying to find what that &laquo;carriage return&raquo; was,that I &acute;ve finally reached that was the changing line button,I carelessly pressed Resignation...I hope to play again whith you one day that I will have more experience (I&acute;ve noticed you are a shark).I will never forget you were my first teacher\n\nHomeworlds Online (SDG# 16675)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.19, Ended: 2010.6.22\nParticipants: shmil1 (S), goulo (N)\nWinner: shmil1\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) shmil1: Homeworld G1 B2 R3\n\tgoulo: Hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\n4) shmil1: Build R1 Shmil1\n\n5) goulo: Build Y1 Goulo\n\n6) shmil1: Trade R1 Y1 Shmil1\n\n7) goulo: Trade Y1 R1 Goulo\n\n8) shmil1: Build R1 Shmil1\n\n9) goulo: Discover Y1 Goulo R3 Rubeno\n\n10) shmil1: Move R3 Shmil1 Rubeno\n\n11) goulo: Discover Y1 Rubeno R2 Sangero\n\n12) shmil1: Build Y1 Shmil1\n\n13) goulo: Build Y2 Goulo\n\n14) shmil1: Move Y1 Shmil1 Rubeno\n\n15) goulo: Build R1 Goulo\n\n16) shmil1: Build Y2 Shmil1\n\n17) goulo: Sacrifice Y2 Goulo\nMove R1 Goulo Rubeno\nMove R1 Goulo Rubeno\nCatastrophe Rubeno R\n\n18) shmil1: Sacrifice Y2 Shmil1\nDiscover R1 Shmil1 G3 Velka\nMove R1 Velka Goulo\n\n19) goulo: Trade Y3 R3 Goulo\n\n20) shmil1: Build R1 Goulo\n\n21) goulo: Trade R3 Y3 Goulo\n\n22) shmil1: Trade R1 Y1 Goulo\n\n23) goulo: Discover Y1 Sangero G3 Smeraldo\n\n24) shmil1: Build Y2 Goulo\n\n25) goulo: Trade Y3 G3 Goulo\n\n26) shmil1: Trade Y2 G2 Goulo\n\n27) goulo: Trade G3 R3 Goulo\n\n28) shmil1: Sacrifice G2 Goulo\nBuild R1 Goulo\nBuild R1 Goulo\nCatastrophe Goulo Red\n\tgoulo: Thanks for a good strange game! Very instructive. :) In all my previous games, killing an enemy&#39;s only 3-ship was a Good Thing. But in this game, I did it to you too soon and had too few ships of my own afterward. Good lesson. :)\n\n\nHomeworlds Online (SDG# 16495)\nStarted: 2010.6.19, Ended: 2010.6.24\nParticipants: TwoShort (S), shmil1 (N)\nWinner: TwoShort\n\n1) shmil1: Homeworld R1 B1 G3 *\n\n2) TwoShort: Homeworld G1 B1 B3 *\n\n3) shmil1: Build G1 Shmil1\n\tTwoShort: Howdy.\n\n4) TwoShort: Build B1 Twoshort\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) shmil1: Build G1 Shmil1\n\n8) TwoShort: Build B2 Twoshort\n\n9) shmil1: Discover G1 Shmil1 Y3 Zluty\n\n10) TwoShort: Trade B2 R2 Twoshort\n\n11) shmil1: Build Y1 Shmil1\n\n12) TwoShort: Build B2 Twoshort\n\n13) shmil1: Discover Y1 Shmil1 G2 Zeleny\n\n14) TwoShort: Move B2 Twoshort Zeleny\n\n15) shmil1: Build Y1 Zeleny\n\n16) TwoShort: Sacrifice R2 Twoshort\nAttack Y1 Zeleny\nAttack Y1 Zeleny\n\n17) shmil1: Build G1 Zluty\n\n18) TwoShort: Build B2 Twoshort\n\n19) shmil1: Move G1 Zluty Twoshort\n\n20) TwoShort: Trade B2 R2 Twoshort\n\n21) shmil1: Sacrifice G3 Shmil1\nBuild G2 Twoshort\nBuild G2 Twoshort\nBuild G3 Zluty\nCatastrophe Twoshort Green\n\n22) TwoShort: Build B2 Zeleny\n\n23) shmil1: Move G3 Zluty Shmil1\n\n24) TwoShort: Discover B2 Zeleny G3 Grogar\n\n25) shmil1: Build Y2 Shmil1\n\n26) TwoShort: Build B2 Grogar\n\n27) shmil1: Trade G3 B3 Shmil1\n\n28) TwoShort: Build B3 Zeleny\n\n29) shmil1: Trade Y1 G1 Shmil1\n\n30) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Grogar Shmil1\nMove B2 Grogar Shmil1\nPass\nCatastrophe Shmil1 Blue\n\n31) shmil1: Build G1 Shmil1\n\n32) TwoShort: Move B3 Zeleny Shmil1\n\n33) shmil1: Build G2 Zluty\n\n34) TwoShort: Attack Y2 Shmil1\n\n35) shmil1: Build G2 Shmil1\n\n36) TwoShort: Trade B3 G3 Shmil1\nCatastrophe Shmil1 Green\n\n\nHomeworlds Online (SDG# 16601)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.19, Ended: 2010.6.28\nParticipants: dlwillson (S), shmil1 (N)\nWinner: dlwillson\n\n1) shmil1: Homeworld Y3 B1 G3\n\n2) dlwillson: Homeworld B2 R3 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) dlwillson: Build G1 Dlwillson\n\n5) shmil1: Discover G1 Shmil1 B2 Modra\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) shmil1: Build G1 Modra\n\n8) dlwillson: B B1 Dlwillson\n\n9) shmil1: Trade G1 Y1 Modra\n\n10) dlwillson: B G1 Dlwillson\n\n11) shmil1: Build Y1 Modra\n\n12) dlwillson: Trade G3 Y3 Dlwillson\n\n13) shmil1: Discover Y1 Modra G1 Zelena\n\n14) dlwillson: Move B1 Dlwillson Zelena\n\n15) shmil1: Build Y1 Zelena\n\n16) dlwillson: B B2 Zelena\n\n17) shmil1: Build Y2 Modra\n\n18) dlwillson: Trade B2 R2 Zelena\n\n19) shmil1: Sacrifice Y2 Modra\nMove Y1 Zelena Dlwillson\nMove Y1 Zelena Dlwillson\n\n20) dlwillson: Trade Y3 G3 Dlwillson\n\n21) shmil1: Attack G1 Dlwillson\n\n22) dlwillson: Attack G1 Dlwillson\n\n23) shmil1: Build G2 Modra\n\n24) dlwillson: A Y1 Dlwillson\n\n25) shmil1: Trade G2 R2 Modra\n\n26) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Zelena\nBuild B3 Zelena\nBuild B3 Dlwillson\n\n27) shmil1: Sacrifice R2 Modra\nAttack Y1 Dlwillson\nAttack G1 Dlwillson\n\n28) dlwillson: Attack G1 Dlwillson\n\n29) shmil1: Attack B1 Dlwillson\n\n30) dlwillson: Sacrifice R2 Zelena\nAttack B1 Dlwillson\nAttack Y1 Dlwillson\n\n31) shmil1: Build G2 Shmil1\n\n32) dlwillson: A Y1 Dlwillson\n\n33) shmil1: Trade G3 R3 Shmil1\n\n34) dlwillson: M Y1 Dlwillson Zelena\n\n35) shmil1: Move G1 Modra Zelena\n\n36) dlwillson: D B3 Zelena Y2 Grappa\n\n37) shmil1: Sacrifice G2 Shmil1\nBuild G2 Zelena\nBuild Y2 Modra\n\n38) dlwillson: S G1 Dlwillson\nB B3 Grappa\n\n39) shmil1: Sacrifice Y2 Modra\nMove G1 Zelena Dlwillson\nMove G2 Zelena Dlwillson\n\n40) dlwillson: A G2 Dlwillson\n\n41) shmil1: Attack B1 Dlwillson\n\n42) dlwillson: A G1 Dlwillson\n\n43) shmil1: Move Y1 Modra Zelena\n\n44) dlwillson: Attack B1 Dlwillson\n\n45) shmil1: Build Y2 Zelena\n\n46) dlwillson: Sacrifice B2 Zelena\nTrade G2 Y2 Dlwillson\nTrade B3 R3 Dlwillson\n\n47) shmil1: Sacrifice Y2 Zelena\nMove Y1 Zelena Grappa\nMove Y1 Grappa Shmil1\n\n48) dlwillson: Sacrifice Y2 Dlwillson\nMove B3 Grappa Shmil1\nMove B3 Grappa Shmil1\n\n49) shmil1: Attack B3 Shmil1\n\n50) dlwillson: Sacrifice R3 Dlwillson\nAttack B3 Shmil1\nAttack R3 Shmil1\nAttack Y1 Shmil1\n\n\tdlwillson: Thanks for the game, Shmil1. What&#39;s our record now, 2 each?\n\tshmil1: i do all the time the same mistake - i start too much games at once. let us play once again. i will concetrate more. :)\n\tdlwillson: I&#39;d love to play again! I&#39;ve got a standing challenge, just accept it and off we go. If you want to move first or second, just let me know.\n\nHomeworlds Online (SDG# 16605)\nStarted: 2010.6.19, Ended: 2010.7.2\nParticipants: shmil1 (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld Y1 B2 G3\n\n2) shmil1: Homeworld G1 B2 R3\n\tMandrel: Have a good game!\n\n3) Mandrel: Build G1 Mandrel\n\n4) shmil1: Build R1 Shmil1\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) shmil1: Trade R1 Y1 Shmil1\n\n7) Mandrel: Build G1 Mandrel\n\n8) shmil1: Build R1 Shmil1\n\n9) Mandrel: Build G1 Mandrel\n\n10) shmil1: Discover R1 Shmil1 Y3 Slunce\n\n11) Mandrel: Discover G1 Mandrel B3 Guilt\n\n12) shmil1: Build Y1 Shmil1\n\n13) Mandrel: Build G2 Guilt\n\n14) shmil1: Move Y1 Shmil1 Guilt\n\n15) Mandrel: Sacrifice R1 Mandrel\nAttack Y1S Guilt\n\n16) shmil1: Move R1 Slunce Mandrel\n\n17) Mandrel: Trade G3 R3 Mandrel\n\n18) shmil1: Move R1 Mandrel Guilt\n\n19) Mandrel: Trade G2 R2 Guilt\n\n20) shmil1: Attack G1 Guilt\n\n21) Mandrel: A R1S Guilt\n\n22) shmil1: Build G2 Guilt\n\n23) Mandrel: Attack G2S Guilt\n\n24) shmil1: Build G2 Guilt\n\n25) Mandrel: Sacrifice R2 Guilt\nAttack G1S Guilt\nAttack G2S Guilt\n\n26) shmil1: Build Y2 Shmil1\n\n27) Mandrel: Build G2 Mandrel\n\n28) shmil1: Discover Y2 Shmil1 B3 Modry\n\n29) Mandrel: Build G3 Mandrel\n\n30) shmil1: Build Y2 Shmil1\n\n31) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild R1 Mandrel\nBuild Y2 Guilt\n\n32) shmil1: Move Y2 Shmil1 Guilt\n\n33) Mandrel: Sacrifice Y2 Guilt\nMove G1 Guilt Shmil1\nMove G2 Guilt Shmil1\n\n34) shmil1: Attack G2 Shmil1\n\n35) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild G3 Shmil1\nBuild G3 Shmil1\n\n36) shmil1: Sacrifice G2 Shmil1\nBuild Y2 Modry\nBuild Y3 Modry\nCatastrophe Shmil1 Green\n\n37) Mandrel: Attack Y2S Guilt\n\n38) shmil1: Trade Y3 G3 Modry\n\n39) Mandrel: Move G3 Mandrel Modry\n\n40) shmil1: Sacrifice Y2 Modry\nMove G3 Modry Mandrel\nMove Y2 Modry Mandrel\n\n41) Mandrel: A G3S Mandrel\n\n42) shmil1: Sacrifice R3 Shmil1\nAttack G2 Mandrel\nAttack G1 Mandrel\nAttack R1 Mandrel\n\n43) Mandrel: Move G2 Guilt Shmil1\n\n44) shmil1: Sacrifice G2 Mandrel\nBuild Y2 Mandrel\nBuild Y3 Shmil1\n\n45) Mandrel: Sacrifice R3 Mandrel\nAttack Y2S Mandrel\nAttack Y2S Mandrel\nAttack R1S Mandrel\n\n46) shmil1: Trade Y3 R3 Shmil1\n\n47) Mandrel: Sacrifice Y1 Guilt\nMove G2 Shmil1 Guilt\n\n48) shmil1: Trade G1 Y1 Mandrel\nCatastrophe Mandrel Yellow\n\n49) Mandrel: B G1 Guilt\n\n50) shmil1: Trade Y1 G1 Shmil1\n\n51) Mandrel: Trade G3 R3 Modry\n\n52) shmil1: Build G1 Shmil1\n\n53) Mandrel: Sacrifice Y2 Guilt\nMove G1 Guilt Shmil1\nMove G2 Guilt Shmil1\nCatastrophe Shmil1 Green\n\n54) shmil1: Trade R3 G3 Shmil1\n\n55) Mandrel: T R1 Y1 Guilt\n\n56) shmil1: Build G1 Shmil1\n\n57) Mandrel: S Y1 Guilt\nMove R3 Modry Shmil1\n\n58) shmil1: Trade G1 R1 Shmil1\n\n59) Mandrel: Attack G3S Shmil1\n\n60) shmil1: Pass\n\n61) Mandrel: Attack R1S Shmil1\n\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 16618)\nStarted: 2010.6.19, Ended: 2010.9.3\nParticipants: MagicJohn (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld Y3 B2 G3\n\n2) MagicJohn: Homeworld B1 G2 R3\n\tMandrel: Have a good game!\r\n\n\tMagicJohn: Thanks, you too.  I&#39;m a little new at this game (3rd try).  I guess I&#39;ll find out how much my learning curve has flattened in my dotage. \n\n3) Mandrel: Build G1 Mandrel\n\tMandrel: Cool, I&#39;m still learnin the ropes myself!\r\n\n\n4) MagicJohn: Build R1 Magicjohn\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) MagicJohn: Trade R1 Y1 Magicjohn\n\n7) Mandrel: Build G1 Mandrel\n\n8) MagicJohn: Build Y1 Magicjohn\n\n9) Mandrel: Trade G1 Y1 Mandrel\n\n10) MagicJohn: Build Y2 Magicjohn\n\n11) Mandrel: Build Y2 Mandrel\n\n12) MagicJohn: Trade Y2 G2 Magicjohn\n\n13) Mandrel: Discover Y1 Mandrel G1 Relief\n\n14) MagicJohn: Discover Y1 Magicjohn G3 Boonies\n\n15) Mandrel: Build Y2 Relief\n\n16) MagicJohn: Sacrifice G2 Magicjohn\nBuild Y2 Boonies\nBuild Y3 Magicjohn\n\n17) Mandrel: Build G1 Mandrel\n\n18) MagicJohn: Move Y1 Boonies Relief\n\n19) Mandrel: Sacrifice R1 Mandrel\nAttack Y1S Relief\n\n20) MagicJohn: Move Y2 Boonies Relief\nCatastrophe Relief Yellow\n\n21) Mandrel: T G1 R1 Mandrel\n\tMagicJohn: Shouldda moved my y2 instead of my y1 last turn.  Rats!\n\tMandrel: How frustrating! At least you&#39;ve still got two larges\n\n22) MagicJohn: Trade Y1 G1 Magicjohn\n\tMagicJohn: That was kinda my plan.  I&#39;m not sure whether that small advantage is worth the sacrifice.  Guess I&#39;ll find out.\n\n23) Mandrel: B G1 Mandrel\n\n24) MagicJohn: Build Y1 Magicjohn\n\n25) Mandrel: T G1 B1 Mandrel\n\n26) MagicJohn: Trade Y1 B1 Magicjohn\n\n27) Mandrel: Build G1 Mandrel\n\n28) MagicJohn: Build B2 Magicjohn\n\n29) Mandrel: D B1 Mandrel G1 Relief\n\n30) MagicJohn: Discover B1 Magicjohn G3 Plopplopfizzfiz\n\n31) Mandrel: B Y1 Mandrel\n\n32) MagicJohn: Build Y1 Magicjohn\n\n33) Mandrel: M Y1 Mandrel Relief\n\n34) MagicJohn: Trade Y3 G3 Magicjohn\n\n35) Mandrel: B G2 Mandrel\n\n36) MagicJohn: Discover B2 Magicjohn Y3 Arrakis\n\n37) Mandrel: T G2 R2 Mandrel\n\n38) MagicJohn: Move G1 Magicjohn Plopplopfizzfiz\n\n39) Mandrel: B G2 Mandrel\n\n40) MagicJohn: Trade B1 Y1 Plopplopfizzfiz\n\n41) Mandrel: B Y2 Relief\n\n42) MagicJohn: Build Y2 Magicjohn\n\n43) Mandrel: T G2 B2 Mandrel\n\n44) MagicJohn: Build Y3 Plopplopfizzfiz\n\n45) Mandrel: M G1 Mandrel Relief\n\n46) MagicJohn: Move Y1 Plopplopfizzfiz Relief\n\n47) Mandrel: S R1 Mandrel\nAttack Y1S Relief\n\n48) MagicJohn: Sacrifice Y2 Magicjohn\nMove R3 Magicjohn Arrakis\nMove R3 Arrakis Relief\n\n49) Mandrel: S Y2 Relief\nDiscover G1 Relief B3 Apprehension\nMove B1 Relief Apprehension\n\n50) MagicJohn: Attack Y1 Relief\n\n51) Mandrel: B G2 Apprehension\n\n52) MagicJohn: Move G3 Magicjohn Arrakis\n\n53) Mandrel: S Y2 Mandrel\nMove B1 Apprehension Magicjohn\nMove G2 Apprehension Magicjohn\n\n54) MagicJohn: Sacrifice Y3 Plopplopfizzfiz\nMove R3 Relief Arrakis\nMove R3 Arrakis Magicjohn\nPass\n\n55) Mandrel: S G3 Mandrel\nBuild G2 Magicjohn\nBuild B1 Magicjohn\nBuild B3 Magicjohn\nC Magicjohn Blue\n\n56) MagicJohn: Attack G2 Magicjohn\n\n57) Mandrel: B G3 Magicjohn\nCatastrophe Magicjohn Green\n\tMagicJohn: Spite check.....\n\tMagicJohn: Well played!\n\tMandrel: Cheers, good game.\n\n\nHomeworlds Online (SDG# 16714)\nVariants: &quot;No undo, Sinister&quot;\nStarted: 2010.6.22, Ended: 2010.7.6\nParticipants: zara2stra (S), goulo (N), AdamBadura (E)\nWinner: AdamBadura\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) AdamBadura: Homeworld B1 G2 Y3\n\tgoulo: I&#39;m playing my first game in the Homeworlds Ladder and it turned quite strange/interesting. I killed his 3-ship soon, which I thought would give me a quick win afterwards, but now he has several pesky 1-ships like annoying mosquitoes at my homeworld which I can&#39;t capture safely or easily. :)\r\nJoin the ladder and we can meta-compete to see who of us can get the highest. :)\n\n3) zara2stra: Homeworld Y3 G1 B3\n\tAdamBadura: How to join it? How does it work? What is it that ladder?\n\n4) goulo: Build Y1 Goulo\n\tgoulo: See the link &quot;Ladders&quot; at top of page: http://superdupergames.org/?page=ladders\r\n\r\nBasically you can challenge someone up to 5 positions higher than you, and if you lose, nothing happens, but if you win, you move up to their place.\r\n\r\nI advise clicking user info to verify that the person is active recently. Some people haven&#39;t logged in for months or over a year, so I assume there is no use in challenging them...\n\n5) AdamBadura: Build Y1 Adambadura\n\n6) zara2stra: Build B1 Zara2stra\n\tAdamBadura: I did.\n\tgoulo: Great! In the forum I requested that a Branches ladder be created, but so far there was no reply. So I am currently in the ladders for Homeworlds, Alien City, and Mirador (a cool abstract 2-player connection game)\n\tgoulo: Sadly we still don&#39;t have 6 in the Mirador ladder to activate it. So feel free to check out Mirador and join it if you like the game. :)\n\tAdamBadura: This system sucks. From 5 available (to challange) players two are already in play (you and the other), two didn&#39;t log in for 2 weeks and 1 for over a year.\n\tgoulo: So challenge one of the 2-week people. Or wait a day or so and I&#39;ll probably (incredible to me - it&#39;s a good lesson!) lose my ladder game soon (where I killed his 3-ship and now I&#39;ll probably lose, so weird!!!).\n\n7) goulo: Discover Y1 Goulo G1 Smeraldeto\n\tzara2stra: Sorry again for the time it took me to get to SDG - I&#39;m having a real hell at where I work\n\n8) AdamBadura: Trade Y1 R1 Adambadura\n\tgoulo: No problem! Good luck with it!\n\n9) zara2stra: Build B1 Zara2stra\n\n10) goulo: Build Y1 Goulo\n\n11) AdamBadura: Build R1 Adambadura\n\tgoulo: By the way, I totally lost that ladder game. Very surprising interesting lesson for me! Killing the enemy 3-ship too early can be fatal if you yourself have to sacrifice too much in the process of killing their 3-ship.\n\n12) zara2stra: Trade B1 R1 Zara2stra\n\tAdamBadura: I have seen that game (in the logs) and trace it move by move. (It was a quick one.)\r\n\r\nI don&#39;t think that killing 3 ship was to much to early. There was just &quot;bad luck&quot; that you hadn&#39;t any R ship in your homeworld and he was able to reach it within a single move (with sacrificing). If you wouldn&#39;t destroy his 3 ship the same might have happened.\r\n\r\nI think you mistake was hope that you will cope with the problem. You were afraid of loosing your 3 ship in a catastrophe so you lost the game instead. You should have acknowledge earlier that your 3 ship is lost and accept catastrophe. (Its not your first time - you already lost in that way with me once.)\r\n\r\nWhat I concluded from that game is that in 2 player game it seems extremely important to constantly keep R ship it your homeworld even at the beginning of the game. 2 player games are far more aggressive because there is much less back-watching. With 3 players if I attack my left opponent he will go into defence and make it easier for his left opponent. But his left opponent is my right one and he will use that occasion to press my stronger and so I will have to retreat. The cycle closes. With two players it is far easier.\n\tAdamBadura: By the way I am now fighting with him/her. I hope I will do better.\r\n\r\nOne catastrophe was already there but I make it better for me (after catastrophe I hade 3,1,1 ships while he had only 3,1 and I had one of those ships in a different system so it was like 2 moves advantage).\n\n13) goulo: Trade Y1 R1 Goulo\n\tgoulo: I also wasted 2 moves at a critical moment after the catastrophe, changing my y3 to r3 and then having to change it back to y3 when he built a 2nd r1. I think I should have instead immediately moved my other y1 to a green world to start building elsewhere.\n\n14) AdamBadura: Discover R1 Adambadura G3 Shipyard\n\n15) zara2stra: Build R2 Zara2stra\n\n16) goulo: Build R2 Goulo\n\n17) AdamBadura: Build R2 Shipyard\n\n18) zara2stra: Discover R2 Zara2stra G2 Mostlyharmless\n\n19) goulo: Move R2 Goulo Smeraldeto\n\n20) AdamBadura: Build Y1 Adambadura\n\n21) zara2stra: Move B1 Zara2stra Mostlyharmless\n\n22) goulo: Build Y1 Goulo\n\n23) AdamBadura: Move Y1 Adambadura Shipyard\n\n24) zara2stra: Trade B1 Y1 Mostlyharmless\n\n25) goulo: Build Y2 Goulo\n\n26) AdamBadura: Build Y2 Adambadura\n\n27) zara2stra: Build Y2 Mostlyharmless\n\n28) goulo: Trade Y1 B1 Goulo\n\n29) AdamBadura: Discover R1 Shipyard Y2 Outpost\n\n30) zara2stra: Build B1 Zara2stra\n\n31) goulo: Move B1 Goulo Smeraldeto\n\n32) AdamBadura: Trade Y2 G2 Adambadura\n\n33) zara2stra: Move B1 Zara2stra Mostlyharmless\n\n34) goulo: Trade Y2 G2 Goulo\n\n35) AdamBadura: Sacrifice G2 Adambadura\nBuild R2 Adambadura\nBuild R3 Adambadura\n\n36) zara2stra: Build R3 Mostlyharmless\n\n37) goulo: Sacrifice G2 Goulo\nBuild R3 Goulo\nBuild R3 Smeraldeto\n\n38) AdamBadura: Move R1 Adambadura Shipyard\n\n39) zara2stra: Trade Y1 G1 Mostlyharmless\n\n40) goulo: Build Y1 Goulo\n\n41) AdamBadura: Build Y1 Shipyard\n\n42) zara2stra: Discover R2 Mostlyharmless Y3 Luna\n\tAdamBadura: I managed to regain our honour by defeating shmil1.\r\n\r\nIt was an even quicker game than yours (around 20 rounds). We lost 3-size ships quite soon (I put myself in risk of catastrophe but it could be done only by him sacrificing his own 3-size ship so I took my chances and he decided to sacrifice).\r\n\r\nIn general I think he made 3 major mistakes during the game and the last one costed him the game. HE possibly knew that his last action was bad but he was already in such bad possition that all he could count for was either my mistake or his quick and painless death. So I became the Grim Reaper. :)\n\tgoulo: Congrats!\n\n43) goulo: Build Y2 Smeraldeto\n\n44) AdamBadura: Build Y2 Adambadura\n\n45) zara2stra: Move R2 Luna Outpost\n\n46) goulo: Discover R2 Smeraldeto Y3 Citronego\n\n47) AdamBadura: Discover R1 Outpost G3 Betteroutpost\n\n48) zara2stra: Move G1 Mostlyharmless Zara2stra\n\n49) goulo: Move R3 Smeraldeto Citronego\n\n50) AdamBadura: Discover R3 Adambadura G3 Backyard\n\n51) zara2stra: Move G1 Zara2stra Outpost\n\n52) goulo: Move R3 Goulo Smeraldeto\n\n53) AdamBadura: Move Y2 Adambadura Backyard\n\n54) zara2stra: Build B1 Zara2stra\n\n55) goulo: Build B2 Smeraldeto\n\n56) AdamBadura: Move R3 Backyard Outpost\n\n57) zara2stra: Move R2 Outpost Betteroutpost\n\n58) goulo: Move B1 Smeraldeto Citronego\n\n59) AdamBadura: Attack G1S Outpost\n\n60) zara2stra: Attack R1E Betteroutpost\n\n61) goulo: Trade R2 G2 Citronego\n\n62) AdamBadura: Build R2 Adambadura\n\n63) zara2stra: Build B2 Mostlyharmless\n\n64) goulo: Build G1 Citronego\n\tgoulo: I have lost my elite Homeworlds skills lately :( :( :(\n\n65) AdamBadura: Build G2 Outpost\n\tAdamBadura: That started some time ago... ;) You win 3 player games bacause zara2stra helps you. :)\n\tgoulo: Ha!\n\n66) zara2stra: Sacrifice Y2 Mostlyharmless\nMove R2 Betteroutpost Smeraldeto\nMove R1 Betteroutpost Smeraldeto\n\n67) goulo: Trade G2 B2 Citronego\n\tzara2stra: After all the games we are playing now, I will have to take a break. For the next two weeks I won&#39;t be as often online :(\n\n68) AdamBadura: Build Y2 Adambadura\n\n69) zara2stra: Attack Y2N Smeraldeto\n\n70) goulo: Attack Y2S Smeraldeto\n\tgoulo: a2na and I will be away this weekend (starting around 16.00 today). But back on sunday evening.\n\n71) AdamBadura: Move G1 Outpost Backyard\n\tgoulo: zara2stra, I propose we do not capture and recapture the y2 ship back and forth while adam continues to build and progress. :)\n\n72) zara2stra: Attack Y2N Smeraldeto\n\tzara2stra: Well, as I see it, from my inferior position, you will loose much more in loosing your turn to recapture it. And someone might still want to catastrophe this system...\n\n73) goulo: Attack R2S Smeraldeto\n\n74) AdamBadura: Move R1 Shipyard Smeraldeto\nCatastrophe Smeraldeto R\n\n75) zara2stra: Sacrifice R3 Mostlyharmless\nAttack B2N Smeraldeto\nAttack Y1N Smeraldeto\nPass\n\tAdamBadura: Problem solved. No more arguing. ;)\n\tzara2stra: Thanks - that&#39;s exactly what I meant when I moved those ships in the first place :)\n\n76) goulo: Build B3 Citronego\n\n77) AdamBadura: Build G2 Outpost\n\tAdamBadura: Great! Now I will lose B...\n\n78) zara2stra: Build B3 Smeraldeto\n\n79) goulo: Build G3 Citronego\n\n80) AdamBadura: Sacrifice Y2 Backyard\nMove G2 Outpost Citronego\nMove G2 Outpost Citronego\nCatastrophe Citronego G\n\n81) zara2stra: Trade B2 Y2 Mostlyharmless\n\n82) goulo: Discover R3 Citronego R1 Rubeneto\n\n83) AdamBadura: Trade R2 B2 Adambadura\n\n84) zara2stra: Build B3 Mostlyharmless\n\n85) goulo: Sacrifice Y3 Goulo\nMove R3 Rubeneto Goulo\nMove B1 Citronego Adambadura\nMove B2 Citronego Adambadura\nCatastrophe Adambadura B\n\n86) AdamBadura: Build Y3 Shipyard\n\n87) zara2stra: Move Y1 Smeraldeto Shipyard\nCatastrophe Shipyard Y\n\tAdamBadura: goulo, I will have my revange on you!\n\tAdamBadura: By the way I climbed up 5 steps in the ladder. But in an unsatisfable manner. The game was ended (automatically) because player did not make his setup move after requested time. But I hope people in higher parts of the ladder tend to play more.\n\n88) goulo: Build Y1 Goulo\n\n89) AdamBadura: Build R1 Shipyard\n\n90) zara2stra: Sacrifice Y2 Smeraldeto\nMove B3 Smeraldeto Goulo\nMove B2 Smeraldeto Goulo\n\n91) goulo: Attack B3S Goulo\n\n92) AdamBadura: Move Y2 Adambadura Shipyard\n\n93) zara2stra: Build B1 Goulo\nCatastrophe Goulo B\n\n94) goulo: Trade B3 G3 Citronego\n\n95) AdamBadura: Build Y1 Shipyard\n\n96) zara2stra: Trade B1 R1 Mostlyharmless\n\n97) goulo: Discover Y1 Goulo B1 Safireto\n\n98) AdamBadura: Build R2 Adambadura\n\n99) zara2stra: Build R2 Mostlyharmless\n\n100) goulo: Sacrifice G3 Citronego\nBuild Y1 Safireto\nBuild Y2 Safireto\nBuild Y3 Goulo\n\n101) AdamBadura: Move Y1 Shipyard Safireto\nCatastrophe Safireto Y\n\n102) zara2stra: Sacrifice Y2 Mostlyharmless\nMove R1 Mostlyharmless Goulo\nMove R2 Mostlyharmless Goulo\nCatastrophe Goulo R\n\n103) goulo: Discover Y1 Goulo B1 Safireto\n\n104) AdamBadura: Sacrifice Y2 Shipyard\nMove R3 Outpost Zara2stra\nMove Y3 Adambadura Zara2stra\n\tgoulo: Ouch! I see I will not survive much longer...!\n\n105) zara2stra: Build R1 Zara2stra\n\n106) goulo: Build Y1 Goulo\n\n107) AdamBadura: Sacrifice R3 Zara2stra\nAttack B3S Zara2stra\nAttack R1S Zara2stra\nAttack R1S Zara2stra\n\n108) zara2stra: Build B1 Zara2stra\n\tAdamBadura: I think goulo you will last to the very end of the game... ;)\n\n109) goulo: Trade Y1 R1 Safireto\n\n110) AdamBadura: Sacrifice R2 Shipyard\nAttack B1S Zara2stra\nAttack B1S Zara2stra\n\tgoulo: Yay! I wasn&#39;t eliminated! :)\r\n\r\nNow you should learn Alien City to celebrate your victory...\n\tAdamBadura: Interesting game. Somewhere in the middle of the game I though I will lose as my position was worse they yours and I had no idea what to do. Then goulo prpared to destroy B star in my system. But this acutally I considered an advantage. It made a direct connection from my system to zara2stra&#39;s so I could keep 3-size ships in my system to protect it while being still able to move to zara2stra in a single move.\r\n\r\nAll would be fine if goulo would indeed destroy B. But he waited. And my position was becoming worse as I could build much and zara2stra was nearing goulo&#39;s destruction. So I made a B ship in my home worldd to lure goulo. And it worked. I lost B. But it costed goulo one lestt B ship. And it was a B3 ship. So I still could not make the prepared attack because goulo in respons would invide my own system and conquere it faster.\r\n\r\nSo I waited for some mistake or a bit of luck. And after the catastrophes period I come out stronger. It seems to me I lost less the you, or at least less in key positions which I needed to attack zara2stra.\r\n\r\nAnotherone for me. :) A good one - thanks! \n\n\nHomeworlds Online (SDG# 16725)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.23, Ended: 2010.6.27\nParticipants: shmil1 (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G1 B2 R3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) shmil1: Build Y1 Shmil1\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\n6) shmil1: Discover Y1 Shmil1 G3 Zelena\n\n7) AdamBadura: Build R1 Adambadura\n\n8) shmil1: Build Y1 Shmil1\n\n9) AdamBadura: Move R1 Adambadura Zelena\n\n10) shmil1: Build Y2 Zelena\n\n11) AdamBadura: Attack Y1 Zelena\n\n12) shmil1: Build Y2 Zelena\n\n13) AdamBadura: Build Y2 Zelena\nCatastrophe Zelena Y\n\n14) shmil1: Trade Y1 R1 Shmil1\n\n15) AdamBadura: Build Y1 Adambadura\n\tAdamBadura: What &quot;Hard time&quot; variant means? How rules are changed?\n\tshmil1: no idea, somehow connected to time you have for a move...\n\n16) shmil1: Build R1 Shmil1\n\n17) AdamBadura: Build R2 Zelena\n\n18) shmil1: Discover R1 Shmil1 G3 Cesta\n\n19) AdamBadura: Move Y1 Adambadura Zelena\n\n20) shmil1: Build R2 Cesta\n\n21) AdamBadura: Trade Y1 B1 Adambadura\n\n22) shmil1: Build R2 Cesta\n\n23) AdamBadura: Build R3 Adambadura\n\n24) shmil1: Sacrifice Y3 Shmil1\nMove R1 Cesta Adambadura\nMove R2 Cesta Adambadura\nMove R2 Cesta Shmil1\nCatastrophe Adambadura Red\n\n25) AdamBadura: Build B1 Adambadura\n\n26) shmil1: Trade R2 Y2 Shmil1\n\n27) AdamBadura: Move R1 Zelena Adambadura\n\n28) shmil1: Build R1 Shmil1\n\n29) AdamBadura: Build R2 Zelena\n\n30) shmil1: Move R1 Shmil1 Zelena\n\n31) AdamBadura: Sacrifice B1 Adambadura\nTrade R2 Y2 Zelena\n\n32) shmil1: Build R2 Zelena\n\n33) AdamBadura: Sacrifice R2 Zelena\nAttack R2 Zelena\nAttack R1 Zelena\n\n34) shmil1: Build R2 Shmil1\n\n35) AdamBadura: Discover R1 Zelena Y2 Outpost\n\n36) shmil1: Sacrifice Y2 Shmil1\nMove R2 Shmil1 Zelena\nMove R2 Zelena Adambadura\n\n37) AdamBadura: Move Y2 Zelena Shmil1\n\n38) shmil1: Build R2 Shmil1\n\n39) AdamBadura: Sacrifice R2 Zelena\nAttack R2 Shmil1\nAttack R1 Shmil1\n\n\nHomeworlds Online (SDG# 16695)\nStarted: 2010.6.24, Ended: 2010.8.29\nParticipants: daselva (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\tMandrel: Have a good game!\n\n2) daselva: Homeworld G3 Y2 B3\n\n3) Mandrel: Build G1 Mandrel\n\tdaselva: thank you,I will try...I&acute;m doing my first steps ,so forgive me if I do wrong things...\n\tMandrel: No worries, I&#39;m not particularly experienced, but if you have any questions feel free to ask and I&#39;ll help if I can.\n\n4) daselva: Build B1 Daselva\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) daselva: Trade B3 R3 Daselva\n\n7) Mandrel: B Y1 Mandrel\n\n8) daselva: Build B1 Daselva\n\n9) Mandrel: Build G1 Mandrel\n\n10) daselva: Build R1 Daselva\n\n11) Mandrel: Discover Y1 Mandrel G3 Contentment\n\n12) daselva: Trade B1 G1 Daselva\n\n13) Mandrel: Build Y1 Mandrel\n\n14) daselva: Trade R3 Y3 Daselva\n\n15) Mandrel: Build Y2 Contentment\n\n16) daselva: Discover Y3 Daselva G1 Maybe\n\n17) Mandrel: Trade Y1 B1 Mandrel\n\n18) daselva: Build B1 Daselva\n\n19) Mandrel: Move B1 Mandrel Contentment\n\n20) daselva: Move B1 Daselva Maybe\n\n21) Mandrel: B B2 Contentment\n\n22) daselva: Build G2 Daselva\n\n23) Mandrel: Trade B2 G2 Contentment\n\n24) daselva: Move G1 Daselva Maybe\n\n25) Mandrel: B B2 Contentment\n\n26) daselva: Discover B1 Maybe Y3 S3\n\n27) Mandrel: T B2 R2 Contentment\n\n28) daselva: Sacrifice Y3 Maybe\nMove G1 Maybe Contentment\nDiscover G2 Daselva Y1 S2\nMove G2 S2 Contentment\nCatastrophe Contentment Green\n\n29) Mandrel: B Y1 Mandrel\n\n30) daselva: Trade B1 G1 S3\n\n31) Mandrel: T Y1 B1 Mandrel\n\n32) daselva: Build G1 S3\n\n33) Mandrel: Build Y1 Mandrel\n\n34) daselva: Build R1 Daselva\n\n35) Mandrel: D Y1 Mandrel G3 Lethargy\n\n36) daselva: Build R2 Daselva\n\n37) Mandrel: B Y1 Lethargy\n\n38) daselva: Trade R2 Y2 Daselva\n\n39) Mandrel: B Y2 Lethargy\n\n40) daselva: Discover G1 S3 B2 S4\n\n41) Mandrel: B Y3 Mandrel\n\n42) daselva: Build G2 S4\n\n43) Mandrel: B Y3 Mandrel\n\n44) daselva: Move G1 S3 Mandrel\n\n45) Mandrel: A G1S Mandrel\n\n46) daselva: Sacrifice Y2 Daselva\nDiscover G1 S4 R3 S5\nMove G1 S5 Mandrel\nCatastrophe Mandrel Green\n\n47) Mandrel: D Y2 Lethargy G1 Rundown\n\n48) daselva: Trade G2 Y2 S4\n\n49) Mandrel: Build Y3 Rundown\n\n50) daselva: Move R1 Daselva Rundown\n\n51) Mandrel: Sacrifice B1 Mandrel\nT Y3 R3 Rundown\n\n52) daselva: Build R2 Rundown\n\n53) Mandrel: Sacrifice Y3 Mandrel\nMove R3 Rundown Daselva\nMove Y2 Rundown Daselva\nPass\n\n54) daselva: Build R2 Rundown\n\n55) Mandrel: Sacrifice R3 Daselva\nAttack R1S Daselva\nAttack B1S Daselva\nPass\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 16609)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.24, Ended: 2010.8.19\nParticipants: dlwillson (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) dlwillson: Homeworld B3 R1 G3\n\tDanner: Hi! I have finished my exams, let&#39;s play :)\n\tdlwillson: Excellent, thanks for taking my challenge, Danner!\n\n3) Danner: Homeworld B1 Y2 G3\n\n4) dlwillson: B G1 Dlwillson\n\tDanner: My pleasure!\n\n5) Danner: Build G1 Danner\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Danner: Trade G1 B1 Danner\n\n8) dlwillson:\nB B2 Dlwillson\n\n9) Danner: Build B2 Danner\n\n10) dlwillson: Build G1 Dlwillson\n\n11) Danner: Discover B2 Danner Y3 Artemus\n\n12) dlwillson: T B2 Y2 Dlwillson\n\n13) Danner: Build B2 Danner\n\n14) dlwillson: D B1 Dlwillson G2 Jimwest\n\n15) Danner: Trade B1 R1 Danner\n\n16) dlwillson: Trade G1 R1 Dlwillson\n\n17) Danner: Build R2 Danner\n\n18) dlwillson: B R2 Dlwillson\n\n19) Danner: Build R2 Danner\n\n20) dlwillson: M R1 Dlwillson Jimwest\n\n21) Danner: Trade R2 Y2 Danner\n\n22) dlwillson: B R2 Jimwest\n\n23) Danner: Move R1 Danner Artemus\n\n24) dlwillson: T R1 Y1 Jimwest\n\n25) Danner: Build G1 Danner\n\n26) dlwillson: B Y1 Jimwest\n\n27) Danner: Discover B2 Danner Y3 Garrett\n\n28) dlwillson: Build Y1 Dlwillson\n\n29) Danner: Discover G1 Danner Y3 Gamall\n\tdlwillson: Good move. Thief 3? Hmm...\n\n30) dlwillson: Discover Y1 Jimwest B3 Miguelito\n\tDanner: Thx. Yes, have you played it?\n\n31) Danner: Discover Y2 Danner R3 Builder\n\n32) dlwillson: Discover R2 Dlwillson B2 Ulysses\n\tdlwillson: Nah. I was going for a Wild Wild West theme. Still fits with your Artemus. I suppose I&#39;ll have to play the Thief series sometime. Good?\n\tDanner: I liked that movie.\r\nYeah, if you like stealth games. I recommend you to start with T3, because the first two games are harder, and their graphics looks rather old. What I especially like in the series is its fantasy-steampunk world.\n\n33) Danner: Sacrifice G1 Gamall\nBuild Y3 Builder\n\tDanner: Builder is the god of the Hammerites. They represent order and technology. And they wear red. :)\n\n34) dlwillson: Trade Y2 G2 Dlwillson\n\n35) Danner: Move Y3 Builder Jimwest\n\n36) dlwillson: M R2 Jimwest Miguelito\n\n37) Danner: Move Y3 Jimwest Miguelito\n\n38) dlwillson: T R2 Y2 Miguelito\n\n39) Danner: Move Y3 Miguelito Ulysses\n\n40) dlwillson: S Y1 Jimwest\nM R2 Ulysses Miguelito\n\n41) Danner: Trade B2 G2 Garrett\n\n42) dlwillson: T Y1 G1 Miguelito\n\n43) Danner: Move Y3 Ulysses Miguelito\n\n44) dlwillson: Sacrifice G2 Dlwillson\nBuild Y1 Miguelito\nBuild Y1 Miguelito\nCatastrophe Miguelito Y\n\n45) Danner: Move G3 Danner Miguelito\n\tDanner: Good move!\n\tdlwillson: Thank you! About WWW: I was talking about the TV show, not the movie. The Will Smith WWW movie did everything for WWW that the Matt Broderick Godzilla movie did for Godzilla.\n\tDanner: Sorry for being inactive lately. The situation is complicated in both the game and the real life.\n\tdlwillson: No worries. I&#39;m taking a whole day for every turn in my game with mneme. You&#39;re both very good, and I have to be on my toes...\n\n46) dlwillson: Trade R2 G2 Miguelito\n\tDanner: Thank you for your patience.\n\n47) Danner: Trade G3 R3 Miguelito\n\n48) dlwillson: B G1 Dlwillson\n\n49) Danner: Attack G2S Miguelito\n\n50) dlwillson: D G1 Dlwillson B2 Train\n\n51) Danner: Attack G1S Miguelito\n\n52) dlwillson: B G1 Train\n\n53) Danner: Trade G1 Y1 Miguelito\n\n54) dlwillson: Build G1 Dlwillson\n\n55) Danner: Build G3 Miguelito\n\n56) dlwillson: Trade G3 Y3 Dlwillson\n\n57) Danner: Sacrifice G3 Miguelito\nBuild G3 Miguelito\nBuild G3 Miguelito\nBuild G3 Garrett\n\n58) dlwillson: Sacrifice Y1 Dlwillson\nMove G1 Train Miguelito\nCatastrophe Miguelito G\n\n59) Danner: Move R3 Miguelito Train\n\n60) dlwillson: B Y1 Dlwillson\n\n61) Danner: Attack G1S Train\n\n62) dlwillson: Move Y1 Dlwillson Jimwest\n\n63) Danner: Move R1 Artemus Jimwest\n\n64) dlwillson: Build Y1 Jimwest\n\n65) Danner: Attack Y1S Jimwest\n\n66) dlwillson: Build Y2 Dlwillson\n\n67) Danner: Attack Y1S Jimwest\n\n68) dlwillson: Trade Y2 R2 Dlwillson\n\n69) Danner: Sacrifice G3 Garrett\nBuild R1 Train\nBuild R2 Danner\nBuild Y2 Jimwest\n\n70) dlwillson: B R3 Dlwillson\n\n71) Danner: Sacrifice Y2 Jimwest\nMove R1 Train Dlwillson\nMove R3 Train Miguelito\nCatastrophe Dlwillson R\n\n\tdlwillson: I need a free move, then I can do some damage, but there&#39;s no free move, so that was more like going out with a small bang. Good game, Danner. We&#39;ll have to play again some time.\n\tDanner: Thx for the game.\n\nHomeworlds Online (SDG# 16740)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.25, Ended: 2010.6.28\nParticipants: mathochist (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G2 B3 Y3\n\n\tgoulo: Hi, have fun!\n\nHomeworlds Online (SDG# 16756)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.27, Ended: 2010.7.3\nParticipants: Danner (S), jeep (N)\nWinner: Danner\n\n1) jeep: Homeworld R1 B2 G3\n\tDanner: Hi!\r\nHave a great game!\n\tjeep: Hi... I don&#39;t think I got notified that this game was ready. You too.\n\n2) Danner: Homeworld B1 G2 R3\n\n\tDanner: :(\n\nHomeworlds Online (SDG# 16768)\nVariants: &quot;Hard time&quot;\nStarted: 2010.6.30, Ended: 2010.7.1\nParticipants: goulo (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld B2 G1 R3\n\n2) goulo: Homeworld G2 B3 Y3\n\n3) AdamBadura: Build R1 Adambadura\n\tgoulo: I already challenged some other guy in the ladder, but he&#39;s not responded yet, so I finally accepted your challenge. I guess if he responds/accepts then I&#39;ll be in 2 ladder games at the same time or something. I didn&#39;t realize you can challenge me when I have a challenge pending with someone else. The mysteries of the ladder!\n\n4) goulo: Build Y1 Goulo\n\tAdamBadura: No. I cannot. But it seems challenge is automatically rejected after some time (24-48 hours) which is good IMHO.\n\tAdamBadura: Anyway it was obvious that sooner or later we will fight with each other as we are here all the time... ;)\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: Strange, it says &quot;Challenges remain open for 7 days before being counted as being declined.&quot; and he didn&#39;t explicitly decline. Maybe while the challenge was pending, you could also challenge me, and then when I get into one Ladder game it nullifies any other pending challenges with me.\n\tgoulo: But we shouldn&#39;t KEEP challenging each other, or we&#39;ll not both climb up the ladder! We&#39;ll only climb onto the other and push the other down. :)\n\n6) goulo: Trade Y1 R1 Goulo\n\tAdamBadura: I had it already twice that I challenged someone and there after 24-48 hours I can again challenge someone without any message or anything.\r\n\r\nYes. But this time challenging you was a good move for me as you were much higher and I think I am able to defeat you... ;)\n\tgoulo: We shall see! :)\n\n7) AdamBadura: Build Y1 Adambadura\n\tgoulo: speaking of ladders, have a look at Mirador. It&#39;s not a pyramid game, but still a cool abstract game, and its ladder is inactive from having only 5 players, not the necessary 6 to activate it. :)\n\tgoulo: Heh, I just joined the Blam! ladder too.\r\nI requested a Branches ladder in the forum, but Aaron has not replied. :/\n\tAdamBadura: By the way. Yesterday I played Chicago Express with Arturion through Vassal (actually it was Wabash Cannonball but it is the same game). It was a two player game.\r\n\r\nWe interrupted it after 2nd round as I had large both money and dividend advantage and there was no point in continuing.\r\n\r\nHe overpaid initial auctions. Thanks to this after first round I had 3 shares while he had only 2 and I had more money. Also I bought yellow and green which have larger initial income. While he chose red and blue which are typically considered better as they have less shares to share the income.\r\n\r\n2 player game of CE is very non-forgiving. In multiplayer game you can count on others mistakes or king making effect. But in two player mode once you make a mistake it is your end (unless your opponent makes something stupid too). It is just a math game in this mode. But still want to test it more.\n\n8) goulo: Build R1 Goulo\n\tgoulo: It just seems less interesting 2-player due to completely losing the &quot;temporary alliance&quot; aspect (that you might own 1 share and I own 2 shares of a company, so the company helps me more than you, but we both still want it to succeed since it helps us against the other players). I guess I&#39;d try it again 2-player sometime, but it seems to lose a lot of the core of the game.\n\n9) AdamBadura: Discover Y1 Adambadura G3 Shipyard\n\n10) goulo: Discover R1 Goulo G1 Smeraldeto\n\n11) AdamBadura: Build Y1 Shipyard\n\n12) goulo: Build Y2 Goulo\n\n13) AdamBadura: Build Y2 Adambadura\n\n14) goulo: Move Y2 Goulo Smeraldeto\n\n15) AdamBadura: Move Y1 Shipyard Smeraldeto\n\n16) goulo: Attack Y1 Smeraldeto\n\n17) AdamBadura: Build Y2 Shipyard\n\n18) goulo: Build Y3 Goulo\n\n19) AdamBadura: Discover Y1 Shipyard G2 Docks\n\n20) goulo: Discover Y2 Smeraldeto Y3 Citronego\n\n21) AdamBadura: Trade Y1 G1 Adambadura\n\tgoulo: BTW it looks like my usual Wednesday evening wargaming is not going to happen. Are you interested in coming over this evening to try Gnostica or some other games?\n\tAdamBadura: Saddly no. Today I cannot.\r\n\r\nNice move with taking Y3 as start. Why haven&#39;t I forseen that! This puts me in a bad situation...\n\n22) goulo: Trade Y3 G3 Goulo\n\n23) AdamBadura: Move G1 Adambadura Shipyard\n\n24) goulo: Build R1 Goulo\n\n25) AdamBadura: Build G2 Shipyard\n\n26) goulo: Sacrifice Y2 Citronego\nMove G3 Goulo Smeraldeto\nMove G3 Smeraldeto Shipyard\nCatastrophe Shipyard G\n\n27) AdamBadura: Build R2 Adambadura\n\tAdamBadura: Was it worth it? I considered my previous poisition as very bad. Now I do not...\n\n28) goulo: Build R2 Smeraldeto\n\tgoulo: I&#39;m not sure if it was worth it or not. We lost similar amounts of ship points/pips, but you lost more ships, so I supposed it was worth it. Time will tell. :)\n\n29) AdamBadura: Discover R2 Adambadura G3 Shipyard\n\n30) goulo: Discover R1 Goulo Y1 Citroneto\n\n31) AdamBadura: Build R2 Adambadura\n\n32) goulo: Build R3 Goulo\n\n33) AdamBadura: Build R3 Shipyard\n\n34) goulo: Discover R2 Smeraldeto Y3 Citronego\n\n35) AdamBadura: Build Y2 Adambadura\n\n36) goulo: Move R3 Goulo Smeraldeto\n\n37) AdamBadura: Move Y2 Adambadura Shipyard\n\n38) goulo: Trade Y3 B3 Goulo\n\n39) AdamBadura: Trade R3 G3 Adambadura\n\n40) goulo: Build R3 Goulo\n\n41) AdamBadura: Sacrifice G3 Adambadura\nBuild Y2 Docks\nBuild Y3 Adambadura\nBuild Y3 Shipyard\n\n42) goulo: Build B1 Goulo\n\tAdamBadura: A kind of Y technology denial strategy. ...but what now? ;)\n\n43) AdamBadura: Move R2 Shipyard Citroneto\n\tgoulo: hmm, yeah, that was probably a mistake on my part.\n\n44) goulo: Move R1 Citroneto Citronego\n\n45) AdamBadura: Discover Y1 Docks B3 Ontheway\n\n46) goulo: Move R1 Citronego Citroneto\n\n47) AdamBadura: Attack R1 Citroneto\n\n48) goulo: Move R2 Citronego Citroneto\n\n49) AdamBadura: Sacrifice Y2 Adambadura\nMove R1 Citroneto Goulo\nMove R2 Citroneto Goulo\nCatastrophe Goulo R\n\n50) goulo: Trade B1 R1 Goulo\n\tAdamBadura: Nice dilema for me... :)\n\tAdamBadura: I knew there was a plan behind your previous move (invading my system with your R1 ship) but I just couldn&#39;t see what it was and decided to check it... ;)\n\n51) AdamBadura: Trade R2 G2 Adambadura\n\n52) goulo: Trade B3 Y3 Goulo\n\n53) AdamBadura: Build Y2 Adambadura\n\tgoulo: Yeah, but it was just a small clever trick that won&#39;t really change my ultimate defeat. :/\n\n54) goulo: Build R1 Goulo\n\n55) AdamBadura: Build R2 Shipyard\n\n56) goulo: Move R1 Smeraldeto Ontheway\n\n57) AdamBadura: Discover Y1 Ontheway B1 Stillontheway\n\n58) goulo: Move R3 Smeraldeto Shipyard\n\n59) AdamBadura: Sacrifice R2 Shipyard\nAttack R3 Shipyard\nPass\n\n60) goulo: Trade R1 G1 Goulo\n\n61) AdamBadura: Move G2 Adambadura Shipyard\n\n62) goulo: Move Y1 Smeraldeto Ontheway\n\tAdamBadura: Thanks! ;)\n\tgoulo: Desperate times call for desperate measures... unfortunately you didn&#39;t respond as I hoped. :)\n\n63) AdamBadura: Move R3 Shipyard Citroneto\n\n64) goulo: Move R2 Citroneto Goulo\n\n65) AdamBadura: Build R1 Shipyard\n\n66) goulo: Trade R1 G1 Ontheway\n\n67) AdamBadura: Move R3 Citroneto Ontheway\n\n68) goulo: Build Y1 Goulo\n\n69) AdamBadura: Attack Y1 Ontheway\n\n70) goulo: Sacrifice Y1 Goulo\nDiscover G1 Ontheway R1 Rubeneto\n\n71) AdamBadura: Move Y2 Docks Rubeneto\n\tgoulo: Interested in Gnostica etc tonight (18.30 or later)?\n\n72) goulo: Sacrifice Y3 Goulo\nMove G1 Rubeneto Shipyard\nMove G1 Goulo Stillontheway\nMove G1 Stillontheway Shipyard\nCatastrophe Shipyard G\n\tAdamBadura: I&#39;m already appointed (cinema). Tomorrow my parents-in-law come to visit so I cannot as well.\r\n\r\nBut thnaks for asking. I would like to try that game sometime as you seem to be pushing on it hard... ;)\n\n73) AdamBadura: Sacrifice Y2 Rubeneto\nMove R3 Ontheway Stillontheway\nMove R3 Stillontheway Goulo\n\n74) goulo: Build R1 Goulo\nCatastrophe Goulo R\n\n\tAdamBadura: Suddenyl it is all so small... ;)\n\tgoulo: Interesting bug. It&#39;s supposed to be illegal to make a move that destroys your own homeworld. :)\n\tAdamBadura: :)\n\tAdamBadura: I think the first catastrophe you made was bad for you. I lost more but my position became better. Or at least I felt so.\n\tgoulo: With the benefit of hindsight, I must agree! :)\n\tgoulo: I think I&#39;ve been analyzing too much in terms of material advantage (who has more ships, whose ships are worth more pips) and not enough in terms of position.\n\nHomeworlds Online (SDG# 16498)\nStarted: 2010.7.1, Ended: 2010.7.4\nParticipants: mathochist (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B3 Y2 G3\n\n\tmathochist: Sorry.  :(  It&#39;s been a rough couple weeks for me, and I&#39;ve fallen behind in all my games.  \n\nHomeworlds Online (SDG# 16729)\nStarted: 2010.7.1, Ended: 2010.7.18\nParticipants: ZackStack (S), daselva (N)\nWinner: ZackStack\n\n1) daselva: Homeworld G3 Y2 B3\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Greetings!  Thanks for the challenge and have a good game.\n\n3) daselva: Build B1 Daselva\n\n4) ZackStack: Build G1 Zackstack\n\tdaselva: hello,sorry if I&acute;m not a very good opponent but I&acute;m doing my first steps...\n\tZackStack: I&#39;ll try to be gentle then! :-)\n\n5) daselva: Trade B1 R1 Daselva\n\tdaselva: please don&acute;t I want to feel the game\n\n6) ZackStack: Trade G1 R1 Zackstack\n\n7) daselva: Build B1 Daselva\n\n8) ZackStack: Build R2 Zackstack\n\n9) daselva: Build R2 Daselva\n\n10) ZackStack: Trade R2 Y2 Zackstack\n\n11) daselva: Trade R1 Y1 Daselva\n\n12) ZackStack: Build G1 Zackstack\n\n13) daselva: Trade B3 G3 Daselva\n\n14) ZackStack: Build G1 Zackstack\n\n15) daselva: Build B1 Daselva\n\n16) ZackStack: Discover G1 Zackstack B3 Deepsea\n\n17) daselva: Discover B1 Daselva G1 Blue\n\n18) ZackStack: Build G2 Deepsea\n\n19) daselva: Build G2 Daselva\n\n20) ZackStack: Build G2 Deepsea\n\n21) daselva: Move G2 Daselva Blue\n\n22) ZackStack: Trade G2 Y2 Deepsea\n\tZackStack: I could have sacrificed the y2 in my home system to send one of my greens from DeepSea to your homeworld to cause a catastrophe... you might want to do something about that :-)\n\tdaselva: hello Zack thank you for your generousity...I&acute;m a beginner and I&acute;m trying to understand this game that I&acute;m finding very intersting.The present situation is a new and interestingsituation for me.I&acute;ve played like I did because I thought that by not having yellow power in DeepSEa you could&acute;t go from there to my HW.Besides the two systemes are not conected... What can you tell me about this?\n\tdaselva: hello again...I understand that by sacrificing y2 in your HW you could bring one of  your greens from DeepSea to blue and then from there to my HW,but once again,there is no yellow power in Blue...\n\n23) daselva: Trade B1 Y1 Blue\n\tZackStack: By sacrificing a ship of a certain color you may use its power even in a system that does not have that color.  For instance if you sacrificed the Y1 at your homeworld you would be able to move one of your ships at Blue.  This can lead to some very unexpected moves!\n\n24) ZackStack: Discover G1 Deepsea B1 Puddle\n\n25) daselva: Move R2 Daselva Puddle\n\n26) ZackStack: Sacrifice Y2 Deepsea\nMove G1 Puddle Daselva\nDiscover G2 Deepsea Y1 Spark\n\n27) daselva: Trade G3 R3 Daselva\n\n28) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Daselva\nBuild G3 Daselva\nBuild G3 Zackstack\nCatastrophe Daselva Green\n\tZackStack: There.  A sacrifice example for you ;-)\n\n29) daselva: Sacrifice G2 Blue\nBuild Y2 Blue\nBuild Y3 Daselva\n\n30) ZackStack: Build Y3 Zackstack\n\n31) daselva: Trade Y1 R1 Daselva\n\n32) ZackStack: Discover Y2 Zackstack G3 Melon\n\tdaselva: trade y1 r1 daselva\n\tdaselva: trade y1 r1 daselva\n\n33) daselva: Sacrifice Y1 Blue\nMove R2 Puddle Melon\n\tdaselva: (I must be sleeping)\n\tZackStack: Heh.  I don&#39;t think I&#39;ve ever done that twice before :-)\n\n34) ZackStack: Discover Y2 Melon G1 Pea\n\n35) daselva: Build R2 Melon\n\n36) ZackStack: Build Y1 Pea\n\n37) daselva: Sacrifice Y3 Daselva\nMove R2 Melon Zackstack\nMove R2 Melon Zackstack\nMove R1 Daselva Pea\nCatastrophe Zackstack Red\n\n\n38) ZackStack: Sacrifice Y3 Zackstack\nMove Y1 Pea Daselva\nMove Y2 Pea Daselva\nMove G2 Spark Daselva\n\n39) daselva: Attack G2 Daselva\n\n\tZackStack: It seems like I should have seen that coming... I guess the board was getting pretty busy :-)\n\n40) ZackStack: Sacrifice G1 Zackstack\nBuild Y1 Daselva\nCatastrophe Daselva Yellow\n\n\tZackStack: Thanks for the game!  I hope you had a good time, and if nothing else got a better grasp of the power of sacrificing ships.  Have fun learning Homeworlds and I&#39;ll be happy to play rated or unrated any time!\n\tdaselva: thank you I&acute;ve learned a lot with you and with this game\n\nHomeworlds Online (SDG# 16787)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.1, Ended: 2010.7.4\nParticipants: rootbier (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G1 B2 R3\n\n\nHomeworlds Online (SDG# 16588)\nStarted: 2010.7.3, Ended: 2010.7.3\nParticipants: Tank_7 (S), rootbier (N)\nWinner: rootbier\n\n\nHomeworlds Online (SDG# 16827)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.4, Ended: 2010.7.16\nParticipants: AdamBadura (S), captncavern (N)\nWinner: AdamBadura\n\n1) captncavern: Homeworld B2 G1 Y3\n\tcaptncavern: Good game!\n\n2) AdamBadura: Homeworld G3 B1 R3\n\n3) captncavern: Build Y1 Captncavern\n\n4) AdamBadura: Build R1 Adambadura\n\n5) captncavern: Trade Y1 R1 Captncavern\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) captncavern: Build Y1 Captncavern\n\n8) AdamBadura: Build R1 Adambadura\n\n9) captncavern: Trade Y1 G1 Captncavern\n\n10) AdamBadura: Trade R1 B1 Adambadura\n\n11) captncavern: Build Y1 Captncavern\n\n12) AdamBadura: Build R1 Adambadura\n\n13) captncavern: Discover Y1 Captncavern G3 Aloha\n\tAdamBadura: Amusing game... ;)\n\n14) AdamBadura: Build B1 Adambadura\n\n15) captncavern: Build G1 Captncavern\n\n16) AdamBadura: Discover B1 Adambadura G2 Shipyard\n\n17) captncavern: Move G1 Captncavern Aloha\n\n18) AdamBadura: Build B2 Shipyard\n\n19) captncavern: Build G2 Captncavern\n\n20) AdamBadura: Build B2 Shipyard\n\n21) captncavern: Sacrifice G2 Captncavern\nBuild G2 Aloha\nBuild R1 Captncavern\n\n22) AdamBadura: Build B3 Adambadura\n\n23) captncavern: Sacrifice G2 Aloha\nBuild G2 Aloha\nBuild R2 Captncavern\n\n24) AdamBadura: Build Y1 Adambadura\n\n25) captncavern: Build Y2 Captncavern\n\n26) AdamBadura: Move Y1 Adambadura Shipyard\n\n27) captncavern: Discover G2 Aloha Y2 Ichi\n\n28) AdamBadura: Move B2 Shipyard Aloha\n\n29) captncavern: Move G1 Aloha Ichi\n\n30) AdamBadura: Build B3 Aloha\n\n31) captncavern: Build G2 Ichi\n\n32) AdamBadura: Build B3 Shipyard\n\n33) captncavern: Build G3 Captncavern\n\n34) AdamBadura: Sacrifice R1 Adambadura\nAttack Y1 Aloha\n\n\nHomeworlds Online (SDG# 16642)\nStarted: 2010.7.6, Ended: 2010.7.13\nParticipants: addesso (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H B1 Y3 G3\n\taddesso: first time playing. looks real interesting tho!\n\tts52: It&#39;s a great game. If you have any questions, just ask. Then make a move and undo it, so SDG will send me an email.\n\n2) addesso: Homeworld G2 B1 Y3\n\n3) ts52: B G1 Ts52\n\n4) addesso: Build Y1 Addesso\n\n5) ts52: T G1 B1 Ts52\n\n6) addesso: Trade Y1 G1 Addesso\n\n7) ts52: Discover B1 Ts52 G2 Oscar\n\n8) addesso: Build Y1 Addesso\n\n9) ts52: Build B2 Oscar\n\n10) addesso: Trade Y3 B3 Addesso\n\n11) ts52: Trade B2 Y2 Oscar\n\n12) addesso: Discover B3 Addesso G3 Pegasus\n\n13) ts52: Build B2 Oscar\n\n14) addesso: Build B2 Pegasus\n\n15) ts52: Trade B2 R2 Oscar\n\n16) addesso: Trade B3 R3 Pegasus\n\n17) ts52: Build G1 Ts52\n\n18) addesso: Build B2 Pegasus\n\n19) ts52: Build B2 Oscar\n\n20) addesso: Trade B2 Y2 Pegasus\n\n21) ts52: Discover B2 Oscar G3 Kermit\n\n22) addesso: Build B2 Pegasus\n\n23) ts52: Build B3 Kermit\n\n24) addesso: Move B2 Pegasus Addesso\n\n25) ts52: Trade B3 R3 Kermit\n\n26) addesso: Build B3 Addesso\n\n27) ts52: Sacrifice Y2 Oscar\nMove B2 Kermit Addesso\nMove R3 Kermit Addesso\nCatastrophe Addesso Blue\n\n28) addesso: Build Y1 Addesso\n\taddesso: ah man. i miscalculated how far your ships could jump. lol\n\n29) ts52: Attack G1S Addesso\n\n30) addesso: Sacrifice B2 Pegasus\nTrade Y1 R1 Addesso\nTrade Y1 R1 Addesso\n\tts52: sorry about that. It&#39;s definitely an important lesson to learn.\n\n31) ts52: Sacrifice R2 Oscar\nAttack R1S Addesso\nAttack R1S Addesso\n\tts52: Thanks for the game. I&#39;d be happy to play again, any time.\n\n\nHomeworlds Online (SDG# 16811)\nStarted: 2010.7.7, Ended: 2010.7.14\nParticipants: daselva (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) daselva: Homeworld Y3 G2 B3\n\n3) rootbier: Build G1 Rootbier\n\n4) daselva: Build B1 Daselva\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) daselva: Trade B3 G3 Daselva\n\n7) rootbier: Build G1 Rootbier\n\n8) daselva: Build B1 Daselva\n\n9) rootbier: Build Y1 Rootbier\n\n10) daselva: Build B2 Daselva\n\n11) rootbier: Discover Y1 Rootbier B3 Uva\n\n12) daselva: Discover B1 Daselva G1 Roxo\n\n13) rootbier: Build Y1 Rootbier\n\n14) daselva: Build B2 Roxo\n\n15) rootbier: Sacrifice G3 Rootbier\nBuild G1 Rootbier\nBuild Y2 Uva\nBuild Y2 Uva\n\n16) daselva: Trade B2 R2 Roxo\n\n17) rootbier: Discover Y1 Rootbier G3 Watermelon\n\n18) daselva: Build B2 Roxo\n\n19) rootbier: Build Y3 Rootbier\n\n20) daselva: Trade G3 Y3 Daselva\n\n21) rootbier: Trade Y3 G3 Rootbier\n\n22) daselva: Trade Y3 R3 Daselva\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild Y3 Watermelon\nBuild Y3 Rootbier\nBuild G2 Rootbier\n\n24) daselva: Sacrifice B2 Daselva\nTrade B2 R2 Roxo\nPass\n\tdaselva: hello,can you help me?...I don&acute;t know how to introduce the commands for &laquo;sacrifice&raquo;.what is a &laquo;carriage return&raquo;?\n\n25) rootbier: Move G2 Rootbier Uva\n\n26) daselva: Build B2 Daselva\n\tdaselva: hello again,ok I found it ,it&acute;s the changing line button... \n\trootbier: carriage return is old terminology from typewriter days. but yeah -- basically you need a new line between each command.\n\trootbier: i see you&#39;re new to the game (both from letting me control yellow and from questions and from your game record) welcome. where are you from? :P :D \n\n27) rootbier: Build G2 Uva\n\trootbier: sadly. you&#39;re in a lot of trouble now. your only move get&#39;s you to size one stars... that&#39;s only red from here out unless you sacrifice something. but basically you can not reach my ships at all. so i can just mass up what i need to catastrophe you and you can&#39;t do much about it.\n\tdaselva: hello ...and thank you .yes is my first HW game ,I&acute;m from Lisbon .I&acute;m beggining to find HW a great game(what do you think about it?).Ithink a good way to understand and feel a game is to have a good defeat-I&acute;m working hard on it...:)\n\n28) daselva: Build B2 Roxo\n\trootbier: The game definitely has a learning curve. You&#39;ll see soon enough that catastrophes are far more dangerous than attacks.\n\n29) rootbier: Trade G2 B2 Uva\n\n30) daselva: Trade B2 G2 Daselva\n\n31) rootbier: Build G3 Uva\n\n32) daselva: Build G3 Daselva\n\n33) rootbier: Discover G3 Uva R1 Trap\n\n34) daselva: Build R1 Daselva\n\n35) rootbier: Sacrifice Y3 Watermelon\nMove Y1 Uva Trap\nMove Y1 Watermelon Trap\nMove G3 Trap Daselva\nCatastrophe Daselva G\n\n36) daselva: Move R3 Daselva Rootbier\n\n37) rootbier: Sacrifice Y3 Rootbier\nMove Y1 Rootbier Daselva\nMove Y1 Trap Daselva\nMove Y1 Trap Daselva\nCatastrophe Daselva Y\n\n\tdaselva: hello rootbier,thank you very much for all your comments.I&acute;ve already take note of all the game, I will remake it and learn a lot... thank you\n\nHomeworlds Online (SDG# 16846)\nStarted: 2010.7.7, Ended: 2010.7.25\nParticipants: Teo (S), rootbier (N)\nWinner: Teo\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Teo: Homeworld G3 B1 Y3\n\trootbier: Hey buddy. How was first frisbee? How&#39;s your living place?\n\n3) rootbier: Build G1 Rootbier\n\tTeo: Hallo !\r\nAll is ok.\r\nGood frisbee teams. (they play with 3 handlers and 2 midles, a bit strange :s how ever I manage to make really good zone-cut and good defense too)\r\nWork no really interesting but ok.\r\nI miss our diners !\r\nI Hope evry thing is ok for you (work-pass, knee, ankle, friends, music, exam results, art, plan for summer...)\r\nbye\r\nT&eacute;o\n\trootbier: Zzzz.... sleep now. Talk tomorrow.\n\n4) Teo: Build Y1 Teo\n\n5) rootbier: Trade G1 Y1 Rootbier\n\trootbier: work - no. knee - ok but maybe cuz nothing is happening here. music - played drums yesterday for maybe second time in three years - didn&#39;t go so well. exam results - acceptable. my general mood is not good though. i also miss our dinners and whatever else we did. i miss your company.\n\n6) Teo: Trade Y1 B1 Teo\n\n7) rootbier: Build G1 Rootbier\n\trootbier: too smart :P\n\n8) Teo: Build Y1 Teo\n\n9) rootbier: Build G1 Rootbier\n\n10) Teo: Build B2 Teo\n\n11) rootbier: Discover G1 Rootbier B3 Aubergine\n\n12) Teo: Discover B2 Teo G2 Cucumber\n\n13) rootbier: Build G1 Aubergine\n\tTeo: You&#39;re cool as a cucumber !\n\n14) Teo: Sacrifice Y1 Teo\nMove B2 Cucumber Aubergine\n\n15) rootbier: Build G2 Aubergine\n\n16) Teo: Trade B2 G2 Aubergine\nCatastrophe Aubergine G\n\n17) rootbier: Trade G1 R1 Rootbier\n\n18) Teo: Build B2 Teo\n\n19) rootbier: Build Y1 Rootbier\n\n20) Teo: Discover B2 Teo G2 Heatwave\n\n21) rootbier: Discover Y1 Rootbier B3 Badday\n\n22) Teo: Build B2 Heatwave\n\n23) rootbier: Build G1 Rootbier\n\n24) Teo: Build B2 Teo\n\n25) rootbier: Move G1 Rootbier Badday\n\n26) Teo: Discover B2 Teo G2 Zone\n\n27) rootbier: Build Y1 Badday\n\n28) Teo: Build B3 Zone\n\n29) rootbier: Move Y1 Badday Heatwave\n\n30) Teo: Trade B3 R3 Zone\n\trootbier: best with controlling blue is to do frequent blue sacrifice(2s or 3s) to get other colors and then still be the only one to get blue. can build a BIG fleet very quickly.\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Badday\nBuild Y2 Heatwave\nBuild Y3 Rootbier\n\n32) Teo: Sacrifice R3 Zone\nAttack Y2 Heatwave\nAttack Y1 Heatwave\nPass\n\tTeo: ok but not yet...\n\n33) rootbier: Trade Y3 G3 Rootbier\n\n34) Teo: Build Y3 Teo\n\n35) rootbier: Sacrifice Y2 Badday\nMove Y1 Badday Heatwave\nMove Y1 Heatwave Teo\n\n36) Teo: Sacrifice B2 Heatwave\nTrade Y3 R3 Teo\nTrade Y3 G3 Teo\n\n37) rootbier: Build Y2 Teo\n\n38) Teo: Sacrifice R3 Teo\nAttack Y2 Teo\nAttack Y1 Teo\nPass\n\n39) rootbier: Move Y1 Rootbier Badday\n\n40) Teo: Move Y1 Heatwave Badday\n\n41) rootbier: Discover G1 Badday B2 Owwday\n\n42) Teo: Sacrifice G3 Teo\nBuild Y3 Heatwave\nBuild Y3 Teo\nBuild Y3 Badday\n\n43) rootbier: Build G1 Rootbier\n\n44) Teo: Trade Y1 R1 Badday\n\n45) rootbier: Move Y1 Badday Owwday\n\n46) Teo: Trade Y2 R2 Teo\n\n47) rootbier: Build Y1 Owwday\n\n48) Teo: Build Y2 Heatwave\n\n49) rootbier: Sacrifice G3 Rootbier\nBuild G1 Owwday\nBuild G2 Owwday\nBuild G3 Rootbier\n\n50) Teo: Move Y1 Teo Owwday\n\n51) rootbier: Trade Y1 R1 Owwday\n\n52) Teo: Move Y1 Owwday Badday\n\n53) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild G3 Rootbier\nBuild R2 Rootbier\n\n54) Teo: Discover Y2 Heatwave R3 Killer\n\n55) rootbier: Trade G3 B3 Rootbier\n\n56) Teo: Sacrifice Y3 Heatwave\nMove Y1 Badday Rootbier\nMove Y3 Badday Rootbier\nMove Y2 Killer Rootbier\nCatastrophe Rootbier Y\n\n57) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild G3 Rootbier\nBuild R2 Owwday\n\n58) Teo: Sacrifice Y2 Heatwave\nMove B2 Heatwave Rootbier\nMove B2 Zone Rootbier\nCatastrophe Rootbier B\n\n\nHomeworlds Online (SDG# 16851)\nStarted: 2010.7.9, Ended: 2012.2.27\nParticipants: rayla (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 16852)\nVariants: &quot;No undo&quot;\nStarted: 2010.7.12, Ended: 2010.9.30\nParticipants: Arturion (S), goulo (N), AdamBadura (E)\nWinner: goulo\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) AdamBadura: Homeworld G1 B2 R3\n\n3) Arturion: Homeworld R3 B2 Y3 *\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Build R1 Adambadura\n\tgoulo: arturion, welcome! your first homeworlds lesson is that it&#39;s good to start with green=production ability in your home system. :)\n\n6) Arturion: Trade Y3 G3 Arturion\n\n7) goulo: Build Y1 Goulo\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: PS: http://boardgames.famdepaus.nl/FS/index.html :)\n\n9) Arturion: Build G1 Arturion\n\tAdamBadura: I noticed Artur is not reliable in doing his turns ASAP... ;)\n\n10) goulo: Trade Y1 B1 Goulo\n\n11) AdamBadura: Build R1 Adambadura\n\n12) Arturion: Trade G1 Y1 Arturion\n\n13) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n14) AdamBadura: Trade R1 G1 Adambadura\n\n15) Arturion: Discover Y1 Arturion G1 Endor\n\n16) goulo: Build B1 Goulo\n\n17) AdamBadura: Build R1 Adambadura\n\n18) Arturion: Build Y1 Endor\n\n19) goulo: Trade B1 R1 Goulo\n\n20) AdamBadura: Build Y2 Adambadura\n\n21) Arturion: Build G2 Arturion\n\n22) goulo: Build Y2 Smeraldeto\n\n23) AdamBadura: Trade R3 G3 Adambadura\n\n24) Arturion: Trade G2 R2 Arturion\n\tAdamBadura: Arturion, zanim zbudujesz 3 zielony statek w swoim uk&sup3;adzie to zauwa&iquest;, &iquest;e ja mog&ecirc; tam dolecie&aelig; swoim G1 po&#156;wi&ecirc;caj&sup1;c Y2. Wtedy b&ecirc;d&sup1; 4 &quot;kawa&sup3;ki&quot; G w tym uk&sup3;adzie i wywo&sup3;am katastrof&ecirc; niszcz&sup1;c ca&sup3;e G. To by pozbawi&sup3;o Ci&ecirc; wszystkich statk&oacute;w w uk&sup3;adzie i spowodowa&sup3;o Twoj&sup1; przegran&sup1; a moje zwyci&ecirc;stwo.\n\n25) goulo: Move B1 Goulo Smeraldeto\n\n26) AdamBadura: Discover Y2 Adambadura R3 Outpost\n\n27) Arturion: Trade R2 B2 Arturion\n\n28) goulo: Trade Y2 G2 Smeraldeto\n\n29) AdamBadura: Move G1 Adambadura Outpost\n\n30) Arturion: Trade B2 R2 Arturion\n\n31) goulo: Build Y2 Goulo\n\n32) AdamBadura: Build Y2 Outpost\n\n33) Arturion: Move Y1 Endor Goulo\n\n34) goulo: Trade Y2 R2 Goulo\n\n35) AdamBadura: Discover Y2 Outpost R1 Ontheway\n\n36) Arturion: Discover Y1 Endor R3 Tatooine\n\n37) goulo: Attack Y1S Goulo\n\n38) AdamBadura: Build Y2 Adambadura\n\n39) Arturion: Trade R2 Y2 Arturion\n\n40) goulo: Build Y3 Smeraldeto\n\n41) AdamBadura: Build Y3 Adambadura\n\n42) Arturion: Move Y2 Arturion Smeraldeto\n\tAdamBadura: Aj... Mia&sup3; by&aelig; w Outpost... :(\n\tAdamBadura: Jednak brak opcji Undo jest do kitu...\n\n43) goulo: Sacrifice Y3 Smeraldeto\nMove Y1 Smeraldeto Tatooine\nMove Y1 Tatooine Adambadura\nMove R1 Goulo Smeraldeto\nCatastrophe Adambadura Yellow\n\n44) AdamBadura: Build G1 Outpost\n\n45) Arturion: Move Y2 Smeraldeto Outpost\n\n46) goulo: Trade G2 Y2 Smeraldeto\n\n47) AdamBadura: Attack Y2S Outpost\n\n48) Arturion: Build G2 Arturion\n\n49) goulo: Build Y1 Smeraldeto\n\n50) AdamBadura: Move Y2 Outpost Adambadura\n\tgoulo: Artur, ne forgesu pri: http://boardgames.famdepaus.nl/FS/index.html :)\n\n51) Arturion: Move Y1 Tatooine Ontheway\n\n52) goulo: Build B1 Smeraldeto\n\n53) AdamBadura: Build G2 Adambadura\n\tgoulo: i am in germanz this week and internet access is rare...\n\tAdamBadura: And considering &quot;z&quot; in place of &quot;y&quot; in &quot;germany&quot; keyboard layout is also German one... ;)\n\n54) Arturion: Trade G2 R2 Arturion\n\n55) goulo: Trade Y2 G2 Smeraldeto\n\n56) AdamBadura: Discover G2 Adambadura Y3 Newland\n\tgoulo: We just returned from Germany. It was a good vacation. :)\n\n57) Arturion: Move Y1 Ontheway Newland\n\n58) goulo: Discover G2 Smeraldeto Y3 Novlando\n\n59) AdamBadura: Trade G3 Y3 Adambadura\n\n60) Arturion: Pass\n\n61) goulo: Build R1 Goulo\n\n62) AdamBadura: Move G1 Outpost Ontheway\n\tAdamBadura: I guess it was an automatic pass.\n\n63) Arturion: Pass\n\tgoulo: I sent artur a nudging reminder email last night about turns here and Wysokie Napiecie. :)\n\tAdamBadura: I noticed Artur is nort a good online player. He doesn&#39;t make his turns even though he is online.\n\n64) goulo: Build G2 Novlando\n\n65) AdamBadura: Build R2 Adambadura\n\tAdamBadura: I doubt passing was a good move...\n\n66) AdamBadura: Build G2 Newland\n\tAdamBadura: I&#39;m going on a leave from 2010-09-04 to 2010-09-11 inclusive.\n\tgoulo: shall we just terminate this game? i suppose artur is no longer interested in playing since he passed his last couple of turns anyway...\n\tAdamBadura: Yes. I guess so. So terminate it when you read this. You may also challange me... ;)\n\n67) goulo: Sacrifice G2 Novlando\nBuild R2 Goulo\nBuild R3 Smeraldeto\n\tgoulo: Oh interesting, the game apparently continues with just the 2 of us!\n\tgoulo: Heh, and artur&#39;s ships exist as non-player ships apparently.\n\tgoulo: but somehow it&#39;s your turn again instead of mine. Hmm.\n\tAdamBadura: Yes. Wired. Do you want to continue?\n\tgoulo: sure, why not... :)\n\n68) AdamBadura: Build R3 Adambadura\n\tAdamBadura: How is gaming today? Pity I couldn&#39;t come. But please, if you don&#39;t mind, ask me next time as well. Hopefully I will manage next time.\r\n\r\nBy the way I just ended another Ladder Homeworlds game. Again I won. Which is somewhat surprising taking into account that player was stronger then me (judging by rank; but he also quickly gained advantage - luckily he lost anyway ;)). So now I&#39;m at position 2. :)\r\n\r\nMaybe we should invait zara2stra again?\n\tgoulo: zara2stra was very busy and didn&#39;t play for several weeks, but is playing alien city with me again (finally). so maybe he&#39;d be interested in homeworlds again, i&#39;m not sure.\r\n\r\nwhich reminds me, you should learn alien city! :)\n\n69) goulo: Move R3 Smeraldeto Newland\n\n70) AdamBadura: Sacrifice G2 Newland\nBuild G2 Ontheway\nBuild G2 Outpost\n\n71) goulo: Build G3 Novlando\n\tgoulo: BTW in the end there was no gaming last night. So I read. :)\n\n72) AdamBadura: Build G3 Outpost\n\n73) goulo: Attack G2E Newland\n\n74) AdamBadura: Discover R3 Adambadura B3 Wrap\n\n75) goulo: Move R2 Goulo Smeraldeto\n\n76) AdamBadura: Sacrifice G3 Outpost\nBuild G3 Outpost\nBuild Y1 Ontheway\nBuild Y2 Outpost\n\n77) goulo: Move G2 Novlando Adambadura\n\n78) AdamBadura: Attack G2N Adambadura\n\n79) goulo: Move G3 Novlando Adambadura\n\n80) AdamBadura: Attack G3N Adambadura\n\n81) goulo: Move G2 Newland Adambadura\nCatastrophe Adambadura G\n\n82) AdamBadura: Sacrifice Y1 Ontheway\nMove R3 Wrap Ontheway\n\tAdamBadura: Nicely done. ;)\n\n83) goulo: Attack Y1S Newland\n\tgoulo: maybe, maybe not... we&#39;ll see if it was the right time to do it or not. :)\n\n\tAdamBadura: It was clear you would have won. No point in continuing. Thanks for the game!\n\tgoulo: Yeah, I was all set to sacrifice y3 and then move 2 yellows and my r3 to your homeworld, catastrophe yellow, and you&#39;re stuck with an r1 and r2 there. A few turns back I thought I was going to lose, as you had more ships, and even the extra turn after we knocked artur out. :) But the situation was complex and hard to analyze! Thanks for the game!\n\tAdamBadura: Yes. I thought that my position is better as well. ;)\n\nHomeworlds Online (SDG# 16861)\nStarted: 2010.7.13, Ended: 2010.7.25\nParticipants: MagicJohn (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) MagicJohn: Homeworld B1 Y3 G3\n\tMagicJohn: Hello again.  Guess I get to check out my learning curve.\n\n3) rootbier: Build G1 Rootbier\n\trootbier: I don&#39;t quite remember how the last one ended -- but good luck :D !\n\n4) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: I&#39;m still a bit of a newbie in this game.  As such, the ending was unfortunately, very predictable. I hope that I prove to be a bit more competition this time around.\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) rootbier: Build B2 Rootbier\n\n8) MagicJohn: Build G1 Magicjohn\n\n9) rootbier: Discover B2 Rootbier G3 Factory\n\n10) MagicJohn: Discover G1 Magicjohn B2 Mauisands\n\n11) rootbier: Build B2 Factory\n\n12) MagicJohn: Build Y1 Magicjohn\n\n13) rootbier: Build B3 Rootbier\n\n14) MagicJohn: Build G1 Magicjohn\n\n15) rootbier: Build B3 Factory\n\n16) MagicJohn: Trade G3 B3 Magicjohn\n\n17) rootbier: Sacrifice B2 Factory\nTrade B3 Y3 Factory\nTrade B3 R3 Rootbier\n\trootbier: so what have you learned already in this game? if you are building your home system second - better not to use the same color small star (there are other ways around this but they make other problems).\n\tMagicJohn: I am a big fan of Joni Mitchell&#39;s &quot;Blue Album&quot; but this is ridiculous. You obtained access to large ships very quickly.  By the time I saw it coming there was little I could do in terms of quick response. Maybe I should have tried to build yellow as an alternative rout to larger ships?  I&#39;m still not sure if I should trade my G3 for a blue. I suspect that I need to try to forestall a blue catastrophe in my home system.     \n\n18) MagicJohn: Build G1 Mauisands\n\trootbier: you could have tried to grab yellow but you couldn&#39;t really have blocked me out of it - especially not since it was &quot;trade&quot; ships i was filling up on. once someone has a level two ship it becomes much harder to lock them out of a color.\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild B2 Factory\nBuild B3 Factory\nBuild B3 Rootbier\n\trootbier: btw ... feel free to build blue now :D\n\n20) MagicJohn: Build G2 Magicjohn\n\n21) rootbier: Sacrifice B2 Factory\nTrade B2 Y2 Factory\nTrade B3 R3 Factory\n\n22) MagicJohn: Trade Y1 R1 Magicjohn\n\trootbier: rinse and repeat\n\n23) rootbier: Move R3 Factory Mauisands\n\n24) MagicJohn: Build G2 Magicjohn\n\n25) rootbier: Attack G1 Mauisands\n\n26) MagicJohn: Discover G2 Magicjohn Y2 Anyport\n\trootbier: *koff* defenseless *koff*\r\n*koff* need red somewhere *koff*\r\n*koff* undo or die *koff*\n\n27) rootbier: Move Y3 Factory Anyport\n\tMagicJohn: Thanks for the heads up.  I was too involved trying to figure out how to change my &quot;shrink art&quot; fleet into something more substantial. Haven&#39;t learned a thing since Pearl Harbor I guess.\n\n28) MagicJohn: Trade G2 R2 Magicjohn\n\n29) rootbier: Move B1 Rootbier Factory\n\n30) MagicJohn: Build G2 Anyport\n\n31) rootbier: Sacrifice R3 Rootbier\nAttack G2 Anyport\nAttack G2 Anyport\nAttack G1 Mauisands\n\n32) MagicJohn: Discover R2 Magicjohn B2 Holeinthewall\n\trootbier: two 3s on your doorstep. make sure you can handle that.\n\n33) rootbier: Sacrifice G2 Anyport\nBuild B2 Rootbier\nBuild B3 Factory\n\n34) MagicJohn: Discover G1 Magicjohn G2 Arthurbrown\n\n35) rootbier: Sacrifice B2 Rootbier\nTrade G1 Y1 Mauisands\nTrade G1 Y1 Mauisands\n\n36) MagicJohn: Move Y1 Magicjohn Holeinthewall\n\tMagicJohn: It looked extremely rocky for the Mudville nine that day........  \n\n37) rootbier: Sacrifice G2 Anyport\nBuild B2 Factory\nBuild Y3 Mauisands\n\n38) MagicJohn: Build G1 Arthurbrown\n\n39) rootbier: Sacrifice Y2 Factory\nMove Y1 Mauisands Magicjohn\nMove Y1 Mauisands Magicjohn\n\n\tMagicJohn: My last few moves have been either defensive or pointless, but I wanted to see how the attack developed. Thanks for the game. MJ  \n\trootbier: boo. see it through. i&#39;ve been known to make some bonehead mistakes at crucial moments.\n\tMagicJohn: If I can get Aaron to undo my resignation I&#39;ll give it a shot.\n\tMagicJohn: Aaron, apparently rootbier thinks I should blunder through to the very end of this game. I&#39;m always up for a good humiliation, so if you can rewind this mess please do.  Thanks (I think) MagicJohn \n\trootbier: no no. not worth bothering someone else about. just start a new one.\n\nHomeworlds Online (SDG# 16661)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.14, Ended: 2010.8.2\nParticipants: zoltar (S), SilentTitan (N)\nWinner: zoltar\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) zoltar: Build G1 Zoltar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) zoltar: Build G1 Zoltar\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) zoltar: Build R2 Zoltar\n\n13) SilentTitan: Discover R2 Silenttitan B1 Antimirror\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) zoltar: Build B1 Zoltar\n\n17) SilentTitan: Discover R1 Silenttitan R1 Trialrun\n\n18) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n19) SilentTitan: Build G1 Silenttitan\n\n20) zoltar: Move B1 Zoltar Greenbelt\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Antimirror\nBuild R3 Antimirror\nBuild R3 Trialrun\n\n22) zoltar: Sacrifice Y1 Zoltar\nMove R2 Greenbelt Antimirror\nCatastrophe Antimirror R\n\tzoltar: Yikes!\n\n23) SilentTitan: Sacrifice Y1 Silenttitan\nMove R3 Trialrun Greenbelt\n\n24) zoltar: Sacrifice B1 Greenbelt\nTrade B1 Y1 Zoltar\n\n25) SilentTitan: Trade G1 B1 Silenttitan\n\n26) zoltar: Build Y1 Zoltar\n\n27) SilentTitan: Build R2 Greenbelt\n\n28) zoltar: Build Y1 Zoltar\n\n29) SilentTitan: Sacrifice B1 Silenttitan\nTrade R2 B2 Greenbelt\n\n30) zoltar: Discover Y1 Zoltar G2 Greendale\n\n31) SilentTitan: Build R2 Greenbelt\n\n32) zoltar: Build Y2 Greendale\n\n33) SilentTitan: Trade R2 Y2 Greenbelt\n\n34) zoltar: Discover Y1 Zoltar B2 Blueridge\n\n35) SilentTitan: Sacrifice Y2 Greenbelt\nMove R3 Greenbelt Trialrun\nMove R3 Trialrun Silenttitan\n\n36) zoltar: Build Y2 Greendale\n\n37) SilentTitan: Trade R3 Y3 Silenttitan\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\n39) SilentTitan: Build G1 Silenttitan\n\n40) zoltar: Trade Y1 G1 Blueridge\n\n41) SilentTitan: Build B1 Greenbelt\n\n42) zoltar: Trade Y3 R3 Blueridge\n\n43) SilentTitan: Trade B1 Y1 Greenbelt\n\n44) zoltar: Build Y3 Blueridge\n\n45) SilentTitan: Build B1 Greenbelt\n\n46) zoltar: Sacrifice Y2 Greendale\nMove R3 Blueridge Trialrun\nMove R3 Trialrun Greenbelt\n\n47) SilentTitan: Move G1 Silenttitan Trialrun\n\n48) zoltar: Build R2 Greenbelt\n\n49) SilentTitan: Trade B2 G2 Greenbelt\n\n50) zoltar: Sacrifice R2 Greenbelt\nAttack G2 Greenbelt\nAttack Y1 Greenbelt\n\n51) SilentTitan: Build Y2 Silenttitan\n\n52) zoltar: Move G2 Greenbelt Trialrun\n\n53) SilentTitan: Build G3 Trialrun\n\n54) zoltar: Build G3 Trialrun\nCatastrophe Trialrun G\n\n55) SilentTitan: Build G1 Silenttitan\n\n56) zoltar: Trade Y3 G3 Zoltar\n\n57) SilentTitan: Move G1 Silenttitan Trialrun\n\n58) zoltar: Trade Y3 G3 Blueridge\n\n59) SilentTitan: Build R2 Trialrun\n\n60) zoltar: Sacrifice G3 Blueridge\nBuild Y3 Blueridge\nBuild Y3 Greenbelt\nBuild R2 Greenbelt\n\n61) SilentTitan: Build G2 Silenttitan\n\n62) zoltar: Move R2 Greenbelt Trialrun\nCatastrophe Trialrun R\n\n63) SilentTitan: Trade Y2 R2 Silenttitan\n\n64) zoltar: Build G1 Zoltar\n\n65) SilentTitan: Build Y2 Silenttitan\n\n66) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueridge\n\n67) SilentTitan: Build R1 Silenttitan\n\n68) zoltar: Trade Y3 R3 Blueridge\n\n69) SilentTitan: Discover Y2 Silenttitan R1 Farside\n\n70) zoltar: Sacrifice G3 Blueridge\nBuild G3 Blueridge\nBuild Y3 Zoltar\nBuild R2 Blueridge\n\n71) SilentTitan: Trade R1 B1 Silenttitan\n\n72) zoltar: Attack B1 Greenbelt\n\n73) SilentTitan: Pass\n\n74) zoltar: Move R3 Blueridge Farside\n\n75) SilentTitan: Discover Y2 Farside R2 Nearside\n\n76) zoltar: Move G3 Zoltar Nearside\n\n77) SilentTitan: Discover Y2 Nearside B3 Sideside\n\n78) zoltar: Move G3 Blueridge Sideside\n\n79) SilentTitan: Discover Y2 Sideside B2 Charmed\n\n80) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenbelt\nBuild B3 Greenbelt\n\n81) SilentTitan: Build R1 Silenttitan\n\n82) zoltar: Sacrifice Y3 Zoltar\nMove B3 Greenbelt Farside\nMove B3 Farside Silenttitan\nMove R3 Farside Silenttitan\nCatastrophe Silenttitan R\n\n83) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Charmed Zoltar\nMove G2 Silenttitan Zoltar\nMove G1 Silenttitan Zoltar\nCatastrophe Zoltar Green\n\n84) zoltar: Sacrifice G3 Nearside\nBuild B2 Silenttitan\nBuild Y3 Zoltar\nBuild Y3 Zoltar\nCatastrophe Silenttitan B\n\tzoltar: Well, with 7 largs ships, I suppose it&#39;s time to attack!\n\n\tSilentTitan: I had to redo it the more flamboyant way. \n\tzoltar: Yep. I was wary for a while when I had only one color, knowing that the &quot;bluebird&quot; checkmate was a possibility if I ever got to a position like this.\n\tzoltar: Well, then, I&#39;ll have to end with a flamboyant finish. Though I wonder what would happen if I blew up my own homeworld along with yours?\r\n\r\nHahaha, it won&#39;t let me blow up my homeworld as well, and it crashes the program when I try!\n\tzoltar: Good game! Play again?\n\tSilentTitan: yep\n\nHomeworlds Online (SDG# 16664)\nVariants: &quot;Sinister&quot;\nStarted: 2010.7.14, Ended: 2010.11.14\nParticipants: Mandrel (S), daselva (N), zoltar (E)\nWinner: zoltar\n\n1) daselva: Homeworld G3 Y2 B3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) Mandrel: H Y1 B3 G3\n\n4) daselva: Build B1 Daselva\n\tMandrel: Have a good game.\n\n5) zoltar: Build G1 Zoltar\n\n6) Mandrel: Build G1 Mandrel\n\n7) daselva: Trade B3 G3 Daselva\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) Mandrel: Trade G1 R1 Mandrel\n\n10) daselva: Build G1 Daselva\n\n11) zoltar: Build Y1 Zoltar\n\n12) Mandrel: B G1 Mandrel\n\n13) daselva: Trade G3 Y3 Daselva\n\n14) zoltar: Trade Y1 B1 Zoltar\n\n15) Mandrel: T G1 Y1 Mandrel\n\n16) daselva: Build B1 Daselva\n\n17) zoltar: Build G1 Zoltar\n\n18) Mandrel: B G1 Mandrel\n\n19) daselva: Trade B1 R1 Daselva\n\n20) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n21) Mandrel: T G1 B1 Mandrel\n\n22) daselva: Build B1 Daselva\n\n23) zoltar: Build B2 Zoltar\n\n24) Mandrel: B B2 Mandrel\n\n25) daselva: Discover B1 Daselva G1 S2\n\n26) zoltar: Discover B2 Zoltar G3 Greengiant\n\n27) Mandrel: D B1 Mandrel G2 Time\n\n28) daselva: Build B2 S2\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild B3 Zoltar\nBuild B3 Greengiant\nBuild G1 Bluemoon\n\n30) Mandrel: B G2 Mandrel\n\n31) daselva: Trade B2 Y2 S2\n\n32) zoltar: Sacrifice B2 Greengiant\nTrade B3 G3 Zoltar\nTrade G1 Y1 Bluemoon\n\n33) Mandrel: B B2 Time\n\n34) daselva: Build B2 S2\n\n35) zoltar: Build B3 Greengiant\n\n36) Mandrel: M Y1 Mandrel Time\n\n37) daselva: Move B1 S2 Bluemoon\n\n38) zoltar: Sacrifice B1 Zoltar\nTrade B3 Y3 Greengiant\n\n39) Mandrel: B Y2 Time\n\n40) daselva: Build B1 S2\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluemoon\nBuild Y3 Greengiant\nBuild Y3 Zoltar\n\n42) Mandrel: Move Y1 Time Greengiant\n\n43) daselva: Move B1 S2 Greengiant\n\n44) zoltar: Sacrifice Y2 Bluemoon\nDiscover Y3 Greengiant G1 Greenpea\nDiscover B3 Greengiant G2 Greentea\n\n45) Mandrel: B Y2 Time\n\n46) daselva: Move B2 S2 Greengiant\n\n47) zoltar: Trade B3 R3 Greentea\n\n48) Mandrel: Discover Y1 Greengiant R1 Foolishness\n\n49) daselva: Build B3 Greengiant\n\n50) zoltar: Discover Y3 Greengiant G2 Greensea\n\n51) Mandrel: Move B1 Time Greengiant\nCatastrophe Greengiant Blue\n\n52) daselva: Build R2 Daselva\n\n53) zoltar: Build G3 Bluemoon\n\n54) Mandrel: Move Y2 Time Foolishness\n\n55) daselva: Move R2 Daselva S2\n\n56) zoltar: Move G1 Bluemoon Zoltar\n\n57) Mandrel: Sacrifice Y2 Time\nMove Y1 Foolishness Daselva\nMove Y2 Foolishness Daselva\nCatastrophe Daselva Yellow\n\n58) daselva: Move R2 S2 Time\n\n59) zoltar: Build G3 Zoltar\n\n60) Mandrel: Sacrifice R1 Mandrel\nAttack R2N Time\n\n61) daselva: Move Y2 S2 Daselva\n\n62) zoltar: Move Y3 Greenpea Time\n\n63) Mandrel: Sacrifice B2 Time\nTrade G2 Y2 Mandrel\nTrade B2 R2 Mandrel\n\n64) daselva: Trade B1 Y1 Bluemoon\n\n65) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Time\nBuild Y2 Greensea\nBuild Y3 Bluemoon\n\n66) Mandrel: B G1 Mandrel\n\n67) daselva: Sacrifice R1 Daselva\nAttack Y1E Bluemoon\n\n68) zoltar: Build R1 Greentea\n\n69) Mandrel: Discover G1 Mandrel B2 Weary\n\n70) daselva: Trade Y2 R2 Daselva\n\n71) zoltar: Sacrifice R3 Greentea\nAttack R2S Time\nAttack Y1N Bluemoon\nAttack Y1N Bluemoon\n\n72) Mandrel: Move Y2 Mandrel Weary\n\n73) daselva: Build R1 Daselva\n\n74) zoltar: Move Y3 Bluemoon Weary\n\n75) Mandrel: Build G1 Weary\n\n76) daselva: Trade G1 B1 Daselva\n\n77) zoltar: Sacrifice R2 Time\nAttack Y2S Weary\nAttack G1S Weary\n\n78) Mandrel: Build R1 Mandrel\n\n79) daselva: Trade R2 Y2 Daselva\n\n80) zoltar: Build G1 Bluemoon\n\n81) Mandrel: Build G2 Mandrel\n\n82) daselva: Build R2 Daselva\n\n83) zoltar: Sacrifice G3 Bluemoon\nBuild R2 Greentea\nBuild G3 Bluemoon\nBuild G3 Zoltar\n\n84) Mandrel: Trade R2 B2 Mandrel\n\n85) daselva: Move R2 Daselva Time\n\n86) zoltar: Sacrifice R2 Greentea\nAttack R2N Time\nAttack G1S Weary\n\n87) Mandrel: Discover G2 Mandrel B2 Final\n\n88) daselva: Build R2 Daselva\n\n89) zoltar: Sacrifice Y3 Zoltar\nMove G1 Zoltar Daselva\nMove G1 Weary Daselva\nMove G1 Weary Daselva\nCatastrophe Daselva G\n\n90) zoltar: Build Y2 Greensea\n\n91) Mandrel: B G1 Mandrel\n\n92) zoltar: Build Y3 Bluemoon\n\n93) Mandrel: Build G1 Final\n\tzoltar: The Zoltarian fleet rules the galaxy!\n\n94) zoltar: Trade Y3 G3 Weary\n\tMandrel: oh dear, I&#39;m a little concerned about your intentions.\n\n95) Mandrel: Build B1 Mandrel\n\n96) zoltar: Sacrifice G3 Bluemoon\nBuild G1 Weary\nBuild G3 Bluemoon\nBuild Y3 Weary\n\tzoltar: My intentions are to blow stuff up!\n\n97) Mandrel: Trade G2 R2 Final\n\n98) zoltar: Sacrifice Y3 Bluemoon\nMove Y3 Greensea Mandrel\nMove G1 Weary Mandrel\nMove G3 Weary Mandrel\nCatastrophe Mandrel G\n\n99) Mandrel: Trade B1 G1 Mandrel\n\tMandrel: Thats exactly what I was afraid of!\n\n100) zoltar: Trade Y3 B3 Mandrel\n\n101) Mandrel: Trade B2 G2 Mandrel\n\n102) zoltar: Sacrifice Y2 Greensea\nMove Y3 Weary Mandrel\nMove Y3 Time Mandrel\n\n103) Mandrel: Trade R2 Y2 Final\n\n104) zoltar: Sacrifice G3 Bluemoon\nBuild B1 Mandrel\nBuild B1 Mandrel\nBuild Y3 Mandrel\nCatastrophe Mandrel B\nCatastrophe Mandrel Y\n\n\tzoltar: Good game!\n\tMandrel: Good game, was obviously over long ago, well played.\n\tzoltar: Yep, once daselva was eliminated, I had such a big advantage that I could just slowly build up and then just overwhelm your homeworld.\n\nHomeworlds Online (SDG# 16901)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.15, Ended: 2010.7.20\nParticipants: rootbier (S), SilentTitan (N)\nWinner: rootbier\n\n1) SilentTitan: Homeworld B2 R1 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\trootbier: Let&#39;s see if I can manage to not time out a bajillion games at once this time. I think I lost my last two ladder games that way.\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) rootbier: Build G1 Rootbier\n\tSilentTitan: yikes\r\n\n\trootbier: exams and then sick and traveling - oh well\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) rootbier: Build G1 Rootbier\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) rootbier: Trade G1 R1 Rootbier\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) rootbier: Discover R1 Rootbier G3 Rc\n\n13) SilentTitan: Trade R1 B1 Silenttitan\n\n14) rootbier: Build G1 Rootbier\n\n15) SilentTitan: Move R2 Silenttitan Rc\n\n16) rootbier: Build R1 Rc\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) rootbier: Build Y2 Rootbier\n\n19) SilentTitan: Discover Y1 Silenttitan B3 Bigblue\n\n20) rootbier: Move Y2 Rootbier Bigblue\n\n21) SilentTitan: Attack R1S Rc\n\n22) rootbier: Build R2 Rc\nCatastrophe Rc R\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Bigblue\nBuild Y3 Bigblue\nBuild Y3 Silenttitan\nCatastrophe Bigblue Yellow\n\n24) rootbier: Trade G1 B1 Rootbier\n\n25) SilentTitan: Trade B1 R1 Silenttitan\n\n26) rootbier: Build B1 Rootbier\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) rootbier: Discover B1 Rootbier G3 Ulm\n\n29) SilentTitan: Build R1 Silenttitan\n\n30) rootbier: Sacrifice G3 Rootbier\nBuild B2 Ulm\nBuild B2 Ulm\nBuild B3 Rootbier\n\n\tSilentTitan: good game\n\trootbier: i know i got some ships in your face ... but giving up? nothing is inevitable. i could have made some mistakes. wasn&#39;t a lock.\n\nHomeworlds Online (SDG# 16903)\nStarted: 2010.7.15, Ended: 2010.7.25\nParticipants: rootbier (S), daselva (N)\nWinner: rootbier\n\n1) daselva: Homeworld G3 Y1 B3\n\tdaselva: hello ,nice to see you again\n\n2) rootbier: Homeworld B1 Y2 G3\n\n3) daselva: Build B1 Daselva\n\n4) rootbier: Build G1 Rootbier\n\trootbier: I will try to leave the nasty stuff for later in. We&#39;ll have a nice friendly start.\n\n5) daselva: Trade B3 G3 Daselva\n\n6) rootbier: Trade G1 B1 Rootbier\n\n7) daselva: Build G1 Daselva\n\n8) rootbier: Build B2 Rootbier\n\n9) daselva: Build B2 Daselva\n\n10) rootbier: Discover B1 Rootbier Y3 Banan\n\n11) daselva: Trade B1 R1 Daselva\n\n12) rootbier: Build G1 Rootbier\n\n13) daselva: Build B1 Daselva\n\n14) rootbier: Sacrifice G3 Rootbier\nBuild B2 Banan\nBuild B3 Banan\nBuild B3 Rootbier\n\n15) daselva: Trade B2 Y2 Daselva\n\n16) rootbier: Sacrifice B2 Rootbier\nTrade B2 Y2 Banan\nTrade B1 G1 Banan\n\n17) daselva: Discover G1 Daselva B2 S2\n\n18) rootbier: Build G2 Banan\n\n19) daselva: Build Y1 Daselva\n\trootbier: There&#39;s a threat there that you need to recognize and address. Think about it a while.\n\n20) rootbier: Discover B3 Banan R2 Gates\n\n21) daselva: Trade G1 Y1 S2\n\n22) rootbier: Move G1 Banan Gates\n\n23) daselva: Move G3 Daselva S2\n\n24) rootbier: Trade B3 R3 Rootbier\n\n25) daselva: Move G3 S2 Daselva\n\n26) rootbier: Move Y2 Banan Gates\n\n27) daselva: Discover Y1 Daselva G2 Ss3\n\n28) rootbier: Build Y3 Gates\n\n29) daselva: Trade Y2 R2 Daselva\n\trootbier: pulling your only size 3 ship away from your homeworld is not the best idea. you&#39;re okay right now cuz i have no red at the moment. but otherwise - you&#39;d have some big trouble.\n\n30) rootbier: Discover G2 Banan B2 Fluff\n\n31) daselva: Trade G3 B3 Daselva\n\trootbier: and now i have all the red i need - you should fly that big guy back home.\n\n32) rootbier: Build Y2 Gates\n\n33) daselva: Build Y3 Ss3\n\n34) rootbier: Sacrifice Y2 Gates\nMove G2 Fluff Daselva\nMove G1 Gates Daselva\n\n35) daselva: Sacrifice Y3 Ss3\nDiscover Y1 Ss3 G3 S4\nMove Y1 S2 S4\nPass\n\trootbier: My plan (as it stands) is to sacrifice that y2 at Gates to move in both my big guys. Having only the one little red you won&#39;t be able to take both of them. On the next turn I sacrifice my big red at home to attack with the remaining large ship and take three in your homeworld.\r\n\r\nThere is one thing you can do to stop me. Take time to think about it a while. Let me know if you don&#39;t sort it out.\n\tdaselva: thank you for sharing your thoughts.I think the answer to your question is trade my y2 for a r2 in my HW.So if you came with your 2 big ones in my HW,I can sacrifice this r2 to attack both.Am I right?\n\n36) rootbier: Build G1 Daselva\nCatastrophe Daselva G\n\trootbier: you are correct! well done.\n\n37) daselva: Move Y1 S4 Rootbier\n\n38) rootbier: Attack Y1 Rootbier\n\trootbier: New threat. Pretty straightforward. See it?\n\tdaselva: green catastrophe in my HW?\n\n39) daselva: Build Y2 S4\n\trootbier: Yeah.\r\n\r\nBut basically you&#39;re really behind the 8-ball (in a bad position) - cuz two moves from now I will cause that catastrophe anyway. And then I will start working on massing up ships for a yellow catastrope. It is too late to stop the green one - but you need to look for an opening to catastrophe my yellows as I build them - I may not give you that opening. (Or maybe I will just to test your awareness :) I haven&#39;t decided yet.)\n\trootbier: Actually - it won&#39;t be two moves from now - I am going to take a little more time here to try to save time on building yellows later. Not sure that will help you but do your best.\r\n\r\nAnd ask questions. If you are considering something and not sure if it is a good plan or not -- you can just ask.\n\n40) rootbier: Discover Y1 Rootbier G3 Dage\n\n41) daselva: Build Y3 S4\n\n42) rootbier: Sacrifice Y3 Gates\nMove B3 Gates Daselva\nMove Y2 Gates Daselva\nMove Y1 Dage Daselva\n\trootbier: trouble. if you take one i just build with the other and call cat green. if you sac the r2 to take both i pull my sac y2 to move my two big guys in.\r\n\r\nbut don&#39;t worry - i get over eager and mess up often enough ;) you&#39;ll probably find a chink in my armor before it&#39;s over.\n\tdaselva: playing this game with all your comments has been very useful for me to understand this game that I&acute;m finding very interesting and very demanding(it&acute;s hard to understand all it&acute;s mechanics).I&acute;m felling that g3 and y3 are the most important ships...in the actual situation I think I can&acute;t do much to your attack.. .. \n\n43) daselva: Attack Y2 Daselva\n\n44) rootbier: Trade B3 Y3 Daselva\nCatastrophe Daselva Y\n\trootbier: it&#39;s a very deep game. it moves slowly until things are set up and then... sacrifices make some quick things happen. always have to be looking for the trouble that might come from a sacrifice.\n\trootbier: it isn&#39;t going to make a big difference this time... but you always want to note how movement/connection changes when one of the homestars gets wiped out - sometimes it will mean that the two home systems become directly connected - which can mean new opportunities and new trouble.\n\n\trootbier: that simply won&#39;t do it man. though at this point - there was very little (maybe nothing) that would have.\n\nHomeworlds Online (SDG# 16906)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.16, Ended: 2010.8.10\nParticipants: dlwillson (S), agentofchaos (N)\nWinner: dlwillson\n\n1) agentofchaos: Homeworld R1 B2 G3\n\tagentofchaos: Hi there, enjoy the game \n\n2) dlwillson: Homeworld Y1 B3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tdlwillson: You too, Agent! Good to play you again. I have SDG on my phone, so I&#39;ll get my turns in ASAP. If I take a long time, it means your kickin&#39; my butt. :-)\n\n4) dlwillson: B G1 Dlwillson\n\tagentofchaos: I can only hope I might be kickin&#39; yr butt, stranger things have happened! ;-)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) agentofchaos: Build G1 Agentofchaos\n\tdlwillson: This is really much too slow for me. I don&#39;t mind playing slow in a regular game, but this is keeping me from playing other ladder matches. Kill me quick, wouldja?\n\tdlwillson: How about a turn a day?\n\tagentofchaos: Sorry i&#39;ve just been distracted the last few days, I&#39;ll step up the pace a bit now\n\n8) dlwillson: Build R1 Dlwillson\n\n9) agentofchaos: Build Y1 Agentofchaos\n\n10) dlwillson: B R2 Dlwillson\n\n11) agentofchaos: Build Y2 Agentofchaos\n\n12) dlwillson: D R2 Dlwillson B2 Sticky\n\n13) agentofchaos: Trade Y2 R2 Agentofchaos\n\n14) dlwillson: B G1 Dlwillson\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) dlwillson: D R1 Dlwillson Y2 Slick\n\n17) agentofchaos: Discover Y2 Agentofchaos B3 Klabberjass\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Slick\nBuild R3 Sticky\nBuild R3 Dlwillson\n\n19) agentofchaos: Build R3 Agentofchaos\n\n20) dlwillson: T R3 Y3 Dlwillson\n\n21) agentofchaos: Move R3 Agentofchaos Klabberjass\n\n22) dlwillson: Build R3 Dlwillson\n\n23) agentofchaos: Discover G1 Agentofchaos Y3 Blackguard\n\n24) dlwillson: M R2 Slick Blackguard\n\n25) agentofchaos: Sacrifice G1 Blackguard\nBuild Y2 Klabberjass\n\n26) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Slick Blackguard\nMove R2 Blackguard Agentofchaos\nMove R1 Blackguard Agentofchaos\nCatastrophe Agentofchaos R\n\n27) agentofchaos: Build G1 Agentofchaos\n\n28) dlwillson: Trade R3 Y3 Sticky\n\tagentofchaos: Ouch..\n\n29) agentofchaos: Trade Y2 G2 Klabberjass\n\n30) dlwillson: T R2 B2 Sticky\n\tdlwillson: Expensive, but worth it, I hope.  Now, how was I going to finish this? I don&#39;t seem to have any of the colors I need and you have that darned R3...\n\tagentofchaos: yes it will be interesting to see how this plays out..\n\n31) agentofchaos: Build G1 Klabberjass\n\n32) dlwillson: D B2 Sticky G3 Puffy\n\n33) agentofchaos: Build G2 Klabberjass\n\n34) dlwillson: Build B1 Puffy\n\n35) agentofchaos: Sacrifice Y2 Klabberjass\nMove R3 Klabberjass Sticky\nMove R3 Sticky Puffy\n\n36) dlwillson: S Y3 Sticky\nM B2 Puffy Agentofchaos\nM B1 Puffy Agentofchaos\nPass\n\n37) agentofchaos: Sacrifice R3 Puffy\nAttack B1 Agentofchaos\nAttack B2 Agentofchaos\nPass\n\n38) dlwillson: M R3 Dlwillson Agentofchaos\n\n\tagentofchaos: Looks like it&#39;s all over now, well played :-)\n\tdlwillson: Thank you, Agent! Good game!\n\nHomeworlds Online (SDG# 16888)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.17, Ended: 2010.8.13\nParticipants: goulo (S), jonaskoelker (N)\nWinner: goulo\n\n1) jonaskoelker: Homeworld B1 R2 G3\n\n2) goulo: Homeworld B3 G2 Y3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) goulo: Build Y1 Goulo\n\tjonaskoelker: Hi.  Good luck, have fun :)\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\tgoulo: Hi, I&#39;m slow this week due to travel. :)\n\n6) goulo: Discover Y1 Goulo G1 Smeraldeto\n\tjonaskoelker: Okay.  I hope I&#39;m stressing you with the time limits (?)\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) goulo: Build Y1 Goulo\n\tjonaskoelker: I meant I hope I&#39;m *not* stressing you with the time limits, wrt. vacationing :)\n\n9) jonaskoelker: Build Y2 Jonaskoelker\n\tgoulo: Ha, OK. :)\r\nIn any case, we are home again. The vacation was good. :)\n\n10) goulo: Build Y2 Smeraldeto\n\tjonaskoelker: Ah, good to hear :)  I&#39;ll be away from monday on, but I&#39;ll be able to check in every once in a while.\n\n11) jonaskoelker: Discover Y1 Jonaskoelker G3 Big_green\n\n12) goulo: Trade Y1 R1 Goulo\n\n13) jonaskoelker: Build Y1 Big_green\n\n14) goulo: Build R1 Goulo\n\tjonaskoelker: Except for being on the receiving end, I really like your opening; it&#39;s quite agressive.  Of course, your starfleet is no match against the power of the force :P\n\n15) jonaskoelker: Move Y1 Big_green Smeraldeto\n\tgoulo: That&#39;s a neat thing getting to play with various people and see different styles. Many of my games were played with the same people, so by playing with other folks I hope to break out of our groupthink. :)\n\n16) goulo: Move Y2 Smeraldeto Big_green\n\n\nHomeworlds Online (SDG# 16841)\nStarted: 2010.7.19, Ended: 2010.10.29\nParticipants: ts52 (S), ZackStack (N)\nWinner: ts52\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi TS!  Its been a while... have a good game!\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) ZackStack: Build G1 Zackstack\n\tts52: Thanks. You too!\n\n4) ts52: Build G1 Ts52\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) ts52: Trade G1 R1 Ts52\n\n7) ZackStack: Trade Y1 R1 Zackstack\n\tZackStack: Sigh... we can&#39;t have that now... :-)\n\n8) ts52: Build R2 Ts52\n\n9) ZackStack: Build R2 Zackstack\n\n10) ts52: Discover R2 Ts52 G2 Oscar\n\n11) ZackStack: Trade R2 Y2 Zackstack\n\n12) ts52: Build R2 Ts52\n\n13) ZackStack: Discover R1 Zackstack G3 Gilbert\n\n14) ts52: Build G1 Ts52\n\n15) ZackStack: Build G1 Zackstack\n\n16) ts52: Trade G1 B1 Ts52\n\n17) ZackStack: Trade G1 B1 Zackstack\n\n18) ts52: Build B2 Ts52\n\n19) ZackStack: Build B2 Zackstack\n\n20) ts52: Move B2 Ts52 Oscar\n\n21) ZackStack: Move B2 Zackstack Gilbert\n\n22) ts52: Build B3 Oscar\n\n23) ZackStack: Build B3 Gilbert\n\n24) ts52: Trade B3 Y3 Oscar\n\n25) ZackStack: Trade B2 Y2 Gilbert\n\n26) ts52: Build G1 Ts52\n\n27) ZackStack: Build B2 Gilbert\n\n28) ts52: Build B3 Oscar\n\n29) ZackStack: Discover B2 Gilbert G2 Froggy\n\n30) ts52: D Y3 Oscar B3 Gonzo\n\n31) ZackStack: Move B1 Zackstack Gilbert\n\n32) ts52: D G1 Ts52 Y2 Bigbird\n\n33) ZackStack: Move B1 Gilbert Froggy\n\n34) ts52: Move B1 Ts52 Bigbird\n\n35) ZackStack: Build Y1 Gilbert\n\n36) ts52: Move G1 Bigbird Gonzo\n\n37) ZackStack: Move Y2 Gilbert Froggy\n\n38) ts52: Build G1 Ts52\n\n39) ZackStack: Build G1 Zackstack\n\n40) ts52: Move R2 Ts52 Bigbird\n\n41) ZackStack: Build Y1 Froggy\n\n42) ts52: Discover R2 Bigbird Y3 Fozzie\n\n43) ZackStack: Discover B3 Gilbert G2 Tadpole\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Fozzie\nBuild R3 Ts52\n\n45) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild R3 Gilbert\nBuild Y1 Gilbert\n\n46) ts52: Build R3 Oscar\n\n47) ZackStack: Move Y1 Gilbert Tadpole\n\n48) ts52: Move R3 Ts52 Froggy\n\n49) ZackStack: Sacrifice Y2 Froggy\nMove B1 Froggy Ts52\nMove B2 Froggy Ts52\n\n50) ts52: Trade B2 Y2 Oscar\n\n\nHomeworlds Online (SDG# 16919)\nStarted: 2010.7.20, Ended: 2011.2.25\nParticipants: ZackStack (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) ZackStack: Homeworld R1 B3 G3\n\tZackStack: Here we go again :-)  Have a good game!\n\n3) rootbier: Build G1 Rootbier\n\trootbier: I think you mean - good luck not boning yourself with some foolish oversight :P Thanks :) Maybe this will be the time.\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: My main tactic is to have my opponent make foolish oversights... I hardly ever discourage it :-)\n\n5) rootbier: Trade G1 B1 Rootbier\n\trootbier: I am sure you have many accommodating opponents.\n\n6) ZackStack: Trade G1 B1 Zackstack\n\n7) rootbier: B B2 Rootbier\n\tZackStack: I return my fair share of the particular favor :-)\n\n8) ZackStack: Build B2 Zackstack\n\trootbier: Going by your record, &quot;fair&quot; is the operative and very flexibly defineable word in that sentence :D\n\tZackStack: &lt;chuckle&gt; \n\n9) rootbier: Discover B2 Rootbier G3 Tango\n\n10) ZackStack: Trade B2 Y2 Zackstack\n\n11) rootbier: Discover B1 Rootbier Y3 Quasi\n\n12) ZackStack: Discover B1 Zackstack G2 Cash\n\n13) rootbier: Build B2 Tango\n\n14) ZackStack: Build Y1 Zackstack\n\trootbier: I used to love that movie. When I was but a simple teen.\n\tZackStack: I was sure that&#39;s where you were going after you named the first system :-)\n\n15) rootbier: Build G1 Rootbier\n\trootbier: Not necessarily but it was a possibility.\n\n16) ZackStack: Move Y1 Zackstack Cash\n\n17) rootbier: Trade B2 Y2 Tango\n\n18) ZackStack: Build B2 Cash\n\tZackStack: There. That feels less like going backwards :-)\n\n19) rootbier: Build B2 Tango\n\n20) ZackStack: Trade B2 R2 Cash\n\n21) rootbier: Discover B2 Tango G2 Gabriel\n\n22) ZackStack: Move R2 Cash Tango\n\n23) rootbier: Move Y2 Tango Gabriel\n\n24) ZackStack: Attack B2 Tango\n\n25) rootbier: Discover B1 Quasi G1 Raymond\n\n26) ZackStack: Build R1 Tango\n\trootbier: OMG F ME - I have always always always read the attack rule incorrectly and this is the FIRST time I have ever encountered it in contradiction to my reading. (I have even taught it incorrectly to a couple people ...and I think I might like mine better)\r\n\r\nI&#39;ve always played that you could not attack ANY ship in a system if you didn&#39;t have size equal to or greater than their largest...\r\n ...in other words-- that the mere presence of my B3 would be enough to protect my 2s at Tango.\r\n\r\nI checked the old print-out I originally learned from and I must have misread it from the very beginning. And yet.... huh... how have I been playing so long without that happening before.\r\n\r\nI feel so confused and lost now. How many games have I thrown away by not attacking smaller ships? How many times have I left myself needlessly exposed? What do I tell the people I have taught. OMG. UGH.\r\n\r\nI have to absorb this before I can go further.\n\tZackStack: Ouch. I hate when that sort of thing happens.  My moment was during my first game on SDG when I realized you couldn&#39;t build ships of any color!  Up to that point I felt blue ships/stars were pretty useless...  Feel free to undo your response in light of your new knowledge!\n\trootbier: Ha hah. Aren&#39;t you the friendliest competitor around. My only justification is ... my friend and I were just so completely perplexed while trying to learn the game off of this piece of paper... something was bound to go wrong.\r\n\r\nWe knew we couldn&#39;t trade up - and didn&#39;t see how always having to build the smallest available pieces (obivously 1s if you interpret the rules the wrong way) ever got us anything larger.\r\n\r\nAnyway - I feel rather dumb but actually like my interpretation of attack (it&#39;s never led to a disappointing game before) ... whatever. Onward and thank you.\n\n27) rootbier: Trade B2 R2 Gabriel\n\trootbier: I sleep now.\n\tZackStack: Its a rare game where someone sneaks a smaller ship under a large to steal other ships so I&#39;m not suprised you haven&#39;t had it happen before!  I might get a nap if both girls sleep at the same time... ;-)\n\n28) ZackStack: Trade R1 G1 Tango\n\tZackStack: Thank you for the competitor compliment as well.  I certainly would have given your moves back in person... so why not on here!\n\n29) rootbier: Build Y1 Gabriel\n\n30) ZackStack: Build G2 Zackstack\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild R1 Gabriel\nBuild B2 Raymond\n\n32) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B2 Tango\nBuild B3 Cash\n\n33) rootbier: Sacrifice Y2 Gabriel\nMove B1 Raymond Cash\nMove B2 Raymond Cash\nCatastrophe Cash B\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G1 Zackstack\nBuild G3 Zackstack\nBuild R1 Tango\n\n\nHomeworlds Online (SDG# 16866)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.20, Ended: 2010.9.4\nParticipants: Jesse (S), rootbier (N)\nWinner: Jesse\n\n1) rootbier: Homeworld B1 Y2 G3\n\trootbier: I promise to try not to time out on this one :P\n\n2) Jesse: Homeworld Y1 B3 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) Jesse: Build G1 Jesse\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) rootbier: Build Y2 Rootbier\n\n8) Jesse: Build Y2 Jesse\n\n9) rootbier: Discover Y1 Rootbier G3 Skade\n\n10) Jesse: Discover Y2 Jesse G2 Hippo\n\n11) rootbier: Build Y3 Rootbier\n\n12) Jesse: Build Y3 Hippo\n\n13) rootbier: Trade Y2 R2 Rootbier\n\n14) Jesse: Trade Y1 R1 Jesse\n\n15) rootbier: Discover Y3 Rootbier B3 Plane\n\n16) Jesse: Discover Y3 Hippo B3 Croc\n\n17) rootbier: Build R1 Rootbier\n\n18) Jesse: Build R1 Jesse\n\n19) rootbier: Move R2 Rootbier Skade\n\n20) Jesse: Move R1 Jesse Hippo\n\n21) rootbier: Build R2 Rootbier\n\n22) Jesse: Build R2 Jesse\n\n23) rootbier: Move Y3 Plane Hippo\n\n24) Jesse: Sacrifice Y2 Hippo\nMove R1 Hippo Croc\nDiscover R2 Jesse G2 Antel\n\n25) rootbier: Build R3 Skade\n\n26) Jesse: Build R3 Antel\n\n27) rootbier: Build R3 Skade\n\n28) Jesse: Build G1 Jesse\n\trootbier: Calculated. Calculte.\n\trootbier: Calculated. Calculate.\n\n29) rootbier: Move R3 Skade Hippo\n\n30) Jesse: Trade G1 B1 Jesse\n\trootbier: I still can&#39;t keep a good sense of continuity playing HW here. What was I actually thinking last time? Don&#39;t know... my brain is made of strange putties lately.\n\n31) rootbier: Sacrifice Y3 Hippo\nMove R2 Skade Antel\nMove R1 Rootbier Skade\nMove R1 Skade Antel\nCatastrophe Antel R\n\n32) Jesse: Build G1 Jesse\n\n33) rootbier: Build G1 Rootbier\n\n34) Jesse: Discover G1 Jesse Y2 Phan\n\n35) rootbier: Discover G1 Rootbier B3 Balm\n\n36) Jesse: Move G1 Phan Croc\n\n37) rootbier: Discover R3 Skade B2 Reflux\n\n38) Jesse: Build G1 Jesse\n\n\nHomeworlds Online (SDG# 16681)\nStarted: 2010.7.21, Ended: 2010.8.20\nParticipants: scottobear (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) scottobear: Homeworld R2 B1 G3\n\tTwoShort: \n\tTwoShort: \n\tTwoShort: Howdy.  I&#39;m on vacation deep in the land of not much internet.  I&#39;m happy to play, but don&#39;t expect very frequent moves until next week.\n\tscottobear: no worries! take all the time you like - I enjoy leisurely games :)\n\n3) TwoShort: Build G1 Twoshort\n\n4) scottobear: Build G1 Scottobear\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) TwoShort: Build G1 Twoshort\n\n8) scottobear: Build G1 Scottobear\n\n9) TwoShort: Build G1 Twoshort\n\n10) scottobear: Build G2 Scottobear\n\n11) TwoShort: Discover G1 Twoshort G2 Greenzilla\n\n\nHomeworlds Online (SDG# 16928)\nStarted: 2010.7.21, Ended: 2010.10.29\nParticipants: ts52 (S), scottobear (N)\nWinner: ts52\n\n1) scottobear: Homeworld R2 B3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) scottobear: Build G1 Scottobear\n\tts52: Have a good game.\n\tscottobear: thanks! a long time since I&#39;ve played! :D\n\n4) ts52: Build G1 Ts52\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) scottobear: Discover Y1 Scottobear G1 Boog\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) scottobear: Build G1 Scottobear\n\n10) ts52: Build Y2 Kermit\n\n11) scottobear: Build Y2 Boog\n\n12) ts52: Build G1 Ts52\n\n\nHomeworlds Online (SDG# 16774)\nStarted: 2010.7.21, Ended: 2010.9.23\nParticipants: Mandrel (S), scottobear (N)\nWinner: Mandrel\n\n1) scottobear: Homeworld B2 R1 G3\n\n2) Mandrel: H B2 R3 G3\n\n3) scottobear: Build G1 Scottobear\n\tMandrel: Have a good game.\n\tscottobear: thank you! I&#39;m new, but look forward to learning some strategy. :)\n\n4) Mandrel: B G1 Mandrel\n\tMandrel: Cool, i&#39;ve been playing a fair bit recently, but still barely past the basics strategy-wise.\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) Mandrel: T G1 Y1 Mandrel\n\n\nHomeworlds Online (SDG# 16884)\nStarted: 2010.7.21, Ended: 2012.2.27\nParticipants: scottobear (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) scottobear: Homeworld R2 B1 G3\n\trootbier: Thanks for grabbing the challenge. Good luck.\n\tscottobear: Thanks! I&#39;m still a tenderfoot at this... hope you have fun too!\n\tscottobear: Thanks! I&#39;m still a tenderfoot at this... hope you have fun too!\n\n3) rootbier: Build G1 Rootbier\n\trootbier: Should I call out things that strike me as mistakes/poor choices? First one was your build with respect to mine. Taking the same small star - I will be able to take that remaining b1 before you -- which will give me early access to larger ships. You will be stuck building up through the small ships of another color while I build 2s and even 3s.\r\n\r\nI can show you how that goes or you can undo and just switch the sizes on your two stars.\n\trootbier: Well... onward then.\n\n4) scottobear: Build G1 Scottobear\n\tscottobear: Sorry I missed that note until now - I look forward to any hints or tricks!\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) rootbier: Build B2 Rootbier\n\n8) scottobear: Build G1 Scottobear\n\n9) rootbier: Discover B1 Rootbier G3 Slake\n\n\nHomeworlds Online (SDG# 16920)\nStarted: 2010.7.21, Ended: 2011.12.28\nParticipants: dethdukk (S), scottobear (N)\nWinner: dethdukk\n\n1) scottobear: Homeworld B2 R1 G3\n\n2) dethdukk: Homeworld R3 B1 G3\n\n\nHomeworlds Online (SDG# 16960)\nStarted: 2010.7.21, Ended: 2010.8.20\nParticipants: TwoShort (S), scottobear (N)\nWinner: TwoShort\n\n1) scottobear: Homeworld R2 B1 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) scottobear: Build G1 Scottobear\n\n4) TwoShort: Build B1 Twoshort\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) scottobear: Build G1 Scottobear\n\n8) TwoShort: Build B2 Twoshort\n\n9) scottobear: Build G1 Scottobear\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) scottobear: Discover Y1 Scottobear R3 Warzone\n\n12) TwoShort: Build B2 Twoshort\n\n\nHomeworlds Online (SDG# 16682)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.21, Ended: 2010.7.23\nParticipants: dlwillson (S), brikwars560 (N)\nWinner: dlwillson\n\n1) brikwars560: Pass\n\tbrikwars560: hi\n\n2) dlwillson: H B3 Y2 G3\n\n\tdlwillson: Hello? Are you there?\n\nHomeworlds Online (SDG# 16972)\nVariants: &quot;Unrated&quot;\nStarted: 2010.7.22, Ended: 2010.10.27\nParticipants: riddick (S), johannz (N), enochroot (E)\nWinner: johannz\n\n1) johannz: Homeworld B1 Y3 G3\n\n2) enochroot: Homeworld B2 Y1 G3\n\n3) riddick: Homeworld B3 Y2 G3\n\n4) johannz: Build G1 Johannz\n\tjohannz: build g1 johannz\n\n5) enochroot: Build G1 Enochroot\n\n6) riddick: Build G1 Riddick\n\tjohannz: New user accidentally clicked the &quot;Page Admin&quot; button. He has been chastised :) \n\n7) johannz: Discover G1 Johannz G2 Teleflora\n\n8) enochroot: Build G1 Enochroot\n\n\nHomeworlds Online (SDG# 16973)\nStarted: 2010.7.22, Ended: 2010.7.23\nParticipants: Lurch (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Lurch: Homeworld Y2 B1 G3\n\tdlwillson: Dude, you are amazingly fast.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Lurch: Build G1 Lurch\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Lurch: Discover G1 Lurch Y3 Alphacentauri\n\n7) dlwillson: Build B1 Dlwillson\n\tdlwillson: I sure like a fast game.\n\n8) Lurch: Build G1 Lurch\n\n9) dlwillson: Discover B1 Dlwillson B2 Brooder\n\tLurch: I concur. \n\n10) Lurch: Trade G1 R1 Lurch\n\n11) dlwillson: Build B2 Dlwillson\n\n12) Lurch: Discover R1 Lurch B3 Beta\n\n13) dlwillson: Discover B2 Dlwillson B2 Skulker\n\n14) Lurch: Trade R1 G1 Beta\n\n15) dlwillson: Build B3 Dlwillson\n\n16) Lurch: Build G1 Beta\n\n17) dlwillson: Sacrifice B2 Skulker\nTrade G3 Y3 Dlwillson\nTrade B3 R3 Dlwillson\n\tLurch: good night\n\tdlwillson: &#39;Night. Think I&#39;ve got you in this one, Lurch. Three or so moves, maybe. Depends...\n\n18) Lurch: Trade G1 Y1 Beta\n\n19) dlwillson: S Y3 Dlwillson\nM R3 Dlwillson Brooder\nM R3 Brooder Beta\nM R3 Beta Lurch\n\n20) Lurch: Build G1 Lurch\n\n21) dlwillson: A G3 Lurch\n\n22) Lurch: Move Y1 Beta Lurch\n\n23) dlwillson: Sacrifice R3 Lurch\nAttack Y1 Lurch\nAttack G1 Lurch\nPass\n\tdlwillson: I can put in my turns from my phone, but I can&#39;t chat from it, which is why I&#39;ve been so quiet.\r\n\r\nThat was the fastest I&#39;ve ever played a game on SDG, and I&#39;ve played many here! Usually, it&#39;s a turn or two per day. Some players it&#39;s days per turn.\r\n\r\nDo you want to try a handicap in the next game? I could start out with a small ship or all blue or something.\r\n\r\nI HAVE played a lot of Homeworlds...\n\tLurch: Yes, I think a handicap would make it more balanced.\n\tdlwillson: OK, let&#39;s do another one. Go to Challenges and pick up my standing challenge.\r\n\r\nI&#39;ll go all-blue, which should be a Hell of a good handicap. I have to start with a trade to grow, and can&#39;t move until I trade again.\r\n\r\nLesson from this game:\r\n\r\nNever let the other guy lock you out of a color, take the last small or medium if you must, but you can&#39;t let the other guy keep a monopoly.\n\n\nHomeworlds Online (SDG# 16962)\nStarted: 2010.7.22, Ended: 2010.7.29\nParticipants: Lurch (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Lurch: Homeworld B3 Y1 G3\n\trootbier: Welcome to the site and the game. Have you ever played it before/offline?\n\n3) rootbier: Build G1 Rootbier\n\n4) Lurch: Build G1 Lurch\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) Lurch: Trade G1 B1 Lurch\n\n7) rootbier: Build Y1 Rootbier\n\n8) Lurch: Build B1 Lurch\n\n9) rootbier: Discover Y1 Rootbier G3 Bamam\n\tLurch: I have played once offline with dlwilson.  I&#39;m a total noob.\n\n10) Lurch: Discover B1 Lurch G2 Alpha\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Bamam\nBuild Y2 Bamam\nBuild Y3 Rootbier\n\trootbier: we all were at some point. feel free to ask questions. right now - you&#39;re in a little trouble because i am already going to mostly lock you out of yellow. and from there it gets ugly. you could do the same to me with blue - but blue isn&#39;t nearly as valuable as yellow.\n\trootbier: you understand that you can&#39;t build another blue there right now ... i&#39;d be able to call catastrophe and wipe them all out. so you need to move at least once (like i just did) before building more blue. you can build green but that doesn&#39;t get you to larger ships so fast. you can&#39;t really just trade your big to yellow - cuz then you&#39;ll have no green... the whole game is baby steps :)\r\n\r\nexcept for sacrifices :D\n\n12) Lurch: Build B2 Alpha\n\tLurch: My plan is to build it and trade it before you could call a catastrophe :)\n\trootbier: it doesn&#39;t work that way. i can call it right now and you lose all your blue - including your star. you can undo or i can teach you the painful lesson.\n\trootbier: ;)\n\tLurch: I guess I don&#39;t understand.  I can change my ship in one move but I don&#39;t see how you can get a blue into my home world in one move.  You still need to discover a size 2 star, move to my home world and build or trade to get a blue ship.\n\trootbier: I don&#39;t need to be there. I don&#39;t need to be the CAUSE of the overpopulation. I just need to see that there are four of the same color in a system and put in the command. Means you even have to control your own population/growth.\r\n\r\nI made a similar mistake when I was starting and paid dearly for it. \n\tLurch: dough, I see what you mean now.\n\n13) rootbier: Trade Y3 B3 Rootbier\n\n14) Lurch: Move G3 Lurch Alpha\n\n15) rootbier: Discover Y2 Bamam G2 Plat\n\n16) Lurch: Trade G3 Y3 Alpha\n\n17) rootbier: Trade Y1 G1 Rootbier\n\n18) Lurch: Trade B1 G1 Lurch\n\n19) rootbier: Build B1 Rootbier\n\n20) Lurch: Sacrifice Y3 Alpha\nMove B1 Alpha Bamam\nMove B1 Bamam Rootbier\nMove B2 Alpha Bamam\nCatastrophe Rootbier B\n\n21) rootbier: Build Y1 Plat\n\n22) Lurch: Trade B2 R2 Bamam\n\n23) rootbier: Sacrifice Y1 Bamam\nMove Y2 Bamam Plat\n\n24) Lurch: Build G1 Lurch\n\n25) rootbier: Build G2 Rootbier\n\trootbier: seemed like a good idea but you have effectively locked yourself out of yellows and will be sitting pretty still for a while.\n\n26) Lurch: Trade G1 B1 Lurch\n\n27) rootbier: Discover Y2 Plat G1 Ooger\n\n28) Lurch: Build G2 Lurch\n\n29) rootbier: Sacrifice G2 Rootbier\nBuild Y1 Plat\nBuild Y3 Ooger\n\n30) Lurch: Discover B1 Lurch G2 Beta\n\n31) rootbier: Build Y3 Ooger\n\n32) Lurch: Move G1 Lurch Rootbier\n\n33) rootbier: Sacrifice Y3 Ooger\nMove Y3 Ooger Rootbier\nDiscover Y2 Ooger B3 Cathe\nMove Y1 Plat Cathe\n\n34) Lurch: Build G1 Rootbier\n\n35) rootbier: Build G3 Rootbier\nCatastrophe Rootbier G\n\n36) Lurch: Build G1 Lurch\n\n37) rootbier: Trade Y1 B1 Cathe\n\n38) Lurch: Trade B1 Y1 Beta\n\n39) rootbier: Move B1 Cathe Rootbier\n\n40) Lurch: Build Y3 Beta\n\n41) rootbier: Trade Y3 R3 Rootbier\n\n42) Lurch: Move Y3 Beta Bamam\n\trootbier: Let me help you along there.\n\tLurch: That is not exactly what I was going for but thanks :)\n\n43) rootbier: Build Y3 Plat\n\trootbier: I didn&#39;t imagine it was ;)\n\n44) Lurch: Build Y3 Bamam\n\n45) rootbier: Move Y3 Plat Lurch\n\n46) Lurch: Sacrifice Y3 Bamam\nMove Y3 Bamam Plat\nMove Y1 Beta Bamam\nMove Y1 Bamam Plat\nCatastrophe Plat Y\n\n47) rootbier: Sacrifice R3 Rootbier\nAttack G1 Lurch\nAttack G2 Lurch\nPass\n\n\tLurch: Thanks, I think that my take away from this game is not to give up a size 3 ship in your homeworld for early gains.\n\trootbier: Yeah. Having a three at home is pretty crucial. If I have to go without for a turn -- okay I will -- but unless I have LOTS of yellow to spare I will always (try to) have a big ship within one easy step of home. Blah blah and blah.\r\n\r\nAnd watch what you lose on cats - you may hurt the other guy bad (you did) - but you can easily end up screwing yourself over in the process (you did).\n\nHomeworlds Online (SDG# 16969)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.23, Ended: 2010.7.25\nParticipants: dlwillson (S), Lurch (N)\nWinner: Lurch\n\n1) Lurch: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 B1 B3 *\n\n3) Lurch: Build G1 Lurch\n\n4) dlwillson: Trade B3 G3 Dlwillson\n\n5) Lurch: Trade G1 B1 Lurch\n\n6) dlwillson: B G1 Dlwillson\n\n7) Lurch: Discover B1 Lurch G3 Beta\n\n8) dlwillson: T G1 Y1 Dlwillson\n\n9) Lurch: Build B1 Beta\n\n10) dlwillson: B Y1 Dlwillson\n\n11) Lurch: Build B2 Beta\n\n12) dlwillson: B Y2 Dlwillson\n\n13) Lurch: Trade B2 Y2 Beta\n\n14) dlwillson: D Y2 Dlwillson B2 Gamma\n\n15) Lurch: Build Y2 Beta\n\n16) dlwillson: B Y3 Dlwillson\n\n17) Lurch: Sacrifice Y2 Beta\nMove B1 Beta Gamma\nMove B1 Beta Gamma\n\n18) dlwillson: T Y1 R1 Dlwillson\n\n19) Lurch: Sacrifice Y2 Beta\nMove B1 Gamma Dlwillson\nMove B1 Gamma Dlwillson\nCatastrophe Dlwillson B\n\n\nHomeworlds Online (SDG# 16981)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.24, Ended: 2010.7.31\nParticipants: AdamBadura (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) AdamBadura: Homeworld G3 B2 R3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) AdamBadura: Build R1 Adambadura\n\n5) Uglyfoot: Trade G1 R1 Uglyfoot\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) Uglyfoot: Discover G1 Uglyfoot B1 Tart\n\n10) AdamBadura: Build R1 Adambadura\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) AdamBadura: Move R1 Adambadura Tart\n\n13) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R1 Tart\n\n14) AdamBadura: Build R1 Adambadura\n\n15) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n16) AdamBadura: Trade Y1 G1 Adambadura\n\n17) Uglyfoot: Build G1 Tart\n\n18) AdamBadura: Build Y1 Adambadura\n\n19) Uglyfoot: Build Y2 Uglyfoot\n\n20) AdamBadura: Discover G1 Adambadura R1 Outpost\n\n21) Uglyfoot: Move Y2 Uglyfoot Outpost\n\n22) AdamBadura: Build G2 Outpost\n\n23) Uglyfoot: Attack G2 Outpost\n\n24) AdamBadura: Sacrifice Y1 Adambadura\nDiscover G1 Outpost Y3 Lastresort\n\n25) Uglyfoot: Build G2 Uglyfoot\n\n26) AdamBadura: Discover R1 Adambadura Y1 Ontheway\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Outpost\n\n28) AdamBadura: Build R2 Adambadura\n\n29) Uglyfoot: Sacrifice Y1 Uglyfoot\nMove G1 Tart Adambadura\n\n30) AdamBadura: Move G1 Lastresort Ontheway\n\n31) Uglyfoot: Sacrifice G2 Uglyfoot\nBuild G2 Adambadura\nBuild R2 Tart\n\n32) AdamBadura: Build R2 Ontheway\n\n33) Uglyfoot: Sacrifice Y2 Outpost\nMove R1 Tart Adambadura\nMove R2 Tart Adambadura\nCatastrophe Adambadura R\n\n34) AdamBadura: Build Y1 Adambadura\n\n35) Uglyfoot: Trade G3 R3 Uglyfoot\n\tAdamBadura: Oh... I havn&#39;t seen that. I knew I was going to lose but it will come quicker than I though...\n\n36) AdamBadura: Build G3 Ontheway\n\n37) Uglyfoot: Sacrifice R3 Uglyfoot\nAttack Y1 Adambadura\nAttack Y1 Adambadura\nPass\n\n\nHomeworlds Online (SDG# 16362)\nStarted: 2010.7.25, Ended: 2012.3.6\nParticipants: the_luggage (S), rootbier (N), Teo (E)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Teo: Homeworld B2 Y3 G3\n\n3) the_luggage: Homeworld B1 Y3 G3\n\n4) rootbier: Build G1 Rootbier\n\trootbier: OMG amazing! It&#39;s a LARS!\n\n5) Teo: Build G1 Teo\n\n6) the_luggage: Build G1 The_luggage\n\n7) rootbier: Trade G1 B1 Rootbier\n\n8) Teo: Trade G1 Y1 Teo\n\n9) the_luggage: Discover G1 The_luggage B2 Discworld\n\tTeo: Ohhhh Yeah !\n\n10) rootbier: Build B1 Rootbier\n\n11) Teo: Build G1 Teo\n\n12) the_luggage: Build G1 Discworld\n\n13) rootbier: Discover B1 Rootbier G3 Skerrd\n\n14) Teo: Trade G1 R1 Teo\n\n15) the_luggage: Trade G1 Y1 Discworld\n\n16) rootbier: Sacrifice G3 Rootbier\nBuild B2 Skerrd\nBuild B2 Skerrd\nBuild B3 Rootbier\n\n17) Teo: Build Y1 Teo\n\tTeo: Sorry I&#39;m a bit late !\n\n\nHomeworlds Online (SDG# 16974)\nStarted: 2010.7.25, Ended: 2010.7.31\nParticipants: rootbier (S), Tank_7 (N)\nWinner: rootbier\n\n1) Tank_7: Homeworld G2 R1 B3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) Tank_7: Build B1 Tank_7\n\n4) rootbier: Build G1 Rootbier\n\n5) Tank_7: Trade B3 Y3 Tank_7\n\trootbier: Welcome to the site and the game. Have you ever played before/offline?\n\tTank_7: I have played offline before, its nice to have this site I see!\n\n6) rootbier: Trade G1 B1 Rootbier\n\n7) Tank_7: Build B2 Tank_7\n\trootbier: played a lot or a little?\n\n8) rootbier: Discover B1 Rootbier G2 Achio\n\n9) Tank_7: Discover B1 Tank_7 G3 Nidulon\n\n10) rootbier: Build G1 Rootbier\n\tTank_7: played just a little, under 10 solid games\n\n11) Tank_7: Build B2 Nidulon\n\n12) rootbier: Trade G1 Y1 Rootbier\n\n13) Tank_7: Trade B1 Y1 Nidulon\n\n14) rootbier: Build G1 Rootbier\n\n15) Tank_7: Build B1 Nidulon\n\n16) rootbier: Build G1 Rootbier\n\n17) Tank_7: Trade B2 G2 Nidulon\n\n18) rootbier: Discover G1 Rootbier B2 Palace\n\n19) Tank_7: Trade B2 Y2 Tank_7\n\n20) rootbier: Build B2 Achio\n\n21) Tank_7: Build B2 Nidulon\n\n22) rootbier: Build G1 Palace\n\n23) Tank_7: Sacrifice B1 Nidulon\nTrade Y3 G3 Tank_7\n\n24) rootbier: Trade B1 R1 Achio\n\tTank_7: I&#39;m an idiot!\n\n25) Tank_7: Trade G2 R2 Nidulon\n\n26) rootbier: Sacrifice G3 Rootbier\nBuild G2 Palace\nBuild G3 Rootbier\nBuild B1 Achio\n\n27) Tank_7: Move R2 Nidulon Palace\n\n28) rootbier: Sacrifice R1 Achio\nAttack R2 Palace\n\n29) Tank_7: Build B1 Nidulon\n\n30) rootbier: Move Y1 Rootbier Achio\n\n31) Tank_7: Discover B2 Nidulon Y2 Kamu\n\n32) rootbier: Discover B2 Achio R3 Azel\n\n33) Tank_7: Build B3 Nidulon\n\n34) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild B3 Azel\nBuild B3 Achio\n\n35) Tank_7: Trade B1 R1 Nidulon\n\n36) rootbier: Sacrifice B2 Azel\nTrade G3 Y3 Rootbier\nTrade G1 R1 Palace\n\n37) Tank_7: Sacrifice Y2 Tank_7\nMove B3 Nidulon Tank_7\nDiscover G3 Tank_7 R3 Canopus\n\n38) rootbier: Sacrifice Y3 Rootbier\nMove B3 Achio Azel\nMove B3 Azel Tank_7\nMove B3 Azel Tank_7\n\n39) Tank_7: Sacrifice G3 Canopus\nBuild B1 Tank_7\nBuild B2 Tank_7\nBuild R2 Nidulon\n\n40) rootbier: Pass\nCatastrophe Tank_7 B\n\n\nHomeworlds Online (SDG# 16987)\nStarted: 2010.7.25, Ended: 2011.3.23\nParticipants: rootbier (S), MagicJohn (N)\nWinner: rootbier\n\n1) MagicJohn: Homeworld G2 Y1 B3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) MagicJohn: Build B1 Magicjohn\n\n4) rootbier: Build G1 Rootbier\n\n5) MagicJohn: Trade B3 G3 Magicjohn\n\n6) rootbier: Trade G1 B1 Rootbier\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) rootbier: Build B2 Rootbier\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Dune\n\n10) rootbier: Discover B2 Rootbier G2 Nude\n\n11) MagicJohn: Discover B1 Magicjohn G3 Theshire\n\tMagicJohn: Sorry about the wait. One of my generals is being openly critical of my policies. I&#39;ve had to fire him.\n\n12) rootbier: Build B2 Rootbier\n\trootbier: &quot;fire&quot;\n\n13) MagicJohn: Build G1 Magicjohn\n\n14) rootbier: Discover B2 Rootbier Y2 Helmet\n\n15) MagicJohn: Move G1 Magicjohn Theshire\n\n16) rootbier: Sacrifice G3 Rootbier\nBuild B2 Nude\nBuild B3 Helmet\nBuild B3 Rootbier\n\tMagicJohn: I keep having to squirm out of situations that I created. Annoying....... Very annoying.\n\trootbier: ? Don&#39;t panic man. Count moves if you have to. I doubt I have put you in any serious danger yet.\r\n\r\nIf you&#39;re talking about always being at the edge of overpopulation... that&#39;s part of the game yeah.\n\n17) MagicJohn: Build B3 Theshire\n\n18) rootbier: Sacrifice B2 Helmet\nTrade B3 G3 Rootbier\nTrade B2 Y2 Nude\n\tMagicJohn: Panic,,,,no.... Grinding my teeth.... probably.....   I am just at a point where my current awareness of game variables totally exceeds my ability to juggle them.  Patience with that situation has never been my forte&#39;.\n\n19) MagicJohn: Trade B3 Y3 Theshire\n\n20) rootbier: Sacrifice Y2 Nude\nMove B3 Helmet Dune\nMove B3 Dune Magicjohn\n\n21) MagicJohn: Sacrifice B1 Theshire\nTrade G3 R3 Magicjohn\n\trootbier: Hi!\n\n22) rootbier: Sacrifice G3 Rootbier\nBuild B1 Magicjohn\nBuild B2 Magicjohn\nBuild B2 Nude\n\tMagicJohn: My wife must be issuing invitations behind my back again. Just in time for dinner.  We&#39;re just having rootbier floats.\n\n23) MagicJohn: Attack B3 Magicjohn\n\trootbier: Blueberries!\n\tMagicJohn: I need a rules interpretation. I submitted the action of sacrificing my r3 and turning your blue ships in magicjohn. The game refuses my move and says that I must own a ship in my home system at the end of my turn. At the end of my turn, wouldn&#39;t I own three &quot;blueberries&quot; in magicjohn?   \n\n24) rootbier: Trade B2 G2 Nude\n\tMagicJohn: Apparently the program likes this move, so I will trundle on. I&#39;m still puzzled why the other move was disallowed.\n\trootbier: Sacrifice moves happen in exact order. You can not sacrifice your red because it is your ONLY ship there - you would lose the moment it was gone. Furthermore - you would need a ship to attack with. If you sacrificed it you would have no ship to there to take your three by-the-rules attack actions with. Imagining that you had another smaller ship there - if you sacrificed the large red one - you would then have three attack moves using that smaller ship and would not be able to attack my larger ship.\r\n\r\nNow I am just trying to figure out why I did what I did.\n\n25) MagicJohn: Attack B2 Magicjohn\n\n26) rootbier: Sacrifice G2 Nude\nBuild B2 Magicjohn\nBuild B3 Rootbier\nCatastrophe Magicjohn B\n\tMagicJohn: No doubt giving me small fires to put out while you build an empire.  PS.... Thanks for the clear explanation although, in some instances, I prefer my &quot;magic thinking&quot; to logic.  : )\n\trootbier: Taking those ships one at a time and not trading them off blue --- with green in your system -- that doesn&#39;t help you. Just wastes your turns.\n\n27) MagicJohn: Build R1 Magicjohn\n\trootbier: I am SO bad at remembering my plans from one move to the next and I almost never bother to use the notebook.\n\n28) rootbier: Build B1 Nude\n\trootbier: That feels much better :)\r\n\r\nP.S. No empire plans. Maybe I just hoped to catch you sleeping. Which I didn&#39;t. And then I did.\n\tMagicJohn: No more dinner invitations.....\n\tMagicJohn: Oh!...... So if I stall long enough between moves your armies may become prone to memory-based strategic anomalies....\n\n29) MagicJohn: Discover R1 Magicjohn B3 Loci\n\trootbier: Sorry. What? Huh?\n\n30) rootbier: Trade B3 R3 Rootbier\n\n31) MagicJohn: Build R1 Magicjohn\n\n32) rootbier: Build B2 Nude\n\n33) MagicJohn: Move G1 Theshire Nude\n\n34) rootbier: Trade B2 Y2 Nude\n\n35) MagicJohn: Build G1 Dune\n\n36) rootbier: Build B2 Nude\n\n37) MagicJohn: Sacrifice Y3 Theshire\nMove G1 Dune Nude\nMove G1 Dune Nude\nPass\nCatastrophe Nude Green\n\n38) rootbier: Trade B1 G1 Rootbier\n\n39) MagicJohn: Trade R1 G1 Loci\n\trootbier: You need a plan man. Or at least you need to know some possible plans to move towards/how to be a threat.\r\n\r\nWhat&#39;s your general thought process on all this at this point?\n\n40) rootbier: Build G1 Rootbier\n\tMagicJohn: I am having trouble building or trading for blue ships.  I was considering dropping my dune ships into nude and blowing up the system.  That would make some blue ships available and limit your travel for the time being.  I was also trying to limit your travel by limiting the number of Y3&#39;s available to you although the afore-mentioned tactic would free them up.  \n\trootbier: You&#39;re having trouble getting blue because I am controlling it. You can move to blues fairly easily - but yeah - it doesn&#39;t get done what I think you&#39;re looking for.\r\n\r\nYou&#39;re clearly going for the system. It&#39;s a great thing to consider and it&#39;s yours at the cost of that big yellow. Any slower than that it won&#39;t work so well. It could well be worth the cost if you think you&#39;ll take some of my control away. \r\n\r\nRemember that I will have the next move in that &quot;redefined&quot; world (three systems would disappear at once). Consider your state after - my state after - and the Stash&#39;s state after. If you have trouble visualizing - make the move and I can lay off taking my own. Give you the chance to look at it and decide if you like it. Give you time to undo.\r\n\r\nYou&#39;ve definitely had the advantage since my failed blue invasion. Press it. Push me and limit me.\n\n41) MagicJohn: Move R3 Magicjohn Loci\n\tMagicJohn: Still thinking about this. You will probably trade your red for a green and I will have to scramble to keep up. I also sacrificed material for a minor positional advantage.\n\trootbier: Do you want me to wait while you consider it? Just let me know when to press on.\n\tMagicJohn: Still cogitating......\n\trootbier: ...\n\tMagicJohn: ............ Wife hit rough health time. Priorities and all.  Go with the inputted move.\n\trootbier: Oof... very sorry to hear that.\r\nSomething chronic or a new thing?\r\n\r\nI think your move was fine.\n\n42) rootbier: Trade G1 Y1 Rootbier\n\tMagicJohn: Chronic problem suddenly got a lot worse....\n\n43) MagicJohn: Build R1 Loci\n\n44) rootbier: Build Y1 Rootbier\n\trootbier: Sorry to hear. I don&#39;t pray to anything - but I hope you guys have better times ahead.\n\n45) MagicJohn: Trade R3 G3 Loci\n\n46) rootbier: Discover Y1 Rootbier Y2 Bamama\n\n47) MagicJohn: Build R1 Loci\n\n48) rootbier: Build Y2 Rootbier\n\n49) MagicJohn: Trade G3 Y3 Loci\n\n50) rootbier: Discover Y1 Bamama G3 Bleak\n\n51) MagicJohn: Build Y2 Loci\n\n52) rootbier: Discover Y1 Rootbier G2 Glowb\n\n53) MagicJohn: Trade Y3 G3 Loci\n\n54) rootbier: Build Y2 Bleak\n\n55) MagicJohn: Build Y3 Loci\n\n56) rootbier: Sacrifice Y2 Rootbier\nMove Y2 Bleak Magicjohn\nMove Y1 Bleak Magicjohn\n\n57) MagicJohn: Build R2 Magicjohn\n\n58) rootbier: Sacrifice R3 Rootbier\nAttack R2 Magicjohn\nAttack R1 Magicjohn\nPass\n\tMagicJohn: Wife&#39;s in hospital...  I&#39;ll play when I can but priorities and all.....\n\n\tMagicJohn: Please ignore last gibberish.  I suspect I should have moved a G3 to MagicJohn or sacrificed a Y3 and moved in an armada so you could not capture everything.....?\n\trootbier: Thanks for the welcome.\r\n\r\nHope you and yours are doing better/well. It&#39;s been an odd half-year.\r\n\r\nAnd you&#39;re right ... I can&#39;t capture a 2 with a 1.\n\nHomeworlds Online (SDG# 16896)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.27, Ended: 2010.8.14\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) SilentTitan: Homeworld Y2 G3 B3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) dlwillson: B G1 Dlwillson\n\n6) SilentTitan: Discover B1 Silenttitan B1 Bluemoon\n\n7) dlwillson: Trade G1 B1 Dlwillson\n\n8) SilentTitan: Trade B1 G1 Bluemoon\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) SilentTitan: Build G1 Bluemoon\n\n11) dlwillson: Build R1 Dlwillson\n\n12) SilentTitan: Trade G1 Y1 Bluemoon\n\n13) dlwillson: B G1 Dlwillson\n\n14) SilentTitan: Build Y1 Bluemoon\n\n15) dlwillson: T G1 Y1 Dlwillson\n\n16) SilentTitan: Discover Y1 Bluemoon R2 Hagar\n\n17) dlwillson: B Y2 Dlwillson\n\n18) SilentTitan: Discover G1 Bluemoon Y3 Yaz\n\n19) dlwillson: Discover Y1 Dlwillson G2 Ell-bore-oom\n\n20) SilentTitan: Build B1 Silenttitan\n\n21) dlwillson: B B2 Dlwillson\n\n22) SilentTitan: Trade B3 Y3 Silenttitan\n\n23) dlwillson: B Y2 Dlwillson\n\n24) SilentTitan: Build B2 Silenttitan\n\n25) dlwillson: Move B2 Dlwillson Hagar\n\n26) SilentTitan: Sacrifice G1 Yaz\nBuild Y3 Hagar\n\n27) dlwillson: Build Y3 Ell-bore-oom\n\n28) SilentTitan: Trade B2 R2 Silenttitan\n\n29) dlwillson:\nS Y2 Dlwillson\nD R1 Dlwillson B2 Hellboreboom\nD B2 Hagar G1 Smellodoom\n\n30) SilentTitan: Trade Y3 G3 Silenttitan\n\n31) dlwillson: Move Y1 Ell-bore-oom Smellodoom\n\n32) SilentTitan: Move Y3 Hagar Smellodoom\n\n33) dlwillson: T Y1 G1 Smellodoom\n\n34) SilentTitan: Discover Y3 Smellodoom G2 Redonk\n\n35) dlwillson: Build G1 Dlwillson\n\n36) SilentTitan: Sacrifice B1 Silenttitan\nTrade Y3 R3 Redonk\n\n37) dlwillson: S G3 Dlwillson\nB G2 Smellodoom\nB G3 Dlwillson\nB Y1 Ell-bore-oom\n\n38) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Redonk\nBuild R3 Silenttitan\nBuild Y2 Bluemoon\n\n39) dlwillson: S G3 Dlwillson\nB R3 Hellboreboom\nB G3 Dlwillson\nB G3 Dlwillson\n\n40) SilentTitan: Trade Y2 B2 Bluemoon\n\n41) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R1 Hellboreboom B1 Bestbuy\nMove R3 Hellboreboom Bestbuy\n\n42) SilentTitan: Sacrifice B2 Bluemoon\nTrade R3 Y3 Redonk\nTrade R3 B3 Silenttitan\n\n43) dlwillson: Sacrifice Y3 Ell-bore-oom\nMove B2 Smellodoom Silenttitan\nMove G1 Smellodoom Silenttitan\nMove R1 Bestbuy Ell-bore-oom\n\n44) SilentTitan: Sacrifice R2 Redonk\nAttack B2 Silenttitan N\nAttack G1 Silenttitan N\n\n45) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB R3 Ell-bore-oom\nB R3 Bestbuy\n\n46) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Hagar\n\n47) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Smellodoom\nBuild G3 Dlwillson\nBuild G3 Dlwillson\n\n48) SilentTitan: Sacrifice Y3 Redonk\nMove R2 Silenttitan Bluemoon\nMove R2 Bluemoon Hagar\nMove R2 Hagar Dlwillson\nCatastrophe Dlwillson Red\n\n49) dlwillson: Sacrifice Y1 Ell-bore-oom\nMove R3 Bestbuy Silenttitan\n\n50) SilentTitan: Trade Y1 R1 Bluemoon\n\n51) dlwillson: Sacrifice R3 Ell-bore-oom\nAttack B3 Silenttitan\nAttack B2 Silenttitan\nPass\n\tSilentTitan: good game.... I figured that was the best I could do in the face of such overwhelming odds...\n\n\tdlwillson: So, about those Wednesdays?\n\tSilentTitan: RUSH this Wednesday\n\nHomeworlds Online (SDG# 16963)\nStarted: 2010.7.27, Ended: 2010.7.31\nParticipants: mathochist (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n\tdlwillson: Learn to use &quot;My SDG&quot; to manage your games, dude.\n\nHomeworlds Online (SDG# 16964)\nStarted: 2010.7.27, Ended: 2010.8.25\nParticipants: dlwillson (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tdlwillson: Good to see you again. Hope all&#39;s well.\n\n4) dlwillson: Build G1 Dlwillson\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) TwoShort: Build Y1 Twoshort\n\n8) dlwillson: Build R1 Dlwillson\n\n9) TwoShort: Build Y1 Twoshort\n\n10) dlwillson: Discover R1 Dlwillson B1 Duct_tape\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) dlwillson: B G1 Dlwillson\n\n13) TwoShort: Build Y2 Twoshort\n\n14) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Duct_tape\nBuild R2 Duct_tape\nBuild R2 Dlwillson\n\n15) TwoShort: Build Y2 Grogar\n\n16) dlwillson: Build R3 Dlwillson\n\n17) TwoShort: Build Y3 Grogar\n\n18) dlwillson: D R3 Dlwillson B1 Wd40\n\n19) TwoShort: Sacrifice Y3 Grogar\nDiscover Y1 Twoshort Y3 Flip\nDiscover Y1 Twoshort Y3 Flap\nDiscover Y2 Twoshort Y3 Yelly\n\n20) dlwillson: B R3 Dlwillson\n\n21) TwoShort: Build G1 Twoshort\n\n22) dlwillson: Trade R2 G2 Duct_tape\n\n23) TwoShort: Trade G1 B1 Twoshort\n\n24) dlwillson: T R2 B2 Dlwillson\n\n25) TwoShort: Build B2 Twoshort\n\n26) dlwillson: B B3 Dlwillson\n\n27) TwoShort: Move Y2 Grogar Twoshort\n\n28) dlwillson: D B3 Dlwillson G1 Pliers\n\n29) TwoShort: Discover B2 Twoshort B3 Bluestar\n\n30) dlwillson: Discover B2 Dlwillson G1 Bfh\n\n31) TwoShort: Discover B1 Twoshort G3 Groundhog\n\n32) dlwillson:\nB G2 Dlwillson\n\n33) TwoShort: Build G2 Twoshort\n\tTwoShort: When I think I can definitely win a game, I like to calculate the maximum number of moves my opponent can hold me off for.  It&#39;s usually 3 or 4; one game recently was notable because it was 6.\r\n\r\nSo I&#39;m sorry to say, I think I&#39;ve got you here.  But if it&#39;s any consolation, this is a really cool game:  Unless I&#39;m mistaken, I can force victory, but it will take 23 moves!\n\n34) dlwillson: B R2 Dlwillson\n\tdlwillson: So, is there any way for me to have recovered after you popped the Y3 to control all the Y?\n\tTwoShort: I&#39;m not entirely sure, but probably not.  When I decided to do it I figured to be sure I could maneuver from here to victory without giving you a yellow I needed control of 3 blue, and second green ship.  Since then I realized  I also two non-blue-non-yellow 3-point stars.  I still can&#39;t figure out for sure if you could have denied me any of those in ways I couldn&#39;t overcome, but it looked pretty good...\n\n35) TwoShort: Move G2 Twoshort Flip\n\n36) dlwillson: Move R2 Dlwillson Pliers\n\n37) TwoShort: Move Y1 Flip Twoshort\n\n38) dlwillson: Build R2 Dlwillson\n\n39) TwoShort: Sacrifice G2 Flip\nBuild Y3 Grogar\nBuild G2 Twoshort\n\tdlwillson: 23 moves is a lot... :-)\n\tdlwillson: I don&#39;t suppose it&#39;ll take that long. I see all sorts of ways to accelerate my demise.\n\n40) dlwillson: Build R3 Duct_tape\n\n41) TwoShort: Move G2 Twoshort Yelly\n\n42) dlwillson: Sacrifice B2 Bfh\nTrade R1 G1 Duct_tape\nTrade R2 B2 Dlwillson\n\tdlwillson: I can&#39;t really move very much. Not even to retreat. So, if you invaded my 2-pip system with a 3-pip, I wouldn&#39;t be able to do anything to you, or get away, just as an example. Lesson from this game: TwoShort will work very hard to lock a fellow out of yellow, and knows how to use the advantage, once gained. Corollary: Don&#39;t get locked out of yellow.\n\n43) TwoShort: Discover Y2 Yelly R1 Roger\n\n44) dlwillson: Build R2 Dlwillson\n\tTwoShort: Without red, I can&#39;t do much to attack until I can cause catastrophes, so I don&#39;t want to make contact until I can finish you.  But now that you mention it, controlling a 1-point star probably saves me a turn or two.\r\n  But yeah, getting locked out of yellow is pretty certainly bad.  Sometimes the other guy can&#39;t get enough non-yellow stuff without giving one up.\n\n45) TwoShort: Sacrifice G2 Yelly\nBuild Y3 Roger\nBuild G2 Twoshort\n\n46) dlwillson: Pass\n\n47) TwoShort: Move Y2 Roger Bluestar\n\n48) dlwillson: Pass\n\tTwoShort: The r1 star helps a lot... 7 more moves I think.\n\n49) TwoShort: Move B2 Bluestar Roger\n\n50) dlwillson: Pass\n\n51) TwoShort: Sacrifice Y3 Roger\nMove B1 Groundhog Roger\nMove B1 Roger Dlwillson\nMove B2 Roger Dlwillson\nCatastrophe Dlwillson Blue\n\tTwoShort: Or 2...\n\n52) dlwillson: Trade B3 Y3 Pliers\n\tdlwillson: Ah, my problem is always insufficient attention to detail. I didn&#39;t realize that the cat blue would leave you ready for the cat yellow. Figured I had a turn or two to move. Oh well.\n\n53) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Dlwillson\nMove Y1 Flap Dlwillson\nMove Y2 Bluestar Dlwillson\nCatastrophe Dlwillson Yellow\n\tdlwillson: Good game. I learned.\n\tTwoShort: Thanks for the game!\n\n\nHomeworlds Online (SDG# 16979)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.28, Ended: 2010.8.17\nParticipants: dlwillson (S), shmil1 (N)\nWinner: dlwillson\n\n1) shmil1: Homeworld R3 B1 G3\n\n2) dlwillson: H G3 Y2 B3\n\n3) shmil1: Build G1 Shmil1\n\n4) dlwillson: Build B1 Dlwillson\n\n5) shmil1: Build G1 Shmil1\n\n6) dlwillson: Build B1 Dlwillson\n\n7) shmil1: Trade G1 Y1 Shmil1\n\n8) dlwillson: D B1 Dlwillson G1 Nearquat\n\n9) shmil1: Discover G1 Shmil1 Y2 Zluta\n\n10) dlwillson: Trade B3 G3 Dlwillson\n\n11) shmil1: Move G1 Zluta Nearquat\n\n12) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Nearquat\nBuild B2 Nearquat\nBuild B2 Dlwillson\n\n13) shmil1: Build G1 Nearquat\n\n14) dlwillson: B B3 Dlwillson\n\n15) shmil1: Trade G3 B3 Shmil1\n\n16) dlwillson: T B2 R2 Nearquat\n\n17) shmil1: Build G2 Nearquat\nCatastrophe Nearquat Green\n\n18) dlwillson: D B1 Dlwillson G1 Plan_b\n\n19) shmil1: Trade Y1 G1 Shmil1\n\n20) dlwillson: D B2 Dlwillson G1 Expansion\n\n21) shmil1: Build G2 Shmil1\n\n22) dlwillson: B B1 Dlwillson\n\n23) shmil1: Build B2 Shmil1\n\n24) dlwillson: Build B2 Expansion\n\n25) shmil1: Build G2 Shmil1\n\n26) dlwillson: Build B3 Plan_b\n\n27) shmil1: Trade B2 Y2 Shmil1\n\n28) dlwillson: T B3 Y3 Plan_b\n\n29) shmil1: Discover B3 Shmil1 Y2 Slunce\n\n30) dlwillson: Trade B3 R3 Dlwillson\n\n31) shmil1: Move B3 Slunce Expansion\n\n32) dlwillson: S Y3 Plan_b\nM R3 Dlwillson Expansion\nD R3 Expansion B2 Tempo\nM R3 Tempo Shmil1\n\n33) shmil1: Sacrifice B3 Expansion\nTrade G1 R1 Shmil1\nTrade G2 R2 Shmil1\nTrade G2 B2 Shmil1\nCatastrophe Shmil1 Red\n\n34) dlwillson: Build B3 Dlwillson\n\tshmil1: wow!\n\n35) shmil1: Move B2 Shmil1 Dlwillson\n\n36) dlwillson: Sacrifice B1 Dlwillson\nTrade B2 R2 Expansion\n\tdlwillson: I don&#39;t know why, but I thought I had you that turn. Nice job surviving! :-)\n\n37) shmil1: Build B1 Dlwillson\n\tdlwillson: Why do I never remember that connectivity changes with planet destruction?!? Grr me...\n\n38) dlwillson: Sacrifice R2 Expansion\nAttack B2 Dlwillson\nAttack B1 Dlwillson\n\tdlwillson: There, that should do it.\n\n39) shmil1: Trade Y2 G2 Shmil1\n\n40) dlwillson: Trade B2 R2 Dlwillson\n\n41) shmil1: Build G1 Shmil1\n\n42) dlwillson: Move B3 Dlwillson Shmil1\n\n43) shmil1: Trade G2 Y2 Shmil1\n\n44) dlwillson: Sacrifice R2 Dlwillson\nAttack Y2 Shmil1\nAttack G1 Shmil1\n\n\tdlwillson: Good game as always, Shmil1. Thank you.\n\nHomeworlds Online (SDG# 16998)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.28, Ended: 2010.7.30\nParticipants: dlwillson (S), Lurch (N)\nWinner: dlwillson\n\n1) Lurch: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\n3) Lurch: Build G1 Lurch\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Lurch: Trade G1 Y1 Lurch\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Lurch: Build Y2 Lurch\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Lurch: Trade Y1 B1 Lurch\n\n10) dlwillson: D Y1 Dlwillson B1 Change\n\n11) Lurch: Discover B1 Lurch G3 Alpha\n\n12) dlwillson: B G1 Dlwillson\n\n13) Lurch: Build G1 Lurch\n\n14) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Change\nBuild Y3 Change\nBuild Y3 Dlwillson\n\n15) Lurch: Move Y2 Lurch Alpha\n\n16) dlwillson: Trade Y1 R1 Change\n\n17) Lurch: Build Y1 Alpha\n\n18) dlwillson: D Y2 Dlwillson G1 Growth\n\n19) Lurch: Discover Y2 Alpha B1 Beta\n\n20) dlwillson: Sacrifice Y2 Growth\nMove Y3 Change Alpha\nMove Y3 Alpha Lurch\n\n21) Lurch: Trade G3 R3 Lurch\n\n22) dlwillson: Sacrifice R1 Change\nAttack R3 Lurch\n\n23) Lurch: Build G1 Lurch\n\tdlwillson: Tip #3(?): Whenever the other guy &quot;gets a gun&quot; (a red ship), get a gun of your own ASAP.\n\n24) dlwillson: Sacrifice R3 Lurch\nAttack G1 Lurch\nAttack G1 Lurch\nPass\n\n\nHomeworlds Online (SDG# 16986)\nStarted: 2010.7.30, Ended: 2010.8.11\nParticipants: Lurch (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Pass\n\n2) Lurch: Homeworld Y1 B2 G3\n\n3) rootbier: Homeworld Y1 G3 Y3 *\n\n4) Lurch: Build G1 Lurch\n\n5) rootbier: Build Y1 Rootbier\n\n6) Lurch: Trade G3 Y3 Lurch\n\n7) rootbier: Discover Y1 Rootbier G2 Bates\n\n8) Lurch: Build Y2 Lurch\n\n9) rootbier: Build Y2 Bates\n\n10) Lurch: Discover Y2 Lurch G3 Alpha\n\n11) rootbier: Discover Y1 Bates B3 Worth\n\n12) Lurch: Build Y2 Alpha\n\n13) rootbier: Trade Y1 B1 Worth\n\n14) Lurch: Build G1 Lurch\n\trootbier: I had to try that again. I feel there has to be some way to make that kind of early color lock work... but maybe I am just too hopeful. Or maybe only with certain colors.\n\n15) rootbier: Move Y2 Bates Worth\n\n16) Lurch: Trade G1 B1 Lurch\n\n17) rootbier: Sacrifice B1 Worth\nTrade Y3 B3 Rootbier\n\n18) Lurch: Move B1 Lurch Alpha\n\n19) rootbier: Build B1 Rootbier\n\n20) Lurch: Build B1 Alpha\n\n21) rootbier: Trade B1 R1 Rootbier\n\n22) Lurch: Trade Y2 R2 Alpha\n\n23) rootbier: Build R1 Rootbier\n\n24) Lurch: Build R1 Alpha\n\n25) rootbier: Discover R1 Rootbier G2 Flak\n\n26) Lurch: Discover B1 Alpha G2 Beta\n\n27) rootbier: Build R2 Flak\n\n28) Lurch: Move R2 Alpha Beta\n\n29) rootbier: Move Y2 Worth Flak\n\n30) Lurch: Build Y1 Alpha\n\n31) rootbier: Build Y2 Flak\n\n32) Lurch: Build Y3 Alpha\n\n33) rootbier: Move Y2 Flak Alpha\nCatastrophe Alpha Y\n\n34) Lurch: Trade R2 Y2 Beta\n\trootbier: Watch your limits, good sir.\n\n35) rootbier: Move R2 Flak Alpha\n\n36) Lurch: Trade Y2 R2 Beta\n\n37) rootbier: Attack B1 Alpha\n\tLurch: I thought you would be more concerned with my Homeworld.  But I guess it was an easy and low cost move for you.\n\n38) Lurch: Build R2 Beta\n\n39) rootbier: Build R3 Flak\n\trootbier: Low cost and now for whatever reason you traded a ship and traded it back. I&#39;d say I&#39;ve had a good couple rounds.\n\n40) Lurch: Trade R2 Y2 Beta\n\n41) rootbier: Discover R3 Flak G3 Intro\n\n42) Lurch: Build R2 Beta\n\n43) rootbier: Build R3 Rootbier\n\n44) Lurch: Build R3 Alpha\n\n45) rootbier: Sacrifice R1 Rootbier\nAttack R1 Alpha\n\n46) Lurch: Attack B1 Alpha\n\n47) rootbier: Build R1 Alpha\nCatastrophe Alpha R\n\n48) Lurch: Build Y1 Beta\n\n49) rootbier: Move R1 Flak Alpha\n\n50) Lurch: Build G1 Lurch\n\trootbier: I don&#39;t need to trade when I can build.\n\n51) rootbier: Build R1 Alpha\n\tLurch: I figured if you were going to cause a catastrophe at least I would still have the b1\n\n52) Lurch: Trade G1 R1 Lurch\n\trootbier: Of course - but was there really nothing more effective at that moment?\n\n53) rootbier: Build Y2 Flak\n\n54) Lurch: Discover G1 Lurch B3 Gama\n\n55) rootbier: Sacrifice Y2 Flak\nMove R1 Alpha Beta\nMove R1 Alpha Beta\nCatastrophe Beta R\n\n56) Lurch: Move Y1 Beta Alpha\n\n57) rootbier: Move Y2 Flak Intro\n\n58) Lurch: Build Y2 Beta\n\n59) rootbier: Build Y3 Intro\n\n60) Lurch: Build Y3 Alpha\n\n61) rootbier: Sacrifice Y2 Intro\nMove R3 Intro Lurch\nMove Y3 Intro Lurch\n\n62) Lurch: Attack R3 Lurch\n\n63) rootbier: Sacrifice R3 Rootbier\nAttack R3 Lurch\nAttack Y3 Lurch\nAttack R1 Lurch\n\n\nHomeworlds Online (SDG# 17002)\nVariants: &quot;Hard time&quot;\nStarted: 2010.7.30, Ended: 2010.8.31\nParticipants: Lurch (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Lurch: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Lurch: Build G1 Lurch\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Lurch: Trade G1 R1 Lurch\n\n7) dlwillson: B G1 Dlwillson\n\n8) Lurch: Build G1 Lurch\n\n9) dlwillson:\nT G1 B1 Dlwillson\n\n10) Lurch: Trade G1 Y1 Lurch\n\n11) dlwillson: B G1 Dlwillson\n\n12) Lurch: Build Y2 Lurch\n\n13) dlwillson: T G3 Y3 Dlwillson\n\n14) Lurch: Discover Y2 Lurch G3 Alpha\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) Lurch: Trade Y1 B1 Lurch\n\n17) dlwillson: Discover Y2 Dlwillson G2 Fungus\n\n18) Lurch: Move B1 Lurch Alpha\n\n19) dlwillson: B G1 Dlwillson\n\n20) Lurch: Build B1 Alpha\n\n21) dlwillson: M B1 Dlwillson Fungus\n\n22) Lurch: Discover B1 Alpha G2 Beta\n\n23) dlwillson: D G1 Dlwillson B2 Phosphor\n\n24) Lurch: Build B2 Beta\n\n25) dlwillson: B B3 Fungus\n\n26) Lurch: Build B3 Alpha\n\n27) dlwillson: Trade B3 G3 Fungus\n\n28) Lurch: Build B3 Beta\n\n29) dlwillson: S Y2 Fungus\nM B1 Fungus Alpha\nM B1 Alpha Beta\nC Beta B\n\n30) Lurch: Build B1 Alpha\n\n31) dlwillson: Build G1 Fungus\n\n32) Lurch: Build G2 Lurch\n\n33) dlwillson: S G3 Fungus\nB G2 Phosphor\nB G3 Dlwillson\nB Y1 Dlwillson\n\n34) Lurch: Discover B3 Alpha Y2 Beta\n\n35) dlwillson: Sacrifice Y1 Dlwillson\nDiscover G1 Fungus B3 Fluor\n\n36) Lurch: Discover G2 Lurch Y3 Gamma\n\n37) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Fluor\nBuild G3 Dlwillson\nBuild Y1 Dlwillson\n\n38) Lurch: Move G2 Gamma Beta\n\n39) dlwillson: M Y3 Dlwillson Phosphor\n\tdlwillson: Actually, you&#39;re doing a lot better this game. Rather than moving your G2 to a green planet and risking a catastrophe with supernova, consider sac&#39;ing the G2 to monopolize blue. Or, start trading your blues for other things you might want.\n\tdlwillson: catastrophe with supernova is bad, even if I have to give up a battleship to do it.\n\n40) Lurch: Move B1 Alpha Beta\n\tLurch: Lurch: Patiently waiting...\n\tdlwillson: When the green bank is low, consider leaving a little green near your G3, so you can rebuild your G3 from it after a sacrifice.\n\n41) dlwillson: T G1 B1 Phosphor\n\tdlwillson: Like that. I had two &quot;extra&quot; builds. The G2 build was needed to get me back to my G3, but I have a good place for it. Then, I could build a second R or a second Y. Before building a second Y, I made sure there wasn&#39;t an easy way for you to build both remaining Y.\n\n42) Lurch: Build B2 Alpha\n\tdlwillson: ... or cat Y in my home system. I have the three Y, but you don&#39;t have an extra Y to throw.\n\n43) dlwillson: Discover B1 Phosphor Y3 Lumen\n\n44) Lurch: Trade B3 R3 Beta\n\n45) dlwillson: T G1 R1 Fluor\n\n46) Lurch: Build B3 Beta\n\n47) dlwillson: Build R2 Fluor\n\n48) Lurch: Trade B3 Y3 Beta\n\tdlwillson: I did that move to prevent you from sac&#39;ing your Y2 to put both blues in and supernova the system, destroying my Y3. I&#39;d rather have traded one of the greens in fluor for red to get another red spot. Next turn I&#39;ll probably do that. Gosh, you have a lot of blue, and I have ~none~.  Hm. How can you take advantage of that?  Maybe you could trade your B3 for something tasty. I can&#39;t build it, and trading for it in my home system would slow me down. I might move a ship to it. Anyway, it&#39;s a thought.\n\n49) dlwillson: Sacrifice G1 Dlwillson\nBuild B3 Lumen\n\n50) Lurch: Trade Y3 R3 Beta\n\n51) dlwillson: Build G1 Dlwillson\n\n52) Lurch: Build R2 Lurch\n\tdlwillson: Sorry I&#39;m taking so long lately... Been busy/distracted.\n\tLurch: t b3 y3 beta\n\n53) dlwillson: Trade B1 G1 Lumen\n\tLurch: \n\tLurch: I didn&#39;t mean for that to be a comment.\n\n54) Lurch: Sacrifice Y2 Alpha\nMove R3 Beta Dlwillson\nMove R3 Beta Dlwillson\n\tdlwillson: So, I guess I can build it, I just have to be willing to sacrifice.\n\n55) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild G1 Fluor\nBuild G3 Dlwillson\nCatastrophe Dlwillson R\n\tLurch: Well there go my plans for world domination\n\n56) Lurch: Build B1 Beta\n\tdlwillson: OK, explain. To me, your first move looked much better than your second.\n\n57) dlwillson: Trade Y1 R1 Dlwillson\n\tdlwillson: Again, I build a small green next to the big green anytime I can safely do so, so that later, I can sac the big green and have a little green to rebuild it from.\n\n58) Lurch: Trade B1 Y1 Alpha\n\n59) dlwillson: Sacrifice Y3 Phosphor\nMove R1 Fluor Lurch\nMove R2 Fluor Lurch\nMove B3 Lumen Lurch\nCatastrophe Lurch R\n\n60) Lurch: Move B2 Alpha Beta\n\tdlwillson: Huh. I didn&#39;t notice you&#39;d moved in on me. I suppose I&#39;d better deal with that, rather than moving in on you, as I had originally planned.\n\n61) dlwillson: Sacrifice R1 Dlwillson\nAttack G3 Lurch\n\n\nHomeworlds Online (SDG# 17022)\nStarted: 2010.8.1, Ended: 2010.8.15\nParticipants: rootbier (S), Tank_7 (N)\nWinner: Tank_7\n\n1) Tank_7: Homeworld B1 R2 G3\n\n2) rootbier: Homeworld Y1 B2 G3\n\n3) Tank_7: Build G1 Tank_7\n\n4) rootbier: Build G1 Rootbier\n\n5) Tank_7: Build G1 Tank_7\n\n6) rootbier: Build G2 Rootbier\n\n7) Tank_7: Trade G1 Y1 Tank_7\n\n8) rootbier: Trade G2 Y2 Rootbier\n\n9) Tank_7: Discover G1 Tank_7 B3 Malfadoris\n\n10) rootbier: Trade G1 R1 Rootbier\n\n11) Tank_7: Trade G1 R1 Malfadoris\n\n12) rootbier: Build G1 Rootbier\n\n13) Tank_7: Build G1 Tank_7\n\n14) rootbier: Move Y2 Rootbier Malfadoris\n\n15) Tank_7: Sacrifice R1 Malfadoris\nPass\n\n16) rootbier: Build G1 Rootbier\n\n17) Tank_7: Trade G1 R1 Tank_7\n\n18) rootbier: Build R1 Rootbier\n\n19) Tank_7: Build Y1 Tank_7\n\tTank_7: Man I am a really weak player.\n\n20) rootbier: Sacrifice G1 Rootbier\nBuild Y2 Malfadoris\n\trootbier: ? What makes you say that right now. Ask if you have questions or need advice.\n\n21) Tank_7: Discover Y1 Tank_7 G3 Fyzan\n\tTank_7: The move I undid was a build green, you could have catastrophe&#39;d 3 of my ships and my only large ship.\n\n22) rootbier: Build R2 Rootbier\n\trootbier: Doesn&#39;t make you weak - you saw it - and responded ... oh - not so quickly. S&#39;alright - new does not equal weak. And you can blame me for putting us in a &quot;Cage Match&quot; (That&#39;s what I have been calling the close quarters homestar setups:) That takes some extra getting used to. End to end with a Y2.\r\n\r\n...so on the subject (of building things and tempting fate/disaster) are you absolutely sure you like your latest move?\n\tTank_7: Ah geeze I&#39;m overfocusing on the stash and trying to win at &quot;ship size wars&quot;\n\n23) Tank_7: Build Y2 Fyzan\n\n24) rootbier: Move R1 Rootbier Malfadoris\n\n25) Tank_7: Move R1 Tank_7 Fyzan\n\n26) rootbier: Sacrifice Y2 Malfadoris\nDiscover R1 Rootbier Y3 Pluma\nMove G1 Rootbier Pluma\n\n27) Tank_7: Build G1 Tank_7\n\n28) rootbier: Sacrifice G3 Rootbier\nBuild R2 Rootbier\nBuild R3 Pluma\nBuild R3 Malfadoris\n\trootbier: Malfadoris! Malfadoris! Malfadoris! That&#39;s the last time I let you name the stars :P\n\tTank_7: It&#39;s from Space Empires 3 or 4 sorry :) www.malfador.com\n\n29) Tank_7: Build R3 Fyzan\n\n30) rootbier: Trade R2 G2 Rootbier\n\trootbier: Just kidding :)\n\n31) Tank_7: Sacrifice Y2 Fyzan\nMove G3 Tank_7 Fyzan\nMove G3 Fyzan Rootbier\n\n32) rootbier: Sacrifice Y2 Malfadoris\nMove G1 Pluma Rootbier\nMove R1 Pluma Rootbier\n\n33) Tank_7: Sacrifice R3 Fyzan\nAttack R2 Rootbier\nAttack G2 Rootbier\nAttack G1 Rootbier\n\n\tTank_7: Before I found this website I was working on my own methods of playing Homeworlds online. One method involved the popular PC game Starcraft, and the other way was a .bmp (basic windows paint file) players could exchange over e-mail or I.M.\n\trootbier: Yeah - I am glad this system is here (I pretty much only play homeworlds here at this point). The &quot;chess by mail&quot; style definitely makes it easier to find time to play - but carries with it certain inherent drawbacks. I should use the notebook more - but when I actually do see something great it seems so clear that I always think I will remember it when I come back.\r\n\r\nIt won&#39;t let me take you out in a blaze of catastrophic kablooey. So. I will content myself with knowing I have two large red ships floating out there and eager to avenge the rootbier civilization.\n\nHomeworlds Online (SDG# 17035)\nStarted: 2010.8.1, Ended: 2010.8.10\nParticipants: bhorner (S), rootbier (N)\nWinner: bhorner\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) bhorner: Homeworld G2 B1 B3 *\n\n3) rootbier: Build G1 Rootbier\n\tbhorner: This was done to me once, not sure if it will work for me.  :)\n\trootbier: It can work alright with blue. I tried it with yellow recently and it failed hard.\n\n4) bhorner: Build B1 Bhorner\n\n5) rootbier: Trade G3 B3 Rootbier\n\n6) bhorner: Trade B3 Y3 Bhorner\n\n7) rootbier: Build B2 Rootbier\n\n8) bhorner: Discover B1 Bhorner G3 Other\n\n9) rootbier: Discover B2 Rootbier Y3 Slate\n\n10) bhorner: Trade Y3 R3 Bhorner\n\n11) rootbier: Build B2 Rootbier\n\n12) bhorner: Build B2 Other\n\n13) rootbier: Trade B3 G3 Rootbier\n\n14) bhorner: Trade B2 Y2 Other\n\n15) rootbier: Discover B2 Rootbier Y3 Sprout\n\n16) bhorner: Build R1 Bhorner\n\n17) rootbier: Trade G1 R1 Rootbier\n\n18) bhorner: Trade R1 Y1 Bhorner\n\n19) rootbier: Build G1 Rootbier\n\n20) bhorner: Build R1 Bhorner\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild B2 Slate\nBuild B3 Sprout\nBuild G1 Rootbier\n\n22) bhorner: Build B3 Other\n\n23) rootbier: Move B3 Sprout Rootbier\n\n24) bhorner: Discover R1 Bhorner B3 Tricky\n\n25) rootbier: Trade B3 G3 Rootbier\n\n26) bhorner: Discover B1 Other Y2 Jen\n\trootbier: I need to work on my &quot;Cage Match&quot; games (that&#39;s what I&#39;ve been calling the close home setups in my head). I think a strong red presence means a lot more in the tight quarters.\n\n27) rootbier: Sacrifice G1 Rootbier\nBuild B3 Sprout\n\tbhorner: I usually play with at least 3 people, so this is a different experience for me.  I like the lack of politics.  I think you&#39;re probably much more aware of important aspects than I am.\n\n28) bhorner: Trade R1 G1 Tricky\n\n29) rootbier: Move G1 Rootbier Sprout\n\n30) bhorner: Sacrifice G1 Tricky\nBuild B3 Other\n\trootbier: I was expecting you to cat my blues at home. Was a good opportunity for you.\r\n\r\nI have only played a couple 3/4 player games. Actually none of them have played through yet - with one of the four disappearing on each one (which leaves some weird ghost ships floating out there). So far they have all been pretty non-political. Are you talking about cutting deals and the like? I have been trying to stay away from that and as far as I can tell the same is true for my opponents. There is of course some amount of it in there no matter what. Like... if I move in this third ship - will the next guy throw in a fourth so we can be rid of those 3s there. Blah blah.\r\n\r\nI would like to play more larger ones. Mmm.\n\n31) rootbier: Trade B2 R2 Sprout\n\tbhorner: The politics comes in with the alignment cards...  &quot;Are you evil?&quot;, &quot;Are you good?&quot;  I don&#39;t know how they run multiplayer on this site.  We play pretty much daily at lunch, but no one will play me 1 v 1.\r\n\r\nI would have lost my big blue, and had little remaining offense if I cat&#39;ed half your home world...  I may not know how to finish very well...\n\n32) bhorner: Trade B1 G1 Jen\n\trootbier: Ahh you mean in person. Ok yeah. I think I would totally skip that and just play Sinister or last man standing.\r\n\r\nYou would have still had your R3 - and I would be very far from getting another 3. With the short distances I think you could have given me some real trouble. Once the other guy is 3less you&#39;ve got good chances.\n\n33) rootbier: Move R2 Sprout Jen\n\n34) bhorner: Discover G1 Jen Y3 Jenny\n\tbhorner: I didn&#39;t want to give it away, but I just did what I&#39;d been planning to do instead of cat&#39;ing your homeworld.  You could have stopped me if you&#39;d moved a ship there.\n\trootbier: I&#39;m not sure I see the one more 3 does for you that having me completely WITHOUT a 3 wouldn&#39;t have done. You&#39;re not in position to really threaten me with a blue cat problem invasion and  all I have to do to stop you from coming in hard with your two 3s is trade one of my B2s to R2.\r\n\r\nMaybe I&#39;m missing something. Suppose we&#39;ll find out.\n\n35) rootbier: Move R2 Jen Other\n\tbhorner: I was wracking my brain, and couldn&#39;t see a way out for you.  The trade to r2 solved the problem.  :)\n\n36) bhorner: Discover Y2 Other G2 Runaway\n\n37) rootbier: Move B2 Slate Runaway\n\n38) bhorner: Discover Y2 Runaway G3 Runtoward\n\n39) rootbier: Trade B3 R3 Sprout\n\n40) bhorner: Trade B3 R3 Other\n\n41) rootbier: Build R1 Other\n\n42) bhorner: Sacrifice Y1 Bhorner\nMove R3 Other Runaway\n\n43) rootbier: Sacrifice B2 Runaway\nTrade R2 Y2 Other\nTrade R1 G1 Rootbier\n\n44) bhorner: Build G2 Jenny\n\n45) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild R1 Other\nBuild R1 Sprout\n\n46) bhorner: Sacrifice Y2 Runtoward\nMove G2 Jenny Rootbier\nMove G1 Jenny Rootbier\nCatastrophe Rootbier Green\n\n\trootbier: I suppose that&#39;s what smelly old lithuanian surprise house guests will do - make you not see the simple threats in front of you. I am very very ashamed of myself for paying so little attention. Set up the rematch and watch out!\n\tbhorner: sorry I didn&#39;t see the new chat until just now...  you had smelly old lithuanian surprise house guests???  That seems like a major disadvantage.  :)  I&#39;ll set up the rematch right now.\n\nHomeworlds Online (SDG# 17038)\nStarted: 2010.8.1, Ended: 2010.8.18\nParticipants: rootbier (S), dlwillson (N)\nWinner: rootbier\n\n1) dlwillson: H B3 Y1 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) rootbier: Build G1 Rootbier\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) dlwillson: B Y2 Dlwillson\n\n8) rootbier: Build Y2 Rootbier\n\n9) dlwillson: D Y1 Dlwillson B2 Ebay\n\n10) rootbier: Discover Y1 Rootbier G3 Obol\n\n11) dlwillson: Move Y1 Ebay Obol\n\n12) rootbier: Build G1 Rootbier\n\n13) dlwillson: Move Y1 Obol Rootbier\n\n14) rootbier: Build Y3 Obol\n\tdlwillson: Oh, why not? I have no idea how this&#39;ll turn out, but let&#39;s try it. :-)\n\n15) dlwillson: Trade Y2 G2 Dlwillson\n\tdlwillson: That was not the out-of-scale, dramatic, and self-destructive response I was hoping for...  Now, I have to recover. Dang. :-)\n\n16) rootbier: Sacrifice Y2 Rootbier\nDiscover Y1 Obol B2 Ench\nMove Y3 Obol Ench\n\trootbier: Yeah - it&#39;s a little too early for freak out here.\n\n17) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Rootbier\nBuild G1 Dlwillson\n\n18) rootbier: Trade G1 R1 Rootbier\n\n19) dlwillson: Sacrifice G1 Dlwillson\nBuild Y2 Rootbier\nCatastrophe Rootbier Y\n\tdlwillson: How &#39;bout NOW?! Are you freaking out NOW!? ... :-) No, huh?\n\trootbier: Not really, no.\n\n20) rootbier: Move Y3 Ench Dlwillson\n\n21) dlwillson: Trade G3 R3 Dlwillson\n\tdlwillson: Drat.\n\n22) rootbier: Sacrifice R1 Rootbier\nAttack R3 Dlwillson\n\trootbier: Sorry.\n\tdlwillson: Nah, good fun game. How &#39;bout a ladder match? I seem to be right next to you now, and the three guys ahead of you haven&#39;t signed in for over a month...  :-/\n\n\trootbier: yeah. start us up. otherwise we could just take their spots by challenging them until they reach the force limit :P\n\nHomeworlds Online (SDG# 17036)\nStarted: 2010.8.1, Ended: 2010.8.7\nParticipants: rootbier (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G2 B1 R3\n\n2) rootbier: Homeworld Y1 B3 G3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) rootbier: Build G1 Rootbier\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) AdamBadura: Build Y2 Adambadura\n\n8) rootbier: Discover Y1 Rootbier G2 Banter\n\n9) AdamBadura: Discover Y2 Adambadura G3 Shipyard\n\n10) rootbier: Build Y2 Banter\n\n11) AdamBadura: Build Y2 Shipyard\n\n12) rootbier: Build G1 Rootbier\n\n13) AdamBadura: Build Y3 Adambadura\n\n14) rootbier: Discover Y2 Banter B3 Udi-2w\n\n15) AdamBadura: Move Y2 Shipyard Banter\n\n16) rootbier: Sacrifice G1 Rootbier\nBuild Y3 Udi-2w\n\n17) AdamBadura: Build Y3 Shipyard\n\n18) rootbier: Build G1 Rootbier\n\n19) AdamBadura: Build R1 Adambadura\n\n20) rootbier: Trade G1 B1 Rootbier\n\n21) AdamBadura: Sacrifice Y2 Shipyard\nMove Y3 Shipyard Banter\nMove Y3 Banter Rootbier\n\n22) rootbier: Sacrifice Y3 Udi-2w\nMove Y2 Udi-2w Banter\nMove Y2 Banter Rootbier\nMove Y1 Banter Rootbier\nCatastrophe Rootbier Y\n\n23) AdamBadura: Move Y3 Adambadura Rootbier\n\trootbier: I space walked myself into that one.\n\tAdamBadura: What are you thinging about for so long?\n\trootbier: The chaos of my life.\n\tAdamBadura: ;)\n\n\trootbier: Wasn&#39;t actually ever really even the very slightest possible chance you wouldn&#39;t use the new connection. Rematch me as not a space cadet (I hope).\n\nHomeworlds Online (SDG# 17033)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.1, Ended: 2010.8.9\nParticipants: captncavern (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) captncavern: Homeworld G3 B2 R3\n\n3) rootbier: Build G1 Rootbier\n\n4) captncavern: Build R1 Captncavern\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) captncavern: Trade R1 Y1 Captncavern\n\n7) rootbier: Build B1 Rootbier\n\n8) captncavern: Build R1 Captncavern\n\n9) rootbier: Discover B1 Rootbier G3 Bloke\n\n10) captncavern: Discover R1 Captncavern Y1 Boule\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild B2 Bloke\nBuild B2 Bloke\nBuild B3 Rootbier\n\n12) captncavern: Discover R1 Boule Y3 Passe\n\n13) rootbier: Sacrifice B2 Bloke\nTrade B3 G3 Rootbier\nTrade B2 R2 Bloke\n\n14) captncavern: Build Y1 Captncavern\n\n15) rootbier: Sacrifice G3 Rootbier\nBuild B2 Bloke\nBuild B2 Bloke\nBuild B3 Rootbier\n\n16) captncavern: Build R1 Captncavern\n\n17) rootbier: Trade B2 Y2 Bloke\n\n18) captncavern: Build Y1 Captncavern\n\n19) rootbier: Discover B2 Bloke G1 Flake\n\n20) captncavern: Discover Y1 Captncavern G1 Autre\n\n21) rootbier: Build B2 Bloke\n\n22) captncavern: Trade R3 G3 Captncavern\n\n23) rootbier: Build Y2 Bloke\n\n24) captncavern: Sacrifice G3 Captncavern\nBuild Y3 Autre\nBuild R1 Passe\nBuild R2 Captncavern\n\n25) rootbier: Build B3 Flake\n\n26) captncavern: Sacrifice Y1 Captncavern\nMove Y3 Autre Captncavern\n\n27) rootbier: Build B3 Flake\n\n28) captncavern: Move R2 Captncavern Autre\n\n29) rootbier: Sacrifice B2 Bloke\nTrade B3 R3 Flake\nTrade B3 Y3 Flake\n\n30) captncavern: Discover R2 Autre B3 Caillou\n\n31) rootbier: Build B2 Flake\n\n32) captncavern: Move Y1 Autre Caillou\n\n33) rootbier: Build B3 Flake\n\n34) captncavern: Trade Y3 G3 Captncavern\n\n35) rootbier: Sacrifice B3 Flake\nTrade B2 G2 Flake\nTrade B2 G2 Flake\nTrade B3 R3 Rootbier\n\n36) captncavern: Sacrifice G3 Captncavern\nBuild Y1 Caillou\nBuild Y3 Captncavern\nBuild R2 Caillou\n\n37) rootbier: Sacrifice Y2 Bloke\nMove Y2 Bloke Flake\nMove Y2 Flake Captncavern\n\n38) captncavern: Sacrifice Y3 Captncavern\nMove R1 Passe Rootbier\nMove R1 Passe Rootbier\nMove R2 Caillou Rootbier\n\n39) rootbier: Sacrifice R3 Flake\nAttack R1 Captncavern\nAttack Y1 Captncavern\nAttack R2 Rootbier\n\n\trootbier: you might have meant to call cat - but you can see it&#39;s too late for that to actuallt make a difference. thanks for the game.\n\tcaptncavern: Ah! I missed the fact you could attack me. I always overlook something as important as that.\r\nYou played better than I did the whole game, anyway.\r\n\n\trootbier: Sorry. I tend to like giving a lot of advice - but I decided not to on ladder matches. Have to have more pure competition somewhere :) It was hard to hold my tongue at moments.\n\tcaptncavern: Don&#39;t worry, I like the game, but I know I won&#39;t ever be good at it, even with all the advice anyone could give me. There are more possibilities and interactions than my brain can take.\n\nHomeworlds Online (SDG# 17034)\nStarted: 2010.8.2, Ended: 2010.8.8\nParticipants: rootbier (S), cleverpun (N)\nWinner: rootbier\n\n1) cleverpun: Homeworld Y1 B2 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\n3) cleverpun: Build G1 Cleverpun\n\n4) rootbier: Build G1 Rootbier\n\n5) cleverpun: Discover G1 Cleverpun R3 Milkyway\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) cleverpun: Build G1 Cleverpun\n\n8) rootbier: Build Y1 Rootbier\n\n9) cleverpun: Trade G3 Y3 Cleverpun\n\n10) rootbier: Discover Y1 Rootbier B3 Cage\n\n11) cleverpun: Build Y2 Cleverpun\n\n12) rootbier: Move Y1 Cage Cleverpun\nCatastrophe Cleverpun Y\n\n13) cleverpun: Build G1 Milkyway\n\n14) rootbier: Build G2 Rootbier\n\tcleverpun: doh, that&#39;s what I get for going for the large yellows\n\n15) cleverpun: Build G2 Cleverpun\n\trootbier: and here i was thinking - &quot;that&#39;s what you get for timing me out on our last game&quot;\n\n16) rootbier: Discover G2 Rootbier Y3 Nomin\n\n17) cleverpun: Trade G2 R2 Cleverpun\n\tcleverpun: Touche. The readout kept telling me that you had passed the time limit, but perhaps I was premature regardless.\n\trootbier: I was indeed out of time and beyond. Taking the win though -- that&#39;s just generally not the way we do it around here.\r\n\r\nIt&#39;s not like there is a maximum number of games you can have going and you need to clear space -- so people tend to lean towards patience.\n\n18) rootbier: Build G2 Rootbier\n\n19) cleverpun: Trade G1 Y1 Cleverpun\n\tcleverpun: Well, still being new to the system, I&#39;ll admit that it was a faux pas on my end.\r\n\r\nIf you want an admin to delete it I wouldn&#39;t object (is deleting them even possible?); a win by default isn&#39;t something to be proud of anyway.\n\trootbier: No no. Just keep playing. I&#39;ll whupp you slowly and then start giving nice advice on the next one :)\n\n20) rootbier: Move G3 Rootbier Nomin\n\n21) cleverpun: Move R2 Cleverpun Nomin\n\tcleverpun: Funny, I&#39;m usually the one doing that. Haven&#39;t been a newbie at a game in a while it seems. :D\n\n22) rootbier: Trade G2 R2 Rootbier\n\n23) cleverpun: Attack G2S Nomin\n\n24) rootbier: Sacrifice R2 Rootbier\nAttack R2 Nomin\nAttack G2 Nomin\n\n25) cleverpun: Sacrifice G1 Milkyway\nBuild Y1 Cleverpun\n\n26) rootbier: Move G3 Nomin Cleverpun\n\trootbier: Yeah. Definite n00bness on your side. Over in two.\n\n27) cleverpun: Trade Y1 G1 Cleverpun\n\n28) rootbier: Sacrifice R2 Nomin\nAttack Y1 Cleverpun\nAttack G1 Cleverpun\n\n\trootbier: Just grab yourself a rematch from the standing challenges and I&#39;ll fill you in a bit.\n\nHomeworlds Online (SDG# 16995)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.2, Ended: 2010.8.5\nParticipants: killbyll (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 17037)\nStarted: 2010.8.2, Ended: 2010.11.30\nParticipants: SilentTitan (S), rootbier (N)\nWinner: SilentTitan\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) rootbier: Build B2 Rootbier\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) rootbier: Build G1 Rootbier\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) rootbier: Discover B1 Rootbier G3 Starve\n\n12) SilentTitan: Trade B2 Y2 Silenttitan\n\n13) rootbier: Trade B2 Y2 Rootbier\n\n14) SilentTitan: Discover B1 Silenttitan G1 Burtblack\n\n15) rootbier: Build G2 Rootbier\n\n16) SilentTitan: Build G2 Silenttitan\n\n17) rootbier: Build B2 Starve\n\n18) SilentTitan: Build Y1 Silenttitan\n\n19) rootbier: Discover G1 Rootbier B3 Tail\n\n20) SilentTitan: Trade G1 R1 Silenttitan\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild G1 Rootbier\nBuild G2 Tail\nBuild G3 Rootbier\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Burtblack Starve\nMove B1 Starve Rootbier\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild G1 Tail\nBuild G3 Rootbier\nBuild B2 Starve\n\n24) SilentTitan: Trade B1 Y1 Rootbier\n\n25) rootbier: Sacrifice B2 Starve\nTrade Y2 R2 Rootbier\nTrade G2 Y2 Tail\n\n26) SilentTitan: Sacrifice Y1 Rootbier\nDiscover G2 Silenttitan Y1 Scamper\n\n27) rootbier: Sacrifice Y2 Tail\nDiscover B1 Starve Y1 Pluma\nMove G1 Tail Pluma\n\n28) SilentTitan: Build G2 Scamper\n\n29) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild B1 Starve\nBuild B2 Pluma\n\n30) SilentTitan: Sacrifice G2 Scamper\nBuild G2 Silenttitan\nBuild Y2 Silenttitan\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild G3 Tail\nBuild B3 Pluma\nBuild B3 Starve\n\n32) SilentTitan: Sacrifice Y2 Silenttitan\nMove R1 Silenttitan Pluma\nDiscover G2 Scamper Y3 Plume\n\n33) rootbier: Sacrifice B3 Starve\nTrade G2 Y2 Rootbier\nTrade B2 G2 Pluma\nTrade G3 Y3 Tail\n\n34) SilentTitan: Attack G1 Pluma North\n\n35) rootbier: Sacrifice Y3 Tail\nMove G2 Pluma Silenttitan\nMove G1 Tail Pluma\nMove G1 Pluma Silenttitan\nCatastrophe Silenttitan G\n\n36) SilentTitan: Move G1 Pluma Silenttitan\n\n\nHomeworlds Online (SDG# 16997)\nStarted: 2010.8.4, Ended: 2010.8.15\nParticipants: daselva (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n2) daselva: Homeworld G1 Y2 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) daselva: Build B1 Daselva\n\n5) TwoShort: Build G1 Twoshort\n\n6) daselva: Trade B3 G3 Daselva\n\n7) TwoShort: Trade G3 Y3 Twoshort\n\n8) daselva: Trade B1 R1 Daselva\n\n9) TwoShort: Build G2 Twoshort\n\n10) daselva: Build R1 Daselva\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) daselva: Discover R1 Daselva B3 S1\n\n13) TwoShort: Build G2 Bluonia\n\n14) daselva: Build R2 Daselva\n\n15) TwoShort: Trade G2 Y2 Bluonia\n\n16) daselva: Move R2 Daselva S1\n\n17) TwoShort: Build G2 Bluonia\n\n18) daselva: Trade R1 Y1 S1\n\n19) TwoShort: Trade G2 R2 Bluonia\n\n20) daselva: Trade R2 B2 S1\n\n21) TwoShort: Build G2 Bluonia\n\n22) daselva: Move B2 S1 Daselva\n\n23) TwoShort: Move G2 Bluonia S1\n\n24) daselva: Trade G3 Y3 Daselva\n\n25) TwoShort: Build G2 S1\n\n26) daselva: Build R1 Daselva\n\n27) TwoShort: Sacrifice G2 S1\nBuild G2 Bluonia\nBuild G3 S1\n\n28) daselva: Move R1 Daselva S1\n\n29) TwoShort: Sacrifice G3 S1\nBuild G3 S1\nBuild G3 S1\nBuild R2 Bluonia\n\n30) daselva: Build B1 Daselva\n\n31) TwoShort: Sacrifice Y2 Bluonia\nMove G3 S1 Daselva\nMove G3 S1 Daselva\n\n32) daselva: Build B1 Daselva\n\n33) TwoShort: Sacrifice R2 Bluonia\nAttack Y3 Daselva\nAttack B2 Daselva\n\n34) daselva: Build R2 Daselva\n\n35) TwoShort: Sacrifice G3 Daselva\nBuild Y1 Daselva\nBuild Y1 Daselva\nBuild G3 Daselva\n\n36) daselva: Pass\n\n37) TwoShort: Build G3 Daselva\nCatastrophe Daselva Yellow\nCatastrophe Daselva Green\n\n\tTwoShort: Thanks for the game.\n\nHomeworlds Online (SDG# 17053)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.4, Ended: 2010.9.20\nParticipants: AdamBadura (S), ZackStack (N)\nWinner: AdamBadura\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Thanks for the challenge!  Have a good game.\n\n2) AdamBadura: Homeworld G1 B2 R3\n\n3) ZackStack: Build G1 Zackstack\n\tAdamBadura: I think I will lose this one (considering your rank) but let us see... ;)\n\tZackStack: We can only take one game at a time around here ;-)\n\n4) AdamBadura: Build R1 Adambadura\n\n5) ZackStack: Trade G1 R1 Zackstack\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) ZackStack: Build G1 Zackstack\n\n8) AdamBadura: Build R1 Adambadura\n\n9) ZackStack: Build R2 Zackstack\n\n10) AdamBadura: Build R2 Adambadura\n\n11) ZackStack: Trade R2 Y2 Zackstack\n\n12) AdamBadura: Discover R1 Adambadura G3 Shipyard\n\n13) ZackStack: Move Y2 Zackstack Shipyard\n\n14) AdamBadura: Trade R2 Y2 Adambadura\n\tZackStack: Hmmm... I haven&#39;t played two jumps away in a while. This could get interesting :-)\n\n15) ZackStack: Sacrifice R1 Zackstack\nAttack R1 Shipyard\n\n16) AdamBadura: Build R1 Adambadura\n\n17) ZackStack: Build R2 Shipyard\n\n18) AdamBadura: Discover R1 Adambadura G3 Drydocks\n\n19) ZackStack: Build R2 Shipyard\n\n20) AdamBadura: Move Y1 Adambadura Drydocks\n\n21) ZackStack: Sacrifice Y2 Shipyard\nMove R1 Shipyard Adambadura\nMove R2 Shipyard Adambadura\n\n22) AdamBadura: Sacrifice R3 Adambadura\nAttack R1 Adambadura\nAttack R2 Adambadura\nPass\n\n23) ZackStack: Build G1 Zackstack\n\tZackStack: Blowing your large seemed worth it... we&#39;ll see!\n\tZackStack: To me I mean... :-)\n\n24) AdamBadura: Build R2 Drydocks\n\tAdamBadura: Yes. I think you gained advantage. But I had no other choice as all other ways I could think of would give you victory rather than advantage... ;)\n\n25) ZackStack: Trade G1 Y1 Zackstack\n\n26) AdamBadura: Discover R1 Adambadura Y3 Outpost\n\n27) ZackStack: Build R3 Shipyard\n\tZackStack: Now I just need to find a clever way to exploit that advantage :-)\n\n28) AdamBadura: Build R3 Adambadura\n\n29) ZackStack: Trade G1 B1 Zackstack\n\n30) AdamBadura: Discover R1 Drydocks Y1 Ontheway\n\tZackStack: So much for taking advantage :-)\n\n31) ZackStack: Move B1 Zackstack Shipyard\n\n32) AdamBadura: Build R3 Drydocks\n\n33) ZackStack: Build Y2 Zackstack\n\n34) AdamBadura: Build Y2 Drydocks\n\n35) ZackStack: Sacrifice Y2 Zackstack\nMove Y1 Zackstack Shipyard\nMove R2 Shipyard Adambadura\n\n36) AdamBadura: Sacrifice R2 Adambadura\nAttack R2 Adambadura\nPass\n\n37) ZackStack: Build G1 Zackstack\n\n38) AdamBadura: Build R2 Drydocks\n\tZackStack: Very nice counter move!\n\n39) ZackStack: Trade G1 B1 Zackstack\n\tAdamBadura: Yes. I learned that trick some time ago. But it is second time I do it in this game. I thought you had some clever plan beyond it.\n\tAdamBadura: We are playing too safe. I wonder how will this end... ;)\n\n40) AdamBadura: Build Y2 Drydocks\n\tZackStack: So far clever plans are overrated in this particular game.  And for some reason I saw it coming the first time but not the second :-)\n\n41) ZackStack: Build Y3 Shipyard\n\n42) AdamBadura: Sacrifice Y2 Drydocks\nMove R2 Drydocks Zackstack\nMove R2 Drydocks Zackstack\n\n43) ZackStack: Build B1 Shipyard\n\n44) AdamBadura: Attack B1 Zackstack\n\tAdamBadura: I&#39;m going on a leave from 2010-09-04 to 2010-09-11 inclusive.\n\n45) ZackStack: Attack R2 Zackstack\n\tZackStack: Enjoy your leave!\n\n46) AdamBadura: Move R1 Outpost Zackstack\nCatastrophe Zackstack R\n\n47) ZackStack: Build R1 Shipyard\n\n48) AdamBadura: Sacrifice Y2 Drydocks\nMove R1 Ontheway Shipyard\nMove R2 Adambadura Shipyard\nCatastrophe Shipyard R\n\n\tAdamBadura: What is keeping you from playing?\n\nHomeworlds Online (SDG# 17066)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.5, Ended: 2010.8.18\nParticipants: SilentTitan (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) SilentTitan: Homeworld Y3 G1 B3\n\n3) zoltar: Build G1 Zoltar\n\tSilentTitan: this ought to be interesting\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) zoltar: Build G1 Zoltar\n\n6) SilentTitan: Discover B1 Silenttitan G2 Wondertoe\n\n7) zoltar: Trade G3 Y3 Zoltar\n\n8) SilentTitan: Build B1 Wondertoe\n\n9) zoltar: Build G2 Zoltar\n\n10) SilentTitan: Build B1 Silenttitan\n\n11) zoltar: Discover G1 Zoltar Y1 Yellowstone\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) zoltar: Trade G2 B2 Zoltar\n\n14) SilentTitan: Trade B2 Y2 Silenttitan\n\n15) zoltar: Move B2 Zoltar Yellowstone\n\n16) SilentTitan: Discover B1 Silenttitan G2 Mymy\n\n17) zoltar: Build G2 Yellowstone\n\n18) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B1 Wondertoe Y1 Riff\nDiscover B1 Wondertoe Y1 Raff\n\n19) zoltar: Discover G2 Yellowstone B2 Blueridge\n\n20) SilentTitan: Trade B3 R3 Silenttitan\n\n21) zoltar: Build G2 Blueridge\n\n22) SilentTitan: Build R1 Silenttitan\n\n23) zoltar: Build G3 Zoltar\n\n24) SilentTitan: Build B2 Mymy\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\nBuild B3 Yellowstone\n\n26) SilentTitan: Trade B2 Y2 Mymy\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueridge\nBuild Y2 Zoltar\n\tSilentTitan: wow I just suck at this game ... I&#39;m sorry for the poor play.\n\tzoltar: You&#39;ve gotten into trouble really early somehow in this game. I think green and yellow stars in one&#39;s homeworld don&#39;t work well, and that blue/red is the best combination to use.\n\tSilentTitan: I think you are exactly right.\n\n28) SilentTitan: Build Y2 Mymy\n\n29) zoltar: Sacrifice B3 Yellowstone\nTrade G3 Y3 Blueridge\nTrade G2 R2 Blueridge\nTrade G3 R3 Yellowstone\n\n30) SilentTitan: Sacrifice B1 Mymy\nTrade R3 B3 Silenttitan\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueridge\nBuild G3 Yellowstone\nBuild G3 Zoltar\n\n32) SilentTitan: Build B1 Silenttitan\n\n33) zoltar: Sacrifice Y3 Zoltar\nMove G3 Yellowstone Blueridge\nMove G3 Blueridge Silenttitan\nMove Y3 Blueridge Silenttitan\n\n34) SilentTitan: Attack G3 Silenttitan North\n\n35) zoltar: Sacrifice R2 Blueridge\nAttack B3 Silenttitan\nAttack G3 Silenttitan\n\n36) SilentTitan: Sacrifice Y2 Mymy\nMove B1 Riff Zoltar\nMove B1 Raff Zoltar\n\n37) zoltar: Sacrifice R3 Yellowstone\nAttack B1 Zoltar\nAttack B1 Zoltar\nAttack R1 Silenttitan\n\n38) SilentTitan: Move Y2 Mymy Silenttitan\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild Y1 Silenttitan\nCatastrophe Silenttitan Y\nCatastrophe Silenttitan G\n\n\tzoltar: Good game.\n\tSilentTitan: yes... well I learned a lot ... prolly boring for you tho\n\nHomeworlds Online (SDG# 17007)\nStarted: 2010.8.5, Ended: 2012.2.27\nParticipants: rootbier (S), TofuInjection (N)\nWinner: rootbier\n\n1) TofuInjection: Homeworld B2 G1 Y3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) TofuInjection: Build Y1 Tofuinjection\n\n4) rootbier: Build G1 Rootbier\n\n5) TofuInjection: Discover Y1 Tofuinjection G3 Porkslap\n\trootbier: Like the name. Welcome to the site and the game. Have you played offline?\n\tTofuInjection: thanks. I have a few times.  You?\n\n6) rootbier: Build G1 Rootbier\n\trootbier: I have a 5 treehouse sets - have only managed one-on-one games so far. And playing a bunch here. Still learning/honing for sure - and occasionally overlook/space-out really obvious direct threats.\n\n7) TofuInjection: Build Y1 Porkslap\n\n8) rootbier: Trade G1 Y1 Rootbier\n\n9) TofuInjection: Build Y2 Tofuinjection\n\n10) rootbier: Discover Y1 Rootbier G2 Curran\n\n11) TofuInjection: Trade Y2 B2 Tofuinjection\n\n12) rootbier: Build Y2 Curran\n\n13) TofuInjection: Move B2 Tofuinjection Porkslap\n\n14) rootbier: Discover Y1 Curran G3 Alvin\n\n\nHomeworlds Online (SDG# 17024)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.5, Ended: 2010.8.26\nParticipants: daselva (S), TofuInjection (N)\nWinner: daselva\n\n1) TofuInjection: Homeworld Y3 G1 B3\n\n2) daselva: Homeworld R1 G2 B3\n\n3) TofuInjection: Build B1 Tofuinjection\n\n4) daselva: Build B1 Daselva\n\n5) TofuInjection: Discover B1 Tofuinjection G2 Porkslap\n\n6) daselva: Trade B3 Y3 Daselva\n\n7) TofuInjection: Build B1 Porkslap\n\n8) daselva: Build B2 Daselva\n\n9) TofuInjection: Build B2 Tofuinjection\n\n10) daselva: Trade B1 G1 Daselva\n\n11) TofuInjection: Trade B1 Y1 Porkslap\n\n12) daselva: Discover B2 Daselva G3 S2\n\n13) TofuInjection: Trade B3 R3 Tofuinjection\n\n14) daselva: Build B1 S2\n\n15) TofuInjection: Build Y1 Porkslap\n\n16) daselva: Trade B2 Y2 S2\n\n17) TofuInjection: Trade Y1 R1 Porkslap\n\n18) daselva: Discover Y2 S2 G2 S3\n\n19) TofuInjection: Build Y1 Porkslap\n\n20) daselva: Build Y1 S3\n\n\nHomeworlds Online (SDG# 17046)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.7, Ended: 2010.8.14\nParticipants: TofuInjection (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) TofuInjection: Homeworld Y1 G2 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TofuInjection: Build B1 Tofuinjection\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 17011)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.7, Ended: 2010.8.8\nParticipants: TofuInjection (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 17088)\nVariants: &quot;No undo&quot;\nStarted: 2010.8.8, Ended: 2010.12.6\nParticipants: rootbier (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld B1 G2 R3\n\n2) rootbier: Homeworld Y1 B3 G3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) rootbier: Build G1 Rootbier\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) AdamBadura: Build Y2 Adambadura\n\n8) rootbier: Build Y2 Rootbier\n\n9) AdamBadura: Discover Y2 Adambadura G3 Shipyard\n\n10) rootbier: Discover Y1 Rootbier G2 Drydock\n\n11) AdamBadura: Build Y2 Adambadura\n\n12) rootbier: Build Y3 Drydock\n\n13) AdamBadura: Build Y3 Shipyard\n\n14) rootbier: Build G1 Rootbier\n\n15) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Shipyard Drydock\nMove Y3 Drydock Rootbier\n\n16) rootbier: Build Y2 Rootbier\nCatastrophe Rootbier Y\n\trootbier: guess i did it again. you have found my very clear weakness.\n\n17) AdamBadura: Build R1 Adambadura\n\trootbier: i must say that i find your backlash against my needing extra time on the last game (no undo/very short clock) to be more than a little off-putting. i&#39;d go so far as to say it seems childishly vindicative.\n\tAdamBadura: I didn&#39;t temper with time. It was a default one. I shut off Undo indeed. Actually for no reason. Or to be more specific we decided to play so with my friends. I even actually prefer to play with Undo. But still mechanically I turned it off. Sorry for that. Next time I will try to remember that you prefer Undo.\n\tAdamBadura: As for your style of playing. I think you keep making a mistake of not having R technology. I prefer to have R3 ship in my homeworld. But an R1 builded later will do as well in many cases. But you have not R ship at all...\n\n18) rootbier: Trade G1 R1 Rootbier\n\trootbier: Standard clock is 3(start)/1(inc)/10(max) -- you must have accidentally bumped of the &quot;0&quot; at the end. It looked pushy after our previous conversation about time and thinking and life chaos. Sorry for the accusation.\r\n\r\nAnd yeah I&#39;m simply not used to no-undo -- I find it too hard to visualize certain things online.\r\n\r\nI am in no way unclear on the way I have been screwing up. And I know how to defend myself -- used to always grab myself an r1 at home... but lately I have been shying more and more away from red. I simply don&#39;t like the color :D \r\nVery few people have made anything out of it - but then I think most don&#39;t start with an R3.\n\trootbier: or.... not too hard to visualize ... but too easy to miss certain things.\n\n19) AdamBadura: Move R1 Adambadura Shipyard\n\n20) rootbier: Build G1 Rootbier\n\n21) AdamBadura: Build Y1 Shipyard\n\n22) rootbier: Move Y1 Drydock Rootbier\n\n23) AdamBadura: Move Y1 Shipyard Drydock\n\n24) rootbier: Discover Y3 Drydock G3 Flunk\n\n25) AdamBadura: Build R1 Shipyard\n\n26) rootbier: Build Y2 Flunk\n\n27) AdamBadura: Build Y2 Drydock\n\n28) rootbier: Build R2 Rootbier\n\n29) AdamBadura: Build Y3 Adambadura\n\n30) rootbier: Sacrifice Y3 Flunk\nMove Y2 Flunk Adambadura\nMove Y1 Rootbier Adambadura\nDiscover G1 Rootbier B2 Baoon\n\n31) AdamBadura: Move R1 Shipyard Drydock\nCatastrophe Adambadura Y\n\trootbier: GAH! No undo! and I forgot to trigger my cat cuz i spent so long deciing on the non-yellow move action. I would take it as a real kindness if you would consider those yellow ships at home dead and trigger the cat yourself at the end of the turn.\n\tAdamBadura: OK, I will.\n\n32) rootbier: Trade R1 Y1 Rootbier\n\trootbier: Thank you kind sir.\n\n33) AdamBadura: Build Y1 Shipyard\n\n34) rootbier: Build Y2 Rootbier\n\n35) AdamBadura: Move Y1 Shipyard Adambadura\n\n36) rootbier: Discover Y1 Rootbier G1 Pip\n\n37) AdamBadura: Build Y3 Adambadura\n\n38) rootbier: Build Y3 Pip\n\n39) AdamBadura: Build Y3 Shipyard\n\n40) rootbier: Sacrifice Y2 Rootbier\nMove Y3 Pip Rootbier\nDiscover G1 Baoon B3 Palome\n\n41) AdamBadura: Move R1 Shipyard Pip\n\n42) rootbier: Sacrifice G3 Rootbier\nBuild G1 Palome\nBuild G2 Palome\nBuild Y2 Pip\n\n43) AdamBadura: Attack Y1 Pip\n\n\tAdamBadura: I&#39;m going on a leave from 2010-09-04 to 2010-09-11 inclusive.\n\tAdamBadura: You ignored both the game and me so I forced your surrender.\n\nHomeworlds Online (SDG# 17091)\nStarted: 2010.8.8, Ended: 2012.2.27\nParticipants: Galaxian (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\tGalaxian: homeworld B2 Y1 G3\n\tGalaxian: Sorry, I&#39;m new here.\n\trootbier: No problem. New is fine. Have you played the game offline?\r\n\r\nYour move is properly coded... but this is the chat area. You need to put your move in the box up at the top of the page... on the left side. You can also just use the first letters for commands. &quot;h b2 y2 g3&quot; is valid.\r\n\r\nIf you have never played - just ask for help. It&#39;s much more fun to teach as I go than to just play to win.\n\n2) Galaxian: Homeworld B3 Y2 G3\n\trootbier: Now it is your turn and you can build your homeworld. You probably want a home system with two different size stars for now. Get tricky later.\n\n3) rootbier: Build G1 Rootbier\n\tGalaxian: Thanks!  I have played offline before, but I&#39;m not very good at it.\n\trootbier: Be aware that your choice of star sizes puts us very close. It is only two steps from your home to mine instead of the more standard three steps. \r\n\r\nThis is okay - but it makes for a &quot;faster&quot; game.\r\n\r\nAsk questions :) Or even just think out loud and I will help you talk/think through stuff or can tell you if your strategies/ways of thinking about the game seem sound.\n\tGalaxian: Yeah, sorry about that.  I just noticed it.\n\trootbier: Do you want to go on with that or do you want to undo and choose another size star?\n\n4) Galaxian: Build G1 Galaxian\n\tGalaxian: Oh.  I didn&#39;t know I could do that.  There you go.\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) Galaxian: Trade G1 Y1 Galaxian\n\n7) rootbier: Build B1 Rootbier\n\n8) Galaxian: Build G1 Galaxian\n\n9) rootbier: Discover B1 Rootbier G3 Wamel\n\n10) Galaxian: Build Y1 Galaxian\n\n11) rootbier: Build B2 Wamel\n\n12) Galaxian: Discover Y1 Galaxian G1 Alpha\n\n13) rootbier: Build B2 Wamel\n\n14) Galaxian: Build Y1 Alpha\n\n15) rootbier: Build B2 Rootbier\n\n16) Galaxian: Build Y2 Alpha\n\n17) rootbier: Discover B1 Rootbier Y3 Stone\n\n18) Galaxian: Build Y3 Galaxian\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild B3 Rootbier\nBuild B3 Stone\nPass\n\n20) Galaxian: Discover Y1 Alpha Y3 Beta\n\n21) rootbier: Discover B3 Stone G1 Prodigal\n\n\nHomeworlds Online (SDG# 17069)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.9, Ended: 2010.10.26\nParticipants: johannz (S), enochroot (N)\nWinner: johannz\n\n1) enochroot: Homeworld B1 Y3 G3\n\n2) johannz: Homeworld Y1 B2 G3\n\tjohannz: Oh, the beauty and simplicity of your opening move. It moves me to tears.\r\nHow will I ever hope to stand against you?\r\n:)\n\n3) enochroot: Build G1 Enochroot\n\n4) johannz: Build G1 Johannz\n\n5) enochroot: Trade G1 Y1 Enochroot\n\n6) johannz: Discover G1 Johannz Y3 Prima\n\n7) enochroot: Build Y1 Enochroot\n\n\nHomeworlds Online (SDG# 17123)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.11, Ended: 2010.8.17\nParticipants: captncavern (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) captncavern: Homeworld B3 R1 G3\n\tdlwillson: Excellent! Thank you, Captain!\n\tdlwillson: BTW, how&#39;d you come up with your nickname/call-sign?\n\tcaptncavern: I&#39;m here for the games, you know ;)\r\nMy nickname comes from when I was long-haired and had a beard... like the cartoon character that&#39;s called &quot;Capitaine Caverne&quot; in France.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) captncavern: Build G1 Captncavern\n\tdlwillson: I know Captain Caveman; I used to love that cartoon character! The gals called him Cavey Wavey when they were trying to get him to do things, and when he was buffing, he yelled, &quot;CAP TEN CAVE MA-AAAN!&quot;\n\tcaptncavern: That&#39;s the guy :) That used to be me... although I didn&#39;t have any girl calling me with cute names!\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) captncavern: Trade G1 Y1 Captncavern\n\n7) dlwillson: Build G1 Dlwillson\n\n8) captncavern: Build Y1 Captncavern\n\n9) dlwillson: B R1 Dlwillson\n\n10) captncavern: Trade Y1 B1 Captncavern\n\n11) dlwillson: B R2 Dlwillson\n\n12) captncavern: Build Y1 Captncavern\n\n13) dlwillson: D R1 Dlwillson B1 Frob\n\n14) captncavern: Build Y1 Captncavern\n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Frob\nBuild R2 Dlwillson\nBuild R3 Frob\n\n16) captncavern: Discover Y1 Captncavern G2 Bille\n\n17) dlwillson: D R2 Dlwillson G1 Grok\n\n18) captncavern: Discover Y1 Bille G1 Pomme\n\n19) dlwillson: B R3 Dlwillson\n\n20) captncavern: Build G2 Captncavern\n\n21) dlwillson: Trade R3 Y3 Dlwillson\n\n22) captncavern: Build Y2 Pomme\n\n23) dlwillson: M Y3 Dlwillson Grok\n\n24) captncavern: Sacrifice G3 Captncavern\nBuild Y2 Pomme\nBuild Y3 Captncavern\nBuild G2 Captncavern\n\n25) dlwillson: B R3 Dlwillson\n\n26) captncavern: Discover Y1 Captncavern B2 Truc\n\n27) dlwillson: T R3 Y3 Frob\n\n28) captncavern: Sacrifice B1 Captncavern\nTrade Y2 G2 Pomme\n\n29) dlwillson: B R3 Grok\n\n30) captncavern: Sacrifice G2 Captncavern\nBuild Y2 Truc\nBuild G2 Captncavern\n\n31) dlwillson: B R3 Grok\n\n32) captncavern: Discover Y1 Truc B1 Patate\n\n33) dlwillson: M R3 Grok Truc\n\n34) captncavern: Sacrifice Y2 Truc\nMove Y1 Pomme Dlwillson\nMove Y1 Patate Dlwillson\n\n35) dlwillson: Sacrifice Y3 Grok\nMove R3 Grok Truc\nMove R3 Truc Captncavern\nMove R3 Truc Captncavern\n\n36) captncavern: Trade Y1 B1 Dlwillson\n\n37) dlwillson: Sacrifice R3 Captncavern\nAttack Y3 Captncavern\nAttack Y1 Dlwillson\nAttack B1 Dlwillson\n\n38) captncavern: Build G3 Captncavern\n\tdlwillson: I think this game is mine next turn or the turn after. If you&#39;re interested in a friendly game after this one, let me know.\n\n39) dlwillson: Sacrifice R3 Captncavern\nAttack G3 Captncavern\nAttack G2 Captncavern\nAttack G2 Captncavern\n\tcaptncavern: Indeed! It&#39;s been a long time since I won a game of Homeworlds... Maybe a friendly game wouldn&#39;t hurt :)\n\n40) captncavern: Sacrifice Y2 Pomme\nDiscover G2 Pomme Y2 Last\nMove G2 Last Captncavern\nCatastrophe Captncavern G\n\n41) dlwillson: Attack Y1 Captncavern\n\tcaptncavern: At least, I&#39;m bringing down quite a few of your ships with me :)\r\nPlease don&#39;t mention most of them were mine only seconds before...\n\tdlwillson: Thanks for the fast turns, Captain. I notice you play a lot of other games here, too. May I offer a trade? You teach me your favorite non-Homeworlds game, and I&#39;ll teach you anything I might have learned about Homeworlds in a few non-rated games.\n\tcaptncavern: First, congratulation for the winning!\r\nI&#39;m not a very skilled teacher and I don&#39;t analyse the games I play too much, but if you want to try Mirador or Ordo... Those are the games I&#39;m best at right now. I always have a challenge open at both of them. Mirador is a very short connection game, but it still offers interesting possibilities. In Ordo, you must reach your opponent&#39;s first line while preventing your opponent to split your pieces through capture. If any of this appeals to you...\n\n\nHomeworlds Online (SDG# 17155)\nStarted: 2010.8.15, Ended: 2010.9.1\nParticipants: Tank_7 (S), rootbier (N)\nWinner: Tank_7\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Tank_7: Homeworld G3 B1 Y3\n\n3) rootbier: Build G1 Rootbier\n\n4) Tank_7: Build Y1 Tank_7\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) Tank_7: Discover Y1 Tank_7 B2 Mycon\n\n7) rootbier: Build B2 Rootbier\n\n8) Tank_7: Build Y1 Tank_7\n\n9) rootbier: Discover B2 Rootbier G3 Seint\n\tTank_7: you evil guy getting size 2 ships already :(\n\trootbier: what lesson have you learned?\n\n10) Tank_7: Build Y1 Tank_7\n\tTank_7: Avoiding same color Size 1 homeworld stars, or, if there is such a situation then trading for that color is a high priority.\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild B2 Seint\nBuild B3 Seint\nBuild B3 Rootbier\n\tTank_7: since it was your turn first i should have gone different homeworld like B3 G1 instead.\n\tTank_7: hmm better yet never use the 2nd Size 1 of any color for anything, homeworld or ship\n\tTank_7: no wait i take that back, never use the 3rd Size 1... this was 2nd and you traded for 3rd locking me out from blue\n\trootbier: you seemed to be there and then you got confusing. don&#39;t use the same size 1 in your homeworld build - makes for a good freeze out.\r\n\r\nby the same token... yeah. if someone trades and grabs the second 1 of a color - as their first trade - try to grab the third so they can&#39;t freeze you.\r\n\r\nmaybe that is hard to communicate. just look out for it in the early steps of your next few games.\n\n12) Tank_7: Discover Y1 Tank_7 G2 Kentares\n\n\tTank_7: are you alive my friend?\n\nHomeworlds Online (SDG# 17096)\nStarted: 2010.8.15, Ended: 2012.2.27\nParticipants: rootbier (S), Hackmaster (N)\nWinner: rootbier\n\n\nHomeworlds Online (SDG# 17172)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.15, Ended: 2010.8.15\nParticipants: mole561 (S), irisheyes (N)\nWinner: irisheyes\n\n\tmole561: homeworld G2 B1 Y3\n\nHomeworlds Online (SDG# 17173)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.15, Ended: 2010.8.15\nParticipants: irisheyes (S), mole561 (N)\nWinner: mole561\n\n1) mole561: Homeworld G2 B1 Y3\n\n2) irisheyes: Homeworld G3 B1 Y3\n\n\nHomeworlds Online (SDG# 17177)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.16, Ended: 2010.9.1\nParticipants: shmil1 (S), Lurch (N)\nWinner: Lurch\n\n1) Lurch: Homeworld B2 Y1 G3\n\n2) shmil1: Homeworld R1 B2 G3\n\n3) Lurch: Build G1 Lurch\n\n4) shmil1: Build G1 Shmil1\n\n5) Lurch: Trade G1 B1 Lurch\n\n6) shmil1: Build G1 Shmil1\n\n7) Lurch: Discover B1 Lurch G3 Alpha\n\n8) shmil1: Trade G1 Y1 Shmil1\n\n9) Lurch: Build B1 Alpha\n\n10) shmil1: Trade G1 B1 Shmil1\n\n11) Lurch: Build G1 Lurch\n\n12) shmil1: Build G1 Shmil1\n\n13) Lurch: Trade B1 Y1 Alpha\n\n14) shmil1: Discover G1 Shmil1 Y3 Zluta\n\n15) Lurch: Build Y2 Alpha\n\n16) shmil1: Move G1 Zluta Lurch\n\n17) Lurch: Trade G3 R3 Lurch\n\n18) shmil1: Sacrifice G3 Shmil1\nBuild G1 Lurch\nBuild G2 Lurch\nBuild Y2 Shmil1\nCatastrophe Lurch Green\n\n19) Lurch: Build B1 Alpha\n\n20) shmil1: Trade B1 G1 Shmil1\n\n21) Lurch: Trade Y1 B1 Alpha\n\n22) shmil1: Trade Y2 R2 Shmil1\n\n23) Lurch: Move B1 Alpha Shmil1\n\n24) shmil1: Attack B1 Shmil1\n\n25) Lurch: Sacrifice Y2 Alpha\nMove B1 Alpha Shmil1\nMove B1 Alpha Shmil1\nCatastrophe Shmil1 B\n\n26) shmil1: Discover G1 Shmil1 Y3 Zluty\n\n27) Lurch: Trade R3 G3 Lurch\n\n28) shmil1: Move G1 Zluty Lurch\n\n29) Lurch: Trade G3 R3 Lurch\n\n30) shmil1: Discover G1 Lurch Y3 Druhazluta\n\n31) Lurch: Trade R3 G3 Lurch\n\n32) shmil1: Move G1 Druhazluta Lurch\n\n33) Lurch: Trade G3 R3 Lurch\n\tshmil1: i did it for last time :) \r\ni promise ...\n\tshmil1: just to show you we can draw\n\tLurch: Yea, I get it :-)\n\n34) shmil1: Build G1 Lurch\n\n35) Lurch: Attack G1 Lurch\n\n36) shmil1: Build G1 Lurch\n\n37) Lurch: Trade G1 B1 Lurch\n\n38) shmil1: Trade G1 R1 Lurch\n\n39) Lurch: Attack R1 Lurch\n\n40) shmil1: Sacrifice R2 Shmil1\nAttack B1 Lurch\nAttack R1 Lurch\n\n41) Lurch: Attack R1 Lurch\n\n42) shmil1: Build B1 Lurch\n\n43) Lurch: Attack G1 Lurch\n\n44) shmil1: Trade B1 R1 Lurch\n\n45) Lurch: Sacrifice R1 Lurch\nAttack R1 Lurch\n\n46) shmil1: Sacrifice B1 Lurch\nTrade Y1 G1 Shmil1\n\n47) Lurch: Discover G1 Lurch Y3 Alpha\n\n48) shmil1: Build G1 Shmil1\n\n49) Lurch: Build G2 Alpha\n\n50) shmil1: Pass\n\n51) Lurch: Move G2 Alpha Shmil1\n\n\nHomeworlds Online (SDG# 17184)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.17, Ended: 2010.9.23\nParticipants: captncavern (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: H R1 B2 G3\n\n2) captncavern: Homeworld B3 G1 R3\n\tcaptncavern: Thanks!\n\n3) MadWuher: Build G1 Madwuher\n\n4) captncavern: Build R1 Captncavern\n\tMadWuher: Haven&#39;t played for a while..... Sorry if I seem a bit rusty. Have a good game.\n\tcaptncavern: Don&#39;t worry, I&#39;m not a good player at all... I keep losing all my games, but still have fun playing.\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) captncavern: Build R1 Captncavern\n\n7) MadWuher: B G1 Madwuher\n\n8) captncavern: Trade R1 Y1 Captncavern\n\n9) MadWuher: Trade G1 R1 Madwuher\n\n10) captncavern: Build R2 Captncavern\n\n11) MadWuher: B R2 Madwuher\n\n12) captncavern: Trade R1 G1 Captncavern\n\n13) MadWuher: Discover R2 Madwuher G3 Edora\n\n14) captncavern: Build R1 Captncavern\n\n15) MadWuher: B R2 Madwuher\n\n16) captncavern: Discover R1 Captncavern Y2 Mako\n\n17) MadWuher: T R2 Y2 Madwuher\n\tcaptncavern: d r1 y2 Mako\n\n18) captncavern: Build Y1 Captncavern\n\tcaptncavern: Wow, I&#39;m tired... I don&#39;t know what I type, nor where I type it!\n\n19) MadWuher: Move Y2 Madwuher Edora\n\tMadWuher: Lol :)\n\n20) captncavern: Build G1 Captncavern\n\n21) MadWuher: Build G2 Madwuher\n\n22) captncavern: Discover R2 Captncavern G2 Chia\n\n23) MadWuher: Discover G2 Madwuher G3 Camelot\n\n24) captncavern: Discover R1 Mako Y3 Kazu\n\n25) MadWuher: Build G2 Madwuher\n\n26) captncavern: Move Y1 Captncavern Chia\n\n27) MadWuher: M G2 Madwuher Kazu\n\n28) captncavern: Move R1 Kazu Madwuher\n\n29) MadWuher: S R1 Madwuher\nA R1 Madwuher\n\n30) captncavern: Discover G1 Captncavern Y2 Fumi\n\n31) MadWuher: S G2 Camelot\nB G2 Madwuher\nB G3 Kazu\n\n32) captncavern: Discover R2 Chia Y3 Mari\n\n33) MadWuher: Sacrifice G3 Kazu\nBuild G3 Kazu\nBuild Y2 Madwuher\nBuild Y3 Edora\n\n34) captncavern: Move G1 Fumi Mari\n\n35) MadWuher: Trade Y1 B1 Madwuher\n\n36) captncavern: Build R1 Mari\n\n37) MadWuher: Sacrifice Y2 Edora\nDiscover G2 Madwuher R3 Camelot\nMove R2 Edora Chia\n\n38) captncavern: Move R1 Mari Madwuher\n\n39) MadWuher: Sacrifice R1 Madwuher\nAttack R1 Madwuher\n\n40) captncavern: Build R1 Captncavern\n\n41) MadWuher: A Y1 Chia\n\n42) captncavern: Trade R1 B1 Captncavern\n\n43) MadWuher: Move B1 Madwuher Edora\n\n44) captncavern: Build R1 Mari\n\n45) MadWuher: Move R1 Madwuher Edora\n\n46) captncavern: Discover B1 Captncavern Y2 Tomo\n\n47) MadWuher: Sacrifice G3 Kazu\nBuild G3 Kazu\nBuild R2 Edora\nBuild R3 Chia\n\n48) captncavern: Build Y1 Captncavern\n\n49) MadWuher: Sacrifice G2 Kazu\nBuild G2 Madwuher\nBuild Y2 Edora\n\n50) captncavern: Move G1 Captncavern Tomo\n\n51) MadWuher: M R2 Edora Tomo\n\n52) captncavern: Move G1 Tomo Mari\n\n53) MadWuher: A B1 Tomo\n\n54) captncavern: Move G1 Mari Madwuher\n\n55) MadWuher: S G2 Madwuher\nB G2 Kazu\nB B1 Edora\n\n\tcaptncavern: It won&#39;t lead anywhere good for me, so I&#39;ll let you challenge someone better...\r\nWell played!\n\nHomeworlds Online (SDG# 17180)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.23, Ended: 2010.8.26\nParticipants: makertron (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 17128)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.24, Ended: 2010.8.31\nParticipants: zoltar (S), Lurch (N)\nWinner: zoltar\n\n1) Lurch: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) Lurch: Build G1 Lurch\n\n4) zoltar: Build G1 Zoltar\n\n5) Lurch: Trade G1 B1 Lurch\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Lurch: Build B1 Lurch\n\n8) zoltar: Build Y1 Zoltar\n\n9) Lurch: Build G1 Lurch\n\n10) zoltar: Build Y2 Zoltar\n\n11) Lurch: Trade G3 Y3 Lurch\n\n12) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n13) Lurch: Discover B1 Lurch G3 Alpha\n\n14) zoltar: Trade Y2 B2 Zoltar\n\n15) Lurch: Build B2 Alpha\n\n16) zoltar: Build B3 Zoltar\n\n17) Lurch: Build B3 Alpha\n\n18) zoltar: Move B2 Zoltar Greenbelt\n\n19) Lurch: Trade B2 Y2 Alpha\n\n20) zoltar: Build Y2 Greenbelt\n\n21) Lurch: Discover B1 Alpha G2 Beta\n\n22) zoltar: Move B3 Zoltar Beta\n\n23) Lurch: Move B3 Alpha Greenbelt\n\n24) zoltar: Trade B3 R3 Beta\n\n25) Lurch: Trade B3 R3 Greenbelt\n\n26) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt G3 Greengiant\nMove B2 Greenbelt Greengiant\n\n27) Lurch: Build Y2 Alpha\n\n28) zoltar: Build Y2 Greengiant\n\n29) Lurch: Move Y2 Alpha Greenbelt\n\n30) zoltar: Move Y1 Greengiant Lurch\n\n31) Lurch: Move R3 Greenbelt Greengiant\n\n32) zoltar: Move B2 Greengiant Lurch\n\n33) Lurch: Sacrifice Y3 Lurch\nMove R3 Greengiant Lurch\nMove B1 Lurch Alpha\nMove B1 Alpha Greenbelt\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild B2 Lurch\nBuild B3 Lurch\nBuild Y3 Lurch\n\n35) Lurch: Attack Y3 Lurch\n\n36) zoltar: Move Y2 Greengiant Lurch\nCatastrophe Lurch B\nCatastrophe Lurch Y\n\n\tzoltar: Good game!\n\nHomeworlds Online (SDG# 17154)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.24, Ended: 2010.8.30\nParticipants: daselva (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) daselva: Build G1 Daselva\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) daselva: Build G1 Daselva\n\n7) zoltar: Build Y1 Zoltar\n\n8) daselva: Trade G1 Y1 Daselva\n\n9) zoltar: Build Y2 Zoltar\n\n10) daselva: Build Y2 Daselva\n\n11) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n12) daselva: Discover Y1 Daselva G3 S1\n\n13) zoltar: Trade Y1 B1 Zoltar\n\n14) daselva: Build Y1 S1\n\n15) zoltar: Move B1 Zoltar Greenpea\n\n16) daselva: Discover Y1 S1 B1 S2\n\n17) zoltar: Build B1 Greenpea\n\n18) daselva: Sacrifice G3 Daselva\nBuild Y2 S1\nBuild Y3 S2\nBuild Y3 Daselva\n\n19) zoltar: Build Y3 Zoltar\n\n20) daselva: Trade Y2 B2 Daselva\n\n21) zoltar: Discover B1 Greenpea G3 Greengiant\n\n22) daselva: Move B2 Daselva S1\n\n23) zoltar: Build B3 Greengiant\n\n24) daselva: Move B2 S1 S2\n\n25) zoltar: Build B3 Greenpea\n\n26) daselva: Trade Y3 R3 S2\n\n27) zoltar: Sacrifice Y3 Zoltar\nMove B1 Greenpea Greengiant\nMove B1 Greengiant S2\nMove B1 Greengiant S2\nCatastrophe S2 B\n\n28) daselva: Build Y1 Daselva\n\n29) zoltar: Build Y2 Greenpea\n\n30) daselva: Discover Y1 S1 B1 S3\n\n31) zoltar: Trade Y1 R1 Greenpea\n\n32) daselva: Move G1 Daselva S1\n\n33) zoltar: Build B1 Greengiant\n\n34) daselva: Move G1 S1 S3\n\n35) zoltar: Trade B3 Y3 Greengiant\n\n36) daselva: Discover Y2 S1 B1 S4\n\n37) zoltar: Move Y3 Greengiant Daselva\n\n38) daselva: Trade Y1 G1 Daselva\n\n39) zoltar: Attack Y3 Daselva\n\n\nHomeworlds Online (SDG# 17085)\nStarted: 2010.8.26, Ended: 2010.8.29\nParticipants: daselva (S), mathochist (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 17248)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.28, Ended: 2010.8.31\nParticipants: daselva (S), makertron (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 17267)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.28, Ended: 2010.10.15\nParticipants: SilentTitan (S), Subhan64 (N)\nWinner: SilentTitan\n\n1) Subhan64: Homeworld B1 G2 Y3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Subhan64: Build G1 Subhan64\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n10) SilentTitan: Discover G1 Silenttitan B1 Otg\n\n11) Subhan64: Build G2 Subhan64\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) Subhan64: Trade G2 Y2 Subhan64\n\n14) SilentTitan: Build Y1 Silenttitan\n\n15) Subhan64: Discover G1 Subhan64 Y3 Ernie\n\n16) SilentTitan: Trade G2 Y2 Silenttitan\n\n17) Subhan64: Build G2 Ernie\n\n18) SilentTitan: Trade Y1 B1 Silenttitan\n\n19) Subhan64: Build Y1 Subhan64\n\n20) SilentTitan: Build B2 Silenttitan\n\n21) Subhan64: Trade Y3 G3 Subhan64\n\n22) SilentTitan: Move Y2 Silenttitan Otg\n\n23) Subhan64: Trade Y2 R2 Subhan64\n\n24) SilentTitan: Trade B2 R2 Silenttitan\n\n25) Subhan64: Move R2 Subhan64 Bigbird\n\n26) SilentTitan: Build B2 Silenttitan\n\n27) Subhan64: Move R2 Bigbird Otg\n\n28) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Otg N\nPass\n\n29) Subhan64: Trade Y1 R1 Subhan64\n\n30) SilentTitan: Discover B2 Silenttitan Y1 Ktf\n\n31) Subhan64: Build G2 Subhan64\n\n32) SilentTitan: Sacrifice Y2 Otg\nMove G1 Otg Ernie\nMove G1 Ernie Subhan64\nCatastrophe Subhan64 Green\n\n\tSubhan64: gg, thanks!\n\tSilentTitan: Thank you \n\nHomeworlds Online (SDG# 17171)\nStarted: 2010.8.29, Ended: 2010.10.12\nParticipants: rootbier (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld R1 B2 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\tdaselva: hello I&acute;m still learning...\n\n3) daselva: Build G1 Daselva\n\trootbier: learning is good. I&#39;ll be largely away the month of september. Will try to give advice when i have time.\n\n\nHomeworlds Online (SDG# 17280)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.30, Ended: 2010.10.1\nParticipants: agentofchaos (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 G2 Y3\n\tagentofchaos: Hi there, enjoy the game. \n\tgoulo: Hi, have fun!\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) goulo: Build Y1 Goulo\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) goulo: Build Y1 Goulo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) goulo: Trade Y1 R1 Goulo\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) goulo: Build R1 Goulo\n\n12) agentofchaos: Discover G1 Agentofchaos Y2 Dreamzone\n\n13) goulo: Build R2 Goulo\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) goulo: Trade R2 G2 Goulo\n\n16) agentofchaos: Build G3 Dreamzone\n\n17) goulo: Build G3 Goulo\n\n18) agentofchaos: Trade G2 R2 Agentofchaos\n\n19) goulo: Discover G3 Goulo Y1 Citroneto\n\n20) agentofchaos: Build Y2 Agentofchaos\n\n21) goulo: Build Y2 Goulo\n\n22) agentofchaos: Trade G1 B1 Agentofchaos\n\n23) goulo: Build Y3 Smeraldeto\n\n24) agentofchaos: Move R2 Agentofchaos Dreamzone\n\n25) goulo: Move R1 Goulo Smeraldeto\n\n26) agentofchaos: Build R2 Dreamzone\n\n27) goulo: Build Y3 Goulo\n\n28) agentofchaos: Build B1 Agentofchaos\n\n29) goulo: Build G1 Citroneto\n\n30) agentofchaos: Build G2 Agentofchaos\n\n31) goulo: Trade G2 B2 Goulo\n\n32) agentofchaos: Move B1 Agentofchaos Dreamzone\n\n33) goulo: Build R2 Goulo\n\n34) agentofchaos: Discover Y1 Agentofchaos B2 Kompazmor\n\n35) goulo: Move Y3 Goulo Citroneto\n\n36) agentofchaos: Discover R2 Dreamzone B1 Smaragdin\n\n37) goulo: Build B2 Goulo\n\n38) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Dreamzone\nBuild B3 Dreamzone\n\n39) goulo: Move B2 Goulo Smeraldeto\n\n40) agentofchaos: Move R2 Dreamzone Smaragdin\n\n41) goulo: Move R2 Goulo Smaragdin\n\n42) agentofchaos: Attack R2 Smaragdin\n\n43) goulo: Move R1 Goulo Smaragdin\nCatastrophe Smaragdin Red\n\n44) agentofchaos: Build R1 Dreamzone\n\n45) goulo: Build R2 Smeraldeto\n\n46) agentofchaos: Sacrifice Y1 Kompazmor\nDiscover R3 Dreamzone Y1 Dethstar\n\n47) goulo: Trade B2 R2 Goulo\n\n48) agentofchaos: Sacrifice G3 Dreamzone\nBuild R2 Dreamzone\nBuild R3 Dethstar\nBuild G2 Agentofchaos\n\n49) goulo: Sacrifice Y2 Goulo\nDiscover B2 Smeraldeto Y2 Citrono\nMove G3 Citroneto Citrono\n\n50) agentofchaos: Move G2 Agentofchaos Dreamzone\n\n51) goulo: Build G2 Citrono\n\n52) agentofchaos: Move B1 Dreamzone Dethstar\n\n53) goulo: Build B1 Citrono\n\n54) agentofchaos: Move B1 Agentofchaos Citrono\n\n55) goulo: Sacrifice G3 Citrono\nBuild G3 Citrono\nBuild G3 Citroneto\nBuild R3 Goulo\n\n56) agentofchaos: Move B1 Dethstar Citrono\nCatastrophe Citrono B\n\n57) goulo: Sacrifice Y3 Citroneto\nMove R1 Smeraldeto Goulo\nMove R1 Goulo Dethstar\nMove R2 Goulo Dethstar\nCatastrophe Dethstar Red\n\n58) agentofchaos: Trade B3 Y3 Dreamzone\n\n59) goulo: Sacrifice Y3 Goulo\nMove G3 Citroneto Goulo\nMove Y1 Smeraldeto Dreamzone\nMove Y3 Smeraldeto Dreamzone\nCatastrophe Dreamzone Y\n\n60) agentofchaos: Build Y1 Agentofchaos\n\n61) goulo: Sacrifice G3 Citrono\nBuild G1 Goulo\nBuild G2 Citroneto\nBuild G3 Citrono\n\n62) agentofchaos: Trade Y1 R1 Agentofchaos\n\n63) goulo: Trade R3 Y3 Goulo\n\n64) agentofchaos: Discover Y2 Agentofchaos B2 Perdition\n\n65) goulo: Sacrifice G1 Goulo\nBuild G1 Citrono\n\n66) agentofchaos: Trade R1 Y1 Agentofchaos\n\n67) goulo: Move G3 Citrono Agentofchaos\n\n68) agentofchaos: Attack G3 Agentofchaos\n\n69) goulo: Sacrifice Y3 Goulo\nMove G2 Citroneto Citrono\nMove G2 Citrono Agentofchaos\nMove G1 Citrono Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: gg\n\tgoulo: thanks for the game!\n\nHomeworlds Online (SDG# 17298)\nVariants: &quot;Hard time&quot;\nStarted: 2010.8.31, Ended: 2010.9.9\nParticipants: dlwillson (S), Uglyfoot (N)\nWinner: dlwillson\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\n2) dlwillson: H B3 R2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Uglyfoot: Build Y2 Uglyfoot\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Uglyfoot: Discover Y1 Uglyfoot B2 Dogstar\n\n10) dlwillson: Discover Y1 Dlwillson R1 Catworld\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) dlwillson: Build G1 Dlwillson\n\n13) Uglyfoot: Move G1 Uglyfoot Dogstar\n\n14) dlwillson: M G1 Dlwillson Catworld\n\n15) Uglyfoot: Trade Y2 R2 Uglyfoot\n\n16) dlwillson: B Y2 Catworld\n\n17) Uglyfoot: Build G1 Uglyfoot\n\n18) dlwillson: B G2 Dlwillson\n\n19) Uglyfoot: Build Y2 Dogstar\n\n20) dlwillson: B Y3 Dlwillson\n\n21) Uglyfoot: Discover G1 Dogstar B1 Gerbilcomet\n\n22) dlwillson: M Y3 Dlwillson Gerbilcomet\n\tdlwillson: I can&#39;t think of any reason for you to have pushed up the yellow battleships, so either you made a mistake, or I&#39;m about to get blindsided.\n\n23) Uglyfoot: Build G2 Gerbilcomet\n\n24) dlwillson: S G2 Dlwillson\nB Y3 Gerbilcomet\nBuild Y3 Dlwillson\n\n25) Uglyfoot: Sacrifice Y2 Dogstar\nMove G1 Gerbilcomet Dlwillson\nMove G2 Gerbilcomet Dlwillson\n\n26) dlwillson: T G3 R3 Dlwillson\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Uglyfoot\n\n28) dlwillson: B G3 Catworld\nC Dlwillson G\n\n\tdlwillson: I looked at your game history and you almost never lose Homeworlds. What happened with this game?\n\tUglyfoot: Perhaps you haven&#39;t look far enough.  I have played many games of this just to become a &quot;marginal&quot; player.  I tried something that didn&#39;t work and I will not repeat that mistake (hopefully).\n\tdlwillson: We can play again anytime you like. I have a standing challenge up.\n\nHomeworlds Online (SDG# 17307)\nVariants: &quot;Unrated&quot;\nStarted: 2010.8.31, Ended: 2010.9.22\nParticipants: zoltar (S), makertron (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 17284)\nStarted: 2010.9.1, Ended: 2010.9.7\nParticipants: rootbier (S), Tank_7 (N)\nWinner: Tank_7\n\n1) Tank_7: Homeworld G2 B1 Y3\n\n\nHomeworlds Online (SDG# 17086)\nVariants: &quot;Hard time&quot;\nStarted: 2010.9.6, Ended: 2010.9.18\nParticipants: dlwillson (S), daselva (N)\nWinner: dlwillson\n\n1) daselva: Homeworld R1 B2 G3\n\n2) dlwillson: H B3 R2 G3\n\n3) daselva: Build G1 Daselva\n\n4) dlwillson: B G1 Dlwillson\n\n5) daselva: Build G1 Daselva\n\n6) dlwillson: B G2 Dlwillson\n\n7) daselva: Trade G1 Y1 Daselva\n\n8) dlwillson: T G2 Y2 Dlwillson\n\n9) daselva: Discover G1 Daselva Y3 S1\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) daselva: Build G1 S1\n\tdlwillson: Remember to always count the bank. Be aware of what you&#39;re making available to the other person, and whether you get one, too, if they do. That G2 was a pretty nice gift and you&#39;re still stuck building ones, at least for a while.\n\n12) dlwillson: B R1 Dlwillson\n\n13) daselva: Trade G3 R3 Daselva\n\n14) dlwillson: B Y1 Dlwillson\n\n15) daselva: Move G1 S1 Daselva\n\n16) dlwillson: D Y1 Dlwillson B1 Wm\n\n17) daselva: Move G1 S1 Wm\n\n18) dlwillson: M R1 Dlwillson Wm\n\n19) daselva: Discover Y1 Daselva G3 S2\n\n20) dlwillson: Attack G1 Wm\n\n21) daselva: Build Y1 S2\n\n22) dlwillson: B R2 Wm\n\n23) daselva: Move Y1 S2 Daselva\n\n24) dlwillson: M R2 Wm S2\n\n25) daselva: Discover Y1 S2 G2 S3\n\n26) dlwillson: B Y2 Wm\n\n27) daselva: Build Y2 S3\n\n28) dlwillson: S G3 Dlwillson\nBuild R2 S2\nB R3 Wm\nBuild Y3 Dlwillson\n\n29) daselva: Trade R3 Y3 Daselva\n\n30) dlwillson: M Y2 Wm S3\n\n31) daselva: Discover Y2 S3 B1 S4\n\n32) dlwillson: Build Y3 Wm\n\n33) daselva: Build G1 Daselva\n\n34) dlwillson: S Y2 S3\nM R2 S2 Daselva\nMove R2 S2 Daselva\n\tdlwillson: How are you liking SDG?\n\tdaselva: I&acute;m liking SDG very much.I only regret that players take to much time to make their moves and so I just can&acute;t feel the flow of games ,what makes difficult the &laquo;learning curve&raquo;.I&acute;m feeling with these 2 games that I&acute;m finding very interesting:Homeworlds and Pikemen.Do you like others?\n\n35) daselva: Build Y2 S3\n\n36) dlwillson: S R3 Wm\nA G1 Daselva\nA G1 Daselva\nA Y1 Daselva\n\n37) daselva: Attack R2 Daselva\n\tdlwillson: Yeah, moves tend to go pretty slow here. One a day is about the best you can expect. Sometimes faster, sometimes slower.\r\n\r\nThere is no &quot;flow&quot; to a Homeworlds game, because, as they say, no plan survives contact with the enemy. You really have to look at the board every turn, especially here.\r\n\r\nI&#39;ve only tried one other game one time, here on SDG: Mirador. I liked it. Very simple concept, but a neat game, and it can be played in pen and paper.\r\n\r\nAre you good at Pikemen? I&#39;d be happy to join you for a round. I&#39;ve played in plastic, but not on SDG.\n\n38) dlwillson: B R3 Daselva\nC Daselva R\n\n39) daselva: Trade Y3 R3 Daselva\n\n40) dlwillson: T Y1 B1 Daselva\n\n41) daselva: Move Y1 S3 S4\n\tdaselva: I&acute;ve only played 3 games of Pikemen ;i&acute;m learning it to.thank you for telling me about Mirador...\n\tdaselva: &laquo;too&raquo;\n\n42) dlwillson: B B2 Daselva\n\n43) daselva: Sacrifice Y2 S3\nMove Y1 S4 Dlwillson\nMove Y2 S4 Dlwillson\nCatastrophe Dlwillson Y\n\n44) dlwillson: T G1 B1 Daselva\nC Daselva B\n\n\tdlwillson: Good game! Thank you!\n\nHomeworlds Online (SDG# 17313)\nStarted: 2010.9.9, Ended: 2010.9.15\nParticipants: rootbier (S), Tank_7 (N)\nWinner: Tank_7\n\n1) Tank_7: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 17403)\nStarted: 2010.9.15, Ended: 2010.9.18\nParticipants: Tank_7 (S), rootbier (N)\nWinner: Tank_7\n\n\tTank_7: Hey how are you.. Back from your business trip yet?\n\nHomeworlds Online (SDG# 17388)\nVariants: &quot;Hard time&quot;\nStarted: 2010.9.15, Ended: 2010.9.28\nParticipants: Kermit (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\tdlwillson: I like to do a turn or three each day. How about you?\r\n\n\n2) Kermit: Homeworld G1 B2 Y3\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Also, I finally have a phone that can handle SDG,so I see the turns right away, and I&#39;ll usually be able to put my response in pretty quickly. So basically, we can go as fast as you like.\n\n4) Kermit: Build Y1 Kermit\n\tdlwillson: I&#39;m strictly competitive in ladder matches, but I like to play for fun, too.\n\tdlwillson: And have a great game! I&#39;ll be quiet for a few moves. :-)\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Kermit: Build Y2 Kermit\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Kermit: Discover Y2 Kermit B3 Backwater\n\n9) dlwillson: D Y1 Dlwillson G2 Carrot\n\n10) Kermit: Trade Y2 G2 Backwater\n\n11) dlwillson: B Y2 Dlwillson\n\n12) Kermit: Build G1 Backwater\n\tdlwillson: Hey there! How&#39;s everything?\n\tKermit: reasonable\n\n13) dlwillson: D Y2 Dlwillson Y2 Camelot\n\n14) Kermit: Move Y1 Kermit Backwater\n\n15) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB Y3 Carrot\nPass\n\n16) Kermit: Move Y1 Backwater Camelot\n\n17) dlwillson: Trade Y3 R3 Dlwillson\n\n18) Kermit: Build Y3 Kermit\n\n19) dlwillson: S Y2 Camelot\nM Y3 Carrot Backwater\nM Y3 Backwater Kermit\n\n\tdlwillson: I could be wrong, but I think that&#39;s game.\n\tKermit: yep\n\nHomeworlds Online (SDG# 17340)\nVariants: &quot;Hard time&quot;\nStarted: 2010.9.15, Ended: 2010.10.26\nParticipants: Mandrel (S), Lurch (N)\nWinner: Mandrel\n\n1) Lurch: Homeworld Y1 B3 G3\n\n2) Mandrel: Homeworld R1 B2 G3\n\n3) Lurch: Build G1 Lurch\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tLurch: You as well.\n\n5) Lurch: Trade G1 Y1 Lurch\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Lurch: Build Y2 Lurch\n\n8) Mandrel: B Y2 Mandrel\n\n9) Lurch: Discover Y2 Lurch B2 Alpha\n\n10) Mandrel: D Y1 Mandrel G3 Solo\n\n11) Lurch: Build G1 Lurch\n\n12) Mandrel: B Y2 Solo\n\n13) Lurch: Move G1 Lurch Alpha\n\n14) Mandrel: B Y3 Mandrel\n\n15) Lurch: Build Y3 Alpha\n\n16) Mandrel: D Y3 Mandrel B3 Activity\n\n17) Lurch: Trade Y1 R1 Lurch\n\n18) Mandrel: Build G1 Mandrel\n\n19) Lurch: Discover G1 Alpha Y3 Beta\n\n20) Mandrel: Trade Y2 R2 Mandrel\n\n21) Lurch: Build G1 Beta\n\n22) Mandrel: T G1 Y1 Mandrel\n\n23) Lurch: Move G1 Beta Alpha\n\n24) Mandrel: M R2 Mandrel Beta\n\n25) Lurch: Trade Y3 R3 Alpha\n\n26) Mandrel: D Y3 Activity G2 Mystery\n\n27) Lurch: Move R3 Alpha Beta\n\n28) Mandrel: M R2 Beta Mystery\n\n29) Lurch: Build Y2 Alpha\n\n30) Mandrel: B Y3 Mystery\n\n31) Lurch: Trade G1 B1 Alpha\n\n32) Mandrel: B G1 Mandrel\n\n33) Lurch: Build G1 Beta\n\n34) Mandrel: Trade G3 B3 Mandrel\n\n35) Lurch: Move B1 Alpha Beta\n\n36) Mandrel: B G2 Mandrel\n\n37) Lurch: Trade G1 B1 Beta\n\n38) Mandrel: S Y3 Mystery\nM Y3 Mystery Solo\nM Y3 Solo Mandrel\nM B3 Mandrel Solo\n\n39) Lurch: Build B1 Beta\n\n40) Mandrel: Build Y3 Mandrel\n\n41) Lurch: Move B1 Beta Mandrel\n\n42) Mandrel: B B2 Solo\n\n43) Lurch: Move B1 Beta Mandrel\n\n44) Mandrel: Move Y1 Solo Mystery\n\n45) Lurch: Move B1 Beta Mandrel\nCatastrophe Mandrel B\n\n46) Mandrel: M Y1 Mandrel Mystery\n\n47) Lurch: Build G1 Beta\n\n48) Mandrel: Discover Y2 Solo B2 Reset\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 17404)\nStarted: 2010.9.17, Ended: 2010.10.9\nParticipants: Tank_7 (S), rootbier (N)\nWinner: Tank_7\n\n\tTank_7: Are you avoiding playing against me?\n\trootbier: if you look up at the player list you will see that i am still on the road. i&#39;ll start this game with you if you promise not to force resign/surrender me when i run out of time.\n\nHomeworlds Online (SDG# 17170)\nStarted: 2010.9.18, Ended: 2010.10.9\nParticipants: Tank_7 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTank_7: Hi :)\n\tTwoShort: Howdy.\n\n2) Tank_7: Homeworld Y2 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Tank_7: Build G1 Tank_7\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Tank_7: Trade G1 B1 Tank_7\n\n7) TwoShort: Build G1 Twoshort\n\n8) Tank_7: Build B1 Tank_7\n\n9) TwoShort: Build G1 Twoshort\n\n10) Tank_7: Discover B1 Tank_7 Y3 Plem\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) Tank_7: Build B2 Tank_7\n\n13) TwoShort: Build G1 Twoshort\n\n14) Tank_7: Trade B2 G2 Tank_7\n\n15) TwoShort: Discover G1 Twoshort G2 Grogar\n\n16) Tank_7: Sacrifice G3 Tank_7\nBuild B2 Plem\nBuild G2 Tank_7\nBuild G3 Tank_7\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n18) Tank_7: Trade G2 Y2 Tank_7\n\n19) TwoShort: Discover Y1 Twoshort B2 Bonsai\n\n20) Tank_7: Move B2 Plem Bonsai\n\n21) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Bonsai\nBuild Y3 Bonsai\nBuild Y3 Twoshort\n\n22) Tank_7: Discover G2 Tank_7 B3 Forni\n\n23) TwoShort: Trade Y3 R3 Bonsai\n\n24) Tank_7: Sacrifice G2 Forni\nBuild G2 Tank_7\nBuild B2 Plem\n\n25) TwoShort: Sacrifice Y3 Twoshort\nDiscover R3 Bonsai R3 Gunrule\nMove R3 Gunrule Tank_7\nDiscover G1 Yolonda Y3 Yoyodyne\n\n26) Tank_7: Sacrifice B2 Plem\nTrade B1 R1 Plem\nTrade B1 R1 Tank_7\n\n27) TwoShort: Attack G3 Tank_7\n\n28) Tank_7: Sacrifice G2 Tank_7\nBuild R2 Tank_7\nBuild R2 Tank_7\nCatastrophe Tank_7 Red\n\n29) TwoShort: Trade G3 R3 Twoshort\n\n30) Tank_7: Trade Y2 G2 Tank_7\n\tTank_7: Lol @ the system named GunRule :D I am inexperienced sorry.\n\n31) TwoShort: Sacrifice R3 Twoshort\nAttack G2 Tank_7\nPass\nPass\n\n\tTank_7: gg\n\tTwoShort: Thanks for the game :)\n\nHomeworlds Online (SDG# 17432)\nStarted: 2010.9.19, Ended: 2010.10.12\nParticipants: dethdukk (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 17456)\nVariants: &quot;Hard time&quot;\nStarted: 2010.9.21, Ended: 2010.9.29\nParticipants: AdamBadura (S), mneme (N)\nWinner: AdamBadura\n\n1) mneme: Homeworld B2 R1 G3\n\n2) AdamBadura: Homeworld G3 B2 R3\n\n3) mneme: Build G1 Mneme\n\n4) AdamBadura: Build R1 Adambadura\n\n5) mneme: Build G1 Mneme\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) mneme: Trade G3 Y3 Mneme\n\n8) AdamBadura: Build R1 Adambadura\n\n9) mneme: Build G1 Mneme\n\n10) AdamBadura: Build R1 Adambadura\n\n11) mneme: Discover G1 Mneme B3 Butterfly\n\n12) AdamBadura: Discover R1 Adambadura Y1 Outpost\n\n13) mneme: Build G2 Butterfly\n\n14) AdamBadura: Build R2 Adambadura\n\n15) mneme: Trade G2 R2 Butterfly\n\n16) AdamBadura: Move R2 Adambadura Outpost\n\n17) mneme: Build G2 Mneme\n\n18) AdamBadura: Trade R1 B1 Adambadura\n\n19) mneme: Trade G2 R2 Mneme\n\n20) AdamBadura: Build B1 Adambadura\n\n21) mneme: Build G2 Butterfly\n\tAdamBadura: You tricked me easy with those G ships. Nice move! I have to remember this... ;)\n\n22) AdamBadura: Move B1 Adambadura Outpost\n\n23) mneme: Discover G1 Mneme R3 Spacer\n\tAdamBadura: Good night! ;)\n\n24) AdamBadura: Move R2 Outpost Spacer\n\n25) mneme: Discover R2 Mneme B3 Friendship\n\n26) AdamBadura: Attack G1 Spacer\n\n27) mneme: Sacrifice G2 Butterfly\nBuild R1 Friendship\nBuild R3 Butterfly\n\tmneme: NP; glad to help you out that way!  You play fast!\n\n28) AdamBadura: Build G2 Spacer\n\n29) mneme: Trade R2 G2 Friendship\n\n30) AdamBadura: Sacrifice G2 Spacer\nBuild R2 Outpost\nBuild G2 Spacer\n\n31) mneme: Discover G1 Mneme G3 Hunter\n\n32) AdamBadura: Build Y1 Adambadura\n\n33) mneme: Trade R2 Y2 Butterfly\n\n34) AdamBadura: Build R2 Adambadura\n\n35) mneme: Build G2 Butterfly\n\n36) AdamBadura: Discover R1 Outpost G3 Nomore\n\n37) mneme: Move G2 Butterfly Mneme\n\n38) AdamBadura: Move Y1 Adambadura Outpost\n\n39) mneme: Move G2 Mneme Nomore\n\n40) AdamBadura: Sacrifice G2 Spacer\nBuild G2 Spacer\nBuild B1 Outpost\n\n41) mneme: Sacrifice Y2 Butterfly\nMove G1 Hunter Outpost\nDiscover G1 Outpost B3 Icicle\n\n42) AdamBadura: Build G3 Spacer\n\n43) mneme: Sacrifice G2 Friendship\nBuild G2 Butterfly\nBuild Y2 Mneme\n\n44) AdamBadura: Sacrifice G3 Spacer\nBuild G3 Spacer\nBuild B2 Outpost\nBuild Y2 Outpost\n\n45) mneme: Sacrifice Y2 Mneme\nMove G1 Butterfly Outpost\nMove G1 Outpost Spacer\nCatastrophe Spacer G\n\n46) AdamBadura: Move Y2 Outpost Icicle\n\n47) mneme: Sacrifice G1 Icicle\nBuild G1 Butterfly\n\tmneme: yeah, that was a blunder.  perils of playing late at night.\r\n\n\n48) AdamBadura: Trade B1 G1 Outpost\n\n49) mneme: Trade G2 Y2 Butterfly\n\n50) AdamBadura: Move Y1 Outpost Spacer\n\n51) mneme: Build G1 Butterfly\n\n52) AdamBadura: Sacrifice B2 Outpost\nTrade R3 Y3 Adambadura\nTrade R2 Y2 Spacer\n\n53) mneme: Trade Y3 G3 Mneme\n\n54) AdamBadura: Build G2 Outpost\n\n55) mneme: Build Y3 Butterfly\n\n56) AdamBadura: Sacrifice G2 Outpost\nBuild Y3 Icicle\nBuild G2 Outpost\n\n57) mneme: Sacrifice G2 Nomore\nBuild R2 Butterfly\nBuild R3 Friendship\n\n58) AdamBadura: Move G2 Outpost Spacer\n\tmneme: nice attack threat.\n\tAdamBadura: There was only a thin chance you will miss it (and actually likely I would consider insisting on undo if you did) but I hope that was a good move either way.\n\n59) mneme: Move R3 Butterfly Outpost\n\n60) AdamBadura: Sacrifice Y2 Spacer\nMove G1 Outpost Icicle\nMove R2 Outpost Icicle\n\tmneme: Hey, I&#39;d have taken the cheap win against me, but maybe I think too much of my own skills? :)  But yeah, it was a good move--almost any move that results in a more favorable large ratio (particularly given that you&#39;re ahead on raw points) is a good one.\n\n61) mneme: Sacrifice Y2 Butterfly\nMove R3 Friendship Outpost\nMove R3 Outpost Spacer\n\n62) AdamBadura: Sacrifice G2 Spacer\nBuild G2 Icicle\nBuild G2 Icicle\n\n63) mneme: Sacrifice Y3 Butterfly\nMove G1 Butterfly Outpost\nMove G1 Outpost Icicle\nMove G1 Butterfly Outpost\nCatastrophe Icicle G\n\n64) AdamBadura: Sacrifice Y1 Spacer\nMove B1 Outpost Icicle\n\n65) mneme: Build G1 Mneme\n\n66) AdamBadura: Build Y1 Adambadura\n\n67) mneme: Trade R1 B1 Friendship\n\n68) AdamBadura: Build R1 Adambadura\n\n69) mneme: Trade G3 Y3 Mneme\n\n70) AdamBadura: Trade Y3 G3 Icicle\n\tAdamBadura: Interesting game...\n\n71) mneme: Build Y2 Mneme\n\tmneme: isn&#39;t it, though?\n\n72) AdamBadura: Build Y2 Icicle\n\n73) mneme: Move Y2 Mneme Butterfly\n\n74) AdamBadura: Build Y3 Icicle\n\n75) mneme: Discover Y2 Butterfly G1 Seaweed\n\n76) AdamBadura: Sacrifice Y1 Adambadura\nMove Y3 Icicle Mneme\n\n77) mneme: Attack Y3 Mneme\n\n78) AdamBadura: Sacrifice Y3 Adambadura\nMove Y2 Icicle Mneme\nMove Y2 Icicle Mneme\nMove G3 Icicle Mneme\nCatastrophe Mneme Y\n\n\tmneme: Ah -- missed a Y somewhere.  Well done.\n\tAdamBadura: Thanks. Good game!\n\nHomeworlds Online (SDG# 17249)\nStarted: 2010.9.22, Ended: 2010.10.7\nParticipants: mathochist (S), pancerola (N)\nWinner: pancerola\n\n1) pancerola: Homeworld G2 Y1 B3\n\n\tpancerola: Hello?\n\nHomeworlds Online (SDG# 17480)\nVariants: &quot;Unrated&quot;\nStarted: 2010.9.25, Ended: 2010.9.29\nParticipants: dlwillson (S), Keith (N)\nWinner: dlwillson\n\n1) Keith: Homeworld B1 Y2 G3\n\n2) dlwillson: H B3 R1 G3\n\tKeith: You have a good track record in Homeworlds.\n\tdlwillson: I love Icehouse games. Homeworlds and Zendo are my favorites.\n\n3) Keith: Build G1 Keith\n\tKeith: There has been some very clever use of the Icehouse pieces.  Homeworlds being a great example.  I never had any desire to play Zendo though I appreciate it from a design point of view.\n\n4) dlwillson: B G1 Dlwillson\n\n5) Keith: Trade G1 Y1 Keith\n\n6) dlwillson: T G1 Y1 Dlwillson\n\tdlwillson: Good move. Trade to red might have been better for diversity and lockout potential.\n\n7) Keith: Build G1 Keith\n\tKeith: Thought about both red and blue.\n\n8) dlwillson: Build G1 Dlwillson\n\tKeith: I was pretty sure another green would have been a bad idea.\n\tdlwillson: Actually, either of those are good race colors for you, but red is better for three reasons:\r\n- I ~have~ to get in, or find a way to catch up later.\r\n- You have more room for red, and you don&#39;t have red.\r\n- I have less room for red, and I don&#39;t have yellow. Or, didn&#39;t have, so I&#39;d certainly lose the red race, no matter what.\n\n9) Keith: Build Y1 Keith\n\tdlwillson: A second little green is a fine idea, unless it pushes the other guy into mediums, by the way.\r\nWe&#39;re both looking fine on yellow. You might want to consider a second yellow ship. I can&#39;t currently reach you, and you could split them up and burst-build with your G3.\n\tKeith: A burst build building all yellow to regain a 3- pointer?\r\n\r\nI wasn&#39;t that worried about having a red.  Yours is a planet so while it is good for defense I don&#39;t feel like I have a gun pointed at me.  Though that is focus on what is in play rather than stack management.\n\n10) dlwillson: B Y2 Dlwillson\n\n11) Keith: Discover Y1 Keith B3 Miranda\n\n12) dlwillson: D Y2 Dlwillson B2 Nuts\n\n13) Keith: Sacrifice G3 Keith\nBuild Y2 Miranda\nBuild Y3 Miranda\nBuild Y3 Keith\n\tdlwillson: Ok, the yellow rush is not currently an option...\n\tKeith: Well let me see if I understand what would happen.  If I sacrificed the G3 I would need to build Y2 and Y3 in Miranda and Y3 in Keith.  If you could then move nuts to Miranda and cause a catastrophe.  But if you do that I will have swapped my G3 for a Y3 and you will lose your Y2.  If you instead build a Y3, I disperse and keep my gain.  We both will have gained a Y3 and  Y2.  Won&#39;t you then be capped at two yellow?\r\n\r\nThis may blow up in my face.  The advantage of an unrated game is that I am free to try.\n\n14) dlwillson: B Y3 Dlwillson\n\tKeith: Make that three yellow.\n\n15) Keith: Sacrifice Y1 Miranda\nDiscover Y1 Keith G3 Midworld\n\tdlwillson: You&#39;re absolutely right on all counts. I pushed up the wrong yellow! I don&#39;t usually make mistakes like that... In this case, I&#39;m glad I did. Onward!\n\tKeith: So now you can sacrifice the Y3 and get a yellow to Keith causing a catastrophe.  I need to do something about that and Miranda is subject to loss.  \n\tKeith: ... though if I lose Miranda you will have two 3-pointers to my one.  Need to save Miranda too.\n\tKeith: Most of the game is coming back to me, though I am not seeing but two moves ahead.\n\n16) dlwillson: D Y1 Dlwillson G2 Berries\n\n17) Keith: Build Y1 Midworld\n\tdlwillson: I don&#146;t think I&#39;ve ever seen more than two ahead... but I definitely play with 1 eye on the bank.\n\n18) dlwillson: M G1 Dlwillson Nuts\n\n19) Keith: Discover Y1 Midworld B2 Lv-426\n\tKeith: One of the reasons I like Cannon is because I can see far ahead.\r\n\r\nNo clear idea what to do here.  \n\n20) dlwillson: Build G1 Dlwillson\n\n21) Keith: Trade Y3 R3 Miranda\n\tdlwillson: So, my way of getting around that is to decide how I&#39;m going to take the other guy out at the very beginning of the game, then, anytime there&#39;s no immediate pressure, I move something toward that goal. It seems to work OK so far. In friendly games, I mostly just play the game and see what happens.\n\tKeith: Interesting bind you have me in.  If I build a green you can sacrifice your G3 and build to you get it back.  If I trade a yellow you can grab it.\n\n22) dlwillson: Build Y3 Berries\n\tdlwillson: So, you offered the Y3 anyway... Interesting. Let&#39;s see if you have a plan.\n\n23) Keith: Move R3 Miranda Berries\n\tKeith: Because I am brain dead.  Was going to offer the Y2, decided I might have some problems down the line, switched to the Y3 forgetting the you get it issue.\n\n24) dlwillson: M Y3 Berries Miranda\n\tdlwillson: I&#39;ve done that! Solution: read the board before and after the move. :-)\n\n25) Keith: Attack Y1 Berries\n\n26) dlwillson: T G1 R1 Dlwillson\n\n27) Keith: Build R1 Berries\n\n28) dlwillson: M R1 Dlwillson Nuts\n\tdlwillson: I won my ladder match!\n\n29) Keith: Trade Y3 R3 Keith\n\tKeith: Congratulations.  I see you are now starting to tackle the big league group.  Wyons is a strong player.\n\n30) dlwillson: B Y3 Nuts\n\n\tdlwillson: I&#39;ve played the top 3 guys in regular games. Didn&#39;t win a single one... I better get better,eh?\n\tKeith: Yep. There used to be two groups.  The 4 or 5 heavies at the top of the ladder and a second group of 4 or 5 about 80 to 120 rating points back.  While I got Zoltar once, I never broke out of the seconddary group and then just about stopped playing when my focus shifted to Grim Reaper.\n\tKeith: Gah!  I was thinking you could not build the Y3 in dlwilson so I was safe.\n\tdlwillson: Want to call this one and start another?\n\tKeith: Maybe, I will let you know.  Board game night.  I will be out all evening.  I will take a look when I get back in.\n\tKeith: I am going to call it.\n\nHomeworlds Online (SDG# 17429)\nStarted: 2010.9.26, Ended: 2010.10.21\nParticipants: TwoShort (S), bhorner (N)\nWinner: TwoShort\n\n1) bhorner: Homeworld B2 Y1 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tbhorner: Teach me something.  :)\n\n3) bhorner: Build G1 Bhorner\n\n4) TwoShort: Build G1 Twoshort\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) bhorner: Discover Y1 Bhorner G3 Stab\n\n8) TwoShort: Build Y2 Twoshort\n\n9) bhorner: Build Y2 Stab\n\n10) TwoShort: Build Y2 Twoshort\n\n11) bhorner: Discover Y2 Stab G2 Rush\n\n12) TwoShort: Trade Y2 G2 Twoshort\n\n13) bhorner: Build Y2 Rush\n\tbhorner: Your last move scares me!\n\tTwoShort: I was wondering if you would sac your 2 to move your 1 in and blow up my yellows; that would put us back to the beginning, but me with as first-player, so slightly negative for you.  But I think (hope) this will be worse for you :)\r\n  Anyway, since you asked, I&#39;ve been looking for something to teach you, but so far you&#39;re not doing anything obviously wrong, just a few not-quite-what-I&#39;d-do things:  I don&#39;t use a yellow (or green) homeworld star, so I have the option of growing more of them relative to the catastrophe threat; and I grow twice before moving out to have a second ship left at my homeworld so I can grow more ways there.  \n\n14) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n15) bhorner: Build G1 Bhorner\n\n16) TwoShort: Sacrifice G2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\tbhorner: Yeah, I saw that too, I can&#39;t remember the exact details, but one option left you with an extra small and your turn, and one left us even with your turn...  So I kept searching for something else.\r\n\r\nI&#39;m used to playing with 4 or 5, I know the 2 player version will be different, but at the very beginning I didn&#39;t know how to play.  I think blue yellow is the strongest homeworld with more than 2 players...  I don&#39;t know if it will translate to 2 though...\n\n17) bhorner: Build Y3 Stab\n\n18) TwoShort: Trade Y2 R2 Twoshort\n\n19) bhorner: Move Y3 Stab Bhorner\n\n20) TwoShort: Build Y2 Twoshort\n\n21) bhorner: Trade Y3 R3 Bhorner\n\n22) TwoShort: Move Y3 Bluestar Stab\n\tbhorner: Wow, is it over that quick?\n\tbhorner: er... half over?\n\tbhorner: nm, I always see the worst first, I think I can hold on for a while longer.\n\tTwoShort: At first I thought it was over, then I decided it was good for me, but not over, then I decided it was over, then I decided it was not over, and even good for you, now I&#39;m wondering if it&#39;s over...\r\nWhen I stick to a conclusion for a whole minute, I&#39;ll let you know :)\n\n23) bhorner: Discover G1 Bhorner Y3 Patience\n\n24) TwoShort: Build G1 Twoshort\n\n25) bhorner: Discover Y2 Rush B1 Crazy\n\n26) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort Bluestar\nMove G3 Bluestar Patience\n\n27) bhorner: Build R1 Bhorner\n\n28) TwoShort: Build R1 Twoshort\n\n29) bhorner: Build Y2 Stab\n\n30) TwoShort: Sacrifice R1 Twoshort\nAttack G1 Patience\n\n31) bhorner: Move Y2 Crazy Bluestar\n\tbhorner: I really wish you&#39;d be a little more impulsive and impatient...  I&#39;ll have to look this over again later.\n\n32) TwoShort: Discover Y3 Stab G2 Grogar\n\n33) bhorner: Move R1 Bhorner Stab\n\n34) TwoShort: Sacrifice G3 Patience\nBuild G1 Twoshort\nBuild G2 Twoshort\nBuild G3 Patience\n\n35) bhorner: Sacrifice Y2 Stab\nMove Y2 Bluestar Twoshort\nMove Y2 Rush Twoshort\n\n36) TwoShort: Sacrifice R2 Twoshort\nAttack Y2 Twoshort\nAttack Y2 Twoshort\n\n37) bhorner: Build Y2 Stab\n\n38) TwoShort: Trade Y2 R2 Twoshort\n\tbhorner: Ah, a miscalculation, thought I would still have a y2 left.  I think it&#39;s pretty far gone at this point though, so I&#39;ll leave it.\n\n39) bhorner: Move Y1 Stab Bluestar\n\n40) TwoShort: Sacrifice G3 Patience\nBuild G2 Patience\nBuild G3 Patience\nBuild Y2 Bluestar\n\n41) bhorner: Build R1 Stab\n\n42) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Patience Bhorner\nMove G1 Patience Bhorner\n\n43) bhorner: Sacrifice R1 Stab\nAttack Y1 Bluestar\n\n44) TwoShort: Sacrifice G3 Patience\nBuild G3 Bhorner\nBuild Y2 Twoshort\nBuild Y3 Grogar\n\n45) bhorner: Attack G3 Bhorner\n\n46) TwoShort: Discover Y3 Grogar B3 Bonzai\nCatastrophe Bhorner Green\n\n47) bhorner: Build R1 Stab\n\tbhorner: Ah, you taught me something after all.  :)\n\n48) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Grogar Bonzai\nMove Y3 Bonzai Bhorner\nMove Y3 Bonzai Bhorner\n\tbhorner: I thought I could cat first, then do other stuff... that&#39;s how we&#39;ve always played.  I looked up the rules!  Whoops...  you had (have) me in a real pickle there!\n\n49) bhorner: Move Y2 Stab Bhorner\nCatastrophe Bhorner Yellow\n\n50) TwoShort: Sacrifice R2 Twoshort\nAttack Y1 Bluestar\nAttack Y1 Bluestar\n\n51) bhorner: Trade R3 G3 Bhorner\n\tTwoShort: Thanks for the game; I hope it was fun and/or educational :)\n\tbhorner: Certainly it&#39;s foregone, but it&#39;s not over yet!  And it _has_ been fun and educational...  At one point I just kind of gave up for a couple turns because there was too much going on to take in!\n\n52) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: Well that&#39;s embarrassing, I totally missed that... \n\n53) bhorner: Build G1 Bhorner\n\n54) TwoShort: Sacrifice Y2 Bluestar\nMove G1 Twoshort Bhorner\nMove G2 Twoshort Bhorner\nCatastrophe Bhorner Green\n\n\nHomeworlds Online (SDG# 17417)\nStarted: 2010.9.26, Ended: 2010.9.29\nParticipants: bhorner (S), rootbier (N)\nWinner: bhorner\n\n\tbhorner: Here&#39;s the rematch.  :)\n\nHomeworlds Online (SDG# 17496)\nVariants: &quot;Unrated&quot;\nStarted: 2010.9.29, Ended: 2010.10.3\nParticipants: dlwillson (S), Keith (N)\nWinner: dlwillson\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: Lets see if I can hold off a little longer this time.\n\n2) dlwillson: H B3 Y1 G3\n\n3) Keith: Build G1 Keith\n\tdlwillson: This is my favorite starting position\r\n\n\tKeith: Not with the red planet.  That seems to be the preference of the top tier.  Why is this your favorite starting position.\n\n4) dlwillson: B G1 Dlwillson\n\tdlwillson: I like the early mobility and red always being a ship. They like the early trade to yellow and room for more yellow and planetary defense system.\n\n5) Keith: Trade G1 Y1 Keith\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Keith: Build Y2 Keith\n\n8) dlwillson: B Y2 Dlwillson\n\tdlwillson: Whew. Good thing I can count... :-)\n\n9) Keith: Discover Y1 Keith G3 Forrest\n\n10) dlwillson: D Y1 Dlwillson G2 Spubit\n\n11) Keith: Build Y3 Forrest\n\n12) dlwillson: B Y3 Spubit\n\n13) Keith: Discover Y3 Forrest G2 Ariel\n\n14) dlwillson: T Y2 R2 Dlwillson\n\n15) Keith: Build Y2 Forrest\n\tdlwillson: Too much green, I think. Sticking with it?\n\tdlwillson: To be clearer: Splitting your yellows is a no-brainer, but I don&#39;t think moving to another green is a good idea. I think you want to move to a blue, so you can start to trade off some of your yellow to other things. The advantage to going green is that if I trade out one of my yellows to keep you from building another battleship, you can just build the yellow I trade, and you still have a nice place to build the battleship on a subsequent turn. I guess green&#39;s not so bad...\n\tKeith: Since last game trading yellow meant you got it I was aiming clearing them out.  Unless of course a yellow catastrophe were to happen at your home world.  Maybe too much green.  Once the greens thin down enough you have that sacrifice a G3 and get it back cycle.  Though at this point I still have a G3 so maybe it is an opportunity.\r\n\r\nI am sticking with my move.\n\n16) dlwillson: D Y3 Spubit B3 Thingum\n\n17) Keith: Build Y3 Ariel\n\n18) dlwillson: M Y3 Thingum Keith\n\n19) Keith: Move Y1 Forrest Keith\nCatastrophe Keith Yellow\n\n20) dlwillson: B G1 Dlwillson\n\tdlwillson: Have you heard of the gun rule? When the other guy goes for his gun...\n\tKeith: I have heard of the gun rule.  But all I could see was that Y3.\n\n21) Keith: Move Y3 Ariel Keith\n\tKeith: When the other guy goes for his gun... blow him up?\n\n22) dlwillson: B Y1 Spubit\n\tdlwillson: Yes. If the other guy is in the house with a gun,  blow him up, taking out half the house if necessary... :-)\n\n23) Keith: Trade Y3 R3 Keith\n\n24) dlwillson: T G1 B1 Dlwillson\n\n25) Keith: Build Y2 Ariel\n\n26) dlwillson: M B1 Dlwillson Spubit\n\n27) Keith: Move Y2 Forrest Spubit\n\n28) dlwillson: Trade Y1 B1 Spubit\n\tKeith: That was fast.  Probably not a good sign.\n\n29) Keith: Sacrifice R3 Keith\nAttack B1 Spubit\nAttack B1 Spubit\nAttack Y1 Spubit\n\n30) dlwillson: B G1 Dlwillson\n\tdlwillson: What&#39;s my objective now? A moment ago, it was to be the only guy in your house with a gun. What is it now?\n\tdlwillson: You still have the advantage of multiple valuable targets. I have only one viable target right now.\n\tKeith: I am not sure what your objective is now.  Overload me on blue?\n\n31) Keith: Build G1 Keith\n\n32) dlwillson: D G1 Dlwillson Y2 Dingo\n\n33) Keith: Build B2 Spubit\n\n34) dlwillson: Move G1 Dingo Keith\n\tdlwillson: Yes, and that was a decent remedy for the threat. It would have been better to build another red first.\n\tdlwillson: You lost a turn doing it that turn, because now you have go trade back into red. You should be fine, though.\n\n35) Keith: Trade G3 R3 Keith\n\tKeith: I did not feel like I had time to build a red first.\n\n36) dlwillson: Build G1 Dlwillson\n\tdlwillson: Let&#39;s play another game of Cannon. I&#39;ll challenge you.\n\n37) Keith: Sacrifice Y3 Ariel\nMove B1 Spubit Dlwillson\nMove B1 Spubit Dlwillson\nMove B2 Spubit Dlwillson\nCatastrophe Dlwillson Blue\n\tKeith: Cannon sounds good.  You have me on the fence with Homeworlds.  I can&#39;t think it like I used to, however, my interest is rekindled and I am debating whether to put that much effort into it.\n\n38) dlwillson: Build G2 Keith\n\tdlwillson: Actually, I&#39;ve got a standing challenge for Cannon. Just join the game. But it&#39;s rated, so you better play to win. :-)\n\tdlwillson: Or, if you feel like walking me through a lot of strategy, just challenge me with an unrated game.\n\n39) Keith: Build Y1 Ariel\n\tKeith: I will set up an unrated game with you going first.\n\n40) dlwillson: Trade G1 B1 Keith\n\tdlwillson: I&#39;ve lost this one, but I&#39;ll see how long I can hold on. Maybe a few more turns. We&#39;ll see.\n\tKeith: grrr too much focus on trying to finish you off.  \n\n41) Keith: Attack B1 Keith\n\tKeith: Wait a minute.  The next green is a g3.\n\tdlwillson: I ~really~ wish SDG had more strict time limits on players. Like, if you haven&#39;t signed in in a year, your account drops off.\r\nAnd, if you haven&#39;t taken a turn in 90 days, you auto-resign.\r\nAnd, if you don&#39;t act on a challenge in 7 days, and you&#39;re not &quot;away&quot;, you lose the match.\r\nOK, I&#39;m not sure that last one actually works, but you know what I mean. Some sanity limits would be nice and would make for more interesting reports.\n\tKeith: I guess it is not an issue but continuing to ignore my home system is.\n\tKeith: In theory there is removal after a year.  Aaron does not keep up with those things like he used to.  The auto resign would be good.  There are a lot of dead Homeworlds games.\n\tKeith: I am going to redo the same move.  I may be losing a game I had tied up but I need to learn how if that is the case.\n\n42) dlwillson: Sacrifice R2 Dlwillson\nAttack B1 Keith\nAttack G1 Keith\n\n43) Keith: Attack B1 Keith\n\tdlwillson: &lt;insert randomly selected evil snicker&gt;\n\tKeith: Now I get it.\n\n44) dlwillson: Trade G1 B1 Keith\n\n45) Keith: Sacrifice Y2 Ariel\nMove Y1 Spubit Dlwillson\nMove Y2 Spubit Dlwillson\n\n46) dlwillson: Trade G2 B2 Keith\nCatastrophe Keith B\n\tdlwillson: This is the tightest end I&#39;ve ever seen, I think.\n\n\tKeith: Thank you for the lesson.  I could not see that end game extending from not attacking the g1 when it showed up at my homeworld.\n\tdlwillson: Really, you played very well. The critical moments were the times you didn&#39;t go for your gun in time.\n\tdlwillson: I think you&#39;re as good or better than me, if you want to start playing rated games.\n\tKeith: I think I have two bad tendencies: 1) start a defensive move one turn late, 2) start an offensive series one turn early.  I am more inclined to sacrifice. \r\n\r\nHaving to blow up half my house was interesting.  \n\tKeith: I am not sure yet if I want to get back into serious play\\rated games.  If I do I will be taking turns a lot slower.  I had sped things up since I saw that it was your preference in the comments of one of your games.\n\nHomeworlds Online (SDG# 17483)\nStarted: 2010.10.1, Ended: 2010.10.6\nParticipants: bhorner (S), TomClem (N)\nWinner: TomClem\n\n1) TomClem: Homeworld Y1 B2 G3\n\n2) bhorner: Homeworld Y1 G3 Y3 *\n\n3) TomClem: Build G1 Tomclem\n\n4) bhorner: Build Y1 Bhorner\n\tbhorner: I thought I would try something crazy.  :)\n\n5) TomClem: Trade G3 Y3 Tomclem\n\n6) bhorner: Discover Y1 Bhorner G2 Stab\n\n7) TomClem: Build Y2 Tomclem\n\tTomClem: nice job shutting me out of y1&#39;s...\n\tbhorner: Yeah, I&#39;m sure it will hurt me badly later.  :)\n\n8) bhorner: Build Y2 Stab\n\n9) TomClem: Trade Y2 R2 Tomclem\n\n10) bhorner: Discover Y1 Stab B3 Rush\n\n11) TomClem: Build G1 Tomclem\n\n12) bhorner: Build Y2 Stab\n\tTomClem: I think I just let you back into this game!\n\n13) TomClem: Move G1 Tomclem Rush\n\tbhorner: We&#39;ll see, things don&#39;t seem good yet...\n\n14) bhorner: Discover Y2 Stab G3 Hope\n\n15) TomClem: Sacrifice R2 Tomclem\nAttack Y1 Rush\nPass\n\n16) bhorner: Discover Y2 Stab B3 Damn\n\n17) TomClem: Trade Y3 R3 Tomclem\n\n18) bhorner: Trade Y2 B2 Damn\n\n19) TomClem: Build Y2 Rush\n\n20) bhorner: Build Y2 Hope\n\n21) TomClem: Discover Y1 Rush G2 Land\n\tTomClem: that would have all been a lot easier if i had traded y3 to r3 instead of y2 to r2 a few moves back!  Grrrrrrr!\n\n22) bhorner: Sacrifice B2 Damn\nTrade Y2 G2 Hope\nTrade Y3 R3 Bhorner\n\tbhorner: this is terrible.  :)\n\n23) TomClem: Build G1 Tomclem\n\n24) bhorner: Build R1 Bhorner\n\n25) TomClem: Discover G1 Tomclem Y3 Fear\n\tTomClem: post here when you are done for the night.\n\n26) bhorner: Move Y2 Hope Land\n\tbhorner: done for the night.  :)\n\n27) TomClem: Build G2 Tomclem\n\n28) bhorner: Sacrifice R1 Bhorner\nAttack Y1 Land\n\n29) TomClem: Build G3 Rush\n\tbhorner: For real this time.  :)\n\n30) bhorner: Build R1 Bhorner\n\n31) TomClem: Build R1 Tomclem\n\n32) bhorner: Move Y2 Land Hope\n\n33) TomClem: Trade G3 Y3 Rush\n\n34) bhorner: Sacrifice G2 Hope\nBuild Y2 Hope\nBuild Y3 Land\n\tbhorner: nice big.\n\n35) TomClem: Discover Y2 Rush G2 Gold\n\n36) bhorner: Discover Y1 Land G3 Layaway\n\tTomClem: Thanks.  I thought it was a worthy sacrifice.  we will see if there is something I haven&#39;t accounted for.  Definitely need to keep you from locking up yellow!\n\n37) TomClem: Move G2 Tomclem Layaway\n\n38) bhorner: Sacrifice Y3 Land\nMove Y2 Hope Tomclem\nMove Y2 Hope Tomclem\nMove Y1 Layaway Tomclem\nCatastrophe Tomclem Y\n\n39) TomClem: Build G2 Rush\n\n40) bhorner: Move R1 Bhorner Tomclem\n\n41) TomClem: Sacrifice R1 Tomclem\nAttack R1S Tomclem\n\n42) bhorner: Build R1 Bhorner\n\n43) TomClem: Sacrifice Y2 Gold\nMove R1 Tomclem Bhorner\nMove R3 Tomclem Bhorner\nCatastrophe Bhorner Red\n\n\nHomeworlds Online (SDG# 17606)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.2, Ended: 2010.10.23\nParticipants: Uglyfoot (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) goulo: Trade Y1 R1 Goulo\n\tUglyfoot: have a good game.\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\tgoulo: BTW there is now a Subdivision ladder, in case you are interested in joining!\n\n7) goulo: Build R1 Goulo\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) goulo: Discover R1 Goulo Y1 Citroneto\n\n10) Uglyfoot: Discover Y1 Uglyfoot R2 Out\n\n11) goulo: Build Y2 Goulo\n\n12) Uglyfoot: Move G1 Uglyfoot Out\n\n13) goulo: Build Y2 Goulo\n\n14) Uglyfoot: Build Y2 Out\n\n15) goulo: Move Y2 Goulo Citroneto\n\n16) Uglyfoot: Discover Y2 Out G1 Walky\n\n17) goulo: Move Y2 Goulo Walky\n\n18) Uglyfoot: Build Y3 Out\n\n19) goulo: Build Y3 Goulo\n\n20) Uglyfoot: Build G1 Uglyfoot\n\n21) goulo: Trade Y3 G3 Goulo\n\n22) Uglyfoot: Build G2 Out\n\n23) goulo: Build Y3 Goulo\n\n24) Uglyfoot: Trade G1 B1 Uglyfoot\n\n25) goulo: Sacrifice R1 Citroneto\nAttack Y2 Walky\n\n26) Uglyfoot: Move B1 Uglyfoot Out\n\n27) goulo: Sacrifice Y3 Goulo\nMove G3 Goulo Citroneto\nMove G3 Citroneto Out\nMove G3 Out Uglyfoot\n\n28) Uglyfoot: Move Y3 Out Uglyfoot\n\n29) goulo: Trade Y3 R3 Goulo\n\n30) Uglyfoot: Sacrifice G2 Out\nBuild G1 Uglyfoot\nBuild G2 Uglyfoot\nCatastrophe Uglyfoot G\n\n31) goulo: Move Y2 Citroneto Out\n\n32) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n33) goulo: Build R1 Goulo\n\n34) Uglyfoot: Discover B1 Out Y1 Nexus\n\n35) goulo: Attack Y1 Out\n\n36) Uglyfoot: Attack Y1 Out\n\n37) goulo: Trade R3 Y3 Goulo\n\n38) Uglyfoot: Trade B1 R1 Nexus\n\n39) goulo: Build Y3 Goulo\n\tgoulo: I guess Homeworlds doesn&#39;t have a ko rule... :)\n\n40) Uglyfoot: Build Y3 Out\n\n41) goulo: Move Y2 Walky Out\nCatastrophe Out Y\n\n42) Uglyfoot: Build G1 Uglyfoot\n\n43) goulo: Move Y2 Walky Out\n\n44) Uglyfoot: Sacrifice G1 Out\nBuild R2 Nexus\n\n45) goulo: Move Y3 Goulo Nexus\n\n46) Uglyfoot: Discover R2 Nexus B2 Port\n\n47) goulo: Sacrifice R1 Goulo\nAttack R1 Nexus\n\n48) Uglyfoot: Build G1 Uglyfoot\n\n49) goulo: Move Y3 Nexus Port\n\n50) Uglyfoot: Trade G1 R1 Uglyfoot\n\n51) goulo: Sacrifice R1 Nexus\nAttack R2 Port\n\n52) Uglyfoot: Build G1 Uglyfoot\n\n53) goulo: Build Y1 Goulo\n\n54) Uglyfoot: Discover G1 Uglyfoot Y2 Movit\n\n55) goulo: Trade Y3 G3 Port\n\n56) Uglyfoot: Build G1 Movit\n\n57) goulo: Build G2 Port\n\n58) Uglyfoot: Trade G1 B1 Uglyfoot\n\n59) goulo: Build G1 Port\n\n60) Uglyfoot: Build G2 Movit\n\n61) goulo: Sacrifice Y2 Out\nMove G1 Port Uglyfoot\nMove G1 Uglyfoot Movit\nCatastrophe Movit G\n\n62) Uglyfoot: Discover B1 Uglyfoot Y2 Movit2\n\n63) goulo: Build G1 Port\n\n\tgoulo: Thanks for the game!\n\nHomeworlds Online (SDG# 17508)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.2, Ended: 2010.10.5\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld G3 B2 R3\n\n2) TwoShort: Homeworld B1 R3 G3\n\tTwoShort: Howdy.\n\n3) AdamBadura: Build R1 Adambadura\n\n4) TwoShort: Build G1 Twoshort\n\n5) AdamBadura: Build R1 Adambadura\n\n6) TwoShort: Trade G1 R1 Twoshort\n\n7) AdamBadura: Trade R1 Y1 Adambadura\n\n8) TwoShort: Build G1 Twoshort\n\n9) AdamBadura: Trade R1 B1 Adambadura\n\n10) TwoShort: Trade G1 Y1 Twoshort\n\n11) AdamBadura: Build R1 Adambadura\n\n12) TwoShort: Build Y1 Twoshort\n\n13) AdamBadura: Build Y2 Adambadura\n\n14) TwoShort: Build Y2 Twoshort\n\n15) AdamBadura: Discover Y2 Adambadura G1 Shipyard\n\n16) TwoShort: Trade Y2 G2 Twoshort\n\n17) AdamBadura: Build Y2 Adambadura\n\n18) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n19) AdamBadura: Trade Y1 G1 Adambadura\n\n20) TwoShort: Discover G2 Twoshort B2 Bluestar\n\n21) AdamBadura: Build G1 Adambadura\n\n22) TwoShort: Build G2 Twoshort\n\n23) AdamBadura: Trade G1 B1 Adambadura\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluestar\n\n25) AdamBadura: Move B1 Adambadura Shipyard\n\n26) TwoShort: Trade G2 Y2 Bluestar\n\n27) AdamBadura: Trade Y2 G2 Shipyard\n\n28) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n29) AdamBadura: Sacrifice G1 Adambadura\nBuild B2 Adambadura\n\n30) TwoShort: Discover G3 Bluestar Y3 Yellonia\n\tAdamBadura: Now its clear why your rank is so high... ;)\n\tAdamBadura: There is no light at the end of my time-and-space-travel tunnel. ;D\n\n31) AdamBadura: Sacrifice G2 Shipyard\nBuild B3 Shipyard\nBuild B3 Shipyard\n\tTwoShort: You&#39;ve been playing an excellent game.  Only in the last turn or two have I started to be less worried... which sometimes leads me to do something stupid, so I&#39;d better be careful :)\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\n33) AdamBadura: Trade B3 R3 Shipyard\n\n34) TwoShort: Sacrifice G3 Yellonia\nBuild Y3 Grogar\nBuild G1 Yolonda\nBuild G2 Yolonda\n\n35) AdamBadura: Trade R3 G3 Adambadura\n\tAdamBadura: As much as I like to deny my opponent some thecnology I hate when this happens to me. :)\n\n36) TwoShort: Move G1 Yolonda Shipyard\n\n37) AdamBadura: Sacrifice Y2 Adambadura\nMove B3 Shipyard Yolonda\nMove R3 Shipyard Yolonda\n\n38) TwoShort: Sacrifice Y3 Grogar\nMove G2 Yolonda Shipyard\nMove G2 Shipyard Adambadura\nMove G1 Shipyard Adambadura\nCatastrophe Adambadura Green\n\n39) AdamBadura: Attack G2 Yolonda\n\n40) TwoShort: Sacrifice Y2 Bluestar\nMove Y3 Bluestar Shipyard\nMove Y3 Shipyard Adambadura\n\n\tAdamBadura: No point in continuing this. Congratulations although it was way too easy for you :)...\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 17612)\nVariants: &quot;No undo, Sinister&quot;\nStarted: 2010.10.3, Ended: 2010.11.11\nParticipants: AdamBadura (S), zara2stra (N), goulo (E)\nWinner: zara2stra\n\n1) zara2stra: Homeworld G3 Y1 B3\n\n2) goulo: Homeworld G3 B2 Y3\n\n3) AdamBadura: Homeworld G3 B1 R3\n\tgoulo: Ah, just like the good old days!\n\n4) zara2stra: Build B1 Zara2stra\n\n5) goulo: Build Y1 Goulo\n\n6) AdamBadura: Build R1 Adambadura\n\n7) zara2stra: Trade B1 Y1 Zara2stra\n\tAdamBadura: Was this kill all or kill on the left?\n\n8) goulo: Trade Y1 G1 Goulo\n\tgoulo: &quot;Sinister&quot; = kill on the left\n\tgoulo: (listed at the top under &quot;Variant&quot; info)\n\n9) AdamBadura: Build R1 Adambadura\n\n10) zara2stra: Build B1 Zara2stra\n\n11) goulo: Build G1 Goulo\n\n12) AdamBadura: Trade R1 Y1 Adambadura\n\n13) zara2stra: Trade B1 R1 Zara2stra\n\n14) goulo: Trade G1 R1 Goulo\n\n15) AdamBadura: Trade R1 G1 Adambadura\n\tgoulo: BTW I recommend the 2-player game Ordo. I&#39;ve played it 3 times now and it&#39;s an interesting subtle abstract.\n\n16) zara2stra: Build B1 Zara2stra\n\n17) goulo: Build G1 Goulo\n\n18) AdamBadura: Build R1 Adambadura\n\n19) zara2stra: Trade B1 G1 Zara2stra\n\n20) goulo: Discover G1 Goulo Y1 Citroneto\n\n21) AdamBadura: Build Y2 Adambadura\n\n22) zara2stra: Build B1 Zara2stra\n\n23) goulo: Build Y2 Goulo\n\n24) AdamBadura: Discover Y2 Adambadura G2 Drydocks\n\n25) zara2stra: Discover Y1 Zara2stra R2 Mostlyharmless\n\n26) goulo: Build G2 Citroneto\n\n27) AdamBadura: Build Y2 Drydocks\n\n28) zara2stra: Move G1 Zara2stra Mostlyharmless\n\tAdamBadura: Look into game 17692 and learn from my mistakes.\n\n29) goulo: Discover Y2 Goulo R1 Rubeneto\n\n30) AdamBadura: Move R1 Adambadura Drydocks\n\tgoulo: http://superdupergames.org/?page=archive_play&amp;gid=17692&amp;idx=8\r\nHa, that is pretty cool and interesting! You should post it to the Homeworlds Sessions forum at bgg.\n\n31) zara2stra: Build G2 Mostlyharmless\n\n32) goulo: Build Y2 Goulo\n\n33) AdamBadura: Build Y3 Adambadura\n\n34) zara2stra: Build Y3 Mostlyharmless\n\n35) goulo: Sacrifice G2 Citroneto\nBuild Y3 Rubeneto\nBuild G2 Citroneto\n\n36) AdamBadura: Build R2 Drydocks\n\n37) zara2stra: Sacrifice Y3 Mostlyharmless\nMove G1 Mostlyharmless Citroneto\nMove G1 Citroneto Goulo\nMove Y1 Mostlyharmless Rubeneto\n\n38) goulo: Attack G1N Goulo\n\n39) AdamBadura: Move Y2 Drydocks Rubeneto\nCatastrophe Rubeneto Y\n\n40) zara2stra: Sacrifice B1 Zara2stra\nTrade G2 Y2 Mostlyharmless\n\n41) goulo: Trade G1 B1 Goulo\n\n42) AdamBadura: Trade Y1 B1 Adambadura\n\n43) zara2stra: Build B1 Zara2stra\n\n44) goulo: Discover G2 Citroneto Y2 Citrono\n\n45) AdamBadura: Build B2 Adambadura\n\n46) zara2stra: Trade B1 G1 Zara2stra\n\n47) goulo: Discover B1 Goulo Y1 Pisero\n\n48) AdamBadura: Move B2 Adambadura Drydocks\n\n49) zara2stra: Move G1 Zara2stra Mostlyharmless\n\n50) goulo: Build G2 Citrono\n\n51) AdamBadura: Discover G1 Adambadura R2 Outpost\n\tgoulo: I have been watching some of the BGG Essen game demo videos, reading reports, etc and wish I had gone to Essen this year. :)\n\tAdamBadura: Yes. Me too... However having a child (and another one on the way) makes travaling to Essen a bit hard in next few years... :(\n\n52) zara2stra: Build G2 Mostlyharmless\n\n53) goulo: Build G3 Citroneto\n\n54) AdamBadura: Build R1 Adambadura\n\n55) zara2stra: Sacrifice G2 Mostlyharmless\nBuild Y1 Mostlyharmless\nBuild Y3 Mostlyharmless\n\n56) goulo: Move B1 Pisero Citrono\n\n57) AdamBadura: Build G2 Outpost\n\n58) zara2stra: Sacrifice Y2 Mostlyharmless\nMove Y3 Mostlyharmless Citroneto\nMove Y3 Citroneto Outpost\n\n59) goulo: Discover G1 Citroneto R2 Rubeno\n\n60) AdamBadura: Sacrifice G2 Outpost\nBuild Y1 Adambadura\nBuild Y2 Drydocks\n\n61) zara2stra: Build Y3 Mostlyharmless\n\n62) goulo: Build R3 Goulo\n\n63) AdamBadura: Discover Y1 Adambadura G2 Shipyard\n\n64) zara2stra: Attack G1S Outpost\n\n65) goulo: Sacrifice Y2 Goulo\nMove G1 Rubeno Adambadura\nMove G2 Citrono Adambadura\n\n66) AdamBadura: Move R3 Adambadura Shipyard\n\n67) zara2stra: Sacrifice Y3 Mostlyharmless\nMove G1 Mostlyharmless Citroneto\nMove G1 Citroneto Goulo\nDiscover G1 Outpost B1 Aeon\n\n68) goulo: Move G1 Goulo Citroneto\n\n69) AdamBadura: Build R2 Adambadura\n\n70) zara2stra: Build B2 Zara2stra\n\n71) goulo: Attack G1N Goulo\n\n72) AdamBadura: Build R3 Shipyard\n\tgoulo: One of you should challenge me to Alien City. :)\n\n73) zara2stra: Move B2 Zara2stra Outpost\n\n74) goulo: Move G2 Citrono Adambadura\nCatastrophe Adambadura G\n\n75) AdamBadura: Discover R1 Adambadura G2 Runaways\n\n76) zara2stra: Build G1 Aeon\n\tAdamBadura: As to Alien City I still don&#39;t know the rules. Something is wrong either with me or with them as I tried at least 3 times and failed every time... ;)\n\tgoulo: They are strange rules when you read them, I agree! All the information is there, and I think they&#39;re even clear and complete rules, and not very complicated, yet I still sometimes have to check things to be sure I&#39;m not confused. :) If I ever make a physical set (I just need to make 20 tiles...), we can try playing in person...\n\n77) goulo: Sacrifice G1 Goulo\nBuild B2 Citrono\n\n78) AdamBadura: Move B1 Adambadura Runaways\n\tgoulo: BTW Lines of Action is quite nice, I&#39;m enjoying it lately. A modern classic abstract game (from 1969)\n\n79) zara2stra: Move B2 Outpost Aeon\n\n80) goulo: Discover B2 Citrono R3 Rubenego\n\n81) AdamBadura: Sacrifice Y2 Drydocks\nMove R3 Shipyard Zara2stra\nMove R3 Shipyard Zara2stra\n\n82) zara2stra: Attack R3S Zara2stra\n\n83) goulo: Sacrifice G1 Citroneto\nBuild B3 Citrono\n\n84) goulo: Build Y2 Goulo\n\tAdamBadura: An interesting situation. I hoped I will be quick enough. As it seems I wasn&#39;t and now goulo will win.\n\tAdamBadura: zara2stra, unless we prevent goulo from killing me in his next move we will lose. I have only one B ship (in Runaways) which I could move (by sacrificing some Y ship) to Citrono.\r\n\r\nBut this is not enough obviously. You would have to move your B ship (from Aeon) too. Also by sacrificing your Y ship.\r\n\r\nThis would prevent goulo from winning in next move. Are you willing to do it?\n\tgoulo: haha! I wondered if you would propose that. :)\r\n\r\nBTW I am exploring costs of acrylic laser cutting, as a possible way to make Alien City tiles. :)\n\tAdamBadura: That is one of the things that puts me away from Alien City. It is not &quot;pure Icehouse&quot;... ;)\r\n\r\nI considered costs of laser cutting/drawing after I saw some 18xx track tiles made in wood with laser (on BGG).\n\tgoulo: BTW I thought of building a b3 at Rubenego, then decided against it exactly because you alone could move 2 blues to it, whereas at Citrono you&#39;d have to convince zara2stra to sacrifice as well. :)\n\tgoulo: My Alien City will almost pure icehouse. I don&#39;t want to use &quot;domes&quot;, but simply small pyramids, for example. So only the board will be non-pyramids - and that&#39;s true for many of the icehouse games that use a board. :)\n\tAdamBadura: Can you somehow notify zara2stra that I am awaiting his decisions here? As he likely wont come here until I make a move.\n\tgoulo: You can geekmail him at BGG; he is zara2stra there.\n\tzara2stra: Sorry guys, I just read the message on BGG - if there&#39;s a situation like this in the future, just mail me: zara2stra@gmail.com. As for your question, I&#39;ll help you catastrophe citrono, if you&#39;ll also withdraw the r3 from my home system at the same turn. \n\tAdamBadura: Its a high price considering you already gained R3 and if we don&#39;t prevent goulo we both lose, not just me... Let me consider this...\n\tgoulo: Ha, surely no price is too high to avoid losing immediately! :)\n\tgoulo: You should be required to move your r3 back to drydocks so there can then be a red catastrophe there more easily. :)\n\tAdamBadura: Also moving both B and R requires me to sacrifice an Y3 rather then Y2...\n\tAdamBadura: Which leaves me defencless in my homeworld. It seems the only way to avoid loosing is to convince zara2stra to make a move which will make him lose earlier... ;)\n\n85) zara2stra: Move R3 Zara2stra Drydocks\n\tzara2stra: That wasn&#39;t nice.\n\tAdamBadura: Yes. But it seems that goulo&#39;s victory was unavoidable anyway...\n\tgoulo: wow, that&#39;s a complex situation now!\n\n86) goulo: Sacrifice Y2 Goulo\nMove R1 Goulo Adambadura\nMove R1 Adambadura Drydocks\nCatastrophe Drydocks R\n\tAdamBadura: Yes. That is why I love this game so much.\r\n\r\nBy the way. Will any of you be on Gratislavia? On the first day (Saturday) I will be among the staff, but likely on Sunday I will come as a gamer.\n\tgoulo: A2na and I are going out of town for the long weekend, so unfortunately we will miss Gratislavia. Bad timing. :/\n\tgoulo: Your resignation is an interesting example of &quot;what do you do when you can&#39;t win?&quot; I.e. you could have kept playing and lost, with me winning. Or you could resign, leaving a complex situation where you lost, and it&#39;s unclear whether I or zara2stra will win. So either way you lose. If zara2stra wins now, then you did kingmaking. Or did you? Or was it kingmaking regardless of who wins now, since your resigning prevented my imminent victory and made the situation complex and unclear? Some say you should never resign from a multi-player game. Etc.\r\n\r\nI suspect a BGG thread about this game would get many diverse comments. :)\n\tAdamBadura: You are free to post it on BGG. ;)\r\n\r\nI resigned as I knew that me staying in the game has two possibilities: 1) either I will convince zara2stra to make a move bad for him which would prevent you from winning and allow me to win before you rebuild an threat or 2) I will soon lose to you.\r\n\r\nFirst one would be a great achievement. More diplomatic/negotiation than strategic. But still a good one (or at least for me: I like this aspect of gaming). But clearly zara2stra foreseen my evil plans and this will not happen.\r\n\r\nSecond does not change my situation to the current one (me resigning). Although it may change yours, so lets think about it.\r\n\r\nMy resignation makes the game unclear to you. So it could possibly take your victory. (Or maybe it didn&#39;t: if I kept playing we would go into destroying your B threat and then it would be a race for you and zara2stra who first destroys me. Keep in mind I already had to do it once in a previous game, I had to destroy you to prevent zara2stra from doing it as I could have won but required more moves than zara2stra...)\r\n\r\nAlso I like to see it as it is often interpreted in Through the Ages where player leaving the game is formalized and allowed explicitly by the rules. Playing against someone in TtA requires some sacrifices (of actions) and if the attacked player resigned from the game in response you do not gain anything while you already payed the costs. So hitting the weakest player or doing a fatal blow is risky. This does not translate directly to this game where destruction of your enemy is the only way of winning. However I do like to think that a good threat must take into account resignation of defender. So you cannot rush to much and sacrifice to much as you might end up exposed.\r\n\r\nAll in all now you have some more gaming... ;)\n\n87) zara2stra: Attack R3S Zara2stra\n\tzara2stra: I will be on Gratislavia on sunday - I&#39;ll borrow an IceHouse set from Ryslaw.\n\n88) goulo: Build Y2 Goulo\n\n89) zara2stra: Sacrifice Y3 Outpost\nMove R3 Zara2stra Drydocks\nMove G1 Aeon Goulo\nMove G1 Aeon Goulo\n\n90) goulo: Sacrifice R3 Goulo\nAttack G1N Goulo\nAttack G1N Goulo\nPass\n\n91) zara2stra: Sacrifice Y1 Mostlyharmless\nMove B2 Aeon Goulo\n\n92) goulo: Sacrifice Y2 Goulo\nDiscover G1 Goulo Y1 Pisereto\nMove G1 Goulo Pisereto\n\n93) zara2stra: Build B1 Goulo\n\n94) goulo: Sacrifice G3 Citroneto\nBuild Y1 Goulo\nBuild B3 Citrono\nBuild B3 Rubenego\n\n95) zara2stra: Sacrifice R3 Drydocks\nAttack Y1E Goulo\nPass\nPass\n\n96) goulo: Trade Y3 R3 Goulo\n\n97) zara2stra: Sacrifice B3 Zara2stra\nTrade B2 R2 Goulo\nTrade B1 R1 Goulo\nTrade Y1 R1 Goulo\nCatastrophe Goulo R\n\n\tzara2stra: Thanks for the game, but goulo should be the winner. In my opinion, when Adam resigned, he shifted the balance to my advantage: My homeworld was safe for a time, because Goulo&#39;s ships where earlier targeting an entirely different system, and I was free to carry out the plan I already had. All in all, I feel that Adam resigning was unfair. \n\tAdamBadura: Maybe indeed it was.\r\n\r\nBut maybe as I already suggested my resignation was a punishment of a weak victory plan goulo had... ;)\n\tzara2stra: Anyway, I&#39;m eager to exact my revenge live on sunday :D\n\tgoulo: Hope you got to play today! We were out of town at a different event where I got to play 4 games of RAMbots, woot. :)\n\tAdamBadura: No. Somehwo we didn&#39;t meet today although I was there from 12 to 16.\n\nHomeworlds Online (SDG# 17331)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.5, Ended: 2010.10.17\nParticipants: daselva (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) daselva: Homeworld B1 R2 G3\n\n3) Jesse: Build G1 Jesse\n\tdaselva: hello...greetings\n\tJesse: Hello.  Have a good game.\n\n4) daselva: Build G1 Daselva\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) Jesse: Build G1 Jesse\n\n8) daselva: Build G1 Daselva\n\n9) Jesse: Trade G1 B1 Jesse\n\n10) daselva: Build G1 Daselva\n\n11) Jesse: Build G1 Jesse\n\n12) daselva: Trade G1 R1 Daselva\n\n13) Jesse: Trade G1 R1 Jesse\n\n14) daselva: Discover R1 Daselva G3 S1\n\n15) Jesse: Discover R1 Jesse G2 Goober\n\n16) daselva: Trade G1 B1 Daselva\n\n17) Jesse: Move B1 Jesse Goober\n\n18) daselva: Sacrifice B1 Daselva\nTrade R1 Y1 S1\n\n19) Jesse: Build Y2 Jesse\n\n20) daselva: Build Y2 S1\n\n21) Jesse: Move Y1 Jesse Goober\n\n22) daselva: Move Y1 S1 Daselva\n\n23) Jesse: Build R1 Goober\n\n24) daselva: Build G1 Daselva\n\n25) Jesse: Build R2 Goober\n\n26) daselva:\nDiscover Y1 Daselva B3 S2\n\n27) Jesse: Move R2 Goober S1\n\n28) daselva: Move Y2 S1 Goober\n\n29) Jesse: Build R2 Goober\n\n30) daselva: Sacrifice G3 Daselva\nBuild Y2 S2\nBuild Y3 Goober\nBuild Y3 Daselva\n\n31) Jesse: Build Y3 Goober\nCatastrophe Goober Y\n\n32) daselva: Trade Y2 G2 S2\n\n33) Jesse: Trade R2 Y2 Goober\n\n34) daselva: Build G1 S2\n\n35) Jesse: Build R2 S1\n\n36) daselva: Trade G1 B1 S2\n\n37) Jesse: Build R3 Goober\n\n38) daselva: Discover B1 S2 G2 S3\n\n39) Jesse: Move R3 Goober S2\n\n40) daselva: Sacrifice G2 S2\nBuild B2 S3\nBuild B2 S3\n\n41) Jesse: Build R3 S1\n\n42) daselva: Move Y1 S2 S3\n\n43) Jesse: Sacrifice Y2 Goober\nMove R3 S1 Daselva\nMove R3 S2 Daselva\n\n44) daselva: Attack R3 Daselva\n\n45) Jesse: Sacrifice R2 S1\nAttack R3 Daselva\nAttack Y3 Daselva\n\n46) daselva: Move B2 S3 Jesse\n\n47) Jesse: Sacrifice R3 Daselva\nAttack B2 Jesse\nAttack Y1 Daselva\nAttack G1 Daselva\n\n\tJesse: Thank you for playing, too.\n\nHomeworlds Online (SDG# 15942)\nStarted: 2010.10.5, Ended: 2010.11.1\nParticipants: Uglyfoot (S), lorgar (N)\nWinner: Uglyfoot\n\n1) lorgar: Homeworld G3 B1 Y3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) lorgar: Build Y1 Lorgar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) lorgar: Trade Y1 G1 Lorgar\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Colony\n\n7) lorgar: Build Y1 Lorgar\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) lorgar: Discover G1 Lorgar B2 Concretejungle\n\n10) Uglyfoot: Build G2 Colony\n\n11) lorgar: Build G2 Concretejungle\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) lorgar: Trade G1 R1 Concretejungle\n\n14) Uglyfoot: Build R2 Uglyfoot\n\n15) lorgar: Build R2 Concretejungle\n\n16) Uglyfoot: Trade R1 Y1 Uglyfoot\n\n17) lorgar: Trade R1 Y1 Concretejungle\n\n18) Uglyfoot: Build Y2 Uglyfoot\n\n19) lorgar: Move G2 Concretejungle Lorgar\n\n20) Uglyfoot: Move Y2 Uglyfoot Colony\n\n21) lorgar: Trade Y1 G1 Concretejungle\n\n22) Uglyfoot: Discover G2 Colony Y2 Far\n\n23) lorgar: Trade G2 R2 Lorgar\n\n24) Uglyfoot: Build G1 Uglyfoot\n\n25) lorgar: Move R2 Lorgar Far\n\n26) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack R2 Far\nPass\n\n27) lorgar: Move Y1 Lorgar Concretejungle\n\n28) Uglyfoot: Build G2 Colony\n\n29) lorgar: Build G2 Concretejungle\n\n30) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Far\nBuild R1 Far\n\n31) lorgar: Move R2 Concretejungle Lorgar\n\n32) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Uglyfoot\nBuild Y3 Colony\n\n33) lorgar: Build Y3 Lorgar\n\n34) Uglyfoot: Move Y3 Colony Concretejungle\n\n35) lorgar: Move R2 Lorgar Far\n\n36) Uglyfoot: Sacrifice R2 Far\nAttack R2 Far\nAttack Y1 Concretejungle\n\n37) lorgar: Trade Y3 R3 Lorgar\n\n38) Uglyfoot: Build Y3 Colony\n\n39) lorgar: Move R3 Lorgar Concretejungle\n\n40) Uglyfoot: Sacrifice R1 Far\nAttack R3 Concretejungle\n\n\tlorgar: let&#39;s call it a day, shall we?\n\tUglyfoot: I think that is a good idea.  Thanks for the game!\n\nHomeworlds Online (SDG# 17406)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.5, Ended: 2010.10.21\nParticipants: Lurch (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld G2 B1 Y3\n\n2) Lurch: Homeworld Y1 B3 G3\n\n3) lorgar: Build Y1 Lorgar\n\n4) Lurch: Build G1 Lurch\n\n5) lorgar: Trade Y1 G1 Lorgar\n\n6) Lurch: Trade G1 Y1 Lurch\n\n7) lorgar: Build G1 Lorgar\n\n8) Lurch: Discover Y1 Lurch G2 Alpha\n\n9) lorgar: Discover G1 Lorgar B3 Metatron\n\n\nHomeworlds Online (SDG# 17622)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.6, Ended: 2010.10.18\nParticipants: medcatt (S), Lurch (N)\nWinner: Lurch\n\n1) Lurch: Homeworld B1 Y2 G3\n\n2) medcatt: Homeworld B2 G1 Y3\n\n3) Lurch: Build G1 Lurch\n\n4) medcatt: Build Y1 Medcatt\n\n5) Lurch: Build G1 Lurch\n\n\nHomeworlds Online (SDG# 17485)\nStarted: 2010.10.6, Ended: 2012.2.27\nParticipants: medcatt (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 17630)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.6, Ended: 2010.10.11\nParticipants: dlwillson (S), AdamBadura (N)\nWinner: dlwillson\n\n1) AdamBadura: Homeworld B1 G3 R3\n\n2) dlwillson: H B2 Y1 G3\n\n3) AdamBadura: Build R1 Adambadura\n\tdlwillson: Have a good game!\n\n4) dlwillson: B G1 Dlwillson\n\n5) AdamBadura: Trade R1 G1 Adambadura\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) AdamBadura: Build G1 Adambadura\n\n8) dlwillson: B G1 Dlwillson\n\n9) AdamBadura: Trade G1 Y1 Adambadura\n\n10) dlwillson: T G1 Y1 Dlwillson\n\n11) AdamBadura: Build Y2 Adambadura\n\n12) dlwillson: B Y2 Dlwillson\n\n13) AdamBadura: Discover Y1 Adambadura G2 Shipyard\n\n14) dlwillson: D Y1 Dlwillson G3 Awk\n\n15) AdamBadura: Build G1 Adambadura\n\n16) dlwillson: D Y2 Dlwillson B3 Sed\n\n17) AdamBadura: Discover G1 Adambadura R2 Outpost\n\n18) dlwillson: B R1 Dlwillson\n\n19) AdamBadura: Build Y2 Adambadura\n\n20) dlwillson: B Y3 Awk\n\n21) AdamBadura: Build Y3 Shipyard\n\n22) dlwillson: M Y3 Awk Outpost\n\n23) AdamBadura: Sacrifice Y1 Shipyard\nDiscover G1 Outpost B3 Changer\n\n24) dlwillson: M R1 Dlwillson Changer\n\n25) AdamBadura: Sacrifice G1 Changer\nBuild G1 Adambadura\n\n26) dlwillson: B R1 Dlwillson\n\tdlwillson: Ha! Nice teleport. :-)\n\n27) AdamBadura: Build R2 Adambadura\n\n28) dlwillson: M R1 Dlwillson Awk\n\n29) AdamBadura: Move R2 Adambadura Shipyard\n\n30) dlwillson: B G1 Dlwillson\n\n31) AdamBadura: Sacrifice G1 Adambadura\nBuild R2 Adambadura\n\n32) dlwillson: S G3 Dlwillson\nB Y1 Outpost\nB Y3 Awk\nB R3 Dlwillson\n\n33) AdamBadura: Build R3 Shipyard\n\n34) dlwillson: T R3 G3 Dlwillson\n\n35) AdamBadura: Discover Y3 Shipyard R3 Watchtower\n\tdlwillson: \n\n36) dlwillson: M G1 Dlwillson Sed\n\n37) AdamBadura: Move Y2 Adambadura Shipyard\n\n38) dlwillson: S Y2 Sed\nM R1 Changer Shipyard\nM R1 Awk Shipyard\nC Shipyard R\n\n39) AdamBadura: Build Y2 Adambadura\n\n40) dlwillson: B G1 Dlwillson\n\n41) AdamBadura: Build G2 Adambadura\n\n42) dlwillson: S Y3 Outpost\nD G1 Dlwillson Y3 Grep\nM G1 Sed Outpost\nM G1 Outpost Adambadura\nC Adambadura G\n\n43) AdamBadura: Move R3 Adambadura Watchtower\n\n44) dlwillson: S G1 Grep\nB Y3 Outpost\n\n45) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Watchtower Dlwillson\nMove R3 Watchtower Dlwillson\n\tAdamBadura: Its getting very exciting... ;)\n\n46) dlwillson: A R3 Dlwillson\n\n\tdlwillson: Typo... :-}\n\tAdamBadura: Hmmm... I expected that move and yet I must have make a mistake as now obviously it is worse than I hoped for... ;)\n\tdlwillson: With important games, when I&#39;m not sure how the board will REALLY look, I get out the real pyramids and set it up. I wanted to do that this time,  before I stepped into your trap, but I couldn&#39;t find an appropriate time without holding up the game. Any way... let&#39;s see what happens next.\n\tAdamBadura: Now I know why I have made the bad move. Somehow I got fixed on thining that to attack me in your system you will have to sacrifice that R1 ship. If you would than the game would have been mine I guess. But you didn&#39;t have to and my move was bad. On the other hand I think I would have lost anyway. Thanks for the game.\r\n\r\nWith the real pyramids you have to own them... ;) (But I hope I will finally buy them; what slows me down is that most of their games I play here...)\n\tdlwillson: Thanks for the game, Adam. You played well, even if I won.\n\nHomeworlds Online (SDG# 17628)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.7, Ended: 2010.10.21\nParticipants: Lurch (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Lurch: Homeworld B1 Y3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Lurch: Build G1 Lurch\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Lurch: Trade G1 Y1 Lurch\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) Lurch: Build G1 Lurch\n\n9) agentofchaos: Trade Y1 R1 Agentofchaos\n\n\nHomeworlds Online (SDG# 17629)\nStarted: 2010.10.7, Ended: 2010.10.19\nParticipants: agentofchaos (S), rootbier (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 17337)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.10, Ended: 2010.11.9\nParticipants: random56 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) random56: Homeworld G2 B3 Y3\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Have fun, Random!\n\n4) random56: Build Y1 Random56\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) random56: Discover Y1 Random56 G1 Bob\n\n7) dlwillson: B Y2 Dlwillson\n\n8) random56: Build Y2 Bob\n\n9) dlwillson: T Y1 R1 Dlwillson\n\n10) random56: Build Y1 Random56\n\n11) dlwillson: B G1 Dlwillson\n\n12) random56: Trade Y1 B1 Random56\n\n13) dlwillson: D Y2 Dlwillson G2 Gecko\n\n14) random56: Move B1 Random56 Bob\n\n15) dlwillson: M G1 Dlwillson Gecko\n\n16) random56: Trade Y2 R2 Bob\n\n17) dlwillson: D G1 Gecko B1 Bluebird\n\n18) random56: Build Y1 Random56\n\n19) dlwillson: B Y2 Gecko\n\n20) random56: Build Y2 Bob\n\n21) dlwillson: B G1 Dlwillson\n\tdlwillson: I can capture that r2 for free, with my g3. You probably want to do something else. Build a y2 maybe or trade into green.\n\tdlwillson: Or, build another red. But rushing me with an R2 when I have a large and red in the system, does seem to make sense at this point.\n\tdlwillson: It would make sense if you had a bunch more red, maybe. No...  not even then, because if you did, I&#39;d sac my R1 to attack your R2, even though I don&#39;t need to, in order to keep my red count low and avoid a potential catastrophe. You can&#39;t get anything good from this move right now. And maybe not ever.\n\n22) random56: Trade Y3 R3 Random56\n\n23) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB G3 Bluebird\n\n24) random56: Build R1 Random56\n\trandom56: thank you for the tip, I dont get to play in real life, and so it can be hard to stratigise some times\n\n25) dlwillson: T G3 Y3 Bluebird\n\tdlwillson: No problem. It&#39;s a serious game. Takes time to learn it.\n\n26) random56: Move R2 Bob Gecko\n\trandom56: bluebird........really, it is hard to play on line, i like to see everything at once and it is hard to scroll up and down to look at what i need to do, but bluebird thats like a slap in the face, but all in good fun. I am laughing\n\n27) dlwillson: S Y2 Gecko\nD G2 Dlwillson B2 Chameleon\nD Y2 Gecko B1 Mudskipper\n\tdlwillson: Try control mouse wheel down to zoom your browser out. That should let you see the whole board at 1 time. No insult meant by naming my system bluebird just funning. \n\n28) random56: Build B2 Bob\n\n29) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB G3 Chameleon\nBuild G3 Bluebird\n\n30) random56: Move B2 Bob Gecko\n\n31) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y2 Mudskipper\nB Y3 Bluebird\n\n32) random56: Build Y3 Bob\n\n33) dlwillson: S Y3 Bluebird\nM G3 Bluebird Random56\nM G3 Chameleon Bluebird\nM G3 Bluebird Random56\n\n\nHomeworlds Online (SDG# 17458)\nStarted: 2010.10.11, Ended: 2010.10.12\nParticipants: mathochist (S), goblin981 (N)\nWinner: mathochist\n\n1) goblin981: Homeworld B2 G3 Y3\n\n\nHomeworlds Online (SDG# 17084)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.11, Ended: 2010.10.15\nParticipants: SilentTitan (S), goblin981 (N)\nWinner: SilentTitan\n\n1) goblin981: Homeworld Y1 G2 B3\n\n2) SilentTitan: Homeworld G2 B3 Y3\n\n3) goblin981: Build B1 Goblin981\n\n4) SilentTitan: Build Y1 Silenttitan\n\n5) goblin981: Discover B1 Goblin981 R3 Hoth\n\n6) SilentTitan: Discover Y1 Silenttitan Y1 Garnv\n\n7) goblin981: Trade B1 R1 Hoth\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) goblin981: Build B1 Goblin981\n\n10) SilentTitan: Trade Y2 R2 Silenttitan\n\n11) goblin981: Build B1 Goblin981\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) goblin981: Discover B1 Goblin981 G3 Al&#39;thor\n\n14) SilentTitan: Build Y2 Silenttitan\n\tSilentTitan: ok. so you are learning the game? yes?  so I&#39;d like to help you out and get you going here. at this point you need to take back the last move you made and pick a different move say discover a new system with your b1, because all I have to do on my turn would be to call for a catasrophe and all your blue is removed from your homeworld which is a wiin for me. You see anytime you have four of the same color in a system, either player can call for a catastrophe and all that color is put back into the bank.  \n\n15) goblin981: Build B1 Al&#39;thor\n\tgoblin981: thanks for the advice.  Yes I am learning.  Forgot about catastrophes.\n\n16) SilentTitan: Trade Y2 G2 Silenttitan\n\n17) goblin981: Build B2 Al&#39;thor\n\n18) SilentTitan: Discover Y2 Silenttitan G1 Sigmacray\n\n19) goblin981: Trade B2 Y2 Al&#39;thor\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) goblin981: Trade Y2 R2 Al&#39;thor\n\n22) SilentTitan: Build Y2 Silenttitan\n\n23) goblin981: Build B2 Al&#39;thor\n\n24) SilentTitan: Build Y2 Sigmacray\n\n25) goblin981: Trade B3 Y3 Goblin981\n\n26) SilentTitan: Move Y2 Sigmacray Hoth\n\n27) goblin981: Build Y3 Goblin981\n\n28) SilentTitan: Move Y2 Hoth Goblin981\nCatastrophe Goblin981 Yellow\n\n29) goblin981: Trade B2 Y2 Al&#39;thor\n\n30) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Sigmacray Hoth\nMove Y2 Hoth Goblin981\n\n31) goblin981: Build B2 Goblin981\n\n32) SilentTitan: Sacrifice R2 Silenttitan\nAttack B1 Goblin981 N\nAttack B2 Goblin981 N\n\n\nHomeworlds Online (SDG# 17484)\nStarted: 2010.10.11, Ended: 2010.10.24\nParticipants: Tank_7 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Tank_7: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Tank_7: Build G1 Tank_7\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Tank_7: Discover G1 Tank_7 B3 Meklon\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Tank_7: Build G1 Meklon\n\n9) TwoShort: Build Y2 Twoshort\n\n10) Tank_7: Build G1 Tank_7\n\n11) TwoShort: Build G2 Twoshort\n\n12) Tank_7: Trade G3 Y3 Tank_7\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) Tank_7: Move Y3 Tank_7 Meklon\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n16) Tank_7: Build G2 Tank_7\n\n17) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Twoshort Y2 Yolonda\nDiscover Y2 Grogar G3 Greenland\n\n18) Tank_7: Trade G2 R2 Tank_7\n\n19) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Greenland\nBuild Y3 Greenland\n\n20) Tank_7: Build G2 Tank_7\n\n21) TwoShort: Trade Y3 R3 Twoshort\n\n22) Tank_7: Trade G2 R2 Tank_7\n\n23) TwoShort: Move Y3 Greenland Tank_7\n\n24) Tank_7: Move Y3 Meklon Tank_7\n\n25) TwoShort: Sacrifice R3 Twoshort\nAttack Y3 Tank_7\nAttack R2 Tank_7\nAttack R2 Tank_7\n\tTank_7: gg :)\n\n26) Tank_7: Build G2 Tank_7\n\tTwoShort: thanks for the game\n\n27) TwoShort: Sacrifice R2 Tank_7\nAttack G1 Tank_7\nAttack G2 Tank_7\n\n\nHomeworlds Online (SDG# 17673)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.12, Ended: 2010.10.12\nParticipants: goblin981 (S), SilentTitan (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 17670)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.12, Ended: 2010.10.17\nParticipants: dlwillson (S), goblin981 (N)\nWinner: dlwillson\n\n1) goblin981: Homeworld R1 B2 G3\n\n2) dlwillson: H R3 B1 G3\n\n3) goblin981: Build G1 Goblin981\n\n4) dlwillson: B G1 Dlwillson\n\n5) goblin981: Trade G1 Y1 Goblin981\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) goblin981: Discover Y1 Goblin981 Y3 Rygal-v\n\n8) dlwillson: B G1 Dlwillson\n\n9) goblin981: Build G1 Goblin981\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) goblin981: Trade G1 R1 Goblin981\n\n12) dlwillson: B B1 Dlwillson\n\n13) goblin981: Discover Y1 Rygal-v Y1 Barkor\n\n14) dlwillson: D B1 Dlwillson R2 Armor\n\tdlwillson: How many games have you played?\n\n15) goblin981: Build R1 Goblin981\n\n16) dlwillson: B B2 Dlwillson\n\n17) goblin981: Discover Y1 Barkor G3 Lyon\n\n18) dlwillson: D B1 Dlwillson R2 Shield\n\n19) goblin981: Trade R1 Y1 Goblin981\n\tdlwillson: You probably don&#39;t want to do that.\n\tgoblin981: you&#39;re right, thanks. \n\n20) dlwillson: B G1 Dlwillson\n\n21) goblin981: Move R1 Goblin981 Lyon\n\n22) dlwillson: B B2 Dlwillson\n\n23) goblin981: Build Y2 Lyon\n\n24) dlwillson: S G3 Dlwillson\nBuild B3 Armor\nB B3 Shield\nB B3 Shield\n\n25) goblin981: Build Y2 Goblin981\n\n26) dlwillson: S B2 Dlwillson\nT B3 G3 Shield\nT B3 Y3 Shield\n\n27) goblin981: Trade Y2 B2 Goblin981\n\n28) dlwillson: S G3 Shield\nB B3 Dlwillson\nB Y2 Dlwillson\nB B3 Shield\n\n29) goblin981: Move B2 Goblin981 Lyon\n\n30) dlwillson: S B2 Dlwillson\nT B3 G3 Dlwillson\nT B3 R3 Armor\n\n31) goblin981: Discover B2 Lyon B2 Kilzar\n\n32) dlwillson: M Y1 Dlwillson Armor\n\n33) goblin981: Trade B2 G2 Kilzar\n\n34) dlwillson: S G3 Dlwillson\nB Y2 Shield\nB Y3 Armor\nB Y3 Dlwillson\n\n35) goblin981: Move Y2 Lyon Kilzar\n\n36) dlwillson: S Y2 Shield\nD Y3 Shield R3 Sword\nM B3 Shield Sword\n\n37) goblin981: Sacrifice G2 Kilzar\nBuild Y2 Goblin981\nBuild G1 Goblin981\n\tgoblin981: how do you sacrifice?  I can&#39;t get it to work.\n\tdlwillson: S ship system\r\nExample: s g3 dlwillson\r\nYou have to have the ship to sac, of course...\n\tgoblin981: hmm still can&#39;t get it.  here&#39;s what i&#39;m typing:\r\n\r\ns y2 lyon\r\nbuild r1 lyon\r\nbuild r2 lyon\n\tdlwillson: To get two builds, you have to sac a g2. If you sac a y2, you get two moves.\n\tgoblin981: oh ok, didn&#39;t realise it was that specific. Thanks. \n\n38) dlwillson: S Y2 Dlwillson\nM Y3 Sword Goblin981\nM B3 Sword Goblin981\n\n39) goblin981: Attack B3S Goblin981\n\tdlwillson: One way to win the game is to move in with 2 big ships when the other guy can only capture 1 at a time.\n\tgoblin981: which it looks like you&#39;re about to do.\n\n40) dlwillson: S R3 Armor\nA G3 Goblin981\nA B3 Goblin981\nA Y2 Goblin981\n\n41) goblin981: Build G1 Goblin981\n\n42) dlwillson: T Y3 R3 Goblin981\n\n43) goblin981: Build Y2 Goblin981\n\n44) dlwillson: B Y3 Goblin981\nC Goblin981 Y\n\n45) goblin981: Trade G1 Y1 Goblin981\n\n46) dlwillson: S R3 Goblin981\nA Y1 Goblin981\nA G1 Goblin981\nPass\n\n\tdlwillson: Good game. Challenge me to an unrated game and I&#39;ll teach you what I know.\n\nHomeworlds Online (SDG# 17675)\nStarted: 2010.10.12, Ended: 2010.11.4\nParticipants: TwoShort (S), shmil1 (N)\nWinner: TwoShort\n\n1) shmil1: Homeworld B3 G2 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Howdy\n\n3) shmil1: Build Y1 Shmil1\n\n4) TwoShort: Build G1 Twoshort\n\n5) shmil1: Build Y1 Shmil1\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) shmil1: Trade Y1 G1 Shmil1\n\n8) TwoShort: Build G1 Twoshort\n\n9) shmil1: Trade Y1 B1 Shmil1\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) shmil1: Build B1 Shmil1\n\n12) TwoShort: Build G1 Twoshort\n\n13) shmil1: Trade B1 R1 Shmil1\n\n14) TwoShort: Build G2 Yolonda\n\n15) shmil1: Build G2 Shmil1\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n17) shmil1: Discover G1 Shmil1 Y1 Slunce\n\n18) TwoShort: Discover G2 Yolonda B2 Borbor\n\n19) shmil1: Move G1 Slunce Yolonda\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Borbor\nBuild Y1 Twoshort\nPass\n\n21) shmil1: Discover B1 Shmil1 Y1 Slunce2\n\n22) TwoShort: Discover Y1 Twoshort B3 Bozon\n\n23) shmil1: Move B1 Slunce2 Yolonda\n\n24) TwoShort: Trade G2 R2 Borbor\n\n25) shmil1: Build G2 Yolonda\nCatastrophe Yolonda Green\n\n26) TwoShort: Build G1 Borbor\n\n\nHomeworlds Online (SDG# 17687)\nStarted: 2010.10.12, Ended: 2010.10.15\nParticipants: TwoShort (S), goblin981 (N)\nWinner: TwoShort\n\n1) goblin981: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) goblin981: Build Y1 Goblin981\n\n4) TwoShort: Build G1 Twoshort\n\n5) goblin981: Trade Y1 G1 Goblin981\n\n6) TwoShort: Build G2 Twoshort\n\n7) goblin981: Build G2 Goblin981\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) goblin981: Trade G2 R2 Goblin981\n\n10) TwoShort: Build G2 Twoshort\n\n11) goblin981: Build R1 Goblin981\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) goblin981: Discover R2 Goblin981 Y3 Pxiii\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n15) goblin981: Move G1 Goblin981 Pxiii\n\n16) TwoShort: Trade G2 R2 Bluestar\n\n17) goblin981: Build Y1 Goblin981\n\n18) TwoShort: Trade G2 Y2 Bluestar\n\n19) goblin981: Discover G1 Pxiii R1 Reddy\n\n20) TwoShort: Build G2 Bluestar\n\tTwoShort: I can just capture that; if you want to take an undo...   In any case, I&#39;ve been enjoying the quick game, but now I&#39;m headed to lunch...\n\tgoblin981: you&#39;re right, that was a bad move.\r\nI&#39;m headed out for food too.  Back in an hour or so.\r\n\r\n\n\n21) goblin981: Move R2 Pxiii Reddy\n\n22) TwoShort: Discover G2 Bluestar G3 Greedy\n\n23) goblin981: Build R2 Reddy\n\n24) TwoShort: Move R2 Bluestar Reddy\nCatastrophe Reddy Red\n\n25) goblin981: Build R1 Goblin981\n\n26) TwoShort: Build G1 Bluestar\n\n27) goblin981: Build R2 Goblin981\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Greedy\nBuild G3 Twoshort\n\n29) goblin981: Move R2 Goblin981 Greedy\n\n30) TwoShort: Trade G2 R2 Bluestar\n\n31) goblin981: Attack G2S Greedy\n\n32) TwoShort: Sacrifice R2 Bluestar\nAttack R2 Greedy\nAttack G2 Greedy\n\n33) goblin981: Build R2 Goblin981\n\n34) TwoShort: Sacrifice Y2 Bluestar\nMove R2 Greedy Goblin981\nMove G2 Greedy Goblin981\nCatastrophe Goblin981 Red\n\n35) goblin981: Move Y3 Goblin981 Greedy\n\n36) TwoShort: Trade G2 R2 Twoshort\n\n37) goblin981: Move Y3 Greedy Bluestar\n\n38) TwoShort: Sacrifice R2 Twoshort\nAttack Y1 Goblin981\nPass\n\n\nHomeworlds Online (SDG# 17688)\nStarted: 2010.10.12, Ended: 2010.10.16\nParticipants: dethdukk (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 17641)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.12, Ended: 2010.10.15\nParticipants: daselva (S), Lurch (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 17692)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.13, Ended: 2010.10.13\nParticipants: AdamBadura (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 G2 B3\n\n2) AdamBadura: Homeworld B2 G3 R3\n\n3) mneme: Build B1 Mneme\n\n4) AdamBadura: Build R1 Adambadura\n\n5) mneme: Build B1 Mneme\n\n6) AdamBadura: Trade R1 B1 Adambadura\n\n7) mneme: Trade B3 Y3 Mneme\n\n8) AdamBadura: Build B2 Adambadura\n\n9) mneme: Sacrifice Y3 Mneme\nDiscover B1 Mneme G3 Its\nDiscover B1 Its Y1 Atrap\nMove B1 Atrap Adambadura\nCatastrophe Adambadura B\n\n\tmneme: Good game.\r\n\n\tAdamBadura: That was something I didn&#39;t expect. Sure I knew you could do that but I though that sacrificing 3-ship in early game is to much to make it worth. Somehow I skipped asking myself how would the board look like after that move.\r\n\r\nYou humiliated me. But I deserved that. Thanks for the lesson!\n\tmneme: You&#39;re welcome! I think, in a sense, everyone needs to get hit with this sort of &quot;fool&#39;s mate&quot; at some point in order to remember to make sure you never leave yourself in a position where you can be denied both yellow and blue.  I think I&#39;ve been hit with it once and executed it twice.  Hopefully, the next game we play will be more interesting; I think you had a good position before you made the mistake of swapping to blue!\n\nHomeworlds Online (SDG# 17697)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.14, Ended: 2010.10.20\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld G3 B1 R3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\n3) AdamBadura: Build R1 Adambadura\n\n4) TwoShort: Build B1 Twoshort\n\n5) AdamBadura: Trade R3 B3 Adambadura\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) AdamBadura: Build B2 Adambadura\n\n8) TwoShort: Build B2 Twoshort\n\n9) AdamBadura: Trade B3 Y3 Adambadura\n\n10) TwoShort: Trade B2 G2 Twoshort\n\n11) AdamBadura: Discover B2 Adambadura G2 Drydocks\n\n12) TwoShort: Build B2 Twoshort\n\n13) AdamBadura: Build B2 Drydocks\n\n14) TwoShort: Discover B1 Twoshort Y3 Yolonda\n\n15) AdamBadura: Trade B2 Y2 Drydocks\n\n16) TwoShort: Move G2 Twoshort Yolonda\n\n17) AdamBadura: Build R1 Adambadura\n\n18) TwoShort: Trade B2 R2 Twoshort\n\n19) AdamBadura: Move R1 Adambadura Drydocks\n\n20) TwoShort: Build B2 Yolonda\n\n21) AdamBadura: Build B2 Drydocks\n\n22) TwoShort: Discover B2 Yolonda Y2 Yelly\n\n23) AdamBadura: Trade B2 Y2 Drydocks\n\n24) TwoShort: Build G1 Yolonda\n\n25) AdamBadura: Build R1 Adambadura\n\n26) TwoShort: Move G1 Yolonda Yelly\n\n27) AdamBadura: Build R2 Adambadura\n\n28) TwoShort: Build G1 Yelly\n\n29) AdamBadura: Move R2 Adambadura Yelly\n\n30) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Yelly\nPass\n\n31) AdamBadura: Discover Y2 Drydocks G3 Shipyard\n\n32) TwoShort: Build G1 Yolonda\n\n33) AdamBadura: Discover Y2 Drydocks G3 Watchtower\n\n34) TwoShort: Sacrifice G2 Yolonda\nBuild B2 Yelly\nBuild B3 Yolonda\n\n35) AdamBadura: Build B3 Drydocks\n\n36) TwoShort: Move B3 Yolonda Twoshort\n\n37) AdamBadura: Trade B2 G2 Drydocks\n\n38) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yelly Yolonda\nMove G1 Yolonda Drydocks\nMove G1 Yolonda Drydocks\nCatastrophe Drydocks Green\n\n39) AdamBadura: Discover R1 Adambadura G2 Betterplace\n\n40) TwoShort: Build B2 Twoshort\n\n41) AdamBadura: Build R1 Adambadura\n\n42) TwoShort: Build B3 Yelly\n\n43) AdamBadura: Build R2 Betterplace\n\n44) TwoShort: Sacrifice G1 Yelly\nBuild B3 Yolonda\n\n45) AdamBadura: Build Y1 Adambadura\n\n46) TwoShort: Sacrifice B2 Yelly\nTrade B2 G2 Yelly\nTrade B3 Y3 Twoshort\n\n47) AdamBadura: Move Y1 Adambadura Betterplace\n\n48) TwoShort: Build G1 Yelly\n\n49) AdamBadura: Trade R1 G1 Adambadura\n\n50) TwoShort: Move G1 Yelly Adambadura\n\n51) AdamBadura: Move G1 Adambadura Betterplace\n\n52) TwoShort: Sacrifice G2 Yelly\nBuild G1 Adambadura\nBuild G2 Adambadura\nCatastrophe Adambadura Green\n\n\tAdamBadura: You are beyond my reach... ;)\n\nHomeworlds Online (SDG# 17685)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.15, Ended: 2010.10.18\nParticipants: goblin981 (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld G1 B2 R3\n\n2) goblin981: Homeworld B2 G3 R3\n\n3) shmil1: Build R1 Shmil1\n\n4) goblin981: Build R1 Goblin981\n\n5) shmil1: Trade R1 Y1 Shmil1\n\n6) goblin981: Trade R1 Y1 Goblin981\n\n7) shmil1: Build R1 Shmil1\n\n8) goblin981: Build Y1 Goblin981\n\n9) shmil1: Build Y2 Shmil1\n\n10) goblin981: Discover Y1 Goblin981 B1 Protar-vi\n\n11) shmil1: Build Y2 Shmil1\n\n12) goblin981: Build Y2 Goblin981\n\n13) shmil1: Discover Y2 Shmil1 G3 Zelena\n\n14) goblin981: Build Y3 Goblin981\n\n15) shmil1: Sacrifice Y2 Shmil1\nMove Y2 Zelena Protar-vi\nMove Y2 Protar-vi Goblin981\nCatastrophe Goblin981 Yellow\n\n16) goblin981: Build R1 Goblin981\n\n17) shmil1: Discover R1 Shmil1 Y3 Zluta\n\n18) goblin981: Trade R3 G3 Goblin981\n\n19) shmil1: Move R1 Zluta Protar-vi\n\n20) goblin981: Trade R1 Y1 Goblin981\n\tshmil1: ovladnout protar vi\n\n21) shmil1: Attack Y1 Protar-vi\n\n22) goblin981: Move G3 Goblin981 Protar-vi\n\n23) shmil1: Move R1 Protar-vi Goblin981\n\n24) goblin981: Build Y2 Goblin981\n\n25) shmil1: Attack Y1 Goblin981\n\n26) goblin981: Trade Y2 R2 Goblin981\n\n27) shmil1: Build R1 Goblin981\n\n28) goblin981: Attack R1N Goblin981\n\n29) shmil1: Build R1 Goblin981\nCatastrophe Goblin981 Red\n\tshmil1: nice game :)\n\n\nHomeworlds Online (SDG# 17714)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.15, Ended: 2010.11.22\nParticipants: fnord (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) fnord: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tfnord: *waves to the assembled audience*\n\n4) fnord: Build G1 Fnord\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) fnord: Discover G1 Fnord G3 Eris\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) fnord: Build G1 Fnord\n\n9) SilentTitan: Trade G3 Y3 Silenttitan\n\n10) fnord: Trade G1 B1 Fnord\n\n11) SilentTitan: Discover Y1 Silenttitan Y1 Onestar\n\n12) fnord: Build B1 Fnord\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) fnord: Move B1 Fnord Eris\n\n15) SilentTitan: Build Y2 Silenttitan\n\n16) fnord: Build B2 Eris\n\n17) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Onestar\n\n18) fnord: Trade B2 R2 Eris\n\n19) SilentTitan: Discover Y2 Onestar G2 Twostar\n\n20) fnord: Build B2 Fnord\n\n21) SilentTitan: Trade Y3 G3 Silenttitan\n\n22) fnord: Trade B2 G2 Fnord\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Twostar\nBuild Y3 Onestar\nBuild Y3 Silenttitan\n\n24) fnord: Build G1 Eris\n\n25) SilentTitan: Discover Y2 Twostar R3 Tristar\n\n26) fnord: Move G3 Fnord Tristar\n\n27) SilentTitan: Discover Y2 Tristar R2 Ragestar\n\n28) fnord: Build G1 Tristar\n\n29) SilentTitan: Trade Y3 R3 Silenttitan\n\n30) fnord: Sacrifice G3 Tristar\nBuild G2 Tristar\nBuild G3 Tristar\nBuild G3 Fnord\n\n31) SilentTitan: Build Y3 Twostar\n\n32) fnord: Build B2 Fnord\n\n33) SilentTitan: Move Y3 Twostar Eris\n\n34) fnord: Build B2 Eris\n\n35) SilentTitan: Discover Y3 Onestar R3 Volcanoshore\n\n36) fnord: Discover B1 Fnord B3 Discordia\n\n37) SilentTitan: Move Y3 Eris Fnord\n\n38) fnord: Build B2 Fnord\n\n39) SilentTitan: Trade Y3 B3 Fnord\nCatastrophe Fnord Blue\n\n40) fnord: Discover G2 Fnord Y3 Sink\n\n41) SilentTitan: Sacrifice Y3 Twostar\nMove Y3 Volcanoshore Fnord\nMove Y1 Onestar Eris\nMove Y1 Eris Fnord\n\n42) fnord: Trade B1 Y1 Eris\n\n43) SilentTitan: Sacrifice R3 Silenttitan\nAttack G3 Fnord South\nPass\nPass\n\n\tfnord: Thought you might do that, but was wondering why you didn&#39;t do it in the previous turn.\r\n\r\nWell done, I certainly must learn to watch out for being monopolized out of any technology, especially travel.  That was quite brutal.\n\tSilentTitan: I don&#39;t believe I could get three yellow in there last turn.... I learned that trick from TooShort.  he beat me the exact same way\n\nHomeworlds Online (SDG# 17719)\nVariants: &quot;Unrated&quot;\nStarted: 2010.10.16, Ended: 2010.10.20\nParticipants: sompm (S), Gidaio (N)\nWinner: Gidaio\n\n1) Gidaio: Homeworld Y3 G1 B3\n\n2) sompm: Homeworld G3 Y2 B3\n\n3) Gidaio: Build B1 Gidaio (n)\n\n4) sompm: Build B1 Sompm\n\n5) Gidaio: Build B1 Gidaio (n)\n\n6) sompm: Build B2 Sompm\n\n7) Gidaio: Discover B1 Gidaio G2 Pachinko\n\n8) sompm: Discover B2 Sompm Y1 Fakaar\n\n9) Gidaio: Build B2 Pachinko\n\n10) sompm: Trade B2 G2 Fakaar\n\n11) Gidaio: Trade B1 Y1 Pachinko\n\n12) sompm: Build B1 Sompm\n\n13) Gidaio: Trade B2 R2 Pachinko\n\n14) sompm: Trade B1 R1 Sompm\n\n15) Gidaio: Move R2 Pachinko Fakaar\n\n16) sompm: Discover G2 Fakaar Y2 Runningrunning\n\n17) Gidaio: Build Y1 Pachinko\n\n18) sompm: Build B1 Sompm\n\n19) Gidaio: Build Y2 Pachinko\n\n20) sompm: Build R1 Sompm\n\n21) Gidaio: Move Y2 Pachinko Fakaar\n\n22) sompm: Trade B3 Y3 Sompm\n\n23) Gidaio: Build Y3 Pachinko\n\n24) sompm: Build B2 Sompm\n\n25) Gidaio: Sacrifice Y3 Pachinko\nMove B1 Gidaio Pachinko\nMove B1 Pachinko Fakaar\nMove B1 Fakaar Sompm\nCatastrophe Sompm Blue\n\n26) sompm: Build Y3 Sompm\n\n27) Gidaio: Move Y2 Fakaar Sompm\nCatastrophe Sompm Yellow\n\n28) sompm: Discover G2 Runningrunning B1 Youjerk\n\tGidaio: Ha! Take THAT!\n\n29) Gidaio: Move R2 Fakaar Sompm\n\n30) sompm: Build G1 Youjerk\n\tGidaio: In other words, lol.\n\tsompm: except now it won&#39;t happen again. dork.\n\tsompm: Woah. Hi. There you are.\n\n31) Gidaio: Attack R1 Sompm\n\n32) sompm: Build R1 Sompm\nCatastrophe Sompm R\n\tGidaio: Haha!\n\tsompm: good game. Seriously, how the frick did that happen?\n\n\tsompm: I can&#39;t beat me, I QUIT.\n\tGidaio: ...Nice?\n\nHomeworlds Online (SDG# 17709)\nStarted: 2010.10.17, Ended: 2010.10.21\nParticipants: TwoShort (S), goblin981 (N)\nWinner: TwoShort\n\n1) goblin981: Homeworld R1 G2 B3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) goblin981: Build B1 Goblin981\n\n4) TwoShort: Build G1 Twoshort\n\n5) goblin981: Build B1 Goblin981\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) goblin981: Trade B1 Y1 Goblin981\n\n8) TwoShort: Build G1 Twoshort\n\n9) goblin981: Discover B1 Goblin981 G3 Egg\n\n10) TwoShort: Build G1 Twoshort\n\n11) goblin981: Trade B1 G1 Egg\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) goblin981: Build Y1 Goblin981\n\n14) TwoShort: Build G2 Bluestar\n\n15) goblin981: Discover Y1 Goblin981 B3 Blutak\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n17) goblin981: Discover Y1 Blutak Y2 Dark\n\n18) TwoShort: Trade G2 Y2 Bluestar\n\n19) goblin981: Build Y2 Goblin981\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Bluestar\n\n21) goblin981: Sacrifice Y2 Goblin981\nMove Y1 Goblin981 Egg\nM Y1 Egg Bluestar\nC Bluestar Y\n\n22) TwoShort: Move Y3 Twoshort Bluestar\n\n23) goblin981: Build G2 Egg\n\n24) TwoShort: Discover G2 Bluestar B3 Bonanza\n\n25) goblin981: Move Y1 Dark Egg\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Bonanza\nBuild Y1 Bluestar\n\n27) goblin981: Build Y2 Egg\n\n28) TwoShort: Trade G2 R2 Bonanza\n\n29) goblin981: Discover G2 Egg Y2 Sheep\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild G2 Bluestar\nBuild G3 Bonanza\n\n31) goblin981: Sacrifice G2 Sheep\nBuild B1 Goblin981\nBuild B1 Goblin981\n\n32) TwoShort: Trade G3 B3 Bonanza\n\n33) goblin981: Trade B3 Y3 Goblin981\n\n34) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Bonanza Goblin981\nMove B3 Bonanza Goblin981\n\n35) goblin981: Attack G3 Goblin981\n\n36) TwoShort: Sacrifice R2 Bonanza\nAttack G3 Goblin981\nAttack Y3 Goblin981\n\n37) goblin981: Build Y2 Egg\n\n38) TwoShort: Build B2 Goblin981\nCatastrophe Goblin981 Blue\n\n\nHomeworlds Online (SDG# 17722)\nVariants: &quot;Unrated&quot;\nStarted: 2010.10.17, Ended: 2010.10.20\nParticipants: goblin981 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) goblin981: Homeworld G3 B2 Y3\n\tdlwillson: I have first turn. This is my favorite starting position. Now, you choose from banker, fortress, or goldilocks for a tiny universe.\n\tgoblin981: what does each involve?\r\nbtw thanks for teaching me.\n\tdlwillson: The g3 is a staple. Blue is pretty desirable in nearly every strategy, leaving you to choose between red and yellow. Each has advantages and disadvantages. \n\n3) dlwillson: Build G1 Dlwillson\n\tdlwillson: Banker connects to 3&#39;s. Fortress to1&#39;s. Goldie to 2&#39;s. Try to find the Homeworlds strategy page. If you can&#39;t find it, let me know and I&#39;ll send you a link.\n\tdlwillson: That works, though usually, the g3 is taken as a ship. Want to take it back or forge ahead? You have a decent shot at a TwoShort, a yellow lockout, which is a flat game-winner, played right.\n\tdlwillson: It goes like this. G1 for me. Y1 for you. If I don&#39;t trade to y1, you build it, and I&#39;m locked out of yellow ships. If I do trade, you get to build a y2.\n\tgoblin981: I&#39;ll stick with this, (and possibly find out by it&#39;s not the best start)\r\nI found the strategy page and am reading.\r\nWhat&#39;s TwoShort and yellow lockout?\n\tdlwillson: Taking a Y3 is a fine choice. The thing you don&#39;t get, is the potential to do 3 builds in one turn by sacrificing the G3. It&#39;s not a big deal in every game, and not in most games against vets, because they watch for it.\n\tdlwillson: TwoShort is the top guy on the ladder right now.\r\nI am taking some liberty by calling a yellow lockout a TwoShort, but not much. In many, many games, TwoShort goes straight for yellow denial. And if he gets it, he&#39;ll then tell you how many moves until he wins. That&#39;s how good he&#39;s gotten at playing that strategy.\n\tdlwillson: It&#39;s a pretty simple strategy, really. If you don&#39;t have enough yellow to reach me, it really doesn&#39;t matter what you do have. All I have to do is force-feed you the colors of your planets until they pop, and keep you from getting any yellow. It can be a long process.\n\tdlwillson: OK, the non-thinking round. We each build a small of our chosen ship type. I&#39;ve never seen a time when turn 2 is anything else.\n\n4) goblin981: Build Y1 Goblin981\n\n5) dlwillson: Build G1 Dlwillson\n\tgoblin981: I understand banker but why are fortress and goldilocks called that?\n\tdlwillson: And lots of thinking this round. You have a Y3, which makes me cautious. You can cross the universe in one turn. I can&#39;t. I can build three in one turn. You can&#39;t. What I&#39;m planning right now, is how to beat you to larges, lock you out of a color, not get locked out of any colors, and advance on you, all at the same time.\n\tdlwillson: So, I&#39;ll build another green, because you don&#39;t have green, and I have enough yellow to spread my green out and setup for the triple build that will carry me to a second battleship before you get one.\n\tdlwillson: Also, it&#39;d be nice to have red, but I&#39;ll let you lead on that. I&#39;ll have lots of spare ships after this. I just hope you don&#39;t go red when I DON&#39;T have spares.\n\n6) goblin981: Build Y1 Goblin981\n\tdlwillson: If you had a green, that would&#39;ve been suicide, but your two away from a toss-able green. One move to trade to green. One move to make a third ship. By then, this opportunity to RPG (rocket-propelled green) will be over.\n\tgoblin981: hmm, as I see it, I can lock you out of yellow or prevent you from locking me out of green.\r\nWhat do you suggest?\r\n\r\n\n\tdlwillson: Oh, sorry, I meant to coach you on your turn, but I got busy...\r\n\r\nYou should absolutely go for yellow denial this turn. If we both get our locks, you win the game in the long term.\n\tgoblin981: great, thanks. \n\n7) dlwillson: Discover G1 Dlwillson Y2 Slick\n\tdlwillson: So, now I&#39;m spreading out my greens. Remember, my goal is to triple build. I&#39;ll go to a Y2, not intending to stay long.\n\n8) goblin981: Discover Y1 Goblin981 G1 Green\n\tdlwillson: Fine for you, I stood up a Y2. If I keep it, your that much closer to your second battleship. If I don&#39;t, you look at your yellow denial strategy again.\n\tdlwillson: You must trade or split up your yellows. Trade Y3 to G3? Maybe. Send out a Y1, and keep building slow... Maybe. The G3 forces the split next turn. The split now, allows the trade next turn, or continued slow building. So, exploring seems better. But, what to discover?\n\tdlwillson: If you discover a G1, you can build more Y at it right away. OOPS! Part of my strategy is cramping your style there. Trading into sac&#39;able G sometime in the future looks that much better.\n\tdlwillson: Discovering an R1 lets you capture an inbound small, but that&#39;s all, and the inbound ships won&#39;t always be small, and then the red planet becomes a liability.\n\tdlwillson: Discovering a Y1 would clear some stuph out of your way for your second battleship, but there are no Y1&#39;s left...  And, you should be starting to see why it&#39;s called &quot;Fortress&quot;. The satellite system options get limited fast.\n\tdlwillson: Discovering a Blue gives you the ability to trade later. Your intent is to build lots of yellow ships, so there&#39;s a good chance you&#39;ll have two yellows at this first planet sometime soon, and having the option to trade one to another color (maybe green, maybe red) would be nice then. Since you&#39;re yellow, you&#39;ll also have the option to split when you get to two. Your next planet should probably be blue.\n\tdlwillson: After all that analysis, you need to make sure you&#39;re not giving me something by standing up a blue. Are you? No. I don&#39;t have any blue, and there&#39;re plenty of small blues in the bank, anyway. I don&#39;t have a gun, and if I move in on you, you can go for yours before I go for mine.\n\tdlwillson: Holy carp. We should print this, it&#39;s turning into a strategy guide...\n\n9) dlwillson: Build G2 Slick\n\tdlwillson: Oops. Looks like I missed a G1 in my analysis. However, standing up the green, rather than a blue, definitely gives me something. I can build a g2 now, and it&#39;s a no-brainer to do so at the forward system.\n\n10) goblin981: Build Y2 Green\n\tdlwillson: Lots to think about. I&#39;ll be back in a couple hours. Y2 looks good to you, no matter what, but what then, and keep watching for the guns to come out. (red ships)\n\n11) dlwillson: D G2 Slick B1 Sticky\n\n12) goblin981: Trade Y3 G3 Goblin981\n\n13) dlwillson: S G3 Dlwillson\nB G2 Sticky\nB G2 Slick\nB G3 Dlwillson\n\tdlwillson: I&#39;m back on my phone. It&#39;s harder to type here. On my next turn I&#39;ll be making 3 greens. Your goal is to keep me from trading any of them for yellow.\n\tdlwillson: What if you trade Y3 for G3 this turn?\n\n14) goblin981: Sacrifice G3 Goblin981\nBuild Y2 Goblin981\nBuild Y3 Goblin981\nBuild Y3 Green\n\n15) dlwillson: Build G3 Sticky\n\tdlwillson: That was as planned. Now, you can free build a Y2, or sac the G3 to build a Y2 and two of the Y3&#39;s.\n\tdlwillson: Either one is safe from catastrophe for now. Both keep me out of Y, unless I trade my large. \n\tdlwillson: Hmmm.... sac&#39;ing the g gets you the first second large, but I&#39;ll build the g3 and have two, too.\n\tdlwillson: I think sac the g3 is the better plan. You should be able to keep yellow control, if I free-build it.\n\tdlwillson: When distributing your builds, if all other things are equal setup three different sizes in a system where you can trade, to maximize your options.\n\tdlwillson: Similarly, when you are trying to control access to a color, but you need to trade, look at what your opponent has available to trade, and offer him a size that he doesn&#39;t have, or won&#39;t want to give up.\n\n16) goblin981: Trade Y1 R1 Goblin981\n\n17) dlwillson: T G1 R1 Dlwillson\n\tdlwillson: I want to swap into that last Y3, but not in my homeworld, because I have a yellow star, and adding yellow to my homeworld would make it easier for you to cause a catastrophe there.\n\tdlwillson: You probably want to consider the fact that neither of us has red right now, so for Y2, Y1, G2, you could kill off one of my stars.\n\tdlwillson: Or, you can try to preserve your yellow near-monopoly.\r\nOr, you can get a gun (red ship) and start pushing me around, if I don&#39;t get one, too.\n\tdlwillson: I have to think about your move. You don&#39;t have a monopoly on yellow, but you can beat me to the Y3, by discovering a Y3 star. But the Y3 star wouldn&#39;t do you any immediate good.\n\tdlwillson: You can kill my slick system the same way, too.\r\nYou have lots of possibilities, but nothing stands out as the best one. I&#39;ll think a bit and come back, unless you have a great idea.\n\n18) goblin981: Move Y3 Green Slick\n\tdlwillson: I really want a yellow ship, but I can&#39;t ignore the gun rule.\n\n19) dlwillson: T G3 Y3 Sticky\n\tgoblin981: gun rule?\n\n20) goblin981: Sacrifice R1 Goblin981\nAttack G1 Slick\n\tgoblin981: if I move a red ship into your system, such as sticky, can you attack me? or is the tech only mine?\n\tdlwillson: When the other guy goes for his gun (first red ship), go for yours, or get ready to get shot down.\n\tdlwillson: If you move your r1 to sticky, I can capture it, but only by sacrificing my r1 to get an attack anywhere.\n\tdlwillson: Your Y3 at slick is relatively safe, because even if I shoot my gun, it&#39;s too big for any of my slick ships to attack.\n\n21) dlwillson: T G2 B2 Sticky\n\tdlwillson: I&#39;m betting it was a bluff, and you&#39;re not really willing to give up your last red for my G2.\n\tdlwillson: Now that I&#39;ve got big yellow, you have a threat to consider. If I sac the y3, I can put both greens in your home system at once.\n\tdlwillson: You can answer the threat by getting an r2 that you could sacrifice to capture both greens. Or, you can bet I&#39;m not willing to give all that ship up to destroy one star.\n\tdlwillson: But wait! Even if you trade the y2 for an r2, I can still cat the star. Can you see how?\n\tdlwillson: So, after lots of thinking, I don&#39;t think you can save the green star. I think we&#39;ll look at making it expensive and creating a game-winning counter-attack.\n\n22) goblin981: Trade Y2 R2 Goblin981\n\n23) dlwillson: D G2 Slick Y1 Slippery\n\tgoblin981: damn, should&#39;ve taken the g2, I thought it was mine.\n\tdlwillson: Yes, and spending your last red to do it shows a surprising lack of foresight. Oh well. \n\n24) goblin981: Move R2 Goblin981 Slippery\n\n25) dlwillson: M G2 Slippery Goblin981\n\n26) goblin981: Build Y2 Goblin981\n\n27) dlwillson: B G1 Goblin981\n\n28) goblin981: Trade Y2 R2 Goblin981\n\n29) dlwillson: B B1 Sticky\n\n30) goblin981: Attack G2N Goblin981\n\n31) dlwillson: M B1 Sticky Goblin981\n\n32) goblin981: Move R2 Slippery Slick\n\n33) dlwillson: S G3 Dlwillson\nB G2 Goblin981\nB B1 Goblin981\nB B2 Goblin981\nC Goblin981 G\nC Goblin981 B\n\n\tdlwillson: That was definitely the fieriest ending I&#39;ve ever seen! Wow!\n\tgoblin981: lol damn, blew em both up.\r\ngood game, and thanks for the tips.\n\nHomeworlds Online (SDG# 17642)\nStarted: 2010.10.17, Ended: 2010.10.23\nParticipants: rootbier (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld Y3 B2 G3\n\n\nHomeworlds Online (SDG# 17702)\nStarted: 2010.10.17, Ended: 2010.10.23\nParticipants: mathochist (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 17683)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.18, Ended: 2010.11.14\nParticipants: daselva (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: Hi Daselva! Is this a teaching game or do you know the ropes already?\n\n2) daselva: Homeworld R1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) daselva: Build G1 Daselva\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\tdlwillson: Is this a teaching game or do you know the ropes already?\n\tdaselva: hello dlwilson I know how to play homeworlds but I&#39;m still a new beginner\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) dlwillson: B R1 Dlwillson\n\n8) daselva: Build Y1 Daselva\n\n9) dlwillson: B R2 Dlwillson\n\n10) daselva: Build Y2 Daselva\n\n11) dlwillson: T R2 Y2 Dlwillson\n\n12) daselva: Discover Y1 Daselva G3 S1\n\n13) dlwillson: B R2 Dlwillson\n\n14) daselva: Sacrifice G3 Daselva\nBuild Y2 S1\nBuild Y3 S1\nBuild Y3 Daselva\n\tdlwillson: You&#39;re beating me out of the gate. Good job!\n\n15) dlwillson: D Y2 Dlwillson G2 Frog\n\n16) daselva: Discover Y2 S1 R2 S2\n\n17) dlwillson: B Y3 Frog\n\n18) daselva: Trade Y3 G3 Daselva\n\n19) dlwillson: D Y3 Frog R3 Salamander\n\n20) daselva: Trade Y2 R2 Daselva\n\n21) dlwillson: M R1 Dlwillson Frog\n\n22) daselva: Move R2 Daselva S1\n\n23) dlwillson: B R3 Frog\n\n24) daselva: Build R3 S1\n\n25) dlwillson: T R2 G2 Dlwillson\n\n26) daselva: Discover Y3 S1 R2 S3\n\n27) dlwillson: S G2 Dlwillson\nB Y2 Salamander\nB Y3 Frog\n\n28) daselva: Build G1 Daselva\n\n29) dlwillson: B G1 Dlwillson\n\n30) daselva: Trade G1 B1 Daselva\n\n31) dlwillson: D R1 Frog B3 Purple\n\n32) daselva: Build B1 Daselva\n\n33) dlwillson: M R3 Frog Purple\n\n34) daselva: Move B1 Daselva S1\n\n35) dlwillson: Trade R1 G1 Purple\n\n36) daselva: Move R3 S1 Frog\n\n37) dlwillson: S R1 Dlwillson\nA R3 Frog\n\n38) daselva: Move R2 S1 S3\n\n39) dlwillson: M Y2 Frog Purple\n\n40) daselva: Move Y3 S3 Dlwillson\n\n41) dlwillson: S R3 Frog\nA Y3 Dlwillson\nPass\nPass\n\n42) daselva: Build B1 S1\n\n43) dlwillson: B R1 Purple\n\n44) daselva: Build B2 Daselva\n\n45) dlwillson: M R3 Purple S3\n\n46) daselva: Sacrifice Y1 Daselva\nMove R2 S3 S1\n\n47) dlwillson: Move Y3 Frog S1\n\n48) daselva: Sacrifice Y1 S1\nMove R2 S1 Daselva\n\n49) dlwillson: S Y3 Dlwillson\nM R1 Purple Daselva\nM R3 S3 Purple\nM R3 Purple Daselva\nC Daselva R\n\n50) daselva: Trade B2 R2 Daselva\n\n51) dlwillson: T Y2 R2 Purple\n\n52) daselva: Trade B1 Y1 S1\n\n53) dlwillson: S R2 Purple\nA B1 S1\nA Y1 S1\n\n54) daselva: Trade B1 Y1 Daselva\n\n55) dlwillson: B B1 S1\n\n56) daselva: Trade G3 R3 Daselva\n\n57) dlwillson: Build B1 S1\n\n58) daselva: Move R3 Daselva Dlwillson\n\n59) dlwillson: Sacrifice Y3 Salamander\nMove B1 S1 Daselva\nMove B1 S1 Daselva\nMove B1 S1 Daselva\nCatastrophe Daselva B\n\n\tdaselva: thank you for playing \n\tdaselva: I&#39;ve learned with those mistakes I&#39;ve done\n\tdlwillson: Very good game. I actually didn&#39;t see the big red coming, so it&#39;s a good thing I had the gun loaded in time.\n\nHomeworlds Online (SDG# 17729)\nStarted: 2010.10.18, Ended: 2010.10.26\nParticipants: mathochist (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G2 Y1 B3\n\tsompm: cool name, by the way.\n\n\nHomeworlds Online (SDG# 17681)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.20, Ended: 2010.11.7\nParticipants: SilentTitan (S), Black_Rabbit (N)\nWinner: SilentTitan\n\n1) Black_Rabbit: Homeworld G1 B2 R3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\tBlack_Rabbit: First game here, and I&#39;m a Homeworlds novice.\n\tSilentTitan: ok... If you have any questions ask... I&#39;ve been playing for a couple of years. \n\n3) Black_Rabbit: Build R1 Black_rabbit\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Black_Rabbit: Trade R1 Y1 Black_rabbit\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Black_Rabbit: Build R1 Black_rabbit\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Black_Rabbit: Discover R1 Black_rabbit Y3 Arakis\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) Black_Rabbit: Build Y1 Black_rabbit\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) Black_Rabbit: Build Y2 Black_rabbit\n\n14) SilentTitan: Discover Y2 Silenttitan R1 Charm\n\tBlack_Rabbit: UGH... I see a problem developing.  :)\n\n15) Black_Rabbit: Trade Y2 G2 Black_rabbit\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Charm\nBuild Y2 Charm\nBuild Y3 Silenttitan\n\n17) Black_Rabbit: Move G2 Black_rabbit Arakis\n\n18) SilentTitan: Build Y3 Silenttitan\n\n19) Black_Rabbit: Move Y1 Black_rabbit Arakis\n\n20) SilentTitan: Sacrifice Y2 Charm\nMove Y2 Charm Arakis\nMove Y2 Charm Arakis\nCatastrophe Arakis Yellow\n\n21) Black_Rabbit: Build Y1 Black_rabbit\n\n22) SilentTitan: Discover Y1 Silenttitan B1 Ball\n\n23) Black_Rabbit: Trade Y1 R1 Black_rabbit\n\n24) SilentTitan: Move G1 Silenttitan Ball\n\n25) Black_Rabbit: Discover R1 Black_rabbit G3 Prime\n\n26) SilentTitan: Build G2 Ball\n\n27) Black_Rabbit: Build Y1 Black_rabbit\n\n28) SilentTitan: Sacrifice G2 Ball\nBuild Y2 Silenttitan\nBuild Y2 Ball\n\n29) Black_Rabbit: Move Y1 Black_rabbit Prime\n\n30) SilentTitan: Trade Y2 R2 Ball\n\n31) Black_Rabbit: Build Y2 Black_rabbit\n\n32) SilentTitan: Discover Y3 Silenttitan B1 Cube\n\n33) Black_Rabbit: Build Y2 Black_rabbit\n\n34) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Ball Prime\nMove Y1 Prime Black_rabbit\nCatastrophe Black_rabbit Yellow\n\n35) Black_Rabbit: Build R1 Black_rabbit\n\tBlack_Rabbit: Yeah, saw that coming.  :)\n\n36) SilentTitan: Build G2 Ball\n\n\nHomeworlds Online (SDG# 17728)\nStarted: 2010.10.20, Ended: 2010.10.26\nParticipants: sompm (S), rootbier (N)\nWinner: sompm\n\n\nHomeworlds Online (SDG# 17768)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.20, Ended: 2010.11.7\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: H B2 R1 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) dlwillson: B G1 Dlwillson\n\n8) TwoShort: Build G1 Twoshort\n\n9) dlwillson: T G1 B1 Dlwillson\n\n10) TwoShort: Build Y1 Twoshort\n\n11) dlwillson: B Y2 Dlwillson\n\n12) TwoShort: Build Y2 Twoshort\n\n13) dlwillson: B Y2 Dlwillson\n\n14) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n15) dlwillson: D Y1 Dlwillson G3 G802\n\n16) TwoShort: Build Y3 Grogar\n\n17) dlwillson: B Y3 G802\n\n18) TwoShort: Discover Y1 Twoshort G2 Greenonia\n\n19) dlwillson: D Y2 Dlwillson Y3 Y9t\n\n20) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar G802\nMove Y1 Greenonia G802\nCatastrophe G802 Yellow\n\n21) dlwillson: B Y1 Dlwillson\n\n22) TwoShort: Build G1 Twoshort\n\n23) dlwillson: Build B1 Dlwillson\n\n24) TwoShort: Trade G1 Y1 Twoshort\n\n25) dlwillson: D Y1 Dlwillson G3 G901\n\n26) TwoShort: Build G1 Twoshort\n\n27) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Y9t\nBuild Y2 G901\nBuild Y3 Dlwillson\n\n28) TwoShort: Discover G1 Twoshort G2 Greenonia\n\n29) dlwillson: D B1 Dlwillson G3 G9l\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Greenonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n31) dlwillson: B B2 G9l\n\n32) TwoShort: Trade G2 R2 Twoshort\n\n\tdlwillson: Sorry for the delay of game, but this is kind of a sticky situation. Wish I had my plastic, so I could set it up.\n\tTwoShort: No problem.  I&#39;m just glad it looks sticky to you too :)\n\tdlwillson: Finally got time to set up the plastic, but it&#39;s not helping... :-(   :-)   :-/ ...\n\tdlwillson: Rats! I thought I still had a couple hours. I&#39;m so sorry for the pointless delay.\n\tdlwillson: We don&#39;t live that far apart. We can play it out in plastic, if you like, or do it again here, rated, unrated, or ladder, or we can leave it alone, according to your preference. Again, I&#39;m really sorry for timing out on you.\n\tTwoShort: Don&#39;t worry about it; I&#39;ve accidentally hit hard time a few times myself.  I&#39;d just as soon play a whole new game whenever you&#39;re up for it...\n\nHomeworlds Online (SDG# 17772)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2010.10.21, Ended: 2010.10.31\nParticipants: Gidaio (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld B1 Y2 G3\n\n2) Gidaio: Homeworld Y2 B3 G3\n\n3) sompm: Build G1 Sompm\n\tGidaio: Alright, let&#39;s do this!\n\n4) Gidaio: Build G1 Gidaio\n\n5) sompm: Trade G1 B1 Sompm\n\n6) Gidaio: Build G1 Gidaio\n\n7) sompm: Build G1 Sompm\n\n8) Gidaio: Discover G1 Gidaio Y1 China\n\n9) sompm: Build G2 Sompm\n\n10) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Gidaio\nBuild G2 Gidaio\nBuild G3 China\n\n11) sompm: Discover G1 Sompm Y3 Ishouldgetaow\n\n12) Gidaio: Trade G2 B2 Gidaio\n\n13) sompm: Build G2 Ishouldgetaow\n\n14) Gidaio: Move B2 Gidaio China\n\n15) sompm: Build G3 Sompm\n\n16) Gidaio: Trade G3 R3 China\n\n17) sompm: Discover G2 Ishouldgetaow B1 Swappyworld\n\tGidaio: China is rebelling!\n\n18) Gidaio: Move R3 China Ishouldgetaow\n\n19) sompm: Trade G3 R3 Sompm\n\n20) Gidaio: Attack G1 Ishouldgetaow\n\n21) sompm: Build G3 Sompm\n\n22) Gidaio: Build G3 Gidaio\n\n23) sompm: Discover G3 Sompm B3 Youcheekybugger\n\n24) Gidaio: Move R3 Ishouldgetaow Swappyworld\n\n25) sompm: Sacrifice G2 Swappyworld\nBuild R1 Sompm\nBuild R1 Sompm\n\n26) Gidaio: Trade B2 Y2 China\n\n27) sompm: Move R1 Sompm Youcheekybugger\n\tsompm: nocanhaz\n\n28) Gidaio: Move Y2 China Ishouldgetaow\n\n29) sompm: Move R3 Sompm Ishouldgetaow\n\n30) Gidaio: Move Y2 Ishouldgetaow Swappyworld\n\n31) sompm: Attack G1S Ishouldgetaow\n\n32) Gidaio: Trade G2 B2 Gidaio\n\tsompm: hay! when did we turn on no undo? did I miss this?\n\tsompm: er, hey.\r\n\n\n33) sompm: Move R3 Ishouldgetaow China\n\n34) Gidaio: Move G1 China Ishouldgetaow\n\n35) sompm: Move R3 China Gidaio\n\tsompm: no offense, but that may have been a bad idea.\n\n36) Gidaio: Move R3 Swappyworld Ishouldgetaow\n\tGidaio: Yeah, you won. There&#39;s no way I can combat that unless you do something stupid.\n\n37) sompm: Attack G3 Gidaio\n\n38) Gidaio: Attack G1 Ishouldgetaow\n\n39) sompm: Attack B2S Gidaio\n\tsompm: go ahead; I&#39;ll win in a turn anyways. MUHAHAHAHA.\n\n40) Gidaio: Sacrifice Y2 Swappyworld\nMove G1 Ishouldgetaow Sompm\nMove G1 Ishouldgetaow Sompm\nCatastrophe Sompm Green\n\n41) sompm: Attack G1 Gidaio\n\tGidaio: No, but I can at least go out with a bang!\n\n\nHomeworlds Online (SDG# 17780)\nStarted: 2010.10.21, Ended: 2010.10.24\nParticipants: AlphaBravo (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n\nHomeworlds Online (SDG# 17781)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.22, Ended: 2010.10.25\nParticipants: goblin981 (S), AlphaBravo (N)\nWinner: goblin981\n\n\tgoblin981: good luck dude :)\n\nHomeworlds Online (SDG# 17716)\nStarted: 2010.10.23, Ended: 2010.10.27\nParticipants: agentofchaos (S), dethdukk (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 17783)\nStarted: 2010.10.24, Ended: 2010.10.26\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Trade G1 Y1 Lorgar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) lorgar: Build Y2 Lorgar\n\n8) TwoShort: Build Y2 Twoshort\n\n9) lorgar: Trade Y2 R2 Lorgar\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) lorgar: Build Y2 Lorgar\n\n12) TwoShort: Build Y2 Grogar\n\n13) lorgar: Discover Y2 Lorgar B3 Leodagan\n\n14) TwoShort: Build Y3 Twoshort\n\n15) lorgar: Build Y3 Lorgar\n\n16) TwoShort: Sacrifice Y2 Grogar\nDiscover Y1 Grogar R3 Stopover\nMove Y1 Stopover Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: bluebird... clusterfuck, i&#39;m done!\r\n\r\nGG\n\tTwoShort: Bluebird typically involves having all your homeworld ships one color so you actually lose in an (avoidable) catastrophe.  Losing half your homeworld is often bad, but isn&#39;t necessarily the end - In this case, I&#39;m pretty sure I had you, but it would have taken me 6 or 7 moves at least...\r\n  In any case, thanks for the game! \n\nHomeworlds Online (SDG# 17795)\nStarted: 2010.10.24, Ended: 2010.10.28\nParticipants: rootbier (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 G1 Y3\n\n\nHomeworlds Online (SDG# 17803)\nStarted: 2010.10.24, Ended: 2010.10.27\nParticipants: goblin981 (S), rootbier (N)\nWinner: goblin981\n\n\nHomeworlds Online (SDG# 17809)\nVariants: &quot;Unrated&quot;\nStarted: 2010.10.24, Ended: 2010.12.14\nParticipants: sompm (S), RabidZombieNinjaSquirrel (N), Gidaio (E)\nWinner: sompm\n\n1) RabidZombieNinjaSquirrel: Homeworld B2 Y1 G3\n\n2) Gidaio: Homeworld B3 Y1 G3\n\n3) sompm: Homeworld B3 G2 Y3\n\tGidaio: Hang on, trying something out.\n\tRabidZombieNinjaSquirrel: vote yes\r\n\n\tRabidZombieNinjaSquirrel: did that work?\n\n4) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel\n\tsompm: vote accept 91\n\tGidaio: No. Type in ~vote accept 91\n\n5) Gidaio: Build G1 Gidaio\n\n6) sompm: Build Y1 Sompm\n\n7) RabidZombieNinjaSquirrel: Trade G1 R1 Rabidzombieninjasquirrel\n\tGidaio: Interesting that you started with yellow.\n\n8) Gidaio: Build G1 Gidaio\n\n9) sompm: Discover Y1 Sompm Y1 F1rst\n\n10) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel\n\n11) Gidaio: Discover G1 Gidaio Y2 P0st\n\n12) sompm: Build Y2 Sompm\n\n13) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel\n\n14) Gidaio: Build G2 Gidaio\n\n15) sompm: Build Y2 Sompm\n\n16) RabidZombieNinjaSquirrel: Trade G1 B1 Rabidzombieninjasquirrel\n\n17) Gidaio: Trade G1 R1 Gidaio\n\n18) sompm: Discover Y2 Sompm G1 L0lz\n\n19) RabidZombieNinjaSquirrel: Discover R1 Rabidzombieninjasquirrel Y3 Yellow 3 System A\n\n20) Gidaio: Build G1 Gidaio\n\n21) sompm: Build Y2 L0lz\n\n22) RabidZombieNinjaSquirrel: Build G2 Rabidzombieninjasquirrel\n\n23) Gidaio: Move G1 Gidaio P0st\n\n24) sompm: Build Y3 Sompm\n\n25) RabidZombieNinjaSquirrel: Move R1 Yellow P0st\n\n26) Gidaio: Move G1 P0st Gidaio\n\n27) sompm: Build Y3 L0lz\n\tsompm: guess who&#39;s gunna haz three threes, dorkfishes?\n\n28) RabidZombieNinjaSquirrel: Trade G3 Y3 Rabidzombieninjasquirrel\n\n29) Gidaio: Move G1 P0st F1rst\n\n30) sompm: Trade Y3 B3 Sompm\n\n31) RabidZombieNinjaSquirrel: Sacrifice G2 Rabidzombieninjasquirrel\n\nBuild G2 Rabidzombieninjasquirrel\n\nBuild Y3 Rabidzombieninjasquirrel\n\n32) Gidaio: Sacrifice G3 Gidaio\nBuild G2 F1rst\nBuild G3 F1rst\nBuild G3 Gidaio\n\n33) sompm: Trade Y3 R3 Sompm\n\n34) RabidZombieNinjaSquirrel: Build G3 Rabidzombieninjasquirrel\n\tRabidZombieNinjaSquirrel: I know I could have just built a y3, but that doesn&#39;t matter. that was epic.\n\n35) Gidaio: Discover G2 Gidaio B2 Pwn\n\n36) sompm: Build Y3 Sompm\n\tGidaio: I&#39;m voting we kick Alex from the game. He&#39;s not all that interested.\n\tsompm: If he&#39;s really not interested.\r\n\n\n37) RabidZombieNinjaSquirrel: Move R1 P0st F1rst\n\tRabidZombieNinjaSquirrel: I&#39;m interested! I just need to remember...\n\n38) Gidaio: Trade G2 Y2 Pwn\n\n39) sompm: Move R3 Sompm F1rst\n\n40) RabidZombieNinjaSquirrel: Discover G1 Rabidzombieninjasquirrel B3 Roflstomp\n\n41) Gidaio: Move Y2 Pwn Roflstomp\n\n42) sompm: Attack G3E F1rst\n\n43) RabidZombieNinjaSquirrel: Sacrifice G3 Rabidzombieninjasquirrel\n\nBuild G2 Roflstomp\nBuild G3 Roflstomp\n\nBuild G3 Rabidzombieninjasquirrel\n\tsompm: to give alex some time if he&#39;s REALLY (indent that) interested.\n\tRabidZombieNinjaSquirrel: well, I dunno... I&#39;m not amazingly interested, what should I do?\r\nwant me to just quit? \n\n44) Gidaio: Move Y2 Roflstomp Rabidzombieninjasquirrel\nCatastrophe Rabidzombieninjasquirrel Yellow\n\n45) sompm: Discover G3 F1rst R2 Hyperbarry\n\tGidaio: Roflstomp?!\n\n46) RabidZombieNinjaSquirrel: Trade B1 R1 Rabidzombieninjasquirrel\n\n47) Gidaio: Move G2 F1rst Roflstomp\nCatastrophe Roflstomp Green\n\tRabidZombieNinjaSquirrel: take that!!! Mwahahahahahahaha!\n\n48) sompm: Sacrifice Y3 L0lz\nDiscover Y1 F1rst B2 Disposable1\nDiscover Y2 L0lz B2 Disposable2\nDiscover Y2 L0lz B2 Disposable3\n\tGidaio: Take that-er! MwahahahahahahahaHA!\n\n49) Gidaio: Move G1 F1rst Disposable1\n\n50) sompm: Sacrifice Y3 Sompm\nMove Y1 Disposable1 Gidaio\nMove Y2 Disposable2 Gidaio\nMove Y2 Disposable3 Gidaio\nCatastrophe Gidaio Y\n\tGidaio: Sorry, Alex. You&#39;re just more vulnerable.\n\n51) Gidaio: Build G1 Disposable1\n\n52) sompm: Build B1 Sompm\n\tsompm: yay crazy planet explosions!\r\n\r\nevery non-homeworld planet on the map was created by me! YAIEZ.\n\tRabidZombieNinjaSquirrel: you suck Tanis.\r\n\r\nWheres your heart? \n\n53) Gidaio: Build R1 Gidaio\n\n54) sompm: Build G1 Hyperbarry\n\n55) Gidaio: Trade R1 Y1 Gidaio\n\n56) sompm: Build Y1 Sompm\n\n\tGidaio: I may just give you this game.\n\tGidaio: Yeah, I&#39;m tired of it. You win.\n\nHomeworlds Online (SDG# 17712)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.25, Ended: 2010.10.26\nParticipants: goblin981 (S), Lurch (N)\nWinner: goblin981\n\n\nHomeworlds Online (SDG# 17736)\nStarted: 2010.10.26, Ended: 2010.10.29\nParticipants: mathochist (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld Y2 B3 G3\n\n\nHomeworlds Online (SDG# 17811)\nStarted: 2010.10.26, Ended: 2010.10.26\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) TwoShort: Build G1 Twoshort\n\n8) lorgar: Build G1 Lorgar\n\n9) TwoShort: Build G1 Twoshort\n\n10) lorgar: Discover Y1 Lorgar R3 Leodagan\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) lorgar: Move G1 Lorgar Leodagan\n\n13) TwoShort: Build G2 Twoshort\n\n14) lorgar: Build G2 Leodagan\n\n15) TwoShort: Discover G1 Twoshort B2 Borbor\n\n16) lorgar: Build G2 Lorgar\n\n17) TwoShort: Build G3 Borbor\n\n18) lorgar: Move G1 Leodagan Borbor\n\n19) TwoShort: Trade G3 Y3 Borbor\n\n20) lorgar: Move G3 Lorgar Leodagan\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y1 Borbor\n\n22) lorgar: Move Y1 Leodagan Borbor\n\n23) TwoShort: Sacrifice Y3 Borbor\nMove G1 Borbor Leodagan\nMove G1 Yolonda Leodagan\nDiscover G3 Yolonda B3 Bluestar\nCatastrophe Leodagan Green\n\n24) lorgar: Build G1 Lorgar\n\tlorgar: I see I still have some problem guessing what one can do with a sacrifice ^^\n\n25) TwoShort: Trade G3 R3 Twoshort\n\n26) lorgar: Build G1 Borbor\n\n27) TwoShort: Sacrifice Y1 Twoshort\nMove G3 Bluestar Lorgar\n\n28) lorgar: Discover G2 Lorgar R3 Charliefoxtrot\n\n29) TwoShort: Sacrifice R3 Twoshort\nAttack G1 Lorgar\nPass\nPass\n\tlorgar: gg\n\n\nHomeworlds Online (SDG# 17821)\nStarted: 2010.10.26, Ended: 2010.10.29\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B1 G3 *\n\n2) lorgar: Homeworld B3 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Discover G1 Lorgar Y2 Monty\n\n7) TwoShort: Build Y1 Twoshort\n\n8) lorgar: Build G1 Lorgar\n\n9) TwoShort: Build Y2 Twoshort\n\n10) lorgar: Trade G3 Y3 Lorgar\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) lorgar: Sacrifice G1 Monty\nBuild Y2 Lorgar\n\n13) TwoShort: Move Y1 Grogar Lorgar\nCatastrophe Lorgar Yellow\n\n14) lorgar: Build G1 Lorgar\n\tlorgar: schpoup, nice shot\n\n15) TwoShort: Move G3 Twoshort Lorgar\n\n16) lorgar: Trade G1 Y1 Lorgar\n\n17) TwoShort: Trade G3 R3 Lorgar\n\n18) lorgar: Discover Y1 Lorgar G1 Eroute\n\n19) TwoShort: Attack G1 Lorgar\n\tlorgar: gg\n\n\nHomeworlds Online (SDG# 17820)\nStarted: 2010.10.27, Ended: 2010.10.30\nParticipants: goblin981 (S), mathochist (N)\nWinner: goblin981\n\n\nHomeworlds Online (SDG# 17830)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.27, Ended: 2010.12.3\nParticipants: Uglyfoot (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) agentofchaos: Trade Y1 R1 Agentofchaos\n\n12) Uglyfoot: Discover Y2 Uglyfoot R1 Out\n\n13) agentofchaos: Discover Y2 Agentofchaos B3 Zither\n\n14) Uglyfoot: Move G1 Uglyfoot Out\n\n15) agentofchaos: Build R2 Agentofchaos\n\n16) Uglyfoot: Build Y1 Out\n\n17) agentofchaos: Build Y3 Agentofchaos\n\n18) Uglyfoot: Discover Y1 Uglyfoot B1 Ward\n\n19) agentofchaos: Discover Y3 Agentofchaos G3 Leanda\n\n20) Uglyfoot: Sacrifice G1 Out\nBuild Y3 Ward\n\n21) agentofchaos: Build Y3 Agentofchaos\n\n22) Uglyfoot: Build G1 Uglyfoot\n\n23) agentofchaos: Build G1 Agentofchaos\n\n24) Uglyfoot: Move G1 Uglyfoot Out\n\n25) agentofchaos: Move Y3 Leanda Ward\n\n26) Uglyfoot: Discover Y3 Ward R3 Bound\n\n27) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Ward\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) agentofchaos: Move G1 Agentofchaos Zither\n\n30) Uglyfoot: Move G1 Uglyfoot Out\n\n31) agentofchaos: Build G2 Agentofchaos\n\n32) Uglyfoot: Build G2 Uglyfoot\n\n33) agentofchaos: Build G2 Zither\n\n34) Uglyfoot: Trade G2 R2 Uglyfoot\n\n35) agentofchaos: Discover G3 Agentofchaos R3 Zurvan\n\n36) Uglyfoot: Move G1 Out Bound\n\n37) agentofchaos: Move Y1 Agentofchaos Zurvan\n\n38) Uglyfoot: Build R1 Uglyfoot\n\n39) agentofchaos: Move G1 Zither Ward\n\n40) Uglyfoot: Sacrifice Y2 Out\nMove Y3 Bound Agentofchaos\nMove Y3 Agentofchaos Zither\n\n41) agentofchaos: Sacrifice Y2 Zither\nMove G3 Zurvan Out\nMove G2 Zither Ward\n\n42) Uglyfoot: Build G2 Bound\n\n43) agentofchaos: Build G3 Agentofchaos\n\n44) Uglyfoot: Build Y2 Out\n\n45) agentofchaos: Sacrifice G2 Ward\nBuild Y2 Zurvan\nBuild G2 Ward\n\n46) Uglyfoot: Sacrifice Y2 Out\nMove G1 Bound Agentofchaos\nMove G2 Bound Agentofchaos\nCatastrophe Agentofchaos G\n\n47) agentofchaos: Attack Y1 Out\n\n48) Uglyfoot: Build G1 Uglyfoot\n\n49) agentofchaos: Sacrifice Y2 Zurvan\nMove G1 Ward Uglyfoot\nMove G2 Ward Uglyfoot\nCatastrophe Uglyfoot G\n\n50) Uglyfoot: Trade Y3 G3 Zither\n\n51) agentofchaos: Move Y3 Ward Uglyfoot\n\n\tUglyfoot: Thanks for the game.\n\tagentofchaos: Thanks for playing \n\nHomeworlds Online (SDG# 17750)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.29, Ended: 2010.11.5\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld Y3 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Discover G1 Lorgar R3 Thorp\n\n6) SilentTitan: Discover G1 Silenttitan B1 Shaka\n\n7) lorgar: Build G1 Lorgar\n\n8) SilentTitan: Build G2 Silenttitan\n\n9) lorgar: Trade G1 Y1 Lorgar\n\n10) SilentTitan: Trade G2 Y2 Silenttitan\n\n11) lorgar: Move Y1 Lorgar Thorp\n\n12) SilentTitan: Move Y2 Silenttitan Shaka\n\n13) lorgar: Move G1 Thorp Shaka\n\n14) SilentTitan: Trade G1 R1 Shaka\n\n15) lorgar: Build G1 Lorgar\n\n16) SilentTitan: Attack G1 Shaka North\n\n17) lorgar: Trade G1 R1 Lorgar\n\n18) SilentTitan: Build G1 Silenttitan\n\n19) lorgar: Move G3 Lorgar Thorp\n\n20) SilentTitan: Build G1 Shaka\n\n21) lorgar: Build Y1 Thorp\n\n22) SilentTitan: Build Y2 Shaka\n\n23) lorgar: Discover Y1 Thorp B1 Clusterf\n\n24) SilentTitan: Sacrifice Y2 Shaka\nMove Y2 Shaka Thorp\nMove Y2 Thorp Lorgar\n\n25) lorgar: Move G3 Thorp Lorgar\n\n26) SilentTitan: Sacrifice R1 Shaka\nAttack R1 Lorgar North\n\n27) lorgar: Trade G3 R3 Lorgar\n\tSilentTitan: LOL... I always wanted to name a system that.\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Lorgar\nBuild R1 Lorgar\nPass\nCatastrophe Lorgar Red\n\n\tlorgar: gg\n\nHomeworlds Online (SDG# 17831)\nStarted: 2010.10.29, Ended: 2010.11.1\nParticipants: dethdukk (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 17850)\nVariants: &quot;Hard time&quot;\nStarted: 2010.10.30, Ended: 2010.12.3\nParticipants: goulo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) goulo: Homeworld G3 B2 Y3\n\tDanner: Hi! Good luck!\n\n3) Danner: Homeworld R1 B2 G3\n\tgoulo: thanks, you too. have fun!\n\n4) goulo: Build Y1 Goulo\n\n5) Danner: Build G1 Danner\n\n6) goulo: Build Y1 Goulo\n\n7) Danner: Trade G1 Y1 Danner\n\n8) goulo: Trade Y1 R1 Goulo\n\n9) Danner: Build Y1 Danner\n\n10) goulo: Trade Y1 G1 Goulo\n\n11) Danner: Trade Y1 R1 Danner\n\n12) goulo: Build R2 Goulo\n\n13) Danner: Build R2 Danner\n\n14) goulo: Discover R2 Goulo G1 Smeraldeto\n\n15) Danner: Discover R2 Danner Y3 Orland\n\n16) goulo: Build Y1 Goulo\n\n17) Danner: Build G1 Danner\n\n18) goulo: Build G2 Goulo\n\n19) Danner: Build Y1 Danner\n\n20) goulo: Sacrifice G2 Goulo\nBuild Y2 Goulo\nBuild G2 Goulo\n\n21) Danner: Build Y2 Danner\n\tDanner: Sorry for my inactivity :S\n\n22) goulo: Move Y1 Goulo Smeraldeto\n\tgoulo: no problem. i have been busy lately in any case as well (gone away from internet this past thursday-sunday at a gaming con)...\n\n23) Danner: Discover Y1 Danner G3 Artemus\n\n24) goulo: Move R2 Smeraldeto Artemus\n\n25) Danner: Move R2 Orland Smeraldeto\n\n26) goulo: Move Y1 Smeraldeto Artemus\n\n27) Danner: Move Y1 Artemus Smeraldeto\n\n28) goulo: Build R2 Artemus\n\n29) Danner: Build Y2 Smeraldeto\n\n30) goulo: Move R2 Artemus Danner\n\n31) Danner: Sacrifice R1 Danner\nAttack R2S Danner\n\n32) goulo: Build R1 Artemus\n\n33) Danner: Build R3 Smeraldeto\n\n34) goulo: Sacrifice Y2 Goulo\nMove R1 Artemus Danner\nMove R2 Artemus Danner\nCatastrophe Danner R\n\tgoulo: Ha, yeah, after I did that move, I realized you could sacrifice the R1, sigh. :)\n\tDanner: :)\n\n35) Danner: Sacrifice Y2 Danner\nMove G1 Danner Smeraldeto\nMove G1 Smeraldeto Goulo\nCatastrophe Goulo G\n\n36) goulo: Trade Y3 G3 Goulo\n\n37) Danner: Build Y2 Danner\n\n38) goulo: Build G1 Goulo\n\tgoulo: Hmm. That didn&#39;t work out quite as well as I thought it would...\n\n39) Danner: Trade Y2 B2 Danner\n\n40) goulo: Trade G3 Y3 Goulo\n\n41) Danner: Sacrifice B2 Danner\nTrade Y1 B1 Smeraldeto\nTrade R2 B2 Smeraldeto\n\n42) goulo: Build G1 Goulo\n\n43) Danner: Sacrifice Y2 Smeraldeto\nMove B1 Smeraldeto Goulo\nMove B2 Smeraldeto Goulo\n\n\tgoulo: Thanks for the game!\n\tDanner: Thank you too!\n\nHomeworlds Online (SDG# 17859)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.1, Ended: 2010.11.6\nParticipants: zoltar (S), goblin981 (N)\nWinner: zoltar\n\n1) goblin981: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) goblin981: Build G1 Goblin981\n\n4) zoltar: Build G1 Zoltar\n\n5) goblin981: Discover G1 Goblin981 G3 Star\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goblin981: Build G1 Goblin981\n\n8) zoltar: B Y1 Zoltar\n\n9) goblin981: Discover G1 Goblin981 Y3 Sickly\n\n10) zoltar: Build Y2 Zoltar\n\n11) goblin981: Build G1 Goblin981\n\n12) zoltar: Build G2 Zoltar\n\n13) goblin981: Build G2 Goblin981\n\n14) zoltar: Discover Y1 Zoltar B2 Bluemoon\n\n15) goblin981: Trade G2 Y2 Goblin981\n\n16) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild Y2 Bluemoon\n\n17) goblin981: Build Y3 Goblin981\n\n18) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Bluemoon Star\nMove Y1 Star Goblin981\nCatastrophe Goblin981 Y\n\n19) goblin981: Trade G1 Y1 Goblin981\n\n20) zoltar: Trade G2 R2 Zoltar\n\n21) goblin981: Build G1 Goblin981\n\tgoblin981: Damn, nice move.\n\tzoltar: Thanks!\n\n22) zoltar: Move G3 Zoltar Goblin981\n\n23) goblin981: Trade G1 R1 Goblin981\n\n24) zoltar: Sacrifice R2 Zoltar\nAttack G3 Goblin981\nAttack R1 Goblin981\n\n25) goblin981: Sacrifice G1 Star\nBuild Y1 Goblin981\n\tzoltar: And now for my next trick...\n\n26) zoltar: Trade G3 R3 Goblin981\n\n27) goblin981: Move G1 Sickly Goblin981\n\n28) zoltar: Sacrifice R3 Goblin981\nAttack G1 Goblin981\nAttack Y1 Goblin981\nAttack Y1 Goblin981\n\n\tzoltar: Good game. You let me swindle you in the opening there, so it was over fast. Play again?\n\tgoblin981: yeah that was my fault.  Lets go again.\n\nHomeworlds Online (SDG# 17853)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.1, Ended: 2010.11.27\nParticipants: lorgar (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) lorgar: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) lorgar: Build G1 Lorgar\n\n5) zoltar: Trade G1 B1 Zoltar\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) zoltar: Build B1 Zoltar\n\n8) lorgar: Build G1 Lorgar\n\n9) zoltar: Trade B1 Y1 Zoltar\n\n10) lorgar: Build G1 Lorgar\n\n11) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n12) lorgar: Discover G1 Lorgar Y3 Angelis\n\n13) zoltar: Build B1 Greenbelt\n\n14) lorgar: Trade G1 R1 Lorgar\n\n15) zoltar: Build B2 Greenbelt\n\n16) lorgar: Build R1 Lorgar\n\n17) zoltar: Trade B2 R2 Greenbelt\n\n18) lorgar: Move R1 Lorgar Angelis\n\n19) zoltar: Build B2 Greenbelt\n\n20) lorgar: Move G3 Lorgar Angelis\n\n21) zoltar: Trade B2 Y2 Greenbelt\n\n22) lorgar: Build R2 Angelis\n\n23) zoltar: Build Y1 Greenbelt\n\n24) lorgar: Discover G1 Angelis Y2 Mektown\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\nBuild B2 Greenbelt\n\n26) lorgar: Move R1 Angelis Greenbelt\n\n27) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Greenbelt Angelis\nMove Y2 Greenbelt Angelis\nMove Y1 Greenbelt Angelis\nCatastrophe Angelis Y\n\n28) lorgar: Trade Y1 G1 Lorgar\n\n29) zoltar: Trade B2 G2 Greenbelt\n\n30) lorgar: Build G1 Mektown\n\n31) zoltar: Trade B1 Y1 Greenbelt\n\n32) lorgar: Build G2 Lorgar\n\n33) zoltar: Build G3 Greenbelt\n\n34) lorgar: Build G3 Lorgar\n\n35) zoltar: Sacrifice G3 Greenbelt\nBuild Y1 Greenbelt\nBuild Y2 Greenbelt\nBuild Y3 Zoltar\n\n36) lorgar: Build G3 Mektown\n\n37) zoltar: Sacrifice Y2 Greenbelt\nDiscover G2 Greenbelt Y3 Wormhole\nMove G2 Wormhole Lorgar\nCatastrophe Lorgar G\n\n38) lorgar: Discover G1 Mektown Y3 Charliefox\n\n39) zoltar: Attack R1 Greenbelt\n\n40) lorgar: Move G1 Charliefox Lorgar\n\n41) zoltar: Trade Y3 G3 Zoltar\n\n42) lorgar: Build R2 Lorgar\n\n43) zoltar: Build Y2 Greenbelt\n\n44) lorgar: Discover R2 Lorgar Y3 Stop\n\n45) zoltar: Build Y3 Zoltar\n\n46) lorgar: Pass\n\n47) zoltar: Build Y3 Zoltar\n\n48) lorgar: Build G1 Lorgar\n\n49) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Zoltar Mektown\nMove Y3 Mektown Stop\nMove Y3 Stop Lorgar\n\n\tlorgar: that&#39;s it.\n\tzoltar: Yeah, you can&#39;t let your homeworld be without a large ship. You had to earlier either get the G3 back to your homeworld, or sac it for three reds so that an R3 is in your homeworld, but you passed a turn, which was crazy and let me get another Y3 that let me come into your homeworld and win.\n\tlorgar: I passed because I did not see anything else to do XD\r\nperhaps you Could explain me some tips about the stash managing strategy... \n\tzoltar: Well, your first priority was getting a 3-pip ship in your homeworld. Anytime you don&#39;t have a large ship in your homeworld, you&#39;re in extreme danger. So moving your G3 to a large yellow star was just about the only way to avoid imminent disaster. Don&#39;t worry about the stash when your homeworld is left defenseless.\n\nHomeworlds Online (SDG# 17828)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.1, Ended: 2010.11.4\nParticipants: zoltar (S), Lurch (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 17901)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.1, Ended: 2010.11.1\nParticipants: zoltar (S), Lurch (N)\nWinner: Lurch\n\n\nHomeworlds Online (SDG# 17909)\nStarted: 2010.11.1, Ended: 2010.11.4\nParticipants: Remneb (S), dethdukk (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 17911)\nVariants: &quot;Unrated&quot;\nStarted: 2010.11.1, Ended: 2010.11.6\nParticipants: Remneb (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 Y2 G3\n\tts52: Is this your first game of homeworlds? The first move is to create your homewold. When you&#39;re the second player, make sure you don&#39;t pick the same size pieces as your opponent.\n\n2) Remneb: Homeworld B2 Y3 G3\n\tts52: Also, your first ship should always be a large. Although you can choose something smaller, there&#39;s no point to picking anything else.\n\tRemneb: It&#39;s my first game.\n\n3) ts52: Build G1 Ts52\n\tts52: Ok. You&#39;ve picked the exact same homeworld as me, which isn&#39;t usually a good idea. In Homeworlds, systems are connected by not having a piece in common, so while our two homeworlds aren&#39;t directly connected (impossible in the beginning of the game) they&#39;re only separated by one jump. Notice, that from our homeworlds, the only systems we can discover are small ones (using the small pieces). Which means once I build a new ship, and move it out of my homeworld to discover a new system, it will be able to move directly from their into your homeworld. This is what we call a small universe.\r\n\r\nNow, consider if your homeworld was made up of a small and medium pyramid instead. Then you would be first discovering systems using the large pieces, and there would be two hops between our homeworlds.\r\n\r\nThere are probably some strategies that try to use the small universe, but it&#39;s not generally recommended.\r\n\r\nIf you want to undo and create a new homeworld, that&#39;s fine, if you want to play this one out and see what happens, that&#39;s fine too. Just let me know.\n\tRemneb: Well i choose the same size of star because 2 stars of different sizes are connected...and so bothy systems can be attacked...in my viewing the game of course.\n\n4) Remneb: Build G1 Remneb\n\tRemneb: Now...if i want to created a new system,i need an extra ship...because in my homeworld,i mujst always have at least one ship ok ?\n\tts52: True, you must always have at least one ship that you control in your homeworld. Not quite on the connection part though. Two systems are connected if they don&#39;t have any stars of the same size piece. So a &#39;small star&#39; system is connected to &#39;large star&#39; and &#39;medium star&#39; systems, and to &#39;large medium binary&#39; systems. But not to other small stars, or to any binary system that has a small star in it. So No to binary systems (and only homeworlds are binary systems) can ever be directly connected.\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\tts52: So after creating your homeworld, the first thing you need to do is create a second ship. (Which is why it&#39;s crucial that you always start out with green in your homeworld, either as a star or a ship.)\n\tts52: We wont worry about the small universe this game, let&#39;s just play it out and then we can play another.\n\tRemneb: If i understood the rules clearly,a star of a given color-say green-permit to any ship of other colors then green to use the techno of the green star exactly if the ship was a green ship?\n\n6) Remneb: Discover G1 Remneb Y1 Draconis\n\tts52: Yes, that&#39;s correct. Any ship you own in a system can use the power of the star(s) in that system, or the powers of any ship you control in that system.\n\n7) ts52: T G1 Y1 Gonzo\n\n8) Remneb: Build G1 Remneb\n\n9) ts52: D Y1 Gonzo G3 Kermit\n\n10) Remneb: Move G1 Draconis Kermit\n\n11) ts52: B Y1 Kermit\n\n12) Remneb: Discover G1 Remneb Y1 Khufu Primus\n\n13) ts52: Build Y2 Kermit\n\n14) Remneb: Build G1 Remneb\n\n15) ts52: B G2 Ts52\n\n16) Remneb: Move G1 Remneb Khufu\n\n\n\n\n\n\n\n17) ts52: Trade G2 R2 Ts52\n\n18) Remneb: Sacrifice G1 Kermit\nBuild G1 Khufu\n\n19) ts52: M R2 Ts52 Khufu\n\tRemneb: I tried to sacrifice my G3 ship and make 3 moves:g1 Kermit ts52 and g1 Khufu ts52 and so trigering a catastrophe...but the game did not let me do so.What is wrong in my orders?\n\tRemneb: I&#39;ve just checked the andrew looney video called &quot;Blue Bird mistake&quot;.The sacrifice ship was a yellow one.So if i sacrifice a green ship i cannot have movement in exchange.What do i have instead?\n\tRemneb: Something else...your Kermit system is not connected to my Remneb system...so i am concluding that you build 3 yellow ship to attack my Khufu system?\n\tts52: Aha, in order to move multiple pieces, you need to sacrifice a large yellow. When you sacrifice, you can only use the power of the sacrificed piece, but on any ships you want.\r\nAnd I&#39;m building up yellow ships to try in Kermit to try and avoid catastrophe. I discovered kermit to take the large green piece out of the pool, hoping to be able to convert it to one of my ships later.\n\n20) Remneb: Move G1 Khufu Ts52\n\n21) ts52: Trade G3 R3 Ts52\n\tRemneb: So because green ship cannot move from system kermit to Khufu,i sacrified one and build the same in Khufu...doing in fact the same thing.\n\tRemneb: Do all my ships in Khufu have the power of moving(the yellow star)?\n\n22) Remneb: Move G1 Khufu Kermit\n\tRemneb: How can you have a red ship when everytime i ask a ship of other color then green,the game told me that i need to control at least one ship of the color i ask.\n\tts52: Because you have a yellow star in your homeworld you could&#39;ve just moved the green ship, but it amounts to the same. All ships in a system can use the power of any star in that system. \n\tts52: I didn&#39;t build the red ship using green, I traded it with blue. \n\n23) ts52: Attack G1 Ts52\n\n24) Remneb: Move G1 Khufu Kermit\n\tRemneb: Understand thanks.\n\n25) ts52: Sacrifice R2 Khufu\nAttack G1 Kermit\nAttack G1 Kermit\n\n26) Remneb: Build G2 Remneb\n\n27) ts52: Build G2 Ts52\n\n28) Remneb: Discover G2 Remneb Y1 Phoenix\n\tRemneb: Here i misunderstood the rule about attacking units(red).I was sure that you have to sacrifice the red ship to turn my green one against me !\n\n29) ts52: Discover G1 Kermit B1 Gonzo\n\tRemneb: So a yellow ship in a green system can move because he is yellow...and also can be sacrifice to be replaced by an other color?And because there is green and yellow in the same system,we can at the same time sacrifice to replace and move the new ship ?\n\tts52: Aha, nope. In fact, as you see, I can sacrifice the red ship to attack ships outside of that system\n\n30) Remneb: Build G2 Remneb\n\tRemneb: You don&#39;t have to sacrifice a red ship in your homeworld?\n\tRemneb: So a red ship of 2 points can be sacrifice to attack 2 ships of 1 point each?\n\tts52: A red ship of two points can be sacrificed to make two attacks. You can attack any ship that is the same size or smaller than your biggest ship in the same system. So if those green ships had been medium (2 point), I could still have attacked because of my medium yellow. But if they&#39;d been large, I couldn&#39;t.\n\tts52: If I&#39;d sacrificed my red ship in my homeworld, I could have made 3 attacks, but it&#39;s never a good idea to leave your homeworld without a large ship in it.\n\n31) ts52: Build G3 Gonzo\n\tRemneb: I want to understand why you turn my g1 in your homeworld with no sacrifice at all...\n\n32) Remneb: Discover G2 Remneb B1 Menkaura\n\n33) ts52: Build R1 Ts52\n\n34) Remneb: Trade G2 Y2 Menkaura\n\n35) ts52: Move Y1 Kermit Gonzo\n\tts52: you don&#39;t need to sacrifice to attack. if you have access to red in a system, either because the star is red, or you have a red ship there, then you can attack other ships in that system. you only need to sacrifice if you want to make more than one attack (by sacrificing a med or large) or if you want to make an attack in a system where you don&#39;t have red, you can sacrifice a red ship elsewhere to do it.\n\tRemneb: Understand.Thanks.\n\tRemneb: We apparently have 20 spectators for our game...\n\n36) Remneb: Build G2 Remneb\n\n37) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y3 Gonzo\nBuild Y3 Gonzo\n\tts52: Interesting, I wonder how many of them are actively watching? The last time I tried, it didn&#39;t work so well.\n\n38) Remneb: Trade G2 B2 Remneb\n\n39) ts52: Trade Y1 B1 Gonzo\n\n40) Remneb: Build B2 Remneb\n\n41) ts52: Move Y3 Gonzo Remneb\n\n42) Remneb: Move B2 Remneb Phoenix\n\n43) ts52: Trade Y3 R3 Remneb\n\tRemneb: 12 ships against 4...\n\n44) Remneb: Discover Y2 Menkaura R2 Arcturus\n\tts52: yeah, being able to sacrifice a large green, build it back (because there are no more greens in the global stash, and you have another green ship) and then build two more ships it a pretty big deal.\n\n45) ts52: Attack G3 Remneb\n\n46) Remneb: Trade B2 R2 Phoenix\n\tts52: you need to be wary about ever having 3 pieces (ships and stars) of the same color in one system. That&#39;s asking for your opponent to move in a piece of that color and triggering a catastrophe.\n\tRemneb: Thanks...i&#39;m trying to do that against you since the beginning of the game lol.\n\n47) ts52: A B2 Remneb\n\n\tRemneb: I need an explanation about your last attack in my Homeworld.Few moves sooner,you turn 2 of my ships with a single red 3.Now you turn my g3 bot not my b2? Is it because you don&#39;t another ship in my homeworld? \n\tRemneb: ...read &quot;is it because you don&#39;t have another ship in my homeworld?\n\tts52: I could only turn one ship because I didn&#39;t sacrifice a ship like I did before. \n\tRemneb: Ok.Thanks.If you snap my b2 in Remneb,the game is over.\n\tts52: Thanks for the game. I&#39;d be happy to play another. \n\nHomeworlds Online (SDG# 17858)\nStarted: 2010.11.2, Ended: 2010.11.16\nParticipants: daselva (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: B G1 Ts52\n\n4) daselva: Build G1 Daselva\n\n5) ts52: T G1 R1 Ts52\n\n6) daselva: Trade G1 R1 Daselva\n\n7) ts52: Build R2 Ts52\n\n8) daselva: Build R2 Daselva\n\n9) ts52: Discover R1 Ts52 Y1 Dogstar\n\n10) daselva: Trade R1 Y1 Daselva\n\n11) ts52: Build G1 Ts52\n\n12) daselva: Build Y1 Daselva\n\n13) ts52: Move G1 Ts52 Dogstar\n\n14) daselva: Build Y2 Daselva\n\n15) ts52: Build G1 Ts52\n\n16) daselva: Trade Y2 G2 Daselva\n\n17) ts52: Trade G1 B1 Ts52\n\n18) daselva: Build Y2 Daselva\n\n19) ts52: Trade R2 Y2 Ts52\n\n20) daselva: Discover Y2 Daselva G3 S1\n\n21) ts52: Discover Y2 Ts52 G1 Robin\n\n22) daselva: Trade Y1 B1 Daselva\n\n23) ts52: Move B1 Ts52 Dogstar\n\n24) daselva: Build Y1 S1\n\n25) ts52: Build G1 Ts52\n\n26) daselva: Sacrifice B1 Daselva\nTrade Y1 R1 S1\n\n27) ts52: Build R2 Dogstar\n\n28) daselva: Build R2 S1\n\n29) ts52: Move R1 Dogstar Ts52\n\n30) daselva: Discover R2 S1 G2 S2\n\n31) ts52: B R3 Ts52\n\n32) daselva: Sacrifice G2 Daselva\nBuild R3 S1\nBuild R3 S2\n\n33) ts52: M R3 Ts52 Robin\n\n34) daselva: Move R3 S1 Dogstar\n\n35) ts52: D R2 Dogstar Y3 Bigstar\n\n36) daselva: Attack B1 Dogstar\n\n37) ts52: Move G1 Dogstar Bigstar\n\n38) daselva: Build G2 Daselva\n\n39) ts52: Move R3 Robin S1\n\n40) daselva: Move Y2 S1 Dogstar\n\n41) ts52: Move Y2 Robin S1\n\n42) daselva: Trade B1 G1 Dogstar\n\n43) ts52: Attack R1 S1\n\n44) daselva: Build G2 Dogstar\n\n45) ts52: Discover G1 Ts52 Y1 Chickadee\n\n46) daselva: Sacrifice Y1 Daselva\nMove R2 S2 Chickadee\n\n47) ts52: Move G1 Chickadee Bigstar\n\n48) daselva: Trade G2 Y2 Daselva\n\n49) ts52: Move R3 S1 Chickadee\n\n50) daselva: Discover R2 Chickadee Y3 S3\n\n51) ts52: B Y1 S1\n\n52) daselva: Move R3 Dogstar Bigstar\n\n53) ts52: S Y2 S1\nM R1 S1 Daselva\nMove R2 Bigstar Daselva\nCatastrophe Daselva Red\n\n\n\n54) daselva: Move R2 S3 Daselva\n\n55) ts52: Move G1 Bigstar Chickadee\n\n56) daselva: Attack G1 Bigstar\n\n57) ts52: Build R1 Ts52\n\n58) daselva: Sacrifice G2 Dogstar\nBuild Y2 Dogstar\nBuild Y3 Daselva\n\n59) ts52: Move Y1 S1 Dogstar\nCatastrophe Dogstar Yellow\n\n60) daselva: Move Y2 Daselva Bigstar\n\n61) ts52: Trade R1 Y1 Ts52\n\n62) daselva: Sacrifice G3 Daselva\nBuild Y1 Bigstar\nBuild Y2 Daselva\nBuild Y2 Daselva\n\n63) ts52: Discover Y1 Ts52 B1 Gonzo\n\n64) daselva: Discover Y2 Daselva G1 S1\n\n65) ts52: Move Y1 Gonzo Bigstar\nCatastrophe Bigstar Yellow\n\n66) daselva: Sacrifice Y2 Daselva\nMove R3 S2 S1\nPass\n\n67) ts52: B R1 Ts52\n\n68) daselva: Build Y1 S1\n\n69) ts52: Trade R1 B1 Ts52\n\n70) daselva: Build Y1 S1\n\n71) ts52: Move B1 Ts52 Chickadee\n\n72) daselva: Move Y1 S1 Ts52\n\n73) ts52: A Y1 Ts52\n\n74) daselva: Move Y2 S1 Daselva\n\n75) ts52: Discover Y1 Ts52 G1 Robin\n\n76) daselva: Build Y2 S1\n\n77) ts52: B G2 Ts52\n\n78) daselva: Build Y2 S1\n\n79) ts52: B Y3 Robin\n\n80) daselva: Sacrifice Y2 Daselva\nMove Y1 S1 Ts52\nMove Y2 S1 Ts52\n\n81) ts52: B B1 Chickadee\n\n82) daselva: Sacrifice Y2 S1\nMove Y1 Ts52 Robin\nMove Y2 Ts52 Robin\nCatastrophe Robin Y\n\n83) ts52: Build B1 Chickadee\n\n84) daselva: Build R1 S1\n\n85) ts52: T R3 Y3 Chickadee\n\n86) daselva: Build R1 S1\n\n87) ts52: Sacrifice Y3 Chickadee\nMove B1 Chickadee Daselva\nMove B1 Chickadee Daselva\nMove B1 Chickadee Daselva\nCatastrophe Daselva Blue\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 17929)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.3, Ended: 2010.11.24\nParticipants: shmil1 (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld Y3 G1 B3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) sompm: Build B1 Sompm\n\n4) shmil1: Build Y1 Shmil1\n\tsompm: Good luck.\n\n5) sompm: Build B1 Sompm\n\n6) shmil1: Trade Y1 B1 Shmil1\n\n7) sompm: Trade B1 G1 Sompm\n\n8) shmil1: Build Y1 Shmil1\n\n9) sompm: Build G2 Sompm\n\n10) shmil1: Build Y1 Shmil1\n\n11) sompm: Discover G1 Sompm B2 Tetrachord\n\n12) shmil1: Trade Y1 R1 Shmil1\n\n13) sompm: Build G2 Tetrachord\n\n14) shmil1: Discover Y1 Shmil1 G3 Zelena\n\n15) sompm: Build G2 Tetrachord\n\n16) shmil1: Move Y1 Zelena Tetrachord\n\n17) sompm: Trade G2 R2 Tetrachord\n\n18) shmil1: Move Y1 Tetrachord Sompm\n\n19) sompm: Build G2 Tetrachord\n\n20) shmil1: Trade Y3 G3 Shmil1\n\n21) sompm: Build G3 Sompm\n\n22) shmil1: Build G3 Shmil1\n\n23) sompm: Trade G2 R2 Sompm\n\n24) shmil1: Sacrifice G3 Shmil1\nBuild Y1 Sompm\nBuild Y1 Sompm\nBuild G2 Shmil1\nCatastrophe Sompm Yellow\n\n25) sompm: Trade G2 Y2 Tetrachord\n\n26) shmil1: Trade G3 Y3 Shmil1\n\n27) sompm: Discover G1 Tetrachord G3 Anotherplanet\n\n28) shmil1: Discover G2 Shmil1 Y3 Zluta\n\n29) sompm: Build G2 Anotherplanet\n\n30) shmil1: Build G3 Zluta\n\n31) sompm: Trade G3 Y3 Sompm\n\n32) shmil1: Move G3 Zluta Tetrachord\n\n33) sompm: Build G3 Tetrachord\n\n34) shmil1: Sacrifice R1 Shmil1\nAttack R2 Tetrachord\n\n35) sompm: Sacrifice R2 Sompm\nAttack G3S Tetrachord\nAttack R2S Tetrachord\n\n36) shmil1: Move G2 Zluta Tetrachord\nCatastrophe Tetrachord Green\n\n37) sompm: Sacrifice Y2 Tetrachord\nMove G1 Anotherplanet Shmil1\nMove G2 Anotherplanet Shmil1\n\n38) shmil1: Discover B1 Shmil1 Y3 Slunce\n\n39) sompm: Build G2 Shmil1\nCatastrophe Shmil1 G\n\n40) shmil1: Trade Y3 R3 Shmil1\n\n41) sompm: Build B1 Sompm\n\n42) shmil1: Move B1 Slunce Sompm\nCatastrophe Sompm Blue\n\n43) sompm: Build Y1 Sompm\n\n44) shmil1: Trade R3 G3 Shmil1\n\n45) sompm: Trade R2 B2 Tetrachord\n\n46) shmil1: Build G1 Shmil1\n\n47) sompm: Sacrifice Y1 Sompm\nMove B2 Tetrachord Sompm\n\n48) shmil1: Trade G1 R1 Shmil1\n\n49) sompm: Build B1 Sompm\n\n50) shmil1: Build R1 Shmil1\n\n51) sompm: Build Y1 Sompm\n\n52) shmil1: Trade R1 Y1 Shmil1\n\n53) sompm: Build B1 Sompm\n\n54) shmil1: Move Y1 Shmil1 Sompm\n\n55) sompm: Sacrifice Y3 Sompm\nMove B1 Sompm Shmil1\nMove B1 Sompm Shmil1\nMove B2 Sompm Shmil1\nCatastrophe Shmil1 Blue\n\n\nHomeworlds Online (SDG# 17960)\nStarted: 2010.11.5, Ended: 2010.12.16\nParticipants: zoltar (S), dethdukk (N)\nWinner: zoltar\n\n1) dethdukk: Homeworld B3 Y1 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) zoltar: Build G1 Zoltar\n\n5) dethdukk: Trade G1 Y1 Dethdukk\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) dethdukk: Discover Y1 Dethdukk G2 Planet\n\n8) zoltar: Build Y2 Zoltar\n\n9) dethdukk: Build G1 Dethdukk\n\n10) zoltar: Trade Y1 B1 Zoltar\n\n11) dethdukk: Trade G1 Y1 Dethdukk\n\n12) zoltar: Build Y2 Zoltar\n\n13) dethdukk: Build Y2 Planet\n\n14) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n15) dethdukk: Trade Y1 R1 Dethdukk\n\n16) zoltar: Build Y1 Zoltar\n\n17) dethdukk: Move Y2 Planet Greenpea\n\n18) zoltar: Move Y1 Zoltar Greenpea\n\n19) dethdukk: Build Y3 Planet\n\n20) zoltar: Build Y3 Zoltar\n\n\nHomeworlds Online (SDG# 17731)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.6, Ended: 2010.11.20\nParticipants: dlwillson (S), lorgar (N)\nWinner: dlwillson\n\n1) lorgar: Homeworld R1 B3 G3\n\n2) dlwillson: H G3 B2 Y3\n\n3) lorgar: Build G1 Lorgar\n\n4) dlwillson: B Y1 Dlwillson\n\n5) lorgar: Trade G1 Y1 Lorgar\n\n6) dlwillson: B Y1 Dlwillson\n\n7) lorgar: Build G1 Lorgar\n\n8) dlwillson: D Y1 Dlwillson B1 Dust\n\n9) lorgar: Build Y2 Lorgar\n\n10) dlwillson: B Y2 Dlwillson\n\n11) lorgar: Discover Y1 Lorgar R2 Knuckleduster\n\n12) dlwillson: D Y1 Dlwillson B1 Ashes\n\n13) lorgar: Discover Y2 Lorgar R2 Sunisburning\n\n14) dlwillson: T Y3 R3 Dlwillson\n\n15) lorgar: Discover Y1 Knuckleduster R1 Borabora\n\n16) dlwillson: B R1 Dlwillson\n\n17) lorgar: Sacrifice Y2 Sunisburning\nDiscover G3 Lorgar B2 Amadeo\nMove G3 Amadeo Borabora\n\n18) dlwillson: B Y2 Dlwillson\n\n19) lorgar: Build Y2 Borabora\n\n20) dlwillson: D Y2 Dlwillson B1 Smoke\n\n21) lorgar: Discover Y1 Borabora B2 Mnemosine\n\n22) dlwillson: Trade R3 G3 Dlwillson\n\n23) lorgar: Build Y3 Borabora\n\n24) dlwillson: S G3 Dlwillson\nB Y3 Dust\nB Y3 Ashes\nB R2 Dlwillson\n\n25) lorgar: Move Y2 Borabora Mnemosine\n\n26) dlwillson: Sacrifice Y2 Dlwillson\nMove Y3 Dust Mnemosine\nMove Y3 Mnemosine Lorgar\n\n\tdlwillson: Good game. Venturing out with your battleship is much more dangerous with a red star. Stars are notoriously neutral, and willing to lend their tech to anyone, even your opponent.\n\tlorgar: thx, I still need to learn about the depths of this game.\n\nHomeworlds Online (SDG# 17724)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.6, Ended: 2010.11.30\nParticipants: Jesse (S), lorgar (N)\nWinner: Jesse\n\n1) lorgar: Homeworld Y1 G2 B3\n\n2) Jesse: Homeworld R1 B3 G3\n\n3) lorgar: Build B1 Lorgar\n\n4) Jesse: Build G1 Jesse\n\n5) lorgar: Build B1 Lorgar\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) lorgar: Discover B3 Lorgar R3 Waaaghdakka\n\n8) Jesse: Build B2 Jesse\n\n9) lorgar: Trade B1 G1 Lorgar\n\n10) Jesse: Trade B1 Y1 Jesse\n\n11) lorgar: Build G1 Lorgar\n\n12) Jesse: Build Y1 Jesse\n\n13) lorgar: Build B1 Lorgar\n\n14) Jesse: Build Y2 Jesse\n\n15) lorgar: Trade B3 G3 Waaaghdakka\n\n16) Jesse: Trade Y2 R2 Jesse\n\n17) lorgar: Trade G1 B1 Lorgar\n\n18) Jesse: Build Y2 Jesse\n\n19) lorgar: Move B1 Lorgar Waaaghdakka\n\n20) Jesse: Discover Y2 Jesse G2 Pond\n\n21) lorgar: Trade B1 R1 Lorgar\n\n22) Jesse: Build Y2 Pond\n\n23) lorgar: Build R1 Lorgar\n\n24) Jesse: Sacrifice Y2 Pond\nDiscover Y2 Pond G3 Lilypad\nMove Y2 Lilypad Lorgar\n\n25) lorgar: Build R2 Lorgar\n\n26) Jesse: Sacrifice R2 Jesse\nAttack R2 Lorgar\nAttack G1 Lorgar\n\n27) lorgar: Pass\n\n28) Jesse: Build Y2 Lorgar\n\n\tlorgar: gg\n\tJesse: Thanks for the game.  I think the main lessons for you here are: Don&#39;t leave your homeworld without the defense of a large ship; and don&#39;t get locked out of yellow ships, since it leaves you unable to move your ships where they&#39;re needed in case of an emergency.\n\nHomeworlds Online (SDG# 17999)\nStarted: 2010.11.6, Ended: 2010.11.10\nParticipants: goblin981 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) goblin981: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) goblin981: Build G1 Goblin981\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) goblin981: Trade G1 Y1 Goblin981\n\n7) zoltar: Build Y2 Zoltar\n\n8) goblin981: Build G1 Goblin981\n\n9) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n10) goblin981: Discover G1 Goblin981 Y2 Chicken\n\n11) zoltar: Build Y2 Greenpea\n\n12) goblin981: Build G1 Goblin981\n\n13) zoltar: Build Y3 Zoltar\n\n14) goblin981: Build G2 Chicken\n\n15) zoltar: Build Y3 Zoltar\n\n16) goblin981: Trade G1 B1 Goblin981\n\n17) zoltar: Build Y3 Greenpea\n\n18) goblin981: Move Y1 Goblin981 Chicken\n\n19) zoltar: Move Y3 Greenpea Chicken\n\n20) goblin981: Move Y1 Chicken Greenpea\n\n21) zoltar: Trade Y3 R3 Zoltar\n\n22) goblin981: Build G1 Goblin981\n\n23) zoltar: Move Y3 Chicken Goblin981\n\n24) goblin981: Trade G1 R1 Goblin981\n\n25) zoltar: Sacrifice R3 Zoltar\nAttack R1 Goblin981\nAttack B1 Goblin981\nAttack G3 Goblin981\n\n\tzoltar: Because you will die much faster if you don&#39;t have a red star. Note that I don&#39;t have to bring anything with me: when I made a &#39;gun&#39; in my own homeworld last turn, the only way to avoid checkmate was to turn one of your two homeworld ships to red immediately. Since you didn&#39;t, it&#39;s checkmate now. Play again?\n\nHomeworlds Online (SDG# 17910)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.6, Ended: 2010.11.14\nParticipants: Remneb (S), Lurch (N)\nWinner: Remneb\n\n1) Lurch: Homeworld Y1 B2 G3\n\n2) Remneb: Homeworld Y2 B3 G3\n\n3) Lurch: Build G1 Lurch\n\n4) Remneb: Build G1 Remneb\n\n\nHomeworlds Online (SDG# 17808)\nStarted: 2010.11.6, Ended: 2010.11.9\nParticipants: rootbier (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 18002)\nVariants: &quot;Unrated&quot;\nStarted: 2010.11.7, Ended: 2010.11.9\nParticipants: Remneb (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 Y1 G3\n\n2) Remneb: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Remneb: Build G1 Remneb\n\tRemneb: Thanks.Same.\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) ts52: Build Y2 Ts52\n\n8) Remneb: Build G1 Remneb\n\n9) ts52: Discover Y1 Ts52 G2 Oscar\n\n10) Remneb: Discover Y1 Remneb G3 Emmy\n\n11) ts52: Build G1 Ts52\n\n12) Remneb: Build Y2 Emmy\n\n13) ts52: Build Y3 Oscar\n\n14) Remneb: Move Y2 Emmy Oscar\n\n15) ts52: Discover Y1 Oscar B3 Grover\n\n16) Remneb: Build Y3 Emmy\n\n17) ts52: Sacrifice G1 Ts52\nBuild Y3 Grover\n\n18) Remneb: Discover Y3 Emmy B2 Bunkerhill\n\n19) ts52: Trade Y1 R1 Grover\n\n20) Remneb: Sacrifice Y3 Bunkerhill\nMove Y1 Emmy Oscar\nMove Y2 Oscar Ts52\nMove Y1 Oscar Ts52\nCatastrophe Ts52 Y\n\n21) ts52: Move Y3 Grover Remneb\n\n22) Remneb: Trade G1 R1 Remneb\n\n23) ts52: Sacrifice R1 Grover\nAttack R1 Remneb\n\tRemneb: Well something else...a catastrophe in your homeworld and the game still running.Only yellow have take the cup !\n\tRemneb: Now if for example i have only a g3 in my homeworld and i sacrifie it to stunt your homeworld,is it a draw or do i win the game?\n\tts52: Wow, I really should have seen that coming. Well done.\n\n24) Remneb: Build G1 Remneb\n\n25) ts52: Attack G3 Remneb\n\n\tRemneb: I was aware before i made the move...but i was sure that the game will have ended right there !\n\tts52: Thanks for the game. Feel fee to challenge me any time.\n\tRemneb: Ok...i know that i&#39;m not ready to challenge two short or Jesse lol.For now i&#39;m playing 4 homeworlds games.I will challenge you for a rated game next time.Thanks for the training.\n\nHomeworlds Online (SDG# 18003)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.8, Ended: 2010.11.15\nParticipants: Lurch (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld Y1 B2 G3\n\n2) Lurch: Homeworld Y1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) Lurch: Build G1 Lurch\n\n5) Remneb: Trade G1 Y1 Remneb\n\n\nHomeworlds Online (SDG# 18004)\nStarted: 2010.11.8, Ended: 2010.11.11\nParticipants: Remneb (S), rootbier (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 18054)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.10, Ended: 2010.11.25\nParticipants: dlwillson (S), goblin981 (N)\nWinner: dlwillson\n\n1) goblin981: Homeworld G3 B2 R3\n\n2) dlwillson: H B3 Y1 G3\n\n3) goblin981: Build R1 Goblin981\n\n4) dlwillson: B G1 Dlwillson\n\n5) goblin981: Build R1 Goblin981\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) goblin981: Trade R1 G1 Goblin981\n\n8) dlwillson: B G1 Dlwillson\n\n9) goblin981: Build R1 Goblin981\n\tdlwillson: Why didn&#39;t you trade r1 for y1, or is it a surprise?\n\tgoblin981: wanted to get a green out there first.\n\n10) dlwillson: B R2 Dlwillson\n\n11) goblin981: Trade R1 Y1 Goblin981\n\n12) dlwillson: T G1 B1 Dlwillson\n\n13) goblin981: Discover G1 Goblin981 Y1 Yellow\n\n14) dlwillson: B B1 Dlwillson\n\n15) goblin981: Discover G1 Yellow R3 Kry\n\n16) dlwillson: D B1 Dlwillson G2 Turkey\n\n17) goblin981: Build Y1 Goblin981\n\n18) dlwillson: D B1 Dlwillson Y2 Chicken\n\n19) goblin981: Build Y2 Goblin981\n\n20) dlwillson: Build G1 Dlwillson\n\n21) goblin981: Discover Y1 Goblin981 G1 Sick\n\n22) dlwillson: D B1 Chicken R1 Partridge\n\n23) goblin981: Build R2 Goblin981\n\n24) dlwillson: T G3 Y3 Dlwillson\n\n25) goblin981: Trade R2 B2 Goblin981\n\n26) dlwillson: B G2 Dlwillson\n\n27) goblin981: Move B2 Goblin981 Sick\n\n28) dlwillson: Move Y3 Dlwillson Turkey\n\n29) goblin981: Build Y2 Sick\n\n30) dlwillson: Build Y2 Turkey\n\n31) goblin981: Build G2 Kry\n\n32) dlwillson: Move Y2 Turkey Partridge\n\n33) goblin981: Trade Y2 R2 Sick\n\n34) dlwillson: M R2 Dlwillson Turkey\n\n35) goblin981: Discover R2 Sick Y2 Yell\n\n36) dlwillson: Sacrifice G2 Dlwillson\nBuild Y3 Partridge\nBuild Y3 Turkey\n\n37) goblin981: Move B2 Sick Yell\n\n38) dlwillson: B G2 Dlwillson\n\n39) goblin981: Move Y1 Sick Yell\n\n40) dlwillson: S G2 Dlwillson\nB R2 Turkey\nB R3 Dlwillson\n\n41) goblin981: Discover R1 Goblin981 B1 Blu\n\n42) dlwillson: T Y3 G3 Partridge\n\n43) goblin981: Sacrifice G1 Kry\nB B2 Yell\n\n\n44) dlwillson: S G3 Partridge\nB B3 Partridge\nB Y3 Partridge\nB B3 Turkey\n\n45) goblin981: Sacrifice G2 Kry\nB R3 Goblin981\nPass\n\n46) dlwillson: S Y3 Turkey\nM Y2 Partridge Goblin981\nM B1 Partridge Goblin981\nM R2 Turkey Partridge\n\n47) goblin981: Attack Y2S Goblin981\n\tgoblin981: this ones been going a while.  You&#39;ve managed to grab most of the pieces though.\n\tdlwillson: I think we&#39;re done in two, though.\n\n48) dlwillson: S Y3 Turkey\nM R2 Turkey Partridge\nM R2 Partridge Goblin981\nM R2 Partridge Goblin981\nC Goblin981 R\n\n49) goblin981: S Y1 Goblin981\nMove R1 Blu Yell\n\n50) dlwillson: Build B1 Goblin981\n\n51) goblin981: Trade Y2 R2 Goblin981\n\n52) dlwillson: M Y3 Partridge Goblin981\n\n53) goblin981: Sacrifice R2 Yell\nA B1S Goblin981\nA B1S Goblin981\n\n54) dlwillson: Sacrifice R3 Dlwillson\nAttack B1 Goblin981\nAttack Y2 Goblin981\nAttack R2 Goblin981\n\n55) goblin981: Pass\n\tdlwillson: I way miscounted the remaining moves!\n\n56) dlwillson: S Y3 Goblin981\nM B3 Turkey Partridge\nM B3 Partridge Goblin981\nM B3 Partridge Goblin981\nC Goblin981 B\n\tdlwillson: Have you seen Goblins Comic?\n\tgoblin981: no. \n\n\tdlwillson: If you&#39;re a fan of goblins, you might like it. Www.goblinscomic.com.\n\tdlwillson: Thanks for the game.\n\nHomeworlds Online (SDG# 17917)\nStarted: 2010.11.10, Ended: 2010.11.14\nParticipants: ts52 (S), OnePageWars (N)\nWinner: ts52\n\n1) OnePageWars: Homeworld G3 Y2 B3\n\tOnePageWars: How do I use the Interface?\n\tts52: The commands and syntax are listed at the top. The first thing you have to do is build a Homeworld with the Homeworlds command. \n\n2) ts52: H Y2 B1 G3\n\tOnePageWars: Thanks. I think I have it partly figured out. I know how to play, but I couldn&#39;t figure out how to use their interface.\n\n3) OnePageWars: Build B1 Onepagewars\n\n4) ts52: B G1 Ts52\n\tOnePageWars: I&#39;ll get this figured out eventually. :)\n\n5) OnePageWars: Discover B3 Onepagewars Y1 Yellowstar\n\tts52: You can abbreviate any command to just the first letter too. \n\n6) ts52: Trade G1 B1 Ts52\n\n7) OnePageWars: Trade B1 G1 Onepagewars\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) OnePageWars: Build G1 Onepagewars\n\n10) ts52: Build B1 Kermit\n\n11) OnePageWars: Move G1 Onepagewars Yellowstar\n\n12) ts52: Trade B1 Y1 Kermit\n\n13) OnePageWars: Trade G1 R1 Yellowstar\n\n14) ts52: Trade Y1 R1 Kermit\n\n15) OnePageWars: Build G1 Onepagewars\n\n16) ts52: B G1 Ts52\n\n17) OnePageWars: Build G2 Onepagewars\n\n18) ts52: Build G2 Ts52\nCatastrophe Onepagewars Green\n\tts52: Thanks for the game. I&#39;d be happy to play again, anytime. Feel free to challenge me to an unrated game if you just to play with the interface more.\n\tOnePageWars: Thanks!\n\n\nHomeworlds Online (SDG# 17707)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.11, Ended: 2010.11.15\nParticipants: shmil1 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) shmil1: Build Y1 Shmil1\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) shmil1: Trade Y1 B1 Shmil1\n\n7) zoltar: Build Y1 Zoltar\n\n8) shmil1: Build B1 Shmil1\n\n9) zoltar: Trade Y1 B1 Zoltar\n\n10) shmil1: Discover B1 Shmil1 Y3 Zluty\n\n11) zoltar: Discover B1 Zoltar G1 Greenpea\n\n12) shmil1: Move B1 Zluty Greenpea\n\n13) zoltar: Trade B1 R1 Greenpea\n\n14) shmil1: Build Y1 Shmil1\n\n15) zoltar: Attack B1 Greenpea\n\n16) shmil1: Trade Y1 R1 Shmil1\n\n17) zoltar: Build Y1 Zoltar\n\n18) shmil1: Build B1 Shmil1\n\n19) zoltar: Build B2 Greenpea\n\n20) shmil1: Discover B1 Shmil1 G3 Zelenysvet\n\n21) zoltar: Trade B2 Y2 Greenpea\n\n22) shmil1: Build B2 Zelenysvet\n\n23) zoltar: Build B3 Greenpea\n\n24) shmil1: Trade B1 Y1 Zelenysvet\n\n25) zoltar: Discover Y1 Zoltar G1 Greenbean\n\n26) shmil1: Build Y2 Zelenysvet\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y3 Greenbean\nBuild Y3 Zoltar\n\n28) shmil1: Move Y1 Zelenysvet Greenbean\n\n29) zoltar: Sacrifice B3 Greenpea\nTrade Y2 G2 Greenpea\nTrade Y3 G3 Greenbean\nTrade Y3 G3 Zoltar\n\n30) shmil1: Build Y2 Zelenysvet\n\n31) zoltar: Sacrifice G2 Greenpea\nBuild Y3 Greenpea\nBuild Y3 Zoltar\n\tzoltar: Yikes: too many threats. I&#39;d better sacrifice and get some stability. \n\n32) shmil1: Trade Y2 R2 Zelenysvet\n\n33) zoltar: Trade Y2 R2 Greenpea\n\n34) shmil1: Build Y2 Greenbean\n\n35) zoltar: Move Y3 Greenpea Zelenysvet\n\n36) shmil1: Discover B2 Zelenysvet R1 Rudy\n\n37) zoltar: Sacrifice R2 Greenpea\nAttack R2 Zelenysvet\nAttack Y2 Zelenysvet\n\n38) shmil1: Sacrifice R1 Shmil1\nAttack Y1 Greenbean\n\n39) zoltar: Sacrifice Y2 Zelenysvet\nMove Y1 Zoltar Greenbean\nMove Y3 Zelenysvet Shmil1\nCatastrophe Greenbean Y\n\n40) shmil1: Trade Y3 R3 Shmil1\n\n41) zoltar: Sacrifice R2 Zelenysvet\nAttack B1 Shmil1\nAttack R3 Shmil1\n\n\tzoltar: good game! It got exciting there for a while.\n\nHomeworlds Online (SDG# 18072)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.11, Ended: 2010.11.17\nParticipants: rodrigotjader (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld G3 B2 Y3\n\n2) rodrigotjader: Homeworld G1 B3 R3\n\n3) OnePageWars: Build Y1 Onepagewars\n\n\nHomeworlds Online (SDG# 18039)\nStarted: 2010.11.11, Ended: 2010.11.14\nParticipants: Remneb (S), rootbier (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 18097)\nVariants: &quot;Unrated&quot;\nStarted: 2010.11.14, Ended: 2010.11.16\nParticipants: OnePageWars (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 Y2 G3\n\n2) OnePageWars: Homeworld G3 B2 R3\n\tts52: have a good game, ask any questions you like, and feel free to get my attention by making a move, then undoing it. \n\n3) ts52: Build G1 Ts52\n\tts52: Just so you realize, you&#39;ve set up another &#39;small universe&#39; game by picking the same size pieces that I have.\n\n4) OnePageWars: Build R1 Onepagewars\n\tOnePageWars: ???\r\n\n\n5) ts52: T G1 R1 Ts52\n\n6) OnePageWars: Trade R1 Y1 Onepagewars\n\tts52: Sorry, I was teaching someone else Homeworlds, and explaining the issues with creating a homeworld with matching sizes as your opponent. Now our Homeworlds are only one system apart. \n\tOnePageWars: Oh! I didn&#39;t notice that. :)\n\n7) ts52: B G1 Ts52\n\tOnePageWars: I appreciate your patience with helping me get used to this game. This is only my second game.\n\tts52: No problem, I&#39;m always happy to help new players. \n\n8) OnePageWars: Discover R3 Onepagewars G1 Cyteen\n\n9) ts52: Build G1 Ts52\n\n10) OnePageWars: Build Y1 Onepagewars\n\n11) ts52: Discover G1 Ts52 B1 Grover\n\n12) OnePageWars: Move Y1 Onepagewars Cyteen\n\n13) ts52: Build G2 Grover\n\n14) OnePageWars: Move R3 Cyteen Ts52\n\n15) ts52: Attack R3 Ts52\n\n\nHomeworlds Online (SDG# 18014)\nStarted: 2010.11.14, Ended: 2010.11.18\nParticipants: daselva (S), dethdukk (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 18078)\nStarted: 2010.11.14, Ended: 2010.11.22\nParticipants: rootbier (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 17829)\nStarted: 2010.11.14, Ended: 2010.11.22\nParticipants: mathochist (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 18134)\nStarted: 2010.11.15, Ended: 2010.11.24\nParticipants: zoltar (S), daselva (N)\nWinner: zoltar\n\n1) daselva: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\tzoltar: An excellent choice of stars this time. When I get to a difficult endgame, I&#39;m usually glad I had a red star in my homeworld for defense!\n\n3) daselva: Build G1 Daselva\n\n4) zoltar: Build G1 Zoltar\n\n5) daselva: Trade G1 Y1 Daselva\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) daselva: Build G1 Daselva\n\n8) zoltar: Build G1 Zoltar\n\n9) daselva: Trade G1 R1 Daselva\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) daselva: Build R1 Daselva\n\n12) zoltar: Build B1 Zoltar\n\n13) daselva: Discover R1 Daselva G3 S1\n\n14) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n15) daselva: Sacrifice Y1 Daselva\nMove R1 S1 Greenbelt\n\n16) zoltar: Sacrifice Y1 Zoltar\nDiscover B1 Greenbelt G3 Greengiant\n\n17) daselva: Build R2 Greenbelt\n\n18) zoltar: Build B2 Greengiant\n\n19) daselva: Build G1 Daselva\n\n20) zoltar: Trade B2 R2 Greengiant\n\n21) daselva: Trade R1 Y1 Daselva\n\n22) zoltar: Build B2 Greengiant\n\n23) daselva: Trade G1 R1 Daselva\n\n24) zoltar: Build R3 Greengiant\n\n25) daselva: Build R3 Greenbelt\n\n26) zoltar: Trade R3 Y3 Greengiant\n\n27) daselva: Discover R1 Daselva B3 S1\n\n28) zoltar: Move R2 Greengiant Greenbelt\nCatastrophe Greenbelt R\n\n29) daselva: Sacrifice Y1 Daselva\nDiscover R1 S1 Y2 S2\n\n30) zoltar: Trade B2 G2 Greengiant\n\n31) daselva: Build G1 Daselva\n\n32) zoltar: Move G2 Greengiant Daselva\n\n33) daselva: Trade G3 Y3 Daselva\n\n34) zoltar: Sacrifice G2 Daselva\nBuild B2 Greengiant\nBuild B2 Zoltar\n\n35) daselva: Build G1 Daselva\n\n36) zoltar: Trade B2 R2 Greengiant\n\n37) daselva: Discover R1 S2 G3 S1\n\n38) zoltar: Trade B2 Y2 Zoltar\n\n39) daselva: Discover G1 Daselva Y3 S2\n\n40) zoltar: Build B2 Greengiant\n\n41) daselva: Build G1 S2\n\n42) zoltar: Build G2 Zoltar\n\n43) daselva: Build G2 Daselva\n\n44) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild B2 Greengiant\n\n45) daselva: Build Y1 Daselva\n\n46) zoltar: Discover B2 Greengiant B2 Bluemoon\n\n47) daselva: Discover G1 S2 R2 S3\n\n48) zoltar: Sacrifice G2 Zoltar\nBuild B3 Bluemoon\nBuild B3 Zoltar\n\n49) daselva: Build G2 S3\n\n50) zoltar: Trade B3 R3 Bluemoon\n\n51) daselva: Sacrifice Y1 Daselva\nDiscover R1 S1 Y2 S4\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild B3 Bluemoon\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n53) daselva: Build Y1 Daselva\n\n54) zoltar: Move G3 Zoltar S4\n\n55) daselva: Sacrifice G2 S3\nBuild R1 S4\nBuild R3 S4\n\n56) zoltar: Sacrifice R3 Bluemoon\nAttack R1 S4\nAttack R1 S4\nAttack R3 S4\n\n57) daselva: Build G2 S2\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild R3 Greengiant\nBuild R3 Greengiant\nBuild G3 Zoltar\n\n59) daselva: Move Y1 Daselva S2\n\n60) zoltar: Sacrifice Y2 Zoltar\nMove R3 Greengiant Daselva\nMove R3 Greengiant Daselva\n\n61) daselva: Attack R3 Daselva\n\n62) zoltar: Sacrifice R3 S4\nAttack R3 Daselva\nAttack Y3 Daselva\nAttack G2 Daselva\n\n63) daselva: Move G2 S2 Daselva\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G3 Daselva\nBuild R3 Daselva\nBuild Y1 Greengiant\n\n\nHomeworlds Online (SDG# 18146)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.16, Ended: 2010.11.26\nParticipants: nycavri (S), Gidaio (N)\nWinner: nycavri\n\n1) Gidaio: Homeworld Y1 B2 G3\n\n2) nycavri: Homeworld G3 B2 Y3\n\tGidaio: Good luck!\n\tnycavri: TaGG!\n\n3) Gidaio: Build G1 Gidaio\n\n4) nycavri: Build Y1 Nycavri\n\n5) Gidaio: Build G1 Gidaio\n\n6) nycavri: Build Y1 Nycavri\n\n7) Gidaio: Discover G1 Gidaio B3 Llanowar\n\n8) nycavri: Trade Y3 G3 Nycavri\n\n9) Gidaio: Build G1 Gidaio\n\n10) nycavri: Build G2 Nycavri\n\n11) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Llanowar\nBuild G2 Llanowar\nBuild G3 Gidaio\n\n12) nycavri: Discover Y1 Nycavri R1 Deacon\n\n13) Gidaio: Trade G2 Y2 Llanowar\n\tnycavri: M:tG player, I see!\n\tGidaio: Yeah!\n\n14) nycavri: Trade G2 R2 Nycavri\n\n15) Gidaio: Discover G1 Llanowar R1 Serra\n\n16) nycavri: Discover Y1 Deacon B3 May\n\n17) Gidaio: Move G2 Llanowar Serra\n\n18) nycavri: Move Y1 May Gidaio\n\n19) Gidaio: Sacrifice Y2 Llanowar\nMove G1 Serra Nycavri\nMove G2 Serra Nycavri\nCatastrophe Nycavri Green\n\n20) nycavri: Trade Y1 G1 Gidaio\nCatastrophe Gidaio G\n\n\tnycavri: Thanks for the game.\n\tGidaio: Holy dang! Nice ending. Didn&#39;t see that at all. I&#39;ll have to keep that strategy in mind for future games!\r\n\r\nAll in all, good game!\n\tnycavri: Yeah, it only works if you trigger the catastrophe in my homeworld to provide me with the G1 I needed . . .\r\n\r\nI&#39;m sure we&#39;ll meet again on the Ladder!\n\nHomeworlds Online (SDG# 17856)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.17, Ended: 2010.11.24\nParticipants: SilentTitan (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Remneb: Build G1 Remneb\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Remneb: Discover Y1 Remneb G3 Draconis\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) Remneb: Build Y1 Draconis\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) Remneb: Discover Y1 Draconis Y2 Klon\n\n14) SilentTitan: Discover Y1 Silenttitan B1 Bluestar\n\n15) Remneb: Discover Y1 Klon B3 Ragnarok\n\n16) SilentTitan: Build B2 Silenttitan\n\n17) Remneb: Build Y2 Draconis\n\n18) SilentTitan: Discover B1 Silenttitan G1 Greenstar\n\n19) Remneb: Move Y2 Draconis Remneb\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Greenstar\nBuild B3 Greenstar\nBuild B3 Silenttitan\n\n21) Remneb: Trade G3 R3 Remneb\n\n22) SilentTitan: Sacrifice B2 Greenstar\nTrade B3 R3 Greenstar\nTrade B3 G3 Silenttitan\n\n23) Remneb: Move Y1 Ragnarok Remneb\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Greenstar\nBuild B3 Greenstar\nBuild B3 Silenttitan\n\n25) Remneb:\nBuild Y2 Remneb\n\n26) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Bluestar Draconis\nMove Y1 Draconis Remneb\nCatastrophe Remneb Yellow\n\n27) Remneb: Move Y1 Draconis Remneb\n\n28) SilentTitan: Sacrifice B2 Greenstar\nTrade B3 Y3 Greenstar\nTrade B3 G3 Silenttitan\n\n29) Remneb: Build Y1 Remneb\n\n30) SilentTitan: Build B1 Greenstar\n\n31) Remneb: Build G1 Remneb\n\n32) SilentTitan: Discover B1 Greenstar R2 Redstar\n\n33) Remneb: Build G2 Remneb\n\n34) SilentTitan: Build B2 Greenstar\n\n35) Remneb: Trade G1 R1 Remneb\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Greenstar\nBuild B3 Redstar\nBuild B3 Silenttitan\n\n37) Remneb: Discover Y1 Remneb G3 Rooky\n\n38) SilentTitan: Sacrifice B2 Greenstar\nTrade B3 G3 Silenttitan\nTrade B3 G3 Redstar\n\n39) Remneb: Discover R1 Remneb Y3 Alderan\n\tSilentTitan: ok... I thought you might be a beginner.  we should start again or at the very least you should take back your last turn, because if there is ever four of the same color in a system either player can call for a catasrophe and that will destroy all the items of that color in that system. In this case you just created the forth red item in your home system. \r\n\r\n\n\tRemneb: Well i did not include the star...yes i&#39;m a beginner...the only games that i played to the finish was the two that i lost against Ts52.\n\n40) SilentTitan: Sacrifice G3 Redstar\nBuild B2 Redstar\nBuild B3 Redstar\nBuild B3 Silenttitan\n\tSilentTitan: If you&#39;d like.  After this game, if you challenge me again. I can give you ideas of things you may want to consider when deciding your moves. \r\n\n\n41) Remneb: Build Y1 Remneb\n\tRemneb: Ok for a re-match...thanks for the offer.\n\n42) SilentTitan: Trade B3 Y3 Silenttitan\n\n43) Remneb: Discover Y1 Remneb B3 Remagen\n\n\n44) SilentTitan: Sacrifice Y3 Silenttitan\nMove B3 Redstar Alderan\nMove B2 Redstar Remagen\nMove B3 Greenstar Rooky\n\n45) Remneb: Discover G1 Remneb Y3 Omaha\n\n46) SilentTitan: Sacrifice R3 Greenstar\nAttack R1 Alderan North\nAttack Y1 Remagen North\nAttack Y1 Rooky North\n\n47) Remneb: Build Y2 Remneb\n\tRemneb: I think you have a lot of fun :)\n\tRemneb: In a system with a red star,do every ships in that system are capable of attacking because they are in a red system?\n\n48) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Rooky\nBuild Y2 Remagen\nBuild R1 Alderan\n\tSilentTitan: Yes. think of the color of the pieces as technology red=attack tech; blue=trade tech; yellow=move tech and green=build tech. In the case of ships only your pieces can use the tech, but in the case of planets the whole system gets to use the tech, no matter who is in the system.\n\n49) Remneb: Sacrifice Y2 Remneb\nMove R3 Remneb Omaha\nMove R3 Omaha Greenstar\n\tSilentTitan: also as you can see here I can sacrifice a piece to have that tech where ever I need it to be. In this case I sacrificed a 3-pip red so I got to execute three attack actions. and I took three of your ships because in each system I had a ship that was as big or bigger. \n\tRemneb: Understand.Also,i saw along the game that you sacrifice a g3 to create 3 other ships.If you sacrifice a b3,you also can build 3 other ships?\n\n50) SilentTitan: Sacrifice Y3 Greenstar\nMove B3 Alderan Remneb\nMove B3 Rooky Remneb\nMove B2 Remagen Remneb\nCatastrophe Remneb Blue\n\tRemneb: I never been able by the game system to build a blew ship.I have a blew star in my Homeworld.I know that i need to have a ship of the same color already in position in the system where i want a blew ship.The blew star is apparently not enough to build a blew ship.\n\tSilentTitan: correct including you can rebuild the g3 you just sacrificed as long as it&#39;s avaliable in the bank. Say there is a g2 and a g3 in the bank and on your turn you sacrifice a g3 you can then build a g2 then build a g3 then build another g3 which is the g3 that was returned to the bank when you sacrificed it at the beginning of your turn. the only requirement is that you have to have a green ship in the system your going to build green ships. Same with the blue ships.  A star give you that tech (ie a blue star gives trade tech) but in order to build blue ships you have to already have a blue ship.\n\tSilentTitan: at this point you would have to trade one of your existing ships for a blue ship, which you are unable to do because either I have them all, or they are planets. Having a monopoly on one of the colors is a one of the easiest ways to win the game.  If you can deny the other player on of the techs then that gives you a very distinct advantage.\r\n\n\n51) Remneb: Sacrifice Y1 Remneb\nMove R3 Greenstar Silenttitan\n\tRemneb: That&#39;s the orders i gave:sacrifice y2 Remneb \r\nmove r3 Remneb Rooky\r\nattack b3 Rooky...but the system told me that i have no more actions.What is wrong in my orders ?\n\n52) SilentTitan: Sacrifice Y2 Remagen\nMove Y2 Rooky Remneb\nMove B1 Greenstar Silenttitan\n\n53) Remneb: Attack Y2 Remneb\n\tSilentTitan: you can only do one type of action a turn .. so you cannot move and attack or trade and move or build and attack etc.... since you sacked a y2 you had to either do two moves or one move and a pass\n\tSilentTitan: The problem you have with the move you&#39;ve made here is that I can sacrifice either of the r1&#39;s in Alderan which gives me 1 attack action I can take anywhere on the board. I can use that attack action combined with my Y3 in greenstar to take your R3 that you just moved in. Like so\n\n54) SilentTitan: Trade B1 R1 Silenttitan\n\n55) Remneb: Attack B2 Silenttitan\n\tSilentTitan: but instead...  I will move three of my blue ships into your homeworld and catastrophe the blue\n\tSilentTitan: I want to keep mentioning to you... that you can only use the stars or your own ships in a system for the technology. In the case of system GreenStar now... you can only attack or build in that system you cannot trade or move (unless you sacrifice a blue or yellow somewhere else on the board) because you only have a red (attack) ship and the star is green (build).  you cannont trade in Greenstar because the blue ship is nime and therefore the technology is not yours. Is this making sense? If you do an attack option and capture my blue ship then you would be able to trade the turn after that. the command to attack my blue ship is &quot;attack b1 greenstar south&quot; you have to add the south part to this command so it knows who you are attacking ... while this doesn&#39;t make sense in the two player game ... it does in the four player game. \n\n56) SilentTitan: Move R1 Alderan Remneb\n\tRemneb: My target was your b2 in your Homeworld.\n\tRemneb: There&#39;s a lot of things to keep in mind when playing that game.I&#39;m going-with your permission-copy all your comments for further studying.I found nothing on the net about the tactical aspect of Homeworlds.\n\n57) Remneb: Trade B2 R2 Silenttitan\nCatastrophe Silenttitan R\n\tSilentTitan: Whoops... you&#39;re right.  Nice Job! I got so caught up in teaching that I wasn&#39;t watching out. Did you want to play again?\n\tRemneb: Yes of course.I surely need more training.\n\n\tSilentTitan: Good Game!! Nice Job at the end ... there were some puzzles there you had to figure out. \n\tSilentTitan: Yeah.... I&#39;ll tell my brother-in-law... that kind of thing is right up his alley\n\tSilentTitan: oops I probably should have this practice game be rated... heh\n\tRemneb: I think that you can be a good teacher also...since i don&#39;t know who is your brother-in-law.\n\tRemneb: Gosh! I tough it was not a rated game.\n\tRemneb: Let&#39;s play again.I will challenge you for a rated game.No help this time.I should be stunt in a few moves :)\n\tSilentTitan: ah... yes of course .. my bro-in-law is in position 2 on the ladder dlwillson.\n\tRemneb: He&#39;s playing a game against TwoShort for the 2000 rating :)\n\nHomeworlds Online (SDG# 18167)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.18, Ended: 2010.12.2\nParticipants: dlwillson (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) dlwillson: Homeworld B2 Y3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) dlwillson: Build G1 Dlwillson\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) TwoShort: Build G1 Twoshort\n\n8) dlwillson: B G1 Dlwillson\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) TwoShort: Build Y1 Twoshort\n\n12) dlwillson: B Y2 Dlwillson\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) dlwillson: D Y1 Dlwillson G1 Rivendell\n\n15) TwoShort: Build G1 Twoshort\n\n16) dlwillson: Discover Y2 Dlwillson R1 Mordor\n\n17) TwoShort: Build G2 Yolonda\n\n18) dlwillson: Build G2 Dlwillson\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n20) dlwillson: Move G2 Dlwillson Mordor\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Twoshort\n\n22) dlwillson: S Y2 Mordor\nM Y1 Rivendell Grogar\nM Y1 Grogar Twoshort\nC Twoshort Y\n\n23) TwoShort: Trade G3 Y3 Twoshort\n\n24) dlwillson: S G2 Mordor\nB G1 Dlwillson\nB R1 Dlwillson\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n26) dlwillson: T R1 Y1 Dlwillson\n\n27) TwoShort: Trade G2 R2 Twoshort\n\n28) dlwillson: D Y1 Dlwillson B1 Delay\n\n29) TwoShort: Move G2 Yolonda Delay\n\n30) dlwillson: Move Y1 Delay Grogar\n\n31) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Delay\nMove G1 Delay Dlwillson\nMove G2 Delay Dlwillson\nCatastrophe Dlwillson Green\n\tdlwillson: There&#39;s not much point in playing since a few turns ago, but I think I remember that you prefer to play it out, so that&#39;s what I&#39;m doing.\n\tTwoShort:   Because sometimes surprises happen (by definition) when you&#39;re pretty sure they won&#39;t, I do like to play a few moves past where it seems clear who will win. (e.g. a few moves ago)  \r\n  I don&#39;t really mind if you call it or not once it&#39;s completely positive who will win. (e.g. now :) )\n\n\tdlwillson: Very good. I&#39;ll leave the ladder alone for a week or two. Let some other folks have a chance to play you (or me, whomever).\n\nHomeworlds Online (SDG# 18095)\nStarted: 2010.11.18, Ended: 2010.12.22\nParticipants: ts52 (S), shelbytwest (N)\nWinner: ts52\n\n1) shelbytwest: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) shelbytwest: Build G1 Shelbytwest\n\tts52: have a good game!\n\n4) ts52: Build G1 Ts52\n\tshelbytwest: Thanks!  You too.\n\n5) shelbytwest: Trade G3 Y3 Shelbytwest\n\n6) ts52: Trade G1 Y1 Ts52\n\n\nHomeworlds Online (SDG# 18098)\nVariants: &quot;Unrated&quot;\nStarted: 2010.11.20, Ended: 2011.2.23\nParticipants: headphoned (S), Uglyfoot (W), Mandrel (N), OnePageWars (E)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) OnePageWars: Homeworld G3 Y2 B3\n\tMandrel: Have a good game all.\n\n3) headphoned: Homeworld R1 B3 G3\n\tOnePageWars: Thanks.\n\n4) Uglyfoot: Homeworld B3 Y2 G3\n\n5) Mandrel: B G1 Mandrel\n\n6) OnePageWars: Build B1 Onepagewars\n\n7) headphoned: B G1 Headphoned\n\tOnePageWars: TaGG!!\n\tUglyfoot: have a good game!\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Mandrel: T G1 Y1 Mandrel\n\n10) OnePageWars: Trade B1 Y1 Onepagewars\n\n11) headphoned: Trade G1 Y1 Headphoned\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) Mandrel: Build G1 Mandrel\n\n14) OnePageWars: Build B1 Onepagewars\n\n15) headphoned: B G1 Headphoned\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) Mandrel: Trade G1 R1 Mandrel\n\n18) OnePageWars: Build Y1 Onepagewars\n\n19) headphoned: B G1 Headphoned\n\n20) Uglyfoot: Build G1 Uglyfoot\n\n21) Mandrel: Build Y1 Mandrel\n\n22) OnePageWars: Build Y2 Onepagewars\n\n23) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n24) Mandrel: Build Y2 Mandrel\nCatastrophe Onepagewars Yellow\n\n25) Uglyfoot: Discover G1 Uglyfoot Y1 Port\n\n26) Mandrel: Move Y1 Mandrel Onepagewars\n\n27) Uglyfoot: Build G1 Port\n\n28) Mandrel: Build G2 Mandrel\n\n29) Uglyfoot: Move G1 Port Onepagewars\n\n30) Mandrel: Build Y1 Onepagewars\n\n31) Uglyfoot: Build G2 Onepagewars\n\n32) Mandrel: Move G2 Mandrel Onepagewars\nCatastrophe Onepagewars Green\n\n33) Uglyfoot: Build Y1 Uglyfoot\n\n34) Mandrel: Trade Y1 B1 Mandrel\n\n35) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n36) Mandrel: Discover B1 Mandrel G3 Tat\n\n37) Uglyfoot: Build G1 Port\n\n38) Mandrel: Build G2 Mandrel\n\n39) Uglyfoot: Discover G1 Port Y3 Shiny\n\n40) Mandrel: Move G2 Mandrel Tat\n\n41) Uglyfoot: Build G2 Port\n\n42) Mandrel: Build G2 Mandrel\n\n43) Uglyfoot: Build G2 Shiny\n\n44) Mandrel: Trade G2 Y2 Tat\n\n45) Uglyfoot: Trade G1 B1 Uglyfoot\n\n46) Mandrel: Build Y1 Tat\n\n47) Uglyfoot: Move B1 Uglyfoot Port\n\n48) Mandrel: Build B1 Tat\n\n49) Uglyfoot: Trade G2 Y2 Port\n\n50) Mandrel: Trade G3 R3 Mandrel\n\n51) Uglyfoot: Sacrifice B1 Port\nTrade G2 R2 Shiny\n\n52) Mandrel: Move R1 Mandrel Tat\n\n53) Uglyfoot: Build R1 Shiny\n\n54) Mandrel: Trade R3 B3 Mandrel\n\n55) Uglyfoot: Build R2 Uglyfoot\n\n56) Mandrel: Build R2 Tat\n\n57) Uglyfoot: Trade R2 B2 Uglyfoot\n\n58) Mandrel: Discover R2 Tat G1 Cold\n\n59) Uglyfoot: Build G2 Shiny\n\n60) Mandrel: Build G2 Mandrel\n\n61) Uglyfoot: Sacrifice B2 Uglyfoot\nTrade R1 B1 Shiny\nTrade G1 Y1 Shiny\n\n62) Mandrel: Move Y1 Tat Cold\n\n63) Uglyfoot: Build G1 Shiny\n\n64) Mandrel: Build Y2 Cold\n\n65) Uglyfoot: Build B1 Shiny\n\n66) Mandrel: Build Y3 Mandrel\n\n67) Uglyfoot: Sacrifice Y2 Port\nMove B1 Shiny Mandrel\nMove B1 Shiny Mandrel\nCatastrophe Mandrel B\n\n68) Mandrel: Sacrifice Y2 Mandrel\nMove Y2 Cold Uglyfoot\nMove Y1 Cold Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n69) Uglyfoot: Build G2 Port\n\n70) Mandrel: Move B1 Tat Mandrel\n\n71) Uglyfoot: Trade R1 B1 Uglyfoot\n\n72) Mandrel: Sacrifice Y3 Mandrel\nMove B1 Mandrel Uglyfoot\nMove B1 Tat Mandrel\nMove B1 Mandrel Uglyfoot\nCatastrophe Uglyfoot Blue\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 18170)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.23, Ended: 2010.12.15\nParticipants: sompm (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) sompm: Homeworld G2 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) sompm: Build Y1 Sompm\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) sompm: Build Y1 Sompm\n\n7) SilentTitan: Build Y2 Silenttitan\n\n8) sompm: Discover Y1 Sompm G3 Caboose\n\n9) SilentTitan: Discover Y1 Silenttitan B1 D_rgw\n\n10) sompm: Build Y2 Caboose\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) sompm: Build Y2 Sompm\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 D_rgw\nBuild Y3 Silenttitan\nBuild G1 Silenttitan\n\n14) sompm: Trade Y2 B2 Sompm\n\n15) SilentTitan: Trade Y3 R3 D_rgw\n\n16) sompm: Trade Y1 R1 Sompm\n\n17) SilentTitan: Move R3 D_rgw Caboose\n\tSilentTitan: ok... are you a beginner? Can I give advice?\n\tsompm: I&#39;m not really a beginner, but you can give all the advice you want. Is that in reaction to that last move?\n\tSilentTitan: yes. I could sacrifice the Y2 in silenttitan and move the R3 in D_RGW into your homeworld and I was wondering if you had missed that?\n\tsompm: apparently so. Thank you. That might not have been in your best interest, but the game may be slightly more interesting now. I&#39;ll try to be more aware.\n\n18) sompm: Sacrifice Y2 Caboose\nMove Y1 Caboose D_rgw\nDiscover B2 Sompm Y3 Progress\n\n19) SilentTitan: Trade Y1 R1 D_rgw\n\n20) sompm: Sacrifice Y1 D_rgw\nDiscover B2 Progress G1 Congress\n\n21) SilentTitan: Move Y2 Silenttitan Congress\n\n22) sompm: Build R1 Sompm\n\n23) SilentTitan: Sacrifice R1 D_rgw\nAttack B2 Congress South\n\n24) sompm: Build R1 Sompm\n\n25) SilentTitan: Build B1 Congress\n\n\nHomeworlds Online (SDG# 18136)\nVariants: &quot;Unrated&quot;\nStarted: 2010.11.24, Ended: 2011.1.10\nParticipants: sompm (S), daselva (W), zoltar (N), OnePageWars (E)\nWinner: zoltar\n\n1) zoltar: Homeworld R2 B1 G3\n\n2) OnePageWars: Homeworld R3 G2 B3\n\n3) sompm: Homeworld B3 G2 Y3\n\n4) daselva: Homeworld B1 R3 G3\n\n5) zoltar: Build G1 Zoltar\n\n6) OnePageWars: Build B1 Onepagewars\n\n7) sompm: Build Y1 Sompm\n\n8) daselva: Build G1 Daselva\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) OnePageWars: Trade B1 Y1 Onepagewars\n\n11) sompm: Build Y1 Sompm\n\n12) daselva: Build G1 Daselva\n\n13) zoltar: Build G1 Zoltar\n\n14) OnePageWars: Build Y1 Onepagewars\n\n15) sompm: Discover Y1 Sompm G1 Technochocolate\n\n16) daselva: Trade G3 Y3 Daselva\n\n17) zoltar: Build Y2 Zoltar\n\n18) OnePageWars: Move Y1 Onepagewars Technochocolate\n\n19) sompm: Build Y2 Sompm\n\n20) daselva: Build Y2 Daselva\n\n21) zoltar: Trade Y1 B1 Zoltar\n\n22) OnePageWars: Move Y1 Technochocolate Sompm\nCatastrophe Sompm Y\n\n23) daselva: Trade Y2 R2 Daselva\n\tOnePageWars: Sorry Sompm!\n\n24) zoltar: Discover B1 Zoltar G3 Greengiant\n\n25) OnePageWars: Build B1 Onepagewars\n\n26) daselva: Discover R2 Daselva Y2 S1\n\n27) zoltar: Build Y1 Zoltar\n\n28) OnePageWars: Build Y1 Onepagewars\n\n29) daselva: Move G1 Daselva S1\n\n30) zoltar: Trade G1 R1 Zoltar\n\n31) OnePageWars: Trade Y1 R1 Onepagewars\n\n32) daselva: Build R1 S1\n\n33) zoltar: Move Y2 Zoltar Greengiant\n\n34) OnePageWars: Build Y1 Onepagewars\n\n35) daselva: Move R2 S1 Greengiant\n\n36) zoltar: Sacrifice R1 Zoltar\nAttack R2W Greengiant\n\n37) OnePageWars: Move Y1 Onepagewars Technochocolate\n\n38) daselva: Discover R1 S1 Y3 S2\n\n39) zoltar: Build R1 Greengiant\n\n40) OnePageWars: Trade B1 G1 Onepagewars\n\n41) daselva: Move G1 S1 S2\n\n42) zoltar: Move R2 Greengiant Technochocolate\n\n43) OnePageWars: Move Y1 Technochocolate Onepagewars\n\n44) daselva: Build R1 S2\n\n45) zoltar: Attack Y1S Technochocolate\n\n46) OnePageWars: Build B1 Onepagewars\n\n47) daselva: Discover R1 S2 Y2 S3\n\n48) zoltar: Build B1 Greengiant\n\n49) OnePageWars: Build B2 Onepagewars\n\n50) daselva: Discover R1 S2 Y2 S4\n\n51) zoltar: Sacrifice Y2 Greengiant\nMove B1 Greengiant Technochocolate\nMove B1 Technochocolate Onepagewars\nCatastrophe Onepagewars B\n\tOnePageWars: I know what I&#39;ll start calling my planets that I discover: Peter, Susan, Edmund, Lucy, Tumnus, Reepicheep, Aslan, White Witch, Caspian, DawnTreader, Narnia, Calormen, Archenland, etc. :)\r\nDoes anyone notice a pattern?\n\tOnePageWars: No, Reepicheep comes first. I like him.\n\n52) OnePageWars: Discover Y1 Onepagewars Y1 Reepicheep\n\n53) daselva: Build Y2 Daselva\n\n54) zoltar: Build Y2 Zoltar\n\n55) OnePageWars: Build Y2 Onepagewars\n\n56) daselva: Trade Y2 R2 Daselva\n\tzoltar: Nah: that would be a powerful move, but too aggressive, I think.\n\n57) zoltar: Move Y2 Zoltar Greengiant\n\n58) OnePageWars: Build Y2 Onepagewars\n\n59) daselva: Build Y3 Daselva\n\n60) zoltar: Build Y3 Greengiant\n\n61) OnePageWars: Build Y3 Onepagewars\n\n62) daselva: Trade Y3 G3 Daselva\nCatastrophe Onepagewars Y\n\n63) zoltar: Discover Y2 Greengiant B2 Bluebell\n\n64) daselva: Move R1 S4 S2\n\n65) zoltar: Move R2 Technochocolate S2\n\n66) daselva: Move R2 Daselva Bluebell\n\n67) zoltar: Sacrifice R1 Greengiant\nAttack R2W Bluebell\n\n68) daselva: Move G3 Daselva S3\n\n69) zoltar: Attack G1W S2\n\n70) daselva: Move R1 S2 S3\n\n71) zoltar: Discover Y1 Technochocolate G2 Greenbean\n\n72) daselva: Build G1 Daselva\n\n73) zoltar: Build Y1 Greenbean\n\n74) daselva: Trade G1 B1 Daselva\n\n75) zoltar: Build Y2 Greenbean\n\n76) daselva: Move B1 Daselva S3\n\n77) zoltar: Build Y2 Greengiant\n\n78) daselva: Move G3 S3 S2\n\n79) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluebell\nBuild Y3 Bluebell\nBuild Y3 Zoltar\n\n80) daselva: Sacrifice R1 S3\nAttack R2N S2\n\n81) zoltar: Sacrifice Y3 Greengiant\nMove Y1 Greenbean Daselva\nMove Y1 Greenbean Daselva\nMove Y2 Bluebell Daselva\nCatastrophe Daselva Y\n\n82) daselva: Move G3 S2 S3\n\n83) zoltar: Move Y3 Bluebell Daselva\n\n84) zoltar: Attack G1W Daselva\n\n\nHomeworlds Online (SDG# 18256)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.24, Ended: 2010.12.14\nParticipants: dethdukk (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G3 B2 Y3\n\n2) dethdukk: Homeworld B1 R2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) dethdukk: Build G1 Dethdukk\n\n5) sompm: Build Y1 Sompm\n\n6) dethdukk: Build G1 Dethdukk\n\n7) sompm: Discover Y1 Sompm G1 Bandicoot\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) sompm: Build Y2 Bandicoot\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) sompm: Build Y2 Bandicoot\n\n\nHomeworlds Online (SDG# 18234)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.24, Ended: 2010.12.10\nParticipants: SilentTitan (S), Remneb (N)\nWinner: SilentTitan\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Remneb: Trade G1 B1 Remneb\n\n6) SilentTitan: Trade G3 B3 Silenttitan\n\tRemneb: I&#39;ve just started a new topic in the forum:Homeworld Tactical.It is in the General area of the Forum.It could become the basic for a book about the game.All players are welcome to correct my mistakes.\n\n7) Remneb: Build G1 Remneb\n\n8) SilentTitan: Trade B3 Y3 Silenttitan\n\n9) Remneb: Trade G1 Y1 Remneb\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) Remneb: Build G1 Remneb\n\n12) SilentTitan: Discover Y1 Silenttitan R1 Killers\n\n13) Remneb: Discover G1 Remneb Y3 Edinga\n\n14) SilentTitan: Discover Y1 Killers G3 Areosmith\n\n15) Remneb: Build B1 Remneb\n\n16) SilentTitan: Build Y1 Silenttitan\n\tSilentTitan: doing much better in this game\n\tSilentTitan: lol... of course you actually won the last game ... let&#39;s not forget that\r\n\n\n17) Remneb: Build Y2 Remneb\n\tRemneb: :)\n\n18) SilentTitan: Build Y2 Areosmith\n\n19) Remneb: Trade B1 R1 Remneb\n\tRemneb: How can your Areosmith system (g3)be connected to your Homeworld (r3,b2)? Same stars of 3 pips?You should have a one pip star to be connected yes or no?\n\n20) SilentTitan: Trade Y1 B1 Silenttitan\n\tSilentTitan: connected isn&#39;t really the issue... it&#39;s not like a supply line.   I used a 1-pip to get to the three pip ... but once I left the 1-pip system I went back to the bank. See down at 18:22:02 where it says the killers system has been abandoned to the hyperspatial flux?  if I wanted to move back to my homeworld with something in areosmith (which would take two moves) I would have to discover another 1-pip world and from there I could move to my homeworld\n\tSilentTitan: I = it went back to the bank (meaning the 1-pip world named killers\n\n21) Remneb: Build B2 Remneb\n\tRemneb: So a new system discovered by a ship coming from another system then the Homeworld do not have to be connected to the Homeworld ?\n\n22) SilentTitan: Discover B1 Silenttitan Y1 Checkcheck\n\tSilentTitan: correct it only has to be connected to the previous system.  The one it came from. If you came from a 1p you can only go to a 2p or 3p in one move. if you came from a homeworld then you can only go the size missing in the homeworld. In this game I can only go out to 1p and you can only go out to 3p stars from our homeworlds. From each of those system you can go to any legit system.  Note however I can only gain access to your homeworld from a 3p star and you can only get to mine from a 1p star. Keep in mind if I were to burn the 2p star in my own homeworld our homeworlds would be connected directly together. \n\n23) Remneb: Trade B2 R2 Remneb\n\tRemneb: That is clear now.Thanks.dlwillson lost his game against TwoShort.TwoShort have now a rating of 2001 !\n\n24) SilentTitan: Build Y2 Silenttitan\n\n25) Remneb: Discover R1 Remneb Y3 Lexington\n\n26) SilentTitan: Sacrifice B1 Checkcheck\nTrade Y2 R2 Areosmith\n\n27) Remneb: Discover R1 Lexington Y2 Trenton\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) Remneb: Move R1 Trenton Edinga\n\n30) SilentTitan: Discover G1 Silenttitan Y1 Okgo\n\n31) Remneb: Move Y1 Remneb Edinga\n\n32) SilentTitan: Build Y2 Areosmith\n\n33) Remneb: Build Y3 Remneb\n\n34) SilentTitan: Build Y3 Silenttitan\n\tSilentTitan: ok... you&#39;ve done great up till this last move. I beleive that you&#39;d be better off discovering a new system with that y1 rather than pilling up two yellows in Edinga.\n\tRemneb: I&#39;m doing that cause i have an eye on the 3 yellow in the reserve ( 2 of 3 pips and 1 of 2 pips).In think sacrifying my g3 to have these 3 yellow can give me more power...well maybe it&#39;s not a so good idea.\n\tRemneb: I need a yellow ship in each system if i don&#39;t want too many of that color in the same system.\n\n35) Remneb: Move Y1 Edinga Okgo\n\n36) SilentTitan: Build R1 Areosmith\n\n37) Remneb: Move Y2 Remneb Edinga\n\n38) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 Areosmith Remneb\nMove R1 Areosmith Remneb\nCatastrophe Remneb Red\n\n39) Remneb: Move R1 Edinga Okgo\n\n40) SilentTitan: Build Y2 Silenttitan\n\n41) Remneb: Attack G1 Okgo\n\n42) SilentTitan: Trade Y2 B2 Silenttitan\n\n43) Remneb: Discover R1 Okgo R3 Sangrilla\n\n44) SilentTitan: Discover Y2 Areosmith B1 Tmbg\n\n45) Remneb: Build Y2 Remneb\n\n46) SilentTitan: Trade Y2 B2 Tmbg\n\n47) Remneb: Move B1 Remneb Sangrilla\n\n48) SilentTitan: Build Y2 Areosmith\n\n49) Remneb: Discover Y2 Remneb G2 Malvern\n\n50) SilentTitan: Sacrifice B2 Tmbg\nTrade Y2 B2 Areosmith\nTrade Y1 B1 Areosmith\n\n51) Remneb: Sacrifice G3 Remneb\nBuild G1 Edinga\nBuild B3 Sangrilla\nBuild Y1 Malvern\n\n52) SilentTitan: Sacrifice Y3 Silenttitan\nMove B2 Silenttitan Remneb\nMove B2 Areosmith Remneb\nMove B1 Areosmith Remneb\nCatastrophe Remneb Blue\n\n\tSilentTitan: good game. \n\tRemneb: Well well...i&#39;t never cross my mind that a player can sacrifice 3 of his own ship to destroy a system!\n\tSilentTitan: you had me far out numbered. good thing I had a plan\n\nHomeworlds Online (SDG# 18189)\nStarted: 2010.11.27, Ended: 2010.12.10\nParticipants: dethdukk (S), goblin981 (N)\nWinner: goblin981\n\n1) goblin981: Homeworld G1 Y2 B3\n\n2) dethdukk: Homeworld G1 B3 G3 *\n\n3) goblin981: Build B1 Goblin981\n\n4) dethdukk: Build G1 Dethdukk\n\n5) goblin981: Build B1 Goblin981\n\n6) dethdukk: Trade G3 Y3 Dethdukk\n\n7) goblin981: Trade B1 Y1 Goblin981\n\n\nHomeworlds Online (SDG# 18311)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.27, Ended: 2010.12.21\nParticipants: goblin981 (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld B1 G2 Y3\n\n2) goblin981: Homeworld G3 Y1 B3\n\n3) shmil1: Build Y1 Shmil1\n\n4) goblin981: Build B1 Goblin981\n\n5) shmil1: Build Y1 Shmil1\n\n6) goblin981: Build B1 Goblin981\n\n7) shmil1: Trade Y1 R1 Shmil1\n\n8) goblin981: Trade B3 R3 Goblin981\n\n9) shmil1: Build Y1 Shmil1\n\n10) goblin981: Build R1 Goblin981\n\n11) shmil1: Trade Y1 G1 Shmil1\n\n12) goblin981: Trade B1 Y1 Goblin981\n\n13) shmil1: Build G1 Shmil1\n\n14) goblin981: Build Y2 Goblin981\n\n15) shmil1: Build Y2 Shmil1\n\n16) goblin981: Discover Y2 Goblin981 G2 Green\n\n17) shmil1: Trade Y2 R2 Shmil1\n\n18) goblin981: Build Y2 Green\n\n19) shmil1: Discover R2 Shmil1 Y3 Slunce\n\n20) goblin981: Build Y2 Green\n\n21) shmil1: Move R2 Slunce Green\n\n22) goblin981: Discover Y2 Green G3 Bobo\n\n23) shmil1: Attack Y2 Green\n\n24) goblin981: Build B1 Goblin981\n\n25) shmil1: Build R1 Green\n\n26) goblin981: Move Y2 Green Bobo\n\n27) shmil1: Sacrifice Y2 Green\nMove R1 Green Goblin981\nMove R2 Green Goblin981\nCatastrophe Goblin981 Red\n\n28) goblin981: Sacrifice B1 Goblin981\nTrade Y2 G2 Bobo\n\n29) shmil1: Discover G1 Shmil1 Y3 Solnecnyjkrug\n\n30) goblin981: Build G1 Bobo\n\n31) shmil1: Move G1 Shmil1 Bobo\nCatastrophe Bobo Green\n\n32) goblin981: Build Y2 Goblin981\n\n33) shmil1: Discover G1 Solnecnyjkrug Y2 Zluty\n\n34) goblin981: Build B1 Goblin981\n\n35) shmil1: Move G1 Zluty Goblin981\n\n36) goblin981: Trade B1 R1 Goblin981\n\n37) shmil1: Sacrifice R1 Shmil1\nAttack R1 Goblin981\n\n38) goblin981: Discover B1 Goblin981 G2 Gogo\n\n39) shmil1: Attack Y1 Goblin981\n\tgoblin981: Damn it.  Nicely done.\n\n40) goblin981: Build B1 Gogo\n\n41) shmil1: Build Y2 Goblin981\nCatastrophe Goblin981 Yellow\n\n\nHomeworlds Online (SDG# 18249)\nVariants: &quot;Unrated&quot;\nStarted: 2010.11.28, Ended: 2010.12.13\nParticipants: daselva (S), lorgar (N)\nWinner: daselva\n\n1) lorgar: Homeworld G3 Y2 B3\n\n2) daselva: Homeworld R2 B1 G3\n\n3) lorgar: Build B1 Lorgar\n\n4) daselva: Build G1 Daselva\n\n5) lorgar: Build B1 Lorgar\n\n6) daselva: Build G1 Daselva\n\n7) lorgar: Discover B1 Lorgar G1 Tc2\n\n8) daselva: Trade G1 Y1 Daselva\n\n9) lorgar: Build B2 Tc2\n\n10) daselva: Trade G3 R3 Daselva\n\n11) lorgar: Trade B2 R2 Tc2\n\n12) daselva: Build G1 Daselva\n\n13) lorgar: Build B2 Tc2\n\n14) daselva: Build G2 Daselva\n\n15) lorgar: Trade B2 G2 Tc2\n\n16) daselva: Discover G1 Daselva Y3 S1\n\n17) lorgar: Build B2 Tc2\n\n18) daselva: Build G2 S1\n\n\n19) lorgar: Trade B2 Y2 Tc2\n\n20) daselva: Move R3 Daselva S1\n\n21) lorgar: Move B3 Lorgar Tc2\n\n22) daselva: Discover R3 S1 Y1 S2\n\n23) lorgar: Sacrifice Y2 Tc2\nMove B3 Tc2 S1\nMove B3 S1 Daselva\n\n24) daselva: Move R3 S2 Lorgar\n\n25) lorgar: Sacrifice R2 Tc2\nAttack G2 Daselva\nAttack G1 Daselva\n\n26) daselva: Attack B1 Lorgar\n\n\nHomeworlds Online (SDG# 18268)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.30, Ended: 2011.1.9\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Build G1 Lorgar\n\n6) SilentTitan: Build G2 Silenttitan\n\n7) lorgar: Trade G1 B1 Lorgar\n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) lorgar: Trade G1 Y1 Lorgar\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) lorgar: Build Y2 Lorgar\n\n12) SilentTitan: Discover Y1 Silenttitan R1 Xi\n\n13) lorgar: Discover Y2 Lorgar G3 Mu\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Xi\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n15) lorgar: Build Y3 Mu\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Xi Mu\nMove Y2 Xi Mu\nCatastrophe Mu Yellow\n\n17) lorgar: Build G1 Lorgar\n\tlorgar: nice shot\n\n18) SilentTitan: Discover Y3 Silenttitan B1 Alpha\n\n19) lorgar: Build B1 Lorgar\n\n20) SilentTitan: Build Y1 Silenttitan\n\n21) lorgar: Discover B1 Lorgar G3 Armadillo\n\n22) SilentTitan: Discover Y3 Alpha B3 Beta\n\n23) lorgar: Build B1 Lorgar\n\n24) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Beta\nBuild Y2 Silenttitan\n\n25) lorgar: Trade B1 R1 Lorgar\n\n26) SilentTitan: Trade Y2 R2 Beta\n\n27) lorgar: Build B1 Armadillo\n\n28) SilentTitan: Trade Y2 G2 Silenttitan\n\n29) lorgar: Build B2 Lorgar\n\n30) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Beta\nBuild Y2 Silenttitan\n\n31) lorgar: Trade B2 R2 Lorgar\n\n32) SilentTitan: Trade Y2 B2 Beta\n\n33) lorgar: Move Y1 Lorgar Armadillo\n\n34) SilentTitan: Discover B2 Beta G2 Omega\n\n35) lorgar: Trade B1 R1 Armadillo\n\n36) SilentTitan: Trade Y1 B1 Silenttitan\n\n37) lorgar: Build B3 Armadillo\n\n38) SilentTitan: Build B3 Omega\n\n39) lorgar: Discover B1 Armadillo G1 Proko\n\n40) SilentTitan: Trade B2 R2 Omega\n\n41) lorgar: Build B2 Proko\n\n42) SilentTitan: Move Y3 Beta Proko\n\n43) lorgar: Sacrifice B2 Proko\nTrade R1 Y1 Lorgar\nPass\n\n44) SilentTitan: Trade Y3 G3 Silenttitan\n\n45) lorgar: Build Y2 Armadillo\n\n46) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Proko\nBuild Y3 Silenttitan\nBuild B2 Omega\n\n47) lorgar: Sacrifice Y2 Armadillo\nMove B3 Armadillo Omega\nMove B1 Proko Omega\nCatastrophe Omega Blue\n\n48) SilentTitan: Move Y3 Proko Armadillo\n\n49) lorgar: Build R1 Lorgar\n\n50) SilentTitan: Sacrifice R2 Beta\nAttack Y1 Armadillo North\nAttack R1 Armadillo North\n\n\nHomeworlds Online (SDG# 18125)\nStarted: 2010.11.30, Ended: 2010.12.3\nParticipants: lorgar (S), mathochist (N)\nWinner: lorgar\n\n\nHomeworlds Online (SDG# 18119)\nVariants: &quot;Hard time&quot;\nStarted: 2010.11.30, Ended: 2010.12.5\nParticipants: Aristos (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Aristos: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Aristos: Build G1 Aristos\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Aristos: Discover G1 Aristos G3 Babylon1\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) Aristos: Build G1 Aristos\n\n9) dlwillson: Discover Y1 Dlwillson B2 Goldie\n\n10) Aristos: Trade G3 Y3 Aristos\n\n11) dlwillson: Build Y2 Dlwillson\n\n12) Aristos: Discover Y3 Aristos G3 Ixion\n\n13) dlwillson: M Y1 Goldie Babylon1\n\n14) Aristos: Build Y2 Ixion\n\n15) dlwillson: Build Y3 Babylon1\n\n16) Aristos: Move Y3 Ixion Aristos\n\n17) dlwillson: T Y2 R2 Dlwillson\n\n18) Aristos: Trade Y3 R3 Aristos\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y3 Babylon1\nBuild R1 Dlwillson\n\n20) Aristos: Build Y3 Ixion\n\n21) dlwillson: S Y2 Dlwillson\nM Y3 Babylon1 Aristos\nM Y3 Babylon1 Aristos\n\n22) Aristos: Move Y2 Ixion Aristos\nCatastrophe Aristos Y\n\n23) dlwillson: T R2 G2 Dlwillson\n\n24) Aristos: Discover Y3 Ixion G2 Flank\n\n25) dlwillson: B Y1 Dlwillson\n\tdlwillson: You&#39;re doing very well for several moves now.\n\n26) Aristos: Build R1 Aristos\n\tAristos: Thanks.\n\n27) dlwillson: T Y1 B1 Dlwillson\n\n28) Aristos: Sacrifice R1 Aristos\nAttack Y1 Babylon1\n\n29) dlwillson: B B1 Dlwillson\n\n30) Aristos: Move Y3 Flank Dlwillson\n\tAristos: Dangit... I had it right and accidentally clicked the undo button. \n\n31) dlwillson: B Y1 Dlwillson\nC Dlwillson Y\n\n32) Aristos: Trade G1 B1 Aristos\n\n33) dlwillson: T B1 Y1 Dlwillson\n\n34) Aristos: Build Y1 Babylon1\n\tAristos: I&#39;m not sure I can stop you.\n\n35) dlwillson: B Y2 Dlwillson\n\tAristos: Ah. Got it!\n\n36) Aristos: Move Y1 Babylon1 Aristos\n\n37) dlwillson: S Y2 Dlwillson\nM R1 Dlwillson Aristos\nM B1 Dlwillson Aristos\n\n38) Aristos: Sacrifice R3 Aristos\nAttack B1 Aristos\nAttack R1 Aristos\nPass\n\n39) dlwillson: B G1 Dlwillson\n\n40) Aristos: Build Y2 Babylon1\n\tdlwillson: Huh. I still don&#39;t know how this is going to end!\n\n41) dlwillson: Trade G2 R2 Dlwillson\n\n42) Aristos: Build Y2 Babylon1\n\tdlwillson: So, how many times have you played Homeworlds in real life?\n\n43) dlwillson: Move R2 Dlwillson Aristos\n\n44) Aristos: Sacrifice Y2 Babylon1\nMove B1 Aristos Dlwillson\nMove B1 Aristos Dlwillson\n\n45) dlwillson: Sacrifice R2 Aristos\nAttack B1 Dlwillson\nAttack B1 Dlwillson\n\tAristos: About 5 or 6. I can&#39;t get most people to play it, even among the friends that like most board games. &quot;Too abstract.&quot; *sigh*\n\n46) Aristos: Build Y2 Babylon1\n\n47) dlwillson: Build Y2 Dlwillson\n\n48) Aristos: Sacrifice Y2 Babylon1\nMove R1 Aristos Dlwillson\nMove Y2 Babylon1 Aristos\n\n49) dlwillson: S B1 Dlwillson\nT Y2 R2 Dlwillson\n\n50) Aristos: Sacrifice Y1 Babylon1\nMove R1 Dlwillson Aristos\n\n51) dlwillson: B B1 Dlwillson\n\n52) Aristos: Trade Y1 B1 Aristos\n\tdlwillson: that&#39;s it for me for tonight. see you tomorrow. join the ladder, you&#39;ll do great.\n\n53) dlwillson: D B1 Dlwillson Y1 Dingo\n\n54) Aristos: Sacrifice G1 Babylon1\nBuild R1 Aristos\n\tAristos: Ladder?\n\n55) dlwillson: M B1 Dlwillson Aristos\n\n56) Aristos: Discover B1 Aristos Y1 Wrongway\n\n57) dlwillson: M B1 Dingo Aristos\n\n58) Aristos: Move B1 Wrongway Dlwillson\n\n59) dlwillson: Sacrifice G1 Dlwillson\nBuild B2 Aristos\nCatastrophe Aristos B\n\n\tdlwillson: Great game, Aristos. You should go tear up the ladder!\n\nHomeworlds Online (SDG# 18124)\nStarted: 2010.11.30, Ended: 2010.12.4\nParticipants: rootbier (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 18186)\nStarted: 2010.12.3, Ended: 2010.12.30\nParticipants: lorgar (S), ts52 (N)\nWinner: lorgar\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) lorgar: Homeworld B2 G1 Y3\n\tts52: have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build Y1 Lorgar\n\n5) ts52: Build G1 Ts52\n\n6) lorgar: Discover Y1 Lorgar G3 Hitherto\n\n7) ts52: Discover G1 Ts52 B2 Gonzo\n\n8) lorgar: Build Y1 Lorgar\n\n9) ts52: Build G2 Gonzo\n\n10) lorgar: Build Y2 Hitherto\n\n11) ts52: Trade G2 Y2 Gonzo\n\n12) lorgar: Trade Y1 R1 Lorgar\n\n13) ts52: Trade G1 R1 Ts52\n\n14) lorgar: Trade Y3 G3 Lorgar\n\n15) ts52: Build G1 Gonzo\n\n16) lorgar: Build G2 Lorgar\n\n17) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Hitherto\nMove G1 Hitherto Lorgar\nCatastrophe Lorgar Green\n\n18) lorgar: Trade R1 G1 Lorgar\n\n19) ts52: Build R1 Ts52\n\n20) lorgar: Move Y2 Hitherto Lorgar\n\n21) ts52: Move R1 Ts52 Gonzo\n\n22) lorgar: Build G1 Lorgar\n\n23) ts52: Build G2 Gonzo\n\n24) lorgar: Trade G1 R1 Lorgar\n\n25) ts52: Build R2 Ts52\n\n26) lorgar: Build R2 Lorgar\n\n27) ts52: Trade G2 Y2 Gonzo\n\n28) lorgar: Move R1 Lorgar Hitherto\n\n29) ts52: Discover R2 Ts52 Y2 Zoe\n\n30) lorgar: Build R2 Hitherto\n\n31) ts52: Sacrifice G3 Ts52\nBuild R3 Ts52\nBuild R3 Gonzo\nBuild R3 Zoe\n\n32) lorgar: Build Y1 Hitherto\n\n33) ts52: Move R3 Zoe Hitherto\n\n34) lorgar: Build Y3 Lorgar\n\n35) ts52: Attack Y1 Hitherto\n\n36) lorgar: Move R2 Hitherto Lorgar\n\n37) ts52: A R1 Hitherto\n\n38) lorgar: Discover Y1 Hitherto G2 Thylacine\n\n39) ts52: Move R3 Hitherto Thylacine\n\n40) lorgar: Discover Y1 Thylacine G1 Bucephale\n\n41) ts52: Build Y3 Gonzo\n\n42) lorgar: Build Y3 Bucephale\n\n43) ts52: Move R1 Gonzo Hitherto\n\n44) lorgar: Move R2 Lorgar Bucephale\n\n45) ts52: Discover G1 Gonzo B3 Grover\n\n46) lorgar: Build G2 Lorgar\n\n47) ts52: M Y3 Gonzo Grover\n\n48) lorgar: Sacrifice Y3 Bucephale\nMove R2 Lorgar Ts52\nDiscover R2 Bucephale B2 Atlas\nMove R2 Atlas Ts52\nCatastrophe Ts52 Red\n\n\tlorgar: gg, thanks for the game\n\tts52: Well played sir. I should&#39;ve seen that coming.\n\tlorgar: It is always a pleasure to play with such a subtle schemer. I learn from each game and hope that you will keep teaching me.\n\tts52: I&#39;d be happy to play again any time. \n\nHomeworlds Online (SDG# 18413)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.3, Ended: 2011.1.9\nParticipants: mneme (S), dlwillson (N)\nWinner: mneme\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) mneme: Homeworld B1 R2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) mneme: Build G1 Mneme\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) dlwillson: B Y2 Dlwillson\n\n8) mneme: Build Y2 Mneme\n\n9) dlwillson: T Y1 B1 Dlwillson\n\n10) mneme: Trade Y2 B2 Mneme\n\n11) dlwillson: B G1 Dlwillson\n\n12) mneme: Build Y1 Mneme\n\n13) dlwillson: Build Y2 Dlwillson\n\n14) mneme: Discover Y1 Mneme B3 Hunter\n\n15) dlwillson: D Y2 Dlwillson G2 Bears\n\n16) mneme: Discover B2 Mneme Y3 Waystation\n\n17) dlwillson: Discover Y2 Dlwillson B2 Tigers\n\n18) mneme: Build G1 Mneme\n\n19) dlwillson: M G1 Dlwillson Tigers\n\n20) mneme: Trade G1 B1 Mneme\n\n21) dlwillson: B G1 Dlwillson\n\n22) mneme: Build G1 Mneme\n\n23) dlwillson: T B1 R1 Dlwillson\n\n24) mneme: Trade G1 R1 Mneme\n\n25) dlwillson: M G1 Tigers Hunter\n\n26) mneme: Sacrifice G3 Mneme\nBuild B1 Waystation\nBuild B2 Waystation\nBuild B3 Mneme\n\n27) dlwillson: S R1 Dlwillson\nAttack Y1 Hunter\n\n28) mneme: Trade B3 G3 Mneme\n\n29) dlwillson: S G3 Dlwillson\nB Y2 Hunter\nB Y3 Bears\nB Y3 Tigers\n\n30) mneme: Build B3 Mneme\n\n31) dlwillson: T Y1 R1 Hunter\n\n32) mneme: Move G3 Mneme Hunter\n\n33) dlwillson: M R1 Hunter Bears\n\n34) mneme: Sacrifice R1 Mneme\nAttack Y2 Hunter\n\n35) dlwillson: M Y3 Tigers Hunter\n\n36) mneme: Move G3 Hunter Tigers\n\n37) dlwillson: M Y3 Hunter Tigers\n\n38) mneme: Sacrifice Y2 Hunter\nMove G3 Tigers Hunter\nDiscover G3 Hunter R2 Refuge\n\n39) dlwillson: Move Y2 Bears Waystation\n\n40) mneme: Sacrifice B2 Waystation\nTrade B1 R1 Waystation\nTrade B3 R3 Mneme\n\n41) dlwillson: S R1 Bears\nA R1 Waystation\n\n42) mneme: Sacrifice Y1 Mneme\nMove G3 Refuge Dlwillson\n\n\tmneme: Good game!\n\tdlwillson: One of the classic blunders! Oh well. Good game anyway. :-)\n\tmneme: Not noticing the mate threat?  Pretty much, yeah.\n\nHomeworlds Online (SDG# 18419)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.4, Ended: 2011.1.27\nParticipants: agentofchaos (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld R3 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) zoltar: Build G1 Zoltar\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) agentofchaos: Trade G1 B1 Agentofchaos\n\n11) zoltar: Build B2 Zoltar\n\n12) agentofchaos: Build B2 Agentofchaos\n\n13) zoltar: Discover B1 Zoltar G3 Greengiant\n\n14) agentofchaos: Trade B2 R2 Agentofchaos\n\n15) zoltar: Trade B2 R2 Zoltar\n\n16) agentofchaos: Discover R2 Agentofchaos Y2 Ajeroth\n\n17) zoltar: Build B2 Greengiant\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) zoltar: Trade B2 Y2 Greengiant\n\n20) agentofchaos: Build B2 Agentofchaos\n\n21) zoltar: Sacrifice Y2 Greengiant\nMove B1 Greengiant Ajeroth\nMove B1 Ajeroth Agentofchaos\nCatastrophe Agentofchaos B\n\n22) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Ajeroth\n\n23) zoltar: Discover R2 Zoltar G3 Greengiant\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) zoltar: Build G1 Zoltar\n\n26) agentofchaos: Move G1 Agentofchaos Ajeroth\n\n27) zoltar: Trade G1 B1 Zoltar\n\n28) agentofchaos: Discover G1 Ajeroth Y3 Diassomer\n\n29) zoltar: Build G1 Zoltar\n\n30) agentofchaos: Build G1 Diassomer\n\n31) zoltar: Discover G1 Zoltar Y3 Mellowyellow\n\n32) agentofchaos: Build G2 Diassomer\n\n33) zoltar: Build G2 Zoltar\n\n34) agentofchaos: Move G1 Diassomer Zoltar\n\n35) zoltar: Sacrifice B1 Zoltar\nTrade G3 B3 Zoltar\n\n36) agentofchaos: Sacrifice G2 Diassomer\nBuild G2 Zoltar\nBuild G2 Diassomer\n\n37) zoltar: Build G3 Mellowyellow\n\n38) agentofchaos: Trade G1 B1 Zoltar\n\n39) zoltar: Sacrifice R2 Greengiant\nAttack B1 Zoltar\nAttack G2 Zoltar\n\tzoltar: I think I&#39;m toast.\n\n40) agentofchaos: Build Y1 Agentofchaos\n\n41) zoltar: Discover G2 Zoltar Y3 Oldyeller\n\n42) agentofchaos: Discover G1 Diassomer B2 Glumph\n\n43) zoltar: Sacrifice G3 Mellowyellow\nBuild G1 Zoltar\nBuild G3 Mellowyellow\nBuild G3 Oldyeller\n\n44) agentofchaos: Build Y2 Agentofchaos\n\n45) zoltar: Move Y1 Zoltar Agentofchaos\nCatastrophe Agentofchaos Y\n\n\nHomeworlds Online (SDG# 31968)\nStarted: 2017.4.14, Ended: 2017.8.9\nParticipants: fogus (S), panglott (N)\nWinner: fogus\n\n1) panglott: Homeworld R3 B2 G3\n\n2) fogus: Homeworld Y1 B2 G3\n\n3) panglott: Build G1 Panglott\n\n4) fogus: Build G1 Fogus\n\n5) panglott: Build G1 Panglott\n\n6) fogus: Build G2 Fogus\n\n7) panglott: Trade G1 Y1 Panglott\n\n8) fogus: Trade G2 Y2 Fogus\n\n9) panglott: Build G1 Panglott\n\n10) fogus: Build G2 Fogus\n\n11) panglott: Discover G1 Panglott B1 Acamar\n\n12) fogus: Trade G1 R1 Fogus\n\n13) panglott: Build Y1 Panglott\n\n14) fogus: Build Y2 Fogus\n\n15) panglott: Trade G1 R1 Acamar\n\n16) fogus: Discover Y2 Fogus G3 Eklund\n\n17) panglott: Build Y2 Panglott\n\n18) fogus: Build Y3 Eklund\n\n19) panglott: Move Y2 Panglott Acamar\n\n20) fogus: Trade Y2 R2 Fogus\n\n21) panglott: Move Y1 Panglott Acamar\n\n22) fogus: Move R1 Fogus Eklund\n\n23) panglott: Move G1 Panglott Acamar\n\n24) fogus: Discover Y2 Eklund G1 Kansil\n\n25) panglott: Build Y2 Acamar\n\n26) fogus: Sacrifice G2 Fogus\nBuild Y3 Eklund\nBuild Y3 Kansil\n\n27) panglott: Build G1 Acamar\n\n28) fogus: Build G2 Fogus\n\n29) panglott: Discover Y1 Acamar R3 Telluride\n\n30) fogus: Move G2 Fogus Telluride\n\n31) panglott: Build G2 Panglott\n\n32) fogus: Build G2 Telluride\n\n33) panglott: Discover Y1 Telluride B1 Banff\n\n34) fogus: Move Y3 Eklund Banff\n\n35) panglott: Trade G1 B1 Acamar\n\n36) fogus: Move R1 Eklund Banff\n\n37) panglott: Sacrifice Y2 Acamar\nMove Y1 Banff Eklund\nMove B1 Acamar Eklund\n\n38) fogus: Move R2 Fogus Eklund\n\n39) panglott: Discover Y1 Eklund B2 Biloxi\n\n40) fogus: Attack B1 Eklund\n\n41) panglott: Move G1 Acamar Biloxi\n\n42) fogus: Move R2 Eklund Biloxi\n\n43) panglott: Discover G1 Biloxi R3 Paducah\n\n44) fogus: Attack Y1 Biloxi\n\n45) panglott: Sacrifice G3 Panglott\nBuild G1 Paducah\nBuild G3 Panglott\nBuild Y2 Panglott\n\n46) fogus: Build B3 Eklund\n\n47) panglott: Sacrifice Y2 Acamar\nMove G2 Panglott Acamar\nMove G2 Acamar Paducah\n\n48) fogus: Sacrifice Y2 Kansil\nMove G2 Telluride Kansil\nMove G2 Kansil Paducah\nCatastrophe Paducah G\n\n49) panglott: Build G1 Panglott\n\n50) fogus: Trade Y3 B3 Banff\n\n51) panglott: Move Y1 Panglott Acamar\n\n52) fogus: Move R2 Biloxi Acamar\n\n53) panglott: Move R1 Acamar Panglott\n\n54) fogus: Sacrifice Y3 Eklund\nMove R2 Acamar Panglott\nMove R1 Banff Panglott\nMove B3 Eklund Fogus\nCatastrophe Panglott R\n\n55) panglott: Trade Y1 G1 Acamar\n\n56) fogus: Build B3 Eklund\n\n57) panglott: Sacrifice G3 Panglott\nBuild G2 Acamar\nBuild G2 Acamar\nBuild G3 Panglott\n\n58) fogus: Sacrifice Y3 Kansil\nMove B1 Eklund Panglott\nMove B3 Eklund Panglott\nMove B3 Banff Panglott\nCatastrophe Panglott B\n\n\tfogus: Thank you for the game!\n\tpanglott: Thanks ;)\n\nHomeworlds Online (SDG# 18368)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.9, Ended: 2011.1.4\nParticipants: dlwillson (S), Aristos (N)\nWinner: dlwillson\n\n1) Aristos: Homeworld G1 B2 Y3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: Another round, eh? Excellent! Good luck!\n\n3) Aristos: Build Y1 Aristos\n\n4) dlwillson: B G1 Dlwillson\n\n5) Aristos: Build Y1 Aristos\n\n6) dlwillson: B G1 Dlwillson\n\n7) Aristos: Discover Y1 Aristos B3 Ice\n\n8) dlwillson: D G1 Dlwillson G2 Green\n\n9) Aristos: Build Y2 Aristos\n\n10) dlwillson: S G3 Dlwillson\nB G2 Green\nB G2 Dlwillson\nB G3 Dlwillson\n\n11) Aristos: Trade Y3 G3 Aristos\n\n12) dlwillson: T G2 Y2 Dlwillson\n\n13) Aristos: Discover Y1 Ice G2 Moss\n\n14) dlwillson: B G3 Dlwillson\n\n15) Aristos: Build Y2 Moss\n\n16) dlwillson: T G3 R3 Dlwillson\n\n17) Aristos: Build Y3 Aristos\n\n18) dlwillson: M Y2 Dlwillson Green\n\n19) Aristos: Sacrifice Y2 Aristos\nDiscover G3 Aristos Y3 Uranium\nMove G3 Uranium Green\nCatastrophe Green G\n\n20) dlwillson: M R3 Dlwillson Moss\n\n21) Aristos: Sacrifice Y1 Moss\nDiscover Y2 Moss G3 Verdant\n\n22) dlwillson: B G1 Dlwillson\n\n23) Aristos: Build Y1 Verdant\n\n24) dlwillson: T G3 Y3 Dlwillson\n\n25) Aristos: Trade Y3 R3 Aristos\n\n26) dlwillson: B G2 Dlwillson\n\n27) Aristos: Build Y2 Aristos\n\n28) dlwillson: D G1 Dlwillson G2 Greeen\n\n29) Aristos: Build Y2 Verdant\n\n30) dlwillson: S G2 Dlwillson\nB G2 Greeen\nB G3 Dlwillson\n\n31) Aristos: Build Y3 Aristos\n\n32) dlwillson: M Y3 Dlwillson Greeen\n\n33) Aristos: Move Y2 Verdant Greeen\n\n34) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB G3 Dlwillson\nB Y3 Greeen\n\n35) Aristos: Move Y1 Verdant Greeen\nCatastrophe Greeen Y\n\n36) dlwillson: T G3 Y3 Dlwillson\n\n37) Aristos: Trade Y3 G3 Aristos\n\n38) dlwillson: M Y3 Dlwillson Moss\n\tAristos: I have to say... the one rule of this game that I don&#39;t particularly like is the ability to pass when you sacrifice a ship. It makes sense from a &quot;reflection of war&quot; standpoint, but it really makes certain types of tactics a pain to set up.\n\n39) Aristos: Build Y1 Verdant\n\n40) dlwillson: B Y2 Moss\n\n41) Aristos: Sacrifice Y2 Aristos\nMove Y1 Verdant Moss\nMove Y2 Verdant Moss\nCatastrophe Moss Yellow\n\n42) dlwillson: B G3 Dlwillson\n\n43) Aristos: Build R1 Aristos\n\n44) dlwillson: T G3 Y3 Dlwillson\n\n45) Aristos: Discover G3 Aristos Y3 Coward\n\n46) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nBuild G3 Dlwillson\nBuild R1 Moss\n\n47) Aristos: Move G3 Coward Greeen\nCatastrophe Greeen G\n\n48) dlwillson: Move Y3 Dlwillson Moss\n\n\tAristos: That&#39;s what I thought. Well, congrats. :-)\n\tdlwillson: Good game. \n\nHomeworlds Online (SDG# 31958)\nStarted: 2017.4.14, Ended: 2017.5.16\nParticipants: Felix (S), panglott (N)\nWinner: Felix\n\n1) panglott: Homeworld B3 G2 Y3\n\n2) Felix: Homeworld B1 R3 G3\n\tFelix: HI there. Hope you have fun!\n\n3) panglott: Build Y1 Panglott\n\n4) Felix: Build G1 Felix\n\n5) panglott: Build Y1 Panglott\n\n6) Felix: Trade G1 Y1 Felix\n\n7) panglott: Discover Y1 Panglott R1 Polaris\n\n8) Felix: Build Y2 Felix\n\n9) panglott: Discover Y1 Panglott R1 Meridion\n\n10) Felix: Discover Y2 Felix Y2 Rim\n\n11) panglott: Build Y2 Panglott\n\n12) Felix: Build Y3 Felix\n\n13) panglott: Trade Y2 G2 Panglott\n\n14) Felix: Discover Y1 Felix B2 Out\n\n15) panglott: Build Y2 Panglott\n\n16) Felix: Build Y3 Felix\n\n17) panglott: Trade Y2 R2 Panglott\n\n18) Felix: Move Y2 Rim Polaris\n\n19) panglott: Move Y1 Polaris Panglott\n\n20) Felix: Move Y1 Out Polaris\n\n21) panglott: Discover Y1 Meridion G2 Alcazar\n\n22) Felix: Move Y1 Polaris Panglott\n\n23) panglott: Discover Y1 Panglott G1 Tenet\n\n24) Felix: Build Y2 Panglott\n\n25) panglott: Trade Y3 G3 Panglott\n\n26) Felix: Trade Y1 G1 Panglott\nCatastrophe Panglott Green\n\n27) panglott: Attack Y2 Panglott\n\n28) Felix: Trade Y3 R3 Felix\n\n29) panglott: Build Y1 Alcazar\n\n30) Felix: Sacrifice Y2 Polaris\nMove R3 Felix Alcazar\nMove R3 Alcazar Panglott\n\n31) panglott: Trade Y2 G2 Panglott\n\n32) Felix: Attack R2 Panglott\n\n33) panglott: Build Y2 Alcazar\n\n34) Felix: Attack G2 Panglott\n\n\nHomeworlds Online (SDG# 18467)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.9, Ended: 2011.1.12\nParticipants: Aristos (S), Gidaio (N)\nWinner: Aristos\n\n1) Gidaio: Homeworld G3 B1 Y3\n\n2) Aristos: Homeworld G1 B2 Y3\n\n3) Gidaio: Build Y1 Gidaio\n\n4) Aristos: Build Y1 Aristos\n\n5) Gidaio: Trade Y1 R1 Gidaio\n\n6) Aristos: Build Y1 Aristos\n\n7) Gidaio: Build Y1 Gidaio\n\n8) Aristos: Trade Y1 R1 Aristos\n\n9) Gidaio: Discover Y1 Gidaio B2 Solaris\n\n10) Aristos: Discover Y1 Aristos G3 Burningcopper\n\n11) Gidaio: Trade Y1 G1 Solaris\n\n12) Aristos: Build Y1 Aristos\n\tAristos: Sorry -- mistyped the y as a g. \n\n13) Gidaio: Build G1 Solaris\n\n14) Aristos: Build Y1 Burningcopper\n\n15) Gidaio: Build G2 Solaris\n\n16) Aristos: Build Y2 Burningcopper\n\n17) Gidaio: Trade G2 Y2 Solaris\n\n18) Aristos: Discover Y2 Burningcopper B2 Gasgiant\n\n19) Gidaio: Discover G1 Solaris R3 Gassygiant\n\n20) Aristos: Move Y2 Gasgiant Gassygiant\n\n21) Gidaio: Build G2 Solaris\n\n22) Aristos: Attack G1 Gassygiant\n\n23) Gidaio: Build G2 Solaris\n\n24) Aristos: Build G2 Gassygiant\n\n25) Gidaio: Sacrifice Y2 Solaris\nDiscover G2 Solaris B3 Yeahno\nMove G2 Solaris Yeahno\n\n26) Aristos: Discover G2 Gassygiant Y2 Whytwo\n\n27) Gidaio: Build G3 Solaris\n\n28) Aristos: Build Y2 Gassygiant\n\n29) Gidaio: Sacrifice G3 Solaris\nBuild G3 Solaris\nBuild Y3 Gidaio\nBuild R1 Gidaio\n\n30) Aristos: Build R2 Aristos\n\n31) Gidaio: Trade G2 R2 Yeahno\n\n32) Aristos: Build G2 Whytwo\n\n33) Gidaio: Move Y3 Gidaio Solaris\n\n34) Aristos: Move R2 Aristos Burningcopper\n\n35) Gidaio: Move G3 Solaris Yeahno\n\n36) Aristos: Build R2 Burningcopper\n\n37) Gidaio: Move G1 Solaris Yeahno\n\n38) Aristos: Move G2 Whytwo Yeahno\nCatastrophe Yeahno G\n\n39) Gidaio: Trade Y3 G3 Solaris\n\n40) Aristos: Build Y3 Burningcopper\n\tGidaio: Nice. Didn&#39;t see that coming.\n\n41) Gidaio: Build G1 Solaris\n\n42) Aristos: Build G2 Gassygiant\n\n43) Gidaio: Trade R2 G2 Yeahno\n\n44) Aristos: Move R2 Burningcopper Whytwo\n\n45) Gidaio: Move R1 Gidaio Solaris\n\n46) Aristos: Sacrifice G2 Gassygiant\nBuild R2 Whytwo\nBuild R3 Burningcopper\n\n47) Gidaio: Build R3 Solaris\n\n48) Aristos: Sacrifice Y2 Gassygiant\nMove R2 Burningcopper Solaris\nMove R3 Burningcopper Solaris\nCatastrophe Solaris R\n\tGidaio: This is getting long!\n\n49) Gidaio: Build G2 Solaris\n\n50) Aristos: Move G1 Gassygiant Solaris\nCatastrophe Solaris G\n\tGidaio: Those are getting annoying. :P\n\n51) Gidaio: Build Y2 Gidaio\n\n52) Aristos: Sacrifice Y3 Burningcopper\nMove G2 Whytwo Gidaio\nMove R2 Whytwo Gidaio\nMove R2 Whytwo Gidaio\n\tGidaio: Curse you and your dominance over yellow!\n\n53) Gidaio: Build G1 Yeahno\n\n54) Aristos: Sacrifice R2 Gidaio\nAttack R1 Gidaio\nAttack Y2 Gidaio\n\n55) Gidaio: Trade G2 Y2 Yeahno\n\n56) Aristos: Build Y3 Gidaio\n\tAristos: The Yellow Empire sees value in your species. We would not like to see your flame extinguished with continued catastrophes... \n\tGidaio: No! I shall fight to my last breath!\r\n...\r\nThat&#39;s gonna be pretty soon, isn&#39;t it?\n\n57) Gidaio: Discover Y2 Yeahno G2 Solaris A.e.\n\n58) Aristos: Sacrifice Y2 Gassygiant\nMove Y1 Burningcopper Solaris\nMove Y1 Solaris Gidaio\nCatastrophe Gidaio Yellow\n\tAristos: The Yellow Empire claims legal rights to all yellow ships. We notice you have two of our ships. We are sure this acquisition is merely an accident on your part. Please return them immediately. We would hate to resort to less... diplomatic methods.\n\tGidaio: We apologize for holding your ships, and they will be returned to you at the soonest convenient moment. Please wait as we send them to you.\n\n\tAristos: The Yellow Empire tried to save you a trip. It was with the best intentions, we assure you, that we triggered this catastrophe. Please accept membership in our empire as a token of our apology.\r\n\r\n... and thanks for the game. :-)\n\tGidaio: Good game. I&#39;m obviously not very good at this yet, but whatever. :)\n\nHomeworlds Online (SDG# 18497)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.11, Ended: 2010.12.15\nParticipants: Danner (S), goulo (N)\nWinner: Danner\n\n1) goulo: Homeworld G3 B1 Y3\n\tDanner: Hello again! :) Good luck, have fun!\n\n2) Danner: Homeworld G2 B1 B3 *\n\tgoulo: thanks, you too!\n\n3) goulo: Build Y1 Goulo\n\n4) Danner: Build B1 Danner\n\tgoulo: I&#39;ve been playing so many different games lately that I have an amusing surreal sense that it has been a very long time since I played Homeworlds. :)\n\tDanner: :D\n\n5) goulo: Build Y1 Goulo\n\n6) Danner: Trade B3 Y3 Danner\n\n7) goulo: Trade Y1 R1 Goulo\n\n8) Danner: Build B2 Danner\n\n9) goulo: Trade Y3 B3 Goulo\n\n10) Danner: Trade B2 R2 Danner\n\n11) goulo: Build R1 Goulo\n\n12) Danner: Build B2 Danner\n\n13) goulo: Discover R1 Goulo G2 Smeraldo\n\n14) Danner: Discover B2 Danner G3 Sajt\n\n15) goulo: Build Y1 Goulo\n\n16) Danner: Build B2 Sajt\n\n17) goulo: Build R1 Smeraldo\n\n18) Danner: Build B2 Danner\n\n19) goulo: Build R2 Goulo\n\n20) Danner: Build B3 Sajt\n\n21) goulo: Move B3 Goulo Smeraldo\n\n22) Danner: Sacrifice Y3 Danner\nMove B3 Sajt Smeraldo\nMove B3 Smeraldo Goulo\nDiscover B2 Danner Y3 Macska\n\n23) goulo: Sacrifice Y1 Goulo\nMove B3 Smeraldo Macska\n\n\tgoulo: My early misread of the blue ship economy was disastrous!\n\tgoulo: Thanks for the game!\n\tDanner: Thank you too!\n\nHomeworlds Online (SDG# 18540)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.14, Ended: 2010.12.27\nParticipants: Uglyfoot (S), Kermit (N)\nWinner: Uglyfoot\n\n1) Kermit: Homeworld Y1 G2 B3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) Kermit: Build B1 Kermit\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Kermit: Discover B1 Kermit G3 Leary\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) Kermit: Build B1 Leary\n\n8) Uglyfoot: Trade G1 R1 Uglyfoot\n\n9) Kermit: Trade B1 Y1 Leary\n\n10) Uglyfoot: Discover G1 Uglyfoot B1 Leap\n\n\nHomeworlds Online (SDG# 18369)\nStarted: 2010.12.14, Ended: 2010.12.24\nParticipants: rootbier (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n\nHomeworlds Online (SDG# 18565)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.15, Ended: 2011.2.2\nParticipants: SilentTitan (S), sompm (N)\nWinner: SilentTitan\n\n1) sompm: Homeworld G3 Y1 B3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) sompm: Build B1 Sompm\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sompm: Build B1 Sompm\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) sompm: Discover B1 Sompm Y2 Phantomy\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) sompm: Discover B1 Phantomy G1 Nerdfighteria\n\n10) SilentTitan: Trade B1 Y1 Silenttitan\n\n11) sompm: Build B1 Nerdfighteria\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) sompm: Build B2 Sompm\n\n14) SilentTitan: Trade B2 R2 Silenttitan\n\n15) sompm: Trade B2 Y2 Sompm\n\n16) SilentTitan: Move R2 Silenttitan Nerdfighteria\n\n17) sompm: Build B2 Nerdfighteria\n\n18) SilentTitan: Attack B2 Nerdfighteria North\n\n19) sompm: Build B2 Nerdfighteria\nCatastrophe Nerdfighteria B\n\n20) SilentTitan: Build Y2 Silenttitan\n\n21) sompm: Build Y2 Sompm\n\n22) SilentTitan: Move Y1 Silenttitan Nerdfighteria\n\n23) sompm: Trade Y2 R2 Sompm\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Nerdfighteria\nBuild Y3 Nerdfighteria\nBuild Y3 Silenttitan\n\n25) sompm: Discover Y2 Sompm G2 Muckel\n\n26) SilentTitan: Sacrifice Y1 Nerdfighteria\nDiscover Y1 Silenttitan G1 Silver\n\n27) sompm: Trade B1 G1 Sompm\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) sompm: Build G2 Sompm\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Silver\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 18548)\nVariants: &quot;Unrated&quot;\nStarted: 2010.12.17, Ended: 2011.1.7\nParticipants: daselva (S), Wofie (N)\nWinner: daselva\n\n1) Wofie: Homeworld G2 B3 G3 *\n\n2) daselva: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 18357)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.19, Ended: 2011.1.16\nParticipants: epicfailguy (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tJesse: Hello, and have a good game.\n\n2) epicfailguy: Homeworld B1 G2 R3\n\n3) Jesse: Build G1 Jesse\n\n4) epicfailguy: Build R1 Epicfailguy\n\n5) Jesse: Trade G1 R1 Jesse\n\n6) epicfailguy: Trade R1 Y1 Epicfailguy\n\n7) Jesse: Build G1 Jesse\n\n8) epicfailguy: Build Y1 Epicfailguy\n\n9) Jesse: Trade G1 Y1 Jesse\n\n10) epicfailguy: Build Y2 Epicfailguy\n\n11) Jesse: Build Y2 Jesse\n\n12) epicfailguy: Trade Y1 G1 Epicfailguy\n\n13) Jesse: Build G1 Jesse\n\n14) epicfailguy: Discover G1 Epicfailguy B3 Newfoundsystem\n\n15) Jesse: Discover G1 Jesse B2 Grover\n\n16) epicfailguy: Move Y2 Epicfailguy Newfoundsystem\n\n17) Jesse: Move Y2 Jesse Grover\n\n18) epicfailguy: Build Y1 Newfoundsystem\n\n19) Jesse: Move R1 Jesse Grover\n\n20) epicfailguy: Trade Y2 R2 Newfoundsystem\n\n21) Jesse: Build Y2 Grover\n\n22) epicfailguy: Trade Y1 B1 Epicfailguy\n\n23) Jesse: Trade Y2 B2 Grover\n\n24) epicfailguy: Build R1 Epicfailguy\n\n25) Jesse: Build R2 Grover\n\n26) epicfailguy: Trade R3 Y3 Epicfailguy\n\n27) Jesse: Discover R1 Grover G1 Oscar\n\n28) epicfailguy: Build G2 Newfoundsystem\n\n29) Jesse: Build G2 Jesse\n\n30) epicfailguy: Discover G2 Newfoundsystem Y2 Starbright\n\n31) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Grover\nBuild G3 Grover\n\n32) epicfailguy: Move G1 Newfoundsystem Grover\nCatastrophe Grover Green\n\n33) Jesse: Move G2 Jesse Grover\n\n34) epicfailguy: Build R2 Epicfailguy\n\n35) Jesse: Build R3 Grover\n\n36) epicfailguy: Discover R1 Epicfailguy Y3 Sol\n\n37) Jesse: Build R3 Oscar\n\n38) epicfailguy: Build R3 Epicfailguy\n\n39) Jesse: Build G1 Jesse\n\n40) epicfailguy: Move R1 Sol Starbright\n\n41) Jesse: Move R3 Grover Newfoundsystem\n\n42) epicfailguy: Move R2 Newfoundsystem Starbright\n\n43) Jesse: Attack Y1 Newfoundsystem\n\n44) epicfailguy: Trade R2 Y2 Epicfailguy\n\n45) Jesse: Sacrifice G3 Jesse\nBuild G1 Grover\nBuild G3 Jesse\nBuild Y1 Newfoundsystem\n\n46) epicfailguy: Build G3 Starbright\n\n47) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Jesse\nBuild Y3 Grover\n\n48) epicfailguy: Discover Y3 Epicfailguy G3 Theisland\n\n49) Jesse: Move G1 Grover Newfoundsystem\n\n50) epicfailguy: Build R2 Epicfailguy\n\n51) Jesse: Move Y1 Newfoundsystem Oscar\n\n52) epicfailguy: Move G2 Starbright Theisland\n\n53) Jesse: Move B2 Grover Oscar\n\n54) epicfailguy: Move B1 Epicfailguy Theisland\n\n55) Jesse: Trade R3 B3 Oscar\n\n56) epicfailguy: Move R1 Starbright Theisland\n\n57) Jesse: Sacrifice G3 Jesse\nBuild G3 Newfoundsystem\nBuild R3 Newfoundsystem\nPass\n\n58) epicfailguy: Build B1 Theisland\n\n59) Jesse: Sacrifice Y3 Grover\nMove G3 Newfoundsystem Epicfailguy\nMove R3 Newfoundsystem Epicfailguy\nMove R3 Newfoundsystem Epicfailguy\nCatastrophe Epicfailguy R\n\n60) epicfailguy: Sacrifice Y3 Theisland\nMove G2 Theisland Epicfailguy\nMove R1 Theisland Epicfailguy\nMove B1 Theisland Epicfailguy\n\n61) Jesse: Sacrifice G3 Epicfailguy\nBuild G3 Newfoundsystem\nBuild Y3 Newfoundsystem\nBuild Y3 Grover\n\n62) epicfailguy: Build R2 Starbright\n\n63) Jesse: Sacrifice G3 Newfoundsystem\nBuild G3 Newfoundsystem\nBuild R3 Grover\nBuild R3 Oscar\n\n64) epicfailguy: Build R3 Epicfailguy\n\n65) Jesse: Move R1 Oscar Newfoundsystem\n\n66) epicfailguy: Build B2 Theisland\n\n67) Jesse: Move R3 Oscar Theisland\n\n68) epicfailguy: Pass\n\n69) Jesse: Sacrifice Y3 Grover\nMove R3 Theisland Epicfailguy\nMove R1 Newfoundsystem Epicfailguy\nMove G3 Newfoundsystem Epicfailguy\nCatastrophe Epicfailguy R\n\n70) epicfailguy: Build Y3 Epicfailguy\n\n71) Jesse: Sacrifice R3 Grover\nAttack Y3 Epicfailguy\nAttack Y2 Epicfailguy\nAttack G2 Epicfailguy\n\n\nHomeworlds Online (SDG# 18359)\nStarted: 2010.12.20, Ended: 2010.12.24\nParticipants: mathochist (S), epicfailguy (N)\nWinner: epicfailguy\n\n1) epicfailguy: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 18618)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.22, Ended: 2011.2.17\nParticipants: ts52 (S), nycavri (N)\nWinner: ts52\n\n1) nycavri: Homeworld Y2 B3 G3\n\tnycavri: TaGG!\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: TaGG? I&#39;m guessing the sentiment is sth like &#39;have a good game&#39;, so, you too!\n\n3) nycavri: Build G1 Nycavri\n\tnycavri: Yup - it&#39;s a toast &quot;To a Good Game&quot; . . .\n\n4) ts52: Build G1 Ts52\n\n5) nycavri: Trade G1 Y1 Nycavri\n\tts52: Nice. I like it. Prost!\n\n6) ts52: T G1 Y1 Ts52\n\n7) nycavri: Discover Y1 Nycavri G1 Deacon\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) nycavri: Build G1 Nycavri\n\n10) ts52: Build Y2 Kermit\n\n11) nycavri: Build Y2 Deacon\n\n12) ts52: Discover Y1 Kermit G2 Robin\n\n13) nycavri: Move Y2 Deacon Kermit\n\n14) ts52: Build Y3 Kermit\n\n15) nycavri: Move Y2 Kermit Ts52\n\n16) ts52: Build Y3 Robin\n\n17) nycavri: Trade G1 R1 Nycavri\n\n18) ts52: Trade G3 R3 Ts52\n\n19) nycavri: Build Y3 Deacon\n\n20) ts52: Attack Y2 Ts52\n\n21) nycavri: Build G1 Nycavri\n\n22) ts52: Trade Y2 R2 Ts52\n\n23) nycavri: Build R1 Nycavri\n\n24) ts52: Trade R3 G3 Ts52\n\n25) nycavri: Discover R1 Nycavri B1 May\n\n26) ts52: Build G1 Ts52\n\n27) nycavri: Move G1 Nycavri Deacon\n\n28) ts52: Discover G1 Ts52 B3 Grover\n\n29) nycavri: Build G2 Nycavri\n\n30) ts52: Build G2 Ts52\n\n31) nycavri: Discover G1 Deacon Y2 Mercury\n\n32) ts52: Move Y3 Robin Grover\n\n33) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild R1 May\nBuild R2 Nycavri\n\n34) ts52: T Y3 R3 Grover\n\n35) nycavri: Discover Y1 Deacon Y3 Taylor\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Grover\nBuild R3 Ts52\n\n37) nycavri: Sacrifice Y3 Deacon\nMove R1 May Taylor\nMove R1 May Taylor\nMove R1 Taylor Ts52\n\n38) ts52: Move R3 Ts52 Taylor\n\n39) nycavri: Sacrifice Y1 Taylor\nMove R1 Taylor Ts52\n\n40) ts52: Sacrifice G3 Ts52\nBuild G1 Grover\nBuild G3 Ts52\nBuild R3 Taylor\n\n41) nycavri: Trade R1 B1 Ts52\n\n42) ts52: Attack B1N Ts52\n\n43) nycavri: Sacrifice G2 Nycavri\nBuild G2 Nycavri\nBuild R1 Ts52\n\n44) ts52: Attack R1N Ts52\n\n45) nycavri: Sacrifice R1 Nycavri\nAttack B1 Ts52\n\n46) ts52: Attack B1N Ts52\n\n47) nycavri: Sacrifice G2 Nycavri\nBuild G2 Nycavri\nBuild R1 Ts52\nCatastrophe Ts52 R\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Robin\n\n49) nycavri: Build R1 Nycavri\n\n50) ts52: Move B1 Ts52 Taylor\n\n51) nycavri: Trade R1 B1 Nycavri\n\n52) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Taylor\nBuild B2 Taylor\n\n53) nycavri: Discover B1 Nycavri R1 Edney\n\n54) ts52: M Y2 Kermit Edney\n\n55) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild B2 Edney\nBuild B3 Edney\n\n56) ts52: Move B1 Taylor Edney\nCatastrophe Edney Blue\n\tts52: M y2 Kermit edney \n\n57) nycavri: Build R1 Nycavri\n\tts52: Oops, wrong box \n\n58) ts52: Move Y1 Robin Grover\n\n59) nycavri: Trade R1 B1 Nycavri\n\n60) ts52: Move B1 Taylor Edney\n\n61) nycavri: Move B1 Nycavri Edney\n\n62) ts52: Attack B1N Edney\n\n63) nycavri: Build R1 Nycavri\n\n64) ts52: Move B2 Taylor Edney\n\n65) nycavri: Trade R1 B1 Nycavri\n\n66) ts52: Sacrifice Y2 Edney\nMove B1 Edney Nycavri\nMove B1 Edney Nycavri\nCatastrophe Nycavri Blue\n\n67) nycavri: Discover G1 Mercury B3 Rodgers\n\n68) ts52: Sacrifice Y3 Robin\nMove Y3 Kermit Nycavri\nMove Y1 Kermit Nycavri\nMove Y1 Grover Nycavri\nCatastrophe Nycavri Yellow\n\n\tts52: Thanks for the game.\n\tnycavri: You too - man that got ugly for me halfway through.  You took your sweet time squeezing me!  *grin*\n\nHomeworlds Online (SDG# 18630)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.24, Ended: 2011.1.5\nParticipants: AdamBadura (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 G2 Y3\n\n2) AdamBadura: Homeworld G1 B3 Y3\n\tgoulo: I finally got within range to challenge you by challenging some inactive player over and over until he finally automatically declined enough to fall. :)\n\n3) goulo: Build Y1 Goulo\n\tAdamBadura: Hi! I did the same while climbing up. Those inactive people are really enoying!\r\n\r\nCurrently (until evening on Monday 27th) I&#39;m at my wife parents which limits severly possibility to make moves. Sorry for that!\n\tgoulo: No problem. I&#39;ve noticed all my SDG games have slowed down recently. :) Also I&#39;ll be in Germany from Monday till Sunday (Esperanto event), probably checking email less often.\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) goulo: Trade Y1 R1 Goulo\n\n6) AdamBadura: Build Y1 Adambadura\n\n7) goulo: Build R1 Goulo\n\n8) AdamBadura: Trade Y3 R3 Adambadura\n\n9) goulo: Trade R1 G1 Goulo\n\n10) AdamBadura: Discover Y1 Adambadura G2 Shipyard\n\n11) goulo: Build R1 Goulo\n\n12) AdamBadura: Build R1 Adambadura\n\n13) goulo: Build R2 Goulo\n\n14) AdamBadura: Build R2 Adambadura\n\n15) goulo: Sacrifice Y3 Goulo\nDiscover R1 Goulo B1 Mirteleto\nMove R1 Mirteleto Shipyard\nMove R1 Shipyard Adambadura\nCatastrophe Adambadura R\n\n16) AdamBadura: Build Y1 Adambadura\n\tAdamBadura: How did I not see this coming??? !!!\n\n17) goulo: Trade R2 Y2 Goulo\n\n18) AdamBadura: Build Y2 Shipyard\n\tgoulo: Too much alcohol? :)\n\n19) goulo: Build R1 Goulo\n\tAdamBadura: I&#39;m not drinking now. But after what you did I&#39;m starting to think of it... ;) Good night!\n\n20) AdamBadura: Trade Y1 R1 Adambadura\n\n21) goulo: Build R2 Goulo\n\n22) AdamBadura: Build R2 Adambadura\n\n23) goulo: Discover R2 Goulo G1 Smeraldeto\n\n24) AdamBadura: Move R1 Adambadura Shipyard\n\n25) goulo: Build G2 Goulo\n\n26) AdamBadura: Build R2 Shipyard\n\n27) goulo: Build R3 Smeraldeto\n\n28) AdamBadura: Build R3 Adambadura\n\tgoulo: happy new year from germany!\n\n29) goulo: Build Y1 Goulo\n\n30) AdamBadura: Trade R3 G3 Adambadura\n\tAdamBadura: Happy new year to you too!\n\n31) goulo: Move G1 Goulo Smeraldeto\n\n32) AdamBadura: Build R3 Adambadura\n\n33) goulo: Build R3 Goulo\n\n34) AdamBadura: Sacrifice Y2 Shipyard\nMove R1 Shipyard Smeraldeto\nMove R1 Smeraldeto Goulo\nCatastrophe Goulo R\n\tAdamBadura: Interesting move. My move will take some time as situation is becoming complex and I cannot afford another mistake.\n\n35) goulo: Build G3 Goulo\n\tgoulo: I wondered if you would do that. I figured it was OK for me as the result of the last 2 turns is that I lost 2 1-ships while you lost a 1-ship and a 2-ship. But of course the specific situation makes it hard to know if that simple analysis is valid. :)\n\n36) AdamBadura: Discover G3 Adambadura Y2 Highway\n\tAdamBadura: I considered also catastrophing R in Smeraldeto however this would require me to use R2 too. Another way was to invade Smeraldeto with R and see what will you do (this could allow me to save Y2). But all this seemed bi to tricky and error-prone.\r\n\r\nBy the way did Artur contact you regarding Fridrich at UP next Saturday? He asked on forum whether there are any people willing to play and I suggested him to PM you as I suspect you do not read forum any more. (I wont play it and most likely I wont be there at all - those open hours are conflicting with Karol&#39;s needs... ;))\n\n37) goulo: Discover G2 Goulo R1 Rubeneto\n\tgoulo: Yes, I got email from Artur. I need to re-orient to &quot;normal life&quot; after the vacation and figure out what plans I have for Saturday. :)\n\n38) AdamBadura: Move G3 Highway Rubeneto\n\n39) goulo: Build G3 Rubeneto\n\n40) AdamBadura: Attack G3 Rubeneto\n\n41) goulo: Sacrifice G1 Smeraldeto\nBuild G1 Rubeneto\nCatastrophe Rubeneto G\n\tAdamBadura: It seems you deepend much on ships value calculations.\n\n42) AdamBadura: Trade Y1 G1 Adambadura\n\tgoulo: or maybe I just like explosions. :)\n\tAdamBadura: Hmmmm... That trick with sacrifice/rebuild is a nice one... I expected you to sacrifice also Y1. Now I&#39;m not sure whather I should have palyed so...\n\n43) goulo: Move Y1 Goulo Smeraldeto\n\n44) AdamBadura: Build G2 Adambadura\n\tgoulo: By the way, I actually got to teach and play Homeworlds at the new year&#39;s Esperanto event! And some other pyramid games.\n\n45) goulo: Build G3 Goulo\n\n46) AdamBadura: Trade G2 Y2 Adambadura\n\n47) goulo: Trade G3 Y3 Goulo\n\n48) AdamBadura: Build R1 Shipyard\n\n49) goulo: Discover R3 Smeraldeto Y2 Citrono\n\tAdamBadura: My position becomes bad. At some point I thought I managed to get away after previous mistake but either I didn&#39;t or I did some new mistakes...\n\n50) AdamBadura: Discover G1 Adambadura B2 Mutators\n\n51) goulo: Move R3 Citrono Adambadura\n\n52) AdamBadura: Sacrifice R2 Adambadura\nAttack R3 Adambadura\nPass\n\n53) goulo: Build R1 Smeraldeto\n\tAdamBadura: Thanks! ;)\n\tgoulo: Doh! I hate it when I do that!\n\tgoulo: That was a terrible mistake!\n\n54) AdamBadura: Move R3 Adambadura Mutators\n\tgoulo: Jeez, that sure turned the situation around for you. Homeworlds can be very unforgiving!\n\tAdamBadura: Yes. And I already did that &quot;trick&quot; to you some time ago.\r\n\r\nBut Homeworlds keeps surprising with such actions. Like that your sacrifical of G1 to recreate it somewhere else. Simple and briliant! Yet I missed that. ;)\r\n\r\nBut just keep on playing wating on my next mistake... ;)\n\n55) goulo: Move G3 Goulo Smeraldeto\n\n56) AdamBadura: Build G2 Mutators\n\n57) goulo: Discover G3 Smeraldeto Y2 Citrono\n\n58) AdamBadura: Build G3 Mutators\n\n59) goulo: Build G3 Citrono\n\n60) AdamBadura: Trade G3 Y3 Mutators\n\n61) goulo: Move R1 Smeraldeto Goulo\n\n62) AdamBadura: Trade G1 B1 Mutators\n\n63) goulo: Build R1 Smeraldeto\n\n64) AdamBadura: Discover B1 Mutators G1 Lastbase\n\n65) goulo: Move Y2 Goulo Lastbase\n\n66) AdamBadura: Move R3 Mutators Lastbase\n\n67) goulo: Move Y2 Lastbase Citrono\n\n68) AdamBadura: Build G3 Mutators\n\n69) goulo: Sacrifice G3 Citrono\nBuild G3 Citrono\nBuild Y1 Goulo\nBuild Y3 Smeraldeto\n\n70) AdamBadura: Discover R1 Shipyard B1 Tiny\n\n71) goulo: Move R1 Smeraldeto Citrono\n\n72) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild R2 Lastbase\nBuild R3 Tiny\n\n73) goulo: Discover Y1 Smeraldeto B2 Mirtelo\n\n74) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild B1 Lastbase\nBuild B2 Lastbase\n\n75) goulo: Move Y3 Smeraldeto Shipyard\n\tAdamBadura: I haven&#39;t seen anything like that ever... ;)\n\n76) AdamBadura: Move Y1 Shipyard Lastbase\n\tgoulo: the sad thing is, i had a great position until that stupid mistake that gave you my r3!\n\n77) goulo: Sacrifice R2 Smeraldeto\nAttack R2 Shipyard\nPass\n\n78) AdamBadura: Sacrifice Y3 Mutators\nMove R2 Lastbase Mirtelo\nMove R1 Tiny Mutators\nMove B1 Lastbase Goulo\n\n79) goulo: Discover Y1 Mirtelo G1 Smeraldeto\n\n80) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild R2 Mirtelo\nBuild Y3 Adambadura\n\n81) goulo: Move Y3 Shipyard Adambadura\n\n82) AdamBadura: Attack Y3 Adambadura\n\n83) goulo: Move Y2 Citrono Adambadura\nCatastrophe Adambadura Y\n\n84) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild B3 Lastbase\nBuild Y2 Lastbase\n\n85) goulo: Attack B1 Goulo\n\n86) AdamBadura: Sacrifice Y2 Lastbase\nMove B1 Lastbase Goulo\nMove B2 Lastbase Goulo\nCatastrophe Goulo B\n\n87) goulo: Sacrifice Y3 Goulo\nMove R1 Citrono Adambadura\nMove R2 Shipyard Adambadura\nMove R1 Goulo Adambadura\nCatastrophe Adambadura R\n\n\tgoulo: awesome. :)\n\tAdamBadura: How????????????!!!!!!!!!!\n\tAdamBadura: Oh...\n\tAdamBadura: And I had a second thought of that: will this not allow you to invade me. I somehow missed that opportunity. The most obvious one. To bad as I think I would have won it... :(\r\n\r\nBut the game was interesting!\n\tgoulo: As you wrote a couple of days ago: &quot;But just keep on playing wating on my next mistake... ;) &quot;\r\nSo you were right! I waited for your mistake. :)\n\tgoulo: That was quite a funny game with both of us making mistakes.\n\tAdamBadura: Yes. You made a stupid mistake with R which took away your victory. But The Universe made us even by giving it back to you on almost last possible moment. ;)\n\tgoulo: It was funny after you did the blue catastrophe on me, I was looking thinking, is there any way I can get all 3 red ships to your homeworld soon? Wow, is it really that easy, just like that? I checked and rechecked to make sure I was not imagining it from wishful thinking. :)\n\nHomeworlds Online (SDG# 18468)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.26, Ended: 2011.1.25\nParticipants: lorgar (S), dlwillson (N)\nWinner: lorgar\n\n1) dlwillson: H B3 Y1 G3\n\n2) lorgar: Homeworld G1 Y2 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) lorgar: Build B1 Lorgar\n\n5) dlwillson: B G1 Dlwillson\n\n6) lorgar: Build B1 Lorgar\n\n7) dlwillson: T G1 B1 Dlwillson\n\n8) lorgar: Trade B1 G1 Lorgar\n\n9) dlwillson: B G2 Dlwillson\n\n10) lorgar: Build G2 Lorgar\n\n11) dlwillson: T G2 Y2 Dlwillson\n\n12) lorgar: Trade G2 Y2 Lorgar\n\n13) dlwillson: Build Y1 Dlwillson\n\n14) lorgar: Build G2 Lorgar\n\n15) dlwillson: D Y1 Dlwillson G2 Knuckles\n\n16) lorgar: Discover G2 Lorgar B3 Rome\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Knuckles\nBuild Y3 Knuckles\nBuild Y3 Dlwillson\n\n18) lorgar: Move Y2 Lorgar Rome\n\n19) dlwillson: D Y1 Knuckles Y3 Knees\n\n20) lorgar: Trade B1 R1 Lorgar\n\n21) dlwillson: Sacrifice B1 Dlwillson\nTrade Y1 R1 Knuckles\n\n22) lorgar: Build Y1 Rome\n\n23) dlwillson: T Y3 G3 Dlwillson\n\n24) lorgar: Trade Y1 R1 Rome\n\n25) dlwillson: Move Y3 Knuckles Rome\n\n26) lorgar: Trade G2 R2 Rome\n\n27) dlwillson: B G2 Dlwillson\n\n28) lorgar: Trade R1 Y1 Rome\n\n29) dlwillson: S G2 Dlwillson\nB Y3 Knees\nB G2 Dlwillson\n\n30) lorgar: Sacrifice Y2 Rome\nMove Y1 Rome Knuckles\nMove Y1 Knuckles Knees\nCatastrophe Knees Yellow\n\n\nHomeworlds Online (SDG# 18358)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.28, Ended: 2011.1.16\nParticipants: baxy (S), SilentTitan (N)\nWinner: baxy\n\n1) SilentTitan: Homeworld B2 R3 G3\n\n2) baxy: Homeworld G3 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) baxy: Build Y1 Baxy\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) baxy: Trade Y1 B1 Baxy\n\n7) SilentTitan: Trade Y1 B1 Silenttitan\n\n8) baxy: Build B2 Baxy\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) baxy: Discover B2 Baxy Y2 Gwar\n\n11) SilentTitan: Trade G1 Y1 Silenttitan\n\n12) baxy: Trade Y3 G3 Baxy\n\n13) SilentTitan: Discover B1 Silenttitan Y1 Sic\n\n14) baxy: Trade B1 Y1 Baxy\n\n15) SilentTitan: Build Y2 Silenttitan\n\n16) baxy: Build G1 Baxy\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) baxy: Trade G1 R1 Baxy\n\n19) SilentTitan: Discover Y2 Silenttitan R1 Redplanet\n\n20) baxy: Build R1 Baxy\n\n21) SilentTitan: Discover Y2 Redplanet R2 Planredet\n\n22) baxy: Move R1 Baxy Gwar\n\n23) SilentTitan: Discover B1 Sic Y3 Ssl\n\n24) baxy: Move R1 Gwar Ssl\n\n25) SilentTitan: Move B1 Ssl Planredet\n\n26) baxy: Build R1 Baxy\n\n27) SilentTitan: Build Y1 Silenttitan\n\n28) baxy: Sacrifice G3 Baxy\nBuild R2 Ssl\nBuild R2 Ssl\nBuild R3 Baxy\n\n29) SilentTitan: Discover Y1 Silenttitan G1 Peaceful\n\n30) baxy: Trade R3 Y3 Baxy\n\n31) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Planredet\nBuild B1 Planredet\nBuild Y3 Silenttitan\n\n32) baxy: Build R3 Baxy\n\n33) SilentTitan: Trade Y3 G3 Silenttitan\n\n34) baxy: Sacrifice Y1 Baxy\nMove R2 Ssl Peaceful\n\n35) SilentTitan: Sacrifice Y2 Planredet\nMove B1 Planredet Baxy\nMove B1 Planredet Baxy\n\n36) baxy: Build R3 Peaceful\n\n37) SilentTitan: Move Y1 Peaceful Planredet\n\n38) baxy: Discover R3 Baxy G2 Megadeth\n\n39) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Planredet\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n40) baxy: Sacrifice Y3 Baxy\nMove R3 Peaceful Silenttitan\nMove R3 Megadeth Peaceful\nMove R3 Peaceful Silenttitan\n\n\tSilentTitan: good game\n\tbaxy: good game\n\nHomeworlds Online (SDG# 18677)\nVariants: &quot;Hard time&quot;\nStarted: 2010.12.29, Ended: 2011.1.10\nParticipants: Danner (S), Uglyfoot (N)\nWinner: Danner\n\n1) Uglyfoot: Homeworld G3 B1 Y3\n\tDanner: Howdy! It has been a long time since our last game.\n\n2) Danner: Homeworld G2 B1 B3 *\n\n3) Uglyfoot: Build Y1 Uglyfoot\n\tDanner: Good luck, have fun!\n\n4) Danner: Build B1 Danner\n\n5) Uglyfoot: Discover Y1 Uglyfoot G2 Forth\n\n6) Danner: Trade B3 Y3 Danner\n\n7) Uglyfoot: Build Y1 Uglyfoot\n\tDanner: Happy New Year!\n\n8) Danner: Build B2 Danner\n\n9) Uglyfoot: Build Y1 Forth\n\n10) Danner: Discover B2 Danner G3 Orland\n\n11) Uglyfoot: Build Y2 Forth\n\n12) Danner: Build B2 Orland\n\n13) Uglyfoot: Trade Y3 B3 Uglyfoot\n\n14) Danner: Build B2 Danner\n\n15) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n16) Danner: Build B3 Orland\n\n17) Uglyfoot: Move Y2 Forth Orland\n\n18) Danner: Trade B3 R3 Orland\n\n19) Uglyfoot: Move Y2 Orland Danner\n\n20) Danner: Sacrifice R3 Orland\nPass\nPass\nAttack Y2N Danner\n\n21) Uglyfoot: Build B3 Uglyfoot\n\n22) Danner: Sacrifice Y2 Danner\nMove B2 Orland Forth\nMove B2 Forth Uglyfoot\nCatastrophe Uglyfoot B\n\n23) Uglyfoot: Build Y1 Forth\n\n24) Danner: Trade B2 G2 Danner\n\n25) Uglyfoot: Move Y1 Forth Uglyfoot\n\n26) Danner: Move G2 Danner Uglyfoot\n\n27) Uglyfoot: Build Y2 Uglyfoot\n\n28) Danner: Build G1 Uglyfoot\n\n29) Uglyfoot: Attack G2 Uglyfoot\n\n30) Danner: Build G1 Uglyfoot\nCatastrophe Uglyfoot G\n\tDanner: Thanks for the game!\n\n\nHomeworlds Online (SDG# 18554)\nStarted: 2010.12.29, Ended: 2011.1.1\nParticipants: Remneb (S), rootbier (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 18694)\nStarted: 2010.12.29, Ended: 2011.2.16\nParticipants: Remneb (S), Laurie_Menke (N)\nWinner: Remneb\n\n1) Laurie_Menke: Homeworld Y3 B2 G3\n\tLaurie_Menke: And another!  You are on a roll!  Thanks!  :o)\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Remneb: Build G1 Remneb\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) Remneb: Build G1 Remneb\n\n9) Laurie_Menke: Discover G1 Laurie_menke G1 Sweetpea\n\n10) Remneb: Trade G1 B1 Remneb\n\n11) Laurie_Menke: Discover Y1 Laurie_menke B1 Little Boy Blue\n\n12) Remneb: Discover B1 Remneb Y3 Ram\n\tLaurie_Menke: LOL... I meant to name that Little Boy Blue but I forgot you can&#39;t use spaces.  Oh, well...\n\tRemneb: Well i&#39;m too dum to make a sentence with &quot;little sweetpea&quot;...\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\tRemneb: You just have to play a game to win one point or do you need to win ?\r\n\n\tLaurie_Menke: LOL... I just named it Sweetpea because it&#39;s green.  I never know what to name these things.  ;o)\r\n\r\nI only have to complete the game for the point... not win.  ;o)\n\n14) Remneb: Build G2 Remneb\n\tRemneb: There is a lot of stars in the sky:Vega,Antares,Cassiopea,Betelgeuse,Kenme Raulie...\n\n15) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Sweetpea\nBuild G3 Laurie_menke\n\tLaurie_Menke: Good point.  :o)\n\tRemneb: Kenme Raulie = Laurie Menke\n\n16) Remneb: Move G2 Remneb Ram\n\n17) Laurie_Menke: Sacrifice G1 Sweetpea\nPass\n\n18) Remneb: Build G1 Ram\n\n19) Laurie_Menke: Discover Y1 Little G3 Bigdipper\n\n20) Remneb: Discover G1 Ram Y1 Gumrak\n\n21) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y2 Bigdipper\n\n22) Remneb: Build Y2 Remneb\n\n23) Laurie_Menke: Move Y2 Bigdipper Sweetpea\n\n24) Remneb: Move Y2 Remneb Ram\n\n25) Laurie_Menke: Discover G2 Laurie_menke G1 Littledipper\n\n26) Remneb: Trade Y2 R2 Ram\n\n27) Laurie_Menke: Move Y1 Bigdipper Remneb\n\n28) Remneb: Attack Y1 Remneb\n\n29) Laurie_Menke: Build G3 Laurie_menke\n\n30) Remneb: Move R2 Ram Sweetpea\n\tLaurie_Menke: Aw, shoot!  I forgot you could use the power of the stars, too.  That was stupid of me.  :o(\n\n31) Laurie_Menke: Discover G2 Sweetpea Y3 Sun\n\tRemneb: well i&#39;m new in that game...so i was not sure if it was a secret plan of your&#39;s to destroy my Homeworld !\n\n32) Remneb: Attack Y2 Sweetpea\n\tLaurie_Menke: I had intended to convert my yellow to a red and take one of your ships.  Oh, well...\n\n33) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n34) Remneb: Build G3 Remneb\n\n35) Laurie_Menke: Build R1 Laurie_menke\n\n36) Remneb: Trade G3 R3 Remneb\n\n37) Laurie_Menke: Build G3 Laurie_menke\n\n38) Remneb: Move R3 Remneb Ram\n\n39) Laurie_Menke: Move R1 Laurie_menke Littledipper\n\n40) Remneb: Move G2 Ram Gumrak\n\n41) Laurie_Menke: Build R1 Laurie_menke\n\n42) Remneb: Move R3 Ram Gumrak\n\n43) Laurie_Menke: Build R2 Littledipper\n\n44) Remneb: Sacrifice G2 Gumrak\nBuild R2 Gumrak\nBuild R3 Sweetpea\n\n45) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n46) Remneb: Build Y2 Sweetpea\n\n47) Laurie_Menke: Sacrifice B1 Laurie_menke\nTrade G2 Y2 Sun\n\n48) Remneb: Build G2 Gumrak\n\n49) Laurie_Menke: Discover G3 Laurie_menke B1 Northstar\n\n50) Remneb: Move R3 Sweetpea Ram\n\tRemneb: I don&#39;t know if there ever been so many stars and ships in a game(19 ships and 9 stars) !\n\tLaurie_Menke: :o)\n\n51) Laurie_Menke: Build G2 Northstar\n\n52) Remneb: Move R3 Ram Northstar\n\n53) Laurie_Menke: Sacrifice Y2 Sun\nMove G3 Northstar Ram\nMove G2 Northstar Ram\n\tRemneb: Gosh!Something new for me here.You sacrifice a b1(instead of trading)then trade g2y2!Just a second before that gimmick of yours,i was sure that blue can only be trade for another of the same pip level !\n\tRemneb: Thanks for the lesson mistress.\n\tLaurie_Menke: You&#39;re right that trading has to be the same pip level, which it was--a 2 for a 2.  But since there was no blue in Sun, I had to sacrifice a blue elsewhere to make it happen.  :o)\n\n54) Remneb: Move R3 Gumrak Ram\n\n55) Laurie_Menke: Sacrifice R2 Littledipper\nAttack R3 Ram\nAttack B1 Ram\n\n56) Remneb: Sacrifice Y2 Sweetpea\nMove G1 Gumrak Ram\nMove G2 Gumrak Ram\nCatastrophe Ram G\n\n57) Laurie_Menke: Build G1 Laurie_menke\n\n58) Remneb: Discover Y1 Remneb G3 Frisco\n\tRemneb: move r3 Gumrak Ram\n\n59) Laurie_Menke: Build G2 Laurie_menke\n\tRemneb: You task me and i&#39;ll have you.I&#39;ll chase you round the moons of Nibia and round the Antares maelstrom and round perdition&#39;s flames before i give you up ! (Star Trek II:The Wrath of Kan)\r\n\r\n\n\tLaurie_Menke: :o)  You can&#39;t catch me!  (The Gingerbread Man)   ;o)\n\n60) Remneb: Build G2 Remneb\n\tRemneb: Damn!Something new again.You had no red ships and there is no red star in Ram system.How can you take my r3 and my b1?\n\n61) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\tLaurie_Menke: I sacrificed a red ship in another system.  ;o)  But you definitely got me back.  :o(\n\n62) Remneb: Sacrifice G2 Remneb\nBuild Y2 Sweetpea\nBuild Y3 Frisco\n\tRemneb: Who are not with me are doomed !(Remneb)\n\tRemneb: So we can sacrifice a red ship anywhere and hit anywhere without a red star or a red ship in the combat zone...\n\tRemneb: Is that mean that you used my own red ship to attack me?\n\n63) Laurie_Menke: Move Y2 Laurie_menke Littledipper\n\tLaurie_Menke: No.  You can only sacrifice your own red ships.  I sacrificed my r2 in the LittleDipper system.  That meant that I could attack two ships in any system, so long as I had a ship in that system that was as big or bigger than the one I was attacking.  Since I had a g3 in Ram, I could attack both your r3 and your b1.\n\n64) Remneb: Build G2 Remneb\n\tRemneb: Ok.I&#39;m putting all info on homeworlds in a word file.That&#39;s why i&#39;m asking when i don&#39;t understand.\n\n65) Laurie_Menke: Build G2 Littledipper\n\tLaurie_Menke: Sounds good!  :o)\n\n66) Remneb: Sacrifice G2 Remneb\nBuild R1 Northstar\nBuild R2 Gumrak\n\n67) Laurie_Menke: Move R3 Laurie_menke Gumrak\n\n68) Remneb: Build G2 Remneb\n\n69) Laurie_Menke: Attack R2 Gumrak\n\tRemneb: Bg2HS =South created a G2 ship in the Remneb system.The left part is how i write down the move in my word file for Homeworlds.(Build green 2 Homeworld South).Yes...i&#39;m using our game to make a sample. \n\tLaurie_Menke: LOL... I don&#39;t know that any game with me should be studied.  I&#39;m not very good at Homeworlds.  But feel free if you&#39;d like.  :o)\n\n70) Remneb: Sacrifice Y2 Sweetpea\nMove R1 Northstar Frisco\nMove R1 Frisco Gumrak\nCatastrophe Gumrak R\n\n71) Laurie_Menke: Move G2 Littledipper Ram\n\n72) Remneb: Move R2 Sweetpea Frisco\n\n73) Laurie_Menke: Move G2 Littledipper Ram\n\n74) Remneb: Move G2 Remneb Frisco\n\n75) Laurie_Menke: Sacrifice Y2 Littledipper\nMove G2 Ram Remneb\nMove G2 Ram Remneb\n\tLaurie_Menke: Ouch!  Didn&#39;t see that coming!\n\n76) Remneb: Attack G2 Remneb\n\tRemneb: Many years ago i red a book called &quot;The war of eternity&quot;...until now,i tough it was science-fiction!\n\n77) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild G1 Remneb\nCatastrophe Remneb Green\n\tLaurie_Menke: LOL!  :o)\n\n78) Remneb: Move Y3 Frisco Remneb\n\n79) Laurie_Menke: Build G1 Laurie_menke\n\n80) Remneb: Move G2 Frisco Remneb\n\n81) Laurie_Menke: Discover G1 Laurie_menke Y1 Orion\n\n82) Remneb: Build Y2 Frisco\n\n83) Laurie_Menke: Build G2 Laurie_menke\n\tRemneb: Clever your last green wipeout.\n\n84) Remneb: Build Y2 Sweetpea\n\n85) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Orion\nBuild G3 Laurie_menke\nBuild G3 Orion\n\tLaurie_Menke: Thanks.  I&#39;m not sure if it got me any closer to winning, but it was fun.  ;o)\n\n86) Remneb: Sacrifice Y2 Sweetpea\nMove G2 Remneb Ram\nMove G2 Ram Orion\nCatastrophe Orion G\n\n87) Laurie_Menke: Discover B1 Ram G2 Bigdipper\n\n88) Remneb: Build Y1 Sweetpea\n\n89) Laurie_Menke: Move G2 Laurie_menke Littledipper\n\n90) Remneb: Sacrifice Y1 Frisco\nMove R3 Northstar Bigdipper\n\n91) Laurie_Menke: Sacrifice B1 Bigdipper\nTrade G2 Y2 Littledipper\n\n92) Remneb: Sacrifice Y1 Sweetpea\nMove R3 Bigdipper Littledipper\n\n93) Laurie_Menke: Move Y2 Littledipper Laurie_menke\n\n94) Remneb: Attack R1 Littledipper\n\n95) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove R3 Ram Sweetpea\nMove R3 Sweetpea Frisco\n\tLaurie_Menke: Almost made a big mistake there...\n\n96) Remneb: Sacrifice Y2 Sweetpea\nMove R2 Frisco Remneb\nMove Y2 Frisco Littledipper\n\n97) Laurie_Menke: Build G1 Laurie_menke\n\n98) Remneb: Discover R2 Remneb Y3 Narva\n\n99) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n100) Remneb: Build Y1 Littledipper\n\n101) Laurie_Menke: Discover Y1 Laurie_menke G1 Green\n\n102) Remneb: Sacrifice Y1 Littledipper\nMove R3 Littledipper Narva\n\n103) Laurie_Menke: Move Y1 Green Frisco\n\n104) Remneb: Move R3 Narva Littledipper\n\n105) Laurie_Menke: Build Y1 Frisco\n\n106) Remneb: Build Y2 Littledipper\n\n107) Laurie_Menke: Build G1 Laurie_menke\n\tRemneb: The Avg. Length of a game is 15 turns and we have reach turn # 50 ! Do that mean we are very good or very slow ?\n\tLaurie_Menke: LOL... I think it means we are both beginners.  :o)\n\n108) Remneb: Trade Y1 G1 Remneb\n\tRemneb: That was my secret idea (beginners) lol.\n\n109) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n110) Remneb: Build Y2 Remneb\n\tLaurie_Menke: :o)\n\n111) Laurie_Menke: Build G1 Laurie_menke\n\n112) Remneb: Sacrifice Y2 Remneb\nMove Y2 Littledipper Laurie_menke\nMove Y2 Littledipper Laurie_menke\nCatastrophe Laurie_menke Y\n\tRemneb: I&#39;ve put our first 20 turns(using my notation system)on the Looney labs fan club and here on SDG(Forum-general-Homeworlds Tactical).We are making History !\n\tLaurie_Menke: LOL... I&#39;m not sure that this is the kind of history I wanted to be making.  ;o)\n\n113) Laurie_Menke: Move R3 Frisco Laurie_menke\n\n114) Remneb: Build G2 Remneb\n\n115) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n116) Remneb: Build Y2 Remneb\n\n117) Laurie_Menke: Build Y2 Laurie_menke\n\n118) Remneb: Move Y2 Remneb Narva\n\n119) Laurie_Menke: Build Y2 Frisco\n\n120) Remneb: Sacrifice Y2 Narva\nMove R2 Narva Littledipper\nMove R2 Littledipper Frisco\n\tLaurie_Menke: ::sigh::\n\n121) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Frisco\nBuild Y3 Laurie_menke\nBuild R1 Laurie_menke\n\tRemneb: build g2 Remneb\n\tRemneb: Wrong window...feel sorry for your yellow submarine...star.\n\n122) Remneb: Build Y3 Remneb\nCatastrophe Frisco Y\n\tLaurie_Menke: LOL... don&#39;t you feel sorry for me.  I can live with just one star.  ;o)\n\n123) Laurie_Menke: Move R3 Laurie_menke Frisco\n\n124) Remneb: Sacrifice G2 Remneb\nBuild R2 Frisco\nBuild R2 Frisco\nCatastrophe Frisco R\n\n125) Laurie_Menke: Trade Y2 G2 Laurie_menke\n\n126) Remneb: Trade Y3 B3 Remneb\n\n127) Laurie_Menke: Discover Y1 Laurie_menke G3 Big\n\n128) Remneb: Build Y1 Remneb\n\n129) Laurie_Menke: Build Y1 Big\n\n130) Remneb: Discover Y1 Remneb Y3 Nadir\n\n131) Laurie_Menke: Build Y2 Big\n\n132) Remneb: Move Y1 Nadir Littledipper\n\n133) Laurie_Menke: Move Y1 Big Remneb\n\tRemneb: Buid-catastrophe-build-catastrophe-in that game i&#39;m like an elephant in a porcelain shop !\n\tLaurie_Menke: Yeah... stop breaking my merchandise, will you?  ;o)  ;o)  ;o)\n\n134) Remneb: Attack Y1 Remneb\n\n135) Laurie_Menke: Move Y1 Big Remneb\n\n136) Remneb: Move Y3 Remneb Big\n\n137) Laurie_Menke: Trade Y1 B1 Remneb\n\n138) Remneb: Attack B1 Remneb\n\n139) Laurie_Menke: Build Y1 Laurie_menke\n\n140) Remneb: Sacrifice B3 Remneb\nTrade Y1 B1 Littledipper\nTrade R1 B1 Littledipper\nTrade R3 B3 Littledipper\n\n141) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y1 Big\nBuild Y2 Big\nCatastrophe Big Yellow\n\n142) Remneb: Trade B3 Y3 Littledipper\n\n143) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n144) Remneb: Discover B1 Remneb Y3 Bugs\n\n145) Laurie_Menke: Move Y3 Laurie_menke Littledipper\n\n146) Remneb: Sacrifice Y3 Littledipper\nMove B1 Bugs Laurie_menke\nMove B1 Littledipper Laurie_menke\nMove B1 Littledipper Laurie_menke\nCatastrophe Laurie_menke B\n\n\tRemneb: Ouf! That was i&#39;m sure the longuest Homeworlds game ever ! I&#39;m not so happy to win after all.It was a better pleasure just to play with you.I learn a lot from you (with some bad surprise in the course of the game). I must tell you that it was quite difficult for me just to learn the basic of the rules ! I think i have a brain for games with rounded units (like cannon,go,chekkers,chess).I have the same difficulties to be good at pikemen cause the units are triangles or squares.I don&#39;t understand why ?Thanks for the game and have a good day.\n\tRemneb: I&#39;m going to put the entire game on SDG forum (General-Homeworlds tactical) in 2 world files,one with my special notation and the other one with both SDG notation and mine.\n\tRemneb: world files = word files\n\tLaurie_Menke: It was a pleasure playing with you, too, Remneb!  And I think we learned a lot from each other.  :o)  That&#39;s funny about the games with rounded units.  I, too, seem to be better at some games than others and don&#39;t know why.  :o)  Feel free to post this game if you&#39;d like, but I don&#39;t think it will be educational to anyone but us.  ;o)\n\nHomeworlds Online (SDG# 18608)\nStarted: 2010.12.30, Ended: 2011.1.26\nParticipants: lorgar (S), mathochist (N)\nWinner: lorgar\n\n\nHomeworlds Online (SDG# 18622)\nStarted: 2010.12.30, Ended: 2011.1.3\nParticipants: ajo (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\tajo: homeworld r3 b2 g3\n\tajo: build g1 ajo\n\n2) ajo: Homeworld B2 R1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tajo: Ah, now I see which box to type in. :)  This&#39;ll be my first game on SDG, although not my first of Homeworlds.  Good luck to you too!\n\n4) ajo: Build G1 Ajo\n\tts52: Welcome to SDG. It&#39;s a great interface for playing homeworlds.\n\n5) ts52: T G1 R1 Ts52\n\n6) ajo: Build G1 Ajo\n\n7) ts52: Build R1 Ts52\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) ts52: Build R2 Ts52\n\n10) ajo: Build Y1 Ajo\n\n11) ts52: Discover R2 Ts52 G1 Robin\n\n12) ajo: Discover Y1 Ajo B3 Alpha\n\n13) ts52: B R2 Ts52\n\n14) ajo: Move G1 Ajo Alpha\n\n15) ts52: T R2 Y2 Ts52\n\n16) ajo: Build G1 Ajo\n\n17) ts52: Move Y2 Ts52 Robin\n\n18) ajo: Build G2 Ajo\n\n19) ts52: B R2 Robin\n\n20) ajo: Build G2 Alpha\n\n21) ts52: M R2 Robin Alpha\n\n22) ajo: Sacrifice Y1 Alpha\nDiscover G2 Alpha B1 Beta\n\n23) ts52: Attack G1 Alpha\n\tajo: FYI, I&#39;ll keep moving until about 8:45pm (it being 8:15pm now). After that, happy New Year, see you on Sunday. :)\n\n24) ajo: Sacrifice G2 Ajo\nBuild G2 Beta\nBuild Y1 Ajo\n\tts52: Happy New Year!\n\n25) ts52: Build R2 Alpha\n\n26) ajo: Discover Y1 Ajo R3 Gamma\n\n27) ts52: Build R3 Robin\n\tajo: Happy New Year!\n\n28) ajo: Trade G2 Y2 Beta\n\n29) ts52: Build R3 Alpha\n\n30) ajo: Build G2 Beta\n\n31) ts52: T R2 Y2 Alpha\n\n32) ajo: Trade G2 R2 Beta\n\n33) ts52: M R3 Alpha Beta\n\n34) ajo: Sacrifice G3 Ajo\nBuild Y1 Beta\nBuild Y3 Gamma\nBuild Y3 Ajo\n\n35) ts52: A R2 Beta\n\tajo: This doesn&#39;t seem to be going so well for me so far...\n\n36) ajo: Sacrifice Y3 Gamma\nDiscover Y1 Gamma B1 Delta\nMove Y1 Beta Ts52\nMove Y2 Beta Ts52\n\n37) ts52: Build Y3 Alpha\n\n38) ajo: Sacrifice G2 Beta\nBuild G2 Ajo\nPass\n\tts52: It&#39;s not over yet.\n\n39) ts52: Build R3 Ts52\n\n40) ajo: Trade G1 B1 Ajo\n\n41) ts52: Move R1 Ts52 Delta\n\n42) ajo: Move Y1 Delta Ts52\nCatastrophe Ts52 Yellow\n\tajo: You made me do it...\n\n43) ts52: Trade R3 Y3 Ts52\n\tts52: I did. I couldn&#39;t live with it hanging over my head any more.\n\n44) ajo: Trade Y3 R3 Ajo\n\n45) ts52: Sacrifice Y3 Alpha\nMove R2 Alpha Ajo\nMove R1 Delta Alpha\nMove R1 Alpha Ajo\nCatastrophe Ajo Red\n\n46) ajo: Trade B1 R1 Ajo\n\tajo: I think that&#39;s pretty close to game...\n\n47) ts52: Move R3 Robin Ajo\n\n48) ajo: Sacrifice G2 Ajo\nBuild R1 Ajo\nBuild R2 Ajo\nCatastrophe Ajo Red\n\tts52: yeah, I think that&#39;s about it\n\n49) ts52: Move R2 Robin Ajo\n\n50) ajo: Pass\n\tajo: Good game!\n\n51) ts52: Attack Y1 Ajo\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 18745)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.1, Ended: 2011.1.3\nParticipants: baxy (S), ajo (N)\nWinner: baxy\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) baxy: Homeworld G3 Y1 B3\n\n3) ajo: Build G1 Ajo\n\n4) baxy: Build B1 Baxy\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) baxy: Discover B1 Baxy Y2 Gwar\n\n7) ajo: Build G1 Ajo\n\n8) baxy: Build B1 Baxy\n\n9) ajo: Build G1 Alpha\n\n10) baxy: Trade B3 G3 Baxy\n\n11) ajo: Trade G1 Y1 Alpha\n\n12) baxy: Sacrifice G3 Baxy\nBuild B2 Gwar\nBuild B2 Gwar\nBuild B3 Baxy\n\n13) ajo: Sacrifice G3 Ajo\nBuild G1 Alpha\nBuild G2 Alpha\nBuild G2 Ajo\n\n14) baxy: Trade B3 G3 Baxy\n\n15) ajo: Trade G1 R1 Alpha\n\n16) baxy: Discover B1 Gwar Y1 Tool\n\n17) ajo: Move G2 Alpha Gwar\n\n18) baxy: Sacrifice G3 Baxy\nBuild B3 Baxy\nBuild B3 Tool\nBuild B3 Gwar\n\n19) ajo: Build Y2 Alpha\n\n20) baxy: Sacrifice B2 Gwar\nTrade B1 R1 Tool\nTrade B3 G3 Baxy\n\n21) ajo: Sacrifice Y2 Alpha\nMove G2 Gwar Baxy\nDiscover G1 Alpha Y2 Gamma\n\n22) baxy: Sacrifice G3 Baxy\nBuild B1 Gwar\nBuild B2 Tool\nBuild B3 Baxy\n\n23) ajo: Sacrifice R1 Alpha\nAttack B1S Baxy\n\n24) baxy: Move B3 Tool Ajo\n\tajo: That last move of mine may have been a mistake... oh well, let&#39;s see.\n\n25) ajo: Trade Y1 R1 Alpha\n\n26) baxy: Sacrifice R1 Tool\nAttack G2N Ajo\n\n27) ajo: Move B1 Baxy Gwar\nCatastrophe Gwar Blue\n\n28) baxy: Trade B3 R3 Ajo\n\n29) ajo: Pass\n\tajo: Good game!\n\n30) baxy: Attack G1N Ajo\n\tbaxy: good game mon :)\n\n\nHomeworlds Online (SDG# 18728)\nStarted: 2011.1.3, Ended: 2011.1.13\nParticipants: ajo (S), Laurie_Menke (N)\nWinner: ajo\n\n1) Laurie_Menke: Homeworld B2 Y1 G3\n\tLaurie_Menke: Welcome to SDG, Ajo!  Have fun, and feel free to ask if you have questions!  :o)\n\n2) ajo: Homeworld B1 Y3 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) ajo: Build G1 Ajo\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) ajo: Build G1 Ajo\n\n7) Laurie_Menke: Discover Y1 Laurie_menke G3 Green\n\n8) ajo: Discover G1 Ajo B2 Alpha\n\n9) Laurie_Menke: Build Y1 Green\n\n10) ajo: Build G1 Ajo\n\n11) Laurie_Menke: Build Y2 Green\n\n12) ajo: Build G2 Alpha\n\n13) Laurie_Menke: Move Y2 Green Alpha\n\n14) ajo: Trade G2 R2 Alpha\n\n15) Laurie_Menke: Move Y2 Alpha Ajo\n\n16) ajo: Trade G1 R1 Ajo\n\n17) Laurie_Menke: Move Y1 Green Laurie_menke\n\n18) ajo: Attack Y2N Ajo\n\n19) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: Oops!  I misremembered the rules.  I was thinking your red ship had to be as big as mine, but it&#39;s ANY ship in the system.  ::sigh::\n\n20) ajo: Move Y2 Ajo Alpha\n\tajo: I was wondering about those past few moves!\n\n21) Laurie_Menke: Discover Y2 Laurie_menke R3 Red\n\tLaurie_Menke: ::sigh::\n\n22) ajo: Move Y2 Alpha Green\n\n23) Laurie_Menke: Discover Y1 Green R2 Pink\n\n24) ajo: Build Y2 Green\n\tajo: I&#39;m wondering about the &quot;move yellow ships to red stars&quot; strategy, too... Guess I&#39;ll find out how it works in a moment.\n\n25) Laurie_Menke: Build Y3 Laurie_menke\n\tLaurie_Menke: LOL... Probably just the stupidity of a not-so-great Homeworlds player.  I&#39;m just trying to monopolize reds so you can&#39;t use them against me.  ;o)\n\n26) ajo: Move Y2 Green Laurie_menke\nCatastrophe Laurie_menke Yellow\n\n27) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tajo: I think you&#39;ve got about two turns left at this point. Getting a monopoly on red would only really have worked if I didn&#39;t already have some. ;)\n\tLaurie_Menke: Ouch!  I&#39;m playing this game even more poorly than usual.  :o(  Sorry to be so little challenge to you.  But let&#39;s see what kind of mischief I can get into while I can.  ;o)\n\n28) ajo: Build G1 Alpha\n\n29) Laurie_Menke: Discover Y1 Pink G3 Forest\n\n30) ajo: Trade G1 B1 Ajo\n\n31) Laurie_Menke: Build Y1 Forest\n\n32) ajo: Build B1 Ajo\n\n33) Laurie_Menke: Discover Y1 Forest B2 Blue\n\n34) ajo: Sacrifice Y2 Green\nMove B1 Ajo Laurie_menke\nMove B1 Ajo Laurie_menke\n\tajo: Trying to belatedly monopolize blue now? :)\n\n35) Laurie_Menke: Attack B1 Laurie_menke\n\tajo: Checkmate. Good game. :)\n\tLaurie_Menke: Naw, just trying to build up a fleet again without risking catastrophe.  And I am absolutely sure that you&#39;ve won, but I don&#39;t see it quite yet.  I figure you&#39;re trying to cause a catastrophe in blue, but you&#39;re not quite there yet.  So I will congratulate you on the inevitable win, but could we play it out so I can see what your plan is?\n\tLaurie_Menke: Oh... wait... just saw it.  You&#39;ll sacrifice your g3 and build more blue.  Got it.  Well, thanks for a great game!  Congratulations!  :o)\n\n36) ajo: Sacrifice G1 Alpha\nBuild B3 Laurie_menke\nCatastrophe Laurie_menke Blue\n\n\nHomeworlds Online (SDG# 31741)\nVariants: &quot;Unrated&quot;\nStarted: 2017.4.13, Ended: 2017.4.22\nParticipants: wil (S), panglott (N)\nWinner: wil\n\n1) panglott: Homeworld G3 B2 R3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: I like the wild openings\n\n3) panglott: Build R1 Panglott\n\n4) wil: B G1 Wil\n\n5) panglott: Trade R1 Y1 Panglott\n\n6) wil: T G1 B1 Wil\n\n7) panglott: Build R1 Panglott\n\n8) wil: B B1 Wil\n\n9) panglott: Build Y1 Panglott\n\n10) wil: D B1 Wil G2 G2\n\n11) panglott: Build Y1 Panglott\n\n12) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\n\n13) panglott: Discover Y1 Panglott R1 Pleidy\n\n14) wil: T B2 R2 G2\n\n15) panglott: Build Y2 Panglott\n\n16) wil: T B2 Y2 G2\n\n17) panglott: Move Y2 Panglott Pleidy\n\n18) wil: B B2 G2\n\n19) panglott: Build Y2 Panglott\n\n20) wil: B Y3 G2\n\n21) panglott: Discover Y1 Pleidy R2 Plaits\n\n22) wil: D Y2 G2 G1 G1\n\n23) panglott: Move Y1 Panglott Pleidy\n\n24) wil: B Y3 G1\n\n25) panglott: Sacrifice Y2 Pleidy\nMove Y1 Panglott Pleidy\nDiscover Y1 Pleidy R2 Whisker\n\n26) wil: B Y2 G2\n\n27) panglott: Move Y1 Pleidy Plaits\n\n28) wil: Trade B3 R3 Wil\n\n29) panglott: Sacrifice Y2 Panglott\nMove Y1 Plaits Wil\nMove Y1 Plaits Wil\n\n30) wil: Attack Y1 Wil\n\n31) panglott: Move Y1 Whisker Wil\nCatastrophe Wil Yellow\n\n32) wil: S Y3 G2\nM R2 G2 Wil\nM R2 Wil Panglott\nM R3 Wil Panglott\nC Panglott R\n\n\nHomeworlds Online (SDG# 31883)\nVariants: &quot;Hard time&quot;\nStarted: 2017.4.13, Ended: 2017.4.28\nParticipants: panglott (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 Y1 G3 *\n\n\twil: two, two, two games at once!\r\n\n\n2) panglott: Homeworld G3 R1 B3\n\n3) wil: B G1 Wil\n\n4) panglott: Build B1 Panglott\n\n5) wil: D G1 Wil B2 B2\n\n6) panglott: Trade B1 Y1 Panglott\n\n7) wil: T G1 Y1 B2\n\n8) panglott: Build Y2 Panglott\n\n9) wil: B G1 Wil\n\n10) panglott: Move Y1 Panglott B2\n\n11) wil: T Y1 R1 B2\n\twil: Omg!!  We have a short universe!!!\n\n12) panglott: Discover Y1 B2 G1 Centaury\n\n13) wil: M G1 Wil B2\n\n14) panglott: Build Y1 Panglott\n\n15) wil: B R1 B2\n\n16) panglott: Trade Y2 R2 Panglott\n\n17) wil: B G1 Wil\n\n18) panglott: Move R2 Panglott B2\n\n19) wil: B R2 B2\nC B2 R\n\n20) panglott: Build B1 Panglott\n\n21) wil: B G2 B2\n\n22) panglott: Build Y2 Panglott\n\n23) wil: T G2 Y2 B2\n\n24) panglott: Trade Y2 R2 Panglott\n\n25) wil: Trade G1 R1 B2\n\n26) panglott: Build Y2 Panglott\n\n27) wil: Build G1 Wil\n\n28) panglott: Build Y2 Centaury\n\n29) wil: S G1 Wil\nB Y3 B2\n\n30) panglott: Build B1 Panglott\n\n31) wil: D Y2 B2 G1 G1\n\n32) panglott: Discover B3 Panglott R2 Deneb\n\n33) wil: B Y3 G1\n\n34) panglott: Build Y3 Panglott\n\n35) wil: S Y2 G1\nM Y3 G1 B2\nM Y3 B2 Panglott\nC Panglott Y\n\n36) panglott: Build B1 Panglott\n\n37) wil: M Y3 B2 Panglott\n\n38) panglott: Trade B1 Y1 Panglott\n\n39) wil: Attack R2 Panglott\n\n40) panglott: Move Y1 Panglott Deneb\n\n41) wil: S R2 Panglott\nA B1 Panglott\nA B1 Panglott\n\twil: 1 cardinal rule is keeping a big gun at home...I&#39;ll admit I have broken it before...sometimes successful, sometimes to my detriment.\n\tpanglott: Right, because you can use my own red planet against me. Good grief ;)\n\n\nHomeworlds Online (SDG# 18811)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.5, Ended: 2011.1.7\nParticipants: TwoShort (S), goulo (N)\nWinner: TwoShort\n\n1) goulo: Homeworld G3 B2 Y3\n\tTwoShort: Howdy\n\n2) TwoShort: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\n4) TwoShort: Build G1 Twoshort\n\n5) goulo: Build Y1 Goulo\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) goulo: Trade Y1 G1 Goulo\n\n8) TwoShort: Build G1 Twoshort\n\n9) goulo: Trade Y1 R1 Goulo\n\n10) TwoShort: Build G1 Twoshort\n\n11) goulo: Sacrifice Y3 Goulo\nDiscover G1 Goulo Y1 Citroneto\nDiscover G1 Citroneto R3 Rubenego\nMove G1 Rubenego Twoshort\nCatastrophe Twoshort G\n\n12) TwoShort: Trade Y1 G1 Twoshort\n\n13) goulo: Build R1 Goulo\n\n14) TwoShort: Build G1 Twoshort\n\n15) goulo: Build R2 Goulo\n\n16) TwoShort: Build G1 Twoshort\n\n17) goulo: Trade R2 G2 Goulo\n\n18) TwoShort: Trade G1 Y1 Twoshort\n\n19) goulo: Build R2 Goulo\n\n20) TwoShort: Build G1 Twoshort\n\n21) goulo: Trade R2 Y2 Goulo\n\n22) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n23) goulo: Discover G2 Goulo Y1 Citroneto\n\n24) TwoShort: Build G2 Bluestar\n\n25) goulo: Build R2 Goulo\n\n26) TwoShort: Trade G2 R2 Bluestar\n\n27) goulo: Move R1 Goulo Citroneto\n\n28) TwoShort: Build G2 Bluestar\n\n29) goulo: Trade R1 B1 Goulo\n\n30) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n31) goulo: Move B1 Goulo Citroneto\n\n32) TwoShort: Build Y1 Twoshort\n\n33) goulo: Move G2 Citroneto Yolonda\n\n34) TwoShort: Sacrifice G2 Bluestar\nBuild G2 Twoshort\nBuild G2 Yolonda\n\n35) goulo: Move G2 Yolonda Citroneto\n\n36) TwoShort: Move G2 Yolonda Citroneto\n\n37) goulo: Attack G2 Citroneto\n\n38) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n39) goulo: Discover G2 Citroneto G3 Smeraldego\n\n40) TwoShort: Move Y1 Twoshort Bluestar\n\n41) goulo: Build Y2 Goulo\n\n42) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\nBuild G3 Bluestar\n\n43) goulo: Discover G2 Citroneto Y3 Citronego\n\n44) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Bluestar Citroneto\nMove G3 Citroneto Goulo\n\n45) goulo: Move G2 Citronego Citroneto\n\n46) TwoShort: Trade Y3 R3 Twoshort\n\n47) goulo: Build Y2 Goulo\n\n48) TwoShort: Sacrifice R2 Bluestar\nAttack R2 Goulo\nAttack Y2 Goulo\n\n\tgoulo: Thanks for the game. Man, I see why your rating is so high and you&#39;re at the top of the ladder! :)\n\tgoulo: I noticed you do some tactics that I&#39;d never thought of before. Hopefully my brain will absorb the lessons... :)\n\tTwoShort: Thanks for an interesting game!   I was pretty worried after that early catastrophe when things looked a lot worse than I had thought they would :)  \n\tgoulo: Yes, I audaciously thought I had a good chance then, since I could start producing again before you, but then step by step you whittled away my advantage, and did the clever tricks that let you build 3-ships while I couldn&#39;t. It was like watching a magician at work. :)\n\nHomeworlds Online (SDG# 18674)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.6, Ended: 2011.1.24\nParticipants: Aristos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 Y2 G3 *\n\n2) Aristos: Homeworld Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Aristos: Build G1 Aristos\n\n5) SilentTitan: Discover G1 Silenttitan B1 Samsung\n\n6) Aristos: Discover G1 Aristos Y2 Doorstep\n\n7) SilentTitan: Trade G1 B1 Samsung\n\n8) Aristos: Build G1 Aristos\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) Aristos: Discover G1 Doorstep Y1 Windingroad\n\n11) SilentTitan: Move G1 Silenttitan Samsung\n\n12) Aristos: Build G2 Windingroad\n\n13) SilentTitan: Build B2 Samsung\n\n14) Aristos: Trade G3 Y3 Aristos\n\n15) SilentTitan: Trade B2 Y2 Samsung\n\n16) Aristos: Build G2 Aristos\n\n17) SilentTitan: Build B2 Samsung\n\n18) Aristos: Trade G2 B2 Aristos\n\tAristos: Almost made a really dumb mistake. \n\tAristos: Or, rather, technically, I did make a really dumb mistake, but I saw it fast enough to undo. :-)\n\n19) SilentTitan: Discover B2 Samsung B2 Acer\n\n20) Aristos: Build G2 Aristos\n\n21) SilentTitan: Build B3 Samsung\n\n22) Aristos: Sacrifice Y3 Aristos\nMove B2 Aristos Acer\nMove B2 Acer Samsung\nDiscover G1 Aristos Y2 Waystation\nCatastrophe Samsung Blue\n\n23) SilentTitan: Build G1 Silenttitan\n\n24) Aristos: Build G2 Aristos\n\n25) SilentTitan: Move G1 Silenttitan Windingroad\n\n26) Aristos: Build G3 Aristos\n\n27) SilentTitan: Build G3 Windingroad\nCatastrophe Windingroad Green\n\tAristos: This time I just clicked on Undo by mistake. \n\n28) Aristos: Discover G1 Waystation Y1 Vantagepoint\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) Aristos: Trade G3 Y3 Aristos\n\n31) SilentTitan: Discover G1 Silenttitan B1 Temp\n\n32) Aristos: Sacrifice G2 Aristos\nBuild G1 Vantagepoint\nBuild G2 Vantagepoint\n\tSilentTitan: Wow. I cannot believe how hard it is to play from red/yellow homeworld.  no blue is tough.\n\n33) SilentTitan: Sacrifice B2 Acer\nTrade G3 B3 Silenttitan\nPass\n\n34) Aristos: Build G2 Aristos\n\n35) SilentTitan: Build G3 Temp\n\tAristos: Many players consider the game unwinnable (assuming the opponent has even moderate skill) unless both blue and green are included in your starting position (either in the ship or in the stars).\n\n36) Aristos: Build G3 Aristos\n\tSilentTitan: well yeah... I sorta knew that ... but let&#39;s say I&#39;ve really come to have a better understanding now that I&#39;ve tried it.\r\n\n\n37) SilentTitan: Trade G3 Y3 Temp\n\tAristos: Darn. You changed colors. Now I have to figure out how to attack you. I could see it was a good move to force you to sacrifice, but I&#39;m hard pressed to figure out what to do next. \n\n38) Aristos: Trade G3 R3 Aristos\n\n39) SilentTitan: Build G3 Temp\n\n40) Aristos: Discover Y3 Aristos B2 Thirdattempt\n\n41) SilentTitan: Trade G3 R3 Temp\n\n42) Aristos: Build R1 Aristos\n\n43) SilentTitan: Build G3 Temp\n\tSilentTitan: I had wondered when you were going to get to Red\n\n44) Aristos: Trade R3 B3 Aristos\n\tAristos: I actually wanted blue, but you created this nasty threat by going yellow. Have to have a defense there. *sigh*\n\n45) SilentTitan: Sacrifice G3 Temp\nBuild B1 Silenttitan\nBuild Y1 Temp\nBuild G3 Temp\n\n46) Aristos: Sacrifice G2 Aristos\nBuild G2 Aristos\nBuild Y1 Thirdattempt\n\n47) SilentTitan: Move Y3 Temp Thirdattempt\n\n48) Aristos: Discover Y1 Thirdattempt R1 Runningscared\n\n49) SilentTitan: Sacrifice G3 Temp\nBuild Y2 Temp\nBuild Y2 Thirdattempt\nBuild G3 Temp\n\n50) Aristos: Sacrifice Y3 Thirdattempt\nMove G1 Vantagepoint Thirdattempt\nMove G1 Thirdattempt Temp\nMove G1 Vantagepoint Thirdattempt\n\n51) SilentTitan: Sacrifice G1 Temp\nBuild Y3 Temp\n\n52) Aristos: Build G1 Temp\n\n53) SilentTitan: Sacrifice Y3 Temp\nMove Y3 Thirdattempt Aristos\nMove G3 Temp Thirdattempt\nMove G3 Thirdattempt Aristos\n\n\tAristos: Well played.\r\n\n\tSilentTitan: Thank you... It was a tough game\n\nHomeworlds Online (SDG# 18825)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.8, Ended: 2011.1.19\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld B3 G1 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) TwoShort: Build G1 Twoshort\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) TwoShort: Build G2 Twoshort\n\n7) AdamBadura: Build G2 Adambadura\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) AdamBadura: Trade G1 R1 Adambadura\n\n10) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n11) AdamBadura: Discover G2 Adambadura Y2 Alphacentauri\n\n12) TwoShort: Build G1 Twoshort\n\n13) AdamBadura: Build R1 Adambadura\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n15) AdamBadura: Build G3 Alphacentauri\n\tAdamBadura: You are way beyond my level... But lets see how you will destroy me... ;)\n\n16) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Bluonia Alphacentauri\nMove G2 Bluonia Alphacentauri\nCatastrophe Alphacentauri Green\n\tTwoShort: I think I am only slightly beyond your level.. so I&#39;ll show you how I&#39;ll achieve a very minor, and possibly debatable, advantage relative to last turn.  Which, if I can do similar things a few more times, and nothing more dramatic happens, is how I&#39;ll destroy you :)\n\n17) AdamBadura: Trade R1 G1 Adambadura\n\tAdamBadura: I expected you will do this. However I couldn&#39;t think of any other way of preventing you from having more G3 ships and I also wanted to see how it will turn out.\n\n18) TwoShort: Trade G2 Y2 Twoshort\n\n19) AdamBadura: Build G2 Adambadura\n\n20) TwoShort: Build G2 Twoshort\n\n21) AdamBadura: Sacrifice Y3 Adambadura\nDiscover G1 Adambadura Y2 Ontheway\nDiscover G1 Ontheway Y3 Stillontheway\nMove G1 Stillontheway Twoshort\nCatastrophe Twoshort G\n\n22) TwoShort: Trade Y2 G2 Twoshort\n\tTwoShort: Ack!\n\n23) AdamBadura: Build R1 Adambadura\n\n24) TwoShort: Build G1 Twoshort\n\n25) AdamBadura: Build R2 Adambadura\n\n26) TwoShort: Trade G2 R2 Twoshort\n\n27) AdamBadura: Trade R1 Y1 Adambadura\n\n28) TwoShort: Build G1 Twoshort\n\n29) AdamBadura: Build G2 Adambadura\n\n30) TwoShort: Build G2 Twoshort\n\n31) AdamBadura: Discover G2 Adambadura Y2 Newworld\n\n32) TwoShort: Trade G1 Y1 Twoshort\n\n33) AdamBadura: Move R1 Adambadura Newworld\n\n34) TwoShort: Discover R2 Twoshort G3 Grogar\n\n35) AdamBadura: Build G1 Newworld\n\n36) TwoShort: Build G3 Twoshort\n\n37) AdamBadura: Build G3 Adambadura\n\n38) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n39) AdamBadura: Discover G2 Adambadura B2 Mutators\n\n40) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n41) AdamBadura: Sacrifice G3 Adambadura\nBuild G3 Mutators\nBuild Y2 Adambadura\nBuild Y3 Adambadura\n\n42) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n43) AdamBadura: Sacrifice Y1 Adambadura\nMove G2 Mutators Bluonia\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Bluonia\nBuild G3 Twoshort\n\n45) AdamBadura: Move R1 Newworld Bluonia\n\tAdamBadura: Wired... I don&#39;t know what I should do now. No plan. No nothing...\n\tTwoShort: It&#39;s definitely a complicated position.  I&#39;m trying to avoid deciding if I can see a good move for you, since I wouldn&#39;t want to tell you if I did :)\n\n46) TwoShort: Sacrifice R2 Grogar\nAttack G2 Bluonia\nAttack R1 Bluonia\n\n47) AdamBadura: Sacrifice G2 Newworld\nBuild G2 Mutators\nBuild G3 Newworld\n\tAdamBadura: I wondered if you will do it and give my G3 ship. Well... Now I know... ;)\n\tAdamBadura: On the other hand it is not that much giving... :)\r\n\r\nSorry for long moves recently but I try to play it well and since you are on the 1 place in the Ladder I&#39;m not blocking you from climbing up anyway...\n\tTwoShort: Don&#39;t worry about taking your time, it&#39;s no problem.\r\n\r\nAnd, yeah, I&#39;m happy to give you the G3 I just didn&#39;t plan to let you keep it :)\r\n\n\n48) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Bluonia\nBuild Y3 Bluonia\n\n49) AdamBadura: Move Y2 Adambadura Mutators\n\n50) TwoShort: Move Y3 Bluonia Mutators\n\n51) AdamBadura: Sacrifice R2 Adambadura\nAttack Y3 Mutators\nPass\n\n52) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluonia Mutators\nMove Y3 Mutators Adambadura\n\n\tAdamBadura: Nice one. You are too strong (or maybe two strong... ;))\n\nHomeworlds Online (SDG# 18837)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.9, Ended: 2011.2.11\nParticipants: goulo (S), dlwillson (N)\nWinner: goulo\n\n1) dlwillson: H B3 Y1 G3\n\n2) goulo: Homeworld B1 G2 Y3\n\tgoulo: hi, have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) goulo: Build Y1 Goulo\n\tdlwillson: You too!\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) goulo: Discover Y1 Goulo G3 Smeraldego\n\n7) dlwillson: B Y2 Dlwillson\n\n8) goulo: Build Y2 Goulo\n\n9) dlwillson: D Y1 Dlwillson G2 Leaf\n\n10) goulo: Trade Y3 G3 Goulo\n\n11) dlwillson: B G1 Dlwillson\n\n12) goulo: Build G1 Goulo\n\n13) dlwillson: T G3 R3 Dlwillson\n\n14) goulo: Trade G1 R1 Goulo\n\n15) dlwillson: B G1 Dlwillson\n\n16) goulo: Build R1 Goulo\n\n17) dlwillson: D G1 Dlwillson B2 Cat\n\n18) goulo: Move R1 Goulo Smeraldego\n\n19) dlwillson: B G1 Cat\n\n20) goulo: Build Y2 Goulo\n\n21) dlwillson: Build Y3 Leaf\n\n22) goulo: Build Y3 Smeraldego\n\n23) dlwillson: D Y2 Dlwillson G2 Snake\n\n24) goulo: Move Y3 Smeraldego Cat\n\n25) dlwillson: B Y3 Snake\n\n26) goulo: Build R1 Smeraldego\n\n27) dlwillson: Build G3 Dlwillson\n\n28) goulo: Move R1 Smeraldego Cat\n\n29) dlwillson: Sacrifice Y2 Snake\nMove R3 Dlwillson Snake\nMove R3 Snake Smeraldego\n\n30) goulo: Sacrifice Y1 Smeraldego\nMove R1 Smeraldego Cat\n\n31) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild R2 Smeraldego\nBuild Y1 Snake\n\n32) goulo: Attack G1 Cat\n\n33) dlwillson: Sacrifice Y3 Snake\nMove Y1 Snake Smeraldego\nDiscover Y1 Leaf B3 Juniper\nMove R2 Smeraldego Leaf\n\n34) goulo: Attack G1 Cat\n\n35) dlwillson: Discover G1 Dlwillson B2 Grape\n\n36) goulo: Build G2 Cat\n\n37) dlwillson: M R2 Leaf Dlwillson\n\n38) goulo: Move G2 Cat Dlwillson\n\n39) dlwillson: Attack G2 Dlwillson\n\n40) goulo: Sacrifice Y2 Goulo\nMove G1 Cat Dlwillson\nMove G1 Cat Dlwillson\nCatastrophe Dlwillson G\n\n41) dlwillson: Move Y3 Leaf Dlwillson\n\n42) goulo: Trade R1 G1 Cat\n\n43) dlwillson: Trade Y3 G3 Dlwillson\n\n44) goulo: Build Y2 Cat\n\n45) dlwillson: Build G1 Dlwillson\n\n46) goulo: Build G2 Cat\n\n47) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Grape\nBuild Y2 Juniper\nBuild G3 Dlwillson\n\n48) goulo: Sacrifice Y2 Cat\nMove G1 Cat Dlwillson\nMove G2 Cat Dlwillson\nCatastrophe Dlwillson G\n\n49) dlwillson: Sacrifice Y2 Juniper\nMove R3 Smeraldego Cat\nMove R3 Cat Dlwillson\n\n50) goulo: Build G1 Goulo\n\n51) dlwillson: Trade R3 G3 Dlwillson\n\n52) goulo: Move G1 Goulo Juniper\n\n\tgoulo: !\r\nThanks for the game.\n\nHomeworlds Online (SDG# 18727)\nStarted: 2011.1.10, Ended: 2011.1.24\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld Y1 G2 B3\n\tlorgar: My dreaded foe, we meet again ;)\n\n2) ts52: H B1 Y3 G3\n\tts52: Well met and have a good game.\n\n3) lorgar: Build B1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade B1 G1 Lorgar\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) lorgar: Build B1 Lorgar\n\n8) ts52: Build Y1 Ts52\n\n9) lorgar: Trade B1 G1 Lorgar\n\n10) ts52: Discover Y1 Ts52 G2 Robin\n\n11) lorgar: Discover G1 Lorgar B3 Blacklagoon\n\n12) ts52: Discover Y1 Ts52 G2 Kermit\n\n13) lorgar: Build B1 Lorgar\n\n14) ts52: B Y2 Robin\n\n15) lorgar: Build B1 Lorgar\n\n16) ts52: Build Y2 Kermit\n\n17) lorgar: Trade B1 R1 Lorgar\n\n18) ts52: M Y2 Robin Blacklagoon\n\n19) lorgar: Build B1 Lorgar\n\n20) ts52: Trade Y2 R2 Blacklagoon\n\n21) lorgar: Trade B1 R1 Lorgar\n\n22) ts52: Attack G1 Blacklagoon\n\n23) lorgar: Trade B3 Y3 Lorgar\n\n24) ts52: Build G1 Ts52\n\n25) lorgar: Build Y2 Lorgar\n\n26) ts52: Sacrifice Y2 Kermit\nMove Y1 Robin Blacklagoon\nMove Y1 Blacklagoon Lorgar\nCatastrophe Lorgar Yellow\n\n27) lorgar: Build R1 Lorgar\n\n28) ts52: Build G2 Blacklagoon\n\n29) lorgar: Trade G1 B1 Lorgar\n\tlorgar: sod it, you got me ^^\n\n30) ts52: Sacrifice G3 Ts52\nBuild G1 Blacklagoon\nBuild G3 Ts52\nBuild G3 Ts52\n\n31) lorgar: Build B2 Lorgar\n\n32) ts52: Trade G3 Y3 Ts52\n\n33) lorgar: Trade B1 Y1 Lorgar\n\n34) ts52: Sacrifice Y3 Ts52\nMove G2 Blacklagoon Lorgar\nMove G1 Blacklagoon Lorgar\nMove G1 Blacklagoon Lorgar\nCatastrophe Lorgar Green\n\n\tts52: Thanks for the game\n\tlorgar: you are welcome. see you next time\n\nHomeworlds Online (SDG# 18824)\nStarted: 2011.1.11, Ended: 2011.1.11\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n\nHomeworlds Online (SDG# 18848)\nStarted: 2011.1.11, Ended: 2011.1.28\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld G1 Y2 B3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) lorgar: Build B1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Trade B1 G1 Lorgar\n\n6) TwoShort: Build G2 Twoshort\n\n7) lorgar: Build G2 Lorgar\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) lorgar: Discover G2 Lorgar G3 Catch22\n\n10) TwoShort: Build G2 Twoshort\n\n11) lorgar: Build G2 Lorgar\n\n12) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n13) lorgar: Trade G2 R2 Lorgar\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) lorgar: Build R1 Lorgar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n17) lorgar: Discover G1 Lorgar Y3 Bluedanube\n\n18) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort B2 Bluonia\nMove G2 Twoshort Bluonia\n\n19) lorgar: Move G1 Bluedanube Yolonda\n\n20) TwoShort: Discover G1 Yolonda Y3 Yellonia\n\n21) lorgar: Move R2 Lorgar Yellonia\n\n22) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Bluonia\nBuild Y2 Twoshort\nBuild G3 Bluonia\n\n23) lorgar: Attack G1S Yellonia\n\n24) TwoShort: Sacrifice G3 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\nBuild G3 Bluonia\n\n25) lorgar: Sacrifice G2 Catch22\nBuild G2 Yellonia\nBuild G3 Yolonda\n\n26) TwoShort: Sacrifice Y2 Twoshort\nDiscover G3 Bluonia R3 Rover\nMove Y1 Bluonia Rover\n\n27) lorgar: Build B1 Lorgar\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Rover\nBuild G2 Rover\n\n29) lorgar: Sacrifice B1 Lorgar\nTrade G1 R1 Yolonda\n\n30) TwoShort: Sacrifice Y3 Bluonia\nMove G3 Rover Lorgar\nMove G2 Rover Lorgar\nDiscover G2 Bluonia Y3 Yackityyack\n\n31) lorgar: Move G3 Yolonda Rover\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Rover Lorgar\nMove Y2 Rover Lorgar\nMove G2 Yackityyack Lorgar\nCatastrophe Lorgar Green\n\n33) lorgar: Move B3 Lorgar Twoshort\n\tlorgar: nice. rh\n\tlorgar: nice. rh\n\n34) TwoShort: Move Y1 Twoshort Lorgar\nCatastrophe Lorgar Yellow\n\n\nHomeworlds Online (SDG# 18850)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.11, Ended: 2011.2.23\nParticipants: mneme (S), Danner (N)\nWinner: mneme\n\n1) Danner: Pass\n\tDanner: Howdy! Good luck, have fun!\n\n2) mneme: Homeworld R1 B2 G3\n\n3) Danner: Homeworld Y3 B2 G3\n\n4) mneme: Build G1 Mneme\n\n5) Danner: Build G1 Danner\n\n6) mneme: Trade G1 R1 Mneme\n\n7) Danner: Trade G1 R1 Danner\n\n8) mneme: Build R2 Mneme\n\n9) Danner: Build R2 Danner\n\n10) mneme: Trade R2 Y2 Mneme\n\n11) Danner: Discover R1 Danner Y1 P4c-970\n\n12) mneme: Build R2 Mneme\n\n13) Danner: Sacrifice G3 Danner\nBuild R2 Danner\nBuild R3 P4c-970\nBuild R3 Danner\n\n14) mneme: Discover R2 Mneme G3 Expansion\n\n15) Danner: Trade R2 Y2 Danner\n\n16) mneme: Discover R1 Mneme G3 Pressure\n\n17) Danner: Discover R1 P4c-970 G2 P3x-234\n\n18) mneme: Build Y1 Mneme\n\n19) Danner: Move R3 P4c-970 Expansion\n\n20) mneme: Sacrifice Y1 Mneme\nMove R2 Expansion P3x-234\n\n\tDanner: Uh, sorry, slipped my mind.\n\tmneme: happens.  A shame, it was an interesting game (and you were winning)\n\nHomeworlds Online (SDG# 18853)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.12, Ended: 2011.1.28\nParticipants: baxy (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n2) baxy: Homeworld G3 B2 Y3\n\n3) ajo: Build G1 Ajo\n\n4) baxy: Build Y1 Baxy\n\n5) ajo: Trade G1 R1 Ajo\n\n6) baxy: Trade Y1 R1 Baxy\n\n7) ajo: Build G1 Ajo\n\n8) baxy: Build Y1 Baxy\n\n9) ajo: Build G1 Ajo\n\n10) baxy: Build Y1 Baxy\n\n11) ajo: Discover G1 Ajo B2 Alpha\n\n12) baxy: Trade Y1 B1 Baxy\n\n13) ajo: Build G1 Alpha\n\n14) baxy: Build B1 Baxy\n\tajo: Wow, nice timing; I got back to the computer from watching TCM and there was your move! :)\n\tbaxy: love it when that happens :)  i usually have pretty bad timing.  If you want I will start posting when im by my computer and can exchange a few moves quickly.\n\n15) ajo: Build G2 Alpha\n\n16) baxy: Trade Y3 G3 Baxy\n\n17) ajo: Trade G2 Y2 Alpha\n\n18) baxy: Discover B1 Baxy Y1 Weezer\n\n19) ajo: Build G2 Alpha\n\n20) baxy: Sacrifice G3 Baxy\nBuild B2 Weezer\nBuild B3 Weezer\nBuild B3 Baxy\n\n21) ajo: Build G2 Ajo\n\n\nHomeworlds Online (SDG# 18862)\nStarted: 2011.1.14, Ended: 2011.1.16\nParticipants: ajo (S), Remneb (N)\nWinner: ajo\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) ajo: Homeworld B3 Y1 G3\n\n3) Remneb: Build G1 Remneb\n\n4) ajo: Build G1 Ajo\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) ajo: Discover G1 Ajo B2 Alpha\n\n7) Remneb: Build G1 Remneb\n\n8) ajo: Build G1 Ajo\n\n9) Remneb: Discover G1 Remneb Y3 Shiloh\n\n10) ajo: Build G2 Alpha\n\n11) Remneb: Build G2 Shiloh\n\n12) ajo: Trade G1 R1 Alpha\n\n13) Remneb: Discover G2 Shiloh Y2 Malvern\n\n14) ajo: Build R1 Alpha\n\n15) Remneb: Trade G3 Y3 Remneb\n\n16) ajo: Trade G3 R3 Ajo\n\n17) Remneb: Build G1 Malvern\n\n18) ajo: Build G2 Alpha\n\n19) Remneb: Build G3 Shiloh\n\n20) ajo: Build G3 Ajo\n\n21) Remneb: Discover G1 Malvern G3 Sirius\n\n22) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild R1 Ajo\nBuild R2 Alpha\n\n23) Remneb: Move G3 Shiloh Remneb\n\n24) ajo: Discover G1 Ajo B2 Beta\n\n25) Remneb: Move Y1 Remneb Sirius\n\n26) ajo: Trade R2 Y2 Alpha\n\n27) Remneb: Sacrifice Y3 Remneb\nMove G1 Shiloh Alpha\nMove G1 Sirius Alpha\nMove G2 Malvern Sirius\nCatastrophe Alpha G\n\n28) ajo: Build G1 Beta\n\n29) Remneb: Discover G2 Sirius Y2 Nebo\n\n30) ajo: Sacrifice G1 Beta\nBuild R2 Alpha\n\n31) Remneb: Build G1 Remneb\n\n32) ajo: Trade R2 G2 Alpha\n\n33) Remneb: Trade G3 R3 Remneb\n\n34) ajo: Build G1 Ajo\n\n35) Remneb: Build G2 Remneb\n\n36) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Beta\nBuild R2 Alpha\n\n37) Remneb: Build Y1 Sirius\n\n38) ajo: Discover R1 Alpha B3 Gamma\n\n39) Remneb: Move Y1 Sirius Remneb\n\n40) ajo: Move R1 Alpha Sirius\n\n41) Remneb: Move Y1 Sirius Nebo\n\n42) ajo: Sacrifice Y2 Alpha\nMove R1 Gamma Remneb\nMove R1 Sirius Remneb\nCatastrophe Remneb Red\n\n43) Remneb: Trade G2 R2 Remneb\n\n44) ajo: Trade G3 Y3 Beta\n\n45) Remneb: Build G2 Nebo\n\n46) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild G3 Beta\n\n47) Remneb: Build Y2 Remneb\n\n48) ajo: Sacrifice Y3 Beta\nMove G3 Alpha Remneb\nMove R2 Alpha Remneb\nDiscover G1 Ajo B2 Safehouse\n\n49) Remneb: Attack R2 Remneb\n\n50) ajo: Sacrifice R3 Ajo\nAttack R2N Remneb\nAttack R2N Remneb\nAttack Y2N Remneb\n\n\tajo: Check.\n\tRemneb: Incredible ! It&#39;s a huge invasion.\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 18713)\nStarted: 2011.1.14, Ended: 2011.1.29\nParticipants: Aristos (S), mathochist (N)\nWinner: Aristos\n\n\nHomeworlds Online (SDG# 18870)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.16, Ended: 2011.1.29\nParticipants: Aristos (S), shmil1 (N)\nWinner: Aristos\n\n1) shmil1: Homeworld R1 G1 B3 *\n\n2) Aristos: Homeworld Y1 B2 G3\n\n3) shmil1: Build B1 Shmil1\n\n4) Aristos: Build G1 Aristos\n\n5) shmil1: Build B1 Shmil1\n\n6) Aristos: Discover G1 Aristos Y3 Casualdisregard\n\n7) shmil1: Trade B1 Y1 Shmil1\n\n8) Aristos: Build G1 Casualdisregard\n\n9) shmil1: Move B1 Shmil1 Casualdisregard\n\n10) Aristos: Discover G1 Casualdisregard B2 Socialunrest\n\n11) shmil1: Build Y1 Shmil1\n\n12) Aristos: Build G2 Casualdisregard\n\n13) shmil1: Trade B1 R1 Casualdisregard\n\n14) Aristos: Trade G1 R1 Socialunrest\n\n15) shmil1: Attack G1 Casualdisregard\n\n16) Aristos: Sacrifice R1 Socialunrest\nAttack R1 Casualdisregard\n\n17) shmil1: Move G1 Casualdisregard Aristos\n\n18) Aristos: Build R1 Casualdisregard\n\n19) shmil1: Build G1 Aristos\n\n20) Aristos: Trade G3 R3 Aristos\n\n21) shmil1: Build G2 Aristos\n\n22) Aristos: Attack G2 Aristos\n\n23) shmil1: Build G2 Aristos\n\tAristos: The Aristos Empire sends greetings to the Shmil1 ambassador. We appreciate the visitations of our neighbors from the north, but it is now time to withdraw your green ships from our homeworld. Failure to do so will be more calamitous for you than for us. We will allow both of your ships to withdraw, if you wish to do so. Failure to withdraw at least one ship in the next standard move will constitute rejection of our generous offer.\n\n24) Aristos: Attack G2 Aristos\n\n25) shmil1: Build G3 Aristos\n\tAristos: We appreciate your gift of green ships to our fleet, but we are curious where this process is headed. \n\n26) Aristos: Sacrifice G2 Aristos\nBuild G2 Casualdisregard\nBuild G3 Casualdisregard\nCatastrophe Aristos Green\n\tshmil1: I hope you will see it :)\n\n27) shmil1: Build Y2 Shmil1\n\tAristos: We regret to inform you that an accident occurred in our home system. Citizens from both of our empires died in the conflagration. Rest assured we are studying the records to find the cause. Until then, we recommend all ships from other empires stay out of our home system. It is apparently unstable. We may be sending refugees from our world to our neighbors. Please treat them kindly and welcome them into you systems.\n\n28) Aristos: Discover G2 Casualdisregard B2 Vileslander\n\n29) shmil1: Trade Y2 R2 Shmil1\n\n30) Aristos: Trade G2 Y2 Vileslander\n\n31) shmil1: Move R2 Shmil1 Vileslander\n\n32) Aristos: Sacrifice R1 Casualdisregard\nAttack R2 Vileslander\n\n33) shmil1: Discover Y1 Shmil1 G3 Joooj\n\n34) Aristos: Build G1 Casualdisregard\n\n35) shmil1: Build Y2 Joooj\n\n36) Aristos: Sacrifice Y2 Vileslander\nMove R2 Vileslander Shmil1\nMove R1 Casualdisregard Shmil1\n\n37) shmil1: Attack R2 Shmil1\n\n38) Aristos: Build R1 Shmil1\nCatastrophe Shmil1 Red\n\tAristos: Greetings! We mentioned that refugees from our world might come your way. They have arrived. Please make them welcome! You may notice they are heavily armed. Be assured that is merely because our military transports were the only ones available. We come in peace. We have no intention of attacking any of your ships!\n\n39) shmil1: Trade Y1 R1 Shmil1\n\tshmil1: welcome :)\n\n40) Aristos: Move G1 Casualdisregard Shmil1\n\tAristos: Word has reached us that our refugees, whom we thought safe in your system, have vanished! We are most distraught by this. We are beginning an active search for our missing ships. Curiously, one of your stars appears to have vanished as well. Perhaps the two events are connected? We will let you know if our investigation reveals anything.\n\n41) shmil1: Attack G1 Shmil1\n\n42) Aristos: Move G2 Casualdisregard Shmil1\n\n43) shmil1: Trade G1 Y1 Shmil1\n\n44) Aristos: Sacrifice G3 Casualdisregard\nBuild G1 Shmil1\nBuild G1 Shmil1\nBuild R1 Aristos\nCatastrophe Shmil1 Green\n\n\tAristos: Thank you for the game.\n\nHomeworlds Online (SDG# 18842)\nStarted: 2011.1.16, Ended: 2011.1.29\nParticipants: shmil1 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) shmil1: Homeworld B2 G1 R3\n\tts52: Have a good game!\r\n\n\n3) ts52: Build G1 Ts52\n\n4) shmil1: Build R1 Shmil1\n\n5) ts52: Build G1 Ts52\n\n6) shmil1: Build R1 Shmil1\n\n7) ts52: D G1 Ts52 Y3 Bigbird\n\n8) shmil1: Trade R1 Y1 Shmil1\n\n9) ts52: Trade G1 R1 Ts52\n\n10) shmil1: Build Y1 Shmil1\n\n11) ts52: B G1 Ts52\n\n12) shmil1: Move R1 Shmil1 Bigbird\n\n13) ts52: Sacrifice R1 Ts52\nAttack R1 Bigbird\n\n14) shmil1: Build Y2 Shmil1\n\n15) ts52: Build G2 Bigbird\n\n16) shmil1: Trade Y2 R2 Shmil1\n\n17) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Ts52\nBuild G3 Ts52\n\n18) shmil1: Discover Y1 Shmil1 G3 Zelena\n\n19) ts52: Discover G2 Ts52 Y3 Zoe\n\n20) shmil1: Build Y2 Zelena\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild R1 Bigbird\n\n22) shmil1: Trade R2 B2 Shmil1\n\n23) ts52: Trade G3 Y3 Ts52\n\n24) shmil1: Move Y1 Zelena Ts52\n\n25) ts52: Discover Y3 Ts52 B3 Grover\n\n26) shmil1: Move Y2 Zelena Ts52\n\n27) ts52: Sacrifice R1 Bigbird\nAttack Y2S Ts52\n\n28) shmil1: Build R1 Shmil1\n\n29) ts52: Trade Y2 R2 Ts52\n\n30) shmil1: Sacrifice R1 Shmil1\nAttack G1 Ts52\n\n31) ts52: Attack G1S Ts52\n\n32) shmil1: Discover Y1 Ts52 G3 Nono\n\n33) ts52: Build G3 Ts52\n\n34) shmil1: Build Y2 Nono\n\n35) ts52: Trade G3 R3 Ts52\n\n36) shmil1: Trade R3 G3 Shmil1\n\n37) ts52: Move R3 Ts52 Nono\n\n38) shmil1: Build Y2 Nono\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild R1 Ts52\n\n40) shmil1: Sacrifice B2 Shmil1\nTrade Y2 R2 Nono\nTrade Y2 R2 Nono\n\n41) ts52: Sacrifice Y3 Grover\nMove G1 Bigbird Shmil1\nMove G2 Bigbird Shmil1\nMove R3 Nono Shmil1\nCatastrophe Shmil1 Green\n\n\tts52: Thanks for the game. \n\nHomeworlds Online (SDG# 18865)\nStarted: 2011.1.16, Ended: 2011.1.22\nParticipants: mathochist (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 18869)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.17, Ended: 2011.1.28\nParticipants: Jesse (S), baxy (N)\nWinner: Jesse\n\n1) baxy: Homeworld G3 B1 Y3\n\n2) Jesse: Homeworld B1 G2 B3 *\n\n3) baxy: Build Y1 Baxy\n\n4) Jesse: Build B1 Jesse\n\n5) baxy: Build Y1 Baxy\n\n6) Jesse: Trade B3 Y3 Jesse\n\n7) baxy: Trade Y3 B3 Baxy\n\n8) Jesse: Build B2 Jesse\n\n\nHomeworlds Online (SDG# 18709)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.23, Ended: 2011.2.7\nParticipants: sompm (S), Aristos (W), lorgar (N), Buttons (E)\nWinner: lorgar\n\n1) lorgar: Homeworld B3 Y2 G3\n\n2) Buttons: Homeworld R1 B2 G3\n\n3) sompm: Homeworld G3 B1 Y3\n\n4) Aristos: Homeworld B1 Y3 G3\n\n5) lorgar: Build G1 Lorgar\n\n6) Buttons: Build G1 Buttons\n\tlorgar: gl, hf\n\n7) sompm: Build Y1 Sompm\n\n8) Aristos: Build G1 Aristos\n\n9) lorgar: Build G1 Lorgar\n\n10) Buttons: Trade G1 Y1 Buttons\n\tAristos: The ambassador of the Aristos Empire sends greetings to our neighbors in this galaxy. We look forward to many turns of peaceful co-exploration of this space with you.\n\tButtons: Uryyb! V ercerfrag gur Terng Crbcyr&#39;f Erchoyvp bs Ohggbaf, naq V rpub gur fragvzragf bs bhe arvtuobe gb gur Jrfg. Znl bhe sbhe tnynpgvp cbjref rawbl znal lrnef bs crnpr naq cebfcrevgl! Va gur hayvxryl rirag gung nal ubfgvyvgvrf nevfr orgjrra hf, V ubcr lbhe fhssrevat funyy or oevrs. Jr ner nyfb jbexvat ba bhe EBG-13 genafyngvba grpuabybtl; vs bhe Svir Ghea Cyna vf fhpprffshy, jr fubhyq or noyr gb pbzzhavpngr va lbhe ynathntr va qhr gvzr. Sbe abj, V ubcr bhe zvffvirf pna or pbzceruraqrq.\n\n11) sompm: Build Y1 Sompm\n\n12) Aristos: Build G1 Aristos\n\tsompm: Qu&#39;est-ce que vous avez du? Je ne comprends pas.\r\n\r\nGreetings, fellow explorer, I also would pursue peaceful coexistence  with any willing to cooperate.\r\n\r\nThat is, until relations go sour and I notice you&#39;re stockpiling large ships of specific colors.\r\n\r\nAnd... probably vice-versa.\n\n13) lorgar: Trade G1 Y1 Lorgar\n\n14) Buttons: Build G1 Buttons\n\n\tAristos: I never saw a notification that it was my turn. I am sorry for not moving. \n\tsompm: Woah, what? Sorry. Dang.\n\tButtons: Hey, at least we never fought or anything.\n\nHomeworlds Online (SDG# 18816)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.23, Ended: 2011.2.3\nParticipants: SilentTitan (S), Buttons (N)\nWinner: SilentTitan\n\n1) Buttons: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) Buttons: Build G1 Buttons\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Buttons: Trade G1 Y1 Buttons\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Buttons: Build Y2 Buttons\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) Buttons: Trade Y1 R1 Buttons\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) Buttons: Build G1 Buttons\n\n12) SilentTitan: Discover Y1 Silenttitan B1 Pak\n\n13) Buttons: Discover G1 Buttons Y3 Senseofconquest\n\n14) SilentTitan: Build Y1 Silenttitan\n\n15) Buttons: Discover Y2 Buttons G3 Bloomandgrow\n\n16) SilentTitan: Discover Y1 Silenttitan B1 Sic\n\n17) Buttons: Build R1 Buttons\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pak\nBuild Y3 Sic\nBuild Y3 Silenttitan\n\n19) Buttons: Trade R1 B1 Buttons\n\n20) SilentTitan: Trade Y3 B3 Sic\n\n21) Buttons: Build Y3 Bloomandgrow\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Pak Bloomandgrow\nMove Y1 Pak Bloomandgrow\nCatastrophe Bloomandgrow Yellow\n\n23) Buttons: Build R1 Buttons\n\n24) SilentTitan: Build Y1 Silenttitan\n\n25) Buttons: Discover R1 Buttons B3 Dtmgffbank\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) Buttons: Build R1 Buttons\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sic\nBuild Y2 Sic\nBuild Y2 Silenttitan\n\n29) Buttons: Build R2 Buttons\n\n30) SilentTitan: Build Y3 Silenttitan\n\n31) Buttons: Move R2 Buttons Senseofconquest\n\n32) SilentTitan: Trade B3 R3 Sic\n\n33) Buttons: Build G1 Buttons\n\n34) SilentTitan: Discover Y2 Sic R3 Rosy\n\n35) Buttons: Discover R2 Senseofconquest B2 Lacuna\n\n36) SilentTitan: Trade Y3 G3 Silenttitan\n\n37) Buttons: Discover G1 Buttons Y3 Seventeenpigs\n\tButtons: Ugh. Okay, 19 moves into my first game and I understand why some people don&#39;t like yellow stars.\n\n38) SilentTitan: Build Y3 Silenttitan\n\tSilentTitan: They have their uses, but they&#39;re not the best for getting around fast.\n\tButtons: Aside from the fact that you&#39;re dominating yellow right now, even if I could get one on my homeworld (say by trading G3 for Y3), you could immediately induce a catastrophe by sacrificing your Y3.\n\tButtons: So yeah, think I&#39;ll try red for my second game.\n\n39) Buttons: Build B1 Buttons\n\n40) SilentTitan: Discover Y2 Sic B3 Sox\n\n41) Buttons: Move B1 Buttons Seventeenpigs\n\n42) SilentTitan: Trade Y3 B3 Silenttitan\n\n43) Buttons: Build G2 Buttons\n\n44) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y3 Sox\n\n45) Buttons: Move G1 Seventeenpigs Lacuna\n\n46) SilentTitan: Trade Y3 G3 Sox\n\n47) Buttons: Sacrifice R1 Dtmgffbank\nPass\n\n48) SilentTitan: Sacrifice G3 Sox\nBuild Y3 Sox\nBuild B3 Silenttitan\nBuild G1 Silenttitan\n\n49) Buttons: Build G2 Senseofconquest\n\n50) SilentTitan: Sacrifice Y3 Sox\nMove B3 Silenttitan Sic\nMove B3 Sic Rosy\nMove B3 Silenttitan Sic\n\n51) Buttons: Move B1 Buttons Senseofconquest\n\n52) SilentTitan: Move R3 Sic Lacuna\n\n53) Buttons: Discover R1 Buttons G3 Impendingdoom\n\n54) SilentTitan: Attack R2 Lacuna North\n\n55) Buttons: Sacrifice G2 Senseofconquest\nBuild R1 Buttons\nBuild R2 Impendingdoom\n\n56) SilentTitan: Move B3 Sic Impendingdoom\n\n57) Buttons: Move B1 Senseofconquest Sic\n\n58) SilentTitan: Sacrifice R3 Lacuna\nAttack R2 Impendingdoom North\nAttack R1 Impendingdoom North\nAttack B1 Sic North\n\n59) Buttons: Build G2 Senseofconquest\n\n60) SilentTitan: Sacrifice Y2 Sox\nMove B3 Impendingdoom Buttons\nMove B3 Rosy Buttons\n\n61) Buttons: Attack B3S Buttons\n\n62) SilentTitan: Sacrifice R2 Impendingdoom\nAttack B3 Buttons North\nAttack G3 Buttons North\n\n63) Buttons: Move B1 Seventeenpigs Buttons\nCatastrophe Buttons Blue\n\n64) SilentTitan: Sacrifice B1 Sic\nTrade G3 Y3 Buttons\n\n65) Buttons: Discover G1 Senseofconquest B1 Buttonsn\n\n66) SilentTitan: Sacrifice Y2 Rosy\nMove Y2 Silenttitan Buttons\nMove Y1 Silenttitan Buttons\nCatastrophe Buttons Yellow\n\n\tSilentTitan: good game\n\tButtons: FYI that&#39;s my homeworld in the top left over there. Not the one on the very top.\n\tSilentTitan: LOL..... I just saw that post ... \n\nHomeworlds Online (SDG# 18931)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.25, Ended: 2011.2.18\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) lorgar: Homeworld B1 G2 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build Y1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade Y1 B1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Build B1 Lorgar\n\n9) SilentTitan: Discover Y1 Silenttitan Y1 Sox\n\n10) lorgar: Build Y2 Lorgar\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) lorgar: Discover Y2 Lorgar G3 Madyamika\n\n13) SilentTitan: Discover Y2 Silenttitan G1 Sax\n\n14) lorgar: Move Y2 Madyamika Sax\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sax\nBuild Y3 Sox\nBuild Y3 Silenttitan\n\n16) lorgar: Trade B1 R1 Lorgar\n\n17) SilentTitan: Sacrifice Y3 Sox\nDiscover Y2 Sax G3 Tic\nDiscover Y2 Sax G3 Tac\nDiscover Y1 Sox B3 Toe\n\n18) lorgar: Trade Y3 G3 Lorgar\n\n19) SilentTitan: Discover Y2 Tac B2 Fee\n\n20) lorgar: Move Y2 Sax Tic\n\n21) SilentTitan: Trade Y3 G3 Silenttitan\n\n22) lorgar: Sacrifice R1 Lorgar\nAttack Y2N Tic\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Toe\nBuild Y3 Fee\nBuild Y3 Silenttitan\n\n24) lorgar: Build B1 Lorgar\n\n25) SilentTitan: Trade Y1 R1 Toe\n\n26) lorgar: Sacrifice B1 Lorgar\nTrade Y2 R2 Tic\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) lorgar: Trade B1 R1 Lorgar\n\n29) SilentTitan: Move Y3 Fee Tic\n\n30) lorgar: Build Y1 Tic\n\n31) SilentTitan: Sacrifice R1 Toe\nAttack R2 Tic South\n\n32) lorgar: Build Y2 Tic\nCatastrophe Tic Yellow\n\n33) SilentTitan: Build Y1 Silenttitan\n\n34) lorgar: Build G1 Lorgar\n\n35) SilentTitan: Trade Y2 G2 Fee\n\n36) lorgar: Build R1 Lorgar\n\n37) SilentTitan: Sacrifice G2 Fee\nBuild Y2 Toe\nBuild Y2 Toe\n\n38) lorgar: Trade G3 Y3 Lorgar\n\n39) SilentTitan: Sacrifice Y2 Toe\nMove Y2 Toe Lorgar\nMove Y1 Toe Lorgar\n\n40) lorgar: Trade Y3 B3 Lorgar\n\n41) SilentTitan: Sacrifice R2 Tic\nAttack R1 Lorgar South\nAttack R1 Lorgar South\n\n42) lorgar: Build G1 Lorgar\n\n43) SilentTitan: Trade Y1 G1 Lorgar\nCatastrophe Lorgar Green\n\n44) lorgar: Trade B3 G3 Lorgar\n\n45) SilentTitan: Trade R1 G1 Lorgar\n\n46) lorgar: Trade G3 R3 Lorgar\n\n47) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Lorgar\nBuild R1 Lorgar\nBuild Y1 Silenttitan\nCatastrophe Lorgar Red\n\n\nHomeworlds Online (SDG# 18935)\nStarted: 2011.1.28, Ended: 2011.2.16\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: have a good game!\n\n4) ts52: B G1 Ts52\n\n5) lorgar: Trade G1 Y1 Lorgar\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) lorgar: Build Y2 Lorgar\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) lorgar: Trade Y1 R1 Lorgar\n\n10) ts52: Build G1 Ts52\n\n11) lorgar: Discover Y2 Lorgar G1 Sotrantika\n\n12) ts52: Trade G1 R1 Ts52\n\n13) lorgar: Build G1 Lorgar\n\n14) ts52: Build R1 Ts52\n\n15) lorgar: Build R2 Lorgar\n\n16) ts52: Build R2 Ts52\n\n17) lorgar: Discover R2 Lorgar G1 Madyamika\n\n18) ts52: Move R2 Ts52 Kermit\n\n19) lorgar: Move R1 Lorgar Sotrantika\n\n20) ts52: B G2 Ts52\n\n21) lorgar: Build G2 Lorgar\n\n22) ts52: Trade G2 B2 Ts52\n\n23) lorgar: Trade G2 R2 Lorgar\n\n24) ts52: Build R3 Kermit\n\n25) lorgar: Build R3 Sotrantika\n\n26) ts52: Discover R1 Ts52 Y3 Bigbird\n\n27) lorgar: Build R3 Madyamika\n\n28) ts52: Build G2 Ts52\n\n29) lorgar: Sacrifice Y2 Sotrantika\nMove R2 Madyamika Kermit\nMove R1 Sotrantika Kermit\nCatastrophe Kermit Red\n\n30) ts52: Build G2 Ts52\n\n31) lorgar: Build G2 Lorgar\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y2 Kermit\n\n33) lorgar: Trade G2 Y2 Lorgar\n\n34) ts52: Discover Y2 Kermit B1 Gonzo\n\n35) lorgar: Sacrifice Y2 Lorgar\nMove R3 Madyamika Bigbird\nMove R3 Sotrantika Kermit\n\n36) ts52: Sacrifice G2 Ts52\nBuild Y2 Gonzo\nBuild Y3 Gonzo\n\n37) lorgar: Attack Y1S Kermit\n\n38) ts52: Trade Y3 R3 Gonzo\n\n39) lorgar: Attack Y1S Kermit\n\n40) ts52: Discover Y2 Gonzo G2 Robin\n\n41) lorgar: Move R3 Bigbird Robin\n\n42) ts52: Discover Y2 Robin G1 Oscar\n\n43) lorgar: Move Y1 Kermit Oscar\n\n44) ts52: Sacrifice G2 Ts52\nBuild Y3 Gonzo\nBuild Y3 Oscar\n\n45) lorgar: Move Y1 Kermit Oscar\nCatastrophe Oscar Yellow\n\n46) ts52: Build G1 Ts52\n\n47) lorgar: Trade G1 B1 Lorgar\n\n48) ts52: Move G1 Ts52 Bigbird\n\n49) lorgar: Build B1 Lorgar\n\n50) ts52: Sacrifice Y3 Gonzo\nMove B2 Ts52 Bigbird\nMove B2 Bigbird Gonzo\nMove B2 Gonzo Lorgar\nCatastrophe Lorgar Blue\n\n51) lorgar: Build G1 Lorgar\n\n52) ts52: Move G1 Bigbird Gonzo\n\n53) lorgar: Discover G1 Lorgar B1 Newgate\n\n54) ts52: Build Y1 Gonzo\n\n55) lorgar: Trade G1 Y1 Newgate\n\n56) ts52: Discover Y2 Gonzo G2 Oscar\n\n57) lorgar: Move Y1 Newgate Kermit\n\n58) ts52: Build G1 Ts52\n\n59) lorgar: Move R3 Kermit Oscar\n\n60) ts52: Move Y2 Oscar Kermit\n\n61) lorgar: Sacrifice Y1 Kermit\nDiscover R3 Oscar B3 Magnamund\n\n62) ts52: Build Y1 Kermit\n\n63) lorgar: Trade R3 Y3 Magnamund\n\n64) ts52: Trade R3 Y3 Gonzo\n\n65) lorgar: Build G1 Lorgar\n\n66) ts52: Sacrifice Y3 Gonzo\nMove Y1 Gonzo Lorgar\nMove Y2 Kermit Lorgar\nMove Y1 Kermit Lorgar\nCatastrophe Lorgar Yellow\n\n\tts52: Thanks for the game.\r\n\n\tlorgar: was interesting. Next time I wont fall for the same trick. I hope.\n\nHomeworlds Online (SDG# 18985)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.28, Ended: 2011.2.13\nParticipants: Gidaio (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n2) Gidaio: Homeworld G2 B3 Y3\n\n3) ajo: Build G1 Ajo\n\n4) Gidaio: Build Y1 Gidaio\n\n5) ajo: Build G1 Ajo\n\n6) Gidaio: Build Y1 Gidaio\n\n7) ajo: Discover G1 Ajo B2 Alpha\n\n8) Gidaio: Discover Y1 Gidaio G1 Beta\n\n9) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Ajo\nBuild G3 Ajo\n\tajo: Interesting. Well, I&#39;ll take it.\n\n10) Gidaio: Build Y1 Beta\n\n11) ajo: Trade G2 Y2 Alpha\n\n12) Gidaio: Trade Y1 R1 Gidaio\n\n13) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Alpha\nBuild G3 Ajo\n\n14) Gidaio: Build Y1 Gidaio\n\n15) ajo: Trade G3 R3 Alpha\n\n16) Gidaio: Build Y2 Gidaio\n\n17) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Alpha\nBuild G3 Alpha\n\n18) Gidaio: Sacrifice Y2 Gidaio\nMove Y1 Beta Alpha\nMove Y1 Beta Alpha\nCatastrophe Alpha Yellow\n\n19) ajo: Trade G3 Y3 Alpha\n\n20) Gidaio: Discover Y1 Gidaio B1 Delta\n\n21) ajo: Move G2 Alpha Delta\n\n22) Gidaio: Build Y1 Gidaio\n\tajo: I&#39;d be fine if you want to resign at this point. It doesn&#39;t seem worth dragging out the game several more days.\n\tGidaio: Enh. You&#39;re probably right. But I&#39;ve seen situations where someone is in a losing place, something happens, and they win. I&#39;ll continue, unless it becomes utterly hopeless. You&#39;re definitely in a better position, though.\n\n23) ajo: Sacrifice G3 Ajo\nBuild G1 Alpha\nBuild G3 Delta\nBuild G3 Delta\n\tajo: Well, you&#39;d be counting on me to make some really terrible blunder... I think I&#39;ve been in the &quot;better position&quot; ever since you gave me the green monopoly on turn 6, and by this point it *is* utterly hopeless.  But we can play it out a little further.\n\n\tGidaio: Yeah... I had a horrible game where this guy got a yellow monopoly, and I couldn&#39;t move. I tried that this time, but... gg\n\nHomeworlds Online (SDG# 18984)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.29, Ended: 2011.2.16\nParticipants: Aristos (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) Aristos: Homeworld B1 G2 Y3\n\n3) Jesse: Build G1 Jesse\n\n4) Aristos: Build Y1 Aristos\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Aristos: Discover Y1 Aristos B3 Ipsofacto\n\n7) Jesse: Build G1 Jesse\n\n8) Aristos: Trade Y1 G1 Ipsofacto\n\n9) Jesse: Discover G1 Jesse B2 Grover\n\n10) Aristos: Build Y1 Aristos\n\n11) Jesse: Build G1 Jesse\n\n12) Aristos: Build G2 Ipsofacto\n\n13) Jesse: Sacrifice G3 Jesse\nBuild G2 Grover\nBuild G3 Jesse\nBuild Y1 Jesse\n\n14) Aristos: Build Y2 Aristos\n\n15) Jesse: Trade G2 R2 Grover\n\n16) Aristos: Move Y1 Aristos Ipsofacto\n\n17) Jesse: Move Y1 Jesse Grover\n\n18) Aristos: Trade G1 R1 Ipsofacto\n\n19) Jesse: Build Y2 Grover\n\n20) Aristos: Trade Y2 G2 Aristos\n\n21) Jesse: Discover Y2 Grover G3 Oscar\n\n22) Aristos: Build Y2 Ipsofacto\n\n23) Jesse: Build Y2 Oscar\n\n24) Aristos: Build Y3 Aristos\n\n25) Jesse: Build Y3 Grover\n\n26) Aristos: Discover Y3 Aristos G3 Quidproquo\n\n27) Jesse: Sacrifice G3 Jesse\nBuild G1 Grover\nBuild G3 Jesse\nBuild R1 Grover\n\n28) Aristos: Build R2 Ipsofacto\n\n29) Jesse: Move Y3 Grover Ipsofacto\n\n30) Aristos: Sacrifice Y2 Ipsofacto\nMove R1 Ipsofacto Grover\nMove R2 Ipsofacto Grover\nCatastrophe Grover Red\n\n31) Jesse: Build Y2 Grover\n\n32) Aristos: Trade Y1 R1 Ipsofacto\n\n33) Jesse: Trade Y2 R2 Grover\n\n34) Aristos: Build R1 Ipsofacto\n\n35) Jesse: Sacrifice R2 Grover\nAttack R1 Ipsofacto\nAttack R1 Ipsofacto\n\n\tAristos: Good game.\n\nHomeworlds Online (SDG# 18993)\nVariants: &quot;Hard time&quot;\nStarted: 2011.1.30, Ended: 2011.3.8\nParticipants: Aristos (S), fnord (N)\nWinner: Aristos\n\n1) fnord: Homeworld B3 G2 Y3\n\n2) Aristos: Homeworld G2 B1 Y3\n\n3) fnord: Build Y1 Fnord\n\n4) Aristos: Build Y1 Aristos\n\n5) fnord: Discover Y1 Fnord B1 Eris\n\n6) Aristos: Trade Y1 R1 Aristos\n\n7) fnord: Build Y1 Fnord\n\n8) Aristos: Build R1 Aristos\n\n9) fnord: Trade Y1 R1 Eris\n\n10) Aristos: Build Y1 Aristos\n\n11) fnord: Move Y1 Fnord Eris\n\n12) Aristos: Build R2 Aristos\n\n13) fnord: Trade Y1 G1 Eris\n\n14) Aristos: Trade R1 G1 Aristos\n\n15) fnord: Build Y1 Fnord\n\n16) Aristos: Build Y1 Aristos\n\n17) fnord: Move Y1 Fnord Eris\n\n18) Aristos: Sacrifice Y3 Aristos\nDiscover R2 Aristos G3 Garage\nMove Y1 Aristos Garage\nMove R2 Garage Eris\n\n19) fnord: Sacrifice Y1 Eris\nMove R1 Eris Garage\n\n20) Aristos: Sacrifice R1 Aristos\nAttack R1 Garage\n\n21) fnord: Trade G1 Y1 Eris\n\n22) Aristos: Attack Y1 Eris\n\n23) fnord: Build Y2 Fnord\n\n24) Aristos: Build Y2 Garage\n\n25) fnord: Trade Y2 G2 Fnord\n\n26) Aristos: Build Y2 Aristos\n\n27) fnord: Build Y2 Fnord\n\n28) Aristos: Sacrifice G1 Aristos\nBuild Y3 Eris\n\n29) fnord: Trade Y3 R3 Fnord\n\n30) Aristos: Build Y3 Garage\n\n31) fnord: Build G1 Fnord\n\n32) Aristos: Build Y3 Aristos\n\n33) fnord: Trade G1 B1 Fnord\n\n34) Aristos: Trade Y3 G3 Eris\n\n35) fnord: Discover Y2 Fnord G1 Discordia\n\n36) Aristos: Sacrifice Y3 Aristos\nMove G3 Eris Fnord\nDiscover Y3 Garage G1 Temporary\nMove Y3 Temporary Fnord\n\tAristos: You know, I thought I was getting close to pinning you, but it is surprisingly hard to get to the endgame on this.\n\tfnord: Oh, don&#39;t worry, you&#39;ve got me well and truly pinned down.  It&#39;s just a matter of how much squirming I can do to delay the inevitable. *grin*\n\n37) fnord: Attack G3 Fnord\n\n38) Aristos: Sacrifice R2 Eris\nAttack R3 Fnord\nAttack G3 Fnord\n\n39) fnord: Build Y3 Discordia\n\n40) Aristos: Sacrifice R3 Fnord\nAttack B1 Fnord\nAttack G2 Fnord\nPass\n\n\tAristos: Good game. Thanks.\n\tfnord: Thanks for the game!\n\nHomeworlds Online (SDG# 19002)\nStarted: 2011.1.30, Ended: 2011.2.27\nParticipants: daselva (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B3 Y2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\tMandrel: Have a good game.\n\n3) Mandrel: B G1 Mandrel\n\n4) daselva: Build G1 Daselva\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) daselva: Trade G1 R1 Daselva\n\n7) Mandrel: Build R2 Mandrel\n\n8) daselva: Build R2 Daselva\n\n9) Mandrel: Build R2 Mandrel\n\n10) daselva: Trade R2 Y2 Daselva\n\n11) Mandrel: Trade R1 Y1 Mandrel\n\n12) daselva: Build Y1 Daselva\n\n13) Mandrel: D R2 Mandrel B1 Relief\n\n14) daselva: Build G1 Daselva\n\n15) Mandrel: B G1 Mandrel\n\n16) daselva: Discover Y2 Daselva R3 S1\n\n17) Mandrel: Move G1 Mandrel Relief\n\n18) daselva: Move G1 Daselva S1\n\n19) Mandrel: Build R1 Mandrel\n\n20) daselva: Sacrifice G3 Daselva\nBuild Y1 S1\nBuild Y2 Daselva\nBuild Y3 Daselva\n\n21) Mandrel: M Y1 Mandrel Relief\n\n22) daselva: Trade Y3 G3 Daselva\n\n23) Mandrel: Build Y3 Relief\n\n24) daselva: Move Y1 S1 Relief\n\n25) Mandrel: Move Y3 Relief S1\n\n26) daselva: Discover Y2 S1 G1 S2\n\n27) Mandrel: Attack G1S S1\n\n28) daselva: Move Y1 Relief Mandrel\n\n29) Mandrel: Attack Y1S Mandrel\n\n30) daselva: Move Y2 S2 Mandrel\n\n31) Mandrel: A Y2S Mandrel\n\n32) daselva: Discover Y1 Daselva G3 S2\n\n33) Mandrel: D Y1 Mandrel G1 Moment\n\n34) daselva: Build Y3 S2\n\n35) Mandrel: B Y3 S1\n\n36) daselva: Move Y3 S2 Moment\n\n37) Mandrel: T R1 B1 Mandrel\n\n38) daselva: Sacrifice R1 Daselva\nAttack Y1 Moment\n\n39) Mandrel: M Y2 Mandrel Relief\n\n40) daselva: Sacrifice Y3 Moment\nMove Y1 Moment S1\nDiscover Y1 S2 B2 S3\nMove Y1 S3 S1\nCatastrophe S1 Y\n\n\n41) Mandrel: D Y2 Relief G3 Calypso\n\n42) daselva: Build Y1 Daselva\n\n43) Mandrel: B Y1 Calypso\n\n44) daselva: Discover Y2 Daselva R3 S2\n\n45) Mandrel: B Y3 Relief\n\n46) daselva: Build Y3 Daselva\n\n47) Mandrel: M Y3 Relief S2\n\n48) daselva: Discover Y2 S2 R1 S3\n\n49) Mandrel: Build Y3 Relief\n\n50) daselva: Discover Y3 Daselva R3 S4\n\n51) Mandrel: Trade Y3 B3 Relief\n\n52) daselva: Build Y3 Daselva\n\n53) Mandrel: M B3 Relief Calypso\n\n54) daselva: Trade Y1 B1 Daselva\n\n55) Mandrel: S Y2 Calypso\nMove B3 Calypso Daselva\nMove Y3 S2 Daselva\n\n56) daselva: Attack B3 Daselva\n\n57) Mandrel: Sacrifice R2 Relief\nAttack G3S Daselva\nAttack Y3S Daselva\n\n58) daselva: Attack G3 Daselva\n\n59) Mandrel: S R2 Mandrel\nAttack B3S Daselva\nAttack G3S Daselva\n\n60) daselva: Move Y3 S4 Daselva\n\n61) Mandrel: Attack Y3S Daselva\n\n\tMandrel: Thanks for the game.\n\nHomeworlds Online (SDG# 18872)\nStarted: 2011.2.1, Ended: 2011.2.1\nParticipants: mathochist (S), du_mm_yy (N)\nWinner: mathochist\n\n\nHomeworlds Online (SDG# 19021)\nStarted: 2011.2.7, Ended: 2011.3.20\nParticipants: lorgar (S), du_mm_yy (W), scratchisthebest (N), Aristos (E)\nWinner: lorgar\n\n1) scratchisthebest: Homeworld B3 Y1 G3\n\n2) Aristos: Homeworld B1 Y2 G3\n\n3) lorgar: Homeworld Y3 B2 G3\n\n4) du_mm_yy: Homeworld B3 Y2 G3\n\n5) scratchisthebest: Build G1 Scratchisthebest\n\n6) Aristos: Build G1 Aristos\n\n7) lorgar: Build G1 Lorgar\n\n8) du_mm_yy: Build G1 Du_mm_yy\n\n9) scratchisthebest: Discover G3 Scratchisthebest B2 Traderjoes\n\n10) Aristos: Trade G1 R1 Aristos\n\n11) lorgar: Trade G1 R1 Lorgar\n\n12) du_mm_yy: Trade G1 R1 Du_mm_yy\n\n13) scratchisthebest: Trade G3 Y3 Traderjoes\n\n14) Aristos: Build R1 Aristos\n\n15) lorgar: Build G1 Lorgar\n\n16) du_mm_yy: Build R1 Du_mm_yy\n\n17) scratchisthebest: Build G1 Scratchisthebest\n\n18) Aristos: Build G1 Aristos\n\n19) lorgar: Build R2 Lorgar\n\n20) du_mm_yy: Build G1 Du_mm_yy\n\n21) scratchisthebest: Trade G1 B1 Scratchisthebest\n\n22) Aristos: Build R2 Aristos\n\n23) lorgar: Build R2 Lorgar\n\n24) lorgar: Discover G1 Lorgar B1 Dummygrave\n\n25) scratchisthebest: Build B1 Scratchisthebest\n\n26) Aristos: Discover R2 Aristos G3 Weaponsdealer\n\n27) lorgar: Trade R2 B2 Lorgar\n\n28) Aristos: Build R2 Weaponsdealer\n\n29) lorgar: Build G1 Dummygrave\n\tAristos: Going to move?\n\n30) Aristos: Trade R1 Y1 Aristos\n\n31) lorgar: Trade G1 Y1 Dummygrave\n\n32) Aristos: Build Y1 Aristos\n\n33) lorgar: Discover Y1 Dummygrave G3 Marina\n\tscratchisthebest: oops... I forgot about this game, and then panicked remembering it. Lol\n\n34) Aristos: Move Y1 Aristos Weaponsdealer\n\n35) lorgar: Discover B2 Lorgar G1 Darkistari\n\n36) Aristos: Move R2 Weaponsdealer Dummygrave\n\n37) lorgar: Sacrifice G1 Dummygrave\nBuild B1 Darkistari\n\n38) Aristos: Discover G3 Aristos Y3 Novanova\n\tAristos: This is really hard to analyze with so many pieces for only two players!\n\n39) lorgar: Build Y1 Marina\n\n40) Aristos: Move G3 Novanova Traderjoes\n\n41) lorgar: Move Y1 Marina Aristos\n\n42) Aristos: Discover Y1 Aristos B3 Escapehatch\n\n43) lorgar: Sacrifice R1 Lorgar\nAttack R1E Aristos\n\n44) Aristos: Sacrifice R2 Dummygrave\nAttack Y1S Aristos\nAttack R1S Aristos\n\n45) lorgar: Trade B2 Y2 Darkistari\n\n46) Aristos: Sacrifice R1 Aristos\nAttack Y3N Traderjoes\n\n47) lorgar: Build Y2 Marina\n\tAristos: Ok, what&#39;s wrong with this move? Every time I type it, I get a message that there is no Y1 ship in the Aristos system.\r\n\r\nsacrifice r2 dummygrave\r\nattack y1 Aristos\r\nattack r1 Aristos\n\tAristos: The exact error message I get is, &quot;The ship Y1 could not be found in the Aristos system.&quot;\n\tAristos: I thought maybe canceling the call and redoing it might get an admin&#39;s attention.\n\n48) Aristos: Trade Y1 R1 Aristos\n\tAristos: Finally got someone to help explain the problem. I needed to use this command:\r\n\r\nsacrifice r2 dummygrave\r\nattack y1s Aristos\r\nattack r1s Aristos \r\n\r\nApparently that only applies in multiplayer games.\n\n49) lorgar: Move Y2 Marina Aristos\n\n50) Aristos: Sacrifice Y3 Traderjoes\nMove G3 Traderjoes Escapehatch\nMove G3 Escapehatch Aristos\nDiscover R2 Weaponsdealer G2 Smugglerscave\n\n51) lorgar: Build Y1 Marina\n\n52) Aristos: Build Y2 Weaponsdealer\n\n53) lorgar: Build Y3 Darkistari\n\n\tAristos: The arc of this game is inevitable. :-) Well played.\n\tlorgar: Thx\n\nHomeworlds Online (SDG# 19106)\nStarted: 2011.2.11, Ended: 2011.3.27\nParticipants: sompm (S), ABabyEater (N)\nWinner: sompm\n\n\tABabyEater: homeworld star1\r\n\n\nHomeworlds Online (SDG# 19020)\nStarted: 2011.2.12, Ended: 2011.3.3\nParticipants: mathochist (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\talexcobo: Hello. Have a good game!\n\n\nHomeworlds Online (SDG# 19119)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.13, Ended: 2011.2.28\nParticipants: TwoShort (S), goulo (N)\nWinner: TwoShort\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) goulo: Trade Y1 G1 Goulo\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) goulo: Build Y1 Goulo\n\n8) TwoShort: Build G1 Twoshort\n\n9) goulo: Trade Y1 R1 Goulo\n\n10) TwoShort: Build G1 Twoshort\n\n11) goulo: Build G2 Goulo\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) goulo: Discover G2 Goulo R1 Rubeneto\n\n14) TwoShort: Build G2 Bluestar\n\n15) goulo: Sacrifice G1 Goulo\nBuild Y1 Goulo\n\n16) TwoShort: Trade G2 R2 Bluestar\n\n17) goulo: Build R2 Goulo\n\n18) TwoShort: Build Y1 Twoshort\n\n19) goulo: Build Y2 Goulo\n\n20) TwoShort: Move Y1 Twoshort Bluestar\n\n21) goulo: Move Y2 Goulo Rubeneto\n\n22) TwoShort: Build Y2 Twoshort\n\n23) goulo: Discover R2 Goulo B1 Safireto\n\n24) TwoShort: Build G1 Bluestar\n\n25) goulo: Build G2 Rubeneto\n\n26) TwoShort: Discover G1 Bluestar Y3 Yolonda\n\n27) goulo: Move Y1 Goulo Safireto\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n29) goulo: Sacrifice G2 Rubeneto\nBuild Y2 Goulo\nBuild Y3 Safireto\n\n30) TwoShort: Discover G2 Bluestar B1 Bluonia\n\n31) goulo: Build G2 Rubeneto\n\n32) TwoShort: Move G1 Yolonda Bluestar\n\n33) goulo: Move Y3 Safireto Bluestar\n\n34) TwoShort: Sacrifice Y2 Twoshort\nDiscover R2 Bluestar B3 Bluto\nDiscover Y1 Bluestar B1 Blutacular\n\n35) goulo: Sacrifice R2 Safireto\nAttack G1 Bluestar\nAttack G1 Bluestar\n\n36) TwoShort: Trade G3 R3 Twoshort\n\n37) goulo: Build Y2 Bluestar\n\n38) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Bluonia\nBuild G3 Twoshort\nBuild Y3 Blutacular\n\n39) goulo: Sacrifice Y2 Bluestar\nMove G1 Bluestar Bluonia\nMove G1 Bluestar Bluonia\nCatastrophe Bluonia G\n\n40) TwoShort: Move Y3 Blutacular Goulo\n\n41) goulo: Attack Y3 Goulo\n\n42) TwoShort: Move Y1 Blutacular Goulo\nCatastrophe Goulo Yellow\n\n43) goulo: Build R2 Goulo\n\n44) TwoShort: Trade R3 Y3 Twoshort\n\n45) goulo: Build G1 Rubeneto\n\n46) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n47) goulo: Move G2 Rubeneto Yolonda\n\n48) TwoShort: Discover G1 Yolonda Y3 Yoyo\n\tTwoShort: Sorry to be slow; life has been busy and this game has been hard :)\n\tgoulo: No problem about slow turns, that&#39;s the advantage of email/web instead of real time.\r\nAlthough I&#39;m not sure how hard it&#39;s really being for you - at least I feel like you&#39;re kicking my ass. :)\n\tTwoShort: I always regret it if I comment on a game in progress, because the game or my opinion changes immediately.  But I&#39;d say this game is about even on material now; it&#39;s a hard game because the position is tricky, and I feel like I should have a move that pushes it over the edge to where I&#39;m kicking your ass :)  But I can&#39;t come up with it, so either you&#39;ll manage to get out of the present tactical difficulty, or one of us will screw up.\n\n49) goulo: Trade R2 Y2 Goulo\n\n50) TwoShort: Build G1 Twoshort\n\tgoulo: OK, I&#39;m happy that at least I am not a complete pushover in any case. :)\n\n51) goulo: Build Y1 Goulo\n\n52) TwoShort: Discover Y1 Twoshort R2 D2\n\n53) goulo: Move G2 Rubeneto D2\n\n54) TwoShort: Sacrifice G1 Yoyo\nBuild Y3 Twoshort\n\n55) goulo: Attack Y1 D2\n\tgoulo: ah, yes - good one.\n\n56) TwoShort: Trade G3 B3 Twoshort\n\n57) goulo: Move Y3 Bluestar Bluto\n\n58) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Twoshort D2\nMove B3 D2 Rubeneto\nMove B3 Rubeneto Goulo\n\n59) goulo: Sacrifice R1 Goulo\nAttack R2 Bluto\n\n60) TwoShort: Trade Y3 R3 Twoshort\n\n\tgoulo: Wow, tough one. Thanks very much for the game!\n\tTwoShort: Thanks for a great game!\n\nHomeworlds Online (SDG# 19125)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.14, Ended: 2011.3.2\nParticipants: shmil1 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) ajo: Build G1 Ajo\n\n4) shmil1: Build Y1 Shmil1\n\n5) ajo: Build G1 Ajo\n\n6) shmil1: Build Y1 Shmil1\n\n7) ajo: Discover G1 Ajo B2 Alpha\n\n8) shmil1: Discover Y1 Shmil1 G3 Zel\n\n9) ajo: Build G2 Alpha\n\n10) shmil1: Build Y1 Zel\n\n11) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n12) shmil1: Trade Y3 G3 Shmil1\n\n13) ajo: Trade G2 Y2 Alpha\n\n14) shmil1: Trade Y1 B1 Shmil1\n\tajo: Sorry, shmil, but I may have to resign this game for real-world reasons. And it was going so well for me... :P\n\n15) ajo: Trade G1 B1 Alpha\n\n16) shmil1: Build B2 Shmil1\n\n17) ajo: Sacrifice Y2 Alpha\nMove B1 Alpha Zel\nMove B1 Zel Shmil1\nCatastrophe Shmil1 Blue\n\n18) shmil1: Move Y1 Zel Alpha\n\tajo: Okay, at this rate the game may be over before I need to resign anyway. ;)\n\n19) ajo: Trade G3 Y3 Ajo\n\n\tajo: Check.\n\nHomeworlds Online (SDG# 19126)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.14, Ended: 2011.3.18\nParticipants: SilentTitan (S), sompm (N)\nWinner: SilentTitan\n\n1) sompm: Homeworld B1 G3 Y3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sompm: Build Y1 Sompm\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sompm: Discover Y1 Sompm G2 Specifically\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) sompm: Build Y2 Specifically\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Discover\n\n11) sompm: Discover Y2 Specifically B3 Potatoes\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) sompm: Build Y2 Specifically\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Discover\nBuild Y3 Silenttitan\nBuild G1 Silenttitan\n\n\tSilentTitan: hey I have an Idea..... let&#39;s use up all the yellow in the first 8 turns.\r\n\n\tsompm: I like it.\n\nHomeworlds Online (SDG# 19073)\nVariants: &quot;Sinister&quot;\nStarted: 2011.2.14, Ended: 2011.3.18\nParticipants: lorgar (S), alexcobo (N), BlueIstari (E)\nWinner: lorgar\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) BlueIstari: Homeworld G2 B1 Y3\n\talexcobo: Hello! Good gaming...\n\n3) lorgar: Homeworld B3 Y1 G3\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) BlueIstari: Build Y1 Blueistari\n\n6) lorgar: Build G1 Lorgar\n\tBlueIstari: Good gaming to all\n\n7) alexcobo: Trade Y1 R1 Alexcobo\n\n8) BlueIstari: Trade Y3 R3 Blueistari\n\n9) lorgar: Trade G1 R1 Lorgar\n\n10) alexcobo: Discover R1 Alexcobo G1 Alba\n\n11) BlueIstari: Build R1 Blueistari\n\n12) lorgar: Build G1 Lorgar\n\n13) alexcobo: Build Y1 Alexcobo\n\n14) BlueIstari: Discover R1 Blueistari G3 Bilbo\n\n15) lorgar: Discover R1 Lorgar G2 Amadis\n\n16) alexcobo: Trade Y1 G1 Alexcobo\n\n17) BlueIstari: Build Y1 Blueistari\n\n18) lorgar: Trade G1 B1 Lorgar\n\n19) alexcobo: Build G1 Alexcobo\n\n20) BlueIstari: Move Y1 Blueistari Bilbo\n\n21) lorgar: Move B1 Lorgar Amadis\n\n22) alexcobo: Discover G1 Alexcobo B1 Ordo\n\n23) BlueIstari: Build Y1 Blueistari\n\n24) lorgar: Build B1 Amadis\n\n25) alexcobo: Build Y2 Alexcobo\n\n26) BlueIstari: Build Y2 Bilbo\n\n27) lorgar: Build B2 Amadis\n\n28) alexcobo: Build G1 Ordo\n\n29) BlueIstari: Build Y2 Blueistari\n\n30) lorgar: Trade B2 Y2 Amadis\n\n31) alexcobo: Build G2 Alexcobo\n\n32) BlueIstari: Trade Y2 B2 Blueistari\n\n33) lorgar: Build Y2 Amadis\n\n34) alexcobo: Trade G2 R2 Alexcobo\n\n35) BlueIstari: Trade Y1 R1 Blueistari\n\n36) lorgar: Build R2 Amadis\n\n37) alexcobo: Build R2 Alba\n\n38) BlueIstari: Build B2 Blueistari\n\n39) lorgar: Discover Y2 Amadis G3 Mordekaiser\n\n40) alexcobo: Build R2 Alexcobo\n\n41) BlueIstari: Discover Y1 Bilbo G2 Oblib\n\n42) lorgar: Move R1 Amadis Mordekaiser\n\n43) alexcobo: Build G2 Ordo\n\n44) BlueIstari: Build R3 Bilbo\n\n45) lorgar: Build R3 Mordekaiser\n\n46) alexcobo: Build R3 Alba\n\n47) BlueIstari: Sacrifice Y2 Bilbo\nMove R3 Bilbo Oblib\nMove R3 Oblib Lorgar\n\n48) lorgar: Sacrifice R1 Mordekaiser\nAttack R3E Lorgar\n\n49) alexcobo: Move Y2 Alexcobo Alba\n\n50) BlueIstari: Build R1 Bilbo\n\n51) lorgar: Sacrifice Y2 Amadis\nMove B1 Amadis Mordekaiser\nMove B1 Mordekaiser Blueistari\nCatastrophe Blueistari Blue\n\n52) alexcobo: Sacrifice Y2 Alba\nMove R1 Alba Blueistari\nMove R2 Alba Blueistari\nCatastrophe Blueistari R\n\n53) BlueIstari: Move Y1 Blueistari Bilbo\n\n54) alexcobo: Sacrifice G2 Ordo\nBuild Y1 Alexcobo\nBuild Y2 Alexcobo\n\n55) lorgar: Build Y2 Mordekaiser\n\n56) alexcobo: Sacrifice Y2 Alexcobo\nMove R2 Alexcobo Ordo\nMove R2 Ordo Bilbo\n\n57) lorgar: Sacrifice Y2 Mordekaiser\nMove R3 Mordekaiser Ordo\nMove R2 Amadis Bilbo\nCatastrophe Bilbo Red\n\n58) alexcobo: Sacrifice G1 Ordo\nBuild Y2 Alexcobo\n\n59) lorgar: Build Y2 Mordekaiser\n\n60) alexcobo: Sacrifice Y1 Alexcobo\nMove R3 Alba Mordekaiser\n\n61) lorgar: Sacrifice Y2 Mordekaiser\nMove Y2 Mordekaiser Ordo\nPass\n\n62) alexcobo: Sacrifice G1 Ordo\nBuild G1 Alexcobo\n\n63) lorgar: Trade Y2 G2 Ordo\n\n64) alexcobo: Discover Y2 Alexcobo R1 Hot\n\n65) lorgar: Build G1 Ordo\n\n66) alexcobo: Move Y2 Hot Mordekaiser\n\n67) lorgar: Build R1 Ordo\n\n68) alexcobo: Move R3 Mordekaiser Oblib\n\n69) lorgar: Trade G2 Y2 Ordo\n\n70) alexcobo: Attack Y1E Oblib\n\n71) lorgar: Move G1 Ordo Alexcobo\nCatastrophe Alexcobo Green\n\n72) alexcobo: Build Y1 Oblib\n\n73) lorgar: Trade R1 B1 Ordo\n\talexcobo: I completly missed that!\n\n74) alexcobo: Build Y2 Mordekaiser\n\n75) lorgar: Trade B1 G1 Ordo\n\n76) alexcobo: Build R1 Oblib\n\n77) lorgar: Build Y2 Ordo\n\n78) alexcobo: Sacrifice Y2 Mordekaiser\nMove Y1 Oblib Ordo\nMove Y1 Oblib Ordo\nCatastrophe Ordo Y\n\n79) lorgar: Build G1 Ordo\n\n80) alexcobo: Build R1 Oblib\n\tlorgar: and me this one. Guess we&#39;re even now =)\n\n81) lorgar: Trade G1 Y1 Ordo\n\n82) alexcobo: Build Y1 Mordekaiser\n\n83) lorgar: Build Y2 Ordo\n\n84) alexcobo: Sacrifice Y1 Mordekaiser\nMove R1 Oblib Bilbo\n\n85) lorgar: Build B1 Amadis\n\n86) alexcobo: Attack Y1E Bilbo\n\n87) lorgar: Sacrifice Y1 Ordo\nDiscover B1 Amadis G3 Marchesnoires\n\n88) alexcobo: Build R1 Bilbo\n\n89) lorgar: Build B1 Marchesnoires\n\n90) alexcobo: Trade R2 G2 Alexcobo\n\n91) lorgar: Build B2 Marchesnoires\n\n92) alexcobo: Build G1 Alexcobo\n\n93) lorgar: Trade R3 Y3 Lorgar\n\n94) alexcobo: Build Y1 Mordekaiser\n\n95) lorgar: Sacrifice Y3 Lorgar\nMove B1 Marchesnoires Alexcobo\nMove B1 Marchesnoires Alexcobo\nMove B2 Marchesnoires Alexcobo\nCatastrophe Alexcobo Blue\n\n\nHomeworlds Online (SDG# 18980)\nStarted: 2011.2.14, Ended: 2011.2.16\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Discover G1 Lorgar B3 Camille\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) lorgar: Build G1 Lorgar\n\n8) TwoShort: Build Y1 Twoshort\n\n9) lorgar: Build G1 Lorgar\n\n10) TwoShort: Build G2 Twoshort\n\n11) lorgar: Build G2 Camille\n\n12) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n13) lorgar: Trade G2 Y2 Camille\n\n14) TwoShort: Build Y2 Twoshort\n\n15) lorgar: Build Y3 Camille\n\n16) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Yolonda B3 Bluebird\nMove G2 Bluebird Lorgar\nCatastrophe Lorgar Green\n\tlorgar: thanks.\n\n\nHomeworlds Online (SDG# 19144)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.16, Ended: 2011.3.20\nParticipants: lorgar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G3 B1 Y3\n\n2) lorgar: Homeworld G1 Y2 B3\n\n3) Jesse: Build Y1 Jesse\n\n4) lorgar: Build B1 Lorgar\n\n5) Jesse: Discover Y1 Jesse G2 Grass\n\n6) lorgar: Discover B1 Lorgar G3 Amarante\n\n7) Jesse: Build Y1 Jesse\n\n8) lorgar: Build B1 Lorgar\n\n9) Jesse: Build Y1 Grass\n\n10) lorgar: Build B2 Amarante\n\n11) Jesse: Build Y2 Jesse\n\n12) lorgar: Trade B2 Y2 Amarante\n\n13) Jesse: Move Y1 Grass Amarante\n\n14) lorgar: Sacrifice Y2 Amarante\nMove B1 Amarante Grass\nMove B1 Grass Jesse\n\n15) Jesse: Trade Y2 R2 Jesse\n\n16) lorgar: Build B2 Lorgar\n\n17) Jesse: Build Y2 Amarante\n\n18) lorgar: Trade B2 R2 Lorgar\n\n19) Jesse: Attack B1 Jesse\n\n20) lorgar: Move B3 Lorgar Amarante\n\n21) Jesse: Build Y2 Amarante\n\n22) lorgar: Sacrifice R2 Lorgar\nAttack Y2N Amarante\nAttack Y2N Amarante\n\n23) Jesse: Build Y3 Amarante\nCatastrophe Amarante Y\n\n24) lorgar: Build B2 Amarante\n\n25) Jesse: Move B1 Jesse Grass\n\n26) lorgar: Trade B2 Y2 Amarante\n\n27) Jesse: Build B2 Grass\n\n28) lorgar: Build B2 Lorgar\n\n29) Jesse: Discover B2 Grass G3 Bud\n\n30) lorgar: Trade B1 R1 Lorgar\n\n31) Jesse: Discover Y1 Jesse G2 Leaf\n\n32) lorgar: Build Y1 Amarante\n\n33) Jesse: Build Y2 Jesse\n\n34) lorgar: Trade Y1 R1 Amarante\n\n35) Jesse: Build Y1 Leaf\n\n36) lorgar: Build Y3 Amarante\n\n37) Jesse: Build Y3 Grass\n\n38) lorgar: Move Y2 Amarante Leaf\n\n39) Jesse: Sacrifice Y2 Jesse\nMove Y3 Grass Bud\nMove Y3 Bud Lorgar\n\n40) lorgar: Sacrifice Y2 Leaf\nMove Y3 Amarante Lorgar\nMove B3 Amarante Lorgar\n\n41) Jesse: Sacrifice R2 Jesse\nAttack Y3 Lorgar\nAttack B3 Lorgar\n\n42) lorgar: Trade B2 Y2 Lorgar\nCatastrophe Lorgar Yellow\n\n43) Jesse: Trade B2 R2 Bud\n\n44) lorgar: Build R1 Lorgar\n\n45) Jesse: Sacrifice R2 Bud\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n\tJesse: Thanks for the game.  I think the main lesson here is not to leave your homeworld undefended.\n\tlorgar: it is. I tried this against twoshort, got caulked pretty fast ^^\n\nHomeworlds Online (SDG# 19159)\nStarted: 2011.2.17, Ended: 2011.2.21\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build B1 Twoshort\n\n5) lorgar: Discover G1 Lorgar B2 Amarante\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) lorgar: Build G1 Amarante\n\n8) TwoShort: Build B2 Twoshort\n\n9) lorgar: Trade G1 Y1 Amarante\n\n10) TwoShort: Discover B2 Twoshort G3 Grogar\n\n11) lorgar: Build G1 Lorgar\n\n12) TwoShort: Build B2 Twoshort\n\n13) lorgar: Build G1 Amarante\n\n14) TwoShort: Build B3 Grogar\n\n15) lorgar: Discover G1 Amarante B3 Onregardelefilm\n\n16) TwoShort: Build B3 Grogar\n\n17) lorgar: Build G2 Onregardelefilm\n\n18) TwoShort: Trade B3 R3 Grogar\n\n19) lorgar: Trade G2 Y2 Onregardelefilm\n\n20) TwoShort: Sacrifice Y3 Twoshort\nDiscover B3 Grogar G2 Gameover\nMove B3 Gameover Lorgar\nMove R3 Grogar Twoshort\n\n21) lorgar: Pass\n\n22) TwoShort: Sacrifice R3 Twoshort\nAttack G3 Lorgar\nAttack G1 Lorgar\nPass\n\n\nHomeworlds Online (SDG# 18990)\nStarted: 2011.2.17, Ended: 2011.3.1\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 Y1 Lorgar\n\tlorgar: wish you the same.\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Build G1 Lorgar\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) lorgar: Discover Y1 Lorgar G2 Captainharlock\n\n10) ts52: Build B1 Kermit\n\n11) lorgar: Trade G1 Y1 Lorgar\n\n12) ts52: Build B2 Kermit\n\n13) lorgar: Build Y2 Captainharlock\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) lorgar: Move Y1 Captainharlock Kermit\n\n16) ts52: Trade B1 R1 Kermit\n\n17) lorgar: Build Y3 Captainharlock\n\n18) ts52: Attack Y1 Kermit\n\n19) lorgar: Discover Y3 Captainharlock R3 Ultramar\n\n20) ts52: Move Y1 Kermit Captainharlock\n\n21) lorgar: Trade Y1 R1 Lorgar\n\n22) ts52: Build B1 Kermit\n\n23) lorgar: Move R1 Lorgar Captainharlock\n\n24) ts52: Discover Y1 Captainharlock G1 Robin\n\n25) lorgar: Build G1 Lorgar\n\n26) ts52: Build B2 Kermit\n\n27) lorgar: Trade G1 Y1 Lorgar\n\n28) ts52: Build Y3 Kermit\n\n29) lorgar: Build Y3 Captainharlock\n\n30) ts52: Trade Y3 R3 Kermit\n\n31) lorgar: Trade Y1 R1 Lorgar\n\n32) ts52: Move B2 Kermit Robin\n\n33) lorgar: Move Y3 Captainharlock Robin\n\n34) ts52: Move R3 Kermit Captainharlock\n\n35) lorgar: Discover Y2 Captainharlock R3 Snoop\n\n36) ts52: Build B2 Robin\n\n37) lorgar: Sacrifice R1 Captainharlock\nAttack B2S Robin\n\n38) ts52: Move Y1 Robin Captainharlock\n\n39) lorgar: Build R1 Lorgar\n\n40) ts52: Build R2 Kermit\n\n41) lorgar: Move Y3 Robin Kermit\n\n42) ts52: Trade B1 Y1 Kermit\n\n43) lorgar: Move Y3 Kermit Robin\n\n44) ts52: Build Y3 Captainharlock\n\n45) lorgar: Sacrifice R1 Lorgar\nAttack B2S Robin\n\n46) ts52: Build G1 Ts52\n\n47) lorgar: Trade B2 R2 Robin\n\n48) ts52: Move R1 Kermit Captainharlock\n\n49) lorgar: Build R1 Robin\n\n50) ts52: Move R3 Captainharlock Kermit\n\n51) lorgar: Sacrifice Y2 Snoop\nMove R1 Robin Kermit\nMove R2 Robin Kermit\nCatastrophe Kermit Red\n\n52) ts52: Build Y2 Kermit\n\n53) lorgar: Move Y3 Robin Kermit\nCatastrophe Kermit Yellow\n\n54) ts52: Move Y1 Captainharlock Kermit\n\n55) lorgar: Build B1 Robin\n\n56) ts52: Build B2 Kermit\n\n57) lorgar: Trade B1 Y1 Robin\n\n58) ts52: Build Y2 Captainharlock\n\n59) lorgar: Build B1 Robin\n\n60) ts52: Discover B2 Kermit G2 Oscar\n\n61) lorgar: Discover B1 Robin Y3 Mnemosine\n\tlorgar: wow 31move! I got better thanks to your teachings^^\n\n62) ts52: Build Y2 Kermit\n\n63) lorgar: Build G1 Lorgar\n\n64) ts52: Trade Y2 R2 Kermit\n\n65) lorgar: Move Y3 Ultramar Oscar\n\n66) ts52: Build Y2 Kermit\n\n67) lorgar: Sacrifice B1 Mnemosine\nPass\n\n68) ts52: Discover G1 Ts52 Y3 Bigbird\n\n69) lorgar: Build R1 Lorgar\n\n70) ts52: Discover Y1 Kermit B2 Gonzo\n\n71) lorgar: Move Y3 Oscar Kermit\n\n72) ts52: Sacrifice G1 Bigbird\nBuild Y3 Gonzo\n\n73) lorgar: Sacrifice R1 Lorgar\nAttack R2S Kermit\n\n74) ts52: Build G1 Ts52\n\n75) lorgar: Trade B2 G2 Robin\n\n76) ts52: Move B1 Kermit Captainharlock\n\n77) lorgar: Attack Y2S Kermit\n\n78) ts52: Build B1 Captainharlock\n\n79) lorgar: Move Y2 Kermit Captainharlock\n\n80) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Oscar\nBuild B3 Captainharlock\n\n81) lorgar: Move Y1 Robin Captainharlock\nCatastrophe Captainharlock Yellow\n\n82) ts52: Trade B3 Y3 Captainharlock\n\n83) lorgar: Move Y3 Kermit Oscar\n\n84) ts52: Sacrifice Y3 Gonzo\nMove B2 Oscar Lorgar\nMove B2 Oscar Lorgar\nMove B1 Captainharlock Lorgar\nCatastrophe Lorgar Blue\n\n85) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild R1 Kermit\nBuild R2 Lorgar\n\n86) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Captainharlock\n\n87) lorgar: Move G3 Lorgar Kermit\n\n88) ts52: Sacrifice Y3 Captainharlock\nMove Y2 Captainharlock Lorgar\nMove Y1 Gonzo Lorgar\nMove Y1 Gonzo Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: nice. I saw it but could not do a thing.\n\tts52: Thanks for the game!\n\tts52: yeah, once the doomsday machine starts rolling, it can be tough to stop.\n\nHomeworlds Online (SDG# 19167)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.17, Ended: 2011.2.20\nParticipants: Subhan64 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n\tts52: Have a good game!\n\nHomeworlds Online (SDG# 19166)\nVariants: &quot;Unrated&quot;\nStarted: 2011.2.18, Ended: 2011.2.23\nParticipants: b5mith (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) b5mith: Homeworld R1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n\nHomeworlds Online (SDG# 19179)\nStarted: 2011.2.18, Ended: 2011.3.5\nParticipants: jsydik (S), Knightsabre (N)\nWinner: jsydik\n\n1) Knightsabre: Homeworld B3 G1 Y3\n\n2) jsydik: Homeworld R3 B2 G3\n\n3) Knightsabre: Build Y1 Knightsabre\n\n4) jsydik: Build G1 Jsydik\n\n5) Knightsabre: Trade Y1 B1 Knightsabre\n\n6) jsydik: Trade G1 Y1 Jsydik\n\n7) Knightsabre: Build B1 Knightsabre\n\n8) jsydik: Build Y1 Jsydik\n\n9) Knightsabre: Trade B1 G1 Knightsabre\n\n10) jsydik: Discover Y1 Jsydik Y1 J2\n\n11) Knightsabre: Discover G1 Knightsabre R2 Moria\n\n12) jsydik: Discover Y1 J2 G2 J3\n\n13) Knightsabre: Build G1 Moria\n\n14) jsydik: Build G2 Jsydik\n\n15) Knightsabre: Build G2 Moria\n\n16) jsydik: Move Y1 J3 Knightsabre\n\n17) Knightsabre: Build B1 Knightsabre\n\n18) jsydik: Sacrifice G2 Jsydik\nBuild Y1 Knightsabre\nBuild Y2 Knightsabre\nCatastrophe Knightsabre Y\n\n19) Knightsabre: Trade B1 Y1 Knightsabre\n\n20) jsydik: Build G2 Jsydik\n\n21) Knightsabre: Build B1 Knightsabre\n\n22) jsydik: Discover G2 Jsydik Y1 J1\n\n23) Knightsabre: Move B1 Knightsabre Moria\n\n24) jsydik: Move G2 J1 Moria\nCatastrophe Moria G\n\n25) Knightsabre: Build B1 Knightsabre\n\n26) jsydik: Build G1 Jsydik\n\n27) Knightsabre: Move B1 Knightsabre Moria\n\n28) jsydik: Discover Y1 Jsydik Y1 J2\n\n29) Knightsabre: Trade B1 G1 Moria\n\n30) jsydik: Move Y1 J2 Jsydik\n\n31) Knightsabre: Trade B1 Y1 Moria\n\n32) jsydik: Discover G1 Jsydik R1 J2\n\n33) Knightsabre: Move G1 Moria J2\n\n34) jsydik: Attack G1N J2\n\n35) Knightsabre: Move Y1 Moria Knightsabre\n\n36) jsydik: Build Y2 Jsydik\n\n37) Knightsabre: Build Y2 Knightsabre\n\n38) jsydik: Sacrifice Y2 Jsydik\nDiscover G1 J2 Y2 J3\nMove G1 J3 Knightsabre\n\n39) Knightsabre: Trade Y1 R1 Knightsabre\n\n40) jsydik: Sacrifice G3 Jsydik\nBuild G2 Knightsabre\nBuild G2 Knightsabre\nBuild G2 J2\nCatastrophe Knightsabre G\n\n41) Knightsabre: Trade Y2 G2 Knightsabre\n\n42) jsydik: Sacrifice Y1 Jsydik\nMove G2 J2 Jsydik\n\n43) Knightsabre: Build R1 Knightsabre\n\n44) jsydik: Build G1 Jsydik\n\n45) Knightsabre: Move G2 Knightsabre J2\n\n46) jsydik: Trade G1 Y1 Jsydik\n\n47) Knightsabre: Trade R1 G1 Knightsabre\n\n48) jsydik: Build G1 J2\n\n49) Knightsabre: Build G2 Knightsabre\n\n50) jsydik: Build G3 Jsydik\n\n51) Knightsabre: Build G3 Knightsabre\n\n52) jsydik: Build G3 J2\nCatastrophe J2 G\n\n53) Knightsabre: Build Y1 Knightsabre\n\n54) jsydik: Trade G2 B2 Jsydik\n\n55) Knightsabre: Discover G1 Knightsabre G2 Lorien\n\n56) jsydik: Build Y2 Jsydik\n\n57) Knightsabre: Move Y1 Knightsabre Lorien\n\n58) jsydik: Sacrifice Y2 Jsydik\nDiscover B2 Jsydik B1 J1\nMove B2 J1 Knightsabre\n\n59) Knightsabre: Attack B2 Knightsabre\n\n60) jsydik: Build Y2 Jsydik\n\n61) Knightsabre: Move B2 Knightsabre Lorien\n\n62) jsydik: Trade Y2 B2 Jsydik\n\n63) Knightsabre: Discover G1 Lorien B3 Fangorn\n\n64) jsydik: Discover B2 Jsydik G1 J2\n\n65) Knightsabre: Build Y2 Lorien\n\n66) jsydik: Build B1 J2\n\n67) Knightsabre: Sacrifice Y2 Lorien\nMove B1 Knightsabre J2\nMove B2 Lorien J2\nCatastrophe J2 Blue\n\n68) jsydik: Build Y2 Jsydik\n\n69) Knightsabre: Build Y2 Lorien\n\n70) jsydik: Trade Y2 B2 Jsydik\n\n71) Knightsabre: Move Y2 Lorien Fangorn\n\n72) jsydik: Discover B2 Jsydik G1 Dale\n\n73) Knightsabre: Build Y2 Fangorn\n\n74) jsydik: Build B1 Dale\n\n75) Knightsabre: Trade G3 Y3 Knightsabre\n\n76) jsydik: Build Y2 Jsydik\n\n77) Knightsabre: Trade Y1 B1 Knightsabre\n\n78) jsydik: Sacrifice Y2 Jsydik\nMove B2 Dale Knightsabre\nMove B1 Dale Knightsabre\nCatastrophe Knightsabre Blue\n\n\nHomeworlds Online (SDG# 18951)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.19, Ended: 2011.3.13\nParticipants: SilentTitan (S), daselva (N)\nWinner: SilentTitan\n\n1) daselva: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) daselva: Build G1 Daselva\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) daselva: Trade G1 Y1 Daselva\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) daselva: Build G1 Daselva\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) daselva: Trade G1 R1 Daselva\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) daselva: Build R1 Daselva\n\n12) SilentTitan: Trade G1 B1 Silenttitan\n\n13) daselva: Discover R1 Daselva G3 S1\n\n14) SilentTitan: Discover B1 Silenttitan Y1 Decoy\n\n15) daselva: Build R1 S1\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) daselva: Build Y2 Daselva\n\n18) SilentTitan: Discover Y2 Silenttitan B1 Trade\n\n19) daselva: Build R2 S1\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Trade\nBuild Y3 Silenttitan\n\n21) daselva: Build Y3 Daselva\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Trade S1\nMove Y2 S1 Daselva\nCatastrophe Daselva Yellow\n\n23) daselva: Build R2 Daselva\n\n24) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y1 Trade\n\n25) daselva: Trade R2 Y2 Daselva\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) daselva: Sacrifice Y2 Daselva\nDiscover R2 S1 G2 S2\nMove R2 S2 Decoy\n\n28) SilentTitan: Sacrifice B1 Decoy\nTrade Y3 R3 Trade\n\n29) daselva: Build G1 Daselva\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Trade\nBuild R3 Trade\nBuild Y2 Silenttitan\n\n\nHomeworlds Online (SDG# 19181)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.19, Ended: 2011.3.8\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) lorgar: Homeworld G2 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build B1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade B1 G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Discover G1 Lorgar Y3 Adamante\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) lorgar: Build G1 Adamante\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Discover\n\n12) lorgar: Discover G1 Adamante B1 Amarante\n\n13) SilentTitan: Trade Y2 R2 Silenttitan\n\n14) lorgar: Build G2 Amarante\n\n15) SilentTitan: Move R2 Silenttitan Amarante\n\n16) lorgar: Trade B3 G3 Lorgar\n\n17) SilentTitan: Attack G2 Amarante South\n\n18) lorgar: Build G2 Adamante\n\n19) SilentTitan: Sacrifice Y1 Discover\nDiscover G2 Amarante Y3 Dos\n\n20) lorgar: Discover G1 Adamante B1 Mored\n\n21) SilentTitan: Attack G1 Amarante South\n\n22) lorgar: Discover G2 Adamante B1 Theodred\n\n23) SilentTitan: Build R1 Amarante\n\n24) lorgar: Build G1 Theodred\n\n25) SilentTitan: Build G3 Dos\n\n26) lorgar: Trade G2 Y2 Theodred\n\n27) SilentTitan: Move G3 Dos Lorgar\n\n28) lorgar: Build G2 Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: thx for the game\n\tSilentTitan: thank you\n\nHomeworlds Online (SDG# 19191)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.20, Ended: 2011.2.22\nParticipants: alexcobo (S), Gidaio (N)\nWinner: alexcobo\n\n1) Gidaio: Homeworld Y3 B1 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) Gidaio: Build G1 Gidaio\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) Gidaio: Build G1 Gidaio\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) Gidaio: Discover G1 Gidaio Y2 Gamma\n\n8) alexcobo: Trade Y1 G1 Alexcobo\n\n9) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Gidaio\nBuild G2 Gidaio\nBuild G2 Gamma\n\n10) alexcobo: Sacrifice Y3 Alexcobo\nDiscover G1 Alexcobo R1 Doom\nMove G1 Doom Gamma\nMove G1 Gamma Gidaio\nCatastrophe Gidaio G\n\n\talexcobo: Thanks for the game!\n\tGidaio: ...ouch.\r\nGood game. Should have seen that coming... *smacks himself in face*\n\nHomeworlds Online (SDG# 19212)\nStarted: 2011.2.21, Ended: 2011.3.1\nParticipants: TwoShort (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 18983)\nVariants: &quot;Sinister, Hard time&quot;\nStarted: 2011.2.23, Ended: 2011.6.7\nParticipants: lorgar (S), Mandrel (W), goulo (N), alexcobo (E)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\tgoulo: hi all!\n\n3) lorgar: Homeworld Y1 G2 B3\n\n4) Mandrel: Homeworld B3 R2 G3\n\n5) goulo: Build G1 Goulo\n\tMandrel: Hey! Enjoy the game!\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) lorgar: Build B1 Lorgar\n\talexcobo: Good gaming!\n\tlorgar: gl hf!\n\n8) Mandrel: Build G1 Mandrel\n\n9) goulo: Trade G1 Y1 Goulo\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) lorgar: Trade B1 Y1 Lorgar\n\n12) Mandrel: Trade G3 Y3 Mandrel\n\n13) goulo: Build Y2 Goulo\n\n14) alexcobo: Trade Y1 R1 Alexcobo\n\n15) lorgar: Build B1 Lorgar\n\n16) Mandrel: Build G1 Mandrel\n\n17) goulo: Trade Y1 G1 Goulo\n\n18) alexcobo: Build R1 Alexcobo\n\n19) lorgar: Trade B1 R1 Lorgar\n\n20) Mandrel: T G1 R1 Mandrel\n\n21) goulo: Build Y1 Goulo\n\n22) alexcobo: Discover R1 Alexcobo G1 One\n\n23) lorgar: Build B1 Lorgar\n\n24) Mandrel: Build G1 Mandrel\n\n25) goulo: Trade Y2 R2 Goulo\n\n26) alexcobo: Build R1 Alexcobo\n\n27) lorgar: Build R2 Lorgar\n\n28) Mandrel: Trade G1 B1 Mandrel\n\n29) goulo: Move R2 Goulo One\n\n30) alexcobo: Sacrifice Y1 Alexcobo\nDiscover R1 One G3 Three\n\n31) lorgar: Move R2 Lorgar Three\n\n32) Mandrel: Discover R1 Mandrel G1 Hall\n\n33) goulo: Build Y1 Goulo\n\n34) alexcobo: Build Y1 Alexcobo\n\n35) lorgar: Discover Y1 Lorgar G3 Four\n\n36) Mandrel: Build R2 Hall\n\n37) goulo: Move Y1 Goulo One\n\n38) alexcobo: Trade R1 G1 Alexcobo\n\n39) lorgar: Attack R1E Three\n\n40) Mandrel: Build Y2 Mandrel\n\n41) goulo: Discover G1 Goulo B1 Safireto\n\n42) alexcobo: Build G2 Alexcobo\n\n43) lorgar: Sacrifice B1 Lorgar\nTrade R1 B1 Three\n\n44) Mandrel: Move Y2 Mandrel Hall\n\n45) goulo: Build Y2 One\n\n46) alexcobo: Build Y2 Alexcobo\n\n47) lorgar: Trade R2 Y2 Three\n\n48) Mandrel: Build G2 Mandrel\n\n49) goulo: Move Y1 One Alexcobo\nCatastrophe Alexcobo Y\n\n50) alexcobo: Build R1 Alexcobo\n\n51) lorgar: Build B1 Three\n\n52) Mandrel: Move B1 Mandrel Hall\n\n53) goulo: Build G2 Goulo\n\n54) alexcobo: Trade G1 Y1 Alexcobo\n\n55) lorgar: Trade B1 R1 Three\n\n56) Mandrel: Build B1 Hall\n\n57) goulo: Build R2 One\n\n58) alexcobo: Build R2 Alexcobo\n\n59) lorgar: Build R3 Three\n\n60) Mandrel: Trade R1 G1 Hall\n\n61) goulo: Build G2 Safireto\n\n62) alexcobo: Build G3 Alexcobo\n\n63) lorgar: Move R3 Three Safireto\n\n64) Mandrel: Discover G1 Mandrel B1 Sixth\n\n65) goulo: Sacrifice Y2 One\nMove G1 Safireto Alexcobo\nDiscover G2 Safireto Y3 Citronego\nCatastrophe Alexcobo G\n\n66) alexcobo: Trade R1 G1 Alexcobo\n\n67) lorgar: Build B2 Three\n\n68) Mandrel: Build G2 Sixth\n\n69) goulo: Build G3 Citronego\n\n70) alexcobo: Build G3 Alexcobo\n\n71) lorgar: Build R1 Three\n\n72) Mandrel: Build Y1 Hall\n\n73) goulo: Build Y2 Goulo\n\n74) alexcobo: Build Y2 Alexcobo\n\n75) lorgar: Sacrifice Y2 Three\nMove R3 Safireto Four\nMove R3 Four Sixth\n\n76) Mandrel: Sacrifice G2 Sixth\nBuild G2 Mandrel\nBuild Y2 Mandrel\n\n77) goulo: Move Y1 Goulo One\n\n78) alexcobo: Move R2 Alexcobo Four\n\n79) lorgar: Attack G1W Sixth\n\n80) Mandrel: Trade G2 B2 Mandrel\n\n81) goulo: Sacrifice G2 Citronego\nBuild Y2 Goulo\nBuild Y3 One\n\n82) alexcobo: Attack Y1S Four\n\n83) lorgar: Trade R3 Y3 Sixth\n\n84) Mandrel: Build G2 Mandrel\n\n85) goulo: Discover R2 One Y3 Sunego\n\n86) alexcobo: Build G2 Alexcobo\n\n87) lorgar: Move G1 Sixth Alexcobo\nCatastrophe Alexcobo Green\n\n88) Mandrel: Discover B2 Mandrel G1 Good\n\n89) goulo: Build G1 Citronego\n\n90) alexcobo: Trade Y2 G2 Alexcobo\n\n91) lorgar: Trade Y3 G3 Sixth\n\n92) Mandrel: Build B1 Good\n\n93) goulo: Sacrifice Y2 Goulo\nMove G1 Citronego Hall\nMove G2 Goulo Hall\nCatastrophe Hall G\n\n94) alexcobo: Build G1 Alexcobo\n\n95) lorgar: Trade B1 Y1 Three\n\n96) Mandrel: Move Y2 Mandrel Good\n\n97) goulo: Build Y2 Goulo\n\n98) alexcobo: Build Y2 Four\n\n99) lorgar: Build G1 Sixth\n\n100) Mandrel: Build Y2 Good\n\n101) goulo: Discover Y1 One Y3 Polenego\n\n102) alexcobo: Trade Y1 B1 Alexcobo\n\n103) lorgar: Sacrifice Y1 Three\nMove G3 Sixth Sunego\n\n104) Mandrel: Trade B2 R2 Good\n\n105) goulo: Discover R2 Sunego Y1 Citroneto\n\n106) alexcobo: Move Y1 Four Alexcobo\n\n107) lorgar: Build G1 Sunego\n\n108) Mandrel: Build B1 Good\n\n109) goulo: Build G2 Citronego\n\n110) alexcobo: Build Y1 Four\n\n111) lorgar: Sacrifice G3 Sunego\nBuild G3 Sunego\nBuild R1 Three\nBuild R3 Lorgar\n\n112) Mandrel: Build R3 Good\n\n113) goulo: Sacrifice G3 Citronego\nBuild G3 Citronego\nBuild R3 Citroneto\nBuild R3 One\n\n114) alexcobo: Move R1 Alexcobo Three\nCatastrophe Three R\n\n115) lorgar: Move R1 Lorgar Sunego\n\n116) Mandrel: Move R3 Good Four\n\n117) goulo: Discover G3 Citronego B1 Safireto\n\n118) alexcobo: Sacrifice G2 Alexcobo\nBuild R1 Four\nBuild R1 Four\nCatastrophe Four R\n\n119) lorgar: Build B2 Lorgar\n\n120) Mandrel: Trade G2 B2 Mandrel\n\n121) goulo: Move R2 One Alexcobo\n\n122) alexcobo: Build G2 Alexcobo\n\n123) lorgar: Trade B2 G2 Lorgar\n\n124) Mandrel: Sacrifice Y2 Good\nMove B1 Good Alexcobo\nMove B1 Good Alexcobo\nCatastrophe Alexcobo Blue\n\n125) goulo: Build G1 Citronego\n\tgoulo: and then there were three...\n\n126) lorgar: Trade G2 Y2 Lorgar\n\n127) Mandrel: Build R1 Good\n\n128) goulo: Move R3 Citroneto Four\n\n129) lorgar: Build B1 Three\n\n130) Mandrel: Build G2 Mandrel\n\n131) goulo: Attack Y2E Four\n\n132) lorgar: Move Y2 Lorgar Three\n\n133) Mandrel: Trade G2 R2 Mandrel\n\n134) goulo: Build G2 Safireto\n\n135) lorgar: Trade B1 R1 Three\n\n136) Mandrel: Build G2 Mandrel\n\n137) goulo: Attack Y1E Four\n\n138) lorgar: Discover B2 Three Y1 Thirteenth\n\n139) Mandrel: Discover R2 Mandrel B1 Quick\n\n140) goulo: Move Y1 Four Lorgar\n\n141) lorgar: Attack Y1N Lorgar\n\n142) Mandrel: Move G2 Mandrel Quick\n\n143) goulo: Sacrifice Y3 One\nMove Y1 Polenego Lorgar\nMove Y2 Four Lorgar\nMove G1 Citronego Lorgar\nCatastrophe Lorgar Y\n\n144) lorgar: Sacrifice Y2 Three\nMove G3 Sunego Safireto\nMove G1 Sunego Safireto\nCatastrophe Safireto Green\n\n145) Mandrel: Build Y1 Mandrel\n\n146) goulo: Sacrifice G2 Citronego\nBuild G1 Lorgar\nBuild G2 Lorgar\nCatastrophe Lorgar G\n\tgoulo: good epic game, thanks all! \n\n\nHomeworlds Online (SDG# 19227)\nVariants: &quot;Hard time&quot;\nStarted: 2011.2.24, Ended: 2011.3.13\nParticipants: Subhan64 (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) Subhan64: Homeworld B1 Y2 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) Subhan64: Build G1 Subhan64\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Subhan64: Build G1 Subhan64\n\n7) alexcobo: Discover Y1 Alexcobo G1 Alba\n\n8) Subhan64: Discover G3 Subhan64 G3 Ceti_alpha\n\n9) alexcobo: Build Y1 Alexcobo\n\n10) Subhan64: Build G2 Subhan64\n\n11) alexcobo: Build Y2 Alba\n\n12) Subhan64: Discover G1 Subhan64 Y3 Sirius\n\n13) alexcobo: Trade Y1 B1 Alexcobo\n\n14) Subhan64: Trade G2 Y2 Subhan64\n\n15) alexcobo: Sacrifice B1 Alexcobo\nTrade Y2 G2 Alba\n\n16) Subhan64: Build G2 Subhan64\n\n17) alexcobo: Build G2 Alba\n\n18) Subhan64: Build Y1 Subhan64\n\n19) alexcobo: Build Y2 Alba\n\n20) Subhan64: Trade Y1 B1 Subhan64\n\n21) alexcobo: Sacrifice G2 Alba\nBuild Y1 Alexcobo\nBuild Y3 Alba\n\n22) Subhan64: Sacrifice B1 Subhan64\nTrade G3 R3 Ceti_alpha\n\n23) alexcobo: Trade Y3 R3 Alexcobo\n\n24) Subhan64: Build Y3 Subhan64\n\n25) alexcobo: Sacrifice Y2 Alba\nMove Y1 Alba Sirius\nMove Y1 Sirius Subhan64\nCatastrophe Subhan64 Y\n\n26) Subhan64: Trade G1 Y1 Subhan64\n\n\n27) alexcobo: Move Y3 Alba Sirius\n\n28) Subhan64: Sacrifice Y1 Subhan64\nMove R3 Ceti_alpha Subhan64\n\n29) alexcobo: Build R1 Alexcobo\n\n30) Subhan64: Build R1 Subhan64\n\n31) alexcobo: Build R1 Alexcobo\n\n\tSubhan64: thanks, good game!\n\nHomeworlds Online (SDG# 19115)\nStarted: 2011.2.27, Ended: 2011.3.2\nParticipants: daselva (S), mathochist (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 19213)\nStarted: 2011.3.1, Ended: 2011.3.5\nParticipants: TwoShort (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Pass\n\n\nHomeworlds Online (SDG# 19169)\nStarted: 2011.3.1, Ended: 2011.4.1\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) lorgar: Homeworld G3 Y2 B3\n\tts52: Time for a rematch, eh? Have a good game!\n\tlorgar: thanks. lets fight again!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build B1 Lorgar\n\n5) ts52: Trade G1 B1 Ts52\n\n6) lorgar: Discover B1 Lorgar G1 Meuh\n\n7) ts52: Discover B1 Ts52 G2 Kermit\n\n8) lorgar: Build B2 Meuh\n\n9) ts52: Build B2 Kermit\n\n10) lorgar: Trade B2 Y2 Meuh\n\n11) ts52: Trade B1 Y1 Kermit\n\n12) lorgar: Build Y1 Meuh\n\n13) ts52: Build G1 Ts52\n\n14) lorgar: Trade Y1 R1 Meuh\n\n15) ts52: Trade G1 R1 Ts52\n\n16) lorgar: Build Y1 Meuh\n\n17) ts52: Build G1 Ts52\n\n18) lorgar: Trade Y2 G2 Meuh\n\n19) ts52: Discover G1 Ts52 Y2 Bigbird\n\n20) lorgar: Discover G2 Meuh G3 Amanite\n\n21) ts52: Build G1 Bigbird\n\n22) lorgar: Build B1 Lorgar\n\n23) ts52: Build G2 Ts52\n\n24) lorgar: Build B2 Meuh\n\n25) ts52: Trade G2 Y2 Ts52\n\n26) lorgar: Discover B2 Meuh G2 Lynx\n\n27) ts52: Move G1 Bigbird Ts52\n\n28) lorgar: Build R1 Meuh\n\n29) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Ts52\n\n30) lorgar: Build Y3 Meuh\n\n31) ts52: Sacrifice Y2 Ts52\nMove Y1 Kermit Meuh\nMove Y1 Kermit Meuh\nCatastrophe Meuh Yellow\n\n32) lorgar: Trade R1 Y1 Meuh\n\n33) ts52: Move Y3 Ts52 Kermit\n\n34) lorgar: Build Y1 Meuh\n\tlorgar: I deserved it\n\n35) ts52: Build Y1 Kermit\n\n36) lorgar: Trade B2 Y2 Lynx\n\n37) ts52: Build B2 Kermit\n\n38) lorgar: Sacrifice Y2 Lynx\nMove Y1 Meuh Kermit\nMove Y1 Meuh Kermit\nCatastrophe Kermit Yellow\n\n39) ts52: Trade B2 Y2 Kermit\n\n40) lorgar: Trade B1 R1 Lorgar\n\n41) ts52: B Y1 Kermit\n\n42) lorgar: Build R2 Meuh\n\n43) ts52: Build R2 Ts52\n\n44) lorgar: Trade R1 Y1 Meuh\n\n45) ts52: Build G2 Bigbird\n\n46) lorgar: Build B1 Lorgar\n\n47) ts52: Move R1 Ts52 Bigbird\n\n48) lorgar: Trade B1 Y1 Lorgar\n\n49) ts52: Discover Y2 Kermit R3 Elmo\n\n50) lorgar: Build Y3 Meuh\n\n51) ts52: Build Y3 Kermit\n\n52) lorgar: Move Y3 Meuh Bigbird\n\n53) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Bigbird\nBuild R2 Ts52\n\n54) lorgar: Move Y1 Meuh Kermit\n\n55) ts52: Move R2 Ts52 Kermit\n\n56) lorgar: Sacrifice R2 Meuh\nAttack G2N Bigbird\nAttack R1N Bigbird\n\n57) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Kermit\n\n58) lorgar: Sacrifice Y1 Lorgar Move Y3 Bigbird Elmo\nPass\n\n59) ts52: M Y3 Kermit Amanite\n\n60) lorgar: Sacrifice R1 Bigbird\nAttack R1N Bigbird\nPass\n\n61) ts52: Sacrifice R2 Ts52\nAttack G2 Amanite\nAttack R1 Bigbird\n\n62) lorgar: Build B1 Meuh\n\n63) ts52: Attack Y1 Kermit\n\n64) lorgar: Trade B1 R1 Meuh\n\n65) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Bigbird\n\n66) lorgar: Sacrifice R1 Meuh\nAttack R3N Bigbird\n\n67) ts52: Move R2 Kermit Meuh\n\n68) lorgar: Attack G1 Bigbird\n\n69) ts52: Move R1 Bigbird Amanite\n\n70) lorgar: Sacrifice Y3 Bigbird\nMove G1 Bigbird Ts52\nMove G2 Bigbird Ts52\nMove R3 Bigbird Ts52\nCatastrophe Ts52 Green\n\n71) ts52: Sacrifice Y2 Elmo\nMove B2 Kermit Ts52\nMove R3 Kermit Ts52\nCatastrophe Ts52 Red\n\n72) lorgar: Build B1 Meuh\n\n73) ts52: Attack B1 Meuh\n\n74) lorgar: Build B2 Lorgar\n\n75) ts52: Attack B1 Meuh\n\n76) lorgar: Discover B2 Lorgar G1 Hutchins\n\n77) ts52: Trade B2 G2 Ts52\n\n78) lorgar: Build B2 Hutchins\n\n79) ts52: Build G1 Amanite\n\n80) lorgar: Trade B2 Y2 Hutchins\n\n81) ts52: Build G3 Ts52\n\n82) lorgar: Build B2 Hutchins\n\n83) ts52: Move Y1 Kermit Meuh\n\n84) lorgar: Trade B2 R2 Hutchins\n\n85) ts52: Move Y3 Amanite Hutchins\n\n86) lorgar: Sacrifice Y2 Hutchins\nMove R2 Hutchins Kermit\nMove B2 Hutchins Kermit\n\n87) ts52: Move Y1 Kermit Amanite\n\n88) lorgar: Build B2 Kermit\n\n89) ts52: Move B1 Meuh Amanite\n\n90) lorgar: Trade B2 R2 Kermit\n\n91) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Amanite\nBuild R3 Meuh\n\n92) lorgar: Trade B2 Y2 Kermit\n\n93) ts52: Discover R2 Meuh Y2 Bigbird\n\n94) lorgar: Build R3 Lorgar\n\n95) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Hutchins\nBuild Y3 Meuh\n\n96) lorgar: Sacrifice R1 Lorgar\nPass\n\n97) ts52: Discover Y1 Amanite R1 Elmo\n\n98) lorgar: Move R2 Kermit Amanite\n\n99) ts52: Attack R2 Amanite\n\n100) lorgar: Build R3 Kermit\n\n101) ts52: S Y3 Meuh\nM Y1 Meuh Lorgar\nMove Y1 Elmo Lorgar\nM Y1 Hutchins Lorgar\nC Lorgar Yellow\n\n\n\n102) lorgar: Build B2 Lorgar\n\n103) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Bigbird\nBuild B2 Meuh\n\n104) lorgar: Sacrifice Y2 Kermit\nMove R2 Kermit Amanite\nMove B2 Lorgar Kermit\nCatastrophe Amanite Red\n\n105) ts52: Trade B2 Y2 Meuh\n\tlorgar: You&#39;re driving, may I ask if we&#39;re getting anywhere?\r\nI would ask you this too, do you think this game is truly a space strategy game? I am keen to think about it as a sociologic thing.\n\tts52: I&#39;m often slow to attack in this game. I&#39;ve been burned before, so I&#39;m extra cautious. As for the theme, it&#39;s not strictly necessary, but I like it.\n\n106) lorgar: Build R1 Kermit\n\n107) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Hutchins\nBuild R1 Meuh\n\n108) lorgar: Trade R3 Y3 Kermit\n\n109) ts52: Move Y1 Hutchins Amanite\n\n110) lorgar: Build R2 Kermit\n\n111) ts52: Move G1 Amanite Bigbird\n\n112) lorgar: Sacrifice Y3 Kermit\nMove R1 Kermit Meuh\nMove R2 Kermit Meuh\nPass\nCatastrophe Meuh Red\n\n113) ts52: Sacrifice Y2 Meuh\nMove G2 Ts52 Bigbird\nMove G2 Amanite Bigbird\n\n114) lorgar: Build B2 Kermit\n\n115) ts52: Sacrifice Y3 Hutchins\nMove G2 Bigbird Lorgar\nMove G2 Bigbird Lorgar\nMove G1 Bigbird Lorgar\nCatastrophe Lorgar Green\n\n\tts52: Thanks for the game!\n\tlorgar: AAAAAAAAH I GOT BLASTED! again ^^\n\nHomeworlds Online (SDG# 19225)\nStarted: 2011.3.1, Ended: 2011.4.25\nParticipants: Mandrel (S), Daarck (N)\nWinner: Mandrel\n\n1) Daarck: Homeworld G1 Y2 B3\n\n2) Mandrel: Homeworld R1 B3 G3\n\tMandrel: Have a good game!\n\n3) Daarck: Build B1 Daarck\n\tDaarck: You too.\n\n4) Mandrel: Build G1 Mandrel\n\n5) Daarck: Trade B1 Y1 Daarck\n\n6) Mandrel: T G1 Y1 Mandrel\n\n7) Daarck: Build B1 Daarck\n\n8) Mandrel: B G1 Mandrel\n\n9) Daarck: Build B1 Daarck\n\n10) Mandrel: Trade G1 B1 Mandrel\n\n11) Daarck: Discover B1 Daarck G3 Marco\n\tDaarck: NICE!\n\n12) Mandrel: Build B2 Mandrel\n\n13) Daarck: Trade B3 G3 Daarck\n\n14) Mandrel: T B1 R1 Mandrel\n\n15) Daarck: Build G1 Daarck\n\n16) Mandrel: Build G1 Mandrel\n\n17) Daarck: Move G1 Daarck Marco\n\n18) Mandrel: B G2 Mandrel\n\n19) Daarck: Build G2 Marco\n\n20) Mandrel: Discover G2 Mandrel Y2 Loom\n\n21) Daarck: Trade G2 R2 Marco\n\n22) Mandrel: Build G2 Loom\n\n23) Daarck: Build G2 Daarck\n\n24) Mandrel: Move B2 Mandrel Loom\n\n25) Daarck: Move Y1 Daarck Marco\n\n26) Mandrel: Trade G2 Y2 Loom\n\n27) Daarck: Move R2 Marco Loom\n\n28) Mandrel: S Y2 Loom\nMove G2 Loom Marco\nMove G2 Marco Daarck\nCatastrophe Daarck Green\n\n29) Daarck: Attack B2 Loom\n\tDaarck: Oh crap.\n\n30) Mandrel: M Y1 Mandrel Daarck\n\tMandrel: Not sure if i&#39;ve left myself too exposed now\n\n31) Daarck: Move G1 Marco Loom\n\tDaarck: Not quite sure what to do next actually...\n\n32) Mandrel: S G3 Mandrel\nBuild Y1 Daarck\nBuild Y2 Daarck\nBuild Y3 Daarck\nCatastrophe Daarck Yellow\n\tMandrel: Good game,\n\n\nHomeworlds Online (SDG# 19281)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.1, Ended: 2011.3.15\nParticipants: mneme (S), goulo (N)\nWinner: mneme\n\n1) goulo: Homeworld B2 R3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) mneme: Build G1 Mneme\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) goulo: Build G1 Goulo\n\n8) mneme: Build G1 Mneme\n\n9) goulo: Trade G1 R1 Goulo\n\n10) mneme: Trade G1 B1 Mneme\n\n11) goulo: Build G1 Goulo\n\n12) mneme: Build B1 Mneme\n\n13) goulo: Trade G1 B1 Goulo\n\n14) mneme: Discover B1 Mneme G3 Gunther\n\n15) goulo: Discover B1 Goulo G1 Smeraldeto\n\n16) mneme: Trade B1 R1 Gunther\n\n17) goulo: Build R2 Goulo\n\n18) mneme: Build R2 Gunther\n\n19) goulo: Move R2 Goulo Smeraldeto\n\n20) mneme: Sacrifice B1 Mneme\nTrade R2 Y2 Gunther\n\n21) goulo: Build Y1 Goulo\n\n22) mneme: Build Y2 Mneme\n\n23) goulo: Move Y1 Goulo Smeraldeto\n\n24) mneme: Trade Y2 R2 Mneme\n\n25) goulo: Build Y2 Smeraldeto\n\n26) mneme: Build G1 Mneme\n\n27) goulo: Trade Y1 G1 Smeraldeto\n\n28) mneme: Discover G1 Mneme Y3 Launcher\n\n29) goulo: Discover G1 Smeraldeto R3 Rubenego\n\n30) mneme: Build G2 Mneme\n\n31) goulo: Build G2 Rubenego\n\n32) mneme: Move R2 Mneme Launcher\n\n33) goulo: Sacrifice Y2 Smeraldeto\nMove G1 Rubenego Mneme\nMove G2 Rubenego Mneme\nCatastrophe Mneme G\n\n34) mneme: Build R2 Gunther\n\n35) goulo: Build R3 Smeraldeto\n\tmneme: oops.  Can&#39;t believe I missed that your 2 gs were one away from my home system.\r\n\n\n36) mneme: Build R3 Launcher\n\tgoulo: it was a lucky break for me!\n\n37) goulo: Trade R2 Y2 Smeraldeto\n\n38) mneme: Move R3 Launcher Mneme\n\n39) goulo: Build R2 Smeraldeto\n\n40) mneme: Trade R3 G3 Mneme\n\n41) goulo: Discover R1 Goulo Y1 Citroneto\n\n42) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Gunther\n\n43) goulo: Discover Y2 Smeraldeto R3 Rubenego\n\n44) mneme: Sacrifice Y2 Mneme\nMove R2 Gunther Smeraldeto\nMove R1 Gunther Smeraldeto\nCatastrophe Smeraldeto R\n\n45) goulo: Build Y2 Goulo\n\tmneme: um.  I think I may have gotten my own back for the blunder on move 16.  And then some.\n\tgoulo: Yeah...\n\n46) mneme: Trade Y3 G3 Mneme\n\n47) goulo: Build B1 Smeraldeto\n\tgoulo: My problem in Homeworlds is I can see and take opportunities like move 16, but I still don&#39;t have a good sense of long-term strategy and don&#39;t create such opportunities reliably enough, and fall into them on the wrong side of the opportunity like just now. :)\n\n48) mneme: Build Y3 Mneme\n\n49) goulo: Move Y1 Goulo Smeraldeto\n\n50) mneme: Move Y3 Gunther Citroneto\n\tgoulo: Hm, OK, now I&#39;m just playing like an idiot. Time for a break. :/\n\tmneme: Yeah, I was wondering about that one; it was pretty easy to deny it.\n\tgoulo: It was pure brainfart at my end - no idea how I didn&#39;t notice &quot;Oh, gee, he&#39;ll just build the last Y3.&quot;\n\tgoulo: one mistake compounding another\n\n51) goulo: Move R1 Citroneto Rubenego\n\tgoulo: looking at the situation now - your 3 big ships vs my 1 big ship - it is hard to imagine that a few turns ago, i was ahead. talk about snatching defeat from the jaws of victory. :P\r\nwell, i&#39;ll press on for a bit. :)\n\n52) mneme: Move Y3 Mneme Rubenego\n\n53) goulo: Discover Y2 Rubenego R2 Rubeno\n\n54) mneme: Attack R1 Rubenego\n\n55) goulo: Discover B1 Smeraldeto R3 Fragego\n\n56) mneme: Move R2 Launcher Smeraldeto\n\n57) goulo: Move Y1 Smeraldeto Fragego\n\n58) mneme: Sacrifice G1 Launcher\nBuild Y3 Rubenego\n\n59) goulo: Build G1 Goulo\n\n60) mneme: Attack B1 Smeraldeto\n\n61) goulo: Move G1 Goulo Citroneto\n\n62) mneme: Sacrifice R1 Rubenego\nAttack G1 Citroneto\n\n\tgoulo: Thanks for the game - no point in my further floundering...\n\tmneme: *nod* Sorry I didn&#39;t bring it to a conclusion faster; I kept having great opportunities for further locking you down that I took instead of, say, s y1 mneme, m Y3 Rubenego Smeraldeto, followed by t Y3 B3 Smeraldeto and a Y sac to put both ships in your homeworld.\n\tgoulo: No need for you to apologize for being careful when you&#39;re ahead. :)\r\nThat was an interesting tough game for me. Well, there&#39;s a reason your rating is higher than mine. :)\n\tmneme: Fair enough.  Twoshort can reliably beat me; I can&#39;t think of anyone else who can.  It was interesting for me too, as I was on the verge of surrendering when you knocked out my only large--but I figured you didn&#39;t have a knockout blow, so it was worth continuing to play and hope you&#39;d let me get a large back in exchange for your getting a large (as you did).\n\nHomeworlds Online (SDG# 19291)\nStarted: 2011.3.7, Ended: 2011.3.9\nParticipants: javico (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) javico: Homeworld B2 G1 Y3\n\tjavico: it&#39;s my first game, only want to learn\n\n3) ts52: Build G1 Ts52\n\tts52: Ok, feel free to ask any questions. The best way to ask is to post your question, then make a move and undo it. That way I get email from SDG.\n\n4) javico: Build Y1 Javico\n\n5) ts52: Build G1 Ts52\n\tjavico: the only way to destroy a system is by catastrophe?\n\tts52: catastrophe or abandonment. if all the ships in a system leave or are destroyed, the system goes too\n\n6) javico: Discover Y3 Javico R3 Nova\n\n7) ts52: Discover G1 Ts52 B3 Grover\n\n8) javico: Trade Y1 R1 Javico\n\tjavico: can i make one action for each system or only an action for turn?\n\tts52: only one action per turn. also, it&#39;s generally advisable to keep a large ship in your home system\n\n9) ts52: Trade G3 R3 Ts52\n\tjavico: can&#39;t i build a green ship in my homeworld?\n\n10) javico: Move Y3 Nova Javico\n\n11) ts52: Build R1 Ts52\n\tts52: you can only build a ship that&#39;s the same color of a ship of yours in that system\n\n12) javico: Build Y1 Javico\n\n13) ts52: Build G2 Grover\n\tjavico: i am an absolutely noob, haha i would like to play another game after this finishes\n\tts52: no problem, I&#39;d be happy to play several games\n\n14) javico: Build Y1 Javico\n\n15) ts52: Trade G2 Y2 Grover\n\n16) javico: Discover Y1 Javico B3 Nova\n\n17) ts52: Build G2 Grover\n\n18) javico: Trade Y3 G3 Javico\n\n19) ts52: Build G2 Ts52\n\n20) javico: Move R1 Javico Grover\n\n21) ts52: Sacrifice R1 Ts52\nAttack R1 Grover\n\n22) javico: Build Y2 Javico\n\n23) ts52: Build R1 Ts52\n\n24) javico: Trade Y1 R1 Javico\n\n25) ts52: Build R2 Grover\n\tjavico: i dont know what to do :)\n\n26) javico: Trade Y2 G2 Javico\n\n27) ts52: Build G3 Ts52\n\tts52: That&#39;s tough to say. Generally, if your enemy has a gun (red) you should have a gun. That&#39;s one good adage. Also, building up a doomsday machine (3 pieces of a color and large yellow) to use to destroy part of your opponents homeworld is another common strategy.\n\n28) javico: Trade G2 Y2 Javico\n\n29) ts52: Move R3 Ts52 Nova\n\n30) javico: Build G2 Javico\n\n31) ts52: Move G1 Grover Javico\nCatastrophe Javico Green\n\n32) javico: Trade Y1 G1 Nova\n\tts52: You need to be very careful about having three pieces of the same color in the same system. Always check to make sure I don&#39;t have a piece of the same color that I could move in to that system and cause a catastrophe.\n\n33) ts52: Attack G1S Nova\n\n34) javico: Trade Y2 G2 Javico\n\n35) ts52: Trade G1 Y1 Nova\n\tjavico: i don&#39;t know why you didnt finish yet. You can sacrifice your Y2 to move your two G ships into my homeworld and do a catastrophe\n\n36) javico: Build G1 Javico\n\n37) ts52: Move R3 Nova Javico\n\tts52: yeah, that just about does it. though technically you aren&#39;t dead yet.\n\n38) javico: Trade G1 Y1 Javico\n\n39) ts52: Attack R1 Javico\n\n\tts52: Thanks for the game. I&#39;d be happy to play again, any time.\n\tjavico: thanks for teach me in this game, but i&#39;m afraid that i didnt like it too much. In my opinion, it has too many restrictions and there is a moment in the game that you can make only a few movements.\n\tts52: Fair enough. The simplicity of it is something I enjoy, but it&#39;s not for everyone.\n\nHomeworlds Online (SDG# 19182)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.8, Ended: 2011.3.24\nParticipants: alexcobo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) alexcobo: Homeworld G3 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) alexcobo: Build R1 Alexcobo\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) alexcobo: Build R1 Alexcobo\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Ox\n\n12) alexcobo: Discover R1 Alexcobo G2 One\n\n13) SilentTitan: Discover Y1 Silenttitan G1 Ax\n\n14) alexcobo: Build R2 One\n\n15) SilentTitan: Discover Y1 Ox R3 Bigred\n\n16) alexcobo: Trade R1 G1 Alexcobo\n\n17) SilentTitan: Trade G1 R1 Silenttitan\n\n18) alexcobo: Build Y1 Alexcobo\n\n19) SilentTitan: Build Y2 Ax\n\n20) alexcobo: Build R2 Alexcobo\n\n21) SilentTitan: Sacrifice Y1 Ax\nDiscover R1 Silenttitan G1 Spore\n\n22) alexcobo: Build R3 Alexcobo\n\n23) SilentTitan: Build R3 Spore\n\n24) alexcobo: Discover R3 Alexcobo Y2 Ambar\n\n25) SilentTitan: Build G2 Silenttitan\n\n26) alexcobo: Build G2 Alexcobo\n\n27) SilentTitan: Trade G2 Y2 Silenttitan\n\n28) alexcobo: Move Y1 Alexcobo One\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Bigred\nBuild Y3 Ax\nBuild Y3 Silenttitan\n\n30) alexcobo: Sacrifice Y3 Alexcobo\nMove R1 One Spore\nMove R2 One Spore\nMove R3 Ambar Ax\nCatastrophe Spore R\n\n31) SilentTitan: Sacrifice Y2 Ax\nMove Y3 Ax One\nMove Y3 One Alexcobo\n\n32) alexcobo: Trade R2 Y2 Alexcobo\n\n33) SilentTitan: Trade Y3 G3 Alexcobo\nCatastrophe Alexcobo Green\n\n\talexcobo: Well done!\r\nyou win.\n\nHomeworlds Online (SDG# 19292)\nStarted: 2011.3.8, Ended: 2011.7.10\nParticipants: alexcobo (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: H R1 B2 G3\n\tMandrel: Have a good game.\n\n2) alexcobo: Homeworld G3 B2 Y3\n\talexcobo: Thanks! You too.\n\n3) Mandrel: Build G1 Mandrel\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) Mandrel: Build R2 Mandrel\n\n8) alexcobo: Build R2 Alexcobo\n\n9) Mandrel: Trade R2 Y2 Mandrel\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) Mandrel: Build R2 Mandrel\n\n12) alexcobo: Build R2 Alexcobo\n\n13) Mandrel: Trade R2 Y2 Mandrel\n\n14) alexcobo: Discover R2 Alexcobo G1 One\n\n15) Mandrel: D R1 Mandrel G3 Campus\n\n16) alexcobo: Trade R1 G1 Alexcobo\n\n17) Mandrel: Move Y2 Mandrel Campus\n\n18) alexcobo: Build R1 One\n\n19) Mandrel: Build Y1 Mandrel\n\n20) alexcobo: Build R2 Alexcobo\n\n21) Mandrel: B R3 Campus\n\n22) alexcobo: Trade R2 B2 Alexcobo\n\n23) Mandrel: Build G1 Mandrel\n\n24) alexcobo: Move Y1 Alexcobo One\n\n25) Mandrel: Trade G1 B1 Mandrel\n\n26) alexcobo: Build R2 Alexcobo\n\n27) Mandrel: Discover R3 Campus G1 Late\n\n28) alexcobo: Move B2 Alexcobo One\n\n29) Mandrel: Build R3 Campus\n\n30) alexcobo: Trade R2 G2 One\n\n31) Mandrel: M B1 Mandrel Campus\n\n32) alexcobo: Build G2 Alexcobo\n\n33) Mandrel: Build G2 Mandrel\n\n34) alexcobo: Build Y1 Alexcobo\n\n35) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y2 Mandrel\nBuild Y3 Campus\n\n36) alexcobo: Build Y3 One\n\n37) Mandrel: Sacrifice Y3 Campus\nMove G2 Mandrel Campus\nMove G2 Campus Late\nMove G2 Late Alexcobo\nCatastrophe Alexcobo Green\n\n38) alexcobo: Sacrifice Y3 One\nMove G2 One Alexcobo\nMove Y1 One Campus\nMove Y1 Campus Mandrel\nCatastrophe Mandrel Y\n\talexcobo: My order is &quot;sacrifice y3 one&quot; the system says &quot;You do not own a ship Y2 in the One system.&quot;\n\n39) Mandrel: B G1 Mandrel\n\n40) alexcobo: Build G2 Alexcobo\n\n41) Mandrel: T G1 Y1 Mandrel\n\n42) alexcobo: Discover R2 Alexcobo G3 R2\n\n43) Mandrel: B Y1 Mandrel\n\n44) alexcobo: Sacrifice G2 Alexcobo\nBuild R2 One\nBuild R3 Alexcobo\n\n45) Mandrel: Build B1 Campus\n\n46) alexcobo: Build G1 Alexcobo\n\n47) Mandrel: M B1 Campus Late\n\n48) alexcobo: Move Y1 Alexcobo R2\n\n49) Mandrel: B B1 Late\n\n50) alexcobo: Build B3 One\n\n51) Mandrel: Sacrifice Y2 Campus\nMove B1 Late Alexcobo\nMove B1 Late Alexcobo\n\n52) alexcobo: Sacrifice R2 One\nAttack B1N Alexcobo\nAttack B1N Alexcobo\n\n53) Mandrel: S Y1 Mandrel\nMove B1 Campus Alexcobo\nCatastrophe Alexcobo Blue\n\tMandrel: Good game.\n\talexcobo: Good game!\n\n\nHomeworlds Online (SDG# 19274)\nStarted: 2011.3.8, Ended: 2011.4.16\nParticipants: mathochist (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B1 Y3\n\n\nHomeworlds Online (SDG# 19326)\nStarted: 2011.3.10, Ended: 2011.3.14\nParticipants: dreskyn (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tdreskyn: homeworld r3 b2 g3\n\n2) dreskyn: Homeworld R3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\tdreskyn: I am completely new to this system. I guess i sent you what i wanted to start with ... oh well.\r\n\n\tTwoShort: No problem; I still do the same thing occasionally.  Have you played Homeworlds much before?\n\n4) dreskyn: Build G1 Dreskyn\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dreskyn: Build G1 Dreskyn\n\tdreskyn: I have played a few TT games reciently, but I&#39;m really rusty. \n\n7) TwoShort: Build Y1 Twoshort\n\n8) dreskyn: Trade G1 Y1 Dreskyn\n\n9) TwoShort: Build Y2 Twoshort\n\tdreskyn: Yep! I see I already made a mistake in my thinking! :)\n\n10) dreskyn: Build Y2 Dreskyn\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) dreskyn: Discover G1 Dreskyn B1 Alpha\n\n13) TwoShort: Build G1 Twoshort\n\n14) dreskyn: Sacrifice Y2 Dreskyn\nMove Y1 Dreskyn Alpha\nDiscover Y1 Alpha Y3 Gamma\n\n15) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n16) dreskyn: Build G1 Alpha\n\n17) TwoShort: Build Y2 Grogar\n\n18) dreskyn: Build G2 Dreskyn\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\n20) dreskyn: Build G2 Dreskyn\n\n21) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Twoshort Bluestar\nMove G1 Bluestar Alpha\nMove G1 Alpha Dreskyn\nCatastrophe Dreskyn Green\n\n\tdreskyn: Well played! I missed that. :)\n\nHomeworlds Online (SDG# 19367)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.10, Ended: 2011.5.2\nParticipants: Remneb (S), Gidaio (N)\nWinner: Remneb\n\n1) Gidaio: Homeworld B3 Y2 G3\n\n2) Remneb: Homeworld R1 B2 G3\n\tGidaio: I do believe we&#39;ve met. Either way, good luck!\n\n3) Gidaio: Build G1 Gidaio\n\tRemneb: Thanks.Have a good game .\n\n4) Remneb: Build G1 Remneb\n\tGidaio: Will do. It&#39;s hard to have a bad game of Homeworlds.\n\n5) Gidaio: Discover G1 Gidaio B1 Pluto\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Gidaio: Build G1 Gidaio\n\n8) Remneb: Build Y1 Remneb\n\n9) Gidaio: Build G1 Pluto\n\n10) Remneb: Build G2 Remneb\n\n11) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Pluto\nBuild G2 Gidaio\nBuild G3 Gidaio\n\n12) Remneb: Build G3 Remneb\n\tGidaio: Factory FTW.\n\n13) Gidaio: Trade G2 Y2 Pluto\n\n14) Remneb: Discover G3 Remneb Y3 Pulsar\n\n15) Gidaio: Trade G1 R1 Gidaio\n\n16) Remneb: Trade G2 R2 Remneb\n\n17) Gidaio: Discover G1 Pluto B2 That1planet\n\n18) Remneb: Move R2 Remneb Pulsar\n\n19) Gidaio: Build Y1 Pluto\n\n20) Remneb: Discover Y1 Remneb Y3 Turbo\n\n21) Gidaio: Build G1 That1planet\n\n22) Remneb: Build Y2 Remneb\n\n23) Gidaio: Discover G1 Pluto Y3 Nocanhas\n\n24) Remneb: Move R2 Pulsar That1planet\n\n25) Gidaio: Sacrifice G1 That1planet\nBuild G1 Nocanhas\n\n26) Remneb: Attack G1 That1planet\n\n27) Gidaio: Discover Y1 Pluto B3 Neptune\n\tGidaio: Moving without yellow FTW.\n\tRemneb: That is something i never try...good move.\n\n28) Remneb: Build G2 Pulsar\n\n29) Gidaio: Sacrifice Y2 Pluto\nMove G1 Nocanhas That1planet\nMove G1 That1planet Neptune\n\tGidaio: Thanks. That&#39;s the first time I&#39;ve done that.\n\n30) Remneb: Build G2 That1planet\n\n31) Gidaio: Trade Y1 B1 Neptune\n\n32) Remneb: Trade G2 Y2 That1planet\n\n33) Gidaio: Build G2 Neptune\n\n34) Remneb: Discover R2 That1planet Y1 Bunker\n\n35) Gidaio: Sacrifice G3 Gidaio\nBuild G3 Gidaio\nBuild B1 Neptune\nBuild R1 Gidaio\n\n36) Remneb: Sacrifice G2 Pulsar\nBuild R2 Bunker\nBuild G2 That1planet\n\n37) Gidaio: Trade G2 R2 Neptune\n\n38) Remneb: Move G3 Remneb Neptune\n\n39) Gidaio: Build G2 Nocanhas\n\n40) Remneb: Sacrifice R2 Bunker\nAttack R2 Neptune\nAttack G1 Neptune\n\n41) Gidaio: Sacrifice G1 Nocanhas\nBuild B1 Neptune\nCatastrophe Neptune Blue\n\n42) Remneb: Trade Y1 G1 Remneb\n\n43) Gidaio: Discover G2 Nocanhas B1 Charron\n\tRemneb: Well i would have never think about such move.It is in fact a suicide move to destroy the ennemy.\n\n44) Remneb: Build G1 Pulsar\n\n45) Gidaio: Build G3 Charron\n\n46) Remneb: Sacrifice G3 Pulsar\nBuild G3 Remneb\nBuild Y1 That1planet\nBuild Y3 That1planet\n\n47) Gidaio: Trade G2 R2 Charron\n\n48) Remneb: Build G2 Pulsar\n\n49) Gidaio: Discover R1 Gidaio B1 Glaxoniv\n\tGidaio: Gah! Now I can&#39;t move!\n\n50) Remneb: Move Y3 That1planet Bunker\n\n51) Gidaio: Sacrifice G3 Gidaio\nBuild G3 Gidaio\nBuild R2 Glaxoniv\nBuild R3 Charron\n\tRemneb: :)...just wait for me.\n\n52) Remneb: Sacrifice G1 Remneb\nBuild R3 Bunker\n\n53) Gidaio: Build R3 Charron\n\n54) Remneb: Sacrifice Y2 That1planet\nMove R2 Bunker Pulsar\nMove R2 Pulsar Charron\nCatastrophe Charron R\n\n55) Gidaio: Trade G2 Y2 Gidaio\n\n56) Remneb: Trade G2 R2 That1planet\n\n57) Gidaio: Build G1 Gidaio\n\tRemneb: Now you have a yellow :)\n\n58) Remneb: Build G2 Remneb\n\tGidaio: Yay!\n\n59) Gidaio: Trade G3 R3 Charron\n\n60) Remneb: Sacrifice G2 Remneb\nBuild R2 That1planet\nBuild R3 Bunker\n\n61) Gidaio: Trade R2 G2 Glaxoniv\n\n62) Remneb: Move R3 Bunker Turbo\n\n63) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Glaxoniv\nBuild G3 Gidaio\nBuild R2 Charron\n\n64) Remneb: Move Y1 Turbo That1planet\n\n65) Gidaio: Build G3 Glaxoniv\n\n66) Remneb: Move G1 Pulsar Glaxoniv\nCatastrophe Glaxoniv G\n\n67) Gidaio: Trade R1 G1 Glaxoniv\n\n68) Remneb: Move R2 That1planet Pulsar\n\n69) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Glaxoniv\nBuild G2 Glaxoniv\nBuild G3 Gidaio\n\n70) Remneb: Move G1 That1planet Glaxoniv\nCatastrophe Glaxoniv G\n\n71) Gidaio: Discover G1 Gidaio R1 Rageandanger\n\n72) Remneb: Sacrifice Y2 Remneb\nMove R2 Pulsar Charron\nMove R2 That1planet Charron\nCatastrophe Charron R\n\n73) Gidaio: Build R2 Gidaio\n\n74) Remneb: Discover Y1 That1planet G1 Aliens\n\n75) Gidaio: Move R2 Gidaio Aliens\n\n76) Remneb: Sacrifice Y3 Bunker\nMove Y1 Aliens Gidaio\nMove Y1 That1planet Bunker\nMove Y1 Bunker Gidaio\nCatastrophe Gidaio Y\n\n77) Gidaio: Build R2 Gidaio\n\n78) Remneb: Move G2 Pulsar Bunker\n\n79) Gidaio: Trade R1 Y1 Gidaio\n\n80) Remneb: Move R3 Turbo Remneb\n\tGidaio: ...ouch.\n\n81) Gidaio: Build Y1 Gidaio\n\n82) Remneb: Trade R3 Y3 Remneb\n\tRemneb: Since the beginning, yellow was the name of the game.Now we have plenty of that color !\n\n83) Gidaio: Move Y1 Gidaio Rageandanger\n\n84) Remneb: Build Y2 Remneb\n\n85) Gidaio: Build Y2 Rageandanger\n\n86) Remneb: Discover R3 Bunker Y2 Roma\n\n87) Gidaio: Discover Y1 Rageandanger B2 Green\n\n88) Remneb: Trade Y2 B2 Remneb\n\n89) Gidaio: Build G1 Rageandanger\n\n90) Remneb: Build B1 Remneb\n\n91) Gidaio: Sacrifice G1 Rageandanger\nBuild Y2 Green\n\n92) Remneb: Build Y3 Remneb\n\n93) Gidaio: Discover Y1 Green B3 Blue\n\n94) Remneb: Move R3 Roma Blue\n\n95) Gidaio: Sacrifice Y2 Green\nMove R2 Aliens Blue\nMove R2 Blue Bunker\n\n96) Remneb: Move Y3 Remneb Blue\n\n97) Gidaio: Attack G2 Bunker\n\n98) Remneb: Attack Y1 Blue\n\n\tGidaio: This has gone on for a very long time and frankly, I&#39;m in a very bad position. You can have it.\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 19343)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.11, Ended: 2011.3.25\nParticipants: SilentTitan (S), dreskyn (N)\nWinner: SilentTitan\n\n1) dreskyn: Homeworld R2 B1 G3\n\tdreskyn: I&#39;m new to this game. thanks for playing.\n\n2) SilentTitan: Homeworld B2 R3 G3\n\tSilentTitan: sure if you&#39;d like to ask any questions or receive any advice just let me know.  \n\n3) dreskyn: Build G1 Dreskyn\n\tdreskyn: thanks :)\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dreskyn: Trade G1 Y1 Dreskyn\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) dreskyn: Build G1 Dreskyn\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dreskyn: Discover Y1 Dreskyn G3 Alpha\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) dreskyn: Build Y1 Alpha\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) dreskyn: Build Y2 Alpha\n\n14) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover Y1 Silenttitan G1 Poof\nMove Y1 Poof Alpha\nCatastrophe Alpha Yellow\n\n15) dreskyn: Build G1 Dreskyn\n\tdreskyn: LOL! nice move. I&#39;m new to the game. any tips are welcome.\n\n16) SilentTitan: Build B1 Silenttitan\n\n\nHomeworlds Online (SDG# 19325)\nStarted: 2011.3.11, Ended: 2011.4.18\nParticipants: lorgar (S), dreskyn (W), javico (N), alexcobo (E)\nWinner: lorgar\n\n1) javico: Homeworld Y2 B1 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) lorgar: Homeworld B1 Y3 G3\n\n4) dreskyn: Homeworld R1 B2 G3\n\n5) javico: Build G1 Javico\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) lorgar: Build G1 Lorgar\n\n8) dreskyn: Build G1 Dreskyn\n\n9) javico: Trade G1 Y1 Javico\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) lorgar: Discover G1 Lorgar B2 Yoyop\n\n12) dreskyn: Build G1 Dreskyn\n\n13) javico: Build G1 Javico\n\n14) alexcobo: Trade Y1 R1 Alexcobo\n\n15) lorgar: Build G1 Lorgar\n\n16) dreskyn: Trade G1 Y1 Dreskyn\n\n17) javico: Discover Y1 Javico G3 Nova\n\n18) alexcobo: Trade Y1 G1 Alexcobo\n\n19) lorgar: Build G2 Yoyop\n\n20) dreskyn: Build Y1 Dreskyn\n\n21) javico: Trade G1 B1 Javico\n\n22) alexcobo: Build Y1 Alexcobo\n\n23) lorgar: Trade G1 Y1 Yoyop\n\n24) dreskyn: Move Y1 Dreskyn Nova\n\n25) javico: Move B1 Javico Nova\n\n26) alexcobo: Build Y2 Alexcobo\n\n27) lorgar: Build Y2 Yoyop\n\n28) dreskyn: Build Y2 Dreskyn\n\n29) javico: Discover Y1 Nova B1 Mortis\n\n30) alexcobo: Trade Y2 R2 Alexcobo\n\n31) lorgar: Trade Y2 B2 Yoyop\n\n32) lorgar: Build Y2 Yoyop\n\n33) javico: Build G1 Javico\n\n34) alexcobo: Build R1 Alexcobo\n\n35) lorgar: Trade Y1 R1 Yoyop\n\n36) javico: Build B1 Nova\n\n37) alexcobo: Move R2 Alexcobo Mortis\n\n38) lorgar: Discover B2 Yoyop G1 Bebop\n\n39) javico: Trade B1 Y1 Nova\n\n40) alexcobo: Attack Y1N Mortis\n\n41) lorgar: Build G2 Yoyop\n\n42) javico: Build Y2 Nova\n\n43) alexcobo: Move R2 Mortis Nova\n\n44) lorgar: Move Y2 Yoyop Nova\nCatastrophe Nova Yellow\n\n45) alexcobo: Attack B1N Nova\n\n46) lorgar: Trade G1 R1 Lorgar\n\n47) alexcobo: Sacrifice Y1 Alexcobo\nMove R2 Nova Dreskyn\n\n48) lorgar: Sacrifice G2 Yoyop\nBuild R2 Yoyop\nBuild B1 Bebop\n\n49) alexcobo: Attack Y2W Dreskyn\n\n50) lorgar: Trade R1 Y1 Yoyop\n\n51) alexcobo: Attack G1W Dreskyn\n\n52) lorgar: Trade B1 Y1 Bebop\n\n53) alexcobo: Attack Y1W Dreskyn\n\n54) lorgar: Build R1 Yoyop\n\n55) alexcobo: Build B1 Nova\n\n56) lorgar: Move R2 Yoyop Nova\n\n57) alexcobo: Sacrifice Y2 Dreskyn\nMove B1 Nova Javico\nMove B1 Nova Javico\n\n58) lorgar: Move G2 Yoyop Mortis\n\n59) alexcobo: Discover Y1 Mortis Y3 Caronte\n\n60) lorgar: Build G1 Mortis\n\n61) alexcobo: Trade B1 Y1 Javico\n\n62) lorgar: Build Y2 Bebop\n\n63) alexcobo: Build Y2 Alexcobo\n\n64) lorgar: Sacrifice Y2 Bebop\nMove G2 Mortis Alexcobo\nMove G1 Mortis Alexcobo\nCatastrophe Alexcobo Green\n\n65) alexcobo: Build Y2 Dreskyn\n\n66) lorgar: Build Y2 Bebop\n\n67) alexcobo: Sacrifice Y2 Dreskyn\nMove Y2 Alexcobo Bebop\nMove Y1 Caronte Bebop\nCatastrophe Bebop Y\n\n68) lorgar: Trade R1 G1 Yoyop\n\n69) alexcobo: Trade B1 G1 Javico\n\n70) lorgar: Build B1 Bebop\n\n71) alexcobo: Discover G1 Javico Y3 Waypoint\n\n72) lorgar: Build B1 Bebop\n\n73) alexcobo: Build G2 Waypoint\n\n74) lorgar: Trade G3 Y3 Lorgar\n\n75) alexcobo: Move G2 Waypoint Alexcobo\n\n76) lorgar: Sacrifice Y3 Lorgar\nMove B2 Bebop Alexcobo\nMove B1 Bebop Alexcobo\nMove B1 Bebop Alexcobo\nCatastrophe Alexcobo Blue\n\n\tlorgar: thanks for the game\n\nHomeworlds Online (SDG# 19344)\nStarted: 2011.3.11, Ended: 2011.3.14\nParticipants: mathochist (S), dreskyn (N)\nWinner: dreskyn\n\n1) dreskyn: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 19352)\nStarted: 2011.3.11, Ended: 2011.3.17\nParticipants: ts52 (S), dreskyn (N)\nWinner: ts52\n\n1) dreskyn: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) dreskyn: Build G1 Dreskyn\n\n4) ts52: B G1 Ts52\n\tts52: Have a good game!\n\n5) dreskyn: Trade G1 Y1 Dreskyn\n\tdreskyn: thanks. you too. \n\n6) ts52: T G1 R1 Ts52\n\n7) dreskyn: Build Y1 Dreskyn\n\n8) ts52: Build R1 Ts52\n\n9) dreskyn: Build Y2 Dreskyn\n\n10) ts52: Build R2 Ts52\n\n11) dreskyn: Trade Y2 R2 Dreskyn\n\n12) ts52: Discover R1 Ts52 G2 Oscar\n\n13) dreskyn: Build Y2 Dreskyn\n\n14) ts52: Trade R2 Y2 Ts52\n\n15) dreskyn: Discover Y1 Dreskyn G3 Alpha\n\n16) ts52: Build R2 Ts52\n\n17) dreskyn: Move R2 Dreskyn Alpha\n\n18) ts52: Move Y2 Ts52 Oscar\n\n19) dreskyn: Move R2 Alpha Oscar\n\n20) ts52: Attack R2N Oscar\n\n21) dreskyn: Build Y2 Dreskyn\n\n22) ts52: Build Y3 Oscar\n\n23) dreskyn: Build Y3 Alpha\n\n24) ts52: Build R2 Ts52\n\n25) dreskyn: Sacrifice Y3 Alpha\nMove Y1 Dreskyn Alpha\nMove Y1 Alpha Oscar\nMove Y1 Alpha Oscar\nCatastrophe Oscar Y\n\n26) ts52: Build R3 Oscar\n\n27) dreskyn: Build G1 Dreskyn\n\n28) ts52: Trade R2 Y2 Ts52\n\n29) dreskyn: Build G1 Dreskyn\n\n30) ts52: Move Y2 Ts52 Oscar\n\n31) dreskyn: Discover G1 Dreskyn B3 Bob\n\n32) ts52: Build R2 Ts52\n\n33) dreskyn: Build G1 Bob\n\n34) ts52: Move R2 Oscar Bob\n\n35) dreskyn: Trade Y2 G2 Dreskyn\n\n36) ts52: Attack G1N Bob\n\n37) dreskyn: Sacrifice G2 Dreskyn\nBuild G2 Bob\nBuild G2 Bob\nCatastrophe Bob G\n\n38) ts52: Build R3 Oscar\n\n39) dreskyn: Trade G3 R3 Dreskyn\n\n40) ts52: Move R3 Oscar Bob\n\n41) dreskyn: Trade R3 G3 Dreskyn\n\n42) ts52: Trade R3 G3 Bob\n\n43) dreskyn: Build Y1 Dreskyn\n\n44) ts52: Build R3 Bob\n\n45) dreskyn: Discover G1 Dreskyn Y3 Hope\n\n46) ts52: Move R3 Oscar Hope\n\n47) dreskyn: Build G1 Dreskyn\n\n48) ts52: Attack G1 Hope\n\n49) dreskyn: Build Y1 Dreskyn\n\n50) ts52: Build R3 Hope\n\n51) dreskyn: Discover G1 Dreskyn Y3 Ouch\n\n52) ts52: Sacrifice Y2 Oscar\nMove R3 Bob Dreskyn\nMove R3 Hope Dreskyn\n\n53) dreskyn: Attack R3 Dreskyn\n\n54) ts52: Sacrifice R2 Ts52\nAttack R3N Dreskyn\nAttack G3N Dreskyn\n\n55) dreskyn: Trade Y2 R2 Dreskyn\nCatastrophe Dreskyn R\n\n56) ts52: Sacrifice R2 Ts52\nAttack Y1 Dreskyn\nAttack Y1 Dreskyn\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 19419)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.16, Ended: 2011.4.5\nParticipants: TwoShort (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) mneme: Build G1 Mneme\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Trade G1 B1 Mneme\n\n6) TwoShort: Trade G1 B1 Twoshort\n\tmneme: Greetings.  I&#39;ve still never beaten you, but hey, another try won&#39;t hurt.  Much.\n\n7) mneme: Build B2 Mneme\n\n8) TwoShort: Build B2 Twoshort\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) TwoShort: Trade B2 Y2 Twoshort\n\n11) mneme: Build B2 Mneme\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Discover B1 Mneme G3 Hunter\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) mneme: Build B3 Hunter\n\n16) TwoShort: Build B3 Grogar\n\n17) mneme: Trade B3 R3 Hunter\n\n18) TwoShort: Trade B2 R2 Grogar\n\n19) mneme: Build B2 Hunter\n\n20) TwoShort: Build B3 Grogar\n\n21) mneme: Sacrifice Y2 Mneme\nMove B1 Hunter Grogar\nMove B2 Hunter Grogar\nCatastrophe Grogar B\n\n22) TwoShort: Build Y1 Twoshort\n\n23) mneme: Build G1 Mneme\n\n24) TwoShort: Move Y1 Twoshort Grogar\n\n25) mneme: Trade G1 Y1 Mneme\n\n26) TwoShort: Build B1 Twoshort\n\n27) mneme: Build B2 Mneme\n\n28) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\n29) mneme: Move B2 Mneme Hunter\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Yolonda\nBuild Y1 Grogar\n\n31) mneme: Build B3 Hunter\n\n32) TwoShort: Trade B3 G3 Twoshort\n\n33) mneme: Trade B3 Y3 Hunter\n\n34) TwoShort: Trade B1 R1 Yolonda\n\n35) mneme: Move R3 Hunter Grogar\n\n36) TwoShort: Build R1 Grogar\n\n37) mneme: Sacrifice B2 Mneme\nTrade R3 B3 Grogar\nTrade B2 R2 Hunter\n\n38) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n39) mneme: Sacrifice R2 Hunter\nAttack Y3 Grogar\nAttack R2 Grogar\n\n40) TwoShort: Move Y2 Twoshort Grogar\nCatastrophe Grogar Yellow\n\n41) mneme: Attack R1 Grogar\n\n42) TwoShort: Trade Y2 G2 Twoshort\n\n43) mneme: Build Y1 Hunter\n\n44) TwoShort: Move G2 Twoshort Yolonda\n\n45) mneme: Move Y1 Hunter Grogar\n\n46) TwoShort: Build R2 Yolonda\n\n47) mneme: Build B1 Grogar\n\n48) TwoShort: Discover R1 Yolonda Y3 Yoyodyne\n\n49) mneme: Move B3 Grogar Twoshort\n\n50) TwoShort: Attack B3 Twoshort\n\n51) mneme: Move B1 Grogar Twoshort\nCatastrophe Twoshort B\n\n52) TwoShort: Sacrifice G2 Yolonda\nBuild R2 Yolonda\nBuild R3 Yoyodyne\n\n53) mneme: Trade G3 R3 Mneme\n\n54) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Yoyodyne Mneme\nMove R1 Yoyodyne Mneme\nMove B3 Yolonda Twoshort\nCatastrophe Mneme Red\n\n55) mneme: Build R1 Grogar\n\n56) TwoShort: Move R2 Yolonda Twoshort\n\n57) mneme: Sacrifice Y3 Hunter\nMove R1 Grogar Twoshort\nMove R1 Grogar Twoshort\nDiscover R2 Grogar Y1 Victorydance\nCatastrophe Twoshort R\n\n\tTwoShort: Excellent game, thank you!\n\tmneme: Hey, that&#39;s the first time I&#39;ve beaten you in -how- many games?  Still, it&#39;s good trivia to keep in mind (and check with AndyLooney on whether it&#39;s intentional), as I&#39;ve certainly been in positions where it would be useful in the past.\n\nHomeworlds Online (SDG# 19416)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.16, Ended: 2011.7.25\nParticipants: fnord (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld B3 Y2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) fnord: Build G1 Fnord\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) fnord: Discover G1 Fnord B1 Eris\n\n7) ts52: Build G1 Ts52\n\n8) fnord: Build G1 Eris\n\n9) ts52: Build G2 Ts52\n\n10) fnord: Build G2 Eris\n\n11) ts52: D G2 Ts52 B3 Grover\n\n12) fnord: Trade G2 R2 Eris\n\n13) ts52: Trade G1 R1 Ts52\n\n14) fnord: Build G1 Fnord\n\n15) ts52: Build G2 Grover\n\n16) fnord: Trade G1 Y1 Eris\n\n17) ts52: Trade G2 Y2 Grover\n\n18) fnord: Build R1 Eris\n\n19) ts52: Build R1 Ts52\n\n20) fnord: Build Y2 Eris\n\n21) ts52: Build Y3 Grover\n\n22) fnord: Trade Y2 G2 Eris\n\n23) ts52: Discover Y2 Grover G1 Robin\n\n24) fnord: Sacrifice Y1 Eris\nMove R2 Eris Fnord\n\n25) ts52: Build G2 Grover\n\n26) fnord: Trade G1 Y1 Fnord\n\n27) ts52: Build Y2 Robin\n\n28) fnord: Build R2 Fnord\n\n29) ts52: M Y3 Grover Eris\n\n30) fnord: Sacrifice G2 Eris\nBuild R2 Eris\nBuild R3 Eris\n\n31) ts52: Sacrifice R1 Ts52\nAttack R3 Eris\n\n32) fnord: Build R1 Eris\nCatastrophe Eris Red\n\n33) ts52: Trade Y3 R3 Eris\n\n34) fnord: Sacrifice Y1 Fnord\nDiscover G1 Eris B3 Discordia\n\n35) ts52: Move Y1 Ts52 Grover\n\n36) fnord: Build G1 Discordia\n\n37) ts52: Trade G2 R2 Grover\n\n38) fnord: Trade G1 Y1 Discordia\n\n39) ts52: Build Y3 Grover\n\n40) fnord: Build Y3 Discordia\n\n41) ts52: Trade Y3 G3 Grover\n\n42) fnord: Build G1 Discordia\n\n43) ts52: Build Y3 Grover\n\n44) fnord: Trade Y3 R3 Discordia\n\n45) ts52: Build Y3 Grover\n\n46) fnord: Build Y3 Discordia\n\n47) ts52: Move Y3 Grover Eris\n\n48) fnord: Build R1 Discordia\n\n49) ts52: Sacrifice G2 Grover\nBuild R1 Eris\nBuild R3 Grover\n\n50) fnord: Sacrifice Y1 Discordia\nMove R3 Discordia Robin\n\n51) ts52: Sacrifice Y2 Robin\nMove Y2 Robin Grover\nDiscover R3 Grover B1 Gonzo\n\n52) fnord: Trade G1 B1 Discordia\n\n53) ts52: Move Y2 Grover Gonzo\n\n54) fnord: Build B2 Discordia\n\n55) ts52: Sacrifice G3 Grover\nBuild Y1 Gonzo\nBuild Y2 Eris\nBuild G1 Ts52\n\n56) fnord: Build G2 Discordia\n\n57) ts52: Sacrifice Y3 Grover\nMove Y2 Eris Discordia\nMove Y1 Gonzo Discordia\nMove Y2 Gonzo Discordia\nCatastrophe Discordia Yellow\n\n58) fnord: Trade G1 Y1 Discordia\n\n59) ts52: Move G1 Ts52 Grover\n\n60) fnord: Build Y2 Discordia\n\n61) ts52: M R3 Eris Discordia\n\n62) fnord: Build B2 Discordia\nCatastrophe Discordia B\n\tfnord: Wait, what?  The system message says you moved an R3 from eris to discordia.  How did you do that?\n\tts52: I have yellow in discordia, and discordia is small and eris is large, so they&#39;re connected\n\tfnord: I know they&#39;re connected.  I thought that either the ship had to be Yellow or the origin system had to be Yellow in order to move.  I didn&#39;t know it worked if you just had a Yellow ship in your destination system.\n\tfnord: Oh, good grief, have I been playing that wrong all this time?  I just re-read the rules, and you can use the power of any color you have in the system.  So, as long as you have a Yellow ship in a system, *any* piece can move from that system to another one.  Not that it will help me now, but it&#39;s good to know.\n\tts52: That&#39;s correct. Any of your ships in a system can use any of your ships colors (in that system) or the system color(s)\n\n63) ts52: Move G1 Grover Eris\n\n64) fnord: Build G1 Fnord\n\n65) ts52: Build G2 Ts52\n\n66) fnord: Move G1 Fnord Robin\n\n67) ts52: B G2 Eris\n\n68) fnord: Build R1 Robin\n\n69) ts52: Build R3 Eris\n\n70) fnord: Trade R2 Y2 Fnord\n\n71) ts52: Move G2 Eris Grover\n\n72) fnord: Build R2 Fnord\n\n73) ts52: Sacrifice G3 Ts52\nBuild G2 Eris\nBuild G3 Grover\nBuild G3 Ts52\n\n74) fnord: Trade R2 B2 Fnord\n\n75) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild R2 Gonzo\nBuild Y1 Eris\n\n76) fnord: Move B2 Fnord Robin\n\n77) ts52: Build Y2 Grover\n\n78) fnord: Trade R3 Y3 Robin\n\n79) ts52: Move Y1 Grover Gonzo\n\n80) fnord: Build B1 Robin\n\n81) ts52: Sacrifice Y2 Grover\nMove Y1 Gonzo Fnord\nMove Y1 Eris Fnord\nCatastrophe Fnord Yellow\n\n82) fnord: Build Y1 Robin\n\n83) ts52: Sacrifice Y3 Eris\nMove G2 Grover Robin\nMove G1 Eris Grover\nMove G1 Grover Robin\nCatastrophe Robin Green\n\n84) fnord: Build R1 Fnord\n\n85) ts52: Trade R2 Y2 Grover\n\n86) fnord: Trade R2 Y2 Fnord\n\n87) ts52: Build Y1 Grover\n\n88) fnord: Build R2 Fnord\n\n89) ts52: Sacrifice Y2 Grover\nMove R1 Eris Fnord\nMove R2 Gonzo Fnord\nCatastrophe Fnord Red\n\n90) fnord: Build G1 Fnord\n\n91) ts52: Sacrifice Y1 Grover\nMove R3 Eris Fnord\n\n92) fnord: Discover G3 Fnord B2 Sink\n\n93) ts52: Sacrifice R3 Gonzo\nAttack G1 Fnord\nAttack Y2 Fnord\nPass\n\tts52: Thanks for the game.\n\tfnord: Thank you, as well.\n\n\nHomeworlds Online (SDG# 19425)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.17, Ended: 2011.3.30\nParticipants: ajo (S), Aristos (N)\nWinner: ajo\n\n1) Aristos: Homeworld B1 Y2 G3\n\n2) ajo: Homeworld B3 R2 G3\n\n3) Aristos: Build G1 Aristos\n\n4) ajo: Build G1 Ajo\n\n5) Aristos: Trade G3 R3 Aristos\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) Aristos: Build R1 Aristos\n\n8) ajo: Build Y1 Ajo\n\n9) Aristos: Build R1 Aristos\n\n10) ajo: Trade Y1 R1 Ajo\n\n11) Aristos: Discover R1 Aristos Y3 Banana\n\n12) ajo: Build R2 Ajo\n\n13) Aristos: Discover R1 Banana Y1 Lemon\n\n14) ajo: Trade R1 G1 Ajo\n\n15) Aristos: Build G2 Aristos\n\n16) ajo: Build G2 Ajo\n\n17) Aristos: Sacrifice G2 Aristos\nBuild G2 Aristos\nBuild R1 Lemon\n\n18) ajo: Move G2 Ajo Lemon\n\n19) Aristos: Move R1 Lemon Ajo\n\n20) ajo: Sacrifice R2 Ajo\nAttack R1N Ajo\nAttack R1N Lemon\n\tajo: Ooh, I think that was a mistake...\n\n21) Aristos: Discover R1 Aristos G3 Lime\n\n22) ajo: Build R2 Lemon\n\n23) Aristos: Build R2 Lime\n\n24) ajo: Build R3 Ajo\n\n25) Aristos: Build R3 Aristos\n\n26) ajo: Discover R3 Ajo B1 Alpha\n\n27) Aristos: Trade G1 Y1 Aristos\n\n28) ajo: Trade R3 Y3 Alpha\n\n29) Aristos: Move Y1 Aristos Lime\n\n30) ajo: Build R3 Ajo\n\n31) Aristos: Build Y1 Lime\n\n32) ajo: Trade R3 B3 Ajo\n\n33) Aristos: Build Y2 Lime\n\n34) ajo: Discover R1 Lemon Y3 Schoolbus\n\n35) Aristos: Move R3 Aristos Schoolbus\n\n36) ajo: Sacrifice G2 Lemon\nBuild R3 Lemon\nBuild Y2 Alpha\n\n37) Aristos: Sacrifice Y2 Lime\nMove Y1 Lime Alpha\nMove Y1 Lime Alpha\nCatastrophe Alpha Yellow\n\n38) ajo: Move R3 Lemon Lime\n\n39) Aristos: Sacrifice R2 Lime\nAttack R1 Schoolbus\nPass\n\n40) ajo: Attack R1N Lime\n\n41) Aristos: Build R2 Aristos\n\n42) ajo: Sacrifice Y3 Ajo\nMove R2 Lemon Lime\nMove R2 Lime Aristos\nMove R1 Lime Aristos\nCatastrophe Aristos Red\n\n43) Aristos: Build G1 Aristos\n\n44) ajo: Trade G1 Y1 Ajo\n\n45) Aristos: Move R3 Schoolbus Aristos\n\n46) ajo: Build Y1 Ajo\n\n47) Aristos: Trade G2 Y2 Aristos\n\n48) ajo: Build B1 Ajo\n\n49) Aristos: Build R1 Aristos\n\n50) ajo: Build R2 Lime\n\n51) Aristos: Build G1 Aristos\n\n52) ajo: Build G2 Ajo\n\n53) Aristos: Build G2 Aristos\n\n54) ajo: Sacrifice B1 Ajo\nTrade R3 B3 Lime\n\n55) Aristos: Build Y1 Aristos\n\n56) ajo: Sacrifice G2 Ajo\nBuild Y2 Ajo\nBuild R2 Lime\n\n57) Aristos: Discover R1 Aristos G3 Kiwi\n\n58) ajo: Discover Y1 Ajo B1 Alpha\n\n59) Aristos: Move Y1 Aristos Kiwi\n\n60) ajo: Sacrifice Y1 Ajo\nMove Y1 Alpha Lime\n\n61) Aristos: Sacrifice G2 Aristos\nBuild R3 Kiwi\nBuild R3 Schoolbus\n\n62) ajo: Build G2 Ajo\n\n63) Aristos: Build G2 Aristos\n\n64) ajo: Sacrifice G2 Ajo\nBuild Y1 Lime\nBuild Y3 Ajo\n\n65) Aristos: Sacrifice Y2 Aristos\nMove G1 Aristos Lime\nMove G1 Aristos Lime\n\n66) ajo: Sacrifice Y3 Ajo\nMove Y1 Lime Aristos\nMove Y1 Lime Aristos\nDiscover B3 Lime B1 Alpha\n\tajo: Hmm, clever.\n\n67) Aristos: Sacrifice R3 Kiwi\nAttack Y1 Aristos\nAttack Y1 Aristos\nPass\n\n68) ajo: Build R3 Ajo\n\n69) Aristos: Build G2 Lime\nCatastrophe Lime Green\n\n70) ajo: Trade B3 G3 Alpha\n\n71) Aristos: Build Y2 Kiwi\n\n72) ajo: Move R1 Ajo Alpha\n\n73) Aristos: Build Y3 Kiwi\n\n74) ajo: Build Y3 Ajo\n\n75) Aristos: Sacrifice Y2 Kiwi\nDiscover R1 Kiwi G1 Pear\nDiscover Y1 Aristos G3 Watermelon\n\n76) ajo: Move R3 Ajo Pear\n\n77) Aristos: Build R2 Pear\n\n78) ajo: Build R2 Alpha\n\n79) Aristos: Build Y2 Watermelon\n\n80) ajo: Sacrifice Y2 Ajo\nMove R3 Pear Watermelon\nDiscover R1 Alpha B3 Beta\n\n81) Aristos: Sacrifice Y1 Watermelon\nDiscover Y2 Watermelon G2 Lime\n\n82) ajo: Build G1 Alpha\n\n83) Aristos: Build G2 Aristos\n\n84) ajo: Trade R1 Y1 Beta\n\n85) Aristos: Discover R1 Schoolbus B1 Plum\n\n86) ajo: Sacrifice G3 Alpha\nBuild G3 Alpha\nBuild Y2 Beta\nBuild B2 Ajo\n\n87) Aristos: Trade G2 B2 Aristos\n\n88) ajo: Sacrifice Y3 Ajo\nMove B2 Ajo Alpha\nMove Y1 Beta Aristos\nMove Y2 Beta Aristos\nCatastrophe Aristos Yellow\n\tajo: Bring it on!\n\n89) Aristos: Build B2 Aristos\n\tAristos: You first...\n\tajo: Okay.\n\n90) ajo: Trade B3 Y3 Ajo\n\n91) Aristos: Sacrifice Y1 Kiwi\nMove B2 Aristos Lime\n\n92) ajo: Sacrifice G3 Alpha\nBuild G2 Ajo\nBuild G3 Alpha\nBuild Y1 Ajo\n\n93) Aristos: Sacrifice Y3 Kiwi\nMove R1 Plum Ajo\nMove R1 Pear Ajo\nMove R2 Pear Ajo\nCatastrophe Ajo Red\n\n94) ajo: Sacrifice B2 Alpha\nTrade G1 B1 Alpha\nTrade R3 B3 Watermelon\n\n95) Aristos: Trade B2 Y2 Aristos\n\n96) ajo: Trade G2 B2 Ajo\n\n97) Aristos: Move B2 Lime Ajo\n\tajo: Check.\n\n98) ajo: Sacrifice R2 Alpha\nAttack B2N Ajo\nPass\n\n99) Aristos: Move Y2 Lime Ajo\n\tAristos: That&#39;s mate. Well done. \r\n\n\n100) ajo: Sacrifice Y3 Ajo\nMove B2 Ajo Aristos\nMove B2 Ajo Aristos\nMove B3 Watermelon Aristos\nCatastrophe Aristos Blue\n\tajo: Well, you didn&#39;t have to let me do that, you know. I imagine you missed that Alpha isn&#39;t adjacent to your homeworld. But still, I was feeling good about the game at this point. Well played.\n\n\tajo: What I said last time: Alpha wasn&#39;t adjacent to your homeworld. But since you gave me your blue ship last turn, I can end it now.\n\tAristos: DOH! Yep, I misread that.\n\nHomeworlds Online (SDG# 19426)\nStarted: 2011.3.18, Ended: 2011.3.24\nParticipants: ts52 (S), Daarck (N)\nWinner: ts52\n\n1) Daarck: Homeworld G1 Y2 B3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) Daarck: Build B1 Daarck\n\tts52: Have a good game!\n\tDaarck: Thank you! Hope you have one too.\n\n4) ts52: Build G1 Ts52\n\n5) Daarck: Build B1 Daarck\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Daarck: Trade B1 Y1 Daarck\n\n8) ts52: B G1 Ts52\n\n9) Daarck: Discover Y1 Daarck G3 Marco\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) Daarck: Move B1 Daarck Marco\n\n12) ts52: Build G1 Ts52\n\n13) Daarck: Build Y1 Marco\n\n14) ts52: Discover G1 Ts52 B2 Grover\n\n15) Daarck: Build Y2 Marco\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n17) Daarck: Trade Y1 R1 Marco\n\tDaarck: Wow!\n\n18) ts52: Trade G2 R2 Grover\n\n19) Daarck: Build R1 Marco\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n21) Daarck: Move R1 Marco Daarck\n\n22) ts52: Trade G3 Y3 Grover\n\n23) Daarck: Move B1 Marco Daarck\n\n24) ts52: S G3 Ts52\nB G3 Ts52\nB G3 Grover\nB Y1 Grover\n\tDaarck: Hmmm...this sure doesn&#39;t seem to be looking good for me, does it?\n\n25) Daarck: Discover Y2 Marco Y2 Polo\n\n26) ts52: Move Y3 Grover Marco\n\tDaarck: Yup, not looking good at all.\n\n27) Daarck: Build Y3 Marco\n\n28) ts52: Sacrifice R2 Grover\nAttack Y3 Marco\nAttack R1 Marco\n\n29) Daarck: Sacrifice R1 Daarck\nAttack R1 Marco\n\n30) ts52: Trade G3 R3 Grover\n\n31) Daarck: Move R1 Marco Daarck\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y3 Grover\n\n33) Daarck: Move Y2 Polo Marco\nCatastrophe Marco Y\n\n34) ts52: Discover G3 Grover Y3 Bigbird\n\n35) Daarck: Trade B1 Y1 Daarck\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R1 Grover\n\n37) Daarck: Build R1 Daarck\n\n38) ts52: Move R1 Grover Bigbird\n\n\tDaarck: At this point, with the monopoly you have on the green and my inability to move or create more yellows without you blowing me up, I think I need to concede.\r\n\r\nThank you so much. It was a great game. I learned a lot.\n\tts52: No problem. Happy to play. Thanks for the game!\n\nHomeworlds Online (SDG# 19460)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.21, Ended: 2011.3.24\nParticipants: alexcobo (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 19379)\nStarted: 2011.3.21, Ended: 2011.3.24\nParticipants: Remneb (S), dreskyn (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 19378)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.23, Ended: 2011.4.4\nParticipants: SilentTitan (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ajo: Trade G3 Y3 Ajo\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ajo: Build Y1 Ajo\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) ajo: Build G1 Ajo\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) ajo: Move G1 Ajo Alpha\n\n14) SilentTitan: Discover B2 Silenttitan G3 Glomar\n\n15) ajo: Build Y1 Ajo\n\n16) SilentTitan: Build B2 Glomar\n\n17) ajo: Build Y2 Alpha\n\n18) SilentTitan: Build B2 Glomar\n\n19) ajo: Trade Y2 R2 Alpha\n\n20) SilentTitan: Trade Y1 R1 Silenttitan\n\n21) ajo: Build Y1 Alpha\n\n22) SilentTitan: Build B3 Silenttitan\n\n23) ajo: Build Y2 Ajo\n\n24) SilentTitan: Trade B2 Y2 Glomar\n\n25) ajo: Trade Y2 B2 Ajo\n\n26) SilentTitan: Trade B3 Y3 Silenttitan\n\n27) ajo: Discover B2 Ajo G1 Beta\n\n28) SilentTitan: Discover B1 Silenttitan G3 Glory\n\n29) ajo: Build B3 Beta\n\n30) SilentTitan: Sacrifice Y2 Glomar\nMove B2 Glomar Beta\nMove B1 Glory Beta\nCatastrophe Beta Blue\n\n31) ajo: Build Y2 Alpha\n\n32) SilentTitan: Trade B2 Y2 Glomar\n\n33) ajo: Discover Y1 Alpha G3 Beta\n\n34) SilentTitan: Discover G3 Silenttitan Y3 Sol\n\n35) ajo: Build Y2 Beta\n\tajo: Voiding your homeworld of green? Hmm.\n\n36) SilentTitan: Build G1 Sol\n\n37) ajo: Build G2 Alpha\n\n38) SilentTitan: Move G1 Sol Silenttitan\n\n39) ajo: Build G2 Ajo\n\n40) SilentTitan: Build R1 Silenttitan\n\n41) ajo: Sacrifice Y2 Alpha\nMove R2 Alpha Beta\nMove R2 Beta Silenttitan\nCatastrophe Silenttitan Red\n\n42) SilentTitan: Sacrifice G3 Sol\nBuild Y2 Silenttitan\nBuild Y3 Glomar\nBuild G2 Silenttitan\n\n43) ajo: Trade Y3 R3 Ajo\n\n44) SilentTitan: Trade Y2 R2 Silenttitan\n\tajo: Hmm. That wouldn&#39;t have lost me the game immediately, but I guess I do have to think about it a bit more.\n\tSilentTitan: dang ... I did my turn as fast as possible \n\n45) ajo: Sacrifice G2 Alpha\nBuild Y2 Alpha\nBuild Y3 Ajo\n\tajo: There, that feels safer.\n\tajo: With my previous move, I assume you&#39;d have catastrophed yellow, and then raced to move your y3 in before I could get a big ship back. I&#39;d have countered by moving my g1 into your homeworld (threatening a green catastrophe if your y3 moved out), but I&#39;d still probably have lost after a few more moves.\n\n46) SilentTitan: Build R1 Silenttitan\n\tSilentTitan: I agree with you. That was what I was aiming for. \n\n47) ajo: Trade Y1 B1 Alpha\n\n48) SilentTitan: Move Y3 Glomar Alpha\n\n49) ajo: Sacrifice Y2 Alpha\nDiscover B1 Alpha Y2 Gamma\nMove G1 Alpha Gamma\n\n50) SilentTitan: Move G1 Silenttitan Ajo\n\n51) ajo: Sacrifice G2 Ajo\nBuild B2 Gamma\nBuild B2 Gamma\n\n52) SilentTitan: Sacrifice Y3 Alpha\nMove Y2 Glomar Silenttitan\nMove Y2 Silenttitan Ajo\nMove Y3 Silenttitan Ajo\nCatastrophe Ajo Yellow\n\n53) ajo: Sacrifice Y2 Beta\nMove B1 Gamma Silenttitan\nMove B2 Gamma Silenttitan\n\tajo: Check.\n\n\tajo: Checkmate. Good game. :)\n\nHomeworlds Online (SDG# 19369)\nStarted: 2011.3.25, Ended: 2011.3.28\nParticipants: lorgar (S), TwoShort (N)\nWinner: lorgar\n\n\nHomeworlds Online (SDG# 19493)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.25, Ended: 2011.4.6\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) lorgar: Homeworld Y1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Discover G1 Lorgar B3 Ana\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Build G1 Ana\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) lorgar: Build G1 Lorgar\n\n11) SilentTitan: Discover Y2 Silenttitan B1 Provo\n\n12) lorgar: Build G2 Ana\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Provo\nBuild Y2 Provo\nBuild Y3 Silenttitan\n\n14) lorgar: Discover G1 Lorgar Y3 Mordecaizone\n\n15) SilentTitan: Trade Y3 G3 Silenttitan\n\n16) lorgar: Trade G1 R1 Ana\n\n17) SilentTitan: Build Y3 Silenttitan\n\n18) lorgar: Build G1 Lorgar\n\n19) SilentTitan: Discover Y2 Provo G3 Zion\n\n20) lorgar: Trade G3 Y3 Lorgar\n\n21) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Zion Lorgar\nMove Y2 Provo Ana\nMove Y2 Ana Lorgar\nCatastrophe Lorgar Yellow\n\n22) lorgar: Build G2 Lorgar\n\n23) SilentTitan: Trade Y2 G2 Provo\n\n24) lorgar: Trade G1 Y1 Lorgar\n\n25) SilentTitan: Build Y2 Silenttitan\n\n26) lorgar: Trade G2 Y2 Ana\n\n27) SilentTitan: Trade Y1 B1 Silenttitan\n\n28) lorgar: Build G1 Mordecaizone\n\n29) SilentTitan: Discover B1 Silenttitan Y1 Sol\n\n30) lorgar: Build Y2 Ana\n\n31) SilentTitan: Sacrifice G2 Provo\nBuild B1 Sol\nBuild B1 Sol\n\n32) lorgar: Move R1 Ana Sol\n\n33) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Sol Lorgar\nMove B1 Sol Lorgar\n\n34) lorgar: Sacrifice Y2 Ana\nDiscover G1 Mordecaizone R1 Lama\nDiscover G1 Mordecaizone R1 Lami\n\n35) SilentTitan: Move B1 Sol Lorgar\nCatastrophe Lorgar Blue\n\n\nHomeworlds Online (SDG# 19457)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.25, Ended: 2011.5.8\nParticipants: Jesse (S), lorgar (N)\nWinner: Jesse\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) Jesse: Homeworld B3 R1 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) Jesse: Build G1 Jesse\n\n5) lorgar: Discover G1 Lorgar B1 Mordenkey\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) lorgar: Build G1 Mordenkey\n\n8) Jesse: Build Y1 Jesse\n\n9) lorgar: Trade G1 Y1 Mordenkey\n\n10) Jesse: Trade Y1 R1 Jesse\n\n11) lorgar: Build G1 Lorgar\n\n12) Jesse: Build R1 Jesse\n\n13) lorgar: Build G1 Mordenkey\n\n14) Jesse: Build G2 Jesse\n\n15) lorgar: Build G2 Lorgar\n\n16) Jesse: Discover R1 Jesse B2 Grover\n\n17) lorgar: Trade G2 R2 Lorgar\n\n18) Jesse: Move G2 Jesse Grover\n\n19) lorgar: Discover G1 Mordenkey B2 Amandos\n\n20) Jesse: Build R2 Grover\n\n21) lorgar: Build G2 Amandos\n\n22) Jesse: Trade R2 Y2 Grover\n\n23) lorgar: Trade G2 R2 Amandos\n\n24) Jesse: Discover R1 Jesse Y2 Bert\n\n25) lorgar: Build Y1 Mordenkey\n\n26) Jesse: Build Y2 Grover\n\n27) lorgar: Sacrifice Y1 Mordenkey\nMove Y1 Mordenkey Amandos\nPass\n\n28) Jesse: Move Y2 Grover Mordenkey\n\n29) lorgar: Build G2 Amandos\n\n30) Jesse: Sacrifice R1 Grover\nAttack G1 Mordenkey\n\n31) lorgar: Discover G2 Amandos G3 Lannaman\n\n32) Jesse: Build G2 Jesse\n\n33) lorgar: Trade G1 R1 Lorgar\n\n34) Jesse: Sacrifice G3 Jesse\nBuild G1 Mordenkey\nBuild Y1 Mordenkey\nBuild G3 Jesse\n\n35) lorgar: Sacrifice G2 Lannaman\nBuild G2 Lorgar\nBuild G3 Amandos\n\n36) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Jesse\nBuild Y3 Grover\n\n37) lorgar: Trade G3 B3 Lorgar\n\n38) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Grover\nBuild R2 Bert\n\n39) lorgar: Sacrifice G3 Amandos\nBuild G3 Amandos\nBuild R3 Amandos\nPass\n\n40) Jesse: Move R1 Bert Mordenkey\n\n41) lorgar: Move R3 Amandos Mordenkey\n\n42) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Mordenkey\nBuild R3 Bert\n\n43) lorgar: Move R1 Lorgar Mordenkey\nCatastrophe Mordenkey Red\n\n44) Jesse: Sacrifice Y3 Grover\nMove G1 Mordenkey Amandos\nMove G1 Mordenkey Amandos\nMove Y3 Jesse Amandos\nCatastrophe Amandos G\n\n45) lorgar: Sacrifice Y1 Amandos\nDiscover R2 Amandos G1 Istari\n\n46) Jesse: Sacrifice G2 Grover\nBuild Y1 Grover\nBuild Y3 Mordenkey\n\n47) lorgar: Trade B3 G3 Lorgar\n\n48) Jesse: Move Y3 Amandos Istari\n\n49) lorgar: Build R1 Lorgar\n\n50) Jesse: Build G1 Grover\n\n51) lorgar: Trade R1 B1 Lorgar\n\n52) Jesse: Trade G1 B1 Grover\n\n53) lorgar: Discover B1 Lorgar G1 Croft\n\n54) Jesse: Sacrifice G3 Jesse\nBuild G1 Grover\nBuild G2 Jesse\nBuild G3 Grover\n\n55) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Croft\nBuild B3 Croft\n\n56) Jesse: Sacrifice Y3 Mordenkey\nMove G1 Grover Mordenkey\nDiscover G3 Grover Y3 Bigbird\nMove B1 Grover Croft\nCatastrophe Croft B\n\n57) lorgar: Build R1 Istari\n\tlorgar: no, definitely I&#39;ve lost initiative a loooong time ago...\n\n58) Jesse: Sacrifice R2 Bert\nAttack R1 Istari\nAttack R2 Istari\n\tJesse: When you pushed your R3 to Mordenkey, that was a god move that threatened to put me on the defensive.  Instead of pushing another red into the system and causing a catastrophe, a better move would have been to sacrifice an R2 to capture my R3 and Y2, leaving me with only smalls in that system and forcing me to use *my* turn to blow the reds.  As it was, using your turn to blow the reds gave me the opportunity to attack and squeeze out your only remaining yellow ship, leaving you crippled.\n\n59) lorgar: Discover G2 Lorgar B1 Tor\n\n60) Jesse: Sacrifice G3 Bigbird\nBuild G1 Mordenkey\nBuild G3 Mordenkey\nBuild Y3 Mordenkey\n\n61) lorgar: Move G3 Lorgar Mordenkey\nCatastrophe Mordenkey Green\n\n62) Jesse: Move Y3 Mordenkey Lorgar\n\n63) lorgar: Build G1 Tor\n\n64) Jesse: Sacrifice R1 Istari\nAttack R2 Lorgar\n\n\tlorgar: thanks for the game\n\tJesse: Likewise.\n\nHomeworlds Online (SDG# 19380)\nStarted: 2011.3.26, Ended: 2011.5.2\nParticipants: ducttapeDj (S), mathochist (N)\nWinner: ducttapeDj\n\n\nHomeworlds Online (SDG# 19509)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.27, Ended: 2011.4.19\nParticipants: SilentTitan (S), Uglyfoot (N)\nWinner: SilentTitan\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tUglyfoot: have a good game.\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tSilentTitan: you too\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Uglyfoot: Trade G1 R1 Uglyfoot\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Uglyfoot: Discover G1 Uglyfoot Y2 Colony\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) SilentTitan: Discover Y2 Silenttitan G1 Valley\n\n13) Uglyfoot: Build G2 Colony\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Valley\nBuild Y3 Valley\nBuild Y3 Silenttitan\n\n15) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Colony\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\n16) SilentTitan: Trade Y3 G3 Silenttitan\n\n17) Uglyfoot: Discover G2 Colony B1 Outpost\n\n18) SilentTitan: Build G3 Silenttitan\n\n19) Uglyfoot: Trade G2 R2 Outpost\n\n20) SilentTitan: Build Y3 Silenttitan\n\n21) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover Y2 Valley B2 Rare\nDiscover Y3 Valley R2 Burst\nDiscover G3 Silenttitan B1 Sync\n\n23) Uglyfoot: Build G2 Colony\n\n24) SilentTitan: Sacrifice Y1 Silenttitan\nMove G3 Sync Colony\nCatastrophe Colony Green\n\n25) Uglyfoot: Discover G2 Uglyfoot Y2 Nexus\n\n26) SilentTitan: Trade Y2 R2 Rare\n\n27) Uglyfoot: Build G1 Nexus\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Burst\nBuild Y2 Burst\nBuild Y3 Silenttitan\n\n29) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n30) SilentTitan: Build Y3 Valley\n\n31) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G2 Nexus\nBuild G3 Uglyfoot\n\n32) SilentTitan: Trade Y3 G3 Silenttitan\n\n33) Uglyfoot: Discover G2 Uglyfoot B2 Themall\n\n34) SilentTitan: Build Y3 Silenttitan\n\n35) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Themall\nBuild R1 Outpost\n\n36) SilentTitan: Move Y3 Valley Nexus\n\n\nHomeworlds Online (SDG# 19527)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.28, Ended: 2011.4.13\nParticipants: sompm (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld B3 Y1 G3\n\n2) sompm: Homeworld G3 B2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) sompm: Build Y1 Sompm\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) sompm: Build Y2 Sompm\n\n7) Subhan64: Build Y2 Subhan64\n\n\nHomeworlds Online (SDG# 19534)\nVariants: &quot;Hard time&quot;\nStarted: 2011.3.29, Ended: 2011.5.6\nParticipants: Uglyfoot (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) Uglyfoot: Homeworld B3 R1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) Uglyfoot: Discover Y2 Uglyfoot G2 Second\n\n13) SilentTitan: Discover G1 Sol Y3 Sunstrike\n\n14) Uglyfoot: Build Y1 Second\n\n15) SilentTitan: Discover Y1 Silenttitan G1 Moonflow\n\n16) Uglyfoot: Discover Y2 Second B1 Third\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Moonflow\nBuild Y3 Moonflow\nBuild Y3 Silenttitan\n\n18) Uglyfoot: Move Y1 Second Moonflow\nCatastrophe Moonflow Y\n\n19) SilentTitan: Trade Y3 G3 Silenttitan\n\n20) Uglyfoot: Discover G1 Uglyfoot Y2 Nexus\n\n21) SilentTitan: Build G1 Sunstrike\n\n22) Uglyfoot: Build G2 Uglyfoot\n\n23) SilentTitan: Discover G1 Sunstrike B2 West\n\n24) Uglyfoot: Build G2 Nexus\n\n25) SilentTitan: Build G2 West\n\n26) Uglyfoot: Trade G2 R2 Uglyfoot\n\n27) SilentTitan: Trade G2 R2 West\n\n28) Uglyfoot: Build G2 Uglyfoot\n\n29) SilentTitan: Build G2 Silenttitan\n\n30) Uglyfoot: Move G3 Uglyfoot West\n\n31) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 West\nBuild G3 West\nCatastrophe West Green\n\n32) Uglyfoot: Build G1 Uglyfoot\n\n33) SilentTitan: Build G2 Silenttitan\n\n34) Uglyfoot: Build G3 Uglyfoot\n\n35) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sunstrike Nexus\nMove G1 Nexus Uglyfoot\nCatastrophe Uglyfoot Green\n\n36) Uglyfoot: Move G1 Nexus Third\n\n37) SilentTitan: Trade G2 Y2 Silenttitan\n\n38) Uglyfoot: Trade R2 G2 Uglyfoot\n\n39) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 West Third\nPass\n\n40) Uglyfoot: Move G1 Third Silenttitan\n\n41) SilentTitan: Attack G1 Silenttitan South\n\n42) Uglyfoot: Move Y2 Third Nexus\n\n43) SilentTitan: Trade G1 Y1 Silenttitan\n\n44) Uglyfoot: Discover G2 Nexus B1 Fourth\n\n45) SilentTitan: Trade R2 Y2 Third\n\n46) Uglyfoot: Build Y1 Uglyfoot\n\n47) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Third\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n48) Uglyfoot: Move Y2 Nexus Fourth\n\n49) SilentTitan: Trade Y3 R3 Silenttitan\n\n50) Uglyfoot: Build Y2 Fourth\n\n51) SilentTitan: Trade Y3 G3 Silenttitan\n\n52) Uglyfoot: Discover Y2 Fourth B2 Fifth\n\n53) SilentTitan: Move R3 Silenttitan Fourth\n\n54) Uglyfoot: Sacrifice G2 Fourth\nBuild Y3 Fifth\nBuild Y3 Fifth\n\n55) SilentTitan: Sacrifice Y3 Third\nMove Y2 Third Fifth\nMove R3 Fourth Fifth\nMove R3 Fifth Uglyfoot\nCatastrophe Fifth Yellow\n\n\nHomeworlds Online (SDG# 19508)\nStarted: 2011.3.29, Ended: 2011.4.15\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\tlorgar: thanks for the game, it is always a pleasure to learn from you.\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Discover G1 Lorgar B1 Bridge\n\n7) TwoShort: Build G1 Twoshort\n\n8) lorgar: Build G1 Lorgar\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) lorgar: Trade G1 R1 Lorgar\n\n11) TwoShort: Build Y1 Twoshort\n\n12) lorgar: Build G1 Bridge\n\n13) TwoShort: Build G2 Twoshort\n\n14) lorgar: Trade G1 Y1 Bridge\n\n15) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n16) lorgar: Build G1 Bridge\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n18) lorgar: Trade G1 R1 Bridge\n\n19) TwoShort: Discover G1 Yolonda Y3 Yellonia\n\n20) lorgar: Move R1 Bridge Grogar\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Grogar\nBuild Y3 Twoshort\n\n22) lorgar: Move G1 Bridge Grogar\n\n23) TwoShort: Trade Y2 R2 Twoshort\n\n24) lorgar: Trade Y1 G1 Bridge\n\n25) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yellonia\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n26) lorgar: Build R2 Lorgar\n\n27) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Grogar\nAttack G1 Grogar\n\n28) lorgar: Trade R2 Y2 Lorgar\n\n29) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Grogar\nBuild Y2 Grogar\n\n30) lorgar: Move Y2 Lorgar Bridge\n\n31) TwoShort: Move Y3 Grogar Bridge\n\n32) lorgar: Build G2 Lorgar\n\n33) TwoShort: Sacrifice R2 Grogar\nAttack Y2 Bridge\nAttack G1 Bridge\n\n34) lorgar: Build R2 Lorgar\n\n35) TwoShort: Trade Y3 R3 Twoshort\n\n36) lorgar: Discover R1 Lorgar B1 Mo\n\n37) TwoShort: Sacrifice G3 Yellonia\nBuild G3 Bridge\nBuild Y3 Bridge\nBuild R2 Grogar\n\n38) lorgar: Sacrifice G3 Lorgar\nBuild R2 Mo\nBuild R3 Lorgar\nBuild G3 Lorgar\n\n39) TwoShort: Sacrifice G1 Yellonia\nBuild Y3 Twoshort\n\n40) lorgar: Trade R2 B2 Lorgar\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove R2 Grogar Mo\nMove R1 Grogar Mo\nMove G3 Bridge Lorgar\nCatastrophe Mo Red\n\tlorgar: What is the lesson?\n\n42) lorgar: Build G1 Lorgar\nCatastrophe Lorgar Green\n\tTwoShort: Concentrate on growing in the early game. Always be in position to grow, particularly green and yellow.  It&#39;s a big advantage to have the only usable green factory ; It&#39;s also a big advantage to have most of the big yellow.\n\n43) TwoShort: Trade Y3 B3 Bridge\n\n44) lorgar: Trade R3 G3 Lorgar\n\n45) TwoShort: Sacrifice Y3 Bridge\nMove G1 Bridge Lorgar\nMove Y2 Bridge Lorgar\nMove B3 Bridge Lorgar\n\n46) lorgar: Build B1 Lorgar\nCatastrophe Lorgar Blue\n\n47) TwoShort: Sacrifice Y2 Lorgar\nMove G3 Twoshort Lorgar\nMove G2 Twoshort Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: thanks for the game\n\nHomeworlds Online (SDG# 19498)\nStarted: 2011.3.31, Ended: 2011.4.6\nParticipants: apollodude217 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\tapollodude217: homeworld y1 b2 g3\n\tapollodude217: sry I&#39;m new; do I type in commands here???\n\tts52: nope, commands  go up top. but the box isn&#39;t there yet, because it&#39;s my turn. :)\n\n\nHomeworlds Online (SDG# 19567)\nStarted: 2011.4.1, Ended: 2011.4.6\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\tlorgar: No one expects the spanish Inquisition!\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: Hehe. Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Discover G1 Lorgar B1 Atmazone\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Build G1 Lorgar\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) lorgar: Build G1 Atmazone\n\n10) ts52: Build G2 Ts52\n\n11) lorgar: Trade G1 Y1 Atmazone\n\n12) ts52: Build B2 Kermit\n\n13) lorgar: Trade G1 R1 Lorgar\n\n14) ts52: Trade B2 R2 Kermit\n\n15) lorgar: Build Y1 Atmazone\n\n16) ts52: Build B2 Kermit\n\n17) lorgar: Discover G1 Atmazone B3 Amarante\n\n18) ts52: Trade B2 Y2 Kermit\n\n19) lorgar: Trade Y1 G1 Atmazone\n\n20) ts52: Build B2 Kermit\n\n21) lorgar: Discover G1 Atmazone B3 Adamante\n\n22) ts52: Discover B2 Kermit G2 Oscar\n\n23) lorgar: Discover Y1 Atmazone B3 Mermoz\n\n24) ts52: Build Y1 Kermit\n\n25) lorgar: Build G1 Amarante\n\n26) ts52: Discover G2 Ts52 Y3 Bigbirg\n\n27) lorgar: Trade G3 Y3 Lorgar\n\n28) ts52: Move Y1 Kermit Oscar\n\n29) lorgar: Sacrifice Y3 Lorgar\nMove G1 Adamante Ts52\nMove G1 Amarante Ts52\nMove G1 Amarante Ts52\nCatastrophe Ts52 Green\n\tts52: Wow. Well done sir. Not sure how I missed that.\n\tlorgar: I could not tink of it before it was almost done. Just wanted to annoy you with these three pips stars^^\n\tts52: And annoy me you did. :)\n\n\nHomeworlds Online (SDG# 19578)\nStarted: 2011.4.5, Ended: 2011.4.8\nParticipants: mathochist (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n\nHomeworlds Online (SDG# 19605)\nStarted: 2011.4.8, Ended: 2011.4.15\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B1 Y2 G3\n\tlorgar: Are you Mary, queen of scots?\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: No, but there&#39;s a penguin on my television.\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Discover B1 Lorgar G3 Omegacloud\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) lorgar: Build G1 Lorgar\n\n10) ts52: Build B2 Robin\n\n11) lorgar: Trade G1 Y1 Lorgar\n\n12) ts52: Build G1 Ts52\n\n13) lorgar: Build G1 Lorgar\n\n14) ts52: Build G2 Ts52\n\n15) lorgar: Trade G3 Y3 Lorgar\n\n16) ts52: Trade G2 R2 Ts52\n\n17) lorgar: Trade Y3 R3 Lorgar\n\n18) ts52: Build G2 Ts52\n\n19) lorgar: Trade R3 G3 Lorgar\n\n20) ts52: T G2 Y2 Ts52\n\n21) lorgar: Build G2 Lorgar\n\n22) ts52: Move Y2 Ts52 Robin\n\n23) lorgar: Build B2 Omegacloud\n\n24) ts52: Move G1 Ts52 Robin\n\n25) lorgar: Trade B1 Y1 Omegacloud\n\n26) ts52: Sacrifice Y2 Robin\nMove G1 Robin Omegacloud\nMove G1 Omegacloud Lorgar\nCatastrophe Lorgar Green\n\n27) lorgar: Trade Y1 G1 Lorgar\n\n28) ts52: Trade B1 Y1 Robin\n\tlorgar: XD\r\ntouch&eacute;!\n\n29) lorgar: Build B1 Omegacloud\n\n30) ts52: Move R2 Ts52 Robin\n\n31) lorgar: Trade B2 R2 Omegacloud\n\n32) ts52: Discover R2 Robin Y3 Bigbird\n\n33) lorgar: Build B1 Omegacloud\n\n34) ts52: Move R2 Bigbird Lorgar\n\n\tlorgar: ok, I surrender.\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 19520)\nVariants: &quot;Hard time&quot;\nStarted: 2011.4.10, Ended: 2011.5.21\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Discover G1 Lorgar B2 Titania\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) lorgar: Build G1 Titania\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) lorgar: Trade G1 Y1 Titania\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Icebergia\n\n12) lorgar: Build Y2 Titania\n\n13) SilentTitan: Build Y2 Icebergia\n\n14) lorgar: Trade Y1 R1 Titania\n\n15) SilentTitan: Trade G1 R1 Silenttitan\n\n16) lorgar: Build G1 Lorgar\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) lorgar: Build G2 Titania\n\n19) SilentTitan: Discover Y2 Icebergia R2 Rain\n\n20) lorgar: Discover G1 Titania Y3 Amandos\n\n21) SilentTitan: Discover Y1 Icebergia G2 Paper\n\n22) lorgar: Discover Y2 Titania B1 Stone\n\n23) SilentTitan: Trade Y1 B1 Silenttitan\n\n24) lorgar: Build R1 Titania\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Paper\nBuild Y2 Rain\nBuild Y3 Silenttitan\n\n26) lorgar: Sacrifice G1 Amandos\nBuild Y3 Stone\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) lorgar: Build G1 Titania\n\n29) SilentTitan: Sacrifice Y2 Rain\nMove Y1 Paper Stone\nMove Y1 Silenttitan Stone\nCatastrophe Stone Yellow\n\n30) lorgar: Trade G2 Y2 Titania\n\n31) SilentTitan: Trade B1 Y1 Silenttitan\n\n32) lorgar: Move R1 Titania Lorgar\n\n33) SilentTitan: Discover R1 Silenttitan G1 Glow\n\n34) lorgar: Build G2 Titania\n\n35) SilentTitan: Build Y1 Paper\n\n36) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lorgar\nBuild G3 Titania\nBuild G3 Lorgar\n\n37) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Rain\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n38) lorgar: Discover G2 Titania G3 Triforce\n\n39) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Paper Lorgar\nMove Y1 Paper Lorgar\nMove R1 Glow Silenttitan\n\n40) lorgar: Build R2 Lorgar\n\n41) SilentTitan: Trade Y1 G1 Lorgar\nCatastrophe Lorgar Green\n\n42) lorgar: Attack Y1N Lorgar\n\n43) SilentTitan: Trade Y3 G3 Silenttitan\n\n44) lorgar: Sacrifice Y1 Lorgar\nMove G3 Titania Lorgar\n\n45) SilentTitan: Discover R1 Silenttitan G1 Hail\n\n46) lorgar: Trade R1 G1 Lorgar\n\n47) SilentTitan: Move Y2 Rain Hail\n\n48) lorgar: Sacrifice G3 Lorgar\nBuild G2 Titania\nBuild G2 Titania\nBuild G3 Lorgar\n\n49) SilentTitan: Build Y1 Hail\n\n50) lorgar: Sacrifice Y2 Titania\nMove G2 Titania Hail\nMove G2 Titania Hail\n\n51) SilentTitan: Sacrifice Y2 Hail\nDiscover R1 Hail Y2 Funtime\nDiscover Y1 Hail Y2 Snow\n\n52) lorgar: Sacrifice G2 Triforce\nBuild G2 Titania\nBuild G3 Titania\n\n53) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Rain\nBuild Y3 Rain\nBuild Y3 Silenttitan\n\n54) lorgar: Sacrifice G2 Titania\nBuild G2 Lorgar\nBuild G3 Titania\n\n55) SilentTitan: Trade Y1 B1 Silenttitan\n\n\nHomeworlds Online (SDG# 19628)\nVariants: &quot;Hard time&quot;\nStarted: 2011.4.13, Ended: 2011.4.19\nParticipants: ajo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) ajo: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) ajo: Build G1 Ajo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) ajo: Trade G1 B1 Ajo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) ajo: Build B1 Ajo\n\n9) SilentTitan: Discover Y1 Silenttitan Y1 Sol\n\n10) ajo: Discover B1 Ajo G3 Alpha\n\n11) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n12) ajo: Build B2 Alpha\n\tajo: Ouch. I gotta remember to watch out for that one.\n\n13) SilentTitan: Discover Y1 Sol G3 Mer\n\n14) ajo: Discover B1 Ajo Y3 Hah\n\n15) SilentTitan: Build Y3 Mer\n\n16) ajo: Build B2 Alpha\n\n17) SilentTitan: Trade Y3 B3 Silenttitan\n\n18) ajo: Trade B2 R2 Alpha\n\n19) SilentTitan: Discover Y3 Mer B2 Ven\n\n20) ajo: Build G1 Ajo\n\n21) SilentTitan: Build Y3 Mer\n\n22) ajo: Move G1 Ajo Hah\n\n23) SilentTitan: Trade Y3 R3 Ven\n\n24) ajo: Build G1 Ajo\n\tajo: Oh. I should have kept something I could move to a big yellow star, huh?\n\n25) SilentTitan: Build Y3 Mer\n\tSilentTitan: well.... you didn&#39;t have much option\n\n26) ajo: Trade G1 R1 Ajo\n\n27) SilentTitan: Move Y3 Mer Ven\n\n28) ajo: Build R1 Ajo\n\n29) SilentTitan: Move R3 Ven Alpha\n\n30) ajo: Build R1 Alpha\n\n31) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Alpha Ven\nMove Y3 Ven Alpha\n\n32) ajo: Build B2 Hah\n\n33) SilentTitan: Sacrifice R3 Ven\nAttack R2 Alpha South\nAttack B2 Alpha South\nAttack R1 Alpha South\n\n34) ajo: Trade B2 Y2 Hah\n\n35) SilentTitan: Attack B1 Alpha South\n\n36) ajo: Build B2 Hah\n\n37) SilentTitan: Sacrifice Y3 Mer\nMove R2 Alpha Ajo\nMove R1 Alpha Ajo\nMove B1 Alpha Ajo\nCatastrophe Ajo Red\n\n38) ajo: Move B2 Hah Sol\n\n39) SilentTitan: Sacrifice Y2 Sol\nMove B2 Alpha Ajo\nMove Y1 Mer Ajo\n\n40) ajo: Sacrifice B2 Sol\nTrade Y2 R2 Hah\nTrade B1 G1 Hah\n\tajo: Interesting choice of catastrophes. In retrospect, I would have expected you to catastrophe yellow at Hah, rather than giving up all your red.\n\n41) SilentTitan: Trade Y1 B1 Ajo\nCatastrophe Ajo Blue\n\n42) ajo: Discover G1 Hah B1 Beta\n\tajo: Okay, I&#39;m in trouble anyway. I wish SDG had an option to prevent moving into check! :P\n\n43) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\tSilentTitan: yeah.... I know what you mean.\n\n44) ajo: Build G2 Beta\n\n45) SilentTitan: Build Y1 Alpha\n\n46) ajo: Move R2 Hah Sol\n\n47) SilentTitan: Discover Y1 Sol G3 Sole\n\n\tajo: Yep, that&#39;ll be checkmate in two. Good game.\n\nHomeworlds Online (SDG# 19644)\nVariants: &quot;Hard time&quot;\nStarted: 2011.4.14, Ended: 2011.4.17\nParticipants: agentofchaos (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y2 B1 G3\n\tagentofchaos: Hi there, thanks for the challenge, good luck\n\n\nHomeworlds Online (SDG# 19660)\nVariants: &quot;Hard time&quot;\nStarted: 2011.4.15, Ended: 2011.5.3\nParticipants: Aristos (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld Y3 B1 G3\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) Aristos: Build Y1 Aristos\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Aristos: Trade Y1 G1 Aristos\n\n7) Subhan64: Build G1 Subhan64\n\n8) Aristos: Build Y1 Aristos\n\n9) Subhan64: Discover Y1 Subhan64 Y2 Ix\n\n10) Aristos: Build Y1 Aristos\n\n11) Subhan64: Sacrifice G1 Subhan64\nBuild Y2 Ix\n\n12) Aristos: Discover Y1 Aristos G1 Ohmigosh\n\n13) Subhan64: Move Y1 Ix Ohmigosh\n\n14) Aristos: Trade Y1 R1 Aristos\n\n15) Subhan64: Build G1 Subhan64\n\n16) Aristos: Build G2 Aristos\n\n17) Subhan64: Move G1 Subhan64 Ix\n\n18) Aristos: Trade G1 R1 Aristos\n\n19) Subhan64: Build G1 Subhan64\n\n20) Aristos: Sacrifice R1 Aristos\nAttack Y1 Ohmigosh\n\n21) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild G3 Subhan64\nBuild G3 Ix\n\n22) Aristos: Move Y1 Ohmigosh Ix\n\n23) Subhan64: Trade G3 Y3 Subhan64\n\n24) Aristos: Sacrifice G2 Aristos\nBuild Y1 Ix\nBuild Y2 Ohmigosh\nCatastrophe Ix Yellow\n\n25) Subhan64: Discover G1 Subhan64 G2 Xi\n\n26) Aristos: Build Y1 Ohmigosh\n\n27) Subhan64: Build G1 Subhan64\n\n28) Aristos: Move Y2 Ohmigosh Xi\n\n29) Subhan64: Build G3 Xi\n\n30) Aristos: Build Y1 Xi\n\n31) Subhan64: Discover Y3 Subhan64 Y2 Oooo\n\n32) Aristos: Build Y2 Xi\n\n33) Subhan64: Sacrifice G3 Xi\nBuild G3 Xi\nBuild G3 Xi\nBuild G3 Subhan64\nCatastrophe Xi Green\n\n34) Aristos: Trade Y3 G3 Aristos\n\n35) Subhan64: Trade G1 B1 Subhan64\n\n36) Aristos: Build R1 Aristos\n\n37) Subhan64: Sacrifice B1 Subhan64\nTrade Y3 R3 Oooo\n\n38) Aristos: Trade R1 Y1 Aristos\n\n39) Subhan64: Move R3 Oooo Ohmigosh\n\n40) Aristos: Sacrifice Y1 Ohmigosh\nDiscover Y1 Ohmigosh G2 Holysmokes\n\n41) Subhan64: Trade G2 Y2 Subhan64\n\n42) Aristos: Build G1 Aristos\n\n43) Subhan64: Build G1 Subhan64\n\n44) Aristos: Build Y1 Holysmokes\n\n45) Subhan64: Move G1 Subhan64 Holysmokes\n\n46) Aristos: Build Y2 Holysmokes\n\n47) Subhan64: Sacrifice Y2 Subhan64\nMove G1 Holysmokes Ohmigosh\nMove G1 Ohmigosh Aristos\nCatastrophe Aristos Green\n\n\nHomeworlds Online (SDG# 19616)\nStarted: 2011.4.15, Ended: 2011.4.18\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3 Ts52\n\n3) lorgar: Build G1 Lorgar\n\tts52: Back for more? :) Have a good game!\n\tlorgar: thanks, let&#39;s fight again!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Discover G1 Lorgar B1 Lost\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Build G1 Lorgar\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) lorgar: Build G1 Lost\n\n10) ts52: Build G2 Ts52\n\n11) lorgar: Trade G1 Y1 Lost\n\n12) ts52: Build B1 Kermit\n\n13) lorgar: Build G1 Lost\n\n14) ts52: Build G2 Ts52\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lost\nBuild Y1 Lost\nBuild G3 Lorgar\n\n16) ts52: Build B2 Kermit\n\n17) lorgar: Build Y2 Lost\n\n18) ts52: Trade G2 Y2 Ts52\n\n19) lorgar: Sacrifice Y2 Lost\nMove G1 Lost Kermit\nMove G1 Lost Kermit\n\n20) ts52: Sacrifice Y2 Ts52\nDiscover B2 Kermit G2 Oscar\nMove B1 Kermit Lost\n\n21) lorgar: Build Y2 Lost\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Oscar\nBuild B3 Lost\n\n23) lorgar: Sacrifice Y2 Lost\nMove G1 Kermit Ts52\nMove G1 Kermit Ts52\nCatastrophe Ts52 Green\n\n\tlorgar: thanks for the game, greed killed you this time!\n\tts52: Crap! I missed that again! Well played sir.\n\tts52: Yeah, greed made be sloppy, for sure\n\nHomeworlds Online (SDG# 19663)\nStarted: 2011.4.18, Ended: 2011.5.6\nParticipants: mathochist (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n\nHomeworlds Online (SDG# 19668)\nStarted: 2011.4.18, Ended: 2011.5.10\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\tts52: Excellent, I was about to demand a rematch.\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Discover G1 Ts52 B1 Grover\n\n6) lorgar: Trade G1 R1 Lorgar\n\n7) ts52: Build G1 Ts52\n\n8) lorgar: Build G1 Lorgar\n\n9) ts52: Build G2 Grover\n\n10) lorgar: Build G2 Lorgar\n\n11) ts52: Trade G2 Y2 Grover\n\n12) lorgar: Discover G2 Lorgar B2 Maloha\n\n13) ts52: Build G2 Grover\n\n14) lorgar: Trade G3 Y3 Lorgar\n\n15) ts52: T G2 R2 Grover\n\n16) lorgar: Trade Y3 G3 Lorgar\n\n17) ts52: Build G2 Grover\n\n18) lorgar: Move R1 Lorgar Maloha\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n20) lorgar: Trade G3 Y3 Lorgar\n\n21) ts52: Trade G3 R3 Ts52\n\n22) lorgar: Build G3 Maloha\n\n23) ts52: Sacrifice Y2 Grover\nMove G1 Grover Maloha\nMove G2 Grover Maloha\nCatastrophe Maloha Green\n\n24) lorgar: Trade Y3 G3 Lorgar\n\n25) ts52: Build R1 Grover\n\n26) lorgar: Move G1 Lorgar Maloha\n\n27) ts52: Trade R1 Y1 Grover\n\n28) lorgar: Build G1 Lorgar\n\n29) ts52: Move R2 Grover Maloha\n\n30) lorgar: Sacrifice G3 Lorgar\nBuild G2 Maloha\nBuild G2 Maloha\nBuild G3 Lorgar\n\n31) ts52: Attack R1 Maloha\n\n32) lorgar: Build G3 Lorgar\n\n33) ts52: Attack G2 Maloha\n\n34) lorgar: Move G1 Lorgar Maloha\nCatastrophe Maloha Green\n\n35) ts52: Trade R2 Y2 Maloha\n\n36) lorgar: Trade G3 R3 Lorgar\n\n37) ts52: Build G1 Grover\n\n38) lorgar: Move R3 Lorgar Maloha\n\n39) ts52: Sacrifice G2 Ts52\nBuild R1 Maloha\nBuild R1 Maloha\nCatastrophe Maloha Red\n\n40) lorgar: Build G1 Lorgar\n\n41) ts52: Sacrifice Y2 Maloha\nDiscover G3 Grover Y2 Bird\nMove G3 Bird Lorgar\n\tlorgar: ooooooooo :&#39;(\r\nnot cool!\n\n42) lorgar: Build G2 Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: sod it XD \r\nI WANT A REMATCH!*_*\n\tts52: I welcome another opportunity to battle you...\n\nHomeworlds Online (SDG# 19688)\nVariants: &quot;Hard time&quot;\nStarted: 2011.4.18, Ended: 2011.5.25\nParticipants: sompm (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G1 B2 Y3\n\n2) sompm: Homeworld B1 Y3 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) sompm: Build G1 Sompm\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) sompm: Build G1 Sompm\n\n7) alexcobo: Trade Y1 R1 Alexcobo\n\n8) sompm: Discover G1 Sompm Y2 Costarica\n\n9) alexcobo: Discover Y1 Alexcobo G3 Nicaragua\n\n10) sompm: Build G2 Costarica\n\n11) alexcobo: Build Y1 Alexcobo\n\n12) sompm: Sacrifice G3 Sompm\nBuild G2 Costarica\nBuild G2 Sompm\nBuild G3 Sompm\n\n13) alexcobo: Build Y1 Nicaragua\n\n14) sompm: Discover G2 Sompm Y2 Uzbekistan\n\n15) alexcobo: Build Y2 Nicaragua\n\n16) sompm: Build G3 Uzbekistan\n\n17) alexcobo: Build Y3 Alexcobo\n\n18) sompm: Discover G1 Costarica B3 Nameofacountry\n\n19) alexcobo: Build R1 Alexcobo\n\n\nHomeworlds Online (SDG# 19695)\nVariants: &quot;Unrated&quot;\nStarted: 2011.4.19, Ended: 2011.4.19\nParticipants: Blizzy (S), DrSquidopolis (N)\nWinner: DrSquidopolis\n\n1) DrSquidopolis: Homeworld G3 B2 R3\n\n2) Blizzy: Homeworld B3 G2 G2 *\n\n3) DrSquidopolis: Build R1 Drsquidopolis\n\n4) Blizzy: Build G1 Blizzy\n\n5) DrSquidopolis: Trade R1 Y1 Drsquidopolis\n\n6) Blizzy: Trade G2 Y2 Blizzy\n\n7) DrSquidopolis: Discover Y1 Drsquidopolis R1 Demon\n\n8) Blizzy: Move Y2 Blizzy Demon\n\n9) DrSquidopolis: Build R1 Drsquidopolis\n\n10) Blizzy: Build G1 Blizzy\n\n11) DrSquidopolis: Build R1 Drsquidopolis\n\n12) Blizzy: Build G1 Blizzy\n\n13) DrSquidopolis: Move Y1 Demon Blizzy\n\n14) Blizzy: Trade G1 B1 Blizzy\n\n15) DrSquidopolis: Build R2 Drsquidopolis\n\n16) Blizzy: Pass\n\n17) DrSquidopolis: Trade R2 Y2 Drsquidopolis\n\n18) Blizzy: Pass\n\n19) DrSquidopolis: Move Y2 Drsquidopolis Demon\n\n20) Blizzy: Move Y2 Demon Blizzy\n\n21) DrSquidopolis: Move Y2 Demon Blizzy\n\n22) Blizzy: Trade G1 R1 Blizzy\n\n23) DrSquidopolis: Discover Y1 Blizzy G1 Grass\n\n24) Blizzy: Discover Y2 Blizzy Y1 Wezen\n\n25) DrSquidopolis: Trade Y2 R2 Blizzy\n\n26) Blizzy: Discover Y2 Wezen R3 Betelgeuse\n\n27) DrSquidopolis: Sacrifice R3 Drsquidopolis\nAttack R1 Blizzy\nAttack G1 Blizzy\nAttack B1 Blizzy\n\n\nHomeworlds Online (SDG# 19601)\nVariants: &quot;No undo&quot;\nStarted: 2011.4.22, Ended: 2011.4.27\nParticipants: ronan (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y1 B3 G3\n\n\nHomeworlds Online (SDG# 19648)\nVariants: &quot;Hard time&quot;\nStarted: 2011.4.22, Ended: 2011.5.10\nParticipants: SilentTitan (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R2 B3 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) mneme: Build G1 Mneme\n\n4) SilentTitan: Build G1 Silenttitan\n\tmneme: hmm.  small u?  I&#39;ve not played that before.  Should prove interesting.\n\n5) mneme: Trade G1 Y1 Mneme\n\tSilentTitan: well I figured... you&#39;re not new to this ... so time to experiment... right?\r\n\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) mneme: Build G1 Mneme\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) mneme: Discover G1 Mneme Y1 Echothis\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) mneme: Build Y2 Mneme\n\tmneme: Sure, why not?  At least it&#39;s not microverse! \n\n12) SilentTitan: Discover Y2 Silenttitan R1 Ant\n\n13) mneme: Build G1 Mneme\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) mneme: Build G2 Echothis\n\n16) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y3 Ant\n\n17) mneme: Discover Y1 Mneme B1 Tryouts\n\n18) SilentTitan: Trade Y2 R2 Silenttitan\n\n19) mneme: Sacrifice G2 Echothis\nBuild Y2 Tryouts\nBuild Y3 Mneme\n\n20) SilentTitan: Build Y3 Silenttitan\n\n21) mneme: Sacrifice Y2 Mneme\nMove Y2 Tryouts Silenttitan\nMove Y1 Tryouts Silenttitan\nCatastrophe Silenttitan Y\n\n22) SilentTitan: Move Y3 Ant Silenttitan\n\n23) mneme: Trade G1 B1 Mneme\n\n24) SilentTitan: Move R2 Silenttitan Echothis\n\n25) mneme: Discover G1 Echothis R3 Ruby\n\n26) SilentTitan: Build G1 Silenttitan\n\n27) mneme: Build B1 Mneme\n\n28) SilentTitan: Build Y1 Silenttitan\n\n29) mneme: Discover B1 Mneme G1 Ghost\n\n30) SilentTitan: Trade Y1 B1 Silenttitan\n\n31) mneme: Build Y1 Mneme\n\n32) SilentTitan: Move B1 Silenttitan Echothis\n\n33) mneme: Build B2 Ghost\n\n34) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Echothis\nBuild R1 Echothis\nBuild B2 Echothis\n\n35) mneme: Discover B1 Mneme Y1 Hunter\n\n36) SilentTitan: Build G2 Silenttitan\n\n37) mneme: Sacrifice G3 Mneme\nBuild B3 Ghost\nBuild B3 Hunter\nBuild G2 Ruby\n\n38) SilentTitan: Sacrifice Y2 Ant\nMove B1 Echothis Mneme\nMove B2 Echothis Mneme\n\n39) mneme: Attack B2 Mneme\n\n40) SilentTitan: Move G2 Silenttitan Ghost\n\n41) mneme: Attack B1 Mneme\n\n42) SilentTitan: Build G2 Ghost\n\n43) mneme: Sacrifice Y1 Mneme\nMove B3 Ghost Ruby\n\n44) SilentTitan: Sacrifice R1 Echothis\nAttack B2 Ghost North\n\n45) mneme: Sacrifice B1 Mneme\nTrade B3 R3 Hunter\n\n46) SilentTitan: Build G3 Silenttitan\n\n47) mneme: Sacrifice G2 Ruby\nBuild B1 Ruby\nBuild B3 Hunter\n\n48) SilentTitan: Sacrifice B2 Ghost\nTrade G2 Y2 Ghost\nTrade G2 Y2 Ghost\n\n49) mneme: Trade B3 G3 Ruby\n\n50) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Ghost\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n51) mneme: Sacrifice G3 Ruby\nBuild B2 Ruby\nBuild B3 Ghost\nBuild G2 Ruby\n\n52) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Ghost Mneme\nMove Y2 Ghost Mneme\nMove Y1 Ghost Mneme\nCatastrophe Mneme Yellow\n\n53) mneme: Sacrifice B2 Ruby\nTrade B3 Y3 Ghost\nTrade B3 G3 Hunter\n\n54) SilentTitan: Sacrifice G1 Silenttitan\nBuild R1 Echothis\n\n55) mneme: Sacrifice G3 Hunter\nBuild B2 Ruby\nBuild B3 Hunter\nBuild B3 Ghost\n\n56) SilentTitan: Discover R1 Echothis G2 Fin\n\tSilentTitan: Great Game, I knew several turns ago I was going to come up short.  My big mistake was the turn I came into your system at 2011-05-03 00:49:13. I misread where I was and thought I had a follow up blue ship to cause the cat next turn.\n\n57) mneme: Sacrifice B2 Ruby\nTrade B3 G3 Hunter\nTrade B3 Y3 Ghost\n\tmneme: Yeah, that was certainly the big turning point.  I&#39;d actually missed that I could deny you the blue for the kill until after I did it, then it was obvious.\n\tmneme: Mind, we&#39;re not over yet, no?  Although without G and against a blue engine, you&#39;re in big, big trouble.\n\n58) SilentTitan: Build R1 Fin\n\n59) mneme: Move Y3 Ghost Silenttitan\n\n\tSilentTitan: Thanks\n\nHomeworlds Online (SDG# 19684)\nStarted: 2011.4.22, Ended: 2011.5.2\nParticipants: mathochist (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 19685)\nStarted: 2011.4.22, Ended: 2011.4.28\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R2 B3 G3\n\n2) ts52: H Y1 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) ts52: Trade G1 R1 Ts52\n\n7) mneme: Build Y1 Mneme\n\n8) ts52: Build G1 Ts52\n\n9) mneme: Build Y2 Mneme\n\n10) ts52: Build R1 Ts52\n\n11) mneme: Trade Y2 R2 Mneme\n\n12) ts52: Discover R1 Ts52 G3 Kermit\n\n13) mneme: Build Y2 Mneme\n\n14) ts52: Build G1 Ts52\n\n15) mneme: Discover Y2 Mneme G1 Growth\n\n16) ts52: Trade G1 B1 Ts52\n\n17) mneme: Discover Y1 Mneme G1 Prosperity\n\n18) ts52: Build G2 Ts52\n\n19) mneme: Build G2 Mneme\n\n20) ts52: Trade G2 Y2 Ts52\n\n21) mneme: Sacrifice G3 Mneme\nBuild Y2 Prosperity\nBuild Y3 Growth\nBuild Y3 Mneme\n\n22) ts52: Move Y2 Ts52 Kermit\n\n23) mneme: Build Y3 Mneme\n\n24) ts52: Discover G1 Ts52 B3 Grover\n\n25) mneme: Trade Y1 B1 Mneme\n\n26) ts52: Build G2 Ts52\n\n27) mneme: Move Y3 Growth Grover\n\n28) ts52: Build R1 Kermit\n\n29) mneme: Trade Y3 G3 Mneme\n\n30) ts52: Build G2 Grover\n\n31) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Growth\nBuild Y3 Grover\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\n\n33) mneme: Trade Y3 R3 Grover\n\n34) ts52: Discover R3 Ts52 Y3 Bigbird\n\n35) mneme: Sacrifice Y2 Growth\nMove R2 Mneme Growth\nMove R2 Growth Kermit\nCatastrophe Kermit R\n\n36) ts52: Move R3 Bigbird Prosperity\n\n37) mneme: Attack G2 Grover\n\n38) ts52: Attack Y2 Prosperity\n\n39) mneme: Attack G1 Grover\n\n40) ts52: Discover G2 Ts52 Y3 Bigbird\n\n41) mneme: Sacrifice Y3 Mneme\nMove G2 Grover Prosperity\nMove G1 Grover Prosperity\nMove G2 Mneme Prosperity\nCatastrophe Prosperity G\n\n42) ts52: Build G1 Ts52\n\n43) mneme: Build G1 Mneme\n\tmneme: thanks for not falling into my trap, btw.  That would have been disappointing.\r\n\n\n44) ts52: Move B1 Ts52 Bigbird\n\n45) mneme: Sacrifice G1 Mneme\nBuild R1 Grover\n\n46) ts52: Build B1 Bigbird\n\tts52: no problem. I&#39;ll put up as much of a fight as I can\n\n47) mneme: Build Y1 Growth\n\n48) ts52: Build Y2 Kermit\n\n49) mneme: Move Y1 Growth Mneme\n\n50) ts52: Build B2 Bigbird\n\n51) mneme: Trade R1 G1 Grover\n\n52) ts52: Trade B2 R2 Bigbird\n\n53) mneme: Sacrifice G3 Mneme\nBuild Y2 Grover\nBuild Y3 Mneme\nBuild G2 Grover\n\n54) ts52: Move R2 Bigbird Growth\n\n55) mneme: Sacrifice Y3 Grover\nMove G2 Grover Ts52\nMove G1 Grover Ts52\nMove R3 Grover Ts52\nCatastrophe Ts52 G\n\n56) ts52: Sacrifice Y2 Kermit\nMove G2 Bigbird Ts52\nMove B1 Bigbird Ts52\n\n57) mneme: Attack G2 Ts52\n\tmneme: Ah, well.  This time, you did fall into it.\r\nThere&#39;s something to be said for using a &quot;check&quot; convention in this game (when not playing with experts past a certain level, anyways).\n\tts52: Yeah. I was too busy trying to figure some hope of turning this one around, missed you setting up the kill. Well done.\n\n58) ts52: Trade B1 R1 Ts52\n\n59) mneme: Build R1 Ts52\nCatastrophe Ts52 R\n\n\tts52: Well played. Thanks for the game.\n\tmneme: Likewise; it was a fun one.\n\nHomeworlds Online (SDG# 19768)\nVariants: &quot;Unrated&quot;\nStarted: 2011.4.27, Ended: 2011.6.4\nParticipants: OnePageWars (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y1 G3\n\n2) OnePageWars: Homeworld Y3 G2 B3\n\n3) lorgar: Build G1 Lorgar\n\tOnePageWars: thanks for playing.\n\n4) OnePageWars: Build B1 Onepagewars\n\tlorgar: pleasure&#39;s mine :D\n\n5) lorgar: Build G1 Lorgar\n\n6) OnePageWars: Trade B3 Y3 Onepagewars\n\n7) lorgar: Trade G1 B1 Lorgar\n\n8) OnePageWars: Build B1 Onepagewars\n\n9) lorgar: Discover B1 Lorgar G3 Gate\n\n10) OnePageWars: Discover B1 Onepagewars G1 Garden\n\n11) lorgar: Build G1 Lorgar\n\n12) OnePageWars: Build Y1 Onepagewars\n\n13) lorgar: Discover G1 Lorgar B3 Safe\n\n14) OnePageWars: Move Y1 Onepagewars Garden\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lorgar\nBuild G2 Lorgar\nBuild G3 Safe\n\n16) OnePageWars: Build B2 Garden\n\n17) lorgar: Sacrifice G2 Lorgar\nBuild G2 Safe\nBuild G3 Lorgar\n\n18) OnePageWars: Trade B1 R1 Garden\n\tOnePageWars: oh, i get it. Now you&#39;re the only one with G tech.\n\n19) lorgar: Trade G3 R3 Safe\n\n20) OnePageWars: Build B1 Garden\n\tlorgar: when did you start playing homeworld?\n\tOnePageWars: When I joined SDG. I don&#39;t know exactly.\n\n21) lorgar: Trade G1 Y1 Safe\n\n22) OnePageWars: Build Y2 Garden\n\n23) lorgar: Move R3 Safe Garden\n\n\nHomeworlds Online (SDG# 19812)\nVariants: &quot;Hard time&quot;\nStarted: 2011.4.28, Ended: 2011.5.1\nParticipants: AdamBadura (S), ajo (N)\nWinner: AdamBadura\n\n1) ajo: Homeworld B3 G2 Y3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) ajo: Build Y1 Ajo\n\tajo: Ooh. Tricky.\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) ajo: Build Y1 Ajo\n\n6) AdamBadura: Trade Y1 G1 Adambadura\n\n7) ajo: Discover Y1 Ajo G1 Alpha\n\n8) AdamBadura: Build G1 Adambadura\n\n9) ajo: Trade Y1 R1 Ajo\n\n10) AdamBadura: Discover G1 Adambadura R1 Outpost\n\n11) ajo: Build Y1 Ajo\n\n12) AdamBadura: Build G2 Outpost\n\n13) ajo: Build Y1 Alpha\n\n14) AdamBadura: Build Y2 Adambadura\n\n15) ajo: Move Y1 Alpha Adambadura\n\n16) AdamBadura: Trade Y2 R2 Adambadura\n\n17) ajo: Build Y2 Adambadura\n\n18) AdamBadura: Trade Y3 R3 Adambadura\n\n19) ajo: Sacrifice Y1 Adambadura\nDiscover Y2 Adambadura B1 Beta\n\tajo: Okay, that didn&#39;t work. :P\n\n20) AdamBadura: Trade R3 Y3 Adambadura\n\n21) ajo: Trade Y2 G2 Beta\n\n22) AdamBadura: Build G3 Outpost\n\n23) ajo: Build G3 Beta\n\n24) AdamBadura: Build Y1 Adambadura\n\n25) ajo: Build Y2 Alpha\n\n26) AdamBadura: Sacrifice Y1 Adambadura\nDiscover G2 Outpost Y2 Highway\n\n27) ajo: Sacrifice Y2 Alpha\nMove G2 Beta Adambadura\nMove G3 Beta Adambadura\nCatastrophe Adambadura Green\n\n28) AdamBadura: Sacrifice G3 Outpost\nBuild G1 Highway\nBuild G2 Highway\nBuild G3 Outpost\n\n29) ajo: Trade Y1 B1 Ajo\n\n30) AdamBadura: Discover G2 Highway Y1 Nearby\n\n31) ajo: Move B1 Ajo Alpha\n\n32) AdamBadura: Sacrifice G3 Outpost\nBuild G3 Outpost\nBuild G3 Nearby\nBuild G3 Nearby\n\n33) ajo: Build B1 Alpha\n\n34) AdamBadura: Move R2 Adambadura Alpha\n\n35) ajo: Sacrifice Y3 Ajo\nMove Y1 Alpha Adambadura\nMove B1 Alpha Adambadura\nMove B1 Alpha Adambadura\n\n36) AdamBadura: Sacrifice R2 Alpha\nAttack Y1 Adambadura\nAttack B1 Adambadura\n\tajo: I&#39;m definitely in trouble, but I can still put you in check. :)\n\n37) ajo: Trade B1 R1 Adambadura\n\n38) AdamBadura: Trade Y3 R3 Adambadura\n\n39) ajo: Attack B1S Adambadura\n\n40) AdamBadura: Attack R1 Adambadura\n\n41) ajo: Build R2 Ajo\n\n42) AdamBadura: Move G3 Nearby Ajo\n\n43) ajo: Sacrifice R2 Ajo\nAttack R1S Adambadura\nAttack Y1S Adambadura\n\tajo: Somehow you still haven&#39;t killed me yet. I know it&#39;s coming eventually, though. :)\n\n44) AdamBadura: Attack R1 Adambadura\n\tajo: One more move, then I&#39;ll call it quits.\n\n\tajo: There&#39;s the checkmate. Good game. :)\n\nHomeworlds Online (SDG# 19801)\nVariants: &quot;Unrated&quot;\nStarted: 2011.4.28, Ended: 2011.6.1\nParticipants: radio414 (S), OnePageWars (N)\nWinner: radio414\n\n1) OnePageWars: Homeworld B3 G2 Y3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) radio414: Build G1 Radio414\n\n5) OnePageWars: Trade Y1 G1 Onepagewars\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) radio414: Build G1 Radio414\n\n9) OnePageWars: Discover Y3 Onepagewars R1 Thedeathstar\n\n10) radio414: Trade G1 B1 Radio414\n\n11) OnePageWars: Move G1 Onepagewars Thedeathstar\n\n12) radio414: Discover B1 Radio414 G3 Alderaan\n\n13) OnePageWars: Build Y1 Onepagewars\n\n14) radio414: Build B1 Alderaan\n\n15) OnePageWars: Build Y2 Onepagewars\n\n16) radio414: Trade B1 R1 Alderaan\n\n17) OnePageWars: Trade Y1 B1 Onepagewars\n\n18) radio414: Build R2 Alderaan\n\n19) OnePageWars: Move B1 Onepagewars Thedeathstar\n\n20) radio414: Build R2 Alderaan\n\n21) OnePageWars: Build G1 Thedeathstar\n\n22) radio414: Trade R2 Y2 Alderaan\n\n23) OnePageWars: Trade Y2 R2 Onepagewars\n\n24) radio414: Build G1 Radio414\n\n25) OnePageWars: Build G2 Thedeathstar\n\n26) radio414: Sacrifice Y2 Alderaan\nMove G1 Radio414 Alderaan\nMove G1 Alderaan Thedeathstar\nCatastrophe Thedeathstar G\n\n27) OnePageWars: Build Y1 Onepagewars\n\n28) radio414: Build Y2 Radio414\n\n29) OnePageWars: Trade Y1 G1 Onepagewars\n\tOnePageWars: forgot about catastrophes. :(\n\n30) radio414: Build G1 Radio414\n\n31) OnePageWars: Build G1 Onepagewars\n\n32) radio414: Move Y2 Radio414 Alderaan\n\n33) OnePageWars: Move G1 Onepagewars Thedeathstar\n\n34) radio414: Build B1 Alderaan\n\n35) OnePageWars: Build B2 Thedeathstar\n\n36) radio414: Trade G1 Y1 Radio414\n\n37) OnePageWars: Build Y2 Onepagewars\n\n38) radio414: Move Y1 Radio414 Alderaan\n\n39) OnePageWars: Build G1 Thedeathstar\n\n40) radio414: Build G2 Radio414\n\n41) OnePageWars: Move G1 Onepagewars Thedeathstar\n\n42) radio414: Sacrifice Y2 Alderaan\nDiscover R2 Alderaan Y2 Hoth\nMove B1 Alderaan Hoth\n\n43) OnePageWars: Move G1 Thedeathstar Onepagewars\n\n44) radio414: Build B2 Alderaan\n\n45) OnePageWars: Build Y2 Thedeathstar\n\n46) radio414: Build Y3 Alderaan\n\n47) OnePageWars: Trade Y3 R3 Thedeathstar\n\n48) radio414: Sacrifice Y3 Alderaan\nMove R1 Alderaan Thedeathstar\nMove R2 Hoth Thedeathstar\nMove B1 Hoth Alderaan\nCatastrophe Thedeathstar R\n\n\tOnePageWars: Hans Solo blew up the death star!\n\tOnePageWars: No, wait. This is the first Death star. So it was  blown up by luke along with other fighters from Hoth.\n\tOnePageWars: It&#39;s funny that you launched part of your attack from Hoth, too!\n\nHomeworlds Online (SDG# 19839)\nStarted: 2011.4.29, Ended: 2011.5.17\nParticipants: OnePageWars (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 G2 Y3\n\n2) OnePageWars: Homeworld B2 G1 Y3\n\tOnePageWars: Welcome! Thanks for accepting my standing challenge!\n\n3) ajo: Build Y1 Ajo\n\n4) OnePageWars: Build Y1 Onepagewars\n\n5) ajo: Trade Y1 G1 Ajo\n\n6) OnePageWars: Trade Y1 G1 Onepagewars\n\n7) ajo: Build G2 Ajo\n\n8) OnePageWars: Build Y1 Onepagewars\n\n9) ajo: Discover G1 Ajo B1 Alpha\n\n10) OnePageWars: Build Y1 Onepagewars\n\n11) ajo: Build G2 Alpha\n\n12) OnePageWars: Build G3 Onepagewars\n\n13) ajo: Build G3 Alpha\n\n14) OnePageWars: Trade Y1 R1 Onepagewars\n\n15) ajo: Trade G2 R2 Alpha\n\n16) OnePageWars: Discover Y3 Onepagewars R3 Narnia\n\n17) ajo: Trade G3 Y3 Alpha\n\n18) OnePageWars: Trade G1 B1 Onepagewars\n\n19) ajo: Build Y1 Alpha\n\n20) OnePageWars: Build R1 Onepagewars\n\n21) ajo: Build G1 Ajo\n\n22) OnePageWars: Build B1 Onepagewars\n\n23) ajo: Build G2 Alpha\n\n24) OnePageWars: Build G3 Onepagewars\n\n25) ajo: Sacrifice Y3 Alpha\nDiscover G1 Alpha Y3 Waypoint\nMove G2 Alpha Waypoint\nMove G1 Waypoint Onepagewars\nCatastrophe Onepagewars Green\n\tajo: Huh. Okay then, I can do that.\n\n26) OnePageWars: Move Y3 Narnia Onepagewars\n\tOnePageWars: This is the second time in my few weeks of playing homeworlds that a catastrophe has occured. :(\n\n27) ajo: Move G1 Ajo Alpha\n\tajo: Aha. Well, in case you didn&#39;t know, a catastrophe occurs whenever four or more pieces of the same color are in the same system.\n\tajo: It&#39;s usually a bad idea to keep three pieces of the same color in the same system, because that lets your opponent do what I just did. Keep your colors split up.\n\n28) OnePageWars: Trade B1 G1 Onepagewars\n\tOnePageWars: yeah, i knew that, just underestimated the disaster of a catastrophe, i guess. :/\n\n29) ajo: Trade Y1 B1 Alpha\n\n30) OnePageWars: Build Y1 Onepagewars\n\n31) ajo: Build Y1 Ajo\n\n32) OnePageWars: Build B2 Onepagewars\n\n33) ajo: Sacrifice Y1 Ajo\nMove B1 Alpha Onepagewars\nCatastrophe Onepagewars Blue\n\n\nHomeworlds Online (SDG# 19843)\nStarted: 2011.4.30, Ended: 2011.5.30\nParticipants: alexcobo (S), OnePageWars (N)\nWinner: alexcobo\n\n1) OnePageWars: Homeworld G3 Y2 B3\n\n2) alexcobo: Homeworld B1 G3 Y3\n\n3) OnePageWars: Build B1 Onepagewars\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) OnePageWars: Trade B1 G1 Onepagewars\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) alexcobo: Trade Y1 G1 Alexcobo\n\n9) OnePageWars: Trade G1 Y1 Onepagewars\n\n10) alexcobo: Discover G1 Alexcobo B2 Change\n\n11) OnePageWars: Build B1 Onepagewars\n\n12) alexcobo: Build G1 Change\n\n13) OnePageWars: Trade B3 Y3 Onepagewars\n\n14) alexcobo: Build G2 Change\n\n15) OnePageWars: Discover Y1 Onepagewars R1 Icehousepiece\n\n16) alexcobo: Trade G1 R1 Change\n\n17) OnePageWars: Move Y3 Onepagewars Icehousepiece\n\n18) alexcobo: Build R1 Change\n\n19) OnePageWars: Build G1 Onepagewars\n\n20) alexcobo: Trade G2 Y2 Change\n\n21) OnePageWars: Trade G1 B1 Onepagewars\n\n22) alexcobo: Build R2 Change\n\n23) OnePageWars: Move B1 Onepagewars Icehousepiece\n\n24) alexcobo: Sacrifice Y3 Alexcobo\nMove R1 Change Icehousepiece\nMove R1 Change Icehousepiece\nMove R2 Change Icehousepiece\nCatastrophe Icehousepiece R\n\n25) OnePageWars: Build B1 Onepagewars\n\n26) alexcobo: Build Y1 Alexcobo\n\n\tOnePageWars: tx for the game!\n\nHomeworlds Online (SDG# 19838)\nVariants: &quot;Unrated&quot;\nStarted: 2011.4.30, Ended: 2011.5.25\nParticipants: roboxx (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld Y3 B2 G3\n\n2) roboxx: Homeworld Y1 B3 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) roboxx: Build G1 Roboxx\n\n5) OnePageWars: Build G1 Onepagewars\n\n6) roboxx: Discover G1 Roboxx R2 Cybertron\n\n7) OnePageWars: Discover G3 Onepagewars R1 Vulcan\n\n8) roboxx: Build G2 Cybertron\n\n9) OnePageWars: Build G2 Vulcan\n\n10) roboxx: Build G2 Roboxx\n\n11) OnePageWars: Build G3 Onepagewars\n\n12) roboxx: Trade G2 Y2 Roboxx\n\n13) OnePageWars: Trade G1 Y1 Onepagewars\n\n14) roboxx: Sacrifice Y2 Roboxx\nDiscover G2 Cybertron B3 Grey\nDiscover G1 Cybertron B3 Reptilian\n\n15) OnePageWars: Trade G1 B1 Onepagewars\n\n16) roboxx: Build G1 Roboxx\n\n17) OnePageWars: Build B1 Onepagewars\n\tOnePageWars: that system isn&#39;t grey, it&#39;s blue!\n\n\nHomeworlds Online (SDG# 19867)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.2, Ended: 2011.5.3\nParticipants: AdamBadura (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) AdamBadura: Homeworld B3 G2 Y3\n\tgoulo: finally we play again! :)\n\n3) goulo: Build G1 Goulo\n\tAdamBadura: For some time I was inactive at SDG. But few days ago someone challenged me on Homeworlds Ladder. I gave him a lesson (by defending easly) and decided to issue some challanges myself. ;)\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) AdamBadura: Discover Y1 Adambadura G1 Drydocks\n\tgoulo: i wish someone would create online rambots and gnostica...\n\n7) goulo: Build G1 Goulo\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) goulo: Discover G1 Goulo R1 Rubeneto\n\n10) AdamBadura: Build Y2 Adambadura\n\n11) goulo: Build Y2 Goulo\n\n12) AdamBadura: Move Y2 Adambadura Rubeneto\n\n13) goulo: Sacrifice G1 Rubeneto\nBuild G1 Goulo\n\tAdamBadura: Hmm... I just realized that I made our systems connect by one intermediate system. I didn&#39;t want that. Lets see what will happen... :)\n\n14) AdamBadura: Trade Y3 R3 Adambadura\n\tgoulo: it doesn&#39;t seem to be working out bad for you...\n\tgoulo: after playing a few games with the strongest players, i realize how weak and unfocused my opening is.\n\n15) goulo: Move Y2 Goulo Drydocks\n\tAdamBadura: Maybe you just don&#39;t respect me enough to care... ;)\n\n16) AdamBadura: Build Y2 Drydocks\n\n17) goulo: Build Y3 Goulo\n\n18) AdamBadura: Build Y3 Adambadura\n\n19) goulo: Move Y3 Goulo Rubeneto\n\n20) AdamBadura: Discover Y2 Rubeneto Y3 Redundancy\n\n21) goulo: Trade G1 R1 Goulo\n\n22) AdamBadura: Build R1 Adambadura\n\n23) goulo: Build G1 Goulo\n\n24) AdamBadura: Move R1 Adambadura Drydocks\n\n25) goulo: Sacrifice R1 Goulo\nAttack R1 Drydocks\n\n26) AdamBadura: Build R1 Adambadura\n\tAdamBadura: Stupid me... ;)\n\n27) goulo: Attack Y2 Drydocks\n\n28) AdamBadura: Move Y1 Adambadura Drydocks\nCatastrophe Drydocks Y\n\n29) goulo: Build Y1 Goulo\n\n30) AdamBadura: Build Y1 Adambadura\n\n31) goulo: Move Y1 Goulo Drydocks\n\n32) AdamBadura: Move R3 Adambadura Drydocks\n\n33) goulo: Build R2 Drydocks\n\n34) AdamBadura: Sacrifice Y1 Adambadura\nMove R3 Drydocks Redundancy\n\tAdamBadura: Oh... How haven&#39;t I forseen this... I&#39;m a bad player. :(\n\n35) goulo: Build Y1 Drydocks\n\n36) AdamBadura: Build Y2 Adambadura\n\n37) goulo: Sacrifice Y3 Rubeneto\nMove Y1 Drydocks Adambadura\nMove Y1 Drydocks Adambadura\nMove R2 Drydocks Adambadura\nCatastrophe Adambadura Y\n\n\tgoulo: that was an unexpected nice opportunity for me! :) i was rather expecting to maybe get to a catastrophe at Redundancy...\n\tAdamBadura: I screwed up that game so badly that I am ashame of my self. This makes me wonder whether I&#39;m worthy buying Pyramids. ;)\n\tgoulo: Only by owning the sacred pyramids and worshipping them every day will your spirit be able to grow, and thus you will grow stronger at Homeworlds. :)\n\tgoulo: But seriously, I think we both made various silly errors. I am continually impressed by how subtle and deep and non-obvious this game is. Since it has a space empire theme, I sometimes find myself playing it with a &quot;wargame&quot; mentality instead of an &quot;abstract strategy game&quot; mentality, and that doesn&#39;t work well in Homeworlds. :)\n\nHomeworlds Online (SDG# 19873)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.2, Ended: 2011.5.28\nParticipants: Remneb (S), nycavri (N)\nWinner: Remneb\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: TaGG!\n\n2) Remneb: Homeworld R2 B3 G3\n\tRemneb: Have a good game.\n\n3) nycavri: B G1 Nycavri\n\n4) Remneb: Build G1 Remneb\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) nycavri: Build G1 Nycavri\n\n8) Remneb: Build G1 Remneb\n\n9) nycavri: Discover G1 Nycavri Y3 Deacon\n\n10) Remneb: Discover G1 Remneb Y1 Sirius\n\n11) nycavri: Build Y2 Nycavri\n\n12) Remneb: Build Y2 Remneb\n\n13) nycavri: Discover Y2 Nycavri G3 May\n\n14) Remneb: Move Y2 Remneb Sirius\n\n15) nycavri: Build Y3 May\n\n16) Remneb: Build Y3 Remneb\n\n17) nycavri: Discover Y2 May B1 Mercury\n\n18) Remneb: Move Y3 Remneb Mercury\n\n19) nycavri: Build G1 Deacon\n\n20) Remneb: Build G2 Remneb\n\n21) nycavri: Move G1 Deacon Sirius\n\n22) Remneb: Move G2 Remneb Mercury\n\n23) nycavri: Move G1 Deacon Mercury\n\n24) Remneb: Build Y3 Remneb\n\n25) nycavri: Sacrifice Y2 Mercury\nMove G1 Mercury Remneb\nMove G1 Sirius Remneb\n\n26) Remneb: Move G3 Remneb Mercury\n\n27) nycavri: Build Y2 May\n\n28) Remneb: Attack G1 Remneb\n\n29) nycavri: Build G2 Nycavri\n\n30) Remneb: Attack G1 Remneb\n\n31) nycavri: Move Y2 May Mercury\n\n32) Remneb: Trade Y1 R1 Remneb\n\n33) nycavri: Trade Y2 R2 Mercury\n\n34) Remneb: Sacrifice R1 Remneb\nAttack R2 Mercury\n\n35) nycavri: Discover G2 Nycavri B3 Taylor\n\n36) Remneb: Sacrifice Y2 Sirius\nMove G3 Mercury May\nMove G3 May Nycavri\n\n37) nycavri: Trade G3 R3 Nycavri\n\n38) Remneb: Sacrifice R2 Mercury\nAttack R3 Nycavri\nAttack Y1 Nycavri\n\n\tRemneb: Thanks for the game\n\nHomeworlds Online (SDG# 19880)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.3, Ended: 2011.5.13\nParticipants: OnePageWars (S), Kermit (N)\nWinner: OnePageWars\n\n1) Kermit: Homeworld Y3 B1 G3\n\n2) OnePageWars: Homeworld B3 G2 Y3\n\n3) Kermit: Build G1 Kermit\n\n4) OnePageWars: Build Y1 Onepagewars\n\n\tOnePageWars: sorry.\n\nHomeworlds Online (SDG# 19906)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.6, Ended: 2011.5.18\nParticipants: goulo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) goulo: Homeworld R1 B2 G3\n\tgoulo: hi, thanks for the challenge, have fun!\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: you too.  I hope it actually is a challenge.\n\n4) goulo: Build G1 Goulo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) goulo: Build G1 Goulo\n\n9) SilentTitan: Discover G1 Silenttitan B1 Sol\n\n10) goulo: Discover G1 Goulo Y3 Citroneto\n\n11) SilentTitan: Move Y1 Silenttitan Sol\n\n12) goulo: Discover G1 Citroneto Y1 Topazeto\n\n13) SilentTitan: Discover G1 Sol Y3 Sole\n\n14) goulo: Build Y2 Goulo\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) goulo: Build G2 Topazeto\n\n17) SilentTitan: Trade G3 R3 Silenttitan\n\n18) goulo: Build Y2 Goulo\n\n19) SilentTitan: Build G2 Sole\n\n20) goulo: Trade Y1 R1 Goulo\n\n21) SilentTitan: Discover G2 Sole B1 Cook\n\n22) goulo: Trade Y2 B2 Goulo\n\n23) SilentTitan: Build G2 Sole\n\n24) goulo: Sacrifice G1 Topazeto\nBuild B1 Goulo\n\n25) SilentTitan: Trade G2 Y2 Cook\n\n26) goulo: Move B2 Goulo Sole\n\n27) SilentTitan: Sacrifice Y2 Cook\nMove G2 Sole Goulo\nMove G1 Sole Goulo\n\n28) goulo: Trade G3 Y3 Goulo\n\n29) SilentTitan: Sacrifice R3 Silenttitan\nAttack B1 Goulo South\nAttack R1 Goulo South\nAttack Y2 Goulo South\n\n30) goulo: Move G2 Topazeto Silenttitan\n\tgoulo: Good one; I didn&#39;t expect sacrifice R3...\n\n31) SilentTitan: Sacrifice G2 Goulo\nBuild Y1 Goulo\nBuild Y1 Goulo\nCatastrophe Goulo Yellow\n\tSilentTitan: I saw it at the last second\n\tgoulo: Thanks for the game!\n\n\nHomeworlds Online (SDG# 19836)\nVariants: &quot;Unrated&quot;\nStarted: 2011.5.6, Ended: 2011.10.19\nParticipants: AnalogKid (S), alexcobo (W), lorgar (N), OnePageWars (E)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) OnePageWars: Homeworld G3 B2 Y3\n\n3) AnalogKid: Homeworld B2 Y1 G3\n\n4) alexcobo: Homeworld G3 B2 Y3\n\tAnalogKid: Hello everyone!  4-player Homeworlds will be a new experience for me.  I hope that you all have a good game :)\n\tOnePageWars: ditto.\n\talexcobo: Have fun, everyone.\n\n5) lorgar: Build G1 Lorgar\n\n6) OnePageWars: Build Y1 Onepagewars\n\n7) AnalogKid: Build G1 Analogkid\n\tOnePageWars: i always like the first move after my homeworld is created. It&#39;s so easy to decide what to do. :)\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) lorgar: Build G1 Lorgar\n\n10) OnePageWars: Trade Y1 G1 Onepagewars\n\n11) AnalogKid: Discover G1 Analogkid G3 Endor\n\tOnePageWars: I&#39;ve noticed that many homeworlds games end up having themed planet names. I was wondering if anyone wanted to agree on a theme or if it was going to be free-for-all in name choosing. If noone likes the idea, thats fine.\n\tOnePageWars: my vote personally would either be for a star wars theme, a phantome of the opera theme, or a Game theme. (chess world, checkers world, fortac world, etc.)\n\n12) alexcobo: Trade Y1 G1 Alexcobo\n\n13) lorgar: Trade G1 B1 Lorgar\n\n14) OnePageWars: Build Y1 Onepagewars\n\n15) AnalogKid: Build G1 Analogkid\n\n16) alexcobo: Build Y1 Alexcobo\n\talexcobo: &quot;A small Rebel ship passed through the energy shield and landed on Endor&quot;\r\n&quot;Yes, I know&quot;\n\n17) lorgar: Discover B1 Lorgar G2 Chasmcity\n\n18) OnePageWars: Trade Y1 R1 Onepagewars\n\tlorgar: meanwhile, elsewhere, some infamous Ultras discovered the strange features of a new acid world and founded chasm city.\n\n19) AnalogKid: Build G2 Analogkid\n\tOnePageWars: Then The world from the east overturned their massive powerdecks on a Y1 and installed huge blasters.\n\n20) alexcobo: Sacrifice Y3 Alexcobo\nDiscover G1 Alexcobo R1 Impendingdoom\nMove G1 Impendingdoom Endor\nMove G1 Endor Analogkid\nCatastrophe Analogkid G\n\n21) lorgar: Build B1 Chasmcity\n\talexcobo: I know I am next... but I could not help myself... :-)\n\tAnalogKid: Huh ... I really thought no one would do that since it would put one too far behind.  *shrug* oh well :)\n\n22) OnePageWars: Build Y1 Onepagewars\n\n23) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: The factories of OnePageWars were busy churning out a new fleet of ships. A small fleet with huge powerdecks.\n\n24) lorgar: Trade B1 R1 Chasmcity\n\n25) OnePageWars: Trade Y1 B1 Onepagewars\n\tlorgar: as soon as the news of the OnePageWars plans of fleet domination reached the newly founded system, the local government ordered the law enforcers to create and train militias.\n\n26) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: Soon thereafter, onepagewars again traded, this time having a shiny new ship with many diplomats to show for it.\n\n27) lorgar: Build B1 Chasmcity\n\n28) OnePageWars: Build R1 Onepagewars\n\tlorgar: as the militarist faction grew more powerful, the endor trading association (ETA) decided to build a new ship\n\n29) alexcobo: Trade Y1 R1 Alexcobo\n\tOnePageWars: As OPW&#39;s neighbors grew more powerful, the government was forced to build another red ship in order to keep the peace on their own planets.\n\n30) lorgar: Trade B1 Y1 Chasmcity\n\n31) OnePageWars: Build Y1 Onepagewars\n\tlorgar: in this age of interstellar totalitarism, the endor trading merchant opened their first trading route to chasm city, buying there ships and facilities.\n\n32) alexcobo: Trade Y1 G1 Alexcobo\n\tOnePageWars: And for the umpteenth time, another small ship with  huge powerdecks was created from the secret onepagewars factories.\n\n33) lorgar: Trade G1 R1 Lorgar\n\n34) OnePageWars: Discover Y1 Onepagewars B1 Pointy\n\n35) alexcobo: Build G1 Alexcobo\n\tOnePageWars: When the onepagewars diplomats saw that their narration had become excessibely repetitive, they were forced to do something new. So they discovered a plantet. So exciting.\n\n36) lorgar: Build R2 Chasmcity\n\tlorgar: after a loooong political battle, the militarists drew there gun and shot the chasm city democratic council, therefore becoming the new government. as what they are they bought a biiig battleship and threw a party on the spitshining new deck\n\n37) OnePageWars: Build R2 Onepagewars\n\n38) alexcobo: Build R2 Alexcobo\n\tOnePageWars: Scared silly by the huge r2, onepagewars is forced by their own citizens to match the fleet. But The system may not be able to support that many red ships. If an enemy came in, the red ships could become junk!\n\tlorgar: in front of all that silly display of guns, chasmcity woman liberation front threw a huge hippie party in front of the army facilities, the army slogan FTA (turned round and round until becoming something utterly different)\n\tOnePageWars: The onepagewars diplomats went and got some cups of coffee.\n\n39) lorgar: Trade R2 Y2 Chasmcity\n\n40) OnePageWars: Move R2 Onepagewars Pointy\n\n41) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: The Captain of a r2 ship, impatient with the lack of action, disobeyed orders and piloted his ship to pointy.\n\n42) lorgar: Trade Y1 G1 Chasmcity\n\n43) OnePageWars: Build G2 Onepagewars\n\n44) alexcobo: Discover G1 Alexcobo B1 Caprica\n\tOnePageWars: Silence from the enemy could mean nothing good. Onepagewars diplomats decided to play it safe and build a fairly large shopping mall to float around in space. Then they could build whatever ships they needed.\n\n45) lorgar: Sacrifice Y2 Chasmcity\nMove G1 Chasmcity Pointy\nMove G1 Pointy Onepagewars\nCatastrophe Onepagewars Green\n\n46) OnePageWars: Trade B1 G1 Onepagewars\n\tlorgar: OH MY GOD!\r\nsaid the poor pilot, as his malfunctionning engine brought him straight in the shiny wall of the onepagewalls shopping mall,\r\n\r\nthrough a communiqu&eacute;, the authorities of chasm city stated that they would help their friend and ally onepagewars and that such attack was from secret agents of the alexcobo faction, they extend a hand, saying that this costed them a medium commercial/line ship sabotaged by the agents, allowing them to escape from chasmcity and attacking opw homesystem.\n\tOnePageWars: great storyline. Not so great that you catastrophically caused a catostropic catastrophe that was written about with catostropic spelling. :)\n\n47) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: Recovering from the devestating ruins, onepagewars was forced to trade their b1 ship for a g1 in order to rebalance the economy and allow future building of ships.\n\n48) lorgar: Build R2 Chasmcity\n\n49) OnePageWars: Build Y1 Onepagewars\n\n50) alexcobo: Discover Y1 Alexcobo G1 Scorpia\n\tOnePageWars: Overcome by poverty, the onepage wars economy did not allow for the usual transmission of data.\n\n51) lorgar: Trade R2 Y2 Chasmcity\n\n52) OnePageWars: Build G2 Onepagewars\n\n53) alexcobo: Build G2 Caprica\n\n54) lorgar: Build G2 Lorgar\n\n55) OnePageWars: Move G2 Onepagewars Pointy\n\n56) alexcobo: Build Y2 Scorpia\n\n57) lorgar: Build R2 Chasmcity\n\n58) OnePageWars: Build Y2 Pointy\n\n59) alexcobo: Build Y2 Alexcobo\n\n60) lorgar: Move R2 Chasmcity Endor\n\n61) OnePageWars: Trade R1 B1 Onepagewars\n\n62) alexcobo: Trade Y2 B2 Alexcobo\n\n63) lorgar: Build B2 Chasmcity\n\n64) OnePageWars: Build R1 Pointy\n\n65) alexcobo: Build Y2 Alexcobo\n\n66) lorgar: Build R2 Chasmcity\n\n67) alexcobo: Move B2 Alexcobo Pointy\n\n68) lorgar: Discover B1 Chasmcity G3 Ialk\n\n69) alexcobo: Sacrifice R1 Alexcobo\nAttack R2E Pointy\n\n70) lorgar: Move R1 Chasmcity Ialk\n\n71) alexcobo: Sacrifice Y1 Alexcobo\nMove G2 Caprica Onepagewars\n\n72) lorgar: Build R1 Ialk\n\n73) alexcobo: Sacrifice R2 Pointy\nAttack R1E Pointy\nAttack R1E Onepagewars\n\n74) lorgar: Attack G1S Endor\n\n75) alexcobo: Attack G2E Pointy\n\n76) lorgar: Move R2 Chasmcity Caprica\n\n77) alexcobo: Sacrifice G1 Caprica\nBuild G1 Pointy\n\tAnalogKid: What&#39;s going on in this game?  It&#39;s weird, but when I look at this page there is no list of players and it doesn&#39;t indicate who&#39;s turn it is.  I tried to resign, but the game still shows up in my list of active games (well not so active now) ... *sigh*\n\tAnalogKid: Btw, my game list says &quot;Opponent&#39;s time is up,  -51d:21h&quot; for this game but now I see that there has been a bunch of new activity in the last 10 days ... once again, weird.\n\n78) lorgar: Build B2 Ialk\n\n79) alexcobo: Attack G1E Onepagewars\n\n80) lorgar: Build B3 Chasmcity\n\talexcobo: The Capricans discover new techlology: Teleporting!\n\n81) alexcobo: Sacrifice Y2 Scorpia\nMove G1 Onepagewars Lorgar\nMove G2 Onepagewars Lorgar\nCatastrophe Lorgar G\n\n82) lorgar: Move B3 Chasmcity Lorgar\n\n83) alexcobo: Attack Y2E Pointy\n\n84) lorgar: Sacrifice Y2 Chasmcity\nMove B2 Ialk Pointy\nMove B1 Ialk Pointy\nCatastrophe Pointy Blue\n\n85) alexcobo: Attack B1E Onepagewars\n\n86) lorgar: Sacrifice B2 Chasmcity\nTrade G1 B1 Endor\nTrade R1 B1 Ialk\n\n\n87) alexcobo: Attack Y1E Onepagewars\n\n88) lorgar: Trade R2 Y2 Caprica\n\n89) alexcobo: Discover B1 Onepagewars G3 Foolmetwice\n\n90) lorgar: Move B3 Lorgar Onepagewars\n\n91) alexcobo: Move R1 Onepagewars Scorpia\n\n92) lorgar: Sacrifice R1 Ialk\nAttack Y3E Onepagewars\n\n93) alexcobo: Build B2 Foolmetwice\n\n94) lorgar: Sacrifice Y2 Caprica\nMove B3 Onepagewars Scorpia\nMove B3 Scorpia Alexcobo\n\n95) alexcobo: Sacrifice Y2 Alexcobo\nDiscover R2 Alexcobo Y1 Salto\nDiscover R2 Salto Y2 Otrosalto\n\n96) lorgar: Sacrifice R2 Endor\nAttack Y1W Alexcobo\nAttack G1W Alexcobo\n\n\nHomeworlds Online (SDG# 19846)\nStarted: 2011.5.7, Ended: 2011.6.27\nParticipants: Mandrel (S), OnePageWars (N)\nWinner: Mandrel\n\n1) OnePageWars: Homeworld B3 G2 Y3\n\n2) Mandrel: Homeworld B1 R2 G3\n\n3) OnePageWars: Build Y1 Onepagewars\n\tMandrel: Have a good game.\n\tOnePageWars: thanks, you too!\n\n4) Mandrel: B G1 Mandrel\n\n5) OnePageWars: Trade Y1 G1 Onepagewars\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) Mandrel: Build G1 Mandrel\n\n9) OnePageWars: Trade Y1 B1 Onepagewars\n\n10) Mandrel: Trade G1 B1 Mandrel\n\n11) OnePageWars: Build G1 Onepagewars\n\n12) Mandrel: B B2 Mandrel\n\n13) OnePageWars: Build Y1 Onepagewars\n\n14) Mandrel: Trade B1 R1 Mandrel\n\n15) OnePageWars: Trade G1 R1 Onepagewars\n\n16) Mandrel: Discover B2 Mandrel G3 Anticipation\n\n17) OnePageWars: Build R1 Onepagewars\n\n18) Mandrel: Move R1 Mandrel Anticipation\n\n19) OnePageWars: Discover R1 Onepagewars G1 Overextended\n\n20) Mandrel: Build R2 Anticipation\n\n21) OnePageWars: Build R2 Overextended\n\n22) Mandrel: Trade R1 Y1 Anticipation\n\n23) OnePageWars: Build B1 Onepagewars\n\n24) Mandrel: Build Y2 Mandrel\n\n25) OnePageWars: Build G1 Onepagewars\n\n26) Mandrel: Sacrifice Y2 Mandrel\nMove B2 Anticipation Overextended\nMove B2 Overextended Onepagewars\nCatastrophe Onepagewars Blue\n\n\nHomeworlds Online (SDG# 19900)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.7, Ended: 2011.5.21\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) ajo: Homeworld R1 B3 G3\n\tDanner: Hi! Have a nice game!\n\tDanner: I usually let my opponent make the starting move, but if you prefer not to do, just pass.\n\n3) Danner: Homeworld G2 B1 R3\n\n4) ajo: Build G1 Ajo\n\n5) Danner: Build R1 Danner\n\tajo: Oh, I didn&#39;t even notice your comment. That&#39;s okay, I don&#39;t mind going first. :)\n\tDanner: :)\n\n6) ajo: Build G1 Ajo\n\n7) Danner: Build R1 Danner\n\n8) ajo: Trade G3 Y3 Ajo\n\n9) Danner: Trade R3 G3 Danner\n\n10) ajo: Build G1 Ajo\n\n11) Danner: Build R2 Danner\n\n12) ajo: Discover G1 Ajo B2 Alpha\n\n13) Danner: Trade R2 Y2 Danner\n\n14) ajo: Build G2 Alpha\n\n15) Danner: Discover R1 Danner Y3 Artemus\n\n16) ajo: Trade G2 R2 Alpha\n\n17) Danner: Build R2 Danner\n\n18) ajo: Build G2 Alpha\n\n19) Danner: Discover R2 Danner G3 Trickster\n\n20) ajo: Trade G2 Y2 Alpha\n\n21) Danner: Sacrifice G3 Danner\nBuild R2 Trickster\nBuild R3 Artemus\nBuild R3 Danner\n\n22) ajo: Build R3 Alpha\n\n23) Danner: Sacrifice Y2 Danner\nMove R1 Artemus Alpha\nMove R2 Trickster Alpha\nCatastrophe Alpha R\n\n24) ajo: Build G2 Alpha\n\n25) Danner: Move R3 Artemus Alpha\n\n26) ajo: Sacrifice Y2 Alpha\nDiscover G1 Alpha B3 Beta\nMove G2 Alpha Beta\n\tajo: Yeah, I was worried about that...\n\n27) Danner: Trade R3 Y3 Alpha\n\n28) ajo: Trade G1 B1 Beta\n\n29) Danner: Build R1 Trickster\n\n30) ajo: Build G1 Ajo\n\n31) Danner: Build R2 Danner\n\n32) ajo: Discover G1 Ajo B2 Gamma\n\n33) Danner: Sacrifice Y3 Alpha\nMove R2 Trickster Gamma\nMove R2 Danner Beta\nDiscover R1 Danner G3 Garrett\n\n34) ajo: Sacrifice G1 Gamma\nBuild B1 Beta\n\n35) Danner: Attack G2S Beta\n\n36) ajo: Build Y1 Ajo\n\n37) Danner: Sacrifice R2 Gamma\nAttack B1S Beta\nAttack B1S Beta\n\tajo: I&#39;m definitely losing at this point.\n\tDanner: I think you are right. But there is still a chance that I will make some terrible mistake.\n\n38) ajo: Build Y1 Ajo\n\n39) Danner: Build R2 Beta\n\n40) ajo: Discover Y1 Ajo B2 Yech\n\n41) Danner: Build R2 Garrett\n\n42) ajo: Sacrifice G1 Ajo\nBuild Y1 Yech\n\n43) Danner: Build R3 Beta\n\n44) ajo: Build Y2 Ajo\n\n45) Danner: Trade R3 Y3 Beta\n\n46) ajo: Trade Y3 G3 Ajo\n\n47) Danner: Build R3 Danner\n\n48) ajo: Build Y2 Ajo\n\n49) Danner: Trade R3 Y3 Danner\n\n50) ajo: Trade Y2 B2 Ajo\n\n51) Danner: Move B1 Beta Yech\n\n52) ajo: Build Y2 Ajo\n\n53) Danner: Sacrifice Y3 Beta\nMove B1 Beta Yech\nMove B1 Yech Ajo\nMove B1 Yech Ajo\nCatastrophe Ajo B\n\n\tDanner: Thanks for the game!\n\nHomeworlds Online (SDG# 19750)\nStarted: 2011.5.8, Ended: 2011.5.11\nParticipants: dragmio (S), mathochist (N)\nWinner: dragmio\n\n\nHomeworlds Online (SDG# 19916)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.9, Ended: 2011.5.24\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) AdamBadura: Build Y1 Adambadura\n\n8) TwoShort: Build G1 Twoshort\n\n9) AdamBadura: Trade Y1 R1 Adambadura\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) AdamBadura: Build R1 Adambadura\n\n12) TwoShort: Build G1 Yolonda\n\n13) AdamBadura: Build G2 Adambadura\n\n14) TwoShort: Build G2 Twoshort\n\n15) AdamBadura: Discover G1 Adambadura Y1 Ontheway\n\n16) TwoShort: Discover G1 Yolonda Y1 Yoyodyne\n\n17) AdamBadura: Build G2 Ontheway\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y2 Twoshort\n\n19) AdamBadura: Move R1 Adambadura Ontheway\n\n20) TwoShort: Trade G2 R2 Twoshort\n\n21) AdamBadura: Build R2 Adambadura\n\n22) TwoShort: Sacrifice G3 Yolonda\nBuild G2 Yoyodyne\nBuild G3 Yolonda\nBuild Y2 Twoshort\n\n23) AdamBadura: Sacrifice G2 Adambadura\nBuild Y2 Adambadura\nBuild Y3 Adambadura\n\n24) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort B3 Bluonia\nDiscover G1 Yolonda B1 Bluestar\n\n25) AdamBadura: Move Y3 Adambadura Ontheway\n\n26) TwoShort: Sacrifice G3 Yolonda\nBuild Y2 Twoshort\nBuild Y3 Bluonia\nBuild G2 Bluestar\n\n27) AdamBadura: Discover Y3 Ontheway G3 Siege\n\n28) TwoShort: Trade G2 B2 Bluestar\n\n29) AdamBadura: Build R2 Ontheway\n\n30) TwoShort: Build B1 Bluestar\n\n31) AdamBadura: Move R1 Ontheway Siege\n\n32) TwoShort: Trade Y1 B1 Bluonia\n\n33) AdamBadura: Build R3 Siege\n\n34) TwoShort: Sacrifice Y3 Bluonia\nMove G1 Bluestar Adambadura\nMove G1 Yoyodyne Adambadura\nMove G2 Yoyodyne Adambadura\n\n35) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Siege Twoshort\nMove R3 Siege Twoshort\nMove Y3 Siege Twoshort\nCatastrophe Twoshort R\nCatastrophe Adambadura G\n\n36) TwoShort: Build Y1 Twoshort\nCatastrophe Twoshort Yellow\n\tAdamBadura: Did you or didn&#39;t you want to catastrophe my system? If yes then undo and catastrophe. If not then confirm here please.\n\tTwoShort: I intentionally skipped the catastrophe.  \n\n37) AdamBadura: Sacrifice Y2 Adambadura\nMove R2 Ontheway Twoshort\nMove G2 Ontheway Twoshort\n\tAdamBadura: Is it that I can make only one catastrophe per turn? Also sorry for the very long delays. My wife is in here final days of pregnecy and I have to help here more.\n\tTwoShort: You should be able to catastrophe both my world and yours; and yeah, I didn&#39;t see you could wipe out my red and move in the 3; and good luck with the baby!\n\n38) TwoShort: Trade B2 R2 Bluestar\n\tAdamBadura: The first time I must have not put command for the second catastrophe as this time it did work.\n\n39) AdamBadura: Trade R2 G2 Twoshort\n\tAdamBadura: Great. But what now? ;)\n\n40) TwoShort: Trade G3 Y3 Twoshort\n\tAdamBadura: Lots of sacrifices recently... ;)\n\n41) AdamBadura: Build G1 Twoshort\n\n42) TwoShort: Sacrifice R2 Bluestar\nAttack G2 Twoshort\nAttack G2 Twoshort\n\n43) AdamBadura: Build G1 Twoshort\nCatastrophe Twoshort G\n\n44) TwoShort: Trade Y3 G3 Twoshort\n\tAdamBadura: Its a girl!\n\n45) AdamBadura: Move G1 Ontheway Twoshort\n\tTwoShort: Congratulations!\n\n46) TwoShort: Trade G3 R3 Twoshort\n\n47) AdamBadura: Build G1 Twoshort\n\n48) TwoShort: Attack G1 Twoshort\n\n49) AdamBadura: Build G1 Twoshort\n\tAdamBadura: Somehow I haven&#39;t considered changing into R... I think I lost the game...\n\n50) TwoShort: Sacrifice G1 Twoshort\nBuild B2 Bluestar\n\tTwoShort: Yeah... I haven&#39;t seen any better options for you since the homeworld catastrophes.  But then again I didn&#39;t see how those were going to work out at all, so I&#39;ve been nervous.  I still think I have you now, but it&#39;s more turns away then I&#39;d like. :)\n\n51) AdamBadura: Build G1 Twoshort\n\n52) TwoShort: Attack G1 Twoshort\n\n53) AdamBadura: Build G2 Twoshort\nCatastrophe Twoshort G\n\n54) TwoShort: Trade B2 G2 Bluestar\n\n\tAdamBadura: No point in continueing. I don&#39;t want you to stop from other games (or others from challenging you!).\n\nHomeworlds Online (SDG# 19823)\nStarted: 2011.5.10, Ended: 2011.5.12\nParticipants: dragmio (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\n2) dragmio: Homeworld G3 B2 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tdragmio: ty\r\nyou too\n\n4) dragmio: Build Y1 Dragmio\n\n5) ts52: Trade G1 R1 Ts52\n\n6) dragmio: Trade Y3 R3 Dragmio\n\n7) ts52: Build R1 Ts52\n\n8) dragmio: Build Y1 Dragmio\n\n9) ts52: Build G1 Ts52\n\n10) dragmio: Discover Y1 Dragmio G1 Dragmio2\n\n11) ts52: Discover R1 Ts52 G1 Robin\n\n12) dragmio: Build R1 Dragmio\n\n13) ts52: Build R2 Ts52\n\n14) dragmio: Move R3 Dragmio Robin\n\n15) ts52: Move R2 Ts52 Dragmio2\n\n16) dragmio: Attack R1N Robin\n\n17) ts52: Attack Y1 Dragmio2\n\n18) dragmio: Build R2 Dragmio\n\n19) ts52: Build R2 Ts52\n\n20) dragmio: Build R3 Dragmio\n\n21) ts52: Move R2 Dragmio2 Dragmio\nCatastrophe Dragmio Red\n\n22) dragmio: Build Y1 Dragmio\n\n23) ts52: Build Y2 Dragmio2\n\n24) dragmio: Sacrifice Y1 Dragmio\nMove R3 Robin Dragmio\n\n25) ts52: Build G2 Ts52\n\n26) dragmio: Move R3 Dragmio Dragmio2\n\n27) ts52: Move Y2 Dragmio2 Dragmio\n\n28) dragmio: Attack Y1 Dragmio2\n\n29) ts52: Sacrifice R1 Ts52\nAttack Y1 Dragmio\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 19946)\nStarted: 2011.5.10, Ended: 2011.6.7\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Build G1 Lorgar\n\n6) ts52: Build G2 Ts52\n\n7) lorgar: Trade G1 B1 Lorgar\n\n8) ts52: Trade G2 B2 Ts52\n\n9) lorgar: Discover B1 Lorgar G2 Amarante\n\n10) ts52: Discover B2 Ts52 G3 Kermit\n\n11) lorgar: Build B1 Amarante\n\n12) ts52: Trade G1 Y1 Ts52\n\n13) lorgar: Trade B1 Y1 Amarante\n\n14) ts52: Build G1 Ts52\n\n15) lorgar: Build Y2 Amarante\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) lorgar: Trade Y2 R2 Amarante\n\tlorgar: How old are you?\n\n18) ts52: Trade G1 R1 Ts52\n\n19) lorgar: Build G1 Lorgar\n\n20) ts52: Build Y2 Kermit\n\n21) lorgar: Discover G1 Lorgar B2 Marigot\n\tts52: 35 last week.  You?\n\n22) ts52: Trade Y2 R2 Kermit\n\tlorgar: happy birthday :)\r\nI&#39;m 20.\r\nWhat kind of game you like to play? I&#39;d bet my money on chess. maybe a little bit of poker or mahjong (the four player kind, not the solitaire, computer based heretic ersatz)\n\n23) lorgar: Build G1 Lorgar\n\tts52: Thanks. I haven&#39;t played chess in a long time. I do like Go, but don&#39;t play very often. We&#39;ve been playing a lot of Zark City at work over lunch, and Ascension. Really a lot of card games. I really like Volcano too, but I mainly play that here, not so much in persion. Except when I make it to Origins...\n\tlorgar: what kind of work you do?\n\n24) ts52: Build G2 Ts52\n\n25) lorgar: Build G2 Marigot\n\tts52: I&#39;m a computer engineer. I work on computer design verification. Trying to help make sure the design will work before they spend millions to fabricate it. What do you do?\n\n26) ts52: Move G2 Ts52 Kermit\n\tlorgar: cool... I am a musician. student that is XD\r\nI still go to school (http://www.ecolenormalecortot.com/) and have a lot of exams and competitions. that sucks -_-\r\nI dont like cities, too many people... And I have to stay in paris three days a week. or a whole week when I have exams.\n\n27) lorgar: Build Y2 Amarante\n\tts52: Sorry, I can&#39;t have too much sympathy for you having to stay in Paris... Sometimes I wish I&#39;d studied music more. I played saxaphone all through college at least some, but have barely touched it since. What&#39;s you favorite instrument?\n\tlorgar: I&#39;d say cello, thats what I do. I love piano too.It is just a bit less fun when you cant play what you would like. and all the suckers trying to evict you.\r\nwhere are you? america? GB?\n\n28) ts52: Discover G2 Kermit Y2 Birbird\n\n29) lorgar: Trade G1 R1 Lorgar\n\tts52: That stinks. I&#39;m in America, Massachusetts \n\n30) ts52: Build G1 Ts52\n\n31) lorgar: Sacrifice Y2 Amarante\nDiscover G2 Marigot Y3 Ark\nDiscover G1 Marigot Y3 Stark\n\tlorgar: near the MIT?\n\n32) ts52: Move G2 Birbird Stark\n\n33) lorgar: Discover G1 Stark B2 Meth\n\tts52: About 30 minutes drive away from MIT.\n\n34) ts52: Move R2 Kermit Meth\n\tlorgar: wow *_*\r\nbtw : I GOT MY EXAM, I&#39;m NOW OFFICIALY A FLIPPIN&#39; MUSICIAN STUDENT WHITH THE CARD AND EVERYTHING!\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild R1 Amarante\nBuild Y2 Amarante\nBuild G3 Lorgar\n\tts52: congrats!\n\n36) ts52: Attack G1 Meth\n\n37) lorgar: Move R2 Amarante Ark\n\n38) ts52: Build Y2 Kermit\n\n39) lorgar: Move Y2 Amarante Kermit\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Meth\nBuild R3 Ts52\n\n41) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild Y2 Kermit\nBuild R3 Ark\nCatastrophe Kermit Yellow\n\n42) ts52: Trade R2 Y2 Meth\n\n43) lorgar: Sacrifice G3 Lorgar\nBuild R2 Lorgar\nBuild R3 Amarante\nBuild G3 Lorgar\n\n44) ts52: Move R3 Ts52 Kermit\n\n45) lorgar: Trade R2 Y2 Lorgar\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Meth\nBuild R2 Ts52\n\n47) lorgar: Sacrifice Y2 Lorgar\nMove R3 Ark Meth\nMove R3 Amarante Ark\n\n48) ts52: S Y2 Meth\nM R1 Ts52 Ark\nM R2 Meth Ark\nC Ark Red\n\n49) lorgar: Attack Y1S Meth\n\n50) ts52: T B2 Y2 Kermit\n\n51) lorgar: Sacrifice G3 Lorgar\nBuild Y2 Amarante\nBuild Y2 Meth\nBuild G3 Lorgar\n\n52) ts52: B R1 Ts52\n\n53) lorgar: Sacrifice Y2 Amarante\nMove R3 Meth Stark\nMove R1 Amarante Ark\n\n54) ts52: M G2 Stark Amarante\n\n55) lorgar: Sacrifice Y1 Amarante\nMove B1 Amarante Stark\n\n56) ts52: Trade R2 B2 Ts52\n\n57) lorgar: Sacrifice G3 Lorgar\nBuild B1 Stark\nBuild R2 Lorgar\nBuild G3 Lorgar\n\n58) ts52: M B2 Ts52 Kermit\n\n59) lorgar: Sacrifice Y2 Meth\nMove B1 Stark Ts52\nMove G2 Ark Ts52\n\n60) ts52: A G2 Ts52\n\n61) lorgar: Sacrifice G3 Lorgar\nBuild B3 Ts52\nBuild B3 Ts52\nBuild G3 Lorgar\nCatastrophe Ts52 Blue\n\n62) ts52: Sacrifice B2 Kermit\nTrade G1 B1 Ts52\nTrade G2 B2 Amarante\n\n63) lorgar: Move R3 Stark Amarante\n\n64) ts52: Build R2 Kermit\n\n65) lorgar: Sacrifice R2 Lorgar\nAttack B2S Amarante\nAttack G1S Meth\n\n66) ts52: Move R2 Kermit Meth\n\n67) lorgar: Sacrifice Y1 Meth\nMove G1 Meth Stark\n\n68) ts52: Build R2 Ts52\n\n69) lorgar: Trade B2 Y2 Amarante\n\n70) ts52: Move R2 Ts52 Stark\n\n71) lorgar: Move R3 Amarante Stark\n\n72) ts52: Sacrifice G2 Ts52\nBuild R2 Stark\nBuild R3 Stark\nCatastrophe Stark Red\n\n73) lorgar: Build Y1 Amarante\n\tlorgar: I looked but I do not think anybody wrote a videogame version of homeworld. this display is cool (it should be kept), but what about training offline against an AI? that would be even cooler!\n\n74) ts52: Move R3 Kermit Amarante\n\tts52: that would be pretty cool. though I think writing an good AI would be a challenge\n\n75) lorgar: Sacrifice Y2 Amarante\nDiscover Y1 Amarante B3 Flight\nDiscover Y1 Flight G2 Flees\n\n76) ts52: T R2 G2 Meth\n\n77) lorgar: Sacrifice G3 Lorgar\nBuild G1 Stark\nBuild R2 Ark\nBuild G3 Lorgar\n\n78) ts52: Move Y2 Kermit Meth\n\n79) lorgar: Move R2 Ark Meth\n\n80) ts52: Sacrifice R1 Ts52\nAttack R2 Meth\n\n81) lorgar: Sacrifice G3 Lorgar\nBuild Y1 Flees\nBuild Y2 Flees\nBuild G3 Lorgar\n\n82) ts52: Move R2 Meth Stark\n\n83) lorgar: Sacrifice Y2 Flees\nMove R1 Ark Amarante\nMove B1 Stark Meth\n\n84) ts52: Build G3 Ts52\n\n85) lorgar: Sacrifice G3 Lorgar\nBuild R1 Amarante\nBuild R2 Amarante\nBuild G3 Lorgar\nCatastrophe Amarante Red\n\n86) ts52: Attack G1 Stark\n\tlorgar: playing against you is getting more and more interesting. you do have quite an edge... how many months, years, centuries of practice do you have?\n\tts52: I&#39;ve been playing homeworlds since maybe 2005? Last year I managed (through luck and my opponents hubris) to win the Homeworlds tournament at Origins.\n\n87) lorgar: Move G1 Stark Ts52\n\n88) ts52: Move G3 Ts52 Stark\n\tlorgar: you think I&#39;m getting better at this? what are my flaws?\n\tts52: I think you\n\tts52: I think you&#39;re doing pretty well. You&#39;ve killed half my homeworld, and that double threat there is a good one. Now I really have to think.\n\n89) lorgar: Sacrifice G3 Lorgar\nBuild B2 Meth\nBuild G2 Ts52\nBuild G3 Lorgar\n\n90) ts52: S R2 Stark\nAttack G2 Ts52\nAttack B2 Meth\n\n\n91) lorgar: Move Y1 Flees Ts52\n\n92) ts52: Sacrifice G3 Stark\nBuild Y2 Meth\nBuild Y2 Meth\nBuild Y3 Meth\n\n93) lorgar: Sacrifice G3 Lorgar\nBuild G3 Ts52\nBuild B2 Meth\nBuild G3 Lorgar\nCatastrophe Meth Blue\nCatastrophe Ts52 Green\n\n94) ts52: Sacrifice G1 Stark\nBuild B1 Ts52\n\n95) lorgar: Sacrifice G3 Lorgar\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild G1 Lorgar\nCatastrophe Ts52 Yellow\n\n\tlorgar: :D~~~~\r\nrematch?\n\tts52: Of course!\n\nHomeworlds Online (SDG# 19950)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.12, Ended: 2011.6.22\nParticipants: Subhan64 (S), agentofchaos (N)\nWinner: Subhan64\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y3 B1 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: b g1 Agentofchaos\n\n4) Subhan64: Build G1 Subhan64\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Subhan64: Build G1 Subhan64\n\n7) agentofchaos: Discover Y1 Agentofchaos G3 Klingsor\n\n8) Subhan64: Discover G1 Subhan64 G2 Ohohoh\n\n9) agentofchaos: Build Y1 Klingsor\n\n10) Subhan64: Build G1 Subhan64\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) Subhan64: Trade G1 Y1 Subhan64\n\n13) agentofchaos: Build Y2 Klingsor\n\n14) Subhan64: Discover Y1 Subhan64 G2 Hohoho\n\n15) agentofchaos: M Y2 Klingsor Agentofchaos\n\n16) Subhan64: Sacrifice G3 Subhan64\nBuild G1 Subhan64\nBuild G3 Subhan64\nBuild Y2 Hohoho\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) Subhan64: Move Y1 Hohoho Klingsor\n\n19) agentofchaos: Move Y1 Klingsor Ohohoh\n\n20) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild Y3 Hohoho\nBuild Y3 Klingsor\n\n21) agentofchaos: Move Y1 Ohohoh Klingsor\nCatastrophe Klingsor Y\n\n22) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild G3 Ohohoh\nBuild Y1 Hohoho\n\n23) agentofchaos: Trade Y2 R2 Agentofchaos\n\n24) Subhan64: Trade G1 B1 Subhan64\n\n25) agentofchaos: Build R1 Agentofchaos\n\n26) Subhan64: Sacrifice B1 Subhan64\nTrade Y2 R2 Hohoho\n\n27) agentofchaos: T R1 B1 Agentofchaos\n\n28) Subhan64: Build R1 Hohoho\n\n29) agentofchaos: B Y1 Agentofchaos\n\n30) Subhan64: Discover R2 Hohoho Y3 Hehehe\n\n31) agentofchaos: Discover Y2 Agentofchaos B3 Deathstar\n\n32) Subhan64: Sacrifice Y3 Hohoho\nMove R1 Hohoho Hehehe\nMove R1 Hehehe Agentofchaos\nMove R2 Hehehe Agentofchaos\nCatastrophe Agentofchaos Red\n\n\tSubhan64: GG, thanks!\n\nHomeworlds Online (SDG# 19813)\nVariants: &quot;No undo&quot;\nStarted: 2011.5.12, Ended: 2011.5.19\nParticipants: ajo (S), dragmio (N)\nWinner: ajo\n\n1) dragmio: Homeworld G3 Y2 B3\n\n2) ajo: Homeworld B1 R2 G3\n\n3) dragmio: Build B1 Dragmio\n\n4) ajo: Build G1 Ajo\n\n5) dragmio: Trade B1 R1 Dragmio\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) dragmio: Discover R1 Dragmio Y1 Dragmio2\n\n8) ajo: Build G1 Ajo\n\n9) dragmio: Build B1 Dragmio\n\n10) ajo: Build Y1 Ajo\n\n11) dragmio: Build B1 Dragmio\n\n12) ajo: Build Y2 Ajo\n\n13) dragmio: Trade B1 G1 Dragmio\n\n14) ajo: Trade Y2 R2 Ajo\n\n15) dragmio: Move G1 Dragmio Dragmio2\n\n16) ajo: Build Y2 Ajo\n\n17) dragmio: Build R1 Dragmio2\n\n18) ajo: Sacrifice Y2 Ajo\nDiscover R2 Ajo B3 Alpha\nMove G1 Ajo Alpha\n\n19) dragmio: Move B3 Dragmio Dragmio2\n\n20) ajo: Build Y2 Ajo\n\tajo: Ooh, dangerous idea, moving your large ship away from your homeworld. Let&#39;s see if you can keep it from backfiring on you.\n\n21) dragmio: Move B3 Dragmio2 Alpha\n\tdragmio: Well, if I&#39;m moving it, I might as well go all the way! :)\n\n22) ajo: Sacrifice Y2 Ajo\nMove R2 Alpha Dragmio2\nMove R2 Dragmio2 Dragmio\n\n23) dragmio: Build B1 Dragmio\n\tajo: Check. :)\n\tdragmio: Damn! I didn&#39;t know you could do that! Oh well...\n\n24) ajo: Attack B1N Dragmio\n\n25) dragmio: Build B2 Dragmio\n\tajo: Yep, you can sacrifice a y[1,2,3] ship to get [1,2,3] yellow actions anywhere in the galaxy. Check.\n\tdragmio: I believe you, don&#39;t worry. It&#39;s my second game ever. That&#39;s why I&#39;m a bit lost. :)\n\n26) ajo: Trade R2 B2 Dragmio\nCatastrophe Dragmio Blue\n\tajo: Ah, I see. Good game, then. For your next game, remember that it&#39;s hard to defend your homeworld without that big ship.\n\tdragmio: Ok. Thanks for the tip. And for the game! :)\n\n\nHomeworlds Online (SDG# 19965)\nStarted: 2011.5.15, Ended: 2011.9.11\nParticipants: Mandrel (S), lorgar (N)\nWinner: Mandrel\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) Mandrel: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\tMandrel: Have a good game.\n\tlorgar: thx\n\n4) Mandrel: Build G1 Mandrel\n\n5) lorgar: Build G1 Lorgar\n\n6) Mandrel: Build G2 Mandrel\n\n7) lorgar: Trade G3 Y3 Lorgar\n\n8) Mandrel: T G1 Y1 Mandrel\n\n9) lorgar: Discover G1 Lorgar B2 Catonemoidia\n\n10) Mandrel: Discover G2 Mandrel B3 Hunger\n\n11) lorgar: Trade Y3 G3 Lorgar\n\n12) Mandrel: Build Y1 Mandrel\n\tlorgar: I hoped you would fall for the y3 trick... ts52 did. once.\n\n13) lorgar: Build G1 Lorgar\n\n14) Mandrel: Build G2 Mandrel\n\n15) lorgar: Trade G1 R1 Lorgar\n\n16) Mandrel: M Y1 Mandrel Hunger\n\n17) lorgar: Build G1 Catonemoidia\n\n18) Mandrel: S G3 Mandrel\nBuild G2 Mandrel\nBuild G3 Mandrel\nBuild G3 Hunger\n\n19) lorgar: Trade G1 R1 Catonemoidia\n\n20) Mandrel: T G2 R2 Hunger\n\n21) lorgar: Sacrifice G3 Lorgar\nBuild G1 Catonemoidia\nBuild G2 Catonemoidia\nBuild G3 Lorgar\n\n22) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild R2 Hunger\nBuild Y1 Hunger\n\n23) lorgar: Trade G2 Y2 Catonemoidia\n\n24) Mandrel: T G2 B2 Mandrel\n\n25) lorgar: Discover G1 Catonemoidia B3 Lys\n\n26) Mandrel: D Y1 Hunger G2 Full\n\n27) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lys\nBuild Y2 Catonemoidia\nBuild G3 Lorgar\n\n28) Mandrel: S G2 Mandrel\nBuild G2 Hunger\nBuild Y2 Full\n\n29) lorgar: Move Y2 Catonemoidia Lys\n\n30) Mandrel: Sacrifice G3 Hunger\nBuild G3 Hunger\nBuild Y3 Hunger\nBuild Y3 Mandrel\n\n31) lorgar: Sacrifice G3 Lorgar\nBuild R2 Lorgar\nBuild R3 Catonemoidia\nBuild G3 Lorgar\n\n32) Mandrel: B B1 Mandrel\n\n33) lorgar: Trade G1 B1 Lys\n\n34) Mandrel: M B2 Mandrel Hunger\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild G1 Catonemoidia\nBuild G3 Lorgar\nPass\n\n36) Mandrel: M B2 Hunger Full\n\n37) lorgar: Sacrifice Y2 Catonemoidia\nMove G1 Catonemoidia Hunger\nMove G1 Catonemoidia Hunger\nCatastrophe Hunger Green\n\n38) Mandrel: B B3 Full\n\n39) lorgar: Build Y2 Lys\n\n40) Mandrel: Build G1 Mandrel\n\n41) lorgar: Build G1 Lys\n\n42) Mandrel: Sacrifice Y3 Hunger\nMove Y1 Hunger Full\nMove Y1 Full Lorgar\nMove Y2 Full Lorgar\n\n43) lorgar: Sacrifice R2 Lorgar\nAttack Y2S Lorgar\nAttack Y1S Lorgar\n\n44) Mandrel: Move Y1 Full Lorgar\nCatastrophe Lorgar Y\n\n45) lorgar: Sacrifice Y2 Lys\nMove G2 Lys Mandrel\nMove G1 Lys Mandrel\nCatastrophe Mandrel Green\n\n46) Mandrel: Discover B1 Mandrel G3 Dam\n\n47) lorgar: Trade R1 G1 Catonemoidia\n\tlorgar: crappit :&lt;\n\n48) Mandrel: Sacrifice Y3 Mandrel\nMove B1 Dam Lorgar\nMove B3 Full Lorgar\nMove B2 Full Lorgar\nCatastrophe Lorgar Blue\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 19837)\nStarted: 2011.5.17, Ended: 2012.3.25\nParticipants: lorgar (S), OnePageWars (W), dragmio (N), MagicJohn (E)\nWinner: dragmio\n\n1) dragmio: Homeworld G2 Y1 B3\n\n2) MagicJohn: Homeworld G1 Y2 B3\n\n3) lorgar: Homeworld B1 Y2 G3\n\tdragmio: What now? Will we wait for him?\n\tMagicJohn: His history says he was active 5 days ago..... He must still be somewhere in the universe.... Whatchathink?\n\tdragmio: I sent him a PM to make a move but he didn&#39;t respond. I dunno...\n\n4) OnePageWars: Homeworld B3 G2 Y3\n\tlorgar: I was in paris, for a week of exams. Playin music is not half as cool as it look like when you gotta do it in a big city -_-\n\n5) dragmio: Build B1 Dragmio\n\tdragmio: Paris? Great! Glad you&#39;re back, though. :)\n\n6) MagicJohn: Build B1 Magicjohn\n\n7) lorgar: Build G1 Lorgar\n\n8) OnePageWars: Build Y1 Onepagewars\n\n9) dragmio: Trade B1 Y1 Dragmio\n\n10) MagicJohn: Trade B1 G1 Magicjohn\n\n11) lorgar: Build G1 Lorgar\n\n12) OnePageWars: Trade Y1 B1 Onepagewars\n\n13) dragmio: Build Y1 Dragmio\n\n14) MagicJohn: Build B1 Magicjohn\n\n15) lorgar: Discover G1 Lorgar B3 Roussel\n\n16) OnePageWars: Build Y1 Onepagewars\n\n17) dragmio: Trade Y1 R1 Dragmio\n\n18) MagicJohn: Trade B1 R1 Magicjohn\n\n19) lorgar: Build G1 Lorgar\n\n20) OnePageWars: Build B1 Onepagewars\n\n21) dragmio: Build B1 Dragmio\n\n22) MagicJohn: Build R1 Magicjohn\n\n23) lorgar: Trade G1 R1 Lorgar\n\n24) OnePageWars: Trade B1 G1 Onepagewars\n\n25) dragmio: Build R1 Dragmio\n\n26) MagicJohn: Build R2 Magicjohn\n\n27) lorgar: Build G2 Roussel\n\n28) OnePageWars: Trade Y3 R3 Onepagewars\n\n29) dragmio: Build R2 Dragmio\n\n30) MagicJohn: Trade R2 Y2 Magicjohn\n\n31) lorgar: Trade G2 R2 Roussel\n\n32) OnePageWars: Build R2 Onepagewars\n\n33) dragmio: Trade R2 G2 Dragmio\n\n34) MagicJohn: Build B1 Magicjohn\n\n35) lorgar: Build R2 Roussel\n\n36) OnePageWars: Build Y1 Onepagewars\n\n37) dragmio: Move R1 Dragmio Roussel\n\n38) MagicJohn: Move R1 Magicjohn Roussel\nCatastrophe Roussel Red\n\n39) lorgar: Build G2 Roussel\n\n40) OnePageWars: Discover G1 Onepagewars Y1 Greenishyellow\n\n41) dragmio: Build Y2 Dragmio\n\n42) MagicJohn:\nBuild R1 Magicjohn\n\tOnePageWars: I obviously wasn&#39;t coming up with any creative names today. :/\n\n43) lorgar: Trade G1 R1 Roussel\n\n44) OnePageWars: Build B1 Onepagewars\n\n45) dragmio: Discover Y2 Dragmio G3 Srima\n\n46) MagicJohn: Discover B1 Magicjohn G3 Kali\n\n47) lorgar: Build G1 Roussel\n\n48) OnePageWars: Move B1 Onepagewars Greenishyellow\n\n49) dragmio: Sacrifice G2 Dragmio\nBuild Y2 Srima\nBuild Y3 Dragmio\n\n50) MagicJohn: Move Y2 Magicjohn Kali\n\n51) lorgar: Discover G1 Lorgar Y3 Safe\n\n52) OnePageWars: Build B2 Onepagewars\n\n53) dragmio: Sacrifice Y2 Srima\nMove Y3 Dragmio Srima\nMove B1 Dragmio Srima\n\n54) MagicJohn: Sacrifice Y2 Kali\nMove B1 Kali Greenishyellow\nMove B1 Greenishyellow Onepagewars\nCatastrophe Onepagewars Blue\n\n55) lorgar: Build G2 Lorgar\n\n56) OnePageWars: Build G2 Greenishyellow\n\n57) dragmio: Move Y3 Srima Onepagewars\n\n58) MagicJohn: Build B1 Magicjohn\n\n59) lorgar: Discover G2 Lorgar G3 M0\n\n60) lorgar: Sacrifice G2 M0\nBuild G2 Lorgar\nBuild G3 Safe\n\n61) dragmio: Sacrifice R1 Dragmio\nAttack R3W Onepagewars\n\n62) MagicJohn: Discover G1 Magicjohn Y3 Elisian\n\tdragmio: Is this how it supposed to be? R3 appeared after the resignation in OnePageWars system and the oredr of play is reversed.\n\tOnePageWars: I resigned because my homeworld was being invaded.\n\n63) lorgar: Discover G2 Lorgar G3 Plump\n\n64) dragmio: Attack R2W Onepagewars\n\n65) MagicJohn: Build G3 Elisian\n\n66) lorgar: Move G1 Safe Lorgar\n\n67) dragmio: Trade Y1 R1 Dragmio\n\n68) MagicJohn: Move R1 Magicjohn Elisian\n\n69) lorgar: Trade G1 Y1 Roussel\n\n70) dragmio: Move R3 Onepagewars Greenishyellow\n\n71) MagicJohn: Build R2 Magicjohn\n\n72) lorgar: Sacrifice G3 Lorgar\nBuild G1 Safe\nBuild G3 Lorgar\nBuild R2 Roussel\n\n73) dragmio: Attack G2W Greenishyellow\n\n74) MagicJohn: Build R2 Elisian\n\n75) lorgar: Sacrifice G2 Plump\nBuild G2 Safe\nBuild G3 Roussel\n\n76) dragmio: Move Y3 Onepagewars Srima\n\n77) MagicJohn: Discover G1 Elisian Y2 Kali\n\n78) lorgar: Discover G1 Lorgar Y3 Barrabas\n\n79) dragmio: Move G2 Greenishyellow Safe\nCatastrophe Safe G\n\n80) MagicJohn: Move B1 Magicjohn Elisian\n\n81) lorgar: Trade G2 Y2 Roussel\n\n82) dragmio: Attack Y1W Onepagewars\n\tMagicJohn: Sorry &#39;bout the re-do, but my planetary citizens objected to my butchering the name of their home world.. \n\n83) MagicJohn: Move R1 Elisian Kali\n\n84) lorgar: Trade R1 B1 Roussel\n\n85) dragmio: Move Y2 Srima Dragmio\n\n86) MagicJohn: Build B2 Elisian\n\n87) lorgar: Move Y1 Roussel Dragmio\n\n88) dragmio: Build Y3 Srima\n\n89) MagicJohn: Build B2 Magicjohn\n\n90) lorgar: Discover B1 Roussel G2 Ilak\n\n91) dragmio: Trade Y2 R2 Dragmio\n\n92) MagicJohn: Trade B2 Y2 Elisian\n\n93) lorgar: Build Y3 Roussel\n\n94) dragmio: Attack Y1S Dragmio\n\n95) MagicJohn: Move Y2 Elisian Dragmio\n\n96) lorgar: Move Y2 Roussel Ilak\n\n97) dragmio: Discover Y1 Dragmio B3 Amris\n\n98) MagicJohn: Move Y2 Dragmio Srima\n\n99) lorgar: Sacrifice G1 Barrabas\nBuild Y3 Ilak\n\tdragmio: attack Y1S dragmio\n\n100) dragmio: Trade Y3 R3 Srima\n\n101) MagicJohn: Move Y2 Srima Kali\n\n102) lorgar: Build Y3 Roussel\n\n103) dragmio: Move Y1 Onepagewars Roussel\n\tMagicJohn: I&#39;m relatively new to the game.  Maybe at some later time one of you could explain to me why South did not move a yellow ship into dragmio from roussel and create a catastrophe? \n\n104) MagicJohn: Move Y2 Kali Roussel\nCatastrophe Roussel Yellow\n\tdragmio: I suppose he didn&#39;t want to loose a 3 point ship.\n\tMagicJohn: Another newbie question..... How much intergalactic chatter and plotting usually goes in the comment boxes during a multi-player game?  Negotiations might be interesting...  (He could have used a Y2 ship....)\n\n105) lorgar: Trade Y3 R3 Ilak\n\tdragmio: No, he couldn&#39;t because the system with his Y2 ship isn&#39;t connected with mine home system. And this turn he obviously wanted another Y3 more than to see my two Y3&#39;s destroyed. You gotta have priorities. :)\n\n106) dragmio: Attack G1W Greenishyellow\n\n107) MagicJohn: Build B2 Elisian\n\tMagicJohn: Following my Y2 move to Dragmio, South moved a Y2 ship from roussel (connected to your system) to ilak (not connected). Guess I&#39;ll have to live with my share of newbie cognitive-dissonance. I do, however, understand your message. Thanks for taking the time to respond to my questions.   :  )  \n\n108) lorgar: Build G1 Roussel\n\tdragmio: Let&#39;s see you now. :)\n\n109) dragmio: Move G1 Greenishyellow Roussel\n\tMagicJohn: To my helpful neighbor to the North,\r\nAccording to some wise advise I once received, I gotta consider priorities... I&#39;m running a poor third. Ideally, I should try to assume a non-threatening posture (with my fleet that shouldn&#39;t be difficult) and hope you two annihilate each other.  On the other hand, if I get too far behind, I&#39;m roadkill anyway. Additionally, sacrificing my only yellow   ship will cost me a trade and a build turn to recoup......  Plus, you are ahead of me already and are only risking a Y1 ship.  Sounds like you might owe me a non-aggression treaty for a few turns...   \n\tdragmio: No problem. I&#39;ll be a Russian to your German. :)\n\n110) MagicJohn: Move G1 Kali Roussel\nCatastrophe Roussel G\n\tMagicJohn: Now, about that analogy...... Seems like in the long run,  it didn&#39;t turn out well for Hitler..... : (  \n\n111) lorgar: Build B2 Ilak\n\n112) dragmio: Attack Y1W Onepagewars\n\n113) MagicJohn: Trade B2 G2 Elisian\n\n114) lorgar: Trade R2 G2 Roussel\n\n115) dragmio: Attack B1W Greenishyellow\n\tdragmio: Once more unto the breach, dear friend! :)\n\n116) MagicJohn: Build B2 Elisian\n\n117) lorgar: Build G1 Roussel\n\n118) dragmio: Move B1 Greenishyellow Ilak\n\n119) MagicJohn: Trade B2 Y2 Elisian\n\n120) lorgar: Discover B2 Ilak G3 Mareinfinitus\n\n121) dragmio: Sacrifice Y3 Srima\nMove Y1 Amris Greenishyellow\nMove Y1 Greenishyellow Elisian\nMove Y1 Onepagewars Elisian\nCatastrophe Elisian Y\n\n122) MagicJohn: Discover B2 Magicjohn Y3 Gray Havens\n\n123) lorgar: Trade G1 R1 Roussel\n\n124) dragmio: Move R3 Greenishyellow Mareinfinitus\n\n125) MagicJohn: Trade B2 Y2 Gray\n\n126) lorgar: Sacrifice Y2 Ilak\nMove R3 Ilak Roussel\nDiscover B2 Mareinfinitus G2 Maru\n\n127) dragmio: Trade B1 Y1 Srima\n\n128) MagicJohn: Move R1 Kali Gray\n\tdragmio: Sorry, couldn&#39;t help it.i love a big bang. Just look at the size of that report. :)\n\tMagicJohn: All part of my plan to become a non-threat...  Some of my civilizations have, however sent me a vote of &quot;no confidence&quot;.....\n\n129) lorgar: Build G1 Lorgar\n\n130) dragmio: Move R3 Srima Maru\n\n131) MagicJohn: Trade R1 G1 Magicjohn\n\n132) lorgar: Trade R1 Y1 Roussel\n\n133) dragmio: Attack B2S Maru\n\n134) MagicJohn: Build B1 Magicjohn\n\n135) lorgar: Build G1 Roussel\n\n136) dragmio: Trade B1 R1 Ilak\n\n137) MagicJohn: Move G1 Magicjohn Gray\n\n138) lorgar: Build R1 Lorgar\n\n139) dragmio: Attack B1S Ilak\n\n140) MagicJohn: Trade B3 G3 Magicjohn\n\n141) lorgar: Discover G1 Lorgar B3 Megido\n\n142) dragmio: Move R2 Dragmio Megido\n\n143) MagicJohn: Build B1 Magicjohn\n\n144) lorgar: Sacrifice G1 Megido\nBuild G1 Lorgar\n\n145) dragmio: Build R2 Onepagewars\n\n146) MagicJohn: Build R2 Gray\n\n147) lorgar: Trade R1 B1 Lorgar\n\n148) dragmio: Trade R2 Y2 Megido\n\n149) MagicJohn: Move B1 Magicjohn Gray\n\n150) lorgar: Discover B1 Lorgar G3 Boron\n\n151) dragmio: Move Y2 Megido Onepagewars\n\n152) MagicJohn: Build G1 Gray\n\n153) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Boron\nBuild Y1 Roussel\n\n154) dragmio: Move R2 Onepagewars Srima\n\n155) MagicJohn: Discover G1 Gray B2 Grayhavens\n\n156) lorgar: Trade B2 Y2 Boron\n\n157) dragmio: Sacrifice Y1 Srima\nMove R3 Maru Boron\n\n158) MagicJohn: Build B2 Magicjohn\n\n159) lorgar: Sacrifice Y2 Boron\nMove G1 Roussel Magicjohn\nMove G2 Roussel Magicjohn\nCatastrophe Magicjohn Green\n\n160) dragmio: Attack B1S Boron\n\n161) MagicJohn: Build G1 Gray\n\n162) lorgar: Trade Y1 G1 Roussel\n\n163) dragmio: Move Y2 Onepagewars Mareinfinitus\n\n164) MagicJohn: Sacrifice Y2 Gray\nMove G1 Gray Lorgar\nMove G1 Gray Lorgar\nCatastrophe Lorgar Green\n\n165) lorgar: Move R3 Roussel Lorgar\n\n166) dragmio: Sacrifice Y2 Mareinfinitus\nMove R2 Srima Lorgar\nMove R3 Mareinfinitus Lorgar\nCatastrophe Lorgar R\n\n167) MagicJohn: Trade B2 G2 Magicjohn\n\n168) dragmio: Trade B1 Y1 Boron\n\n169) MagicJohn: Move R2 Gray Maru\n\n170) dragmio: Move R3 Boron Magicjohn\n\n171) MagicJohn: Build R1 Magicjohn\n\n172) dragmio: Sacrifice B1 Ilak\nTrade R3 Y3 Magicjohn\n\n173) MagicJohn: Attack B2N Maru\n\tdragmio: Nice move MagicJohn. Thanks for the game lorgar.\n\tMagicJohn: Now, Why can&#39;t we all just get along? : )\r\n  Obviously I made rash moves early that blew One Page Wars out of the game.  My continued aggressive moves doomed both Lorgor and me to eventual defeat.  Apologies to both non-me parties. I had never played a multi-player &quot;Homeworlds&quot; before. I really had no clue that I was screwing up other folks probably-well-thought-out strategies. Anyway, I guess that&#39;s what you get when playing with a newbie....... Dragmio - Thanks for the lesson. I learned a lot and fed into your plans for universal domination well.  It&#39;s been fun. MagicJohn    \n\n174) dragmio: Sacrifice R2 Onepagewars\nAttack R2E Magicjohn\nAttack R1E Magicjohn\n\n175) MagicJohn: Sacrifice R2 Maru\nAttack R2N Magicjohn\nAttack R1N Magicjohn\n\n176) dragmio: Build Y1 Boron\n\tMagicJohn: Sorry, my humble star system lacks adequate docking facilities and supplies for large ships. The only piece of our economy still working is the industrial/military complex, and even that has taken a significant hit.  Perhaps, next millennium, when our economy recovers from the war effort, we could be more accommodating....  \n\tMagicJohn: No, although tempted after you blew up my star system, I am not going to force a resignation.  I will try to keep my yorkie off of the computer, but she, unlike &#39;ol MJ, can be a little vindictive.......\n\n177) MagicJohn: Move R2 Magicjohn Boron\n\tdragmio: Thanks for waiting!\n\tMagicJohn: \n\n178) dragmio: Move Y1 Boron Magicjohn\n\n179) MagicJohn: Attack Y1N Boron\n\tMagicJohn: I sent the order &quot;attack b2 maru&quot; and keep getting the message &quot;The ship B2 cannot be found in the maru system. Did you specify the owner of the ship?&quot;  I have tried typing in various codes , but keep getting the same response. Any suggestions or does the game just like you better?\n\n180) dragmio: Move R1 Dragmio Roussel\n\n181) MagicJohn: Attack Y1N Magicjohn\n\n182) dragmio: Attack Y1S Roussel\n\n183) MagicJohn: Move Y1 Magicjohn Boron\n\n184) dragmio: Build B1 Dragmio\n\n185) MagicJohn: Trade B2 R2 Maru\n\n186) dragmio: Sacrifice B1 Dragmio\nTrade Y3 R3 Magicjohn\n\n187) MagicJohn: Sacrifice G2 Magicjohn\nBuild R1 Magicjohn\nBuild R2 Magicjohn\nCatastrophe Magicjohn Red\n\n188) dragmio: Attack G1S Roussel\n\n189) MagicJohn: Move R2 Boron Magicjohn\n\n190) dragmio: Move R1 Roussel Grayhavens\n\n191) MagicJohn: Sacrifice Y1 Boron\nMove R2 Maru Roussel\n\n192) dragmio: Sacrifice Y1 Roussel\nMove R1 Ilak Boron\n\n193) MagicJohn: Sacrifice R1 Gray\nAttack R1N Grayhavens\n\n194) dragmio: Sacrifice G1 Roussel\nBuild R1 Boron\n\tMagicJohn: Ka-Boom!\n\tMagicJohn: One person&#39;s terrorist is another person&#39;s freedom fighter.....\n\n195) MagicJohn: Move Y1 Boron Grayhavens\n\n196) dragmio: Build B1 Dragmio\n\n197) MagicJohn: Move G1 Grayhavens Roussel\n\n198) dragmio: Trade B1 Y1 Dragmio\n\n199) MagicJohn: Move Y1 Grayhavens Roussel\n\n200) dragmio: Move Y1 Dragmio Boron\n\n201) MagicJohn: Move R2 Roussel Magicjohn\n\n202) dragmio: Build B1 Dragmio\n\tMagicJohn: I&#39;m in another &quot;Homeworlds&quot; game that has devolved into a stalemate. Is there any way of opting for a draw if both parties agree??\n\tlorgar: find each other irl and wrestle for it :D\n\n203) MagicJohn: Move R2 Magicjohn Boron\n\tdragmio: It seems there is no way to agree on a draw.\n\tlorgar: keep fighting!\n\tdragmio: we will! ;)\n\tMagicJohn: Me thinks Lorgar is enjoying this waaaay too much............\n\n204) dragmio: Build R1 Boron\nCatastrophe Boron R\n\n205) MagicJohn: Move G1 Roussel Dragmio\n\n206) dragmio: Trade B1 R1 Dragmio\n\n207) MagicJohn: Build G1 Dragmio\n\n208) dragmio: Build Y1 Boron\n\n209) MagicJohn: Move Y1 Roussel Grayhavens\n\n210) dragmio: Build R1 Dragmio\n\n211) MagicJohn: Build G1 Dragmio\nCatastrophe Dragmio Green\n\n212) dragmio: Move Y1 Boron Dragmio\n\n213) MagicJohn: Trade B1 G1 Gray\n\n214) dragmio: Build Y1 Boron\n\n215) MagicJohn: Build G1 Gray\n\n216) dragmio: Move Y1 Boron Magicjohn\n\n217) MagicJohn: Attack Y1N Magicjohn\n\n218) dragmio: Build Y2 Boron\n\n219) MagicJohn: Move Y1 Magicjohn Gray\n\n220) dragmio: Trade Y1 B1 Dragmio\n\n221) MagicJohn: Move G1 Gray Grayhavens\n\n222) dragmio: Sacrifice B1 Dragmio\nTrade Y2 R2 Boron\n\n223) MagicJohn: Build R1 Grayhavens\n\n224) dragmio: Trade R1 G1 Dragmio\n\n225) MagicJohn: Build Y1 Grayhavens\n\n226) dragmio: Sacrifice Y1 Boron\nMove R2 Boron Dragmio\n\n227) MagicJohn: Build G1 Gray\n\n228) dragmio: Move B3 Dragmio Magicjohn\n\n229) MagicJohn: Move G1 Gray Magicjohn\n\n230) dragmio: Sacrifice R1 Dragmio\nAttack R2E Magicjohn\n\n231) MagicJohn: Build B1 Magicjohn\n\n232) dragmio: Trade B3 R3 Magicjohn\n\n233) MagicJohn: Trade B1 R1 Magicjohn\n\n234) dragmio: Sacrifice R3 Magicjohn\nAttack R1E Magicjohn\nAttack B1E Magicjohn\nAttack G1E Magicjohn\n\n\tdragmio: Thank you guys for an epic game! It lasted 9 months if I&#39;m not mistaken. I&#39;d start another one right away. :)\n\nHomeworlds Online (SDG# 20001)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.18, Ended: 2011.6.8\nParticipants: SilentTitan (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) mneme: Trade G1 B1 Mneme\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) mneme: Build B1 Mneme\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) mneme: Trade B1 Y1 Mneme\n\n10) SilentTitan: Discover Y1 Silenttitan G1 Cdx\n\n11) mneme: Build Y2 Mneme\n\n12) SilentTitan: Build Y2 Cdx\n\n13) mneme: Discover Y1 Mneme G3 Stage\n\n14) SilentTitan: Discover Y1 Cdx B3 Cdw\n\n15) mneme: Build B1 Mneme\n\n16) SilentTitan: Build G1 Silenttitan\n\n17) mneme: Move B1 Mneme Stage\n\n18) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Cdw\n\n19) mneme: Build Y3 Stage\n\n20) SilentTitan: Trade Y2 G2 Cdw\n\n21) mneme: Trade Y1 R1 Stage\n\n22) SilentTitan: Discover G2 Cdw Y1 Zzd\n\n23) mneme: Build B2 Stage\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Cdx\nBuild Y3 Cdw\nBuild Y3 Silenttitan\n\n25) mneme: Move B2 Stage Zzd\n\n26) SilentTitan: Trade Y3 R3 Cdw\n\n27) mneme: Build Y3 Mneme\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) mneme: Build Y3 Stage\n\n30) SilentTitan: Sacrifice Y2 Cdx\nMove Y1 Cdw Mneme\nMove Y2 Cdx Stage\n\n31) mneme: Sacrifice B2 Zzd\nTrade Y3 R3 Stage\nTrade Y2 R2 Mneme\n\n32) SilentTitan: Sacrifice G2 Zzd\nBuild Y1 Mneme\nBuild Y2 Stage\n\n33) mneme: Sacrifice R2 Mneme\nAttack Y2 Stage\nAttack Y2 Stage\n\n34) SilentTitan: Move Y1 Mneme Stage\nCatastrophe Stage Yellow\n\n35) mneme: Attack Y1 Mneme\n\n36) SilentTitan: Build G1 Silenttitan\n\n37) mneme: Build B2 Stage\n\n38) SilentTitan: Sacrifice G1 Silenttitan\nBuild R1 Cdw\n\n39) mneme: Move Y1 Mneme Stage\n\n40) SilentTitan: Trade R1 Y1 Cdw\n\n41) mneme: Discover R1 Stage G1 Stage2\n\n42) SilentTitan: Build G1 Silenttitan\n\n43) mneme: Move B2 Stage Stage2\n\n44) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Cdw\n\n45) mneme: Sacrifice G3 Mneme\nBuild B2 Stage\nBuild B2 Stage2\nBuild B3 Stage2\n\n46) SilentTitan: Trade Y2 G2 Cdw\n\n47) mneme: Trade B3 G3 Stage2\n\n48) SilentTitan: Build Y2 Cdw\n\n49) mneme: Sacrifice G3 Stage2\nBuild B3 Stage2\nBuild Y2 Stage\nBuild R1 Stage\n\n50) SilentTitan: Build Y2 Silenttitan\n\n51) mneme: Sacrifice Y1 Stage\nMove B3 Stage2 Silenttitan\n\n52) SilentTitan: Attack B3 Silenttitan North\n\n53) mneme: Sacrifice Y2 Stage\nMove B2 Stage2 Silenttitan\nMove B2 Stage2 Silenttitan\nCatastrophe Silenttitan B\n\n\tSilentTitan: good game ... thanks\n\tmneme: Good game!\n\nHomeworlds Online (SDG# 19749)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.19, Ended: 2011.5.29\nParticipants: SilentTitan (S), dragmio (N)\nWinner: SilentTitan\n\n1) dragmio: Homeworld G2 B1 Y3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) dragmio: Build Y1 Dragmio\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dragmio: Build Y1 Dragmio\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) dragmio: Trade Y1 R1 Dragmio\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dragmio: Build R1 Dragmio\n\n10) SilentTitan: Discover G1 Silenttitan B1 Book\n\tdragmio: Sorry, I probabbly won&#39;t be able to play in the next 24 hours. After that I&#39;ll again be online normally.\n\tSilentTitan: not a problem\n\n11) dragmio: Discover Y1 Dragmio R3 Mark\n\n12) SilentTitan: Build G1 Book\n\n13) dragmio: Move R1 Dragmio Mark\n\n14) SilentTitan: Trade G1 R1 Book\n\n15) dragmio: Build R2 Dragmio\n\n16) SilentTitan: Build R2 Book\n\n17) dragmio: Trade R1 G1 Dragmio\n\n18) SilentTitan: Trade R2 Y2 Book\n\n19) dragmio: Move Y3 Dragmio Mark\n\n20) SilentTitan: Build Y1 Book\n\n21) dragmio: Move Y3 Mark Book\n\n22) SilentTitan: Build Y2 Book\nCatastrophe Book Yellow\n\n23) dragmio: Move Y1 Mark Dragmio\n\tdragmio: nice! :)\n\n24) SilentTitan: Build G1 Silenttitan\n\n25) dragmio: Build G2 Dragmio\n\n26) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Book\n\n27) dragmio: Move G1 Dragmio Mark\n\n28) SilentTitan: Trade G1 Y1 Book\n\n29) dragmio: Trade G2 Y2 Dragmio\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Book\nBuild Y3 Silenttitan\n\n31) dragmio: Move Y1 Dragmio Mark\n\tdragmio: Wow!I&#39;ll learn a lot in this game. :)\n\n32) SilentTitan: Trade Y2 B2 Silenttitan\n\n33) dragmio: Build Y2 Dragmio\n\n34) SilentTitan: Sacrifice Y2 Book\nDiscover G3 Book Y3 Thing1\nDiscover R1 Book Y3 Thing2\n\n35) dragmio: Move R2 Dragmio Thing2\n\n36) SilentTitan: Move G3 Thing1 Dragmio\n\n37) dragmio: Attack R1 Thing2\n\n38) SilentTitan: Trade Y3 R3 Silenttitan\n\n39) dragmio: Move R2 Thing2 Book\n\n40) SilentTitan: Sacrifice R3 Silenttitan\nAttack Y2 Dragmio North\nAttack Y2 Dragmio North\nPass\n\n\tdragmio: Thank you for the game. It was educational! :)\n\nHomeworlds Online (SDG# 20009)\nVariants: &quot;No undo&quot;\nStarted: 2011.5.23, Ended: 2011.6.10\nParticipants: ajo (S), radio414 (N)\nWinner: ajo\n\n1) radio414: Homeworld B2 R1 G3\n\n2) ajo: Homeworld B3 G2 R3\n\n3) radio414: Build G1 Radio414\n\n4) ajo: Build R1 Ajo\n\n5) radio414: Trade G1 Y1 Radio414\n\n6) ajo: Trade R3 Y3 Ajo\n\n7) radio414: Build G1 Radio414\n\n8) ajo: Build R1 Ajo\n\n9) radio414: Build Y1 Radio414\n\n10) ajo: Build R2 Ajo\n\n11) radio414: Build G1 Radio414\n\n12) ajo: Trade R2 G2 Ajo\n\n13) radio414: Trade G3 R3 Radio414\n\n14) ajo: Build R2 Ajo\n\tajo: That doesn&#39;t help you, though...\n\n15) radio414: Discover R3 Radio414 Y3 Sol\n\n16) ajo: Trade R1 B1 Ajo\n\n17) radio414: Move G1 Radio414 Sol\n\n18) ajo: Build B1 Ajo\n\n19) radio414: Trade Y1 B1 Radio414\n\n20) ajo: Discover B1 Ajo G1 Alpha\n\n21) radio414: Build Y1 Radio414\n\n22) ajo: Build B2 Alpha\n\n23) radio414: Build G2 Sol\n\n24) ajo: Build G3 Ajo\n\n25) radio414: Build G3 Radio414\n\n26) ajo: Trade G3 Y3 Ajo\n\tajo: Oh, phooey. I didn&#39;t notice that I was letting you do that.\n\n27) radio414: Sacrifice B1 Radio414\nTrade G2 Y2 Sol\n\n28) ajo: Move Y3 Ajo Alpha\n\n29) radio414: Trade Y1 B1 Radio414\n\n30) ajo: Discover B1 Alpha R3 Redulous\n\n31) radio414: Move B1 Radio414 Sol\n\n32) ajo: Build Y1 Alpha\n\n33) radio414: Discover R3 Sol Y1 Beta\n\n34) ajo: Sacrifice G2 Ajo\nBuild B2 Redulous\nBuild B3 Alpha\n\n35) radio414: Move Y2 Sol Beta\n\n36) ajo: Sacrifice Y3 Alpha\nMove B1 Redulous Radio414\nMove B2 Redulous Radio414\nMove B2 Alpha Sol\n\n37) radio414: Move G1 Radio414 Sol\n\n38) ajo: Sacrifice R2 Ajo\nAttack G1 Sol\nAttack B1 Sol\n\n39) radio414: Move G1 Sol Beta\n\n40) ajo: Attack Y1 Radio414\n\n41) radio414: Attack Y1 Radio414\n\tajo: Whoops, I guess I just broke my general rule of &quot;don&#39;t make a move that&#39;s reversible by your opponent unless you&#39;re intending to offer a draw&quot;.\n\tradio414: I assume you&#39;re not, then?\n\tajo: I&#39;m not offering a draw, no. :)  If your next move is &quot;attack y1 radio414&quot;, then I&#39;ll make a different move on my next turn.\n\n42) ajo: Build B3 Ajo\n\n43) radio414: Attack B2 Radio414\n\n44) ajo: Move B1 Sol Radio414\nCatastrophe Radio414 Blue\n\n45) radio414: Build G2 Radio414\n\n46) ajo: Sacrifice B2 Sol\nTrade B3 R3 Ajo\nTrade G1 R1 Sol\n\n\tajo: I think that&#39;s checkmate. :)  Good game!\n\tradio414: Oh, I saw checkmate as soon as I saw you could pull that catastrophe. :) Good Game.\n\nHomeworlds Online (SDG# 20049)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.25, Ended: 2011.5.30\nParticipants: goulo (S), AdamBadura (N)\nWinner: goulo\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) goulo: Build G1 Goulo\n\n5) AdamBadura: Build Y1 Adambadura\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) AdamBadura: Trade Y1 R1 Adambadura\n\n8) goulo: Build G1 Goulo\n\n9) AdamBadura: Trade Y1 G1 Adambadura\n\n10) goulo: Trade G1 R1 Goulo\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) goulo: Build R2 Goulo\n\n13) AdamBadura: Build R2 Adambadura\n\n14) goulo: Trade R1 G1 Goulo\n\n15) AdamBadura: Discover Y1 Adambadura G1 Drydocks\n\n16) goulo: Discover G1 Goulo Y3 Citronego\n\n17) AdamBadura: Move R2 Adambadura Drydocks\n\n18) goulo: Move R2 Goulo Citronego\n\n19) AdamBadura: Build G2 Adambadura\n\tgoulo: somehow i ended up a ship behind. :/\n\tAdamBadura: Its when you traded R1-&gt;Y1 in your homeworld.\n\n20) goulo: Build G2 Goulo\n\n21) AdamBadura: Discover G2 Adambadura Y1 Outpost\n\n22) goulo: Sacrifice G3 Goulo\nBuild G2 Goulo\nBuild G3 Goulo\nBuild G3 Citronego\n\n23) AdamBadura: Build Y2 Adambadura\n\tgoulo: time for bed, dobranoc!\n\tAdamBadura: And there was the advantage...\n\n24) goulo: Discover G2 Goulo Y3 Bananego\n\n25) AdamBadura: Build Y2 Drydocks\n\n26) goulo: Build Y2 Goulo\n\n27) AdamBadura: Build R1 Adambadura\n\n28) goulo: Move G3 Citronego Drydocks\n\n29) AdamBadura: Sacrifice Y2 Drydocks\nDiscover Y1 Drydocks B3 Transformers\nMove R2 Drydocks Transformers\n\n30) goulo: Sacrifice Y1 Goulo\nDiscover G1 Citronego B1 Safireto\n\n31) AdamBadura: Move G2 Outpost Transformers\n\n32) goulo: Sacrifice G2 Bananego\nBuild G2 Safireto\nBuild Y1 Goulo\n\n33) AdamBadura: Build Y1 Transformers\n\n34) goulo: Discover Y2 Goulo R3 Rubenego\n\tAdamBadura: I think the game is lost now (for me). I suspect mostly due to your advantage in G.\n\n35) AdamBadura: Discover G1 Adambadura B1 Changers\n\tgoulo: But I never underestimate my ability to ruin my good position... :)\n\n36) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y2 Goulo\nBuild Y3 Rubenego\n\n37) AdamBadura: Move Y1 Transformers Changers\n\n38) goulo: Move Y2 Rubenego Drydocks\n\n39) AdamBadura: Discover G1 Changers R3 Bunker\n\n40) goulo: Move G2 Goulo Bunker\n\n41) AdamBadura: Sacrifice G1 Bunker\nBuild G1 Transformers\n\n42) goulo: Move G3 Drydocks Adambadura\n\tAdamBadura: It just hit me that G sacrifice-rebuild is a way of moving...\n\tgoulo: The many wonders of Homeworlds!\n\n43) AdamBadura: Attack G3 Adambadura\n\n44) goulo: Sacrifice Y2 Goulo\nMove G1 Safireto Adambadura\nMove G2 Safireto Adambadura\nCatastrophe Adambadura G\n\n45) AdamBadura: Discover R1 Adambadura G3 Shipyard\n\n46) goulo: Build Y2 Goulo\n\n47) AdamBadura: Sacrifice G2 Transformers\nBuild R2 Transformers\nBuild R3 Shipyard\n\n48) goulo: Move Y3 Rubenego Adambadura\n\n\tAdamBadura: Sadly here I wasn&#39;t doing so well... :(\n\tgoulo: interesting game! thanks.\n\nHomeworlds Online (SDG# 20062)\nStarted: 2011.5.27, Ended: 2011.5.27\nParticipants: GodofPie (S), radio414 (N)\nWinner: radio414\n\n1) radio414: Homeworld B2 R1 G3\n\n2) GodofPie: Homeworld G2 Y1 R3 *\n\tGodofPie: pop\r\n\n\n3) radio414: Build G1 Radio414\n\n4) GodofPie: Build R1 Godofpie\n\n5) radio414: Trade G1 Y1 Radio414\n\tGodofPie: pop a top\n\n6) GodofPie: Discover R3 Godofpie B3 Pastaperimero\n\tGodofPie: sih...\n\n7) radio414: Build Y1 Radio414\n\n8) GodofPie: Build R1 Godofpie\n\n9) radio414: Build Y2 Radio414\n\tGodofPie: tony hawk\n\n10) GodofPie: Move R1 Godofpie Pastaperimero\n\n11) radio414: Trade Y2 R2 Radio414\n\tGodofPie: tortillas\r\n\n\tGodofPie: Mexican Ice cream\n\n12) GodofPie: Build R2 Godofpie\n\n13) radio414: Discover G3 Radio414 Y3 Alfredo\n\n14) GodofPie: Move R2 Godofpie Alfredo\n\n15) radio414: Move G3 Alfredo Godofpie\n\n\nHomeworlds Online (SDG# 20043)\nStarted: 2011.5.27, Ended: 2011.5.29\nParticipants: aqurk (S), dragmio (N)\nWinner: dragmio\n\n1) dragmio: Homeworld B2 Y1 G3\n\n2) aqurk: Homeworld G1 Y2 B3\n\n3) dragmio: Build G1 Dragmio\n\taqurk: This is my 1st game. The game is giving me hints about &quot;it&#39;s very important that....&quot; - and I have no idea why it is important. I guess I will be wiser after this game :)\n\tdragmio: Well,I don&#39;t thin kyou&#39;ll learn a lot from me. It&#39;s my third game ever. :) Anyway, good luck.\n\n4) aqurk: Build B1 Aqurk\n\n5) dragmio: Trade G1 Y1 Dragmio\n\n6) aqurk: Discover B3 Aqurk Y3 Caprica\n\n7) dragmio: Discover Y1 Dragmio R3 Kobol\n\n8) aqurk: Trade B3 R3 Caprica\n\n9) dragmio: Trade G3 R3 Dragmio\n\n10) aqurk: Build B1 Aqurk\n\n11) dragmio: Move Y1 Kobol Dragmio\n\n12) aqurk: Trade B1 Y1 Aqurk\n\n13) dragmio: Trade Y1 G1 Dragmio\n\n14) aqurk: Build B1 Aqurk\n\n15) dragmio: Build G1 Dragmio\n\n16) aqurk: Build B1 Aqurk\n\n17) dragmio: Build G2 Dragmio\n\n18) aqurk: Move B1 Aqurk Caprica\n\n19) dragmio: Discover G1 Dragmio B3 Kobol2\n\n20) aqurk: Build Y1 Aqurk\n\n21) dragmio: Build G2 Kobol2\n\n22) aqurk: Build B2 Aqurk\n\n23) dragmio: Build G2 Dragmio\n\n24) aqurk: Trade B2 R2 Aqurk\n\n25) dragmio: Build G3 Kobol2\n\n26) aqurk: Move R2 Aqurk Kobol2\n\n27) dragmio: Trade G3 R3 Kobol2\n\n28) aqurk: Attack G2 Kobol2\n\n29) dragmio: Attack R2 Kobol2\n\n30) aqurk: Sacrifice G2 Kobol2\nBuild B2 Caprica\nBuild B2 Caprica\n\n31) dragmio: Move G2 Dragmio Kobol2\n\n32) aqurk: Move B2 Caprica Aqurk\n\n33) dragmio: Trade G2 Y2 Kobol2\n\n34) aqurk: Move Y1 Aqurk Caprica\n\n35) dragmio: Move R3 Kobol2 Aqurk\n\n36) aqurk: Sacrifice B2 Caprica\nTrade B2 R2 Aqurk\nTrade B1 R1 Aqurk\n\n37) dragmio: Attack B1S Aqurk\n\n\taqurk: cant see that I can recover from that. thanks for the game\n\tdragmio: Maybe you shouldn&#39;t have resigned. You could have built a red ship, overpopulate system and cause a disaster. All red ships would have been destroyed. Anyway, gg.\n\nHomeworlds Online (SDG# 20063)\nStarted: 2011.5.27, Ended: 2011.6.14\nParticipants: radio414 (S), GodofPie (N)\nWinner: radio414\n\n1) GodofPie: Homeworld Y3 B1 G3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) GodofPie: Build G1 Godofpie\n\n4) radio414: Build G1 Radio414\n\n5) GodofPie: Discover G1 Godofpie Y2 Toe\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) GodofPie: Build G1 Toe\n\n8) radio414: Build Y1 Radio414\n\n9) GodofPie: Build G1 Godofpie\n\n10) radio414: Build G2 Radio414\n\n11) GodofPie: Build G2 Godofpie\n\n12) radio414: Trade Y1 R1 Radio414\n\n13) GodofPie: Trade G1 B1 Godofpie\n\n14) radio414: Build Y1 Radio414\n\n15) GodofPie: Move B1 Godofpie Toe\n\n16) radio414: Trade Y1 B1 Radio414\n\n17) GodofPie: Build B2 Toe\n\n18) radio414: Build B2 Radio414\n\n19) GodofPie: Build B3 Toe\n\n20) radio414: Discover B2 Radio414 G3 Nail\n\n21) GodofPie: Trade B3 R3 Toe\n\n22) radio414: Build B3 Nail\n\tGodofPie: took u long enough\n\tGodofPie: nail rockssssss!\n\n23) GodofPie: Build B3 Toe\n\n24) radio414: Sacrifice Y1 Radio414\nMove B2 Nail Toe\nCatastrophe Toe B\n\n25) GodofPie: Trade G2 B2 Godofpie\n\tradio414: Wrong system... Oops\n\n26) radio414: Trade G2 Y2 Radio414\n\tGodofPie: ???\r\n\n\tGodofPie: wha up brada  (ghettofied version of me)\n\n27) GodofPie: Build R1 Toe\n\tradio414: ...\n\tradio414: Did I tell you about catastrophes?\n\tGodofPie: no what the hell just happened!!!!!!!!!!huhhhhhhhhhhhhh Feeeeeeeeeeeeeeeeelllllllllllliiiiiiiiiiixxxxxxxxxx!!!!!!!!!!!!!!!!!!\n\n28) radio414: Build Y1 Radio414\n\n29) GodofPie: Move B2 Godofpie Toe\n\n30) radio414: Build R2 Radio414\n\n31) GodofPie: Trade G1 Y1 Toe\n\n32) radio414: Trade R1 G1 Radio414\n\n33) GodofPie: Discover R3 Toe B3 Pi\n\n34) radio414: Move R2 Radio414 Nail\n\tGodofPie: potbelly\n\n35) GodofPie: Build G1 Godofpie\n\n36) radio414: Build G2 Radio414\n\n37) GodofPie: Move B2 Toe Pi\n\n38) radio414: Move G2 Radio414 Nail\n\n39) GodofPie: Move G1 Godofpie Toe\n\n40) radio414: Move Y2 Radio414 Nail\n\n41) GodofPie: Trade B2 Y2 Pi\n\n42) radio414: Trade G1 Y1 Radio414\n\n\tradio414: OI\n\nHomeworlds Online (SDG# 20060)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2011.5.27, Ended: 2011.5.30\nParticipants: aqurk (S), GodofPie (N)\nWinner: aqurk\n\n1) GodofPie: Homeworld Y3 B1 G3\n\n2) aqurk: Homeworld G1 Y3 B3\n\tGodofPie: yo whats up dude\n\n3) GodofPie: Build G1 Godofpie\n\taqurk: Hi there. 1st game (well, running another game simultaneous). I have no idea what will be smart moves and such, but I guess I will be wiser after this game :)\n\tGodofPie: dido\n\n4) aqurk: Build B1 Aqurk\n\n5) GodofPie: Trade G1 R1 Godofpie\n\n6) aqurk: Trade B1 G1 Aqurk\n\n7) GodofPie: Discover G3 Godofpie R2 Nap\n\n8) aqurk: Build B1 Aqurk\n\n9) GodofPie: Trade R1 G1 Godofpie\n\n10) aqurk: Trade B3 R3 Aqurk\n\n11) GodofPie: Build G2 Godofpie\n\n12) aqurk: Discover R3 Aqurk Y2 Caprica\n\n\nHomeworlds Online (SDG# 20008)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.28, Ended: 2011.6.8\nParticipants: GodofPie (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) GodofPie: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) GodofPie: Build G1 Godofpie\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) GodofPie: Discover G1 Godofpie B3 Peanut\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) GodofPie: Build G1 Peanut\n\n9) SilentTitan: Build G2 Silenttitan\n\n10) GodofPie: Trade G1 Y1 Peanut\n\n11) SilentTitan: Discover G2 Silenttitan B1 Butter\n\n12) GodofPie: Build G1 Peanut\n\n13) SilentTitan: Build G2 Butter\n\n14) GodofPie: Build G2 Godofpie\n\n15) SilentTitan: Trade G2 Y2 Butter\n\n16) GodofPie: Build Y1 Peanut\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Butter\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 19927)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.28, Ended: 2011.6.15\nParticipants: Jesse (S), GodofPie (N)\nWinner: Jesse\n\n1) GodofPie: Homeworld B3 Y2 G3\n\n2) Jesse: Homeworld Y1 B2 G3\n\n3) GodofPie: Build G1 Godofpie\n\n4) Jesse: Build G1 Jesse\n\n5) GodofPie: Discover G1 Godofpie Y1 God\n\n6) Jesse: Discover G1 Jesse B3 Zathras\n\n7) GodofPie: Build G1 Godofpie\n\n8) Jesse: Build G2 Zathras\n\n9) GodofPie: Build G2 God\n\n10) Jesse: Trade G2 Y2 Zathras\n\n11) GodofPie: Trade G1 R1 Godofpie\n\n12) Jesse: Trade G1 R1 Zathras\n\n\nHomeworlds Online (SDG# 20076)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.28, Ended: 2011.6.7\nParticipants: GodofPie (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) GodofPie: Homeworld B1 Y2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) GodofPie: Build G1 Godofpie\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) GodofPie: Discover G1 Godofpie B3 Pop\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) GodofPie: Build G1 Pop\n\n9) SilentTitan: Build G2 Silenttitan\n\n10) GodofPie: Trade G1 Y1 Pop\n\n11) SilentTitan: Trade G2 R2 Silenttitan\n\n12) GodofPie: Build G1 Pop\n\n13) SilentTitan: Discover R2 Silenttitan Y1 Tart\n\n14) GodofPie: Trade G3 R3 Godofpie\n\n15) SilentTitan: Move R2 Tart Pop\n\n\nHomeworlds Online (SDG# 20077)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.28, Ended: 2011.6.7\nParticipants: GodofPie (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld Y2 B1 G3\n\n2) GodofPie: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) GodofPie: Build G1 Godofpie\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) GodofPie: Trade G3 R3 Godofpie\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) GodofPie: Discover R3 Godofpie Y2 Tot\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) GodofPie: Discover R3 Tot Y3 Pop\n\n11) SilentTitan: Trade G1 R1 Silenttitan\n\n12) GodofPie: Build G1 Godofpie\n\n13) SilentTitan: Trade B2 Y2 Silenttitan\n\n14) GodofPie: Trade G1 R1 Godofpie\n\n15) SilentTitan: Build B2 Silenttitan\n\n\nHomeworlds Online (SDG# 19973)\nStarted: 2011.5.28, Ended: 2011.7.25\nParticipants: ts52 (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B1 R2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) daselva: Build G1 Daselva\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) daselva: Trade G3 Y3 Daselva\n\n6) ts52: Trade G1 R1 Ts52\n\n7) daselva: Build Y1 Daselva\n\n8) ts52: B R1 Ts52\n\n9) daselva: Trade Y3 G3 Daselva\n\n10) ts52: T R1 Y1 Ts52\n\n11) daselva: Discover G1 Daselva R3 S1\n\n12) ts52: Discover Y1 Ts52 G1 Robin\n\n13) daselva: Build Y1 Daselva\n\n14) ts52: Build Y2 Robin\n\n15) daselva: Move Y1 Daselva S1\n\n16) ts52: Build R1 Ts52\n\n17) daselva: Build Y2 S1\n\n18) ts52: Move R1 Ts52 Robin\n\n19) daselva: Discover Y2 S1 G1 S2\n\n20) ts52: Build G2 Ts52\n\n21) daselva: Build Y2 S2\n\n22) ts52: Discover Y2 Robin G3 Kermit\n\n23) daselva: Build Y3 S1\n\n24) ts52: Move Y2 Kermit S2\n\n25) daselva: Build Y3 Daselva\n\n26) ts52: Discover G2 Ts52 B1 Grover\n\n27) daselva: Trade Y3 R3 Daselva\n\n28) ts52: Build Y3 Robin\n\n29) daselva: Move R3 Daselva S1\n\n30) ts52: Build R1 Robin\n\n31) daselva: Move R3 S1 S2\n\n32) ts52: Discover Y2 S2 R2 Elmo\n\n33) daselva: Discover Y2 S2 R3 S3\n\n34) ts52: Build R2 Ts52\n\n35) daselva: Build G2 S1\n\n36) ts52: Discover Y1 Robin G3 Kermit\n\n37) daselva: Build G2 Daselva\n\n38) ts52: Trade R1 B1 Ts52\n\n39) daselva: Build R1 S2\n\n40) ts52: Move B1 Ts52 Robin\n\n41) daselva: Move R3 S2 Kermit\n\n42) ts52: Move Y1 Kermit Grover\n\n43) daselva: Sacrifice Y1 S1\nMove R3 Kermit Grover\n\n44) ts52: Build G3 Ts52\n\n45) daselva: Attack G2 Grover\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Elmo\nBuild B2 Robin\n\n47) daselva: Sacrifice Y3 S1\nMove G2 Grover Ts52\nMove G1 S1 S2\nMove G1 S2 Ts52\nCatastrophe Ts52 G\n\n48) ts52: Move Y3 Robin Ts52\n\tts52: Well shoot. How did I not see that coming... well played.\n\n49) daselva: Attack Y1 Grover\n\n50) ts52: Trade Y3 G3 Ts52\n\n51) daselva: Sacrifice G2 Daselva\nBuild Y3 Grover\nBuild Y3 S2\n\n52) ts52: Move Y1 Elmo Robin\n\n53) daselva: Sacrifice Y3 Grover\nMove Y1 Grover Ts52\nMove Y3 S2 Ts52\nMove Y2 S2 Ts52\nCatastrophe Ts52 Y\n\n54) ts52: Trade B2 Y2 Robin\n\n55) daselva: Build G1 Daselva\n\n56) ts52: Build G2 Ts52\n\n57) daselva: Build G2 S1\n\n58) ts52: Trade G3 Y3 Ts52\n\n59) daselva: Sacrifice Y2 S3\nMove R3 Grover Elmo\nMove R3 Elmo Robin\n\n60) ts52: Build R3 Robin\nCatastrophe Robin Red\n\n61) daselva: Build Y1 Daselva\n\n62) ts52: Build G3 Ts52\n\n63) daselva: Move Y1 Daselva S1\n\n64) ts52: Move Y3 Ts52 S1\n\n65) daselva: Sacrifice G2 S1\nBuild Y2 S1\nBuild Y3 S1\nCatastrophe S1 Y\n\n66) ts52: Move Y1 Robin Ts52\n\n67) daselva: Trade G1 B1 Daselva\n\n68) ts52: Build B2 Robin\n\n69) daselva: Move B1 Daselva S1\n\n70) ts52: Discover G2 Ts52 Y3 Bigbird\n\n71) daselva: Build B2 S1\n\n72) ts52: Move B2 Robin Bigbird\n\n73) daselva: Trade B2 Y2 S1\n\n74) ts52: Build R1 Ts52\n\n75) daselva: Build B2 S1\n\n76) ts52: Build B3 Bigbird\n\n77) daselva: Move B2 S1 S2\n\n78) ts52: Build B3 Robin\n\n79) daselva: Build B3 S2\n\n80) ts52: Trade B3 G3 Bigbird\n\n81) daselva: Trade G3 Y3 Daselva\n\n82) ts52: Build B3 Bigbird\n\tts52: well shoot...\n\n83) daselva: Sacrifice Y3 Daselva\nMove B1 S1 Ts52\nMove B2 S2 Ts52\nMove B3 S2 Ts52\nCatastrophe Ts52 B\n\tdaselva: thank you for playing\n\tts52: Thanks for the game. Well played.\n\n\nHomeworlds Online (SDG# 20061)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2011.5.29, Ended: 2011.6.18\nParticipants: GodofPie (S), radio414 (N), dragmio (E)\nWinner: radio414\n\n1) radio414: Homeworld B2 R1 G3\n\n2) dragmio: Homeworld G3 Y2 B3\n\n3) GodofPie: Homeworld B3 G2 R3\n\n4) radio414: Build G1 Radio414\n\n5) dragmio: Build B1 Dragmio\n\n6) GodofPie: Build R1 Godofpie\n\n7) radio414: Trade G1 Y1 Radio414\n\n8) dragmio: Build B1 Dragmio\n\n9) GodofPie: Trade R1 G1 Godofpie\n\n10) radio414: Build Y1 Radio414\n\n11) dragmio: Trade B1 Y1 Dragmio\n\n12) GodofPie: Trade G1 B1 Godofpie\n\n13) radio414: Build G1 Radio414\n\n14) dragmio: Build Y1 Dragmio\n\n15) GodofPie: Build B1 Godofpie\n\n16) radio414: Build Y2 Radio414\n\n17) dragmio: Discover Y1 Dragmio G1 Ennis\n\n18) GodofPie: Trade B1 R1 Godofpie\n\n19) radio414: Trade Y1 B1 Radio414\n\n20) dragmio: Move B1 Dragmio Ennis\n\n21) GodofPie: Trade R1 Y1 Godofpie\n\n22) radio414: Build Y2 Radio414\n\n23) dragmio: Build B1 Ennis\n\n24) GodofPie: Move R3 Godofpie Ennis\n\n25) radio414: Trade Y2 R2 Radio414\n\n26) dragmio: Build Y2 Dragmio\n\n27) dragmio: Build Y2 Ennis\n\n28) radio414: Build Y3 Radio414\n\n29) dragmio: Build Y3 Ennis\n\tdragmio: Why did he resign?\n\tradio414: I have no idea.\n\n30) radio414: Sacrifice Y2 Radio414\nDiscover Y1 Radio414 Y3 Overdose\nMove Y1 Overdose Ennis\nCatastrophe Ennis Y\n\n31) dragmio: Trade B1 R1 Ennis\n\n32) radio414: Build Y1 Radio414\n\n33) dragmio: Move B3 Dragmio Ennis\n\n34) radio414: Sacrifice Y3 Radio414\nDiscover Y1 Radio414 Y3 Overdose\nMove Y1 Overdose Ennis\nMove Y1 Ennis Dragmio\nCatastrophe Dragmio Y\n\n\tdragmio: Wow, nice! GG!\n\nHomeworlds Online (SDG# 20083)\nStarted: 2011.5.29, Ended: 2011.6.4\nParticipants: dragmio (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) dragmio: Homeworld B3 G1 Y3\n\n3) lorgar: Build G1 Lorgar\n\n4) dragmio: Build Y1 Dragmio\n\n5) lorgar: Build G1 Lorgar\n\n6) dragmio: Trade Y1 B1 Dragmio\n\n7) lorgar: Discover G1 Lorgar B3 Tadakatsu\n\n8) dragmio: Build B1 Dragmio\n\n9) lorgar: Build G2 Tadakatsu\n\n10) dragmio: Discover B1 Dragmio Y2 Karlovac\n\n11) lorgar: Trade G1 Y1 Tadakatsu\n\n12) dragmio: Build B2 Dragmio\n\n13) lorgar: Build G1 Tadakatsu\n\n14) dragmio: Trade B2 G2 Dragmio\n\n15) lorgar: Trade G1 R1 Tadakatsu\n\n16) dragmio: Build B2 Dragmio\n\n17) lorgar: Move R1 Tadakatsu Karlovac\n\n18) dragmio: Move B2 Dragmio Karlovac\n\n19) lorgar: Build G1 Tadakatsu\n\n20) dragmio: Trade B2 G2 Karlovac\n\n21) lorgar: Move G2 Tadakatsu Karlovac\n\n22) dragmio: Trade G2 R2 Karlovac\n\n23) lorgar: Attack R2S Karlovac\n\n24) dragmio: Move B1 Karlovac Dragmio\n\n25) lorgar: Move R2 Karlovac Dragmio\n\n26) dragmio: Trade Y3 R3 Dragmio\n\n27) lorgar: Sacrifice G2 Karlovac\nBuild R1 Dragmio\nBuild R1 Dragmio\nCatastrophe Dragmio Red\n\n28) dragmio: Trade B1 R1 Dragmio\n\n29) lorgar: Build G2 Tadakatsu\n\n30) dragmio: Trade B1 Y1 Dragmio\n\n31) lorgar: Move G2 Tadakatsu Karlovac\n\n32) dragmio: Build Y1 Dragmio\n\n33) lorgar: Sacrifice G3 Lorgar\nBuild G2 Tadakatsu\nBuild G3 Karlovac\nBuild G3 Lorgar\n\n34) dragmio: Build Y2 Dragmio\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild G3 Lorgar\nBuild Y3 Tadakatsu\n\n36) dragmio: Move Y1 Dragmio Karlovac\n\n37) lorgar: Sacrifice Y3 Tadakatsu\nMove G2 Karlovac Dragmio\nMove G2 Tadakatsu Karlovac\nMove G2 Karlovac Dragmio\nCatastrophe Dragmio Green\n\n38) dragmio: Trade Y2 G2 Dragmio\n\n39) lorgar: Move G3 Karlovac Dragmio\n\n40) dragmio: Sacrifice G2 Dragmio\nBuild Y2 Dragmio\nBuild Y3 Dragmio\n\n41) lorgar: Sacrifice R1 Karlovac\nAttack Y3S Dragmio\n\n42) dragmio: Move Y1 Karlovac Dragmio\nCatastrophe Dragmio Y\n\n43) lorgar: Trade G3 R3 Dragmio\n\n\tdragmio: GG!\n\tlorgar: thx, rematch?\n\nHomeworlds Online (SDG# 20078)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.29, Ended: 2011.6.9\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Discover G1 Lorgar B2 Mirumoto\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) lorgar: Build G1 Mirumoto\n\n8) SilentTitan: Build B1 Silenttitan\n\n9) lorgar: Trade G1 R1 Mirumoto\n\n10) SilentTitan: Trade B1 Y1 Silenttitan\n\n11) lorgar: Build G1 Lorgar\n\n12) SilentTitan: Discover B1 Silenttitan Y1 Scorch\n\n13) lorgar: Build G1 Mirumoto\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) lorgar: Trade G1 Y1 Mirumoto\n\n16) SilentTitan: Discover B1 Scorch Y2 Wide\n\n17) lorgar: Trade G1 R1 Lorgar\n\n18) SilentTitan: Sacrifice G2 Silenttitan\nBuild B1 Wide\nBuild B2 Wide\n\n19) lorgar: Build R1 Lorgar\n\n20) SilentTitan: Trade B2 R2 Wide\n\n21) lorgar: Build R2 Mirumoto\n\n22) SilentTitan: Trade B1 G1 Wide\n\n23) lorgar: Trade R1 G1 Lorgar\n\n24) SilentTitan: Build G2 Silenttitan\n\n25) lorgar: Discover G1 Mirumoto B1 Katsumoto\n\n26) SilentTitan: Trade G2 Y2 Silenttitan\n\n27) lorgar: Trade R2 G2 Mirumoto\n\n28) SilentTitan: Build G2 Wide\n\n29) lorgar: Sacrifice G3 Lorgar\nBuild G2 Mirumoto\nBuild G3 Katsumoto\nBuild G3 Lorgar\n\n30) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Wide Lorgar\nMove G1 Wide Lorgar\n\n31) lorgar: Trade G1 R1 Lorgar\n\n32) SilentTitan: Sacrifice R2 Wide\nAttack R1 Lorgar North\nAttack R1 Lorgar North\n\n33) lorgar: Build G1 Mirumoto\n\n34) SilentTitan: Sacrifice G2 Wide\nBuild G2 Lorgar\nBuild B2 Lorgar\n\n35) lorgar: Pass\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Lorgar\nBuild B3 Lorgar\nBuild G3 Lorgar\nCatastrophe Lorgar Blue\nCatastrophe Lorgar Green\n\n\tlorgar: gg\n\tSilentTitan: good game.\n\nHomeworlds Online (SDG# 20085)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.29, Ended: 2011.6.6\nParticipants: Remneb (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G1 B3 Y3\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) Aristos: Build Y1 Aristos\n\n4) Remneb: Build G1 Remneb\n\n5) Aristos: Trade Y1 G1 Aristos\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Aristos: Build Y1 Aristos\n\n8) Remneb: Build G1 Remneb\n\n9) Aristos: Build G2 Aristos\n\n10) Remneb: Discover G1 Remneb Y3 Sirius\n\n11) Aristos: Trade G1 R1 Aristos\n\n12) Remneb: Build G1 Remneb\n\n13) Aristos: Build G2 Aristos\n\n14) Remneb: Sacrifice G3 Remneb\nBuild G2 Sirius\nBuild G3 Remneb\nBuild G3 Remneb\n\n15) Aristos: Sacrifice Y3 Aristos\nDiscover G2 Aristos B2 Temp1\nDiscover G2 Temp1 B3 Temp2\nMove G2 Temp2 Remneb\nCatastrophe Remneb Green\n\n16) Remneb: Move G2 Sirius Remneb\n\n17) Aristos: Build R1 Aristos\n\n18) Remneb: Build Y1 Remneb\n\n19) Aristos: Build Y2 Aristos\n\n20) Remneb: Move Y1 Remneb Sirius\n\n21) Aristos: Discover G2 Aristos B2 Deneb\n\n22) Remneb: Build Y2 Remneb\n\n23) Aristos: Move Y1 Aristos Deneb\n\n24) Remneb: Trade Y2 R2 Remneb\n\n25) Aristos: Build Y2 Deneb\n\n26) Remneb: Move R2 Remneb Sirius\n\n27) Aristos: Build R2 Aristos\n\n28) Remneb: Build Y2 Remneb\n\n29) Aristos: Build Y3 Aristos\n\n30) Remneb: Sacrifice Y2 Remneb\nMove R2 Sirius Deneb\nMove R2 Deneb Aristos\nCatastrophe Aristos R\n\n31) Aristos: Trade Y1 R1 Deneb\n\n32) Remneb: Trade G2 R2 Remneb\n\n33) Aristos: Build R1 Deneb\n\n34) Remneb: Discover Y1 Sirius B2 Antares\n\n35) Aristos: Build R2 Deneb\n\n36) Remneb: Move G1 Sirius Remneb\n\n37) Aristos: Discover R2 Deneb Y3 Cygnus\n\n38) Remneb: Build Y1 Remneb\n\n\n39) Aristos: Build R2 Deneb\n\n40) Remneb: Sacrifice G1 Remneb\nBuild Y2 Antares\n\n41) Aristos: Build Y3 Deneb\n\n42) Remneb: Move Y1 Antares Aristos\n\tAristos: Environmentalists warn of climate disaster unless the wanton use of Yellow technology is not curtailed. &quot;We&#39;re looking at a catastrophe here of galactic proportions. Yellow is not a renewable resource. It is a finite quantity, and when it&#39;s gone, it&#39;s gone.&quot; Sources inside various galactic governments scoffed at the notion of &quot;no more Yellow.&quot; Said one anonymous source: &quot;There&#39;s always more Yellow; we just might have to fight a war to get it.&quot; \n\n43) Aristos: Trade Y2 G2 Aristos\n\tRemneb: When there is no possible retreat then we attack.\n\n44) Remneb: Trade Y1 G1 Aristos\n\tAristos: News flash: Green government bails out failing Yellow industry!\n\n45) Aristos: Sacrifice G2 Aristos\nBuild R3 Cygnus\nBuild Y1 Aristos\n\tRemneb: Special delivery info from our secret agent: any 3 engins ennemy ship who enter Remneb system will mastering the opponent fleet.\r\n\n\n46) Remneb: Move Y2 Antares Aristos\n\n47) Aristos: Sacrifice R2 Deneb\nAttack Y2 Aristos\nAttack G1 Aristos\n\n48) Remneb: Trade Y1 G1 Remneb\n\n49) Aristos: Sacrifice Y2 Aristos\nMove Y3 Deneb Cygnus\nMove Y3 Cygnus Remneb\n\n\tRemneb: &quot;We are the Borg. Resistance is futile. You will be assimilated...&quot;well i surrender then. Good game.Thanks\n\tAristos: Good game. Thanks.\n\nHomeworlds Online (SDG# 20090)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.30, Ended: 2011.6.27\nParticipants: aqurk (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) aqurk: Homeworld Y3 G2 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) aqurk: Build B1 Aqurk\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) aqurk: Trade B1 G1 Aqurk\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) aqurk: Build B1 Aqurk\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) aqurk: Trade B1 Y1 Aqurk\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) aqurk: Build B1 Aqurk\n\n13) SilentTitan: Discover Y1 Silenttitan G1 Scoop\n\n14) aqurk: Trade B3 R3 Aqurk\n\n15) SilentTitan: Build Y2 Scoop\n\n16) aqurk: Move Y1 Aqurk Scoop\n\n17) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Scoop Aqurk\nMove Y1 Scoop Aqurk\n\n18) aqurk: Attack Y2 Aqurk\n\n19) SilentTitan: Build Y2 Aqurk\nCatastrophe Aqurk Yellow\n\n20) aqurk: Move Y1 Scoop Aqurk\n\n21) SilentTitan: Discover G1 Silenttitan Y1 Scraps\n\n22) aqurk: Build R1 Aqurk\n\taqurk: woa.. I didn&#39;t think of that move. I&#39;ve only played this game a few times :)\n\n23) SilentTitan: Build Y2 Silenttitan\n\tSilentTitan: yeah... I almost missed it myself... I didn&#39;t realize we were in a small system at first.\r\n\n\n24) aqurk: Build Y2 Aqurk\n\n25) SilentTitan: Build G1 Scraps\n\n26) aqurk: Move G1 Aqurk Scraps\n\n27) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Scraps Aqurk\nMove G1 Scraps Aqurk\n\n28) aqurk: Sacrifice R3 Aqurk\nAttack G1 Aqurk\nAttack G1 Aqurk\nPass\n\n29) SilentTitan: Build Y2 Silenttitan\n\n30) aqurk: Move G1 Aqurk Scraps\n\n31) SilentTitan: Trade Y2 R2 Silenttitan\n\n32) aqurk: Sacrifice G1 Scraps\nBuild Y2 Aqurk\n\n33) SilentTitan: Move R2 Silenttitan Scraps\n\n34) aqurk: Trade Y2 R2 Aqurk\n\n35) SilentTitan: Attack G1 Scraps South\n\n36) aqurk: Build Y2 Aqurk\n\n37) SilentTitan: Build Y2 Silenttitan\n\n38) aqurk: Trade Y1 B1 Aqurk\n\n39) SilentTitan: Build G1 Scraps\n\n40) aqurk: Discover G1 Aqurk Y3 Kobold\n\n41) SilentTitan: Discover G1 Scraps Y3 Junk\n\n42) aqurk: Move R2 Aqurk Junk\n\n43) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Junk\nBuild G2 Scraps\nBuild R1 Scraps\n\n44) aqurk: Attack G2 Junk\n\n45) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Junk Aqurk\nMove G2 Scraps Aqurk\n\n\taqurk: thanks for the game\n\tSilentTitan: Thanks ... It was a very interesting game\n\nHomeworlds Online (SDG# 20093)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.30, Ended: 2011.6.9\nParticipants: nycavri (S), sompm (N)\nWinner: nycavri\n\n1) sompm: Homeworld G3 B2 Y3\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) nycavri: Build G1 Nycavri\n\n\nHomeworlds Online (SDG# 20106)\nVariants: &quot;Hard time&quot;\nStarted: 2011.5.31, Ended: 2011.6.24\nParticipants: goulo (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) ajo: Build Y1 Ajo\n\n4) goulo: Build G1 Goulo\n\n5) ajo: Trade Y1 R1 Ajo\n\tajo: Good luck!\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) ajo: Build R1 Ajo\n\n8) goulo: Build Y1 Goulo\n\n9) ajo: Build R2 Ajo\n\n10) goulo: Discover Y1 Goulo G3 Smeraldego\n\n11) ajo: Discover R2 Ajo B1 Alpha\n\n12) goulo: Build Y1 Smeraldego\n\n13) ajo: Build Y2 Ajo\n\n14) goulo: Build Y2 Goulo\n\n15) ajo: Move Y2 Ajo Alpha\n\n16) goulo: Trade Y2 R2 Goulo\n\n17) ajo: Build Y2 Ajo\n\n18) goulo: Discover Y1 Smeraldego G1 Smeraldeto\n\n19) ajo: Trade Y2 G2 Ajo\n\n20) goulo: Build Y2 Goulo\n\n21) ajo: Move G2 Ajo Alpha\n\n22) goulo: Move R2 Goulo Smeraldego\n\n23) ajo: Build G1 Alpha\n\n24) goulo: Trade Y2 G2 Goulo\n\n25) ajo: Move R1 Ajo Smeraldeto\n\n26) goulo: Discover Y1 Smeraldeto Y2 Citrono\n\n27) ajo: Discover G1 Alpha Y3 Beta\n\n28) goulo: Sacrifice G2 Goulo\nBuild Y2 Smeraldego\nBuild Y3 Goulo\n\n29) ajo: Sacrifice G1 Beta\nBuild Y3 Ajo\n\n30) goulo: Build G1 Goulo\n\n31) ajo: Move Y3 Ajo Smeraldeto\n\n32) goulo: Sacrifice Y2 Smeraldego\nMove G3 Goulo Smeraldego\nMove G3 Smeraldego Alpha\n\n33) ajo: Sacrifice Y2 Alpha\nDiscover G2 Alpha B3 Gamma\nMove R2 Alpha Citrono\n\n34) goulo: Move Y1 Citrono Alpha\n\tajo: Good move. I&#39;m having trouble seeing the right response to that.\n\n35) ajo: Build Y2 Smeraldeto\n\n36) goulo: Build Y2 Alpha\n\tgoulo: Thanks! (Though I often feel that way, about not being sure what the right move is... :)\n\n37) ajo: Move Y3 Smeraldeto Gamma\n\n38) goulo: Build G1 Alpha\n\n39) ajo: Build G2 Gamma\n\n40) goulo: Trade G3 R3 Alpha\n\n41) ajo: Sacrifice G2 Gamma\nBuild R2 Smeraldeto\nBuild R3 Ajo\n\n42) goulo: Build R3 Alpha\n\n43) ajo: Build G2 Gamma\n\n44) goulo: Build G2 Goulo\n\n45) ajo: Move R1 Smeraldeto Gamma\n\n46) goulo: Build G3 Alpha\n\n47) ajo: Sacrifice Y2 Smeraldeto\nMove R1 Gamma Alpha\nMove R1 Ajo Alpha\nCatastrophe Alpha Red\n\n48) goulo: Build Y2 Smeraldego\n\tgoulo: my turns are slower due to travel, sorry.\n\tajo: No worries. I generally play two games at once, and I admit that when *I* take a long break between two moves in this game, it&#39;s usually just because I don&#39;t want to switch gears in the middle of a series of moves in the other game. So you&#39;ve got a better excuse than me anyway. ;)\n\n49) ajo: Sacrifice G2 Gamma\nBuild G2 Gamma\nBuild R1 Citrono\n\n50) goulo: Discover G1 Goulo R3 Rubenego\n\n51) ajo: Move R2 Citrono Rubenego\n\n52) goulo: Sacrifice G1 Rubenego\nBuild G1 Goulo\n\n53) ajo: Sacrifice G2 Gamma\nBuild R1 Rubenego\nBuild R3 Citrono\n\n54) goulo: Move G1 Goulo Smeraldego\n\n55) ajo: Sacrifice Y3 Gamma\nMove R1 Rubenego Goulo\nMove R2 Rubenego Goulo\nDiscover R1 Citrono Y3 Citronella\n\n56) goulo: Attack R2 Goulo\n\n57) ajo: Move R1 Citronella Goulo\nCatastrophe Goulo Red\n\n58) goulo: Sacrifice G3 Alpha\nBuild G2 Goulo\nBuild G3 Alpha\nBuild Y3 Smeraldego\n\n59) ajo: Move R3 Citrono Gamma\n\n60) goulo: Build Y2 Alpha\n\n61) ajo: Build R1 Ajo\n\n62) goulo: Discover G1 Smeraldego R1 Rubeneto\n\n63) ajo: Trade R1 B1 Ajo\n\n64) goulo: Sacrifice G2 Goulo\nBuild R1 Smeraldego\nBuild G2 Rubeneto\n\n65) ajo: Move B1 Ajo Smeraldeto\n\n66) goulo: Move G1 Alpha Ajo\n\n67) ajo: Attack G1 Ajo\n\n68) goulo: Sacrifice Y2 Smeraldego\nMove G1 Rubeneto Ajo\nMove G2 Rubeneto Ajo\nCatastrophe Ajo G\n\n69) ajo: Sacrifice G2 Gamma\nBuild B1 Smeraldeto\nBuild B2 Smeraldeto\n\n70) goulo: Sacrifice Y3 Smeraldego\nMove Y1 Smeraldego Ajo\nMove Y1 Alpha Ajo\nMove Y2 Alpha Ajo\nCatastrophe Ajo Y\n\n71) ajo: Trade R3 Y3 Gamma\n\tajo: Check.\n\n\tajo: Yes, but it&#39;s over now. :)  That&#39;s checkmate. Good game!\n\tgoulo: yep, thanks! it was an interesting one.\n\nHomeworlds Online (SDG# 20123)\nStarted: 2011.6.4, Ended: 2011.6.6\nParticipants: Aristos (S), dragmio (N)\nWinner: dragmio\n\n1) dragmio: Homeworld B2 Y1 G3\n\tdragmio: Hello! Have a nice game.\n\n\tAristos: I never got a message that this game had even started. \n\tdragmio: OK. Shall we try again?\n\nHomeworlds Online (SDG# 20134)\nStarted: 2011.6.5, Ended: 2011.7.6\nParticipants: dragmio (S), lorgar (N)\nWinner: dragmio\n\n1) lorgar: Homeworld B3 Y1 G3\n\tlorgar: lets fight again!\n\n2) dragmio: Homeworld B2 G1 R3\n\tdragmio: Yes! This time I&#39;ll stop your green invasion! :)\n\n3) lorgar: Build G1 Lorgar\n\n4) dragmio: Build R1 Dragmio\n\tlorgar: do not overestimate the powers of the red side, padawan!\n\tdragmio: Well, I don&#39;t have much of a choice now. At least in this move. :)\n\n5) lorgar: Build G1 Lorgar\n\n6) dragmio: Build R1 Dragmio\n\n7) lorgar: Trade G1 R1 Lorgar\n\n8) dragmio: Trade R1 Y1 Dragmio\n\n9) lorgar: Discover G1 Lorgar B2 Pot\n\n10) dragmio: Build Y1 Dragmio\n\n11) lorgar: Build G1 Lorgar\n\n12) dragmio: Build Y2 Dragmio\n\n13) lorgar: Build G2 Pot\n\n14) dragmio: Trade Y2 G2 Dragmio\n\n15) lorgar: Trade G2 Y2 Pot\n\n16) dragmio: Build Y2 Dragmio\n\n17) lorgar: Build G2 Pot\n\n18) dragmio: Discover Y2 Dragmio B3 Able\n\n19) lorgar: Discover G2 Pot B3 Weed\n\n20) dragmio: Move G2 Dragmio Able\n\tdragmio: Sorry, I&#39;ve put in G3 instead of B3.\n\n21) lorgar: Build R1 Lorgar\n\n22) dragmio: Build Y2 Dragmio\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G2 Pot\nBuild G3 Weed\nBuild G3 Lorgar\n\n24) dragmio: Build Y3 Able\n\n25) lorgar: Discover G2 Pot G3 Marmec\n\n26) dragmio: Move Y3 Able Pot\n\n27) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild Y3 Pot\nBuild Y3 Pot\nCatastrophe Pot Yellow\n\n28) dragmio: Move Y2 Able Pot\n\n29) lorgar: Sacrifice G3 Weed\nBuild G3 Pot\nPass\nPass\n\n30) dragmio: Move Y2 Pot Able\n\n31) lorgar: Move R1 Lorgar Pot\n\n32) dragmio: Build Y2 Able\n\n33) lorgar: Sacrifice G2 Marmec\nBuild G2 Weed\nBuild G3 Weed\n\n34) dragmio: Sacrifice Y2 Dragmio\nMove G2 Able Dragmio\nMove G2 Dragmio Weed\nCatastrophe Weed G\n\n35) lorgar: Build R2 Pot\n\n36) dragmio: Trade Y2 G2 Able\n\n37) lorgar: Trade R2 Y2 Pot\n\n38) dragmio: Sacrifice G2 Able\nBuild Y2 Dragmio\nBuild Y3 Able\n\n39) lorgar: Discover G1 Pot Y3 Kaya\n\n40) dragmio: Trade Y3 G3 Able\n\n41) lorgar: Build Y3 Pot\n\n42) dragmio: Build Y3 Able\n\n43) lorgar: Discover Y2 Pot B3 Soulcaptives\n\n44) dragmio: Sacrifice Y2 Dragmio\nMove Y3 Able Pot\nMove G3 Able Pot\n\n45) lorgar: Attack G3S Pot\n\n46) dragmio: Sacrifice R3 Dragmio\nAttack G3N Pot\nAttack Y3N Pot\nAttack G3N Pot\n\n47) lorgar: Move Y2 Soulcaptives Dragmio\n\n48) dragmio: Sacrifice Y2 Able\nMove G3 Pot Kaya\nMove G3 Kaya Dragmio\n\n49) lorgar: Trade Y2 G2 Dragmio\n\n50) dragmio: Trade G3 R3 Dragmio\n\n51) lorgar: Trade R1 B1 Pot\n\tdragmio: Behold the power of the Red side! ;)\n\n52) dragmio: Attack G2N Dragmio\n\tlorgar: thanks for opening your homeworld&#39;s door ^^\n\n53) lorgar: Sacrifice G3 Lorgar\nBuild B1 Pot\nBuild B1 Pot\nBuild G2 Kaya\nCatastrophe Pot Blue\n\tdragmio: Intruder alert!\n\n54) dragmio: Move R3 Dragmio Kaya\n\n55) lorgar: Build G2 Kaya\n\n56) dragmio: Move G2 Dragmio Kaya\nCatastrophe Kaya G\n\n57) lorgar: Build R1 Lorgar\n\n58) dragmio: Discover R3 Kaya B2 Plavi\n\n59) lorgar: Build G1 Lorgar\n\tdragmio: Nice! That was some creative destruction. :)\n\n60) dragmio: Build R2 Dragmio\n\n61) lorgar: Discover G1 Lorgar B2 Catonemoidia\n\n62) dragmio: Trade R3 Y3 Plavi\n\n63) lorgar: Build G2 Lorgar\n\n64) dragmio: Move Y3 Plavi Lorgar\n\n65) lorgar: Trade G2 Y2 Lorgar\n\n66) dragmio: Sacrifice R2 Dragmio\nAttack R1N Lorgar\nAttack R1N Lorgar\n\n67) lorgar: Build Y2 Lorgar\nCatastrophe Lorgar Yellow\n\n68) dragmio: Attack G1N Lorgar\n\n\tlorgar: well played\n\tdragmio: ty\n\nHomeworlds Online (SDG# 20147)\nStarted: 2011.6.6, Ended: 2011.6.12\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Discover G1 Lorgar B2 Maru\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) lorgar: Build G1 Lorgar\n\n8) TwoShort: Build Y1 Twoshort\n\n9) lorgar: Build G1 Maru\n\n10) TwoShort: Build G2 Twoshort\n\n11) lorgar: Trade G1 R1 Maru\n\n12) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n13) lorgar: Build R1 Maru\n\n14) TwoShort: Build G1 Twoshort\n\n15) lorgar: Build G2 Lorgar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n17) lorgar: Trade G2 Y2 Lorgar\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) lorgar: Build G2 Maru\n\n20) TwoShort: Discover G2 Yolonda B2 Bluestar\n\n21) lorgar: Move Y2 Lorgar Maru\n\n22) TwoShort: Trade G3 Y3 Twoshort\n\n23) lorgar: Build Y1 Maru\n\n24) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Yolonda Bluestar\nMove G3 Bluestar Lorgar\nMove G2 Bluestar Lorgar\nCatastrophe Lorgar Green\n\tlorgar: got a good beating ^^\n\n\nHomeworlds Online (SDG# 20148)\nStarted: 2011.6.6, Ended: 2011.6.12\nParticipants: Aristos (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) Aristos: Homeworld G3 Y2 B3\n\n3) lorgar: Build G1 Lorgar\n\n4) Aristos: Build B1 Aristos\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) Aristos: Build B2 Aristos\n\n7) lorgar: Build G1 Lorgar\n\n8) Aristos: Discover B1 Aristos G1 Pico\n\n9) lorgar: Discover B1 Lorgar G2 Ocip\n\n10) Aristos: Build B2 Pico\n\n11) lorgar: Build G1 Lorgar\n\n12) Aristos: Trade B1 Y1 Pico\n\n13) lorgar: Discover G1 Lorgar B2 Ocid\n\n14) Aristos: Trade B3 G3 Aristos\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild G2 Ocid\nBuild G2 Ocid\nBuild G3 Lorgar\n\n16) Aristos: Build B1 Pico\n\n17) lorgar: Trade G2 R2 Ocid\n\n18) Aristos: Build G2 Aristos\n\n19) lorgar: Trade G2 Y2 Ocid\n\n20) Aristos: Trade B1 R1 Pico\n\n21) lorgar: Sacrifice Y2 Ocid\nMove G1 Ocid Pico\nMove G1 Pico Aristos\nCatastrophe Aristos Green\n\n\tAristos: Dumb mistake on my part. Good game.\n\tlorgar: thx gg\r\nbut we could have played more.\n\nHomeworlds Online (SDG# 20154)\nStarted: 2011.6.7, Ended: 2011.8.28\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H Y1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Trade G1 B1 Ts52\n\tlorgar: thx\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) lorgar: Discover Y1 Lorgar G2 Frog\n\n9) ts52: Build B1 Kermit\n\n10) lorgar: Build G1 Lorgar\n\n11) ts52: Build B2 Kermit\n\n12) lorgar: Build Y1 Frog\n\n13) ts52: Trade B2 Y2 Kermit\n\tlorgar: sod it, I&#39;m being screwed!\n\n14) lorgar: Discover Y1 Frog B3 The\n\n15) ts52: Build B2 Kermit\n\tts52: I wouldn\n\tts52: I wouldn&#39;t say that. This game is just getting started.\n\n16) lorgar: Build Y2 Frog\n\n17) ts52: Discover B2 Kermit G2 Robin\n\n18) lorgar: Trade Y1 G1 The\n\n19) ts52: Build B2 Kermit\n\n20) lorgar: Build G1 The\n\n21) ts52: B B3 Robin\n\n22) lorgar: Sacrifice Y2 Frog\nMove G1 The Ts52\nMove G1 The Ts52\n\n23) ts52: Trade G3 R3 Ts52\n\n24) lorgar: Sacrifice G3 Lorgar\nBuild G2 Ts52\nBuild G3 Lorgar\nBuild G3 Lorgar\n\n25) ts52: Attack G2 Ts52\n\n26) lorgar: Trade G1 Y1 Ts52\n\n27) ts52: Attack Y1 Ts52\n\n28) lorgar: Discover G1 Ts52 B3 Eht\n\n29) ts52: Build B3 Robin\n\n30) lorgar: Trade G3 R3 Lorgar\n\n31) ts52: Trade B2 R2 Kermit\n\n32) lorgar: Sacrifice Y1 Frog\nMove G1 Eht Robin\n\n33) ts52: Sacrifice R2 Kermit\nAttack G1 Robin\nPass\n\n34) lorgar: Move G1 Lorgar Robin\n\n35) ts52: Sacrifice Y2 Kermit\nDiscover B3 Robin G3 Oscar\nMove B3 Robin Kermit\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n36) lorgar: Build G1 Lorgar\n\n37) ts52: Trade G1 R1 Robin\n\n38) lorgar: Sacrifice G3 Lorgar\nBuild G1 Robin\nBuild G2 Robin\nBuild G3 Lorgar\nCatastrophe Robin Green\n\n39) ts52: Build B2 Oscar\n\n40) lorgar: Discover G1 Lorgar B2 Alawit\n\n41) ts52: Build B3 Oscar\n\n42) lorgar: Build G1 Alawit\n\n43) ts52: Trade B3 Y3 Oscar\n\n44) lorgar: Trade G1 Y1 Alawit\n\n45) ts52: Trade B3 Y3 Kermit\n\n46) lorgar: Build G1 Lorgar\n\n47) ts52: Trade B3 R3 Oscar\n\n48) lorgar: Discover G1 Alawit B3 Star\n\tlorgar: what went wrong??? :&#39;-(\n\n49) ts52: Build B3 Kermit\n\tts52: I think you just let me get too far with blue... not really sure though.\n\n50) lorgar: Discover Y1 Alawit B3 Shine\n\n51) ts52: Discover R3 Oscar Y2 Bigbird\n\n52) lorgar: Build G1 Star\n\n53) ts52: Move R3 Bigbird Star\n\n54) lorgar: Build G2 Star\n\n55) ts52: Attack G2 Star\n\n56) lorgar: Sacrifice G3 Lorgar\nBuild G2 Star\nBuild G3 Lorgar\nBuild Y2 Shine\n\n57) ts52: Sacrifice Y1 Ts52\nDiscover G2 Star B2 Grover\n\n58) lorgar: Trade Y1 R1 Shine\n\n59) ts52: Attack G2 Star\n\tlorgar: HA YOU LUCKER. forgot to say &quot;catastrophe star green&quot;\n\n60) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild R1 Shine\nBuild R1 Shine\n\tts52: I had been expecting that anyway... though you know you can undo a move, right?\n\tlorgar: I already used undo before on the same turn\n\n61) ts52: Build R2 Star\n\tts52: you can only use it once per turn?\n\n62) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild Y1 Shine\nBuild R2 Lorgar\n\tlorgar: yes\n\n63) ts52: Trade G2 Y2 Star\n\n64) lorgar: Move R3 Lorgar Grover\n\n65) ts52: Attack G1 Star\n\n66) lorgar: Attack G2N Grover\n\n67) ts52: Build G2 Ts52\n\n68) lorgar: Sacrifice G1 Star\nBuild G1 Grover\n\n69) ts52: Discover R2 Star Y2 Bigbird\n\n70) lorgar: Discover R1 Shine Y1 Rar\n\n71) ts52: Move B3 Kermit Bigbird\n\n72) lorgar: Move R1 Shine Rar\n\n73) ts52: Move B3 Bigbird Shine\n\n74) lorgar: Sacrifice Y2 Shine\nDiscover R1 Rar Y2 Lore\nMove Y1 Shine Grover\n\n75) ts52: Move B1 Kermit Bigbird\n\n76) lorgar: Build R2 Grover\n\n77) ts52: Move B2 Oscar Lore\n\n78) lorgar: Move R1 Lore Oscar\n\tlorgar: my hands are tied...\n\n79) ts52: Sacrifice R2 Bigbird\nAttack R1 Oscar\nAttack R1 Shine\n\n80) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild R2 Rar\nPass\n\n81) ts52: Sacrifice Y2 Star\nMove R1 Shine Grover\nMove R1 Oscar Grover\nCatastrophe Grover Red\n\n82) lorgar: Sacrifice G3 Lorgar\nBuild Y2 Grover\nBuild G3 Lorgar\nBuild R1 Rar\n\n83) ts52: Move Y3 Kermit Grover\n\n84) lorgar: Sacrifice Y2 Grover\nMove R1 Rar Star\nMove R1 Rar Star\n\n85) ts52: Sacrifice R3 Star\nAttack R1 Star\nAttack R1 Star\nAttack G2 Grover\n\n86) lorgar: Move G1 Grover Kermit\n\n87) ts52: Sacrifice R1 Star\nAttack Y1 Grover\n\n88) lorgar: Move R2 Rar Bigbird\n\n89) ts52: Move Y3 Grover Star\n\n90) lorgar: Attack B1N Bigbird\n\n91) ts52: Build Y1 Grover\n\n92) lorgar: Trade R2 Y2 Bigbird\n\n93) ts52: Trade G2 R2 Grover\n\n94) lorgar: Build G2 Kermit\n\n95) ts52: Move Y1 Grover Shine\n\n96) lorgar: Sacrifice Y2 Bigbird\nMove G2 Kermit Ts52\nMove G1 Kermit Ts52\nCatastrophe Ts52 Green\n\n97) ts52: Build Y2 Star\n\n98) lorgar: Move G1 Lorgar Bigbird\n\n99) ts52: Move Y2 Star Bigbird\n\n100) lorgar: Build G1 Lorgar\n\n101) ts52: Move Y1 Shine Grover\n\n102) lorgar: Build R1 Lorgar\n\n103) ts52: Sacrifice Y3 Oscar\nMove Y1 Grover Lorgar\nMove Y1 Grover Lorgar\nMove Y2 Bigbird Lorgar\nCatastrophe Lorgar Yellow\n\n104) lorgar: Trade R1 Y1 Lorgar\n\n105) ts52: Sacrifice Y3 Star\nMove B1 Kermit Lorgar\nMove B2 Lore Lorgar\nMove B3 Shine Lorgar\nCatastrophe Lorgar Blue\n\n\tts52: Thanks for the game.\n\tlorgar: no surprise, I got beaten up fair and square... and I want a rematch, dreaded nemesis!\n\nHomeworlds Online (SDG# 20158)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.8, Ended: 2011.6.22\nParticipants: Aristos (S), MadWuher (N)\nWinner: Aristos\n\n1) MadWuher: Homeworld R2 B1 G3\n\tMadWuher: Haven&#39;t played in a while, may be a bit rusty. Hope you have a good game.\n\n2) Aristos: Homeworld Y3 B1 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Aristos: Build G1 Aristos\n\n5) MadWuher: T G1 B1 Madwuher\n\n6) Aristos: Trade G3 B3 Aristos\n\n7) MadWuher: B B2 Madwuher\n\n8) Aristos: Build G1 Aristos\n\n9) MadWuher: T B1 Y1 Madwuher\n\n10) Aristos: Discover G1 Aristos Y2 Canary\n\n11) MadWuher: Build Y1 Madwuher\n\n12) Aristos: Build G1 Aristos\n\n13) MadWuher: B G2 Madwuher\n\n14) Aristos: Build G2 Canary\n\n15) MadWuher: Discover G2 Madwuher G3 Goliath\n\n16) Aristos: Move G1 Canary Goliath\n\n17) MadWuher: B G2 Madwuher\n\n18) Aristos: Build G3 Canary\n\n19) MadWuher: Move Y1 Madwuher Goliath\n\n20) Aristos: Sacrifice G2 Canary\nBuild G2 Goliath\nBuild B1 Aristos\nCatastrophe Goliath Green\n\n21) MadWuher: Build B2 Madwuher\n\n22) Aristos: Move B1 Aristos Canary\n\n23) MadWuher: Discover G2 Madwuher B3 Bologna\n\n24) Aristos: Build B2 Canary\n\n25) MadWuher: Build G1 Madwuher\n\n26) Aristos: Build B3 Canary\n\tMadWuher: Wow. My rust is showing......\n\n27) MadWuher: Discover B2 Madwuher Y3 Elonia\n\tAristos: It&#39;s ok... I needed to do well after my last game when I accidentally built 4 of the same color in my home system and my opponent noticed and catastrophed for me. *sigh* I felt dumb.\n\n28) Aristos: Build G2 Canary\n\n29) MadWuher: Sacrifice G2 Bologna\nBuild G2 Madwuher\nBuild B3 Elonia\n\n30) Aristos: Trade B3 Y3 Canary\n\n31) MadWuher: Move G2 Madwuher Elonia\n\n32) Aristos: Discover B1 Canary B3 Plum\n\n33) MadWuher: Move B2 Madwuher Plum\n\n34) Aristos: Sacrifice Y3 Canary\nDiscover B2 Canary R3 Fire\nMove B2 Fire Madwuher\nMove B1 Plum Madwuher\n\n35) MadWuher: Attack B2 Madwuher\n\n36) Aristos: Attack Y1 Madwuher\n\tAristos: ACK! I botched that... forgot about the lack of blue. Good defense on your part.\n\n37) MadWuher: Attack Y1 Madwuher\n\tAristos: What&#39;s the rule on retaking a ship that was just attacked? If you attack y1 again, do we sit in an infinite loop? \n\n38) Aristos: Attack Y1 Madwuher\n\n\tAristos: Hm... so there&#39;s apparently no &quot;don&#39;t repeat board position&quot; rule. So we need some sort of gentlemen&#39;s agreement to resolve this or else stalemate.\n\tAristos: Your move.\n\tMadWuher: Sorry Aristos, my time is filling up and I won&#39;t have access to this site for the next few months so I&#39;m afraid I&#39;m going to have to resign from our game. I notice that you had me locked down in my homeworld one way or another. If I switch a Blue to Red then you can wipe out my blue. If you took over my green then you could have build green up to a catastrophe. The only thing I can see is if I change my G3 to R3 and do a triple attack in my homeworld. \n\tAristos: Thanks for playing.\n\nHomeworlds Online (SDG# 20159)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.8, Ended: 2011.6.17\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: Alas, I couldn&#39;t expect to hold the #1 spot forever.  Good luck!\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) mneme: Build G1 Mneme\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Trade G1 B1 Mneme\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) mneme: Build B2 Mneme\n\n8) TwoShort: Build B2 Twoshort\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) TwoShort: Trade B2 Y2 Twoshort\n\n11) mneme: Build B2 Mneme\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Discover B2 Mneme G3 Station\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) mneme: Build B3 Station\n\n16) TwoShort: Build B3 Grogar\n\n17) mneme: Trade B3 R3 Station\n\n18) TwoShort: Trade B2 R2 Grogar\n\tTwoShort: I almost don&#39;t want to break the symmetry...\n\n19) mneme: Build B2 Station\n\n20) TwoShort: Discover B1 Twoshort G2 Greenland\n\tmneme: and yet?  :)  \n\n21) mneme: Trade B2 Y2 Station\n\n22) TwoShort: Build G1 Twoshort\n\n23) mneme: Move R3 Station Greenland\n\n24) TwoShort: Sacrifice Y2 Twoshort\nDiscover B1 Greenland Y3 Yolonda\nMove B3 Grogar Station\n\n25) mneme: Sacrifice G3 Mneme\nBuild B2 Station\nBuild B3 Station\nBuild Y1 Mneme\nCatastrophe Station B\n\n26) TwoShort: Sacrifice G1 Twoshort\nBuild B2 Yolonda\n\n27) mneme: Move B1 Mneme Station\n\n28) TwoShort: Trade B2 G2 Yolonda\n\n29) mneme: Build B2 Station\n\n30) TwoShort: Build G1 Twoshort\n\n31) mneme: Sacrifice Y1 Mneme\nMove R3 Greenland Yolonda\n\n32) TwoShort: Discover G2 Yolonda G1 Greenotron\n\n33) mneme: Attack B1 Yolonda\n\n34) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Greenotron\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n35) mneme: Trade R3 G3 Yolonda\n\n36) TwoShort: Trade G2 Y2 Twoshort\n\n37) mneme: Build B2 Yolonda\n\n38) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Greenotron Station\nDiscover G2 Greenotron B3 Bluonia\n\n39) mneme: Build B3 Yolonda\n\n40) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G2 Station\nBuild G3 Twoshort\n\n41) mneme: Trade B3 R3 Yolonda\n\n42) TwoShort: Sacrifice R2 Grogar\nAttack B2 Station\nAttack Y2 Station\n\n43) mneme: Build B3 Station\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild B3 Station\nCatastrophe Station Blue\n\n45) mneme: Build B1 Yolonda\n\n46) TwoShort: Trade G2 B2 Twoshort\n\n47) mneme: Discover B2 Yolonda Y2 Stage\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\nBuild B3 Twoshort\n\n49) mneme: Sacrifice Y2 Mneme\n\nMove R3 Yolonda Mneme\nMove B2 Stage Twoshort\nCatastrophe Twoshort B\n\n50) TwoShort: Trade G2 R2 Bluonia\n\n51) mneme: Build G2 Yolonda\n\n52) TwoShort: Sacrifice G3 Twoshort\nBuild R1 Bluonia\nBuild Y1 Station\nBuild G3 Twoshort\n\tmneme: Huh.  Cool gambit; trying to coax me into bluebird?\n\tTwoShort: It never hurts to give the other guy a chance to screw up. :)  But the moves I thought were likely were this or moving in without the sacrifice.  I think the latter led to a draw.  Either way looked better than where I was.\n\n53) mneme: Trade R3 Y3 Mneme\n\n54) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y1 Station\nBuild R1 Bluonia\n\n55) mneme: Sacrifice Y3 Mneme\nMove G2 Yolonda Mneme\nMove G2 Mneme Station\nMove B1 Yolonda Mneme\nCatastrophe Station G\n\n56) TwoShort: Trade R2 Y2 Bluonia\n\n57) mneme: Sacrifice G3 Yolonda\nBuild B1 Yolonda\nBuild B2 Yolonda\nBuild B2 Mneme\n\tmneme: damn.  messed up the topography of the world! \r\nStupid mistake.\r\n\n\n58) TwoShort: Sacrifice Y2 Bluonia\nMove G3 Twoshort Mneme\nPass\n\n\tmneme: And again, I fail because I cannot remember the topology of the game and think I have los to your homeworld.  *sigh*  (though I think I&#39;d already lost).  GG\n\nHomeworlds Online (SDG# 20157)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.8, Ended: 2011.6.17\nParticipants: SilentTitan (S), SirRuthvenMurgatroyd (N)\nWinner: SilentTitan\n\n1) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Calufrax\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) SirRuthvenMurgatroyd: Build G1 Calufrax\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n10) SilentTitan: Trade Y1 B1 Silenttitan\n\n11) SirRuthvenMurgatroyd: Move G1 Calufrax Sirruthvenmurgatroyd\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) SirRuthvenMurgatroyd: Build G1 Calufrax\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n16) SilentTitan: Discover G2 Silenttitan B1 Po\n\n17) SirRuthvenMurgatroyd: Trade G2 B2 Sirruthvenmurgatroyd\n\n18) SilentTitan: Discover B1 Silenttitan Y1 Go\n\n19) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n20) SilentTitan: Build Y2 Silenttitan\n\n21) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n22) SilentTitan: Move Y1 Silenttitan Po\n\n23) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n24) SilentTitan: Sacrifice G2 Po\nBuild B3 Go\nBuild B3 Go\n\n25) SirRuthvenMurgatroyd: Build B3 Sirruthvenmurgatroyd\n\n26) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B1 Go Y3 Do\nMove B1 Do Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Blue\n\n27) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd\nMove G1 Calufrax Sirruthvenmurgatroyd\nMove G1 Sirruthvenmurgatroyd Silenttitan\nMove G1 Sirruthvenmurgatroyd Silenttitan\n\n28) SilentTitan: Sacrifice B3 Go\nTrade G3 Y3 Silenttitan\nTrade B3 R3 Go\nPass\n\n29) SirRuthvenMurgatroyd: Attack B1S Silenttitan\n\n30) SilentTitan: Sacrifice R3 Go\nAttack G1 Silenttitan North\nAttack G1 Silenttitan North\nAttack B1 Silenttitan North\n\n31) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n32) SilentTitan: Discover Y1 Po G3 Yo\n\n33) SirRuthvenMurgatroyd: Discover G1 Calufrax B2 Sol\n\n34) SilentTitan: Build Y1 Yo\n\n35) SirRuthvenMurgatroyd: Move R2 Sirruthvenmurgatroyd Yo\n\n36) SilentTitan: Move Y1 Yo Sirruthvenmurgatroyd\n\n37) SirRuthvenMurgatroyd: Attack Y1S Yo\n\n38) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Sirruthvenmurgatroyd\n\n39) SirRuthvenMurgatroyd: Sacrifice R2 Yo\nAttack Y1S Sirruthvenmurgatroyd\nAttack Y2S Sirruthvenmurgatroyd\n\n40) SilentTitan: Move Y3 Silenttitan Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Yellow\n\tSirRuthvenMurgatroyd: Good game.  I had seen a couple moves ago that you could have sacrificed your yellow three to move in your two green and wipe out all my ships right after I gave you the opportunity, but fortunately you didn&#39;t see that.  I think I was pretty much doomed for a while at the end anyway.\n\tSilentTitan: Good game to you as well.... I was probably focused on taking out your homeworld... so I got caught up in the yellows rather than looking at all the colors and anyway to win.  \n\n\nHomeworlds Online (SDG# 20163)\nStarted: 2011.6.12, Ended: 2011.8.5\nParticipants: SirRuthvenMurgatroyd (S), Aristos (N)\nWinner: SirRuthvenMurgatroyd\n\n1) Aristos: Homeworld Y1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3\n\n3) Aristos: Build G1 Aristos\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) Aristos: Discover G1 Aristos Y3 Ash\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) Aristos: Discover G1 Ash Y1 Elm\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) Aristos: Build G2 Elm\n\n10) SirRuthvenMurgatroyd: Build G2 Sol\n\n11) Aristos: Build G2 Aristos\n\n12) SirRuthvenMurgatroyd: Build G3 Sol\n\n13) Aristos: Trade G2 Y2 Aristos\n\n14) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n15) Aristos: Sacrifice Y2 Aristos\nDiscover G1 Elm Y2 Ash\nMove G1 Ash Sol\nCatastrophe Sol Green\n\tAristos: Accidentally clicked the Undo button. :-)\n\n16) SirRuthvenMurgatroyd: Move R3 Sirruthvenmurgatroyd Elm\n\n17) Aristos: Sacrifice G2 Elm\nBuild G1 Aristos\nPass\n\n18) SirRuthvenMurgatroyd: Move R3 Elm Sirruthvenmurgatroyd\n\n19) Aristos: Trade G1 Y1 Aristos\n\n20) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n21) Aristos: Build Y1 Aristos\n\n22) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd G1 Terra\n\n23) Aristos: Build G2 Aristos\n\n24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n25) Aristos: Discover G2 Aristos B3 Oak\n\n26) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n27) Aristos: Build G1 Aristos\n\n28) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n29) Aristos: Trade Y1 R1 Aristos\n\n30) SirRuthvenMurgatroyd: Build G2 Terra\n\n31) Aristos: Build G2 Oak\n\n32) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove G2 Terra Sirruthvenmurgatroyd\nMove G1 Terra Sirruthvenmurgatroyd\n\n33) Aristos: Sacrifice G3 Aristos\nBuild G1 Aristos\nBuild G3 Aristos\nBuild G3 Oak\n\n34) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\tAristos: Must be lunch break for you too. :-)\n\n35) Aristos: Sacrifice G3 Oak\nBuild G3 Oak\nBuild Y1 Aristos\nBuild R1 Aristos\n\n36) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G3 Sirruthvenmurgatroyd\nBuild R1 Sirruthvenmurgatroyd\nBuild R2 Sirruthvenmurgatroyd\n\n37) Aristos: Trade G3 Y3 Oak\n\n38) SirRuthvenMurgatroyd: Sacrifice G1 Sirruthvenmurgatroyd\nBuild B1 Sirruthvenmurgatroyd\n\n39) Aristos: Build Y2 Oak\n\n40) SirRuthvenMurgatroyd: Trade R3 Y3 Sirruthvenmurgatroyd\n\n41) Aristos: Discover G1 Aristos Y3 Cedar\n\n42) SirRuthvenMurgatroyd: Discover Y3 Sirruthvenmurgatroyd B1 Calufrax\n\n43) Aristos: Sacrifice Y3 Oak\nMove Y1 Aristos Oak\nDiscover Y1 Oak G1 Elm\nMove Y2 Oak Elm\n\tAristos: Your move...\n\n44) SirRuthvenMurgatroyd: Discover Y3 Calufrax G3 Betelgeuse\n\tSirRuthvenMurgatroyd: Yeah, I know; I&#39;m really sorry, but I&#39;ve been incredibly busy this week.  I&#39;ll be moving more timely after Sunday.\n\n45) Aristos: Trade G2 B2 Oak\n\tAristos: No problem... I just didn&#39;t want you to miss because of time. :-)\n\n46) SirRuthvenMurgatroyd: Sacrifice B1 Sirruthvenmurgatroyd\nTrade G2 Y2 Sirruthvenmurgatroyd\n\n47) Aristos: Discover Y1 Aristos R3 Maple\n\n48) SirRuthvenMurgatroyd: Build Y3 Betelgeuse\n\n49) Aristos: Discover Y1 Maple B1 Pine\n\n50) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove Y3 Betelgeuse Aristos\nMove Y3 Betelgeuse Aristos\n\n51) Aristos: Sacrifice Y2 Elm\nDiscover Y1 Pine B3 Willow\nMove Y1 Willow Aristos\nCatastrophe Aristos Yellow\n\n52) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n53) Aristos: Sacrifice G3 Aristos\nBuild G2 Cedar\nBuild G3 Oak\nBuild G3 Aristos\n\n54) SirRuthvenMurgatroyd: Discover B1 Sirruthvenmurgatroyd Y1 Dogwood\n\tAristos: Well played.\n\n55) Aristos: Trade G2 Y2 Oak\n\n56) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n57) Aristos: Move Y2 Oak Dogwood\n\n58) SirRuthvenMurgatroyd: Discover B1 Dogwood Y3 Acacia\n\n59) Aristos: Trade B2 Y2 Oak\n\n60) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild B1 Acacia\nBuild B1 Acacia\n\n61) Aristos: Sacrifice Y2 Oak\nMove Y2 Dogwood Sirruthvenmurgatroyd\nMove Y1 Elm Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Yellow\n\n62) SirRuthvenMurgatroyd: Move B1 Acacia Aristos\n\n63) Aristos: Attack B1 Aristos\n\n64) SirRuthvenMurgatroyd: Move B1 Acacia Aristos\n\n\tSirRuthvenMurgatroyd: Err....  hadn&#39;t seen your undo before my move, but I&#39;d have done the same thing.  so no worry.\n\nHomeworlds Online (SDG# 20194)\nStarted: 2011.6.13, Ended: 2011.7.4\nParticipants: dlwillson (S), Salmonax (N)\nWinner: dlwillson\n\n1) Salmonax: Homeworld G3 B1 Y3\n\tdlwillson: Yay, Salmonax! I haven&#39;t played on SDG in a lifetime!\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) Salmonax: Build Y1 Salmonax\n\tSalmonax: \r\nNeither have I!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Salmonax: Trade Y1 G1 Salmonax\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Salmonax: Discover G1 Salmonax B2 S1\n\n8) dlwillson: B G1 Dlwillson\n\n9) Salmonax: Build Y1 Salmonax\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) Salmonax: Build G1 S1\n\n12) dlwillson: B B1 Dlwillson\n\n13) Salmonax: Build G1 S1\n\tdlwillson: HaHA! Hoo! Ha!\n\tSalmonax: Oh noes!\n\n14) dlwillson: B G2 Dlwillson\n\n15) Salmonax: Trade G1 Y1 S1\n\tSalmonax: Don&#39;t know bow to read the board on a screen yet. =P\n\n16) dlwillson: B Y2 Dlwillson\n\n17) Salmonax: Build Y2 S1\n\n18) dlwillson: D Y1 Dlwillson G1 Lpgd\n\n19) Salmonax: Move Y1 S1 Lpgd\n\tdlwillson: You&#39;re going to have some trouble with me, then. I&#39;ve played more Homeworlds here than anywhere! :-)\n\tSalmonax: Lpgd?\n\n20) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Lpgd\nBuild Y3 Dlwillson\n\tdlwillson: Looney Pyramid Gamers of Denver, of course...\n\n21) Salmonax: Build Y3 Lpgd\n\tSalmonax: Oh yeah, I figured that out once before.\n\n22) dlwillson: B G2 Dlwillson\nCatastrophe Lpgd Y\n\tSalmonax: I forgot to catastrophe, but lets see what happens.\n\n23) Salmonax: Discover G1 S1 Y1 S2\n\n24) dlwillson: T B1 R1 Dlwillson\n\n25) Salmonax: Trade Y1 R1 Salmonax\n\n26) dlwillson: M B1 Dlwillson S2\n\n27) Salmonax: Build G1 S2\n\tSalmonax: Sorry for the undo... fatal mistake. =)\n\n28) dlwillson: S G2 Dlwillson\nB B1 S2\nB B2 S2\n\tdlwillson: No problem. That&#39;s what it&#39;s for. And yes, that would&#39;ve been fatal. :-)\n\n29) Salmonax: Build G2 S1\n\n30) dlwillson: T B2 R2 S2\n\n31) Salmonax: Sacrifice G2 S1\nBuild G2 S1\nBuild G2 S2\n\n32) dlwillson: A G2 S2\n\n33) Salmonax: Build G2 S2\nCatastrophe S2 G\n\tdlwillson: Interesting move... Hm...\n\n34) dlwillson: M Y3 Dlwillson S2\n\n35) Salmonax: Sacrifice Y2 S1\nDiscover G1 S1 Y1 S0\nMove G2 S1 S0\n\n36) dlwillson: D B1 S2 G2 Ipgd2\n\n37) Salmonax: Build Y1 Salmonax\n\n38) dlwillson: Move Y3 S2 Ipgd2\n\n39) Salmonax: Discover Y1 Salmonax B2 S1\n\n40) dlwillson: B Y2 Dlwillson\n\n41) Salmonax: Sacrifice G2 S0\nBuild Y2 Salmonax\nBuild Y3 S1\n\n42) dlwillson: B G1 Dlwillson\n\n43) Salmonax: Build G1 S0\n\tdlwillson: Argh! Excellent move!\n\n44) dlwillson: M G1 Dlwillson S0\n\tSalmonax: Thanks!\n\n45) Salmonax: Trade Y2 R2 Salmonax\n\n46) dlwillson: B Y2 Ipgd2\n\n47) Salmonax: Trade Y1 R1 S1\n\tSalmonax: Couldn&#39;t keep you out of yellow for long!\n\tdlwillson: Dang! Forgot it was my turn!\r\n\n\n48) dlwillson: S R2 S2\nA G1 S0\nA G1 S0\n\n49) Salmonax: Move R2 Salmonax S1\n\n50) dlwillson: B G2 Dlwillson\n\n51) Salmonax: Build R2 Salmonax\n\n52) dlwillson: T Y3 R3 Ipgd2\n\n53) Salmonax: Move R2 S1 S0\n\n54) dlwillson: S G3 Dlwillson\nB G2 S0\nB G3 Dlwillson\nB R3 Ipgd2\n\n55) Salmonax: Move R1 S1 S2\nCatastrophe S0 G\n\n56) dlwillson: S R1 Dlwillson\nA R1 S2\n\n57) Salmonax: Trade Y3 G3 S1\n\tSalmonax: If that&#39;s a trap, I don&#39;t get how it works.\n\tSalmonax: Well, I guess it was so you could build elsewhere.\r\n\n\n58) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Ipgd2\nBuild Y3 Dlwillson\nBuild Y3 Ipgd2\n\n59) Salmonax: Trade Y3 B3 Salmonax\n\tSalmonax: It&#39;s not looking good for me.\n\tdlwillson: The Trap: (I forgot to explain)\r\nYou might have wasted some effort trying to capture my little greens, or just forgotten to cat them. Either one would have allowed me to build the G3 at home.\r\n\r\nAlas, you didn&#39;t fall for it.\r\n\r\nHowever, you have given me an interesting opportunity to give you an interesting opportunity. Let&#39;s see if you step into this trap...  :-)\n\n60) dlwillson: Sacrifice Y2 Dlwillson\nMove B1 Ipgd2 Salmonax\nMove R3 Ipgd2 Salmonax\n\tSalmonax: Well, I see that you can cat my red at homeworld if I do do something about them.  And you can cat my yellow if I don&#39;t do something about _them_\r\n\r\n\n\tSalmonax: I&#39;ll protect my big ship.\n\n61) Salmonax: Sacrifice R2 Salmonax\nAttack R3 Salmonax\nAttack B1 Salmonax\n\n62) dlwillson: S Y2 Dlwillson\nMove B1 S2 Ipgd2\nM B1 Ipgd2 Salmonax\nC Salmonax B\n\tdlwillson: Not sure death is inevitable at this point, but it looks pretty bad... Have you found the Cannon rules?\n\tSalmonax: Yep, there&#39;s a link to them from the pdf that one would expect holds the rules.\r\n\n\n63) Salmonax: Trade G3 B3 S1\n\n64) dlwillson: Sacrifice Y3 Ipgd2\nMove R3 Ipgd2 Salmonax\nMove R1 S2 Ipgd2\nMove R1 Ipgd2 Salmonax\nCatastrophe Salmonax R\n\n\tdlwillson: One or two more moves, depending.\n\tdlwillson: No, wait. Never mind.\n\tdlwillson: Good game, Salmonax. Want to go again, now that you&#39;ve got the hang of the board? Also, there are other players here, like Tripp/SilentTitan and Davey/DethDukk.\n\nHomeworlds Online (SDG# 20235)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.20, Ended: 2011.6.27\nParticipants: TwoShort (S), SilentTitan (N)\nWinner: TwoShort\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tTwoShort: Howdy.\n\tSilentTitan: hello again\r\n\n\n4) TwoShort: Build G1 Twoshort\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) TwoShort: Build G1 Twoshort\n\n9) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\tSilentTitan: \n\tSilentTitan: wow...are you sitting on the button or what?\n\n10) TwoShort: Build Y2 Twoshort\n\n11) SilentTitan: Build Y2 Silenttitan\n\tTwoShort: At work, so I see email pretty much instantly.  In another few moves we&#39;ll get to the point where I&#39;ll have to wait until I have time to think about my move.\n\n12) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tSilentTitan: ah..... so that would seem to indicate that I&#39;m in trouble since I&#39;m having to think about the moves now.\r\n\n\n13) SilentTitan: Discover Y1 Silenttitan B1 Tear\n\n14) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n15) SilentTitan: Sacrifice G1 Sol\nBuild Y1 Tear\n\n16) TwoShort: Build G1 Twoshort\n\n17) SilentTitan: Discover Y1 Tear B3 Zone\n\n18) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n19) SilentTitan: Trade Y1 G1 Zone\n\n20) TwoShort: Build G2 Twoshort\n\n21) SilentTitan: Build G2 Zone\n\n22) TwoShort: Discover G2 Twoshort Y3 Yellonia\n\n23) SilentTitan: Trade G2 Y2 Zone\n\n24) TwoShort: Sacrifice G2 Yellonia\nBuild Y1 Bluonia\nBuild Y3 Twoshort\n\tSilentTitan: Yellonia..... lol\n\n25) SilentTitan: Build G2 Zone\n\n26) TwoShort: Discover Y1 Bluonia B1 Bonanza\n\n27) SilentTitan: Trade G2 R2 Zone\n\n28) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Bonanza\n\n29) SilentTitan: Build R1 Zone\n\n30) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y3 Bluonia\n\n31) SilentTitan: Build G1 Silenttitan\n\n32) TwoShort: Trade Y1 G1 Bonanza\n\n33) SilentTitan: Build Y1 Zone\n\n34) TwoShort: Build G2 Bonanza\n\n35) SilentTitan: Move G1 Silenttitan Bonanza\n\n36) TwoShort: Trade G2 R2 Bonanza\n\n37) SilentTitan: Sacrifice G1 Bonanza\nBuild G1 Zone\n\n38) TwoShort: Build G2 Bonanza\n\n39) SilentTitan: Build R1 Zone\n\n40) TwoShort: Move R2 Bonanza Zone\nCatastrophe Zone Red\n\n41) SilentTitan: Sacrifice Y2 Zone\nMove G1 Zone Twoshort\nMove G1 Zone Twoshort\n\n42) TwoShort: Trade G3 R3 Twoshort\n\n43) SilentTitan: Trade Y2 R2 Silenttitan\n\n44) TwoShort: Build G2 Bonanza\n\n45) SilentTitan: Trade G1 R1 Twoshort\n\n46) TwoShort: Sacrifice Y3 Bluonia\nMove G1 Bonanza Silenttitan\nMove G2 Bonanza Silenttitan\nMove G2 Bonanza Silenttitan\nCatastrophe Silenttitan Green\n\n47) SilentTitan: Build R1 Twoshort\nCatastrophe Twoshort Red\n\n48) TwoShort: Move Y3 Bonanza Silenttitan\n\n49) SilentTitan: Move Y1 Zone Twoshort\n\tSilentTitan: so close........ yet.........\n\n50) TwoShort: Attack R2 Silenttitan\n\tTwoShort: Thanks for the game!\n\n\tSilentTitan: Tip.   Thank you\n\tSilentTitan: Yup. Not tip .. autocorrect on phone.  Fun.\n\nHomeworlds Online (SDG# 20243)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.22, Ended: 2011.6.25\nParticipants: AdamBadura (S), Subhan64 (N)\nWinner: AdamBadura\n\n1) Subhan64: Homeworld B2 Y1 G3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Subhan64: Build G1 Subhan64\n\n6) AdamBadura: Trade Y1 G1 Adambadura\n\n7) Subhan64: Discover G3 Subhan64 G3 Aha\n\n8) AdamBadura: Build G2 Adambadura\n\n9) Subhan64: Build G2 Subhan64\n\n10) AdamBadura: Sacrifice Y3 Adambadura\nDiscover G1 Adambadura Y1 Ontheway\nMove G1 Ontheway Aha\nMove G1 Aha Subhan64\nCatastrophe Subhan64 G\n\n\tAdamBadura: Don&#39;t blame your self. I fell to this trap more than once...\n\tSubhan64: I don&#39;t think I actually knew you could use a sacrifice move action to do a discover action.  \n\nHomeworlds Online (SDG# 20178)\nVariants: &quot;No undo&quot;\nStarted: 2011.6.23, Ended: 2011.7.13\nParticipants: ajo (S), goblin981 (N)\nWinner: ajo\n\n1) goblin981: Homeworld G3 B2 R3\n\n2) ajo: Homeworld B1 Y2 G3\n\n3) goblin981: Build R1 Goblin981\n\tajo: Good luck!\n\tgoblin981: you too :)\n\n4) ajo: Build G1 Ajo\n\n5) goblin981: Trade R1 Y1 Goblin981\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) goblin981: Build R1 Goblin981\n\n8) ajo: Build G1 Ajo\n\n9) goblin981: Discover R1 Goblin981 Y1 Yellow\n\n10) ajo: Build Y2 Ajo\n\n11) goblin981: Build Y2 Goblin981\n\n12) ajo: Discover Y1 Ajo G3 Alpha\n\n13) goblin981: Build Y3 Goblin981\n\n14) ajo: Sacrifice Y2 Ajo\nMove Y1 Alpha Yellow\nMove Y1 Yellow Goblin981\nCatastrophe Goblin981 Yellow\n\n15) goblin981: Build R1 Goblin981\n\n16) ajo: Build G1 Ajo\n\n17) goblin981: Trade R1 Y1 Goblin981\n\n18) ajo: Discover G1 Ajo B3 Alpha\n\n19) goblin981: Build R1 Goblin981\n\n20) ajo: Discover G1 Ajo B3 Beta\n\n21) goblin981: Discover R1 Goblin981 Y1 Y2\n\n22) ajo: Build G1 Ajo\n\tajo: I hope you know what you&#39;re doing. ;)\n\n23) goblin981: Build Y2 Goblin981\n\tgoblin981: so do I lol.  I do have a plan, but usually my plans don&#39;t work. So we&#39;ll see.\n\n24) ajo: Build G2 Alpha\n\n25) goblin981: Discover R1 Yellow G3 Green\n\n26) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Beta\nBuild G3 Ajo\n\n27) goblin981: Move R1 Y2 Green\n\n28) ajo: Trade G2 R2 Alpha\n\n29) goblin981: Build R1 Goblin981\n\n30) ajo: Sacrifice G3 Ajo\nBuild R2 Alpha\nBuild G2 Beta\nBuild G3 Ajo\n\tajo: Ooh. I&#39;m pretty sure your plan has fallen apart by this point.\n\n31) goblin981: Sacrifice Y2 Goblin981\nMove R1 Green Ajo\nMove R1 Green Ajo\n\tgoblin981: yep, pretty much\n\n32) ajo: Sacrifice R2 Alpha\nAttack R1 Ajo\nAttack R1 Ajo\n\tajo: Okay well now you&#39;re just being silly. ;)\n\n33) goblin981: Build Y1 Goblin981\n\n34) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R2 Alpha\n\n35) goblin981: Discover R1 Goblin981 Y1 Yellow\n\n36) ajo: Trade G3 Y3 Alpha\n\n37) goblin981: Build R2 Goblin981\n\n38) ajo: Move R2 Alpha Yellow\n\n39) goblin981: Trade R2 Y2 Goblin981\n\tgoblin981: I&#39;m so screwed.\r\n\n\tgoblin981: I&#39;m so screwed.\r\n\n\n40) ajo: Attack R1 Yellow\n\tajo: And you&#39;re not helping by trading for colors you&#39;ve already *got*. :P But yeah, you&#39;re screwed either way, I think.\n\n41) goblin981: Sacrifice Y2 Goblin981\nDiscover Y1 Goblin981 B1 Blue\nMove Y1 Goblin981 Blue\n\n42) ajo: Move G2 Alpha Blue\n\n43) goblin981: Discover Y1 Blue G3 Green\n\n44) ajo: Move R2 Alpha Blue\n\tajo: It might have been better to do &quot;sacrifice y1 blue; discover y1 blue g3 green&quot;, so that I didn&#39;t still have the threat of capturing your remaining y1.\n\n45) goblin981: Build Y2 Green\n\tajo: Check.\n\n46) ajo: Sacrifice Y3 Alpha\nMove R2 Blue Goblin981\nMove R2 Yellow Goblin981\nMove R1 Yellow Goblin981\nCatastrophe Goblin981 Red\n\tgoblin981: damn, should&#39;ve changed the r3 for something else.  oh well, you win.\n\n\nHomeworlds Online (SDG# 20195)\nStarted: 2011.6.23, Ended: 2011.8.9\nParticipants: lorgar (S), SirRuthvenMurgatroyd (N)\nWinner: SirRuthvenMurgatroyd\n\n1) SirRuthvenMurgatroyd: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld B2 Y3 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) lorgar: Build G1 Lorgar\n\tSirRuthvenMurgatroyd: Sorry about taking so long; I&#39;m pretty busy this week, but after Sunday I&#39;ll be moving much more quickly.\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n6) lorgar: Trade G1 R1 Lorgar\n\n7) SirRuthvenMurgatroyd: Build G1 Sol\n\n8) lorgar: Build G1 Lorgar\n\n9) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n10) lorgar: Discover G1 Lorgar B1 M0\n\n11) SirRuthvenMurgatroyd: Discover G1 Sol Y1 Betelgeuse\n\n12) lorgar: Build R1 Lorgar\n\n13) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd\n\n14) lorgar: Build G2 Lorgar\n\n15) SirRuthvenMurgatroyd: Build G2 Betelgeuse\n\n16) lorgar: Sacrifice G3 Lorgar\nBuild G2 M0\nBuild G3 Lorgar\nBuild G3 M0\n\n17) SirRuthvenMurgatroyd: Move G1 Sol M0\nCatastrophe M0 G\n\n18) lorgar: Trade R1 B1 Lorgar\n\n19) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n20) lorgar: Discover B1 Lorgar G1 Marmol\n\n21) SirRuthvenMurgatroyd: Discover G1 Betelgeuse B2 Calufrax\n\n22) lorgar: Build B1 Marmol\n\n23) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sirruthvenmurgatroyd\nBuild G3 Betelgeuse\nBuild G3 Sirruthvenmurgatroyd\n\n24) lorgar: Trade B1 Y1 Marmol\n\n25) SirRuthvenMurgatroyd: Move G3 Betelgeuse Lorgar\n\n26) lorgar: Attack G3N Lorgar\n\n27) SirRuthvenMurgatroyd: Move G2 Betelgeuse Lorgar\nCatastrophe Lorgar G\n\n\nHomeworlds Online (SDG# 20207)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.23, Ended: 2011.6.26\nParticipants: Jesse (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B3 Y1 G3\n\n\tJesse: Whoops.  Sorry about that.  I&#39;ve been rather busy lately.\n\tlorgar: no problem\n\nHomeworlds Online (SDG# 20161)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.23, Ended: 2011.7.14\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B3 Y1 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Discover G1 Lorgar B2 Cydonia\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) lorgar: Build G1 Lorgar\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) lorgar: Build G1 Cydonia\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n11) lorgar: Trade G1 R1 Lorgar\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) lorgar: Build G1 Lorgar\n\n14) SilentTitan: Discover Y2 Silenttitan B3 Poison\n\n15) lorgar: Build G2 Cydonia\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Poison\nBuild Y3 Silenttitan\n\n17) lorgar: Trade G2 R2 Cydonia\n\n18) SilentTitan: Build Y3 Sol\n\n19) lorgar: Build R1 Cydonia\n\n20) SilentTitan: Discover Y3 Sol B2 Stun\n\n21) lorgar: Build G2 Lorgar\n\n22) SilentTitan: Build Y3 Sol\n\n23) lorgar: Trade G2 B2 Lorgar\n\n24) SilentTitan: Trade Y3 G3 Silenttitan\n\n25) lorgar: Discover B2 Lorgar G2 Mint\n\n26) SilentTitan: Build Y3 Silenttitan\n\n\tlorgar: sod it... srry\n\nHomeworlds Online (SDG# 20270)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.26, Ended: 2011.7.13\nParticipants: goulo (S), Subhan64 (N)\nWinner: goulo\n\n1) Subhan64: Homeworld B1 G2 Y3\n\n2) goulo: Homeworld R2 B3 G3\n\n3) Subhan64: Build Y1 Subhan64\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Subhan64: Build G1 Subhan64\n\n8) goulo: Build Y1 Goulo\n\n9) Subhan64: Discover G1 Subhan64 G3 Aha\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) Subhan64: Build G1 Subhan64\n\n12) goulo: Build G2 Goulo\n\n13) Subhan64: Discover G1 Subhan64 G3 Hehe\n\n14) goulo: Build G2 Goulo\n\n15) Subhan64: Sacrifice Y3 Subhan64\nDiscover G1 Aha R1 Touche\nMove G1 Hehe Touche\nMove G1 Touche Goulo\nCatastrophe Goulo Green\n\n16) goulo: Trade R1 G1 Goulo\n\n17) Subhan64: Build G2 Touche\n\n18) goulo: Build G2 Goulo\n\tgoulo: I saw that possible catastrophe reducing us both to 2 1-ships, but erroneously thought that would be good for me as I&#39;d have the next move - but I failed to see that I would have to spend a move getting green build ability... :)\n\n19) Subhan64: Build G3 Subhan64\n\n20) goulo: Build G3 Goulo\n\n21) Subhan64: Trade G1 Y1 Subhan64\n\n22) goulo: Trade G1 R1 Goulo\n\n23) Subhan64: Build G1 Subhan64\n\n24) goulo: Discover G2 Goulo R1 Rubeneto\n\n25) Subhan64: Trade G1 B1 Subhan64\n\n26) goulo: Build R2 Goulo\n\n27) Subhan64: Sacrifice B1 Subhan64\nTrade G2 R2 Touche\n\n28) goulo: Move R2 Goulo Touche\n\n29) Subhan64: Attack R2 Touche\n\n30) goulo: Move R1 Goulo Touche\nCatastrophe Touche R\n\n31) Subhan64: Build G1 Subhan64\n\n32) goulo: Build G1 Rubeneto\n\n33) Subhan64: Discover G3 Subhan64 G3 Gisforgreen\n\n34) goulo: Sacrifice G2 Rubeneto\nBuild Y1 Goulo\nBuild Y2 Goulo\n\n35) Subhan64: Build Y2 Subhan64\n\n36) goulo: Move Y1 Goulo Rubeneto\n\n37) Subhan64: Sacrifice Y1 Subhan64\nMove G3 Gisforgreen Rubeneto\n\n38) goulo: Sacrifice Y1 Rubeneto\nDiscover G1 Rubeneto Y3 Citronego\n\n39) Subhan64: Trade G1 Y1 Subhan64\n\n40) goulo: Build G1 Goulo\n\n41) Subhan64: Move Y1 Subhan64 Citronego\n\n42) goulo: Move G1 Citronego Subhan64\n\n43) Subhan64: Trade Y2 R2 Subhan64\n\n44) goulo: Build G1 Subhan64\n\n\tSubhan64: Good game!\n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 20264)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.27, Ended: 2011.6.29\nParticipants: mneme (S), ajo (N)\nWinner: mneme\n\n1) ajo: Homeworld Y1 B3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) mneme: Build G1 Mneme\n\n5) ajo: Trade G1 R1 Ajo\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) ajo: Build G1 Ajo\n\n8) mneme: Build Y1 Mneme\n\n9) ajo: Trade G3 Y3 Ajo\n\n10) mneme: Build Y2 Mneme\n\n11) ajo: Build Y2 Ajo\n\n12) mneme: Discover Y1 Mneme B3 Staging\n\n13) ajo: Discover Y2 Ajo B2 Alpha\n\n14) mneme: Discover Y1 Mneme B3 Violet\n\n15) ajo: Trade Y3 G3 Ajo\n\n16) mneme: Build G1 Mneme\n\n17) ajo: Move G1 Ajo Alpha\n\n18) mneme: Discover G1 Mneme Y3 Host\n\n19) ajo: Build Y2 Alpha\n\n20) mneme: B Y3 Mneme\n\tajo: I think I know what you&#39;re planning. Very nice. I&#39;m rarely able to plan far enough ahead in the early game to pull that off.\n\n21) ajo: Move Y2 Alpha Violet\n\n22) mneme: Trade Y2 R2 Mneme\n\n23) ajo: Sacrifice R1 Ajo\nAttack Y1 Violet\n\n24) mneme: Move G3 Mneme Violet\n\tmneme: I&#39;m curious what you&#39;re thinking.  I tend to be moving towards several things at once if I can manage it, though -- threatening catastrophes, green expansions that grab larges, freezes on whatever color my opponent is ignoring, etc.  \n\tajo: Well, for a couple moves there you were threatening &quot;sac g3; build y2y3y3&quot;. (I assume that&#39;s what you meant by &quot;green expansions&quot;?) I&#39;m less worried about that possibility now, though.\n\n25) ajo: Sacrifice Y1 Violet\nDiscover Y2 Violet B2 Beta\n\tmneme: That was certainly one of my plans.  I got the extra large without that, though, so it all works out.  \n\n26) mneme: Sacrifice Y3 Mneme\nMove G3 Violet Alpha\nMove G3 Alpha Ajo\nMove G1 Host Mneme\n\n27) ajo: Sacrifice Y2 Beta\nMove Y2 Alpha Ajo\nMove G1 Alpha Ajo\n\tmneme: Of course, one of my plans was to let you get rid of all your red while I had a path to your home system...\n\n28) mneme: Sacrifice R2 Mneme\nAttack G3 Ajo\nAttack G1 Ajo\n\tajo: Oh dear. I didn&#39;t even notice that. This is going to be a short game!\n\n\tmneme: Yeah -- it&#39;s all over.\n\tajo: Good game.\n\tmneme: Good game! \n\nHomeworlds Online (SDG# 20272)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.28, Ended: 2011.8.12\nParticipants: lorgar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B3 Y2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) lorgar: Build G1 Lorgar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) lorgar: Trade G1 R1 Lorgar\n\n7) Jesse: Build Y1 Jesse\n\n8) lorgar: Build G1 Lorgar\n\n9) Jesse: Build Y1 Jesse\n\n10) lorgar: Discover G1 Lorgar B1 M0\n\n11) Jesse: Build G1 Jesse\n\n12) lorgar: Build G1 Lorgar\n\n13) Jesse: Discover G1 Jesse B2 Grover\n\n14) lorgar: Build G2 M0\n\n15) Jesse: Build G2 Grover\n\n16) lorgar: Sacrifice G3 Lorgar\nBuild G2 M0\nBuild G3 Lorgar\nBuild G3 Lorgar\n\n17) Jesse: Trade G2 R2 Grover\n\n18) lorgar: Trade G2 Y2 M0\n\n19) Jesse: Move Y1 Jesse Grover\n\n20) lorgar: Trade G2 R2 M0\n\n21) Jesse: Discover Y1 Jesse B2 Cookie\n\n22) lorgar: Move G3 Lorgar M0\n\n23) Jesse: Sacrifice G3 Jesse\nBuild Y2 Cookie\nBuild Y3 Grover\nBuild Y3 Jesse\n\n\nHomeworlds Online (SDG# 20257)\nStarted: 2011.6.29, Ended: 2011.9.13\nParticipants: thejackdiaz (S), SirRuthvenMurgatroyd (N)\nWinner: thejackdiaz\n\n1) SirRuthvenMurgatroyd: Homeworld B3 Y2 G3\n\n2) thejackdiaz: Homeworld R1 B2 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) thejackdiaz: Build G1 Thejackdiaz\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n6) thejackdiaz: Trade G1 Y1 Thejackdiaz\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) thejackdiaz: Build Y1 Thejackdiaz\n\n9) SirRuthvenMurgatroyd: Build G1 Sol\n\n10) thejackdiaz: Build G2 Thejackdiaz\n\n11) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Calufrax\n\n12) thejackdiaz: Discover G2 Thejackdiaz G3 Epicurus\n\n13) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G2 Calufrax\nBuild G3 Sirruthvenmurgatroyd\n\n14) thejackdiaz: Discover Y1 Thejackdiaz B3 Clarence\n\n15) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n16) thejackdiaz: Sacrifice G2 Epicurus\nBuild Y2 Clarence\nBuild Y2 Thejackdiaz\n\n17) SirRuthvenMurgatroyd: Move G2 Sol Clarence\n\n18) thejackdiaz: Build Y3 Thejackdiaz\n\n19) SirRuthvenMurgatroyd: Sacrifice R1 Sirruthvenmurgatroyd\nAttack Y2 Clarence\n\n20) thejackdiaz: Trade Y3 R3 Thejackdiaz\n\n21) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n22) thejackdiaz: Trade Y2 R2 Thejackdiaz\n\n23) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Sirruthvenmurgatroyd\nBuild G3 Clarence\n\n24) thejackdiaz: Move R2 Thejackdiaz Clarence\n\n25) SirRuthvenMurgatroyd: Sacrifice Y2 Clarence\nMove G2 Clarence Thejackdiaz\nMove G3 Clarence Thejackdiaz\n\n26) thejackdiaz: Attack G3N Thejackdiaz\n\n27) SirRuthvenMurgatroyd: Attack Y1S Thejackdiaz\n\n28) thejackdiaz: Trade G3 Y3 Thejackdiaz\n\n29) SirRuthvenMurgatroyd: Move G1 Calufrax Thejackdiaz\n\n30) thejackdiaz: Move G3 Thejackdiaz Clarence\n\n31) SirRuthvenMurgatroyd: Sacrifice G2 Sol\nBuild Y2 Thejackdiaz\nBuild Y2 Thejackdiaz\nCatastrophe Thejackdiaz Y\n\n32) thejackdiaz: Attack G2 Thejackdiaz\n\n33) SirRuthvenMurgatroyd: Build G2 Thejackdiaz\n\n34) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n35) SirRuthvenMurgatroyd: Trade G2 Y2 Thejackdiaz\n\n36) thejackdiaz: Attack Y2N Thejackdiaz\n\n37) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Calufrax\nBuild G3 Sirruthvenmurgatroyd\n\n38) thejackdiaz: Build Y1 Clarence\n\n39) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n40) thejackdiaz: Build G3 Clarence\n\n41) SirRuthvenMurgatroyd: Trade G1 R1 Thejackdiaz\n\n42) thejackdiaz: Attack R1N Thejackdiaz\n\n43) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n44) thejackdiaz: Discover G3 Clarence B1 Molly\n\n45) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n46) thejackdiaz: Sacrifice G2 Thejackdiaz\nBuild Y2 Thejackdiaz\nBuild Y3 Clarence\n\n47) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n48) thejackdiaz: Trade G3 R3 Molly\n\n49) SirRuthvenMurgatroyd: Sacrifice B1 Sirruthvenmurgatroyd\nTrade G3 R3 Calufrax\n\n50) thejackdiaz: Sacrifice Y3 Clarence\nMove R2 Clarence Molly\nMove R2 Molly Sirruthvenmurgatroyd\nMove R3 Molly Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Red\n\n51) SirRuthvenMurgatroyd: Build R1 Calufrax\n\n52) thejackdiaz: Sacrifice Y2 Thejackdiaz\nMove G3 Clarence Sol\nMove G3 Sol Sirruthvenmurgatroyd\n\n53) SirRuthvenMurgatroyd: Move R3 Calufrax Thejackdiaz\n\n54) thejackdiaz: Sacrifice R1 Thejackdiaz\nAttack G1N Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20285)\nVariants: &quot;No undo&quot;\nStarted: 2011.6.29, Ended: 2011.7.9\nParticipants: sageinquisitor (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld G1 B2 R3\n\n\nHomeworlds Online (SDG# 20290)\nVariants: &quot;Hard time&quot;\nStarted: 2011.6.30, Ended: 2011.8.1\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\tmneme: Greetings!  BTW, I -finally- managed to score a Homeworld medallion at Origins this year (mostly, I was stopped in previous years by missing the con or by Homeworlds being a &quot;floating&quot; tournament in which I didn&#39;t play enough games).\n\n3) mneme: Build G1 Mneme\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Trade G1 B1 Mneme\n\tTwoShort: Congratulations on the medallion!  Maybe someday I&#39;ll manage to make it to Origins so everyone can see how much worse I am playing in person :)\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) mneme: Build B2 Mneme\n\n8) TwoShort: Build B2 Twoshort\n\n9) mneme: T B2 Y2 Mneme\n\tmneme: *Laugh* You should!  Not next year, though, as they&#39;re suspending the lab next year due to Origins&#39;s scheduling.\n\n10) TwoShort: Trade B1 Y1 Twoshort\n\n11) mneme: Build B1 Mneme\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Discover B1 Mneme G3 Happiness\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) mneme: Sacrifice G3 Mneme\nBuild B2 Happiness\nBuild B3 Happiness\nBuild B3 Mneme\n\n16) TwoShort: Discover B2 Twoshort Y2 Yolonda\n\n17) mneme: Trade B3 R3 Happiness\n\n18) TwoShort: Build Y1 Twoshort\n\n19) mneme: Trade B3 G3 Mneme\n\n20) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n21) mneme: T B2 Y2 Happiness\n\n22) TwoShort: Build G1 Twoshort\n\n23) mneme: Discover B1 Mneme Y3 Sunbright\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n25) mneme: Sacrifice Y2 Mneme\nMove Y2 Happiness Grogar\nMove Y2 Grogar Twoshort\nCatastrophe Twoshort Y\n\tTwoShort: Sorry for the slowness, I&#39;m on vacation in the land of little internet.  It&#39;s not that I&#39;m stalling because I&#39;m doing so badly.  Well, not just that anyway... :)\n\n26) TwoShort: Move Y3 Grogar Twoshort\n\tmneme: It&#39;s cool.  I&#39;m a little out of it too, but at least -that- move I had a planned answer two once I recalled it.\n\n27) mneme: Build G1 Mneme\n\n28) TwoShort: Build Y1 Twoshort\n\n29) mneme: Trade G3 Y3 Mneme\n\n30) TwoShort: Build Y1 Grogar\n\n31) mneme: Build Y2 Mneme\n\n32) TwoShort: Trade Y3 G3 Twoshort\n\n33) mneme: Move Y2 Mneme Happiness\n\n34) TwoShort: Discover Y1 Grogar G3 Greenland\n\n35) mneme: Build R1 Happiness\n\n36) TwoShort: Discover G1 Twoshort G2 Greenonia\n\n37) mneme: Move R3 Happiness Yolonda\n\n38) TwoShort: Move B2 Yolonda Sunbright\n\n39) mneme: Move R3 Yolonda Twoshort\n\n40) TwoShort: Sacrifice R2 Twoshort\nAttack R3 Twoshort\nAttack B1 Sunbright\n\n\tmneme: oh, ouch.  Missed that one.  Shouldn&#39;t have.\n\tmneme: You know, normally, I&#39;d play it out, but I&#39;m just not in the mood right now, and that was just such a -colossal- blunder. Note to self: don&#39;t try a double-threat with red!\r\n\n\nHomeworlds Online (SDG# 20292)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.1, Ended: 2011.7.7\nParticipants: Danner (S), Aristos (N)\nWinner: Danner\n\n1) Aristos: Homeworld G1 B2 Y3\n\tDanner: Hi! Have a nice game!\n\n2) Danner: Homeworld G1 B2 G3 *\n\n3) Aristos: Build Y1 Aristos\n\n4) Danner: Build G1 Danner\n\tAristos: Interesting starting choice.\n\tDanner: :)\n\n5) Aristos: Discover Y1 Aristos G3 Isis\n\n6) Danner: Trade G3 Y3 Danner\n\n7) Aristos: Build Y1 Aristos\n\n8) Danner: Build G2 Danner\n\n9) Aristos: Trade Y3 G3 Aristos\n\n10) Danner: Discover G2 Danner Y3 Re\n\n11) Aristos: Build Y1 Aristos\n\n12) Danner: Build G2 Danner\n\n\tAristos: I botched badly and there&#39;s little chance of recovery. Good game.\r\n\n\tDanner: Thanks for the game!\n\nHomeworlds Online (SDG# 20258)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.3, Ended: 2011.7.7\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld G1 B3 Y3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) BloodRumpus: Build Y1 Bloodrumpus\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) BloodRumpus: Discover Y1 Bloodrumpus B2 Alpha-draconis\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) BloodRumpus: Trade Y1 G1 Alpha-draconis\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) BloodRumpus: Build G1 Alpha-draconis\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) BloodRumpus: Build G2 Alpha-draconis\n\n12) SilentTitan: Discover G2 Silenttitan B1 Sol\n\n13) BloodRumpus: Trade G2 Y2 Alpha-draconis\n\n14) SilentTitan: Build G2 Sol\n\n15) BloodRumpus: Discover G1 Alpha-draconis R1 Vega\n\n16) SilentTitan: Trade G2 Y2 Sol\n\n17) BloodRumpus: Build G2 Alpha-draconis\n\n18) SilentTitan: Discover Y1 Silenttitan B1 Sole\n\n19) BloodRumpus: Trade G1 B1 Alpha-draconis\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) BloodRumpus: Build B2 Alpha-draconis\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sole\nBuild Y3 Silenttitan\n\n23) BloodRumpus: Build Y3 Bloodrumpus\n\n24) SilentTitan: Trade Y2 B2 Sole\n\n25) BloodRumpus: Move B2 Alpha-draconis Vega\n\n26) SilentTitan: Sacrifice Y2 Sol\nDiscover B2 Sole G2 Soul\nMove Y1 Sole Soul\n\n27) BloodRumpus: Build G3 Vega\n\n28) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sol Soul\nMove Y1 Soul Bloodrumpus\nMove Y1 Soul Bloodrumpus\nCatastrophe Bloodrumpus Yellow\n\n\nHomeworlds Online (SDG# 20323)\nStarted: 2011.7.6, Ended: 2011.9.25\nParticipants: lorgar (S), dragmio (N)\nWinner: dragmio\n\n1) dragmio: Homeworld G3 B1 R3\n\n2) lorgar: Homeworld G2 Y1 B3\n\n3) dragmio: Build R1 Dragmio\n\n4) lorgar: Build B1 Lorgar\n\n5) dragmio: Trade R1 Y1 Dragmio\n\n6) lorgar: Discover B1 Lorgar G3 Lormec\n\n7) dragmio: Build Y1 Dragmio\n\n8) lorgar: Build B1 Lorgar\n\n9) dragmio: Build Y2 Dragmio\n\n10) lorgar: Build B2 Lormec\n\n11) dragmio: Discover Y1 Dragmio B2 Aspect\n\n12) lorgar: Trade B2 Y2 Lormec\n\n13) dragmio: Move Y2 Dragmio Aspect\n\n14) lorgar: Build B2 Lormec\n\n15) dragmio: Trade Y2 G2 Aspect\n\n16) lorgar: Trade B1 G1 Lorgar\n\n17) dragmio: Build Y2 Aspect\n\n18) lorgar: Discover G1 Lorgar Y3 M0\n\n19) dragmio: Sacrifice G2 Aspect\nBuild Y2 Dragmio\nBuild Y3 Dragmio\n\n20) lorgar: Build Y3 Lormec\n\n21) dragmio: Sacrifice Y2 Dragmio\nMove Y1 Aspect Lormec\nMove Y2 Aspect Lormec\nCatastrophe Lormec Y\n\n22) lorgar: Trade B1 R1 Lormec\n\n23) dragmio: Trade Y1 R1 Dragmio\n\n24) lorgar: Build B1 Lormec\n\n25) dragmio: Discover R3 Dragmio Y2 Emperor\n\n26) lorgar: Build B1 Lormec\n\n27) dragmio: Move R3 Emperor M0\n\n28) lorgar: Discover G1 M0 B2 Mar\n\n29) dragmio: Move R3 M0 Mar\n\n30) lorgar: Trade B1 Y1 Lormec\n\n31) dragmio: Attack G1 Mar\n\n32) lorgar: Build R1 Lormec\n\n33) dragmio: Build Y1 Dragmio\n\n34) lorgar: Trade B2 Y2 Lormec\n\n35) dragmio: Move Y1 Dragmio Mar\n\tdragmio: \n\n36) lorgar: Build B1 Lormec\n\n37) dragmio: Build R2 Dragmio\n\n38) lorgar: Discover B1 Lormec G2 Mordekaizone\n\n39) dragmio: Build Y2 Dragmio\n\n40) lorgar: Build B2 Lormec\n\n41) dragmio: Move R2 Dragmio Mordekaizone\n\n42) lorgar: Sacrifice B1 Mordekaizone\nTrade Y1 B1 Lormec\n\n43) dragmio: Move R1 Dragmio Mordekaizone\n\n44) lorgar: Discover B2 Lormec G2 Mhoried\n\n45) dragmio: Discover R3 Mar Y3 Yolta\n\n46) lorgar: Build B2 Mhoried\n\n47) dragmio: Sacrifice Y3 Dragmio\nMove R2 Mordekaizone Lormec\nMove R1 Mordekaizone Lormec\nMove R3 Yolta Lorgar\nCatastrophe Lormec R\n\n\nHomeworlds Online (SDG# 20284)\nStarted: 2011.7.8, Ended: 2011.8.1\nParticipants: SirRuthvenMurgatroyd (S), BloodRumpus (N)\nWinner: SirRuthvenMurgatroyd\n\n1) BloodRumpus: Homeworld B3 R1 G3\n\n2) SirRuthvenMurgatroyd: Homeworld G1 B2 Y3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) SirRuthvenMurgatroyd: Trade Y1 R1 Sirruthvenmurgatroyd\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n9) BloodRumpus: Discover G1 Bloodrumpus B2 Vega\n\n10) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n11) BloodRumpus: Build G1 Vega\n\n12) SirRuthvenMurgatroyd: Trade Y3 G3 Sirruthvenmurgatroyd\n\n13) BloodRumpus: Build G2 Vega\n\n14) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n15) BloodRumpus: Trade G1 Y1 Vega\n\n16) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd\n\n17) BloodRumpus: Build Y2 Vega\n\n18) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n19) BloodRumpus: Trade Y2 R2 Vega\n\n20) SirRuthvenMurgatroyd: Discover R1 Sirruthvenmurgatroyd Y3 Sol\n\n21) BloodRumpus: Build Y2 Vega\n\n22) SirRuthvenMurgatroyd: Discover R1 Sol Y2 Yellow\n\n23) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y3 Bloodrumpus\nBuild Y3 Bloodrumpus\nBuild Y3 Vega\n\n24) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G3 Green\n\n25) BloodRumpus: Trade Y1 G1 Vega\n\n26) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove Y1 Green Yellow\nMove Y1 Yellow Bloodrumpus\nCatastrophe Bloodrumpus Y\n\n\nHomeworlds Online (SDG# 20304)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.8, Ended: 2011.7.13\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld B2 R3 G3\n\n2) SilentTitan: Homeworld R2 B1 G3\n\tSilentTitan: ah... good you&#39;re back.  I was hoping to play you again... you&#39;re good... you just mis-stepped in that last game.   I figure I won&#39;t be able to lure you in the same way .... this time\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\tBloodRumpus: Thanks! I&#39;m pretty new to this game, but I find it absolutely fascinating! I&#39;m glad we can play online. I&#39;m new to Icehouse games in general, and was really disappointed that I won&#39;t be able to buy any pyramids until late Sept.\n\n4) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: hum... I hadn&#39;t heard anything about that.  My bro-in-law runs Icehouse games at the cons we have in Denver and he typiclly gives pyramid packs out to the winners.  I&#39;ll ask maybe he&#39;ll sell you some. dunno for sure.\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) SilentTitan: Build G1 Silenttitan\n\tBloodRumpus: yeah something about Looney Labs switching to Chinese manufacturing and having some kind of problem thats delaying the release of new pyramids... and all the gaming shops are sold out. I guess there haven&#39;t been any pyramids in circulation since June (at least thats what I gather from the website). Seems like I picked the perfectly wrong time to get into Icehouse games. \n\n7) BloodRumpus: Build Y1 Bloodrumpus\n\tSilentTitan: yah... I went out and read the whole saga.... crazy.  \n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) BloodRumpus: Build Y2 Bloodrumpus\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) BloodRumpus: Trade Y2 G2 Bloodrumpus\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) BloodRumpus: Discover G2 Bloodrumpus B1 Sirius\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) BloodRumpus: Move Y1 Bloodrumpus Sirius\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover G1 Silenttitan Y3 Ying\nDiscover G1 Silenttitan Y3 Yang\n\n17) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y2 Sirius\nBuild Y2 Bloodrumpus\nBuild Y3 Bloodrumpus\n\n18) SilentTitan: Discover Y1 Silenttitan G3 Zong\n\n19) BloodRumpus: Sacrifice Y2 Bloodrumpus\nMove Y1 Bloodrumpus Sirius\nMove Y1 Sirius Zong\n\n20) SilentTitan: Discover Y1 Zong B1 Song\n\n21) BloodRumpus: Trade Y2 B2 Sirius\n\n22) SilentTitan: Discover Y1 Song B3 Jazz\n\n23) BloodRumpus: Build Y2 Zong\n\n24) SilentTitan: Build Y2 Silenttitan\n\n25) BloodRumpus: Move G2 Sirius Bloodrumpus\n\n26) SilentTitan: Sacrifice G1 Yang\nBuild Y3 Jazz\n\n27) BloodRumpus: Move B2 Sirius Zong\n\n28) SilentTitan: Trade Y2 R2 Silenttitan\n\n29) BloodRumpus: Trade Y1 R1 Zong\n\n30) SilentTitan: Build G1 Silenttitan\n\n31) BloodRumpus: Build B1 Zong\n\n32) SilentTitan: Build G1 Silenttitan\n\n33) BloodRumpus: Build B2 Zong\n\n34) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Silenttitan Zong\nMove G1 Silenttitan Zong\n\n35) BloodRumpus: Sacrifice Y3 Bloodrumpus\nMove B2 Zong Silenttitan\nMove B2 Zong Silenttitan\nMove B1 Zong Silenttitan\nCatastrophe Silenttitan B\n\n36) SilentTitan: Build G2 Zong\nCatastrophe Zong Green\n\n37) BloodRumpus: Move Y1 Sirius Bloodrumpus\n\n38) SilentTitan: Discover Y3 Jazz G1 Somo\n\n39) BloodRumpus: Trade Y1 R1 Bloodrumpus\n\n40) SilentTitan: Move Y3 Somo Bloodrumpus\n\n41) BloodRumpus: Trade R1 Y1 Bloodrumpus\n\n42) SilentTitan: Sacrifice R2 Silenttitan\nAttack G2 Bloodrumpus North\nAttack Y1 Bloodrumpus North\n\n\nHomeworlds Online (SDG# 20336)\nStarted: 2011.7.8, Ended: 2011.8.16\nParticipants: SirRuthvenMurgatroyd (S), Mandrel (N)\nWinner: SirRuthvenMurgatroyd\n\n1) Mandrel: Homeworld B3 R2 G3\n\tMandrel: Have a good game.\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) Mandrel: D Y1 Mandrel G1 Down\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) Mandrel: Build G2 Mandrel\n\n10) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n11) Mandrel: Trade G2 Y2 Mandrel\n\n12) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n13) Mandrel: B Y1 Down\n\n14) SirRuthvenMurgatroyd: Build G1 Sol\n\n15) Mandrel: B Y2 Mandrel\n\n16) SirRuthvenMurgatroyd: Discover G1 Sol B1 Calufrax\n\n17) Mandrel: B Y2 Down\n\n18) SirRuthvenMurgatroyd: Build G2 Calufrax\n\n19) Mandrel: Build Y3 Mandrel\n\n20) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n21) Mandrel: Discover Y1 Down G3 Confusion\n\n22) SirRuthvenMurgatroyd: Move Y3 Sirruthvenmurgatroyd Confusion\n\n23) Mandrel: S Y3 Mandrel\nMove Y1 Down Confusion\nMove Y1 Confusion Sirruthvenmurgatroyd\nMove Y1 Confusion Sirruthvenmurgatroyd\n\n24) SirRuthvenMurgatroyd: Build Y3 Confusion\n\n25) Mandrel: Sacrifice Y2 Mandrel\nMove Y2 Down Confusion\nMove Y2 Confusion Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Y\n\n26) SirRuthvenMurgatroyd: Trade G2 R2 Calufrax\n\n27) Mandrel: Build Y1 Mandrel\n\n28) SirRuthvenMurgatroyd: Build R1 Calufrax\n\n29) Mandrel: Trade Y1 B1 Mandrel\n\n30) SirRuthvenMurgatroyd: Trade G1 B1 Calufrax\n\n31) Mandrel: Build Y1 Mandrel\n\n32) SirRuthvenMurgatroyd: Sacrifice Y3 Confusion\nMove B1 Calufrax Mandrel\nMove R1 Calufrax Mandrel\nMove R2 Calufrax Mandrel\n\n33) Mandrel: Attack R2S Mandrel\n\n34) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild R1 Mandrel\nBuild B1 Mandrel\nCatastrophe Mandrel R\nCatastrophe Mandrel B\n\tMandrel: Good game, well played.\n\n\nHomeworlds Online (SDG# 20342)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.8, Ended: 2011.7.11\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\tDanner: Hello again.\n\n2) ajo: Homeworld Y2 B1 G3\n\tajo: Ah yes, you like to give the opponent the first move. Incidentally, how does SDG decide? Does the challenger always get the first opportunity to move?\n\n3) Danner: Homeworld B1 G2 B3 *\n\tDanner: I think it&#39;s random, but I&#39;m not sure.\n\n4) ajo: Build G1 Ajo\n\n5) Danner: Build B1 Danner\n\n6) ajo: Trade G3 B3 Ajo\n\n7) Danner: Trade B1 Y1 Danner\n\n8) ajo: Build G1 Ajo\n\n9) Danner: Build Y1 Danner\n\n10) ajo: Discover G1 Ajo B3 Alpha\n\tajo: Oh shoot! I just realized that we&#39;re only two hops apart. That changes things somewhat. :)\n\n11) Danner: Discover Y1 Danner G3 Beta\n\tDanner: :)\n\n12) ajo: Build G1 Ajo\n\n13) Danner: Build B1 Danner\n\n14) ajo: Build B2 Ajo\n\n15) Danner: Move B1 Danner Beta\n\n16) ajo: Move B2 Ajo Alpha\n\n17) Danner: Build B2 Danner\n\n18) ajo: Trade B2 Y2 Alpha\n\n19) Danner: Build B2 Beta\n\n20) ajo: Build G2 Alpha\n\n21) Danner: Build B2 Beta\n\tDanner: It&#39;s getting exciting. :)\n\n22) ajo: Move G1 Alpha Danner\n\tajo: Isn&#39;t it?\n\n23) Danner: Trade B2 R2 Danner\n\n24) ajo: Sacrifice G2 Alpha\nBuild G2 Danner\nBuild G2 Danner\nCatastrophe Danner Green\n\n25) Danner: Discover B2 Beta G2 Gamma\n\n26) ajo: Trade B3 R3 Ajo\n\n27) Danner: Build B2 Gamma\n\n28) ajo: Move G1 Ajo Alpha\n\n29) Danner: Build B3 Beta\n\n30) ajo: Build G1 Alpha\n\tajo: Whoops. I should have been watching the stash. (I&#39;m playing this game -- uncharacteristically -- without having it set up next to me.)\n\n31) Danner: Trade B3 Y3 Beta\n\n32) ajo: Build G2 Ajo\n\tDanner: That&#39;s strange. :)\n\n33) Danner: Build B3 Gamma\n\n34) ajo: Discover G1 Alpha G2 Delta\n\tDanner: Oops, I read it wrong.\r\n(Well, I never set it up phisically, but sometimes I use MS Paint :D)\n\n35) Danner: Sacrifice Y3 Beta\nDiscover B3 Gamma G3 Epsilon\nDiscover B2 Gamma G3 Zeta\nDiscover B2 Gamma Y3 Eta\n\tajo: I strongly recommend getting a physical set of Icehouse pieces and setting it up for real. Especially since SDG&#39;s visualization always sorts the star systems in precisely the wrong order top-to-bottom, have you noticed? ;)  Makes it really easy to miss something.\n\n36) ajo: Build G2 Alpha\n\n37) Danner: Trade B3 Y3 Epsilon\n\tDanner: I made a set out of paper a few years ago! :)\n\n38) ajo: Move G2 Ajo Epsilon\n\n39) Danner: Build B3 Zeta\n\n40) ajo: Build Y1 Alpha\n\n41) Danner: Build Y2 Epsilon\n\n42) ajo: Sacrifice Y2 Alpha\nMove G1 Delta Epsilon\nMove G1 Ajo Epsilon\nCatastrophe Epsilon Green\n\n43) Danner: Trade B3 Y3 Zeta\n\n44) ajo: Move G2 Alpha Ajo\n\n45) Danner: Build B3 Zeta\n\n46) ajo: Build G1 Ajo\n\n47) Danner: Trade B3 R3 Zeta\n\n48) ajo: Build Y2 Alpha\n\n49) Danner: Build Y2 Zeta\n\n50) ajo: Discover G1 Ajo Y3 Theta\n\n51) Danner: Move R2 Danner Theta\n\n52) ajo: Build G1 Ajo\n\n53) Danner: Attack G1S Theta\n\n54) ajo: Build G2 Alpha\n\n55) Danner: Move R3 Zeta Danner\n\n56) ajo: Discover G1 Ajo B3 Gamma\n\n57) Danner: Move Y1 Danner Gamma\n\n58) ajo: Trade G2 R2 Alpha\n\n59) Danner: Sacrifice R2 Theta\nAttack G1S Gamma\nPass\n\n60) ajo: Build G2 Alpha\n\n61) Danner: Sacrifice G1 Theta\nBuild Y3 Beta\n\n62) ajo: Sacrifice Y2 Alpha\nMove G1 Alpha Danner\nMove G1 Danner Beta\n\n63) Danner: Sacrifice Y3 Beta\nMove Y1 Beta Ajo\nMove B1 Beta Ajo\nMove B2 Beta Ajo\n\n64) ajo: Sacrifice R2 Alpha\nAttack B2 Ajo\nAttack B1 Ajo\n\n65) Danner: Sacrifice Y3 Zeta\nMove B2 Zeta Ajo\nMove Y2 Zeta Ajo\nMove Y1 Gamma Ajo\nCatastrophe Ajo Y\nCatastrophe Ajo B\n\tajo: Therrrrre you go. Finally. :P  Good game!\n\n\tDanner: Thanks for the game! :)\n\nHomeworlds Online (SDG# 20337)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.9, Ended: 2011.7.24\nParticipants: SilentTitan (S), thejackdiaz (N)\nWinner: SilentTitan\n\n1) thejackdiaz: Homeworld Y2 B3 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) thejackdiaz: Build G1 Thejackdiaz\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) thejackdiaz: Discover G1 Thejackdiaz Y1 Trini\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) thejackdiaz: Build G1 Thejackdiaz\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) thejackdiaz: Build G1 Trini\n\n10) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n11) thejackdiaz: Discover G1 Trini Y3 Eva\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) thejackdiaz: Build G2 Eva\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n15) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild G2 Eva\nBuild G2 Trini\nBuild G3 Thejackdiaz\n\n16) SilentTitan: Trade Y3 R3 Sol\n\n17) thejackdiaz: Trade G1 R1 Thejackdiaz\n\n18) SilentTitan: Trade Y1 G1 Sol\n\n19) thejackdiaz: Build G3 Thejackdiaz\n\n20) SilentTitan: Trade Y3 G3 Silenttitan\n\n21) thejackdiaz: Trade G3 R3 Thejackdiaz\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n23) thejackdiaz: Move R3 Thejackdiaz Trini\n\n24) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sol Trini\nMove G1 Trini Eva\nCatastrophe Eva Green\n\n25) thejackdiaz: Discover G2 Trini B3 Billy\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) thejackdiaz: Trade G2 Y2 Billy\n\n28) SilentTitan: Trade Y2 G2 Sol\n\n29) thejackdiaz: Build R1 Trini\n\n30) SilentTitan: Discover Y1 Sol B1 Pluto\n\n31) thejackdiaz: Discover G1 Trini Y3 Kimberly\n\n32) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pluto\nBuild Y3 Silenttitan\nBuild R2 Sol\n\n33) thejackdiaz: Sacrifice G1 Kimberly\nBuild Y3 Billy\n\n34) SilentTitan: Sacrifice Y2 Pluto\nMove Y1 Pluto Billy\nMove Y1 Silenttitan Billy\nCatastrophe Billy Yellow\n\n35) thejackdiaz: Build R2 Thejackdiaz\n\n36) SilentTitan: Discover R2 Sol Y1 Tic\n\n37) thejackdiaz: Trade R1 Y1 Thejackdiaz\n\n38) SilentTitan: Sacrifice G2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n39) thejackdiaz: Build G1 Thejackdiaz\n\n40) SilentTitan: Trade Y3 G3 Silenttitan\n\n41) thejackdiaz: Move G1 Thejackdiaz Trini\n\n42) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\nBuild R1 Sol\n\n43) thejackdiaz: Build G1 Thejackdiaz\n\n44) SilentTitan: Trade Y2 B2 Silenttitan\n\n45) thejackdiaz: Trade G1 B1 Thejackdiaz\n\n46) SilentTitan: Discover Y2 Sol G1 Mars\n\n47) thejackdiaz: Build G1 Thejackdiaz\n\n48) SilentTitan: Trade Y3 G3 Silenttitan\n\n49) thejackdiaz: Build G2 Trini\n\n50) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Mars\nBuild Y3 Sol\nBuild B1 Silenttitan\n\n51) thejackdiaz: Discover R1 Trini B3 Ozone\n\n52) SilentTitan: Sacrifice Y3 Sol\nMove Y2 Mars Thejackdiaz\nMove Y2 Mars Thejackdiaz\nDiscover B1 Silenttitan G3 Mer\nCatastrophe Thejackdiaz Yellow\n\n53) thejackdiaz: Trade B1 Y1 Thejackdiaz\n\n54) SilentTitan: Trade R1 G1 Sol\n\n55) thejackdiaz: Build Y2 Thejackdiaz\n\n56) SilentTitan: Sacrifice G1 Sol\nBuild B1 Silenttitan\n\n57) thejackdiaz: Trade R1 B1 Ozone\n\n58) SilentTitan: Sacrifice Y3 Sol\nMove B1 Silenttitan Thejackdiaz\nMove B2 Silenttitan Thejackdiaz\nMove B1 Mer Tic\n\n59) thejackdiaz: Attack B2S Thejackdiaz\n\n60) SilentTitan: Move B1 Tic Thejackdiaz\nCatastrophe Thejackdiaz Blue\n\tthejackdiaz: GG\n\tSilentTitan: Thanks\n\n\nHomeworlds Online (SDG# 20345)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.11, Ended: 2011.7.19\nParticipants: kingsamj (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) kingsamj: Homeworld R3 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: Small universe..... nice.   Good luck.\n\n4) kingsamj: Build G1 Kingsamj\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) kingsamj: Trade G1 R1 Kingsamj\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) kingsamj: Build G1 Kingsamj\n\n9) SilentTitan: Build Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 20365)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.12, Ended: 2011.8.14\nParticipants: BloodRumpus (S), kingsamj (N)\nWinner: kingsamj\n\n1) kingsamj: Homeworld R3 B2 G3\n\n2) BloodRumpus: Homeworld G1 B2 Y3\n\n3) kingsamj: Build G1 Kingsamj\n\n4) BloodRumpus: Build Y1 Bloodrumpus\n\n5) kingsamj: Trade G1 Y1 Kingsamj\n\n6) BloodRumpus: Discover Y1 Bloodrumpus G3 Rigel\n\n7) kingsamj: Discover Y1 Kingsamj G1 Firescorn\n\n8) BloodRumpus: Build Y1 Bloodrumpus\n\n9) kingsamj: Build Y2 Firescorn\n\n10) BloodRumpus: Build Y2 Rigel\n\n11) kingsamj: Move Y1 Firescorn Kingsamj\n\tBloodRumpus: Thats a lot of yellow ships! I sleep now...\n\n12) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n13) kingsamj: Build Y1 Kingsamj\n\tBloodRumpus: oh i see you are playing against SilentTitan. I&#39;ve played 2 games with him, he beat me both times.\n\n14) BloodRumpus: Build Y2 Bloodrumpus\n\n15) kingsamj: Trade Y1 R1 Kingsamj\n\n16) BloodRumpus: Trade Y3 G3 Bloodrumpus\n\n17) kingsamj: Move R1 Kingsamj Firescorn\n\n18) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y1 Rigel\nBuild Y3 Bloodrumpus\nBuild Y3 Bloodrumpus\n\n19) kingsamj: Move Y2 Firescorn Rigel\nCatastrophe Rigel Y\n\n20) BloodRumpus: Trade Y3 G3 Bloodrumpus\n\n21) kingsamj: Build Y1 Kingsamj\n\tBloodRumpus: Nice catastrophe! Off to bed...\n\n22) BloodRumpus: Discover Y2 Bloodrumpus G3 Vega\n\n23) kingsamj: Build R1 Firescorn\n\n24) BloodRumpus: Move B1 Bloodrumpus Vega\n\n25) kingsamj: Move Y1 Kingsamj Firescorn\n\n26) BloodRumpus: Trade Y2 R2 Vega\n\n27) kingsamj: Trade Y1 B1 Kingsamj\n\n28) BloodRumpus: Build Y1 Bloodrumpus\n\n29) kingsamj: Build Y1 Firescorn\n\n30) BloodRumpus: Move Y1 Bloodrumpus Vega\n\n31) kingsamj: Move Y1 Firescorn Kingsamj\n\n32) BloodRumpus: Discover G3 Bloodrumpus Y3 Sirius\n\n33) kingsamj: Build Y2 Firescorn\n\n34) BloodRumpus: Move G3 Sirius Firescorn\n\n35) kingsamj: Build Y2 Kingsamj\n\n36) BloodRumpus: Sacrifice R2 Vega\nAttack Y2 Firescorn\nAttack R1 Firescorn\n\n37) kingsamj: Pass\n\tkingsamj: i think this game has some bugs!\n\n38) BloodRumpus: Pass\n\tBloodRumpus: Is it misbehaving?\n\n39) kingsamj: Build G1 Kingsamj\n\n40) BloodRumpus: Sacrifice G3 Firescorn\nBuild Y2 Vega\nBuild Y3 Bloodrumpus\nBuild Y3 Bloodrumpus\n\n41) kingsamj: Build G2 Kingsamj\n\n42) BloodRumpus: Trade Y3 G3 Bloodrumpus\n\n43) kingsamj: Move Y1 Firescorn Vega\n\tBloodRumpus: This game has been pretty epic. Thats a fuck-ton of ships at your homeworld!\n\n44) BloodRumpus: Build Y3 Firescorn\n\n45) kingsamj: Move G2 Kingsamj Firescorn\n\n46) BloodRumpus: Sacrifice Y2 Firescorn\nDiscover Y3 Firescorn B3 Draconis\nMove R1 Firescorn Vega\n\n47) kingsamj: Move Y2 Kingsamj Firescorn\n\n48) BloodRumpus: Sacrifice Y2 Vega\nMove Y3 Bloodrumpus Vega\nDiscover Y3 Vega R1 Cygnus\n\n49) kingsamj: Build R2 Firescorn\n\n50) BloodRumpus: Move Y3 Draconis Cygnus\n\n\n51) kingsamj: Build Y2 Firescorn\n\n52) BloodRumpus: Trade G3 R3 Bloodrumpus\n\n53) kingsamj: Trade G3 R3 Kingsamj\n\n54) BloodRumpus: Build Y2 Bloodrumpus\n\n55) kingsamj: Sacrifice Y2 Firescorn\nMove Y1 Vega Cygnus\nMove Y1 Kingsamj Cygnus\nCatastrophe Cygnus Y\n\n56) BloodRumpus: Trade Y2 G2 Bloodrumpus\n\n57) kingsamj: Build G2 Kingsamj\n\n58) BloodRumpus: Discover G2 Bloodrumpus B3 Crux\n\n59) kingsamj: Move R2 Firescorn Crux\n\n60) BloodRumpus: Build G3 Crux\n\n61) kingsamj: Build G3 Kingsamj\n\n62) BloodRumpus: Sacrifice R1 Vega\nAttack R2 Crux\n\n63) kingsamj: Trade G3 Y3 Kingsamj\n\n64) BloodRumpus: Trade G2 Y2 Crux\n\n65) kingsamj: Move R3 Kingsamj Firescorn\n\n66) BloodRumpus: Build R1 Bloodrumpus\n\n67) kingsamj: Move R1 Firescorn Vega\n\n68) BloodRumpus: Move R3 Bloodrumpus Crux\n\n69) kingsamj: Attack Y1 Vega\n\n70) BloodRumpus: Sacrifice Y2 Crux\nMove R3 Crux Firescorn\nMove G3 Crux Firescorn\n\n71) kingsamj: Move R3 Firescorn Crux\n\n72) BloodRumpus: Sacrifice B1 Vega\nTrade G3 B3 Firescorn\n\n73) kingsamj: Move Y2 Firescorn Crux\n\n74) BloodRumpus: Sacrifice R2 Crux\nAttack G2N Firescorn\nPass\n\n75) kingsamj: Sacrifice Y2 Crux\nMove G2 Kingsamj Firescorn\nMove G1 Kingsamj Firescorn\nCatastrophe Firescorn G\n\n76) BloodRumpus: Build Y1 Bloodrumpus\n\n77) kingsamj: Trade Y3 G3 Kingsamj\n\n78) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n79) kingsamj: Trade B1 Y1 Kingsamj\n\n80) BloodRumpus: Build Y1 Bloodrumpus\n\n81) kingsamj: Build Y2 Vega\n\n82) BloodRumpus: Discover Y1 Bloodrumpus G3 Algol\n\n83) kingsamj: Build Y2 Kingsamj\n\n84) BloodRumpus: Build Y2 Bloodrumpus\n\n85) kingsamj: Sacrifice Y2 Kingsamj\nMove Y1 Vega Bloodrumpus\nMove Y2 Vega Bloodrumpus\nCatastrophe Bloodrumpus Y\n\n86) BloodRumpus: Build R1 Bloodrumpus\n\n87) kingsamj: Build R2 Vega\n\n88) BloodRumpus: Build B1 Bloodrumpus\n\n89) kingsamj: Sacrifice Y1 Kingsamj\nMove R2 Vega Bloodrumpus\n\n90) BloodRumpus: D Y1 Algol G2 Bootes\n\n91) kingsamj: Sacrifice R3 Crux\nAttack R1 Bloodrumpus\nAttack R1 Bloodrumpus\nAttack B1 Bloodrumpus\n\n92) BloodRumpus: Build B1 Bloodrumpus\n\n93) kingsamj: Build G1 Kingsamj\nCatastrophe Bloodrumpus B\n\n\tkingsamj: woo! cylons win!\n\tBloodRumpus: I was fully bonerized :(\n\nHomeworlds Online (SDG# 20373)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.13, Ended: 2011.7.16\nParticipants: ajo (S), Subhan64 (N)\nWinner: ajo\n\n\nHomeworlds Online (SDG# 20349)\nStarted: 2011.7.14, Ended: 2011.11.3\nParticipants: thejackdiaz (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R2 B1 G3\n\tMandrel: Have a good game.\n\n2) thejackdiaz: Homeworld B1 G3 R3\n\n3) Mandrel: Build G1 Mandrel\n\n4) thejackdiaz: Build R1 Thejackdiaz\n\n5) Mandrel: Trade G1 B1 Mandrel\n\n6) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n7) Mandrel: Build B2 Mandrel\n\n8) thejackdiaz: Build R1 Thejackdiaz\n\n9) Mandrel: Trade B1 Y1 Mandrel\n\n10) thejackdiaz: Build Y1 Thejackdiaz\n\n11) Mandrel: D B2 Mandrel G3 Berry\n\n12) thejackdiaz: Discover R1 Thejackdiaz G2 Kix\n\n13) Mandrel: Build B1 Berry\n\n14) thejackdiaz: Build R1 Kix\n\n15) Mandrel: B B2 Berry\n\n16) thejackdiaz: Move Y1 Thejackdiaz Kix\n\n17) Mandrel: T B2 R2 Berry\n\n18) thejackdiaz: Build R2 Kix\n\n19) Mandrel: T B2 Y2 Berry\n\n20) thejackdiaz: Move R1 Kix Thejackdiaz\n\n21) Mandrel: Build R3 Berry\n\n22) thejackdiaz: Discover R1 Kix B3 Cubone\n\n23) Mandrel: T R2 G2 Berry\n\n24) thejackdiaz: Build R2 Kix\n\n25) Mandrel: Build R3 Berry\n\n26) thejackdiaz: Build R3 Thejackdiaz\n\n27) Mandrel: Discover G2 Berry B2 Ground\n\n28) thejackdiaz: Trade R1 Y1 Thejackdiaz\n\n29) Mandrel: Build Y2 Mandrel\n\n30) thejackdiaz: Build Y2 Kix\n\n31) Mandrel: B Y3 Berry\n\n32) thejackdiaz: Move Y2 Kix Cubone\n\n33) Mandrel: Build B2 Berry\n\n34) thejackdiaz: Build Y3 Kix\n\n35) Mandrel: Build G1 Ground\n\n36) thejackdiaz: Move R2 Kix Cubone\n\n37) Mandrel: Build G1 Ground\n\n38) thejackdiaz: Discover R2 Kix B3 Omega\n\n39) Mandrel: Trade R3 B3 Berry\n\n40) thejackdiaz: Sacrifice Y3 Kix\nMove R2 Cubone Mandrel\nMove R1 Cubone Mandrel\nMove R2 Omega Mandrel\nCatastrophe Mandrel Red\n\n41) Mandrel: S Y3 Berry\nMove G1 Ground Thejackdiaz\nMove G1 Ground Thejackdiaz\nMove G2 Ground Thejackdiaz\nCatastrophe Thejackdiaz G\n\n42) thejackdiaz: Build Y3 Kix\n\n43) Mandrel: M B1 Berry Thejackdiaz\n\n44) thejackdiaz: Sacrifice Y3 Kix\nMove R3 Thejackdiaz Berry\nMove Y1 Kix Mandrel\nMove Y2 Cubone Mandrel\nCatastrophe Mandrel Y\n\n45) Mandrel: Sacrifice Y2 Berry\nMove B2 Berry Thejackdiaz\nMove B3 Berry Thejackdiaz\nCatastrophe Thejackdiaz B\n\tMandrel: Good game.\n\tthejackdiaz: Good game\n\n\nHomeworlds Online (SDG# 20369)\nVariants: &quot;No undo&quot;\nStarted: 2011.7.14, Ended: 2011.8.3\nParticipants: ajo (S), thejackdiaz (N)\nWinner: ajo\n\n1) thejackdiaz: Homeworld R1 B2 G3\n\n2) ajo: Homeworld G3 B1 R3\n\n3) thejackdiaz: Build G1 Thejackdiaz\n\n4) ajo: Build R1 Ajo\n\n5) thejackdiaz: Trade G1 Y1 Thejackdiaz\n\n6) ajo: Trade R3 Y3 Ajo\n\n7) thejackdiaz: Build G1 Thejackdiaz\n\n8) ajo: Build R1 Ajo\n\n9) thejackdiaz: Discover G1 Thejackdiaz Y3 Spike\n\n10) ajo: Build R2 Ajo\n\tajo: Moving out to a b3 star would probably have been better. From that y3, all you can do is move out again to a b2 star... which would normally be a decent aggressive strategy, but in this case I&#39;ve got tons of red and you&#39;ve got none, so watch out!\n\n11) thejackdiaz: Build Y1 Thejackdiaz\n\tthejackdiaz: Thanks! I&#39;m still learning\n\n12) ajo: Discover R2 Ajo Y2 Waypoint\n\n13) thejackdiaz: Discover G1 Spike B2 Jet\n\n14) ajo: Move R1 Ajo Jet\n\n15) thejackdiaz: Trade G1 Y1 Jet\n\n16) ajo: Attack Y1 Jet\n\n17) thejackdiaz: Build Y2 Thejackdiaz\n\n18) ajo: Build R2 Ajo\n\n19) thejackdiaz: Trade Y2 R2 Thejackdiaz\n\n20) ajo: Trade R1 G1 Jet\n\n21) thejackdiaz: Build Y2 Thejackdiaz\n\n22) ajo: Build Y2 Jet\n\n23) thejackdiaz: Discover Y2 Thejackdiaz B3 Ed\n\n24) ajo: Build Y3 Ajo\n\n25) thejackdiaz: Discover Y2 Ed G2 Valentine\n\n26) ajo: Move Y3 Ajo Valentine\n\n27) thejackdiaz: Build Y3 Valentine\n\n28) ajo: Sacrifice R2 Ajo\nAttack Y2 Valentine\nAttack Y3 Valentine\n\tajo: Ooookay then... I&#39;ll take it!\n\n29) thejackdiaz: Discover R2 Thejackdiaz G3 Silas\n\tthejackdiaz: Crap\n\n30) ajo: Move Y3 Valentine Silas\n\tajo: Another tip: Watch out for systems containing only red and green. In this case it&#39;s no big deal, because it&#39;s right next to a system containing more colors; but if a system way out in the middle of nowhere has only red and green, then it&#39;s essentially useless.\n\n31) thejackdiaz: Sacrifice Y1 Thejackdiaz\nMove R2 Silas Thejackdiaz\n\n32) ajo: Build Y1 Silas\n\n33) thejackdiaz: Build G1 Thejackdiaz\n\n34) ajo: Move R2 Waypoint Silas\n\n35) thejackdiaz: Trade G1 B1 Thejackdiaz\n\n36) ajo: Build Y2 Jet\n\n37) thejackdiaz: Build G1 Thejackdiaz\n\n38) ajo: Trade Y1 R1 Jet\n\n39) thejackdiaz: Build Y1 Thejackdiaz\n\n40) ajo: Sacrifice Y3 Valentine\nMove R1 Jet Silas\nMove R1 Silas Thejackdiaz\nMove R2 Silas Thejackdiaz\nCatastrophe Thejackdiaz Red\n\n41) thejackdiaz: Trade Y1 R1 Thejackdiaz\n\tajo: It was probably too early for me to do that, really; but long inexorable buildups aren&#39;t as much fun as blowing things up. :)\n\n42) ajo: Trade Y2 B2 Jet\n\tthejackdiaz: We&#39;re nearing the end\n\n43) thejackdiaz: Discover G1 Thejackdiaz B3 Iv\n\n44) ajo: Build B1 Jet\n\n45) thejackdiaz: Move B1 Thejackdiaz Iv\n\n46) ajo: Trade B2 R2 Jet\n\n47) thejackdiaz: Build G1 Iv\n\n48) ajo: Move B1 Jet Iv\n\n49) thejackdiaz: Trade B1 R1 Iv\n\n50) ajo: Sacrifice R2 Jet\nAttack R1 Iv\nAttack G1 Iv\n\n51) thejackdiaz: Build R2 Thejackdiaz\n\tajo: I&#39;m definitely letting myself get sidetracked off of my main goal here, which ought to be to get three more blues into your homeworld.\n\n52) ajo: Build R2 Iv\n\n53) thejackdiaz: Sacrifice R1 Thejackdiaz\nAttack G1S Iv\n\n54) ajo: Attack G1 Iv\n\tajo: Well that was just a waste. You sacrificed your r1 to do something that I can undo for free.\n\n55) thejackdiaz: Build G2 Thejackdiaz\n\tajo: ...And now we&#39;re back where we were at the start of your last turn, except that you&#39;ve lost that r1 ship.\n\n56) ajo: Attack G1 Iv\n\n57) thejackdiaz: Trade G2 Y2 Thejackdiaz\n\n58) ajo: Sacrifice Y2 Valentine\nMove G1 Iv Thejackdiaz\nMove G1 Iv Thejackdiaz\n\n59) thejackdiaz: Attack G1 Thejackdiaz\n\n60) ajo: Build G2 Thejackdiaz\nCatastrophe Thejackdiaz Green\n\n61) thejackdiaz: Trade Y2 G2 Thejackdiaz\n\n62) ajo: Move Y3 Silas Thejackdiaz\n\n63) thejackdiaz: Build R1 Thejackdiaz\n\n64) ajo: Sacrifice R2 Iv\nAttack R2 Thejackdiaz\nAttack G2 Thejackdiaz\n\n65) thejackdiaz: Trade Y1 G1 Thejackdiaz\n\tajo: Checkmate. :) Good game!\n\tthejackdiaz: Good Game!\n\n66) ajo: Sacrifice R2 Thejackdiaz\nAttack G1 Thejackdiaz\nAttack R1 Thejackdiaz\n\n\nHomeworlds Online (SDG# 20358)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.15, Ended: 2011.7.23\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\tSilentTitan: Welcome back\n\tBloodRumpus: Thanks!\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) BloodRumpus: Trade G1 B1 Bloodrumpus\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) BloodRumpus: Trade G3 Y3 Bloodrumpus\n\n10) SilentTitan: Trade Y1 B1 Silenttitan\n\n11) BloodRumpus: Build G1 Bloodrumpus\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) BloodRumpus: Discover G1 Bloodrumpus Y3 Regula\n\n14) SilentTitan: Discover B1 Silenttitan Y1 Sol\n\n15) BloodRumpus: Build Y2 Bloodrumpus\n\n16) SilentTitan: Discover B1 Silenttitan G1 Earth\n\n17) BloodRumpus: Build G2 Regula\n\n18) SilentTitan: Build Y2 Silenttitan\n\n19) BloodRumpus: Move Y2 Bloodrumpus Regula\n\n20) SilentTitan: Move Y1 Silenttitan Earth\n\n21) BloodRumpus: Move G1 Regula Sol\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Earth\nBuild Y3 Silenttitan\nBuild B2 Sol\n\n23) BloodRumpus: Move Y2 Regula Sol\n\n24) SilentTitan: Trade B2 R2 Sol\n\n25) BloodRumpus: Sacrifice Y2 Sol\nMove G1 Sol Regula\nDiscover G1 Regula R1 Vulcan\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) BloodRumpus: Build Y2 Bloodrumpus\n\n28) SilentTitan: Sacrifice Y2 Earth\nMove Y1 Earth Regula\nMove Y1 Regula Bloodrumpus\nCatastrophe Bloodrumpus Yellow\n\n\nHomeworlds Online (SDG# 20381)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.15, Ended: 2011.7.18\nParticipants: alexcobo (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 20383)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.17, Ended: 2011.8.10\nParticipants: Subhan64 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y2 B3 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Subhan64: Build G1 Subhan64\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Subhan64: Build G1 Subhan64\n\n7) goulo: Build G1 Goulo\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) goulo: Trade G1 R1 Goulo\n\n10) Subhan64: Build G1 Subhan64\n\n11) goulo: Discover R1 Goulo G3 Smeraldego\n\n12) Subhan64: Discover G1 Subhan64 B1 Bluebell\n\n13) goulo: Build R1 Smeraldego\n\n14) Subhan64: Discover G1 Subhan64 G1 Greengrass\n\n15) goulo: Build G2 Goulo\n\n16) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Bluebell\nBuild G2 Greengrass\nBuild G3 Bluebell\n\n17) goulo: Discover G2 Goulo Y3 Citronego\n\n18) Subhan64: Trade G2 R2 Bluebell\n\n19) goulo: Build G2 Goulo\n\n20) Subhan64: Sacrifice G2 Greengrass\nBuild G2 Greengrass\nBuild R2 Bluebell\n\n21) goulo: Move G2 Citronego Greengrass\nCatastrophe Greengrass G\n\n22) Subhan64: Sacrifice G1 Bluebell\nBuild Y1 Subhan64\n\n23) goulo: Build Y2 Goulo\n\n24) Subhan64: Sacrifice Y1 Subhan64\nMove R2 Bluebell Smeraldego\n\n25) goulo: Build R2 Smeraldego\nCatastrophe Smeraldego R\n\n26) Subhan64: Build G1 Bluebell\n\n27) goulo: Trade Y1 R1 Goulo\n\n28) Subhan64: Trade G1 Y1 Bluebell\n\n29) goulo: Discover G2 Goulo Y3 Citronego\n\n30) Subhan64: Move R2 Bluebell Citronego\n\n31) goulo: Sacrifice R1 Goulo\nAttack R2 Citronego\n\n32) Subhan64: Move G3 Bluebell Subhan64\n\n33) goulo: Build G1 Citronego\n\n34) Subhan64: Build G1 Subhan64\n\n35) goulo: Move G2 Citronego Bluebell\n\n36) Subhan64: Trade Y1 R1 Subhan64\n\n37) goulo: Build Y1 Goulo\n\n38) Subhan64: Trade G1 Y1 Subhan64\n\n39) goulo: Build G1 Bluebell\n\n40) Subhan64: Sacrifice G3 Subhan64\nBuild Y2 Subhan64\nBuild Y3 Bluebell\nBuild R1 Subhan64\n\n41) goulo: Sacrifice G2 Bluebell\nBuild Y3 Goulo\nBuild G1 Goulo\n\n42) Subhan64: Sacrifice Y2 Subhan64\nMove Y1 Bluebell Citronego\nMove Y1 Citronego Goulo\nCatastrophe Goulo Yellow\n\n43) goulo: Build G2 Goulo\n\n44) Subhan64: Sacrifice R1 Subhan64\nAttack G1 Bluebell\n\n45) goulo: Trade G2 Y2 Goulo\n\n46) Subhan64: Build G2 Bluebell\n\n47) goulo: Move G3 Goulo Citronego\n\n48) Subhan64: Trade G2 Y2 Bluebell\n\n49) goulo: Build G2 Goulo\n\n50) Subhan64: Move G1 Bluebell Subhan64\n\n51) goulo: Sacrifice Y2 Goulo\nMove G3 Citronego Bluebell\nMove G3 Bluebell Subhan64\n\n52) Subhan64: Build G2 Subhan64\n\n53) goulo: Sacrifice R2 Citronego\nAttack Y1 Subhan64\nAttack R1 Subhan64\n\n54) Subhan64: Trade G1 R1 Subhan64\n\n55) goulo: Attack R1 Subhan64\n\n56) Subhan64: Sacrifice Y2 Bluebell\nMove Y3 Bluebell Citronego\nMove Y3 Citronego Goulo\n\n57) goulo: Attack G2 Subhan64\n\tgoulo: I didn&#39;t anticipate that you might build g2 at your homeworld, so I&#39;m improvising. :)\n\tSubhan64: not a bad improvisation, I had slightly miscalculated on my plans as well!\r\n\n\n\tSubhan64: good game, thanks!\n\tgoulo: thanks, that was a good game indeed! Very tense race at the finish. I had a strong adrenalin sense of &quot;is now the time to pull the trigger and make the final homeworld attack? or am I overlooking something?&quot; Good interesting tension!\r\n\r\nA turn earlier I was tempted to send my G3 to your homeworld, then realized you had one response that would let you win first. So I built another ship, then sent it the turn later, and was promptly surprised by your building a green at your homeworld, which I&#39;d not considered. But it turned out lucky for me that that didn&#39;t work for you. :)\n\tSubhan64: yeah, I think if I had moved the Y2 home before making the trade for R1 I could have pulled it out, at least for a while, as I could then either have constructed another g ship or traded for 1, &amp; catastrophed all the green out of the sytem.  Would have left me pretty week\r\n\n\tSubhan64: &amp; if you&#39;d delayed a turn on moving into my home system I&#39;d have been in yours, &amp; the race would have been on!\r\n\n\tgoulo: yep, it was a question of delicate timing! it felt oddly like an endgame in Cannon when one decides it&#39;s time to ignore the threat against one&#39;s own town and race for the enemy town instead because one will win the race by a move.\n\nHomeworlds Online (SDG# 20338)\nStarted: 2011.7.19, Ended: 2011.8.14\nParticipants: SirRuthvenMurgatroyd (S), goblin981 (N)\nWinner: SirRuthvenMurgatroyd\n\n1) goblin981: Homeworld G3 B1 Y3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) goblin981: Build Y1 Goblin981\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) goblin981: Build Y1 Goblin981\n\n6) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n7) goblin981: Discover Y1 Goblin981 G2 Green\n\n8) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Yellow\n\n9) goblin981: Discover Y1 Goblin981 G2 Green2\n\n10) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G1 Yellow\nBuild G2 Yellow\nBuild G3 Sirruthvenmurgatroyd\n\n11) goblin981: Discover Y1 Green2 G3 Green3\n\n12) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n13) goblin981: Build Y2 Goblin981\n\n14) SirRuthvenMurgatroyd: Discover G2 Yellow Y2 Yellow2\n\n15) goblin981: Trade Y2 G2 Goblin981\n\n16) SirRuthvenMurgatroyd: Move G2 Yellow2 Green3\n\n17) goblin981: Build Y2 Green3\n\n18) SirRuthvenMurgatroyd: Sacrifice R1 Sirruthvenmurgatroyd\nAttack Y2N Green3\n\n19) goblin981: Build G1 Goblin981\n\n20) SirRuthvenMurgatroyd: Sacrifice Y2 Green3\nMove G1 Yellow Green\nMove G1 Green Goblin981\nCatastrophe Goblin981 G\n\n21) goblin981: Build Y2 Green3\n\n22) SirRuthvenMurgatroyd: Move G1 Yellow Goblin981\n\n23) goblin981: Move Y2 Green3 Goblin981\n\n24) SirRuthvenMurgatroyd: Trade G1 B1 Goblin981\n\n25) goblin981: Trade Y2 G2 Goblin981\n\n26) SirRuthvenMurgatroyd: Sacrifice G2 Green3\nBuild B1 Goblin981\nBuild B2 Goblin981\nCatastrophe Goblin981 B\n\n\nHomeworlds Online (SDG# 20402)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.20, Ended: 2011.7.27\nParticipants: ajo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ajo: Homeworld G3 Y2 R3 *\n\tajo: Let&#39;s see if this opening works...\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: Looks good\n\n4) ajo: Build R1 Ajo\n\n5) SilentTitan: Trade G3 R3 Silenttitan\n\n6) ajo: Discover R1 Ajo B1 Alpha\n\n7) SilentTitan: Build G1 Silenttitan\n\tajo: Well, we&#39;ve diverged from my predicted main variation already. So it&#39;s not working as well as I planned...\n\n8) ajo: Trade R1 G1 Alpha\n\tSilentTitan: lol.... battle plan never survives meeting the enemy.\n\n9) SilentTitan: Trade G1 Y1 Silenttitan\n\n10) ajo: Build R1 Ajo\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) ajo: Move R1 Ajo Alpha\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) ajo: Build G1 Alpha\n\tajo: BTW, here&#39;s how I *expected* the opening to go:\r\n(ST) build g1\r\n(AJO) build r1\r\n(ST) trade g3 y3\r\n(AJO) discover r1 ajo r1 Junk\r\n(ST) build g1\r\n(AJO) build r2 ajo\n\n15) SilentTitan: Discover Y1 Silenttitan G3 Sky\n\n16) ajo: Build G2 Alpha\n\n17) SilentTitan: Build Y2 Sky\n\tSilentTitan: that would have never happened my standard is to build g1 then trade g1 y1 then try to dominate the yellows from there. I&#39;m not going to try to let you have a free level 2 build unless I think I can do you out of something for it.  \n\n18) ajo: Trade G2 Y2 Alpha\n\n19) SilentTitan: Sacrifice Y2 Sky\nMove R3 Silenttitan Sky\nMove R3 Sky Alpha\n\tajo: Ah, I&#39;ll keep that in mind for our next game. ;) I usually expect people to immediately go for the color they don&#39;t have yet, particularly if it&#39;s not red. And an early y3 can really cut down your opponent&#39;s options. Anyway, I&#39;m not sure you&#39;re going to be able to dominate the yellows anymore...\n\n20) ajo: Trade Y2 R2 Alpha\n\n21) SilentTitan: Build Y2 Sky\n\tajo: Blecch. Well played... but possibly overextended. We&#39;re both horribly vulnerable right now, by my heuristics.\n\n22) ajo: Build R1 Alpha\nCatastrophe Alpha Red\n\tSilentTitan: hey... this is a clean game you keep your heuristics out of it.\r\n\n\tajo: Heh. Well, I guess I have to do this now...\n\n23) SilentTitan: Build G2 Silenttitan\n\n24) ajo: Build G2 Alpha\n\n25) SilentTitan: Sacrifice Y2 Sky\nDiscover G1 Silenttitan B3 Tempworld\nMove G1 Tempworld Alpha\nCatastrophe Alpha Green\n\n26) ajo: Build R1 Ajo\n\n27) SilentTitan: Build Y2 Sky\n\tSilentTitan: This is the most unusual game I&#39;ve played of this yet.\n\n28) ajo: Build R1 Ajo\n\n29) SilentTitan: Build Y2 Sky\n\n30) ajo: Discover R1 Ajo G1 Alpha\n\n31) SilentTitan: Discover Y2 Sky B1 Ground\n\n32) ajo: Build R2 Ajo\n\n33) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Ground\n\n34) ajo: Discover R2 Ajo B1 Beta\n\n35) SilentTitan: Trade Y3 G3 Ground\n\n36) ajo: Trade R2 G2 Beta\n\tajo: I think you&#39;re about to win. Starting without blue is definitely a hard way to start. :P\n\n37) SilentTitan: Build Y3 Ground\n\n38) ajo: Move R1 Ajo Beta\n\tSilentTitan: I have never won starting without blue. It is a real challenge.\n\n39) SilentTitan: Trade Y3 R3 Ground\n\n40) ajo: Build R2 Beta\n\n41) SilentTitan: Sacrifice G3 Ground\nBuild R2 Ground\nBuild R2 Ground\nBuild Y3 Ground\n\n\tajo: That&#39;s checkmate, I believe. Well played. I won&#39;t try that again. ;)\n\tSilentTitan: The weird part of this is... when we started I looked at your starting position and was shocked at what a poor position I was in, because you were going to have a 2nd level piece in a couple of moves.  I thought to myself ... I don&#39;t have a standard start against this setup, why haven&#39;t I seen this before.  now we know.\n\tajo: Those were my original thoughts, too. ;) I think your &quot;trade g3 r3&quot; on move 2 was the killer; if you hadn&#39;t done that, it might have worked a lot better for me.\n\tajo: One thing I have noticed in real-world games with the no-blue setup is: If you start without blue, your plan for the first few moves must *NOT* be &quot;build, build, move to a blue star, trade for blue, sacrifice to get blue at home&quot;. Getting blue is hard, and wastes too much time (at least 5 moves), compared to your opponent who&#39;s working on building up his fleet. I think if you start without blue, you need to have a plan for the first few moves like my &quot;get an r2 really early, then build a bunch of 2s&quot; and even then, it clearly backfires quite a lot. :)\n\nHomeworlds Online (SDG# 20401)\nStarted: 2011.7.20, Ended: 2011.8.12\nParticipants: sageinquisitor (S), SirRuthvenMurgatroyd (N)\nWinner: SirRuthvenMurgatroyd\n\n1) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n2) sageinquisitor: Homeworld G3 B2 Y3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) sageinquisitor: Build Y1 Sageinquisitor\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n6) sageinquisitor: Trade Y1 R1 Sageinquisitor\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) sageinquisitor: Build R1 Sageinquisitor\n\n9) SirRuthvenMurgatroyd: Build G1 Sol\n\tsageinquisitor: I&#39;m heading over to someone&#39;s house, I will be back in about 10 minutes if you want to keep playing at this pace.\n\n10) sageinquisitor: Discover R1 Sageinquisitor Y1 Darthto\n\n11) SirRuthvenMurgatroyd: Discover G1 Sol Y1 Yellow\n\n12) sageinquisitor: Move R1 Sageinquisitor Yellow\n\n13) SirRuthvenMurgatroyd: Move G1 Yellow Sageinquisitor\n\n\nHomeworlds Online (SDG# 20378)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.20, Ended: 2011.8.1\nParticipants: SilentTitan (S), sageinquisitor (N)\nWinner: SilentTitan\n\n1) sageinquisitor: Homeworld G3 B2 Y3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) sageinquisitor: Build Y1 Sageinquisitor\n\tSilentTitan: Howdy.....\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sageinquisitor: Trade Y1 R1 Sageinquisitor\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sageinquisitor: Build R1 Sageinquisitor\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) sageinquisitor: Build R2 Sageinquisitor\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) sageinquisitor: Discover R2 Sageinquisitor Y1 Grendel\n\n12) SilentTitan: Build Y2 Silenttitan\n\tsageinquisitor: howdy to u too\n\tsageinquisitor: howdy to u too\n\tsageinquisitor: I&#39;m heading over to someone&#39;s house, I will be back in about 10 minutes if you want to keep playing at this pace.\n\n13) sageinquisitor: Build R2 Sageinquisitor\n\tSilentTitan: sure... although it will be off and on because I&#39;m setting up to export a bunch of virtual servers. \n\tsageinquisitor: sounds good\n\n14) SilentTitan: Discover Y2 Silenttitan R3 Gol\n\n15) sageinquisitor: Build Y2 Sageinquisitor\n\n16) SilentTitan: Discover Y1 Silenttitan R3 Ley\n\n17) sageinquisitor: Discover R2 Sageinquisitor G1 Helloworldlol\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Gol\nBuild Y3 Ley\nBuild Y3 Silenttitan\n\n19) sageinquisitor: Move Y2 Sageinquisitor Helloworldlol\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) sageinquisitor: Build R2 Helloworldlol\n\n22) SilentTitan: Discover Y2 Gol B1 Sand\n\n\nHomeworlds Online (SDG# 20411)\nStarted: 2011.7.22, Ended: 2011.9.19\nParticipants: daselva (S), SirRuthvenMurgatroyd (N)\nWinner: daselva\n\n1) SirRuthvenMurgatroyd: Homeworld B2 Y3 G3\n\n2) daselva: Homeworld B1 R2 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) daselva: Build G1 Daselva\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) daselva: Build Y1 Daselva\n\n9) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse\n\n10) daselva: Trade Y1 R1 Daselva\n\n11) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n12) daselva: Build Y1 Daselva\n\n13) SirRuthvenMurgatroyd: Build G1 Betelgeuse\n\n14) daselva: Build G2 Daselva\n\n15) SirRuthvenMurgatroyd: Move G1 Betelgeuse Daselva\n\n16) daselva: Discover G2 Daselva R3 S2\n\n17) SirRuthvenMurgatroyd: Sacrifice R3 Sirruthvenmurgatroyd\nAttack Y1S Daselva\nAttack Y1S Daselva\nAttack R1S Daselva\n\n18) daselva: Attack Y1 Daselva\n\n19) SirRuthvenMurgatroyd: Attack Y1S Daselva\n\n20) daselva: Attack R1 Daselva\n\n21) SirRuthvenMurgatroyd: Attack R1S Daselva\n\n22) daselva: Attack G1 Daselva\n\n23) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n24) daselva: Trade G1 Y1 Daselva\n\n25) SirRuthvenMurgatroyd: Attack Y1S Daselva\n\n26) daselva: Attack Y1 Daselva\n\n27) SirRuthvenMurgatroyd: Trade Y1 B1 Daselva\n\n28) daselva: Attack Y1 Daselva\n\n29) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild B1 Daselva\nBuild B2 Daselva\nCatastrophe Daselva B\n\n30) daselva: Attack R1 Daselva\n\n31) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n32) daselva: Sacrifice Y1 Daselva\nDiscover G2 S2 Y1 S3\n\n33) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n34) daselva: Move G2 S3 Sirruthvenmurgatroyd\n\n35) SirRuthvenMurgatroyd: Build B1 Sirruthvenmurgatroyd\n\n36) daselva: Trade G2 R2 Sirruthvenmurgatroyd\n\n37) SirRuthvenMurgatroyd: Trade B1 R1 Sirruthvenmurgatroyd\n\n38) daselva: Attack R1 Sirruthvenmurgatroyd\n\n39) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n40) daselva: Attack G1 Sirruthvenmurgatroyd\n\n41) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n42) daselva: Build G2 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd G\n\n43) SirRuthvenMurgatroyd: Sacrifice G1 Betelgeuse\nBuild B1 Sirruthvenmurgatroyd\n\n44) daselva: Sacrifice R2 Sirruthvenmurgatroyd\nAttack B1 Sirruthvenmurgatroyd\nAttack B1 Sirruthvenmurgatroyd\n\n\tdaselva: thank you for playing\n\nHomeworlds Online (SDG# 20444)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.25, Ended: 2011.7.27\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\tzoltar: Hi!\n\tts52: Hi! Have a good game.\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Trade G1 R1 Ts52\n\n7) zoltar: Build Y1 Zoltar\n\n8) ts52: Build R1 Ts52\n\n9) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n10) ts52: Build R2 Ts52\n\n11) zoltar: Build Y1 Greenbelt\n\n12) ts52: Discover R2 Ts52 B1 Gonzo\n\n13) zoltar: Build Y2 Greenbelt\n\n14) ts52: Build G1 Ts52\n\n15) zoltar: Build Y2 Zoltar\n\n16) ts52: Move G1 Ts52 Gonzo\n\n17) zoltar: Discover Y2 Greenbelt B1 Blueberry\n\n18) ts52: Build R2 Ts52\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\nBuild Y3 Blueberry\n\n20) ts52: Discover R2 Ts52 G1 Robin\n\n21) zoltar: Trade Y3 G3 Zoltar\n\n22) ts52: Sacrifice G3 Ts52\nBuild R2 Robin\nBuild R3 Ts52\nBuild R3 Gonzo\n\tzoltar: Yellow Alert!\n\tts52: Wow, nice move\n\n23) zoltar: Trade Y3 R3 Blueberry\n\n24) ts52: Trade R3 Y3 Gonzo\n\tzoltar: Thanks!\n\n25) zoltar: Move R3 Blueberry Ts52\nCatastrophe Ts52 R\n\n\tzoltar: Good game! You left yourself vulnerable to the &#39;bluebird&#39; checkmate.\n\tts52: Whoops. Should&#39;ve seen that coming....\r\nThanks for the game.\n\nHomeworlds Online (SDG# 20441)\nStarted: 2011.7.26, Ended: 2011.8.4\nParticipants: wmreed (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wmreed: Homeworld B3 G1 Y3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\twmreed: Thank you. You too!\n\n4) wmreed: B Y1 Wmreed\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wmreed: T Y1 R1 Wmreed\n\n7) ts52: Build G1 Ts52\n\n8) wmreed: B Y1 Wmreed\n\n9) ts52: Build G2 Grover\n\n10) wmreed: T Y1 B1 Wmreed\n\n11) ts52: Build G2 Grover\n\n12) wmreed: B Y1 Wmreed\n\n13) ts52: Trade G2 R2 Grover\n\n14) wmreed: T Y3 G3 Wmreed\n\n15) ts52: Build G2 Grover\n\n16) wmreed: B R1 Wmreed\n\n17) ts52: Trade G2 Y2 Grover\n\n18) wmreed: D R1 Wmreed G2 Xander\n\n19) ts52: Move R2 Grover Xander\n\n20) wmreed: B Y1 Wmreed\n\n21) ts52: Attack R1 Xander\n\n22) wmreed: D Y1 Wmreed B2 Willow\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n24) wmreed: B Y2 Wmreed\n\n25) ts52: Move G2 Grover Willow\n\n26) wmreed: D Y1 Willow B1 Cordelia\n\n27) ts52: Trade G3 Y3 Grover\n\n28) wmreed: M G3 Wmreed Willow\n\n29) ts52: Trade G3 R3 Ts52\n\n30) wmreed: S Y1 Wmreed\nM G3 Willow Wmreed\n\n31) ts52: Sacrifice G2 Ts52\nBuild G2 Willow\nBuild G3 Ts52\n\n32) wmreed: T G3 B3 Wmreed\n\n33) ts52: Sacrifice Y2 Grover\nMove G2 Willow Wmreed\nMove G2 Willow Wmreed\n\n\twmreed: Why waste time. I won&#39;t come back from the catastrophe. Well played!\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 20455)\nVariants: &quot;Hard time&quot;\nStarted: 2011.7.27, Ended: 2011.8.7\nParticipants: AdamBadura (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) AdamBadura: Homeworld G1 B2 Y3\n\tzoltar: Hi, gl, &amp; hf!\n\n3) zoltar: Build G1 Zoltar\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) zoltar: Build G1 Zoltar\n\n6) AdamBadura: Build Y1 Adambadura\n\n7) zoltar: Trade G3 Y3 Zoltar\n\n8) AdamBadura: Discover Y1 Adambadura G3 Shipyard\n\n9) zoltar: Build G2 Zoltar\n\n10) AdamBadura: Build Y1 Adambadura\n\n11) zoltar: Trade G2 R2 Zoltar\n\n12) AdamBadura: Build Y2 Shipyard\n\n13) zoltar: Move R2 Zoltar Shipyard\n\n14) AdamBadura: Sacrifice Y1 Shipyard\nDiscover Y2 Shipyard G2 Runaways\n\n15) zoltar: Build G2 Zoltar\n\n16) AdamBadura: Trade Y1 R1 Adambadura\n\n17) zoltar: Trade G2 Y2 Zoltar\n\n18) AdamBadura: Build R1 Adambadura\n\n19) zoltar: Move Y2 Zoltar Shipyard\n\n20) AdamBadura: Discover R1 Adambadura Y3 Highway\n\n21) zoltar: Build R2 Shipyard\n\n22) AdamBadura: Build R2 Adambadura\n\n23) zoltar: Discover R2 Shipyard G2 Greenland\n\n24) AdamBadura: Trade R1 B1 Adambadura\n\n25) zoltar: Build G2 Zoltar\n\n26) AdamBadura: Trade Y3 G3 Adambadura\n\n27) zoltar: Discover G2 Zoltar R3 Redgiant\n\n28) AdamBadura: Discover B1 Adambadura G3 Drydocks\n\n29) zoltar: Discover G1 Zoltar Y3 Mellowyellow\n\n30) AdamBadura: Sacrifice G3 Adambadura\nBuild R1 Highway\nBuild R3 Highway\nBuild R3 Adambadura\n\n31) zoltar: Sacrifice G2 Redgiant\nBuild G2 Mellowyellow\nBuild G3 Zoltar\n\tAdamBadura: Sorry for the delay. The situation got complicated so I needed more time to think yet I was also more distracted by other things. It is still looking bad for me... :(\n\n32) AdamBadura: Sacrifice Y2 Runaways\nMove R1 Highway Zoltar\nMove R1 Highway Zoltar\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G2 Mellowyellow\nBuild R3 Shipyard\nBuild G3 Zoltar\n\n34) AdamBadura: Move R3 Highway Zoltar\n\tzoltar: Very strange game: I&#39;ve never played with a &#39;short&#39; symmetrical system before, at least not since I was first learning the game.\n\n35) zoltar: Sacrifice Y3 Zoltar\nMove R2 Shipyard Adambadura\nMove R3 Shipyard Adambadura\nMove G2 Mellowyellow Adambadura\nCatastrophe Zoltar R\nCatastrophe Adambadura R\n\tAdamBadura: I didn&#39;t intent to play that way. It is usially worse for the second player. It was my mistake.\n\n\tzoltar: Ah, ok. I thought you had some clever opening trap ready to spring. I&#39;m terrible at openings, but am at my best with endgame tactics, if I survive that far into the game!\n\nHomeworlds Online (SDG# 20491)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.2, Ended: 2011.8.26\nParticipants: mneme (S), SilentTitan (N)\nWinner: mneme\n\n1) SilentTitan: Homeworld R2 B1 G3\n\tSilentTitan: congrats on your medallion.\n\n2) mneme: Homeworld G3 R1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) mneme: Build B1 Mneme\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) mneme: Build B1 Mneme\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) mneme: Trade B3 Y3 Mneme\n\tmneme: Thanks!\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) mneme: Build B2 Mneme\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) mneme: Discover B2 Mneme G2 Pattern\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) mneme: Build B2 Pattern\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Pluto\n\n16) mneme: Build B2 Mneme\n\n17) SilentTitan: Discover G1 Silenttitan B3 Sink\n\n18) mneme: Trade B2 Y2 Pattern\n\n19) SilentTitan: Build Y2 Silenttitan\n\n20) mneme: Discover B2 Pattern Y3 Jacinth\n\n21) SilentTitan: Trade Y2 B2 Silenttitan\n\n22) mneme: Trade B2 G2 Jacinth\n\n23) SilentTitan: Discover B2 Silenttitan G3 Egg\n\n24) mneme: Trade B2 R2 Mneme\n\n25) SilentTitan: Build Y2 Silenttitan\n\n26) mneme: Move Y2 Pattern Sink\n\n27) SilentTitan: Trade Y2 R2 Silenttitan\n\n28) mneme: Build R1 Mneme\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pluto\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n30) mneme: Sacrifice R1 Mneme\nAttack G1 Sink\n\n31) SilentTitan: Sacrifice B2 Egg\nTrade Y1 R1 Sol\nTrade Y2 G2 Sol\n\n32) mneme: Discover R2 Mneme G2 Tracer\n\n33) SilentTitan: Trade Y1 R1 Pluto\n\n34) mneme: Build R3 Tracer\n\n35) SilentTitan: Sacrifice G2 Sol\nBuild R3 Pluto\nBuild R3 Sol\n\n36) mneme: Sacrifice B1 Mneme\nTrade R3 G3 Tracer\n\n37) SilentTitan: Trade R3 G3 Pluto\n\n38) mneme: Build R3 Tracer\n\n39) SilentTitan: Sacrifice Y2 Pluto\nMove R1 Pluto Tracer\nMove R1 Sol Tracer\nCatastrophe Tracer Red\n\n40) mneme: Build G1 Sink\n\n41) SilentTitan: Trade Y1 G1 Silenttitan\n\n42) mneme: Trade G1 R1 Sink\n\n43) SilentTitan: Build G1 Pluto\n\n44) mneme: Build R1 Sink\n\n45) SilentTitan: Trade R2 Y2 Silenttitan\n\n46) mneme: Build Y1 Sink\n\n47) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Sol Tracer\nMove R3 Tracer Sink\n\n48) mneme: Build R2 Sink\nCatastrophe Sink R\n\n49) SilentTitan: Trade G1 Y1 Pluto\n\n50) mneme: Trade Y2 R2 Sink\n\n51) SilentTitan: Sacrifice G3 Pluto\nBuild Y1 Pluto\nBuild Y2 Pluto\nBuild Y2 Silenttitan\n\n52) mneme: Build Y2 Sink\n\tmneme: I think that&#39;s your first (only) blunder this game.\n\tSilentTitan: yup... comes from trying to rush the turn... I had company coming in from South Carolina for a week.   That&#39;s what the delay was all about.  Sorry about that\r\n\n\tSilentTitan: yup... comes from trying to rush the turn... I had company coming in from South Carolina for a week.   That&#39;s what the delay was all about.  Sorry about that\r\n\n\tSilentTitan: lol... obviously I had already hit submit.\n\n53) SilentTitan: Trade Y2 R2 Pluto\n\n54) mneme: Sacrifice Y3 Mneme\nMove Y2 Sink Silenttitan\nMove Y1 Sink Silenttitan\nMove G2 Jacinth Silenttitan\nCatastrophe Silenttitan Y\n\n\tmneme: gg\n\tSilentTitan: oh.. yup... thanks for the challenge.\n\tmneme: Thanks! except for the (few) blunders, you played a solid game!\n\nHomeworlds Online (SDG# 20414)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2011.8.3, Ended: 2011.8.7\nParticipants: thejackdiaz (S), sageinquisitor (N)\nWinner: thejackdiaz\n\n\nHomeworlds Online (SDG# 20547)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.8, Ended: 2011.8.11\nParticipants: ajo (S), zoltar (N)\nWinner: ajo\n\n\tzoltar: I didn&#39;t know I was in a game, but I was just informed that I resigned!\n\nHomeworlds Online (SDG# 20572)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.10, Ended: 2011.8.17\nParticipants: Danner (S), Subhan64 (N)\nWinner: Danner\n\n1) Subhan64: Homeworld Y1 B2 G3\n\tDanner: Hi! Have a nice game!\n\n2) Danner: Homeworld B1 R2 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) Danner: Build G1 Danner\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Danner: Trade G1 Y1 Danner\n\n7) Subhan64: Build Y2 Subhan64\n\n8) Danner: Build Y2 Danner\n\n9) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n10) Danner: Discover Y1 Danner B3 Gamall\n\n11) Subhan64: Build G1 Subhan64\n\tSubhan64: This was very nearly a very short game!\n\tDanner: :)\n\n12) Danner: Build G1 Danner\n\n13) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n14) Danner: Discover G1 Danner Y3 Garrett\n\n15) Subhan64: Discover G3 Subhan64 Y3 Tweety\n\n16) Danner: Build G1 Danner\n\n17) Subhan64: Build Y2 Kermit\n\n18) Danner: Sacrifice G1 Garrett\nBuild Y3 Gamall\n\n19) Subhan64: Build G1 Bigbird\n\n20) Danner: Sacrifice Y2 Danner\nMove Y1 Gamall Subhan64\nMove Y3 Gamall Subhan64\nCatastrophe Subhan64 Y\n\n\tSubhan64: good game, thanks!\r\n\n\tDanner: thank you, too :)\n\nHomeworlds Online (SDG# 20577)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.11, Ended: 2011.8.31\nParticipants: zoltar (S), goulo (N)\nWinner: zoltar\n\n1) goulo: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) zoltar: Build G1 Zoltar\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goulo: Build G1 Goulo\n\n8) zoltar: Build G1 Zoltar\n\n9) goulo: Trade G1 R1 Goulo\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) goulo: Build R2 Goulo\n\n12) zoltar: Build R2 Zoltar\n\n13) goulo: Discover R1 Goulo Y3 Citronego\n\n14) zoltar: Trade R2 Y2 Zoltar\n\n15) goulo: Build G1 Goulo\n\n16) zoltar: Discover R1 Zoltar G2 Greenarrow\n\n17) goulo: Move G1 Goulo Citronego\n\n18) zoltar: Move Y1 Zoltar Greenarrow\n\n19) goulo: Build G1 Goulo\n\n20) zoltar: Build Y1 Zoltar\n\n21) goulo: Build Y2 Goulo\n\n22) zoltar: Discover Y2 Zoltar B2 Bluebeetle\n\n23) goulo: Discover Y1 Goulo G3 Smeraldego\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenarrow\nBuild Y3 Bluebeetle\nBuild Y3 Zoltar\n\n25) goulo: Discover R1 Citronego G2 Smeraldo\n\tgoulo: Ouch!\n\n26) zoltar: Trade Y2 G2 Bluebeetle\n\n27) goulo: Build Y2 Smeraldego\n\n28) zoltar: Move Y3 Bluebeetle Citronego\n\n29) goulo: Move Y1 Smeraldego Bluebeetle\n\n30) zoltar: Trade Y1 G1 Zoltar\n\n31) goulo: Sacrifice Y2 Goulo\nMove Y1 Bluebeetle Citronego\nMove G1 Citronego Greenarrow\n\n32) zoltar: Build G3 Bluebeetle\n\n33) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y1 Citronego\nBuild Y2 Smeraldego\nCatastrophe Citronego Y\n\n34) zoltar: Attack G1 Greenarrow\n\n35) goulo: Discover Y2 Smeraldego R2 Rubeno\n\n36) zoltar: Build R3 Greenarrow\n\n37) goulo: Build R3 Smeraldo\n\n38) zoltar: Move R3 Greenarrow Smeraldego\n\n39) goulo: Sacrifice Y2 Smeraldego\nMove R2 Goulo Smeraldego\nDiscover R2 Smeraldego Y2 Citrono\n\n40) zoltar: Sacrifice G3 Bluebeetle\nBuild R3 Greenarrow\nBuild G3 Bluebeetle\nBuild Y1 Zoltar\n\n41) goulo: Sacrifice Y2 Rubeno\nMove R3 Smeraldo Zoltar\nMove R1 Smeraldo Zoltar\n\n42) zoltar: Attack R3 Zoltar\n\n43) goulo: Sacrifice G1 Goulo\nBuild R2 Zoltar\nCatastrophe Zoltar R\n\n44) zoltar: Sacrifice G3 Bluebeetle\nBuild G1 Zoltar\nBuild G2 Zoltar\nBuild G3 Bluebeetle\n\n45) goulo: Discover R2 Citrono Y3 Citronego\n\n46) zoltar: Sacrifice Y3 Zoltar\nMove G1 Zoltar Goulo\nMove G2 Zoltar Goulo\nMove G1 Zoltar Goulo\nCatastrophe Goulo G\n\tzoltar: good game.\n\tgoulo: congrats - thanks for the game!\n\n\nHomeworlds Online (SDG# 20586)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.12, Ended: 2011.9.7\nParticipants: ajo (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) ajo: Homeworld Y3 B2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tajo: Howdy.\n\n4) ajo: Build G1 Ajo\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) ajo: Trade G1 R1 Ajo\n\n7) TwoShort: Build Y1 Twoshort\n\n8) ajo: Build R1 Ajo\n\n9) TwoShort: Build Y1 Twoshort\n\n10) ajo: Build R2 Ajo\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) ajo: Discover R2 Ajo B1 Alpha\n\n13) TwoShort: Build Y2 Twoshort\n\n14) ajo: Sacrifice G3 Ajo\nBuild R2 Alpha\nBuild R2 Alpha\nBuild R3 Ajo\n\n15) TwoShort: Discover Y1 Twoshort Y2 Yellonia\n\n16) ajo: Trade R3 G3 Ajo\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Yellonia\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n18) ajo: Build R3 Ajo\n\n19) TwoShort: Discover Y2 Yellonia G1 Greenland\n\n20) ajo: Move R3 Ajo Greenland\n\n21) TwoShort: Discover Y2 Greenland B3 Bluestar\n\n22) ajo: Build R3 Ajo\n\n23) TwoShort: Trade Y1 G1 Twoshort\n\n24) ajo: Trade R1 Y1 Ajo\n\n25) TwoShort: Trade Y3 R3 Twoshort\n\n26) ajo: Sacrifice Y1 Ajo\nMove R2 Alpha Bluestar\n\n27) TwoShort: Sacrifice Y2 Bluestar\nMove Y3 Grogar Alpha\nDiscover Y1 Grogar Y3 Yolonda\n\n28) ajo: Trade R2 Y2 Bluestar\n\n29) TwoShort: Discover Y1 Yolonda Y1 Yoyodyne\n\n30) ajo: Move Y2 Bluestar Greenland\n\n31) TwoShort: Build Y3 Twoshort\n\n32) ajo: Build R1 Greenland\n\n33) TwoShort: Sacrifice R3 Twoshort\nAttack R2 Alpha\nAttack R2 Alpha\nPass\n\n34) ajo: Trade R3 B3 Ajo\n\n35) TwoShort: Build G1 Twoshort\n\n36) ajo: Build G2 Ajo\n\tajo: For some reason, &quot;trade r3 b3&quot; felt like a really weird move. Like, &quot;waaait, that can&#39;t be right, can it?&quot; :) But I think it&#39;s what I want to do.\n\n37) TwoShort: Trade G1 B1 Twoshort\n\n38) ajo: Move B3 Ajo Yoyodyne\n\n39) TwoShort: Discover Y1 Yoyodyne B2 Bluonia\n\n40) ajo: Move B3 Yoyodyne Yellonia\n\n41) TwoShort: Discover Y1 Yellonia G1 Grogar\n\n42) ajo: Sacrifice G2 Ajo\nBuild B1 Yellonia\nBuild G2 Ajo\n\n43) TwoShort: Build G2 Twoshort\n\n44) ajo: Move B3 Yellonia Grogar\n\n45) TwoShort: Discover Y1 Grogar R2 Rover\n\n46) ajo: Build R3 Ajo\n\n47) TwoShort: Move R2 Alpha Yellonia\n\n48) ajo: Sacrifice Y2 Greenland\nMove R3 Greenland Bluonia\nMove B3 Grogar Yellonia\n\tajo: Well, thanks. :)\n\n49) TwoShort: Sacrifice Y3 Alpha\nDiscover G2 Twoshort Y2 Yolonda\nDiscover R2 Yellonia Y3 Yonderboy\nDiscover Y1 Bluonia Y1 Yoyodyne\n\n50) ajo: Move B3 Yellonia Twoshort\n\n51) TwoShort: Attack B3 Twoshort\n\tajo: Ah, I see. You&#39;re trying to overwhelm my circuits with complexity. ;)\n\n52) ajo: Move B1 Yellonia Twoshort\nCatastrophe Twoshort Blue\n\n53) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Rover\nBuild Y2 Twoshort\n\tajo: And it&#39;s working. ;p\n\n54) ajo: Move G2 Ajo Yoyodyne\n\n55) TwoShort: Move Y1 Yoyodyne Yonderboy\n\n56) ajo: Build R3 Greenland\n\n57) TwoShort: Trade R2 B2 Alpha\n\n58) ajo: Trade R3 G3 Bluonia\n\n59) TwoShort: Sacrifice B2 Alpha\nTrade Y2 G2 Rover\nTrade G1 B1 Twoshort\n\n60) ajo: Build G1 Bluonia\n\n61) TwoShort: Build Y2 Rover\n\n62) ajo: Trade G1 B1 Bluonia\n\n63) TwoShort: Sacrifice G2 Rover\nBuild B1 Twoshort\nBuild B2 Twoshort\n\n64) ajo: Sacrifice B1 Bluonia\nTrade R3 B3 Greenland\n\n65) TwoShort: Move B1 Twoshort Ajo\n\n66) ajo: Move R1 Ajo Twoshort\n\tajo: You&#39;re making this very difficult... ;)\n\n67) TwoShort: Attack R1 Twoshort\n\tTwoShort: And here I&#39;ve been thinking that you were making this very difficult for the last 8 turns or so :) (Before that I just thought I was losing) A yellow monopoly ought to be a walk in the park, and only now am I confident enough to comment on it without fear of jinxing myself :)  I&#39;m still worried I&#39;m missing some way you can stop me, but I don&#39;t see it, so...\n\n68) ajo: Move G2 Yoyodyne Rover\n\tajo: Ah, yes, it does kind of look like I just lost, doesn&#39;t it? Phooey. :p  I saw the yellow monopoly, but I thought I still had a few turns&#39; breathing room. Besides, I was irrationally stuck on the idea that you&#39;d do yellow first and break your yellow monopoly.\n\n69) TwoShort: Attack G2 Rover\n\n70) ajo: Move R3 Ajo Twoshort\n\n71) TwoShort: Sacrifice R1 Twoshort\nAttack R3 Twoshort\n\n\tajo: I had an escape if you made the wrong move there, but you didn&#39;t make the wrong move. Good game. :)\n\nHomeworlds Online (SDG# 20599)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.14, Ended: 2011.8.25\nParticipants: BloodRumpus (S), kingsamj (N)\nWinner: BloodRumpus\n\n1) kingsamj: Homeworld G3 B2 Y3\n\n2) BloodRumpus: Homeworld Y1 B2 G3\n\n3) kingsamj: Build Y1 Kingsamj\n\n4) BloodRumpus: Build G1 Bloodrumpus\n\n5) kingsamj: Trade Y1 G1 Kingsamj\n\n6) BloodRumpus: Trade G3 Y3 Bloodrumpus\n\n7) kingsamj: Discover G1 Kingsamj B1 Avalon\n\n8) BloodRumpus: Build Y1 Bloodrumpus\n\n9) kingsamj: Build Y1 Kingsamj\n\n10) BloodRumpus: Trade Y1 R1 Bloodrumpus\n\n11) kingsamj: Build Y1 Kingsamj\n\n12) BloodRumpus: Build G1 Bloodrumpus\n\n13) kingsamj: Trade Y1 R1 Kingsamj\n\n14) BloodRumpus: Discover G1 Bloodrumpus G3 Sarkovy\n\n15) kingsamj: Build G2 Avalon\n\n16) BloodRumpus: Build G2 Bloodrumpus\n\n17) kingsamj: Trade G2 R2 Avalon\n\n18) BloodRumpus: Build G2 Bloodrumpus\n\n19) kingsamj: Build G2 Avalon\n\n20) BloodRumpus: Sacrifice G2 Bloodrumpus\nBuild G2 Sarkovy\nBuild G3 Bloodrumpus\n\n21) kingsamj: Build Y1 Kingsamj\n\n22) BloodRumpus: Trade G1 B1 Bloodrumpus\n\n23) kingsamj: Build G1 Avalon\n\n24) BloodRumpus: Sacrifice B1 Bloodrumpus\nTrade G2 Y2 Sarkovy\n\n25) kingsamj: Trade G2 Y2 Avalon\n\n26) BloodRumpus: Sacrifice Y3 Bloodrumpus\nMove Y2 Sarkovy Avalon\nMove Y2 Avalon Kingsamj\nDiscover G1 Sarkovy B1 Rigel\nCatastrophe Kingsamj Y\n\n27) kingsamj: Move Y2 Avalon Kingsamj\n\n28) BloodRumpus: Build G2 Rigel\n\n29) kingsamj: Trade G1 Y1 Avalon\n\n30) BloodRumpus: Trade G1 Y1 Rigel\n\n31) kingsamj: Build Y2 Kingsamj\n\n32) BloodRumpus: Discover G2 Bloodrumpus Y3 Sirius\n\n33) kingsamj: Move R2 Avalon Sirius\n\n34) BloodRumpus: Sacrifice R1 Bloodrumpus\nAttack R2 Sirius\n\n35) kingsamj: Move Y2 Kingsamj Avalon\n\n36) BloodRumpus: Move G2 Sirius Avalon\n\n37) kingsamj: Sacrifice R1 Kingsamj\nAttack G2 Avalon\n\n38) BloodRumpus: M G2 Rigel Kingsamj\n\n39) kingsamj: Trade Y2 R2 Kingsamj\n\n40) BloodRumpus: Sacrifice R2 Sirius\nAttack R2 Kingsamj\nPass\n\n\nHomeworlds Online (SDG# 20608)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.17, Ended: 2011.10.23\nParticipants: fnord (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) fnord: Homeworld Y1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) fnord: Build G1 Fnord\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) fnord: Discover G1 Fnord B2 Eris\n\n7) Remneb: Build G1 Remneb\n\n8) fnord: Build G1 Eris\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) fnord: Trade G1 R1 Eris\n\n11) Remneb: Discover R1 Remneb Y3 Sirius\n\n12) fnord: Build G1 Fnord\n\n13) Remneb: Build Y1 Remneb\n\n14) fnord: Build R2 Eris\n\n15) Remneb: Build Y2 Remneb\n\n16) fnord: Trade R2 Y2 Eris\n\n17) Remneb: Move Y2 Remneb Sirius\n\n18) fnord: Build R2 Eris\n\n19) Remneb: Build G1 Remneb\n\n20) fnord: Build G2 Fnord\n\n21) Remneb: Move G1 Remneb Sirius\n\n22) fnord: Trade G2 R2 Fnord\n\n23) Remneb: Build G2 Remneb\n\n24) fnord: Discover G1 Fnord Y2 Discord\n\n25) Remneb: Build Y3 Remneb\n\n26) fnord: Build Y3 Eris\n\n27) Remneb: Sacrifice Y3 Remneb\nMove Y2 Sirius Discord\nMove G1 Sirius Discord\nMove R1 Sirius Discord\n\n28) fnord: Discover G1 Discord B3 Chao\n\n29) Remneb: Build G2 Discord\n\n30) fnord: Build G2 Chao\n\n31) Remneb: Sacrifice Y2 Discord\nMove G1 Discord Chao\nMove G2 Discord Chao\nCatastrophe Chao G\n\n32) fnord: Sacrifice Y2 Eris\nMove R2 Eris Fnord\nMove R2 Fnord Discord\n\n33) Remneb: Discover R1 Discord Y3 Zarkon\n\n34) fnord: Build Y2 Eris\n\n35) Remneb: Discover Y1 Remneb G3 Altar\n\n\tfnord: My apologies for abandoning this game.  I was about to be laid off, and focussed on work and finding a new job, and forgot about the site until recently.\n\tRemneb: No problem.\n\nHomeworlds Online (SDG# 20429)\nStarted: 2011.8.18, Ended: 2011.9.10\nParticipants: SirRuthvenMurgatroyd (S), lorgar (N)\nWinner: SirRuthvenMurgatroyd\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) lorgar: Discover G1 Lorgar B1 Celeron\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) lorgar: Build G1 Celeron\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) lorgar: Trade G1 R1 Celeron\n\n10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20507)\nVariants: &quot;No undo&quot;\nStarted: 2011.8.18, Ended: 2011.10.14\nParticipants: ajo (S), lorgar (N)\nWinner: ajo\n\n1) lorgar: Homeworld B3 G1 R3\n\n2) ajo: Homeworld Y2 B3 G3\n\n3) lorgar: Build R1 Lorgar\n\n4) ajo: Build G1 Ajo\n\n5) lorgar: Trade R1 G1 Lorgar\n\n6) ajo: Build G2 Ajo\n\n7) lorgar: Build R1 Lorgar\n\n8) ajo: Trade G2 R2 Ajo\n\n9) lorgar: Trade R1 Y1 Lorgar\n\n10) ajo: Discover G1 Ajo B1 Alpha\n\n11) lorgar: Discover G1 Lorgar B2 Barrabas\n\n12) ajo: Build G2 Ajo\n\n13) lorgar: Build G2 Barrabas\n\n14) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\n\n15) lorgar: Build G3 Barrabas\n\n16) ajo: Discover G2 Ajo B1 Beta\n\n17) lorgar: Trade G2 R2 Barrabas\n\n18) ajo: Sacrifice G3 Alpha\nBuild G2 Alpha\nBuild G3 Beta\nBuild R1 Ajo\n\n19) lorgar: Build R1 Barrabas\n\n20) ajo: Trade G3 Y3 Beta\n\n21) lorgar: Sacrifice Y1 Lorgar\nDiscover G1 Barrabas G3 Safe\n\n22) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y1 Beta\nBuild Y1 Beta\n\n23) lorgar: Trade R1 Y1 Barrabas\n\n24) ajo: Sacrifice Y1 Beta\nDiscover G1 Alpha B2 Gamma\n\n25) lorgar: Build Y1 Barrabas\n\n26) ajo: Move Y3 Beta Safe\n\n27) lorgar: Build R1 Barrabas\n\tajo: I just noticed your time has been up for 3 days. I&#39;ll give you another 3 days from this message, and then if you&#39;re still MIA, I&#39;ll &quot;Force Surrender&quot;.\n\tajo: I don&#39;t think either of us is clearly in a winning or losing position yet, btw.\n\n28) ajo: Sacrifice G2 Alpha\nBuild G2 Gamma\nBuild Y2 Beta\n\n29) lorgar: Move Y1 Barrabas Safe\n\n30) ajo: Sacrifice R2 Ajo\nAttack Y1 Safe\nAttack G1 Safe\n\n31) lorgar: Move G3 Barrabas Beta\n\n32) ajo: Sacrifice Y2 Beta\nMove G2 Beta Gamma\nMove G1 Gamma Lorgar\n\n33) lorgar: Sacrifice R1 Barrabas\nAttack Y1S Beta\n\n34) ajo: Sacrifice Y1 Safe\nMove G2 Gamma Lorgar\n\n35) lorgar: Build Y1 Beta\n\n36) ajo: Sacrifice G2 Gamma\nBuild G2 Lorgar\nBuild Y2 Safe\nCatastrophe Lorgar Green\n\n37) lorgar: Trade Y1 G1 Beta\n\n38) ajo: Discover Y2 Safe B1 Midway\n\n39) lorgar: Discover R2 Barrabas B1 Macteanimo\n\n40) ajo: Trade G2 B2 Ajo\n\n41) lorgar: Trade R2 B2 Macteanimo\n\n42) ajo: Discover B2 Ajo G1 Factor\n\n43) lorgar: Move Y1 Barrabas Beta\n\n44) ajo: Build G2 Ajo\n\n45) lorgar: Trade B2 G2 Macteanimo\n\n46) ajo: Sacrifice G2 Ajo\nBuild B2 Factor\nBuild B2 Factor\n\n47) lorgar: Move G1 Beta Safe\n\tajo: I believe that&#39;s checkmate. Good game!\n\n48) ajo: Sacrifice Y3 Safe\nMove B2 Factor Lorgar\nMove B2 Factor Lorgar\nMove B2 Factor Lorgar\nCatastrophe Lorgar Blue\n\tlorgar: nice game, thanks. rematch?\n\n\nHomeworlds Online (SDG# 20412)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.18, Ended: 2011.9.5\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) lorgar: Homeworld G3 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build B1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade B1 G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Discover G1 Lorgar B2 Barrabas\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) lorgar: Build B1 Lorgar\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Ville\n\n12) lorgar: Build G1 Barrabas\n\n13) SilentTitan: Discover Y1 Silenttitan B1 Sky\n\n14) lorgar: Discover B1 Lorgar G2 Safe\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sky\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 20624)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.18, Ended: 2011.9.15\nParticipants: AdamBadura (S), Subhan64 (N)\nWinner: AdamBadura\n\n1) Subhan64: Homeworld B1 R2 G3\n\n2) AdamBadura: Homeworld G3 B1 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) AdamBadura: Trade Y1 R1 Adambadura\n\n7) Subhan64: Build Y1 Subhan64\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) Subhan64: Build Y2 Subhan64\n\n10) AdamBadura: Build Y2 Adambadura\n\n11) Subhan64: Discover Y1 Subhan64 Y3 Bigbird\n\n12) AdamBadura: Discover Y2 Adambadura G2 Shipyard\n\n13) Subhan64: Build G1 Subhan64\n\n14) AdamBadura: Build Y2 Shipyard\n\n15) Subhan64: Discover Y1 Subhan64 Y3 Tweety\n\n16) AdamBadura: Build R1 Adambadura\n\n17) Subhan64: Discover Y1 Bigbird G2 Kermit\n\n18) AdamBadura: Discover Y2 Shipyard Y3 Highway\n\n19) Subhan64: Build G1 Subhan64\n\n20) AdamBadura: Trade R1 G1 Adambadura\n\n21) Subhan64: Move G1 Subhan64 Tweety\n\n22) AdamBadura: Build R1 Adambadura\n\n23) Subhan64: Move Y1 Tweety Kermit\n\n24) AdamBadura: Move R1 Adambadura Kermit\n\n25) Subhan64: Sacrifice G1 Tweety\nBuild Y3 Subhan64\n\n26) AdamBadura: Attack Y1 Kermit\n\n27) Subhan64: Move Y1 Kermit Highway\n\n28) AdamBadura: Build R1 Kermit\n\n29) Subhan64: Trade Y2 R2 Subhan64\n\n30) AdamBadura: Build Y2 Kermit\n\n31) Subhan64: Discover Y1 Highway G2 Moss\n\n32) AdamBadura: Move R1 Kermit Highway\n\n33) Subhan64: Discover G1 Subhan64 B3 Blueberry\n\n34) AdamBadura: Build R2 Kermit\n\n35) Subhan64: Move Y3 Subhan64 Highway\n\n36) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Highway Subhan64\nMove R1 Kermit Highway\nMove R1 Highway Subhan64\nCatastrophe Subhan64 R\n\n37) Subhan64: Move Y3 Highway Moss\n\n38) AdamBadura: Build Y3 Adambadura\n\n\tSubhan64: gg, thanks!\r\n\n\nHomeworlds Online (SDG# 20510)\nStarted: 2011.8.19, Ended: 2011.8.24\nParticipants: inundator (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) inundator: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tinundator: You too! Let the carnage begin!\n\n4) inundator: Build G1 Inundator\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) inundator: Build G1 Inundator\n\n7) ts52: Discover Y1 Ts52 G1 Kermit\n\n8) inundator: Discover G1 Inundator B2 Misspiggy\n\n9) ts52: Build G2 Ts52\n\n10) inundator: Build G2 Misspiggy\n\n11) ts52: Build Y1 Kermit\n\n12) inundator: Sacrifice G3 Inundator\nBuild G2 Misspiggy\nBuild G3 Inundator\nBuild G3 Inundator\n\n13) ts52: Build Y2 Kermit\n\n14) inundator: Trade G2 R2 Misspiggy\n\n15) ts52: Build G2 Ts52\n\n16) inundator: Trade G2 Y2 Misspiggy\n\n17) ts52: Trade G2 R2 Ts52\n\n18) inundator: Move Y2 Misspiggy Kermit\nCatastrophe Kermit Yellow\n\n19) ts52: Build R1 Ts52\n\n20) inundator: Move G3 Inundator Misspiggy\n\n21) ts52: Discover G2 Ts52 B1 Gonzo\n\n22) inundator: Trade G1 Y1 Misspiggy\n\n23) ts52: Build G1 Gonzo\n\n24) inundator: Build Y1 Misspiggy\n\n25) ts52: Trade G2 Y2 Gonzo\n\n26) inundator: Discover Y1 Misspiggy G1 Beaker\n\n27) ts52: Build G2 Ts52\n\n28) inundator: Build Y2 Beaker\n\n29) ts52: Build G2 Gonzo\n\n30) inundator: Trade G3 Y3 Misspiggy\n\n31) ts52: Build Y2 Gonzo\n\n32) inundator: Discover Y1 Misspiggy R1 Animal\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y3 Gonzo\n\n34) inundator: Sacrifice Y3 Misspiggy\nMove Y1 Animal Ts52\nMove Y2 Beaker Ts52\nMove Y1 Beaker Ts52\nCatastrophe Ts52 Yellow\n\n35) ts52: Sacrifice Y2 Gonzo\nMove G2 Ts52 Inundator\nMove G3 Ts52 Inundator\nCatastrophe Inundator Green\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 20623)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.19, Ended: 2011.9.1\nParticipants: SilentTitan (S), guntz1092 (N)\nWinner: SilentTitan\n\n1) guntz1092: Homeworld Y3 G2 R3 *\n\tSilentTitan: You have to set up your Homeworld first.\r\n\n\tguntz1092: idk how T_T first time.......\n\tguntz1092: idk how to submit orders*\n\n2) SilentTitan: Homeworld R2 B1 G3\n\tSilentTitan: ok... really hard to start without blue and green in your homeworld.... do you want to take back the move and start again?\n\n3) guntz1092: Build R1 Guntz1092\n\tguntz1092: nah im fine. im trying different strategies\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) guntz1092: Build R1 Guntz1092\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) guntz1092: Discover R1 Guntz1092 B1 Barta1\n\n8) SilentTitan: Build R2 Silenttitan\n\n9) guntz1092: Move R1 Guntz1092 Barta1\n\n10) SilentTitan: Trade R1 Y1 Silenttitan\n\n11) guntz1092: Trade R1 Y1 Barta1\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) guntz1092: Trade R1 G1 Barta1\n\n14) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n15) guntz1092: Build Y2 Barta1\n\n16) SilentTitan: Build Y2 Sol\n\n17) guntz1092: Build R1 Guntz1092\n\tguntz1092: how do i sacrifice right?\n\tSilentTitan: Ok.  so what ever piece you are sacrificing.  think of that color as a technology you can give to any system and the pip count and the number of usage you have avaliable.  so a G3 would give you the ability to build anywhere 3 times.  however you would still have the constraint of only being able to build ships of the color that already exist in the system. \n\tSilentTitan: ..... and the pip count as the number of usage.....\n\tguntz1092: this is my move;\r\nsacrifice Y2 barta1 move Y1 barta1 sol move G1 barta1 sol\r\nbut it says im typing it wrong...\n\n18) SilentTitan: Discover Y1 Sol B1 Sameasy\n\n19) guntz1092: Discover Y2 Barta1 R3 Foie\n\tSilentTitan: .... seems like you figured the command out.... then decided it was not the best move\r\n\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sameasy\nBuild Y3 Silenttitan\n\tguntz1092: haha yeah lol\n\n21) guntz1092: Build G1 Barta1\n\n22) SilentTitan: Sacrifice Y2 Sol\nMove Y3 Sameasy Guntz1092\nMove Y1 Sameasy Guntz1092\n\n23) guntz1092: Attack Y3 Guntz1092\n\n24) SilentTitan: Build Y2 Guntz1092\nCatastrophe Guntz1092 Yellow\n\n25) guntz1092: Trade G1 R1 Barta1\n\n26) SilentTitan: Trade Y1 G1 Silenttitan\n\n27) guntz1092: Move R1 Barta1 Foie\n\n28) SilentTitan: Build Y1 Silenttitan\n\n29) guntz1092: Sacrifice Y1 Barta1\nDiscover R1 Guntz1092 B3 Rabarta\n\n30) SilentTitan: Discover R2 Silenttitan G3 Grass\n\tguntz1092: if i have a size 2 on one star and u have 2 size 1s on the same star, would I be able to capture the two size 1s?\n\tguntz1092: if i sac an r2*\n\tSilentTitan: yes...exactly\n\tSilentTitan: even if you only had a 1-pip and I had (2) 1-pips you would be able to sack the R2 and do an attack against each one of my ships. \n\n31) guntz1092: Sacrifice Y2 Foie\nMove R1 Foie Silenttitan\nMove R1 Rabarta Silenttitan\n\n32) SilentTitan: Sacrifice R2 Grass\nAttack R1 Silenttitan North\nAttack R1 Silenttitan North\n\n33) guntz1092: Trade G1 Y1 Barta1\n\n34) SilentTitan: Sacrifice Y2 Sol\nDiscover R1 Silenttitan Y3 Sole\nDiscover R1 Silenttitan G3 Soul\n\n35) guntz1092: Move Y1 Barta1 Guntz1092\n\n36) SilentTitan: Move G1 Silenttitan Sole\n\n37) guntz1092: Build Y1 Guntz1092\n\n38) SilentTitan: Build G1 Sole\n\n39) guntz1092: Build R1 Guntz1092\n\n40) SilentTitan: Build G1 Sole\n\n41) guntz1092: Move R3 Guntz1092 Sole\n\n42) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Sole Guntz1092\nMove G1 Sole Guntz1092\nMove G1 Sole Guntz1092\nCatastrophe Guntz1092 Green\n\n\nHomeworlds Online (SDG# 20636)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.19, Ended: 2011.9.6\nParticipants: SilentTitan (S), guntz1092 (N)\nWinner: SilentTitan\n\n1) guntz1092: Homeworld Y3 B2 G3\n\n2) SilentTitan: Homeworld R2 B1 G3\n\n3) guntz1092: Build G1 Guntz1092\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) guntz1092: Discover G1 Guntz1092 Y1 Zonde1\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) guntz1092: Build G1 Zonde1\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) guntz1092: Build G1 Guntz1092\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n11) guntz1092: Trade G1 B1 Guntz1092\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) guntz1092: Move B1 Guntz1092 Zonde1\n\n14) SilentTitan: Discover Y2 Silenttitan B3 Circle\n\n15) guntz1092: Move G1 Zonde1 Circle\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Circle\nBuild Y3 Silenttitan\n\n17) guntz1092: Build G1 Guntz1092\n\n18) SilentTitan: Build Y3 Sol\n\n19) guntz1092: Build G2 Guntz1092\n\n20) SilentTitan: Trade Y2 G2 Circle\n\n21) guntz1092: Trade G2 Y2 Guntz1092\n\n22) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol Zonde1\nMove Y1 Zonde1 Guntz1092\n\n23) guntz1092: Trade Y2 R2 Guntz1092\n\n24) SilentTitan: Trade G2 R2 Circle\n\n25) guntz1092: Attack Y1 Guntz1092\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) guntz1092: Build G2 Zonde1\n\tSilentTitan: wow... I must have been tired last night.... i missed completely that I was going to sack that g2 and cat your home yellow\r\n\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Circle\nBuild Y3 Silenttitan\n\tguntz1092: lol i noticed that xD\n\n29) guntz1092: Sacrifice G3 Guntz1092\nBuild G2 Guntz1092\nBuild G2 Zonde1\nBuild G3 Circle\n\n30) SilentTitan: Sacrifice Y3 Sol\nDiscover Y2 Circle R1 Mars\nMove R2 Circle Mars\nMove Y2 Circle Zonde1\n\n31) guntz1092: Sacrifice Y1 Guntz1092\nMove G2 Zonde1 Circle\n\n32) SilentTitan: Sacrifice R2 Mars\nAttack G2 Zonde1 North\nAttack G1 Zonde1 North\n\n33) guntz1092: Trade G3 Y3 Circle\n\n34) SilentTitan: Trade Y3 G3 Silenttitan\n\n35) guntz1092: Move G1 Guntz1092 Zonde1\n\n36) SilentTitan: Sacrifice G2 Zonde1\nBuild Y1 Sol\nBuild Y3 Silenttitan\n\n37) guntz1092: Build G2 Guntz1092\n\n38) SilentTitan: Trade G3 R3 Silenttitan\n\n39) guntz1092: Build G3 Zonde1\n\n40) SilentTitan: Build G3 Zonde1\nCatastrophe Zonde1 Green\n\n41) guntz1092: Discover G2 Circle R2 Gifoie\n\n42) SilentTitan: Sacrifice Y2 Sol\nMove R3 Silenttitan Sol\nMove R3 Sol Zonde1\n\n43) guntz1092: Build Y2 Circle\n\n44) SilentTitan: Trade Y3 G3 Silenttitan\n\n45) guntz1092: Move Y2 Circle Silenttitan\n\n46) SilentTitan: Build Y3 Silenttitan\n\n47) guntz1092: Move Y3 Circle Silenttitan\n\n48) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Mars Guntz1092\nMove Y2 Zonde1 Guntz1092\nMove Y1 Sol Silenttitan\nCatastrophe Silenttitan Yellow\n\n49) guntz1092: Attack Y2 Guntz1092\n\n50) SilentTitan: Sacrifice R3 Zonde1\nAttack R2 Guntz1092 North\nAttack G2 Guntz1092 North\nAttack G2 Guntz1092 Notrh\n\n51) guntz1092: Move B1 Zonde1 Guntz1092\n\n52) SilentTitan: Sacrifice R2 Guntz1092\nAttack Y2 Guntz1092 North\nAttack B1 Guntz1092 North\n\n\tSilentTitan: Thank you\n\nHomeworlds Online (SDG# 20637)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.19, Ended: 2011.8.24\nParticipants: SilentTitan (S), caru (N)\nWinner: SilentTitan\n\n1) caru: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) caru: Build G1 Caru\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) caru: Discover G1 Caru R3 Alpha\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) caru: Build G1 Caru\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) caru: Build G1 Caru\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) caru: Trade G3 R3 Caru\n\n12) SilentTitan: Discover G2 Silenttitan Y1 Sol\n\n13) caru: Build G2 Alpha\n\n14) SilentTitan: Discover Y1 Silenttitan B1 Dogstar\n\n15) caru: Build G2 Caru\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Sol\nBuild G3 Sol\nBuild Y2 Dogstar\n\tcaru: HEY SilentTitan, are you interested in playing a live session of Homeworlds on VASSAL?\n\tSilentTitan: could be ... what&#39;s VASSAL?\n\n17) caru: Trade G2 Y2 Caru\n\tcaru: VASSALengine is a java program which allows you to play online (real-time or email) all sort of board/dice/card games for which a module has been written (there are hundreds). It happens that a guy wrote a PiecePack module which includes IceHouse pyramids, so you can place pyramids on a virtual board (empty, chess or whatever) and rotate/move/stack/nest them as you like. Of course this board is shared with the other players.\r\nI tested it alone and find it not complicated at all, should be fun, and you can virtually play all icehouse/piecepack games. Please let me know if you are interested. And if you need more info to get started quickly, just let me know that too ;)\r\n1) download vassal for your platform\r\n2) download piecepack module latest version\r\n3) open it from file menu (select &quot;show all files&quot; to see it)\r\n4) select &quot;new offline game&quot; from the wizard and start test moving pyramids around\r\n\r\nhttp://www.vassalengine.org\r\nhttp://www.vassalengine.org/wiki/Module:Piecepack\n\n18) SilentTitan: Sacrifice G3 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Dogstar\n\n19) caru: Discover G1 Caru G3 Beta\n\tSilentTitan: Ok.. thanks .... I will check that out and let you know\r\n\n\tcaru: cool :)\r\n\r\ni made some confusion though... let me fix it\r\n1) download vassal for your platform\r\n2) download piecepack module latest version\r\n2a) open vassal\r\n3) open the module from file menu (select &quot;show all files&quot; to see it)\r\n4) select &quot;new offline game&quot; from the wizard and start test moving pyramids around (you have to select &quot;icehouse&quot; in the toolbar to see pyramids and available colors)\r\n\r\nhope it&#39;s clearer now\n\n20) SilentTitan: Trade Y3 B3 Silenttitan\n\n21) caru: Discover G1 Caru Y3 Gamma\n\n22) SilentTitan: Sacrifice Y3 Dogstar\nDiscover Y1 Dogstar B3 Bark\nMove Y2 Dogstar Gamma\nMove G2 Sol Silenttitan\n\n23) caru: Discover Y2 Caru Y3 Theta\n\n24) SilentTitan: Trade Y1 R1 Silenttitan\n\n25) caru: Sacrifice G1 Alpha\nBuild R1 Caru\n\n26) SilentTitan: Sacrifice G3 Sol\nBuild Y1 Bark\nBuild Y1 Bark\nBuild B1 Silenttitan\n\n27) caru: Sacrifice G2 Alpha\nBuild R1 Caru\nBuild R2 Caru\n\n28) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Bark Caru\nMove Y1 Bark Caru\nMove Y1 Bark Caru\nCatastrophe Caru Yellow\n\n29) caru: Sacrifice Y2 Theta\nMove R1 Caru Silenttitan\nMove R1 Caru Silenttitan\nCatastrophe Silenttitan R\n\tSilentTitan: ok.. so that&#39;s an error you can&#39;t recover from ... because you already undid your move.  However you should know that any one can call Catastrophe once there is four of any one color in a system. \n\tSilentTitan: I&#39;m going to go ahead and do the move like I had planned ... so you can see some stuph you wouldn&#39;t normally see in one of your early games\r\n\n\n30) SilentTitan: Trade B3 R3 Silenttitan\n\tcaru: Thanks, yep, I saw it too late... that&#39;s why I undid and get some friends home. Was there anything better I could have done?\n\tcaru: Ah wait, now I remember why I thought that move in the first place... :)\n\n31) caru: Trade R2 G2 Caru\n\tcaru: And yes, this is my first game, so I only managed to plan the trap after you sacrificed your big green ship to get the two yellow ones. That&#39;s probably why I then immediately managed to forgot how the trap was supposed to work... :)\n\n32) SilentTitan: Build B1 Silenttitan\n\n\tcaru: gg SilentTitan!\n\nHomeworlds Online (SDG# 20638)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2011.8.19, Ended: 2011.8.21\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld G3 B1 Y3\n\n2) guntz1092: Homeworld Y3 G2 R3 *\n\n3) thejackdiaz: Build Y1 Thejackdiaz\n\n4) guntz1092: Build R1 Guntz1092\n\n5) thejackdiaz: Trade Y1 R1 Thejackdiaz\n\n6) guntz1092: Build R1 Guntz1092\n\n7) thejackdiaz: Build R2 Thejackdiaz\n\n8) guntz1092: Discover R1 Guntz1092 B1 Domingo7\n\n9) thejackdiaz: Trade R1 B1 Thejackdiaz\n\n10) guntz1092: Trade R1 G1 Domingo7\n\n11) thejackdiaz: Build B2 Thejackdiaz\n\n12) guntz1092: Build G1 Domingo7\n\n13) thejackdiaz: Trade B2 Y2 Thejackdiaz\n\n14) guntz1092: Build G1 Domingo7\n\n15) thejackdiaz: Discover Y2 Thejackdiaz G2 Alpha\n\n16) guntz1092: Build G2 Domingo7\n\n17) thejackdiaz: Move B1 Thejackdiaz Alpha\nCatastrophe Domingo7 Green\n\n18) guntz1092: Discover R1 Guntz1092 B1 Barta1\n\n19) thejackdiaz: Build B2 Alpha\n\n20) guntz1092: Trade R1 G1 Barta1\n\n21) thejackdiaz: Trade B2 G2 Alpha\n\n22) guntz1092: Build G1 Barta1\n\n23) thejackdiaz: Discover G2 Alpha Y1 Beta\n\n24) guntz1092: Trade G1 Y1 Barta1\n\n25) thejackdiaz: Build B2 Alpha\n\n26) guntz1092: Build Y1 Barta1\n\n27) thejackdiaz: Build G1 Beta\n\n28) guntz1092: Move Y1 Barta1 Guntz1092\n\n29) thejackdiaz: Trade B2 Y2 Alpha\n\n30) guntz1092: Build R1 Guntz1092\n\n31) thejackdiaz: Build G1 Beta\n\n32) guntz1092: Discover Y1 Barta1 R2 Gifoie\n\n33) thejackdiaz: Sacrifice G2 Beta\nBuild Y2 Alpha\nBuild Y3 Thejackdiaz\n\n34) guntz1092: Build G2 Barta1\n\n35) thejackdiaz: Build G3 Beta\n\n36) guntz1092: Move R3 Guntz1092 Beta\n\n37) thejackdiaz: Sacrifice R2 Thejackdiaz\nAttack R3 Beta\nPass\n\n38) guntz1092: Trade G1 R1 Barta1\n\n39) thejackdiaz: Move R3 Beta Guntz1092\n\n40) guntz1092: Build R1 Guntz1092\n\n41) thejackdiaz: Attack Y1 Guntz1092\n\n42) guntz1092: Build R2 Guntz1092 Catastrophe Guntz1092 R\n\n43) thejackdiaz: Pass\nCatastrophe Guntz1092 Red\n\n\nHomeworlds Online (SDG# 20584)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.21, Ended: 2011.9.21\nParticipants: caru (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tcaru: HEY Jesse, maybe are you also interested in playing a live session of Homeworlds on VASSAL? \n\tJesse: Perhaps. I&#39;m not familiar with it.\n\n2) caru: Homeworld Y3 B2 G3\n\tcaru: Great... I&#39;ve posted some info about it to another player here http://superdupergames.org/main.html?page=play_homeworlds&amp;num=20637\n\n3) Jesse: Build G1 Jesse\n\n4) caru: Build G1 Caru\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) caru: Build G1 Caru\n\n7) Jesse: Build G1 Jesse\n\n8) caru: Trade G1 Y1 Caru\n\n9) Jesse: Build Y1 Jesse\n\n10) caru: Build Y2 Caru\n\n11) Jesse: Build Y2 Jesse\n\n12) caru: Discover Y1 Caru G1 Freedom\n\n13) Jesse: Trade Y1 R1 Jesse\n\n14) caru: Build G2 Caru\n\n15) Jesse: Discover R1 Jesse G3 Goober\n\n16) caru: Discover G1 Caru Y1 Mizar\n\n17) Jesse: Move Y1 Jesse Goober\n\n18) caru: Sacrifice G3 Caru\nBuild G2 Caru\nBuild G2 Mizar\nBuild G3 Caru\n\n19) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Goober\n\n20) caru: Trade G2 R2 Caru\n\n21) Jesse: Build Y3 Jesse\n\n\nHomeworlds Online (SDG# 20622)\nStarted: 2011.8.21, Ended: 2011.10.4\nParticipants: SirRuthvenMurgatroyd (S), caru (N)\nWinner: SirRuthvenMurgatroyd\n\n1) caru: Homeworld Y1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y3 B2 G3\n\n3) caru: Build G1 Caru\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) caru: Discover G1 Caru R3 Alpha\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\tcaru: HEY SirRuthvenMurgatroyd, maybe are you also interested in playing a live session of Homeworlds on VASSAL? \n\n7) caru: Build G1 Caru\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) caru: Sacrifice G3 Caru\nBuild G2 Alpha\nBuild G2 Caru\nBuild G3 Caru\n\n10) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\n11) caru: Trade G2 Y2 Caru\n\n12) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n13) caru: Discover G1 Caru Y3 Beta\n\n14) SirRuthvenMurgatroyd: Build G2 Sol\n\n15) caru: Build G3 Caru\n\n16) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd\n\n17) caru: Build G2 Beta\n\n18) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y1 Gamma\n\n19) caru: Build Y2 Caru\n\n20) SirRuthvenMurgatroyd: Sacrifice G2 Sol\nBuild Y2 Sirruthvenmurgatroyd\nBuild G2 Sol\n\n21) caru: Trade Y2 B2 Caru\n\n22) SirRuthvenMurgatroyd: Discover G3 Gamma B3 Delta\n\n23) caru: Move Y2 Caru Alpha\n\n24) SirRuthvenMurgatroyd: Sacrifice G2 Sol\nBuild G2 Sol\nBuild R1 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20645)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2011.8.22, Ended: 2011.8.30\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld B2 Y1 G3\n\n2) guntz1092: Homeworld R3 B2 G3\n\tguntz1092: it wont let me make a home star\n\tguntz1092: it says &quot;There are no 3B pieces left in the stash to take.&quot;\n\n3) thejackdiaz: Build G1 Thejackdiaz\n\n4) guntz1092: Build G1 Guntz1092\n\n5) thejackdiaz: Trade G1 R1 Thejackdiaz\n\n6) guntz1092: Build G1 Guntz1092\n\tguntz1092: idk how to sacrifice right...this is from another game:\r\nsacrifice Y2 barta1 move Y1 barta1 sol move G1 barta1 sol \r\nbarta1 and sol being stars\n\n7) thejackdiaz: Build G1 Thejackdiaz\n\n8) guntz1092: Trade G1 Y1 Guntz1092\n\n9) thejackdiaz: Discover G1 Thejackdiaz Y3 Alpha\n\n10) guntz1092: Discover G1 Guntz1092 Y1 Zonde\n\n11) thejackdiaz: Build G1 Alpha\n\n12) guntz1092: Build G2 Zonde\n\n13) thejackdiaz: Move G1 Alpha Thejackdiaz\n\n14) guntz1092: Build Y2 Guntz1092\n\n15) thejackdiaz: Trade G1 B1 Thejackdiaz\n\n16) guntz1092: Build Y2 Guntz1092\n\n17) thejackdiaz: Build B1 Thejackdiaz\n\n18) guntz1092: Discover Y2 Guntz1092 R1 Foie\n\n19) thejackdiaz: Move B1 Thejackdiaz Alpha\n\n20) guntz1092: Trade Y2 R2 Guntz1092\n\n21) thejackdiaz: Build B1 Alpha\n\n22) guntz1092: Build Y2 Guntz1092\n\n23) thejackdiaz: Discover B1 Alpha G1 Beta\n\n24) guntz1092: Move G2 Zonde Alpha\n\n25) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild B2 Beta\nBuild B3 Alpha\nBuild B3 Thejackdiaz\n\n26) guntz1092: Sacrifice R2 Guntz1092\nAttack G1 Alpha\nAttack B1 Alpha\n\n27) thejackdiaz: Trade B3 G3 Thejackdiaz\n\n28) guntz1092: Move B1 Alpha Beta\n\n29) thejackdiaz: Trade B2 R2 Beta\n\n30) guntz1092: Trade B1 R1 Beta\n\n31) thejackdiaz: Attack R1S Beta\n\n32) guntz1092: Trade Y2 R2 Guntz1092\n\n33) thejackdiaz: Sacrifice R1 Beta\nAttack G2 Alpha\n\n34) guntz1092: Sacrifice G3 Guntz1092\nBuild G2 Alpha\nBuild G2 Zonde\nBuild Y2 Foie\n\n35) thejackdiaz: Build G3 Thejackdiaz\n\n36) guntz1092: Sacrifice Y2 Foie\nMove G1 Alpha Thejackdiaz\nMove G2 Alpha Thejackdiaz\nCatastrophe Thejackdiaz Green\n\n37) thejackdiaz: Move B3 Alpha Thejackdiaz\n\n38) guntz1092: Move G2 Zonde Guntz1092\n\n39) thejackdiaz: Trade B3 G3 Thejackdiaz\n\n40) guntz1092: Build G1 Zonde\n\n41) thejackdiaz: Build B1 Thejackdiaz\n\n42) guntz1092: Build G2 Guntz1092\n\n43) thejackdiaz: Build G3 Thejackdiaz\n\n44) guntz1092: Build G3 Guntz1092\n\n45) thejackdiaz: Move B1 Thejackdiaz Alpha\n\n46) guntz1092: Trade G2 B2 Guntz1092\n\n47) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild B3 Thejackdiaz\nBuild B3 Alpha\nBuild B3 Beta\n\n48) guntz1092: Move B2 Guntz1092 Zonde\n\n49) thejackdiaz: Trade B1 R1 Thejackdiaz\n\n50) guntz1092: Build B1 Zonde\n\n51) thejackdiaz: Move R1 Thejackdiaz Alpha\n\n52) guntz1092: Sacrifice G2 Guntz1092\nBuild Y2 Foie\nBuild G2 Guntz1092\n\n53) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild R2 Thejackdiaz\nBuild R3 Alpha\nBuild R3 Beta\n\n54) guntz1092: Sacrifice Y2 Foie\nMove B1 Zonde Alpha\nMove B1 Alpha Thejackdiaz\n\n55) thejackdiaz: Trade B3 Y3 Thejackdiaz\n\n56) guntz1092: Move R2 Guntz1092 Zonde\n\n57) thejackdiaz: Move R3 Alpha Zonde\n\n58) guntz1092: Move Y2 Foie Alpha\n\n59) thejackdiaz: Sacrifice R2 Beta\nAttack R2S Zonde\nAttack Y2S Alpha\n\n60) guntz1092: Move Y1 Guntz1092 Zonde\n\n61) thejackdiaz: Sacrifice Y2 Alpha\nMove R3 Beta Guntz1092\nMove B3 Beta Guntz1092\n\n62) guntz1092: Sacrifice G3 Guntz1092\nBuild Y2 Zonde\nBuild Y2 Zonde\nBuild B3 Thejackdiaz\nCatastrophe Zonde Yellow\n\n63) thejackdiaz: Attack G2S Guntz1092\n\n\nHomeworlds Online (SDG# 20649)\nStarted: 2011.8.24, Ended: 2011.11.1\nParticipants: SirRuthvenMurgatroyd (S), inundator (N)\nWinner: SirRuthvenMurgatroyd\n\n1) inundator: Homeworld Y1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld B2 Y3 G3\n\tinundator: Hello and have fun.\n\tSirRuthvenMurgatroyd: Hello.  You too!\n\n3) inundator: Build G1 Inundator\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) inundator: Discover G1 Inundator B3 Cthulu\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) inundator: Build G1 Inundator\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) inundator: Trade G1 Y1 Inundator\n\n10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n11) inundator: Build Y2 Inundator\n\n12) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n13) inundator: Discover Y1 Inundator Y3 Yog-sothoth\n\n14) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n15) inundator: Build Y2 Inundator\n\n16) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Big Yellow\n\n17) inundator: Trade Y2 R2 Inundator\n\n18) SirRuthvenMurgatroyd: Build G1 Big\n\n19) inundator: Move R2 Inundator Big\n\n20) SirRuthvenMurgatroyd: Move G1 Big Inundator\n\n21) inundator: Attack G1 Big\n\n22) SirRuthvenMurgatroyd: Build G2 Inundator\n\n23) inundator: Sacrifice R2 Big\nAttack G2 Inundator\nAttack G1 Inundator\n\n24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n25) inundator: Sacrifice G3 Inundator\nBuild G2 Big\nBuild G3 Cthulu\nBuild G3 Inundator\n\n26) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y1 Yellow\n\n27) inundator: Trade G1 R1 Inundator\n\n28) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n29) inundator: Sacrifice G3 Inundator\nBuild G1 Big\nBuild G3 Inundator\nBuild R1 Inundator\n\n30) SirRuthvenMurgatroyd: Move R1 Sirruthvenmurgatroyd Yellow\n\n31) inundator: Sacrifice Y2 Inundator\nMove G3 Cthulu Yellow\nMove G3 Yellow Sirruthvenmurgatroyd\n\n32) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd\n\n33) inundator: Sacrifice R1 Inundator\nAttack R2 Sirruthvenmurgatroyd\n\n34) SirRuthvenMurgatroyd: Attack R2N Sirruthvenmurgatroyd\n\n35) inundator: Sacrifice G3 Inundator\nBuild G3 Inundator\nBuild R1 Inundator\nBuild Y2 Yog-sothoth\n\n36) SirRuthvenMurgatroyd: Build R2 Yellow\n\n37) inundator: Move R1 Inundator Yog-sothoth\n\n38) SirRuthvenMurgatroyd: Move G3 Yellow Yog-sothoth\n\n39) inundator: Discover R1 Yog-sothoth B1 Yellowking\n\n40) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd\nAttack Y2N Yog-sothoth\nAttack Y1N Yog-sothoth\n\n41) inundator: Sacrifice R1 Yellowking\nAttack R2 Sirruthvenmurgatroyd\n\n42) SirRuthvenMurgatroyd: Sacrifice R1 Yellow\nAttack R2N Sirruthvenmurgatroyd\n\n43) inundator: Discover G2 Big B1 Hastur\n\n44) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n45) inundator: Trade G2 R2 Hastur\n\n46) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n47) inundator: Sacrifice R2 Hastur\nAttack R2 Sirruthvenmurgatroyd\nAttack R1 Sirruthvenmurgatroyd\n\n48) SirRuthvenMurgatroyd: Sacrifice R2 Yellow\nAttack R2N Sirruthvenmurgatroyd\nAttack R1N Sirruthvenmurgatroyd\n\n49) inundator: Trade G1 Y1 Cthulu\n\n50) SirRuthvenMurgatroyd: Build G1 Yog-sothoth\n\n51) inundator: Discover Y1 Cthulu B1 Rats\n\n52) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove G3 Yog-sothoth Inundator\nMove G1 Yog-sothoth Inundator\nCatastrophe Inundator G\n\n53) inundator: Move Y1 Rats Yog-sothoth\nCatastrophe Yog-sothoth Yellow\n\n54) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n55) inundator: T G3 B3 Sirruthvenmurgatroyd\n\n56) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n57) inundator: Move G1 Big Inundator\n\n58) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n59) inundator: Discover B3 Sirruthvenmurgatroyd Y1 Whisperer\n\n60) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild B1 Sirruthvenmurgatroyd\nBuild B1 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd B\n\n61) inundator: Move B3 Whisperer Big\n\n62) SirRuthvenMurgatroyd: Move G2 Sirruthvenmurgatroyd Inundator\n\n63) inundator: Move B3 Big Inundator\n\n64) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd\nAttack R1N Inundator\nAttack G1N Inundator\n\n65) inundator: Build G1 Big\n\n66) SirRuthvenMurgatroyd: Trade G1 B1 Inundator\n\n67) inundator: Trade B3 R3 Inundator\n\n68) SirRuthvenMurgatroyd: Sacrifice G2 Inundator\nBuild R1 Inundator\nBuild R2 Inundator\nCatastrophe Inundator R\n\tinundator: Good game. Thanks.\n\n\nHomeworlds Online (SDG# 20639)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.24, Ended: 2011.9.13\nParticipants: SilentTitan (S), caru (N)\nWinner: SilentTitan\n\n1) caru: Homeworld Y1 B2 G3\n\tcaru: gg\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) caru: Build G1 Caru\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) caru: Trade G1 Y1 Caru\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\n7) caru: Build G1 Caru\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) caru: Discover Y1 Caru G3 Alpha\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) caru: Build Y2 Alpha\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sun\n\n13) caru: Discover Y1 Alpha G2 Mizar\n\n14) SilentTitan: Discover Y2 Silenttitan B1 Sink\n\n15) caru: Discover G1 Caru Y3 Betelgeuse\n\n16) SilentTitan: Build G2 Silenttitan\n\n17) caru: Build G2 Caru\n\n18) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Sink\n\n19) caru: Sacrifice G3 Caru\nBuild G2 Betelgeuse\nBuild G3 Caru\nBuild G3 Caru\n\n20) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Silenttitan Sun\nMove G1 Sun Alpha\nMove G1 Alpha Caru\nCatastrophe Caru Green\n\tcaru: gg!\n\n\nHomeworlds Online (SDG# 20675)\nStarted: 2011.8.24, Ended: 2011.11.22\nParticipants: caru (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\tts52: Have a good game.\n\n2) caru: Homeworld B1 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) caru: Build G1 Caru\n\n5) ts52: Trade G1 B1 Ts52\n\n6) caru: Trade G3 B3 Caru\n\n7) ts52: Build B2 Ts52\n\n8) caru: Build B2 Caru\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) caru: Trade B3 Y3 Caru\n\n11) ts52: Trade B2 Y2 Kermit\n\n12) caru: Build B2 Caru\n\n13) ts52: Move B1 Ts52 Kermit\n\n14) caru: Discover B2 Caru G3 Alpha\n\n15) ts52: Build G1 Ts52\n\n16) caru: Build Y1 Caru\n\n17) ts52: Build Y1 Kermit\n\n18) caru: Trade Y3 G3 Caru\n\n19) ts52: Build Y1 Kermit\n\n20) caru: Build Y2 Caru\n\n21) ts52: Discover Y2 Kermit B3 Gonzo\n\n22) caru: Discover Y1 Caru B3 Pamali\n\n23) ts52: Move Y1 Kermit Gonzo\n\n24) caru: Discover B2 Caru R3 Nali\n\n25) ts52: Build Y3 Kermit\n\n26) caru: Discover Y2 Caru R3 Zazaza\n\n27) ts52: Trade Y3 R3 Kermit\n\n28) caru: Sacrifice G3 Caru\nBuild Y3 Pamali\nBuild Y3 Zazaza\nBuild B2 Alpha\n\n29) ts52: Move R3 Kermit Alpha\n\n30) caru: Sacrifice B2 Nali\nTrade Y3 G3 Zazaza\nTrade Y3 R3 Pamali\n\n31) ts52: Attack B2 Alpha\n\n32) caru: Build Y3 Zazaza\n\n33) ts52: Build Y3 Kermit\n\n34) caru: Sacrifice B2 Alpha\nTrade Y3 B3 Zazaza\nTrade Y2 G2 Zazaza\n\n35) ts52: Move Y1 Kermit Alpha\n\n\nHomeworlds Online (SDG# 20676)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.24, Ended: 2011.9.6\nParticipants: Aristos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n2) Aristos: Homeworld G3 B2 Y3\n\n3) ts52: Build G1 Ts52\n\n4) Aristos: Build Y1 Aristos\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\tAristos: You as well.\n\n6) Aristos: Trade Y1 R1 Aristos\n\n7) ts52: Build G1 Ts52\n\n8) Aristos: Build Y1 Aristos\n\n9) ts52: Build G1 Grover\n\n10) Aristos: Trade Y3 G3 Aristos\n\n11) ts52: Build G2 Grover\n\n\nHomeworlds Online (SDG# 20686)\nStarted: 2011.8.25, Ended: 2011.9.13\nParticipants: kingsamj (S), BloodRumpus (N)\nWinner: BloodRumpus\n\n1) BloodRumpus: Homeworld B2 R3 G3\n\n2) kingsamj: Homeworld R3 B2 G3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) kingsamj: Build G1 Kingsamj\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) kingsamj: Build G1 Kingsamj\n\n7) BloodRumpus: Build Y1 Bloodrumpus\n\n8) kingsamj: Trade G3 Y3 Kingsamj\n\n9) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n10) kingsamj: Build Y1 Kingsamj\n\n11) BloodRumpus: Build B1 Bloodrumpus\n\n12) kingsamj: Trade G1 B1 Kingsamj\n\n13) BloodRumpus: Discover B1 Bloodrumpus G1 Vulcan\n\n14) kingsamj: Move B1 Kingsamj Vulcan\n\n15) BloodRumpus: Build B2 Vulcan\n\n16) kingsamj: Trade B1 R1 Vulcan\n\n17) BloodRumpus: Trade B2 R2 Vulcan\n\n18) kingsamj: Sacrifice Y1 Kingsamj\nDiscover R1 Vulcan G3 Solara\n\n19) BloodRumpus: Discover B1 Bloodrumpus G1 Praxis\n\n20) kingsamj: Build G2 Kingsamj\n\n21) BloodRumpus: Build G2 Bloodrumpus\n\n22) kingsamj: Build Y1 Kingsamj\n\n23) BloodRumpus: Discover G2 Bloodrumpus Y1 Zanzibar\n\n24) kingsamj: Discover G2 Kingsamj R1 Sienna\n\n25) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n26) kingsamj: Sacrifice G2 Sienna\nBuild G2 Kingsamj\nBuild R1 Solara\n\n27) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild B2 Bloodrumpus\nBuild B3 Vulcan\nBuild B3 Praxis\n\n28) kingsamj: Discover G1 Kingsamj Y1 Tundra\n\n29) BloodRumpus: Trade B3 G3 Vulcan\n\n30) kingsamj: Move Y1 Kingsamj Tundra\n\n31) BloodRumpus: Trade B2 Y2 Bloodrumpus\n\n32) kingsamj: Build Y2 Kingsamj\n\n33) BloodRumpus: Sacrifice Y2 Bloodrumpus\nMove B3 Praxis Kingsamj\nMove G3 Vulcan Kingsamj\n\n34) kingsamj: Attack G3 Kingsamj\n\n35) BloodRumpus: Sacrifice R2 Vulcan\nAttack Y3 Kingsamj\nAttack G3 Kingsamj\n\n36) kingsamj: Build G2 Tundra\n\n37) BloodRumpus: Attack G2 Kingsamj\n\n38) kingsamj: Move G2 Tundra Bloodrumpus\n\n39) BloodRumpus: Attack Y2 Kingsamj\n\n\tkingsamj: the way you won this game was totally awesome\n\nHomeworlds Online (SDG# 20667)\nVariants: &quot;Hard time&quot;\nStarted: 2011.8.26, Ended: 2011.10.27\nParticipants: agentofchaos (S), alexcobo (N)\nWinner: agentofchaos\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) agentofchaos: H R3 B1 G3\n\talexcobo: Have a good game!\n\n3) alexcobo: Build Y1 Alexcobo\n\tagentofchaos: You too!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) alexcobo: Discover Y1 Alexcobo G1 Uno\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) alexcobo: Build Y2 Uno\n\n10) agentofchaos: Trade Y2 G2 Agentofchaos\n\n11) alexcobo: Build Y2 Uno\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) alexcobo: Trade Y1 B1 Alexcobo\n\n14) agentofchaos: Discover G2 Agentofchaos Y2 Grrindah\n\n15) alexcobo: Sacrifice B1 Alexcobo\nTrade Y2 G2 Uno\n\n16) agentofchaos: Trade G1 R1 Agentofchaos\n\n17) alexcobo: Build G1 Uno\n\n18) agentofchaos: Move G2 Grrindah Uno\nCatastrophe Uno G\n\n19) alexcobo: Build Y1 Alexcobo\n\n20) agentofchaos: B R1 Agentofchaos\n\n21) alexcobo: Build Y1 Alexcobo\n\n22) agentofchaos: Build Y2 Agentofchaos\n\n23) alexcobo: Discover Y1 Alexcobo G1 Uno\n\n24) agentofchaos: Discover Y2 Agentofchaos G2 Wopolsa\n\n25) alexcobo: Build Y2 Uno\n\n26) agentofchaos: Build Y2 Wopolsa\n\n27) alexcobo: Trade Y1 G1 Alexcobo\n\n28) agentofchaos: Move Y2 Wopolsa Uno\n\n29) alexcobo: Discover Y2 Uno R3 Dos\n\n30) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Uno\n\n31) alexcobo: Build G1 Alexcobo\n\n32) agentofchaos: Build G2 Agentofchaos\n\n33) alexcobo: Trade G1 R1 Alexcobo\n\n34) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y3 Wopolsa\n\n35) alexcobo: Sacrifice G1 Alexcobo\nBuild Y3 Dos\n\n36) agentofchaos: Sacrifice Y2 Uno\nMove Y2 Wopolsa Dos\nMove Y1 Uno Dos\nCatastrophe Dos Y\n\n37) alexcobo: Build R1 Alexcobo\n\n38) agentofchaos: Build R2 Agentofchaos\n\n39) alexcobo: Discover R1 Alexcobo B1 Uno\n\n40) agentofchaos: Discover R2 Agentofchaos Y2 Grrindah\n\n41) alexcobo: Build R2 Alexcobo\n\n42) agentofchaos: Trade R1 B1 Agentofchaos\n\n43) alexcobo: Trade R1 G1 Uno\n\n44) agentofchaos: Move R2 Grrindah Uno\n\n45) alexcobo: Build Y1 Alexcobo\n\n46) agentofchaos: Build Y2 Wopolsa\n\n\nHomeworlds Online (SDG# 20707)\nStarted: 2011.8.29, Ended: 2011.10.6\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\tts52: Have a good game!\n\tlorgar: thx, sorry for the lag, I was out of the loop for a week (lack of internet access)\n\n6) ts52: Discover G1 Ts52 B2 Grover\n\n7) lorgar: Discover B1 Lorgar G3 Lormec\n\n8) ts52: Build G1 Grover\n\n9) lorgar: Build B2 Lormec\n\n10) ts52: Trade G1 Y1 Grover\n\n11) lorgar: Trade B1 Y1 Lormec\n\n12) ts52: Build G1 Ts52\n\n13) lorgar: Build B1 Lormec\n\n14) ts52: Trade G1 R1 Ts52\n\n15) lorgar: Trade B2 R2 Lormec\n\n16) ts52: Build G1 Ts52\n\n17) lorgar: Build R1 Lormec\n\n18) ts52: Build R1 Ts52\n\n19) lorgar: Move R2 Lormec Grover\n\n20) ts52: Sacrifice Y1 Grover\nDiscover G1 Grover B3 Gonzo\n\n21) lorgar: Build R2 Lormec\n\n22) ts52: Build G1 Gonzo\n\n23) lorgar: Build B2 Lormec\n\n24) ts52: Build G2 Gonzo\n\n25) lorgar: Build G2 Lorgar\n\n26) ts52: Trade G2 Y2 Gonzo\n\n27) lorgar: Discover B2 Lormec R2 Cemrol\n\n28) ts52: Discover R1 Ts52 Y2 Zoe\n\n29) lorgar: Trade R2 G2 Grover\n\n30) ts52: Move G1 Gonzo Zoe\n\n31) lorgar: Move R2 Lormec Zoe\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n33) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Cemrol\nBuild B3 Lormec\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Zoe\nBuild R3 Ts52\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B3 Cemrol\nBuild R3 Lormec\n\n36) ts52: Sacrifice Y2 Gonzo\nMove R1 Zoe Lormec\nMove R2 Zoe Lormec\nCatastrophe Lormec Red\n\n37) lorgar: Attack G1S Zoe\n\n38) ts52: Move R3 Ts52 Grover\n\n39) lorgar: Sacrifice Y1 Lormec\nMove G2 Grover Ts52\n\n40) ts52: Trade G1 R1 Ts52\n\n41) lorgar: Sacrifice G2 Lorgar\nBuild G1 Ts52\nBuild G2 Ts52\nCatastrophe Ts52 Green\n\n42) ts52: Trade R1 G1 Ts52\n\n43) lorgar: Move R2 Zoe Ts52\n\n44) ts52: Sacrifice Y1 Gonzo\nMove R3 Grover Ts52\n\tts52: Well crap! Well played.\n\n45) lorgar: Sacrifice G1 Zoe\nBuild R1 Ts52\nCatastrophe Ts52 Red\n\n46) ts52: Build G1 Ts52\n\n47) lorgar: Sacrifice B2 Cemrol\nTrade B2 R2 Cemrol\nTrade B1 Y1 Lormec\n\n48) ts52: Build G2 Ts52\n\n49) lorgar: Sacrifice Y1 Lormec\nMove B3 Cemrol Ts52\n\n50) ts52: Trade G2 B2 Ts52\n\n51) lorgar: Trade B3 R3 Ts52\n\n52) ts52: Build G2 Ts52\n\n53) lorgar: Sacrifice R2 Cemrol\nAttack B2S Ts52\nAttack G2S Ts52\n\n54) ts52: Trade G1 R1 Ts52\n\n55) lorgar: Sacrifice R3 Ts52\nAttack R1S Ts52\nAttack G1S Ts52\nPass\n\n\tts52: Well played. Thanks for the game!\n\nHomeworlds Online (SDG# 20681)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.1, Ended: 2011.9.5\nParticipants: caru (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B1 R2 G3\n\n2) caru: Homeworld B1 Y3 G3\n\n3) daselva: Build G1 Daselva\n\n\tcaru: strange, i think to remember that all my games were reported to have at least 5 days of time for my turn to end...\n\nHomeworlds Online (SDG# 20777)\nStarted: 2011.9.6, Ended: 2011.11.22\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld G3 B1 R3\n\n2) guntz1092: Homeworld B3 G2 Y3\n\n3) thejackdiaz: Build R1 Thejackdiaz\n\n4) guntz1092: Build Y1 Guntz1092\n\n5) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n6) guntz1092: Build Y1 Guntz1092\n\n7) thejackdiaz: Build R1 Thejackdiaz\n\n8) guntz1092: Trade Y1 G1 Guntz1092\n\n9) thejackdiaz: Discover R1 Thejackdiaz B2 Cyril\n\n10) guntz1092: Discover G1 Guntz1092 Y1 Justin\n\n11) thejackdiaz: Build R1 Thejackdiaz\n\n12) guntz1092: Build G1 Justin\n\n13) thejackdiaz: Trade R1 G1 Thejackdiaz\n\n14) guntz1092: Move Y1 Guntz1092 Justin\n\n15) thejackdiaz: Build G2 Thejackdiaz\n\n16) guntz1092: Build G2 Justin\n\n17) thejackdiaz: Move G2 Thejackdiaz Cyril\n\n18) guntz1092: Discover G1 Justin B2 Jack\n\n19) thejackdiaz: Build G3 Cyril\n\n20) guntz1092: Build G3 Jack\n\n21) thejackdiaz: Sacrifice Y3 Thejackdiaz\nDiscover R1 Cyril Y1 Buffalo\nMove G3 Cyril Buffalo\nMove G3 Buffalo Guntz1092\n\n22) guntz1092: Build Y2 Guntz1092\n\n23) thejackdiaz: Sacrifice R1 Buffalo\nAttack Y3S Guntz1092\n\n24) guntz1092: Move G1 Justin Guntz1092\n\n25) thejackdiaz: Trade G3 R3 Guntz1092\n\n26) guntz1092: Sacrifice G2 Justin\nBuild G2 Guntz1092\nBuild Y1 Guntz1092\n\n27) thejackdiaz: Attack Y2 Guntz1092\n\n28) guntz1092: Sacrifice G3 Jack\nBuild G3 Jack\nBuild Y2 Guntz1092\nBuild Y2 Justin\nCatastrophe Guntz1092 Yellow\n\n29) thejackdiaz: Trade R3 G3 Guntz1092\nCatastrophe Guntz1092 Green\n\tthejackdiaz: gg\n\n\nHomeworlds Online (SDG# 20783)\nStarted: 2011.9.11, Ended: 2012.1.11\nParticipants: daselva (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B3 R1 G3\n\tMandrel: Have a good game.\n\n2) daselva: Homeworld B1 R2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) daselva: Build G1 Daselva\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) Mandrel: Build G1 Mandrel\n\n8) daselva: Build G1 Daselva\n\n9) Mandrel: Trade G1 Y1 Mandrel\n\n10) daselva: Trade G3 R3 Daselva\n\n11) Mandrel: B G1 Mandrel\n\n12) daselva: Build Y1 Daselva\n\n13) Mandrel: Build Y2 Mandrel\n\n14) daselva: Build Y2 Daselva\n\n15) Mandrel: Build Y2 Mandrel\n\n16) daselva: Discover Y2 Daselva G3 S1\n\n17) Mandrel: Trade Y1 B1 Mandrel\n\n18) daselva: Trade R3 G3 Daselva\n\n19) Mandrel: D B1 Mandrel G2 Drape\n\n20) daselva: Trade Y1 B1 Daselva\n\n21) Mandrel: B B2 Drape\n\n22) daselva: Move B1 Daselva S1\n\n23) Mandrel: Trade B1 R1 Drape\n\n24) daselva: Build Y1 S1\n\n25) Mandrel: Move Y2 Mandrel Drape\n\n26) daselva: Trade Y2 R2 S1\n\n27) Mandrel: Build Y1 Mandrel\n\n28) daselva: Build Y2 S1\n\n29) Mandrel: Build Y3 Drape\n\n30) daselva: Build Y3 Daselva\n\n31) Mandrel: D Y2 Drape B3 Bunk\n\n32) daselva: Build Y3 S1\n\n33) Mandrel: Sacrifice Y2 Bunk\nMove Y1 Mandrel Drape\nMove Y1 Drape S1\nCatastrophe S1 Y\n\n34) daselva: Move Y3 Daselva S1\n\n35) Mandrel: Build Y1 Drape\n\n36) daselva: Discover R2 S1 G2 S2\n\n37) Mandrel: Discover Y1 Drape B3 Cone\n\n38) daselva: Sacrifice Y1 Daselva\nMove R2 S2 Cone\n\n39) Mandrel: Trade Y3 R3 Drape\n\n40) daselva: Attack Y1 Cone\n\n41) Mandrel: S Y2 Mandrel\nMove B2 Drape Cone\nMove R3 Drape Cone\n\n42) daselva: Move R2 Cone Drape\n\n43) Mandrel: Trade B2 Y2 Cone\n\n44) daselva: Attack R1 Drape\n\n45) Mandrel: Attack Y1S Cone\n\n46) daselva: Trade G3 Y3 Daselva\n\n47) Mandrel: Trade R1 Y1 Mandrel\n\n48) daselva: Build Y1 S1\n\n49) Mandrel: Build Y2 Mandrel\n\n50) daselva: Trade Y1 R1 S1\n\n51) Mandrel: Trade Y1 G1 Cone\n\n52) daselva: Move Y3 S1 Drape\n\n53) Mandrel: Build G2 Cone\n\n54) daselva: Build Y1 Drape\n\n55) Mandrel: Discover Y2 Mandrel B2 Neglect\n\n56) daselva: Sacrifice Y1 Drape\nDiscover R1 S1 Y2 S2\n\n57) Mandrel: Trade G2 B2 Cone\n\n58) daselva: Sacrifice Y3 Drape\nMove R1 S2 Mandrel\nMove R1 Drape Mandrel\nMove R2 Drape Mandrel\nCatastrophe Mandrel R\n\n59) Mandrel: T Y2 R2 Neglect\n\n60) daselva: Build G2 Daselva\n\n61) Mandrel: D G1 Mandrel B2 Third\n\n62) daselva: Sacrifice G2 Daselva\nBuild B1 S1\nBuild G2 Daselva\n\n63) Mandrel: Sacrifice Y2 Cone\nMove R3 Cone Daselva\nMove G3 Mandrel Daselva\n\n64) daselva: Attack R3 Daselva\n\n65) Mandrel: S R2 Neglect\nAttack R3S Daselva\nA Y3S Daselva\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 20839)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.14, Ended: 2011.11.1\nParticipants: SilentTitan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) TwoShort: Build G1 Twoshort\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) TwoShort: Build Y1 Twoshort\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) TwoShort: Build Y2 Twoshort\n\n14) SilentTitan: Discover G3 Silenttitan Y3 Soul\n\n15) TwoShort: Discover Y1 Twoshort G2 Grogar\n\tTwoShort: Well that was unexpected.\n\n16) SilentTitan: Trade Y1 G1 Silenttitan\n\n17) TwoShort: Build Y1 Grogar\n\n18) SilentTitan: Build G2 Soul\n\n19) TwoShort: Discover Y1 Grogar G3 Greenland\n\n20) SilentTitan: Discover G1 Silenttitan Y3 Sole\n\n21) TwoShort: Build G2 Twoshort\n\n22) SilentTitan: Move G3 Soul Silenttitan\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Greenland\nBuild Y3 Grogar\n\n24) SilentTitan: Sacrifice G2 Soul\nBuild Y3 Silenttitan\nBuild G2 Sol\n\n25) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Greenland Silenttitan\nMove Y2 Greenland Silenttitan\nCatastrophe Silenttitan Yellow\n\n26) SilentTitan: Build G3 Silenttitan\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n28) SilentTitan: Trade G2 Y2 Sol\n\n29) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Bluonia Sole\nMove G1 Sole Silenttitan\n\n30) SilentTitan: Trade G3 Y3 Silenttitan\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Twoshort\nCatastrophe Silenttitan Green\n\n32) SilentTitan: Build G1 Sol\n\tSilentTitan: you know... I&#39;ve thought about this a lot.  I don&#39;t believe I could handle the once or twice per six months that I play against you and nenme.... If I wasn&#39;t winning virtually every other game I play. \n\tTwoShort: If it helps any, you&#39;re definitely on the short list of players who put up enough fight to make it satisfying when I win. :)\n\n33) TwoShort: Discover G2 Twoshort B2 Bluonia\n\n34) SilentTitan: Sacrifice G1 Sol\nBuild Y2 Silenttitan\n\n35) TwoShort: Build G1 Twoshort\n\n36) SilentTitan: Trade Y3 G3 Silenttitan\n\n37) TwoShort: Discover Y1 Grogar G3 Greenland\n\n38) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild G2 Sol\n\n39) TwoShort: Build G3 Bluonia\n\n40) SilentTitan: Sacrifice Y2 Sol\nMove G1 Sol Bluonia\nMove G2 Sol Bluonia\nCatastrophe Bluonia Green\n\n41) TwoShort: Discover Y1 Twoshort B2 Blu2eb\n\n42) SilentTitan: Trade Y3 G3 Silenttitan\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Blu2eb\nBuild Y3 Twoshort\nBuild G1 Twoshort\n\n44) SilentTitan: Build G2 Silenttitan\n\n45) TwoShort: Trade Y2 R2 Blu2eb\n\n46) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild G2 Sole\nBuild G3 Silenttitan\n\n47) TwoShort: Discover G1 Twoshort R2 Rover\n\n48) SilentTitan: Discover G2 Silenttitan G3 Yaz\n\n49) TwoShort: Move R2 Blu2eb Yaz\n\n50) SilentTitan: Sacrifice G2 Yaz\nBuild G2 Silenttitan\nPass\n\n51) TwoShort: Build R1 Yaz\n\tSilentTitan: do you have any idea why the time isn&#39;t moving?\n\n52) SilentTitan: Discover Y2 Sol B2 Yell\n\n53) TwoShort: Move Y1 Greenland Rover\n\n54) SilentTitan: Discover G2 Silenttitan G3 Yikes\n\n55) TwoShort: Build R1 Yaz\n\n56) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Sol Yell\nMove Y2 Yell Twoshort\n\n57) TwoShort: Trade Y3 R3 Twoshort\n\n58) SilentTitan: Sacrifice G2 Sole\nBuild Y2 Twoshort\nBuild Y3 Yell\n\n59) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Blu2eb Twoshort\nMove Y1 Twoshort Yell\nMove Y1 Twoshort Yell\nCatastrophe Yell Yellow\n\n60) SilentTitan: Attack G1 Twoshort North\n\tTwoShort: Ack!  \n\n61) TwoShort: Sacrifice R2 Yaz\nAttack Y2 Twoshort\nAttack Y2 Twoshort\n\n62) SilentTitan: Sacrifice G2 Yikes\nBuild G2 Twoshort\nBuild G2 Silenttitan\n\n63) TwoShort: Attack G2 Twoshort\n\n64) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Twoshort\nBuild G3 Sole\nBuild G3 Silenttitan\n\n65) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Yaz\nBuild R3 Twoshort\n\n66) SilentTitan: Trade G3 Y3 Silenttitan\n\n67) TwoShort: Sacrifice R2 Yaz\nAttack G2 Twoshort\nAttack G1 Twoshort\n\n68) SilentTitan: Discover G3 Sole Y2 New\n\n69) TwoShort: Move R3 Twoshort New\n\n70) SilentTitan: Discover G3 New B1 Old\n\n71) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Yaz\nBuild R3 New\n\n72) SilentTitan: Trade G3 Y3 Old\n\n73) TwoShort: Sacrifice Y2 Twoshort\nDiscover R3 New B3 Base\nMove R3 New Base\n\n74) SilentTitan: Move Y3 Old Yaz\n\n75) TwoShort: Sacrifice Y2 Twoshort\nMove R3 Base Silenttitan\nMove R3 Base Silenttitan\n\tTwoShort: Great game, by the way.  I&#39;ve thought I saw how to finish you off 5 or 6 times and you keep holding me off and threatening to make a comeback.  This time I&#39;m pretty sure I&#39;ve got you though :)\n\n76) SilentTitan: Trade Y3 G3 Silenttitan\n\tSilentTitan: yes you do.  Thanks for the game\n\n77) TwoShort: Sacrifice R2 Yaz\nAttack G3 Silenttitan\nAttack G2 Silenttitan\n\n\nHomeworlds Online (SDG# 20680)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.14, Ended: 2011.9.24\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld B2 R1 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) BloodRumpus: Build B1 Bloodrumpus\n\n12) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n13) BloodRumpus: Trade G3 Y3 Bloodrumpus\n\n14) SilentTitan: Build G1 Sol\n\n15) BloodRumpus: Build G2 Bloodrumpus\n\n16) SilentTitan: Discover G1 Sol Y3 Sole\n\n17) BloodRumpus: Discover B1 Bloodrumpus G3 Regulus\n\n18) SilentTitan: Build G2 Silenttitan\n\n19) BloodRumpus: Build B1 Regulus\n\n20) SilentTitan: Build G2 Sole\n\n21) BloodRumpus: Build B2 Regulus\n\n22) SilentTitan: Trade G3 B3 Silenttitan\n\n23) BloodRumpus: Trade G1 R1 Bloodrumpus\n\n24) SilentTitan: Discover B3 Silenttitan G1 Slick\n\n25) BloodRumpus: Sacrifice Y3 Bloodrumpus\nMove B1 Regulus Slick\nM B1 Regulus Slick\nM B2 Regulus Slick\nC Slick B\n\n26) SilentTitan: Discover Y1 Silenttitan B1 Sloop\n\n27) BloodRumpus: Trade G2 Y2 Bloodrumpus\n\n28) SilentTitan: Sacrifice G2 Sole\nBuild Y2 Silenttitan\nBuild Y2 Sloop\n\n\tBloodRumpus: woof... I really blew it.\n\nHomeworlds Online (SDG# 20847)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.15, Ended: 2011.11.6\nParticipants: kingsamj (S), BloodRumpus (N)\nWinner: kingsamj\n\n1) BloodRumpus: Homeworld B2 R3 G3\n\n2) kingsamj: Homeworld B3 G1 Y3\n\n3) BloodRumpus: B G1 Bloodrumpus\n\n4) kingsamj: Build Y1 Kingsamj\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) kingsamj: Trade Y1 R1 Kingsamj\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) kingsamj: Build Y1 Kingsamj\n\n9) BloodRumpus: Build G1 Bloodrumpus\n\n10) kingsamj: Discover Y1 Kingsamj G2 Caprica\n\n11) BloodRumpus: D G1 Bloodrumpus B1 Tauron\n\n12) kingsamj: Build Y1 Caprica\n\n13) BloodRumpus: Trade G1 R1 Bloodrumpus\n\n14) kingsamj: Build Y2 Kingsamj\n\n15) BloodRumpus: Build Y2 Bloodrumpus\n\n16) kingsamj: Trade Y2 G2 Kingsamj\n\n17) BloodRumpus: Discover Y1 Bloodrumpus G1 Sagitaron\n\n18) kingsamj: Build Y2 Kingsamj\n\n19) BloodRumpus: Build Y2 Sagitaron\n\n20) kingsamj: Discover G2 Kingsamj B2 Kobol\n\n21) BloodRumpus: Build Y3 Bloodrumpus\n\n22) kingsamj: Move Y2 Kingsamj Kobol\n\n23) BloodRumpus: Sacrifice Y1 Sagitaron\nDiscover G1 Tauron Y3 Earth\n\n24) kingsamj: Build Y1 Kingsamj\n\n25) BloodRumpus: Build G2 Earth\n\n26) kingsamj: Build G3 Kobol\n\n27) BloodRumpus: Build G3 Bloodrumpus\n\n28) kingsamj: Trade G2 R2 Kobol\n\n29) BloodRumpus: Discover G2 Earth B2 Ragnar\n\n30) kingsamj: Build G2 Kobol\n\n31) BloodRumpus: Sacrifice G1 Earth\nB G1 Ragnar\n\n32) kingsamj: Move G3 Kobol Sagitaron\n\n33) BloodRumpus: Sacrifice Y2 Sagitaron\nMove G1 Ragnar Sagitaron\nMove G2 Ragnar Sagitaron\nCatastrophe Sagitaron G\n\n34) kingsamj: Build G1 Kobol\n\n35) BloodRumpus: Discover G3 Bloodrumpus R1 Tauron\n\n36) kingsamj: Discover Y1 Caprica G1 Earth\n\n37) BloodRumpus: Move Y2 Bloodrumpus Tauron\n\n38) kingsamj: Move G2 Kobol Earth\n\n39) BloodRumpus: T R1 B1 Bloodrumpus\n\n40) kingsamj: Build Y2 Earth\n\n\nHomeworlds Online (SDG# 20851)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.15, Ended: 2011.9.21\nParticipants: Subhan64 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) Subhan64: Homeworld Y1 B3 G3\n\n3) ajo: Build G1 Ajo\n\n4) Subhan64: Build G1 Subhan64\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) Subhan64: Discover G1 Subhan64 B2 Blueberry\n\n7) ajo: Build G1 Ajo\n\tajo: Whoops. I ought to remember how not to screw that up every single time.\n\n8) Subhan64: Build G2 Subhan64\n\n9) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n10) Subhan64: Build G3 Subhan64\n\n11) ajo: Trade G2 Y2 Alpha\n\n12) Subhan64: Trade G3 Y3 Subhan64\n\tajo: Looks like it worked out anyway. :)\n\n13) ajo: Trade G1 R1 Ajo\n\n14) Subhan64: Move G3 Subhan64 Blueberry\n\n15) ajo: Build Y1 Alpha\n\n16) Subhan64: Trade G1 Y1 Blueberry\n\n17) ajo: Sacrifice Y2 Alpha\nMove Y1 Alpha Blueberry\nMove Y1 Blueberry Subhan64\n\n18) Subhan64: Move Y3 Subhan64 Blueberry\n\n19) ajo: Sacrifice G2 Ajo\nBuild G1 Ajo\nBuild Y2 Subhan64\n\n20) Subhan64: Trade G2 R2 Subhan64\n\tajo: Check.\n\n21) ajo: Sacrifice R1 Ajo\nAttack R2 Subhan64\n\tajo: That doesn&#39;t get you out of check! :P  It&#39;s a rated game, so I&#39;ll take the win. Better luck next time. :)\n\tSubhan64: nothing would have got me out of check\n\tajo: My analyzer says 304 distinct possible moves would have gotten you out of check. For example, &quot;move g3 Blueberry Subhan64&quot; would have done the trick, and left you in a decent position after I catastrophed yellow.\n\tSubhan64: Oh, so you are not playing your own games?\n\tSubhan64: Wouldn&#39;t have saved me anyway.  If I moved g3 back home, I still would have lost one of my homeworld stars.  This is a position that is so incredibly week that people will nearly always resign at that point rather than drag out the game.\n\tajo: I do play my own games. I use my analyzer primarily to verify before announcing &quot;Checkmate&quot;, just to avoid looking stupid by being wrong. ;)\n\tajo: &quot;[Losing half a homeworld] is so incredibly weak that people will nearly always resign at that point...&quot; Nope, definitely not true. Especially in this case; you would have had quite the material advantage. After the catastrophe, I&#39;d be left with r1g1g3 to your y1g2g3y3.\n\tSubhan64: There&#39;s a lot more to the advantage then mere piececount.  The location of the pieces is also very important, and I think it&#39;s really easy to underestimate the effect of the asymmetrical distance relationship between the two homeworlds -  there are now 2 sizes of stars which are 1 step away from the dimminished homeworld, whereas only 1 size can directly reach the opponenets.\r\n\n\tajo: Sure, you were worse off after I blew up your homeworld than before; otherwise I wouldn&#39;t have done it! But the material advantage makes up quite a bit of the difference. If I were you, I wouldn&#39;t have resigned when you did.\n\tajo: But then again, it does save time. ;) Resigning immediately when you make a mistake might lead to more rapid improvement in your early game, even if it does decrease your win percentage in the short run.\n\n\nHomeworlds Online (SDG# 20854)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.15, Ended: 2011.9.19\nParticipants: meckanical (S), BloodRumpus (N)\nWinner: BloodRumpus\n\n1) BloodRumpus: H B1 R3 G3\n\n2) meckanical: Homeworld G2 Y1 B3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) meckanical: Build B1 Meckanical\n\n5) BloodRumpus: T G1 Y1 Bloodrumpus\n\n6) meckanical: Trade B1 G1 Meckanical\n\n7) BloodRumpus: B Y1 Bloodrumpus\n\n8) meckanical: Build B1 Meckanical\n\n9) BloodRumpus: Discover Y1 Bloodrumpus G2 Rigel\n\n10) meckanical: Discover G1 Meckanical Y3 Solar\n\n11) BloodRumpus: Build Y2 Rigel\n\n12) meckanical: Build G1 Solar\n\n13) BloodRumpus: Build Y2 Bloodrumpus\n\n14) meckanical: Move B1 Meckanical Solar\n\n15) BloodRumpus: Discover Y2 Bloodrumpus G2 Sirius\n\n16) meckanical: Build B1 Solar\n\n17) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y2 Sirius\nB Y3 Sirius\nBuild Y3 Bloodrumpus\n\n18) meckanical: Build B2 Solar\n\tmeckanical: Why do I get the feeling that this is about to suck?\n\n19) BloodRumpus: Trade Y1 R1 Bloodrumpus\n\tBloodRumpus: haha, well i have some consolidation to do before it starts to suck... give it a couple moves :P\n\n20) meckanical: Build B2 Meckanical\n\n21) BloodRumpus: Sacrifice Y2 Sirius\nMove Y3 Sirius Solar\nMove Y3 Solar Meckanical\n\n22) meckanical: Trade B3 R3 Meckanical\n\n23) BloodRumpus: Sacrifice R1 Bloodrumpus\nAttack R3 Meckanical\n\n24) meckanical: Sacrifice G1 Solar\nBuild B2 Meckanical\n\tBloodRumpus: its those sacrifices you gotta watch out for!\n\tmeckanical: BALLZ! I totally forgot that was a possibility haha... Makes my trade for a Red #3 seem pretty silly :P GG! Rematch once you&#39;re done with me!\n\n25) BloodRumpus: Sacrifice R3 Meckanical\nAttack B2 Meckanical\nAttack B2 Meckanical\nPass\n\tBloodRumpus: yep!\n\tBloodRumpus: btw you don&#39;t have to sac a green at Solar to build ships, just the fact that its in the system is sufficient.\n\tmeckanical: oooh good point. \n\tBloodRumpus: oh wait i missread what actually happened... I think your move was totally correct (the sac move)\n\n\nHomeworlds Online (SDG# 20821)\nStarted: 2011.9.18, Ended: 2011.10.8\nParticipants: SirRuthvenMurgatroyd (S), jimpurbrick (N)\nWinner: SirRuthvenMurgatroyd\n\n1) jimpurbrick: Homeworld R1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3\n\n3) jimpurbrick: Build G1 Jimpurbrick\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) jimpurbrick: Trade G1 Y1 Jimpurbrick\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) jimpurbrick: Discover Y1 Jimpurbrick G3 Gallifrey\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) jimpurbrick: Build Y1 Gallifrey\n\n10) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20884)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.19, Ended: 2011.10.7\nParticipants: meckanical (S), BloodRumpus (N)\nWinner: BloodRumpus\n\n1) BloodRumpus: Homeworld B1 R2 G3\n\n2) meckanical: Homeworld B1 G3 Y3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) meckanical: Build Y1 Meckanical\n\n5) BloodRumpus: B G1 Bloodrumpus\n\n6) meckanical: Trade Y1 G1 Meckanical\n\n7) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n8) meckanical: Build G1 Meckanical\n\n9) BloodRumpus: Discover G1 Bloodrumpus Y3 Sirius\n\n10) meckanical: Trade G1 B1 Meckanical\n\n11) BloodRumpus: Build G1 Sirius\n\n12) meckanical: Build B2 Meckanical\n\n13) BloodRumpus: Discover G1 Sirius B2 Rigel\n\n14) meckanical: Trade B2 R2 Meckanical\n\n15) BloodRumpus: Build G2 Sirius\n\n16) meckanical: Move R2 Meckanical Rigel\n\n17) BloodRumpus: Sacrifice Y1 Bloodrumpus\nMove G1 Rigel Meckanical\n\n18) meckanical: Trade Y3 R3 Meckanical\n\n19) BloodRumpus: Sacrifice G2 Sirius\nBuild G2 Meckanical\nBuild G2 Meckanical\nCatastrophe Meckanical G\n\n20) meckanical: Trade R2 G2 Rigel\n\tmeckanical: oooooh shit... i just realized what you were doing :-/\n\tBloodRumpus: well its not gonna be quite as awesome since i won&#39;t be able to take out your big ship now :(\n\n21) BloodRumpus: Build G1 Bloodrumpus\n\tBloodRumpus: ...but I&#39;m still pleased with the outcome :P\n\tmeckanical: :P at least one of us is!\n\n22) meckanical: Trade B1 G1 Meckanical\n\n23) BloodRumpus: Build G2 Sirius\n\n24) meckanical: Sacrifice G2 Rigel\nBuild G2 Meckanical\nBuild R1 Meckanical\n\n25) BloodRumpus: Trade G1 B1 Bloodrumpus\n\n26) meckanical: Build R1 Meckanical\n\n27) BloodRumpus: Build B2 Bloodrumpus\n\n28) meckanical: Trade R1 Y1 Meckanical\n\n29) BloodRumpus: Trade B1 R1 Bloodrumpus\n\n30) meckanical: Move R3 Meckanical Sirius\n\n31) BloodRumpus: Discover G2 Sirius Y2 Caprica\n\n32) meckanical: Attack G1 Sirius\n\n33) BloodRumpus: Build G1 Caprica\n\n34) meckanical: Trade G2 R2 Meckanical\n\n35) BloodRumpus: Build B1 Bloodrumpus\n\n36) meckanical: Build G2 Meckanical\n\n37) BloodRumpus: S B1 Bloodrumpus\nT G1 R1 Caprica\n\n38) meckanical: Move R3 Sirius Caprica\n\n39) BloodRumpus: Sacrifice G2 Caprica\nBuild R2 Caprica\nBuild R3 Caprica\nCatastrophe Caprica R\n\n40) meckanical: Move R2 Meckanical Sirius\n\n41) BloodRumpus: Build B1 Bloodrumpus\n\tmeckanical: oh goddamn! those damn sacrifices :)\n\n42) meckanical: Trade G2 B2 Meckanical\n\tBloodRumpus: haha yep\n\n43) BloodRumpus: Trade R1 Y1 Bloodrumpus\n\n44) meckanical: Build R1 Sirius\n\n45) BloodRumpus: Discover B1 Bloodrumpus G3 Zepher\n\n46) meckanical: Move R2 Sirius Bloodrumpus\n\n47) BloodRumpus: Attack R2 Bloodrumpus\n\n48) meckanical: Build B2 Meckanical\n\tmeckanical: hmmm\n\n49) BloodRumpus: Sacrifice Y1 Bloodrumpus\nM B1 Zepher Meckanical\nC Meckanical B\n\tmeckanical: oooooh your red star! hahaha.... well fuck.\n\n\nHomeworlds Online (SDG# 20890)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.20, Ended: 2011.11.19\nParticipants: MagicJohn (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B1 R2 G3\n\n2) MagicJohn: Homeworld Y1 B3 G3\n\tMandrel: Have a good game.\n\tMagicJohn: Thanks for the game.  I&#39;ve been in this ladder for quite some time and NOBODY seems to pick up challenges.  Standings-wise there is little advantage to playing folks on a lower rung of the ladder than yourself, but I thought the thing was designed to encourage and reward folks who would play the game.   There, I&#39;m done ranting.  Have a good game! \n\n3) Mandrel: Build G1 Mandrel\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Mandrel: Build Y1 Mandrel\n\n8) MagicJohn: Trade G1 R1 Magicjohn\n\n9) Mandrel: Build Y2 Mandrel\n\n10) MagicJohn: Build G1 Magicjohn\n\n11) Mandrel: Discover Y1 Mandrel B3 Slow\n\n12) MagicJohn: Discover G1 Magicjohn Y2 Old Yeller\n\n13) Mandrel: Build Y2 Mandrel\n\n14) MagicJohn: Build G1 Old\n\n15) Mandrel: Discover Y2 Mandrel G3 Kings\n\n16) MagicJohn: Build G2 Old\n\n17) Mandrel: B G2 Mandrel\n\n18) MagicJohn: Move G2 Old Slow\n\n19) Mandrel: Discover Y1 Slow B2 Helix\n\n20) MagicJohn: Trade G3 Y3 Magicjohn\n\n21) Mandrel: Build Y3 Kings\n\n22) MagicJohn: Trade Y3 G3 Magicjohn\n\n23) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Mandrel\nBuild G3 Mandrel\nBuild Y3 Helix\n\n24) MagicJohn: Move G1 Old Kings\n\n25) Mandrel: Sacrifice Y2 Kings\nMove Y1 Helix Magicjohn\nMove Y3 Helix Magicjohn\n\n26) MagicJohn: Discover G1 Old Y3 Grayhavens\n\n27) Mandrel: Trade G2 R2 Mandrel\n\n28) MagicJohn: Attack Y3 Magicjohn\n\n29) Mandrel: Sacrifice R2 Mandrel\nAttack R1S Magicjohn\nAttack G1S Magicjohn\n\n30) MagicJohn: Trade Y3 R3 Magicjohn\n\n31) Mandrel: Sacrifice G2 Mandrel\nBuild R1 Magicjohn\nBuild R1 Magicjohn\nCatastrophe Magicjohn R\n\n32) MagicJohn: Trade G2 R2 Slow\n\n33) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Magicjohn\nBuild G2 Magicjohn\nBuild Y2 Kings\nCatastrophe Magicjohn G\n\n\tMandrel: Thanks for the game.\n\tMagicJohn: Eventually I will get the hang of this game. Complex lil&#39; devil, isn&#39;t it.....\n\nHomeworlds Online (SDG# 20650)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.21, Ended: 2011.10.1\nParticipants: BloodRumpus (S), caru (N), ajo (E)\nWinner: ajo\n\n1) caru: Homeworld B1 Y2 G3\n\tajo: This will be my first-ever three-player game of Homeworlds on SDG. Am I correct in assuming that since the &quot;Variants&quot; on this match don&#39;t include &quot;Sinister&quot;, it&#39;s a &quot;last man standing&quot; sort of thing?\n\tajo: ...self-correction: it&#39;s a &quot;first to get someone else out&quot; sort of thing. Right?\n\n2) ajo: Homeworld R1 B2 G3\n\tDanner: &quot;The standard end-of-game condition is Last Man Standing&quot; :)\r\nhttp://superdupergames.org/gameinfo.html?game=homeworlds\n\n3) BloodRumpus: Homeworld R2 B3 G3\n\tajo: Thanks, Danner. I was thrown off by the fact that in the first couple of multiplayer non-Sinister archive games I looked at, the games ended with multiple homeworlds still on the map and unconquered. But on closer inspection I see that those players had already resigned. Makes sense now.\n\n4) caru: Build G1 Caru\n\n5) ajo: Build G1 Ajo\n\n6) BloodRumpus: Build G1 Bloodrumpus\n\n7) caru: Trade G1 Y1 Caru\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) BloodRumpus: T G1 Y1 Bloodrumpus\n\n10) caru: Build G1 Caru\n\n11) ajo: Build G1 Ajo\n\n12) BloodRumpus: Build G1 Bloodrumpus\n\n13) caru: Trade G1 B1 Caru\n\n14) ajo: Build G1 Ajo\n\n15) BloodRumpus: T G1 B1 Bloodrumpus\n\n16) ajo: Discover G1 Ajo B3 Alpha\n\n\tBloodRumpus: Whoa that was weird... Yeah i&#39;d rather just call it quits.\n\nHomeworlds Online (SDG# 20906)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.22, Ended: 2011.10.26\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\tDanner: Hello again. :)\n\n2) ajo: Homeworld B3 Y2 G3\n\n3) Danner: Homeworld B1 Y2 G3\n\n4) ajo: Build G1 Ajo\n\n5) Danner: Build G1 Danner\n\n6) ajo: Trade G1 R1 Ajo\n\n7) Danner: Trade G1 R1 Danner\n\n8) ajo: Build G1 Ajo\n\n9) Danner: Build G1 Danner\n\n10) ajo: Discover G1 Ajo B1 Alpha\n\tajo: Copycat. ;)\n\n11) Danner: Discover G1 Danner Y3 Beta\n\tDanner: :)\n\n12) ajo: Build G1 Ajo\n\n13) Danner: Build G2 Danner\n\n14) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n15) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild G3 Beta\nBuild R1 Danner\n\n16) ajo: Trade G2 Y2 Alpha\n\n17) Danner: Discover G1 Beta Y1 Gamma\n\n18) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild R2 Ajo\n\n19) Danner: Move R1 Danner Beta\n\n20) ajo: Move R2 Ajo Gamma\n\n21) Danner: Sacrifice G3 Beta\nBuild G3 Gamma\nBuild R2 Beta\nPass\n\n22) ajo: Sacrifice G2 Alpha\nBuild R2 Ajo\nBuild R3 Ajo\n\n23) Danner: Sacrifice R1 Beta\nAttack R2S Gamma\n\n24) ajo: Move R3 Ajo Alpha\n\n25) Danner: Sacrifice G3 Danner\nBuild R1 Gamma\nBuild R3 Beta\nBuild R3 Danner\n\n26) ajo: Discover G2 Alpha B3 Delta\n\n27) Danner: Discover G3 Gamma G3 Epsilon\n\n28) ajo: Sacrifice G3 Ajo\nBuild G2 Delta\nBuild G3 Ajo\nBuild Y1 Alpha\n\n29) Danner: Sacrifice G3 Epsilon\nBuild G3 Danner\nBuild G3 Gamma\nPass\n\n\tDanner: What happened? Your clock is frozen!\n\nHomeworlds Online (SDG# 20915)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.23, Ended: 2011.9.26\nParticipants: goulo (S), Subhan64 (N)\nWinner: goulo\n\n\tSubhan64: damn, sorry, I spaced out on this :(\n\tgoulo: Yeah, kind of anticlimactic way to win. :)\n\nHomeworlds Online (SDG# 20902)\nVariants: &quot;Hard time&quot;\nStarted: 2011.9.28, Ended: 2011.11.8\nParticipants: Subhan64 (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y1 B2 G3\n\n2) Subhan64: Homeworld G3 B1 Y3\n\n3) Jesse: Build G1 Jesse\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) Jesse: Discover Y1 Jesse G3 Supermoss\n\n8) Subhan64: Discover G1 Subhan64 Y2 Bigbird\n\n9) Jesse: Build G1 Jesse\n\n10) Subhan64: Build G1 Bigbird\n\n11) Jesse: Discover G1 Jesse B3 Superlake\n\n12) Subhan64: Move G1 Bigbird Superlake\n\n13) Jesse: Trade G1 R1 Superlake\n\n14) Subhan64: Sacrifice G1 Superlake\nBuild Y1 Subhan64\n\n15) Jesse: Build Y2 Supermoss\n\n16) Subhan64: Trade Y1 R1 Subhan64\n\n17) Jesse: Build G1 Jesse\n\n18) Subhan64: Discover R1 Subhan64 G2 Kermit\n\n19) Jesse: Move Y2 Supermoss Kermit\n\n20) Subhan64: Build Y1 Subhan64\n\n21) Jesse: Sacrifice R1 Superlake\nAttack R1 Kermit\n\n22) Subhan64: Discover Y1 Subhan64 G2 Karopi\n\n23) Jesse: Discover G1 Jesse Y3 Supercanary\n\n24) Subhan64: Sacrifice G1 Bigbird\nBuild Y2 Karopi\n\n25) Jesse: Build G1 Jesse\n\n26) Subhan64: Move Y1 Karopi Subhan64\n\n27) Jesse: Sacrifice G3 Jesse\nBuild G1 Supercanary\nBuild G2 Supercanary\nBuild G3 Jesse\n\n28) Subhan64: Build Y2 Karopi\n\n29) Jesse: Build Y3 Supermoss\n\n30) Subhan64: Trade Y1 R1 Subhan64\n\n31) Jesse: Build Y1 Kermit\n\n32) Subhan64: Move Y2 Karopi Supermoss\n\n33) Jesse: Discover G1 Supercanary B2 Lake\n\n34) Subhan64: Move R1 Subhan64 Lake\n\n35) Jesse: Sacrifice R1 Kermit\nAttack R1 Lake\n\n36) Subhan64: Move Y2 Supermoss Karopi\n\n37) Jesse: Move Y1 Supermoss Lake\n\n38) Subhan64: Discover Y2 Karopi B3 Cookie_monster\n\n39) Jesse: Sacrifice Y3 Supermoss\nMove Y1 Lake Subhan64\nMove Y1 Kermit Subhan64\nMove Y2 Kermit Subhan64\nCatastrophe Subhan64 Y\n\n\tJesse: Thanks for the game.\n\tSubhan64: Thanks! I still lose most of the games I play, but I&#39;m slowly getting better!\n\nHomeworlds Online (SDG# 20870)\nStarted: 2011.10.2, Ended: 2011.11.18\nParticipants: SirRuthvenMurgatroyd (S), lorgar (N)\nWinner: SirRuthvenMurgatroyd\n\n1) lorgar: Homeworld B3 Y2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) lorgar: Discover G1 Lorgar B1 Mellowmood\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) lorgar: Build G1 Mellowmood\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) lorgar: Trade G1 Y1 Mellowmood\n\n10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n11) lorgar: Build G1 Lorgar\n\n12) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n13) lorgar: Build G2 Mellowmood\n\n14) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Sirruthvenmurgatroyd\nBuild G3 Sirruthvenmurgatroyd\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild Y1 Mellowmood\nBuild Y2 Mellowmood\nBuild G3 Lorgar\n\n16) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove G2 Sol Mellowmood\nMove G1 Sol Mellowmood\nCatastrophe Mellowmood G\n\n17) lorgar: Sacrifice Y2 Mellowmood\nDiscover Y1 Mellowmood Y2 Stop\nDiscover Y1 Mellowmood Y2 Post\n\n18) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n19) lorgar: Discover Y1 Post G3 Ost\n\n20) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n21) lorgar: Build Y2 Ost\n\n22) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd\nMove R3 Sirruthvenmurgatroyd Ost\nDiscover R3 Ost R1 Red\nMove R3 Red Lorgar\n\n\nHomeworlds Online (SDG# 20773)\nStarted: 2011.10.3, Ended: 2011.12.19\nParticipants: daselva (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) daselva: Homeworld B1 R2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) daselva: Build G1 Daselva\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) daselva: Trade G3 B3 Daselva\n\n7) lorgar: Discover B1 Lorgar G2 Maz\n\n8) daselva: Build B2 Daselva\n\n9) lorgar: Build B2 Maz\n\n10) daselva: Trade B3 Y3 Daselva\n\n11) lorgar: Trade B1 R1 Maz\n\n12) daselva: Discover B2 Daselva G3 S1\n\n13) lorgar: Build R1 Maz\n\n14) daselva: Build Y1 Daselva\n\n15) lorgar: Trade R1 Y1 Maz\n\n16) daselva: Sacrifice Y1 Daselva\nDiscover B2 S1 G2 S2\n\n17) lorgar: Build G1 Lorgar\n\n18) daselva: Build Y1 Daselva\n\n19) lorgar: Trade G1 R1 Lorgar\n\n20) daselva: Discover Y1 Daselva G3 S3\n\n21) lorgar: Build B1 Maz\n\n22) daselva: Move Y1 S3 S2\n\n23) lorgar: Discover B2 Maz G3 Muse\n\n24) daselva: Build G1 Daselva\n\n25) lorgar: Build G1 Lorgar\n\n26) daselva: Trade B2 R2 S2\n\n27) lorgar: Build B2 Muse\n\n28) daselva: Move R2 S2 Muse\n\n29) lorgar: Sacrifice R1 Maz\nAttack R2S Muse\n\n30) daselva: Discover Y1 S2 G3 S3\n\n31) lorgar: Build B2 Maz\n\n32) daselva: Build G2 Daselva\n\n33) lorgar: Build B3 Maz\n\n34) daselva: Trade G2 R2 Daselva\n\n35) lorgar: Build B3 Muse\n\n36) daselva: Build G2 Daselva\n\n37) lorgar: Build R1 Muse\n\n38) daselva: Move R2 Daselva S3\n\n39) lorgar: Trade B2 G2 Muse\n\n40) daselva: Sacrifice G2 Daselva\nBuild R1 S3\nBuild R3 S3\n\n41) lorgar: Discover B1 Maz R3 Moose\n\n42) daselva: Discover R3 S3 Y2 S4\n\n43) lorgar: Build R3 Lorgar\n\n44) daselva: Discover R2 S3 Y2 S5\n\n45) lorgar: Sacrifice B2 Maz\nTrade R3 Y3 Lorgar\nTrade G2 Y2 Muse\n\n46) daselva: Build R3 S3\n\n47) lorgar: Sacrifice Y3 Lorgar\nMove B1 Moose Daselva\nMove B2 Muse Daselva\nMove B3 Muse Daselva\nCatastrophe Daselva Blue\n\n48) daselva: Move R3 S4 Muse\n\n49) lorgar: Sacrifice Y2 Muse\nMove R2 Muse Daselva\nMove R1 Muse Daselva\n\n\nHomeworlds Online (SDG# 20848)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.3, Ended: 2011.11.12\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B1 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) lorgar: Discover G1 Lorgar B2 Peyotl\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) lorgar: Build G1 Lorgar\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) lorgar: Build G1 Lorgar\n\n11) SilentTitan: Build G2 Silenttitan\n\n12) lorgar: Build G2 Peyotl\n\n13) SilentTitan: Build G2 Silenttitan\n\n14) lorgar: Trade G2 B2 Peyotl\n\n15) SilentTitan: Discover G2 Silenttitan B3 Sol\n\n16) lorgar: Trade G1 R1 Lorgar\n\n17) SilentTitan: Build B2 Silenttitan\n\n18) lorgar: Build G1 Peyotl\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Sol\nBuild G3 Sol\nBuild G3 Silenttitan\n\n20) lorgar: Trade G1 Y1 Peyotl\n\n21) SilentTitan: Trade G2 Y2 Sol\n\n22) lorgar: Move G1 Peyotl Sol\n\n23) SilentTitan: Trade G3 R3 Sol\n\n24) lorgar: Discover B2 Peyotl G3 Los\n\n25) SilentTitan: Discover B2 Silenttitan Y3 Soul\n\n26) lorgar: Sacrifice G1 Sol\nBuild B3 Los\n\n27) SilentTitan: Discover B1 Silenttitan Y3 Taos\n\n28) lorgar: Trade B2 R2 Los\n\n29) SilentTitan: Sacrifice G2 Sol\nBuild B2 Taos\nBuild B3 Soul\n\n30) lorgar: Build R1 Los\n\n31) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B2 Soul Y2 Alpha\nDiscover B2 Taos Y2 Beta\n\n32) lorgar: Trade R1 Y1 Los\n\n33) SilentTitan: Sacrifice B3 Soul\nTrade R3 Y3 Sol\nTrade B2 G2 Alpha\nTrade B2 G2 Beta\n\n34) lorgar: Trade G3 R3 Lorgar\n\n35) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Alpha\nBuild G1 Beta\nBuild G3 Silenttitan\n\n36) lorgar: Move B3 Los Beta\n\n37) SilentTitan: Sacrifice G2 Beta\nBuild G2 Beta\nBuild G3 Silenttitan\n\n38) lorgar: Sacrifice R2 Los\nAttack G2N Beta\nAttack G1N Beta\n\n39) SilentTitan: Trade G3 R3 Silenttitan\n\n40) lorgar: Move G2 Beta Los\n\n41) SilentTitan: Sacrifice G2 Alpha\nBuild B2 Taos\nBuild B2 Taos\n\n42) lorgar: Discover G1 Beta B3 Son\n\n43) SilentTitan: Sacrifice B2 Taos\nTrade Y2 R2 Sol\nTrade G2 Y2 Silenttitan\n\n44) lorgar: Trade R3 G3 Lorgar\n\n45) SilentTitan: Build G2 Alpha\n\n46) lorgar: Sacrifice G1 Lorgar\nBuild G1 Son\n\n47) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Alpha Lorgar\nMove G1 Alpha Lorgar\n\n48) lorgar: Build G2 Son\n\n49) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild R1 Silenttitan\nBuild G3 Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: damn it... I was loosing anyway but at a slower pace than the other games...\n\nHomeworlds Online (SDG# 20963)\nStarted: 2011.10.3, Ended: 2011.11.11\nParticipants: SirRuthvenMurgatroyd (S), goblin981 (N)\nWinner: SirRuthvenMurgatroyd\n\n1) goblin981: Homeworld B2 Y3 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) goblin981: Build G1 Goblin981\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) goblin981: Discover G1 Goblin981 Y1 Yw\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) goblin981: Pass\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) goblin981: Build G2 Goblin981\n\n10) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G2 Sirruthvenmurgatroyd\nBuild G3 Sirruthvenmurgatroyd\n\n11) goblin981: Build G3 Yw\n\n12) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20895)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.3, Ended: 2011.12.22\nParticipants: Mandrel (S), agentofchaos (N), lorgar (E)\nWinner: Mandrel\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\tagentofchaos: have fun guys :-)\n\n3) Mandrel: Homeworld B2 R3 G3\n\n4) agentofchaos: Build G1 Agentofchaos\n\tMandrel: Have a good game.\n\n5) lorgar: Build G1 Lorgar\n\n6) Mandrel: Build G1 Mandrel\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) lorgar: Trade G1 B1 Lorgar\n\n9) Mandrel: Trade G1 B1 Mandrel\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) lorgar: Discover B1 Lorgar G2 Xray\n\n12) Mandrel: Build B2 Mandrel\n\n13) agentofchaos: D Y1 Agentofchaos G3 Kakrafoon\n\n14) lorgar: Build G1 Lorgar\n\n15) Mandrel: Trade B2 Y2 Mandrel\n\n16) agentofchaos: Build Y1 Agentofchaos\n\n17) lorgar: Build B2 Xray\n\n18) Mandrel: Build B2 Mandrel\n\n19) agentofchaos: Build Y1 Agentofchaos\n\n20) lorgar: Trade B2 Y2 Xray\n\n21) Mandrel: Discover B2 Mandrel G1 Quiet\n\n22) agentofchaos: Build Y2 Kakrafoon\n\n23) lorgar: Build B2 Xray\n\n24) Mandrel: Build B2 Quiet\n\n25) agentofchaos: Trade Y1 R1 Agentofchaos\n\n26) lorgar: Trade B1 R1 Xray\n\n27) Mandrel: Trade B2 R2 Quiet\n\n28) agentofchaos: Trade Y1 B1 Agentofchaos\n\n29) lorgar: Trade G1 R1 Lorgar\n\n30) Mandrel: Build Y1 Mandrel\n\n31) agentofchaos: Move B1 Agentofchaos Kakrafoon\n\n32) Mandrel: Move Y1 Mandrel Quiet\n\n33) agentofchaos: Build B2 Kakrafoon\n\n34) Mandrel: Build B3 Quiet\n\n35) agentofchaos: Build G1 Agentofchaos\n\n36) Mandrel: Discover B1 Mandrel G1 Spook\n\n37) agentofchaos: Trade B2 R2 Kakrafoon\n\n38) Mandrel: Move B3 Quiet Kakrafoon\n\n\nHomeworlds Online (SDG# 20970)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.3, Ended: 2011.11.23\nParticipants: Subhan64 (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) Subhan64: Homeworld G1 B2 Y3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Subhan64: Build Y1 Subhan64\n\n5) AdamBadura: Trade Y1 R1 Adambadura\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) AdamBadura: Build Y1 Adambadura\n\n8) Subhan64: Build Y1 Subhan64\n\n9) AdamBadura: Trade Y1 G1 Adambadura\n\n10) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n11) AdamBadura: Discover G1 Adambadura Y1 Roadahead\n\n12) Subhan64: Build G2 Bigbird\n\n13) AdamBadura: Build G2 Roadahead\n\n14) Subhan64: Trade Y1 R1 Subhan64\n\n15) AdamBadura: Build Y1 Adambadura\n\n16) Subhan64: Discover R1 Subhan64 G3 Swampthing\n\n17) AdamBadura: Move G2 Roadahead Bigbird\n\n18) Subhan64: Move G2 Bigbird Roadahead\n\n19) AdamBadura: Build G2 Roadahead\n\n20) Subhan64: Build G3 Bigbird\n\n21) AdamBadura: Sacrifice G2 Roadahead\nBuild G2 Bigbird\nBuild R1 Adambadura\nCatastrophe Bigbird G\n\n22) Subhan64: Sacrifice R1 Swampthing\nAttack G1 Roadahead\n\n23) AdamBadura: Move R1 Adambadura Roadahead\n\n24) Subhan64: Discover G1 Roadahead Y2 Roadbehind\n\n25) AdamBadura: Move R1 Roadahead Roadbehind\n\n26) Subhan64: Discover G1 Roadbehind B3 Cookiemonster\n\n27) AdamBadura: Move R1 Roadbehind Cookiemonster\n\n28) Subhan64: Sacrifice G2 Roadahead\nBuild G1 Cookiemonster\nBuild G2 Cookiemonster\n\n29) AdamBadura: Attack G1 Cookiemonster\n\n30) Subhan64: Trade G2 R2 Cookiemonster\n\n31) AdamBadura: Build R1 Cookiemonster\n\n32) Subhan64: Attack G1 Cookiemonster\n\n33) AdamBadura: Attack G1 Cookiemonster\n\n34) Subhan64: Attack G1 Cookiemonster\n\n35) AdamBadura: Build R2 Adambadura\n\tSubhan64: whee! infinite loop!\n\tAdamBadura: Well. I will have to rethink this seriously. Infinite loop is not a good idea for game. I thought this was my best move (and somehow I did not expect you to continue loop) but maybe I will find a better one.\n\n36) Subhan64: Attack R1 Cookiemonster\n\n37) AdamBadura: Build R2 Adambadura\n\n38) Subhan64: Attack R1 Cookiemonster\n\n39) AdamBadura: Discover R2 Adambadura Y1 Onmyway\n\n40) Subhan64: Trade R1 Y1 Cookiemonster\n\n41) AdamBadura: Trade R2 G2 Adambadura\n\n42) Subhan64: Build G2 Cookiemonster\n\n43) AdamBadura: Build G2 Adambadura\n\n44) Subhan64: Build Y2 Subhan64\n\n45) AdamBadura: Move G2 Adambadura Onmyway\n\n46) Subhan64:\nBuild Y2 Subhan64\n\n47) AdamBadura: Sacrifice Y3 Adambadura\nMove Y1 Adambadura Onmyway\nMove Y1 Onmyway Cookiemonster\nMove Y1 Cookiemonster Subhan64\nCatastrophe Subhan64 Y\n\n\tSubhan64: crap, totally missed that, &amp; could have prevented it! Was setting something else up. GG, thanks!\n\tAdamBadura: Yes. I was kind of glad as I felt I&#39;m going to lose. If not for ladder game I would ask you to undo. ;)\n\tSubhan64: Yes, I think I was about 1-2 moves from catastrophe in G in your home system\r\n\n\nHomeworlds Online (SDG# 20969)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.5, Ended: 2011.11.2\nParticipants: captncavern (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B1 G3\n\n2) captncavern: Homeworld Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) captncavern: Build G1 Captncavern\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) captncavern: Build G1 Captncavern\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) captncavern: Trade G1 R1 Captncavern\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) captncavern: Build R1 Captncavern\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) captncavern: Build R1 Captncavern\n\n13) SilentTitan: Discover B2 Silenttitan G3 Sol\n\n\n14) captncavern: Discover R1 Captncavern Y2 Ichi\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B2 Sol\nBuild B3 Silenttitan\n\n16) captncavern: Build R2 Captncavern\n\n17) SilentTitan: Trade B3 G3 Silenttitan\n\n18) captncavern: Sacrifice G1 Captncavern\nBuild R2 Ichi\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B2 Sol Y2 Soul\nDiscover B2 Sol Y2 Sole\n\n20) captncavern: Move R2 Ichi Sol\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Sole\nBuild B3 Soul\nBuild B3 Silenttitan\n\n22) captncavern: Attack B2 Sol\n\n23) SilentTitan: Sacrifice B3 Soul\nTrade B3 R3 Sole\nTrade B3 G3 Silenttitan\nTrade B2 G2 Sole\n\n24) captncavern: Trade R1 Y1 Captncavern\n\n25) SilentTitan: Trade B1 Y1 Silenttitan\n\n26) captncavern: Move R2 Captncavern Soul\n\n27) SilentTitan: Sacrifice G2 Sole\nBuild Y1 Silenttitan\nBuild Y3 Silenttitan\n\n28) captncavern: Discover R1 Ichi B3 Ni\n\n29) SilentTitan: Move R3 Sole Sol\n\n30) captncavern: Sacrifice R2 Sol\nAttack B2 Soul\nPass\n\n31) SilentTitan: Attack B2 Sol South\n\n32) captncavern: Discover R2 Soul Y3 San\n\n33) SilentTitan: Move Y1 Silenttitan Sol\n\n34) captncavern: Move B2 Soul San\n\n35) SilentTitan: Build G1 Silenttitan\n\n36) captncavern: Discover Y1 Captncavern G2 Yon\n\n37) SilentTitan: Sacrifice Y3 Silenttitan\nMove R3 Sol Yon\nMove R3 Yon San\nMove B2 Sol Yon\n\tcaptncavern: s y1 captncavern\r\nm r1 ni san\n\n38) captncavern: Move R2 San Yon\n\tcaptncavern: Sorry... I keep typing my commands in the wrong box. And this one wasn&#39;t even valid :)\n\n39) SilentTitan: Sacrifice R3 San\nAttack Y1 Yon South\nAttack R2 Yon South\nPass\n\n40) captncavern: Build G1 Captncavern\n\n41) SilentTitan: Build Y2 Yon\n\n42) captncavern: Discover G1 Captncavern Y2 Go\n\n43) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Yon\nBuild Y3 Silenttitan\nBuild B1 Yon\n\n44) captncavern: Move G1 Go San\n\n45) SilentTitan: Sacrifice Y2 Yon\nMove B1 Yon Captncavern\nMove B2 Yon Captncavern\n\n46) captncavern: Attack B2 Captncavern\n\n47) SilentTitan: Sacrifice G1 Silenttitan\nBuild B2 Captncavern\nCatastrophe Captncavern Blue\n\n48) captncavern: Build B1 San\n\tcaptncavern: m g1 go san\n\n49) SilentTitan: Move Y1 Sol Yon\n\n50) captncavern: Move B2 San Silenttitan\n\n51) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Yon Captncavern\nMove Y1 Yon Captncavern\nMove Y1 Yon Captncavern\nCatastrophe Captncavern Yellow\n\n\nHomeworlds Online (SDG# 20986)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.5, Ended: 2011.10.30\nParticipants: zoltar (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) zoltar: H R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tzoltar: hello!\n\n4) zoltar: Build G1 Zoltar\n\n5) goulo: Trade G3 Y3 Goulo\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goulo: Build G1 Goulo\n\n8) zoltar: Build Y1 Zoltar\n\n9) goulo: Trade G1 R1 Goulo\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) goulo: Build R2 Goulo\n\n12) zoltar: Build R2 Zoltar\n\n13) goulo: Discover R1 Goulo G1 Smeraldeto\n\n14) zoltar: Discover R2 Zoltar G3 Greengiant\n\n15) goulo: Build Y1 Goulo\n\n16) zoltar: Discover R1 Zoltar B3 Bluemoon\n\n17) goulo: Trade R2 G2 Goulo\n\n18) zoltar: Trade R1 G1 Bluemoon\n\n19) goulo: Discover G2 Goulo B1 Mirteleto\n\n20) zoltar: Build G2 Zoltar\n\n21) goulo: Trade Y3 G3 Goulo\n\n22) zoltar: Build G2 Bluemoon\n\n23) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y1 Goulo\nBuild Y2 Goulo\n\n24) zoltar: Trade G2 Y2 Bluemoon\n\n25) goulo: Move Y1 Goulo Mirteleto\n\n26) zoltar: Build G2 Bluemoon\n\n27) goulo: Trade Y1 B1 Goulo\n\n28) zoltar: Trade G1 B1 Bluemoon\n\n29) goulo: Build G1 Mirteleto\n\n30) zoltar: Discover B1 Bluemoon Y1 Doomsday\n\n31) goulo: Trade G1 R1 Mirteleto\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G1 Bluemoon\nBuild B2 Doomsday\nBuild G3 Zoltar\n\n33) goulo: Move B1 Goulo Smeraldeto\n\n34) zoltar: Discover B1 Doomsday R2 Redrover\n\n35) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild B3 Smeraldeto\nBuild B3 Smeraldeto\n\n36) zoltar: Sacrifice Y1 Zoltar\nMove B1 Redrover Smeraldeto\nCatastrophe Smeraldeto B\n\n37) goulo: Sacrifice G3 Goulo\nBuild R2 Smeraldeto\nBuild Y1 Goulo\nBuild G3 Goulo\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Doomsday\nBuild B1 Doomsday\n\n39) goulo: Sacrifice G3 Goulo\nBuild R2 Mirteleto\nBuild R3 Mirteleto\nBuild R3 Smeraldeto\n\n\tzoltar: gg\n\tgoulo: Cool, thanks. That was a tough good game indeed. I thought you were going to win during most of it. :)\n\nHomeworlds Online (SDG# 20995)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.6, Ended: 2011.11.4\nParticipants: ts52 (S), sompm (N)\nWinner: ts52\n\n1) sompm: Homeworld G3 B2 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) sompm: Build Y1 Sompm\n\tts52: have a good game!\n\tsompm: You as well!\n\n4) ts52: Build G1 Ts52\n\n5) sompm: Discover Y1 Sompm B1 Nero\n\n6) ts52: Trade G1 B1 Ts52\n\n7) sompm: Discover Y1 Nero G3 Constantine\n\n8) ts52: Build G1 Ts52\n\n9) sompm: Build Y1 Constantine\n\n10) ts52: Discover G1 Ts52 B3 Grover\n\n11) sompm: Build Y2 Sompm\n\n12) ts52: Build G1 Ts52\n\n13) sompm: Build Y2 Constantine\n\n14) ts52: Build G1 Ts52\n\n15) sompm: Discover Y2 Constantine G2 Aristarchus\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n17) sompm: Build Y2 Constantine\n\n18) ts52: Trade G3 R3 Ts52\n\n19) sompm: Build Y3 Sompm\n\n20) ts52: Build G3 Ts52\n\n21) sompm: Sacrifice Y3 Sompm\nMove Y1 Constantine Ts52\nMove Y1 Constantine Ts52\nMove Y2 Constantine Ts52\nCatastrophe Ts52 Y\n\n22) ts52: Trade G3 Y3 Ts52\n\n23) sompm: Trade Y2 B2 Sompm\n\n24) ts52: B G3 Ts52\n\n25) sompm: Discover B2 Sompm Y1 Hamilton\n\n26) ts52: Sacrifice Y3 Ts52\nMove R3 Ts52 Hamilton\nMove R3 Hamilton Sompm\nMove G2 Grover Hamilton\n\n27) sompm: Sacrifice Y3 Sompm\nMove B2 Hamilton Sompm\nMove Y2 Aristarchus Hamilton\nMove Y2 Hamilton Sompm\n\tsompm: Oh. Right. Defending and stuff. Whoops. That would explain why you weren&#39;t going after my catastrophe buildup.\n\n28) ts52: A Y2 Sompm\n\n29) sompm: Build B1 Sompm\n\n30) ts52: Trade R3 B3 Sompm\nCatastrophe Sompm Blue\n\tts52: Thanks for the game!\n\tsompm: You as well.\n\n\nHomeworlds Online (SDG# 20993)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.7, Ended: 2011.11.6\nParticipants: dlwillson (S), Salmonax (N)\nWinner: dlwillson\n\n1) Salmonax: Homeworld G3 B2 Y3\n\n2) dlwillson: H B3 R1 G3\n\n3) Salmonax: Build Y1 Salmonax\n\n4) dlwillson: B G1 Dlwillson\n\n5) Salmonax: Trade Y1 B1 Salmonax\n\tSalmonax: trade y1 b1 salmonax\n\tSalmonax: Ohhh, I typed it in the wrong window. =)\r\n\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Salmonax: Build B1 Salmonax\n\tdlwillson: Hehee... \n\tdlwillson: Have you got the feel of the SDG interface yet?\n\tSalmonax: Probably not\n\n8) dlwillson: B G1 Dlwillson\n\n9) Salmonax: Trade B1 G1 Salmonax\n\n10) dlwillson: B Y1 Dlwillson\n\n11) Salmonax: Discover G1 Salmonax B1 S1\n\n12) dlwillson: T Y1 B1 Dlwillson\n\n13) Salmonax: Build B2 Salmonax\n\n14) dlwillson: D B1 Dlwillson G2 Condo\n\n15) Salmonax: Trade B2 G2 Salmonax\n\n16) dlwillson: B B2 Condo\n\n17) Salmonax: Build G1 S1\n\n18) dlwillson: T B2 Y2 Condo\n\n19) Salmonax: Trade G1 Y1 S1\n\n20) dlwillson: B Y1 Condo\n\n21) Salmonax: Build Y2 S1\n\n22) dlwillson: D Y2 Condo R1 Flat\n\n23) Salmonax: Trade G2 R2 Salmonax\n\n24) dlwillson: T G1 R1 Dlwillson\n\n25) Salmonax: Build R2 Salmonax\n\n26) dlwillson: S G3 Dlwillson\nBuild Y2 Condo\nBuild Y3 Flat\nBuild Y3 Dlwillson\n\n27) Salmonax: Move Y1 S1 Condo\n\n28) dlwillson: T Y2 R2 Condo\n\n29) Salmonax: Build Y2 Condo\n\n30) dlwillson: A Y2 Condo\n\n31) Salmonax: Build G1 S1\n\tdlwillson: Are you sure you want to build a y2 there? I&#39;m ok with out, but want to confirm that&#39;s what you meant to do.\n\tSalmonax: Yep, that&#39;s what I wanted.  And it won&#39;t let me undo now anyway. =)\r\n\n\n32) dlwillson: A Y1 Condo\n\tdlwillson: Ok, sorry...\n\tSalmonax: Ah, I counted wrong, thought there were more yellow in the bank.\n\n33) Salmonax: Move Y2 S1 Condo\nCatastrophe Condo Yellow\n\n34) dlwillson: Build R3 Condo\n\tSalmonax: Lykke Li in town on Nov 11\n\n35) Salmonax: Trade R2 G2 Salmonax\n\n36) dlwillson: T R2 Y2 Condo\n\n37) Salmonax: Trade G1 Y1 S1\n\n38) dlwillson: T R1 G1 Dlwillson\n\tdlwillson: Tix are about $40. If you&#39;re going, I&#39;ll go.\n\n39) Salmonax: Build Y1 S1\n\tSalmonax: Sounds good, should I just pick up two?\n\tdlwillson: Sure! I&#39;ll pay you back when we go. K?\n\n40) dlwillson: B Y2 Condo\n\tSalmonax: Where do I find forty dollar tickets?  Only saw fifty\r\n\n\n41) Salmonax: Build R1 Salmonax\n\tdlwillson: http://m.ticketmaster.com/event/2C0046F9DFED4594\n\n42) dlwillson: B B2 Condo\n\n43) Salmonax: Move R1 Salmonax S1\n\tdlwillson: Did you get the link?\n\n44) dlwillson: M B2 Condo S1\n\tSalmonax: Got it, checking it out now.\r\n\n\tSalmonax: Oh, I have to call them.  I&#39;ll do it during the day tomorrow.\n\n45) Salmonax: Build R2 S1\n\n46) dlwillson: S R3 Condo\nA R2 S1\nA R1 S1\nA G1 S1\n\n47) Salmonax: Sacrifice Y1 S1\nMove Y1 S1 Condo\n\n48) dlwillson: S Y2 Condo\nM B2 S1 Salmonax\nM G1 S1 Salmonax\n\tSalmonax: I&#39;m pretty well outnumbered now...\n\n49) Salmonax: Sacrifice B1 Salmonax\nTrade G2 R2 Salmonax\n\n50) dlwillson: S R2 S1\nA R2 Salmonax\nA R2 Salmonax\n\tdlwillson: Not for long... :-)\n\tSalmonax: Pretty stuck, don&#39;t laugh at the next dumb moves I make. =)\r\n\n\n51) Salmonax: Build Y1 Condo\n\tdlwillson: Huh. Interesting!\n\n52) dlwillson: M Y3 Flat Salmonax\n\tSalmonax: Only saved me for one turn though.\n\tSalmonax: oops, sorry, didn&#39;t realize I hadn&#39;t made a move.\n\n53) Salmonax: Move Y1 Condo Dlwillson\n\n54) dlwillson: S R1 S1\nA Y3 Salmonax\n\tdlwillson: I think that&#39;s checkmate.\n\n\tSalmonax: Yeah, pretty sure.\n\tdlwillson: Good game. See you Friday.\n\tSalmonax: gg\n\nHomeworlds Online (SDG# 20974)\nStarted: 2011.10.8, Ended: 2011.12.29\nParticipants: SirRuthvenMurgatroyd (S), agentofchaos (N)\nWinner: SirRuthvenMurgatroyd\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) agentofchaos: T G1 Y1 Agentofchaos\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) SirRuthvenMurgatroyd: Build G1 Sol\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse\n\n13) agentofchaos: Trade G2 R2 Agentofchaos\n\n14) SirRuthvenMurgatroyd: Build G2 Betelgeuse\n\n15) agentofchaos: Move R2 Agentofchaos Betelgeuse\n\n16) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Sirruthvenmurgatroyd\n\n17) agentofchaos: Build G3 Agentofchaos\n\n18) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n19) agentofchaos: Discover G3 Agentofchaos Y3 Aeonoia\n\n20) SirRuthvenMurgatroyd: Build G3 Betelgeuse\n\n21) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G3 Aeonoia Sol\nMove G3 Sol Betelgeuse\nCatastrophe Betelgeuse G\n\n22) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n25) agentofchaos: Move Y1 Agentofchaos Betelgeuse\n\n26) SirRuthvenMurgatroyd: Trade Y2 B2 Sirruthvenmurgatroyd\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) SirRuthvenMurgatroyd: Discover G2 Sol Y3 Alpha\n\n29) agentofchaos: Move Y1 Agentofchaos Betelgeuse\n\n30) SirRuthvenMurgatroyd: Discover Y3 Sirruthvenmurgatroyd B1 Beta\n\n31) agentofchaos: Move R2 Betelgeuse Sol\n\n32) SirRuthvenMurgatroyd: Move G1 Sol Betelgeuse\n\n33) agentofchaos: Move R2 Sol Betelgeuse\n\n34) SirRuthvenMurgatroyd: Sacrifice B2 Sirruthvenmurgatroyd\nTrade G1 Y1 Betelgeuse\nPass\nCatastrophe Betelgeuse Y\n\n35) agentofchaos: Trade Y2 R2 Agentofchaos\n\n36) SirRuthvenMurgatroyd: Build G1 Alpha\n\n37) agentofchaos: Build G1 Agentofchaos\n\n38) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n39) agentofchaos: Trade G1 Y1 Agentofchaos\n\n40) SirRuthvenMurgatroyd: Build G1 Alpha\n\n41) agentofchaos: Discover Y2 Agentofchaos B3 Gruvann\n\n42) SirRuthvenMurgatroyd: Move G1 Alpha Beta\n\n43) agentofchaos: Build G2 Agentofchaos\n\n44) SirRuthvenMurgatroyd: Build G3 Beta\n\n45) agentofchaos: D G2 Agentofchaos Y3 Blackguard\n\n46) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\n47) agentofchaos: Build Y1 Agentofchaos\n\n48) SirRuthvenMurgatroyd: Discover G2 Sirruthvenmurgatroyd B1 Gamma\n\n49) agentofchaos: Move R2 Agentofchaos Gruvann\n\n50) SirRuthvenMurgatroyd: Trade G2 B2 Gamma\n\n51) agentofchaos: Build G2 Blackguard\n\n52) SirRuthvenMurgatroyd: Move G1 Alpha Agentofchaos\n\n53) agentofchaos: Sacrifice Y2 Gruvann\nMove G2 Blackguard Beta\nMove G2 Blackguard Beta\nCatastrophe Beta G\n\n54) SirRuthvenMurgatroyd: Sacrifice G2 Alpha\nBuild G1 Agentofchaos\nBuild G2 Agentofchaos\nCatastrophe Agentofchaos G\n\n55) agentofchaos: Trade Y1 G1 Agentofchaos\n\n56) SirRuthvenMurgatroyd: Discover Y3 Beta B3 Delta\n\n\tagentofchaos: well played\n\nHomeworlds Online (SDG# 20989)\nStarted: 2011.10.8, Ended: 2011.11.14\nParticipants: ts52 (S), agentofchaos (N)\nWinner: ts52\n\n1) agentofchaos: Homeworld B1 R3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tts52: have a good game!\n\n4) ts52: Build G1 Ts52\n\tagentofchaos: Thanks, you too\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) agentofchaos: Build Y2 Agentofchaos\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) agentofchaos: Discover Y2 Agentofchaos G2 Shiyai\n\n10) ts52: Build Y2 Kermit\n\n11) agentofchaos: Build Y2 Shiyai\n\n12) ts52: Discover Y1 Kermit G2 Robin\n\n13) agentofchaos: Discover Y1 Agentofchaos G2 Kakrafloon\n\n14) ts52: Build Y3 Robin\n\n15) agentofchaos: Build Y3 Kakrafloon\n\n16) ts52: Build G1 Ts52\n\n17) agentofchaos: Build G1 Agentofchaos\n\n18) ts52: Trade G1 B1 Ts52\n\n19) agentofchaos: Trade G1 B1 Agentofchaos\n\n20) ts52: Move B1 Ts52 Kermit\n\n21) agentofchaos: Move Y1 Kakrafloon Agentofchaos\n\n22) ts52: Build Y3 Kermit\n\n23) agentofchaos: M B1 Agentofchaos Kakrafloon\n\n24) ts52: Build B2 Kermit\n\n25) agentofchaos: Build B2 Kakrafloon\n\n26) ts52: Move B2 Kermit Robin\n\n27) agentofchaos: Trade B1 R1 Kakrafloon\n\n28) ts52: Trade Y2 R2 Kermit\n\n29) agentofchaos: Build Y2 Kakrafloon\n\n30) ts52: Build R1 Kermit\n\n31) agentofchaos: Discover Y2 Shiyai B3 Wopolsa\n\n32) ts52: Move Y3 Robin Wopolsa\n\n33) agentofchaos: Discover Y2 Wopolsa R2 Grrindah\n\n34) ts52: Build G1 Ts52\n\n35) agentofchaos: Build G1 Agentofchaos\n\n36) ts52: Move G1 Ts52 Wopolsa\n\n37) agentofchaos: Trade G1 R1 Agentofchaos\n\n38) ts52: Build G1 Ts52\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Kermit\nBuild B3 Robin\n\n41) agentofchaos: B B3 Kakrafloon\n\n42) ts52: Trade B3 R3 Robin\n\n43) agentofchaos: B R2 Kakrafloon\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Robin\nBuild B3 Robin\n\n\tagentofchaos: You&#39;ve got me here, well played\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 20979)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.8, Ended: 2011.10.19\nParticipants: tcw (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) tcw: Homeworld B1 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) tcw: Build G1 Tcw\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) tcw: Build G1 Tcw\n\tSilentTitan: aw... did you put us in a tiny universe ... I just noticed... \n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) tcw: Trade G1 Y1 Tcw\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n10) tcw: Build Y2 Tcw\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) tcw: Trade Y2 R2 Tcw\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) tcw: Move R2 Tcw Sol\n\n15) SilentTitan: Discover Y1 Sol G2 Soul\n\n16) tcw: Build Y2 Tcw\n\n17) SilentTitan: Discover Y1 Silenttitan B3 Sole\n\n18) tcw: Trade Y2 G2 Tcw\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Silenttitan Sol\nMove G1 Sol Tcw\nCatastrophe Tcw Green\n\n20) tcw: Trade Y1 G1 Tcw\n\n21) SilentTitan: Build Y1 Soul\n\n22) tcw: Build G1 Tcw\n\n23) SilentTitan: Build Y2 Soul\n\n\nHomeworlds Online (SDG# 20999)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.8, Ended: 2011.11.3\nParticipants: BloodRumpus (S), meckanical (N)\nWinner: BloodRumpus\n\n1) meckanical: Homeworld B2 R3 G3\n\n2) BloodRumpus: Homeworld G2 Y1 B3\n\n3) meckanical: Build G1 Meckanical\n\n4) BloodRumpus: Build B1 Bloodrumpus\n\n5) meckanical: Trade G1 B1 Meckanical\n\n6) BloodRumpus: Trade B1 Y1 Bloodrumpus\n\n7) meckanical: Build B1 Meckanical\n\n8) BloodRumpus: Discover Y1 Bloodrumpus G3 Hope\n\n9) meckanical: Trade B1 Y1 Meckanical\n\n10) BloodRumpus: Build Y2 Hope\n\n11) meckanical: Build Y2 Meckanical\n\n12) BloodRumpus: Build B1 Bloodrumpus\n\n13) meckanical: Trade Y2 R2 Meckanical\n\n14) BloodRumpus: Build Y2 Hope\n\n\nHomeworlds Online (SDG# 21000)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.15, Ended: 2011.11.12\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: agentofchaos\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) agentofchaos: B Y2 Agentofchaos\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) agentofchaos: Discover Y2 Agentofchaos G2 Terraplasm\n\n13) SilentTitan: Discover G1 Silenttitan Y3 Sole\n\n14) agentofchaos: Build Y2 Agentofchaos\n\n15) SilentTitan: Build Y2 Sol\n\n16) agentofchaos: Build Y3 Terraplasm\n\n17) SilentTitan: Build Y3 Silenttitan\n\n18) agentofchaos: Trade G1 R1 Agentofchaos\n\n19) SilentTitan: Sacrifice Y2 Sol\nDiscover G1 Sole Y2 Taos\nDiscover Y1 Sol G2 Tyan\n\n20) agentofchaos: Build Y3 Terraplasm\n\n21) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover Y1 Tyan B3 Moot\nMove Y1 Moot Terraplasm\nPass\nCatastrophe Terraplasm Yellow\n\n22) agentofchaos: Move Y2 Agentofchaos Taos\n\n23) SilentTitan: Discover G1 Taos Y3 Sol\n\n24) agentofchaos: Move Y2 Taos Sol\n\n25) SilentTitan: Discover G1 Sol Y2 Taos\n\n26) agentofchaos: Build R1 Agentofchaos\n\n27) SilentTitan: Discover G1 Taos Y3 Sole\n\n28) agentofchaos: Discover R1 Agentofchaos Y2 Wopolsa\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) agentofchaos: Build R2 Agentofchaos\n\n31) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n32) agentofchaos: Trade R2 Y2 Agentofchaos\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) SilentTitan: Build G2 Silenttitan\n\n36) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R2 Wopolsa\nBuild R2 Wopolsa\n\n37) SilentTitan: Trade G2 R2 Silenttitan\n\n38) agentofchaos: Build R3 Agentofchaos\n\n39) SilentTitan: Build Y1 Silenttitan\n\n40) agentofchaos: M R2 Wopolsa Soul\n\n41) SilentTitan: Move G3 Silenttitan Soul\n\n42) agentofchaos: Sacrifice Y2 Sol\nMove R2 Soul Silenttitan\nMove R2 Wopolsa Sole\n\n43) SilentTitan: Attack R2 Silenttitan South\n\n44) agentofchaos: M R2 Sole Silenttitan\nCatastrophe Silenttitan R\n\n45) SilentTitan: Trade Y1 R1 Silenttitan\n\n46) agentofchaos: M R3 Agentofchaos Silenttitan\n\n47) SilentTitan: Sacrifice G3 Soul\nBuild R2 Silenttitan\nBuild R2 Silenttitan\nBuild G2 Silenttitan\nCatastrophe Silenttitan Red\n\tSilentTitan: good game\n\n48) agentofchaos: Move G3 Agentofchaos Silenttitan\n\n49) SilentTitan: Build G2 Silenttitan\nCatastrophe Silenttitan Green\n\n50) agentofchaos: Move Y2 Agentofchaos Silenttitan\n\tagentofchaos: Thanks, good game\n\n51) SilentTitan: Move G1 Soul Silenttitan\n\n52) agentofchaos: T Y2 R2 Silenttitan\n\n53) SilentTitan: Build G1 Silenttitan\n\n54) agentofchaos: Attack Y1 Silenttitan\n\n55) SilentTitan: Build G2 Sole\n\n56) agentofchaos: Attack G1 Silenttitan\n\n57) SilentTitan: Sacrifice G2 Sole\nBuild G2 Silenttitan\nBuild G2 Sole\n\n58) agentofchaos: Build G2 Silenttitan\nCatastrophe Silenttitan G\n\n\tagentofchaos: Thanks, great game :-)\n\tSilentTitan: Thank you ... you too.\n\nHomeworlds Online (SDG# 21023)\nVariants: &quot;No undo&quot;\nStarted: 2011.10.15, Ended: 2012.1.23\nParticipants: ajo (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 21002)\nStarted: 2011.10.16, Ended: 2012.1.18\nParticipants: SirRuthvenMurgatroyd (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y3 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) SirRuthvenMurgatroyd: Build G1 Sol\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse\n\n13) agentofchaos: Trade G2 R2 Agentofchaos\n\n14) SirRuthvenMurgatroyd: Build G2 Betelgeuse\n\n15) agentofchaos: M R2 Agentofchaos Betelgeuse\n\n16) SirRuthvenMurgatroyd: Build G2 Sol\n\n17) agentofchaos: Attack G2 Betelgeuse\n\n18) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n19) agentofchaos: Attack G1 Betelgeuse\n\n20) SirRuthvenMurgatroyd: Move G2 Sol Sirruthvenmurgatroyd\n\n21) agentofchaos: S G2 Betelgeuse\nBuild R1 Betelgeuse\nBuild G2 Agentofchaos\n\n22) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n23) agentofchaos: Trade Y1 R1 Agentofchaos\n\n24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n25) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Betelgeuse\nBuild G3 Agentofchaos\nBuild R2 Betelgeuse\n\n26) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd\n\n27) agentofchaos: Discover R2 Betelgeuse Y1 Huvaloo\n\n28) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n29) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Agentofchaos\nBuild R3 Agentofchaos\nBuild G3 Agentofchaos\n\n30) SirRuthvenMurgatroyd: Build G3 Sol\n\n31) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Huvaloo\nBuild G2 Agentofchaos\n\n32) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nDiscover Y2 Sirruthvenmurgatroyd B1 Alpha\nMove R2 Sirruthvenmurgatroyd Alpha\n\n33) agentofchaos: Discover R3 Agentofchaos B3 Barrowdrob\n\n34) SirRuthvenMurgatroyd: Discover G3 Sol B3 Beta\n\n35) agentofchaos: Move Y3 Agentofchaos Barrowdrob\n\n36) SirRuthvenMurgatroyd: Build G3 Beta\n\n37) agentofchaos: Move G2 Agentofchaos Barrowdrob\n\n38) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild G2 Sirruthvenmurgatroyd\nBuild Y2 Alpha\n\n39) agentofchaos: Move R3 Barrowdrob Alpha\n\n40) SirRuthvenMurgatroyd: Sacrifice Y2 Alpha\nMove Y2 Alpha Beta\nMove R2 Alpha Beta\n\n41) agentofchaos: Build Y2 Barrowdrob\n\n42) SirRuthvenMurgatroyd: Discover G1 Sol B3 Gamma\n\n43) agentofchaos: Discover R1 Betelgeuse Y1 Rhomgroon\n\n44) SirRuthvenMurgatroyd: Trade G1 B1 Gamma\n\n45) agentofchaos: Sacrifice Y3 Barrowdrob\nMove R1 Rhomgroon Sirruthvenmurgatroyd\nMove R2 Huvaloo Sirruthvenmurgatroyd\nMove R3 Alpha Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd R\n\n46) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n47) agentofchaos: Move R3 Huvaloo Sirruthvenmurgatroyd\n\n48) SirRuthvenMurgatroyd: Sacrifice G3 Beta\nBuild R2 Sirruthvenmurgatroyd\nBuild R3 Sirruthvenmurgatroyd\nBuild R3 Beta\nCatastrophe Sirruthvenmurgatroyd R\n\n49) agentofchaos: Move R1 Agentofchaos Betelgeuse\n\n50) SirRuthvenMurgatroyd: Build G1 Beta\n\n51) agentofchaos: Trade Y1 B1 Agentofchaos\n\n52) SirRuthvenMurgatroyd: Build Y1 Beta\n\n53) agentofchaos: Build Y1 Barrowdrob\n\n54) SirRuthvenMurgatroyd: Sacrifice Y2 Beta\nDiscover R3 Beta R1 Blah\nMove R3 Blah Barrowdrob\n\n55) agentofchaos: Sacrifice Y2 Barrowdrob\nDiscover G2 Barrowdrob Y1 Kirril\nDiscover Y1 Barrowdrob B1 Threndor\n\n56) SirRuthvenMurgatroyd: Move G1 Beta Agentofchaos\n\n57) agentofchaos: Attack G1 Agentofchaos\n\n58) SirRuthvenMurgatroyd: Build Y2 Beta\n\n59) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G1 Betelgeuse\nBuild G3 Kirril\nBuild G3 Agentofchaos\n\n60) SirRuthvenMurgatroyd: Sacrifice Y2 Beta\nMove Y1 Beta Kirril\nMove Y1 Kirril Sirruthvenmurgatroyd\n\n61) agentofchaos: Move G3 Kirril Sirruthvenmurgatroyd\n\n62) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n63) agentofchaos: Move Y1 Threndor Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Y\n\n\nHomeworlds Online (SDG# 21016)\nVariants: &quot;Sinister&quot;\nStarted: 2011.10.23, Ended: 2012.1.12\nParticipants: lorgar (S), daselva (N), raster51 (E)\nWinner: daselva\n\n1) daselva: Homeworld B1 R2 G3\n\n2) raster51: Homeworld G1 B2 R3\n\n3) lorgar: Homeworld Y3 G2 B3\n\n4) daselva: Build G1 Daselva\n\n5) raster51: Build R1 Raster51\n\n6) lorgar: Build B1 Lorgar\n\n7) daselva: Build G1 Daselva\n\n8) raster51: Build R1 Raster51\n\n9) lorgar: Trade B1 R1 Lorgar\n\n10) daselva: Trade G1 Y1 Daselva\n\n11) raster51: Trade R1 Y1 Raster51\n\n12) lorgar: Build B1 Lorgar\n\n13) daselva: Build G1 Daselva\n\n14) raster51: Build R1 Raster51\n\n15) lorgar: Trade B1 G1 Lorgar\n\n16) daselva: Discover G1 Daselva R3 S1\n\n17) raster51: Discover R1 Raster51 G3 S2\n\n18) lorgar: Discover G1 Lorgar B1 Khayam\n\n19) daselva: Build G2 S1\n\n20) raster51: Build R1 S2\n\n21) lorgar: Build G2 Khayam\n\n22) daselva: Trade G1 B1 Daselva\n\n23) raster51: Build R2 S2\n\n24) lorgar: Trade G2 R2 Khayam\n\n25) daselva: Sacrifice B1 Daselva\nTrade G2 Y2 S1\n\n26) raster51: Build R2 Raster51\n\n27) lorgar: Build G1 Khayam\n\n28) daselva: Build G2 S1\n\n29) raster51: Discover R2 Raster51 R3 Mars\n\n30) lorgar: Trade G1 Y1 Khayam\n\n31) daselva: Trade G3 B3 Daselva\n\n32) raster51: Build R3 Raster51\n\n33) lorgar: Build G1 Khayam\n\n34) daselva: Sacrifice G1 S1\nBuild B1 Daselva\n\n35) raster51: Move R3 Raster51 Mars\n\n36) lorgar: Discover G1 Khayam B3 Ramo\n\n37) daselva: Move B1 Daselva S1\n\n38) raster51: Move Y1 Raster51 Mars\n\n39) lorgar: Move R2 Khayam Mars\nCatastrophe Mars Red\n\n40) daselva: Build B1 S1\n\n41) raster51: Trade R1 Y1 Raster51\n\n42) lorgar: Build B2 Lorgar\n\n43) daselva: Build B2 S1\n\n44) raster51: Pass\n\n45) lorgar: Build G1 Khayam\n\n46) daselva: Sacrifice Y2 S1\nMove B1 S1 Raster51\nMove B1 S1 Raster51\n\n47) raster51: Attack B1N Raster51\n\n48) lorgar: Discover G1 Khayam B3 Tarama\n\n49) daselva: Sacrifice Y1 Daselva\nMove B2 S1 Raster51\nCatastrophe Raster51 B\n\n50) raster51: Build Y1 Raster51\n\n51) lorgar: Build G2 Ramo\n\n52) daselva: Trade B3 G3 Daselva\n\n53) raster51: Move Y1 Raster51 S2\n\n54) lorgar: Trade G1 Y1 Ramo\n\n55) daselva: Build G1 Daselva\n\n56) raster51: Move R1 S2 Raster51\n\n57) lorgar: Build Y2 Ramo\n\n58) daselva: Trade G3 Y3 Daselva\n\n59) raster51: Build Y2 Raster51\n\n60) lorgar: Build G2 Ramo\n\n61) daselva: Build G3 S1\n\n62) raster51: Discover Y1 Raster51 B3 Vi1\n\n63) lorgar: Sacrifice G2 Ramo\nBuild G2 Khayam\nBuild G3 Ramo\n\n64) daselva: Build Y2 Daselva\n\n\n65) raster51: Trade Y1 B1 Vi1\n\n66) lorgar: Build G3 Tarama\n\n67) daselva: Move G1 Daselva Vi1\n\n68) raster51: Move Y2 Raster51 Vi1\n\n69) lorgar: Move Y1 Ramo Daselva\n\n70) daselva: Sacrifice Y3 Daselva\nMove G3 S1 Raster51\nMove G2 S1 Raster51\nMove G1 Vi1 Raster51\nCatastrophe Raster51 G\n\n\tdaselva: thanks for playing\n\nHomeworlds Online (SDG# 21028)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.27, Ended: 2011.11.17\nParticipants: jsb (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) jsb: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) jsb: Build G1 Jsb\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) jsb: Discover G1 Jsb Y2 Larch\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) jsb: Build G1 Larch\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) jsb: Discover G1 Larch B3 Pine\n\n11) SilentTitan: Trade Y2 R2 Silenttitan\n\n12) jsb: Build G1 Jsb\n\n13) SilentTitan: Move Y1 Silenttitan Pine\n\tSilentTitan: so adam tells me this is like your second game of this... any questions I can answer?\n\n14) jsb: Trade G1 R1 Pine\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pine\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\tjsb: Hey, Silent - no big ?&#39;s right now. I&#39;m just feeling my way through the game a bit, and am hoping to lose enough games that I eventually figure out what works and what doesn&#39;t. \r\n\n\n16) jsb: Attack Y1N Pine\n\tjsb: attack y1n pine\r\n\n\n17) SilentTitan: Sacrifice R2 Silenttitan\nAttack Y1 Pine South\nAttack R1 Pine South\n\tjsb: My mistake - typed into the wrong textarea. \n\tSilentTitan: no problem ....we&#39;ve all done it\n\n18) jsb: Trade G1 R1 Jsb\n\n19) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n20) jsb: Build G1 Larch\n\n21) SilentTitan: Build Y3 Sol\n\n22) jsb: Discover G1 Larch B3 Oak\n\n23) SilentTitan: Build Y3 Sol\n\n24) jsb: Move G1 Larch Oak\n\n25) SilentTitan: Trade Y2 G2 Silenttitan\n\n26) jsb: Trade G1 R1 Oak\n\n27) SilentTitan: Discover Y3 Sol Y2 Alpha\n\n28) jsb: Build R2 Jsb\n\n29) SilentTitan: Discover Y3 Sol Y2 Beta\n\n30) jsb: Move R2 Jsb Beta\n\n31) SilentTitan: Sacrifice R1 Pine\nAttack R2 Beta South\n\n32) jsb: Build G1 Jsb\n\n33) SilentTitan: Sacrifice Y2 Pine\nMove Y3 Alpha Jsb\nMove Y3 Beta Jsb\n\n\nHomeworlds Online (SDG# 21074)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.29, Ended: 2011.10.29\nParticipants: SilentTitan (S), Harvey (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 21087)\nVariants: &quot;Hard time&quot;\nStarted: 2011.10.30, Ended: 2011.11.19\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\tSilentTitan: What? you have me on the ropes in one game ... so you start another .... oh... will the punishment never end.  \n\n3) SilentTitan: Build G1 Silenttitan\n\tagentofchaos: On the other hand this could be your opportunity for payback! \n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) agentofchaos: B R2 Agentofchaos\n\n13) SilentTitan: Trade R2 Y2 Silenttitan\n\n14) agentofchaos: Trade R2 Y2 Agentofchaos\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) agentofchaos: B R2 Agentofchaos\n\n17) SilentTitan: Discover Y2 Silenttitan G3 Sol\n\n18) agentofchaos: Discover R2 Agentofchaos Y2 Glaxo\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n20) agentofchaos: B G1 Agentofchaos\n\n21) SilentTitan: Trade Y3 B3 Silenttitan\n\n22) agentofchaos: Move G1 Agentofchaos Glaxo\n\n23) SilentTitan: Build Y3 Silenttitan\n\n24) agentofchaos: Discover Y1 Agentofchaos G2 Gelfhome\n\n25) SilentTitan: Sacrifice Y2 Sol\nMove B3 Silenttitan Sol\nDiscover Y3 Silenttitan R3 Sole\n\n26) agentofchaos: Build R2 Glaxo\n\n27) SilentTitan: Move B3 Sol Glaxo\n\n\nHomeworlds Online (SDG# 21112)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2011.11.4, Ended: 2011.11.28\nParticipants: johannz (S), jh3 (N), jsb (E)\nWinner: jsb\n\n1) jh3: Homeworld G3 B1 R3\n\n2) jsb: Homeworld B1 G2 Y3\n\n3) johannz: Homeworld B3 G2 Y3\n\tjsb: Which way is &quot;left&quot; in this?\n\n4) jh3: Build R1 Jh3\n\n5) jsb: Build Y1 Jsb\n\n6) johannz: Build Y1 Johannz\n\n7) jh3: Trade R1 Y1 Jh3\n\n8) jsb: Trade Y1 B1 Jsb\n\n9) johannz: Discover Y1 Johannz G1 Sparkles\n\n10) jh3: Build Y1 Jh3\n\n11) jsb: Discover B1 Jsb G3 Tomato\n\n12) johannz: Build Y1 Sparkles\n\n13) jh3: Trade Y1 B1 Jh3\n\n14) jsb: Build B2 Tomato\n\tjh3: Which way is left?\r\n\n\n15) johannz: Build Y1 Johannz\n\tjohannz: I think that johannz is attacking jh3, jh3 is attacking jsb, and jsb is attacking johannz\n\n16) jh3: Discover B1 Jh3 G2 Sparkly_tomato\n\tjsb: Does the game end when one person defeats the person to their left, or is it last-man-standing?\r\n\n\n17) jsb: Build Y2 Jsb\n\n18) johannz: Build Y2 Sparkles\n\tjohannz: As soon as someone kills the player to their left, the game ends in their victory. If you eliminate the player to your right, the game continues.\n\n19) jh3: Build B2 Sparkly_tomato\n\n20) jsb: Discover Y2 Jsb G3 Riker\n\n21) johannz: Trade Y3 B3 Johannz\n\n22) jh3: Trade B2 Y2 Sparkly_tomato\n\n23) jsb: Move Y2 Riker Sparkles\nCatastrophe Sparkles Y\n\n24) johannz: Build B2 Johannz\n\n25) jh3: Build B2 Sparkly_tomato\n\n26) jsb: Build Y1 Jsb\n\n27) johannz: Trade B2 R2 Johannz\n\n28) jh3: Discover B1 Sparkly_tomato G1 Spark1y_tomato\n\n29) jsb: Trade B2 G2 Tomato\n\n30) johannz: Build Y1 Johannz\n\n31) jh3: Build B2 Sparkly_tomato\n\n32) jsb: Build Y2 Jsb\n\n33) johannz: Build Y2 Johannz\n\n34) jh3: Move Y2 Sparkly_tomato Spark1y_tomato\n\n35) jsb: Discover Y2 Jsb B3 Mongo\n\n36) johannz: Trade Y1 G1 Johannz\n\n37) jh3: Trade B2 Y2 Sparkly_tomato\n\n38) jsb: Move Y2 Mongo Spark1y_tomato\n\n39) johannz: Build R1 Johannz\n\n40) jh3: Move B2 Sparkly_tomato Spark1y_tomato\n\n41) jsb: Build B2 Tomato\n\n42) johannz: Sacrifice Y2 Johannz\nMove R2 Johannz Spark1y_tomato\nMove R2 Spark1y_tomato Tomato\n\n43) jh3: Discover B1 Spark1y_tomato G3 Cucumber\n\n44) jsb: Sacrifice Y2 Spark1y_tomato\nDiscover G2 Tomato Y1 Nickel\nMove B2 Tomato Nickel\n\n45) johannz: Build Y2 Johannz\n\n46) jh3: Move B2 Spark1y_tomato Cucumber\n\n47) jsb: Trade Y3 R3 Jsb\n\n48) johannz: Attack B1E Tomato\n\n49) jh3: Move Y2 Spark1y_tomato Cucumber\n\n50) jsb: Move B2 Nickel Cucumber\n\n51) johannz: Build B2 Tomato\n\n52) jh3: Build Y2 Cucumber\n\n53) jsb: Build B2 Cucumber\nCatastrophe Cucumber Blue\n\tjohannz: sorry, missed the email that it was my turn.\n\n54) johannz: Build Y3 Johannz\n\n55) jh3: Build R1 Jh3\n\n56) jsb: Build G1 Nickel\n\n57) johannz: Sacrifice Y3 Johannz\nMove G1 Johannz Nickel\nMove B1 Tomato Jsb\nMove B2 Tomato Jsb\n\n58) jh3: Move R1 Jh3 Sparkly_tomato\n\n59) jsb: Sacrifice G2 Nickel\nBuild Y3 Jsb\nBuild R1 Jsb\n\n60) johannz: Build B1 Jsb\nCatastrophe Jsb B\n\n61) jh3: Sacrifice Y2 Sparkly_tomato\nMove Y2 Cucumber Jsb\nMove Y2 Cucumber Jsb\nCatastrophe Jsb Y\n\n62) jsb: Discover G1 Nickel B2 Quarter\n\n63) johannz: Discover G1 Nickel Y2 Dime\n\n64) jh3: Build Y1 Jh3\n\n65) jsb: Build G1 Quarter\n\n66) johannz: Build G1 Dime\n\n67) jh3: Trade Y1 B1 Jh3\n\n68) jsb: Trade G1 Y1 Quarter\n\n69) johannz: Sacrifice Y2 Johannz\nMove G1 Dime Jh3\nMove G1 Dime Jh3\n\n70) jh3: Attack G1S Jh3\n\n71) jsb: Build G1 Quarter\n\n72) johannz: Build G2 Jh3\nCatastrophe Jh3 G\n\n73) jh3: Trade B1 G1 Jh3\n\n74) jsb: Trade G1 B1 Quarter\n\n75) johannz: Build B1 Johannz\n\n76) jh3: Build R1 Jh3\n\n77) jsb: Discover B1 Quarter G1 Penny\n\n78) johannz: Move R1 Johannz Jh3\n\n79) jh3: Discover R1 Jh3 G2 Farthing\n\n80) jsb: Sacrifice Y1 Quarter\nMove B1 Penny Johannz\nCatastrophe Johannz Blue\n\n81) johannz: Build Y1 Johannz\n\n82) jh3: Attack R1S Jh3\n\n83) jsb: Sacrifice R1 Jsb\nPass\n\n84) johannz: Build R1 Tomato\n\tjsb: Adam, if you wanted to, could you sacrifice y1 at home to move r2 from tomato home? You&#39;d be shipless at home briefly but would not end your turn shipless. \r\n\n\tjsb: Adam, if you wanted to, could you sacrifice y1 at home to move r2 from tomato home? You&#39;d be shipless at home briefly but would not end your turn shipless. \r\n\n\tjohannz: When the last ship leaves a system it instantly is lost. \n\n85) jh3: Move R1 Jh3 Farthing\n\n86) jsb: Build G1 Quarter\n\n87) johannz: Move Y1 Johannz Tomato\n\n88) jh3: Build G1 Jh3\n\n89) jsb: Trade G1 Y1 Quarter\n\n90) johannz: Discover R1 Tomato B2 Pence\n\n91) jh3: Move G1 Jh3 Farthing\n\n92) jsb: Build Y2 Quarter\n\n93) johannz: Move R2 Tomato Quarter\n\n94) jh3: Build Y2 Jh3\n\n95) jsb: Sacrifice Y2 Quarter\nDiscover Y1 Quarter B3 Euro\nMove G1 Quarter Euro\n\n96) johannz: Build Y2 Tomato\n\n97) jh3: Move Y2 Jh3 Farthing\n\n98) jsb: Build Y2 Euro\n\n99) johannz: Build Y2 Johannz\n\n100) jh3: Build G1 Jh3\n\n101) jsb: Build G3 Euro\n\n102) johannz: Discover Y1 Johannz G3 Occupyjustin\n\n103) jh3: Sacrifice Y2 Farthing\nMove G1 Jh3 Johannz\nMove G1 Jh3 Johannz\n\n104) jsb: Move G1 Euro Johannz\nCatastrophe Johannz Green\n\n\tjsb: Good game, everybody. \n\tjh3: I&#39;m happy I kept my home world intact.\n\nHomeworlds Online (SDG# 21114)\nStarted: 2011.11.5, Ended: 2011.11.9\nParticipants: disaac (S), Onii77 (N)\nWinner: disaac\n\n1) Onii77: Homeworld G3 B2 Y3\n\n2) disaac: H G3 Y1 B3\n\tdisaac: h LG SY LB\n\tdisaac: h g3 y1 B3\n\n3) Onii77: Build Y1 Onii77\n\n4) disaac: Build B1 Disaac\n\n5) Onii77: Build Y1 Onii77\n\tdisaac: OK. I am starting to get the hang of the commands a bit now.\n\n6) disaac: B B1 Disaac\n\n7) Onii77: Trade Y1 G1 Onii77\n\n8) disaac: Discover B1 Disaac G2 Peace\n\tOnii77: Oh lol. I didn&#39;t even see the chat before..\n\n9) Onii77: Discover G1 Onii77 B1 Profit\n\n10) disaac: B B2 Peace\n\n11) Onii77: Build G1 Profit\n\n12) disaac: Trade B2 Y2 Peace\n\n13) Onii77: Trade Y1 R1 Onii77\n\tOnii77: April and Sam are home. The game is going to slow down. I have chores :)\n\tdisaac: understood. If you want to drop it that is fine.\n\tdisaac: I will leave mine up for now, and if you want to resume, you can send a text to my phone.\n\n14) disaac: Trade B3 R3 Disaac\n\n15) Onii77: Trade G1 R1 Profit\n\n16) disaac: Build B2 Peace\n\n17) Onii77: Build Y1 Onii77\n\n18) disaac: Trade B2 R2 Peace\n\n19) Onii77: Move Y1 Onii77 Profit\n\n20) disaac: Move R2 Peace Profit\n\n21) Onii77: Build R1 Profit\n\tdisaac: I have changed my sdg profile to point to my work email for now so I will get it on the phone.\n\n22) disaac: Attack G1N Profit\n\n23) Onii77: Move R1 Onii77 Profit\n\tOnii77: Wow. That&#39;s not good...\n\n24) disaac: Pass\n\tOnii77: !!! Hmmmm looks like we have been playing incorrectly. It appears that causing a catastrophe takes a turn.\n\tdisaac: It shouldn&#39;t... it is part of your turn though...\n\n25) Onii77: Pass\nCatastrophe Profit Red\n\tdisaac: I have passed back to you so you can trigger the catastrophe. There is an implementation request about this in the sdg-wiki page to not allow catastrophes to force an explicit pass from the player causing it.\n\tOnii77: Next game we&#39;ll play the right way. :)\n\tdisaac: Play \r\nOn your turn, do one of these three things: perform a single free action in a system that you occupy, sacrifice one of your ships to take a certain number of actions of that ship&#39;s color, or take no action at all. After you do one of these three things, you **may** trigger catastrophes for any overpopulations that exist.\n\tdisaac: I believe that the issue is that when you made your move, you should have included a carriage-return followed by a command to trigger the catastrophe\n\tdisaac: pass\r\ncatastrophe profit r\n\n26) disaac: Trade Y2 R2 Peace\n\tOnii77: Ahh I get it now :)\n\n27) Onii77: Move Y1 Profit Onii77\n\n28) disaac: Build G1 Profit\n\n29) Onii77: Build Y1 Onii77\n\n30) disaac: Build B2 Peace\n\n31) Onii77: Trade Y1 R1 Onii77\n\n32) disaac: Trade R2 Y2 Peace\n\n33) Onii77: Build R1 Onii77\n\n34) disaac: Sacrifice Y2 Peace\nMove G1 Profit Onii77\nMove G1 Profit Onii77\n\n35) Onii77: A G1 Onii77\n\n36) disaac: B G1 Onii77\nC Onii77 G\n\n37) Onii77: S Y3 Onii77\nMove R1 Onii77 Disaac\nMove R1 Onii77 Disaac\nPass\n\n38) disaac: Sacrifice R3 Disaac\nAttack R1 Disaac\nAttack R1 Disaac\nPass\n\n39) Onii77: Trade Y1 G1 Onii77\n\n40) disaac: M R1 Disaac Onii77\n\tOnii77: This is not going well. :)\n\n\tdisaac: I don&#39;t know... Seems to be going fine for me! :)\n\nHomeworlds Online (SDG# 21105)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.6, Ended: 2011.11.11\nParticipants: test1 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) test1: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n\tSilentTitan: are you there?\n\nHomeworlds Online (SDG# 21117)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.6, Ended: 2011.11.28\nParticipants: agentofchaos (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 R2 G3\n\n2) agentofchaos: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tagentofchaos: Thanks, you too\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) goulo: Build G1 Goulo\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) goulo: Trade G1 R1 Goulo\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) goulo: Build R2 Goulo\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) goulo: Discover R2 Goulo G1 Smeraldeto\n\n14) agentofchaos: Trade R1 G1 Agentofchaos\n\n15) goulo: Trade R1 B1 Goulo\n\n16) agentofchaos: Trade G1 B1 Agentofchaos\n\n17) goulo: Build G1 Goulo\n\n18) agentofchaos: Discover R2 Agentofchaos Y3 Paralandroid\n\n19) goulo: Trade G1 R1 Goulo\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) goulo: Build G1 Goulo\n\n22) agentofchaos: Build G2 Agentofchaos\n\n23) goulo: Build G2 Goulo\n\n24) agentofchaos: M G2 Agentofchaos Paralandroid\n\n25) goulo: Discover G1 Goulo Y1 Citroneto\n\n26) agentofchaos: Build Y2 Agentofchaos\n\n27) goulo: Build Y2 Goulo\n\n28) agentofchaos: D Y2 Agentofchaos B3 Luvarola\n\n29) goulo: Sacrifice G3 Goulo\nBuild G2 Goulo\nBuild G3 Goulo\nBuild G3 Citroneto\n\n30) agentofchaos: Sacrifice Y2 Luvarola\nMove G2 Paralandroid Citroneto\nMove G2 Citroneto Goulo\nCatastrophe Goulo G\n\n31) goulo: Move Y1 Goulo Smeraldeto\n\n32) agentofchaos: Build Y2 Agentofchaos\n\n33) goulo: Sacrifice G3 Citroneto\nBuild Y2 Smeraldeto\nBuild Y3 Goulo\nBuild Y3 Goulo\n\n34) agentofchaos: D Y2 Agentofchaos R3 Dragonfeld\n\n35) goulo: Discover Y3 Goulo B1 Mirteleto\n\n36) agentofchaos: Move R2 Paralandroid Citroneto\n\n37) goulo: Discover G1 Citroneto Y3 Citronego\n\n38) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Citroneto\n\n39) goulo: Trade R1 G1 Goulo\n\n40) agentofchaos: Build G2 Agentofchaos\n\n41) goulo: Sacrifice G1 Citronego\nBuild Y3 Mirteleto\n\n42) agentofchaos: Trade B1 R1 Agentofchaos\n\n43) goulo: Build R3 Smeraldeto\n\n44) agentofchaos: Move R1 Agentofchaos Dragonfeld\n\n45) goulo: Discover R3 Smeraldeto G3 Smeraldego\n\n46) agentofchaos: D R1 Dragonfeld G1 Doompulse\n\n47) goulo: Build G2 Goulo\n\n48) agentofchaos: Sacrifice Y2 Dragonfeld\nMove R1 Citroneto Goulo\nMove R2 Citroneto Goulo\n\n49) goulo: Sacrifice R2 Smeraldeto\nAttack R1 Goulo\nAttack R2 Goulo\n\n50) agentofchaos: T G2 Y2 Agentofchaos\n\n51) goulo: Sacrifice Y2 Goulo\nMove R2 Goulo Doompulse\nMove G1 Goulo Mirteleto\n\n52) agentofchaos: Build R2 Doompulse\n\n53) goulo: Sacrifice G2 Goulo\nBuild R3 Doompulse\nBuild R3 Smeraldego\nCatastrophe Doompulse R\n\n54) agentofchaos: Trade Y2 R2 Agentofchaos\n\n55) goulo: Sacrifice Y2 Smeraldeto\nMove R3 Smeraldego Agentofchaos\nMove R3 Smeraldego Agentofchaos\nCatastrophe Agentofchaos R\n\n56) agentofchaos: Build G1 Agentofchaos\n\n57) goulo: Move Y3 Mirteleto Agentofchaos\n\n\tagentofchaos: well played\n\tgoulo: thanks for the game! it was epic. :)\n\nHomeworlds Online (SDG# 21067)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.8, Ended: 2012.5.4\nParticipants: agentofchaos (S), Mandrel (W), jsb (N), MagicJohn (E)\nWinner: Mandrel\n\n1) jsb: Homeworld B3 G1 Y3\n\n2) MagicJohn: Homeworld Y2 B1 G3\n\n3) agentofchaos: Homeworld R2 B3 G3\n\n4) Mandrel: Homeworld R1 B3 G3\n\tagentofchaos: Have fun everyone\n\n5) jsb: Build Y1 Jsb\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) Mandrel: Build G1 Mandrel\n\n9) jsb: Discover Y1 Jsb G2 Mozart\n\n10) MagicJohn: Trade G1 Y1 Magicjohn\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) Mandrel: Trade G1 Y1 Mandrel\n\n13) jsb: Build Y1 Mozart\n\n14) MagicJohn: Discover Y1 Magicjohn G3 Ba-hoc\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) Mandrel: Build Y2 Mandrel\n\n17) jsb: Build Y2 Jsb\n\n18) MagicJohn: Build G1 Magicjohn\n\n19) agentofchaos: Discover Y2 Agentofchaos G1 Wopolsa\n\n20) Mandrel: Discover Y1 Mandrel G2 Skip\n\n21) jsb: Trade Y2 G2 Jsb\n\n22) MagicJohn: Trade G1 R1 Magicjohn\n\n23) agentofchaos: Build Y2 Wopolsa\n\n24) Mandrel: Build G1 Mandrel\n\n25) jsb: Trade Y3 R3 Jsb\n\n26) MagicJohn: Move Y1 Ba-hoc Wopolsa\n\n27) agentofchaos: Move Y2 Wopolsa Skip\n\n28) Mandrel: Trade G1 R1 Mandrel\n\n29) jsb: Build R1 Jsb\n\n30) MagicJohn: Build G1 Magicjohn\n\n31) agentofchaos: Trade Y1 R1 Agentofchaos\n\n32) Mandrel: Build R2 Mandrel\n\n33) jsb: Sacrifice Y1 Mozart\nMove R1 Jsb Mozart\n\n34) MagicJohn: Build R2 Magicjohn\n\n35) agentofchaos: Build R2 Agentofchaos\n\n36) Mandrel: Move R2 Mandrel Mozart\n\n37) MagicJohn: Discover R2 Magicjohn Y3 Minormystery\n\n38) agentofchaos: Sacrifice R2 Agentofchaos\nAttack Y1W Skip\nAttack Y1E Wopolsa\n\n39) Mandrel: Attack Y1N Mozart\n\n40) MagicJohn: Sacrifice G1 Magicjohn\nBuild R2 Minormystery\n\n41) agentofchaos: Build G1 Agentofchaos\n\n42) Mandrel: Attack R1N Mozart\n\n43) MagicJohn: Discover R2 Minormystery Y2 Minorsetback\n\n44) agentofchaos: Trade G1 Y1 Agentofchaos\n\n45) Mandrel: Build G1 Mandrel\n\n46) MagicJohn: Move R2 Minorsetback Jsb\n\n47) agentofchaos: Trade Y1 B1 Agentofchaos\n\n48) Mandrel: Trade G1 B1 Mandrel\n\n49) MagicJohn: Sacrifice G3 Magicjohn\nBuild R2 Jsb\nBuild R3 Magicjohn\nBuild R3 Minormystery\n\n50) agentofchaos: Trade R1 Y1 Agentofchaos\n\n51) Mandrel: Move B1 Mandrel Mozart\n\n52) MagicJohn: Trade R2 Y2 Jsb\n\n53) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y2 R2 Wopolsa\n\n54) Mandrel: Discover R1 Mozart G3 Decay\n\n55) MagicJohn: Trade R1 G1 Magicjohn\n\n56) agentofchaos: Build R1 Wopolsa\n\n57) Mandrel: Build B1 Mozart\n\n58) MagicJohn: Attack G2N Jsb\n\n59) agentofchaos: Build G1 Agentofchaos\n\n60) Mandrel: Build B1 Mozart\n\n61) MagicJohn: Discover R3 Minormystery B1 Minorproblen\n\n62) agentofchaos: Build Y1 Agentofchaos\n\n63) Mandrel: Move B1 Mozart Decay\n\n64) MagicJohn: Trade R3 G3 Minorproblen\n\n65) agentofchaos: Build Y2 Wopolsa\n\n66) Mandrel: Build Y3 Mandrel\n\n67) MagicJohn: Build Y3 Jsb\n\n68) agentofchaos: Trade Y1 R1 Agentofchaos\n\n69) Mandrel: Build R3 Decay\n\n70) MagicJohn: Attack R3N Jsb\n\n71) agentofchaos: Sacrifice Y2 Wopolsa\nMove Y1 Skip Jsb\nMove Y2 Skip Jsb\nCatastrophe Jsb Y\n\n72) Mandrel: Build R3 Mozart\n\n73) MagicJohn: Trade R2 Y2 Jsb\n\n74) agentofchaos: Build Y1 Agentofchaos\n\n75) Mandrel: Build B2 Decay\n\n76) MagicJohn: Build G1 Minorproblen\n\n77) agentofchaos: Build Y1 Wopolsa\n\n78) Mandrel: Build Y2 Mozart\n\n79) MagicJohn: Move R2 Minormystery Minorproblen\n\n80) Mandrel: Build B2 Decay\n\n81) MagicJohn: Trade R2 B2 Minorproblen\n\n82) Mandrel: Sacrifice Y3 Mandrel\nMove B1 Decay Magicjohn\nMove B2 Decay Magicjohn\nMove B2 Decay Magicjohn\nCatastrophe Magicjohn B\n\n\tMagicJohn: This game is waaaaay beyond repair.... and apparently I can&#39;t count on you to make four or five major blunders in a row.  Well played.\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 21147)\nStarted: 2011.11.10, Ended: 2011.11.23\nParticipants: disaac (S), Onii77 (N)\nWinner: disaac\n\n1) Onii77: H G3 B2 R3\n\n2) disaac: H G2 Y1 B3\n\n3) Onii77: B R1 Onii77\n\n4) disaac: B B1 Disaac\n\n5) Onii77: T R1 Y1 Onii77\n\n6) disaac: D B1 Disaac G3 Verdance\n\n7) Onii77: B R1 Onii77\n\n8) disaac: Build B1 Disaac\n\n9) Onii77: D R1 Onii77 G1 Evo\n\n10) disaac: T B1 R1 Disaac\n\n11) Onii77: B Y1 Onii77\n\n12) disaac: B B1 Disaac\n\n13) Onii77: B Y2 Onii77\n\n14) disaac: B B1 Verdance\n\n15) Onii77: M Y2 Onii77 Evo\n\tOnii77: These were going to my spam folder. That&#39;s why I kept missing them. \n\n16) disaac: B B2 Verdance\n\n17) Onii77: Move Y2 Evo Verdance\n\n18) disaac: Sacrifice R1 Disaac\nAttack Y2 Verdance\n\n19) Onii77: B R1 Evo\n\n20) disaac: Trade B2 R2 Verdance\n\n21) Onii77: B Y2 Onii77\n\n22) disaac: B Y2 Verdance\n\n23) Onii77: S Y2 Onii77\nM R3 Onii77 Evo\nM R3 Evo Verdance\n\n24) disaac: S Y2 Verdance\nM R2 Verdance Evo\nM R2 Evo Onii77\n\n25) Onii77: A Y2 Verdance\n\n26) disaac: A Y1 Onii77\n\n27) Onii77: S Y2 Verdance\nM R3 Verdance Evo\nM R3 Evo Onii77\n\n28) disaac: B R1 Onii77\n\n29) Onii77: A Y1 Onii77\n\n30) disaac: B R2 Onii77\nC Onii77 R\n\n31) Onii77: B Y2 Onii77\n\n32) disaac: B B2 Verdance\n\n33) Onii77: S Y1 Onii77\nM R1 Evo Verdance\n\n34) disaac: T B2 R2 Verdance\n\n35) Onii77: S Y1 Onii77\nM R1 Verdance Disaac\n\n36) disaac: B R1 Verdance\n\n37) Onii77: A B1 Disaac\n\n38) disaac: S R2 Verdance\nAttack R1 Disaac\nA B1 Disaac\n\n39) Onii77: B R2 Evo\n\n40) disaac: B R2 Verdance\n\n41) Onii77: B Y1 Onii77\n\n42) disaac: T B1 Y1 Verdance\n\n43) Onii77: B Y2 Onii77\n\n44) disaac: D R1 Verdance G1 Toad\n\n45) Onii77: T Y1 B1 Onii77\n\n46) disaac: B R2 Disaac\n\n47) Onii77: Sacrifice B1 Onii77\nTrade R2 G2 Evo\n\n48) disaac: M R2 Verdance Evo\n\n49) Onii77: Attack R2 Evo\n\n50) disaac: Move R2 Disaac Verdance\n\n51) Onii77: M Y2 Onii77 Evo\n\tdisaac: I need to not take my turn in the middle of the night.\r\nPlus I found that you can only undo one move. :)\n\tOnii77: Uugh\n\n52) disaac: Build R2 Disaac\n\n53) Onii77: M R1 Evo Onii77\n\n54) disaac: Build R3 Toad\n\n55) Onii77: S G2 Evo\nB R3 Onii77\nB R3 Evo\n\n56) disaac: Sacrifice B1 Disaac\nTrade R3 G3 Toad\n\n57) Onii77: M R3 Evo Verdance\n\n58) disaac: Sacrifice G3 Toad\nBuild R3 Verdance\nBuild Y1 Verdance\nBuild Y2 Verdance\n\n59) Onii77: B Y3 Onii77\n\n60) disaac: Sacrifice R2 Verdance\nAttack R3 Verdance\nPass\n\n61) Onii77: M Y2 Evo Verdance\nC Verdance Y\n\n62) disaac: Trade B1 Y1 Verdance\n\n63) Onii77: M R3 Onii77 Toad\n\n64) disaac: Move R3 Verdance Evo\n\n65) Onii77: B R2 Evo\n\n66) disaac: Attack R2 Evo\n\n67) Onii77: M R1 Onii77 Evo\nC Evo R\n\n68) disaac: Trade R2 Y2 Disaac\n\n69) Onii77: A R1 Toad\n\n70) disaac: Discover Y1 Verdance G1 Evo2\n\n71) Onii77: T Y2 R2 Onii77\n\n72) disaac: Build B1 Disaac\n\n73) Onii77: B Y1 Onii77\n\n74) disaac: Build Y2 Evo2\n\n75) Onii77: M Y1 Onii77 Toad\n\n76) disaac: Move Y2 Disaac Verdance\n\n77) Onii77: T Y3 B3 Onii77\n\n78) disaac: Build Y2 Verdance\n\n79) Onii77: D R3 Toad Y3 Alac\n\n80) disaac: Move Y2 Verdance Toad\n\n81) Onii77: B B1 Onii77\n\n82) disaac: Sacrifice R1 Disaac\nAttack R1 Toad\n\n83) Onii77: B Y3 Toad\n\n84) disaac: Build Y3 Verdance\n\n85) Onii77: S B1 Onii77\nT Y3 R3 Toad\n\n86) disaac: B R1 Toad\n\n87) Onii77: A Y2 Toad\n\n88) disaac: Build R1 Verdance\n\n89) Onii77: D R3 Toad Y3 Rity\n\n90) disaac: Move R1 Verdance Evo2\n\n91) Onii77: S R2 Onii77\nA R1 Toad\nA R1 Toad\n\n92) disaac: Build R2 Evo2\n\n93) Onii77: B B1 Onii77\n\n94) disaac: S Y3 Verdance\nM B1 Disaac Verdance\nM B1 Verdance Evo2\nM B1 Evo2 Onii77\nC Onii77 B\n\n\tdisaac: Did you just throw the game. Or was that a complete oversight? You have had me evenly matched here for a awhile.\n\tOnii77: Total oversight!\n\tdisaac: I had been trying to figure out how I could get two more blues into there for a while. I figured that would be about the only way to get rid of the large there.\n\nHomeworlds Online (SDG# 21153)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.11, Ended: 2011.11.30\nParticipants: Salmonax (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Salmonax: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Salmonax: Build G1 Salmonax\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Salmonax: Build G1 Salmonax\n\n7) dlwillson: B G1 Dlwillson\n\n8) Salmonax: Trade G1 R1 Salmonax\n\n9) dlwillson: D G1 Dlwillson B2 Ringo\n\n10) Salmonax: Trade G1 Y1 Salmonax\n\n11) dlwillson: B G1 Dlwillson\n\n12) Salmonax: Build Y1 Salmonax\n\n13) dlwillson: B G1 Ringo\n\n14) Salmonax: Build G2 Salmonax\n\n15) dlwillson: B G2 Ringo\n\n16) Salmonax: Sacrifice Y1 Salmonax\nDiscover G2 Salmonax Y1 Lykke\n\n17) dlwillson: T G2 Y2 Ringo\n\n18) Salmonax: Build G2 Salmonax\n\n19) dlwillson: B Y2 Ringo\n\n20) Salmonax: Discover G2 Lykke B2 Burlerd\n\n21) dlwillson: D G1 Ringo B1 Paul\n\n22) Salmonax: Sacrifice G2 Salmonax\nBuild R1 Salmonax\nBuild R2 Salmonax\n\n23) dlwillson:\nB G2 Paul\n\n24) Salmonax: Build G2 Burlerd\n\n25) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB G3 Ringo\nB G3 Dlwillson\n\n26) Salmonax: Discover Y1 Salmonax B1 Crestible\n\n27) dlwillson: M R1 Dlwillson Ringo\n\n28) Salmonax: Move R1 Salmonax Crestible\n\n29) dlwillson: T G1 B1 Ringo\n\n30) Salmonax: Move Y1 Crestible Burlerd\n\n31) dlwillson: D B1 Ringo G1 John\n\n\nHomeworlds Online (SDG# 21166)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.15, Ended: 2011.12.20\nParticipants: SilentTitan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\tSilentTitan: Since no one seem inclined to challenge me .... I&#39;ll have another go at you. \n\n3) TwoShort: Build G1 Twoshort\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) TwoShort: Build R1 Twoshort\n\n8) SilentTitan: Trade G3 R3 Silenttitan\n\n9) TwoShort: Trade R1 Y1 Twoshort\n\n10) SilentTitan: Trade G1 Y1 Silenttitan\n\n11) TwoShort: Build G1 Twoshort\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n13) TwoShort: Build G2 Twoshort\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) TwoShort: Discover G1 Twoshort G3 Grogar\n\n16) SilentTitan: Trade G2 Y2 Silenttitan\n\n17) TwoShort: Build G2 Twoshort\n\n18) SilentTitan: Trade R3 G3 Silenttitan\n\n19) TwoShort: Trade G2 Y2 Twoshort\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n21) TwoShort: Discover Y1 Twoshort G3 Greenland\n\n22) SilentTitan: Sacrifice Y1 Sol\nDiscover Y2 Sol R3 Alpha\n\n23) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n24) SilentTitan: Build G2 Silenttitan\n\n25) TwoShort: Build G2 Twoshort\n\n26) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Alpha\nBuild Y3 Sol\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild R1 Twoshort\n\n28) SilentTitan: Trade Y2 B2 Silenttitan\n\n29) TwoShort: Build Y2 Greenland\n\n30) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y3 R3 Sol\nTrade Y2 R2 Alpha\n\n31) TwoShort: Sacrifice Y2 Greenland\nMove R1 Twoshort Alpha\nMove R1 Twoshort Alpha\nCatastrophe Alpha Red\n\n32) SilentTitan: Move R3 Sol Yolonda\n\n33) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Yolonda Sol\nDiscover G2 Yolonda Y1 Ynot\n\n\tSilentTitan: sorry man ..... my life got crazy over the last week. \n\nHomeworlds Online (SDG# 21193)\nStarted: 2011.11.20, Ended: 2011.12.4\nParticipants: ringebri (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld R1 B2 G3\n\tMagicJohn: According to the wiki, green, blue and yellow are the most important beginning colors although red home stars are gaining in popularity. Check out the rules and wiki for suggestions.\n\n2) ringebri: Homeworld G1 Y3 B3\n\tringebri: what&#39;s the syntax for my first commands. Please give examples.\n\tMagicJohn: first the command &quot;homeworld&quot; then whatchawanna do ei &quot;homeworld&quot; &quot;g1&quot; (small green star) &quot;y3&quot; (large yellow star) and &quot;b3&quot; (large blue ship). The first command would look like &quot;homeworld g1 y3 b3&quot;  see the middle top of the page for commands....   \n\n3) MagicJohn: Build G1 Magicjohn\n\tringebri: ok. since I still don&#39;t know what I&#39;m doing, I put your example into the command box.\n\tMagicJohn: Next, it seems that the objective is to build big (#3) ships. Good players can control the stash by building ships or discovering new stars, each of which depletes the stash. Abandoning a system put that star back in the stash....\n\tMagicJohn: The color green is used to build. You can only build a color of ship that you already own in that star system. I own a green ship sooo..... &quot;build G1 magicjohn&quot; is my next command.\n\n4) ringebri: Build B1 Ringebri\n\tMagicJohn: You own a blue ship, so &quot;build b1 ringebri&quot; is your next move. You could also &quot;trade&quot; your b3 for another large ship but that would be wasting a turn. You could &quot;discover&quot; but that would abandon your homeworld and you would imediately lose the game..... \n\tMagicJohn: This is like an opening in chess. You try to set yourself up in a powerful position for a mid-game attack.\n\n5) MagicJohn: Build G1 Magicjohn\n\tringebri: what if I wanted a red ship? or a blue2 ship?\n\tMagicJohn: To get a red ship you would have to trade in (blue color available so trading is OK)one of your other ships. When you build, you always get the smallest ship from the stash in the color you want. Therefore, you must wait for all of the #1 ships to be in play or trade another #2 ship for it.\n\tMagicJohn: Did that make sense or should I rephrase?\n\n6) ringebri: Build B1 Ringebri\n\tMagicJohn: By building a g1 I limited your access to green. Now the only way you can get one (stash being what it is at present) is to trade in your b3 ship. No big deal now but it could be problematic later on.\n\tMagicJohn: Also I would NEVER make that move later in the game because you could move another green ship into my system and blow up (catastrophe) all of the green ships or stars in the system.\n\tMagicJohn: Your next move could be to build another blue ship, discover a new star system, or trade for another color of ship. You can trade a #3 for a #3 of a different color or your #1 for a #1 of a different color.\n\tMagicJohn: You would have to &quot;discover&quot; a #2 sized star system (of whatever color) because you can only travel to stars of a different size than the one you are traveling from.\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) ringebri: Discover B1 Ringebri R2 Vorkin\n\tMagicJohn: Now I need to move some ships so I don&#39;t &quot;catastrophe&quot; myself. To do that, I need access to yellow. Hence the trade.  You will need to &quot;discover&quot; or &quot;trade&quot; for the same reason. The color of your new star will dictate whether you can &quot;travel/move&quot; (yellow) or build (green).\n\tMagicJohn: You have yellow technology already (your #3 star),so you can &quot;discover&quot; this turn. Just don&#39;t build another blue ship in your system just now. \n\tringebri: because that would &quot;overpopulate&quot; my homeworld, right?\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Overthemoon\n\tringebri: fire hydrant fire hydrant!\n\tMagicJohn: Cute..... Fortunately not as bad as Webster&#39;s mutt.\r\nYes. Four of one color of anything (stars and ships combined) equals a catastrophe. Moving a ship into your opponent&#39;s to create a catastrophe is a major strategy towards winning the game. \n\n10) ringebri: Trade B1 R1 Ringebri\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) ringebri: Build B1 Ringebri\n\tMagicJohn: My plan is to build a couple more greens then sacrifice my g3. That lets me build 3 new ships, so I could get two g2&#39;s and a g3, which would be a profitable building move.\n\n13) MagicJohn: Build G2 Overthemoon\n\n14) ringebri: Trade B3 Y3 Ringebri\n\tMagicJohn: You can continue to push your blue technology but eventually use it to achieve some yellow or green. Remember that #3 ships = power.  \n\tMagicJohn: Right now, you would not want to discover/create a g3 star system. Then when I sacrifice I would get two g3&#39;s and a g2 instead or vise-versa.\n\tMagicJohn: If you had a b2 and travel technology in vorkin, you could have foiled my plan. Can you see how?\n\n15) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Overthemoon\nBuild G2 Magicjohn\nBuild G3 Magicjohn\n\tMagicJohn: I&#39;m trying to be a good teacher. So, grasshopper, do you see how my plan might have been foiled?\n\n16) ringebri: Trade Y3 G3 Ringebri\n\tMagicJohn: Now I have to disperse my green ships before you can trade for green and overload one of my star systems.\n\tMagicJohn: You now control large yellow. That could prove useful......\n\n17) MagicJohn: Trade G2 Y2 Magicjohn\n\tringebri: I&#39;m only a lowly grasshopper.  How might I have foiled thee?\n\tMagicJohn: Lotsa &quot;ifs&quot; but.. If vorkin had been a yellow star system you might have traded your b1 for a g1. That threat of overloading overthemoon with green technology would made me modify my immediate plans.\n\tMagicJohn: uh.... make that &quot;would have made me&quot;..... or &quot;would make me&quot;.... Need a proof reader...\n\n18) ringebri: Move G3 Ringebri Vorkin\n\tMagicJohn: Now my threat is sacrificing my y2 in magicjohn and moving two g3&#39;s into vorkin. I would still need another y2 to send them into &quot;ringer&quot;, but that would wipe out your green technology including your green home star. You can&#39;t attack #2 ships with a #1 red ship, so vorkin is a safe platform for me at the moment.  \n\tMagicJohn: Oh, just realized... I don&#39;t know if the size of a red star influences what can be attacked in that star system. I don&#39;t think so, but I&#39;m not sure. Maybe we should check out the rules on that point...\n\tMagicJohn: Nuts... still need a proof reader... Second to last comment. I only have 2 g2&#39;s (not g3&#39;s) to move into vorkin.\n\n19) MagicJohn: Discover G2 Overthemoon Y2 Overtherainbo\n\tringebri: Not sure what I&#39;m doing.  I knew I could move the g3 into Vorkin so I did but I&#39;m not sure.... You can do multiple commands, right?\n\tMagicJohn: If you sacrifice a ship, you can make as many moves as the size of the ship you sacrificed. Catastrophes result from other moves so are technically two command moves. Otherwise you are limited to one command per turn. Your g3 and b1 are stuck in vorkin without &quot;yellow technology&quot;.   \n\tMagicJohn: Trading could get you yellow technology....\n\tMagicJohn: It&#39;s really dangerous to not have a #3 ship in your home star system. It makes you very vulnerable to infiltration.\n\n20) ringebri: Build B1 Ringebri\n\n21) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Overthemoon\nBuild G3 Magicjohn\nBuild G3 Overtherainbo\n\n22) ringebri: Trade B1 Y1 Vorkin\n\tMagicJohn: Sacrifice is the quickest way to acquire more ships. You might think of sacrificing your g3 for two b2&#39;s and a b3. If you do, be careful and don&#39;t overload blue in your home system.\n\n23) MagicJohn: Discover G1 Overthemoon Y2 Overthetop\n\n24) ringebri: Move G3 Vorkin Overthemoon\n\tMagicJohn: By owning a bunch of green ships and creating green stars a player can control an opponent&#39;s access to a technology (green in this case). Your green home star keeps you in the game unless I can destroy it.\n\tMagicJohn: If you sacrifice your g3 it goes back in the stack and you can rebuild it as part of your 3 building moves. ie.... Sacrifice g3 vorkin (return) build y1  vorkin (return) build y3 ringebri (return) build g3 vorkin.\n\tMagicJohn: OOOPS!!!! Wrong, wrong, wrong. When you build a ship, you have to have another ship of that color in the star system. Thus, if you sacrifice your g3, you have no more green ships and could not build another. Your only access to green ships would be trading for one and I would gobble it up before you could do that. Sorry &#39;bout the misinfo but I&#39;m still trying to learn the game too....\n\n25) MagicJohn: Trade G3 Y3 Magicjohn\n\n26) ringebri: Build B1 Ringebri\n\tMagicJohn: Dangerous situation...\n\n27) MagicJohn: Build G3 Magicjohn\n\n28) ringebri: Trade B1 Y1 Ringebri\n\n29) MagicJohn: Sacrifice Y3 Magicjohn\nMove G1 Overthetop Ringebri\nMove G2 Overtherainbo Ringebri\nMove G3 Overtherainbo Ringebri\nCatastrophe Ringebri Green\n\n30) ringebri: Trade B1 G1 Ringebri\n\tMagicJohn: The material cost of the sacrifice was a lot but it really cuts down your options. You have to keep working for green and maybe attacking my blue star.\n\n31) MagicJohn: Discover G2 Overthemoon Y2 Overthehill\n\n32) ringebri: Move Y1 Ringebri Magicjohn\n\tMagicJohn: Now I will try to go after yellow....\n\n33) MagicJohn: Attack Y1 Magicjohn\n\tringebri: Oh my! This system has a lot of ships.\n\n34) ringebri: Build G1 Ringebri\n\tMagicJohn: ...or yellow is coming after me...\n\tringebri: Was that the &quot;attack&quot; order and were you able to do that because you have a red sun?\n\tMagicJohn: Yes, that was the &quot;attack&quot; order. The red sun gives me access to the &quot;attack&quot; order. It only works if I have a ship in the star system larger than or equal to the size of the ship I&#39;m attacking \n\n35) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y1 Magicjohn Overthemoon\nMove Y1 Overthemoon Overthehill\n\n36) ringebri: Trade G1 B1 Ringebri\n\n37) MagicJohn: Sacrifice G3 Magicjohn\nBuild Y2 Overthehill\nBuild Y2 Overthehill\nBuild Y3 Magicjohn\n\tringebri: If I built the g2 ship in ringebri you would move a g2 into ringebri, cause a catastrophe, and wipe out all of the green. Right?\n\n38) ringebri: Move B1 Ringebri Vorkin\n\tMagicJohn: Yes, probably so, but my major objective is to get your yellow star. Also, I would have moved my g1 from MagicJohn instead of a g2. Less sacrifice on my part given the state of our economy....\n\n39) MagicJohn: Sacrifice Y3 Magicjohn\nMove Y1 Magicjohn Ringebri\nMove Y1 Overthehill Ringebri\nMove Y2 Overthehill Ringebri\nCatastrophe Ringebri Y\n\n\tMagicJohn: Sorry, I should have made the game &quot;unrated&quot;. Try another one?\n\nHomeworlds Online (SDG# 21206)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.22, Ended: 2011.11.28\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\tzoltar: Hi!\n\tts52: Hi! Have a great game!\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Trade G1 R1 Ts52\n\n7) zoltar: Build Y1 Zoltar\n\n8) ts52: Build R1 Ts52\n\n9) zoltar: Build Y1 Zoltar\n\n10) ts52: Build R2 Ts52\n\n11) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n12) ts52: Trade R2 Y2 Ts52\n\n13) zoltar: Build Y2 Greengiant\n\n14) ts52: Discover Y2 Ts52 G1 Robin\n\n15) zoltar: Discover Y1 Zoltar B3 Bluemoon\n\n16) ts52: Build R2 Ts52\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluemoon\n\n18) ts52: Move R2 Ts52 Robin\n\n19) zoltar: Trade Y3 G3 Zoltar\n\n20) ts52: Move R2 Robin Greengiant\n\n21) zoltar: Sacrifice Y2 Zoltar\nDiscover Y2 Greengiant B1 Blueberry\nDiscover Y1 Greengiant B2 Bluebell\n\n22) ts52: Build R2 Ts52\n\n23) zoltar: Trade Y3 R3 Bluemoon\n\n24) ts52: Move R2 Ts52 Robin\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluemoon\nBuild Y3 Blueberry\nBuild Y3 Zoltar\n\n26) ts52: Build G1 Ts52\n\n27) zoltar: Trade Y3 G3 Zoltar\n\n28) ts52: Move R2 Robin Bluebell\n\n29) zoltar: Build Y3 Zoltar\n\n30) ts52: Attack Y1 Bluebell\n\n31) zoltar: Build G1 Zoltar\n\n32) ts52: Move R1 Ts52 Robin\n\n33) zoltar: Discover G3 Zoltar R3 Redgiant\n\n34) ts52: Move G1 Ts52 Robin\n\n35) zoltar: Build G2 Zoltar\n\n36) ts52: Build G2 Ts52\n\n37) zoltar: Discover G2 Zoltar R3 Redrover\n\n38) ts52: Build R2 Ts52\n\n39) zoltar: Sacrifice G3 Redgiant\nBuild R3 Bluemoon\nBuild G2 Redrover\nBuild G3 Zoltar\n\n40) ts52: Sacrifice Y2 Robin\nMove R1 Robin Bluemoon\nMove R2 Bluebell Bluemoon\nCatastrophe Bluemoon R\n\n41) zoltar: Trade Y3 R3 Blueberry\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Bluebell\nBuild Y3 Bluebell\n\n43) zoltar: Sacrifice Y2 Bluemoon\nMove G2 Redrover Blueberry\nMove Y1 Bluemoon Bluebell\nCatastrophe Bluebell Y\n\n44) ts52: Trade R1 Y1 Ts52\n\n45) zoltar: Sacrifice Y3 Zoltar\nMove G2 Redrover Blueberry\nMove G2 Blueberry Ts52\nMove G2 Blueberry Ts52\nCatastrophe Ts52 G\n\n46) ts52: Trade R2 G2 Ts52\n\n47) zoltar: Move R3 Blueberry Ts52\n\tzoltar: Huge explosions have been detected in the proximity of the ts52 homeworld.\n\tts52: Damn! How did I not see that one coming....\n\n48) ts52: Trade Y1 R1 Ts52\n\n49) zoltar: Attack G2 Ts52\n\tzoltar: Yeah, a Y3 is often a devastating weapon when sacrificed.\n\n\tts52: All right, I give up. Well played sir.\n\tzoltar: Thanks. gg\n\nHomeworlds Online (SDG# 21107)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.25, Ended: 2012.1.30\nParticipants: agentofchaos (S), Subhan64 (N)\nWinner: agentofchaos\n\n1) Subhan64: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld R1 B2 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Subhan64: Discover G1 Subhan64 G3 Kermit\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Subhan64: Build G1 Subhan64\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n10) agentofchaos: Trade Y1 R1 Agentofchaos\n\n11) Subhan64: Build G1 Subhan64\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild G2 Bigbird\nBuild G3 Subhan64\n\n14) agentofchaos: Move G2 Agentofchaos Bigbird\n\n15) Subhan64: Discover G2 Subhan64 Y3 Banana\n\n16) agentofchaos: M R1 Agentofchaos Kermit\n\n17) Subhan64: Trade G1 R1 Subhan64\n\n18) agentofchaos: Sacrifice R1 Kermit\nAttack G2 Bigbird\n\n19) Subhan64: Build G1 Bigbird\nCatastrophe Bigbird Green\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) Subhan64: Build G1 Subhan64\n\n22) agentofchaos: Trade G1 R1 Agentofchaos\n\n23) Subhan64: Sacrifice G2 Banana\nBuild R2 Subhan64\nBuild R2 Subhan64\n\n24) agentofchaos: Build R2 Agentofchaos\n\n25) Subhan64: Move R2 Subhan64 Kermit\n\n26) agentofchaos: Discover R2 Agentofchaos Y3 Dreamward\n\n27) Subhan64: Build R3 Kermit\n\n28) agentofchaos: B G1 Agentofchaos\n\n29) Subhan64: Trade G3 Y3 Subhan64\n\n30) agentofchaos: Trade R1 B1 Agentofchaos\n\n31) Subhan64: Move Y3 Subhan64 Kermit\n\n32) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Dreamward\n\n33) Subhan64: Move R1 Subhan64 Kermit\n\n34) agentofchaos: Build G1 Agentofchaos\n\n35) Subhan64: Sacrifice Y3 Kermit\nMove R3 Kermit Agentofchaos\nMove R2 Kermit Agentofchaos\nMove R1 Kermit Agentofchaos\nCatastrophe Agentofchaos Red\n\n36) agentofchaos: Build G2 Agentofchaos\n\n37) Subhan64: Build G2 Subhan64\n\n38) agentofchaos: Trade G3 R3 Agentofchaos\n\n\nHomeworlds Online (SDG# 21159)\nStarted: 2011.11.25, Ended: 2011.12.2\nParticipants: Subhan64 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Subhan64: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Subhan64: Build G1 Subhan64\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Subhan64: Trade G3 Y3 Subhan64\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) Subhan64: Build Y2 Subhan64\n\n9) ts52: Build Y2 Kermit\n\n10) Subhan64: Trade Y2 G2 Subhan64\n\n11) ts52: Build G1 Ts52\n\n12) Subhan64: Discover G2 Subhan64 Y2 Bigbird\n\n13) ts52: Discover Y1 Kermit G2 Walter\n\n14) Subhan64: Build G1 Bigbird\n\n15) ts52: Build Y2 Walter\n\n16) Subhan64: Trade Y3 R3 Subhan64\n\n17) ts52: Trade G1 R1 Ts52\n\n18) Subhan64: Move R3 Subhan64 Walter\n\n19) ts52: Sacrifice Y2 Kermit\nMove Y1 Walter Subhan64\nMove Y2 Walter Subhan64\n\n20) Subhan64: Sacrifice G2 Bigbird\nBuild G1 Subhan64\nBuild G2 Bigbird\n\n21) ts52: Trade Y2 R2 Subhan64\n\n\tSubhan64: Good game!\n\tts52: Thanks. Thanks for the game.\n\nHomeworlds Online (SDG# 21227)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.28, Ended: 2011.12.2\nParticipants: Subhan64 (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) Subhan64: Homeworld B1 Y2 G3\n\tDanner: Hi! Have a nice game!\r\nI usually let my opponent make the starting move, but if you prefer not to do, just pass.\n\n3) Danner: Homeworld B1 G2 B3 *\n\tSubhan64: Good luck!\n\n4) Subhan64: Build G1 Subhan64\n\n5) Danner: Build B1 Danner\n\n6) Subhan64: Build G1 Subhan64\n\n7) Danner: Trade B3 Y3 Danner\n\n8) Subhan64: Discover G1 Subhan64 G3 Kermit\n\n9) Danner: Build B2 Danner\n\n10) Subhan64: Build G1 Kermit\n\n11) Danner: Discover B2 Danner G3 Larkspur\n\n12) Subhan64: Build G2 Subhan64\n\n13) Danner: Build B2 Larkspur\n\n14) Subhan64: Trade G2 Y2 Subhan64\n\n15) Danner: Build B2 Larkspur\n\n16) Subhan64: Sacrifice Y2 Subhan64\nMove G1 Kermit Danner\nMove G1 Kermit Danner\n\n17) Danner: Build B3 Danner\n\tDanner: Welcome to my homeworld! :)\n\n18) Subhan64: Build G2 Danner\nCatastrophe Danner Green\n\n19) Danner: Trade B3 G3 Danner\n\n20) Subhan64: Build G1 Subhan64\n\n21) Danner: Sacrifice Y3 Danner\nMove G3 Danner Larkspur\nMove G3 Larkspur Subhan64\nPass\nCatastrophe Subhan64 G\n\n\tDanner: Thanks for the game!\n\tSubhan64: You distracted me with those blue ships!\r\n\n\tDanner: Sorry :)\n\nHomeworlds Online (SDG# 21223)\nStarted: 2011.11.28, Ended: 2011.11.30\nParticipants: ts52 (S), jsb (N)\nWinner: ts52\n\n1) jsb: Homeworld Y1 G3 B3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) jsb: Build B1 Jsb\n\n4) ts52: Build G1 Ts52\n\tts52: Have a good game!\n\n5) jsb: Discover B1 Jsb Y2 Harmonica\n\n6) ts52: Trade G1 B1 Ts52\n\tjsb: Thanks, you too, ts52. \n\n7) jsb: Build B2 Jsb\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) jsb: Build B2 Jsb\n\n10) ts52: Build B2 Kermit\n\n11) jsb: Trade B2 G2 Jsb\n\n12) ts52: Trade B2 Y2 Kermit\n\n13) jsb: Discover B2 Jsb G2 Harp\n\n14) ts52: Build G1 Ts52\n\n15) jsb: Discover B1 Harmonica Y3 Flute\n\n16) ts52: Build Y1 Kermit\n\n17) jsb: Move B1 Flute Ts52\n\n18) ts52: Trade Y1 R1 Kermit\n\n19) jsb: Sacrifice G2 Jsb\nBuild B2 Ts52\nBuild B2 Ts52\nCatastrophe Ts52 B\n\n20) ts52: Move Y2 Kermit Harp\n\n21) jsb: Trade B2 Y2 Harp\n\n22) ts52: Sacrifice R1 Kermit\nAttack Y2 Harp\n\n23) jsb: Build B1 Jsb\n\n24) ts52: Move Y2 Harp Kermit\n\n25) jsb: Move B1 Jsb Ts52\n\n26) ts52: Trade Y2 R2 Kermit\n\n27) jsb: Trade B1 G1 Ts52\n\n28) ts52: Sacrifice R2 Kermit\nAttack G1 Ts52\nPass\n\n29) jsb: Build B1 Jsb\n\n30) ts52: Sacrifice B1 Kermit\nTrade G1 B1 Ts52\n\n31) jsb: Discover B1 Jsb G2 Violin\n\n32) ts52: Trade G3 R3 Ts52\n\n33) jsb: Build B1 Violin\n\n34) ts52: Move R3 Ts52 Jsb\n\n\tjsb: Good game, ts52 - I got ahead of myself. \n\tts52: Thanks for the game. \n\nHomeworlds Online (SDG# 21236)\nVariants: &quot;Hard time&quot;\nStarted: 2011.11.29, Ended: 2012.1.2\nParticipants: AdamBadura (S), goulo (N)\nWinner: AdamBadura\n\n1) goulo: Homeworld R3 B1 G3\n\tgoulo: Hi, I wondered if I might receive a ladder challenge from you soon. :)\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) goulo: Build G1 Goulo\n\tAdamBadura: :)\n\n4) AdamBadura: Build Y1 Adambadura\n\tgoulo: BTW I bought a Realm set from nestorgames at Essen and am currently playing a game online here at SDG as well. Strange interesting non-elegant game! :)\n\n5) goulo: Trade G1 Y1 Goulo\n\tAdamBadura: http://www.gry-planszowe.pl/forum/viewtopic.php?f=4&amp;t=16794\r\n\r\nIt looks like I&#39;m going to be there. Brian as well. We set up to play Ora at Labora (I&#39;m curious about that game, lots of hype, we will see if justified...). What else I don&#39;t know yet but I&#39;m dreaming of an 18xx.\r\n\r\nWill you be there?\n\tgoulo: Oh, interesting, I had not heard about this event. It looks like Gratislavia, but isn&#39;t Gratislavia...?\r\n\r\nIt&#39;s also just 1 week after Pionek, strange timing! But at least not the SAME weekend as Pionek. :)\r\n\r\nI think I will be free that weekend, so I hope to go to it. Thanks for the info!\n\n6) AdamBadura: Trade Y1 R1 Adambadura\n\n7) goulo: Build G1 Goulo\n\tAdamBadura: It looks like Gratislavia but it is not. It seems different people are behind this one. I don&#39;t know which people. I never heared about it.\r\n\r\nI have mixed feelings. As this might mean some break in the gaming community in Wroc&sup3;aw. But looking just at the known facts: hey! we have a second convention! lets cherish! ;)\n\tgoulo: Certainly! More gaming events = A Good Thing. :)\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) goulo: Trade G1 R1 Goulo\n\n10) AdamBadura: Discover Y1 Adambadura G1 Shipyard\n\n11) goulo: Build G1 Goulo\n\n12) AdamBadura: Build Y1 Adambadura\n\n13) goulo: Build Y2 Goulo\n\n14) AdamBadura: Build Y2 Shipyard\n\n15) goulo: Discover Y1 Goulo Y2 Citrono\n\n16) AdamBadura: Trade Y1 G1 Adambadura\n\n17) goulo: Discover G1 Goulo R2 Rubeno\n\n18) AdamBadura: Move Y2 Shipyard Rubeno\n\n19) goulo: Build G2 Goulo\n\n20) AdamBadura: Attack G1 Rubeno\n\n21) goulo: Move G2 Goulo Citrono\n\n22) AdamBadura: Build Y1 Adambadura\n\n23) goulo: Build Y3 Goulo\n\tAdamBadura: Sorry for slow gameing recently bt we are buying our own flat and there is lots to do...\n\n24) AdamBadura: Build Y3 Rubeno\n\tgoulo: No problem! And good luck with the flat buying process! I guess that means I won&#39;t see you at Pionek... :)\n\n25) goulo: Build G2 Citrono\n\tAdamBadura: You wouldn&#39;t see me there anyway... ;)\r\n\r\nWe are finalizing things now. I will live (starting March/April) near the place I live now, only on the other side of Pomorska.\n\n26) AdamBadura: Build G2 Rubeno\n\n27) goulo: Discover G2 Citrono B1 Mirteleto\n\n28) AdamBadura: Trade G1 B1 Adambadura\n\tgoulo: Pionek was good. I finished the weekend with a good epic game of Gnostica with zara2stra. :)\n\n29) goulo: Build G1 Mirteleto\n\n30) AdamBadura: Build B2 Adambadura\n\n31) goulo: Build G3 Citrono\n\n32) AdamBadura: Move B2 Adambadura Shipyard\n\n33) goulo: Sacrifice Y2 Goulo\nMove G1 Mirteleto Adambadura\nMove G2 Mirteleto Adambadura\n\n34) AdamBadura: Sacrifice Y3 Rubeno\nMove Y1 Shipyard Citrono\nMove Y1 Adambadura Shipyard\nMove Y1 Shipyard Citrono\nCatastrophe Citrono Y\n\n35) goulo: Build Y1 Goulo\n\n36) AdamBadura: Build G2 Rubeno\n\tAdamBadura: Sometimes I wish there was a &quot;try mode&quot; when you execute a command but only to look at the results before approving (and submiting) or canceling. It is sometimes uneasy to see how it will look like after a catastrophe.\n\tAdamBadura: Your is more &quot;geek-y&quot; than you claim she is... After all not only she came today for the Fest alone but also she took part in some contest and got a prize!\r\n\r\nSo now I&#39;m starting to wonder why she never comes at my place when you do... ;)\r\n\r\n\r\nAnd to be more serious that Hex game got my interest. I intended to challange you but as it seems it is not implemented here...\n\tAdamBadura: *Your girl\n\tgoulo: Her gaming enthusiasm goes in waves. She got very excited at this past Pionek. :)\r\n\r\nAbout Hex - it is playable at some other sites, e.g. littlegolem.net (but littlegolem is having DNS problems or something, not reachable the past few days, sigh) I play Hex there.\n\n37) goulo: Build G3 Adambadura\nCatastrophe Adambadura G\n\n38) AdamBadura: Discover G2 Rubeno G3 Highway\n\tgoulo: Have you played 20th Century from Czech Games Edition? We tried it for the first time tonight and enjoyed it.\n\n39) goulo: Discover R1 Goulo B2 Mirtelo\n\n40) AdamBadura: Build Y1 Rubeno\n\tAdamBadura: I just read a review in Swiat Gier Planszowych. Seemed interesting yet it didn&#39;t interest me enough to try to find it someplace. If you have it now we can play some time. Yet I&#39;m afraid I will have time for gaming after Christmas only.\n\tgoulo: It wasn&#39;t our set; Czarna and Repcio bought it at Essen.\n\n41) goulo: Move Y3 Goulo Rubeno\n\n42) AdamBadura: Sacrifice Y2 Rubeno\nMove G2 Rubeno Goulo\nMove G1 Rubeno Goulo\n\n43) goulo: Move Y3 Rubeno Goulo\n\n44) AdamBadura: Move Y1 Rubeno Goulo\n\n45) goulo: Attack Y1 Goulo\n\n46) AdamBadura: Trade G2 Y2 Goulo\nCatastrophe Goulo Y\n\n47) goulo: Attack G1 Goulo\n\n48) AdamBadura: Trade Y3 G3 Adambadura\n\n49) goulo: Trade G1 Y1 Goulo\n\n50) AdamBadura: Build G1 Adambadura\n\n51) goulo: Build Y1 Goulo\n\n52) AdamBadura: Trade G3 Y3 Adambadura\n\tAdamBadura: Sorry again for delays. Its not my usual type of playing. The rector of our parish died in car accident on Thusday. As I&#39;m somewhat involved in tha parish (mostly by administrating the web site and being member of board) it consumes significant amount of time. (Especially that the rector was an important person otherwise as well being a &quot;pra&sup3;at&quot; and &quot;prof. dr hab.&quot;...)\n\tgoulo: No problem, almost all the PBEM games are going much slower lately, I notice. It really slows down in December!\r\n\r\nSorry to hear about the rector&#39;s car accident. Good luck to you dealing with his death and all the other stuff.\n\n53) goulo: Move Y1 Goulo Mirtelo\n\n54) AdamBadura: Build G1 Adambadura\n\n55) goulo: Discover R1 Mirtelo B3 Mirtelego\n\n56) AdamBadura: Build G2 Highway\n\n57) goulo: Trade G3 Y3 Goulo\n\n58) AdamBadura: Build B1 Shipyard\n\n\tgoulo: I see no hope for me here!\n\tgoulo: happy new year! :)\n\tAdamBadura: Hmm... Interesting. I wasn&#39;t sure of this game. It seemed to me I had a little advantage but I think you could have outplayed me by skills.\r\n\r\nHappy new year!\n\tgoulo: I think you have too many ships, and I couldn&#39;t realistically catch up, nor could I see how to create enough blues to try rushing your homeworld.\n\nHomeworlds Online (SDG# 21133)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.2, Ended: 2011.12.10\nParticipants: Jesse (S), Subhan64 (N)\nWinner: Jesse\n\n1) Subhan64: Pass\n\n2) Jesse: Homeworld Y3 B2 G3\n\n3) Subhan64: Homeworld Y1 B2 G3\n\tJesse: Hello hello.\n\n4) Jesse: Build G1 Jesse\n\tSubhan64: Hello!\r\n\n\n5) Subhan64: Build G1 Subhan64\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Subhan64: Build G1 Subhan64\n\n8) Jesse: Build G1 Jesse\n\n9) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n10) Jesse: Discover G1 Jesse Y1 Lemon\n\n11) Subhan64: Build G2 Subhan64\n\n12) Jesse: Build G2 Jesse\n\n13) Subhan64: Trade G2 Y2 Subhan64\n\n14) Jesse: Build Y2 Jesse\n\n15) Subhan64: Discover G1 Subhan64 Y3 Bananarama\n\n16) Jesse: Discover Y1 Jesse B1 Berry\n\n17) Subhan64: Build Y2 Subhan64\n\n18) Jesse: Sacrifice Y2 Jesse\nMove Y1 Berry Bananarama\nMove Y1 Bananarama Subhan64\nCatastrophe Subhan64 Y\n\n19) Subhan64: Build G2 Subhan64\n\n20) Jesse: Sacrifice G3 Jesse\nBuild G2 Lemon\nBuild G3 Jesse\nBuild G3 Jesse\n\n21) Subhan64: Trade G2 Y2 Subhan64\n\n22) Jesse: Trade G3 R3 Jesse\n\n23) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Bigbird\nBuild G3 Bananarama\nBuild G3 Bigbird\n\n24) Jesse: Move G1 Lemon Bigbird\nCatastrophe Bigbird G\n\n25) Subhan64: Sacrifice G1 Bananarama\nBuild Y1 Subhan64\n\n26) Jesse: Discover G2 Jesse B1 Berry2\n\n27) Subhan64: Build G1 Bananarama\n\n28) Jesse: Build G1 Berry2\n\n29) Subhan64: Sacrifice Y2 Subhan64\nMove G3 Bananarama Subhan64\nMove Y1 Subhan64 Bananarama\n\n30) Jesse: Trade G1 Y1 Berry2\n\n31) Subhan64: Build G1 Subhan64\n\n32) Jesse: Build Y2 Berry2\n\n33) Subhan64: Build Y2 Bananarama\n\n34) Jesse: Sacrifice Y2 Berry2\nMove G2 Berry2 Subhan64\nMove G2 Lemon Subhan64\nCatastrophe Subhan64 G\n\tJesse: Gotta watch out for those sacrifice threats.\n\tSubhan64: yeah.  I knew I was toast anyway once I lost one of my homeworlds.   One of these days I&#39;ll actually win a game of this!\n\n\nHomeworlds Online (SDG# 21280)\nStarted: 2011.12.4, Ended: 2011.12.21\nParticipants: Onii77 (S), disaac (N)\nWinner: disaac\n\n1) disaac: H Y3 B2 G3\n\n2) Onii77: H B3 R1 G3\n\n3) disaac: Build G1 Disaac\n\n4) Onii77: B G1 Onii77\n\n5) disaac: Discover G1 Disaac B1 Ba\n\n6) Onii77: T G1 Y1 Onii77\n\n7) disaac: Build G1 Disaac\n\n8) Onii77: B G1 Onii77\n\n9) disaac: Trade G1 Y1 Disaac\n\n10) Onii77: D G1 Onii77 B2 Wall\n\n11) disaac: Build G1 Disaac\n\n12) Onii77: T G1 R1 Wall\n\n13) disaac: Trade G1 R1 Disaac\n\n14) Onii77: B G1 Onii77\n\n15) disaac: Build R2 Disaac\n\n16) Onii77: M G1 Onii77 Wall\n\n17) disaac: M R2 Disaac Ba\n\n18) Onii77: B R2 Wall\n\n19) disaac: Sacrifice G3 Disaac\nBuild R2 Disaac\nBuild R3 Disaac\nBuild R3 Ba\n\n20) Onii77: T R2 Y2 Wall\n\n21) disaac: D R2 Disaac G1 Ga\n\n22) Onii77: B G2 Wall\n\n23) disaac: Trade R3 G3 Disaac\n\n24) Onii77: B R2 Wall\n\n25) disaac: Sacrifice G3 Disaac\nBuild R3 Ga\nBuild R3 Disaac\nBuild G2 Ba\n\n26) Onii77: S Y2 Wall\nM R1 Wall Ba\nM R2 Wall Ba\nC Ba Red\n\n27) disaac: Sacrifice G2 Ba\nBuild Y1 Disaac\nBuild G2 Ba\n\n28) Onii77: T G2 B2 Wall\n\n29) disaac: Move Y1 Disaac Ga\n\n30) Onii77: B G2 Wall\n\n31) disaac: Move R2 Ga Wall\n\n32) Onii77: S G2 Wall\nB Y2 Onii77\nB Y2 Onii77\n\n33) disaac: Sacrifice G2 Ba\nBuild Y2 Ga\nBuild Y3 Disaac\n\n34) Onii77: S Y2 Onii77\nM G1 Wall Ba\nM B2 Wall Ba\n\n35) disaac: Sacrifice Y3 Disaac\nMove R3 Ga Wall\nMove R2 Wall Onii77\nMove R3 Wall Onii77\n\n36) Onii77: A R3 Onii77\n\n37) disaac: Sacrifice G1 Ba\nBuild R1 Onii77\nCatastrophe Onii77 R\n\n38) Onii77: T Y2 R2 Onii77\n\n39) disaac: Trade Y1 B1 Disaac\n\n40) Onii77: M R2 Onii77 Ga\n\n41) disaac: Sacrifice R1 Disaac\nAttack R2 Ga\n\n42) Onii77: T G1 R1 Ba\n\n43) disaac: Move B1 Disaac Ga\n\n44) Onii77: T B2 R2 Ba\n\n45) disaac: Move Y1 Ga Disaac\n\n46) Onii77: B G1 Onii77\n\n47) disaac: Trade Y1 G1 Disaac\n\n48) Onii77: M G1 Onii77 Ba\n\n49) disaac: Build G2 Disaac\n\n50) Onii77: T G3 Y3 Onii77\n\n51) disaac: Sacrifice G2 Disaac\nBuild B1 Ga\nBuild B2 Ga\n\n52) Onii77: B G2 Ba\n\n53) disaac: Move B1 Ga Onii77\n\n54) Onii77: S Y3 Onii77\nM R2 Ba Disaac\nM R1 Ba Disaac\nM G2 Ba Disaac\n\tdisaac: Checkmate I believe. :)\n\n\tOnii77: ;)\n\tOnii77: Yep. Good game. \n\tdisaac: Yes it was. I felt stuck there for quite a while with no green in my homeworld. \n\tdisaac: Then I had a bit of a race with you at the end to make sure I got my ships built and ready to move before you had a chance to start wiping out my homeworld fleet.\n\nHomeworlds Online (SDG# 21285)\nVariants: &quot;Unrated&quot;\nStarted: 2011.12.5, Ended: 2011.12.25\nParticipants: ringebri (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B2 R1 G3\n\n2) ringebri: Homeworld G3 B1 Y3\n\tringebri: I tried this command: homeworld g2,b1,y3.  Why doesn&#39;t it work.\n\tringebri: homeworld g3,b1,y3\n\tringebri: homeworld g3, b1, y3 doesn&#39;t work either.\n\n3) MagicJohn: Build G1 Magicjohn\n\tringebri: ok. the command line can&#39;t have commas in it.\n\n4) ringebri: Build Y1 Ringebri\n\tringebri: Just re-read the wiki.  Not good to have the same size systems as your opponent.\n\n5) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: Now the point is to build as quickly as possible. Maybe try to monopolize a color. I might have an advantage because I will try to build green and that is the color of one of your home stars.\n\n6) ringebri: Trade Y1 R1 Ringebri\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) ringebri: Build Y1 Ringebri\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Overachiever\n\tMagicJohn: Had to trade for a yellow so I can expand and keep building..\n\tMagicJohn: My building will probably be in green or blue so I can directly attack one of your stars...\n\tMagicJohn: I can build in green without duplicating the color of one of my own stars.\n\n10) ringebri: Discover Y1 Ringebri B2 Underdog\n\n11) MagicJohn: Build G1 Overachiever\n\n12) ringebri: Build Y1 Ringebri\n\n13) MagicJohn: Discover G1 Overachiever Y2 Overandout\n\tMagicJohn: Trying to stay undertheradar?\n\tMagicJohn: I&#39;m dealing with a monster hedcode. Hope my thinking is clearer than my sinuses, throat, and chest......\n\tringebri: Oh good!  Here&#39;s my chance..... Oh!  Sorry.  I hope you feel better soon!\n\n14) ringebri: Build Y2 Ringebri\n\n15) MagicJohn: Build Y2 Magicjohn\n\n16) ringebri: Discover Y2 Ringebri G2 Undercat\n\tringebri: Now I&#39;ve got three yellow in my homeworld, which I guess is risky.  But I don&#39;t think your y1 in your homeworld can reach my homeworld at this time.  Right?\n\tMagicJohn: Not really risky yet. To get to your home world from mine, I would have to sacrifice a Y3, move to a #3 star, then to a #2 star, and finally to your homeworld. Since I don&#39;t have a Y3, I can&#39;t send my Y1 directly to your homeworld. \n\tMagicJohn: I would first have to trade my g3 for a y3 and you would see that coming and move a ship or take another defensive action.\n\tMagicJohn: Or I could do the following play, gain some ship-power, and force your hand.\n\n17) MagicJohn: Discover G1 Overandout Y3 Overandover\n\tMagicJohn: Scratch that. I was going to sac my g3 for a g1,y2 and y3. It would have given me 3 yellows in Magicjohn homeworld and you could have blown them up.\n\n18) ringebri: Build Y2 Undercat\n\n19) MagicJohn: Build G1 Overandover\n\tMagicJohn: keeping you from building another y3....\n\n20) ringebri: Trade Y1 B1 Ringebri\n\tMagicJohn: Bear in mind that discovered star systems can be destroyed by over population. If the star goes boom, ALL of the ships surrounding it go boom too.\n\n21) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Overachiever\nBuild G2 Overachiever\nBuild G3 Overandover\n\tMagicJohn: So, lets say I put together a large fleet of ships on overandover and included in that fleet was a pair of yellow ships. If you moved one yellow ship in, the whole thing would go kablooie...\n\n22) ringebri: Discover Y2 Undercat G3 Undercover\n\n23) MagicJohn: Move G3 Overandover Magicjohn\n\n24) ringebri: Build R1 Ringebri\n\n25) MagicJohn: Discover G2 Overachiever R2 Overthelimit\n\tMagicJohn: You could blow up yellow tech at my homestar. (Sac y3 and move undercover y2 and underdog y1) On the down side, you would lose more than I would..... \n\tMagicJohn: By having a corner on green technology, I control your chances of blowing me up.....\n\n26) ringebri: Build Y1 Undercat\n\tringebri: underdog and undercat do not have a connection to MagicJohn so I can&#39;t move yellow ships to MagicJohn from them. Right?\n\tMagicJohn: They can move there, but it&#39;s a two step process. If you sac. a 2y one ship could move two steps, from u-cat to u-cover(1) to MagicJohn(2).\n\n27) MagicJohn: Trade Y1 B1 Magicjohn\n\n28) ringebri: Move B1 Ringebri Underdog\n\n29) MagicJohn: Move B1 Magicjohn Overachiever\n\n30) ringebri: Build Y1 Ringebri\n\n31) MagicJohn: Move G1 Overandover Overthelimit\n\n32) ringebri: Move R1 Ringebri Underdog\n\n33) MagicJohn: Build B2 Overachiever\n\n34) ringebri: Build R2 Ringebri\n\n35) MagicJohn: Move B1 Overachiever Overthelimit\n\n36) ringebri: Move B1 Underdog Undercover\n\n37) MagicJohn: Build B3 Overachiever\n\n38) ringebri: Build B3 Undercover\n\n39) MagicJohn: Build B3 Overthelimit\n\n40) ringebri: Sacrifice Y2 Undercat\nMove B1 Undercover Overthelimit\nMove B3 Undercover Overthelimit\nCatastrophe Overthelimit Blue\n\n41) MagicJohn: Build Y2 Magicjohn\n\n42) ringebri: Trade R1 B1 Ringebri\n\tringebri: I don&#39;t know if strategically that was a good move or not but it was fun.\n\tMagicJohn: build y2 magicjohn\n\n43) MagicJohn: Sacrifice Y2 Magicjohn\nMove G1 Overthelimit Ringebri\nMove G2 Overthelimit Ringebri\n\tMagicJohn: Oppsie - Put my command in the messages box... Your move did give me access to more yellow technology. It remains to be seen if I can take advantage of it.\n\tMagicJohn: Besides, experimenting with the moves is fun and the best way to learn :)\n\n44) ringebri: Attack G2 Ringebri\n\n45) MagicJohn: Sacrifice G1 Overandover\nBuild G1 Ringebri\nCatastrophe Ringebri Green\n\n46) ringebri: Move B1 Ringebri Undercover\n\n\tMagicJohn: Hello neighbor!\n\n47) MagicJohn: Discover B2 Overachiever Y2 Overandout\n\tringebri: bug off, invader!\n\tringebri: even though I successfully converted one of your ships, I&#39;m still in danger of losing the green system, right?\n\tMagicJohn: uhhhh..., yes..\n\n48) ringebri: Trade Y1 G1 Ringebri\n\tMagicJohn: By sacrificing the g1 I could build a ship/color in any star system I wanted as long as I had a ship of that color in the star system. By sacrificing, I returned one green to the stash which I could bring back in play by way of building. My other option was to sacrifice my y2 in Magicjohn and move the g1 from overandover to undercat to ringebri. I didn&#39;t do that because I didn&#39;t want to loose a #2 ship or my only yellow. \n\tMagicJohn: As an aside...\r\nIdeally, it&#39;s best to maintain ships in your home star system that don&#39;t match the color of your home stars. Unfortunately, it isn&#39;t always possible to maintain that arrangement.\n\tMagicJohn: Now, if you loose or abandon your green star, you can&#39;t build at all. You might consider trading for a green ship pretty soon. I&#39;ll probably be going after blue but I could choose to try and suck up all of the green technology again..\n\n49) MagicJohn: Build B1 Overachiever\n\n50) ringebri: Move R2 Ringebri Overandout\n\n51) MagicJohn: Trade B3 R3 Overachiever\n\n52) ringebri: Attack B2 Overandout\n\n53) MagicJohn: Build B3 Overachiever\n\n54) ringebri: Build B3 Undercover\n\n55) MagicJohn: Build R1 Overachiever\n\tMagicJohn: spoil sport...\n\n56) ringebri: Move B1 Undercover Undercat\n\n57) MagicJohn: Move R1 Overachiever Undercat\n\n58) ringebri: Sacrifice Y2 Undercover\nMove B2 Overandout Overachiever\nMove B1 Undercat Overachiever\nCatastrophe Overachiever Blue\n\n59) MagicJohn: Build R2 Undercat\n\n60) ringebri: Build Y1 Ringebri\n\n61) MagicJohn: Attack Y1 Undercat\n\n62) ringebri: Build B1 Undercover\n\n63) MagicJohn: Discover R1 Undercat Y3 Overabundant\n\n64) ringebri: Discover Y1 Ringebri G3 Underway\n\n65) MagicJohn: Sacrifice G2 Overachiever\nBuild R2 Overabundant\nBuild R3 Undercat\n\n66) ringebri: Build B1 Undercover\n\n67) MagicJohn: Build Y2 Undercat\n\n68) ringebri: Sacrifice Y3 Ringebri\nMove B1 Undercover Magicjohn\nMove B1 Undercover Magicjohn\nMove B3 Undercover Magicjohn\nCatastrophe Magicjohn Blue\n\n69) MagicJohn: Sacrifice Y2 Magicjohn\nMove R3 Overachiever Ringebri\nMove R2 Overabundant Ringebri\n\n70) ringebri: Move Y1 Underdog Ringebri\n\n71) MagicJohn: Sacrifice R2 Undercat\nAttack Y1 Ringebri\nAttack G1 Ringebri\n\n\tringebri: out of recources.  can&#39;t protect my homeworld. conquered!  I think I&#39;m beginning to understand this game.\n\tMagicJohn: Your play in the last half of the game showed a lot of improvement. Remember to leave a #3 ship and something red in your home system for defense. Good game...  (More than I can say for my last effort in chase.....)\n\nHomeworlds Online (SDG# 21295)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.6, Ended: 2011.12.9\nParticipants: zoltar (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Pass\n\n\tzoltar: Hi. Why did you pass your turn?\n\tSubhan64: because I wish to cede first play to you\n\tzoltar: Not sure what&#39;s going on. The game ended before I could move, but it says it can&#39;t be rated.\n\tSubhan64: Yes.  There is a hard time limit on the ladder games.  You failed to move within the time limit, which triggered the end of the game (you lost).  However, games that move on the first or second move are not used to adjust ratings.  Things worked exactly as they are supposed to\n\nHomeworlds Online (SDG# 21108)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.6, Ended: 2012.2.2\nParticipants: raster51 (S), agentofchaos (W), zoltar (N), Subhan64 (E)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld B1 Y2 G3\n\tzoltar: Greetingz, intergalactic entities.\r\n\n\n3) agentofchaos: Homeworld R1 B3 G3\n\n4) zoltar: Build G1 Zoltar\n\n5) Subhan64: Build G1 Subhan64\n\tagentofchaos: Greetings!\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) zoltar: Build G1 Zoltar\n\n8) Subhan64: Trade G1 R1 Subhan64\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) Subhan64: Build R2 Subhan64\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) zoltar: Build R2 Zoltar\n\n14) Subhan64: Build G1 Subhan64\n\n15) agentofchaos: Trade R1 Y1 Agentofchaos\n\n16) zoltar: Trade R1 Y1 Zoltar\n\n17) Subhan64: Build R1 Subhan64\n\n18) agentofchaos: Discover R2 Agentofchaos Y2 Kanzia\n\n19) zoltar: Discover R2 Zoltar B3 Bluemoon\n\n20) Subhan64: Trade R1 Y1 Subhan64\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) zoltar: Move G1 Zoltar Bluemoon\n\n23) Subhan64: Build Y1 Subhan64\n\n24) agentofchaos: Move G1 Agentofchaos Kanzia\n\n25) zoltar: Build R1 Bluemoon\n\n26) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n27) agentofchaos: Build Y1 Agentofchaos\n\n28) zoltar: Trade R2 Y2 Bluemoon\n\n29) Subhan64: Build Y2 Kermit\n\n30) agentofchaos: Trade Y1 B1 Agentofchaos\n\n31) zoltar: Build Y1 Bluemoon\n\n32) Subhan64: Trade G1 B1 Subhan64\n\n33) agentofchaos: Build G1 Agentofchaos\n\n34) zoltar: Discover Y1 Bluemoon B2 Bluebell\n\n35) Subhan64: Build G1 Subhan64\n\n36) agentofchaos: Trade G1 R1 Agentofchaos\n\n37) zoltar: Build R2 Bluemoon\n\n38) Subhan64: Move R1 Subhan64 Kermit\n\n39) agentofchaos: B R2 Kanzia\n\n40) zoltar: Move R2 Bluemoon Bluebell\n\n41) Subhan64: Sacrifice G3 Subhan64\nBuild R2 Subhan64\nBuild R3 Kermit\nBuild G1 Subhan64\n\n42) agentofchaos: Build Y2 Agentofchaos\n\n43) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Bluebell\nBuild Y3 Bluemoon\nBuild Y3 Zoltar\n\n44) Subhan64: Move Y1 Kermit Zoltar\n\n45) agentofchaos: T Y1 G1 Agentofchaos\n\n46) zoltar: Trade Y3 G3 Zoltar\n\n47) Subhan64: Move Y2 Kermit Zoltar\n\n48) agentofchaos: Move B1 Agentofchaos Kanzia\n\n49) zoltar: Build R3 Bluemoon\n\tzoltar: Yikes!!!!!\r\n\n\n50) Subhan64: Trade R2 B2 Subhan64\n\n51) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Kanzia Kermit\nMove B1 Kermit Subhan64\nCatastrophe Subhan64 B\n\n52) zoltar: Sacrifice R2 Bluebell\nAttack Y2E Zoltar\nAttack Y1E Zoltar\n\n53) Subhan64: Move Y1 Subhan64 Kermit\n\n54) agentofchaos: Trade G1 Y1 Agentofchaos\n\n55) zoltar: Sacrifice Y1 Zoltar\nMove Y3 Bluemoon Subhan64\n\n56) Subhan64: Build R2 Subhan64\n\n57) agentofchaos: Build G1 Agentofchaos\n\n58) zoltar: Sacrifice R3 Bluemoon\nAttack R2E Subhan64\nAttack R2E Subhan64\nAttack G1E Subhan64\n\n59) Subhan64: Move R3 Kermit Subhan64\n\n60) agentofchaos: Move R2 Kanzia Kermit\n\n61) zoltar: Sacrifice R2 Subhan64\nAttack G1E Subhan64\nAttack R3E Subhan64\n\n62) agentofchaos: Attack Y1E Kermit\n\n63) zoltar: Sacrifice Y3 Bluebell\nMove Y3 Subhan64 Agentofchaos\nMove G1 Subhan64 Agentofchaos\nMove G1 Subhan64 Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: Well played\n\nHomeworlds Online (SDG# 21324)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.11, Ended: 2011.12.27\nParticipants: MagicJohn (S), jonaskoelker (N)\nWinner: MagicJohn\n\n1) jonaskoelker: Homeworld B2 R1 G3\n\n2) MagicJohn: Homeworld B1 Y3 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) MagicJohn: Discover G1 Magicjohn Y2 Tarvalon\n\n7) jonaskoelker: Build Y1 Jonaskoelker\n\n8) MagicJohn: Build G1 Tarvalon\n\n\nHomeworlds Online (SDG# 21346)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.14, Ended: 2011.12.23\nParticipants: mneme (S), Subhan64 (N)\nWinner: mneme\n\n1) Subhan64: Homeworld Y1 B2 G3\n\n2) mneme: Homeworld B2 G3 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) mneme: Build Y1 Mneme\n\n5) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n6) mneme: Build Y1 Mneme\n\n7) Subhan64: Build G1 Subhan64\n\n8) mneme: Discover Y1 Mneme B1 Azure\n\n9) Subhan64: Build G1 Subhan64\n\n10) mneme: Build Y2 Mneme\n\n11) Subhan64: Discover G1 Subhan64 Y3 Yellowjacket\n\n12) mneme: D Y1 Azure G3 Whisper\n\n13) Subhan64: Build G2 Bigbird\n\n14) mneme: Trade Y2 G2 Mneme\n\n15) Subhan64: Trade G1 B1 Subhan64\n\n16) mneme: Trade Y1 B1 Mneme\n\n17) Subhan64: Discover G2 Bigbird R1 Elmo\n\n18) mneme: Build B1 Mneme\n\n19) Subhan64: Sacrifice G3 Subhan64\nBuild G1 Elmo\nBuild G2 Bigbird\nBuild G3 Yellowjacket\n\n20) mneme: Discover B1 Mneme Y1 Sign\n\n21) Subhan64: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild B2 Subhan64\n\n22) mneme: Sacrifice Y3 Mneme\nMove B1 Sign Bigbird\nMove B1 Bigbird Subhan64\nMove Y1 Whisper Subhan64\nCatastrophe Subhan64 B\n\n\tmneme: Dissapointing end; I&#39;d hoped you&#39;d seen that issue.  Thanks for the game!\n\tmneme: FWIW, I&#39;d actually had a mate threat even if your system had non-blue ships in it.  If you ever got to 3 blue in your home (without red in your universe), my plan was to sac my y3 to blow up blue in your home system, then stick my small yellow ship in your home and pop my g2 to finish the job.\n\nHomeworlds Online (SDG# 21350)\nStarted: 2011.12.14, Ended: 2012.1.18\nParticipants: quozl (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld G1 B2 Y3\n\n2) quozl: Homeworld G2 B3 Y3\n\tSubhan64: first thing is to establish your homeworld.  You want to include g &amp; b, and either y or r.  without blue, you can&#39;t construct ships, and without b you can&#39;t trade them.  You probably want to pick either a 1/3 or a 2/3 star so you are 2 steps away from me, and definitely a size 3 ship\n\n3) Subhan64: Build Y1 Subhan64\n\tquozl: Oh wait, I just finally figured out what you meant by 1/3 or 2/3. Since I made a 1/2, that means our stars are just 1 step from each other, right?\n\n4) quozl: Build Y1 Quozl\n\tquozl: But I can undo my move and change it to a 2/3!\n\tSubhan64: yes that is right.  Now, your next move will be to construct a y1 ship in your homeworld.\r\n\n\n5) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n6) quozl: Discover Y1 Quozl R1 Fozzie\n\tquozl: ok\n\tSubhan64: so now you have choices about what you can do - if you build a y1, I&#39;ll get to build a y2.  You can trade your y1 or y3 for an equal-sized ship of a different color, or you can discover a new world\r\n\n\n7) Subhan64: Trade Y3 G3 Subhan64\n\n8) quozl: Move Y1 Fozzie Kermit\n\n9) Subhan64: Build G1 Subhan64\n\tquozl: Why a construct ship?\n\n10) quozl: Trade Y3 G3 Quozl\n\n11) Subhan64: Trade G1 R1 Subhan64\n\n12) quozl: Build G1 Quozl\n\n13) Subhan64: Sacrifice R1 Subhan64\nAttack Y1 Kermit\n\n14) quozl: Trade G3 R3 Quozl\n\n15) Subhan64: Build G1 Subhan64\n\n16) quozl: Trade R3 Y3 Quozl\n\n17) Subhan64: Move Y1 Kermit Subhan64\n\n18) quozl: Build G2 Quozl\n\n19) Subhan64: Move G1 Subhan64 Kermit\n\n20) quozl: Trade G2 R2 Quozl\n\n21) Subhan64: Build G2 Kermit\n\n22) quozl: Build R1 Quozl\n\n23) Subhan64: Trade G3 Y3 Subhan64\n\n24) quozl: Trade G1 R1 Quozl\n\n25) Subhan64: Discover G1 Kermit Y1 Bigbird\n\n26) quozl: Move R2 Quozl Bigbird\n\tquozl: Attack fleet ready!\n\n27) Subhan64: Move G1 Bigbird Kermit\n\n28) quozl: Build Y2 Quozl\n\n29) Subhan64: Build Y2 Kermit\n\n30) quozl: Trade Y2 R2 Quozl\n\n31) Subhan64: Move G2 Kermit Subhan64\n\n32) quozl: Move R2 Quozl Bigbird\n\n33) Subhan64: Trade Y1 R1 Subhan64\n\n34) quozl: Move R2 Bigbird Kermit\n\n35) Subhan64: Sacrifice R1 Subhan64\nAttack R2 Kermit\n\n36) quozl: Build Y1 Quozl\n\n37) Subhan64: Discover G1 Kermit R1 Elmo\n\tSubhan64: gotta watch out for those sacrifice moves!\n\tquozl: Tricky!\n\n38) quozl: Trade Y3 R3 Quozl\n\tSubhan64: they really are integral to the strategy of the game\r\n\n\n39) Subhan64: Sacrifice Y2 Kermit\nMove R2 Kermit Bigbird\nMove R2 Bigbird Quozl\nCatastrophe Quozl Red\n\n40) quozl: Move R2 Bigbird Kermit\n\n41) Subhan64: Sacrifice Y1 Kermit\nMove G1 Elmo Quozl\n\n42) quozl: Trade Y1 R1 Quozl\n\n43) Subhan64: Sacrifice G2 Subhan64\nBuild G1 Quozl\nBuild G2 Quozl\nCatastrophe Quozl Green\n\n44) quozl: Build R1 Kermit\n\n45) Subhan64: Trade Y3 R3 Subhan64\n\n46) quozl: Trade R1 Y1 Quozl\n\n47) Subhan64: Build R1 Subhan64\n\n\tquozl: OK, thanks for teaching me the game. It is very different than what I am used to.\n\tSubhan64: Yes, it is a very unusual game.  It takes a while to get a handle on how to judiciously manage your pieces to avoid catastrophe &amp; sacrifice well\r\n\n\nHomeworlds Online (SDG# 21372)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.19, Ended: 2012.2.5\nParticipants: dlwillson (S), Mandrel (N)\nWinner: dlwillson\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\tMandrel: Sorry for taking so long to accept the challenge,been pretty busy and not sure I could fit in another game, but cleared up a bit now. Anyway, have a good game!\n\n3) Mandrel: Build G1 Mandrel\n\tdlwillson: No problem. I&#39;m sorry for being insistent, but it seems nobody at the South end of the ladder is playing... Have fun!\n\n4) dlwillson: B G1 Dlwillson\n\tMandrel: Not at all, it&#39;s a real ghost town down there\r\n\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) Mandrel: Build Y1 Mandrel\n\n8) dlwillson: Build R1 Dlwillson\n\n9) Mandrel: Build Y2 Mandrel\n\n10) dlwillson: B R2 Dlwillson\n\n11) Mandrel: Trade Y1 B1 Mandrel\n\n12) dlwillson: D R1 Dlwillson G2 Grungy\n\n13) Mandrel: D B1 Mandrel G3 Oscillator\n\n14) dlwillson: T R2 Y2 Dlwillson\n\n15) Mandrel: Build B1 Oscillator\n\n16) dlwillson: Move Y2 Dlwillson Grungy\n\n17) Mandrel: Trade B1 Y1 Oscillator\n\n18) dlwillson: B R2 Grungy\n\n19) Mandrel: Trade Y2 R2 Mandrel\n\n20) dlwillson: M R2 Grungy Oscillator\n\n21) Mandrel: Discover B1 Oscillator G2 Nap\n\n22) dlwillson: A Y1 Oscillator\n\n23) Mandrel: Build Y2 Mandrel\n\tdlwillson: Can we go a little faster?\n\n24) dlwillson: B R2 Oscillator\n\tMandrel: Ok sure, I&#39;ll try to speed up a bit.\n\n25) Mandrel: Discover R2 Mandrel B3 Broken\n\tdlwillson: Thanks Mandrel\n\n26) dlwillson: M R2 Oscillator Nap\n\n27) Mandrel: Build G1 Mandrel\n\n28) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Dlwillson\nBuild R3 Grungy\nBuild R3 Oscillator\n\n29) Mandrel: Trade Y1 B1 Mandrel\n\n30) dlwillson: Move R3 Grungy Broken\n\n31) Mandrel: Build B1 Nap\n\n32) dlwillson: A R2 Broken\n\n33) Mandrel: Build B2 Mandrel\n\n34) dlwillson: Sacrifice Y2 Grungy\nMove R3 Broken Mandrel\nMove R3 Oscillator Mandrel\n\n35) Mandrel: Build B2 Nap\n\tdlwillson: Pretty sure it&#39;s over in 3. Maybe 5.\n\n36) dlwillson: Sacrifice R3 Mandrel\nAttack G3 Mandrel\nAttack Y2 Mandrel\nAttack B2 Mandrel\n\tMandrel: It&#39;s been inevitable for quite a while now.\n\n37) Mandrel: Build G1 Mandrel\n\n38) dlwillson: Sacrifice R3 Mandrel\nAttack G1 Mandrel\nAttack G1 Mandrel\nAttack B1 Mandrel\n\tdlwillson: Thanks for the game, Mandrel!\n\tMandrel: Good game, well played.\n\n\nHomeworlds Online (SDG# 21150)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.21, Ended: 2011.12.28\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: /give silenttitan R3\n\n2) dlwillson: H B1 Y3 G3\n\tdlwillson: LOL!\n\tdlwillson: /give SilentTitan 2 R3\r\nCat silenttitan red\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) dlwillson: B G2 Dlwillson\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) dlwillson: Discover G2 Dlwillson G2 Frogne\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) dlwillson: Trade G1 B1 Dlwillson\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) dlwillson: B G1 Dlwillson\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n14) dlwillson: Discover B1 Dlwillson G2 Fondue\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n16) dlwillson: T G3 Y3 Dlwillson\n\n17) SilentTitan: Build Y2 Silenttitan\n\n18) dlwillson: B G1 Frogne\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Soul Frogne\nMove Y1 Frogne Dlwillson\n\n20) dlwillson: M Y3 Dlwillson Frogne\n\n21) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Dlwillson\n\n22) dlwillson: B Y2 Frogne\n\n23) SilentTitan: Sacrifice Y2 Dlwillson\nMove G3 Silenttitan Sol\nMove G3 Sol Frogne\nCatastrophe Frogne Green\n\n24) dlwillson: B G1 Dlwillson\n\tSilentTitan: BONSAI!!\n\n25) SilentTitan: Trade Y1 R1 Dlwillson\n\n26) dlwillson: T B1 G1 Fondue\n\n27) SilentTitan: Attack G1 Dlwillson North\n\n28) dlwillson: B G2 Dlwillson\n\n29) SilentTitan: Build G2 Dlwillson\nCatastrophe Dlwillson Green\n\n\tdlwillson: Good game.\n\nHomeworlds Online (SDG# 21389)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.24, Ended: 2012.1.5\nParticipants: Subhan64 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld R1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Subhan64: Build G1 Subhan64\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n6) Subhan64: Trade G3 R3 Subhan64\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Subhan64: Build R2 Subhan64\n\n9) SilentTitan: Build R2 Silenttitan\n\n10) Subhan64: Trade R3 Y3 Subhan64\n\n11) SilentTitan: Trade G1 Y1 Silenttitan\n\n12) Subhan64: Sacrifice Y3 Subhan64\nDiscover R2 Subhan64 B2 Bb\nDiscover R2 Bb B3 Cc\nMove R2 Cc Silenttitan\nCatastrophe Silenttitan Red\n\n13) SilentTitan: Move G3 Silenttitan Subhan64\n\n14) Subhan64: Build G1 Subhan64\n\n15) SilentTitan: Build G1 Subhan64\nCatastrophe Subhan64 Green\n\n\nHomeworlds Online (SDG# 21395)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.27, Ended: 2012.3.27\nParticipants: shmil1 (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B2 R1 G3\n\n2) shmil1: Homeworld G3 B1 R3\n\n3) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: Have a good game!\n\n4) shmil1: Build R1 Shmil1\n\n5) MagicJohn: Build G1 Magicjohn\n\n6) shmil1: Build R1 Shmil1\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) shmil1: Trade R1 Y1 Shmil1\n\n9) MagicJohn: Build G1 Magicjohn\n\n10) shmil1: Build R1 Shmil1\n\n11) MagicJohn: Build Y1 Magicjohn\n\n12) shmil1: Build Y2 Shmil1\n\n13) MagicJohn: Build Y2 Magicjohn\n\n14) shmil1: Discover Y1 Shmil1 G2 Greeny\n\n15) MagicJohn: Trade Y2 R2 Magicjohn\n\n16) shmil1: Build Y2 Greeny\n\n17) MagicJohn: Discover G1 Magicjohn Y3 Outlander\n\n18) shmil1: Trade Y2 G2 Shmil1\n\n19) MagicJohn: Move Y1 Magicjohn Outlander\n\n20) shmil1: Move Y2 Greeny Outlander\n\n21) MagicJohn: Build R2 Magicjohn\n\n22) shmil1: Sacrifice R1 Shmil1\nAttack G1 Outlander\n\n23) MagicJohn: Move G3 Magicjohn Outlander\n\n24) shmil1: Build Y2 Outlander\nCatastrophe Outlander Yellow\n\n25) MagicJohn: Discover R2 Magicjohn Y3 Majordisaster\n\n26) shmil1: Build G1 Shmil1\n\n27) MagicJohn: Build G1 Magicjohn\n\n28) shmil1: Trade G2 Y2 Shmil1\n\n29) MagicJohn: Build G2 Magicjohn\n\n30) shmil1: Trade R1 B1 Shmil1\n\n31) MagicJohn: Move G1 Magicjohn Majordisaster\n\n32) shmil1: Build B1 Shmil1\n\n33) MagicJohn: Build G2 Majordisaster\n\n34) shmil1: Build G3 Shmil1\n\n35) MagicJohn: Build G3 Magicjohn\n\n36) shmil1: Sacrifice G3 Shmil1\nBuild G3 Shmil1\nBuild R1 Shmil1\nBuild Y1 Shmil1\n\n37) MagicJohn: Build Y2 Magicjohn\n\n38) shmil1: Move G1 Shmil1 Greeny\n\n39) MagicJohn: Discover G2 Magicjohn Y3 Majorproblem\n\n40) shmil1: Sacrifice G3 Shmil1\nBuild G3 Greeny\nBuild Y2 Greeny\nBuild Y3 Shmil1\n\n41) MagicJohn: Move G2 Majorproblem Greeny\nCatastrophe Greeny Green\n\n42) shmil1: Sacrifice Y2 Shmil1\nDiscover Y3 Shmil1 R2 Neco\nMove Y3 Neco Majordisaster\n\n43) MagicJohn: Discover G2 Majordisaster B2 Majorproblem\n\tMagicJohn: Sorry.... I assumed the disaster without ordering it. Had to re-do.  My bad.. \n\n44) shmil1: Sacrifice R1 Shmil1\nAttack R2 Majordisaster\n\n45) MagicJohn: Trade G2 R2 Majorproblem\n\n46) shmil1: Attack G1 Majordisaster\n\n47) MagicJohn: Discover G1 Magicjohn Y3 Majorminor\n\n48) shmil1: Build R1 Majordisaster\n\n49) MagicJohn: Move R2 Magicjohn Majorminor\n\n50) shmil1: Discover B1 Shmil1 Y2 Modry\n\n51) MagicJohn: Sacrifice G1 Majorminor\nBuild R1 Majorproblem\n\n52) shmil1: Build G1 Majordisaster\n\n53) MagicJohn: Trade R2 Y2 Majorproblem\n\n54) shmil1: Build G1 Majordisaster\n\n55) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y1 Magicjohn Majordisaster\nMove Y2 Majorproblem Majordisaster\nCatastrophe Majordisaster Y\n\n56) shmil1: Trade B1 G1 Modry\n\n57) MagicJohn: Move R2 Majorminor Modry\n\n58) shmil1: Discover G1 Modry Y3 Zluta\n\n59) MagicJohn: Move R2 Modry Zluta\n\n60) shmil1: Discover G1 Zluta R1 Ruda\n\n61) MagicJohn: Move R2 Zluta Ruda\n\n62) shmil1: Sacrifice Y1 Shmil1\nDiscover G1 Ruda Y3 Zluta\n\n63) MagicJohn: Build G1 Magicjohn\n\n64) shmil1: Build G1 Zluta\n\tshmil1: i like this skip-move :)\n\tMagicJohn: Seems like I didn&#39;t leave myself many options for this move.......\n\n65) MagicJohn: Trade G1 Y1 Magicjohn\n\n66) shmil1: Build G1 Zluta\n\n67) MagicJohn: Build Y1 Magicjohn\n\n68) shmil1: Move G1 Zluta Magicjohn\n\n69) MagicJohn: Attack G1 Magicjohn\n\n70) shmil1: Move G1 Zluta Magicjohn\n\n71) MagicJohn: Trade G3 B3 Magicjohn\n\n72) shmil1: Build G2 Magicjohn\n\n73) MagicJohn: Sacrifice R1 Majorproblem\nAttack G2 Magicjohn\n\n74) shmil1: Build G2 Magicjohn\nCatastrophe Magicjohn Green\n\n75) MagicJohn: Trade Y1 G1 Magicjohn\n\n76) shmil1: Build G1 Zluta\n\n77) MagicJohn: Move G1 Magicjohn Zluta\n\n78) shmil1: Move G1 Zluta Magicjohn\n\n79) MagicJohn: Attack G1 Magicjohn\n\n80) shmil1: Build R1 Shmil1\n\n81) MagicJohn: Discover G1 Zluta Y2 Majorkey\n\n82) shmil1: Move G1 Zluta Majorkey\n\n83) MagicJohn: Build G2 Majorkey\n\n84) shmil1: Build G2 Majorkey\n\n85) MagicJohn: Sacrifice R2 Ruda\nAttack G1 Majorkey\nAttack G2 Majorkey\n\n86) shmil1: Trade R1 Y1 Shmil1\nCatastrophe Majorkey Green\n\n87) MagicJohn: Build G1 Magicjohn\n\n88) shmil1: Build R1 Shmil1\n\n89) MagicJohn: Discover G1 Magicjohn Y3 Secondchance\n\n90) shmil1: Discover B1 Shmil1 G2 Zelena\n\n91) MagicJohn: Build G1 Magicjohn\n\n92) shmil1: Sacrifice Y1 Shmil1\nMove B1 Zelena Secondchance\n\n93) MagicJohn: Build G2 Secondchance\n\tshmil1: welcome at re-start :)\n\n94) shmil1: Sacrifice R1 Shmil1\nAttack G1 Secondchance\n\tMagicJohn: Planets of the apes?\n\n95) MagicJohn: Trade G1 R1 Magicjohn\n\n96) shmil1: Build B1 Secondchance\n\n97) MagicJohn: Sacrifice R1 Magicjohn\nAttack G1 Secondchance\n\n98) shmil1: Move B1 Secondchance Magicjohn\n\n99) MagicJohn: Trade B3 Y3 Magicjohn\n\n100) shmil1: Attack G1 Magicjohn\n\n101) MagicJohn: Attack G1 Magicjohn\n\n102) shmil1: Move B1 Secondchance Magicjohn\n\n103) MagicJohn: Attack B1 Magicjohn\n\n104) shmil1: Attack G1 Magicjohn\n\n105) MagicJohn: Attack G1 Magicjohn\n\n106) shmil1: Attack G1 Magicjohn\n\n107) MagicJohn: Attack G1 Magicjohn\n\n108) shmil1: Attack G1 Magicjohn\n\n109) MagicJohn: Attack G1 Magicjohn\n\n110) shmil1: Attack G1 Magicjohn\n\n111) MagicJohn: Move B1 Magicjohn Secondchance\n\n\tMagicJohn: Yo, shmil........  If you want to avoid &quot;hard time&quot; kicking in, you might consider  making a move.......\n\nHomeworlds Online (SDG# 21397)\nVariants: &quot;Unrated&quot;\nStarted: 2011.12.27, Ended: 2012.1.30\nParticipants: MagicJohn (S), ringebri (N)\nWinner: MagicJohn\n\n1) ringebri: Homeworld B1 G3 Y3\n\n2) MagicJohn: Homeworld B1 R2 G3\n\tringebri: dah...... dah..... dah...................... dut dah......  (boom boom boom boom boom boom boom boom)\n\tMagicJohn: I hear the Blue Danube Waltz coming on...\n\tMagicJohn: Said Zarthustra...(SP?)\n\tMagicJohn: Ringer, could you please suggest to a family member that a game of irate pigs needs attention?\n\n3) ringebri: Build Y1 Ringebri\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) ringebri: Trade Y1 G1 Ringebri\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) ringebri: Discover G1 Ringebri B2 Newhope\n\n8) MagicJohn: Build G1 Magicjohn\n\n9) ringebri: Build G1 Newhope\n\n10) MagicJohn: Build G2 Magicjohn\n\n11) ringebri: Trade G1 Y1 Newhope\n\n12) MagicJohn: Discover G2 Magicjohn B3 Majormistake\n\n13) ringebri: Build Y1 Newhope\n\n14) MagicJohn: Build Y2 Magicjohn\n\n15) ringebri: Discover G1 Newhope R3 Skywalker\n\n16) MagicJohn: Move Y1 Magicjohn Majormistake\n\n17) ringebri: Build Y2 Ringebri\n\n18) MagicJohn: Build Y2 Majormistake\n\n19) ringebri: Trade Y1 B1 Newhope\n\n20) MagicJohn: Move Y2 Majormistake Newhope\n\n21) ringebri: Build G1 Skywalker\n\n22) MagicJohn: Trade G1 R1 Magicjohn\n\n23) ringebri: Move B1 Newhope Skywalker\n\n24) MagicJohn: Move Y2 Magicjohn Skywalker\n\n25) ringebri: Trade G1 R1 Skywalker\n\n26) MagicJohn: Sacrifice R1 Magicjohn\nAttack R1 Skywalker\n\n27) ringebri: Build B2 Skywalker\n\n28) MagicJohn: Attack B2 Skywalker\n\n29) ringebri: Trade Y2 R2 Ringebri\n\n30) MagicJohn: Attack G1 Skywalker\n\n31) ringebri: Attack R1 Skywalker\n\n32) MagicJohn: Trade Y2 R2 Newhope\n\n33) ringebri: Attack G1 Skywalker\n\tringebri: THERE! What a pain that guy was!\n\n34) MagicJohn: Attack Y1 Newhope\n\n35) ringebri: Build R1 Ringebri\n\n36) MagicJohn: Move G2 Majormistake Newhope\n\n37) ringebri: Discover R2 Ringebri B2 Darth\n\n38) MagicJohn: Discover B2 Skywalker Y2 Majormystery\n\n39) ringebri: Build B3 Skywalker\n\n40) MagicJohn: Move Y2 Skywalker Magicjohn\n\n41) ringebri: Build Y1 Ringebri\n\n42) MagicJohn: Build R1 Newhope\n\n43) ringebri: Build B3 Skywalker\n\n44) MagicJohn: Sacrifice Y2 Magicjohn\nMove R1 Newhope Skywalker\nMove R2 Newhope Skywalker\nCatastrophe Skywalker Red\n\n45) ringebri: Trade Y1 G1 Ringebri\n\tringebri: I now have a buzz cut!  When the photo appears on facebook, I&#39;ll forward it to you.  Matthew&#39;s was shaved.\n\n46) MagicJohn: Sacrifice G2 Newhope\nBuild B1 Majormystery\nBuild B3 Majormystery\n\n47) ringebri: Move G1 Ringebri Darth\n\tMagicJohn: Kaboom...\n\tringebri: Ouch!\n\n48) MagicJohn: Trade B3 R3 Majormystery\n\n49) ringebri: Build R1 Darth\n\n50) MagicJohn: Move R3 Majormystery Majormistake\n\n51) ringebri: Build Y1 Ringebri\n\tringebri: Check out facebook for a picture of me bald.\n\n52) MagicJohn: Move R3 Majormistake Darth\n\n53) ringebri: Build R1 Darth\nCatastrophe Darth Red\n\n54) MagicJohn: Trade B2 R2 Majormystery\n\n55) ringebri: Move Y1 Ringebri Darth\n\tringebri: in that &quot;forms&quot; game, for replays, just click on each move in the list. You&#39;ll see the game as it looked at that move.\n\n56) MagicJohn: Move R2 Majormystery Majormistake\n\n57) ringebri: Move R1 Ringebri Newhope\n\n58) MagicJohn: Move R2 Majormistake Darth\n\tMagicJohn: Stupid game...\n\n59) ringebri: Attack Y1 Newhope\n\tringebri: those reds are nasty little buggers\n\n60) MagicJohn: Attack G1 Darth\n\n61) ringebri: Build Y2 Ringebri\n\n62) MagicJohn: Attack Y1 Darth\n\n63) ringebri: Trade Y2 B2 Ringebri\n\n64) MagicJohn: Build Y2 Darth\n\n65) ringebri: Move R1 Newhope Majormistake\n\n66) MagicJohn: Sacrifice G1 Darth\nBuild B3 Majormystery\n\tMagicJohn: Sara and I saw your picture posting. You really accomplished a couple of things. #1 backing Matthew was a really cool thing to do. #2, I&#39;ve wondered for years why I looked so much smarter than you. I am amazed! I think you gained 20 IQ points by getting buzzed!!\n\tMagicJohn: : D   :D   : )  : O   : }    : ]       (the crowd roars its approval.......) \n\n67) ringebri: Move B2 Ringebri Newhope\n\n68) MagicJohn: Trade B3 G3 Majormystery\n\n69) ringebri: Attack Y1 Majormistake\n\n70) MagicJohn: Build B3 Majormystery\n\n71) ringebri: Build Y2 Ringebri\n\n72) MagicJohn: Trade B3 Y3 Majormystery\n\n73) ringebri: Move Y2 Ringebri Newhope\n\n74) MagicJohn: Move R2 Darth Majormistake\n\n75) ringebri: Move R1 Majormistake Darth\n\n76) MagicJohn: Build B3 Majormystery\n\n77) ringebri: Move Y1 Newhope Majormistake\n\n78) MagicJohn: Attack Y1 Majormistake\n\n79) ringebri: Build Y3 Ringebri\n\n80) MagicJohn: Sacrifice Y3 Majormystery\nMove Y1 Darth Ringebri\nMove Y2 Darth Ringebri\nMove Y1 Majormistake Darth\nCatastrophe Ringebri Y\n\n\tMagicJohn: OOpsie........ Otherwise the game was fairly even for the most part.\n\nHomeworlds Online (SDG# 21378)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.28, Ended: 2012.1.21\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B1 Y2 G3 Dlwillson\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: &lt;singing&gt;  It&#39;s a small world after all......\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade G3 Y3 Silenttitan\n\n6) dlwillson: T G1 R1 Dlwillson\n\tdlwillson: Oh, fooey. I didn&#39;t realize I made it small.\n\n7) SilentTitan: Trade G1 R1 Silenttitan\n\n8) dlwillson: B R2 Dlwillson\n\n9) SilentTitan: Trade Y3 G3 Silenttitan\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) dlwillson: B R2 Dlwillson\n\n13) SilentTitan: Trade G1 Y1 Silenttitan\n\n14) dlwillson: T R1 B1 Dlwillson\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) dlwillson: Build B1 Dlwillson\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) dlwillson: D B1 Dlwillson G3 Gecko\n\n19) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n20) dlwillson: B B2 Gecko\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n22) dlwillson: M Y2 Dlwillson Gecko\n\n23) SilentTitan: Move Y1 Silenttitan Gecko\n\n24) dlwillson: B B2 Gecko\n\n25) SilentTitan: Build Y3 Gecko\n\n26) dlwillson: B Y3 Gecko\nC Gecko Y\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) dlwillson: Trade B2 Y2 Gecko\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\nBuild G1 Silenttitan\n\n30) dlwillson: M B2 Gecko Silenttitan\n\n31) SilentTitan: Attack B2 Silenttitan South\n\n32) dlwillson: M B1 Gecko Silenttitan\n\n33) SilentTitan: Discover B2 Silenttitan Y3 Soul\n\n34) dlwillson: B Y3 Gecko\n\n35) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Sol Dlwillson\nMove Y1 Sol Dlwillson\n\n36) dlwillson: M G3 Dlwillson Soul\n\n37) SilentTitan: Move Y1 Sol Dlwillson\nCatastrophe Dlwillson Yellow\n\n38) dlwillson: S Y2 Gecko\nM Y3 Gecko Silenttitan\nM G3 Soul Silenttitan\n\n39) SilentTitan: Move B2 Soul Dlwillson\n\tdlwillson: Small universes are weird.\n\n40) dlwillson: A B2 Dlwillson\n\tSilentTitan: yes they are....\n\n41) SilentTitan: Discover Y3 Silenttitan R3 Fiber\n\n42) dlwillson: S R2 Dlwillson\nA G1 Silenttitan\nA G1 Silenttitan\n\n43) SilentTitan: Attack G1 Silenttitan North\n\n44) dlwillson: T G3 R3 Silenttitan\n\n45) SilentTitan: Build R1 Silenttitan\nCatastrophe Silenttitan Red\n\n46) dlwillson: S B2 Dlwillson\nT Y3 G3 Silenttitan\nT B1 G1 Silenttitan\nC Silenttitan G\n\tSilentTitan: You had me several turns ago ... I&#39;m just trying to make it as painful as possible ... you do know that ... right?\r\n\n\tSilentTitan: heck of a win.  \n\tdlwillson: I do. So, we&#39;re one and one. Rubber match?\n\tdlwillson: Thank you. Fun game!\n\n\nHomeworlds Online (SDG# 21402)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.28, Ended: 2011.12.28\nParticipants: dethdukk (S), SilentTitan (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 21408)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.28, Ended: 2012.1.6\nParticipants: dethdukk (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: LOL.... A number one.... Dukk of Deth.  \n\n2) dethdukk: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dethdukk: Build G1 Dethdukk\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n\nHomeworlds Online (SDG# 21425)\nVariants: &quot;Hard time&quot;\nStarted: 2011.12.31, Ended: 2012.1.4\nParticipants: dethdukk (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) dethdukk: Homeworld R1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n\nHomeworlds Online (SDG# 21433)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.2, Ended: 2012.2.23\nParticipants: Remneb (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: H R1 B2 G3\n\n2) Remneb: Homeworld R2 B3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Remneb: Build G1 Remneb\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) agentofchaos: Discover Y1 Agentofchaos G3 Frenfur\n\n8) Remneb: Build G1 Remneb\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) Remneb: Discover G1 Remneb Y1 Thor\n\n11) agentofchaos: Build Y2 Frenfur\n\n12) Remneb: Build Y2 Remneb\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) Remneb: Move Y1 Remneb Thor\n\n15) agentofchaos: B G1 Agentofchaos\n\n16) Remneb: Build G1 Remneb\n\n17) agentofchaos: Trade G1 B1 Agentofchaos\n\n18) Remneb: Move Y1 Thor Frenfur\n\n19) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Frenfur\n\n20) Remneb: Build Y2 Remneb\n\n21) agentofchaos: Discover Y1 Frenfur G1 Swyvern\n\n22) Remneb: Move Y2 Remneb Thor\n\n23) agentofchaos: Build Y3 Swyvern\n\n24) Remneb: Build Y3 Remneb\n\n25) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y3 R3 Swyvern\n\n26) Remneb: Trade Y3 R3 Remneb\n\n27) agentofchaos: Build Y3 Swyvern\n\n28) Remneb: Build Y3 Remneb\n\n29) agentofchaos: Build R1 Swyvern\n\n30) Remneb: Sacrifice Y2 Remneb\nMove R3 Remneb Thor\nMove R3 Thor Frenfur\n\n31) agentofchaos: Move Y2 Frenfur Agentofchaos\n\n32) Remneb: Attack Y1 Frenfur\n\n33) agentofchaos: Build G2 Agentofchaos\n\n34) Remneb: Build G2 Thor\n\n35) agentofchaos: Trade G2 R2 Agentofchaos\n\n36) Remneb: Move G2 Thor Frenfur\n\n37) agentofchaos: Discover R2 Agentofchaos Y3 Artek\n\n38) Remneb: Sacrifice G2 Frenfur\nBuild R1 Frenfur\nBuild Y2 Frenfur\n\n39) agentofchaos: Sacrifice Y3 Swyvern\nMove R1 Swyvern Remneb\nMove R2 Artek Swyvern\nMove R2 Swyvern Remneb\n\n40) Remneb: Attack R2 Remneb\n\n41) agentofchaos: Move R3 Swyvern Remneb\nCatastrophe Remneb R\n\n42) Remneb: Move R3 Frenfur Swyvern\n\n43) agentofchaos: Discover Y1 Swyvern B3 Farrago\n\n44) Remneb: Trade G1 R1 Remneb\n\n45) agentofchaos: Build Y3 Agentofchaos\n\n46) Remneb: Build Y3 Remneb\n\n47) agentofchaos: Trade Y2 R2 Agentofchaos\n\n48) Remneb: Move Y2 Frenfur Swyvern\n\n49) agentofchaos: Build G1 Agentofchaos\n\n50) Remneb: Build Y2 Swyvern\n\n51) agentofchaos: Trade G1 B1 Agentofchaos\n\n52) Remneb: Sacrifice G3 Remneb\nBuild R2 Frenfur\nBuild R2 Swyvern\nBuild G1 Thor\n\n53) agentofchaos: Move Y3 Agentofchaos Frenfur\n\n54) Remneb: Sacrifice Y2 Swyvern\nMove R1 Frenfur Agentofchaos\nMove R2 Frenfur Agentofchaos\nCatastrophe Agentofchaos R\n\n55) agentofchaos: Trade B1 R1 Agentofchaos\n\n56) Remneb: Build Y2 Swyvern\n\n57) agentofchaos: Move Y1 Farrago Agentofchaos\n\n58) Remneb: Discover Y1 Frenfur R2 Draconis\n\n59) agentofchaos: Build R1 Agentofchaos\n\n60) Remneb: Move Y3 Remneb Draconis\n\n61) agentofchaos: Trade R1 B1 Agentofchaos\n\n62) Remneb: Move Y3 Draconis Frenfur\n\n63) agentofchaos: Move Y3 Frenfur Draconis\n\n64) Remneb: Move Y1 Draconis Frenfur\n\n65) agentofchaos: Build B1 Agentofchaos\n\n66) Remneb: Discover Y2 Thor B3 Nuke\n\n67) agentofchaos: Discover B1 Agentofchaos R1 Dredworld\n\n68) Remneb: Move Y3 Frenfur Draconis\n\n69) agentofchaos: Attack Y3 Draconis\n\n70) Remneb: Sacrifice Y2 Swyvern\nMove Y1 Frenfur Draconis\nMove Y2 Nuke Draconis\nCatastrophe Draconis Y\n\n71) agentofchaos: Trade B1 Y1 Dredworld\n\n72) Remneb: Move G1 Thor Remneb\n\n73) agentofchaos: Build G2 Agentofchaos\n\n74) Remneb: Build G2 Remneb\n\n75) agentofchaos: Build Y2 Agentofchaos\n\n76) Remneb: Trade G1 B1 Remneb\n\n77) agentofchaos: Build R2 Agentofchaos\n\n78) Remneb: Discover R3 Swyvern B3 Dagan\n\n79) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Dredworld\nBuild Y3 Dredworld\n\n80) Remneb: Build Y3 Swyvern\n\n81) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y2 G2 Dredworld\n\n82) Remneb: Move G1 Thor Dagan\n\n83) agentofchaos: Trade Y2 B2 Agentofchaos\n\n84) Remneb: Trade G1 B1 Dagan\n\n85) agentofchaos: Move B2 Agentofchaos Dredworld\n\n86) Remneb: Move Y2 Swyvern Dagan\n\n87) agentofchaos: Build B1 Dredworld\n\n88) Remneb: Discover B1 Remneb Y1 Deneb\n\n89) agentofchaos: Build Y2 Agentofchaos\n\n90) Remneb: Sacrifice Y2 Dagan\nMove B1 Dagan Deneb\nMove R3 Dagan Deneb\n\n91) agentofchaos: Build B2 Dredworld\n\n92) Remneb: Sacrifice Y3 Swyvern\nMove B1 Deneb Agentofchaos\nMove B1 Agentofchaos Dredworld\nMove R2 Swyvern Remneb\nCatastrophe Dredworld B\n\n93) agentofchaos: Trade Y2 B2 Agentofchaos\n\n94) Remneb: Trade G2 B2 Remneb\n\n95) agentofchaos: Move B2 Agentofchaos Dredworld\n\n96) Remneb: Move B2 Remneb Deneb\n\n97) agentofchaos: Build B1 Dredworld\n\n98) Remneb: Discover R1 Remneb B1 Orion\n\n99) agentofchaos: Build B3 Dredworld\n\n100) Remneb: Sacrifice Y3 Remneb\nMove B1 Deneb Agentofchaos\nMove B1 Agentofchaos Dredworld\nMove R3 Deneb Remneb\nCatastrophe Dredworld B\n\n101) agentofchaos: Sacrifice Y3 Dredworld\nMove R2 Agentofchaos Remneb\nMove R1 Agentofchaos Remneb\nPass\nCatastrophe Remneb R\n\n\nHomeworlds Online (SDG# 21443)\nVariants: &quot;Unrated&quot;\nStarted: 2012.1.3, Ended: 2012.1.6\nParticipants: pjackson (S), salmoneus (N)\nWinner: pjackson\n\n1) salmoneus: Pass\n\n2) pjackson: Homeworld B1 Y2 G3\n\n3) salmoneus: Homeworld Y3 G2 B3\n\n4) pjackson: Build G1 Pjackson\n\n5) salmoneus: Build B1 Salmoneus\n\n6) pjackson: Build G1 Pjackson\n\n7) salmoneus: Trade B1 G1 Salmoneus\n\n8) pjackson: Discover G1 Pjackson Y3 Sagan\n\n9) salmoneus: Build B1 Salmoneus\n\n10) pjackson: Build G2 Sagan\n\n11) salmoneus: Build B1 Salmoneus Sagan\n\n12) pjackson: Trade G3 B3 Pjackson\n\tpjackson: I thought that I could build ships of a color in systems where a star of that color was present, but apparently not.\n\n13) salmoneus: Trade B3 R3 Salmoneus\n\n14) pjackson: Build B2 Pjackson\n\n15) salmoneus: Trade B1 Y1 Salmoneus\n\n16) pjackson: Trade B3 Y3 Pjackson\n\n17) salmoneus: Discover R3 Salmoneus Y1 Spacepope\n\n18) pjackson: Discover G2 Sagan Y1 Icarus\n\n19) salmoneus: Discover G1 Salmoneus B1 Planetstarbucks\n\n20) pjackson: Sacrifice G2 Icarus\nBuild G2 Pjackson\nBuild B2 Pjackson\n\tpjackson: It&#39;s the same move. I just wanted to rename the star, because this tactic may be a little overly ambitious.\n\n21) salmoneus: Move R3 Spacepope Sagan\n\n22) pjackson: Trade B2 R2 Pjackson\n\n23) salmoneus: Attack G1 Sagan\n\n24) pjackson: Discover G2 Pjackson B3 Copernicus\n\n25) salmoneus: Trade G1 Y1 Planetstarbucks\n\n26) pjackson: Sacrifice B2 Pjackson\nTrade Y3 R3 Pjackson\nTrade R2 Y2 Pjackson\n\n27) salmoneus: Discover Y1 Planetstarbucks G2 Arrakis\n\n28) pjackson: Sacrifice Y2 Pjackson\nDiscover G2 Copernicus Y1 Wormhole\nMove G2 Wormhole Salmoneus\n\n29) salmoneus: Build R1 Sagan\n\n30) pjackson: Sacrifice R3 Pjackson\nAttack Y1 Salmoneus\nAttack B1 Salmoneus\nPass\n\n\tpjackson: Good game.\n\nHomeworlds Online (SDG# 21478)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.6, Ended: 2012.2.15\nParticipants: Subhan64 (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) Subhan64: Homeworld Y3 B1 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Subhan64: Build G1 Subhan64\n\n5) AdamBadura: Trade Y1 R1 Adambadura\n\n6) Subhan64: Trade G1 R1 Subhan64\n\n7) AdamBadura: Build Y1 Adambadura\n\n8) Subhan64: Build G1 Subhan64\n\n9) AdamBadura: Trade Y1 G1 Adambadura\n\n10) Subhan64: Discover G1 Subhan64 B2 Cookiemonster\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) Subhan64: Trade G3 Y3 Subhan64\n\n13) AdamBadura: Trade Y1 B1 Adambadura\n\n14) Subhan64: Build G1 Cookiemonster\n\n15) AdamBadura: Build G2 Adambadura\n\n16) Subhan64: Sacrifice Y3 Subhan64\nMove G1 Cookiemonster Subhan64\nDiscover G1 Cookiemonster R1 T3\nMove G1 T3 Adambadura\nCatastrophe Adambadura Green\n\n17) AdamBadura: Move Y3 Adambadura Subhan64\n\n18) Subhan64: Build R1 Subhan64\n\tAdamBadura: I wondered whether you will make a caastrophe and decided to check (I expected you will not). Now the situation is quite complex I think. Long have I thought what to do but somehow I&#39;m unable to see future here. Lets see where this road leads... ;)\n\n19) AdamBadura: Trade Y3 R3 Subhan64\n\n20) Subhan64: Build R2 Subhan64\nCatastrophe Subhan64 Red\n\n21) AdamBadura: Trade B1 Y1 Adambadura\n\tSubhan64: didn&#39;t have much choice there!\n\n22) Subhan64: Build G1 Subhan64\n\n23) AdamBadura: Move R1 Adambadura Subhan64\n\n\tSubhan64: Well, that&#39;s pretty much it.  Good game!\n\nHomeworlds Online (SDG# 21492)\nVariants: &quot;Unrated&quot;\nStarted: 2012.1.6, Ended: 2012.1.10\nParticipants: pjackson (S), salmoneus (N)\nWinner: salmoneus\n\n1) salmoneus: Homeworld B3 R1 G3\n\n2) pjackson: Homeworld B2 Y3 G3\n\n3) salmoneus: Build G1 Salmoneus\n\n4) pjackson: Build G1 Pjackson\n\n5) salmoneus: Trade G1 Y1 Salmoneus\n\n6) pjackson: Build G1 Pjackson\n\n7) salmoneus: Build Y1 Salmoneus\n\n8) pjackson: Discover G1 Pjackson R1 Tebow\n\n9) salmoneus: Discover Y1 Salmoneus G2 Caladan\n\n10) pjackson: Trade G1 B1 Pjackson\n\tpjackson: I changed the star color because The Tebow system is, by definition, an offensive and defensive juggernaut. I pity the poor Steeler who attempts to invade The Tebow for five or six sacks, plus a few interceptions, in one game.\n\n11) salmoneus: Build G1 Salmoneus\n\n12) pjackson: Build B1 Pjackson\n\tsalmoneus: How did the steelers lose to those bastards?!\n\n13) salmoneus: Move G1 Salmoneus Caladan\n\n14) pjackson: Discover B1 Pjackson B1 Brees\n\n15) salmoneus: Move G1 Caladan Brees\n\n16) pjackson: Trade B1 R1 Brees\n\n17) salmoneus: Sacrifice G1 Brees\nBuild Y1 Caladan\n\n18) pjackson: Sacrifice G3 Pjackson\nBuild R2 Brees\nBuild R2 Brees\nBuild B1 Pjackson\n\n19) salmoneus: Sacrifice G3 Salmoneus\nBuild Y2 Salmoneus\nBuild Y2 Salmoneus\nBuild Y2 Caladan\n\n20) pjackson: Trade R2 G2 Brees\n\n21) salmoneus: Trade Y2 G2 Salmoneus\n\n22) pjackson: Trade G2 Y2 Brees\n\tpjackson: I might be stuck in a very bad position here.\n\n23) salmoneus: Build Y3 Salmoneus\n\n24) pjackson: Move Y2 Brees Caladan\nCatastrophe Caladan Y\n\n25) salmoneus: Trade Y2 R2 Salmoneus\n\n26) pjackson: Sacrifice G1 Tebow\nBuild B2 Pjackson\nCatastrophe Pjackson B\n\n\tpjackson: The erratic, drunken commander of the Pjackson has become so distraught that he decided to annihilate his home planet. Oh the humanity! And absurdity!\n\tpjackson: Good game, well played.\n\tsalmoneus: I don&#39;t use the word hero lightly, but you sir are the greatest hero in the history in Pjackson history.\n\nHomeworlds Online (SDG# 21106)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.8, Ended: 2012.2.15\nParticipants: disaac (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\tdisaac: Hello Agent, I am Dan. Up for a game?\r\nI have actually only played about 20 games of Homeworlds to this point and they have usually been against the same one or two players. I have been wanting to try against some other players.\n\n2) disaac: Homeworld Y3 G2 B3\n\tagentofchaos: Hi Dan, nice to meet you. I can&#39;t remember how many games I&#39;ve played, but it&#39;s not a huge number. Enjoy the game :-)\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) disaac: B B1 Disaac\n\n5) agentofchaos: Trade G1 B1 Agentofchaos\n\n6) disaac: B B2 Disaac\n\n7) agentofchaos: B B2 Agentofchaos\n\n8) disaac: Discover B2 Disaac Y1 Sol\n\n9) agentofchaos: Trade B2 Y2 Agentofchaos\n\n10) disaac: Discover B2 Sol G3 Risa\n\n11) agentofchaos: B B2 Agentofchaos\n\n12) disaac: D B1 Disaac G1 Endor\n\n13) agentofchaos: Trade B2 R2 Agentofchaos\n\n14) disaac: Build B2 Endor\n\n15) agentofchaos: Move Y2 Agentofchaos Risa\n\n16) disaac: T B2 R2 Endor\n\n17) agentofchaos: Discover Y2 Risa G1 Zurvanoid\n\n18) disaac: Build B2 Endor\n\n19) agentofchaos: Build G1 Agentofchaos\n\tdisaac: I&#39;m very sorry for the delay. I plan to get back to this game very soon, but have been a bit tied up lately. \n\tagentofchaos: That&#39;s fine, I don&#39;t mind if players take their time\n\n20) disaac: Trade B2 Y2 Endor\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) disaac: D B1 Endor G3 Pandora\n\n23) agentofchaos: Trade B1 Y1 Agentofchaos\n\n24) disaac: B B1 Risa\n\n25) agentofchaos: Move R2 Agentofchaos Pandora\n\n26) disaac: Sacrifice B1 Pandora\nTrade B2 G2 Risa\n\n27) agentofchaos: Move G2 Agentofchaos Risa\n\n28) disaac: Sacrifice G2 Risa\nBuild B1 Disaac\nBuild R1 Endor\n\n29) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\nBuild R1 Pandora\n\n\nHomeworlds Online (SDG# 21253)\nStarted: 2012.1.8, Ended: 2012.2.18\nParticipants: virx61 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) virx61: Homeworld B3 Y2 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\tvirx61: Thanks\n\n4) virx61: Build G1 Virx61\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) virx61: Discover G1 Virx61 B1 Marsara\n\n7) ts52: Build G1 Grover\n\n8) virx61: Trade G1 Y1 Marsara\n\n9) ts52: Trade G1 Y1 Grover\n\n10) virx61: Build G1 Virx61\n\n11) ts52: Build Y2 Grover\n\n12) virx61: Discover Y1 Marsara G2 Tarsonis\n\n13) ts52: Build G1 Ts52\n\n14) virx61: Discover G1 Virx61 B1 Chausara\n\n15) ts52: Build G2 Grover\n\n16) virx61: Sacrifice Y1 Tarsonis\nDiscover G1 Chausara G3 Auir\n\n17) ts52: Move G1 Ts52 Auir\n\n18) virx61: Build G2 Virx61\n\n19) ts52: Trade Y1 R1 Grover\n\n20) virx61: Discover G2 Virx61 B1 Kamino\n\n21) ts52: Build G2 Ts52\n\n22) virx61: Trade G2 R2 Kamino\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y1 Grover\n\n24) virx61: Trade R2 Y2 Kamino\n\n25) ts52: Move G2 Grover Kamino\n\n26) virx61: Move Y2 Kamino Virx61\n\n27) ts52: Move Y1 Grover Kamino\n\n28) virx61: Trade Y2 R2 Virx61\n\n29) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Grover\nBuild Y2 Kamino\n\n30) virx61: Build R1 Virx61\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild Y3 Kamino\n\n32) virx61: Trade R1 B1 Virx61\n\n33) ts52: Trade Y3 R3 Kamino\n\n34) virx61: Build R1 Virx61\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Kamino\nBuild R1 Kamino\n\n36) virx61: Discover R2 Virx61 B1 Danube\n\n37) ts52: Move R3 Kamino Auir\n\n38) virx61: Build B2 Virx61\n\n39) ts52: Move Y2 Kamino Auir\n\n40) virx61: Build R2 Virx61\n\n41) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Auir\nBuild R2 Kamino\n\n42) virx61: Sacrifice G3 Virx61\nBuild G3 Auir\nBuild R3 Virx61\nBuild R3 Danube\nCatastrophe Auir G\n\n43) ts52: Move R1 Kamino Virx61\nCatastrophe Virx61 R\n\n44) virx61: Sacrifice B2 Virx61\nTrade R2 Y2 Danube\nTrade R3 G3 Danube\n\n45) ts52: M Y3 Kamino Virx61\n\n46) virx61: Move G3 Danube Virx61\n\n47) ts52: Sacrifice R2 Kamino\nAttack G3 Virx61\nAttack B1 Virx61\n\n\tts52: Thanks for the game!\n\tvirx61: You&#39;re welcome and thank you... I&#39;ll need to get better at this!\n\nHomeworlds Online (SDG# 21497)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.8, Ended: 2012.1.26\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 R2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\tts52: Have a good game.\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Build G1 Ts52\n\n7) zoltar: Build G1 Zoltar\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\n9) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n10) ts52: Build G2 Grover\n\n11) zoltar: Build Y1 Zoltar\n\n12) ts52: Trade G2 Y2 Grover\n\n13) zoltar: Build G2 Zoltar\n\n14) ts52: Build Y2 Grover\n\n15) zoltar: Move Y1 Zoltar Bluemoon\n\n16) ts52: Trade Y2 R2 Grover\n\n17) zoltar: Trade G2 R2 Zoltar\n\n18) ts52: Move R2 Grover Bluemoon\n\n19) zoltar: Sacrifice Y1 Bluemoon\nDiscover G1 Bluemoon B2 Bluemonday\n\n20) ts52: Build G2 Grover\n\n21) zoltar: Build G2 Bluemonday\n\n22) ts52: Move G2 Grover Bluemoon\n\n23) zoltar: Trade R2 Y2 Zoltar\n\n24) ts52: Build G2 Bluemoon\n\n25) zoltar: Sacrifice Y2 Zoltar\nMove G2 Bluemonday Ts52\nMove G1 Bluemonday Ts52\nCatastrophe Ts52 G\n\tzoltar: gg\n\tts52: Wow. I don&#39;t know how I missed that... Thanks for the game!\n\n\nHomeworlds Online (SDG# 21333)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.8, Ended: 2012.1.13\nParticipants: Jesse (S), Tank_7 (N)\nWinner: Jesse\n\n1) Tank_7: Homeworld Y3 B1 G3\n\n2) Jesse: Homeworld B1 Y2 G3\n\tJesse: Hello, and have a good game.\n\n\tTank_7: Crap sorry I forgot all about this didnt log in for several days :(\n\nHomeworlds Online (SDG# 21496)\nStarted: 2012.1.11, Ended: 2013.1.16\nParticipants: logikal (S), GrantHenninger (N)\nWinner: GrantHenninger\n\n1) GrantHenninger: Homeworld B3 Y2 G3\n\n2) logikal: Homeworld Y1 B2 G3\n\n3) GrantHenninger: Build G1 Granthenninger\n\tGrantHenninger: build g1 in GrantHenninger\n\tGrantHenninger: build g1 GrantHenninger\n\n4) logikal: Build G1 Logikal\n\tGrantHenninger: Alright, figured out what I&#39;m doing, I think.\n\n5) GrantHenninger: Trade G1 R1 Granthenninger\n\tGrantHenninger: build r1 GrantHenninger\n\n6) logikal: Discover G1 Logikal B3 L1\n\n7) GrantHenninger: Build G1 Granthenninger\n\n8) logikal: Build G1 Logikal\n\n9) GrantHenninger: Discover G1 Granthenninger B1 Gmh1\n\n10) logikal: Build G2 L1\n\n11) GrantHenninger:\nBuild G2 Granthenninger\n\n12) logikal: Sacrifice G3 Logikal\nBuild G2 Logikal\nBuild G3 Logikal\nBuild G3 L1\n\n13) GrantHenninger: S G3 Granthenninger\nB G3 Granthenninger\nB R1 Granthenninger\nB R1 Granthenninger\n\n14) logikal: Trade G1 Y1 L1\n\n15) GrantHenninger: Trade G1 Y1 Gmh1\n\n16) logikal: Build Y2 L1\n\n17) GrantHenninger: Move G2 Granthenninger Gmh1\n\n18) logikal: Discover Y1 L1 G1 L2\n\n19) GrantHenninger: Build Y2 Gmh1\n\n20) logikal: Sacrifice G2 Logikal\nBuild Y3 L2\nBuild Y3 L1\n\n21) GrantHenninger: Trade R1 B1 Granthenninger\n\n22) logikal: Move Y2 L1 Logikal\n\n23) GrantHenninger: Move R1 Granthenninger Gmh1\n\n\nHomeworlds Online (SDG# 21508)\nVariants: &quot;Unrated&quot;\nStarted: 2012.1.11, Ended: 2012.1.22\nParticipants: salmoneus (S), pjackson (N)\nWinner: salmoneus\n\n1) pjackson: Homeworld Y1 B2 G3\n\n2) salmoneus: Homeworld B3 R2 G3\n\n3) pjackson: Build G1 Pjackson\n\n4) salmoneus: Build G1 Salmoneus\n\tpjackson: I wish you could name your homeworld.\n\n5) pjackson: Trade G1 B1 Pjackson\n\n6) salmoneus: Trade G1 Y1 Salmoneus\n\n7) pjackson: Build G1 Pjackson\n\n8) salmoneus: Build Y1 Salmoneus\n\n9) pjackson: Build G1 Pjackson\n\n10) salmoneus: Build Y2 Salmoneus\n\n11) pjackson: Discover G1 Pjackson Y3 Alekhine\n\n12) salmoneus: Discover Y1 Salmoneus G1 Kaitain\n\n13) pjackson: Build G2 Pjackson\n\n14) salmoneus: Build G2 Salmoneus\n\n15) pjackson: Trade G2 Y2 Pjackson\n\n16) salmoneus: Move G2 Salmoneus Kaitain\n\n17) pjackson: Build G2 Alekhine\n\n18) salmoneus: Build G2 Salmoneus\n\n19) pjackson: Trade G1 R1 Pjackson\n\n20) salmoneus: Discover G2 Kaitain Y3 Buzzell\n\n21) pjackson: Move Y2 Pjackson Buzzell\n\n22) salmoneus: Sacrifice G3 Salmoneus\nBuild G1 Buzzell\nBuild G3 Buzzell\nBuild G3 Salmoneus\n\n23) pjackson: Sacrifice Y2 Buzzell\nDiscover G1 Alekhine B1 Wormhole\nMove G1 Wormhole Buzzell\nCatastrophe Buzzell G\n\tpjackson: Very interesting move.\r\n\n\n24) salmoneus: Build Y2 Kaitain\n\tpjackson: BOOM!\n\n25) pjackson: Build R1 Pjackson\n\n26) salmoneus: Discover Y2 Kaitain G3 Ecaz\n\n27) pjackson: Build B1 Pjackson\n\n28) salmoneus: Sacrifice G3 Salmoneus\nBuild Y2 Ecaz\nBuild Y3 Ecaz\nBuild Y3 Salmoneus\n\n29) pjackson: Move G2 Alekhine Pjackson\n\n30) salmoneus: Build Y3 Kaitain\n\n31) pjackson: Move G3 Pjackson Ecaz\n\tpjackson: Interesting move.\r\n\n\n32) salmoneus: Discover Y3 Ecaz B2 Grumman\n\n33) pjackson: Sacrifice R1 Pjackson\nAttack Y2 Ecaz\n\n34) salmoneus: Trade Y3 R3 Salmoneus\n\n35) pjackson: Discover Y2 Ecaz G1 Capablanca\n\n36) salmoneus: Sacrifice Y2 Salmoneus\nDiscover Y3 Grumman Y3 Foldedspace\nMove Y3 Foldedspace Pjackson\n\n37) pjackson: Sacrifice G3 Ecaz\nBuild Y2 Capablanca\nBuild B1 Pjackson\nBuild R1 Pjackson\n\n\nHomeworlds Online (SDG# 21495)\nStarted: 2012.1.12, Ended: 2012.1.19\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ts52: Build G1 Ts52\n\n7) lorgar: Discover B1 Lorgar G3 Metagame\n\n8) ts52: Discover G1 Ts52 B2 Gonzo\n\n9) lorgar: Build B1 Metagame\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) lorgar: Build B2 Metagame\n\n12) ts52: Build Y1 Ts52\n\n13) lorgar: Trade B2 Y2 Metagame\n\n14) ts52: Move Y1 Ts52 Gonzo\n\n15) lorgar: Trade B1 R1 Metagame\n\n16) ts52: Trade Y1 R1 Ts52\n\n17) lorgar: Build G1 Lorgar\n\n18) ts52: Move R1 Ts52 Gonzo\n\n19) lorgar: Build B1 Metagame\n\n20) ts52: Build G1 Gonzo\n\n21) lorgar: Discover B1 Metagame G2 Melmoth\n\n22) ts52: Build G2 Ts52\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lorgar\nBuild G3 Lorgar\nBuild B2 Melmoth\n\n24) ts52: Discover G1 Gonzo Y3 Bigbird\n\n25) lorgar: Sacrifice Y2 Metagame\nMove B2 Melmoth Ts52\nMove B1 Melmoth Ts52\n\n26) ts52: Move G1 Bigbird Lorgar\nCatastrophe Lorgar Green\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 21411)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.13, Ended: 2012.2.14\nParticipants: SilentTitan (S), raster51 (N)\nWinner: SilentTitan\n\n1) raster51: Homeworld G1 B2 Y3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) raster51: Build Y1 Raster51\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) raster51: Build Y1 Raster51\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) raster51: Trade Y1 B1 Raster51\n\n8) SilentTitan: Trade G3 Y3 Silenttitan\n\n9) raster51: Trade Y1 R1 Raster51\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) raster51: Build Y1 Raster51\n\n12) SilentTitan: Discover G2 Silenttitan Y1 Sol\n\n13) raster51: Construct R1 Raster51\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) raster51: Discover Y1 Raster51 G3 Moon\n\n16) SilentTitan: Build G2 Sol\n\n17) raster51: Build Y1 Moon\n\n18) SilentTitan: Build G3 Sol\n\n19) raster51: Discover R1 Raster51 G3 Chlorophyll\n\n20) SilentTitan: Trade G2 R2 Silenttitan\n\n21) raster51: Build Y2 Raster51\n\n22) SilentTitan: Trade G1 B1 Silenttitan\n\n23) raster51: Build Y2 Moon\n\n24) SilentTitan: Move B1 Silenttitan Sol\n\n25) raster51: Move B1 Raster51 Moon\n\n26) SilentTitan: Sacrifice G3 Sol\nBuild G1 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Sol\n\n27) raster51: Sacrifice Y2 Moon\nMove R1 Chlorophyll Raster51\nMove B1 Moon Raster51\n\n\n\n\n28) SilentTitan: Discover G3 Sol B3 Sole\n\n29) raster51: Build Y2 Raster51\n\n30) SilentTitan: Build G3 Sole\n\n31) raster51: Build R1 Raster51\n\n32) SilentTitan: Build Y2 Silenttitan\n\n33) raster51: Build Y3 Moon\n\n34) SilentTitan: Sacrifice Y2 Silenttitan\nMove G3 Sole Raster51\nMove G3 Sole Raster51\n\n35) raster51: Sacrifice R1 Raster51\nAttack G3 Raster51\n\n36) SilentTitan: Sacrifice R2 Silenttitan\nAttack G3 Raster51 North\nAttack Y3 Raster51 North\n\n37) raster51: Move Y3 Moon Raster51\n\n38) SilentTitan: Trade G3 R3 Raster51\nCatastrophe Raster51 Yellow\n\n39) raster51: Build R1 Raster51\n\n40) SilentTitan: Attack B1 Raster51 North\nCatastrophe Raster51 Red\n\n\tSilentTitan: Thanks for the Game. \n\nHomeworlds Online (SDG# 21525)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.14, Ended: 2012.2.20\nParticipants: Jesse (S), daselva (N)\nWinner: Jesse\n\n1) daselva: Homeworld B1 R2 G3\n\n2) Jesse: Homeworld B3 R1 G3\n\n3) daselva: Build G1 Daselva\n\tJesse: Welcome.\n\n4) Jesse: Build G1 Jesse\n\tdaselva: hello\n\n5) daselva: Trade G1 Y1 Daselva\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) daselva: Build G1 Daselva\n\n8) Jesse: Build G1 Jesse\n\n9) daselva: Trade G1 B1 Daselva\n\n10) Jesse: Trade G1 B1 Jesse\n\n11) daselva: Build B2 Daselva\n\n12) Jesse: Build B2 Jesse\n\n13) daselva: Trade B2 R2 Daselva\n\n14) Jesse: Trade B1 R1 Jesse\n\n15) daselva: Discover R2 Daselva G3 S2\n\n16) Jesse: Discover R1 Jesse G2 Oscar\n\n17) daselva: Build G1 Daselva\n\n18) Jesse: Build G1 Jesse\n\n19) daselva: Sacrifice Y1 Daselva\nMove R2 S2 Oscar\n\n20) Jesse: Build R1 Oscar\n\n21) daselva: Attack R1 Oscar\n\n22) Jesse: Build R2 Oscar\nCatastrophe Oscar R\n\n23) daselva: Trade G1 Y1 Daselva\n\n24) Jesse: Trade G1 R1 Jesse\n\n25) daselva: Build G1 Daselva\n\n26) Jesse: Build G1 Jesse\n\n27) daselva: Build Y1 Daselva\n\n28) Jesse: Build Y2 Jesse\n\n29) daselva: Build Y2 Daselva\n\n30) Jesse: Discover Y2 Jesse G2 Kermit\n\n31) daselva: Trade Y1 R1 Daselva\n\n32) Jesse: Move B2 Jesse Kermit\n\n33) daselva: Build R2 Daselva\n\n34) Jesse: Build R2 Jesse\n\n35) daselva: Discover R2 Daselva G3 S1\n\n36) Jesse: Move R1 Jesse Kermit\n\n37) daselva: Trade R1 Y1 Daselva\n\n38) Jesse: Discover R2 Jesse G2 Lefty\n\n39) daselva: Move Y1 Daselva S1\n\n40) Jesse: Build Y2 Kermit\n\n41) daselva: Build Y3 S1\n\n42) Jesse: Build Y3 Jesse\n\n43) daselva: Sacrifice Y3 S1\nMove Y1 S1 Kermit\nMove Y1 Daselva S1\nMove Y1 S1 Kermit\nCatastrophe Kermit Y\n\n44) Jesse: Move Y1 Jesse Kermit\n\n\nHomeworlds Online (SDG# 21516)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.16, Ended: 2012.1.30\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Build G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Trade G1 B1 Lorgar\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) lorgar: Build B1 Lorgar\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) lorgar: Discover B1 Lorgar G2 Mister\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) lorgar: Build B2 Mister\n\n15) SilentTitan: Discover Y2 Silenttitan R3 Sole\n\n16) lorgar: Trade B2 Y2 Mister\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n18) lorgar: Build B2 Mister\n\n19) SilentTitan: Sacrifice Y3 Sole\nMove Y2 Sol Mister\nMove Y2 Mister Lorgar\nMove Y2 Sole Mister\n\n20) lorgar: Discover B1 Mister Y3 Missz\n\n21) SilentTitan: Trade Y3 R3 Silenttitan\n\n22) lorgar: Sacrifice G3 Lorgar\nBuild B2 Missz\nBuild B3 Mister\nBuild B3 Lorgar\n\n23) SilentTitan: Build Y3 Mister\n\n24) lorgar: Sacrifice Y2 Mister\nMove B3 Mister Missz\nMove B2 Mister Sol\n\n25) SilentTitan: Move Y3 Mister Lorgar\n\n26) lorgar: Trade B3 R3 Lorgar\n\n27) SilentTitan: Sacrifice R3 Silenttitan\nAttack R3 Lorgar South\nAttack G1 Lorgar South\nAttack B1 Lorgar South\n\n\nHomeworlds Online (SDG# 21536)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.18, Ended: 2012.1.24\nParticipants: Gnomekin (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Gnomekin: Homeworld Y1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tGnomekin: I haven&#39;t played Homeworlds before and have been meaning to for years. I decided that the only way to properly learn how to play was to bite the bullet.\n\n4) Gnomekin: Build G1 Gnomekin\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Gnomekin: Discover G1 Gnomekin Y3 Halfax\n\tSilentTitan: This is very true.  I can help you out along the way. If you&#39;d like.\n\tSilentTitan: This is very true.  I can help you out along the way. If you&#39;d like.\n\n7) SilentTitan: Build Y1 Silenttitan\n\tGnomekin: I feel like I&#39;m learning a new language to execute commands :D\n\tSilentTitan: Not sure why my last chat... repeated three times... sent it from my phone maybe I hit send more than once.  \r\n\n\tSilentTitan: or even why I spelled repeted that way.... yes commands are part of the challenge it seems\r\n\n\n8) Gnomekin: Build G1 Gnomekin\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) Gnomekin: Trade G1 B1 Gnomekin\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Gnomekin: Discover B1 Gnomekin R3 Detroit\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n14) Gnomekin: Build G1 Gnomekin\n\n15) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n16) Gnomekin: Trade G1 R1 Gnomekin\n\n17) SilentTitan: Build Y3 Soul\n\n18) Gnomekin: Move R1 Gnomekin Detroit\n\n19) SilentTitan: Trade Y3 R3 Silenttitan\n\n20) Gnomekin: Build G1 Halfax\n\n21) SilentTitan: Build Y3 Soul\n\n22) Gnomekin: Move G1 Halfax Silenttitan\n\n23) SilentTitan: Attack G1 Silenttitan South\n\n24) Gnomekin: Sacrifice G3 Gnomekin\nBuild G1 Halfax\nBuild G2 Halfax\nPass\n\tGnomekin: Oops.\r\n\r\nHmmm...\r\n\r\nI&#39;ll have to read the rules more carefully.\r\n\r\nI tried to move g2 to my homeworld but couldn&#39;t.\n\n\nHomeworlds Online (SDG# 21559)\nStarted: 2012.1.19, Ended: 2012.2.7\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ts52: Build G1 Ts52\n\n7) lorgar: Discover B1 Lorgar G3 Ragrol\n\n8) ts52: Trade G1 Y1 Ts52\n\n9) lorgar: Build G1 Lorgar\n\n10) ts52: Discover G1 Ts52 Y1 Zoe\n\n11) lorgar: Build B1 Ragrol\n\n12) ts52: Build Y1 Ts52\n\n13) lorgar: Build B2 Ragrol\n\n14) ts52: Move Y1 Ts52 Zoe\n\n15) lorgar: Trade B2 Y2 Ragrol\n\n16) ts52: Build Y3 Ts52\n\n17) lorgar: Build Y3 Ragrol\n\n18) ts52: Trade Y3 R3 Ts52\n\n19) lorgar: Sacrifice Y2 Ragrol\nDiscover B1 Ragrol G1 Oz\nDiscover G1 Lorgar Y3 Mnar\n\n20) ts52: Move R3 Ts52 Oz\n\n21) lorgar: Build G2 Lorgar\n\n22) ts52: Attack B1 Oz\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G2 Mnar\nBuild G2 Mnar\nBuild G3 Lorgar\n\n24) ts52: Move G1 Zoe Mnar\nCatastrophe Mnar Green\n\n25) lorgar: Trade G2 R2 Lorgar\n\n26) ts52: Build B2 Oz\n\n27) lorgar: Build G1 Lorgar\n\n28) ts52: Move Y1 Ts52 Oz\n\n29) lorgar: Build B2 Ragrol\n\n30) ts52: Trade B2 G2 Oz\n\n31) lorgar: Discover G1 Lorgar Y3 York\n\n32) ts52: Build B2 Oz\n\n33) lorgar: Build G1 Lorgar\n\n34) ts52: Discover G2 Oz Y3 Bigbird\n\n35) lorgar: Trade B2 G2 Ragrol\n\n36) ts52: Trade B2 R2 Oz\n\n37) lorgar: Discover G2 Ragrol R1 Moldau\n\n38) ts52: Move R2 Oz York\n\n39) lorgar: Sacrifice G1 York\nBuild G1 Moldau\n\n40) ts52: Build Y2 Oz\n\n41) lorgar: Build R1 Lorgar\n\n42) ts52: Discover Y2 Oz B3 Gonzo\n\n43) lorgar: Build B2 Ragrol\n\n44) ts52: Sacrifice G2 Bigbird\nBuild Y3 Gonzo\nBuild G2 Ts52\n\n45) lorgar: Sacrifice Y3 Ragrol\nMove G2 Moldau Ts52\nMove G1 Moldau Ts52\nMove B2 Ragrol Zoe\nCatastrophe Ts52 Green\n\tts52: Well played. Should&#39;ve seen that coming.\n\n\nHomeworlds Online (SDG# 21548)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.20, Ended: 2012.1.20\nParticipants: SilentTitan (S), kikke2 (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 21566)\nVariants: &quot;No undo&quot;\nStarted: 2012.1.23, Ended: 2012.2.15\nParticipants: lorgar (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) lorgar: Homeworld B1 Y3 G3\n\tajo: Sorry, I&#39;ve been away for a long time. I&#39;m going to try to pick up with SDG again, though. Guess we&#39;ll see if I finish this game. :)\n\n3) ajo: Build Y1 Ajo\n\n4) lorgar: Build G1 Lorgar\n\n5) ajo: Trade Y1 G1 Ajo\n\n6) lorgar: Build G1 Lorgar\n\n7) ajo: Build G2 Ajo\n\n8) lorgar: Discover G1 Lorgar B2 Magnamund\n\n9) ajo: Trade G1 R1 Ajo\n\n10) lorgar: Build G1 Lorgar\n\n11) ajo: Build G2 Ajo\n\n12) lorgar: Trade G1 R1 Lorgar\n\tlorgar: oh c**p\n\tlorgar: thanks for not taking the cheap kill\n\n13) ajo: Discover G2 Ajo Y1 Khyber\n\tajo: Shoot. It wasn&#39;t intentional; I even saw the possibility a few moves ago and then forgot about it, I guess. Well, I think I still have the upper hand no matter what.\n\n14) lorgar: Build R1 Lorgar\n\n15) ajo: Build R2 Ajo\n\n16) lorgar: Trade R1 B1 Lorgar\n\n17) ajo: Move G2 Khyber Magnamund\n\n18) lorgar: Sacrifice G3 Lorgar\nBuild G1 Magnamund\nBuild G2 Magnamund\nBuild G3 Lorgar\n\n19) ajo: Discover R2 Ajo Y1 Khyber\nCatastrophe Magnamund Green\n\tlorgar: crappit I forgot the catastrophe at the end of the order.\n\tajo: I&#39;ll do it for you, then.\n\n20) lorgar: Build B1 Lorgar\n\tlorgar: thanks! that sweet :)\n\n21) ajo: Build Y1 Ajo\n\n22) lorgar: Discover B1 Lorgar B2 Mnar\n\n23) ajo: Move R2 Khyber Mnar\n\n24) lorgar: Sacrifice G3 Lorgar\nBuild B2 Lorgar\nBuild B3 Mnar\nBuild R1 Lorgar\n\n25) ajo: Attack B1 Mnar\n\tajo: Hmm, nice half-of-a-trick. But is there a second half? :)\n\n26) lorgar: Trade B1 Y1 Lorgar\n\n27) ajo: Sacrifice G2 Ajo\nBuild R2 Ajo\nBuild B1 Mnar\nCatastrophe Mnar Blue\n\n28) lorgar: Build B1 Lorgar\n\n29) ajo: Build R2 Ajo\n\n30) lorgar: Discover B2 Lorgar G2 Maru\n\n31) ajo: Discover R2 Ajo B1 Alpha\n\tajo: Whoops, I&#39;m dumb. Ignore that &quot;Page Admin&quot; stuff.\n\n32) lorgar: Build B2 Maru\n\n33) ajo: Move R1 Ajo Alpha\n\n34) lorgar: Build B3 Lorgar\n\n35) ajo: Trade R2 G2 Alpha\n\n36) lorgar: Build B3 Maru\n\n37) ajo: Build R2 Ajo\n\n38) lorgar: Trade B3 Y3 Maru\n\n39) ajo: Discover R2 Ajo Y1 Khyber\n\n40) lorgar: Move Y3 Maru Alpha\n\n41) ajo: Sacrifice G2 Alpha\nBuild R2 Ajo\nBuild R3 Khyber\n\n42) lorgar: Build B3 Maru\n\n43) ajo: Discover Y1 Ajo G1 Beta\n\n44) lorgar: Sacrifice Y1 Lorgar\nMove B2 Maru Beta\n\n45) ajo: Discover Y1 Beta G2 Gamma\n\n46) lorgar: Trade B3 R3 Maru\n\n47) ajo: Trade R2 G2 Ajo\n\n48) lorgar: Build B3 Beta\n\n49) ajo: Build Y1 Gamma\n\n50) lorgar: Build B3 Beta\n\n51) ajo: Build Y2 Gamma\n\n52) lorgar: Trade B3 R3 Beta\n\n53) ajo: Build Y2 Ajo\n\n54) lorgar: Build B3 Beta\n\n55) ajo: Move Y1 Gamma Lorgar\n\n56) lorgar: Sacrifice Y3 Alpha\nMove B3 Beta Ajo\nMove B3 Beta Ajo\nMove B2 Beta Ajo\nCatastrophe Ajo Blue\n\n57) ajo: Sacrifice R3 Khyber\nAttack R1 Lorgar\nAttack R1 Lorgar\nAttack B1 Lorgar\n\n58) lorgar: Sacrifice R3 Beta\nAttack B1N Lorgar\nAttack R1N Lorgar\nAttack R1N Lorgar\n\n59) ajo: Move Y2 Gamma Lorgar\n\n60) lorgar: Trade B1 G1 Lorgar\n\n61) ajo: Sacrifice G2 Ajo\nBuild R2 Alpha\nBuild R3 Khyber\n\n62) lorgar: Build R3 Maru\n\n63) ajo: Sacrifice R3 Khyber\nAttack G1 Lorgar\nAttack G1 Lorgar\nAttack R1 Lorgar\n\n64) lorgar: Sacrifice R3 Maru\nAttack Y2N Lorgar\nAttack G1N Lorgar\nAttack G1N Lorgar\n\tajo: Well, this is certainly interesting. Wonder how long we&#39;ll keep this up... :)\n\tlorgar: ^^\n\n65) ajo: Sacrifice R2 Khyber\nAttack R1 Lorgar\nAttack G1 Lorgar\n\n66) lorgar: Build Y1 Lorgar\nCatastrophe Lorgar Yellow\n\n67) ajo: Trade R2 B2 Alpha\n\tajo: Hmm. I wasn&#39;t expecting that (at least not on YOUR turn!). This is going to be another really close game.\n\n68) lorgar: Sacrifice R3 Maru\nAttack G1 Lorgar\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n69) ajo: Sacrifice B2 Alpha\nTrade Y2 B2 Ajo\nTrade Y1 B1 Gamma\n\n70) lorgar: Trade B3 G3 Lorgar\n\tajo: Check.\n\n71) ajo: Build B2 Ajo\n\n72) lorgar: Pass\n\tajo: Checkmate? :)\n\n73) ajo: Sacrifice Y3 Ajo\nMove B2 Ajo Lorgar\nMove B2 Ajo Lorgar\nMove B1 Gamma Lorgar\nCatastrophe Lorgar Blue\n\tajo: Good game. :)\n\n\nHomeworlds Online (SDG# 21563)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.24, Ended: 2012.1.26\nParticipants: Gnomekin (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tGnomekin: Okay. Now that I have a better idea of how things work (and that when you sacrifice you can only do that color action), I am prepared to get back up and try again.\n\n2) Gnomekin: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Gnomekin: Build G1 Gnomekin\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Gnomekin: Trade G1 R1 Gnomekin\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Gnomekin: Build G1 Gnomekin\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) Gnomekin: Discover G1 Gnomekin B3 Amber\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\tSilentTitan: oh... I didn&#39;t realize we were in a small universe until you made that last move there.\r\n\n\n12) Gnomekin: Sacrifice G3 Gnomekin\nBuild R1 Gnomekin\nBuild R2 Gnomekin\nBuild G1 Amber\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) Gnomekin: Trade R2 Y2 Gnomekin\n\n15) SilentTitan: Build Y3 Sol\n\n16) Gnomekin: Move Y2 Gnomekin Amber\n\n17) SilentTitan: Trade Y2 R2 Silenttitan\n\tGnomekin: Was that a Zelazney reference?\n\tSilentTitan: Could be.  Who is zelazney?\n\n18) Gnomekin: Build Y2 Amber\n\n19) SilentTitan: Move Y3 Sol Gnomekin\n\n20) Gnomekin: Trade Y2 R2 Amber\n\n21) SilentTitan: Sacrifice R2 Silenttitan\nAttack R1 Gnomekin South\nAttack R1 Gnomekin South\n\tGnomekin: Good. This time, you had to kill me, which shows improvement on my part.\n\n\nHomeworlds Online (SDG# 21571)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.26, Ended: 2012.1.30\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dlwillson: H R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) dlwillson: Build B1 Dlwillson\n\n9) SilentTitan: Build Y1 Silenttitan\n\n\tdlwillson: Ha! I&#39;m so used to starting with yellow... I never even ~looked~ since we started.\n\tdlwillson: Good game. Correcting would take at least three moves. Let&#39;s start over and I&#39;ll try to pay attention. Sorry...\n\nHomeworlds Online (SDG# 21588)\nVariants: &quot;Unrated&quot;\nStarted: 2012.1.28, Ended: 2012.2.18\nParticipants: pjackson (S), salmoneus (N)\nWinner: salmoneus\n\n1) salmoneus: Homeworld B3 R1 G3\n\n2) pjackson: Homeworld B2 G2 R3 *\n\n3) salmoneus: Build G1 Salmoneus\n\tsalmoneus: Interesting choice.\n\n4) pjackson: Build R1 Pjackson\n\n5) salmoneus: Trade G1 Y1 Salmoneus\n\n6) pjackson: Trade R1 Y1 Pjackson\n\n7) salmoneus: Build G1 Salmoneus\n\n8) pjackson: Build R1 Pjackson\n\n9) salmoneus: Discover G1 Salmoneus Y2 Rossak\n\n10) pjackson: Trade R1 G1 Pjackson\n\n11) salmoneus: Build G1 Salmoneus\n\n12) pjackson: Build R1 Pjackson\n\n13) salmoneus: Build G2 Rossak\n\n14) pjackson: Trade R1 B1 Pjackson\n\n15) salmoneus: Discover G1 Rossak Y3 Kepler\n\n16) pjackson: Discover G1 Pjackson Y1 Omicron_persei8\n\n17) salmoneus: Sacrifice G3 Salmoneus\nBuild G2 Salmoneus\nBuild G3 Salmoneus\nBuild G3 Rossak\n\n18) pjackson: Build G3 Omicron_persei8\n\n19) salmoneus: Trade G2 Y2 Salmoneus\n\n20) pjackson: Build Y2 Pjackson\n\n21) salmoneus: Sacrifice Y2 Salmoneus\nMove G1 Salmoneus Pjackson\nMove G1 Kepler Pjackson\n\n22) pjackson: Sacrifice R3 Pjackson\nAttack G1 Pjackson\nAttack G1 Pjackson\nPass\n\n23) salmoneus: Trade G3 R3 Salmoneus\n\n24) pjackson: Trade G1 R1 Pjackson\n\n25) salmoneus: Move G3 Rossak Salmoneus\n\n\tpjackson: I didn&#39;t have a move that wouldn&#39;t have made my position substantially worse.\n\nHomeworlds Online (SDG# 21596)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.29, Ended: 2012.2.4\nParticipants: ajo (S), Salmonax (N)\nWinner: ajo\n\n1) Salmonax: Homeworld R1 G3 B3\n\n2) ajo: Homeworld Y3 G1 B3\n\n3) Salmonax: Build B1 Salmonax\n\n4) ajo: Build B1 Ajo\n\n5) Salmonax: Trade B1 Y1 Salmonax\n\n6) ajo: Discover B1 Ajo G2 Alpha\n\n7) Salmonax: Build Y1 Salmonax\n\n8) ajo: Build B1 Ajo\n\n9) Salmonax: Trade Y1 R1 Salmonax\n\n10) ajo: Trade B1 R1 Alpha\n\n11) Salmonax: Build R2 Salmonax\n\n12) ajo: Build R2 Alpha\n\n13) Salmonax: Move R2 Salmonax Alpha\n\n14) ajo: Sacrifice R1 Alpha\nAttack R2 Alpha\n\n15) Salmonax: Build Y1 Salmonax\n\tSalmonax: Argh!\n\n16) ajo: Sacrifice B1 Ajo\nTrade R2 Y2 Alpha\n\tajo: Heh. :)\n\n17) Salmonax: Discover R1 Salmonax G2 S1\n\n18) ajo: Build Y1 Alpha\n\n19) Salmonax: Move Y1 Salmonax S1\n\n20) ajo: Build B1 Ajo\n\n21) Salmonax: Build Y2 S1\n\n22) ajo: Sacrifice B1 Ajo\nTrade Y1 B1 Alpha\n\n23) Salmonax: Move Y1 S1 Ajo\n\n24) ajo: Build B1 Alpha\n\n25) Salmonax: Build Y1 Ajo\n\n26) ajo: Build R1 Alpha\n\n27) Salmonax: Build Y2 Ajo\n\tajo: My gambit may have failed to pay off... :P\n\n28) ajo: Build Y3 Alpha\nCatastrophe Ajo Yellow\n\tajo: Eh? You forgot to &quot;catastrophe ajo yellow&quot;!\n\n29) Salmonax: Build R2 S1\n\tSalmonax: No, didn&#39;t forget... was going to trade all to blue if you didn&#39;t notice that I forgot. =D\n\n30) ajo: Move R2 Alpha Ajo\n\n31) Salmonax: Build Y1 Salmonax\n\n32) ajo: Move Y3 Alpha Ajo\n\n33) Salmonax: Discover Y1 Salmonax G2 S2\n\n34) ajo: Build R2 Ajo\n\n35) Salmonax: Build Y1 S2\n\n36) ajo: Discover R2 Ajo B2 Beta\n\n37) Salmonax: Build Y2 Salmonax\n\n38) ajo: Build R3 Alpha\n\n39) Salmonax: Build Y3 S1\n\n40) ajo: Trade R3 G3 Alpha\n\n41) Salmonax: Sacrifice B3 Salmonax\nTrade Y1 G1 S2\nTrade Y1 G1 Salmonax\nTrade Y3 G3 S1\n\n42) ajo: Sacrifice Y2 Alpha\nMove B3 Ajo Alpha\nMove B3 Alpha Salmonax\n\n43) Salmonax: Build Y1 Salmonax\n\n44) ajo: Sacrifice R2 Beta\nAttack Y2 Salmonax\nAttack G1 Salmonax\n\tajo: Check. But it&#39;s going to be close. :)\n\tSalmonax: Yeah it will!\n\n45) Salmonax: Sacrifice Y2 S1\nMove R2 S1 Salmonax\nMove G3 S1 Salmonax\n\n46) ajo: Sacrifice R2 Ajo\nAttack R2 Salmonax\nAttack G3 Salmonax\n\tajo: Wrong color; I think you ought to have concentrated on green. (Check.)\n\n\tajo: And there&#39;s the checkmate. Good game! :)\n\tSalmonax: Gg\n\nHomeworlds Online (SDG# 21585)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.30, Ended: 2012.2.28\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Trade G1 R1 Lorgar\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) lorgar: Build R2 Lorgar\n\n8) SilentTitan: Build R2 Silenttitan\n\n9) lorgar: Build G1 Lorgar\n\n10) SilentTitan: Trade R2 Y2 Silenttitan\n\n11) lorgar: Build R2 Lorgar\n\n12) SilentTitan: Build R2 Silenttitan\n\n13) lorgar: Trade R2 B2 Lorgar\n\n14) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n15) lorgar: Discover R2 Lorgar Y2 Mike\n\n16) SilentTitan: Trade R2 G2 Sol\n\n17) lorgar: Discover B2 Lorgar G2 Windmill\n\n18) SilentTitan: Build Y1 Silenttitan\n\n19) lorgar: Build B1 Windmill\n\n20) SilentTitan: Build G1 Sol\n\n21) lorgar: Trade B2 Y2 Windmill\n\n22) SilentTitan: Trade G1 Y1 Sol\n\n23) lorgar: Build B1 Windmill\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n25) lorgar: Move Y2 Windmill Sol\nCatastrophe Sol Yellow\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) lorgar: Build B2 Windmill\n\n28) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n29) lorgar: Trade B1 Y1 Windmill\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Soul\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n31) lorgar: Build Y3 Windmill\n\n32) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Soul Windmill\nMove Y1 Soul Windmill\nCatastrophe Windmill Yellow\n\n33) lorgar: Trade B2 G2 Windmill\n\n34) SilentTitan: Trade Y3 G3 Silenttitan\n\n35) lorgar: Build B1 Windmill\n\n36) SilentTitan: Build G1 Sol\n\n37) lorgar: Trade B1 Y1 Windmill\n\n38) SilentTitan: Build G1 Silenttitan\n\n39) lorgar: Discover G2 Windmill G3 Grasshoper\n\n40) SilentTitan: Trade G2 Y2 Sol\n\n41) lorgar: Move G1 Lorgar Mike\n\n42) SilentTitan: Build G2 Sol\n\n43) lorgar: Sacrifice G2 Grasshoper\nBuild G2 Lorgar\nBuild G3 Mike\n\n44) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sol Mike\nMove G2 Sol Mike\nCatastrophe Mike Green\n\n45) lorgar: Build B1 Windmill\n\n46) SilentTitan: Trade G1 Y1 Silenttitan\n\n47) lorgar: Build B2 Windmill\n\n48) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n49) lorgar: Build Y3 Windmill\n\n50) SilentTitan: Trade Y2 G2 Silenttitan\n\n51) lorgar: Discover B2 Windmill G3 Armok\n\n52) SilentTitan: Move Y2 Sol Windmill\n\n53) lorgar: Sacrifice Y3 Windmill\nMove Y1 Windmill Armok\nMove Y1 Armok Silenttitan\nMove B2 Armok Silenttitan\n\n54) SilentTitan: Sacrifice Y2 Windmill\nDiscover Y1 Sol Y2 Soul\nDiscover Y1 Silenttitan Y3 Sole\n\n55) lorgar: Sacrifice G2 Lorgar\nBuild B2 Silenttitan\nBuild B3 Silenttitan\nCatastrophe Silenttitan Blue\n\n56) SilentTitan: Attack Y1 Silenttitan North\n\n57) lorgar: Move R2 Mike Sole\n\n58) SilentTitan: Discover Y1 Sole G2 Sol\n\n59) lorgar: Build B2 Windmill\n\n60) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\n\n61) lorgar: Trade B2 R2 Windmill\n\n62) SilentTitan: Move Y2 Soul Silenttitan\n\n63) lorgar: Build R2 Windmill\n\n64) SilentTitan: Discover R1 Silenttitan G3 Tic\n\n65) lorgar: Move R2 Sole Silenttitan\n\n66) SilentTitan: Attack R2 Silenttitan North\n\n67) lorgar: Build R3 Lorgar\n\n68) SilentTitan: Move Y3 Silenttitan Windmill\n\n69) lorgar: Trade R3 B3 Lorgar\n\tlorgar: crappit that was a bad move\n\n70) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Windmill North\nAttack R2 Windmill North\n\n71) lorgar: Sacrifice B3 Lorgar\nTrade B1 G1 Windmill\nTrade B1 G1 Windmill\nTrade R1 G1 Lorgar\n\n72) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Windmill Lorgar\nMove R2 Windmill Lorgar\n\n73) lorgar: Pass\n\n74) SilentTitan: Sacrifice R2 Windmill\nAttack G3 Lorgar North\nAttack G1 Lorgar North\n\n\tSilentTitan: Thank you... and thank you for playing.\n\tlorgar: even if I get beaten every time I like to play with you. You are hardcore :)\n\tSilentTitan: yeah... I can see that .... playing against nmeme and twoshort will quickly put you on that path.\n\nHomeworlds Online (SDG# 21602)\nVariants: &quot;Hard time&quot;\nStarted: 2012.1.30, Ended: 2012.2.20\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) dlwillson: B B2 Dlwillson\n\tdlwillson: Holy crap. Homeworlds is HARD...\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) dlwillson: D B2 Dlwillson G1 Dingo\n\n10) SilentTitan: Trade B2 Y2 Silenttitan\n\n11) dlwillson: B G1 Dlwillson\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) dlwillson: T B1 R1 Dlwillson\n\n14) SilentTitan: Build B1 Silenttitan\n\n15) dlwillson: B B2 Dingo\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B1 Silenttitan Y3 Sol\nDiscover B1 Silenttitan Y3 Sole\n\n17) dlwillson: T B2 Y2 Dingo\n\n18) SilentTitan: Build G1 Silenttitan\n\n19) dlwillson: B Y1 Dingo\n\n20) SilentTitan: Build G2 Silenttitan\n\n21) dlwillson: T Y2 R2 Dingo\n\n22) SilentTitan: Trade G2 B2 Silenttitan\n\n23) dlwillson: B B3 Dingo\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Sol\nBuild B3 Silenttitan\nBuild G2 Silenttitan\n\n25) dlwillson: D B2 Dingo G3 Lab\n\n26) SilentTitan: Trade B2 Y2 Silenttitan\n\n27) dlwillson: B B2 Dingo\n\n28) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Sol Dingo\nMove B1 Sole Dingo\nCatastrophe Dingo Blue\n\n29) dlwillson: Trade B2 R2 Lab\n\n30) SilentTitan: Trade B3 R3 Sol\n\n31) dlwillson: B R1 Dingo\n\n32) SilentTitan: Discover G2 Silenttitan R3 Sole\n\n33) dlwillson: S G3 Dlwillson\nB R1 Dingo\nB R3 Dlwillson\nB G2 Dlwillson\n\n34) SilentTitan: Trade B3 Y3 Silenttitan\n\n35) dlwillson: S G2 Dlwillson\nB Y1 Dingo\nB Y2 Dingo\n\n36) SilentTitan: Build G2 Silenttitan\n\n37) dlwillson: T R3 G3 Dlwillson\n\n38) SilentTitan: Discover G2 Silenttitan R3 Soul\n\n39) dlwillson: D Y1 Dingo B3 Hound\n\n40) SilentTitan: Trade Y3 G3 Silenttitan\n\n41) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB Y2 Hound\n\n42) SilentTitan: Build Y2 Silenttitan\n\n43) dlwillson: M R1 Dingo Hound\n\n44) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Sole Dingo\nMove G2 Dingo Dlwillson\nCatastrophe Dlwillson Green\n\n45) dlwillson: Build R3 Lab\n\n46) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover R3 Sol Y1 Race\n\n47) dlwillson: Sacrifice Y2 Dingo\nMove R3 Lab Race\nMove R3 Race Dlwillson\n\n48) SilentTitan: Move R3 Race Hound\n\tSilentTitan: That was weird.... not sure how I didn&#39;t see that the first time.   Also, still not entirely convinced that was the best move.... \n\n49) dlwillson: S Y2 Hound\nM R1 Dingo Hound\nM R2 Dingo Hound\nC Hound R\n\n50) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Soul\nBuild G2 Soul\nBuild G2 Silenttitan\n\n51) dlwillson: Discover Y1 Dingo G3 Frog\n\n52) SilentTitan: Trade G2 Y2 Silenttitan\n\n53) dlwillson: T R3 G3 Dlwillson\n\n54) SilentTitan: Build Y1 Silenttitan\n\n55) dlwillson: B G1 Dlwillson\n\n56) SilentTitan: Trade Y1 B1 Silenttitan\n\n57) dlwillson: Discover G1 Dlwillson Y1 Nugget\n\n58) SilentTitan: Sacrifice B1 Silenttitan\nTrade G2 B2 Soul\n\n59) dlwillson: B G2 Dlwillson\n\n60) SilentTitan: Build Y2 Silenttitan\n\n61) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Nugget\nBuild G3 Dlwillson\nBuild Y2 Hound\n\n62) SilentTitan: Move Y2 Silenttitan Frog\n\n63) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y3 Frog\nB Y3 Hound\n\n\tSilentTitan: good game\n\tdlwillson: Thanks. Good game you, too!\n\tSilentTitan: We need a chess clock.\r\n\n\tdlwillson: LOL!\n\nHomeworlds Online (SDG# 21474)\nVariants: &quot;Unrated&quot;\nStarted: 2012.2.4, Ended: 2012.5.21\nParticipants: OnePageWars (S), lorgar (W), agentofchaos (N), dlwillson (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) dlwillson: H B2 Y1 G3\n\n3) OnePageWars: Homeworld G2 Y3 B3\n\tdlwillson: What are the win conditions?\n\n4) lorgar: Homeworld B1 Y3 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) dlwillson: Build G1 Dlwillson\n\tdlwillson: Errr... How does one win in 4-way on SDG?\n\n7) OnePageWars: Build B1 Onepagewars\n\tagentofchaos: The default win condition is last man standing. There&#39;s a &quot;sinister&quot; variant where you win by eliminating the person to your left, but if I recall correctly this game uses the default conditions. \n\n8) lorgar: Build G1 Lorgar\n\n9) agentofchaos: Trade G1 B1 Agentofchaos\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) OnePageWars: Build B2 Onepagewars\n\n12) lorgar: Trade G3 B3 Lorgar\n\n13) agentofchaos: B B2 Agentofchaos\n\n14) dlwillson: D B1 Dlwillson G3 Jungle\n\n15) OnePageWars: Build B2 Onepagewars\n\n16) lorgar: Build B2 Lorgar\nCatastrophe Onepagewars Blue\n\n17) agentofchaos: Trade B2 Y2 Agentofchaos\n\n18) dlwillson: B G1 Dlwillson\n\tdlwillson: WTF?\n\n19) lorgar: Discover B2 Lorgar G2 Mnar\n\n20) agentofchaos: Move Y2 Agentofchaos Jungle\n\n21) dlwillson: T G1 R1 Dlwillson\n\n22) lorgar: Trade G1 R1 Lorgar\n\n23) agentofchaos: Trade B1 R1 Agentofchaos\n\n24) dlwillson: B B1 Jungle\n\n25) lorgar: Trade B3 G3 Lorgar\n\n26) agentofchaos: Build R1 Agentofchaos\n\n27) dlwillson: T B1 Y1 Jungle\n\n28) lorgar: Build B1 Mnar\n\n29) agentofchaos: Trade R1 Y1 Agentofchaos\n\n30) dlwillson: B G1 Dlwillson\n\n31) lorgar: Trade B2 R2 Mnar\n\n32) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1E Jungle\n\n33) dlwillson: B B1 Jungle\n\n34) lorgar: Build B2 Mnar\n\n35) agentofchaos: Build Y1 Agentofchaos\n\n36) dlwillson: B B2 Jungle\n\n37) lorgar: Trade B1 Y1 Mnar\n\n38) agentofchaos: Trade Y1 B1 Agentofchaos\n\n39) dlwillson: Trade B1 R1 Jungle\n\n40) lorgar: Build B1 Mnar\n\n41) agentofchaos: Sacrifice Y1 Jungle\nDiscover Y2 Jungle R2 Kakrazoon\n\n42) dlwillson: Trade B2 Y2 Jungle\n\n43) lorgar: Discover B2 Mnar G3 Mhor\n\tdlwillson: Chicken!\n\n44) agentofchaos: Build G1 Agentofchaos\n\n45) dlwillson: B B2 Jungle\n\n46) lorgar: Build B2 Mhor\n\n47) agentofchaos: Trade G1 R1 Agentofchaos\n\n48) dlwillson: D B1 Jungle G2 Forest\n\n49) lorgar: Sacrifice Y1 Mnar\nMove B2 Mhor Forest\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) dlwillson: B B2 Forest\n\n52) lorgar: Sacrifice R2 Mnar\nAttack B2E Forest\nAttack B1E Forest\n\n53) agentofchaos: Discover B1 Agentofchaos Y3 Quasmar\n\n54) dlwillson: B B3 Jungle\n\n55) lorgar: Build B3 Mnar\n\n56) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B3 Quasmar\n\n57) dlwillson: Sacrifice Y2 Jungle\nMove B2 Jungle Forest\nDiscover G1 Dlwillson B3 Sky\nCatastrophe Forest B\n\n58) lorgar: Trade B1 R1 Mnar\n\n59) agentofchaos: Build R2 Agentofchaos\n\n60) dlwillson: Build R2 Dlwillson\n\n61) lorgar: Build B1 Mhor\n\n62) agentofchaos: Move R1 Agentofchaos Quasmar\n\n63) dlwillson: M R2 Dlwillson Sky\n\n64) lorgar: Trade B2 R2 Mhor\n\n65) agentofchaos: Build R3 Agentofchaos\n\n66) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB R3 Jungle\nB R3 Sky\n\n67) lorgar: Build R3 Mnar\n\n68) agentofchaos: Trade B3 G3 Quasmar\n\n69) dlwillson: Sacrifice B3 Jungle\nTrade R3 Y3 Jungle\nTrade R3 Y3 Sky\nTrade R3 Y3 Dlwillson\n\n70) lorgar: Trade R1 Y1 Mnar\n\n71) agentofchaos: Sacrifice Y2 Kakrazoon\nMove R3 Agentofchaos Mhor\nMove R2 Agentofchaos Quasmar\n\n72) dlwillson: B G1 Sky\n\n73) lorgar: Build R1 Mhor\n\n74) agentofchaos: Trade R1 B1 Quasmar\n\n75) dlwillson: M G1 Sky Dlwillson\n\n76) lorgar: Build R1 Mhor Catastrophe Mhor Red\n\n77) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R3 Mhor Y2 Escapod\n\n78) dlwillson: Discover R1 Jungle G2 Field\n\n79) lorgar: Trade R2 Y2 Mhor\n\n80) agentofchaos: Build G1 Agentofchaos\n\n81) dlwillson: Move Y3 Jungle Field\n\n82) lorgar: Build R2 Mnar\n\n83) agentofchaos: Move B1 Quasmar Escapod\n\n84) dlwillson: T Y3 G3 Dlwillson\n\n85) lorgar: Build B2 Mhor\n\n86) agentofchaos: Build B2 Quasmar\n\n87) dlwillson: B Y1 Sky\n\n88) lorgar: Build B2 Mnar\n\n89) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B2 Escapod\n\n90) dlwillson: Trade Y3 B3 Sky\n\n91) lorgar: Trade B2 G2 Mhor\n\n92) agentofchaos: Trade B2 Y2 Escapod\n\n93) dlwillson: D B3 Sky G2 Forest\n\n94) lorgar: Trade B2 Y2 Mnar\n\n95) agentofchaos: Move R3 Escapod Sky\n\n96) dlwillson: S G3 Dlwillson\nB R2 Sky\nB R3 Sky\nB R3 Dlwillson\nC Sky R\n\n97) lorgar: Sacrifice Y2 Mnar\nMove R1 Mhor Dlwillson\nMove R1 Mhor Dlwillson\nCatastrophe Dlwillson Red\n\n98) agentofchaos: Build G1 Agentofchaos\n\n99) dlwillson: Sacrifice Y3 Field\nMove B3 Forest Sky\nMove B3 Sky Dlwillson\nMove Y1 Sky Field\n\n\n100) lorgar: Build B2 Mhor\n\n101) agentofchaos: Trade G1 Y1 Agentofchaos\n\n102) dlwillson: T B3 R3 Dlwillson\n\n103) lorgar: Sacrifice Y2 Mhor\nMove B1 Mhor Dlwillson\nMove B2 Mhor Dlwillson\n\n104) agentofchaos: Build G1 Agentofchaos\n\n105) dlwillson: A B2W Dlwillson\n\n106) lorgar: Move R2 Mnar Sky\n\n107) agentofchaos: Move B1 Quasmar Dlwillson\nCatastrophe Dlwillson B\n\n108) dlwillson: Build G1 Sky\n\n109) lorgar: Attack G1E Sky\n\n110) agentofchaos: Move R2 Quasmar Field\n\n111) dlwillson: Build G1 Sky\n\n112) lorgar: Attack G1E Sky\n\n113) agentofchaos: Attack Y1E Field\n\n114) dlwillson: Build G2 Sky\n\n115) lorgar: Attack G2E Sky\n\n116) agentofchaos: Attack R1E Field\n\n117) dlwillson: Build R1 Dlwillson\nCatastrophe Sky G\n\n118) lorgar: Build B1 Mnar\n\n119) agentofchaos: Build Y1 Field\n\n120) dlwillson: B G1 Dlwillson\n\n121) dlwillson: M R3 Dlwillson Escapod\n\n122) agentofchaos: Sacrifice Y2 Escapod\nMove G3 Quasmar Dlwillson\nMove R2 Field Dlwillson\n\n123) dlwillson: B R1 Dlwillson\n\tdlwillson: What the Heck?\n\n124) agentofchaos: Build R1 Dlwillson\nCatastrophe Dlwillson R\n\n125) dlwillson: M R3 Escapod Dlwillson\n\tagentofchaos: Looks like I missed a turn for some reason\n\tdlwillson: Why did Lorgar resign?\n\n126) agentofchaos: Sacrifice R1 Field\nAttack R3E Dlwillson\n\tagentofchaos: He sent a message in another game that he doesn&#39;t have time to play this week due to personal commitments. \n\n127) dlwillson: Discover G1 Dlwillson B3 Frobnitz\n\n128) agentofchaos: Attack G1E Dlwillson\n\n\tagentofchaos: Thanks for the game \n\nHomeworlds Online (SDG# 21603)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.4, Ended: 2012.2.28\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld R2 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n14) agentofchaos: Discover R2 Agentofchaos Y1 Freedonia\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Silenttitan\nBuild R3 Sol\nBuild Y2 Silenttitan\n\n16) agentofchaos: Build Y2 Agentofchaos\n\n17) SilentTitan: Trade R3 G3 Silenttitan\n\n18) agentofchaos: Trade Y1 G1 Agentofchaos\n\n19) SilentTitan: Sacrifice Y1 Silenttitan\nMove R3 Sol Freedonia\n\n20) agentofchaos: Discover R2 Freedonia Y3 A-jeroth\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Sol\nBuild R3 Freedonia\nBuild Y1 Silenttitan\n\n22) agentofchaos: Move R1 Agentofchaos Freedonia\n\n23) SilentTitan: Move R3 Freedonia A-jeroth\n\n24) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R2 A-jeroth Silenttitan\nDiscover R1 Freedonia Y3 Dredloth\n\n25) SilentTitan: Attack R2 Silenttitan South\n\n26) agentofchaos: Move R1 Dredloth Silenttitan\nCatastrophe Silenttitan R\n\n27) SilentTitan: Trade R3 G3 Sol\n\n28) agentofchaos: Trade G1 Y1 Agentofchaos\n\n29) SilentTitan: Trade R2 Y2 Sol\n\n30) agentofchaos: Build Y2 Agentofchaos\n\n31) SilentTitan: Build Y3 Sol\n\n32) agentofchaos: Build G1 Agentofchaos\n\n33) SilentTitan: Sacrifice Y3 Sol\nMove G3 Sol Freedonia\nMove G3 Freedonia Agentofchaos\nMove R3 Freedonia Agentofchaos\n\n34) agentofchaos: Attack R3 Agentofchaos\n\n35) SilentTitan: Sacrifice R3 A-jeroth\nAttack G3 Agentofchaos South\nAttack R3 Agentofchaos South\nAttack G1 Agentofchaos South\n\n\tagentofchaos: Very well done\n\tSilentTitan: Thank you for the game\n\nHomeworlds Online (SDG# 21655)\nStarted: 2012.2.7, Ended: 2012.2.14\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) lorgar: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) lorgar: Build G1 Lorgar\n\n7) ts52: Build Y2 Ts52\n\n8) lorgar: Discover G1 Lorgar B2 Aram\n\n9) ts52: Discover Y2 Ts52 G3 Kermit\n\n10) lorgar: Build G1 Lorgar\n\n11) ts52: Build G2 Ts52\n\n12) lorgar: Build G2 Aram\n\n13) ts52: Discover G2 Ts52 Y3 Bigbird\n\n14) lorgar: Trade G2 Y2 Aram\n\n15) ts52: Sacrifice Y2 Kermit\nDiscover G2 Bigbird Y2 Doom\nMove G2 Doom Lorgar\nCatastrophe Lorgar Green\n\tts52: That was too quick. Another re-match?\n\n\nHomeworlds Online (SDG# 21669)\nVariants: &quot;Unrated&quot;\nStarted: 2012.2.11, Ended: 2012.2.26\nParticipants: bertilious (S), slothbear (N), emusan (E)\nWinner: emusan\n\n1) slothbear: Homeworld Y3 B1 G3\n\n2) emusan: Homeworld B1 G2 Y3\n\tslothbear: Keep track of any comments you don&#39;t want to reveal as we play. Like wtf did he build 1 green when he could have sacrificed one turquoise for 29 ships?  whatever.\n\n3) bertilious: Homeworld G3 B2 Y3\n\n4) slothbear: Build G1 Slothbear\n\n5) emusan: Build Y1 Emusan\n\n6) bertilious: Build Y1 Bertilious\n\n7) slothbear: Discover G1 Slothbear B2 Alnitak\n\n8) emusan: Trade Y1 B1 Emusan\n\n9) bertilious: Trade Y1 R1 Bertilious\n\n10) slothbear: Build G1 Alnitak\n\n11) emusan: Build Y1 Emusan\n\n12) bertilious: Build Y1 Bertilious\n\n13) slothbear: Build G1 Slothbear\n\n14) emusan: B Y1 Emusan\n\n15) bertilious: Build Y1 Bertilious\n\n16) slothbear: Trade G1 R1 Slothbear\n\n17) emusan: D B1 Emusan R3 Secret\n\n18) bertilious: Discover Y1 Bertilious R1 Bertland\n\tslothbear: where did all the propulsion go?\n\temusan: propulsion?\n\n19) slothbear: Build G1 Slothbear\n\temusan: oh lol sorry, got sidetracked by physics\n\n20) emusan: M Y1 Emusan Secret\n\n21) bertilious: Trade Y1 G1 Bertilious\n\n22) slothbear: Trade G1 Y1 Alnitak\n\n23) emusan: B Y2 Emusan\n\n24) bertilious: Build Y2 Bertilious\n\n25) slothbear: Discover Y1 Alnitak G3 Verda\n\n26) emusan: M Y2 Emusan Secret\n\n27) bertilious: Discover Y1 Bertland G3 Bertlandia\n\n28) slothbear: Build Y2 Verda\n\n29) emusan: T Y1 G1 Secret\n\n30) bertilious: Build G2 Bertilious\n\n31) slothbear: Move Y2 Verda Alnitak\n\n32) emusan: B G2 Secret\n\n33) bertilious: Discover Y2 Bertilious R1 Bertland\n\n34) slothbear: Sacrifice Y2 Alnitak\nMove G1 Alnitak Bertland\nMove G1 Bertland Bertilious\nCatastrophe Bertilious Green\n\n35) emusan: D G1 Secret Y2 Lol\n\n36) bertilious: Trade R1 B1 Bertilious\n\n37) slothbear: Move R1 Slothbear Lol\n\tslothbear: sorry\n\n38) emusan: M G1 Lol Secret\n\tslothbear: Propulsion: from two Latin words: pro meaning forwards and pellere meaning to drive. You&#39;d think they&#39;d cover that in physics.\n\tbertilious: what happened to my g3 in bertilious?\n\n39) bertilious: Move B1 Bertilious Bertlandia\n\n40) slothbear: Move R1 Lol Bertlandia\n\tslothbear: Ghosts of your g1 and g2 ships shout: What happened to Us? Don&#39;t mind us, we&#39;re small and insignificant.\n\tslothbear: bertilious had 3 green units. I (uhm, we) conspired to add a 4th green unit to bertilious.  Since there were 4 units of one color, I had the opportunity, the opportunity, the duty (some might say) to declare a catastrophe, destroying all Green in the system. I tried not to, I swear.  But Andy said, &quot;if he exposes the Queen, take her.&quot; Even if it his first game?, I asked, looking for any way to not attack you. &quot;Yes.&quot;  That was all. &quot;Yes&quot;\n\tslothbear: or, sorry\n\n41) emusan: B Y1 Secret\n\tslothbear: uhm. careful re: what I&#39;m encouraging you to do. just saying.\n\tslothbear: &quot;remember the bertilious.&quot;\n\n42) bertilious: Build B2 Bertlandia\n\n43) slothbear: Build Y2 Verda\n\n44) emusan: T Y1 R1 Emusan\n\n45) bertilious: Move B2 Bertlandia Bertilious\n\tslothbear: Good Bye lol.\n\n46) slothbear: Attack Y1S Bertlandia\n\temusan: it shall return!\n\n47) emusan: B B2 Secret\n\n48) bertilious: Trade Y3 R3 Bertilious\n\n49) slothbear: Trade G3 R3 Slothbear\n\n50) emusan: M B2 Secret Emusan\n\n51) bertilious: Build B2 Bertlandia\n\n52) slothbear: Discover Y1 Bertlandia G1 Outback\n\n53) emusan: B B3 Secret\n\n54) bertilious: Trade R3 Y3 Bertilious\n\n55) slothbear: Build Y1 Outback\n\temusan: lol I haven&#39;t used twitter in ages...\n\tslothbear: The view from my chair: http://flic.kr/p/buL82F\n\tslothbear: The important thing is that you staked out your name. Slothbear2 was mighty ticked when he found out I&#39;d already taken the name. Five years earlier.\n\n56) emusan: Build B3 Emusan\n\temusan: ach... well I only have enough pieces for a two player game... gonna have to get more! lol\n\tslothbear: me neither... but I have some Xeno colors filling in for now.\n\n57) bertilious: Move Y3 Bertilious Bertlandia\n\n58) slothbear: Sacrifice Y1 Outback\nMove R1 Bertlandia Outback\n\n59) emusan: M B3 Emusan Secret\n\n60) bertilious: Build Y1 Bertlandia\n\n61) slothbear: Build R1 Outback\n\n62) emusan: Sacrifice B1 Secret\nTrade B3 R3 Secret\n\n63) bertilious: Discover Y1 Bertlandia B1 Berttown\n\n64) slothbear: Sacrifice Y2 Verda\nMove R1 Outback Secret\nMove R1 Outback Secret\nCatastrophe Secret Red\n\tslothbear: As long as you two pass for the next nine moves, I have something really nice planned.\n\n65) emusan: B R1 Emusan\n\tslothbear: aw. Aw. AW!\n\n66) bertilious: Trade B1 R1 Bertlandia\n\temusan: lol almost lost my homeworld\n\tslothbear: nah. we&#39;re nicer than that. \n\tslothbear: there will be more games after this one, np if your hw falls. \n\temusan: still though, I don&#39;t plan on losing this one quite yet\n\tslothbear: &quot;good intentions&quot;\n\n67) slothbear: Build G1 Slothbear\n\n68) emusan: T R1 Y1 Emusan\n\n69) bertilious: Move R1 Bertlandia Bertland\n\n70) slothbear: Trade G1 B1 Slothbear\n\tslothbear: sorry\n\n71) emusan: T B2 R2 Emusan\n\tslothbear: If you ever need to see previous states, there is an Archive. It&#39;s not perfect, but... http://superdupergames.org/main.html?page=archive_play&amp;gid=21669\n\temusan: nooooooooooooooo... need to start over lol\n\tslothbear: there are so many competing pressures in this game. quite the marvel.\n\tslothbear: and the secret project was researching supernovae?\n\n72) bertilious: Build B2 Bertlandia\n\tbertilious: super sour\n\n73) slothbear: Discover B1 Slothbear Y2 Mrsstewart\n\n74) emusan: M R2 Emusan Verda\n\n75) bertilious: Move Y3 Bertlandia Bertilious\n\n76) slothbear: Sacrifice Y1 Verda\nMove B1 Mrsstewart Outback\n\n77) emusan: T Y3 B3 Emusan\n\n78) bertilious: Trade B2 R2 Bertlandia\n\n79) slothbear: Discover B1 Outback G3 Ruby\n\n80) emusan: M B3 Emusan Verda\n\n81) bertilious: Build B2 Bertlandia\n\n82) slothbear: Build B3 Ruby\n\n83) emusan: B B3 Verda\n\temusan: noooo almost got mah move in!\n\n84) bertilious: Trade B2 G2 Bertlandia\n\n85) slothbear: Trade B3 Y3 Ruby\n\tslothbear: jjjeee, you had 30 seconds. wake up.\n\n86) emusan: T B3 Y3 Verda\n\n87) bertilious: Build B2 Bertlandia\n\n88) slothbear: Build B3 Ruby\n\n89) emusan: T B3 R3 Verda\n\n90) bertilious: Trade B2 Y2 Bertlandia\n\n91) slothbear: Trade B3 R3 Ruby\n\n92) emusan: M R3 Verda Emusan\n\n93) bertilious: Build B2 Bertlandia\n\n94) slothbear: Build R1 Ruby\n\n95) emusan: B Y1 Emusan\n\n96) bertilious: Move R2 Bertlandia Bertilious\n\tslothbear: &quot;I&#39;m picking up a lot of blueshift, Cap&#39;n!&quot;\n\n97) slothbear: Discover Y1 Outback R3 Rubytues\n\n98) emusan: B R2 Verda\n\n99) bertilious: Trade B2 G2 Bertlandia\n\n100) slothbear: Build B2 Ruby\n\n101) emusan: B Y2 Verda\n\n102) bertilious: Build B3 Bertlandia\n\n103) slothbear: Discover B2 Ruby Y2 Plugh\n\n104) emusan: M R2 Verda Plugh\n\n105) bertilious: Move R2 Bertilious Slothbear\n\n106) slothbear: Attack R2S Slothbear\n\n107) emusan: A B2N Plugh\n\n108) bertilious: Move Y2 Bertlandia Bertilious\n\n109) slothbear: Build B3 Ruby\n\n110) emusan: T B2 R2 Plugh\n\n111) bertilious: Trade B2 G2 Bertilious Bertilious\n\n112) slothbear: Sacrifice B3 Ruby\nTrade Y1 G1 Rubytues\nTrade R1 G1 Ruby\nTrade R3 G3 Ruby\n\n113) emusan: S Y2 Verda\nM R2 Plugh Slothbear\nM R2 Plugh Slothbear\nC Slothbear Red\n\n114) bertilious: Trade B2 R2 Bertlandia\n\temusan: lol it&#39;s not case sensitive apparently\n\tslothbear: nah! and since all the commands are unique, you can abbreviate them. d for discover. gotta type whole system names though, so much typing.\n\n115) slothbear: Sacrifice Y3 Ruby\nMove G3 Ruby Emusan\nMove G1 Ruby Emusan\nMove G1 Rubytues Emusan\nCatastrophe Emusan Green\n\temusan: yeah, I&#39;ve been using M for move, etc. for awhile now lol\n\tslothbear: yawn. time to go to dinner. see you tomorrow.\n\temusan: yawn? It&#39;s 3:17... shouldn&#39;t be sleepy by now lol...\n\tslothbear: nope. boredom re: my neighbor&#39;s aggressive moves.\n\temusan: aww... well I&#39;m sure you&#39;ll figure something out...\n\n116) emusan: M R3 Emusan Bertilious\n\n117) bertilious: Trade Y3 R3 Bertilious\n\n118) slothbear: Build B2 Ruby\n\n119) emusan: A R3S Bertilious\n\n120) bertilious: Build R1 Bertlandia\n\n121) slothbear: Build B2 Ruby\n\tslothbear: Turn 60: http://flic.kr/p/byhohp\r\nI&#39;m looking for ways to better visualize the game. My setup often has errors, ooops, how did that ship get *there*? For now, you should build paper pyramids, perhaps that will distract you.\n\tslothbear: TY uncle Eeyore: http://www.suberic.net/~dmm/games/oihp.html\n\tslothbear: wait. Eeyore is a hero, but he only took the pic. Ty uncle Denis \n\tslothbear: our bank is anemic. needs a transfusion. who will be first to donate?\n\n122) emusan: Sacrifice Y1 Emusan\nM R3 Bertilious Slothbear\n\n123) bertilious: Build B2 Bertlandia\n\tslothbear: do you understand the reference to PLUGH?\n\temusan: related to XYZZY I believe... not entirely sure about any more than that though...\n\tslothbear: yup\n\n124) slothbear: Build G1 Slothbear\n\n125) emusan: A G1N Slothbear\n\temusan: what goes around comes around?\n\tslothbear: I&#39;m *so* glad I turned on the UNDO feature for this game. kinda.\n\temusan: it&#39;s helped you in the past too\n\temusan: I&#39;m sure there will be more games too :).\n\tslothbear: helped me rename systems.  or maybe a little more.  a bit.\n\tslothbear: more games?  goody!\n\temusan: and spring break is in two weeks for both steve and me so maybe we could do one in person lol(should have enough pieces between the two of us).\n\tslothbear: why didn&#39;t I turn on Sinister? cuz I&#39;m soft.\n\tslothbear: I&#39;d love to do one (or more) in person. More than a turn a day?  wow.\n\n126) bertilious: Trade B2 Y2 Bertlandia\n\n127) slothbear: Build G1 Slothbear\n\n128) emusan: S Y1 Emusan\nM R3 Bertilious Slothbear\n\tslothbear: sorry\n\n129) bertilious: Move R1 Bertlandia Bertland\n\temusan: this game is going very bad very fast lol\n\tslothbear: I don&#39;t know what the average length is, but I&#39;m pretty sure we&#39;re above it.\n\n130) slothbear: Trade G1 Y1 Slothbear\n\n131) emusan: S R3 Slothbear\nA Y1N Slothbear\nA G1N Slothbear\nPass\n\temusan: lol undo??\n\n132) emusan: S Y3 Verda\nM R3 Slothbear Bertilious\nM R2 Verda Bertilious\nM G1 Slothbear Bertilious\n\tslothbear: slight shift. no prob. nothing to see. move along.\n\n133) bertilious: Build R2 Bertlandia\n\n134) emusan: S R2 Bertilious\nA Y2S Bertilious\nA G2S Bertilious\n\n\tslothbear: ? Does elimination award an extra turn? at least on my readout, it looks like emusan got two turns in a row, sacrifice R3 in slothbear, then sacrifice Y3 in Verda.\n\tslothbear: In any case.... Well done, emusan.\n\temusan: yeah, I was kind of wondering about that, I figured it was just a rule I missed or something...\n\nHomeworlds Online (SDG# 21670)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.12, Ended: 2012.3.19\nParticipants: radio414 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) radio414: Build G1 Radio414\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) radio414: Build G1 Radio414\n\n7) dlwillson: B B1 Dlwillson\n\tdlwillson: This is awesome; I love a fast game! Thank you. :-)\n\n8) radio414: Trade G3 B3 Radio414\n\tdlwillson: Have we played before?\n\tradio414: I have no Idea\n\n9) dlwillson: Build G1 Dlwillson\n\n10) radio414: Build B2 Radio414\n\n11) dlwillson: Trade G3 Y3 Dlwillson\n\n12) radio414: Trade B2 Y2 Radio414\n\n13) dlwillson: Discover B1 Dlwillson G2 Frog\n\n14) radio414: Build G2 Radio414\n\n15) dlwillson: Discover B1 Dlwillson G2 Toad\n\n16) radio414: Discover G1 Radio414 B3 Snail\n\n17) dlwillson: B G3 Dlwillson\n\n18) radio414: Build G3 Snail\n\n19) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB B2 Toad\nB B2 Frog\n\n20) radio414: Sacrifice G3 Snail\nBuild G3 Snail\nBuild G3 Snail\nBuild Y1 Radio414\n\n21) dlwillson: S Y3 Dlwillson\nM G1 Dlwillson Frog\nMove G1 Frog Snail\nDiscover B1 Frog Y3 Bee\nC Snail G\n\n22) radio414: Discover B3 Radio414 G3 Grue\n\n23) dlwillson: B B3 Frog\n\n24) radio414: Build B3 Grue\n\n25) dlwillson: T B2 Y2 Frog\n\n26) radio414: Trade B3 R3 Grue\n\n27) dlwillson: T B2 R2 Toad\n\n28) radio414: Sacrifice Y1 Radio414\nMove R3 Grue Radio414\n\n29) dlwillson: Build G1 Dlwillson\n\n30) radio414: Build B2 Grue\n\n31) dlwillson: Sacrifice G3 Dlwillson\nB G1 Dlwillson\nB G3 Dlwillson\nB B2 Bee\n\n32) radio414: Move G1 Radio414 Grue\n\n33) dlwillson: S G1 Dlwillson\nB B3 Toad\n\n34) radio414: Build G1 Radio414\n\n35) dlwillson: D G1 Dlwillson Y2 Goldilocks\n\n36) radio414: Discover Y2 Radio414 G3 Papabear\n\n37) dlwillson: Trade B3 Y3 Toad\n\tdlwillson: Nice knock-down! Why do I never see those coming? :-)\n\n38) radio414: Build Y1 Papabear\n\tdlwillson: I think it would have served you better to knock it down a g2, just in case you get a chance to cash in later. Also would have left you with yellow at home, which you&#39;ll want when I start pushing blues at you.\n\n39) dlwillson: S Y2 Frog\nM B1 Bee Radio414\nM B2 Bee Radio414\n\n40) radio414: Attack B2 Radio414\n\n41) dlwillson: Sacrifice G1 Goldilocks\nBuild B3 Radio414\nCatastrophe Radio414 B\n\n42) radio414: Discover Y1 Papabear B2 Desparado\n\n43) dlwillson: B R1 Toad\n\n\nHomeworlds Online (SDG# 21568)\nStarted: 2012.2.13, Ended: 2012.2.29\nParticipants: ludiki (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) ludiki: Homeworld G2 Y1 B3\n\n3) lorgar: Build G1 Lorgar\n\n4) ludiki: Build B1 Ludiki\n\n5) lorgar: Trade G1 Y1 Lorgar\n\tludiki: Hi Lorgar! I&#39;m new to SDG and, though it&#39;s been months I wanted to play Homeworlds, it&#39;s my first time&#133; I hope I won&#39;t make to many newbie mistakes.\n\n6) ludiki: Trade B1 Y1 Ludiki\n\n7) lorgar: Discover Y1 Lorgar G2 Mnar\n\n8) ludiki: Discover Y1 Ludiki B3 Tanga\n\n9) lorgar: Build G1 Lorgar\n\n10) ludiki: Build B1 Ludiki\n\n11) lorgar: Trade G1 R1 Lorgar\n\n12) ludiki: Move B1 Ludiki Tanga\n\n13) lorgar: Build G1 Lorgar\n\n14) ludiki: Trade B1 G1 Tanga\n\n15) lorgar: Build R1 Lorgar\n\n16) ludiki: Build Y2 Tanga\n\n17) lorgar: Build Y2 Mnar\n\n18) ludiki: Build B1 Ludiki\n\n19) lorgar: Move Y2 Mnar Tanga\n\n20) ludiki: Trade Y2 R2 Tanga\n\n21) lorgar: Sacrifice R1 Lorgar\nAttack R2S Tanga\n\n22) ludiki: Trade B3 R3 Ludiki\n\n23) lorgar: Attack Y1S Tanga\n\n24) ludiki: Build G1 Tanga\n\tludiki: what for a newb&#39;mistake have i done?!\n\n25) lorgar: Attack G1S Tanga\n\tlorgar: nobody is perfect ;)\n\n26) ludiki: Trade G1 B1 Tanga\n\n27) lorgar: Attack B1S Tanga\n\n28) ludiki: Build B2 Ludiki\n\n29) lorgar: Sacrifice B1 Tanga\nTrade Y1 B1 Mnar\n\n30) ludiki: Discover B2 Ludiki G3 Simba\n\n31) lorgar: Build Y1 Tanga\n\n32) ludiki: Build B2 Simba\n\n33) lorgar: Sacrifice Y2 Tanga\nMove Y1 Tanga Ludiki\nMove Y1 Tanga Ludiki\n\n34) ludiki: Trade B2 Y2 Simba\n\n35) lorgar: Build G1 Tanga\n\n36) ludiki: Build Y2 Simba\n\n37) lorgar: Build Y2 Ludiki\nCatastrophe Ludiki Yellow\n\n38) ludiki: Trade Y2 R2 Simba\n\n39) lorgar: Trade G3 Y3 Lorgar\n\n40) ludiki: Move R2 Simba Mnar\n\n41) lorgar: Sacrifice Y3 Lorgar\nMove G1 Lorgar Ludiki\nMove G1 Tanga Ludiki\nMove G1 Tanga Ludiki\nCatastrophe Ludiki Green\n\n\tludiki: but it&#39;s too late, isn&#39;t it? well done\n\tlorgar: rematch?\n\nHomeworlds Online (SDG# 21677)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.14, Ended: 2012.4.23\nParticipants: TwoShort (S), SilentTitan (N)\nWinner: TwoShort\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: I am back.  Hopefully I will be able to actually finish this game\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TwoShort: Build G1 Twoshort\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) TwoShort: Build G1 Twoshort\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) TwoShort: Build B2 Twoshort\n\n13) SilentTitan: Discover B1 Silenttitan Y3 Sol\n\n14) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) TwoShort: Build B3 Twoshort\n\n17) SilentTitan: Build B3 Silenttitan\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Yolonda\nBuild Y1 Twoshort\nBuild Y2 Twoshort\n\n19) SilentTitan: Discover B1 Sol Y2 Soul\n\n20) TwoShort: Sacrifice Y2 Twoshort\nDiscover B1 Yolonda Y3 Yoyodyne\nMove B2 Twoshort Soul\n\n21) SilentTitan: Trade B3 R3 Silenttitan\n\n22) TwoShort: Trade B2 R2 Soul\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Soul\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n24) TwoShort: Attack B2 Soul\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Silenttitan Yoyodyne\nMove R3 Yoyodyne Soul\n\n26) TwoShort: Sacrifice B3 Yolonda\nTrade B2 R2 Soul\nTrade B3 G3 Twoshort\nTrade Y1 G1 Twoshort\n\n27) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y1 R1 Silenttitan\nTrade R3 G3 Soul\n\n28) TwoShort: Attack B1 Soul\n\n29) SilentTitan: Trade Y3 R3 Silenttitan\n\n30) TwoShort: Move R2 Soul Yoyodyne\n\tSilentTitan: oh good... learned something new.  \n\n31) SilentTitan: Sacrifice R1 Silenttitan\nAttack R2 Soul South\n\n32) TwoShort: Discover B1 Soul Y3 Yonder\n\n33) SilentTitan: Move R2 Soul Yonder\n\n34) TwoShort: Discover B1 Yonder R2 Rover\n\n35) SilentTitan: Trade R3 Y3 Silenttitan\n\n36) TwoShort: Sacrifice G1 Twoshort\nBuild B2 Rover\n\n37) SilentTitan: Move G3 Soul Yoyodyne\n\n38) TwoShort: Discover R2 Yoyodyne G2 Grogar\n\n39) SilentTitan: Build G1 Silenttitan\n\n40) TwoShort: Build G1 Twoshort\n\n41) SilentTitan: Build G2 Yoyodyne\n\n42) TwoShort: Discover B1 Yoyodyne G2 Goner\n\n43) SilentTitan: Build G3 Silenttitan\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Goner\nBuild B3 Rover\n\tTwoShort: Excellent game.  I figured I should say that now so I&#39;ll be free to slink away in dejection when you finish me off :)\n\tSilentTitan: well, Thank you.... I of course will believe you are dead when I pry the number one spot from your cold dead hand. \n\tTwoShort: Fair enough, since I&#39;ll certainly keep trying to weasel out until then :)\n\n45) SilentTitan: Trade G3 B3 Silenttitan\n\n46) TwoShort: Trade B2 Y2 Rover\n\n47) SilentTitan: Trade G1 Y1 Silenttitan\n\n48) TwoShort: Move B3 Rover Yonder\n\n49) SilentTitan: Sacrifice G3 Yoyodyne\nBuild G1 Yoyodyne\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n50) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Yonder\nBuild B3 Rover\n\n51) SilentTitan: Trade G3 R3 Silenttitan\n\n52) TwoShort: Sacrifice Y2 Rover\nMove B3 Yonder Silenttitan\nMove B2 Yonder Silenttitan\nCatastrophe Silenttitan Blue\n\n53) SilentTitan: Move Y3 Silenttitan Goner\n\n54) TwoShort: Sacrifice B2 Goner\nTrade B1 Y1 Goner\nTrade B1 R1 Rover\n\n55) SilentTitan: Sacrifice Y3 Goner\nMove G1 Yoyodyne Goner\nMove G1 Goner Twoshort\nDiscover G2 Yoyodyne Y2 Sky\n\n56) TwoShort: Sacrifice B3 Rover\nTrade Y1 R1 Goner\nTrade G3 Y3 Twoshort\nPass\n\n57) SilentTitan: Sacrifice R2 Yonder\nAttack G1 Twoshort South\nAttack Y1 Twoshort South\n\tTwoShort: I kinda feel bad; I try to refrain from commenting on games in progress because I always turn out to be wrong within a few moves.  But I really thought it was hopeless, and I can&#39;t even see where you did anything particularly wrong since.  Sorry if I jinxed you :)\n\n58) TwoShort: Sacrifice Y3 Twoshort\nMove R1 Rover Twoshort\nMove R1 Goner Silenttitan\nMove R2 Grogar Silenttitan\nCatastrophe Silenttitan Red\n\tTwoShort: Dammit, I hate irony.  Now I&#39;m shutting up.\n\n\tTwoShort: Excellent game.  Thank you.\n\tSilentTitan: thank you.\n\nHomeworlds Online (SDG# 21678)\nStarted: 2012.2.15, Ended: 2012.3.16\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld G3 Y2 B3\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build B1 Lorgar\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) lorgar: Build B1 Lorgar\n\n7) ts52: Build G1 Ts52\n\n8) lorgar: Discover B1 Lorgar G1 Melmoth\n\n9) ts52: Build G2 Grover\n\n10) lorgar: Build B2 Melmoth\n\n11) ts52: Trade G2 Y2 Grover\n\n12) lorgar: Trade B2 R2 Melmoth\n\n13) ts52: B G2 Grover\n\n14) lorgar: Trade B3 G3 Lorgar\n\n15) ts52: Trade G2 R2 Grover\n\n16) lorgar: Build B2 Melmoth\n\n17) ts52: Build G2 Grover\n\n18) lorgar: Sacrifice G3 Lorgar\nBuild B2 Melmoth\nBuild B2 Lorgar\nBuild B3 Lorgar\n\n19) ts52: Build G2 Grover\n\n20) lorgar: Trade B1 Y1 Melmoth\n\n21) ts52: Discover G2 Grover R1 Elmo\n\n22) lorgar: Trade B2 R2 Lorgar\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild G3 Grover\n\n24) lorgar: Build R1 Lorgar\n\tlorgar: crap... I deserved it\n\n25) ts52: Trade G3 Y3 Grover\n\n26) lorgar: Trade B1 Y1 Lorgar\n\n27) ts52: Sacrifice G2 Grover\nBuild G2 Elmo\nBuild G3 Grover\n\n28) lorgar: Build Y1 Melmoth\n\n29) ts52: Sacrifice Y3 Grover\nMove G2 Elmo Lorgar\nMove G2 Elmo Lorgar\nMove G2 Elmo Lorgar\nCatastrophe Lorgar Green\n\n30) lorgar: Build Y3 Melmoth\n\n31) ts52: Move Y2 Grover Melmoth\nCatastrophe Melmoth Yellow\n\n32) lorgar: Build B1 Melmoth\n\n33) ts52: Trade G1 Y1 Grover\n\n34) lorgar: Trade R2 Y2 Melmoth\n\n35) ts52: Build G1 Grover\n\n36) lorgar: Sacrifice Y2 Melmoth\nMove B2 Melmoth Grover\nMove B1 Melmoth Grover\n\n37) ts52: Discover G3 Grover B2 Gonzo\n\n38) lorgar: Sacrifice R1 Lorgar\nAttack R2N Grover\n\n39) ts52: Trade Y1 B1 Grover\nCatastrophe Grover Blue\n\n40) lorgar: Build B1 Melmoth\n\n41) ts52: Build G1 Gonzo\n\n42) lorgar: Trade B2 G2 Melmoth\n\n43) ts52: Trade G3 R3 Gonzo\n\n44) lorgar: Build B1 Melmoth\n\n45) ts52: Build G2 Gonzo\n\n46) lorgar: Build G2 Melmoth\n\n47) ts52: Trade G1 Y1 Gonzo\n\n48) lorgar: Trade G2 Y2 Melmoth\n\n49) ts52: Move R3 Gonzo Melmoth\n\n50) lorgar: Trade B1 G1 Melmoth\n\n51) ts52: Attack Y2 Melmoth\n\n52) lorgar: Build G2 Melmoth\nCatastrophe Melmoth Green\n\n53) ts52: Build G1 Gonzo\n\n54) lorgar: Discover Y1 Lorgar G3 Mhor\n\n55) ts52: Trade G2 R2 Gonzo\n\n56) lorgar: Build Y1 Mhor\n\n57) ts52: Move R2 Gonzo Mhor\n\n58) lorgar: Move Y1 Mhor Gonzo\n\n59) ts52: Attack Y1 Mhor\n\n60) lorgar: Trade B3 G3 Lorgar\n\n61) ts52: Build Y2 Gonzo\n\n62) lorgar: Build G1 Lorgar\n\n63) ts52: Trade Y2 R2 Gonzo\n\n64) lorgar: Discover Y1 Gonzo B3 Wall\n\n65) ts52: Sacrifice G3 Ts52\nBuild Y2 Mhor\nBuild Y3 Mhor\nBuild Y3 Gonzo\n\n66) lorgar: Move Y1 Wall Ts52\n\n67) ts52: Sacrifice Y3 Gonzo\nMove Y3 Mhor Lorgar\nMove Y2 Mhor Lorgar\nMove Y1 Mhor Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: you beat me this time...\n\tts52: Yep. Good game though. Thanks!\n\tlorgar: rematch?\n\tts52: Of course!\n\nHomeworlds Online (SDG# 21682)\nStarted: 2012.2.15, Ended: 2012.2.23\nParticipants: lorgar (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) lorgar: Homeworld G1 Y3 B3\n\n3) ajo: Build Y1 Ajo\n\n4) lorgar: Build B1 Lorgar\n\n5) ajo: Build Y1 Ajo\n\n6) lorgar: Build B1 Lorgar\n\n7) ajo: Discover Y1 Ajo B1 Alpha\n\n8) lorgar: Discover B1 Lorgar G2 Mnar\n\n9) ajo: Discover Y1 Alpha B2 Beta\n\n10) lorgar: Build B1 Mnar\n\n11) ajo: Build Y1 Ajo\n\n12) lorgar: Build B2 Mnar\n\n13) ajo: Discover Y1 Ajo G1 Alpha\n\n14) lorgar: Trade B2 Y2 Mnar\n\n15) ajo: Build Y2 Alpha\n\n16) lorgar: Trade B1 R1 Mnar\n\n17) ajo: Trade Y3 G3 Ajo\n\n18) lorgar: Move Y2 Mnar Alpha\n\n19) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y3 Beta\nBuild Y3 Ajo\nCatastrophe Alpha Yellow\n\tajo: Oh -- thank you! ;)\n\n20) lorgar: Trade B1 R1 Lorgar\n\n21) ajo: Trade Y3 G3 Beta\n\n22) lorgar: Build R1 Lorgar\n\n23) ajo: Build G1 Beta\n\n24) lorgar: Build R2 Mnar\n\n25) ajo: Trade G3 R3 Beta\n\n26) lorgar: Build B1 Mnar\n\n27) ajo: Build R2 Beta\n\n28) lorgar: Trade B1 Y1 Mnar\n\n29) ajo: Trade Y3 G3 Ajo\n\n30) lorgar: Build Y2 Mnar\n\n31) ajo: Build Y2 Beta\n\n32) lorgar: Sacrifice Y2 Mnar\nMove R1 Lorgar Beta\nMove R1 Lorgar Beta\nCatastrophe Beta Red\n\n33) ajo: Move Y1 Beta Lorgar\n\tajo: Okay, it&#39;s clearly past my bedtime. Last move for tonight. :P\n\n34) lorgar: Sacrifice R1 Mnar\nAttack Y1N Lorgar\n\n35) ajo: Sacrifice G3 Ajo\nBuild Y2 Ajo\nBuild Y2 Beta\nBuild Y3 Ajo\n\n36) lorgar: Trade Y1 R1 Lorgar\n\n37) ajo: Trade Y2 R2 Ajo\n\n38) lorgar: Build R1 Mnar\n\tlorgar: It&#39;s very interesting to play with you, I learn a lot :)\n\n39) ajo: Build Y1 Beta\n\n40) lorgar: Build Y2 Mnar\n\n41) ajo: Move Y1 Beta Lorgar\n\n42) lorgar: Sacrifice Y2 Mnar\nDiscover Y1 Mnar G1 Green\nMove Y1 Green Ajo\n\n43) ajo: Attack Y1 Ajo\n\tajo: That seems like a waste...\n\n44) lorgar: Build R1 Lorgar\n\tlorgar: it was XD\r\npanic got the better of me\n\n45) ajo: Build Y2 Lorgar\n\n46) lorgar: Attack Y2N Lorgar\n\n47) ajo: Build Y3 Lorgar\nCatastrophe Lorgar Yellow\n\n48) lorgar: Build B1 Mnar\n\n49) ajo: Discover Y1 Ajo Y1 Gamma\n\n50) lorgar: Trade R2 Y2 Mnar\n\n51) ajo: Build Y3 Beta\n\n52) lorgar: Build Y3 Mnar\n\n53) ajo: Trade Y2 R2 Beta\n\n54) lorgar: Sacrifice Y3 Mnar\nDiscover R1 Lorgar G2 Mors\nDiscover B1 Mnar G3 Mars\nDiscover Y2 Mnar G3 Magratgarlic\n\n55) ajo: Build G1 Beta\n\n56) lorgar: Build B1 Mars\n\tajo: I guess that was a last-ditch effort to try and stop me from getting three green ships? ...It isn&#39;t going to work. :P  You would have been better off working on a blue castastrophe at Beta, or something.\n\n57) ajo: Build G2 Beta\n\n58) lorgar: Pass\n\tajo: Checkmate. :) Good game.\n\n59) ajo: Sacrifice Y3 Beta\nMove G1 Beta Lorgar\nMove G1 Beta Lorgar\nMove G2 Beta Lorgar\nCatastrophe Lorgar Green\n\tlorgar: thanks, rematch?\n\n\nHomeworlds Online (SDG# 21680)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.15, Ended: 2012.3.4\nParticipants: Subhan64 (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\tDanner: Hello again! :)\r\nHave a nice game!\n\n2) Subhan64: Homeworld G1 B3 Y3\n\n3) Danner: Homeworld G1 B2 G3 *\n\tSubhan64: yes, you too, thanks!\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Danner: Build G1 Danner\n\n6) Subhan64: Build Y1 Subhan64\n\n7) Danner: Trade G3 Y3 Danner\n\n8) Subhan64: Discover Y1 Subhan64 G2 Kermit\n\n9) Danner: Build G2 Danner\n\n\nHomeworlds Online (SDG# 21674)\nVariants: &quot;Unrated&quot;\nStarted: 2012.2.20, Ended: 2012.3.17\nParticipants: ludiki (S), anonymousApple (N)\nWinner: ludiki\n\n1) anonymousApple: Homeworld G1 B2 Y3\n\n2) ludiki: Homeworld Y1 G2 B3\n\n3) anonymousApple: Build Y1 Anonymousapple\n\n4) ludiki: Build B1 Ludiki\n\n5) anonymousApple: Trade Y1 G1 Anonymousapple\n\n6) ludiki: Discover B1 Ludiki G3 Cox\n\n7) anonymousApple: Discover G1 Anonymousapple B3 Snooki\n\n8) ludiki: Build B1 Cox\n\n9) anonymousApple: Build G1 Snooki\n\n10) ludiki: Trade B1 R1 Cox\n\n11) anonymousApple: Build G2 Snooki\n\n12) ludiki: Build B1 Ludiki\n\n13) anonymousApple: Build Y1 Anonymousapple\n\n14) ludiki: Trade B3 R3 Ludiki\n\n15) anonymousApple: Sacrifice Y3 Anonymousapple\nMove G1 Snooki Ludiki\nMove G1 Snooki Ludiki\nMove G2 Snooki Ludiki\nCatastrophe Ludiki Green\n\n16) ludiki: Trade B1 Y1 Cox\n\n17) anonymousApple: Trade Y1 R1 Anonymousapple\n\n18) ludiki: Build Y1 Cox\n\n19) anonymousApple: Build R1 Anonymousapple\n\n20) ludiki: Build Y2 Cox\n\n21) anonymousApple: Trade R1 G1 Anonymousapple\n\n22) ludiki: Sacrifice Y2 Cox\nMove R3 Ludiki Cox\nMove R3 Cox Anonymousapple\n\n23) anonymousApple: Build R1 Anonymousapple\n\tanonymousApple: gg\n\n24) ludiki: Build R2 Cox\n\n25) anonymousApple: Build R2 Anonymousapple\nCatastrophe Anonymousapple Red\n\n26) ludiki: Move R2 Cox Anonymousapple\n\n27) anonymousApple: Build G1 Anonymousapple\n\n28) ludiki: Attack G1 Anonymousapple\n\n29) anonymousApple: Build G2 Anonymousapple\n\n30) ludiki: Attack G2 Anonymousapple\nCatastrophe Anonymousapple G\n\tanonymousApple: SEPPUKU!\n\tanonymousApple: aww it won&#39;t let me catastrophe myself v.v\n\n\tanonymousApple: gg :) Twas my first so thanks for the fun!\n\tludiki: you&#39;re welcome&#133; it&#39;s quite addictive!\n\nHomeworlds Online (SDG# 21716)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.23, Ended: 2012.3.12\nParticipants: agentofchaos (S), AdamBadura (N)\nWinner: agentofchaos\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\tagentofchaos: Good luck\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) AdamBadura: Build G1 Adambadura\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) AdamBadura: Trade G1 R1 Adambadura\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) AdamBadura: Build R2 Adambadura\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) AdamBadura: Build R2 Adambadura\n\n14) agentofchaos: Discover R2 Agentofchaos G2 Arcktron\n\n15) AdamBadura: Discover R1 Adambadura G1 Shipyard\n\n16) agentofchaos: Build R3 Arcktron\n\n17) AdamBadura: Build R3 Shipyard\n\n18) agentofchaos: Build R3 Agentofchaos\n\n19) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Shipyard Arcktron\nMove R1 Arcktron Agentofchaos\nDiscover G1 Adambadura Y1 Outpost\nCatastrophe Agentofchaos R\n\n20) agentofchaos: Sacrifice Y1 Agentofchaos\nMove R3 Arcktron Outpost\n\n21) AdamBadura: Discover G1 Outpost Y2 Outpost2\n\n22) agentofchaos: Move R3 Outpost Adambadura\n\n\tAdamBadura: Good one!\n\nHomeworlds Online (SDG# 21683)\nVariants: &quot;No undo&quot;\nStarted: 2012.2.24, Ended: 2012.3.9\nParticipants: ajo (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) ajo: Homeworld R2 B1 G3\n\n3) lorgar: Build G1 Lorgar\n\tlorgar: gl hf enjoy :D\n\n4) ajo: Build G1 Ajo\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) lorgar: Discover B1 Lorgar G1 Mnar\n\n8) ajo: Build G1 Ajo\n\n9) lorgar: Build B1 Mnar\n\n10) ajo: Discover G1 Ajo B3 Alpha\n\n11) lorgar: Build B2 Mnar\n\n12) ajo: Build G1 Ajo\n\n13) lorgar: Trade B1 Y1 Mnar\n\n14) ajo: Build G2 Ajo\n\n15) lorgar: Move B2 Mnar Alpha\n\n16) ajo: Discover G2 Ajo B3 Beta\n\n17) lorgar: Trade B2 R2 Alpha\n\n18) ajo: Sacrifice G1 Alpha\nBuild G1 Beta\n\n19) lorgar: Build B1 Mnar\n\n20) ajo: Trade G2 Y2 Beta\n\n21) lorgar: Build G2 Lorgar\n\n22) ajo: Sacrifice G3 Ajo\nBuild G2 Beta\nBuild G2 Beta\nBuild G3 Ajo\n\n23) lorgar: Discover B1 Mnar G3 Mhor\n\n24) ajo: Discover G1 Beta Y1 Gamma\n\n25) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Mnar\nBuild B2 Mnar\n\n26) ajo: Sacrifice G2 Beta\nBuild G2 Gamma\nBuild Y2 Beta\n\n27) lorgar: Trade G2 R2 Lorgar\n\tajo: Check.\n\tlorgar: indeed\n\n28) ajo: Sacrifice G3 Ajo\nBuild G2 Gamma\nBuild G3 Ajo\nBuild Y2 Ajo\n\n29) lorgar: Move R2 Lorgar Gamma\n\n30) ajo: Sacrifice Y2 Ajo\nMove G2 Gamma Lorgar\nMove G2 Gamma Lorgar\n\tlorgar: crap... bad idea XD I&#39;m done now\n\tajo: haha, yeah, you&#39;re not checkmated yet I think, but that was a BAD move. :)\n\n31) lorgar: Trade G3 R3 Lorgar\n\tajo: Check (obviously).\n\tlorgar: I&#39;m getting smitten...\n\n32) ajo: Trade G2 Y2 Lorgar\n\n33) lorgar: Attack G2S Lorgar\n\n34) ajo: Sacrifice G2 Beta\nBuild Y3 Lorgar\nBuild Y3 Lorgar\nCatastrophe Lorgar Yellow\n\n35) lorgar: Build B3 Mhor\n\n36) ajo: Move G1 Gamma Mhor\n\n37) lorgar: Sacrifice Y1 Mnar\nMove B3 Mhor Gamma\n\n38) ajo: Build G2 Ajo\n\n39) lorgar: Move B3 Gamma Beta\n\n40) ajo: Sacrifice Y2 Beta\nDiscover Y2 Beta R1 Deathtrap\nMove G1 Mhor Deathtrap\n\tajo: Okay, I&#39;m about to do something stupid...\n\n41) lorgar: Trade B3 G3 Beta\n\n42) ajo: Discover G2 Ajo B3 Delta\n\n43) lorgar: Move R2 Gamma Delta\n\n44) ajo: Sacrifice G2 Delta\nBuild G2 Deathtrap\nBuild Y1 Ajo\n\n45) lorgar: Trade B2 Y2 Mnar\n\n46) ajo: Discover G1 Deathtrap B2 Houdini\n\n47) lorgar: Sacrifice Y2 Mnar\nMove R2 Alpha Ajo\nMove R2 Delta Ajo\n\n48) ajo: Sacrifice G3 Ajo\nBuild G2 Houdini\nBuild G3 Ajo\nBuild Y1 Deathtrap\n\n49) lorgar: Sacrifice G2 Lorgar\nBuild R1 Ajo\nBuild R1 Lorgar\nCatastrophe Ajo Red\n\n50) ajo: Trade G2 R2 Houdini\n\n51) lorgar: Sacrifice G3 Beta\nBuild B3 Mhor\nBuild B3 Mhor\nBuild B3 Mnar\n\tajo: This game is going to come down to the last move, too... but I think you&#39;re ahead this time. All my ships are the wrong colors.\n\n52) ajo: Move G1 Ajo Mhor\n\n53) lorgar: Trade B2 Y2 Mnar\n\n54) ajo: Sacrifice G2 Deathtrap\nBuild G2 Mhor\nBuild G2 Mhor\nCatastrophe Mhor Green\n\n55) lorgar: Move B3 Mnar Houdini\n\tajo: *Now* I&#39;m not sure who&#39;s ahead! :)\n\n56) ajo: Trade G1 B1 Houdini\n\n57) lorgar: Trade B3 R3 Houdini\n\n58) ajo: Sacrifice Y2 Deathtrap\nMove B1 Houdini Ajo\nMove R2 Houdini Ajo\n\n59) lorgar: Build Y2 Mnar\n\n60) ajo: Discover B1 Ajo G3 Alpha\n\n61) lorgar: Move Y2 Mnar Alpha\n\n62) ajo: Build Y2 Ajo\n\n63) lorgar: Sacrifice R1 Lorgar\nAttack B1S Alpha\n\n64) ajo: Move Y2 Ajo Alpha\n\n65) lorgar: Build B2 Alpha\n\n66) ajo: Sacrifice R2 Ajo\nAttack Y2 Alpha\nAttack B2 Alpha\n\n67) lorgar: Build B3 Alpha\n\n68) ajo: Sacrifice G3 Ajo\nBuild Y3 Ajo\nBuild Y3 Deathtrap\nBuild B3 Alpha\nCatastrophe Alpha Blue\n\tajo: Oops! (I think.) :)\n\n69) lorgar: Sacrifice Y2 Mnar\nMove R3 Houdini Ajo\nMove B1 Mnar Lorgar\n\tajo: Hmm, I guess you still have that big red at Houdini, huh? I suppose I&#39;m still going to lose either way.\n\n70) ajo: Pass\n\tajo: Good game. :)\n\n71) lorgar: Sacrifice R3 Lorgar\nAttack Y3S Ajo\nAttack Y1S Ajo\nAttack Y1S Ajo\n\tlorgar: thx, rematch?\n\n\nHomeworlds Online (SDG# 21695)\nStarted: 2012.2.25, Ended: 2012.4.30\nParticipants: agentofchaos (S), ts52 (N)\nWinner: agentofchaos\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\n3) ts52: Build G1 Ts52\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Discover Y1 Agentofchaos G2 Shazcatraz\n\n9) ts52: Trade G1 Y1 Ts52\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) ts52: Move Y1 Ts52 Grover\n\n12) agentofchaos: Trade G1 R1 Agentofchaos\n\n13) ts52: Build G1 Grover\n\n14) agentofchaos: B G1 Agentofchaos\n\n15) ts52: Build G2 Ts52\n\n16) agentofchaos: Trade G1 Y1 Agentofchaos\n\n17) ts52: Trade G1 R1 Grover\n\n18) agentofchaos: Build Y2 Shazcatraz\n\n19) ts52: Build G1 Grover\n\n20) agentofchaos: Move Y2 Shazcatraz Grover\n\n21) ts52: Discover R1 Grover G2 Kermit\n\n22) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Grover\n\n23) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n24) agentofchaos: Sacrifice Y1 Grover\nMove Y2 Grover Kermit\n\n25) ts52: Trade G1 Y1 Grover\n\n26) agentofchaos: Build G1 Agentofchaos\n\n27) ts52: Move G3 Grover Kermit\n\n28) agentofchaos: Discover Y2 Kermit R3 Holodeth\n\n29) ts52: Sacrifice G3 Kermit\nBuild G3 Grover\nBuild Y2 Grover\nBuild Y3 Grover\n\n30) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Shazcatraz\nBuild Y3 Holodeth\nBuild G3 Agentofchaos\n\n31) ts52: Trade G2 R2 Ts52\n\n32) agentofchaos: Move Y1 Shazcatraz Grover\nCatastrophe Grover Y\n\n33) ts52: Trade G3 Y3 Grover\n\n34) agentofchaos: Trade G1 R1 Agentofchaos\n\n35) ts52: Build Y1 Grover\n\n36) agentofchaos: Build G1 Agentofchaos\n\n37) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Grover\n\n38) agentofchaos: Sacrifice Y2 Holodeth\nMove G1 Agentofchaos Shazcatraz\nMove G1 Shazcatraz Grover\nCatastrophe Grover G\n\n39) ts52: Build R1 Kermit\n\n40) agentofchaos: Move R1 Agentofchaos Shazcatraz\n\n41) ts52: Build R2 Kermit\n\n42) agentofchaos: Build G1 Agentofchaos\n\n43) ts52: Sacrifice Y3 Grover\nMove R1 Kermit Agentofchaos\nMove R1 Kermit Agentofchaos\nMove R2 Kermit Agentofchaos\nCatastrophe Agentofchaos R\n\n44) agentofchaos: Trade G1 B1 Agentofchaos\n\n45) ts52: Move G1 Ts52 Grover\n\n46) agentofchaos: Build B2 Agentofchaos\n\n47) ts52: Build R1 Ts52\n\n48) agentofchaos: Trade B2 G2 Agentofchaos\n\n49) ts52: Trade R2 B2 Ts52\n\n50) agentofchaos: Build B2 Agentofchaos\n\n51) ts52: Discover B2 Ts52 G3 Kermit\n\n52) agentofchaos: Move B2 Agentofchaos Grover\n\n53) ts52: Build B2 Kermit\n\n54) agentofchaos: Sacrifice R1 Shazcatraz\nAttack Y1 Grover\n\n55) ts52: Trade B2 Y2 Kermit\n\n56) agentofchaos: Trade G2 R2 Agentofchaos\n\n57) ts52: Build B2 Kermit\n\n58) agentofchaos: Move B1 Agentofchaos Holodeth\n\n59) ts52: Build B3 Kermit\n\n60) agentofchaos: Sacrifice Y3 Holodeth\nMove B1 Holodeth Agentofchaos\nMove B1 Agentofchaos Kermit\nMove Y3 Shazcatraz Kermit\nCatastrophe Kermit B\n\n61) ts52: Build G1 Grover\n\n62) agentofchaos: Sacrifice R2 Agentofchaos\nAttack Y2 Kermit\nAttack G1 Grover\n\n63) ts52: Build R1 Ts52\n\n64) agentofchaos: Trade B2 R2 Grover\n\n65) ts52: Build G1 Ts52\n\n66) agentofchaos: Attack G1 Grover\n\n67) ts52: Discover G1 Ts52 B3 Cookiemonster\n\n68) agentofchaos: Build Y1 Grover\n\n69) ts52: Build G2 Cookiemonster\n\n70) agentofchaos: Build Y2 Grover\n\n71) ts52: Trade G2 R2 Cookiemonster\n\n72) agentofchaos: Build Y3 Agentofchaos\n\n73) ts52: Build G2 Cookiemonster\n\n74) agentofchaos: Build Y3 Agentofchaos\n\n75) ts52: Trade G1 B1 Cookiemonster\n\n76) agentofchaos: Build G1 Grover\n\n77) ts52: Trade G3 B3 Ts52\n\n78) agentofchaos: Build R1 Grover\n\n79) ts52: Build G2 Cookiemonster\n\n80) agentofchaos: Trade R2 B2 Grover\n\n81) ts52: Build R2 Cookiemonster\n\n82) agentofchaos: M B2 Grover Agentofchaos\n\n83) ts52: Discover R1 Ts52 G3 Robin\n\n84) agentofchaos: Build G2 Agentofchaos\n\n85) ts52: Sacrifice G2 Cookiemonster\nBuild R2 Robin\nBuild R3 Ts52\n\tts52: I don&#39;t know how I let you monopolize yellow, but it&#39;s really frustrating. :)\n\n86) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Grover\nBuild B2 Agentofchaos\n\tagentofchaos: I can&#39;t remember how I did it either, but it sure has been helpful to me :-)\n\n87) ts52: Move R1 Ts52 Grover\n\n88) agentofchaos: Attack R1 Grover\n\n89) ts52: Move R3 Ts52 Grover\nCatastrophe Grover Red\n\n90) agentofchaos: Move B2 Agentofchaos Kermit\n\n91) ts52: Trade B3 R3 Ts52\n\n92) agentofchaos: Build B2 Kermit\n\n93) ts52: Sacrifice G2 Cookiemonster\nBuild R1 Ts52\nBuild R1 Cookiemonster\n\n94) agentofchaos: Sacrifice Y3 Agentofchaos\nMove Y1 Grover Ts52\nMove Y1 Grover Ts52\nMove Y2 Grover Ts52\nCatastrophe Ts52 Y\n\n95) ts52: Trade R1 Y1 Ts52\n\n96) agentofchaos: Sacrifice Y3 Agentofchaos\nMove B2 Kermit Ts52\nMove B2 Kermit Ts52\nMove B2 Agentofchaos Kermit\n\n97) ts52: Sacrifice R2 Cookiemonster\nAttack B2 Ts52\nAttack B2 Ts52\n\n98) agentofchaos: Move B2 Kermit Ts52\nCatastrophe Ts52 B\n\n\tagentofchaos: Thanks very much for a great game sir! :-)\n\tts52: Thank you. That was a very interesting game.\n\nHomeworlds Online (SDG# 21735)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.26, Ended: 2012.4.8\nParticipants: Mandrel (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R2 B3 G3\n\n2) Mandrel: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tajo: Thanks, you too!\n\n5) ajo: Trade G1 B1 Ajo\n\n6) Mandrel: Trade G1 B1 Mandrel\n\n7) ajo: Build B2 Ajo\n\n8) Mandrel: Build B2 Mandrel\n\n9) ajo: Trade B2 Y2 Ajo\n\n10) Mandrel: Trade B2 Y2 Mandrel\n\n11) ajo: Build B2 Ajo\n\n12) Mandrel: Build B2 Mandrel\n\n13) ajo: Discover B2 Ajo Y1 Alpha\n\n14) Mandrel: Trade B1 R1 Mandrel\n\n15) ajo: Build G1 Ajo\n\n16) Mandrel: Build G1 Mandrel\n\n17) ajo: Build Y1 Ajo\n\n18) Mandrel: Discover B2 Mandrel G3 Endings\n\n19) ajo: Trade Y2 R2 Ajo\n\n20) Mandrel: Build R1 Mandrel\n\n21) ajo: Move R2 Ajo Alpha\n\n22) Mandrel: Move R1 Mandrel Endings\n\n23) ajo: Move G1 Ajo Alpha\n\n24) Mandrel: Build R1 Mandrel\n\n25) ajo: Build R3 Alpha\n\n\nHomeworlds Online (SDG# 21567)\nStarted: 2012.2.26, Ended: 2012.5.13\nParticipants: lorgar (S), agentofchaos (N), wmreed (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) wmreed: Homeworld B3 R1 G3\n\n3) lorgar: Homeworld G3 Y2 B3\n\n4) agentofchaos: Build G1 Agentofchaos\n\twmreed: Hello!  Good luck!\n\n5) wmreed: B G1 Wmreed\n\n6) lorgar: Build B1 Lorgar\n\n7) agentofchaos: Trade G1 B1 Agentofchaos\n\n8) wmreed: T G1 Y1 Wmreed\n\n9) lorgar: Discover B1 Lorgar G1 Mnar\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) wmreed: B Y1 Wmreed\n\n12) lorgar: Build B1 Lorgar\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) wmreed: D Y1 Wmreed B2 Persephone\n\n15) lorgar: Build B2 Mnar\n\n16) agentofchaos: Trade B2 Y2 Agentofchaos\n\n17) wmreed: B G1 Wmreed\n\n18) lorgar: Trade B2 Y2 Mnar\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\n20) wmreed: M G1 Wmreed Persephone\n\n21) lorgar: Build B2 Mnar\n\n22) agentofchaos: Build Y1 Agentofchaos\n\n23) wmreed: B G1 Persephone\n\n24) lorgar: Trade B2 R2 Mnar\n\n25) agentofchaos: D Y2 Agentofchaos G3 Hartshope\n\n26) wmreed: B G1 Wmreed\n\n27) lorgar: Move Y2 Mnar Persephone\n\n28) agentofchaos: Build G2 Agentofchaos\n\n29) wmreed: B G2 Persephone\n\n30) lorgar: Sacrifice R2 Mnar\nAttack G2E Persephone\nAttack Y1E Persephone\n\twmreed: If you attack at Persephone I will catastrophe.  \n\n31) agentofchaos: Build B2 Agentofchaos\n\n32) wmreed: M G1 Wmreed Persephone\nCatastrophe Persephone G\n\n33) lorgar: Trade B1 R1 Lorgar\n\n34) agentofchaos: Trade B2 R2 Agentofchaos\n\n35) wmreed: B Y1 Wmreed\n\n36) lorgar: Trade Y1 R1 Persephone\n\n37) agentofchaos: Trade R1 Y1 Agentofchaos\n\n38) wmreed: T Y1 B1 Wmreed\n\n39) lorgar: Trade Y2 G2 Persephone\n\n40) agentofchaos: Build B2 Agentofchaos\n\n41) wmreed: B B2 Wmreed\n\n42) lorgar: Build G1 Persephone\n\n43) agentofchaos: Move B1 Agentofchaos Hartshope\n\n44) wmreed: Discover B2 Wmreed Y2 Ariel\n\n45) lorgar: Sacrifice G2 Persephone\nBuild B2 Lorgar\nBuild B3 Mnar\n\n46) agentofchaos: Build B3 Hartshope\n\n47) wmreed: B G1 Wmreed\n\n48) lorgar: Trade B1 Y1 Mnar\n\n49) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y3 Hartshope\n\n50) wmreed: B Y3 Wmreed\n\n51) lorgar: Build Y3 Mnar\n\n52) agentofchaos: Trade Y1 G1 Agentofchaos\n\n53) wmreed: T B2 R2 Ariel\n\n54) lorgar: Build G2 Persephone\n\n55) agentofchaos: Move Y3 Hartshope Persephone\n\n56) wmreed: M G3 Wmreed Ariel\n\n57) lorgar: Sacrifice Y1 Mnar\nDiscover G2 Persephone Y3 Leng\n\n58) agentofchaos: Sacrifice R2 Agentofchaos\nAttack G1S Persephone\nAttack R1S Persephone\n\n59) wmreed: B G2 Ariel\n\n60) lorgar: Build B1 Mnar\n\n61) agentofchaos: Build Y1 Persephone\n\n62) wmreed: B R1 Ariel\n\n63) lorgar: Build G2 Leng\n\n64) agentofchaos: Build G2 Persephone\n\n65) wmreed: D R2 Ariel Y1 Whitehall\n\n66) lorgar: Trade B2 R2 Lorgar\n\n67) agentofchaos: Build R2 Persephone\n\n68) wmreed: S G3 Ariel\nB G3 Ariel\nB R3 Whitehall\nPass\n\n69) lorgar: Move R1 Lorgar Whitehall\n\n70) agentofchaos: Move R1 Persephone Whitehall\nCatastrophe Whitehall R\n\n71) wmreed: M B1 Wmreed Ariel\n\n72) lorgar: Move G2 Leng Agentofchaos\n\n73) agentofchaos: Trade G1 R1 Agentofchaos\n\n74) wmreed: B R1 Ariel\n\n75) lorgar: Sacrifice G2 Leng\nBuild G1 Agentofchaos\nBuild G2 Agentofchaos\nCatastrophe Agentofchaos Green\n\n76) agentofchaos: Trade B3 G3 Hartshope\n\n77) wmreed: T R1 Y1 Ariel\n\n78) wmreed: Discover Y1 Ariel Y3 Serenity\n\n79) agentofchaos: Build B2 Hartshope\n\n80) wmreed: M G3 Ariel Mnar\n\n81) agentofchaos: Sacrifice Y2 Hartshope\nMove Y1 Persephone Wmreed\nMove Y3 Persephone Wmreed\nCatastrophe Wmreed Y\n\twmreed: Sorry, i don&#39;t remember getting an email about South&#39;s move.\n\n82) wmreed: S R1 Ariel\nA B3S Mnar\n\n83) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G3 Hartshope Ariel\nMove G3 Ariel Wmreed\n\n\twmreed: Good game!\n\tlorgar: sorry guys, I wont play much these day, cello contest week -.-\n\nHomeworlds Online (SDG# 21739)\nStarted: 2012.2.26, Ended: 2012.2.26\nParticipants: slothbear (S), kensho (N)\nWinner: slothbear\n\n1) kensho: Homeworld B1 Y2 G3\n\n2) slothbear: Homeworld B1 G2 Y3\n\n3) kensho: Build G1 Kensho\n\n4) slothbear: Build Y1 Slothbear\n\n5) kensho: Discover G1 Kensho R3 Rot\n\n6) slothbear: Build Y1 Slothbear\n\n7) kensho: Build G1 Kensho\n\n8) slothbear: Trade Y1 R1 Slothbear\n\n9) kensho: Discover G1 Kensho B3 Got\n\n10) slothbear: Move Y1 Slothbear Got\n\n11) kensho: Build G1 Rot\n\n12) slothbear: Build R1 Slothbear\n\n13) kensho: Build G2 Rot\n\n14) slothbear: Sacrifice R1 Slothbear\nAttack G1 Got\n\n15) kensho: Build G2 Kensho\n\n16) slothbear: Trade Y3 R3 Slothbear\n\n17) kensho: Move G3 Kensho Got\n\n18) slothbear: Build Y1 Got\n\n19) kensho: Trade G3 Y3 Got\n\n20) slothbear: Trade R1 Y1 Slothbear\n\n21) kensho: Trade Y3 B3 Got\n\n22) slothbear: Build Y2 Slothbear\n\n23) kensho: Sacrifice B3 Got\nTrade G1 R1 Rot\nTrade G1 B1 Rot\nPass\n\n24) slothbear: Sacrifice Y2 Slothbear\nMove R3 Slothbear Got\nMove R3 Got Kensho\n\n25) kensho: Trade G2 R2 Kensho\n\n26) slothbear: Attack R2 Kensho\n\n\nHomeworlds Online (SDG# 21737)\nStarted: 2012.2.27, Ended: 2012.4.28\nParticipants: sordros (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld B1 R2 G3\n\n2) sordros: Homeworld G2 Y3 B3\n\twmreed: Hello! Welcome!  Good luck!\n\n3) wmreed: B G1 Wmreed\n\tsordros: Hello! good luck to you too!\n\n4) sordros: Build B1 Sordros\n\n5) wmreed: T G1 Y1 Wmreed\n\n6) sordros: Trade B1 Y1 Sordros\n\n7) wmreed: B G1 Wmreed\n\n8) sordros: Build B1 Sordros\n\n9) wmreed: D G1 Wmreed Y3 Kermit\n\n10) sordros: Trade B1 G1 Sordros\n\n11) wmreed: B G1 Wmreed\n\n12) sordros: Discover G1 Sordros B1 Celeste\n\n13) wmreed: T G1 R1 Wmreed\n\n14) sordros: Build B1 Sordros\n\n15) wmreed: M R1 Wmreed Kermit\n\n16) sordros: Trade B1 R1 Sordros\n\n17) wmreed: B G1 Kermit\n\n18) sordros: Build G2 Celeste\n\n19) wmreed: M G1 Kermit Wmreed\n\n20) sordros: Trade G1 B1 Celeste\n\n21) wmreed: B G1 Kermit\n\n22) sordros: Sacrifice G2 Celeste\nBuild B2 Celeste\nBuild B2 Sordros\n\n23) wmreed: B Y1 Wmreed\n\n24) sordros: Trade B3 G3 Sordros\n\n25) wmreed: D G1 Kermit R2 Gonzo\n\n26) sordros: Trade B2 Y2 Celeste\n\n27) wmreed: S G3 Wmreed\nB G2 Kermit\nB G2 Gonzo\nB G3 Wmreed\n\n28) sordros: Build G3 Sordros\n\n29) wmreed: T G3 B3 Wmreed\n\n30) sordros: Move G3 Sordros Celeste\n\n31) wmreed: B G3 Wmreed\n\n32) sordros: Build Y2 Celeste\n\n33) wmreed: M B3 Wmreed Kermit\n\n34) sordros: Sacrifice G3 Sordros\nBuild Y2 Celeste\nBuild Y3 Sordros\nBuild G3 Celeste\n\n35) wmreed: T G2 B2 Kermit\n\n36) sordros: Build B2 Sordros\n\n37) wmreed: M B2 Kermit Gonzo\n\n38) sordros: Discover G3 Celeste B3 Cielo\n\n39) wmreed: B B3 Gonzo\n\n40) sordros: Build R1 Sordros\n\n41) wmreed: B R2 Kermit\n\n42) sordros: Move R1 Sordros Celeste\n\n43) wmreed: T B3 R3 Gonzo\n\n44) sordros: Sacrifice G3 Cielo\nBuild R3 Celeste\nBuild R3 Sordros\nBuild B3 Sordros\n\n45) wmreed: S G3 Wmreed\nB G2 Kermit\nB G3 Wmreed\nB B3 Gonzo\n\n46) sordros: Sacrifice Y2 Celeste\nMove R1 Celeste Gonzo\nMove R3 Celeste Gonzo\nCatastrophe Gonzo Red\n\n47) wmreed: D Y1 Wmreed B3 Scooter\n\n48) sordros: Build Y2 Celeste\n\n49) wmreed: M Y1 Scooter Celeste\nC Celeste Y\n\n50) sordros: Discover B3 Sordros G1 Kolbi\n\n51) wmreed: D R2 Kermit Y2 Fozzi\n\n52) sordros: Move Y3 Sordros Celeste\n\n53) wmreed: M G1 Kermit Fozzi\n\n\nHomeworlds Online (SDG# 21744)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.27, Ended: 2012.3.17\nParticipants: sordros (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y3 G3\n\n2) sordros: Homeworld R3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\tsordros: Hi, good luck. Have fun.\n\trootbier: Hey. You too. I haven&#39;t played here in like a year and a half or more.\n\n4) sordros: Build G1 Sordros\n\tsordros: That&#39;s ok I haven&#39;t played in more than that I think. I just wanted to try it once more and have some fun. :-)\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) sordros: Trade G1 Y1 Sordros\n\trootbier: it is a nice game. can go on a bit too long, but yeah. nice.\n\n7) rootbier: Build G1 Rootbier\n\n8) sordros: Build Y1 Sordros\n\n9) rootbier: Discover G1 Rootbier B2 Oxix\n\n10) sordros: Build G1 Sordros\n\n11) rootbier: Build G1 Rootbier\n\n12) sordros: Build G2 Sordros\n\n13) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G2 Oxix\nBuild G3 Rootbier\n\n14) sordros: Trade G1 B1 Sordros\n\n15) rootbier: Trade G2 Y2 Oxix\n\n16) sordros: Discover G2 Sordros B1 Celeste\n\n17) rootbier: Move G2 Oxix Celeste\n\n18) sordros: Sacrifice G2 Celeste\nBuild B2 Sordros\nBuild Y1 Sordros\n\n19) rootbier: Build G1 Celeste\n\n20) sordros: Discover B2 Sordros R1 Rosa\n\n21) rootbier: Sacrifice Y2 Oxix\nMove G1 Celeste Sordros\nMove G2 Celeste Sordros\n\n22) sordros: Trade G3 B3 Sordros\n\n23) rootbier: Trade G1 B1 Sordros\nCatastrophe Sordros B\n\n\trootbier: i know you&#39;re just getting back into it.\r\n:(\r\nshould i have played softer?\n\tsordros: never! play as hard as you can always! I loved that game! didn&#39;t see that coming :-) Great moves!\n\nHomeworlds Online (SDG# 21615)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.28, Ended: 2012.3.16\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) lorgar: Discover B1 Lorgar G2 Mnar\n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) lorgar: Build B1 Mnar\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) lorgar: Build G1 Lorgar\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) lorgar: Build B2 Mnar\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) lorgar: Trade B2 Y2 Mnar\n\n16) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n17) lorgar: Move Y2 Mnar Sol\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Sol\n\n19) lorgar: Sacrifice Y2 Sol\nMove B1 Mnar Sol\nMove B1 Mnar Sol\n\n20) SilentTitan: Sacrifice G3 Sol\nBuild Y1 Soul\nBuild Y2 Soul\nBuild Y2 Silenttitan\n\n21) lorgar: Trade B1 R1 Sol\n\n22) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 Sol\nBuild G2 Sol\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B1 Sol\nBuild B2 Sol\nCatastrophe Sol Blue\n\n24) SilentTitan: Discover Y1 Soul Y2 Sole\n\n25) lorgar: Trade G1 R1 Lorgar\n\n26) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sole\n\n27) lorgar: Build R1 Lorgar\n\n28) SilentTitan: Trade Y3 B3 Silenttitan\n\n29) lorgar: Discover R1 Lorgar G2 Pastures\n\n30) SilentTitan: Build Y3 Silenttitan\n\tlorgar: i&#39;m so owned...\n\n31) lorgar: Build R2 Pastures\n\n32) SilentTitan: Trade Y3 R3 Silenttitan\n\n33) lorgar: Build R2 Lorgar\n\n34) SilentTitan: Discover B3 Silenttitan Y3 Tic\n\tSilentTitan: doesn&#39;t look good for you .... but I&#39;ve messed up from here before.... so\n\n35) lorgar: Trade R1 B1 Lorgar\n\tlorgar: I do not think I&#39;m going anywhere. just got sorely beatean by  twoshort btw XD\n\n36) SilentTitan: Move B3 Tic Sole\n\n37) lorgar: Sacrifice B1 Lorgar\nTrade R1 B1 Pastures\n\n38) SilentTitan: Build Y3 Silenttitan\n\n39) lorgar: Build B1 Pastures\n\n40) SilentTitan: Trade Y3 G3 Silenttitan\n\n41) lorgar: Build G1 Lorgar\n\n42) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sole\nBuild B2 Sole\nBuild Y3 Silenttitan\n\n43) lorgar: Build B3 Pastures\n\n44) SilentTitan: Sacrifice Y3 Sole\nMove B3 Sole Lorgar\nMove B2 Sole Lorgar\nMove B2 Sole Lorgar\nCatastrophe Lorgar Blue\n\n45) lorgar: Trade B3 Y3 Pastures\n\n46) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sole Lorgar\nMove Y2 Silenttitan Lorgar\nMove Y1 Silenttitan Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: gg\n\tSilentTitan: Thank you for playing\n\nHomeworlds Online (SDG# 21748)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.28, Ended: 2012.3.8\nParticipants: goulo (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tgoulo: hi, have fun!\n\tts52: Thanks. You too!\n\n4) goulo: Build G1 Goulo\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) ts52: Build G1 Grover\n\n8) goulo: Build Y1 Goulo\n\n9) ts52: Trade G1 Y1 Grover\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) ts52: Build G1 Grover\n\n12) goulo: Build R1 Goulo\n\n13) ts52: Trade G1 R1 Grover\n\n14) goulo: Trade R1 B1 Goulo\n\n15) ts52: Build G1 Ts52\n\n16) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n17) ts52: Build G2 Grover\n\n18) goulo: Build G2 Goulo\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n20) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild B1 Goulo\nBuild Y1 Smeraldeto\n\n21) ts52: Trade G3 Y3 Grover\n\n22) goulo: Discover Y1 Smeraldeto G3 Smeraldego\n\n23) ts52: Discover G2 Ts52 Y3 Bigbird\n\n24) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y2 Smeraldeto\nBuild Y2 Smeraldego\n\n25) ts52: Discover Y1 Grover B2 Gonzo\n\n26) goulo: Discover Y1 Smeraldeto Y3 Citronego\n\n27) ts52: Trade G2 R2 Grover\n\n28) goulo: Move Y1 Smeraldego Ts52\n\n29) ts52: Sacrifice G2 Bigbird\nBuild G2 Grover\nBuild Y3 Gonzo\n\n30) goulo: Move Y2 Smeraldego Ts52\n\n31) ts52: Trade G2 B2 Grover\n\n32) goulo: Move Y1 Citronego Ts52\nCatastrophe Ts52 Y\n\n33) ts52: Trade G1 Y1 Ts52\n\n34) goulo: Trade B1 Y1 Goulo\n\n35) ts52: Discover Y3 Gonzo G1 Kermit\n\n36) goulo: Build Y2 Smeraldeto\n\n37) ts52: Move B2 Grover Kermit\n\n38) goulo: Move Y2 Smeraldeto Gonzo\n\n39) ts52: Build B1 Kermit\n\n40) goulo: Move B1 Goulo Smeraldeto\n\n41) ts52: Discover B2 Kermit G3 Robin\n\n42) goulo: Sacrifice G3 Goulo\nBuild B3 Smeraldeto\nBuild Y2 Smeraldeto\nBuild Y3 Goulo\n\n43) ts52: Build B3 Kermit\n\n44) goulo: Move R1 Goulo Smeraldeto\n\n45) ts52: Sacrifice Y3 Grover\nMove Y1 Gonzo Kermit\nMove Y1 Kermit Goulo\nMove Y1 Ts52 Goulo\nCatastrophe Goulo Yellow\n\n46) goulo: Move B3 Smeraldeto Goulo\n\n47) ts52: Sacrifice Y3 Kermit\nMove B1 Kermit Goulo\nMove B2 Robin Kermit\nMove B2 Kermit Goulo\nCatastrophe Goulo Blue\n\n48) goulo: Move B1 Smeraldeto Goulo\n\n49) ts52: Build B1 Kermit\n\n50) goulo: Build B2 Goulo\n\n51) ts52: Trade B1 Y1 Kermit\n\n52) goulo: Build G2 Goulo\n\n53) ts52: Trade B3 R3 Kermit\n\n54) goulo: Trade Y2 B2 Gonzo\n\n55) ts52: Move R3 Kermit Goulo\n\n56) goulo: Sacrifice Y2 Smeraldeto\nMove G2 Goulo Gonzo\nMove B2 Gonzo Ts52\n\n57) ts52: Sacrifice R2 Grover\nAttack B2 Ts52\nAttack B2 Goulo\n\n58) goulo: Attack B2 Goulo\n\n59) ts52: Sacrifice G3 Ts52\nBuild R1 Goulo\nBuild R2 Goulo\nBuild R2 Goulo\nCatastrophe Goulo Red\n\tts52: Thanks for the game!\n\tgoulo: Thanks! That was a tough interesting one!\n\n\nHomeworlds Online (SDG# 21749)\nStarted: 2012.2.28, Ended: 2016.4.18\nParticipants: bertilious (S), slothbear (N), emusan (E)\nWinner: emusan\n\n1) slothbear: Homeworld B2 G1 Y3\n\n2) emusan: H B3 R2 G3\n\temusan: you stole my opening! THIEF!!!!\n\n3) bertilious: Homeworld G3 B1 Y3\n\n4) slothbear: Build Y1 Slothbear\n\tslothbear: &quot;sorry&quot;\n\tslothbear: you wanted to do things differently from last game, no?\n\n5) emusan: B G1 Emusan\n\n6) bertilious: Build Y1 Bertilious\n\temusan: yea, I was thinking of doing something like this anyway...\n\n7) slothbear: Build Y1 Slothbear\n\n8) emusan: T G1 Y1 Emusan\n\tslothbear: uh huh.  good.\n\n9) bertilious: Build Y2 Bertilious\n\n10) slothbear: Trade Y1 G1 Slothbear\n\n11) emusan: B G1 Emusan\n\n12) bertilious: Trade Y1 G1 Bertilious\n\n13) slothbear: Build G2 Slothbear\n\n14) emusan: B G2 Emusan\n\n15) bertilious: Build G2 Bertilious\n\n16) slothbear: Disc G2 Slothbear Y3 Carter\n\n17) emusan: D G1 Emusan B1 Meow\n\n18) bertilious: Discover Y2 Bertilious G2 Bertlandia\n\n19) slothbear: Bu G3 Slothbear\n\n20) emusan: S G3 Emusan\nB G3 Emusan\nB G3 Meow\nB Y1 Emusan\n\n21) bertilious: Trade G1 B1 Bertilious\n\temusan: that was cool...\n\tslothbear: NICE\n\n22) slothbear: Disco G1 Slothbear Y3 Crichton\n\n23) emusan: M Y1 Emusan Meow\n\n24) bertilious: Move B1 Bertilious Bertlandia\n\n25) slothbear: Build G1 Slothbear\n\n26) emusan: S G3 Meow\nB G3 Meow\nB Y1 Emusan\nB Y2 Meow\n\n27) bertilious: Build Y2 Bertilious\n\n28) slothbear: Disc G1 Slothbear R3 Sheppard\n\n29) emusan: M G3 Meow Sheppard\n\n30) bertilious: Build Y2 Bertlandia\n\n31) slothbear: Sacrifice Y1 Slothbear\nDiscover G1 Sheppard B1 Stewart\n\n32) emusan: T G2 B2 Emusan\n\tslothbear: I&#39;m always likely to have delays on Tuesdays and Fridays.\n\temusan: that&#39;s okay\n\n33) bertilious: Build B2 Bertlandia\n\tslothbear: Move 16 in Second Life. Prettier in person, but it&#39;s a start. And 3D. http://www.flickr.com/photos/oseransky/6949790115/\n\n34) slothbear: Build G2 Stewart\n\n35) emusan: M B2 Emusan Meow\n\n36) bertilious: Trade B1 R1 Bertlandia\n\n37) slothbear: Trade G3 R3 Slothbear\n\n38) emusan: S G3 Sheppard\nB G3 Meow\nB Y1 Emusan\nB B1 Meow\n\n39) bertilious: Trade B2 R2 Bertlandia\n\tslothbear: I bet myself you couldn&#39;t resist that. You&#39;re welcome.\n\n40) slothbear: Build G3 Carter\n\temusan: couldn&#39;t resist what?\n\tslothbear: the g3 thing. \n\n41) emusan: T Y1 R1 Emusan\n\n42) bertilious: Trade Y2 R2 Bertilious\n\n43) slothbear: Sacrifice G3 Carter\nBuild G3 Crichton\nBuild R1 Slothbear\nBuild Y1 Slothbear\n\n44) emusan: T G3 R3 Meow\n\n45) bertilious: Build Y2 Bertilious\n\n46) slothbear: Build G3 Carter\n\n47) emusan: M R3 Meow Carter\n\n48) bertilious: Trade R2 B2 Bertilious\n\tslothbear: O Redeo, Redeo! Wherefore art thou Redeo?\n\n49) slothbear: Sacrifice R1 Slothbear\nAttack R3E Carter\n\n50) emusan: M R1 Emusan Meow\n\temusan: oh crap... forgot you could do that lol\n\tslothbear: someone should have sent you an email\n\n51) bertilious: Move B2 Bertilious Bertlandia\n\temusan: I wasn&#39;t sure what you meant by redeo....\n\n52) slothbear: Trade G2 B2 Stewart\n\n53) emusan: B G2 Emusan\n\n54) bertilious: Move R1 Bertlandia Bertilious\n\n55) slothbear: Sacrifice Y3 Slothbear\nMove B2 Stewart Bertlandia\nMove B2 Bertlandia Meow\nDiscover G3 Crichton R1 Osterman\nCatastrophe Meow Blue\n\n56) emusan: T G2 R2 Emusan\n\temusan: so mean! :(\n\n57) bertilious: Build R1 Bertilious\n\tslothbear: meow learns of secret too late\n\tslothbear: Even people not involved in the game can&#39;t resist 3 of the same color: http://boardgamegeek.com/image/214310/homeworlds\n\n58) slothbear: Trade G1 B1 Stewart\n\n59) emusan: M R2 Emusan Stewart\n\n60) bertilious: Build R1 Bertlandia\n\n61) slothbear: Sacrifice G2 Carter\nBuild B1 Stewart\nBuild B2 Stewart\nCatastrophe Stewart Blue\n\n62) emusan: B G1 Emusan\n\tslothbear: good grief. I didn&#39;t see *that* coming.\n\n63) bertilious: Build B1 Bertlandia\n\n64) slothbear: Move G3 Carter Bertlandia\n\n65) emusan: B Y1 Emusan\n\n66) bertilious: Discover Y2 Bertlandia G1 Bertland\n\n67) slothbear: Sacrifice R3 Carter\nAttack R2S Bertlandia\nAttack Y2S Bertlandia\nAttack B2S Bertlandia\n\n68) emusan: D Y1 Emusan B1 Shh\n\tslothbear: s r3 carter\r\na r2s bertlandia\r\na y2s bertlandia\r\na b2s bertlandia\n\tslothbear: ooops\n\n69) bertilious: Build Y2 Bertland\n\n70) slothbear: Build Y3 Slothbear\n\n71) emusan: S G1 Emusan\nB Y3 Shh\n\n72) bertilious: Move Y2 Bertland Emusan\n\n\n73) slothbear: Attack R1S Bertlandia\n\n74) emusan: S Y1 Emusan\nD Y1 Emusan B1 Ezpz\n\n75) bertilious: Discover Y2 Bertland B3 Berttown\n\n76) slothbear: Move R3 Slothbear Berttown\n\n77) emusan: A Y2S Emusan\n\n78) bertilious: Discover Y2 Bertilious R2 Das Spoot\n\temusan: no takebacks!\n\temusan: :P just kidding\n\n79) slothbear: Trade Y3 R3 Slothbear\n\tslothbear: played two games with never-played-before nephew this weekend. We split 1&amp;1.\n\n80) emusan: B G1 Emusan\n\n\tslothbear: 3 years is as long as I&#39;ll wait.\n\nHomeworlds Online (SDG# 21746)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.28, Ended: 2012.3.23\nParticipants: SilentTitan (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tsordros: Hi! good luck and have fun!\n\n3) sordros: B G1 Sordros\n\tSilentTitan: alrighty.... you as well\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sordros: Build G1 Sordros\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) sordros: Trade G1 B1 Sordros\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) sordros: Build B1 Sordros\n\tsordros: b b1 sordros\n\tsordros: whoops, wrong field :-)\n\n12) SilentTitan: Build R1 Silenttitan\n\n13) sordros: Discover B1 Sordros G3 Koora\n\n14) SilentTitan: Discover R1 Silenttitan Y1 Sol\n\n15) sordros: Build Y2 Sordros\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) sordros: Trade Y2 R2 Sordros\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R2 Sol\nBuild R3 Silenttitan\n\n19) sordros: Sacrifice G3 Sordros\nBuild B1 Koora\nBuild B2 Koora\nBuild B3 Sordros\n\n20) SilentTitan: Move R2 Sol Koora\n\tSilentTitan: you need to redo your turn .. unless you&#39;d like me to call for a catastrophe on blue in your homeworld.  \n\tsordros: oh wow, I didn&#39;t see that :) Thanks\r\n\n\n21) sordros: Sacrifice R2 Sordros\nAttack R2 Koora\nPass\n\n22) SilentTitan: Trade R3 B3 Silenttitan\n\n23) sordros: Trade B2 Y2 Koora\n\n24) SilentTitan: Move B3 Silenttitan Sol\n\n25) sordros: Trade B3 G3 Sordros\n\n26) SilentTitan: Trade Y1 G1 Silenttitan\n\n27) sordros: Discover B1 Koora G1 Aqua\n\n28) SilentTitan: Discover R1 Sol B3 Soul\n\n29) sordros: Move R2 Koora Aqua\n\n30) SilentTitan: Discover R1 Silenttitan G1 Sole\n\n31) sordros: Build G2 Sordros\n\n32) SilentTitan: Discover R2 Sol B3 Tic\n\n33) sordros: Build B2 Aqua\n\n34) SilentTitan: Trade B3 G3 Sol\n\n35) sordros: Build B3 Koora\n\n36) SilentTitan: Move G3 Sol Silenttitan\n\n37) sordros: Trade B3 R3 Koora\n\n38) SilentTitan: Trade R2 Y2 Tic\n\n39) sordros: Build B3 Aqua\n\n40) SilentTitan: Build G2 Silenttitan\n\n41) sordros: Trade G3 Y3 Sordros\n\n42) SilentTitan: Build R2 Sole\n\n43) sordros: Sacrifice G2 Sordros\nBuild R2 Koora\nBuild R3 Aqua\n\n44) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Tic\nBuild Y1 Silenttitan\n\n45) sordros: Build Y3 Koora\n\n46) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Tic Sordros\nMove Y1 Tic Sordros\nCatastrophe Sordros Yellow\n\n47) sordros: Build B3 Koora\n\n48) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover R2 Sole Y3 Sol\n\n49) sordros: Sacrifice Y2 Koora\nMove R3 Koora Sordros\nDiscover B3 Koora Y1 Diwo\n\n50) SilentTitan: Trade G3 Y3 Silenttitan\n\n51) sordros: Sacrifice Y3 Koora\nMove B3 Aqua Silenttitan\nMove R3 Aqua Silenttitan\nMove B3 Diwo Silenttitan\n\n52) SilentTitan: Sacrifice Y3 Silenttitan\nMove R2 Sol Sordros\nMove R1 Soul Sordros\nMove R1 Sole Silenttitan\nCatastrophe Sordros Red\n\n53) sordros: Sacrifice R2 Koora\nAttack G1 Silenttitan\nAttack R1 Silenttitan\n\n\tSilentTitan: good game\n\tsordros: gg. Thanks for the game!\n\nHomeworlds Online (SDG# 21706)\nVariants: &quot;Hard time&quot;\nStarted: 2012.2.28, Ended: 2012.4.11\nParticipants: sordros (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y1 B3 G3\n\n2) sordros: Homeworld R1 B2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) sordros: Build G1 Sordros\n\n5) Jesse: Discover G1 Jesse B2 Nile\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) Jesse: Build G1 Jesse\n\n8) sordros: Build Y1 Sordros\n\n9) Jesse: Build G1 Nile\n\n10) sordros: Discover Y1 Sordros G3 Koora\n\n11) Jesse: Build G2 Nile\n\n12) sordros: Build G2 Sordros\n\n13) Jesse: Trade G2 Y2 Nile\n\n14) sordros: Build Y2 Sordros\n\n15) Jesse: Build Y2 Nile\n\n16) sordros: Build Y3 Koora\n\n17) Jesse: Discover Y2 Nile B3 Moon\n\n18) sordros: Trade Y1 B1 Sordros\n\n19) Jesse: Discover G1 Nile B3 Lagoon\n\n20) sordros: Discover G2 Sordros R3 Violeta\n\n21) Jesse: Sacrifice G3 Jesse\nBuild G2 Lagoon\nBuild G2 Nile\nBuild G3 Jesse\n\n22) sordros: Discover Y3 Koora B2 Zul\n\n23) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y1 Moon\nBuild Y3 Nile\n\n24) sordros: Build Y3 Koora\n\n25) Jesse: Trade Y2 R2 Nile\n\n26) sordros: Build Y2 Sordros\n\n27) Jesse: Trade Y1 R1 Moon\n\n28) sordros: Trade Y2 R2 Sordros\n\n29) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R1 Nile\nBuild Y1 Moon\n\n30) sordros: Build Y2 Koora\n\n31) Jesse: Move R1 Nile Jesse\n\n32) sordros: Build B1 Sordros\n\n33) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R2 Jesse\nBuild R3 Moon\n\n34) sordros: Discover B1 Sordros R3 Rubi\n\n35) Jesse: Sacrifice Y2 Moon\nMove R1 Moon Sordros\nMove R3 Moon Sordros\nCatastrophe Sordros R\n\n36) sordros: Trade B1 R1 Sordros\n\n37) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Moon\nBuild R1 Nile\n\n\nHomeworlds Online (SDG# 21751)\nStarted: 2012.2.29, Ended: 2012.3.10\nParticipants: lorgar (S), ludiki (N)\nWinner: lorgar\n\n1) ludiki: Homeworld G1 B2 Y3\n\tludiki: This is a great game&#133; but I think I will need a few plays before developing a feeling of it. So &#133; Yes, rematch! :-)\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) ludiki: Build Y1 Ludiki\n\n4) lorgar: Build G1 Lorgar\n\n5) ludiki: Trade Y1 R1 Ludiki\n\n6) lorgar: Build G1 Lorgar\n\n7) ludiki: Discover R1 Ludiki G3 Rhodio\n\n8) lorgar: Discover G1 Lorgar B2 Mnar\n\n9) ludiki: Build Y1 Ludiki\n\n10) lorgar: Build G2 Mnar\n\n11) ludiki: Move Y1 Ludiki Rhodio\n\n12) lorgar: Trade G2 R2 Mnar\n\n13) ludiki: Build Y1 Ludiki\n\n14) lorgar: Build G2 Mnar\n\n15) ludiki: Trade Y3 R3 Ludiki\n\n16) lorgar: Trade G2 Y2 Mnar\n\n17) ludiki: Move R3 Ludiki Rhodio\n\n18) lorgar: Sacrifice Y2 Mnar\nMove R2 Mnar Rhodio\nMove R2 Rhodio Ludiki\n\n19) ludiki: Move R3 Rhodio Ludiki\n\tludiki: Oh! I didn&#39;t understand the rule correctly. I thought sacrifices gave some kind of actions points. So that if you sacrificied a Y2, you can move two 1-dot ships or one 2-dot ships, or move twice one 1-dot ship. Too bad. I lost, once again.\n\tludiki: Or did I?\n\n20) lorgar: Build R1 Ludiki\n\n21) ludiki: Move R1 Rhodio Mnar\n\n22) lorgar: Attack Y1N Ludiki\n\n23) ludiki: Attack R2 Ludiki\n\n24) lorgar: Build R1 Ludiki\nCatastrophe Ludiki Red\n\tlorgar: gg, rematch? Dont worry you&#39;ll learn the dirty tricks by playing against bad people (like twoshort or silent titan :P )\n\n\nHomeworlds Online (SDG# 21764)\nStarted: 2012.3.1, Ended: 2012.3.9\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Build G1 Lorgar\n\n7) TwoShort: Build G1 Twoshort\n\n8) lorgar: Discover G1 Lorgar B3 Mnar\n\n9) TwoShort: Build G2 Twoshort\n\n10) lorgar: Sacrifice G3 Lorgar\nBuild G2 Mnar\nBuild G2 Lorgar\nBuild G3 Mnar\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) lorgar: Trade G2 R2 Mnar\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n14) lorgar: Sacrifice G3 Mnar\nBuild G3 Lorgar\nBuild R1 Mnar\nBuild R1 Mnar\n\n15) TwoShort: Trade G2 R2 Twoshort\n\n16) lorgar: Trade R2 Y2 Mnar\n\n17) TwoShort: Trade G3 Y3 Twoshort\n\n18) lorgar: Discover G2 Lorgar G3 Mhor\n\n19) TwoShort: Sacrifice Y3 Twoshort\nDiscover G1 Yolonda Y3 Yack\nMove G3 Yolonda Yack\nMove G3 Yack Lorgar\n\n20) lorgar: Sacrifice Y2 Mnar\nMove R1 Mnar Lorgar\nMove G1 Mnar Lorgar\nCatastrophe Lorgar Green\n\n21) TwoShort: Build G1 Yack\n\n22) lorgar: Trade R1 Y1 Mnar\n\n23) TwoShort: Discover G1 Yack B2 Bluonia\n\n24) lorgar: Sacrifice Y1 Mnar\nMove G2 Mhor Lorgar\n\n25) TwoShort: Build G1 Twoshort\n\n26) lorgar: Build R1 Lorgar\n\n27) TwoShort: Build G2 Yack\n\n28) lorgar: Build G3 Lorgar\n\n29) TwoShort: Move G2 Yack Lorgar\n\n30) lorgar: Discover G2 Lorgar G3 Mo\n\n31) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n32) lorgar: Build G3 Mo\n\n33) TwoShort: Sacrifice G1 Bluonia\nBuild G1 Lorgar\n\n34) lorgar: Pass\n\n35) TwoShort: Sacrifice G1 Yack\nBuild G1 Lorgar\nCatastrophe Lorgar Green\n\n\nHomeworlds Online (SDG# 21783)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.4, Ended: 2012.3.7\nParticipants: Subhan64 (S), mneme (N)\nWinner: Subhan64\n\n\nHomeworlds Online (SDG# 21747)\nVariants: &quot;Unrated&quot;\nStarted: 2012.3.7, Ended: 2012.4.1\nParticipants: sordros (S), igneel (N)\nWinner: sordros\n\n1) igneel: Homeworld G2 B1 Y3\n\n2) sordros: Homeworld B3 R1 G3\n\n3) igneel: Build Y1 Igneel\n\tsordros: Buena suerte!\n\n4) sordros: Build G1 Sordros\n\n5) igneel: Build Y1 Igneel\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) igneel: Trade Y1 R1 Igneel\n\n8) sordros: Build G1 Sordros\n\n\nHomeworlds Online (SDG# 21750)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.7, Ended: 2012.3.16\nParticipants: SilentTitan (S), igneel (N)\nWinner: SilentTitan\n\n1) igneel: Homeworld G2 B1 Y3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) igneel: Build Y1 Igneel\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) igneel: Trade Y1 R1 Igneel\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) igneel: Build Y1 Igneel\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) igneel: Trade Y1 B1 Igneel\n\n10) SilentTitan: Build Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 21816)\nVariants: &quot;No undo&quot;\nStarted: 2012.3.9, Ended: 2012.4.8\nParticipants: lorgar (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) ajo: Build G1 Ajo\n\n4) lorgar: Build G1 Lorgar\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) lorgar: Trade G1 B1 Lorgar\n\n7) ajo: Build G1 Ajo\n\n8) lorgar: Build B1 Lorgar\n\n9) ajo: Discover G1 Ajo B3 Alpha\n\n10) lorgar: Discover B1 Lorgar G2 Mnar\n\n11) ajo: Build G1 Ajo\n\n12) lorgar: Build G1 Lorgar\n\n13) ajo: Build G2 Alpha\n\n14) lorgar: Build B2 Mnar\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) lorgar: Discover G1 Lorgar B2 Mhor\n\n17) ajo: Build G2 Alpha\n\n18) lorgar: Build B3 Mnar\n\n19) ajo: Trade G2 R2 Alpha\n\n20) lorgar: Build G2 Lorgar\n\n21) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\n\n22) lorgar: Trade B2 Y2 Mnar\n\n23) ajo: Move G3 Alpha Mnar\n\n24) lorgar: Sacrifice Y2 Mnar\nDiscover G1 Mhor Y3 Bravo\nMove B3 Mnar Alpha\n\n25) ajo: Move G1 Ajo Bravo\n\tlorgar: should have bought guns...\n\n26) lorgar: Trade B1 R1 Lorgar\n\n27) ajo: Sacrifice R2 Alpha\nAttack G1 Bravo\nAttack B1 Mnar\n\n28) lorgar: Trade B3 R3 Alpha\n\n29) ajo: Sacrifice Y2 Alpha\nDiscover G1 Alpha Y2 Gamma\nMove G1 Bravo Gamma\n\n30) lorgar: Move G2 Lorgar Gamma\n\n31) ajo: Sacrifice G2 Ajo\nBuild G2 Gamma\nBuild B1 Mnar\nCatastrophe Gamma Green\n\n32) lorgar: Build G1 Lorgar\n\n33) ajo: Trade G3 R3 Mnar\n\n34) lorgar: Sacrifice G1 Lorgar\nBuild R1 Alpha\n\n35) ajo: Build R2 Mnar\n\n36) lorgar: Build G1 Lorgar\n\n37) ajo: Trade R2 Y2 Mnar\n\n38) lorgar: Trade R1 G1 Alpha\n\n39) ajo: Build B2 Mnar\n\n40) lorgar: Sacrifice G3 Lorgar\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Lorgar\n\n41) ajo: Build G3 Ajo\n\n42) lorgar: Trade G2 Y2 Alpha\n\n43) ajo: Trade G3 Y3 Ajo\n\n44) lorgar: Sacrifice Y2 Alpha\nMove G2 Alpha Mnar\nMove G1 Alpha Mnar\n\n45) ajo: Sacrifice Y3 Ajo\nMove R3 Mnar Bravo\nMove B2 Mnar Lorgar\nMove B1 Mnar Lorgar\n\n46) lorgar: Build G2 Mnar\nCatastrophe Mnar Green\n\n47) ajo: Sacrifice G1 Bravo\nBuild B1 Lorgar\nCatastrophe Lorgar Blue\n\n48) lorgar: Build G1 Lorgar\n\n49) ajo: Discover R3 Bravo B1 Charlie\n\n50) lorgar: Sacrifice G1 Lorgar\nBuild R1 Alpha\n\n51) ajo: Build G1 Ajo\n\n52) lorgar: Trade R1 G1 Alpha\n\n53) ajo: Build Y1 Ajo\n\n54) lorgar: Build G2 Alpha\n\n55) ajo: Discover G1 Ajo Y3 Beta\n\n56) lorgar: Trade G2 Y2 Alpha\n\n57) ajo: Move G1 Beta Charlie\n\n58) lorgar: Build G2 Alpha\n\n59) ajo: Trade G3 B3 Ajo\n\n60) lorgar: Build Y1 Alpha\n\n61) ajo: Build G2 Charlie\n\n62) lorgar: Sacrifice Y2 Alpha\nMove G2 Alpha Ajo\nMove G1 Alpha Ajo\n\n63) ajo: Sacrifice R3 Charlie\nAttack G1 Ajo\nAttack G2 Ajo\nPass\n\tajo: That feels like you just gave me a present. I&#39;ll take it!\n\n64) lorgar: Move G1 Lorgar Charlie\n\n65) ajo: Sacrifice Y1 Ajo\nMove G1 Charlie Lorgar\n\n66) lorgar: Move R3 Alpha Charlie\n\n67) ajo: Sacrifice G2 Charlie\nBuild G2 Lorgar\nBuild G2 Lorgar\nCatastrophe Lorgar Green\n\tajo: Oh dear. What happened? You had the upper hand for a while, but now I think you&#39;re on your last legs.\n\n68) lorgar: Build G1 Charlie\n\tlorgar: indeed.\n\tlorgar: this so desperate T_T\n\n69) ajo: Trade G2 R2 Ajo\n\n70) lorgar: Sacrifice Y1 Alpha\nMove R3 Charlie Lorgar\n\n71) ajo: Build G2 Ajo\n\n72) lorgar: Build G2 Charlie\n\n73) ajo: Trade G2 Y2 Ajo\n\n74) lorgar: Trade G2 R2 Charlie\n\n75) ajo: Build Y1 Ajo\n\tajo: I think you needed yellow or blue, more than another red. Let&#39;s see...\n\n76) lorgar: Build G2 Charlie\n\n77) ajo: Build G2 Ajo\n\n78) lorgar: Trade G2 Y2 Charlie\n\tajo: I think I see a checkmate in three. :)\n\tlorgar: I saw it coming :&#39;(\n\n79) ajo: Move Y1 Ajo Lorgar\n\n80) lorgar: Attack Y1N Lorgar\n\tajo: Check.\n\n81) ajo: Move Y1 Ajo Lorgar\n\n82) lorgar: Pass\n\tajo: I believe that&#39;s checkmate! GG.\n\n83) ajo: Sacrifice G2 Ajo\nBuild Y1 Lorgar\nBuild Y2 Lorgar\nCatastrophe Lorgar Yellow\n\tlorgar: indeed.\n\n\nHomeworlds Online (SDG# 21811)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.10, Ended: 2012.3.13\nParticipants: Remneb (S), Subhan64 (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 21829)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.12, Ended: 2012.5.25\nParticipants: Danner (S), AdamBadura (N)\nWinner: Danner\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\tDanner: Hi! Have a nice game!\n\n2) Danner: Homeworld B1 R2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Danner: Build G1 Danner\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) Danner: Trade G1 Y1 Danner\n\n7) AdamBadura: Build G1 Adambadura\n\n8) Danner: Build Y1 Danner\n\n9) AdamBadura: Trade G1 R1 Adambadura\n\n10) Danner: Trade Y1 R1 Danner\n\n11) AdamBadura: Build G1 Adambadura\n\n12) Danner: Build G1 Danner\n\n13) AdamBadura: Trade G1 B1 Adambadura\n\n14) Danner: Discover G1 Danner Y3 Alpha\n\n15) AdamBadura: Build Y1 Adambadura\n\n16) Danner: Build G1 Alpha\n\n17) AdamBadura: Build G2 Adambadura\n\n18) Danner: Build G2 Danner\n\n19) AdamBadura: Discover G2 Adambadura Y1 Ontheway\n\n20) Danner: Move G1 Alpha Ontheway\n\n21) AdamBadura: Build Y2 Adambadura\n\n22) Danner: Sacrifice G3 Danner\nBuild G2 Ontheway\nBuild G3 Alpha\nBuild G3 Danner\n\n23) AdamBadura: Build R1 Adambadura\n\n24) Danner: Move G2 Ontheway Adambadura\n\n25) AdamBadura: Sacrifice Y2 Adambadura\nMove G1 Adambadura Ontheway\nMove G1 Ontheway Alpha\n\n26) Danner: Sacrifice G1 Alpha\nBuild G1 Adambadura\n\n27) AdamBadura: Sacrifice R1 Adambadura\nAttack G1 Ontheway\n\n28) Danner: Sacrifice R1 Danner\nAttack R1N Adambadura\n\n29) AdamBadura: Sacrifice Y1 Adambadura\nMove B1 Adambadura Ontheway\n\n30) Danner: Trade G1 B1 Adambadura\n\tAdamBadura: Sorry for the extreme delays but I was moving and have lots of associated work while the games goes bad for me and I have to think lots about moves.\n\tDanner: No problem. :)\n\n31) AdamBadura: Trade G2 R2 Ontheway\n\n32) Danner: Sacrifice G3 Alpha\nBuild B2 Adambadura\nBuild B2 Adambadura\nBuild G1 Adambadura\nCatastrophe Adambadura B\n\n\nHomeworlds Online (SDG# 21820)\nStarted: 2012.3.13, Ended: 2012.4.12\nParticipants: lorgar (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld G3 Y1 B3\n\n3) rootbier: Build G1 Rootbier\n\n4) lorgar: Build B1 Lorgar\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) lorgar: Build B1 Lorgar\n\n7) rootbier: Build G1 Rootbier\n\n8) lorgar: Discover B1 Lorgar G2 Mnar\n\n9) rootbier: Build G1 Rootbier\n\n10) lorgar: Build B2 Mnar\n\n11) rootbier: Discover G1 Rootbier B3 Oxix\n\n12) lorgar: Trade B2 R2 Mnar\n\n13) rootbier: Build G1 Rootbier\n\n14) lorgar: Build B2 Mnar\n\n15) rootbier: Discover G1 Rootbier B3 Ixox\n\n16) lorgar: Trade B1 Y1 Mnar\n\n17) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G2 Ixox\nBuild G3 Rootbier\n\n18) lorgar: Discover B2 Mnar G3 Beer\n\n19) rootbier: Trade G1 Y1 Ixox\n\n20) lorgar: Build B1 Beer\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild G1 Ixox\nBuild Y2 Ixox\nBuild G3 Rootbier\n\n22) lorgar: Build Y2 Mnar\n\n23) rootbier: Move Y2 Ixox Mnar\n\n24) lorgar: Attack Y2N Mnar\n\n25) rootbier: Move Y1 Ixox Mnar\nCatastrophe Mnar Y\n\n26) lorgar: Build B2 Beer\n\n27) rootbier: Trade G1 Y1 Ixox\n\n28) lorgar: Build B2 Lorgar\n\n29) rootbier: Sacrifice G3 Rootbier\nBuild G1 Ixox\nBuild Y1 Ixox\nBuild G3 Rootbier\n\n30) lorgar: Trade B2 Y2 Lorgar\n\n31) rootbier: Discover Y1 Ixox B2 Chlor\n\n32) lorgar: Sacrifice Y2 Lorgar\nMove R2 Mnar Oxix\nMove B2 Beer Chlor\n\n33) rootbier: Sacrifice R1 Rootbier\nAttack R2 Oxix\n\n34) lorgar: Trade B2 R2 Chlor\n\n35) rootbier: Move Y1 Chlor Oxix\n\n36) lorgar: Trade B2 Y2 Beer\n\n37) rootbier: Discover G2 Oxix R2 Wihabl\n\n38) lorgar: Trade Y2 G2 Beer\n\n39) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild Y2 Oxix\nBuild Y2 Ixox\n\n40) lorgar: Build B2 Beer\n\n41) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild Y3 Ixox\nBuild Y3 Oxix\n\n42) lorgar: Trade B3 Y3 Lorgar\n\n43) rootbier: Sacrifice Y2 Ixox\nMove G1 Rootbier Beer\nMove G2 Wihabl Beer\nCatastrophe Beer G\n\n44) lorgar: Build B1 Lorgar\n\n45) rootbier: Sacrifice Y2 Oxix\nMove Y3 Ixox Chlor\nMove G1 Ixox Chlor\n\n46) lorgar: Build B2 Lorgar\n\n47) rootbier: Sacrifice G2 Ixox\nBuild G1 Rootbier\nBuild G2 Chlor\n\n48) lorgar: Move B1 Lorgar Chlor\n\n49) rootbier: Sacrifice Y3 Oxix\nMove Y3 Chlor Lorgar\nMove Y1 Ixox Chlor\nMove Y1 Chlor Lorgar\nCatastrophe Lorgar Y\n\n50) lorgar: Attack G2N Chlor\n\n51) rootbier: Sacrifice G3 Rootbier\nBuild G2 Chlor\nBuild G2 Chlor\nBuild G3 Rootbier\nCatastrophe Chlor G\n\n52) lorgar: Trade B1 Y1 Chlor\n\n53) rootbier: Move G3 Rootbier Lorgar\n\n54) lorgar: Pass\n\n55) rootbier: Sacrifice R2 Oxix\nAttack B2 Lorgar\nAttack B1 Lorgar\n\trootbier: good game, sir\n\tlorgar: sorry, I wont play much these day, cello contest week -.-\n\n\nHomeworlds Online (SDG# 21843)\nVariants: &quot;Unrated&quot;\nStarted: 2012.3.17, Ended: 2013.5.6\nParticipants: Websteria (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld G2 B1 Y3\n\n2) Websteria: Homeworld G3 B2 Y3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) Websteria: Build Y1 Websteria\n\n5) Subhan64: Trade Y3 G3 Subhan64\n\n6) Websteria: Trade Y3 R3 Websteria\n\n7) Subhan64: Build G1 Subhan64\n\n8) Websteria: Build R1 Websteria\n\n9) Subhan64: Trade G1 R1 Subhan64\n\n10) Websteria: Discover Y1 Websteria Y1 Grid\n\n11) Subhan64: Build Y2 Subhan64\n\n12) Websteria: Move Y1 Grid Websteria\n\n13) Subhan64: Build G1 Subhan64\n\n14) Websteria: Trade R3 Y3 Websteria\n\n15) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n16) Websteria: Discover Y1 Websteria G1 Grid\n\n17) Subhan64: Discover G1 Subhan64 Y3 Pacman\n\n18) Websteria: Build Y1 Grid\n\n19) Subhan64: Build Y2 Kermit\n\n20) Websteria: Build Y2 Websteria\n\n21) Subhan64: Build Y3 Subhan64\n\n22) Websteria: Trade Y3 R3 Websteria\n\n23) Subhan64: Discover G3 Subhan64 Y3 Big_bird\n\n24) Websteria: Move R3 Websteria Grid\n\n25) Subhan64: Discover Y1 Kermit B1 Smurfette\n\n26) Websteria: Move R3 Grid Kermit\n\n27) Subhan64: Move Y2 Kermit Grid\n\n28) Websteria: Build R1 Kermit\n\n29) Subhan64: Build R2 Subhan64\n\n\nHomeworlds Online (SDG# 21805)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.17, Ended: 2012.5.8\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: agentofchaos\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) agentofchaos: B G1 Agentofchaos\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n14) agentofchaos: Trade R1 B1 Agentofchaos\n\n15) SilentTitan: Trade R2 Y2 Sol\n\n16) agentofchaos: Discover R2 Agentofchaos G1 Procyon\n\n17) SilentTitan: Build R1 Silenttitan\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) SilentTitan: Move R1 Silenttitan Sol\n\n20) agentofchaos: Move Y1 Agentofchaos Procyon\n\n21) SilentTitan: Discover R1 Silenttitan B3 Sole\n\n22) agentofchaos: Trade G1 Y1 Agentofchaos\n\n23) SilentTitan: Build Y2 Silenttitan\n\n24) agentofchaos: Build Y2 Agentofchaos\n\n25) SilentTitan: Move Y1 Silenttitan Sole\n\n26) agentofchaos: Build Y3 Procyon\n\n27) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild R2 Sol\nBuild R3 Sole\n\n28) agentofchaos: Build R3 Procyon\n\n29) SilentTitan: Trade Y3 G3 Silenttitan\n\n30) agentofchaos: Move Y3 Procyon Sol\n\n31) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sol\nBuild R3 Sol\n\n32) agentofchaos: Sacrifice R3 Procyon\nAttack R3 Sol\nAttack Y3 Sol\nAttack Y2 Sol\n\n33) SilentTitan: Move Y2 Silenttitan Sol\nCatastrophe Sol Yellow\n\n34) agentofchaos: Attack R2 Sol\n\n35) SilentTitan: Move R3 Sole Procyon\n\n36) agentofchaos: Move R2 Procyon Sole\n\n37) SilentTitan: Attack Y1 Procyon South\n\n38) agentofchaos: Attack Y1 Sole\n\n39) SilentTitan: Build R3 Procyon\n\n40) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R2 Sole Procyon\nMove R2 Sol Procyon\nCatastrophe Procyon R\n\n41) SilentTitan: Trade Y3 G3 Silenttitan\n\n42) agentofchaos: Discover Y1 Sole G2 Frendzia\n\n43) SilentTitan: Build G1 Silenttitan\n\n44) agentofchaos: Attack R1 Sol\n\n45) SilentTitan: Build G1 Silenttitan\n\n46) agentofchaos: Build G2 Agentofchaos\n\n47) SilentTitan: Trade G3 Y3 Silenttitan\n\n48) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y2 Frendzia\n\n49) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n50) agentofchaos: Build G2 Agentofchaos\n\n51) SilentTitan: Build Y2 Procyon\n\n52) agentofchaos: Trade Y1 B1 Agentofchaos\n\n53) SilentTitan: Build G2 Silenttitan\n\n54) agentofchaos: Move Y2 Frendzia Sole\n\n55) SilentTitan: Sacrifice Y2 Procyon\nDiscover G1 Silenttitan Y3 Tic\nDiscover R1 Sole Y1 Tac\n\n56) agentofchaos: Build Y2 Frendzia\n\n57) SilentTitan: Build G3 Silenttitan\n\n58) agentofchaos: Trade R3 G3 Sol\n\n59) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Soul Tac\nMove Y1 Procyon Agentofchaos\nMove R1 Tac Agentofchaos\n\n60) agentofchaos: Attack R1 Agentofchaos\n\n61) SilentTitan: Trade Y1 B1 Agentofchaos\nCatastrophe Agentofchaos Blue\n\n62) agentofchaos: Build R2 Sol\n\n63) SilentTitan: Trade G3 Y3 Silenttitan\n\n64) agentofchaos: Move G2 Agentofchaos Tac\n\n65) SilentTitan: Sacrifice G1 Tac\nBuild G1 Silenttitan\n\n66) agentofchaos: Move G2 Tac Tic\n\n67) SilentTitan: Discover G2 Silenttitan B3 Sky\n\n68) agentofchaos: Sacrifice R1 Sol\nAttack G1 Tic\n\n69) SilentTitan: Build G1 Sky\n\n70) agentofchaos: Build G3 Sol\n\n71) SilentTitan: Trade G1 R1 Sky\n\n72) agentofchaos: Sacrifice G3 Sol\nBuild G1 Agentofchaos\nBuild G3 Sol\nBuild Y1 Sole\n\n73) SilentTitan: Build R2 Sky\n\n74) agentofchaos: D R1 Agentofchaos Y1 Azafrood\n\n75) SilentTitan: Trade R1 B1 Sky\n\n76) agentofchaos: Sacrifice G3 Sol\nBuild R1 Sol\nBuild R3 Azafrood\nBuild G3 Sol\n\n77) SilentTitan: Build R3 Sky\n\n78) agentofchaos: Sacrifice Y2 Frendzia\nMove Y1 Sole Silenttitan\nMove Y2 Sole Silenttitan\n\n\tSilentTitan: Good Game\n\tSilentTitan: Good Game\n\nHomeworlds Online (SDG# 21844)\nStarted: 2012.3.17, Ended: 2012.4.12\nParticipants: ts52 (S), anonymousApple (N)\nWinner: ts52\n\n1) anonymousApple: Homeworld Y3 B2 G3\n\tanonymousApple: Hello! Good luck!\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Thanks, you too!\n\n3) anonymousApple: Build G1 Anonymousapple\n\n4) ts52: Build G1 Ts52\n\n5) anonymousApple: Discover G1 Anonymousapple B1 Snickers\n\n6) ts52: Trade G1 R1 Ts52\n\n7) anonymousApple: Build G1 Anonymousapple\n\n8) ts52: Build R1 Ts52\n\n9) anonymousApple: Trade G1 R1 Anonymousapple\n\n10) ts52: Build R2 Ts52\n\n11) anonymousApple: Discover R1 Anonymousapple Y1 Diablo\n\n12) ts52: Discover R2 Ts52 B3 Grover\n\n13) anonymousApple: Discover R1 Diablo G3 Sulfur\n\n14) ts52: Build G1 Ts52\n\n15) anonymousApple: Build G1 Anonymousapple\n\n16) ts52: Move G1 Ts52 Grover\n\n17) anonymousApple: Build R2 Sulfur\n\n18) ts52: Build R2 Grover\n\n19) anonymousApple: Trade G1 Y1 Anonymousapple\n\n20) ts52: Trade R2 Y2 Grover\n\n21) anonymousApple: Sacrifice Y1 Anonymousapple\nMove R2 Sulfur Ts52\n\n22) ts52: Attack R2 Ts52\n\n\tanonymousApple: wow...my group has been playing that rule wrong for years...thought it was largest *red* ship in the system. gg.\n\tts52: Ouch. Yeah, that&#39;s an easy one to mistake. Thanks for the game.\n\nHomeworlds Online (SDG# 21846)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.17, Ended: 2012.3.29\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld R2 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tlorgar: I&#39;m gonna try...\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) lorgar: Build G1 Lorgar\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) lorgar: Build G1 Lorgar\n\n11) SilentTitan: Build R1 Silenttitan\n\n12) lorgar: Discover G1 Lorgar B1 Leng\n\n13) SilentTitan: Discover R1 Silenttitan G3 Sol\n\n14) lorgar: Build G1 Lorgar\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) lorgar: Build G2 Leng\n\n17) SilentTitan: Discover R2 Silenttitan Y3 Soul\n\n18) lorgar: Sacrifice Y1 Lorgar\nDiscover G2 Leng B3 Mnar\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R3 Soul\nBuild R3 Silenttitan\n\n20) lorgar: Sacrifice G1 Lorgar\nBuild G1 Mnar\n\n21) SilentTitan: Move R3 Silenttitan Mnar\n\n22) lorgar: Build G2 Mnar\n\n23) SilentTitan: Sacrifice R3 Soul\nAttack G2 Mnar South\nAttack G2 Mnar South\nAttack G1 Mnar South\n\n24) lorgar: Trade G1 Y1 Leng\n\n25) SilentTitan: Trade G2 Y2 Mnar\n\n26) lorgar: Trade Y1 G1 Leng\n\tlorgar: I&#39;m getting beaten even worst than usual\n\n27) SilentTitan: Trade R3 Y3 Mnar\n\n28) lorgar: Trade G1 Y1 Lorgar\n\n29) SilentTitan: Discover R2 Soul Y1 Sole\n\n30) lorgar: Build G1 Leng\n\n31) SilentTitan: Sacrifice G2 Mnar\nBuild R3 Sole\nBuild R3 Sole\n\n32) lorgar: Sacrifice Y1 Lorgar\nDiscover G1 Leng B3 Mhor\n\n33) SilentTitan: Sacrifice Y2 Mnar\nMove R3 Sole Lorgar\nMove R3 Sole Lorgar\n\n34) lorgar: Pass\n\n35) SilentTitan: Attack G3 Lorgar South\n\n\nHomeworlds Online (SDG# 21849)\nStarted: 2012.3.17, Ended: 2012.5.9\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tlorgar: thx, I feel like trying new things\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) lorgar: Trade G1 B1 Lorgar\n\n7) ts52: Build G1 Ts52\n\n8) lorgar: Discover B1 Lorgar G3 Leng\n\n9) ts52: Trade G1 R1 Ts52\n\n10) lorgar: Build B1 Leng\n\n11) ts52: Move R1 Ts52 Leng\n\n12) lorgar: Build B2 Leng\n\n13) ts52: Attack B1 Leng\n\n14) lorgar: Trade B2 R2 Leng\n\n15) ts52: Build R1 Leng\n\n16) lorgar: Sacrifice R2 Leng\nAttack R1N Leng\nAttack R1N Leng\n\n17) ts52: Build B2 Leng\n\n18) lorgar: Build B2 Leng\nCatastrophe Leng Blue\n\n19) ts52: Trade Y1 R1 Ts52\n\n20) lorgar: Build G1 Lorgar\n\tlorgar: You are annoying you know that? :)\n\tts52: What? ;)\n\n21) ts52: Build R2 Ts52\n\n22) lorgar: Discover G1 Lorgar B3 Mnar\n\n23) ts52: Move R2 Ts52 Mnar\n\n24) lorgar: Build G1 Lorgar\n\n25) ts52: Attack G1 Mnar\n\tlorgar: I hate you -_-\n\n26) lorgar: Trade G1 B1 Lorgar\n\n27) ts52: Build R2 Mnar\n\tts52: You chose to make it a compact universe. \n\tlorgar: I know, thats why I hate my self twice more than you.\n\n28) lorgar: Build G1 Lorgar\n\n29) ts52: Trade R2 Y2 Mnar\n\n30) lorgar: Build R2 Leng\n\n31) ts52: Move R1 Ts52 Leng\nCatastrophe Leng Red\n\n32) lorgar: Trade B1 R1 Lorgar\n\n33) ts52: Build G1 Mnar\n\tts52: You know I&#39;m not going to let you get away with that...\n\tlorgar: dunno what I thought -_-\n\n34) lorgar: Build R1 Lorgar\n\n35) ts52: Sacrifice Y2 Mnar\nMove G1 Mnar Lorgar\nMove G1 Mnar Lorgar\nCatastrophe Lorgar Green\n\n36) lorgar: Trade R1 G1 Lorgar\n\n37) ts52: Build G1 Ts52\n\n38) lorgar: Build R1 Lorgar\n\n39) ts52: Move G1 Ts52 Mnar\n\n40) lorgar: Build G1 Lorgar\n\n41) ts52: Trade G1 Y1 Mnar\n\n42) lorgar: Trade G1 B1 Lorgar\n\n43) ts52: Build G1 Ts52\n\n44) lorgar: Build G1 Lorgar\n\n45) ts52: Move G1 Ts52 Mnar\n\n46) lorgar: Discover B1 Lorgar G3 More\n\n47) ts52: Build G2 Mnar\n\n48) lorgar: Build B1 More\n\n49) ts52: Move G2 Mnar Lorgar\n\n50) lorgar: Trade B1 Y1 More\n\tts52: Welcome back. ;)\n\n51) ts52: Sacrifice R2 Mnar\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n52) lorgar: Pass\n\n53) ts52: Build G2 Lorgar\nCatastrophe Lorgar Green\n\n\tts52: Thanks for the game! Small universe, bad.... :D\n\tlorgar: indeed...\n\nHomeworlds Online (SDG# 21857)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.19, Ended: 2012.3.21\nParticipants: Gidaio (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Gidaio: Homeworld B2 G1 Y3\n\n3) dlwillson: B G1 Dlwillson\n\tGidaio: Haven&#39;t we had a match before? I swear, your name seems familiar...\n\n4) Gidaio: Build Y1 Gidaio\n\tdlwillson: We played Cannon in February last year. Unfortunately, sometime around then, I got bored or depressed or something, and quit practically everything I was doing on SDG. I&#39;m back now. :-)\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tGidaio: Heh. That kinda happened to me, too.\n\n6) Gidaio: Discover Y1 Gidaio G3 Galifrey\n\tdlwillson: This should be interesting...\n\n7) dlwillson: Discover Y1 Dlwillson G2 Field\n\n8) Gidaio: Build Y2 Galifrey\n\n9) dlwillson: Build Y2 Field\n\n10) Gidaio: Build Y2 Gidaio\n\n11) dlwillson: D Y2 Field G3 Meadow\n\n12) Gidaio: Trade Y2 G2 Gidaio\n\n13) dlwillson: B G1 Dlwillson\n\n14) Gidaio: Discover G2 Gidaio Y3 Sr388\n\n15) dlwillson: T G1 R1 Dlwillson\n\tGidaio: Lemmie guess: your next system will be &#39;plain.&#39;\n\n16) Gidaio: Build G1 Sr388\n\n17) dlwillson: B G1 Dlwillson\n\tdlwillson: Probably &#39;sky&#39;. &#39;Plain&#39; would be a bad name for blue. :-)\n\n18) Gidaio: Move G2 Sr388 Field\n\n19) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB Y2 Field\nB Y3 Meadow\n\n20) Gidaio: Build G3 Sr388\n\n21) dlwillson: Move Y3 Meadow Gidaio\n\n22) Gidaio: Trade Y3 R3 Gidaio\n\n23) dlwillson: Sacrifice R1 Dlwillson\nAttack R3 Gidaio\n\n\tGidaio: Oh, very nice. I didn&#39;t even notice that.\n\tdlwillson: Good game, Gidaio. Let me know if you&#39;d like to play a friendly game.\n\nHomeworlds Online (SDG# 21858)\nStarted: 2012.3.19, Ended: 2012.4.9\nParticipants: RogueJedi234 (S), krazykyle2011 (N)\nWinner: RogueJedi234\n\n1) krazykyle2011: Pass\n\n\n2) RogueJedi234: Homeworld B3 G2 Y3\n\n3) krazykyle2011: Homeworld B3 G1 R3\n\n4) RogueJedi234: Build Y1 Roguejedi234\n\n5) krazykyle2011: Build R1 Krazykyle2011\n\n6) RogueJedi234: Build Y1 Roguejedi234\n\n7) krazykyle2011: Trade R1 Y1 Krazykyle2011\n\n8) RogueJedi234: Discover Y1 Roguejedi234 G1 Alpha1\n\n9) krazykyle2011: Build Y2 Krazykyle2011\n\n10) RogueJedi234: Build Y2 Roguejedi234\n\n11) krazykyle2011: Build Y2 Krazykyle2011\n\n12) RogueJedi234: Trade Y2 B2 Roguejedi234\n\n13) krazykyle2011: Discover Y2 Krazykyle2011 B2 Beta2\n\n14) RogueJedi234: Move B2 Roguejedi234 Alpha1\n\n15) krazykyle2011: Move Y2 Krazykyle2011 Beta2\n\n16) RogueJedi234: Build Y2 Alpha1\n\n17) krazykyle2011: Trade Y2 G2 Beta2\n\n18) RogueJedi234: Trade Y2 G2 Alpha1\n\n19) krazykyle2011: Build R1 Krazykyle2011\n\n20) RogueJedi234: Build G1 Alpha1\n\n21) krazykyle2011: Move R1 Krazykyle2011 Beta2\n\n22) RogueJedi234: Build Y2 Roguejedi234\n\n23) krazykyle2011: Move R1 Beta2 Alpha1\n\n24) RogueJedi234: Trade Y2 R2 Roguejedi234\n\n25) krazykyle2011: Move Y2 Beta2 Alpha1\n\n26) RogueJedi234: Sacrifice R2 Roguejedi234\nAttack R1 Alpha1\nAttack Y2 Alpha1\n\n27) krazykyle2011: Build Y2 Krazykyle2011\n\n28) RogueJedi234: Move G2 Alpha1 Roguejedi234\n\n29) krazykyle2011: Move Y2 Krazykyle2011 Beta2\n\n30) RogueJedi234: Trade Y1 R1 Roguejedi234\n\n31) krazykyle2011: Discover G2 Beta2 B1 Delta 3\n\n32) RogueJedi234: Sacrifice Y2 Alpha1\nMove R1 Alpha1 Beta2\nMove B2 Alpha1 Beta2\n\n33) krazykyle2011: Move Y2 Beta2 Delta\n\n34) RogueJedi234: Sacrifice G2 Roguejedi234\nBuild R1 Beta2\nBuild R2 Beta2\n\n35) krazykyle2011: Build G2 Delta\n\n36) RogueJedi234: Move G1 Alpha1 Beta2\n\n37) krazykyle2011: Trade G2 R2 Delta\n\n38) RogueJedi234: Build Y1 Alpha1\n\n39) krazykyle2011: Move R3 Krazykyle2011 Beta2\n\n40) RogueJedi234: Sacrifice Y1 Alpha1\nMove R2 Beta2 Krazykyle2011\n\n41) krazykyle2011: Build Y1 Krazykyle2011\n\n42) RogueJedi234: Trade R2 G2 Krazykyle2011\n\n43) krazykyle2011: Sacrifice Y2 Delta\nMove R3 Beta2 Krazykyle2011\nMove Y1 Krazykyle2011 Beta2\n\n44) RogueJedi234: Build G3 Krazykyle2011\n\n45) krazykyle2011: Build G3 Delta\n\n46) RogueJedi234: Build G3 Krazykyle2011\nCatastrophe Krazykyle2011 Green\n\n47) krazykyle2011: Sacrifice Y1 Beta2\nDiscover G3 Delta B3 Gamma\n\n48) RogueJedi234: Build B1 Beta2\n\n49) krazykyle2011: Build G1 Gamma\n\n50) RogueJedi234: Build B1 Beta2\n\n51) krazykyle2011: Trade R2 Y2 Delta\n\n52) RogueJedi234: Sacrifice Y3 Roguejedi234\nMove B1 Beta2 Krazykyle2011\nMove B2 Beta2 Krazykyle2011\nMove B1 Beta2 Krazykyle2011\nCatastrophe Krazykyle2011 Blue\n\n\nHomeworlds Online (SDG# 21848)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.20, Ended: 2012.4.2\nParticipants: SilentTitan (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) rootbier: Build G1 Rootbier\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) rootbier: Discover G1 Rootbier B3 Oxix\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) rootbier: Build G1 Rootbier\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) rootbier: D G1 Rootbier B3 Ixox\n\n14) SilentTitan: Trade B1 Y1 Silenttitan\n\n15) rootbier: Build G1 Rootbier\n\n16) SilentTitan: Build Y1 Silenttitan\n\n17) rootbier: Build G2 Rootbier\n\n18) SilentTitan: Discover Y1 Silenttitan R1 Sky\n\n19) rootbier: Discover G2 Rootbier Y3 Skox\n\n20) SilentTitan: Build R2 Silenttitan\n\n21) rootbier: Build G2 Ixox\n\n22) SilentTitan: Discover R2 Silenttitan Y1 Sol\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G3 Skox\nBuild G3 Rootbier\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sky\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n25) rootbier: Build G3 Rootbier\n\n26) SilentTitan: Discover R2 Sol Y3 Soul\n\n27) rootbier: Build R2 Rootbier\n\trootbier: whoops. somehow in all my manic tab flipping i bumped the undo.\n\trootbier: whoops. somehow in all my manic tab flipping i bumped the undo. and then ha hah i put the ship back in the wrong place.\n\n28) SilentTitan: Discover Y2 Silenttitan B1 Sole\n\n29) rootbier: Move R2 Rootbier Skox\n\n30) SilentTitan: Move Y1 Silenttitan Sole\n\n31) rootbier: Move G3 Skox Sole\n\n32) SilentTitan: Sacrifice Y2 Sole\nMove Y1 Sole Skox\nMove Y1 Sky Skox\n\n33) rootbier: Discover R2 Skox Y1 Prong\n\n34) SilentTitan: Move Y1 Skox Prong\n\n35) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild R3 Rootbier\nBuild R3 Prong\n\n36) SilentTitan: Discover Y1 Prong Y2 Sunburst\n\n37) rootbier: Move G3 Rootbier Soul\n\n38) SilentTitan: Pass\n\n39) rootbier: Sacrifice R1 Rootbier\nAttack R2 Soul\n\n40) SilentTitan: Discover Y1 Sunburst R3 Mars\n\trootbier: ? hmm ?\n\n41) rootbier: Move G3 Rootbier Mars\n\n42) SilentTitan: Move Y1 Mars Rootbier\n\n43) rootbier: Sacrifice R2 Soul\nAttack Y1 Skox\nAttack Y1 Rootbier\n\n44) SilentTitan: Pass\n\n45) rootbier: Move Y1 Rootbier Ixox\n\n\tSilentTitan: good game\n\trootbier: thanks. rematch?\n\tSilentTitan: sure.\n\nHomeworlds Online (SDG# 21868)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.21, Ended: 2012.3.25\nParticipants: dragmio (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dragmio: Homeworld G2 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\tdragmio: Hello! Have a good game!\n\tSilentTitan: Well.... thank you very much... I hope you have a good game as well.\r\n\n\n4) dragmio: Build B1 Dragmio\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dragmio: Trade B1 R1 Dragmio\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) dragmio: Build R1 Dragmio\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) dragmio: Build R2 Dragmio\n\n11) SilentTitan: Discover Y2 Silenttitan R3 Sol\n\n12) dragmio: Discover R2 Dragmio Y3 Prime\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) dragmio: Build R2 Dragmio\n\n15) SilentTitan: Trade Y2 R2 Silenttitan\n\n16) dragmio: Trade R2 Y2 Dragmio\n\n17) SilentTitan: Discover Y1 Silenttitan R3 Soul\n\n18) dragmio: Discover R1 Dragmio G3 Grassy\n\n19) SilentTitan: Move R2 Silenttitan Grassy\n\n20) dragmio: Move R1 Dragmio Grassy\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n22) dragmio: Build B1 Dragmio\n\tdragmio: Wow, didn&#39;t see this coming at all.\n\n23) SilentTitan: Trade Y3 G3 Silenttitan\n\n24) dragmio: Sacrifice Y2 Dragmio\nMove R1 Grassy Silenttitan\nMove R1 Grassy Silenttitan\n\n25) SilentTitan: Build Y2 Silenttitan\n\n26) dragmio: Move R2 Prime Silenttitan\nCatastrophe Silenttitan R\n\n27) SilentTitan: Move Y3 Sol Dragmio\n\n28) dragmio: Trade B1 R1 Dragmio\n\n29) SilentTitan: Sacrifice R2 Grassy\nAttack B3 Dragmio South\nAttack R1 Dragmio South\n\tSilentTitan: Tiny Universe are always trouble. Good Game.\n\tdragmio: You are too nice. You kicked my ass good. :) I&#39;ll try again when I&#39;m better.\n\n\nHomeworlds Online (SDG# 21877)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.21, Ended: 2012.3.24\nParticipants: dlwillson (S), mneme (N)\nWinner: dlwillson\n\n\tdlwillson: Mneme, take a turn!\n\nHomeworlds Online (SDG# 21887)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.25, Ended: 2012.4.9\nParticipants: ts52 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) ts52: Build G1 Ts52\n\n5) dlwillson: Discover G1 Dlwillson B2 Sky\n\tts52: Have a good game!\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\tdlwillson: You too!\n\n7) dlwillson: Build G1 Dlwillson\n\n8) ts52: Build G2 Grover\n\n9) dlwillson: B G2 Dlwillson\n\n10) ts52: Trade G2 Y2 Grover\n\n11) dlwillson: Discover G2 Dlwillson B2 Sea\n\n12) ts52: Build G2 Grover\n\n13) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild G3 Sea\nBuild G3 Dlwillson\n\n14) ts52: Trade G2 R2 Grover\n\n15) dlwillson: Trade G1 R1 Dlwillson\n\n16) ts52: Build Y1 Grover\n\n17) dlwillson: Trade G2 Y2 Sky\n\n18) ts52: Build G1 Grover\n\n19) dlwillson: Sacrifice G3 Sea\nBuild G2 Dlwillson\nBuild G2 Sky\nBuild G3 Sea\n\n20) ts52: Sacrifice Y2 Grover\nMove G1 Grover Sea\nMove G1 Grover Sea\nCatastrophe Sea Green\n\n21) dlwillson: Discover G2 Sky B3 Sea\n\n22) ts52: Build G1 Ts52\n\n23) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Sea\nBuild G2 Sky\nBuild G3 Dlwillson\n\n24) ts52: Trade G1 R1 Ts52\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Dlwillson\nBuild G3 Sea\nBuild G3 Dlwillson\n\n26) ts52: Build R1 Ts52\n\tts52: This doesn&#39;t seem to be going too well for me....\n\n27) dlwillson: T G3 Y3 Sea\n\n28) ts52: Trade R1 B1 Ts52\n\n29) dlwillson: B G3 Sea\n\n30) ts52: Build R1 Ts52\n\n31) dlwillson: Trade G3 R3 Sea\n\n32) ts52: Discover R1 Ts52 G3 Kermit\n\n33) dlwillson: Move G1 Sea Ts52\n\n34) ts52: Build R2 Ts52\n\n35) dlwillson: Sacrifice Y3 Sea\nMove G2 Sea Ts52\nMove G1 Sky Sea\nMove G1 Sea Ts52\nCatastrophe Ts52 G\n\n36) ts52: Trade R2 G2 Ts52\n\n37) dlwillson: Sacrifice Y2 Sky\nMove R3 Sea Ts52\nMove G2 Sky Grover\n\tdlwillson: I think it&#39;s over in a move or three, depending.\n\n38) ts52: Sacrifice G2 Ts52\nBuild R2 Ts52\nBuild R2 Ts52\nCatastrophe Ts52 Red\n\tts52: Yeah, I think you&#39;re probably right.\n\n39) dlwillson: Sacrifice R1 Dlwillson\nAttack R2 Grover\n\n40) ts52: Sacrifice Y1 Grover\nMove R1 Kermit Ts52\n\n41) dlwillson: Trade G2 Y2 Dlwillson\n\n42) ts52: Trade B1 G1 Ts52\n\n43) dlwillson: Sacrifice Y2 Dlwillson\nMove G2 Grover Ts52\nMove R2 Grover Ts52\n\n44) ts52: Build G1 Ts52\n\n45) dlwillson: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n46) ts52: Pass\n\tts52: I think thats about it.\n\n47) dlwillson: A G1 Ts52\n\tdlwillson: one more move you get, and, depending on what you do, one more for me.\r\n\r\nthanks so much for the good game.\n\tts52: Thanks to you too.\n\n\tdlwillson: Good game, TS52. Thank you.\n\tts52: You too. Well played.\n\nHomeworlds Online (SDG# 21890)\nStarted: 2012.3.25, Ended: 2012.4.1\nParticipants: dragmio (S), lorgar (N), tcerier (E)\nWinner: dragmio\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) dragmio: Homeworld G3 Y1 B3\n\ttcerier: how do i enter my move?\n\tdragmio: Hm, if its your first game,you should really try a &quot;one on one&quot; game. I&#39;ll play you, no problem.\n\n3) lorgar: Build G1 Lorgar\n\n4) dragmio: Build B1 Dragmio\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) dragmio: Trade B1 R1 Dragmio\n\n7) lorgar: Discover B1 Lorgar G2 Mnar\n\n8) dragmio: Move R1 Dragmio Mnar\n\n\tdragmio: Hey, what happened?\n\tlorgar: Can we start again using three pieces stack please?\n\tdragmio: Of course. I just thought this would be an interesting change. Anyway, I&#39;ll challenge you.\n\nHomeworlds Online (SDG# 21880)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.25, Ended: 2012.3.29\nParticipants: tcerier (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 21892)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.31, Ended: 2012.4.9\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Build G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Trade G1 B1 Lorgar\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) lorgar: Build B1 Lorgar\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) lorgar: Discover B1 Lorgar G2 Mnar\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n14) lorgar: Build B2 Mnar\n\n15) SilentTitan: Discover Y2 Sol G2 Soul\n\n16) lorgar: Move G1 Lorgar Soul\n\n17) SilentTitan: Build Y3 Soul\n\n18) lorgar: Sacrifice G3 Lorgar\nBuild G1 Soul\nBuild G1 Soul\nBuild B2 Mnar\nCatastrophe Soul Green\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Sol Mnar\nMove Y2 Mnar Lorgar\n\n20) lorgar: Trade B2 G2 Mnar\n\tSilentTitan: I was sure you wouldn&#39;t try that...\n\n21) SilentTitan: Trade Y2 B2 Lorgar\n\n22) lorgar: Sacrifice B2 Mnar\nTrade B1 R1 Lorgar\nTrade G2 Y2 Mnar\n\tlorgar: yeah, and now I&#39;m screwed\n\n23) SilentTitan: Trade B2 R2 Lorgar\n\n24) lorgar: Pass\n\n25) SilentTitan: Attack R1 Lorgar South\n\n\nHomeworlds Online (SDG# 21929)\nVariants: &quot;Hard time&quot;\nStarted: 2012.3.31, Ended: 2012.4.18\nParticipants: rootbier (S), shmil1 (N)\nWinner: rootbier\n\n1) shmil1: Homeworld G1 B2 R3\n\n2) rootbier: Homeworld Y2 B3 G3\n\n3) shmil1: Build R1 Shmil1\n\n4) rootbier: Build G1 Rootbier\n\n5) shmil1: Trade R1 Y1 Shmil1\n\n6) rootbier: Discover G1 Rootbier B1 Oxix\n\n7) shmil1: Build R1 Shmil1\n\n8) rootbier: Build G1 Rootbier\n\n9) shmil1: Build Y1 Shmil1\n\n10) rootbier: Discover G1 Rootbier B1 Ixox\n\n11) shmil1: Build Y1 Shmil1\n\n12) rootbier: Build G2 Rootbier\n\n13) shmil1: Discover R1 Shmil1 Y3 Prechodnenebe\n\n14) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G2 Oxix\nBuild G3 Rootbier\n\n15) shmil1: Move R1 Prechodnenebe Oxix\n\trootbier: prehuzzawhat?\n\n16) rootbier: Trade G2 R2 Oxix\n\n17) shmil1: Attack G1 Oxix\n\n18) rootbier: Attack R1 Oxix\n\n19) shmil1: Build G2 Oxix\n\n20) rootbier: Attack G2 Oxix\n\n21) shmil1: Build G3 Oxix\n\n22) rootbier: Sacrifice G1 Ixox\nBuild G1 Oxix\nCatastrophe Oxix G\n\n23) shmil1: Trade Y1 G1 Shmil1\n\n24) rootbier: Move G2 Rootbier Oxix\n\n25) shmil1: Build R1 Shmil1\n\n26) rootbier: Trade R2 Y2 Oxix\n\n27) shmil1: Discover Y1 Shmil1 G3 Zelenenebe\n\n28) rootbier: Build G1 Rootbier\n\n29) shmil1: Build Y1 Zelenenebe\n\n30) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G3 Rootbier\nBuild G3 Oxix\n\n31) shmil1: Build Y2 Shmil1\n\n32) rootbier: Trade G2 R2 Ixox\n\n33) shmil1: Discover Y1 Zelenenebe B1 Modrenebe\n\n34) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G3 Rootbier\nBuild Y3 Oxix\n\n35) shmil1: Move Y1 Zelenenebe Modrenebe\n\n36) rootbier: Sacrifice Y3 Oxix\nMove R2 Ixox Rootbier\nMove R2 Rootbier Modrenebe\nDiscover Y2 Oxix B3 Habl\n\n37) shmil1: Sacrifice Y2 Shmil1\nMove Y1 Modrenebe Rootbier\nMove Y1 Modrenebe Rootbier\n\n38) rootbier: Sacrifice R2 Modrenebe\nAttack Y1 Rootbier\nAttack Y1 Rootbier\n\n39) shmil1: Build G3 Shmil1\n\n40) rootbier: Sacrifice Y2 Habl\nDiscover G2 Ixox Y3 Habl\nMove G2 Habl Shmil1\nCatastrophe Shmil1 G\n\n41) shmil1: Trade R3 G3 Shmil1\n\n42) rootbier: Move Y1 Rootbier Oxix\n\n43) shmil1: Build Y2 Shmil1\n\n44) rootbier: Move Y1 Rootbier Ixox\n\n45) shmil1: Move Y2 Shmil1 Ixox\n\n46) rootbier: Sacrifice R1 Oxix\nAttack Y2 Ixox\n\n47) shmil1: Move R1 Shmil1 Oxix\n\n48) rootbier: Sacrifice Y1 Oxix\nDiscover G2 Oxix Y3 Habl\n\n49) shmil1: Sacrifice Y1 Shmil1\nMove R1 Oxix Rootbier\n\n50) rootbier: Trade Y2 R2 Ixox\n\n51) shmil1: Attack G1 Rootbier\n\n52) rootbier: Sacrifice R2 Ixox\nAttack G1 Rootbier\nAttack R1 Rootbier\n\n53) shmil1: Build G1 Shmil1\n\n54) rootbier: Move G2 Habl Shmil1\n\n55) shmil1: Trade G3 R3 Shmil1\n\trootbier: laudable commitment to a bad plan\r\nready to throw it in?\n\n56) rootbier: Sacrifice G3 Rootbier\nBuild G1 Shmil1\nBuild G2 Oxix\nBuild G3 Ixox\n\n57) shmil1: Attack G2 Shmil1\n\n58) rootbier: Build G3 Shmil1\nCatastrophe Shmil1 G\n\n59) shmil1: Trade R3 G3 Shmil1\n\n60) rootbier: Move G3 Ixox Shmil1\n\n61) shmil1: Trade G3 R3 Shmil1\n\n62) rootbier: Sacrifice R1 Rootbier\nAttack R3 Shmil1\n\n\tshmil1: interesting how long it takes to win...\n\trootbier: it does take some time yeah\n\nHomeworlds Online (SDG# 21926)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.2, Ended: 2012.4.3\nParticipants: alihv (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) alihv: Homeworld G3 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) alihv: Build Y1 Alihv\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) alihv: Trade Y3 G3 Alihv\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) alihv: Build G1 Alihv\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) alihv: Discover G1 Alihv B2 Germany\n\n11) SilentTitan: Build R1 Silenttitan\n\n12) alihv: Build G1 Alihv\n\n13) SilentTitan: Discover R1 Silenttitan B3 Sol\n\n14) alihv: Discover G1 Alihv B2 France\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) alihv: Build G1 France\n\n17) SilentTitan: Discover R2 Silenttitan Y3 Soul\n\n18) alihv: Build Y1 Alihv\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) alihv: Sacrifice G3 Alihv\nBuild G2 Germany\nBuild G2 Germany\nBuild G3 France\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R2 Soul\nBuild G3 Silenttitan\n\n22) alihv: Trade G3 R3 France\n\n23) SilentTitan: Build Y2 Silenttitan\n\n24) alihv: Sacrifice G2 Germany\nBuild Y2 Alihv\nBuild G2 France\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 Sol France\nMove R2 France Alihv\n\n26) alihv: Sacrifice Y2 Alihv\nMove R3 France Alihv\nDiscover G2 France G3 Seoul\n\n27) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Alihv\nBuild R3 Alihv\nBuild G3 Silenttitan\nCatastrophe Alihv Red\n\n28) alihv: Trade G2 R2 Germany\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Sol\nBuild R3 Silenttitan\nBuild Y2 Silenttitan\n\n30) alihv: Build Y2 Alihv\n\tSilentTitan: LMAO..... I never even thought of that Seoul... I&#39;ve always done sol soul sole.... I shall promptly add that to my repertoire. \n\n31) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Sol France\nMove R3 France Alihv\n\n32) alihv: Sacrifice Y2 Alihv\nMove G2 Seoul Silenttitan\nMove R2 Germany Sol\n\n\talihv: congrats!\n\tSilentTitan: did you want to play again? \n\nHomeworlds Online (SDG# 21944)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.5, Ended: 2012.5.12\nParticipants: rootbier (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) rootbier: Build G1 Rootbier\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) rootbier: Discover G1 Rootbier Y2 Oxix\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) rootbier: Build G1 Rootbier\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n10) rootbier: Build G2 Oxix\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) rootbier: Discover G2 Oxix B3 Ixox\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n14) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G2 Oxix\nBuild G3 Rootbier\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Soul\nBuild Y2 Silenttitan\nBuild G3 Sol\n\n16) rootbier: Trade G2 R2 Ixox\n\n17) SilentTitan: Discover G1 Sol Y2 Sole\n\n18) rootbier: Move G1 Oxix Sol\n\n19) SilentTitan: Build G2 Sole\n\trootbier: gah. i went too mono. :)\n\n20) rootbier: Move G1 Rootbier Sole\n\n21) SilentTitan: Move G1 Sole Rootbier\n\n22) rootbier: Trade G3 R3 Rootbier\n\n23) SilentTitan: Sacrifice G2 Sole\nBuild Y3 Silenttitan\nPass\n\n24) rootbier: Sacrifice G2 Oxix\nBuild G2 Sol\nBuild G2 Sol\nCatastrophe Sol G\n\n25) SilentTitan: Build Y2 Soul\n\n26) rootbier: Attack G1 Rootbier\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) rootbier: Move G1 Sole Soul\n\n29) SilentTitan: Sacrifice Y2 Soul\nDiscover Y1 Soul Y2 Tic\nDiscover Y1 Soul Y2 Tac\n\n30) rootbier: Build G1 Ixox\n\n31) SilentTitan: Build Y3 Silenttitan\n\n32) rootbier: Trade G2 B2 Ixox\n\n33) SilentTitan: Trade Y3 R3 Silenttitan\n\n34) rootbier: Move G1 Rootbier Tic\n\n35) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Tic\nBuild Y3 Silenttitan\nBuild R1 Silenttitan\n\n36) rootbier: Sacrifice G1 Soul\nBuild R1 Rootbier\n\n37) SilentTitan: Sacrifice R1 Silenttitan\nAttack G1 Tic South\n\n38) rootbier: Trade R3 G3 Rootbier\n\n\n39) SilentTitan: Move Y3 Tic Ixox\n\n40) rootbier: Build B1 Ixox\n\n41) SilentTitan: Trade Y3 B3 Ixox\nCatastrophe Ixox Blue\n\n42) rootbier: Build R1 Rootbier\n\n43) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Tac Rootbier\nMove Y1 Tic Rootbier\n\trootbier: i can take you with me :)\n\tSilentTitan: LOL... that had actually been my intent. \n\n44) rootbier: Build R2 Rootbier\n\trootbier: hmm... had i not pushed for catastrophe you could have had them all with an r3 sac\r\n\r\nwould have been well worth it\n\trootbier: not that you need worry about that now\n\n45) SilentTitan: Sacrifice G1 Tic\nBuild Y2 Rootbier\nCatastrophe Rootbier Yellow\n\n46) rootbier: Trade R2 Y2 Rootbier\n\n47) SilentTitan: Trade R3 G3 Silenttitan\n\n48) rootbier: Build R2 Rootbier\n\n49) SilentTitan: Build G1 Silenttitan\n\trootbier: wow. i feel like i mitigated my losses there -- this is looking much less hopeless than it was a few rounds back. :)\n\n50) rootbier: Trade R2 Y2 Rootbier\n\n51) SilentTitan: Trade Y1 B1 Silenttitan\n\n52) rootbier: Sacrifice Y2 Rootbier\nDiscover Y2 Rootbier B3 Sluph\nMove R1 Rootbier Sluph\n\n53) SilentTitan: Discover B1 Silenttitan R3 Sol\n\n54) rootbier: Build R2 Rootbier\n\n55) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Sol\nBuild B2 Sol\nBuild Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 21978)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.7, Ended: 2012.5.4\nParticipants: Subhan64 (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld R1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) Subhan64: Build G1 Subhan64\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) Subhan64: Trade G1 Y1 Subhan64\n\n7) Remneb: Build G1 Remneb\n\n8) Subhan64: Build G1 Subhan64\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) Subhan64: Build G1 Subhan64\n\n11) Remneb: Build R2 Remneb\n\n12) Subhan64: Trade G3 R3 Subhan64\n\n13) Remneb: Discover R1 Remneb Y3 Draco\n\n14) Subhan64: Discover G1 Subhan64 R2 Elmos_world\n\n15) Remneb: Discover R2 Remneb Y3 Taken\n\n16) Subhan64: Discover R3 Subhan64 B2 Smurfette\n\n17) Remneb: Discover R2 Taken Y2 Horla\n\n18) Subhan64: Sacrifice Y1 Subhan64\nMove R3 Smurfette Subhan64\n\n19) Remneb: Move R1 Draco Horla\n\n20) Subhan64: Trade G1 Y1 Subhan64\n\n21) Remneb: Move R1 Horla Subhan64\n\n\nHomeworlds Online (SDG# 21985)\nStarted: 2012.4.9, Ended: 2012.4.30\nParticipants: krazykyle2011 (S), RogueJedi234 (N)\nWinner: RogueJedi234\n\n1) RogueJedi234: Homeworld B2 G1 Y3\n\n2) krazykyle2011: Homeworld G3 Y2 B3\n\n3) RogueJedi234: Build Y1 Roguejedi234\n\n4) krazykyle2011: Build B1 Krazykyle2011\n\n5) RogueJedi234: Trade Y1 G1 Roguejedi234\n\n6) krazykyle2011: Build B1 Krazykyle2011\n\n7) RogueJedi234: Discover G1 Roguejedi234 B3 Alpha\n\n8) krazykyle2011: Trade B1 G1 Krazykyle2011\n\n9) RogueJedi234: Build G2 Alpha\n\n10) krazykyle2011: Discover G1 Krazykyle2011 B1 Beta\n\n11) RogueJedi234: Trade G2 R2 Alpha\n\n12) krazykyle2011: Build G2 Beta\n\n13) RogueJedi234: Build G2 Alpha\n\n14) krazykyle2011: Trade G2 Y2 Beta\n\n15) RogueJedi234: Build Y1 Roguejedi234\n\n16) krazykyle2011: Build G2 Beta\n\n17) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove G2 Alpha Beta\n\n18) krazykyle2011: Sacrifice Y2 Beta\nDiscover G2 Beta B3 Delta\nMove G1 Beta Delta\n\n19) RogueJedi234: Build G2 Beta\n\n20) krazykyle2011: Trade G1 Y1 Delta\n\n21) RogueJedi234: Build Y1 Roguejedi234\n\n22) krazykyle2011: Build B1 Krazykyle2011\n\n23) RogueJedi234: Trade Y1 R1 Roguejedi234\n\n24) krazykyle2011: Trade B1 R1 Krazykyle2011\n\n25) RogueJedi234: Trade G2 B2 Beta\n\n26) krazykyle2011: Build Y1 Delta\n\n27) RogueJedi234: Build Y1 Roguejedi234\n\n28) krazykyle2011: Move G2 Delta Roguejedi234\n\n29) RogueJedi234: Attack G2 Roguejedi234\n\n30) krazykyle2011: Trade B3 G3 Krazykyle2011\n\n31) RogueJedi234: Sacrifice Y3 Roguejedi234\nMove G1 Alpha Beta\nMove G1 Beta Krazykyle2011\nMove G2 Beta Krazykyle2011\nCatastrophe Krazykyle2011 Green\n\n32) krazykyle2011: Trade Y1 G1 Delta\n\n33) RogueJedi234: Trade B2 R2 Beta\n\n34) krazykyle2011: Trade R1 G1 Krazykyle2011\n\n35) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove R2 Beta Krazykyle2011\n\n36) krazykyle2011: Build Y1 Delta\n\n37) RogueJedi234: Sacrifice R2 Alpha\nAttack G1 Krazykyle2011\nAttack B1 Krazykyle2011\n\n\nHomeworlds Online (SDG# 21986)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.10, Ended: 2012.5.11\nParticipants: agentofchaos (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\tdlwillson: Have a lot of fun!\n\n2) agentofchaos: Homeworld B2 R1 G3\n\tagentofchaos: Thanks, you too!\n\n3) dlwillson: B G1 Dlwillson\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) dlwillson: B Y2 Dlwillson\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\n10) agentofchaos: Discover Y2 Agentofchaos G3 Galactiphage\n\n11) dlwillson: T Y2 R2 Dlwillson\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) dlwillson: Build R1 Dlwillson\n\n14) agentofchaos: Trade Y2 R2 Agentofchaos\n\n15) dlwillson: Build Y2 Field\n\n16) agentofchaos: Build Y21 Galactiphage\n\n17) dlwillson: D Y2 Field B3 Sky\n\n18) agentofchaos: Build Y3 Agentofchaos\n\n19) dlwillson: B Y3 Field\n\n20) agentofchaos: Trade Y1 B1 Agentofchaos\n\n21) dlwillson: D R1 Dlwillson B2 Sea\n\n22) agentofchaos: M R2 Agentofchaos Galactiphage\n\n23) dlwillson: Move Y1 Field Sky\n\n24) agentofchaos: Move G3 Agentofchaos Sky\n\n25) dlwillson: Trade Y1 G1 Sky\n\n26) agentofchaos: Build R1 Galactiphage\n\n27) dlwillson: B G1 Sky\n\n28) agentofchaos: Sacrifice R2 Galactiphage\nAttack G1 Sky\nAttack G1 Sky\n\n29) dlwillson: T Y2 G2 Sky\nC Sky G\n\n30) agentofchaos: Trade B1 G1 Agentofchaos\n\n31) dlwillson: B R2 Dlwillson\n\tdlwillson: Can we go back to the speed we had at the beginning? I&#39;m really enjoying this game. :-)\n\n32) agentofchaos: Build R2 Galactiphage\n\tagentofchaos: I&#39;m enjoying it too. I&#39;ll try to play faster but I do have a lot going on in my life. \n\n33) dlwillson: Move R2 Dlwillson Field\n\n34) agentofchaos: Move R2 Galactiphage Sea\n\n35) dlwillson: B R3 Dlwillson\n\n36) agentofchaos: Build R3 Galactiphage\n\n37) dlwillson: B R3 Field\n\n38) agentofchaos: Attack R1 Sea\n\n39) dlwillson: S Y3 Field\nM R2 Field Galactiphage\nM R2 Dlwillson Field\nM R2 Field Galactiphage\nC Galactiphage R\n\n40) agentofchaos: Trade R1 Y1 Sea\n\n41) dlwillson: B R1 Dlwillson\n\n42) agentofchaos: Build Y1 Agentofchaos\n\n43) dlwillson: M R3 Dlwillson Sea\n\n44) agentofchaos: Sacrifice Y1 Sea\nMove R2 Sea Galactiphage\n\n45) dlwillson: Build G1 Dlwillson\n\n46) agentofchaos: Build Y1 Galactiphage\n\n47) dlwillson: M G1 Dlwillson Sea\n\n48) agentofchaos: Trade G1 B1 Agentofchaos\n\n49) dlwillson: Build R1 Sea\n\n50) agentofchaos: Build R2 Galactiphage\n\n51) dlwillson: Trade R3 Y3 Sea\n\n52) agentofchaos: Discover Y2 Galactiphage G2 Quasarville\n\n53) dlwillson: Build G1 Dlwillson\n\n54) agentofchaos: Trade Y3 G3 Agentofchaos\n\n55) dlwillson: S G3 Dlwillson\nB G1 Sea\nB G2 Sea\nB G3 Dlwillson\n\n56) agentofchaos: Build Y2 Agentofchaos\n\n57) dlwillson: S G3 Dlwillson\nB Y3 Sea\nB R2 Sea\nB G3 Dlwillson\n\n58) agentofchaos: Build Y3 Quasarville\n\n59) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB R3 Field\nB G3 Dlwillson\n\n60) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y1 Galactiphage Sea\nMove Y2 Galactiphage Sea\nCatastrophe Sea Y\n\n61) dlwillson: T R3 Y3 Dlwillson\n\tdlwillson: Wow! The bank is looking pretty slim.\n\tagentofchaos: You&#39;re not leaving me much!\n\n62) agentofchaos: Build R3 Galactiphage\n\n63) dlwillson: S Y3 Dlwillson\nM G2 Sea Galactiphage\nM R1 Sea Galactiphage\nD R3 Field Y3 Golden\nC Galactiphage R\n\n64) agentofchaos: Trade B1 R1 Agentofchaos\n\n65) dlwillson: S G3 Dlwillson\nB R2 Golden\nB R2 Dlwillson\nB G3 Dlwillson\n\n66) agentofchaos: Move Y3 Quasarville Galactiphage\n\n67) dlwillson: T R2 Y2 Dlwillson\n\n68) agentofchaos: M R1 Agentofchaos Galactiphage\n\n69) dlwillson: S Y2 Dlwillson\nM R2 Golden Agentofchaos\nM R3 Golden Agentofchaos\n\n70) agentofchaos: Attack R3 Agentofchaos\n\n71) dlwillson: S G2 Galactiphage\nB R2 Agentofchaos\nB R3 Sea\nC Agentofchaos R\n\n72) agentofchaos: Build G2 Agentofchaos\n\n73) dlwillson: T R3 Y3 Sea\n\n74) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y1 Quasarville\nBuild Y2 Quasarville\n\n75) dlwillson: S Y3 Sea\nM G3 Dlwillson Agentofchaos\nM R3 Field Dlwillson\nM R3 Dlwillson Agentofchaos\n\n76) agentofchaos: Sacrifice R1 Galactiphage\nAttack R3 Agentofchaos\n\n77) dlwillson: Sacrifice R2 Sea\nAttack R3 Agentofchaos\nAttack Y1 Agentofchaos\n\n\tagentofchaos: Good game, well played\n\nHomeworlds Online (SDG# 21982)\nVariants: &quot;No undo&quot;\nStarted: 2012.4.10, Ended: 2012.4.24\nParticipants: ajo (S), rootbier (N)\nWinner: ajo\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) ajo: Homeworld G3 Y1 B3\n\n3) rootbier: Build G1 Rootbier\n\n4) ajo: Build B1 Ajo\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) ajo: Discover B1 Ajo G2 Alpha\n\n7) rootbier: Build G1 Rootbier\n\n8) ajo: Build B1 Ajo\n\n9) rootbier: Build G1 Rootbier\n\n10) ajo: Build B2 Alpha\n\n11) rootbier: Discover G1 Rootbier B3 Plague\n\n12) ajo: Trade B2 R2 Alpha\n\n13) rootbier: Build G1 Plague\n\n14) ajo: Build B2 Alpha\n\n15) rootbier: Trade G1 Y1 Plague\n\n16) ajo: Trade B2 Y2 Alpha\n\n17) rootbier: Discover G1 Rootbier B3 Oxix\n\n18) ajo: Build B2 Alpha\n\n19) rootbier: Discover G1 Plague B2 Habl\n\n20) ajo: Build B2 Ajo\n\n21) rootbier: Build G1 Rootbier\n\n22) ajo: Move B2 Ajo Habl\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild G2 Habl\nBuild G2 Oxix\nBuild G3 Rootbier\n\tajo: I think I just screwed up.\n\trootbier: meh. i do it all the time.\r\ndoesn&#39;t look unrecoverable.\n\n24) ajo: Sacrifice R2 Alpha\nAttack G2 Habl\nAttack G1 Habl\n\tajo: Oh, I think I&#39;ll be all right now. I was momentarily worried that you were going to build your g3 at habl, grab my blue,... I hadn&#39;t thought it all through, but I was certainly worried that my role would become totally reactive for several turns. But *now*...\n\n25) rootbier: Sacrifice G3 Rootbier\nBuild R1 Rootbier\nBuild Y1 Plague\nBuild G3 Rootbier\n\trootbier: no. i have a weakness in not ever wanting to leave my home 3-less. it def. limits my trickiness. \n\trootbier: you&#39;ve def. got the upper hand here. have had.\n\n26) ajo: Trade G2 Y2 Habl\n\tajo: Nobody ever got fired for buying IBM, and nobody ever kicked themselves for keeping a big ship at home in lieu of trickiness.\n\n27) rootbier: Sacrifice Y1 Plague\nMove G2 Oxix Habl\n\trootbier: nobody ever ever? :)\n\n28) ajo: Trade B3 R3 Ajo\n\n29) rootbier: Discover R1 Rootbier B3 Occupyb3\n\n30) ajo: Build R1 Ajo\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G3 Rootbier\nBuild R2 Occupyb3\n\n32) ajo: Sacrifice R1 Ajo\nAttack G2 Habl\n\n33) rootbier: Trade R1 Y1 Occupyb3\n\n34) ajo: Sacrifice G2 Habl\nBuild Y3 Habl\nBuild Y3 Alpha\n\n35) rootbier: Sacrifice G2 Oxix\nBuild Y3 Occupyb3\nBuild G2 Oxix\n\n36) ajo: Move Y2 Habl Occupyb3\n\n37) rootbier: Sacrifice Y3 Occupyb3\nMove G1 Oxix Alpha\nMove G2 Oxix Alpha\nDiscover G1 Rootbier Y3 Commit\n\n38) ajo: Build B3 Ajo\n\n39) rootbier: Build G2 Alpha\nCatastrophe Alpha G\n\trootbier: oh decisions!\n\n40) ajo: Sacrifice R3 Ajo\nAttack R2 Occupyb3\nAttack Y1 Occupyb3\nPass\n\n41) rootbier: Build G1 Rootbier\n\tajo: I like making my opponent take a tough decision. It usually means both options were terrible for him. :)\n\tajo: Unsolicited advertisement break: Tell all your friends to check out my Kickstarter board game project, which launched this morning! http://kck.st/colossal-cave\n\trootbier: yeah. sorry, but i def. don&#39;t appreciate unsolicited advertising.\r\n\r\nprobably if you&#39;d just talked to me. &quot;what kind of games do you like?&quot; &quot;oh yeah, i&#39;m working on a game.&quot;\r\nprobably i&#39;d have gotten curious and asked.\n\n42) ajo: Build Y2 Habl\n\tajo: No prob. :)\n\n43) rootbier: Discover Y1 Plague G2 Runh\n\trootbier: let&#39;s fix that\r\nmy &quot;sorry, but&quot; was more of an &quot;excuse me, but&quot;\r\ni wasn&#39;t apologizing to you\r\n\r\ni&#39;m saying please don&#39;t use games with me to advertise at me\n\n44) ajo: Build G2 Habl\n\n45) rootbier: Sacrifice G3 Rootbier\nBuild G2 Commit\nBuild G3 Rootbier\nBuild Y3 Runh\n\n46) ajo: Sacrifice Y2 Habl\nMove Y2 Occupyb3 Rootbier\nMove Y1 Occupyb3 Rootbier\n\n47) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Runh\nBuild R1 Rootbier\nBuild G3 Rootbier\n\n48) ajo: Sacrifice R2 Occupyb3\nAttack R1 Rootbier\nAttack R1 Rootbier\n\n49) rootbier: Discover G2 Commit B2 Pole\n\n50) ajo: Sacrifice B2 Habl\nTrade G1 R1 Habl\nTrade R1 G1 Rootbier\n\n\nHomeworlds Online (SDG# 21994)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.14, Ended: 2012.4.18\nParticipants: Jesse (S), alihv (N)\nWinner: Jesse\n\n1) alihv: Home B1 G2 Y3\n\n2) Jesse: Homeworld B1 G3 B3 *\n\talihv: Hi, have fun\n\tJesse: Hello, you too.\n\n3) alihv: Build Y1 Alihv\n\n4) Jesse: Build B1 Jesse\n\n5) alihv: Trade Y3 B3 Alihv\n\n6) Jesse: Trade B3 Y3 Jesse\n\n7) alihv: Discover Y1 Alihv G3 Aa\n\n8) Jesse: Build Y1 Jesse\n\n9) alihv: Build Y1 Aa\n\n10) Jesse: Discover Y1 Jesse G2 Slime\n\n11) alihv: Move Y1 Aa Alihv\n\n12) Jesse: Build Y2 Slime\n\n13) alihv: Build Y2 Aa\n\n14) Jesse: Move B1 Jesse Slime\n\n15) alihv: M B3 Alihv Aa\n\n16) Jesse: Build B2 Slime\n\n17) alihv: T B3 R3 Aa\n\n18) Jesse: Trade B2 R2 Slime\n\n19) alihv: Sacrifice Y2 Aa\nMove R3 Aa Slime\nMove R3 Slime Jesse\n\n20) Jesse: Sacrifice R2 Slime\nAttack R3 Jesse\nPass\n\n\talihv: I&#39;m such a newbie... haven&#39;t thought of the red sacrifice :) \r\nnice game!\n\tJesse: It&#39;s a mistake you&#39;ll make, hopefully, just the one time. :) Aways watch out for sacrifices. Their actions can be taken anywhere.\n\nHomeworlds Online (SDG# 21967)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.14, Ended: 2012.4.28\nParticipants: alihv (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) alihv: Homeworld B1 G3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\talihv: hi, good luck!\n\n4) alihv: B Y1 Alihv\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) alihv: Discover Y1 Alihv B2 Los\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) alihv: B Y1 Alihv\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) alihv: Build Y2 Alihv\n\tSilentTitan: oh... thank you ... good luck to you as well...\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) alihv: D Y2 Alihv G2 Laos\n\n13) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n14) alihv: Trade Y1 G1 Los\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) alihv: Build G2 Los\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n18) alihv: Sacrifice Y3 Alihv\nMove Y2 Laos Sol\nMove Y2 Sol Silenttitan\nDiscover G2 Los Y3 Laws\nCatastrophe Silenttitan Y\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) alihv: Build Y2 Alihv\n\n21) SilentTitan: Trade G2 Y2 Silenttitan\n\n22) alihv: Move Y1 Alihv Los\n\n23) SilentTitan: Build G2 Silenttitan\n\n24) alihv: B Y2 Los\n\n25) SilentTitan: Build Y3 Silenttitan\n\n26) alihv: S G2 Laws\nB Y3 Alihv\nB G2 Los\n\n27) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sol Los\nMove Y1 Los Alihv\nDiscover Y1 Sol B2 Sky\n\n28) alihv: Sacrifice Y2 Alihv\nDiscover G2 Los Y3 Less\nMove Y1 Los Soul\n\n29) SilentTitan: Build Y2 Alihv\n\n30) alihv: Trade Y3 G3 Alihv\n\n31) SilentTitan: Trade Y1 B1 Alihv\n\n32) alihv: Trade G1 R1 Los\n\n33) SilentTitan: Sacrifice Y2 Alihv\nMove G1 Soul Sky\nMove G1 Sky Alihv\n\n34) alihv: T G3 R3 Alihv\n\n35) SilentTitan: Sacrifice G2 Silenttitan\nBuild G1 Alihv\nBuild B1 Alihv\n\n36) alihv: Attack G1 Alihv\n\n37) SilentTitan: Build B3 Alihv\nCatastrophe Alihv Blue\n\n38) alihv: S G1 Alihv\nB R1 Alihv\n\n39) SilentTitan: Build G1 Alihv\n\n\talihv: Good game. Thank you for playing.\n\nHomeworlds Online (SDG# 22013)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.15, Ended: 2012.4.23\nParticipants: sompm (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\tMagicJohn: Have a good game!\n\n2) sompm: Homeworld G3 B2 Y3\n\tsompm: You too!\n\n3) MagicJohn: Build G1 Magicjohn\n\n\nHomeworlds Online (SDG# 22064)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.23, Ended: 2012.5.10\nParticipants: Aristos (S), MagicJohn (N)\nWinner: Aristos\n\n1) MagicJohn: Homeworld Y2 B1 G3\n\tAristos: Well met. Good luck.\n\tMagicJohn: Live long and prosper!\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) Aristos: Build Y1 Aristos\n\n5) MagicJohn: Discover G1 Magicjohn B3 Firstbase\n\tAristos: Sorry for taking so long on the opening moves... it&#39;s been a crazy week at work, and I&#39;ve been coming home late. \n\tMagicJohn: Not to worry.  Life can get a tad complicated from time to time....\n\n6) Aristos: Build Y1 Aristos\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) Aristos: Discover Y1 Aristos Y1 Breakout\n\n9) MagicJohn: Build G1 Firstbase\n\n10) Aristos: Build Y2 Aristos\n\n11) MagicJohn: Trade G1 R1 Magicjohn\n\n12) Aristos: Sacrifice Y1 Aristos\nDiscover Y2 Aristos Y1 Illium\n\n13) MagicJohn: Build G1 Magicjohn\n\n14) Aristos: Build Y2 Aristos\n\n15) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Firstbase\nBuild G2 Magicjohn\nBuild G3 Magicjohn\n\n16) Aristos: Build Y3 Aristos\n\n17) MagicJohn: Trade G3 Y3 Magicjohn\n\n18) Aristos: Trade Y2 R2 Aristos\n\n19) MagicJohn: Trade G2 Y2 Firstbase\n\n20) Aristos: Discover Y2 Illium G3 Planum\n\n21) MagicJohn: Move Y3 Magicjohn Planum\n\n22) Aristos: Build Y1 Planum\n\n23) MagicJohn: Sacrifice R1 Magicjohn\nAttack Y2 Planum\n\n24) Aristos: Move Y1 Breakout Planum\nCatastrophe Planum Yellow\n\n25) MagicJohn: Discover G1 Firstbase Y2 Secondbase\n\tAristos: So... we meet again, MagicJohn. I see your ship has thrust itself into my space. Do not think you can sneak past my defenses so easily!\n\tMagicJohn: Why can&#39;t we all just get along?????\n\n26) Aristos: Build R1 Aristos\n\tMagicJohn: And ignore minor indiscretions??  \n\n27) MagicJohn: Build G2 Secondbase\n\tAristos: I thought about your request to just get along, and decided you were right. So I flew in to sign a peace treaty, completely forgetting about the physics of catastrophes. My government expresses profound sorrow for your loss. Strangely, both of my ships were piloted by computer... the crew seems to have disembarked early for some reason.\n\n28) Aristos: Sacrifice Y3 Aristos\nDiscover Y3 Aristos R1 Warpath\nDiscover Y3 Warpath R3 Warpath2\nMove Y3 Warpath2 Magicjohn\n\n29) MagicJohn: Move Y2 Firstbase Magicjohn\n\n30) Aristos: Sacrifice R2 Aristos\nAttack G2 Magicjohn\nAttack Y2 Magicjohn\n\n31) MagicJohn: Trade G1 B1 Magicjohn\n\n32) Aristos: Trade Y2 R2 Magicjohn\n\tMagicJohn: First invitation, then visit! There are legitimate reasons for etiquette protocols to be observed. At a bare minimum, the soup will have to be watered down.... It&#39;s this kind of behavior that leads to xenophobia and general mistrust between peoples. SHAME, SHAME, SHAME! \n\n33) MagicJohn: Sacrifice G1 Secondbase\nBuild B1 Magicjohn\n\tAristos: I am ashamed. I hope you&#39;ll forgive my barbaric manners.\n\tMagicJohn: Can&#39;t see any way out of this mess.  Guess it&#39;s back to primordial ooze for a rebirth in some distant part of the universe.   I do, however, get a little stronger after each extinction.  Better put on some soup. \r\nP.S.  Good game. Thanks for the lesson.  MJ\n\n34) Aristos: Sacrifice R2 Magicjohn\nAttack B1 Magicjohn\nAttack B1 Magicjohn\n\n\tAristos: Good game.\n\nHomeworlds Online (SDG# 22005)\nStarted: 2012.4.24, Ended: 2012.5.5\nParticipants: rootbier (S), ts52 (N)\nWinner: rootbier\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) rootbier: Build G1 Rootbier\n\n5) ts52: Trade G1 B1 Ts52\n\n6) rootbier: Discover G1 Rootbier B2 Oxies\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) rootbier: Build G1 Rootbier\n\n9) ts52: Build B1 Kermit\n\n10) rootbier: Build G1 Oxies\n\trootbier: Sorry, I missed your well-wishing below.\r\n\r\nThanks. :)\r\nHave fun!\n\n11) ts52: Build G2 Ts52\n\n12) rootbier: Sacrifice G3 Rootbier\nBuild G2 Rootbier\nBuild G2 Oxies\nBuild G3 Rootbier\n\n13) ts52: Build B2 Kermit\n\n14) rootbier: Trade G2 Y2 Oxies\n\n15) ts52: Trade G2 Y2 Ts52\n\n16) rootbier: Trade G2 R2 Rootbier\n\n17) ts52: Trade B2 R2 Kermit\n\n18) rootbier: Discover G1 Oxies Y3 Comswin\n\n19) ts52: Build G2 Ts52\n\n20) rootbier: Sacrifice G3 Rootbier\nBuild G2 Comswin\nBuild G2 Oxies\nBuild G3 Rootbier\n\n21) ts52: Discover G2 Ts52 B3 Grover\n\n22) rootbier: Sacrifice G3 Rootbier\nBuild Y1 Oxies\nBuild Y1 Oxies\nBuild G3 Rootbier\n\n23) ts52: Move Y2 Ts52 Kermit\n\n24) rootbier: Sacrifice Y2 Oxies\nDiscover Y1 Oxies B3 Plesj\nMove G1 Oxies Plesj\n\n25) ts52: Discover R2 Kermit Y2 Zoe\n\n26) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Oxies\nBuild Y3 Plesj\nBuild G3 Plesj\n\n27) ts52: Build B2 Kermit\n\n28) rootbier: Sacrifice Y3 Plesj\nMove G1 Comswin Ts52\nMove G2 Comswin Ts52\nMove G1 Plesj Ts52\nCatastrophe Ts52 G\n\n\tts52: Thanks for the game. Should&#39;ve seen that coming.\n\nHomeworlds Online (SDG# 22020)\nVariants: &quot;Hard time&quot;\nStarted: 2012.4.24, Ended: 2012.4.24\nParticipants: SilentTitan (S), rentabuddha (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 22083)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.1, Ended: 2012.5.6\nParticipants: Krooze (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Krooze: Homeworld G2 B3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Krooze: Build Y1 Krooze\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Krooze: Discover Y1 Krooze G1 Corneria\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Krooze: Build Y1 Krooze\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) Krooze: Build Y2 Krooze\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Krooze: Trade Y1 B1 Krooze\n\n13) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n14) Krooze: Build B1 Krooze\n\n15) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Sol Corneria\nMove Y1 Corneria Krooze\n\n16) Krooze: Sacrifice B1 Krooze\nTrade Y3 R3 Krooze\n\n17) SilentTitan: Discover Y1 Krooze G1 Sole\n\n18) Krooze: Build B1 Krooze\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) Krooze: Trade B1 R1 Krooze\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Soul\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n22) Krooze: Move R1 Krooze Sole\n\n23) SilentTitan: Trade G3 Y3 Silenttitan\n\n24) Krooze: Attack Y1 Sole\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Soul\n\n26) Krooze: Move Y1 Corneria Soul\n\n27) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover G1 Soul Y1 Tic\nDiscover G2 Soul G1 Tac\nDiscover G3 Silenttitan Y3 Toe\n\n28) Krooze: Build Y2 Krooze\n\n29) SilentTitan: Trade G3 Y3 Silenttitan\n\n30) Krooze: Move R1 Sole Soul\n\n31) SilentTitan: Trade G2 R2 Silenttitan\n\n32) Krooze: Move R3 Krooze Tic\n\n33) SilentTitan: Sacrifice G3 Toe\nBuild G2 Soul\nBuild G3 Tic\nBuild G3 Tic\n\n34) Krooze: Attack G3 Tic\n\n35) SilentTitan: Sacrifice R2 Silenttitan\nAttack R3 Tic South\nAttack G3 Tic South\n\n\tKrooze: Ah, so you CAN take a larger ship with a smaller ship&#39;s sacrifice.  I must have been inputting the command incorrectly when I tried.  Really wish the UI was more streamlined.\n\tKrooze: I apologize, but I can&#39;t seem to figure this out.  What command would I type to sacrifice my r1 to take your g3?\n\tKrooze: Aaaaaah, I think I get it now.  You could only attack my r3 because of your g3.  This is my first game, as you can tell.\n\tKrooze: Thanks for an educational game.  I hope to play you again.\n\tSilentTitan: Actually, you played so well.. that I had no idea this was your first game.  Truly that is a raity. had I known this was your first game, I would have given you the option of pulling back the R3 once you failed to do so. \r\n\r\nYou may challenge me again via my standing challenge.  That is 90% of the reason it is there \n\tKrooze: Thanks for the kind words!  I&#39;ll be sure to challenge you again soon.  I enjoyed the game a lot.\r\n\r\nMy secret (if you can call it that) is having physical pieces set up at home, so I can rearrange the worlds in a way that makes more sense to me spatially.  If I&#39;d been relying solely on the graphic representation here, I would have been lost.  Besides, having pieces set up makes a game (any game) feel more &quot;real&quot; to me.\r\n\r\nFor that reason, I&#39;m limited to one game at a time, at least until I get more comfortable with the game.  Currently playing against ts52, and I&#39;ll hopefully be a more worthy opponent next time we meet.\n\nHomeworlds Online (SDG# 22127)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.2, Ended: 2012.5.30\nParticipants: ts52 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tSilentTitan: thank you and to you as well.\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n6) ts52: Trade G3 R3 Ts52\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) ts52: Build R1 Ts52\n\n9) SilentTitan: Trade G1 Y1 Silenttitan\n\n10) ts52: Build R2 Ts52\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) ts52: Discover R2 Ts52 Y2 Zoe\n\n13) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n14) ts52: Trade R3 G3 Ts52\n\n15) SilentTitan: Trade R2 Y2 Sol\n\n16) ts52: Build R2 Ts52\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) ts52: Trade R2 Y2 Ts52\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sol\n\n20) ts52: Discover Y2 Ts52 G2 Kermit\n\n21) SilentTitan: Move Y3 Sol Kermit\n\n22) ts52: Discover Y2 Kermit G3 Robin\n\n23) SilentTitan: Trade Y3 G3 Silenttitan\n\n24) ts52: Build Y3 Robin\n\n25) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Silenttitan Robin\nMove Y1 Silenttitan Robin\nCatastrophe Robin Yellow\n\n26) ts52: Trade G1 Y1 Ts52\n\n27) SilentTitan: Trade G1 Y1 Silenttitan\n\n28) ts52: Build G1 Ts52\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Kermit\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n30) ts52: Build R2 Ts52\n\n31) SilentTitan: Move Y3 Kermit Ts52\n\n32) ts52: Attack Y3 Ts52\n\n33) SilentTitan: Move Y2 Kermit Ts52\nCatastrophe Ts52 Yellow\n\n34) ts52: Trade R2 Y2 Ts52\n\n35) SilentTitan: Trade Y1 G1 Silenttitan\n\n36) ts52: Build R2 Ts52\n\n37) SilentTitan: Trade R1 G1 Silenttitan\n\n38) ts52: Move G1 Ts52 Zoe\n\n39) SilentTitan: Discover Y2 Silenttitan R3 Rain\n\n40) ts52: Discover R2 Zoe Y3 Bigbird\n\n41) SilentTitan: Trade G1 B1 Silenttitan\n\n42) ts52: Build Y1 Ts52\n\n43) SilentTitan: Sacrifice B1 Silenttitan\nTrade Y2 R2 Rain\n\n44) ts52: Move G1 Zoe Bigbird\n\n45) SilentTitan: Build G1 Silenttitan\n\n46) ts52: Build G2 Bigbird\n\n47) SilentTitan: Trade G1 B1 Silenttitan\n\n48) ts52: Discover R2 Ts52 B2 Gonzo\n\n49) SilentTitan: Build G1 Silenttitan\n\n50) ts52: Sacrifice G2 Bigbird\nBuild R1 Ts52\nBuild R3 Gonzo\n\n51) SilentTitan: Discover G1 Silenttitan B3 Sky\n\n52) ts52: Build R3 Bigbird\n\n53) SilentTitan: Build G2 Silenttitan\n\n54) ts52: Trade R3 G3 Gonzo\n\n55) SilentTitan: Trade G1 B1 Sky\n\n56) ts52: Build R3 Gonzo\n\n57) SilentTitan: Trade G1 B1 Silenttitan\n\n58) ts52: Sacrifice Y1 Ts52\nMove R3 Gonzo Sky\n\n59) SilentTitan: Sacrifice Y3 Silenttitan\nMove B1 Silenttitan Ts52\nMove B1 Silenttitan Ts52\nDiscover B1 Sky Y2 Sol\n\n60) ts52: Sacrifice R2 Bigbird\nAttack B1 Ts52\nAttack B1 Ts52\n\n61) SilentTitan: Move B1 Sol Ts52\nCatastrophe Ts52 Blue\n\n\tts52: Thanks for the game!\n\tSilentTitan: Thank you.\n\nHomeworlds Online (SDG# 22114)\nStarted: 2012.5.6, Ended: 2012.5.10\nParticipants: Krooze (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Krooze: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tKrooze: Thanks!\n\n4) Krooze: Build G1 Krooze\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Krooze: Build G1 Krooze\n\n7) ts52: Build Y2 Ts52\n\n8) Krooze: Trade G1 R1 Krooze\n\tKrooze: *slaps forehead*\n\n9) ts52: Trade Y2 R2 Ts52\n\n10) Krooze: Trade G1 B1 Krooze\n\n11) ts52: Build Y2 Ts52\n\n12) Krooze: Build B1 Krooze\n\n13) ts52: Trade Y2 B2 Ts52\n\n14) Krooze: Discover B1 Krooze B2 Colle\n\n15) ts52: Discover B2 Ts52 G3 Kermit\n\n16) Krooze: Sacrifice G3 Krooze\nBuild B1 Colle\nBuild B3 Krooze\nBuild R1 Krooze\n\n17) ts52: Build B3 Kermit\n\n18) Krooze:\nTrade B1 R1 Colle\n\n19) ts52: Move Y1 Ts52 Kermit\n\n20) Krooze: Trade B3 G3 Krooze\n\n21) ts52: Build Y2 Kermit\n\n22) Krooze: Trade B1 G1 Colle\n\n23) ts52: Move Y2 Kermit Colle\n\n24) Krooze: Build R2 Colle\n\n25) ts52: Sacrifice R2 Ts52\nAttack R2 Colle\nAttack R1 Colle\n\n26) Krooze: Move R1 Krooze Colle\n\n27) ts52: Sacrifice R2 Colle\nAttack R1 Colle\nAttack G1 Colle\n\n28) Krooze: Build R2 Krooze\n\n29) ts52: Build Y2 Kermit\n\n30) Krooze: Trade R2 Y2 Krooze\n\n31) ts52: Build Y3 Colle\n\n32) Krooze: Sacrifice Y2 Krooze\nMove R1 Krooze Colle\nMove R1 Colle Kermit\n\n33) ts52: Sacrifice R1 Colle\nAttack R1 Kermit\n\n34) Krooze: Build G1 Krooze\n\n35) ts52: Move Y3 Colle Krooze\n\n36) Krooze: Trade G1 R1 Krooze\n\n37) ts52: Sacrifice R1 Kermit\nAttack R1 Krooze\n\n\tKrooze: Good game!  Thanks for the lesson!\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 22158)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.10, Ended: 2012.6.12\nParticipants: Aristos (S), goulo (N)\nWinner: Aristos\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) Aristos: Homeworld G1 B2 Y3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\tAristos: Well met.\n\n4) Aristos: Build Y1 Aristos\n\n5) goulo: Trade Y1 G1 Goulo\n\n6) Aristos: Trade Y1 G1 Aristos\n\n7) goulo: Build G2 Goulo\n\n8) Aristos: Discover G1 Aristos Y3 Freedom\n\n9) goulo: Discover G2 Goulo Y1 Citroneto\n\n10) Aristos: Build Y1 Aristos\n\n11) goulo: Trade G1 R1 Goulo\n\n12) Aristos: Trade Y1 R1 Aristos\n\n13) goulo: Build Y1 Goulo\n\n14) Aristos: Build G1 Freedom\n\n15) goulo: Build G2 Citroneto\n\n16) Aristos: Discover G1 Freedom B1 Change\n\n17) goulo: Move G2 Citroneto Freedom\n\n18) Aristos: Build G2 Change\n\n19) goulo: Build G3 Citroneto\n\n20) Aristos: Build G3 Freedom\n\n21) goulo: Sacrifice G2 Citroneto\nBuild G2 Freedom\nBuild R1 Goulo\nCatastrophe Freedom G\n\n22) Aristos: Build R2 Aristos\n\n23) goulo: Move R1 Goulo Citroneto\n\n24) Aristos: Discover R2 Aristos Y3 Transport\n\n25) goulo: Build R2 Citroneto\n\n26) Aristos: Build Y1 Aristos\n\n27) goulo: Trade Y1 B1 Goulo\n\n28) Aristos: Discover Y1 Aristos G3 Multiplier\n\n29) goulo: Move R2 Citroneto Multiplier\n\n30) Aristos: Move Y1 Multiplier Change\n\n31) goulo: Sacrifice G3 Citroneto\nBuild R2 Goulo\nBuild R3 Multiplier\nBuild R3 Citroneto\n\n32) Aristos: Sacrifice G1 Change\nBuild R3 Transport\n\n33) goulo: Sacrifice Y3 Goulo\nMove R1 Goulo Citroneto\nMove R1 Citroneto Transport\nMove R1 Citroneto Transport\nCatastrophe Transport R\n\n34) Aristos: Build G1 Change\n\n35) goulo: Trade R2 Y2 Goulo\n\n36) Aristos: Trade G1 B1 Change\n\n37) goulo: Move R3 Citroneto Goulo\n\n38) Aristos: Build R1 Aristos\n\n39) goulo: Build Y1 Goulo\n\n40) Aristos: Build G1 Change\n\n41) goulo: Discover Y1 Goulo R1 Rubeneto\n\tAristos: No way out. Good game.\n\n42) Aristos: Move R1 Aristos Multiplier\n\tgoulo: Thanks, though it&#39;s being tricky to actually close the deal! :)\n\n43) goulo: Sacrifice Y1 Rubeneto\nMove R3 Multiplier Change\n\n44) Aristos: Sacrifice G2 Change\nBuild B2 Change\nBuild R1 Multiplier\n\n45) goulo: Sacrifice Y2 Goulo\nMove B1 Goulo Change\nDiscover R3 Change Y3 Citronego\nCatastrophe Change B\n\n46) Aristos: Build Y1 Aristos\n\n47) goulo: Build R2 Goulo\n\n48) Aristos: Build R2 Aristos\n\n49) goulo: Trade R2 G2 Goulo\n\n50) Aristos: Build Y1 Aristos\n\n51) goulo: Build G1 Goulo\n\n52) Aristos: Sacrifice Y1 Aristos\nDiscover R1 Multiplier Y1 Escape\n\n53) goulo: Trade G2 Y2 Goulo\n\n54) Aristos: Build R2 Multiplier\n\n55) goulo: Build R3 Goulo\n\n56) Aristos: Attack R2 Multiplier\n\n57) goulo: Sacrifice Y2 Goulo\nMove R3 Goulo Escape\nMove R3 Escape Multiplier\nCatastrophe Multiplier R\n\n58) Aristos: Build Y1 Aristos\n\n59) goulo: Trade R3 Y3 Goulo\n\n60) Aristos: Discover Y1 Aristos G3 Spawn\n\n61) goulo: Build Y2 Goulo\n\n62) Aristos: Build Y2 Spawn\n\n63) goulo: Discover Y2 Goulo G1 Smeraldeto\n\n64) Aristos: Move Y2 Spawn Smeraldeto\n\n65) goulo: Move Y2 Smeraldeto Spawn\n\n66) Aristos: Build Y2 Smeraldeto\n\n67) goulo: Build G2 Goulo\n\tAristos: I see you&#39;re trying a new security measure: I can&#39;t invade what I cannot spell!\n\n68) Aristos: Move Y2 Smeraldeto Goulo\n\tgoulo: Haha! :) I pretty much always use Esperanto star names. :)\n\n69) goulo: Sacrifice R3 Citronego\nAttack Y1 Spawn\nAttack Y2 Goulo\nPass\n\n70) Aristos: Build Y3 Smeraldeto\n\n71) goulo: Trade Y2 R2 Goulo\n\n72) Aristos: Discover Y1 Aristos B3 Morph\n\n73) goulo: Discover Y1 Spawn B1 Safireto\n\n74) Aristos: Build Y2 Aristos\n\tAristos: I do wish this had a way to &quot;show me what the board would look like if I made move X&quot; without actually making the move. I am too visual sometimes to judge the right move without actually seeing it. \n\n75) goulo: Move G1 Goulo Safireto\n\n76) Aristos: Sacrifice Y2 Smeraldeto\nMove Y2 Aristos Spawn\nMove Y2 Spawn Safireto\n\n77) goulo: Build Y2 Spawn\n\n78) Aristos: Sacrifice R2 Aristos\nAttack G1 Safireto\nAttack Y1 Safireto\n\n79) goulo: Move G2 Goulo Escape\n\n80) Aristos: Build G2 Safireto\n\n81) goulo: Build R1 Goulo\n\n82) Aristos: Build R2 Aristos\n\n83) goulo: Sacrifice R1 Goulo\nAttack R1 Escape\n\n84) Aristos: Discover Y1 Morph B1 Shift\n\n85) goulo: Build R1 Goulo\n\n86) Aristos: Move Y3 Smeraldeto Spawn\n\n87) goulo: Sacrifice Y2 Spawn\nDiscover Y2 Spawn R2 Rubeno\nDiscover R1 Goulo B1 Mirteleto\n\n88) Aristos: Trade Y1 G1 Shift\n\n89) goulo: Sacrifice G2 Escape\nBuild R3 Goulo\nBuild R3 Mirteleto\n\n90) Aristos: Build G2 Shift\n\n91) goulo: Move R3 Goulo Safireto\n\n92) Aristos: Sacrifice Y2 Safireto\nMove G2 Safireto Goulo\nMove G1 Safireto Goulo\n\n93) goulo: Attack G2 Goulo\n\n94) Aristos: Build G2 Goulo\nCatastrophe Goulo Green\n\n95) goulo: Attack Y1 Safireto\n\n96) Aristos: Trade G2 B2 Shift\n\n97) goulo: Trade R3 B3 Safireto\n\n98) Aristos: Build B3 Shift\n\n99) goulo: Sacrifice Y2 Rubeno\nMove B3 Safireto Goulo\nMove B3 Goulo Shift\nCatastrophe Shift B\n\n100) Aristos: Build R2 Aristos\n\n101) goulo: Discover R1 Escape G3 Smeraldego\n\n102) Aristos: Move R2 Aristos Smeraldego\n\n103) goulo: Build R3 Smeraldego\n\n104) Aristos: Build R3 Smeraldego\nCatastrophe Smeraldego Red\n\n105) goulo: Discover Y1 Safireto G3 Smeraldego\n\n106) Aristos: Move R2 Aristos Smeraldego\n\n107) goulo: Move Y1 Smeraldego Mirteleto\n\n108) Aristos: Build Y1 Spawn\n\n109) goulo: Trade R1 G1 Mirteleto\n\n110) Aristos: Discover Y1 Spawn B1 Metasticize\n\n111) goulo: Move R3 Mirteleto Smeraldego\n\n112) Aristos: Build R1 Smeraldego\n\n113) goulo: Sacrifice Y1 Mirteleto\nMove R3 Smeraldego Mirteleto\n\n114) Aristos: Trade Y1 G1 Metasticize\n\n115) goulo: Build G2 Mirteleto\n\tgoulo: blue, green... all the same thing...! :)\n\n116) Aristos: Build G2 Metasticize\n\tAristos: Really? All the same thing? Excellent... that will make causing a catastrophe in Mirteleto much easier! :-) \n\n117) goulo: Trade G1 Y1 Mirteleto\n\n118) Aristos: Trade G1 B1 Metasticize\n\n119) goulo: Build G1 Mirteleto\n\tgoulo: well that last couple of moves didn&#39;t work out the way I wanted, duh...\n\tAristos: If it&#39;s any consolation, I have no idea how to press my advantage. My ships are all the wrong colors in all the wrong places.\n\n120) Aristos: Build B2 Metasticize\n\n121) goulo: Trade G2 Y2 Mirteleto\n\tgoulo: It often feels that way in Homeworlds!\n\n122) Aristos: Build Y1 Aristos\n\n123) goulo: Discover Y1 Mirteleto G3 Jadego\n\n124) Aristos: Sacrifice Y1 Aristos\nDiscover B2 Metasticize R3 Blood\n\n125) goulo: Move R3 Mirteleto Blood\n\n126) Aristos: Sacrifice B2 Blood\nTrade R2 B2 Smeraldego\nTrade Y3 B3 Spawn\n\n127) goulo: Build Y1 Mirteleto\n\n128) Aristos: Sacrifice Y3 Aristos\nMove B1 Metasticize Goulo\nMove B2 Smeraldego Goulo\nMove B3 Spawn Goulo\nCatastrophe Goulo Blue\n\n\tgoulo: and so the end is near... well done!\n\tAristos: Thanks. An excellent game.\n\nHomeworlds Online (SDG# 22165)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.11, Ended: 2012.6.3\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n2) TwoShort: Homeworld R1 B2 G3\n\tdlwillson: Long time, no play. How&#39;ve you been?\n\n3) dlwillson: B G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy.  I&#39;ve been well, you?\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\tdlwillson: Pretty good. Got a better job. Got married. Ran pyramids at the last 3 or 4 cons by DGA. Do you ever make it to Genghis or Tacticon?\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) TwoShort: Build Y2 Twoshort\n\tdlwillson: Let&#39;s keep playing really fast and chatting a lot. You don&#39;t need to worry about this game. I&#39;m easy to beat. :-)\n\n9) dlwillson: D Y1 Dlwillson B2 Sky\n\tTwoShort: I basically never make it to cons.  I&#39;ve thought about coming down when you&#39;ve mentioned it on the icehouse list, but it hasn&#39;t worked out so far.  Glad to hear life is treating you well.\n\n10) TwoShort: Discover Y1 Twoshort B3 Borbor\n\n11) dlwillson: B G1 Dlwillson\n\tdlwillson: Pretty funny. I ~ just ~ said let&#39;s play fast, and then I delay the game 3 hours... :-)\n\n12) TwoShort: Build G1 Twoshort\n\n13) dlwillson: T G1 R1 Dlwillson\n\n14) TwoShort: Build Y2 Twoshort\n\n15) dlwillson: D Y2 Dlwillson G2 Field\n\n16) TwoShort: Trade Y2 R2 Twoshort\n\n17) dlwillson: B G1 Dlwillson\n\n18) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Dlwillson\nBuild Y2 Field\nBuild Y3 Sky\n\n20) TwoShort: Build G2 Twoshort\n\tdlwillson: Sorry for the delay, Twoshort. You&#39;re a dangerous man, and this board is interesting. I&#39;m going to set up some plastic before I take my turn. I wonder when there will be a better Homeworlds computer program...\n\tdlwillson: Well, Heck, real life is too busy for the setting up of pointy plastic pyramids. Instead, it&#39;s a all pointy priorities. Pfah...\n\tdlwillson: I have a terribly risky move that I want to do, just to see what happens. I&#39;d rather have looked it over in 3D first, but oh well. Let&#39;s see how this pans out. Worst case, I&#39;ll get to have a game with Tripp before I play you again. Best case, I get a lead and maybe win.\n\n21) dlwillson: T Y1 R1 Sky\n\n22) TwoShort: Sacrifice G2 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Borbor\n\n23) dlwillson: Build R2 Dlwillson\n\n24) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Borbor Sky\nMove Y3 Sky Dlwillson\n\n\tdlwillson: Excellent move! Give me a minute to see if I can slip out of the noose.\n\tTwoShort: I tend to be wrong when I comment on games, but: I think you can make me take 4 more moves.\n\tdlwillson: Good game. I&#39;ll give everyone else a day or three to challenge before I try again.\n\nHomeworlds Online (SDG# 22194)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.15, Ended: 2012.5.31\nParticipants: ajo (S), Gidaio (N)\nWinner: ajo\n\n1) Gidaio: Homeworld G1 B3 Y3\n\n2) ajo: Homeworld R3 B2 G3\n\n3) Gidaio: Build Y1 Gidaio\n\n4) ajo: Build G1 Ajo\n\n5) Gidaio: Trade Y1 B1 Gidaio\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) Gidaio: Discover B1 Gidaio G2 Pandora\n\n8) ajo: Build G1 Ajo\n\n9) Gidaio: Build B1 Pandora\n\n10) ajo: Build G1 Ajo\n\n11) Gidaio: Trade B1 R1 Pandora\n\n12) ajo: Discover G1 Ajo Y1 Alpha\n\n13) Gidaio: Build B1 Pandora\n\n14) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n15) Gidaio: Trade B1 Y1 Pandora\n\n16) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\n\n17) Gidaio: Build B1 Pandora\n\tGidaio: Is it terribly obvious that I don&#39;t really have a strategy?\n\n18) ajo: Move G2 Alpha Pandora\n\tajo: Heh. Not having a strategy is okay, but you need to recognize *my* strategy and do something to counteract it. Right now you&#39;re letting me have the run of the board, which is not going to go well for you. :)\n\tajo: Actually, even without a strategy, &quot;build y2 Gidaio&quot; would have been markedly better for you than &quot;build b1 Pandora&quot;. When in doubt, go for material.\n\n19) Gidaio: Move R1 Pandora Alpha\n\tGidaio: Well, see, with &quot;build y2 Gidaio&quot; you could have factoried a bunch of yellows, then sacrificed them and moved a bunch of greens into my homeworld, then triggered a catastrophe. This game has been going bad for me from the start.\n\n20) ajo: Trade G3 R3 Ajo\n\n21) Gidaio: Attack G1S Alpha\n\n22) ajo: Sacrifice R3 Ajo\nAttack R1 Alpha\nAttack B1 Pandora\nAttack B1 Pandora\n\n23) Gidaio: Build Y2 Gidaio\n\tGidaio: I always forget that people can do that!\n\n24) ajo: Attack G1 Alpha\n\n25) Gidaio: Trade Y3 G3 Gidaio\n\n26) ajo: Sacrifice R1 Alpha\nAttack Y1 Pandora\n\n27) Gidaio: Trade Y2 R2 Gidaio\n\n28) ajo: Build G3 Pandora\n\n29) Gidaio: Build R1 Gidaio\n\n30) ajo: Trade G3 R3 Pandora\n\n31) Gidaio: Trade R2 Y2 Gidaio\n\n32) ajo: Sacrifice Y2 Ajo\nMove B1 Pandora Gidaio\nMove G2 Pandora Gidaio\n\n33) Gidaio: Attack G2S Gidaio\n\n34) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B1 Gidaio\nBuild B2 Gidaio\nCatastrophe Gidaio Blue\n\tGidaio: More than likely, I&#39;m going to lose...\n\n\tGidaio: Wait, was it my turn?\n\tajo: Heh. Apparently so?\n\nHomeworlds Online (SDG# 22139)\nStarted: 2012.5.23, Ended: 2012.7.11\nParticipants: Werebear (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tWerebear: Hullo, mind if I play?\n\n2) Werebear: Homeworld G3 B2 Y3\n\tts52: Not at all, have a good game!\n\n3) ts52: Build G1 Ts52\n\tWerebear: Thanks, you too. I&#39;ll see what I can figure out, here... how does that there widget work? Oh. Yeah.\n\tWerebear: Oh, and... We Come In Peace. (playing WCIP music to soothe the audiences)\n\n4) Werebear: Build Y1 Werebear\n\tts52: Widget, what widget?\n\n5) ts52: Trade G1 Y1 Ts52\n\tWerebear: The one over... oh... your people don&#39;t have a widget. Hmmm. Perhaps you need some?\n\n6) Werebear: Trade Y1 R1 Werebear\n\n7) ts52: Build G1 Ts52\n\tts52: What&#39;s this weapons technology you appear to be developing over there, hmmmm? What happened to WCIP?\n\n8) Werebear: Discover R1 Werebear G1 Widget\n\tWerebear: I dunno. That&#39;s what happened when I twiddled the widget. Too bad you don&#39;t have one. Oh. Wait. Why is my pretty little shipster disappearing?\n\n9) ts52: Trade G1 R1 Ts52\n\n10) Werebear: Build Y1 Werebear\n\tts52: Oooooh, you mean _that_ widget.\n\n11) ts52: Discover Y1 Ts52 B3 Grover\n\n12) Werebear: Build Y2 Werebear\n\n13) ts52: Build G1 Ts52\n\tWerebear: Welcome to the Universe! We got here first, though, so you&#39;ll have to pay us the standard fees. Just stuff some gorleks in an envelope and send it over to us. Thanks!\n\n14) Werebear: Move Y2 Werebear Widget\n\tts52: You keep to your systems and we&#39;ll keep to ours. No gorlek exchange necessary.\n\n15) ts52: Sacrifice G1 Ts52\nBuild Y2 Grover\n\tWerebear: Does that mean you don&#39;t want us to come visit you? We hear that grover is just loverly this time of year... what with the Pernicious Snids and all.\n\n16) Werebear: Trade Y1 B1 Werebear\n\n17) ts52: Trade Y1 G1 Grover\n\n18) Werebear: Build Y1 Werebear\n\n19) ts52: Build G1 Ts52\n\n20) Werebear: Move B1 Werebear Widget\n\n21) ts52: Build G2 Grover\n\n22) Werebear: Trade Y2 G2 Widget\n\n23) ts52: Trade G2 R2 Grover\n\n24) Werebear: Move Y1 Werebear Widget\n\n25) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Grover\nBuild G3 Ts52\n\tWerebear: We apologize for our delays. It is Festival time on Widget, so everybody is partying nonstop.\n\n26) Werebear: Discover G2 Widget Y3 Security\n\n27) ts52: Trade G3 R3 Ts52\n\n28) Werebear: Build G3 Security\n\n29) ts52: Sacrifice Y2 Grover\nMove G1 Ts52 Security\nMove G2 Ts52 Security\nCatastrophe Security Green\n\n30) Werebear: Build Y1 Werebear\n\tWerebear: Wow! What just happened?\n\n31) ts52: Trade G2 Y2 Grover\n\n32) Werebear: Build Y2 Widget\n\tts52: Some sort of catastrophic system failure in the security system.\n\n33) ts52: Build G1 Grover\n\n34) Werebear: Discover Y1 Widget G2 Winkle\n\n35) ts52: Build G2 Grover\n\n36) Werebear: Build B1 Widget\n\n37) ts52: Move G1 Grover Ts52\n\n38) Werebear: Move B1 Widget Winkle\n\n39) ts52: Build G2 Ts52\n\tWerebear: Sorry (again). I was traveling and meant to submit orders, but somehow never found the time. I&#39;m back for a bit! Game on!\n\tts52: No problem.\n\n40) Werebear: Build B1 Widget\n\n41) ts52: Build G3 Ts52\n\n42) Werebear: Build B2 Winkle\n\n43) ts52: Build G3 Grover\n\n44) Werebear: Build B3 Widget\n\n45) ts52: Move G3 Grover Winkle\n\n46) Werebear: Discover B2 Winkle Y3 Wecurity\n\n47) ts52: Sacrifice R2 Grover\nAttack B1 Winkle\nAttack Y1 Winkle\n\n48) Werebear: Trade B3 R3 Widget\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Winkle\nBuild Y3 Grover\n\n50) Werebear: Move B1 Widget Wecurity\n\n51) ts52: Move R3 Ts52 Wecurity\n\n52) Werebear: Build B3 Widget\n\n53) ts52: Attack B2 Wecurity\n\n54) Werebear: Discover B3 Widget R3 Wonder\n\n55) ts52: Build B3 Winkle\n\n56) Werebear: Sacrifice Y2 Widget\nMove B1 Wecurity Winkle\nMove B1 Widget Winkle\nCatastrophe Winkle B\n\n57) ts52: Discover Y2 Grover B1 Gonzo\n\n58) Werebear: Trade Y1 R1 Werebear\n\n59) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Gonzo\n\n60) Werebear: Build R2 Werebear\n\n61) ts52: Sacrifice Y3 Grover\nMove Y1 Gonzo Werebear\nMove Y2 Gonzo Werebear\nMove Y2 Gonzo Werebear\nCatastrophe Werebear Yellow\n\n62) Werebear: Trade R1 Y1 Werebear\n\n63) ts52: Sacrifice Y2 Winkle\nMove G3 Winkle Widget\nMove G3 Widget Werebear\n\n64) Werebear: Sacrifice Y1 Werebear\nMove B3 Wonder Ts52\n\tWerebear: sacrifice y1\r\nmove r3 Widget ts52\n\n65) ts52: Sacrifice R1 Ts52\nAttack R2 Werebear\n\tWerebear: At last, we meet!\r\nGood game - you locked me out of green quite nicely!\r\nIt was nice playing with you!\n\tts52: Thank you for the game good sir. It was fun playing against you again. Now that I finally remember who you are, I hope everything is going well with you, and look forward to our next match. :)\n\n\nHomeworlds Online (SDG# 22248)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.26, Ended: 2012.6.21\nParticipants: MagicJohn (S), Subhan64 (N)\nWinner: MagicJohn\n\n1) Subhan64: Pass\n\n2) MagicJohn: Pass\n\n3) Subhan64: Pass\n\n4) MagicJohn: Homeworld R1 B2 G3\n\n5) Subhan64: Homeworld R1 B3 G3\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Subhan64: Build G1 Subhan64\n\n8) MagicJohn: Trade G1 Y1 Magicjohn\n\n9) Subhan64: Trade G1 Y1 Subhan64\n\n10) MagicJohn: Build G1 Magicjohn\n\n11) Subhan64: Build G1 Subhan64\n\n12) MagicJohn: Trade G1 B1 Magicjohn\n\n13) Subhan64: Build G1 Subhan64\n\n14) MagicJohn: Build B1 Magicjohn\n\n15) Subhan64: Discover G1 Subhan64 B2 Kermit\n\n16) MagicJohn: Discover B1 Magicjohn G3 Never\n\n\nHomeworlds Online (SDG# 22239)\nStarted: 2012.5.31, Ended: 2012.7.3\nParticipants: agentofchaos (S), ts52 (N)\nWinner: agentofchaos\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) agentofchaos: Homeworld R3 B2 G3\n\tts52: Have a good game!\n\tagentofchaos: You too!\n\n3) ts52: Build G1 Ts52\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) ts52: Trade G1 R1 Ts52\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) ts52: Build G1 Ts52\n\n12) agentofchaos: Discover Y2 Agentofchaos B1 Woodhaven\n\n13) ts52: Build G1 Gonzo\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) ts52: Build G2 Gonzo\n\n16) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Woodhaven\nBuild Y2 Agentofchaos\n\n17) ts52: Build G2 Ts52\n\n18) agentofchaos: Build G2 Agentofchaos\n\n19) ts52: Trade G3 Y3 Ts52\n\n20) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Woodhaven\nBuild G3 Agentofchaos\nBuild G3 Agentofchaos\n\n21) ts52: Discover G2 Ts52 Y3 Bigbird\n\n22) agentofchaos: Trade G2 R2 Agentofchaos\n\n23) ts52: Build R1 Ts52\n\n24) agentofchaos: M Y3 Woodhaven Gonzo\n\n25) ts52: Trade R1 B1 Ts52\n\n26) agentofchaos: Move R2 Agentofchaos Woodhaven\n\n27) ts52: Trade Y3 G3 Ts52\n\n28) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Woodhaven\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\n\n29) ts52: Move B1 Ts52 Bigbird\n\n30) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R1 Woodhaven\nBuild R1 Woodhaven\nBuild G3 Agentofchaos\n\n31) ts52: Build R2 Ts52\n\n32) agentofchaos: Sacrifice R2 Woodhaven\nAttack G2 Gonzo\nAttack G1 Gonzo\n\n33) ts52: Move R1 Ts52 Bigbird\n\n34) agentofchaos: Sacrifice Y2 Woodhaven\nMove G2 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 G\n\n35) ts52: Sacrifice G2 Bigbird\nBuild R2 Ts52\nBuild R2 Bigbird\n\n36) agentofchaos: Sacrifice R1 Woodhaven\nAttack G1 Gonzo\n\n37) ts52: Trade R2 G2 Ts52\n\n38) agentofchaos: T G3 R3 Agentofchaos\n\n39) ts52: Discover R2 Bigbird B1 Grover\n\n40) agentofchaos: Move Y3 Gonzo Ts52\n\n41) ts52: Build G1 Ts52\n\n42) agentofchaos: Sacrifice R3 Agentofchaos\nAttack G2 Ts52\nAttack G1 Ts52\nAttack R2 Ts52\n\n\tagentofchaos: Thanks for a great game :-)\n\tts52: Thank you! Excellent game.\n\nHomeworlds Online (SDG# 22281)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.31, Ended: 2012.9.2\nParticipants: SilentTitan (S), agentofchaos (N)\nWinner: SilentTitan\n\n1) agentofchaos: H B1 R2 G3\n\tSilentTitan: ..... and away we go.......\n\n2) SilentTitan: Homeworld G2 Y1 B3\n\tagentofchaos: Have fun!\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) agentofchaos: B G1 Agentofchaos\n\n6) SilentTitan: Build B1 Silenttitan\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n9) agentofchaos: Build Y1 Agentofchaos\n\n10) SilentTitan: Build B2 Sol\n\n11) agentofchaos: Build Y2 Agentofchaos\n\n12) SilentTitan: Trade B3 G3 Silenttitan\n\n13) agentofchaos: Trade Y2 R2 Agentofchaos\n\n14) SilentTitan: Trade B2 Y2 Sol\n\n15) agentofchaos: Move R2 Agentofchaos Sol\n\n16) SilentTitan: Sacrifice Y2 Sol\nMove B1 Sol Silenttitan\nDiscover B1 Silenttitan Y3 Soul\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) SilentTitan: Trade G3 R3 Silenttitan\n\n19) agentofchaos: Build R1 Sol\n\n20) SilentTitan: Build B2 Silenttitan\n\n21) agentofchaos: Move Y2 Agentofchaos Soul\n\n22) SilentTitan: Build B2 Silenttitan\n\n23) agentofchaos: Sacrifice R1 Sol\nAttack B1 Soul\n\n24) SilentTitan: Trade B2 R2 Silenttitan\n\n25) agentofchaos: Build R1 Sol\n\n26) SilentTitan: Move R3 Silenttitan Soul\n\n27) agentofchaos: Sacrifice Y2 Soul\nMove R2 Sol Silenttitan\nMove R1 Sol Silenttitan\n\n28) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Silenttitan North\nAttack R1 Silenttitan North\n\n29) agentofchaos: Move B1 Soul Agentofchaos\n\n30) SilentTitan: Trade B2 Y2 Silenttitan\n\tdlwillson: Agent, when this game is over, forward a copy of the game log to me at DLWillson@TheGeek.NU. I want to ask you a question.\n\n31) agentofchaos: Build Y2 Agentofchaos\n\n32) SilentTitan: Discover R2 Silenttitan Y3 Sol\n\n33) agentofchaos: Build B2 Agentofchaos\n\n34) SilentTitan: Build B2 Silenttitan\n\n35) agentofchaos: Discover Y2 Agentofchaos B3 Dreadthought\n\n36) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Silenttitan Sol\nMove B1 Sol Agentofchaos\nCatastrophe Agentofchaos Blue\n\n37) agentofchaos: Build Y2 Agentofchaos\n\n38) SilentTitan: Build B1 Silenttitan\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) SilentTitan: Trade B2 Y2 Silenttitan\n\n41) agentofchaos: Sacrifice G1 Agentofchaos\nBuild Y3 Dreadthought\n\n42) SilentTitan: Move R3 Soul Silenttitan\n\n43) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Dreadthought Silenttitan\nMove Y3 Dreadthought Silenttitan\nCatastrophe Silenttitan Y\n\n44) SilentTitan: Trade R3 Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 22287)\nVariants: &quot;Hard time&quot;\nStarted: 2012.5.31, Ended: 2012.6.13\nParticipants: ajo (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R2 G3\n\n2) ajo: Homeworld B3 R1 G3\n\n3) mneme: Build G1 Mneme\n\n4) ajo: Build G1 Ajo\n\n5) mneme: Trade G1 B1 Mneme\n\n6) ajo: Trade G1 B1 Ajo\n\n7) mneme: Build B2 Mneme\n\n8) ajo: Build B2 Ajo\n\tmneme: I have a comment to make about move 4. But I&#39;ll save it; ask me after the game if you&#39;re curious?\n\n9) mneme: Trade B2 Y2 Mneme\n\tajo: Tease. :) My reasoning is: I&#39;ll come along with you for the blue feast, and then hope to gain the edge later when we both have tons of ships.\n\n10) ajo: Trade B2 Y2 Ajo\n\tmneme: :)  To be fair, I&#39;ve played a lot of variations of this opening.\r\n\n\n11) mneme: Build B2 Mneme\n\n12) ajo: Build B2 Ajo\n\n13) mneme: Discover B2 Mneme G3 Emerald\n\n14) ajo: Discover B1 Ajo G2 Alpha\n\n15) mneme: Build Y1 Mneme\n\n16) ajo: Build G1 Ajo\n\n17) mneme: Build Y1 Mneme\n\n18) ajo: Build Y1 Ajo\n\n19) mneme: Move Y1 Mneme Emerald\n\n20) ajo: Move Y2 Ajo Alpha\n\tajo: Pretty soon here I&#39;ll have to pause and set up my Icehouse pieces. Normally I have them next to me when I&#39;m playing. :)\n\n21) mneme: Trade Y1 R1 Mneme\n\tmneme: Huh.  I actually find it easier to follow games on here these days; I make more dumb mistakes in person (certainly I did in Boston when I played Andy (in between other games) at Pax East.\n\n22) ajo: Trade B1 R1 Alpha\n\n23) mneme: Build B1 Mneme\n\n24) ajo: Move B2 Ajo Alpha\n\n25) mneme: Discover B1 Mneme Y3 Jacinth\n\n26) ajo: Build R2 Alpha\n\n27) mneme: Move R1 Mneme Emerald\n\n28) ajo: Move R2 Alpha Jacinth\n\n29) mneme: Sacrifice G3 Mneme\nBuild B2 Emerald\nBuild B3 Emerald\nBuild B3 Jacinth\n\n30) ajo: Attack B1 Jacinth\n\n31) mneme: Sacrifice R1 Emerald\nAttack R2 Jacinth\n\n32) ajo: Sacrifice Y2 Alpha\nMove B2 Alpha Jacinth\nMove B2 Jacinth Mneme\n\n33) mneme: Sacrifice R2 Jacinth\nAttack B1 Jacinth\nAttack B2 Mneme\n\n34) ajo: Build R1 Alpha\n\tmneme: Having worked out the response to that, I was kinda hoping you&#39;d try it.\n\tajo: Shoot. I think I&#39;ve pretty much lost at this point, but I&#39;ll keep playing.\n\n35) mneme: Sacrifice B2 Mneme\nTrade B3 G3 Jacinth\nTrade B3 R3 Emerald\n\n36) ajo: Build R2 Alpha\n\tmneme: have to agree, but as you like.\n\n37) mneme: Sacrifice G3 Jacinth\nBuild B2 Emerald\nBuild B3 Jacinth\nB B3 Mneme\n\n38) ajo: Sacrifice Y1 Ajo\nDiscover R2 Alpha Y3 Beta\n\n39) mneme: Sacrifice B2 Emerald\nTrade B3 Y3 Mneme\nTrade B3 G3 Jacinth\n\n\tajo: I don&#39;t like resigning when I still have both pieces of my star, but I don&#39;t see any way to attack you from this position. Play again?\n\tmneme: Any time.\r\n\n\nHomeworlds Online (SDG# 22073)\nVariants: &quot;No undo&quot;\nStarted: 2012.5.31, Ended: 2012.6.15\nParticipants: goblin981 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B1 R3 G3\n\n2) goblin981: Homeworld Y3 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) goblin981: B G1 Goblin981\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) goblin981: D G1 Goblin981 B1 Blue\n\n7) ajo: Build Y1 Ajo\n\n8) goblin981: B G1 Goblin981\n\n9) ajo: Build Y1 Ajo\n\n10) goblin981: B G1 Goblin981\n\n11) ajo: Discover Y1 Ajo B2 Alpha\n\n12) goblin981: B G2 Blue\n\n13) ajo: Build G2 Ajo\n\n14) goblin981: T G2 R2 Blue\n\n15) ajo: Sacrifice G2 Ajo\nBuild G2 Ajo\nBuild Y2 Alpha\n\n16) goblin981: T G1 R1 Goblin981\n\n17) ajo: Trade Y2 R2 Alpha\n\n18) goblin981: D G1 Goblin981 G1 Green\n\n19) ajo: Sacrifice G2 Ajo\nBuild G2 Ajo\nBuild Y2 Alpha\n\n20) goblin981: B G2 Goblin981\n\n21) ajo: Trade Y2 G2 Alpha\n\n22) goblin981: S G2 Goblin981\nBuild G2 Goblin981\nBuild G3 Blue\n\n23) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Alpha\nBuild Y2 Alpha\n\n24) goblin981: T G3 Y3 Blue\n\n25) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R1 Alpha\n\n26) goblin981: D R2 Blue Y2 Y2\n\n27) ajo: Sacrifice Y2 Alpha\nMove Y1 Alpha Blue\nDiscover Y1 Ajo B2 Beta\n\n28) goblin981: M G1 Blue Y2\n\n29) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Blue\nBuild Y3 Blue\nCatastrophe Blue Yellow\n\n30) goblin981: S G3 Goblin981\nBuild G3 Goblin981\nBuild R1 Y2\nBuild R2 Y2\n\n31) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild R3 Alpha\nBuild Y1 Beta\n\n32) goblin981: D R2 Y2 Y3 Y3\n\n33) ajo: Move R3 Alpha Green\n\n34) goblin981: S G1 Green\nBuild R3 Y3\n\n35) ajo: Move Y1 Beta Green\n\n36) goblin981: D R3 Y3 Y2 Yell2\n\n37) ajo: Build Y3 Green\n\n38) goblin981: M R2 Y3 Beta\n\n39) ajo: Build Y3 Alpha\n\n40) goblin981: A Y1N Beta\n\n41) ajo: Move Y3 Green Beta\n\n42) goblin981: S Y1 Beta\nMove R2 Beta Ajo\n\n43) ajo: Attack R2 Ajo\n\tajo: Hey, thanks! *nom nom nom*\n\n44) goblin981: B G1 Y2\n\n45) ajo: Build Y1 Green\n\n46) goblin981: M R3 Yell2 Green\n\n47) ajo: Attack R3 Green\n\n48) goblin981: T G2 Y2 Goblin981\n\n49) ajo: Sacrifice Y2 Alpha\nMove Y1 Green Goblin981\nMove Y1 Green Goblin981\nCatastrophe Goblin981 Yellow\n\n50) goblin981: M R1 Y2 Ajo\n\tgoblin981: Damn, didn&#39;t see that.\n\n51) ajo: Sacrifice Y3 Beta\nMove G3 Alpha Green\nMove G3 Green Goblin981\nMove G2 Ajo Goblin981\n\n52) goblin981: M R2 Y2 Ajo\nCatastrophe Ajo R\n\tajo: Checkmate. :)\n\tajo: Advice for learning -- Twice in this game you tried to attack a really heavily defended star by moving a single red ship in, and I just captured it without even sacrificing anything. You&#39;ve gotta learn not to do that.\n\tajo: ooooh shoot, disregard that &quot;checkmate&quot;. I&#39;d mistakenly thought your last move was &quot;move r1 goblin981 ajo&quot;. So instead, you get a chance to even the score a bit. :P\n\tajo: You&#39;re still in check, though.\n\tgoblin981: Yeah, both times I gave you the red ship to free up a star.\r\nI was ready to blow your red star, but you took out my y2 ship with my star.\n\n53) ajo: Sacrifice R2 Alpha\nAttack G3 Goblin981\nAttack R1 Goblin981\n\tajo: Of course! You have to watch one turn ahead. Especially when you&#39;re in check. ;) Good game.\n\tgoblin981: Yeah, seeing all possible moves by the opponent is always my problem.\r\n\r\nThanks for the game.\n\n\nHomeworlds Online (SDG# 22293)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.2, Ended: 2012.6.25\nParticipants: Danner (S), ts52 (N)\nWinner: Danner\n\n1) ts52: Homeworld Y1 B2 G3\n\tDanner: Hi! Have a nice game!\n\tts52: Thanks. You too!\n\n2) Danner: Homeworld B1 R2 G3\n\tDanner: homeworld B1 R2 G3\n\n3) ts52: Build G1 Ts52\n\tDanner: sorry :D stupid mistake\n\tts52: No worries. Small universe, eh?\n\n4) Danner: Build G1 Danner\n\tDanner: Yeah. :)\n\n5) ts52: Trade G1 R1 Ts52\n\n6) Danner: Trade G1 Y1 Danner\n\n7) ts52: B G1 Ts52\n\n8) Danner: Build Y1 Danner\n\n9) ts52: D G1 Ts52 B3 Gonzo\n\n10) Danner: Build Y2 Danner\n\n11) ts52: Build G1 Ts52\n\n12) Danner: Discover Y2 Danner G3 Cactus\n\n13) ts52: Build R1 Ts52\n\n14) Danner: Discover Y1 Danner R3 Outpost\n\n15) ts52: Move R1 Ts52 Gonzo\n\n16) Danner: Sacrifice G3 Danner\nBuild Y2 Outpost\nBuild Y2 Danner\nBuild Y3 Danner\n\n17) ts52: Build R1 Gonzo\n\n18) Danner: Trade Y3 G3 Danner\n\n19) ts52: Build R2 Ts52\n\n20) Danner: Discover Y2 Danner R3 Garrett\n\n21) ts52: Move R2 Ts52 Cactus\n\n22) Danner: Move Y2 Cactus Danner\n\n23) ts52: Build R2 Ts52\n\n24) Danner: Discover Y2 Danner R3 Final\n\n25) ts52: Trade G1 B1 Ts52\n\n26) Danner: Build Y3 Danner\n\n27) ts52: Move B1 Ts52 Cactus\n\n28) Danner: Build Y3 Danner\n\n29) ts52: Build B1 Cactus\n\n30) Danner: Trade Y3 B3 Danner\n\n31) ts52: Build G1 Ts52\n\n32) Danner: Trade Y3 B3 Danner\n\n33) ts52: Trade R2 B2 Ts52\n\n34) Danner: Build Y3 Danner\n\n35) ts52: Discover B2 Ts52 Y3 Bigbird\n\n36) Danner: Move B3 Danner Garrett\n\n37) ts52: Build R2 Ts52\n\tDanner: That was close!\n\tts52: Drat. So close!\n\n38) Danner: Build Y3 Danner\n\n39) ts52: Move G1 Ts52 Bigbird\n\n40) Danner: Build G1 Danner\n\n41) ts52: Build B2 Bigbird\n\n42) Danner: Move B3 Danner Outpost\n\n43) ts52: Build G2 Bigbird\n\n44) Danner: Move G1 Danner Outpost\n\n45) ts52: Build G2 Bigbird\n\n46) Danner: Move Y1 Danner Outpost\n\n47) ts52: Build G2 Gonzo\n\n48) Danner: Move Y3 Danner Final\n\tDanner: Emergency evacuation in progress. :)\n\n49) ts52: Pass\n\n50) Danner: Move G3 Danner Final\n\tts52: I see my doom coming, but I don&#39;t think I can do anything about it.\n\tDanner: That&#39;s strange, because I still lack the necessary resources.\n\n51) ts52: Pass\n\n52) Danner: Move G1 Outpost Danner\n\tts52: really?\n\n53) ts52: Pass\n\tDanner: Yes.\n\n54) Danner: Move G1 Danner Bigbird\nCatastrophe Bigbird G\n\n55) ts52: Build G1 Ts52\n\n56) Danner: Build G1 Final\n\n57) ts52: Move G1 Ts52 Bigbird\n\n58) Danner: Move G1 Final Danner\n\n59) ts52: Build G2 Bigbird\n\n60) Danner: Build G2 Final\n\n61) ts52: Pass\n\n62) Danner: Move Y2 Garrett Danner\n\n63) ts52: Pass\n\n64) Danner: Sacrifice B3 Garrett\nTrade Y3 R3 Danner\nTrade Y3 B3 Final\nPass\n\n65) ts52: Discover R1 Ts52 Y3 Zoe\n\tDanner: I fear you don&#39;t really enjoy this game.\n\tts52: I&#39;m just not sure why you haven&#39;t moved to take me out yet. And yes, it&#39;s a bit frustrating being locked out of yellow, but that&#39;s my own fault. I&#39;m curious to see just how this will end though.\n\n66) Danner: Build Y3 Danner\n\tDanner: To take you out, I need either 1 red and 3 green ships or 3 blue ships.\n\n67) ts52: Pass\n\tDanner: So I didn&#39;t meet the requirements until now.\n\n68) Danner: Move G1 Danner Outpost\n\n69) ts52: Pass\n\n70) Danner: Move G1 Outpost Ts52\n\n71) ts52: Attack G1 Ts52\n\tDanner: Sorry for the delay.\n\n72) Danner: Move G3 Final Ts52\n\tts52: no worries\n\n73) ts52: Attack G3 Ts52\n\n74) Danner: Sacrifice Y2 Outpost\nMove G2 Final Ts52\nMove B3 Final Ts52\nCatastrophe Ts52 G\n\n75) ts52: Move G2 Bigbird Ts52\n\n76) Danner: Sacrifice R3 Danner\nAttack R2N Ts52\nAttack G2N Ts52\nPass\n\tts52: ah, now I see, you wanted to be able to do it w/o sacrificing the large yellow...\n\tDanner: :)\n\n\tDanner: Thank you. :)\n\nHomeworlds Online (SDG# 22120)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.3, Ended: 2012.6.16\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) dlwillson: H Y3 B2 G3 Dlwillson\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: LOL\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dlwillson: D Y1 Dlwillson G1 Field\n\n9) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n10) dlwillson: B Y2 Field\n\n\tSilentTitan: Sorry lost track of time ... for obvious reasons.\r\n\r\n\n\nHomeworlds Online (SDG# 22297)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.7, Ended: 2012.6.18\nParticipants: SilentTitan (S), goblin981 (N)\nWinner: goblin981\n\n1) goblin981: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) goblin981: B G1 Goblin981\n\tSilentTitan: Good name! Goblin, Silent and One-Eye are my three favorite characters from the Black Company by Glenn Cook. \n\tgoblin981: I got it from the Green Goblin.  I&#39;m a Spider-Man fan.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) goblin981: B G1 Goblin981\n\n6) SilentTitan: Build G2 Silenttitan\n\n7) goblin981: T G1 Y1 Goblin981\n\n8) SilentTitan: Trade G2 Y2 Silenttitan\n\n9) goblin981: D G1 Goblin981 Y3 Yella\n\n10) SilentTitan: Discover G1 Silenttitan B1 Sol\n\n11) goblin981: B Y1 Goblin981\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) goblin981: T Y1 G1 Goblin981\n\n14) SilentTitan: Build G2 Sol\n\n15) goblin981: D G1 Goblin981 Y3 Y3\n\n16) SilentTitan: Trade G2 Y2 Sol\n\n17) goblin981: B G2 Goblin981\n\n\tSilentTitan: I am sorry about that... I had a friend die this last week and I lost track of several things I was doing including this.  You can challenge me again if you&#39;d like\r\n\n\tgoblin981: No probs\n\nHomeworlds Online (SDG# 22349)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.8, Ended: 2012.8.7\nParticipants: alexcobo (S), goblin981 (N)\nWinner: goblin981\n\n1) goblin981: H Y1 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) goblin981: B G1 Goblin981\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) goblin981: D G1 Goblin981 Y3 Alpha\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) goblin981: B G1 Goblin981\n\n8) alexcobo: Trade Y1 G1 Alexcobo\n\n9) goblin981: D G1 Goblin981 Y3 Beta\n\n10) alexcobo: Build G2 Alexcobo\n\n11) goblin981: B G2 Goblin981\n\n12) alexcobo: Trade G1 R1 Alexcobo\n\n13) goblin981: T G2 R2 Goblin981\n\n14) alexcobo: Discover G2 Alexcobo Y1 Yellowone\n\n15) goblin981: B R1 Goblin981\n\n16) alexcobo: Build Y2 Alexcobo\n\n17) goblin981: B G1 Alpha\n\n18) alexcobo: Build G2 Yellowone\n\n19) goblin981: D G1 Alpha R1 Gamma\n\n20) alexcobo: Build R2 Alexcobo\n\n21) goblin981: B G2 Gamma\n\n22) alexcobo: Trade Y3 G3 Alexcobo\n\n23) goblin981: T R1 B1 Goblin981\n\n24) alexcobo: Build Y2 Alexcobo\n\n25) goblin981: D B1 Goblin981 Y3 Delta\n\n26) alexcobo: Move G3 Alexcobo Gamma\n\n27) goblin981: M B1 Delta Gamma\n\n28) alexcobo: Sacrifice Y1 Alexcobo\nMove G3 Gamma Beta\n\n29) goblin981: D G1 Beta Y1 Delta\n\n30) alexcobo: Discover Y2 Alexcobo B1 Blueone\n\n31) goblin981: T G2 Y2 Gamma\n\n32) alexcobo: Build Y3 Alexcobo\n\n33) goblin981: B G2 Delta\n\n34) alexcobo: Move G3 Beta Gamma\n\n35) goblin981: S Y2 Gamma\nD G1 Gamma B2 Beta\nDiscover G1 Beta B1 Epsilon\n\n\talexcobo: \t\r\nI am very sorry. I have a lot going on right now and I have to cut down on my game time. :-(\r\nI will see you again soon. Good luck! \n\nHomeworlds Online (SDG# 22377)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.12, Ended: 2012.7.31\nParticipants: AdamBadura (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B3 G2 Y3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) Aristos: Build Y1 Aristos\n\tAristos: Good day and well met. \n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Aristos: Discover Y1 Aristos G1 Splinter\n\n6) AdamBadura: Discover Y1 Adambadura G1 Shipyard\n\n7) Aristos: Discover Y1 Splinter B3 Morph\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) Aristos: Build Y2 Aristos\n\n10) AdamBadura: Trade Y3 G3 Adambadura\n\n11) Aristos: Trade Y1 G1 Morph\n\n12) AdamBadura: Build Y1 Adambadura\n\n13) Aristos: Build G1 Morph\n\n14) AdamBadura: Sacrifice G3 Adambadura\nBuild Y2 Shipyard\nBuild Y2 Shipyard\nBuild Y3 Adambadura\n\tAristos: Game is going to take a loooooong time with five days between every move.\n\n15) Aristos: Trade Y3 R3 Aristos\n\tAdamBadura: I&#39;m terribly sorry. I will do my best to speed up but recently I&#39;m very busy with the rest of my life. :(\n\tAristos: Oh, I understand. It just gets hard to remember my strategy plans under such long delays. :-)\n\n16) AdamBadura: Discover Y2 Shipyard G2 Drydocks\n\n17) Aristos: Build Y3 Aristos\n\n18) AdamBadura: Trade Y1 R1 Adambadura\n\n19) Aristos: Discover Y2 Aristos R1 Exit\n\n20) AdamBadura: Build R1 Adambadura\n\n21) Aristos: Build R2 Aristos\n\tAristos: Ping!\n\n22) AdamBadura: Move R1 Adambadura Shipyard\n\tAdamBadura: I think I&#39;m going to lose this one. Which doesn&#39;t make my moves any faster... :(\n\n23) Aristos: Move R3 Aristos Shipyard\n\n24) AdamBadura: Build R2 Shipyard\n\n25) Aristos: Sacrifice R2 Aristos\nAttack Y2 Shipyard\nAttack Y1 Shipyard\n\n26) AdamBadura: Sacrifice Y2 Drydocks\nMove R1 Shipyard Aristos\nDiscover R2 Shipyard G3 Newdrydocks\n\n27) Aristos: Sacrifice Y2 Shipyard\nMove Y2 Exit Adambadura\nMove Y1 Shipyard Adambadura\nCatastrophe Adambadura Yellow\n\tAdamBadura: Hmm... Somehow I haven&#39;t thought of that move... :(\n\n28) AdamBadura: Build R1 Newdrydocks\n\n29) Aristos: Trade G1 Y1 Morph\n\n30) AdamBadura: Build R2 Adambadura\n\tAristos: My main thrust has been to acquire enough yellow tech to knock out your big yellow ship. I finally had enough on hand.\n\tAristos: You really threw me off at the start... I&#39;ve never played a game with identically sized homeworlds before. It is a very different game when the worlds are so close.\n\tAdamBadura: I missed that move to which is kind of wired considering how much time did I take to make my move. (I had few attempts but after some thinking I wasn&#39;t sure what should I do.)\r\n\r\nIn general it is bad to have identical worlds. It is bad for the second player (me) since the first player has an advantage. I didn&#39;t want to make them so but did it by accident just reverting your sizes and forgetting that I had to actually change one of them.\n\n31) Aristos: Sacrifice Y1 Morph\nMove R3 Shipyard Adambadura\n\n\tAristos: I&#39;ve got you now. If you do anything other than change color in your home system, I build red and cause catastrophe. So you must change color. Regardless of what color you pick, I attack your size 2 ship. You build a new ship the next turn or you lose. I sacrifice my size 3 and attack both ships. Game over.\n\tAdamBadura: You are right. Somehow I hoped there will be a little race with building ships. I wanted to build an R3 in your home system. But appearently that was a bad plan.\r\n\r\nYet I&#39;m not sure if it could have ended otherwise considering my previous mistakes.\r\n\r\nThanks for the game and I&#39;m terribly sorry for the delays. :(\n\tAristos: Thanks. No problem on the delays. Take care.\n\nHomeworlds Online (SDG# 22386)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.15, Ended: 2012.6.25\nParticipants: ajo (S), Remneb (N)\nWinner: ajo\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) ajo: Homeworld B1 R3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) ajo: Build G1 Ajo\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) Remneb: Build G1 Remneb\n\n8) ajo: Build G1 Ajo\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) ajo: Build Y1 Ajo\n\n11) Remneb: Discover R1 Remneb Y3 Deneb\n\n12) ajo: Trade Y1 R1 Ajo\n\n13) Remneb: Build Y1 Remneb\n\n14) ajo: Build R2 Ajo\n\n15) Remneb: Build G1 Remneb\n\n16) ajo: Discover R2 Ajo B2 Alpha\n\n17) Remneb: Discover R1 Deneb Y2 Wolf\n\n18) ajo: Move G1 Ajo Alpha\n\n19) Remneb: Sacrifice G1 Remneb\nBuild R2 Wolf\n\n20) ajo: Build R2 Alpha\n\n21) Remneb: Build G1 Remneb\n\n22) ajo: Build R3 Alpha\n\n23) Remneb: Move R1 Wolf Ajo\n\n24) ajo: Sacrifice R1 Ajo\nAttack R1 Ajo\n\n25) Remneb: Discover R2 Wolf Y3 Sirius\n\tajo: *nom nom nom nom nom*\n\n26) ajo: Trade R2 Y2 Alpha\n\n27) Remneb: Discover G1 Remneb Y3 Centaurus\n\n28) ajo: Move R2 Alpha Centaurus\n\n29) Remneb: Discover G1 Centaurus Y2 Akron\n\n30) ajo: Build G2 Alpha\n\n31) Remneb: Build G2 Akron\n\n32) ajo: Trade G1 B1 Alpha\n\n33) Remneb: Discover G2 Akron B3 Helios\n\n34) ajo: Move B1 Alpha Centaurus\n\n35) Remneb: Build G1 Remneb\n\n36) ajo: Sacrifice G2 Alpha\nBuild B1 Centaurus\nBuild B2 Centaurus\n\n37) Remneb: Sacrifice G3 Remneb\nBuild G2 Akron\nBuild G2 Helios\nBuild G3 Remneb\n\n38) ajo: Build G3 Ajo\n\n39) Remneb: Trade G2 Y2 Helios\n\n40) ajo: Trade G3 B3 Ajo\n\n41) Remneb: Sacrifice G3 Remneb\nBuild G2 Helios\nBuild G3 Remneb\nBuild R1 Sirius\n\n42) ajo: Build G3 Ajo\n\n43) Remneb: Discover Y1 Remneb G3 Sigma\n\n44) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B3 Ajo\nBuild R2 Alpha\n\n45) Remneb: Move R1 Sirius Akron\n\n46) ajo: Move B1 Centaurus Remneb\n\n47) Remneb: Attack B1 Remneb\n\tajo: I think you&#39;re going to lose in about two moves. :)\n\n48) ajo: Sacrifice Y2 Alpha\nMove B1 Centaurus Remneb\nMove B2 Centaurus Remneb\nCatastrophe Remneb Blue\n\tRemneb: I&#39;m going to lose my blue star for sure!\n\n49) Remneb: Build R3 Akron\n\tajo: Check... and I think mate.\n\tajo: When you&#39;re in that situation, you have to do something dramatic to pose a counter-threat to me. You&#39;re going to get hit no matter what; the trick is to hit me back. Attacking my b1 was pretty much a waste of a turn (although admittedly if you hadn&#39;t taken it, I was going to take your two small ships and you&#39;d be in even *more* trouble). If you&#39;d done &quot;build r3 Sirius&quot; instead, I think you&#39;d have lasted *one* more turn, at least.\n\tRemneb: A yellow 3 ship would have save me from final destruction.The first target was of course Alpha system, attacking it with my 2 red ships in Akron and Sirius.My last mistake was to move my red 1 ship from Sirius to Akron.I should have let it in Sirius and sacrify a yellow 2 ship to stunt Alpha system.\n\n50) ajo: Sacrifice Y3 Ajo\nMove R2 Alpha Remneb\nMove R3 Alpha Remneb\nMove R2 Centaurus Remneb\nCatastrophe Remneb Red\n\n\nHomeworlds Online (SDG# 22420)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.22, Ended: 2012.7.19\nParticipants: goulo (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B3 R1 G3\n\n2) goulo: Homeworld B2 R1 G3\n\tMagicJohn: Hello, Russgoulo!  Have a good game. I&#39;m trying to get a handle on the tactics and strategies but mostly folks have been declining challenges and defaulting.  I&#39;m climbing the ladder without winning games....... Air&#39;s getting thin.... can&#39;t catch my breath....gasp, gasp.... turn on life-support...\n\n3) MagicJohn: Build G1 Magicjohn\n\tgoulo: I think I&#39;m on a losing streak, so you may not learn much from playing against me... :)\n\n4) goulo: Build G1 Goulo\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) goulo: Build G1 Goulo\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) goulo: Trade G1 Y1 Goulo\n\n9) MagicJohn: Trade G1 B1 Magicjohn\n\n10) goulo: Trade G1 R1 Goulo\n\n11) MagicJohn: Build Y1 Magicjohn\n\n12) goulo: Build R2 Goulo\n\n13) MagicJohn: Build Y2 Magicjohn\n\n14) goulo: Build Y2 Goulo\n\n15) MagicJohn: Discover Y1 Magicjohn G2 Scarboughfair\n\n16) goulo: Discover Y1 Goulo G3 Smeraldego\n\n17) MagicJohn: Trade Y2 R2 Magicjohn\n\n18) goulo: Move R2 Goulo Smeraldego\n\n19) MagicJohn: Build Y2 Scarboughfair\n\n20) goulo: Build R2 Goulo\n\n21) MagicJohn: Move R2 Magicjohn Scarboughfair\n\n22) goulo: Discover R2 Goulo Y3 Citronego\n\n23) MagicJohn: Discover Y2 Scarboughfair R3 Scairbroughfair\n\n24) goulo: Sacrifice G3 Goulo\nBuild Y2 Smeraldego\nBuild Y3 Goulo\nBuild R3 Citronego\n\n25) MagicJohn: Sacrifice G3 Magicjohn\nBuild Y3 Magicjohn\nBuild R3 Scarboughfair\nBuild B1 Magicjohn\n\n26) goulo: Trade R1 B1 Goulo\n\n27) MagicJohn: Move B1 Magicjohn Scarboughfair\n\n28) goulo: Move B1 Goulo Smeraldego\n\n29) MagicJohn: Move R3 Scarboughfair Smeraldego\n\n30) goulo: Sacrifice Y2 Smeraldego\nMove R2 Smeraldego Goulo\nMove R3 Citronego Scarboughfair\n\n31) MagicJohn: Sacrifice R2 Scarboughfair\nAttack B1 Smeraldego\nAttack Y1 Smeraldego\n\n32) goulo: Attack Y1 Scarboughfair\n\n33) MagicJohn: Build Y2 Smeraldego\n\n34) goulo: Attack B1 Scarboughfair\n\n35) MagicJohn: Sacrifice Y2 Smeraldego\nMove Y1 Smeraldego Goulo\nMove Y2 Scairbroughfair Goulo\nCatastrophe Goulo Y\n\n\tgoulo: Good game! I misread my last move; I realized that the yellow catastrophe was possible but not that it would leave you able to get a red3 to goulo while I couldn&#39;t, doh! :)\n\tMagicJohn: Thanks for the game. I&#39;m now in even further over my head on the ladder. The ratings of the players around me are ridiculous!! My learning curve better get real steep real fast.... \n\nHomeworlds Online (SDG# 22446)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.27, Ended: 2012.7.19\nParticipants: ts52 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) ajo: Build G1 Ajo\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tajo: You too. :)\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) ajo: Build G1 Ajo\n\n8) ts52: Build G1 Ts52\n\n9) ajo: Discover G1 Ajo B2 Alpha\n\n10) ts52: Discover G1 Ts52 B3 Grover\n\n11) ajo: Build G1 Ajo\n\n12) ts52: Build G2 Grover\n\n13) ajo: Build G2 Alpha\n\n14) ts52: Trade G2 Y2 Grover\n\n15) ajo: Trade G2 R2 Alpha\n\n16) ts52: Trade Y1 R1 Ts52\n\n17) ajo: Build G2 Alpha\n\n18) ts52: Build G2 Ts52\n\n19) ajo: Trade G2 Y2 Alpha\n\n20) ts52: Build G2 Grover\n\n21) ajo: Build Y1 Alpha\n\n22) ts52: Discover G2 Grover B2 Gonzo\n\n23) ajo: Discover Y1 Alpha G3 Oscar\n\n24) ts52: Build G2 Gonzo\n\n25) ajo: Discover G1 Ajo B2 Beta\n\n26) ts52: Trade G2 R2 Ts52\n\n27) ajo: Sacrifice G3 Ajo\nBuild Y1 Oscar\nBuild Y3 Ajo\nBuild Y3 Alpha\n\n28) ts52: Sacrifice G2 Gonzo\nBuild G2 Ts52\nBuild Y3 Grover\n\n29) ajo: Build G2 Beta\n\n30) ts52: Build G3 Gonzo\n\n31) ajo: Trade Y3 B3 Alpha\n\n32) ts52: Trade Y3 R3 Grover\n\n33) ajo: Sacrifice G2 Beta\nBuild Y3 Oscar\nBuild Y3 Alpha\n\n34) ts52: Build G2 Grover\n\n35) ajo: Move B3 Alpha Oscar\n\n36) ts52: Trade G1 B1 Grover\n\n37) ajo: Build B1 Oscar\n\n38) ts52: Discover B1 Grover R2 Elmo\n\n39) ajo: Move Y3 Oscar Elmo\n\n40) ts52: Move R3 Grover Beta\n\n41) ajo: Attack B1 Elmo\n\n42) ts52: Build G1 Grover\n\n43) ajo: Trade B3 R3 Oscar\n\n44) ts52: Attack G1 Beta\n\n45) ajo: Build B3 Oscar\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Beta\nBuild R3 Beta\n\n47) ajo: Move R3 Oscar Beta\nCatastrophe Beta Red\n\n48) ts52: Move R2 Ts52 Grover\n\n49) ajo: Discover Y2 Alpha R3 Waypoint\n\n50) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Grover\nBuild R3 Grover\n\n51) ajo: Sacrifice Y3 Elmo\nMove Y2 Waypoint Ts52\nMove Y1 Oscar Ts52\nMove Y1 Oscar Ts52\nCatastrophe Ts52 Yellow\n\n52) ts52: Move R3 Grover Elmo\n\tajo: Check... and mate, I believe. :)\n\tts52: Yep, I don&#39;t believe I can stop you. Well played sir.\n\n53) ajo: Sacrifice Y3 Alpha\nMove B1 Elmo Ts52\nMove B1 Oscar Ts52\nMove B3 Oscar Ts52\nCatastrophe Ts52 Blue\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 22457)\nStarted: 2012.6.29, Ended: 2012.8.25\nParticipants: torianironfist (S), RogueJedi234 (N)\nWinner: torianironfist\n\n1) RogueJedi234: Homeworld Y3 B1 G3\n\n2) torianironfist: Homeworld B2 Y1 G3\n\ttorianironfist: Homeworld b2 g1 y3\n\ttorianironfist: homeworld b2 g1 y3\n\ttorianironfist: homeworld B2 G1 Y3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) torianironfist: Build G1 Torianironfist\n\n5) RogueJedi234: Discover G1 Roguejedi234 B2 Alpha\n\n6) torianironfist: Discover G1 Torianironfist B3 Beta\n\n7) RogueJedi234: Trade G1 Y1 Alpha\n\n8) torianironfist: Build G1 Beta\n\n9) RogueJedi234: Build G1 Roguejedi234\n\n10) torianironfist: Trade G1 Y1 Beta\n\n11) RogueJedi234: Sacrifice G1 Roguejedi234\nBuild Y2 Alpha\n\n12) torianironfist: Build Y2 Beta\n\n\n13) RogueJedi234: Trade Y2 G2 Alpha\n\n14) torianironfist: Build G1 Torianironfist\n\n15) RogueJedi234: Construct Y2 Alpha\n\n16) torianironfist: Trade G1 R1 Torianironfist\n\n17) RogueJedi234: Trade Y2 R2 Alpha\n\n18) torianironfist: Trade Y1 R1 Beta\n\n19) RogueJedi234: Move R2 Alpha Roguejedi234\n\n20) torianironfist: Build G1 Torianironfist\n\n21) RogueJedi234: Discover G2 Alpha B3 Gamma\n\n22) torianironfist: Discover G1 Torianironfist Y3 Delta\n\n23) RogueJedi234: Build G1 Gamma\n\n24) torianironfist: Build G2 Torianironfist\n\n25) RogueJedi234: Trade G2 Y2 Gamma\n\n26) torianironfist: Build G2 Delta\n\n27) RogueJedi234: Build G2 Gamma\n\n28) torianironfist: Build G3 Beta\n\n29) RogueJedi234: Sacrifice Y2 Gamma\nMove G2 Gamma Torianironfist\nMove G1 Gamma Torianironfist\nCatastrophe Torianironfist Green\n\n30) torianironfist: Move G3 Beta Alpha\n\n31) RogueJedi234: Discover Y1 Alpha G3 Gamma\n\n32) torianironfist: Move G2 Delta Torianironfist\n\n33) RogueJedi234: Build Y1 Gamma\n\n34) torianironfist: Build Y2 Beta\n\n35) RogueJedi234: Discover Y1 Gamma R2 Epsilon\n\n36) torianironfist: Build G1 Torianironfist\n\n37) RogueJedi234: Build Y2 Gamma\n\n38) torianironfist: Build Y3 Beta\n\n39) RogueJedi234: Move Y1 Epsilon Beta\nCatastrophe Beta Yellow\n\n40) torianironfist: Sacrifice G3 Alpha\nBuild G2 Delta\nBuild G2 Beta\nBuild G3 Torianironfist\n\n41) RogueJedi234: Discover Y2 Gamma B2 Alpha\n\n42) torianironfist: Trade G2 Y2 Beta\n\n43) RogueJedi234: Trade Y2 G2 Alpha\n\n44) torianironfist: Move G1 Delta Alpha\n\n45) RogueJedi234: Build R1 Roguejedi234\n\n46) torianironfist: Sacrifice G2 Delta\nBuild G2 Alpha\nBuild R2 Beta\n\n47) RogueJedi234: Sacrifice Y1 Gamma\nDiscover G2 Alpha Y3 Delta\n\n48) torianironfist: Sacrifice G2 Torianironfist\nBuild Y1 Beta\nBuild G2 Beta\n\n49) RogueJedi234: Build G3 Delta\n\n50) torianironfist: Sacrifice Y2 Beta\nMove G1 Torianironfist Delta\nMove G1 Alpha Delta\nCatastrophe Delta G\n\n51) RogueJedi234: Discover R1 Roguejedi234 B2 Gamma\n\n52) torianironfist: Build G1 Torianironfist\n\n53) RogueJedi234: Trade R1 G1 Gamma\n\n54) torianironfist: Sacrifice G3 Torianironfist\nBuild G2 Beta\nBuild G3 Alpha\nBuild G3 Alpha\n\n55) RogueJedi234: Build R1 Roguejedi234\n\n56) torianironfist: Sacrifice G3 Alpha\nBuild R2 Beta\nBuild R3 Torianironfist\nBuild G3 Alpha\n\n57) RogueJedi234: Trade R1 Y1 Roguejedi234\n\n58) torianironfist: Sacrifice G3 Alpha\nBuild G3 Alpha\nBuild Y2 Beta\nBuild Y2 Beta\n\n59) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove G1 Gamma Beta\nCatastrophe Beta Green\n\n60) torianironfist: Sacrifice Y2 Beta\nMove G3 Alpha Roguejedi234\nMove G3 Alpha Roguejedi234\n\n61) RogueJedi234: Build G1 Roguejedi234\nCatastrophe Roguejedi234 Green\n\n62) torianironfist: Sacrifice Y2 Beta\nDiscover R3 Torianironfist Y3 Doom\nMove R3 Doom Alpha\n\n63) RogueJedi234: Trade R2 B2 Roguejedi234\n\n64) torianironfist: Sacrifice Y1 Beta\nMove R3 Alpha Roguejedi234\n\n65) RogueJedi234: Trade B2 Y2 Roguejedi234\n\n66) torianironfist: Attack Y2 Roguejedi234\n\n\nHomeworlds Online (SDG# 22442)\nVariants: &quot;Hard time&quot;\nStarted: 2012.6.29, Ended: 2012.7.10\nParticipants: dlwillson (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) dlwillson: Homeworld R3 B2 G3 Dlwillson\n\tDanner: Hi! Have a nice game!\n\tdlwillson: You too, Danner! I&#39;ve been looking forward to playing you.\n\n3) Danner: Build G1 Danner\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Danner: Trade G1 Y1 Danner\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Danner: Build G1 Danner\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Danner: Trade G1 B1 Danner\n\n10) dlwillson: Trade G1 B1 Dlwillson\n\n11) Danner: Build B2 Danner\n\n12) dlwillson: Build B2 Dlwillson\n\n13) Danner: Discover B1 Danner G3 Alpha\n\n14) dlwillson: D B1 Dlwillson G1 Forest\n\n15) Danner: Build B3 Danner\n\tDanner: Copycat. :)\n\n16) dlwillson: B B3 Forest\n\n17) Danner: Build B3 Alpha\n\tdlwillson: It seemed wise, until now... :-)\n\n18) dlwillson: T B3 Y3 Forest\n\n19) Danner: Discover B3 Danner B3 Beta\n\n20) dlwillson: B G1 Dlwillson\n\n21) Danner: Build G1 Danner\n\n22) dlwillson: B G2 Dlwillson\n\n23) Danner: Trade G1 R1 Danner\n\tdlwillson: Copycat... :-)\n\n24) dlwillson: T G1 R1 Dlwillson\n\tDanner: :D\n\n25) Danner: Build R1 Danner\n\n26) dlwillson: Sacrifice Y3 Forest\nMove R1 Dlwillson Forest\nMove R1 Forest Beta\nMove R1 Beta Danner\nCatastrophe Danner R\n\n27) Danner: Build G1 Danner\n\n28) dlwillson: Trade G3 Y3 Dlwillson\n\n29) Danner: Discover B2 Danner Y3 Gamma\n\n30) dlwillson: T B1 R1 Forest\n\n31) Danner: Trade G1 R1 Danner\n\n32) dlwillson: B B1 Dlwillson\n\n33) Danner: Trade B3 Y3 Alpha\n\n34) dlwillson: Sacrifice Y3 Dlwillson\nMove B2 Dlwillson Danner\nMove B1 Dlwillson Danner\nPass\n\n35) Danner: Sacrifice Y1 Danner\nDiscover R1 Danner B3 Delta\n\tdlwillson: Excellent recovery!\n\n36) dlwillson: B Y1 Dlwillson\n\tDanner: Thanks! :)\n\tDanner: Sorry for the delay. Your move makes me think a lot! :)\n\n37) Danner: Trade G3 R3 Danner\n\tdlwillson: Good! Now, I have to think a lot! Excellent match.\n\tDanner: Indeed!\n\n38) dlwillson: B Y1 Dlwillson\n\n39) Danner: Attack B2S Danner\n\n40) dlwillson: T B1 G1 Danner\n\n41) Danner: Build B1 Alpha\n\n42) dlwillson: B G1 Danner\n\n43) Danner: Attack G1S Danner\n\n44) dlwillson: M Y1 Dlwillson Forest\n\n45) Danner: Sacrifice Y3 Alpha\nMove B3 Beta Danner\nMove B3 Danner Dlwillson\nPass\n\n\tdlwillson: I meant to say, &quot;Thanks for the great game!&quot; but I must have clicked out. Sorry!\n\tDanner: No worries. Thank you too!\n\nHomeworlds Online (SDG# 22475)\nVariants: &quot;Unrated&quot;\nStarted: 2012.7.2, Ended: 2012.7.9\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: bugggg\n\n1) tuxhedoh: Homeworld B2 G1 R3\n\n2) bugggg: Homeworld Y3 B2 G3\n\n3) tuxhedoh: Build R1 Tuxhedoh\n\n4) bugggg: Build G1 Bugggg\n\tbugggg: test\n\n5) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n6) bugggg: Trade G1 R1 Bugggg\n\ttuxhedoh: got&#39;er note\n\n7) tuxhedoh: Build Y1 Tuxhedoh\n\n8) bugggg: Build R1 Bugggg\n\n9) tuxhedoh: Discover Y1 Tuxhedoh G3 Tux2\n\n10) bugggg: Discover R1 Bugggg R1 Bug2\n\n11) tuxhedoh: Build R2 Tuxhedoh\n\n12) bugggg: Build R2 Bugggg\n\n13) tuxhedoh: Trade R2 B2 Tuxhedoh\n\n14) bugggg: Trade R1 Y1 Bugggg\n\n15) tuxhedoh: Move B2 Tuxhedoh Tux2\n\n16) bugggg: Build G1 Bugggg\n\n17) tuxhedoh: Build Y2 Tux2\n\n18) bugggg: Trade G1 B1 Bugggg\n\n19) tuxhedoh: Move Y2 Tux2 Bug2\n\n20) bugggg: Build R1 Bugggg\n\n21) tuxhedoh: Attack R1 Bug2\n\n22) bugggg: Build G1 Bugggg\n\n23) tuxhedoh: Move R1 Bug2 Tux2\n\n24) bugggg: Move R2 Bugggg Bug2\n\n25) tuxhedoh: Build R2 Tux2\n\n26) bugggg: Attack Y2 Bug2\n\n27) tuxhedoh: Trade R1 G1 Tux2\n\n28) bugggg: Move G1 Bugggg Bug2\n\n29) tuxhedoh: Build Y2 Tux2\n\n30) bugggg: Move B1 Bugggg Bug2\n\n31) tuxhedoh: Build G2 Tux2\n\n32) bugggg: Move G1 Bug2 Tux2\nCatastrophe Tux2 Green\n\n33) tuxhedoh: Build R1 Tuxhedoh\n\n34) bugggg: Build R2 Bugggg\n\n35) tuxhedoh: Trade R1 B1 Tuxhedoh\n\n36) bugggg: Build G1 Bugggg\n\ttuxhedoh: :(\n\tbugggg: sorry =-(\n\n37) tuxhedoh: Build Y1 Tuxhedoh\n\n38) bugggg: Move G1 Bugggg Bug2\n\n39) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n40) bugggg: Build B1 Bug2\n\n41) tuxhedoh: Build B2 Tuxhedoh\n\n42) bugggg: Discover B1 Bug2 Y3 Bug3\n\n43) tuxhedoh: Trade B2 G2 Tuxhedoh\n\n44) bugggg: Move R2 Bug2 Bug3\n\n45) tuxhedoh: Build G1 Tuxhedoh\n\n46) bugggg: Move G1 Bug2 Bug3\n\n47) tuxhedoh: Move G2 Tuxhedoh Bug3\n\n48) bugggg: Attack G2 Bug3\n\n49) tuxhedoh: Build G2 Tuxhedoh\n\n50) bugggg: Move G1 Bug3 Tuxhedoh\nCatastrophe Tuxhedoh Green\n\n51) tuxhedoh: Trade B1 G1 Tuxhedoh\n\n52) bugggg: Build G1 Bugggg\n\n53) tuxhedoh: Move R3 Tuxhedoh Bug3\n\n54) bugggg: Move R2 Bug3 Tuxhedoh\n\n55) tuxhedoh: Move R3 Bug3 Tuxhedoh\n\n56) bugggg: Attack G1 Tuxhedoh\n\n57) tuxhedoh: Attack R2S Tuxhedoh\n\n58) bugggg: Move R2 Bugggg Bug2\n\n59) tuxhedoh: Move R1 Tuxhedoh Bug2\n\n60) bugggg: Attack R1 Bug2\n\n61) tuxhedoh: Move R2 Tuxhedoh Bug2\nCatastrophe Bug2 Red\n\n62) bugggg: Build B1 Bug3\n\n63) tuxhedoh: Attack G1 Tuxhedoh\n\n64) bugggg: Trade B1 Y1 Bug3\n\n65) tuxhedoh: Build R1 Tuxhedoh\n\n66) bugggg: Build Y2 Bug3\n\n67) tuxhedoh: Move Y1 Tuxhedoh Bug3\nCatastrophe Bug3 Yellow\n\n68) bugggg: Build Y1 Bugggg\n\n69) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n70) bugggg: Build Y2 Bugggg\n\n71) tuxhedoh: Build Y2 Tuxhedoh\n\n72) bugggg: Trade Y2 R2 Bugggg\n\n73) tuxhedoh: Discover R3 Tuxhedoh G3 Tux2\n\n74) bugggg: Build R1 Bugggg\n\n75) tuxhedoh: Build R1 Tux2\n\n76) bugggg: Discover R2 Bugggg G1 Bug2\n\n77) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n78) bugggg: Build R2 Bug2\n\n79) tuxhedoh: Move B1 Tuxhedoh Tux2\n\n80) bugggg: Move Y1 Bugggg Bug2\n\n81) tuxhedoh: Build R2 Tux2\n\n82) bugggg: Move R2 Bug2 Tux2\nCatastrophe Tux2 Red\n\n83) tuxhedoh: Build G2 Tuxhedoh\n\n84) bugggg: Move R2 Bug2 Tuxhedoh\n\n85) tuxhedoh: Trade G2 R2 Tuxhedoh\n\n86) bugggg: Attack R2 Tuxhedoh\n\n\nHomeworlds Online (SDG# 22334)\nVariants: &quot;Hard time&quot;\nStarted: 2012.7.8, Ended: 2012.8.3\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) dlwillson: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) SilentTitan: Build Y2 Silenttitan\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) dlwillson: D Y1 Dlwillson G2 Forest\n\n11) SilentTitan: Trade Y2 R2 Silenttitan\n\n12) dlwillson: B Y2 Dlwillson\n\n13) SilentTitan: Discover Y1 Silenttitan B1 Sol\n\n14) dlwillson: Trade Y2 R2 Dlwillson\n\n15) SilentTitan: Build Y2 Silenttitan\n\n16) dlwillson: Build Y3 Forest\n\n17) SilentTitan: Discover Y2 Silenttitan G1 Soul\n\n18) dlwillson: M Y3 Forest Sol\n\tSilentTitan: Little bored at work today?\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Soul\nBuild Y3 Silenttitan\nBuild R1 Silenttitan\n\n20) dlwillson: T Y3 R3 Sol\n\n21) SilentTitan: Sacrifice Y2 Soul\nDiscover Y1 Sol Y3 Sole\nDiscover R1 Silenttitan G1 Tic\n\n22) dlwillson: D Y2 Dlwillson B2 Sky\n\n23) SilentTitan: Trade Y2 B2 Silenttitan\n\n24) dlwillson: Build G1 Dlwillson\n\n25) SilentTitan: Trade Y3 G3 Silenttitan\n\n26) dlwillson: Build Y2 Forest\n\n27) SilentTitan: Move Y3 Soul Silenttitan\n\n28) dlwillson: Move Y2 Forest Tic\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sole\nBuild Y3 Silenttitan\nBuild B1 Silenttitan\n\n30) dlwillson: M Y1 Forest Sole\nC Sole Y\n\n31) SilentTitan: Move Y3 Silenttitan Tic\n\tdlwillson: Sorry it took me so long to make that stupid-ass move. Really, I should be able to come up with something better in two days. I suck. Sorry.\n\n32) dlwillson: B Y1 Tic\n\n33) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y3 G3 Tic\nTrade R1 B1 Tic\n\n34) dlwillson: Move Y2 Tic Sky\n\n35) SilentTitan: Sacrifice G3 Tic\nBuild B2 Silenttitan\nBuild B2 Tic\nBuild B3 Tic\n\n36) dlwillson: Build Y1 Tic\n\n37) SilentTitan: Trade B3 R3 Tic\n\n38) dlwillson: S Y1 Tic\nD R3 Sol G2 Field\n\n39) SilentTitan: Attack Y1 Tic South\n\n40) dlwillson: Trade G1 B1 Dlwillson\n\n41) SilentTitan: Discover B1 Tic G2 Tac\n\n42) dlwillson: D Y2 Sky B3 Sea\n\n43) SilentTitan: Discover B2 Tic Y2 Sol\n\n44) dlwillson: M B1 Dlwillson Field\n\n45) SilentTitan: Trade B1 Y1 Silenttitan\n\n46) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Dlwillson\nBuild Y3 Sky\nBuild Y3 Sea\n\n47) SilentTitan: Sacrifice Y3 Silenttitan\nMove R3 Tic Sol\nMove B2 Sol Dlwillson\nMove B1 Tac Dlwillson\n\n48) dlwillson: Sacrifice Y3 Sea\nMove B1 Field Dlwillson\nMove Y3 Sky Tic\nMove Y3 Tic Silenttitan\nCatastrophe Dlwillson B\n\n\tdlwillson: My leg looked pretty bad. I decided to amputate.\n\tSilentTitan: Took what I thought was my best shot ... turns out I missed anticipating your following move.. nicely played\n\nHomeworlds Online (SDG# 22520)\nVariants: &quot;Unrated&quot;\nStarted: 2012.7.9, Ended: 2012.7.11\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld G1 B3 Y3\n\n2) bugggg: Homeworld B1 Y3 G3\n\n3) tuxhedoh: Build Y1 Tuxhedoh\n\n4) bugggg: Build G1 Bugggg\n\n5) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n6) bugggg: Trade G3 R3 Bugggg\n\n7) tuxhedoh: Build Y1 Tuxhedoh\n\n8) bugggg: Discover R3 Bugggg G2 Bug2\n\n9) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n10) bugggg: Build G1 Bugggg\n\n11) tuxhedoh: Build Y1 Tuxhedoh\n\n12) bugggg: Trade G1 Y1 Bugggg\n\n13) tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n14) bugggg: Move Y1 Bugggg Bug2\n\n15) tuxhedoh: Build G2 Tuxhedoh\n\n16) bugggg: Move R3 Bug2 Tuxhedoh\n\n17) tuxhedoh: Attack R3 Tuxhedoh\n\n18) bugggg: Build G2 Bugggg\n\n19) tuxhedoh: Move G2 Tuxhedoh Bug2\n\ttuxhedoh: yeah. I&#39;m not convinced a head on attack like that is gonna work.\n\tbugggg: wait, how did that happen?! i must not understand the rules... i thought that the attacking ship had to be the same size or larger?\n\n20) bugggg: Build Y1 Bug2\n\n21) tuxhedoh: Build G3 Tuxhedoh\n\n22) bugggg: Move Y1 Bug2 Bugggg\n\tbugggg: nope, can only undo the current turn\n\n23) tuxhedoh: Trade G3 B3 Tuxhedoh\n\n24) bugggg: Trade G2 R2 Bugggg\n\n25) tuxhedoh: Build Y1 Tuxhedoh\n\n26) bugggg: Build R1 Bugggg\n\n27) tuxhedoh: M R3 Tuxhedoh Bug2\n\n28) bugggg: Build R1 Bugggg\n\n29) tuxhedoh: Attack Y1 Bug2\n\n30) bugggg: Build G2 Bugggg\n\n31) tuxhedoh: Build Y2 Tuxhedoh\n\n32) bugggg: Trade G1 B1 Bugggg\n\n33) tuxhedoh: Sacrifice Y2 Tuxhedoh\nMove R1 Tuxhedoh Bug2\nMove R1 Bug2 Bugggg\nCatastrophe Bugggg Red\n\n34) bugggg: Build G1 Bugggg\n\n35) tuxhedoh: Move R3 Bug2 Bugggg\n\n36) bugggg: Trade Y1 R1 Bugggg\n\n37) tuxhedoh: Attack R1 Bugggg\n\n38) bugggg: Trade B1 R1 Bugggg\n\n39) tuxhedoh: Move G2 Bug2 Bugggg\n\n40) bugggg: Trade G1 R1 Bugggg\nCatastrophe Bugggg Red\n\n41) tuxhedoh: Trade G2 R2 Bugggg\n\n\tbugggg: there&#39;s no way that i can recover in this game... i misunderstood the rules in the beginning =-( going to resign.\n\tbugggg: let&#39;s play another one.\n\nHomeworlds Online (SDG# 22483)\nStarted: 2012.7.11, Ended: 2012.7.15\nParticipants: ts52 (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld G1 B2 R3\n\n\ttuxhedoh: Hey!\n\tts52: Sorry, I was on vacation. Feel free to challenge me again.\n\nHomeworlds Online (SDG# 22530)\nStarted: 2012.7.11, Ended: 2012.7.17\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld G1 B2 R3 Tux\n\n2) bugggg: Homeworld B1 R2 G3\n\n3) tuxhedoh: Build R1 Tuxhedoh\n\ttuxhedoh: do you realize that by making your homeworld the same size as mine that it only makes us 1 star apart?\n\n4) bugggg: Build G1 Bugggg\n\n5) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n6) bugggg: Build G1 Bugggg\n\tbugggg: yeah i do, but i hope to have a big enough fleet by then! heh\n\tbugggg: but i&#39;m still learning too\n\n7) tuxhedoh: Build Y1 Tuxhedoh\n\n8) bugggg: Trade G1 Y1 Bugggg\n\n9) tuxhedoh: Build Y2 Tuxhedoh\n\n10) bugggg: Build Y2 Bugggg\n\n11) tuxhedoh: Build R1 Tuxhedoh\n\n12) bugggg: Trade Y2 R2 Bugggg\n\n13) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n14) bugggg: Build Y1 Bugggg\n\n15) tuxhedoh: Build Y2 Tuxhedoh\n\n16) bugggg: Build Y2 Bugggg\n\n17) tuxhedoh: Sacrifice Y2 Tuxhedoh\nDiscover Y1 Tuxhedoh Y3 Tux0\nMove Y1 Tux0 Bugggg\nCatastrophe Bugggg Yellow\n\n18) bugggg: Build G1 Bugggg\n\ttuxhedoh: Most complicated move I&#39;ve made... sacrificed y2, got to move twice, 1st move into new system, 2nd move into your system, catastrophe\n\n19) tuxhedoh: Build Y1 Tuxhedoh\n\tbugggg: oh shoot i didn&#39;t realize that you could do it that way, i thought that discover and move somehow couldn&#39;t be done together like that i guess. i knew about the sacrifice trick though (look up &quot;the bluebird mistake&quot; on youtube)\n\n20) bugggg: Trade G1 B1 Bugggg\n\n21) tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n22) bugggg: Build B2 Bugggg\n\n23) tuxhedoh: Build Y1 Tuxhedoh\n\n24) bugggg: Trade B2 Y2 Bugggg\n\n25) tuxhedoh: Build G2 Tuxhedoh\n\n26) bugggg: Build B2 Bugggg\n\n27) tuxhedoh: Sacrifice Y2 Tuxhedoh\nDiscover B1 Tuxhedoh Y3 Tux0\nMove B1 Tux0 Bugggg\nCatastrophe Bugggg Blue\n\n28) bugggg: Sacrifice Y2 Bugggg\nDiscover G1 Bugggg Y3 Bug2\nMove G1 Bug2 Tuxhedoh\nCatastrophe Tuxhedoh Green\n\ttuxhedoh: I know one strategy. was scared you were going to use it on me prior to my turn.\n\tbugggg: darnit! i was going to swap that guy, didn&#39;t realize that you&#39;d be able to get me on that turn!\n\n29) tuxhedoh: Trade R1 G1 Tuxhedoh\n\tbugggg: ahhhhhhhh i seeeee how it works now\n\tbugggg: oh wow am i stuck now? i don&#39;t see how i could move or swap at this point...\n\tbugggg: unless of course i kill one of your guys\n\ttuxhedoh: yeah. that was the same move that you could&#39;ve done a turn earlier\r\n\n\n30) bugggg: Build G1 Bugggg\n\n31) tuxhedoh: Build R1 Tuxhedoh\n\n32) bugggg: Pass\n\n33) tuxhedoh: Trade R3 Y3 Tuxhedoh\n\n34) bugggg: Pass\n\n35) tuxhedoh: Build R1 Tuxhedoh\n\n36) bugggg: Pass\n\n37) tuxhedoh: Discover R1 Tuxhedoh Y3 Tux1\n\ttuxhedoh: Passing to see if I can figure out the win? :D\n\n38) bugggg: Pass\n\tbugggg: WELL NOW I&#39;M DEAD, I HOPE THAT YOU&#39;RE SATISFIED. you&#39;ll definitely win on the next turn.\n\n39) tuxhedoh: Sacrifice Y3 Tuxhedoh\nMove R1 Tuxhedoh Tux1\nMove R1 Tux1 Bugggg\nMove R1 Tux1 Bugggg\nCatastrophe Bugggg Red\n\n\nHomeworlds Online (SDG# 22557)\nStarted: 2012.7.15, Ended: 2012.7.22\nParticipants: pgadey (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: H R2 B1 G3\n\n2) pgadey: Homeworld G3 R2 B3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\n4) pgadey: Trade B3 G3 Pgadey\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n\nHomeworlds Online (SDG# 22574)\nStarted: 2012.7.16, Ended: 2012.7.27\nParticipants: swatter (S), bugggg (N)\nWinner: bugggg\n\n1) bugggg: Homeworld R1 B2 G3\n\n2) swatter: Homeworld R2 B3 G3\n\n3) bugggg: Build G1 Bugggg\n\n4) swatter: Build G1 Swatter\n\n5) bugggg: Build G1 Bugggg\n\n6) swatter: Build G2 Swatter\n\n7) bugggg: Trade G1 Y1 Bugggg\n\n8) swatter: Build G1 Swatter\n\n9) bugggg: Trade G3 Y3 Bugggg\n\n10) swatter: Trade G1 Y1 Swatter\n\n11) bugggg: Sacrifice Y3 Bugggg\nDiscover G1 Bugggg Y3 Genocyber\nDiscover G1 Genocyber Y1 Ranma\nMove G1 Ranma Swatter\nCatastrophe Swatter Green\n\n12) swatter: Trade Y1 G1 Swatter\n\n13) bugggg: Trade Y1 G1 Bugggg\n\n14) swatter: Build G1 Swatter\n\n15) bugggg: Build G2 Bugggg\n\n16) swatter: Trade G1 R1 Swatter\n\n17) bugggg: Trade G1 Y1 Bugggg\n\n18) swatter: Build R1 Swatter\n\n19) bugggg: Build Y1 Bugggg\n\n20) swatter: Pass\n\n21) bugggg: Discover Y1 Bugggg Y3 Moss\n\n\nHomeworlds Online (SDG# 22531)\nStarted: 2012.7.17, Ended: 2012.8.27\nParticipants: ts52 (S), tuxhedoh (N)\nWinner: ts52\n\n1) tuxhedoh: Homeworld G1 B2 Y3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) tuxhedoh: Build Y1 Tuxhedoh\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n6) ts52: Build G1 Ts52\n\n7) tuxhedoh: Build R1 Tuxhedoh\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\n9) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n10) ts52: Build G2 Grover\n\n11) tuxhedoh: Trade Y3 G3 Tuxhedoh\n\ttuxhedoh: Don&#39;t remember what I was wanting to do...\n\n12) ts52: Trade G2 R2 Grover\n\ttuxhedoh: That was it, figuring out how to get a green ship of my very own.\n\n13) tuxhedoh: Build G2 Tuxhedoh\n\n14) ts52: Build G2 Grover\n\n15) tuxhedoh: Build Y1 Tuxhedoh\n\n16) ts52: T G2 Y2 Grover\n\n17) tuxhedoh: Discover G2 Tuxhedoh B3 Ralph\n\n18) ts52: Build G2 Grover\n\n19) tuxhedoh: Build R1 Tuxhedoh\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Ts52\n\n21) tuxhedoh: Move Y1 Tuxhedoh Ralph\n\n22) ts52: Discover G2 Grover Y3 Bigbird\n\n23) tuxhedoh: Build Y1 Ralph\n\n24) ts52: Move G1 Grover Bigbird\n\n25) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild R1 Tuxhedoh\nBuild Y2 Tuxhedoh\nBuild G3 Ralph\n\n26) ts52: Discover G3 Ts52 B2 Gonzo\n\n27) tuxhedoh: Move R1 Tuxhedoh Ralph\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild R2 Grover\n\n29) tuxhedoh: Sacrifice G3 Ralph\nBuild R2 Ralph\nBuild Y3 Tuxhedoh\nBuild G3 Ralph\n\n30) ts52: Sacrifice Y2 Grover\nMove Y2 Grover Bigbird\nMove Y2 Bigbird Tuxhedoh\nCatastrophe Tuxhedoh Yellow\n\n31) tuxhedoh: Sacrifice G3 Ralph\nBuild G3 Ralph\nBuild R3 Tuxhedoh\nBuild Y1 Ralph\n\ttuxhedoh: Sorry, had a small crisis to deal with that had me distracted from playing.   TBH, I&#39;m not sure what I should do at this point.\n\n32) ts52: Trade R2 Y2 Grover\n\n33) tuxhedoh: Move Y1 Ralph Tuxhedoh\n\tts52: No worries. Hope it was nothing too serious.\n\n34) ts52: Sacrifice Y2 Grover\nMove R2 Grover Bigbird\nMove R2 Bigbird Tuxhedoh\nCatastrophe Tuxhedoh Red\n\ttuxhedoh: Complete power failure at work, rented a generator, whole 9 yards.\n\tts52: Ugh, that sucks.\n\n35) tuxhedoh: Pass\n\n36) ts52: Trade G2 R2 Grover\n\ttuxhedoh: I got no idea in this game...\n\n\nHomeworlds Online (SDG# 22585)\nStarted: 2012.7.18, Ended: 2012.8.3\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld Y1 B2 G3\n\n2) bugggg: Homeworld B3 R1 G3\n\n3) tuxhedoh: Build G1 Tuxhedoh\n\n4) bugggg: Build G1 Bugggg\n\n5) tuxhedoh: Trade G1 Y1 Tuxhedoh\n\n6) bugggg: Trade G1 Y1 Bugggg\n\n7) tuxhedoh: Build Y2 Tuxhedoh\n\n8) bugggg: Build Y2 Bugggg\n\n9) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n10) bugggg: Trade Y2 R2 Bugggg\n\n11) tuxhedoh: Build G1 Tuxhedoh\n\n12) bugggg: Build G1 Bugggg\n\n13) tuxhedoh: Build G1 Tuxhedoh\n\n14) bugggg: Trade R2 Y2 Bugggg\n\n15) tuxhedoh: Discover G1 Tuxhedoh Y3 Ralph\n\n16) bugggg: Build G2 Bugggg\n\n17) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G2 Ralph\nBuild G2 Tuxhedoh\nBuild G3 Ralph\n\n18) bugggg: Sacrifice Y2 Bugggg\nDiscover G1 Bugggg Y2 Skeeter\nMove G1 Skeeter Ralph\nCatastrophe Ralph Green\n\n19) tuxhedoh: Build Y1 Tuxhedoh\n\tbugggg: how was that one?\n\n20) bugggg: Trade G3 Y3 Bugggg\n\n21) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n22) bugggg: Build G1 Bugggg\n\n23) tuxhedoh: Discover G1 Tuxhedoh Y3 Tux2\n\n24) bugggg: Trade G1 B1 Bugggg\n\n25) tuxhedoh: Build G1 Tuxhedoh\n\n26) bugggg: Build G1 Bugggg\n\n27) tuxhedoh: Build R1 Tuxhedoh\n\n28) bugggg: Discover Y1 Bugggg Y2 Bug2\n\n29) tuxhedoh: Move R1 Tuxhedoh Tux2\n\n30) bugggg: Move B1 Bugggg Bug2\n\n31) tuxhedoh: Build R2 Tux2\n\n32) bugggg: Move G1 Bugggg Bug2\n\n33) tuxhedoh: Move R2 Tux2 Bug2\n\n34) bugggg: Build G2 Bugggg\n\n35) tuxhedoh: Attack G1 Bug2\n\n36) bugggg: Sacrifice G2 Bugggg\nBuild Y1 Bug2\nBuild Y2 Bug2\nCatastrophe Bug2 Yellow\n\n37) tuxhedoh: Discover G1 Tux2 G2 Tux3\n\n38) bugggg: Build Y1 Bugggg\n\n39) tuxhedoh: Build G1 Tux3\n\n40) bugggg: Build Y1 Bugggg\n\n41) tuxhedoh: Move G1 Tuxhedoh Tux2\n\n42) bugggg: Trade Y1 B1 Bugggg\n\n43) tuxhedoh: Build G3 Tux2\n\n44) bugggg: Move B1 Bugggg Tux3\n\n45) tuxhedoh: Move B1 Tuxhedoh Tux2\n\n46) bugggg: Move Y1 Bugggg Tux3\n\n47) tuxhedoh: Sacrifice G3 Tux2\nBuild G3 Tux2\nBuild G3 Tuxhedoh\nBuild B1 Tux2\n\n48) bugggg: Build G3 Bugggg\n\n49) tuxhedoh: Trade G3 R3 Tux2\n\n50) bugggg: Trade G2 R2 Bugggg\n\n51) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G2 Tux2\nBuild G3 Tuxhedoh\nBuild G3 Tuxhedoh\n\n52) bugggg: Move Y1 Tux3 Bugggg\n\n53) tuxhedoh: Move B1 Tux2 Tux3\n\n54) bugggg: Sacrifice R2 Bugggg\nAttack G1 Tux3\nAttack B1 Tux3\n\n55) tuxhedoh: Move R3 Tux2 Tux3\n\n56) bugggg: Trade B1 Y1 Tux3\n\n57) tuxhedoh: Build R2 Tux2\n\n58) bugggg: Build Y2 Tux3\n\n59) tuxhedoh: Sacrifice R2 Tux2\nAttack G1 Tux3\nAttack B1 Tux3\n\n60) bugggg: Sacrifice Y2 Tux3\nMove Y3 Bugggg Tux3\nMove Y3 Tux3 Tux2\n\n61) tuxhedoh: Attack Y1 Tux3\n\n62) bugggg: Build Y2 Bugggg\n\n63) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G3 Tuxhedoh\nBuild B1 Tux3\nBuild B2 Tux3\n\n64) bugggg: Move G3 Bugggg Tux3\nCatastrophe Tux3 Green\n\n65) tuxhedoh: Discover G2 Tux2 B2 Tux4\n\n66) bugggg: Trade Y1 G1 Bugggg\n\n67) tuxhedoh: Build R2 Tux2\n\n68) bugggg: Build Y1 Bugggg\n\n69) tuxhedoh: Build G1 Tux4\n\n70) bugggg: Trade Y2 R2 Bugggg\n\n71) tuxhedoh: Discover G2 Tuxhedoh Y3 Tux5\n\n72) bugggg: Build G2 Bugggg\n\n73) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G3 Tux5\nBuild G3 Tuxhedoh\nBuild R2 Tux2\n\n74) bugggg: Build Y1 Bugggg\n\n75) tuxhedoh: Trade G3 B3 Tuxhedoh\n\n76) bugggg: Move Y3 Tux2 Tux4\n\n77) tuxhedoh: Move B3 Tuxhedoh Tux5\n\n78) bugggg: Move Y1 Bugggg Tux4\n\n79) tuxhedoh: Move R2 Tux2 Tux4\n\n80) bugggg: Move Y1 Tux4 Tux5\n\n81) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G3 Tux2\nBuild R3 Tux4\nBuild R3 Tuxhedoh\n\n82) bugggg: Move Y3 Tux4 Bugggg\n\n83) tuxhedoh: Sacrifice Y2 Tuxhedoh\nMove R3 Tux4 Bugggg\nMove R2 Tux4 Bugggg\nCatastrophe Bugggg Red\n\n84) bugggg: Sacrifice G1 Bugggg\nBuild Y2 Bugggg\n\n85) tuxhedoh: Trade G2 Y2 Tux5\n\n86) bugggg: Sacrifice Y3 Bugggg\nMove Y1 Tux5 Tuxhedoh\nMove Y1 Bugggg Tuxhedoh\nMove Y2 Bugggg Tuxhedoh\nCatastrophe Tuxhedoh Yellow\n\n87) tuxhedoh: Move G1 Tux2 Tux4\n\n88) bugggg: Build G1 Bugggg\n\n89) tuxhedoh: Sacrifice Y2 Tux5\nMove G2 Tux4 Bugggg\nMove G1 Tux4 Bugggg\nCatastrophe Bugggg G\n\n\tbugggg: OOOOOOPS. oh well.\n\nHomeworlds Online (SDG# 22602)\nVariants: &quot;Hard time&quot;\nStarted: 2012.7.20, Ended: 2012.10.25\nParticipants: ts52 (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\tts52: Have a good game!\n\tMagicJohn: Most of my wins have been forfeits. I&#39;m probably out of my depth so I&#39;m hoping for a real steep learning curve.....   Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) ts52: Discover G1 Ts52 B2 Grover\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) ts52: Build G1 Ts52\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Bisbee\n\n10) ts52: Build G2 Grover\n\n11) MagicJohn: Discover Y1 Magicjohn G3 Flagstaff\n\n12) ts52: Trade G2 Y2 Grover\n\n13) MagicJohn: Build G2 Magicjohn\n\n14) ts52: Build G2 Grover\n\n15) MagicJohn: Build G2 Bisbee\n\n16) ts52: Trade G2 R2 Grover\n\n17) MagicJohn: Trade G2 R2 Magicjohn\n\n18) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Grover\nBuild G3 Ts52\n\n19) MagicJohn: Discover G1 Bisbee Y2 Tombstone\n\n20) ts52: Trade G2 B2 Ts52\n\n21) MagicJohn: Build G2 Magicjohn\n\n22) ts52: Move B2 Ts52 Tombstone\n\n23) MagicJohn: Trade G2 Y2 Magicjohn\n\n24) ts52: Build R1 Grover\n\n25) MagicJohn: Build G2 Magicjohn\n\n26) ts52: Sacrifice R1 Grover\nAttack G1 Tombstone\n\n27) MagicJohn: Move R2 Magicjohn Bisbee\n\n28) ts52: Build R1 Grover\n\n29) MagicJohn: Build Y1 Magicjohn\n\n30) ts52: Move R2 Grover Flagstaff\n\n31) MagicJohn: Discover Y1 Flagstaff R2 Sunflower\n\n32) ts52: Move Y2 Grover Flagstaff\n\n33) MagicJohn: Move Y1 Magicjohn Bisbee\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Grover\nBuild R3 Flagstaff\n\n35) MagicJohn: Sacrifice G3 Magicjohn\nBuild G3 Magicjohn\nBuild Y1 Sunflower\nBuild Y3 Magicjohn\n\n36) ts52: M R2 Flagstaff Sunflower\n\n37) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y1 Sunflower Ts52\nMove Y1 Sunflower Ts52\nPass\n\n38) ts52: Sacrifice R2 Sunflower\nAttack Y1 Ts52\nAttack Y1 Ts52\n\n39) MagicJohn: Sacrifice Y3 Magicjohn\nMove Y1 Bisbee Grover\nMove Y1 Grover Ts52\nPass\nCatastrophe Ts52 Yellow\n\n40) ts52: Build B1 Tombstone\n\n41) MagicJohn: Trade G3 Y3 Magicjohn\n\n42) ts52: Trade G1 Y1 Ts52\n\n43) MagicJohn: Build Y1 Magicjohn\n\n44) ts52: Trade R1 Y1 Grover\n\n45) MagicJohn: Move Y1 Magicjohn Bisbee\n\n46) ts52: Sacrifice Y2 Flagstaff\nMove Y1 Grover Bisbee\nMove Y1 Ts52 Bisbee\nCatastrophe Bisbee Yellow\n\n47) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: oops\n\n48) ts52: Move B1 Tombstone Flagstaff\n\n49) MagicJohn: Discover G1 Magicjohn G3 Tempe\n\n50) ts52: Trade G1 Y1 Grover\n\n51) MagicJohn: Build Y1 Magicjohn\n\n52) ts52: Build B1 Flagstaff\n\n53) MagicJohn: Move Y1 Magicjohn Tempe\n\n54) ts52: Build B3 Flagstaff\n\n55) MagicJohn: Trade Y3 B3 Magicjohn\n\n56) ts52: Trade B3 Y3 Flagstaff\n\n57) MagicJohn: Trade B3 Y3 Magicjohn\n\n58) ts52: Build B3 Tombstone\n\n59) MagicJohn: Discover G2 Magicjohn B3 Ajo\n\n60) ts52: Trade B3 R3 Tombstone\n\n61) MagicJohn: Build Y1 Tempe\n\n62) ts52: Move R3 Tombstone Tempe\n\n63) MagicJohn: Build G1 Ajo\n\tMagicJohn: Tactics 101: Apparently one should not knock out an opponent&#39;s base star early in the game just because it is possible...... \n\n64) ts52: Attack Y1 Tempe\n\n65) MagicJohn: Move G1 Tempe Magicjohn\n\tts52: Yeah, just because you can, doesn&#39;t always mean you should.\n\n66) ts52: Attack Y1 Tempe\n\tMagicJohn: But it was kinda fun.......\n\n67) MagicJohn: Build G2 Magicjohn\n\n68) ts52: Build B3 Flagstaff\n\n69) MagicJohn: Discover G1 Magicjohn B3 Payson\n\n70) ts52: Build Y2 Grover\n\n71) MagicJohn: Sacrifice Y3 Magicjohn\nMove G1 Payson Ts52\nMove G2 Ajo Ts52\nMove G1 Ajo Ts52\nCatastrophe Ts52 Green\n\tMagicJohn: Thanks for the game. Can&#39;t believe I won that mess. Sorry about taking so long between moves. My wife&#39;s been sick and my sleep patterns have been erratic, so I have been avoiding play if I&#39;m obviously too spacey (pun intended) to initiate reasonably good moves. I know that my slow play makes it difficult for my opponents to stay engaged in the games. Take care. \n\tts52: Wow. Well done. Way to catch me napping, and lull me into a false sense of security. Good game.\n\tts52: Don&#39;t worry about the slow play. That&#39;s the whole point of SDG, to let play continue around life. Hope your wife is feeling better.\n\n\nHomeworlds Online (SDG# 21932)\nVariants: &quot;Sinister&quot;\nStarted: 2012.7.20, Ended: 2012.9.6\nParticipants: Uglyfoot (S), goblin981 (W), alihv (N), Mandrel (E)\nWinner: Uglyfoot\n\n1) alihv: Homeworld R1 B2 G3\n\n2) Mandrel: Homeworld R3 B2 G3\n\talihv: hi, have fun\n\n3) Uglyfoot: Homeworld B3 Y1 G3\n\n4) goblin981: H G3 B2 Y3\n\n5) alihv: B G1 Alihv\n\n6) Mandrel: Build G1 Mandrel\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) goblin981: B Y1 Goblin981\n\n9) alihv: T G1 Y1 Alihv\n\n10) Mandrel: Trade G1 Y1 Mandrel\n\n11) Uglyfoot: Trade G1 R1 Uglyfoot\n\n12) goblin981: T Y1 R1 Goblin981\n\n13) alihv: B Y1 Alihv\n\n14) Mandrel: Build G1 Mandrel\n\n15) Uglyfoot: Build G1 Uglyfoot\n\n16) goblin981: B Y1 Goblin981\n\n17) alihv: T Y1 R1 Alihv\n\n18) Mandrel: Discover G1 Mandrel B1 Running\n\n19) Uglyfoot: Discover G1 Uglyfoot R2 Redone\n\n20) goblin981: B R1 Goblin981\n\n21) alihv: D R1 Alihv G3 Freepussyriot\n\n22) Mandrel: Build G1 Running\n\tgoblin981: Anyone watching the Olympics?  Where you guys from?\n\tgoblin981: Anyone watching the Olympics?  Where you guys from?\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) goblin981: D R1 Goblin981 Y1 Alpha\n\n25) alihv: B Y2 Alihv\n\n26) Mandrel: Build Y2 Mandrel\n\n27) Uglyfoot: Build R2 Uglyfoot\n\n28) goblin981: B Y2 Goblin981\n\n29) alihv: M Y1 Alihv Freepussyriot\n\n30) Mandrel: Move Y1 Mandrel Running\n\n31) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n32) goblin981: M Y2 Goblin981 Running\n\n33) alihv: Sacrifice G3 Alihv\nBuild Y2 Freepussyriot\nBuild R2 Freepussyriot\nBuild Y3 Alihv\n\n34) Mandrel: Build Y3 Mandrel\n\n35) Uglyfoot: Build R2 Uglyfoot\n\n36) goblin981: T Y2 R2 Running\n\n37) alihv: M Y2 Freepussyriot Redone\n\n38) Mandrel: S Y3 Mandrel\nM Y1 Running Goblin981\nM G1 Running Goblin981\nM G1 Running Goblin981\n\n39) Uglyfoot: Trade R1 B1 Uglyfoot\n\n40) goblin981: S R2 Running\nAttack G1E Goblin981\nAttack G1E Goblin981\n\n41) alihv: Trade Y3 G3 Alihv\n\n42) Mandrel: B Y2 Goblin981\nC Goblin981 Y\n\n43) Uglyfoot: Discover R2 Uglyfoot B2 Blueone\n\n44) goblin981: T G1 Y1 Goblin981\n\n45) alihv: A G1S Redone\n\n46) Mandrel: Build G1 Mandrel\n\n47) Uglyfoot: Move G1 Uglyfoot Blueone\n\n48) goblin981: M G1 Goblin981 Alpha\n\n49) alihv: Sacrifice Y2 Redone\nMove G1 Redone Alpha\nMove G1 Alpha Mandrel\n\n50) Mandrel: Attack G1N Mandrel\n\n51) Uglyfoot: Build R1 Blueone\n\n52) goblin981: M G1 Alpha Mandrel\nCatastrophe Mandrel G\n\n53) alihv: Build G1 Alihv\n\n54) Mandrel: Trade Y2 G2 Mandrel\n\n55) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove R2 Blueone Alpha\nMove R2 Alpha Goblin981\n\n56) goblin981: B Y1 Goblin981\n\n57) alihv: Move G3 Alihv Freepussyriot\n\n58) Mandrel: Build G1 Mandrel\n\n59) Uglyfoot: Attack R1W Goblin981\n\n60) goblin981: Discover R1 Alpha Y2 Beta\n\n61) alihv: Discover G3 Freepussyriot Y1 Good_game\n\n62) Mandrel: Trade G2 Y2 Mandrel\n\n63) Uglyfoot: Sacrifice R2 Goblin981\nAttack Y1W Goblin981\nAttack Y1W Goblin981\n\n\nHomeworlds Online (SDG# 22593)\nVariants: &quot;Hard time&quot;\nStarted: 2012.7.20, Ended: 2012.7.26\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) ajo: Homeworld G3 Y2 B3\n\tDanner: Hi! Have a nice game!\n\n3) Danner: Build G1 Danner\n\n4) ajo: Build B1 Ajo\n\n5) Danner: Trade G3 B3 Danner\n\n6) ajo: Discover B1 Ajo B1 Alpha\n\n7) Danner: Build B2 Danner\n\n8) ajo: Build B2 Ajo\n\n9) Danner: Trade B3 Y3 Danner\n\n10) ajo: Trade B2 Y2 Ajo\n\n11) Danner: Discover B2 Danner G3 Beta\n\n12) ajo: Build B2 Ajo\n\n13) Danner: Build B2 Beta\n\n14) ajo: Build B3 Ajo\n\n15) Danner: Sacrifice Y3 Danner\nMove B2 Beta Alpha\nMove B2 Alpha Ajo\nPass\nCatastrophe Ajo B\n\n16) ajo: Trade B1 G1 Alpha\n\n17) Danner: Build B1 Beta\n\tajo: &quot;You maniacs! You finally did it! You blew it all up!&quot;\n\tDanner: :-D\n\n18) ajo: Build G1 Alpha\n\n19) Danner: Build G2 Danner\n\n20) ajo: Build G2 Alpha\n\n21) Danner: Build G2 Danner\n\n22) ajo: Trade G1 Y1 Alpha\n\n23) Danner: Trade G2 Y2 Danner\n\n24) ajo: Trade G2 R2 Alpha\n\n25) Danner: Trade B2 R2 Beta\n\n26) ajo: Build R1 Alpha\n\n27) Danner: Build Y1 Danner\n\n28) ajo: Trade R2 B2 Alpha\n\n29) Danner: Move Y1 Danner Beta\n\n30) ajo: Build R1 Alpha\n\n31) Danner: Sacrifice G2 Danner\nBuild Y1 Danner\nBuild Y3 Beta\n\tajo: I&#39;m just gonna keep edging out farther and farther on this limb I&#39;m on...\n\n32) ajo: Move B2 Alpha Ajo\n\tDanner: The building of the mothership has been completed, our civilization has been restored!\n\n33) Danner: Build Y3 Danner\n\n34) ajo: Sacrifice Y2 Ajo\nMove Y1 Alpha Beta\nMove Y1 Beta Danner\nCatastrophe Danner Yellow\n\n35) Danner: Move Y3 Beta Alpha\n\n\tajo: Put a fork in me, I&#39;m done. :P  Play again?\n\tDanner: I would prefer not to, sorry. It distracts me from my project. But I don&#39;t really have a choice if it&#39;s a ladder challenge. :) Thanks for the game!\n\nHomeworlds Online (SDG# 22296)\nVariants: &quot;Hard time&quot;\nStarted: 2012.7.22, Ended: 2012.7.24\nParticipants: pgadey (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n\nHomeworlds Online (SDG# 22647)\nVariants: &quot;Hard time&quot;\nStarted: 2012.7.28, Ended: 2012.8.5\nParticipants: dlwillson (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) dlwillson: H B3 Y1 G3 Dlwillson\n\tDanner: Hi!\r\nI would like to apologize in advance: this game is likely to be slow.\n\n3) Danner: Build G1 Danner\n\n4) dlwillson: B G1 Dlwillson\n\n5) Danner: Trade G1 Y1 Danner\n\tdlwillson: That wasn&#39;t slow... :-)\n\tdlwillson: That wasn&#39;t slow... :-)\n\n6) dlwillson: T G1 B1 Dlwillson\n\tDanner: I just wanted to fill my time bank. Sorry again, but I must concentrate on my project now.\n\n7) Danner: Build Y1 Danner\n\tdlwillson: NP. See you after. May I ask about your project?\n\n8) dlwillson: B B1 Dlwillson\n\tDanner: Of course. :) It&#39;s a strategy browser game, still in early development.\n\n9) Danner: Build Y2 Danner\n\n10) dlwillson: D B1 Dlwillson G2 Field\n\n11) Danner: Discover Y1 Danner B3 Ocean\n\tdlwillson: It&#39;d be stunning if it were a strategy game we both know and love and love to play...\n\tDanner: Like Homeworlds? :D\r\nWell, this game is in Hungarian. It&#39;s unlikely that it will be worthy to be translated.\r\nBtw, it&#39;s weekend, I guess I can have some fun on SDG. :)\n\n12) dlwillson: B B2 Field\n\tdlwillson: Danner, you are one of my favorite opponents!\n\n13) Danner: Sacrifice G3 Danner\nBuild Y2 Ocean\nBuild Y2 Ocean\nBuild Y3 Danner\n\tDanner: I&#39;m glad to hear that. :)\n\n14) dlwillson: B B2 Dlwillson\n\tdlwillson: Hm. You ~ were ~ one of my favorite opponents... :-)\n\n15) Danner: Trade Y3 G3 Danner\n\tDanner: :-D\n\n16) dlwillson: D B2 Dlwillson G2 Forest\n\n17) Danner: Build Y3 Danner\n\n18) dlwillson: B G1 Dlwillson\n\n19) Danner: Trade Y3 B3 Danner\n\tdlwillson: Sorry for the take-back...\n\n20) dlwillson: T G3 Y3 Dlwillson\n\tdlwillson: Or, um, never mind? I tried to take a move back, but it didn&#39;t work. Now I have what I have. I suppose this will all be over sooon... :-)\n\n21) Danner: Build Y3 Danner\n\tDanner: Maybe I made my move too fast?\n\n22) dlwillson: B G1 Dlwillson\n\n23) Danner: Discover Y1 Ocean G2 Hill\n\n24) dlwillson: D G1 Dlwillson B2 Sky\n\n25) Danner: Sacrifice Y3 Danner\nMove Y2 Ocean Hill\nMove Y1 Hill Dlwillson\nMove Y2 Hill Dlwillson\nCatastrophe Dlwillson Y\n\n26) dlwillson: T B1 Y1 Dlwillson\n\n27) Danner: Move B3 Danner Dlwillson\n\n28) dlwillson: B G1 Dlwillson\n\tdlwillson: Airplane taking off. I&#39;ll check back when we land.\n\tDanner: Ok.\n\tdlwillson:  Oop. Never mind. Good game. See you next time.\n\tDanner: Have a nice flight!\n\n29) Danner: Trade B3 R3 Dlwillson\n\tdlwillson: I lost this one on the sixth or seventh turn, and you played perfectly. Good game.\n\n30) dlwillson: S B2 Field\nT Y1 R1 Dlwillson\nT G1 R1 Dlwillson\n\tDanner: Thanks.\n\n31) Danner: Attack G1S Dlwillson\n\n32) dlwillson: A G1 Dlwillson\n\n33) Danner: Move Y2 Danner Dlwillson\n\tdlwillson: No... :-)\n\tDanner: Infinite loop, yay! :)\n\n34) dlwillson: B R1 Dlwillson\nC Dlwillson R\n\n35) Danner: Trade Y2 R2 Dlwillson\n\n36) dlwillson: Build G1 Dlwillson\n\n37) Danner: Attack G1S Dlwillson\n\n38) dlwillson: B G2 Dlwillson\n\n39) Danner: Build G3 Dlwillson\nCatastrophe Dlwillson G\n\tDanner: Good game.\n\n\nHomeworlds Online (SDG# 22668)\nVariants: &quot;Hard time&quot;\nStarted: 2012.8.3, Ended: 2012.8.9\nParticipants: Aristos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Aristos: Homeworld G2 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy\n\n4) Aristos: Build Y1 Aristos\n\tAristos: Well met. I probably won&#39;t be moving further tonight, but I&#39;ll try to move again in the morning if you move soon.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Aristos: Discover Y1 Aristos G3 Opening\n\tTwoShort: No problem.  I tend to slow down a lot after the first few moves in any case.\n\n7) TwoShort: Build G1 Twoshort\n\n8) Aristos: Build Y1 Opening\n\n9) TwoShort: Build Y2 Twoshort\n\n10) Aristos: Build Y2 Aristos\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) Aristos: Discover Y1 Opening B2 Shifter\n\n13) TwoShort: Build G1 Twoshort\n\n14) Aristos: Trade Y1 G1 Shifter\n\n15) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n16) Aristos: Build G2 Shifter\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Grogar\n\n18) Aristos: Sacrifice Y2 Aristos\nMove G1 Shifter Twoshort\nMove G2 Shifter Twoshort\nCatastrophe Twoshort Green\n\n19) TwoShort: Sacrifice G3 Yolonda\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild Y3 Twoshort\n\n20) Aristos: Discover Y1 Opening G2 Hehehehe\n\n21) TwoShort: Move Y3 Twoshort Hehehehe\n\n\tAristos: Well played.\n\tTwoShort: Thanks for the game.\n\nHomeworlds Online (SDG# 22674)\nVariants: &quot;Unrated&quot;\nStarted: 2012.8.4, Ended: 2012.8.5\nParticipants: bugggg (S), Krispy101 (N)\nWinner: bugggg\n\n1) Krispy101: Homeworld G3 B2 R3\n\n2) bugggg: Homeworld B1 Y2 G3\n\n3) Krispy101: Trade R3 Y3 Krispy101\n\n4) bugggg: Build G1 Bugggg\n\n5) Krispy101: Build Y1 Krispy101\n\n6) bugggg: Build G1 Bugggg\n\n7) Krispy101: Discover Y1 Krispy101 R1 Adam\n\n8) bugggg: Trade G1 R1 Bugggg\n\n9) Krispy101: Trade Y3 R3 Krispy101\n\n10) bugggg: Build G1 Bugggg\n\n11) Krispy101: Build R1 Krispy101\n\n12) bugggg: Trade G1 Y1 Bugggg\n\n13) Krispy101: Discover Y1 Adam G2 Bertie\n\n14) bugggg: Build G1 Bugggg\n\n15) Krispy101: Build Y1 Bertie\n\n16) bugggg: Discover G1 Bugggg Y3 Eyedea\n\n17) Krispy101: Trade R1 B1 Krispy101\n\n18) bugggg: Build G1 Eyedea\n\n19) Krispy101: Discover Y1 Bertie B1 Charlie\n\n20) bugggg: Build G2 Bugggg\n\n21) Krispy101: Build Y2 Bertie\n\n22) bugggg: Build Y2 Bugggg\n\n23) Krispy101: Move Y2 Bertie Charlie\n\n24) bugggg: Move G1 Eyedea Charlie\n\n25) Krispy101: Trade Y2 R2 Charlie\n\n26) bugggg: Sacrifice G2 Bugggg\nBuild G2 Charlie\nBuild G2 Charlie\n\n27) Krispy101: Attack G2 Charlie\n\n28) bugggg: Sacrifice Y2 Bugggg\nMove G1 Charlie Krispy101\nMove G2 Charlie Krispy101\n\n29) Krispy101: Attack G2 Krispy101\n\n30) bugggg: Sacrifice G1 Bugggg\nBuild G1 Krispy101\nCatastrophe Krispy101 Green\n\n31) Krispy101: Discover Y1 Charlie G2 Darren\n\n32) bugggg: Build Y2 Bugggg\n\n33) Krispy101: Build Y2 Darren\n\n34) bugggg: Trade Y2 B2 Bugggg\n\n35) Krispy101: Move Y2 Darren Charlie\n\n36) bugggg: Move B2 Bugggg Eyedea\n\n37) Krispy101: Build Y2 Charlie\n\n38) bugggg: Build B2 Eyedea\n\n39) Krispy101: Move Y2 Charlie Krispy101\n\n40) bugggg: Build Y3 Bugggg\n\n41) Krispy101: Build Y3 Bertie\n\n42) bugggg: Sacrifice Y3 Bugggg\nMove B2 Eyedea Krispy101\nMove B2 Eyedea Krispy101\nPass\nCatastrophe Krispy101 Blue\n\n\nHomeworlds Online (SDG# 22677)\nVariants: &quot;Unrated&quot;\nStarted: 2012.8.5, Ended: 2012.8.6\nParticipants: Krispy101 (S), bugggg (N)\nWinner: bugggg\n\n1) bugggg: Homeworld B2 Y3 G3\n\n2) Krispy101: Homeworld Y3 B2 G3\n\n3) bugggg: Build G1 Bugggg\n\n4) Krispy101: Build G1 Krispy101\n\n5) bugggg: Trade G1 R1 Bugggg\n\n6) Krispy101: Discover G1 Krispy101 B1 Alpha\n\n7) bugggg: Build R1 Bugggg\n\n8) Krispy101: Build G1 Krispy101\n\n9) bugggg: Move R1 Bugggg Alpha\n\n10) Krispy101: Trade G1 R1 Krispy101\n\n11) bugggg: Attack G1 Alpha\n\n12) Krispy101: Build R2 Krispy101\n\n13) bugggg: Build R2 Alpha\n\n14) Krispy101: Discover R1 Krispy101 Y1 Bravo\n\n15) bugggg: Build G1 Bugggg\n\n16) Krispy101: Move G3 Krispy101 Bravo\n\n17) bugggg: Trade G3 R3 Bugggg\n\n18) Krispy101: Build G1 Bravo\n\n19) bugggg: Sacrifice R1 Alpha\nPass\n\n20) Krispy101: Move G1 Bravo Krispy101\n\n21) bugggg: Build G2 Alpha\n\n22) Krispy101: Trade G1 B1 Krispy101\n\n23) bugggg: Trade G2 Y2 Alpha\n\n24) Krispy101: Build R1 Bravo\n\n25) bugggg: Sacrifice Y2 Alpha\nMove R3 Bugggg Alpha\nMove R3 Alpha Krispy101\n\n26) Krispy101: Move G3 Bravo Krispy101\n\n27) bugggg: Sacrifice R2 Alpha\nAttack G3 Krispy101\nAttack R2 Krispy101\n\n28) Krispy101: Move R1 Bravo Bugggg\n\n29) bugggg: Attack B1 Krispy101\n\n\nHomeworlds Online (SDG# 22688)\nVariants: &quot;Hard time&quot;\nStarted: 2012.8.7, Ended: 2012.8.14\nParticipants: dlwillson (S), ajo (N)\nWinner: dlwillson\n\n1) ajo: Homeworld B3 Y1 G3\n\n2) dlwillson: H Y3 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) dlwillson: Build G1 Dlwillson\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) ajo: Build Y2 Ajo\n\n8) dlwillson: B Y2 Dlwillson\n\n9) ajo: Trade Y2 R2 Ajo\n\n10) dlwillson: Discover Y1 Dlwillson G1 Field\n\n11) ajo: Discover Y1 Ajo G2 Alpha\n\n12) dlwillson: B Y2 Dlwillson\n\n13) ajo: Discover Y1 Alpha G1 Beta\n\n14) dlwillson: Trade Y2 R2 Dlwillson\n\n15) ajo: Build Y2 Beta\n\n16) dlwillson: D Y2 Dlwillson B1 Sky\n\n17) ajo: Build R1 Ajo\n\n18) dlwillson: B Y2 Field\n\n19) ajo: Trade R1 B1 Ajo\n\n20) dlwillson: D Y2 Field B3 Sea\n\n21) ajo: Sacrifice B1 Ajo\nTrade Y1 B1 Beta\n\n22) dlwillson: S G3 Dlwillson\nB Y1 Sea\nB Y3 Sky\nB Y3 Sky\n\n23) ajo: Build B1 Beta\n\n24) dlwillson: M Y3 Sky Dlwillson\n\n25) ajo: Build B2 Beta\n\n26) dlwillson: T Y2 B2 Sea\n\n27) ajo: Discover B2 Beta Y2 Gamma\n\n28) dlwillson: D Y2 Sky B3 Focus\n\n29) ajo: Build G1 Ajo\n\n30) dlwillson: M B2 Sea Field\n\n31) ajo: Build G2 Ajo\n\n32) dlwillson: T Y3 G3 Dlwillson\n\n33) ajo: Build Y3 Beta\n\n34) dlwillson: T Y3 G3 Sky\n\n35) ajo: Trade G3 Y3 Ajo\n\n36) dlwillson: T Y2 G2 Focus\n\n37) ajo: Move Y3 Beta Focus\n\n38) dlwillson: S G2 Focus\nB G2 Sky\nB Y2 Field\n\n39) ajo: Move G1 Ajo Gamma\n\n40) dlwillson: Move Y2 Field Gamma\n\n41) ajo: Sacrifice Y3 Focus\nMove Y2 Beta Dlwillson\nMove B1 Beta Dlwillson\nMove B1 Beta Dlwillson\n\tajo: I didn&#39;t want to do this...\n\n42) dlwillson: A Y2 Dlwillson\n\tdlwillson: You&#39;re early, I think.\n\tdlwillson: Wow, phone... Anyway, excellent move. I can see several poor responses. A moment, please.\n\n43) ajo: Sacrifice G1 Gamma\nBuild B3 Dlwillson\nCatastrophe Dlwillson Blue\n\n44) dlwillson: Sacrifice G3 Sky\nBuild B1 Field\nBuild G1 Dlwillson\nBuild Y3 Gamma\n\tajo: You&#39;re still ahead by a lot, though. I&#39;m down to just one star system, which has always been hard for me to get out of.\n\n45) ajo: Move B2 Gamma Sea\n\n46) dlwillson: Sacrifice Y2 Dlwillson\nMove Y3 Gamma Ajo\nMove Y2 Gamma Ajo\nCatastrophe Ajo Y\n\n47) ajo: Build R1 Ajo\n\n48) dlwillson: S G3 Dlwillson\nB Y1 Sea\nB Y2 Field\nB B1 Field\n\n49) ajo: Sacrifice R2 Ajo\nAttack Y1 Sea\nAttack Y1 Sea\n\n50) dlwillson: Move B1 Field Ajo\n\tajo: Yep, I think you win. :)\n\n51) ajo: Attack B1 Ajo\n\tdlwillson: Yes, but your attack was very strong, and if you&#39;d had a follow-up, I&#39;d be in trouble now.\n\tajo: Well, that&#39;s always the case, *if* one&#39;d had a followup. :P I would say: *Your* strong attack forced me to come up with a distraction, but you dealt with my distraction without getting rattled, and then went back to your original plan, against which I still had no real defense.\n\n52) dlwillson: S Y2 Field\nM B1 Field Ajo\nM B2 Field Ajo\nC Ajo B\n\tajo: Maybe I did overreact to your attack on turn 20 (move y2 from Field to Gamma). You might *not* have sacced your only red ship in order to take my two ships, after all. But that&#39;s what I was reacting to. It was either let you take them, or distract you with an attack on your homeworld. :)\n\tdlwillson: I think I would&#39;ve panicked if I hadn&#39;t had a bunch of time to consider my move.\n\tdlwillson: very good game, in any case\n\n\nHomeworlds Online (SDG# 22703)\nVariants: &quot;Hard time&quot;\nStarted: 2012.8.12, Ended: 2012.8.22\nParticipants: Aristos (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3 Danner\n\n2) Aristos: Homeworld G3 B2 Y3\n\tDanner: Hi! Have a nice game!\n\n3) Danner: Build G1 Danner\n\n4) Aristos: Build Y1 Aristos\n\n5) Danner: Build G1 Danner\n\n6) Aristos: Discover Y1 Aristos Y1 Blip\n\n7) Danner: Trade G1 Y1 Danner\n\n8) Aristos: Build Y2 Aristos\n\n9) Danner: Build Y2 Danner\n\n10) Aristos: Discover Y1 Blip G3 Behemoth\n\n11) Danner: Discover Y1 Danner B3 Ocean\n\n12) Aristos: Build Y1 Behemoth\n\n13) Danner: Sacrifice G3 Danner\nBuild Y2 Ocean\nBuild Y3 Ocean\nBuild Y3 Danner\n\n14) Aristos: Sacrifice Y2 Aristos\nDiscover Y1 Behemoth R1 Tiny\nMove Y1 Tiny Ocean\nCatastrophe Ocean Yellow\n\n15) Danner: Build G1 Danner\n\n16) Aristos: Build Y1 Behemoth\n\n17) Danner: Discover G1 Danner Y3 Sun\n\n18) Aristos: Move Y1 Behemoth Danner\n\n19) Danner: Trade Y3 G3 Danner\n\n20) Aristos: Attack G1 Danner\n\n21) Danner: Attack G1S Danner\n\n22) Aristos: Build Y1 Behemoth\n\n23) Danner: Attack Y1S Danner\n\tAristos: I thought the rule was no take backs. Otherwise all attacks would end in a circular loop. \n\tAristos: (well, any that take place in a contested system)\n\tAristos: If we just keep attacking and swapping the same ship back and forth, how does this get resolved?\n\tDanner: I don&#39;t know of any such rules. But I think it should be declared a draw if nobody wants to break the loop.\n\tAristos: There&#39;s no way to declare a draw.\n\tAristos: In a very strange twist of fate, I find myself trying to find a better move than &quot;attack G1 Danner&quot; in order to help you so that we can move the game along. Here&#39;s the best I&#39;ve come up with:\r\nYou: trade G3 R3 Danner\r\nMe: build G1 Danner\r\nYou: Sacrifice R3, take all ships.\r\n\r\nLeaves you with 4 ships in Danner and a fifth to my 2, though I have the only capital ship on the board and it&#39;s my turn. \r\n\r\nIt isn&#39;t my optimal play... if you trade your G3 for R3, my better play is to sacrifice the G1 to build a Y1 in Behemoth so I can build bigger yellow ships, but I&#39;m trying to come up with a pattern that leaves us both in an ok position to break the cycle.\r\n\r\nThoughts?\n\tDanner: Losing one&#39;s last big ship while the opponent still has one... is rather unfortunate.\r\nHowever, I&#39;m very curious about the official solution for situations like this. I&#39;m glad you paged the admin.\n\tAristos: The opinion on Boardgamegeek forums is that although take backs are legal, one player or the other is misreading their best play on the board, but I really don&#39;t see it in our case.\r\nhttp://boardgamegeek.com/article/9853513#9853513\n\n24) Aristos: Build Y2 Aristos\n\tAristos: Ok. Let me try this. I think this works. Your move...\n\tDanner: I believe a situation is possible where whoever breaks the loop will eventually lose (assuming optimal play).\n\n25) Danner: Discover Y1 Danner B3 Ocean\n\tAristos: I believe that to be the case too... it certainly may be the case in what I just tried. We shall see. I&#39;ve left the &quot;Admin Call&quot; turned on because I really would like to hear about that scenario.\n\n26) Aristos: Trade Y2 R2 Aristos\n\n27) Danner: Build Y2 Danner\n\n28) Aristos: Build R1 Aristos\n\n29) Danner: Trade Y2 R2 Danner\n\n30) Aristos: Build Y2 Aristos\n\n31) Danner: Build Y2 Danner\n\n32) Aristos: Sacrifice Y2 Aristos\nDiscover R1 Aristos G1 Pass\nDiscover R1 Pass Y3 Sol\n\n33) Danner: Move R2 Danner Sol\n\n34) Aristos: Build Y2 Aristos\n\n35) Danner: Attack R1S Sol\n\n36) Aristos: Build R1 Aristos\n\n37) Danner: Sacrifice G1 Sun\nBuild Y3 Ocean\n\n38) Aristos: Discover R2 Aristos G1 Dim\n\n39) Danner: Move Y3 Ocean Dim\n\n40) Aristos: Build R1 Dim\n\n41) Danner: Sacrifice R2 Sol\nAttack R2S Dim\nAttack R1S Dim\n\n42) Aristos: Build R2 Aristos\n\n43) Danner: Sacrifice Y2 Danner\nMove R1 Dim Aristos\nMove R2 Dim Aristos\nCatastrophe Aristos R\n\n44) Aristos: Trade Y2 R2 Aristos\n\n45) Danner: Build Y2 Dim\n\n\tAristos: Congrats. All moves lead to a pretty quick ending for me. I still want to know about the take backs earlier. Admin isn&#39;t responsive, unfortunately.\n\tDanner: Thanks! I&#39;m curious about it too. Fortunately, the call is still in effect.\n\nHomeworlds Online (SDG# 22721)\nVariants: &quot;Hard time&quot;\nStarted: 2012.8.15, Ended: 2013.1.4\nParticipants: dlwillson (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) dlwillson: H B2 R3 G3\n\tdlwillson: Always takes banker... Have a great game, Two Short.\n\tdlwillson: Always takes banker... Have a great game, Two Short.\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Now that you say that, I notice I took Banker our last game, but I generally take Goldilocks as first player.  I think they&#39;re comparably strong, so I mix it up occasionally.  In any case, have a great game!\n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: I think you&#39;ve taken banker in every game we&#39;ve played. I almost always go goldilocks, but I&#39;ve been taking fortress occasionally lately. Dethdukk mocks me for it.\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\tTwoShort: If I&#39;d realized that, I&#39;d definitely have gone Goldilocks :)  Oh well.  I don&#39;t like Fortress, but hence I never take it and don&#39;t really have the experience to justify my dislike. \n\n7) TwoShort: Build R2 Twoshort\n\tdlwillson: Y&#39;know one thing I hate about Homeworlds? The first three&#39;ish turns, where it&#39;s a lock-step dance of copying the 1st player&#39;s moves. Best game ever, but that annoys me very much.\n\n8) dlwillson: Build R2 Dlwillson\n\n9) TwoShort: Trade R2 Y2 Twoshort\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) TwoShort: Build R2 Twoshort\n\n12) dlwillson: Build R2 Dlwillson\n\n13) TwoShort: Trade R2 G2 Twoshort\n\n14) dlwillson: T R2 G2 Dlwillson\n\n15) TwoShort: Build R2 Twoshort\n\n16) dlwillson: B R2 Dlwillson\n\n17) TwoShort: Discover R1 Twoshort Y3 Yolonda\n\n18) dlwillson: Discover R1 Dlwillson G1 Field\n\n19) TwoShort: Discover G2 Twoshort R3 Rover\n\n20) dlwillson: T R2 B2 Dlwillson\n\n21) TwoShort: Build G1 Twoshort\n\n22) dlwillson: Build B1 Dlwillson\n\tdlwillson: Well, at least we&#39;re out of lock-step, banker... :-)\n\n23) TwoShort: Move G1 Twoshort Yolonda\n\n24) dlwillson: Build R2 Field\n\n25) TwoShort: Discover R2 Twoshort B3 Bluestar\n\n26) dlwillson: M B1 Dlwillson Field\n\n27) TwoShort: Sacrifice G2 Rover\nBuild R2 Yolonda\nBuild R3 Bluestar\n\n28) dlwillson: S G2 Dlwillson\nB B1 Dlwillson\nB B1 Field\n\n29) TwoShort: Move R2 Yolonda Field\n\n30) dlwillson: Sacrifice R1 Field\nAttack R2 Field\n\n31) TwoShort: Trade R3 G3 Bluestar\n\n32) dlwillson: Trade R2 Y2 Field\n\n33) TwoShort: Sacrifice G3 Bluestar\nBuild R1 Bluestar\nBuild R2 Bluestar\nBuild R3 Yolonda\n\n34) dlwillson: Build B3 Field\n\n35) TwoShort: Trade R2 G2 Bluestar\n\n36) dlwillson: Build R2 Field\n\n37) TwoShort: Build G1 Yolonda\n\n38) dlwillson: S Y2 Field\nD B1 Field G3 Forest\nM R2 Field Forest\n\n39) TwoShort: Sacrifice G2 Bluestar\nBuild G2 Twoshort\nBuild G2 Yolonda\n\n40) dlwillson: T B3 Y3 Field\n\n41) TwoShort: Move G2 Yolonda Field\n\n42) dlwillson: Sacrifice Y3 Field\nDiscover R2 Field Y2 Nugget\nDiscover B2 Dlwillson Y1 Eagle\nDiscover B1 Field Y3 Sovereign\n\n43) TwoShort: Sacrifice Y2 Twoshort\nMove R3 Yolonda Nugget\nDiscover G2 Twoshort R3 Rover\n\n44) dlwillson: B G2 Dlwillson\n\n45) TwoShort: Trade R2 Y2 Bluestar\n\tTwoShort: I love these straightforward, uncomplicated games. :)\n\n46) dlwillson: Sacrifice G3 Dlwillson\nBuild B3 Eagle\nBuild B3 Sovereign\nBuild G3 Dlwillson\n\n47) TwoShort: Sacrifice G2 Rover\nBuild R2 Yolonda\nBuild R3 Bluestar\n\n48) dlwillson: Sacrifice B2 Eagle\nTrade G3 Y3 Dlwillson\nTrade B3 G3 Sovereign\n\tdlwillson: yes. straightforward, uncomplicated. yep.\n\tSilentTitan: oh... for the days of simple games like this one\n\tdlwillson: Hey TS, ST is bombing our game!\n\n49) TwoShort: Attack R2 Nugget\n\n50) dlwillson: S G2 Dlwillson\nBuild B2 Forest\nB B3 Forest\n\n51) TwoShort: Build G2 Twoshort\n\n52) dlwillson: M B3 Eagle Yolonda\n\n53) TwoShort: Discover R2 Yolonda Y1 Yaz\n\n54) dlwillson: Sacrifice B3 Yolonda\nTrade Y2 G2 Dlwillson\nTrade B2 Y2 Forest\nPass\n\n55) TwoShort: Move R3 Bluestar Twoshort\n\n56) dlwillson: S G3 Sovereign\nB B2 Sovereign\nB B3 Sovereign\nB G3 Dlwillson\n\n57) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild Y1 Bluestar\nBuild G3 Twoshort\n\n58) dlwillson: S Y2 Forest\nM B1 Forest Twoshort\nM B1 Sovereign Twoshort\n\n59) TwoShort: Move Y1 Bluestar Twoshort\n\n60) dlwillson: Build Y2 Dlwillson\n\n61) TwoShort: Move G1 Yolonda Yaz\n\n62) dlwillson: M G2 Dlwillson Field\n\n63) TwoShort: Move R1 Yolonda Yaz\n\n64) dlwillson: S Y2 Dlwillson\nM B2 Sovereign Twoshort\nM G3 Dlwillson Yaz\nC Twoshort B\n\n65) TwoShort: Discover R2 Yaz Y2 Yelly\n\n66) dlwillson: Move B3 Sovereign Yelly\n\tdlwillson: Wow. I&#39;m sorry for taking so long!\n\tdlwillson: We&#39;ve been playing this game for more than 3 months!\n\tTwoShort: No problem; I haven&#39;t exactly been speedy this game.\n\n67) TwoShort: Discover R2 Yelly Y3 Yellonia\n\n68) dlwillson: Move G3 Yaz Yolonda\n\tdlwillson: It&#39;s a good game so far! I feel like I&#39;ve finally turned in a decent performance against you, and that&#39;s been a long time coming.\n\n69) TwoShort: Move G1 Yaz Forest\n\n70) dlwillson: A G1 Forest\n\n71) TwoShort: Move G2 Twoshort Forest\n\n72) dlwillson: A G2 Forest\n\tTwoShort: Definitely an excellent game; I&#39;ve felt like I&#39;m on the edge of doom for most of it, looking for a way to weasel out.  But you never quite give me the opening.\n\n73) TwoShort: Sacrifice Y2 Bluestar\nMove G2 Field Forest\nMove R2 Yellonia Field\nCatastrophe Forest Green\n\n\tdlwillson: Good game, Twoshort. I know you like to see how things play out, but I prefer to wrap them up when they&#39;re done, and this one&#39;s done. Well played.\n\nHomeworlds Online (SDG# 22579)\nStarted: 2012.8.23, Ended: 2012.9.3\nParticipants: ts52 (S), Aristos (N)\nWinner: ts52\n\n1) Aristos: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Aristos: Build G1 Aristos\n\tts52: Have a good game.\n\n4) ts52: B G1 Ts52\n\n5) Aristos: Discover G1 Aristos B2 Swap\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) Aristos: Trade G1 Y1 Swap\n\n8) ts52: Build G1 Ts52\n\n9) Aristos: Build G1 Aristos\n\n10) ts52: Build G2 Grover\n\n11) Aristos: Build G2 Aristos\n\n12) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Ts52\n\n13) Aristos: Move G2 Aristos Swap\n\n14) ts52: Trade G2 Y2 Grover\n\n15) Aristos: Sacrifice G3 Aristos\nBuild G2 Swap\nBuild G3 Aristos\nBuild Y1 Swap\n\n16) ts52: Trade G3 R3 Ts52\n\n17) Aristos: Discover Y1 Swap G3 Instantiate\n\n18) ts52: Move R3 Ts52 Instantiate\n\n19) Aristos: Trade G1 R1 Aristos\n\n20) ts52: Attack Y1 Instantiate\n\n21) Aristos: Move G2 Swap Grover\n\n22) ts52: Build R1 Instantiate\n\n23) Aristos: Sacrifice R1 Aristos\nAttack Y2 Grover\n\n24) ts52: Move R3 Instantiate Swap\n\n25) Aristos: Trade G3 R3 Aristos\n\n26) ts52: Attack Y1 Swap\n\n27) Aristos: Sacrifice G2 Swap\nBuild Y2 Grover\nBuild G1 Grover\nCatastrophe Grover Green\n\n\tAristos: Good game.\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 22394)\nVariants: &quot;No undo&quot;\nStarted: 2012.8.23, Ended: 2012.9.3\nParticipants: ajo (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld Y3 B1 G3\n\n2) ajo: Homeworld R2 B3 G3\n\n3) Aristos: Build G1 Aristos\n\n4) ajo: Build G1 Ajo\n\n5) Aristos: Discover G1 Aristos B2 Bubba\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) Aristos: Build G1 Aristos\n\n8) ajo: Build Y1 Ajo\n\n9) Aristos: Build G1 Bubba\n\n10) ajo: Discover Y1 Ajo B1 Alpha\n\n11) Aristos: Trade G1 Y1 Bubba\n\n12) ajo: Build Y2 Ajo\n\n13) Aristos: Build Y2 Bubba\n\n14) ajo: Move Y2 Ajo Alpha\n\n15) Aristos: Discover Y1 Bubba G1 Yokel\n\n16) ajo: Build G2 Ajo\n\n17) Aristos: Build G2 Bubba\n\n18) ajo: Trade Y2 G2 Alpha\n\n19) Aristos: Sacrifice G3 Aristos\nBuild G3 Aristos\nBuild G3 Aristos\nBuild Y2 Yokel\n\n20) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Alpha\nBuild Y3 Ajo\n\n21) Aristos: Trade G1 R1 Aristos\n\n22) ajo: Trade Y1 R1 Alpha\n\n23) Aristos: Sacrifice Y2 Bubba\nMove Y1 Yokel Ajo\nMove Y2 Yokel Ajo\nCatastrophe Ajo Yellow\n\n24) ajo: Build G1 Alpha\n\n25) Aristos: Trade G2 Y2 Bubba\n\n26) ajo: Discover G1 Alpha B2 Beta\n\n27) Aristos: Discover G3 Aristos G2 Redneck\n\n28) ajo: Sacrifice G3 Ajo\nBuild G1 Alpha\nBuild G3 Ajo\nBuild Y1 Alpha\n\n29) Aristos: Build Y1 Bubba\n\n30) ajo: Move G2 Alpha Redneck\n\n31) Aristos: Sacrifice Y1 Bubba\nMove G3 Redneck Alpha\n\n32) ajo: Sacrifice Y2 Alpha\nMove G1 Beta Aristos\nMove G2 Redneck Aristos\n\n33) Aristos: Sacrifice Y2 Bubba\nDiscover G1 Bubba Y1 Glimmer\nMove G3 Alpha Ajo\n\tajo: That was a pretty good move. I was expecting you&#39;d move your g3 backward to Aristos instead.\n\tAristos: Still, as good as it may have been, you counterstrike is devastating no matter how I play it. \n\tAristos: Wait... I think I found an out...\n\n34) ajo: Trade G2 Y2 Ajo\n\tajo: Hm, dramatic. I think you were pretty okay just changing your g3 at home to some other color; but this certainly raises the stakes for me.\n\tajo: And I think you win, too. :P\n\n35) Aristos: Attack G3 Ajo\n\n36) ajo: Sacrifice Y2 Ajo\nMove G1 Alpha Ajo\nMove Y1 Alpha Ajo\n\tAristos: If I just traded for another color I had a problem... if I picked red, you would just shift colors of your green ships to red. If I picked any other color, you would take my red ship and then build up to destroy at least one of my stars.\n\n37) Aristos: Trade G3 R3 Ajo\n\n38) ajo: Sacrifice G2 Aristos\nBuild G2 Ajo\nBuild Y1 Ajo\n\n39) Aristos: Sacrifice R3 Ajo\nAttack G2 Ajo\nAttack G1 Ajo\nAttack G1 Aristos\n\tajo: You&#39;ll never take me alive! :p\n\n40) ajo: Attack G1 Ajo\n\tAristos: You can run, but you can&#39;t... build.\n\n41) Aristos: Trade G3 R3 Ajo\n\n\tajo: Well, I could stretch it *one* more turn, I think... but that&#39;s enough. :) Good game.\n\tAristos: Thanks for the game.\n\nHomeworlds Online (SDG# 22626)\nStarted: 2012.8.28, Ended: 2012.9.27\nParticipants: therealmaxl (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R3 B2 G3\n\n2) therealmaxl: Homeworld Y1 B2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) therealmaxl: Build G1 Therealmaxl\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) therealmaxl: Discover G1 Therealmaxl Y3 Yonorium\n\n7) Mandrel: Build G1 Mandrel\n\n8) therealmaxl: Build G1 Yonorium\n\n9) Mandrel: Build G2 Mandrel\n\n10) therealmaxl: Build G2 Therealmaxl\n\n11) Mandrel: Discover G2 Mandrel B1 Cluster\n\n12) therealmaxl: Discover G1 Yonorium B2 Bofo\n\n13) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Mandrel\nBuild G3 Mandrel\nBuild G3 Cluster\n\n14) therealmaxl: Trade G1 B1 Bofo\n\n15) Mandrel: Trade G3 Y3 Mandrel\n\n16) therealmaxl: Sacrifice G3 Therealmaxl\nBuild B1 Bofo\nBuild G1 Yonorium\nBuild G3 Therealmaxl\n\n17) Mandrel: Build G3 Mandrel\n\n18) therealmaxl: Move G1 Yonorium Cluster\n\n19) Mandrel: Trade G3 R3 Cluster\n\n20) therealmaxl: Build G3 Yonorium\n\n21) Mandrel: Sacrifice Y3 Mandrel\nMove R3 Cluster Yonorium\nMove R3 Yonorium Therealmaxl\nMove G2 Cluster Yonorium\n\n22) therealmaxl: Move G3 Yonorium Therealmaxl\n\n23) Mandrel: Move G2 Yonorium Therealmaxl\nCatastrophe Therealmaxl G\n\ttherealmaxl: good game\n\n\tMandrel: Good game.\n\ttherealmaxl: Good game.\r\n\r\nI&#39;m sorry I&#39;m so terrible at homeworlds over such long periods of time\n\nHomeworlds Online (SDG# 22755)\nStarted: 2012.8.29, Ended: 2012.10.9\nParticipants: Weishaupt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\tWeishaupt: This is my first time playing, FYI!\n\tts52: Ok, are you familiar with the rules? Feel free to ask me questions. And post a move, then undo it, so I&#39;ll get email that you moved, and see your question.\n\n2) Weishaupt: Homeworld G1 B2 Y3\n\tWeishaupt: I&#39;m getting a handle on the rules. Thanks! Would be fine with strategy tips as well.\n\tts52: To start, it&#39;s generally considered a good idea to start with blue, yellow and green in your homeworld, and make sure your homeworld system aren&#39;t the same sizes as mine (otherwise our homeworlds end up being close, in what&#39;s called a small universe, and it&#39;s easy to quickly attack each other.)\n\tts52: Lastly, have fun! :)\n\n3) ts52: Build G1 Ts52\n\n4) Weishaupt: Build Y1 Weishaupt\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\n6) Weishaupt: Discover Y1 Weishaupt B3 Horchata\n\n7) ts52: Build G1 Ts52\n\n8) Weishaupt: Trade Y3 G3 Weishaupt\n\n9) ts52: Build G2 Gonzo\n\n10) Weishaupt: Build G2 Weishaupt\n\n11) ts52: Trade G2 Y2 Gonzo\n\n12) Weishaupt: Build G2 Weishaupt\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Ts52\n\tts52: Since this is your first game, I wont kill you outright. But you should _never_ build up so you have 4 pieces of the same color in the same system. I could declare a catastrophe on your homeworld now and end the game. You also shouldn&#39;t build up 3 pieces of the same color unless you are certain there&#39;s no way your opponent can move a piece of that color in to create a catastrophe.\n\n14) Weishaupt: Trade G3 Y3 Weishaupt\n\tts52: Note I just created 3 green ships in my homeworld, because I know you can&#39;t get a green ship there this turn. \n\tWeishaupt: A-hah, I see my mistake. Feel free to kill me if I deserve it though!\n\n15) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Horchata\nMove G1 Horchata Weishaupt\nCatastrophe Weishaupt Green\n\n16) Weishaupt: Trade Y1 G1 Horchata\n\tts52: Fair enough. Thet\n\tts52: Grrr, that&#39;s a big blow, but it&#39;s not over yet.\n\n17) ts52: Trade G3 R3 Ts52\n\n18) Weishaupt: Trade G1 Y1 Horchata\n\tWeishaupt: Ha, I am certainly wasting enough turns.\n\n19) ts52: Discover R3 Ts52 Y1 Zoe\n\n20) Weishaupt: Trade Y3 G3 Weishaupt\n\tts52: Yeah, indecision can be tough. \n\n21) ts52: Move R3 Zoe Weishaupt\n\n\nHomeworlds Online (SDG# 22622)\nVariants: &quot;Hard time&quot;\nStarted: 2012.8.29, Ended: 2012.9.16\nParticipants: dlwillson (S), Weishaupt (N)\nWinner: dlwillson\n\n1) Weishaupt: Homeworld G3 B1 R3\n\tWeishaupt: This is my first game! So apologies if I make some mistakes.\n\n2) dlwillson: H Y2 B3 G3\n\tdlwillson: NP. I&#39;m a pretty good player. Do you want advice or feedback?\n\n3) Weishaupt: Build R1 Weishaupt\n\tWeishaupt: That would be great! \n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: Well, you&#39;re doing fine so far. :-)\n\n5) Weishaupt: Trade R1 Y1 Weishaupt\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Weishaupt: Build R1 Weishaupt\n\n8) dlwillson: Build R1 Dlwillson\n\n9) Weishaupt: Trade R1 G1 Weishaupt\n\n10) dlwillson: B G1 Dlwillson\n\tdlwillson: OK, time for lesson 1: Never waste a move. Always be playing to win. If the win isn&#39;t in sight, play to improve your position, or damage my position, or to stop me from doing that to you. This move should work with your next move, unless I surprise you. Try to limit my options.\n\tdlwillson: Building another yellow is probably stronger than trading to green, right now.\n\tdlwillson: Trading to blue is also stronger.\n\tdlwillson: At this point in the game, you&#39;re trying to lock me out of a color and/or get a medium ship before I do.\n\tdlwillson: I&#39;ll give you a day to take back your turn, if you want to.\n\n11) Weishaupt: Build Y1 Weishaupt\n\n12) dlwillson: T R1 B1 Dlwillson\n\tWeishaupt: Thanks! I didn&#39;t check back in time, obviously.\n\n13) Weishaupt: Build R1 Weishaupt\n\n14) dlwillson: B B1 Dlwillson\n\n15) Weishaupt: Build Y1 Weishaupt\n\n16) dlwillson: D B1 Dlwillson G1 Field\n\n17) Weishaupt: Build G2 Weishaupt\n\n18) dlwillson: Build B2 Dlwillson\n\n19) Weishaupt: Discover Y1 Weishaupt Y2 Fatso\n\n20) dlwillson: D B2 Dlwillson R1 Sunset\n\n21) Weishaupt: Build Y2 Weishaupt\n\tdlwillson: I hope you have a plan here. It&#39;s pretty unusual to move a ship to a star of the same color, unless doing so accomplishes some larger goal. For example: TwoShort ~loves~ to run his opponent out of yellow, and he&#39;ll do whatever it needs to get it done.\n\tdlwillson: I&#39;ll give it 24 hours again, in case you want to take it back.\n\n22) dlwillson: S G3 Dlwillson\nB B2 Field\nB B2 Sunset\nB B3 Sunset\n\tWeishaupt: Haha, well, again, this is my first game.\n\tWeishaupt: So I admit to not knowing what I&#39;m doing. This game takes an odd sort of thinking.\n\n\tdlwillson: I just broke a strategic rule by leaving my home system without a large, but I checked carefully, and I think I can cover it before I regret it.\n\tdlwillson: Great job gobbling up all the yellow. Two Short would be proud.\n\tdlwillson: What happened?\n\nHomeworlds Online (SDG# 22514)\nVariants: &quot;Hard time&quot;\nStarted: 2012.9.3, Ended: 2012.9.7\nParticipants: juanpr2 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 22782)\nVariants: &quot;Hard time&quot;\nStarted: 2012.9.3, Ended: 2012.10.8\nParticipants: agentofchaos (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B2 Y1 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) Aristos: Build G1 Aristos\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Aristos: Discover G1 Aristos B3 Orb\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Aristos: Build G1 Orb\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Aristos: Build G1 Orb\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) Aristos: Build G2 Aristos\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) Aristos: Trade G1 R1 Orb\n\n14) agentofchaos: Trade Y2 R2 Agentofchaos\n\n15) Aristos: Trade G2 Y2 Aristos\n\n16) agentofchaos: Discover R2 Agentofchaos Y2 Procyon\n\n17) Aristos: Move Y2 Aristos Orb\n\n18) agentofchaos: Move G2 Agentofchaos Procyon\n\n19) Aristos: Build G1 Aristos\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) Aristos: Sacrifice G3 Aristos\nBuild G2 Orb\nBuild G3 Aristos\nBuild G3 Aristos\n\n22) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y2 Agentofchaos\nBuild R1 Procyon\n\n23) Aristos: Sacrifice G1 Aristos\nBuild Y3 Orb\n\n24) agentofchaos: Move G2 Procyon Orb\nCatastrophe Orb G\n\n25) Aristos: Discover Y3 Orb G1 Tiny\n\tAristos: I think this is the highest density of ships I have ever seen in any game.\n\tAristos: Ping!\n\n26) agentofchaos: Discover Y2 Agentofchaos G2 Heartthew\n\tagentofchaos: Not quite so dense now.\n\n27) Aristos: Sacrifice G3 Aristos\nBuild R2 Orb\nBuild Y3 Orb\nBuild Y3 Tiny\n\n\tagentofchaos: Rats...\n\tAristos: Thanks for the game.\n\nHomeworlds Online (SDG# 22783)\nStarted: 2012.9.4, Ended: 2012.11.6\nParticipants: ts52 (S), therealmaxl (N)\nWinner: ts52\n\n1) therealmaxl: Homeworld R3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) therealmaxl: Build G1 Therealmaxl\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) therealmaxl: Trade G1 Y1 Therealmaxl\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) therealmaxl: Build G1 Therealmaxl\n\n8) ts52: Build G1 Ts52\n\n9) therealmaxl: Discover G1 Therealmaxl Y2 Yelon\n\n10) ts52: Build G2 Grover\n\n11) therealmaxl: Build G2 Yelon\n\n12) ts52: T G2 Y2 Grover\n\n13) therealmaxl: Discover G2 Yelon Y3 Bigbird\n\n14) ts52: Build G2 Grover\n\n15) therealmaxl: Build G2 Yelon\n\n16) ts52: Sacrifice Y2 Grover\nMove G2 Grover Yelon\nDiscover G2 Yelon G3 Kermit\n\n17) therealmaxl: Move G1 Yelon Kermit\n\n18) ts52: Sacrifice G1 Ts52\nBuild G1 Grover\n\n19) therealmaxl: Sacrifice G2 Yelon\nBuild G2 Bigbird\nBuild Y1 Therealmaxl\n\n20) ts52: Trade G1 R1 Grover\n\n21) therealmaxl: Build G1 Kermit\nCatastrophe Kermit Green\n\n22) ts52: Build G1 Ts52\n\n23) therealmaxl: Discover Y1 Therealmaxl B2 Dabo\n\n24) ts52: Trade G1 R1 Ts52\n\n25) therealmaxl: Build G1 Bigbird\n\n26) ts52: Build R1 Ts52\n\n27) therealmaxl: Discover G1 Bigbird R2 Elmo\n\n28) ts52: Build R2 Grover\n\n29) therealmaxl: Move G2 Bigbird Dabo\n\n30) ts52: Trade R2 Y2 Grover\n\n31) therealmaxl: Build Y2 Dabo\n\n32) ts52: Move Y2 Grover Elmo\n\n33) therealmaxl: Trade Y2 B2 Dabo\n\n34) ts52: Attack G1 Elmo\n\n35) therealmaxl: Build Y2 Dabo\n\n36) ts52: Build R2 Grover\n\n37) therealmaxl: Build B1 Dabo\n\n38) ts52: Build R2 Ts52\n\n39) therealmaxl: Move B1 Dabo Bigbird\n\n40) ts52: Build R3 Grover\n\ttherealmaxl: goodbye 1/2 homeworld\n\ttherealmaxl: mine i meant lol\n\n41) therealmaxl: Move B2 Dabo Bigbird\n\n42) ts52: Trade R3 Y3 Grover\n\n43) therealmaxl: Build B1 Bigbird\n\n44) ts52: Move R2 Grover Dabo\n\n45) therealmaxl: Sacrifice Y2 Dabo\nMove B1 Bigbird Ts52\nMove B1 Bigbird Ts52\n\n46) ts52: Attack Y1 Dabo\n\n47) therealmaxl: Move B2 Bigbird Ts52\nCatastrophe Ts52 Blue\n\n48) ts52: Attack G2 Dabo\n\n49) therealmaxl: Build G1 Bigbird\n\n50) ts52: Build R3 Dabo\n\n\nHomeworlds Online (SDG# 22781)\nVariants: &quot;No undo&quot;\nStarted: 2012.9.10, Ended: 2012.9.16\nParticipants: goblin981 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R3 B1 G3\n\n2) goblin981: H R3 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) goblin981: B G1 Goblin981\n\n5) ajo: Build G1 Ajo\n\n6) goblin981: B G2 Goblin981\n\n7) ajo: Trade G1 Y1 Ajo\n\n8) goblin981: T G2 Y2 Goblin981\n\n9) ajo: Build Y1 Ajo\n\n10) goblin981: B Y1 Goblin981\n\n11) ajo: Build Y2 Ajo\n\n12) goblin981: B Y2 Goblin981\n\n13) ajo: Discover Y1 Ajo B2 Alpha\n\n14) goblin981: D Y2 Goblin981 G1 Beta\n\n15) ajo: Sacrifice G1 Ajo\nBuild Y3 Alpha\n\n16) goblin981: B Y3 Beta\n\n17) ajo: Trade Y3 G3 Alpha\n\n18) goblin981: D Y2 Beta R2 Gamma\n\n19) ajo: Build Y3 Alpha\n\n20) goblin981: D Y1 Goblin981 G1 Delta\n\n21) ajo: Trade Y1 R1 Alpha\n\n22) goblin981: S Y2 Gamma\nDiscover Y3 Beta R2 Epsilon\nDiscover Y1 Delta R2 Zeta\n\tajo: I think you&#39;ve let yourself get too spread out.\n\tgoblin981: Maybe.  I saw a yellow catastrophe on the way.\n\n23) ajo: Build G1 Alpha\n\tajo: Sure, you&#39;ve gotta defend against catastrophes. But this past turn, I would guess that you wanted to do something more productive than burn your y2. But you couldn&#39;t build anything because all you were able to build was yellows.\n\tajo: Or maybe you have a plan and I&#39;m gonna feel dumb later. :)\n\n24) goblin981: S Y2 Goblin981\nM Y3 Epsilon Ajo\nMove Y1 Zeta Ajo\nCatastrophe Ajo Y\n\n25) ajo: Sacrifice Y3 Alpha\nDiscover G1 Alpha Y1 Beta\nMove G3 Alpha Beta\nMove G3 Beta Goblin981\n\tgoblin981: It was the latter :)\n\tgoblin981: \n\tajo: I hope that wasn&#39;t *all* of your plan, though. I&#39;m pretty happy to be up by r1y3g3 at this point.\n\tajo: In fact, screw it, let&#39;s see if I can end it right now!\n\n26) goblin981: T G1 B1 Goblin981\n\tajo: Check. :)\n\tajo: In fact, you won&#39;t have any access to green next turn, so that&#39;s got to be checkmate.\n\n27) ajo: Attack G3 Goblin981\n\tgoblin981: Unless I do that.  Knew you needed two moves :)\n\tajo: Well yeah. Checkmate in two, I meant. Normally I don&#39;t trust myself to declare &quot;mate in two&quot;, but this time it looked inevitable.\n\n28) goblin981: T B1 Y1 Goblin981\n\tgoblin981: Damn didn&#39;t see that.  You win this round.\n\tgoblin981: Damn it.  You got me.\n\n29) ajo: Attack Y1 Goblin981\n\tajo: Toldja you shouldn&#39;t have been doing that with your yellows. :) Good game.\n\tgoblin981: Thought for once I was going well.  Good game.\n\n\nHomeworlds Online (SDG# 22780)\nVariants: &quot;Hard time&quot;\nStarted: 2012.9.15, Ended: 2012.9.27\nParticipants: SilentTitan (S), tim_p (N)\nWinner: SilentTitan\n\n1) tim_p: Homeworld Y1 G2 B3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\n3) tim_p: Build B1 Tim_p\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) tim_p: Trade B1 G1 Tim_p\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) tim_p: Build G1 Tim_p\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) tim_p: Discover G1 Tim_p Y3 Gethen\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) tim_p: Build G1 Tim_p\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) tim_p: Build G2 Gethen\n\n14) SilentTitan: Build G3 Silenttitan\n\n15) tim_p: Discover G1 Tim_p G3 Sjandra Kei\n\n16) SilentTitan: Discover G2 Silenttitan Y2 Sol\n\n17) tim_p: Trade G1 R1 Tim_p\n\n18) SilentTitan: Discover Y1 Silenttitan Y2 Soul\n\n19) tim_p: Move G1 Gethen Tim_p\n\n20) SilentTitan: Build Y3 Silenttitan\n\n21) tim_p: Trade B3 Y3 Tim_p\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Silenttitan Soul\nMove Y1 Soul Sjandra\nMove Y1 Sjandra Tim_p\n\n23) tim_p: Discover Y3 Tim_p Y3 Acheron\n\n24) SilentTitan: Move Y1 Tim_p Acheron\n\n25) tim_p: Discover Y3 Acheron R1 Virga\n\n26) SilentTitan: Trade G3 R3 Silenttitan\n\n27) tim_p: Discover G1 Tim_p R3 Coventry\n\n28) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Sol Coventry\nMove G2 Coventry Tim_p\n\n29) tim_p: Build R2 Tim_p\n\n30) SilentTitan: Sacrifice R3 Silenttitan\nAttack R2 Tim_p North\nAttack R1 Tim_p North\nPass\n\n\nHomeworlds Online (SDG# 22838)\nVariants: &quot;Hard time&quot;\nStarted: 2012.9.16, Ended: 2012.9.19\nParticipants: AdamBadura (S), ajo (N)\nWinner: AdamBadura\n\n\nHomeworlds Online (SDG# 22767)\nVariants: &quot;Hard time&quot;\nStarted: 2012.9.18, Ended: 2012.9.30\nParticipants: daselva (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) daselva: Build G1 Daselva\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) daselva: Build Y2 Daselva\n\n9) dlwillson: D Y1 Dlwillson B2 Sky\n\n10) daselva: Trade Y1 R1 Daselva\n\n11) dlwillson: Trade Y2 R2 Dlwillson\n\n12) daselva: Build Y1 Daselva\n\n13) dlwillson: B R1 Dlwillson\n\n14) daselva: Build Y2 Daselva\n\n15) dlwillson: B G1 Dlwillson\n\n16) daselva: Trade Y2 R2 Daselva\n\n17) dlwillson: M G1 Dlwillson Sky\n\tdlwillson: Why? You could have just built it. You didn&#39;t have to give up your y2.\n\n18) daselva: Sacrifice Y2 Daselva\nDiscover R2 Daselva Y3 Ds1\nMove R2 Ds1 Sky\n\n19) dlwillson: B Y2 Sky\n\n20) daselva: Attack Y2 Sky\n\n21) dlwillson: B Y2 Sky\n\n22) daselva: Trade Y2 G2 Sky\n\n23) dlwillson: S R2 Dlwillson\nA G2 Sky\nA R2 Sky\n\n24) daselva: Build Y2 Daselva\n\n25) dlwillson: B R2 Sky\n\n26) daselva: Build G1 Daselva\n\n27) dlwillson: Discover R2 Sky B3 Sea\n\n28) daselva: Discover Y2 Daselva R3 Ds1\n\n29) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Sea\nBuild R3 Sky\nBuild R3 Dlwillson\n\n30) daselva: Move G1 Daselva Ds1\n\n31) dlwillson: S Y2 Sky\nM R2 Sea Daselva\nM R2 Sea Daselva\nC Daselva R\n\n32) daselva: Discover Y2 Ds1 G2 Ds2\n\n33) dlwillson: M R3 Dlwillson Daselva\n\n\nHomeworlds Online (SDG# 22828)\nVariants: &quot;Hard time&quot;\nStarted: 2012.10.6, Ended: 2012.10.9\nParticipants: Sturmund_Drang (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B2 R1 G3\n\tSturmund_Drang: HI, I&#39;ve played Homeworlds before, but I&#39;m new to the site. Thanks for playing!\n\n\tSilentTitan: No problem thanks for accepting my standing challenge.  If you have any question just ask.\n\nHomeworlds Online (SDG# 22906)\nVariants: &quot;Hard time&quot;\nStarted: 2012.10.8, Ended: 2012.10.21\nParticipants: Aristos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) Aristos: Homeworld G3 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\tAristos: Well met.\n\tSilentTitan: Salutations and Defiance to you good sir.\n\n4) Aristos: Build B1 Aristos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Aristos: Build B1 Aristos\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Aristos: Discover B1 Aristos G2 Armstrong\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n10) Aristos: Build B2 Armstrong\n\n11) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Sol\n\n12) Aristos: Trade B2 R2 Armstrong\n\n13) SilentTitan: Build Y3 Sol\n\n14) Aristos: Build B2 Armstrong\n\tAristos: Well, that was totally unexpected. I suspect that&#39;s game. \n\n15) SilentTitan: Discover Y2 Silenttitan R3 Soul\n\tSilentTitan: Usually a player has to make two fairly large errors or a series of smaller error to get beat. I&#39;v had dlwillson in this position before and he figured out a way to beat me anyway.  It was a table game running on a chess clock at a convention.  so it&#39;s not a sure thing but it helps\n\tSilentTitan: lol... come to think of it ... i played a game with him at my house where he let me put up three battleships in a turn ... twice and then he still won.... someone has to stop that dirty rotten @%!^ .... GO TWOSHORT!!!!!\n\n16) Aristos: Build B2 Aristos\n\n17) SilentTitan: Move Y3 Sol Silenttitan\n\n18) Aristos: Discover B1 Aristos G2 Aldrin\n\n19) SilentTitan: Trade Y3 G3 Silenttitan\n\n\tdlwillson: Uh... Hey! I don&#39;t want to be stopped! And TwoShort has beaten me too many times, already. It&#39;s time for me to beat him a bit. :-)\n\tAristos: Aaaaaaand.... that&#39;s game. I just couldn&#39;t get to a large ship fast enough to pick up one of the yellows.\n\nHomeworlds Online (SDG# 22839)\nVariants: &quot;No undo&quot;\nStarted: 2012.10.13, Ended: 2012.10.13\nParticipants: cheinzmann (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) cheinzmann: Homeworld B3 G1 Y3\n\n3) ajo: Build Y1 Ajo\n\n4) cheinzmann: Build Y1 Cheinzmann\n\n5) ajo: Build Y1 Ajo\n\n6) cheinzmann: Build Y2 Cheinzmann\n\n\n7) ajo: Sacrifice Y3 Ajo\nDiscover Y1 Ajo R1 Aa\nDiscover Y1 Aa R2 Ba\nMove Y1 Ba Cheinzmann\nCatastrophe Cheinzmann Yellow\n\tajo: Oh, well, *that&#39;s* easy. Play again? :)\n\tcheinzmann: great game, beat me to the sacrifice catastrophe\n\n\nHomeworlds Online (SDG# 22909)\nStarted: 2012.10.15, Ended: 2012.11.12\nParticipants: goblin981 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) goblin981: H G3 B2 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) goblin981: B Y1 Goblin981\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) goblin981: D Y1 Goblin981 G1 Alpha\n\n7) ts52: Build G1 Ts52\n\n8) goblin981: B Y1 Goblin981\n\n9) ts52: Build G2 Grover\n\n10) goblin981: B Y2 Goblin981\n\n11) ts52: Trade G2 Y2 Grover\n\n12) goblin981: D Y1 Goblin981 B1 Beta\n\n13) ts52: Build G2 Grover\n\n14) goblin981: B Y2 Alpha\n\n15) ts52: Build Y3 Grover\n\n16) goblin981: T Y2 G2 Goblin981\n\n17) ts52: Trade Y3 R3 Grover\n\n18) goblin981: T Y3 R3 Goblin981\n\n19) ts52: Move R3 Grover Alpha\n\n\tgoblin981: Sorry man, just looked like it was way in your favour.\n\tts52: No worries. Thanks for the game.\n\nHomeworlds Online (SDG# 22973)\nVariants: &quot;Hard time&quot;\nStarted: 2012.10.21, Ended: 2012.12.4\nParticipants: Mandrel (S), Gidaio (N)\nWinner: Mandrel\n\n1) Gidaio: Homeworld G3 R2 B3\n\n2) Mandrel: Homeworld B3 R1 G3\n\n3) Gidaio: Build B1 Gidaio\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tGidaio: You too! Two people with (I&#39;m assuming) internet names that are NAMES, not hax0rpwn443.\n\n5) Gidaio: Trade B3 Y3 Gidaio\n\tMandrel: Indeed, actual pronounceable strings of letters!\n\n6) Mandrel: B G1 Mandrel\n\tGidaio: Of course, admittedly different ratios of consonant-to-vowels, though.\n\n7) Gidaio: Build Y1 Gidaio\n\tMandrel: I&#39;ve always been a 5:2 man, it&#39;s how I was raised.\n\tGidaio: Indeed! I&#39;m rather fond of vowels.\r\nAnyway, family stuff happened and I won&#39;t be able to play for the next 14 days, which, given that this is a latter game, results in your win, I believe. I would say gg, but there really wasn&#39;t a game...\n\tGidaio: *ladder\n\n8) Mandrel: Trade G1 Y1 Mandrel\n\n9) Gidaio: Discover Y1 Gidaio G1 Rizhulan\n\tMandrel: OK, sorry to hear that, if you can&#39;t make it back to finish this, feel free to challenge me to a game in the future.\n\tGidaio: Hah! Your delay saved the game! I&#39;ll be back come Monday, so you won&#39;t have to wait long.\n\n10) Mandrel: Discover G1 Mandrel B2 King\n\tGidaio: I&#39;m back! :) Let&#39;s finish this thing.\n\n11) Gidaio: Build Y1 Rizhulan\n\n12) Mandrel: Build Y2 Mandrel\n\n13) Gidaio: Build Y2 Gidaio\n\n14) Mandrel: Move Y2 Mandrel King\n\n15) Gidaio: Discover Y2 Gidaio G1 Grasslandia\n\n16) Mandrel: Build G2 Mandrel\n\n17) Gidaio: Build Y2 Grasslandia\n\n18) Mandrel: Build Y3 King\n\n19) Gidaio: Build Y3 Gidaio\n\n20) Mandrel: Build G2 King\n\n21) Gidaio: Discover Y1 Rizhulan G3 Brinstar\n\n22) Mandrel: Build G2 King\n\n23) Gidaio: Move B1 Gidaio Rizhulan\n\n24) Mandrel: Trade G2 R2 Mandrel\n\n25) Gidaio: Trade Y1 R1 Rizhulan\n\n26) Mandrel: Move Y2 King Rizhulan\n\n27) Gidaio: Build R1 Rizhulan\n\n28) Mandrel: Sacrifice R2 Mandrel\nAttack R1N Rizhulan\nAttack R1N Rizhulan\n\n29) Gidaio: Sacrifice Y2 Grasslandia\nMove B1 Rizhulan King\nMove B1 King Grasslandia\n\tGidaio: Aaand just like every time, I&#39;m left without any green.\n\n30) Mandrel: B Y1 Rizhulan\n\n\n31) Gidaio: Trade Y2 R2 Grasslandia\n\n32) Mandrel: Sacrifice Y3 King\nMove Y1 Rizhulan Gidaio\nMove Y2 Rizhulan Gidaio\nMove R1 Rizhulan Gidaio\nCatastrophe Gidaio Yellow\n\n\tMandrel: Good game.\n\tGidaio: Oh, dag. I didn&#39;t even see that. I&#39;m not actually very good at this game. :/\n\nHomeworlds Online (SDG# 22991)\nVariants: &quot;Hard time&quot;\nStarted: 2012.10.24, Ended: 2012.12.7\nParticipants: SirRuthvenMurgatroyd (S), goblin981 (N)\nWinner: SirRuthvenMurgatroyd\n\n1) goblin981: H B1 Y2 G3\n\tgoblin981: GG\n\n2) SirRuthvenMurgatroyd: Homeworld G3 B2 Y3\n\n3) goblin981: B G1 Goblin981\n\n4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n5) goblin981: B G1 Goblin981\n\n6) SirRuthvenMurgatroyd: Trade Y1 G1 Sirruthvenmurgatroyd\n\n7) goblin981: D G1 Goblin981 Y3 Alpha\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) goblin981: D G1 Goblin981 Y3 Beta\n\n10) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Gamma\n\n11) goblin981: B G2 Goblin981\n\n12) SirRuthvenMurgatroyd: Build G2 Gamma\n\n13) goblin981: T G2 R2 Goblin981\n\n14) SirRuthvenMurgatroyd: Move G2 Gamma Beta\n\n15) goblin981: B G2 Goblin981\n\n16) SirRuthvenMurgatroyd: Build G3 Gamma\n\n17) goblin981: T G2 R2 Goblin981\n\n18) SirRuthvenMurgatroyd: Discover G1 Gamma B3 Delta\n\n19) goblin981: M R2 Goblin981 Beta\n\n20) SirRuthvenMurgatroyd: Build G2 Delta\n\n21) goblin981: A G2S Beta\n\n22) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n23) goblin981: D G1 Beta Y1 Epsilon\n\n24) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n25) goblin981: B R1 Goblin981\n\tSirRuthvenMurgatroyd: My apologies for taking a long time to make my moves...  I&#39;ve been very busy; most of that should hopefully be finished now, though, so I&#39;ll probably be making moves in a more reasonable time...\n\tgoblin981: No worries about that.  Happy to wait.\n\n26) SirRuthvenMurgatroyd: Move Y1 Sirruthvenmurgatroyd Gamma\n\n27) goblin981: T R1 B1 Goblin981\n\n28) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n29) goblin981: M R2 Beta Gamma\n\n30) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n31) goblin981: A Y1S Gamma\n\n32) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd\nAttack R2N Gamma\nAttack Y1N Gamma\n\n\nHomeworlds Online (SDG# 22993)\nVariants: &quot;Hard time&quot;\nStarted: 2012.10.25, Ended: 2013.1.5\nParticipants: AdamBadura (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld R1 B2 G3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) MagicJohn: Build G1 Magicjohn\n\n6) AdamBadura: Trade Y1 G1 Adambadura\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) MagicJohn: Trade G1 B1 Magicjohn\n\n10) AdamBadura: Build G1 Adambadura\n\n11) MagicJohn: Build B1 Magicjohn\n\n12) AdamBadura: Trade G1 R1 Adambadura\n\n13) MagicJohn: Build G1 Magicjohn\n\n14) AdamBadura: Discover Y1 Adambadura G1 Shipyard\n\n15) MagicJohn: Discover G1 Magicjohn Y3 Kaline\n\n16) AdamBadura: Build G2 Adambadura\n\n17) MagicJohn: Build G2 Kaline\n\n18) AdamBadura: Discover G2 Adambadura Y1 Outpost\n\n19) MagicJohn: Build Y2 Magicjohn\n\n20) AdamBadura: Build Y2 Shipyard\n\n21) MagicJohn: Discover G2 Kaline B1 Colavito\n\n22) AdamBadura: Trade G1 R1 Adambadura\n\n23) MagicJohn: Trade G2 R2 Colavito\n\n24) AdamBadura: Build Y2 Adambadura\n\n25) MagicJohn: Move Y1 Magicjohn Kaline\n\n26) AdamBadura: Discover Y2 Shipyard Y3 Highway\n\n27) MagicJohn: Move B1 Magicjohn Kaline\n\n28) AdamBadura: Move R1 Adambadura Outpost\n\n29) MagicJohn: Sacrifice G3 Magicjohn\nBuild B2 Kaline\nBuild B3 Kaline\nBuild B3 Magicjohn\n\n30) AdamBadura: Build R2 Adambadura\n\n31) MagicJohn: Trade B3 G3 Magicjohn\n\n32) AdamBadura: Build R2 Outpost\n\n33) MagicJohn: Trade B3 R3 Kaline\n\n\tAdamBadura: Sorry for long moves and breaking the game. This was a bad time for me due to holidays and serious internet connection issues.\n\tMagicJohn: Certainly wasn&#39;t my choice to stop the game. I am still low on the learning curve and was picking up a lot from your moves. Re-challenge if you would like......  MJ   \n\nHomeworlds Online (SDG# 23010)\nVariants: &quot;Hard time&quot;\nStarted: 2012.10.31, Ended: 2013.3.19\nParticipants: agentofchaos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\tts52: have a good game!\n\n3) ts52: Build G1 Ts52\n\tagentofchaos: Thanks, you too\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) ts52: Build G1 Grover\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) ts52: Build G2 Grover\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) ts52: Trade G2 Y2 Grover\n\n14) agentofchaos: Discover Y2 Agentofchaos B2 Hadepoch\n\n15) ts52: Build G2 Grover\n\n16) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y3 Hadepoch\n\n17) ts52: Build Y3 Grover\n\n18) agentofchaos: Trade Y2 R2 Hadepoch\n\n19) ts52: Trade G2 R2 Grover\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) ts52: Discover G1 Grover B2 Gonzo\n\n22) agentofchaos: Move G2 Agentofchaos Hadepoch\n\n23) ts52: Move Y2 Grover Gonzo\n\n24) agentofchaos: Move Y1 Agentofchaos Hadepoch\n\n25) ts52: Build G2 Gonzo\n\n26) agentofchaos: Trade Y1 B1 Hadepoch\n\n27) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Grover\n\n28) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Hadepoch Grover\nMove G2 Grover Gonzo\nCatastrophe Gonzo G\n\n29) ts52: Move G1 Grover Gonzo\n\n30) agentofchaos: Build G1 Agentofchaos\n\n31) ts52: Build G2 Gonzo\n\n32) agentofchaos: Move G1 Agentofchaos Hadepoch\n\n33) ts52: Trade G2 R2 Gonzo\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) ts52: Build G2 Gonzo\n\n36) agentofchaos: Discover G2 Agentofchaos Y2 Rockworm\n\n37) ts52: Build R1 Gonzo\n\n38) agentofchaos: Discover G2 Rockworm Y3 Demondim\n\n39) ts52: Trade G1 R1 Ts52\n\n40) agentofchaos: Build G1 Demondim\n\n41) ts52: Discover R2 Grover Y2 Zoe\n\n42) agentofchaos: Discover G1 Hadepoch R3 Vitriol\n\n43) ts52: Move R1 Gonzo Agentofchaos\n\n44) agentofchaos: Attack R1 Agentofchaos\n\n45) ts52: Sacrifice Y2 Gonzo\nMove R2 Gonzo Agentofchaos\nMove R2 Zoe Agentofchaos\nCatastrophe Agentofchaos Red\n\n46) agentofchaos: Build G2 Vitriol\n\n47) ts52: Build Y1 Grover\n\n48) agentofchaos: Sacrifice G2 Demondim\nBuild Y2 Hadepoch\nBuild G2 Demondim\n\n49) ts52: Sacrifice Y3 Grover\nMove G1 Gonzo Demondim\nMove G2 Gonzo Demondim\nPass\nCatastrophe Demondim Green\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) ts52: Build G1 Grover\n\n52) agentofchaos: Discover G1 Agentofchaos Y3 Camtime\n\n53) ts52: Build Y2 Grover\n\n54) agentofchaos: Build G2 Camtime\n\n55) ts52: Discover Y2 Grover G2 Kermit\n\n56) agentofchaos: Sacrifice G2 Vitriol\nBuild R1 Hadepoch\nBuild G2 Vitriol\n\tts52: Sorry, that didn&#39;t make any sense.\n\n57) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y2 Kermit\nBuild Y3 Grover\n\tagentofchaos: no  problem\n\n58) agentofchaos: S Y3 Hadepoch\nMove G2 Vitriol Ts52\nMove G1 Vitriol Ts52\nMove G1 Camtime Ts52\nCatastrophe Ts52 G\n\n59) ts52: Move G3 Grover Ts52\n\n60) agentofchaos: Sacrifice G2 Camtime\nBuild Y3 Hadepoch\nBuild G1 Agentofchaos\n\n61) ts52: Build G1 Grover\n\n62) agentofchaos: Build Y3 Agentofchaos\n\n63) ts52: Sacrifice Y3 Grover\nMove Y2 Kermit Agentofchaos\nMove G1 Grover Agentofchaos\nMove G1 Grover Agentofchaos\nCatastrophe Agentofchaos Green\n\n64) agentofchaos: Trade Y3 R3 Agentofchaos\n\n65) ts52: Build Y3 Kermit\n\n66) agentofchaos: Attack Y2 Agentofchaos\n\n67) ts52: Discover Y3 Kermit B3 Gonzo\n\n68) agentofchaos: Trade Y2 G2 Agentofchaos\n\n69) ts52: Trade Y3 G3 Gonzo\n\n70) agentofchaos: Move Y2 Hadepoch Grover\n\n71) ts52: Build G1 Gonzo\n\n\nHomeworlds Online (SDG# 22879)\nStarted: 2012.11.1, Ended: 2013.2.26\nParticipants: Mandrel (S), lcnh (N)\nWinner: Mandrel\n\n1) lcnh: Homeworld Y3 B1 G3\n\n2) Mandrel: Homeworld R3 B2 G3\n\n3) lcnh: Build G1 Lcnh\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tlcnh: Have fun!\n\n5) lcnh: Discover G1 Lcnh Y2 Robo\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) lcnh: Build G1 Lcnh\n\n8) Mandrel: Build Y1 Mandrel\n\n9) lcnh: Trade G1 R1 Lcnh\n\n10) Mandrel: Build G1 Mandrel\n\n11) lcnh: Build R1 Lcnh\n\n12) Mandrel: Discover G1 Mandrel Y1 Wkb\n\n13) lcnh: Discover G1 Robo R3 Lens\n\n14) Mandrel: Build Y2 Mandrel\n\n15) lcnh: Build R1 Lcnh\n\n16) Mandrel: Discover Y2 Mandrel G1 Sir\n\n17) lcnh: Trade R1 B1 Lcnh\n\n18) Mandrel: Build Y2 Sir\n\n19) lcnh: Build G2 Lcnh\n\n20) Mandrel: Build G2 Wkb\n\n21) lcnh: Discover G2 Lcnh Y2 Klid\n\n22) Mandrel: Build Y3 Sir\n\n23) lcnh: Build G2 Klid\n\n24) Mandrel: B Y3 Mandrel\n\n25) lcnh: Build G3 Lens\n\n26) Mandrel: Trade Y1 R1 Mandrel\n\n27) lcnh: Trade R1 Y1 Lcnh\n\n28) Mandrel: Discover Y2 Sir B2 Compression\n\n29) lcnh: Move B1 Lcnh Klid\n\n30) Mandrel: Discover Y1 Mandrel B1 Conformal\n\n31) lcnh: Discover Y1 Lcnh R2 Model\n\tlcnh: I missed the last turn. Sorry.\n\n32) Mandrel: Sacrifice Y3 Sir\nMove Y2 Sir Compression\nMove Y2 Compression Lcnh\nMove Y2 Compression Lcnh\n\n33) lcnh: Sacrifice G3 Lens\nBuild Y3 Model\nBuild G1 Klid\nBuild G3 Lens\n\n34) Mandrel: Sacrifice R1 Mandrel\nAttack R1N Lcnh\n\n35) lcnh: Trade G3 R3 Lcnh\n\n36) Mandrel: Sacrifice G2 Wkb\nBuild R1 Lcnh\nBuild R1 Lcnh\nCatastrophe Lcnh Red\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 22848)\nVariants: &quot;Hard time&quot;\nStarted: 2012.11.22, Ended: 2012.11.23\nParticipants: dlwillson (S), aayore (N)\nWinner: aayore\n\n1) aayore: Homeworld B3 G1 Y3\n\n\nHomeworlds Online (SDG# 22801)\nStarted: 2012.12.3, Ended: 2013.1.3\nParticipants: daselva (S), syth (N), goblin981 (E)\nWinner: goblin981\n\n1) syth: Homeworld Y2 G1 B3\n\n2) goblin981: H R1 B2 G3\n\n3) daselva: Homeworld R1 B2 G3\n\n\n4) syth: Build B1 Syth\n\n5) goblin981: B G1 Goblin981\n\n6) daselva: Build G1 Daselva\n\n7) goblin981: T G1 Y1 Goblin981\n\n8) daselva: Trade G1 Y1 Daselva\n\n9) goblin981: B G1 Goblin981\n\n\nHomeworlds Online (SDG# 23039)\nStarted: 2012.12.23, Ended: 2012.12.23\nParticipants: paz_newman (S), ts52 (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 23177)\nVariants: &quot;Hard time&quot;\nStarted: 2012.12.31, Ended: 2013.1.3\nParticipants: Danner (S), Aristos (N)\nWinner: Danner\n\n1) Aristos: Homeworld G1 B2 Y3\n\tDanner: Happy New Year! Have you found anything conclusive regarding the take back problem, or shall we make a rule?\n\n2) Danner: Homeworld G1 B2 G3 *\n\n3) Aristos: Build Y1 Aristos\n\n4) Danner: Build G1 Danner\n\tAristos: I have not found anything conclusive. Admins never replied. \n\n5) Aristos: Build Y1 Aristos\n\tDanner: I vote for allowing take backs. :)\n\n6) Danner: Trade G3 Y3 Danner\n\n7) Aristos: Trade Y3 G3 Aristos\n\n8) Danner: Build G2 Danner\n\n9) Aristos: Discover G3 Aristos Y3 Outlier\n\n10) Danner: Move G1 Danner Outlier\n\tAristos: I should resign now. I totally missed that the first move needed to be a trade to green. I&#39;ve not seen the double-green opening trick before, and it&#39;s pretty devastating. I&#39;m assuming the correct response would have been &quot;trade y3 g3 Aristos&quot; as my first move.\n\tDanner: Yes, that response seems to be correct.\r\nHowever, you have seen this trick before. :)\r\nhttp://superdupergames.org/?page=archive_play&amp;gid=20292&amp;idx=1\n\n\tAristos: Don&#39;t recall seeing it. Been too long I guess. \n\nHomeworlds Online (SDG# 23196)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.3, Ended: 2013.3.21\nParticipants: dethdukk (S), Salmonax (N)\nWinner: dethdukk\n\n1) Salmonax: Homeworld G3 R2 B3\n\n2) dethdukk: Homeworld B1 R3 G3\n\n3) Salmonax: Build B1 Salmonax\n\tdethdukk: Hello sal.  Good luck in the game.\n\tSalmonax: Hi, good luck\n\n4) dethdukk: Build G1 Dethdukk\n\n5) Salmonax: Trade B1 Y1 Salmonax\n\n6) dethdukk: Build G1 Dethdukk\n\n7) Salmonax: Build Y1 Salmonax\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) Salmonax: Build Y2 Salmonax\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) Salmonax: Discover Y1 Salmonax G1 Samandmax\n\n12) dethdukk: Discover Y2 Dethdukk G2 Frontier\n\n13) Salmonax: Build Y2 Samandmax\n\n14) dethdukk: Build Y3 Dethdukk\n\n15) Salmonax: Trade Y1 B1 Salmonax\n\n16) dethdukk: Discover Y1 Dethdukk B2 Beyond\n\n17) Salmonax: Trade B1 R1 Salmonax\n\n18) dethdukk: Sacrifice G3 Dethdukk\nBuild Y1 Frontier\nBuild Y3 Dethdukk\nBuild Y3 Beyond\n\n19) Salmonax: Move Y2 Samandmax Frontier\n\n20) dethdukk: Build G1 Dethdukk\n\n21) Salmonax: Sacrifice R1 Salmonax\nAttack Y2 Frontier\n\n22) dethdukk: Build G2 Dethdukk\n\n23) Salmonax: Move Y2 Frontier Dethdukk\n\n24) dethdukk: Trade Y3 R3 Dethdukk\n\n25) Salmonax: Trade Y2 G2 Dethdukk\nCatastrophe Dethdukk Green\n\n26) dethdukk: Trade Y3 G3 Beyond\n\n27) Salmonax: Build Y2 Samandmax\n\n28) dethdukk: Build Y3 Frontier\n\n29) Salmonax: Build Y3 Frontier\nCatastrophe Frontier Yellow\n\n30) dethdukk: Build Y1 Beyond\n\n31) Salmonax: Build Y2 Salmonax\n\n32) dethdukk: Move Y1 Beyond Samandmax\n\n33) Salmonax: Sacrifice Y2 Salmonax\nDiscover Y2 Samandmax G2 Scoobydoo\nMove Y1 Samandmax Scoobydoo\n\n34) dethdukk: Build Y2 Samandmax\n\n35) Salmonax: Trade Y2 R2 Salmonax\n\n36) dethdukk: Sacrifice G3 Beyond\nBuild Y2 Samandmax\nBuild Y3 Beyond\nBuild Y3 Dethdukk\n\n37) Salmonax: Move Y1 Scoobydoo Samandmax\nCatastrophe Samandmax Yellow\n\n38) dethdukk: Trade Y3 G3 Dethdukk\n\tdethdukk: SDG is no longer sending me turn notifications...  making it hard to keep up lol\n\n39) Salmonax: Build Y1 Scoobydoo\n\tSalmonax: oh no!\n\n40) dethdukk: Discover Y3 Beyond G1 Stone\n\n41) Salmonax: Build B1 Salmonax\n\n42) dethdukk: Move R3 Dethdukk Scoobydoo\n\n43) Salmonax: Build Y1 Scoobydoo\n\n44) dethdukk: Build R1 Scoobydoo\n\n45) Salmonax: Move Y1 Scoobydoo Dethdukk\n\n46) dethdukk: Attack Y2 Scoobydoo\n\n\nHomeworlds Online (SDG# 23088)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.3, Ended: 2013.1.4\nParticipants: dlwillson (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld Y2 B3 G3\n\n\nHomeworlds Online (SDG# 23159)\nStarted: 2013.1.4, Ended: 2013.1.4\nParticipants: ts52 (S), musichascolors (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 22897)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.5, Ended: 2013.1.16\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G3 Y1 B3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Broccoli_Commander: Build B1 Broccoli_commander\n\n4) SilentTitan: Build G1 Silenttitan\n\tBroccoli_Commander: Good evening SilentTitan, may the stars shine upon our game.\n\n5) Broccoli_Commander: Trade B1 Y1 Broccoli_commander\n\tSilentTitan: ... and the cheese sauce be ever hot and melty... Good Luck to you Sir\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\tBroccoli_Commander: You too dear fellow. Do not leave your nachos unattended though\n\n7) Broccoli_Commander: Build B1 Broccoli_commander\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Broccoli_Commander: Discover B3 Broccoli_commander B2 Blueberry\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) Broccoli_Commander: Trade B3 G3 Blueberry\n\n12) SilentTitan: Trade G1 R1 Silenttitan\n\n13) Broccoli_Commander: Build G1 Blueberry\n\n14) SilentTitan: Move R1 Silenttitan Sol\n\n15) Broccoli_Commander: Build Y1 Broccoli_commander\n\n16) SilentTitan: Build R1 Sol\n\n17) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\n18) SilentTitan: Build R2 Sol\n\n19) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild Y2 Blueberry\nBuild Y2 Blueberry\nBuild Y2 Broccoli_commander\n\tBroccoli_Commander: All right, I&#39;m trying a wild thing... let&#39;s see :-D\n\n20) SilentTitan: Sacrifice G1 Sol\nBuild Y3 Silenttitan\n\tSilentTitan: That is pretty wild....\n\n21) Broccoli_Commander: Trade Y2 R2 Blueberry\n\n22) SilentTitan: Trade R2 Y2 Sol\n\n23) Broccoli_Commander: Build Y3 Blueberry\n\n24) SilentTitan: Move Y2 Sol Blueberry\nCatastrophe Blueberry Yellow\n\n25) Broccoli_Commander: Build R2 Blueberry\n\tBroccoli_Commander: Yeah I kinda overlooked the g1 sacrifice to build the y3.....\n\n26) SilentTitan: Move Y3 Silenttitan Sol\n\tSilentTitan: .... and maybe the catastophe?\n\tBroccoli_Commander: yeah no this was on purpose, but frankly I guess I&#39;m dead.... I may resign in 2-3 turns ^^\n\tBroccoli_Commander: (and was dead before the cat)\n\n27) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\tSilentTitan: humm... well you are slightly ahead in points.  and I&#39;m limited by no green currently.. so your position isn&#39;t hopeless.\r\n\n\n28) SilentTitan: Trade R1 G1 Sol\n\n29) Broccoli_Commander: Trade R2 Y2 Blueberry\n\tBroccoli_Commander: Right, I see a tiny light at the end of a long tunnel; I was really afraid I could not get a 3 pointer before your arrival...\n\n30) SilentTitan: Build G1 Sol\n\n31) Broccoli_Commander: Build G2 Blueberry\n\n32) SilentTitan: Move G1 Sol Silenttitan\n\n33) Broccoli_Commander: Build R1 Blueberry\n\n34) SilentTitan: Build G2 Silenttitan\n\n35) Broccoli_Commander: Build R2 Broccoli_commander\n\n36) SilentTitan: Build R3 Sol\n\n37) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild R3 Blueberry\nBuild R3 Broccoli_commander\n\n38) SilentTitan: Sacrifice Y3 Silenttitan\nMove R1 Sol Blueberry\nMove R1 Blueberry Broccoli_commander\nMove R3 Sol Blueberry\nCatastrophe Blueberry Red\nCatastrophe Broccoli_commander Red\n\n39) Broccoli_Commander: D G1 Blueberry Y3 Cauliflower\n\n40) SilentTitan: Build G2 Sol\n\n41) Broccoli_Commander: B G2 Cauliflower\n\n42) SilentTitan: Trade G2 Y2 Sol\n\n43) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G1 Cauliflower Silenttitan\nMove G2 Cauliflower Silenttitan\nCatastrophe Silenttitan G\n\n\tBroccoli_Commander: Errr...\r\nThanks for the game :-D\n\tSilentTitan: LOL.. you too... sorry about that ... I am glad you saw that and undid your move to capitalize on the mistake I made.  Nice Job. Let&#39;s go again eh?\n\tSilentTitan: ah... I spoke before I looked at the last turn in detail ... you saw the win you just forgot the CAT.  I had intended to change the G2 to R2 in SilentTitan then change the G2 to Y2 in Sol and got ahead of myself.  Happens. Either way good job.\n\nHomeworlds Online (SDG# 23212)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.5, Ended: 2013.1.11\nParticipants: dlwillson (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G1 B2 Y3\n\n2) dlwillson: Homeworld B3 G1 Y3\n\tBroccoli_Commander: Good evening dlwillson. Let the stars be our guides.\n\n3) Broccoli_Commander: Build Y1 Broccoli_commander\n\tdlwillson: Good evening to you, Broccoli. I hope you are healthy.\r\nheh... get it? healthy? broccoli? I kill myself.\n\n4) dlwillson: Build Y1 Dlwillson\n\tBroccoli_Commander: Full of good ol&#39; green vitamins! \r\nGood luck and have fun dear Sir.\n\n5) Broccoli_Commander: Trade Y1 G1 Broccoli_commander\n\tdlwillson: I will, and you do, too! :-)\n\n6) dlwillson: Discover Y1 Dlwillson G2 Frog\n\n7) Broccoli_Commander: Build G2 Broccoli_commander\n\n8) dlwillson: Build Y1 Dlwillson\n\tBroccoli_Commander: Heh I figure you would not have fallen in the trap ;-) (cf. undo)\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\tBroccoli_Commander: cu tomorrow, bedtime (living in Europe)\n\n10) dlwillson: Build Y1 Frog\n\tdlwillson: &#39;Night. Sleep well.\n\n11) Broccoli_Commander: Build Y2 Broccoli_commander\n\n12) dlwillson: B Y2 Frog\n\n13) Broccoli_Commander: Build G2 Cauliflower\n\n14) dlwillson: T Y1 R1 Dlwillson\n\n15) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n16) dlwillson: Trade Y3 G3 Dlwillson\n\n17) Broccoli_Commander: Build G3 Broccoli_commander\n\n18) dlwillson: Discover Y1 Frog B3 Sky\n\tdlwillson: You&#39;re playing well so far. Good opening.\n\n19) Broccoli_Commander: Move G3 Broccoli_commander Sky\n\n20) dlwillson: Build R1 Dlwillson\n\n21) Broccoli_Commander: Build R1 Broccoli_commander\n\tBroccoli_Commander: Thanks,  it&#39;s my first time playing online... had to undo a couple o times :-D  I was very glad to find this website, even more now that I realize it&#39;s populated with friendly people.\n\n22) dlwillson: Move Y1 Frog Dlwillson\n\n23) Broccoli_Commander: Build G3 Sky\n\n24) dlwillson: B Y1 Frog\n\n25) Broccoli_Commander: Sacrifice G3 Sky\nBuild G3 Sky\nBuild R2 Broccoli_commander\nBuild Y2 Broccoli_commander\n\n26) dlwillson: Move R1 Dlwillson Frog\n\n27) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove R2 Broccoli_commander Sky\nMove G3 Sky Frog\n\n28) dlwillson: B Y2 Frog\n\n29) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack Y2S Frog\nAttack Y2S Frog\n\n30) dlwillson: B Y2 Frog\nC Frog Y\n\n31) Broccoli_Commander: Sacrifice R1 Broccoli_commander\nAttack R1S Frog\n\n32) dlwillson: Discover Y1 Sky B2 Sea\n\n33) Broccoli_Commander: Trade G3 Y3 Sky\n\tdlwillson: You&#39;re not a novice, are you? You&#39;re not Andy, though. Who are you?\n\n\tBroccoli_Commander: (but I don&#39;t mind finishing either)\n\nHomeworlds Online (SDG# 23206)\nStarted: 2013.1.5, Ended: 2013.1.10\nParticipants: Broccoli_Commander (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Broccoli_Commander: Homeworld B1 G3 Y3\n\n3) ts52: Build G1 Ts52\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) Broccoli_Commander: Trade Y1 G1 Broccoli_commander\n\tBroccoli_Commander: Good game dear Sir\n\n7) ts52: Build G1 Grover\n\n8) Broccoli_Commander: Build G2 Broccoli_commander\n\n9) ts52: Build G2 Grover\n\n10) Broccoli_Commander: Discover G2 Broccoli_commander Y2 Cauliflower\n\n11) ts52: Trade G2 Y2 Grover\n\n12) Broccoli_Commander: Build G2 Cauliflower\n\tts52: Hope you have a good game too.\n\n13) ts52: Build G2 Ts52\n\n14) Broccoli_Commander: Discover G2 Cauliflower G3 Space_lettuce\n\n15) ts52: Trade G2 R2 Ts52\n\n16) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n17) ts52: Build Y1 Grover\n\n18) Broccoli_Commander: Build Y1 Broccoli_commander\n\n19) ts52: Discover Y1 Grover G2 Kermit\n\n20) Broccoli_Commander: Build R1 Broccoli_commander\n\n21) ts52: Build Y2 Kermit\n\n22) Broccoli_Commander: Move Y1 Broccoli_commander Kermit\n\n23) ts52: Build Y3 Grover\n\n24) Broccoli_Commander: Build G1 Cauliflower\n\n25) ts52: Trade Y3 R3 Grover\n\n26) Broccoli_Commander: Discover G2 Cauliflower B3 Blueberry\n\n27) ts52: Build Y3 Grover\n\tBroccoli_Commander: nice pace :-) God you&#39;re not so bad at this game ^^&#39;\n\tts52: :) Thanks, I think.\n\n28) Broccoli_Commander: Sacrifice G2 Space_lettuce\nBuild G2 Cauliflower\nBuild G3 Blueberry\n\tBroccoli_Commander: I&#39;m really new to this online game system, it&#39;s some nice piece I must say\n\n29) ts52: Move R3 Grover Cauliflower\n\n30) Broccoli_Commander: Discover G2 Cauliflower Y3 Carrot\n\tts52: I&#39;ve been playing here for a while, it really is a well set up system.\n\n31) ts52: Attack G1 Cauliflower\n\n32) Broccoli_Commander: Trade Y3 B3 Broccoli_commander\n\n33) ts52: Trade Y3 R3 Grover\n\n34) Broccoli_Commander: Trade G3 Y3 Blueberry\n\n35) ts52: Build G3 Cauliflower\n\n36) Broccoli_Commander: Build Y3 Kermit\nCatastrophe Kermit Y\n\tBroccoli_Commander: And I&#39;m sorry if lost the game 10 turns ago and don&#39;t see it.......\n\n37) ts52: Build R1 Cauliflower\n\n38) Broccoli_Commander: Sacrifice G2 Carrot\nBuild G2 Blueberry\nBuild Y1 Blueberry\n\n39) ts52: Trade G1 B1 Grover\n\n40) Broccoli_Commander: Trade B3 Y3 Broccoli_commander\n\n41) ts52: Build R2 Grover\n\n42) Broccoli_Commander: Build Y1 Broccoli_commander\n\n43) ts52: Build Y2 Grover\n\n\tBroccoli_Commander: You won so long ago anyway :-P\r\nWell played and thanks for the game\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 23217)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.6, Ended: 2013.4.22\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) SilentTitan: Homeworld G3 B2 Y3\n\tdlwillson: Good skill, Mr. Titan!\n\tSilentTitan: Mister...Ha.... How about you just drive over here an we duke this out on the table .... with a chess clock?\n\n3) dlwillson: Build G1 Dlwillson\n\tSilentTitan: Happy gaming and much defiance to you Mr. Willson\n\n4) SilentTitan: Build Y1 Silenttitan\n\tdlwillson: Chess clocks are no fun, I just wet my pants, and lose... :-)\n\tSilentTitan: I could live with that... as long as you are not sitting in my good chair.\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) SilentTitan: Trade Y1 R1 Silenttitan\n\n7) dlwillson: B G1 Dlwillson\n\n8) SilentTitan: Build R1 Silenttitan\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) SilentTitan: Trade R1 B1 Silenttitan\n\n11) dlwillson: Build G1 Dlwillson\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) dlwillson: T G1 B1 Dlwillson\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n15) dlwillson: B B2 Dlwillson\n\n16) SilentTitan: Build B2 Sol\n\n17) dlwillson: D B2 Dlwillson G2 Field\n\n18) SilentTitan: Build B3 Silenttitan\n\n19) dlwillson: B B3 Field\n\tdlwillson: Whoa! You took a turn!\n\n20) SilentTitan: Trade B3 Y3 Silenttitan\n\tSilentTitan: wait.... I DID WHAT?\n\n21) dlwillson: Trade B3 Y3 Field\n\n22) SilentTitan: Trade B2 Y2 Sol\n\tdlwillson: You know, you don&#39;t actually HAVE to wait until the clock runs out. It just goes that high so you can go on vacations and things.\n\tSilentTitan: well... I was on vacation... went over to some sport death thing\r\n\n\n23) dlwillson: M Y3 Field Sol\n\n24) SilentTitan: Build Y1 Sol\n\n25) dlwillson: S B1 Dlwillson\nT Y3 R3 Sol\n\n26) SilentTitan: Sacrifice Y2 Sol\nDiscover Y1 Sol B2 Sole\nDiscover B1 Sol Y2 Soul\n\n27) dlwillson: M Y1 Dlwillson Field\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) dlwillson: B Y2 Field\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sole\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n31) dlwillson: S Y2 Field\nM Y1 Field Sol\nM Y1 Sol Sole\nCat Sole Y\n\n32) SilentTitan: Trade Y3 G3 Silenttitan\n\n33) dlwillson: B G1 Dlwillson\n\n34) SilentTitan: Discover R1 Silenttitan B1 Sole\n\n35) dlwillson: T G1 Y1 Dlwillson\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Soul\nBuild B3 Soul\nBuild B3 Silenttitan\n\n37) dlwillson: M Y1 Dlwillson Field\n\n38) SilentTitan: Sacrifice B2 Soul\nTrade B3 G3 Silenttitan\nTrade B3 R3 Soul\n\n39) dlwillson: Build B2 Field\n\n40) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Silenttitan\nBuild B3 Soul\nBuild Y1 Silenttitan\n\n41) dlwillson: Move B2 Field Sol\n\n42) SilentTitan: Sacrifice B1 Silenttitan\nTrade B3 G3 Soul\n\n43) dlwillson: Build Y2 Field\n\n44) SilentTitan: Move Y1 Silenttitan Sole\n\n45) dlwillson: Move Y1 Field Sol\n\n46) SilentTitan: Sacrifice G3 Soul\nBuild Y2 Silenttitan\nBuild Y3 Sole\nBuild B1 Soul\n\n47) dlwillson: B Y3 Field\n\n48) SilentTitan: Discover Y1 Sole B3 Tic\n\n49) dlwillson: B R1 Sol\n\n50) SilentTitan: Trade B1 G1 Soul\n\n51) dlwillson: B B1 Sol\n\n52) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Tic Field\nMove Y3 Sole Field\nCatastrophe Field Yellow\n\n53) dlwillson: B B3 Field\n\n54) SilentTitan: Trade B3 G3 Silenttitan\n\n55) dlwillson: T B2 Y2 Field\n\n\nHomeworlds Online (SDG# 23219)\nVariants: &quot;Unrated&quot;\nStarted: 2013.1.6, Ended: 2013.1.9\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: Homeworld G3 Y2 B3\n\n2) dungeon: Homeworld Y3 B2 G3\n\n3) disaac: Build B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: Discover B1 Disaac G1 Gaea1\n\n6) dungeon: Discover G1 Dungeon B1 Dscwrld1\n\n7) disaac: Build B1 Disaac\n\n8) dungeon: Build G1 Dscwrld1\n\n9) disaac: Trade B3 G3 Disaac\n\n10) dungeon: Trade G1 Y1 Dscwrld1\n\n11) disaac: Sacrifice G3 Disaac\nBuild B2 Gaea1\nBuild B2 Disaac\nBuild B3 Disaac\n\n12) dungeon: Discover Y1 Dscwrld1 G3 Hamsammich\n\n13) disaac: Build B3 Gaea1\n\n14) dungeon: Build G1 Dscwrld1\n\tdisaac: ouch... not what I was expecting\r\n\n\tdungeon: You are so going to move in all of those blues in for a cat...  I do not know how I missed it.  At least I will be able to get some practice in from this and get bettr. ^_^ \n\n15) disaac: Sacrifice B2 Disaac\nTrade B3 Y3 Gaea1\nTrade B2 R2 Gaea1\n\n16) dungeon: Build G2 Dscwrld1\n\tdisaac: Nah... I am going to diversify.\n\n17) disaac: Move Y3 Gaea1 Dungeon\n\n18) dungeon: Trade G3 Y3 Dungeon\n\tdisaac: check (-mate perhaps?)\n\n19) disaac: Sacrifice R2 Gaea1\nAttack Y3 Dungeon\nPass\n\tdungeon: Lol.  Close... but you know you and Rob always stomp me in this. ;-) \n\tdisaac: Just need to get more games under your belt.\n\tdungeon: Tha fun!  :-p\n\tdisaac: I had a couple of surprises from you in this game. Didn&#39;t realize it was a small universe until you moved out to dscwrld1. And didn&#39;t expect you to soak up the last large green by discovering it as a new system. \n\tdungeon: Me either.  I was on the second move before it hit me.  Lol.  That green was supposed to be a haymaker... but came off as a three-stooges eye poke. ;-)\n\n\nHomeworlds Online (SDG# 23231)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.9, Ended: 2013.1.14\nParticipants: TwoShort (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tAristos: Sorry... it took me a bit to notice that you had accepted the challenge. I got hit with a barrage of 62 e-mails that gmail flagged as &quot;Important&quot; all in the space of an hour, each one from a completely different person. It was like everyone in my life had a sudden crisis/epiphany/question, etc. Total coincidence, but overwhelming.\n\n3) Aristos: Build Y1 Aristos\n\tTwoShort: no problem.  Have a good game.\n\n4) TwoShort: Build G1 Twoshort\n\n5) Aristos: Build Y1 Aristos\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Aristos: Trade Y1 G1 Aristos\n\n8) TwoShort: Build G1 Twoshort\n\n9) Aristos: Discover G1 Aristos B1 Spark\n\n10) TwoShort: Build G1 Twoshort\n\n11) Aristos: Sacrifice Y3 Aristos\nDiscover G1 Spark B2 Waypoint\nMove G1 Waypoint Twoshort\nPass\nCatastrophe Twoshort Green\n\n12) TwoShort: Trade Y1 G1 Twoshort\n\n13) Aristos: Build Y1 Aristos\n\n14) TwoShort: Build G1 Twoshort\n\tAristos: Hey, TwoShort... have you ever seen anyone catastrophe one of the stars of their own homeworld in order to shorten the distance from one homeworld to the other? I thought about that idea the other day and was trying to figure out if it would ever be a useful strategy. Like in this game, if I blew my giant star, I would then be able to step directly to your homeworld. I&#39;d have to have a giant fleet ready to move. Ever see anything like that?\n\n15) Aristos: Build Y1 Aristos\n\tTwoShort: I&#39;ve never seen it, but I&#39;ve considered the option...  i.e. I&#39;ve noticed that I could do it if my opponent made a move they ultimately didn&#39;t; and I&#39;ve wanted to win a game that way, just for the cool points :)  BTW, nice move with the catastrophe, I feel dumb I missed it.\n\tAristos: Thanks.\n\n16) TwoShort: Trade G1 R1 Twoshort\n\n17) Aristos: Discover Y1 Aristos B1 Aaa\n\n18) TwoShort: Build R1 Twoshort\n\n19) Aristos: Build Y2 Aristos\n\n20) TwoShort: Build G1 Twoshort\n\n21) Aristos: Discover Y1 Aaa G2 Bbb\n\n\tAristos: I don&#39;t see any way for you to ever get any yellow tech or any size 2 ships as long as I don&#39;t leave any size 1 yellows in the bank.\n\tTwoShort: OK, you&#39;ve had me from the catastrophe and I&#39;ve just been waiting to see if you&#39;d screw it up, but you won&#39;t :(  Good game.\n\tAristos: Thanks. \n\nHomeworlds Online (SDG# 23232)\nStarted: 2013.1.9, Ended: 2013.1.15\nParticipants: disaac (S), dungeon (N)\nWinner: disaac\n\n1) dungeon: Homeworld Y3 B1 G3\n\n2) disaac: H G3 Y2 B3\n\n3) dungeon: Build G1 Dungeon\n\n4) disaac: B B1 Disaac\n\n5) dungeon: Discover G1 Dungeon B2 Dalmuti\n\n6) disaac: T B3 G3 Disaac\n\n7) dungeon: Build G1 Dungeon\n\n8) disaac: B B1 Disaac\n\n9) dungeon: Trade G3 Y3 Dungeon\n\n10) disaac: Discover B1 Disaac G1 Gaea1\n\n11) dungeon: Build G2 Dungeon\n\n12) disaac: B B2 Gaea1\n\n13) dungeon: Build G2 Dalmuti\n\n14) disaac: T B2 G2 Gaea1\n\n15) dungeon: Build G3 Dungeon\n\n16) disaac: B B2 Disaac\n\n17) dungeon: Trade G3 Y3 Dungeon\n\tdungeon: Oh buddy... ...  I think this is the tenth or so game I have played in the past 30 hours... ;-)\n\n18) disaac: Sacrifice G3 Disaac\nBuild B2 Gaea1\nBuild B3 Gaea1\nBuild B3 Disaac\n\tdisaac: And it is looking like you might win this one. :)\r\nThis turn may take me a bit of time. I need to see if I can think of a good way out of the mess I am getting into.\n\tdungeon: Lol.  I might do some damage... but that is as far as I have ever gotten playing against you! ;-p\n\n19) dungeon: Sacrifice Y3 Dungeon\nMove G1 Dalmuti Gaea1\nMove G2 Dalmuti Gaea1\nDiscover G2 Dungeon B2 Saboteur\nCatastrophe Gaea1 Green\n\n20) disaac: Discover B2 Disaac Y1 Ds1\n\n21) dungeon: Build G1 Saboteur\n\tdungeon: Sorry, I forgot to place the catastrophe... \n\n22) disaac: Trade B3 G3 Disaac\n\n23) dungeon: Trade G2 B2 Saboteur\n\n24) disaac: D B2 Ds1 Y2 Ds2\n\n25) dungeon: Build G1 Saboteur\n\n26) disaac: S G3 Disaac\nB B1 Ds2\nB B3 Disaac\nB B3 Ds2\n\tdungeon: Death Star 2 huh... ^_^\n\n27) dungeon: Sacrifice Y3 Dungeon\nDiscover G1 Saboteur Y1 Id\nMove G1 Saboteur Id\nMove B2 Saboteur Id\n\n28) disaac: M B2 Ds2 Dungeon\n\n29) dungeon: Build G2 Dungeon\n\n30) disaac: T B3 R3 Ds2\n\n31) dungeon: Trade B2 Y2 Id\n\n32) disaac: Sacrifice R3 Ds2\nAttack G2 Dungeon\nAttack G1 Dungeon\nPass\n\tdisaac: dungeon said: [Death Star 2 huh... ^_^]\r\n\r\nDeep Space 2 (didn&#39;t make it up to 9)\n\tdungeon: Lol.  Breaking out the red... ;-(\n\n\tdisaac: Just wrapping things up. :)\n\tdisaac: Nice game though. You had me worried there for a while. I was just (happily) surprised that you sacked your last large from your homeworld.\n\tdungeon: So close...  at least I lasted longer this time... ^_^\n\nHomeworlds Online (SDG# 23216)\nStarted: 2013.1.10, Ended: 2013.1.15\nParticipants: Broccoli_Commander (S), ts52 (N)\nWinner: Broccoli_Commander\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) Broccoli_Commander: Homeworld Y1 G2 Y3 *\n\tts52: Have a good game!\n\tBroccoli_Commander: You too! Hope I won&#39;t be crushed as easily ^^&#39;\n\n3) ts52: Build G1 Ts52\n\tBroccoli_Commander: This is a wild try, let&#39;s see...\n\tts52: That is wild.\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce\n\n7) ts52: Build G1 Ts52\n\n8) Broccoli_Commander: Build Y2 Lettuce\n\n9) ts52: Build G1 Gonzo\n\n10) Broccoli_Commander: Build Y2 Lettuce\n\n11) ts52: Build G2 Gonzo\n\n12) Broccoli_Commander: Build Y2 Broccoli_commander\n\n13) ts52: Discover G1 Ts52 B2 Grover\n\n14) Broccoli_Commander: Discover Y2 Broccoli_commander G3 Watermelon\n\n15) ts52: Build G2 Ts52\n\n16) Broccoli_Commander: Build Y3 Watermelon\n\n17) ts52: Trade G2 R2 Ts52\n\n18) Broccoli_Commander: Build Y3 Watermelon\n\n19) ts52: Build G2 Ts52\n\n20) Broccoli_Commander: Move Y3 Watermelon Gonzo\n\n21) ts52: Trade G2 R2 Gonzo\n\n22) Broccoli_Commander: Trade Y3 R3 Gonzo\n\tts52: oh nice, that&#39;s _very_ interesting\n\n23) ts52: Sacrifice G2 Ts52\nBuild R1 Gonzo\nBuild R1 Gonzo\nCatastrophe Gonzo Red\n\tBroccoli_Commander: t y3 r3 gonzo\n\n24) Broccoli_Commander: Build Y3 Watermelon\n\tBroccoli_Commander: Oops wrong text field. Yes it&#39;s interesting :-D Technically I had at least forced a tie, let&#39;s see how it pans out now..\n\n25) ts52: Build G2 Grover\n\tts52: It&#39;s not over yet, but it will be interesting.\n\n26) Broccoli_Commander: Move Y3 Watermelon Grover\n\n27) ts52: Trade G1 R1 Grover\n\n28) Broccoli_Commander: Trade Y3 R3 Grover\n\n29) ts52: Sacrifice G2 Grover\nBuild R1 Grover\nBuild R1 Grover\nCatastrophe Grover Red\n\n30) Broccoli_Commander: Build Y3 Watermelon\n\n31) ts52: Build G1 Ts52\n\tts52: Hmmm, this isn&#39;t going to last very long. :(\n\n32) Broccoli_Commander: Move Y3 Watermelon Gonzo\n\tBroccoli_Commander: Yeah like this you lose a ship each &quot;cycle&quot;\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n34) Broccoli_Commander: Trade Y3 R3 Gonzo\n\n35) ts52: Trade G3 Y3 Ts52\n\n36) Broccoli_Commander: Attack G2 Gonzo\n\n37) ts52: Sacrifice G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nCatastrophe Gonzo Green\n\n38) Broccoli_Commander: Move Y2 Lettuce Gonzo\n\n39) ts52: Discover Y3 Ts52 G2 Kermit\n\n40) Broccoli_Commander: Trade Y2 G2 Gonzo\n\tBroccoli_Commander: nice move!\n\tts52: Thanks. I&#39;ve still got a big uphill battle though.\n\n41) ts52: Discover G1 Ts52 Y2 Zoe\n\n42) Broccoli_Commander: Build G1 Gonzo\n\n43) ts52: Discover Y3 Kermit B3 Grover\n\n44) Broccoli_Commander: Trade G1 B1 Gonzo\n\n45) ts52: Sacrifice G1 Zoe\nBuild Y2 Grover\n\n46) Broccoli_Commander: Sacrifice B1 Gonzo\nTrade Y3 R3 Broccoli_commander\n\n47) ts52: Build G1 Ts52\n\tBroccoli_Commander: sorry for that undo\n\tts52: no problem\n\n48) Broccoli_Commander: Build Y3 Lettuce\n\n49) ts52: Trade Y2 G2 Grover\n\n50) Broccoli_Commander: B Y2 Watermelon\n\n51) ts52: Build G1 Grover\n\n52) Broccoli_Commander: Build G1 Gonzo\n\n53) ts52: Discover G1 Ts52 B2 Cookie\n\n54) Broccoli_Commander: Sacrifice Y3 Watermelon\nMove Y2 Watermelon Gonzo\nMove Y2 Watermelon Gonzo\nMove Y3 Lettuce Cookie\n\n55) ts52: Build G3 Cookie\n\n56) Broccoli_Commander: Build Y3 Lettuce\n\n57) ts52: Trade G1 R1 Cookie\n\n58) Broccoli_Commander: Sacrifice R3 Gonzo\nAttack G3 Cookie\nAttack R1 Cookie\nPass\n\tBroccoli_Commander: pfff this was not very wise but i won&#39;t undo again ^^&#39;\n\n59) ts52: Build R1 Ts52\n\n60) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove G1 Gonzo Ts52\nMove G2 Gonzo Ts52\nMove G3 Cookie Ts52\nCatastrophe Ts52 G\n\n61) ts52: Trade R2 G2 Ts52\n\n62) Broccoli_Commander: Sacrifice Y2 Gonzo\nMove Y2 Lettuce Broccoli_commander\nMove Y3 Cookie Ts52\n\n63) ts52: Sacrifice G2 Ts52\nBuild Y2 Grover\nBuild Y3 Grover\n\n64) Broccoli_Commander: Sacrifice R1 Cookie\nAttack R1 Ts52\n\n\tBroccoli_Commander: Good game!\r\nIt was hard to actually finish it ^^&#39; You even got close of winning at some point. Did I make a big mistake after the yellow monopoly of the start?\n\tts52: Hard to say for sure. I should&#39;ve given up trying to keep you from getting green earlier. Not sure if you made any big mistakes.\n\nHomeworlds Online (SDG# 23239)\nStarted: 2013.1.10, Ended: 2013.1.24\nParticipants: adwm86 (S), dungeon (N)\nWinner: adwm86\n\n1) dungeon: Homeworld G3 Y2 B3\n\n2) adwm86: Homeworld B2 Y1 G3\n\n3) dungeon: Build B1 Dungeon\n\n4) adwm86: Build G1 Adwm86\n\n5) dungeon: Discover B3 Dungeon Y1 Magewar\n\n6) adwm86: Discover G3 Adwm86 Y3 Agricola\n\tdungeon: I find playing in this format refreshing, but I still tend to make more mistakes here than I don on the table... meh... is practice anyway ;-)\n\n7) dungeon: Build B1 Dungeon\n\n8) adwm86: Build G1 Adwm86\n\n9) dungeon: Trade B1 G1 Dungeon\n\n10) adwm86: Build G2 Adwm86\n\n11) dungeon: Build G2 Dungeon\n\n12) adwm86: Move G1 Adwm86 Agricola\n\n13) dungeon: Move G2 Dungeon Magewar\n\n14) adwm86: Trade G2 R2 Adwm86\n\n15) dungeon: Build G2 Magewar\n\tadwm86: Ya just like mtg on ps3.   I find I have submit what im tryin do couple times\n\tadwm86: My homeworld is adwm86  it looks like 88 on end\n\tdungeon: No probs.  I just got m&#39;taint handed to me yesterday... ugh... thought I was having a good game.  You got anyone to play these up here yet?\n\n16) adwm86: Build G2 Adwm86\n\tadwm86: \n\tadwm86: \n\n17) dungeon: Build G3 Dungeon\n\n18) adwm86: Discover G3 Agricola B2 Twilight\n\n19) dungeon: Discover G2 Magewar Y3 Bang\n\n20) adwm86: Trade G2 Y2 Adwm86\n\n21) dungeon: Discover G2 Magewar Y3 Dyinglights\n\tdungeon: You playing from your phone?  I cannot get it to work properly from mine ;-(...\n\n22) adwm86: Move R2 Adwm86 Dyinglights\n\n23) dungeon: Move G2 Dyinglights Adwm86\n\tdungeon: Accidentally hit the undo button when trying to scroll and refresh.. ugh... \n\n24) adwm86: Trade Y2 R2 Adwm86\n\n25) dungeon: Build G2 Bang\n\n26) adwm86: Attack G2 Adwm86\n\n27) dungeon: Move B3 Magewar Bang\n\n28) adwm86: Discover G1 Agricola Y1 Mtg\n\n29) dungeon: Trade B3 R3 Bang\n\n30) adwm86: Move G1 Mtg Dungeon\nCatastrophe Dungeon G\n\n31) dungeon: Move R3 Bang Adwm86\n\n32) adwm86: Move R2 Dyinglights Dungeon\n\tadwm86: Sorry  I forget about txt block in bottom \r\nYa I play from my phone\n\tdungeon: S&#39;all good.  Lucky... I can&#39;t get it to work good on mine ;-(  I try to play early in the morning at work or during lunch...  I am ordering a demo kit from LL&#39;s later this month and will start to demo at the local stores soon!  \n\n33) dungeon: Sacrifice G2 Bang\nBuild B1 Dungeon\nBuild B1 Dungeon\n\n34) adwm86: Attack B1 Dungeon\n\tadwm86: What is LL&#39;s\n\n35) dungeon: Attack R2 Adwm86\n\tdungeon: Looney Labs ;-)\n\n36) adwm86: Attack B1 Dungeon\n\n37) dungeon: Sacrifice G2 Bang\nBuild B2 Dungeon\nBuild B3 Dungeon\n\n38) adwm86: Discover R2 Dungeon Y3 Mtg\nCatastrophe Dungeon B\n\n\tdungeon: ;-)\n\tadwm86: Couldnt have sac R2 in my system to attack twice with R3 in mu home system to cap my two G1?\n\tdungeon: Sack of crud...  I should have done that!!!  Ugh... I will get you next time... ;-)\n\nHomeworlds Online (SDG# 23215)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.11, Ended: 2013.1.29\nParticipants: Broccoli_Commander (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y2 B3 G3\n\tBroccoli_Commander: Good game!\n\n2) Broccoli_Commander: Homeworld Y1 G2 B3\n\n3) dlwillson: Build G1 Dlwillson\n\tdlwillson: Good skill, Broccoli\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n7) dlwillson: Build G1 Dlwillson\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) dlwillson: T G1 Y1 Dlwillson\n\n10) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n11) dlwillson: Discover B1 Dlwillson G1 Field\n\n12) Broccoli_Commander: Build G1 Broccoli_commander\n\n13) dlwillson: B Y1 Dlwillson\n\n14) Broccoli_Commander: Build G2 Blueberry\n\n15) dlwillson: M Y1 Dlwillson Field\n\n16) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n17) dlwillson: B B1 Field\n\n18) Broccoli_Commander: Build B2 Broccoli_commander\n\n19) dlwillson: B B2 Field\n\n20) Broccoli_Commander: B G2 Blueberry\n\n21) dlwillson: M B1 Field Blueberry\n\tBroccoli_Commander: sorry typo..\n\n22) Broccoli_Commander: Discover G1 Blueberry R2 Tomatoe\n\n23) dlwillson: Build Y2 Dlwillson\n\n24) Broccoli_Commander: B Y3 Blueberry\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Blueberry\nBuild B3 Blueberry\nBuild Y3 Field\nCatastrophe Blueberry B\n\n26) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Tomatoe\nBuild G2 Tomatoe\nBuild G3 Broccoli_commander\n\n27) dlwillson: Trade Y3 G3 Field\n\n28) Broccoli_Commander: Sacrifice B1 Broccoli_commander\nTrade G2 Y2 Tomatoe\n\n29) dlwillson: Sacrifice Y2 Dlwillson\nMove G3 Field Dlwillson\nDiscover B2 Field G3 Forest\n\n30) Broccoli_Commander: Build B1 Broccoli_commander\n\n31) dlwillson: B G2 Dlwillson\n\n32) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n33) dlwillson: Trade G2 R2 Dlwillson\n\n34) Broccoli_Commander: Build R1 Broccoli_commander\n\n35) dlwillson: Build G1 Dlwillson\n\n36) Broccoli_Commander: Move Y2 Tomatoe Field\n\n37) dlwillson: Build Y2 Field\n\n38) Broccoli_Commander: Move Y2 Field Tomatoe\n\n39) dlwillson: T Y2 R2 Field\n\n40) Broccoli_Commander: Build G2 Tomatoe\n\n41) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y3 Field\nBuild G3 Dlwillson\n\n42) Broccoli_Commander: B Y3 Tomatoe\n\n43) dlwillson: M Y1 Field Tomatoe\n\n44) Broccoli_Commander: M G2 Tomatoe Field\n\n45) dlwillson: S G3 Dlwillson\nB R1 Field\nB Y3 Tomatoe\nB G3 Dlwillson\nC Tomatoe Y\n\n46) Broccoli_Commander: T B2 Y2 Broccoli_commander\n\n47) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB B1 Forest\nB G3 Dlwillson\n\n48) Broccoli_Commander: S Y2 Broccoli_commander\nM G2 Tomatoe Field\nM G1 Tomatoe Field\nC Field G\n\n49) dlwillson: T B1 Y1 Forest\n\n50) Broccoli_Commander: Trade G3 Y3 Broccoli_commander\n\n51) dlwillson: B Y2 Forest\n\n\tBroccoli_Commander: I don&#39;t think I stand a chance...\r\nWell played! Thanks for the game.\r\nWanna go again?\n\tdlwillson: Time for a rubber match!\n\nHomeworlds Online (SDG# 23245)\nStarted: 2013.1.14, Ended: 2013.1.16\nParticipants: dungeon (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G1 B2 Y3\n\n2) dungeon: Homeworld B1 Y3 G3\n\tBroccoli_Commander: Hello, have a good game dear Sir.\n\tdungeon: No problem!  You will pulverise me.... but it will be worth the experience. ;-)\n\n3) Broccoli_Commander: Build Y1 Broccoli_commander\n\n4) dungeon: Build G1 Dungeon\n\n5) Broccoli_Commander: T Y3 G3 Broccoli_commander\n\n6) dungeon: Discover G1 Dungeon Y2 Tux1\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) dungeon: Build G1 Dungeon\n\n9) Broccoli_Commander: Build G2 Broccoli_commander\n\n10) dungeon: Sacrifice G3 Dungeon\nBuild G2 Tux1\nBuild G2 Tux1\nBuild G3 Dungeon\n\n11) Broccoli_Commander: Discover G2 Broccoli_commander G3 Lettuce\n\n12) dungeon: Discover G2 Tux1 Y3 Yoy\n\n13) Broccoli_Commander: Build Y1 Broccoli_commander\n\tBroccoli_Commander: Heh it&#39;s also my fourth game or so! You do have chances!\n\n14) dungeon: Trade G1 B1 Dungeon\n\n15) Broccoli_Commander: Move Y1 Broccoli_commander Lettuce\n\n16) dungeon: Build G1 Dungeon\n\n17) Broccoli_Commander: Discover G2 Lettuce Y2 Cauliflower\n\n18) dungeon: Trade G3 Y3 Dungeon\n\n19) Broccoli_Commander: T Y1 R1 Broccoli_commander\n\n20) dungeon: Move G1 Tux1 Yoy\n\n21) Broccoli_Commander: Build G3 Cauliflower\n\n22) dungeon: Sacrifice Y3 Dungeon\nMove G2 Yoy Broccoli_commander\nMove G1 Yoy Broccoli_commander\nDiscover G2 Tux1 Y3 Cli\nCatastrophe Broccoli_commander G\n\n23) Broccoli_Commander: Move G3 Cauliflower Dungeon\n\n24) dungeon: Build G1 Cli\n\n25) Broccoli_Commander: Trade G3 R3 Dungeon\n\n26) dungeon: Build G1 Dungeon\n\n27) Broccoli_Commander: Attack B1 Dungeon\n\n28) dungeon: Build G2 Cli\n\n29) Broccoli_Commander: Sacrifice R3 Dungeon\nAttack G1 Dungeon\nAttack G1 Dungeon\nPass\n\tdungeon: I am deep Bantha poodoo\n\tdungeon: ... in... ugh\n\n\tBroccoli_Commander: Yeah I actually hoped you would sacrifice your y3 to cat g in my homeworld. I think you should be more cautious about losing your big ship at home!\r\n\r\nBut anyway, thanks for the game :-)\n\tdungeon: No probs.  I thought I had a good strategy... meh.  So goes the saying with all things good... If you do not struggle for it, it is not worth a persons time.  In this instance, I counted my eggs before they were hatched... Thanks!\n\nHomeworlds Online (SDG# 23238)\nStarted: 2013.1.16, Ended: 2013.1.31\nParticipants: Broccoli_Commander (S), ts52 (N)\nWinner: Broccoli_Commander\n\n1) ts52: Homeworld Y1 B2 G3\n\tBroccoli_Commander: Yep let&#39;s go again :-) \n\tBroccoli_Commander: Woops sorry wrong guy ^^\r\nStill, wanna play again?\n\tts52: Sure!\n\n2) Broccoli_Commander: Homeworld B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) Broccoli_Commander: Discover G1 Broccoli_commander B2 Blueberry\n\n7) ts52: Build G1 Grover\n\n8) Broccoli_Commander: Build G2 Blueberry\n\n9) ts52: Build G2 Ts52\n\n10) Broccoli_Commander: Trade G1 Y1 Blueberry\n\n11) ts52: Trade G2 Y2 Ts52\n\n12) Broccoli_Commander: Build G1 Blueberry\n\n13) ts52: Build G2 Ts52\n\n14) Broccoli_Commander: Trade G2 R2 Blueberry\n\n15) ts52: Trade G1 R1 Grover\n\n16) Broccoli_Commander: Move R2 Blueberry Grover\n\n17) ts52: Sacrifice G2 Ts52\nBuild R1 Grover\nBuild R1 Grover\nCatastrophe Grover Red\n\n18) Broccoli_Commander: Build Y1 Blueberry\n\n19) ts52: Build Y2 Ts52\n\n20) Broccoli_Commander: Build Y2 Blueberry\n\n21) ts52: Move Y2 Ts52 Grover\n\n22) Broccoli_Commander: Trade Y1 R1 Blueberry\n\n23) ts52: Trade Y2 R2 Grover\n\n24) Broccoli_Commander: Move Y1 Blueberry Broccoli_commander\n\n25) ts52: Move Y2 Ts52 Grover\n\n26) Broccoli_Commander: B Y1 Blueberry\n\n27) ts52: Build Y2 Grover\n\n28) Broccoli_Commander: D Y2 Blueberry G3 Lettuce\n\n29) ts52: Discover Y2 Grover G2 Kermit\n\n30) Broccoli_Commander: Build Y3 Blueberry\n\n31) ts52: Build Y3 Grover\n\n32) Broccoli_Commander: Build R1 Blueberry\n\n33) ts52: Move R2 Grover Kermit\n\n34) Broccoli_Commander: Build G1 Broccoli_commander\n\n35) ts52: Build G2 Ts52\n\n36) Broccoli_Commander: Build G2 Blueberry\n\n37) ts52: Build R1 Kermit\n\n38) Broccoli_Commander: M R1 Blueberry Lettuce\n\n39) ts52: Trade G3 R3 Ts52\n\n40) Broccoli_Commander: Discover G2 Blueberry G3 Prairie\n\n41) ts52: Build R2 Ts52\n\n42) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R2 Blueberry\nBuild R3 Lettuce\n\n43) ts52: Move R2 Ts52 Grover\n\n44) Broccoli_Commander: Trade R2 B2 Blueberry\n\n45) ts52: Discover Y3 Grover R2 Elmo\n\n46) Broccoli_Commander: Build R3 Blueberry\n\n47) ts52: Move Y3 Elmo Broccoli_commander\n\n48) Broccoli_Commander: Sacrifice R1 Lettuce\nAttack Y3 Broccoli_commander\n\n49) ts52: Move Y2 Kermit Broccoli_commander\nCatastrophe Broccoli_commander Yellow\n\n50) Broccoli_Commander: Move Y3 Blueberry Grover\n\n51) ts52: Sacrifice Y2 Grover\nMove G1 Grover Broccoli_commander\nDiscover G2 Ts52 Y3 Zoe\n\n52) Broccoli_Commander: Sacrifice Y2 Lettuce\nDiscover G1 Broccoli_commander Y3 Cauliflower\nMove R1 Blueberry Broccoli_commander\n\n53) ts52: Sacrifice R1 Kermit\nAttack R1 Broccoli_commander\n\n54) Broccoli_Commander: Sacrifice R3 Blueberry\nAttack R2 Grover\nAttack G1 Broccoli_commander\nAttack R1 Broccoli_commander\n\n55) ts52: Move G2 Zoe Ts52\n\n56) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Grover\nBuild Y2 Grover\n\n57) ts52: Build R1 Ts52\n\tts52: this is not going to end well...\n\n58) Broccoli_Commander: S Y3 Grover\nM R2 Grover Ts52\nMove R1 Broccoli_commander Grover\nM R1 Grover Ts52\nCatastrophe Ts52 R\n\n\tts52: d&#39;oh! ok, there&#39;s no way I can come back from that. Thanks for the game.\n\tBroccoli_Commander: im afraid not\n\tBroccoli_Commander: Thanks for the game\n\nHomeworlds Online (SDG# 23213)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.16, Ended: 2013.1.24\nParticipants: Broccoli_Commander (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tBroccoli_Commander: Yep let&#39;s go again!\n\tSilentTitan: yea!! I have been soooo bored. No one has challenged me for months.  I&#39;ve darn near forgotten how to play\n\tSilentTitan: homeworld r1 b2 g3\n\tSilentTitan: lol... oops ... see\r\n\n\n2) Broccoli_Commander: Homeworld B1 G3 Y3\n\tSilentTitan: Be forwarned: your opponent has choosen &quot;Banker&quot;\n\tBroccoli_Commander: Oh I see... twice ;-)\r\nGotta think 2min about my homeworld..\n\n3) SilentTitan: Build G1 Silenttitan\n\tBroccoli_Commander: Really nobody played you? I&#39;m new here but it seems pretty active?!\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\tSilentTitan: It is ... but been slow lately. for some reason.  After 6 months I finally got challenged for the top spot on the ladder. \n\tSilentTitan: I guess that&#39;s not entirely true .. I was challenged a few times before. It has been a while tho..\n\tBroccoli_Commander: Oh you have the top spot on the ladder? Congrats :-D I just subscribed to it... I hope I can climb the bottom quickly, I guess the lower players are also inactive and I will have to wait for forfeits or whatever\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\tSilentTitan: LOL... it took me three years to get here and I fell into it because my bro-in-law challenged TwoShort and he failed to respond so he dropped to 6th.  Be hard to tell if I&#39;m any good based on that last game we played.. eh?\n\tBroccoli_Commander: Oh I see. So if it takes 3y for a bad player to get there I might have to wait 2 months then :-D (jk)\r\nYeah bout the last game I merely think you fell asleep because you had won it ^^&#39;\n\n6) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n7) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: maybe... still &lt;red faced&gt; about it. \n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) Broccoli_Commander: D G1 Broccoli_commander B2 Blueberry\n\n11) SilentTitan: Build B1 Silenttitan\n\n12) Broccoli_Commander: Build G1 Blueberry\n\n13) SilentTitan: Discover B1 Silenttitan Y3 Sol\n\n14) Broccoli_Commander: Trade G1 R1 Blueberry\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\n16) Broccoli_Commander: Build G1 Broccoli_commander\n\n17) SilentTitan: Trade B3 G3 Silenttitan\n\tBroccoli_Commander: Yeah sth went wrong ^^&#39; Nice play\n\n18) Broccoli_Commander: Build Y1 Broccoli_commander\n\n19) SilentTitan: Build B3 Silenttitan\n\n20) Broccoli_Commander: Build Y2 Broccoli_commander\n\n21) SilentTitan: Sacrifice B2 Sol\nTrade B3 R3 Sol\nTrade B3 Y3 Silenttitan\n\n22) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry\n\n23) SilentTitan: Move R3 Sol Blueberry\n\n24) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove R1 Blueberry Broccoli_commander\nMove G1 Blueberry Sol\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\n26) Broccoli_Commander: Build Y2 Broccoli_commander\n\n27) SilentTitan: Sacrifice B2 Sol\nTrade B3 Y3 Silenttitan\nTrade B3 R3 Sol\n\n28) Broccoli_Commander: Sacrifice G1 Sol\nBuild R1 Broccoli_commander\n\n29) SilentTitan: Trade Y1 G1 Silenttitan\n\n30) Broccoli_Commander: D R1 Broccoli_commander G2 Lettuce\n\n31) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Silenttitan Sol\nMove G1 Sol Blueberry\nMove G1 Blueberry Broccoli_commander\nCatastrophe Broccoli_commander Green\n\n\tBroccoli_Commander: Well played! I was really surprised by your sudden dozen of blue ships ^^\n\tSilentTitan: Thanks for the game.  I&#39;m avaliable to play more anytime you&#39;d like. \n\nHomeworlds Online (SDG# 23260)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.17, Ended: 2013.2.23\nParticipants: Danner (S), Aristos (N)\nWinner: Danner\n\n1) Aristos: Homeworld G2 B3 Y3\n\n2) Danner: Homeworld B1 R2 G3\n\n3) Aristos: Build Y1 Aristos\n\n4) Danner: Build G1 Danner\n\n5) Aristos: Build Y1 Aristos\n\n6) Danner: Trade G1 Y1 Danner\n\n7) Aristos: Discover Y1 Aristos G1 Pretty\n\n8) Danner: Build Y2 Danner\n\n9) Aristos: Build Y2 Pretty\n\n10) Danner: Discover Y1 Danner G3 Sssla\n\tAristos: If you build yellow, I could sacrifice my Y2, move my Y1 into your home system and catastrophe. It would be your turn, and we would be *exactly* where we were on the second move of the game. Another player and I found a mini loop where either player breaking the loop lost the game. I wonder if, under optimal play, a larger &quot;must maintain the loop&quot; scenario exists...?\n\tDanner: Sorry for the delay, I&#39;m in the middle of my exam period.\r\n&quot;Another player and I found a mini loop where either player breaking the loop lost the game.&quot; So we were right, cool! :) But it&#39;s also a problem, since draws are not implemented here. Do you want to use some kind of anti-loop rule in our games?\n\n11) Aristos: Sacrifice Y1 Pretty\nDiscover Y1 Aristos B1 Fancy\n\tAristos: Yes, I&#39;d like such a rule. I&#39;ve given some thought to this... I think that the player who owns the biggest ship involved in the loop should be the one that gets to &quot;win&quot; the loop. If both players tie for that, then ban the move that would take us back to an earlier game position. \n\tAristos: &quot;Involved in the loop&quot; means any ship that changes position/color/existence between during the turns from the first state of the loop until back to that state again.\n\n12) Danner: Build G1 Danner\n\tDanner: I think it&#39;s a little over-complicated. :) It&#39;s easier to ban any move that would take us back to an earlier game position.\r\nI&#39;ve found a scenario where your rule is ambiguous.\r\nPic: http://dan.uw.hu/temp/loops.png\r\nExplanation:\r\nFirst, the game progresses normally: A B C D E.\r\nThen Red creates a loop. Assuming that Blue wins the loop, Red has to break it somewhere. He chooses C, and moves into position F.\r\nNow Blue tries to move into position A. There are multiple loops to be considered: ABCFA and ABCDEBCFA.\r\nIt&#39;s possible that one of the loops produces a tie (the move is banned) and the other does not (the move is allowed).\n\n13) Aristos: Trade Y1 G1 Fancy\n\tAristos: Ok... I can agree to that rule... no going back to an earlier state. \n\n14) Danner: Discover G1 Danner Y3 Ursa\n\n15) Aristos: Build G2 Fancy\n\tDanner: Ok. :)\n\n16) Danner: Build G2 Danner\n\n17) Aristos: Discover Y2 Pretty G3 Whoaitgotbigger\n\n18) Danner: Sacrifice G3 Danner\nBuild Y1 Danner\nBuild G1 Ursa\nBuild G3 Danner\n\n19) Aristos: Trade G2 R2 Fancy\n\n20) Danner: Trade G2 R2 Danner\n\n21) Aristos: Build Y1 Whoaitgotbigger\n\n22) Danner: Build G2 Danner\n\n23) Aristos: Sacrifice Y2 Whoaitgotbigger\nMove R2 Fancy Sssla\nDiscover G1 Fancy B2 Yowza\n\n24) Danner: Sacrifice Y1 Sssla\nMove R2 Danner Ursa\n\n25) Aristos: Build G2 Yowza\n\n26) Danner: Move G1 Ursa Yowza\n\n27) Aristos: Build Y1 Aristos\n\n28) Danner: Trade G1 B1 Yowza\n\n29) Aristos: Sacrifice G2 Yowza\nBuild Y2 Whoaitgotbigger\nBuild Y2 Aristos\n\n30) Danner: Discover Y1 Danner B3 Meklon\n\n31) Aristos: Sacrifice Y1 Aristos\nDiscover G1 Yowza Y3 Woot\n\n32) Danner: Build R1 Ursa\n\n33) Aristos: Discover Y1 Whoaitgotbigger Y1 Ding\n\n34) Danner: Move G2 Danner Woot\n\n35) Aristos: Build R1 Sssla\n\n36) Danner: Build G1 Danner\n\n37) Aristos: Build R1 Sssla\n\n38) Danner: Sacrifice Y2 Danner\nMove R1 Ursa Yowza\nMove R1 Yowza Sssla\nCatastrophe Sssla R\n\n39) Aristos: Build Y2 Whoaitgotbigger\n\n40) Danner: Sacrifice G3 Danner\nBuild G2 Ursa\nBuild G3 Woot\nBuild G3 Danner\n\n41) Aristos: Discover Y1 Ding B2 Bzzt\n\n42) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild Y1 Meklon\nBuild R1 Ursa\n\n43) Aristos: Move G1 Woot Bzzt\n\n44) Danner: Move Y1 Meklon Danner\n\n45) Aristos: Trade Y1 R1 Bzzt\n\n46) Danner: Build Y1 Danner\n\n47) Aristos: Move Y2 Whoaitgotbigger Bzzt\n\n48) Danner: Move G3 Woot Bzzt\n\n\tAristos: I concede. Well played.\n\tDanner: Thanks!\n\nHomeworlds Online (SDG# 23273)\nStarted: 2013.1.17, Ended: 2013.1.24\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: H G2 Y1 B3\n\n2) dungeon: Homeworld Y3 B2 G3\n\n3) disaac: Build B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: Trade B3 G3 Disaac\n\n6) dungeon: Discover G1 Dungeon B1 Icecicle\n\n7) disaac: B G1 Disaac\n\n8) dungeon: Build G1 Icecicle\n\n9) disaac: Discover G1 Disaac B3 Caravanserai\n\n10) dungeon: Trade G1 Y1 Icecicle\n\n11) disaac: Build B1 Disaac\n\n12) dungeon: Discover G1 Icecicle B3 Gemini\n\n13) disaac: D B1 Disaac Y3 Portal\n\n14) dungeon: Move Y1 Icecicle Gemini\n\n15) disaac: T B1 R1 Disaac\n\n16) dungeon: Build G1 Gemini\n\n17) disaac: D B1 Portal Y1 Portal2\n\n18) dungeon: Build Y2 Gemini\n\n19) disaac: Sacrifice B1 Portal2\nTrade G3 R3 Disaac\n\n20) dungeon: Trade Y1 R1 Gemini\n\n21) disaac: B G2 Caravanserai\n\n22) dungeon: Build G2 Dungeon\n\n23) disaac: T G2 Y2 Caravanserai\n\n24) dungeon: Sacrifice Y2 Gemini\nMove R1 Gemini Disaac\nMove G1 Gemini Disaac\n\n25) disaac: A R1 Disaac\n\n26) dungeon: Sacrifice G2 Dungeon\nBuild G2 Gemini\nBuild G2 Gemini\n\n27) disaac: Build G3 Caravanserai\n\tdungeon: I am thinking... a bad move...\n\tdisaac: Did you want to undo that move before make mine?\n\n28) dungeon: Trade G1 R1 Gemini\n\tdungeon: Nah...  I should have seen that coming... ugh...\n\n29) disaac: M R3 Disaac Gemini\n\n30) dungeon: Sacrifice G2 Gemini\nBuild R2 Gemini\nBuild R2 Gemini\n\n31) disaac: S Y2 Caravanserai\nD G3 Caravanserai Y1 Portal3\nM G3 Portal3 Dungeon\nC Gemini R\n\tdisaac: did you forget to signal for a catastrophe at the end of your turn? You can probably undo the move and redo it with the catastrophe.\r\nOr else, I might be able to trigger it at the beginning of my turn if you want.\r\n\n\tdungeon: Lol.  I was trying to pull a bluff... see if you would trigger it ^_^\n\n32) dungeon: Trade G3 R3 Dungeon\n\tdisaac: Sure... I have no problem triggering it. :)\n\n33) disaac: S R1 Disaac\nA R3 Dungeon\n\tdungeon: I... totally forgot about the sac for attack... ugh...  I am loosing points! ^_^\n\n\nHomeworlds Online (SDG# 23243)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.21, Ended: 2013.2.12\nParticipants: dlwillson (S), inundator (N)\nWinner: dlwillson\n\n1) inundator: Homeworld B2 Y3 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) inundator: Build G1 Inundator\n\n4) dlwillson: Build G1 Dlwillson\n\n5) inundator: Discover G1 Inundator B1 Gene\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) inundator: Build G1 Inundator\n\n8) dlwillson: B Y1 Dlwillson\n\n9) inundator: Trade G1 R1 Inundator\n\n10) dlwillson: Build Y1 Dlwillson\n\n11) inundator: Build G1 Inundator\n\n12) dlwillson: Discover Y1 Dlwillson B2 Sky\n\n13) inundator: Build R1 Inundator\n\n14) dlwillson: B Y2 Dlwillson\n\n15) inundator: Build R2 Inundator\n\n16) dlwillson: D Y2 Dlwillson B2 Sea\n\n17) inundator: Trade R2 Y2 Inundator\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n19) inundator: Build G1 Gene\n\n20) dlwillson: Trade Y3 G3 Dlwillson\n\n21) inundator: Build G2 Gene\n\n22) dlwillson: Trade Y3 R3 Sea\n\n23) inundator: Trade G2 R2 Gene\n\n24) dlwillson: B G2 Dlwillson\n\n25) inundator: Sacrifice G3 Inundator\nBuild G2 Inundator\nBuild G2 Gene\nBuild G3 Inundator\n\n26) dlwillson: Sacrifice G3 Dlwillson\nBuild Y3 Sky\nBuild Y3 Sea\nBuild G3 Dlwillson\n\n27) inundator: Discover G2 Inundator B1 Ace\n\n28) dlwillson: M Y3 Sky Gene\n\n29) inundator: Build G3 Ace\n\n30) dlwillson: Move Y3 Gene Inundator\n\n31) inundator: Attack Y3 Inundator\n\n32) dlwillson: Sacrifice Y2 Sea\nMove Y1 Sky Gene\nMove Y1 Gene Inundator\nCatastrophe Inundator Y\n\n33) inundator: Trade G3 Y3 Ace\n\n34) dlwillson: T Y1 B1 Dlwillson\n\n35) inundator: Sacrifice G3 Inundator\nBuild G3 Inundator\nBuild G3 Ace\nBuild Y1 Ace\n\n36) dlwillson: B B3 Dlwillson\n\n37) inundator: Trade G2 Y2 Gene\n\n38) dlwillson: S Y3 Sea\nM G3 Dlwillson Inundator\nM G2 Dlwillson Inundator\nM B3 Dlwillson Inundator\nC Inundator G\n\n39) inundator: Sacrifice Y2 Gene\nMove G3 Ace Sky\nMove G3 Sky Dlwillson\n\n40) dlwillson: S R3 Sea\nA R1 Inundator\nA R1 Inundator\nPass\n\n\nHomeworlds Online (SDG# 23307)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.22, Ended: 2013.3.16\nParticipants: Broccoli_Commander (S), SirRuthvenMurgatroyd (N)\nWinner: Broccoli_Commander\n\n1) SirRuthvenMurgatroyd: Homeworld G1 B2 Y3\n\n2) Broccoli_Commander: Homeworld G1 Y3 G3 *\n\n3) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G3 Alpha\n\n6) Broccoli_Commander: Discover G1 Broccoli_commander B2 Blueberry\n\n7) SirRuthvenMurgatroyd: Trade Y3 G3 Sirruthvenmurgatroyd\n\n8) Broccoli_Commander: Build G2 Blueberry\n\n9) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n10) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n11) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n12) Broccoli_Commander: Build G2 Blueberry\n\n13) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n14) Broccoli_Commander: Build G2 Broccoli_commander\n\n15) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n16) Broccoli_Commander: Move G2 Blueberry Alpha\n\n17) SirRuthvenMurgatroyd: Move R3 Sirruthvenmurgatroyd Alpha\n\n18) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Alpha\nBuild G3 Alpha\nBuild G3 Broccoli_commander\nCatastrophe Alpha G\n\n19) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd B3 Beta\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\tSirRuthvenMurgatroyd: Boo. That wasn&#39;t very nice. :&#39;(\n\n21) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n22) Broccoli_Commander: Move G2 Blueberry Beta\n\tBroccoli_Commander: No, that was definitely not :-D\n\n23) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n24) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Beta\nBuild G3 Blueberry\n\n25) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd B3 Gamma\n\n26) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G3 Blueberry Beta\nMove G3 Beta Sirruthvenmurgatroyd\n\n27) SirRuthvenMurgatroyd: Move Y1 Beta Blueberry\n\n28) Broccoli_Commander: Trade G3 R3 Beta\n\n29) SirRuthvenMurgatroyd: Move Y1 Blueberry Broccoli_commander\n\n30) Broccoli_Commander: Sacrifice R3 Beta\nAttack Y1 Sirruthvenmurgatroyd\nAttack Y2 Sirruthvenmurgatroyd\nPass\n\n\nHomeworlds Online (SDG# 23269)\nVariants: &quot;Hard time&quot;\nStarted: 2013.1.24, Ended: 2013.2.4\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tBroccoli_Commander: Alright, let&#39;s play again then! I hope I will provide a better challenge this time\n\tSilentTitan: ah.. the classic two out of three.  \n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) SilentTitan: Build G1 Silenttitan\n\tBroccoli_Commander: depending on the outcome we might push it to a 3 out of 5 ;-)\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander G3 Lettuce\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Broccoli_Commander: D G1 Broccoli_commander B3 Blueberry\n\n10) SilentTitan: Discover Y1 Silenttitan B1 Sol\n\n11) Broccoli_Commander: B G1 Broccoli_commander\n\n12) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n13) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Lettuce\n\n14) SilentTitan: Discover Y2 Sol G3 Soul\n\n15) Broccoli_Commander: Build G3 Broccoli_commander\n\n16) SilentTitan: Build Y3 Soul\n\n17) Broccoli_Commander: Trade G3 Y3 Broccoli_commander\n\n18) SilentTitan: Discover Y1 Sol G3 Sole\n\n19) Broccoli_Commander: Trade G1 R1 Blueberry\n\n20) SilentTitan: Sacrifice Y2 Sol\nMove Y2 Soul Broccoli_commander\nMove Y1 Sole Broccoli_commander\nCatastrophe Broccoli_commander Yellow\n\n21) Broccoli_Commander: Build G1 Blueberry\n\n22) SilentTitan: Move Y3 Soul Broccoli_commander\n\n23) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n24) SilentTitan: Move Y3 Broccoli_commander Blueberry\n\n25) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild G2 Broccoli_commander\nBuild G3 Blueberry\n\tBroccoli_Commander: Ah; clever...\n\n26) SilentTitan: Discover Y3 Blueberry B1 Sol\n\n27) Broccoli_Commander: Trade G2 Y2 Broccoli_commander\n\n28) SilentTitan: Move Y3 Sol Silenttitan\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Broccoli_commander\n\n30) SilentTitan: Trade Y2 R2 Silenttitan\n\n31) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Blueberry\nBuild R1 Blueberry\n\n32) SilentTitan: Pass\n\n\tBroccoli_Commander: Let&#39;s play another!\n\nHomeworlds Online (SDG# 23317)\nStarted: 2013.1.24, Ended: 2013.2.27\nParticipants: dungeon (S), adwm86 (N)\nWinner: adwm86\n\n1) adwm86: Homeworld B2 Y1 G3\n\n2) dungeon: Homeworld Y3 B2 G3\n\n3) adwm86: Build G1 Adwm86\n\n4) dungeon: Build G1 Dungeon\n\n5) adwm86: Discover G1 Adwm86 Y3 Dagoba\n\n6) dungeon: Discover G1 Dungeon B1 Kashyyyk\n\n7) adwm86: Build G1 Dagoba\n\tadwm86: Lol I forgot h on dagobah\n\n8) dungeon: Build G2 Kashyyyk\n\tdungeon: :-)  That is okay.  I totally forgot how to spell Kashyyyk and was trying to spell it with one y...\n\n9) adwm86: Build G2 Dagoba\n\n10) dungeon: Build G2 Kashyyyk\n\n11) adwm86: Build G3 Adwm86\n\n12) dungeon: Trade G2 Y2 Kashyyyk\n\n13) adwm86: Trade G3 R3 Adwm86\n\n14) dungeon: Move G1 Kashyyyk Dungeon\n\n15) adwm86: Discover G2 Dagoba Y1 Hoth\n\n16) dungeon: Sacrifice G3 Dungeon\nBuild G2 Kashyyyk\nBuild G3 Kashyyyk\nBuild G3 Dungeon\n\n17) adwm86: Move R3 Adwm86 Dagoba\n\n18) dungeon: Trade G3 Y3 Kashyyyk\n\n19) adwm86: Move R3 Dagoba Kashyyyk\n\n20) dungeon: Trade G3 R3 Dungeon\n\n21) adwm86: Attack Y3 Kashyyyk\n\n22) dungeon: Sacrifice Y2 Kashyyyk\nMove G2 Kashyyyk Dagoba\nMove G2 Dagoba Adwm86\n\n23) adwm86: Trade G3 R3 Adwm86\n\n24) dungeon: Sacrifice G2 Kashyyyk\nBuild G2 Adwm86\nBuild G3 Adwm86\n\n25) adwm86: Sacrifice R3 Kashyyyk\nAttack G2 Adwm86\nAttack G3 Adwm86\nAttack G2 Adwm86\n\n26) dungeon: Trade R3 G3 Dungeon\n\n27) adwm86: Discover G3 Adwm86 B3 Endor\n\tdungeon: You... did not take my bluff.... ;-(\n\n28) dungeon: Discover G1 Dungeon Y1 Naboo\n\tadwm86: The force is strong with this one\r\n\n\n29) adwm86: Sacrifice Y3 Kashyyyk\nMove G1 Dagoba Hoth\nMove G1 Dagoba Hoth\nMove G2 Hoth Dungeon\n\tdungeon: As I was scrolling down the screen... my heart literally sank per each section of the board down... ;-(  \n\n30) dungeon: Sacrifice G1 Naboo\nBuild G1 Dungeon\n\n31) adwm86: Move G1 Hoth Dungeon\n\tadwm86: Guess ur rebel scum lol\n\tdungeon: Nah.  We are totally good guys... In my version, we poured salt on JarJar and he melted away like a slug.. ;-)\n\tdungeon: Durp, I meant bad guys... ugh.. too early...\n\n32) dungeon: Trade G3 R3 Dungeon\n\n33) adwm86: Move G1 Hoth Dungeon\nCatastrophe Dungeon G\n\tadwm86: Woops forgot catastrophe part lol\n\tdungeon: Just undo your move and start the cat.  I need to learn from the poor mistakes ;-)  Good show BTW.  I seem to be worse off at playing this online than in person... which also still leaves much to be desired ;-)  I will start up another challenge\n\n34) dungeon: Trade R3 G3 Dungeon\n\tdungeon: You technically won this one....\n\n35) adwm86: Build G1 Endor\n\tadwm86: Lets keep goin\n\n36) dungeon: Build G1 Dungeon\n\n37) adwm86: Trade G3 Y3 Endor\n\n38) dungeon: Trade G3 R3 Dungeon\n\n39) adwm86: Move G2 Adwm86 Endor\n\n40) dungeon: Discover G1 Dungeon G1 Kessel\n\n41) adwm86: Trade G2 Y2 Endor\n\n42) dungeon: Build G2 Kessel\n\n43) adwm86: Discover Y3 Endor Y2 Mustafar\n\n44) dungeon: Trade R3 G3 Dungeon\n\n45) adwm86: Move Y3 Mustafar Kessel\n\n46) dungeon: Build G2 Dungeon\n\n47) adwm86: Trade G2 Y2 Adwm86\n\tadwm86: Hey I made kesel run in less than 3 parsecs\r\nHaha\n\tdungeon: I laughed when I found out the Kessel was an asteroid... I had no clue.  But the whole parsec thing... meh  short oversight by Lucas...\n\n48) dungeon: Trade G2 B2 Dungeon\n\n49) adwm86: Build Y1 Endor\n\n50) dungeon: Move B2 Dungeon Kessel\n\n51) adwm86: Trade R3 B3 Adwm86\n\n52) dungeon: Build B1 Kessel\n\n53) adwm86: Build G2 Endor\n\n54) dungeon: Trade G1 Y1 Kessel\n\n55) adwm86: Sacrifice Y2 Endor\nMove G1 Endor Kessel\nMove G2 Endor Kessel\n\n56) dungeon: Sacrifice G2 Kessel\nBuild Y2 Kessel\nBuild Y2 Kessel\n\n57) adwm86: Move Y1 Endor Kessel\n\n58) dungeon: Trade B1 R1 Kessel\n\n59) adwm86: Sacrifice Y3 Kessel\nMove G1 Kessel Dungeon\nMove G2 Kessel Dungeon\nMove Y1 Kessel Dungeon\n\tdungeon: we sure have a cluster at kessel\r\n\n\n60) dungeon: Sacrifice B2 Kessel\nTrade Y2 G2 Kessel\nTrade Y1 G1 Kessel\n\n61) adwm86: Build G2 Dungeon\nCatastrophe Dungeon G\n\n\tdungeon: I... I lost... again...\n\nHomeworlds Online (SDG# 23315)\nStarted: 2013.1.24, Ended: 2013.2.4\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: Homeworld G2 Y1 B3\n\n2) dungeon: Homeworld B1 Y3 G3\n\n3) disaac: Build B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: Discover B1 Disaac G3 Prosperity\n\n6) dungeon: Discover G1 Dungeon B2 Radiance\n\n7) disaac: Build B1 Disaac\n\n8) dungeon: Build G1 Dungeon\n\n9) disaac: Trade B3 G3 Disaac\n\tdisaac: sorry... built in the wrong system\n\n10) dungeon: Trade G1 R1 Dungeon\n\tdungeon: No prob.\n\n11) disaac: B B2 Disaac\n\n12) dungeon: Build G1 Radiance\n\n13) disaac: S G3 Disaac\nB B2 Prosperity\nB B3 Prosperity\nB B3 Disaac\n\n14) dungeon: Trade G1 R1 Radiance\n\n15) disaac: D B2 Disaac Y3 Sol\n\n16) dungeon: Build R1 Radiance\n\n17) disaac: T B2 R2 Prosperity\n\n18) dungeon: Trade G1 Y1 Radiance\n\n19) disaac: T B3 G3 Disaac\n\n20) dungeon: Trade R1 G1 Radiance\n\n21) disaac: T B3 Y3 Prosperity\n\n22) dungeon: Discover R1 Radiance B3 Reddwarf\n\n23) disaac: S G3 Disaac\nB B2 Prosperity\nB B3 Sol\nB B3 Disaac\n\tdungeon: This is a tough game so far!\n\n24) dungeon: Discover G1 Radiance G3 Vejur\n\n25) disaac: T B3 R3 Disaac\n\n26) dungeon: Build R1 Dungeon\n\tdungeon: Talking to the shop owners now on FB to see about getting us some tables and time to run their client&egrave;le through the Starfleet Cadet ringer.  Would you be more interested in running Fluxx?\r\n \n\n27) disaac: T B2 G2 Sol\n\n28) dungeon: Build G1 Dungeon\n\n29) disaac: B B2 Sol\n\n30) dungeon: Move R1 Dungeon Radiance\n\n31) disaac: Build B3 Disaac\n\n32) dungeon: Discover G1 Dungeon R2 Corona\n\n33) disaac: T B3 R3 Sol\n\n34) dungeon: Sacrifice G3 Dungeon\nBuild R2 Reddwarf\nBuild R3 Dungeon\nBuild G1 Corona\n\n35) disaac: B B3 Sol\n\n36) dungeon: Build G2 Vejur\n\n37) disaac: B G3 Sol\n\n38) dungeon: Sacrifice G2 Vejur\nBuild Y1 Radiance\nBuild Y2 Radiance\n\n39) disaac: D G3 Sol Y2 Station\n\n40) dungeon: Build G2 Vejur\n\n41) disaac: M B3 Sol Station\n\n42) dungeon: Sacrifice Y2 Radiance\nDiscover R2 Reddwarf Y2 Derelect\nMove G2 Vejur Derelect\n\n\n43) disaac: M R3 Sol Station\n\n44) dungeon: Sacrifice G1 Corona\nBuild Y2 Radiance\n\n45) disaac: S Y3 Prosperity\nM R3 Station Dungeon\nM G3 Station Dungeon\nM B3 Station Dungeon\n\n46) dungeon: Attack R3 Dungeon\n\n47) disaac: S R3 Disaac\nA R3 Dungeon\nA R3 Dungeon\nA R1 Dungeon\n\n\nHomeworlds Online (SDG# 23237)\nStarted: 2013.1.29, Ended: 2013.2.7\nParticipants: Broccoli_Commander (S), dlwillson (N)\nWinner: Broccoli_Commander\n\n1) dlwillson: H B1 R3 G3 Dlwillson\n\n2) Broccoli_Commander: Homeworld B1 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Broccoli_Commander: Build G1 Broccoli_commander\n\n7) dlwillson: B G1 Dlwillson\n\n8) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n9) dlwillson: T G1 B1 Dlwillson\n\n10) Broccoli_Commander: Build G1 Broccoli_commander\n\tdlwillson: Have you joined the ladder yet?\n\tBroccoli_Commander: Yes I just started :-) But I first have to go through the set of nonplaying players which is a bit annoying. I just got my first accepted challenge though.\r\n\n\n11) dlwillson: Build G2 Dlwillson\n\tdlwillson: Excellent. You should do very well.\n\n12) Broccoli_Commander: Discover G1 Broccoli_commander B3 Mushroom\n\n13) dlwillson: B B2 Dlwillson\n\tBroccoli_Commander: We will see :-D \r\nOh once you thought I was already a veteran, but not Andy for some reason. Did you think of Andy Looney? Do you know him?\n\n14) Broccoli_Commander: Build G2 Blueberry\n\n15) dlwillson: T B2 R2 Dlwillson\n\n16) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n17) dlwillson: Trade G3 Y3 Dlwillson\n\n18) Broccoli_Commander: Discover G2 Broccoli_commander G3 Lettuce\n\n19) dlwillson: D R2 Dlwillson Y2 Sun\n\n20) Broccoli_Commander: Trade G2 R2 Blueberry\n\n21) dlwillson: Move R2 Sun Mushroom\n\n22) Broccoli_Commander: Sacrifice G1 Mushroom\nBuild R1 Blueberry\n\tdlwillson: I don&#39;t know him. I remember thinking, &quot;Wow, this guy&#39;s good; I&#39;d better pay attention! Hm... Too late to pay attention to this game.&quot;\r\nI don&#39;t remember how I knew you weren&#39;t Andy.\n\n23) dlwillson: Sacrifice G2 Dlwillson\nBuild B2 Dlwillson\nBuild R1 Mushroom\n\n24) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G2 Blueberry\n\n25) dlwillson: T Y3 G3 Dlwillson\n\n26) Broccoli_Commander: Trade R1 Y1 Blueberry\n\n27) dlwillson: D B2 Dlwillson Y2 Sun\n\tdlwillson: I do know Silent Titan, though! He told me last night  at my son&#39;s birthday what a strong player you are.\n\n28) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R1 Blueberry\nBuild R1 Blueberry\n\n29) dlwillson: Trade R2 Y2 Mushroom\n\n30) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Blueberry\nBuild Y3 Blueberry\n\n31) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB B2 Sun\nB Y3 Mushroom\n\tBroccoli_Commander: Ah talking behind my back ^^ Thanks, and in any case I learned quite a bit from both of you (e.g. I think I finally get why you would get b&amp;r stars in your homeworld). I really like this game, the strategy is kinda deep, yet it seems more understandable than chess for example\n\n32) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Lettuce\nBuild G3 Broccoli_commander\n\n33) dlwillson: Move B2 Sun Blueberry\n\n34) Broccoli_Commander: Sacrifice Y3 Blueberry\nDiscover G3 Blueberry B2 Blueberry_rip\nMove Y1 Blueberry Blueberry_rip\nMove R1 Blueberry Blueberry_rip\n\n35) dlwillson: S Y3 Mushroom\nM B2 Blueberry Broccoli_commander\nM B2 Sun Blueberry\nM B2 Blueberry Broccoli_commander\n\n36) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack B2 Broccoli_commander\nAttack B2 Broccoli_commander\n\n\tdlwillson: Well played. Again?\n\tBroccoli_Commander: Sure!\n\nHomeworlds Online (SDG# 23348)\nStarted: 2013.1.31, Ended: 2013.2.26\nParticipants: adwm86 (S), dungeon (N)\nWinner: adwm86\n\n1) dungeon: Homeworld B2 Y1 G3\n\n2) adwm86: Homeworld G3 Y2 B3\n\n3) dungeon: Build G1 Dungeon\n\n4) adwm86: Build B1 Adwm86\n\n5) dungeon: Discover G1 Dungeon G3 Nar_shaddaa\n\n6) adwm86: Trade B3 R3 Adwm86\n\tadwm86: Is that twilight imperium\n\n7) dungeon: Build G1 Dungeon\n\tadwm86: I got M.F. rainbow\n\n8) adwm86: Build B1 Adwm86\n\n9) dungeon: Trade G1 B1 Dungeon\n\tdungeon: I have decided... I will have to get MageWar with the giftcard from Gayle/Todd....  I think I can get it and the first expansion with the card and hopefully they will have the other expansion there for me to pickup!  Mwahahaaahahhahahha\n\tdungeon: Nah, that is a moon from Episode VI, I thinthe smugglers moon... Not sure...\n\n10) adwm86: Build B2 Adwm86\n\n11) dungeon: Discover B1 Dungeon Y3 Y-wing\n\n12) adwm86: Discover B2 Adwm86 G1 Death_star\n\n13) dungeon: Build G1 Dungeon\n\tadwm86: Is that yellow pieces Y-wings\n\tdungeon: Hahaha, yeah...\n\tdungeon: Hahaha, yeah...\n\n14) adwm86: Build B2 Death_star\n\n15) dungeon: Move G1 Dungeon Y-wing\n\tadwm86: Should build R3 on Endor haha\n\tdungeon: Lol.  Oh-yeah.\n\n16) adwm86: Build B3 Adwm86\n\n17) dungeon: Build G2 Nar_shaddaa\n\n18) adwm86: Discover B3 Adwm86 Y1 Tie_fighter\n\n19) dungeon: Build B3 Y-wing\n\n20) adwm86: Trade B3 R3 Tie_fighter\n\n21) dungeon: Trade B3 Y3 Y-wing\n\n22) adwm86: Move R3 Tie_fighter Y-wing\n\n23) dungeon: Sacrifice G2 Nar_shaddaa\nBuild B3 Y-wing\nBuild G2 Nar_shaddaa\n\n24) adwm86: Attack B3 Y-wing\n\n25) dungeon: Sacrifice Y3 Y-wing\nDiscover B1 Y-wing Y1 X-wing\nMove G1 Y-wing X-wing\nMove G2 Nar_shaddaa X-wing\n\n26) adwm86: Move R3 Y-wing Dungeon\n\n27) dungeon: Trade G3 R3 Dungeon\n\n28) adwm86: Attack R3 Dungeon\n\n\nHomeworlds Online (SDG# 23364)\nStarted: 2013.2.4, Ended: 2013.3.5\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: Homeworld Y1 G2 B3\n\n2) dungeon: Homeworld B3 Y2 G3\n\n3) disaac: B B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: T B3 G3 Disaac\n\n6) dungeon: Discover G1 Dungeon Y1 Snazzle\n\n7) disaac: B G1 Disaac\n\n8) dungeon: Build G1 Dungeon\n\n9) disaac: D G1 Disaac B3 Hydro\n\n10) dungeon: Sacrifice G3 Dungeon\nBuild G2 Snazzle\nBuild G2 Snazzle\nBuild G3 Dungeon\n\n11) disaac: B G3 Hydro\n\n12) dungeon: Trade G1 B1 Dungeon\n\n13) disaac: B G1 Disaac\n\n14) dungeon: Discover B1 Dungeon Y1 Xanth\n\n15) disaac: D G1 Disaac Y3 Iss\n\n16) dungeon: Discover B1 Xanth Y3 Ir\n\n17) disaac: B B1 Disaac\n\n18) dungeon: Trade B1 Y1 Ir\n\n19) disaac: M G1 Iss Snazzle\nC Snazzle G\n\n20) dungeon: Build G1 Dungeon\n\n21) disaac: D B1 Disaac Y3 Stargate\n\n22) dungeon: Discover G1 Dungeon Y1 Caldera\n\n23) disaac: B B1 Disaac\n\n24) dungeon: Build G1 Caldera\n\tdungeon: sorry Dan... been busy this week.... :-(\r\n\n\n25) disaac: B G2 Disaac\n\tdisaac: Not a problem. \n\n26) dungeon: Build G2 Caldera\n\n27) disaac: M G2 Disaac Stargate\n\n28) dungeon: Discover G2 Caldera B3 Gemini\n\n29) disaac: S G3 Hydro\nB G3 Hydro\nB B2 Stargate\nB B2 Stargate\n\n30) dungeon: Move G1 Caldera Hydro\n\n31) disaac: T G1 R1 Hydro\n\n32) dungeon: Move Y1 Ir Disaac\n\n33) disaac: S R1 Hydro\nA Y1 Disaac\n\n34) dungeon: Trade G2 Y2 Gemini\n\n35) disaac: T B1 R1 Disaac\n\n36) dungeon: Build G1 Hydro\n\n37) disaac: T B2 Y2 Stargate\n\n38) dungeon: Build G2 Caldera\n\n39) disaac: S Y2 Stargate\nM G3 Hydro Caldera\nM G3 Caldera Dungeon\n\tdisaac: Sorry... Wrong color\n\n40) dungeon: Trade G3 R3 Dungeon\n\n41) disaac: S R1 Disaac\nA R3 Dungeon\n\n\tdisaac: You should keep a bit of a diversified fleet in your home world. Not so many that catastrophes would be easy to cause though. Also consider diversifying the rest of your fleet as well. \n\tdungeon: I seem to get antsy in trying to squander early on.  Thanks for the advice!  It comes to me easier in the physical game than it does digitally.  I might start to keep a physical copy readily available to mock up the game.  That might help me out...\n\nHomeworlds Online (SDG# 23366)\nVariants: &quot;Hard time&quot;\nStarted: 2013.2.4, Ended: 2013.3.19\nParticipants: goulo (S), Mandrel (N)\nWinner: goulo\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) goulo: Homeworld R1 B3 G3\n\tMandrel: Have a good game.\n\n3) Mandrel: Build G1 Mandrel\n\tgoulo: thanks, you too!\n\n4) goulo: Build G1 Goulo\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) goulo: Trade G3 R3 Goulo\n\n7) Mandrel: Build R2 Mandrel\n\n8) goulo: Build R2 Goulo\n\n9) Mandrel: Trade R1 Y1 Mandrel\n\n10) goulo: Trade R3 Y3 Goulo\n\n11) Mandrel: Build Y1 Mandrel\n\n12) goulo: Build G1 Goulo\n\n13) Mandrel: Discover Y1 Mandrel G3 Proof\n\n14) goulo: Discover R2 Goulo Y2 Citrono\n\n15) Mandrel: Trade Y1 B1 Mandrel\n\n16) goulo: Move G1 Goulo Citrono\n\n17) Mandrel: Build B1 Mandrel\n\n18) goulo: Build G1 Goulo\n\n19) Mandrel: Build G2 Mandrel\n\n20) goulo: Build G2 Citrono\n\n21) Mandrel: Trade G2 Y2 Mandrel\n\n22) goulo: Trade G1 B1 Goulo\n\n23) Mandrel: Move B1 Mandrel Proof\n\n24) goulo: Move B1 Goulo Citrono\n\n25) Mandrel: Build B2 Proof\n\n26) goulo: Build B2 Citrono\n\n\tMandrel: Apologies, been poor at keeping on top of my games here, been busier than expected.\n\tgoulo: alas, better luck next time! :)\n\nHomeworlds Online (SDG# 23316)\nVariants: &quot;Hard time&quot;\nStarted: 2013.2.4, Ended: 2013.3.13\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: SilentTitan\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld B1 R3 G3\n\tBroccoli_Commander: Finally gonna try this h r1 b2 g3... But I think I understand the point now! I bet you&#39;ll probably prove me wrong, tough. \r\nYou know dlwillson I heard! So my 2 favorite players (so far ^^) are friends :-) I love this game, but I feel like only 50 people or so in the world actually know enough to be rightfully thrilled by it. Kinda geeky, isn&#39;t it?\r\nAnyway, have a good game dear Sir!\r\nPS:where do you live?\n\tSilentTitan: David is actually my bro-in-law as I married his sister.  We all live in Denver.  I totaly agree with the geeky part.  You have a good game as well, win or lose I know I&#39;ll have a fun time. \n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tSilentTitan: since I hardly ever play the &quot;Goldilocks&quot; position ... this should be interesting.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) Broccoli_Commander: Build G1 Broccoli_commander\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) Broccoli_Commander: Trade G3 B3 Broccoli_commander\n\tSilentTitan: haha... I undid my turn because I was going to move the Y1 from Silenttitan out to a new system and use up the b1 ... forgot I&#39;m playing goldilocks... I have to move out to a two.\r\n\n\n14) SilentTitan: Discover B1 Silenttitan B2 Sol\n\n15) Broccoli_Commander: Build G1 Broccoli_commander\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild Y1 Silenttitan\nBuild Y2 Silenttitan\n\n17) Broccoli_Commander: Build G2 Broccoli_commander\n\tBroccoli_Commander: Haha, too bad there is no undo the last undo button...  Do you actually prefer Fortress over Goldilocks?\n\tSilentTitan: I do, however I suspect it is only due to familiarity.\n\n18) SilentTitan: Trade B2 G2 Sol\n\n19) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Blueberry\nBuild Y2 Broccoli_commander\n\n20) SilentTitan: Build G2 Sol\n\n21) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\n22) SilentTitan: Sacrifice G2 Sol\nBuild B2 Sol\nBuild B3 Silenttitan\n\n23) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\n24) SilentTitan: Trade B3 G3 Silenttitan\n\n25) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild Y2 Broccoli_commander\nBuild Y3 Blueberry\n\n26) SilentTitan: Discover Y1 Silenttitan G2 Soul\n\n27) Broccoli_Commander: Move Y3 Blueberry Sol\n\n28) SilentTitan: Sacrifice G2 Sol\nBuild Y3 Soul\nBuild B3 Silenttitan\n\tBroccoli_Commander: Hey sorry! I&#39;m moving and had no internet at home.\r\nWow this was close (8h remaining ^^)\n\tSilentTitan: It&#39;s all cool.. Life comes up from time to time. David and I were at a gaming con all weekend .. so no worries\r\n\n\n29) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n30) SilentTitan: Trade B3 R3 Silenttitan\n\n31) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n32) SilentTitan: Build B3 Silenttitan\n\n33) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n34) SilentTitan: Move Y3 Soul Blueberry\n\n35) Broccoli_Commander: Build Y2 Blueberry\n\n36) SilentTitan: Sacrifice R3 Silenttitan\nAttack Y2 Blueberry North\nAttack Y1 Blueberry North\nAttack R2 Blueberry North\n\n37) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry\nCatastrophe Blueberry Y\n\n38) SilentTitan: Attack G1 Blueberry North\n\n39) Broccoli_Commander: Move Y3 Sol Blueberry\n\n40) SilentTitan: Build G2 Blueberry\n\n41) Broccoli_Commander: Trade G3 R3 Broccoli_commander\n\n42) SilentTitan: Sacrifice B3 Silenttitan\nTrade G2 Y2 Blueberry\nTrade G1 Y1 Blueberry\nTrade R2 Y2 Blueberry\nCatastrophe Blueberry Yellow\n\n43) Broccoli_Commander: Build R1 Broccoli_commander\n\n44) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover B1 Sol R3 Sole\n\n45) Broccoli_Commander: Trade R1 Y1 Broccoli_commander\n\n46) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Silenttitan\nBuild B3 Sol\nBuild B3 Sole\n\n\tBroccoli_Commander: I surrender, please don&#39;t attack my ships anymore! I believe we can live in peace together.\r\n\r\nWell played!\n\tSilentTitan: oh.. .alright... peace instead of pieces.\r\n\n\nHomeworlds Online (SDG# 23342)\nVariants: &quot;Hard time&quot;\nStarted: 2013.2.7, Ended: 2013.3.8\nParticipants: Broccoli_Commander (S), dlwillson (N)\nWinner: Broccoli_Commander\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n2) Broccoli_Commander: Homeworld R1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Broccoli_Commander: Build Y2 Broccoli_commander\n\n9) dlwillson: T Y2 R2 Dlwillson\n\n10) Broccoli_Commander: Build Y2 Broccoli_commander\n\n11) dlwillson: B Y2 Dlwillson\n\n12) Broccoli_Commander: Discover Y2 Broccoli_commander G3 Lettuce\n\n13) dlwillson: D Y1 Dlwillson G2 Forest\n\n14) Broccoli_Commander: Build Y3 Lettuce\n\n15) dlwillson: B Y3 Forest\n\n16) Broccoli_Commander: Discover Y3 Lettuce G2 Romanesco\n\n17) dlwillson: T Y2 B2 Dlwillson\n\n18) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\tBroccoli_Commander: I saw your game against inundator, I was quite disappointed by the ending (not by the result itself, ofcourse :-D)\r\nAfter turn 19:\r\nhttp://superdupergames.org/?page=archive_play&amp;gid=23243&amp;idx=37\r\n\r\nThe situation was very interesting and I almost feel like he should have beaten you or at least have a sizeable chance of doing so(although it is counterintuitive at first sight). What would you have done if he had played\r\n\r\ns y3 ace\r\nm g2 ace inundator\r\nm y1 ace inundator\r\nm g1 gene inundator\r\n?\r\n\r\nAnd frankly tell me if you don&#39;t care :-D (after all he did _not_ play this...) I won&#39;t take any offense.\n\n19) dlwillson: D Y3 Forest B3 Sky\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Lettuce\nBuild Y2 Romanesco\nBuild Y3 Broccoli_commander\n\n21) dlwillson: B R1 Dlwillson\n\n22) Broccoli_Commander: Move R2 Broccoli_commander Lettuce\n\n23) dlwillson: M B2 Dlwillson Forest\n\n24) Broccoli_Commander: Build R1 Lettuce\n\n25) dlwillson: M R1 Dlwillson Forest\n\n26) Broccoli_Commander: Trade Y1 B1 Broccoli_commander\n\n27) dlwillson: B R2 Forest\n\n28) Broccoli_Commander: Move R1 Lettuce Romanesco\n\n29) dlwillson: Build R3 Dlwillson\n\n30) Broccoli_Commander: Build R3 Lettuce\n\n\tdlwillson: D&#39;oh! Dammit. Timed out, plum blossom... Sorry about that, BC. I&#39;m going to take a break from SDG. I&#39;m obviously too busy.\n\tBroccoli_Commander: Hey no problem, I got close several times as well.... Now I get why 1/1/X is not a good idea. \r\nHave fun in whatever keeps you busy, and hope to see you soon again on SDG dear Sir!\n\nHomeworlds Online (SDG# 23408)\nVariants: &quot;Unrated&quot;\nStarted: 2013.2.19, Ended: 2013.2.20\nParticipants: yougurt87 (S), bugggg (N)\nWinner: bugggg\n\n1) bugggg: Homeworld Y1 B2 G3\n\n2) yougurt87: Homeworld B1 Y2 G3\n\n3) bugggg: Build G1 Bugggg\n\n4) yougurt87: Build G1 Yougurt87\n\n5) bugggg: Trade G1 R1 Bugggg\n\n6) yougurt87: Trade G1 R1 Yougurt87\n\n\n7) bugggg: Build G1 Bugggg\n\n8) yougurt87: Build G1 Yougurt87\n\n9) bugggg: Discover G1 Bugggg Y3 Spray\n\n10) yougurt87: Move R1 Yougurt87 Spray\n\n11) bugggg: Sacrifice R1 Bugggg\nAttack R1 Spray\n\n12) yougurt87: Trade G1 R1 Yougurt87\n\n13) bugggg: Build G1 Spray\n\n14) yougurt87: Build G1 Yougurt87\n\n15) bugggg: Build G2 Bugggg\n\n16) yougurt87: Build R1 Yougurt87\n\n17) bugggg: Trade G2 Y2 Bugggg\n\n18) yougurt87: Move G3 Yougurt87 Spray\n\n19) bugggg: Build G2 Bugggg\n\n20) yougurt87: Build G2 Yougurt87\n\n21) bugggg: Sacrifice Y2 Bugggg\nMove G1 Spray Yougurt87\nMove G1 Spray Yougurt87\nCatastrophe Yougurt87 Green\n\n22) yougurt87: Discover R1 Yougurt87 G3 Darlin\n\n23) bugggg: Move G2 Bugggg Darlin\n\n24) yougurt87: Build R2 Darlin\n\n25) bugggg: Sacrifice R1 Spray\nAttack R2 Darlin\n\n26) yougurt87: Build G1 Spray\n\n27) bugggg: Attack R1 Darlin\n\n28) yougurt87: Move G3 Spray Yougurt87\n\n29) bugggg: Build G1 Bugggg\n\n30) yougurt87: Build G1 Yougurt87\n\n31) bugggg: Trade G1 B1 Bugggg\n\n32) yougurt87: Move G3 Yougurt87 Darlin\n\n33) bugggg: Build G1 Darlin\nCatastrophe Darlin Green\n\n34) yougurt87: Move R1 Yougurt87 Spray\n\n35) bugggg: Build G1 Bugggg\n\n36) yougurt87: Build R1 Spray\n\n37) bugggg: Trade G1 R1 Bugggg\n\n38) yougurt87: Build G1 Yougurt87\n\n39) bugggg: Build G2 Bugggg\n\n40) yougurt87: Build G2 Yougurt87\n\n41) bugggg: Trade G2 Y2 Bugggg\n\n42) yougurt87: Build R2 Spray\n\n43) bugggg: Sacrifice Y2 Bugggg\nMove G3 Bugggg Spray\nMove G3 Spray Yougurt87\nCatastrophe Yougurt87 Green\n\n\nHomeworlds Online (SDG# 23423)\nVariants: &quot;Hard time&quot;\nStarted: 2013.2.25, Ended: 2013.3.14\nParticipants: MagicJohn (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld R2 B3 G3\n\n2) MagicJohn: Homeworld R1 B2 G3\n\n3) Aristos: Build G1 Aristos\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Aristos: Trade G3 Y3 Aristos\n\tMagicJohn: Have a good game.\n\tAristos: Thanks. \n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) Aristos: Build G1 Aristos\n\n8) MagicJohn: Build Y1 Magicjohn\n\n9) Aristos: Discover G1 Aristos B1 Alpha\n\n10) MagicJohn: Trade Y1 B1 Magicjohn\n\tAristos: Technological breakthrough: The Aristos empire has discovered warp technology and made its first interstellar jump. Alas, the crew is likely lost as they lack the fuel to return.\n\n11) Aristos: Build Y1 Aristos\n\tMagicJohn: Planetary system MagicJohn inhabitants plod onward, obliviously (yet happily) playing with fire and newly invented wheels. Little do they know of the impending danger visited upon them by their more technologically advanced but less civilized neighbors.     \n\n12) MagicJohn: Discover Y1 Magicjohn R3 Kaline\n\n13) Aristos: Build Y1 Aristos\n\tMagicJohn: Magicjohn inhabitants quietly move to a planet inhabited largely by octogenarian Detroit Tigers while continuing their program of disinformation spread by air-dropped leaflets and door-to-door evangelicals.  \n\n14) MagicJohn: Build B1 Magicjohn\n\tAristos: Hoping to stave off future debacles like the ill-fated trip to Alpha, Aristos government stockpiles fuel supplies.\n\n15) Aristos: Move Y1 Aristos Alpha\n\tMagicJohn: MagicJohn inhabitants invest more capital in blue technology based largely on color preferences expounded by Grand Poobah&#39;s wife.   \n\n\tAristos: 2nd mission to Alpha discovers original crew still alive! Happy citizens of Aristos empire burn two cities to the ground in celebratory bonfire.\n\tMagicJohn: Wife&#39;s in hospital. It&#39;s going to be slow going for awhile....\n\tMagicJohn: Sorry about triggering hard time. My wife should be out of the hospital tomorrow, but it was a bit sticky for awhile. Priorities and all...... I&#39;ll challenge back in when life calms down a little.\n\tAristos: No problem... I left the country for a bit and got away from my machine. Good luck with your other priorities. \n\nHomeworlds Online (SDG# 23367)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.7, Ended: 2013.3.11\nParticipants: SimonDorfman (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\tSilentTitan: Welcome\n\n\nHomeworlds Online (SDG# 23381)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.10, Ended: 2013.3.18\nParticipants: aayore (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: WHAT? What is this?\n\n2) aayore: Homeworld G2 Y1 B3\n\n3) dlwillson: Build G1 Dlwillson\n\taayore: I heard it was some kind of game.\n\n4) aayore: Build B1 Aayore\n\tdlwillson: :-)\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) aayore: Build B1 Aayore\n\n7) dlwillson: B Y2 Dlwillson\n\n8) aayore: Discover B1 Aayore Y3 Kinetica\n\n9) dlwillson: Discover Y1 Dlwillson B2 Sky\n\n10) aayore: Build B1 Aayore\n\taayore: I had a plan but then I took too much time off and now I don&#39;t remember it.\n\n11) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y2 Sky\nBuild Y3 Dlwillson\n\tdlwillson: Story of my life. Your screwed because I have all the yellow.\n\n12) aayore: Trade B3 Y3 Aayore\n\n13) dlwillson: Trade Y3 G3 Dlwillson\n\taayore: I have yet to fully realize the power of the sacrifice.\n\n14) aayore: Trade Y3 G3 Aayore\n\n15) dlwillson: Discover Y2 Sky G3 Forest\n\tdlwillson: Time for sleep now. Hopefully, my back is somewhat better tomorrow. :-/\n\n16) aayore: Trade B1 G1 Aayore\n\taayore: Floundering around and repeatedly doing and undoing the same moves will surely net me a win.\n\n17) dlwillson: Build Y3 Forest\n\n18) aayore: Build B1 Aayore\n\n19) dlwillson: T Y2 R2 Sky\n\taayore: I have no plan whatsoever.\n\n20) aayore: Move B1 Aayore Forest\n\n21) dlwillson: Sacrifice Y3 Forest\nMove G3 Dlwillson Sky\nMove G3 Sky Kinetica\nMove G3 Kinetica Aayore\nCatastrophe Aayore G\n\n\taayore: Do I suck so much that beating me lowered your rating?\n\tdlwillson: :-) No.\n\nHomeworlds Online (SDG# 23476)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.11, Ended: 2013.3.23\nParticipants: SimonDorfman (S), SilentTitan (N)\nWinner: SimonDorfman\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) SimonDorfman: Homeworld R1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: The Object of the game is to win.  How you win is to either destroy all the planets in the opponants homeworld or all his ships. \r\n\n\tSilentTitan: \n\tSilentTitan: I should say destroy or control all the ships in the opponants homeworld\r\n\r\nThere is only one way to destroy your opponants planets and ships. (Planets are the squares, ships are the triangles) You may use the catastrophe command as the last command in your turn anytime a system has four of the same color (planets, ships or both) This will remove those pieces from the board and put them back into the bank\n\tSilentTitan: the bank is the global reserve stash at the top of the board.  These are the total pieces we have to play with.  It is determined by N+1 of each of the four colors where N is the number of players. \r\n\r\nThink of each color as a technology. Red=Attack, Blue=Trade, Green=Build, Yellow=Move. That means that currently in your homeworld you may attack, trade or build. If you build you may only build the color ship you already have in the system. In this case you may only build Green. (this is why trade is useful).  \n\tSilentTitan: since neither of us can move the first action will be to build another green ship.  When you build you have to build from smallest to largest avaliabe in the bank for the color you are building.  Since there are G1&#39;s in the bank, that is what we&#39;ll have to choose. \n\n4) SimonDorfman: Build G1 Simondorfman\n\tSilentTitan: the command I used was &quot;Build g1 silenttitan&quot; the name of your homeworld is your superduper username. we&#39;ll be able to name the other systems as we discover them.\n\tSilentTitan: in binary homeworlds command mirroring is fairly common for the first few turns\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\tSilentTitan: Now since neither of us can move. Time to trade out the g1 for a y1\n\n6) SimonDorfman: Trade G1 Y1 Simondorfman\n\n7) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: Ok... Now you have the option of building another green or another yellow ship. However, building a yellow ship would use up the last y1 and allow the next player to build a y2.  the big deal about a y2 is the idea of sacrifice.  When you sacrifice you get however many actions there are pips on the piece you sacrificed. So in the case of a y2 you would get two move actions, which you can use together on the same ship or spread it out. \n\tSilentTitan: OR you can move out into the universe and discover a new world.  When you discover you have to discover a world that is not the size of the world you are discovering from.  so my home world has a three-pip and a two-pip that means I can only discover out to a one-pip world.  However, I&#39;ll opt for the build \n\n8) SimonDorfman: Build G1 Simondorfman\n\tSilentTitan: Your Homeworld is comprised of a One-Pip and Two-Pip world so you have to discover a Three-Pip world when you do decide to move. \n\n9) SilentTitan: Discover G1 Silenttitan B1 Sol\n\n10) SimonDorfman: Discover G1 Simondorfman Y3 Willywonka\n\tSilentTitan: Green is a great color to go discovering with. because where ever you go you&#39;ll be able to build another. So discovering a yellow (move) or Blue(Trade) planet are good because you&#39;d be able to trade or move your new piece quickly.\n\n11) SilentTitan: Build G1 Sol\n\n12) SimonDorfman: Build G2 Willywonka\n\tSimonDorfman: what causes systems to be connected? when I try &quot;move g1 willywonka silenttitan&quot; it says &quot;These systems are not connected.&quot;\n\n13) SilentTitan: Build G2 Silenttitan\n\tSilentTitan: correct... you can only move to a system that does NOT share a same size star.  So from a 3-Pip you can only move to a 1-pip or 2-pip. Which is why WillyWonka is connected to your homeworld. \n\n14) SimonDorfman: Discover G1 Willywonka B1 Oompaloompa\n\n\nHomeworlds Online (SDG# 23458)\nVariants: &quot;Unrated&quot;\nStarted: 2013.3.14, Ended: 2013.9.16\nParticipants: slothbear (S), Leonard_Daniels (N)\nWinner: Leonard_Daniels\n\n1) Leonard_Daniels: Homeworld B1 Y2 G3\n\tslothbear: I&#39;ve only played a couple of times, and last time was a year ago... so I hope we&#39;re a reasonable un-challenge for each other. heh.\n\n2) slothbear: Homeworld B3 R1 G3\n\tLeonard_Daniels: Excellent.  This is probably going to be a frustrating match for any spectators, as we keep missing obvious moves.\n\n3) Leonard_Daniels: Build G1 Leonard_daniels\n\tLeonard_Daniels: How do I refer to my homeworld for the purpose of building a ship?  It keeps telling me &quot;The Homeworld system does not exist.&quot;\n\n4) slothbear: Build G1 Slothbear\n\tLeonard_Daniels: Never mind, figured it out.\n\n5) Leonard_Daniels: Discover G1 Leonard_daniels Y3 Fulford\n\n6) slothbear: Trade G1 Y1 Slothbear\n\n7) Leonard_Daniels: Build G1 Leonard_daniels\n\n8) slothbear: Build Y1 Slothbear\n\n9) Leonard_Daniels: Discover G1 Leonard_daniels B3 Acomb\n\n10) slothbear: Discover Y1 Slothbear R2 Sazila\n\n11) Leonard_Daniels: Build G1 Leonard_daniels\n\n12) slothbear: Build G2 Slothbear\n\n13) Leonard_Daniels: Build G2 Fulford\n\n14) slothbear: Move G2 Slothbear Sazila\n\tslothbear: Uhm. That&#39;s pretty and green and everything. And a catastrophe. Supernova style. Want to undo?\n\tslothbear: harumph. These messages don&#39;t get emailed. Maybe we should have emails? If you agree, you can find mine on my SDG profile page.\n\tLeonard_Daniels: Oh, damn, for some reason I thought it was five pieces that made a catastrophe.  Awfully sporting of you to point out my error there.  Thank you.\n\n15) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\tslothbear: Sorry for delay; either I&#39;ve been away or SDG has been down. I&#39;ll get back on track soon.\n\tslothbear: When is soon, you ask? It was going to be Monday, but there was a death in the family and this week was consumed. I&#39;m aiming for next Monday now. I do enjoy this game and am committed to playing, though I realize my record is spotty at the moment.\n\tLeonard_Daniels: No worries, I&#39;m in no particular hurry.  Just come back when you can.\n\n16) slothbear: Build Y1 Slothbear\n\n17) Leonard_Daniels: Move B1 Leonard_daniels Fulford\n\n18) slothbear: Trade Y1 B1 Slothbear\n\n19) Leonard_Daniels: Build B2 Fulford\n\n20) slothbear: Move B1 Slothbear Sazila\n\n21) Leonard_Daniels: Trade B1 Y1 Fulford\n\n22) slothbear: Build Y2 Sazila\n\n23) Leonard_Daniels: Move Y1 Fulford Leonard_daniels\n\n24) slothbear: Discover Y2 Sazila G3 Norad42\n\n25) Leonard_Daniels: Trade G2 R2 Fulford\n\n\tLeonard_Daniels: I&#39;ve been away from the site for quite some time, so I&#39;m quite surprised that it&#39;s not me holding this one up.  Since we both don&#39;t really seem to be here at the moment, I&#39;m going to terminate this game unrated.  Maybe we can give it another go some time when we&#39;re less busy.\n\nHomeworlds Online (SDG# 23322)\nStarted: 2013.3.15, Ended: 2013.6.24\nParticipants: Mandrel (S), MattTheSpratt (N)\nWinner: Mandrel\n\n1) MattTheSpratt: Homeworld G3 Y1 B3\n\n2) Mandrel: H Y2 B1 G3\n\tMattTheSpratt: The star system of Seth wishes you the best of luck!\n\n3) MattTheSpratt: Build B1 Mattthespratt\n\n4) Mandrel: Build G1 Mandrel\n\n5) MattTheSpratt: Discover B1 Mattthespratt Y2 Fortran\n\n6) Mandrel: T G1 B1 Mandrel\n\n7) MattTheSpratt: Build B2 Mattthespratt\n\n8) Mandrel: Build B2 Mandrel\n\n9) MattTheSpratt: Trade B2 R2 Mattthespratt\n\n10) Mandrel: Trade B1 R1 Mandrel\n\n11) MattTheSpratt: Build B1 Mattthespratt\n\n12) Mandrel: Discover B2 Mandrel G3 Master\n\n13) MattTheSpratt: Trade B1 G1 Fortran\n\n14) Mandrel: Build G1 Mandrel\n\n15) MattTheSpratt: Build G1 Fortran\n\n16) Mandrel: Build G2 Mandrel\n\n17) MattTheSpratt: Move B1 Mattthespratt Fortran\n\n18) Mandrel: Trade G2 Y2 Mandrel\n\n19) MattTheSpratt: Trade G1 R1 Fortran\n\n20) Mandrel: Move Y2 Mandrel Master\n\n21) MattTheSpratt: Build R1 Fortran\n\n22) Mandrel: Build R2 Mandrel\n\n23) MattTheSpratt: Build R2 Mattthespratt\n\n24) Mandrel: Build R3 Mandrel\n\n25) MattTheSpratt: Move G1 Fortran Master\n\n26) Mandrel: Sacrifice R1 Mandrel\nAttack G1N Master\n\n27) MattTheSpratt: Trade R1 G1 Fortran\n\n28) Mandrel: Move R2 Mandrel Master\n\n29) MattTheSpratt: Build G2 Fortran\n\tMattTheSpratt: Man I am bad at Homeworlds.\n\n30) Mandrel: Build R1 Master\n\n31) MattTheSpratt: Build R1 Fortran\n\n32) Mandrel: Build R3 Mandrel\n\n\nHomeworlds Online (SDG# 23268)\nStarted: 2013.3.17, Ended: 2013.3.17\nParticipants: ts52 (S), Elliefint (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 23545)\nStarted: 2013.3.18, Ended: 2014.4.19\nParticipants: Lurch (S), aayore (N)\nWinner: Lurch\n\n1) aayore: Homeworld G2 B1 Y3\n\n2) Lurch: Homeworld R1 B2 G3\n\n3) aayore: Build Y1 Aayore\n\n4) Lurch: Build G1 Lurch\n\n5) aayore: Discover Y1 Aayore G3 Alpha\n\n6) Lurch: Build G1 Lurch\n\n\tLurch: Have you given up?\n\nHomeworlds Online (SDG# 23537)\nStarted: 2013.3.20, Ended: 2013.4.24\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld B2 R1 G3\n\twil: Homeworld (b2, r1, g3)   what am I doing wrong, I have beentrying to start but it says no b2s\n\tts52: Ah, no (), just: h b2 r1 g3\n\n2) ts52: Homeworld R1 B3 G3\n\twil: thanx, total newbie, thanx for your patience...where do I find these instructions??\n\tts52: Instructions on SDG, or rules for Homeworld?\r\nThe different commands are listed at the top. Technically this is binary homeworlds, which is described here: http://www.wunderland.com/WTS/Andy/Games/ILoveHomeworlds.html#BinaryHomeworlds and from there you can find the link to the official rules as well.\n\n3) wil: Build G1 Wil\n\tts52: Also, I&#39;m happy to answer any questions, but SDG doesn&#39;t email me when there&#39;s a new comment. So if you want to ask a question, and get my attention, leave a comment, then make a move and undo it. That way I get email. :)\n\n4) ts52: Build G1 Ts52\n\twil: thx...still totaly confused...that nomenclature listed doesn&#39;t work... the short hand is what  was getting me...  like this one...adding one small green ship...  I did so many things I forgot what worked...is my star system called wil?   or N?  and how wil I name a new one when it is time?\r\n\n\twil: if you can cut and paste your commands into a note, I&#39;ll be able to see what you wrote and how they responded... I see now it says mine is the wil system..\r\n\n\tts52: Ok, I can do that. I See you figured out your homeworld is named after your username.\n\n5) wil: Trade G1 Y1 Wil\n\tts52: My first command was: h r1 b3 g3\r\nMy second command is: b g1 ts52\n\tts52: My next command will likely be: t g1 y1 ts52\n\tts52: But that depends on your next move. :)\r\n\n\twil: yeah, seems like that is a standard move eh?  getting a yellow so you can move to a new star system in the future, and then growing another green so you can work toward a rainbow fleet of choices?   Is there anywhere written &#39;opening gambits&#39; middle game scenarios, end game like chess?\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build G1 Wil\n\tts52: I&#39;m not sure how much of that is still on the web. Andy Looney wrote a lot about it, most of it is probably linked from the url I posted earlier. But you might check the SDG wiki as well.\n\n8) ts52: Build G1 Ts52\n\twil: thx, I&#39;ll check...\n\n9) wil: Trade G1 B1 Wil\n\tts52: this move: b g1 ts52\n\n10) ts52: Trade G1 B1 Ts52\n\twil: thx\n\n11) wil: Build G1 Wil\n\tts52: I think your getting the hang of it.\r\nmy move: t g1 b1 ts52\r\nSoon you&#39;re going to want to discover a new system. You do that with a command like: d b1 wil g3 big_green\n\twil: big_green is the name of the system...you just pick a name correct?\n\n12) ts52: Discover B1 Ts52 G2 Kermit\n\twil: all ok?\n\tts52: That&#39;s right, names can be anything. Sorry, lost my email reminding me it was my turn.\n\n13) wil: Build G1 Wil\n\n14) ts52: Build G1 Ts52\n\tts52: Also, be careful having 3 pieces of the same color in the same system. 4 pieces of the same color == catastrophe.\n\n15) wil: Discover G1 Wil Y3 Forttortuga\n\twil: thx, i was watchin how many moves you had to get here so I could scadaddle...\r\n\n\n16) ts52: Build G2 Ts52\n\n17) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Forttortuga\n\n18) ts52: Trade G2 Y2 Ts52\n\tts52: Nice, well done.\n\n19) wil: Trade G2 R2 Wil\n\n20) ts52: Build B1 Kermit\n\twil: thanx it was my first factory, lucky I saw the opp\n\n21) wil: Discover G1 Forttortuga B2 Stalag17\n\tts52: I&#39;m sorry I didn&#39;t.\n\n22) ts52: Build B2 Kermit\n\n23) wil: Sacrifice G3 Wil\nBuild G2 Forttortuga\nBuild G2 Stalag17\nBuild G3 Wil\n\n24) ts52: Trade B2 R2 Kermit\n\n25) wil: Trade G2 Y2 Stalag17\n\n26) ts52: Move Y2 Ts52 Kermit\n\n27) wil: Sacrifice G3 Wil\nBuild G2 Stalag17\nBuild G3 Wil\nBuild Y1 Wil\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Ts52\nBuild Y3 Ts52\n\n29) wil: Move Y2 Stalag17 Ts52\nCatastrophe Ts52 Y\n\n30) ts52: Move Y2 Kermit Ts52\n\tts52: oops, guess I should&#39;ve seen that coming. :(\n\tts52: oh, that was just a stupid typo. I meant to build the y3 in kermit. oops...\n\n31) wil: Move B1 Wil Forttortuga\n\twil: is there any way to back it up that far?\r\n\n\twil: is there any way to back it up that far?\r\n\n\tts52: I don&#39;t think so. That&#39;s ok. We&#39;ll see if I can recover. :)\n\n32) ts52: Trade B1 Y1 Kermit\n\n33) wil: Discover G1 Wil Y3 Bedrock\n\n34) ts52: Move R2 Kermit Bedrock\n\n35) wil: Discover G1 Bedrock Y2 Dryden\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Ts52\nBuild Y3 Kermit\n\n37) wil: Move Y1 Wil Forttortuga\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Bedrock\nBuild B1 Kermit\n\n39) wil: Trade G2 R2 Forttortuga\n\n40) ts52: Move R2 Bedrock Dryden\n\n41) wil: Move G1 Dryden Forttortuga\n\n42) ts52: Move G1 Ts52 Dryden\n\n43) wil: Sacrifice G3 Forttortuga\nBuild G2 Wil\nBuild G3 Forttortuga\nBuild R3 Forttortuga\n\n44) ts52: Sacrifice Y2 Ts52\nMove Y1 Kermit Forttortuga\nMove Y3 Kermit Forttortuga\nCatastrophe Forttortuga Yellow\n\n45) wil: Move R2 Wil Bedrock\n\twil: nicely done....so wish there was a time lapse review available...\n\n46) ts52: Move Y2 Ts52 Kermit\n\n47) wil: Attack R1 Bedrock\n\n48) ts52: Build R2 Dryden\n\n49) wil: Move R1 Bedrock Stalag17\n\n50) ts52: Discover R2 Dryden G3 Oscar\n\n51) wil: Build R3 Stalag17\n\n52) ts52: Build R3 Dryden\n\n53) wil: Discover G2 Wil Y3 Fortcourage\n\n54) ts52: Build R3 Oscar\n\n55) wil: Build G1 Wil\n\n56) ts52: Build Y1 Kermit\n\n57) wil: Trade R3 Y3 Stalag17\n\n58) ts52: Move R3 Dryden Fortcourage\n\n59) wil: Move G2 Fortcourage Kermit\n\n60) ts52: Sacrifice R2 Oscar\nAttack G2 Kermit\nPass\n\n61) wil: Build Y1 Stalag17\n\n62) ts52: Move G2 Kermit Fortcourage\n\twil: newbie lesson....one can sacrifice reds for an attack someplace else...\n\twil: newbie lesson....one can sacrifice reds for an attack someplace else...\n\n63) wil: Build Y2 Wil\n\tts52: Ah yes, that&#39;s an important lesson. Sorry.\n\n64) ts52: Sacrifice G2 Fortcourage\nBuild R2 Fortcourage\nBuild R3 Dryden\n\twil: Don&#39;t be sorry, i need to be ambushed, slaughtered and abused to learn..\n\n65) wil: Build G2 Stalag17\n\n66) ts52: Move Y2 Kermit Ts52\n\n67) wil: Sacrifice Y3 Stalag17\nMove R1 Stalag17 Fortcourage\nMove R2 Bedrock Stalag17\nMove R2 Stalag17 Fortcourage\nCatastrophe Fortcourage R\n\n68) ts52: Build Y3 Kermit\n\n69) wil: Trade G2 R2 Stalag17\n\n70) ts52: Build Y3 Ts52\n\twil: forgot catastrophes weren&#39;t automatic...had to back up and rewrite...\n\tts52: no problem\n\n71) wil: Sacrifice G3 Wil\nBuild G2 Stalag17\nBuild G3 Wil\nBuild Y3 Stalag17\n\twil: just lost another game....my homeworld blown up in three moves...(no, not three moves the entire game....the last three moves....I am not that bad....I hope)\n\n72) ts52: Move Y3 Kermit Oscar\n\n73) wil: Trade G2 B2 Stalag17\n\tts52: That&#39;s frustrating. You have to keep an eye out for the safety of your homeworld.\n\n74) ts52: Build G2 Dryden\n\n75) wil: Discover B2 Stalag17 R3 Tortuga\n\twil: t g2 b2 stalag17\n\n76) ts52: Move B1 Kermit Oscar\n\twil: no woner it didn&#39;t work...not supposed to post instructions in the message box.\r\n\n\twil: * wonder\n\n77) wil: Discover Y1 Wil B3 Bedrock\n\tts52: Yeah, The way these pages jump to different text boxes is weird.\n\n78) ts52: Sacrifice G2 Dryden\nBuild B1 Oscar\nBuild B3 Kermit\n\n79) wil: Trade G2 R2 Stalag17\n\n80) ts52: Move B3 Kermit Tortuga\n\n81) wil: Sacrifice Y1 Stalag17\nMove B2 Tortuga Kermit\n\n82) ts52: Sacrifice Y3 Oscar\nMove B1 Oscar Wil\nMove B1 Oscar Wil\nMove B3 Tortuga Wil\nCatastrophe Wil Blue\n\n83) wil: Sacrifice Y3 Stalag17\nMove Y2 Wil Stalag17\nMove G3 Wil Bedrock\nMove G1 Wil Bedrock\n\n\tts52: It&#39;s ok. The best way to learn and get better is to play as much as you can. :)\n\twil: and 3 red ships ready to strike with a queen yellow ready to send them....aarrrggghhhh\n\twil: aaargggghh I can kill the reds but can&#39;t use my drone propulsion to do so becuase then I get bluebirded...\n\twil: oops...can&#39;t kill the reds....hmmm is it all over?\n\twil: I am sending all my remaining ships to new galaxies where hopefully they will be able to rebuild and play again.\n\tts52: Yeah, it was all over. Thanks for the game. I&#39;d be happy to play another.\n\twil: I think that was my fifth completed game...I&#39;m gonna win one with someone some day....   How did you like my exit?\n\tts52: definitely a grandiose exit. :) \n\nHomeworlds Online (SDG# 23562)\nStarted: 2013.3.20, Ended: 2013.3.20\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 23577)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.23, Ended: 2013.5.19\nParticipants: agentofchaos (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Kaline\n\n10) agentofchaos: Discover G1 Agentofchaos Y2 Kantele\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) agentofchaos: B G2 Kantele\n\n13) MagicJohn: Move G1 Kaline Kantele\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Kantele\nBuild G3 Magicjohn\nBuild G3 Magicjohn\nCatastrophe Kantele G\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) MagicJohn: Discover G1 Magicjohn Y3 Colavito\n\n18) agentofchaos: Discover G2 Agentofchaos Y2 Dragha\n\n19) MagicJohn: Trade Y1 B1 Magicjohn\n\n20) agentofchaos: T G1 R1 Agentofchaos\n\n21) MagicJohn: Build B1 Magicjohn\n\n22) agentofchaos: Build R1 Agentofchaos\n\n23) MagicJohn: Trade G3 R3 Magicjohn\n\n24) agentofchaos: Build Y1 Agentofchaos\n\n25) MagicJohn: Move B1 Magicjohn Colavito\n\n26) agentofchaos: Move R1 Agentofchaos Dragha\n\n27) MagicJohn: Move R3 Magicjohn Colavito\n\n28) agentofchaos: Sacrifice G2 Dragha\nBuild R2 Dragha\nBuild G1 Agentofchaos\n\n29) MagicJohn: Build B2 Colavito\n\n30) agentofchaos: Build R2 Agentofchaos\n\n31) MagicJohn: Trade B2 Y2 Colavito\n\n32) agentofchaos: Trade R2 B2 Agentofchaos\n\n33) MagicJohn: Build B2 Colavito\n\n34) agentofchaos: Move B2 Agentofchaos Dragha\n\n35) MagicJohn: Build Y1 Colavito\n\n36) agentofchaos: Move Y1 Agentofchaos Dragha\n\n37) MagicJohn: Discover Y2 Colavito R2 Bunning\n\n38) agentofchaos: Build Y3 Agentofchaos\n\n39) MagicJohn: Sacrifice G1 Colavito\nBuild Y3 Bunning\n\n\nHomeworlds Online (SDG# 23507)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.24, Ended: 2013.4.12\nParticipants: SilentTitan (S), SimonDorfman (N)\nWinner: SilentTitan\n\n1) SimonDorfman: Homeworld R2 B3 G3\n\tSimonDorfman: i&#39;m not sure why our last game ended. did you resign? or run out of time? i can&#39;t say i have a grasp of this game at all, but i&#39;d like to continue to try it.\n\n2) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: sure... that was my fault the challenge is set to HARD TIME and I was the one that ran out of time.  we will try again.  \r\n\n\n3) SimonDorfman: Build G1 Simondorfman\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) SimonDorfman: Trade G3 Y3 Simondorfman\n\tSimonDorfman: I tried doing this &quot;discover g1 simondorfman r3 willywonka&quot; and got this message &quot;You do not have access to propulsion technology (YELLOW) in this sector.&quot; so i tried this &quot;build y1 simondorfman&quot; and got this message &quot;To build a new ship you must already control one of the same colour (Y).&quot;\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\tSimonDorfman: okay, i&#39;m starting to get it...\n\tSilentTitan: yep... that sounds about right\n\n7) SimonDorfman: Discover G1 Simondorfman R1 Willywonka\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) SimonDorfman: Build G1 Willywonka\n\tSimonDorfman: I feel like I need to make a spreadsheet map of how to get to your home world... Hard to do on my phone...\n\n10) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n11) SimonDorfman: Sacrifice G1 Willywonka\nBuild Y1 Simondorfman\n\tSimonDorfman: i pretty much messed this up. not sure what i should do. can&#39;t seem to think of any useful moves that i can do. any suggestions?\n\tSilentTitan: you could sacrifice a g1 in willywonka and build a y1 in simondorfman. then trade the y1 to a g1 next turn. \n\n12) SilentTitan: Build Y1 Silenttitan\n\tSimonDorfman: Thank you. I understand the sacrifice action now.\n\n13) SimonDorfman: Trade Y1 G1 Simondorfman\n\n14) SilentTitan: Build G2 Sol\n\n15) SimonDorfman: Build G2 Simondorfman\n\n16) SilentTitan: Move G1 Sol Silenttitan\n\n17) SimonDorfman: Move Y3 Simondorfman Willywonka\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Sol\n\n19) SimonDorfman: Build G3 Willywonka\n\tSimonDorfman: wow\n\n20) SilentTitan: Trade G3 Y3 Silenttitan\n\n21) SimonDorfman: Trade G1 R1 Simondorfman\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nMove G3 Sol Willywonka\nMove G3 Willywonka Simondorfman\nDiscover Y1 Silenttitan G3 Tic\n\tSilentTitan: ok.. so you are in a position that is overextended.  you do not have a Battleship (3-pip) in your homeworld and I can reach it with a battle ship by sacrificing the Y3 in my homeworld. There are considering issues like. Would I be able to take all ships in your homeworld before you&#39;d be able to remove me. Doubtful as you could just sac the G3 in willy and build two more of the ships in your homeworld build the one you just sacked back into willy and then cat green in your homeworld.  Can you see what I&#39;m talking about or should we do it as a practical exercise and start again?\n\tSimonDorfman: I&#39;m not fully understanding so I&#39;d like to play this to the end and then play again.\n\tSilentTitan: ok\n\n23) SimonDorfman: Build Y1 Willywonka\n\n24) SilentTitan: Attack G2 Simondorfman North\n\n\tSilentTitan: I was able to attack you because the &quot;planets&quot; in the system give the technology to everyone in the system.  \n\tSimonDorfman: shoot, sorry i let it run out of time. thanks for your efforts to teach me this game. i haven&#39;t really gotten it yet, but i may sit down and try to play a game in person with a friend sometime.\n\nHomeworlds Online (SDG# 23591)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.25, Ended: 2013.4.10\nParticipants: Aristos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Aristos: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Aristos: Build G1 Aristos\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Aristos: Trade G1 Y1 Aristos\n\n7) TwoShort: Build G1 Twoshort\n\n8) Aristos: Discover Y1 Aristos G1 Peek\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) Aristos: Build Y1 Peek\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Aristos: Discover Y1 Peek G2 Poke\n\n13) TwoShort: Discover G1 Yolonda Y3 Yoyodyne\n\n14) Aristos: Build Y2 Peek\n\n15) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n16) Aristos: Build Y3 Poke\n\n17) TwoShort: Build Y3 Twoshort\n\n18) Aristos: Discover Y1 Peek B3 Push\n\n19) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y3 Bluestar\n\n\nHomeworlds Online (SDG# 23590)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.28, Ended: 2013.4.16\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\twil: newbie....learning game....abuse at wil, I figure I&#39;ll learn by getting beat until I see the moves coming at me...\n\n3) wil: Build G1 Wil\n\tSilentTitan: good plan... Hint... think of the colors as technologies.  green=build, red=attack, blue=trade, yellow=move.  don&#39;t forget about sacrifice and catastrophe those are the ones that newbies get hung up on. \r\n\r\nGood Luck. \n\twil: Yeah, I think I have those 4 of one color, and sac = pips of that action, and factory... and in my mind I&#39;m looking at the star systems as mega corporations, the green as venture captialists supporting new business and bolstering old businesses...Red is Vulture Capitalists, take over/acquisition specialists, yellow is HR, in house headhunters, Blue is stock brokers....\r\n\r\nI look forward to learning from my loss.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 Y1 Wil\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 Wil\n\n8) SilentTitan: Build G1 Silenttitan\n\twil: Do you know of anyone who has written more on the strategy of this game?  Opening gambits, mid game strategy plays (I&#39;ve seen factory, bluebird, catastrohe) end game...but like when not to catastophe or how to set someone else up by enticing them to catastrophe or such?\n\n9) wil: Trade G1 B1 Wil\n\n10) SilentTitan: Trade G3 B3 Silenttitan\n\n11) wil: Build G1 Wil\n\n12) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: those are interesting questions... catastrophe are pretty much straight forward.  I was able one time to build two battleships in a system and entice my opponent to take those and thereby he missed protecting against a sac of a Y3 and a cat for the win in his home world, but it was a truly desperation move and I could not believed it worked. \n\tSilentTitan: I&#39;ve learned most of the stuff I do from losing to TwoShort or nmeme.  \n\n13) wil: Build G2 Wil\n\twil: yes losing is the way I intend to learn...thanx!\r\n\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) wil: Trade G1 R1 Wil\n\n16) SilentTitan: Trade G2 B2 Silenttitan\n\n17) wil: Discover B1 Wil Y3 Fortcourage\n\twil: sytem down two days...me just joining..thought i broke it!\r\n\n\tSilentTitan: ah... I guess I didn&#39;t know it was down for two days\r\n\n\n18) SilentTitan: Trade B2 R2 Silenttitan\n\n19) wil: Build R1 Wil\n\n20) SilentTitan: Discover B3 Silenttitan R1 Sol\n\n21) wil: Discover G2 Wil R3 Taratupa\n\n22) SilentTitan: Build R2 Silenttitan\n\n23) wil: Trade G3 Y3 Wil\n\n24) SilentTitan: Trade R2 Y2 Silenttitan\n\n25) wil: Move R1 Wil Fortcourage\n\n26) SilentTitan: Sacrifice Y1 Silenttitan\nMove B3 Sol Fortcourage\n\twil: That was a complete bonehead move on my part....I meant to move a red ship forward....so if you took that I&#39;d get a 3....but then I thought...I can keep him from getting the other one by using the red star....and now I get nothing but anihilated....\r\n \r\nhopefully a lesson learned...whilst you are over there chuckling at my stupidity.\r\n\n\n27) wil: Move B1 Fortcourage Wil\n\tSilentTitan: I&#39;ve read your post three times and I&#39;m still a bit confused as to exactly what you are talking about ..... I cannot build the R3 as I already have 3 reds in the only system I could build it in, and a fourth would invite a catastrophe.  I have to move and that will allow you to build out to a red 3 world.\n\twil: no you can&#39;t now....and again, I am just learning the system...but it appears to me in all likelihood you will be capable of building it before I....again newbie trying to make sense of it all.\n\twil: oh and yes I see how awful my original plan was which I mistakenly thwarted...if moved up and captured my ship you&#39;d then easily be able to catastrophe me!  arrrggghh\n\tSilentTitan: Then you will be able to sac the g2 and build that R3 as a ship at your leisure. I&#39;d like to prevent that from happening .. but I&#39;m not sure I can .. you are playing very well so far. \n\n28) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\tSilentTitan: Ha... fun isn&#39;t it ... I love pretzel brain\n\n29) wil: Move R1 Fortcourage Sol\n\n30) SilentTitan: Move B3 Fortcourage Sol\n\n31) wil: Move R1 Sol Taratupa\n\n32) SilentTitan: Build G1 Silenttitan\n\n33) wil: Build G2 Taratupa\n\n34) SilentTitan: Discover G1 Silenttitan B1 Sole\n\n35) wil: Discover R1 Wil G3 Forttortuga\n\n36) SilentTitan: Build G2 Sole\n\n37) wil: Move Y1 Wil Taratupa\n\n38) SilentTitan: Build G3 Silenttitan\n\n39) wil: Build Y1 Taratupa\n\n40) SilentTitan: Build G3 Sol\n\n41) wil: Build Y2 Taratupa\n\n42) SilentTitan: Trade G2 Y2 Sole\n\n43) wil: Discover Y1 Taratupa R1 Stalag17\n\n44) SilentTitan: Sacrifice Y2 Sole\nMove B3 Sol Forttortuga\nMove G3 Sol Forttortuga\n\n45) wil: Sacrifice G2 Taratupa\nBuild R2 Taratupa\nBuild R3 Forttortuga\n\n46) SilentTitan: Sacrifice R2 Silenttitan\nAttack R3 Forttortuga North\nAttack R1 Forttortuga North\n\n47) wil: Build G2 Taratupa\n\n48) SilentTitan: Sacrifice Y2 Silenttitan\nMove R1 Forttortuga Sol\nMove R1 Sol Taratupa\nCatastrophe Taratupa Red\n\n\tSilentTitan: ok... now in this case what happened here is that you had three reds in taratup two ships in a red system.  All I had to do was add a fourth red to the system and call for a catastrophe.  This destroyed the entire system and all the ships in it.  I sacrificed my y2 to give me the two moves I needed to get the r1 from forttortuga to taratupa via the sol system.  Did this make sense?\n\tSilentTitan: sorry to be clearer you had two RED ships in a RED system,  1-pip red and a two-pip red \n\twil: yeah...i didn&#39;t notice this was close enough....to bad the system doesn&#39;t allow for instant replay so I can go back and watch it happen and see what i missed...thanx for the flogging!\r\n\n\twil: yeah...i didn&#39;t notice this was close enough....to bad the system doesn&#39;t allow for instant replay so I can go back and watch it happen and see what i missed...thanx for the flogging!\r\n\n\twil: As I see it, I&#39;ve now got zero greens...can&#39;t trade for them....your goal will be to keep me locked out of them and I can&#39;t even prolong the end?\r\n\n\nHomeworlds Online (SDG# 23568)\nStarted: 2013.3.28, Ended: 2013.3.28\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n\twil: oops\r\n\n\nHomeworlds Online (SDG# 23499)\nVariants: &quot;Hard time&quot;\nStarted: 2013.3.28, Ended: 2013.3.29\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld G2 B1 R3\n\n\twil: Have just learned the game in real space... want to get beat so I can learn how to keep from getting beat. Please cut and paste the &#39;orders&#39; you submit so I can learn the short cuts and compare them to what happens.   If you wish whilst you anihilate me you may provide any info you would like to on why my move was so stupid and what would have been a better one.\n\tdlwillson: Wil, accept my challenge again, or set one up. Sorry for timing out on you; I was on vacation.\n\nHomeworlds Online (SDG# 23183)\nVariants: &quot;Unrated&quot;\nStarted: 2013.3.29, Ended: 2013.8.6\nParticipants: Leonard_Daniels (S), MattTheSpratt (W), OnePageWars (N), wil (E)\nWinner: wil\n\n1) OnePageWars: Homeworld G3 B2 Y3\n\tOnePageWars: gl hf!\n\n2) wil: Homeworld R2 B1 G3\n\n3) Leonard_Daniels: Homeworld B3 Y1 G3\n\n4) MattTheSpratt: Homeworld R3 G1 B3\n\n5) OnePageWars: Build Y1 Onepagewars\n\n6) wil: Build G1 Wil\n\n7) Leonard_Daniels: Build G1 Leonard_daniels\n\n8) MattTheSpratt: Build B1 Mattthespratt\n\n9) OnePageWars: Trade Y1 G1 Onepagewars\n\n10) wil: Trade G1 R1 Wil\n\n11) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\n12) MattTheSpratt: Trade B1 Y1 Mattthespratt\n\n13) OnePageWars: Build G1 Onepagewars\n\n14) wil: Build G1 Wil\n\n15) Leonard_Daniels: Build B1 Leonard_daniels\n\n16) MattTheSpratt: Build B1 Mattthespratt\n\n17) OnePageWars: Trade G1 R1 Onepagewars\n\n18) wil: Trade G1 B1 Wil\n\tOnePageWars: figured I didn&#39;t want to be defenseless if someone  attacked me, lol.\n\tMattTheSpratt: Aye, good point.\n\tLeonard_Daniels: Something tells me that the first conflict in this war won&#39;t involve you, OnePageWars...\n\twil: You feelin it LD?  \n\n19) Leonard_Daniels: Trade B1 R1 Leonard_daniels\n\n20) MattTheSpratt: Trade B1 G1 Mattthespratt\n\tOnePageWars: yeah, South and West are close to eachother.\n\tLeonard_Daniels: Come on, Matt, pull your finger out mate.\n\twil: Does anyone have &#39;physical&#39; connection (vs virtual/spacial) with Matt?\n\n21) OnePageWars: Build G1 Onepagewars\n\tMattTheSpratt: Massively sorry, guys.\n\twil: No worries, tis the game and the health of the battling ships that is important!  We didn&#39;t want you to lose a crew unjustly...that being said, one more infractin and and.....oh....    I&#39;d like to discuss openings and options and play....would you be interested?  If interested, would the best place to be on the forum, or maybe a google doc?\n\n22) wil: Build B1 Wil\n\n23) Leonard_Daniels: Build R1 Leonard_daniels\n\n24) MattTheSpratt: Build Y1 Mattthespratt\n\n25) OnePageWars: Trade G1 B1 Onepagewars\n\n26) wil: Trade B1 Y1 Wil\n\n27) Leonard_Daniels: Build G1 Leonard_daniels\n\n28) MattTheSpratt: Discover G1 Mattthespratt R2 Pppppppp\n\n29) wil: Build G1 Wil\n\twil: wzzup??\n\n30) Leonard_Daniels: Discover R1 Leonard_daniels Y2 Malton\n\n31) MattTheSpratt: Build G2 Pppppppp\n\n32) wil: Build G2 Wil\n\n33) Leonard_Daniels: Move G1 Leonard_daniels Malton\n\n34) Leonard_Daniels: Build G2 Malton\n\n35) wil: Discover G2 Wil Y3 Y3\n\twil: we gonna see movement?\n\n36) Leonard_Daniels: Build G2 Leonard_daniels\n\tLeonard_Daniels: Just you and me now, Wil.  May the best captain win.  I think there are now enough random elements in this game that I might actually win it.\n\n37) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Y3\n\twil: You&#39;ve got the command.....\n\n38) Leonard_Daniels: Move R1 Malton Mattthespratt\n\n39) wil: Move G3 Y3 Pppppppp\n\n40) Leonard_Daniels: Move G2 Leonard_daniels Pppppppp\nCatastrophe Pppppppp Green\n\n41) wil: Build G1 Y3\n\n42) Leonard_Daniels: Attack Y1W Mattthespratt\n\n43) wil: Discover G2 Y3 Y1 Y1\n\n\twil: hellllloooooooooo\n\twil: I guess we&#39;ve had enough?\r\n\n\nHomeworlds Online (SDG# 23211)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.2, Ended: 2013.4.9\nParticipants: sou (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) sou: Homeworld R3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) sou: Build G1 Sou\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n\nHomeworlds Online (SDG# 23620)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.2, Ended: 2013.4.9\nParticipants: sou (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) sou: Homeworld B2 Y1 G3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) sou: Build G1 Sou\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) sou: Trade G1 R1 Sou\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) sou: Build R1 Sou\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n\nHomeworlds Online (SDG# 23689)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.2, Ended: 2013.5.6\nParticipants: headphoned (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) headphoned: Homeworld B1 Y3 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) headphoned: Build G1 Headphoned\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n6) headphoned: Discover G1 Headphoned B2 Omicron\n\n7) Broccoli_Commander: Build G1 Blueberry\n\n8) headphoned: Build G2 Omicron\n\n9) Broccoli_Commander: Build G2 Blueberry\n\n10) headphoned: Trade G1 Y1 Omicron\n\n11) Broccoli_Commander: Trade G1 Y1 Blueberry\n\n12) headphoned: Build Y2 Omicron\n\n13) Broccoli_Commander: Build Y2 Blueberry\n\n14) headphoned: Build G1 Headphoned\n\n15) Broccoli_Commander: Discover Y2 Blueberry B2 Muffin\n\n16) headphoned: Sacrifice Y2 Omicron\nMove Y1 Omicron Blueberry\nMove Y1 Blueberry Broccoli_commander\n\n17) Broccoli_Commander: Build Y2 Blueberry\n\n18) headphoned: Trade Y1 B1 Broccoli_commander\n\n19) Broccoli_Commander: Trade G1 R1 Blueberry\n\n20) headphoned: Sacrifice G2 Omicron\nBuild B1 Broccoli_commander\nBuild B2 Broccoli_commander\nCatastrophe Broccoli_commander Blue\n\n21) Broccoli_Commander: Build G1 Broccoli_commander\n\n22) headphoned: Move G1 Headphoned Muffin\n\n23) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G3 Broccoli_commander Muffin\nMove G3 Muffin Headphoned\n\n24) headphoned: Trade G3 R3 Headphoned\n\n25) Broccoli_Commander: Sacrifice R1 Blueberry\nAttack R3 Headphoned\n\n\nHomeworlds Online (SDG# 23623)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.2, Ended: 2013.4.3\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 23691)\nStarted: 2013.4.2, Ended: 2013.4.29\nParticipants: netskaven (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B1 G3\n\n2) netskaven: Homeworld G2 B3 Y3\n\twil: I am new as well...good luck!\n\n3) wil: Build G1 Wil\n\tnetskaven: good luck!\n\n4) netskaven: Build Y1 Netskaven\n\n5) wil: Build G1 Wil\n\n6) netskaven: Trade Y1 R1 Netskaven\n\n7) wil: Trade G1 R1 Wil\n\n8) netskaven: Build Y1 Netskaven\n\n9) wil: Build G1 Wil\n\n10) netskaven: Trade Y1 B1 Netskaven\n\n11) wil: Trade G1 B1 Wil\n\n12) netskaven: Build Y1 Netskaven\n\n13) wil: Trade G1 Y1 Wil\n\n14) netskaven: Trade Y1 G1 Netskaven\n\n15) wil: Build G1 Wil\n\n16) netskaven: Discover G1 Netskaven Y1 Neworld\n\n17) wil: Build B2 Wil\n\n18) netskaven: Move R1 Netskaven Neworld\n\n19) wil: Discover G1 Wil B2 Forttortuga\n\n20) netskaven: Move R1 Neworld Forttortuga\n\n21) wil: Move B2 Wil Forttortuga\n\n22) netskaven: Attack G1 Forttortuga\n\n23) wil: Sacrifice R1 Wil\nAttack R1 Forttortuga\n\n24) netskaven: Build Y1 Netskaven\n\n25) wil: Attack G1 Forttortuga\n\n26) netskaven: Build B2 Netskaven\n\n27) wil: Build Y2 Wil\n\n28) netskaven: Trade B2 R2 Netskaven\n\n29) wil: Build R1 Forttortuga\n\n30) netskaven: Build Y2 Netskaven\n\n31) wil: Trade B2 R2 Forttortuga\n\n32) netskaven: Trade Y2 R2 Netskaven\n\n33) wil: Move Y1 Wil Forttortuga\n\n34) netskaven: Move B1 Netskaven Neworld\n\n35) wil: Move R2 Forttortuga Neworld\n\n36) netskaven: Discover G1 Neworld Y2 Otherlimit\n\n37) wil: Attack B1 Neworld\n\n38) netskaven: Trade R2 B2 Netskaven\n\n39) wil: Build Y2 Forttortuga\n\n40) netskaven: Build Y3 Netskaven\n\n41) wil: Build Y3 Wil\n\n42) netskaven: Discover R2 Netskaven G1 Spc1889\n\n43) wil: Sacrifice Y2 Wil\nMove Y1 Forttortuga Neworld\nMove Y1 Neworld Netskaven\nCatastrophe Netskaven Y\n\n44) netskaven: Build B2 Netskaven\n\n45) wil: Move B1 Neworld Netskaven\nCatastrophe Netskaven B\n\n\twil: Thank you for the game, I&#39;m slowly learning how to see trouble brewing and to take advantage of opportunity when it strikes...   \r\n\r\nI look forward to playing another game, thanx again.\n\nHomeworlds Online (SDG# 23700)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.3, Ended: 2013.5.1\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y2 G3 Dlwillson\n\n2) wil: Homeworld B3 R1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) wil: Build G1 Wil\n\n7) dlwillson: B R1 Dlwillson\n\n8) wil: Trade G3 R3 Wil\n\n9) dlwillson: B R2 Dlwillson\n\n10) wil: Build R2 Wil\n\n11) dlwillson: T R2 Y2 Dlwillson\n\n12) wil: Trade G1 Y1 Wil\n\n13) dlwillson: Discover R1 Dlwillson G1 Forest\n\n14) wil: Discover R2 Wil Y2 Forttortuga\n\n15) dlwillson: B R2 Dlwillson\n\n16) wil: Build G1 Wil\n\n17) dlwillson: B G2 Dlwillson\n\n18) wil: Build G2 Wil\n\n19) dlwillson: Discover G2 Dlwillson B1 Sky\n\n20) wil: Trade G1 B1 Wil\n\n21) dlwillson: B R2 Forest\n\n22) wil: Move G1 Wil Forttortuga\n\n23) dlwillson: B R3 Dlwillson\n\n24) wil: Build R3 Forttortuga\n\n25) dlwillson: S Y2 Dlwillson\nM R1 Forest Forttortuga\nM R2 Forest Forttortuga\nC Forttortuga R\n\n26) wil: Build Y1 Wil\n\n27) dlwillson: T R3 Y3 Dlwillson\n\n28) wil: Build G1 Forttortuga\n\n29) dlwillson: M Y3 Dlwillson Sky\n\n30) wil: Discover Y1 Wil G2 Dryden\n\n31) dlwillson: B G1 Dlwillson\n\n32) wil: Build G3 Wil\n\n33) dlwillson: Build G3 Sky\n\n34) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild B1 Wil\n\n35) dlwillson: Trade G2 B2 Sky\n\n36) wil: Discover B1 Wil G2 Stalag17\n\n37) dlwillson: Move B2 Sky Stalag17\n\n38) wil: Move R3 Wil Stalag17\n\n39) dlwillson: B B2 Stalag17\n\n40) wil: Attack B2 Stalag17\n\n41) dlwillson: Build B2 Stalag17\nCatastrophe Stalag17 B\n\n42) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Stalag17\nBuild R2 Stalag17\n\twil: interesting tactic....\n\n43) dlwillson: Sacrifice Y3 Sky\nMove R1 Dlwillson Sky\nMove R1 Sky Stalag17\nDiscover G3 Sky B2 Sea\nCatastrophe Stalag17 R\n\tdlwillson: meh... It goes badly for me. I&#39;m not being nearly aggressive enough.\n\n44) wil: Sacrifice G3 Wil\nBuild G2 Forttortuga\nBuild G3 Wil\nBuild Y2 Wil\n\twil: don&#39;t go easy on me....i can&#39;t learn that way....\n\n45) dlwillson: T G3 Y3 Sea\n\tdlwillson: I&#39;m not going easy on you, I&#39;m having a hard time finding moves with impact. ie: You&#39;re playing very well, and not giving me easy ways to hurt you.\n\n46) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 Dryden\nBuild Y3 Dryden\n\n47) dlwillson: D R2 Dlwillson B1 Sky\n\tdlwillson: Actually, I need to consider the situation a moment.\n\tdlwillson: And since I&#39;m at work, it will have to wait...\n\twil: no worries\n\n48) wil: Sacrifice Y3 Dryden\nDiscover G1 Forttortuga R1 Bedrock\nMove G1 Forttortuga Bedrock\nMove Y2 Wil Forttortuga\n\tdlwillson: Let&#39;s see how that works out...\n\twil: I&#39;ll give you choices!!\n\n49) dlwillson: S G1 Dlwillson\nB Y3 Sea\n\tdlwillson: Impressive!\n\n50) wil: Sacrifice Y2 Forttortuga\nMove Y1 Wil Sea\nMove Y1 Wil Sea\nCatastrophe Sea Y\n\twil: You didn&#39;t like the choices I gave you???\n\n\tdlwillson: Good game, Wil. Very well played.\n\twil: I almost went to build more greens for the attack...It is an awful interesting learning curve to this game, there are a lot of moving parts....thanks for playing....are you up for another one?\n\nHomeworlds Online (SDG# 23780)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.13, Ended: 2013.6.27\nParticipants: AdamBadura (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) Remneb: Build G1 Remneb\n\tAdamBadura: Sorry for the delay. I forgot about the game!\n\tRemneb: It&#39;s ok. Have a good game.\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) AdamBadura: Trade Y1 R1 Adambadura\n\n7) Remneb: Build G1 Remneb\n\n8) AdamBadura: Build R1 Adambadura\n\n9) Remneb: Build Y1 Remneb\n\n10) AdamBadura: Build R2 Adambadura\n\n11) Remneb: Build G1 Remneb\n\n12) AdamBadura: Discover R1 Adambadura G1 Shipyard\n\n13) Remneb: Build G2 Remneb\n\n14) AdamBadura: Build R2 Shipyard\n\n15) Remneb: Trade G2 R2 Remneb\n\n16) AdamBadura: Build R3 Adambadura\n\n17) Remneb: Discover G1 Remneb Y3 Zeta\n\n18) AdamBadura: Discover R3 Adambadura Y1 Onmyway\n\n19) Remneb: Discover R2 Remneb B3 Jordan\n\n20) AdamBadura: Move R3 Onmyway Jordan\n\n21) Remneb: Sacrifice Y1 Remneb\nMove R2 Jordan Remneb\n\n22) AdamBadura: Build R3 Adambadura\n\n23) Remneb: Build R3 Remneb\n\n24) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Shipyard Jordan\nMove R1 Jordan Remneb\nMove R3 Jordan Shipyard\nCatastrophe Remneb R\n\n25) Remneb: Trade G1 R1 Remneb\n\n26) AdamBadura: Trade R1 Y1 Adambadura\n\n27) Remneb: Build R1 Remneb\n\n28) AdamBadura: Build Y1 Adambadura\n\n29) Remneb: Build Y2 Remneb\n\n30) AdamBadura: Move Y1 Adambadura Shipyard\n\n31) Remneb: Move R1 Remneb Shipyard\n\n32) AdamBadura: Move R3 Shipyard Zeta\n\n33) Remneb: Attack Y1 Shipyard\n\n\n34) AdamBadura: Attack R1 Shipyard\n\n35) Remneb: Sacrifice Y2 Remneb\nDiscover Y1 Shipyard Y2 Aldan\nMove G1 Zeta Aldan\n\n36) AdamBadura: Build Y2 Adambadura\n\n37) Remneb: Discover Y1 Aldan G1 Robar\n\n38) AdamBadura: Move Y1 Adambadura Shipyard\n\n39) Remneb: Sacrifice G3 Remneb\nBuild Y2 Robar\nBuild Y3 Remneb\nBuild G2 Aldan\n\n40) AdamBadura: Build Y3 Shipyard\n\n41) Remneb: Build G2 Aldan\n\n42) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Shipyard Remneb\nMove Y1 Shipyard Remneb\nCatastrophe Remneb Y\n\n43) Remneb: Sacrifice Y2 Robar\nMove G1 Aldan Zeta\nMove G1 Zeta Remneb\n\n44) AdamBadura: Trade R2 Y2 Adambadura\n\n45) Remneb: Build G2 Remneb\n\tAdamBadura: I didn&#39;t thought about that. Shouldn&#39;t have rush so much. :(\n\tRemneb: It&#39;s my last stand anyway :)\n\n46) AdamBadura: Trade R3 G3 Adambadura\n\n47) Remneb: Sacrifice G2 Remneb\nBuild G2 Aldan\nBuild G3 Remneb\n\n48) AdamBadura: Build Y1 Adambadura\n\n49) Remneb: Move G2 Aldan Robar\n\n50) AdamBadura: Move Y1 Adambadura Shipyard\n\n51) Remneb: Trade G3 Y3 Remneb\n\n52) AdamBadura: Move R3 Zeta Aldan\n\n53) Remneb: Build G3 Remneb\n\n54) AdamBadura: Attack G2 Aldan\n\n55) Remneb: Sacrifice Y3 Remneb\nMove G2 Aldan Robar\nMove G2 Robar Adambadura\nMove G2 Robar Adambadura\nCatastrophe Adambadura G\n\n56) AdamBadura: Trade Y2 G2 Adambadura\n\n57) Remneb: Sacrifice G3 Remneb\nBuild G2 Remneb\nBuild G3 Remneb\nBuild Y1 Robar\n\n58) AdamBadura: Build G3 Aldan\n\n59) Remneb: Trade G2 Y2 Remneb\n\n60) AdamBadura: Sacrifice G3 Aldan\nBuild G2 Aldan\nBuild G3 Adambadura\nBuild Y2 Shipyard\n\n61) Remneb: Move G1 Remneb Robar\n\n62) AdamBadura: Discover Y2 Shipyard G3 Drydocks\n\n63) Remneb: Build Y3 Remneb\n\n64) AdamBadura: Build Y3 Shipyard\n\n65) Remneb: Sacrifice Y3 Remneb\nMove G1 Robar Adambadura\nMove G3 Remneb Shipyard\nMove G3 Shipyard Adambadura\nCatastrophe Adambadura G\n\n\tRemneb: Thanks for the game.\n\tAdamBadura: How?! How I didn&#39;t sow that?! Obvously way to rare moves (on my side) where bad for me... :( Congratulations!\n\nHomeworlds Online (SDG# 23755)\nStarted: 2013.4.13, Ended: 2013.4.25\nParticipants: wil (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 R3 G3\n\n2) wil: Homeworld B2 R1 G3\n\tzoltar: Greetings, Earthling.\n\n3) zoltar: Build G1 Zoltar\n\twil: newbie...learning by losing...\n\tzoltar: b g1 zoltar\n\n4) wil: Build G1 Wil\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) wil: Trade G1 Y1 Wil\n\n7) zoltar: Build G1 Zoltar\n\n8) wil: Build G1 Wil\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) wil: Trade G1 R1 Wil\n\n11) zoltar: Build R2 Zoltar\n\n12) wil: Build R2 Wil\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) wil: Trade R2 B2 Wil\n\n15) zoltar: Discover B1 Zoltar G2 Emeraldforest\n\n16) wil: Build G1 Wil\n\n17) zoltar: Build B1 Emeraldforest\n\n18) wil: Build G1 Wil\n\n19) zoltar: Trade B1 Y1 Emeraldforest\n\n20) wil: Build Y2 Wil\n\n21) zoltar: Build Y2 Emeraldforest\n\n22) wil: Discover G1 Wil Y3 Fortcourage\n\n23) zoltar: Discover Y2 Emeraldforest B3 Blueball\n\n24) wil: Discover Y1 Wil G3 Stalag17\n\n25) zoltar: Move R2 Zoltar Emeraldforest\n\n26) wil: Build Y2 Stalag17\n\n27) zoltar: Move R2 Emeraldforest Fortcourage\n\n28) wil: Discover G1 Fortcourage B2 Dryden\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild B1 Emeraldforest\nBuild Y3 Blueball\nBuild Y3 Zoltar\n\n30) wil: Discover B2 Wil G3 Taratupa\n\n31) zoltar: Move B1 Emeraldforest Taratupa\n\n32) wil: Trade B2 R2 Taratupa\n\n33) zoltar: Build B2 Taratupa\n\twil: oh excellent move...again...a learning curve of not seeing how to capitalize on something other than a factory...thank you!\r\n\n\n34) wil: Attack B2 Taratupa\n\n35) zoltar: Build B3 Emeraldforest\n\n36) wil: Build B3 Taratupa\n\n37) zoltar: Move B1 Emeraldforest Taratupa\nCatastrophe Taratupa B\n\n38) wil: Build R1 Taratupa\n\n39) zoltar: Build B1 Emeraldforest\n\n40) wil: Build R2 Taratupa\n\n41) zoltar: Trade B3 R3 Emeraldforest\n\n42) wil: Build G1 Dryden\n\twil: interesting how these play out....  like a little slate cleaning...  \n\n43) zoltar: Trade Y2 G2 Blueball\n\n44) wil: Build Y2 Wil\n\n45) zoltar: Build G2 Blueball\n\n46) wil: Trade G1 B1 Dryden\n\n47) zoltar: Sacrifice G2 Blueball\nBuild G1 Blueball\nBuild R3 Fortcourage\n\n48) wil: Sacrifice Y2 Wil\nMove Y2 Stalag17 Dryden\nMove Y1 Stalag17 Dryden\n\n49) zoltar: Trade Y3 G3 Zoltar\n\n50) wil: Build G2 Dryden\n\n51) zoltar: Sacrifice G2 Blueball\nBuild Y2 Blueball\nBuild Y3 Emeraldforest\n\n52) wil: Move Y1 Dryden Taratupa\n\tzoltar: I was expecting the same Y2 sac, but for you to send one of your yellow ships not to Dryden, but right into my homeworld. This move also threatens checkmate, but moving one yellow ship twice right into my homeworld would have been much stronger than moving both ships one step away. I could not capture the ship or else you then sac your second y2 and send the other yellow ship in and win. This is still a good move, but now I have many more options to defend.\n\n53) zoltar: Build G2 Blueball\n\twil: thank you for the lesson!!!\n\n54) wil: Move R2 Taratupa Dryden\n\twil: I see what you are saying....you could have still changed yes?  Or left with one ship...   to ancy....still waaaaaaayyyy green....\n\n55) zoltar: Sacrifice Y3 Emeraldforest\nMove Y3 Blueball Wil\nMove G2 Blueball Wil\nMove G1 Blueball Wil\nCatastrophe Wil G\n\n56) wil: Build Y3 Taratupa\n\n57) zoltar: Sacrifice R2 Fortcourage\nAttack R1 Wil\nAttack Y2 Wil\n\n\tzoltar: The Zoltarian Empire has achieved a peaceful liberation of citizenz who were being held against their Wil. \n\twil: We tried to escape annihilation by your occupying forces but the system wouldn&#39;t let us....thank you so much for the abuse....eventualy I&#39;ll start to see how the hell this all works\n\nHomeworlds Online (SDG# 23624)\nStarted: 2013.4.13, Ended: 2013.7.24\nParticipants: Nupanick (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Nupanick: Homeworld B2 R3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Nupanick: Build G1 Nupanick\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) Nupanick: Trade G3 Y3 Nupanick\n\n7) ts52: Build G1 Ts52\n\n8) Nupanick: Build G2 Nupanick\n\tNupanick: Whoops, forgot to check my notes... thought I was playing a different table.\n\n9) ts52: Build G2 Grover\n\tts52: no worries\n\n10) Nupanick: Discover G1 Nupanick B1 Damogran\n\n11) ts52: Trade G1 Y1 Grover\n\n12) Nupanick: Build G1 Damogran\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Grover\n\n14) Nupanick: Build G3 Nupanick\n\n15) ts52: Trade G2 R2 Grover\n\tNupanick: Ooh, so that&#39;s how Factory works. Wasn&#39;t expecting that!\n\n16) Nupanick: Trade G1 Y1 Damogran\n\n17) ts52: Move R2 Grover Damogran\n\tts52: Yeah, factory is pretty handy.\n\n18) Nupanick: Move G1 Damogran Grover\n\n19) ts52: Move G3 Grover Damogran\n\n20) Nupanick: Sacrifice Y1 Damogran\nMove G1 Grover Ts52\n\n21) ts52: Trade G3 R3 Ts52\n\n22) Nupanick: Discover G2 Nupanick B1 Cerulean\n\n23) ts52: Attack G1 Ts52\n\n24) Nupanick: Build G1 Cerulean\n\n25) ts52: Build R1 Damogran\n\n26) Nupanick: Trade G1 Y1 Cerulean\n\n27) ts52: Build Y2 Grover\n\n28) Nupanick: Build Y2 Nupanick\n\n29) ts52: Build G1 Damogran\n\n30) Nupanick: Build Y2 Cerulean\n\n31) ts52: Move Y1 Grover Damogran\n\n32) Nupanick: Move Y1 Cerulean Grover\n\n33) ts52: Sacrifice G2 Grover\nBuild Y3 Grover\nBuild Y3 Damogran\n\n34) Nupanick: Move Y2 Cerulean Grover\nCatastrophe Grover Yellow\n\n35) ts52: Build R1 Damogran\n\tNupanick: ...darn. I basically have to do this now though.\n\n36) Nupanick: Build G2 Cerulean\n\n37) ts52: Discover G1 Ts52 B3 Grover\n\tNupanick: this puts you WAY in the lead by my estimates... good luck!\n\n38) Nupanick: Trade G2 Y2 Cerulean\n\n39) ts52: Build G2 Grover\n\n40) Nupanick: Build G2 Nupanick\n\n41) ts52: Build G3 Ts52\n\n\nHomeworlds Online (SDG# 23787)\nStarted: 2013.4.13, Ended: 2013.5.20\nParticipants: Nupanick (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) Nupanick: Homeworld B2 G3 Y3\n\tNupanick: Woo, homeworlds! It&#39;s been too long~\n\n3) wil: Build G1 Wil\n\n4) Nupanick: Build Y1 Nupanick\n\twil: I&#39;m a newbie and am looking forward to learning...\r\n\n\tNupanick: I assume you&#39;ve done some research though, since you&#39;re starting out with Banker?\n\n5) wil: Trade G1 Y1 Wil\n\n6) Nupanick: Trade Y1 G1 Nupanick\n\n7) wil: Build G1 Wil\n\n8) Nupanick: Build Y1 Nupanick\n\n9) wil: Trade G1 B1 Wil\n\n10) Nupanick: Discover Y1 Nupanick G1 Pitstop\n\tNupanick: Ooh, nice. Wasn&#39;t expecting you to trade into blue so early. Hmm.\n\n11) wil: Build B1 Wil\n\tNupanick: my scout decides to avoid speculating in the blue economy and instead takes a detour to a lone maintenance station.\n\n12) Nupanick: Build Y1 Pitstop\n\twil:  I see....well blue is cool...\r\n\n\tNupanick: Oh, no, I have nothing wrong with blue, in fact I would have liked to build into it, but I just realized that if I did I&#39;d be giving you the first medium. Sorry for the confusion!\n\n13) wil: Discover B1 Wil G3 Fortcourage\n\n14) Nupanick: Build Y2 Pitstop\n\n15) wil: Build Y2 Wil\n\n16) Nupanick: Discover Y1 Pitstop B3 Coruscant\n\n17) wil: Build B2 Wil\n\n18) Nupanick: Build Y2 Nupanick\n\tNupanick: Reminder: overpopulation occurs when there are four pieces of the same color in the same place. That&#39;s &quot;pieces,&quot; not &quot;ships.&quot; Three blue ships and a blue star is enough to call a catastrophe.\n\n19) wil: Trade B2 R2 Wil\n\twil: yeah thanx....I&#39;m thinking i can only catastrophe myself...and I&#39;ll be buildin stars soon...\r\n\n\n20) Nupanick: Trade Y2 G2 Nupanick\n\n21) wil: Move R2 Wil Coruscant\n\n22) Nupanick: Discover Y1 Coruscant B2 Aislefive\n\n23) wil: Build G1 Wil\n\n24) Nupanick: Move Y2 Pitstop Aislefive\n\n25) wil: Build B2 Fortcourage\n\n26) Nupanick: Build Y2 Pitstop\n\n27) wil: Build B3 Fortcourage\n\n28) Nupanick: Trade Y2 G2 Aislefive\n\n29) wil: Trade B3 Y3 Fortcourage\n\n30) Nupanick: Trade G1 R1 Nupanick\n\n31) wil: Build B3 Wil\n\n32) Nupanick: Build Y2 Pitstop\n\twil: I&#39;m gonna get you to fire that scout!\n\n33) wil: Build Y3 Fortcourage\n\n34) Nupanick: Sacrifice Y2 Pitstop\nMove Y2 Pitstop Fortcourage\nMove Y1 Pitstop Fortcourage\nCatastrophe Fortcourage Yellow\n\twil: My bad, don&#39;t fire him....he&#39;s a triple agent...\n\n35) wil: Build B3 Fortcourage\n\tNupanick: A suicide bomber, actually &gt;:)\n\n36) Nupanick: Build Y1 Aislefive\n\twil: nah, he came back to the fold, his mission was done, and will soon be on a new assignment.\n\tNupanick: Argh, that gives you a monopoly on Blue. Gotta break that up somehow.\n\n37) wil: Trade B3 Y3 Fortcourage\n\n38) Nupanick: Discover G2 Aislefive B3 Catplanet\n\n39) wil: Build Y2 Fortcourage\n\n40) Nupanick: Move Y1 Aislefive Catplanet\n\n41) wil: Sacrifice Y2 Wil\nDiscover Y2 Fortcourage G1 Bedrock\nMove G1 Wil Coruscant\n\n\twil: This game showed me the value of cornering blue...  every game teaches me either something to never try again, watch out for, or something to try again...quite the learning curve...\n\tNupanick: Why&#39;d you quit? You were doing really well.\n\twil: it said you resigned??\n\nHomeworlds Online (SDG# 23786)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.14, Ended: 2013.4.21\nParticipants: zoltar (S), goulo (N)\nWinner: zoltar\n\n1) goulo: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tzoltar: hi!\n\n4) zoltar: Build G1 Zoltar\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goulo: Build G1 Goulo\n\n8) zoltar: Build G1 Zoltar\n\n9) goulo: Trade G1 R1 Goulo\n\tgoulo: trade g1 r1 goulo\n\n10) zoltar: Trade G1 R1 Zoltar\n\tgoulo: hmm, strangely, it works better if the order is typed above instead of in the comment section. :P\n\tzoltar: yes, I&#39;ve made that mistake as well.\n\n11) goulo: Build R2 Goulo\n\n12) zoltar: Build R2 Zoltar\n\n13) goulo: Trade R1 G1 Goulo\n\n14) zoltar: Build G1 Zoltar\n\n15) goulo: Discover G1 Goulo Y1 Poleneto\n\n16) zoltar: Discover G1 Zoltar Y3 Oldyeller\n\n17) goulo: Build Y2 Goulo\n\n18) zoltar: Build Y2 Zoltar\n\n19) goulo: Move R2 Goulo Poleneto\n\n20) zoltar: Move R2 Zoltar Oldyeller\n\n21) goulo: Build G1 Goulo\n\n22) zoltar: Build G2 Zoltar\n\n23) goulo: Build G2 Goulo\n\n24) zoltar: Sacrifice Y2 Zoltar\nMove G1 Oldyeller Poleneto\nMove G1 Poleneto Goulo\nCatastrophe Goulo G\n\n25) goulo: Trade Y2 G2 Goulo\n\tgoulo: Hmm, well that was a big blunder by me...\n\n26) zoltar: Build Y2 Zoltar\n\tzoltar: Yes, putting three of one color together\n\n27) goulo: Build Y2 Goulo\n\n28) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n29) goulo: Move Y1 Goulo Poleneto\n\n30) zoltar: Move R1 Zoltar Greengiant\n\n31) goulo: Discover G1 Poleneto Y3 Polenego\n\n32) zoltar: Move G2 Zoltar Polenego\n\n33) goulo: Build G1 Polenego\n\n34) zoltar: Sacrifice G2 Polenego\nBuild Y2 Zoltar\nBuild Y3 Greengiant\n\n\tgoulo: Thanks for the game. I am way too rusty and played way too carelessly... :/\n\tzoltar: gg -- yeah, I was going to sac a y2 and move the y3 into your homeworld next turn, which would be close to checkmate.\n\nHomeworlds Online (SDG# 23788)\nStarted: 2013.4.18, Ended: 2013.4.18\nParticipants: wil (S), rentabuddha (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 23688)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.19, Ended: 2013.4.30\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 R1 Wil\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 Wil\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) wil: Build G1 Wil\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) wil: Trade G3 Y3 Wil\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n13) wil: Build Y2 Wil\n\n14) SilentTitan: Discover Y1 Silenttitan B1 Soul\n\n15) wil: Build G2 Wil\n\n16) SilentTitan: Build Y2 Sol\n\n17) wil: Discover G1 Wil Y3 Fortcourage\n\n18) SilentTitan: Build G2 Silenttitan\n\n19) wil: Build G2 Wil\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Silenttitan\nBuild G3 Silenttitan\n\n21) wil: Trade G1 B1 Wil\n\n22) SilentTitan: Trade Y2 R2 Soul\n\n23) wil: Build G1 Wil\n\n24) SilentTitan: Move G2 Silenttitan Soul\n\n25) wil: Build G3 Fortcourage\n\n26) SilentTitan: Build G3 Soul\n\n27) wil: Build B1 Wil\n\n28) SilentTitan: Trade G2 B2 Soul\n\n29) wil: Discover G2 Wil R3 Tortuga\n\n30) SilentTitan: Sacrifice Y2 Sol\nMove B2 Soul Tortuga\nMove B2 Tortuga Wil\nCatastrophe Wil Blue\n\n31) wil: Move Y2 Wil Tortuga\n\n32) SilentTitan: Build G2 Silenttitan\n\n33) wil: Sacrifice G3 Fortcourage\nBuild G3 Fortcourage\nBuild Y2 Wil\nBuild Y2 Tortuga\n\n34) SilentTitan: Trade Y1 R1 Silenttitan\n\n35) wil: Sacrifice Y2 Tortuga\nMove G1 Wil Silenttitan\nMove G2 Wil Silenttitan\nCatastrophe Silenttitan G\n\n36) SilentTitan: Move G3 Soul Silenttitan\n\n37) wil: Build G1 Tortuga\n\n38) SilentTitan: Sacrifice Y3 Silenttitan\nMove R2 Soul Silenttitan\nMove R2 Silenttitan Wil\nMove R1 Silenttitan Wil\nCatastrophe Wil Red\n\tSilentTitan: good game... Thanks\n\twil: slaughtered I was, learning I did..hopefully.\n\tSilentTitan: I don&#39;t know about slaughtered .. you got a darn good shot in on me ...taking out the greens in my homeworld. \r\n\n\twil: you up for another?\n\n\nHomeworlds Online (SDG# 23810)\nStarted: 2013.4.21, Ended: 2013.5.13\nParticipants: daselva (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n3) wil: Build G1 Wil\n\twil: yikes this is a first for me...\n\n4) daselva: Build G1 Daselva\n\n5) wil: Trade G3 Y3 Wil\n\n6) daselva: Trade G3 R3 Daselva\n\n7) wil: Build Y1 Wil\n\n8) daselva: Build R1 Daselva\n\n9) wil: Build Y1 Wil\n\n10) daselva: Trade R3 Y3 Daselva\n\n11) wil: Build G1 Wil\n\n\nHomeworlds Online (SDG# 23823)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.21, Ended: 2013.4.28\nParticipants: zoltar (S), Aristos (N)\nWinner: zoltar\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\tAristos: Aristos Empire launches first interstellar ship. Cost of building the ship so expensive, leads to riots among lower classes. Aristos Empire leaders reduce population by 1/3 to prevent revolution. New sources of serfs will have to be found. Luckily, this new &quot;spaceship&quot; offers a solution to the problems it has created.\n\n3) Aristos: Build Y1 Aristos\n\tzoltar: The Zoltarian Empire has established that the Aristos Empire is primitive and dangerous, and prone to self-destruction. Therefore, they will be enslaved for their own protection, or will be annihilated while being pacified for the protection of surrounding peaceful star systems. A fleet will be dispatched immediately.\n\n4) zoltar: Build G1 Zoltar\n\n5) Aristos: Discover Y1 Aristos Y1 Blossom\n\n6) zoltar: Trade G1 Y1 Zoltar\n\tAristos: First interstellar jump a success!\n\n7) Aristos: Discover Y1 Blossom G3 Spark\n\n8) zoltar: Build G1 Zoltar\n\n9) Aristos: Build Y1 Spark\n\n10) zoltar: Build Y2 Zoltar\n\n11) Aristos: Build Y2 Aristos\n\n12) zoltar: Move Y1 Zoltar Spark\n\tAristos: Interstellar fleet sending home material resources allows for construction of modestly larger models, closer to the design of the original prototype. Aristian engineers have begun calling for new ship designs they claim will have capabilities &quot;substantially of interest to the Empire.&quot;\n\n13) Aristos: Discover Y1 Spark G2 Flash\n\n14) zoltar: Discover G1 Zoltar Y3 Mellowyellow\n\n15) Aristos: Trade Y2 G2 Aristos\n\tAristos: Fleet Captain Zandos reports sighting a Zoltarian craft. Giving it a wide berth until we can analyze its military potential. Appears to be purely civilian currently. \n\n16) zoltar: Build G1 Zoltar\n\n17) Aristos: Sacrifice G2 Aristos\nBuild Y2 Flash\nBuild Y2 Spark\n\n18) zoltar: Build Y3 Zoltar\n\n19) Aristos: Discover Y2 Flash B1 Blink\n\n20) zoltar: Discover Y3 Zoltar B3 Bluedanube\n\n21) Aristos: Discover Y1 Spark B2 Glimmer\n\n22) zoltar: Sacrifice G1 Mellowyellow\nBuild Y3 Zoltar\n\n23) Aristos: Trade Y1 R1 Glimmer\n\n24) zoltar: Trade Y3 R3 Zoltar\n\tAristos: B or G. Not much of a difference when typing. Major difference in board position. DOH.\n\tzoltar: Yep!\n\n25) Aristos: Sacrifice R1 Glimmer\nAttack Y1 Spark\n\n26) zoltar: Move R3 Zoltar Spark\n\n27) Aristos: Trade Y2 R2 Blink\n\n28) zoltar: Attack Y2 Spark\n\tAristos: First blood!\n\tzoltar: Well, that wasn&#39;t very nice!\n\n\tAristos: Yeah, I know... I&#39;m constantly on guard against it. Just missed that one.\n\tAristos: Well played. I can&#39;t see any way out of the convergence of your large ships. \n\tzoltar: Yeah, it&#39;s a slow death from this point on. Still can&#39;t believe I missed that obvious &#39;checkmate&#39; in two moves. I&#39;m rusty and haven&#39;t really played in over a year, but at least I was able to swindle you in the opening to get the big ships. I was worried you&#39;d get a lock on the yellow from the start so was aggressively trying to stop that. gg\n\nHomeworlds Online (SDG# 23819)\nStarted: 2013.4.22, Ended: 2013.4.23\nParticipants: wil (S), pgadey (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 23818)\nVariants: &quot;Unrated&quot;\nStarted: 2013.4.23, Ended: 2013.6.8\nParticipants: zoltar (S), OnePageWars (W), Leonard_Daniels (N), wil (E)\nWinner: zoltar\n\n1) Leonard_Daniels: Homeworld Y1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\tLeonard_Daniels: Good luck everyone.\n\n3) zoltar: Homeworld B3 R2 G3\n\n4) OnePageWars: Homeworld G3 B2 Y3\n\tzoltar: Heghlu&#39;meH QaQ jajvam!\n\tLeonard_Daniels: It doesn&#39;t bode well that I&#39;ve been outgeeked this early in the game.\n\tOnePageWars: what does &quot;Heghlu&#39;meH QaQ jajvam!&quot; mean?\n\tOnePageWars: zoltar, will you enter into alliance with me? I wish to avoid early confronataion.\n\n5) Leonard_Daniels: Build G1 Leonard_daniels\n\twil: An alliance???  LD...should if I sacrifice to take out OPWs drone star you&#39;ll have a direct line into his world...  \r\n\r\nHas this newbie got protocol correct?\n\twil: Should only three player games be played to eliminate this issue?\n\tOnePageWars: The peaceful planet of Ailaria stands by it&#39;s offer. We await you response.\n\tOnePageWars: (OOC: I just now named my planet, if you didn&#39;t catch it)\n\tOnePageWars: (OOC: http://rinkworks.com/namegen )\n\tzoltar: Right now, so far, I consider myself to be at peace with everyone. If one player gets too strong I can help out, but for now, Zoltar plans to peacefully develop the Zoltarian Empire.\r\n\r\nAnd &quot;Heghlu&#39;meH QaQ jajvam!&quot; means &quot;Today is a good day to die&quot; in Klingon. Has not your civilization developed &#39;Google&#39;, yet you have mastered interstellar flight? Intriguing.\n\tzoltar: Right now, so far, I consider myself to be at peace with everyone. If one player gets too strong I can help out, but for now, Zoltar plans to peacefully develop the Zoltarian Empire.\r\n\r\nAnd &quot;Heghlu&#39;meH QaQ jajvam!&quot; means &quot;Today is a good day to die&quot; in Klingon. Has not your civilization developed &#39;Google&#39;, yet you have mastered interstellar flight? Intriguing.\n\tzoltar: Ah, now I see: OnePageWarse, you and I both have gateways to the small star systems. Yes, I don&#39;t plan on attacking my closer neighbor right away, if that&#39;s what you mean, though I don&#39;t want to gang up on anyone either. In the 4-player game (at least) 2 players must share the same size double star and so are closer to each other. It has not been a problem in previous 4-player games, because of the extra pyramids in the bank to choose from in the four-player game.\n\twil: Nice zoltar chastising our computer translation ability whilst double posting....\n\tOnePageWars: The proud Ailarians will not stoop to gleaning information from an invasive Google. We shall continue to prosper as our ancestors have before us.\n\tOnePageWars: Honorable Zoltarians.\r\nOur culture highly values such objective views of things.\r\nSincerely, The Council of Foreign Relations.\n\tzoltar: Nice Zoltar did not double post: Zoltar&#39;z tranzmizzion was bifurcated by a wormhole and echoed twice by server.\n\tLeonard_Daniels: Like Zoltar, I intend to consider myself at peace, and not gang up on anyone.  I&#39;m new to the game, so I would probably be a liability anyway.\n\n6) wil: Build G1 Wil\n\n7) zoltar: Build G1 Zoltar\n\twil: Shouldn&#39;t the program actually start with everyone having one large ship and one small ship of the same color???  I mean what else are you gonna do?  Trade your ship in for another color first turn?\r\n\n\n8) OnePageWars: Build Y1 Onepagewars\n\n9) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\n10) wil: Build G1 Wil\n\n11) zoltar: Trade G1 Y1 Zoltar\n\n12) OnePageWars: Build Y1 Onepagewars\n\n13) Leonard_Daniels: Build G1 Leonard_daniels\n\tOnePageWars: Ailaria contines it&#39;s production of mobile ships.\n\tOnePageWars: A strange transmission has been intercepted by an Ailarian: http://www.twitch.tv/riotgames\r\n\r\nAilarian intelligence is working on decoding the significance of this broadcast. In keeping with our belief in freedom of information, we will keep you updated on the decoding process.\n\n14) wil: Trade G1 Y1 Wil\n\tLeonard_Daniels: Leonardian scientists detect signals emanating from foreign systems.  They prepare craft for first contact.\n\tOnePageWars: Their are two schools of thought developing within the Ailarian people. Some think that there is some code hidden withing the broadcast. Others think it is simply a sports broadcast, or something comparable. This dissent remains to be resolved.\n\n15) zoltar: Build Y2 Zoltar\n\twil: the eastern lemurians have discovered propulsion...\n\n16) OnePageWars: Trade Y1 R1 Onepagewars\n\tOnePageWars: The Ailarians, due to a strong belief in self defense have crowdfunded the overhaul of a transport ship into a gunship.\n\n17) Leonard_Daniels: Trade G1 R1 Leonard_daniels\n\tLeonard_Daniels: The Leonardian fleet suddenly looks a little defenceless.\n\n18) wil: Trade G1 R1 Wil\n\n19) zoltar: Trade Y1 R1 Zoltar\n\twil: um..er...so much for all that peaceful talk...\n\tzoltar: What a bunch of war mongers. Now you&#39;ve forced me to get a gun too, when I was ready to go blue!\n\n20) OnePageWars: Trade Y1 B1 Onepagewars\n\tOnePageWars: Due to the recent articles in major news outlets written by prominent Ailarian statisticians public opinion on the strange broadcast has experienced a significant shift.\r\n\r\nPopular opinion now holds that the broadcast is in fact a sports game. The nature of said game is still under debate, but those who insist it contains a secret message are dwindling by the minute.\n\tOnePageWars: Despite the recent hype regarding the transmission, the Ailarian Council of Foreign Relations is currently focusing on a more pressing issue.\r\n\r\nRumors have been circulating of a supposed surprise attack by the Ailarian troops. The council is working on a plan to dispel such superfluous rumors.\n\n21) Leonard_Daniels: Build G1 Leonard_daniels\n\n22) wil: Build G1 Wil\n\n23) zoltar: Build G1 Zoltar\n\n24) OnePageWars: Build B1 Onepagewars\n\n25) Leonard_Daniels: Trade G1 Y1 Leonard_daniels\n\tOnePageWars: (OOC: It&#39;s awfully quiet around here. Isn&#39;t anyone else going to get into the role playing aspect of this? It&#39;s quite enjoyable.)\n\n26) wil: Trade G1 B1 Wil\n\n27) zoltar: Build Y1 Zoltar\n\twil: The east coast has now accumulated acess to resources of all varieties....as he looks furtively through space and future possibilities.\r\n\n\n28) OnePageWars: Trade B1 G1 Onepagewars\n\n29) Leonard_Daniels: Build G1 Leonard_daniels\n\n30) wil: Build G1 Wil\n\n31) zoltar: Trade G1 B1 Zoltar\n\twil: wondering how exactly this coast and that got a step behind the hordes of the poles....\n\n32) OnePageWars: Build B2 Onepagewars\n\tLeonard_Daniels: Looks about equal to me - everybody has four small ships plus their original ship, apart from West, who have a turn in hand anyway.  What makes you say you&#39;re behind?\n\tzoltar: I&#39;d say North has the lead, simply from having the factory setup. East I&#39;d say is next. South and West share the same-sized outlet to the outside, and our both having the fortress setup with only 4 smalls in the bank makes it difficult for us to expand, giving us by far the worse positions.\n\tzoltar: I mean to say North probably has the lead from the banker setup, and with the medium pieces coming out next, soon North can sit on some large stars and then cash them in.\n\n33) Leonard_Daniels: Discover B1 Leonard_daniels G3 Heworth\n\tOnePageWars: What&#39;s around the river bend?\r\n\r\n(OOC: Quoted from Disney&#39;s Pocahontas.)\n\n34) wil: Build B2 Wil\n\n35) zoltar: Discover B1 Zoltar G1 Greenpea\n\n36) OnePageWars: Discover B1 Onepagewars G1 Kolorvar\n\tzoltar: Zoltar considered the destruction of the Y2 drone to propel the b1 scout on a suicide mission into the Ailarian Homeworld where it would supernova the blue twin star; but the Zoltarian Senate overruled the action and instead legislated that establishing a peaceful outpost on a key moon would be more in line with the goals of the Zoltarian space exploration program.\n\twil: hmmm in comparision to previous comments....my only comment can be.....er...yeah right.\n\tzoltar: The Zoltarian fllet is also now in position to destroy have of the Wil homeworld with a similar Y2 sacrifice. In a 2-Empire galaxy, that would be an obvious tactical ploy. But in a 4-Empire galaxy, and this early, the Zoltarian ruling counsel deems it unwise to weaken oneself so early in the game just to also weaken one of three other empires more. Such tactics appear to be poor long-term strategy. \n\twil: So I see....the peace loving Zoltarians as described earlier in this discussion are only peace loving until the time comes where they can clearly dominate...and then they will gladly take up the mantle of conquereror....\n\n37) Leonard_Daniels: Build B2 Heworth\n\tOnePageWars: The fertile planet of Kolorvar has been discovered by an Ailarian trade vessel. It appears to be uninhabited, but time will tell.\n\tLeonard_Daniels: [One of my messages from earlier appears to have been deleted - was it because I made reference to specific moves that a specific player could make?  If so, who deleted my message?]\n\n38) wil: Discover B2 Wil G2 Fortcourage\n\tzoltar: Zoltarians love peace. Zoltarians will abide by the will of the gods, who have stated in the prophecies that the Zoltarians have been chosen by the gods to rule the universe. The Zoltarians only follow the will of the gods, nothing more, nothing less.\n\tzoltar: The Zoltarians know of no method that anyone can delete any messages, even one&#39;s own. The answer is that no mortal deleted your message, that it was what is known as a &#39;computer glitch&#39; or perhaps it is the will of the gods, whose methods are beyond the understandings of all mortals.\n\n39) zoltar: Build B3 Greenpea\n\twil: F troop is establishing a trading post.\n\n40) OnePageWars: Build B3 Kolorvar\n\tOnePageWars: Upon further inspection it is discovered that there are heretofore unknown substances existing on Kolorvar which can aid in ship design. A state of the art freighter is constructed by Ailarian engineers.\n\n41) Leonard_Daniels: Trade B1 Y1 Heworth\n\n42) wil: Build Y2 Wil\n\n43) zoltar: Trade B3 Y3 Greenpea\n\tLeonard_Daniels: Leonardian settlers have installed a stargate in the Heworth system, in an attempt to attract interstellar trade.\n\n44) OnePageWars: Trade B3 Y3 Kolorvar\n\n45) Leonard_Daniels: Discover G1 Leonard_daniels Y3 Clifton\n\tOnePageWars: The freighter receives an overhaul with most of the cargo hold being occupied by thrusters.\n\n46) wil: Build G2 Wil\n\n47) zoltar: Build G2 Zoltar\n\tLeonard_Daniels: Leonardian explorers have discovered a new star system rich in fuel deposits.  They get to work on finding a way to exploit it.\n\n48) zoltar: Build Y2 Greenpea\n\twil: meanwhile a civilization that has never seen so many ships and so many stars so close is absolutely clueless about what to do....so will make eggplant parmesan, spaghetti squash and some sourdough garlic bread...\n\n49) Leonard_Daniels: Build Y2 Heworth\n\n50) wil: Discover R1 Wil G2 Dryden\n\n51) zoltar: Move Y3 Greenpea Onepagewars\n\n52) Leonard_Daniels: Build G2 Leonard_daniels\n\n53) wil: Discover G2 Wil R2 Bedrock\n\twil: are these now abndonned ships and stars ready to be utilized by any occupying force walking in without resistance?  I don&#39;t know what occurs here...could someone actually own two homeworlds now??\n\twil: how was it it said my time had expired?  \n\n54) zoltar: Sacrifice R1 Zoltar\nAttack R1W Onepagewars\n\n55) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild Y2 Heworth\nBuild Y3 Leonard_daniels\nBuild G3 Leonard_daniels\n\tLeonard_Daniels: I guess so.  Certainly shakes up the balance of power.  In South&#39;s favour, though.\n\n56) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Fortcourage\nBuild B3 Fortcourage\n\n57) zoltar: Move B1 Greenpea Fortcourage\nCatastrophe Fortcourage B\n\n58) Leonard_Daniels: Sacrifice Y2 Heworth\nMove Y3 Leonard_daniels Heworth\nMove Y3 Heworth Kolorvar\n\n59) wil: Discover B1 Wil G2 Fortcourage\n\n60) zoltar: Attack Y3W Onepagewars\n\n61) Leonard_Daniels: Build R1 Leonard_daniels\n\n62) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Fortcourage\nBuild R1 Dryden\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greenpea\nBuild R2 Onepagewars\n\n64) Leonard_Daniels: Sacrifice Y2 Heworth\nMove R1 Leonard_daniels Heworth\nMove R1 Heworth Kolorvar\n\n65) wil: Move Y1 Wil Fortcourage\n\tzoltar: Zoltarian xenoanthropologists salvage an ancient alien vessel.\n\n66) zoltar: Sacrifice Y2 Greenpea\nMove Y1 Zoltar Kolorvar\nMove Y3 Onepagewars Kolorvar\nCatastrophe Kolorvar Y\n\twil: the wilians, wellian behindian in everythinian, creates a factory for measly little ships as the others rumage through the refuge of one page\n\tzoltar: You mean Wilful Willians build weapons of mass destruction while making insinuations about peaceful Zoltarian archeological expeditions? \n\n67) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild G3 Leonard_daniels\nBuild R2 Kolorvar\nBuild Y1 Heworth\n\twil: me thinks thou protesteth too much.... but alas, have I read it wrong but with my oposing hemispheres demise has that alone caused me  to lose?\n\tzoltar: Lose? You may win, if the other two powers damage each other fatally while you slowly strengthen your position.\n\n68) wil: Discover B1 Fortcourage R3 Whynot\n\tLeonard_Daniels: Leonardian strategists predict a wave of Zoltarian warships sweeping across the galaxy, destroying all in their path.  The Leonardian salvage missions are stepped up a notch in the meantime.\n\n69) zoltar: Move Y3 Onepagewars Kolorvar\n\twil: willians continue to flounder not being prepared to purchase the larger model ships when available finding difficulty finding resources...\n\n70) Leonard_Daniels: Attack B1W Kolorvar\n\n71) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Fortcourage\nBuild B1 Fortcourage\n\tzoltar: The Zoltarian council determined that the alien OnePageWars tech was too dangerous for anyone to use, so we have purged it from the entire galaxy.\n\tLeonard_Daniels: ...at the cost of the lives of the several hundred Leonardian citizens who made up the crew of the starship destroyed by the Zoltarian weapon of mass destruction.  The Leonardian homeworld enters a period of mourning, and its leaders vow to never forget this atrocity.\n\n72) zoltar: Sacrifice R2 Onepagewars\nAttack B1N Kolorvar\nAttack R2N Kolorvar\n\n73) Leonard_Daniels: Build R2 Leonard_daniels\n\n74) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\n\n75) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenpea\n\n76) Leonard_Daniels: Move R2 Leonard_daniels Heworth\n\n77) wil: Move Y2 Wil Dryden\n\n78) zoltar: Attack R1N Kolorvar\n\n79) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild G3 Leonard_daniels\nBuild R2 Leonard_daniels\nBuild R3 Heworth\n\tLeonard_Daniels: As predicted, the Zoltarian battle fleet is sweeping through the galaxy, destroying all in its path.  The Leonardian government declares a state of emergency, while religious leaders claim that the apocalypse is nigh.\n\n80) wil: Sacrifice Y2 Wil\nDiscover B1 Fortcourage R3 Wtf\nDiscover R1 Dryden B3 Ohwell\n\n81) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Onepagewars\nBuild Y2 Kolorvar\n\n82) Leonard_Daniels: Move Y1 Heworth Kolorvar\n\n83) wil: Sacrifice Y1 Fortcourage\nMove G2 Bedrock Wtf\n\n84) zoltar: Sacrifice Y2 Greenpea\nMove Y3 Kolorvar Wtf\nMove R1 Onepagewars Greenpea\n\n85) Leonard_Daniels: Trade R2 B2 Leonard_daniels\n\n86) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Fortcourage\nBuild R2 Dryden\n\n87) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Kolorvar\nBuild R2 Greenpea\n\n88) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild G3 Leonard_daniels\nBuild Y1 Kolorvar\nBuild Y2 Heworth\n\n89) wil: Sacrifice Y2 Dryden\nMove G2 Wtf Dryden\nMove B1 Wtf Leonard_daniels\n\n\n90) zoltar: Sacrifice Y2 Zoltar\nMove B1 Kolorvar Wtf\nMove B1 Wtf Leonard_daniels\nCatastrophe Leonard_daniels B\n\n91) Leonard_Daniels: Sacrifice Y2 Heworth\nMove G3 Leonard_daniels Zoltar\nMove G2 Leonard_daniels Zoltar\nCatastrophe Zoltar G\n\n92) zoltar: Sacrifice Y2 Kolorvar\nMove B3 Kolorvar Zoltar\nMove Y3 Greenpea Heworth\n\n93) wil: Build G2 Dryden\n\n94) zoltar: Sacrifice R2 Greenpea\nAttack R3N Heworth\nAttack G1W Onepagewars\n\n95) wil: Sacrifice Y2 Fortcourage\nMove G2 Dryden Leonard_daniels\nMove R1 Dryden Greenpea\n\n96) zoltar: Move R3 Heworth Leonard_daniels\n\n97) wil: Move G2 Leonard_daniels Clifton\n\n98) zoltar: Attack B2W Onepagewars\n\n99) wil: Build R2 Dryden\n\tLeonard_Daniels: The major star of the Leonardian system, Leonard Alpha, is destroyed.  Billions are dead.  The few survivors board colony ships and flee the sector, abandoning their existing facilities and ships.  The Leonardian military have just enough time to launch a suicide attack against the Zoltarian shipyards.  Despite their bitterness against the residents of the Wil system for their betrayal, the Leonardian strategists recognise that the sector will be safer in their hands than in the hands of the bloodthirsty Zoltarian horde.\n\tLeonard_Daniels: [Is there any way to continue to watch this match after my resignation?  I should probably have asked before resigning, but there you go.]\n\n100) zoltar: Sacrifice B2 Onepagewars\nTrade B3 G3 Zoltar\nTrade Y3 G3 Wtf\n\tLeonard_Daniels: [nvm, turns out this is still listed in My SDG.]\n\n101) wil: Sacrifice G3 Wil\nBuild G2 Clifton\nBuild G3 Wil\nBuild Y2 Wil\n\n102) zoltar: Sacrifice R2 Kolorvar\nAttack R2N Heworth\nAttack B2N Heworth\n\tzoltar: Having one of your binary stars destroyed isn&#39;t the end of the game. In a multi-player game especially, you always have a chance. \r\n\n\n103) wil: Move Y2 Wil Fortcourage\n\n104) zoltar: Sacrifice G3 Wtf\nBuild G3 Zoltar\nBuild R2 Kolorvar\nBuild R3 Heworth\n\n105) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y2 Fortcourage\n\n106) zoltar: Sacrifice R2 Heworth\nAttack Y1N Heworth\nAttack Y1N Kolorvar\n\n107) wil: Sacrifice Y2 Wil\nDiscover Y2 Fortcourage B1 B1\nDiscover G2 Clifton B1 B2\n\n108) zoltar: Sacrifice Y3 Zoltar\nMove G3 Zoltar B1\nMove Y3 Heworth B2\nMove Y1 Kolorvar Zoltar\n\n109) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Fortcourage\nBuild B2 Whynot\n\n110) zoltar: Sacrifice R2 Kolorvar\nAttack Y2E B1\nAttack G2E B2\n\n111) wil: Attack R1E Greenpea\n\n112) zoltar: Sacrifice R3 Onepagewars\nAttack Y1N Kolorvar\nAttack R1E Greenpea\nAttack R1N Leonard_daniels\n\twil: love how those peaceful zoltarians speak with forked tongue, takeover and capitalize on others invesstments and star system buildig rather than build their own....nothing but vulture capitalists and parasites....\n\n\twil: how did you take green pea back, whenI had both?\r\n\n\tzoltar: Yes, that doesn&#39;t make sense. Looking back, there was some sort of glitch, I think. The game log below says:\r\n\r\nEast&#39;s R1 ship was overtaken by East. \r\n\r\nBut it should have said &quot;South&#39;s R1 ship&quot;. I don&#39;t understand it. When I looked at the game, I still saw a R1 of mine in the system. Or maybe my R1 ship has acquired a new secret tech and not reported it. Oh well.\n\twil: Yeah,....i was just completely overpowered....aint like those two little guyss would have made much difference....just prolonged the agony\n\tzoltar: If you&#39;d seen the glitch, I&#39;d have passed so you could redo your move. But yeah, it was prolonging the inevitable. I would have sent a non-red 2-pip ship to that star and then taken them both by sacking an R2 or R3 somewhere else -- as long as I don&#39;t let you start building red or blue at small stars, I&#39;m safe and have a pretty easy victory. I made some sacrifices just to make my homeworld maximally safe and minimize counterplay at that point. Leonard could have kept playing, though, and had a chance if I was weakened taking you out. The 3 and 4-p games can be interesting like that: if you&#39;re weak you can sit back and try to fortify your position and let the others fight.\n\twil: Yes I thiink i have an interest in 3 player games, not much in four...I don&#39;t like the siamese homeworld issue\n\tzoltar: Right. I haven&#39;t played a multi-player homeworlds game in years, and I&#39;d forgotten that because there are only 3 distinct star formations, a four-player game forces a conflict between two players. 3 is better, then.\n\nHomeworlds Online (SDG# 23832)\nStarted: 2013.4.23, Ended: 2013.7.15\nParticipants: pgadey (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) pgadey: Homeworld B3 G2 Y3\n\twil: ah ya got it started cool...\n\n3) wil: Build G1 Wil\n\n4) pgadey: Build Y1 Pgadey\n\n5) wil: Build G1 Wil\n\n6) pgadey: Trade Y1 G1 Pgadey\n\n7) wil: Trade G1 Y1 Wil\n\n8) pgadey: Discover G1 Pgadey Y1 Avocado\n\n9) wil: Trade G1 B1 Wil\n\n10) pgadey: Build Y1 Pgadey\n\n11) wil: Build B1 Wil\n\n12) pgadey: Trade Y1 R1 Pgadey\n\n13) wil: Build G1 Wil\n\n14) pgadey: Build R1 Pgadey\n\n15) wil: Trade B1 R1 Wil\n\n16) pgadey: Trade R1 G1 Pgadey\n\n17) wil: Build G2 Wil\n\n18) pgadey: Discover G1 Avocado B3 Pomegranate\n\n19) wil: Discover G2 Wil Y3 Fortcourage\n\n20) pgadey: Build Y1 Pgadey\n\n21) wil: Sacrifice G3 Wil\nBuild G2 Fortcourage\nBuild G3 Fortcourage\nBuild G3 Wil\n\n22) pgadey: Discover G1 Pgadey Y1 Banana\n\n23) wil: Discover G2 Fortcourage B1 Bedrock\n\n24) pgadey: Sacrifice Y3 Pgadey\nMove G1 Banana Pomegranate\nMove G1 Pomegranate Wil\nMove G1 Pomegranate Wil\nCatastrophe Wil G\n\n25) wil: Sacrifice Y1 Wil\nMove G2 Bedrock Pgadey\n\twil: ballsy attack...now do I just counter....or amass an army?\r\n\r\nI guess counter and then amass if I fail...\n\n26) pgadey: Build Y1 Pgadey\n\n27) wil: Trade G2 R2 Pgadey\n\n28) pgadey: Trade Y1 B1 Pgadey\n\n29) wil: Attack B1 Pgadey\n\n30) pgadey: Build R1 Pgadey\n\twil: you lose the game by not having any of your own ships in your homeworld, or by losing the stars of your homeworld.  I will continue taking ships in this game....  (unless you have something up your sleeve I don&#39;t see!)  I would be happy to answer any questions on strategy (even though I am still learning!)  My method has been to lose... I think the more you lose the more you learn what works, what doesn&#39;t, and what attacks look like as they start to come at ya!\r\n\n\n31) wil: Attack Y1 Pgadey\n\tpgadey: I think you are right, I have essentially lost. This has been an interesting game though. \r\n\r\nI think that this is the kind of game that takes  a lot of losses to understand.\n\n32) pgadey: Attack B1 Pgadey\n\twil: yes between catastrophes, attacks and sacrifices a lot of things can happen...this is a great thinking game...total strategy and skill and a lot can happen....keep playing.   (I look at the top player, I know he plays live games offline and has played over 200 games online and only lost 35)  So plan to lose a dozen games and I guarantee you will win a few prior to making that dozen losses!\n\twil: Right now i just took over your yellow...so you can&#39;t move, now to delay you could change the color of one red to green  (otherwise I just build a green and cause a catastrophe)...but the end is near ..  just today I asked a guy if he was willing let me play rather than resign  so I could see what he was going to do with the advantage he has over me...I know he&#39;ll beat me in less than ten moves...but I wanna see how he&#39;ll do it to learn.\n\twil: I just started playing and am now playing 8 games, monitoring the top games in the ladder challenge...to see what the good guys are doing...\n\n33) wil: Build R2 Pgadey\nCatastrophe Pgadey R\n\tpgadey: Wow! You are really into this one. I dig it! I would happily play some more rounds against you, to learn a bit more about this stuff. I have all the physical stuff to play at home, but never seem to get around to it.\r\n\r\nHow did you find out about this one?\n\twil: It is tough to find folks willing to play...anyone into Chess or Shogi is more likely.... and if you play online it is to your advantage to set up the starfield at home and you can see it better as the representation here leaves a lot to be desired.\r\n\r\nI just found it to be quite the intrigueing game, and with folks only moving every day or two, sometimes you can catch them online and get two or three moves a day....the games are spread out....  seeing all vaieties of attacks come at you though teaches you a lot  (that being said, I often make the same mistakes repeatedly...thinking one day I&#39;ll see them coming)\r\n\r\nChallenge again, I&#39;d b glad to play.\n\n34) pgadey: Build B2 Pgadey\n\twil: oops!!   game is still on..i didn&#39;t notice I didn&#39;t capture your blue before I catastrophed red...you get  reprieve and I have to rebuild everything to get back in again!!\n\tpgadey: Hehehe -- I see that trying to stick it out works sometimes. I was going to build a red then catastrophe to &quot;go out with a bang&quot; but decided to build a blue, pray you wouldn&#39;t capture it, then build a red and catastrophe. Turns out -- Everything worked out in my favour.\r\n\r\nRound two!\n\n35) wil: Build G1 Fortcourage\n\twil: this is the amazing nature of the game...one can be dominating and a stupid mistake clears the board and makes a whole new game....now to capitalize on my error whilst I attempt to keep from making another @$@%&amp;*##\n\n36) pgadey: Trade B2 R2 Pgadey\n\n37) wil: Move G3 Fortcourage Wil\n\n38) pgadey: Attack Y1 Pgadey\n\n39) wil: Build G1 Wil\n\n40) pgadey: Build Y1 Pgadey\n\n41) wil: Build B2 Wil\n\n42) pgadey: Trade Y1 G1 Pgadey\n\n43) wil: Trade B2 Y2 Wil\n\n44) pgadey: Discover B1 Pgadey Y1 Asparagus\n\twil: where is you ain&#39;t?\n\tpgadey: I completely fell off the internet for a while. Sorry about the timing. \n\n45) wil: Discover B1 Wil G3 G3\n\twil: hope  y didn&#39;t hurt yourself\n\n46) pgadey: Build G2 Pgadey\n\n47) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\n\n48) pgadey: Move G2 Pgadey Asparagus\n\n49) wil: Discover G3 Wil Y3 Y3\n\n50) pgadey: Build Y2 Pgadey\n\n51) wil: Move Y2 Wil G3\n\n52) pgadey: Sacrifice Y2 Pgadey\nMove G2 Asparagus Fortcourage\nMove B1 Asparagus Fortcourage\n\twil: You done?\n\n53) wil: Sacrifice R1 Wil\nAttack G2 Fortcourage\n\n54) pgadey: Discover G1 Pgadey Y1 Artichoke\n\n55) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 G3\nBuild B2 G3\n\n56) pgadey: Move G1 Artichoke Fortcourage\nCatastrophe Fortcourage Green\n\twil: \n\twil: celebrating still?\n\twil: helllooooooooo\n\n57) wil: Trade B2 R2 G3\n\n58) pgadey: Discover B1 Fortcourage Y1 Papaya\n\n59) wil: Sacrifice Y2 G3\nMove G3 Y3 Papaya\nMove G3 Papaya Pgadey\n\n60) pgadey: Move B1 Papaya Pgadey\n\n61) wil: Sacrifice R2 G3\nAttack R2 Pgadey\nAttack Y1 Pgadey\n\n\tpgadey: Next move you&#39;ll sacrifice your red ship and cause me to have no ships in my homeworld.  That was a good long game. Thanks for playing. Wanna try again?\r\n\r\n\n\twil: I just set my record and another&#39;s for long games....it took him 55 moves to kick my butt (I kept running in circles), but yeah, when I moved in I thought I had my count right...but was afeared I was missing something.   Always up for another game....trying to learn this thing!   thx...\n\nHomeworlds Online (SDG# 23847)\nStarted: 2013.4.24, Ended: 2013.4.30\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld R1 B3 G3\n\n3) wil: Build G1 Wil\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build G1 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade G1 R1 Wil\n\n10) ts52: Discover G1 Ts52 B2 Gonzo\n\n11) wil: Build G1 Wil\n\n12) ts52: Build Y1 Ts52\n\n13) wil: Build B1 Wil\n\n14) ts52: Build Y1 Ts52\n\n15) wil: Trade G3 Y3 Wil\n\twil: yeah, major mistake at the beginning eh?\r\n\r\n\n\twil: am I wrong or is it game over already...because I can&#39;t move or trade for fuel?\n\n16) ts52: Move Y1 Ts52 Gonzo\n\twil: oh, DOH... I was blinded....  now I can see....I lost a couple seps by trading early and letting you get ahead....behind but not out yet....\n\tts52: it can get rough if you get locked out of one color, but it&#39;s recoverable\n\n17) wil: Build Y2 Wil\n\tts52: I don&#39;t usually start with red in my homeworld. But I&#39;ve been experimenting lately.\n\n18) ts52: Build Y2 Gonzo\n\n19) wil: Discover Y2 Wil G3 Fortcourage\n\n20) ts52: Trade Y2 B2 Gonzo\n\n21) wil: Move B1 Wil Fortcourage\n\n22) ts52: Discover B2 Gonzo G3 Oscar\n\n23) wil: Discover B1 Fortcourage G2 Tortuga\n\n24) ts52: Build Y2 Gonzo\n\n25) wil: Build G1 Wil\n\n26) ts52: Build G2 Ts52\n\n27) wil: Build G2 Wil\n\n28) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Oscar\nMove G1 Oscar Wil\nCatastrophe Wil Green\n\n29) wil: Build Y2 Fortcourage\n\twil: b y2 wil\n\n30) ts52: Move G2 Ts52 Gonzo\n\twil: I will eventually see these coming....I hope\n\twil: I will eventually see these coming....I hope\n\n31) wil: Build B2 Tortuga\n\tts52: Yeah, the hardest ones to see coming, I find, are when someone moves two ships to cause the catastrophe.\n\n32) ts52: Build B3 Oscar\n\n33) wil: Sacrifice Y2 Fortcourage\nMove B1 Tortuga Oscar\nMove B2 Tortuga Oscar\nCatastrophe Oscar B\n\n34) ts52: Build Y2 Gonzo\n\n35) wil: Trade R1 G1 Wil\n\n36) ts52: Trade Y2 R2 Gonzo\n\n37) wil: Build Y2 Fortcourage\n\n38) ts52: Move R2 Gonzo Fortcourage\n\n39) wil: Discover Y2 Fortcourage G2 Bedrock\n\n40) ts52: Attack Y2 Fortcourage\n\n41) wil: Build G1 Wil\n\n42) ts52: Build R1 Fortcourage\n\n43) wil: Discover G1 Wil Y3 Tortuga\n\n44) ts52: Sacrifice G2 Gonzo\nBuild Y2 Fortcourage\nBuild Y3 Gonzo\n\twil: there is that two move red catastrophe lurking...\n\n45) wil: B B1 Wil\n\n46) ts52: Build R1 Fortcourage\n\n47) wil: D B1 Wil G3 Dryden\n\n48) ts52: Move R2 Fortcourage Gonzo\n\n49) wil: B B2 Dryden\n\n\n50) ts52: Trade R2 G2 Gonzo\n\n51) wil: B B2 Dryden\n\n52) ts52: Move Y3 Gonzo Dryden\n\n53) wil: Move B1 Wil Dryden\nCatastrophe Dryden B\n\n54) ts52: Build R2 Fortcourage\n\n55) wil: Build G1 Wil\n\n56) ts52: Build G2 Ts52\n\n57) wil: Discover G1 Wil B3 Lastditch\n\twil: just a matter of time eh?\n\tts52: I think so, yeah.\n\n58) ts52: Move R2 Fortcourage Bedrock\n\twil: I was surprised those reds didn&#39;t come in a half dozen moves ago....I see them commies at the border again\n\n59) wil: Move Y2 Bedrock Lastditch\n\n60) ts52: Sacrifice G2 Ts52\nBuild R2 Fortcourage\nBuild R3 Bedrock\n\tts52: Half-destroying your homeworld isn&#39;t the end, and sometimes it can be done to early\n\twil: yeah...i understand it is best to be prepared with the second wave prior to sending in the first.\n\n61) wil: Build G2 Wil\n\twil: and I see i&#39;ll just get bullied into submission....\n\n62) ts52: Sacrifice Y3 Dryden\nMove R1 Fortcourage Wil\nMove R1 Fortcourage Wil\nMove R2 Fortcourage Wil\nCatastrophe Wil Red\n\tts52: that seems a bit harsh, but yeah, that&#39;s the general idea.\n\n63) wil: Build Y3 Lastditch\n\n64) ts52: Sacrifice Y1 Gonzo\nMove R3 Bedrock Wil\n\n65) wil: Build G3 Lastditch\n\n66) ts52: Sacrifice R2 Bedrock\nAttack Y3 Wil\nAttack G2 Wil\n\twil: hmmmm....still learning, know I am just getting trounced, but changing that ship to red would have slowed things again yeah?\n\n\tts52: Thanks for the game. I&#39;d be happy to play more, anytime. You can make the challenge &#39;unrated&#39; too, I think. If you&#39;d like.\n\nHomeworlds Online (SDG# 23857)\nVariants: &quot;Hard time&quot;\nStarted: 2013.4.25, Ended: 2013.6.20\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\tdlwillson: Small universe?\n\tTwoShort: I said I&#39;d play Goldilocks next time we played :)\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) TwoShort: Trade G1 B1 Twoshort\n\tdlwillson: I should&#39;ve remembered. :-)\n\n7) dlwillson: B B2 Dlwillson\n\n8) TwoShort: Build B2 Twoshort\n\n9) dlwillson: Trade B2 Y2 Dlwillson\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) dlwillson: B B2 Dlwillson\n\n12) TwoShort: Build B2 Grogar\n\n13) dlwillson: Trade B2 R2 Dlwillson\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) dlwillson: Build B2 Dlwillson\n\tTwoShort: Are you still periodically organizing Homeworlds (and/or other pyramid game) tournaments at cons in Denver?  Or more relevantly, do you expect to be doing so at some point in the future?\n\tdlwillson: Depends. Why do you ask?\n\n16) TwoShort: Trade B2 Y2 Grogar\n\tTwoShort: If I could compete in a Homeworlds tournament in Denver in the space of a day and evening (like the Saturday of a con), sometime in the near (or probably far) future, I would.\n\n17) dlwillson: M B2 Dlwillson Grogar\n\n18) TwoShort: Discover Y2 Grogar B3 Bluestar\n\tdlwillson: Let me chat with Tripp and see what I can come up  with.\n\n19) dlwillson: T B2 R2 Grogar\n\n20) TwoShort: Build G1 Twoshort\n\n21) dlwillson: Attack B1 Grogar\n\n22) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n23) dlwillson: B B2 Grogar\n\n24) TwoShort: Build R1 Twoshort\n\n25) dlwillson: Build B2 Dlwillson\n\tdlwillson: The next Denver Gamers convention starts August 29th. If you and Tripp will be the organizers, I&#39;ll help. Like, I can put you in touch with Jarrod Abel, who coordinates board games.\n\n26) TwoShort: Move R2 Twoshort Yolonda\n\n27) dlwillson: Discover B2 Dlwillson G2 Forest\n\n28) TwoShort: Discover R2 Yolonda B3 Bonanza\n\n29) dlwillson: B B2 Forest\n\n30) TwoShort: Build G1 Twoshort\n\n31) dlwillson: Trade B2 G2 Grogar\n\tdlwillson: My son Evan would do artwork, like signs and posters.\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n\nHomeworlds Online (SDG# 23887)\nStarted: 2013.5.1, Ended: 2013.5.15\nParticipants: heavytanhat (S), rdb (N)\nWinner: heavytanhat\n\n1) rdb: Homeworld R1 G3 B3\n\n2) heavytanhat: Homeworld R2 B3 G3\n\n3) rdb: Build B1 Rdb\n\n4) heavytanhat: Build G1 Heavytanhat\n\n5) rdb: Trade B1 Y1 Rdb\n\n6) heavytanhat: Trade G1 Y1 Heavytanhat\n\n7) rdb: Discover Y1 Rdb R2 Star1\n\n8) heavytanhat: Build G1 Heavytanhat\n\n9) rdb: Build B1 Rdb\n\n10) heavytanhat: Discover G1 Heavytanhat Y1 Heavystar\n\n11) rdb: Discover Y1 Star1 G1 Star2\n\n12) heavytanhat: Build Y2 Heavytanhat\n\n\nHomeworlds Online (SDG# 23701)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.1, Ended: 2013.5.9\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) wil: Homeworld R2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: B B2 Dlwillson\n\n8) wil: Build B2 Wil\n\n\twil: hope everything is ok.....  I look forward to playing again, this is not the way for one to end...\n\tdlwillson: Oh, for... Dammit.\n\twil: absof/nlutely agree.....  you just swamped and missed it?  Start another one whenever you have time.\n\nHomeworlds Online (SDG# 23884)\nStarted: 2013.5.1, Ended: 2013.5.8\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld B2 R3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\twil: I read somewhere where someone was trying to clean up this board...so the ships and stars aligned more like we would in physical play....any idea what ever happenned to that?  (I have zero code knowledge, but would dream of dragging pieces from bank to board on a tablet)\n\tts52: I hadn&#39;t heard anything about that. Yeah, being able to drag and drop playing this on a tablet would be amazing.\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build G1 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade G1 Y1 Wil\n\n10) ts52: Discover G1 Ts52 R1 Elmo\n\n11) wil: Build G1 Wil\n\n12) ts52: Move Y1 Ts52 Elmo\n\n13) wil: Discover G1 Wil Y3 Fortcourage\n\n14) ts52: Build G1 Ts52\n\n15) wil: Build G2 Wil\n\n16) ts52: Build G2 Ts52\n\n17) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Fortcourage\nBuild G3 Wil\n\n18) ts52: Trade G2 Y2 Ts52\n\tts52: well played\n\n19) wil: Trade G2 R2 Wil\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\n\n21) wil: Discover G1 Fortcourage Y2 Tortuga\n\n22) ts52: Trade G2 B2 Ts52\n\n23) wil: Sacrifice G3 Wil\nBuild G2 Tortuga\nBuild G3 Wil\nBuild R1 Wil\n\n24) ts52: Move B2 Ts52 Elmo\n\n25) wil: Discover G1 Tortuga Y3 Dryden\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Elmo\nBuild B2 Elmo\n\n27) wil: Move B1 Wil Dryden\n\n28) ts52: Trade B2 R2 Elmo\n\n29) wil: Move R2 Wil Dryden\n\n30) ts52: Discover R2 Elmo Y3 Bigbird\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Dryden\nBuild R3 Dryden\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Bigbird\nBuild Y1 Elmo\n\n33) wil: Build Y2 Wil\n\n34) ts52: Move B2 Elmo Bigbird\n\n35) wil: Move R3 Dryden Elmo\n\twil: choices...options.....I&#39;m still learning the fallout/reprecussions of actions.\n\n36) ts52: Move G2 Elmo Bigbird\n\n37) wil: Sacrifice R2 Dryden\nAttack Y1 Elmo\nAttack Y1 Elmo\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Elmo\nBuild B3 Bigbird\n\n39) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Dryden\nBuild B3 Dryden\n\n40) ts52: Sacrifice Y2 Ts52\nMove B2 Elmo Dryden\nMove B1 Elmo Dryden\nCatastrophe Dryden Blue\n\n41) wil: Sacrifice G3 Fortcourage\nBuild G3 Dryden\nBuild Y2 Elmo\nBuild Y3 Wil\n\n42) ts52: Move R3 Bigbird Tortuga\n\n43) wil: Sacrifice Y2 Elmo\nDiscover G2 Tortuga B1 Fortcourage\nMove G1 Dryden Fortcourage\n\n44) ts52: Move R3 Tortuga Fortcourage\n\n45) wil: Sacrifice Y2 Wil\nMove G2 Fortcourage Ts52\nMove G1 Fortcourage Ts52\nCatastrophe Ts52 G\n\n\twil: thx for the game...  the learning curve on this thing is awfully interesting....  ready for another when you are.\r\n\n\tts52: D&#39;oh. Should&#39;ve seen that one coming. Well played. Always happy to play another.\n\twil: You guys have been teaching me the pitfalls of having only one, even just two colors in your homeworld....yeah, I think you were blinded by your march forward blowing up stars with that red ship...funny thing is, i had two games were I was working toward the exact same thing....the other fellow just changed his homeworld to yellow on me...\n\nHomeworlds Online (SDG# 23811)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.1, Ended: 2013.5.15\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: Once more into the breach... dear friend\r\n\n\n2) wil: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Trade G1 Y1 Wil\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: Build G1 Wil\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n10) wil: B Y1 Wil\n\twil: When is someone going to make this drag and drop app for tablets?  \n\tSilentTitan: I don&#39;t know ... maybe you should do it? good practice on writing tablet apps\n\n11) SilentTitan: Build Y2 Silenttitan\n\twil: I know absolutely no code...but you are correct...if I would like to learn that would be one helluva way to start!  I could make an investment in my education just as you just did in transportation!\n\n12) wil: Build Y2 Wil\n\n13) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\tSilentTitan: Coding easy to learn. \n\n14) wil: Discover Y2 Wil G2 Fortcourage\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n16) wil: Discover G1 Wil G2 Tortuga\n\n17) SilentTitan: Discover Y2 Silenttitan G3 Sole\n\n18) wil: Move Y1 Wil Tortuga\n\twil: helluva move cornering the rest of the fuel reserves in the universe....I sure hope I retain some of this abuse to inflict it on others someday.\n\n19) SilentTitan: Sacrifice G1 Sol\nBuild Y3 Sole\n\tSilentTitan: well.... I do unto you as TooShort and dlwillson have done unto me.\n\n20) wil: Build G1 Wil\n\twil: \n\twil: I absolutely appreciate the lessons...\n\n21) SilentTitan: Trade Y2 B2 Soul\n\twil: investment paid off.....I am in soooo much trouble\n\n22) wil: Build Y2 Wil\n\n23) SilentTitan: Sacrifice B2 Soul\nTrade Y2 B2 Sole\nTrade Y3 G3 Silenttitan\n\n24) wil: Trade Y1 B1 Wil\n\n25) SilentTitan: Build B1 Sole\n\n26) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G2 Tortuga\nBuild G3 Wil\n\n27) SilentTitan: Trade B2 R2 Sole\n\n28) wil: Move B1 Wil Fortcourage\n\n29) SilentTitan: Sacrifice Y3 Sole\nMove G3 Silenttitan Sole\nMove G3 Sole Tortuga\nMove G3 Tortuga Wil\nCatastrophe Wil Green\n\n30) wil: Build B2 Fortcourage\n\n31) SilentTitan: Trade Y3 G3 Silenttitan\n\n32) wil: Discover G1 Tortuga Y3 Dryden\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) wil: Build G1 Dryden\n\n35) SilentTitan: Trade G1 Y1 Silenttitan\n\n36) wil: Build G1 Dryden\n\n37) SilentTitan: Sacrifice Y1 Soul\nMove R2 Sole Fortcourage\n\n38) wil: Sacrifice Y2 Fortcourage\nMove G1 Dryden Silenttitan\nMove G1 Dryden Silenttitan\n\n39) SilentTitan: Trade G3 Y3 Silenttitan\n\n40) wil: Sacrifice B2 Fortcourage\nTrade G1 Y1 Silenttitan\nTrade G2 Y2 Tortuga\n\n41) SilentTitan: Trade Y3 R3 Silenttitan\n\n42) wil: Build Y2 Tortuga\n\n43) SilentTitan: Sacrifice R2 Fortcourage\nAttack Y1 Silenttitan S\nAttack G1 Silenttitan S\n\twil: dang I should have grown g3s when I had the opportunity....I anticipated your switch...but not what occurred in the bank.... greed....dang overanxious greed...\n\n44) wil: Move Y2 Tortuga Sole\n\n45) SilentTitan: Move Y1 Silenttitan Sole\n\n46) wil: B Y3 Tortuga\n\n47) SilentTitan: Move Y1 Sole Tortuga\nCatastrophe Tortuga Yellow\n\n48) wil: B B2 Fortcourage\n\n49) SilentTitan: Trade B1 Y1 Sole\n\n50) wil: Trade Y2 G2 Wil\n\twil: How did i miss that where is the instant replay?\n\n51) SilentTitan: Build Y1 Silenttitan\n\n52) wil: Trade B2 Y2 Fortcourage\n\n53) SilentTitan: Discover Y1 Silenttitan Y3 Sol\n\n54) wil: Build Y2 Fortcourage\n\n55) SilentTitan: Build Y3 Silenttitan\n\n56) wil: Trade Y2 G2 Fortcourage\n\n57) SilentTitan: Move R3 Silenttitan Sole\n\twil: these reboots are interesting..... it is like a whole new game has developed as the star systems get rearranged    I&#39;d like to discuss openings and options and play....would you be interested?  If interested, would the best place to be on the forum, or maybe a google doc?\n\tSilentTitan: I would be interested in discussing all that. I don&#39;t know where the best place to do that would be.  I have access to several teamspeak servers and/or can give you a cell number if you&#39;d like to call me.  I don&#39;t know where your comfort zone lies in contacting someone.  \n\n58) wil: Build G1 Dryden\n\n59) SilentTitan: Attack Y2 Sole South\n\twil: my cell is 410/365-6699 but I think I need to see things to figure them out....and would lose a lot in conversation...\n\n60) wil: Build G3 Wil\n\n61) SilentTitan: Move R3 Sole Fortcourage\n\twil: was there any other way out of mate in two moves?\n\tSilentTitan: take back this move and build g1 dryden\r\nnext turn build g3 wil \n\n62) wil: Sacrifice Y2 Fortcourage\nDiscover G2 Fortcourage B3 Carson\nDiscover B1 Fortcourage G3 Bedrock\n\twil: ok, but I thought you&#39;d sac your homeworld Y3 to move r3 into mine??\n\tSilentTitan: ah... I am really glad you saw that ... however the problem with doing that was that you would be able to sac the y2 in fortcourage and send back both the g2 and b2 or better yet send the g2 to wil and the y2 in sole into silenttitan ... now it becomes a race to who can capture faster. I might have won that one... but send both g2 and b1 in fortcourage back to wil and I have a big issue trying to caputre everyone. additionally you start trading ships to red and my remaining battleship is threatened.  \n\tSilentTitan: meanwhile my homeworld is left completely undefended ... which is ok... if I know I can win in a turn or two ... but three or four turns out .. that&#39;s not turned out well for me in the past\r\n\n\tSilentTitan: hummm... I&#39;m not doing the best job of explaining this .... I sack y3 and move r3 to wil. then you sack y2 in fortcourage and send g2, b1 back to wil.  Now I attack and grab one of the 2-pip. you attack and take it back. what then attack again and take it back, convention says I cannot do that. otherwise the game becomes a draw at that point. so I instead sac the g1 in silenttitan and build a r1 .. that doesn&#39;t help ..you just use the b1 to change one of the 2-pips to red and catastophe red. hurts you .. but hurts me more ... I have no 2-pip ships. \n\n63) SilentTitan: Sacrifice Y1 Sole\nMove R3 Fortcourage Carson\n\tSilentTitan: so instead I&#39;m going to go the slow route and cost you as many ships as I can until you build the G3 and/or some red for defense. \n\n64) wil: Sacrifice G2 Carson\nBuild B1 Bedrock\nBuild B2 Bedrock\n\twil: these are the kind of alternatives that would be handy...  a book would require some kind of overlay to watch it happen...  quite interesting scenarios...thanx\r\n\n\n65) SilentTitan: Sacrifice Y2 Sole\nDiscover R3 Carson Y2 Temp\nMove R3 Temp Bedrock\n\n66) wil: Sacrifice B2 Bedrock\nTrade B1 Y1 Bedrock\nTrade G1 B1 Dryden\n\n67) SilentTitan: Attack Y1 Bedrock South\n\n68) wil: Trade B1 G1 Bedrock\n\n69) SilentTitan: Attack G1 Bedrock South\n\n70) wil: Build G2 Dryden\n\n71) SilentTitan: Build Y2 Silenttitan\n\twil: Sorry to drive you so crazy when I should resign, I am just seeing to what trouble one can put one through...how am I doing?\r\n\n\tSilentTitan: you are doing well.. One of the very main points of the game is... &quot;The person who wins is the one who makes the fewest mistakes&quot;  Therefore, it is always in ones best interest to hang in as long as possible you never know when the other guy will make a mistake. I told you I won into 2 place by using a trick in the last turn of the game and the other guy fell for it. \n\n72) wil: Discover G1 Dryden Y2 Fortcourage\n\n73) SilentTitan: Discover Y1 Silenttitan G3 Tic\n\n74) wil: Trade G2 Y2 Dryden\n\n75) SilentTitan: Build G2 Silenttitan\n\n76) wil:\nBuild G2 Fortcourage\n\n77) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Bedrock Fortcourage\nMove G1 Fortcourage Wil\n\n78) wil: Trade G2 B2 Wil\n\n79) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 Wil\nBuild G2 Wil\nCatastrophe Wil Green\n\n80) wil: Move G1 Fortcourage Wil\n\n81) SilentTitan: Build Y2 Bedrock\n\n\twil: ah, I see, I somehow didn&#39;t read the second one...makes sense....I had nowhere to turn then, capturing would have allowed you to move one in, which I saw, but didn&#39;t se this.  I love learning, now if I can only remember!\n\twil: ah, I see, I somehow didn&#39;t read the second one...makes sense....I had nowhere to turn then, capturing would have allowed you to move one in, which I saw, but didn&#39;t se this.  I love learning, now if I can only remember!\n\twil: can&#39;t build a three, and get it home, you sac y2 and swoop in, thx forthe lesson!\n\tSilentTitan: You do better with each game we play ... so obviously you are remembering parts of it... tying it all together is something I&#39;m still working on.  This game is deceptively difficult... it seems straight forward but there are hiccups in the thinking at various points. Also notice this one went over 40 turns.  very seldom does that happen except where both players are committed to running it down to the end to see what happens.  Either way we were 20+ maybe even 30+ when you decided to see what would happen.  Anything over 20 means you are getting better at playing ... anything over 30 means you&#39;re a danger to everyone on the ladder. \n\twil: Danger, Danger Wil Robinson....   It is quite the game and I look forward to learning more and absolutely appreciate your assistance to date.\n\nHomeworlds Online (SDG# 23888)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.5, Ended: 2013.5.15\nParticipants: wil (S), Argel (N)\nWinner: wil\n\n1) Argel: Homeworld Y3 G3 R3 *\n\n2) wil: Homeworld R3 B2 G3\n\n3) Argel: Build R1 Argel\n\twil: Howdy Angel, I&#39;m fairly new to the game and trying to play a lot to learn....have you played much??\n\twil: as discussed on the other game....unless you are testing some new idears...we could start over...in general two sizes in your binary homeworld star provides better protection (two systems to get from one homeworld to the other) also in your homeworld you&#39;d like red because you want to be able to defend, green because you need it to grow, and blue because you need it to change colors...yellow is for moving, and is important...but can be aquired through growing and changing (as can red....but blue and green are required as far as I know, not in your star, but being present)  \r\n\n\n4) wil: Build G1 Wil\n\n5) Argel: Discover R1 Argel G2 Galata\n\n6) wil: Build G1 Wil\n\n\twil: Your are going to need trade capability in your homeworld...you&#39;ll need to eventually build to a blue star, get both transportation (yellow) and blue there and get it back to your homeworld....just my thoughts...\n\twil: Argel, I&#39;ve been on a rapid path of learning this game in the past few months.  I am open to playing more and discussing what we can learn from one another about its complexities.\n\nHomeworlds Online (SDG# 23889)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.5.5, Ended: 2013.5.25\nParticipants: Argel (S), zoltar (N), wil (E)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 R1 G3\n\n2) wil: Homeworld R3 B1 G3\n\n3) Argel: Homeworld R3 B3 R3 *\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Angel, have you played before? You really don&#39;t want to have stars the same size, as it puts your homeworld directly next to mine in distance. Also, you need to have green to grow ships. You&#39;re only first move here would be to exchange your R3 for a G3. Perhaps you want to undo your move and try &quot;H R3 B2 G3&quot; which would be a much better stating move. \n\tzoltar: Do you want to alter your starting position while you still can, or should I just make a move?\n\n5) wil: Build G1 Wil\n\n6) Argel: Trade R3 G3 Argel\n\n7) zoltar: Trade G1 Y1 Zoltar\n\n8) wil: Trade G1 Y1 Wil\n\n9) Argel: Build G1 Argel\n\n10) zoltar: Build Y1 Zoltar\n\n11) wil: Build G1 Wil\n\n12) Argel: Trade G1 Y1 Argel\n\twil: I just now noticed it is aRgel not Angel...my bad...    I&#39;d like to discuss openings and options and play....would you be interested?  If interested, would the best place to be on the forum, or maybe a google doc?\n\n13) zoltar: Trade Y1 R1 Zoltar\n\n14) wil: Trade G1 R1 Wil\n\n15) Argel: Build G1 Argel\n\n16) zoltar: Build G1 Zoltar\n\n17) wil: Build G1 Wil\n\n18) Argel: Trade G1 R1 Argel\n\n19) zoltar: Trade G1 B1 Zoltar\n\n20) wil: Trade G1 B1 Wil\n\n21) wil: Build R2 Wil\n\twil: first time in a three way playin it safe...\n\tzoltar: Weak moves aren&#39;t necessarily saver. You could have bought an R2 then flipped it to blue next move, and that would have made your homeworld much &#39;safer&#39;. \n\twil: nice tip!  thx, I didn&#39;t see that.  Yes growng bigger pieces when you can, gotta keep that in mind.  (currently refraining from backing up so to cement the lesson)\r\n\n\twil: nice tip!  thx, I didn&#39;t see that.  Yes growng bigger pieces when you can, gotta keep that in mind.  (currently refraining from backing up so to cement the lesson)\r\n\n\n22) zoltar: Build R2 Zoltar\n\twil: This zero/time is up feature when you&#39;ve only been gone a couple of hours needs fixing....when someone is way behind and finally takes action, the next player is suddenly behind...\r\n\r\nSo what do we do now, play a two player game with lots of pieces?   You&#39;ve got an easy shot waltzing in and aquiring a  g3 for  free...\n\n23) wil: Discover R2 Wil G2 Wtf\n\tzoltar: Yeah, if it didn&#39;t have the &#39;hard time&#39; option, then now we could choose to make Argel resign or terminate the game. up to you if you want to continue, but yeah, it gives me an advantage.\n\n24) zoltar: Discover R1 Zoltar G3 Greenslime\n\twil: I like losing...being new it is the best way for me to learn.  If you don&#39;t mind, I&#39;d like to play it out and see how you take advantage of the advantage and how I can counter...\n\n25) wil: Build R2 Wil\n\n26) zoltar: Build R2 Zoltar\n\n27) wil: Build R3 Wtf\n\n28) zoltar: Build R3 Greenslime\n\n29) wil: Sacrifice Y1 Wil\nMove R2 Wtf Argel\n\n30) zoltar: Trade R2 Y2 Zoltar\n\n31) wil: Trade R2 Y2 Argel\n\n32) zoltar: Sacrifice Y2 Zoltar\nMove R1 Greenslime Wtf\nMove R1 Wtf Wil\nCatastrophe Wil R\n\n33) wil: Attack R1S Argel\n\n34) zoltar: Move B1 Zoltar Greenslime\n\twil: hate that, forgot that altogther, great play!  \n\n35) wil: Trade R1 G1 Argel\n\n36) zoltar: Build B1 Greenslime\n\tzoltar: Yeah, any time an opponent constructs either a Y2 or Y3, you&#39;ve always got to ask yourself, &quot;is there any weakness a double (or triple if the case) move can exploit, either by focusing on hyperloading one color in one location, or making two simultaneous threads in two different locations.\n\n37) wil: Build R1 Wtf\n\n38) zoltar: Trade R3 Y3 Greenslime\n\twil: nice hint thanx much!\r\n\n\n39) wil: Sacrifice Y2 Argel\nMove R3 Wtf Argel\nMove B1 Wil Wtf\n\n40) zoltar: Build B2 Greenslime\n\n\tzoltar: Leaving yourself completely void everywhere in the yellow market when your opponent can make serious threats is also something to avoid....\n\tzoltar: The Rebel Base is now in range of the Death Star. Prepare to fire the Doomsday Machine! Stand by....\n\twil: yes I see...  I thought I had one yellow to move in when you created your third blue...one step behind....day late....dollar short...and homeworld about to be anihilated...thanx for the lessons...  \n\nHomeworlds Online (SDG# 23891)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.6, Ended: 2013.5.17\nParticipants: dlwillson (S), goblin981 (N)\nWinner: dlwillson\n\n1) goblin981: H G3 B1 R3\n\n2) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n3) goblin981: B R1 Goblin981\n\n4) dlwillson: B G1 Dlwillson\n\n5) goblin981: T R1 Y1 Goblin981\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) goblin981: B Y2k Goblin981\n\n8) dlwillson: T Y1 R1 Dlwillson\n\n\nHomeworlds Online (SDG# 23892)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.6, Ended: 2013.5.23\nParticipants: SilentTitan (S), Subhan64 (N)\nWinner: SilentTitan\n\n1) Subhan64: Homeworld Y3 B1 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Subhan64: Discover G1 Subhan64 B2 Smurfcity\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Subhan64: Trade G1 Y1 Smurfcity\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Subhan64: Build G1 Subhan64\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) Subhan64: Trade G1 R1 Subhan64\n\n12) SilentTitan: Trade G1 Y1 Sol\n\n13) Subhan64: Move Y1 Smurfcity Sol\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) Subhan64: Trade Y1 G1 Sol\n\n16) SilentTitan: Discover Y1 Sol Y1 Sole\n\n17) Subhan64: Discover R1 Subhan64 Y2 Bigbird\n\n18) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n19) Subhan64: Build G1 Subhan64\n\n20) SilentTitan: Build Y2 Silenttitan\n\n21) Subhan64: Move R1 Bigbird Sole\n\n22) SilentTitan: Discover Y1 Sole G2 Tic\n\n23) Subhan64: Move G1 Subhan64 Tic\n\n24) SilentTitan: Discover Y1 Tic B1 Tac\n\n25) Subhan64: Move R1 Sole Soul\n\n26) SilentTitan: Discover Y1 Soul Y1 Toe\n\n27) Subhan64: Build G1 Subhan64\n\n28) SilentTitan: Build G2 Silenttitan\n\n29) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Sol\nBuild G3 Subhan64\nBuild R1 Soul\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Toe\nBuild Y3 Tac\nBuild G3 Silenttitan\n\n31) Subhan64: Trade G3 Y3 Subhan64\n\n32) SilentTitan: Trade G2 R2 Silenttitan\n\n33) Subhan64: Sacrifice Y3 Subhan64\nMove R1 Soul Silenttitan\nMove R1 Soul Silenttitan\nMove G1 Tic Subhan64\nCatastrophe Silenttitan Red\n\n34) SilentTitan: Trade G3 R3 Silenttitan\n\n35) Subhan64: Trade G1 R1 Subhan64\n\n36) SilentTitan: Move Y2 Silenttitan Subhan64\n\n37) Subhan64: Sacrifice G2 Sol\nBuild R1 Subhan64\nBuild R1 Subhan64\n\n38) SilentTitan: Sacrifice R3 Silenttitan\nAttack R1 Subhan64 North\nAttack R1 Subhan64 North\nAttack R1 Subhan64 North\n\n\nHomeworlds Online (SDG# 23904)\nVariants: &quot;No undo, Unrated, Hard time&quot;\nStarted: 2013.5.6, Ended: 2013.5.9\nParticipants: Subhan64 (S), Argel (N)\nWinner: Argel\n\n1) Argel: Homeworld B1 G3 R3 *\n\n\nHomeworlds Online (SDG# 23905)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.6, Ended: 2013.5.13\nParticipants: wil (S), Subhan64 (N)\nWinner: wil\n\n1) Subhan64: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 R1 G3\n\n3) Subhan64: Build G1 Subhan64\n\twil: good luck, looking forward to great game!\r\n\n\n4) wil: Build G1 Wil\n\n\tSubhan64: Hmm, I seem to not be getting my turn notifications, sorry :(\n\twil: phooey!!  pheel phree to try again, I&#39;d love a game!\n\nHomeworlds Online (SDG# 23917)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.6, Ended: 2013.5.18\nParticipants: ajo (S), Subhan64 (N)\nWinner: ajo\n\n1) Subhan64: Homeworld Y2 B3 G3\n\tajo: It&#39;s been a looong time since I played Homeworlds! I might be a tiny bit rusty. Let&#39;s see.\n\n2) ajo: Homeworld B3 R1 G3\n\tSubhan64: me too, but let&#39;s have at it!\r\n\n\n3) Subhan64: Build G1 Subhan64\n\n4) ajo: Build G1 Ajo\n\n5) Subhan64: Trade G3 Y3 Subhan64\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) Subhan64: Build Y1 Subhan64\n\n8) ajo: Build Y1 Ajo\n\n9) Subhan64: Discover Y1 Subhan64 B1 Smurfberry\n\n10) ajo: Discover Y1 Ajo G2 Alpha\n\n11) Subhan64: Discover Y1 Smurfberry G2 Kermit\n\n12) ajo: Build G1 Ajo\n\n13) Subhan64: Trade Y3 G3 Subhan64\n\tajo: This is where it starts getting tricky, not having the physical pieces set up in front of me...\n\n14) ajo: Trade G1 B1 Ajo\n\n15) Subhan64: Trade G1 B1 Subhan64\n\n16) ajo: Move B1 Ajo Alpha\n\n17) Subhan64: Build G1 Subhan64\n\n18) ajo: Build G1 Ajo\n\n19) Subhan64: Discover G3 Subhan64 R1 Elmos_world\n\n20) ajo: Move G1 Ajo Alpha\n\n21) Subhan64: Build G2 Elmos_world\n\n22) ajo: Build G3 Ajo\n\n23) Subhan64: Build G3 Subhan64\n\n24) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y1 Alpha\nBuild Y2 Alpha\n\n25) Subhan64: Sacrifice G3 Elmos_world\nBuild G3 Elmos_world\nBuild Y2 Kermit\nBuild B1 Subhan64\n\n26) ajo: Sacrifice Y2 Alpha\nMove B1 Alpha Elmos_world\nMove B1 Elmos_world Subhan64\nCatastrophe Subhan64 Blue\n\tajo: I think that was a mistake! :)\n\n\tSubhan64: apparently so :( Thanks for the game!\n\nHomeworlds Online (SDG# 23927)\nStarted: 2013.5.8, Ended: 2013.5.20\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 G2 R3 *\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build R1 Wil\n\twil: bein stupid testing limits and did it wrong!\n\n5) ts52: Trade G1 R1 Ts52\n\tts52: no worries\n\n6) wil: Discover R1 Wil B1 Fortcourage\n\n7) ts52: Build G1 Ts52\n\n8) wil: Trade R1 G1 Fortcourage\n\n9) ts52: Discover G1 Ts52 B3 Grover\n\n10) wil: Build R1 Wil\n\n11) ts52: Build R1 Ts52\n\n12) wil: Build R2 Wil\n\n13) ts52: Build R2 Ts52\n\n14) wil: Move R2 Wil Fortcourage\n\n15) ts52: Move R2 Ts52 Grover\n\n16) wil: Build R2 Wil\n\n17) ts52: Build R3 Grover\n\n18) wil: Build R3 Fortcourage\n\twil: My faux pas opening sure makes for a wierd game....I&#39;d like to discuss openings and options and play....would you be interested?  Would the best place to be on the forum, or maybe a google doc?\n\n19) ts52: Trade R3 Y3 Grover\n\tts52: I don&#39;t frequent the forums, but I could. Whichever you prefer. I&#39;m squatront@gmail.com if you want to use google. I know Andy&#39;s posted something about opening strategies, but I can&#39;t recall where. Might&#39;ve been in a zine and not online.\n\n20) wil: Discover R2 Wil B1 Tortuga\n\tts52: Check out http://forums.superdupergames.org/viewtopic.php?t=1467\n\n21) ts52: Build R3 Grover\n\n22) wil: Trade R2 G2 Tortuga\n\n23) ts52: Move R3 Grover Tortuga\n\twil: yeah, I started there....I just added there...it seems fairly dead....\n\n24) wil: Discover R1 Wil Y1 Dryden\n\n25) ts52: Build R2 Grover\n\tts52: Ah right, now I see that you posted there.\n\twil: well that looks like game over eh?  many major mistakes...can&#39;t move, you can move two guys in...\n\n26) wil: Trade R2 B2 Fortcourage\n\tts52: Yeah, it shouldn&#39;t be long now.\n\n27) ts52: Attack G2 Tortuga\n\n28) wil: Trade G1 Y1 Fortcourage\n\n29) ts52: Build R2 Tortuga\n\n30) wil: Move B2 Fortcourage Wil\n\n31) ts52: Move R2 Grover Dryden\n\n32) wil: Trade R3 Y3 Wil\n\n33) ts52: Attack R1 Dryden\n\n34) wil: Build B1 Wil\n\n35) ts52: Build Y2 Grover\n\n36) wil: Build B2 Wil\n\n37) ts52: Build R3 Grover\n\n38) wil: Discover B2 Wil G1 Bedrock\n\n39) ts52: Move Y2 Grover Tortuga\n\n40) wil: Build B3 Bedrock\n\n41) ts52: Build Y2 Tortuga\n\n42) wil: Trade B2 Y2 Bedrock\n\n43) ts52: Build G1 Ts52\n\n44) wil: Trade Y3 B3 Wil\n\n45) ts52: Sacrifice G3 Ts52\nBuild Y3 Grover\nBuild G2 Tortuga\nBuild G3 Ts52\n\twil: he&#39;s lining them up....\n\n46) wil: Build B2 Bedrock\n\n47) ts52: Move Y3 Grover Bedrock\n\tts52: I probably should&#39;ve traded for that last b2, but we&#39;ll see.\n\n48) wil: Sacrifice Y2 Bedrock\nDiscover B3 Bedrock G3 Whynot\nMove B2 Bedrock Whynot\n\twil: you&#39;ve got the forces to clean my clock thrice\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Bedrock\nBuild G3 Grover\n\n50) wil: Pass\n\twil: I&#39;m overpowered and running around like insects in a RAID commercial....\n\n51) ts52: Sacrifice Y3 Bedrock\nMove Y2 Bedrock Wil\nMove Y2 Tortuga Wil\nMove Y2 Tortuga Wil\nCatastrophe Wil Yellow\n\n52) wil: Sacrifice B2 Wil\nTrade B3 Y3 Wil\nTrade B3 Y3 Whynot\n\n53) ts52: Sacrifice Y3 Grover\nMove G1 Grover Wil\nMove G2 Tortuga Wil\nMove G2 Tortuga Wil\nCatastrophe Wil Green\n\n\twil: Yeah....I didn&#39;t see that either....I knew I was cornered...but missed how bad...while the end feels inevitable...I continue to play rope a dope (not knowing if you are old enough for the reference)\r\n\n\tts52: I think I&#39;m old enough that I should know the reference, and I know the phrase, but I&#39;m don&#39;t actually know off hand where exactly it&#39;s from.\r\nThanks for the game!\n\twil: Butt kicked...thanx!!  More stuff to watch out for.  If you are up for another give me a challenge and I&#39;ll gladly play, get whipped and learn some more.  Hopefully one day i&#39;ll be able to give you a proper run for your money....\r\n\r\nRope a Dope was what Muhamed Ali did in boxing, stood on the ropes getting pummelled watching for overconfidence, tiring, a mistake, an opening to capitalize on....of course with him...he had two things I don&#39;t...skill and intent..he did it with intent...I did it because I was not skillful and boxed into  a corner...\n\nHomeworlds Online (SDG# 23911)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.9, Ended: 2013.5.27\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\twil: Looking forward to playing one....all the way out...\n\n2) wil: Homeworld R2 B1 G3\n\tdlwillson: Well, we&#39;ll see if I can manage it.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\twil: you got no clue how bad I wanted to try h B2 G2 Y3 ....  \n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: I still think we should autostart with a small ship of our whatever big ship since that is a given...unless I guess someone may have some need to change colors first thing...\n\tdlwillson: Wouldn&#39;t it have been g2 y2 r3?\r\nAnd yes, the first move is usually &quot;I build a small green.&quot;\n\n6) wil: Trade G1 Y1 Wil\n\twil: no I was thinking I could out build Ys and then fly into catastrophe...  I just wanna machine like War Games total nuclear distruction to run all the options and watch it go with varrioius openings..\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\twil: you interested in taking part in creating booklet/pdf on homeworlds strategies?\n\tdlwillson: Not I. I barely have time to play! Check with Twoshort and Silenttitan, though.\n\n10) wil: Discover Y1 Wil G3 Fortcourage\n\n11) dlwillson: Trade Y2 R2 Dlwillson\n\tdlwillson: grabbed the wrong piece... :-)\n\n12) wil: Build Y2 Fortcourage\n\n13) dlwillson: B Y2 Field\n\n14) wil: Build Y3 Wil\n\n15) dlwillson: D Y1 Field Y3 Golden\n\n16) wil: Trade Y2 R2 Wil\n\n17) dlwillson: D Y1 Golden G2 Forest\n\n18) wil: Move R2 Wil Fortcourage\n\n19) dlwillson: B G1 Dlwillson\n\n20) wil: Discover Y2 Fortcourage B2 Dryden\n\n21) dlwillson: B Y2 Forest\n\n22) wil: Build Y3 Fortcourage\n\n23) dlwillson: B Y3 Field\n\n24) wil: Build G1 Wil\n\n25) dlwillson: Discover Y3 Field B3 Sky\n\n26) wil: M R2 Fortcourage Forest\n\n27) dlwillson: S R2 Dlwillson\nA R2 Forest\nPass\n\n28) wil: Trade Y2 G2 Dryden\n\n29) dlwillson: T G1 R1 Dlwillson\n\n30) wil: Sacrifice G3 Wil\nBuild G1 Dryden\nBuild G1 Dryden\nBuild G3 Wil\n\n31) dlwillson: M Y2 Forest Sky\n\n32) wil: Sacrifice Y3 Fortcourage\nMove G2 Dryden Dlwillson\nMove G1 Dryden Dlwillson\nMove G1 Dryden Dlwillson\nCatastrophe Dlwillson G\n\n33) dlwillson: T Y3 G3 Sky\n\n34) wil: Trade G3 R3 Wil\n\n35) dlwillson: S G3 Sky\nB Y2 Forest\nB Y3 Field\nB Y3 Sky\n\n36) wil: Sacrifice Y3 Wil\nMove R3 Wil Fortcourage\nMove R3 Fortcourage Field\nMove R3 Field Dlwillson\n\n37) dlwillson: Sacrifice Y2 Forest\nMove Y3 Field Dlwillson\nMove Y3 Sky Wil\n\n38) wil: Attack Y3 Dlwillson\n\n39) dlwillson: Attack G1 Wil\n\twil: I think this works...still figuring out how all thse things play out...\n\twil: If it doesn&#39;t it is game over as I am in a world of hurt...\n\twil: If it doesn&#39;t it is game over as I am in a world of hurt...\n\n\tdlwillson: Yes. Now, I&#39;m sure you miscounted!\n\twil: yeah....I did...I was one step behind when I thought I was one step ahead...   so I just made one more sucide mission as I prepared for my demise...\n\tdlwillson: I&#39;m up for another, if you like.\n\twil: great, thanx\n\nHomeworlds Online (SDG# 23932)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.11, Ended: 2013.5.18\nParticipants: wil (S), goblin981 (N)\nWinner: wil\n\n1) goblin981: H G3 B2 Y3\n\n2) wil: Homeworld B2 R1 G3\n\n\twil: Just joined and am learning the game and look forward to seeing how I do here...\n\twil: resigned?  What up?\n\nHomeworlds Online (SDG# 23931)\nVariants: &quot;No undo, Unrated, Hard time&quot;\nStarted: 2013.5.11, Ended: 2013.5.18\nParticipants: Cakemaster77 (S), Argel (N)\nWinner: Cakemaster77\n\n1) Argel: Homeworld B3 G2 R3 *\n\tCakemaster77: hi\r\n\n\n2) Cakemaster77: Homeworld B2 G1 Y3\n\tCakemaster77: B1, G2, Y3\n\tCakemaster77: homeworld B1, G2, Y3\n\n\tCakemaster77: I&#39;m new here\n\nHomeworlds Online (SDG# 23918)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.11, Ended: 2013.5.14\nParticipants: SilentTitan (S), Kane (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 23933)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.11, Ended: 2013.5.14\nParticipants: dlwillson (S), Kane (N)\nWinner: dlwillson\n\n\nHomeworlds Online (SDG# 23986)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.19, Ended: 2013.6.22\nParticipants: zoltar (S), MagicJohn (N)\nWinner: zoltar\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\tzoltar: gl!\n\tMagicJohn: Probably need it..... Saw your rating... Couldn&#39;t count that high until I was 28......\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) zoltar: Build G1 Zoltar\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MagicJohn: Build Y2 Magicjohn\n\n8) zoltar: Build Y2 Zoltar\n\n9) MagicJohn: Discover Y2 Magicjohn G3 Herbert\n\n10) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) zoltar: Build G1 Zoltar\n\n13) MagicJohn: Trade Y1 R1 Magicjohn\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) MagicJohn: Trade G1 B1 Magicjohn\n\n16) zoltar: Build Y1 Zoltar\n\n17) MagicJohn: Move Y2 Herbert Greenpea\n\n18) zoltar: Move Y1 Zoltar Greenpea\n\n19) MagicJohn: Build Y2 Greenpea\nCatastrophe Greenpea Yellow\n\n20) zoltar: Build Y1 Zoltar\n\n21) MagicJohn: Build G1 Magicjohn\n\n22) zoltar: Trade Y1 B1 Zoltar\n\n23) MagicJohn: Build G1 Magicjohn\n\n24) zoltar: Discover B1 Zoltar G1 Greenpea\n\n25) MagicJohn: Discover G1 Magicjohn Y3 Bruton\n\n26) zoltar: Build G2 Zoltar\n\n27) MagicJohn: Trade G3 Y3 Magicjohn\n\n28) zoltar: Discover G2 Zoltar B1 Blueberry\n\n\tMagicJohn: Ewww, Sorry about that. Our daughter came in from out of state and time got away from me......\n\tzoltar: No problem. We can play a game sometime without the &#39;hard time&#39; restriction that ladder games impose, when you have more time.\n\nHomeworlds Online (SDG# 23980)\nVariants: &quot;No undo, Unrated, Hard time&quot;\nStarted: 2013.5.20, Ended: 2013.6.13\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Argel: Homeworld B3 G2 R3 *\n\n3) wil: Build G1 Wil\n\n4) Argel: Build R1 Argel\n\n5) wil: Discover G1 Wil Y3 C1\n\n6) Argel: Trade R1 Y1 Argel\n\n7) wil: Build G1 Wil\n\n8) Argel: Build Y1 Argel\n\n9) wil: Build G1 Wil\n\n10) Argel: Discover Y1 Argel B1 Atenas\n\n11) wil: Trade G1 Y1 Wil\n\n12) Argel: Trade Y1 G1 Atenas\n\n13) wil: Build G2 C1\n\n14) Argel: Build G2 Atenas\n\n15) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\n\n16) Argel: Trade G2 Y2 Atenas\n\n17) wil: Discover G3 Wil Y3 C2\n\n18) Argel: Discover Y2 Atenas G3 Rhodes\n\n19) wil: Move Y1 Wil C1\n\n20) Argel: Build G2 Atenas\n\n21) wil: Trade G3 B3 Wil\n\n22) Argel: Build G3 Atenas\n\n23) wil: Trade Y1 R1 Wil\n\n24) Argel: Trade G3 B3 Atenas\n\n25) wil: Build G3 Wil\n\n26) Argel: Trade G1 Y1 Atenas\n\n27) wil: Discover Y1 C1 G1 D1\n\n28) Argel: Trade B3 Y3 Atenas\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 D1\nBuild R1 Wil\n\n\nHomeworlds Online (SDG# 23940)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.20, Ended: 2013.6.12\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: Welcome back\r\n\n\n2) wil: Homeworld Y3 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\twil: thx..still experimenting and learning...(as you can see with this opening)\n\n4) wil: B G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: T G1 Y1 Wil\n\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: B G1 Wil\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) wil: Build Y2 Wil\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) wil: Discover Y1 Wil G1 Fortcourage\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n14) wil: Build G2 Wil\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Sole\n\n16) wil: Trade G1 R1 Wil\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n18) wil: Build R1 Wil\n\twil: I like that move!\n\twil: Well not for me....but in theory...\n\n19) SilentTitan: Trade Y2 B2 Silenttitan\n\n20) wil: Build Y2 Fortcourage\n\n21) SilentTitan: Trade Y3 G3 Sole\n\n22) wil: Discover Y1 Fortcourage Y3 Dryden\n\n23) SilentTitan: Move Y1 Sol Fortcourage\n\n24) wil: Sacrifice R1 Wil\nAttack Y1 Fortcourage\n\n25) SilentTitan: Sacrifice B2 Silenttitan\nTrade G3 R3 Sole\nTrade Y3 G3 Silenttitan\n\n26) wil: Trade Y2 B2 Wil\n\n27) SilentTitan: Build Y2 Sol\n\n28) wil: Sacrifice Y2 Fortcourage\nMove G2 Wil Fortcourage\nDiscover G2 Fortcourage Y3 Ynot\n\n29) SilentTitan: Move Y2 Sol Silenttitan\n\n30) wil: Build Y2 Fortcourage\n\n31) SilentTitan: Move G1 Silenttitan Sole\n\n32) wil: Build G1 Wil\n\n33) SilentTitan: Build G2 Silenttitan\n\n34) wil: Sacrifice G3 Wil\nBuild G2 Ynot\nBuild G3 Wil\nBuild B1 Wil\n\n35) SilentTitan: Trade G2 R2 Silenttitan\n\n36) wil: Move B2 Wil Fortcourage\n\n37) SilentTitan: Move R3 Sole Fortcourage\n\n38) wil: Sacrifice B2 Fortcourage\nTrade Y1 R1 Fortcourage\nTrade Y2 R2 Fortcourage\n\n39) SilentTitan: Sacrifice Y2 Sol\nMove R3 Fortcourage Ynot\nMove R2 Silenttitan Sole\n\n40) wil: Discover G2 Ynot Y2 Bedrock\n\n41) SilentTitan: Attack G2 Ynot South\n\n42) wil: Sacrifice G3 Wil\nBuild G2 Bedrock\nBuild G3 Bedrock\nBuild G3 Wil\n\n43) SilentTitan: Move G1 Sole Bedrock\nCatastrophe Bedrock Green\n\n44) wil: Build B1 Wil\n\n45) SilentTitan: Build G1 Silenttitan\n\n46) wil: Discover G1 Wil Y1 Phooey\n\n47) SilentTitan: Build G2 Silenttitan\n\n48) wil: Move G1 Phooey Dryden\n\n49) SilentTitan: Move G2 Silenttitan Sole\n\n50) wil: Build G2 Wil\n\n51) SilentTitan: Trade G2 B2 Sole\n\n52) wil: Move B1 Wil Fortcourage\n\n53) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Ynot\nBuild G3 Ynot\nBuild G3 Silenttitan\n\n54) wil: Trade R2 Y2 Fortcourage\n\n55) SilentTitan: Discover G3 Ynot Y1 Tic\n\n56) wil: Build Y2 Fortcourage\n\n57) SilentTitan: Sacrifice Y1 Sole\nDiscover G2 Ynot Y1 Tac\n\n58) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Fortcourage\nBuild R2 Fortcourage\n\n59) SilentTitan: Move R3 Ynot Tic\n\n60) wil: Move G2 Wil Fortcourage\n\n61) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Silenttitan Ynot\nMove G2 Ynot Fortcourage\n\n62) wil: Sacrifice Y2 Fortcourage\nMove G2 Fortcourage Dryden\nMove G1 Dryden Silenttitan\n\n63) SilentTitan: Sacrifice R3 Tic\nAttack Y2 Fortcourage South\nAttack R2 Fortcourage South\nAttack R1 Fortcourage South\n\n64) wil: Build B3 Fortcourage\n\n65) SilentTitan: Sacrifice Y2 Fortcourage\nMove B2 Sole Fortcourage\nMove G3 Tic Dryden\nCatastrophe Fortcourage Blue\n\n66) wil: Move G2 Dryden Silenttitan\n\n67) SilentTitan: Sacrifice R2 Sole\nAttack G1 Silenttitan South\nAttack G2 Silenttitan South\n\twil: didn&#39;t go the way I expected....don&#39;t know why I didn&#39;t think you&#39;d use the big gun....\n\n68) wil: Build R2 Wil\n\tSilentTitan: yeah... you pack enough ships in a system and it becomes a huge target.\n\n69) SilentTitan: Trade G2 B2 Silenttitan\n\twil: yeah....I&#39;d like to think I &#39;m learning by making mistakes...but I think I&#39;m just making mistakes...\n\n70) wil: Build G2 Wil\n\tSilentTitan: well either way you&#39;ve keep me hopping again this game\n\n71) SilentTitan: Sacrifice R1 Fortcourage\nAttack Y1 Dryden South\n\twil: hopping?  I am struggling to stay alive and you are gaining armament everywhere....26 to 12 by pip count....and I blew my attack all together...can&#39;t get there from here...it&#39;s been a matter of time for a while..\n\n72) wil: Discover R2 Wil B1 Phoeey\n\n73) SilentTitan: Sacrifice B2 Silenttitan\nTrade G1 Y1 Silenttitan\nTrade G2 Y2 Fortcourage\n\n74) wil: Move G2 Wil Phoeey\n\n75) SilentTitan: Build Y2 Silenttitan\n\n76) wil: Trade R2 Y2 Phoeey\n\n77) SilentTitan: Sacrifice G1 Ynot\nBuild Y3 Fortcourage\n\n78) wil: Build G1 Wil\n\n79) SilentTitan: Discover G3 Dryden B1 Toe\n\n80) wil: Trade G3 R3 Wil\n\twil: always nice to have someone else use your investments...\n\twil: always nice to have someone else use your investments...\n\n81) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Fortcourage Wil\nMove G3 Toe Wil\n\n82) wil: Attack G3 Wil\n\n83) SilentTitan: Sacrifice R2 Fortcourage\nAttack R3 Wil South\nAttack G3 Wil South\n\n\tSilentTitan: Thanks for playing.  made it out to 43 turns again\n\nHomeworlds Online (SDG# 23919)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.20, Ended: 2013.5.29\nParticipants: Subhan64 (S), wil (N)\nWinner: Subhan64\n\n1) wil: H Y2 B1 G3\n\n2) Subhan64: Homeworld Y3 B1 G3\n\twil: Thx 4 da game!\n\n3) wil: B G1 Wil\n\n4) Subhan64: Build G1 Subhan64\n\n5) wil: Discover G1 Wil Y3 D1\n\n6) Subhan64: Trade G1 Y1 Subhan64\n\n7) wil: Build G1 Wil\n\n8) Subhan64: Build Y1 Subhan64\n\n9) wil: Trade G1 Y1 Wil\n\n10) Subhan64: Trade Y1 G1 Subhan64\n\n11) wil: Build G1 Wil\n\n12) Subhan64: Trade G1 R1 Subhan64\n\n13) wil: Trade G1 R1 Wil\n\n14) Subhan64: Build G1 Subhan64\n\n15) wil: Build G1 Wil\n\n16) Subhan64: Discover G1 Subhan64 Y2 Big_bird\n\n17) wil: Discover G1 Wil Y3 Ynot\n\n18) Subhan64: Build G2 Big_bird\n\n19) wil: Build G2 Wil\n\n20) Subhan64: Discover G2 Big_bird G3 Lrrr\n\n21) wil: Sacrifice G3 Wil\nBuild G2 Ynot\nBuild G3 Wil\nBuild R1 Wil\n\n22) Subhan64: Sacrifice G2 Lrrr\nBuild G2 Big_bird\nBuild G3 Subhan64\n\n23) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild Y1 Wil\n\n24) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild Y2 Subhan64\nBuild R2 Subhan64\n\n25) wil: Move R2 Wil D1\n\n26) Subhan64: Move R2 Subhan64 Big_bird\n\n27) wil: Move R1 Wil Ynot\n\n\n28) Subhan64: Trade Y1 B1 Subhan64\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Ynot\nBuild R3 D1\n\n30) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild R3 Subhan64\nBuild R3 Big_bird\n\n31) wil: Discover R3 D1 B2 Ohwell\n\n32) Subhan64: Sacrifice B1 Subhan64\nTrade G1 Y1 Big_bird\n\n33) wil: Build G1 D1\n\n34) Subhan64: Sacrifice Y2 Subhan64\nMove Y1 Big_bird D1\nMove Y1 D1 Wil\nCatastrophe Wil Yellow\n\n35) wil: Trade R1 Y1 Wil\n\n36) Subhan64: Move R3 Big_bird D1\n\n37) wil: Move G1 D1 Ohwell\n\n\n\n38) Subhan64: Trade G3 B3 Subhan64\n\n39) wil: Build R1 D1\n\n40) Subhan64: Sacrifice B3 Subhan64\nTrade R3 B3 D1\nTrade R2 B2 Big_bird\nTrade G2 B2 Big_bird\n\n41) wil: Move R2 D1 Big_bird\n\n42) Subhan64: Sacrifice R1 Subhan64\nAttack R2 Big_bird\n\n43) wil: Sacrifice G3 Wil\nBuild G2 Ohwell\nBuild G3 Ynot\nBuild G3 Wil\n\twil: still learning how that works....&#39;nother lesson is always good!\n\n44) Subhan64: Trade R2 Y2 Big_bird\n\n45) wil: Sacrifice Y1 Wil\nMove R3 Ohwell D1\n\n46) Subhan64: Sacrifice Y2 Big_bird\nMove B3 D1 Wil\nMove B2 Big_bird Wil\n\n47) wil: Trade G3 B3 Wil\n\n\n\n\n\n48) Subhan64: Move B2 Big_bird Wil\nCatastrophe Wil Blue\n\tSubhan64: good game, thanks!\n\n\twil: fun game to learn...thanx for the lessons\n\twil: thanx!!\n\nHomeworlds Online (SDG# 23982)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.21, Ended: 2013.5.25\nParticipants: Subhan64 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y3 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Subhan64: Build G1 Subhan64\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Subhan64: Build G1 Subhan64\n\n7) goulo: Build Y1 Goulo\n\n8) Subhan64: Discover G1 Subhan64 G1 Kermie\n\n9) goulo: Build G2 Goulo\n\n10) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Kermie\nBuild G2 Subhan64\nBuild G3 Subhan64\n\n11) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild G3 Goulo\nBuild Y1 Goulo\n\n12) Subhan64: Trade G2 Y2 Subhan64\n\n13) goulo: Discover G3 Goulo B3 Mirtelego\n\n14) Subhan64: Sacrifice Y2 Subhan64\nDiscover G2 Kermie G2 Scooter\nDiscover G3 Subhan64 R1 Elmo\n\n15) goulo: Move Y1 Goulo Mirtelego\n\n16) Subhan64: Sacrifice G2 Scooter\nBuild G2 Subhan64\nBuild G2 Subhan64\n\n17) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y2 Goulo\nBuild Y2 Mirtelego\n\n18) Subhan64: Trade G2 Y2 Subhan64\n\n19) goulo: Sacrifice G3 Goulo\nBuild G2 Mirtelego\nBuild G3 Goulo\nBuild Y3 Mirtelego\n\n20) Subhan64: Sacrifice G2 Subhan64\nBuild G2 Elmo\nBuild Y3 Subhan64\n\n21) goulo: Sacrifice Y2 Goulo\nMove Y1 Mirtelego Elmo\nMove Y1 Elmo Subhan64\nCatastrophe Subhan64 Y\n\n22) Subhan64: Sacrifice G3 Elmo\nBuild G3 Subhan64\nPass\nPass\n\n23) goulo: Sacrifice Y2 Mirtelego\nMove G2 Mirtelego Subhan64\nMove G3 Mirtelego Subhan64\nCatastrophe Subhan64 G\n\n\tgoulo: Thanks for the game!\n\nHomeworlds Online (SDG# 23985)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.21, Ended: 2013.7.31\nParticipants: ajo (S), agentofchaos (N)\nWinner: ajo\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) ajo: Homeworld R1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) ajo: Build G1 Ajo\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) agentofchaos: Discover Y1 Agentofchaos G3 Ghostar\n\n8) ajo: Build G1 Ajo\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) ajo: Build G2 Ajo\n\n11) agentofchaos: Trade G1 R1 Agentofchaos\n\n12) ajo: Discover G2 Ajo B3 Central\n\n13) agentofchaos: Build R1 Agentofchaos\n\n14) ajo: Build Y1 Ajo\n\n15) agentofchaos: Trade R1 Y1 Agentofchaos\n\n16) ajo: Move Y1 Ajo Central\n\n17) agentofchaos: Build Y2 Ghostar\n\n18) ajo: Build Y2 Central\n\n19) agentofchaos: Build Y2 Agentofchaos\n\n20) ajo: Trade Y1 R1 Central\n\n21) agentofchaos: Move R1 Agentofchaos Ghostar\n\n22) ajo: Build R2 Central\n\n23) agentofchaos: Build R2 Ghostar\n\n24) ajo: Trade R1 B1 Central\n\n25) agentofchaos: Trade Y1 B1 Agentofchaos\n\n26) ajo: Build Y1 Central\n\n27) agentofchaos: Move B1 Agentofchaos Ghostar\n\n28) ajo: Discover B1 Central G2 Alpha\n\n29) agentofchaos: Build B2 Ghostar\n\n30) ajo: Build B2 Alpha\n\n31) agentofchaos: Discover B2 Ghostar G2 Firencola\n\n32) ajo: Sacrifice Y1 Central\nDiscover B1 Alpha G3 Beta\n\tajo: build b2 Alpha\n\n33) agentofchaos: Build B3 Firencola\n\tajo: Whoops, wrong box. :)\n\tagentofchaos: I&#39;ve done that a few times :-)\n\n34) ajo: Build B3 Beta\n\n35) agentofchaos: Sacrifice Y2 Ghostar\nMove B3 Firencola Beta\nMove B2 Firencola Beta\nCatastrophe Beta B\n\n36) ajo: Build R1 Central\n\n37) agentofchaos: Build B1 Ghostar\n\n38) ajo: Build B2 Alpha\n\n39) agentofchaos: Build B3 Ghostar\n\n40) ajo: Sacrifice Y2 Central\nMove R1 Central Alpha\nMove B2 Alpha Ghostar\nCatastrophe Ghostar Blue\n\n41) agentofchaos: Build R3 Ghostar\n\n42) ajo: Sacrifice G2 Central\nBuild R3 Central\nBuild R3 Alpha\n\n43) agentofchaos: Build Y1 Agentofchaos\n\tajo: I feel better now. :)\n\n44) ajo: Sacrifice Y3 Ajo\nMove R1 Alpha Ghostar\nMove B2 Alpha Ghostar\nMove R3 Central Ajo\nCatastrophe Ghostar Red\n\tagentofchaos: Not sure how I feel though!\n\n45) agentofchaos: Discover Y1 Ghostar G2 Hadeon\n\n46) ajo: Build R1 Ajo\n\n47) agentofchaos: Trade Y2 R2 Agentofchaos\n\n48) ajo: Trade R3 Y3 Ajo\n\n49) agentofchaos: Discover R2 Agentofchaos Y3 Ergovore\n\n50) ajo: Move G1 Ajo Central\n\n51) agentofchaos: Build Y1 Agentofchaos\n\n52) ajo: Build Y2 Ajo\n\n53) agentofchaos: Build Y2 Hadeon\n\n54) ajo: Build B1 Ghostar\n\n55) agentofchaos: Build G1 Agentofchaos\n\n56) ajo: Build G2 Central\n\n57) agentofchaos: Move G1 Agentofchaos Ergovore\n\n58) ajo: Build G3 Ajo\n\n59) agentofchaos: Build Y2 Hadeon\n\n60) ajo: Move Y2 Ajo Central\n\n61) agentofchaos: Discover Y2 Hadeon Y3 Agrajag\n\n62) ajo: Trade G1 B1 Central\n\n63) agentofchaos: Build G1 Ergovore\n\n64) ajo: Move G3 Ajo Ergovore\n\n\tagentofchaos: well played\n\nHomeworlds Online (SDG# 23994)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.21, Ended: 2013.5.24\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\tts52: Let&#39;s go again. Have a good game!\n\twil: gonna try\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Discover G1 Wil Y3 C1\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build G1 Wil\n\twil: uh oh\n\n8) ts52: Discover B1 Ts52 G2 Kermit\n\n9) wil: Build G1 Wil\n\n10) ts52: Build B2 Kermit\n\n11) wil: Discover G1 Wil B3 Gottadoit\n\twil: ah phooey, miss moved, but I&#39;ll still get there...\n\twil: ah phooey, miss moved, but I&#39;ll still get there...\n\n12) ts52: Trade B2 Y2 Kermit\n\twil: crap that miss move may have missed me...  the first grow should have been on C1 then I would have got there....dang..\n\n13) wil: Build G2 Gottadoit\n\tts52: Hmmm, this one is going to be interesting.\n\n14) ts52: Discover B1 Kermit G3 Robin\n\n15) wil: Trade G1 Y1 Gottadoit\n\n16) ts52: Build B2 Robin\n\n17) wil: Sacrifice G3 Wil\nBuild G1 Gottadoit\nBuild G2 C1\nBuild G3 Wil\n\twil: I thought we were in a blue/green race...  that I was losing, but I guess winning the blues was as dangerous as losing the greens?  it is interesting watching the eb and flow \n\n18) ts52: Trade B2 Y2 Robin\n\twil: now I see the blue man group preparing for attack...\n\tts52: Yeah, loosing the greens probably hurts me more. Oh well, it&#39;s fun to try different things...\n\n19) wil: Build Y1 Gottadoit\n\n20) ts52: Build B2 Robin\n\twil: i have to eventually give you a green to get into blues myself..otherwise it looks like you will simply over power me with the larger pyramid sizes..\n\n21) wil: Discover G2 Gottadoit R2 Ynot\n\tts52: Not having a factory is really going to slow me down though. Maybe I should&#39;ve given you the large green in order to have my own factory....\n\n22) ts52: Build B2 Robin\n\twil: yeah...so i hold off slowly growing while you slowly grow I just don&#39;t know....i think I should allow you the factory just so I can get into blue..\n\n23) wil: Move Y1 Gottadoit Ynot\n\n24) ts52: Move B2 Robin Kermit\n\n25) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Ynot\nBuild Y3 Gottadoit\n\n26) ts52: Build B2 Kermit\n\n27) wil: Discover G1 C1 R2 Ineedblues\n\n28) ts52: Move B2 Robin Ineedblues\n\tts52: sneaky...\n\n29) wil: Move Y3 Gottadoit Ineedblues\n\n30) ts52: Build B3 Robin\n\twil: i know you like to trap...but I don&#39;t see it yet..  i say IneedBlues and then you offe one whilst calling me sneaky...i smell a rat but can&#39;t find it (but am very looking forward to learning as I get bit!!)\n\tts52: Well crap, I didn&#39;t think of you coming in with your large yellow. :(\n\n31) wil: Sacrifice G2 C1\nBuild G2 Ynot\nBuild Y3 Gottadoit\n\n32) ts52: Move B3 Robin Ynot\n\twil: I&#39;m still concerned....these things seem to come outta the blue...\n\n33) wil: Sacrifice Y3 Gottadoit\nMove G2 Ynot Ts52\nMove G2 Ynot Ts52\nMove G1 Ineedblues Ts52\nCatastrophe Ts52 G\n\twil: I was absolutely certain you had something going that I wasn&#39;t seeing!!   Thank you for the game.\n\tts52: Dammit! Well played. I was watching for that a few moves ago, and then missed it anyway. Again?\n\twil: Of course I&#39;d like to play again...  learning the nuance here is incredible...\r\n\r\n\r\nI thought you were gonna change your g3 last minute....or had something up your sleeve I couldn&#39;t see.   As I see it, I capitalized on the fact that you were singular in your homeworld, used the disguise of an investment (look at this big yellow ship I just got) to cover my placement of the green (rather than obviously move one forward) and that moving of the yellow ship in...  I was watching your blues but thought it was to my advantage for you to attack me as our homeworlds would be connected...I almost changed myg3 to a b3 just to entice you....  I am learning....thanx so much\n\tts52: It&#39;s funny, because the reason I moved into your red systems was to try to capture your greens to keep you from doing what you did. I just missed the fact that you&#39;d got up to 3 greens to kill me. Oops.\n\n\nHomeworlds Online (SDG# 23989)\nStarted: 2013.5.24, Ended: 2013.5.26\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build B2 Wil\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) wil: Trade B1 Y1 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: Discover B2 Wil G3 Foist\n\n12) ts52: Build B1 Robin\n\n13) wil: Build B2 Foist\n\n14) ts52: Trade B1 Y1 Robin\n\n15) wil: Build G1 Wil\n\n16) ts52: Build B1 Robin\n\n17) wil: Build G2 Wil\n\n18) ts52: Discover B1 Robin G2 Kermit\n\n19) wil: Discover G2 Wil Y3 Ynot\n\n20) ts52: Build B3 Robin\n\n21) wil: Trade B2 R2 Foist\n\n22) ts52: Trade B3 R3 Robin\n\n23) wil: Sacrifice G3 Wil\nBuild G2 Ynot\nBuild G3 Wil\nBuild R1 Foist\n\n24) ts52: Move R3 Robin Ynot\n\n25) wil: Discover G2 Ynot Y1 Lastditch\n\n26) ts52: Attack G2 Ynot\n\n27) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild G3 Wil\nBuild R1 Foist\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Robin\nBuild Y3 Robin\n\n29) wil: Sacrifice Y2 Wil\nMove Y1 Wil Ynot\nMove Y1 Ynot Robin\nCatastrophe Robin Y\n\n30) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Robin\n\n31) wil: Trade B2 Y2 Foist\n\n32) ts52: Trade B3 Y3 Robin\n\n33) wil: Move G1 Wil Foist\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Robin\nBuild B3 Kermit\n\n35) wil: Discover G1 Foist R1 I&#39;mintrouble\n\n36) ts52: Move B2 Robin Ynot\n\twil: I should have done my last few moves at home...I saw where I went wrong both times and you had already moved and I could not undo!!   \n\n37) wil: Sacrifice Y2 Foist\nMove G1 I&#39;mintrouble Ts52\nMove G2 Lastditch Ts52\nCatastrophe Ts52 G\n\n\tts52: Damn. I did it again... Well played sir.\n\twil: I couldn&#39;t quite track the moves....I made two mistakes that I thought would have assured something but was actually thinking you had me by a step in this race.\n\tts52: Yep, I got greedy and let my guard down. Another?\n\twil: gladly....I  just miscounted exactly has you and let your brother in law clock me...\n\tts52: My brother in law?\n\twil: oh I don&#39;t recall.. I thought a bunch of you were related somehow....dl wilson cleand my clock...\n\nHomeworlds Online (SDG# 24020)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.26, Ended: 2013.6.9\nParticipants: goulo (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R1 B2 G3\n\n3) Aristos: Build Y1 Aristos\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Aristos: Discover Y1 Aristos Y1 Glimmer\n\n6) goulo: Build G1 Goulo\n\n7) Aristos: Build Y1 Aristos\n\n8) goulo: Trade G3 Y3 Goulo\n\n9) Aristos: Trade Y1 G1 Aristos\n\n10) goulo: Build G2 Goulo\n\n11) Aristos: Build G2 Aristos\n\n12) goulo: Discover G1 Goulo Y3 Citronego\n\n13) Aristos: Move G1 Aristos Glimmer\n\n14) goulo: Build G2 Goulo\n\n15) Aristos: Build G3 Glimmer\n\n16) goulo: Build G3 Citronego\n\n17) Aristos: Move G1 Glimmer Citronego\n\n18) goulo: Discover G1 Goulo B3 Mirtelego\n\n19) Aristos: Sacrifice G2 Aristos\nBuild G2 Citronego\nBuild Y1 Aristos\nCatastrophe Citronego Green\n\n20) goulo: Build Y2 Goulo\n\n21) Aristos: Build Y2 Glimmer\n\n22) goulo: Move Y2 Goulo Mirtelego\n\n23) Aristos: Sacrifice Y2 Glimmer\nDiscover G3 Glimmer Y3 Flash\nDiscover Y1 Glimmer G2 Shine\n\n24) goulo: Build G1 Mirtelego\n\n25) Aristos: Trade Y1 R1 Aristos\n\n26) goulo: Trade G1 R1 Mirtelego\n\n27) Aristos: Build R2 Aristos\n\n28) goulo: Build R2 Mirtelego\n\n29) Aristos: Discover R2 Aristos G1 Flare\n\n30) goulo: Discover R2 Mirtelego Y1 Citroneto\n\n31) Aristos: Move G3 Flash Citroneto\n\n32) goulo: Discover R2 Citroneto Y3 Citronego\n\n33) Aristos: Build Y1 Shine\n\n34) goulo: Build Y2 Mirtelego\n\n35) Aristos: Build Y2 Aristos\n\n36) goulo: Discover G2 Goulo G3 Smeraldego\n\n37) Aristos: Move Y1 Shine Mirtelego\n\n38) goulo: Attack Y1 Mirtelego\n\n39) Aristos: Sacrifice Y2 Aristos\nMove R2 Flare Mirtelego\nMove Y1 Shine Mirtelego\nCatastrophe Mirtelego Yellow\n\n40) goulo: Build R2 Mirtelego\n\n41) Aristos: Sacrifice G3 Citroneto\nBuild R3 Aristos\nBuild R3 Aristos\nBuild R3 Mirtelego\nCatastrophe Mirtelego Red\n\tAristos: There&#39;s no official rule (I know -- I&#39;ve checked with the developers of the game) about take backs of a ship and infinite cycles. If I capture your g1 ship, you can just take it back. We could do that infinitely. What rule would you like to use to resolve that? No take backs? Or no capturing if the ship can just be taken back? \n\n42) goulo: Sacrifice Y3 Goulo\nDiscover G1 Mirtelego Y1 Citroneto\nMove R2 Citronego Citroneto\nMove R2 Citroneto Aristos\nCatastrophe Aristos R\n\tAristos: My earlier question turns out not to apply... I decided to go with a different strategy. \n\tgoulo: The question of loops was discussed a lot also in this thread:\r\nhttp://boardgamegeek.com/thread/578548/repeated-previous-game-state-is-there-a-ko-rule\r\n\r\nit seems there&#39;s a loose informal consensus that looping means the game ends in a tie/draw...\n\n43) Aristos: Build Y1 Aristos\n\tgoulo: desperate times call for desperate measures...\n\n44) goulo: Move G1 Citroneto Aristos\n\n45) Aristos: Trade Y3 R3 Aristos\n\n46) goulo: Build G1 Aristos\n\n47) Aristos: Attack G1 Aristos\n\n48) goulo: Sacrifice G2 Smeraldego\nBuild G1 Aristos\nBuild G2 Goulo\nCatastrophe Aristos G\n\n49) Aristos: Trade Y1 G1 Aristos\n\n50) goulo: Build G1 Goulo\n\tAristos: So, I saw this possible position when I built the two Y3 ships... but I have no ability to see beyond it... I have no idea which of us is in the better position going forward. Very unique.\n\n51) Aristos: Build R1 Aristos\n\n52) goulo: Trade G2 Y2 Goulo\n\n53) Aristos: Trade R1 Y1 Aristos\n\n54) goulo: Discover G2 Goulo Y3 Citronego\n\n55) Aristos: Move R3 Aristos Citronego\n\n56) goulo: Sacrifice G2 Citronego\nBuild G1 Goulo\nBuild G2 Goulo\n\n57) Aristos: Build G2 Aristos\n\n58) goulo: Trade G1 R1 Goulo\n\n59) Aristos: Move G1 Aristos Citronego\n\n60) goulo: Trade G1 B1 Goulo\n\tAristos: What is the significance of the names you choose for stars?\n\tgoulo: They are esperanto words (e.g. citronego = big lemon). :)\n\n61) Aristos: Build R1 Citronego\n\n62) goulo: Discover B1 Goulo Y3 Bananego\n\n63) Aristos: Discover R1 Citronego Y1 Twinkle\n\n64) goulo: Build G1 Goulo\n\n65) Aristos: Build R2 Citronego\n\n66) goulo: Sacrifice G2 Goulo\nBuild B1 Bananego\nBuild B1 Bananego\n\n67) Aristos: Move R3 Citronego Goulo\n\tAristos: Aw. Hell. Missed that.\n\n68) goulo: Build R2 Goulo\nCatastrophe Goulo R\n\tAristos: Actually, I think I&#39;ve still got speed on you by one move. Close. \n\n69) Aristos: Move R2 Citronego Goulo\n\n70) goulo: Move B1 Bananego Aristos\n\n71) Aristos: Attack Y2 Goulo\n\tgoulo: yeah, i misread what would happen if you moved your r3 to goulo. alas! close one indeed! one move too slow for me...\n\n72) goulo: Move B1 Bananego Aristos\n\n73) Aristos: Attack G1 Goulo\n\tgoulo: If you&#39;d captured my g1 instead of y2, and I sacrificed my y2 to send both b1 from bananego to aristos for a blue catastrophe, we&#39;d both lose our homeworlds at the same time, and I&#39;m not sure how SDG resolves that. (I think officially it would be a win for me, but I&#39;m not 100% sure...) :)\n\tAristos: Just because there are 4 in a system does not mean you have to declare a catastrophe. You just wouldn&#39;t declare for your home world. \n\tAristos: Good game. Thanks. \n\tgoulo: Yes, but I would have been declaring a catastrophe at YOUR world, not at MY world! I would have lost MY world due to having no ships there if I could have sacrificed my Y2 to move the 2 B1s to your world.\r\n\r\nAnyway, yes, cool game, thanks! :)\n\tAristos: Ah, right. I was thinking backwards. In that case you would lose since you instantly lose if your own homeworld ever has none of your own ships, which would happen before the catastrophe at mine.\n\tgoulo: I notice the current official rules say:\r\n\r\nGame Over: It&#39;s OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over. However, you are eliminated from the game if both stars in your Homeworld are destroyed, or if none of the ships at your Homeworld are yours.\r\nhttp://www.looneylabs.com/rules/homeworlds\r\n\r\nso in fact you DON&#39;T instantly lose if your own homeworld has none of your ships.\r\n\r\nFrom curiosity, I posted the question here:\r\nhttp://boardgamegeek.com/thread/991015/what-if-both-homeworlds-destroyed-at-the-end-of-a\n\n\nHomeworlds Online (SDG# 24026)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.26, Ended: 2013.6.3\nParticipants: Danner (S), ts52 (N)\nWinner: Danner\n\n1) ts52: Homeworld Y2 B1 G3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) ts52: Build G1 Ts52\n\tDanner: Hi! Have a nice game!\n\n4) Danner: Build G1 Danner\n\tts52: Thanks! You too.\n\n5) ts52: Trade G1 R1 Ts52\n\n6) Danner: Trade G1 R1 Danner\n\n7) ts52: Build G1 Ts52\n\n8) Danner: Build R2 Danner\n\n9) ts52: Build R2 Ts52\n\n10) Danner: Trade R2 Y2 Danner\n\n11) ts52: Discover G1 Ts52 B3 Grover\n\n12) Danner: Build R2 Danner\n\n13) ts52: Build G1 Grover\n\n14) Danner: Move R2 Danner Grover\n\n15) ts52: Trade R2 Y2 Ts52\n\n16) Danner: Attack G1N Grover\n\n17) ts52: Build R2 Ts52\n\n18) Danner: Build R2 Grover\n\n19) ts52: Discover R2 Ts52 Y3 Bigbird\n\n20) Danner: Trade R2 B2 Grover\n\n21) ts52: Build G1 Ts52\n\n22) Danner: Attack G1N Grover\n\n23) ts52: Move G1 Ts52 Bigbird\n\n24) Danner: Trade G1 Y1 Grover\n\n25) ts52: Discover Y2 Ts52 G3 Kermit\n\n26) Danner: Build Y1 Danner\n\n27) ts52: Build G1 Bigbird\n\n28) Danner: Build G2 Grover\n\n29) ts52: Build G2 Bigbird\n\n30) Danner: Sacrifice Y2 Danner\nMove G1 Grover Ts52\nMove G1 Ts52 Bigbird\nCatastrophe Bigbird G\n\n31) ts52: Build G1 Ts52\n\n32) Danner: Build Y1 Danner\n\n33) ts52: Trade G1 B1 Ts52\n\n34) Danner: Discover Y1 Danner B3 Alpha\n\n35) ts52: Move B1 Ts52 Kermit\n\n36) Danner: Sacrifice G3 Danner\nBuild Y2 Grover\nBuild Y3 Alpha\nBuild Y3 Danner\n\n37) ts52: Build G1 Ts52\n\n38) Danner: Build G1 Grover\n\n39) ts52: Move G1 Ts52 Bigbird\n\n40) Danner: Move G2 Grover Danner\n\n41) ts52: Build B1 Kermit\n\n42) Danner: Move Y3 Danner Kermit\n\n43) ts52: Sacrifice Y2 Kermit\nDiscover B1 Kermit Y2 Zoe\nMove B1 Kermit Zoe\n\n44) Danner: Sacrifice B2 Grover\nTrade Y3 B3 Kermit\nTrade Y3 G3 Alpha\n\n45) ts52: Move B1 Zoe Bigbird\n\n46) Danner: Sacrifice G2 Danner\nBuild Y3 Danner\nBuild Y3 Alpha\n\n47) ts52: Build B2 Bigbird\n\n48) Danner: Trade Y3 R3 Alpha\n\n49) ts52: Build R2 Bigbird\n\n50) Danner: Sacrifice G3 Alpha\nBuild R3 Alpha\nBuild R3 Grover\nBuild Y3 Alpha\n\n51) ts52: Build G1 Ts52\n\n52) Danner: Sacrifice Y3 Alpha\nMove R3 Alpha Ts52\nMove R3 Alpha Ts52\nMove B3 Kermit Ts52\n\n53) ts52: Sacrifice R2 Bigbird\nAttack R3 Ts52\nAttack R3 Ts52\n\n54) Danner: Sacrifice R3 Grover\nAttack R3N Ts52\nAttack R3N Ts52\nAttack G3N Ts52\n\n55) ts52: Build R2 Ts52\nCatastrophe Ts52 Red\n\n56) Danner: Sacrifice R1 Danner\nAttack G1N Ts52\n\tDanner: Thanks for the game!\n\tts52: Thanks. You threw me with the small universe play. Good game!\n\n\nHomeworlds Online (SDG# 23957)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.27, Ended: 2013.6.12\nParticipants: dlwillson (S), mnkr (N)\nWinner: dlwillson\n\n1) mnkr: Homeworld G2 B1 Y3\n\n2) dlwillson: H B3 R1 G3\n\tmnkr: Good game. It&#39;s my first game at Homeworlds\n\tdlwillson: Have fun! I&#39;m at the top of the Homeworlds ladder until Twoshort beats me again, so I&#39;ve played a few times. :-)\n\n3) mnkr: Build Y1 Mnkr\n\n4) dlwillson: Build G1 Dlwillson\n\tmnkr: well, I will lose, but I hope learn something.\n\n5) mnkr: Discover Y1 Mnkr G3 Lsd\n\tdlwillson: And with any luck at all, have some fun.\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) mnkr: Build Y1 Mnkr\n\n8) dlwillson: B Y2 Dlwillson\n\n9) mnkr: Build Y2 Lsd\n\n10) dlwillson: D Y1 Dlwillson G2 Forest\n\n11) mnkr: Discover Y1 Mnkr G3 Dna\n\n12) dlwillson: B G1 Dlwillson\n\n13) mnkr: Build Y2 Mnkr\n\n14) dlwillson: S G3 Dlwillson\nB G1 Dlwillson\nB Y3 Dlwillson\nB Y3 Forest\n\n\nHomeworlds Online (SDG# 24033)\nStarted: 2013.5.27, Ended: 2013.5.28\nParticipants: Erik2point0 (S), scotward (N)\nWinner: scotward\n\n1) scotward: Homeworld R3 G1 B3\n\n2) Erik2point0: Homeworld B3 G2 Y3\n\n3) scotward: Build B1 Scotward\n\n4) Erik2point0: Build Y1 Erik2point0\n\n5) scotward: Trade B1 Y1 Scotward\n\n6) Erik2point0: Discover Y1 Erik2point0 B1 Alpha\n\n7) scotward: Build B1 Scotward\n\n8) Erik2point0: Build Y1 Erik2point0\n\n9) scotward: Build Y2 Scotward\n\n10) Erik2point0: Trade Y1 G1 Erik2point0\n\n11) scotward: Discover Y1 Scotward G2 Sirius\n\n12) Erik2point0: Move G1 Erik2point0 Alpha\n\n13) scotward: Trade B1 G1 Scotward\n\n14) Erik2point0: Discover Y1 Alpha B2 Beta\n\n15) scotward: Build B1 Scotward\n\n16) Erik2point0: Build G2 Alpha\n\n17) scotward: Build G3 Scotward\n\n18) Erik2point0: Trade G2 Y2 Alpha\n\n19) scotward: Move G3 Scotward Beta\n\n20) Erik2point0: Build Y1 Erik2point0\n\n21) scotward: Trade G3 R3 Beta\n\n22) Erik2point0: Discover Y1 Beta Y3 Gamma\n\n23) scotward: Sacrifice Y2 Scotward\nMove R3 Beta Alpha\nMove R3 Alpha Erik2point0\n\n24) Erik2point0: Trade Y1 R1 Erik2point0\n\n25) scotward: Attack Y3S Erik2point0\n\n\nHomeworlds Online (SDG# 24001)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.27, Ended: 2013.5.28\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n2) wil: Homeworld Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\twil: I  look forward to more education\n\n4) wil: Build G1 Wil\n\tdlwillson: From last game: The &quot;gun&quot; rule: When the other &quot;goes for his gun&quot;, go for yours. When he gets a red ship, you get one, too.\n\tdlwillson: Also from last game: Each ship is worth roughly the number of it&#39;s pips, plus one for each step toward the opponent. So, a big in his orbit is worth 5, approximately.\n\tdlwillson: Also, also from last game: If the opponent will have two or more turns to recover from the kicking you&#39;re about to give him before you can give him another kicking, don&#39;t overspend on this kicking.\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\twil: oops didn&#39;t mean to hit that...\r\n\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: Discover Y1 Wil G3 Aaarghhh\n\n11) dlwillson: Build Y3 Field\n\n12) wil: Build Y3 Aaarghhh\n\n13) dlwillson: Discover Y3 Field B3 Sky\n\n14) wil: Discover Y2 Wil Y3 Phooey\n\n15) dlwillson: Trade Y3 R3 Sky\n\n16) wil: Trade G3 R3 Wil\n\n17) dlwillson: Build Y3 Field\n\twil: yiikes\n\n\tdlwillson: I know, right. The last few moves have been bad for you, and I don&#39;t see an easy way for you to have gotten out of it. At least now the pressure&#39;s off for one move. Maybe two...\n\twil: oh crap it is all over....   so where did it all go wrong...  I almost switched out before the Y3s so to put a Y1 in the way\n\twil: embarrassing loss....wow\n\tdlwillson: That&#39;ll be another good one to replay. You let me run the bank in my favor.\r\nIncidentally, I didn&#39;t see the end coming. Did you resign over the material advantage I had?\n\twil: I had no green, could not do anything anywhere....couldn&#39;t change back, you move in with your red and it is over..\n\tdlwillson: You could&#39;ve moved your Y3 from argh to wil and turned it green, I think. It would&#39;ve cost you two turns, and I probably might&#39;ve been able to build the y3 away from you, so it wasn&#39;t going well. Feel free to start another, if you like. If you&#39;re learning, but you don&#39;t feel like you&#39;re going to get a win, feel free to start an un-rated game.\n\twil: heck I don&#39;t care what my ratings look like...i really appreciate the game and the lessons....it looked like I was gonna be a step behind and my mistakes would be more likely than yours...   I don&#39;t feel right running in circles wasting time of better players...\n\nHomeworlds Online (SDG# 24040)\nStarted: 2013.5.28, Ended: 2013.5.31\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld G3 B1 R3\n\n2) scotward: Homeworld R1 B2 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Trade R1 Y1 Erik2point0\n\n6) scotward: Build G1 Scotward\n\n7) Erik2point0: Build Y1 Erik2point0\n\n8) scotward: Trade G1 Y1 Scotward\n\n9) Erik2point0: Build Y2 Erik2point0\n\n10) scotward: Build Y2 Scotward\n\n11) Erik2point0: Trade Y1 G1 Erik2point0\n\n12) scotward: Discover Y2 Scotward B3 Spica\n\n13) Erik2point0: Discover Y2 Erik2point0 R2 Degoba\n\n14) scotward: Build Y1 Scotward\n\n15) Erik2point0: Build Y2 Erik2point0\n\n16) scotward: Discover Y1 Scotward B3 Cygnus\n\n17) Erik2point0: Trade Y2 G2 Erik2point0\n\n18) scotward: Sacrifice G3 Scotward\nBuild Y2 Cygnus\nBuild Y3 Spica\nBuild Y3 Scotward\n\n19) Erik2point0: Build Y3 Erik2point0\n\n20) scotward: Move Y3 Spica Degoba\n\n21) Erik2point0: Sacrifice Y2 Degoba\nMove G2 Erik2point0 Degoba\nMove G2 Degoba Spica\n\n22) scotward: Trade Y2 R2 Spica\n\n23) Erik2point0: Sacrifice G2 Spica\nBuild R1 Erik2point0\nPass\n\n24) scotward: Sacrifice Y1 Scotward\nMove R2 Spica Degoba\n\n25) Erik2point0: Discover Y3 Erik2point0 B2 Hoth\n\n26) scotward: Trade Y2 R2 Cygnus\n\n27) Erik2point0: Move R1 Erik2point0 Hoth\n\n28) scotward: Discover R2 Cygnus G2 Dune\n\n29) Erik2point0: Move G1 Erik2point0 Hoth\n\n30) scotward: Build R1 Dune\n\n31) Erik2point0: Build R3 Hoth\n\n32) scotward: Build R3 Dune\n\n33) Erik2point0: Move R3 Hoth Cygnus\n\n34) scotward: Sacrifice Y3 Degoba\nMove R2 Degoba Erik2point0\nMove R1 Dune Erik2point0\nMove R2 Dune Erik2point0\nCatastrophe Erik2point0 R\n\n35) Erik2point0: Sacrifice Y3 Hoth\nMove R1 Hoth Cygnus\nMove R3 Cygnus Hoth\nMove R3 Hoth Erik2point0\n\n36) scotward: Move Y1 Cygnus Dune\n\n37) Erik2point0: Trade R1 Y1 Cygnus\n\n38) scotward: Build Y2 Dune\n\n39) Erik2point0: Build Y2 Erik2point0\n\n40) scotward: Move R3 Dune Cygnus\n\n41) Erik2point0: Move Y1 Cygnus Dune\n\n42) scotward: Build Y2 Scotward\n\n43) Erik2point0: Build Y3 Dune\nCatastrophe Dune Y\n\n44) scotward: Move Y2 Scotward Cygnus\n\n45) Erik2point0: Build Y1 Erik2point0\n\n46) scotward: Move R3 Cygnus Hoth\n\n47) Erik2point0: Sacrifice Y1 Erik2point0\nDiscover G1 Hoth B1 Alderan\n\n48) scotward: Build G1 Scotward\n\n49) Erik2point0: Build G2 Alderan\n\n50) scotward: Move G1 Scotward Cygnus\n\n51) Erik2point0: Trade G1 Y1 Alderan\n\n52) scotward: Move Y2 Cygnus Hoth\n\n53) Erik2point0: Discover G2 Alderan Y2 Tatooine\n\n54) scotward: Trade R3 G3 Hoth\n\n55) Erik2point0: Move R3 Erik2point0 Hoth\n\n56) scotward: Move Y2 Hoth Erik2point0\n\n57) Erik2point0: Sacrifice Y1 Erik2point0\nMove G2 Tatooine Erik2point0\n\n58) scotward: Sacrifice Y2 Erik2point0\nMove G3 Hoth Erik2point0\nPass\n\tErik2point0: Aaaaaaaaarg\n\n59) Erik2point0: Move G2 Erik2point0 Hoth\n\n60) scotward: Trade G3 R3 Erik2point0\n\n\nHomeworlds Online (SDG# 24027)\nStarted: 2013.5.28, Ended: 2013.8.20\nParticipants: ts52 (S), mnkr (N)\nWinner: ts52\n\n1) mnkr: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\tmnkr: Good game, I&#39;m new at this game.\n\n3) mnkr: Build G1 Mnkr\n\tts52: Thanks. You have a good game too. Feel free to ask questions.\n\n4) ts52: Build G1 Ts52\n\n5) mnkr: Discover G1 Mnkr Y3 Lsdr\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) mnkr: Build G1 Mnkr\n\n8) ts52: Build G2 Gonzo\n\n9) mnkr: Build G2 Lsdr\n\n10) ts52: Trade G2 Y2 Gonzo\n\n11) mnkr: Discover G1 Lsdr Y2 Dnar\n\n12) ts52: Build G2 Gonzo\n\n13) mnkr: Trade G1 Y1 Mnkr\n\n14) ts52: Build Y2 Gonzo\n\n15) mnkr: Discover Y1 Mnkr G3 Unr\n\n16) ts52: Discover Y2 Gonzo B3 Grover\n\n17) mnkr: Build Y3 Unr\n\n18) ts52: Build Y3 Gonzo\n\n19) mnkr: Discover Y3 Unr B2 Nator\n\n20) ts52: Trade Y3 R3 Gonzo\n\n21) mnkr: Build G1 Dnar\n\n22) ts52: Trade G3 R3 Ts52\n\n23) mnkr: Trade Y3 R3 Nator\n\n24) ts52: Move G1 Gonzo Ts52\n\n25) mnkr: Build Y3 Unr\n\n26) ts52: Build Y3 Gonzo\n\n27) mnkr: Move Y1 Unr Nator\n\n28) ts52: Build R1 Gonzo\n\n29) mnkr: Build G2 Lsdr\n\n30) ts52: Build G3 Gonzo\n\n31) mnkr: Move G2 Lsdr Nator\n\n32) ts52: Move R3 Gonzo Lsdr\n\n33) mnkr: Sacrifice G2 Lsdr\nBuild G2 Nator\nBuild R1 Nator\n\n34) ts52: Move G2 Gonzo Lsdr\n\n35) mnkr: Move R1 Nator Unr\n\tmnkr: very good! i&#39;m almost losing my religion, hehe\n\n36) ts52: Move R3 Lsdr Dnar\n\n37) mnkr: Move R3 Nator Lsdr\n\n38) ts52: Move G2 Lsdr Gonzo\n\n39) mnkr:\nBuild R1 Unr\n\n40) ts52: Attack G1 Dnar\n\n41) mnkr: Move G1 Dnar Lsdr\n\n42) ts52: Move R3 Dnar Grover\n\n43) mnkr: Build R2 Lsdr\n\n44) ts52: Move R3 Grover Nator\n\n45) mnkr: Move R3 Lsdr Gonzo\n\n46) ts52: Attack R3 Gonzo\n\n47) mnkr: Move R2 Lsdr Dnar\n\n48) ts52: Attack G2 Nator\n\n49) mnkr: Sacrifice G1 Lsdr\nBuild Y3 Unr\n\tmnkr: wo I thought that It couldn&#39;t be done! my god, \n\n50) ts52: Attack Y1 Nator\n\tts52: Yeah, attacks are tricky to figure out. Red lets you attack any ship that is the same size or smaller than your largest ship in the same system.\n\n\tts52: there&#39;s a resignation button under the box where you enter your move\n\tmnkr: thanks\r\ngood game!\n\nHomeworlds Online (SDG# 24034)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.29, Ended: 2013.6.5\nParticipants: dlwillson (S), Subhan64 (N)\nWinner: dlwillson\n\n1) Subhan64: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 R1 G3 Dlwillson\n\n3) Subhan64: Build G1 Subhan64\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Subhan64: Build G1 Subhan64\n\n8) dlwillson: Build Y1 Dlwillson\n\n9) Subhan64: Trade G3 Y3 Subhan64\n\n10) dlwillson: B Y2 Dlwillson\n\n11) Subhan64: Build Y2 Subhan64\n\n12) dlwillson: D Y1 Dlwillson B2 Sky\n\n13) Subhan64: Discover G1 Subhan64 Y3 Omicronpersei8\n\n14) dlwillson: S Y2 Dlwillson\nM Y1 Sky Bigbird\nM Y1 Bigbird Subhan64\nCatastrophe Subhan64 Y\n\tSubhan64: gg, thanks!\r\n\n\n\nHomeworlds Online (SDG# 24049)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.5.29, Ended: 2013.6.19\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld B3 R1 G3 Dlwillson\n\n2) wil: Homeworld R2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build G1 Dlwillson\n\n8) wil: Build G1 Wil\n\n9) dlwillson: T G1 B1 Dlwillson\n\n10) wil: Trade G1 B1 Wil\n\n11) dlwillson: B B2 Dlwillson\n\n12) wil: Build B2 Wil\n\n13) dlwillson: D B1 Dlwillson G2 Forest\n\n14) wil: Discover B2 Wil Y3 Camp Wilson\n\n15) dlwillson: T B2 Y2 Dlwillson\n\n16) wil: Build G1 Wil\n\n17) dlwillson: B B2 Forest\n\n18) wil: Discover B1 Wil G3 Fortcourage\n\n19) dlwillson: T B2 R2 Forest\n\n20) wil: Build B2 Fortcourage\n\n21) dlwillson: Sacrifice Y1 Dlwillson\nMove R2 Forest Fortcourage\n\n22) wil: Sacrifice Y1 Wil\nDiscover B2 Fortcourage Y2 Wakeup\n\tdlwillson: Gun rule!\n\twil: when someone gets a gun, i gotta getta gun.....crap, I will learn someday....just slow...\n\n23) dlwillson: A B1 Fortcourage\n\n24) wil: Trade B2 R2 Wakeup\n\n25) dlwillson: B B2 Forest\n\n26) wil: Build G1 Wil\n\n27) dlwillson: T B2 G2 Forest\n\n28) wil: Trade G1 Y1 Wil\n\n29) dlwillson: B B2 Forest\n\n30) wil: M G1 Wil Camp\n\n\twil: ah phooey...hope all is alright...\n\nHomeworlds Online (SDG# 24035)\nVariants: &quot;Hard time&quot;\nStarted: 2013.5.31, Ended: 2013.6.7\nParticipants: wil (S), ahzipeanut (N)\nWinner: wil\n\n1) ahzipeanut: Homeworld R3 B1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) ahzipeanut: Build G1 Ahzipeanut\n\n\n\twil: thx for the game, good luck\n\twil: Welcome to SDG...I&#39;m a newbie to the group...and homeworlds but am playng a lot of games and trying to learn...you?\n\n4) wil: Build G1 Wil\n\n\twil: aaargghh...  I tried to tell you....\n\nHomeworlds Online (SDG# 24062)\nStarted: 2013.5.31, Ended: 2013.6.6\nParticipants: scotward (S), Erik2point0 (N)\nWinner: Erik2point0\n\n1) Erik2point0: Homeworld G3 B1 R3\n\n2) scotward: Homeworld R3 B2 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\tscotward:  did you start with the exact same homeworld?\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Build R1 Erik2point0\n\n6) scotward: Trade G1 Y1 Scotward\n\n7) Erik2point0: Trade R1 Y1 Erik2point0\n\n8) scotward: Build G1 Scotward\n\n9) Erik2point0: Trade R1 G1 Erik2point0\n\n10) scotward: Build Y1 Scotward\n\n11) Erik2point0: Build Y2 Erik2point0\n\n12) scotward: Build Y2 Scotward\n\n13) Erik2point0: Trade Y1 B1 Erik2point0\n\n14) scotward: Trade Y2 B2 Scotward\n\n15) Erik2point0: Build R1 Erik2point0\n\n16) scotward: Trade G1 R1 Scotward\n\n17) Erik2point0: Build G1 Erik2point0\n\n18) scotward: Discover R1 Scotward B1 Shatner\n\n19) Erik2point0: Discover G1 Erik2point0 B2 Rivendell\n\n20) scotward: Build B3 Scotward\n\n21) Erik2point0: Build B3 Erik2point0\n\n22) scotward: Move B3 Scotward Shatner\n\n23) Erik2point0: Trade B3 G3 Erik2point0\n\n24) scotward: Build B3 Scotward\n\n25) Erik2point0: Build B3 Erik2point0\n\n26) scotward: Trade B2 G2 Scotward\n\n27) Erik2point0: Discover B1 Erik2point0 G2 Bree\n\n28) scotward: Trade B3 Y3 Scotward\n\n29) Erik2point0: Move G1 Erik2point0 Bree\n\n30) scotward: Move G2 Scotward Shatner\n\n31) Erik2point0: Build Y1 Erik2point0\n\n32) scotward: Sacrifice Y3 Scotward\nMove B3 Shatner Bree\nMove R1 Shatner Bree\nDiscover G2 Shatner Y2 Nimoy\n\n33) Erik2point0: Move R3 Erik2point0 Nimoy\n\n34) scotward: Discover G2 Nimoy Y3 Doohan\n\n35) Erik2point0: Sacrifice R1 Erik2point0\nAttack R1 Bree\n\n36) scotward: Trade B3 R3 Bree\n\n37) Erik2point0: Sacrifice G3 Erik2point0\nBuild R1 Bree\nBuild R1 Bree\nBuild G1 Bree\nCatastrophe Bree Red\n\n38) scotward: Move G2 Doohan Rivendell\n\n39) Erik2point0: Trade B3 G3 Erik2point0\n\n40) scotward: Build G2 Scotward\n\n41) Erik2point0: Move Y1 Erik2point0 Bree\n\n42) scotward: Sacrifice Y1 Scotward\nMove G2 Rivendell Erik2point0\n\n43) Erik2point0: Move G3 Erik2point0 Nimoy\n\n44) scotward: Sacrifice Y1 Scotward\nMove G2 Erik2point0 Bree\nCatastrophe Bree G\n\n45) Erik2point0: Build Y1 Erik2point0\n\n46) scotward: Trade G2 Y2 Scotward\n\n47) Erik2point0: Build R1 Nimoy\n\n48) scotward: Build Y1 Scotward\n\n49) Erik2point0: Trade Y1 R1 Erik2point0\n\n50) scotward: Discover Y2 Scotward G1 Nichols\n\n51) Erik2point0: Build G1 Rivendell\n\n52) scotward: Build Y1 Nichols\n\n53) Erik2point0: Trade G1 Y1 Rivendell\n\n54) scotward: Move Y1 Nichols Rivendell\n\n55) Erik2point0: Build Y3 Erik2point0\n\n56) scotward: Build Y3 Nichols\n\n57) Erik2point0: Discover R1 Nimoy G1 Rohan\n\n58) scotward: Build Y3 Scotward\n\n59) Erik2point0: Sacrifice G3 Nimoy\nBuild R1 Rohan\nBuild R2 Rohan\nBuild G2 Rivendell\n\n60) scotward: Sacrifice Y3 Scotward\nMove Y2 Nichols Rivendell\nMove Y2 Rivendell Erik2point0\nMove Y1 Rivendell Erik2point0\nCatastrophe Erik2point0 Y\n\n61) Erik2point0: Move R3 Nimoy Erik2point0\n\n62) scotward: Move Y3 Nichols Rivendell\n\n63) Erik2point0: Trade G2 Y2 Rivendell\n\n64) scotward: Trade Y3 R3 Rivendell\n\n65) Erik2point0: Move Y2 Rivendell Rohan\n\n66) scotward: Sacrifice Y1 Scotward\nMove R3 Rivendell Rohan\n\n67) Erik2point0: Sacrifice Y2 Rohan\nMove R1 Rohan Scotward\nMove R2 Rohan Scotward\n\n68) scotward: Attack R1N Rohan\n\n\nHomeworlds Online (SDG# 24050)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.6.1, Ended: 2013.6.4\nParticipants: pallas (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H G2 B3 Y3\n\tpallas: h g2 b1 y3\n\n\nHomeworlds Online (SDG# 24067)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.6.1, Ended: 2013.6.4\nParticipants: pallas (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n\nHomeworlds Online (SDG# 24059)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.5, Ended: 2013.6.10\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld Y2 B3 G3\n\tMarmalade: homeworld Y2 R3 G3\n\n3) wil: Build G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: Discover G1 Wil Y3 Fortcourage\n\n6) Marmalade: Discover G1 Marmalade B1 Toast\n\n7) wil: Build G1 Fortcourage\n\n8) Marmalade: Build G2 Toast\n\n9) wil: Build G2 Fortcourage\n\n10) Marmalade: Trade G1 Y1 Toast\n\n11) wil: Discover G1 Fortcourage B1 Dryden\n\n12) Marmalade: Build G1 Marmalade\n\n13) wil: Discover G1 Fortcourage Y1 Y1\n\n14) Marmalade: Discover Y1 Toast G3 Moose\n\n15) wil: Build G2 Wil\n\n16) Marmalade: Build Y1 Moose\n\n17) wil: Trade G2 Y2 Wil\n\n18) Marmalade: Trade G1 R1 Marmalade\n\n19) wil: Trade G1 R1 Dryden\n\n20) Marmalade: Move Y1 Moose Toast\n\n21) wil: Build Y3 Wil\n\n22) Marmalade: Move Y1 Moose Wil\nCatastrophe Wil Y\n\n23) wil: Build G1 Wil\n\twil: I just tried to undo this as this layout made me miss what was going on....\n\n24) Marmalade: Build G1 Toast\n\tMarmalade: Ah, sorry man. No worries, we can always rematch if you&#39;d like.\n\n25) wil: Sacrifice G3 Wil\nBuild G2 Y1\nBuild G3 Wil\nBuild G3 Fortcourage\n\n26) Marmalade: Move Y1 Toast Marmalade\n\n27) wil:\nTrade G1 Y1 Wil\n\n28) Marmalade: Build Y2 Marmalade\n\n29) wil: Move Y1 Wil Marmalade\nCatastrophe Marmalade Y\n\n30) Marmalade: Trade G2 R2 Toast\n\n31) wil: Sacrifice G3 Fortcourage\nBuild G1 Y1\nBuild G2 Wil\nBuild G3 Wil\n\n32) Marmalade: Trade G1 Y1 Toast\n\twil: ya let me even up the game...\n\n33) wil: Trade G3 Y3 Wil\n\tMarmalade: Yep. This is my second game of Homeworlds - I&#39;ve wanted to play forever, but never gotten around to it :)\n\twil: well you are doing quite well then I&#39;ve been playing a couple of months..but a lot of games...it is a great game with a steep learning curve...lose a lot...learn a lot...\n\n34) Marmalade: Trade G3 R3 Marmalade\n\twil: simple hints...always get a gun when they have a gun (r) in general, make sure you get whatever they get (r, y, b) don&#39;t get skunked in any economy.  and WATCHOUT whenver they trade for a Y2 or Y3...\n\n35) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G3 Wil\nBuild R1 Dryden\n\twil: do you have the piece at home?  Often best to set them up, so you can follow the play and arrange the star systems in a fashion easier to see than this.\n\tMarmalade: Cheers - clearly the Y3 was to threaten catastrophe in my home system (emptying out y1, probably). so trading for the R3 was just defence.\r\n\r\nFirst game I lost because my mind blanked regarding sacrificing red ships - just didn&#39;t occur to me.\r\n\r\n\n\tMarmalade: I&#39;ve ordered my pyramids - should be turning up in a couple of weeks.\n\twil: oops....tight squeeze now...you made the move to stop checkmate...but now have no power to build new ships..\n\tMarmalade: Yeah, but desperation really, I could have moved the G3 away I suppose - but this seemed more sensible.\n\n36) Marmalade: Sacrifice Y1 Toast\nMove R3 Marmalade Dryden\n\n37) wil: Sacrifice Y3 Wil\nMove R1 Dryden Marmalade\nMove R1 Dryden Marmalade\nMove G1 Y1 Marmalade\n\tMarmalade: I don&#39;t think there&#39;s much hope for me left :)\r\n\n\twil: ouch...no big gun at home?  no way to move?  \n\n38) Marmalade: Sacrifice R3 Dryden\nAttack R1N Marmalade\nAttack R1N Marmalade\nAttack G1N Marmalade\n\tMarmalade: Yeah, just moving in a G2 ship would have done it, or sacrificing a G1 to build another red in dryden (and a catastrophe)\n\twil: can&#39;t move or build..the only thing you can do is trade or attack....either way I  grow another red ship and catastrophe red in your system.....yes your doom is inevitable....but I did make a mistake you could prolong...\n\n39) wil: Trade G2 R2 Wil\n\tMarmalade: Still going to suffer from a lack of large ships though.\n\twil: I&#39;ll be glad to play again, and discuss what I&#39;ve learned...\n\twil: I&#39;ll be glad to play again, and discuss what I&#39;ve learned...\n\twil: oops...nice play...that I didn&#39;t see??\n\twil: I may have just gave you the game back, maybe I can learn from you!\n\n40) Marmalade: Trade R1 Y1 Marmalade\n\n41) wil: Move G2 Y1 Marmalade\n\tMarmalade: I still don&#39;t think there&#39;s a way out, but I&#39;ll give it a go.\n\n42) Marmalade: Build G2 Marmalade\n\n43) wil: Sacrifice R2 Wil\nAttack G2 Marmalade\nAttack R1 Marmalade\n\n44) Marmalade: Attack R1N Marmalade\n\n45) wil: Build G3 Y1\n\n46) Marmalade: Build G3 Marmalade\nCatastrophe Marmalade G\n\n47) wil: Trade G3 R3 Wil\n\twil: You did it for me??\n\n48) Marmalade: Trade R2 G2 Toast\n\n49) wil: Move G3 Y1 Marmalade\n\n50) Marmalade: Sacrifice G2 Toast\nBuild Y1 Marmalade\nBuild Y2 Marmalade\n\n51) wil: Build R1 Wil\n\tMarmalade: Yep, forgot I didn&#39;t have any green ships left. Was going to build a couple of greens and force a catastrophe.\n\twil: another nice move...you really understand the powers of the pieces\n\n52) Marmalade: Sacrifice Y2 Marmalade\nMove R1 Marmalade Wil\nMove R1 Marmalade Wil\nCatastrophe Wil R\n\n53) wil: Sacrifice G3 Marmalade\nBuild G1 Fortcourage\nBuild G2 Y1\nBuild G2 Wil\n\tMarmalade: Cheers, but it&#39;s all a little futile.\n\twil: too much fun!\n\n54) Marmalade: Trade Y1 R1 Marmalade\n\twil: its like herdin cats\n\n55) wil: Trade G2 R2 Wil\n\n56) Marmalade: Discover Y1 Marmalade G2 Desperation\n\n57) wil: Trade G1 Y1 Wil\n\n58) Marmalade: Build Y2 Desperation\n\n59) wil: Move G2 Y1 Marmalade\n\n60) Marmalade: Sacrifice Y2 Desperation\nMove Y1 Desperation Marmalade\nMove R1 Marmalade Wil\n\twil: I was thinking after the our second debacle, I should just sit back and accumulate a large force of ships..with my factory abilities.....but then said...no I think I can put an end to his misery rather than drag this out....it appears i made yet another mistake in this regard....\n\tMarmalade: If there&#39;s a mistake here, I&#39;m not seeing it.\r\n\n\n61) wil: Attack R1 Wil\n\twil: Oh I think I&#39;ve finally got you tied up now....but prior I should have just been building large ships of all varieties instead of trying to end it...\n\n62) Marmalade: Trade Y1 G1 Marmalade\n\twil: no use leaving any of your crew alive to repopulate....but thanks for the ship.  That is  a great theory of homeworlds...ships are monsterous undertakings to build, major capital investment...why would one ever destroy a ship of anothers vs just taking it?  And you only sac your own when it provides a dramatic advantage...\n\tMarmalade: To be honest, you could have ended it a while ago - any time you had moved a size 2 ship into my homeworld, you could have sacrificed your 2 red ship at home to capture mine.\n\n63) wil: Sacrifice R1 Wil\nAttack G1 Marmalade\n\twil: I only wish I had played that well my second game...\n\tMarmalade: Cheers :)\r\n\r\nGood game. I&#39;ll run over the pgn&#39;s I think, try and work out where I went badly wrong.\r\n\r\nIf you do want another game, give me a shout.\n\twil: up for a challenge any time....2nd time playing you played real well...if at my games you&#39;ll see I&#39;ve played a lot and lost a lot....every time I see different things come at me I learn something....but there is a lot involved....   whenever you are ready challenge me again... you play fairly regular when youget online (this needs that feature, so you  know when someone else is willing to sit for a couple hours and play)  Sometimes, you can get a few moves in a day, sometimes each move takes a few days!!\n\n\nHomeworlds Online (SDG# 23988)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.5, Ended: 2013.6.7\nParticipants: Marmalade (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Marmalade: Homeworld G3 B2 R3\n\tSilentTitan: Welcome!\n\n3) SilentTitan: Build G1 Silenttitan\n\tMarmalade: Cheers! I&#39;ve never played Homeworlds, but I&#39;ve been meaning to for ages - my pyramids should turn up in a few weeks :)\n\n4) Marmalade: Build R1 Marmalade\n\tSilentTitan: Nice.... If you have any questions, I will attempt to answer them.  Good Luck to you.\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) Marmalade: Build R1 Marmalade\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) Marmalade: Trade R1 Y1 Marmalade\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) Marmalade: Discover R1 Marmalade B1 Hyperion\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) Marmalade: Trade R1 G1 Hyperion\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) Marmalade: Build Y1 Marmalade\n\n15) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n16) Marmalade: Build Y2 Marmalade\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) Marmalade: Sacrifice Y2 Marmalade\nMove R3 Marmalade Hyperion\nMove R3 Hyperion Sol\n\n19) SilentTitan: Build Y2 Silenttitan\n\n20) Marmalade: Attack G1N Sol\n\n21) SilentTitan: Sacrifice Y2 Silenttitan\nMove G3 Silenttitan Sol\nMove G3 Sol Hyperion\n\tMarmalade: This is probably stupid, but I&#39;ll do it anyway and work out where I went wrong later...\r\n\n\n22) Marmalade: Move R3 Sol Hyperion\n\tMarmalade: (Actually, changed my mind.)\n\n23) SilentTitan: Sacrifice R1 Silenttitan\nAttack R3 Hyperion South\n\n24) Marmalade: Build G2 Sol\n\n25) SilentTitan: Sacrifice Y1 Silenttitan\nMove G3 Hyperion Marmalade\n\tMarmalade: Ah yes, that :)\r\n\n\n26) Marmalade: Sacrifice G2 Sol\nBuild Y1 Marmalade\nBuild Y2 Marmalade\n\tMarmalade: I think you&#39;ve got this one - I was tempted to catastrophe your homeworld earlier, but then you&#39;d have the only 3-ship. I just didn&#39;t consider what sacrificing reds could do.\n\n27) SilentTitan: Pass\nCatastrophe Marmalade Yellow\n\tSilentTitan: I believe so.. but I&#39;ve seen weirder things happen.  However, lets play again if you&#39;re up for it.\n\n\tMarmalade: Yep, no problem - I&#39;ll accept your standing challenge.\r\n\n\nHomeworlds Online (SDG# 24093)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.6.5, Ended: 2013.6.13\nParticipants: Subhan64 (S), dlwillson (N)\nWinner: Subhan64\n\n1) dlwillson: Homeworld B3 G2 Y3\n\n2) Subhan64: Homeworld G1 B2 Y3\n\n3) dlwillson: B Y1 Dlwillson\n\n4) Subhan64: Build Y1 Subhan64\n\n5) dlwillson: T Y1 R1 Dlwillson\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) dlwillson: B R1 Dlwillson\n\n8) Subhan64: Build Y1 Subhan64\n\n\nHomeworlds Online (SDG# 24099)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.7, Ended: 2013.6.12\nParticipants: Marmalade (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Marmalade: Homeworld R3 G1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Marmalade: Build B1 Marmalade\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Marmalade: Trade B1 Y1 Marmalade\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Marmalade: Discover Y1 Marmalade G2 Quoth\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) Marmalade: Build Y2 Quoth\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) Marmalade: Move Y2 Quoth Marmalade\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n14) Marmalade: Build Y2 Marmalade\n\n15) SilentTitan: Trade Y1 R1 Silenttitan\n\n16) Marmalade: Trade Y2 R2 Marmalade\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) Marmalade: Build Y1 Marmalade\n\n19) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n20) Marmalade: Trade Y2 G2 Marmalade\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Soul\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n22) Marmalade: Move G2 Marmalade Quoth\n\n23) SilentTitan: Discover G2 Soul Y2 Sole\n\n24) Marmalade: Build Y2 Marmalade\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Sol\nBuild Y3 Silenttitan\nBuild G3 Sole\n\tMarmalade: These settlers are pretty imaginative.\n\tSilentTitan: lol, I don&#39;t believe anyone has ever commented on my star name choices before\r\n\n\n26) Marmalade: Build B1 Marmalade\n\n27) SilentTitan: Trade G3 B3 Silenttitan\n\tMarmalade: I&#39;m really bad at setting up &quot;factory&quot; things - or in managing the stash in general.\n\tSilentTitan: most beginners are... it&#39;s a component of the game that comes with actually playing it and having someone mess you over with it a few times. \n\tSilentTitan: to that end.. if you want to pick up this game and start another I have no problem with that... or if you&#39;d like to continue to play this out for the knowledge I have no issue with that either. \n\n28) Marmalade: Build G3 Quoth\n\tMarmalade: Oh no, I&#39;m not suggesting I&#39;m giving up! I&#39;d much rather be soundly beaten and have a game I can pull apart later, then abandon it as soon as it looks like I&#39;m in trouble.\n\n29) SilentTitan: Move G1 Soul Quoth\nCatastrophe Quoth Green\n\n30) Marmalade: Move Y1 Marmalade Sole\n\n31) SilentTitan: Sacrifice B3 Silenttitan\nTrade G2 B2 Sole\nTrade Y1 B1 Sol\nTrade Y3 G3 Silenttitan\n\n32) Marmalade: Trade Y2 G2 Marmalade\n\n33) SilentTitan: Sacrifice G3 Sole\nBuild B1 Sol\nBuild B2 Sol\nBuild B3 Sole\n\n34) Marmalade: Sacrifice B1 Marmalade\nTrade B3 Y3 Marmalade\n\n35) SilentTitan: Sacrifice R1 Silenttitan\nAttack Y1 Sole South\n\n36) Marmalade: Discover G2 Marmalade Y2 Seoul\n\tMarmalade: Sorry about the undo, being stupid.\n\n37) SilentTitan: Sacrifice B2 Sol\nTrade Y1 G1 Sole\nTrade B1 R1 Sol\n\tSilentTitan: don&#39;t worry about undo I am always using that.... the worst part is to make two dumb mistakes in a row.. then you&#39;re stuck with the second mistake and for some reason it&#39;s always worse the second time.\n\n38) Marmalade: Build Y1 Marmalade\n\tMarmalade: I suspect that I&#39;m far too behind with this one. This would be my third game, but the third different way of losing, which is good to know :)\n\n39) SilentTitan: Trade B2 R2 Sole\n\tSilentTitan: Third different way of losing? how so?\n\tMarmalade: Well, first game against you I think the major turning point was that I just blanked insofar as sacrificing reds worked.\r\n\r\nThe second, with someone else, I lost mostly because of my stack management, but also because I made a crucial error whilst half asleep one morning.\r\n\r\nThis one I&#39;ve been massively outclassed economically - my actions have been purely reactive, and generally less efficient. You have control over everything, and dominance in most colours and ship sizes, with nowhere for me to excel.\r\n\r\nYou&#39;re not immediately threatening my homeworld, but it will take something major to claw back any kind of initiative.\n\n40) Marmalade: Move R2 Marmalade Seoul\n\tSilentTitan: oh... I was thinking ... in different terms .... you lose by losing the stars in your homeworld or you lose by losing all the ships in your homeworld and I couldn&#39;t for the life of me figure out how you could lose a third way. \r\n\n\n41) SilentTitan: Build Y1 Sol\n\n42) Marmalade: Discover Y1 Marmalade B2 Sool\n\tMarmalade: Do you think it&#39;s a little strange to have a text-based interface for this? It works well, and relates directly to the pgn, but given that the options are limited to begin with there&#39;s no reason why it couldn&#39;t be done with drop-down menus, tick-boxes or whatever.\n\tSilentTitan: True. however, I also play the chase game on this site and one of the things that bugs me about that game is every possible move for each turn is offered to you on a menu. I&#39;d rather not have the computer show me all my possible choices. \n\n43) SilentTitan: Discover Y1 Sol G2 Tic\n\n44) Marmalade: Build R1 Seoul\n\n45) SilentTitan: Trade B3 Y3 Sole\n\n46) Marmalade: Move R1 Seoul Marmalade\n\n47) SilentTitan: Build Y1 Tic\n\n48) Marmalade: Move R2 Seoul Marmalade\n\n49) SilentTitan: Sacrifice Y3 Sol\nMove Y1 Tic Marmalade\nMove Y1 Tic Marmalade\nMove R2 Sole Marmalade\nCatastrophe Marmalade Red\n\n50) Marmalade: Move G2 Seoul Marmalade\n\n51) SilentTitan: Sacrifice Y3 Sole\nMove G1 Sole Marmalade\nMove G1 Silenttitan Sol\nMove G1 Sol Marmalade\nCatastrophe Marmalade Green\n\n\tSilentTitan: Thanks for playing. \n\tMarmalade: Cheers for that - I lost that one a long time ago, but it was worth playing out. Thank you.\r\n\n\nHomeworlds Online (SDG# 24127)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.10, Ended: 2013.7.8\nParticipants: Aristos (S), Subhan64 (N)\nWinner: Aristos\n\n1) Subhan64: Homeworld B1 Y2 G3\n\tAristos: Good luck.\n\n2) Aristos: Homeworld G3 B2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\tSubhan64: thanks, you too!\r\n\n\n4) Aristos: Build Y1 Aristos\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Aristos: Trade Y1 B1 Aristos\n\n7) Subhan64: Build G1 Subhan64\n\n8) Aristos: Build B1 Aristos\n\n9) Subhan64: Build Y1 Subhan64\n\n10) Aristos: Discover B1 Aristos Y1 Spark\n\n11) Subhan64: Trade Y1 G1 Subhan64\n\n12) Aristos: Trade Y3 G3 Aristos\n\n13) Subhan64: Discover G1 Subhan64 B3 Papasmurf\n\n14) Aristos: Sacrifice G3 Aristos\nBuild B2 Spark\nBuild B2 Spark\nBuild B3 Aristos\n\tAristos: Ping!\n\n15) Subhan64: Trade G3 B3 Subhan64\n\n16) Aristos: Sacrifice B2 Spark\nTrade B3 Y3 Aristos\nTrade B2 G2 Spark\n\n17) Subhan64: Trade G1 R1 Papasmurf\n\n18) Aristos: Build B2 Spark\n\n19) Subhan64: Build G1 Subhan64\n\n20) Aristos: Sacrifice G2 Spark\nBuild B2 Aristos\nBuild B3 Spark\n\n21) Subhan64: Build Y1 Subhan64\n\n22) Aristos: Sacrifice B2 Aristos\nTrade B2 Y2 Spark\nTrade B3 R3 Spark\n\n23) Subhan64: Discover G1 Subhan64 B3 Blueberry\n\n24) Aristos: Move R3 Spark Blueberry\n\n25) Subhan64: Sacrifice Y1 Subhan64\nDiscover G1 Blueberry B2 Crunch\n\n26) Aristos: Build B2 Aristos\n\n27) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n28) Aristos: Trade R3 G3 Blueberry\n\n29) Subhan64: Trade B3 Y3 Subhan64\n\n30) Aristos: Sacrifice G3 Blueberry\nBuild B3 Spark\nBuild B3 Spark\nBuild Y1 Aristos\n\tAristos: ping\n\tAristos: ping ping\n\n\tAristos: I did not force the resignation... it happened automatically because this was a ladder game.\n\tSubhan64: Yes, sorry, was out of town &amp; didn&#39;t put enough vacation time in :( Oh well!\n\nHomeworlds Online (SDG# 24121)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.10, Ended: 2013.6.18\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld B2 R1 G3\n\tBroccoli_Commander: Have a good game Sir!\n\twil: Yea!!  I get to play a game while trying to climb the ladder...(instead of waiting for declines)!!\n\n2) Broccoli_Commander: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: I know the pain, I&#39;ve even kinda given up trying climbing higher because of this very reason\n\twil: I&#39;ve told them....they need to instigate a program...so the dead can be removed...\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\tBroccoli_Commander: Yeah for sure! But also the system is a bit stupid: I actually hesitated before accepting your challenge because I can only go *down* the ladder or, if I win, stay on the same spot!? \r\n==&gt; why would I ever accept a challenge?\r\n\r\nWell in the end I don&#39;t care about my rank so I accepted :-D Nevertheless it is much more interesting playing against the top players! Btw the worst thing is when an almost dead player still accepts the challenge: you then have to wait 3days between each turn till the #20 (i.e. 2 months!) even though you won on turn #5 (which was two weeks already). It strips out all of your motivation...\r\n\n\n5) wil: Trade G1 R1 Wil\n\twil: gad, I hear you....to me it is all about playing and learning...and when you lose you only go one down the ladder, when you do the denies at least you drop to the bottom.   I just wanna get up in that top 12-15 where it looks like they actuallly play games.\n\n6) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n7) wil: Build R2 Wil\n\n8) Broccoli_Commander: Build R2 Broccoli_commander\n\n9) wil: T R1 Y1 Wil\n\n10) Broccoli_Commander: Build G1 Broccoli_commander\n\n11) wil: Build G1 Wil\n\n12) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry\n\n13) wil: Discover G1 Wil Y3 Y3\n\n14) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n15) wil: Move R2 Wil Y3\n\n16) Broccoli_Commander: Build R1 Blueberry\n\n17) wil: Build G1 Wil\n\n18) Broccoli_Commander: Build G2 Broccoli_commander\n\n19) wil: Build G2 Wil\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n21) wil: Trade G1 B1 Wil\n\n22) Broccoli_Commander: Trade R1 Y1 Blueberry\n\twil: very nice...didnt see where the factory would be so advantageous....and how did you pick your moniker here?\n\n23) wil: Build B1 Wil\n\tBroccoli_Commander: Thanks, well a factory is always useful ;)\r\nAbout my moniker, well I came here to play homeworlds (I could try it live once and wanted to play more) and I came up with sth sounding both homeworlds-ish and very serious. Funnily I discovered afterwards that an online comic is also named broccoli commander.\r\nAnd you, are you in anyway related to dlwillson or is it a &quot;coincidence&quot;?\n\twil: coincidence...Iast name ...first name I believe, yeah I just didn&#39;t see I was setting you up for a factory....slowly learning.\n\n24) Broccoli_Commander: Move G3 Blueberry Y3\n\n25) wil: Discover R2 Y3 G1 G1\n\n26) Broccoli_Commander: Trade G2 B2 Broccoli_commander\n\n27) wil: Discover G1 Y3 Y1 Y1\n\n28) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\nBuild B3 Broccoli_commander\n\n29) wil: Discover B1 Wil Y3 Y3a\n\n30) Broccoli_Commander: Move B3 Broccoli_commander G1\n\tBroccoli_Commander: sorry for the undo\n\n31) wil: Move G2 Wil Y3a\n\twil: heck undo&#39;s aren&#39;t a problem...one should actually have a committ button here...so youcan see the lay of the land after a potential move prior to allowing it to become permanent...\r\n\r\n\r\nI&#39;ve lost a couple games becasuse after seeng what it looked like I wanted to change...yet the other had already moved.\n\n32) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B3 Broccoli_commander\nBuild B3 G1\n\twil: i just gotta learn to bully\n\n33) wil: Build Y2 Wil\n\n34) Broccoli_Commander: Move B3 Broccoli_commander Y1\n\tBroccoli_Commander: beware of the factory it quickly gets out of control :-)\r\nAnd note that you had a factory too! But not anymore since you moved the g2 from your homeworld...\n\twil: had a factory...but no place to grow....some bully is in town taking over every place we settle!\n\twil: had a factory...but no place to grow....some bully is in town taking over every place we settle!\n\n35) wil: Move G1 Y1 Broccoli_commander\n\n36) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Y3\nBuild Y2 Blueberry\n\tBroccoli_Commander: those damn bullies ^_^\n\n37) wil: Build R1 G1\n\n38) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack R1 G1\nAttack R2 G1\n\n39) wil: Discover Y1 Wil R3 R3\n\n40) Broccoli_Commander: Move B3 Y1 Y3a\n\twil: yeah...that was stupid...of course you&#39;d sac one for two..\n\twil: I&#39;m digging myself so deep I need you to make about four major mistakes...\n\n41) wil: Discover G2 Y3a Y1 Y1\n\n42) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G3 Y3 Wil\nMove B3 Y3a Wil\n\n43) wil: Attack B3 Wil\n\tBroccoli_Commander: Yeah I think it&#39;s pretty much over, but nasty surprises are always possible :-)  Although the lack of y3 ships really mitigates the possibilities \n\twil: he says as his chameleon moves in to control yet another peaceful star system...\n\n44) Broccoli_Commander: Sacrifice R2 G1\nAttack B3 Wil\nAttack G3 Wil\n\twil: I&#39;m just hopin you woud oblige me another game (you know if you&#39;d lose one to me it wouldn&#39;t take me six months of attempting to crawl over the masses of dead...and then i&#39;d gladly lose one right back to you to regain your honor)\n\n45) wil: Move B1 Y3a Wil\nCatastrophe Wil B\n\tBroccoli_Commander: Sure! Always glad to actually play :-)\n\tBroccoli_Commander: But if I lose the next one, we can also continue playing outside the ladder (and meet back at the top ;-) )\n\twil: ah you took my guns and I forgot to rebuild....a cavalcade of errors...\n\n46) Broccoli_Commander: Attack Y2 Wil\n\n\twil: I can solve that...\n\nHomeworlds Online (SDG# 24139)\nStarted: 2013.6.14, Ended: 2013.6.21\nParticipants: thejackdiaz (S), EarlOfSlothel (N)\nWinner: thejackdiaz\n\n1) EarlOfSlothel: Homeworld B3 G2 Y3\n\n2) thejackdiaz: Homeworld Y2 B1 G3\n\tEarlOfSlothel: MY ART\n\tEarlOfSlothel: SHAPE OF PLANE\n\n\nHomeworlds Online (SDG# 24135)\nVariants: &quot;No undo, Unrated, Hard time&quot;\nStarted: 2013.6.15, Ended: 2013.6.18\nParticipants: wil (S), Argel (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24113)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.18, Ended: 2013.7.11\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\twil: I don&#39;t think I&#39;ve gone terribly wrong yet...   \n\tSilentTitan: Ha.... I think you&#39;re right.  \n\n6) wil: Trade G1 Y1 Wil\n\twil: I&#39;d appreciate when you see me make what you would consider a poor move or a grevious mistake to point it out (take advantage of it by all means) but tell me where I went wrong and why...  I seem to make some biggies, but some small tactical ones that lead to a cumulative disadvantage that I don&#39;t understand....twould be appreciated...\n\n7) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: ok.. I will be glad to do that.\n\n8) wil: Build G1 Wil\n\tSilentTitan: first I will be building up... trying to get to a position where I can use the G3 to my advantage.  Also I like to corner the yellows as you well know.  Additionally, I&#39;m manipulating the bank so as to try putting you into making a bad selection, one that would allow me to get a 2-pip build and have you unable to because it would put you in danger of a catastrophe. \r\n\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\twil: Thank you....  and you&#39;ve already gone beyond...hints on strategy...thanx.\n\n10) wil: Trade G1 R1 Wil\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: Build R1 Wil\n\n13) SilentTitan: Build G1 Sol\n\n14) wil: Build G2 Wil\n\n15) SilentTitan: Build G2 Silenttitan\n\n16) wil: Discover G2 Wil Y2 Y2\n\twil: very nice move...\n\n17) SilentTitan: Discover G2 Silenttitan G3 Soul\n\n18) wil: Build G2 Wil\n\n19) SilentTitan: Sacrifice G2 Soul\nBuild G2 Sol\nBuild G3 Silenttitan\n\n20) wil: Move G2 Y2 Sol\nCatastrophe Sol G\n\n21) SilentTitan: Trade G3 R3 Silenttitan\n\n22) wil: Discover R1 Wil Y2 Y2\n\n23) SilentTitan: Discover R3 Silenttitan Y3 Sol\n\n24) wil: Discover R1 Y2 G3 G3\n\n25) SilentTitan: Move G1 Silenttitan Sol\n\n26) wil: Build Y1 Wil\n\n27) SilentTitan: Build R2 Sol\n\n28) wil: Build Y2 Wil\n\n29) SilentTitan: Build Y2 Silenttitan\n\n30) wil: Discover Y1 Wil R2 R2\n\n31) SilentTitan: Discover Y2 Silenttitan R3 Soul\n\n32) wil: Build R2 G3\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) wil: Discover Y2 Wil G2 G2\n\n35) SilentTitan: Discover G1 Silenttitan Y3 Tic\n\n36) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y3 Wil\nBuild G1 Wil\n\n37) SilentTitan: Move R3 Sol G2\n\n38) wil: Sacrifice Y2 G2\nMove Y2 G2 G3\nDiscover Y1 Wil B2 B2\n\n39) SilentTitan: Build G2 Silenttitan\n\n40) wil: Trade G1 B1 Wil\n\tSilentTitan: ok.. I undid this move and I feel I need to explain.  If you use your pyramids to process the turn I&#39;ve backup up from.. you should see that you&#39;d have been able to sac your y3 in wil and run both the yellows from g3 and r2 into my homeworld and cause a cat thereby winning you the game. \n\n41) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G3 Tic\nBuild G3 Silenttitan\n\twil: color me confused?  won the game?  I would have only killed your yellows..you&#39;d be left with a binary star and a g3 and my I&#39;d have zero queen ships...\n\n42) wil: Build Y2 G3\n\tSilentTitan: North&#39;s ship G3 was sacrificed in the SilentTitan system. North created a Y2 ship in the SilentTitan system. North created a G2 ship in the sol system. North created a G3 ship in the tic system. \r\n\r\nwas the turn I undid.  in this case you can see I sac&#39;ed the G3 in my homeworld and built a y2..  so at that point only the y1 and y2 were in my homeworld.\n\n43) SilentTitan: Move Y2 Soul G2\n\twil: ok, I missed the I would have been able to...I read it wrong and thought you were referring to what I should have done....btw I just lost a physical game to that very bluebird mistake!!  aaarrggghhhh\n\twil: ok, I missed the I would have been able to...I read it wrong and thought you were referring to what I should have done....btw I just lost a physical game to that very bluebird mistake!!  aaarrggghhhh\n\n44) wil:\nMove R1 Wil B2\n\n45) SilentTitan: Move G3 Tic B2\n\n46) wil: Sacrifice Y2 G3\nMove R2 G3 G2\nMove R2 G2 Tic\n\n47) SilentTitan: Sacrifice G3 B2\nBuild R3 Sol\nBuild Y2 G2\nBuild G3 Tic\n\n48) wil: Move R2 Tic R2\n\n49) SilentTitan: Move G1 Tic G2\n\n50) wil: Move B1 Wil B2\n\n51) SilentTitan: Discover R3 Sol B2 Tac\n\n52) wil: Move B1 B2 G3\n\n53) SilentTitan: Sacrifice G3 Tic\nBuild Y3 Silenttitan\nBuild G3 Silenttitan\nPass\n\twil: It&#39;s only a matter of time.......you should resign now ;D\r\n\n\n54) wil: Build B1 G3\n\tSilentTitan: It always is .... I shall consider your advice carefully. \n\n55) SilentTitan: Move G1 Sol Tac\n\n56) wil: Move G2 Wil R2\n\n57) SilentTitan: Move G3 Silenttitan Sol\n\n58) wil: Build B3 G3\n\n59) SilentTitan: Discover Y1 Silenttitan B3 Toe\n\n60) wil: Move B3 G3 R2\n\n61) SilentTitan: Move G2 Silenttitan Toe\n\n62) wil: Build B3 G3\n\n63) SilentTitan: Move Y1 Toe Tac\n\n64) wil: Move B3 R2 Wil\n\n65) SilentTitan: Move G3 Sol B2\n\n66) wil: Move R1 B2 G3\n\n67) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Tac G3\nMove G1 G2 G3\nMove G3 B2 G3\nCatastrophe G3 Green\n\n68) wil: Build G1 R2\n\n69) SilentTitan: Build G1 Silenttitan\n\n70) wil: Trade B3 G3 Wil\n\n71) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Sol\nBuild R1 Sol\n\n72) wil: Discover G2 R2 Y3 Y3\n\n73) SilentTitan: Trade G1 B1 Silenttitan\n\n74) wil: Build G1 Wil\n\n75) SilentTitan: Discover R2 Sol Y2 Hic\n\n76) wil: Trade Y1 B1 B2\n\n77) SilentTitan: Build R1 Sol\n\n78) wil: Sacrifice G2 Y3\nBuild Y1 Wil\nBuild Y3 R2\n\n79) SilentTitan: Sacrifice Y2 G2\nMove R1 Sol R2\nMove R1 Sol R2\nCatastrophe R2 Red\n\n80) wil: Move Y1 Wil B2\n\n81) SilentTitan: Sacrifice G3 Sol\nBuild Y1 G2\nBuild Y2 Tac\nBuild G1 Silenttitan\n\n82) wil: Trade B1 R1 B2\n\n83) SilentTitan: Sacrifice Y2 G2\nMove R3 G2 Wil\nMove R2 Hic Wil\n\n84) wil: Attack R3 Wil\n\n85) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Wil\nBuild G2 Toe\nBuild G3 Silenttitan\nCatastrophe Wil Red\n\n86) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 B2\nBuild R1 B2\n\n87) SilentTitan: Sacrifice Y2 Tac\nMove G2 Toe Wil\nMove G2 Toe Wil\nCatastrophe Wil Green\n\n88) wil: Trade Y3 R3 Wil\n\n89) SilentTitan: Build Y2 G2\n\n90) wil: Trade R1 G1 B2\n\n91) SilentTitan: Trade G1 B1 Silenttitan\n\n92) wil: Build G1 B2\n\tSilentTitan: I&#39;m currently in Rochester NY.  \n\twil: Is that where you reside?  or are you on travel?  (i have a lot of family up there)\n\n93) SilentTitan: Build G2 Silenttitan\n\twil: I was close a couple of moments but have been running most of the game and it appears I&#39;m gonna be outta wind soon.\n\tSilentTitan: We are on summer vacation.  Wife has family up here in finger lake region.\n\n94) wil: Move G1 B2 Wil\n\n95) SilentTitan: Trade G2 Y2 Silenttitan\n\twil: Pretty time to be up there...  nice boating/skiing on those lakes....lots of pretty scenery, make sure you wear your shades so you don&#39;t get in trouble.    \n\n96) wil: Build G2 B2\n\n97) SilentTitan: Discover B1 Silenttitan Y3 Miney\n\n98) wil: Move R1 B2 Sol\n\n99) SilentTitan: Sacrifice G1 Sol\nBuild B3 Miney\n\twil: I know it is over, and I have been running in circles playing rope a dope...but this is I think my longest game yet...50 moves.\n\n100) wil: Discover Y1 B2 G3 G3\n\tSilentTitan: Yeah. I need to work on taking down opponants faster.\n\n101) SilentTitan: Sacrifice Y2 G2\nMove B3 Miney Wil\nMove B1 Miney Wil\n\n102) wil: Attack B3 Wil\n\n103) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Wil\nPass\nPass\nCatastrophe Wil Blue\n\n\tSilentTitan: Good game 55 turns.  That&#39;s a record for me.\n\twil: You chased me around like a cornered rat most of the time...a sensible person would have forfieted....me...i&#39;m hoping you accidentally sink the 8 ball...\n\nHomeworlds Online (SDG# 24163)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.18, Ended: 2013.7.26\nParticipants: SirRuthvenMurgatroyd (S), wil (N)\nWinner: SirRuthvenMurgatroyd\n\n1) wil: Homeworld R2 B1 G3\n\n2) SirRuthvenMurgatroyd: Homeworld G3 B2 Y3\n\n3) wil: Build G1 Wil\n\n4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n5) wil: Trade G1 Y1 Wil\n\n6) SirRuthvenMurgatroyd: Trade Y1 G1 Sirruthvenmurgatroyd\n\n7) wil: Build G1 Wil\n\n8) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n9) wil: Discover G1 Wil Y3 Y3\n\n10) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd B1 B1\n\n11) wil: Build Y1 Wil\n\n12) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G1 G1\n\n13) wil: Build G2 Wil\n\n14) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n15) wil: Discover Y1 Wil G3 G3\n\n16) SirRuthvenMurgatroyd: Build G2 B1\n\n17) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild Y2 G3\nBuild G3 Wil\n\n18) SirRuthvenMurgatroyd: Sacrifice Y1 G1\nDiscover G2 B1 Y3 Sol\n\n19) wil: Trade Y1 B1 Wil\n\n20) SirRuthvenMurgatroyd: Build G1 Sol\n\n21) wil: Discover Y2 G3 R1 R1\n\n22) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n23) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Wil\nBuild Y1 R1\n\n24) SirRuthvenMurgatroyd: Move G2 Sol Wil\n\n25) wil: Sacrifice Y1 R1\nMove G2 Wil Sol\n\n26) SirRuthvenMurgatroyd: Trade G2 B2 Wil\nCatastrophe Wil Blue\n\n27) wil: Move G2 Y3 B1\n\twil: what was I thinking...nice move.\n\n28) SirRuthvenMurgatroyd: Build G2 Sol\n\n29) wil: Trade G2 R2 B1\n\n30) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd\nMove G1 B1 Wil\nMove G1 Sol Wil\nMove G2 Sol Wil\nCatastrophe Wil Green\n\twil: thanx for the annihilation...\n\tSirRuthvenMurgatroyd: haha no problem :p\r\nI thought you had me for a while, though, with your vastly superior number of ships.\n\n\nHomeworlds Online (SDG# 24098)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.19, Ended: 2013.6.29\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld B1 Y2 G3\n\tBroccoli_Commander: Hello again,\r\nI was waiting for your challenge on the ladder ?! But I saw you challenged SirRuthvenSomething so I figured I&#39;d come here instead.\r\nGood game\n\n2) wil: Homeworld R3 B1 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build G1 Wil\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\twil: I guess I lost the right to challenge you (5 away first try, 4 second?) as you did not show up on the challenge me list...\n\n6) wil: Trade G1 R1 Wil\n\tBroccoli_Commander: I see... maybe you just can&#39;t challenge the same guy twice in a row\n\twil: Yeah...don&#39;t know...but good luck in your game...you may just bolt through the muck...\n\twil: so there is that get right out there move....hmmmm.....\n\n7) Broccoli_Commander: Build G1 Blueberry\n\n8) wil: Build R1 Wil\n\n9) Broccoli_Commander: Trade G1 R1 Blueberry\n\n10) wil: Trade R1 Y1 Wil\n\n11) Broccoli_Commander: Build G1 Blueberry\n\n12) wil: Build Y1 Wil\n\n13) Broccoli_Commander: Trade G1 Y1 Blueberry\n\n14) wil: Discover Y1 Wil G2 G2\n\n15) Broccoli_Commander: Build Y2 Blueberry\n\n16) wil: Build Y2 G2\n\n17) Broccoli_Commander: Discover Y1 Blueberry G2 Lettuce\n\n18) wil: Build Y3 Wil\n\n19) Broccoli_Commander: Build Y3 Blueberry\n\n20) wil: Move Y1 G2 Blueberry\n\n21) Broccoli_Commander: Build Y3 Lettuce\n\n22) wil: Move Y2 G2 Blueberry\nCatastrophe Blueberry Y\n\n23) Broccoli_Commander: Build G1 Broccoli_commander\n\n24) wil: Discover Y3 Wil G2 G2\n\n25) Broccoli_Commander: Move Y3 Lettuce Blueberry\n\n26) wil: Move R1 Wil G2\n\n27) Broccoli_Commander: Build G1 Blueberry\n\n28) wil: Build G2 Wil\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\nBuild R1 Blueberry\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G2\nBuild Y2 Wil\n\n31) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y2 Blueberry\nBuild Y3 Lettuce\n\n32) wil: Discover G2 Wil B2 B2\n\n33) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove R1 Blueberry Lettuce\nDiscover G1 Broccoli_commander B3 Muffin\nMove G1 Blueberry Lettuce\n\n34) wil: Trade Y1 B1 Wil\n\n35) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R2 Blueberry\nBuild R2 Lettuce\n\n36) wil: Build B2 Wil\n\n37) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Lettuce\nBuild Y3 Blueberry\n\n38) wil: Move Y2 Wil Lettuce\nCatastrophe Lettuce Y\n\n39) Broccoli_Commander: Trade R2 B2 Blueberry\n\n40) wil: Trade B2 Y2 Wil\n\n41) Broccoli_Commander: Move Y3 Blueberry Lettuce\n\n42) wil: Move B1 Wil G2\n\n43) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R2 Blueberry\nBuild Y1 Blueberry\n\n44) wil: Build B2 G2\n\n45) Broccoli_Commander: Move B2 Blueberry Lettuce\n\tBroccoli_Commander: There&#39;s a high population in Blueberry\n\n46) wil:\nDiscover Y1 G2 B3 B3\n\twil: there is, looks like a carrier fleet ready to advance....starting to bother me...\n\tBroccoli_Commander: Ah I see you have mean plans\n\n47) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Blueberry\nBuild Y3 Lettuce\n\n48) wil: Build R2 G2\n\n49) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove R1 Blueberry G2\nMove R2 Blueberry G2\nCatastrophe G2 R\n\n50) wil: Build Y2 G2\n\n51) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove Y3 Lettuce Wil\nMove G3 Blueberry Lettuce\nMove G3 Lettuce Wil\n\n52) wil: Move G3 Wil G2\n\n53) Broccoli_Commander: Attack Y2 Wil\n\n\twil: We leave in peace to form a new civilization away from marauders..\n\tBroccoli_Commander: oh well... It was a trap :P\n\twil: well done trap...   I gotta learn it.\n\nHomeworlds Online (SDG# 24162)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.20, Ended: 2013.6.27\nParticipants: ausmuh (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ausmuh: Homeworld G3 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) ausmuh: Build B1 Ausmuh\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) ausmuh: Build B1 Ausmuh\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) ausmuh: Discover B1 Ausmuh G2 Gwar\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) ausmuh: Build B1 Gwar\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) ausmuh: Trade B3 Y3 Ausmuh\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n14) ausmuh: Build B2 Ausmuh\n\n15) SilentTitan: Trade Y2 B2 Sol\n\n16) ausmuh: Discover B2 Ausmuh Y2 Slayer\n\n17) SilentTitan: Discover B2 Sol G2 Sole\n\n18) ausmuh: Build B3 Gwar\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove B2 Sole Sol\nMove B2 Sol Gwar\nCatastrophe Gwar Blue\n\n20) ausmuh: Trade B1 R1 Ausmuh\n\n21) SilentTitan: Trade Y2 R2 Sol\n\n\nHomeworlds Online (SDG# 24171)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.20, Ended: 2013.6.23\nParticipants: Marmalade (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) Marmalade: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Marmalade: Build G1 Marmalade\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Marmalade: Discover G1 Marmalade B2 Canopus\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Marmalade: Build G1 Canopus\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) Marmalade: Trade G1 R1 Canopus\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Marmalade: Build G1 Marmalade\n\n13) SilentTitan: Discover Y1 Sol R2 Sole\n\n14) Marmalade: Build G1 Canopus\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sole\nBuild Y2 Sole\nBuild Y3 Silenttitan\n\n16) Marmalade: Move G3 Marmalade Sole\n\n17) SilentTitan: Sacrifice Y2 Sole\nDiscover Y2 Sole G3 Soul\nDiscover Y1 Sole G3 Tic\n\n18) Marmalade: Build G2 Sole\n\n19) SilentTitan: Build Y2 Tic\n\n20) Marmalade: Sacrifice G3 Sole\nBuild G2 Sole\nBuild G2 Canopus\nBuild G3 Marmalade\n\n21) SilentTitan: Build Y3 Soul\n\n22) Marmalade: Trade G3 Y3 Marmalade\n\n23) SilentTitan: Trade Y3 G3 Silenttitan\n\n24) Marmalade: Build Y3 Marmalade\n\n25) SilentTitan: Sacrifice Y2 Soul\nMove Y1 Tic Sole\nMove Y1 Sole Marmalade\nCatastrophe Marmalade Yellow\n\n26) Marmalade: Trade G1 R1 Marmalade\n\n27) SilentTitan: Move G3 Silenttitan Marmalade\n\n28) Marmalade: Trade G2 Y2 Canopus\n\n29) SilentTitan: Trade G3 R3 Marmalade\n\n30) Marmalade: Sacrifice Y2 Canopus\nMove G2 Sole Marmalade\nMove R1 Canopus Marmalade\n\n31) SilentTitan: Attack G2 Marmalade South\n\n32) Marmalade: Trade R1 G1 Marmalade\n\n33) SilentTitan: Sacrifice R3 Marmalade\nAttack R1 Marmalade South\nAttack G1 Marmalade South\nPass\n\tMarmalade: Thanks for the game :)\n\tSilentTitan: Thank you for the game\n\n\nHomeworlds Online (SDG# 24165)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.20, Ended: 2013.6.24\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld Y3 B1 G3\n\n3) wil: Build G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: Discover G1 Wil Y3 Y3\n\n6) Marmalade: Discover G1 Marmalade B2 Formalhaut\n\n7) wil: Build G1 Wil\n\n8) Marmalade: Build G2 Marmalade\n\n9) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 Y3\nBuild G3 Wil\n\n10) Marmalade: Sacrifice G2 Marmalade\nBuild G2 Marmalade\nBuild G3 Formalhaut\n\n11) wil: Trade G2 R2 Wil\n\n12) Marmalade: Trade G1 R1 Formalhaut\n\n13) wil: Trade G1 B1 Wil\n\n14) Marmalade: Build G1 Formalhaut\n\n15) wil: Build B2 Wil\n\n16) Marmalade: Build R1 Formalhaut\n\n17) wil: Discover G2 Y3 Y2 Y2\n\n18) Marmalade: Trade G2 Y2 Marmalade\n\n19) wil: Move B1 Wil Y3\n\n20) Marmalade: Sacrifice Y2 Marmalade\nMove G3 Formalhaut Y3\nMove R1 Formalhaut Y3\n\n21) wil: Sacrifice G2 Y2\nBuild G1 Y3\nBuild G2 Y3\nCatastrophe Y3 G\n\n22) Marmalade: Attack B1N Y3\n\n23) wil: Discover B2 Wil G3 G3\n\n24) Marmalade: Build G1 Marmalade\n\n25) wil: Build B2 G3\n\n26) Marmalade: Sacrifice G3 Marmalade\nBuild B3 Y3\nBuild B3 Y3\nBuild G1 Marmalade\n\n27) wil: Build B3 G3\n\n28) Marmalade: Trade B3 G3 Y3\n\twil: wow\n\n29) wil: Sacrifice B2 G3\nTrade B3 R3 G3\nTrade B2 Y2 G3\n\twil: you sure made it get interesting fast!\n\n30) Marmalade: Move G3 Y3 Formalhaut\n\tMarmalade: heehee cheers\r\n\n\n31) wil: Sacrifice Y2 G3\nMove R3 G3 Formalhaut\nMove R3 Formalhaut Marmalade\n\n32) Marmalade: Build G2 Marmalade\n\n33) wil: Sacrifice R2 Wil\nAttack G2 Marmalade\nAttack G1 Marmalade\n\twil: I think I got outta the jam and into the marmalade\n\twil: I&#39;m still new to this game...  it took me 10 games just to learn the system halfway...the past 20 games I&#39;ve been winning some and losing some...every loss teaches me something that I didn&#39;t see coming....  one rule...always keep a queen (3pip) in your homeworld (unless she goes out for the kill)   \n\twil: I&#39;m still new to this game...  it took me 10 games just to learn the system halfway...the past 20 games I&#39;ve been winning some and losing some...every loss teaches me something that I didn&#39;t see coming....  one rule...always keep a queen (3pip) in your homeworld (unless she goes out for the kill)   \n\n34) Marmalade: Trade G1 R1 Marmalade\n\tMarmalade: Yep, think I may have screwed up here.\r\n\r\nI was trying to gain an advantage in size-three ships, and didn&#39;t see the trade for red/double-move, which may have been the only thing that could have saved me.\n\n35) wil: Attack R1 Marmalade\n\twil: It was a valid plan....another hint I&#39;ve learned...anytime anyone trades for a yellow...especially a two or three pip....look at where they can move..they are usually getting set for an attack someplace...\n\n\tMarmalade: yeah, no way out of this one.\r\n\r\nCheers :)\n\twil: diving into my homeworld with your triple blue would have extended the game and given me a chance to do something stupid...another thing I&#39;ve learned....prolonging the game provides opportunities for openings when it appears all is lost as the dominator gets cocky....a reboot (catastrophe or two) changes the game quickly....  good game...love to play another when you are interested....this is definitely a game you learn by losing...\n\nHomeworlds Online (SDG# 24193)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.24, Ended: 2013.12.8\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Danner: Homeworld B1 R2 G3\n\tDanner: Wow, this will be epic! The top ladder position is at stake, and I&#39;m playing with the player with the highest rating!\r\nGood luck!\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build G1 Danner\n\n5) TwoShort: Trade G1 B1 Twoshort\n\tDanner: How do you resolve cycles in games?\n\n6) Danner: Trade G1 B1 Danner\n\tTwoShort: There isn&#39;t an explicit rule, so my theory is that if neither player is willing to break the cycle it&#39;s a draw.  It&#39;s easy to construct artificial examples where both players should take a draw; and I&#39;ve seen the potential in past games, and considered whether I wanted a draw, but I&#39;ve never  seen it actually happen.\r\n\n\tTwoShort: There isn&#39;t an explicit rule, so my theory is that if neither player is willing to break the cycle it&#39;s a draw.  It&#39;s easy to construct artificial examples where both players should take a draw; and I&#39;ve seen the potential in past games, and considered whether I wanted a draw, but I&#39;ve never  seen it actually happen.\r\n\n\tTwoShort: Not sure why I got the double post there.  Anyway, I&#39;d think it was kind of neat if a game led to such a situation, but the lack of an &quot;offer draw&quot; button here would be a pain :)\r\n\n\n7) TwoShort: Build B2 Twoshort\n\tDanner: I use the same rule in offline games! :) But as you said, there is no draw button. :(\r\nI have encountered such a situation. If you are interested in it: http://superdupergames.org/?page=archive_play&amp;gid=22703&amp;idx=19\n\n8) Danner: Build B2 Danner\n\n9) TwoShort: Trade B2 Y2 Twoshort\n\n10) Danner: Trade B2 Y2 Danner\n\n11) TwoShort: Build B2 Twoshort\n\n12) Danner: Build B2 Danner\n\tTwoShort: I can&#39;t decide if I think someone has a better move in that one...\n\tTwoShort: But in any case, there are possible positions where it is clear whoever breaks the cycle loses.  So by the default ko rule, there ought to be a draw button :)\r\n\n\n13) TwoShort: Trade B2 R2 Twoshort\n\tDanner: Indeed!\n\n14) Danner: Trade B2 R2 Danner\n\n15) TwoShort: Discover B1 Twoshort G2 Grogar\n\n16) Danner: Discover B1 Danner G3 Ragorg\n\n17) TwoShort: Build B2 Grogar\n\n18) Danner: Build B2 Ragorg\n\n19) TwoShort: Trade B1 R1 Grogar\n\n20) Danner: Trade B1 R1 Ragorg\n\n21) TwoShort: Build R3 Grogar\n\n22) Danner: Build R3 Ragorg\n\n23) TwoShort: Discover R2 Twoshort G2 Greenland\n\n24) Danner: Trade R1 Y1 Ragorg\n\n25) TwoShort: Trade R3 Y3 Grogar\n\n26) Danner: Build B1 Ragorg\n\n27) TwoShort: Discover R1 Grogar Y3 Yolonda\n\n28) Danner: Build Y1 Danner\n\n29) TwoShort: Build Y1 Grogar\n\n30) Danner: Move R2 Danner Yolonda\n\n31) TwoShort: Move Y3 Grogar Yolonda\n\n32) Danner: Move Y1 Danner Yolonda\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild B1 Grogar\n\n34) Danner: Attack R1 Yolonda\n\n35) TwoShort: Sacrifice B2 Grogar\nTrade Y2 G2 Twoshort\nTrade Y3 G3 Yolonda\n\n36) Danner: Move R3 Ragorg Grogar\n\n37) TwoShort: Sacrifice R2 Greenland\nAttack R2 Yolonda\nAttack R1 Yolonda\n\n38) Danner: Sacrifice G3 Danner\nBuild Y2 Yolonda\nBuild Y3 Yolonda\nBuild R1 Grogar\nCatastrophe Yolonda Y\n\n39) TwoShort: Discover Y2 Grogar G3 Greenland\n\n40) Danner: Attack Y1 Grogar\n\n41) TwoShort: Build G1 Twoshort\n\n42) Danner: Move R3 Grogar Greenland\n\n43) TwoShort: Build Y1 Greenland\n\n44) Danner: Trade Y2 G2 Danner\n\n45) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Greenland\nBuild B2 Grogar\n\n46) Danner: Move Y1 Grogar Greenland\nCatastrophe Greenland Y\n\n47) TwoShort: Trade B2 R2 Grogar\n\n48) Danner: Build R1 Grogar\n\n49) TwoShort: Build B2 Grogar\n\n50) Danner: Build R2 Greenland\n\n51) TwoShort: Sacrifice R2 Grogar\nAttack R1 Grogar\nAttack R1 Grogar\n\n52) Danner: Sacrifice B1 Ragorg\nTrade R3 Y3 Greenland\n\n53) TwoShort: Trade B2 Y2 Grogar\n\tDanner: Sorry for being so slow. School, work, competitions...\n\n54) Danner: Build R2 Greenland\n\n55) TwoShort: Discover R1 Grogar G3 Gondor\n\n56) Danner: Sacrifice B2 Ragorg\nTrade R2 B2 Greenland\nPass\n\n57) TwoShort: Build R2 Grogar\n\n58) Danner: Build R3 Greenland\n\n59) TwoShort: Build R3 Gondor\n\n60) Danner: Move Y3 Greenland Danner\n\n61) TwoShort: Sacrifice Y2 Grogar\nMove R2 Grogar Greenland\nMove R1 Grogar Greenland\nCatastrophe Greenland Red\n\n62) Danner: Build G1 Danner\n\n63) TwoShort: Build Y1 Twoshort\n\n64) Danner: Trade G2 R2 Danner\n\n65) TwoShort: Move Y1 Twoshort Grogar\n\n66) Danner: Move R2 Danner Ragorg\n\n67) TwoShort: Build Y1 Twoshort\n\n68) Danner: Build Y2 Danner\n\n69) TwoShort: Build Y2 Grogar\n\n\tDanner: Ooops, sorry. And thanks for the game.\n\nHomeworlds Online (SDG# 24195)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.24, Ended: 2013.6.27\nParticipants: Broccoli_Commander (S), sordros (N)\nWinner: Broccoli_Commander\n\n\nHomeworlds Online (SDG# 24160)\nVariants: &quot;No undo, Unrated, Hard time&quot;\nStarted: 2013.6.24, Ended: 2013.6.27\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 24101)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.6.24, Ended: 2013.6.27\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24200)\nStarted: 2013.6.26, Ended: 2014.8.30\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld B2 G1 R3\n\tguntz1092: homeworld\n\tguntz1092: okay so this is the chat and not the command box...\n\n2) guntz1092: Homeworld G2 B1 R3\n\tguntz1092: homeworld G2 Y3 R3\n\n3) thejackdiaz: Build R1 Thejackdiaz\n\tguntz1092: uhm. this is going to be a really bad game /relearning x_x\n\n4) guntz1092: Build R1 Guntz1092\n\n5) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n6) guntz1092: Build R1 Guntz1092\n\n7) thejackdiaz: Build R2 Thejackdiaz\n\tguntz1092: lol\n\n8) guntz1092: Build R2 Guntz1092\n\n9) thejackdiaz: Discover R1 Thejackdiaz B3 Badmovedude\nCatastrophe Guntz1092 R\n\n\nHomeworlds Online (SDG# 24216)\nVariants: &quot;No undo&quot;\nStarted: 2013.6.27, Ended: 2013.7.3\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld G2 B1 R3\n\n2) scotward: Homeworld B3 R1 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Trade R1 Y1 Erik2point0\n\n6) scotward: Build G1 Scotward\n\n7) Erik2point0: Build R1 Erik2point0\n\n8) scotward: Trade G1 Y1 Scotward\n\n9) Erik2point0: Trade R1 G1 Erik2point0\n\n10) scotward: Trade G1 B1 Scotward\n\n11) Erik2point0: Build G1 Erik2point0\n\n12) scotward: Build B1 Scotward\n\n13) Erik2point0: Build R1 Erik2point0\n\n14) scotward: Build G1 Scotward\n\n15) Erik2point0: Discover G1 Erik2point0 G3 Biggreen\n\n16) scotward: Discover B1 Scotward G2 Alpha\n\n17) Erik2point0: Build Y1 Erik2point0\n\n18) scotward: Build B2 Alpha\n\n19) Erik2point0: Discover Y1 Erik2point0 G3 Alsobiggreen\n\n20) scotward: Build Y2 Scotward\n\n21) Erik2point0: Build G2 Erik2point0\n\n22) scotward: Discover Y2 Scotward B2 Beta\n\n23) Erik2point0: Move G2 Erik2point0 Alsobiggreen\n\n24) scotward: Sacrifice G3 Scotward\nBuild B2 Alpha\nBuild B3 Scotward\nBuild G3 Scotward\n\n25) Erik2point0: Move Y1 Alsobiggreen Erik2point0\n\n26) scotward: Move B3 Scotward Beta\n\n27) Erik2point0: Sacrifice G2 Alsobiggreen\nBuild G2 Biggreen\nBuild G3 Erik2point0\n\n28) scotward: Sacrifice G3 Scotward\nBuild Y2 Beta\nBuild B3 Beta\nBuild G3 Scotward\n\n29) Erik2point0: Sacrifice Y1 Erik2point0\nDiscover G1 Biggreen Y2 Medyellow\n\tErik2point0: Man I screwed this game up\n\n30) scotward: Sacrifice B3 Beta\nTrade B3 Y3 Beta\nTrade Y2 R2 Beta\nTrade B2 R2 Alpha\n\n31) Erik2point0: Discover G1 Erik2point0 B3 Bigblue\n\n32) scotward: Move Y3 Beta Bigblue\n\n33) Erik2point0: Move R3 Erik2point0 Bigblue\n\n34) scotward: Sacrifice R2 Alpha\nAttack R3 Bigblue\nAttack G1 Bigblue\n\n35) Erik2point0: Build Y1 Erik2point0\n\n36) scotward: Sacrifice Y2 Beta\nMove Y3 Bigblue Erik2point0\nMove R3 Bigblue Erik2point0\n\tErik2point0: Ugh\n\n37) Erik2point0: Attack R3 Erik2point0\n\n38) scotward: Sacrifice R2 Beta\nAttack R3 Erik2point0\nAttack G3 Erik2point0\n\tscotward:  Resistance is futile!\n\n39) Erik2point0: Sacrifice G2 Biggreen\nBuild R1 Erik2point0\nBuild R2 Erik2point0\nCatastrophe Erik2point0 Red\n\tErik2point0: Mommy!\n\n40) scotward: Sacrifice G3 Erik2point0\nBuild Y2 Erik2point0\nPass\nPass\nCatastrophe Erik2point0 Y\n\n\nHomeworlds Online (SDG# 24208)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.28, Ended: 2013.6.28\nParticipants: Broccoli_Commander (S), Marmalade (N)\nWinner: Broccoli_Commander\n\n1) Marmalade: Homeworld B1 Y2 G3\n\n2) Broccoli_Commander: Homeworld B1 G3 Y3\n\n3) Marmalade: Build G1 Marmalade\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\n5) Marmalade: Discover G1 Marmalade G3 Tau_ceti\n\tBroccoli_Commander: Hi!\n\n6) Broccoli_Commander: Trade Y1 B1 Broccoli_commander\n\tMarmalade: Hello there :)\n\n7) Marmalade: Build G1 Marmalade\n\n8) Broccoli_Commander: Build B2 Broccoli_commander\n\tBroccoli_Commander: Good luck and have fun dear Sir\n\n9) Marmalade: Discover G1 Marmalade B3 Formalhaut\n\n10) Broccoli_Commander: Discover B2 Broccoli_commander Y2 Cauliflower\n\n11) Marmalade: Build G1 Formalhaut\n\n12) Broccoli_Commander: Move B2 Cauliflower Formalhaut\n\n13) Marmalade: Trade G1 R1 Formalhaut\n\n14) Broccoli_Commander: Trade B2 R2 Formalhaut\n\n15) Marmalade: Trade G1 R1 Formalhaut\n\n16) Broccoli_Commander: Build B2 Broccoli_commander\n\n17) Marmalade: Build G1 Marmalade\n\n18) Broccoli_Commander: Discover B2 Broccoli_commander Y2 Cauliflower\n\n19) Marmalade: Build G1 Tau_ceti\n\n20) Broccoli_Commander: Trade B2 G2 Cauliflower\n\n21) Marmalade: Build G2 Marmalade\n\n22) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nDiscover G2 Cauliflower R3 Thxforthegame\nMove G2 Thxforthegame Marmalade\nMove R2 Formalhaut Marmalade\nCatastrophe Marmalade G\n\tBroccoli_Commander: Thanks for the live play! :-)\n\tMarmalade: Damn, I didn&#39;t see that at all.\r\n\r\nThanks for the game. I&#39;ve yet to win a game of Homeworlds on here :)\r\n\n\tBroccoli_Commander: Well that&#39;s the danger of trying to get an early color monopoly... The payoff for the factory would have been great though. This is why I liked your opening! \r\n\r\nBut then I think you lost too much time by defending your little green ships in Formalhaut: \r\n-You could maybe have &quot;teleported&quot; them (sac g1 to rebuild it \r\nsomewhere else)\r\n-Or just let me the possibility of attacking them. At least this would not have refilled the green stash as your trades did!\n\n\nHomeworlds Online (SDG# 24220)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.28, Ended: 2013.7.1\nParticipants: Marmalade (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) Marmalade: Homeworld B1 R3 G3\n\tBroccoli_Commander: Hello again - I won&#39;t play it as fast as the last one :-P\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tMarmalade: This is probably my eighth or ninth game of Homeworlds, total. I&#39;ve lost all of the online ones, and won all the face-to-face ones, but that&#39;s mostly as I&#39;ve been teaching people how to play.\r\n\r\nI wanted to try Homeworlds for ages, and just recently imported some pyramids for the purpose.\n\tBroccoli_Commander: Imported? Where do you live?\r\n\r\nAnd don&#39;t worry about the online losses there are some monsters online... Plus Homeworlds is not particularly forgiving for mistakes\r\n\r\nAnd well this must only be my 20th game or so. I received some pyramids recently and we tried homeworlds once with a friend by chance. We didn&#39;t know it before but I thought it was a great game. Unfortunately I don&#39;t get a lot of opportunities to play it in real life so I&#39;m really glad that there is this website!\n\n4) Marmalade: Build G1 Marmalade\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) Marmalade: Trade G1 Y1 Marmalade\n\tMarmalade: The UK - Looney Pyramids failed their EU safety check thing a couple of years ago, so retailers can&#39;t sell pyramids in Europe (outside retailers selling to individuals is fine). Looking at the paperwork, it looks like something that could be easily argued against, but it&#39;s probably not within Looney Lab&#39;s means (especially as their main market is in the US).\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) Marmalade: Build G1 Marmalade\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\tBroccoli_Commander: Ah OK this explains why I could not find them either! (I actually wanted to buy the proper colors for homeworlds) I&#39;m living in switzerland btw.\r\n\r\nI guess the pyramids are too pointy -_- \n\n10) Marmalade: Discover G1 Marmalade Y2 Mote\n\n11) Broccoli_Commander: Build Y1 Broccoli_commander\n\n12) Marmalade: Build Y2 Marmalade\n\n13) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\tMarmalade: What, you don&#39;t get the urge to jam them into your eyes?\n\n14) Marmalade: Discover Y2 Marmalade B2 Dust\n\n15) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Broccoli_commander\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n16) Marmalade: Build Y3 Marmalade\n\n17) Broccoli_Commander: Trade Y1 R1 Broccoli_commander\n\tBroccoli_Commander: haha :-p\n\n18) Marmalade: Trade Y1 R1 Marmalade\n\n19) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n20) Marmalade: Build R2 Marmalade\n\n21) Broccoli_Commander: Build R2 Broccoli_commander\n\n22) Marmalade: Move R2 Marmalade Dust\n\n23) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n24) Marmalade: Move G3 Marmalade Dust\n\n25) Broccoli_Commander: Build Y1 Broccoli_commander\n\n26) Marmalade: Move G1 Mote Marmalade\n\n27) Broccoli_Commander: Trade Y1 B1 Blueberry\n\n28) Marmalade: Build Y1 Dust\n\n29) Broccoli_Commander: Build B1 Blueberry\n\n30) Marmalade: Discover R1 Marmalade G2 Grit\n\n31) Broccoli_Commander: Move Y3 Blueberry Grit\n\n32) Marmalade: Sacrifice Y2 Dust\nMove G3 Dust Marmalade\nMove G3 Marmalade Grit\n\n33) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack R1 Grit\nAttack G3 Grit\n\n34) Marmalade: Build G1 Marmalade\n\n35) Broccoli_Commander: Sacrifice G3 Grit\nBuild G2 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Blueberry\n\tBroccoli_Commander: errr... you didn&#39;t know about that?\n\n36) Marmalade: Trade R2 B2 Dust\n\tMarmalade: Nah, I&#39;m just being dense.\n\n37) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove B1 Blueberry Grit\n\n38) Marmalade: Sacrifice G1 Marmalade\nBuild B3 Dust\n\n39) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild B3 Grit\nBuild R2 Grit\n\n40) Marmalade: Discover B3 Dust R3 Speck\n\n41) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove Y3 Grit Marmalade\nMove B3 Grit Marmalade\n\n42) Marmalade: Attack Y3N Marmalade\n\n43) Broccoli_Commander: Sacrifice R2 Grit\nAttack Y3 Marmalade\nAttack Y3 Marmalade\n\n44) Marmalade: Move Y1 Dust Blueberry\n\n45) Broccoli_Commander: Attack G1 Marmalade\n\tMarmalade: Cheers for the game!\n\n\nHomeworlds Online (SDG# 24219)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.28, Ended: 2013.7.4\nParticipants: Broccoli_Commander (S), shmil1 (N)\nWinner: Broccoli_Commander\n\n1) shmil1: Homeworld R1 B2 G3\n\n2) Broccoli_Commander: Homeworld R2 B3 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) shmil1: Build G1 Shmil1\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) shmil1: Trade G1 R1 Shmil1\n\n10) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry\n\n11) shmil1: Build G1 Shmil1\n\n12) Broccoli_Commander: B G1 Broccoli_commander\n\n13) shmil1: Build G2 Shmil1\n\n14) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n15) shmil1: Discover G1 Shmil1 Y3 Slunce\n\n16) Broccoli_Commander: Build G3 Broccoli_commander\n\n17) shmil1: Move G1 Slunce Blueberry\nCatastrophe Blueberry G\n\n18) Broccoli_Commander: Discover G3 Broccoli_commander B1 Blueberry\n\n19) shmil1: Discover R1 Shmil1 Y3 Slunce2\n\n20) Broccoli_Commander: Build G1 Blueberry\n\n21) shmil1: Sacrifice G2 Shmil1\nBuild R1 Slunce2\nBuild G1 Shmil1\n\n22) Broccoli_Commander: Trade G3 R3 Blueberry\n\n23) shmil1: Discover R1 Slunce2 B1 Obloha1\n\n24) Broccoli_Commander: Build G2 Blueberry\n\n25) shmil1: Move R1 Slunce2 Obloha1\n\n26) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n27) shmil1: Sacrifice G1 Shmil1\nBuild R2 Obloha1\n\n28) Broccoli_Commander: Build R2 Blueberry\n\n29) shmil1: Trade R1 Y1 Obloha1\n\n30) Broccoli_Commander: Discover R2 Blueberry Y3 Cauliflower\n\n31) shmil1: Trade R1 G1 Obloha1\n\n32) Broccoli_Commander: Build G2 Blueberry\n\n33) shmil1: Build G2 Obloha1\n\n34) Broccoli_Commander: Move G2 Blueberry Cauliflower\n\n35) shmil1: Sacrifice G2 Obloha1\nBuild G2 Obloha1\nBuild Y2 Obloha1\n\n36) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Cauliflower\nBuild G3 Broccoli_commander\n\n37) shmil1: Sacrifice Y2 Obloha1\nMove G1 Obloha1 Broccoli_commander\nMove G2 Obloha1 Broccoli_commander\nCatastrophe Broccoli_commander G\n\n38) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild Y2 Broccoli_commander\nBuild R1 Blueberry\n\n39) shmil1: Build Y2 Shmil1\n\n40) Broccoli_Commander: Move R3 Blueberry Broccoli_commander\n\n41) shmil1: Build Y3 Shmil1\n\n42) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove Y2 Blueberry Cauliflower\nMove Y2 Cauliflower Shmil1\nCatastrophe Shmil1 Y\n\n43) shmil1: Build G1 Shmil1\n\n44) Broccoli_Commander: Move G3 Cauliflower Shmil1\n\n45) shmil1: Attack G3 Shmil1\n\n\tshmil1: nice :)\n\tBroccoli_Commander: Thx :-)\n\nHomeworlds Online (SDG# 24224)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.28, Ended: 2013.9.27\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tzoltar: You too!\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Trade G1 Y1 Grover\n\n8) zoltar: Build Y2 Zoltar\n\n9) ts52: Build G1 Ts52\n\n10) zoltar: Build Y2 Zoltar\n\n11) ts52: Move G1 Ts52 Grover\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) ts52: Build G1 Ts52\n\n14) zoltar: Build R1 Zoltar\n\n15) ts52: Trade G3 R3 Ts52\n\n16) zoltar: Trade R1 B1 Zoltar\n\n17) ts52: Build G1 Ts52\n\n18) zoltar: Build G2 Zoltar\n\n19) ts52: Build G2 Grover\n\n20) zoltar: Discover G2 Zoltar B2 Bluebird\n\n21) ts52: Discover G1 Ts52 B3 Gonzo\n\n22) zoltar: Build G2 Zoltar\n\n23) ts52: B G3 Gonzo\n\n24) zoltar: Build G3 Bluebird\n\n25) ts52: Trade G2 Y2 Grover\n\n26) zoltar: Trade G2 R2 Bluebird\n\n27) ts52: Discover Y1 Grover G2 Kermit\n\n28) zoltar: Move Y2 Zoltar Bluebird\n\n29) ts52: Build G2 Grover\n\n30) zoltar: Move R1 Zoltar Kermit\n\n31) ts52: Move Y1 Kermit Gonzo\n\n32) zoltar: Move R2 Bluebird Grover\n\n33) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y1 Gonzo\nBuild Y3 Grover\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluebird\n\n35) ts52: Trade Y3 R3 Grover\n\n36) zoltar: Sacrifice Y2 Bluebird\nMove R2 Grover Bluebird\nMove Y2 Zoltar Kermit\n\n37) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y2 Gonzo\nBuild Y3 Grover\n\n38) zoltar: Move Y2 Kermit Gonzo\nCatastrophe Gonzo Y\n\n39) ts52: Trade G3 R3 Gonzo\n\n40) zoltar: Sacrifice G2 Zoltar\nBuild G2 Bluebird\nBuild G3 Zoltar\n\n41) ts52: Sacrifice Y2 Grover\nMove G1 Grover Bluebird\nMove G2 Grover Bluebird\nCatastrophe Bluebird G\n\n42) zoltar: Move G3 Zoltar Bluebird\n\n43) ts52: Trade R3 G3 Grover\n\n44) zoltar: Discover G3 Bluebird R3 Redgiant\n\n45) ts52: Build Y1 Grover\n\n46) zoltar: Build Y1 Zoltar\n\n47) ts52: Move Y3 Grover Kermit\n\n48) zoltar: Build G1 Redgiant\n\n49) ts52: Build Y2 Kermit\n\n50) zoltar: Move Y1 Zoltar Kermit\n\n51) ts52: Move Y3 Kermit Gonzo\n\n52) zoltar: Build G2 Zoltar\n\n53) ts52: Build G2 Grover\n\n54) zoltar: Sacrifice G3 Redgiant\nBuild G3 Redgiant\nBuild Y2 Kermit\nBuild Y2 Zoltar\n\n55) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild R1 Ts52\nBuild R2 Gonzo\n\n56) zoltar: Attack Y2 Kermit\n\n57) ts52: Move Y1 Grover Kermit\nCatastrophe Kermit Yellow\n\n58) zoltar: Sacrifice G3 Redgiant\nBuild G3 Redgiant\nBuild R2 Bluebird\nBuild Y1 Bluebird\n\n59) ts52: Move R3 Gonzo Kermit\n\n60) zoltar: Sacrifice G3 Redgiant\nBuild G3 Redgiant\nBuild Y1 Bluebird\nBuild Y2 Zoltar\n\n61) ts52: Attack R1 Kermit\n\n62) zoltar: Discover B1 Zoltar Y2 Goldeneye\n\n63) ts52: Move R2 Gonzo Goldeneye\n\n64) zoltar: Sacrifice Y2 Zoltar\nMove G3 Redgiant Goldeneye\nMove Y3 Bluebird Redgiant\n\n65) ts52: Build Y2 Gonzo\n\n66) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Bluebird Gonzo\nMove Y1 Bluebird Gonzo\nCatastrophe Gonzo Y\n\n67) ts52: Trade G2 Y2 Grover\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G2 Redgiant\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n69) ts52: Build Y1 Grover\n\n70) zoltar: Move Y3 Zoltar Bluebird\n\n71) ts52: Move Y1 Grover Kermit\n\n72) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Bluebird\n\n73) ts52: Attack B1 Goldeneye\n\n74) zoltar: Sacrifice R2 Bluebird\nAttack R2 Goldeneye\nAttack B1 Goldeneye\n\n75) ts52: Move R1 Ts52 Grover\n\n76) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Bluebird\nBuild B1 Goldeneye\n\n77) ts52: Move R1 Kermit Gonzo\n\n78) zoltar: Move Y3 Bluebird Gonzo\n\n79) ts52: Sacrifice Y2 Grover\nMove R1 Grover Bluebird\nMove R1 Gonzo Bluebird\nCatastrophe Bluebird Red\n\n80) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Gonzo\nBuild B1 Goldeneye\n\n81) ts52: Sacrifice G3 Grover\nBuild G3 Gonzo\nBuild R1 Kermit\nBuild R1 Ts52\n\n82) zoltar: Sacrifice R2 Goldeneye\nAttack G3 Gonzo\nAttack G1 Gonzo\n\n83) ts52: Move R3 Kermit Gonzo\n\n84) zoltar: Trade G2 R2 Zoltar\n\n85) ts52: Attack Y3 Gonzo\n\n86) zoltar: Sacrifice R2 Zoltar\nAttack R3 Gonzo\nAttack Y3 Gonzo\n\n87) ts52: Build R2 Kermit\n\n88) zoltar: Move B1 Goldeneye Redgiant\n\n89) ts52: Build R2 Kermit\n\n90) zoltar: Sacrifice G2 Redgiant\nBuild B2 Redgiant\nBuild B3 Redgiant\n\n91) ts52: Move R1 Kermit Redgiant\n\tts52: I&#39;m pretty sure I&#39;m not coming back from this one.\n\n92) zoltar: Sacrifice Y3 Bluebird\nMove B3 Redgiant Ts52\nMove G3 Gonzo Ts52\nMove Y3 Redgiant Ts52\n\n\tzoltar: However, the Zoltarian Empire declines the offer and instead has sent a peace delegation, consisting of representatives from the 3 non-warrior casts, the merchants, breeders, and engineers, to extend goodwill and promote the annexation of the ts52 homeworld into the Zoltarian Empire. It has been decided that with all the defections, annexing the rebel homeworld would be a more compassionate response than sending its stars into supernova, as had been planned.\n\tts52: Well done sir. The citizens of the ts52 homeworld accept the holy word of Zoltar and his bountiful offering of peace, and convert.\n\nHomeworlds Online (SDG# 24221)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.29, Ended: 2013.7.15\nParticipants: Marmalade (S), wil (N)\nWinner: Marmalade\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld R1 B3 G3\n\n3) wil: Build G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: Discover G1 Wil Y3 Y3\n\n6) Marmalade: Trade G1 Y1 Marmalade\n\n7) wil: Build G1 Wil\n\n8) Marmalade: Build Y1 Marmalade\n\n9) wil: Trade G1 Y1 Wil\n\n10) Marmalade: Build Y2 Marmalade\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) Marmalade: Discover Y2 Marmalade G2 Sinistra\n\n13) wil: Build Y2 G3\n\n14) Marmalade: Build Y3 Sinistra\n\n15) wil: Discover Y1 G3 G2 G2\n\n16) Marmalade: Trade Y1 R1 Marmalade\n\n17) wil: Trade G3 R3 Wil\n\twil: crap\n\n18) Marmalade: Build G1 Marmalade\n\tMarmalade: I thought this far ahead, but I have no idea where to go from here, without screwing myself :)\n\n19) wil: Build G1 Y3\n\n20) Marmalade: Build R1 Marmalade\n\twil: thats what they all say....\n\n21) wil: Move G1 Y3 Wil\n\n22) Marmalade: Move Y2 Sinistra G3\n\n23) wil: Move Y2 G3 G2\n\n24) Marmalade: Move Y2 G3 G2\n\n25) wil: Sacrifice Y2 G2\nDiscover Y1 G2 G3 G3\nDiscover Y1 G3 G2 G2a\n\n26) Marmalade: Move R1 Marmalade Sinistra\n\n27) wil: Build G3 Wil\n\n28) Marmalade: Sacrifice G3 Marmalade\nBuild G3 Marmalade\nBuild G3 Marmalade\nBuild R2 Sinistra\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild Y1 G2a\n\n30) Marmalade: Sacrifice G3 Marmalade\nBuild G3 Marmalade\nBuild Y2 Sinistra\nBuild Y3 G2\n\n31) wil: Discover Y1 G2a B3 B3\n\n32) Marmalade: Move R2 Sinistra Y3\n\n33) wil: Move R3 Wil Y3\n\n34) Marmalade: Sacrifice G3 Marmalade\nBuild G3 Marmalade\nBuild R2 Y3\nBuild R3 Y3\nCatastrophe Y3 R\n\n35) wil: Sacrifice G1 Y3\nBuild Y3 G2a\n\n36) Marmalade: Sacrifice Y3 G2\nMove Y2 G2 B3\nMove Y2 B3 G2a\nMove Y1 Marmalade G2a\nCatastrophe G2a Y\n\n37) wil: Build R2 Wil\n\n38) Marmalade: Build R2 Sinistra\n\n39) wil: Discover G1 Wil Y3 Y3\n\n40) Marmalade: Sacrifice G3 Marmalade\nBuild R3 Marmalade\nBuild R3 Sinistra\nBuild Y1 Sinistra\n\n41) wil: Move Y1 B3 Sinistra\nCatastrophe Sinistra Y\n\n42) Marmalade: Trade G1 B1 Marmalade\n\n43) wil: Move R2 Wil Y3\n\n44) Marmalade: Sacrifice B1 Marmalade\nTrade R2 Y2 Sinistra\n\n45) wil: Build G1 Wil\n\n46) Marmalade: Trade R1 Y1 Marmalade\n\n47) wil: Build R1 Wil\n\n48) Marmalade: Move R3 Sinistra Y3\n\n49) wil: Build R2 Y3\n\n50) Marmalade: Attack G1N Y3\n\n51) wil: Move R2 Wil Y3\nCatastrophe Y3 R\n\n52) Marmalade: Build G1 Y3\n\n53) wil: Discover G1 Wil Y3 Pftt\n\n54) Marmalade: Sacrifice Y2 Sinistra\nMove G1 Y3 Wil\nMove G1 Y3 Wil\n\n55) wil: Trade G3 R3 Wil\n\n56) Marmalade: Build G2 Marmalade\n\twil: oops\n\n57) wil: Attack G1 Wil\n\n58) Marmalade: Sacrifice G3 Marmalade\nBuild G2 Wil\nBuild G3 Marmalade\nBuild G3 Marmalade\n\n59) wil: Trade G1 B1 Wil\n\twil: a bread crumb?\n\n60) Marmalade: Trade G3 Y3 Marmalade\n\tMarmalade: Just trying something. Mostly trying to figure out how to end this :)\n\n61) wil: Attack G2 Wil\n\twil: if you&#39;da grown three before i turned one it would be over...\n\twil: not that I am complaining....struggling at the end of the rope trying to find the escape hatchis worthy practice for me...\n\n62) Marmalade: Sacrifice G2 Marmalade\nBuild G1 Wil\nBuild G2 Wil\nCatastrophe Wil G\n\n63) wil: Trade R3 G3 Wil\n\n64) Marmalade: Move Y3 Marmalade Sinistra\n\n65) wil: Build R2 Wil\n\n66) Marmalade: Build R2 Marmalade\n\n67) wil: Build G1 Wil\n\n68) Marmalade: Move R3 Marmalade Sinistra\n\n69) wil: Trade R2 Y2 Wil\n\n70) Marmalade: Move R3 Sinistra Pftt\n\n71) wil: Discover G1 Pftt Y2 Y2\n\n72) Marmalade: Move R2 Marmalade Y2\n\n73) wil: Discover G1 Y2 Y3 Y3\n\n74) Marmalade: Build G1 Marmalade\n\n75) wil: Discover G1 Wil B3 B3\n\n76) Marmalade: Move G1 Marmalade Sinistra\n\n77) wil: Build G2 Wil\n\n78) Marmalade: Move G1 Sinistra Pftt\n\n79) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 Wil\nBuild G3 B3\n\n80) Marmalade: Build R2 Pftt\n\n81) wil: Move R1 Wil B3\n\n82) Marmalade: Move R2 Pftt Y2\n\n83) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild R2 B3\n\n84) Marmalade: Build R3 Pftt\n\n85) wil: Sacrifice Y1 Wil\nMove G3 B3 Y2\n\n86) Marmalade: Sacrifice Y3 Sinistra\nMove R2 Y2 B3\nMove R2 Y2 B3\nMove R3 Pftt Wil\nCatastrophe B3 R\n\n87) wil: Sacrifice Y2 Wil\nMove G3 Wil B3\nDiscover G2 Wil Y3 Escape2freedom\n\n88) Marmalade: Attack B1N Wil\n\n\twil: the civilians have left to populate other galaxies....as they see the evil hourde has polluted their own star system with its citrusy jam\n\tMarmalade: whee! Thanks for the game. That&#39;s the first online game of Homeworlds I&#39;ve won, even if I did make a mess of it in the middle. Thanks for sticking with it.\n\twil: congrats to ya!!  glad to be the sucker you beat!!   that was an excellent move at the end...while I did see the triple threat with two queen attackers and your movement capablity I did not contemplate you wiping out my reds in the process of the attack....sweet....always looking to play again.\n\nHomeworlds Online (SDG# 24215)\nVariants: &quot;No undo, Unrated, Hard time&quot;\nStarted: 2013.6.29, Ended: 2013.7.2\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 24198)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.6.29, Ended: 2013.7.2\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24153)\nVariants: &quot;Hard time&quot;\nStarted: 2013.6.29, Ended: 2013.7.2\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Broccoli_Commander: Homeworld R1 B3 G3\n\twil: ready to get my butt kicked again...\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: I&#39;ll try my best \n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) wil: Discover G1 Wil Y3 Y3\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) wil: Build G1 Wil\n\n8) Broccoli_Commander: Build Y1 Broccoli_commander\n\n9) wil: Trade G1 Y1 Wil\n\n10) Broccoli_Commander: Discover Y1 Broccoli_commander G2 Mint\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) Broccoli_Commander: Build Y2 Mint\n\n13) wil: Build Y2 G3\n\twil: I do not have this opening right...\n\twil: I do not have this opening right...\n\n14) Broccoli_Commander: Build Y3 Broccoli_commander\n\n15) wil: Discover Y1 G3 G2 G2\n\tBroccoli_Commander: Not sure either... In fact I think you helped me by going yellow as well :-)\n\n16) Broccoli_Commander: Build Y3 Mint\n\n17) wil: Sacrifice G1 Y3\nBuild Y3 G3\n\n18) Broccoli_Commander: Sacrifice Y3 Mint\nMove Y1 Mint G3\nMove Y1 Broccoli_commander Mint\nMove Y1 Mint G3\nCatastrophe G3 Y\n\n19) wil: Build G1 Wil\n\twil: that didn&#39;t work out so well...\n\n20) Broccoli_Commander: Build G1 Broccoli_commander\n\n21) wil: Discover G1 Wil Y3 Y3\n\twil: that was worse than the way I did it..\n\n22) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\tBroccoli_Commander: ?\n\n23) wil: Build G1 Wil\n\n24) Broccoli_Commander: Build R1 Broccoli_commander\n\n25) wil: Build G1 Y3\n\n26) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove G3 Broccoli_commander G2\nMove G3 G2 Y3\nMove G3 Y3 Wil\n\n27) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Wil\nCatastrophe Wil G\n\n\twil: How did I let that happen....and me with no gun again!!\r\n\n\nHomeworlds Online (SDG# 23856)\nVariants: &quot;Unrated&quot;\nStarted: 2013.7.3, Ended: 2013.9.2\nParticipants: Broccoli_Commander (S), OnePageWars (W), Marmalade (N), Leonard_Daniels (E)\nWinner: Marmalade\n\n1) Marmalade: Homeworld B2 Y1 G3\n\n2) Leonard_Daniels: Homeworld R3 B1 G3\n\tBroccoli_Commander: Hi everybody!\r\nSo this is north&amp;south vs east&amp;west? i.e. OnePageWars with Leonard_Daniels against Marmalade and myself?\r\n\r\nGood luck and have fun, and just so it is clear from the get-go: all your base are belong to us.\n\tBroccoli_Commander: Hey Marmalade, let&#39;s do the strategy you told me about this game! \r\n\r\nYou know, the whole pyramids eye jamming thing...\n\tMarmalade: That was my understanding, woo.\r\n\r\nGood luck guys.\n\tMarmalade: It was less of a strategy, and more of a compulsion. On the plus side, it has the advantage of surprise.\n\n3) Broccoli_Commander: Homeworld G1 Y2 B3\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\tBroccoli_Commander: Errrr OnePageWars has been inactive for the last 40 days...Don&#39;t think he&#39;ll come back !?!\r\n\r\nDo you want to play last man standing instead? (in 2d and 16h)\n\tMarmalade: I&#39;d be happy with that, but we&#39;ll see.\n\tLeonard_Daniels: Certainly I don&#39;t want to be in a team on my own.\n\n5) Marmalade: Build G1 Marmalade\n\n6) Leonard_Daniels: Build G1 Leonard_daniels\n\tBroccoli_Commander: ?! why was it my turn? It is a bug, isn&#39;t it?\n\n7) Broccoli_Commander: T B3 G3 Broccoli_commander\n\n8) Marmalade: Build G1 Marmalade\n\n9) Leonard_Daniels: Trade G1 Y1 Leonard_daniels\n\n10) Broccoli_Commander: Build B1 Broccoli_commander\n\n11) Marmalade: Trade G1 B1 Marmalade\n\n12) Leonard_Daniels: Build G1 Leonard_daniels\n\n13) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n14) Marmalade: Discover B1 Marmalade Y3 Paracetamol\n\n15) Leonard_Daniels: Trade G1 R1 Leonard_daniels\n\n16) Broccoli_Commander: Build G1 Broccoli_commander\n\n17) Marmalade: Trade G1 R1 Marmalade\n\n18) Leonard_Daniels: Build G1 Leonard_daniels\n\n19) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n20) Marmalade: Build G1 Marmalade\n\n\nHomeworlds Online (SDG# 24258)\nVariants: &quot;No undo&quot;\nStarted: 2013.7.3, Ended: 2013.7.14\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld B1 G2 R3\n\n2) scotward: Homeworld R3 B2 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Build R1 Erik2point0\n\n6) scotward: Build G1 Scotward\n\n7) Erik2point0: Trade R1 G1 Erik2point0\n\n8) scotward: Trade G1 B1 Scotward\n\n9) Erik2point0: Trade R1 Y1 Erik2point0\n\n10) scotward: Trade G1 Y1 Scotward\n\n11) Erik2point0: Build R1 Erik2point0\n\n12) scotward: Build B1 Scotward\n\n13) Erik2point0: Trade R3 B3 Erik2point0\n\n14) scotward: Discover B1 Scotward G1 Ares\n\n15) Erik2point0: Build B2 Erik2point0\n\n16) scotward: Sacrifice G3 Scotward\nBuild B2 Ares\nBuild B3 Ares\nBuild B3 Scotward\n\n17) Erik2point0: Trade B3 Y3 Erik2point0\n\n18) scotward: Sacrifice B2 Ares\nTrade B3 R3 Ares\nTrade B3 G3 Scotward\n\n19) Erik2point0: Build B2 Erik2point0\n\n20) scotward: Build B3 Ares\n\n21) Erik2point0: Discover B2 Erik2point0 G3 Washington\n\n22) scotward: Trade B1 Y1 Ares\n\n23) Erik2point0: Build Y2 Erik2point0\n\n24) scotward: Move R3 Ares Washington\n\n25) Erik2point0: Discover Y1 Erik2point0 G3 Adams\n\n26) scotward: Attack B2 Washington\n\n27) Erik2point0: Build Y2 Adams\n\n28) scotward: Move B3 Ares Adams\n\n29) Erik2point0: Build R1 Erik2point0\n\n30) scotward: Trade B3 R3 Adams\n\n31) Erik2point0: Sacrifice Y1 Adams\nMove Y2 Adams Ares\n\n32) scotward: Move Y1 Ares Adams\n\n33) Erik2point0: Discover Y2 Ares B3 Jefferson\n\n34) scotward: Build Y1 Adams\n\n35) Erik2point0: Trade Y2 G2 Jefferson\n\n36) scotward: Move Y1 Adams Erik2point0\n\n37) Erik2point0: Trade Y2 G2 Erik2point0\n\n38) scotward: Build Y2 Erik2point0\n\n39) Erik2point0: Trade Y3 B3 Erik2point0\n\n40) scotward: Trade Y1 B1 Erik2point0\nCatastrophe Erik2point0 B\n\n41) Erik2point0: Attack Y2 Erik2point0\n\n42) scotward: Move R3 Adams Erik2point0\n\n43) Erik2point0: Build R1 Erik2point0\nCatastrophe Erik2point0 Red\n\n44) scotward: Sacrifice Y1 Scotward\nMove R3 Washington Erik2point0\n\n\nHomeworlds Online (SDG# 24261)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.4, Ended: 2013.8.14\nParticipants: Mandrel (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) Mandrel: Homeworld B3 R2 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tBroccoli_Commander: Thanks, you too\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) Mandrel: Build G1 Mandrel\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n10) Mandrel: Discover G1 Mandrel B1 Sale\n\n11) Broccoli_Commander: Build G1 Blueberry\n\n12) Mandrel: Build G2 Sale\n\n13) Broccoli_Commander: Build G2 Broccoli_commander\n\n14) Mandrel: Trade G1 R1 Sale\n\n15) Broccoli_Commander: Build G1 Blueberry\n\n16) Mandrel: Build R1 Sale\n\n17) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\nBuild G3 Broccoli_commander\n\n18) Mandrel: Build R2 Sale\nCatastrophe Blueberry Green\n\n19) Broccoli_Commander: Trade G3 R3 Broccoli_commander\n\n20) Mandrel: Trade R2 Y2 Sale\n\n21) Broccoli_Commander: Discover R3 Broccoli_commander Y3 Cauliflower\n\n22) Mandrel: Build R2 Sale\n\n23) Broccoli_Commander: Discover G2 Broccoli_commander R3 Tomatoe\n\n\nHomeworlds Online (SDG# 24232)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.5, Ended: 2013.7.10\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld R2 B1 G3\n\twil: ready willing and able to be abused yet again...\n\n2) Broccoli_Commander: Homeworld Y1 G3 B3\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: Always a pleasure.\n\twil: I&#39;ve never seen this as an opeming, I figure you thought you could try anything with me.....lol\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\n5) wil: Trade G1 B1 Wil\n\twil: okee dokee, I see I gotta get on the stick or be colored out..\n\n6) Broccoli_Commander: Discover B1 Broccoli_commander G2 Lettuce\n\tBroccoli_Commander: Hehe well You re awake...\n\n7) wil: Build B2 Wil\n\n8) Broccoli_Commander: Build B2 Lettuce\n\n9) wil: Trade B1 Y1 Wil\n\n10) Broccoli_Commander: Build B1 Broccoli_commander\n\n11) wil: Build B2 Wil\n\n12) Broccoli_Commander: Build B3 Lettuce\n\n13) wil: Discover B2 Wil Y3 Y3\n\n14) Broccoli_Commander: Trade B2 Y2 Lettuce\n\n15) wil: Move B2 Wil Y3\n\n16) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n17) wil: Trade B2 G2 Y3\n\n18) Broccoli_Commander: Discover B3 Lettuce Y3 Cauliflower\n\n19) wil: Build B2 Y3\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Cauliflower\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n21) wil: Move B2 Y3 Lettuce\n\n22) Broccoli_Commander: Trade B1 R1 Lettuce\n\n23) wil: Build B1 Lettuce\n\n24) Broccoli_Commander: Move B3 Lettuce Y3\n\twil: I don&#39;t think I thought that out very well.\n\n25) wil: Trade B1 Y1 Lettuce\n\n26) Broccoli_Commander: Attack B2 Lettuce\n\n27) wil: Discover G2 Y3 Y2 Y2\n\n28) Broccoli_Commander: Sacrifice R1 Lettuce\nAttack B2 Y3\n\n29) wil: Discover Y1 Lettuce G3 G3\n\n30) Broccoli_Commander: Sacrifice B2 Y3\nTrade B3 R3 Y3\nTrade B2 R2 Cauliflower\n\n31) wil: Build G1 Wil\n\n32) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove R3 Y3 Wil\nMove B3 Cauliflower Wil\n\n33) wil: Move G3 Wil G3\n\n34) Broccoli_Commander: Sacrifice R2 Cauliflower\nAttack G1 Wil\nAttack Y1 Wil\n\twil: I fell for the get one take two again????\n\n\twil: We leave with the best and brightest to find a peaceful universe without such mean aggressors...\n\tBroccoli_Commander: Sorry, but all your base are belong to us :-D\r\n\r\nWell yes you fall for the get one take two again ^^\r\nBut it is, maybe, THE way to win for not too long games (otherwise it is catastrophing both hw stars and that surely takes a LOT of time)\r\n\r\nAnd otherwise how did you like that opening :-) ?\r\n\n\tBroccoli_Commander: or the infamous you take two I take three, but I think it is less common\n\nHomeworlds Online (SDG# 24230)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.9, Ended: 2013.7.15\nParticipants: Marmalade (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G1 Y2 B3\n\n2) Marmalade: Homeworld Y3 B1 G3\n\tBroccoli_Commander: sup\n\n3) Broccoli_Commander: Build B1 Broccoli_commander\n\n4) Marmalade: Build G1 Marmalade\n\n5) Broccoli_Commander: Build B1 Broccoli_commander\n\tMarmalade: Sup indeed :)\n\n6) Marmalade: Discover G1 Marmalade B2 Alamak\n\n7) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n8) Marmalade: Build G1 Marmalade\n\n9) Broccoli_Commander: Build B2 Lettuce\n\n10) Marmalade: Trade G3 B3 Marmalade\n\n11) Broccoli_Commander: Trade B2 Y2 Lettuce\n\n12) Marmalade: Build G2 Marmalade\n\n13) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n14) Marmalade: Build G2 Alamak\n\n15) Broccoli_Commander: Build B2 Broccoli_commander\n\n16) Marmalade: Trade G2 Y2 Alamak\n\n17) Broccoli_Commander: Discover B2 Broccoli_commander G3 Watermelon\n\n18) Marmalade: Build G2 Alamak\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Watermelon\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n20) Marmalade: Trade B3 G3 Marmalade\n\n21) Broccoli_Commander: Trade B2 G2 Watermelon\n\n22) Marmalade: Sacrifice Y2 Alamak\nMove G1 Alamak Watermelon\nMove G2 Alamak Watermelon\nCatastrophe Watermelon G\n\n23) Broccoli_Commander: Trade B3 R3 Lettuce\n\n24) Marmalade: Trade G2 R2 Marmalade\n\n25) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n26) Marmalade: Build R1 Marmalade\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Lettuce\nBuild B2 Lettuce\nBuild B2 Broccoli_commander\n\n28) Marmalade: Trade R2 Y2 Marmalade\n\n29) Broccoli_Commander: Discover B2 Lettuce Y1 Lemon\n\tMarmalade: Well, this is all kinds of wrong\r\n\n\n30) Marmalade: Discover G1 Marmalade G2 Moop\n\n31) Broccoli_Commander: Build B3 Broccoli_commander\n\n32) Marmalade: Build Y1 Marmalade\n\n33) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n34) Marmalade: Move Y2 Marmalade Moop\n\tBroccoli_Commander: Relax it will be over soon now :-)\n\n35) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B3 Broccoli_commander\nBuild B3 Lettuce\nBuild B3 Lemon\n\n36) Marmalade: Build Y1 Moop\n\n37) Broccoli_Commander: Sacrifice B2 Lettuce\nTrade B3 Y3 Lettuce\nTrade B3 Y3 Broccoli_commander\n\n38) Marmalade: Discover Y1 Marmalade B2 Meep\n\n39) Broccoli_Commander: Move B3 Lemon Moop\n\n40) Marmalade: Build G1 Moop\n\n41) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove Y3 Lettuce Moop\nMove Y3 Moop Marmalade\nMove B3 Moop Marmalade\n\n42) Marmalade: Attack B3N Marmalade\n\n43) Broccoli_Commander: Sacrifice R3 Lettuce\nAttack B3 Marmalade\nAttack G3 Marmalade\nAttack R1 Marmalade\n\n\tMarmalade: Well, that was a lot faster than it should have been :) Cheers for the game.\n\tBroccoli_Commander: Thank you for the game\n\nHomeworlds Online (SDG# 24290)\nVariants: &quot;Unrated&quot;\nStarted: 2013.7.10, Ended: 2013.7.10\nParticipants: Noetherium (S), Orl (N)\nWinner: Orl\n\n1) Orl: Homeworld B2 Y1 G3\n\n2) Noetherium: Homeworld B2 Y3 G3\n\n3) Orl: Build G1 Orl\n\n4) Noetherium: Discover G3 Noetherium Y1 Burbel\n\n\nHomeworlds Online (SDG# 24291)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.10, Ended: 2013.7.17\nParticipants: Subhan64 (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n\nHomeworlds Online (SDG# 24288)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.11, Ended: 2013.8.31\nParticipants: MagicJohn (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B3 G2 Y3\n\n2) MagicJohn: Homeworld Y3 B2 G3\n\n3) Aristos: Build Y1 Aristos\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Aristos: Trade Y1 G1 Aristos\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) Aristos: Discover G1 Aristos Y1 Spark\n\n8) MagicJohn: Trade Y1 R1 Magicjohn\n\n9) Aristos: Discover G1 Spark R2 Shine\n\n10) MagicJohn: Build G1 Magicjohn\n\n11) Aristos: Build Y1 Aristos\n\tAristos: typo\n\n12) MagicJohn: Trade G1 Y1 Magicjohn\n\tMagicJohn: I&#39;m still working on perfect myself..... Might be awhile....\n\n13) Aristos: Trade Y1 R1 Aristos\n\tMagicJohn: \n\n14) MagicJohn: Build Y1 Magicjohn\n\n15) Aristos: Build R1 Aristos\n\n16) MagicJohn: Build R2 Magicjohn\n\n17) Aristos: Discover R1 Aristos Y1 Flicker\n\n18) MagicJohn: Move R2 Magicjohn Flicker\n\n19) Aristos: Build Y2 Aristos\n\n20) MagicJohn: Trade Y1 B1 Magicjohn\n\n21) Aristos: Move Y3 Aristos Flicker\n\n22) MagicJohn: Move Y1 Magicjohn Flicker\n\n23) Aristos: Attack Y1 Flicker\n\n24) MagicJohn: Sacrifice B1 Magicjohn\nTrade R2 Y2 Flicker\nCatastrophe Flicker Y\n\n25) Aristos: Build G1 Shine\n\n26) MagicJohn: Build G1 Magicjohn\n\n27) Aristos: Build G2 Shine\n\tAristos: Better move. Someday I have to get some actual pieces so I can visualize the possible moves better. I just can&#39;t see it in my head sometimes.\n\tAristos: Crap. That still doesn&#39;t fix the problem. Oh well. Congrats on this game. I doubt I can come back from your next move.\n\n28) MagicJohn: Discover G1 Magicjohn Y1 Depot\n\tMagicJohn: The visualization thing is really difficult for me too. It absolutely kills me when I am silly enough to try and play reasonably good chess players.\r\nI&#39;m still relatively new at this game. Although I do have my moments, I am, unfortunately, very likely to blunder away most any lead I attain. Try to think of this as a handicap you have granted me.......  \n\n29) Aristos: Sacrifice G1 Shine\nBuild Y1 Aristos\n\n30) MagicJohn: Build G1 Depot\n\n31) Aristos: Move Y2 Aristos Depot\n\n32) MagicJohn: Move G1 Depot Shine\n\n33) Aristos: Sacrifice R1 Aristos\nAttack G1 Depot\n\n34) MagicJohn: Build G2 Shine\nCatastrophe Shine Green\n\n35) Aristos: Build G1 Depot\n\n36) MagicJohn: Build R1 Magicjohn\n\n37) Aristos: Build Y1 Depot\n\n38) MagicJohn: Discover R1 Magicjohn B1 Misanthropy\n\n39) Aristos: Build Y2 Aristos\n\n40) MagicJohn: Build R1 Magicjohn\n\n41) Aristos: Discover Y1 Depot Y2 Outpost\n\n42) MagicJohn: Move R1 Magicjohn Depot\n\n43) Aristos: Build Y3 Aristos\n\n44) MagicJohn: Attack G1 Depot\n\n45) Aristos: Trade Y2 R2 Aristos\n\n46) MagicJohn: Build G1 Depot\n\n47) Aristos: Sacrifice R2 Aristos\nAttack R1 Depot\nAttack G1 Depot\n\n48) MagicJohn: Sacrifice R1 Misanthropy\nAttack R1 Depot\n\n49) Aristos: Sacrifice G1 Depot\nBuild Y2 Outpost\n\n50) MagicJohn: Attack G1 Depot\n\n51) Aristos: Build Y3 Aristos\n\n52) MagicJohn: Move G1 Depot Aristos\n\n53) Aristos: Trade Y3 R3 Aristos\n\n54) MagicJohn: Build G1 Aristos\n\n55) Aristos: Sacrifice R3 Aristos\nAttack G1 Aristos\nAttack G1 Aristos\nAttack R1 Depot\n\n56) MagicJohn: Move G1 Depot Aristos\nCatastrophe Aristos G\n\n57) Aristos: Trade Y3 G3 Aristos\n\n58) MagicJohn: Build G1 Magicjohn\n\n59) Aristos: Sacrifice G3 Aristos\nBuild Y3 Aristos\nBuild Y3 Depot\nBuild R1 Depot\n\n60) MagicJohn: Build R2 Magicjohn\n\n61) Aristos: Trade Y3 G3 Aristos\n\n62) MagicJohn: Trade R2 B2 Magicjohn\n\n63) Aristos: Build Y3 Aristos\n\n64) MagicJohn: Build R2 Magicjohn\n\n65) Aristos: Build G1 Aristos\n\n66) MagicJohn: Trade R2 B2 Magicjohn\n\n67) Aristos: Move G1 Aristos Depot\n\n68) MagicJohn: Build R2 Magicjohn\n\n69) Aristos: Build G1 Aristos\n\n70) MagicJohn: Move R1 Magicjohn Depot\n\n71) Aristos: Sacrifice R1 Depot\nAttack R1 Depot\n\n72) MagicJohn: Build R1 Magicjohn\n\n73) Aristos: Trade G1 B1 Aristos\n\tMagicJohn: Gaaakk...... My troops have been reduced to hitchhiking....\n\tMagicJohn: Trade r2 b2 magicjohn\n\tMagicJohn: ooops... typed my command into the message window.....\n\n74) MagicJohn: Move R1 Magicjohn Depot\n\n75) Aristos: Sacrifice Y2 Depot\nMove B1 Aristos Depot\nMove B1 Depot Magicjohn\nCatastrophe Magicjohn Blue\n\tAristos: The Hitchhiker&#39;s Guide To The Galaxy says nothing about what to do if your civilization lacks the technology for towels... :-)\n\n76) MagicJohn: Move G1 Magicjohn Outpost\n\n77) Aristos: Sacrifice Y3 Aristos\nMove Y2 Outpost Magicjohn\nMove Y1 Outpost Magicjohn\nMove Y3 Depot Magicjohn\nCatastrophe Magicjohn Yellow\n\tAristos: As an honorable opponent, I would prefer to offer you a quick and painless death, but the only sure stategy I see is going to be SLOW, I&#39;m afraid. \n\tMagicJohn: One of my opponents just sent me a message saying that my position in the game was clearly superior but that they were stubborn and sometimes found a way to turn things around...... Kinda where I&#39;m at now......\n\n\tMagicJohn: My learning curve needs to improve. Once again I sacrificed too much material to gain an early advantage.......  Guess I have to spend more time in development.  Or did I miss opportunities in the middle game??\n\tAristos: I&#39;m not sure... I never saw a move that felt like an outright mistake, but I knew if you didn&#39;t make some play to get some yellow tech, I had a creeping advantage on you. \n\tAristos: Good game.\n\nHomeworlds Online (SDG# 24173)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.14, Ended: 2013.8.21\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B3 G3\n\n2) wil: Homeworld B2 R1 G3\n\tSilentTitan: I almost never try goldilocks.  So I am going to give it a go.\n\n3) SilentTitan: Build G1 Silenttitan\n\twil: You go with fortress over goldilocks?\n\tSilentTitan: yeah... I really like fortress.  you can really trap your opponent up against their inability to get to your homeworld. \n\n4) wil: Build G1 Wil\n\twil: yeah...the ones can disappear early....\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Trade G1 R1 Wil\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: Build R2 Wil\n\n9) SilentTitan: Trade G3 R3 Silenttitan\n\n10) wil: Build G1 Wil\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) wil: Trade R2 Y2 Wil\n\n13) SilentTitan: Trade R3 G3 Silenttitan\n\n14) wil: Build R2 Wil\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) wil: Discover R2 Wil G3 G3\n\n17) SilentTitan: Discover R2 Silenttitan Y2 Sol\n\n18) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 G3\nBuild Y1 Wil\n\n19) SilentTitan: Sacrifice G1 Silenttitan\nBuild R3 Sol\n\n20) wil: Trade R3 Y3 Wil\n\n21) SilentTitan: Trade R2 Y2 Silenttitan\n\n22) wil: Sacrifice Y1 Wil\nDiscover R2 G3 G2 G2\n\n23) SilentTitan: Discover R2 Sol G3 Soul\n\n24) wil: Trade R1 B1 Wil\n\n25) SilentTitan: Build G1 Silenttitan\n\n26) wil: Build B1 Wil\n\n27) SilentTitan: Trade G1 B1 Silenttitan\n\n28) wil: Move B1 Wil G3\n\n29) SilentTitan: Move B1 Silenttitan Sol\n\n30) wil: Move Y2 Wil G3\n\n31) SilentTitan: Build G1 Silenttitan\n\n32) wil: Build B2 G3\n\n33) SilentTitan: Discover Y1 Silenttitan R2 Sole\n\n34) wil: Move B2 G3 G2\n\n35) SilentTitan: Move G1 Silenttitan Sol\n\n36) wil: Build B2 G2\n\n37) SilentTitan: Build B3 Sol\n\n38) wil: Build B3 G3\n\n39) SilentTitan: Build Y1 Silenttitan\n\n40) wil: Trade B3 Y3 G3\n\n41) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Sol G3\nMove R3 G3 G2\n\n42) wil: Sacrifice Y3 G3\nMove B2 G2 Soul\nMove B2 G2 Soul\nMove R2 G2 G3\n\n43) SilentTitan: Sacrifice Y1 Sole\nDiscover R2 Soul R1 Tic\n\n44) wil: Build B3 G3\n\n45) SilentTitan: Move B3 Sol G3\n\n46) wil: Attack B3 G3\n\n47) SilentTitan: Move B1 Sol G3\nCatastrophe G3 Blue\n\n48) wil: Move R2 G3 Sol\n\n49) SilentTitan: Discover G1 Sol Y3 Tac\n\n50) wil: Trade B2 Y2 Soul\n\n51) SilentTitan: Build Y1 Silenttitan\n\n52) wil: Build B1 Wil\n\n53) SilentTitan: Move Y1 Silenttitan G2\n\n54) wil: Move B1 Wil G3\n\n55) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 G2\nBuild Y3 Silenttitan\nBuild G1 Tac\n\n56) wil: Build G2 Wil\n\n57) SilentTitan: Move R3 G2 Soul\n\n58) wil: Move Y2 Soul G2\n\twil: crap I knew that was going to come sometime....\n\n59) SilentTitan: Trade Y1 B1 Silenttitan\n\n60) wil: Move G2 Wil Tac\n\n61) SilentTitan: Sacrifice Y1 G2\nMove R3 Soul G2\n\n62) wil: Sacrifice R3 G3\nAttack Y1 G2\nAttack G1 Tac\nAttack G1 Tac\n\n63) SilentTitan: Sacrifice R2 Tic\nAttack Y2 G2 South\nAttack Y1 G2 South\n\n64) wil: Build B2 G3\n\n\nHomeworlds Online (SDG# 24231)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.7.14, Ended: 2013.7.17\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\tdlwillson: No time, Wil. Sorry. I&#39;m doing all I can to have a successful Linux Camp in August.\n\twil: oops sorry....I saw ur challenge up....give me a shout when you have the time...\n\nHomeworlds Online (SDG# 24270)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.14, Ended: 2013.7.19\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld R2 B1 G3\n\n2) Broccoli_Commander: Homeworld Y2 G3 B3\n\n3) wil: Build G1 Wil\n\twil: again with this!\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\n5) wil: Build G1 Wil\n\tBroccoli_Commander: Sorry bout that, im playing on my phone and misclicked...\n\tBroccoli_Commander: And good game to you &amp;#55357;&amp;#56833;\n\n6) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n7) wil: Trade G1 B1 Wil\n\n8) Broccoli_Commander: Build B2 Broccoli_commander\n\n9) wil: Build B2 Wil\n\n10) Broccoli_Commander: Discover B1 Broccoli_commander G1 Pea\n\n11) wil: Trade B1 Y1 Wil\n\n12) Broccoli_Commander: Build B1 Broccoli_commander\n\n13) wil: Build B2 Wil\n\n14) Broccoli_Commander: Discover B2 Broccoli_commander R1 Tomatoe\n\n15) wil: Trade B2 R2 Wil\n\twil: I &#39;blue&#39; it.\n\n16) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Tomatoe\nBuild B3 Broccoli_commander\nBuild B3 Pea\n\n17) wil: Build B3 Wil\n\n18) Broccoli_Commander: Trade B3 R3 Pea\n\n19) wil: Trade B3 Y3 Wil\n\n20) Broccoli_Commander: Trade B2 Y2 Tomatoe\n\n21) wil: Discover B2 Wil G3 G3\n\n22) Broccoli_Commander: Build R1 Pea\n\n23) wil: Move Y1 Wil G3\n\n24) Broccoli_Commander: Build R1 Pea\n\n25) wil: Build B2 G3\n\n26) Broccoli_Commander: Build B3 Pea\n\n27) wil: Discover B2 G3 Y1 Y1\n\n28) Broccoli_Commander: Sacrifice B2 Tomatoe\nTrade B3 R3 Broccoli_commander\nTrade B1 Y1 Pea\n\n29) wil: Move R2 Wil G3\n\n30) Broccoli_Commander: Move R3 Pea G3\n\n31) wil: Sacrifice G3 Wil\nBuild R2 G3\nBuild R3 G3\nBuild B1 Y1\nCatastrophe G3 R\n\n32) Broccoli_Commander: M B3 Pea G3\n\n33) wil: Discover B2 G3 G1 G1\n\n34) Broccoli_Commander: Sacrifice R1 Pea\nAttack Y1 G3\n\twil: ya get rid of one bully and they just go call their friends..\n\n35) wil: Build B2 G1\n\tBroccoli_Commander: Yeah I should talk to them about that at some point\n\n36) Broccoli_Commander: Build Y2 G3\n\twil: yeah...why did I leave that y1 behind anywho...shoulda sacrificed her?  or was it good to have just made you waste a move?\n\n37) wil: Build Y3 Wil\n\tBroccoli_Commander: In that situation id say sacrifice\n\n38) Broccoli_Commander: Sacrifice Y2 Tomatoe\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nCatastrophe Wil Y\n\n\twil: I must be blind...I looked to see if you could get me and missed it...\r\n\n\twil: downright embarassin that one..\r\n\n\tBroccoli_Commander: No worries, you put up a good fight, especially at the beginning\n\nHomeworlds Online (SDG# 24254)\nVariants: &quot;No undo, Unrated, Hard time&quot;\nStarted: 2013.7.14, Ended: 2013.7.17\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 24302)\nVariants: &quot;No undo&quot;\nStarted: 2013.7.14, Ended: 2013.7.17\nParticipants: Erik2point0 (S), scotward (N)\nWinner: scotward\n\n1) scotward: Homeworld G3 R1 B3\n\n2) Erik2point0: Homeworld B1 G2 Y3\n\n3) scotward: Build B1 Scotward\n\n4) Erik2point0: Build Y1 Erik2point0\n\n5) scotward: Trade B1 Y1 Scotward\n\n6) Erik2point0: Trade Y1 G1 Erik2point0\n\n7) scotward: Build Y1 Scotward\n\n8) Erik2point0: Build G1 Erik2point0\n\n9) scotward: Trade Y1 G1 Scotward\n\n10) Erik2point0: Discover G1 Erik2point0 Y3 Intrigue\n\n11) scotward: Build G2 Scotward\n\n12) Erik2point0: Build G2 Erik2point0\n\n13) scotward: Discover G2 Scotward B2 Mystery\n\n14) Erik2point0: Build G3 Intrigue\n\n15) scotward: Build G3 Mystery\n\n16) Erik2point0: Trade G1 R1 Erik2point0\n\n17) scotward: Trade G2 Y2 Mystery\n\n18) Erik2point0: Build Y1 Erik2point0\n\n19) scotward: Build G1 Mystery\n\tErik2point0: Sorry, I missed the email and thought it was still your turn\n\n20) Erik2point0: Trade Y1 B1 Erik2point0\n\n21) scotward: Build G2 Scotward\n\n22) Erik2point0: Sacrifice Y3 Erik2point0\nMove G1 Intrigue Mystery\nMove G1 Mystery Scotward\nDiscover G2 Erik2point0 B3 Seaside\nCatastrophe Scotward Green\n\tscotward:  no prob. \n\n23) scotward: Sacrifice Y2 Mystery\nMove G3 Mystery Intrigue\nMove G3 Intrigue Erik2point0\n\n24) Erik2point0: Build G1 Intrigue\n\n25) scotward: Trade G1 R1 Mystery\n\n26) Erik2point0: Trade R1 Y1 Erik2point0\n\n27) scotward: Trade G3 R3 Erik2point0\n\n\nHomeworlds Online (SDG# 24172)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.17, Ended: 2013.8.18\nParticipants: wil (S), pgadey (N)\nWinner: wil\n\n1) pgadey: Homeworld B3 G2 Y3\n\n2) wil: Homeworld R2 B1 G3\n\n3) pgadey: Build Y1 Pgadey\n\n4) wil: Build G1 Wil\n\n5) pgadey: Trade Y1 G1 Pgadey\n\n6) wil: Trade G1 Y1 Wil\n\n7) pgadey: Trade G1 B1 Pgadey\n\n8) wil: Build G1 Wil\n\tpgadey: The opening in this game always feels a little clunky to me. I feel like there is a long build up before anything ``begins&#39;&#39;. I guess that just says how little I understand what&#39;s going on.\n\n9) pgadey: Build B1 Pgadey\n\twil: No you are correct....it is like chess, pushing pawns, getting out knights and bishops...the first five moves go fairly quickly, until someone does something unique....and then the game slows pace...\n\tpgadey: Right -- What other games are you interested in, by the way?\n\n10) wil: Discover G1 Wil Y3 Y3\n\twil: This is the only one I play here...I have thought of learning martian chess...but i play live chess, gin, hold-em, craps, euchre, all variety cards, wide variety of board games, grew up in a gaming family, and play regular with a good size group.\n\n11) pgadey: Trade B1 G1 Pgadey\n\n12) wil: Build Y1 Wil\n\tpgadey: Good times! I play a number of abstracts. I go through phases of playing things online with regularity. Here I play Entropy, Amazons, Homeworlds. I wish I could play more Entropy and Homeworlds face to face. They&#39;re really great.\n\twil: where abouts do you live...no homeworlds players to develop??\n\n13) pgadey: Discover G1 Pgadey Y1 Banana\n\n14) wil: Discover Y1 Wil G3 G3\n\tpgadey: I&#39;m in Toronto. A lovely city, with a couple board game caf&eacute;s but they are all about the Euro Games. My girlfriend has got a knack for abstracts, but we&#39;re heavily into playing Nick Bentley&#39;s Catchup: http://nickbentleygames.wordpress.com/2012/04/29/my-best-game-i-suspect-ketchup/\r\n\r\nSo we haven&#39;t been playing much else lately.\n\tpgadey: I&#39;m in Toronto. A lovely city, with a couple board game caf&eacute;s but they are all about the Euro Games. My girlfriend has got a knack for abstracts, but we&#39;re heavily into playing Nick Bentley&#39;s Catchup: http://nickbentleygames.wordpress.com/2012/04/29/my-best-game-i-suspect-ketchup/\r\n\r\nSo we haven&#39;t been playing much else lately.\n\n15) pgadey: Build B1 Pgadey\n\twil: you play klunker?\n\n16) wil: Build Y2 G3\n\n17) pgadey: Move B1 Pgadey Banana\n\n18) wil: Build Y2 Wil\n\n19) pgadey: Build B2 Banana\n\n20) wil: Trade Y1 R1 Wil\n\n21) pgadey: Trade B2 Y2 Banana\n\n22) wil: Build G1 Wil\n\n23) pgadey: Trade B1 R1 Banana\n\n24) wil: Build G2 Y3\n\n25) pgadey: Build R1 Banana\n\n26) wil: Discover G1 Y3 B1 B1\n\n27) pgadey: Move G1 Banana Y3\n\n28) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 B1\nBuild G3 Wil\n\n29) pgadey: Build B2 Pgadey\n\n30) wil: Move R1 Wil Y3\n\n\twil: awe...hate when that happens...\n\nHomeworlds Online (SDG# 24311)\nVariants: &quot;No undo&quot;\nStarted: 2013.7.17, Ended: 2013.8.6\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld B1 G2 Y3\n\n2) scotward: Homeworld R1 B3 G3\n\n3) Erik2point0: Build Y1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Trade Y1 G1 Erik2point0\n\n6) scotward: Trade G1 B1 Scotward\n\n7) Erik2point0: Build G1 Erik2point0\n\n8) scotward: Build B1 Scotward\n\n9) Erik2point0: Build Y1 Erik2point0\n\n10) scotward: Build G1 Scotward\n\n11) Erik2point0: Discover G1 Erik2point0 B3 Alpha\n\n12) scotward: Trade G1 Y1 Scotward\n\n13) Erik2point0: Trade Y1 R1 Erik2point0\n\n14) scotward: Discover B1 Scotward G2 Omega\n\n15) Erik2point0: Build Y1 Erik2point0\n\n16) scotward: Build B2 Omega\n\n17) Erik2point0: Build G1 Alpha\n\n18) scotward: Trade B2 G2 Omega\n\n19) Erik2point0: Build G3 Erik2point0\n\n20) scotward: Build G3 Scotward\n\n21) Erik2point0: Trade G1 Y1 Alpha\n\n22) scotward: Build B2 Omega\n\n23) Erik2point0: Sacrifice G3 Erik2point0\nBuild G1 Alpha\nBuild G3 Erik2point0\nBuild Y2 Alpha\n\n24) scotward: Sacrifice G3 Scotward\nBuild Y2 Scotward\nBuild G3 Scotward\nBuild B2 Omega\n\n25) Erik2point0: Sacrifice Y2 Alpha\nMove G1 Alpha Omega\nMove G1 Alpha Omega\nCatastrophe Omega Green\n\n26) scotward: Discover G3 Scotward B2 Omega2\n\n27) Erik2point0: Trade G1 B1 Erik2point0\n\n28) scotward: Move Y2 Scotward Omega2\n\n29) Erik2point0: Build Y2 Erik2point0\n\n30) scotward: Build G1 Omega2\n\n31) Erik2point0: Move Y2 Erik2point0 Alpha\n\n32) scotward: Trade G3 R3 Omega2\n\n33) Erik2point0: Trade Y2 R2 Alpha\n\n34) scotward: Build Y2 Omega2\n\n35) Erik2point0: Discover Y3 Erik2point0 R3 Beta\n\n36) scotward: Trade Y2 G2 Omega2\n\n37) Erik2point0: Discover R2 Alpha G2 Gamma\n\tErik2point0: How are you guys doing?\n\n38) scotward: Discover G2 Omega2 Y3 Psi\n\n39) Erik2point0: Sacrifice G3 Erik2point0\nBuild Y2 Alpha\nBuild Y2 Beta\nBuild Y3 Erik2point0\n\n40) scotward: Sacrifice G2 Psi\nBuild Y3 Scotward\nBuild G1 Omega2\n\n41) Erik2point0: Move Y3 Beta Gamma\n\n42) scotward: Discover G1 Omega2 B3 Chi\n\n43) Erik2point0: Build R1 Gamma\n\n44) scotward: Sacrifice G3 Scotward\nBuild G1 Chi\nBuild G2 Chi\nBuild G3 Omega2\n\n45) Erik2point0: Build R2 Gamma\n\n46) scotward: Sacrifice Y3 Scotward\nMove G1 Chi Gamma\nMove G1 Chi Gamma\nMove G2 Chi Gamma\nCatastrophe Gamma G\n\n47) Erik2point0: Trade Y2 G2 Alpha\n\n48) scotward: Move G3 Omega2 Scotward\n\n49) Erik2point0: Trade Y3 G3 Erik2point0\n\n50) scotward: Move R3 Omega2 Alpha\n\n51) Erik2point0: Sacrifice G3 Erik2point0\nBuild Y2 Alpha\nBuild Y3 Beta\nBuild Y3 Erik2point0\n\n52) scotward: Attack Y2 Alpha\n\n53) Erik2point0: Sacrifice Y1 Alpha\nDiscover G2 Alpha B2 Gamma\n\n54) scotward: Move R3 Alpha Gamma\n\n55) Erik2point0: Sacrifice G2 Gamma\nBuild R1 Erik2point0\nBuild R2 Erik2point0\n\n56) scotward: Trade Y2 G2 Alpha\n\n57) Erik2point0: Trade R1 G1 Erik2point0\n\n58) scotward: Build G1 Alpha\n\n59) Erik2point0: Move G1 Erik2point0 Beta\n\n60) scotward: Discover G1 Omega2 Y3 Phi\n\n61) Erik2point0: Sacrifice Y2 Beta\nMove Y3 Beta Omega2\nMove R2 Erik2point0 Phi\n\n62) scotward: Sacrifice Y2 Omega2\nMove G1 Alpha Erik2point0\nMove G2 Alpha Erik2point0\n\n63) Erik2point0: Attack G1 Phi\n\n64) scotward: Sacrifice R3 Gamma\nAttack R1 Erik2point0\nAttack B1 Erik2point0\nAttack Y1 Erik2point0\n\n65) Erik2point0: Sacrifice R2 Phi\nAttack G1 Erik2point0\nAttack G2 Erik2point0\n\tErik2point0: Hmm. I expected a build green followed by catastrophe\n\n66) scotward: Attack G1 Erik2point0\n\n67) Erik2point0: Trade G2 R2 Erik2point0\n\n68) scotward: Build B2 Erik2point0\n\n69) Erik2point0: Sacrifice R2 Erik2point0\nAttack B1 Erik2point0\nAttack B2 Erik2point0\n\n70) scotward: Build G2 Erik2point0\n\n71) Erik2point0: Trade B2 R2 Erik2point0\n\n72) scotward: Attack R2 Erik2point0\n\n73) Erik2point0: Trade Y3 G3 Omega2\n\n74) scotward: Sacrifice G2 Erik2point0\nBuild Y1 Erik2point0\nBuild Y2 Erik2point0\nCatastrophe Erik2point0 Y\n\n\tErik2point0: Ouch. Good game. \n\nHomeworlds Online (SDG# 24283)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.22, Ended: 2013.8.3\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld G1 Y2 B3\n\n2) wil: Homeworld B3 R2 G3\n\twil: dang blue starts..\n\n3) Marmalade: Build B1 Marmalade\n\n4) wil: Build G1 Wil\n\tMarmalade: It&#39;s not something I&#39;ve played with before, but I&#39;ve been crushed by it :)\n\n5) Marmalade: Build B1 Marmalade\n\n6) wil: Trade G1 Y1 Wil\n\n7) Marmalade: Discover B1 Marmalade G3 Ain\n\n8) wil: Trade Y1 G1 Wil\n\n9) Marmalade: Build B1 Ain\n\n10) wil: Trade G1 Y1 Wil\n\twil: dang....typed wrong....meant y1 b1.....what a mistake...\n\tMarmalade: You can still undo...\n\twil: you sir are a gentlemen and scholar....but alas I cannot, it is done.  Go ahead, take advantage of my mistake as a proper gamesman, teach me my lesson, and move toward universal dominance...maybe next time I&#39;ll not be so impetuous.\n\n11) Marmalade: Build B2 Ain\n\n12) wil: Build G1 Wil\n\n13) Marmalade: Build B2 Marmalade\n\n14) wil: Trade G3 B3 Wil\n\n15) Marmalade: Trade B2 Y2 Ain\n\n16) wil: Build G1 Wil\n\n17) Marmalade: Discover B1 Ain Y1 Kleeia\n\n18) wil: Discover G1 Wil Y1 Y1\n\n19) Marmalade: Build B2 Ain\n\n20) wil: Build Y2 Wil\n\n21) Marmalade: Build Y3 Ain\n\n22) wil: Trade B3 G3 Wil\n\n23) Marmalade: Trade Y2 R2 Ain\n\n24) wil: Build G2 Wil\n\n25) Marmalade: Trade B2 G2 Ain\n\n26) wil: Trade G2 R2 Wil\n\n27) Marmalade: Move G2 Ain Kleeia\n\n28) wil: Build G2 Y1\n\n29) Marmalade: Move Y3 Ain Y1\n\n30) wil: Discover G2 Y1 Y3 Y3\n\n31) Marmalade: Sacrifice G2 Kleeia\nBuild B2 Ain\nBuild B2 Kleeia\n\n32) wil: Discover G1 Y1 Y3 Y3a\n\n33) Marmalade: Trade B2 Y2 Ain\n\n34) wil: Build G2 Y3a\n\n35) Marmalade: Sacrifice B2 Marmalade\nTrade Y3 G3 Y1\nTrade B3 Y3 Marmalade\n\n36) wil: Discover Y1 Wil R1 R1\n\n37) Marmalade: Trade B2 G2 Kleeia\n\n38) wil: Move R2 Wil R1\n\n39) Marmalade: Build R1 Ain\n\n40) wil: Move G1 Y3a R1\n\n41) Marmalade: Build B2 Marmalade\n\n42) wil: Sacrifice G2 Y3a\nBuild Y3 R1\nBuild G2 R1\n\n43) Marmalade: Sacrifice G3 Y1\nBuild G3 Kleeia\nBuild B2 Kleeia\nBuild B2 Ain\n\n44) wil: Move Y3 R1 Ain\n\n45) Marmalade: Discover B2 Ain Y1 Mooose\n\n46) wil: Sacrifice R2 R1\nAttack Y2 Ain\nAttack B1 Ain\n\n47) Marmalade: Sacrifice G3 Kleeia\nBuild G3 Kleeia\nBuild B3 Mooose\nBuild B3 Kleeia\n\tMarmalade: crap\n\n48) wil: Trade G1 R1 Wil\n\n49) Marmalade: Sacrifice Y3 Marmalade\nMove B3 Kleeia Wil\nMove B3 Mooose Wil\nMove G3 Kleeia Wil\n\twil: this is quite the fight...\n\n50) wil: Sacrifice G2 Y3\nBuild Y3 Wil\nBuild R2 Wil\n\twil: very nice....thought I was gonna end the smurf dominance...\n\n51) Marmalade: Sacrifice R2 Ain\nAttack G3S Wil\nAttack Y3S Wil\n\n52) wil: Move Y3 Ain Marmalade\n\tMarmalade: If I&#39;ve done my sums properly, I think that&#39;s done it...\n\tMarmalade: I could, of course, be hilariously wrong.\n\tMarmalade: Still, the galaxy may yet quake under the tyrannical yoke of Papa Smurf.\n\twil: ouch\n\n53) Marmalade: Attack R2S Wil\n\n54) wil: S R1 Wil\nA B2 Marmalade\n\n55) Marmalade: Attack Y2S Wil\n\twil: at least I&#39;m trying...\n\n\twil: Yup one step behind\n\tMarmalade: Cheers for the game :)\n\twil: Wonder if i&#39;ll ever learn...\n\nHomeworlds Online (SDG# 24301)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.22, Ended: 2013.7.30\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 G2 B3\n\tBroccoli_Commander: Greetings Human, we come in peace. (But we installed Blastoids on our homeworld for defense)\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build B1 Wil\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) wil: Build B1 Wil\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) wil: Trade B1 Y1 Wil\n\n9) Broccoli_Commander: Build Y2 Broccoli_commander\n\n10) wil: Build Y2 Wil\n\n11) Broccoli_Commander: Discover Y2 Broccoli_commander B3 Blueberry\n\n12) wil: Discover Y1 Wil G1 G1\n\n13) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Muffin\n\n14) wil: Trade B3 G3 Wil\n\n15) Broccoli_Commander: Build G1 Broccoli_commander\n\n16) wil: Sacrifice G3 Wil\nBuild Y2 G1\nBuild Y3 G1\nBuild Y3 Wil\n\n17) Broccoli_Commander: Move Y1 Muffin G1\nCatastrophe G1 Y\n\twil: does he want a y3 or to catastrophe me?  choices...\n\n18) wil: Build B1 Wil\n\n19) Broccoli_Commander: Move G1 Broccoli_commander Blueberry\n\n20) wil: Discover B1 Wil G1 G1\n\n21) Broccoli_Commander: Build G1 Broccoli_commander\n\n22) wil: Build B1 Wil\n\n23) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n24) wil: Trade Y3 G3 Wil\n\n25) Broccoli_Commander: Trade G2 R2 Blueberry\n\n26) wil: Trade B1 Y1 G1\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Blueberry\nBuild G3 Broccoli_commander\n\n28) wil: Sacrifice G3 Wil\nBuild Y1 G1\nBuild Y2 G1\nBuild Y3 Wil\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n30) wil: Discover Y1 G1 G3 G3\n\n31) Broccoli_Commander: Move G3 Blueberry G1\n\n32) wil: Discover Y2 G1 B3 B3\n\n33) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove G3 G1 Wil\nMove Y3 Blueberry G1\nMove Y3 G1 Wil\n\n34) wil: Attack G3 Wil\n\tBroccoli_Commander: and once again the two brave warriors invade the enemy&#39;s homeworld...\n\twil: yeah.and I didn&#39;t trade for a red....will I ever learn?\n\n35) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack Y3 Wil\nAttack G3 Wil\n\n36) wil: Build Y3 Wil\n\n37) Broccoli_Commander: Attack B1 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 24335)\nStarted: 2013.7.29, Ended: 2013.9.27\nParticipants: harmiton (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) harmiton: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n\nHomeworlds Online (SDG# 24148)\nVariants: &quot;Unrated&quot;\nStarted: 2013.7.29, Ended: 2013.7.31\nParticipants: zoltar (S), Leonard_Daniels (N), harmiton (E)\nWinner: harmiton\n\n1) harmiton: Homeworld Y1 B2 G3\n\n\tzoltar: We lost a player from the start\r\nBetter to start a new game.\n\nHomeworlds Online (SDG# 24300)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.7.30, Ended: 2013.8.2\nParticipants: harmiton (S), dlwillson (N)\nWinner: harmiton\n\n\nHomeworlds Online (SDG# 24361)\nVariants: &quot;Hard time&quot;\nStarted: 2013.7.30, Ended: 2013.9.2\nParticipants: wil (S), Salmonax (N)\nWinner: wil\n\n1) Salmonax: Homeworld G3 B2 Y3\n\n2) wil: Homeworld R2 B1 G3\n\n3) Salmonax: Build Y1 Salmonax\n\twil: thanx for the game!\n\n4) wil: Build G1 Wil\n\n5) Salmonax: Trade Y1 G1 Salmonax\n\n6) wil: Trade G1 Y1 Wil\n\tSalmonax: Thanks to you too, good luck. =)\n\n7) Salmonax: Discover G1 Salmonax B1 Slippydee\n\n8) wil: Build G1 Wil\n\n9) Salmonax: Build Y1 Salmonax\n\n10) wil: Build Y1 Wil\n\n11) Salmonax: Trade Y3 R3 Salmonax\n\n12) wil: Trade Y1 R1 Wil\n\n13) Salmonax: Build G1 Slippydee\n\n14) wil: Build G2 Wil\n\n15) Salmonax: Build G2 Slippydee\n\n16) wil: Discover G2 Wil Y3 Y3\n\n17) Salmonax: Trade G2 R2 Slippydee\n\n18) wil: Build G2 Y3\n\n19) Salmonax: Build R1 Slippydee\n\n20) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB G3 Wil\n\n21) Salmonax: Sacrifice Y1 Salmonax\nMove G1 Slippydee Y3\nCatastrophe Y3 G\n\n22) wil: T G3 Y3 Wil\n\n23) Salmonax: Build G1 Slippydee\n\n24) wil: Build G2 Wil\n\n25) Salmonax: Build G2 Slippydee\n\n26) wil: Discover G1 Wil Y3 Y3\n\n27) Salmonax: Trade G1 Y1 Slippydee\n\n28) wil: Build G1 Wil\n\n29) Salmonax: Move G2 Slippydee Y3\n\n30) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 Y3\nBuild G3 Wil\nCatastrophe Y3 G\n\n31) Salmonax: Build R1 Salmonax\n\twil: a reboot...\n\n32) wil: Discover G2 Wil Y3 Y3\n\n33) Salmonax: Trade R3 Y3 Salmonax\n\tSalmonax: Heh. =)\n\n34) wil: Move R1 Wil Y3\n\tSalmonax: oops\n\n35) Salmonax: Build R2 Salmonax\n\n36) wil: Build R3 Y3\n\twil: now you can do that...\n\n37) Salmonax: Build Y1 Salmonax\n\tSalmonax: Well, I think I will!\n\n38) wil: Discover R3 Y3 B1 B1\n\n39) Salmonax: Build Y2 Slippydee\n\twil: me too!\n\n40) wil: Build R3 Y3\n\n\n41) Salmonax: Discover R1 Slippydee G3 Wheskler\n\n42) wil: Move R3 Y3 Slippydee\n\n43) Salmonax: Build R3 Slippydee\n\n44) wil: Sacrifice R3 B1\nAttack R3 Slippydee\nAttack G1 Slippydee\nAttack Y2 Slippydee\n\n45) Salmonax: Move R1 Salmonax Slippydee\nCatastrophe Slippydee R\n\twil: you must be west coast?\n\tSalmonax: Mountain time.\n\twil: ah...I&#39;s east coast....I knew one of us was up late/early...\n\n46) wil: Build R1 Y3\n\twil: I was wondering if you might choose that route....\n\n47) Salmonax: Move Y1 Slippydee Wheskler\n\n48) wil: Build Y2 Slippydee\n\tSalmonax: Really swingy game. =)\n\twil: another reboot!  Once you took that path it was fairly inevitable eh?\n\n49) Salmonax: Move Y1 Salmonax Slippydee\n\n50) wil: Sacrifice R1 Y3\nAttack Y1 Slippydee\n\n51) Salmonax: Move Y1 Wheskler Slippydee\nCatastrophe Slippydee Y\n\n52) wil: Build R1 Y3\n\n53) Salmonax: Build R2 Wheskler\n\n54) wil: Move R1 Y3 Slippydee\n\n55) Salmonax: Build Y1 Salmonax\n\n56) wil: Build R3 Slippydee\n\n57) Salmonax: Trade Y1 B1 Salmonax\n\n58) wil: Build R3 Y3\n\n\twil: I should have it...it seems to me anyway...but i just can&#39;t get a handle on how to get it done....the thing about this game is that taking advantage of a little mistake rotates the power during reboots and anything can happen...quite the give and take so far...\n\twil: awe.... I would have like to have finished....hope all is ok in your world.\r\n\n\nHomeworlds Online (SDG# 24362)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.8.5, Ended: 2013.8.7\nParticipants: wil (S), harmiton (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24330)\nVariants: &quot;Hard time&quot;\nStarted: 2013.8.10, Ended: 2013.8.22\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: just a masochist...\n\n2) Marmalade: Homeworld G1 Y3 B3\n\n3) wil: Build G1 Wil\n\tMarmalade: We seem to be about the same level, which is great.\r\n\n\twil: So far I am learning from all intergalactic battles....when I play better folks I get annihilated by various tactics and then try to use these against weaker player and learn how it plays out.  I use them against equal players and see how they defended it vs how I did....but I lose to weaker and beat much better occasionally.....it is such a game of steps...and while you can make one glorious mistake that someone takes advantage of....mostly it is a series of little things that add upto you being in a bad position....and then waiting andsearching for some way to turn the tide..\n\n4) Marmalade: Build B1 Marmalade\n\n5) wil: Trade G1 B1 Wil\n\n6) Marmalade: Build B2 Marmalade\n\n7) wil: Build B2 Wil\n\n8) Marmalade: Discover B2 Marmalade G2 Coo\n\n9) wil: Trade B1 Y1 Wil\n\n\twil: phooey\n\nHomeworlds Online (SDG# 24331)\nVariants: &quot;Hard time&quot;\nStarted: 2013.8.10, Ended: 2013.8.20\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\twil: I think I am beginning to learn...  unless I screw up on my game I should be climbing the ladder a bit...\n\n2) wil: Homeworld B3 R1 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\twil: did I somehow goof up and put us in two games?\n\n4) wil: Build G1 Wil\n\tBroccoli_Commander: Yes it looks like it, I&#39;ll just let the other one die...\r\nAnyway, looking forward to seeing wil 2.0 ;)\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\twil: ah...too bad...I was gonna suggest we start out the same and see how a change in choice somewhere creates a totally different game...\n\n6) wil: Trade G1 Y1 Wil\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: Build G1 Wil\n\tBroccoli_Commander: Oh... Well it&#39;s not a bad idea, but I wouldn&#39;t know when to make a change to get a meaningful result... This particular opening is pretty common so for instance any early change will simply yield two different games\n\twil: I don&#39;t think it would be an intentional change....as the two games played out one of us would make an adjustment to strategy and a new game would be developed...   hmmmm  that makes me think... we should pick openings and have a lot of people play the exact same openings..and switch sides...and see the variety of games that are created...\r\n\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n10) wil: Trade G1 R1 Wil\n\n11) Broccoli_Commander: Build Y1 Broccoli_commander\n\n12) wil: Build R2 Wil\n\n13) Broccoli_Commander: Build Y2 Broccoli_commander\n\n14) wil: Build Y2 Wil\n\n15) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n16) wil: Discover R2 Wil G2 G2\n\n17) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n18) wil: Move Y1 Wil G2\n\n19) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\n20) wil: Build Y2 Wil\n\n21) Broccoli_Commander: Build G1 Broccoli_commander\n\n22) wil: Build R2 Wil\n\n23) Broccoli_Commander: Build R3 Blueberry\n\n24) wil: Build R3 G2\n\n25) Broccoli_Commander: Discover R3 Blueberry G2 Lettuce\n\n26) wil: Trade R2 G2 Wil\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n28) wil: Sacrifice Y2 Wil\nDiscover Y2 Wil B2 B2\nMove R1 Wil B2\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R2 Lettuce\nBuild R3 Blueberry\n\n30) wil: Build Y2 G2\n\n31) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n32) wil: Move Y2 G2 Wil\n\n33) Broccoli_Commander: Build B1 Broccoli_commander\n\n34) wil: Build Y2 G2\n\n35) Broccoli_Commander: Build Y3 Broccoli_commander\n\n36) wil: Build Y3 Wil\n\n37) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y3 Blueberry\n\n38) wil: Trade Y3 B3 Wil\n\n39) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove R2 Blueberry G2\nMove R3 Blueberry G2\nMove G3 Blueberry B2\nCatastrophe G2 R\n\n40) wil: Build Y3 Wil\n\twil: ouch\n\twil: ouch\n\n41) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack Y2 B2\nAttack R1 B2\n\n42) wil: Trade Y2 R2 Wil\n\n43) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Blueberry\nBuild Y2 B2\nBuild Y3 Broccoli_commander\n\n44) wil: Move B3 Wil G2\n\n45) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R2 B2\nBuild R2 Lettuce\n\n46) wil: Move R2 Wil G2\n\n47) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R3 Lettuce\nBuild R3 B2\n\n48) wil: Build B1 G2\n\twil: Ooops I blew it again...\n\n49) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove R3 Lettuce Wil\nMove G3 B2 Wil\nMove R3 B2 Wil\n\n50) wil: Sacrifice R2 G2\nAttack R3 Wil\nAttack G3 Wil\n\tBroccoli_Commander: Good game though!\r\nYou really got me worried when you took the last r1 at the beginning... This was also a mistake from my part\n\n51) Broccoli_Commander: Sacrifice R3 Lettuce\nAttack R3 Wil\nAttack Y3 Wil\nAttack G3 Wil\n\n52) wil: Sacrifice Y2 G2\nMove B1 G2 Blueberry\nMove B1 Blueberry Broccoli_commander\nC Broccoli_commander B\n\n53) Broccoli_Commander: Sacrifice R2 B2\nAttack G3 Wil\nAttack G2 Wil\n\twil: gad have you got my homeworld full of your large ships...\n\tBroccoli_Commander: You gave me no other choice ;-)\n\twil: it was inevitable.....that is the most imposing force I&#39;ve ever seen in my homeworld....so I thought I&#39;d give your home star something to remember us by...\n\n\nHomeworlds Online (SDG# 24395)\nVariants: &quot;Hard time&quot;\nStarted: 2013.8.10, Ended: 2013.8.13\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24407)\nVariants: &quot;Hard time&quot;\nStarted: 2013.8.14, Ended: 2013.11.8\nParticipants: Broccoli_Commander (S), AdamBadura (N)\nWinner: Broccoli_Commander\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) Broccoli_Commander: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) AdamBadura: Trade Y1 R1 Adambadura\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) AdamBadura: Build R1 Adambadura\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) AdamBadura: Build R2 Adambadura\n\n10) Broccoli_Commander: Build G1 Broccoli_commander\n\n11) AdamBadura: Trade R1 G1 Adambadura\n\n12) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n13) AdamBadura: Build G2 Adambadura\n\n14) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n15) AdamBadura: Trade G1 Y1 Adambadura\n\n16) Broccoli_Commander: Trade G2 R2 Blueberry\n\n17) AdamBadura: Discover R2 Adambadura B1 Changeroom\n\n18) Broccoli_Commander: Build G1 Broccoli_commander\n\n19) AdamBadura: Build R1 Adambadura\n\n20) Broccoli_Commander: Discover G1 Broccoli_commander B3 Muffin\n\n21) AdamBadura: Trade Y3 G3 Adambadura\n\n22) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Muffin\nBuild Y1 Broccoli_commander\nBuild Y2 Broccoli_commander\n\n23) AdamBadura: Sacrifice G2 Adambadura\nBuild R2 Adambadura\nBuild R3 Changeroom\n\n24) Broccoli_Commander: Build R3 Blueberry\n\n25) AdamBadura: Build Y2 Adambadura\n\n26) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove R3 Blueberry Broccoli_commander\n\n27) AdamBadura: Trade R1 B1 Adambadura\n\n28) Broccoli_Commander: Build G2 Broccoli_commander\n\n29) AdamBadura: Trade R3 G3 Changeroom\n\n30) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove G2 Blueberry Changeroom\nMove G1 Blueberry Changeroom\n\n31) AdamBadura: Trade G3 R3 Changeroom\n\tAdamBadura: Tomorrow I&#39;m going on a trip. I will be back on Monday evening. In the mean time I don&#39;t expect to be able to make any moves. On the other hand considering slowness of my moves that would not really be a change. :(\n\n32) Broccoli_Commander: Build G3 Muffin\n\n33) AdamBadura: Attack G2 Changeroom\n\n34) Broccoli_Commander: Sacrifice G2 Muffin\nBuild R1 Blueberry\nBuild R3 Blueberry\n\n35) AdamBadura: Build G2 Adambadura\n\n36) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove G1 Changeroom Adambadura\nCatastrophe Adambadura G\n\n37) AdamBadura: Move R1 Adambadura Blueberry\nCatastrophe Blueberry R\n\n38) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n39) AdamBadura: Move Y1 Adambadura Changeroom\n\tAdamBadura: Somehow I missed that... :(\n\n40) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove G3 Muffin Adambadura\n\n\nHomeworlds Online (SDG# 24422)\nStarted: 2013.8.20, Ended: 2013.10.23\nParticipants: mnkr (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tmnkr: good day. I thought that was a 10 days/movement.\r\ncan we change it?\n\n2) mnkr: Homeworld B3 Y1 G3\n\tts52: Not sure we can change an existing game, but I&#39;m happy to abandon this one and start a new if you like (I&#39;m also really lax on forcing a game end just because you ran out of time, happy to just agree to let it slide for a month or so if you like).\n\n3) ts52: Build G1 Ts52\n\tmnkr: with 10 days per movement I can play well. Have you to create the game?\n\tts52: I think you have to create a new challenge to change the days/move.\n\n4) mnkr: Build G1 Mnkr\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) mnkr: Discover G1 Mnkr Y2 Nnkr\n\n7) ts52: Build G1 Ts52\n\tmnkr: excuse me I had several connection problems.\n\tts52: No problem. Glad you were able to get connected.\n\n8) mnkr: Trade G3 Y3 Mnkr\n\n9) ts52: Discover G1 Ts52 B3 Grover\n\tmnkr: Thanks, I think thatI have to learn a lot about this game before win you.\n\n10) mnkr: Build G1 Nnkr\n\tts52: There is definitely a bit of a learning curve in this game, but it&#39;s one of my favorites.\n\n11) ts52: Build G2 Grover\n\n12) mnkr: Move G1 Nnkr Mnkr\n\n13) ts52: Build G2 Ts52\n\n14) mnkr: Build G2 Mnkr\n\n15) ts52: Discover G2 Ts52 B3 Gonzo\n\n16) mnkr: Build G3 Nnkr\n\tmnkr: build G3 nnkr\n\n17) ts52: Build G3 Ts52\n\n18) mnkr: Discover Y3 Mnkr B2 Onkr\n\n19) ts52: Trade G2 Y2 Grover\n\n20) mnkr: Trade G2 Y2 Mnkr\n\n21) ts52: Build Y3 Grover\n\n22) mnkr: Build Y3 Mnkr\n\n23) ts52: Sacrifice Y3 Grover\nMove Y1 Ts52 Grover\nMove Y1 Grover Onkr\nMove Y1 Onkr Mnkr\nCatastrophe Mnkr Yellow\n\n24) mnkr: Build G2 Mnkr\n\n25) ts52: Trade G3 R3 Ts52\n\tmnkr: wow good movement! I didn&#39;t see it!\n\n26) mnkr: Move Y3 Onkr Mnkr\n\tmnkr: Am I die?\n\n27) ts52: Move R3 Ts52 Mnkr\n\n28) mnkr: Sacrifice Y3 Mnkr\nMove G3 Nnkr Mnkr\nMove G3 Mnkr Ts52\nMove G1 Nnkr Mnkr\n\tts52: I think so, yes.\n\n29) ts52: Trade G3 R3 Ts52\n\n30) mnkr: Build G2 Ts52\n\n31) ts52: Attack G2 Mnkr\n\n32) mnkr: Trade G2 R2 Ts52\n\n33) ts52: Attack R2 Ts52\n\n34) mnkr: Build G2 Ts52\n\n35) ts52: Sacrifice R2 Ts52\nAttack G1 Mnkr\nAttack G1 Mnkr\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 24179)\nStarted: 2013.8.21, Ended: 2013.9.18\nParticipants: thejackdiaz (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) thejackdiaz: Homeworld B3 R2 G3\n\n3) wil: Build G1 Wil\n\n4) thejackdiaz: Build G1 Thejackdiaz\n\n5) wil: Trade G1 Y1 Wil\n\n6) thejackdiaz: Trade G1 Y1 Thejackdiaz\n\n7) wil: Build G1 Wil\n\n8) thejackdiaz: Build G1 Thejackdiaz\n\n9) wil: Discover G1 Wil Y3 Y3\n\n\nHomeworlds Online (SDG# 24394)\nVariants: &quot;Hard time&quot;\nStarted: 2013.8.23, Ended: 2013.9.4\nParticipants: Marmalade (S), wil (N)\nWinner: Marmalade\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld G3 Y1 B3\n\n3) wil: Build G1 Wil\n\tMarmalade: Hi ho, sorry - I must have totally missed the last one, I was on holiday :)\n\twil: I am ready to be abused agin\n\n4) Marmalade: Build B1 Marmalade\n\n5) wil: Trade G1 B1 Wil\n\n6) Marmalade: Discover B1 Marmalade G2 Floob\n\n7) wil: Build B2 Wil\n\n8) Marmalade: Build B2 Floob\n\n9) wil: Discover B2 Wil Y3 Y3\n\n10) Marmalade: Trade B2 Y2 Floob\n\n11) wil: Discover B2 Y3 G2 G2\n\n12) Marmalade: Build B2 Marmalade\n\n13) wil: Build G1 Wil\n\n14) Marmalade: Trade B2 R2 Marmalade\n\n15) wil: Build B2 G2\n\n16) Marmalade: Build Y1 Floob\n\n17) wil: Trade B2 Y2 G2\n\n18) Marmalade: Build B2 Marmalade\n\n19) wil: Build G1 Wil\n\n20) Marmalade: Trade B3 G3 Marmalade\n\n21) wil: Discover G1 Wil Y3 Y3\n\n22) Marmalade: Move R2 Marmalade G2\n\n23) wil: Sacrifice Y2 G2\nMove B2 G2 Y3\nDiscover B2 Y3 G2 Phooey\n\twil: some fool did not get a gun....AGAIN\n\n24) Marmalade: Sacrifice G3 Marmalade\nBuild B2 Floob\nBuild B3 Marmalade\nBuild B3 Floob\n\n25) wil: Trade B1 R1 Wil\n\n26) Marmalade: Trade B3 G3 Floob\n\n27) wil: Sacrifice G3 Wil\nBuild G1 Y3\nBuild G3 Wil\nBuild R1 Wil\n\n28) Marmalade: Move B2 Floob Y3\n\n29) wil: Discover R1 Wil Y3 Y3a\n\n30) Marmalade: Sacrifice G3 Floob\nBuild B1 Floob\nBuild B3 Floob\nBuild B3 Y3\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Wil\nBuild R1 Wil\n\n32) Marmalade: Sacrifice R2 G2\nAttack G1N Y3\nAttack G1N Y3\n\n33) wil: Move G3 Wil Y3a\n\n34) Marmalade: Sacrifice Y2 Floob\nMove G1 Y3 Wil\nMove G1 Y3 Wil\nCatastrophe Wil G\n\n35) wil: Move G3 Y3a Wil\n\twil: oops\n\n36) Marmalade: Trade B2 R2 Marmalade\n\n37) wil: Build B2 Phooey\n\n38) Marmalade: Move B3 Floob Y3a\n\n39) wil: Discover R1 Y3a Y2 Y2\n\n40) Marmalade: Build R2 Marmalade\n\twil: got behind and on the run yet agin....\n\n41) wil: Build G1 Wil\n\tMarmalade: I find that really interesting about Homeworlds - one mistake, or less-than-efficient move can have consequences for several turns after.\r\n\r\nI still haven&#39;t worked out how you play the mid-to-end game, but I can see how you can gain an advantage in the early game (even if that&#39;s by watching someone beat me)\n\n42) Marmalade: Trade R2 Y2 Marmalade\n\n43) wil: Move G1 Wil Y3 Y3\n\n44) Marmalade: Build R2 Marmalade\n\twil: absolutely agree..only i don&#39;t appear to be learning...\n\n45) wil: Build G1 Wil\n\tMarmalade: See, this is where I flounder - I&#39;ve clearly gained an advantage in ships, but I don&#39;t know how to exploit it yet.\n\n46) Marmalade: Sacrifice Y2 Marmalade\nMove B3 Y3 Wil\nMove B3 Y3a Wil\n\n47) wil: Sacrifice G3 Wil\nBuild R2 Y2\nBuild R3 Wil\nBuild R3 Wil\nCatastrophe Wil R\n\twil: beware thespeech..... i missed the take one you get back two scenario yet again...\n\n48) Marmalade: Sacrifice R2 Marmalade\nAttack G1N Wil\nPass\n\tMarmalade: I wasn&#39;t bluffing earlier - I couldn&#39;t see a way forward, then it just fell into place. Thanks for the game again.\n\twil: Someday I hope to actually challenge you.\n\n\nHomeworlds Online (SDG# 24299)\nVariants: &quot;Hard time&quot;\nStarted: 2013.8.26, Ended: 2013.10.2\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld Y2 G1 B3\n\twil: lamb walking into slaughter agin....mutton for punishment\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tSilentTitan: no....no.. you had me on that last game and I timed out.... I apologize for that. I have been insanely busy getting jobs leaving jobs.. hopefully it&#39;s all going to slow down a bit in about a week.\r\n\r\n\n\n3) wil: Build B1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n\twil: hope all goes well on the work search...\n\n5) wil: Discover B1 Wil G3 G3\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) wil: Build B1 Wil\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Build B2 G3\n\n10) SilentTitan: Trade B2 Y2 Silenttitan\n\n11) wil: Trade B2 Y2 G3\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) wil: Build B2 Wil\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n15) wil: Trade B2 R2 Wil\n\n16) SilentTitan: Build B2 Sol\n\n17) wil: Discover B1 Wil Y3 Y3\n\n18) SilentTitan: Trade B1 Y1 Sol\n\n19) wil: Build B1 Wil\n\n20) SilentTitan: Trade B2 R2 Sol\n\n21) wil: Build B2 Wil\n\n22) SilentTitan: Build Y1 Sol\n\n23) wil: Trade B3 G3 Wil\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n25) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Wil\n\n26) SilentTitan: Discover Y1 Sol B3 Tic\n\n27) wil: Trade B3 G3 Y3\n\n28) SilentTitan: Build G2 Silenttitan\n\twil: simply amazing how differently these games all play out.\n\n29) wil: Build B3 G3\n\n30) SilentTitan: Discover Y1 Sol R3 Tac\n\tSilentTitan: Yes it is\n\n31) wil: Trade B3 G3 G3\n\n32) SilentTitan: Discover Y2 Silenttitan R1 Toe\n\n33) wil: Build B3 G3\n\n34) SilentTitan: Move Y2 Toe Tic\n\n35) wil: Trade B3 R3 G3\n\n36) SilentTitan: Move R2 Sol Silenttitan\n\n37) wil: Move R3 G3 Sol\n\n38) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Tic Wil\nMove Y1 Tac Wil\nDiscover Y1 Sol B3 Toe\n\n39) wil: Build Y3 G3\n\n\n\n\n40) SilentTitan: Trade Y2 G2 Tic\n\n41) wil: Build G2 Y3\n\n42) SilentTitan: Build Y2 Silenttitan\n\n43) wil: Sacrifice G3 Y3\nBuild G3 Y3\nBuild R1 Sol\nBuild R1 Wil\n\n44) SilentTitan: Move Y1 Toe Wil\nCatastrophe Wil Yellow\n\n45) wil: Sacrifice G3 Y3\nBuild G3 Y3\nBuild B3 G3\nBuild Y1 G3\n\n46) SilentTitan: Sacrifice Y3 Silenttitan\nMove G2 Silenttitan Wil\nMove G1 Silenttitan Wil\nMove G2 Tic Wil\nCatastrophe Wil Green\n\n\twil: have you any idear what a relief that is you finally blew that up??\n\tSilentTitan: Bugging you was it?\n\tSilentTitan: Ok... So I believe this is checkmate.... I don&#39;t believe you can do anything to stop it.  my next move is:\r\n\r\nSacrifice Y3 Silenttitan\r\nmove g2 silenttitan wil\r\nmove g1 silentttian wil\r\nmove g2 tic wil\r\ncatastrophe wil green\r\n\r\nyou can undo your last move and see if there is anything you can do.  I did want you to be aware of what I was going to do before I did it .... because it&#39;s hard to see what happened after it happens.\r\n\r\n\n\tSilentTitan: nevermind.... I found an issue\n\tSilentTitan: turns out you could sac your y3 and move the three blue ships in your homeworld to kill the Tic system and that would have taken my third green away so I would not have been able to cat your homeworld.  \n\twil: argghh...I missed it.   So in reality I didn&#39;t start another game while we were in one...I was out and didn&#39;t realize it...I was looking elsewhere and didn&#39;t see that...nice play, thanx \n\nHomeworlds Online (SDG# 24447)\nVariants: &quot;Hard time&quot;\nStarted: 2013.9.3, Ended: 2013.9.18\nParticipants: wil (S), shmil1 (N)\nWinner: wil\n\n1) shmil1: Homeworld R3 G2 B3\n\n2) wil: Homeworld G2 Y1 B3\n\n3) shmil1: Build B1 Shmil1\n\twil: thank you for the game!\n\n4) wil: Build B1 Wil\n\tshmil1: i didn&acute;t play for a while. looking forward...\r\n\n\n5) shmil1: Trade B1 Y1 Shmil1\n\n6) wil: Discover B1 Wil G3 G3\n\n7) shmil1: Build Y1 Shmil1\n\n8) wil: Build B1 G3\n\n9) shmil1: Build Y2 Shmil1\n\n10) wil: Build B1 Wil\n\n11) shmil1: Discover Y2 Shmil1 G1 Zelena1\n\n12) wil: Build B2 G3\n\n13) shmil1: Build Y2 Zelena1\n\n14) wil: Trade B2 Y2 G3\n\n15) shmil1: Sacrifice Y2 Zelena1\nMove Y2 Zelena1 G3\nMove Y2 G3 Wil\n\n16) wil: T B3 R3 Wil\n\n17) shmil1: Build Y2 Wil\n\twil: wow...what have I done...nice move you scurvy dog!!\n\n18) wil: Build Y3 G3\n\twil: This could very well be a record loss for me!\n\n19) shmil1: Trade B3 G3 Shmil1\n\n20) wil: Discover Y3 G3 G1 G1\n\n21) shmil1: Discover Y1 Shmil1 G1 Malazelena\n\n22) wil: Build Y3 G1\n\n23) shmil1: Discover Y1 Malazelena B3 Modra\n\n24) wil: Build Y3 G3\n\n\n25) shmil1: Move Y1 Modra Wil\nCatastrophe Wil Y\n\n26) wil: Build B2 G3\n\n27) shmil1: Move Y1 Shmil1 G1\n\n28) wil: Sacrifice Y2 G3\nMove Y3 G1 Shmil1\nMove Y3 G1 Shmil1\n\n29) shmil1: Attack Y3 Shmil1\n\n30) wil: Sacrifice R3 Wil\nAttack G3 Shmil1\nAttack Y3 Shmil1\nPass\n\n\twil: the ole you take one, I take two has been used against me half a dozen times and I&#39;ve finally learned how to get through it.\n\nHomeworlds Online (SDG# 24436)\nVariants: &quot;Hard time&quot;\nStarted: 2013.9.6, Ended: 2013.9.9\nParticipants: SilentTitan (S), Marmalade (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 23909)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.9.10, Ended: 2013.11.9\nParticipants: wil (S), Marmalade (N), Aristos (E)\nWinner: wil\n\n1) Marmalade: Homeworld Y1 G2 B3\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) wil: Homeworld R3 B1 G3 Wil\n\n4) Marmalade: Build B1 Marmalade\n\twil: Well welcome to the fray!  I didn&#39;t like the four way because two people were inherently 1 star away...so glad you all started this one up...it is my first time in a three way battle for the universe and I intend to enjoy annihilation...\n\n5) Aristos: Build Y1 Aristos\n\n6) wil: Build G1 Wil\n\tAristos: I&#39;ve only played one previous more-than-two-player game, so this will be novel -- especially as that last one ended in a &quot;withdraw due to failure to play in time&quot; by two of my three opponents.\n\twil: yeah....that sucks...can&#39;t find time to make a move in 5 days??  watsup widat?\n\n7) Marmalade: Build B1 Marmalade\n\n8) Aristos: Build Y1 Aristos\n\n9) wil: Trade G1 B1 Wil\n\n10) Marmalade: Discover B1 Marmalade G3 Bigpointything\n\n11) Aristos: Discover Y1 Aristos Y1 Spark\n\n12) wil: Build B2 Wil\n\n13) Marmalade: Build B2 Bigpointything\n\n14) Aristos: Build Y2 Aristos\n\n15) wil: Trade B2 Y2 Wil\n\n16) Marmalade: Build B2 Marmalade\n\n17) Aristos: Trade Y2 B2 Aristos\n\twil: oops....just about killeded myselfish\n\tMarmalade: heehee\n\n18) wil: Build Y2 Wil\n\n19) Marmalade: Trade B2 Y2 Marmalade\n\n20) Aristos: Trade Y1 R1 Aristos\n\n21) wil: Discover B1 Wil G2 G2\n\n22) Marmalade: Trade B2 R2 Bigpointything\n\tAristos: As I said, this is my first multiplayer game... I find myself having trouble contemplating moves that Wil would never play against me 1-on-1 because it would give me too much advantage, but because I&#39;m not the next player are fine because Marmalade takes advantage instead of me.  Tricky.\n\twil: you underestimate my stupidity...\n\n23) Aristos: Discover B2 Aristos G1 Ping\n\n24) wil: Build B2 G2\n\tAristos: You named a star system G2? That&#39;s just evil. At least it is a green size 2 star. Had you named a Y3 as G2... hm... as a strategy, that&#39;s worth considering... :-)\n\n25) Marmalade: Build B2 Bigpointything\n\n26) Aristos: Build Y1 Aristos\n\twil: ah...I do it out of convenience...evil is making us type some long convoluted made up name for star systems...but i definetly like the idear of naming them what they are not...you&#39;ve put it out in the universe expect it in a star near you soon!   Btw...I was in one 4 person game and it was PAINFUL how slow play went and the game eventually died...I absolutely appreciate the responsiveness of you both...it makes it fun.  Gotta find someone to make an app, I&#39;d be blown away to see this in real time.\n\n27) wil: Trade B2 R2 G2\n\tMarmalade: This is the longest-lasting multiplayer game I&#39;ve had on this site...\n\twil: Wow, that is awful...14 moves in 9 days and that is the longest??\n\n28) Marmalade: Trade B2 Y2 Bigpointything\n\n29) Aristos: Move Y1 Aristos Ping\n\tMarmalade: Yep, so far they&#39;ve all been abandoned 3-4 moves in.\n\n30) wil: Move Y2 Wil G2\n\n31) Marmalade: Build Y3 Bigpointything\n\n32) Aristos: Build Y3 Ping\n\twil: Well we&#39;ve got playas here this time....we is rollin!  Star systems building and expanding.\n\n33) wil: Build Y3 G2\n\n34) Marmalade: Build B2 Bigpointything\n\n35) Aristos: Build B2 Ping\n\twil: you all are so sweet, you shared and left me one!\n\n36) wil: Trade Y2 B2 Wil\n\n37) Marmalade: Discover B2 Bigpointything G2 Floop\n\tAristos: We aim to please. \n\n38) Aristos: Build Y2 Aristos\n\n39) wil: Build B3 G2\n\tAristos: I&#39;m trying to figure out how afraid to be of BigPointyThing. In a two-player game, I&#39;d have to worry about his those yellow ships jumping into my homeworld or into Ping in short order, but in the three-player, it seems like either move would leave Marmalade and me totally at the mercy of wil. Weird balance of power. \n\n40) Marmalade: Build B3 Bigpointything\n\tMarmalade: I&#39;m having the same issue. It&#39;s a lot harder to judge this in free-for-all. I suspect that Homeworlds multiplayer is best with the sinister variant (i.e., attack left), but we&#39;ll see how this goes.\n\twil: BUUWAAHHAAAHAAAA\n\n41) Aristos: Sacrifice Y2 Aristos\nMove Y1 Spark G2\nMove Y1 Ping G2\nCatastrophe G2 Yellow\n\twil: I&#39;m actually just totally confused...  I enjoy being able to play with you two...hope I can put up a good game.  I think I&#39;ll realy have to set this one up at home.   I say however it turns out, we reboot it switching homeworlds and keep playing the same game from different seats to see the variances...\n\n42) wil: Trade B3 Y3 G2\n\tAristos: Ok. You both took B3s without leaving one for me. Therefore, one of you must suffer. I will either remove all yellows in G2 or all yellows in BigPointyThing. Please make your case as to why you are the lesser threat and I need to go after your opponent. You have a couple hours, maybe even until dawn, before I flip a coin.\n\n43) Marmalade: Build B3 Floop\n\tAristos: Decided not to wait... Finally decided to take out G2 on the grounds that wil has no yellow remaining so the loss was more devastating. If I am going to &quot;use up&quot; my fire power on one opponent, it seemed to make the most sense to go after the one that would be most devastated. Sorry, wil. I just felt threatened by two strong opponents. I may pay for this zealotry... I&#39;ve left Marmalade rather well positioned. \n\n44) Aristos: Build R1 Aristos\n\n45) wil: Build Y1 G2\n\n46) Marmalade: Trade B2 Y2 Floop\n\n47) Aristos: Discover B2 Ping G3 Pong\n\n48) wil: Build B2 G2\n\n49) Marmalade: Move B3 Floop Pong\n\n50) Aristos: Build Y1 Ping\n\twil: this has got to be the most responsive/active game I&#39;ve been in...love participation.\n\n51) wil: Trade B2 Y2 Wil\n\n52) Marmalade: Trade B3 R3 Pong\n\tAristos: Why, hello there, Marmalade. Glad we can *share* this Pong system. As a G3, it is certainly big enough for both of us. RIGHT?\n\n53) Aristos: Sacrifice Y3 Ping\nMove B2 Ping Pong\nMove B2 Pong Marmalade\nMove B2 Pong Marmalade\nCatastrophe Marmalade Blue\n\twil: I was thinking of joining you....still may...\n\n54) wil: Build G1 Wil\n\tMarmalade: Phenomenal Cosmic Triangles... Itty Bitty Living Space.\n\tAristos: Sacrifice y3 Ping\r\nmove b2 Ping g2\r\nmove b2 g2 Marmalade\r\nmove b2 Pong Marmalade\r\ncatastrophe Marmalade Blue\n\n55) Marmalade: Move B3 Bigpointything Marmalade\n\tAristos: Typed in the wrong slot. \r\n\r\nI attacked Wil earlier. Now, I balanced the scales of justice... I took out the same number of ships, even. \r\n\r\nWhat was that about itty bitty living spaces? :-) \n\n56) Aristos: Trade R1 B1 Aristos\n\twil: I&#39;m not quite understanding the logic...you knocked out two of my ships at a cost of 3 of yours, spent another three to knock out two of Marmalades...has the aggresiveness paid off?\n\twil: I&#39;m not quite understanding the logic...you knocked out two of my ships at a cost of 3 of yours, spent another three to knock out two of Marmalades...has the aggresiveness paid off?\n\n57) wil: Discover Y1 G2 G1 G1\n\tMarmalade: &quot;Never interrupt your enemy when he is making a mistake.&quot;\n\tAristos: Has the aggressiveness paid off? I don&#39;t know. I&#39;m still figuring out all the levers that I have to play with in a 3-way game. \n\n58) Marmalade: Build B2 Marmalade\n\twil: I have no enemies here.   I have fellow gamers exploring new territory...for us....once we get the hang of it....\n\n59) Aristos: Trade Y3 G3 Aristos\n\n60) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G3 Wil\nBuild R1 G2\n\n61) Marmalade: Build B2 Bigpointything\n\n62) Aristos: Build R1 Aristos\n\twil: What are the levers you are thinking are here and are not in binary?   Or what is it you are calling levers in binary?  bluebird...factory....etc??\n\twil: we are at 30 moves the equivalaent of 20 in a binary game...\n\n63) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G2\nBuild Y3 G1\n\n64) Marmalade: Build Y3 Floop\n\tAristos: Levers? Well, take a look at my position. It&#39;s a disaster in a two player game. But neither of you can really afford to commit enough forces to truly knock me out of the game without leaving yourself too weak once it is a two-player match. Oh, you could hit me, sure, just like I&#39;ve hit both of you, but taking me out requires a bigger slice of forces. I find that interesting. It means that in a three-player game, there are tactical options that are suicidal in a two-player game -- which I would have guessed before the game started, but I am surprised how far I have pushed that. \n\n65) Aristos: Move Y1 Ping Aristos\n\n66) wil: M B1 G2 G1\n\n67) Marmalade: Discover B1 Bigpointything G1 Fluff\n\n68) Aristos: Move R1 Aristos Fluff\n\n69) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 G2\nBuild B3 G1\n\n70) Marmalade: Build B3 Fluff\n\n71) Aristos: Build R1 Fluff\n\n72) wil: Move R1 G2 G1\n\n73) Marmalade: Move Y2 Bigpointything Fluff\n\n74) Aristos: Attack B1N Fluff\n\n75) wil: Build R2 G1\n\n76) Marmalade: Sacrifice R2 Bigpointything\nAttack R1E Fluff\nAttack R1E Fluff\n\tAristos: Why did I attack? Because it was pretty much the only move I had... all others were suicide. \n\tAristos: In case you didn&#39;t know (because I didn&#39;t and had to go find out) in a multiplayer game, to attack you have to specify which opponent&#39;s ship. So the command I just did was:\r\n     attack b1N Fluff\r\nThe &quot;N&quot; specifies &quot;North&quot;.\n\n77) Aristos: Build R2 Aristos\n\n78) wil: Discover B3 G1 R3 R3\n\n79) Marmalade: Attack B1E Fluff\n\n80) Aristos: Pass\n\twil: Now we know, you just like to attack.  But for future reference, it is at the top of our page... &quot;the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player&#39;s seat designation (eg. G2S, B1E).&quot;\n\n81) wil: Move R1 G1 Pong\n\tAristos: :-) Missed seeing that. Thanks. \n\n82) Marmalade: Sacrifice Y3 Floop\nMove R3 Pong Floop\nMove R1 Fluff Aristos\nMove R1 Fluff Aristos\nCatastrophe Aristos Red\n\tAristos: Ok... at some point your two massive armies are going to have to actually move against each other. Perhaps you&#39;ll kill me along the way... regardless, I&#39;m going to just sit here and watch for a bit.\n\n83) Aristos: Build Y3 Aristos\n\twil: You will have to pay for that front row seat..\n\n84) wil: Move Y1 G2 Pong\n\n85) Marmalade: Move R3 Floop Pong\n\n86) Aristos: Trade Y1 R1 Aristos\n\n87) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Pong\nBuild R1 Pong\nCatastrophe Pong R\n\n88) Marmalade: Trade B2 R2 Marmalade\n\n89) Aristos: Build Y1 Aristos\n\n90) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 R3\nBuild R1 G1\n\n91) Marmalade: Build R1 Marmalade\n\n92) Aristos: Discover Y3 Aristos R1 Flash\n\n93) wil: Move G1 Wil G2\n\n94) Marmalade: Move R2 Marmalade Pong\n\twil: The way these games play out sure is interesting...you always have to look behind your back...I like it a lot better than four players and while it will get to two at sometime, I have a feeling that when it makes it to two....the game is essentially over.   As I see it the game is to not anihilate another, but be in a position to take over their homeworld and quickly take over one or more of their star systems.\n\twil: I wish there was an &#39;online&#39; light on our names, so we would know who is there and if a move was to happen to hang around..\n\n95) Aristos: Move Y3 Flash Pong\n\tAristos: Wil: I started with a similar hypothesis, but I&#39;m not sure it is supported by this game.\r\n\r\nThat hypothesis suggests that at some point, one player will make a tragic mistake and you just need to have an armada built up so you can trivially take advantage of that mistake and attack your remaining opponent in a single turn. Let&#39;s call it the &quot;lurker hypothesis&quot;. \r\n\r\nMy current hypothesis is that I think *both* of you have a short term goal to remove me from the board, rather than waiting for me to make a mistake. After that, you&#39;ll then play a robust two-player game. Call it the &quot;joint strike hypothesis&quot;. \r\n\r\nHere&#39;s my argument...\r\n\r\nI attacked both of you early on. That action was predicated on the idea that neither of you could afford to actually take me out without leaving yourselves vulnerable. I thought maybe an early strike would put me in a beneficial position later on. \r\n\r\nClearly it did not leave me in a good position. I was wrong there. But I am still alive because it is expensive for you to take me out. That would seem to support the lurker hypothesis.\r\n\r\nBut in the current position, although I have very small chance of winning, I have a very high chance of playing kingmaker. I inject a lot of chaos into the game precisely because I have no clear path to victory, which is going to lead me to make moves that are unusual if only because they are unexplored. That&#39;s going to continually jerk around your strategies. My ships mean that there are moves that Wil cannot take and moves that Marmalade cannot take -- but which limitations are more extreme are totally variable at my whim. And unless I&#39;m missing something, I really don&#39;t have any reason to accept any diplomacy from either of you -- if I *actively* help one destroy the other, I definitely lose the game. If I tilt the balance such that one of you decides to attack the other and you both lose strength, that&#39;s the only shot I have at winning. \r\n\r\nSo in a game between Alice, Bob and Chuck, I think the best strategy is for Alice to quickly identify the weakest player (Chuck) and then ally with the other opponent (Bob) to take Chuck out. The easiest way to do this without creating a formal alliance is for Alice to make an attack on Chuck that makes it dead easy for Bob to deliver the killing blow. \r\n\r\nIn short, I have no reason to help you, and I am a chaotic force on the board that might swing for or against you. I disrupt your strategy versus the opponent that really matters. So it makes most sense for you to both be setting yourselves up to take me out, and if you watch each other&#39;s moves on the assumption that that is the goal, you can probably coordinate the strike without ever formally negotiating the alliance. \n\n96) wil: Move Y1 G1 Pong\n\twil: I don&#39;t know...being a relative novice to the entire game this one has a twist.  I surely don&#39;t see anyone being able to wipe out anyone ina single move after a split...I also don&#39;t see a reason for any alliance....I see it as winner take all...what is the bennie of helping someone only to come in second?\n\n97) Marmalade: Sacrifice Y3 Bigpointything\nMove B2 Bigpointything Fluff\nMove B1 Fluff R3\nMove B2 Fluff R3\nCatastrophe R3 Blue\n\tMarmalade: If it&#39;s worth anything for your analysis - your early attacks were somewhat wasteful, so I saw an opportunity to get a step up the ladder. Then, for a few reasons, but mostly my fault, this allowed Wil to take the advantage from me.\r\n\r\nI don&#39;t have a short-term goal of removing you, so much as there was a tactical opening to do so.\n\twil: Yes currently scary for me..I&#39;m the worst player of the three, and much more used to seeing an uphill battle by 30 moves into the game.   The whole king maker concept I still don&#39;t understand....if you were to continue waiting and watching when one of us attacks you&#39;d be in a position to be even up due to losses and risks during the attack.\n\n98) Aristos: Build Y3 Aristos\n\n99) wil: Build G3 G2\n\n100) Marmalade: Move Y2 Fluff Pong\nCatastrophe Pong Y\n\tMarmalade: Feeling the need to do something dramatic, or else this is going to end very poorly for me :)\n\n101) Aristos: Discover G3 Aristos Y1 Twinkle\n\n102) wil: Trade R2 Y2 G1\n\n103) Marmalade: Build R1 Marmalade\n\n104) Aristos: Move G3 Twinkle G2\nCatastrophe G2 Green\n\n105) wil: Build R2 G1\n\n106) Marmalade: Build R2 Pong\n\tAristos: Man, Wil, you do know how to tempt me. I lose one G3 ship to take out six of your ships in the G2 system? I was expecting you to move a green ship somewhere. Now I&#39;m not sure whether I should attack or not.  \n\n107) Aristos: Build R2 Aristos\n\tAristos: It cost me all of my green tech, but I just couldn&#39;t see any way that destroying *6* ships with one of mine was a bad trade. \n\n108) wil: Discover R2 G1 Y3 G3\n\n109) Marmalade: Discover R1 Marmalade Y3 Moof\n\n110) Aristos: Discover R2 Aristos Y1 Blip\n\n111) wil: Build R3 G1\n\n112) Marmalade: Trade Y2 G2 Marmalade\n\n113) Aristos: Build R3 Aristos\n\n114) wil: Trade R3 G3 G1\n\n115) Marmalade: Trade B3 G3 Fluff\n\n116) Aristos: Discover R1 Aristos G1 Glint\n\n117) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 G1\nBuild R3 G3\n\twil: Yeah...my stupidity allowed you to get back from your attacks earlier...\n\n118) Marmalade: Build Y1 Floop\n\n119) Aristos: Discover R2 Blip Y2 Shimmer\n\n120) wil: Move R2 G3 Glint\n\n121) Marmalade: Move Y1 Floop G1\n\n122) Aristos: Move Y3 Aristos Glint\n\n123) wil: Sacrifice Y2 G1\nMove R2 Glint Moof\nDiscover Y3 G1 B3 B3\n\n124) Marmalade: Build B1 Marmalade\n\n125) Aristos: Move Y3 Glint Pong\n\twil: attacked on two fronts...you guys ganging up??\n\twil: ok, one was defensive...\n\n126) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild Y2 B3\n\n127) Marmalade: Sacrifice B1 Marmalade\nTrade R2 B2 Pong\n\tMarmalade: I do wonder how likely this is to simply stalemate. It&#39;s a problem in any free-for-all multiplayer game, of course, but I wonder if the simplicity of Homeworlds doesn&#39;t tend towards that outcome, given good play.\r\n\n\twil: with a three way here, I don&#39;t see a stalemate...there will be a moment where one does pounce and the other take advantage the two on one will build both, the loser making some last ditch effort to be kingmaker as they die out...\n\n128) Aristos: Sacrifice R2 Shimmer\nAttack R2N Pong\nAttack B2N Pong\n\n129) wil: Attack Y1N G1\n\n130) Marmalade: Build Y2 Floop\n\n131) Aristos: Build R2 Pong\n\n132) wil: Move R3 G1 Floop\n\n133) Marmalade: Sacrifice Y2 Floop\nMove Y2 Floop Fluff\nMove R1 Moof Fluff\n\n134) Aristos: Build Y2 Pong\n\n135) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Floop\nBuild B1 G1\n\twil: No matter how this works out...it has been a great game...I moved just before I went out to dinner, came home, went out to the garage and had a beer with the neighborhood boys and come back and have a move to make!!  Amazing.  Earlier you were saying you hadn&#39;t got so far in a multiplayer game...looks like to me this is going to go over a hundred moves.  And I look forward to them.\n\n136) Marmalade: Build B2 Marmalade\n\n137) Aristos: Build B2 Pong\n\twil: ah....I found such a nice star system...I thought it had inhabitants, but it seems they must have just left it for me...the coffee is still hot.\n\n138) wil: Move B1 G1 G3\n\n139) Marmalade: Move R1 Fluff Floop\n\n140) Aristos: Sacrifice Y2 Pong\nMove R1 Glint Floop\nDiscover R2 Pong Y2 Zip\nCatastrophe Floop Red\n\tAristos: Sooo many times in this game I have wished I played after Wil instead of before...\n\twil: we play again we can reverse orders....so each of you can have a fair shake at my stupid moves!\n\n141) wil:\nBuild B2 G1\n\n142) Marmalade: Sacrifice B2 Marmalade\nTrade G3 B3 Fluff\nTrade Y2 R2 Fluff\n\n143) Aristos: Build Y2 Pong\n\tAristos: It&#39;s not about your mistakes. It&#39;s about the timing holes between your moves and Marmalade&#39;s. Moves that are great for me right after Wil moves are no longer advantageous after Marmalade moves. You two do a great job of defending each other&#39;s assets. \n\tAristos: (That&#39;s not an accusation of collaboration... just the way the plays have worked out.)\n\n144) wil: Discover G1 Wil B2 R3\n\n145) Marmalade: Build R1 Fluff\n\n146) Aristos: Trade B2 G2 Pong\n\n147) wil: Sacrifice Y2 B3\nMove B1 G1 Aristos\nMove B2 G1 Aristos\nCatastrophe Aristos B\n\n148) Aristos: Sacrifice G2 Pong\nBuild R1 Aristos\nBuild R3 Pong\n\n149) wil: Sacrifice Y2 Wil\nMove R2 Moof Aristos\nMove R1 G1 Aristos\nCatastrophe Aristos R\n\n150) Aristos: Sacrifice Y2 Pong\nMove Y3 Pong Aristos\nMove R3 Pong Aristos\n\n151) wil: Move Y3 B3 Fluff\n\twil: Everyone ok?   Not nagging but playing had a lull here and just making sure folks are alright.\n\twil: 77th move coming up....\n\n\tAristos: Well played... but there&#39;s no way I&#39;m coming back from that. I was ok as long as you had another opponent to deal with. ;-) \n\nHomeworlds Online (SDG# 24472)\nVariants: &quot;Hard time&quot;\nStarted: 2013.9.10, Ended: 2013.10.29\nParticipants: SilentTitan (S), Aristos (N)\nWinner: SilentTitan\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tAristos: So, we meet once again. I have fended off a few opponents since our last contest... perhaps I have learned something? In any case, good game!\n\tSilentTitan: I however have been playing chase.  But I am glad to have a challenger.  Good game to you as well.\n\n3) Aristos: Build Y1 Aristos\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Aristos: Trade Y1 G1 Aristos\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Aristos: Discover G1 Aristos Y1 Spark\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Aristos: Build G1 Spark\n\n10) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n11) Aristos: Move G1 Spark Sol\n\n12) SilentTitan: Build G2 Silenttitan\n\tAristos: Dang it. Sequences that work just fine against other players never work out when playing against you. And for some reason, I just can&#39;t see more than one move down the line in your games. \n\n13) Aristos: Build G2 Spark\n\n14) SilentTitan: Discover G2 Silenttitan G3 Soul\n\tSilentTitan: No battleplan survives meeting with the enemy.\n\n15) Aristos: Build Y1 Aristos\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) Aristos: Build G2 Sol\n\n18) SilentTitan: Sacrifice G2 Soul\nBuild G2 Sol\nBuild G3 Silenttitan\nCatastrophe Sol Green\n\n19) Aristos: Build Y2 Aristos\n\n20) SilentTitan: Trade G3 R3 Silenttitan\n\n21) Aristos: Trade Y3 R3 Aristos\n\n22) SilentTitan: Discover Y1 Silenttitan G3 Tic\n\n23) Aristos: Build G1 Spark\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Tic\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n25) Aristos: Discover Y1 Aristos G1 Pong\n\n26) SilentTitan: Discover Y3 Silenttitan Y3 Sol\n\n27) Aristos: Discover G1 Spark B3 Pop\n\n28) SilentTitan: Trade Y2 G2 Silenttitan\n\n29) Aristos: Build Y2 Pong\n\n30) SilentTitan: Sacrifice Y1 Tic\nDiscover Y3 Sol R1 Tac\n\n31) Aristos: Build R1 Aristos\n\n32) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Tac\nBuild Y3 Silenttitan\n\n33) Aristos: Build G2 Pop\n\n34) SilentTitan: Move R3 Silenttitan Pop\n\n35) Aristos: Sacrifice Y2 Pong\nMove G2 Pop Spark\nMove G2 Spark Tic\n\n36) SilentTitan: Sacrifice Y2 Tic\nMove R3 Pop Spark\nDiscover Y1 Tac B2 Toe\n\n37) Aristos: Build G2 Tic\n\n38) SilentTitan: Attack G2 Spark North\n\n39) Aristos: Sacrifice G2 Tic\nBuild G2 Spark\nBuild G3 Pop\n\n40) SilentTitan: Sacrifice G2 Spark\nBuild R1 Spark\nBuild Y2 Tac\n\n41) Aristos: Trade R1 B1 Aristos\n\n42) SilentTitan: Attack G2 Spark North\n\n43) Aristos: Build Y2 Pong\n\n44) SilentTitan: Move Y3 Silenttitan Pop\n\n\tAristos: Good game. Thanks.\n\nHomeworlds Online (SDG# 24476)\nVariants: &quot;Hard time&quot;\nStarted: 2013.9.11, Ended: 2013.9.25\nParticipants: goulo (S), MagicJohn (N)\nWinner: goulo\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\tgoulo: hi, have fun!\n\n2) goulo: Homeworld R3 B1 G3\n\tMagicJohn: backatcha...\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) goulo: Build G1 Goulo\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) goulo: Build G1 Goulo\n\n9) MagicJohn: Trade G1 R1 Magicjohn\n\n10) goulo: Build G1 Goulo\n\n11) MagicJohn: Trade R1 B1 Magicjohn\n\n12) goulo: Trade G3 B3 Goulo\n\n13) MagicJohn: Build B2 Magicjohn\n\n14) goulo: Build B2 Goulo\n\n15) MagicJohn: Discover B2 Magicjohn R3 Shelob\n\n16) goulo: Trade B2 Y2 Goulo\n\n17) MagicJohn: Build B2 Magicjohn\n\n18) goulo: Discover Y1 Goulo G2 Smeraldego\n\n19) MagicJohn: Discover B1 Magicjohn Y3 Gimli\n\n20) goulo: Discover Y1 Smeraldego B3 Safirego\n\n\tMagicJohn: My wife is still quite ill and I think I need to spend my efforts helping her to recover. I&#39;ll get back to gaming when (hopefully) that occurs. Take care and thanks for the game. \r\nMJ\n\tgoulo: Oh no! I&#39;m sorry to hear that! I wish you and your wife the best.\n\nHomeworlds Online (SDG# 24480)\nStarted: 2013.9.19, Ended: 2014.1.19\nParticipants: wil (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R2 B3 G3\n\n2) wil: Homeworld G2 Y1 B3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\twil: I look forward to it...I&#39;ve been learning by getting slaughtered by excellent players...looks like I got another whipping coming!\n\n4) wil: Build B1 Wil\n\tMandrel: You&#39;re very kind, but I&#39;m not so sure that will be the outcome!\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) wil: Trade B1 Y1 Wil\n\n7) Mandrel: Build Y2 Mandrel\n\n8) wil: Build Y2 Wil\n\n9) Mandrel: B Y2 Mandrel\n\twil: I can see i am in trouble already!\n\n10) wil: Trade Y1 R1 Wil\n\n11) Mandrel: D Y2 Mandrel B1 Loop\n\n12) wil: Build B1 Wil\n\n13) Mandrel: B G1 Mandrel\n\n14) wil: Build R1 Wil\n\n15) Mandrel: B G1 Mandrel\n\n16) wil: Discover Y2 Wil G3 G3\n\n17) Mandrel: M G1 Mandrel Loop\n\n18) wil: Move R1 Wil G3\n\n19) Mandrel: T G1 R1 Mandrel\n\n20) wil: Build R2 Wil\n\n21) Mandrel: M R1 Mandrel Loop\n\n22) wil: Move B1 Wil G3\n\n23) Mandrel: Build Y1 Mandrel\n\n24) wil: Build Y3 G3\n\n25) Mandrel: B Y3 Loop\n\n26) wil: Discover Y2 G3 G1 G1\n\n27) Mandrel: D Y1 Mandrel G1 Solution\n\n28) wil: Build Y3 G3\n\n29) Mandrel: B G2 Mandrel\n\n30) wil: Trade Y3 R3 G3\n\n31) Mandrel: Build Y3 Solution\n\n32) wil: Move R3 G3 G1\n\n33) Mandrel: S G3 Mandrel\nBuild G2 Loop\nBuild G3 Mandrel\nB G3 Mandrel\n\n34) wil: Build B1 G3\n\n35) Mandrel: T G3 B3 Mandrel\n\n36) wil: Trade Y3 G3 G3\n\n37) Mandrel: B Y3 Loop\n\n38) wil: Build R2 G3\n\n39) Mandrel: Build R3 Loop\n\n40) wil: Build R3 G1\n\n41) Mandrel: Sacrifice Y2 Loop\nMove G1 Loop G3\nMove G2 Loop G3\nCatastrophe G3 G\n\n42) wil: Discover R3 G1 B2 B2\n\n43) Mandrel: D Y3 Loop G3 Box\n\n44) wil: Trade R3 G3 B2\n\n45) Mandrel: Build Y2 Box\n\n46) wil: Build G1 B2\n\n47) Mandrel: Discover Y1 Solution R3 Twist\n\n48) wil: Trade R2 G2 Wil\n\n49) Mandrel: S Y3 Loop\nMove Y2 Box Wil\nMove Y3 Box Wil\nMove Y1 Twist Wil\n\n50) wil: Sacrifice R3 G1\nAttack Y3 Wil\nAttack Y2 Wil\nAttack Y1 Wil\n\n51) Mandrel: Build Y3 Solution\nCatastrophe Wil Y\n\n52) wil: Trade G2 R2 Wil\n\twil: the end is nigh...\n\n53) Mandrel: M G2 Mandrel Loop\n\n54) wil: Trade G1 Y1 B2\n\n55) Mandrel: Build G1 Loop\n\n56) wil: Trade R1 Y1 Wil\n\n57) Mandrel: S Y3 Solution\nM G1 Loop Wil\nMove G2 Loop Wil\nMove R3 Loop Wil\n\n\twil: very nice either or...\n\nHomeworlds Online (SDG# 24519)\nStarted: 2013.9.23, Ended: 2013.9.27\nParticipants: JudithTruman (S), AbacusWizard (N)\nWinner: AbacusWizard\n\n1) AbacusWizard: Homeworld B3 R2 G3\n\n2) JudithTruman: Homeworld Y3 B1 G3\n\tJudithTruman: Booyah!\n\n3) AbacusWizard: Build G1 Abacuswizard\n\n4) JudithTruman: Build G1 Judithtruman\n\n5) AbacusWizard: Trade G1 Y1 Abacuswizard\n\n6) JudithTruman: Trade G1 R1 Judithtruman\n\n7) AbacusWizard: Build Y1 Abacuswizard\n\n8) JudithTruman: Build R1 Judithtruman\n\n9) AbacusWizard: Discover Y1 Abacuswizard G1 Konstruktstarr\n\n10) JudithTruman: Discover R1 Judithtruman G2 Fleern\n\n11) AbacusWizard: Build Y1 Konstruktstarr\n\n12) JudithTruman: Build R1 Fleern\n\n13) AbacusWizard: Build Y2 Abacuswizard\n\n14) JudithTruman: Build R2 Judithtruman\n\n15) AbacusWizard: Trade Y2 R2 Abacuswizard\n\n16) JudithTruman: Build R3 Judithtruman\n\n17) AbacusWizard: Move R2 Abacuswizard Konstruktstarr\n\n18) JudithTruman: Trade R3 Y3 Judithtruman\n\n19) AbacusWizard: Build R3 Konstruktstarr\n\n20) JudithTruman: Move Y3 Judithtruman Fleern\n\n21) AbacusWizard: Move R2 Konstruktstarr Fleern\n\n22) JudithTruman: Discover R1 Fleern B1 Apple\n\n23) AbacusWizard: Attack R1 Fleern\n\n24) JudithTruman: Sacrifice R1 Apple\nAttack R2 Fleern\n\n25) AbacusWizard: Build R1 Fleern\n\n26) JudithTruman: Discover R2 Fleern B1 Apple\n\n27) AbacusWizard: Build Y2 Abacuswizard\n\n28) JudithTruman: Sacrifice R1 Judithtruman\nAttack R1 Fleern\n\n29) AbacusWizard: Attack R1 Fleern\n\n30) JudithTruman: Sacrifice R2 Apple\nAttack R1 Fleern\nAttack R1 Fleern\n\n31) AbacusWizard: Build Y2 Konstruktstarr\n\n32) JudithTruman: Discover Y3 Fleern B1 Apple\n\n33) AbacusWizard: Sacrifice Y2 Konstruktstarr\nMove R3 Konstruktstarr Fleern\nMove R3 Fleern Apple\n\n34) JudithTruman: Sacrifice R1 Fleern\nAttack R3 Apple\n\n35) AbacusWizard: Build Y2 Konstruktstarr\n\n36) JudithTruman: Build G1 Judithtruman\n\n37) AbacusWizard: Move Y2 Konstruktstarr Fleern\n\n38) JudithTruman: Build R1 Fleern\n\n39) AbacusWizard: Build Y2 Fleern\n\n40) JudithTruman: Sacrifice G1 Judithtruman\nBuild Y3 Apple\n\n41) AbacusWizard: Sacrifice Y2 Abacuswizard\nMove Y2 Fleern Apple\nMove Y2 Fleern Apple\nCatastrophe Apple Yellow\n\n42) JudithTruman: Trade R2 B2 Judithtruman\n\n43) AbacusWizard: Discover Y1 Konstruktstarr Y2 Dagobah\n\n44) JudithTruman: Build B1 Judithtruman\n\n45) AbacusWizard: Discover Y1 Konstruktstarr G2 Hoth\n\n46) JudithTruman: Trade B2 Y2 Judithtruman\n\n47) AbacusWizard: Build Y2 Hoth\n\n48) JudithTruman: Move Y2 Judithtruman Fleern\n\n49) AbacusWizard: Build Y3 Abacuswizard\n\n50) JudithTruman: Build Y3 Fleern\n\n51) AbacusWizard: Move Y1 Dagobah Judithtruman\n\n52) JudithTruman: Move R1 Fleern Judithtruman\n\n53) AbacusWizard: Build Y2 Hoth\n\n54) JudithTruman: Sacrifice Y3 Fleern\nMove R3 Apple Abacuswizard\nDiscover Y2 Fleern G1 Pear\nMove Y2 Pear Hoth\nCatastrophe Hoth Yellow\n\n55) AbacusWizard: Attack R3 Abacuswizard\n\n56) JudithTruman: Attack Y1 Judithtruman\n\n57) AbacusWizard: Build G1 Abacuswizard\n\n58) JudithTruman: Move Y1 Judithtruman Fleern\n\n59) AbacusWizard: Discover G3 Abacuswizard B1 Appleiie\n\n60) JudithTruman: Build R1 Fleern\n\n61) AbacusWizard: Move R3 Abacuswizard Appleiie\n\n62) JudithTruman: Build G1 Judithtruman\n\n63) AbacusWizard: Build R2 Appleiie\n\n64) JudithTruman: Move G1 Judithtruman Fleern\n\n65) AbacusWizard: Trade R2 Y2 Appleiie\n\n66) JudithTruman: Build B2 Judithtruman\n\n67) AbacusWizard: Build R2 Appleiie\n\n68) JudithTruman: Trade B2 Y2 Judithtruman\n\n69) AbacusWizard: Discover R2 Appleiie B2 Ifruity\n\n70) JudithTruman: Move B1 Judithtruman Fleern\n\n71) AbacusWizard: Move G3 Appleiie Ifruity\n\n72) JudithTruman: Discover R1 Fleern Y1 Froboz\n\n73) AbacusWizard: Move R3 Appleiie Ifruity\n\n74) JudithTruman: Sacrifice G3 Judithtruman\nBuild R2 Froboz\nBuild Y2 Fleern\nBuild Y3 Fleern\n\n75) AbacusWizard: Sacrifice Y2 Appleiie\nMove R3 Ifruity Judithtruman\nMove G3 Ifruity Judithtruman\n\n76) JudithTruman: Sacrifice G1 Fleern\nBuild R3 Judithtruman\n\n77) AbacusWizard: Sacrifice R3 Judithtruman\nAttack Y2 Judithtruman\nAttack R1 Judithtruman\nAttack R3 Judithtruman\n\n\nHomeworlds Online (SDG# 24524)\nVariants: &quot;Hard time&quot;\nStarted: 2013.9.26, Ended: 2013.10.18\nParticipants: wil (S), mneme (N)\nWinner: wil\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: It&#39;s been a while since I last played this.\n\n2) wil: Homeworld B2 R1 G3\n\twil: I look forward to playing...I&#39;ve been at it for a little over 6 months and getting my butt kicked by various folks and hopefully learning along the way.\n\n3) mneme: Build G1 Mneme\n\tmneme: We&#39;ll see.  I do ok.\n\n4) wil: Build G1 Wil\n\tmneme: Although I&#39;ve actually never done small universe.  Playing dangerously?\n\twil: no...instant stupidity....what was I thinkin??\n\n5) mneme: Trade G1 R1 Mneme\n\twil: yikes what have ai wrought??\n\twil: now I am just climbin this ladder so I can get up high enough where people are playing (it has taken since may to climb over all the dead wood that haven&#39;t even signed in for months or years..  so if you want to resign, so I can step up....I won&#39;t complain!!!\n\n6) wil: Trade G1 Y1 Wil\n\tmneme: I think I&#39;ll stick around for a bit longer.  But you can resign if you want.  :-P\n\n7) mneme: Build R2 Mneme\n\n8) wil: Build Y1 Wil\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) mneme: Build R2 Mneme\n\n12) wil: B Y1 Wil\n\n13) mneme: Move R2 Mneme G3\n\n14) wil: Discover Y1 G3 G2 G2\n\n15) mneme: Build Y2 Mneme\n\n16) wil: Build Y2 Wil\n\n17) mneme: Move Y2 Mneme G3\n\n18) wil: Build Y3 G2\n\n19) mneme: Build Y3 Mneme\n\n20) wil: Trade Y2 R2 Wil\n\n21) mneme: Discover R1 Mneme B3 Sapphire\n\n22) wil: Discover R2 Wil Y3 Y3\n\n23) mneme: Sacrifice G3 Mneme\nBuild R2 Sapphire\nBuild R3 Sapphire\nBuild R3 G3\n\n24) wil: Build Y2 Wil\n\n25) mneme: Move Y2 G3 Wil\nCatastrophe Wil Y\n\n26) wil: Build G1 Wil\n\n27) mneme: Trade R2 G2 Sapphire\n\n28) wil: Trade G1 Y1 Wil\n\n29) mneme: Trade Y2 R2 Mneme\n\n30) wil: Build G1 Wil\n\n31) mneme: Build R3 Sapphire\n\n32) wil: Move Y1 G2 G3\n\twil: Yikes...what a mistake that short universe was...and you are walking all over me...\n\n33) mneme: Attack Y1 G3\n\tmneme: Thanks.  And yeah--small universe really magnifies small mistakes, I think.\n\n34) wil: Build Y1 Wil\n\twil: oh....that was foolish...i was moving it to a new star and didn&#39;t realize I walked into my old star...putting blunder on top or errors.\n\n\twil: argghh...I hate it when these end this way...and especially against a good player.  I hope to meet you again sometime.\n\tmneme: Likewise.  The problem is, I&#39;m only in one game at a time, tops, so if I miss the ready signal I&#39;m likely to hard time.  :(\n\twil: \n\twil: That can be solved by playing more often!  I hear you are a wonderful player.  But yeah, as I am in the learning curve I try to be in half a dozen games at a time...so I check in once a day (unless I am outta range for a few days)\n\tmneme: Wow -- from whom?  It, um, is true that when I was in form, I think TwoShort was the only player here who could regularly beat me (and I did take a game from him once :).  It&#39;s just a matter of time management, alas.\n\twil: &quot;The only people I never beat were mneme and two short&quot; I believe was the quote.   Yes, I am afraid I don&#39;t give the game justice yet.  I move rather quickly make a lot of mistakes, but seeing the result of my mistakes and getting taken to the cleaners on a regular basis is assistingthe learning curve...\n\twil: I see you are playing again...I&#39;ve got a standing game up...challenge me if you&#39;d like to whip me appropriately.\n\tmneme: That works.  I tend to play very quickly myself.  I&#39;ve accepted a challenge, so if you&#39;re still playing it&#39;s possible I&#39;ll actually keep up this time.\n\twil: Yup, continuing to try to learn this game!  Challenge me anytime, I prefer to keep half a dozen games going on at once..\n\nHomeworlds Online (SDG# 24456)\nVariants: &quot;Hard time&quot;\nStarted: 2013.10.2, Ended: 2013.11.23\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B2 G3\n\twil: I miss clicked and started another one with ya...and now we&#39;ve got two games...my weak attempt to confuse you...\n\tSilentTitan: LOL.... \n\n2) wil: Homeworld R3 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Build G1 Wil\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) wil: Trade G1 Y1 Wil\n\n9) SilentTitan: Trade Y1 R1 Silenttitan\n\n10) wil: Trade G1 R1 Wil\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: Build R2 Wil\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) wil: Trade R2 B2 Wil\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) wil: Build R2 Wil\n\n17) SilentTitan: Discover G1 Silenttitan R3 Sol\n\n18) wil: Trade R2 G2 Wil\n\tSilentTitan: Just for information sake... I&#39;ll let you know that Mneme and TooShort and the only two people I&#39;ve not managed to beat on the ladder. I&#39;ve played each about 6 or 7 times. \n\tSilentTitan: ...TooShort are...\n\twil: I screwed up at the beginning of the game with mneme...I am almost sure to lose.  unless that is he times out...  I have heard two short is an excellent player.   I like losing to the best, makes me feel better...\r\n\n\n19) SilentTitan: Trade R2 Y2 Silenttitan\n\n20) wil: Build R2 Wil\n\n21) SilentTitan: Build R2 Silenttitan\n\n22) wil: Discover R2 Wil G1 G1\n\n23) SilentTitan: Move Y2 Silenttitan Sol\n\n24) wil: Trade G2 Y2 Wil\n\n25) SilentTitan: Trade R1 B1 Silenttitan\n\n26) wil: Build G2 Wil\n\n27) SilentTitan: Build B1 Silenttitan\n\n28) wil: Discover G2 Wil Y1 Y1\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n30) wil: Move Y1 Wil G1\n\n31) SilentTitan: Discover Y1 Silenttitan Y3 Sole\n\twil: very nice\n\n32) wil: Build G2 Wil\n\n33) SilentTitan: Move B1 Silenttitan Sol\n\n34) wil: Move B2 Wil Y1\n\n35) SilentTitan: Build G2 Sol\n\n36) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y1\nBuild R1 G1\n\n37) SilentTitan: Sacrifice Y2 Sol\nMove G2 Sol Y1\nMove G1 Sol Y1\nCatastrophe Y1 Green\n\n38) wil: Build Y2 G1\n\n39) SilentTitan: Sacrifice B1 Silenttitan\nTrade Y1 G1 Sole\n\n40) wil: Move G2 Wil Y1\n\n41) SilentTitan: Build G2 Silenttitan\n\n42) wil: Build G2 Wil\n\n43) SilentTitan: Trade G1 B1 Silenttitan\n\n44) wil: Discover R2 G1 G3 G3\n\n45) SilentTitan: Move Y3 Silenttitan G3\n\n46) wil: Discover R1 Wil Y1 Why1\n\n47) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 G3 South\nPass\n\n48) wil: Sacrifice G3 Wil\nBuild G1 Y1\nBuild G3 Y1\nBuild G3 Wil\n\n49) SilentTitan: Sacrifice Y2 Sol\nMove G2 Silenttitan Sole\nMove G1 Sole Y1\nCatastrophe Y1 Green\n\n50) wil: Move B2 Y1 Sol\n\tSilentTitan: Y1 .... Why1. Too funny\n\twil: why, ynot?\n\n51) SilentTitan: Move B1 Silenttitan Sol\n\n52) wil: Trade B2 G2 Sol\n\n53) SilentTitan: Trade B1 Y1 Sol\n\n54) wil: Attack Y1 Sol\n\n55) SilentTitan: Build G1 Sole\n\twil: I somehow got the best of mmeme...i have to replay that game to see what I did.  I am now losing terribly to goulo, I really blew it in that game.  \n\tSilentTitan: Wow good for you.   He actually has a medallion from origins for binary Homeworlds. \n\tSilentTitan: Wow good for you.   He actually has a medallion from origins for binary Homeworlds. \n\n56) wil: Sacrifice G3 Wil\nBuild G1 Sol\nBuild G3 Wil\nBuild Y2 Sol\n\twil: I think it was a fluke....but what does that mean &quot;medallion from origins&quot;?\n\n57) SilentTitan: Move R2 G3 Why1\n\tSilentTitan: oh... a medal from the national boardgaiming convention for winning at the binary homeworlds tournament held there.\n\twil: I just went back thru...I am playing a number of games and got confused...I did NOT beat him....he timed out on me and I was thinking of another game that ended about that time....but I did not beat him by play...\n\twil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn&#39;t see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you&#39;d like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\n58) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Sol\nBuild R2 G1\n\n59) SilentTitan: Attack R1 Why1 South\n\n60) wil: Attack B1 Sol\n\n61) SilentTitan: Sacrifice Y3 G3\nMove G1 Sole Why1\nMove G1 Why1 Sol\nMove G2 Sole Why1\nCatastrophe Sol Green\n\n62) wil: Sacrifice G2 Wil\nBuild Y3 Wil\nBuild Y3 Sol\n\n63) SilentTitan: Trade Y3 G3 Silenttitan\n\n64) wil: T Y3 G3 Sol\n\n65) SilentTitan: Build G1 Silenttitan\n\n66) wil: Sacrifice G3 Wil\nBuild Y3 Sol\nBuild Y3 G1\nBuild G1 Sol\n\n67) SilentTitan: Trade G1 B1 Silenttitan\n\n68) wil: Sacrifice Y2 Sol\nDiscover Y3 G1 G3 G3\nMove R1 G1 G3\n\n69) SilentTitan: Build G1 Why1\n\n70) wil: Sacrifice G3 Sol\nBuild R2 G1\nBuild R3 G3\nBuild Y2 G3\n\n71) SilentTitan: Build G2 Silenttitan\n\n72) wil: Trade Y3 G3 Sol\n\n73) SilentTitan: Move G1 Why1 Sol\n\n74) wil: Sacrifice Y2 G1\nMove G3 Sol Silenttitan\nMove G1 Sol Silenttitan\nCatastrophe Silenttitan G\n\n75) SilentTitan: Sacrifice R2 Why1\nAttack Y1 Sol South\nAttack B1 Sol South\n\n76) wil: Move R3 G3 Silenttitan\n\n77) SilentTitan: Move G1 Sol Silenttitan\n\n78) wil: S R2 G1\nA G1 Silenttitan\nA B1 Silenttitan\n\twil: How long had that been there?\n\n\tSilentTitan: Not sure\n\tSilentTitan: Congratulations.   Yea!\n\twil: Thank you forthe game....I am so positive you&#39;ll kick my but when I try this on the ladder\r\n\r\n\n\tSilentTitan: Well we will see.  you played very well.\n\nHomeworlds Online (SDG# 24528)\nStarted: 2013.10.2, Ended: 2013.10.24\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 R1 Ts52\n\n7) wil: Build G1 Wil\n\n8) ts52: Discover R1 Ts52 G1 Kermit\n\n9) wil: Trade G1 R1 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: Build B1 Wil\n\n12) ts52: Trade G1 Y1 Ts52\n\n13) wil: Build G1 Wil\n\n14) ts52: Build Y1 Ts52\n\n15) wil: Trade G1 Y1 Wil\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) wil: Discover B1 Wil G3 G3\n\n18) ts52: Build Y2 Kermit\n\n19) wil: Build Y2 Wil\n\n20) ts52: Build R1 Kermit\n\n21) wil: Build B2 G3\n\n22) ts52: Build G1 Ts52\n\n23) wil: Sacrifice Y1 Wil\nDiscover B2 G3 G1 G1\n\n24) ts52: Build R2 Kermit\n\n25) wil: Sacrifice G3 Wil\nBuild B2 G1\nBuild B3 Wil\nBuild B3 G3\n\n26) ts52: Discover R1 Kermit Y3 Zoe\n\n27) wil: Trade B3 G3 Wil\n\n28) ts52: Move R1 Kermit Zoe\n\n29) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 G1\nBuild Y1 Wil\n\n30) ts52: Sacrifice Y2 Kermit\nMove R1 Zoe Wil\nMove R1 Zoe Wil\nCatastrophe Wil Red\n\n31) wil: Sacrifice B3 G3\nTrade B3 G3 Wil\nTrade B3 Y3 G1\nTrade Y2 G2 Wil\n\n32) ts52: Move R2 Kermit G3\n\n33) wil: Build B3 G3\n\n34) ts52: Attack B1 G3\n\n35) wil: Trade B3 R3 G3\n\n36) ts52: Sacrifice Y1 Ts52\nMove B1 G3 Kermit\n\n37) wil: Build B3 Wil\n\n38) ts52: Build B3 Kermit\n\n39) wil: Trade B3 R3 Wil\n\n40) ts52: Trade G1 R1 Ts52\n\n41) wil: Build B3 G1\n\n42) ts52: Discover B1 Kermit G2 Robin\n\n43) wil: Sacrifice Y3 G1\nMove B3 G1 Ts52\nMove R3 Wil Ts52\nMove G3 Wil Ts52\n\n44) ts52: Sacrifice R2 G3\nAttack R3 Ts52\nAttack G3 Ts52\n\twil: My what a fine and healthy star system you have here, I don&#39;t suppose you noticed but someone has abolished a large portion of mine, we were awfully crowded on this small blue dwarf.  I see you have plenty of room here on these two spacious systems\n\tts52: Hmmmmm, how very clever... well played sir.\n\n45) wil: Sacrifice R3 G3\nAttack G3 Ts52\nAttack G3 Ts52\nAttack R3 Ts52\n\twil: I was searching for my error...I was headed to a bluebird but amassing giant ships...when you avoided the bluebird...I said hmmmm...I couldn&#39;t  see the downside (and frankly am still concerned there is something up your sleeve.\n\n46) ts52: Sacrifice Y1 Kermit\nMove B1 Robin Wil\n\n47) wil: Sacrifice R3 Ts52\nAttack R1 Ts52\nAttack B1 Wil\nPass\n\twil: we welcome the small trader and attack ship to our armada...  I got lucky on that one, me thinks I caught you sleepin.\n\tts52: I didn&#39;t see it coming, that&#39;s for sure. Good game.\n\n\nHomeworlds Online (SDG# 24396)\nVariants: &quot;Hard time&quot;\nStarted: 2013.10.2, Ended: 2013.10.19\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B2 G3\n\tBroccoli_Commander: Hey wil! Long time no play, how do you fare?\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build G1 Wil\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\twil: Fare thee well.  Still losing and hopefully learning.\n\n6) wil: Build G1 Wil\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: Trade G1 Y1 Wil\n\tBroccoli_Commander: Hey just realized you sent me a pm :D\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\twil: Yeah....I hopefully can get through my game....slow play to the point I think hardtime is gonna kick in....aaarggghhh....but we are getting there..\n\n10) wil: Build Y1 Wil\n\twil: Looks to me like you are gonna get a factory over there and be in the catbird seat with yellows quite soon.\n\n11) Broccoli_Commander: Build Y2 Broccoli_commander\n\n12) wil: Build Y2 Wil\n\n13) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry\n\n14) wil: Trade Y1 R1 Wil\n\n\twil: ah phooey brother...   that is a lousy way to win...\n\twil: hope all is well.\n\nHomeworlds Online (SDG# 24585)\nVariants: &quot;Hard time&quot;\nStarted: 2013.10.18, Ended: 2013.11.2\nParticipants: Remneb (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) Remneb: Homeworld B2 R1 G3\n\n3) wil: Build G1 Wil\n\twil: yikes, small universe....\n\n4) Remneb: Build G1 Remneb\n\tRemneb: The big pips for battle !\n\n5) wil: Trade G1 B1 Wil\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) wil: Build B1 Wil\n\n8) Remneb: Build G1 Remneb\n\n9) wil: Build G1 Wil\n\n10) Remneb: Discover G1 Remneb Y3 Altar\n\n11) wil: Trade G1 Y1 Wil\n\n12) Remneb: Build G1 Remneb\n\n13) wil: Discover B1 Wil G3 G3\n\n14) Remneb: Trade G1 R1 Remneb\n\n15) wil: Build B2 G3\n\n16) Remneb: Move R1 Remneb G3\n\n17) wil: Trade B2 R2 G3\n\n18) Remneb: Build Y1 Remneb\n\n19) wil: Build Y2 Wil\n\n20) Remneb: Move Y1 Remneb Altar\n\n21) wil: Move Y2 Wil Altar\n\n22) Remneb: Sacrifice G3 Remneb\nBuild Y2 Remneb\nBuild Y2 Altar\nBuild Y3 Remneb\nCatastrophe Altar Y\n\n23) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B2 G3\nBuild B3 Wil\n\n24) Remneb: Trade Y1 G1 Remneb\n\n25) wil: Sacrifice B2 G3\nTrade B2 Y2 G3\nTrade B3 G3 Wil\n\n26) Remneb: Discover Y2 Remneb G3 Noah\n\n27) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B2 G3\nBuild B3 Wil\n\n28) Remneb: Build G1 Remneb\n\n29) wil: Sacrifice B2 G3\nTrade B3 G3 Wil\nTrade B2 Y2 G3\n\n30) Remneb: Build Y1 Remneb\n\n31) wil: Build B2 Wil\n\n32) Remneb: Attack B1 G3\n\n33) wil:\nAttack R1 G3\n\n34) Remneb: Sacrifice Y1 Remneb\nMove B1 G3 Wil\nCatastrophe Wil B\n\n35) wil: Build G1 Wil\n\n36) Remneb: Build Y1 Remneb\n\n37) wil: Discover Y2 G3 B2 B2\n\twil: I was blind to that....good move.\n\n38) Remneb: Discover G1 Remneb Y3 Rob\n\tRemneb: It was my first idea when i took that ship...but i was sure that you would take it back into your fleet. The second idea was to force you to use the red 2 ship to attack both blue and red one.\n\n39) wil: Build Y1 Wil\n\n40) Remneb: Build G2 Remneb\n\twil: Yes, I looked at the latter but not the former...didn&#39;t see it at all...thought you were trying to grow my blues there and swamp itself...I missed it completely...I saw what I thought was a great comeback which blinded me to reality...\n\n41) wil: Build Y3 G3\n\n42) Remneb: Discover Y1 Remneb R3 Oban\n\n43) wil: Trade Y2 B2 B2\n\n44) Remneb: Build G2 Rob\n\n45) wil: Sacrifice B2 B2\nTrade G1 B1 Wil\nTrade Y2 B2 G3\n\n46) Remneb: Trade G1 R1 Remneb\n\n47) wil: Build Y2 G3\n\n48) Remneb: Move R1 Remneb Rob\n\n49) wil: Discover R1 G3 G2 G2\n\n50) Remneb: Build R2 Rob\n\n51) wil: Build R3 G2\n\n52) Remneb: Discover R2 Rob Y2 Aldo\n\n53) wil: Build R3 G3\n\n54) Remneb: Build G1 Remneb\n\n55) wil: Sacrifice Y1 Wil\nMove R3 G2 Rob\n\n56) Remneb: Sacrifice Y2 Noah\nMove G2 Rob Aldo\nMove G1 Rob Aldo\n\n57) wil: Move R3 Rob Aldo\n\tRemneb: That&#39;s a croud of ships indeed !\r\n\n\n58) Remneb: Sacrifice G2 Aldo\nBuild Y1 Oban\nBuild Y2 Remneb\n\n59) wil: Attack R2 Aldo\n\n60) Remneb: Move G1 Aldo G3\n\n61) wil: Sacrifice Y2 G3\nMove Y3 G3 Remneb\nMove R3 G3 Remneb\n\twil: It is a crowd of ships... I gotta replay this to see how the heck I accumulated them!  Meanwhile, I&#39;ve got a rogue attack ship violating the prime directive, I disavow that captains current actions.\r\n\n\n62) Remneb: Attack R3 Remneb\n\n63) wil: Sacrifice R3 Aldo\nAttack R3 Remneb\nAttack Y3 Remneb\nAttack G2 Remneb\n\n64) Remneb: Move Y1 Oban Remneb\nCatastrophe Remneb Y\n\n65) wil: Sacrifice R2 Aldo\nAttack G1 G3\nAttack G1 Remneb\n\n\tRemneb: Thanks for the game.\n\twil: Thank you!  Again, I have to replay this to see what I did right.  I know I felt in trouble for a time, and I know I got away with a little factory of sorts, but I have to figure out what happenned and how to duplicate it.\n\nHomeworlds Online (SDG# 24588)\nVariants: &quot;Hard time&quot;\nStarted: 2013.10.19, Ended: 2013.11.1\nParticipants: mneme (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) mneme: Homeworld B3 R1 G3\n\tagentofchaos: Have fun\n\n3) agentofchaos: Build G1 Agentofchaos\n\tmneme: you too!  Hopefully I won&#39;t lose track -again-.  :(\n\n4) mneme: Build G1 Mneme\n\tagentofchaos: I&#39;ve lost track a few times myself :-)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) agentofchaos: Build G1 Agentofchaos\n\n\nHomeworlds Online (SDG# 24548)\nVariants: &quot;Hard time&quot;\nStarted: 2013.10.21, Ended: 2013.10.24\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n\twil: ah phooey...hit me up when you are ready to play...and did you ever tell me how you picked the name broccoli commander?\n\nHomeworlds Online (SDG# 24617)\nStarted: 2013.10.25, Ended: 2013.11.27\nParticipants: mnkr (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\tmnkr: another oportunity? hehe thanks\n\tts52: absolutely!\n\n2) mnkr: Homeworld Y1 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) mnkr: Build G1 Mnkr\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) mnkr: Discover G1 Mnkr B3 Nnkr\n\n7) ts52: Build G1 Ts52\n\n8) mnkr: Build G2 Nnkr\n\n9) ts52: Build G2 Gonzo\n\n10) mnkr: Build G2 Mnkr\n\n11) ts52: Build G3 Gonzo\n\n12) mnkr: Trade G2 Y2 Nnkr\n\n13) ts52: Trade G3 Y3 Gonzo\n\n14) mnkr: Build Y1 Nnkr\n\n15) ts52: Trade G2 R2 Gonzo\n\n16) mnkr: Trade G3 R3 Mnkr\n\n17) ts52: Build G2 Gonzo\n\n18) mnkr: Build G2 Nnkr\n\n19) ts52: Discover G2 Gonzo B3 Grover\n\n20) mnkr: Discover G2 Nnkr B2 Onkr\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild G3 Gonzo\n\n22) mnkr:\nMove G1 Nnkr Onkr\n\tmnkr: good action! I wanted to do this before!\n\tmnkr: move G1 nnkr onkr\n\n23) ts52: Trade G1 R1 Ts52\n\n24) mnkr: Trade G2 R2 Onkr\n\n25) ts52: Trade G3 Y3 Grover\n\n26) mnkr: Build R1 Onkr\n\n27) ts52: Move Y3 Grover Onkr\n\n28) mnkr: Trade Y1 G1 Nnkr\n\n29) ts52: Sacrifice R2 Gonzo\nAttack R2 Onkr\nAttack R1 Onkr\n\n30) mnkr: Sacrifice G1 Onkr\nBuild G1 Nnkr\n\tmnkr: great! I never think abouth the red sacrifices!\n\n31) ts52: Sacrifice G3 Gonzo\nBuild G2 Ts52\nBuild G3 Gonzo\nBuild G3 Grover\n\n32) mnkr: Build Y1 Nnkr\n\n33) ts52: Move R2 Onkr Nnkr\n\n34) mnkr: Sacrifice Y2 Nnkr\nMove G1 Nnkr Gonzo\nMove G1 Nnkr Gonzo\nCatastrophe Gonzo Green\n\n35) ts52: Attack Y1 Nnkr\n\n36) mnkr: Build R1 Mnkr\n\n37) ts52: Sacrifice Y3 Gonzo\nMove R2 Nnkr Mnkr\nMove R1 Onkr Grover\nMove R1 Grover Mnkr\nCatastrophe Mnkr Red\n\n\tmnkr: Very good!\r\nI have to learn more.\r\nI take some holidays... when I return I will recall to you, hehe\n\tts52: Thanks for the game. I look forward to playing you again.\n\nHomeworlds Online (SDG# 24310)\nVariants: &quot;Hard time&quot;\nStarted: 2013.10.26, Ended: 2013.11.4\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld R2 B1 G3\n\n2) wil: Homeworld B3 Y2 G3\n\tTeeTeeTee: Greetings!\n\twil: Welcome!  Thanx for the game!\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build G1 Wil\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n6) wil: Discover G1 Wil Y1 Y1\n\n7) TeeTeeTee: Build G1 Teeteetee\n\n8) wil: Build G1 Wil\n\n9) TeeTeeTee: Discover G1 Teeteetee B3 Slough\n\n10) wil: Build G2 Wil\n\n11) TeeTeeTee: Build G2 Teeteetee\n\n12) wil: Sacrifice G3 Wil\nBuild G2 Y1\nBuild G3 Y1\nBuild G3 Wil\n\n13) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild Y1 Teeteetee\nBuild Y2 Teeteetee\n\n14) wil: Trade G2 B2 Wil\n\n15) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove G2 Teeteetee Slough\nMove G1 Slough Y1\nCatastrophe Y1 Green\n\n16) wil: Trade G1 Y1 Wil\n\n17) TeeTeeTee: Move Y1 Teeteetee Slough\n\n18) wil: Build Y2 Wil\n\n19) TeeTeeTee: Sacrifice G2 Slough\nBuild Y2 Teeteetee\nBuild Y3 Slough\n\n20) wil: Discover Y1 Wil G1 G1\n\n21) TeeTeeTee: Trade Y3 G3 Slough\n\n22) wil: Build Y3 G1\n\n23) TeeTeeTee: Build Y3 Slough\n\n24) wil: Discover Y2 Wil G1 Gee1\n\n25) TeeTeeTee: Trade Y1 B1 Slough\n\n26) wil: Build G1 Wil\n\n27) TeeTeeTee: Build G2 Slough\n\n28) wil: Move G1 Wil G1\n\n29) TeeTeeTee: Build G2 Teeteetee\n\n30) wil: Build G2 Wil\n\n31) TeeTeeTee: Trade G3 R3 Slough\n\n32) wil: Trade B2 R2 Wil\n\n33) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild G3 Slough\nBuild R1 Slough\n\n34) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G1\nBuild Y3 Gee1\n\twil: I see you joined the ladder, welcome to the fray.  It takes a while to climb thru the dead wood.\n\n35) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove Y1 Teeteetee Slough\nMove Y1 Slough G1\nCatastrophe G1 Yellow\n\tTeeTeeTee: Ahhh, I&#39;ve noticed. Tricky to rise up when all but one of the people I can challenge haven&#39;t been online in months.\n\n36) wil: Discover Y2 Gee1 B3 B3\n\twil: It took me six months to get up the ladder, and I got a few games in along the way...but now I am where I can get my arse kicked regularly...\n\n37) TeeTeeTee: Build Y1 Slough\n\n38) wil: Sacrifice G3 Wil\nBuild Y1 B3\nBuild G3 Wil\nBuild R1 Wil\n\n39) TeeTeeTee: Move R3 Slough G1\n\n40) wil: Sacrifice Y1 B3\nMove G1 G1 B3\n\twil: am I playin someone I know?\n\n41) TeeTeeTee: Move Y3 Slough G1\n\tTeeTeeTee: Heh, I don&#39;t think so; I&#39;ve not played a game on this site before, and I&#39;ve never played Homeworlds before either. It&#39;s certainly an interesting game, though!\n\twil: You&#39;ve never played?  wow!  you are doing well.  You don&#39;t have a physical set?\n\n42) wil: Move G2 Wil Gee1\n\twil: you&#39;ve really figured out the system...you must be quite the gamer.   it is a great game.\n\n43) TeeTeeTee: Move B1 Slough Teeteetee\n\tTeeTeeTee: Heh, perhaps I put too much thought into this. I&#39;ve got my hands on an Icehouse set recently, but haven&#39;t had a chance to try it out yet. \r\nRight, here we go!\n\n44) wil: Trade R1 B1 Wil\n\n45) TeeTeeTee: Sacrifice G3 Slough\nBuild G3 Slough\nBuild Y1 G1\nBuild R1 G1\n\n46) wil: Sacrifice Y3 Gee1\nMove G2 Gee1 B3\nMove G2 B3 Teeteetee\nMove G1 B3 Teeteetee\nCatastrophe Teeteetee G\n\n47) TeeTeeTee: Move Y3 G1 B3\n\n48) wil: Move Y2 B3 Teeteetee\n\n49) TeeTeeTee: Move Y3 B3 Teeteetee\n\n50) wil: Discover Y2 Teeteetee G3 G3\n\n51) TeeTeeTee: Sacrifice G3 Slough\nBuild Y1 G1\nBuild Y2 Teeteetee\nBuild Y3 Slough\n\n52) wil: Build Y3 G3\n\n53) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove Y1 G1 G3\nMove Y1 G1 G3\nCatastrophe G3 Yellow\n\n54) wil: Build G1 Wil\n\n55) TeeTeeTee: Build G1 Slough\n\n56) wil: Build R1 Wil\n\n57) TeeTeeTee: Sacrifice G2 Slough\nBuild Y1 Slough\nBuild Y1 Teeteetee\n\n58) wil: Move R1 Wil G1\n\n59) TeeTeeTee: Attack R1 G1\n\n60) wil: Move R2 Wil G1\nCatastrophe G1 R\n\n61) TeeTeeTee: Sacrifice Y3 Teeteetee\nDiscover Y3 Slough G1 Staines\nMove Y1 Slough Staines\nMove Y3 Staines Wil\n\twil: I am totally outplayed...great game, you&#39;ve abused the heck outta me.\n\n62) wil: Move G3 Wil Staines\n\n63) TeeTeeTee: Sacrifice R1 Slough\nAttack B1 Wil\n\n64) wil: Trade G1 R1 Wil\n\n65) TeeTeeTee: Sacrifice B1 Wil\nTrade Y3 R3 Wil\n\n66) wil: Sacrifice G3 Staines\nBuild R1 Wil\nBuild R1 Wil\nBuild R2 Wil\nCatastrophe Wil R\n\n\tTeeTeeTee: Heh, thanks for the praise. :p\r\nI didn&#39;t want to acknowledge victory after 29. ... m r1 wil g1 - that was a bold move. It left me an opening, but I had to give up most of my fleet to use it, and if I was careless, then the game&#39;s outcome could have easily been different.\n\twil: If this is your first game....you are gonna be a terror!   on the ladder, look for someone up 4/5 levels that has logged on in the last 30/60 days...play them.  I look forward to playing again.\n\nHomeworlds Online (SDG# 24624)\nStarted: 2013.10.27, Ended: 2013.12.20\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld R3 B2 G3\n\tts52: Have a good game! Hopefully you wont catch me napping this time.\n\n3) ts52: Build G1 Ts52\n\twil: ah...come on...the only way I win at pool is when my opponent sinks the 8 ball.\n\n4) wil: Build G1 Wil\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wil: Trade G1 Y1 Wil\n\n7) ts52: Build G1 Ts52\n\n8) wil: Build Y1 Wil\n\n9) ts52: Build G1 Ts52\n\n10) wil: Build Y2 Wil\n\n11) ts52: Build G2 Grover\n\n12) wil: Build G2 Wil\n\n13) ts52: Trade G2 Y2 Grover\n\n14) wil: Sacrifice Y2 Wil\nDiscover G2 Wil B1 B1\nMove Y1 Wil B1\n\n15) ts52: Discover G1 Ts52 B3 Gonzo\n\n16) wil: Build Y2 B1\n\n17) ts52: Build G2 Gonzo\n\n18) wil: Discover Y2 B1 G3 G3\n\n19) ts52: Trade G2 R2 Gonzo\n\n20) wil: Build G2 Wil\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Gonzo\n\n22) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y3 B1\n\n23) ts52: Build Y3 Grover\n\n24) wil: Trade Y3 R3 B1\n\n25) ts52: Trade Y3 R3 Grover\n\n26) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 G3\nBuild Y3 B1\n\n27) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild R1 Grover\n\n28) wil: Trade Y3 B3 B1\n\n29) ts52: Discover Y3 Grover R2 Elmo\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 B1\nBuild B1 B1\n\n31) ts52: Move Y3 Elmo Gonzo\n\n32) wil: Sacrifice Y2 G3\nMove G2 B1 G3\nMove G2 G3 Ts52\n\n33) ts52: Trade G1 R1 Ts52\n\n34) wil: Sacrifice G2 Wil\nBuild G1 Ts52\nBuild G2 Ts52\nCatastrophe Ts52 G\n\n35) ts52: Move R3 Grover Ts52\n\n36) wil: Move R3 B1 Grover\n\tts52: Ouch!\n\n37) ts52: Sacrifice G2 Grover\nBuild R2 Grover\nBuild R2 Grover\nCatastrophe Grover Red\n\twil: I stared at that maneuver for quite a while....\n\n38) wil: Trade B3 R3 B1\n\twil: yeah...so I made a stupd move to balance the power that was great...\n\n39) ts52: Trade R3 G3 Ts52\n\n40) wil: Build Y2 G3\n\tts52: You&#39;re still ahead by a good margin.\n\n41) ts52: Build G1 Ts52\n\n42) wil: Build G2 Wil\n\n43) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Gonzo\nBuild G3 Ts52\n\twil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn&#39;t see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you&#39;d like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\tts52: Wow, I love the idea. I&#39;ll try to think back and see if I can find any games that seem like they&#39;re worthy. I wish I had a record of the in-person game where I beat Andy for the Homeworld championship at Origins one year. It wasn&#39;t the best game, for sure, but it had some interesting points.\n\n44) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 B1\nBuild B1 B1\n\n45) ts52: Trade G3 R3 Ts52\n\n46) wil: Sacrifice Y2 G3\nMove R3 B1 Grover\nMove B1 B1 G3\n\n47) ts52: Build G3 Ts52\n\twil: The idea is to be instructional...so people can see all the elements happen, or happen spectacularly....\n\n48) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G3\nBuild R2 B1\n\n49) ts52: Sacrifice Y2 Grover\nDiscover G2 Grover Y2 Bigbird\nMove G1 Grover Bigbird\n\n50) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 G3\nBuild R2 Grover\n\n51) ts52: Discover G1 Bigbird B3 Cookiemonster\n\n52) wil: Move R2 B1 Cookiemonster\n\n53) ts52: Move R3 Ts52 Cookiemonster\n\n54) wil: Sacrifice Y3 B1\nMove B1 B1 G3\nMove B1 G3 Ts52\nMove B1 G3 Ts52\n\n55) ts52: Build Y3 Gonzo\n\n56) wil: Sacrifice Y2 Wil\nMove B2 G3 Ts52\nMove G2 Wil B1\nCatastrophe Ts52 B\n\n57) ts52: Attack R2 Cookiemonster\n\n58) wil: Sacrifice Y2 G3\nMove R3 Grover B1\nMove R3 B1 Wil\n\n59) ts52: Move Y3 Gonzo B1\n\n60) wil: Sacrifice Y3 G3\nMove G3 Wil Ts52\nMove G2 B1 Wil\nMove G2 Wil Ts52\nCatastrophe Ts52 G\n\n61) ts52: Move Y3 Gonzo Ts52\n\tts52: Well shoot. There I go napping again... :(\n\n62) wil: Move Y1 B1 Grover\n\n63) ts52: Trade G1 B1 Gonzo\n\n64) wil: Trade Y1 G1 Grover\n\n65) ts52: Trade R2 Y2 Gonzo\n\n66) wil: Trade R3 G3 Wil\n\n67) ts52: Move B1 Gonzo Ts52\n\n68) wil: Build Y1 Wil\n\n69) ts52: Trade Y3 G3 Ts52\n\n70) wil: Discover Y1 Wil G1 G1\n\n71) ts52: Sacrifice G2 Bigbird\nBuild R2 Gonzo\nBuild R3 Ts52\n\n72) wil: B G2 Wil\n\n73) ts52: Move R2 Gonzo B1\n\n74) wil: Sacrifice G3 Wil\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Wil\n\n75) ts52: Attack R1 B1\n\n76) wil: Build Y2 G1\n\n77) ts52: Sacrifice G3 Ts52\nBuild G3 Gonzo\nBuild Y2 B1\nBuild Y3 Gonzo\n\n78) wil: Move Y2 G1 Grover\n\n79) ts52: Move G2 Gonzo B1\n\n80) wil: Build Y3 G1\n\n81) ts52: Move Y2 B1 Cookiemonster\n\n82) wil: Trade G2 B2 Wil\n\n83) ts52: Move G2 B1 Grover\nCatastrophe Grover Green\n\n84) wil: Move Y1 G1 Grover\n\n85) ts52: Sacrifice Y3 Gonzo\nMove Y3 B1 Grover\nMove Y2 Gonzo B1\nMove Y2 B1 Grover\nCatastrophe Grover Yellow\n\n86) wil: Discover Y3 G1 G3 G3\n\n87) ts52: Trade R2 Y2 B1\n\n88) wil: Sacrifice G3 Wil\nBuild Y1 Wil\nBuild Y2 G3\nBuild R2 Grover\n\n89) ts52: Sacrifice Y2 Cookiemonster\nMove R3 Cookiemonster B1\nMove R3 B1 Wil\n\n90) wil: Sacrifice Y3 G3\nMove Y2 G3 Ts52\nMove Y1 Wil Ts52\nMove Y1 Wil Ts52\nCatastrophe Ts52 Y\n\n\twil: golly day that was scary...so often I am off on move count by one...\n\tts52: Well played sir. I look forward to our next game.\n\twil: thx, trying to learn so I can get up that ladder\n\nHomeworlds Online (SDG# 24647)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.2, Ended: 2013.11.7\nParticipants: wil (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\twil: You were right...it didn&#39;t take a year!\n\n2) wil: Homeworld R1 B2 G3\n\tgoulo: I&#39;m glad! :)\r\n\r\nHave a good game!\n\n3) goulo: Build G1 Goulo\n\twil: May 9th, took just under 6 months to get upto ya!  The slow players and nonplayers were just soooo frustrating.\n\n4) wil: Build G1 Wil\n\tgoulo: Well, I can guarantee I&#39;ll play, but sadly I can make no guarantee about my competence. :)\n\n5) goulo: Trade G1 Y1 Goulo\n\twil: I look forward to the game, I appreciate the encouragement you offered...every game to me is a learing experience.  Both the ones I lose and win.\n\n6) wil: Trade G1 Y1 Wil\n\n7) goulo: Build G1 Goulo\n\n8) wil: Build Y1 Wil\n\n9) goulo: Build Y2 Goulo\n\n10) wil: Discover Y1 Wil B3 B3\n\n11) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n12) wil: Build G1 Wil\n\n13) goulo: Build G2 Goulo\n\n14) wil: Sacrifice G3 Wil\nBuild Y2 B3\nBuild Y2 B3\nBuild Y3 Wil\n\n15) goulo: Move Y1 Smeraldeto B3\nCatastrophe B3 Y\n\n16) wil: Build G1 Wil\n\n17) goulo: Discover G2 Goulo Y1 Citroneto\n\twil: quite the reboot...\r\n\n\twil: quite the reboot...\r\n\n\n18) wil: Build G2 Wil\n\tgoulo: indeed! :)\n\twil: I almost tossed us back to one ship each...\n\n19) goulo: Sacrifice G3 Goulo\nBuild G2 Citroneto\nBuild G3 Citroneto\nBuild G3 Goulo\n\n20) wil: Sacrifice Y3 Wil\nDiscover G1 Wil Y3 Y3\nMove G1 Wil Y3\nMove G1 Y3 Citroneto\nCatastrophe Citroneto G\n\twil: very nice...\n\n21) goulo: Build Y1 Goulo\n\tgoulo: Conventional wisdom would say that you&#39;ve put yourself at a disadvantage by having no 3-ship now, but who knows... :)\n\n22) wil: Build Y1 Wil\n\twil: Oh, I believe I did...but you already had me outnumbered 3-1 so desperate situations require desp measures...\n\n23) goulo: Discover Y1 Goulo R1 Rubeneto\n\n24) wil: Trade Y1 R1 Wil\n\n25) goulo: Discover Y1 Rubeneto G3 Smeraldego\n\n26) wil: Build R1 Wil\n\n27) goulo: Build Y1 Goulo\n\n28) wil: M R1 Wil Smeraldego\n\n29) goulo: Discover Y1 Smeraldego B2 Mirtelo\n\n30) wil: Build Y2 Wil\n\n31) goulo: Discover Y1 Goulo B1 Safireto\n\n32) wil: Move Y2 Wil Smeraldego\n\n33) goulo: Sacrifice G3 Goulo\nBuild Y2 Mirtelo\nBuild Y3 Safireto\nBuild Y3 Goulo\n\n34) wil: Build R2 Smeraldego\n\n35) goulo: Sacrifice Y2 Mirtelo\nMove Y3 Safireto Y3\nMove Y3 Y3 Wil\n\n36) wil: Build Y2 Wil\n\n37) goulo: Attack G2 Wil\n\n38) wil: Move Y2 Smeraldego Wil\nCatastrophe Wil Y\n\n39) goulo: Attack R1 Wil\n\twil: You&#39;ve soundly defeated me with your evil ways...we will play agin\n\tgoulo: mwahahaha! :)\r\nThanks for the game! I look forward to the next one.\n\n\nHomeworlds Online (SDG# 24688)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.8, Ended: 2014.1.14\nParticipants: ajo (S), AdamBadura (N)\nWinner: ajo\n\n1) AdamBadura: Homeworld G3 B2 R3\n\tajo: Wow, it&#39;s been a while since I&#39;ve played on SDG. :)\n\n2) ajo: Homeworld B1 R3 G3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) ajo: Build G1 Ajo\n\n5) AdamBadura: Trade R1 G1 Adambadura\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) AdamBadura: Build R1 Adambadura\n\n8) ajo: Build Y1 Ajo\n\n9) AdamBadura: Trade R1 Y1 Adambadura\n\n10) ajo: Discover Y1 Ajo B2 Alpha\n\n11) AdamBadura: Build R1 Adambadura\n\n12) ajo: Build G1 Ajo\n\n13) AdamBadura: Build G2 Adambadura\n\n14) ajo: Build G2 Ajo\n\n15) AdamBadura: Discover G2 Adambadura R1 Outpost\n\n16) ajo: Move G2 Ajo Alpha\n\n17) AdamBadura: Build R1 Adambadura\n\n18) ajo: Build G2 Ajo\n\n19) AdamBadura: Build G3 Outpost\n\n20) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n21) AdamBadura: Discover R1 Adambadura B1 Mutator\n\n22) ajo: Trade G2 R2 Alpha\n\n23) AdamBadura: Build Y1 Adambadura\n\n24) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild Y2 Alpha\n\n25) AdamBadura: Sacrifice Y1 Adambadura\nDiscover G3 Outpost R2 Deathstar\n\n26) ajo: Move G2 Alpha Mutator\n\n27) AdamBadura: Sacrifice Y1 Adambadura\nMove G3 Deathstar Ajo\nCatastrophe Ajo G\n\n28) ajo: Build R2 Alpha\n\tajo: Whoops, got the names of the stars backwards. :P Anyway, I&#39;m back from vacation!\n\n29) AdamBadura: Trade R1 Y1 Mutator\n\n30) ajo: Sacrifice R2 Alpha\nAttack Y1 Mutator\nPass\n\n31) AdamBadura: Build G1 Outpost\n\n32) ajo: Build R1 Alpha\n\n33) AdamBadura: Trade R1 Y1 Adambadura\n\n34) ajo: Build G1 Mutator\n\n35) AdamBadura: Discover G1 Adambadura R1 Deathstar\n\n36) ajo: Build G3 Mutator\n\n37) AdamBadura: Build Y2 Adambadura\n\tajo: You really like those red/green deathtraps, don&#39;t you? What&#39;s the attraction there?\n\n38) ajo: Trade G2 R2 Mutator\n\n39) AdamBadura: Move Y2 Adambadura Deathstar\n\tAdamBadura: I play poorly. :( I was somewhat better when I was playing more, but since long I only answer chelenges which is rare.\n\n40) ajo: Discover Y2 Alpha B1 Beta\n\n\nHomeworlds Online (SDG# 24687)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.9, Ended: 2013.11.26\nParticipants: Aristos (S), wil (N)\nWinner: Aristos\n\n1) wil: Homeworld B2 R1 G3\n\n2) Aristos: Homeworld G3 B2 Y3\n\twil: thanks for the game, we&#39;s heads up over there with more pieces...\n\n3) wil: Build G1 Wil\n\tAristos: Aristos Empire, having eliminated the last resistance on Homeworld, constructs a ship to explore the stars.\n\n4) Aristos: Build Y1 Aristos\n\n5) wil: Trade G1 Y1 Wil\n\n6) Aristos: Discover Y1 Aristos B1 Aleph\n\n7) wil: Build G1 Wil\n\n8) Aristos: Trade Y1 G1 Aleph\n\n9) wil: Discover G1 Wil B3 B3\n\n10) Aristos: Build Y1 Aristos\n\n11) wil: Build Y1 Wil\n\twil: \r\n(Hide Notebook)\r\n\r\n\r\n&nbsp;\t \n\twil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn&#39;t see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you&#39;d like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\n12) Aristos: Build Y2 Aristos\n\tAristos: Could definitely be educational. Let&#39;s see how the game develops, but I&#39;m definitely open to it. \n\twil: Oh, I am not talking about this game...I am talking about particularly memorable learning moments you&#39;ve had in games....\n\n13) wil: Move Y1 Wil B3\n\tAristos: The best games I&#39;ve had have been in person, not online here. My single best: My opponent built a successful doomsday device, but before he could deploy it, I attacked and managed to successfully own the two Y3s and then deployed it the other direction. ;-)\n\n14) Aristos: Trade Y1 R1 Aristos\n\n15) wil: Build G1 Wil\n\n16) Aristos: Build G2 Aleph\n\n17) wil: Sacrifice G3 Wil\nBuild G2 B3\nBuild G2 B3\nBuild G3 Wil\n\n18) Aristos: Sacrifice Y2 Aristos\nMove G1 Aleph B3\nDiscover G2 Aleph Y3 Beda\nCatastrophe B3 Green\n\n19) wil: Trade G1 R1 Wil\n\n20) Aristos: Build R2 Aristos\n\n21) wil: Build R2 Wil\n\n22) Aristos: Build G1 Beda\n\tAristos: I forgot to trigger the catastrophe the first time. \n\n23) wil: Discover R2 Wil G3 G3\n\n24) Aristos: Build G1 Beda\n\n25) wil: Build G1 Wil\n\n26) Aristos: Sacrifice Y3 Aristos\nMove G1 Beda Wil\nMove G1 Beda Wil\nDiscover R1 Aristos B1 Gimme\nCatastrophe Wil Green\n\n27) wil: Sacrifice Y1 Wil\nMove R2 G3 Wil\n\n28) Aristos: Build R2 Aristos\n\n29) wil: Trade R2 G2 Wil\n\n30) Aristos: Trade R2 Y2 Aristos\n\tAristos: I spent a long time considering the wisdom of that move. I hope I&#39;ve analyzed this right. \n\n31) wil: Build G1 Wil\n\twil: and I didnt think you&#39;d pull that trigger....\n\n32) Aristos: Build G1 Beda\n\n33) wil: Trade G1 Y1 Wil\n\n34) Aristos: Build R2 Aristos\n\n35) wil: Discover R1 Wil G3 G3\n\twil: startin over...\n\n36) Aristos: Sacrifice G2 Beda\nBuild R2 Gimme\nBuild R3 Aristos\n\n37) wil: Build R3 G3\n\n38) Aristos: Trade R2 Y2 Aristos\n\n39) wil: Build Y1 Wil\n\n40) Aristos: Sacrifice Y2 Aristos\nMove R1 Gimme G3\nMove R2 Gimme Beda\n\n41) wil: S Y1 Wil\nM R3 G3 Wil\n\n42) Aristos: Sacrifice Y2 Aristos\nMove R1 G3 Wil\nMove R2 Beda Wil\nCatastrophe Wil Red\n\n43) wil: B Y1 Wil\n\n44) Aristos: Build R1 Aristos\n\n45) wil: Build Y2 Wil\n\n46) Aristos: Trade R3 Y3 Aristos\n\n47) wil: Move Y1 Wil G3\n\n48) Aristos: Build Y2 Aristos\n\n49) wil: Sacrifice G2 Wil\nBuild Y2 B3\nBuild Y3 G3\n\n50) Aristos: Sacrifice Y2 Aristos\nDiscover Y3 Aristos B1 Temp\nMove Y3 Temp Wil\n\n\tAristos: &quot;But, admiral, that will leave our homeworld undefended!&quot;\r\n&quot;Yes, senator, but once I destroy the enemy&#39;s home fleet, I shall loot their world and be back before they cause us any difficulties.&quot;\r\n&quot;You realize if you fail, we&#39;ll be conquered and likely killed or enslaved.&quot;\r\n&quot;Senator, you worry about your reelection. Let me worry about the empire.&quot;\n\twil: yes....i was a step behind....too slow...nice game\n\tAristos: Thanks. Good game.\n\twil: I looke foreard to plaaying agan....challenge me off the ladder if you wish...   I am way still learning thi thing\n\nHomeworlds Online (SDG# 24693)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.9, Ended: 2013.11.25\nParticipants: Broccoli_Commander (S), MagicJohn (N)\nWinner: Broccoli_Commander\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\n2) Broccoli_Commander: Homeworld B1 R3 G3\n\tMagicJohn: Wishing you and your little broccolites a good game......\n\n3) MagicJohn: Build G1 Magicjohn\n\tBroccoli_Commander: Likewise dear John\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) MagicJohn: Trade G1 R1 Magicjohn\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\tMagicJohn: Memo to Magic One: encryption code 18.\r\nHave established outpost in sector 8.  Currently setting up defenses.\r\nIntelligence indicates a possible alien presence in sector 10. Source describes &quot;little green men sporting Afros.&quot;  (chuckle)  Agent may be over-indulging in spirits or reading  early-american science fiction mags.\r\nWill send additional intel when information is more reliable or can be taken seriously...... \n\n7) MagicJohn: Build R1 Magicjohn\n\n8) Broccoli_Commander: Build Y1 Broccoli_commander\n\n9) MagicJohn: Trade G3 Y3 Magicjohn\n\n10) Broccoli_Commander: Build Y2 Broccoli_commander\n\n11) MagicJohn: Trade R1 G1 Magicjohn\n\n12) Broccoli_Commander: Discover Y1 Broccoli_commander B2 Blueberry\n\n13) MagicJohn: Discover Y3 Magicjohn G3 Ruffage\n\tMagicJohn: Memo to MJ\r\nAliens are stockpiling propulsion materials. May be aware of our presence. Suggest counter measures.\r\nAgent Orange\n\n14) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Blueberry\nBuild Y2 Blueberry\nBuild Y3 Broccoli_commander\n\tMagicJohn: Memo to MJ\r\nInterstellar movement detected. Aliens may be more aggressive and mobile than typical autotrophs.\r\nAlso, beware command-post decor and accents. One could be a plant.\n\n15) MagicJohn: Move Y3 Ruffage Magicjohn\n\tMagicJohn: Memo to MJ from Orange:\r\nDUCK!!\n\tMagicJohn: Memo to Magic One:\r\nOutpost under threat.  Little green veggies to be taken seriously.  Send herbicide and delivery system... SOON!!!\r\nMJ \n\n16) Broccoli_Commander: D Y2 Blueberry G3 Lettuce\n\tMagicJohn: Attention alien commander (Caesar of Salads): Please be advised that we are an expeditionary force representing an entire federation of allied civilizations. If you surrender now, we can guarantee that you will be relocated into a space sector free of herbivores and other vegan species. We also offer Obamacare and/or a Thousand Islands to restore your aged foliage or environmentally stressed sprouts.      \n\n17) MagicJohn: Trade Y3 R3 Magicjohn\n\n18) Broccoli_Commander: Build Y3 Lettuce\n\n19) MagicJohn: Trade R1 B1 Magicjohn\n\tMagicJohn: MJ to Orange: Threats and/or promises not effective. Other suggestions?\n\tMagicJohn: Orange to MJ: Try obsequious,,,\n\tMagicJohn: MJ: Ob-se.....\n\tMagicJohn: Orange: Sniveling\n\tMagicJohn: MJ: oh....\n\tMagicJohn: Oh great Mandarin of Oranges, Royal Palm, Crown of Broccoli, Head of Lettuce, Heart of Artichoke, Caesar of Salads:  We poor pilgrims, cast out from our native lands, request the favor of an  audience with a legume leader to discuss peaceful co-existence in this corner of space. Please send one starship to our docking port. We regret that our poor facilities cannot accommodate your entire,glorious fleet.....    \n\n20) Broccoli_Commander: Build Y3 Lettuce\n\n21) MagicJohn: Build G1 Magicjohn\n\tBroccoli_Commander: Dear MJ, dreadful agent O,\r\n\r\nI, the ever healthy Broccoli Commander, would like to express my greenest sympathy to you and your people. You see, with my fellow flowerheads, we had to face an intestine war. One of those that requires a mouthful of diplomatic fibers to settle.\r\n\r\nCaptain Lemon had always added a needed zest to our team. In fact he protected our little seeds and sprouts from the terrible vegan attack of last summer. We had to express our gratitude!\r\n\r\nBut captain Lemon went overboard this time. A rooting spot in the holy lands (with an endless supplies of bees!) was not enough for him. He drained all the cosmopropellant from the entire universe to make a fleet in his glory.\r\n\r\nDo not worry for us, I think the old disputes have rotten now. But I&#39;m afraid I cannot give you any access to cosmoprop tanks anymore. I can only advise you to stay away from Captain Lemon ships or he might unite his acids with his old pal the T to reduce you to ketchup.\r\n\r\nYours delicacy,\r\nThe ever healthy Broccoli Commander.\r\n\r\nPS No seriously: All your base are belong to us. Surrender or tell your kids they gonna have to eat spinach!\n\tBroccoli_Commander: Hilarious:\r\nhttp://news.yahoo.com/blogs/news/obama-broccoli-gate-211714643.html\r\nI should have taken the obamacare you offered me\n\n22) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n23) MagicJohn: Move B1 Magicjohn Lettuce\n\tMagicJohn: Oh Czar of Zucchini,\r\nOur heartfelt greetings to you and the Cumquat Queen. (Or vice versa, depending upon who&#39;s in charge)\r\nWe regret to hear how poorly your Captains obey orders. The insurrection and resulting anarchy must wreck havoc on your magnificent civilization. The stronger hand of the Federation could give you a welcome respite from your societal turmoil.\r\nTo prove our sincerity, we are preparing a nutritious compound of potassium nitrate and various other chemicals for your continued good health.\r\nMJ       \n\tMagicJohn: Oh Pontiff of Peach,\r\nWe are sending an emissary to begin a peaceful dialogue and, hopefully, negotiate a lasting peace and mutual respect between our peoples. We trust that your cambium is as pure as one would expect from the leader of such an advanced civilization and our emissary will be safe and treated well.\r\nMay your pith forever prosper!\r\nMJ   \n\n24) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove Y3 Lettuce Magicjohn\nMove Y3 Lettuce Magicjohn\n\n25) MagicJohn: Build R1 Magicjohn\n\tBroccoli_Commander: You say potassium nitrate, we come and get it. Our two oversized cargo ships are ready,please deliver.\n\tMagicJohn: Magic 1 to MJ:\r\nHaving successfully and irrevocably pollenated up the tactics needed to complete objectives in your sector, we trust you are willing to accept a small demotion to Private MJ.  Agent Orange has returned to Nam where he is trying to ingratiate himself to the current generation of flora.\n\n26) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack R3 Magicjohn\nAttack R1 Magicjohn\n\tMagicJohn: Dear Poobah of Pomegranate, Great Royalty of Rhubarb:\r\n\r\nOur esteemed commander, Private MJ, has been called back to his home planet due to an impending death in his family.\r\nAs acting commander, I am organizing the delivery of nutritious consumables to your magnificent ships as quickly as possible. Loading will most certainly be complete in the current growing season.\r\nMay your bulbs always bloom.\r\nMajor Minor \n\n27) MagicJohn: Trade G1 B1 Magicjohn\n\tBroccoli_Commander: Dear Major Minor,\r\n\r\nThank you for your generosity, this is more than we would have asked for! We took the liberty of borrowing two of your ships to bring the cargo back to all of our ramifications. I&#39;m sure you understand; rest assured we will return them briskly!\r\n\r\nI hope Private MJ is alright, we had quite the fun with him. Transmit our condolences, may he not forget that one&#39;s soul harvesting leads to new germinations\r\n\r\nBest wishes of peace, joy and chlorophyll,\r\nThe ever healthy Broccoli Commander\n\n28) Broccoli_Commander: Sacrifice R3 Magicjohn\nAttack B1 Magicjohn\nAttack G1 Magicjohn\nAttack B1 Lettuce\n\tMagicJohn: Command fleet to MJ outpost:\r\nPrepare to receive incoming shipment of raspberry Kool Aid. You know the drill.\n\tMagicJohn: Command fleet to MJ outpost:\r\nP.S. Please instruct Major Disaster&#39;s wife to stop rearranging our fleet to accommodate her &quot;feng shui&quot; impulses. Isn&#39;t ANYONE in charge out there?\n\tBroccoli_Commander: We are looking forward to feeding on your decomposing bodies.\r\n\r\nPS Thanks for the game, I may have beaten you in space but you are light years ahead in eloquence ;)\n\tMagicJohn: Well played!  It&#39;s been a while since I have been that thoroughly annihilated&#133;&#133;.  Going back to home base for more advanced tactical classes&#133;&#133;. May recruit Ender&#133;..\n\n\nHomeworlds Online (SDG# 24604)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.10, Ended: 2013.11.15\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld B2 R1 G3\n\n2) Broccoli_Commander: Homeworld B1 R2 G3\n\n3) wil: Build G1 Wil\n\twil: Oh, these short unis...\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) wil: Trade G1 Y1 Wil\n\tBroccoli_Commander: ?\n\twil: you&#39;ve done built us a short universe....we are one 3 star away or two moves away from each other...this is only the second time I&#39;ve played this...\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) wil: Build G1 Wil\n\tBroccoli_Commander: Ha! That was not intended! (I meant to h b1 r3 g3)\n\twil: well this is another fine mess you&#39;ve gotten us into.\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\twil: The goal, videos which teach the intracies of games of homeworlds.   The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn&#39;t see coming or outplayed, or played a very good game themselves against an admirable foe...  And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds.....   You pick the game number (from the archive) and if you wish we give you credit for your half of the game....  If you&#39;d like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\tBroccoli_Commander: Heh nice project! Are you its instigator?\r\nI might submit, but I&#39;ll need some archive browsing time... deadline?\n\n9) wil: Build Y1 Wil\n\tBroccoli_Commander: Well in #23216 vs ts52 I had a funny opening that led to a yellow monopole. But while I thought it was &quot;brilliant&quot; at the time, I&#39;m not sure anymore... I mean the point of the opening is rather obvious...\n\tBroccoli_Commander: In #23213 vs SilentTitan I was really helpless after turn 8 already: he had set up himself nicely for a blue monopoly and caught me totally unprepared.\n\tBroccoli_Commander: Finally #23269 vs SilentTitan was also funny:\r\nHe played for a yellow monopole (pretty much as I tried in #23216) and I went for a green monopole. \r\n\r\nI barely managed to prevent his yellow monopole and then he went for a preemptive y cat at my homeworld.\r\n\r\nA terrific war followed that I could only win by &quot;teleporting&quot; g2 repeatedly (s g2, b g2 elsewhere + build anywhere) and because I had built the lone r1 of the game somewhere.\r\n\r\nIf you want to look at one game only I would suggest this one :) But the other two are fun too I think. Note that I won&#39;t be offended at all if you judge that none of them are worth for the project ;)\n\twil: Wow, thanx for the quick response....they are gonna be excited!  \r\n\r\nno deadline, yes I am instigating, the idea is to review them and pick ones to add &#39;color commentary&#39; them thinking outloud about moves and what they do to figure out what to do next...\n\n10) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n11) wil: Build Y2 Wil\n\tBroccoli_Commander: Hehe I could not resist going through the old games again ;) Hence the quick reply. But this is really a nice idea! Did you get support from other people of the community already?\r\n\r\nAnother thing I&#39;ve been thinking about is a smartphone version of homeworlds! It is a hobby of mine... I dunno if there would be any interest from the community and/or creators of the game, though?\n\twil: Oh we&#39;ve been drooling of the concept of an app....where you could drag and drop ships from star to star, to and from the bank....real time reactions and a live chat feature with players....an actual coin to move to lock in your play....it would be amazing...you have that talent??\n\n12) Broccoli_Commander: Trade G1 R1 Blueberry\n\n13) wil: Trade Y1 R1 Wil\n\n14) Broccoli_Commander: Build G1 Broccoli_commander\n\n15) wil: Move Y2 Wil Blueberry\n\n16) Broccoli_Commander: Build G1 Broccoli_commander\n\tBroccoli_Commander: Hell I&#39;m not on top of this game :D :D :D :D\r\n\r\nHey nice to hear that there would be excitement about an app! I was wondering which platform would be the best... Basically iOS is the most convenient because they provide servers for matchmaking whereas (as far as I know) we need to provide our own server on the other platforms (android, windows phone, ... )\r\n\r\nNow I&#39;m definitely not ready to invest money into this, so I think I would do it for iOS. Do you have an iPhone?\r\n\r\nThe other possibility would be to make a plain windows game; but I guess mobile platforms are preferred nowadays?\r\n\r\nBut otherwise yeah I would be able to make it (hopefully :D) \n\n17) wil: Sacrifice R1 Wil\nAttack R1 Blueberry\n\n18) Broccoli_Commander: Discover G1 Broccoli_commander B3 Muffin\n\n19) wil: Move G1 Wil Blueberry\n\twil: whew\n\n20) Broccoli_Commander: Build G2 Muffin\n\n21) wil: Build G2 Wil\n\twil: short uni issues are crazy\n\twil: You up early or late?\n\tBroccoli_Commander: Its noon here, you?\n\n22) Broccoli_Commander: Trade G2 R2 Muffin\n\twil: you in Europe?\n\twil: I&#39;m on the east coast USA\n\n23) wil: Build G2 Blueberry\n\tBroccoli_Commander: yep I&#39;m in europe, so you&#39;re up very late or reasonably early now?\n\n24) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Muffin\nBuild G3 Broccoli_commander\nBuild Y1 Broccoli_commander\n\n25) wil: Sacrifice Y2 Blueberry\nMove G1 Blueberry Broccoli_commander\nMove G2 Blueberry Broccoli_commander\nCatastrophe Broccoli_commander G\n\twil: unreasonably early, I was on holiday for a couple of years..back at work now...  looks like i missed an opportunity already...\n\n26) Broccoli_Commander: Move Y1 Broccoli_commander Muffin\n\tBroccoli_Commander: Well my opening was really bad.... Indeed you could have killed me already :|\n\n27) wil: Build Y2 Wil\n\n28) Broccoli_Commander: Sacrifice G2 Muffin\nBuild Y2 Muffin\nBuild Y2 Broccoli_commander\n\n29) wil: Move Y2 Wil Blueberry\n\n30) Broccoli_Commander: Trade Y2 G2 Broccoli_commander\n\n31) wil: Sacrifice G3 Wil\nBuild Y2 Blueberry\nBuild Y3 Wil\nBuild R1 Blueberry\n\n32) Broccoli_Commander: Build Y3 Broccoli_commander\n\n33) wil: Trade Y3 R3 Wil\n\n34) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Topping\n\n35) wil: Build Y3 Wil\n\n36) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild Y3 Topping\nBuild R2 Muffin\n\n37) wil: Discover Y1 Wil G3 G3\n\n38) Broccoli_Commander: Move R2 Muffin Broccoli_commander\n\n39) wil: Sacrifice Y2 Blueberry\nMove R1 Blueberry Broccoli_commander\nMove R1 Blueberry Broccoli_commander\nCatastrophe Broccoli_commander R\n\twil: now somebodies up late!\n\tBroccoli_Commander: Yes indeed.... way too late actually\n\n40) Broccoli_Commander: Build Y2 Muffin\n\n41) wil: Move Y3 Wil G3\n\n42) Broccoli_Commander: Build R1 Muffin\n\n43) wil: Trade R3 G3 Wil\n\n44) Broccoli_Commander: Build G1 Muffin\n\twil: we gotta play a real game after this...this is just so wild....not that I am good at the regular game...but this is foriegn...\n\n45) wil: Sacrifice Y1 G3\nMove G2 Wil Muffin\n\twil: do you have any locals you play homeworlds with?  the physical game?\n\n46) Broccoli_Commander: Attack G2 Muffin\n\tBroccoli_Commander: No, I only played once with physical pieces unfortunately. Sure we can play again :)\n\n\twil: Knowledge of this game is quite limited by me...I cannot prolong the agony any longer...\n\tBroccoli_Commander: I should never have won this game :D It was an intense uphill battle...\n\twil: Yes, I blew it early on...didn&#39;t see the win...  \n\nHomeworlds Online (SDG# 24628)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.15, Ended: 2013.11.23\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\tBroccoli_Commander: Let&#39;s play a normal game! (don&#39;t pick a h r3 b3 g3* please :D)\n\tBroccoli_Commander: For the app thing: do you have windows 8?\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\twil: I&#39;ll have to check on my other computer...I use an asus droid most of the time...are you workin on somethin??\n\n4) wil: Build G1 Wil\n\tBroccoli_Commander: Not quite yet, still prospecting to see what would be the best platform...\n\twil: nah, I am on windows7...  over here seems the most popular are droids and ios\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\tBroccoli_Commander: Yeah droid is the one I know the least but it is also the most popular... I&#39;ll have a look into droid first [no promises on the whole thing, don&#39;t tell all your friends yet :D]\n\n6) wil: Trade G1 Y1 Wil\n\twil: Where was your one live game??   and I know i asked you about the broccoli commander name...I was accusing Andy of bein sneaky (tirade)\n\twil: Where was your one live game??   and I know i asked you about the broccoli commander name...I was accusing Andy of bein sneaky (tirade)\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: Build Y1 Wil\n\tBroccoli_Commander: At a friend s place, but he did not particularly like it...\r\nas for my name it was just an invention.. \n\n9) Broccoli_Commander: Build Y2 Broccoli_commander\n\twil: I don&#39;t know if we spoke about it  But the inventor of the pyramids had a cartoon character of broccoli, and often calls himself the emporer...so broccoli commander made me think it was him at first....\n\n10) wil: Build Y2 Wil\n\tBroccoli_Commander: Haha ok I see... Well dlwillson also thought I was Andy. I understand now...\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry\n\n12) wil: Trade Y1 R1 Wil\n\n13) Broccoli_Commander: Trade Y1 R1 Blueberry\n\twil: That was probably the reason...from the comic book....Andy doesn&#39;t look at broccoli as food but as a cartoonn character.\n\n14) wil: B Y1 Wil\n\n15) Broccoli_Commander: Move G1 Broccoli_commander Blueberry\n\n16) wil: Discover R1 Wil G2 G2\n\n17) Broccoli_Commander: Build R2 Blueberry\n\n18) wil: Build R2 G2\n\n19) Broccoli_Commander: Trade R2 Y2 Blueberry\n\n20) wil: Trade Y1 B1 Wil\n\n21) Broccoli_Commander: Build R2 Blueberry\n\n22) wil: Build B1 Wil\n\n23) Broccoli_Commander: Discover R2 Blueberry G2 Lettuce\n\n24) wil: Move B1 Wil G2\n\n25) Broccoli_Commander: Build R2 Lettuce\n\n26) wil: Trade R1 Y1 G2\n\n27) Broccoli_Commander: Build G1 Broccoli_commander\n\n28) wil: Build B2 G2\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y1 Broccoli_commander\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n30) wil: Build Y3 G2\n\n31) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n32) wil: Discover B2 G2 G3 G3\n\twil: I was so close to catastrophing your homeworld..\n\n33) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\tBroccoli_Commander: I would have preferred ;-)\n\n34) wil: Move Y1 G2 G3\n\twil: It was tempting...as I looked at moves it kept coming back...\n\n35) Broccoli_Commander: Build Y3 Broccoli_commander\n\n36) wil:\n\nMove Y1 G3 Broccoli_commander\nCatastrophe Broccoli_commander Y\n\n37) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Blueberry\nBuild R3 Blueberry\n\n38) wil: Build R3 G2\n\n39) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove R1 Blueberry G2\nMove R1 Blueberry G2\nCatastrophe G2 R\n\n40) wil: Trade Y2 R2 Wil\n\n41) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Blueberry\nBuild R1 Blueberry\n\n42) wil: Move R2 Wil G2\n\n43) Broccoli_Commander: Discover R1 Blueberry Y2 Cauliflower\n\n44) wil: Sacrifice Y1 Wil\nMove B2 G3 Cauliflower\n\n45) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove G1 Blueberry G2\nMove G1 Blueberry G2\nMove G2 Blueberry G2\nCatastrophe G2 G\n\n46) wil: Trade B1 R1 Wil\n\n47) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R2 Blueberry\nBuild R3 Cauliflower\nBuild Y1 Blueberry\n\n48) wil: Discover B2 Cauliflower Y3 Y3\n\n49) Broccoli_Commander: Move R3 Blueberry Broccoli_commander\n\twil: nice, I missed that...\n\n50) wil: Build G1 Wil\n\twil: reboot to a new game...with you with a big lead...\n\n51) Broccoli_Commander: Trade Y1 G1 Blueberry\n\tBroccoli_Commander: Thanks, at last you missed something, I was seriously worried ;-)\r\nAnd I dont know if it was your plan, but you forced my hand: you could have done the same with your blues and my beloved Blueberry  \n\n52) wil: Trade G1 Y1 Wil\n\n53) Broccoli_Commander: Trade R3 Y3 Broccoli_commander\n\n54) wil: Build G1 Wil\n\n55) Broccoli_Commander: Build R3 Blueberry\n\n56) wil: Discover G1 Wil Y2 Y2\n\twil: Yeah...i blew it as usual..  my issue is I don&#39;t take enough time to look at these games.  I should set up a physical set and evaluate longer...but i don&#39;t have the patience...i shoot from the hip and make mistakes...time for me to wake up.\n\n57) Broccoli_Commander: Trade R3 G3 Blueberry\n\n58) wil: Move R1 Wil Y2\n\n59) Broccoli_Commander: Build R3 Blueberry\n\n60) wil: Move G1 Y2 Y3\n\n61) Broccoli_Commander: Move G3 Blueberry Y2\n\n62) wil: Build G2 Wil\n\n63) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove G3 Y2 Wil\nMove R3 Cauliflower Wil\nMove R3 Blueberry Broccoli_commander\n\n64) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Wil\n\n65) Broccoli_Commander: Attack Y1 Wil\nCatastrophe Wil G\n\n\twil: thank you for the beating!\n\tBroccoli_Commander: Anytime ;)\r\n\r\nAny news from your best-games-replay project?\n\twil: We are discussing the format, I&#39;d like to make it easy and less complicated so it can be accomplished quickly and improved upon if it shows value...  others want more polish and professionalism....but expect something accomplished early next year.\n\twil: on the homeworlds ap front....odds are IOS would be the best format...as it is still the most widely used...\n\tBroccoli_Commander: OK good news :)\r\nFor the app-&gt;it might actually be possible to do a multiplatform thing using &quot;Unity&quot;/ but do not expect anything before next year :P\n\nHomeworlds Online (SDG# 24739)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.19, Ended: 2014.1.7\nParticipants: TeeTeeTee (S), SirRuthvenMurgatroyd (N)\nWinner: TeeTeeTee\n\n1) SirRuthvenMurgatroyd: Homeworld B1 Y2 G3\n\n2) TeeTeeTee: Homeworld Y1 B3 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\tTeeTeeTee: Greetings! Thanks for accepting my challenge.\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n10) TeeTeeTee: Discover Y1 Teeteetee G2 Stepney\n\n11) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n12) TeeTeeTee: Build Y2 Stepney\n\n13) SirRuthvenMurgatroyd: Discover Y2 Sirruthvenmurgatroyd Y3 Aleph\n\n14) TeeTeeTee: Trade Y1 R1 Teeteetee\n\n15) SirRuthvenMurgatroyd: Discover Y2 Aleph G2 Beth\n\n16) TeeTeeTee: Build R1 Teeteetee\n\n17) SirRuthvenMurgatroyd: Build G1 Sol\n\n18) TeeTeeTee: Move Y2 Stepney Sol\n\n19) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n20) TeeTeeTee: Build G3 Teeteetee\n\n21) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\n22) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild Y1 Sol\nBuild Y3 Stepney\n\n23) SirRuthvenMurgatroyd: Move Y2 Beth Sol\nCatastrophe Sol Yellow\n\n24) TeeTeeTee: Discover G3 Teeteetee Y2 Aldgate\n\n25) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y3 Gimel\n\n26) TeeTeeTee: Move Y3 Stepney Gimel\n\n27) SirRuthvenMurgatroyd: Discover G3 Gimel R2 Dalet\n\n28) TeeTeeTee: Move Y3 Gimel Sirruthvenmurgatroyd\n\n29) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Yellow\n\n30) TeeTeeTee: Move G3 Aldgate Sirruthvenmurgatroyd\n\n31) SirRuthvenMurgatroyd: Trade G1 Y1 Sirruthvenmurgatroyd\n\n32) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack Y1 Sirruthvenmurgatroyd\n\n33) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n34) TeeTeeTee: Build G1 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Green\n\tTeeTeeTee: Thanks for the game!\n\n\nHomeworlds Online (SDG# 24744)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.20, Ended: 2013.12.11\nParticipants: goulo (S), agentofchaos (N)\nWinner: goulo\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) goulo: Homeworld R3 B1 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\tagentofchaos: Thanks, you too!\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) goulo: Build G1 Goulo\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) goulo: Trade G1 Y1 Goulo\n\n9) agentofchaos: Discover Y1 Agentofchaos G3 Hadaeon\n\n10) goulo: Build Y1 Goulo\n\n11) agentofchaos: Build Y2 Hadaeon\n\n12) goulo: Build Y2 Goulo\n\n13) agentofchaos: Trade G1 B1 Agentofchaos\n\n14) goulo: Discover Y1 Goulo G2 Smeraldo\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) goulo: Discover Y2 Goulo R2 Rubeno\n\n17) agentofchaos: Build B2 Agentofchaos\n\n18) goulo: Sacrifice G3 Goulo\nBuild Y2 Rubeno\nBuild Y3 Smeraldo\nBuild Y3 Goulo\n\n19) agentofchaos: Move Y1 Hadaeon Agentofchaos\n\n20) goulo: Build Y3 Goulo\n\n21) agentofchaos: Move B2 Agentofchaos Hadaeon\n\n22) goulo: Trade Y1 R1 Goulo\n\n23) agentofchaos: Trade B1 R1 Agentofchaos\n\n24) goulo: Trade R1 B1 Goulo\n\n\nHomeworlds Online (SDG# 24473)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.11.22, Ended: 2014.1.4\nParticipants: Phil_Coulson (S), wil (N), Leonard_Daniels (E)\nWinner: wil\n\n1) wil: Homeworld B2 G1 Y3\n\twil: Make sure you pick a different homeworld\n\n2) Leonard_Daniels: Homeworld Y1 B3 G3\n\n3) Phil_Coulson: Homeworld B3 R2 G3\n\n4) wil: Build Y1 Wil\n\n5) Leonard_Daniels: Build G1 Leonard_daniels\n\n6) Phil_Coulson: Build G1 Phil_coulson\n\n7) wil: Discover Y1 Wil G3 G3\n\n8) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\n9) Phil_Coulson: Trade G1 Y1 Phil_coulson\n\n10) wil: Build Y1 Wil\n\n11) Leonard_Daniels: Build B1 Leonard_daniels\n\n12) Phil_Coulson: Build Y2 Phil_coulson\n\n13) wil: Build Y2 Wil\n\n14) Leonard_Daniels: Build G1 Leonard_daniels\n\tLeonard_Daniels: Arse.  Frozen out of the yellow economy this early.  At some point I&#39;m just going to have to accept that I&#39;m terrible at this game.\n\n15) Phil_Coulson: Discover Y1 Phil_coulson G1 G1\n\n16) wil: Discover Y2 Wil B3 B3\n\n17) Leonard_Daniels: Discover B1 Leonard_daniels G2 G2\n\tPhil_Coulson: Or you can build a blue fleet and eventually trade them for yellows. \n\twil: or trade g3 for y3....but defiantly not frozen out...\n\n18) Phil_Coulson: Build Y2 Phil_coulson\n\tLeonard_Daniels: Didn&#39;t even occur to me.  Definitely terrible at this game.\n\n19) wil: Trade Y3 G3 Wil\n\n20) Leonard_Daniels: Build B1 G2\n\n21) Phil_Coulson: Trade Y2 B2 Phil_coulson\n\n22) wil: Build Y2 G3\n\n23) Leonard_Daniels: Trade B1 R1 G2\n\n24) Phil_Coulson: Move B2 Phil_coulson G1\n\n25) wil: Discover Y2 G3 B1 B1\n\n26) Leonard_Daniels: Build R1 G2\n\twil: I have never had anyone else use my star nomenclature before and now an entire game of it??\r\n\n\n27) Phil_Coulson: Build G1 Phil_coulson\n\n28) wil: Sacrifice G3 Wil\nBuild Y2 B1\nBuild Y3 B1\nBuild Y3 Wil\n\n29) Leonard_Daniels: Build G2 Leonard_daniels\n\n30) Phil_Coulson: Move Y2 Phil_coulson B1\nCatastrophe B1 Y\n\tPhil_Coulson: Well, this sets me back, but the move is forced, so I have to play it.\n\tPhil_Coulson: Well, this sets me back, but the move is forced, so I have to play it.\n\n31) wil: Trade Y1 R1 Wil\n\twil: ouch\n\n32) Leonard_Daniels: Trade G1 Y1 Leonard_daniels\n\n33) Phil_Coulson: Trade G1 R1 Phil_coulson\n\n34) wil: Build R2 Wil\n\n35) Leonard_Daniels: Move Y1 Leonard_daniels G2\n\n36) Phil_Coulson: Build Y2 G1\n\n37) wil: Build Y2 Wil\n\n38) Leonard_Daniels: Move R1 G2 Leonard_daniels\n\n39) Phil_Coulson: Move Y1 G1 Phil_coulson\n\twil: now this is synister yes?? only can attack left? I&#39;ve never done this yet...\n\tLeonard_Daniels: Is it?  If it is, I&#39;d forgotten.  Sinister doesn&#39;t affect who you CAN attack, though, does it?  I thought it just affected your victory conditions.\n\n40) wil: Trade Y3 G3 Wil\n\n41) Leonard_Daniels: Build R2 Leonard_daniels\n\n42) Phil_Coulson: Move R1 Phil_coulson G1\n\twil: i dunno...never done it...I&#39;m asking...so it is a free for all?\n\tLeonard_Daniels: Pretty sure it&#39;s a free-for-all.  It doesn&#39;t say Sinister at the top of the page, anyway.  In any case, I&#39;ve looked up the rules for Sinister Homeworlds and you can attack anybody you like, it&#39;s just that you win if the player to your left is eliminated.\n\n43) wil: Build G1 Wil\n\twil: thx...although the only way I&#39;ve seen these games end so far is get timed out...\n\n44) Leonard_Daniels: Build B1 G2\n\n45) Phil_Coulson: Build R2 G1\n\n46) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 B3\nBuild Y3 Wil\n\n47) Leonard_Daniels: Build Y3 G2\n\n48) Phil_Coulson: Discover R1 G1 G3 G3prime\n\n49) wil: Move Y3 B3 G1\n\n50) Leonard_Daniels: Move Y1 G2 Leonard_daniels\n\n51) Phil_Coulson: Sacrifice G3 Phil_coulson\nBuild Y3 Phil_coulson\nBuild R3 G3prime\nBuild R3 G3prime\n\n52) wil: Sacrifice R2 Wil\nAttack R2S G1\nAttack Y2S G1\n\tPhil_Coulson: And I would have expected you to move the y1 to planet g1 rather than back to your homeworld!\n\n53) Leonard_Daniels: Sacrifice Y3 G2\nMove R1 G2 G1\nMove R1 Leonard_daniels G2\nMove R1 G2 G1\n\tPhil_Coulson: Shit. That doesn&#39;t work because you moved your y1 from the right place to a bad place so you can&#39;t help out next turn.\n\twil: Help out??  What is this &#39;help out&#39; notion?  Am I playing a team or two individual players?\n\tPhil_Coulson: No, but if any of us get too powerful the the others help out. In this case, had Leonard moved his y1 into the &#39;g1&#39; system, that would be asking me to sacrifice and build a y3 and blow up all the yellow commodity in the system. It would help Leonard the most, but it would help me too as it would save my little ships, so I would take that offer. You would similarly do the same to me if I were intruding. That&#39;s the fun of 3-player games.\r\n\r\nHowever, Leonard made a move worse than passing, and didn&#39;t build big ships. I have to wonder what that is about. As it is, you have a 90% chance of winning, Wil, as you will have all the yellow ships soon. If Leonard doesn&#39;t aggressively attack you now, I should simply resign. \n\n54) Phil_Coulson: Sacrifice B2 G1\nTrade R3 Y3 G3prime\nTrade Y1 G1 Phil_coulson\n\tPhil_Coulson: I think my position is lost no matter what, so I&#39;ll make a desperation move.\n\n55) wil: Attack R1E G1\n\twil: golly day....g3 prime looks like come kill me...  it can&#39;t grow, can&#39;t trade, can&#39;t move..witout a sacrifice in the home world...and the home world can&#39;t grow,    It is quite the stiuation...\n\tLeonard_Daniels: Phil, were you not listening when I told you I was terrible at this game?  Lesson for the future: never make plans based on the assumption that I know what I&#39;m doing...\n\n56) Leonard_Daniels: Sacrifice G2 Leonard_daniels\nBuild R2 G1\nBuild R3 Leonard_daniels\nCatastrophe G1 R\n\tPhil_Coulson: Yeah, I&#39;ve no idea what I&#39;m doing here either. But I know you want to move everything out of your home world but one big and one small ship of the the two colors different from your stars.\r\n\r\nand wil is right, I can&#39;t move my red ships. \n\n57) Phil_Coulson: Discover R3 G3prime Y1 Y1\n\tPhil_Coulson: My blue ship was dead in the water too, so might as well sacrifice it to change colors, I guess.\n\n58) wil: M G1 Wil B3\n\n59) Leonard_Daniels: Build G2 Leonard_daniels\n\n60) Phil_Coulson: Build G2 Phil_coulson\n\n61) wil: Build R1 Wil\n\n\tLeonard_Daniels: Sorry guys, still not used to this system; was on holiday for a couple of days in the Yorkshire Dales without internet access.  Haven&#39;t been playing a game over holidays before so it slipped my mind that this would be problematic.\n\twil: It happens.   Now it is me and you Phil....   Are you guys both from England?\n\tPhil_Coulson: Nah, not worth it. Should have ended when one player is out, shouldn&#39;t it?\n\twil: ah phooey....I like playing them out...I&#39;ve yet to see a three player game last....someone always drops out....but a two player game with that large a bank is awfully interesting.    I was so ready to go get his ships!\n\nHomeworlds Online (SDG# 24715)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.25, Ended: 2013.11.29\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld R2 B1 G3\n\n2) Broccoli_Commander: Homeworld Y2 B3 G3\n\twil: Just got lucky in a game vs SilentTitan, got TS52 last time, but he&#39;s got the best of me this time...not doing so good in my ladder battle with Aristos...\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: Nice :) Well these guys are tough, really looking forward to playing them on the ladder too! \r\n(I&#39;ve won the game against MagicJohn, just waiting for his last turn...)\n\tBroccoli_Commander: Have you ever played TwoShort?\n\twil: Not yet...everyone tells me they&#39;ve never beat two short...he lost the top because the fell asleep at the wheel and got timed out...didn&#39;t take him long to get back up there.\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) wil: Trade G1 R1 Wil\n\tBroccoli_Commander: the final boss of the game, can&#39;t wait :D\n\twil: Zoltar will be a good one for you to prepare on...he hasn&#39;t been able to get by two short..   \n\n6) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry\n\n7) wil: Build G1 Wil\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) wil: Trade G1 Y1 Wil\n\n10) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n11) wil: Build R1 Wil\n\n12) Broccoli_Commander: Build B2 Broccoli_commander\n\twil: Yes way to slow on thet uptake, I realized it after I did it that that was the move\n\n13) wil: Discover R1 Wil G3 G3\n\tBroccoli_Commander: Well you would have needed to re-trade one of yours so you had no good choice. But this is a minor victory...\n\n14) Broccoli_Commander: Discover B2 Broccoli_commander G1 Pea\n\n15) wil: Build R1 Wil\n\n16) Broccoli_Commander: Build B2 Pea\n\twil: minor victories at thiss stage create huge advantagws later\n\n17) wil: Build R2 G3\n\n18) Broccoli_Commander: Trade B2 R2 Pea\n\n19) wil: Build R3 G3\n\n20) Broccoli_Commander: Build R3 Pea\n\n21) wil: Build Y1 Wil\n\n22) Broccoli_Commander: Trade R3 Y3 Pea\n\twil: my mistakes are compounding..opening more doors for you to take advantage of...\n\n23) wil: Sacrifice Y1 Wil\nDiscover R2 G3 G1 G1\n\tBroccoli_Commander: Go easy on yourself, you have not really made mistakes!?\n\n24) Broccoli_Commander: Build R3 Pea\n\twil: yes, exactly what i meant\n\n25) wil: Build R3 G1\n\n26) Broccoli_Commander: Build G2 Broccoli_commander\n\n27) wil: Build G2 Wil\n\n28) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Pea\nBuild B2 Pea\nBuild B3 Broccoli_commander\n\n29) wil: Trade G3 B3 Wil\n\n30) Broccoli_Commander: Trade B2 Y2 Pea\n\n31) wil: Discover R1 Wil Y3 Y3\n\n32) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n33) wil: Trade B3 G3 Wil\n\n34) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\nBuild B2 Broccoli_commander\n\n35) wil: Build Y1 Wil\n\n36) Broccoli_Commander: Move B1 Broccoli_commander Blueberry\n\n37) wil: Move Y1 Wil G3\n\n38) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B3 Pea\nBuild B3 Blueberry\n\n39) wil: Build Y1 G3\n\n40) Broccoli_Commander: Trade B3 Y3 Blueberry\n\n41) wil: Build Y2 G3\n\twil: I&#39;ve been in a game of waitng for you to make a mistake and provide an opening....   hurry up will ya?\n\n42) Broccoli_Commander: Move Y2 Pea G3\nCatastrophe G3 Y\n\n43) wil: Build Y1 Wil\n\twil: I&#39;s still waitin\r\n\n\n44) Broccoli_Commander: Move R2 Pea Y3\n\tBroccoli_Commander: did that qualify?\n\twil: nah...looks like you came out ahead agin...\n\n45) wil: Move Y1 Wil G3\n\n46) Broccoli_Commander: Attack R1 Y3\n\n47) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G3\nBuild Y2 Wil\n\n48) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y2 Blueberry\nBuild B3 Blueberry\n\n49) wil: Sacrifice Y2 Wil\nMove Y1 G3 Blueberry\nMove Y1 G3 Blueberry\nCatastrophe Blueberry Y\n\n50) Broccoli_Commander: Trade B3 Y3 Blueberry\n\n51) wil: Build Y1 Wil\n\n52) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B3 Blueberry\nBuild Y1 Pea\n\n53) wil: Move Y1 Wil G3\n\n54) Broccoli_Commander: Move B3 Pea Y3\n\n55) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y2 G3\n\n56) Broccoli_Commander: Sacrifice Y3 Pea\nMove B2 Pea Y3\nMove R1 Y3 Wil\nMove R2 Y3 Wil\nCatastrophe Wil R\n\n57) wil: Sacrifice Y2 G3\nMove R3 G3 Pea\nMove R1 G3 Pea\n\n58) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove B2 Pea Y3\nMove B2 Y3 Wil\nMove B2 Y3 Wil\n\n59) wil: Build R1 Pea\nCatastrophe Pea R\n\n60) Broccoli_Commander: Move B3 Y3 Wil\nCatastrophe Wil B\n\twil: nice\r\n\n\n\twil: it was that R3 that was my issue...thanx for the game\n\twil: it was that R3 that was my issue...thanx for the game\n\tBroccoli_Commander: Sure, the r3 was a key piece too\r\n\r\nThanks for the game\n\nHomeworlds Online (SDG# 24784)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.26, Ended: 2014.1.1\nParticipants: ts52 (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\tBroccoli_Commander: Greetings\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tts52: Salutations\n\n4) ts52: Build G1 Ts52\n\tBroccoli_Commander: It&#39;s a pleasure meeting you again. Took a while to crack the dead wood in the abysses of the ladder...\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) ts52: Build G1 Ts52\n\n9) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) Broccoli_Commander: Build B1 Broccoli_commander\n\n12) ts52: Build G1 Ts52\n\n13) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n14) ts52: Move Y1 Ts52 Gonzo\n\n15) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Lettuce\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n16) ts52: Discover G1 Gonzo B3 Grover\n\n17) Broccoli_Commander: Sacrifice B2 Lettuce\nTrade B3 G3 Broccoli_commander\nTrade B3 Y3 Lettuce\n\n18) ts52: Move G1 Ts52 Gonzo\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Lettuce\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n20) ts52: Build G1 Ts52\n\n21) Broccoli_Commander: Trade B3 R3 Lettuce\n\n22) ts52: Trade G1 R1 Ts52\n\n23) Broccoli_Commander: Move R3 Lettuce Gonzo\n\n24) ts52: Sacrifice Y1 Gonzo\nMove G1 Gonzo Grover\n\n25) Broccoli_Commander: Build B3 Lettuce\n\n26) ts52: Trade G1 Y1 Grover\n\n27) Broccoli_Commander: Trade B3 R3 Broccoli_commander\n\n\nHomeworlds Online (SDG# 24547)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.26, Ended: 2013.12.1\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld G1 B2 Y3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\tOnePageWars: gl hf!\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Build Y1 Onepagewars\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) OnePageWars: Trade Y1 B1 Onepagewars\n\n8) SilentTitan: Build G1 Silenttitan\n\tOnePageWars: I can&#39;t believe I almost did that.\n\n9) OnePageWars: Build B1 Onepagewars\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\tSilentTitan: Yeah that might have been counterproductive.\n\n11) OnePageWars: Discover B1 Onepagewars G3 Zendo\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) OnePageWars: Build B2 Zendo\n\tOnePageWars: guess which pyramid game I recently got excited about?\n\n14) SilentTitan: Trade B2 R2 Silenttitan\n\n15) OnePageWars: Trade B2 R2 Zendo\n\n16) SilentTitan: Build B2 Silenttitan\n\n17) OnePageWars: Sacrifice Y3 Onepagewars\nDiscover B1 Zendo R1 Nada\nMove B1 Nada Silenttitan\nPass\nCatastrophe Silenttitan B\n\n18) SilentTitan: Discover G3 Silenttitan Y3 Sol\n\n19) OnePageWars: Build R1 Zendo\n\tOnePageWars: sry.\n\tSilentTitan: LOL...  No need to apologize.\n\n20) SilentTitan: Move G3 Sol Onepagewars\n\n21) OnePageWars: Build Y1 Onepagewars\n\n22) SilentTitan: Sacrifice R2 Silenttitan\nAttack Y1 Onepagewars North\nAttack Y1 Onepagewars North\n\n23) OnePageWars: Sacrifice R2 Zendo\nAttack Y1S Onepagewars\nAttack Y1S Onepagewars\n\n24) SilentTitan: Trade G3 R3 Onepagewars\n\tOnePageWars: nice.\r\ndidn&#39;t know you could do that.\r\nbut it makes sense.\n\n25) OnePageWars: Sacrifice Y1 Onepagewars\nMove R1 Zendo Silenttitan\n\tOnePageWars: I&#39;ll take the trade :)\n\tOnePageWars: losing trade tech is harsh. :(\n\n26) SilentTitan: Attack R1 Silenttitan North\n\tSilentTitan: You still have trade tech, I am not understanding your lament.\n\tSilentTitan: I&#39;m going to guess homeworlds.\n\n\tSilentTitan: Thanks. Did you join the ladder yet?\n\tOnePageWars: nah.\n\tOnePageWars: wp. I enjoyed it. This game is so deep.\n\nHomeworlds Online (SDG# 24675)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.26, Ended: 2013.11.27\nParticipants: Marmalade (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 24781)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.27, Ended: 2013.12.2\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: Thanx for the game!   I  believe I was in a 4 way game with you when I just started learning but havn&#39;t played??   I&#39;m still learning...I&#39;m sure you&#39;ll teach me some more lessons!\n\twil: Thanx for the game!   I  believe I was in a 4 way game with you when I just started learning but havn&#39;t played??   I&#39;m still learning...I&#39;m sure you&#39;ll teach me some more lessons!\n\n2) OnePageWars: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: gl hf. :)\n\n5) wil: Trade G1 B1 Wil\n\n6) OnePageWars: Trade G3 Y3 Onepagewars\n\n7) wil: Build B1 Wil\n\tOnePageWars: I&#39;ve got a 4 player game available for joining currently. It has the sinister variant, so we&#39;ll see how that goes with the adjacent homeworld problem and stuff. :)\n\twil: yes, I learned I so disliked the adjacent...I&#39;ve only got involved with threes since.   and have run into a couple of binaries that were short uni&#39;s and that drove me crazy...but if you don&#39;t fill it...maybe I&#39;ll play if you don&#39;t get anyone soon....sinister means you only attack left??\n\n8) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: yeah. The more I think about it the more I&#39;m tempted to cancel the game and create one that&#39;s identical except for 3 players. Acutally, I&#39;m going to go do that now if no-one has joined.\n\tOnePageWars: My intent was to set it up for three players with one of them being you if you wanted and the other being random? Is that what was created or was a 1v1 challenge inadvertently created?\n\n9) wil: Build G1 Wil\n\n10) OnePageWars: Build G2 Onepagewars\n\n11) wil: Trade G1 Y1 Wil\n\n12) OnePageWars: Trade G1 R1 Onepagewars\n\n13) wil: Discover B1 Wil G3 G3\n\n14) OnePageWars: Discover Y3 Onepagewars G1 Starcraft2\n\n15) wil: Build B2 Wil\n\n16) OnePageWars: Build R1 Onepagewars\n\twil: Ok now...movin your big gun outta your homeworld??  like your goalie comin out of the goal....scary part!\n\n17) wil: Build Y1 Wil\n\tOnePageWars: It&#39;s only a gun if there&#39;s a red with it. :) I&#39;m a peaceful civilization before I start attacking. :)\n\tOnePageWars: PS - I know that you know the rules of the game, my previous comment was not meant in any way to imply ignorance on your part (which would be an incorrect implication, btw) but rather as a lighthearted joke.\n\tOnePageWars: I hope I didn&#39;t give the wrong impression. Sorry if I did.\n\twil: no worries...\n\n18) OnePageWars: Move R1 Onepagewars Starcraft2\n\twil: my concern was not for me...but for your open goal.\n\twil: I also accepted that challenge game...\n\n19) wil: Trade B2 R2 Wil\n\n20) OnePageWars: Trade G2 B2 Onepagewars\n\n21) wil: Build B2 G3\n\n22) OnePageWars: Build B3 Onepagewars\n\n23) wil: Sacrifice Y1 Wil\nDiscover B1 G3 Y1 Y1\n\n24) OnePageWars: Move B2 Onepagewars Y1\n\n25) wil: Sacrifice G3 Wil\nBuild B3 G3\nBuild B3 Y1\nBuild Y1 Wil\n\tOnePageWars: your naming conventions are messing with me, lol.\n\twil: I am in a three way game where everyone decided to take on my nomenclature....it is drving me CRAZY\n\n26) OnePageWars: Build R1 Onepagewars\n\tOnePageWars: hey, you took trade tech. :( well, at least I still have trade tech ships.\n\n27) wil: Trade B3 R3 Y1\n\n28) OnePageWars: Build R2 Starcraft2\n\tOnePageWars: ok, I&#39;m getting scared now.\n\n29) wil: Trade B3 G3 G3\n\tOnePageWars: and yes, I am aware of the possibility of a r3 sac attack on my homeworld.\n\n30) OnePageWars: Move R2 Starcraft2 G3\n\n31) wil: S R2 Wil\nAttack R2 G3\nAttack B2 Y1\n\n32) OnePageWars: Build Y2 Starcraft2\n\tOnePageWars: I&#39;m thinking I should resign this position. I don&#39;t see much in the way of not losing, lol.\n\twil: You&#39;ve got a point...I intend on growing big blues and swapping them out for big guns of all colors until I control the Universe bwwahhhaaahhaaa.....but that being said...I&#39;ve stayed involved under dire straights before, because powere does go to ones head....and the lesser can often tempt the greater and take advantage of their size.  One or two catastrophes and their is a completely new game...  your choice though\n\tOnePageWars: I think I&#39;ll keep going, then, if only to learn how you close out the game so that I can improve. :)\n\n33) wil: Sacrifice G3 G3\nBuild B3 Wil\nBuild B3 G3\nBuild Y2 Wil\n\twil: that is what I did....lost dozens of games....and way too many of them the same way....but after a while you begin to see it coming and learn how to defend against it.  look up bluebird and doomsday they are often used.\n\n34) OnePageWars: Sacrifice Y3 Starcraft2\nMove B3 Onepagewars Starcraft2\nMove B3 Starcraft2 G3\nMove B3 G3 Wil\nCatastrophe Wil B\n\tOnePageWars: I&#39;ve read the strategy article at icehousegames.org (not com); I think I just need experience right now, lol.\n\n35) wil: Sacrifice Y2 Wil\nMove B3 G3 Y1\nMove B3 Y1 Onepagewars\n\n36) OnePageWars: Build R2 Starcraft2\n\twil: this is the risk of leaving your homeworld without a big gun...   Once you did it, I began setting up for this opportunity.... I laid a trap that I hoped you could not resist in blowing up my homeworld...that system was toxic...we were leaving it anyway...since you left, we like what you&#39;ve done with the place....we think we&#39;ll take it.\n\tOnePageWars: interesting; I think you had me beat just in the economy.\n\n37) wil: Sacrifice R3 Y1\nAttack R1 Onepagewars\nAttack G1 Onepagewars\nAttack R1 Onepagewars\n\twil: to me the game is a series of tipping points, I can&#39;t always identify them...which move caused it to tip in who&#39;s favor....to me the tip was you moving your gun out, it changed my focus...there were a number of moves better than that one at that juncture...if you had a specific intent, it didn&#39;t play out. ....observation not condemnation...i am learning as well.\n\tOnePageWars: No offense taken. I appreciate the constructive criticism. We&#39;re both learning. :)\n\n\nHomeworlds Online (SDG# 24788)\nVariants: &quot;Hard time&quot;\nStarted: 2013.11.27, Ended: 2013.12.31\nParticipants: wil (S), MagicJohn (N)\nWinner: wil\n\n1) MagicJohn: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B2 G3\n\tMagicJohn: Outpost established in new star system. We extend greetings to all life forms in the quadrant.\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) wil: Build G1 Wil\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\twil: thankful to be in and aware of the universe this fine day\n\n6) wil: Trade G1 Y1 Wil\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) wil: Build G1 Wil\n\n9) MagicJohn: Trade G1 B1 Magicjohn\n\n10) wil: Trade G1 B1 Wil\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) wil: Build G1 Wil\n\n13) MagicJohn: Discover Y1 Magicjohn G3 Abra\n\n14) wil: Trade G1 R1 Wil\n\n15) MagicJohn: Build G1 Magicjohn\n\n16) wil: Build R1 Wil\n\n17) MagicJohn: Trade G3 R3 Magicjohn\n\n18) wil: Discover R1 Wil G1 G1\n\n19) MagicJohn: Build R2 Magicjohn\n\n20) wil: Build G2 Wil\n\n21) MagicJohn: Build G2 Magicjohn\n\n22) wil: Discover G2 Wil B1 B1\n\n23) MagicJohn: Trade R2 Y2 Magicjohn\n\n24) wil: Build G2 Wil\n\n25) MagicJohn: Move G2 Magicjohn Abra\n\n26) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B1\nBuild B2 Wil\n\n27) MagicJohn: Build B3 Magicjohn\n\n28) wil: Move B2 Wil G1\n\n29) MagicJohn: Move B1 Magicjohn Abra\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 G1\nBuild R2 G1\n\n31) MagicJohn: Build B3 Abra\n\n32) wil: Build B3 G1\n\n33) MagicJohn: Discover G2 Abra Y1 Kadabra\n\n34) wil: Sacrifice B2 G1\nTrade R2 Y2 G1\nTrade G2 Y2 B1\n\n\twil: now while I think I was doing ok...I hate winning that way.\n\tMagicJohn: Sorry, my bad. My wife has been ill and our pat dog just developed some issues.. I shouldn&#39;t have left my move until the last minute. You were indeed winning so I took too long to analyze the board.  Congrats, MJ\n\tMagicJohn: .... make that &quot;pet&quot; dog.....\n\twil: When things are better, I&#39;d love to play again, feel free to challenge me.  I am raising a glass to a new and improved year for you and yours!!\n\tMagicJohn: Thanks! (Better make that two glasses....) Hope the new year finds you well and is happy and productive! \n\nHomeworlds Online (SDG# 24807)\nStarted: 2013.11.28, Ended: 2013.11.29\nParticipants: Ultan_the_Blind (S), Bangle_Tiger (N)\nWinner: Ultan_the_Blind\n\n1) Bangle_Tiger: Homeworld R3 B2 G3\n\n2) Ultan_the_Blind: Homeworld Y2 B1 G3\n\n3) Bangle_Tiger: Build G1 Bangle_tiger\n\n4) Ultan_the_Blind: Build G1 Ultan_the_blind\n\n5) Bangle_Tiger: Trade G1 Y1 Bangle_tiger\n\n6) Ultan_the_Blind: Discover G1 Ultan_the_blind Y3 Tatooine\n\n7) Bangle_Tiger: Build G1 Bangle_tiger\n\n8) Ultan_the_Blind: Build G1 Tatooine\n\n9) Bangle_Tiger: Discover G1 Bangle_tiger R1 Dantooine\n\n10) Ultan_the_Blind: Discover G1 Tatooine B2 Hoth\n\n11) Bangle_Tiger: Build Y1 Bangle_tiger\n\n12) Ultan_the_Blind: Build G2 Hoth\n\n13) Bangle_Tiger: Build G2 Bangle_tiger\n\n14) Ultan_the_Blind: Trade G1 Y1 Hoth\n\n15) Bangle_Tiger: Move G2 Bangle_tiger Dantooine\n\n16) Ultan_the_Blind: Build Y2 Hoth\n\n17) Bangle_Tiger: Move Y1 Bangle_tiger Dantooine\n\n18) Ultan_the_Blind: Trade Y2 R2 Hoth\n\n19) Bangle_Tiger: Build Y2 Bangle_tiger\n\n20) Ultan_the_Blind: Build G1 Hoth\n\n21) Bangle_Tiger: Move G2 Dantooine Tatooine\n\n22) Ultan_the_Blind: Discover G1 Hoth B1 Fest\n\n23) Bangle_Tiger: Move Y2 Bangle_tiger Dantooine\n\n24) Ultan_the_Blind: Move G1 Tatooine Ultan_the_blind\n\n25) Bangle_Tiger: Move Y2 Dantooine Tatooine\n\n26) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind\nBuild G2 Hoth\nBuild G3 Ultan_the_blind\nBuild G3 Fest\n\n27) Bangle_Tiger: Move G1 Dantooine Tatooine\n\n28) Ultan_the_Blind: Trade G1 R1 Ultan_the_blind\n\n29) Bangle_Tiger: Sacrifice Y2 Tatooine\nMove G1 Tatooine Fest\nMove G2 Tatooine Fest\nCatastrophe Fest Green\n\n30) Ultan_the_Blind: Build Y2 Hoth\n\n31) Bangle_Tiger: Sacrifice G3 Bangle_tiger\nBuild Y2 Dantooine\nBuild Y3 Bangle_tiger\nBuild Y3 Bangle_tiger\n\n32) Ultan_the_Blind: Sacrifice Y2 Hoth\nDiscover Y1 Hoth B1 Festus\nMove Y1 Festus Bangle_tiger\nCatastrophe Bangle_tiger Y\n\n\nHomeworlds Online (SDG# 24800)\nVariants: &quot;No undo, Sinister&quot;\nStarted: 2013.11.29, Ended: 2013.12.27\nParticipants: Bangle_Tiger (S), OnePageWars (N), wil (E)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\n2) wil: Homeworld Y3 G2 B3\n\tOnePageWars: who is left of who?\n\n3) Bangle_Tiger: Homeworld Y1 B2 G3\n\tBangle_Tiger: I&#39;m guessing its clockwise?\n\n4) OnePageWars: Build G1 Onepagewars\n\twil: so wil attacks only bangle, bangle only one, and one only wil?\n\tOnePageWars: makes sense to me.\n\tOnePageWars: If I elim bangle, does that make wil win, or does his target change to me?\n\n5) wil: Build B1 Wil\n\twil: since it is always attack left....I am would now attack the new the one who&#39;s left.\n\twil: double entendre pun intendred\n\n6) Bangle_Tiger: Build G1 Bangle_tiger\n\n7) OnePageWars: Trade G1 B1 Onepagewars\n\tBangle_Tiger: Btw this is my second time playing homeworlds so tips are welcome :)\n\twil: tip 1....play more...lose a lot...you learn by getting wupped in various ways... look up bluebird, catastrophe, doomsday machine, teleport...\n\n8) wil: Discover B1 Wil G1 G1\n\n9) Bangle_Tiger: Build G1 Bangle_tiger\n\n10) OnePageWars: Build B1 Onepagewars\n\n11) wil: Build B2 G1\n\n12) Bangle_Tiger: Trade G1 R1 Bangle_tiger\n\n13) OnePageWars: Trade B1 Y1 Onepagewars\n\n14) wil: Build B1 G1\n\twil: I just noticed you two created short universes...\n\n15) Bangle_Tiger: Build G1 Bangle_tiger\n\tOnePageWars: yep. :) very interesting topography.\n\n16) OnePageWars: Build Y1 Onepagewars\n\tBangle_Tiger: 3 player seems to have significantly more complexity.\n\n17) wil: Trade B1 Y1 G1\n\n18) wil: Build Y2 G1\n\twil: this is how these typically end....\n\n19) OnePageWars: Trade Y1 R1 Onepagewars\n\n20) wil: Trade B2 R2 G1\n\twil: we may as well finish the game without him and with a large bank!\n\n21) OnePageWars: Build R1 Onepagewars\n\n22) wil: Sacrifice Y2 G1\nDiscover R2 G1 Y3 Y3\nMove R2 Y3 Onepagewars\nCatastrophe Onepagewars R\n\n\twil: did I fall into some kinda trap?\n\twil: Everything OK?  I see you dropped out of the other game?\n\tOnePageWars: oh, yeah. Kind-of got a little sick, but I&#39;m fine now.\n\tOnePageWars: good game, wp.\n\tOnePageWars: good game, wp.\n\tOnePageWars: oops, sry.\n\nHomeworlds Online (SDG# 24820)\nStarted: 2013.11.29, Ended: 2013.12.7\nParticipants: Ultan_the_Blind (S), Bangle_Tiger (N)\nWinner: Ultan_the_Blind\n\n1) Bangle_Tiger: Homeworld B2 Y1 G3\n\n2) Ultan_the_Blind: Homeworld Y3 G1 B3\n\n3) Bangle_Tiger: Build G1 Bangle_tiger\n\n4) Ultan_the_Blind: Build B1 Ultan_the_blind\n\n5) Bangle_Tiger: Build G1 Bangle_tiger\n\n6) Ultan_the_Blind: Trade B3 G3 Ultan_the_blind\n\n7) Bangle_Tiger: Discover G1 Bangle_tiger B3 Coruscant\n\tUltan_the_Blind: Gah, only move #2 and you are already forcing my hand...\n\n8) Ultan_the_Blind: Build G2 Ultan_the_blind\n\n9) Bangle_Tiger: Build G2 Coruscant\n\n10) Ultan_the_Blind: Discover G2 Ultan_the_blind Y2 Sullust\n\n11) Bangle_Tiger: Trade G2 R2 Coruscant\n\n12) Ultan_the_Blind: Discover G2 Sullust R1 Kessel\n\n13) Bangle_Tiger: Build G2 Coruscant\n\n14) Ultan_the_Blind: Build B1 Ultan_the_blind\n\tBangle_Tiger: Wouldn&#39;t have it any other way.\n\n15) Bangle_Tiger: Sacrifice G3 Bangle_tiger\nBuild G2 Bangle_tiger\nBuild G3 Bangle_tiger\nBuild G3 Coruscant\n\n16) Ultan_the_Blind: Trade B1 Y1 Ultan_the_blind\n\n17) Bangle_Tiger: Trade G2 Y2 Coruscant\n\n18) Ultan_the_Blind: Sacrifice Y1 Ultan_the_blind\nDiscover G2 Kessel Y3 Alderaan\n\n19) Bangle_Tiger: Trade G2 R2 Bangle_tiger\n\n20) Ultan_the_Blind: Trade G3 B3 Ultan_the_blind\n\n21) Bangle_Tiger: Discover G3 Coruscant R2 Sullest\n\n22) Ultan_the_Blind: Trade B1 R1 Ultan_the_blind\n\n23) Bangle_Tiger: Build Y1 Coruscant\n\n24) Ultan_the_Blind: Build B1 Ultan_the_blind\n\n25) Bangle_Tiger: Build G2 Sullest\n\n26) Ultan_the_Blind: Build G2 Alderaan\n\n27) Bangle_Tiger: Sacrifice G3 Sullest\nBuild G3 Sullest\nBuild G3 Coruscant\nBuild R1 Coruscant\n\n28) Ultan_the_Blind: Move G2 Alderaan Bangle_tiger\n\n29) Bangle_Tiger: Discover G1 Bangle_tiger Y3 Hoth\n\tUltan_the_Blind: Welp, this is not looking good!\n\n30) Ultan_the_Blind: Sacrifice G2 Bangle_tiger\nBuild G2 Alderaan\nBuild B1 Ultan_the_blind\n\n31) Bangle_Tiger: Sacrifice G3 Coruscant\nBuild G3 Coruscant\nBuild R1 Bangle_tiger\nBuild R3 Bangle_tiger\n\tBangle_Tiger: Nice try! Now get outta here before I eat you.\n\tBangle_Tiger: And yes, I chose Hoth because I&#39;m freezing you out.\n\tUltan_the_Blind: but but but... Hoth is blue and white because of ICE and SNOW!\n\n32) Ultan_the_Blind: Sacrifice B1 Ultan_the_blind\nTrade G2 Y2 Alderaan\n\n33) Bangle_Tiger: Sacrifice Y2 Coruscant\nMove G3 Sullest Ultan_the_blind\nMove G2 Sullest Ultan_the_blind\n\tBangle_Tiger: Well there&#39;s no white color piece in this game--Yellow is the closest in tone. What happens when you combine yellow and blue? You get green!!\n\tUltan_the_Blind: Such greed. Much anger. So win.\n\n34) Ultan_the_Blind: Attack G3N Ultan_the_blind\n\n35) Bangle_Tiger: Build G2 Ultan_the_blind\nCatastrophe Ultan_the_blind G\n\tBangle_Tiger: Like this?\n\n36) Ultan_the_Blind: Move R1 Ultan_the_blind Bangle_tiger\nCatastrophe Bangle_tiger R\n\n37) Bangle_Tiger: Move R2 Coruscant Bangle_tiger\n\tUltan_the_Blind: I will not go down without a fight!\n\n38) Ultan_the_Blind: Trade B3 G3 Ultan_the_blind\n\tBangle_Tiger: Well played. I forgot that blowing up half a homeworld changed the hyperspace lanes lol\n\n39) Bangle_Tiger: Move R2 Bangle_tiger Ultan_the_blind\n\n40) Ultan_the_Blind: Sacrifice B1 Ultan_the_blind\nTrade Y2 R2 Alderaan\n\n41) Bangle_Tiger: Move G3 Coruscant Bangle_tiger\n\tBangle_Tiger: Lets try a new approach\n\n42) Ultan_the_Blind: Build R1 Alderaan\n\n43) Bangle_Tiger: Trade G3 R3 Bangle_tiger\n\n44) Ultan_the_Blind: Sacrifice R1 Alderaan\nAttack R2N Ultan_the_blind\n\n45) Bangle_Tiger: Build G1 Hoth\n\n46) Ultan_the_Blind: Discover R2 Alderaan Y2 Geonosis\n\tBangle_Tiger: Ah, didn&#39;t know that&#39;s how that worked.\n\tBangle_Tiger: Well there goes my advantage.\n\n47) Bangle_Tiger: Move R3 Bangle_tiger Alderaan\n\tUltan_the_Blind: Heh, I kinda guessed that might have been the case. You actually could have won by now if you had. However, if you read careful you WOULD notice that was legal from the wording of the rules and my explanation...\n\tUltan_the_Blind: Don&#39;t count yourself out just yet. You still have quite a strong position.\n\n48) Ultan_the_Blind: Discover G2 Alderaan Y2 Tatooine\n\n49) Bangle_Tiger: Build G2 Coruscant\n\tBangle_Tiger: Yeah, I just wasn&#39;t paying attention.\n\n50) Ultan_the_Blind: Build G2 Ultan_the_blind\n\n51) Bangle_Tiger: Build G3 Bangle_tiger\n\n52) Ultan_the_Blind: Discover G2 Tatooine B3 Fondor\n\n53) Bangle_Tiger: Sacrifice G3 Bangle_tiger\nBuild G3 Bangle_tiger\nBuild Y1 Coruscant\nBuild Y2 Coruscant\n\n54) Ultan_the_Blind: Move R2 Geonosis Hoth\n\n55) Bangle_Tiger: Discover R3 Alderaan Y2 Lando\n\n56) Ultan_the_Blind: Attack G1N Hoth\n\n57) Bangle_Tiger: Sacrifice Y2 Coruscant\nMove Y1 Coruscant Lando\nMove Y1 Coruscant Lando\n\n58) Ultan_the_Blind: Move G3 Ultan_the_blind Bangle_tiger\n\n59) Bangle_Tiger: Trade G3 R3 Bangle_tiger\n\n60) Ultan_the_Blind: Sacrifice R2 Hoth\nAttack R3N Bangle_tiger\nAttack G3N Bangle_tiger\n\tUltan_the_Blind: I have stayed the wrath of my mighty fleet long enough. No more. Good luck, mine honorable foe..\r\n\n\n\tUltan_the_Blind: Brave but foolish...\n\tUltan_the_Blind: Well Played though. You are learning.\n\tBangle_Tiger: ARGH WTF RED. Never see that.\n\nHomeworlds Online (SDG# 24799)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.2, Ended: 2013.12.4\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\tOnePageWars: hi again. :)\n\n2) wil: Homeworld B3 Y1 G3\n\twil: we&#39;s starting fresh....you play a lot of games....I only play this one(here...I play a lot in 3d)...which are your favorites that I shoiuld expand my horizons on?  \n\n3) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: most of the games I have going on I&#39;m just trying out. Mirador is quick but enjoyable, but I prefer binary homeworlds.\n\n4) wil: Build G1 Wil\n\twil: I play a variety of card games and board games, i really think homeworlds is an incredible game of intergalactic chess....it seems to contain all the complexity of chess with some interesting twist as pieces never leave the realm of the game...\n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\tOnePageWars: Yeah, it&#39;s undoubtedly similar to chess, but I am fain to question if it has anywhere near the strategic depth. I could just be selling it short, though.\r\n\r\nHave you ever played shogi?\n\n6) wil: Discover G1 Wil B2 B2\n\tOnePageWars: are there any other viable opening moves besides building a pawn on turn 1 and trading it for a different color turn 2? I guess you could trade the 3 point on turn 2, but other than that?\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) wil: Build G1 Wil\n\n9) OnePageWars: Discover G1 Onepagewars B3 Miranda\n\n10) wil: Build G2 B2\n\n11) OnePageWars: Build G2 Miranda\n\n12) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild G3 Wil\nBuild G3 Wil\n\n13) OnePageWars: Trade G2 Y2 Miranda\n\n14) wil: Trade G1 R1 Wil\n\tOnePageWars: risky factory play. :)\n\n15) OnePageWars: Build Y1 Miranda\n\twil: I&#39;ll say....open for two catastrophies....  \n\n16) wil: Trade G2 Y2 B2\n\n17) OnePageWars: Trade Y1 R1 Miranda\n\n18) wil: Trade G2 R2 B2\n\tOnePageWars: tense game.\n\n19) OnePageWars: Build R1 Miranda\n\n20) wil: Build R2 Wil\n\n21) OnePageWars: Trade R1 B1 Miranda\n\twil: missed the conversation...I have not played shop...The openings are always slow...build trade build trade, like a farmer or a small manufacturer trying to get ahead...\n\n22) wil: Discover G3 Wil Y2 Y2\n\n23) OnePageWars: Build G1 Onepagewars\n\n24) wil: Move G3 Y2 Miranda\n\n25) OnePageWars: Build G2 Miranda\n\n26) wil: Trade G3 R3 Miranda\n\n27) OnePageWars: Sacrifice G3 Onepagewars\nBuild G2 Onepagewars\nBuild G2 Onepagewars\nBuild G3 Miranda\n\twil: it was the right try....\n\n28) wil: Sacrifice Y2 B2\nMove R3 Miranda Onepagewars\nMove R2 Wil B2\n\twil: should&#39;ve recreated the g3 in your own system...I am there first so I take it...you&#39;ll have to grown the other one...three wasted moves and all your greens go back into the bank and I begin owning the system anyway...of course I will lose my G3 but you will have no big gun....oops it is worse...my move is to abandon Miranda...let you have her...and just move my R3 into your homeworld and take over...I&#39;ll give you time to change if you wish....\n\tOnePageWars: no, go ahead. :) I appreciate the offer, but I don&#39;t think that taking back my move would do anything to improve my play.\n\n29) OnePageWars: Build Y1 Miranda\n\n30) wil: Sacrifice R2 B2\nAttack Y1 Onepagewars\nAttack G2 Onepagewars\n\n31) OnePageWars: Sacrifice G3 Miranda\nBuild G3 Miranda\nBuild Y2 Miranda\nBuild R1 Miranda\n\twil: You&#39;v got the right angle...I think I am just one step ahead of you...\n\n32) wil: Sacrifice R2 B2\nAttack G1 Onepagewars\nAttack G2 Onepagewars\n\twil: carmen she is a growing colony, but her homeworld has been taken over...\n\tOnePageWars: wp. You&#39;re good at this game. :)\n\twil: I am learning... I&#39;ve been beat by the best...(well not the best yet...twoshort holds that title online and I&#39;ve yet to play him) But Broccoli Commander, TS52, SilentTitan, Zoltar, all regularly beat me and I am learning from them all by the way they move in for the kill...I usually see it too late, and am only now (after dozens of games) seeing what that tipping point is a the middle of the game that starts to shift the power...usually they have won the game essentially long before I see it...it is that one move that takes advantage in the first 8 moves...and then whether they add up, or multiply after that...\n\tOnePageWars: I guess strength is relative. :)\n\twil: Yes, most definitely...defense of your homeworld is imperative.  Did you see/read &#39;enders game&#39;?  when the homeworld is destroyed, the queen is dead and all is lost...   A key for my learning (beyond the various attacks and tactics) is begin with the end in mind...always be looking as to how to take the homeworld...either take out the stars or take it over..\n\tOnePageWars: I&#39;ve heard of ender&#39;s game. Sounds interesting. Billboard art reminds me of Pacific Rim, but I have no idea if it&#39;s even remotely similar. Is it? without spoilers, if you please. :)\n\twil: It is aliens vs earthlings...I had only been recommended in the past.  I don&#39;t know of Pacific Rim...\n\tOnePageWars: Pacific Rim is aliens vs earthlings. Well, regardless, I&#39;ll probably have to check out Ender&#39;s game eventually unless I am presented with really good reasons as to why it would be a waste of 1.5 hours of my life, lol.\n\n\nHomeworlds Online (SDG# 24836)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.3, Ended: 2013.12.4\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) OnePageWars: Homeworld B1 R2 G3\n\twil: he is ready to go agin...nice...I like playin...I try to stay in 4-5 games at a time...and some 3d world games along the way as well.\n\n3) wil: Build G1 Wil\n\tOnePageWars: First microverse game. :)\n\twil: oh my....i just got into another of these not to long ago...\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) wil: Trade G1 Y1 Wil\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) wil: Build G1 Wil\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) wil: Trade G1 R1 Wil\n\tOnePageWars: I feel like this must be the equivalent of the giuco piano in chess.\n\twil: it is an interesting dance of chicken...\n\n10) OnePageWars: Trade G1 B1 Onepagewars\n\n11) wil: Build G1 Wil\n\tOnePageWars: and thus do the builds diverge. :)\n\n12) OnePageWars: Build G1 Onepagewars\n\n13) wil: Build R1 Wil\n\n14) OnePageWars: Build B1 Onepagewars\n\n15) wil: Discover R1 Wil G3 G3\n\n16) OnePageWars: Discover B1 Onepagewars R3 Ilikesdg\n\n17) wil: Build R2 Wil\n\n18) OnePageWars: Build B2 Onepagewars\n\n19) wil: Move R2 Wil Ilikesdg\n\n20) OnePageWars: Build Y1 Onepagewars\n\tOnePageWars: I think you&#39;re edging me out here. Won&#39;t be long before my empire falls to pieces.\n\n21) wil: Attack B1 Ilikesdg\n\n22) OnePageWars: Trade B2 R2 Onepagewars\n\twil: I could have just swapped and built one, could&#39;ve moved out and formed my own starsystem, so I don&#39;t gain anything by taking yours...but you lose one...which makes the effort of bullying worthwhile...it is a game of increments....capturing space...\n\n23) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 G3\nBuild Y2 Wil\n\n24) OnePageWars: Build Y2 Onepagewars\n\n25) wil: Sacrifice Y2 Wil\nMove R1 G3 Onepagewars\nMove R2 Ilikesdg Onepagewars\nCatastrophe Onepagewars R\n\n26) OnePageWars: Trade Y2 R2 Onepagewars\n\twil: typically there is no reason to wipe out half a starsystem and less you can see clear to wiping out the other half and winning...however in this case I am also voiding you of red, making you start over in that economy...that made my decision.\n\n27) wil: Trade R3 G3 Wil\n\n28) OnePageWars: Build Y2 Onepagewars\n\n29) wil: Build Y2 Wil\n\n30) OnePageWars: Build R1 Onepagewars\n\n31) wil: Move Y2 Wil Ilikesdg\n\n32) OnePageWars: Discover Y1 Onepagewars G2 Ireallylikesdg\n\twil: 2 moves to mate.\n\n33) wil: Sacrifice G3 Wil\nBuild Y2 Ilikesdg\nBuild Y3 Wil\nBuild B2 Ilikesdg\n\tOnePageWars: I believe you. :)\n\n34) OnePageWars: Build Y3 Ireallylikesdg\n\twil: I was wrong...did you see it coming?  you can still avoid it....but me in your position would be blinded by greed typically and not see that that my doom was around the corner.\n\n35) wil: Sacrifice Y2 Ilikesdg\nMove B1 Ilikesdg Onepagewars\nMove B2 Ilikesdg Onepagewars\nCatastrophe Onepagewars B\n\twil: greed won out...the same blind spot I often have...this you need to conquer\n\twil: the pisser is you are going to be beating me soon!\n\twil: I did present a dodge...the appearance that I was trying to take all those yellows before you could get to them...but all I really wanted was that one little blue...if I would have done that by itself it would have been more obvious my motive.\n\tOnePageWars: nah. Maybe eventually. But then again, maybe not. And I would have to get pretty lucky to beat you in a &#39;soon&#39; time scedule.\n\twil: You&#39;ll be surprised... I get a win in every now and again amongst those better...\n\tOnePageWars: Yeah, I might get lucky.\n\n\nHomeworlds Online (SDG# 24792)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.4, Ended: 2013.12.15\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld B3 Y2 G3\n\tSilentTitan: Welcome back.\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\twil: time to keep practicin\n\n6) wil: Trade G1 R1 Wil\n\n7) SilentTitan: Build R2 Silenttitan\n\n8) wil: Build R2 Wil\n\n9) SilentTitan: Trade R1 Y1 Silenttitan\n\n10) wil: Discover R2 Wil G1 G1\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: Build G1 Wil\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) wil: B G2 Wil\n\n15) SilentTitan: Discover G1 Silenttitan R3 Sol\n\n16) wil: Trade G2 Y2 Wil\n\n17) SilentTitan: Move Y1 Silenttitan Sol\n\n18) wil: Build G2 Wil\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) wil: Trade G1 B1 Wil\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n22) wil: Move Y2 Wil G1\n\n23) SilentTitan: Build Y3 Silenttitan\n\n24) wil: Build Y3 G1\n\n25) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol G1\nMove Y1 Sol G1\nCatastrophe G1 Yellow\n\n26) wil: Trade G2 Y2 Wil\n\twil: that was a learning curve...will he do it...after the fact I thought sure..over course, to have two queens to my one, why not lose three to take out two...\n\n27) SilentTitan: Move Y3 Silenttitan Sol\n\tSilentTitan: Well sort of..... The measure for me is the total pip count not the ship count.   I lost 4 pips to take out 5 pips from you.  Additionally I cleared you of yellow. Which is always an advantage. Now the turn you built the y3 you had a chance to take my 4 pips in yellow for only 2 pips.  I&#39;d have taken that over building the y3.\n\n28) wil: Move Y2 Wil G1\n\twil: thanx\n\twil: thanx\n\n29) SilentTitan: Trade Y1 B1 Silenttitan\n\n30) wil: Build Y1 G1\n\n31) SilentTitan: Move B1 Silenttitan Sol\n\n32) wil: Move B1 Wil G1\n\n33) SilentTitan: Build Y1 Sol\n\n34) wil: Discover Y1 G1 G3 G3\n\n35) SilentTitan: Move Y3 Sol G1\n\n36) wil: Build Y1 G1\n\n37) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 G1 South\nAttack B1 G1 South\n\n38) wil: Build Y2 G1\nCatastrophe G1 Y\n\n39) SilentTitan: Build B1 G1\n\n40) wil: Build G1 Wil\n\twil: that was a nice recovery...  my only chance is for you to make some errors...that ain&#39;t gonna happen if you keep playing like that!   Was that a Y formation?  if i do x you do y and if i do y you do x?\n\tSilentTitan: Not really.  More like I had an opportunity to mess with you so I took it.  Then you decided to make it about the battleship. So rather than run away I took what I could.  I thought you might take the r2 back with a sac on your r1. If you had done that I would have traded the y3 for a g3.\n\n41) SilentTitan: Sacrifice G2 Silenttitan\nBuild B2 Sol\nBuild B2 G1\n\n42) wil: Discover G1 Wil R1 R1\n\n43) SilentTitan: Build B3 Sol\n\n44) wil: Build R2 Wil\n\n45) SilentTitan: Trade B3 G3 Sol\n\n46) wil: Build G2 Wil\n\twil: yes it is over for me..\n\n47) SilentTitan: Build B3 Sol\n\n48) wil: Trade G2 Y2 Wil\n\n49) SilentTitan: Trade B2 Y2 G1\n\n50) wil: Build Y1 G3\n\n51) SilentTitan: Move R2 G1 G3\n\n52) wil: Sacrifice Y1 G3\nMove Y1 G3 Silenttitan\n\n53) SilentTitan: Attack Y1 Silenttitan South\n\n54) wil: Build G2 Wil\n\n55) SilentTitan: Trade B3 Y3 Sol\n\n56) wil: Trade R2 B2 Wil\n\n57) SilentTitan: Sacrifice Y3 Sol\nMove Y2 G1 Wil\nMove Y1 Sol G1\nMove Y1 G1 Wil\nCatastrophe Wil Yellow\n\n58) wil: Trade B2 Y2 Wil\n\n59) SilentTitan: Trade G3 Y3 Sol\n\n60) wil: Build R2 Wil\n\n61) SilentTitan: Sacrifice Y3 Sol\nMove B1 Sol G1\nMove B1 G1 Wil\nMove B1 G1 Wil\n\n62) wil: Sacrifice R2 Wil\nAttack B1 Wil\nAttack B1 Wil\n\n63) SilentTitan: Sacrifice Y1 Silenttitan\nMove B1 G1 Wil\nCatastrophe Wil Blue\n\n\twil: You&#39;ll have to all but abandon your civilization to take out mine....now you don&#39;t wanna do that you could build and decimate me and be ready for all intruders...\n\tSilentTitan: Yeah.. I&#39;ll take it.\n\twil: See how you are!   thanx again for the game!!\n\nHomeworlds Online (SDG# 24853)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.4, Ended: 2013.12.11\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld B1 R2 G3 Yes\n\n2) SilentTitan: Homeworld R2 B3 G3\n\tOnePageWars: hi there! gl hf!\n\n3) OnePageWars: Build G1 Onepagewars\n\tSilentTitan: And to you as well.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) SilentTitan: Build G1 Silenttitan\n\n\nHomeworlds Online (SDG# 24845)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.4, Ended: 2014.1.6\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\n2) wil: Homeworld Y3 G1 B3\n\n3) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: gl hf!\n\n4) wil: Build B1 Wil\n\n5) OnePageWars: Trade G1 R1 Onepagewars\n\twil: you oughta join the ladder...it takes a few months to work your way up...but then it is more gaming\n\n6) wil: Build B1 Wil\n\tOnePageWars: I might. I&#39;ve joined a few times and left just as many.\n\twil: I thought I&#39;d never get through the dead wood...it took me six months to get to 13...but got a few games in the ladder along the way...a lot of timing out and pushing folks who should be booted down behind me and gaining one slot at a time...\n\n7) OnePageWars: Build R1 Onepagewars\n\n8) wil: Discover B1 Wil G2 G2\n\n9) OnePageWars: Trade R1 Y1 Onepagewars\n\twil: the rule here is when you get a gun, I should get a gun (red) but currently you haven&#39;t got any transportation system...so I&#39;ve got a minute..as long as I don&#39;t forget.\n\n10) wil: Build B2 G2\n\n11) OnePageWars: Build Y1 Onepagewars\n\n12) wil: Trade B2 R2 G2\n\n13) OnePageWars: Build G1 Onepagewars\n\n14) wil: Build B2 G2\n\n15) OnePageWars: Discover Y1 Onepagewars G3 Ilikedogs\n\n16) wil: Trade B2 Y2 G2\n\tOnePageWars: I&#39;m a dog person. :)\n\n17) OnePageWars: Build Y1 Onepagewars\n\tOnePageWars: I think my main problem (besides falling behind in the tech race) was no having any size 2 ships to trade. Well, live and learn.\n\tOnePageWars: Not, not no. Not not not no. Not no, but not. I mean, it should be not. Not that it shouldn&#39;t exist. Just that it should exist as not. I give up.\n\n18) wil: Build Y2 G2\n\twil: Yes, it is imperative to attempt to keep up on each economy....get in the ones, as the twos will disappear and then the same problem may occur with threes...\n\n19) OnePageWars: Build Y2 Ilikedogs\n\tOnePageWars: Do the ship sizes tend to increase in importance throughout the game and peak in the late-game? Because so long as you have at least one size three in every system you care about, they only thing the sizes are good for are sacrifices?\n\n20) wil: Discover Y2 G2 B3 B3\n\tOnePageWars: y2s when you have your natural expansion are quite scary.\n\n21) OnePageWars: Discover Y1 Ilikedogs G2 Idislikecats\n\n22) wil: Build B2 G2\n\tOnePageWars: I try to use a distinct nomenclature for each game of Binary Homeworlds I play.\n\n23) OnePageWars: Build Y3 Ilikedogs\n\n24) wil: Build Y3 G2\n\n25) OnePageWars: Trade G3 B3 Onepagewars\n\n26) wil: Move B2 G2 B3\n\n27) OnePageWars: Move B3 Onepagewars Ilikedogs\n\twil: I thought we still had a game goin....i seez we gots another started.\n\n28) wil: Trade B2 G2 B3\n\tOnePageWars: Yes, Binary Homeworlds and Archimedes are my two current fascinations on SDG.\n\n29) OnePageWars: Build B2 Ilikedogs\n\n30) wil: Trade B3 R3 Wil\n\n31) OnePageWars: Move R1 Onepagewars Ilikedogs\n\n32) wil: Move G2 B3 Onepagewars\n\n33) OnePageWars: Move B3 Ilikedogs Onepagewars\n\n34) wil: Build G1 Onepagewars\n\n35) OnePageWars: Attack G2S Onepagewars\n\n36) wil: Build G3 Onepagewars\nCatastrophe Onepagewars G\n\n37) OnePageWars: Trade Y3 R3 Ilikedogs\n\n38) wil: Trade Y3 G3 G2\n\twil: oh I did that backasswards...\n\twil: oh I did that backasswards...\n\n39) OnePageWars: Build Y3 Ilikedogs\n\n40) wil: Sacrifice G3 G2\nBuild Y3 B3\nBuild R1 G2\nBuild B2 Wil\n\tOnePageWars: This has been a quite, arguably, epic game.\n\n41) OnePageWars: Move R3 Ilikedogs G2\n\n42) wil: Build R1 G2\nCatastrophe G2 R\n\n43) OnePageWars: Build R1 Ilikedogs\n\n44) wil: Build R1 Wil\n\n45) OnePageWars: Trade Y1 G1 Onepagewars\n\n46) wil: Trade Y2 G2 B3\n\n47) OnePageWars: Move R1 Ilikedogs Idislikecats\n\n48) wil: Move R1 Wil G2\n\n49) OnePageWars: Build R2 Idislikecats\n\n50) wil: Trade Y3 G3 B3\n\n51) OnePageWars: Build Y1 Onepagewars\n\n52) wil: Trade R3 G3 Wil\n\n53) OnePageWars: Build G1 Onepagewars\n\n54) wil: Trade B2 R2 Wil\n\n55) OnePageWars: Build R3 Ilikedogs\n\tOnePageWars: How do we know who&#39;s winning in this sort of situation?\n\twil: This game can change control in a few moves, one missed opportunity and the other taking advantage is huge.   Some folks just count pieces, others will count pips and give an extra pip count for ever step away from your homeworld. But neither of these are real...how close are you to taking out a homeworld, how many positions do you have safe from catastrophe or attack...\n\n56) wil: Sacrifice G3 B3\nBuild G3 B3\nBuild R3 Wil\nBuild R3 G2\n\tOnePageWars: I came to the conclusion that you were ahead because your 2 g3s strike me as more useful than my y3 and b3. The y3 could come in handy, but the b3 seems like a waste of a large.\n\n57) OnePageWars: Sacrifice Y2 Ilikedogs\nMove R1 Idislikecats Wil\nMove R2 Idislikecats Wil\nCatastrophe Wil R\n\twil: you&#39;d be amazed at what color changes can do...but yes you need a g3 for a factory and once you used one on a star I was determined to corner the market..\r\n\n\n58) wil: Sacrifice G3 B3\nBuild G3 B3\nBuild B2 G2\nBuild B2 Wil\n\n59) OnePageWars: Build Y2 Ilikedogs\n\tOnePageWars: was it a necessary sacrifice or just a waste of a y2? I honestly don&#39;t know.\n\n60) wil: Sacrifice B2 G2\nTrade R3 Y3 G2\nTrade Y2 R2 G2\n\twil: necessary....no...an option...yes....a bad move...I don&#39;t think so...we have to see how it plays out\n\tOnePageWars: I think I lost this from the time I let you get 2 of the g3 pieces and stuck the third in a planet.\n\n61) OnePageWars: Trade B3 R3 Onepagewars\n\n62) wil: Trade B2 R2 Wil\n\twil: I like blues for this reason...  and yeah...build a g3 prior to using a G3 as a star...\n\tOnePageWars: well, I did start out with a g3, but I don&#39;t remember what happened to it.\n\n63) OnePageWars: Build Y2 Idislikecats\n\n64) wil: Sacrifice G3 B3\nBuild G3 B3\nBuild Y2 G2\nBuild B2 G2\n\n65) OnePageWars: Move G1 Onepagewars Ilikedogs\n\n66) wil: Move R1 G2 B3\n\n67) OnePageWars: Discover Y2 Idislikecats R3 Ilikewolves\n\n68) wil: Sacrifice Y3 G2\nMove R2 G2 B3\nMove R2 B3 Onepagewars\nMove R1 B3 Onepagewars\nCatastrophe Onepagewars R\n\twil: awfully tempting that was....it would be quite the reboot...\n\n\tOnePageWars: oh. I think that&#39;s fatal.\n\tOnePageWars: I can&#39;t even grab up the y3.\n\tOnePageWars: good game wp.\n\twil: the tempting was two greens in g3, while I&#39;d lose my factory...if I headed that way I&#39;d completely restock the bank with that Ilikedogs system...  but I was poised on heading in after blues or reds to take out your homeworld.\r\n\r\nI do like B3s  they can be a game changer by sacking them for three color changes...cornering blues to me is a powerful strategy.  But having the only factory...for every one you build I build two...is quite an advantage.\n\twil: good game, thanx  (I would have backed up my R3 and played to the bitter end...I like seeing how things play out and sometimes can take advantage of errors...have won more than once with a solo homeworld)\n\tOnePageWars: Yeah, I have so much still to learn about this game.\n\twil: You aint th eonly one....I try to stay in 5-8 games so I can be beat in more ways!\n\tOnePageWars: It just seemed comparable to an endgame in chess where you have a king on g1 and they have a king on d5 with only queenside pawns remaining for both players and you&#39;re down the exchange with their rook on the 2nd rank.\r\n\r\nMaybe it&#39;s not that bad, but that was my impression.\n\nHomeworlds Online (SDG# 24795)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.12, Ended: 2013.12.13\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld B2 Y1 G3\n\n2) wil: Homeworld B3 G1 Y3\n\n3) Marmalade: Build G1 Marmalade\n\n4) wil: Build Y1 Wil\n\n5) Marmalade: Discover G1 Marmalade Y3 Doom\n\n6) wil: Discover Y1 Wil G2 G2\n\n7) Marmalade: Build G1 Doom\n\n8) wil: Build Y1 G2\n\n9) Marmalade: Build G2 Marmalade\n\n10) wil: Build Y2 Wil\n\n11) Marmalade: Build G2 Doom\n\n12) wil: Trade Y3 G3 Wil\n\n13) Marmalade: Build G3 Marmalade\n\n14) wil: Build Y2 G2\n\n15) Marmalade: Trade G2 Y2 Marmalade\n\n16) wil: Discover Y2 G2 B3 B3\n\n17) Marmalade: Move G3 Marmalade B3\n\n18) wil: Discover Y2 B3 G2 Gtoo\n\n19) Marmalade: Trade G3 R3 B3\n\n20) wil: Discover Y2 Gtoo G3 G3\n\n21) Marmalade: Sacrifice Y2 Marmalade\nMove R3 B3 G2\nMove R3 G2 Wil\n\n22) wil:\nMove G3 Wil G2\n\twil: I gottq go and drive....this is where a heads up display and voice commands woulld be handy....\n\twil: or not\n\twil: shoulda seen that...oh well\n\n23) Marmalade: Attack Y2S Wil\n\twil: We take our best and brightest peacemakers and leave you agressive imperialist to overpopulate and pollute yet another star system....\n\tMarmalade: Sorry man, it&#39;s always a good idea to match red for red.\n\twil: No worries...it is a lesson...I was blinded...that happens to me....I need to be reminded...thanx for the annihilation.\n\n\nHomeworlds Online (SDG# 24926)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.12, Ended: 2014.1.19\nParticipants: TwoShort (S), SilentTitan (N)\nWinner: TwoShort\n\n1) SilentTitan: Homeworld B1 R2 G3\n\tSilentTitan: It would seem that no one else wants to play me and since I cannot challenge downward.  You&#39;re it.  Tag.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\tTwoShort: Glad to be it :)  Have a good game.\n\n4) TwoShort: Build B1 Twoshort\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) SilentTitan: Trade G3 B3 Silenttitan\n\n8) TwoShort: Build B2 Twoshort\n\n9) SilentTitan: Trade G1 Y1 Silenttitan\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) TwoShort: Build B2 Grogar\n\n13) SilentTitan: Discover B2 Silenttitan G3 Sol\n\n14) TwoShort: Trade B2 Y2 Grogar\n\n15) SilentTitan: Build Y1 Silenttitan\n\n16) TwoShort: Build Y1 Grogar\n\n17) SilentTitan: Move Y1 Silenttitan Sol\n\n18) TwoShort: Trade Y2 R2 Grogar\n\n19) SilentTitan: Trade B2 R2 Sol\n\n20) TwoShort: Build Y2 Twoshort\n\n21) SilentTitan: Build Y2 Silenttitan\n\n22) TwoShort: Build B2 Grogar\n\n23) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n24) TwoShort: Discover B2 Grogar Y3 Yolonda\n\n25) SilentTitan: Trade B3 G3 Silenttitan\n\n26) TwoShort: Trade Y2 G2 Twoshort\n\n27) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\nBuild Y3 Silenttitan\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild B2 Yolonda\nBuild B3 Grogar\n\n29) SilentTitan: Discover Y2 Silenttitan B3 Tic\n\n30) TwoShort: Move B3 Grogar Sol\n\n31) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol Silenttitan\nMove R2 Sol Silenttitan\n\n32) TwoShort: Build Y2 Twoshort\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) TwoShort: Trade B3 R3 Sol\n\n35) SilentTitan: Discover G1 Silenttitan B3 Tac\n\n36) TwoShort: Sacrifice Y3 Twoshort\nMove R2 Grogar Sol\nMove R2 Sol Silenttitan\nMove R3 Sol Silenttitan\nCatastrophe Silenttitan Red\n\n37) SilentTitan: Trade Y2 R2 Tic\n\tSilentTitan: Pretty\n\tSilentTitan: Pretty\n\n38) TwoShort: Move B2 Grogar Silenttitan\n\tTwoShort: Great game, thanks.\n\n39) SilentTitan: Pass\n\tSilentTitan: Hey, thanks for putting up with me yet again.\n\n40) TwoShort: Sacrifice Y2 Twoshort\nMove B2 Yolonda Silenttitan\nMove B2 Yolonda Silenttitan\nCatastrophe Silenttitan Blue\n\n\nHomeworlds Online (SDG# 24835)\nStarted: 2013.12.16, Ended: 2013.12.20\nParticipants: foksieloy (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld B2 R1 G3\n\tOnePageWars: gl hf all!\n\n2) foksieloy: Homeworld B3 Y2 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\tfoksieloy: gl hf!\n\n4) foksieloy: Build G1 Foksieloy\n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) foksieloy: Build G1 Foksieloy\n\n9) OnePageWars: Trade G1 B1 Onepagewars\n\n10) foksieloy: Discover G1 Foksieloy R1 Blackadder\n\n11) OnePageWars: Build B1 Onepagewars\n\n12) foksieloy: Build G1 Foksieloy\n\n13) OnePageWars: Discover B1 Onepagewars G3 Bravelyranrobin\n\n14) foksieloy: Sacrifice Y1 Foksieloy\nDiscover G1 Blackadder R3 Balldrick\n\n15) OnePageWars: Build Y1 Onepagewars\n\tfoksieloy: Sorry if this was a stupid move, I am new to this game, it just seemed like it might be the less of few evils of giving you medium ships this soon.\n\n16) foksieloy: Trade G1 R1 Foksieloy\n\tOnePageWars: Sorry, I don&#39;t know enough about this game to judge the viability of that move.\n\n17) OnePageWars: Build G1 Onepagewars\n\n18) foksieloy: Build R1 Foksieloy\n\n19) OnePageWars: Build B1 Bravelyranrobin\n\n20) foksieloy: Discover R1 Foksieloy Y1 Percy\n\n21) OnePageWars: Build B2 Bravelyranrobin\n\n22) foksieloy: Sacrifice G1 Balldrick\nBuild R2 Percy\n\n23) OnePageWars: Trade B2 R2 Bravelyranrobin\n\n24) foksieloy: Build G1 Foksieloy\n\n25) OnePageWars: Build B2 Bravelyranrobin\n\n26) foksieloy: Trade G3 B3 Foksieloy\n\n27) OnePageWars: Trade B2 Y2 Bravelyranrobin\n\n28) foksieloy: Build B2 Foksieloy\n\tOnePageWars: Have you seen Frozen?\n\n29) OnePageWars: Sacrifice Y2 Bravelyranrobin\nMove B1 Bravelyranrobin Percy\nMove B1 Percy Foksieloy\nCatastrophe Foksieloy B\n\tfoksieloy: Haven&#39;t. Is it good?\n\tOnePageWars: I think so. They only had 90 some minutes, but I think they used the time very well to create well developed characters. I like the focus on internal conflict in Anna and especially Elsa.\n\n30) foksieloy: Build R2 Foksieloy\n\tfoksieloy: I should have seen this coming, just did it 5 min ago in another game. :) Ok, I will check that movie out then.\n\n31) OnePageWars: Build R3 Bravelyranrobin\n\n\tfoksieloy: Ok, I lost. No matter what I do, you will either catastrophe my red in foksieloy if I build r3 there, in Percy if I sac g1 to build r3 there, or just capture my system if I don&#39;t build r3. Good game!\n\tfoksieloy: Perhaps another game?\n\tOnePageWars: yes, good game. And sure, I&#39;d be happy to play another.\n\nHomeworlds Online (SDG# 24767)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2013.12.17, Ended: 2014.1.30\nParticipants: Ultan_the_Blind (S), wil (N), foksieloy (E)\nWinner: Ultan_the_Blind\n\n1) wil: Homeworld B2 R1 G3\n\n2) foksieloy: Homeworld G3 B2 Y3\n\twil: Welcome to the game....be sure to create different homeworlds so nobody is dealing with a short universe...\n\n3) Ultan_the_Blind: Homeworld Y1 B3 G3\n\tfoksieloy: Hi everyone, good luck, have fun!\n\n4) wil: Build G1 Wil\n\tUltan_the_Blind: G&#39;day! This shall be my first 3 player game. Lets see how it goes... Good luck mine most honorable foes!\n\n5) foksieloy: Build Y1 Foksieloy\n\n6) Ultan_the_Blind: Build G1 Ultan_the_blind\n\n7) wil: Trade G1 Y1 Wil\n\n8) foksieloy: Discover Y1 Foksieloy G1 Katsushiro\n\twil: I played one four way..and didn&#39;t like it...I played one other three way...and suddenly I am in three more!   Great stuff....but I was told by another player that he has never finished any more multiples than binary...and so far that is true for me....seems most of us don&#39;t have the attention span required to play at least once every 5 days....\n\n9) Ultan_the_Blind: Build G1 Ultan_the_blind\n\n10) wil: Build Y1 Wil\n\n11) foksieloy: Build Y2 Foksieloy\n\n12) Ultan_the_Blind: Discover G1 Ultan_the_blind Y2 Sol\n\n13) wil: Discover Y1 Wil G3 G3\n\n14) foksieloy: Trade Y2 G2 Foksieloy\n\n15) Ultan_the_Blind: Trade G3 Y3 Ultan_the_blind\n\n16) wil: Build G1 Wil\n\n17) foksieloy: Build G2 Foksieloy\n\n18) Ultan_the_Blind: Build Y2 Ultan_the_blind\n\n19) wil: Build Y2 Wil\n\n20) foksieloy: Sacrifice G2 Foksieloy\nBuild Y2 Katsushiro\nBuild Y3 Foksieloy\n\n21) Ultan_the_Blind: Trade Y3 G3 Ultan_the_blind\n\tfoksieloy: So, seems yellow is popular this game. Never played a 3p game, this is quite fun already. :)\n\n22) wil: Build Y3 G3\n\twil: isolation of any economy, or cornering any economy is always popular....and when one sees someone else take a run on the bank....we should all try to get a little of what is owed to us out before the bank is empty and commodity prices skyrocket.\n\n23) foksieloy: Trade Y3 B3 Foksieloy\n\n24) Ultan_the_Blind: Discover Y2 Ultan_the_blind G2 Urth\n\n25) wil: Discover G1 Wil Y3 Y3\n\n26) foksieloy: Build Y3 Foksieloy\n\n27) Ultan_the_Blind: Discover G1 Sol B1 Neptune\n\n28) wil: Trade Y2 R2 Wil\n\n29) foksieloy: Discover Y1 Katsushiro G2 Shichiroji\n\n30) Ultan_the_Blind: Build G2 Neptune\n\n31) wil: Build Y2 Wil\n\n32) foksieloy: Build Y2 Shichiroji\n\tUltan_the_Blind: Merry Christmas, O you who I do not know!\n\tfoksieloy: Best wishes for the holidays!\n\twil: backatcha\n\n33) Ultan_the_Blind: Trade G1 B1 Neptune\n\n34) wil: Trade Y2 R2 Wil\n\n35) foksieloy: Trade Y3 R3 Foksieloy\n\n36) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind\nBuild G1 Neptune\nBuild Y2 Urth\nBuild G3 Ultan_the_blind\n\n37) wil: Move R2 Wil G3\n\tfoksieloy: I am not making that mistake again. :&gt;\n\n38) foksieloy: Build Y3 Foksieloy\n\tUltan_the_Blind: The bank is getting kinda depleted....\n\n39) Ultan_the_Blind: Sacrifice Y2 Urth\nMove B1 Neptune Foksieloy\nMove G1 Neptune Foksieloy\n\n40) wil: Build R1 G3\n\n41) foksieloy: Attack G1S Foksieloy\n\tUltan_the_Blind: I apologise for my slow and errant playing. Just got back from a long holiday visit with my family.\n\n42) Ultan_the_Blind: Build B1 Foksieloy\nCatastrophe Foksieloy Blue\n\n43) wil: Discover R2 G3 Y2 Y2\n\n44) foksieloy: Move Y1 Shichiroji Ultan_the_blind\n\n45) Ultan_the_Blind: Trade G1 R1 Ultan_the_blind\n\n46) wil: Build G1 Wil\n\n47) foksieloy: Sacrifice Y3 Foksieloy\nMove Y2 Katsushiro Shichiroji\nMove Y2 Shichiroji Ultan_the_blind\nMove Y2 Shichiroji Ultan_the_blind\nCatastrophe Ultan_the_blind Yellow\n\n48) Ultan_the_Blind: Build G1 Neptune\n\n49) wil: Move G1 Wil Foksieloy\nCatastrophe Foksieloy G\n\n50) Ultan_the_Blind: Build R1 Ultan_the_blind\n\n51) wil: Move R2 Y2 Ultan_the_blind\n\tUltan_the_Blind: :Sigh: I feared that would be the result of angering you, Foksieloy... We could easily destroy each other without Wil needing to do a thing!\n\n52) Ultan_the_Blind: Sacrifice R1 Ultan_the_blind\nAttack R2N Ultan_the_blind\n\twil: I would have liked to have had a few of your ships, but it looks like I can manage from here...\n\tfoksieloy: For some reason I thought this was sinister and I was targeting you. Hence my confusion at you making it easier on wil :) I should pay more attention. But yea, if I haven&#39;t done that I would have been dead anyway, so why not go out in a blaze of glory! Good game guys, I&#39;ll be watching you.\n\n53) wil: Build R1 Wil\n\n54) Ultan_the_Blind: Sacrifice Y2 Urth\nMove G1 Neptune Ultan_the_blind\nMove R1 Ultan_the_blind Wil\nCatastrophe Wil Red\n\n55) wil: Build G1 Wil\n\twil: well that didn&#39;t go as planned.\n\n56) Ultan_the_Blind: Trade G1 Y1 Ultan_the_blind\n\tUltan_the_Blind: Yeah... I was getting quite worried there for a moment! Was about to do something rather rash...\n\n57) wil: Trade G1 B1 Wil\n\n58) Ultan_the_Blind: Trade G2 B2 Neptune\n\n59) wil: Move Y3 G3 Neptune\n\n60) Ultan_the_Blind: Build Y1 Ultan_the_blind\n\n61) wil: Build Y2 G3\n\n62) Ultan_the_Blind: Sacrifice Y1 Ultan_the_blind\nMove B2 Neptune Wil\n\n63) wil: Trade G3 R3 Wil\n\n64) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind\nBuild B1 Wil\nBuild B1 Wil\nBuild B2 Wil\nCatastrophe Wil Blue\n\n\tUltan_the_Blind: Good game, good sirs! You were most honorable foes (and I realize that I got lucky this time). Thank you for an enjoyable game (and sorry again for my slow playing).\n\nHomeworlds Online (SDG# 24859)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.17, Ended: 2013.12.21\nParticipants: wil (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 G3 B3\n\n2) wil: Homeworld R2 B1 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build B1 Foksieloy\n\twil: Thanx for the game!  How did you discover homeworlds?  Do you play the physical game as well?\n\tfoksieloy: Yep, I play the physical game, but most people I played it with (family, friends) either didn&#39;t like it, or don&#39;t have the time, so I decided to try it online. :) Seems there is much more strategy to this game than I expected (and I expected it to be brutal), so I am hoping to learn a lot here.\n\n4) wil: Build G1 Wil\n\twil: Yes, it is for folks with a chess playing mentality\n\n5) foksieloy: Trade B1 G1 Foksieloy\n\n6) wil: Trade G1 B1 Wil\n\n7) foksieloy: Build G1 Foksieloy\n\n8) wil: Build G1 Wil\n\n9) foksieloy: Trade G1 Y1 Foksieloy\n\n10) wil: Build G1 Wil\n\n11) foksieloy: Build G2 Foksieloy\n\n12) wil: Trade G1 Y1 Wil\n\n13) foksieloy: Trade G1 R1 Foksieloy\n\n14) wil: Trade G1 R1 Wil\n\n15) foksieloy: Build R2 Foksieloy\n\n16) wil: Build R2 Wil\n\n17) foksieloy: Discover R2 Foksieloy G2 Garthmarenghi\n\n18) wil: Trade R2 Y2 Wil\n\n19) foksieloy: Build B1 Foksieloy\n\n20) wil: Build B2 Wil\n\n21) foksieloy: Move B1 Foksieloy Garthmarenghi\n\n22) wil: Trade B2 Y2 Wil\n\n23) foksieloy: Trade R2 Y2 Garthmarenghi\n\n24) wil: Build R2 Wil\n\n25) foksieloy: Build B2 Garthmarenghi\n\twil: awe....you wasn&#39;t gonna let me get all the y2s?   Now I have a commute to work....see you on the other side....I am on the east coast US, whereabouts are you in the world?\n\tfoksieloy: Europe, GMT + 1. :)\r\n\r\nWell I am new in the game, but as far as I can tell not having access to a ship of certain size+color can seriously limit you later on. Still learning, been reading the wiki, seemed like something I need to avoid.\n\n26) wil: Discover R2 Wil G3 G3\n\twil: yes, don&#39;t want to be frozen out of any economy...if you are new you are playing well\n\n27) foksieloy: Move R1 Foksieloy Garthmarenghi\n\n28) wil: Move Y2 Wil G3\n\n29) foksieloy: Build B2 Foksieloy\n\n30) wil: Build G1 Wil\n\n31) foksieloy: Discover B2 Garthmarenghi Y3 Toddrivers\n\n32) wil: Discover G1 Wil Y3 Y3\n\n33) foksieloy: Trade B3 Y3 Foksieloy\n\n34) wil: Build G1 Wil\n\n35) foksieloy: Sacrifice Y3 Foksieloy\nMove B1 Garthmarenghi Toddrivers\nMove B1 Toddrivers Wil\nMove B2 Toddrivers Wil\nCatastrophe Wil Blue\n\n36) wil: Sacrifice G3 Wil\nBuild G1 Y3\nBuild G2 Y3\nBuild G3 Wil\n\tfoksieloy: Boom :)\n\twil: You&#39;ve traded a pawn, drone and queen for half my homeworld...making it so we are directly connected and you are without a big gun in your homeworld...  Dangerous footing...I wish you the best.\n\n37) foksieloy: Sacrifice G2 Foksieloy\nBuild Y1 Garthmarenghi\nBuild Y3 Foksieloy\n\tfoksieloy: I know, but I have to see if I can work at close quarters. Learning as I play.\n\n38) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild Y3 G3\n\n39) foksieloy: Discover Y1 Foksieloy B2 Madeleinewool\n\n40) wil: Discover Y3 G3 B2 B2\n\n41) foksieloy: Build B1 Foksieloy\n\tfoksieloy: I see what you mean now, I have been pondering on my move and noticed a lot of way for you to destroy me quickly. Live and learn, like I said, lack of experience. :)\n\twil: And I agree fully...the way to learn is to be annihilated...crushed...repeatedly in different ways so you can see them building.\n\n42) wil: Move G1 Y3 B2\n\n43) foksieloy: Trade B2 R2 Foksieloy\n\n44) wil: Build R3 G3\n\n45) foksieloy: Sacrifice Y3 Foksieloy\nMove R1 Garthmarenghi Foksieloy\nMove R1 Foksieloy Wil\nMove R2 Foksieloy Wil\nCatastrophe Wil Red\n\tfoksieloy: You took control over G, I just now noticed how badly it will affect me.\n\twil: A monopoly in any ecoomy hurts....I find the moving and trading sectors most worthwhile to corner, but building is valuabe...just having the only factory in the universe can cripple ya.  \n\n\tfoksieloy: Good game!\n\tfoksieloy: Perhaps another? I really am enjoying this, wish I joined this site sooner. I am having a nice game in paralel with OnePageWars, and I see you are too, perhaps the three of us should  do a multiplayer. :)\n\twil: I didn&#39;t even see it coming...great move...caught asleep at the wheel... \n\nHomeworlds Online (SDG# 24855)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.17, Ended: 2014.1.3\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\tOnePageWars: is there any reason one would wish to trade his size 3 ship on turn 3 rather than his size 1 besides mindgaming his opponent?\n\tSilentTitan: If you are in danger of being locked out of a color.  \n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\tOnePageWars: Would that happen in a 2 player game?\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\tSilentTitan: It could, if each player had say a b1 in homeworld.  Then first player to go blue, would have pip advantage into the two-pip pieces and the odd out player would need to change the 3-pip rather than the1-pip to stay in the color.\n\n7) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: Hmmm, interesting.\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) OnePageWars: Trade G1 R1 Onepagewars\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) OnePageWars: Build R2 Onepagewars\n\n12) SilentTitan: Build R2 Silenttitan\n\n13) OnePageWars: Trade R1 B1 Onepagewars\n\n14) SilentTitan: Trade R2 Y2 Silenttitan\n\n15) OnePageWars: Build B1 Onepagewars\n\n16) SilentTitan: Build R1 Silenttitan\n\n17) OnePageWars: Build G1 Onepagewars\n\n18) SilentTitan: Discover R1 Silenttitan G1 Sol\n\n19) OnePageWars: Discover R2 Onepagewars G3 Ienjoyedfrozen\n\n20) SilentTitan: Trade R1 B1 Silenttitan\n\n21) OnePageWars: Trade B1 R1 Onepagewars\n\n22) SilentTitan: Build G1 Silenttitan\n\n23) OnePageWars: Build G2 Onepagewars\n\n24) SilentTitan: Move Y2 Silenttitan Sol\n\n25) OnePageWars: Move G2 Onepagewars Ienjoyedfrozen\n\n26) SilentTitan: Build G2 Silenttitan\n\n\nHomeworlds Online (SDG# 24940)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.18, Ended: 2014.1.4\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) OnePageWars: Homeworld B1 R3 G3\n\tOnePageWars: Should I go small universe?\n\n3) wil: Build G1 Wil\n\twil: why would you want to do that?  Do you know who bangle tiger is?   That game is dying....\n\n4) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: I don&#39;t see what the problem with small universe is in a two player game.\n\n5) wil: Trade G1 Y1 Wil\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) wil: Build G1 Wil\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) wil: Discover G1 Wil Y3 Y3\n\n10) OnePageWars: Discover G1 Onepagewars B2 Wormhole\n\n11) wil: Build Y1 Wil\n\n12) OnePageWars: Build Y2 Onepagewars\n\n13) wil: Discover Y1 Wil B3 B3\n\n14) OnePageWars: Build Y2 Onepagewars\n\n15) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 B3\n\n16) OnePageWars: Move Y1 Onepagewars Wormhole\n\n17) wil: Trade Y1 G1 Wil\n\n18) OnePageWars: Build G2 Wormhole\n\n19) wil: Build G2 Y3\n\n20) OnePageWars: Trade G1 R1 Wormhole\n\n21) wil: Trade Y2 R2 Wil\n\n22) OnePageWars: Build R1 Wormhole\n\n23) wil: Discover G1 Y3 Y2 Y2\n\n\twil: hate when this happens\n\tOnePageWars: Sorry about that.\n\nHomeworlds Online (SDG# 24954)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.20, Ended: 2013.12.20\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\n2) wil: Homeworld Y3 G2 B3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) wil: Build B1 Wil\n\n5) OnePageWars: Build G1 Onepagewars\n\n6) wil: Build B1 Wil\n\n7) OnePageWars: Trade G1 Y1 Onepagewars\n\n8) wil: Discover B1 Wil G1 G1\n\n9) OnePageWars: Discover G1 Onepagewars B3 Shogiisfun\n\n10) wil: Build B2 G1\n\n11) OnePageWars: Build Y1 Onepagewars\n\tOnePageWars: I think you&#39;ve outplayed me in this game.\n\n12) wil: Build B2 Wil\n\twil: oh, give me a chance, I&#39;ll screw it up\n\n\tOnePageWars: Don&#39;t be to sure, I may have improved, but you&#39;re still better. :)\n\tOnePageWars: also, you have a monopoly on trade tech ships.\n\tOnePageWars: good game, well played.\n\nHomeworlds Online (SDG# 24970)\nStarted: 2013.12.20, Ended: 2013.12.28\nParticipants: OnePageWars (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld B1 R2 G3\n\n2) OnePageWars: Homeworld B1 R3 G3\n\n3) foksieloy: Build G1 Foksieloy\n\tOnePageWars: Let&#39;s see how the fight for blue econ shapes up. :)\n\tOnePageWars: gl hf!, btw.\n\tfoksieloy: Oh, this is an interesting start! Good luck, have fun!\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) foksieloy: Trade G1 Y1 Foksieloy\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) foksieloy: Build G1 Foksieloy\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) foksieloy: Trade G1 B1 Foksieloy\n\n10) OnePageWars: Build G1 Onepagewars\n\n11) foksieloy: Build B2 Foksieloy\n\n12) OnePageWars: Trade G3 B3 Onepagewars\n\n13) foksieloy: Trade B2 R2 Foksieloy\n\n14) OnePageWars: Trade G1 R1 Onepagewars\n\n15) foksieloy: Build B2 Foksieloy\n\tOnePageWars: Sorry for being late to move.\n\n16) OnePageWars: Build B2 Onepagewars\n\n17) foksieloy: Build G1 Foksieloy\n\n18) OnePageWars: Build R1 Onepagewars\n\n19) foksieloy: Trade G3 Y3 Foksieloy\n\n20) OnePageWars: Discover R1 Onepagewars G2 Dota2\n\n21) foksieloy: Sacrifice Y3 Foksieloy\nDiscover B1 Foksieloy G3 Leagueoflegends\nMove B1 Leagueoflegends Dota2\nMove B1 Dota2 Onepagewars\nCatastrophe Onepagewars Blue\n\n\tOnePageWars: ok. Didn&#39;t see that, obviously. :)\n\tOnePageWars: good game wp.\n\tfoksieloy: Good game! Another?\n\nHomeworlds Online (SDG# 24969)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.20, Ended: 2014.1.4\nParticipants: Laurie_Menke (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R1 B2 G3\n\twil: Well...there she is.  I do believe neither of our schedules have more than brief holes that aren&#39;t filled... a games afoot\n\n2) Laurie_Menke: Homeworld B3 Y1 G3\n\tLaurie_Menke: I do believe you&#39;re right!  And yay for finding holes!  :o)\n\n3) wil: B G1 Wil\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) wil: T G1 Y1 Wil\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) wil: Build Y1 Wil\n\n8) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller\n\twil: I take its youse is back in California?\r\n\n\tLaurie_Menke: Just back now.  Landed about an hour ago.  But they gave me the job!!!  I&#39;m so excited!!!  So you&#39;ll see me again as soon as I can get back there.  Oh, and don&#39;t worry...I&#39;ll be living in the Pepperland basement, not at Wunderland.  ;o)\n\n9) wil: Build Y2 Wil\n\n10) Laurie_Menke: Trade G1 B1 Laurie_menke\n\twil: what me worry?  So what is your job?  \n\tLaurie_Menke: &quot;Personal Assistant to the Looneys&quot;  :o)  The first line of my job description is to keep the family happy.  LOL!  But basically, it&#39;s what I&#39;ve been doing--organization projects, a little cooking and cleaning, running errands...that sort of thing.  :o)\n\n11) wil: Discover Y2 Wil B3 B3\n\twil: great....they can use the assitance.\n\n12) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: :o)\n\twil: they just have so much goin on...tracking everyday stuff gets behind...\n\tLaurie_Menke: Right.  Hopefully I&#39;ll be able to help keep them on track when things get crazy.  At least I&#39;m going to try!  :o)  Ihopeyou had a great Christmas!\n\n13) wil: Build Y2 Wil\n\n14) Laurie_Menke: Trade B1 R1 Laurie_menke\n\n15) wil: Trade Y2 R2 Wil\n\n16) Laurie_Menke: Build B1 Laurie_menke\n\n17) wil: Build Y2 Wil\n\twil: rainy 40&#39;s here...the beginning of the wet sloppy cold dc winter\n\n18) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\tLaurie_Menke: Looking forward to it!  :o)  Though I&#39;m sure the iciness isn&#39;t fun.  It&#39;s sunny &amp; 80 here today.\n\n19) wil: Discover Y2 Wil G3 G3\n\tLaurie_Menke: Hated to lose my g3, but I had to get some yellow.  :o/\n\n20) Laurie_Menke: Trade B1 G1 Laurie_menke\n\twil: uh oh, that could be bad...\n\tLaurie_Menke: LOL...see, I&#39;m such a newbie that I don&#39;t know if that&#39;s bad for me or for you.  ;o)  Most likely me...\n\n21) wil: Sacrifice G3 Wil\nBuild Y3 B3\nBuild Y3 G3\nBuild R1 Wil\n\tLaurie_Menke: Yeah, I&#39;m starting to see why it&#39;s bad for me.  ::sigh::\n\n22) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove R1 Laurie_menke Yeller\nMove R1 Yeller B3\nMove R1 B3 Wil\nCatastrophe Wil Red\n\twil: I learn by losing....often...\n\twil: that is often losing....I&#39;m still working on learning from my losses...\n\tLaurie_Menke: LOL...me, too!  So since it&#39;s pretty clear I&#39;ve lost this one, I&#39;m going to go out with a bang by breaking starship rule number one.  ;o)\n\n23) wil: Sacrifice Y2 B3\nMove Y3 G3 Yeller\nMove Y3 Yeller Laurie_menke\n\twil: I thought I set that bait correctly....\n\n24) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: LOL...now you&#39;re just toying with me, eh?  ;o)\n\n25) wil: Trade Y3 R3 B3\n\n26) Laurie_Menke: Build G1 Laurie_menke\n\n27) wil: Sacrifice R3 B3\nAttack G1 Laurie_menke\nAttack G1 Laurie_menke\nAttack B1 Laurie_menke\n\twil: yes there was\n\twil: I am trying to end it painlessly for you....\n\tLaurie_Menke: I appreciate the kindness.  :o)  But I&#39;m not going down without a fight.  ;o)\n\n28) Laurie_Menke: Move G1 Yeller Laurie_menke\n\tLaurie_Menke: Just because I need the practice, mind you.  I hope you don&#39;t mind me dragging it out a little.  :o)\n\n29) wil: Build G2 Laurie_menke\nCatastrophe Laurie_menke G\n\twil: no worries that is part of it...\n\n30) Laurie_Menke: Trade B1 G1 Laurie_menke\n\tLaurie_Menke: Thanks.  :o)  And Happy New Year!  :oD\n\n31) wil: Trade Y3 R3 Laurie_menke\n\twil: HNY back atcha....funny trying to figure how to end it...\n\tLaurie_Menke: LOL...I have one tiny little ship left.  ;o)\n\n32) Laurie_Menke: Build G1 Laurie_menke\n\n33) wil: Sacrifice R3 Laurie_menke\nAttack G1 Laurie_menke\nAttack G1 Laurie_menke\nPass\n\n\tLaurie_Menke: And now for the finale.  ;o)\n\twil: I don&#39;t think I&#39;ve ever completed a game with so few pieces left on the board.\n\tLaurie_Menke: It is pretty sparse!  Only one star system besides our homeworlds.  :o)  Thank you very much for the game!  I won&#39;t start another right now because I&#39;m in crazy moving-in-11-days mode.  But once I&#39;m settled, maybe I can try again?\n\twil: Of course...  and yeah...we blew up so much there is nothing left...\n\tLaurie_Menke: :o)  Thanks!\n\nHomeworlds Online (SDG# 24983)\nVariants: &quot;Sinister, Hard time&quot;\nStarted: 2013.12.21, Ended: 2013.12.31\nParticipants: wil (S), foksieloy (N), OnePageWars (E)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 B3 G3\n\tfoksieloy: Hi guys, sinister is on, so I think that means I am attacking OnePageWars, OnePageWars is attacking wil, and wil is attacking me. Have fun. :)\n\n2) OnePageWars: Homeworld B1 R2 G3\n\tfoksieloy: Oh, and please, let&#39;s not have a small universe.\n\n3) wil: H B3 Y2 G3\n\n4) foksieloy: Build G1 Foksieloy\n\n5) wil: Build G1 Wil\n\tfoksieloy: Best wishes for the holidays!\n\n6) foksieloy: Trade G3 Y3 Foksieloy\n\twil: well then?\n\n7) wil: Discover G1 Wil B1 B1\n\tfoksieloy: This was unexpected.\n\n8) foksieloy: Build G1 Foksieloy\n\n9) wil: Build G1 Wil\n\n10) foksieloy: Build G2 Foksieloy\n\n11) wil: Build G2 B1\n\n12) foksieloy: Trade G2 R2 Foksieloy\n\n13) wil: Trade G2 R2 B1\n\n14) foksieloy: Build G2 Foksieloy\n\n15) wil: Build G2 B1\n\n16) foksieloy: Discover G1 Foksieloy B2 Parasoul\n\n17) wil: Trade G1 Y1 B1\n\twil: wonder why it always tells us that we are late for our turns??\n\n18) foksieloy: Build Y1 Foksieloy\n\n19) wil: Move R2 B1 Parasoul\n\tOnePageWars: lol, yeah. That keeps scaring me.\n\n20) foksieloy: Sacrifice G1 Parasoul\nBuild G1 Foksieloy\n\n21) wil: Build G1 B1\n\n22) foksieloy: Discover G1 Foksieloy Y2 Squigly\n\n23) wil: Trade G2 R2 B1\n\n24) foksieloy: Build G2 Squigly\n\n25) wil: Build G2 B1\n\n26) foksieloy: Discover G2 Squigly R1 Filia\n\n27) wil: Move G1 B1 Parasoul\n\n28) foksieloy: Sacrifice Y3 Foksieloy\nMove G1 Squigly Filia\nMove G1 Filia Wil\nMove G2 Filia Wil\nCatastrophe Wil Green\n\n\tfoksieloy: Good game!\n\tOnePageWars: same\n\tfoksieloy: Happy new year guys!\n\tOnePageWars: happy new year!\n\twil: Well I blew that....Happy New Year!\n\nHomeworlds Online (SDG# 24984)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.21, Ended: 2013.12.25\nParticipants: wil (S), foksieloy (N)\nWinner: wil\n\n1) foksieloy: Homeworld B1 G3 Y3\n\n2) wil: H B2 R1 G3\n\tfoksieloy: Hi, welcome back. :)\n\n3) foksieloy: Build Y1 Foksieloy\n\twil: Thx ilook fwd to the game!\r\n\n\n4) wil: Build G1 Wil\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) wil: T G1 B1 Wil\n\n7) foksieloy: Build G1 Foksieloy\n\n8) wil: Build B1 Wil\n\n9) foksieloy: Build Y1 Foksieloy\n\n10) wil: Trade B1 Y1 Wil\n\n11) foksieloy: Trade G1 B1 Foksieloy\n\n12) wil: Build B2 Wil\n\n13) foksieloy: Sacrifice Y3 Foksieloy\nDiscover B1 Foksieloy G2 Temporary1\nDiscover B1 Temporary1 G3 Temporary2\nMove B1 Temporary2 Wil\nCatastrophe Wil B\n\n14) wil: Build Y1 Wil\n\tfoksieloy: I know, risky, but I have to see how this strategy works out.\n\twil: I said to my self....self will he do this?  maybe....probably....nah...well let&#39;s see....got my answer!!\n\n15) foksieloy: Build Y2 Foksieloy\n\tfoksieloy: I am always trigger happy in games! :)\n\n16) wil: Discover Y1 Wil G2 G2\n\n17) foksieloy: Trade Y1 R1 Foksieloy\n\n18) wil: Build Y1 Wil\n\n19) foksieloy: Build Y2 Foksieloy\n\n20) wil: Build Y2 G2\n\n21) foksieloy: Discover Y2 Foksieloy G2 Warvick\n\n22) wil: Discover Y2 G2 B3 B3\n\n23) foksieloy: Build Y3 Warvick\n\n24) wil: Trade Y2 R2 B3\n\n25) foksieloy: Build Y2 Foksieloy\n\n26) wil: Build Y3 G2\n\n27) foksieloy: Trade Y2 B2 Foksieloy\n\twil: I have played this misearably I hope you have found more admirable oponents in other games...\n\n28) wil: Build G1 Wil\n\tfoksieloy: Oh, the games are very enjoyable, don&#39;t worry. I made a similar mistake in a game with OnePageWars, and he was quick to punish me there. So, you could say I am learning from my mistakes quickly enough to apply it to other games.\n\n29) foksieloy: Build B1 Foksieloy\n\twil: Yeah, that is my issue...It takes me a while to learn from my mistakes....but losing is the way to grow for sure.\n\n30) wil: Move Y3 G2 Foksieloy\n\n31) foksieloy: Build R1 Foksieloy\n\n32) wil: Sacrifice R2 B3\nAttack R1 Foksieloy\nAttack R1 Foksieloy\n\tfoksieloy: Damn, I shouldn&#39;t be making moves so early in the morning. :)\n\n33) foksieloy: Move Y2 Warvick Foksieloy\n\n34) wil: Attack B2 Foksieloy\n\n35) foksieloy: Trade Y2 R2 Foksieloy\n\n36) wil: Attack R2 Foksieloy\n\n37) foksieloy: Trade Y2 R2 Foksieloy\nCatastrophe Foksieloy Red\n\n38) wil: Trade Y3 R3 Foksieloy\n\tfoksieloy: We are both indecisive today. Must be all the food. :)\n\n\tfoksieloy: I didn&#39;t even realise I was in danger until it happened. Lack of experience.\n\twil: we are basically at checkmate I believe...\n\tfoksieloy: Yea, too late. Good game!\n\tfoksieloy: Another perhaps? :)\n\twil: always willing...  challenge away...  leaving up the challenge allows me to play multiple games with multiple folks and learn this daggone strategy.  and I get swamped all the time, not seeing the armada creeping in...\n\nHomeworlds Online (SDG# 24801)\nStarted: 2013.12.25, Ended: 2013.12.30\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24947)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.25, Ended: 2014.2.4\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\twil: oops..short uni...hate short unis\n\tSilentTitan: Lol.... Yeah that&#39;s a different set of skills.\r\n\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\twil: a game will sometimes get to that in 30 moves...or even ultra short and direct connect....but starting out that way is just somehow unfulfilling.\n\n6) wil: Trade G1 B1 Wil\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) wil: Build B2 Wil\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) wil: Trade B2 R2 Wil\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) wil: Build B2 Wil\n\twil: this is where I go wrong, I should just play follow the leader...I always deviate to soon, or much wrongly...\n\n13) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n14) wil: Trade B2 Y2 Wil\n\n15) SilentTitan: Build B2 Sol\n\n16) wil: Discover B1 Wil G2 G2\n\n17) SilentTitan: Trade B1 Y1 Sol\n\n18) wil: Build Y1 Wil\n\n19) SilentTitan: Build G1 Silenttitan\n\n20) wil: Move Y1 Wil G2\n\n21) SilentTitan: Trade G1 R1 Silenttitan\n\n22) wil: Move R2 Wil G2\n\n23) SilentTitan: Build G1 Silenttitan\n\n24) wil: Build G1 Wil\n\n25) SilentTitan: Move R1 Silenttitan Sol\n\n26) wil: Discover G1 Wil Y2 Y2\n\n27) SilentTitan: Discover G1 Silenttitan Y3 Sole\n\n28) wil: Build G1 Wil\n\n29) SilentTitan: Build G2 Silenttitan\n\n30) wil: Build G2 Y2\n\n31) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Silenttitan\nBuild Y3 Sol\nBuild G3 Silenttitan\n\n32) wil: S G3 Wil\nBuild G3 Wil\nBuild Y3 G2\nBuild R1 G2\n\n33) SilentTitan: Discover Y1 Silenttitan R3 Soul\n\n34) wil: Move R2 G2 Sole\n\n35) SilentTitan: Sacrifice G1 Sole\nBuild R2 Sol\n\n36) wil: Move G2 Y2 Soul\n\n37) SilentTitan: Sacrifice Y1 Soul\nDiscover B2 Silenttitan R3 Tic\n\n38) wil: Sacrifice G3 Wil\nBuild G1 Soul\nBuild R2 Sole\nBuild G3 Wil\n\n39) SilentTitan: Sacrifice G2 Silenttitan\nBuild B1 Tic\nBuild B3 Sol\n\n40) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild B3 G2\nBuild G3 Wil\n\n41) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Sol G2\nMove Y1 Sol G2\nCatastrophe G2 Yellow\n\n42) wil: Trade B3 Y3 G2\n\n43) SilentTitan: Trade B3 Y3 Sol\n\n44) wil: Move G1 Y2 Sole\n\n45) SilentTitan: Move Y3 Sol Silenttitan\n\n46) wil: Move Y3 G2 Sol\n\n47) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Sol\nBuild B3 Sol\nBuild B3 Tic\n\n48) wil: Sacrifice Y2 Wil\nMove B1 G2 Sol\nDiscover R1 G2 G3 G3\nCatastrophe Sol B\n\n49) SilentTitan: Trade B1 Y1 Tic\n\n50) wil: Sacrifice R2 Sole\nAttack R2 Sol\nAttack R1 Sol\n\n51) SilentTitan: Trade B2 G2 Tic\n\n52) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 G3\nBuild Y1 Sol\n\n53) SilentTitan: Build B1 Tic\n\n54) wil: Trade G1 Y1 Wil\n\n55) SilentTitan: Build Y2 Tic\n\n56) wil: Build Y2 Wil\n\n57) SilentTitan: Sacrifice Y2 Tic\nMove B3 Tic Y2\nMove B3 Y2 Soul\n\n58) wil: Sacrifice G2 Soul\nBuild G1 Sole\nBuild G2 Wil\n\n59) SilentTitan: Build Y2 Tic\n\n60) wil: Sacrifice Y2 Wil\nMove R1 G3 Silenttitan\nMove R1 Sol Silenttitan\n\n61) SilentTitan: Attack G1 Soul South\n\n62) wil: Build Y2 Wil\n\n63) SilentTitan: Build B1 Tic\n\n64) wil: Move R2 Sole Silenttitan\nCatastrophe Silenttitan R\n\n65) SilentTitan: Trade Y3 B3 Silenttitan\n\n66) wil: Move Y3 Sol Silenttitan\n\n67) SilentTitan: Pass\n\n68) wil: Sacrifice R2 Sol\nAttack B3 Silenttitan\nPass\n\n\tSilentTitan: Good game\n\nHomeworlds Online (SDG# 25000)\nVariants: &quot;Hard time&quot;\nStarted: 2013.12.25, Ended: 2014.1.4\nParticipants: wil (S), foksieloy (N)\nWinner: wil\n\n1) foksieloy: Homeworld G1 B3 Y3\n\twil: Onepagewars has me in two games now..he had me playin three!  We are game 25,000!  gotta mean sometin!\n\tfoksieloy: It means we are superior. :)\n\n2) wil: Homeworld R2 B1 G3\n\n3) foksieloy: Build Y1 Foksieloy\n\n4) wil: Build G1 Wil\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) wil: Build G2 Wil\n\n7) foksieloy: Build G2 Foksieloy\n\n8) wil: Trade G2 Y2 Wil\n\n9) foksieloy: Trade G2 R2 Foksieloy\n\n10) wil: Discover G1 Wil Y3 Y3\n\n11) foksieloy: Discover G1 Foksieloy B2 Banana\n\n12) wil: Build G2 Y3\n\n13) foksieloy: Build G2 Banana\n\n14) wil: Build G2 Wil\n\n15) foksieloy: Trade G1 Y1 Banana\n\n16) wil: Trade G2 R2 Wil\n\n17) foksieloy: Build G1 Banana\n\n18) wil: Build G2 Wil\n\n19) foksieloy: Discover G2 Banana Y3 Orange\n\n20) wil: Trade G2 B2 Wil\n\n21) foksieloy: Build Y1 Banana\n\n22) wil: Discover G1 Y3 Y2 Y2\n\n23) foksieloy: Build R1 Foksieloy\n\n24) wil: Build B1 Wil\n\tfoksieloy: I think I had way too many games going at once for a while there. Took me a bit of time to remember what I was doing in each one.\n\twil: that is a challenge....especiallly when some have similar characteristics!\n\n25) foksieloy: Trade Y1 R1 Banana\n\n26) wil: Move G2 Y3 Banana\n\n27) foksieloy: Build G2 Banana\n\n28) wil: Build G3 Y2\n\n29) foksieloy: Attack G2 Banana\n\n30) wil: Sacrifice G3 Y2\nBuild G3 Y2\nBuild G3 Wil\nBuild Y1 Wil\n\n31) foksieloy: Move G1 Banana Orange\n\twil: I traded one g2 for two g3s...\n\n32) wil: Discover R2 Wil Y3 Y3\n\tfoksieloy: I know, but I would have lost that g3 anyway, and then everything else in banana.\n\n33) foksieloy: Sacrifice G2 Banana\nBuild Y1 Foksieloy\nBuild Y2 Banana\n\n34) wil: Move G3 Wil Y3\n\n35) foksieloy: Trade Y1 B1 Banana\n\n36) wil: Move B2 Wil Y3\n\n37) foksieloy: Sacrifice B1 Banana\nTrade G1 B1 Orange\n\n38) wil: Sacrifice G3 Y2\nBuild G1 Wil\nBuild G2 Y3\nBuild G3 Y2\n\n39) foksieloy: Build B2 Orange\n\n40) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Y3\nBuild R1 Y3\n\tfoksieloy: Did I notice correctly that if I was to build that last g2 you could use your g3 for massive factory production?\n\twil: Yes...sack g3, build g3 and two more...\n\n41) foksieloy: Sacrifice Y2 Banana\nMove B2 Orange Wil\nMove B1 Orange Wil\nCatastrophe Wil B\n\twil: for example\n\tfoksieloy: Ah, so it was unavoidable. :&gt;\n\n42) wil: Move Y1 Wil Foksieloy\n\twil: well that was just green....now that i have the factories I can reproduce at will\n\n43) foksieloy: Sacrifice Y1 Foksieloy\nMove R1 Banana Orange\n\n44) wil: Sacrifice G2 Y3\nBuild Y1 Foksieloy\nBuild Y1 Foksieloy\nCatastrophe Foksieloy Y\n\tfoksieloy: And now your factory is right next to me it seems. Good luck to me, I will need it.\n\n\twil: I would love some cookies.\n\tfoksieloy: Oh damn, didn&#39;t expect that, nice. Good game!\n\twil: I don&#39;t know if it has a name....but you move in with one....getting set to catastrophe...if they resppond with an attack you move in with another, if they don&#39;t, you grow...tis the bain of having a green star.\n\tfoksieloy: I will have to remember that one! :)\n\twil: Yes, losing a dozen games teaches you a dozen things to avoid and a  dozen ways to win.  Steven Covey in Seven Habits of Highly Effective people...one of the habits is &#39;Begin with the end in mind&#39;  that is what I focus on...I have to either take out your star system, or eliminate your ships from your star system...so I try to insure that I make that hard for you to do to me, and keep lookng at what I need to accumulate to do that to you...\n\nHomeworlds Online (SDG# 24857)\nStarted: 2013.12.27, Ended: 2014.1.12\nParticipants: haukec (S), OnePageWars (N)\nWinner: haukec\n\n1) OnePageWars: Homeworld B1 R2 G3\n\tOnePageWars: Ah, a brand new game, I see. :) Welcome! gl hf!\n\n2) haukec: Homeworld R1 B2 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) haukec: Build G1 Haukec\n\n5) OnePageWars: Trade G1 B1 Onepagewars\n\n6) haukec: Build G1 Haukec\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) haukec: Trade G1 Y1 Haukec\n\n9) OnePageWars: Trade G1 Y1 Onepagewars\n\n10) haukec: Discover G1 Haukec G3 Somewherelse\n\n11) OnePageWars: Build G1 Onepagewars\n\n12) haukec: Build G1 Haukec\n\n13) OnePageWars: Move G1 Onepagewars Somewherelse\n\n14) haukec: Discover G1 Haukec Y3 Anewworld\n\n15) OnePageWars: Build G2 Onepagewars\n\n16) haukec: Build G2 Haukec\n\n17) OnePageWars: Build B1 Onepagewars\n\thaukec: this game is amazingly strategic - about once per turn i realize another error i made before... though first game ever :)\n\n18) haukec: Sacrifice G3 Haukec\nBuild G2 Anewworld\nBuild G3 Haukec\nBuild Y1 Haukec\n\tOnePageWars: This is your first game? Welcome to Homeworlds!\n\tOnePageWars: And yes, the strategy and tactics of this game abound. I&#39;m still learning new things virtually every game, but I am relatively new to this game.\n\n19) OnePageWars: Move B1 Onepagewars Somewherelse\n\n20) haukec: Build Y2 Haukec\n\n21) OnePageWars: Sacrifice G3 Onepagewars\nBuild G3 Onepagewars\nBuild B2 Somewherelse\nBuild Y2 Onepagewars\n\n22) haukec: Sacrifice Y2 Haukec\nMove G1 Somewherelse Onepagewars\nMove G1 Anewworld Onepagewars\nCatastrophe Onepagewars G\n\n23) OnePageWars: Move Y1 Onepagewars Somewherelse\n\n24) haukec: Move G2 Haukec Somewherelse\n\tOnePageWars: Nice one.\n\n25) OnePageWars: Move G1 Somewherelse Onepagewars\n\n26) haukec: Sacrifice G2 Anewworld\nBuild G1 Somewherelse\nBuild G1 Somewherelse\nCatastrophe Somewherelse G\n\thaukec: thank you :) but now i realize why there was this warning in the manual of inclomplete annilation-plans, you walled me in quite effective ;)\n\n27) OnePageWars: Build G1 Onepagewars\n\n28) haukec: Discover Y1 Haukec G3 Nowhere\n\n29) OnePageWars: Discover G1 Onepagewars B3 Serenity_valley\n\n30) haukec: Build Y1 Haukec\n\tOnePageWars: Have you seen Firefly?\n\n31) OnePageWars: Build Y2 Onepagewars\n\thaukec: Yes! :D Bad omen for me? ;)\n\tOnePageWars: Only if you&#39;re one of them independents.\n\n32) haukec: Move Y1 Haukec Serenity_valley\n\n33) OnePageWars: Move Y2 Onepagewars Serenity_valley\n\n34) haukec: Sacrifice G3 Haukec\nBuild Y2 Serenity_valley\nBuild Y3 Nowhere\nBuild Y3 Haukec\n\tOnePageWars: &quot;They thought they&#39;d march through Serenity Valley, and we choked them with those words. We have done the impossible, and that makes us mighty.&quot; - Mal as near as I can remember it.\n\n35) OnePageWars: Build Y3 Onepagewars\n\tOnePageWars: Well, since I&#39;m defending Serenity Valley, that would make me the Independents. I guess this is appropriate considering the unfortunate outcome of that fateful battle.\n\n36) haukec: Sacrifice Y2 Serenity_valley\nMove Y1 Nowhere Onepagewars\nMove Y1 Serenity_valley Onepagewars\nCatastrophe Onepagewars Y\n\tOnePageWars: Unless of course you plan to cancel project make psychotic psychics and cease war on the Independents rather than wipe so many of them out in Serenity Valley at unthinkable cost of life to both sides.\n\n37) OnePageWars: Build Y1 Serenity_valley\n\thaukec: So much for the unthinkable cost of life to both sides ;)\r\nI think, i will make an android-clone of this game :D\n\n38) haukec: Move Y3 Nowhere Onepagewars\n\tOnePageWars: Though high command, having only 2 small ships in their home system, has surrendered, the Independents at Serenity_Valley shall still hold out for some three weeks. (Did I get the timeline correct? It&#39;s been a while since I watched the series.)\n\thaukec: To be honest, i don&#39;t know for sure too, but I will definetively watch the series again sometime soon :)\n\n39) OnePageWars: Build Y1 Serenity_valley\n\tOnePageWars: Zoe: They&#39;re not coming. Command says it&#39;s to hot. They&#39;re pulling out. We&#39;re to lay down arms.\n\n40) haukec: Move Y1 Haukec Serenity_valley\nCatastrophe Serenity_valley Y\n\tOnePageWars: And btw, I looked it up and according to http://wiki.serenitymush.com/wiki/index.php/Battle_of_Serenity_Valley It was only two weeks that they held out after Independent High Command had surrendered.\n\n41) OnePageWars: Sacrifice G1 Serenity_valley\nBuild B1 Onepagewars\n\n42) haukec: Attack G1 Onepagewars\n\tOnePageWars: The Independent forces at Serenity Valley who refused to surrender have been eliminated or captured.\n\n43) OnePageWars: Pass\n\n44) haukec: Trade Y3 B3 Onepagewars\nCatastrophe Onepagewars B\n\tOnePageWars: &quot;We&#39;re all just folk now.&quot; - Mal\n\thaukec: Thank you very much for this challenging and interesting match :)\n\tOnePageWars: The same to you. I very much enjoyed both the gameplay and the Firefly quotations with a little role play thrown in at the end.\n\thaukec: Half of writing history is hiding the truth. ;)\n\thaukec: btw, I started implementing the game in java, having this as an android app would be awesome :)\n\tOnePageWars: Yes, it would.\n\n\nHomeworlds Online (SDG# 25012)\nVariants: &quot;Unrated&quot;\nStarted: 2013.12.29, Ended: 2014.1.14\nParticipants: foksieloy (S), fogus (N)\nWinner: foksieloy\n\n1) fogus: Homeworld R1 B2 G3\n\tfoksieloy: Hi! Have fun, if you have questions, ask. :)\n\tfogus: Thank you.  Will do.\n\n2) foksieloy: Homeworld G1 B3 Y3\n\n3) fogus: Build G1 Fogus\n\tfogus: I totally went with Andrew Looney&#39;s opening move without fully understanding why.  I suspect that I&#39;ll get it as I get more (some) games under my belt.\n\n4) foksieloy: Build Y1 Foksieloy\n\tfoksieloy: The homeworld setup you are playing is called a banker. It involves quickly using g1 ships to &quot;reserve&quot; large pieces in the form of stars to later build by sacrificing the g1 ship (since the star returns to the stash if no ships are present). I anticipated that, so that is why g1 is in my system as opposed to b1. It reduces the number of g1 ships you can build without giving me access to g2.\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) foksieloy: Trade Y1 G1 Foksieloy\n\n7) fogus: Build G1 Fogus\n\n8) foksieloy: Build G2 Foksieloy\n\tfogus: How long have you been playing?  My son and I have played a few games, but I never felt that I knew what I was doing.  I very much appreciate your taking the time to play/discuss with me.\n\tfoksieloy: Not long truth be told, played a bit with family and recently joined here. But had (and still have) a lot of parallel games here, been reading a bit on forums, and just generally analyzing the game. I have a tendency to learn quickly. In its essence this is a resource management game. Here is something that might help you at first: consider each ship pip to be 1 point, and each distance that the ship is closer to the enemy homeworld is 1 point more. So a g2 in your system is 2 points, a g1 next to the enemies system is 4 points. And then try to keep your score growing while not allowing the opponent to do the same. It is a solid abstraction for the beginning of learning the game.\n\n9) fogus: Trade G1 B1 Fogus\n\tfoksieloy: Just a warning, you might not see it but if you build a green ship now, you lose the game. Just a fair warning. :)\n\tfogus: The pip-scoring is a nice idea.  Thanks.\n\tfogus: Can you say more about the dangers of another green ship?  I know about catastrophes, but I thought it was 4 of the same color.\n\n10) foksieloy: Trade G2 R2 Foksieloy\n\tfoksieloy: You would have 3 green ships . I sacrifice my y3. I move my g1 to your system and declare catastrophe green. You only have y1 left. I just need to get my 2pip ship into your system and it is game over (and I can get it there within 3 turns), and 3 turns is not enough for you to reach a 2 pip ship.\n\n11) fogus: Discover Y1 Fogus R3 Abalone\n\tfogus: Wow!  So cool.  Way deeper than I can see ATM.\n\tfogus: Hmm, I&#39;m beginning to see how I&#39;m at a disadvantage for ship size.\n\n12) foksieloy: Build R1 Foksieloy\n\n13) fogus: Build G1 Fogus\n\tfoksieloy: A y3 ship is quite good as a pressure strategy, your opponent is constantly evaluating whether to go or not to go over 2 pyramids of same color in system. And yes, I am trying to lock your out of mediums. This is the main advantage of the Goldilocks start (x1 and x3): good control over 2pip, and through that over 3pip.\n\tfoksieloy: Also, happy new year!\n\n14) foksieloy: Build G2 Foksieloy\n\n15) fogus: Trade B1 Y1 Fogus\n\tfogus: Happy new year to you too. :-)\n\n16) foksieloy: Trade G2 B2 Foksieloy\n\n17) fogus: Move G1 Fogus Abalone\n\n18) foksieloy: Build G2 Foksieloy\n\n19) fogus: Build G2 Abalone\n\n20) foksieloy: Trade G2 B2 Foksieloy\n\n21) fogus: Build G2 Fogus\n\n22) foksieloy: Discover B2 Foksieloy Y2 Nurgle\n\n23) fogus: Trade Y1 R1 Fogus\n\n24) foksieloy: Build Y1 Foksieloy\n\tfogus: My ham-handed attempt at a catastrophe was thwarted, so instead I thought it wise to try and get a G2.  However, I have no clear vision of a strategy at the moment.  Do you mind sharing your thoughts?\n\n25) fogus: Build R2 Fogus\n\tfoksieloy: At the moment I am trying to lock you out of blue to limit your color mobility (switching to colors you need). This is putting me at a slight disadvantage with green which I now intend to start working on. Your best bet at the moment might be to pressure me into giving you a g3 and get some presence in a size 2 system to threaten invasion of my homeworld.\n\n26) foksieloy: Sacrifice Y3 Foksieloy\nMove R1 Foksieloy Nurgle\nMove R1 Nurgle Abalone\nMove R1 Abalone Fogus\nCatastrophe Fogus Red\n\n27) fogus: Trade G2 Y2 Fogus\n\n28) foksieloy: Sacrifice B2 Nurgle\nTrade B2 G2 Foksieloy\nTrade G1 B1 Foksieloy\n\tfoksieloy: See what I meant with y3 being a threat? :)\n\tfogus: OMG!  Lol.  I suck so bad. :-)\n\n29) fogus: Build G1 Fogus\n\tfoksieloy: Warning: our homesystems are now connected. :)\n\n30) foksieloy: Build Y1 Foksieloy\n\n31) fogus: Trade G1 B1 Fogus\n\n32) foksieloy: Discover Y1 Foksieloy G2 Ramsesii\n\n33) fogus: Build Y2 Abalone\n\tfoksieloy: So, I see you are on BGG as well.\n\n34) foksieloy: Build Y2 Ramsesii\n\n35) fogus: Move B1 Fogus Abalone\n\tfogus: I&#39;m beginning to see how this game works... but my trouble still is seeing more than 1.5 moves ahead.  I&#39;m working on it though. :-)\n\n36) foksieloy: Build Y3 Foksieloy\n\n37) fogus: Sacrifice Y2 Fogus\nMove Y1 Abalone Ramsesii\nMove Y2 Abalone Ramsesii\nCatastrophe Ramsesii Y\n\n38) foksieloy: Move Y3 Foksieloy Fogus\n\n39) fogus: Trade G1 Y1 Abalone\n\n40) foksieloy: Sacrifice R2 Foksieloy\nAttack G3 Fogus\nPass\n\tfoksieloy: And that was a mistake :&gt;\n\n\tfoksieloy: Good game. :)\n\tfogus: You&#39;re being kind.  Thanks a ton for talking through many moves with me.\n\nHomeworlds Online (SDG# 25033)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.1, Ended: 2014.2.1\nParticipants: Broccoli_Commander (S), Danner (N)\nWinner: Broccoli_Commander\n\n1) Danner: Homeworld B1 R2 G3 Orion\n\tDanner: Hi! Have a good game.\n\n2) Broccoli_Commander: Homeworld B2 R3 G3\n\tDanner: How shall we resolve cycles?\n\n3) Danner: Build G1 Danner\n\tBroccoli_Commander: Hi, thanks have a good game too\r\n\r\nFor cycles I never encountered the problem but I&#39;d suggest the following:\r\n\r\nIf a given situation is encountered twice we are not allowed to create it a third time.\n\tBroccoli_Commander: For instance player 1 plays X -&gt; A and thus initiates a cycle like:\r\n\r\nX-&gt;A-&gt;B-&gt;C-&gt;D-&gt;A\r\n\r\nPlayer 2 is still allowed to play A-&gt;B (it might be the very best option; P1 is responsible for this play because he chose to play X-&gt;A in the first place) So we could have\r\n\r\nX-&gt;A-&gt;B-&gt;C-&gt;D-&gt;A-&gt;B-&gt;C-&gt;D\r\n\r\nbut at this stage P1 must deviate from D-&gt;A: he started it so he must end it.\r\n\r\nX-&gt;A-&gt;B-&gt;C-&gt;D-&gt;A-&gt;B-&gt;C-&gt;D-&gt;Y\r\n\r\nWhaddya think?\n\tDanner: Ok, it seems fine to me.\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n7) Danner: Build Y1 Danner\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) Danner: Build Y1 Danner\n\n10) Broccoli_Commander: Build B1 Broccoli_commander\n\n11) Danner: Discover Y1 Danner G3 Tirade\n\n12) Broccoli_Commander: Trade G3 Y3 Broccoli_commander\n\n13) Danner: Build Y2 Danner\n\n14) Broccoli_Commander: Discover B1 Broccoli_commander G1 Pea\n\n15) Danner: Trade Y2 B2 Danner\n\n16) Broccoli_Commander: Build B2 Pea\n\tDanner: I&#39;m sorry for the delay.\n\n17) Danner: Move B2 Danner Tirade\n\n18) Broccoli_Commander: Trade B2 R2 Pea\n\n19) Danner: Build Y2 Tirade\n\n20) Broccoli_Commander: Build Y2 Broccoli_commander\n\n21) Danner: Trade Y2 R2 Tirade\n\n22) Broccoli_Commander: Build B2 Broccoli_commander\n\n23) Danner: Build B3 Tirade\n\n24) Broccoli_Commander: Build B3 Pea\n\n25) Danner: Discover B2 Tirade G1 Bob\n\n26) Broccoli_Commander: Sacrifice B2 Broccoli_commander\nTrade B3 Y3 Pea\nTrade Y3 G3 Broccoli_commander\n\n\tDanner: Darn it. Sorry.\n\tBroccoli_Commander: Too bad, the interesting things were just ahead :P\r\nNo worries, though. It happens.\n\nHomeworlds Online (SDG# 25024)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.2, Ended: 2014.1.11\nParticipants: Aristos (S), wil (N)\nWinner: Aristos\n\n1) wil: Homeworld B2 R1 G3\n\tAristos: Well met, again. \n\n2) Aristos: Homeworld G3 B2 Y3\n\twil: I look forward to the game....wondering where my first mistake will be...\n\n3) wil: Build G1 Wil\n\n4) Aristos: Build Y1 Aristos\n\n5) wil: Trade G1 Y1 Wil\n\tAristos: Your first mistake was challenging the dread power of the Aristos Empire! Mwuhahahahahaha!\n\tAristos: [Later, in Aristos Command Center]\r\n&quot;Um, sir...&quot;\r\n&quot;Yes?&quot;\r\n&quot;There&#39;s a problem with the omnipotent strategy module.&quot;\r\n&quot;Problem?&quot;\r\n&quot;Yes, sir. Someone spilled coffee on it. It&#39;s busted.&quot;\r\n&quot;But... but I already broadcast my maniacal laugh across the galaxy! I assumed the module would be working. Get it fixed!&quot; \r\n&quot;Right away, sir. I just thought you should know.&quot;\r\n&quot;If you can&#39;t get it fixed, I need you to research technology for recalling radio transmissions...&quot; \n\n6) Aristos: Trade Y1 R1 Aristos\n\twil: Omnipotent strategy module??  You are still using those?  We&#39;ve sent a telescope many multiples of the speed of light to the next galaxy looking back and are watching the history of our galaxy and we can&#39;t get back far enough to see when we used those ancient contraptions.\n\n7) wil: Build Y1 Wil\n\tAristos: &quot;Get in here, private!&quot;\r\n&quot;Yes, sir?&quot;\r\n&quot;How in hell did the wil ambassador hear our discussion about the omniscient strategy module?&quot;\r\n&quot;Well, sir, the last output of the omniscient strategy module before the coffee was spilled on it was a directive to enable permanent galactic broadcast mode on all command ships.&quot;\r\n&quot;What kind of ridiculous plan is that?&quot;\r\n&quot;An omniscient strategy means making sure that everyone knows everything.&quot;\r\n&quot;WHAT?! We&#39;ll never win like that!&quot;\r\n&quot;Oh. Then we should have been using the victory strategy modules all along. I believe that&#39;s what the wil are using.&quot; \r\n&quot;Right. Effective immediately, we will begin using the victory strategy modules. AND TURN OFF THE BROADCAST.&quot;\r\n&quot;Yes, sir.&quot;\n\n8) Aristos: Build R1 Aristos\n\twil: We&#39;ve got word now that they are confusing their omniscient strategy with their omnimpotent stategy module...  it is better than we thought.  \n\n9) wil: Discover Y1 Wil G3 G3\n\tAristos: It could hardly be omnipotent if it wasn&#39;t also omniscient. \n\n10) Aristos: Build R2 Aristos\n\n11) wil: Build Y1 G3\n\n12) Aristos: Trade R2 G2 Aristos\n\twil: Beware the speech...I knew you were an aggressive violent race by all that shouting.... \n\n13) wil: Build Y2 Wil\n\tAristos: I just like the color red, that&#39;s all.\n\n14) Aristos: Build Y2 Aristos\n\n15) wil: Trade Y2 R2 Wil\n\n16) Aristos: Discover R1 Aristos G1 First\n\n17) wil: Build Y2 Wil\n\n18) Aristos: Move Y2 Aristos First\n\n19) wil: Trade Y2 B2 Wil\n\n20) Aristos: Build R2 First\n\n21) wil: Build Y2 Wil\n\n22) Aristos: Sacrifice G2 Aristos\nBuild Y2 First\nBuild Y3 Aristos\n\n23) wil: Sacrifice Y2 Wil\nMove B2 Wil G3\nMove R2 Wil G3\n\n24) Aristos: Sacrifice Y2 First\nMove Y3 Aristos First\nMove Y3 First G3\n\n25) wil: Build Y2 G3\nCatastrophe G3 Y\n\n26) Aristos: Build Y1 First\n\n27) wil: Build B1 G3\n\twil: Sorry, that ship was contaminated with yellow fever, while we &#39;know&#39; it entered our airspace for medical assistance it was to far gone and infected two of our ships as well, they all had to be quarantined back in the bank.\n\n28) Aristos: Trade R1 B1 Aristos\n\tAristos: I totally understand. I would have done the same. \n\n29) wil: Trade B1 Y1 G3\n\n30) Aristos: Build B1 Aristos\n\n31) wil: Build Y2 Wil\n\n32) Aristos: Trade B1 R1 Aristos\n\n33) wil: Discover Y2 Wil B3 B3\n\n34) Aristos: Discover R2 First Y3 Second\n\n35) wil: Build B1 G3\n\n36) Aristos: Build R2 First\n\n37) wil: Build R3 G3\n\n38) Aristos: Build R3 Aristos\n\n39) wil: Move R2 G3 First\n\n40) Aristos: Attack R2N First\n\n41) wil: Build R3 G3\n\n42) Aristos: Sacrifice Y2 First\nMove R1 First G3\nMove R2 First G3\nCatastrophe G3 Red\n\tAristos: First blood.\n\n43) wil: Trade B2 R2 G3\n\twil: &quot;I just like the color of red, that&#39;s all&quot;\n\tAristos: Yes. And I like it so much, I want *all* of it. ;-)\n\tAristos: sacrifice y2 First\r\nmove r1 First g3\r\nmove r2 First g3\r\ncatastrophe g3 red\n\n44) Aristos: Build Y2 First\n\tAristos: I felt bad about taking all the red, so I decided to share with you. I&#39;m not sure what went wrong in the transfer. \n\n45) wil: Build G1 Wil\n\n46) Aristos: Move Y2 First B3\n\n47) wil: Discover G1 Wil Y3 Y3\n\tAristos: You are one move ahead of me on every branch. I think I paid too much to get ahead of you on size 3 ships.\n\n48) Aristos: Sacrifice R1 Aristos\nAttack Y2 B3\n\n49) wil: Build Y2 G3\n\twil: What do you mean, ahead on every branch?  I feel like I haven&#39;t yet come close to learning this game.\r\n\n\tAristos: I feel like I&#39;m short one move -- if I build, I open you up to a much more successful build unless I can build twice. If I move to attack, I end up short enough ships to defend afterward. It&#39;s like I&#39;m one move out of sync with every strategy that I can come up with. I lost tempo when I attacked... I still think it was a good move because the extra size 3 ship puts me ahead, but I can&#39;t figure anything to *do* with it. It&#39;s like I&#39;m just in a holding pattern, unable to advance now. \n\n50) Aristos: Build R1 Aristos\n\twil: Have no fear...I will make some mistake which you can capitalize.\n\n51) wil: Sacrifice G1 Y3\nBuild Y3 Wil\n\n52) Aristos: Move R3 Aristos First\n\n53) wil: Trade Y2 B2 G3\n\n54) Aristos: Move R3 First G3\n\n55) wil: Build R1 G3\n\n56) Aristos: Build R3 First\n\n57) wil: Build R3 G3\nCatastrophe G3 R\n\n58) Aristos: Move R3 First G3\n\twil:  \t\r\n&quot;I just like the color of red, that&#39;s all&quot; \n\n59) wil: Discover B2 G3 G1 G1\n\n60) Aristos: Sacrifice R2 First\nAttack Y1 G3\nAttack B1 G3\n\twil: I&#39;ve flumoxed this up\n\n61) wil: Trade Y1 R1 Wil\n\tAristos: Believe it or not, I don&#39;t think you made a mistake until you just now triggered the catastrophe in red. You made an excellent play and caught up on the number of size-3 ships. I piled into your g3 system. I *think* your better move, rather than catastrophe me, was to keep advancing your blue ships toward my homeworld. If I took the time to actually capture some of your ships, I think you would have beaten me home. By triggering the catastrophe, you actually lost more ground than I did -- yes, I lost a size-3 ship, but you lost a size-2 and a size-1 AND you lost a turn. I don&#39;t have any pressure on me now, so I was free to use my other red ship to come right back into the system. \r\n\r\nYou&#39;ve fought very well, and I certainly wouldn&#39;t call the game at this point. I may have a small advantage now, but it isn&#39;t enough to declare victory by any means! Game on!\n\n62) Aristos: Build R2 G3\n\twil: I considered that, but I figured you&#39;d sack your r3 and take them all in one fell swoop and then I&#39;d be right where I am now, except you could grow another R3 and I couldn&#39;t.\n\n63) wil: Build G1 Wil\n\tAristos: Perhaps. I didnt think it was worth the expense, but I guess you couldn&#39;t know what was in my head. :-)\n\tAristos: Wow. That was almost a disaster.\n\n64) Aristos: Sacrifice Y2 B3\nMove R2 G3 Wil\nMove R2 Second Wil\nCatastrophe Wil Red\n\n65) wil: Trade G1 R1 Wil\n\n66) Aristos: Move R3 G3 G1\n\tAristos: Listening to a new piece of music I found online... to the tune of &quot;Carry On, My Wayward Son&quot;:\r\n&quot;Those carry ons must weigh a ton... each passenger&#39;s allowed just one... so give my weary arms some rest... don&#39;t&#39;cha fly no more!&quot; \r\nhttps://origin.cdbaby.com/cd/bohnhoff3\n\twil: hee hee...  sounds better than Kansas to me.\r\n\n\n\twil: I&#39;ll just not get outta this one...thanx\n\tAristos: Thanks for the game. \n\nHomeworlds Online (SDG# 24998)\nStarted: 2014.1.5, Ended: 2014.3.15\nParticipants: ts52 (S), OnePageWars (N)\nWinner: ts52\n\n1) OnePageWars: Homeworld R1 B2 G3\n\n2) ts52: H Y3 B2 G3\n\tOnePageWars: gl hf!\n\n3) OnePageWars: Build G1 Onepagewars\n\tts52: Hi. Have a good game.\n\tts52: Hi. Have a good game.\n\n4) ts52: B G1 Ts52\n\tOnePageWars: tagg!\n\n5) OnePageWars: Trade G1 B1 Onepagewars\n\n6) ts52: Discover G1 Ts52 B1 Grover\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) ts52: Build G1 Grover\n\n9) OnePageWars: Trade G1 Y1 Onepagewars\n\n10) ts52: Trade G1 R1 Grover\n\n11) OnePageWars: Build Y1 Onepagewars\n\n12) ts52: Build G1 Ts52\n\n13) OnePageWars: Build B1 Onepagewars\n\n14) ts52: Build R1 Grover\n\n15) OnePageWars: Discover B1 Onepagewars G3 Rubik&#39;s_cube\n\n16) ts52: Build R2 Grover\n\n17) OnePageWars: Build B2 Rubik&#39;s_cube\n\n18) ts52: Trade R2 Y2 Grover\n\n19) OnePageWars: Build B3 Rubik&#39;s_cube\n\n20) ts52: Build R2 Grover\n\n21) OnePageWars: Trade B3 R3 Rubik&#39;s_cube\n\n22) ts52: Discover R2 Grover Y3 Bigbird\n\n23) OnePageWars: Move Y1 Onepagewars Rubik&#39;s_cube\n\n24) ts52: D R1 Grover Y3 Zoe\n\n25) OnePageWars: Build R2 Rubik&#39;s_cube\n\n26) ts52: Build G1 Grover\n\n27) OnePageWars: Move R3 Rubik&#39;s_cube Grover\n\n28) ts52: Sacrifice Y2 Grover\nMove G1 Grover Zoe\nMove G1 Grover Bigbird\n\n29) OnePageWars: Attack R1 Grover\n\n30) ts52: B G2 Zoe\n\n31) OnePageWars: Trade R1 Y1 Grover\n\n32) ts52: Build R1 Bigbird\n\n33) OnePageWars: Move R3 Grover Bigbird\n\n34) ts52: Move R2 Bigbird Grover\n\n35) OnePageWars: Move R3 Bigbird Grover\n\n36) ts52: Build G2 Bigbird\n\n37) OnePageWars: Attack R2 Grover\n\n38) ts52: Sacrifice G2 Zoe\nBuild R2 Bigbird\nBuild R3 Zoe\n\n39) OnePageWars: Build R3 Rubik&#39;s_cube\n\n40) ts52: Build G2 Zoe\n\n41) OnePageWars: Build B3 Rubik&#39;s_cube\n\n42) ts52: Build G2 Ts52\n\n43) OnePageWars: Move R3 Grover Bigbird\n\n44) ts52: M R3 Zoe Grover\n\n45) OnePageWars: Attack R2 Bigbird\n\n46) ts52: Attack R2 Grover\n\n47) OnePageWars: Attack G2 Bigbird\n\n48) ts52: A Y1 Grover\n\n49) OnePageWars: Discover R3 Rubik&#39;s_cube Y2 Hoban_washburne\n\n50) ts52: M G2 Ts52 Grover\n\n51) OnePageWars: Move R3 Hoban_washburne Zoe\n\n52) ts52: Move R2 Grover Bigbird\nCatastrophe Bigbird Red\n\n53) OnePageWars: Attack G2 Zoe\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Zoe\nBuild R2 Zoe\nCatastrophe Zoe Red\n\n55) OnePageWars: Trade B3 R3 Rubik&#39;s_cube\n\n56) ts52: Build R1 Grover\n\n57) OnePageWars: Build B3 Rubik&#39;s_cube\n\n58) ts52: Move R3 Grover Bigbird\n\n59) OnePageWars: Move R3 Rubik&#39;s_cube Grover\n\n60) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Grover\nBuild R2 Grover\nCatastrophe Grover Red\n\n\tOnePageWars: good game, wp.\n\tts52: Thanks. I wasn&#39;t so sure I&#39;d won.\n\nHomeworlds Online (SDG# 25014)\nStarted: 2014.1.6, Ended: 2014.6.2\nParticipants: Mandrel (S), wil (N)\nWinner: Mandrel\n\n1) wil: Homeworld B2 R1 G3\n\n2) Mandrel: Homeworld B3 R2 G3\n\twil: starting another prior to finishing me off on the last??\n\n3) wil: Build G1 Wil\n\tMandrel: I like to have gamea at different stages. Plus I don&#39;t think things are at all settled in the other game yet...\n\twil: I don&#39;t mind at all!   I was in three games with one person, it was quite interesting looking at them.  As players response varies I like to keep 6 or more games going at once...the more the merrier as I am still way learning.\n\n4) Mandrel: Build G1 Mandrel\n\twil: I think for the first move when you select a big ship the same color little ship should come with it.\n\n5) wil: Trade G1 R1 Wil\n\n6) Mandrel: Trade G1 R1 Mandrel\n\n7) wil: Build R2 Wil\n\n8) Mandrel: B R2 Mandrel\n\n9) wil: Trade R2 Y2 Wil\n\n10) Mandrel: T R1 Y1 Mandrel\n\n11) wil: Build Y1 Wil\n\n12) Mandrel: Build G1 Mandrel\n\n13) wil: Trade Y1 B1 Wil\n\n14) Mandrel: B Y1 Mandrel\n\n15) wil: Build B1 Wil\n\n16) Mandrel: T Y1 B1 Mandrel\n\n17) wil: Discover B1 Wil G3 G3\n\n18) Mandrel: Discover B1 Mandrel G1 Fear\n\n19) wil: Build B2 G3\n\n20) Mandrel: Build B2 Fear\n\n21) wil: Build B3 Wil\n\n22) Mandrel: T B1 R1 Fear\n\n23) wil: Trade B3 Y3 Wil\n\n24) Mandrel: T R2 Y2 Mandrel\n\n25) wil: Move Y2 Wil G3\n\n26) Mandrel: B R2 Fear\n\n27) wil: M R1 Wil G3\n\n28) Mandrel: T R1 Y1 Fear\n\n29) wil: D B2 G3 G1 G1\n\n30) Mandrel: B G2 Mandrel\n\n31) wil: Build G2 Wil\n\n32) Mandrel: Move G1 Mandrel Fear\n\n33) wil: Build Y1 G3\n\n34) Mandrel: Trade Y1 R1 Mandrel\n\n35) wil: M Y1 G3 G1\n\n36) Mandrel: D G1 Fear B3 George\n\n37) wil: B Y1 Wil\n\n38) Mandrel: Build Y2 Mandrel\n\n39) wil: S G3 Wil\nB R2 G3\nB Y3 G3\nB Y3 G1\n\n40) Mandrel: S G3 Mandrel\nBuild G2 George\nBuild G3 Mandrel\nBuild R3 Fear\n\n41) wil: B G3 Wil\n\twil: 4 moves to mate. (He says not very confidently at all)\n\twil: All planets must align, and the moon be in aquarius...\n\n42) Mandrel: M R3 Fear George\n\tMandrel: I fear you may be correct.\n\tMandrel: I&#39;m muttering incantations to gain favour from the Fates.\n\n43) wil: S Y3 G1\nM B1 G3 G1\nM B1 G1 Mandrel\nM B2 G1 Mandrel\n\twil: Your incantations worked...I can&#39;t see whatever I thought I saw and I left myself no notes!\n\n44) Mandrel: S R2 Fear\nAttack B1N Mandrel\nAttack B2N Mandrel\n\tMandrel: I fear that it is undoubtedly only a stay of execution. \n\n45) wil: S Y3 G3\nM B1 Wil G3\nM B1 G3 G1\nM B1 G1 Mandrel\nC Mandrel B\n\twil: Yes, I think I&#39;ve come to my senses and quit wasting time.  Any preferences for last meal?\n\n46) Mandrel: M R1 Mandrel G3\n\n47) wil: S G3 Wil\nB G3 Wil\nB Y3 G3\nB Y3 G1\n\n48) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild R2 G3\nBuild R3 George\nCatastrophe G3 R\n\n49) wil: T Y1 B1 Wil\n\twil: I was gonna just send a pawn in, but that looked like it was gonna get circular....\n\n50) Mandrel: Sacrifice Y2 Mandrel\nMove R3 George Wil\nMove R3 George Wil\n\n51) wil: T G2 R2 Wil\nC Wil R\n\n52) Mandrel: Move B2 Fear Wil\n\n\twil: Sweet!  Nice plays!\n\tMandrel: Good game, well played.\n\nHomeworlds Online (SDG# 25077)\nStarted: 2014.1.6, Ended: 2014.2.15\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B2 G3\n\n2) OnePageWars: Homeworld R1 B2 G3\n\twil: Gonna try fortress..\n\n3) wil: Build G1 Wil\n\tOnePageWars: tagg!\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) wil: Trade G1 R1 Wil\n\n6) OnePageWars: Trade G1 R1 Onepagewars\n\n7) wil: Build R2 Wil\n\n8) OnePageWars: Build R2 Onepagewars\n\n9) wil: Trade R2 B2 Wil\n\n10) OnePageWars: Trade R2 Y2 Onepagewars\n\n11) wil: Build R2 Wil\n\n12) OnePageWars: Build R2 Onepagewars\n\n13) wil: Trade R2 Y2 Wil\n\n14) OnePageWars: Trade R2 G2 Onepagewars\n\n15) wil: Build R2 Wil\n\tOnePageWars: These are some early size twos that we&#39;re getting. :) It&#39;s amazing how quickly each game I play diverges from every other I have ever played.\n\n16) OnePageWars: Build R2 Onepagewars\n\twil: Yes they can be quite different.\n\n17) wil: Discover R2 Wil G1 G1\n\n18) OnePageWars: Discover R2 Onepagewars G3 Hi____\n\n19) wil: Discover R1 Wil B1 B1\n\tOnePageWars: I was hoping it would run the underscores together and then you would have a really hard time moving to my world :)\n\n20) OnePageWars: Build Y1 Onepagewars\n\n21) wil: Build G1 Wil\n\n22) OnePageWars: Move Y1 Onepagewars Hi____\n\n23) wil: Move G1 Wil B1\n\n24) OnePageWars: Move R2 Hi____ B1\n\n25) wil: Build R2 G1\n\n26) OnePageWars: Move R1 Onepagewars Hi____\n\n27) wil: Sacrifice Y2 Wil\nMove B2 Wil G1\nMove R2 G1 Hi____\n\n28) OnePageWars: Build R3 Hi____\n\twil: I like &#39;lets see what happens&#39; moves.\n\n29) wil: Build R3 G1\n\n30) OnePageWars: Attack R2 Hi____\n\n31) wil: Trade R3 Y3 G1\n\tOnePageWars: So much red tech.\n\n32) OnePageWars: Discover R2 Hi____ G2 Hola__\n\n33) wil: Build R3 G1\n\tOnePageWars: Close game, afaict.\n\n34) OnePageWars: Attack G1 B1\n\n35) wil: Build Y1 G1\n\n36) OnePageWars: Build Y1 Onepagewars\n\n37) wil: Move Y1 G1 Wil\n\n38) OnePageWars: Build Y2 Hi____\n\n39) wil: Build Y2 G1\n\n40) OnePageWars: Discover Y1 Hi____ G2 Hey___\n\n41) wil: Build Y3 Wil\n\n42) OnePageWars: Build Y3 Hi____\n\n43) wil: Move Y3 G1 Hola__\n\n44) OnePageWars: Move R3 Hi____ Hey___\n\n45) wil: Sacrifice R1 B1\nAttack R2 Hola__\n\n46) OnePageWars: Trade G1 B1 B1\n\n47) wil: Build G1 Wil\n\n48) OnePageWars: Move Y2 Hi____ B1\n\n49) wil: Move Y3 Hola__ B1\n\n50) OnePageWars: Sacrifice Y2 B1\nMove R2 B1 Hey___\nMove B1 B1 Hey___\n\n51) wil: Build Y2 G1\n\n52) OnePageWars: Move G2 Onepagewars Hi____\n\n53) wil: Discover Y3 B1 B3 B3\n\n54) OnePageWars: Build B1 Hey___\n\n55) wil: Build B1 G1\n\n56) OnePageWars: Move B1 Hey___ G1\n\n57) wil: Move B1 G1 B3\n\n58) OnePageWars: Build B3 Hey___\n\n59) wil: Trade B1 G1 B3\n\n60) OnePageWars: Build B1 G1\n\n61) wil: Move B2 G1 Hola__\n\n62) OnePageWars: Move R3 Hey___ Hi____\n\n63) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Hola__\nBuild R1 Hola__\n\n64) OnePageWars: Move B1 Hey___ Hi____\n\n65) wil: Attack B1 G1\n\n66) OnePageWars: Pass\n\n67) wil: Move G1 Wil G1\n\n68) OnePageWars: Pass\n\n69) wil: Sacrifice Y3 Wil\nMove G1 B3 G1\nMove G1 G1 Hi____\nMove G1 G1 Hi____\nCatastrophe Hi____ G\n\n70) OnePageWars: Build Y3 Hey___\n\n71) wil: Build Y3 Wil\n\n72) OnePageWars: Build G1 Onepagewars\n\n73) wil: Trade B3 G3 Hola__\n\n74) OnePageWars: Discover G1 Onepagewars B3 Yippee\n\n75) wil: Move R2 G1 Yippee\n\n\nHomeworlds Online (SDG# 24922)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.7, Ended: 2014.1.7\nParticipants: balon (S), Marmalade (N)\nWinner: Marmalade\n\n\nHomeworlds Online (SDG# 25097)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.7, Ended: 2014.2.8\nParticipants: OnePageWars (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 B3 G3\n\n2) OnePageWars: Homeworld R2 B1 G3\n\tfoksieloy: Howdy, good luck and have fun! :)\n\n3) foksieloy: Build G1 Foksieloy\n\n4) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: gl hf!\n\n5) foksieloy: Trade G1 Y1 Foksieloy\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) foksieloy: Build G1 Foksieloy\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) foksieloy: Trade G1 B1 Foksieloy\n\n10) OnePageWars: Trade G1 B1 Onepagewars\n\n11) foksieloy: Build G1 Foksieloy\n\n12) OnePageWars: Build B2 Onepagewars\n\n13) foksieloy: Trade G3 Y3 Foksieloy\n\n14) OnePageWars: Discover B2 Onepagewars G3 Hydrogen\n\n15) foksieloy: Build G1 Foksieloy\n\n16) OnePageWars: Build B2 Hydrogen\n\n17) foksieloy: Discover B1 Foksieloy G2 Tibbers\n\n18) OnePageWars: Trade B2 Y2 Hydrogen\n\n19) foksieloy: Build B2 Tibbers\n\tOnePageWars: Flash into Tibbers stun OP! :)\n\n20) OnePageWars: Build B2 Hydrogen\n\n21) foksieloy: Sacrifice Y1 Foksieloy\nDiscover B1 Tibbers G3 Valor\n\tfoksieloy: Annie now has blue :P\n\tOnePageWars: Is it a supp Annie? If so, then at least your mid doesn&#39;t have it.\n\n22) OnePageWars: Trade B2 R2 Hydrogen\n\n23) foksieloy: Build B2 Valor\n\n24) OnePageWars: Build B3 Hydrogen\n\n25) foksieloy: Build B3 Tibbers\n\n26) OnePageWars: Trade B3 R3 Hydrogen\n\n27) foksieloy: Trade B3 R3 Tibbers\n\n28) OnePageWars: Build B3 Hydrogen\n\n29) foksieloy: Build B3 Tibbers\n\n30) OnePageWars: Build Y1 Hydrogen\n\n31) foksieloy: Trade B2 Y2 Tibbers\n\n32) OnePageWars: Trade Y1 G1 Hydrogen\n\n33) foksieloy: Sacrifice Y2 Tibbers\nMove B2 Valor Onepagewars\nMove B1 Valor Onepagewars\nCatastrophe Onepagewars Blue\n\n\tOnePageWars: good game.\n\tfoksieloy: Good game!\n\nHomeworlds Online (SDG# 24978)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.7, Ended: 2014.3.8\nParticipants: Grosseteste (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Grosseteste: Homeworld G3 B1 R3\n\twil: thx for the game!\n\n3) wil: Build G1 Wil\n\tGrosseteste: My first ever SDG game.  Good Luck!\n\tGrosseteste: My first ever SDG game.  Good Luck!\n\n4) Grosseteste: Build R1 Grosseteste\n\twil: first sdg?  have you played homeworlds?\n\tGrosseteste: Only a couple games of solitaire. A big part of the reason I joined SDG is to make sure I&#39;m playing it right before I inflict it on friends :)\n\n5) wil: Trade G1 R1 Wil\n\twil: solitaire homworlds??  playing both sides?\n\n6) Grosseteste: Trade R1 Y1 Grosseteste\n\n7) wil: Build G1 Wil\n\n8) Grosseteste: Discover Y1 Grosseteste G2 Luce\n\tGrosseteste: How did I undo that?\n\tGrosseteste: How did I undo that?\n\tGrosseteste: And yes, playing both sides.  Unitary Homeworlds?\n\twil: you get one undo...it appears you may have pushed the button twice?\n\n9) wil: Trade G1 B1 Wil\n\n10) Grosseteste: Build Y1 Luce\n\n11) wil: Trade B1 Y1 Wil\n\twil: You&#39;ve got the right idea...but you should have built another yellow before you moved one out so you could build in multiple locations...\n\n12) Grosseteste: Build Y2 Luce\n\tGrosseteste: Thanks; also, could you tell me what &quot;hard time&quot; is?\n\twil: hard time means that if you don&#39;t play in so many days you automatically resign....\n\twil: hard time means that if you don&#39;t play in so many days you automatically resign....\n\n13) wil: Build Y2 Wil\n\n14) Grosseteste: Sacrifice Y2 Luce\nDiscover Y1 Luce G1 Colore\nDiscover Y1 Luce B1 Compotus\n\n15) wil: Trade Y1 B1 Wil\n\n16) Grosseteste: Trade Y1 G1 Compotus\n\n17) wil: Build B2 Wil\n\twil: since you can only travel from a star that is not the same size as your own, your goal is to place ships within range of my homweworld, and me in range of yours...going to a star two moves away from either of us is typically used as a safe zone, sort of counter productive toward attacking..(he says as is opponent amasses armament to beat him rudely 20 moves from now.\n\n18) Grosseteste: Build G1 Compotus\n\twil: b b2 wil\n\n19) wil: Discover B2 Wil G3 G3\n\n20) Grosseteste: Build G2 Compotus\n\n21) wil: Build B2 G3\n\n22) Grosseteste: Trade G2 Y2 Compotus\n\n23) wil: Build B3 G3\n\n24) Grosseteste: Build R1 Grosseteste\n\n25) wil: Trade B3 Y3 G3\n\n26) Grosseteste: Trade R3 B3 Grosseteste\n\n27) wil: Build B3 G3\n\n28) Grosseteste: Build R2 Grosseteste\n\n29) wil: Build B3 Wil\n\n30) Grosseteste: Trade R2 Y2 Grosseteste\n\n31) wil: Sacrifice B2 G3\nTrade B3 R3 G3\nTrade B3 Y3 Wil\n\n32) Grosseteste: Build R2 Grosseteste\n\n33) wil: Build B2 G3\n\n34) Grosseteste: T R2 G2 Grosseteste\n\n35) wil: Discover B2 G3 G2 G2\n\n36) Grosseteste: Trade B3 Y3 Grosseteste\n\n37) wil: Build G2 Wil\n\n38) Grosseteste: Build R2 Grosseteste\n\n39) wil: Sacrifice G3 Wil\nBuild B3 G2\nBuild B3 G2\nBuild G3 Wil\n\n40) Grosseteste: Sacrifice Y3 Grosseteste\nMove G1 Compotus G2\nMove G1 Compotus G2\nMove G2 Grosseteste G2\nCatastrophe G2 Green\n\n41) wil: Build B2 G3\n\n42) Grosseteste: Build Y1 Grosseteste\n\n43) wil: Build B3 G3\n\n44) Grosseteste: Build Y1 Colore\n\n45) wil: Discover B3 G3 G2 G2\n\n46) Grosseteste: Build Y3 Grosseteste\n\n47) wil: Sacrifice Y2 Wil\nMove Y3 G3 G2\nMove Y3 G2 Grosseteste\nCatastrophe Grosseteste Y\n\n48) Grosseteste: S Y2 Compotus\nMove Y1 Colore G2\nMove Y1 G2 Grosseteste\n\n49) wil: Sacrifice G3 Wil\nBuild B1 G3\nBuild B3 G2\nBuild B3 Wil\n\n50) Grosseteste: B Y1 Grosseteste\n\n51) wil: Sacrifice B2 G3\nTrade B3 Y3 G2\nTrade B3 G3 Wil\n\n52) Grosseteste: T R2 G2 Grosseteste\n\twil: I believe I could have ended this by sacking my transportfule and moving my bigBhind intoyour homeworld...then sacking my armor next move and attacking whatever is in your homeworld...but i always miss something...so I figured I&#39;d play it safe and do a little nuclear proliferation\n\tGrosseteste: Cool.  You may have noticed that I&#39;m squeezing all the tactical analysis I can out of this one.\n\n53) wil: Move B3 G2 Grosseteste\n\n54) Grosseteste: Trade R1 G1 Grosseteste\n\n55) wil: Sacrifice R3 G3\nAttack G2 Grosseteste\nAttack G1 Grosseteste\nAttack Y1 Grosseteste\n\n56) Grosseteste: Build Y2 Grosseteste\n\n57) wil: Build Y2 Grosseteste\nCatastrophe Grosseteste Y\n\n\twil: Well, there was a lot to analyze there!  If you desire more analysis, I am always willing to play..and my belief in this game is you learn by losing (take a look at how many losses I&#39;ve achieved!!)\n\tGrosseteste: Thanks for the game!\n\nHomeworlds Online (SDG# 25096)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.9, Ended: 2014.2.23\nParticipants: Mandrel (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 R2 G3\n\n2) Mandrel: H R3 B2 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\tMandrel: Have a good game\n\n4) Mandrel: Build G1 Mandrel\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\tTeeTeeTee: You too!\n\n6) Mandrel: T G1 Y1 Mandrel\n\n7) TeeTeeTee: Build G1 Teeteetee\n\n8) Mandrel: B G1 Mandrel\n\n9) TeeTeeTee: Discover G1 Teeteetee Y3 Barbican\n\n10) Mandrel: D G1 Mandrel R1 District\n\n11) TeeTeeTee: Build Y1 Teeteetee\n\n12) Mandrel: Build Y2 Mandrel\n\n13) TeeTeeTee: Discover Y1 Teeteetee G3 Temple\n\n14) Mandrel: M Y1 Mandrel District\n\n15) TeeTeeTee: Build Y2 Temple\n\n16) Mandrel: Build Y2 District\n\n17) TeeTeeTee: Build Y3 Teeteetee\n\n18) Mandrel: Build Y3 Mandrel\n\n19) TeeTeeTee: Discover Y1 Temple B1 Victoria\n\n20) Mandrel: Move Y2 Mandrel Victoria\n\n21) TeeTeeTee: Sacrifice G1 Barbican\nBuild Y3 Temple\n\n22) Mandrel: Move Y1 District Temple\n\n23) TeeTeeTee: Move Y3 Temple District\n\n24) Mandrel: B G1 Mandrel\n\n25) TeeTeeTee: Trade Y1 B1 Teeteetee\n\n\tMandrel: So sorry to have let this game slide, I can&#39;t always keep up as well as I&#39;d like.\n\nHomeworlds Online (SDG# 25138)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.11, Ended: 2014.1.21\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) wil: Build B2 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade B2 Y2 Wil\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) wil: Build B2 Wil\n\n12) ts52: Move Y1 Ts52 Gonzo\n\n13) wil: Discover B2 Wil G3 G3\n\n14) ts52: Build G1 Ts52\n\n15) wil: Build B2 Wil\n\n16) ts52: Build Y1 Gonzo\n\n17) wil: Build B3 G3\n\n18) ts52: Trade Y1 R1 Gonzo\n\tts52: This isn&#39;t looking too good for me.\n\n19) wil: Trade B3 R3 G3\n\n20) ts52: Build R1 Gonzo\n\twil: I&#39;m afraid for whatever shoe to drop...\n\n21) wil: Build B3 G3\n\tts52: I don&#39;t think there&#39;s a shoe. You just managed to get a good head start to get to large ships faster. Well played.\n\n22) ts52: Build Y1 Gonzo\n\twil: Yes, but I feel I need to pinchmyself, it is like dream....and learn how to duplicate that.\n\n23) wil: T B3 Y3 G3\n\n24) ts52: Build G1 Gonzo\n\n25) wil: Build B3 G3\n\n26) ts52: Build G2 Gonzo\n\n27) wil: Move B3 G3 Gonzo\n\n28) ts52: Move G2 Gonzo G3\n\n29) wil: Sacrifice R3 G3\nAttack G2 G3\nAttack R1 Gonzo\nAttack R1 Gonzo\n\n30) ts52: Trade G3 R3 Ts52\n\n31) wil: Sacrifice G2 G3\nBuild B3 G3\nBuild B3 Gonzo\n\n32) ts52: Move G1 Gonzo G3\n\twil: I suppose I coulda just sent the two red ones in...and then grew them...  if you changed again sent in a queen... I don&#39;t always see the endings right.\n\n33) wil: Trade B3 R3 G3\n\n34) ts52: Move G1 Gonzo G3\n\n35) wil: Sacrifice Y2 Wil\nMove B3 Gonzo Ts52\nMove B3 Gonzo Ts52\n\n36) ts52: Build G2 G3\nCatastrophe G3 Green\n\n37) wil: Sacrifice R1 Gonzo\nAttack R3 Ts52\n\n38) ts52: Build G1 Ts52\n\n39) wil: Sacrifice R3 Ts52\nAttack G1 Ts52\nAttack G1 Ts52\nAttack Y1 Gonzo\n\tts52: Thanks for the game. I look forward to the next one.\n\twil: I was hopin I&#39;d stay one step ahead...I&#39;ve been one step behind so many times..\n\twil: Thank you...anytime, learning this is a blast.\n\n\nHomeworlds Online (SDG# 25139)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.12, Ended: 2014.2.3\nParticipants: zoltar (S), Aristos (N)\nWinner: zoltar\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld B1 Y2 G3\n\tAristos: Well met, Zoltar. I do not believe we have played each other before. Please forgive and remind me if my memory is faulty. \n\n3) Aristos: Build Y1 Aristos\n\tzoltar: I don&#39;t think we have. I don&#39;t play very often.\n\n4) zoltar: Build G1 Zoltar\n\n5) Aristos: Discover Y1 Aristos G1 Glow\n\n6) zoltar: Discover G1 Zoltar B3 Bluecheese\n\n7) Aristos: Build Y1 Aristos\n\n8) zoltar: Build G1 Zoltar\n\n9) Aristos: Build Y1 Glow\n\n10) zoltar: Build G2 Bluecheese\n\n11) Aristos: Build Y2 Glow\n\n12) zoltar: Trade G2 Y2 Bluecheese\n\n13) Aristos: Build Y3 Aristos\n\n14) zoltar: Build Y3 Bluecheese\n\n15) Aristos: Sacrifice Y2 Glow\nMove Y1 Glow Bluecheese\nMove Y1 Glow Bluecheese\nCatastrophe Bluecheese Yellow\n\n16) zoltar: Build G1 Bluecheese\n\n17) Aristos: Trade Y3 G3 Aristos\n\tzoltar: Ouch. Haven&#39;t played much lately and fell for an opening trap. Looks like I&#39;m pretty much lost already! Well done.\n\n18) zoltar: Build G2 Bluecheese\n\tzoltar: I would normally resign here, but I&#39;ll play on a few more moves, as it&#39;s a &#39;ladder&#39; game.\n\tAristos: I&#39;ve screwed up leads like this before, but I&#39;m going to try very hard not to do that this time. \n\n19) Aristos: Discover G3 Aristos Y1 Spark\n\n20) zoltar: Trade G2 Y2 Bluecheese\n\n21) Aristos: Trade Y1 R1 Aristos\n\tAristos: See, like that... I almost screwed it up. \n\n22) zoltar: Build G2 Bluecheese\n\n23) Aristos: Build R1 Aristos\n\n24) zoltar: Trade G1 R1 Zoltar\n\n25) Aristos: Move R1 Aristos Spark\n\n26) zoltar: Discover G2 Bluecheese B1 Blueberry\n\n27) Aristos: Build R2 Spark\n\n28) zoltar: Build R2 Zoltar\n\n29) Aristos: Build Y1 Aristos\n\n30) zoltar: Build G1 Zoltar\n\n31) Aristos: Discover G3 Spark B3 Blaze\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Zoltar\n\n33) Aristos: Move R1 Spark Blaze\n\n34) zoltar: Move R2 Zoltar Bluecheese\n\n35) Aristos: Sacrifice G3 Blaze\nBuild R2 Aristos\nBuild R3 Blaze\nBuild R3 Spark\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Bluecheese\nBuild R3 Bluecheese\n\n37) Aristos: Discover R3 Spark Y2 Shine\n\n38) zoltar: Move R3 Bluecheese Blueberry\n\tzoltar: I think I finally have compensation for the extra large ship, though I&#39;ve been wondering just how many extra smaller ships do I need to make up for a large one. \n\n39) Aristos: Move R2 Spark Shine\n\tAristos: &gt; just how many extra smaller ships do I need \r\n&gt; to make up for a large one\r\n\r\nTypically, a lot, though I&#39;ve never been sure why. I just know that when I&#39;ve gotten behind with other players, it goes badly, but that could just be a reflection of me playing badly in the first place and then continuing to do so. Correlation does not equal causation. :-)\n\n40) zoltar: Trade G3 Y3 Bluecheese\n\n41) Aristos: Trade R3 G3 Blaze\n\n42) zoltar: Build R3 Blueberry\n\tzoltar: The best player I know, Andy Looney, said that your side of the game he&#39;d rather play (I showed him the position back when it was your G3 vs my 3 mediums and a small), because the game is about the big ships. One big ship can bully all the rest. Now you let me catch up by letting me get all the greens, so you couldn&#39;t move your g3 around without my blowing it up, and when you sacked it, you let me get two big ships as well the next move, so I&#39;ve equalized now, but if you&#39;d got more greens, I think you could have kept the advantage and pressed it.\n\tAristos: I realize that now... I thought that by popping it to pick up more of the red that I&#39;d be able to threaten you the way you were threatening me. \n\tAristos: I&#39;ve definitely lost that momentum now.\n\n43) Aristos: Discover Y1 Aristos B1 Flicker\n\n44) zoltar: Trade R3 Y3 Blueberry\n\n45) Aristos: Build R3 Blaze\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Blueberry\nBuild Y1 Blueberry\n\n47) Aristos: Move Y1 Flicker Blaze\n\n48) zoltar: Move Y3 Blueberry Aristos\n\n\tAristos: Well done. I see the end. \n\tzoltar: Thanks. Interesting that neither one of us ever got a blue piece. I hought about it, but never had the time. At the beginning I had no time to waste stopping you from getting all the yellows, and even so I let you get the extra large piece, and after that it always seemed better to grow new pieces on blue stars rather than get any blue pieces. In fact all the starts I created were blue. And at the end I realized if I could just trade and get yellows I would have a winning attack, so again I didn&#39;t need blue, and didn&#39;t care if you get the r3 and g3 I was trading in for the Y3s.\n\nHomeworlds Online (SDG# 25128)\nStarted: 2014.1.12, Ended: 2014.2.24\nParticipants: OnePageWars (S), sleepinggreenideas (N)\nWinner: sleepinggreenideas\n\n1) sleepinggreenideas: Homeworld Y3 B1 G3\n\n2) OnePageWars: Homeworld R1 B2 G3\n\n3) sleepinggreenideas: Build G1 Sleepinggreenideas\n\tOnePageWars: gl hf!\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas\n\n6) OnePageWars: Build G1 Onepagewars\n\n7) sleepinggreenideas: Discover R1 Sleepinggreenideas B2 Hello\n\n8) OnePageWars: Trade G1 Y1 Onepagewars\n\n9) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n10) OnePageWars: Build Y1 Onepagewars\n\n11) sleepinggreenideas: Move G1 Sleepinggreenideas Hello\n\n12) OnePageWars: Discover Y1 Onepagewars G3 Anivia\n\n13) sleepinggreenideas: Trade G1 Y1 Hello\n\n14) OnePageWars: Build Y2 Onepagewars\n\n15) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n16) OnePageWars: Trade G1 B1 Onepagewars\n\n17) sleepinggreenideas: Move R1 Hello Anivia\n\n18) OnePageWars: Trade Y2 R2 Onepagewars\n\n19) sleepinggreenideas: Build R1 Anivia\n\n20) OnePageWars: Move R2 Onepagewars Anivia\n\n21) sleepinggreenideas: Build R2 Anivia\n\n22) OnePageWars: Build Y2 Anivia\nCatastrophe Anivia R\n\n23) sleepinggreenideas: Sacrifice G1 Sleepinggreenideas\nBuild Y2 Hello\n\n24) OnePageWars: Build G1 Onepagewars\n\n25) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n26) OnePageWars: Trade G1 R1 Onepagewars\n\n27) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas\n\n28) OnePageWars: Build R2 Onepagewars\n\n29) sleepinggreenideas: Build R2 Sleepinggreenideas\n\n30) OnePageWars: Move R2 Onepagewars Anivia\n\n31) sleepinggreenideas: Trade Y1 G1 Hello\n\n32) OnePageWars: Build R2 Anivia\n\n33) sleepinggreenideas: Build G1 Hello\n\n34) OnePageWars: Build R3 Onepagewars\n\tsleepinggreenideas: Try get red ships into pnrpagewars by discovering new universe\n\tsleepinggreenideas: With gorillas.\n\n35) sleepinggreenideas: Move R2 Sleepinggreenideas Hello\n\n36) OnePageWars: Sacrifice Y2 Anivia\nMove R3 Onepagewars Anivia\nMove R3 Anivia Hello\n\n37) sleepinggreenideas: Build R3 Hello\n\n38) OnePageWars: Attack R3 Hello\n\n39) sleepinggreenideas: Build R3 Hello\nCatastrophe Hello Red\n\n40) OnePageWars: Move R2 Anivia Hello\n\n41) sleepinggreenideas: Sacrifice R1 Sleepinggreenideas\nAttack R2S Hello\n\n\nHomeworlds Online (SDG# 24999)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.13, Ended: 2014.2.9\nParticipants: SilentTitan (S), sleepinggreenideas (N)\nWinner: SilentTitan\n\n1) sleepinggreenideas: Homeworld G1 Y3 B3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) sleepinggreenideas: Build B1 Sleepinggreenideas\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sleepinggreenideas: Build B1 Sleepinggreenideas\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sleepinggreenideas: Discover B1 Sleepinggreenideas G2 Alpha\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) sleepinggreenideas: Trade B1 G1 Sleepinggreenideas\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) sleepinggreenideas: Build B1 Sleepinggreenideas\n\n12) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n13) sleepinggreenideas: Build B1 Alpha\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) sleepinggreenideas: Build B2 Alpha\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n17) sleepinggreenideas: Trade B1 R1 Alpha\n\n18) SilentTitan: Discover Y2 Sol G2 Soul\n\n19) sleepinggreenideas: Trade B3 R3 Sleepinggreenideas\n\n20) SilentTitan: Discover Y1 Silenttitan G3 Sole\n\n21) sleepinggreenideas: Build B1 Alpha\n\n22) SilentTitan: Build Y3 Silenttitan\n\n23) sleepinggreenideas: Build B2 Sleepinggreenideas\n\n24) SilentTitan: Build Y3 Sole\n\n25) sleepinggreenideas: Build B3 Sleepinggreenideas\n\n26) SilentTitan: Discover Y1 Sole G2 Tic\n\n27) sleepinggreenideas: Trade B2 R2 Alpha\n\n28) SilentTitan: Build G3 Silenttitan\n\n29) sleepinggreenideas: Trade B3 G3 Sleepinggreenideas\n\n30) SilentTitan: Sacrifice Y3 Sole\nMove G1 Silenttitan Sol\nMove G1 Sol Tic\nMove G1 Tic Sleepinggreenideas\nCatastrophe Sleepinggreenideas Green\n\n\tsleepinggreenideas: Thanks for the game.\n\tSilentTitan: Yeah. Thank you.\n\nHomeworlds Online (SDG# 25142)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.14, Ended: 2014.1.29\nParticipants: fogus (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) fogus: Homeworld R1 B2 G3\n\tSilentTitan: Welcome and good luck\n\tfogus: I&#39;ve only a few games under my belt, but I will try my best to provide a challenge.\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) fogus: Build G1 Fogus\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) fogus: Build G1 Fogus\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\tfogus: I&#39;m not really trying to mirror you... it just seems that way. ;-)\n\n10) fogus: Trade G1 B1 Fogus\n\tSilentTitan: The first three to five moves of most games are mirrored.\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) fogus: Build Y1 Fogus\n\tfogus: I&#39;m already feeling the resource squeeze.  :-O\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) fogus: Trade Y1 B1 Fogus\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) fogus: Build G1 Fogus\n\n17) SilentTitan: Discover R1 Silenttitan G3 Sol\n\n18) fogus: Discover B1 Fogus Y3 Bacon\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R2 Sol\nBuild R3 Silenttitan\n\n20) fogus: Build B1 Fogus\n\tfogus: Uh oh.\n\tfogus: I&#39;m still learning, but that looks bad to me.  :p\n\tSilentTitan: Yeah.... Not so good.\n\n21) SilentTitan: Move R3 Silenttitan Bacon\n\n22) fogus: Move B1 Fogus Bacon\n\n23) SilentTitan: Sacrifice G1 Silenttitan\nBuild R3 Bacon\n\tSilentTitan: Ok.... You need to take your turn back and make another choice,  otherwise I will just call for a catastrophe in your homeworld on blue.\n\tfogus: Oh.. Stars count for catastrophes also?! I didn&#39;t know that.\n\n24) fogus: Trade B1 Y1 Bacon\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Bacon Fogus\nMove R3 Bacon Fogus\n\n26) fogus: Build Y2 Fogus\n\n27) SilentTitan: Sacrifice R3 Fogus\nAttack G3 Fogus South\nAttack Y2 Fogus South\nAttack Y1 Fogus South\n\n\tfogus: I believe that about does it for me.  Wow.  That was a lesson in resource strangulation.  Thank you for the game.\n\tSilentTitan: Thank you for playing.\n\nHomeworlds Online (SDG# 25162)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.16, Ended: 2014.4.14\nParticipants: ajo (S), MagicJohn (N)\nWinner: ajo\n\n1) MagicJohn: Homeworld B3 R2 G3\n\n2) ajo: Homeworld R1 B2 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) ajo: Build G1 Ajo\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) ajo: Build G1 Ajo\n\n9) MagicJohn: Discover G1 Magicjohn R1 Prancer\n\n10) ajo: Discover G1 Ajo B3 Alpha\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) ajo: Build G2 Ajo\n\n13) MagicJohn: Trade G1 R1 Magicjohn\n\n14) ajo: Trade G2 R2 Ajo\n\n15) MagicJohn: Discover R1 Magicjohn B1 Comet\n\n16) ajo: Build G1 Ajo\n\n17) MagicJohn: Build G2 Magicjohn\n\n18) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n19) MagicJohn: Build G3 Magicjohn\n\tajo: Agh. I tried to build &quot;g3 g2 g2&quot; and then forgot to switch the system names around when I had to switch it to &quot;g2 g2 g3&quot;.\n\n20) ajo: Trade G2 Y2 Alpha\n\tMagicJohn: I don&#39;t mind redos, no need explain. I make enough mistakes tyypiing that other folks mistakes pale in comparison. I still feel like a newbie at the game and appreciate any critiques/discussions that others might offer as post scrips.\n\n21) MagicJohn: Trade G2 Y2 Magicjohn\n\n22) ajo: Move G2 Alpha Prancer\n\n23) MagicJohn: Move Y2 Magicjohn Comet\n\n24) ajo: Attack G1 Prancer\n\n25) MagicJohn: Move G3 Magicjohn Comet\n\n26) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Prancer\nBuild G3 Ajo\n\n27) MagicJohn: Sacrifice G3 Comet\nBuild R2 Comet\nBuild R3 Comet\nBuild G3 Magicjohn\n\n28) ajo: Sacrifice Y2 Alpha\nMove G1 Prancer Magicjohn\nMove G2 Prancer Magicjohn\nCatastrophe Magicjohn Green\n\n29) MagicJohn: Move R3 Comet Magicjohn\n\n30) ajo: Sacrifice G3 Ajo\nBuild G1 Prancer\nBuild G2 Alpha\nBuild G3 Ajo\n\n31) MagicJohn: Trade R3 G3 Magicjohn\n\n32) ajo: Trade G2 Y2 Alpha\n\n33) MagicJohn: Trade R2 G2 Comet\n\n34) ajo: Trade G1 B1 Alpha\n\n35) MagicJohn: Build R2 Comet\n\n36) ajo: Sacrifice G3 Ajo\nBuild G1 Prancer\nBuild G3 Ajo\nBuild G3 Alpha\n\n37) MagicJohn: Trade R2 B2 Comet\n\n38) ajo: Sacrifice Y2 Alpha\nMove G1 Prancer Magicjohn\nMove G1 Prancer Magicjohn\n\n39) MagicJohn: Trade G3 R3 Magicjohn\n\n40) ajo: Trade G2 Y2 Alpha\n\tajo: I think that was a fatal slip&#133;\n\n41) MagicJohn: Build R2 Comet\n\n42) ajo: Sacrifice G3 Ajo\nBuild G2 Magicjohn\nBuild G3 Ajo\nBuild G3 Alpha\n\n43) MagicJohn: Move G2 Comet Magicjohn\nCatastrophe Magicjohn Green\n\n44) ajo: Move G3 Alpha Comet\n\tajo: Wait a minute, I should make you spend that r2 first...\n\n45) MagicJohn: Move B2 Comet Magicjohn\n\n46) ajo: Sacrifice R2 Ajo\nAttack R2 Comet\nAttack Y2 Comet\n\n47) MagicJohn: Trade B2 G2 Magicjohn\n\n48) ajo: Attack R1 Comet\n\n49) MagicJohn: Trade R3 Y3 Magicjohn\n\tajo: If I were you, I would have sacrificed the y2 to get all those ships out of Comet, rather than letting them fall into my hands.\n\n50) ajo: Sacrifice G2 Prancer\nBuild Y1 Comet\nBuild Y2 Alpha\n\tMagicJohn: Figured you needed something on which to take out your aggressive tendencies.\n\tMagicJohn: I did consider the sacrifice but, perhaps incorrectly, I thought that the sacrifice made placement really problematic. My Home World would be more open to catastrophe. Establishing new worlds made your sacrificing a green a more potent threat and spread my forces (small though they may be) to an even more vulnerable state. Your lead is pronounced that it&#39;s getting hard to find moves that do more good than harm.    \n\tMagicJohn: OOPS... make that &quot;so pronounced&quot;.....\n\tajo: Yes, you&#39;re definitely in a bad spot; but you let me sac an r2 to capture an r2 PLUS something else (i.e., strictly improve my position), plus you lost both of the ships that I captured. Sacrificing those ships would definitely have been preferable to letting me capture them.\n\n51) MagicJohn: Discover Y1 Magicjohn G1 Donder\n\n52) ajo: Move Y2 Alpha Donder\n\n53) MagicJohn: Build Y3 Donder\n\n54) ajo: Build Y3 Donder\nCatastrophe Donder Yellow\n\n55) MagicJohn: Build G1 Magicjohn\n\n56) ajo: Build G1 Alpha\n\n57) MagicJohn: Discover G1 Magicjohn Y1 Prancer\n\n58) ajo: Move G3 Alpha Prancer\n\n59) MagicJohn: Build G2 Prancer\n\n60) ajo: Sacrifice Y2 Alpha\nMove Y1 Comet Magicjohn\nMove Y2 Comet Magicjohn\n\n61) MagicJohn: Trade Y3 B3 Magicjohn\n\n62) ajo: Trade Y1 B1 Magicjohn\n\n63) MagicJohn: Attack Y2 Magicjohn\n\n64) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild B2 Magicjohn\nCatastrophe Magicjohn Blue\n\n65) MagicJohn: Move G2 Magicjohn Prancer\nCatastrophe Prancer Green\n\n66) ajo: Sacrifice Y1 Ajo\nMove G3 Comet Magicjohn\n\n67) MagicJohn: Pass\n\n68) ajo: Attack Y2 Magicjohn\n\tMagicJohn: Alone in a still-savage universe.......\n\n\tajo: Good game. :)\n\tMagicJohn: I tried to sail off into the sunset, or, in this case, &quot;Elysian Fields&quot; but the game seems to endorse the social imperative against suicide.....   \n\tMagicJohn: I think my game is lacking an opening strategy. I may need to base my opening moves more on a long-range goal rather than trying for small, short-term tactical advantages.\r\nSuggestions? \n\tMagicJohn: Oh..... Thanks for the game...\n\tajo: Well, I&#39;d say you should start with things like my &quot;If I were you&quot; comment a while back. Sure, by then you were already basically losing, but you should have recognized that that move was bad anyway. You gotta train your &quot;muscle memory&quot; to handle the obvious good/bad moves before you can worry about the subtler things.\n\tajo: One more obvious bad move: your fifth move was to discover a red star. Red stars suck. The best stars are blue (with green a distant second, and yellow and red reserved for subtle stash-management and/or endgame positions).\n\nHomeworlds Online (SDG# 25155)\nVariants: &quot;Sinister, Hard time&quot;\nStarted: 2014.1.20, Ended: 2014.2.3\nParticipants: wil (S), TeeTeeTee (W), raster51 (N), sleepinggreenideas (E)\nWinner: TeeTeeTee\n\n1) sleepinggreenideas: Homeworld B1 Y2 G3\n\twil: Well now...let&#39;s see how this goes...I&#39;ve yet to see a multiple homeworlds come to a conclusion, one or more typically drop out/time out.  went 60 moves with one, and then it died.  Am down to one on one game...that may be the first that completes.  \n\twil: Now if anyone wishes to play a binary game...my challenge is open, I like to keep a few games going to improve my skills.\n\tTeeTeeTee: I&#39;m hoping that the (fairly fierce) +6h turn increment will keep the game moving, as the last game I played went at a snail&#39;s pace... but I think that 6 hours per turn may be a little too low; this game&#39;s outcome may well be decided by what time zones we&#39;re in. If this one falls through, I&#39;ll start a new 4-player challenge with a +12h turn increment.\n\twil: I didn&#39;t notice that...I&#39;ll probably be first to fail...\n\n2) wil: Homeworld B3 R2 G3\n\twil: one down  before the kickoff...\n\n3) TeeTeeTee: Homeworld Y1 B2 G3\n\n4) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n5) wil: Build G1 Wil\n\n6) TeeTeeTee: Build G1 Teeteetee\n\tTeeTeeTee: That&#39;s a hell of a lot of pieces in the stash.\n\twil: I go to sleep and wake up finding I am now late...\r\n\r\nYup, huge stash for two people (the two that stick it out)\n\twil: It is one more of each size than their are players...2 get three of each, 4 get five of each...  \r\n\r\nAnd you just created a short universe with sleepin..odds are I&#39;ll be standing back watching the fray whilst I amass and army to take on the victor.\n\n7) sleepinggreenideas: Trade G1 Y1 Sleepinggreenideas\n\twil: b g1 wil\n\n8) wil: Trade G1 Y1 Wil\n\n9) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n10) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n11) wil: Build G1 Wil\n\n12) TeeTeeTee: Build G1 Teeteetee\n\n13) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas\n\n14) wil: Discover G1 Wil B1 B1\n\n15) TeeTeeTee: Trade G1 R1 Teeteetee\n\n16) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n17) wil: Build G1 B1\n\n18) TeeTeeTee: Build R1 Teeteetee\n\n19) wil: Trade G1 R1 B1\n\n20) TeeTeeTee: Build G1 Teeteetee\n\n21) wil: Sacrifice Y1 Wil\nDiscover R1 B1 Y3 Y3\n\n22) TeeTeeTee: Build Y1 Teeteetee\n\twil: and then there were two\n\n23) wil: Move R1 Y3 Sleepinggreenideas\n\tTeeTeeTee: Ho-hum. Six hours is too small an increment..\n\twil: I don&#39;t think it is that...I think nobody commits fully to these multiplayer games.  Binary Homeworlds is great, and three way isn&#39;t bad in realtime real life....but both you can walk away and do other things while folks move...but I&#39;ve yet to hear anyone say they were in one of these that made it to the end with all players staying on till they got beat...they just leave the game when they think they don&#39;t have a chance.\n\n24) TeeTeeTee: Discover Y1 Teeteetee G3 Bow\n\n25) wil: Attack G1E Sleepinggreenideas\n\n26) TeeTeeTee: Move R1 Teeteetee Bow\n\n27) wil: Attack R1E Sleepinggreenideas\n\n28) TeeTeeTee: Build R1 Teeteetee\n\n29) wil: Trade R1 B1 Sleepinggreenideas\n\n30) TeeTeeTee: Build Y1 Teeteetee\n\n31) wil: Attack Y1E Sleepinggreenideas\n\n32) TeeTeeTee: Discover Y1 Teeteetee G3 Whitechapel\n\n33) wil: Build Y2 Sleepinggreenideas\n\tsleepinggreenideas: Sorry to die like that. At least I learner something. Namely, that six hours is too short a setting...\n\twil: no worries...it happens....\n\n34) TeeTeeTee: Move Y1 Bow Sleepinggreenideas\nCatastrophe Sleepinggreenideas Yellow\n\n35) wil: Build G1 Sleepinggreenideas\n\n36) TeeTeeTee: Trade G1 B1 Teeteetee\n\n37) wil: Build G1 B1\n\n38) TeeTeeTee: Move B1 Teeteetee Whitechapel\n\n39) wil: Trade G1 Y1 B1\n\n40) TeeTeeTee: Build G1 Teeteetee\n\n41) wil: Build G1 Wil\n\n42) TeeTeeTee: Build G2 Teeteetee\n\n43) wil: Build G2 B1\n\n44) TeeTeeTee: Move G2 Teeteetee Whitechapel\n\n45) wil: Trade G2 R2 B1\n\n46) TeeTeeTee: Build G2 Teeteetee\n\n47) wil: Build G2 B1\n\n48) TeeTeeTee: Discover G1 Teeteetee Y3 Moorgate\n\n49) wil: Trade G2 R2 B1\n\n50) TeeTeeTee: Move G1 Moorgate Sleepinggreenideas\nCatastrophe Sleepinggreenideas Green\n\n51) wil: Move R2 B1 Bow\n\n52) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild R1 Bow\nBuild R2 Bow\nCatastrophe Bow Red\n\n53) wil: Build G1 B1\n\n54) TeeTeeTee: Discover G2 Whitechapel Y1 Shoreditch\n\n55) wil: Build Y2 B1\n\n56) TeeTeeTee: Build Y2 Whitechapel\n\n57) wil: Discover Y2 B1 G3 G3\n\n58) TeeTeeTee: Discover Y1 Teeteetee G3 Stratford\n\n59) wil: Build Y2 B1\n\n60) TeeTeeTee: Build Y2 Stratford\n\n61) wil: Trade Y1 R1 B1\n\n62) TeeTeeTee: Build B1 Whitechapel\n\n63) wil: Trade G1 Y1 Wil\n\n64) TeeTeeTee: Move Y2 Stratford Sleepinggreenideas\n\n65) wil: Move R2 B1 Stratford\n\n66) TeeTeeTee: Discover Y1 Stratford G1 Limehouse\n\n67) wil: Build G1 Wil\n\n68) TeeTeeTee: Build G1 Shoreditch\n\n69) wil: Discover G1 Wil R1 R1\n\n70) TeeTeeTee: Move Y2 Whitechapel R1\n\n71) wil: Discover G1 B1 B3 B3\n\n72) TeeTeeTee: Sacrifice G2 Shoreditch\nBuild Y2 Whitechapel\nBuild Y3 Limehouse\n\n73) wil: Build Y3 B1\n\n74) TeeTeeTee: Sacrifice Y2 Sleepinggreenideas\nMove Y1 Whitechapel B1\nMove Y2 Whitechapel B1\nCatastrophe B1 Yellow\n\n75) wil: Build G2 B1\n\n76) TeeTeeTee: Build G2 Shoreditch\n\n77) wil: Build G2 B3\n\n78) TeeTeeTee: Attack G1S R1\n\n79) wil: Sacrifice Y2 G3\nMove G1 B3 Teeteetee\nMove R2 Stratford Teeteetee\n\n80) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack R2S Teeteetee\n\n81) wil: Sacrifice G2 B1\nBuild G2 Teeteetee\nBuild G2 Teeteetee\nCatastrophe Teeteetee G\n\n82) TeeTeeTee: Move Y3 Limehouse B3\n\n83) wil: Sacrifice G2 B3\nBuild B2 Sleepinggreenideas\nBuild G1 B1\n\n84) TeeTeeTee: Sacrifice Y1 Limehouse\nMove B1 Whitechapel Sleepinggreenideas\nCatastrophe Sleepinggreenideas Blue\n\n\tTeeTeeTee: A wise undo: I&#39;d already typed in my move.\n\tTeeTeeTee: ... what?!\r\nI thought that, after sleepinggreenideas lost, I had to destroy you...\r\nGod, that could&#39;ve ended days ago.\n\tTeeTeeTee: Thanks for the game, though - it&#39;s nice to play a quick-paced match for a change!\n\twil: Interesting...let&#39;s play binary sometime...too many ships here...\n\nHomeworlds Online (SDG# 25103)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.21, Ended: 2014.1.28\nParticipants: wil (S), Laurie_Menke (N)\nWinner: wil\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi, Wil!  Have fun!  :o)\n\n2) wil: Homeworld B2 R1 G3\n\twil:  a game is afoot.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) wil: Build G1 Wil\n\n\twil: Which way did she go?\r\n\r\nWho&#39;s wine, what wine, where the hell did I dine?\n\tLaurie_Menke: Argh!  I&#39;m sorry, Wil.  :o(  I&#39;m an idiot.  I&#39;m just having a hard time keeping track of everything right now.  I need about 10 more hours in every day.  ;o)  Can we try again?  I promise to play frequently!\n\nHomeworlds Online (SDG# 25064)\nStarted: 2014.1.21, Ended: 2014.3.11\nParticipants: ts52 (S), CDMoose (N)\nWinner: ts52\n\n1) CDMoose: Homeworld Y3 R1 G3 *\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) CDMoose: Build G1 Cdmoose\n\n4) ts52: Build G1 Ts52\n\n5) CDMoose: Discover G1 Cdmoose B2 Aqua\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) CDMoose: Pass\n\n8) ts52: Build G1 Ts52\n\n9) CDMoose: Build G2 Aqua\n\n10) ts52: Build G2 Grover\n\n11) CDMoose: Trade G2 R2 Aqua\n\n12) ts52: Trade G1 R1 Grover\n\n13) CDMoose: Build G1 Aqua\n\n14) ts52: Build G2 Grover\n\n15) CDMoose: Trade G1 Y1 Aqua\n\n16) ts52: Trade G2 Y2 Grover\n\n17) CDMoose: Trade G1 B1 Aqua\n\n18) ts52: B G1 Grover\n\n\nHomeworlds Online (SDG# 25207)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.21, Ended: 2014.1.25\nParticipants: wil (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) wil: Homeworld R2 B1 G3\n\twil: I&#39;ve been months learning this game and climbing this ladder to get the chance to get my clock cleaned by the guy at the top...  (and that learning part is debatable)\n\n3) TwoShort: Build G1 Twoshort\n\n4) wil: Build G1 Wil\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\twil: I always think the pawn of your queen color should be part of the homeworld setup...   I guess it is a safety valve should you have started a particularly embarassing opening and had to change you queen color first thing??\n\n6) wil: Trade G1 Y1 Wil\n\tTwoShort: Yeah, the first turn is pretty predictable.\n\n7) TwoShort: Build G1 Twoshort\n\n8) wil: Build G1 Wil\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) wil: Trade G1 B1 Wil\n\n11) TwoShort: Build G1 Twoshort\n\n12) wil: Build B1 Wil\n\n13) TwoShort: Build G1 Yolonda\n\n14) wil: Discover B1 Wil G3 G3\n\n15) TwoShort: Discover G1 Yolonda Y3 Yoyodyne\n\n16) wil: Build B2 G3\n\n17) TwoShort: Build G2 Yoyodyne\n\n18) wil: Build G2 Wil\n\n19) TwoShort: Move G1 Yoyodyne Wil\n\n20) wil: Trade G2 R2 Wil\n\twil: OMG watha a plan\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Wil\nBuild G2 Wil\nBuild G3 Yoyodyne\nCatastrophe Wil Green\n\n22) wil: Trade B1 Y1 G3\n\twil: wow...did that backwards...\n\n23) TwoShort: Move G3 Yoyodyne Wil\n\tTwoShort: you needed to trade 3 pointer to avoid doom.  But then I&#39;d have grown it so it would have been ugly in any case :)\n\n24) wil: Trade B1 G1 Wil\n\twil: I expected to be slaughtered...glad I wasn&#39;t disappointed.\n\n25) TwoShort: Attack R2 Wil\n\n\twil: Yup, I&#39;m a just way outta your league...although I&#39;d like to play another...please challenge me whenever you wish to experiment...\n\nHomeworlds Online (SDG# 25087)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.22, Ended: 2014.1.26\nParticipants: Marmalade (S), ausmuh (N)\nWinner: ausmuh\n\n1) ausmuh: Homeworld B3 Y1 G3\n\n2) Marmalade: Homeworld G2 Y1 B3\n\n3) ausmuh: Build G1 Ausmuh\n\n4) Marmalade: Build B1 Marmalade\n\n5) ausmuh: Trade G1 Y1 Ausmuh\n\n6) Marmalade: Build B1 Marmalade\n\n7) ausmuh: Build Y2 Ausmuh\n\n8) Marmalade: Discover B1 Marmalade G3 Groob\n\n9) ausmuh: Discover Y2 Ausmuh G2 Gwar\n\n10) Marmalade: Build B1 Marmalade\n\n11) ausmuh: Build Y2 Gwar\n\n12) Marmalade: Build B2 Groob\n\n13) ausmuh: Discover Y2 Gwar B3 Bflat\n\n14) Marmalade: Trade B2 Y2 Groob\n\n15) ausmuh: Sacrifice G3 Ausmuh\nBuild Y3 Ausmuh\nBuild Y3 Gwar\nBuild Y3 Bflat\n\n16) Marmalade: Build B2 Groob\n\n17) ausmuh: Discover Y3 Gwar G3 Grass\n\n18) Marmalade: Build B2 Groob\n\n19) ausmuh: Trade Y3 R3 Ausmuh\n\n20) Marmalade: Trade B2 R2 Groob\n\n21) ausmuh: Build Y3 Grass\n\n22) Marmalade: Move R2 Groob Gwar\n\n23) ausmuh: Move Y2 Gwar Bflat\n\n24) Marmalade: Build R1 Gwar\n\n25) ausmuh: Trade Y2 G2 Bflat\n\n26) Marmalade: Trade B3 G3 Marmalade\n\n27) ausmuh: Build G1 Bflat\n\n28) Marmalade: Build Y2 Groob\n\n29) ausmuh: Sacrifice Y3 Grass\nMove G2 Bflat Marmalade\nMove G1 Bflat Marmalade\nMove Y3 Grass Marmalade\nCatastrophe Marmalade Green\n\n\nHomeworlds Online (SDG# 25204)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.24, Ended: 2014.2.3\nParticipants: radynski (S), wil (N)\nWinner: radynski\n\n1) wil: Homeworld R2 B1 G3\n\twil: thank you for the game\n\n2) radynski: Homeworld B1 G3 Y3\n\n3) wil: Build G1 Wil\n\n4) radynski: Build Y1 Radynski\n\n5) wil: Trade G1 B1 Wil\n\n6) radynski: Discover Y1 Radynski G2 George\n\n7) wil: Build B2 Wil\n\n8) radynski: Build Y1 George\n\n9) wil: Trade B2 Y2 Wil\n\n10) radynski: Discover Y1 George B3 Nexus\n\n11) wil: Build B2 Wil\n\n12) radynski: Build Y1 George\n\n13) wil: Trade B2 R2 Wil\n\n14) radynski: Build Y2 Radynski\n\n15) wil: Build B2 Wil\n\n16) radynski: Trade Y2 B2 Radynski\n\n17) wil: Discover B2 Wil G3 G3\n\n18) radynski: Build Y2 Radynski\n\n19) wil: Build Y2 Wil\n\n20) radynski: Build Y3 Radynski\n\n21) wil: Move Y2 Wil G3\n\n22) radynski: Trade Y2 R2 Radynski\n\n23) wil: Build G1 Wil\n\n24) radynski: Build R1 Radynski\n\n25) wil: Move B2 G3 George\n\n26) radynski: Sacrifice Y1 George\nMove Y3 Radynski George\n\n27) wil: Build B2 Wil\n\n28) radynski: Sacrifice R1 Radynski\nAttack B2 George\n\n29) wil: Move B2 Wil G3\n\n30) radynski: Move Y3 George G3\n\n31) wil: Build Y1 G3\n\n32) radynski: Sacrifice R2 Radynski\nAttack B2 G3\nAttack Y2 G3\n\n33) wil: Build Y2 G3\nCatastrophe G3 Y\n\n34) radynski: Build B3 Radynski\n\n35) wil: Move B1 Wil G3\n\n36) radynski: Trade B2 R2 Radynski\n\n37) wil: Build Y1 Wil\n\n38) radynski: Build Y2 George\n\n39) wil: Discover Y2 Wil B3 B3\n\n40) radynski: Trade Y1 R1 George\n\n41) wil: Build Y1 Wil\n\n42) radynski: Trade Y1 R1 Nexus\n\n43) wil: Build B2 G3\n\n44) radynski: Sacrifice R2 Radynski\nAttack B2 G3\nAttack B1 G3\n\n45) wil: Move R2 Wil Nexus\n\n46) radynski: Sacrifice Y3 Radynski\nMove B2 G3 Wil\nMove B2 G3 Wil\nMove B1 G3 Wil\nCatastrophe Wil Blue\n\n47) wil: Attack R1 Nexus\n\n48) radynski: Build B1 Radynski\n\n49) wil: Sacrifice Y2 B3\nMove G1 Wil Radynski\nMove Y1 Wil Radynski\n\n50) radynski: Trade B3 R3 Radynski\n\n51) wil: Trade Y1 R1 Radynski\n\n52) radynski: Attack R1 Radynski\n\n53) wil: Build Y1 Wil\n\n54) radynski: Attack G1 Radynski\n\n55) wil: Move Y1 Wil Nexus\n\n56) radynski: Trade R3 Y3 Radynski\n\n57) wil: Discover R2 Nexus G2 G2\n\n58) radynski: Discover R1 George G3 Studio\n\n59) wil: Trade R1 G1 Nexus\n\twil: Well I miscounted by one....and now I am dangling from the cliff...\n\n60) radynski: Build R1 Studio\n\n61) wil: Build G1 Wil\n\tradynski: Yeah, I assumed something happened there.\n\n62) radynski: Sacrifice Y3 Radynski\nMove R1 Studio Wil\nMove R1 Studio Wil\nMove R1 Radynski Wil\nCatastrophe Wil Red\n\n\tradynski: Good game, I enjoyed this.\n\twil: Thanx for the game, challenge me anytime.  I enjoy playing...even if I&#39;m notso good.\n\nHomeworlds Online (SDG# 25236)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.26, Ended: 2014.1.29\nParticipants: ausmuh (S), wil (N)\nWinner: ausmuh\n\n1) wil: Homeworld R2 B1 G3\n\n2) ausmuh: Homeworld B3 Y1 G3\n\twil: Welcome and thanx for the game!\n\n3) wil: Build G1 Wil\n\tausmuh: Thank you. ^_^\n\n4) ausmuh: Build G1 Ausmuh\n\n5) wil: Trade G1 Y1 Wil\n\n6) ausmuh: Trade G1 Y1 Ausmuh\n\n7) wil: Build Y2 Wil\n\tausmuh: Huh. Didn&#39;t think about that earlier...\n\n8) ausmuh: Build Y2 Ausmuh\n\n9) wil: Discover Y2 Wil G3 G3\n\n10) ausmuh: Build G1 Ausmuh\n\n11) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 Wil\nBuild Y3 Wil\n\n12) ausmuh: Discover Y1 Ausmuh G2 Gwar\n\n13) wil: Move Y2 G3 Gwar\n\n14) ausmuh: Sacrifice Y2 Ausmuh\nMove Y1 Gwar G3\nMove Y1 G3 Wil\nCatastrophe Wil Yellow\n\twil: I was evidently blinded...thank you for the slaughter!\n\n\nHomeworlds Online (SDG# 25254)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.27, Ended: 2014.2.21\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B1 G2 B3 *\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) wil: Build G1 Wil\n\n6) SilentTitan: Trade B3 R3 Silenttitan\n\n7) wil: Trade G1 Y1 Wil\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Build Y1 Wil\n\n10) SilentTitan: Trade B2 Y2 Silenttitan\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) wil: Build Y1 G3\n\n14) SilentTitan: Move R3 Silenttitan G3\n\n15) wil: Build Y2 Wil\n\n16) SilentTitan: Attack Y1 G3 North\n\n17) wil: Discover Y1 G3 G2 G2\n\n18) SilentTitan: Move B2 Silenttitan G3\n\n19) wil: Trade Y2 B2 Wil\n\n20) SilentTitan: Build B2 Silenttitan\n\n21) wil: Discover B2 Wil Y3 Y3\n\n22) SilentTitan: Trade B2 R2 Silenttitan\n\n23) wil: Sacrifice G1 Wil\nBuild B2 Y3\n\n24) SilentTitan: Build B3 G3\n\n25) wil: Move B2 Y3 Silenttitan\n\n26) SilentTitan: Trade B1 R1 Silenttitan\n\n\nHomeworlds Online (SDG# 24939)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.1.29, Ended: 2014.2.13\nParticipants: wil (S), pgadey (N), sleepinggreenideas (E)\nWinner: wil\n\n1) pgadey: Homeworld G1 B3 Y3\n\n2) sleepinggreenideas: Homeworld G1 B2 Y3\n\n3) wil: Homeworld B3 Y2 G3\n\n4) pgadey: Build Y1 Pgadey\n\twil: Let&#39;s do this!\r\n\r\n\n\n5) wil: Build G1 Wil\n\n6) pgadey: Trade Y1 G1 Pgadey\n\twil: a return to normalcy already\n\n7) wil: Build G2 Wil\n\n\nHomeworlds Online (SDG# 25260)\nVariants: &quot;Hard time&quot;\nStarted: 2014.1.30, Ended: 2014.2.27\nParticipants: wil (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Let&#39;s try this again...  :o/\n\n2) wil: Homeworld G2 B1 B3 *\n\twil: okee dokee\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Hmmm...interesting starting move!\n\n4) wil: Build B1 Wil\n\n5) Laurie_Menke: Discover G1 Laurie_menke B2 Gotone\n\twil: It is my, if you are gonna start with a blue pawn in your homeworld I&#39;m gonna try to corner the blues move...\n\twil: I shouldn&#39;ta given that away...\n\tLaurie_Menke: LOL!  Good to know!  ;o)\n\n6) wil: Trade B3 Y3 Wil\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) wil: Build B2 Wil\n\n9) Laurie_Menke: Build G1 Gotone\n\tLaurie_Menke: I didn&#39;t see you Thursday.  Were you there?  I had to work until 10:30, so maybe you left before that.  Anyway, I talked with Andy about the machine repairs and have a general sense of what needs to happen, but I&#39;d still like to coordinate with you sometime....both about that and about the basement.  Will you be around this weekend?\n\twil: I was asleep...headed to game day now..\n\n10) wil: Discover B2 Wil G3 G3\n\tLaurie_Menke: Glad you got the rest you needed!  It was good seeing you at game day &amp; Rink&#39;s BD!  :o)\n\n11) Laurie_Menke: Build G2 Laurie_menke\n\n12) wil: Build B2 G3\n\n13) Laurie_Menke: Build G2 Gotone\n\n14) wil: Build Y1 Wil\n\n15) Laurie_Menke: Discover G2 Laurie_menke Y2 Yeller\n\n16) wil: Build B3 G3\n\n17) Laurie_Menke: Build G3 Yeller\n\n18) wil: Trade B3 R3 G3\n\n19) Laurie_Menke: Trade G2 Y2 Gotone\n\n\tLaurie_Menke: Ugh...I hate when it rates the resignations.  It&#39;s just not fair to anyone.  :o(  Want me to see if Aaron will reverse it?\n\twil: Nah...no worries...I like having my score lowered to increase confidence of my competitors...\r\n\r\nno worries...I just lost a bunch due to lost focus...including a ladder game.\n\tLaurie_Menke: Bummer.  But LOL about competitor confidence.  ;o)  Have a great weekend!  (BTW... I will be down in the basement moving wood over part of today.)\n\nHomeworlds Online (SDG# 25273)\nVariants: &quot;Unrated&quot;\nStarted: 2014.1.31, Ended: 2014.2.6\nParticipants: ausmuh (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld R1 B2 G3\n\tausmuh: Hello.  I&#39;m certainly not the worlds greatest player,  but I know and love the game.   I&#39;m sure we can get you started.  Please feel free to ask any questions you have.\n\tfogus: Thanks a ton.  My first game was catastrophe-o-rama and my second was a resource-strangulation.  So far I&#39;ve covered a broad swath of the ways to lose.  :-)\n\n2) ausmuh: Homeworld B3 Y1 G3\n\tausmuh: Haha, it happens. After family few games you start to know what to look for and avoid.  Looks like you know about your homeworld options, woo!\n\n3) fogus: Build G1 Fogus\n\tausmuh: *After a few.  Autocorrect..... \n\tausmuh: The next move is pretty much always the same, then it gets fun.  When you start trading pieces you want to avoid getting locked out,  and if possible,  lock me out. \n\n4) ausmuh: Build G1 Ausmuh\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) ausmuh: Trade G1 Y1 Ausmuh\n\tausmuh: The colors I&#39;d consider swapping to would be yellow or red. Because if I want to swap to one of those, you would get the first two pip out of it.  It can also sometimes be difficult to get into a color once the 1pips are gone.\r\n\r\nFrom here on out it&#39;s my opinion,  take it with a grain of salt :) everyone sees things different and you may know something I don&#39;t.\n\tausmuh: Yup,  just like that. \n\n7) fogus: Build G1 Fogus\n\n8) ausmuh: Build Y2 Ausmuh\n\n9) fogus: Build Y2 Fogus\n\tausmuh: It&#39;s usually not a bad idea to get a 2pip when you can. You do need to watch out for me being able to catastrophe you, but right now it&#39;s safe.  Also keep an eye out for a way to put me under the same threat.\n\n10) ausmuh: Discover Y1 Ausmuh G2 Gwar\n\tfogus: The threat of catastrophe is not a problem now because you&#39;re not within striking distance?\r\n\n\tfogus: There are two things about HWs that I&#39;m not entirely clear about: 1) How systems connect and 2) How attacking works.  \n\tausmuh: Ah,  ok.  Systems connect as long as they are NOT the same size.  So from a 1pip planet you can move to a 2pip or 3pip.  Homeworlds have 2 parts,  so because of that you can only move to the size you didn&#39;t use in your home planet. \r\n\r\nFor you the path is home-3pip,  3pip-2pip, then the 2pip is connected to me\n\tausmuh: So the reason you are safe is I have to move my 1 pip yellow out of my home first,  after that,  I -could- sacrifice my 2pip yellow for two moves and make it to your base. \n\tausmuh: Hopefully that makes sense.\r\n\r\nAttacking is more like capturing in this game.  Ships must be at the same planet. A ship can attack the same size or smaller,  but instead of blowing it up,  you take control of it. \n\n11) fogus: Trade Y1 R1 Fogus\n\n12) ausmuh: Discover Y1 Gwar G3 Grass\n\tausmuh: So now that I moved out, I have a new mini-base,  one step closer to you.\r\n\r\nThe mid game is somewhat about spreading pieces out so you can get bigger and more. \n\tausmuh: Lets try an attack! Move your red ship and lay waste to my tiny yellow minion\n\n13) fogus: Move R1 Fogus Grass\n\n14) ausmuh: Build G1 Ausmuh\n\tfogus: Would it have been better to sacrifice to make the move and attack in one turn?\n\n15) fogus: Attack Y1 Grass\n\tausmuh: Sadly a sacrifice can\n\tausmuh: Sadly a sacrifice cant do that.  You only get the actions of what color you sacrificed.  So sacrificing a 2pip yellow gets you 2 moves.  That becomes important later on. \n\n16) ausmuh: Build Y1 Ausmuh\n\tfogus: Oh!  If I sacrifice a yellow2 then I can only move twice?\n\tausmuh: Correct, when ever you sacrifice a piece you only get actions of that color&#39;s power\n\tausmuh: So at this point, were pretty much just spreading out and racing to build bigger pieces used in future plans.... something to think about is sacrificing a g3 and building other 3pips with those actions (while avoiding catastrophe)\n\n17) fogus: Sacrifice Y2 Fogus\nDiscover Y1 Grass Y2 Cats\nMove Y1 Cats Ausmuh\nCatastrophe Ausmuh Y\n\tausmuh: I wouldn&#39;t normally do that, but it gives you an example of sacrificing for a catastrophe.  Your y2 can move your y1 in and destroy part of my hw\n\n18) ausmuh: Trade G1 Y1 Ausmuh\n\tfogus: Oh!  I see how that works now.  I had to discover a system before moving into yours for the catastrophe.  Was there a better way?\n\tfogus: A point I always miss (for whatever reason) is that the star colors count toward catastrophe also.\n\tausmuh: Nope, the discovery was needed. If i had a system you could of used that one, but either works\r\n\r\nAh,  yes,  that&#39;s worth noting, planets count :) Also pay attention to our homeworlds being connected now.  \r\n\r\n&quot;The doomsday machine&quot; involves two y3&#39;s, enough pieces to destroy me, and takes advantage of the new connections.\r\n\r\nIts a double edge sword though because I&#39;m connected to you just the same\n\tausmuh: So one way to win is blowing me up.  That probably the most common tactic. \n\n19) fogus: Trade G1 Y1 Fogus\n\tausmuh: Next I want to show what a homeworld attack looks like.  Its a little tougher to set up,  easier to notice, but well worth knowing.  \r\n\r\nWhat you need is at least one more 3pip than I have in my homeworld (2 in this case) and a big enough red piece to sacrifice to take what I have. And enough yellow to move them in.\r\n\r\nNormally an opponent will build red when you do,  and sometimes its hard to build enough 3 pips to overpower your opponent,  especially if you have to leave one at home\n\n20) ausmuh: Build G1 Ausmuh\n\n21) fogus: Build G1 Fogus\n\tfogus: Is there ever a reason not to put a 3-pip at your homeworld?\n\tausmuh: Sometimes... like now.   You have red and I do not.  Our home worlds are connected. If you move your big guy in,  you&#39;ll take my 3pip before I get the red to react.\r\n\r\nBe very careful with that,  if an opponent is ready to move big ships in on you,  you want to keep a 3pip at home\n\n22) ausmuh: Discover G1 Ausmuh B2 Gwar\n\n23) fogus: Trade G1 R1 Fogus\n\n24) ausmuh: Build G1 Gwar\n\n25) fogus: Build R2 Fogus\n\n26) ausmuh: Build Y1 Ausmuh\n\n27) fogus: Build Y2 Fogus\n\n28) ausmuh: Build G1 Ausmuh\n\n29) fogus: Build G2 Fogus\n\tausmuh: Just don&#39;t forget planets count towards catastrophes :)\n\n30) ausmuh: Move Y1 Ausmuh Gwar\n\tfogus: I almost forgot :-O (whew)\n\n31) fogus: Sacrifice Y2 Fogus\nMove G3 Fogus Ausmuh\nMove R1 Fogus Ausmuh\n\tfogus: It seems like blue ships are kinda the weakest.  If there is a blue star then what use is a blue ship?\n\tausmuh: This game didn&#39;t see much blue but it can come in handy.   One example is sacrificing to trade multiple ships for a catastrophe,  and sometimes you can trade a blue ship for another color before anyone has access to it.  I. E. Trade a b3 for a r3 when its good timing.   You&#39;ll feel it out the more you play :)\n\tausmuh: I&#39;ve purposely been neglecting red to show you what moving in for a homeworld attack looks like (sort of) \r\n\r\nSense our homeworlds are connected and I&#39;ve got no red,  you have a perfect opportunity to move your big ship in and sweep up in my homeworld.  Normally an opponent would somehow scramble for their own red,  but is just some practice to show you a few things. \n\n32) ausmuh: Build Y2 Gwar\n\tfogus: I can&#39;t seem to do what I&#39;m thinking:\r\nsacrifice r2 fogus\r\nmove g3 fogus ausmuh\r\nattack G3S ausmuh\n\tfogus: Oh wait... all actions must be that of the color sacrificed. \n\tausmuh: Close.  Because,  and only because,  I have no red,  you can move in as one turn,  then attack on the next turn :)\n\n33) fogus: Attack G3 Ausmuh\n\n34) ausmuh: Build G2 Ausmuh\nCatastrophe Ausmuh Green\n\tausmuh: Many of my moves were less then smart,  but hopefully it gave you a chance to figure a couple things out :)\n\n35) fogus: Attack Y1 Ausmuh\n\n\tausmuh: There really is not,  even after a catastrophe,  you are more than prepared to overtake my homeworld \n\tfogus: I definitely missed that catastrophe option.  It&#39;s a good thing I decided to bring in the r1... even if that wasn&#39;t my initial goal. ;-)\r\n\r\nThank you very much for the lesson.  I learned a ton.\n\tausmuh: :) thanks for your patience, I&#39;m not much of a teacher,  but I&#39;m glad you learned some stuff.  Have fun!\n\nHomeworlds Online (SDG# 25291)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.2, Ended: 2014.2.28\nParticipants: Salmonax (S), ausmuh (N)\nWinner: ausmuh\n\n1) ausmuh: Homeworld B3 R1 G3\n\n2) Salmonax: Homeworld G2 R1 B3\n\tausmuh: Thanks for accepting. Have fun!\n\n3) ausmuh: Build G1 Ausmuh\n\n4) Salmonax: Build B1 Salmonax\n\tSalmonax: Good luck, have fun. =)\n\n5) ausmuh: Trade G1 R1 Ausmuh\n\n6) Salmonax: Trade B1 Y1 Salmonax\n\n7) ausmuh: Build R2 Ausmuh\n\n8) Salmonax: Build Y1 Salmonax\n\n9) ausmuh: Trade R2 Y2 Ausmuh\n\n10) Salmonax: Trade Y1 B1 Salmonax\n\n11) ausmuh: Build R2 Ausmuh\n\n12) Salmonax: Build Y1 Salmonax\n\n13) ausmuh: Discover R2 Ausmuh G2 Gwar\n\n14) Salmonax: Trade B3 R3 Salmonax\n\n15) ausmuh: Build R2 Ausmuh\n\n16) Salmonax: Build B1 Salmonax\n\n17) ausmuh: Discover R2 Ausmuh Y2 Slayer\n\n18) Salmonax: Trade B1 G1 Salmonax\n\n19) ausmuh: Sacrifice G3 Ausmuh\nBuild R2 Gwar\nBuild R3 Slayer\nBuild R3 Ausmuh\n\n20) Salmonax: Discover Y1 Salmonax G3 S2\n\tSalmonax: Yipes!\n\n21) ausmuh: Trade R3 Y3 Ausmuh\n\n22) Salmonax: Build Y1 S2\n\tausmuh: Getting locked out of a color is rough.   The same thing happened to me in the other game I&#39;m playing. :P\n\n23) ausmuh: Discover R3 Slayer G3 Glob\n\n24) Salmonax: Build Y2 Salmonax\n\n25) ausmuh: Trade Y2 G2 Ausmuh\n\n26) Salmonax: Build Y2 Salmonax\n\n27) ausmuh: Move R2 Slayer S2\n\n28) Salmonax: Build Y2 S2\n\n29) ausmuh: Build Y3 Ausmuh\n\n30) Salmonax: Sacrifice Y2 S2\nDiscover Y1 S2 B2 S3\nMove Y1 S2 S3\n\n31) ausmuh: Sacrifice Y3 Ausmuh\nMove R2 S2 Salmonax\nMove R2 Gwar Glob\nMove R2 Glob Salmonax\nCatastrophe Salmonax Red\n\n32) Salmonax: Trade B1 R1 Salmonax\n\n33) ausmuh: Sacrifice Y3 Ausmuh\nMove R3 Glob Salmonax\nPass\nPass\n\n34) Salmonax: Move Y2 Salmonax Ausmuh\n\tSalmonax: I used to be okay at this game. =)\n\n35) ausmuh: Sacrifice R2 Gwar\nAttack Y2S Ausmuh\nAttack Y2S Salmonax\n\n36) Salmonax: Build G1 Salmonax\n\tausmuh: ^_^ I&#39;m sure you still got it. Kind of like riding a bike.\n\n37) ausmuh: Sacrifice R3 Salmonax\nAttack R1S Salmonax\nAttack G1S Salmonax\nAttack Y1S Salmonax\n\n38) Salmonax: Trade Y1 B1 S3\n\n39) ausmuh: Attack G1S Salmonax\n\tausmuh: Thanks for the game ^_^ \r\nI&#39;m not certain,  but both of us putting a red 1pip in our home seemed to give me some quick access to 2pips.   That&#39;s a thinker.   \r\nI hope we get another game sometime!\n\tSalmonax: gg!\n\n\nHomeworlds Online (SDG# 25158)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.3, Ended: 2014.3.14\nParticipants: Grosseteste (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Grosseteste: H Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) Grosseteste: Trade G1 B1 Grosseteste\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) Grosseteste: Build B2 Grosseteste\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) Grosseteste: Discover B1 Grosseteste G2 Hexaemeron\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) Grosseteste: Build B2 Grosseteste\n\n13) SilentTitan: Build B3 Silenttitan\n\n14) Grosseteste: Trade B2 Y2 Grosseteste\n\n15) SilentTitan: Discover B1 Silenttitan B3 Sol\n\n16) Grosseteste: Build B2 Hexaemeron\n\n17) SilentTitan: Discover G1 Silenttitan B3 Soul\n\n18) Grosseteste: T B1 Y1 Hexaemeron\n\n19) SilentTitan: Build G1 Silenttitan\n\n20) Grosseteste: M B2 Hexaemeron Soul\n\n21) SilentTitan: Trade B3 R3 Silenttitan\n\n22) Grosseteste: Trade B2 R2 Soul\n\n23) SilentTitan: Move R3 Silenttitan Soul\n\n24) Grosseteste: S Y2 Grosseteste\nM R2 Soul Hexaemeron\nM R2 Hexaemeron Grosseteste\n\n25) SilentTitan: Build Y1 Silenttitan\n\n26) Grosseteste: Build R1 Grosseteste\n\n27) SilentTitan: Trade B1 R1 Sol\n\n28) Grosseteste: Trade R1 Y1 Grosseteste\n\n29) SilentTitan: Move Y1 Silenttitan Soul\n\n\tGrosseteste: Doh! Sorry about that.\n\tSilentTitan: That&#39;s ok.   Challenge me again. If you&#39;d like\n\nHomeworlds Online (SDG# 25286)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.3, Ended: 2014.3.19\nParticipants: TwoShort (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) TwoShort: Build G1 Twoshort\n\tBroccoli_Commander: Greetings, have a good game\n\n5) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\tTwoShort: Thanks; you too.\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) TwoShort: Build G1 Twoshort\n\n9) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n10) TwoShort: Build G1 Twoshort\n\n11) Broccoli_Commander: Build B1 Broccoli_commander\n\n12) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n13) Broccoli_Commander: Discover B1 Broccoli_commander Y3 Cauliflower\n\n14) TwoShort: Build G1 Twoshort\n\n15) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Cauliflower\nBuild B2 Cauliflower\nBuild B3 Broccoli_commander\n\n16) TwoShort: Discover G1 Twoshort G2 Grogar\n\n17) Broccoli_Commander: Sacrifice B2 Cauliflower\nTrade B2 R2 Cauliflower\nTrade B3 G3 Broccoli_commander\n\n18) TwoShort: Build G2 Twoshort\n\n19) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n20) TwoShort: Trade G2 R2 Twoshort\n\n21) Broccoli_Commander: Build G2 Broccoli_commander\n\n22) TwoShort: Discover G1 Yolonda Y3 Yoyodyne\n\n23) Broccoli_Commander: Build B2 Lettuce\n\n24) TwoShort: Sacrifice Y1 Twoshort\nMove G1 Grogar Lettuce\n\n25) Broccoli_Commander: Discover R2 Cauliflower G2 Pea\n\n26) TwoShort: Trade R2 Y2 Twoshort\n\tTwoShort: Sorry to play so slow, I&#39;ve been busy... \n\n27) Broccoli_Commander: Move G2 Broccoli_commander Cauliflower\n\tBroccoli_Commander: It&#39;s alright, I understand that you want to stay on the top of the ladder for a few more days. Whatever works. ;D ;D\n\tTwoShort: At this point I&#39;m all about the rematch :)  And wishing I&#39;d peeked at your game history before I went for the &quot;blow off the blue lock&quot; experiment :)\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Lettuce\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n29) Broccoli_Commander: Build B2 Cauliflower\n\tBroccoli_Commander: Yet you almost pulled it off. Besides I&#39;m still very wary of your bag of tricks\n\n30) TwoShort: Sacrifice G1 Twoshort\nBuild G1 Lettuce\nCatastrophe Lettuce Green\n\n31) Broccoli_Commander: Build B1 Cauliflower\n\n32) TwoShort: Build G1 Twoshort\n\tTwoShort: You&#39;ve given me a rough game and have me in a tough spot.  But I enjoy trying to weasel out of such positions, and so don&#39;t give up easily :)  It&#39;d be helpful if you would become overconfident though. :)\n\n33) Broccoli_Commander: Build R1 Pea\n\tBroccoli_Commander: I was not expecting less of you ;)\r\nand also sorry, I ve been in the most stressful period of my life... Almost forgot the existence of superdupergames :P \n\tBroccoli_Commander: I was not expecting less of you ;)\r\nand also sorry, I ve been in the most stressful period of my life...but it s over. Almost forgot the existence of superdupergames :P \n\n34) TwoShort: Build G1 Yoyodyne\n\n35) Broccoli_Commander: Trade B2 Y2 Cauliflower\n\n36) TwoShort: Discover Y1 Twoshort B2 Borbor\n\n37) Broccoli_Commander: Move G2 Cauliflower Borbor\n\n\tTwoShort: Dang! I didn&#39;t mean to time out;  But I did mean to resign, so I guess it&#39;s OK :)  I could stall briefly from here, but you&#39;ve got me.  Thanks for a great game!\n\tBroccoli_Commander: No problem, thanks for the game! I look forward to playing you again\n\nHomeworlds Online (SDG# 25290)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.7, Ended: 2014.2.18\nParticipants: ausmuh (S), Grosseteste (N)\nWinner: ausmuh\n\n1) Grosseteste: H Y2 B1 G3\n\n2) ausmuh: Homeworld B3 R1 G3\n\tGrosseteste: Thanks for the game!\n\n3) Grosseteste: Build G1 Grosseteste\n\tausmuh: Have fun! :)\n\n4) ausmuh: Build G1 Ausmuh\n\n5) Grosseteste: Trade G1 B1 Grosseteste\n\n6) ausmuh: Trade G1 Y1 Ausmuh\n\n7) Grosseteste: Build B1 Grosseteste\n\n8) ausmuh: Build G1 Ausmuh\n\tausmuh: Nice work with blue!  \n\n9) Grosseteste: Discover B1 Grosseteste G3 Lineis\n\n10) ausmuh: Trade G3 B3 Ausmuh\n\tGrosseteste: Thanks, I learned to look for that through bitter experience.  I expect you to teach me a thing or two (like how to thwart my cunning plan?).\n\tausmuh: Well,  plan A is not to make silly mistakes. After that mistake inevitably happens I go into plan B, &quot;wing it&quot; :)\n\n11) Grosseteste: Build B2 Lineis\n\n12) ausmuh: Build B2 Ausmuh\n\n\tGrosseteste: Doh! Sorry about that.\n\tausmuh: Oops? \n\tausmuh: Oh,  hard time triggers automatically?  I thought I had to force your resignation?  :P To be continued! \n\nHomeworlds Online (SDG# 25353)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.9, Ended: 2014.3.1\nParticipants: foksieloy (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld R2 B1 G3\n\n2) foksieloy: Homeworld R1 B3 G3\n\tfoksieloy: Hi! Good luck and have fun!\n\n3) shmil1: Build G1 Shmil1\n\n4) foksieloy: Build G1 Foksieloy\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) foksieloy: Trade G1 B1 Foksieloy\n\n7) shmil1: Build G1 Shmil1\n\n8) foksieloy: Build G1 Foksieloy\n\n9) shmil1: Build Y1 Shmil1\n\n10) foksieloy: Build B1 Foksieloy\n\n11) shmil1: Trade Y1 R1 Shmil1\n\n\nHomeworlds Online (SDG# 25230)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.12, Ended: 2014.2.15\nParticipants: fogus (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld Y1 B2 G3\n\n2) fogus: Homeworld R1 B2 G3\n\n3) Marmalade: Build G1 Marmalade\n\n4) fogus: Build G1 Fogus\n\n5) Marmalade: Discover G1 Marmalade Y3 Formalhaut\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) Marmalade: Build G1 Marmalade\n\n8) fogus: Build Y1 Fogus\n\n9) Marmalade: Build G1 Formalhaut\n\n10) fogus: Trade Y1 R1 Fogus\n\n11) Marmalade: Trade G1 R1 Marmalade\n\n12) fogus: Build R2 Fogus\n\n13) Marmalade: Build R2 Marmalade\n\n14) fogus: Move R2 Fogus Formalhaut\n\n15) Marmalade: Move G3 Marmalade Formalhaut\n\n16) fogus: Attack G1 Formalhaut\n\tfogus: Off to shovel some snow. :-|\n\n17) Marmalade: Sacrifice R2 Marmalade\nAttack R2 Formalhaut\nAttack G1 Formalhaut\n\n18) fogus: Discover R1 Fogus Y3 Oboe\n\tMarmalade: Not much in the way of snow here (it&#39;s getting close), but do have to worry about flooding :/\n\tfogus: Huh... I didn&#39;t know that you could attack even without a ship in the same system.  :-( I&#39;m still learning how to best utilize sacrifices, this is a painful way to learn. ;-)\n\n19) Marmalade: Move G3 Formalhaut Marmalade\n\tfogus: And of course as I said that I almost walked right into a catastrophe myself.\n\n20) fogus: Build G1 Fogus\n\tMarmalade: Sacrificing allows you to take that action wherever it would be legal - so I could sac a g1 to create a single red ship at Marmalade, for example.\n\n21) Marmalade: Build R2 Marmalade\n\n22) fogus: Move G1 Fogus Oboe\n\n23) Marmalade: Move R2 Marmalade Oboe\n\n24) fogus: Build G2 Fogus\n\n25) Marmalade: Attack R1S Oboe\n\tfogus: Now that I finally understand the rules (well, mostly) I&#39;m starting to appreciate the subtitles of your position and moves.  Very nice.\n\n26) fogus: Move G1 Oboe Fogus\n\n27) Marmalade: Move G1 Formalhaut Fogus\nCatastrophe Fogus G\n\tMarmalade: I&#39;m not particularly brilliant at this, but I&#39;m always happy to play.\n\n28) fogus: Discover Y1 Fogus R3 Caprica\n\n\tfogus: D&#39;oh!\n\tfogus: As thus did the last of humanity flee the fogus system in search of a new home... verily did they find after much toil, a 4-star cluster suitable for habitation.  After much deliberation their new home was named Caprica.  Little is known of what happened to those survivors.\n\tMarmalade: Aw, poor little triangular guys. It&#39;s amazing, considering that they&#39;re only difference is pointing in different directions, that they can&#39;t get on.\r\n\r\nCheers for the game.\r\n\n\tfogus: Thank you for the game.  My apologies for not putting up a very strong fight. I hope to get there one day.\n\nHomeworlds Online (SDG# 25277)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.2.16, Ended: 2014.4.7\nParticipants: goulo (S), Grosseteste (N), wil (E)\nWinner: goulo\n\n1) Grosseteste: H B2 Y1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) Grosseteste: Build G1 Grosseteste\n\n4) goulo: Build G1 Goulo\n\tgoulo: wow, one player eliminated even before my first turn! :P\n\tGrosseteste: :p\n\tGrosseteste: This&#39;ll be a little different with an extra stash...\n\n5) Grosseteste: Discover G1 Grosseteste B3 Luce\n\n6) goulo: Trade G1 Y1 Goulo\n\tgoulo: true, I&#39;d not thought about that side effect of a player being dropped before their first turn.\n\n7) Grosseteste: Build G1 Luce\n\n8) goulo: Build G1 Goulo\n\n9) Grosseteste: Build G1 Grosseteste\n\n10) goulo: Trade G1 R1 Goulo\n\n11) Grosseteste: Trade G1 R1 Luce\n\n12) goulo: Build G1 Goulo\n\n13) Grosseteste: B R1 Luce\n\n14) goulo: Discover R1 Goulo Y1 Citroneto\n\n15) Grosseteste: B G1 Luce\n\n16) goulo: Build G2 Goulo\n\n17) Grosseteste: T R1 Y1 Luce\n\n18) goulo: Move G2 Goulo Citroneto\n\n19) Grosseteste: Build Y2 Luce\n\n20) goulo: Build Y2 Goulo\n\n21) Grosseteste: T G1 R1 Grosseteste\n\n22) goulo: Trade Y1 B1 Goulo\n\twil: Can this game get eliminated from the current list...\r\n\r\n\n\tGrosseteste: Up till now, for me it has always said &quot;Your time is up!&quot;\n\tgoulo: I&#39;m confused what the issue is. wil, you were eliminated due to Hard Time but Grosseteste and I are still playing.\n\twil: Oooopss my bad!   I thought it was just sitting there..my apologies!!\n\n23) Grosseteste: Build G1 Grosseteste\n\tGrosseteste: Well that seemed to work.  Does frozen just mean our timers aren&#39;t running?\n\tgoulo: Ok, it seems I un-called the admin. (I think Aaron is rarely maintaining the site these days in any case, so it might have been a long wait before he appeared...) :)\n\n24) goulo: Build G2 Citroneto\n\n25) Grosseteste: D G1 Luce Y1 Iride\n\n26) goulo: Discover G2 Citroneto Y3 Citronego\n\n27) Grosseteste: M G1 Iride Goulo\n\n28) goulo: Discover G3 Goulo Y1 Vortareto\n\n29) Grosseteste: B G2 Grosseteste\n\n30) goulo: Move G2 Citronego Grosseteste\nCatastrophe Grosseteste G\n\n31) Grosseteste: Sacrifice Y2 Luce\nMove G1 Luce Grosseteste\nM Y1 Luce Grosseteste\n\n32) goulo: Attack G1N Goulo\n\tGrosseteste: Nooooooooooooo!  I meant to build in goulo, of course.  GG\n\tGrosseteste: Eh, actually I&#39;ll try to get what I can tactically out of this as penance for the blunder.  Expect a separate challenge though!\n\n33) Grosseteste: B Y2 Grosseteste\n\tgoulo: Aha, I wondered what the plan was with that build in Grosseteste! :)\n\n34) goulo: Build Y2 Goulo\n\n35) Grosseteste: Discover Y1 Grosseteste G3 Colore\n\n36) goulo: Discover Y2 Goulo G1 Smeraldeto\n\n37) Grosseteste: B Y2 Colore\n\n38) goulo: Build Y3 Goulo\n\n39) Grosseteste: T Y2 G2 Grosseteste\n\n40) goulo: Move G3 Vortareto Luce\n\n\tGrosseteste: GG, didn&#39;t intend to let it go down to hard time after all that (caught what appears to be the bubonic plague a couple days ago).\r\n\r\nI will challenge again when I&#39;m feeling better.\n\twil: awe  sorry that happened... \n\tgoulo: heh, it was an unusual game! :)\n\nHomeworlds Online (SDG# 25397)\nVariants: &quot;Unrated&quot;\nStarted: 2014.2.16, Ended: 2014.3.6\nParticipants: fogus (S), pedrop (N)\nWinner: fogus\n\n1) pedrop: Homeworld Y1 B2 G3\n\n2) fogus: Homeworld R1 B2 G3\n\n3) pedrop: Build G1 Pedrop\n\n4) fogus: Build G1 Fogus\n\n5) pedrop: Trade G1 Y1 Pedrop\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) pedrop: Discover Y1 Pedrop G3 Kaziu\n\n8) fogus: Build G1 Fogus\n\n9) pedrop: Build G1 Pedrop\n\n10) fogus: Trade G1 R1 Fogus\n\n11) pedrop: Trade G1 R1 Pedrop\n\n12) fogus: Move R1 Fogus Kaziu\n\n13) pedrop: Sacrifice R1 Pedrop\nAttack R1 Kaziu\n\n14) fogus: Build G1 Fogus\n\n15) pedrop: Build G1 Pedrop\n\tfogus: ARGH!  I always forget about to look for red sacrifices. :-(\n\n16) fogus: Build Y2 Fogus\n\n17) pedrop: Build Y2 Kaziu\n\tpedrop: Yeah... forgeting is not good thing:) But I feel this game is all about Your opponent mistakes... you are just waiting for it. Without it we could play for years... Having written it... it seems quite obvious and relevent to most games... lol... ;)\n\n18) fogus: Discover Y1 Fogus B3 Chum\n\n19) pedrop: Discover Y1 Kaziu G2 Zbysiu\n\n20) fogus: Trade G1 R1 Fogus\n\n21) pedrop: B R2 Kaziu\n\n22) fogus: Move R1 Fogus Chum\n\n23) pedrop: Move R2 Kaziu Zbysiu\n\n24) fogus: Build G1 Fogus\n\n\nHomeworlds Online (SDG# 25369)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.16, Ended: 2014.2.20\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 25280)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.21, Ended: 2014.2.24\nParticipants: wil (S), qwertyu63 (N)\nWinner: qwertyu63\n\n1) qwertyu63: Homeworld G1 Y3 B3\n\n\nHomeworlds Online (SDG# 25427)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.21, Ended: 2014.2.24\nParticipants: wil (S), qwertyu63 (N)\nWinner: qwertyu63\n\n1) qwertyu63: Homeworld G1 Y3 B3\n\n\nHomeworlds Online (SDG# 25407)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.23, Ended: 2014.3.15\nParticipants: qwertyu63 (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld Y2 G1 B3\n\n2) qwertyu63: Homeworld Y3 G1 B3\n\n3) Marmalade: Build B1 Marmalade\n\n4) qwertyu63: Build B1 Qwertyu63\n\n5) Marmalade: Discover B1 Marmalade G3 Foom\n\n6) qwertyu63: Trade B1 Y1 Qwertyu63\n\n7) Marmalade: Build B1 Foom\n\n8) qwertyu63: Discover Y1 Qwertyu63 R2 Asdf\n\n9) Marmalade: Trade B1 Y1 Foom\n\n10) qwertyu63: Build B1 Qwertyu63\n\n11) Marmalade: Build B1 Marmalade\n\n12) qwertyu63: Move B1 Qwertyu63 Asdf\n\n13) Marmalade: Build B2 Foom\n\n14) qwertyu63: Build B2 Qwertyu63\n\n15) Marmalade: Move B2 Foom Asdf\n\n16) qwertyu63: Move Y1 Asdf Qwertyu63\n\n17) Marmalade: Attack B1 Asdf\n\n18) qwertyu63: Trade B2 R2 Qwertyu63\n\n19) Marmalade: Trade B2 R2 Asdf\n\n20) qwertyu63: Build B2 Qwertyu63\n\n21) Marmalade: Build B2 Foom\n\n22) qwertyu63: Discover Y1 Qwertyu63 G2 Zxc\n\n23) Marmalade: Build B2 Foom\n\n24) qwertyu63: Build Y1 Zxc\n\n25) Marmalade: Build B3 Marmalade\n\n26) qwertyu63: Build Y2 Zxc\n\n27) Marmalade: Move Y1 Foom Zxc\nCatastrophe Zxc Y\n\n28) qwertyu63: Trade B2 Y2 Qwertyu63\n\n29) Marmalade: Trade B3 Y3 Marmalade\n\n\nHomeworlds Online (SDG# 25438)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.23, Ended: 2014.4.11\nParticipants: fnord (S), Grosseteste (N)\nWinner: Grosseteste\n\n1) Grosseteste: H B2 Y1 G3\n\n2) fnord: Homeworld B2 G1 Y3\n\tGrosseteste: Awesome, have gotten zero action on the ladder so far.  Guess it took some new people at the bottom.\n\tGrosseteste: Have a good game!\n\tfnord: Thanks, I&#39;ll try, though I&#39;ll warn you I&#39;m going to be very rusty at the game. \r\nI hope you have fun!\n\n3) Grosseteste: Build G1 Grosseteste\n\n4) fnord: B Y1 Fnord\n\n5) Grosseteste: B G1 Grosseteste\n\n6) fnord: Build Y1 Fnord\n\tfnord: b y1 fnord\n\tfnord: Whoops, wrong field!\n\n7) Grosseteste: D G1 Grosseteste Y3 Luce\n\n8) fnord: Discover Y1 Fnord B3 Eris\n\n9) Grosseteste: M G1 Luce Fnord\n\n10) fnord: Trade Y3 R3 Fnord\n\n11) Grosseteste: Build G2 Fnord\n\n12) fnord: Attack G2 Fnord\n\n13) Grosseteste: B G2 Fnord\nCatastrophe Fnord Green\n\n14) fnord: Trade Y1 G1 Fnord\n\tfnord: Nicely done.\n\n15) Grosseteste: Trade G1 Y1 Grosseteste\n\n16) fnord: Build R1 Fnord\n\tGrosseteste: Thanks, I&#39;m not sure if South can stop North from destroying its green star given the initial setup; I&#39;ll look at it more closely when I&#39;m less sleepy.\n\n17) Grosseteste: T Y1 R1 Grosseteste\n\n\nHomeworlds Online (SDG# 25319)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.23, Ended: 2014.2.27\nParticipants: SilentTitan (S), qwertyu63 (N)\nWinner: SilentTitan\n\n1) qwertyu63: Homeworld Y1 G2 B3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\n3) qwertyu63: Build B1 Qwertyu63\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) qwertyu63: Trade B1 Y1 Qwertyu63\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) qwertyu63: Discover Y1 Qwertyu63 R3 Asdf\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) qwertyu63: Build B1 Qwertyu63\n\n10) SilentTitan: Trade Y1 B1 Silenttitan\n\n11) qwertyu63: Move B1 Qwertyu63 Asdf\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) qwertyu63: Build B1 Qwertyu63\n\n14) SilentTitan: Discover B1 Silenttitan Y1 Sol\n\n15) qwertyu63: Build B2 Qwertyu63\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Sol Asdf\nMove B1 Asdf Qwertyu63\nCatastrophe Qwertyu63 Blue\n\n\nHomeworlds Online (SDG# 25445)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.24, Ended: 2014.2.28\nParticipants: TeeTeeTee (S), Remneb (N)\nWinner: TeeTeeTee\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) Remneb: Trade G1 Y1 Remneb\n\tRemneb: Have a good game.\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) Remneb: Build G1 Remneb\n\n8) TeeTeeTee: Build B1 Teeteetee\n\n9) Remneb: Build Y1 Remneb\n\tTeeTeeTee: You too!\n\n10) TeeTeeTee: Discover B1 Teeteetee G2 Dirac\n\n11) Remneb: Trade Y1 R1 Remneb\n\n12) TeeTeeTee: Build B2 Dirac\n\n13) Remneb: Discover R1 Remneb Y3 Redrum\n\n14) TeeTeeTee: Trade B2 R2 Dirac\n\n15) Remneb: Build Y1 Remneb\n\n16) TeeTeeTee: Build B2 Dirac\n\n17) Remneb: Discover R1 Redrum Y2 Ouja\n\n18) TeeTeeTee: Build B2 Teeteetee\n\n19) Remneb: Discover Y1 Remneb B3 Altar\n\n20) TeeTeeTee: Build B3 Dirac\n\n21) Remneb: Build G1 Remneb\n\n22) TeeTeeTee: Trade B3 Y3 Dirac\n\n23) Remneb: Discover G1 Remneb Y3 Horla\n\n24) TeeTeeTee: Build B3 Dirac\n\n25) Remneb: Build G1 Horla\n\n26) TeeTeeTee: Move R2 Dirac Horla\n\n27) Remneb: Sacrifice G3 Remneb\nBuild G2 Horla\nBuild G2 Horla\nBuild G3 Remneb\nCatastrophe Horla G\n\n28) TeeTeeTee: Trade B3 G3 Dirac\n\n29) Remneb: Move G1 Remneb Altar\n\n30) TeeTeeTee: Build B3 Dirac\n\n31) Remneb: Build G1 Altar\n\n32) TeeTeeTee: Move B3 Dirac Altar\n\n33) Remneb: Move G1 Altar Dirac\n\n34) TeeTeeTee: Sacrifice Y3 Dirac\nMove G3 Dirac Altar\nMove G3 Altar Remneb\nMove B3 Altar Remneb\n\n35) Remneb: Sacrifice G3 Remneb\nBuild G1 Dirac\nBuild G2 Dirac\nBuild Y1 Altar\nCatastrophe Dirac G\n\n\n\n36) TeeTeeTee: Attack Y1 Remneb\n\tRemneb: Thanks for the game.\n\tTeeTeeTee: Thanks! It&#39;s nice to play a quick-paced game for a change: the last few people I played took days to make a single move...\n\tRemneb: I&#39;ve played some games who took months ! \n\tBabamots: In case anyone is interested, this game was featured in Homeworlds Theater episode 1:\r\n\r\nhttps://www.youtube.com/watch?v=CXG1GETk4_g\n\n\nHomeworlds Online (SDG# 25442)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.25, Ended: 2014.3.8\nParticipants: SilentTitan (S), ausmuh (N)\nWinner: SilentTitan\n\n1) ausmuh: Homeworld B3 Y2 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) ausmuh: Build G1 Ausmuh\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ausmuh: Trade G1 R1 Ausmuh\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ausmuh: Build R1 Ausmuh\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) ausmuh: Build R2 Ausmuh\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) ausmuh: Trade R2 Y2 Ausmuh\n\n12) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n13) ausmuh: Build R2 Ausmuh\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n15) ausmuh: Sacrifice Y2 Ausmuh\nDiscover R2 Ausmuh G1 Temp\nMove R2 Temp Sol\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover Y1 Sol B1 Soul\nDiscover Y1 Sol G1 Sole\n\n17) ausmuh: Move R1 Ausmuh Soul\n\n18) SilentTitan: Discover Y1 Soul R3 Tic\n\n19) ausmuh: Build R2 Ausmuh\n\tausmuh: Heh,  clever planet names :)\n\tSilentTitan: Lol.  Thanks\n\n20) SilentTitan: Trade Y3 R3 Silenttitan\n\n21) ausmuh: Trade R2 Y2 Ausmuh\n\n22) SilentTitan: Build Y2 Silenttitan\n\n23) ausmuh: Build Y3 Ausmuh\n\n24) SilentTitan: Move Y1 Sole Ausmuh\nCatastrophe Ausmuh Yellow\n\n25) ausmuh: Sacrifice G3 Ausmuh\nBuild R2 Soul\nBuild R2 Sol\nBuild R3 Ausmuh\n\n26) SilentTitan: Trade R3 B3 Silenttitan\n\n27) ausmuh: Build R3 Sol\n\n28) SilentTitan: Build B1 Silenttitan\n\n29) ausmuh: Trade R2 Y2 Soul\n\n30) SilentTitan: Trade Y2 R2 Silenttitan\n\n31) ausmuh: Sacrifice Y2 Soul\nMove R2 Sol Silenttitan\nMove R2 Sol Silenttitan\nCatastrophe Silenttitan Red\n\n32) SilentTitan: Trade B1 R1 Silenttitan\n\n33) ausmuh: Trade R3 G3 Ausmuh\n\n34) SilentTitan: Build B1 Silenttitan\n\n35) ausmuh: Trade R1 Y1 Ausmuh\n\n36) SilentTitan: Build Y2 Silenttitan\n\n37) ausmuh: Trade R1 B1 Soul\n\n38) SilentTitan: Discover B1 Silenttitan G1 Sole\n\n39) ausmuh: Sacrifice Y1 Ausmuh\nMove B1 Soul Sol\n\n40) SilentTitan: Build Y1 Silenttitan\n\tausmuh: Ahhh!  Everything of mine is in the wrong place :)\n\n41) ausmuh: Build B1 Sol\n\tSilentTitan: That is the general lament of binary Homeworlds\n\n42) SilentTitan: Move Y1 Silenttitan Sole\n\n43) ausmuh: Trade R3 Y3 Sol\n\n44) SilentTitan: Sacrifice Y2 Silenttitan\nMove B3 Silenttitan Ausmuh\nMove B1 Sole Ausmuh\n\n45) ausmuh: Sacrifice Y3 Sol\nMove B1 Sol Silenttitan\nMove B1 Sol Silenttitan\nPass\n\n46) SilentTitan: Sacrifice G1 Silenttitan\nBuild B2 Ausmuh\nCatastrophe Ausmuh Blue\n\tausmuh: Ugh,  I kinda lost my grip the second half :/ Good game though! I had a lot of fun :)\n\n\tausmuh: Grip is not the right word,  more like strategy or something. O.o\n\tSilentTitan: Thanks for the game.\n\nHomeworlds Online (SDG# 25450)\nStarted: 2014.2.26, Ended: 2014.3.9\nParticipants: Laurie_Menke (S), Otts (N)\nWinner: Otts\n\n1) Otts: Homeworld B2 Y1 G3\n\tLaurie_Menke: Thanks for the challenge, Alex!  Have fun!  (For starters, you&#39;ll want to build a homeworld with any two colors except green, and then build a large green ship.)\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\n3) Otts: Build G1 Otts\n\tLaurie_Menke: The second move has no choice involved...we each have only one thing we can do:  build a small green.  After that, the choices start to open up.  :o)\n\tOtts: Ok, I think I&#39;ve got a grasp of it here!  But...just to be (overly) technical and make sure I&#39;m clear, before building that little green I could still have a few moves: pass, sacrifice my g3, or trade my g3 for another color.  I couldn&#39;t move it out because I wouldn&#39;t have any ships in my homeworld.  Granted none of those make sense, but I want to be sure I&#39;ve got my head around it properly!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Otts: Discover G1 Otts B3 Beagle\n\tLaurie_Menke: It is true that you could pass or trade it for another color.  Good thinking!  :o)  You couldn&#39;t sacrifice it because that would leave your homeworld empty and end the game.\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) Otts: Build G1 Otts\n\n8) Laurie_Menke: Build Y1 Laurie_menke\n\n9) Otts: Build G1 Beagle\n\n10) Laurie_Menke: Build G2 Laurie_menke\n\n11) Otts: Sacrifice G3 Otts\nBuild G2 Beagle\nBuild G2 Otts\nBuild G3 Otts\n\tLaurie_Menke: One thing you want to look out for is taking the last of any size.  When you took the last small green, I was able to get a medium green.  It was basically like you lost a turn, because I got 2 points of green power in one turn and those same two points of green power took you two turns.  It&#39;s not really avoidable a lot of the time, but it&#39;s something to watch for.  And BTW... you&#39;re doing well so far!\n\tLaurie_Menke: P.S.  I was safe taking the last yellow earlier because you didn&#39;t have the ability to grow yellow.\n\tOtts: Damn.  The learning curve is steep here, but I&#39;m working my way through it.  I&#39;m already finding holes in things I was thinking were solid yesterday.  I see now I&#39;m frozen out of yellow ships for the time being.  You sly fox, I&#39;ll remember that.  ;)\n\n12) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Laurie_menke\nPass\n\n13) Otts: Trade G3 Y3 Otts\n\tLaurie_Menke: Yes, the learning curve is extremely steep for this game.  But it&#39;s worth the time and effort.  And you are doing well!  That last move was a nice move!  That is called the &quot;factory&quot; move.  It&#39;s a great way to speed up production, but you have to be careful not to set yourself up for destruction...which you have done!  Nice job!\n\tLaurie_Menke: Yes, the learning curve is extremely steep for this game.  But it&#39;s worth the time and effort.  And you are doing well!  That last move was a nice move!  That is called the &quot;factory&quot; move.  It&#39;s a great way to speed up production, but you have to be careful not to set yourself up for destruction...which you have done!  Nice job!\n\tLaurie_Menke: Oops!  Not sure why that posted twice...\n\n14) Laurie_Menke: Discover Y1 Laurie_menke B2 Blue\n\tLaurie_Menke: LOL!  I don&#39;t know why I did that that way.  I could have just grown the green the regular way.  ::sigh::\n\tOtts: I realized its much tougher to learn this game when trying to learn other pyramid games at the same time.  Since they all have different trade mechanisms, I&#39;ve had a little trouble connecting all the pips...er, dots, but I think I&#39;m there now.  The thing that messed me up was thinking that when you trade, if your size ship is not available, you just take the next size up.  Well, that&#39;s not the case, so then I was thinking that I was frozen out of yellow ships, and even said so yesterday.  However, I just realized that I could swap my G3 for a Y3.  Gotta watch this game carefully!!\n\n15) Otts: Sacrifice Y3 Otts\nDiscover G2 Otts Y3 I_hope\nDiscover G2 I_hope Y2 This_works\nMove G2 This_works Laurie_menke\nCatastrophe Laurie_menke G\n\tLaurie_Menke: Yep...there are always more options than appear on the surface.  :o)  And I know what you mean about learning multiple pyramid games at once!\n\n16) Laurie_Menke: Discover Y1 Blue R3 Red\n\n17) Otts: Sacrifice G2 Beagle\nBuild G2 Otts\nBuild G2 Otts\n\tLaurie_Menke: A well-executed move!  And it may pay off.  But it left your homeworld very weak.  We&#39;ll have to see how this pans out.  :o)\n\n18) Laurie_Menke: Move Y1 Red Otts\n\n19) Otts: Trade G2 R2 Otts\n\tOtts: Thanks! I&#39;m not completely sure how the attacking works, so I&#39;m interested to see how this ends up as well!\n\tLaurie_Menke: I&#39;m not actually attacking.  I&#39;m just protecting myself against an attack from you.  ;o)  In general, it takes two moves to attack--one to move into the same star system, and the other to turn an opponent&#39;s equal or smaller sized ship into your own ship (assuming you have accessto red).\n\n20) Laurie_Menke: Discover Y1 Otts G3 Green\n\tLaurie_Menke: I should be nice and warn you that you are in imminent danger.  ;o)\n\tOtts: Hmmm...I sure do appreciate the courtesy...But I honestly can&#39;t figure out how.  There are no little greens you can trade your little yellow for, so I&#39;m thinking I&#39;m safe from catastrophe...Can you use the build technology off my green ships?  In any event, I was planning on switching a G2 to a R2, so that&#39;s what I guess I&#39;m going to roll with...\n\n21) Otts: Move R2 Otts Green\n\tLaurie_Menke: Ah, you are right...no little greens.  ::sigh::  And now i have to retreat.  ::double sigh::  You are doing very well!\n\n22) Laurie_Menke: Discover Y1 Green G2 G2\n\n23) Otts: Trade G2 Y2 Otts\n\n24) Laurie_Menke: Move Y1 G2 Laurie_menke\n\n25) Otts: Sacrifice Y2 Otts\nDiscover R2 Green G2 Sativa\nMove R2 Sativa Laurie_menke\n\n26) Laurie_Menke: Discover Y1 Laurie_menke G2 Ack\n\n27) Otts: Attack Y1 Laurie_menke\n\n\tOtts: Well thanky!  I&#39;m thinking I may have gotten lucky while your guard was down playing a newbie, but I&#39;ll take the compliment!  I do believe a rematch be a fair proposition!\n\nHomeworlds Online (SDG# 25447)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.26, Ended: 2014.3.25\nParticipants: radynski (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) radynski: Homeworld G1 B3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) radynski: Build Y1 Radynski\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) radynski: Trade Y1 G1 Radynski\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) radynski: Build Y1 Radynski\n\n9) SilentTitan: Trade Y1 R1 Silenttitan\n\n10) radynski: Trade Y1 R1 Radynski\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) radynski: Build R2 Radynski\n\n13) SilentTitan: Discover R1 Silenttitan B3 Sol\n\n14) radynski: Build Y1 Radynski\n\tradynski: Shouldn&#39;t sol be a y2?  :)\n\n15) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: :)\n\n16) radynski: Build G2 Radynski\n\n17) SilentTitan: Build G2 Silenttitan\n\n18) radynski: Sacrifice Y3 Radynski\nDiscover G1 Radynski B2 George\nMove G1 George Sol\nMove G1 Sol Silenttitan\nCatastrophe Silenttitan Green\n\tradynski: I have no idea whether or not this is a good idea, but I&#39;m going to try it.\n\n19) SilentTitan: Trade R2 G2 Silenttitan\n\n20) radynski: Build R2 Radynski\n\n21) SilentTitan: Build G1 Silenttitan\n\n22) radynski: Discover R2 Radynski R2 Beetle\n\n23) SilentTitan: Sacrifice G1 Silenttitan\nBuild R3 Sol\n\n24) radynski: Build R3 Radynski\n\n25) SilentTitan: Trade R1 Y1 Sol\n\n26) radynski: Trade R3 Y3 Radynski\n\n27) SilentTitan: Build Y2 Silenttitan\n\n28) radynski: Move Y1 Radynski Beetle\n\n29) SilentTitan: Trade Y1 G1 Sol\n\n30) radynski: Build Y1 Radynski\n\n31) SilentTitan: Build G1 Sol\n\n32) radynski: Sacrifice G2 Radynski\nBuild Y2 Beetle\nBuild Y2 Radynski\n\n33) SilentTitan: Move Y1 Silenttitan Sol\n\n34) radynski: Sacrifice Y1 Radynski\nDiscover R2 Beetle G3 Lush\n\n35) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\n\n36) radynski: Move Y2 Beetle Lush\n\n37) SilentTitan: Trade Y2 G2 Silenttitan\n\n38) radynski: Trade Y2 G2 Radynski\n\n39) SilentTitan: Discover Y1 Sol B2 Soul\n\n40) radynski: Trade R1 B1 Radynski\n\n41) SilentTitan: Move G1 Sol Soul\n\n42) radynski: Move G2 Radynski Beetle\n\n43) SilentTitan: Trade Y3 G3 Silenttitan\n\n44) radynski: Build R1 Lush\n\n45) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Sol\nBuild G3 Soul\nBuild G3 Silenttitan\n\n46) radynski: Build R1 Lush\n\n47) SilentTitan: Trade G3 B3 Soul\n\n48) radynski: Move R1 Lush Silenttitan\n\n49) SilentTitan: Sacrifice B3 Soul\nTrade Y1 B1 Soul\nTrade G2 Y2 Sol\nTrade G2 B2 Silenttitan\n\n50) radynski: Sacrifice B1 Radynski\nTrade Y1 B1 Beetle\n\n51) SilentTitan: Attack R1 Silenttitan South\n\n52) radynski: Sacrifice Y2 Lush\nMove R2 Lush Silenttitan\nMove R1 Lush Silenttitan\nCatastrophe Silenttitan Red\n\n53) SilentTitan: Move R3 Sol Beetle\n\n54) radynski: Sacrifice G2 Beetle\nBuild R1 Radynski\nBuild Y1 Radynski\n\n55) SilentTitan: Build B1 Soul\n\n56) radynski: Move R2 Radynski Soul\n\n57) SilentTitan: Sacrifice Y2 Sol\nMove B1 Soul Radynski\nMove B1 Soul Radynski\n\n58) radynski: Attack G1 Soul\n\n59) SilentTitan: Build B3 Radynski\nCatastrophe Radynski Blue\n\n60) radynski: Build G2 Soul\n\n61) SilentTitan: Build G2 Silenttitan\n\n62) radynski: Trade G1 B1 Soul\n\n63) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y1 G1 Sol\nTrade R3 Y3 Beetle\n\n64) radynski: Move Y3 Radynski Silenttitan\n\n65) SilentTitan: Sacrifice Y3 Beetle\nMove G1 Sol Radynski\nMove G1 Sol Radynski\nMove G2 Silenttitan Radynski\nCatastrophe Radynski Green\n\n\tradynski: You may blow up my home, but you&#39;ve lost yours in the process!  Ha ha!\r\n\r\nYou may win by the rules of the game, but the moral victory shall be mine!\r\n\r\nGood game.  ;-)\n\tSilentTitan: Actually a phenomenol game.  You are a very good player.  Definitely a cut above the norm.\n\tSilentTitan: Actually a phenomenol game.  You are a very good player.  Definitely a cut above the norm.\n\nHomeworlds Online (SDG# 25428)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.27, Ended: 2014.3.6\nParticipants: wil (S), radynski (N)\nWinner: wil\n\n1) radynski: Homeworld G1 B2 Y3\n\n2) wil: Homeworld B3 G1 G3 *\n\n3) radynski: Build Y1 Radynski\n\n4) wil: Build G1 Wil\n\n5) radynski: Trade Y1 R1 Radynski\n\n6) wil: Trade G3 Y3 Wil\n\n7) radynski: Build Y1 Radynski\n\n8) wil: Build G2 Wil\n\n9) radynski: Discover Y1 Radynski B3 George\n\n10) wil: Trade G2 R2 Wil\n\n11) radynski: Build R1 Radynski\n\n12) wil: Build G2 Wil\n\n13) radynski: Discover Y1 George R1 Banks\n\n14) wil: Build R2 Wil\n\twil: shaping up to be one strange game....\r\n\n\n15) radynski: Build R2 Radynski\n\n16) wil: Build R3 Wil\n\tradynski: this is just not going well\n\n17) radynski: Sacrifice Y3 Radynski\nDiscover R2 Radynski B3 George\nDiscover R2 George B2 Georgy\nMove R2 Georgy Wil\nCatastrophe Wil Red\n\n18) wil: Discover G2 Wil Y2 Y2\n\n19) radynski: Build R2 Radynski\n\n20) wil: Build G2 Y2\n\n21) radynski: Trade R2 G2 Radynski\n\n22) wil: Build G3 Wil\n\n23) radynski: Build G3 Radynski\n\n24) wil: Sacrifice Y3 Wil\nDiscover G2 Y2 Y3 Y3\nMove G2 Y2 Y3\nMove G2 Y3 Radynski\nCatastrophe Radynski G\n\twil: It is all about experimentation in learning this game...  lots of strategy with few moving parts...\n\n\twil: it just got worse...\n\tradynski: yeah, I knew I was screwed like 10 turns ago, but was hoping you would just screw up.  :)\r\nGood game.\n\twil: that is always the potentiall....a couple of reboots and this game can turn on the dime.\n\nHomeworlds Online (SDG# 25426)\nVariants: &quot;Unrated&quot;\nStarted: 2014.2.28, Ended: 2014.3.13\nParticipants: wil (S), qwertyu63 (N)\nWinner: wil\n\n1) qwertyu63: Homeworld B1 Y2 G3\n\n2) wil: Homeworld G3 B1 B3 *\n\n3) qwertyu63: Build G1 Qwertyu63\n\n4) wil: Build B1 Wil\n\n5) qwertyu63: Trade G1 Y1 Qwertyu63\n\n6) wil: Trade B3 Y3 Wil\n\n7) qwertyu63: Build Y1 Qwertyu63\n\n8) wil: Build B2 Wil\n\n\twil: Hellooooooo\n\nHomeworlds Online (SDG# 25475)\nVariants: &quot;Hard time&quot;\nStarted: 2014.2.28, Ended: 2014.3.6\nParticipants: ausmuh (S), Remneb (N)\nWinner: ausmuh\n\n1) Remneb: Homeworld B3 R2 G3\n\n2) ausmuh: Homeworld G3 B1 B3 *\n\n3) Remneb: Build G1 Remneb\n\tausmuh: Greetings and Have fun!\n\tRemneb: Have a good game too !\n\n4) ausmuh: Build B1 Ausmuh\n\n5) Remneb: Build G1 Remneb\n\n6) ausmuh: Trade B3 Y3 Ausmuh\n\n7) Remneb: Trade G1 B1 Remneb\n\n8) ausmuh: Build B2 Ausmuh\n\n9) Remneb: Trade G1 Y1 Remneb\n\n10) ausmuh: Discover B1 Ausmuh G2 Gwar\n\n11) Remneb: Discover B1 Remneb Y1 Trek\n\n12) ausmuh: Build B2 Gwar\n\n13) Remneb: Build G1 Remneb\n\n14) ausmuh: Trade B2 Y2 Gwar\n\n15) Remneb: Sacrifice G1 Remneb\nBuild B2 Trek\n\n16) ausmuh: Build B2 Gwar\n\n17) Remneb: Trade B2 R2 Trek\n\n18) ausmuh: Trade B2 R2 Gwar\n\n19) Remneb: Build G1 Remneb\n\n20) ausmuh: Build B2 Gwar\n\n21) Remneb: Build G1 Remneb\n\n22) ausmuh: Discover B2 Gwar G1 Slayer\n\n23) Remneb: Move G1 Remneb Trek\n\n24) ausmuh: Trade Y3 G3 Ausmuh\n\n25) Remneb: Sacrifice G3 Remneb\nBuild G2 Trek\nBuild G2 Trek\nBuild G3 Remneb\n\n26) ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Gwar\nBuild B3 Slayer\nBuild B3 Ausmuh\n\tausmuh: Oops,  color blind today -_-\n\n27) Remneb: Trade G2 Y2 Trek\n\n28) ausmuh: Sacrifice B2 Gwar\nTrade B3 G3 Slayer\nTrade B3 Y3 Ausmuh\n\n29) Remneb: Build B2 Trek\n\n30) ausmuh: Build B3 Slayer\n\n31) Remneb: Discover G2 Trek Y2 Moon\n\n32) ausmuh: Sacrifice G3 Slayer\nBuild Y1 Ausmuh\nBuild B3 Gwar\nBuild Y3 Gwar\n\n33) Remneb: Sacrifice G3 Remneb\nBuild G2 Moon\nBuild G3 Moon\nBuild Y3 Remneb\n\n34) ausmuh: Build R1 Gwar\n\n35) Remneb: Build G3 Remneb\n\n36) ausmuh: Sacrifice Y2 Gwar\nMove B3 Gwar Trek\nMove R1 Gwar Trek\n\n37) Remneb: Sacrifice Y2 Trek\nMove R2 Trek Moon\nMove B2 Trek Moon\n\n38) ausmuh: Sacrifice R2 Gwar\nAttack B1N Trek\nAttack G1N Trek\n\n39) Remneb: Sacrifice Y3 Remneb\nMove G2 Moon Ausmuh\nMove G2 Moon Ausmuh\nMove G3 Moon Ausmuh\nCatastrophe Ausmuh G\n\n40) ausmuh: Sacrifice B2 Slayer\nTrade B3 R3 Slayer\nTrade B2 R2 Ausmuh\n\n41) Remneb: Build Y2 Remneb\n\n42) ausmuh: Sacrifice Y3 Gwar\nMove R2 Ausmuh Remneb\nMove R3 Slayer Remneb\nMove R1 Trek Remneb\nCatastrophe Remneb Red\n\n43) Remneb: Move G3 Remneb Ausmuh\n\n44) ausmuh: Sacrifice Y3 Ausmuh\nMove B3 Trek Remneb\nMove B1 Trek Remneb\nMove B1 Gwar Remneb\nCatastrophe Remneb Blue\n\n\tausmuh: Good game,  thanks again!\n\tRemneb: Thanks for the game !\n\nHomeworlds Online (SDG# 25474)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.1, Ended: 2014.4.17\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld B2 R1 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) wil: Build G1 Wil\n\twil: I got overloaded and ddin&#39;t get back..sorry\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 Y1 Wil\n\tSilentTitan: Not a problem\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 Wil\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) wil: Trade G1 R1 Wil\n\n10) SilentTitan: Build Y1 Silenttitan\n\twil: Looks like BC has TS in a predicament...He&#39;s not going to hard time out his he?\n\tSilentTitan: That happens occasionally. That&#39;s how I got to #1\n\tSilentTitan: That happens occasionally. That&#39;s how I got to #1\n\n11) wil: Build Y2 Wil\n\twil: I recall you dancing on top there for a bit!  But didn&#39;t it happen because TS missed a challenge and dropped to 6?\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n13) wil: Trade Y1 B1 Wil\n\n14) SilentTitan: Build Y1 Sol\n\n15) wil: Build Y2 Wil\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\tSilentTitan: Yes. That is exactly correct.  However, the underlying cause is probably the same.  Real life got busy.\n\n17) wil: Discover Y2 Wil G3 G3\n\n18) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover Y2 Sol R3 Soul\n\twil: nice move\n\n19) wil: Build B1 Wil\n\n20) SilentTitan: Trade Y3 G3 Silenttitan\n\n21) wil: Move B1 Wil G3\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Soul\nBuild Y3 Silenttitan\n\n23) wil: Discover R1 Wil G3 Gee3\n\n24) SilentTitan: Discover Y1 Sol R3 Sole\n\n25) wil: Build B1 Wil\n\n26) SilentTitan: Trade Y3 B3 Silenttitan\n\n27) wil: B Y3 Wil\n\n28) SilentTitan: Sacrifice Y3 Soul\nMove Y2 Soul Wil\nMove Y1 Sole Wil\nDiscover B3 Silenttitan G1 Tic\nCatastrophe Wil Yellow\n\n29) wil: B Y1 G3\n\n30) SilentTitan: Build Y2 Silenttitan\n\n31) wil: B B2 G3\n\n32) SilentTitan: Sacrifice Y2 Silenttitan\nMove B3 Tic G3\nMove B3 G3 Wil\nCatastrophe Wil Blue\n\n33) wil: S Y1 G3\nM R1 Gee3 Sol\n\n34) SilentTitan: Sacrifice Y1 Sol\nDiscover Y1 Sol G3 Soul\n\n35) wil: B R1 Sol\n\n36) SilentTitan: Build G1 Silenttitan\n\n37) wil: Build Y1 G3\n\tSilentTitan: I&#39;ve forgotten what I was doing here..\r\n\n\n38) SilentTitan: Build G2 Silenttitan\n\n39) wil: Move B1 G3 Sol\n\n40) SilentTitan: Build Y1 Silenttitan\n\n41) wil: Sacrifice B2 G3\nTrade Y1 B1 G3\nTrade G3 B3 Wil\n\n42) SilentTitan: Trade G2 R2 Silenttitan\n\n43) wil: Sacrifice Y2 G3\nMove R1 Sol Silenttitan\nMove R1 Sol Silenttitan\nCatastrophe Silenttitan R\n\n44) SilentTitan: Build G2 Silenttitan\n\n45) wil: Trade B1 R1 Sol\n\n46) SilentTitan: Trade G2 R2 Silenttitan\n\twil: you just teasin?\n\tSilentTitan: Sorry fell asleep actually.\n\n47) wil: T B1 Y1 G3\n\n48) SilentTitan: Build Y2 Silenttitan\n\n49) wil: B Y2 G3\n\n50) SilentTitan: Trade Y3 R3 Silenttitan\n\n51) wil: T B3 G3 Wil\n\n52) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Silenttitan Wil\nMove R2 Silenttitan Wil\n\n\twil: Thanx for the game\n\nHomeworlds Online (SDG# 25480)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.2, Ended: 2014.3.4\nParticipants: goulo (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3 Teeteetee\n\n2) goulo: Homeworld R1 B3 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\tTeeTeeTee: Thanks: you too!\n\n5) TeeTeeTee: Trade G1 B1 Teeteetee\n\n6) goulo: Build G1 Goulo\n\n7) TeeTeeTee: Build B1 Teeteetee\n\n8) goulo: Trade G3 B3 Goulo\n\n9) TeeTeeTee: Discover B1 Teeteetee G3 Pauli\n\n10) goulo: Trade G1 Y1 Goulo\n\n11) TeeTeeTee: Build B2 Pauli\n\n12) goulo: Build B2 Goulo\n\n13) TeeTeeTee: Build B2 Pauli\n\n14) goulo: Trade B2 R2 Goulo\n\n15) TeeTeeTee: Trade B2 Y2 Pauli\n\n16) goulo: Build Y1 Goulo\n\n17) TeeTeeTee: Build B2 Teeteetee\n\n18) goulo: Discover R2 Goulo G2 Smeraldo\n\n19) TeeTeeTee: Discover B1 Pauli G2 Bohr\n\n20) goulo: Move Y1 Goulo Smeraldo\n\n21) TeeTeeTee: Build B2 Bohr\n\n22) goulo: Discover R2 Smeraldo B3 Safirego\n\n23) TeeTeeTee: Trade B1 R1 Teeteetee\n\n24) goulo: Build G1 Goulo\n\n25) TeeTeeTee: Build B1 Bohr\n\n26) goulo: Move G1 Goulo Smeraldo\n\n27) TeeTeeTee: Sacrifice Y2 Pauli\nMove B1 Bohr Goulo\nMove B1 Bohr Goulo\nCatastrophe Goulo Blue\n\n\tgoulo: thanks for the game\n\tTeeTeeTee: Thanks again!\n\nHomeworlds Online (SDG# 25440)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.2, Ended: 2014.3.15\nParticipants: wil (S), Marmalade (N)\nWinner: wil\n\n1) Marmalade: Homeworld G1 Y2 B3\n\twil: sorry I missed that last offer...\n\n2) wil: Homeworld B3 G1 G3 *\n\n3) Marmalade: Build B1 Marmalade\n\n4) wil: Build G1 Wil\n\n5) Marmalade: Build B1 Marmalade\n\n6) wil: Trade G3 Y3 Wil\n\n7) Marmalade: Discover B1 Marmalade G3 Foop\n\n8) wil: Build G2 Wil\n\n9) Marmalade: Build B1 Foop\n\n10) wil: Trade G2 B2 Wil\n\n11) Marmalade: Build B2 Foop\n\n12) wil: Build B2 Wil\n\n13) Marmalade: Trade B2 Y2 Foop\n\n14) wil: Discover B2 Wil G2 G2\n\n15) Marmalade: Sacrifice Y2 Foop\nMove B1 Foop G2\nMove B1 G2 Wil\n\n16) wil: Discover B2 Wil Y2 Y2\n\tMarmalade: Let&#39;s try this :P\r\n\n\twil: that worx well..\n\n17) Marmalade: Build B2 Wil\n\n18) wil: Build B3 G2\n\n\nHomeworlds Online (SDG# 25451)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.6, Ended: 2014.3.14\nParticipants: fogus (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) fogus: Homeworld G1 B3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) fogus: Build Y1 Fogus\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) fogus: Trade Y1 R1 Fogus\n\n7) SilentTitan: Trade Y1 R1 Silenttitan\n\n8) fogus: Build R2 Fogus\n\n9) SilentTitan: Build R2 Silenttitan\n\n10) fogus: Sacrifice Y3 Fogus\nDiscover R1 Fogus Y2 Ping\nDiscover R1 Ping Y3 Pong\nMove R1 Pong Silenttitan\nCatastrophe Silenttitan R\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) fogus: Build R1 Fogus\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) fogus: Trade R2 G2 Fogus\n\n15) SilentTitan: Trade G1 Y1 Silenttitan\n\n16) fogus: Build R1 Fogus\n\n17) SilentTitan: Trade Y1 R1 Silenttitan\n\n18) fogus: Trade R1 Y1 Fogus\n\n19) SilentTitan: Trade G1 Y1 Silenttitan\n\n20) fogus: Build Y1 Fogus\n\n21) SilentTitan: Build Y2 Silenttitan\n\n22) fogus: Discover Y1 Fogus G2 Mac\n\n23) SilentTitan: Trade Y2 R2 Silenttitan\n\n24) fogus: Build Y2 Mac\n\n25) SilentTitan: Move G3 Silenttitan Fogus\n\n26) fogus: Build Y2 Fogus\n\n27) SilentTitan: Sacrifice R2 Silenttitan\nAttack Y2 Fogus South\nAttack R1 Fogus South\n\n28) fogus: Build G1 Fogus\n\tfogus: Nice!\n\n29) SilentTitan: Attack Y1 Fogus South\nCatastrophe Fogus Green\n\tSilentTitan: Good game.  Thanks for playing.  Defiantly a challenge to figure out the end there.\n\tfogus: Stinks to lose, but that was a pleasure to watch.  :-)  Thanks a ton.\n\n\nHomeworlds Online (SDG# 25499)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.7, Ended: 2014.3.15\nParticipants: ts52 (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B3 Y1 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) ts52: Build G1 Ts52\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) TeeTeeTee: Build Y1 Teeteetee\n\n8) ts52: Build G1 Ts52\n\n9) TeeTeeTee: Build Y2 Teeteetee\n\n10) ts52: Build G1 Gonzo\n\n11) TeeTeeTee: Build G2 Teeteetee\n\n12) ts52: Build G2 Ts52\n\n13) TeeTeeTee: Discover Y1 Teeteetee G3 Feynman\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Feynman\nBuild Y3 Feynman\nBuild Y3 Teeteetee\n\n16) ts52: Move Y2 Ts52 Gonzo\n\n17) TeeTeeTee: Move Y3 Feynman Gonzo\n\n18) ts52: Trade G1 R1 Gonzo\n\n19) TeeTeeTee: Trade Y3 R3 Teeteetee\n\n20) ts52: Sacrifice Y2 Gonzo\nDiscover G1 Gonzo Y3 Bigbird\nMove R1 Gonzo Bigbird\n\n21) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild Y2 Gonzo\nBuild Y3 Teeteetee\n\n22) ts52: Build G1 Bigbird\n\n23) TeeTeeTee: Trade Y3 G3 Gonzo\n\n24) ts52: Build R1 Bigbird\n\n25) TeeTeeTee: Move Y2 Teeteetee Bigbird\n\n26) ts52: Move R1 Bigbird Teeteetee\n\n27) TeeTeeTee: Sacrifice R3 Teeteetee\nAttack R1 Teeteetee\nAttack R1 Bigbird\nAttack G1 Bigbird\n\n28) ts52: Trade G3 R3 Ts52\n\n29) TeeTeeTee: Build Y3 Gonzo\n\n30) ts52: Build R2 Ts52\n\n31) TeeTeeTee: Trade Y3 R3 Gonzo\n\n32) ts52: Sacrifice R2 Ts52\nAttack R1 Bigbird\nAttack G1 Bigbird\n\n33) TeeTeeTee: Sacrifice R3 Gonzo\nAttack R1 Bigbird\nAttack G1 Bigbird\nAttack G1 Bigbird\n\n34) ts52: Build R2 Ts52\n\n35) TeeTeeTee: Build Y3 Feynman\n\n36) ts52: Build G2 Ts52\n\n37) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n38) ts52: Discover R2 Ts52 B2 Grover\n\n39) TeeTeeTee: Move Y3 Feynman Grover\n\n40) ts52: Trade R2 G2 Grover\n\n41) TeeTeeTee: Sacrifice Y2 Gonzo\nMove G3 Gonzo Ts52\nMove Y3 Grover Ts52\n\n42) ts52: Attack G3 Ts52\n\tTeeTeeTee: I think you needed to keep hold of an r2, there...\n\tts52: Hmmm, that is a problem, isn&#39;t it. :/ I don&#39;t think I was winning this one anyway.\n\n43) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack R3 Ts52\n\n44) ts52: Trade G2 R2 Ts52\n\n45) TeeTeeTee: Sacrifice R3 Ts52\nAttack G3 Ts52\nAttack R2 Ts52\nAttack G1 Ts52\n\tTeeTeeTee: Thanks for the game!\n\tts52: Thank you. Well played.\n\n\nHomeworlds Online (SDG# 25503)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.8, Ended: 2014.3.9\nParticipants: ausmuh (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) ausmuh: Homeworld G3 B2 R3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tausmuh: Hello. Thanks for accepting and you have fun too! \n\n4) ausmuh: Build R1 Ausmuh\n\n5) goulo: Build G1 Goulo\n\n\tgoulo: that was unexpectedly short...!\n\nHomeworlds Online (SDG# 25460)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.8, Ended: 2014.3.9\nParticipants: ausmuh (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: thx 4 da game\n\n2) ausmuh: Homeworld G3 Y2 B3\n\n3) wil: Build G1 Wil\n\tausmuh: You too, have fun :)\n\n4) ausmuh: Build B1 Ausmuh\n\twil: Win or lose I always have fun...and when I lose I hopefully get to learn something as well.\n\n5) wil: Trade G1 B1 Wil\n\n\twil: Well now...that wasn&#39;t fun.\n\nHomeworlds Online (SDG# 25509)\nStarted: 2014.3.10, Ended: 2014.4.20\nParticipants: Laurie_Menke (S), Otts (N)\nWinner: Otts\n\n1) Otts: Homeworld Y3 B1 G3\n\n2) Laurie_Menke: Homeworld Y1 B2 G3\n\tLaurie_Menke: OK, let&#39;s see if I can give you a better run for your money this time.  :o)\n\n3) Otts: Build G1 Otts\n\tOtts: :)  I like that B2Y1 homeworld ya got there!  I used it last time and am curious to see the difference with this Y3B1!  Good lucks!!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :o)\n\n5) Otts: Discover G1 Otts Y2 Old_yeller\n\n6) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n7) Otts: Build G1 Otts\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) Otts: Build G2 Old_yeller\n\n10) Laurie_Menke: Discover G1 Laurie_menke Y3 Fuel\n\n11) Otts: Trade G1 B1 Otts\n\n12) Laurie_Menke: Build B2 Laurie_menke\n\n13) Otts: Build B2 Otts\n\n14) Laurie_Menke: Discover B1 Laurie_menke Y3 Useemup\n\n15) Otts: Move B2 Otts Old_yeller\n\n16) Laurie_Menke: Build B3 Laurie_menke\n\n17) Otts: Discover G2 Old_yeller G3 Greendica\n\n18) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\n19) Otts: Move B2 Old_yeller Useemup\n\n20) Laurie_Menke: Discover B1 Useemup Y2 Closer\n\n21) Otts: Build G1 Old_yeller\n\n22) Laurie_Menke: Sacrifice G1 Fuel\nBuild B2 Closer\n\n23) Otts: Move B1 Otts Old_yeller\n\n24) Laurie_Menke: Build Y1 Laurie_menke\n\n25) Otts: Build B3 Old_yeller\n\n26) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove B1 Closer Otts\nMove B2 Closer Otts\n\n27) Otts: Trade B3 Y3 Old_yeller\n\n28) Laurie_Menke: Move B3 Laurie_menke Useemup\n\n29) Otts: Move B2 Useemup Laurie_menke\n\n30) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n31) Otts: Sacrifice G2 Greendica\nBuild B3 Laurie_menke\nBuild B3 Laurie_menke\nCatastrophe Laurie_menke Blue\n\n32) Laurie_Menke: Discover B3 Useemup Y2 Almostthere\n\n33) Otts: Trade G1 R1 Old_yeller\n\tLaurie_Menke: Grrr...should have seen that coming...\n\n34) Laurie_Menke: Move B3 Almostthere Otts\nCatastrophe Otts B\n\n35) Otts: Build Y1 Old_yeller\n\n36) Laurie_Menke: Build R1 Laurie_menke\n\n37) Otts: Move Y1 Old_yeller Otts\n\n38) Laurie_Menke: Discover R1 Laurie_menke B2 Phonebooth\n\n39) Otts: Build Y1 Old_yeller\n\n40) Laurie_Menke: Move R1 Laurie_menke Otts\n\n41) Otts: Sacrifice R1 Old_yeller\nAttack R1 Otts\n\tLaurie_Menke: Oohhh...tricky!  :o)\n\n42) Laurie_Menke: Build G1 Laurie_menke\n\n43) Otts: Build Y2 Otts\n\tLaurie_Menke: Sometimes this game makes me feel very stupid.  :o/  Nice move!\n\n44) Laurie_Menke: Build G1 Laurie_menke\n\tOtts: There is too much to think about here.  I don&#39;t know that I&#39;ll ever reach the point of being ready to play this game in person again because of it.  I am learning though.  I&#39;ve seen the early scramble to get into the 3rd non-red color twice from you now, and Andy did the same to me in person, so I&#39;m finding that to be something to watch out for.  I&#39;m also finding the red power to be almost too powerful.  With the ability to sacrifice one small red for an attack anywhere on the board, I don&#39;t know that I&#39;d ever go as long without getting my hands on one again.  This is one dynamic game!\n\tOtts: ..And I wouldn&#39;t say it should make you feel stupid.  This game has so many options, it almost depends on someone making a mistake, or missing out on noticing someones intentions, to create a crack of opportunity.  Those cracks can be certainly tough to seal, however!  \n\n45) Otts: Move G1 Old_yeller Laurie_menke\nCatastrophe Laurie_menke G\n\tLaurie_Menke: You are very kind...and observant and a quick study!  If you enjoy the game, then don&#39;t give up!  You are very talented!  You keep whooping me soundly, and *I* play Andy all the time.  He makes short order of everyone.  Don&#39;t let that experience sour you.  You&#39;re right that there are tons of options, which is what makes the game fun and interesting...if a bitof a brain burner.  ;o)  And you&#39;re right that it&#39;s hard to recover from goofs, which is what makes it frustrating.  :o/  But you should definitely explore your theory about red.  Most players don&#39;t see it as particularly powerful or necessary early on, but you are better at this than most players.  :o)  Anyway, if it&#39;s more work than fun for you, then absolutely move on to more fun!  I&#39;ve definitely enjoyed the challenge you&#39;ve provided!\n\n\tOtts: Thank you back for the kind words and gracious games!  I&#39;m not soured from getting whipped in person, nor ready to give up on my homeworlds experience just yet!  I&#39;m going go try to teach a friend how to play, but I think I&#39;ll be back for another rematch soon if you&#39;re interested!\n\tLaurie_Menke: Sounds good!  Anytime!  Just ping me on FaceBook so I know you&#39;ve challenged me.  Congrats!  :o)\n\nHomeworlds Online (SDG# 25512)\nStarted: 2014.3.11, Ended: 2014.3.18\nParticipants: Remneb (S), fogus (N)\nWinner: Remneb\n\n1) fogus: Homeworld G1 B3 Y3\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) fogus: Build Y1 Fogus\n\n4) Remneb: Build G1 Remneb\n\n5) fogus: Trade Y1 R1 Fogus\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) fogus: Build Y1 Fogus\n\n8) Remneb: Build G1 Remneb\n\n9) fogus: Trade Y1 G1 Fogus\n\n10) Remneb: Discover G1 Remneb Y3 Zork\n\n11) fogus: Build G2 Fogus\n\n12) Remneb: Build G2 Zork\n\n13) fogus: Discover G1 Fogus Y2 Floop\n\n14) Remneb: Move G2 Zork Floop\n\n15) fogus: Build G2 Floop\n\n16) Remneb: Build G3 Zork\n\n17) fogus: Sacrifice G2 Floop\nBuild R1 Fogus\nBuild R2 Fogus\n\n18) Remneb: Move G3 Zork Remneb\n\n19) fogus: Move R2 Fogus Floop\n\n20) Remneb: Discover G2 Floop Y1 Thor\n\n21) fogus: Build G2 Floop\n\n22) Remneb: Build G3 Thor\n\n23) fogus: Move R2 Floop Zork\n\n24) Remneb: Move G1 Zork Floop\n\n25) fogus: Move R1 Fogus Floop\n\n26) Remneb: Sacrifice G3 Remneb\nBuild Y1 Remneb\nBuild Y2 Remneb\nBuild G3 Remneb\n\n27) fogus: Trade G2 R2 Fogus\n\n28) Remneb: Move G2 Thor Floop\nCatastrophe Floop G\n\n29) fogus: Discover R1 Floop B3 Wonka\n\tfogus: CATASTROPHE AS SIMPLIFYING MECHANISM  :-)\n\tRemneb: You cannot build somewhere else then in your homeworld...for few moves.\n\n30) Remneb: Move G3 Remneb Wonka\n\n31) fogus: Trade R1 G1 Wonka\n\n32) Remneb: Move Y2 Remneb Wonka\n\n33) fogus: Move R2 Zork Remneb\n\n34) Remneb: Attack R2 Remneb\n\n35) fogus: Build Y2 Fogus\n\tfogus: OH MY!  I feel much more comfortable with this game then a month ago, but I still have this huge hole in my planning around attacking. :-O\n\n36) Remneb: Trade G3 R3 Wonka\n\tRemneb: I&#39;m not so familiar with this game either.\n\tfogus: No worries.  We can learn together. :-)\n\n37) fogus: Sacrifice G1 Wonka\nBuild Y2 Fogus\n\n38) Remneb: Move G3 Thor Wonka\n\n39) fogus: Discover Y2 Fogus G2 Leaf\n\n40) Remneb: Move R3 Wonka Leaf\n\n41) fogus: Discover Y2 Leaf G3 Pill\n\n42) Remneb: Build G1 Remneb\n\n43) fogus: Trade R1 G1 Fogus\n\n44) Remneb: Build G2 Wonka\n\n45) fogus: Trade Y2 B2 Fogus\n\tfogus: I feel the resource squeeze! \n\n46) Remneb: Discover G2 Wonka Y2 Argo\n\n47) fogus: Sacrifice B2 Fogus\nTrade R2 G2 Fogus\nTrade G1 R1 Fogus\n\tRemneb: Yes...well my only task for now is to get all the greens that i can.\n\n48) Remneb: Build G1 Argo\n\n49) fogus: Discover G2 Fogus R2 Gnome\n\n50) Remneb: Move R2 Remneb Pill\n\n51) fogus: Move Y2 Pill Argo\n\n52) Remneb: Sacrifice R2 Pill\nAttack Y2 Argo\nPass\n\n\tfogus: I stink at this game.  :-(\n\tfogus: Thanks for the game.\n\tRemneb: Ok. Thanks.\n\nHomeworlds Online (SDG# 25403)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.3.15, Ended: 2014.5.21\nParticipants: Grosseteste (S), fogus (N), wil (E)\nWinner: fogus\n\n1) fogus: Homeworld G1 B3 Y3\n\twil: I&#39;ll try to keep up...\n\n2) wil: Homeworld B2 G1 Y3\n\n3) Grosseteste: H B3 Y2 G3\n\n4) fogus: Build Y1 Fogus\n\n5) wil: B Y1 Wil\n\n6) Grosseteste: B G1 Grosseteste\n\n7) fogus: Trade Y1 G1 Fogus\n\n8) wil: D Y1 Wil G3 G3\n\n9) Grosseteste: T G1 R1 Grosseteste\n\n10) fogus: Build Y1 Fogus\n\n11) wil: B Y1 Wil\n\n12) Grosseteste: B R1 Grosseteste\n\n13) fogus: Trade Y1 R1 Fogus\n\n14) wil: T Y1 R1 Wil\n\n15) Grosseteste: Discover R1 Grosseteste G1 Luce\n\n16) fogus: Build G2 Fogus\n\n17) wil: Build R2 Wil\n\n18) Grosseteste: B G2 Grosseteste\n\n19) fogus: Build R2 Fogus\n\n20) wil: M R2 Wil G3\n\n21) Grosseteste: Build R2 Luce\n\n22) fogus: Discover G1 Fogus B2 Grapes\n\n23) wil: B Y1 Wil\n\n24) Grosseteste: T G2 Y2 Grosseteste\n\n25) fogus: Build G2 Grapes\n\n26) wil: T Y1 B1 Wil\n\n27) Grosseteste: B G2 Grosseteste\n\n28) fogus: Move R1 Fogus Grapes\n\n29) wil: B R2 Wil\n\n30) Grosseteste: S G2 Grosseteste\nB R3 Grosseteste\nB R3 Luce\n\n31) fogus: Sacrifice G2 Grapes\nBuild R3 Fogus\nBuild R3 Grapes\n\n32) wil: M R2 G3 Luce\nC Luce R\n\n33) Grosseteste: T R1 B1 Grosseteste\n\n34) fogus: Build Y1 Fogus\n\n35) wil: B B1 Wil\n\n36) Grosseteste: Build G1 Grosseteste\n\n37) fogus: Trade Y1 B1 Fogus\n\n38) wil: M B1 Wil G3\n\n39) Grosseteste: Discover G1 Grosseteste Y1 Luce\n\n40) fogus: Build G2 Grapes\n\n41) wil: B B2 G3\n\n42) Grosseteste: B G2 Luce\n\n43) fogus: Trade G2 B2 Grapes\n\n44) wil: T B1 R1 G3\n\n45) Grosseteste: Discover G1 Luce Y2 Colore\n\n46) fogus: Build Y1 Fogus\n\n47) wil: T R2 G2 Wil\n\n48) wil: B R1 G3\n\n49) fogus: Move Y1 Fogus Grapes\n\n50) wil: B R2 Wil\n\tfogus: So now what?  Are we still trying to attack the left-hand player?  Or is it me vs wil now?\n\twil: Me n you... The issue with online multiplayer...rarely does it actually last...we are now in a binary game.\n\tfogus: Shoot.  Having those extra pyramids hanging and out of play around makes things super interesting... and super-confusing. ;-)\n\tGrosseteste: Sorry guys.\n\n51) fogus: Discover B2 Grapes Y3 Flipper\n\n52) wil: M R1 G3 Luce\n\n53) fogus: Trade R1 B1 Grapes\n\n54) wil: B B3 G3\n\n55) fogus: Sacrifice Y3 Fogus\nMove B1 Grapes Flipper\nMove B2 Flipper Wil\nMove B1 Flipper Wil\nCatastrophe Wil B\n\n56) wil: M B3 G3 Luce\n\n57) fogus: Trade R3 Y3 Fogus\n\n58) wil: A G2S Luce\n\n59) fogus: Sacrifice Y3 Fogus\nMove G2 Fogus Colore\nMove G2 Colore Wil\nMove G1 Grapes Wil\nCatastrophe Wil G\n\n\tfogus: Thank you for the game.\n\twil: I didn&#39;t see that you had two greens!!!  I was working toward insuring you wouldn&#39;t get three and thought you only had one and am now babbling incoherently due to my grevious error!!!   Oh well...yes...good game!  Till next time...give me another chaLlenge whenever...I enjoy getting my butt whipped!\n\twil: I didn&#39;t see that you had two greens!!!  I was working toward insuring you wouldn&#39;t get three and thought you only had one and am now babbling incoherently due to my grevious error!!!   Oh well...yes...good game!  Till next time...give me another chaLlenge whenever...I enjoy getting my butt whipped!\n\tfogus: I was hoping that the cover of the extra pieces would shield me... my strategy was totally, cross my fingers and hope that obfuscation would pan out. :-)\n\nHomeworlds Online (SDG# 25485)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.15, Ended: 2014.4.9\nParticipants: Grosseteste (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld Y2 B1 G3\n\n2) Grosseteste: Homeworld Y3 B1 G3\n\n3) Marmalade: Build G1 Marmalade\n\n4) Grosseteste: B G1 Grosseteste\n\n5) Marmalade: Discover G1 Marmalade B3 Foop\n\n6) Grosseteste: B G1 Grosseteste\n\n7) Marmalade: Build G2 Marmalade\n\n8) Grosseteste: T G1 B1 Grosseteste\n\n9) Marmalade: Build G1 Foop\n\n10) Grosseteste: D G1 Grosseteste Y2 Luce\n\n11) Marmalade: Trade G1 Y1 Foop\n\n12) Grosseteste: B B2 Grosseteste\n\n13) Marmalade: Trade G2 B2 Marmalade\n\n14) Grosseteste: Move B1 Grosseteste Luce\n\n15) Marmalade: Build Y1 Foop\n\n16) Grosseteste: S G3 Grosseteste\nB B2 Luce\nB B3 Luce\nB B3 Grosseteste\n\n17) Marmalade: Discover B2 Marmalade G3 Cloom\n\n18) Grosseteste: D B3 Luce Y3 Hexaemeron\n\n19) Marmalade: Build G1 Marmalade\n\n20) Grosseteste: Sacrifice B2 Luce\nTrade B3 G3 Grosseteste\nTrade B3 R3 Hexaemeron\n\n21) Marmalade: Trade G1 R1 Marmalade\n\n\tGrosseteste: Sorry about that; I was sick over the weekend and apparently miscounted the time left in this one by a couple hours :(\n\nHomeworlds Online (SDG# 25540)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.15, Ended: 2014.4.7\nParticipants: SilentTitan (S), Grosseteste (N)\nWinner: SilentTitan\n\n1) Grosseteste: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Grosseteste: B G1 Grosseteste\n\n6) SilentTitan: Build G2 Silenttitan\n\n7) Grosseteste: D G1 Grosseteste G3 Luce\n\n8) SilentTitan: Trade G2 Y2 Silenttitan\n\n9) Grosseteste: B G2 Grosseteste\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) Grosseteste: T G1 B1 Grosseteste\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) Grosseteste: B B2 Grosseteste\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n\tGrosseteste: Sorry again! I plead illness this time, hopefully I won&#39;t be as flaky should we meet again.\n\tSilentTitan: No problem.  We can meet again anytime you like\n\nHomeworlds Online (SDG# 25506)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.15, Ended: 2014.3.25\nParticipants: Remneb (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) Remneb: Homeworld B3 R1 G3\n\n3) wil: Build G1 Wil\n\n4) Remneb: Build G1 Remneb\n\n5) wil: Trade G1 Y1 Wil\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) wil: Build G1 Wil\n\n8) Remneb: Build G1 Remneb\n\n9) wil: Trade G1 R1 Wil\n\n10) Remneb: Trade G1 R1 Remneb\n\n11) wil: Build R2 Wil\n\n12) Remneb: Build R2 Remneb\n\n13) wil: Discover R1 Wil B3 B3\n\n14) Remneb: Discover R1 Remneb Y2 Op\n\n15) wil: Build R3 Wil\n\n16) Remneb: Discover R1 Op Y3 Rem\n\n17) wil: Trade R2 Y2 Wil\n\n18) Remneb: Build G1 Remneb\n\n19) wil: Move R3 Wil Rem\n\n20) Remneb: Discover R1 Rem Y2 Orb\n\n21) wil: Build G1 Wil\n\n22) Remneb: Discover R2 Remneb Y2 Pod\n\n23) wil: Move Y2 Wil B3\n\n24) Remneb: Discover R1 Orb Y3 Juno\n\n25) wil: M G1 Wil B3\n\n26) Remneb: Discover G1 Remneb Y2 Seth\n\n27) wil: S G3 Wil\nB Y1 B3\nB Y3 Wil\nB R2 Rem\n\n28) Remneb: Sacrifice G1 Seth\nBuild R3 Juno\n\n29) wil: B R3 B3\n\n30) Remneb: Build Y2 Remneb\n\n31) wil: T R3 G3 B3\n\n32) Remneb: Build G1 Remneb\n\n33) wil: B R3 B3\n\n34) Remneb: Move G1 Remneb Pod\n\n35) wil: M G3 B3 Pod\n\n36) Remneb: Move R2 Pod Rem\n\n37) wil: M R2 Rem Pod\n\n38) Remneb: Sacrifice Y2 Remneb\nDiscover R2 Rem G2 Log\nMove G1 Pod Juno\n\n39) wil: M R3 Rem Log\n\n40) Remneb: Sacrifice Y1 Remneb\nDiscover R2 Log Y3 Top\n\n41) wil: Build G1 Pod\n\twil: Stay still will ya?  \n\n42) Remneb: Build G2 Juno\n\n43) wil: S Y2 B3\nM G1 Pod Remneb\nM G3 Pod Remneb\n\n44) Remneb: Sacrifice R2 Top\nAttack G3 Remneb\nAttack G1 Remneb\n\n45) wil: S Y3 Wil\nM R3 Log Remneb\nM G1 B3 Pod\nM G1 Pod Remneb\nC Remneb G\n\n\twil: I gave you three choices...all bad...thanx for the game...I look forward to the next!\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 25542)\nVariants: &quot;Hard time&quot;\nStarted: 2014.3.20, Ended: 2014.4.8\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\tBroccoli_Commander: Hey! Decided to accept your suggestion now that I officially avenged you ;)\n\n2) wil: H B3 Y2 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: B G1 Wil\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) wil: D G1 Wil B1 B1\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: B G1 Wil\n\n9) Broccoli_Commander: Build Y1 Broccoli_commander\n\n10) wil: Build G2 Wil\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce\n\n12) wil: S G3 Wil\nB G2 B1\nB G2 B1\nB G3 Wil\n\n13) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Broccoli_commander\nBuild Y2 Lettuce\n\n14) wil: T G2 Y2 B1\n\n15) Broccoli_Commander: Build Y3 Broccoli_commander\n\n16) wil: T G2 R2 Wil\n\n17) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry\n\n18) wil: B Y3 B1\n\n19) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove Y1 Lettuce B1\nMove Y1 Blueberry B1\nCatastrophe B1 Y\n\n20) wil: D G1 Wil Y1 Y1\n\n21) Broccoli_Commander: Discover Y3 Broccoli_commander G3 Lettuce\n\n22) wil: B G2 Wil\n\n23) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Lettuce\n\n24) wil: T G2 Y2 B1\n\n25) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n26) wil: T G2 B2 Wil\n\n27) Broccoli_Commander: Move Y3 Lettuce B1\n\n28) wil: M Y2 B1 Lettuce\n\n29) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild Y2 Lettuce\nBuild Y3 B1\n\n30) wil: S Y2 Lettuce\nM R2 Wil Y1\nM R2 Y1 Lettuce\n\n31) Broccoli_Commander: Sacrifice R1 Broccoli_commander\nAttack R2 Lettuce\n\n32) wil: Build B1 Wil\n\twil: What was I thinkin?   Obviously I wasn&#39;t\r\n\n\tBroccoli_Commander: Yeah, not your best move \n\n33) Broccoli_Commander: Move Y3 B1 Wil\n\n\twil: Why do I always forget I need a gun?  \n\nHomeworlds Online (SDG# 25516)\nStarted: 2014.3.23, Ended: 2014.4.18\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) ts52: Homeworld R3 B2 G3\n\n3) wil: B G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: T G1 Y1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: B G1 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade G1 R1 Wil\n\n10) ts52: Discover G1 Ts52 B1 Gonzo\n\n11) wil: D R1 Wil Y3 Y3\n\n12) ts52: Trade G1 R1 Gonzo\n\n13) wil: B G1 Wil\n\n14) ts52: Build G1 Ts52\n\n15) wil: B Y1 Wil\n\n16) ts52: Build Y2 Ts52\n\n17) wil: D Y1 Wil G3 G3\n\n18) ts52: Move Y2 Ts52 Gonzo\n\n19) wil: B Y2 G3\n\n20) ts52: Move G1 Ts52 Gonzo\n\n21) wil: D Y1 G3 G2 G2\n\n22) ts52: Build R2 Gonzo\n\n23) wil: S G3 Wil\nB Y2 G2\nB Y3 G3\nB Y3 Wil\n\n\n24) ts52: Move R2 Gonzo Y3\n\n25) wil: M R1 Y3 G2\n\n26) ts52: Build R2 Gonzo\n\n27) wil: Move Y3 G3 Gonzo\n\n28) ts52: Sacrifice Y2 Gonzo\nDiscover R2 Gonzo Y2 Zoe\nMove R1 Gonzo Zoe\n\n29) wil: Build R2 G2\n\n30) ts52: Sacrifice G1 Gonzo\nBuild R3 Y3\n\n31) wil: Sacrifice Y2 G2\nMove R2 G2 Y3\nMove R1 G2 Y3\nCatastrophe Y3 R\n\n32) ts52: Move R2 Zoe G3\n\n33) wil: Trade Y3 G3 Wil\n\n34) ts52: Attack Y2 G3\n\n35) wil: Sacrifice G3 Wil\nBuild Y2 Gonzo\nBuild Y3 Wil\nBuild Y3 G2\n\n36) ts52: Build G1 Ts52\n\n37) wil: Trade Y2 R2 Gonzo\n\n38) ts52: Build Y2 Ts52\n\n39) wil: Move Y3 G2 G3\n\n40) ts52: Move R2 G3 G2\n\n41) wil: D Y1 G2 B1 Bone\n\n42) ts52: Move Y2 Ts52 Bone\n\n43) wil: T Y1 B1 Wil\n\n44) ts52: Build Y1 G3\n\n45) wil: Build B2 Wil\n\n46) ts52: Sacrifice R1 Zoe\nAttack Y1 Bone\n\n47) wil: S B2 Wil\nT Y3 R3 G3\nT Y3 G3 Wil\n\n48) ts52: Sacrifice Y1 G3\nMove Y2 G3 G2\n\n49) wil: T G1 Y1 Wil\n\n50) ts52: Trade Y1 G1 Bone\n\n51) wil: B B2 Wil\n\n52) ts52: Build R1 G2\n\n53) wil: D B2 Wil Y3 Y3\n\n54) ts52: Build G1 Bone\n\n55) wil: S G3 Wil\nB B3 Wil\nB B3 Wil\nB B3 Y3\n\n56) ts52: Discover G1 Bone Y3 Bigbird\n\n57) wil:\nT B3 G3 Wil\n\n58) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Bone\nBuild G3 Ts52\n\n59) wil: T B3 R3 Wil\n\n60) ts52: Move R2 G2 Bigbird\n\n61) wil: M B3 Y3 Bone\n\n62) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Bone\nBuild Y2 G2\n\n63) wil: S R3 Wil\nA G1 Bone\nA Y2 Bone\nA G2 Bone\n\n64) ts52: Sacrifice Y1 Bone\nDiscover G1 Ts52 Y1 Zoe\n\n65) wil: B B3 Bone\n\n66) ts52: Build R1 Bigbird\n\n67) wil: T B3 R3 Bone\n\n68) ts52: Build R2 G2\n\n69) wil: B B3 Bone\n\n70) ts52: Move Y2 G2 Y3\n\twil: I yi captain, the guns are loaded and in place as directed...\n\n71) wil: S Y3 Gonzo\nM B3 Bone Ts52\nM B3 Bone Ts52\nM R3 Bone Ts52\n\n72) ts52: Sacrifice R2 Bigbird\nAttack R3 Ts52\nAttack B3 Ts52\n\n73) wil: S R3 G3\nA R3 Ts52\nA G3 Ts52\nA B3 Ts52\n\tts52: Yeah, I was pretty sure there was no way out of this. Sorry for dragging it out, but I always like to play it to the end. Well played sir. \n\twil: I agree, playing them out, one missed move capitalized on and the tide turns quickly.\n\n74) ts52: Sacrifice G1 Bigbird\nBuild Y3 Ts52\n\n75) wil: S G3 Ts52\nB R2 Ts52\nB R3 Ts52\nB B3 Ts52\nC Ts52 R\nC Ts52 B\n\tts52: I&#39;ve been losing the race to large ships a lot recently. Have to sit down and figure that out. Thanks for the game!\n\twil: I couldn&#39;t let it end with me with seven ships in your homeworld...\n\twil: This game always intrigues...  I had a great game against someone who beats me consistently and lost a game to someone I was teaching for the second time..\n\twil: This game always intrigues...  I had a great game against someone who beats me consistently and lost a game to someone I was teaching for the second time..\n\n\nHomeworlds Online (SDG# 25716)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.14, Ended: 2014.5.17\nParticipants: TwoShort (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) TwoShort: Build G1 Twoshort\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) TwoShort: Build B1 Twoshort\n\n9) Broccoli_Commander: Build Y1 Broccoli_commander\n\n10) TwoShort: Trade G3 Y3 Twoshort\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce\n\n12) TwoShort: Discover B1 Twoshort G2 Grogar\n\n13) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry\n\n14) TwoShort: Build B2 Grogar\n\n15) Broccoli_Commander: Build Y2 Lettuce\n\n16) TwoShort: Trade B2 G2 Grogar\n\n17) Broccoli_Commander: Discover Y1 Lettuce Y2 Cauliflower\n\n18) TwoShort: Sacrifice G2 Grogar\nBuild B2 Grogar\nBuild B2 Twoshort\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Lettuce\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n20) TwoShort: Build B3 Grogar\n\n21) Broccoli_Commander: Trade Y3 R3 Blueberry\n\n22) TwoShort: Sacrifice B2 Twoshort\nTrade B2 R2 Grogar\nTrade B3 Y3 Grogar\n\n23) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\tBroccoli_Commander: heh i fell for it\n\n24) TwoShort: Build B2 Grogar\n\n25) Broccoli_Commander: Build Y3 Broccoli_commander\n\n26) TwoShort: Build B2 Grogar\n\n27) Broccoli_Commander: Trade Y3 R3 Broccoli_commander\n\n28) TwoShort: Trade B2 G2 Grogar\n\n29) Broccoli_Commander: Build Y3 Broccoli_commander\n\n30) TwoShort: Sacrifice G2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\n31) Broccoli_Commander: Move R3 Broccoli_commander Lettuce\n\n32) TwoShort: Build R1 Grogar\n\n33) Broccoli_Commander: Build R1 Lettuce\n\n34) TwoShort: Trade B3 G3 Twoshort\n\n35) Broccoli_Commander: Build G1 Broccoli_commander\n\n36) TwoShort: Build B3 Twoshort\n\n37) Broccoli_Commander: Move G1 Broccoli_commander Blueberry\n\n\tTwoShort: Dammit.  Sorry, life got busy...\n\tBroccoli_Commander: No worries, it&#39;s just a game\n\nHomeworlds Online (SDG# 25580)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.14, Ended: 2014.6.15\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 G2 Y3\n\tBroccoli_Commander: Have a good game dear wil!\r\nAny news from your commented-games project?\n\twil: Lonely at the top?  No challengers yet?  If I don&#39;t win the game I&#39;m on, I am challenging Zoltar next...   and still discussng format...\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build Y1 Wil\n\n5) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n6) wil: B Y1 Wil\n\tBroccoli_Commander: Well TwoShort just challenged me again... And I thought you won the game against silentTitan but now he can win I think.... Ok for the format, I hope it will work out though, the game needs some publicity ;)\n\n7) Broccoli_Commander: Build R1 Broccoli_commander\n\n8) wil: D Y1 Wil G1 G1\n\n9) Broccoli_Commander: Discover R1 Broccoli_commander G3 Lettuce\n\n10) wil: B Y2 Wil\n\n11) Broccoli_Commander: Build R1 Broccoli_commander\n\n12) wil: B Y2 G1\n\n13) Broccoli_Commander: Build R2 Broccoli_commander\n\n14) wil: B Y2 G1\n\n15) Broccoli_Commander: Discover R2 Broccoli_commander Y3 Cauliflower\n\n16) wil: T Y3 G3 Wil\n\n17) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R2 Cauliflower\nBuild R2 Cauliflower\nBuild R3 Broccoli_commander\n\n18) wil: T G3 R3 Wil\n\n19) Broccoli_Commander: Build R3 Lettuce\n\twil: Weird game and me without a gun!\n\n20) wil: B Y3 Wil\n\n21) Broccoli_Commander: Discover R1 Broccoli_commander Y3 Banana\n\n22) wil: D Y2 G1 B3 B3\n\n23) Broccoli_Commander: Move R2 Cauliflower G1\n\n24) wil: S Y1 G1\nM Y2 G1 B3\n\twil: This is a first for me...it will be interesting!  And I don&#39;t know what happened to my Zoltar ladder challenge, it just disapeared...and now the undefeated ttt is gunnin for me\n\n25) Broccoli_Commander: Trade R1 Y1 Broccoli_commander\n\tBroccoli_Commander: We&#39;ll see...\r\nweird for the challenge, but teach the boy how it&#39;s done here ;)\n\n26) wil: B R1 Wil\n\n27) Broccoli_Commander: Move Y1 Broccoli_commander Lettuce\n\n28) wil: M Y3 Wil G1\n\twil: I feel suckered somehow...had three good moves to pick from and couldn&#39;t choose which was better.\n\n29) Broccoli_Commander: Discover R1 Lettuce G1 Pea\n\n30) wil: S R1 Wil\nA R2 G1\n\n31) Broccoli_Commander: Trade R3 G3 Broccoli_commander\n\n32) wil: M Y2 Wil Pea\n\twil: No matter the outcome, this will remain one strange game...\n\n33) Broccoli_Commander: Build G1 Broccoli_commander\n\tBroccoli_Commander: Absolutely :) But I&#39;m afraid (for myself) you will win this one! And deserve it! notwithstanding the strangeness of it all\n\tBroccoli_Commander: (PS: I think you chose the best move 2 turns ago)\n\n34) wil: M Y3 G1 Cauliflower\n\n35) Broccoli_Commander: Build G2 Broccoli_commander\n\n36) wil: T Y2 G2 B3\n\twil: You know darn well I need a significant lead to cover for my mistakes.\n\n37) Broccoli_Commander: Move G2 Broccoli_commander B3\n\n38) wil: S R2 G1\nA G2 B3\nA R1 Pea\n\n39) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n40) wil: B G1 B3\n\n41) Broccoli_Commander: Build B1 Broccoli_commander\n\n42) wil: T G2 R2 B3\n\n43) Broccoli_Commander: Move R2 Cauliflower Broccoli_commander\n\n44) wil: B Y2 Wil\n\n45) Broccoli_Commander: Move B1 Broccoli_commander Lettuce\n\n46) wil: T G1 B1 B3\n\n47) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R1 Lettuce\nBuild R3 Broccoli_commander\nBuild B2 Lettuce\n\n48) wil: M B1 B3 Pea\n\twil: Ah the day when this can be played real time with a chess clock and we can put 10 minutes on each side and enter a game knowing we are going to play a 20 minute game!  Dragging our ships around the starfield...one can dream...\n\n49) Broccoli_Commander: Trade R2 G2 Broccoli_commander\n\n50) wil: B R2 Pea\n\n51) Broccoli_Commander: Trade R1 G1 Lettuce\n\tBroccoli_Commander: Yeah would be nice indeed ;)\n\n52) wil: Trade R1 G1 Pea\n\n53) Broccoli_Commander: Build G3 Broccoli_commander\n\n54) wil: Build G3 B3\n\n55) Broccoli_Commander: Discover G1 Lettuce R1 Tomatoe\n\n56) wil: B R1 B3\n\n57) Broccoli_Commander: Move B2 Lettuce Tomatoe\n\n58) wil: S R1 B3\nA R2 Cauliflower\n\n59) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B2 Tomatoe\nBuild B3 Lettuce\n\n60) wil: M Y3 Cauliflower Tomatoe\n\n61) Broccoli_Commander: Move B3 Lettuce Pea\n\n62) wil: S Y2 Pea\nM G1 Pea Cauliflower\nM R2 Pea Banana\n\n63) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Lettuce\nBuild Y2 Lettuce\n\n64) wil: A R1 Banana\n\n65) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B2 Tomatoe B3\nMove B2 Tomatoe B3\n\n66) wil: S Y2 B3\nM G3 B3 Broccoli_commander\nM G2 B3 Broccoli_commander\nC Broccoli_commander G\n\twil: The universe as we know it is about to go through a dramatic change...\r\n\n\n67) Broccoli_Commander: Build Y2 Lettuce\n\n68) wil: A G1 Tomatoe\n\n69) Broccoli_Commander: Trade B3 G3 Pea\n\n70) wil: S Y1 Wil\nM B1 Pea B3\nC B3 B\n\n71) Broccoli_Commander: Build B1 Lettuce\n\n72) wil: B G2 Tomatoe\n\n73) Broccoli_Commander: Sacrifice Y1 Lettuce\nMove G3 Pea Banana\n\twil: Universe reboot complete... Not to my benefit...\n\n74) wil: S Y2 Wil\nM R1 Banana Broccoli_commander\n\nM R2 Banana Broccoli_commander\n\tBroccoli_Commander: Strange game indeed ;)\n\n75) Broccoli_Commander: Trade R3 G3 Broccoli_commander\n\twil: The variations in this gane are endless...  Ya get going with a plan...it gets subverted and you start another direction...and then... And ... And...\n\n76) wil: M R1 Broccoli_commander Lettuce\n\n77) Broccoli_Commander: Sacrifice R1 Lettuce\nAttack R2 Broccoli_commander\n\n78) wil: S G2 Tomatoe\nB R1 Lettuce\nB R2 Lettuce\nC Lettuce R\n\n79) Broccoli_Commander: Build B2 Broccoli_commander\n\n80) wil: B Y1 Tomatoe\n\n81) Broccoli_Commander: Build Y1 Lettuce\n\tBroccoli_Commander: Welcome to turn #41 stone age!\n\n82) wil: D Y3 Tomatoe B3 B3\n\tBroccoli_Commander: oops forgot to send the command yesterday, sorry\n\n83) Broccoli_Commander: Move B2 Broccoli_commander Banana\n\n84) wil: T Y3 B3 B3\n\n85) Broccoli_Commander: Move B2 Banana Tomatoe\n\n86) wil: S Y1 Tomatoe\nM B3 B3 Tomatoe\n\n87) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B1 Lettuce Tomatoe\nMove B1 Lettuce Tomatoe\nCatastrophe Tomatoe B\n\n88) wil: B R1 Wil\n\n89) Broccoli_Commander: Build Y1 Lettuce\n\n90) wil: B R1 Cauliflower\n\n91) Broccoli_Commander: Build R2 Broccoli_commander\n\twil: A reboot with ne way behind...\n\n92) wil: T R3 Y3 Wil\n\n93) Broccoli_Commander: Move R2 Broccoli_commander Lettuce\n\n94) wil: B R3 Wil\n\n95) Broccoli_Commander: Build Y2 Lettuce\n\n96) wil: D R3 Wil B1 B1\n\n97) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R3 Broccoli_commander\nBuild R3 Lettuce\nBuild B1 Broccoli_commander\n\n98) wil: B Y2 Wil\n\n99) Broccoli_Commander: Move R2 Broccoli_commander Cauliflower\n\n100) wil: T R3 B3 B1\n\n101) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack R2 Cauliflower\nAttack R1 Cauliflower\n\n102) wil: S Y2 Wil\nM B3 B1 Cauliflower\nD G1 Tomatoe B3 B3\n\n103) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B1 Broccoli_commander Cauliflower\nMove B1 Broccoli_commander Cauliflower\n\n104) wil: T B3 G3 Cauliflower\n\n105) Broccoli_Commander: Trade R1 G1 Cauliflower\n\n106) wil: D G3 Cauliflower B1 B1\n\twil: Congrats on the defend... And I see ttt laid in wait!\n\n107) Broccoli_Commander: Build Y2 Lettuce\n\tBroccoli_Commander: Thanks! Was pretty happy how it turned out ;) Yeah ttt gonna be interesting\n\n108) wil: B R1 Wil\n\n109) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove G3 Banana B1\nMove R3 Lettuce B1\n\n110) wil: S G3 B1\nB G2 Cauliflower\nB G2 Cauliflower\nB G3 B3\nC Cauliflower G\n\n111) Broccoli_Commander: Build Y2 Lettuce\n\n112) wil: T R1 G1 Wil\n\n113) Broccoli_Commander: Trade R3 B3 B1\n\n114) wil: T G3 R3 B3\n\n115) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B3 B1 B3\nMove G3 B1 B3\n\n116) wil: Sacrifice R3 B3\nPass\nPass\nPass\n\n117) Broccoli_Commander: Build Y2 Lettuce\n\twil: Well hopefully I am exercising you a little while you run me in circles...\n\n118) wil: B G1 B3\n\n119) Broccoli_Commander: Sacrifice Y2 Lettuce\nDiscover B3 B3 R1 Tomatoe\nMove G3 B3 Tomatoe\n\n120) wil: B Y2 Wil\n\n121) Broccoli_Commander: Discover Y1 Lettuce R2 Cherry\n\n122) wil: T G1 R1 B3\n\tBroccoli_Commander: What a sad destiny for your r3 ship. At least its admiral had the courage to trigger the self-destruction\n\n123) Broccoli_Commander: Sacrifice G3 Tomatoe\nBuild R3 Cauliflower\nBuild R3 Broccoli_commander\nBuild Y2 Cherry\n\n124) wil: S Y2 Wil\nM R1 B3 Cherry\nM R1 Cherry Cauliflower\nC Cauliflower R\n\n125) Broccoli_Commander: Build Y2 Lettuce\n\n126) wil: B R1 Wil\n\n127) Broccoli_Commander: Discover Y2 Lettuce G1 Pea\n\n128) wil: B G2 B3\n\n129) Broccoli_Commander: Build Y2 Pea\n\twil: I lost over 40 moves ago and just keep running around waiting for you to blunder\n\n130) wil: T G2 R2 B3\n\tBroccoli_Commander: And it almost worked, I was not patient enough... \r\nIt can still take a while :D\n\n131) Broccoli_Commander: Move R3 Broccoli_commander Lettuce\n\n132) wil: B G2 Wil\n\n133) Broccoli_Commander: Build Y3 Lettuce\n\twil: All over but the cryin\n\n134) wil: D G2 Wil B1 B1\n\n135) Broccoli_Commander: Move R3 Lettuce B1\n\n136) wil: S G2 B1\nB R2 B3\nB G2 B3\n\n\twil: WHAT??  I was running in circles for a record number of moves...not the way to win!!  hope all is alright on your end.\n\nHomeworlds Online (SDG# 25718)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.14, Ended: 2014.4.16\nParticipants: TeeTeeTee (S), ajo (N)\nWinner: TeeTeeTee\n\n1) ajo: Homeworld R3 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y2 G3\n\n3) ajo: Build G1 Ajo\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) ajo: Trade G3 Y3 Ajo\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) ajo: Build G1 Ajo\n\n8) TeeTeeTee: Build B1 Teeteetee\n\n9) ajo: Discover G1 Ajo Y1 Alpha\n\n10) TeeTeeTee: Discover B1 Teeteetee G3 Paris\n\tajo: Nicely opened!\n\n11) ajo: Build G1 Ajo\n\n12) TeeTeeTee: Build B2 Teeteetee\n\tTeeTeeTee: Thanks!\n\n13) ajo: Build G2 Alpha\n\n14) TeeTeeTee: Build G2 Teeteetee\n\n15) ajo: Discover G2 Alpha B3 Beta\n\tTeeTeeTee: I&#39;d say more, but I feel a little, well, pompous when commenting on a game in-progress. Ask me about the opening later!\n\n16) TeeTeeTee: Build B2 Paris\n\tajo: And I&#39;d say more about what I had expected you to do this last turn instead of &quot;build g2&quot;, but I don&#39;t want to give you ideas. ;D\n\n17) ajo: Build G2 Beta\n\tTeeTeeTee: I&#39;d definitely be interested to know what you had in mind. :P\n\n18) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild G3 Teeteetee\nBuild B3 Paris\n\n19) ajo: Trade G2 Y2 Beta\n\tajo: Well, I think that from this position ( http://superdupergames.org/?page=archive_play&amp;gid=25718&amp;idx=12 ) I would have done &quot;trade b2 r2&quot; to get that fourth color, relieve the blue situation at your homeworld, and threaten my forward development a bit.\n\tajo: Although I guess you&#39;re in a good position now, too. Bother. :)\n\n20) TeeTeeTee: Move G3 Teeteetee Beta\n\n21) ajo: Move Y2 Beta Teeteetee\n\n22) TeeTeeTee: Trade B3 R3 Paris\n\tajo: Innnteresting...\n\n23) ajo: Sacrifice G2 Beta\nBuild Y1 Teeteetee\nBuild Y1 Teeteetee\nCatastrophe Teeteetee Yellow\n\n24) TeeTeeTee: Trade G3 Y3 Teeteetee\n\tajo: wait, this move is strictly better :D\n\tTeeTeeTee: Oi!\n\tTeeTeeTee: That was somewhat rude: I&#39;d already made my move. D:\n\n25) ajo: Build G2 Alpha\n\tTeeTeeTee: It was a strong move, though; I rarely get surprised  like that in this game. Well done\n\n26) TeeTeeTee: Discover B1 Teeteetee Y3 Berlin\n\tajo: We might *both* be getting careless with all these quick moves...\n\n27) ajo: Discover G2 Alpha B3 Gamma\n\n28) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild G2 Beta\nBuild B3 Teeteetee\n\n29) ajo: Build G2 Gamma\n\n30) TeeTeeTee: Trade B3 G3 Teeteetee\n\n31) ajo: Build Y1 Ajo\n\n32) TeeTeeTee: Sacrifice G3 Beta\nBuild G3 Beta\nBuild B3 Teeteetee\nBuild R1 Paris\n\n33) ajo: Move Y1 Ajo Alpha\n\n34) TeeTeeTee: Sacrifice Y3 Teeteetee\nMove B3 Teeteetee Ajo\nMove G3 Beta Teeteetee\nMove G3 Teeteetee Ajo\n\tajo: Yup, I&#39;m in a bad spot.\n\n35) ajo: Build Y1 Ajo\n\n36) TeeTeeTee: Sacrifice R3 Paris\nAttack Y3 Ajo\nAttack Y1 Ajo\nAttack G1 Ajo\n\n37) ajo: Pass\n\n38) TeeTeeTee: Attack G1 Ajo\n\n\tajo: Good game! So what were you going to say about the opening? :)\n\tTeeTeeTee: Thanks for the game! I always prefer the games where people don&#39;t take days to make a single move.\r\n\r\nI think that I was ahead from the start because I had a far stronger opening than you did. I reckon that it&#39;s always the stronger move to choose a small/medium homeworld if your oppenent hasn&#39;t done so already. Also, the colour of the small pyramid in someone&#39;s homeworld is generally the easiest colour to monopolise, so I think you should have grabbed a blue pyramid on your third move - that was your last chance to get a grasp on blue in the game...\r\n\r\nAlso, I stand by &quot;7: ... Build g2 TeeTeeTee&quot;; I think that it gave me a chance to access more greens without risking losing control of the blues, and I wasn&#39;t at risk of a blue catastrophe. I think that a better time for me to get a red ship would have been to trade a g3 for an r3 on my 10th move.\n\tajo: That&#39;s a good point about small blue. You definitely locked me out of blue very effectively. I&#39;ll try monopolizing your small homeworld pyramid&#39;s color next game. ;)  Play again?\n\nHomeworlds Online (SDG# 25726)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.15, Ended: 2014.5.17\nParticipants: mneme (S), Grosseteste (N)\nWinner: mneme\n\n1) Grosseteste: H B2 Y1 G3\n\n2) mneme: Homeworld G2 B3 Y3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) mneme: Build Y1 Mneme\n\n5) Grosseteste: Trade G1 B1 Grosseteste\n\n6) mneme: Build Y1 Mneme\n\n7) Grosseteste: Build G1 Grosseteste\n\n8) mneme: Trade Y1 R1 Mneme\n\n9) Grosseteste: Trade G1 R1 Grosseteste\n\n10) mneme: Trade Y1 B1 Mneme\n\n11) Grosseteste: Build G1 Grosseteste\n\n12) mneme: Build Y1 Mneme\n\n13) Grosseteste: T G1 Y1 Grosseteste\n\n14) mneme: Build Y2 Mneme\n\n15) Grosseteste: Discover Y1 Grosseteste G3 Hexaemeron\n\n16) mneme: Discover Y1 Mneme G1 Emerald\n\n17) Grosseteste: Build Y2 Hexaemeron\n\n18) mneme: Trade Y2 G2 Mneme\n\n\tGrosseteste: Sorry about that.\n\tmneme: so it goes.\n\nHomeworlds Online (SDG# 25607)\nStarted: 2014.4.16, Ended: 2014.5.7\nParticipants: ts52 (S), inundator (N)\nWinner: ts52\n\n1) inundator: Homeworld B2 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) inundator: Build G1 Inundator\n\n4) ts52: Build G1 Ts52\n\n5) inundator: Trade G1 Y1 Inundator\n\tinundator: Wow, there sure are a lot of spectators in this game. Are you famous or something?\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) inundator: Build Y1 Inundator\n\n8) ts52: Build G1 Ts52\n\n9) inundator: Trade Y1 B1 Inundator\n\n10) ts52: T G1 Y1 Ts52\n\n11) inundator: Build Y2 Inundator\n\n12) ts52: Build G1 Ts52\n\n13) inundator: Discover Y1 Inundator B1 Oscar\n\n14) ts52: Move Y1 Ts52 Grover\n\n15) inundator: Build Y2 Inundator\n\n16) ts52: Build Y2 Grover\n\n17) inundator: Trade Y2 R2 Inundator\n\n18) ts52: Trade Y2 R2 Grover\n\n19) inundator: Build Y2 Inundator\n\n20) ts52: Build Y2 Grover\n\n21) inundator: Discover Y2 Inundator G1 Bigbird\n\n22) ts52: Move R2 Grover Oscar\n\n23) inundator: Discover Y1 Oscar G2 Elmo\n\n24) ts52: Move Y1 Grover Oscar\n\tts52: Sorry, just saw your message. I&#39;m not famous, no. Not sure why there are so many spectators.\n\n25) inundator: Build Y3 Elmo\n\n26) ts52: Build Y3 Grover\n\n27) inundator: Sacrifice Y2 Inundator\nMove Y1 Elmo Grover\nMove Y2 Bigbird Grover\nCatastrophe Grover Yellow\n\n\n\n\n\n28) ts52: Discover G1 Ts52 Y3 Bigbird\n\n29) inundator: Trade B1 G1 Inundator\n\n30) ts52: Build G2 Ts52\n\n31) inundator: Sacrifice G3 Inundator\nBuild G2 Inundator\nBuild G3 Inundator\nBuild Y1 Elmo\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y2 Oscar\n\n33) inundator: Discover G1 Inundator B1 Count\n\n34) ts52: Move Y2 Oscar Grover\n\n35) inundator: Move Y1 Elmo Count\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Oscar\nBuild Y2 Grover\n\n37) inundator: Move G3 Inundator Oscar\n\n38) ts52: Sacrifice Y2 Grover\nMove G3 Grover Count\nMove G3 Count Inundator\n\n39) inundator: Sacrifice G3 Oscar\nBuild G3 Inundator\nBuild R1 Inundator\nBuild Y2 Elmo\n\n40) ts52: Sacrifice R2 Oscar\nAttack R2 Inundator\nAttack G3 Inundator\n\n\tinundator: Nice job!\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 25723)\nVariants: &quot;Unrated&quot;\nStarted: 2014.4.18, Ended: 2014.5.7\nParticipants: fogus (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) fogus: Homeworld B3 Y2 G3\n\n3) wil: B G1 Wil\n\n4) fogus: Build G1 Fogus\n\n5) wil: T G1 R1 Wil\n\n6) fogus: Build G1 Fogus\n\n7) wil: B R1 Wil\n\n8) fogus: Trade G1 Y1 Fogus\n\n9) wil: T R1 Y1 Wil\n\n10) fogus: Trade G1 R1 Fogus\n\twil: Thanx for the game and goodluck!  \n\n11) wil: B R2 Wil\n\n12) fogus: Build R2 Fogus\n\n13) wil: D R2 Wil G3 G3\n\n14) fogus: Build G1 Fogus\n\n15) wil: B R2 G3\n\n16) fogus: Build R3 Fogus\n\n17) wil: B R3 Wil\n\n18) fogus: Discover R1 Fogus Y1 Timmy\n\n19) wil: T R1 B1 Wil\n\n20) fogus: Move G3 Fogus Timmy\n\n21) wil: B B1 Wil\n\n22) fogus: Build Y2 Fogus\n\n23) wil: Build Y2 Wil\n\n24) fogus: Discover Y2 Fogus B1 Pickle\n\n25) wil: B Y3 Wil\n\n26) fogus: Trade Y1 G1 Fogus\n\n27) wil: S Y2 Wil\nM Y1 Wil G3\nM B1 Wil G3\n\n28) fogus: Discover Y2 Pickle B2 Goo\n\n29) wil: T R3 Y3 Wil\n\tfogus: OMG I&#39;m finding the 3-player game super-confusing.  :-O\n\tfogus: Not that this one isn&#39;t, but at least I feel like I have some notion of what&#39;s happening. :-)\n\twil: Binary is the best...four player the worst...multiplayer are funky as you are working towards a plan that will make you ship leader once it gets to binary...\n\n30) fogus: Build G1 Timmy\n\n31) wil: D R2 G3 B1 B1\n\n32) fogus: Discover R2 Fogus Y1 Hit\n\n33) wil: S G3 Wil\nB B2 G3\nB B3 G3\nB B3 Wil\n\n34) fogus: Build G2 Fogus\n\n35) wil: S B2 G3\nT B3 Y3 G3\nT B3 G3 Wil\n\n36) fogus: Move Y2 Goo Timmy\n\n37) wil: B G2 Wil\n\n38) fogus: Trade G2 B2 Fogus\n\n39) wil: S G3 Wil\nB Y2 Wil\nB B2 G3\nB B3 Wil\n\n40) fogus: Discover G1 Timmy B3 Nil\n\n41) wil: S Y3 Wil\nM Y2 Wil G3\nM Y2 G3 Timmy\nM Y1 G3 Timmy\nC Timmy Y\n\n42) fogus: Build G2 Nil\n\tfogus: Hrmph.  Missed that one.\n\n43) wil: T B3 G3 Wil\n\n44) fogus: Trade B2 Y2 Fogus\n\n45) wil: S G3 Wil\nB B2 Wil\nB B3 G3\nB R1 B1\n\twil: Yes getting caught unawares... Happens to me all the time...\n\n46) fogus: Move G1 Fogus Hit\n\tfogus: Oh nice.  I never thought about dominating a color via pointed sacrifice.  Nice technique.\n\n47) wil: T B3 Y3 G3\n\twil: As this game gains popularity, more moves and gambits will be named..can&#39;t wait for the day books begin to be written.\n\n48) fogus: Trade R3 G3 Fogus\n\n49) wil: T Y3 G3 Wil\n\n50) fogus: Sacrifice Y2 Fogus\nMove G1 Nil Wil\nMove G2 Nil Wil\nCatastrophe Wil G\n\n51) wil: S B2 G3\nT R1 G1 B1\nT R2 G2 G3\n\tfogus: I doubt they will name this gambit.  Maybe the Fogus Folly? ;-)\n\n52) fogus: Build G2 Hit\n\twil: It is quite the move!\n\tfogus: Whoa!  Nice block on the reds!  That took the wind out of my sails. :-) This is the first really effective use of blue that I&#39;ve seen (I&#39;m usually out of the game much sooner than this)\n\twil: Cornering any economy can give you a big ship advantage....blues you trade like crazy...yellows stagnating the opponents ability to move is devestating...green, no growth...red..no attacks...no defense.  Monopolies are powerful and almost always detrmine the game.  But yeah..unloading small ships back in when someone is drooling for the opportunity...mean...just mean...and DISTRACTING!\n\n\twil: I warned you about my distraction... Now you wanna take that back?  (Hint you and I currently both are guilty of the same very bad practice)\n\twil: Can you see that it is currently checkmate?  We can either end here, and play another, or you can back up and try again,\n\tfogus: I do see it yes.  Too late of course.\n\twil: Ah crap...the undo last move button was gone?  I wonder how long it lasts...\r\n\r\nThis situation is called Bluebird, when you only have one color ship in your homeworld...diversity is good.\n\nHomeworlds Online (SDG# 25745)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.19, Ended: 2014.7.22\nParticipants: ts52 (S), MagicJohn (N)\nWinner: ts52\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\tMagicJohn: have a good game!\n\tts52: Thanks. You too!\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) ts52: Build G1 Ts52\n\n5) MagicJohn: Trade G1 B1 Magicjohn\n\n6) ts52: Trade G1 B1 Ts52\n\n7) MagicJohn: Build B2 Magicjohn\n\n8) ts52: Discover B1 Ts52 G1 Oscar\n\n9) MagicJohn: Discover B2 Magicjohn Y3 Elysian\n\n10) ts52: Build B2 Oscar\n\n11) MagicJohn: Sacrifice G3 Magicjohn\nBuild B2 Elysian\nBuild B3 Magicjohn\nBuild B3 Elysian\n\n12) ts52: Trade B2 Y2 Oscar\n\n13) MagicJohn: Sacrifice B2 Elysian\nTrade B3 G3 Elysian\nTrade B3 G3 Magicjohn\n\n14) ts52: Build B2 Oscar\n\n15) MagicJohn: Trade B2 R2 Elysian\n\n16) ts52: Trade B2 R2 Oscar\n\n17) MagicJohn: Move G3 Elysian Oscar\n\n18) ts52: Discover R2 Oscar Y3 Bigbird\n\n19) MagicJohn: Sacrifice R2 Elysian\nAttack Y2 Oscar\nAttack B1 Oscar\n\n20) ts52: Build G1 Ts52\n\n21) MagicJohn: Trade B1 R1 Oscar\n\n22) ts52: Discover G1 Ts52 Y1 Zoe\n\n23) MagicJohn: Build B1 Magicjohn\n\n24) ts52: Discover G1 Zoe B2 Grover\n\n25) MagicJohn: Discover B1 Magicjohn B3 Missp\n\n26) ts52: Build G1 Grover\n\n27) MagicJohn: Discover B1 Magicjohn Y3 Kermit\n\n28) ts52: Build G2 Ts52\n\n29) MagicJohn: Build G2 Magicjohn\n\n30) ts52: Trade G1 Y1 Grover\n\n31) MagicJohn: Sacrifice G3 Oscar\nBuild B2 Kermit\nBuild B2 Missp\nBuild B3 Kermit\n\n32) ts52: Build G1 Grover\n\n33) MagicJohn: Move G2 Magicjohn Kermit\n\n34) ts52: Move G1 Grover Bigbird\n\n35) MagicJohn: Trade B3 G3 Kermit\n\n36) ts52: Discover Y1 Grover B3 Gonzo\n\n37) MagicJohn: Build G2 Magicjohn\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild R1 Bigbird\n\n39) MagicJohn: Trade B1 Y1 Missp\n\n40) ts52: Trade G3 Y3 Ts52\n\n41) MagicJohn: Move G2 Magicjohn Missp\n\n42) ts52: Build G3 Ts52\n\n43) MagicJohn: Discover G2 Kermit B1 Animal\n\n44) ts52: Move G3 Ts52 Oscar\n\tMagicJohn: My first inclination was to sac a y2 and &quot;discover&quot; a new star from kermit and move from magicjohn to missp. Apparently that&#39;s not legal?\n\tts52: That&#39;s odd. I think it should be legal.\n\n45) MagicJohn: Discover Y2 Oscar R2 Fozzie\n\n46) ts52: Sacrifice R1 Bigbird\nAttack R1 Oscar\n\n47) MagicJohn: Trade B2 R2 Kermit\n\n48) ts52: Move Y1 Gonzo Oscar\n\n49) MagicJohn: Discover B2 Missp R1 Rowlf\n\n50) ts52: Sacrifice G3 Oscar\nBuild G3 Bigbird\nBuild R1 Bigbird\nBuild R3 Oscar\n\n51) MagicJohn: Build R3 Kermit\n\n52) ts52: Move G3 Bigbird Rowlf\n\n53) MagicJohn: Move R3 Kermit Animal\n\n54) ts52: Attack B2 Rowlf\n\n55) MagicJohn: Build B2 Kermit\n\n56) ts52: Move R3 Oscar Missp\n\n57) MagicJohn: Move Y1 Missp Animal\n\n58) ts52: Build R3 Oscar\n\n59) MagicJohn: Move Y2 Fozzie Animal\n\n60) ts52: Attack G2 Missp\n\n61) MagicJohn: Move Y1 Animal Ts52\n\n62) ts52: Sacrifice R1 Bigbird\nAttack Y1 Ts52\n\n63) MagicJohn: Move Y2 Animal Ts52\nCatastrophe Ts52 Y\n\n64) ts52: Move R3 Oscar Ts52\n\n65) MagicJohn: Trade B2 Y2 Kermit\n\n66) ts52: Trade G3 Y3 Rowlf\n\n67) MagicJohn: Build G3 Animal\n\n68) ts52: Sacrifice Y3 Rowlf\nMove G1 Bigbird Magicjohn\nMove G2 Missp Magicjohn\nMove G2 Ts52 Magicjohn\nCatastrophe Magicjohn Green\n\n\nHomeworlds Online (SDG# 25496)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.20, Ended: 2014.4.23\nParticipants: SilentTitan (S), richpee (N)\nWinner: SilentTitan\n\n\trichpee: I&#39;m new here. Interface is confusing. How the hell do I construct a new star, G3/B2?\n\tSilentTitan: So to set up your home world you type &quot;Homeworld b1 r2 g3&quot;. Which sets up a two star Homeworld of b1 and r2 then gives you a green battleship in that Homeworld.  Every other star comes into existence when you use the discover command.\n\tSilentTitan: Keep in mind that you done have to type that exact command you can type Homeworld then whichever star combo you&#39;d like, that is legal. Then the last letter number group is the ship.  Does this help?\n\tSilentTitan: Done = don&#39;t\n\nHomeworlds Online (SDG# 25751)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.20, Ended: 2014.5.5\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: H B2 R1 G3\n\twil: Procedural question, I had a challenge against Zoltar in play.  It was neither accepted or rejected as far as I can see... What happens there?\n\twil: I gueSs if they don&#39;t answer -kll start...but where did you come from outta the blue?  Undefeated in Zemdo or HW... Impressive climb on the ladder...everently no newbie...  \n\tTeeTeeTee: Heh, I&#39;m not sure what to say to that. I&#39;m not sure how your challenge to zoltar was deleted, but as (at the time) all the players above you were inactive or playing ladder games, and as you had asked to play another binary game with me at some point, I thought you&#39;d be fine with accepting a ladder challenge...\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\twil: I am ok, with playing another game...many more as a matter o fact!  I was just hoping to ascertain what went on or at least highlight a hiccup...but let&#39;s have at it!\n\n3) wil: B G1 Wil\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) wil: T G1 R1 Wil\n\n6) TeeTeeTee: Trade G1 R1 Teeteetee\n\n7) wil: B R2 Wil\n\n8) TeeTeeTee: Build R2 Teeteetee\n\n9) wil: T R2 Y2 Wil\n\n10) TeeTeeTee: Trade R1 B1 Teeteetee\n\n11) wil: B Y1 Wil\n\n12) TeeTeeTee: Build B1 Teeteetee\n\n13) wil: D Y1 Wil G3 G3\n\n14) TeeTeeTee: Discover B1 Teeteetee G2 Hull\n\n15) wil: B Y1 Wil\n\n16) TeeTeeTee: Build B2 Hull\n\twil: I did that back asswards.... Lovely day here in DC wherabouts are you on this big blue ball?\n\n17) wil: T Y2 B2 Wil\n\tTeeTeeTee: What did you do back-asswards? I was going to mention, I expected you to move the y2 out instead of the y1.\r\nI&#39;m from lovely sunny London, and today I am going to name my stars after the less well-loved British cities.\n\n18) TeeTeeTee: Trade B2 Y2 Hull\n\n19) wil: M B2 Wil G3\n\n20) TeeTeeTee: Discover B1 Teeteetee G2 Scunthorpe\n\twil: Not moving that y2 was my backasswards move... Sunny London?  You blokes fond of sarcasm too?  How did you get introduced to homeworlds?\n\n21) wil: M B2 G3 Scunthorpe\n\tTeeTeeTee: Erm, I just saw it described on the internet, and it looked interesting. Not played it in person yet, but I may well introduce some people to it in the next few weeks - I&#39;ve got a set, now.\n\n22) TeeTeeTee: Build B2 Scunthorpe\n\twil: Are you a chess player? Quite logical I take it...howdja get so good?  \r\n\r\nLess loved cities?  But appreciated by you?  Are they places I should visit ifn I get across the pond?  Places my English friends would know?\n\n23) wil: B B3 Scunthorpe\nC Scunthorpe B\n\n24) TeeTeeTee: Build B1 Hull\n\twil: I can understand the sentiment.  I mean, I just stopped in to visit scunthorpe and some bloke from hull came over and spoiled the hole thing...\n\n25) wil: B Y1 G3\n\n26) TeeTeeTee: Build Y2 Hull\n\n27) wil: B Y2 Wil\n\n28) TeeTeeTee: Move Y2 Hull G3\n\n29) wil: S G3 Wil\nB Y3 Wil\nB Y3 G3\nB R1 Wil\nC G3 Y\n\n30) TeeTeeTee: Build R2 Teeteetee\n\n31) wil: D Y2 Wil G3 G3\n\n32) TeeTeeTee: Move R2 Teeteetee Hull\n\n33) wil: M R1 Wil G3\n\n34) TeeTeeTee: Discover B1 Hull G3 Milton_keynes\n\n35) wil: T R1 G1 Wil\n\n36) TeeTeeTee: Build B2 Milton_keynes\n\n37) wil: B R1 G3\n\n38) TeeTeeTee: Build B2 Hull\n\n39) wil: D R1 G3 G2 G2\n\n40) TeeTeeTee: Build B3 Milton_keynes\n\n41) wil: B R2 G3\n\n42) TeeTeeTee: Build R3 Hull\n\n43) wil: B R3 G2\n\twil: I think I lost this before I started... Now with no factory or blues it is just me playing around...\n\n44) TeeTeeTee: Build R3 Teeteetee\n\n45) wil: S Y2 G3\nM R1 G3 Hull\nM R2 G3 Hull\nC Hull R\n\n46) TeeTeeTee: Trade B3 R3 Milton_keynes\n\n47) wil: B Y1 Wil\n\n48) TeeTeeTee: Move R3 Teeteetee Hull\n\twil: Treading water in high seas...\n\n49) wil: S Y1 Wil\nD R3 G2 B3 B3\n\n50) TeeTeeTee: Build B3 Milton_keynes\n\n51) wil: T R3 G3 B3\n\n52) TeeTeeTee: Sacrifice Y2 Hull\nMove B3 Milton_keynes Wil\nMove R3 Milton_keynes Wil\n\n\tTeeTeeTee: You needed that r3, there.\n\tTeeTeeTee: Thanks for the game!\n\twil: Thank you!! (For the abuse and the geography lesson)\r\n\r\nFeel free to challenge me anytime.  I do like to try to learn by getting beat. And I like to keep a number of games in play so I keep learning.\n\nHomeworlds Online (SDG# 25741)\nStarted: 2014.4.25, Ended: 2014.5.10\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: H B3 G2 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) wil: B Y1 Wil\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) wil: B Y2 Wil\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) wil: T Y2 R2 Wil\n\n9) ts52: Build G1 Ts52\n\n10) wil: B Y2 Wil\n\n11) ts52: Trade G1 R1 Ts52\n\n12) wil: T Y2 B2 Wil\n\n13) ts52: Build Y2 Kermit\n\n14) wil: T Y1 G1 Wil\n\n15) ts52: Build G1 Ts52\n\twil: I think I blew it in my opening...\n\n16) wil: D B2 Wil G1 G1\n\n17) ts52: Discover G1 Ts52 B3 Grover\n\n18) wil: D G1 Wil Y1 Y1\n\n19) ts52: Build G2 Ts52\n\n20) wil: B Y2 Wil\n\n21) ts52: Trade G2 R2 Ts52\n\n22) wil: B G2 Y1\n\n23) ts52: Move R2 Ts52 Kermit\n\n24) wil: D G2 Y1 R3 R3\n\n25) ts52: Move Y2 Kermit G1\n\n26) wil: S R2 Wil\nA Y2 G1\nP\n\n27) ts52: Move R2 Kermit G1\n\n28) wil: S Y2 Wil\nM Y2 G1 R3\nM B2 G1 R3\n\n29) ts52: Build Y2 Kermit\n\n30) wil: B Y2 Wil\n\n31) ts52: Move Y1 Kermit G1\n\n32) wil: T Y2 R2 Wil\n\n33) ts52: Build R1 G1\n\n34) wil: B R1 Wil\n\n35) ts52: Move R2 G1 Grover\n\n36) wil: M B2 R3 G1\n\n37) ts52: Sacrifice G3 Ts52\nBuild R2 Grover\nBuild R3 Ts52\nBuild R3 G1\n\n38) wil: B G2 R3\n\n39) ts52: Attack B2 G1\n\n40) wil: B G3 Y1\n\n41) ts52: Build G3 Grover\n\n42) wil: S G3 Y1\nB G3 Y1\nB Y2 Wil\nB Y3 R3\n\n43) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B1 G1\nBuild Y3 Kermit\n\n44) wil: T R2 B2 Wil\n\n45) ts52: Sacrifice Y2 Kermit\nMove B1 G1 Wil\nMove B2 G1 Wil\nCatastrophe Wil Blue\n\n46) wil: B R2 Wil\n\twil: Well I guess that is that...\n\n47) ts52: Sacrifice Y3 Kermit\nMove R1 G1 Wil\nMove R2 Grover Wil\nPass\nCatastrophe Wil Red\n\n48) wil: D Y2 Wil B3 B3\n\n49) ts52: Move R3 G1 Wil\n\n\twil: Yeah, -nice\n\tts52: Thanks for the game! \n\twil: Thank you!!  Someday -&#39;ll learn...\n\nHomeworlds Online (SDG# 25750)\nVariants: &quot;Hard time&quot;\nStarted: 2014.4.25, Ended: 2014.4.30\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) SilentTitan: Homeworld Y1 G3 B3\n\n3) wil: B G1 Wil\n\tSilentTitan: Welcome\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) wil: T G1 B1 Wil\n\n\nHomeworlds Online (SDG# 25779)\nVariants: &quot;Hard time&quot;\nStarted: 2014.5.5, Ended: 2014.6.1\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: H B3 G2 R3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: B R1 Wil\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) wil: B R1 Wil\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) wil: T R3 Y3 Wil\n\n9) SilentTitan: Discover G1 Silenttitan R3 Sol\n\n10) wil: B R2 Wil\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: D R2 Wil Y1 Y1\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G2 Sol\nBuild G2 Silenttitan\n\n14) wil: T Y3 G3 Wil\n\n15) SilentTitan: Trade G2 Y2 Silenttitan\n\n16) wil: B R2 Wil\n\n17) SilentTitan: Build G2 Silenttitan\n\n18) wil: D R2 Y1 G3 G3\n\n19) SilentTitan: Build G3 Silenttitan\n\n20) wil: T R2 B2 Wil\n\n21) SilentTitan: Trade G3 B3 Silenttitan\n\n22) wil: B R2 Wil\n\n23) SilentTitan: Build G3 Silenttitan\n\twil: You gonna make this a slow and painful death?\n\tSilentTitan: Obviously, you see something I don&#39;t. Or maybe you&#39;re not as impressed with your playing as I am.\n\n24) wil: B R2 G3\n\n25) SilentTitan: Trade G3 R3 Silenttitan\n\n26) wil: T R1 Y1 Wil\n\n27) SilentTitan: Build G3 Silenttitan\n\n28) wil: T R2 Y2 Wil\n\n29) SilentTitan: Move R3 Silenttitan G3\n\n30) wil: B R1 G3\nC G3 R\n\n31) SilentTitan: Trade G3 Y3 Silenttitan\n\n32) wil: B R1 Wil\n\n33) SilentTitan: Build G3 Silenttitan\n\n34) wil: B R2 Wil\n\n35) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover G1 Sol Y1 Soul\n\n36) wil: S B2 Wil\nT R1 B1 Wil\nT G3 R3 Wil\n\n37) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Soul\nBuild G3 Soul\nBuild G3 Silenttitan\n\n38) wil: D Y1 Wil B1 B1\n\n39) SilentTitan: Trade G3 R3 Silenttitan\n\n40) wil: D B1 Wil Y1 Y1\n\n41) SilentTitan: Sacrifice Y3 Silenttitan\nMove R3 Silenttitan Sol\nMove R3 Sol Soul\nMove R3 Soul Wil\nCatastrophe Wil Red\n\n42) wil: T B1 R1 Y1\n\n43) SilentTitan: Trade G2 R2 Silenttitan\n\n44) wil: B Y2 Wil\n\n45) SilentTitan: Move G3 Soul Wil\n\twil: Hopin I give you more of a run next time!\n\n\nHomeworlds Online (SDG# 25791)\nVariants: &quot;Unrated&quot;\nStarted: 2014.5.17, Ended: 2014.6.9\nParticipants: daselva (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n\n3) fogus: Build G1 Fogus\n\n4) daselva: Build G1 Daselva\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) fogus: Build G1 Fogus\n\n8) daselva: Build G1 Daselva\n\n9) fogus: Discover G1 Fogus Y3 Goo\n\n10) daselva: Trade G1 B1 Daselva\n\n11) fogus: Build G1 Fogus\n\n12) daselva: Trade B1 R1 Daselva\n\n13) fogus: Trade G1 B1 Fogus\n\n14) daselva: Move R1 Daselva Goo\n\n15) fogus: Move G1 Goo Fogus\n\n16) daselva: Build G1 Daselva\n\n17) fogus: Trade B1 R1 Fogus\n\n18) daselva: Move G1 Daselva Goo\n\n19) fogus: Build R2 Fogus\n\n20) daselva: Build R2 Goo\n\n21) fogus: Discover R2 Fogus Y3 Boo\n\n22) daselva: Build G1 Goo\n\n23) fogus: Move G1 Fogus Boo\n\n24) daselva: Build G2 Daselva\n\n25) fogus: Build G2 Boo\n\n26) daselva: Trade G2 Y2 Daselva\n\n27) fogus: Discover G2 Boo B2 Glob\n\n28) daselva: Move R1 Goo Daselva\n\n29) fogus: Build G2 Glob\n\n30) daselva: Sacrifice Y2 Daselva\n\nMove G1 Goo Glob\nMove G1 Goo Glob\nCatastrophe Glob G\n\n\n\n31) fogus: Build R2 Boo\n\n32) daselva: Build G1 Daselva\n\n33) fogus: Build R3 Fogus\n\n34) daselva: Sacrifice G1 Daselva\nBuild R3 Goo\n\tfogus: Bold move! :-)\n\n35) fogus: Trade R3 Y3 Fogus\n\n36) daselva: Discover R1 Daselva G3 R1\n\n37) fogus: Move Y3 Fogus R1\n\n38) daselva: Build R3 R1\n\n39) fogus: Sacrifice R2 Boo\nAttack R3 R1\nAttack R1 R1\n\n40) daselva: Build G1 Daselva\n\n41) fogus: Build R2 Boo\n\n42) daselva: Trade G1 B1 Daselva\n\n43) fogus: Build R3 Boo\n\n\nHomeworlds Online (SDG# 25541)\nVariants: &quot;Hard time&quot;\nStarted: 2014.5.17, Ended: 2014.5.18\nParticipants: AndoDaan (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld G2 Y1 B3\n\n\nHomeworlds Online (SDG# 25839)\nVariants: &quot;Hard time&quot;\nStarted: 2014.5.18, Ended: 2014.6.15\nParticipants: TeeTeeTee (S), Broccoli_Commander (N)\nWinner: TeeTeeTee\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\tBroccoli_Commander: Have a good game\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tTeeTeeTee: And to you too! As you guessed, I am indeed a physicist; I suppose you noticed that I&#39;d named some planets after early 20th-Century physicists in a previous game...\n\n4) TeeTeeTee: Build G1 Teeteetee\n\tBroccoli_Commander: Thanks!\r\nIndeed I did. Are you working in academia?\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) TeeTeeTee: Trade G1 R1 Teeteetee\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) TeeTeeTee: Build R1 Teeteetee\n\n9) Broccoli_Commander: Build Y1 Broccoli_commander\n\n10) TeeTeeTee: Build R2 Teeteetee\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Tomatoe\n\n12) TeeTeeTee: Discover R1 Teeteetee B2 Riemann\n\n13) Broccoli_Commander: Build Y2 Broccoli_commander\n\n14) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild R2 Riemann\nBuild R2 Riemann\nBuild R3 Teeteetee\n\n15) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Cherry\n\n16) TeeTeeTee: Trade R3 G3 Teeteetee\n\n17) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Chili\n\n18) TeeTeeTee: Trade R2 Y2 Riemann\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Cherry\nBuild Y3 Tomatoe\nBuild Y3 Broccoli_commander\n\n20) TeeTeeTee: Discover Y2 Riemann G3 Fourier\n\n21) Broccoli_Commander: Discover Y1 Tomatoe R2 Strawberry\n\n22) TeeTeeTee: Trade R2 G2 Riemann\n\n23) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n24) TeeTeeTee: Build Y2 Fourier\n\n25) Broccoli_Commander: Sacrifice Y1 Strawberry\nMove Y3 Tomatoe Riemann\n\n26) TeeTeeTee: Sacrifice G2 Riemann\nBuild R2 Riemann\nBuild R3 Teeteetee\n\n27) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack R1 Riemann\nAttack R2 Riemann\n\tBroccoli_Commander: Wha-?\r\nThat possibility did not occur to me...\n\n28) TeeTeeTee: Discover R3 Teeteetee B2 Bernoulli\n\n29) Broccoli_Commander: Trade R2 G2 Riemann\n\n30) TeeTeeTee: Trade R1 B1 Teeteetee\n\n31) Broccoli_Commander: Trade Y3 B3 Riemann\n\tTeeTeeTee: I&#39;m sorry to have to put a hold on this game, but I will be away from the internet for several days - I&#39;ll be back on Sunday evening.\n\n32) TeeTeeTee: Sacrifice Y2 Fourier\nDiscover Y2 Fourier G2 Laplace\nMove B1 Teeteetee Laplace\n\tBroccoli_Commander: OK, no problem\r\nI appreciate the notice :)\n\n33) Broccoli_Commander: Build G1 Riemann\n\n34) TeeTeeTee: Build B1 Laplace\n\n35) Broccoli_Commander: Build G1 Riemann\n\n36) TeeTeeTee: Build B3 Laplace\n\n37) Broccoli_Commander: Sacrifice Y2 Cherry\nMove G1 Riemann Teeteetee\nMove G2 Riemann Teeteetee\n\n38) TeeTeeTee: Attack G2 Teeteetee\n\n39) Broccoli_Commander: Build G1 Teeteetee\nCatastrophe Teeteetee G\n\n40) TeeTeeTee: Move B3 Laplace Teeteetee\n\n41) Broccoli_Commander: Build G1 Riemann\n\n42) TeeTeeTee: Build B3 Laplace\n\n\tTeeTeeTee: Ahhh... I thought you&#39;d have played on for a little longer. Thanks for the game!\n\nHomeworlds Online (SDG# 25717)\nVariants: &quot;Hard time&quot;\nStarted: 2014.5.20, Ended: 2014.6.14\nParticipants: wil (S), vanoosbree (N)\nWinner: wil\n\n1) vanoosbree: Homeworld B1 Y2 G3\n\n2) wil: H Y3 G2 B3\n\tvanoosbree: My VERY first game here and just discovering Looney Pyramids etc. Thanks for your patience!\n\n3) vanoosbree: Build G1 Vanoosbree\n\twil: Congrats on selecting one of the finest game systems out there...AND picking my fav game! (Published that is)... So how did you come across them (the pyramids) do you have a set? \n\tvanoosbree: Kotaku Moneysaver linked to a deal on Pink Hijinks, which led me to the Looney Labs site, Fluxx, Looney Pyramids, etc... Got some pyramids coming in the mail!\n\n4) wil: B B1 Wil\n\twil: Very cool!  A physical set not only allows you to play with friends but also setting it up to mirror the computer games allows you to see the situation more clearly and test moves (this interface is lousy but all we got). Are you stateside?  I am near DC\n\n5) vanoosbree: Discover G1 Vanoosbree Y3 Omega_centauri\n\n6) wil: B B1 Wil\n\tvanoosbree: I spent a couple months in DC and am in the San Fran bay area these days. Good gaming community here (wish I had more free time) and my SO is very indulgent ;)\n\twil: I used to live in Carson city, my sister in SF and visited often...wunnerful town...napa sonoma weren&#39;t bad either....Marin, mariposa...memories\n\n7) vanoosbree: Build G1 Vanoosbree\n\twil: I am learning by seeing how I get beat...and then trying to avoid that while using what I learned against others.  This lesson is on not letting another corner/monopolize any one economy (action/color).  I am hoping I will teach it well.\n\n8) wil: D B1 Wil Y1 Y1\n\n9) vanoosbree: Trade G1 R1 Vanoosbree\n\n10) wil: B B2 Wil\n\n11) vanoosbree: Build G1 Vanoosbree\n\n12) wil: T B2 G2 Wil\n\n13) vanoosbree: Build R1 Vanoosbree\n\n14) wil: B B2 Wil\n\n15) vanoosbree: Build R1 Vanoosbree\n\n16) wil: T B2 R2 Wil\n\n17) vanoosbree: Build R2 Vanoosbree\n\n18) wil: B R2 Wil\n\n19) vanoosbree: Trade R1 Y1 Vanoosbree\n\twil: Four of one color in any star system is overpopulated and can cause a catastrophe... A warning...\n\tvanoosbree: I noticed that as soon as I completed my last turn. Thanks for the warning!\n\n20) wil: M R2 Wil Y1\n\n21) vanoosbree: Move R1 Vanoosbree Omega_centauri\n\n22) wil: M R2 Y1 Omega_centauri\n\n23) vanoosbree: Trade R2 B2 Vanoosbree\n\n24) wil: A G1 Omega_centauri\n\n25) vanoosbree: Build B2 Vanoosbree\n\n26) wil: S G2 Wil\nB B2 Wil\nB B3 Y1\n\n27) vanoosbree: Trade G3 R3 Vanoosbree\n\n28) wil: T B3 Y3 Y1\n\n29) vanoosbree: Trade B2 Y2 Vanoosbree\n\n30) wil: A R1 Omega_centauri\n\n31) vanoosbree: Build B2 Vanoosbree\n\n32) wil: Sacrifice Y3 Y1\nM B1 Y1 Omega_centauri\nM B1 Omega_centauri Vanoosbree\nM R1 Omega_centauri Vanoosbree\nC Vanoosbree B\n\n33) vanoosbree: Attack R1 Vanoosbree\n\n34) wil: M R2 Omega_centauri Vanoosbree\nC Vanoosbree R\n\n\twil: I felt safe having three of one color in my homeworld...because you couldn&#39;t get to me.  Anytime anyone trades for a triple three look around, danger is afoot.  Once half you homeworld was gone acess is easier... I sent the small ship in as a tease...and a trojan horse.   I&#39;ll play again whenever you are intereted.\n\nHomeworlds Online (SDG# 25847)\nVariants: &quot;Hard time&quot;\nStarted: 2014.5.23, Ended: 2014.5.26\nParticipants: wil (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B3 Y1 G3\n\n\twil: Sorry about that...  I was cell free for a while...  Challenge agin...anytime.\n\tbhorner: Ah, ok, I will.  :)\n\nHomeworlds Online (SDG# 25874)\nVariants: &quot;Hard time&quot;\nStarted: 2014.5.31, Ended: 2014.7.8\nParticipants: bhorner (S), Grosseteste (N)\nWinner: Grosseteste\n\n1) Grosseteste: H Y2 B1 G3\n\n2) bhorner: Homeworld B3 Y2 G3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) bhorner: Build G1 Bhorner\n\n5) Grosseteste: D G1 Grosseteste B3 Luce\n\n6) bhorner: Discover G1 Bhorner Y1 Y1\n\n7) Grosseteste: Build G1 Luce\n\n8) bhorner: Build G2 Y1\n\n9) Grosseteste: Build G2 Grosseteste\n\n10) bhorner: Discover G1 Y1 Y3 Y3\n\n11) Grosseteste: Trade G2 R2 Grosseteste\n\n12) bhorner: Build G2 Bhorner\n\n13) Grosseteste: Trade G1 Y1 Luce\n\n14) bhorner: Trade G2 R2 Bhorner\n\n15) Grosseteste: Build G1 Luce\n\n16) bhorner: Build R1 Bhorner\n\n17) Grosseteste: Discover G1 Luce Y1 Colore\n\n\nHomeworlds Online (SDG# 25853)\nVariants: &quot;Hard time&quot;\nStarted: 2014.5.31, Ended: 2014.6.26\nParticipants: bhorner (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) bhorner: H B3 Y2 G3\n\twil: \r\nThanx for the game, let us see if I can stay alert!\n\n3) wil: B G1 Wil\n\tbhorner: It&#39;s been quite a while since I played.  I will also try to stay alert!\n\n4) bhorner: Build G1 Bhorner\n\n5) wil: T G1 B1 Wil\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) wil: B B2 Wil\n\n8) bhorner: Build B2 Bhorner\n\n9) wil: D B1 Wil G3 G3\n\n10) bhorner: Discover B2 Bhorner Y1 Y1\n\n11) wil: T B2 R2 Wil\n\n12) bhorner: Trade B1 R1 Bhorner\n\n13) wil: Build R1 Wil\n\n14) bhorner: Build G1 Bhorner\n\n15) wil: Build G1 Wil\n\n16) bhorner: Move G1 Bhorner Y1\n\n17) wil: T G1 Y1 Wil\n\n\twil: hate when that happens\n\tbhorner: Me too...  Sorry about that.  Work got busy, so I wasn&#39;t checking every night...\n\nHomeworlds Online (SDG# 25886)\nVariants: &quot;Hard time&quot;\nStarted: 2014.6.2, Ended: 2014.6.24\nParticipants: wil (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) wil: H Y2 B1 G3\n\tTwoShort: Howdy.  \n\n3) TwoShort: Build G1 Twoshort\n\n4) wil: B G1 Wil\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wil: T G1 B1 Wil\n\n7) TwoShort: Trade Y1 B1 Twoshort\n\n8) wil: B B2 Wil\n\n9) TwoShort: Build B2 Twoshort\n\n10) wil: T B2 R2 Wil\n\n11) TwoShort: Trade B2 Y2 Twoshort\n\n12) wil: B B2 Wil\n\n13) TwoShort: Build B2 Twoshort\n\n14) wil: D B1 Wil G3 G3\n\n15) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\n16) wil: B G1 Wil\n\n17) TwoShort: Build Y1 Twoshort\n\n18) wil: B R1 Wil\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Yolonda\nBuild B3 Yolonda\nBuild B3 Twoshort\n\n20) wil: T R1 Y1 Wil\n\twil: I was thinkin of goin yelloe...but not for that reason....I&#39;ve pulled the same move...it is great..and now that I&#39;ve let the horse outta the barn and you are gigglin of what short shrift you&#39;ve made of me....\n\n21) TwoShort: Trade B2 R2 Yolonda\n\twil: Well I am dominated...and BC just timed out to TTT...  it would be right of me to resign now so you could challenge first place...if you&#39;d rather I did that than fight out this game...and I&#39;ll challenge you again when I reach a position to do so.\n\n22) wil: Build R1 Wil\n\n23) TwoShort: Trade B3 G3 Twoshort\n\n24) wil: Discover G1 Wil Y3 Y3\n\n25) TwoShort: Move B3 Yolonda Y3\n\n26) wil: Discover G1 Y3 R2 R2\n\tTwoShort: As far as resigning or not, I&#39;m not particularly concerned about jumping into the next game fast (I feel a little guilty for timing out my previous game, and I&#39;m still pretty busy).  I&#39;m pretty sure I&#39;m going to win this one, but I still find it interesting to figure out how to turn an advantage into actual victory.  In the past I&#39;ve gotten annoyed at people I thought quit too early, but I&#39;m trying to adopt a more relaxed attitude :)  Don&#39;t feel like you should resign on my account; but also don&#39;t feel you need to keep playing a bad position if you&#39;re not having fun or you&#39;d rather go on to the next game.\n\twil: thanks for that, I enjoy the struggle and watching it play out...and so often in this game one can take advantabe of an opening that occurs and turn the tide instantly with a new universe (an error I  doubt you will present)  Yes it is intriguing how you can &#39;get ahead&#39; significantly but still have to fight to put the pieces in place to end the game.\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Y3\nBuild B3 Twoshort\nBuild R1 Yolonda\n\n28) wil: Move R1 Wil G3\n\n29) TwoShort: Sacrifice B2 Twoshort\nTrade B2 G2 Y3\nTrade R1 Y1 Yolonda\n\twil: the assemblage of massive ships begins...  I just played this very same game (from your side with TS52 and  just finally amassed the numbers required...I can see the future...it is not good.\n\n30) wil: Move Y1 Wil G3\n\twil: m y1 wil g3\n\n31) TwoShort: Sacrifice G2 Y3\nBuild B2 Y3\nBuild Y3 Twoshort\n\twil: ding dong place the move in the wrong box...you&#39;ve got me flustered\r\n\n\n32) wil: Sacrifice G3 Wil\nBuild R1 G3\nBuild R3 Wil\nBuild Y3 G3\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Y3 Wil\nMove B2 Y3 Wil\nDiscover Y1 Yolonda G3 Grogar\n\n34) wil: Move Y3 G3 Yolonda\nCatastrophe Wil B\n\n35) TwoShort: Build Y3 Grogar\n\n36) wil: S R2 Wil\nA R2 Yolonda\nA B1 Yolonda\n\n37) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Wil\nMove Y1 Twoshort Wil\nMove Y2 Twoshort Wil\nCatastrophe Wil Yellow\n\twil: Just whistlin while sending forces to waterloo..\n\tTwoShort: Thanks for the game!\n\twil: very nice...thank you!\n\n\nHomeworlds Online (SDG# 25793)\nStarted: 2014.6.2, Ended: 2014.6.12\nParticipants: Timetech (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tTimetech: Y3 G1 R2\n\tTimetech: what\r\nis\r\nwhy\r\nis\r\nthis not\r\nworking\n\tTimetech: OOOOOOOHHHHHHHHH, sorry.  Its my first time.  I think maybe its actually your turn.\n\tTimetech: homeworld y3 g1 r2\n\tTimetech: nope\r\n\n\tts52: Yes, it&#39;s my turn. \n\n2) Timetech: Homeworld B3 G1 Y3\n\tTimetech: SOrry, I&#39;m so confused.\r\n\n\n3) ts52: Build G1 Ts52\n\tts52: That&#39;s ok, looks like you&#39;re figuring it out. Have you played much homeworlds before?\n\n4) Timetech: Build Y1 Timetech\n\tTimetech: No I have never played before . ...  I&#39;m brand new, any chance of going easy on me?\n\n5) ts52: Trade G1 B1 Ts52\n\tTimetech: Um, I&#39;m having trouble figuring out how to build a different color ship?  Could you perhaps give me a hint?\n\tts52: Sure. You can&#39;t build a color you don&#39;t have in that system. You have to trade a ship you have for another of the same size of a different color.\n\n6) Timetech: Trade Y3 R3 Timetech\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\tTimetech: DEFENSE INITIATED\r\nPROJECT: RED SHIP\n\n8) Timetech: Discover Y1 Timetech R2 Two\n\n9) ts52: Trade B1 R1 Kermit\n\n10) Timetech: Build R1 Timetech\n\n11) ts52: Build G1 Ts52\n\n12) Timetech: Trade R1 Y1 Timetech\n\n13) ts52: Build G1 Ts52\n\n14) Timetech: Build Y2 Timetech\n\n15) ts52: Discover G1 Ts52 B3 Gonzo\n\n16) Timetech: Discover Y1 Timetech R2 Three\n\n17) ts52: Build G2 Gonzo\n\n\nHomeworlds Online (SDG# 25892)\nVariants: &quot;Unrated&quot;\nStarted: 2014.6.4, Ended: 2014.6.6\nParticipants: Timetech (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) Timetech: Homeworld R3 G2 B3\n\n3) fogus: Build G1 Fogus\n\n4) Timetech: Build B1 Timetech\n\n5) fogus: Build G1 Fogus\n\n6) Timetech: Trade B1 Y1 Timetech\n\n7) fogus: Discover G1 Fogus Y3 Ape\n\n8) Timetech: Discover Y1 Timetech R1 A2\n\n9) fogus: Build G1 Ape\n\n10) Timetech: Build B1 Timetech\n\n11) fogus: Build G2 Ape\n\n\nHomeworlds Online (SDG# 25767)\nVariants: &quot;Hard time&quot;\nStarted: 2014.6.13, Ended: 2014.7.6\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld Y3 B1 G3\n\n2) wil: H G2 B1 B3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: B B1 Wil\n\n5) SilentTitan: Trade G3 B3 Silenttitan\n\n6) wil: T B1 Y1 Wil\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: B Y1 Wil\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n12) wil: Build Y1 Wil\n\n13) SilentTitan: Build G2 Silenttitan\n\n14) wil: Build Y2 Wil\n\n15) SilentTitan: Trade B3 Y3 Silenttitan\n\n16) wil: Build Y2 G3\n\n17) SilentTitan: Build G2 Sol\n\n18) wil: Build Y3 G3\n\n19) SilentTitan: Move G1 Sol G3\n\n20) wil: Sacrifice Y2 Wil\nMove Y1 G3 Sol\nMove Y1 Sol Silenttitan\n\n21) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 G3\nBuild G3 G3\nCatastrophe G3 Green\n\n22) wil: Build Y2 Wil\n\n23) SilentTitan: Trade G1 R1 Silenttitan\n\n24) wil: Sacrifice Y2 Wil\nDiscover Y1 Wil G3 G3\nDiscover Y1 G3 G2 G2\n\n25) SilentTitan: Trade Y3 G3 Silenttitan\n\twil: I don&#39;t know exactly what I was thinkin there...\n\tSilentTitan: I&#39;m not either.  I was prepared to move out of Sol in order to drop a y2 into the bank and delay your y3 build another couple of turns.\n\n26) wil: Build Y2 G2\n\tSilentTitan: Heh. But the talkin almost distracted me enough, of course the two hours of sleep may be part of it as well\n\n27) SilentTitan: Attack Y1 Silenttitan S\n\n28) wil: Build B1 Wil\n\n29) SilentTitan: Move Y1 Silenttitan G2\n\n30) wil: Build Y2 Wil\n\n31) SilentTitan: Build Y3 G2\nCatastrophe G2 Yellow\n\n32) wil: Discover B1 Wil Y3 Y3\n\n33) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G1 Sol\nBuild G2 Silenttitan\n\tSilentTitan: I had no idea, yellow in my home world would mess me up so bad.\n\n34) wil: Trade Y1 R1 Wil\n\n35) SilentTitan: Build G3 Silenttitan\n\twil: yellow homeworlds are different....but my opening borders on the ridiculous....but I thought it might fly...\n\tSilentTitan: Oh, yeah I tried that one once. Also tough.\n\n36) wil: Build B2 Wil\n\n37) SilentTitan: Discover G1 Sol Y3 Soul\n\n38) wil: B R1 Wil\n\n39) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Soul\nBuild G3 Soul\nBuild G3 Silenttitan\n\n40) wil: Trade B2 Y2 Wil\n\n\nHomeworlds Online (SDG# 25838)\nVariants: &quot;Hard time&quot;\nStarted: 2014.6.13, Ended: 2014.6.23\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) Marmalade: Homeworld B2 Y3 G3\n\n3) wil: B G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: T G1 B1 Wil\n\n6) Marmalade: Trade G3 B3 Marmalade\n\n7) wil: B G1 Wil\n\n8) Marmalade: Build G1 Marmalade\n\n9) wil: B G2 Wil\n\n10) Marmalade: Build G2 Marmalade\n\n11) wil: Trade G1 Y1 Wil\n\n12) Marmalade: Discover G1 Marmalade Y1 Krom\n\n13) wil: Discover G2 Wil Y3 Y3\n\n14) Marmalade: Sacrifice G1 Marmalade\nBuild G1 Krom\n\n15) wil: Build Y1 Wil\n\n16) Marmalade: Build G1 Marmalade\n\n17) wil: Build Y2 Wil\n\n18) Marmalade: Trade G2 Y2 Marmalade\n\n19) wil: Discover Y2 Wil G3 G3\n\n20) Marmalade: Build G2 Marmalade\n\n21) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 Wil\nBuild G2 Y3\n\n22) Marmalade: Sacrifice G2 Marmalade\nBuild G2 Krom\nBuild G3 Marmalade\n\n23) wil: Move G2 Y3 Krom\nCatastrophe Krom G\n\n24) Marmalade: Discover G1 Marmalade Y1 Phaf\n\n25) wil: Trade Y1 R1 Wil\n\n26) Marmalade: Trade B3 R3 Marmalade\n\n27) wil: Move Y2 G3 Phaf\n\n28) Marmalade: Move R3 Marmalade Phaf\n\n29) wil: Move Y2 Phaf Marmalade\n\n30) Marmalade: Trade G3 R3 Marmalade\n\n31) wil: Sacrifice G2 Y3\nBuild Y1 Marmalade\nBuild B1 Wil\nCatastrophe Marmalade Y\n\n32) Marmalade: Build G1 Phaf\n\tMarmalade: Well, that was silly :) Ah well.\n\n33) wil: Move B1 Wil G3\n\n34) Marmalade: Move R3 Phaf G3\n\n35) wil: Sacrifice Y2 G3\nDiscover B1 G3 G1 G1\nDiscover B1 Wil G3 Gee3\n\n36) Marmalade: Build G2 Phaf\n\n37) wil: Build B2 G1\n\twil: dang big school yard bullies....  all I am doing is trying to take over the universe...  sheesh...\n\n\twil: doomsday machine parts assembled.\n\tMarmalade: Ah yes, you&#39;re quite right.\r\n\n\twil: Thank you for the game, I look forward to playing again...\n\nHomeworlds Online (SDG# 25891)\nStarted: 2014.6.13, Ended: 2014.6.30\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build B2 Wil\n\n8) ts52: Discover B1 Ts52 G2 Oscar\n\n9) wil: Trade B1 Y1 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: Build Y1 Wil\n\n12) ts52: Build G1 Ts52\n\n13) wil: Build Y2 Wil\n\n14) ts52: Discover G1 Ts52 B2 Gonzo\n\n15) wil: Trade Y2 R2 Wil\n\n16) ts52: Trade G3 Y3 Ts52\n\n17) wil: Trade Y1 R1 Wil\n\n18) ts52: Build B1 Oscar\n\n19) wil: Discover R2 Wil Y3 Y3\n\n20) ts52: Trade B1 R1 Oscar\n\n21) wil: Move R2 Y3 Oscar\n\n22) ts52: Build R1 Oscar\n\n23) wil: Attack B1 Oscar\n\n24) ts52: Attack B1 Oscar\n\twil: I almost grew an R2 at home....don&#39;t know which was the better move...\n\n25) wil: Attack B1 Oscar\n\tts52: Hmmm, not sure, might&#39;ve been the better option...\n\n26) ts52: Build R2 Oscar\nCatastrophe Oscar Red\n\twil: I suppose if the circuitous route were to continue...it is always on the table.\n\n27) wil: Build B1 Wil\n\tts52: Meh, I&#39;m not inclined to follow this cycle any farther. Though I suspect this isn&#39;t going to end well for me.\n\n28) ts52: Build G1 Ts52\n\twil: If you were to have chosen to flip it back, Ida taken the other route...as the stalemate is obviously not in my best interest...  (I frankly didn&#39;t see it coming initially)\r\n\n\twil: But yeah, either way it appears to me my game to lose at this point...\n\n29) wil: Build B2 Oscar\n\n30) ts52: Trade G1 R1 Ts52\n\n31) wil: Build B3 Oscar\n\n32) ts52: Build Y1 Ts52\n\n33) wil: Trade B3 Y3 Oscar\n\n34) ts52: Move Y1 Ts52 Gonzo\n\n35) wil: Build B3 Oscar\n\n36) ts52: Build Y2 Gonzo\n\n37) wil: Trade B3 R3 Oscar\n\n38) ts52: Trade Y2 R2 Gonzo\n\n39) wil: Build B3 Oscar\n\n40) ts52: Build Y2 Gonzo\n\n41) wil: Trade B3 Y3 Oscar\n\twil: oh my...that was the faux pas you were waiting for!!\n\tts52: Oh, man. If only I&#39;d caught you in those 44 seconds...\n\n42) ts52: Discover Y2 Gonzo G3 Kermit\n\n43) wil: Build Y2 Wil\n\n44) ts52: Build Y2 Gonzo\n\n45) wil: Build B3 Oscar\n\n46) ts52: Trade Y2 R2 Gonzo\n\n47) wil: S Y2 Wil\nM B3 Oscar Kermit\nM B3 Kermit Gonzo\n\n48) ts52: Sacrifice Y2 Kermit\nDiscover R2 Gonzo G3 Kermit\nMove R2 Gonzo Kermit\n\n49) wil: Build B3 Oscar\n\n50) ts52: Build Y2 Gonzo\n\n51) wil: Sacrifice Y3 Oscar\nMove Y3 Oscar Ts52\nMove B3 Oscar Ts52\nMove B3 Gonzo Ts52\n\twil: I believe the occupation forces are at the border, and enough munitions are at hand for a regime change.\n\n52) ts52: Sacrifice R2 Kermit\nAttack Y3 Ts52\nAttack B3 Ts52\n\twil: \n\n53) wil: Sacrifice R3 Oscar\nAttack Y3 Ts52\nAttack Y3 Ts52\nAttack B3 Ts52\n\n54) ts52: Trade R1 G1 Ts52\n\n55) wil: Sacrifice Y1 Wil\nMove B1 Oscar Ts52\nCatastrophe Ts52 B\n\twil: We come promoting democracy and freedom...\n\n56) ts52: Build R1 Kermit\n\n57) wil: Sacrifice G3 Wil\nBuild Y1 Ts52\nBuild B1 Oscar\nBuild B3 Oscar\nCatastrophe Ts52 Y\n\twil: I suppose converting a blue to an attack ship would have been the other option...now I am just in catastrophe mode and not much will be left of the universe when I finish....and after building that huge flotilla...seems a waste...\n\n\tts52: Yeah, I&#39;ve really got no way out of this.\n\twil: thank you for the game...  I like to keep numerous games going so I can continue to learn...feel free to challenge me anytime...\n\tts52: Sure thing. I owe you one.\n\twil: oh my....\n\nHomeworlds Online (SDG# 25933)\nVariants: &quot;Unrated&quot;\nStarted: 2014.6.19, Ended: 2014.6.21\nParticipants: Timetech (S), Moman1 (N)\nWinner: Timetech\n\n1) Moman1: Homeworld R2 B1 G3\n\tTimetech: the letters have to be lower case\r\n\n\n2) Timetech: Homeworld R1 G2 B3\n\n3) Moman1: Build G1 Moman1\n\n4) Timetech: Build B1 Timetech\n\n5) Moman1: Build G1 Moman1\n\n6) Timetech: Trade B1 Y1 Timetech\n\n7) Moman1: Trade G1 R1 Moman1\n\n8) Timetech: Build B1 Timetech\n\n9) Moman1: Build G1 Moman1\n\n10) Timetech: Trade B1 R1 Timetech\n\n11) Moman1: Build R2 Moman1\n\n12) Timetech: Discover R1 Timetech R3 W2\n\n13) Moman1: Build R2 Moman1\n\n14) Timetech: Build B1 Timetech\nCatastrophe Moman1 R\n\n15) Moman1: Trade G1 Y1 Moman1\n\n16) Timetech: Build B1 Timetech\n\n17) Moman1: Trade G1 R1 Moman1\n\n18) Timetech: Trade B3 R3 Timetech\n\n19) Moman1: Build R2 Moman1\n\n20) Timetech: Build R2 Timetech\n\n21) Moman1: Build Y1 Moman1\n\n22) Timetech: Discover R2 Timetech R3 W3\n\n23) Moman1: Build R2 Moman1\n\n24) Timetech: Build Y2 Timetech\n\n25) Moman1: Discover Y1 Moman1 B2 E1\n\n26) Timetech: Sacrifice Y2 Timetech\nMove R1 W2 E1\nMove R2 W3 E1\n\n27) Moman1: Build R3 Moman1\n\n28) Timetech: Attack Y1 E1\nCatastrophe Moman1 R\n\n29) Moman1: Build Y2 Moman1\n\n30) Timetech: Move R2 E1 Moman1\n\n31) Moman1: Build Y2 Moman1\n\n32) Timetech: Sacrifice R3 Timetech\nAttack Y2 Moman1\nAttack Y2 Moman1\nAttack Y1 Moman1\n\n33) Moman1: Trade G3 R3 Moman1\n\n34) Timetech: Sacrifice Y2 Moman1\nMove R2 Moman1 E1\nMove Y2 Moman1 E1\n\n35) Moman1: Attack Y1 Moman1\n\n36) Timetech: Build Y2 Timetech\n\n37) Moman1: Move R3 Moman1 E1\n\n38) Timetech: Sacrifice Y2 E1\nMove R2 E1 Moman1\nMove R1 E1 Moman1\n\n39) Moman1: Attack Y1 E1\n\n40) Timetech: Attack Y1 Moman1\n\n\nHomeworlds Online (SDG# 25942)\nVariants: &quot;Hard time&quot;\nStarted: 2014.6.22, Ended: 2014.7.15\nParticipants: TeeTeeTee (S), SilentTitan (N)\nWinner: TeeTeeTee\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tTeeTeeTee: Hello, and welcome!\n\tSilentTitan: Hello and thanks\n\n2) TeeTeeTee: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) TeeTeeTee: Build G1 Teeteetee\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) TeeTeeTee: Trade G1 B1 Teeteetee\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) TeeTeeTee: Build B2 Teeteetee\n\n13) SilentTitan: Discover B2 Silenttitan G3 Sol\n\n14) TeeTeeTee: Trade B1 R1 Teeteetee\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\tTeeTeeTee: I just saw the announcement about Super Duper Games shutting down... sad news. :( \n\tSilentTitan: Yes\n\n16) TeeTeeTee: Build B3 Teeteetee\n\n17) SilentTitan: Trade B2 Y2 Sol\n\n18) TeeTeeTee: Trade B3 Y3 Teeteetee\n\n\tTeeTeeTee: Argh! That&#39;s a shame. I think you had a much stronger start than I did, and I was struggling to keep up.\r\n\r\nIf you have more time in the near future, then feel free to send me another challenge.\n\nHomeworlds Online (SDG# 25944)\nVariants: &quot;Unrated&quot;\nStarted: 2014.6.23, Ended: 2015.1.14\nParticipants: SilentTitan (S), Link2888 (N)\nWinner: SilentTitan\n\n1) Link2888: Homeworld G3 B1 Y3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Link2888: Build Y1 Link2888\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Link2888: Trade Y1 R1 Link2888\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Link2888: Build Y1 Link2888\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Link2888: Build Y2 Link2888\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) Link2888: Trade Y2 G2 Link2888\n\n12) SilentTitan: Trade Y1 B1 Silenttitan\n\n13) Link2888: Trade Y1 B1 Link2888\n\n14) SilentTitan: Build B2 Silenttitan\n\n15) Link2888: Discover B1 Link2888 G2 Endor\n\n16) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n17) Link2888: Discover R1 Link2888 Y2 Dune\n\n18) SilentTitan: Build B2 Sol\n\n19) Link2888: Move R1 Dune Sol\n\n20) SilentTitan: Trade B2 R2 Silenttitan\n\n21) Link2888: Attack B1 Sol\n\n22) SilentTitan: Sacrifice R2 Silenttitan\nAttack B1 Sol North\nAttack R1 Sol North\n\n23) Link2888: Build B2 Endor\n\n24) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover B1 Sol Y2 Soul\n\n25) Link2888: Trade B2 Y2 Endor\n\n26) SilentTitan: Build B2 Sol\n\n27) Link2888: Discover B1 Endor Y1 Blue\n\n28) SilentTitan: Sacrifice Y2 Silenttitan\nMove B2 Sol Endor\nDiscover B2 Sol G2 Sole\n\n29) Link2888: Move B1 Blue Sole\n\n30) SilentTitan: Sacrifice R1 Sol\nAttack Y2 Endor North\n\n31) Link2888: Build Y1 Link2888\n\n32) SilentTitan: Trade B2 R2 Sole\n\n33) Link2888: Trade B1 G1 Sole\n\n34) SilentTitan: Attack G1 Sole North\n\n\nHomeworlds Online (SDG# 25893)\nStarted: 2014.6.24, Ended: 2014.10.25\nParticipants: wil (S), Mandrel (N)\nWinner: wil\n\n1) Mandrel: Homeworld R3 B2 G3\n\n2) wil: Homeworld Y2 B1 G3\n\tMandrel: Have a good game!\n\n3) Mandrel: Build G1 Mandrel\n\twil: Lookin forward to it...  I have yet to have a bad game (well except the ones that linger and then get lost by time)...I&#39;ve played badly, played terribly even, but always enjoy the game and learning.\n\n4) wil: Build G1 Wil\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) wil: Trade G1 B1 Wil\n\n7) Mandrel: Build Y1 Mandrel\n\n8) wil: Build B1 Wil\n\n9) Mandrel: Build G1 Mandrel\n\n10) wil: Discover B1 Wil G3 G3\n\n11) Mandrel: Build Y1 Mandrel\n\n12) wil: Build B2 G3\n\n13) Mandrel: Discover Y1 Mandrel G1 Bowl\n\n14) wil: Build B2 Wil\n\n15) Mandrel: Build Y2 Bowl\n\n16) wil: Build B3 G3\n\n17) Mandrel: Build Y2 Mandrel\n\n18) wil: Trade B3 Y3 G3\n\n19) Mandrel: B Y3 Bowl\n\n20) wil: Build B3 G3\n\n21) Mandrel: T Y1 R1 Mandrel\n\n22) wil: Trade B3 R3 G3\n\n23) Mandrel: Trade G3 B3 Mandrel\n\n24) wil: Trade B1 R1 Wil\n\n25) Mandrel: Sacrifice Y2 Mandrel\nMove B3 Mandrel Bowl\nMove Y3 Bowl Mandrel\n\n26) wil: Build R1 G3\n\n27) Mandrel: Move R1 Mandrel Bowl\n\n28) wil: Discover R3 G3 G1 G1\n\n29) Mandrel: Build G2 Mandrel\n\n30) wil: Build G2 Wil\n\n31) Mandrel: Build R2 Bowl\n\n32) wil: Move B2 G3 G1\n\n33) Mandrel: Build Y1 Bowl\n\n34) wil: Build Y2 G3\n\n35) Mandrel: Build Y3 Mandrel\n\n36) wil: S Y3 G3\nMove R3 G1 Mandrel\nMove Y2 G3 G1\nMove Y2 G1 Mandrel\nCatastrophe Mandrel Y\n\n37) Mandrel: S Y2 Bowl\nMove R1 Bowl Mandrel\nMove R2 Bowl Mandrel\nC Mandrel R\n\twil: It appears a disaster has occurred with your large propulsion refineries, we are utilizing a portion of our superfund budget to send in our largest trojan horse, I mean red cross ship to assist in the cleanup efforts.\n\n38) wil: Sacrifice G3 Wil\nBuild B1 G1\nBuild B3 G3\nBuild B3 Wil\n\tMandrel: Apologies, my own relief effort appears to have made matters worse.\n\n39) Mandrel: Trade G1 Y1 Mandrel\n\twil: Yes it looks like my Red Cross ship is missing with all its crew and supplies...\n\n40) wil: S B2 Wil\nT B3 R3 G3\nT B2 Y2 G1\n\n41) Mandrel: Build Y2 Mandrel\n\n42) wil: Build Y3 G1\n\n43) Mandrel: Build Y3 Bowl\n\n44) wil: Sacrifice Y2 G1\nMove B3 Wil G3\nMove B3 G3 Mandrel\n\n45) Mandrel: Build Y2 Mandrel\n\n46) wil: S R3 G3\nA G2 Mandrel\nA Y2 Mandrel\nA Y2 Mandrel\n\n47) Mandrel: Move B3 Bowl Mandrel\n\n48) wil: Move B1 G1 Mandrel\nCatastrophe Mandrel B\n\twil: The operation was a success, but the patient died...thanx for the game!\n\n\nHomeworlds Online (SDG# 25921)\nVariants: &quot;Hard time&quot;\nStarted: 2014.6.26, Ended: 2014.6.26\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n\nHomeworlds Online (SDG# 25949)\nVariants: &quot;Hard time&quot;\nStarted: 2014.6.26, Ended: 2014.6.29\nParticipants: wil (S), Marmalade (N)\nWinner: wil\n\n\twil: oops....wanted to play a game...but got two...\n\twil: or rather...guess I didn&#39;t get any...\n\nHomeworlds Online (SDG# 25955)\nVariants: &quot;Hard time&quot;\nStarted: 2014.6.30, Ended: 2014.7.24\nParticipants: TwoShort (S), wil (N)\nWinner: TwoShort\n\n1) wil: Homeworld Y2 B1 G3\n\twil: there was no one else I was allowed to challenge on the ladder....I&#39;ve been beat by the rest, might as well get beat by the best again.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) wil: Build G1 Wil\n\n4) TwoShort: Build B1 Twoshort\n\twil: lol...deja view\n\n5) wil: Build G1 Wil\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) wil: Discover G1 Wil Y3 Y3\n\n8) TwoShort: Build B2 Twoshort\n\n9) wil: Build G1 Wil\n\n10) TwoShort: Discover B2 Twoshort B2 Bluzilla\n\n11) wil: Build G2 Y3\n\n12) TwoShort: Build B2 Twoshort\n\n13) wil: Trade G1 R1 Wil\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) wil: Trade G3 B3 Wil\n\n16) TwoShort: Discover B1 Twoshort G2 Grogar\n\n17) wil: Build G1 Wil\n\n18) TwoShort: Build B2 Grogar\n\n19) wil: Build G2 Wil\n\n20) TwoShort: Build B3 Grogar\n\n21) wil: Discover G1 Wil Y3 Why3\n\n22) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Grogar Twoshort\nDiscover B2 Grogar G3 Greenland\nDiscover B1 Grogar G3 Greedo\n\n23) wil: Build B3 Wil\n\n24) TwoShort: Trade B2 Y2 Bluzilla\n\n25) wil: Trade B3 Y3 Wil\n\n26) TwoShort: Build B2 Greedo\n\n27) wil: Move B3 Wil Y3\n\n28) TwoShort: Build B3 Greenland\n\n29) wil: Trade G2 Y2 Y3\n\twil: and here I expected bluezilla to get sacked and greedo to take out half my homeworld...\n\tTwoShort: But after tha, I had no quick way to finish you; Our homeworlds would be adjacent; and you&#39;d have a massive piece advantage... \n\n30) TwoShort: Trade B1 Y1 Greedo\n\n31) wil: Build G2 Y3\n\twil: hmmm  I&#39;d be outta blues...no position to trade ships anywhere and be stuck trying move to a blue to do it...and many of my ships two steps away...  would be cool to be able to after a game completes set the program to restart from x move and try again...   \n\n32) TwoShort: Build Y1 Greedo\n\n33) wil: Trade G2 R2 Y3\n\n34) TwoShort: Sacrifice Y2 Bluzilla\nMove Y1 Greedo Wil\nMove Y1 Greedo Wil\nCatastrophe Wil Yellow\n\n35) wil: Move B3 Y3 Wil\n\n36) TwoShort: Trade B3 Y3 Twoshort\n\n37) wil: Trade B3 R3 Wil\n\n38) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Greedo Wil\nMove B2 Greenland Wil\nMove B3 Greenland Wil\nCatastrophe Wil Blue\n\twil: Well that be it yet again...\n\n\twil: It&#39;ll at least look like we tried to defend...\n\tTwoShort: Thanks for the game.\n\twil: thank you for the butt whoopin!\n\nHomeworlds Online (SDG# 25922)\nStarted: 2014.7.11, Ended: 2014.8.4\nParticipants: ts52 (S), Conflux (N)\nWinner: ts52\n\n1) Conflux: Homeworld B3 G2 R3\n\n2) ts52: Homeworld Y1 B2 G3\n\n\tts52: Have a good game!\n\nHomeworlds Online (SDG# 25920)\nVariants: &quot;Hard time&quot;\nStarted: 2014.7.14, Ended: 2014.7.17\nParticipants: SilentTitan (S), Grosseteste (N)\nWinner: Grosseteste\n\n1) Grosseteste: Homeworld B1 Y2 G3\n\n\tGrosseteste: Let&#39;s see if I can keep the time control this time.  Have fun!\n\nHomeworlds Online (SDG# 25950)\nVariants: &quot;Hard time&quot;\nStarted: 2014.7.14, Ended: 2014.7.17\nParticipants: Grosseteste (S), Marmalade (N)\nWinner: Grosseteste\n\n\tGrosseteste: Trying to make amends for my Hard Time losses.  Have a good game!\n\nHomeworlds Online (SDG# 26005)\nStarted: 2014.7.15, Ended: 2014.9.24\nParticipants: Grosseteste (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R2 G3\n\n2) Grosseteste: Homeworld Y3 B1 G3\n\n3) mneme: Build G1 Mneme\n\n4) Grosseteste: B G1 Grosseteste\n\n5) mneme: Trade G1 B1 Mneme\n\n6) Grosseteste: B G1 Grosseteste\n\n7) mneme: Build B2 Mneme\n\n8) Grosseteste: Trade G1 R1 Grosseteste\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) Grosseteste: T G3 B3 Grosseteste\n\n11) mneme: Build B2 Mneme\n\n12) Grosseteste: B R1 Grosseteste\n\n13) mneme: Discover B2 Mneme G3 Staging\n\n14) Grosseteste: D R1 Grosseteste Y2 Luce\n\n15) mneme: Build B2 Staging\n\n16) Grosseteste: D R1 Luce G3 Compotus\n\n17) mneme: Build B2 Mneme\n\n18) Grosseteste: B R1 Compotus\n\n19) mneme: Build B3 Staging\n\n20) Grosseteste: B R2 Compotus\n\n21) mneme: Trade B2 R2 Mneme\n\n22) Grosseteste: B R3 Grosseteste\n\tmneme: I&#39;m pretty sure you wanted to make that last r2 in your home system.\n\tGrosseteste: B r3 Grosseteste\n\tGrosseteste: B r3 Grosseteste\n\n23) mneme: Build R3 Mneme\n\tGrosseteste: Doh, wrong window. It was intentional, but I did not see your trade coming.\n\tGrosseteste: Doh, wrong window. It was intentional, but I did not see your trade coming.\n\n24) Grosseteste: B R3 Grosseteste\n\tmneme: Well, you did get a 3 out of it, but I did too, and at a very high cost.\n\n25) mneme: Move R2 Mneme Compotus\nCatastrophe Compotus R\n\tmneme: ok, 2 3s, but I didn&#39;t want to say that until you built the third one\n\n26) Grosseteste: T R3 G3 Grosseteste\n\n27) mneme: Trade B3 Y3 Staging\n\n28) Grosseteste: Discover B3 Grosseteste G2 Hexaemeron\n\n29) mneme: Build B2 Staging\n\n30) Grosseteste: T R3 Y3 Grosseteste\n\n31) mneme: Move B2 Staging Hexaemeron\n\n32) Grosseteste: Sacrifice R1 Grosseteste\nAttack B2 Hexaemeron\n\n33) mneme: Sacrifice Y2 Mneme\nMove B2 Staging Hexaemeron\nMove B2 Staging Hexaemeron\nCatastrophe Hexaemeron B\n\n34) Grosseteste: Discover G1 Grosseteste Y2 Colore\n\n35) mneme: Sacrifice Y3 Staging\nDiscover G3 Mneme Y3 Staging\nMove G3 Staging Colore\nMove G3 Colore Grosseteste\n\n\tmneme: good game.\n\tGrosseteste: Thanks, gg\n\tGrosseteste: Thanks, gg\n\nHomeworlds Online (SDG# 25999)\nVariants: &quot;Hard time&quot;\nStarted: 2014.7.15, Ended: 2014.9.19\nParticipants: Grosseteste (S), Mandrel (N)\nWinner: Grosseteste\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Grosseteste: Homeworld B1 Y3 G3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\tGrosseteste: You too!\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) Grosseteste: Trade G1 R1 Grosseteste\n\n7) Mandrel: Build R2 Mandrel\n\n8) Grosseteste: B R2 Grosseteste\n\n9) Mandrel: T R1 B1 Mandrel\n\n10) Grosseteste: B G1 Grosseteste\n\n11) Mandrel: Build G1 Mandrel\n\n12) Grosseteste: D G1 Grosseteste R2 Hexaemeron\n\n13) Mandrel: Trade G1 Y1 Mandrel\n\n14) Grosseteste: B G1 Grosseteste\n\n15) Mandrel: Discover B1 Mandrel G3 Corn\n\n16) Grosseteste: Discover R1 Grosseteste G2 Colore\n\n17) Mandrel: Build B1 Corn\n\n18) Grosseteste: B G1 Hexaemeron\n\n19) Mandrel: Build B2 Corn\n\n20) Grosseteste: B G2 Grosseteste\n\n21) Mandrel: Build G2 Mandrel\n\n22) Grosseteste: T G2 B2 Grosseteste\n\n23) Mandrel: Trade B1 Y1 Corn\n\n24) Grosseteste: S G3 Grosseteste\nB R1 Colore\nB R3 Grosseteste\nB R3 Grosseteste\n\n\nHomeworlds Online (SDG# 25539)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.7.15, Ended: 2014.7.22\nParticipants: ts52 (S), TeeTeeTee (N), wil (E)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\n2) wil: Homeworld G3 B1 B3 *\n\tTeeTeeTee: Shall we have another try at a multiplayer game, then?\n\twil: Heck...you think we&#39;ll complete one??  Maybe with you two!  Now convention says we each create a different homeworld yes?   I suppose I&#39;ll take fortress....\n\n3) ts52: Homeworld Y2 B3 G3\n\n4) TeeTeeTee: Build G1 Teeteetee\n\tts52: Wow, I can&#39;t remember the last time I played Homeworlds with more than one opponent. This should be fun.\n\n5) wil: Build B1 Wil\n\tTeeTeeTee: I&#39;ve not played a game with more than two players before, with the exception of one that lasted for only a few days before two players dropped out. We&#39;ve got a good chance of this one playing out, though... \n\twil: I&#39;ve yet to complete one... I think binary is still the best...but these do lead to a binary game with lots of pieces once one is eliminated...I just haven&#39;t got that far with one yet...\n\n6) ts52: Build G1 Ts52\n\twil: I meant to take fortress and instead to goldilocks and just noticed...  And you TTT sure rallied up the ladder!!\n\n7) TeeTeeTee: Trade G1 B1 Teeteetee\n\n8) wil: Build B2 Wil\n\n9) ts52: Build G1 Ts52\n\tTeeTeeTee: ...?\n\n10) TeeTeeTee: Build B2 Teeteetee\nCatastrophe Wil Blue\n\n11) ts52: Trade G1 B1 Ts52\n\tTeeTeeTee: Right. I think that we should try this, again.\n\n12) TeeTeeTee: Discover B1 Teeteetee G3 Duvel\n\tts52: d&#39;oh! how did I miss that. I&#39;m up for trying again...\n\tts52: Wil just wanted to make sure the 3 player game didn&#39;t finish. ;)\r\n\n\n13) ts52: Discover B1 Ts52 G1 Kermit\n\n14) TeeTeeTee: Build G1 Teeteetee\n\n15) ts52: Trade G1 Y1 Ts52\n\tTeeTeeTee: Okay - feel free to set up another 3-player challenge, then, wil (or ts52). Perhaps you two should agree to team up, this time?\n\twil: oops...what the hell did i do?  did I overload myself??...I did I did...foolishness!\n\twil: oops...what the hell did i do?  did I overload myself??...I did I did...foolishness!\n\tTeeTeeTee: Yeah... I have to say, you each made terrible blunders in Homeworlds games yesterday. (ts52: can you see what you should have done here, instead of sacrificing the r1? http://superdupergames.org/?page=archive_play&amp;gid=25745&amp;idx=60 )\r\n\r\nAlso, wil, did you ever follow through with your plan to discuss/comment on interesting Homeworlds games?\n\tts52: TTT: I missed the yellow you had one move away from my homeworld. So sacrificing the r1 was a complete waste. \n\n16) TeeTeeTee: Trade G1 R1 Teeteetee\n\tts52: TTT: Er, sorry, wasn&#39;t your yellow, but the rest is the same.\n\n17) ts52: Build G1 Ts52\n\n18) TeeTeeTee: Build G1 Teeteetee\n\n19) ts52: Trade G1 R1 Ts52\n\n20) TeeTeeTee: Build R1 Teeteetee\n\n21) ts52: Build G1 Ts52\n\n22) TeeTeeTee: Trade B2 Y2 Teeteetee\n\n23) ts52: Move Y1 Ts52 Kermit\n\n24) TeeTeeTee: Discover G1 Teeteetee B3 Chimay\n\n25) ts52: Build Y1 Kermit\n\n26) TeeTeeTee: Build Y1 Teeteetee\n\n27) ts52: Discover Y1 Kermit G2 Oscar\n\n28) TeeTeeTee: Move Y1 Teeteetee Chimay\n\n29) ts52: Move G1 Ts52 Kermit\n\n30) TeeTeeTee: Build G1 Chimay\n\n31) ts52: Build G2 Ts52\n\n32) TeeTeeTee: Move G1 Chimay Kermit\n\n33) ts52: Move B1 Kermit Oscar\n\n34) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G2 Kermit\nBuild G2 Chimay\nBuild G3 Chimay\nCatastrophe Kermit Green\n\n35) ts52: Build Y1 Oscar\n\twil: Yeah, we only got a few suggestions...but we are going to do it..\n\tTeeTeeTee: Great! I&#39;d certainly be interested in seeing what you come up with. If you&#39;d like, then I could offer some suggestions for games? Alternatively, if you&#39;ve already chosen some games, then I could offer my own comments on them? Send me a private message if you&#39;re interested.\n\twil: send me suggestions...  The suggestions I am asking for are ones from players that got whipped by something they didn&#39;t see coming...or perfect examples of setting up a doomsday machine or taking advantage of a bluebird, or cornering an economy.... teachable moments for those learning.\r\n\n\n36) TeeTeeTee: Move G1 Chimay Oscar\n\n37) ts52: Trade G2 R2 Ts52\n\n38) TeeTeeTee: Sacrifice G2 Chimay\nBuild G1 Oscar\nBuild G1 Oscar\nCatastrophe Oscar Green\n\n39) ts52: Discover R2 Ts52 Y1 Zoe\n\tts52: It&#39;s funny, I should&#39;ve seen that coming, since you just did it to me a turn ago. Sigh.\n\n40) TeeTeeTee: Move Y2 Teeteetee Duvel\n\n41) ts52: Build G1 Ts52\n\tTeeTeeTee: Actually, I think I made an error, there: the stronger move for me would have been to build a single g1 at Oscar. If you took both g1s by sacrificing the r2, then I could move in the g2 to cause a catastrophe, and we&#39;d have both lost a medium ship; otherwise, I&#39;d have built a g1, and we&#39;d have both kept our medium ships. Oh well - guess it makes the game more interesting!\n\n42) TeeTeeTee: Build Y1 Duvel\n\n43) ts52: Build G1 Ts52\n\n44) TeeTeeTee: Sacrifice G3 Chimay\nBuild Y1 Duvel\nBuild Y2 Chimay\nBuild Y3 Chimay\n\n45) ts52: Move G1 Ts52 Zoe\n\n46) TeeTeeTee: Trade Y2 R2 Duvel\n\n47) ts52: Discover R2 Zoe Y3 Bigbird\n\n48) TeeTeeTee: Move Y2 Chimay Teeteetee\n\n49) ts52: Trade G1 B1 Ts52\n\n50) TeeTeeTee: Trade Y3 G3 Chimay\n\n51) ts52: Discover G1 Zoe B3 Gonzo\n\n52) TeeTeeTee: Sacrifice G3 Chimay\nBuild Y1 Chimay\nBuild Y2 Chimay\nBuild Y3 Teeteetee\n\n53) ts52: Build G1 Gonzo\n\n54) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n55) ts52: Discover B1 Ts52 G1 Kermit\n\n56) TeeTeeTee: Move Y2 Chimay Kermit\n\n57) ts52: Sacrifice G1 Gonzo\nBuild R1 Bigbird\n\n58) TeeTeeTee: Sacrifice Y2 Kermit\nMove R1 Teeteetee Bigbird\nMove R1 Teeteetee Bigbird\nCatastrophe Bigbird Red\n\n59) ts52: Build R1 Ts52\n\n60) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Chimay\nBuild Y3 Teeteetee\nBuild Y3 Duvel\n\n61) ts52: Discover R1 Ts52 G1 Oscar\n\tts52: Yeah, being locked out of yellow is really hurting me. I don&#39;t expect this will last too much longer.\n\n62) TeeTeeTee: Move Y3 Duvel Oscar\n\n63) ts52: Build R1 Ts52\n\n64) TeeTeeTee: Build Y3 Oscar\n\tTeeTeeTee: Yeah, I didn&#39;t exactly leave you with many options, here...\n\n65) ts52: Discover R1 Ts52 G1 Robin\n\n66) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove Y3 Oscar Ts52\nMove Y3 Oscar Ts52\n\n67) ts52: Sacrifice R1 Robin\nAttack Y3N Ts52\n\tts52: And that will do it. Thanks for the game.\n\n68) TeeTeeTee: Sacrifice R2 Duvel\nAttack G3S Ts52\nAttack Y3S Ts52\n\n69) ts52: Build R1 Oscar\n\n70) TeeTeeTee: Trade Y3 R3 Ts52\n\tTeeTeeTee: Thanks for the game! Although it is a shame that both attempts at a three-player game fell through...\n\n71) ts52: Sacrifice G1 Gonzo\nBuild R1 Ts52\n\n72) TeeTeeTee: Sacrifice R3 Ts52\nAttack R1S Ts52\nAttack R1S Ts52\nPass\n\n\nHomeworlds Online (SDG# 26006)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.7.17, Ended: 2014.7.21\nParticipants: TeeTeeTee (S), wil (N), ts52 (E)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n\tTeeTeeTee: ffs\n\twil: the record still stands...I still haven&#39;t been able to play one...\n\tts52: Sorry guys, went on vacation over the weekend, and didn&#39;t have enough time built up. Honest, we&#39;ll get one of these through to the end.\n\twil: no worries....it is funny how it works...  the best game is binary anyway....\r\n\n\nHomeworlds Online (SDG# 25880)\nVariants: &quot;Hard time&quot;\nStarted: 2014.7.17, Ended: 2014.8.4\nParticipants: justin (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 R1 G3\n\twil: Howdy Justin, first time playing this here?\n\n2) justin: Homeworld G2 R3 B3\n\twil: Are you familiar with the game?\n\n3) wil: Build G1 Wil\n\tjustin: I used to play it about 3 years ago on here and had then I had a kid, so lost most of my free time. Almost certainly rusty, but I&#39;ll pick it up again soon enough. \n\twil: Cool!  A little time absorption capsule....I know what they are like, sucking up all the free time known to man.  My twins just turned 21, they are in the middle of the next joy...college tuitions...\n\n4) justin: Build B1 Justin\n\n5) wil: Trade G1 R1 Wil\n\n6) justin: Trade B1 Y1 Justin\n\n7) wil: Build G1 Wil\n\n8) justin: Build Y1 Justin\n\n9) wil: Trade G1 Y1 Wil\n\n10) justin: Discover Y1 Justin B1 Wyoming\n\n11) wil: Build Y2 Wil\n\n12) justin: Build Y2 Justin\n\n13) wil: Trade Y1 B1 Wil\n\twil: I so want these to be real time...\n\n14) justin: Trade Y2 G2 Justin\n\n15) wil: Build R1 Wil\n\tjustin: Yeah. I&#39;m going to a game store today at lunch to pick up some pyramids to try to get some games going at work. \n\twil: I have one set up that me and my housemate play all the time....  we make moves whenever...you walk by and see it and contmemplate\n\n16) justin: Move G2 Justin Wyoming\n\n17) wil: Discover R1 Wil G2 G2\n\n18) justin: Build G1 Wyoming\n\n19) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 G2\nBuild R2 G2\n\n20) justin: Discover G1 Wyoming Y2 Ohio\n\n21) wil: Sacrifice Y2 Wil\nMove R2 G2 Wyoming\nDiscover R1 G2 G1 G1\n\n22) justin: Sacrifice Y1 Wyoming\nDiscover G2 Wyoming B2 Maine\n\twil: I enjoy trying weird things to see how they work out...\n\twil: and I do get myself in much trouble with these weird gambits....but gotta see how they play out\r\n\n\tjustin: Yeah, the sacrifice to block out red is interesting. \n\n23) wil: Build R3 G2\n\n24) justin: Build Y1 Justin\n\n25) wil: Build R3 G1\n\n26) justin: Trade Y1 G1 Justin\n\n27) wil: Trade B1 Y1 Wil\n\n28) justin: Build G3 Ohio\n\n29) wil: Move R2 Wil Maine\n\twil: yeah...that didn&#39;t work out\r\n\n\n30) justin: Sacrifice Y1 Justin\nMove G2 Maine Wil\n\n31) wil: Sacrifice Y1 Wil\nMove R3 G2 Wil\n\tjustin: It&#39;s a pain right now, though!\n\twil: O to the M to the G you let me outta that one!!  My silly ruse worked?  What have you up your sleeve it was game over I thought??\n\n32) justin: Build G3 Wil\n\n33) wil: Sacrifice R2 Maine\nAttack G3 Wil\nAttack G2 Wil\n\tjustin: Let&#39;s see. You&#39;ve got a real stranglehold on attacks, so I&#39;m stuck trying to make a catastrophe out of nothing!\n\twil: If your big green moved in...no catastrophe, you would have used my red homeworld star to attack me...i was one step behind....and thought it was over..\r\n\n\n\twil: My cornering the red economy failed...I didn&#39;t think it all the way out (I&#39;m afraid I never do)  I&#39;ve got to start thinking ahead...my usual only chance is taking advantage of others oopses\n\twil: awe....where did you go?\n\nHomeworlds Online (SDG# 26018)\nVariants: &quot;Hard time&quot;\nStarted: 2014.7.24, Ended: 2014.8.5\nParticipants: fogus (S), justin (N)\nWinner: fogus\n\n1) justin: Homeworld R1 G3 B3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) justin: Build B1 Justin\n\n4) fogus: Build G1 Fogus\n\n5) justin: Trade B3 G3 Justin\n\n6) fogus: Build G1 Fogus\n\n7) justin: Build B1 Justin\n\n8) fogus: Discover G1 Fogus Y3 Sacsac\n\n9) justin: Trade B1 Y1 Justin\n\n10) fogus: Trade G1 B1 Fogus\n\n11) justin: Discover B1 Justin G2 Sourdough\n\n12) fogus: Build B2 Fogus\n\n13) justin: Build B2 Sourdough\n\n14) fogus: Trade B1 Y1 Fogus\n\n15) justin: Build G1 Justin\n\n16) fogus: Trade B2 Y2 Fogus\n\n17) justin: Trade B2 Y2 Sourdough\n\n18) fogus: Sacrifice Y2 Fogus\nDiscover G1 Sacsac R2 Temp\nMove G1 Temp Justin\nCatastrophe Justin G\n\n19) justin: Discover Y2 Sourdough G3 Rye\n\n20) fogus: Build G1 Fogus\n\n21) justin: Build B1 Sourdough\n\n22) fogus: Build G1 Fogus\n\n\nHomeworlds Online (SDG# 25983)\nStarted: 2014.7.24, Ended: 2014.8.4\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\twil: I was down to two games in play....I need to play more!!!\r\n\n\tts52: Excellent!\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 Y1 Wil\n\n6) ts52: Build G1 Ts52\n\n7) wil: Build Y1 Wil\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) wil: Build Y2 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: B G2 Wil\n\n12) ts52: Build G2 Grover\n\n13) wil: Discover G2 Wil G2 G2\n\n14) ts52: Trade G1 R1 Ts52\n\n15) wil: Trade Y2 R2 Wil\n\n16) ts52: Trade G2 Y2 Grover\n\n17) wil: Build Y2 Wil\n\n18) ts52: Discover G1 Ts52 B3 Gonzo\n\n19) wil: Move R2 Wil G2\n\n20) ts52: Build G1 Ts52\n\n21) wil: Build G2 Wil\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R1 Ts52\n\twil: nice move...had no choice....\n\n23) wil: Discover Y1 Wil B2 B2\n\tts52: Thanks.\n\n24) ts52: Move R1 Ts52 Gonzo\n\n25) wil: Move Y1 Wil G2\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Ts52\nBuild R2 Gonzo\n\n27) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G2\nBuild Y3 B2\n\n28) ts52: Build Y3 Grover\n\n29) wil: Trade Y3 R3 B2\n\n30) ts52: Trade G3 R3 Grover\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 Wil\nBuild Y3 B2\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild R2 Grover\n\n33) wil: Discover R2 G2 B3 B3\n\n34) ts52: Move R3 Grover G2\n\twil: gotta look funny on a physical board... a wall of B3s...\r\n\n\n35) wil: Sacrifice Y2 G2\nMove Y1 G2 B3\nMove G2 G2 B3\n\tts52: I really should start setting these up with real pieces again.\n\twil: I think there is incredible value in that...when an app or program is created that clearly reflects the preferred fly on the right and orderly starscape...it&#39;ll make it much easier...\n\n36) ts52: Move Y2 Grover G2\n\n37) wil: Build Y2 B3\n\n38) ts52: Move R3 G2 B3\n\twil: I created a delicious appateezer for a hungry red monster that just missed a meal.\n\tts52: It&#39;s a trap! (Wha?)\n\n39) wil: Sacrifice Y2 B3\nMove Y1 B3 Ts52\nMove G2 B3 Ts52\n\n40) ts52: Attack G2 Ts52\n\twil: Well that was the plan...now we&#39;ll see how it plays out...  \n\tts52: See, I knew it was a trap...\n\n41) wil: Sacrifice R3 B2\nAttack R1 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n42) ts52: Build R3 Grover\n\n43) wil: Build Y2 Ts52\n\n44) ts52: Sacrifice R2 Gonzo\nAttack Y2 Ts52\nAttack R2 B3\n\n45) wil: Sacrifice G2 Wil\nBuild G2 Ts52\nBuild R2 Ts52\nCatastrophe Ts52 G\n\n46) ts52: Sacrifice Y2 Ts52\nMove G3 Gonzo Ts52\nMove R1 Gonzo Ts52\nCatastrophe Ts52 Red\n\twil: the system would not let me end the game... s y3 m y1 in and catastrophe yellow leaves me g2 to move in from wil direct one step to ts52 game over...but the system doesn&#39;t allow any moves past the catastrophe..doesn&#39;t allow for two catastrophes....dang it.\n\tts52: Odd. Nice play, I hadn&#39;t anticipated the double catastrophe. That should be fixed.\r\n\n\n47) wil: Trade Y2 G2 Wil\n\twil: dang system...  now I am behind...\n\n48) ts52: Move R3 Grover B2\n\n49) wil: Sacrifice Y1 B2\nMove Y3 B2 Gonzo\n\tts52: Yeah, I&#39;m curious to see if I can fight back from here. But you totally won this. I&#39;ll resign before the end, regardless.\n\n50) ts52: Move Y3 Grover B2\n\n51) wil: Sacrifice G2 Wil\nBuild Y1 Ts52\nBuild Y2 Ts52\nCatastrophe Ts52 Y\n\n52) ts52: Sacrifice Y2 G2\nMove Y3 B2 Wil\nMove R3 B2 Wil\n\n53) wil: Sacrifice G3 Wil\nBuild Y1 Wil\nBuild Y1 Wil\nBuild Y1 Wil\n\tts52: I think that&#39;s it. You can take one of those, but I&#39;ve still got an r3 to retake them all.\n\twil: Sorry, we don&#39;t have dinner enough for all of you.  Yeah, I saw it aftermy move...not before...\n\n\tts52: Nice. Thanks for the game. We should get them to fix that bug.\n\twil: All we left you with is that hungry red ship and a world infected with yellow fever, an epidemic soon to be an issue...\n\twil: hey...you resigned...not fair...\n\tts52: Interesting, just found this in the Homeworlds rules:\r\nOverpopulation and Catastrophes \r\nIf a system contains four or more pieces of the same color (including system markers and ships of any ownership), that system contains an overpopulation of that color. At the end of your turn, you may trigger catastrophes for any overpopulations that exist on the board, regardless of where they are or who owns the ships in them. To trigger a catastrophe, remove all of the pieces of that color from the system (including system markers), and return the pieces to the global stash. If you remove a system marker from a binary system, the system becomes a single-star system. (This may cause the system to become connected to more systems.) If you remove the system marker from a single-star system, the system itself is destroyed, and all of the ships in it are returned to the global stash. Triggering a catastrophe for any given overpopulation is always optional, but if you do choose to trigger it, you must remove all of the pieces causing the overpopulation.\n\tts52: Note it specifically mentions catastrophes happening &#39;at the end of your turn&#39;.\n\tts52: I resigned because I thought you should&#39;ve been able to win with your catastrophes, but apparently that&#39;s not the case. Oh well. At least it&#39;s not a bug.\n\nHomeworlds Online (SDG# 26003)\nVariants: &quot;Hard time&quot;\nStarted: 2014.7.24, Ended: 2014.7.27\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 26038)\nVariants: &quot;Hard time&quot;\nStarted: 2014.7.24, Ended: 2014.8.7\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\n2) wil: Homeworld B3 Y1 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build G1 Wil\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\twil: we been saying the rules should be a binary homeworld and then a large and a small of the same color to start....\r\n\n\n6) wil: Trade G1 Y1 Wil\n\tTeeTeeTee: Might as well. I guess it&#39;s possible to start a game without a green star or ship, and trade for one on the first turn, but there isn&#39;t really any benefit from that at all.\n\n7) TeeTeeTee: Build Y2 Teeteetee\n\n8) wil: Build Y2 Wil\n\n9) TeeTeeTee: Discover Y1 Teeteetee G3 Hammerfall\n\twil: The only issue I see is if someone makes an extreme counter play to your opening...so extreme that you wish to change your ship prior to building your first small ship...  but yeah the typical opening requires G n B, Y n R are the options....and both have their reasoning...\n\n10) wil: D Y1 Wil G2 G2\n\n11) TeeTeeTee: Build Y3 Hammerfall\n\n12) wil: Build Y3 G2\n\tTeeTeeTee: Just so you know, I&#39;m going on holiday for the rest of the week - I&#39;ll be back before I time out, though.\n\twil: poifect....I won&#39;t be badmouthin you then...hee hee tee tee\n\n13) TeeTeeTee: Discover Y3 Hammerfall B2 Avantasia\n\n14) wil: Discover Y1 G2 Y3 Y3\n\n15) TeeTeeTee: Trade Y2 G2 Teeteetee\n\n16) wil: Trade Y2 R2 Wil\n\n17) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild Y2 Hammerfall\nBuild Y2 Avantasia\n\n18) wil: Build G1 Wil\n\tTeeTeeTee: Sorry! I know that an undo after a few minutes is a little cheeky, but, erm, I&#39;d rather be slightly rude than lose the top ladder position on a blunder like that.\n\n19) TeeTeeTee: Trade Y3 R3 Avantasia\n\tTeeTeeTee: ... on second thought, you don&#39;t have a winning move on this turn, after all. Sorry to mess you around :p\n\tTeeTeeTee: (I think)\n\twil: whoa now...two things...first and formost I need a good blunder on your part to win...and second...in the physical game we have a move token...this thing misses setting the stage to review prior to deciding it is your final answer....so one undo is nothing...it should be unlimited..\n\n20) wil: Build Y3 G2\n\tTeeTeeTee: Righto. In my mind, when I submit a turn, that&#39;s the online equivalent of passing the move token across, so I should have just let it go. \r\n\r\nI realised after submitting my last move that you could have sacrificed your y3 to move your g3 to my homeworld. From that position, there would have been nothing I could do to stop you from conquering my homeworld by sacrificing the r2 - but you&#39;d have had no ships at your world, either. Guess you&#39;re after a win, and not a draw, then?\n\n21) TeeTeeTee: Sacrifice Y2 Avantasia\nMove Y1 Hammerfall G2\nMove Y2 Hammerfall G2\nCatastrophe G2 Yellow\n\twil: a I am never after a draw...  and I can&#39;t abandon a home world to win or draw...that is a loss before the draw or win happens...  but b...   tis  a flaw in the system, the game is complex enough that you need to see it played out...and then decide if it is what you want to do.... with the configuration here...the undo is required..imo\n\n22) wil: Trade G1 Y1 Wil\n\n23) TeeTeeTee: Build G1 Teeteetee\n\n24) wil: Build Y2 Wil\n\twil: I dint think you&#39;d pull that trigger!\n\n25) TeeTeeTee: Trade G1 R1 Teeteetee\n\n26) wil: Discover Y2 Wil G2 G2\n\n27) TeeTeeTee: Trade R3 Y3 Avantasia\n\tTeeTeeTee: Yeah, I kind of had to, as I didn&#39;t want to be a large ship down. There&#39;s the blunder you were waiting on - I didn&#39;t expect you to build a y3 there because I could go a large ship up if you did. I&#39;m now a large ship up, but definitely in a weaker position than you. Let&#39;s see if I can come back from this!\r\n\r\nBy the way, did you get my email, and find the time to have a look at it?\n\n28) wil: Sacrifice G3 Wil\nBuild Y2 Y3\nBuild Y3 Wil\nBuild R1 Wil\n\twil: hmmm email must&#39;ve got in wrong box...will check...  and I need you to make bigger blunders.... but look G2 is back and building yellows is a thing again!!\n\n29) TeeTeeTee: Move Y3 Avantasia Wil\nCatastrophe Wil Yellow\n\n30) wil: Build Y1 G2\n\n31) TeeTeeTee: Build R1 Teeteetee\n\n32) wil: Trade R2 G2 Wil\n\twil: yeah, some how I was blinded to see that comin...face palm...  I&#39;m so outta my league.\r\n\n\n33) TeeTeeTee: Discover R1 Teeteetee Y3 Hevydevy\n\n34) wil: Build G1 Wil\n\n35) TeeTeeTee: Build R2 Teeteetee\n\n36) wil: Build R2 Wil\n\n37) TeeTeeTee: Trade G3 B3 Teeteetee\n\n38) wil: Trade G1 Y1 Wil\n\n39) TeeTeeTee: Discover R1 Teeteetee Y3 Apocalyptica\n\n40) wil: Move R1 Wil Teeteetee\n\n41) TeeTeeTee: Attack R1 Teeteetee\n\twil: I must admit... I have no clue what is going on.\n\n42) wil: Build R2 Wil\n\twil: oh...I see\n\n43) TeeTeeTee: Trade R2 G2 Teeteetee\n\twil: I saw before the move...but don&#39;t yet really know who has the step ahead...probably you.\n\n44) wil: Move R2 Wil Teeteetee\n\n45) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack R2 Teeteetee\n\tTeeTeeTee: Until that last move, you were definitely ahead.\n\tTeeTeeTee: ... perhaps you still are.\n\n46) wil: Move Y1 Y3 G2\n\twil: hmmm...  I thought you had me by one step...\r\n\n\twil: and still think you have me...\n\n47) TeeTeeTee: Move B3 Teeteetee Wil\n\n\twil: Well that was a strange one, nice game...thanx... \n\tTeeTeeTee: Thanks for the game. Perhaps I was being too negative about my position, but I did feel like I was in trouble for most of that game. I reckon that &quot;10. Trade y3 r3 Avantasia&quot; was a major error on my part: as I said, I assumed you wouldn&#39;t build a large ship as I could destroy them both - but building that ship anyway meant I had the choice of being a large ship down or losing all my yellow ships.\r\n\r\nEven after you made the mistake of letting me blow up your large ship and half your homeworld, I still didn&#39;t feel like I was winning: you had a total monopoly on yellows, far more ships than I did, and I couldn&#39;t just move my large ship to your homeworld without losing, then. If, at that point, I&#39;d played carefully and just tried to acquire more ships, then you would have soon built large ships, I would still have had no yellow ships, and my last chance to attack would be gone. \r\n\r\nMy only real chance of winning was to get an attack together before you acquired a large ship - and I was fortunate that it worked. I get the feeling that you could have acquired a large ship at some point somehow, though. Perhaps, on your last move, instead of moving that y1 to g2, you could have sacrificed the y1 at the star y3, and moved the y2 there to TeeTeeTee? On the next go, you could have sacrificed the g2 to build a y3 at wil (and a y1 at g2).\r\n\r\nStill, I think you underestimate yourself at this game - and I think I underestimated you too! You played much better than me for the first half of the game. By the way, do you want me to resend you the email I wrote via PM?\n\twil: The game is a blast.  Your circumventing my control of the yellows was awesome...we were neck and neck, I thought I had it for a minute, until you got my homeworld, and then I thought I had a chance with my red game to get to that big ship...you cut me off masterfully.   Yes please send the email via pm...I can&#39;t find it.\r\nthx again for the lesson\n\nHomeworlds Online (SDG# 26004)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.4, Ended: 2014.8.7\nParticipants: a_magical_me (S), Marmalade (N)\nWinner: a_magical_me\n\n\nHomeworlds Online (SDG# 26068)\nStarted: 2014.8.4, Ended: 2015.4.17\nParticipants: ts52 (S), a_magical_me (N)\nWinner: ts52\n\n1) a_magical_me: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) a_magical_me: Build G1 A_magical_me\n\tts52: Have a good game!\n\ta_magical_me: Thanks, you too\n\n4) ts52: Build G1 Ts52\n\n5) a_magical_me: Discover G1 A_magical_me B2 Pisces\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) a_magical_me: Build G1 Pisces\n\n8) ts52: Build G2 Ts52\n\n9) a_magical_me: Build G2 A_magical_me\n\n10) ts52: Trade G2 Y2 Ts52\n\n11) a_magical_me: Trade G1 Y1 Pisces\n\n12) ts52: Move Y2 Ts52 Grover\n\n13) a_magical_me: Discover G1 Pisces Y3 Orion\n\n14) ts52: Build G1 Ts52\n\n15) a_magical_me: Discover Y1 Pisces G3 Virgo\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n17) a_magical_me: Move G1 Orion Ts52\n\n18) ts52: Trade G1 R1 Ts52\n\tts52: Sorry, _bad_ typo there\n\n19) a_magical_me: Move G1 Ts52 Grover\nCatastrophe Grover Green\n\n20) ts52: Build G1 Ts52\n\n21) a_magical_me: Build G1 A_magical_me\n\ta_magical_me: Nice try\n\n22) ts52: Move G1 Ts52 Grover\n\n23) a_magical_me: Discover G2 A_magical_me B2 Pyxis\n\n24) ts52: Build R1 Ts52\n\n25) a_magical_me: Trade G1 B1 A_magical_me\n\n26) ts52: Build G1 Ts52\n\n27) a_magical_me: Build B1 A_magical_me\n\n28) ts52: Move R1 Ts52 Virgo\n\n29) a_magical_me: Move Y1 Virgo Pyxis\n\n30) ts52: Build R1 Ts52\n\n31) a_magical_me: Move B1 A_magical_me Pyxis\n\n32) ts52: Build R2 Ts52\n\n33) a_magical_me: Build B2 Pyxis\n\n34) ts52: Move R2 Ts52 Grover\n\n35) a_magical_me: Trade B2 R2 Pyxis\n\n36) ts52: Discover R1 Ts52 Y3 Bigbird\n\n37) a_magical_me: Build B2 Pyxis\n\n38) ts52: Sacrifice G3 Ts52\nBuild R2 Bigbird\nBuild R3 Ts52\nBuild R3 Grover\n\n39) a_magical_me: Build R3 Pyxis\n\n40) ts52: Sacrifice Y2 Grover\nMove R1 Virgo Pyxis\nMove R1 Bigbird Pyxis\nCatastrophe Pyxis Red\n\n41) a_magical_me: Build B3 A_magical_me\n\n42) ts52: Move R2 Bigbird Pyxis\n\n43) a_magical_me: Sacrifice B2 Pyxis\nTrade B1 R1 A_magical_me\nTrade B3 R3 A_magical_me\n\n44) ts52: Sacrifice R2 Grover\nAttack G2 Pyxis\nAttack Y1 Pyxis\n\n45) a_magical_me: Move R3 A_magical_me Pyxis\n\n46) ts52: Sacrifice G2 Pyxis\nBuild R1 Pyxis\nBuild R2 Pyxis\nCatastrophe Pyxis Red\n\n47) a_magical_me: Build R1 A_magical_me\n\n48) ts52: Build R2 Grover\n\ta_magical_me: Nice.\n\n49) a_magical_me: Build R2 A_magical_me\n\n50) ts52: Trade R2 Y2 Grover\n\n51) a_magical_me: Sacrifice R1 A_magical_me\nAttack Y1S Pyxis\n\n52) ts52: Build R1 Grover\n\n53) a_magical_me: Move R2 A_magical_me Pyxis\n\n54) ts52: Move R3 Grover Pyxis\n\n55) a_magical_me: Sacrifice G3 A_magical_me\nBuild R2 Pyxis\nBuild R2 Pyxis\nBuild R3 A_magical_me\nCatastrophe Pyxis Red\n\n56) ts52: Build R2 Grover\n\n57) a_magical_me: Trade B1 G1 Pyxis\n\n58) ts52: Move R2 Grover Pyxis\n\n59) a_magical_me: Trade R3 G3 A_magical_me\n\n60) ts52: Attack Y1 Pyxis\n\n61) a_magical_me: Build R2 A_magical_me\n\n62) ts52: Attack G1 Pyxis\n\n63) a_magical_me: Discover R2 A_magical_me Y2 Andromeda\n\n64) ts52: Build G2 Grover\n\n65) a_magical_me: Build G2 A_magical_me\n\n66) ts52: Sacrifice G2 Grover\nBuild R2 Pyxis\nBuild R3 Grover\n\n67) a_magical_me: Sacrifice G2 A_magical_me\nBuild R3 Andromeda\nBuild G2 A_magical_me\n\n68) ts52: Build G2 Grover\n\n69) a_magical_me: Discover G2 A_magical_me B2 Hydra\n\n70) ts52: Trade R1 B1 Ts52\n\n71) a_magical_me: Trade R1 B1 A_magical_me\n\n72) ts52: Discover B1 Ts52 G3 Kermit\n\n73) a_magical_me: Move R3 Andromeda Kermit\n\n74) ts52: Trade R3 B3 Grover\n\n75) a_magical_me: Move B1 A_magical_me Andromeda\n\n76) ts52: Move B3 Grover Andromeda\n\n77) a_magical_me: Sacrifice G2 Hydra\nBuild B2 Andromeda\nBuild B3 Andromeda\nCatastrophe Andromeda Blue\n\n78) ts52: Build G2 Ts52\n\n79) a_magical_me: Attack B1S Kermit\n\n80) ts52: Discover G2 Ts52 G3 Oscar\n\n81) a_magical_me: Trade R3 Y3 Kermit\n\ta_magical_me: Kaboom\n\n82) ts52: Build G2 Pyxis\n\n83) a_magical_me: Build B1 Kermit\n\n84) ts52: Sacrifice G2 Oscar\nBuild G2 Pyxis\nBuild G3 Grover\n\n85) a_magical_me: Move R2 Andromeda Kermit\n\n86) ts52: Trade R2 B2 Pyxis\n\n87) a_magical_me: Move B1 Kermit Ts52\n\n88) ts52: Attack B1 Ts52\n\n89) a_magical_me: Build B3 Kermit\n\n90) ts52: Discover B1 Ts52 Y3 Bigbird\n\n91) a_magical_me: Move B3 Kermit Pyxis\n\ta_magical_me: Sorry about the wait. Been busy.\n\tts52: No worries.\n\n92) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B3 Bigbird\nBuild Y1 Grover\n\n93) a_magical_me: Sacrifice R2 Kermit\nAttack R2S Pyxis\nAttack Y1S Pyxis\n\n94) ts52: Sacrifice Y2 Grover\nMove G2 Pyxis Bigbird\nMove G2 Pyxis Bigbird\n\n95) a_magical_me: Trade B3 R3 Pyxis\n\n96) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B3 Bigbird\nBuild Y2 Grover\n\n97) a_magical_me: Attack B2S Pyxis\n\n98) ts52: Discover B3 Bigbird R2 Elmo\n\n99) a_magical_me: Sacrifice B2 Pyxis\nTrade G3 R3 A_magical_me\nTrade R3 G3 Pyxis\n\n100) ts52: Trade B3 R3 Bigbird\n\n101) a_magical_me: Build B2 Kermit\n\n102) ts52: Build B3 Bigbird\n\n103) a_magical_me: Attack G1S Pyxis\n\n104) ts52: Move G2 Grover Elmo\n\n105) a_magical_me: Sacrifice G3 Pyxis\nBuild G3 Pyxis\nBuild Y2 Pyxis\nBuild Y2 Kermit\n\n106) ts52: S Y2 Grover\nM G2 Bigbird Pyxis\nM G2 Bigbird Pyxis\nC Pyxis Green\n\n107) a_magical_me: Discover Y2 Pyxis G3 Cancer\n\n108) ts52: Build Y2 Grover\n\tts52: sorry for the delay\n\n109) a_magical_me: Move R2 Pyxis Kermit\n\n110) ts52: Move Y2 Grover Elmo\n\n111) a_magical_me: Build R1 Kermit\n\n112) ts52: Build G1 Elmo\n\n\ta_magical_me: Hey, sorry for not finishing the game. I just want to say thanks for the game and congrats. I think it was pretty clear that you were the winner.\n\tts52: No problem. Thanks for the game.\n\nHomeworlds Online (SDG# 26084)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.8, Ended: 2014.9.6\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B3 G2 Y3\n\n3) wil: Build G1 Wil\n\twil: I&#39;m ready for a new lesson...\n\n4) SilentTitan: Build Y1 Silenttitan\n\n5) wil: B G1 Wil\n\n6) SilentTitan: Trade Y1 G1 Silenttitan\n\n7) wil: Trade G1 B1 Wil\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) wil: Build B1 Wil\n\n10) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n11) wil: Trade G1 Y1 Wil\n\n12) SilentTitan: Build G1 Sol\n\n13) wil: Discover B1 Wil G3 G3\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) wil: Build B2 G3\n\n16) SilentTitan: Trade G2 B2 Silenttitan\n\n17) wil: Trade B2 Y2 G3\n\n18) SilentTitan: Build G2 Silenttitan\n\n19) wil: Build G2 Wil\n\n\twil: dang it!\n\nHomeworlds Online (SDG# 26014)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.8.12, Ended: 2014.9.10\nParticipants: wil (S), TeeTeeTee (N), ts52 (E)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\tTeeTeeTee: Let&#39;s give this another try.\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) wil: Homeworld B3 R2 G3\n\n4) TeeTeeTee: Pass\n\twil: No problemo!   But hey there top of the ladder, are you unaware of the star captain&#39;s code?\n\n5) ts52: Build G1 Ts52\n\tTeeTeeTee: I am unaware of the `star captain&#39;s code&#39; ... but I can make a guess of what you&#39;re getting at.\n\n6) wil: Build G1 Wil\n\n7) TeeTeeTee: Build G1 Teeteetee\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\twil: lol, and your guess is?\r\n\n\twil: Oh wow...I wondered what happenned!  You passed, you didn&#39;t have to do that...but quite honorable of you fearless leader!    And yes you just gave us junior officers a chance there..I guess maybe it is unwritten that the best player would not take banker...  too funny tho...  your are too honorable!\n\n9) wil: Trade G1 Y1 Wil\n\n10) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n11) ts52: Build G1 Grover\n\n12) wil: Build G1 Wil\n\n13) TeeTeeTee: Discover Y1 Teeteetee G3 B1\n\n14) ts52: Trade G1 Y1 Grover\n\twil: Look forward to this being my first multi player game to finish...\r\n\n\n15) wil: Build Y2 Wil\n\n16) TeeTeeTee: Build Y2 B1\n\twil: I love it....calling a g3 a b1....too funny..\n\n17) ts52: Build G1 Ts52\n\n18) wil: Discover Y2 Wil R1 R1\n\n19) TeeTeeTee: Discover Y1 B1 G2 Bigbird\n\n20) ts52: Trade G1 R1 Ts52\n\n21) wil: Trade G1 R1 Wil\n\n22) TeeTeeTee: Build G1 Teeteetee\n\n23) ts52: Build G1 Ts52\n\n24) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 R1\n\n25) TeeTeeTee: Trade G1 R1 Teeteetee\n\n26) ts52: Build Y3 Grover\n\n27) wil: Trade Y3 G3 Wil\n\n28) TeeTeeTee: Build Y3 Bigbird\n\n29) ts52: Trade Y3 R3 Grover\n\n30) wil: Trade Y1 B1 Wil\n\n31) TeeTeeTee: Build R2 Teeteetee\n\n32) ts52: Build R2 Grover\n\twil: It is funny, when I see that a move has been made in an HW game....  I never expect that it is this one that needs attention...  It is a completely different game though...  Cutthroat is right...  somewhere along the line, you gotta cut someone out...without making yourself vulnerable.\n\n33) wil: Discover Y2 R1 B2 B2\n\tTeeTeeTee: Yeah, this game can be quite unforgiving at times. A few turns back, I was very tempted to build a y3 instead of trading for an r1, thinking that I could get away without a red ship for another turn. I noticed just in time, though, that I would have been knocked out immediately if I&#39;d done that.\r\n\r\nThere&#39;s another element in the three-player game that isn&#39;t there in the two player-game: if it&#39;s in the players&#39; interests (or at least they think it is), then they can work together to knock someone else out, as they have two attacking turns to the defender&#39;s one turn. Everyone has to guess: would they? (And wil: is it worth an r2 to find out? :P)\n\n34) TeeTeeTee: Move R1 Teeteetee B1\n\twil: exactamentary.....  and funny enough this is the fastest moving game I am currently in!\n\n35) ts52: Discover R3 Grover Y3 Zoe\n\n36) wil: Build G1 Wil\n\tTeeTeeTee: ts52: wil is going to sacrifice his g3 to build three yellow ships on the next turn. If you want to stop him having more large ships than you (and me), then you need to block off a large yellow, either by trading your r3 for a y3, or by discovering a y3 star.\n\twil: Captain, received a transmission on SETI, evidently someone thinks we would risk losing our current fuel reserves by reducing our ability to build and simultaneously increasing our refining capacity....  our scientists looked at this and determined it wasn&#39;t worth the risk of a potential well site catastrophe which would destroy all reserves and exploration in one or more systems...  first contact and what are they thinking?\n\n37) TeeTeeTee: Discover Y3 Bigbird B3 G3\n\tts52: Ok Tee, you convinced me. Here&#39;s hoping I don&#39;t regret it.\n\tTeeTeeTee: Good call. If I was wil, I&#39;d have definitely sacrificed the g3.\n\n38) ts52: Sacrifice G3 Ts52\nBuild R2 Zoe\nBuild R3 Ts52\nBuild R3 Grover\n\twil: cutthroat already...\n\n39) wil: D Y3 R1 R3 R3\n\n40) TeeTeeTee: Build R1 Teeteetee\n\n41) ts52: Discover R2 Grover Y3 Bert\n\n42) wil: Sacrifice G1 Wil\nBuild Y1 B2\n\n43) TeeTeeTee: Build G1 Teeteetee\n\n44) ts52: Trade R1 B1 Ts52\n\n45) wil: B B1 Wil\n\n46) TeeTeeTee: Trade R2 B2 Teeteetee\n\n47) ts52: Move B1 Ts52 Grover\n\n48) wil: Trade Y1 G1 B2\n\n49) TeeTeeTee: Move B2 Teeteetee B1\n\twil: I need to be in more games!!  my housemate is gone, no games going on at home to move...only in 3 others online...and this is the fastest!  challenge me!!\n\n50) ts52: Build G2 Grover\n\n51) wil: Sacrifice B1 Wil\nTrade Y3 G3 R3\n\tTeeTeeTee: I very rarely play more than one Homeworlds game at a time...\n\twil: As fast as they move, I used to like to keep 6-8 going....that way there was a move or two to make every day...\n\n52) TeeTeeTee: Build B1 B1\n\n53) ts52: Move G2 Grover Zoe\n\n54) wil: B G2 Wil\n\n55) TeeTeeTee: Move B2 B1 Bigbird\n\n56) ts52: Move B1 Grover Zoe\n\n57) wil: S G3 Wil\nBuild G2 B2\nBuild G3 Wil\nBuild Y1 Wil\n\n58) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild Y3 Bigbird\nBuild R1 Teeteetee\n\n59) wil: Sacrifice Y2 Wil\nMove G3 R3 Grover\nMove G2 B2 Bert\n\n60) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild R2 B1\nBuild R3 Teeteetee\n\tTeeTeeTee: If I were you, wil, I would have sacrificed the g2 to build a y3 on your last move.\n\twil: And that is why you are top dog!!  Thanx I missed that.  I don&#39;t take enough time on moves.\n\twil: I was concentrating on slyly causing the eliminating of all the small ships and securing my fortress...\n\n61) wil: Sacrifice R1 Wil\nAttack R3E Grover\n\tTeeTeeTee: Damnit, ts52- just when things were about to get interesting...\n\tts52: oh crap. sorry guys... things got hectic here and I lost track\n\tts52: can we try again without hard time?\n\tts52: looks like you can only specify one person to challenge. wil, if you join up, we can try again.\n\tTeeTeeTee: I&#39;m sorry, but I won&#39;t play without hard time... perhaps we can try another three-player game later on, when things are less hectic.\n\tts52: Ok, that&#39;s fair.\n\twil: Dang it!  My record holds... can&#39;t complete a multi person game.\n\n62) TeeTeeTee: Discover B2 Bigbird R1 Ts52e\n\n63) wil: Sacrifice Y1 Wil\nMove G3 Grover Ts52e\n\n64) TeeTeeTee: Sacrifice Y3 Bigbird\nMove B1 B1 Ts52e\nMove B1 Ts52e Wil\nMove B2 Ts52e Wil\nCatastrophe Wil Blue\n\n65) wil: Attack Y1E Grover\n\n66) TeeTeeTee: Move R1 Teeteetee G3\n\twil: I knew I shouldn&#39;t have sacked that single pip...  my fortress was strong....\n\n\twil: well that is that.... I think I still way prefer the binary game...\n\tTeeTeeTee: Yes, I prefer binary too, but I did enjoy this game: Ternary Homeworlds plays very differently to binary. There&#39;s a much greater degree of guessing each players&#39; intentions and working out whether it&#39;s in players&#39; interests to collude or not. There were instances in that game when two players could have caused serious damage to a third, if they could work together - but there was no guarantee that the player you were working with would do what you expected... \r\n\r\nAlso, nobody wanted to start attacking because the third player would continue to acquire ships while the other two were sparring. (For my part, I noticed that by sacrificing and discovering a y1 world, I could be in a position to attack your homeworld - but doing this would quite likely have put ts52 at an advantage. I couldn&#39;t see any obvious way to attack ts52&#39;s homeworld.)\r\n\r\nIt was surprising just how quickly the game changed once ts52 timed out, though. Once ts52 was out, there were lots of free large ships to claim, and no reason to not attack... \n\twil: There is another method where you can only attack to the left...keeps folks from ganging up...hmmm I wonder if it also allows one to use the stars to the right...interesting...\n\nHomeworlds Online (SDG# 26016)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.12, Ended: 2014.8.13\nParticipants: wil (S), anonfunc (N)\nWinner: anonfunc\n\n1) anonfunc: Homeworld B1 R3 G3\n\tanonfunc: Hi!  I&#39;ve played HW a few times physically, but not yet on SDG.\n\n2) wil: Homeworld B3 Y2 G3\n\n3) anonfunc: Build G1 Anonfunc\n\twil: Very cool... you can&#39;t straigten ou the universe but you can play.  It is often best to set up a mock set hat home when it gets compilcated.  Where are you from?  How did you find the game?\n\tanonfunc: I&#39;m in California (Bay Area), and came to the pyramids via BGG\n\n4) wil: Build G1 Wil\n\tanonfunc: Wow, looks like we&#39;ve been playing wrong in person.  I thought I should have been able to build a B1 at home, but couldn&#39;t.\n\n5) anonfunc: Trade G1 B1 Anonfunc\n\twil: very cool, I used to live near tahoe and visit my sister in SF...\n\twil: ah...yes you can only build the color that you already have in your star system (need blue to build a blue)  Hence the reason you have to have a blue and green in your homeworld otherwise you can&#39;t build or change\n\twil: It takes a while to build when you have to keep changing colors...you had faster games\n\n6) wil: Trade G1 B1 Wil\n\tanonfunc: How about yourself?  You&#39;ve been doing the pyramid thing for a while, if I&#39;m not mistaken.\n\n7) anonfunc: Build B2 Anonfunc\n\n8) wil: Build B2 Wil\n\twil: I like the game, I&#39;ve played since last march...I&#39;ve played a lot, I like to keep 5 or more games going at one...I lost a lot to learn, keep getting beat by new strategies, keep making same mistakes....  just looked...played 147, won 83, 56%\n\n9) anonfunc: Trade B2 Y2 Anonfunc\n\twil: *once\n\n10) wil: Discover B2 Wil Y1 Y1\n\n11) anonfunc: Discover Y2 Anonfunc G2 Green\n\n12) wil: Build B2 Wil\n\twil: You name your new stars whatever you want...I tend to keep it simple.\n\twil: You name your new stars whatever you want...I tend to keep it simple.\n\n13) anonfunc: Build Y1 Green\n\n14) wil: Sacrifice G3 Wil\nBuild B2 Y1\nBuild B3 Y1\nBuild B3 Wil\n\n15) anonfunc: Move Y1 Green Anonfunc\nCatastrophe Wil B\n\tanonfunc: Thanks for the game!\n\twil: what did I do?  overpopulate myself?  What was I thinkin?\n\twil: too funny....\n\twil: I&#39;d say I committed suicide on that game....but I wouldn&#39;t want to make light of Mork.\n\n\nHomeworlds Online (SDG# 26040)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.12, Ended: 2014.8.15\nParticipants: SilentTitan (S), anonfunc (N)\nWinner: anonfunc\n\n1) anonfunc: Homeworld B1 R2 G3\n\tanonfunc: Hi!  I&#39;ve played a few times physically, but am just getting started with SDG.\n\n\nHomeworlds Online (SDG# 26070)\nStarted: 2014.8.12, Ended: 2014.8.12\nParticipants: ts52 (S), pinkpan (N)\nWinner: ts52\n\n\tpinkpan: Sorry, this was a mistake.\n\nHomeworlds Online (SDG# 26067)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.13, Ended: 2014.8.13\nParticipants: peterh58 (S), Marmalade (N)\nWinner: Marmalade\n\n\nHomeworlds Online (SDG# 26103)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.13, Ended: 2014.8.16\nParticipants: Marmalade (S), peterh58 (N)\nWinner: peterh58\n\n1) peterh58: Homeworld G1 B2 R3\n\tpeterh58: My first online Homeworlds game, so be patient!\r\n\n\n\nHomeworlds Online (SDG# 26102)\nStarted: 2014.8.13, Ended: 2014.8.21\nParticipants: anonfunc (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\n2) anonfunc: Homeworld Y1 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) anonfunc: Build G1 Anonfunc\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\n6) anonfunc: Discover G1 Anonfunc B3 Blue\n\n7) ts52: Build G1 Ts52\n\n8) anonfunc: Build G2 Anonfunc\n\n9) ts52: Trade G1 Y1 Gonzo\n\n10) anonfunc: Trade G1 Y1 Blue\n\n11) ts52: Move G1 Ts52 Gonzo\n\n12) anonfunc: Sacrifice G2 Anonfunc\nBuild Y2 Blue\nBuild G1 Anonfunc\n\n13) ts52: Build Y2 Gonzo\n\n14) anonfunc: Trade Y2 G2 Blue\n\n15) ts52: Build G1 Ts52\n\n16) anonfunc: Discover G1 Anonfunc G3 Green\n\n17) ts52: Trade Y2 R2 Gonzo\n\n18) anonfunc: Build G2 Anonfunc\n\n19) ts52: Move R2 Gonzo Green\n\n20) anonfunc: Sacrifice G2 Blue\nBuild G2 Green\nBuild G2 Green\nCatastrophe Green G\n\n21) ts52: Build Y2 Gonzo\n\n22) anonfunc: Trade G2 R2 Anonfunc\n\n23) ts52: Trade Y2 R2 Gonzo\n\n24) anonfunc: Build G1 Anonfunc\n\n25) ts52: Build Y2 Gonzo\n\n26) anonfunc: Move G1 Anonfunc Blue\n\n27) ts52: Move R2 Gonzo Blue\n\n28) anonfunc: Build G2 Anonfunc\n\n29) ts52: Attack Y1 Blue\n\n\tanonfunc: Don&#39;t see a way out of this.  Thanks for the game!\n\tts52: Fair enough. Thanks for the game.\n\nHomeworlds Online (SDG# 26100)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.13, Ended: 2014.8.16\nParticipants: anonfunc (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B1 G3\n\n2) anonfunc: Homeworld Y1 B2 G3\n\twil: thanx for the rematch...lets see what mistakes I can make this time!  Nave ya joined the ladder yet?  It takes a while to work thru the dead wood.\n\n3) wil: Build G1 Wil\n\tanonfunc: I didn&#39;t opt-in to anything, but it did print out some rank numbers on the last game\n\n4) anonfunc: Build G1 Anonfunc\n\n5) wil: Trade G1 B1 Wil\n\n6) anonfunc: Discover G1 Anonfunc B3 Blue\n\twil: Yeah, I&#39;ve actually only played HW here...but and it will record your games and ranking based on play....but there is a ladder to compete for position that is separate... \n\twil: Yeah, I&#39;ve actually only played HW here...but and it will record your games and ranking based on play....but there is a ladder to compete for position that is separate... \n\tanonfunc: Gotcha.  It&#39;s nice in person... the games run about 30-40 minutes for us, and there&#39;s some good heckling around mistakes.\n\n7) wil: Build B1 Wil\n\twil: I agree.... in person is great (and now you have a twist you missed, only growing ships you already have)  And playing with a chess clock you can make it a ten minute game and multiply the mistakes, increase the learning...\n\n8) anonfunc: Build G1 Blue\n\n9) wil: Build G1 Wil\n\n10) anonfunc: Trade G1 Y1 Blue\n\n11) wil: Trade G1 Y1 Wil\n\n12) anonfunc: Build Y2 Blue\n\n13) wil: Build Y2 Wil\n\n14) anonfunc: Trade Y2 B2 Blue\n\n15) wil: Trade B1 R1 Wil\n\n16) anonfunc: Build Y2 Blue\n\n17) wil: Discover Y2 Wil G2 G2\n\n18) anonfunc: Build G1 Anonfunc\n\n19) wil: Build Y2 G2\n\n20) anonfunc: Discover B2 Blue G2 Green\n\n21) wil: Move Y2 G2 Blue\n\n22) anonfunc: Sacrifice G3 Anonfunc\nBuild G1 Blue\nBuild G2 Blue\nBuild G3 Anonfunc\n\n23) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 G2\nBuild Y3 Blue\nCatastrophe Blue Y\n\n24) anonfunc: Sacrifice G3 Anonfunc\nBuild G3 Anonfunc\nBuild G3 Anonfunc\nBuild B1 Green\n\twil: well I made it past 8 moves...that&#39;s progress!!\n\n25) wil: Trade Y3 G3 Wil\n\tanonfunc: :-D\n\n26) anonfunc: Sacrifice B2 Green\nTrade B1 R1 Green\nTrade G3 Y3 Anonfunc\n\n27) wil: Build G3 Wil\n\n28) anonfunc: Build R1 Green\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild Y2 Wil\n\n30) anonfunc: Sacrifice Y3 Anonfunc\nMove R1 Green Wil\nMove R1 Green Wil\nDiscover G1 Blue B2 Bluish\nCatastrophe Wil Red\n\n31) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild Y2 G2\n\n32) anonfunc: Trade G1 B1 Anonfunc\n\twil: I was considering moving the red out...I thought the loss was too great to lose all your red and your Y3, that the reboot at that time would leave me with even more advantage...it appears it did dang interesting universe right now...\n\tanonfunc: I&#39;m a sucker for the easy catastrophes, but I&#39;m too close to being locked out of yellow.\n\n33) wil: Sacrifice Y2 G2\nMove Y3 G2 Blue\nDiscover G3 Wil Y3 Y3\n\n34) anonfunc: Trade G2 Y2 Blue\n\n35) wil: Trade Y1 R1 Wil\n\n36) anonfunc: Trade B1 R1 Anonfunc\n\twil: whew barely escaped disaster....once I looked at that oh my...\n\n37) wil: Trade G2 R2 Wil\n\n38) anonfunc: Sacrifice G3 Anonfunc\nBuild R1 Anonfunc\nBuild R2 Anonfunc\n\nBuild Y1 Blue\n\tanonfunc: Hmm.  Just saw something I hadn&#39;t thought of...\n\twil: I thought you were gonna sack your yellow and move all the way in...  I think I still had a step on you though.\n\twil: this is a &#39;red alert&#39;  Unless you get a red ship, I&#39;m moving my Y3 into your homeworld and will take it over...   \r\n\n\twil: You may back up your move and try another \n\tanonfunc: Thanks for the warning!\n\n\tanonfunc: Yep, dead.  Good game!\n\twil: thank you for the game...don&#39;t hesitate to challenge me again...  I&#39;ve played as many as three games with the same person simultaneously....funny how different they all are...look forward to another.\n\nHomeworlds Online (SDG# 26105)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.15, Ended: 2014.9.13\nParticipants: peterh58 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\tpeterh58: homeworld G1 B2 R3\n\n2) peterh58: Homeworld G1 B2 R3\n\twil: you can make your move now...do you play the physical game with pyramids?\r\n\n\twil: thank you for the game!!\n\tpeterh58: homeworld G1 B2 R3\n\n3) wil: Build G1 Wil\n\tpeterh58: Oops, I see now.\r\n\n\tpeterh58: I&#39;ve played a couple of times with my pyramids, but find it difficult to persuade people to play. I think it&#39;s a very cool game though.\r\n\n\n4) peterh58: Build R1 Peterh58\n\twil: Chess players are the best...they already have the mindset for this kind of game... and I like it better....\n\twil: You switched from fortress to banker I see...\n\n5) wil: Build G1 Wil\n\tpeterh58: Fortress to banker? Not familiar with the jargon... I&#39;m clearly doomed already  :)\r\n\n\n6) peterh58: Trade R1 Y1 Peterh58\n\twil: Well not doomed but you did provide me the early advantage.  \n\twil: the starting HWs  Banker 2/1 stars in homeworld allowing you to build &#39;investments&#39; of 3 pip stars which by sacrificing green ships can become your own later in the game...    Fortress is 3/2 pip homeworld because 1 pips often get used up in the game if played correctly you&#39;ve got a 1 pip mote that is hard to penetrate.  Mine 3/1 hw, is goldilocks...no strategy...just not big, not small for first stars to access...  \n\tpeterh58: Flip. There&#39;s clearly a lot to think about! I must have a hunt round for strategy articles...\r\n\n\n7) wil: Discover G1 Wil B2 B2\n\n8) peterh58: Build Y1 Peterh58\n\twil: where abouts you from? how did you find the pyramids?\r\n\n\tpeterh58: I&#39;m in Oxford UK. I bought Zendo many years ago from my FLGS. I love the &quot;open source&quot; nature of the pyramid games.\r\n\n\n9) wil: Build G2 B2\n\twil: lol...zendo was also my introduction!   My daughter bought it.   \n\n10) peterh58: Discover Y1 Peterh58 G3 Deneb\n\n11) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild G2 Wil\nBuild G3 Wil\n\n12) peterh58: Trade R3 G3 Peterh58\n\n13) wil: T G2 Y2 B2\n\tpeterh58: Oof! That was effective!\n\n14) peterh58: Build Y2 Deneb\n\n15) wil: Trade G2 R2 B2\n\twil: That is called a factory....any time you have a large G3 and another green you&#39;ve built yourself a factory....the factory doesn&#39;t go into operation though until you can sac your G3 to build 3 and actually get a 3 back...(so the bank has to be out of green or low on green.)\n\n16) peterh58: Trade G3 R3 Peterh58\n\n17) wil: Trade G2 R2 Wil\n\n18) peterh58: Build R1 Peterh58\n\n19) wil: Build G2 B2\n\n20) peterh58: Move R1 Peterh58 Deneb\n\n21) wil: Trade G2 B2 B2\n\n22) peterh58: Build R1 Deneb\n\tpeterh58: I should have given myself a shorter name, saved on typing!\r\n\n\twil: lol.... I think some folks name their new star systems long convuluted names just to keep folks from attacking...\n\n23) wil: Build G2 B2\n\tpeterh58: Haha! That&#39;s mean.\n\n24) peterh58: Discover Y1 Deneb G2 Vega\n\n25) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 B2\n\n26) peterh58: Build Y2 Vega\n\n27) wil: Discover G3 B2 Y3 Y3\n\tpeterh58: I get it (too late). I can&#39;t take advantage of your green buildup, as you now have the monopoly.\n\n28) peterh58: Build Y3 Deneb\n\n29) wil: Build Y3 B2\n\twil: Yes you don&#39;t want anyone to get a monopoly in any economy.\n\n30) peterh58: Move Y3 Deneb Peterh58\n\n31) wil: Move Y3 B2 Deneb\n\n32) peterh58: Move Y1 Peterh58 Y3\n\n33) wil: Sacrifice R2 B2\nAttack Y1 Y3\nAttack Y2 Deneb\n\n34) peterh58: Build R1 Peterh58\n\n35) wil: Trade G2 R2 B2\n\n36) peterh58: Move Y1 Vega Deneb\n\n37) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild R2 Wil\nBuild G3 Wil\n\n38) peterh58: Build R3 Deneb\n\n39) wil: Sacrifice Y2 Deneb\nMove Y3 Deneb Vega\nMove R2 B2 Deneb\nCatastrophe Deneb R\n\n40) peterh58: Trade R1 B1 Peterh58\n\n41) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild Y2 B2\n\tpeterh58: Darn! Only one undo...\n\n42) peterh58: Move B1 Peterh58 Deneb\n\twil: One is sometimes better than none...but not always...\n\n43) wil: Move Y2 B2 Deneb\n\n44) peterh58: Build B1 Deneb\n\n45) wil: Sacrifice R2 Wil\nAttack Y2 Vega\nAttack B1 Deneb\n\n46) peterh58: Build R1 Peterh58\n\n47) wil: Move B2 B2 Y3\n\n48) peterh58: Sacrifice R1 Peterh58\nAttack B1N Deneb\n\n49) wil: Sacrifice R2 Wil\nAttack B1 Deneb\nAttack Y1 Deneb\n\n50) peterh58: Build R1 Peterh58\n\n51) wil: Trade Y2 R2 Deneb\n\n52) peterh58: Build Y2 Peterh58\n\twil: If I were a better player this would probably be over... The mass of pieces I have against you should have created victory long ago...but alas..all I seem to be doing is building an army at your border...\n\tpeterh58: Well, yes, I am feeling a bit outnumbered!\r\n\n\n53) wil: Sacrifice Y2 Vega\nMove Y1 Deneb Peterh58\nMove Y1 Y3 Peterh58\nCatastrophe Peterh58 Y\n\n54) peterh58: Build B1 Deneb\n\n55) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Y3\nBuild B3 Y3\n\n56) peterh58: Trade B1 Y1 Deneb\n\twil: the end is near...\r\n\n\twil: where are you out of?  I am east coast, near DC.\n\tpeterh58: Ouch! \r\nI&#39;m in Oxford, England, I work as a neuroscientist. How about you?\r\n\n\n57) wil: Attack Y1 Deneb\n\twil: I was just asked to ask if Thirsty Meeples (?) has a set yet?  NeuroScientist...  wow.  Construction Manager..\n\n58) peterh58: Trade R1 Y1 Peterh58\n\n59) wil: Sacrifice Y3 Vega\nMove B3 Y3 Peterh58\nMove B3 Y3 Peterh58\nMove G3 Y3 Peterh58\n\tpeterh58: They might have a Zendo set, I&#39;ll look out for it when I&#39;m next in there. Have you heard of Thirsty Meeples over there then?\n\twil: lol, i was thinking he was talkin about a mutual friends screen/ nickname...\n\n60) peterh58: Build Y2 Peterh58\n\tpeterh58: Ah, OK. Thirtsy Meeples is this excellent games cafe in Oxford.\r\n\n\n61) wil: Sacrifice R2 Deneb\nAttack R3 Peterh58\nAttack Y2 Peterh58\n\twil: Well then, they need to get a set of pyramids\n\n62) peterh58: Build Y2 Peterh58\n\twil: I look forward to playing with you again... please challenge me however many times you wish...\n\tpeterh58: build y2 peterh58\n\n63) wil: Sacrifice G3 Wil\nBuild Y3 Peterh58\nBuild B1 Peterh58\nBuild Y3 Deneb\nCatastrophe Peterh58 Y\nCatastrophe Peterh58 B\n\n\n\tpeterh58: Thanks, I will read the strategy wiki and try to do better next time!\r\n\n\tpeterh58: I played another pyramid game last weekend, World War 5. It was great fun. Have you tried it?\n\twil: ten times better than risk!\n\twil: I lost about half of my games of homeworlds...  by doing so I&#39;ve watched the strategies that come at me... yet there are still folks who beat me everytime (but they are getting fewer) \r\n\n\nHomeworlds Online (SDG# 26104)\nVariants: &quot;Hard time&quot;\nStarted: 2014.8.16, Ended: 2014.8.19\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 26150)\nVariants: &quot;Hard time&quot;\nStarted: 2014.9.4, Ended: 2014.9.28\nParticipants: TeeTeeTee (S), TwoShort (N)\nWinner: TeeTeeTee\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTeeTeeTee: I was hoping that you&#39;d challenge me! Have a good game.\n\n2) TeeTeeTee: Homeworld B1 R2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) TeeTeeTee: Trade G1 R1 Teeteetee\n\twil: Do I get to get beat by the winner or loser?\n\tTeeTeeTee: I&#39;ll accept a challenge after this game, if you like... but I think it might be more appropriate for you to wait a bit and not make a ladder challenge, this time. You&#39;ve avoided being challenged on the ladder before by immediately re-challenging someone as soon as you&#39;ve lost a game, so nobody lower down on the ladder ever has the opportunity to play you: I only got the chance to challenge you once before due to a glitch in the system.\r\n\r\nAlso, please ask peterh58 if the Thirsty Meeples has a pyramid set. :P\n\n7) TwoShort: Build B1 Twoshort\n\twil: I&#39;m on the third rung like a sitting duck until this game concludes!   So I&#39;ll be right here in the spectator stands..\n\n8) TeeTeeTee: Build R1 Teeteetee\n\n9) TwoShort: Trade B1 Y1 Twoshort\n\n10) TeeTeeTee: Trade R1 Y1 Teeteetee\n\n11) TwoShort: Build B1 Twoshort\n\n12) TeeTeeTee: Build R1 Teeteetee\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) TeeTeeTee: Discover R1 Teeteetee B3 Edinburgh\n\n15) TwoShort: Build B2 Grogar\n\n16) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild R2 Edinburgh\nBuild R2 Edinburgh\nBuild R3 Teeteetee\n\n17) TwoShort: Trade B1 Y1 Grogar\n\n18) TeeTeeTee: Sacrifice Y1 Teeteetee\nMove R2 Edinburgh Grogar\n\n19) TwoShort: Sacrifice Y1 Grogar\nDiscover B2 Grogar R3 Rover\n\n20) TeeTeeTee: Trade R3 G3 Teeteetee\n\n21) TwoShort: Build B1 Twoshort\n\n22) TeeTeeTee: Build R3 Teeteetee\n\n23) TwoShort: Discover B1 Twoshort B2 Borbor\n\n24) TeeTeeTee: Trade R3 Y3 Teeteetee\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Borbor\nBuild B3 Twoshort\nBuild Y1 Twoshort\n\n26) TeeTeeTee: Move G3 Teeteetee Rover\n\n\tTeeTeeTee: Thanks for the game\n\tTeeTeeTee: May I ask, did you unintentionally run out of time here, or was that a tacit resignation?\n\tTwoShort: Whoops, sorry.  I meant to resign intentionally.  I kept coming back looking for a decent move, but there isn&#39;t one.   Good game.\n\nHomeworlds Online (SDG# 26110)\nStarted: 2014.9.13, Ended: 2014.11.13\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\twil: I gotta go on a serious effort to recruit homeworlds players to this site... I need to play more!!\n\tts52: You know homeworlds players not on this site?\n\n5) wil: Trade G1 B1 Wil\n\twil: I am just starting to teach neighbors...but I have three players that I play live games with occasionally now.  I like this because when you are waiting for a train, or appt, you can make moves and check out the games...(like the game, not the format) \n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build B2 Wil\n\tts52: Nice that you have local players. This is the only way I get to play these days.\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\twil: Got to play again today...teachin nieghbors\r\n\n\n9) wil: Trade B1 R1 Wil\n\n10) ts52: Build B1 Kermit\n\n11) wil: Build R1 Wil\n\n12) ts52: Trade B1 R1 Kermit\n\n13) wil: Build R2 Wil\n\n14) ts52: Build R2 Kermit\n\n15) wil: Discover R2 Wil G2 G2\n\n16) ts52: Build G1 Ts52\n\n17) wil: Trade R1 Y1 Wil\n\n18) ts52: Trade R2 Y2 Kermit\n\n19) wil: Build Y1 Wil\n\n20) ts52: Build B1 Kermit\n\n21) wil: Move B2 Wil G2\n\n22) ts52: Discover B1 Kermit G2 Oscar\n\n23) wil: Move Y1 Wil G2\n\n24) ts52: Trade G1 R1 Ts52\n\n25) wil: Build R2 G2\n\n26) ts52: Build G1 Ts52\n\n27) wil: T R2 Y2 G2\n\n28) ts52: Build R2 Kermit\n\n29) wil: D Y2 G2 G1 G1\n\n30) ts52: Move R2 Kermit Oscar\n\n31) wil: Build Y1 G2\n\n32) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\nBuild R3 Oscar\n\n33) wil: B R3 G2\n\n34) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit G2\nMove R2 Kermit G2\nCatastrophe G2 Red\n\n35) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y2 G1\nBuild Y3 Wil\n\n36) ts52: Build G2 Ts52\n\tts52: Well that&#39;s unfortunate. Well played\n\n37) wil: Discover Y2 G2 G3 G3\n\n38) ts52: Build G3 Ts52\n\n39) wil: Discover Y2 G1 B3 B3\n\twil: I was avoiding what I was afraid of and moved from the wrong star!!!   I thought you&#39;d move your big red gun in and take one of my Y2s...\n\n40) ts52: Discover G3 Ts52 R1 Elmo\n\n41) wil: Move R1 Wil G2\n\n42) ts52: Sacrifice G2 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\n\n43) wil: Build R2 G2\n\n44) ts52: Sacrifice G3 Ts52\nBuild B2 Oscar\nBuild B3 Oscar\nBuild B3 Kermit\n\twil: Is it possible I will have my first stalemate as we hold our control by stubbornly refusing to lose our monopolies and begin to pass?\n\n45) wil: Sacrifice Y2 B3\nMove R1 G2 G1\nMove R1 G1 Ts52\n\n46) ts52: Trade R3 G3 Ts52\n\n47) wil: Build R2 G2\n\n48) ts52: Trade B2 Y2 Oscar\n\n49) wil: Discover Y1 Wil B2 B2\n\n50) ts52: Attack R1 Ts52\n\twil: why did I let you have a yellow??  I would never win, but I assurred a stalemate..\r\n\n\n51) wil: Move R2 G2 G1\n\n52) ts52: Move R3 Oscar G3\n\n53) wil: Move Y2 G3 B2\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Oscar\nBuild R3 G3\n\n55) wil: Discover Y1 G2 B3 B3\n\n56) ts52: Move R3 Oscar G1\n\twil: the struggle is real\n\n57) wil: Sacrifice Y2 G1\nDiscover R2 G1 Y2 Y3\nMove R2 G2 B3\n\tts52: Wow, maximum utilization. I&#39;m impressed... now what? :)\n\twil: my only choice since my early mistakes was to attempt to force a stalemate by you not being able to move...it is still my only choice...you have not made a mistake that I found to capitalize on...\r\n\n\twil: I am outnumbered...out gunned... are ties possible in this format?  If not....I guess I should resign as you clearly have and have had the advantage.\n\twil: I am thinking you finish me off by sacking your only yellow and moving two big guns into two different systems....and taking over ships...I don&#39;t know where that leads for sure though...\r\n\n\n58) ts52: Move Y2 Oscar G3\n\twil: yeah, that is better... don&#39;t think I can squirm out of this.\r\n\n\twil: yeah, that is better... don&#39;t think I can squirm out of this.\r\n\n\tts52: It seems unlikely, but I&#39;ve certainly screwed up before.\n\n59) wil: Pass\n\n60) ts52: Move R3 G3 G2\n\n61) wil: Sacrifice Y1 G2\nDiscover B2 G2 Y1 Y1\n\twil: It has now gone past borderline ridiculous...I am a mouse without much life, that the cat is just toying with...\n\n62) ts52: Sacrifice G3 Elmo\nBuild G3 Ts52\nPass\nPass\n\n63) wil: Pass\n\n64) ts52: Move G3 Ts52 Y1\n\n65) wil: Sacrifice Y2 B2\nDiscover B2 Y1 Y2 Y2\nPass\n\n66) ts52: Sacrifice G3 Y1\nBuild G3 Elmo\nBuild Y1 G3\nPass\n\n67) wil: Pass\n\twil: look at the armada of ships you have my galaxy is surrounded...\n\n68) ts52: Move Y1 G3 Kermit\n\n69) wil: Pass\n\n70) ts52: Move Y1 Kermit Oscar\n\n71) wil: Move R2 B3 Y3\n\twil: Fought on 2nd August, 216 BC, it was one of the major battles of Second Punic War. It took place in the town of Cannae in Italy. The army of Cathage, very easily defeated a numerically greater army of the Romans. The most significant fact associated with the battle is that more than 80% of the losing side was captured or killed by the army of Cathage under the leadership of legendary Hannibal.\n\n72) ts52: Move B3 Oscar Wil\n\n73) wil: Sacrifice R2 Y3\nAttack B3 Wil\nPass\n\n74) ts52: Build R2 G3\n\n75) wil: Pass\n\n76) ts52: Sacrifice Y2 G3\nMove B3 Kermit Oscar\nMove B3 Oscar Wil\n\n77) wil: Move B2 Y2 Wil\nCatastrophe Wil B\n\twil: I&#39;m gonna resign at 40....I&#39;ll have drug it out long enough...funny freakin game this one was.\n\n78) ts52: Build Y2 Oscar\n\tts52: :) This has definitely been a unique game.\n\n79) wil: Pass\n\n80) ts52: Sacrifice Y1 Oscar\nMove G3 Elmo Wil\n\n81) wil: Sacrifice R2 Y3\nAttack G3 Wil\nPass\n\twil: hee hee\n\n82) ts52: Sacrifice Y2 Oscar\nMove R3 G1 Wil\nMove R3 G2 Wil\n\n83) wil: Sacrifice G3 Wil\nBuild Y1 Wil\nBuild Y2 Wil\nBuild Y2 B2\nCatastrophe Wil Y\n\n\twil: now then, that doesn&#39;t look near as bad as it did a while ago....  beatin me up all over the board you are!\n\tts52: :) Well played. Thanks for the game!\n\twil: the game is supposed to not allow you to commit suicide... I get away with it every now and then...I believe this ranks amongst the weirdest games i&#39;ve played (mostly my fault)\n\tts52: Definitely one of the strangest games I&#39;ve every played too.\n\nHomeworlds Online (SDG# 26200)\nVariants: &quot;Hard time&quot;\nStarted: 2014.9.14, Ended: 2014.9.18\nParticipants: goulo (S), Aristos (N)\nWinner: goulo\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R3 B1 G3\n\tAristos: The great Aristos Empire celebrates the launching of its first interstellar vessel. Scientists eagerly debate what sort of creatures we will find in the depths. Theologians debate whether they will share our mythos. Chefs debate whether they will be tasty.\n\n3) Aristos: Build Y1 Aristos\n\tgoulo: happy exploration!\n\n4) goulo: Build G1 Goulo\n\n5) Aristos: Discover Y1 Aristos B1 Spark\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Aristos: Discover Y1 Spark G2 Flash\n\n8) goulo: Build G1 Goulo\n\n9) Aristos: Build Y1 Aristos\n\n10) goulo: Build Y2 Goulo\n\n11) Aristos: Build Y2 Flash\n\n12) goulo: Trade Y2 R2 Goulo\n\n13) Aristos: Trade Y1 B1 Aristos\n\n14) goulo: Move R2 Goulo Flash\n\n15) Aristos: Sacrifice Y1 Flash\nDiscover Y2 Flash R3 Refuge\n\tAristos: &quot;Captain! Aliens! We&#39;ve never seen another species before!&quot; \r\n&quot;What a wonderful opportunity! Open hailing frequencies!&quot;\r\n&quot;Sir! They appear to be hostile!&quot;\r\n&quot;WHAT? Just attacking without greeting? By the gods, we shall remember this. Let us withdraw for now.&quot;\n\n16) goulo: Build Y1 Goulo\n\n17) Aristos: Build B1 Aristos\n\tgoulo: &quot;Wait, they weren&#39;t hostile. They just had their ship painted red.&quot;\n\n18) goulo: Move Y1 Goulo Flash\n\tAristos: Diplomats have patched relations for the moment, but the leadership of the Aristos Empire remains wary.\n\n19) Aristos: Trade B1 G1 Aristos\n\n20) goulo: Discover R2 Flash Y1 Citroneto\n\n21) Aristos: Trade G1 R1 Aristos\n\tAristos: &quot;You gave what command to our troops, Captain?!?!?!&quot;\r\n&quot;Don&#39;t worry, General... the Edit Universe Project was a success.&quot;\n\n22) goulo: Build Y2 Flash\n\n23) Aristos: Build R1 Aristos\n\n24) goulo: Sacrifice G3 Goulo\nBuild Y2 Flash\nBuild Y3 Goulo\nBuild Y3 Goulo\n\n\tAristos: good game\n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 26106)\nVariants: &quot;Hard time&quot;\nStarted: 2014.9.15, Ended: 2014.9.20\nParticipants: wil (S), jotarp (N)\nWinner: wil\n\n1) jotarp: Homeworld G1 B2 Y3\n\n2) wil: Homeworld B3 G1 G3 *\n\n\twil: Thank you for the game!   First time playing homeworlds?\n\nHomeworlds Online (SDG# 26223)\nVariants: &quot;Hard time&quot;\nStarted: 2014.9.18, Ended: 2014.12.6\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tdlwillson: You thought you&#39;d never see me again, didn&#39;t you?\r\n\r\nWell, I remembered my password!\r\n\r\nActually, I didn&#39;t, but the reminder thing finally worked. :-)\n\tSilentTitan: What r u on about?  I saw you at tacticon!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\tdlwillson: Ha! Take that! You *never* would&#39;ve guessed I&#39;d do that, would you?\r\n\r\nEnough of my silliness... It&#39;s good to be back.\n\n6) dlwillson: D G1 Dlwillson B2 Smurf\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) dlwillson: B G1 Dlwillson\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) dlwillson: Trade G3 Y3 Dlwillson\n\n11) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover Y1 Silenttitan G3 Sol\nDiscover Y1 Sol G2 Soul\n\n12) dlwillson: Build G1 Dlwillson\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y2 Soul\nBuild Y2 Silenttitan\n\n14) dlwillson: Move Y3 Dlwillson Soul\nCatastrophe Soul Y\n\n15) SilentTitan: Trade Y2 G2 Silenttitan\n\tSilentTitan: Funny looks like I should have six ships out of those builds\n\n16) dlwillson: Build G2 Smurf\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) dlwillson: T G2 Y2 Smurf\n\n19) SilentTitan: Build Y2 Silenttitan\n\n20) dlwillson: B G2 Dlwillson\n\n21) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n22) dlwillson: D G1 Dlwillson B2 Sky\n\n23) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n24) dlwillson: D Y2 Smurf G3 Turf\n\n25) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\tdlwillson: drat\n\n26) dlwillson: Build Y3 Turf\n\n27) SilentTitan: Trade Y2 G2 Silenttitan\n\n28) dlwillson: S Y2 Turf\nD G1 Smurf Y3 Sunny\nD G2 Dlwillson Y2 Golden\n\n29) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol Sky\nMove Y1 Sky Dlwillson\n\n30) dlwillson: Sacrifice G2 Golden\nBuild Y2 Turf\nBuild Y2 Turf\n\n31) SilentTitan: Trade Y1 R1 Dlwillson\n\n32) dlwillson: B G2 Dlwillson\n\n33) SilentTitan: Attack G1 Dlwillson South\n\n34) dlwillson: Sacrifice Y2 Turf\nMove Y3 Turf Sky\nMove Y3 Sky Dlwillson\n\n35) SilentTitan: Build R1 Dlwillson\n\n36) dlwillson: Trade G2 R2 Dlwillson\n\n37) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 Dlwillson\nBuild G2 Dlwillson\n\n38) dlwillson: Sacrifice R2 Dlwillson\nAttack G2 Dlwillson\nAttack G2 Dlwillson\n\n39) SilentTitan: Build G2 Dlwillson\nCatastrophe Dlwillson Green\n\n40) dlwillson: Build G1 Sunny\n\n41) SilentTitan: Trade R1 Y1 Dlwillson\n\n42) dlwillson: Trade Y3 G3 Dlwillson\n\n43) SilentTitan: Move R1 Dlwillson Sky\n\n44) dlwillson: Sacrifice G1 Sky\nBuild G1 Sunny\n\n45) SilentTitan: Build Y2 Soul\n\tdlwillson: You&#39;re really quite good at this game. It&#39;s very satisfying to play against you.\n\n46) dlwillson: Build G2 Dlwillson\n\n47) SilentTitan: Move Y2 Soul Silenttitan\n\n48) dlwillson: Trade G2 R2 Dlwillson\n\n49) SilentTitan: Trade Y2 G2 Silenttitan\n\n50) dlwillson: Attack Y1 Dlwillson\n\n51) SilentTitan: Move G2 Silenttitan Sunny\nCatastrophe Sunny Green\n\n52) dlwillson: Build Y2 Turf\n\n53) SilentTitan: Discover Y1 Soul G2 Sol\n\n54) dlwillson: Sacrifice Y2 Turf\nMove Y1 Dlwillson Sky\nDiscover Y1 Sky G3 Field\n\n\tdlwillson: Good game, bro&#39;\n\nHomeworlds Online (SDG# 26272)\nVariants: &quot;Hard time&quot;\nStarted: 2014.9.29, Ended: 2014.10.7\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: Homeworld Y2 B1 G3\n\n2) TeeTeeTee: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\n4) TeeTeeTee: Build G1 Teeteetee\n\twil: Disappointing clock run out last game, I&#39;m gonna do my darndest to give you a little challenge.\n\n5) wil: T G1 B1 Wil\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\tTeeTeeTee: I was treating TwoShort&#39;s time-out as if it was a resignation: I&#39;d taken the lead very early on in the game, and would have been very surprised if TwoShort had found a way to catch up after my last move.\n\n7) wil: B B1 Wil\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) wil: D B1 Wil G3 G3\n\n10) TeeTeeTee: Discover Y1 Teeteetee G2 Grasshopper\n\n11) wil: B B2 G3\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Grasshopper\nBuild Y2 Grasshopper\nBuild Y3 Teeteetee\n\n13) wil: Build B2 Wil\n\twil: Congrats on the game...\n\twil: this one too it appears...\n\n14) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n15) wil: D B1 Wil Y3 Y3\n\n16) TeeTeeTee: Discover Y2 Grasshopper B3 Beetle\n\n17) wil: Build B2 Wil\n\twil: b b2 wil\n\n18) TeeTeeTee: Discover Y2 Grasshopper B3 Ant\n\n19) wil: Trade B2 R2 G3\n\twil: nice...it is so over for me...\n\n20) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y3 Ant\nBuild Y3 Beetle\nPass\n\n21) wil: Trade B2 R2 Wil\n\tTeeTeeTee: I&#39;m in the lead again, yes, but it&#39;d be quite easy for me to lose that advantage if I&#39;m careless here. Can you see why did that last move, by the way?\n\twil: Oh yeah...you successfully cornered me out...I had plenty of opportunity to correct early on and blew it.  the likelihood of your errors is slim...but I am waitn\n\n22) TeeTeeTee: Trade Y3 R3 Ant\n\n23) wil: Build B2 Wil\n\n24) TeeTeeTee: Trade Y3 G3 Beetle\n\n25) wil: Build B2 G3\n\n26) TeeTeeTee: Build Y3 Grasshopper\n\n27) wil: Trade B2 G2 Wil\n\n28) TeeTeeTee: Move Y3 Grasshopper G3\n\n29) wil: Discover B2 Wil Y3 Why3\n\n30) TeeTeeTee: Sacrifice R3 Ant\nAttack R2 G3\nAttack B2 G3\nAttack B1 G3\n\twil: If I had any sense I&#39;d resigned move 7\n\n31) wil: Move G2 Wil Y3\n\tTeeTeeTee: Hmm. It would have been a stronger move for me to build another y3 on my last move, rather than move that y3 to your world g3 - guess I was being impatient...\n\n32) TeeTeeTee: Build B2 G3\n\twil: I just tried to take a little of your clout away and prolong the agony.\n\n33) wil: Build G1 Y3\n\n34) TeeTeeTee: Move Y3 G3 Grasshopper\n\n35) wil: Discover G1 Y3 R2 R2\n\tTeeTeeTee: Hmm. This game punishes impatience.\n\n36) TeeTeeTee: Sacrifice B1 G3\nTrade Y3 R3 Grasshopper\n\n37) wil: Build R1 Wil\n\n38) TeeTeeTee: Build Y3 Grasshopper\n\n39) wil: Build G1 R2\n\n40) TeeTeeTee: Build R1 G3\n\n41) wil: Build G1 Wil\n\n42) TeeTeeTee: Sacrifice Y3 Grasshopper\nMove R1 G3 Wil\nMove R2 G3 Wil\nMove G3 Beetle Wil\nCatastrophe Wil Red\n\n\tTeeTeeTee: A more stalling move for you would have been &quot;trade b1 y3 r1&quot;.\n\twil: ah...   I stalled long enough...   I played pittifully....I&#39;ll give it a few days for someone else to challenge you before I try again...thanx\n\tTeeTeeTee: Hmmm... I don&#39;t think you played &#39;pitifully&#39;. You made a catastrophic mistake at the start, but after that, I don&#39;t think there was much else you could have done better - you were only playing on in the hope that I&#39;d slip up somewhere from that point - and you put up quite a strong defence. TwoShort made the same catastrophic error right at the start of the last game that I played, too.\r\n\r\nAt the beginning of the game, when there&#39;s a choice of two colours with two small pyramids in the stash - yellow and blue in this case, and red and blue in the game with TwoShort - it&#39;s surely better to choose the colour with fewer medium pyramids in the stash. I was able to very quickly cut off all access to yellows in this game, and then stake out the large blues as stars, which made your monopoly on blue not very useful. A similar thing happened in the last game I played: TwoShort had a monopoly on blue, but couldn&#39;t use that to any effect as I was able to repeatedly attack their worlds with impunity due to my red monopoly.\r\n\r\nI&#39;d like to wait for a bit to see if there are any other ladder challengers, as we have played quite a lot of games recently. Thanks for the game!\n\twil: yeah...a pitiful catastrophic mistake...which by all rights in a &#39;championship&#39; game should have caused an immediate resignation on my part.  but yeah...I am gone till early week...and I&#39;ll be glad to let a challenger slip in...  \r\n\n\twil: thank you for the game.\n\twil: appears I must challenge two short now...again tho...I&#39;ll wait till next week in case he wishes to challenge you.\n\nHomeworlds Online (SDG# 26269)\nVariants: &quot;Hard time&quot;\nStarted: 2014.9.29, Ended: 2014.11.22\nParticipants: Aristos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Aristos: Homeworld B3 Y2 G3\n\tts52: have a good game!\n\n3) ts52: Build G1 Ts52\n\tAristos: You as well.\n\n4) Aristos: Build G1 Aristos\n\n5) ts52: Trade G1 B1 Ts52\n\tAristos: Sorry for delay... I&#39;m in a play and tonight was final dress rehearsal... play opens tomorrow night. All this week was chaos. \n\tts52: No problem. Break a leg!\n\n6) Aristos: Build G1 Aristos\n\n7) ts52: Build B1 Ts52\n\n8) Aristos: Trade G1 Y1 Aristos\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) Aristos: Trade G3 B3 Aristos\n\n11) ts52: Build B2 Kermit\n\n12) Aristos: Build B2 Aristos\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) Aristos: Discover B2 Aristos G1 Ping\n\n15) ts52: Build B2 Kermit\n\n16) Aristos: Build Y1 Aristos\n\n17) ts52: Discover B1 Ts52 G2 Oscar\n\n18) Aristos: Move Y1 Aristos Ping\n\n19) ts52: Trade B2 R2 Kermit\n\n20) Aristos: Trade Y1 R1 Ping\n\n21) ts52: Build B2 Oscar\n\n22) Aristos: Build Y1 Aristos\n\n23) ts52: Build R1 Kermit\n\n24) Aristos: Trade B3 G3 Aristos\n\n25) ts52: Build Y1 Kermit\n\n26) Aristos: Move Y1 Aristos Ping\n\n27) ts52: Discover Y2 Kermit G3 Robin\n\n28) Aristos: Discover Y1 Aristos R1 Spark\n\n29) ts52: Move R1 Kermit Robin\n\n30) Aristos: Sacrifice G3 Aristos\nBuild Y2 Spark\nBuild Y3 Spark\nBuild Y3 Ping\n\n31) ts52: Move Y1 Kermit Spark\nCatastrophe Spark Yellow\n\n32) Aristos: Build G1 Aristos\n\n33) ts52: B Y1 Robin\n\n34) Aristos: Move Y3 Ping Aristos\n\n35) ts52: Move Y1 Robin Kermit\n\n36) Aristos: Discover G1 Aristos Y1 Flash\n\n37) ts52: Move R2 Kermit Flash\n\n38) Aristos: Discover G1 Flash R2 Buzz\n\n39) ts52: Move Y2 Robin Buzz\n\tAristos: Sorry for the indecisions... I don&#39;t have physical pieces laid out to move around to plan moves, and it helps if I can actually see the next board state. \n\tts52: No problem\n\n40) Aristos: Sacrifice G1 Buzz\nBuild G1 Aristos\n\tAristos: Wow. My move to Flash was a truly spectacularly bad move. Nice trap. I think it may have cost me the game. \n\n41) ts52: Build R1 Robin\n\tAristos: We&#39;ll try this path... I&#39;m not sure if this is an escape or just delay of inevitable. \n\n42) Aristos: Move G1 Aristos Ping\n\n43) ts52: Move Y2 Buzz Robin\n\n44) Aristos: Trade Y3 G3 Aristos\n\n45) ts52: Build G2 Ts52\n\n46) Aristos: Build R2 Ping\n\n47) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Flash\nBuild R3 Flash\n\n48) Aristos: Move R2 Ping Kermit\n\n49) ts52: Move R3 Flash Kermit\n\n50) Aristos: Sacrifice G3 Aristos\nBuild G3 Aristos\nBuild R3 Kermit\nBuild R3 Kermit\nCatastrophe Kermit Red\n\n51) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Robin\nBuild Y3 Kermit\n\n52) Aristos: Build Y3 Ping\n\n53) ts52: Trade Y3 R3 Kermit\n\n54) Aristos: Build B2 Ping\n\n55) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Kermit\nBuild B3 Kermit\n\n\tAristos: Good game.\n\tts52: Thanks. You too.\n\nHomeworlds Online (SDG# 26202)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.1, Ended: 2014.10.8\nParticipants: cacodemon (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\twil: welcome to sdg... do you play homeworlds irl?\n\n2) cacodemon: Homeworld G2 B1 Y3\n\n3) wil: Build G1 Wil\n\tcacodemon: Thank you and yes I play irl, any chance I get. Forgive my typing. My mobile device is the only access to sdg I have.  Have fun.\n\twil: no worries about your typing...  where are you from, I am near DC\n\n4) cacodemon: Build Y1 Cacodemon\n\n5) wil: Trade G1 Y1 Wil\n\n6) cacodemon: Trade Y1 B1 Cacodemon\n\twil: what other pyramid games do you like?  I first was introduced through zendo (my daughter bought it)\n\n7) wil: Build Y1 Wil\n\tcacodemon: I am from utah where pyramid players are few (that I know). Ive played and enjoy zark city and ice house. Volcano and zendo once but I liked both. HW is just mind blowing to me. A real amazing thing. Wish everyone played it. :)\n\twil: Absolutely agree....where abouts are you in Utah?  Near any of the national parks?\n\n8) cacodemon: Build Y2 Cacodemon\n\twil: I have always liked chess, HW is sooo much more...\r\n\n\n9) wil: Discover Y1 Wil G2 G2\n\n10) cacodemon: Build Y2 Cacodemon\n\n11) wil: Build G1 Wil\n\twil: I&#39;ve enjoyed your parks, brice, arches, zion...and the wasatch...ran around provo in the late 70&#39;s for a bit.\r\n\n\n12) cacodemon: Discover Y2 Cacodemon G3 Green3\n\n\twil: oh nooooooooo\n\nHomeworlds Online (SDG# 26307)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.6, Ended: 2015.1.31\nParticipants: fogus (S), Salmonax (N)\nWinner: fogus\n\n1) Salmonax: Homeworld R1 B3 G3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) Salmonax: Build G1 Salmonax\n\n4) fogus: Build G1 Fogus\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) fogus: Build G1 Fogus\n\n7) Salmonax: Build G1 Salmonax\n\n8) fogus: Trade G1 Y1 Fogus\n\n9) Salmonax: Discover G1 Salmonax B2 Frootyloops\n\n10) fogus: Trade Y1 R1 Fogus\n\n11) Salmonax: Build Y1 Salmonax\n\n12) fogus: Discover R1 Fogus Y3 Way\n\n13) Salmonax: Trade G1 R1 Frootyloops\n\n14) fogus: Sacrifice G1 Fogus\nBuild R2 Way\n\n15) Salmonax: Build G1 Salmonax\n\n16) fogus: Move R2 Way Frootyloops\n\n17) Salmonax: Sacrifice Y1 Salmonax\nMove R1 Frootyloops Salmonax\n\n18) fogus: Build G1 Fogus\n\n19) Salmonax: Move G3 Salmonax Frootyloops\n\n20) fogus: Trade R2 B2 Frootyloops\n\n21) Salmonax: Sacrifice R1 Salmonax\nAttack B2 Frootyloops\n\n22) fogus: Trade G1 Y1 Fogus\n\n23) Salmonax: Trade B2 Y2 Frootyloops\n\n24) fogus: Build G1 Fogus\n\n25) Salmonax: Build G1 Frootyloops\n\n26) fogus: Move G1 Fogus Way\n\n27) Salmonax: Trade G1 R1 Frootyloops\n\tSalmonax: Sorry for the delay\n\n28) fogus: Build R2 Way\n\n29) Salmonax: Move G3 Frootyloops Way\n\n30) fogus: Discover R2 Way Y2 Foo\n\n31) Salmonax: Move Y2 Frootyloops Salmonax\n\n32) fogus: Move R1 Way Fogus\n\n33) Salmonax: Move G3 Way Foo\n\tfogus: no problem about the delay.  i&#39;m in no rush. :)\n\n34) fogus: Move R2 Foo Way\n\n35) Salmonax: Build G1 Foo\n\n36) fogus: Move R2 Way Frootyloops\n\n37) Salmonax: Sacrifice Y1 Salmonax\nMove R1 Frootyloops Salmonax\n\n38) fogus: Build R2 Fogus\n\n39) Salmonax: Move G3 Foo Way\n\n40) fogus: Move G1 Way Fogus\n\n41) Salmonax: Build G2 Way\n\n42) fogus: Discover G1 Fogus Y3 Flipper\n\n43) Salmonax: Move G3 Way Frootyloops\n\n44) fogus: Trade R2 B2 Frootyloops\n\n45) Salmonax: Sacrifice R1 Salmonax\nAttack B2 Frootyloops\n\tfogus: Curse frootyloops!  Something bad happens whenever I go there! ;)\n\tSalmonax: It&#39;s that Toucan Sam!\n\n46) fogus: Build G2 Fogus\n\n47) Salmonax: Build G2 Salmonax\n\n48) fogus: Build G3 Flipper\n\n49) Salmonax: Build Y1 Salmonax\n\n50) fogus: Trade R1 B1 Fogus\n\n51) Salmonax: Trade G1 R1 Salmonax\n\n52) fogus: Move G3 Flipper Foo\n\n53) Salmonax: Sacrifice Y1 Salmonax\nMove G3 Frootyloops Salmonax\n\n54) fogus: Build Y1 Fogus\n\n55) Salmonax: Build G1 Way\n\n56) fogus: Move G3 Fogus Way\n\n57) Salmonax: Discover G1 Foo Y3 Blipper\n\n58) fogus: Discover Y1 Fogus R3 Warworld\n\n59) Salmonax: Build Y1 Salmonax\n\tSalmonax: blipper flipper foo.\n\n60) fogus: Sacrifice G1 Flipper\nBuild Y3 Warworld\n\n61) Salmonax: Sacrifice G2 Salmonax\nBuild G1 Way\nBuild G2 Blipper\nCatastrophe Way G\n\n62) fogus: Build Y3 Fogus\n\n63) Salmonax: Trade B2 R2 Frootyloops\n\n64) fogus: Build R1 Fogus\n\n65) Salmonax: Sacrifice G2 Blipper\nBuild G1 Blipper\nBuild R2 Frootyloops\n\n66) fogus: Move Y3 Warworld Frootyloops\n\n67) Salmonax: Discover Y1 Salmonax G2 Charlier\n\n68) fogus: Discover Y1 Fogus R3 Chthon\n\n69) Salmonax: Sacrifice Y1 Charlier\nMove R2 Frootyloops Chthon\n\n70) fogus: Sacrifice R1 Fogus\nAttack R2 Frootyloops\n\n71) Salmonax: Attack Y1 Chthon\n\n72) fogus: Sacrifice G2 Fogus\nBuild R1 Frootyloops\nBuild R3 Fogus\n\n73) Salmonax: Build G1 Salmonax\n\n74) fogus: Sacrifice Y3 Frootyloops\nMove R1 Frootyloops Salmonax\nMove R2 Frootyloops Salmonax\nMove G3 Foo Warworld\nCatastrophe Salmonax R\n\n75) Salmonax: Build Y1 Salmonax\n\n76) fogus: Discover Y3 Fogus Y3 Gipf\n\n77) Salmonax: Sacrifice G1 Salmonax\nBuild R1 Chthon\n\n78) fogus: Move R2 Fogus Gipf\n\tSalmonax: I had my eye off that possibility for a little while.\n\n79) Salmonax: Build G1 Salmonax\n\n80) fogus: Move G3 Warworld Fogus\n\n81) Salmonax: Discover R2 Chthon G2 Ziggle\n\n82) fogus: Build B1 Fogus\n\n83) Salmonax: Sacrifice G1 Salmonax\nBuild Y2 Chthon\n\n84) fogus: Move B1 Fogus Gipf\n\n85) Salmonax: Build R1 Ziggle\n\n86) fogus: Build B2 Fogus\n\n87) Salmonax: Trade Y2 B2 Salmonax\n\n88) fogus: Sacrifice Y3 Gipf\nMove B1 Fogus Salmonax\nMove B2 Fogus Salmonax\nPass\nCatastrophe Salmonax B\n\n\tfogus: Thank you for the game.  I&#39;ll never forget the scourge that was frootyloops! :-)\n\nHomeworlds Online (SDG# 26333)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.14, Ended: 2014.10.17\nParticipants: TwoShort (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\twil: I climbed the ladder so I can lose to better and better players...hopefully I&#39;ll give you a little run for your money!\n\n\nHomeworlds Online (SDG# 26338)\nStarted: 2014.10.15, Ended: 2014.10.17\nParticipants: JaredL (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B2 G3 R3\n\tJaredL: homeworld blue3 green2 red\n\tJaredL: homeworld g3 b2 r3\n\n2) JaredL: Homeworld G2 B1 R3\n\tJaredL: homeworld g2 b1 r3 \n\n3) hellajoey: Build R1 Hellajoey\n\n4) JaredL: Build R1 Jaredl\n\n5) hellajoey: Trade R1 Y1 Hellajoey\n\n6) JaredL: Trade R1 Y1 Jaredl\n\n7) hellajoey: Build R1 Hellajoey\n\n8) JaredL: Build R1 Jaredl\n\n9) hellajoey: Trade R1 G1 Hellajoey\n\n10) JaredL: Trade R1 B1 Jaredl\n\n11) hellajoey: Discover G1 Hellajoey Y1 Lemonasia\n\n12) JaredL: Discover B1 Jaredl G3 Greenie\n\n13) hellajoey: Build Y2 Hellajoey\n\n14) JaredL: Build Y2 Jaredl\n\n15) hellajoey: Discover Y2 Hellajoey G1 Beanstone\n\n16) JaredL: Build B1 Greenie\n\n17) hellajoey: Build Y2 Hellajoey\n\n18) JaredL: Move Y2 Jaredl Greenie\n\n19) hellajoey: Build Y3 Hellajoey\n\n20) JaredL: Build Y3 Greenie\n\n21) hellajoey: Build Y3 Beanstone\n\n22) JaredL: Sacrifice Y3 Greenie\nMove Y1 Jaredl Greenie\nMove Y1 Greenie Beanstone\nMove Y1 Beanstone Hellajoey\nCatastrophe Hellajoey Y\n\n23) hellajoey: Build R1 Hellajoey\n\n24) JaredL: Build B2 Greenie\n\n25) hellajoey: Move Y2 Beanstone Hellajoey\n\n26) JaredL: Discover B2 Greenie G2 Sectorg\n\n27) hellajoey: Discover G1 Lemonasia B3 Blunder\n\n28) JaredL: Build B2 Sectorg\n\n29) hellajoey: Sacrifice Y2 Hellajoey\nMove R3 Hellajoey Beanstone\nMove R3 Beanstone Greenie\n\n30) JaredL: Sacrifice Y2 Greenie\nMove B1 Greenie Beanstone\nMove B1 Greenie Beanstone\n\n31) hellajoey: Build R1 Hellajoey\n\n32) JaredL: Build B3 Beanstone\n\n33) hellajoey: Sacrifice R1 Hellajoey\nAttack B3 Beanstone\n\n\nHomeworlds Online (SDG# 26339)\nStarted: 2014.10.16, Ended: 2014.10.23\nParticipants: hellajoey (S), abridged (N)\nWinner: hellajoey\n\n1) abridged: Homeworld G3 B1 R3\n\n2) hellajoey: Homeworld B1 G2 R3\n\n3) abridged: Build R1 Abridged\n\n4) hellajoey: Build R1 Hellajoey\n\n5) abridged: Trade R1 Y1 Abridged\n\n6) hellajoey: Trade R1 Y1 Hellajoey\n\n7) abridged: Build R1 Abridged\n\n8) hellajoey: Build R1 Hellajoey\n\n9) abridged: Discover Y1 Abridged G2 Gazebo\n\n10) hellajoey: Trade R1 B1 Hellajoey\n\n11) abridged: Trade R3 B3 Abridged\n\n12) hellajoey: Build B2 Hellajoey\n\n13) abridged: Build B2 Abridged\n\n14) hellajoey: Discover B2 Hellajoey G3 Weedsville\n\n15) abridged: Trade B3 R3 Abridged\n\n16) hellajoey: Build B2 Weedsville\n\n17) abridged: Build B3 Abridged\n\n18) hellajoey: Build B3 Hellajoey\n\n19) abridged: Discover Y1 Gazebo B3 Bozega\n\n20) hellajoey: Trade B2 Y2 Weedsville\n\n21) abridged: Build R1 Abridged\n\n22) hellajoey: Sacrifice Y2 Weedsville\nDiscover B2 Weedsville R2 Tempworld\nMove B2 Tempworld Abridged\nCatastrophe Abridged Blue\n\n23) abridged: Discover Y1 Bozega G2 Hideyhole\n\tabridged: Wow! So catastrophes don&#39;t require a separate turn, eh?\n\n24) hellajoey: Sacrifice Y1 Hellajoey\nMove R3 Hellajoey Abridged\nCatastrophe Abridged Red\n\n\nHomeworlds Online (SDG# 26351)\nStarted: 2014.10.20, Ended: 2014.10.22\nParticipants: JaredL (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B1 G2 R3\n\n2) JaredL: Homeworld G3 B1 R3\n\n3) hellajoey: Build R1 Hellajoey\n\n4) JaredL: Build R1 Jaredl\n\n5) hellajoey: Trade R1 Y1 Hellajoey\n\n6) JaredL: Trade R1 Y1 Jaredl\n\n7) hellajoey: Build R1 Hellajoey\n\n8) JaredL: Build R1 Jaredl\n\n9) hellajoey: Trade R1 G1 Hellajoey\n\n10) JaredL: Trade R1 B1 Jaredl\n\n11) hellajoey: Trade R3 B3 Hellajoey\n\n12) JaredL: Build B2 Jaredl\n\n13) hellajoey: Build B2 Hellajoey\n\n14) JaredL: Discover B2 Jaredl G2 Green2\n\n15) hellajoey: Discover B2 Hellajoey B3 Bluton\n\n16) JaredL: Move B1 Jaredl Green2\n\n17) hellajoey: Build B2 Hellajoey\n\n18) JaredL: Trade B2 Y2 Green2\n\n19) hellajoey: Trade B3 R3 Hellajoey\n\n20) JaredL: Build R1 Jaredl\n\n21) hellajoey: Build G1 Hellajoey\n\n22) JaredL: Move R1 Jaredl Green2\n\n23) hellajoey: Discover G1 Hellajoey R3 Redrock\n\n24) JaredL: Move Y2 Green2 Redrock\n\n25) hellajoey: Build R1 Hellajoey\n\n26) JaredL: Attack G1 Redrock\n\n27) hellajoey: Move R3 Hellajoey Redrock\n\n28) JaredL: Move Y2 Redrock Green2\n\n29) hellajoey: Attack G1 Redrock\n\n30) JaredL: Move R3 Jaredl Green2\n\n31) hellajoey: Trade B2 Y2 Bluton\n\n32) JaredL: Move R3 Green2 Jaredl\n\n33) hellajoey: Discover Y2 Bluton G1 Grunonia\n\n34) JaredL: Discover B1 Green2 G3 Green3\n\n35) hellajoey: Build G2 Hellajoey\n\n36) JaredL: Build R1 Green2\n\n37) hellajoey: Discover G2 Hellajoey B3 Blubox\n\n38) JaredL: Sacrifice Y2 Green2\nMove R1 Green2 Redrock\nMove R1 Green2 Redrock\nCatastrophe Redrock R\n\n39) hellajoey: Build G1 Hellajoey\n\n40) JaredL: Trade R3 G3 Jaredl\n\n41) hellajoey: Build G2 Blubox\n\n42) JaredL: Build B2 Green3\n\n43) hellajoey: Trade G2 B2 Blubox\n\n44) JaredL: Trade B2 Y2 Green3\n\n45) hellajoey: Move G1 Hellajoey Green3\n\n46) JaredL: Discover B1 Green3 G2 Green22\n\n47) hellajoey: Move Y2 Grunonia Green22\n\n48) JaredL: Build B2 Green22\n\n49) hellajoey: Move B2 Hellajoey Green3\n\n50) JaredL: Discover Y2 Green3 R1 Red1\n\n51) hellajoey: Build B3 Green3\n\n52) JaredL: Sacrifice Y2 Red1\nMove B1 Green22 Green3\nMove B2 Green22 Green3\nCatastrophe Green3 B\n\n53) hellajoey: Build G1 Blubox\n\n54) JaredL: Build Y1 Jaredl\n\n55) hellajoey: Build Y2 Green22\n\n56) JaredL: Trade Y1 R1 Jaredl\n\n57) hellajoey: Sacrifice Y2 Green22\nDiscover G2 Blubox B2 Blubon\nMove G1 Blubox Blubon\n\n\nHomeworlds Online (SDG# 26354)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.22, Ended: 2014.10.31\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 R1 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\twil: Two short must be busy....  I only had one person available to challenge!\n\n4) wil: Build G1 Wil\n\n5) TeeTeeTee: Trade G1 R1 Teeteetee\n\n6) wil: Trade G1 R1 Wil\n\n7) TeeTeeTee: Build R2 Teeteetee\n\n8) wil: Build R2 Wil\n\n9) TeeTeeTee: Build R2 Teeteetee\n\n10) wil: Trade R2 Y2 Wil\n\n11) TeeTeeTee: Discover R1 Teeteetee B3 Mercia\n\n12) wil: Discover R1 Wil G2 G2\n\n13) TeeTeeTee: Discover R2 Teeteetee Y3 Wessex\n\n14) wil: Build Y1 Wil\n\n15) TeeTeeTee: Move R2 Wessex G2\n\n16) wil: Sacrifice Y1 Wil\nMove R1 G2 Wil\n\n17) TeeTeeTee: Build G1 Teeteetee\n\twil: awe the early attack...makes sense..  almost grew a red...\n\tTeeTeeTee: I sort of hoped you would grow a red: I&#39;d have got a red monopoly in a few turns if you&#39;d done that.\n\n18) wil: Build Y1 Wil\n\n19) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n20) wil: Discover R1 Wil G2 Gee2\n\n21) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild R2 G2\nBuild R3 Mercia\nBuild R3 Teeteetee\n\n22) wil: Build R3 Gee2\n\n23) TeeTeeTee: Trade R3 G3 Mercia\n\n24) wil: Build Y2 Wil\n\n25) TeeTeeTee: Move Y1 Teeteetee Mercia\n\n26) wil: Sacrifice Y1 Wil\nDiscover R3 Gee2 G3 G3\n\n27) TeeTeeTee: Build R3 Mercia\n\n28) wil: Build G1 Wil\n\n29) TeeTeeTee: Move R3 Mercia Gee2\n\n30) wil: Build Y1 Wil\n\n31) TeeTeeTee: Build Y2 Mercia\n\n32) wil: Discover Y2 Wil G2 Gtoo\n\n33) TeeTeeTee: Move Y1 Mercia G2\n\n34) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 Gtoo\nBuild Y3 Gtoo\n\n35) TeeTeeTee: Trade R3 G3 Teeteetee\n\n36) wil: Sacrifice Y1 Wil\nDiscover Y3 Gtoo R3 R3\n\tTeeTeeTee: I guess we&#39;ll stick with the original plan, after all.\n\twil: I wish I had an original plan...\n\n37) TeeTeeTee: Attack R1 Gee2\n\twil: I think this will leave me one up...\n\n38) wil: Build G1 Wil\n\tTeeTeeTee: Hah! Well done.\n\twil: not quite well done...you made the best response...  I sure was hopin you&#39;d miss it!!\n\n39) TeeTeeTee: Build G1 Mercia\n\n40) wil: Move G1 Wil Gee2\n\tTeeTeeTee: I have to say, I was quite hoping that you&#39;d miss that last move.\n\twil: LOL....that is what I was going to say...  I was at the cusp, on the edge...of actually winning a game against you...now it is back to the foxhole to see if I can hold out against your far superior prowess!\n\n41) TeeTeeTee: Attack G1 Gee2\n\n42) wil: Discover Y2 Wil B2 B2\n\n43) TeeTeeTee: Build Y1 G2\n\n44) wil: Move Y2 Gtoo G3\n\tTeeTeeTee: ...? I don&#39;t get it.\n\twil: I went to the wrong g2, foiled by my own devices...didn&#39;t check where it went and went to another game to make a move...CRAP\n\twil: CRAP\n\tTeeTeeTee: Ahhhh... I&#39;m actually sorry to hear that it was a typo. I don&#39;t believe that there&#39;s the opportunity to double-undo, is there?\r\n\r\nIf you like, I can wait a little longer before responding to moves in the future... but, I have to say, you should always double-check that you&#39;re moving to the right place before submitting orders. (Also, perhaps you should give more original names to your planets? :P)\n\tTeeTeeTee: Ohhh, very well. \r\nWould you like me to undo my last move, so that you can (potentially) undo your last move, and move your ship to the correct g2 (gtoo)?\n\twil: nope...I screwed up... what a royal mistake!\r\n\n\tTeeTeeTee: Very well. (If it&#39;s any consolation, I reckon that moving the g1 to gtoo would&#39;ve been a mistake, too - albeit not as drastic.)\n\twil: I don&#39;t think you would have wasted y2 g3 g1 to catastrophe, it would have given me the opp to get back a factory and set you further behind...\n\n45) TeeTeeTee: Trade R2 B2 Teeteetee\n\n46) wil: Build R2 G3\n\n47) TeeTeeTee: Sacrifice Y2 Mercia\nMove R1 Gee2 G3\nMove R2 G2 G3\nCatastrophe G3 Red\n\n48) wil: Build Y2 G3\n\n49) TeeTeeTee: Sacrifice G3 Mercia\nBuild G3 Mercia\nBuild R1 Gee2\nBuild R2 G2\n\n50) wil: Move Y2 G3 Teeteetee\n\n51) TeeTeeTee: Sacrifice R1 Gee2\nAttack Y2 Teeteetee\n\n52) wil: Sacrifice Y2 B2\nMove Y2 G3 Teeteetee\nMove Y3 R3 Teeteetee\nCatastrophe Teeteetee Y\n\n53) TeeTeeTee: Sacrifice G3 Mercia\nBuild G3 Mercia\nBuild G3 Teeteetee\nBuild R1 Gee2\n\n54) wil: Build Y1 Wil\n\n55) TeeTeeTee: Trade B2 Y2 Teeteetee\n\twil: I had a chance before I gave away that little green one...\n\n56) wil: Trade Y3 B3 Wil\n\n57) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove G3 Teeteetee Wil\nMove R3 Gee2 Wil\n\n\twil: and there it is...congrats..\n\tTeeTeeTee: ... Well, this one was a complex game. I&#39;ve not played many games where I&#39;ve both failed to monopolise a colour and been behind on large ships - it was not at all clear who was winning for most of this game, despite your lead on large ships.\r\n\r\nMy mistake in this game was not trying to cut you off from getting the large y3&#39;s, as I assuming that you couldn&#39;t build them without losing one of them to catastrophe immediately. It was only after you built the three large yellows that I saw that I&#39;d have lost by `bluebird&#39; if I&#39;d done that: I couldn&#39;t destroy all three y3&#39;s in the same turn. (Also, as I said earlier, your response to &quot;18: Trade r3 g3 TeeTeeTee&quot; was a strong move.)\r\n\r\nI think you made three major mistakes in this game. Firstly, I think that your moving that g1 out was a weak move, but not for the reason you thought it was. At this stage, you could only win the game by setting up a doomsday device, which you had the means to do - but you needed to trade that g1 for a b1 to start it, and you couldn&#39;t do that once you moved it out (even if you had moved it to the correct place!) I suppose now that you were planning to move the g1 to gtoo and on the next turn destroy my greens at Mercia by catastrophe? You&#39;d have got a large green from that, but would no longer have had all the y3s, which was your greatest advantage in this game.\r\n\r\nSecondly, I think &quot;23: ... Build r2 g3&quot; was not a good move, as it gave me the chance to monopolise the reds, which I&#39;d been threatening to do all game. I would not have been able to invade, though, as I didn&#39;t have a y2 or a y3: but you would have had to have given one of them up to attack me. You could perhaps have scratched out a draw or even an unlikely win if you&#39;d got some blue ships and blew up one of my homeworlds, but then you played &quot;25 ... Move y2 g3 TeeTeeTee&quot;. I think that was your third mistake, and the move that lost you the game: without your yellows, you no longer had a chance to set up a doomsday machine before I invaded. You needed to try and blow up my blue homeworld first.\r\n\r\nOnce again, thanks for the game! This was definitely a tough one.\n\twil: thanks for the feedback, sincerely appreciated!!\n\nHomeworlds Online (SDG# 26358)\nStarted: 2014.10.22, Ended: 2014.11.5\nParticipants: hellajoey (S), JaredL (N)\nWinner: hellajoey\n\n1) JaredL: Homeworld Y1 B2 G3\n\n2) hellajoey: Homeworld B2 G3 Y3\n\n3) JaredL: Build G1 Jaredl\n\n4) hellajoey: Build Y1 Hellajoey\n\n5) JaredL: Discover G1 Jaredl B3 Blue3\n\n6) hellajoey: Build Y1 Hellajoey\n\n7) JaredL: Build G1 Blue3\n\n8) hellajoey: Discover Y1 Hellajoey G1 Grun\n\n9) JaredL: Build G2 Jaredl\n\n10) hellajoey: Build Y2 Hellajoey\n\n11) JaredL: Build G2 Blue3\n\n12) hellajoey: Build Y2 Grun\n\n13) JaredL: Trade G2 Y2 Blue3\n\n14) hellajoey: Discover Y2 Grun B3 Blooth\n\n15) JaredL: Discover G1 Blue3 B2 Blue2\n\n16) hellajoey: Trade Y2 G2 Blooth\n\n17) JaredL: Sacrifice G3 Jaredl\nBuild G2 Blue2\nBuild G3 Blue3\nBuild G3 Jaredl\n\n18) hellajoey: Discover Y1 Hellajoey R1 Reedle\n\n19) JaredL: Trade G3 R3 Blue3\n\n20) hellajoey: Build G3 Blooth\n\n21) JaredL: Sacrifice Y2 Blue3\nMove G2 Blue2 Blooth\nMove G1 Blue2 Blooth\nCatastrophe Blooth G\n\n22) hellajoey: Trade Y3 G3 Hellajoey\n\n23) JaredL: Trade G2 Y2 Jaredl\n\n24) hellajoey: Trade Y2 R2 Hellajoey\n\n25) JaredL: Build Y2 Jaredl\n\n26) hellajoey: Build Y2 Grun\n\n27) JaredL: Move Y2 Jaredl Blue3\n\n28) hellajoey: Discover Y2 Grun G2 Grande\n\n29) JaredL: Trade Y2 G2 Jaredl\n\n30) hellajoey: Build Y2 Grun\n\n31) JaredL: Sacrifice G3 Jaredl\nBuild G1 Blue3\nBuild G2 Blue3\nBuild G3 Jaredl\n\n32) hellajoey: Build Y3 Grande\n\n33) JaredL: Discover G2 Blue3 R1 Red1\n\n34) hellajoey: Move Y3 Grande Red1\n\n35) JaredL: Trade G3 Y3 Jaredl\n\n36) hellajoey: Discover Y2 Grun G3 Grown\n\n37) JaredL: Sacrifice Y3 Jaredl\nMove G2 Red1 Hellajoey\nMove G1 Blue3 Red1\nMove G1 Red1 Hellajoey\nCatastrophe Hellajoey G\n\n38) hellajoey: Move Y3 Red1 Hellajoey\n\n39) JaredL: Move R3 Blue3 Jaredl\n\n40) hellajoey: Build Y3 Grown\n\n41) JaredL: Build Y3 Blue3\n\n42) hellajoey: Sacrifice Y2 Grown\nMove Y1 Grun Blue3\nMove Y1 Reedle Blue3\nCatastrophe Blue3 Yellow\n\n43) JaredL: Build G1 Blue3\n\n44) hellajoey: Trade Y3 R3 Hellajoey\n\n\nHomeworlds Online (SDG# 26361)\nStarted: 2014.10.23, Ended: 2014.12.17\nParticipants: hellajoey (S), abridged (N)\nWinner: hellajoey\n\n1) abridged: Homeworld B1 R2 G3\n\n2) hellajoey: Homeworld B1 G3 Y3\n\n3) abridged: Build G1 Abridged\n\n4) hellajoey: Build Y1 Hellajoey\n\n5) abridged: Build G1 Abridged\n\n6) hellajoey: Trade Y1 B1 Hellajoey\n\n7) abridged: Trade G1 Y1 Abridged\n\n8) hellajoey: Build Y1 Hellajoey\n\n9) abridged: Discover G1 Abridged B3 Dracut\n\n10) hellajoey: Build B2 Hellajoey\n\thellajoey: Are you enjoying this game, Jake? You got a little whirlwinded in your first just like I did in my first 2. That will pass though. I think there&#39;s probably about 3 or 4 games worth of concepts to get acquainted with. Anyway, hope it&#39;s enjoyable enough for you. Also, I&#39;m mostly just testing out this message feature right now ;)\n\tabridged: I feel like I&#39;m getting the hang of the rules. They&#39;re still not fully internalized -- e.g. I just tried to create a blue ship, and then realized I couldn&#39;t -- but I&#39;m getting there. I&#39;m definitely enjoying it. I got creamed in game 1, but it was clear at various points what mistakes I&#39;d made, which always makes me want to play more.\n\n11) abridged: Build G1 Abridged\n\n12) hellajoey: Trade B2 G2 Hellajoey\n\n13) abridged: Discover G1 Abridged B3 Overthere\n\n14) hellajoey: Build B2 Hellajoey\n\n15) abridged: Build G1 Abridged\n\n16) hellajoey: Discover B2 Hellajoey G2 Grun\n\n17) abridged: Sacrifice G3 Abridged\nBuild G2 Dracut\nBuild G3 Abridged\nBuild G3 Overthere\n\n18) hellajoey: Build B2 Grun\n\n19) abridged: Sacrifice G3 Abridged\nBuild G3 Abridged\nBuild Y1 Abridged\nBuild Y2 Abridged\n\n20) hellajoey: Sacrifice G2 Hellajoey\nBuild B2 Hellajoey\nBuild B3 Grun\n\n21) abridged: Trade Y1 R1 Abridged\n\n22) hellajoey: Trade B3 R3 Grun\n\n23) abridged: Move R1 Abridged Overthere\n\n24) hellajoey: Build B3 Grun\n\n25) abridged: Sacrifice G2 Dracut\nBuild G2 Overthere\nBuild G2 Abridged\n\n26) hellajoey: Move Y1 Hellajoey Grun\n\n27) abridged: Move Y1 Abridged Overthere\n\n28) hellajoey: Trade B3 R3 Grun\n\n29) abridged: Trade G3 B3 Abridged\n\thellajoey: By the by, it was noticed in my last game that if a person activates the &quot;take back move&quot; option there is some strange behavior that it&#39;s tempting to imagine is a glitch with the interface: the opponent is presented with a pair of buttons that seem to allow either of forced victory or a forced end of game. Jared and I decided on a gentleman&#39;s agreement to just never click either of these buttons. I&#39;d like to make the same arrangement with you if you&#39;re down :)\n\n30) hellajoey: Move R3 Grun Dracut\n\n31) abridged: Sacrifice G3 Overthere\nBuild G3 Overthere\nBuild G3 Abridged\nBuild R1 Overthere\n\n32) hellajoey: Attack G1 Dracut\n\n\nHomeworlds Online (SDG# 26350)\nVariants: &quot;Unrated&quot;\nStarted: 2014.10.25, Ended: 2014.11.27\nParticipants: Northman01 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n\twil: first time you say?\n\twil: I give you the opportunity to have banker...as I should\n\tNorthman01: sorry man, I&#39;ve read the rules but this game interface is odd...i&#39;m not writing the orders properly i guess..can&#39;t make a move..\n\twil: no worries  I just write the first letter H for homeworlds...  so H (star size like) R2 (second of your binary star like ) B1 (and then your ship size) G3   ask any question you like along the way!\n\twil: I&#39;m hoping you find your way back...I&#39;ll work with you on learning the correct input...it is confusing, but quick learning curve once you understand.\n\nHomeworlds Online (SDG# 26287)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.28, Ended: 2014.11.4\nParticipants: wil (S), dsabremaster (N)\nWinner: wil\n\n1) dsabremaster: Homeworld Y3 G1 B3\n\n2) wil: Homeworld B3 Y2 G3\n\twil: thanx for the game!!\n\twil: interesting open,  where do you play?\n\n3) dsabremaster: Build B1 Dsabremaster\n\n4) wil: Build G1 Wil\n\tdsabremaster: I play with friends when I can find a partner, which is rare.\n\twil: ah...live games?  so you have pyramids?  Yeah, we have to teach the games to others, I&#39;m finding chess players most interested...\n\n5) dsabremaster: Discover B1 Dsabremaster G2 Gamma 37\n\tdsabremaster: Yeah I have pyramids. I think they&#39;re great; lots of different games. Chess players makes sense; this is like the spiritual successor in my opinion.\n\n6) wil: Build G1 Wil\n\twil: agree...agree...agree...agree...  I am in USA...DC area...  You?  and how did you find the games??\n\n7) dsabremaster: Build B1 Gamma\n\tdsabremaster: Missouri. A cousin introduced me to homeworlds, and I looked up all the other games through looneylabs.com.\n\n8) wil: Discover G1 Wil Y1 Y1\n\twil: very cool...I have a friend in Columbia, actually a little south, headed to Jeff City\r\nI was introduced first thru Zendo..my daughter played it and wanted it.\n\n9) dsabremaster: Build B1 Dsabremaster\n\n10) wil: Build G2 Y1\n\tdsabremaster: I&#39;ve wanted to try zendo but haven&#39;t had the pyramids, time or players.\n\n11) dsabremaster: Trade B1 Y1 Gamma\n\n12) wil: Build G2 Wil\n\n13) dsabremaster: Build B1 Gamma\n\twil: zendo is fun, and people enjoy it that like riddles...  I also like volcano/caldera... what other games do you play?\n\tdsabremaster: I&#39;ve played a little martian chess, as well as some zark city.\n\n14) wil: Move G1 Y1 Gamma\n\n15) dsabremaster: Move B1 Gamma Y1\n\twil: I haven&#39;t tried any martian chess yet ( I think they have it here, but I&#39;ve only played HW on this site... I came because I was told this was a great place to learn..and I&#39;ve learned by losing...lots...I&#39;m still losing... but to better players!)\n\n16) wil: Trade G3 R3 Wil\n\tdsabremaster: Nothing has been quite as endearing to me as HW, because it&#39;s so different every time.\n\n17) dsabremaster: Discover B1 Gamma G3 Aspire\n\twil: no kidding, no two games even close to alike...  intergalactic chess, control of the universe!\n\n18) wil: Sacrifice R3 Wil\nAttack Y1 Gamma\nAttack B1 Y1\nPass\n\n19) dsabremaster: Build B2 Aspire\n\twil: that was downright mean of my big red ship to do that...glad that angry guy is gone..\n\tdsabremaster: Huh. Didn&#39;t see that coming. Usually not advisable to sacrifice your big ship... unless you&#39;re ready to build it back next turn of course...\n\n20) wil: Build G3 Wil\n\twil: Yeah, you got that right... risky business...but I have a correction coming..\n\n21) dsabremaster: Trade B1 R1 Dsabremaster\n\twil: If you didn&#39;t move out, I was going to grow two greens and blow up the star... since you moved out I did the next best thing.\n\tdsabremaster: That&#39;s what I WAS expecting...\n\n22) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y1\nBuild Y1 Gamma\n\n23) dsabremaster: Trade B2 Y2 Aspire\n\n24) wil: Build Y2 Gamma\n\n25) dsabremaster: Move Y2 Aspire Gamma\nCatastrophe Gamma Y\n\n26) wil: Trade G3 Y3 Y1\n\n27) dsabremaster: Build B1 Dsabremaster\n\tdsabremaster: Now the question is, was that a mistake on your part, or was that your intention all along....\n\twil: It was my intention.  The I wanted to insure you didn&#39;t get a big one at this time...If you didn&#39;t do it to me, I was going to do it to you..\n\n28) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y1\nBuild B2 Y1\n\n29) dsabremaster: Build B2 Aspire\n\n30) wil: Discover B2 Y1 Y2 Y2\n\n31) dsabremaster: Trade B3 Y3 Dsabremaster\n\n32) wil: Sacrifice G3 Y1\nBuild B2 Y1\nBuild B3 Y1\nBuild B3 Y2\n\n33) dsabremaster: Move R1 Dsabremaster Gamma\n\n34) wil: Sacrifice Y3 Y1\nMove G1 Gamma Dsabremaster\nMove B1 Y1 Aspire\nMove B2 Y1 Aspire\nCatastrophe Aspire B\n\n35) dsabremaster: Sacrifice R1 Gamma\nAttack G1S Dsabremaster\n\n36) wil: Trade G1 R1 Wil\n\n37) dsabremaster: Trade Y3 R3 Dsabremaster\n\twil: looks like you got plenty of computer skillz!  Ever built an app, or had your students build apps?\n\n38) wil: Trade G2 Y2 Wil\n\tdsabremaster: No, I haven&#39;t. But I&#39;ve spent quite a lot of time around computers, mostly playing games.\n\n39) dsabremaster: Discover G1 Dsabremaster B2 Lagoon\n\n40) wil: Sacrifice B2 Y2\nTrade B3 G3 Y2\nTrade G3 R3 Wil\n\twil: looks like I have prolonged the game by blowing so much up...\n\n41) dsabremaster: Build R1 Dsabremaster\n\tdsabremaster: Perhaps. I just wish you had affected the outcome!\n\twil: lol\r\n\n\n42) wil: Move B3 Y1 Y2\n\n43) dsabremaster: Build G1 Lagoon\n\n44) wil: Sacrifice Y2 Wil\nMove G3 Y2 Dsabremaster\nMove B3 Y2 Dsabremaster\n\n45) dsabremaster: Attack G3S Dsabremaster\n\n46) wil: S R3 Wil\nAttack R3 Dsabremaster\nAttack R1 Dsabremaster\nAttack G3 Dsabremaster\n\twil: We have seen that your galaxy needs help and have sent in two of our top change and grow ships to adjust your economy, correct your social mores, and make you a better civilization....  because WE know better, and we can.\n\tdsabremaster: Alas, our lack of foresight has been our downfall not once, but twice. We will not underestimate you again...\n\n47) dsabremaster: Build B1 Dsabremaster\n\twil: My people came in peace to enlighten, and you attack with your big mean ship?  Really??  While it is against our wishes we are forced to respond in kind...\n\n48) wil: Sacrifice R3 Dsabremaster\nAttack B1 Dsabremaster\nAttack B1 Dsabremaster\nPass\n\twil: that was the old, you can have one I get three swap.  it also works with the you get two I get three deal or even 1/2...  not beneficial to have your big red in the homeworld where it can&#39;t be utilized...  but I&#39;m afraid in this game I gotcha way early, and then used my factory extensively...building a factory is a powerful tool, it is only safe to not have one when the opponent can&#39;t get one...\n\twil: I thank you for the game...  I like to play, and don&#39;t wish to be obnoxious, so feel free to challenge me to as many or few games as you&#39;d like.  It is all about the learning and sharing..\n\tdsabremaster: Yeah, it&#39;s been a while since I&#39;ve played, and I&#39;m not quite back in the mindset to anticipate those things again yet. I&#39;d like to try again, although I think I&#39;d change my opening setup slightly and go for a Banker instead of a Goldilocks. Not sure if that&#39;s enough to deal with what you started with (which I think is one of the most solid starts in the game), but I&#39;d be interestd to try.\n\n\twil: Yeah, I&#39;d love it if we had a program which could say....let us back up to that mistake, or turning point and try it differently...that would be a dream (oh and the live action app where you could watch the other person move and you just slid the pyramids with your fingers on your smart phone...\n\nHomeworlds Online (SDG# 26386)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.30, Ended: 2014.11.4\nParticipants: fogus (S), dsabremaster (N)\nWinner: dsabremaster\n\n1) dsabremaster: Homeworld G3 B2 Y3\n\n2) fogus: Homeworld B1 Y2 G3\n\twil: ah, the elusive three player game...they are rarely found, and even rarer to finish...\n\twil: pardon me...I was lost...didn&#39;t know where i was....leaving now...\n\n3) dsabremaster: Build Y1 Dsabremaster\n\n4) fogus: Build G1 Fogus\n\n5) dsabremaster: Discover Y1 Dsabremaster B1 Venture\n\n6) fogus: Build G1 Fogus\n\n7) dsabremaster: Trade Y1 G1 Venture\n\n8) fogus: Trade G1 R1 Fogus\n\n9) dsabremaster: Build Y1 Dsabremaster\n\n10) fogus: Discover R1 Fogus Y3 Plug\n\n11) dsabremaster: Build Y1 Dsabremaster\n\n12) fogus: Move R1 Plug Venture\n\n13) dsabremaster: Sacrifice Y1 Dsabremaster\nDiscover G1 Venture B3 Azure\n\n14) fogus: Trade G1 Y1 Fogus\n\n15) dsabremaster: Build Y1 Dsabremaster\n\n16) fogus: Move Y1 Fogus Azure\n\n17) dsabremaster: Build G1 Azure\n\n18) fogus: Move Y1 Azure Venture\n\n19) dsabremaster: Trade Y1 R1 Dsabremaster\n\n20) fogus: Discover R1 Venture Y3 Flipper\n\n21) dsabremaster: Discover Y1 Dsabremaster Y1 Hermes\n\n22) fogus: Move R1 Flipper Fogus\n\n23) dsabremaster: Build Y2 Dsabremaster\n\tfogus: sorry for the undo.  i mistyped the moving ship\n\tdsabremaster: No problem.\n\n\tfogus: I made a HUGE mistake chasing you around early in the game.  :(  Live and learn I guess. :)\n\tdsabremaster: Yup. Hope to play again soon, thanks for the game!\n\nHomeworlds Online (SDG# 26395)\nStarted: 2014.10.30, Ended: 2014.12.11\nParticipants: jimbojimbojimbojimbo (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B1 Y2 G3\n\n2) jimbojimbojimbojimbo: Homeworld G3 R2 Y3 *\n\n3) hellajoey: Build G1 Hellajoey\n\n4) jimbojimbojimbojimbo: Build Y1 Jimbojimbojimbojimbo\n\n5) hellajoey: Trade G1 B1 Hellajoey\n\n6) jimbojimbojimbojimbo: Discover Y1 Jimbojimbojimbojimbo G1 Kashif\n\tjimbojimbojimbojimbo: Now I wish I didn&#39;t name myself jimbojimbojimbojimbo\n\n7) hellajoey: Build B1 Hellajoey\n\tjimbojimbojimbojimbo: jimbo was taken by me 2,095 days ago on a prev. email addy\n\n8) jimbojimbojimbojimbo: Build Y1 Kashif\n\n9) hellajoey: Trade B1 Y1 Hellajoey\n\n10) jimbojimbojimbojimbo: Discover Y1 Kashif B3 Bongo_solo\n\n11) hellajoey: Build G1 Hellajoey\n\n12) jimbojimbojimbojimbo: Build Y2 Jimbojimbojimbojimbo\n\n13) hellajoey: Discover Y1 Hellajoey G3 Gruner\n\n14) jimbojimbojimbojimbo: Build Y2 Kashif\n\n15) hellajoey: Build Y3 Gruner\n\n16) jimbojimbojimbojimbo: Build Y3 Kashif\n\n17) hellajoey: Move Y1 Gruner Kashif\nCatastrophe Kashif Yellow\n\n18) jimbojimbojimbojimbo: Trade Y1 G1 Bongo_solo\n\n19) hellajoey: Trade G1 R1 Hellajoey\n\n20) jimbojimbojimbojimbo: Build G1 Bongo_solo\n\n21) hellajoey: Move R1 Hellajoey Bongo_solo\n\n\nHomeworlds Online (SDG# 26394)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.31, Ended: 2014.11.12\nParticipants: wil (S), dsabremaster (N)\nWinner: wil\n\n1) dsabremaster: Homeworld B1 G2 Y3\n\n2) wil: Homeworld G3 B1 B3 *\n\twil: I saw you posted a challenge....thought if interested we could play more than one game at a time...\n\n3) dsabremaster: Build Y1 Dsabremaster\n\n4) wil: Build B1 Wil\n\tdsabremaster: Why not. That one will probably be over soon anyway. :P\n\tdsabremaster: Speaking of interesting opens... Double blue?\n\twil: Yes, you actually have to * asterisk it, the system says you are NUTS...the only two colors required in your homeworld to get going are green to grow and blue to change...  everynow and then I test that theory...making mistakes is how I learn...pushing the envelope is what I do..\n\n5) dsabremaster: Discover Y1 Dsabremaster G3 Garden\n\n6) wil: Trade B3 Y3 Wil\n\n7) dsabremaster: Build Y1 Garden\n\n8) wil: Build B2 Wil\n\n9) dsabremaster: Discover Y1 Garden B2 Lagoon\n\n10) wil: Trade B2 R2 Wil\n\n11) dsabremaster: Build Y1 Garden\n\n12) wil: Build R1 Wil\n\n13) dsabremaster: Build Y2 Garden\n\n14) wil: Move R2 Wil Lagoon\n\n15) dsabremaster: Move Y1 Lagoon Wil\n\n16) wil: Attack Y1 Wil\n\n17) dsabremaster: Build Y2 Dsabremaster\n\n18) wil: Move Y1 Wil Lagoon\n\n19) dsabremaster: Discover Y1 Garden B2 Meridian\n\n20) wil: Move R2 Lagoon Garden\n\n21) dsabremaster: Sacrifice Y1 Garden\nMove Y2 Garden Lagoon\n\n22) wil: Move Y1 Lagoon Garden\n\n23) dsabremaster: Trade Y2 G2 Dsabremaster\n\n24) wil: Build B2 Wil\n\n25) dsabremaster: Build G1 Dsabremaster\n\n26) wil: Discover B2 Wil Y2 Y2\n\n27) dsabremaster: Trade G1 R1 Dsabremaster\n\n28) wil: Trade Y3 G3 Wil\n\twil: ya got yourself a gun, yup mine was about to move again...\n\n29) dsabremaster: Build Y1 Dsabremaster\n\tdsabremaster: I had that feeling...\n\n30) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 Y2\nBuild B3 Y2\n\n31) dsabremaster: Move Y3 Dsabremaster Garden\n\n32) wil: Sacrifice B2 Y2\nTrade B3 R3 Y2\nTrade B3 Y3 Wil\n\n33) dsabremaster: Sacrifice G2 Dsabremaster\nBuild Y2 Meridian\nBuild Y3 Dsabremaster\n\twil: Moved your big ship outta the home world?  You are going to have to pay for that!!\n\twil: But yeah, anytime anyone trades a big ship for another color (and they don&#39;t have a reason to avoid or can&#39;t build it right back next move) you gotta look...just got a g3?  What are you going to build?  Just got a R3 what are you going to attack?  Just got a y3, what are you going to move?   \n\tdsabremaster: We will see...\n\n34) wil: Discover R2 Garden G2 G2\n\n35) dsabremaster: Move Y3 Garden G2\n\twil: lol, this fool got in a hurry quit thinkin and gave you that big yellow!!\n\tdsabremaster: Always helpful when your opponent gets in a hurry...\n\twil: oh I rely on the mistakes of others to win in this game!\n\n36) wil: Build R1 G2\n\tdsabremaster: That&#39;s usually what it comes down to. The tricky part is that it can be the smallest mistake which starts a chain reaction that you can&#39;t recover from....\n\tdsabremaster: That&#39;s usually what it comes down to. The tricky part is that it can be the smallest mistake which starts a chain reaction that you can&#39;t recover from....\n\n37) dsabremaster: Sacrifice R1 Dsabremaster\nAttack R2S G2\n\twil: yes, like simply not taking the best of three good moves...but in this case...I simply blew it.\r\n\n\n38) wil: Build R1 G2\n\tdsabremaster: It can be very difficult to know what the actual best available move is until later.\n\n39) dsabremaster: Sacrifice R2 G2\nAttack R1S G2\nAttack R1S G2\n\twil: tru\n\n40) wil: Build R2 Wil\n\n41) dsabremaster: Move R1 G2 Wil\n\n42) wil: Attack R1 Wil\n\n43) dsabremaster: Build R2 G2\n\n44) wil: Move R1 Wil G2\n\n45) dsabremaster: Move R1 G2 Garden\n\n46) wil: Build R2 G2\n\n47) dsabremaster: Sacrifice R2 G2\nAttack R2S G2\nAttack Y1S Garden\n\tdsabremaster: Choices, choices...\n\n48) wil: Build B2 Wil\n\n49) dsabremaster: Trade Y1 G1 Dsabremaster\n\n50) wil: Discover B1 Wil G2 Gtoo\n\n51) dsabremaster: Sacrifice Y2 Meridian\nMove Y3 G2 Garden\nMove Y3 Garden Gtoo\n\n52) wil: Trade B1 G1 Gtoo\n\n53) dsabremaster: Build G1 Dsabremaster\n\n54) wil: Trade Y3 G3 Wil\n\n55) dsabremaster: Sacrifice Y2 Lagoon\nDiscover G1 Dsabremaster R3 Ares\nDiscover Y1 Meridian B3 Didact\n\tdsabremaster: Shoot, that&#39;s what I should have done....\n\n56) wil: Move B3 Y2 Ares\n\n57) dsabremaster: Sacrifice G1 Ares\nBuild R2 Garden\n\n58) wil: Build R3 G2\n\n59) dsabremaster: Move R1 Garden G2\nCatastrophe G2 R\n\n60) wil: Move R3 Y2 Garden\n\n61) dsabremaster: Sacrifice Y1 Garden\nMove R2 Garden Gtoo\n\n62) wil: Build G1 Gtoo\n\n63) dsabremaster: Sacrifice R2 Gtoo\nAttack G1S Gtoo\nAttack G1S Gtoo\n\n64) wil: Trade R1 Y1 Wil\n\n65) dsabremaster: Trade G1 R1 Dsabremaster\n\n66) wil: Move G3 Wil Gtoo\nCatastrophe Gtoo G\n\n67) dsabremaster: Trade Y1 G1 Didact\n\n68) wil: Build B1 Wil\n\tdsabremaster: *Epic Facepalm*\n\tdsabremaster: *Epic Facepalm*\n\tdsabremaster: I guess that&#39;s that.\n\n69) dsabremaster: Build G1 Didact\n\twil: We&#39;ll see how it goes, risky maneuver, now I got to get a big three back in my homeworld...\n\n70) wil: Trade B2 Y2 Wil\n\n71) dsabremaster: Build R1 Dsabremaster\n\tdsabremaster: Even if I lose, I have to say that this was a pretty intense game for a while there.\n\twil: That is one of the most interesting parts of the game how the universe reboots...\n\n72) wil: Sacrifice Y2 Wil\nMove R3 Garden Dsabremaster\nMove B3 Ares Dsabremaster\n\n73) dsabremaster: Build R1 Dsabremaster\nCatastrophe Dsabremaster Red\n\tdsabremaster: I usually find that, as in this case, there&#39;s too big a disparity in the resources controlled by players once a catastrophe takes place.\n\twil: yup, it is a powerful tool, and the reason to be careful of overpopulating a star with the star color...\r\n\n\n74) wil: Sacrifice R2 Wil\nAttack Y3 Dsabremaster\nPass\n\n\twil: well, not much of a universe left...  thx for the game, I look forward to the next.\n\tdsabremaster: Ditto\n\twil: I just set up challenges in martian chess and volcano...the next pyramid games I am learning...\n\nHomeworlds Online (SDG# 26101)\nVariants: &quot;Hard time&quot;\nStarted: 2014.10.31, Ended: 2014.11.3\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 26383)\nVariants: &quot;Hard time&quot;\nStarted: 2014.11.1, Ended: 2014.11.28\nParticipants: Glutnix (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Glutnix: Homeworld G3 B2 Y3\n\twil: thank you for the game!   \n\twil: If unfamiliar with the game don&#39;t hesitate to ask questions.\n\n3) wil: Build G1 Wil\n\tGlutnix: Hi wil, thanks! I&#39;ve never played before, so please offer recommendations or corrections, and I will accept them humbly!\n\n4) Glutnix: Build Y1 Glutnix\n\twil: So far so good, you made a good opening...  \n\n5) wil: Trade G1 Y1 Wil\n\n6) Glutnix: Discover Y3 Glutnix R1 Virginmary\n\twil: the rule for me there was...you have a yellow, I should have a the capability to create more yellow as well... and since there was only one small one left, I better get it now before you corner the market on fuel to move about the universe...\n\twil: while the game is about taking over the universe...one way to do it is a monopoly of any economy, ability to horde and create a false shortage...\n\n7) wil: Build Y2 Wil\n\n8) Glutnix: Build Y2 Glutnix\n\n9) wil: Discover Y1 Wil G2 G2\n\n10) Glutnix: Trade Y2 G2 Glutnix\n\n11) wil: Build Y2 G2\n\n12) Glutnix: Build G1 Glutnix\n\n13) wil: Trade Y2 R2 Wil\n\n14) Glutnix: Move G1 Glutnix Virginmary\n\n15) wil: Discover Y2 G2 G1 G1\n\n16) Glutnix: Move Y3 Virginmary Glutnix\n\n17) wil: Build Y2 G2\n\n18) Glutnix: Discover Y1 Glutnix G1 Oldfashioned\n\twil: your current trouble...  you can&#39;t build a yellow at home or I&#39;ll send one in and catastrophe the bunch....if I move a drone into the mother of G!d system I can take it over... the game has many moving parts..\n\n19) wil: Sacrifice G3 Wil\nBuild Y2 G1\nBuild Y3 G1\nBuild Y3 G2\n\n20) Glutnix: Move Y1 Oldfashioned G2\nCatastrophe G2 Y\n\twil: New troubles..while your g1 is still at risk...the bigger trouble is at home...no gun...no red economy...no department of defense...I move in with a yellow queen and you are without defense.\n\twil: I learned by losing lots (lots) of games and watching these various attacks come at me from one direction after another...\n\n21) wil: Sacrifice Y2 G1\nDiscover Y2 G1 G2 G2\nMove Y2 G2 Wil\n\n22) Glutnix: Build G1 Glutnix\n\twil: ya done good, I wasn&#39;t thinkin right!!\n\n23) wil: Move Y3 G1 Glutnix\n\tGlutnix: Thanks! If I lose this game, at least I caused a catastrophe :)\n\n24) Glutnix: Trade G2 R2 Glutnix\n\n25) wil: Sacrifice R2 Wil\nAttack R2 Glutnix\nAttack Y3 Glutnix\n\twil: yes you did,  you changed my whole universe!\n\n\twil: risky behavior me leaving and attacking like that, but it appeared I would stay one step ahead...so I proceeded...\n\twil: keep playin, keep challenging, this is a great game...  any questions...ask.\n\twil: If you look at my record I&#39;ve played a lot of homeworlds....and one just over half of them...the first 20 I probably lost...but each time watched different strategies come at me, and eventually learned them.  I like the way this game plays, I&#39;ve always liked chess and actually prefer it over chess now...   I hope you continue playing it and enjoy it as much as I.\n\nHomeworlds Online (SDG# 26181)\nStarted: 2014.11.4, Ended: 2015.2.1\nParticipants: ts52 (S), wil (N), dsabremaster (E)\nWinner: ts52\n\n1) wil: Homeworld B3 G1 Y3\n\n2) dsabremaster: Homeworld B2 Y2 G3 *\n\n3) ts52: H Y1 B2 G3\n\n4) wil: Build Y1 Wil\n\twil: Oh my, you&#39;ve got a twin star...we are in a short universe!!\n\n5) dsabremaster: Build G1 Dsabremaster\n\n6) ts52: Build G1 Ts52\n\tdsabremaster: I guess that makes us next-door neighbors.\n\twil: I&#39;ve yet to actually conclude on of these three or four person games online...done so in person, but since they end up binary....to me that is really the best way for this game.\n\tts52: b g1 ts52\n\tts52: oops, sorry\n\n7) wil: Build Y1 Wil\n\n8) dsabremaster: Trade G1 R1 Dsabremaster\n\n9) ts52: Trade G1 R1 Ts52\n\n10) wil: Trade Y3 R3 Wil\n\tts52: Sorry for the delay\n\n11) dsabremaster: Build G1 Dsabremaster\n\n12) ts52: Build G1 Ts52\n\n13) wil: Build Y1 Wil\n\n14) dsabremaster: Discover G1 Dsabremaster B1 Kepler\n\n15) ts52: Build R1 Ts52\n\n16) wil: Discover Y1 Wil G2 G2\n\n17) dsabremaster: Build G1 Dsabremaster\n\n18) ts52: Build G2 Ts52\n\n19) wil: Build Y2 Wil\n\n20) dsabremaster: Build G2 Kepler\n\n21) ts52: Discover G2 Ts52 B3 Grover\n\n22) wil: Build R1 Wil\n\n23) dsabremaster: Trade G2 Y2 Kepler\n\n24) ts52: Build G2 Grover\n\n25) wil: Trade R3 G3 Wil\n\n26) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G2 Kepler\nBuild G3 Kepler\nBuild G3 Dsabremaster\n\n27) ts52: Move R1 Ts52 Grover\n\n28) wil: Build R2 Wil\n\n29) dsabremaster: Sacrifice G3 Kepler\nBuild G3 Kepler\nBuild Y2 Kepler\nBuild R2 Dsabremaster\n\n30) ts52: Build R2 Ts52\n\n31) wil: Build Y3 G2\n\n32) dsabremaster: Sacrifice Y2 Kepler\nDiscover G2 Kepler R2 Aurora\nMove Y2 Kepler Aurora\n\n33) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Ts52\nBuild R3 Grover\n\n34) wil: Build R3 Wil\n\n35) dsabremaster: Discover R1 Dsabremaster Y3 Telas\n\n36) ts52: Move R3 Ts52 Telas\n\n37) wil: Move G3 Wil Aurora\n\n38) dsabremaster: Sacrifice Y2 Aurora\nDiscover G2 Aurora B3 Abyss\nMove R1 Telas Kepler\n\n39) ts52: Sacrifice G2 Grover\nBuild G2 Grover\nBuild R3 Telas\n\n40) wil: Build Y2 G2\n\n41) dsabremaster: Trade G2 Y2 Abyss\n\n42) ts52: Trade R3 Y3 Grover\n\n43) wil: Sacrifice Y2 G2\nMove G3 Aurora Abyss\nMove R2 Wil G2\n\n44) dsabremaster: Move Y2 Abyss Kepler\n\twil: I think we are about the longest running multiplayer hw i&#39;ve been in...\n\tdsabremaster: Sorry for the Delay\n\n45) ts52: Discover R3 Telas Y2 Bigbird\n\n46) wil: Build Y3 G2\n\n47) dsabremaster: Move Y2 Kepler G2\nCatastrophe G2 Yellow\n\n48) ts52: Sacrifice G2 Grover\nBuild R2 Bigbird\nBuild R3 Grover\n\n49) wil: Build G2 Abyss\n\n50) dsabremaster: Trade G1 Y1 Kepler\n\n51) ts52: Move R3 Grover G2\n\n52) wil: Move R1 Wil G2\n\n53) dsabremaster: Build Y2 Kepler\n\n54) ts52: Attack R2N G2\n\n55) wil: Discover Y1 Wil G2 Gee2\n\twil: d y1 wil g2 gee2\n\n56) dsabremaster: Discover G1 Dsabremaster Y3 Spiral\n\twil: always feel silly when I do that....\n\n57) ts52: Build Y3 Grover\n\n58) wil: Sacrifice Y1 Wil\nMove R1 G2 Abyss\n\n59) dsabremaster: Build G1 Dsabremaster\n\n60) ts52: Move Y3 Grover G2\n\n61) wil: Build Y1 Gee2\n\n62) dsabremaster: Move G1 Dsabremaster Spiral\n\n63) ts52: Move G1 Ts52 Telas\n\n64) wil: Move Y1 Gee2 Abyss\n\n65) dsabremaster: Discover Y1 Kepler B2 Orion\n\n66) ts52: Move R3 G2 Spiral\n\n67) wil: Trade Y1 B1 Abyss\n\n68) dsabremaster: Move G1 Spiral Orion\n\n69) ts52: Attack G1E Spiral\n\n70) wil: Build Y1 Gee2\n\n71) dsabremaster: Trade Y1 B1 Orion\n\n72) ts52: B Y1 G2\n\n73) wil: Move Y1 Gee2 Abyss\n\n74) dsabremaster: Sacrifice G1 Orion\nBuild G1 Kepler\n\n75) ts52: Move R3 Spiral Orion\n\n76) wil: Move B1 Abyss Gee2\n\n77) dsabremaster: Sacrifice G3 Kepler\nBuild G3 Kepler\nBuild B1 Orion\nBuild B2 Orion\n\n78) ts52: Sacrifice Y1 G2\nMove R3 Orion Spiral\nCatastrophe Orion Blue\n\n79) wil: Sacrifice G3 Abyss\nBuild G3 Abyss\nBuild Y1 Abyss\nBuild B1 Gee2\n\n80) ts52: Move R3 Spiral Kepler\n\twil: another multiplayer game bites the dust...I&#39;m gonna remove this from challenges....we so rarely get to the end of them.\n\tts52: Might just be delayed over the holidays. I&#39;ve been remiss in making my plays in other games.\n\twil: yup...tis the season of the reason not to end games prematurely...\r\n\n\n81) wil: Move G2 Abyss Dsabremaster\n\twil: now this is a fine mess..\n\tts52: d&#39;oh! sorry everyone. moving now.\n\tts52: oh, didn&#39;t realize he resigned.. yeah, this will be interesting\n\n82) ts52: A G3E Kepler\n\n83) wil: Move G2 Dsabremaster Spiral\n\twil: What are you toying with that other game?  You never go that easy on me...\n\n84) ts52: M R3 Bigbird Spiral\n\n85) wil: Move G3 Abyss Dsabremaster\n\n86) ts52: Attack G2N Spiral\n\n87) wil: Discover B1 Gee2 B3 B3\n\n88) ts52: Attack Y2E Kepler\n\n89) wil: Sacrifice R1 Abyss\nAttack R2E Dsabremaster\n\twil: I&#39;ve discontinued my challenge on multiplayer...I like binary so much better...\n\n90) ts52: Attack R1E Kepler\n\tts52: Yeah, I definitely prefer binary...\n\n91) wil: Attack G3E Dsabremaster\n\n92) ts52: Move R3 Kepler Abyss\n\n93) wil: Move B1 Gee2 Abyss\n\n94) ts52: Attack Y1N Abyss\n\n95) wil: Sacrifice G3 Dsabremaster\nBuild B1 Abyss\nBuild B2 Abyss\nBuild B2 B3\nCatastrophe Abyss B\n\n96) ts52: Build G3 Telas\n\n97) wil: Move Y1 Gee2 B3\n\n98) ts52: Sacrifice G3 Telas\nBuild G2 Grover\nBuild Y1 Kepler\nBuild G3 Telas\n\n99) wil: Move G3 Dsabremaster B3\n\n100) ts52: Sacrifice G3 Telas\nBuild G3 Telas\nBuild R1 G2\nBuild R3 Bigbird\n\n101) wil: Move B1 B3 Ts52\n\n102) ts52: Attack B1N Ts52\n\n103) wil: Build Y1 B3\n\n104) ts52: Move B1 Ts52 Telas\n\n105) wil: Build B1 B3\n\n106) ts52: Move B1 Telas G2\n\n107) wil: Move B1 B3 Dsabremaster\n\twil: You are like a cat playing with a half dead mouse...when are you gonna put me outta my misery?\n\n108) ts52: Move R3 Telas Dsabremaster\n\tts52: Sorry. I&#39;ll focus on ending this. Been on vacation...\n\twil: no worries...you&#39;ve been moving....just not in for the kill...I think your intending on owning every ship before you take me out...\n\twil: Where did you go on holiday?\n\n\twil: very cool....  memories are worth making...\n\twil: there was just no getting anywhere here...  You&#39;ve had me for a while and you couldn&#39;t even make a mistake disasterous enough for me to catch up.\n\tts52: Fair enough. Thanks for the game!\n\twil: thank you\n\nHomeworlds Online (SDG# 26419)\nVariants: &quot;Unrated&quot;\nStarted: 2014.11.6, Ended: 2014.11.13\nParticipants: fogus (S), dsabremaster (N)\nWinner: fogus\n\n1) dsabremaster: Homeworld G1 R2 B3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) dsabremaster: Build B1 Dsabremaster\n\n4) fogus: Build G1 Fogus\n\n5) dsabremaster: Trade B1 G1 Dsabremaster\n\tfogus: Thanks (again) for the game.  I&#39;ll try my best to provide a more convincing challenge this time. \n\tdsabremaster: No problem. I actually have more fun when I don&#39;t have to worry that any move I make might be the one that dooms me... \n\n6) fogus: Build G2 Fogus\n\tfogus: That&#39;s part of the reason why I tend to only play unrated games on this site.  It&#39;s too easy to get stressed about ratings and such.\n\n7) dsabremaster: Build G2 Dsabremaster\n\n8) fogus: Discover G1 Fogus Y3 Turtle\n\n9) dsabremaster: Trade G1 Y1 Dsabremaster\n\n10) fogus: Build G1 Fogus\n\n11) dsabremaster: Discover G2 Dsabremaster R3 Requiem\n\n12) fogus: Trade G1 R1 Fogus\n\n13) dsabremaster: Build Y1 Dsabremaster\n\n14) fogus: Build R1 Fogus\n\n15) dsabremaster: Build B1 Dsabremaster\n\n16) fogus: Move G3 Fogus Requiem\n\n17) dsabremaster: Build G1 Requiem\n\n18) fogus: Sacrifice G3 Requiem\nBuild G2 Turtle\nBuild G3 Fogus\nBuild G3 Turtle\n\tdsabremaster: I think you might have jumped the gun there, just a little.\n\n19) dsabremaster: Sacrifice Y1 Dsabremaster\nDiscover G2 Requiem Y2 Sigma-2\n\n20) fogus: Move G3 Turtle Sigma-2\n\tdsabremaster: Or maybe I jumped the gun in thinking that you had. O.o\n\n21) dsabremaster: Build G3 Requiem\n\n22) fogus: Sacrifice R1 Fogus\nAttack G2 Sigma-2\n\n23) dsabremaster: Move B1 Dsabremaster Requiem\n\n24) fogus: Build R1 Fogus\n\n25) dsabremaster: Sacrifice G3 Requiem\nBuild G3 Requiem\nBuild B1 Dsabremaster\nBuild B2 Requiem\n\n26) fogus: Trade G2 Y2 Fogus\n\n27) dsabremaster: Build Y1 Dsabremaster\n\n28) fogus: Build G2 Fogus\n\n29) dsabremaster: Move Y1 Dsabremaster Requiem\n\n30) fogus: Trade G3 R3 Fogus\n\n31) dsabremaster: Trade B1 R1 Dsabremaster\n\n32) fogus: Build G3 Fogus\n\tfogus: Hmmm, catastrophe didn&#39;t quite work the way that I thought. :(\n\tfogus: Back to re-reading the rules to make sure I didn&#39;t miss anything else.\n\tdsabremaster: How did you think it worked?\n\n33) dsabremaster: Sacrifice G3 Requiem\nBuild G3 Requiem\nBuild Y1 Requiem\nBuild R2 Dsabremaster\n\tfogus: I thought that it destroyed all ships in the system, not just the same color.  Needless to say, that changed my plans drastically. :(\n\n34) fogus: Sacrifice Y2 Fogus\nMove R1 Fogus Turtle\nMove R1 Turtle Dsabremaster\nCatastrophe Dsabremaster R\n\tdsabremaster: It will destroy all ships in the system if you destroy the star.\n\n35) dsabremaster: Sacrifice G3 Requiem\nBuild G3 Requiem\nBuild Y2 Requiem\nBuild Y3 Dsabremaster\n\n36) fogus: Move G3 Sigma-2 Dsabremaster\n\tfogus: That was the missing part of my understanding... the connection between the star and the ships at it.\n\n37) dsabremaster: Sacrifice Y3 Dsabremaster\nMove G3 Requiem Dsabremaster\nMove B2 Requiem Dsabremaster\nMove Y2 Requiem Dsabremaster\n\n38) fogus: Move G1 Turtle Dsabremaster\nCatastrophe Dsabremaster G\n\tdsabremaster: wow, I baked myself. And I was only one mistake from victory...\n\n\tdsabremaster: Luckily there&#39;s usually plenty of time to think about it. Also, I decided not to just give up. Probably didn&#39;t change the outcome though...\n\tfogus: Thanks for the re-match.  I really enjoyed the games.  \n\tdsabremaster: Ditto, and well done.\n\nHomeworlds Online (SDG# 26428)\nStarted: 2014.11.6, Ended: 2014.11.11\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B1 Y2 G3\n\n2) Grissom: Homeworld G3 B1 Y3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build Y1 Grissom\n\n5) hellajoey: Build G1 Hellajoey\n\tGrissom: I didn&#39;t realize I can only build ships the same color as the ships I have. I thought it included the homeworld colors...\n\n6) Grissom: Discover Y1 Grissom G2 Moria\n\thellajoey: Yeah, there will probably be a few discoveries like that. That&#39;s a first game is for I guess :)\n\thellajoey: Yeah, there will probably be a few discoveries like that. That&#39;s a first game is for I guess :)\n\n7) hellajoey: Discover G1 Hellajoey B3 Blubot\n\thellajoey: Luckily, you&#39;re not in a bad spot yet. I would trade that yellow for a green this move though.\n\n8) Grissom: Build Y1 Moria\n\n9) hellajoey: Trade G1 Y1 Hellajoey\n\n10) Grissom: Build Y2 Grissom\n\n11) hellajoey: Move Y1 Hellajoey Blubot\n\n12) Grissom: Discover Y2 Grissom B2 Rohan\n\n13) hellajoey: Build Y2 Blubot\n\n14) Grissom: Build Y3 Grissom\n\n15) hellajoey: Discover Y2 Blubot G2 Grunland\n\n16) Grissom: Trade Y3 R3 Grissom\n\n17) hellajoey: Build Y3 Grunland\n\n18) Grissom: Build Y3 Grissom\n\n19) hellajoey: Sacrifice Y3 Grunland\nMove Y1 Blubot Grunland\nMove Y1 Grunland Grissom\nMove Y2 Grunland Grissom\nCatastrophe Grissom Yellow\n\n20) Grissom: Trade Y2 G2 Rohan\n\n21) hellajoey: Build G1 Hellajoey\n\n22) Grissom: Build R1 Grissom\n\n23) hellajoey: Build G1 Blubot\n\n24) Grissom: Move Y1 Moria Grissom\n\n25) hellajoey: Sacrifice G3 Hellajoey\nBuild G2 Blubot\nBuild G3 Hellajoey\nBuild G3 Hellajoey\n\n26) Grissom: Move Y1 Grissom Rohan\n\n27) hellajoey: Trade G1 Y1 Blubot\n\n28) Grissom: Trade R3 Y3 Grissom\n\n29) hellajoey: Discover G3 Hellajoey B3 Ruddin\n\n30) Grissom: Build Y2 Grissom\n\n31) hellajoey: Trade G1 B1 Blubot\n\n32) Grissom: Sacrifice G2 Rohan\nBuild Y2 Rohan\nBuild Y3 Moria\n\n33) hellajoey: Build Y3 Blubot\n\n34) Grissom: Sacrifice Y2 Grissom\nMove Y1 Rohan Blubot\nMove Y1 Moria Blubot\nCatastrophe Blubot Yellow\n\n35) hellajoey: Build G1 Ruddin\n\thellajoey: Crap. After I just got done telling you I&#39;m always watching out for that :)\n\n36) Grissom: Trade Y2 G2 Rohan\n\n37) hellajoey: Sacrifice G3 Hellajoey\nBuild G1 Blubot\nBuild G3 Hellajoey\nBuild B2 Blubot\n\n38) Grissom: Discover Y3 Moria B3 Thebluegate\n\n39) hellajoey: Trade B2 Y2 Blubot\n\n40) Grissom: Build Y1 Grissom\n\n41) hellajoey: Discover B1 Blubot G2 Gruner\n\n42) Grissom: Move Y1 Grissom Rohan\n\n43) hellajoey: Sacrifice G3 Hellajoey\nBuild G3 Hellajoey\nBuild B2 Gruner\nBuild B2 Gruner\n\n44) Grissom: Trade Y3 R3 Grissom\n\n45) hellajoey: Trade G1 R1 Hellajoey\n\n46) Grissom: Move G2 Rohan Thebluegate\n\n47) hellajoey: Sacrifice G3 Ruddin\nBuild G1 Hellajoey\nBuild G3 Ruddin\nBuild Y1 Blubot\n\thellajoey: I lied. I did a move ;)\n\thellajoey: undid\n\n48) Grissom: Move Y1 Rohan Thebluegate\n\n49) hellajoey: Move Y1 Blubot Gruner\n\n50) Grissom: Move Y3 Thebluegate Gruner\n\n51) hellajoey: Sacrifice G3 Hellajoey\nBuild G3 Hellajoey\nBuild Y1 Gruner\nBuild Y2 Gruner\nCatastrophe Gruner Yellow\n\n52) Grissom: Build Y1 Thebluegate\n\n53) hellajoey: Build Y1 Blubot\n\n54) Grissom: Trade R3 Y3 Grissom\n\n55) hellajoey: Move Y1 Blubot Gruner\n\n56) Grissom: Trade Y1 R1 Thebluegate\n\n57) hellajoey: Move B1 Gruner Grissom\n\n58) Grissom: Sacrifice G2 Thebluegate\nBuild Y1 Thebluegate\nBuild Y2 Grissom\n\n59) hellajoey: Move B2 Gruner Grissom\n\n60) Grissom: Build R2 Grissom\n\n61) hellajoey: Move G1 Blubot Gruner\n\n62) Grissom: Discover Y2 Grissom G2 Gondor\n\n63) hellajoey: Discover G2 Blubot B2 Blub\n\n64) Grissom: Build Y3 Grissom\n\n65) hellajoey: Sacrifice G3 Ruddin\nBuild G3 Blub\nBuild R2 Hellajoey\nPass\n\n66) Grissom: Build Y3 Gondor\n\n67) hellajoey: Move B2 Gruner Grissom\nCatastrophe Grissom Blue\n\n68) Grissom: Sacrifice Y3 Gondor\nMove Y1 Thebluegate Hellajoey\nMove Y1 Thebluegate Hellajoey\nMove Y3 Grissom Hellajoey\nCatastrophe Hellajoey Yellow\n\n69) hellajoey: Move G1 Gruner Grissom\n\n70) Grissom: Sacrifice Y2 Gondor\nMove R1 Thebluegate Hellajoey\nMove R1 Grissom Hellajoey\nCatastrophe Hellajoey Red\n\n71) hellajoey: Sacrifice Y2 Blubot\nMove G2 Blub Grissom\nMove G3 Blub Grissom\nCatastrophe Grissom Green\n\n\tGrissom: Good game\n\thellajoey: Hey. Fun game. How&#39;s it goin&#39;?\n\nHomeworlds Online (SDG# 26463)\nVariants: &quot;Hard time&quot;\nStarted: 2014.11.11, Ended: 2014.11.13\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: Homeworld Y2 B1 G3\n\n2) TeeTeeTee: Homeworld Y1 B3 G3\n\twil: tis me an u agin...\n\n3) wil: Build G1 Wil\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) wil: Trade G1 B1 Wil\n\tTeeTeeTee: So it is! You know, half of the games of Homeworlds I&#39;ve played have been against you. (Not that I mind, though: you play very quickly!)\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\twil: lol...you need better players... we need to create more players...  \r\n\n\twil: I think quickly has a lot to do with my downfall..\r\n\n\n7) wil: Build B1 Wil\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) wil: Discover B1 Wil G3 G3\n\n10) TeeTeeTee: Discover Y1 Teeteetee G2 Spite\n\n11) wil: Build B2 G3\n\twil: Nice, I see the error of my ways...finally\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Spite\nBuild Y2 Spite\nBuild Y3 Teeteetee\n\n13) wil: Build B2 Wil\n\n14) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n15) wil: Trade B2 R2 Wil\n\n16) TeeTeeTee: Build Y3 Teeteetee\n\n17) wil: Discover R2 Wil Y3 Y3\n\n18) TeeTeeTee: Trade Y3 R3 Teeteetee\n\twil: amazing how I lost this game so early nice play\n\n19) wil: Build G1 Wil\n\n20) TeeTeeTee: Build Y3 Teeteetee\n\n\tTeeTeeTee: Yeah, I think that this one was my game from as soon as I took the last y1. A possible stalling move would have been to discover a g3 as soon as I sacrificed by g3: this would have also have stopped you from being able to sacrifice your own g3, but would have certainly slowed me down too.\r\n\r\nYou&#39;ve made this mistake before! The first seven moves we each played in this game were identical to this one: http://superdupergames.org/main.html?page=archive_play&amp;gid=26272 - I tried to monopolise yellow, you tried to monopolise blue, but choosing the colour with fewer medium pyramids in the stash gave me the advantage.\r\n\r\nThanks for the game. Feel free to re-challenge me, as this one was quite brief.\n\twil: Yeah..story of my life making the same mistakes over and over...  I&#39;ma gonna wait and see if you get a real challenger, if not, I&#39;ll step back in as a sparring partner and hope to give you a little run for your money...\n\tTeeTeeTee: I think you&#39;re a little harsh on yourself, here. You&#39;ve played stronger games and weaker games: I thought that the previous game we played could have gone either way right up until near the the end. The other relatively recent game we played (#26038) was close, and I felt that I was lucky to win that one. It does feel like games are decided on just one or two errors these days, though... \n\nHomeworlds Online (SDG# 26418)\nVariants: &quot;Hard time&quot;\nStarted: 2014.11.12, Ended: 2014.12.10\nParticipants: dsabremaster (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 G2 Y3\n\n2) dsabremaster: Homeworld B1 Y2 G3\n\n3) wil: Build Y1 Wil\n\n4) dsabremaster: Build G1 Dsabremaster\n\n5) wil: Build Y1 Wil\n\n6) dsabremaster: Build G1 Dsabremaster\n\n7) wil: Discover Y1 Wil B1 B1\n\n8) dsabremaster: Discover G1 Dsabremaster Y3 Depot\n\n9) wil: Trade Y1 R1 Wil\n\n10) dsabremaster: Trade G1 R1 Dsabremaster\n\n11) wil: Build Y1 Wil\n\n12) dsabremaster: Build G1 Dsabremaster\n\n13) wil: Trade Y1 G1 Wil\n\n14) dsabremaster: Trade G1 Y1 Dsabremaster\n\n15) wil: Move G1 Wil B1\n\n16) dsabremaster: Trade Y1 B1 Dsabremaster\n\n17) wil: Build R1 Wil\n\n18) dsabremaster: Build R2 Dsabremaster\n\n19) wil: Build R2 Wil\n\n20) dsabremaster: Move B1 Dsabremaster Depot\n\n21) wil: Move R2 Wil B1\n\n22) dsabremaster: Build B2 Depot\n\n23) wil: Move R1 Wil B1\n\n24) dsabremaster: Build B2 Depot\n\n25) wil: Trade R2 B2 B1\n\n26) dsabremaster: Discover B2 Depot R2 Dais\n\n27) wil: Build Y1 B1\n\n28) dsabremaster: Trade R2 Y2 Dsabremaster\n\n29) wil: Discover B2 B1 G3 G3\n\n30) dsabremaster: Discover B1 Depot G1 Knoll\n\n31) wil: Build B3 G3\n\n32) dsabremaster: Build B3 Knoll\n\n33) wil: Build R2 B1\n\n34) dsabremaster: Build G2 Dsabremaster\n\n35) wil: Trade R2 Y2 B1\n\n36) dsabremaster: Build R2 Dsabremaster\n\n37) wil: Trade B3 G3 G3\n\n38) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G2 Depot\nBuild B3 Depot\nBuild G3 Dsabremaster\n\n39) wil: Sacrifice Y1 B1\nMove G3 G3 B1\n\n\n40) dsabremaster: Trade B1 Y1 Knoll\n\n41) wil: Sacrifice G3 B1\nBuild R2 B1\nBuild R3 Wil\nBuild G3 B1\n\n42) dsabremaster: Sacrifice B2 Dais\nTrade B3 R3 Depot\nTrade B3 Y3 Knoll\n\n43) wil: Sacrifice G3 B1\nBuild G3 B1\n\nBuild R2 Wil\nBuild R3 B1\n\n44) dsabremaster: Sacrifice Y2 Dsabremaster\nMove R1 Dsabremaster Depot\nMove R1 Depot B1\nCatastrophe B1 Red\n\n45) wil: Move R2 Wil B1\n\n46) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild R1 Dsabremaster\nBuild B1 Depot\n\n47) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild B2 G3\nBuild B3 G3\n\n48) dsabremaster: Move B1 Depot Knoll\n\n49) wil: Discover Y1 B1 B3 B3\n\n50) dsabremaster: Move B1 Knoll G3\nCatastrophe G3 Blue\n\n51) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild Y1 B1\nBuild Y2 B3\n\n52) dsabremaster: Move B2 Depot Knoll\n\n53) wil: Sacrifice Y2 B1\nMove Y1 B3 Knoll\nMove Y2 B3 Knoll\nCatastrophe Knoll Y\n\n54) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild B1 Knoll\nBuild B2 Knoll\n\n55) wil: Trade R2 B2 B1\n\n56) dsabremaster: Trade B2 Y2 Knoll\n\n57) wil: Move R3 Wil Knoll\n\n58) dsabremaster: Sacrifice B2 Knoll\nTrade B1 R1 Knoll\nTrade Y2 R2 Knoll\n\n59) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild R2 Knoll\nBuild R3 Wil\nCatastrophe Knoll R\n\n60) dsabremaster: Discover G1 Depot Y1 Ryloth\n\n61) wil: D B2 B1 G3 G3\n\n62) dsabremaster: Trade R1 Y1 Dsabremaster\n\n63) wil: M R3 Wil Ryloth\n\n64) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G1 Ryloth\nBuild G3 Dsabremaster\nBuild R1 Dsabremaster\n\n65) wil: Attack G1 Ryloth\n\n66) dsabremaster: Discover Y1 Dsabremaster R3 Echo\n\n67) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild B1 G3\nBuild B2 G3\n\n68) dsabremaster: Discover G1 Ryloth B2 Midway\n\n69) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild Y2 B1\nBuild R1 Ryloth\n\n70) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild R2 Depot\nBuild Y2 Echo\n\n71) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild Y3 Wil\nBuild R2 Wil\n\n72) dsabremaster: Sacrifice Y1 Echo\nDiscover R3 Depot Y1 Pit\n\n73) wil: Sacrifice Y2 B1\nMove G3 B1 Depot\nMove B2 G3 Ryloth\n\n74) dsabremaster: Move R2 Depot B1\n\n75) wil: Sacrifice Y1 B1\nMove G1 B1 G3\n\n76) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild Y1 Echo\nBuild Y2 Echo\n\n77) wil: Sacrifice R1 Wil\nAttack G2 Depot\n\n78) dsabremaster: Move Y1 Echo B1\n\n79) wil: Sacrifice Y3 Wil\nMove G1 G3 Dsabremaster\nMove R1 Ryloth G3\nMove G2 Depot Dsabremaster\nCatastrophe Dsabremaster G\n\n80) dsabremaster: Sacrifice Y2 Echo\nMove Y2 Echo Dsabremaster\nMove R3 Pit Wil\n\n81) wil: Attack R3 Wil\n\twil: had to wait for the planets to align...\n\tdsabremaster: Welp. I knew it was coming, eventually. I got out-economied again.\n\n82) dsabremaster: Sacrifice G1 Midway\nBuild R1 B1\n\n83) wil: Sacrifice Y3 Wil\nMove G3 Depot Dsabremaster\nMove R2 Wil B1\nMove R1 G3 B1\nCatastrophe B1 R\n\twil: yes, monopolies cause problems... but lol.. I had two plans in place depending on what you did...and I almost fired one off after I saw what you did in your homeworld...  and almost did it until I took one last look and saw what you did in MY homeworld!!  While we are but moves away from the end, that was a good game.  I thought I had you early and you changed the universe on me.  Ready for more whenever you are...\n\tdsabremaster: Yeah, I was hoping you might not notice... heh.\r\nI thought I had a chance in the middle there but I managed to get out-manuevered again. I&#39;ll have to take a few more risks next time.\n\n84) dsabremaster: Move Y1 B1 Wil\n\n85) wil: Sacrifice R3 Ryloth\nAttack R2 Dsabremaster\nAttack R1 Dsabremaster\nAttack Y2 Dsabremaster\n\twil: Going for galactic domination now....\n\n\twil: We send a team in to sanitize the ship, as rumors of there being yellow fever aboard... have no fear we will take good care of your women and children...\n\nHomeworlds Online (SDG# 26519)\nVariants: &quot;Hard time&quot;\nStarted: 2014.11.18, Ended: 2014.11.19\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 Y2 G3\n\tTeeTeeTee: Another re-challenge! Have a good game.\r\n\r\n(Perhaps I should play some more non-ladder games, as I only ever make a conservative choice of homeworlds in these ladder games.)\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build G1 Wil\n\twil: Yeah, I just signed up on the ladders of volcano an martian chess and put up challenges so I can learn those...\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n6) wil: Trade G1 Y1 Wil\n\tTeeTeeTee: Maybe I should give those two a go at some point... Homeworlds and Zendo were the only two pyramids games that have really leapt out at me so far. (I think Zendo works better in a pub than online, though: the SDG interface for Zendo is arcane and ineffective, and the game that I was running has completely fizzled out, now.)\n\twil: Zendo was my first introduction to them...my daughter bought it at a game designer gathering, she met Kory, played the game with others there and wanted to get it..\n\n7) TeeTeeTee: Build Y2 Teeteetee\n\n8) wil: Build Y2 Wil\n\twil: I still am working on the strategies involved in Martian Chess and Volcano...have yet to win a game (but I am might just have one soon)\n\n9) TeeTeeTee: Discover Y1 Teeteetee G3 Leviathan\n\twil: hmmm  am I still gonna make the same mistake?  I should have had a y3 homeworld?\n\n10) wil: Discover Y1 Wil G1 G1\n\n11) TeeTeeTee: Build Y3 Leviathan\n\twil: i think that worx\n\n12) wil: Build Y3 G1\n\n13) TeeTeeTee: Move Y3 Leviathan G1\n\tTeeTeeTee: This game is very different from the last few: you&#39;ve not been frozen out of yellow, or any other colour. By choosing to not have a y3 in your homeworld, you immediately made yellows the most advantageous ships to go for: if I&#39;d done anything else but go for a large yellow and let you do the same, then I think I&#39;d have been at a great disadvantage. \r\n\r\nI&#39;ll have to stop and think about my next move for a bit, here. Up till now, my moves have been mostly automatic, as the opening was more-or-less decided by your choice of homeworld.\n\tTeeTeeTee: Let&#39;s try this.\n\n14) wil: Move Y3 G1 Leviathan\n\twil: oh my\n\twil: incredible move... so many ways to make a big costly mistake on my part!  let us hope this isn&#39;t one of them.\n\n15) TeeTeeTee: Build Y3 Leviathan\n\n16) wil: Move Y3 Leviathan Teeteetee\n\n17) TeeTeeTee: Trade Y2 R2 Teeteetee\n\twil: I just don&#39;t know...\n\n18) wil: Discover Y3 Teeteetee R3 R3\n\tTeeTeeTee: I wouldn&#39;t have done that. I don&#39;t believe you can both keep that y3 and stop me invading your homeworld on my next turn, now.\n\twil: amazing defeat yet agin...\n\n19) TeeTeeTee: Move Y3 G1 Wil\n\n20) wil: Move Y1 G1 Wil\nCatastrophe Wil Y\n\tTeeTeeTee: I think this is my game again, yes. You can blow up your homeworld and my large yellow, but I&#39;ll invade in a turn or two anyway as our homeworlds will be directly connected.\n\n21) TeeTeeTee: Build R1 Teeteetee\n\twil: I think I lose before I challenge with you!\n\n22) wil: Build G1 Wil\n\n23) TeeTeeTee: Move G3 Teeteetee Wil\n\n24) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G1 Wil\nBuild Y1 R3\nCatastrophe Wil G\n\tTeeTeeTee: I think this game went badly for you because you sort of gave up as soon as I moved my y3 to g1. I was definitely ahead at that point, but the game wasn&#39;t over! Once you made the unfortunate move of invading with the y3, that was when the game was practically decided.\n\twil: I didn&#39;t see any move at that time...the move I made I missed you getting the red...\n\n\nHomeworlds Online (SDG# 26402)\nVariants: &quot;Hard time&quot;\nStarted: 2014.11.19, Ended: 2014.12.1\nParticipants: SilentTitan (S), DetectiveAzul (N)\nWinner: DetectiveAzul\n\n1) DetectiveAzul: Homeworld B1 G2 Y3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) DetectiveAzul: Build Y1 Detectiveazul\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) DetectiveAzul: Trade Y3 R3 Detectiveazul\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) DetectiveAzul: Build R1 Detectiveazul\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) DetectiveAzul: Build R1 Detectiveazul\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) DetectiveAzul: Trade R1 G1 Detectiveazul\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) DetectiveAzul: Trade R3 B3 Detectiveazul\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n15) DetectiveAzul: Build B2 Detectiveazul\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\n17) DetectiveAzul: Discover B2 Detectiveazul R3 Flordealeli\n\n18) SilentTitan: Trade B1 R1 Sol\n\n19) DetectiveAzul: Trade B3 Y3 Detectiveazul\n\n20) SilentTitan: Trade B3 G3 Silenttitan\n\n21) DetectiveAzul: Sacrifice Y1 Detectiveazul\nMove B2 Flordealeli Detectiveazul\n\n22) SilentTitan: Trade B2 Y2 Sol\n\n23) DetectiveAzul: Build Y1 Detectiveazul\n\n24) SilentTitan: Build B1 Sol\n\n25) DetectiveAzul: Trade B2 R2 Detectiveazul\n\n26) SilentTitan: Discover B3 Sol G3 Soul\n\n27) DetectiveAzul: Trade R2 B2 Detectiveazul\n\n28) SilentTitan: Build B2 Soul\n\n29) DetectiveAzul: Trade B2 R2 Detectiveazul\n\n\nHomeworlds Online (SDG# 26484)\nVariants: &quot;Hard time&quot;\nStarted: 2014.11.19, Ended: 2014.11.19\nParticipants: DetectiveAzul (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld R1 B2 G3\n\n2) DetectiveAzul: Homeworld B1 G2 Y3\n\tTeeTeeTee: Hello, and welcome!\n\n3) TeeTeeTee: Build G1 Teeteetee\n\tDetectiveAzul: Hello!\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) TeeTeeTee: Trade G1 B1 Teeteetee\n\n6) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n7) TeeTeeTee: Build B1 Teeteetee\n\n8) DetectiveAzul: Discover G1 Detectiveazul R3 Kamino\n\n9) TeeTeeTee: Build G1 Teeteetee\n\n10) DetectiveAzul: Build G1 Kamino\n\n11) TeeTeeTee: Build G2 Teeteetee\n\n12) DetectiveAzul: Build Y1 Detectiveazul\n\n13) TeeTeeTee: Trade G2 Y2 Teeteetee\n\n14) DetectiveAzul: Build Y1 Detectiveazul\n\n15) TeeTeeTee: Discover G1 Teeteetee Y3 Frodo\n\n16) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n17) TeeTeeTee: Build G2 Teeteetee\n\n18) DetectiveAzul: Build Y1 Detectiveazul\n\n19) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G2 Frodo\nBuild G3 Frodo\nBuild G3 Teeteetee\n\n20) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove G1 Kamino Detectiveazul\nMove G1 Detectiveazul Frodo\nMove Y1 Detectiveazul Kamino\nCatastrophe Frodo G\n\n21) TeeTeeTee: Trade G3 R3 Teeteetee\n\n22) DetectiveAzul: Build R1 Detectiveazul\n\n23) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove G2 Teeteetee Kamino\nMove G2 Kamino Detectiveazul\n\n\tTeeTeeTee: Thanks for the game! I must say, you do have a surprisingly aggressive style - I&#39;ve not played a game with a short universe before. It certainly makes for an interesting change from most of the games that I play, though! Have you played Homeworlds much before?\n\nHomeworlds Online (SDG# 26426)\nVariants: &quot;Unrated&quot;\nStarted: 2014.11.21, Ended: 2014.12.28\nParticipants: dsabremaster (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) dsabremaster: Homeworld Y1 G3 B3\n\n3) Remneb: Build G1 Remneb\n\n4) dsabremaster: Build B1 Dsabremaster\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) dsabremaster: Trade B1 Y1 Dsabremaster\n\n7) Remneb: Build Y2 Remneb\n\n8) dsabremaster: Build B1 Dsabremaster\n\n9) Remneb: Trade Y1 B1 Remneb\n\n10) dsabremaster: Trade B1 G1 Dsabremaster\n\n11) Remneb: Build G1 Remneb\n\n12) dsabremaster: Discover G1 Dsabremaster B2 Union\n\n13) Remneb: Discover B1 Remneb Y3 Thor\n\n14) dsabremaster: Build B1 Dsabremaster\n\n15) Remneb: Build Y1 Remneb\n\n16) dsabremaster: Build Y2 Dsabremaster\n\n17) Remneb: Move Y1 Remneb Thor\n\n18) dsabremaster: Move Y1 Dsabremaster Union\n\n19) Remneb: Move B1 Thor Union\n\n20) dsabremaster: Build G1 Union\n\n21) Remneb: Move Y1 Thor Union\n\n22) dsabremaster: Discover G1 Union Y3 Felix\n\n23) Remneb: Trade B1 R1 Union\n\n24) dsabremaster: Trade Y2 R2 Dsabremaster\n\n25) Remneb: Attack Y1 Union\n\n26) dsabremaster: Sacrifice R2 Dsabremaster\nAttack R1N Union\nAttack Y1N Union\n\n27) Remneb: Discover Y1 Union G3 Drako\n\n28) dsabremaster: Build G2 Felix\n\n29) Remneb: Build Y2 Drako\n\n30) dsabremaster: Build Y2 Union\n\n31) Remneb: Build Y3 Remneb\n\n32) dsabremaster: Discover Y1 Union B3 Khalla\n\n33) Remneb: Discover Y3 Remneb Y3 Altar\n\n34) dsabremaster: Discover G1 Felix B1 Opal\n\n35) Remneb: Move G1 Remneb Altar\n\n36) dsabremaster: Build G2 Opal\n\n37) Remneb: Move Y3 Altar Union\n\n38) dsabremaster: Move R1 Union Altar\n\n39) Remneb: Trade Y3 R3 Union\n\n40) dsabremaster: Sacrifice Y2 Union\nMove G1 Union Khalla\nMove G2 Opal Altar\n\n41) Remneb: Sacrifice Y1 Drako\nMove R3 Union Altar\n\n\nHomeworlds Online (SDG# 26536)\nVariants: &quot;No undo&quot;\nStarted: 2014.11.22, Ended: 2014.11.26\nParticipants: hellajoey (S), Grissom (N)\nWinner: hellajoey\n\n1) Grissom: Homeworld Y2 B1 G3\n\n2) hellajoey: Homeworld B3 Y1 G3\n\n3) Grissom: Build G1 Grissom\n\n4) hellajoey: Build G1 Hellajoey\n\n5) Grissom: Discover G1 Grissom B3 Narnia\n\n6) hellajoey: Discover G1 Hellajoey B2 Blubot\n\n7) Grissom: Trade G1 Y1 Narnia\n\n8) hellajoey: Build G1 Hellajoey\n\n9) Grissom: Build G1 Grissom\n\n10) hellajoey: Build G2 Blubot\n\n11) Grissom: Move G1 Grissom Narnia\n\n12) hellajoey: Trade G1 Y1 Blubot\n\n13) Grissom: Build G1 Grissom\n\n14) hellajoey: Build Y2 Blubot\n\n15) Grissom: Discover G1 Grissom B3 Telmar\n\n16) hellajoey: Move Y2 Blubot Hellajoey\n\n17) Grissom: Build Y2 Narnia\n\n18) hellajoey: Build Y3 Blubot\n\n19) Grissom: Sacrifice Y2 Narnia\nMove G1 Narnia Blubot\nMove G1 Blubot Hellajoey\n\n20) hellajoey: Trade G1 R1 Hellajoey\n\n21) Grissom: Build G1 Hellajoey\n\n22) hellajoey: Trade G3 R3 Hellajoey\n\n23) Grissom: Build G2 Grissom\n\n24) hellajoey: Attack G1 Hellajoey\n\n25) Grissom: Sacrifice G3 Grissom\nBuild G2 Hellajoey\nBuild G3 Grissom\nBuild G3 Telmar\n\n26) hellajoey: Build G3 Blubot\n\n27) Grissom: Trade G2 Y2 Hellajoey\n\n28) hellajoey: Attack Y2 Hellajoey\n\n29) Grissom: Sacrifice G3 Grissom\nBuild G2 Hellajoey\nBuild Y3 Narnia\nBuild G3 Grissom\n\n30) hellajoey: Move G3 Blubot Narnia\n\n31) Grissom: Sacrifice Y3 Narnia\nMove Y1 Narnia Blubot\nMove Y1 Blubot Hellajoey\nDiscover G2 Grissom Y3 Kalormen\nCatastrophe Hellajoey Yellow\n\n32) hellajoey: Sacrifice Y1 Blubot\nMove G3 Narnia Grissom\n\n33) Grissom: Trade G3 R3 Grissom\n\n34) hellajoey: Sacrifice R1 Hellajoey\nAttack R3 Grissom\n\n\nHomeworlds Online (SDG# 26479)\nStarted: 2014.11.24, Ended: 2015.2.15\nParticipants: rosbi (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) rosbi: Homeworld B3 R2 G3\n\n3) ts52: Build G1 Ts52\n\n4) rosbi: Build G1 Rosbi\n\n5) ts52: Discover G1 Ts52 Y2 Bigbird\n\n6) rosbi: Trade G1 Y1 Rosbi\n\n7) ts52: Build G1 Ts52\n\n8) rosbi: Build G1 Rosbi\n\n9) ts52: Build G2 Bigbird\n\n10) rosbi: Trade G1 R1 Rosbi\n\n11) ts52: Trade G1 R1 Ts52\n\n12) rosbi: Discover R1 Rosbi Y1 Smallworm\n\n13) ts52: Build G1 Ts52\n\n14) rosbi: Build Y2 Rosbi\n\n15) ts52: Trade G1 B1 Ts52\n\n16) rosbi: Move Y1 Rosbi Smallworm\n\n17) ts52: Move B1 Ts52 Bigbird\n\n18) rosbi: Build G1 Rosbi\n\n19) ts52: Trade G2 R2 Bigbird\n\n20) rosbi: Move Y2 Rosbi Smallworm\n\n21) ts52: Build B1 Bigbird\n\n22) rosbi: Discover Y1 Smallworm G2 Blackcat\n\n23) ts52: Build B1 Bigbird\n\n24) rosbi: Sacrifice G3 Rosbi\nBuild Y2 Blackcat\nBuild Y3 Smallworm\nBuild Y3 Blackcat\n\n25) ts52: Discover B1 Bigbird Y3 Telly\n\n26) rosbi: Move Y3 Smallworm Rosbi\n\n27) ts52: Build B2 Bigbird\n\n28) rosbi: Build G1 Rosbi\n\n29) ts52: Build G2 Ts52\n\n30) rosbi: Move G1 Rosbi Smallworm\n\n31) ts52: S G2 Ts52\nB G2 Ts52\nB B2 Telly\n\n32) rosbi: Build G2 Rosbi\n\n33) ts52: Build G3 Bigbird\n\n34) rosbi: Build G3 Smallworm\n\n35) ts52: Discover B2 Bigbird R1 Elmo\n\n36) rosbi: Trade G2 B2 Rosbi\n\n37) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild B3 Elmo\n\n38) rosbi: Build R2 Smallworm\n\n39) ts52: Build R3 Bigbird\n\n40) rosbi: Move R1 Smallworm Rosbi\n\n41) ts52: Build R3 Ts52\n\n42) rosbi: Build R3 Rosbi\n\n43) ts52: Move G3 Bigbird Telly\n\n44) rosbi: Sacrifice Y3 Rosbi\nMove Y1 Blackcat Ts52\nMove Y2 Blackcat Ts52\nMove Y3 Blackcat Ts52\nCatastrophe Ts52 Y\n\n45) ts52: Trade B2 Y2 Elmo\n\n46) rosbi: Trade R1 Y1 Rosbi\n\tts52: sorry for the delay\n\trosbi: no problem, happy new year !\n\n47) ts52: S Y2 Elmo\nM G1 Bigbird Smallworm\nM G2 Ts52 Smallworm\nC Smallworm G\n\n48) rosbi: Build Y1 Rosbi\n\n49) ts52: M R3 Bigbird Smallworm\n\n50) rosbi: Move Y1 Rosbi Smallworm\n\n51) ts52: Build G1 Telly\n\n52) rosbi: Build G1 Rosbi\n\n53) ts52: Attack R2S Smallworm\n\n54) rosbi: Move Y1 Rosbi Smallworm\nCatastrophe Smallworm Y\n\n55) ts52: Move G1 Telly Elmo\n\n56) rosbi: Trade G1 Y1 Rosbi\n\n57) ts52: Build B2 Elmo\n\n58) rosbi: Build Y1 Rosbi\n\n59) ts52: Trade B2 Y2 Elmo\n\n60) rosbi: Discover Y1 Rosbi G1 Pinewood\n\n61) ts52: Build G2 Ts52\n\n62) rosbi: Build G2 Rosbi\n\n63) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild G3 Telly\n\n\nHomeworlds Online (SDG# 26099)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.11.24, Ended: 2014.11.30\nParticipants: Rizzotto (S), DetectiveAzul (N), wil (E)\nWinner: Rizzotto\n\n1) DetectiveAzul: Homeworld G3 B2 R3\n\n2) wil: Homeworld B3 Y2 G3\n\twil: I haven&#39;t played either of you in a binary game...feel free to challenge me!\n\n3) Rizzotto: Homeworld B3 G2 R3\n\n4) DetectiveAzul: Build R1 Detectiveazul\n\tDetectiveAzul: Uhm, we&#39;re new at this game, only a week playing it, so we&#39;re not too goods. Playing here to learn and to have some fun :3\n\n5) wil: Build G1 Wil\n\twil: I blew it...and you followed suit....we now have a short universe...only one star between us all!\n\n6) Rizzotto: Build R1 Rizzotto\n\n7) DetectiveAzul: Trade R1 B1 Detectiveazul\n\tRizzotto: ..fuck, I&#39;m copying movements. Not intentional, I swear. I didn&#39;t have many options. \n\twil: What I am getting at is usually there is a protection level of two star systems between each homeworld...with all of us picking queens and drones only pawn systems will be in the middle, two moves, easy access to each...should be a short battle....you both are welcome to challenge me to a binary game, and each could &#39;monitor&#39; the other game and I will do my best to teach you some ins and outs...(best way to win is by losing  and seeing different strategies play out)\n\n8) wil: Build G1 Wil\n\n9) Rizzotto: Trade R1 Y1 Rizzotto\n\n10) DetectiveAzul: Build R1 Detectiveazul\n\n11) wil: Discover G1 Wil Y1 Y1\n\n12) Rizzotto: Build Y1 Rizzotto\n\n13) DetectiveAzul: Trade R1 Y1 Detectiveazul\n\n14) wil: Sacrifice G3 Wil\nBuild G1 Y1\nBuild G1 Wil\nBuild G2 Y1\n\n15) Rizzotto: Build R1 Rizzotto\n\n16) DetectiveAzul: Build Y2 Detectiveazul\n\tDetectiveAzul: Build y2 detectiveazul\n\n17) wil: Build G2 Wil\n\n18) Rizzotto: Build Y2 Rizzotto\n\twil: in sooooo much trouble....can&#39;t count...\n\n19) DetectiveAzul: Trade R3 G3 Detectiveazul\n\n20) wil: Move G1 Y1 Detectiveazul\n\n21) Rizzotto: Move Y1 Rizzotto Y1\n\n22) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove G3 Detectiveazul Y1\nMove G3 Y1 Wil\nCatastrophe Wil G\n\n23) Rizzotto: Sacrifice Y2 Rizzotto\nMove R3 Rizzotto Y1\nMove R3 Y1 Detectiveazul\n\n24) DetectiveAzul: Build Y2 Detectiveazul\n\n25) Rizzotto: Attack Y2N Detectiveazul\n\n26) DetectiveAzul: Build Y2 Detectiveazul\n\n27) Rizzotto: Move R3 Detectiveazul Y1\n\n28) DetectiveAzul: Trade Y2 R2 Detectiveazul\n\n29) Rizzotto: Move R3 Y1 Detectiveazul\n\n30) DetectiveAzul: Build R1 Detectiveazul\n\n31) Rizzotto: Sacrifice R3 Detectiveazul\nAttack R2N Detectiveazul\nAttack R1N Detectiveazul\nAttack Y1N Detectiveazul\n\n32) DetectiveAzul: Build B1 Detectiveazul\n\n33) Rizzotto: Sacrifice R2 Detectiveazul\nAttack B1N Detectiveazul\nAttack B1N Detectiveazul\n\n\nHomeworlds Online (SDG# 26561)\nVariants: &quot;Unrated&quot;\nStarted: 2014.11.24, Ended: 2014.11.24\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld G1 B2 Y3\n\tDetectiveAzul: Eres una putilla :3\n\n2) DetectiveAzul: Homeworld B1 G2 R3\n\tRizzotto: Cerdillo t&uacute;\n\n3) Rizzotto: Discover Y3 Rizzotto B3 Azul\n\n\nHomeworlds Online (SDG# 26563)\nVariants: &quot;Unrated&quot;\nStarted: 2014.11.24, Ended: 2014.11.30\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B1 G2 Y3\n\n2) DetectiveAzul: Homeworld G3 B2 Y3\n\tRizzotto: Puto juego\n\n3) Rizzotto: Build Y1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\tDetectiveAzul: jajaja, aprendiste a mandar mensajes\n\n5) Rizzotto: Discover Y1 Rizzotto B3 Azulita\n\tRizzotto: Ya hab&iacute;a aprendido la otra vez :( \n\n6) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n7) Rizzotto: Build Y1 Rizzotto\n\n8) DetectiveAzul: Build G1 Detectiveazul\n\n9) Rizzotto: Move Y3 Rizzotto Azulita\n\n10) DetectiveAzul: Trade G1 R1 Detectiveazul\n\n11) Rizzotto: Trade Y3 R3 Azulita\n\n12) DetectiveAzul: Build R1 Detectiveazul\n\n13) Rizzotto: Build Y1 Rizzotto\n\n14) DetectiveAzul: Trade R1 B1 Detectiveazul\n\n15) Rizzotto: Move Y1 Rizzotto Azulita\n\n16) DetectiveAzul: Build Y2 Detectiveazul\n\n17) Rizzotto: Trade Y1 R1 Azulita\n\n18) DetectiveAzul: Discover B1 Detectiveazul G1 Putilla\n\n19) Rizzotto: Move R3 Azulita Putilla\n\n20) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove B1 Putilla Azulita\nMove B1 Azulita Rizzotto\n\tRizzotto: Mi naaaaaaaaaaaveee\r\nMe la controlarooon\r\nAnoooooosheeeeeee\r\nCuando dorm&iacute;aaaaaaa\r\n\n\tRizzotto: (Y ahora Rizzotto puede adivinar perfectamente el adjetivo con el que DetectiveAzul va a calificar su &uacute;ltima intervenci&oacute;n)\n\tDetectiveAzul: Pues si no me hubieras dicho nada, no me habr&iacute;a dado cuenta. As&iacute; que gracias :3, te has contrarrestado t&uacute; sola.\n\n21) Rizzotto: Build Y1 Rizzotto\n\tRizzotto: Meh, lo hice por hacer la gracia y porque pegaba xD\n\tRizzotto: De todas formas...&iquest;qu&eacute; comando es para controlar? Porque en principio no veo nada\n\n22) DetectiveAzul: Trade B1 R1 Rizzotto\n\tDetectiveAzul: Attack es el comando para atacar y controlar\n\n23) Rizzotto: Build Y2 Rizzotto\n\n24) DetectiveAzul: Trade Y3 R3 Detectiveazul\n\n25) Rizzotto: Trade Y2 R2 Rizzotto\n\n26) DetectiveAzul: Build R2 Rizzotto\n\n27) Rizzotto: Attack R2S Rizzotto\n\n28) DetectiveAzul: Sacrifice R3 Detectiveazul\nAttack Y1 Rizzotto\nAttack Y1 Rizzotto\nPass\n\n29) Rizzotto: Sacrifice R3 Putilla\nAttack Y1 Rizzotto\nAttack R1 Rizzotto\nPass\n\n30) DetectiveAzul: Build Y2 Rizzotto\n\n31) Rizzotto: Sacrifice R2 Rizzotto\nAttack Y1S Rizzotto\nAttack Y2 Rizzotto\n\n32) DetectiveAzul: Build R2 Detectiveazul\n\n33) Rizzotto: Trade Y1 G1 Rizzotto\n\n34) DetectiveAzul: Trade R1 B1 Detectiveazul\n\n35) Rizzotto: Move G1 Rizzotto Azulita\n\n36) DetectiveAzul: Build R1 Detectiveazul\n\n37) Rizzotto: Trade Y2 G2 Rizzotto\n\n38) DetectiveAzul: Trade R1 Y1 Detectiveazul\n\n39) Rizzotto: Trade G2 R2 Rizzotto\n\n40) DetectiveAzul: Build Y2 Detectiveazul\n\n41) Rizzotto: Move R2 Rizzotto Azulita\n\n42) DetectiveAzul: Build Y2 Detectiveazul\n\n43) Rizzotto: Discover R2 Azulita G1 Estaclaro\n\n44) DetectiveAzul: Trade Y2 B2 Detectiveazul\n\n45) Rizzotto: Build G2 Azulita\n\n46) DetectiveAzul: Discover B2 Detectiveazul B1 Estrambolico\n\n47) Rizzotto: Build Y2 Azulita\n\n48) DetectiveAzul: Trade B2 G2 Estrambolico\n\tRizzotto: *tiritirititiiii* wiggle wiggle wiggle *tiritirititiiii*\n\n49) Rizzotto: Move G1 Azulita Estaclaro\n\tDetectiveAzul: They see me rollin&#39;! They hatiiiinggg\n\n50) DetectiveAzul: Build G3 Estrambolico\n\tRizzotto: Batmaaaan, se va casar con Vicky Vaaale/ Batmaaan, se va a casar con Vicky Vaaale \n\tDetectiveAzul: Build g3 estrambolico\n\n51) Rizzotto: Build G3 Estaclaro\n\n52) DetectiveAzul: Move G1 Detectiveazul Estaclaro\nCatastrophe Estaclaro G\n\n53) Rizzotto: Trade G2 R2 Azulita\n\tRizzotto: Mierda xD\n\n54) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove G3 Estrambolico Azulita\nMove G3 Azulita Rizzotto\n\n55) Rizzotto: Move R2 Rizzotto Azulita\n\n56) DetectiveAzul: Sacrifice R2 Detectiveazul\nAttack R1 Rizzotto\nAttack Y1 Rizzotto\n\n\nHomeworlds Online (SDG# 26562)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.11.30, Ended: 2014.12.10\nParticipants: Rizzotto (S), DetectiveAzul (N), wil (E)\nWinner: DetectiveAzul\n\n1) DetectiveAzul: Homeworld G1 B2 Y3\n\n2) wil: H Y3 B1 G3\n\n3) Rizzotto: Homeworld G2 B3 R3 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) wil: B G1 Wil\n\n6) Rizzotto: Build R1 Rizzotto\n\n7) DetectiveAzul: Build Y1 Detectiveazul\n\n8) wil: T G1 Y1 Wil\n\n9) Rizzotto: Trade R1 Y1 Rizzotto\n\n10) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n11) wil: Build G1 Wil\n\n12) Rizzotto: Build R1 Rizzotto\n\twil: at least we are all protected two stars away from each other....one does look very angry though...\n\n13) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\tRizzotto: hahaha \n\n14) wil: Discover G1 Wil B2 B2\n\n15) Rizzotto: Build Y1 Rizzotto\n\n16) DetectiveAzul: Build B1 Detectiveazul\n\n17) wil: Build G1 Wil\n\n18) Rizzotto: Trade Y1 B1 Rizzotto\n\n19) DetectiveAzul: Build G2 Detectiveazul\n\n20) wil: Build G2 B2\n\n21) Rizzotto: Build B2 Rizzotto\n\n22) DetectiveAzul: Trade G2 Y2 Detectiveazul\n\n23) wil: Trade G2 B2 B2\n\n24) Rizzotto: Build B3 Rizzotto\n\tRizzotto: build b3 Rizzotto\n\tRizzotto: oops \n\n25) DetectiveAzul: Trade Y3 R3 Detectiveazul\nCatastrophe Rizzotto B\n\n26) wil: Build G2 B2\n\twil: now we see your evil plan...\n\n27) Rizzotto: Move R3 Rizzotto Wil\n\n28) DetectiveAzul: Build R1 Detectiveazul\n\n29) wil: Trade G2 R2 B2\n\twil: he attacks you and you lash out at me?  Is this a tag team?\n\n30) Rizzotto: Attack G3E Wil\n\tRizzotto: Nop, it was just easy. Sorry. \n\n31) DetectiveAzul: Build Y1 Detectiveazul\n\n32) wil: Build G2 Wil\n\n33) Rizzotto: Trade G3 R3 Wil\n\twil: I don&#39;t know why I didn&#39;t just move into your system...murder suicide is my only way to go now...\n\n34) DetectiveAzul: Sacrifice Y2 Detectiveazul\nDiscover R3 Detectiveazul R3 Armada\nMove R3 Armada Rizzotto\n\tRizzotto: You shouldn&#39;t have told me. \n\tRizzotto: shouldn&#39;t had*\n\tRizzotto: No, wait....*have. My english is broken. Help. \n\n35) wil: Sacrifice B2 B2\nTrade G1 R1 Wil\nTrade Y1 R1 Wil\nCatastrophe Wil R\n\n36) Rizzotto: Build R1 Rizzotto\n\twil: We were a peace loving people, growing, trading, and you came into my world with your big warships, and then converted our largest ship supplying food and aid to foreign lands into one of your ugly warships...they had to be eliminated, while our days in this galaxy are numbered, they will not be spent in war, but in personal growth and meditation...we could not allow such evil to win.\n\twil: broken english.... where are you guys from?\n\tRizzotto: Spain\n\n37) DetectiveAzul: Attack Y1S Rizzotto\n\n38) wil: Trade G1 Y1 B2\n\n39) Rizzotto: Build R1 Rizzotto\n\twil: Welcome to homeworlds!  do you have a physical set of pyramids to play with?  \n\tDetectiveAzul: Yep, but not official pyramids. I printed some cards with ships on the face, and the stars on the back, so i can bring them all anywhere.\n\twil: Interesting... while you can&#39;t nest or tree some other games are lacking, but that should work well for this...  \n\n40) DetectiveAzul: Move R3 Rizzotto Wil\n\n\tRizzotto: The game won&#39;t let me cause catastrophe in my own system, sooo...That&#39;s it haha But we didn&#39;t double team, wil, I just made one horrible mistake after another.\n\tDetectiveAzul: Oh D: Game is concluded. \n\twil: lol...it is fine...first game ever for me for more than two players that really reached a conclusion\n\twil: seriously, either of a both challenge me...\n\tRizzotto: Will do later today. \n\nHomeworlds Online (SDG# 26585)\nVariants: &quot;Unrated&quot;\nStarted: 2014.11.30, Ended: 2014.11.30\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B3 G2 R3\n\n2) DetectiveAzul: Homeworld G1 B1 R3 *\n\n3) Rizzotto: Build R1 Rizzotto\n\n4) DetectiveAzul: Build R1 Detectiveazul\n\tDetectiveAzul: If any ocasional watcher has following this game, is an experimental game to test universe 0-between steps\n\n5) Rizzotto: Trade R1 Y1 Rizzotto\n\n6) DetectiveAzul: Trade R1 Y1 Detectiveazul\n\n7) Rizzotto: Build R1 Rizzotto\n\n8) DetectiveAzul: Build R1 Detectiveazul\n\n9) Rizzotto: Trade R1 G1 Rizzotto\n\n10) DetectiveAzul: Trade R1 G1 Detectiveazul\n\n11) Rizzotto: Build R1 Rizzotto\n\n12) DetectiveAzul: Build R1 Detectiveazul\n\n13) Rizzotto: Build Y1 Rizzotto\n\n14) DetectiveAzul: Build Y2 Detectiveazul\n\n15) Rizzotto: Build G2 Rizzotto\n\n16) DetectiveAzul: Move G1 Detectiveazul Rizzotto\nCatastrophe Rizzotto Green\n\n17) Rizzotto: Trade Y1 G1 Rizzotto\n\n18) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n19) Rizzotto: Build Y1 Rizzotto\n\n20) DetectiveAzul: Build Y1 Detectiveazul\n\n21) Rizzotto: Discover R1 Rizzotto B2 Explotido\n\n22) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n23) Rizzotto: Move G1 Rizzotto Explotido\n\n24) DetectiveAzul: Build Y1 Detectiveazul\n\n25) Rizzotto: Build G2 Explotido\n\n26) DetectiveAzul: Move R3 Detectiveazul Explotido\n\n27) Rizzotto: Move R3 Rizzotto Detectiveazul\n\n28) DetectiveAzul: Move Y1 Detectiveazul Rizzotto\n\n29) Rizzotto: Attack Y2 Detectiveazul\n\n30) DetectiveAzul: Sacrifice R3 Explotido\nAttack Y1 Rizzotto\nAttack Y1 Rizzotto\nPass\n\n\nHomeworlds Online (SDG# 26587)\nVariants: &quot;Unrated&quot;\nStarted: 2014.11.30, Ended: 2014.12.4\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B1 G2 R3\n\n2) DetectiveAzul: Homeworld G1 B3 Y3\n\n3) Rizzotto: Build R1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) Rizzotto: Build R1 Rizzotto\n\n6) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n7) Rizzotto: Trade R1 Y1 Rizzotto\n\n8) DetectiveAzul: Build R1 Detectiveazul\n\n9) Rizzotto: Discover R1 Rizzotto G3 Hulk\n\n10) DetectiveAzul: Build R2 Detectiveazul\n\n11) Rizzotto: Build R2 Hulk\n\n12) DetectiveAzul: Trade R2 B2 Detectiveazul\n\n13) Rizzotto: Build R2 Rizzotto\n\n14) DetectiveAzul: Build Y1 Detectiveazul\n\n15) Rizzotto: Trade R2 Y2 Rizzotto\n\tRizzotto: Cada vez me gusta m&aacute;s esto aunque casi la jieda en este turno xD\n\n16) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\tDetectiveAzul: Me congratula, me congratula. Pero &iquest;t&uacute; no est&aacute;s trabajando?\n\tRizzotto: Algunas veces paro para desayunar :3\n\n17) Rizzotto: Build R2 Rizzotto\n\n18) DetectiveAzul: Build Y1 Detectiveazul\n\n19) Rizzotto: Move Y1 Rizzotto Hulk\n\n20) DetectiveAzul: Discover Y3 Detectiveazul G2 Cristina\n\tDetectiveAzul: En la partida que jugaba contra el top 4 del servidor al final ha muerto por no jugar. Lo puso en hardtime y llevaba 5 d&iacute;as sin postear :(. Yo que quer&iacute;a ganarla con justicia y honor. Se ha batido en retirada.\n\n21) Rizzotto: Build Y1 Rizzotto\n\tRizzotto: El que ha perdido el honor es &eacute;l, por huir &ograve;.&oacute; Cobarde\n\n22) DetectiveAzul: Move R1 Detectiveazul Cristina\n\n23) Rizzotto: Sacrifice Y2 Rizzotto\nMove R2 Hulk Cristina\nMove R2 Cristina Detectiveazul\n\n24) DetectiveAzul: Attack R2 Detectiveazul\n\n25) Rizzotto: Build Y2 Hulk\n\n26) DetectiveAzul: Build Y2 Cristina\n\n27) Rizzotto: Trade Y1 B1 Rizzotto\n\tRizzotto: Vale...cualquier nave de cualquier color pod&iacute;a atacar a cualquier nave de cualquier color? xD\n\n28) DetectiveAzul: Move R2 Detectiveazul Cristina\n\tDetectiveAzul: Cualquier nave puede capturar una de tama&ntilde;o igual o inferior si hay tecnolog&iacute;a roja en el sistema (sea de otra nave o de un planeta)\n\n29) Rizzotto: Move Y1 Hulk Rizzotto\n\n30) DetectiveAzul: Move Y3 Cristina Hulk\n\n31) Rizzotto: Move Y2 Hulk Rizzotto\n\n32) DetectiveAzul: Sacrifice R1 Cristina\nAttack R1 Hulk\n\tRizzotto: Qu&eacute; perdida estoy ahora mismo...xD Mi fallo me ha descolocao totalmente. \n\n33) Rizzotto: Discover Y2 Rizzotto B3 Kirito\n\tDetectiveAzul: S&iacute;, si no hubieras tenido ese fallo, estar&iacute;as muy bien con todo lo que tienes. Ahora tendr&iacute;as que haber reconfigurado tu estrategia.\n\n34) DetectiveAzul: Build R1 Hulk\n\tRizzotto: A&uacute;n estoy superando la p&eacute;rdida, ssssshhh\n\n35) Rizzotto: Move R2 Rizzotto Kirito\n\n36) DetectiveAzul: Build R2 Detectiveazul\n\n37) Rizzotto: Trade Y2 G2 Kirito\n\n38) DetectiveAzul: Build R3 Cristina\n\n39) Rizzotto: Build R3 Kirito\n\n40) DetectiveAzul: Sacrifice Y3 Hulk\nMove R1 Detectiveazul Cristina\nMove R1 Cristina Kirito\nMove R2 Cristina Kirito\nCatastrophe Kirito R\n\n41) Rizzotto: Trade G2 Y2 Kirito\n\n42) DetectiveAzul: Sacrifice B2 Detectiveazul\nTrade R1 B1 Hulk\nPass\n\n43) Rizzotto: Build R1 Rizzotto\n\n44) DetectiveAzul: Build B2 Hulk\n\n45) Rizzotto: Trade B1 G1 Rizzotto\n\n46) DetectiveAzul: Build B1 Hulk\n\n47) Rizzotto: Move G1 Rizzotto Kirito\n\n48) DetectiveAzul: Sacrifice Y2 Cristina\nMove B1 Hulk Rizzotto\nMove B1 Hulk Rizzotto\n\n49) Rizzotto: Attack B1S Rizzotto\n\n50) DetectiveAzul: Sacrifice Y1 Detectiveazul\nMove B2 Hulk Rizzotto\nCatastrophe Rizzotto B\n\n51) Rizzotto: Move R3 Rizzotto Detectiveazul\n\n52) DetectiveAzul: Build R1 Detectiveazul\n\n53) Rizzotto: Attack G1 Detectiveazul\n\n54) DetectiveAzul: Attack G1 Detectiveazul\n\n55) Rizzotto: Sacrifice Y1 Rizzotto\nMove R3 Detectiveazul Rizzotto\n\n56) DetectiveAzul: Trade R2 Y2 Detectiveazul\n\n57) Rizzotto: Build G2 Kirito\n\n58) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove R1 Detectiveazul Rizzotto\nMove R1 Hulk Rizzotto\nCatastrophe Rizzotto R\n\n\nHomeworlds Online (SDG# 26568)\nVariants: &quot;Hard time&quot;\nStarted: 2014.11.30, Ended: 2014.12.10\nParticipants: dlwillson (S), dethdukk (N)\nWinner: dlwillson\n\n1) dethdukk: Homeworld B2 R1 G3\n\n2) dlwillson: Homeworld B1 Y3 G3\n\tdethdukk: forgot how slow this website is sometimes.\n\n3) dethdukk: Build G1 Dethdukk\n\tdlwillson: It can be.\n\n4) dlwillson: Build G1 Dlwillson\n\n5) dethdukk: Trade G1 R1 Dethdukk\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) dethdukk: Build R2 Dethdukk\n\n8) dlwillson: B R2 Dlwillson\n\n9) dethdukk: Trade R1 Y1 Dethdukk\n\n10) dlwillson: T R1 B1 Dlwillson\n\n11) dethdukk: Build R1 Dethdukk\n\tdethdukk: b r1 dethdukk\n\n12) dlwillson: B B1 Dlwillson\n\tdethdukk: whoops, wrong box.\n\n\tdlwillson: :-)\n\nHomeworlds Online (SDG# 26601)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.1, Ended: 2014.12.8\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\n2) wil: Homeworld G3 B1 B3 *\n\twil: round 43...  ttt swats the fly away agin...\r\n\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build B1 Wil\n\tTeeTeeTee: Oooh: something different.\n\n5) TeeTeeTee: Trade G3 B3 Teeteetee\n\n6) wil: Trade B3 Y3 Wil\n\n7) TeeTeeTee: Build B2 Teeteetee\n\n8) wil: Build B2 Wil\n\n9) TeeTeeTee: Trade B3 R3 Teeteetee\n\n10) wil: Trade B1 R1 Wil\n\n11) TeeTeeTee: Build G1 Teeteetee\n\tTeeTeeTee: That&#39;s a fierce opening you chose, there, wil.\n\n12) wil: Discover B2 Wil G2 G2\n\twil: I had to do something...  it was quite scary...\n\n13) TeeTeeTee: Build G1 Teeteetee\n\n14) wil: Build B1 G2\n\n15) TeeTeeTee: Discover G1 Teeteetee B3 Earlgrey\n\n16) wil: Trade B2 G2 G2\n\n17) TeeTeeTee: Discover G1 Teeteetee Y3 Ceylon\n\n18) wil: Build Y1 Wil\n\twil: nice..step behind again...\n\n19) TeeTeeTee: Build G2 Teeteetee\n\n20) wil: Sacrifice Y1 Wil\nDiscover G2 G2 Y3 Y3\n\n21) TeeTeeTee: Move G1 Teeteetee Y3\n\n22) wil: Sacrifice R1 Wil\nAttack G1 Y3\n\n23) TeeTeeTee: Build G3 Earlgrey\n\n24) wil: Build G3 Y3\n\n25) TeeTeeTee: Move G2 Teeteetee Y3\nCatastrophe Y3 Green\n\n26) wil: Build B2 G2\n\n27) TeeTeeTee: Build G1 Ceylon\n\n28) wil: Trade B2 R2 G2\n\n29) TeeTeeTee: Sacrifice G3 Earlgrey\nBuild G2 Ceylon\nBuild G2 Earlgrey\nBuild G3 Earlgrey\n\n30) wil: Build B2 G2\n\twil: over again....you need to find better competition..\n\n31) TeeTeeTee: Move G1 Ceylon G2\n\n32) wil: Attack G1 G2\n\twil: dang your good..\n\n33) TeeTeeTee: Move G1 Ceylon G2\n\n34) wil: Trade G1 Y1 G2\n\twil: dang I wish I had a reason to continue this charade\n\n35) TeeTeeTee: Sacrifice G3 Earlgrey\nBuild G1 G2\nBuild G3 G2\nBuild G3 Earlgrey\nCatastrophe G2 Green\n\n\tTeeTeeTee: You might as well have attacked that g1 on your last turn - I&#39;d have lost more ships.\n\tTeeTeeTee: Thanks for the game. I liked your opening, but I feel like you would have been in a stronger position if you&#39;d pushed your blue advantage more at the start, i.e. not traded a b1 for an r1, or a b2 for a g2, but kept building blue ships for as long as you could get away with it.\n\twil: I would&#39;ve, but you immediately traded for a B3...ended that gambit...\n\nHomeworlds Online (SDG# 26540)\nVariants: &quot;Unrated&quot;\nStarted: 2014.12.2, Ended: 2014.12.28\nParticipants: DetectiveAzul (S), dsabremaster (N)\nWinner: DetectiveAzul\n\n1) dsabremaster: Homeworld G2 B1 Y3\n\n2) DetectiveAzul: Homeworld B3 G1 R3\n\n3) dsabremaster: Build Y1 Dsabremaster\n\n4) DetectiveAzul: Build R1 Detectiveazul\n\n5) dsabremaster: Discover Y1 Dsabremaster G3 Clover\n\n6) DetectiveAzul: Build R1 Detectiveazul\n\n7) dsabremaster: Build Y1 Dsabremaster\n\n8) DetectiveAzul: Trade R1 G1 Detectiveazul\n\n9) dsabremaster: Build Y1 Clover\n\n10) DetectiveAzul: Build R1 Detectiveazul\n\n11) dsabremaster: Build Y2 Dsabremaster\n\n12) DetectiveAzul: Trade R3 Y3 Detectiveazul\n\n13) dsabremaster: Trade Y1 B1 Dsabremaster\n\n14) DetectiveAzul: Build R1 Detectiveazul\n\n15) dsabremaster: Move B1 Dsabremaster Clover\n\n16) DetectiveAzul: Discover R1 Detectiveazul G2 Hulk\n\n17) dsabremaster: Build B1 Clover\n\n18) DetectiveAzul: Build R2 Hulk\n\n19) dsabremaster: Build B2 Clover\n\n20) DetectiveAzul: Build R2 Hulk\n\n21) dsabremaster: Trade B2 R2 Clover\n\n22) DetectiveAzul: Sacrifice R1 Hulk\nPass\n\n23) dsabremaster: Build B2 Clover\n\n24) DetectiveAzul: Build G1 Detectiveazul\n\n\nHomeworlds Online (SDG# 26567)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.2, Ended: 2014.12.23\nParticipants: dlwillson (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\n3) mneme: Build G1 Mneme\n\tdlwillson: Hey mneme, It&#39;s good to play you again. I kept meaning to tell you on FB that I had setup the challenge, but kept forgetting to do it. Anyway, have fun! \n\tmneme: Oh, I noticed, I just needed to get around to replying.  My habits have mostly left out sdg, which is why I dropped so many games.\n\n4) dlwillson: Build G1 Dlwillson\n\n5) mneme: Trade G1 B1 Mneme\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) mneme: Build B2 Mneme\n\n8) dlwillson: B B2 Dlwillson\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) dlwillson: T B1 R1 Dlwillson\n\n11) mneme: Build B1 Mneme\n\n12) dlwillson: B R1 Dlwillson\n\n13) mneme: Discover B1 Mneme G3 Livery\n\n14) dlwillson: D B2 Dlwillson G2 Field\n\n15) mneme: Discover B1 Mneme Y3 Portal\n\n16) dlwillson: M R1 Dlwillson Field\n\n17) mneme: Build B2 Livery\n\n18) dlwillson: B B3 Field\n\n19) mneme: Build B3 Livery\n\n20) dlwillson: T B3 Y3 Field\n\n21) mneme: Trade B2 R2 Livery\n\n22) dlwillson: B R2 Field\n\n23) mneme: Build G1 Mneme\n\tmneme: b g1 mneme\n\n24) dlwillson: Discover R2 Field B3 Sky\n\n25) mneme: Move G1 Mneme Portal\n\n26) dlwillson: B Y1 Field\n\n27) mneme: Build Y1 Mneme\n\n28) dlwillson: Discover Y1 Field R3 Mars\n\n29) mneme: Discover Y2 Mneme R3 Ruby\n\n30) dlwillson: B G1 Dlwillson\n\n31) mneme: Build G1 Mneme\n\n32) dlwillson: D G1 Dlwillson Y2 Golden\n\n33) mneme: Trade B1 Y1 Livery\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Mars\nBuild R2 Sky\nBuild R3 Dlwillson\n\tdlwillson: So much going on! I have to get out the plastic now. Sorry for the delay.\n\tmneme: heh.  I try not to take it quite that seriously. :)\n\tdlwillson: My ladder-match took a sudden turn, so I have to use my plastic for that match. So... I guess I&#39;ll follow your lead and take this one less seriously. I&#39;ll play the best I can from the screen, and hope you&#39;ll excuse me if I disappoint you. :-)\n\n35) mneme: Build G2 Portal\n\tmneme: I don&#39;t mind if you use a model, btw.  I don&#39;t take things too seriously, but I can also model pretty well in my head... :)\n\n36) dlwillson: Sacrifice Y2 Mars\nMove R2 Sky Mneme\nMove R2 Sky Mneme\n\n37) mneme: Sacrifice R2 Livery\nAttack R2 Mneme\nAttack R2 Mneme\n\n38) dlwillson: Sacrifice Y3 Field\nDiscover G1 Golden Y3 Sunny\nMove R1 Field Mars\nMove R1 Mars Mneme\nCatastrophe Mneme R\n\n39) mneme: Trade G1 R1 Mneme\n\n40) dlwillson: Trade R3 G3 Dlwillson\n\tdlwillson: Sorry, forgot the catastrophe\n\tmneme: Whoops.  Yeah, that would have been a bit of a blunder.  No big.  \n\n41) mneme: Build G1 Mneme\n\n42) dlwillson: B G2 Sunny\n\tmneme: :)  Figured it was worth having r at this stage in the game. :)\n\n43) mneme: Move G1 Mneme Sunny\n\tdlwillson: Very discerning of you. :-)\n\n44) dlwillson: Sacrifice G2 Sunny\nBuild B1 Field\nBuild Y2 Mars\n\n45) mneme: Sacrifice G2 Portal\nBuild B2 Livery\nBuild B3 Portal\n\n46) dlwillson: Sacrifice Y2 Mars\nDiscover B1 Field B3 Sky\nMove B2 Field Sunny\n\n47) mneme: Build G2 Portal\n\n48) dlwillson: Sacrifice Y1 Mars\nMove B1 Sky Mneme\n\n49) mneme: Attack B1 Mneme\n\n50) dlwillson: B B3 Sunny\n\n51) mneme: Move B1 Mneme Ruby\n\n52) dlwillson: Discover B2 Sunny Y2 Golden\n\n53) mneme: Trade G2 R2 Portal\n\n54) dlwillson: B G2 Dlwillson\n\n55) mneme: Move B2 Livery Golden\n\n56) dlwillson: T B3 R3 Sunny\n\n57) mneme: Sacrifice G1 Sunny\nBuild B3 Golden\n\n58) dlwillson: B G1 Sunny\n\n59) mneme: Build G2 Mneme\n\n60) dlwillson: M G1 Sunny Mneme\n\n61) mneme: Move G2 Mneme Dlwillson\n\n62) dlwillson: S G2 Dlwillson\nB G2 Mneme\nB G2 Mneme\nC Mneme G\n\n63) mneme: Sacrifice R2 Portal\nAttack R1 Dlwillson\nAttack B2 Golden\n\n64) dlwillson: M G1 Sunny Mneme\n\n65) mneme: Attack G1 Mneme\n\n66) dlwillson: M R3 Sunny Mneme\n\n67) mneme: Sacrifice G2 Dlwillson\nBuild R1 Mneme\nBuild R2 Mneme\nCatastrophe Mneme R\n\n68) dlwillson: Trade G3 R3 Dlwillson\n\n69) mneme: Sacrifice G1 Portal\nBuild R1 Dlwillson\n\n70) dlwillson: Trade R3 G3 Dlwillson\n\n71) mneme: Move B3 Golden Dlwillson\n\tmneme: That was fascinating until that last blunder. :(\n\n72) dlwillson: Build G1 Dlwillson\n\tdlwillson: I think you only lost one turn, if that.\n\n73) mneme: Sacrifice B2 Golden\nTrade B3 G3 Dlwillson\nTrade R1 G1 Dlwillson\nCatastrophe Dlwillson G\n\tmneme: I meant the r3 entry into my home.  I&#39;m not sure you had a choice at that point--but it did make the endgame relatively trivial.  I think I had a solid endgame even without that, though (although running an endgame with no large ships in my home system is interesting.\n\n\tdlwillson: Not that it matters much, but I don&#39;t like passing, and we&#39;re within a turn of the end anyway.\n\tmneme: I think playing out your home system and hoping I blunder might have been better.  If I made a mistake on the blue kill you might get tempo for an attack on my home system.\n\tdlwillson: Again?\n\tdlwillson: And I disagree with you about the potential of playing to regain control of my home-system. I saw that option, and I don&#39;t think your win would have been any more difficult. I would have had to sac my R3 to get i, then all you have to do is swap B3 to Y3, ignore my next turn, because it can&#39;t get me a multi-pip R, and come in with two B3. Done either way. The R3 seemed to me to have more chances for you to make a mistake, which I needed, due to your massive material advantage.\n\tmneme: Fair enough; I&#39;m not going to spend too much time on post-analysis right now anyway.  The issue with coming in with two b3 is if you can get two b in your home system, in which case my attack can be easily repelled.\r\n\r\nTotally again.\n\nHomeworlds Online (SDG# 26634)\nVariants: &quot;No undo&quot;\nStarted: 2014.12.6, Ended: 2015.1.1\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld R1 B2 G3\n\n2) Grissom: Homeworld R3 B2 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Trade G1 Y1 Hellajoey\n\n6) Grissom: Build G1 Grissom\n\thellajoey: Hey, Larry. I have an Android question: Do you have experience with pinch-to-zoom or panning? I&#39;ve started working on a Homeworlds player in my spare time. I&#39;ve implemented both pinch-to-zoom and panning but there are some problems. The biggest issue is I need to be able to pan or zoom out and see parts of the board that started outside of the screen window but anything that starts outside of the screen window gets chopped off once it&#39;s moved into the screen window. Does that make sense? I&#39;d really like to be able to accomplish this without having to know how big the game view is going to be since it will be built dynamically.\r\n\r\nAny ideas? Also, how&#39;s eBay and how&#39;s life? \n\tGrissom: Hi Joey, eBay is good I&#39;m really enjoying it. I do have some experience with pinch to zoom and panning but it is a bit difficult to make sense of it without seeing the code. Do you have a git project? I would be interested in contributing. Regardless I would recommend looking into an existing library like a pinch to zoom image view and reviewing how they handle drawing the bitmap.\n\n7) hellajoey: Build Y1 Hellajoey\n\n8) Grissom: Trade G1 Y1 Grissom\n\n9) hellajoey: Build Y2 Hellajoey\n\n10) Grissom: Build Y2 Grissom\n\n11) hellajoey: Discover Y1 Hellajoey G3 Grun\n\n12) Grissom: Discover Y1 Grissom G1 Greengob\n\n13) hellajoey: Trade Y1 B1 Hellajoey\n\n14) Grissom: Discover G1 Grissom Y1 Flash\n\n15) hellajoey: Move B1 Hellajoey Grun\n\n16) Grissom: Discover Y1 Greengob B3 Blubot\n\n17) hellajoey: Build G1 Hellajoey\n\thellajoey: Thanks, Larry. I don&#39;t think the project is in the place where I want to open it up yet. It&#39;s still a little haywire until I figure out how I want the visuals to work. I&#39;ll keep you posted though. Once I have a general player working there will still be a lot of work to make it awesome. Glad things are going well at eBay. Miss you guys.\n\n18) Grissom: Discover G1 Flash B3 Blubot2point0\n\tGrissom: This may be helpful: https://github.com/sephiroth74/ImageViewZoom\n\n19) hellajoey: Trade G3 R3 Hellajoey\n\n20) Grissom: Build G1 Grissom\n\n21) hellajoey: Build G2 Hellajoey\n\n22) Grissom: Build G2 Blubot2point0\n\n23) hellajoey: Move G2 Hellajoey Grun\n\n24) Grissom: Trade G3 R3 Grissom\n\n25) hellajoey: Move R3 Hellajoey Blubot2point0\n\n26) Grissom: Sacrifice G2 Blubot2point0\nBuild G2 Grissom\nBuild Y1 Blubot\n\n27) hellajoey: Attack G1 Blubot2point0\n\n28) Grissom: Sacrifice G2 Grissom\nBuild Y2 Blubot\nBuild Y3 Grissom\n\n29) hellajoey: Sacrifice G2 Grun\nBuild Y3 Grun\nBuild Y3 Hellajoey\n\n30) Grissom: Sacrifice Y2 Blubot\nMove Y1 Blubot Hellajoey\nMove Y1 Blubot Hellajoey\nCatastrophe Hellajoey Yellow\n\n31) hellajoey: Move Y3 Grun Hellajoey\n\n32) Grissom: Build G2 Grissom\n\n33) hellajoey: Build G2 Blubot2point0\n\n34) Grissom: Discover G1 Grissom Y1 Yo\n\n35) hellajoey: Build Y1 Hellajoey\n\n36) Grissom: Discover Y2 Grissom B1 Hop\n\n37) hellajoey: Move Y1 Hellajoey Blubot2point0\n\n38) Grissom: Build Y2 Grissom\n\n39) hellajoey: Sacrifice G2 Blubot2point0\nBuild Y2 Blubot2point0\nBuild Y3 Hellajoey\n\n40) Grissom: Build G2 Yo\n\n41) hellajoey: Build G2 Blubot2point0\n\n42) Grissom: Build G3 Grissom\n\n43) hellajoey: Build G3 Hellajoey\n\n44) Grissom: Trade Y2 B2 Grissom\n\n45) hellajoey: Build Y2 Grun\n\n46) Grissom: Move Y2 Hop Grun\n\n47) hellajoey: Build R1 Blubot2point0\n\n48) Grissom: Move R3 Grissom Yo\n\n49) hellajoey: Move Y2 Grun Yo\n\n50) Grissom: Sacrifice R3 Yo\nAttack Y2 Yo\nAttack B1 Grun\nAttack Y1 Grun\n\n51) hellajoey: Discover Y3 Hellajoey B3 Blut\n\n52) Grissom: Sacrifice G3 Grissom\nBuild G3 Grissom\nBuild B1 Grun\nBuild B1 Grun\n\n53) hellajoey: Discover G1 Hellajoey B3 Druid\n\n54) Grissom: Move G2 Yo Druid\n\n55) hellajoey: Move R3 Blubot2point0 Yo\n\n56) Grissom: Sacrifice B2 Grissom\nTrade G2 R2 Druid\nTrade Y1 R1 Grun\n\n57) hellajoey: Attack G1 Yo\n\n58) Grissom: Build R2 Grun\n\n59) hellajoey: Sacrifice Y3 Blut\nMove G1 Blubot2point0 Yo\nMove G1 Yo Grissom\nMove G1 Yo Grissom\nCatastrophe Grissom Green\n\n60) Grissom: Sacrifice Y2 Yo\nMove R2 Druid Hellajoey\nMove R1 Grun Hellajoey\n\n61) hellajoey: Move Y3 Hellajoey Grun\n\n62) Grissom: Sacrifice Y2 Grun\nDiscover B1 Grun G1 Skip\nMove R2 Grun Hellajoey\nCatastrophe Hellajoey Red\n\n63) hellajoey: Move Y2 Blubot2point0 Skip\n\n64) Grissom: Build B2 Grun\n\n65) hellajoey: Sacrifice R3 Yo\nAttack B1 Skip\nAttack B2 Grun\nAttack B1 Grun\n\n66) Grissom: Build B3 Grun\nCatastrophe Grun Blue\n\n67) hellajoey: Build Y1 Skip\n\n68) Grissom: Trade Y3 G3 Grissom\n\n69) hellajoey: Move G2 Blubot2point0 Skip\n\n70) Grissom: Build G1 Grissom\n\n71) hellajoey: Sacrifice Y3 Grun\nMove G1 Druid Skip\nMove G1 Skip Grissom\nMove G2 Skip Grissom\nCatastrophe Grissom Green\n\thellajoey: That was probably the coolest game I&#39;ve been in.\n\tGrissom: Just saw this comment, ya it was a fun one.\n\n\nHomeworlds Online (SDG# 26638)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.6, Ended: 2015.1.2\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: Homeworld B1 Y2 G3\n\twil: Been a while...if I recall your life/work got real busy....hope you are back to an even keel.\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) wil: Build G1 Wil\n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: I am, mostly. Still very busy, but I&#39;m making time for SDG::Homeworlds again.\n\n5) wil: Trade G1 B1 Wil\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\tdlwillson: Blue. Yuck. :-)\n\n8) dlwillson: B B2 Dlwillson\n\twil: Building trading ships looked like a fine venture to investigate.\n\n9) wil: Discover B2 Wil G3 G3\n\n10) dlwillson: Trade B1 Y1 Dlwillson\n\n11) wil: Build G1 Wil\n\n12) dlwillson: Build Y1 Dlwillson\n\n13) wil: Trade G1 R1 Wil\n\n14) dlwillson: B Y1 Dlwillson\n\n15) wil: Build B1 G3\n\n16) dlwillson: Discover Y1 Dlwillson G1 Field\n\n17) wil: Trade B2 Y2 G3\n\n18) dlwillson: Discover Y1 Dlwillson G1 Sea\n\n19) wil: Discover B1 Wil Y3 Y3\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Field\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n21) wil: Build B2 G3\n\twil: Yeah, I got behind on that one...  and good luck with ttt since you guys left the playing field he&#39;s been beating the pants off me...\n\tdlwillson: He&#39;s good, and he got me. I guess I&#39;ll play someone else next, you or TwoShort, or maybe I&#39;ll wait a few days and see if I get challenged.\n\twil: I wanna see he an two short go at it..  \n\n22) dlwillson: Trade Y1 R1 Dlwillson\n\n23) wil: Discover B2 G3 Y1 Y1\n\n24) dlwillson: M B2 Dlwillson Field\n\n25) wil: Trade B1 G1 Y3\n\n26) dlwillson: D Y3 Sea B3 Sky\n\n27) wil: Sacrifice G1 Y3\nBuild Y3 G3\n\n28) dlwillson: S Y2 Field\nM Y1 Field G3\nM Y1 Sea G3\nC G3 Y\n\n29) wil: Build R1 Wil\n\n30) dlwillson: T Y3 G3 Dlwillson\n\n31) wil: Build R2 Wil\n\n32) dlwillson: B R2 Dlwillson\n\n33) wil: Move R1 Wil G3\n\n34) dlwillson: Trade R2 Y2 Dlwillson\n\n35) wil: Trade R2 Y2 Wil\n\n36) dlwillson: Move R1 Dlwillson Field\n\n37) wil: Build R2 G3\n\n38) dlwillson: Build B1 Field\n\n39) wil: Trade R1 Y1 G3\n\n40) dlwillson: T B1 Y1 Field\n\n41) wil: Build Y3 G3\n\n42) dlwillson: B Y3 Field\n\n43) wil: Discover Y2 Wil B3 B3\n\tdlwillson: Happy Christmas, Wil!\n\twil: back atcha brother!\n\n44) dlwillson: T Y3 R3 Field\n\n45) wil: Move Y1 G3 Field\n\n46) dlwillson: B Y3 Dlwillson\n\n47) wil: Build B1 G3\n\n48) dlwillson: B B2 Field\n\n49) wil: Build G1 Wil\n\n50) dlwillson: Attack Y1 Field\n\n51) wil: Discover B1 G3 R1 R1\n\n52) dlwillson: M B2 Field B3\n\n53) wil: Move Y2 B3 R1\n\n54) dlwillson: T B2 G2 B3\n\n55) wil: Build R2 G3\n\n56) dlwillson: M R1 Field B3\n\n57) wil: Build R3 Wil\n\n58) dlwillson: B R3 B3\n\n59) wil:\nB B2 G3\n\n\n60) dlwillson: Trade Y2 G2 Dlwillson\n\n61) wil: Build Y2 G3\n\n62) dlwillson: Build G1 B3\n\n63) wil: Move B1 G3 R1\n\n64) dlwillson: Sacrifice Y3 Dlwillson\nMove G2 B3 Wil\nMove G1 B3 Wil\nMove R3 B3 Wil\nCatastrophe Wil G\n\n65) wil: Sacrifice Y2 R1\nMove R2 G3 Wil\nMove Y3 G3 Wil\nCatastrophe Wil R\n\tdlwillson: I think that&#39;s got it.\n\twil: Why was I blind?\n\n66) dlwillson: Move Y1 Field B3\n\twil: I was ready to pull the plug on my first step...and thought i should pull out that green, but just didn&#39;t see it!\n\n67) wil: Build Y2 G3\n\tdlwillson: Wow! You slipped out of the noose! I thought I had you!\n\n68) dlwillson: Sacrifice Y3 Sky\nMove Y1 B3 Wil\nMove Y1 Field B3\nMove Y1 B3 Wil\nCatastrophe Wil Y\n\tdlwillson: I guess I did after all. I was expecting you to trade back to green that turn.\n\twil: I wasn&#39;t counting again....sheesh...nice game!\n\n\nHomeworlds Online (SDG# 26648)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.9, Ended: 2014.12.14\nParticipants: TeeTeeTee (S), dlwillson (N)\nWinner: TeeTeeTee\n\n1) dlwillson: H B3 Y1 G3\n\tTeeTeeTee: Hello! That was a quick challenge.\n\tdlwillson: I was waiting for you to finish your game with Wil, and worrying that someone would challenge me before you did. :-)\n\n2) TeeTeeTee: Homeworld B1 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\tTeeTeeTee: Indeed - I have been challenged a lot, here.\n\n4) TeeTeeTee: Build G1 Teeteetee\n\tdlwillson: Did you have to beat TwoShort? He&#39;s a great player. Have you played Zoltar? I was away for about a year and a half.\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n7) dlwillson: B B1 Dlwillson\n\tTeeTeeTee: I&#39;ve never played Zoltar, which is a shame - I&#39;ve heard good things about him. I&#39;ve played TwoShort only once, but I had a very strong start in that game and didn&#39;t really give him a chance to get started. I&#39;ve also heard that SilentTitan is a strong player, but I haven&#39;t played a full game with them yet. I reckon that the strongest people that I&#39;ve played full games with so far are Broccoli_Commander and Wil.\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) dlwillson: D B1 Dlwillson G2 Field\n\n10) TeeTeeTee: Discover Y1 Teeteetee B3 Dalwhinnie\n\n11) dlwillson: B B2 Field\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Dalwhinnie\nBuild Y2 Teeteetee\nBuild Y3 Dalwhinnie\n\n13) dlwillson: Build B2 Dlwillson\n\tdlwillson: NICE!\n\n14) TeeTeeTee: Trade Y3 G3 Dalwhinnie\n\n15) dlwillson: T G3 Y3 Dlwillson\n\n16) TeeTeeTee: Discover Y1 Teeteetee B3 Strathisla\n\n17) dlwillson: T B2 R2 Dlwillson\n\n18) TeeTeeTee: Build G1 Dalwhinnie\n\n19) dlwillson: M Y3 Dlwillson Field\n\n20) TeeTeeTee: Trade G1 R1 Dalwhinnie\n\tTeeTeeTee: Haha! I like that move.\n\n21) dlwillson: Discover Y3 Field G3 Sea\n\tdlwillson: I&#39;m glad you approve. Your &quot;Going for the Gold&quot;, what I secretly call &quot;TwoShort&#39;s Gambit&quot; caught me by surprise, but I think you pulled it a move too early, and I&#39;m doing my best to prove it, but you&#39;re a strong player, so it&#39;s going to be difficult. I&#39;ll need a moment to consider my next move.\n\n22) TeeTeeTee: Sacrifice Y2 Dalwhinnie\nMove G3 Dalwhinnie Field\nMove G3 Field Dlwillson\n\n23) dlwillson: Sacrifice Y3 Sea\nDiscover R2 Dlwillson Y2 Golden\nMove B1 Field Dlwillson\nDiscover B2 Field Y3 Sunny\n\n24) TeeTeeTee: Move Y1 Strathisla Teeteetee\n\n25) dlwillson: T B1 G1 Dlwillson\n\tTeeTeeTee: I reckon that, if you&#39;d played &quot;S b2 field, t r2 g2 dlwillson, t b1 r1(or g1) field&quot; instead of sacrificing the y3, then you could have forced a draw (I assume that if someone sacrifices their last ship at their homeworld to capture the other one, then it&#39;s a draw?)\n\n26) TeeTeeTee: Trade Y2 R2 Teeteetee\n\tdlwillson: I think the game won&#39;t allow that, but I&#39;m not sure.\n\n27) dlwillson: B G1 Dlwillson\n\n28) TeeTeeTee: Sacrifice R1 Dalwhinnie\nAttack B1 Dlwillson\n\n29) dlwillson: Build G1 Dlwillson\n\n30) TeeTeeTee: Pass\nCatastrophe Dlwillson Green\n\tdlwillson: Confirmed. A player may not eliminate himself/herself.\n\tTeeTeeTee: Aha. I see now that it&#39;s explicitly stated in the rules file that a player can&#39;t eliminate themselves. That would have been a shock...\r\n\r\nThanks for the game! Let me know if you have any comments or insights on the game (or if you wanted to hear mine.)\n\n\nHomeworlds Online (SDG# 26652)\nVariants: &quot;Unrated&quot;\nStarted: 2014.12.10, Ended: 2014.12.14\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B3 G1 R3\n\n2) DetectiveAzul: Homeworld B2 G1 G3 *\n\n3) Rizzotto: Build R1 Rizzotto\n\n4) DetectiveAzul: Build G1 Detectiveazul\n\n5) Rizzotto: Build R1 Rizzotto\n\n6) DetectiveAzul: Trade G3 Y3 Detectiveazul\n\n7) Rizzotto: Trade R1 Y1 Rizzotto\n\n8) DetectiveAzul: Build G2 Detectiveazul\n\n9) Rizzotto: Discover Y1 Rizzotto G2 Kaguya\n\n10) DetectiveAzul: Discover G1 Detectiveazul R3 Pisdemono\n\n11) Rizzotto: Build R1 Rizzotto\n\n12) DetectiveAzul: Build G2 Pisdemono\n\n13) Rizzotto: Trade R1 Y1 Rizzotto\n\n14) DetectiveAzul: Build G3 Detectiveazul\n\tRizzotto: Al siguiente lo voy a llamar Gifu. As&iacute; jam&aacute;s me lo robar&aacute;s. \n\n15) Rizzotto: Trade R3 G3 Rizzotto\n\n16) DetectiveAzul: Build G3 Pisdemono\n\tRizzotto: (En el otro juego no pod&iacute;a hacer otra cosa que rendirme. El juego me prohibi&oacute; hacer cat&aacute;strofe en mi propio planeta porque me suicidaba. No pod&iacute;a crear, no pod&iacute;a cambiar, no pod&iacute;a moverme...xD...Mierda, podr&iacute;a haberte atacao. Pero pa qu&eacute;)\n\n17) Rizzotto: Build R1 Rizzotto\n\n18) DetectiveAzul: Trade G2 B2 Detectiveazul\n\tDetectiveAzul: Eeestoy jugando con fueeeego\n\n19) Rizzotto: Trade R1 B1 Rizzotto\n\tRizzotto: Nah, no tanto. No tengo forma de hacerte cat&aacute;strofe de momento xD\n\n20) DetectiveAzul: Move B2 Detectiveazul Pisdemono\n\n21) Rizzotto: Move B1 Rizzotto Kaguya\n\n22) DetectiveAzul: Trade G1 Y1 Pisdemono\n\n23) Rizzotto: Build Y2 Kaguya\n\n24) DetectiveAzul: Trade G2 R2 Pisdemono\n\n25) Rizzotto: Trade Y1 G1 Kaguya\n\n26) DetectiveAzul: Build Y1 Detectiveazul\n\n27) Rizzotto: Trade G3 R3 Rizzotto\n\n28) DetectiveAzul: Sacrifice B2 Pisdemono\nTrade Y1 R1 Detectiveazul\nTrade G3 B3 Pisdemono\n\n29) Rizzotto: Build B1 Kaguya\n\tRizzotto: Qu&eacute; hacemos con el guiri? Nos unimos a otra con &eacute;l?\n\tDetectiveAzul: Por m&iacute; guay\n\n30) DetectiveAzul: Build Y1 Detectiveazul\n\n31) Rizzotto: Build Y2 Rizzotto\n\tRizzotto: Chachi, pues esta noche ya si eso lo hacemos, que ahora voy a pegarme una ducha ^^\n\n32) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n33) Rizzotto: Build G2 Kaguya\n\n34) DetectiveAzul: Discover G3 Detectiveazul B3 Capitanchurros\n\n35) Rizzotto: Trade G2 R2 Kaguya\n\tRizzotto: Questo di pesto\n\n36) DetectiveAzul: Build G2 Capitanchurros\n\n37) Rizzotto: Discover Y2 Rizzotto B2 Gifu\n\n38) DetectiveAzul: Move B3 Pisdemono Gifu\n\n39) Rizzotto: Trade Y2 B2 Gifu\n\n40) DetectiveAzul: Trade B3 Y3 Gifu\n\n41) Rizzotto: Build R1 Kaguya\n\n42) DetectiveAzul: Move R2 Pisdemono Detectiveazul\n\n43) Rizzotto: Sacrifice Y1 Rizzotto\nDiscover B2 Gifu R3 Sovietrussia\n\n44) DetectiveAzul: Trade G2 Y2 Capitanchurros\n\n45) Rizzotto: Trade R1 Y1 Rizzotto\n\n46) DetectiveAzul: Move G3 Capitanchurros Gifu\n\n47) Rizzotto: Move B1 Kaguya Rizzotto\n\n48) DetectiveAzul: Move B1 Detectiveazul Capitanchurros\n\n49) Rizzotto: Trade B2 G2 Sovietrussia\n\n50) DetectiveAzul: Discover B1 Capitanchurros G2 Sinverduras\n\n51) Rizzotto: Build G3 Sovietrussia\n\n52) DetectiveAzul: Discover R1 Detectiveazul G3 Nomoregreen\n\n53) Rizzotto: Build Y1 Rizzotto\n\n54) DetectiveAzul: Build B2 Sinverduras\n\n55) Rizzotto: Build B3 Kaguya\n\n56) DetectiveAzul: Sacrifice Y2 Capitanchurros\nMove B1 Sinverduras Rizzotto\nMove B2 Sinverduras Rizzotto\nCatastrophe Rizzotto B\n\n57) Rizzotto: Move B3 Kaguya Rizzotto\n\n58) DetectiveAzul: Build Y2 Detectiveazul\n\n59) Rizzotto: Move Y1 Rizzotto Sovietrussia\n\n60) DetectiveAzul: Trade Y2 B2 Detectiveazul\n\n61) Rizzotto: Move G3 Sovietrussia Rizzotto\n\n62) DetectiveAzul: Trade R2 G2 Detectiveazul\n\n63) Rizzotto: Build R1 Rizzotto\n\n64) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove G3 Gifu Rizzotto\nMove G2 Detectiveazul Nomoregreen\nMove G2 Nomoregreen Rizzotto\nCatastrophe Rizzotto G\n\n\nHomeworlds Online (SDG# 26654)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.12, Ended: 2014.12.22\nParticipants: Gungho (S), dsabremaster (N)\nWinner: Gungho\n\n1) dsabremaster: Homeworld B1 Y2 G3\n\n2) Gungho: Homeworld G3 Y1 B3\n\n3) dsabremaster: Build G1 Dsabremaster\n\n4) Gungho: Build B1 Gungho\n\n5) dsabremaster: Discover G1 Dsabremaster B3 Shoal\n\n6) Gungho: Build B1 Gungho\n\n7) dsabremaster: Build G1 Dsabremaster\n\n8) Gungho: Discover B1 Gungho G2 Gg\n\n\nHomeworlds Online (SDG# 26586)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.12.12, Ended: 2015.1.28\nParticipants: DetectiveAzul (S), Rizzotto (N), wil (E)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B1 G3 R3\n\n2) wil: Homeworld Y1 B2 G3\n\n3) DetectiveAzul: Homeworld B3 G2 Y3\n\n4) Rizzotto: Build R1 Rizzotto\n\n5) wil: Build G1 Wil\n\n6) DetectiveAzul: Build Y1 Detectiveazul\n\n7) Rizzotto: Trade R1 Y1 Rizzotto\n\n8) wil: Trade G1 Y1 Wil\n\n9) DetectiveAzul: Build Y2 Detectiveazul\n\n10) Rizzotto: Build Y2 Rizzotto\n\n11) wil: Build Y2 Wil\n\n12) DetectiveAzul: Discover Y1 Detectiveazul G1 Pedroelchurros\n\n13) Rizzotto: Build R1 Rizzotto\n\n14) wil: Trade Y1 R1 Wil\n\n15) DetectiveAzul: Trade Y2 R2 Detectiveazul\n\n16) Rizzotto: Discover Y1 Rizzotto B2 Pedrobear\n\n17) wil: Build G1 Wil\n\n18) DetectiveAzul: Build Y1 Detectiveazul\n\n19) Rizzotto: Build Y2 Rizzotto\n\n20) wil: Discover Y2 Wil G3 G3\n\n21) DetectiveAzul: Build Y2 Pedroelchurros\n\n22) Rizzotto: Trade Y1 G1 Pedrobear\n\n23) wil: Build R1 Wil\n\n24) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n25) Rizzotto: Build G2 Pedrobear\n\n26) wil: Discover G1 Wil Y3 Y3\n\n27) DetectiveAzul: Build G2 Detectiveazul\n\n28) Rizzotto: Trade G1 R1 Pedrobear\n\n29) wil: Move R1 Wil G3\n\n30) DetectiveAzul: Discover Y2 Pedroelchurros G3 Oioioioi\n\n31) Rizzotto: Build R2 Pedrobear\n\n32) wil: Build G1 Wil\n\tRizzotto: Sorry I took so long to answer. Happy Christmas!\n\n33) DetectiveAzul: Trade G1 Y1 Detectiveazul\n\n34) Rizzotto: Trade R1 Y1 Pedrobear\n\n35) wil: Build Y3 G3\n\n36) DetectiveAzul: Build Y3 Pedroelchurros\n\n37) Rizzotto: Build R1 Pedrobear\n\n38) wil: Move Y3 G3 Pedrobear\n\n39) DetectiveAzul: Move Y3 Pedroelchurros G3\n\n40) Rizzotto: Trade R2 G2 Pedrobear\n\n41) wil: Build R2 Wil\n\n42) DetectiveAzul: Sacrifice R2 Detectiveazul\nAttack Y2E G3\nAttack R1E G3\n\n43) Rizzotto: Trade G2 B2 Pedrobear\n\n44) wil: Sacrifice R2 Wil\nAttack R1N Pedrobear\nAttack G2N Pedrobear\n\n45) DetectiveAzul: Build R2 G3\n\n46) Rizzotto: Sacrifice Y1 Pedrobear\nMove B2 Pedrobear Y3\n\n47) wil: Build R2 Pedrobear\n\n48) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n49) Rizzotto: Trade B2 R2 Y3\n\n50) wil: Move Y3 Pedrobear Y3\n\n51) DetectiveAzul: Move Y3 G3 Pedrobear\n\n52) Rizzotto: Move R2 Y3 Pedroelchurros\n\n53) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G2 Y3\nBuild G3 Wil\n\n54) DetectiveAzul: Sacrifice R2 G3\nAttack R2E Pedrobear\nAttack G2E Pedrobear\n\n55) Rizzotto: Attack Y1S Pedroelchurros\n\n56) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Pedrobear\nBuild R2 Pedrobear\nCatastrophe Pedrobear R\n\n57) DetectiveAzul: Sacrifice Y2 Oioioioi\nMove G2 Pedrobear Y3\nMove G2 Y3 Wil\nCatastrophe Wil G\n\n58) Rizzotto: Build R1 Pedroelchurros\n\n59) wil: Move Y3 Y3 Wil\n\n60) DetectiveAzul: Build Y1 G3\n\n61) Rizzotto: Trade Y2 G2 Rizzotto\n\n62) wil: Discover G1 Y3 Y2 Y2\n\n63) DetectiveAzul: Sacrifice Y3 Pedrobear\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nDiscover R1 G3 G1 Conejos\nCatastrophe Wil Y\n\n64) Rizzotto: Move R2 Pedroelchurros Wil\n\n65) wil: Sacrifice G2 Y3\nBuild R2 Wil\nBuild R2 Wil\nCatastrophe Wil R\n\n66) Rizzotto: Move R1 Rizzotto Y2\n\n67) DetectiveAzul: Build Y1 Detectiveazul\n\twil: thanx for the game...  Feel free to challenge me in binary homeworlds.... \n\twil: or volcano, or martian chess...the current games I&#39;m trying to learn on this site...\n\tDetectiveAzul: Uhm, i will see how to play martian chess or volcano :O\n\n\nHomeworlds Online (SDG# 26674)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.15, Ended: 2014.12.20\nParticipants: Gungho (S), DetectiveAzul (N)\nWinner: Gungho\n\n1) DetectiveAzul: Homeworld G3 B1 Y3\n\n2) Gungho: Homeworld Y2 G1 B3\n\n3) DetectiveAzul: Build Y1 Detectiveazul\n\n4) Gungho: Build B1 Gungho\n\n5) DetectiveAzul: Build Y1 Detectiveazul\n\n6) Gungho: Build B1 Gungho\n\n7) DetectiveAzul: Discover Y1 Detectiveazul G2 Coladelparo\n\n8) Gungho: Trade B1 Y1 Gungho\n\n9) DetectiveAzul: Build Y2 Coladelparo\n\n10) Gungho: Discover Y1 Gungho G3 Ggg\n\n11) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n12) Gungho: Trade B1 R1 Gungho\n\n13) DetectiveAzul: Build Y1 Detectiveazul\n\n14) Gungho: Build B1 Gungho\n\n15) DetectiveAzul: Move Y2 Coladelparo Ggg\n\n16) Gungho: Discover Y1 Ggg B1 Bl\n\n17) DetectiveAzul: Build Y2 Ggg\n\n18) Gungho: Build B2 Gungho\n\n19) DetectiveAzul: Build Y3 Coladelparo\n\n20) Gungho: Discover B2 Gungho G3 Ggg2\n\n21) DetectiveAzul: Build Y3 Detectiveazul\n\n22) Gungho: Build B2 Ggg2\n\n23) DetectiveAzul: Discover Y1 Coladelparo R3 Morenasabrosona\n\n24) Gungho: Build B2 Gungho\n\n25) DetectiveAzul: Sacrifice Y3 Coladelparo\nMove Y1 Morenasabrosona Gungho\nMove Y2 Ggg Gungho\nMove Y2 Ggg Gungho\nCatastrophe Gungho Y\n\n26) Gungho: Build B3 Ggg2\n\n27) DetectiveAzul: Trade Y3 B3 Detectiveazul\n\n28) Gungho: Trade B2 Y2 Gungho\n\n29) DetectiveAzul: Discover B3 Detectiveazul Y2 Nopasaras\n\n30) Gungho: Sacrifice B2 Ggg2\nTrade B3 G3 Gungho\nTrade B3 Y3 Ggg2\n\n31) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n32) Gungho: Build B2 Ggg2\n\n33) DetectiveAzul: Discover G1 Detectiveazul R2 Allevoy\n\n34) Gungho: Discover B2 Ggg2 G2 Gwar\n\n35) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove R1 Detectiveazul Allevoy\nMove R1 Allevoy Gungho\nMove G1 Allevoy Gungho\n\n\tDetectiveAzul: lol, noob failure\n\tDetectiveAzul: I dont know what i did xDDD, np, congrats, i failed.\n\tGungho: Oh no! That&#39;s no good. But thanks for the game. Lets have a rematch some tome. Its a shame you couldn&#39;t undo. Good job dominating yellow at the start.\n\tGungho: Oh. Yellow 3 Pip went to bank then your 1 pips left. An empty homeworld is a loss. I think that&#39;s what happened. Sorry of I stated what you already knew :)\n\tDetectiveAzul: Yep, but for some reason i thought i had a ship left at homeworld, and when i noticed i coudn&#39;t undo. Thanks, was a good game, until i failed :3\n\nHomeworlds Online (SDG# 26678)\nVariants: &quot;Unrated&quot;\nStarted: 2014.12.16, Ended: 2014.12.20\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: Rizzotto\n\n1) Rizzotto: Homeworld R3 G1 B3\n\n2) DetectiveAzul: Homeworld G3 B1 Y3\n\n3) Rizzotto: Build B1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\tRizzotto: Tiiiiiniiiini ninininini do that conga...nos&eacute; qu&eacute; no se cu&aacute;nto any longah\n\n5) Rizzotto: Trade B1 Y1 Rizzotto\n\n6) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n7) Rizzotto: Build B1 Rizzotto\n\n8) DetectiveAzul: Build B2 Detectiveazul\n\n9) Rizzotto: Trade B1 R1 Rizzotto\n\n10) DetectiveAzul: Trade B1 G1 Detectiveazul\n\n11) Rizzotto: Build Y1 Rizzotto\n\n12) DetectiveAzul: Build B1 Detectiveazul\n\n13) Rizzotto: Build R1 Rizzotto\n\n14) DetectiveAzul: Trade B1 R1 Detectiveazul\n\n15) Rizzotto: Trade R1 G1 Rizzotto\n\n16) DetectiveAzul: Build G2 Detectiveazul\n\n17) Rizzotto: Discover G1 Rizzotto B2 Dasdingo\n\n18) DetectiveAzul: Move G2 Detectiveazul Dasdingo\n\tRizzotto: Buenos d&iacute;as, caballero *reverencia*\n\n19) Rizzotto: Build G2 Dasdingo\n\tDetectiveAzul: S&iacute;iii, das dingo\n\n20) DetectiveAzul: Build G2 Dasdingo\nCatastrophe Dasdingo G\n\tRizzotto: Ver&aacute;s t&uacute; que la jiedo xD T&uacute; siempre avasallando mis planetas\n\n21) Rizzotto: Build B1 Rizzotto\n\n22) DetectiveAzul: Build G1 Detectiveazul\n\n23) Rizzotto: Build Y1 Rizzotto\n\tRizzotto: &quot;A lo mejor no destruye por destruir&quot; me dije &quot;Vamos a arriesgarnos&quot;, me dije. Casi cuela :(\n\n24) DetectiveAzul: Build Y2 Detectiveazul\n\n25) Rizzotto: Discover Y1 Rizzotto G2 Gilipolless\n\n26) DetectiveAzul: Discover G1 Detectiveazul Y2 Mulatillas\n\n27) Rizzotto: Build Y2 Gilipolless\n\n28) DetectiveAzul: Build G2 Mulatillas\n\n29) Rizzotto: Sacrifice B1 Rizzotto\nTrade Y2 G2 Gilipolless\n\tRizzotto: Bsjsjjs yo antes sab&iacute;a un poco c&oacute;mo jugar a esto\n\n30) DetectiveAzul: Sacrifice B2 Detectiveazul\nTrade G1 R1 Mulatillas\nTrade G2 R2 Mulatillas\n\tDetectiveAzul: xDDD, no pasa na, muj&eacute;. Lo que pasa es que estoy jugando estrategia de monopolio y he sido m&aacute;s r&aacute;pido, y ahora andas un poco m&aacute;s jodidilla.\n\n31) Rizzotto: Move R1 Rizzotto Gilipolless\n\n32) DetectiveAzul: Move Y3 Detectiveazul Gilipolless\n\tRizzotto: Muy jodida xD ...has desecho tu mvoimiento para hacer el mismo?\n\n33) Rizzotto: Sacrifice G2 Gilipolless\nBuild Y2 Gilipolless\nBuild Y3 Gilipolless\nCatastrophe Gilipolless Y\n\n34) DetectiveAzul: Build G1 Detectiveazul\n\n35) Rizzotto: Build R2 Gilipolless\n\n36) DetectiveAzul: Trade G1 B1 Detectiveazul\n\n37) Rizzotto: Move Y1 Rizzotto Gilipolless\n\n38) DetectiveAzul: Build R2 Detectiveazul\n\n39) Rizzotto: Move R1 Gilipolless Rizzotto\n\n40) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove R1 Mulatillas Rizzotto\nMove R2 Mulatillas Rizzotto\nCatastrophe Rizzotto R\n\n41) Rizzotto: Build R1 Gilipolless\n\n42) DetectiveAzul: Build G1 Detectiveazul\n\n43) Rizzotto: Build B1 Rizzotto\n\n44) DetectiveAzul: Trade R2 Y2 Detectiveazul\n\n45) Rizzotto: Trade B3 R3 Rizzotto\n\n46) DetectiveAzul: Build B2 Detectiveazul\n\n47) Rizzotto: Build B2 Rizzotto\n\n48) DetectiveAzul: Trade B2 R2 Detectiveazul\n\n49) Rizzotto: Move R1 Gilipolless Rizzotto\n\n50) DetectiveAzul: Build B2 Detectiveazul\n\n51) Rizzotto: Trade B2 Y2 Rizzotto\n\n52) DetectiveAzul: Trade B2 Y2 Detectiveazul\n\n53) Rizzotto: Build B2 Rizzotto\n\n54) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove R1 Detectiveazul Gilipolless\nMove R1 Gilipolless Rizzotto\n\n55) Rizzotto: Trade R1 Y1 Rizzotto\n\n56) DetectiveAzul: Build R1 Rizzotto\n\n57) Rizzotto: Discover R3 Rizzotto Y3 Help\n\n58) DetectiveAzul: Sacrifice R2 Detectiveazul\nAttack Y1 Rizzotto\nAttack B1 Rizzotto\n\n59) Rizzotto: Sacrifice R2 Gilipolless\nAttack Y1 Rizzotto\nAttack B1 Rizzotto\n\n60) DetectiveAzul: Attack Y1 Rizzotto\n\n61) Rizzotto: Build B2 Rizzotto\n\n62) DetectiveAzul: Build Y2 Rizzotto\nCatastrophe Rizzotto Y\n\n63) Rizzotto: Trade B1 R1 Rizzotto\n\n64) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove B1 Detectiveazul Gilipolless\nMove B1 Gilipolless Rizzotto\n\n65) Rizzotto: Trade B2 Y2 Rizzotto\n\n66) DetectiveAzul: Attack R1 Rizzotto\n\n67) Rizzotto: Trade Y2 R2 Rizzotto\nCatastrophe Rizzotto R\n\n68) DetectiveAzul: Build B1 Rizzotto\n\n69) Rizzotto: Trade B2 R2 Rizzotto\n\n70) DetectiveAzul: Build B2 Rizzotto\n\n71) Rizzotto: Attack B2 Rizzotto\n\n72) DetectiveAzul: Trade B1 R1 Rizzotto\n\n73) Rizzotto: Move Y1 Gilipolless Detectiveazul\n\n74) DetectiveAzul: Sacrifice R1 Rizzotto\nAttack Y1 Detectiveazul\n\n75) Rizzotto: Attack B1 Rizzotto\n\n76) DetectiveAzul: Build Y1 Detectiveazul\n\n77) Rizzotto: Trade B2 Y2 Rizzotto\n\n78) DetectiveAzul: Build Y1 Detectiveazul\n\n79) Rizzotto: Sacrifice Y2 Rizzotto\nDiscover R3 Help G2 Salto\nMove R3 Salto Detectiveazul\n\tDetectiveAzul: gg wp\n\n80) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n81) Rizzotto: Attack R1 Detectiveazul\n\n82) DetectiveAzul: Trade G1 R1 Detectiveazul\n\n83) Rizzotto: Sacrifice R3 Detectiveazul\nAttack R1 Detectiveazul\nAttack G1 Detectiveazul\nAttack Y1 Detectiveazul\n\n\nHomeworlds Online (SDG# 26686)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.18, Ended: 2015.1.10\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) wil: Homeworld B2 Y1 G3\n\tdlwillson: I hope you were hoping for another game with me, because I can&#39;t challenge TeeTeeTee again, and TwoShort seems to be dormant, and nobody seems eager to challenge me, and well... it seems like time to do something. :-)\n\twil: Oh you only had to wait another day to challenge ttt...I see your evil plan...you&#39;ll just kick my ass on the way up!\n\twil: and seriously... If I had my druthers I&#39;d be in half a dozen different games with one person...I think it amazing how different they all get...\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: B B2 Dlwillson\n\n8) wil: Build B2 Wil\n\n9) dlwillson: D B1 Dlwillson Y2 Golden\n\n10) wil: Trade B1 R1 Wil\n\n11) dlwillson: T B2 R2 Dlwillson\n\n12) wil: Discover B2 Wil Y3 Y3\n\n13) dlwillson: B R1 Dlwillson\n\n14) wil: Build G1 Wil\n\n15) dlwillson: Trade R2 Y2 Dlwillson\n\n16) wil: Discover G1 Wil Y3 Why3\n\twil: twas an oops...not the move...the undo...unintentional undo...\n\n17) dlwillson: Build G1 Dlwillson\n\n18) wil: Build G1 Wil\n\n19) dlwillson: Move G1 Dlwillson Golden\n\n20) wil: Trade G1 Y1 Wil\n\n21) dlwillson: D Y2 Dlwillson G2 Field\n\n22) wil: Discover Y1 Wil B3 B3\n\n23) dlwillson: B Y1 Field\n\n24) wil: Build G1 Wil\n\n25) dlwillson: B G2 Dlwillson\n\n26) wil: Sacrifice G1 Wil\nBuild Y2 B3\n\n27) dlwillson: B B1 Golden\n\n28) wil: Build G1 Wil\n\n29) dlwillson: Move B1 Golden Why3\n\n30) wil: Sacrifice G3 Wil\nBuild G2 Why3\nBuild G3 Why3\nBuild G3 Wil\n\n31) dlwillson: M G1 Golden Why3\nC Why3 Green\n\n32) wil: Move G1 Wil Y3\n\tdlwillson: You sure?\n\twil: you got a better move for me?  I was gonna lose my position....those two new ships aren&#39;t really mine, there was no way for me to get them and keep them...it only makes it so you lose one to get my one...if I move my one...you gain those two now...meh...yeah....it is only a game.\n\n33) dlwillson: S G2 Dlwillson\nB B2 Golden\nB B3 Why3\n\n34) wil: Build B3 Y3\n\n35) dlwillson: T B3 G3 Why3\n\n36) wil: T B3 R3 Y3\n\n37) dlwillson: Build B3 Why3\n\n38) wil: Build B3 Y3\n\n39) dlwillson: Sacrifice Y2 Field\nMove B2 Golden Y3\nMove B1 Golden Y3\nCatastrophe Y3 B\n\n40) wil: Move G1 Y3 Field\n\n41) dlwillson: Sacrifice G3 Why3\nBuild Y2 Field\nBuild G1 Dlwillson\nBuild B1 Why3\n\n42) wil: Build G1 Field\n\n43) dlwillson: Sacrifice Y2 Field\nMove G1 Dlwillson Field\nDiscover Y1 Field B3 Sky\nCatastrophe Field G\n\n44) wil: Build G1 Wil\n\n45) dlwillson: Trade B3 G3 Why3\n\n46) wil: Trade Y1 G1 B3\n\n47) dlwillson: T B1 R1 Why3\n\n48) wil: Trade G1 B1 Wil\n\n49) dlwillson: Build B2 Why3\n\n50) wil: Move B1 Wil B3\n\n51) dlwillson: Discover B1 Why3 G2 Field\n\n52) wil: Build R2 Wil\n\n53) dlwillson: B B2 Why3\n\n54) wil: Build B3 B3\n\n55) dlwillson: S Y1 Sky\nM B1 Field B3\nC B3 B\n\n56) wil: Discover R2 Wil B3 B3\n\tdlwillson: You sure?\n\twil: I should have moved a r2 to b3 to keep you from getting it...but I didn&#39;t ... I made a mistake....I eat it...\n\n57) dlwillson: Build B1 Why3\n\n58) wil: Build R2 Wil\n\n59) dlwillson: S G3 Why3\nB R2 Dlwillson\nB R3 Why3\nB R3 Dlwillson\n\n60) wil: Trade R1 B1 Wil\n\n61) dlwillson: Move B2 Why3 Wil\n\n62) wil: Discover B1 Wil G3 G3\n\n63) dlwillson: S R1 Why3\nA R2 Wil\n\n64) wil: Sacrifice R2 B3\nAttack B2 Wil\nAttack R2 Wil\n\n65) dlwillson: M B2 Why3 Wil\n\n66) wil: Move B2 Wil Y3\n\n67) dlwillson: Sacrifice R1 Dlwillson\nAttack R2 Wil\n\n68) wil: Build B3 G3\n\twil: I just love it how diverse these games can get..  You&#39;ve got me...I blew it...but it is still fun to watch it play out.\n\n69) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Wil\nBuild B3 Wil\nBuild R1 Why3\n\n70) wil: Sacrifice R3 Y3\nAttack B3 Wil\nAttack B2 Wil\nAttack R2 Wil\n\n71) dlwillson: Move B1 Why3 Wil\nCatastrophe Wil B\n\tdlwillson: Me too. I love this game.\n\n72) wil: Attack R1 Wil\n\n73) dlwillson: Trade R3 G3 Dlwillson\n\n74) wil: Move R2 Wil G3\n\n75) dlwillson: D R3 Why3 B2 Sky\n\n76) wil: Build R1 Wil\n\n77) dlwillson: B G1 Dlwillson\n\n78) wil: Move R1 Wil Y3\n\n79) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Why3\nBuild R3 Sky\nBuild R3 Dlwillson\n\n80) wil: Sacrifice B3 G3\nTrade R2 Y2 G3\nTrade B1 Y1 G3\nTrade R1 Y1 Y3\n\n81) dlwillson: Trade R2 Y2 Dlwillson\n\twil: nice, I expected that..couldn&#39;t do much about it...  https://www.youtube.com/watch?v=DtpGgdBzy2Q\n\n82) wil: Build Y2 G3\n\n83) dlwillson: Move Y2 Dlwillson Sky\n\tdlwillson: Hm. Good defensive move. This is going to take longer than I hoped.\n\tdlwillson: :-)\r\n\n\n84) wil: Trade B2 R2 Y3\n\twil: me like a chicken running around in the corner from the farmers knife...\n\n85) dlwillson: Move R3 Sky Y3\n\n86) wil: Sacrifice Y1 Y3\nDiscover R2 Y3 Y1 Y1\n\n87) dlwillson: Sacrifice Y2 Sky\nMove R3 Sky Wil\nMove R3 Y3 Wil\n\n88) wil: Build R1 Wil\nCatastrophe Wil R\n\n89) dlwillson: Discover R2 Why3 B2 Sky\n\n90) wil: Discover Y2 G3 B2 B2\n\twil: McGiver is still trying to find a paperclip and matchbook cover to save the skin on his teeth for the next episode.\n\n91) dlwillson: T R2 Y2 Sky\n\tdlwillson: Yeah... I saw the mistake as soon as I made it.\n\tdlwillson: But I figured that with our relative positions, I should just take what I had.\n\n92) wil: Build G1 Wil\n\n93) dlwillson: S G1 Dlwillson\nB Y3 Sky\n\n94) wil: Move R2 Y1 Why3\n\n95) dlwillson: Move R1 Why3 Sky\n\n96) wil: Move G1 Wil B2\n\n97) dlwillson: Move Y2 Sky G3\n\n98) wil: Discover Y2 G3 G2 G2\n\n99) dlwillson: T R1 G1 Sky\n\n100) wil: Discover Y1 G3 G2 Geetoo\n\n101) dlwillson: B Y1 Sky\n\n102) wil: Build G1 B2\n\n103) dlwillson: M Y1 Sky Wil\n\n104) wil: Sacrifice R2 Why3\nAttack Y1 Wil\nPass\n\n105) dlwillson: Sacrifice Y2 G3\nMove G1 Sky Dlwillson\nMove Y3 Sky Wil\n\n106) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 B2\nBuild G2 B2\nCatastrophe Wil Y\n\n\twil: The vagabond (without a homeworld) rebels have populated the known universe and have you surrounded....the siege of the multiverse begins  ....thanx for the game...now go get TTT\n\tdlwillson: I will! Thanks for the game! I&#39;m surprised the system let you get away with a suicide; usually, it won&#39;t accept valid moves that result in the active player&#39;s loss.\n\twil: Ever since I found the system did not allow suicide...I&#39;ve been working on ways to trick it...but it is NOT suicide, we simply move on to safe planets and live on!\n\nHomeworlds Online (SDG# 26529)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.19, Ended: 2014.12.22\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 26411)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.21, Ended: 2015.1.1\nParticipants: wil (S), Gungho (N)\nWinner: Gungho\n\n1) Gungho: Homeworld G3 Y1 B3\n\n2) wil: Homeworld B2 G1 Y3\n\n3) Gungho: Build B1 Gungho\n\n4) wil: B Y1 Wil\n\n5) Gungho: Build B1 Gungho\n\n6) wil: T Y1 B1 Wil\n\n7) Gungho: Trade B1 Y1 Gungho\n\n8) wil: Build B1 Wil\n\n9) Gungho: Build B2 Gungho\n\twil: yup...I&#39;d do it just to see where the game goes...\n\n10) wil: Build Y1 Wil\n\n11) Gungho: Build Y2 Gungho\n\n12) wil: Sacrifice Y3 Wil\nDiscover B1 Wil R3 R3\nDiscover B1 R3 B2 B2\nMove B1 B2 Gungho\nCatastrophe Gungho B\n\n13) Gungho: Discover Y1 Gungho B2 Tywil\n\tGungho: Lol awesome \n\n14) wil: Build Y2 Wil\n\n15) Gungho: Trade Y1 G1 Tywil\n\twil: crazy eh?  I just had to see where it would take us.\n\n16) wil: Build B1 Wil\n\n17) Gungho: Build G1 Tywil\n\n18) wil: Trade Y2 G2 Wil\n\n19) Gungho: Build G2 Tywil\n\n20) wil: Build G2 Wil\n\n21) Gungho: Trade G1 Y1 Tywil\n\n22) wil: Trade G2 R2 Wil\n\n23) Gungho: Build Y2 Tywil\n\n24) wil: Discover G2 Wil Y3 Y3\n\n25) Gungho: Trade Y1 R1 Tywil\n\n26) wil: Discover B1 Wil G3 G3\n\n27) Gungho: Build Y1 Tywil\n\n28) wil: Move Y1 Wil G3\n\n29) Gungho: Discover Y1 Tywil B3 Bflat\n\n30) wil: Build B1 G3\n\n31) Gungho: Sacrifice G2 Tywil\nBuild Y2 Tywil\nBuild Y3 Bflat\n\n32) wil: Build Y3 G3\n\n33) Gungho: Move Y3 Bflat Wil\n\n34) wil: Sacrifice Y3 G3\nMove Y1 G3 Wil\nMove R2 Wil G3\nMove B1 G3 Wil\n\n35) Gungho: Sacrifice G1 Tywil\nBuild Y3 Bflat\n\n36) wil: Move B1 Wil Bflat\n\twil: nice move, I blew that...\n\n37) Gungho: Trade Y2 R2 Tywil\n\tGungho: Thanks. I don&#39;t have the atk I want... but the opportunity was there.  \n\twil: yeah...it is game over thou\n\n38) wil: Sacrifice G2 Y3\nBuild Y2 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\twil: I look forward to another game...I just had to see where it would go with that disaster I caused earlier..  it went disaterously (for me)\n\n39) Gungho: Sacrifice Y2 Tywil\nMove R2 Tywil Bflat\nMove R2 Bflat Wil\n\tGungho: It was fun. It may not have worked out but it&#39;s worth a try. Sometimes I think about destroying part of my own hw to connect to connect to the other one.  \n\tGungho: Err.. sorry. Touch screen type fail. :)\n\n40) wil: Build B2 Wil\n\twil: might as well delay the inevitable a moment...\n\n\twil: I look forward to another game, challenge anytime.....thanx\n\tGungho: Thanks, same here! Happy new year.\n\nHomeworlds Online (SDG# 26692)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.22, Ended: 2014.12.25\nParticipants: Gungho (S), SilentTitan (N)\nWinner: Gungho\n\n\nHomeworlds Online (SDG# 26698)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.24, Ended: 2014.12.27\nParticipants: Rizzotto (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B2 G3\n\n\twil: thanx for the game!\n\twil: What happened?\n\tRizzotto: Sorry, I&#39;ve been very busy and completely forgot about this D: Can I challenge you again?\n\twil: Of course!!\n\nHomeworlds Online (SDG# 26709)\nVariants: &quot;Unrated&quot;\nStarted: 2014.12.24, Ended: 2015.1.15\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld R3 B2 G3\n\n2) DetectiveAzul: Homeworld G3 B1 Y3\n\n3) Rizzotto: Build G1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) Rizzotto: Trade G1 R1 Rizzotto\n\n6) DetectiveAzul: Build Y1 Detectiveazul\n\n7) Rizzotto: Build R1 Rizzotto\n\n8) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n9) Rizzotto: Trade R1 Y1 Rizzotto\n\n10) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n11) Rizzotto: Build G1 Rizzotto\n\n12) DetectiveAzul: Build Y1 Detectiveazul\n\n13) Rizzotto: Trade G1 B1 Rizzotto\n\n14) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n15) Rizzotto: Build B2 Rizzotto\n\n16) DetectiveAzul: Build B2 Detectiveazul\n\n17) Rizzotto: Discover B1 Rizzotto G1 Piticli\n\n18) DetectiveAzul: Discover B2 Detectiveazul G2 Potoclo\n\n19) Rizzotto: Build B3 Piticli\n\n20) DetectiveAzul: Build B3 Detectiveazul\n\n21) Rizzotto: Trade B3 Y3 Piticli\n\n22) DetectiveAzul: Trade B3 R3 Detectiveazul\n\n23) Rizzotto: Build B3 Piticli\n\n24) DetectiveAzul: Build B3 Potoclo\n\n25) Rizzotto: Trade B3 R3 Piticli\n\n26) DetectiveAzul: Trade B3 G3 Potoclo\n\n27) Rizzotto: Build B3 Piticli\n\n28) DetectiveAzul: Build B3 Potoclo\n\n29) Rizzotto: Discover B3 Piticli G2 Bocasecaman\n\n30) DetectiveAzul: Trade B3 Y3 Potoclo\n\n31) Rizzotto: Build R1 Piticli\n\n32) DetectiveAzul: Build B3 Potoclo\n\n33) Rizzotto: Trade B2 Y2 Rizzotto\n\n34) DetectiveAzul: Discover G3 Potoclo Y1 Laconcha\n\tRizzotto: wow\r\nso many blu\r\nwow\r\nmuch tradingg\n\n35) Rizzotto: Move R1 Piticli Bocasecaman\n\n36) DetectiveAzul: Move B3 Potoclo Laconcha\n\n37) Rizzotto: Build R2 Piticli\n\n38) DetectiveAzul: Move R1 Detectiveazul Potoclo\n\n39) Rizzotto: Build R2 Bocasecaman\n\n40) DetectiveAzul: Build R2 Potoclo\n\n41) Rizzotto: Build B2 Piticli\n\n42) DetectiveAzul: Build B3 Laconcha\n\n43) Rizzotto: Build Y1 Piticli\n\n44) DetectiveAzul: Build Y2 Detectiveazul\n\n45) Rizzotto: Build Y2 Rizzotto\n\n46) DetectiveAzul: Discover B2 Potoclo G1 Agentcarter\n\n47) Rizzotto: Sacrifice Y3 Piticli\nMove Y1 Rizzotto Laconcha\nMove Y2 Rizzotto Laconcha\nMove Y2 Rizzotto Laconcha\nCatastrophe Laconcha Y\n\n48) DetectiveAzul: Build B3 Agentcarter\n\n49) Rizzotto: Trade B2 Y2 Piticli\n\tRizzotto: Hsjdjjdjjdjdjdjdvhufhdu nerviooooos\n\n50) DetectiveAzul: Sacrifice Y2 Detectiveazul\nDiscover B1 Detectiveazul G2 Pepapig\nDiscover B1 Pepapig Y1 Pepapig2\n\tDetectiveAzul: A impulsar la econom&iacute;aaaa\n\n51) Rizzotto: Trade B3 Y3 Bocasecaman\n\n52) DetectiveAzul: Sacrifice Y3 Potoclo\nMove B2 Agentcarter Rizzotto\nMove B3 Agentcarter Rizzotto\nMove B1 Pepapig2 Rizzotto\nCatastrophe Rizzotto B\n\tRizzotto: Vamos a mover esto un poco &ograve;.&oacute; \n\n53) Rizzotto: Sacrifice B1 Piticli\nTrade R1 B1 Rizzotto\n\n54) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove R1 Potoclo Rizzotto\nMove R2 Potoclo Rizzotto\nDiscover R3 Detectiveazul Y2 Rocketraccoon\n\n\nHomeworlds Online (SDG# 26711)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.24, Ended: 2015.1.2\nParticipants: Gungho (S), foksieloy (N)\nWinner: Gungho\n\n1) foksieloy: Homeworld Y3 B1 G3\n\n2) Gungho: Homeworld G3 R2 B3\n\tfoksieloy: Hi, good luck and have fun! It has been a while since I played. :)\n\n3) foksieloy: Build G1 Foksieloy\n\tGungho: Hello. Have fun! :)\n\n4) Gungho: Build B1 Gungho\n\n5) foksieloy: Trade G1 R1 Foksieloy\n\n6) Gungho: Build B1 Gungho\n\n7) foksieloy: Build R1 Foksieloy\n\n8) Gungho: Trade B1 R1 Gungho\n\n9) foksieloy: Trade R1 B1 Foksieloy\n\n10) Gungho: Build B2 Gungho\n\n11) foksieloy: Build G1 Foksieloy\n\n12) Gungho: Trade B1 Y1 Gungho\n\n13) foksieloy: Trade G3 Y3 Foksieloy\n\n14) Gungho: Discover B2 Gungho G1 Imove\n\n15) foksieloy: Build G1 Foksieloy\n\n16) Gungho: Build Y1 Gungho\n\n17) foksieloy: Discover G1 Foksieloy Y2 Tibbers\n\n18) Gungho: Build B1 Imove\n\n19) foksieloy: Build B2 Foksieloy\n\n20) Gungho: Trade B2 Y2 Imove\n\n21) foksieloy: Move B2 Foksieloy Tibbers\n\n22) Gungho: Build B2 Imove\n\n23) foksieloy: Build G2 Tibbers\n\n24) Gungho: Trade B2 G2 Imove\n\n25) foksieloy: Build B2 Tibbers\n\n26) Gungho: Sacrifice G2 Imove\nBuild B2 Gungho\nBuild B3 Imove\n\n27) foksieloy: Trade G2 Y2 Tibbers\n\n28) Gungho: Discover B3 Imove G2 Voodoo\n\n29) foksieloy: Move B2 Tibbers Imove\n\n30) Gungho: Sacrifice R1 Gungho\nAttack B2N Imove\n\n31) foksieloy: Build B3 Tibbers\n\n32) Gungho: Move Y1 Gungho Imove\n\n33) foksieloy: Trade B3 R3 Tibbers\n\n34) Gungho: Move Y1 Imove Voodoo\n\tfoksieloy: Happy new year!\n\tGungho: You too! Thanks. :)\n\n35) foksieloy: Build B3 Tibbers\n\n36) Gungho: Build Y1 Voodoo\n\n37) foksieloy: Discover B2 Tibbers Y3 Annie\n\n38) Gungho: Sacrifice Y2 Imove\nMove Y1 Voodoo Foksieloy\nMove Y1 Voodoo Foksieloy\nCatastrophe Foksieloy Yellow\n\n39) foksieloy: Move R3 Tibbers Foksieloy\n\n40) Gungho: Trade B3 Y3 Voodoo\n\n41) foksieloy: Sacrifice B1 Foksieloy\nTrade B3 R3 Tibbers\n\n\tfoksieloy: Good game!\n\tGungho: You too, Thanks for playing! \n\nHomeworlds Online (SDG# 26710)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.26, Ended: 2015.1.16\nParticipants: wil (S), agentofchaos (N)\nWinner: wil\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tagentofchaos: Hi, have fun\n\twil: I recall this name....Merry Christmas and thanx for the game...\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) wil: Build G1 Wil\n\tagentofchaos: Been a while since I last played! Merry Christmas to you too\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) wil: Trade G1 R1 Wil\n\n7) agentofchaos: Trade Y1 R1 Agentofchaos\n\n8) wil: Build R2 Wil\n\n9) agentofchaos: Build R2 Agentofchaos\n\n10) wil: Build R2 Wil\n\n11) agentofchaos: Trade R2 G2 Agentofchaos\n\n12) wil: Trade R1 B1 Wil\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) wil: Build B1 Wil\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) wil: Discover B1 Wil G2 G2\n\n17) agentofchaos: Discover G2 Agentofchaos Y3 Dare\n\n18) wil: Build B2 Wil\n\n19) agentofchaos: Build G1 Dare\n\n20) wil: Discover B2 Wil B2 B2\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 B2\nBuild B3 G2\n\n23) agentofchaos: Build R1 Agentofchaos\n\n24) wil: Sacrifice B2 B2\nTrade B3 Y3 G2\nTrade B3 G3 Wil\n\n25) agentofchaos: Discover G2 Dare Y2 Hadestorm\n\n26) wil: Sacrifice Y3 G2\nMove R2 Wil G2\nMove R2 G2 Dare\nMove R2 Dare Agentofchaos\nCatastrophe Agentofchaos R\n\n27) agentofchaos: Trade G1 R1 Agentofchaos\n\n28) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 B2\nBuild B3 Wil\n\n29) agentofchaos: Build G1 Hadestorm\n\n30) wil: Trade B3 G3 B2\n\n31) agentofchaos: Discover R1 Agentofchaos G1 Dospair\n\n32) wil: Move B1 Wil Agentofchaos\n\n33) agentofchaos: Trade G3 R3 Agentofchaos\n\n34) wil: Trade B3 Y3 B2\n\n\twil: unless I am missing  something that gives me two avenues to end it..  Play another?  \n\tagentofchaos: yeah sure\n\nHomeworlds Online (SDG# 26667)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2014.12.29, Ended: 2015.1.11\nParticipants: wil (S), Sarthobi (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) Sarthobi: Homeworld G2 B1 Y3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) wil: Homeworld Y3 B2 G3\n\n4) Sarthobi: Build Y1 Sarthobi\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) wil: Build G1 Wil\n\n7) Sarthobi: Trade Y1 G1 Sarthobi\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) wil: Trade G1 B1 Wil\n\n10) Sarthobi: Build G1 Sarthobi\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) wil: Build B1 Wil\n\n13) Sarthobi: Trade G1 B1 Sarthobi\n\n14) agentofchaos: Build G1 Agentofchaos\n\n15) wil: Discover B1 Wil G1 G1\n\n16) Sarthobi: Build B2 Sarthobi\n\n17) agentofchaos: Trade Y1 R1 Agentofchaos\n\n18) wil: Build B2 G1\n\n19) Sarthobi: Discover B1 Sarthobi G3 G3\n\n20) agentofchaos: Discover R1 Agentofchaos Y2 Kralizec\n\n21) wil: Trade B2 Y2 G1\n\n22) Sarthobi: Build B2 G3\n\n23) agentofchaos: Build Y1 Agentofchaos\n\n24) wil: Sacrifice G3 Wil\nBuild B2 G1\nBuild B3 G1\nBuild B3 Wil\n\n25) Sarthobi: Build B3 Sarthobi\n\n26) agentofchaos: Discover Y1 Agentofchaos G2 Skanknor\n\n27) wil: Sacrifice Y2 G1\nMove B1 G1 G3\nMove B1 G3 Sarthobi\nCatastrophe Sarthobi B\n\n28) Sarthobi: Sacrifice Y3 Sarthobi\nMove B1 G3 G1\nMove B1 G1 Wil\nMove B2 G3 Sarthobi\nCatastrophe Wil B\n\n29) agentofchaos: Move G3 Agentofchaos Sarthobi\n\n30) Sarthobi: T G1 R1 Sarthobi\n\n31) agentofchaos: Sacrifice R1 Kralizec\nAttack B2N Sarthobi\n\n32) Sarthobi: Build R1 Sarthobi\n\n33) agentofchaos: Trade B2 R2 Sarthobi\n\n34) Sarthobi: Build R1 Sarthobi\n\n35) agentofchaos: Pass\nCatastrophe Sarthobi R\n\tSarthobi: nice nice :]\n\n\tagentofchaos: Thanks for a fun game :-)\n\tSarthobi: indeed :)\r\ngood game \n\twil: nice...\n\nHomeworlds Online (SDG# 26716)\nVariants: &quot;Hard time&quot;\nStarted: 2014.12.29, Ended: 2015.1.23\nParticipants: Rizzotto (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\n2) Rizzotto: Homeworld R3 B2 G3\n\n3) wil: Build G1 Wil\n\tRizzotto: Hello again!\n\twil: let&#39;s get this universe populated!\r\n\n\n4) Rizzotto: Build G1 Rizzotto\n\n5) wil: Trade G1 B1 Wil\n\tRizzotto: Yeeeaah!\n\n6) Rizzotto: Trade G1 Y1 Rizzotto\n\n7) wil: Build B1 Wil\n\tRizzotto: Happy (late) New Year!\n\twil: backatcha\n\n8) Rizzotto: Build Y1 Rizzotto\n\n9) wil: Discover B1 Wil G2 G2\n\n10) Rizzotto: Build G1 Rizzotto\n\n11) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n12) Rizzotto: Trade G1 Y1 Rizzotto\n\n13) wil: Sacrifice B2 G2\nTrade B2 Y2 G2\nTrade B3 G3 Wil\n\n14) Rizzotto: Discover Y1 Rizzotto G1 Gamora\n\n15) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n16) Rizzotto: Build Y2 Gamora\n\n17) wil: Trade B3 G3 Wil\n\n18) Rizzotto: Trade Y1 R1 Rizzotto\n\n19) wil: Trade B2 R2 G2\n\n20) Rizzotto: Build G1 Rizzotto\n\n21) wil: Discover B2 G2 Y1 Y1\n\n\nHomeworlds Online (SDG# 26719)\nVariants: &quot;Unrated&quot;\nStarted: 2014.12.30, Ended: 2015.1.3\nParticipants: dsabremaster (S), Sarthobi (N)\nWinner: Sarthobi\n\n1) Sarthobi: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 26724)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.2, Ended: 2015.1.10\nParticipants: Gungho (S), wil (N)\nWinner: Gungho\n\n1) wil: Homeworld Y2 B1 G3\n\tGungho: Round 2. Fight. :)\n\twil: yee haw!!\n\n2) Gungho: Homeworld G3 Y1 B3\n\n3) wil: Build G1 Wil\n\n4) Gungho: Build B1 Gungho\n\n5) wil: Trade G1 B1 Wil\n\n6) Gungho: Build B2 Gungho\n\n7) wil: Build B2 Wil\n\n8) Gungho: Discover B1 Gungho G2 Trogdor\n\n9) wil: Trade B1 R1 Wil\n\n10) Gungho: Build B1 Gungho\n\n11) wil: Discover B2 Wil Y3 Y3\n\n12) Gungho: Trade B1 Y1 Trogdor\n\n13) wil: Build R1 Wil\n\n14) Gungho: Trade B2 R2 Gungho\n\n15) wil: Build G1 Wil\n\n16) Gungho: Build B1 Gungho\n\n17) wil: Move G1 Wil Y3\n\n18) Gungho: Build Y1 Trogdor\n\n19) wil: Move B2 Y3 Trogdor\n\n20) Gungho: Sacrifice Y1 Trogdor\nDiscover Y1 Trogdor G3 Gwar\n\n21) wil: Build B2 Trogdor\n\n22) Gungho: Discover B1 Gungho Y2 Yeller\n\n23) wil: Build B2 Trogdor\n\n24) Gungho: Build B3 Gungho\n\n25) wil: Trade B2 Y2 Trogdor\n\n26) Gungho: Sacrifice B1 Gungho\nTrade B3 Y3 Gungho\n\n27) wil: Move R1 Wil Y3\n\n28) Gungho: Move Y3 Gungho Trogdor\n\n29) wil: Sacrifice G3 Wil\nBuild Y1 Trogdor\nBuild Y3 Trogdor\nBuild R1 Y3\nCatastrophe Trogdor Y\n\n30) Gungho: Build R2 Gungho\n\n31) wil: Build R2 Y3\n\n32) Gungho: Trade R2 Y2 Gungho\n\n33) wil: Move R2 Y3 Trogdor\n\n34) Gungho: Build Y1 Gwar\n\n35) wil: Build R2 Trogdor\n\tGungho: Ugh... just had one of those hindsight moments.....\n\tGungho: That was an unexpected yellow catastrophe!\n\n36) Gungho: Build Y3 Gungho\n\twil: Yeah didn&#39;t do so well, you&#39;ve got this in the bag..\n\n37) wil: Build R3 Y3\n\n38) Gungho: Sacrifice Y3 Gungho\nMove B3 Gungho Yeller\nMove B3 Yeller Gwar\nMove B3 Gwar Wil\n\tGungho: Maybe. Being locked out of yellow sucks. I&#39;m also capable of making really stupid moves in my end game. My keep you away from 3 pips gambit has ended, too.\n\n39) wil: Sacrifice G1 Y3\nBuild R3 Wil\n\n40) Gungho: Sacrifice R2 Gungho\nAttack R3N Wil\nAttack R1N Wil\n\twil: done well....well done\n\n\twil: just some more for your fleet...\n\tGungho: Thanks for playing! ^_^\n\twil: thank you!  I enjoy the heck out of this game...win or lose...and it is always different...please challenge any time... I like being in lots of games (since often there are days between moves)\n\nHomeworlds Online (SDG# 26729)\nVariants: &quot;Unrated&quot;\nStarted: 2015.1.3, Ended: 2015.1.12\nParticipants: sounde (S), dsabremaster (N)\nWinner: sounde\n\n\nHomeworlds Online (SDG# 26737)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.4, Ended: 2015.1.10\nParticipants: Sarthobi (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\n2) Sarthobi: Homeworld B1 Y2 G3\n\n3) wil: Build G1 Wil\n\twil: thanx for the game!  Challenge as many times as you wish, I enjoy playing this!!  (and teaching if you have any questions)\n\n4) Sarthobi: Build G1 Sarthobi\n\twil: a little faux pas in the opening....when you pick the same small for your star you leave an easy monopoly start...when I change my g1 for blue you&#39;ll be cornered out of blues...your fix before it gets to far will be after you grow g1 switch your g3 for b3 (unless i get two close with a b and can catastrophe)  \n\n5) wil: Trade G1 B1 Wil\n\n6) Sarthobi: Build G1 Sarthobi\n\n7) wil: Build B2 Wil\n\n8) Sarthobi: Discover G1 Sarthobi B3 B3\n\n9) wil: Discover B2 Wil Y2 Y2\n\n10) Sarthobi: Build G1 B3\n\n11) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B2 Y2\nBuild B3 Wil\n\n12) Sarthobi: Build G2 B3\n\n13) wil: Sacrifice B2 Y2\nTrade B3 G3 Wil\nTrade B2 Y2 Y2\n\n14) Sarthobi: Trade G1 Y1 B3\n\twil: don&#39;t fall for the sucker move I just dangled...\n\n15) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B2 Y2\nBuild B3 Wil\n\tSarthobi: Thanks for all the tips, trying to learn the game flow :)\r\nThis is as far as i&#39;ve gotten with any game challange so far\n\twil: I learned by losing...a lot...by seeing the moves and strategies come at me repeatedly\n\n16) Sarthobi: Move Y1 B3 Y2\n\twil: monopolies in any economy are bad...by allowing me to get a monopoly I can continually produce multiple ships and then change them into a variety of other ships accumulating twice as fast ..\n\n17) wil: Sacrifice Y2 Y2\nDiscover B2 Y2 Y3 Y3\n\nDiscover B2 Y2 G3 G3\n\tSarthobi: Good to know.. will try to avoid it next time i guess\n\twil: best way to learn in my opinion is to see the power of it...\n\twil: lol, nice effort!!\n\n18) Sarthobi: Move Y1 Y2 Wil\n\n19) wil: Build B3 G3\n\n20) Sarthobi: Sacrifice G2 B3\nBuild Y1 Wil\nBuild Y1 Wil\nCatastrophe Wil Y\n\n21) wil: Sacrifice B2 Y2\nTrade B3 Y3 G3\nTrade B3 G3 Wil\n\tSarthobi: Btw i love the commentary. helps a lot.\r\nif i make any silly move, give me feed back :)\n\n22) Sarthobi: Trade G1 Y1 B3\n\n23) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B3 Y3\nBuild B3 Wil\n\n24) Sarthobi: Move Y1 B3 Wil\n\n25) wil: Sacrifice B2 G3\nTrade B3 R3 Wil\nTrade B3 G3 Y3\n\n26) Sarthobi: Trade G1 R1 Sarthobi\n\twil: Ya got no red man!  no ability to attack...what is that little yellow mosquito doing in my homeworld?\n\n27) wil: Attack Y1 Wil\n\tSarthobi: yeah, i messed that up, didnt think all the way through :]\r\n\n\n28) Sarthobi: Build R1 Sarthobi\n\n29) wil: Sacrifice G3 Y3\nBuild B2 Wil\nBuild B3 G3\nBuild B3 Y3\n\twil: Your crew have been anesthetized, your ship retrofitted for our use.  Send another transport ship and we&#39;ll have your crew loaded aboard for return to a neutral zone. \n\twil: attack is interesting...you can&#39;t move in and attack since it is turn based...the other guy can attack you if he is equal size and has the capability...  what I am working toward now, and I don&#39;t think you can stop because of my blue monopoly is.. you take one, I take three...  I send two big ships into your homeworld...you may be able to take one but with my Red Queen I&#39;ll be able to take that back and yours in the process...  so I&#39;ll sack my g3 again...for two more b3s then with my y3 send them in for the kill...\n\n30) Sarthobi: Build G1 Sarthobi\n\n31) wil: Build B3 G3\n\n32) Sarthobi: Move G3 Sarthobi Y3\n\n33) wil: Sacrifice Y3 G3\nMove B3 Y3 Sarthobi\nMove B2 Y3 Sarthobi\nDiscover B1 Wil Y3 Why3\n\twil: the ships are on the horizon....\n\n34) Sarthobi: Sacrifice G3 Y3\nBuild G1 Sarthobi\nBuild G1 Sarthobi\nBuild R1 Sarthobi\n\twil: Ah....they&#39;ve left their star system...attempting to discover greener pastures elsewhere...\r\n \n\n35) wil: Trade B2 R2 Sarthobi\nCatastrophe Sarthobi R\n\tSarthobi: I can either lose this round or claw my way to another round and then lise :p\n\n36) Sarthobi: Trade G1 R1 Sarthobi\n\n37) wil: Sacrifice R3 Wil\nAttack R1 Sarthobi\nAttack G1 Sarthobi\nAttack G1 Sarthobi\n\twil: https://www.youtube.com/watch?v=Zf-fORxQvW0\r\n\n\n\twil: The monopoly is what killed you... When someone gets a color...insure you get that color (unless you are able to hold a simultaneous monopoly of another color...but that is fraught with peril) \n\tSarthobi: Thanks a lot for the game :)\r\nLearned a few things hehe.\r\nI&#39;ll finish some challanges and will try out some new ones later.\r\nGood game!\n\twil: I try to keep a half dozen to a dozen games going (since some folks take 3-7 days to play) challenge me anytime...  I lost probably 80% if my first few dozen games of homeworlds...but I love watching it..\n\nHomeworlds Online (SDG# 26738)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.4, Ended: 2015.1.6\nParticipants: Gungho (S), Sarthobi (N)\nWinner: Gungho\n\n1) Sarthobi: Homeworld Y2 B1 G3\n\n2) Gungho: Homeworld G3 Y1 B3\n\tGungho: Hello. Have fun :)\n\n3) Sarthobi: Build G1 Sarthobi\n\tSarthobi: Thanks, you too :)\n\n4) Gungho: Build B1 Gungho\n\n5) Sarthobi: Trade G1 Y1 Sarthobi\n\n6) Gungho: Build B1 Gungho\n\n7) Sarthobi: Build Y1 Sarthobi\n\n8) Gungho: Discover B1 Gungho G2 Buildy\n\n9) Sarthobi: Discover Y1 Sarthobi G3 G3buildy\n\n10) Gungho: Build B2 Buildy\n\n11) Sarthobi: Build Y2 Sarthobi\n\n12) Gungho: Trade B3 Y3 Gungho\n\n13) Sarthobi: Build Y2 G3buildy\n\tGungho: O.o I&#39;m not really sure what my best choice was there.  Sometimes you gotta pull out plan &quot;wing it&quot;.\n\n14) Gungho: Build B2 Gungho\n\tSarthobi: Plan &#39;wing it&#39; it is then!\r\nI&#39;m not sure of any of my moves yet :p\n\n15) Sarthobi: Sacrifice Y2 Sarthobi\nMove Y1 G3buildy Buildy\nMove Y1 Buildy Gungho\n\tGungho: Sometimes the options are overwhelming, but you start to learn how you like to get things done after a while.  Not me.. but ya know... other players. :)\n\n16) Gungho: Trade Y3 R3 Gungho\n\n17) Sarthobi: Sacrifice G3 Sarthobi\nBuild Y2 Gungho\nBuild Y3 Gungho\nBuild Y3 Sarthobi\nCatastrophe Gungho Y\n\n18) Gungho: Trade B1 Y1 Buildy\n\n19) Sarthobi: Trade Y3 G3 Sarthobi\n\n20) Gungho: Sacrifice Y1 Buildy\nMove R3 Gungho Sarthobi\n\n21) Sarthobi: Move G3 Sarthobi Gungho\n\n22) Gungho: Attack Y1N Sarthobi\n\tGungho: Thanks for the game. You had a strong open. You had me locked out of yellow, and you were out pacing me on getting to 3 pips.\n\tSarthobi: Thanks :)\r\nI thought i could have one more round that i lose if i dont have ships in the home world by the end of my turn.\r\nGreat game :)\n\n\nHomeworlds Online (SDG# 26704)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.4, Ended: 2015.1.27\nParticipants: Sarthobi (S), SilentTitan (N)\nWinner: Sarthobi\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Sarthobi: Homeworld Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Sarthobi: Build G1 Sarthobi\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Sarthobi: Build G1 Sarthobi\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Sarthobi: Trade G1 B1 Sarthobi\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) Sarthobi: Build B1 Sarthobi\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Sarthobi: Discover B1 Sarthobi G2 G2\n\n13) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n14) Sarthobi: Build B2 G2\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\nBuild Y2 Silenttitan\n\n16) Sarthobi: B B2 G2\n\n17) SilentTitan: Build Y3 Sol\n\n18) Sarthobi: B B3 Sarthobi\n\n19) SilentTitan: Discover Y1 Silenttitan Y3 Sole\n\n20) Sarthobi: Trade B3 R3 Sarthobi\n\n21) SilentTitan: Move Y3 Sol Silenttitan\n\tSilentTitan: Oooooh Shiny\n\n22) Sarthobi: Build B3 Sarthobi\n\n23) SilentTitan: Move Y1 Sol Silenttitan\n\tSarthobi: brand new and shiny :]\r\nyou can smell the scent all the way to your home world :P\n\tSilentTitan: Ah... Well I believe this is a draw. First one I&#39;ve ever seen, and maybe I&#39;ve missed something somewhere.  I do tend to be wrong from time to time.\n\n24) Sarthobi: Trade B3 R3 Sarthobi\n\n25) SilentTitan: Discover Y1 Soul R2 Tic\n\tSarthobi: i dont think it&#39;s a draw.. maybe i didnt think that far, but we have some options for the game :)\n\n26) Sarthobi: M R3 Sarthobi Tic\n\n27) SilentTitan: Move Y1 Tic Sol\n\n28) Sarthobi: B B3 Sarthobi\n\n29) SilentTitan: Discover Y1 Sol R2 Tac\n\n30) Sarthobi: B R1 Sarthobi\n\n31) SilentTitan: Discover Y2 Soul G2 Toe\n\n32) Sarthobi: M B3 Sarthobi Tac\n\n33) SilentTitan: Move Y1 Tac Sol\n\n34) Sarthobi: B B3 Sarthobi\n\n35) SilentTitan: Discover Y1 Sol G2 Ying\n\n36) Sarthobi: B R1 Sarthobi\n\n37) SilentTitan: Discover Y2 Toe B3 Yang\n\n38) Sarthobi: Move R1 Sarthobi G2\n\n39) SilentTitan: Discover Y2 Yang G2 Mish\n\n40) Sarthobi: M B1 Sarthobi Tic\n\n41) SilentTitan: Move Y1 Silenttitan Sol\n\n42) Sarthobi: B B3 Sarthobi\n\n43) SilentTitan: Discover Y1 Sol R2 Mash\n\n44) Sarthobi: B R3 Sarthobi\n\n45) SilentTitan: Move Y1 Mash Sol\n\n46) Sarthobi: T R3 G3 Tic\n\n47) SilentTitan: Move Y1 Sol Silenttitan\n\n48) Sarthobi: M R3 Sarthobi Mish\n\n49) SilentTitan: Discover Y2 Mish R3 Eenie\n\n50) Sarthobi: M R3 Sarthobi Ying\n\n51) SilentTitan: Discover Y1 Ying G1 Meenie\n\n52) Sarthobi: M G3 Sarthobi G2\n\n53) SilentTitan: Move Y2 Eenie Meenie\n\n54) Sarthobi: T B3 R3 Sarthobi\n\n55) SilentTitan: Move Y1 Meenie Sol\n\n56) Sarthobi: B B3 Sarthobi\n\n57) SilentTitan: Move Y1 Sol Meenie\n\n58) Sarthobi: Build R2 Sarthobi\n\n59) SilentTitan: Move Y1 Silenttitan Sol\n\n60) Sarthobi: Build G1 Sarthobi\n\n61) SilentTitan: Move Y1 Sol Silenttitan\n\n62) Sarthobi: Sacrifice B1 Tic\nPass\n\n63) SilentTitan: Pass\n\tSilentTitan: Draw?\n\tSarthobi: not yet :)\r\ngonna do some crazy moves now\n\tSarthobi: btw, how do we call a draw?\n\n64) Sarthobi: Pass\n\tSilentTitan: Not sure.  Like I said this would be the first ever for me.\n\n65) SilentTitan: Move Y2 Meenie Sol\n\n66) Sarthobi: Move G1 Sarthobi Tac\n\n67) SilentTitan: Move Y2 Sol Meenie\n\n68) Sarthobi: Trade G1 B1 Tac\n\n69) SilentTitan: Move Y2 Silenttitan Sol\n\n70) Sarthobi: B G1 Sarthobi\n\n71) SilentTitan: Move Y2 Sol Silenttitan\n\n72) Sarthobi: Pass\n\n73) SilentTitan: Move Y2 Meenie Sol\n\n74) Sarthobi: Pass\n\n\tSilentTitan: Draw?\n\tdlwillson: Huh. Too bad there&#39;s no league. We could call a judge. I think it&#39;s supposed to end when both players pass, but I&#39;m not sure.\n\tSarthobi: Draw\n\tSilentTitan: Good game\n\nHomeworlds Online (SDG# 26759)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.6, Ended: 2015.1.16\nParticipants: mneme (S), Gungho (N)\nWinner: Gungho\n\n1) Gungho: Homeworld G3 Y1 B3\n\n2) mneme: Homeworld R1 B2 G3\n\tGungho: Thanks for accepting.  Have fun\n\n3) Gungho: Build B1 Gungho\n\n4) mneme: Build G1 Mneme\n\n5) Gungho: Build B1 Gungho\n\n6) mneme: Trade G1 B1 Mneme\n\n7) Gungho: Discover B1 Gungho G2 Mold\n\n8) mneme: Build B2 Mneme\n\n9) Gungho: Build B2 Mold\n\n10) mneme: Trade B1 Y1 Mneme\n\n11) Gungho: Trade B2 Y2 Mold\n\n12) mneme: Discover B2 Mneme G3 Forest\n\n13) Gungho: Build B1 Mold\n\n14) mneme: Build G1 Mneme\n\n15) Gungho: Trade B1 R1 Mold\n\n16) mneme: Trade G1 R1 Mneme\n\n17) Gungho: Build R2 Mold\n\n18) mneme: Move R1 Mneme Forest\n\n19) Gungho: Trade R1 B1 Mold\n\n20) mneme: Build G1 Mneme\n\n21) Gungho: Trade B1 G1 Mold\n\tmneme: Oh, missed your chat--have fun!\n\tGungho: Thanks! :)\n\n22) mneme: Discover G1 Mneme B3 Ocean\n\n23) Gungho: Discover G1 Mold B3 Puddle\n\n24) mneme: Build G1 Mneme\n\n25) Gungho: Build G2 Puddle\n\n26) mneme: Discover G1 Mneme Y3 Sol\n\n27) Gungho: Move R2 Mold Ocean\n\n28) mneme: Sacrifice G1 Ocean\nBuild Y1 Mneme\n\n29) Gungho: Build Y2 Mold\n\n30) mneme: Move Y1 Mneme Forest\n\n31) Gungho: Sacrifice Y2 Mold\nMove G1 Puddle Mneme\nMove G2 Puddle Mneme\n\n32) mneme: Sacrifice G3 Mneme\nBuild Y2 Forest\nBuild Y2 Forest\nBuild Y3 Mneme\n\tGungho: This ought to stir the pot some. :)\n\n33) Gungho: Build Y3 Mold\n\n34) mneme: Attack G2 Mneme\n\tmneme: Well, yes.  \n\n35) Gungho: Move Y2 Mold Forest\nCatastrophe Forest Yellow\n\n36) mneme: Attack G1 Mneme\n\n37) Gungho: Move Y3 Mold Forest\n\tmneme: NOT happy with being behind in larges.  But still, a successful defense.\n\n38) mneme: Sacrifice G2 Mneme\nBuild R1 Forest\nBuild R2 Forest\n\n39) Gungho: Sacrifice R2 Ocean\nAttack R2S Forest\nAttack B2S Forest\n\n40) mneme: Build R2 Forest\nCatastrophe Forest R\n\n41) Gungho: Trade B3 G3 Gungho\n\n42) mneme: Trade Y1 R1 Mneme\n\n43) Gungho: Sacrifice G3 Gungho\nBuild B1 Mold\nBuild B2 Mold\nBuild B3 Gungho\n\n44) mneme: Build Y1 Mneme\n\n45) Gungho: Build B3 Forest\n\n46) mneme: Discover G1 Mneme B3 No\n\n47) Gungho: Sacrifice B2 Forest\nTrade B2 Y2 Mold\nTrade B3 R3 Gungho\n\n48) mneme: Trade Y3 G3 Mneme\n\n49) Gungho: Sacrifice Y2 Mold\nMove B3 Forest Mneme\nMove Y3 Forest Mneme\n\n\tmneme: nicely done.  Missed that you&#39;d set up your freeze quite so close to my home system, but once you did it was all over.  Another game?\n\tGungho: Thanks. You had quite the bag of defensive tricks. I enjoyed that game.  Another game sounds great.\n\nHomeworlds Online (SDG# 26750)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.10, Ended: 2015.1.14\nParticipants: wil (S), Sarthobi (N)\nWinner: wil\n\n1) Sarthobi: Homeworld B1 Y2 G3\n\tSarthobi: Lets see how i&#39;ll do this time\n\n2) wil: Homeworld R3 B2 G3\n\twil: COOL!!  Thanx..so openings...you&#39;ve chosen the best one...or the one the best players like to use most and win with most... The Banker...I&#39;ll take Goldilocks...no...I&#39;ll take fortress, I want to learn how to use it to my advantage.\n\n3) Sarthobi: Build G1 Sarthobi\n\tSarthobi: I guess the red in the opening lets you stay defensive if i come by with a shi, right?\r\nAnd i like this game :)\r\nTrying to think of a way to make some AI for it that wont act foolish.\r\n\n\tSarthobi: I guess the red in the opening lets you stay defensive if i come by with a shi, right?\r\nAnd i like this game :)\r\nTrying to think of a way to make some AI for it that wont act foolish.\r\n\n\n4) wil: Build G1 Wil\n\twil: We dream of someone creating an app where you just slide pieces from the bank to the position...it jumps back if it is an illegal move... you can toggle on helps so whenever you touch a piece it shows where it can move...  of the day we can play a computer...  \n\twil: Yes, having the power of defense in my star is just like having a gun at my star...  While I like having immediate transportation, having a defense system (can&#39;t be used in agression when it can&#39;t move or be sacked) is valuable...we come in peace.\n\n5) Sarthobi: T G1 B1 Sarthobi\n\tSarthobi: I saw how peacful you are. You wont fool me with that act :p\n\n6) wil: Trade G1 B1 Wil\n\n7) Sarthobi: B B2 Sarthobi\n\n8) wil: Build B2 Wil\n\n9) Sarthobi: T B1 Y1 Sarthobi\n\n10) wil: Trade B2 Y2 Wil\n\n11) Sarthobi: D Y1 Sarthobi G3 G3\n\n12) wil: Build G1 Wil\n\n13) Sarthobi: B G1 Sarthobi\n\n14) wil: Trade G1 R1 Wil\n\n15) Sarthobi: T G1 R1 Sarthobi\n\n16) wil: Build G1 Wil\n\n17) Sarthobi: Build G1 Sarthobi\n\n18) wil: Build Y1 Wil\n\n19) Sarthobi: Move B2 Sarthobi G3\n\twil: So this is the building game...you&#39;ve avoided being locked out of anything...and now it is trying to not be the person that lets the other gain in the larger ships...(while being the person that takes the upper eddge in the larger ships)\n\tSarthobi: seems like it :]\n\n20) wil: Discover Y1 Wil G1 G1\n\n21) Sarthobi: Build G2 Sarthobi\n\n22) wil: Discover G1 Wil Y1 Y1\n\n23) Sarthobi: M G2 Sarthobi G3\n\twil: Do you have a physical set of pyramids?  This display is just about the worst for actually figuring out what is going on...  \n\tSarthobi: Hehe i dont, and this display aint toi good.. but we can manage :)\n\n24) wil: Build G2 Y1\n\n25) Sarthobi: D G2 G3 G2 G2\n\twil: You should get a set....playing real time with others is great...and when you get to critical conditions in an online game seeing a real layout helps...a lot.  (I should do it more, but don&#39;t)\n\n26) wil: Discover G2 Y1 Y3 Y3\n\tSarthobi: I&#39;m thinking about it, wanted to try out the game a few times before :)\n\n27) Sarthobi: D G1 Sarthobi Y3 Y-3\n\twil: That makes sense...I know no better two player strategy game.   I enjoy chess, but the flavor of this is superior...games are not ever close in look or feel, and the reboot caused by catastrophes as well as the &#39;banking&#39; system is great.\n\n28) wil: Move B1 Wil G1\n\tSarthobi: When i first read the rules i wasn&#39;t sure the game had this much depth. The rules intriged me, but Playing it really changed the way i saw it.\n\n29) Sarthobi: S G2 G2\nB G2 Y-3\nB G2 Sarthobi\n\twil: John Cooper developed the most amazing game with the Looney Pyramids...  I am now learning Volcano, and Martian Chess, both good, but this is the best published game with them I know...having a set of them though is quite versatile...lots of games to play...  this one, play anywhere, no board needed...just a table.\r\n\n\twil: John Cooper developed the most amazing game with the Looney Pyramids...  I am now learning Volcano, and Martian Chess, both good, but this is the best published game with them I know...having a set of them though is quite versatile...lots of games to play...  this one, play anywhere, no board needed...just a table.\r\n\n\n30) wil: Move R1 Wil Y1\n\n31) Sarthobi: Move G2 Y-3 Y1\n\n32) wil: Move G1 Y1 Wil\n\n33) Sarthobi: Sacrifice R1 Sarthobi\nAttack R1 Y1\n\n34) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 G1\nBuild G3 Wil\n\n35) Sarthobi: Sacrifice G1 Y-3\nBuild Y3 G3\n\n36) wil: Trade Y2 R2 Wil\n\n37) Sarthobi: B R1 Y1\n\twil: Hence the banker...used exactly correctly\n\n38) wil: Discover Y1 G1 B3 B3\n\n39) Sarthobi: S Y3 G3\nM R1 Y1 Wil\nM R1 Y1 Wil\nM G2 Y1 Wil\nC Wil R\n\n40) wil: Trade G1 R1 Wil\n\n41) Sarthobi: T G2 Y2 Sarthobi\n\twil:  a little reboot... but it looks like you&#39;ve left me in decent shape...don&#39;t need that big red...\n\n42) wil: Attack G2 Wil\n\twil: one move to mate..  starship captains warning....\n\n43) Sarthobi: B B1 G3\n\twil: good job!!\n\n44) wil: Sacrifice G2 Wil\nBuild Y1 G1\nBuild Y3 B3\n\n45) Sarthobi: M B1 G3 Wil\n\tSarthobi: Thnks :p\n\n46) wil: Attack B1 Wil\n\twil: I was about ready to go to bed....should I stay up... tell me if you are going to think about a move for a while...\n\tSarthobi: You can go if you want, i have likr an hour of free time right now\n\twil: yes there is thinking to be had....I think you are one step behind...you got a good plan thou...\n\n47) Sarthobi: B B2 G3\n\tSarthobi: I think you can out menuver me no matter what move i whould have done..\r\nBut i think this might open the mist options for me..\r\nIt is a good game any way :)\n\n48) wil: Sacrifice Y3 G1\nMove B1 G1 G3\nMove B1 Wil G3\nMove Y3 B3 Sarthobi\nCatastrophe G3 B\n\n49) Sarthobi: T Y2 R2 Sarthobi\n\n50) wil: Sacrifice R1 Wil\nAttack R2 Sarthobi\n\twil: Now that, is a reboot of the universe...  \n\twil: again one move to mate...  and I don&#39;t yet see a way out...hmmmm there is another delaying tactic..\n\n51) Sarthobi: M Y1 G3 Sarthobi\n\tSarthobi: Nice move, \r\nI&#39;m stuck on a diffrent game. Both players are locked :p\r\nOn #26704\n\n52) wil: Sacrifice R2 Sarthobi\nAttack Y1 Sarthobi\nAttack G3 Sarthobi\n\twil: and nice try..  enjoyed the game... before you made your move on me...if you&#39;d have added a piece in your homeworld so you could sack your y2 and move two blues in...you&#39;d&#39;ve had the game!  \n\tSarthobi: Thanks, great game.\r\nI didnt think that move through. It was the general idea and i rushed it.\r\nOh well :)\n\twil: lol...interesting battle over there..both of you going for monopolies... he&#39;s a good player... good luck\n\n\twil: Please don&#39;t hesitate to challenge me again!\n\twil: So many moving parts with so few pieces...  learn the bluebird, monopolies, u take 1/2, I take 2/3, factory... you are a formidable foe!\n\nHomeworlds Online (SDG# 26774)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2015.1.11, Ended: 2015.1.13\nParticipants: Gungho (S), Sarthobi (N)\nWinner: Gungho\n\n1) Sarthobi: Homeworld B1 Y2 G3\n\n2) Gungho: Homeworld G3 Y1 B3\n\n3) Sarthobi: Build G1 Sarthobi\n\tGungho: Hello. Enjoy the game!\n\tGungho: Hello. Enjoy the game!\n\tGungho: Oops. Double tap. O.o\n\n4) Gungho: Build B1 Gungho\n\tSarthobi: Thanks, you too!\r\n:]\n\n5) Sarthobi: Trade G1 B1 Sarthobi\n\n6) Gungho: Trade B1 Y1 Gungho\n\n7) Sarthobi: Build G1 Sarthobi\n\n8) Gungho: Build Y1 Gungho\n\n9) Sarthobi: Sacrifice G3 Sarthobi\nBuild G1 Sarthobi\nBuild G1 Sarthobi\nBuild B1 Sarthobi\n\n10) Gungho: Build B2 Gungho\n\tGungho: That&#39;s a pretty wild move. Opened up the 2 pips for sure. Beware bigger ships getting to your HW!\n\n11) Sarthobi: Discover G1 Sarthobi B3 B3\n\n12) Gungho: Trade B3 R3 Gungho\n\tSarthobi: yeah, seems like a bad move in retro spec\n\tGungho: Someone who&#39;s better than me would know exactly what to do to take advantage of it.  I have a rough idea.  The presence of a 3 pip at HW is really important for defense in the early game.\n\n13) Sarthobi: B G2 B3\n\n14) Gungho: Discover R3 Gungho Y2 Darkcloud\n\tSarthobi: Yeah.. i&#39;m still a newb..\r\nWell i&#39;ll learn the hard way :)\n\n15) Sarthobi: T G2 Y2 B3\n\n16) Gungho: Discover R3 Darkcloud Y3 Brightlight\n\n17) Sarthobi: Build Y2 B3\n\n18) Gungho: Move R3 Brightlight Sarthobi\n\n19) Sarthobi: B Y3 B3\n\n20) Gungho: Attack G1N Sarthobi\n\n21) Sarthobi: Sacrifice Y2 B3\nDiscover Y2 B3 R2 R2\nMove Y2 R2 Gungho\nCatastrophe Gungho Y\n\n22) Gungho: Sacrifice R3 Sarthobi\nAttack G1N Sarthobi\nAttack B1N Sarthobi\nAttack B1N Sarthobi\n\tGungho: Thanks for the game. I was happy to see you get the yellow catastrophe. Next time maybe keep a big ship at your hw.  And also remember the &quot;gun rule&quot;.  If your opponent draws his gun (red ship) it&#39;s almost always a good idea to draw your own.\r\n\r\nSorry I&#39;m not a great teacher, but feel free to send me a challenge any time (rated or not)\n\tSarthobi: Thanks a lot, i didnt think about you using the sacrifice on the red ship a head of time, thought i&#39;d get to destroy the second star before you catch all my ships :]\r\n\n\n\nHomeworlds Online (SDG# 26780)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.12, Ended: 2015.1.26\nParticipants: TeeTeeTee (S), dlwillson (N)\nWinner: TeeTeeTee\n\n1) dlwillson: H Y3 B1 G3\n\n2) TeeTeeTee: Homeworld Y1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) dlwillson: Build B2 Dlwillson\n\n8) TeeTeeTee: Build B2 Teeteetee\n\n9) dlwillson: Discover B2 Dlwillson G2 Field\n\n10) TeeTeeTee: Trade B2 Y2 Teeteetee\n\n11) dlwillson: B B2 Field\n\n12) TeeTeeTee: Build B3 Teeteetee\n\n13) dlwillson: B B3 Dlwillson\n\n14) TeeTeeTee: Discover B1 Teeteetee G3 Pear\n\n15) dlwillson: Trade B1 R1 Dlwillson\n\n16) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y1 Teeteetee\nBuild B1 Teeteetee\nBuild B3 Pear\n\n17) dlwillson: Trade B2 Y2 Field\n\tdlwillson: Interesting!\n\n18) TeeTeeTee: Trade B1 R1 Teeteetee\n\n19) dlwillson: Move B2 Field Pear\n\tTeeTeeTee: It&#39;s always nice to try something different.\n\n20) TeeTeeTee: Sacrifice B1 Pear\nTrade B3 R3 Pear\n\n21) dlwillson: S Y2 Field\nD B2 Pear Y2 Sunny\nD B3 Dlwillson G2 Field\n\tdlwillson: I&#39;ll come back after work.\n\n22) TeeTeeTee: Move Y2 Teeteetee Pear\n\n23) dlwillson: B B1 Field\n\n24) TeeTeeTee: Build Y1 Pear\n\n25) dlwillson: Trade B3 Y3 Field\n\n26) TeeTeeTee: Build Y2 Pear\n\n27) dlwillson: Discover B2 Sunny Y3 Golden\n\n28) TeeTeeTee: Trade B3 G3 Teeteetee\n\n29) dlwillson: Build Y2 Field\n\n30) TeeTeeTee: Sacrifice Y2 Pear\nMove Y2 Pear Field\nMove Y1 Pear Field\nCatastrophe Field Yellow\n\n31) dlwillson: Build G1 Dlwillson\n\n32) TeeTeeTee: Build Y1 Teeteetee\n\n33) dlwillson: Trade G1 B1 Dlwillson\n\n34) TeeTeeTee: Sacrifice Y1 Teeteetee\nMove R3 Pear Field\n\n35) dlwillson: T B1 G1 Field\n\n36) TeeTeeTee: Attack G1 Field\n\n37) dlwillson: B G1 Dlwillson\n\n38) TeeTeeTee: Build Y1 Teeteetee\n\n39) dlwillson: T B2 G2 Golden\n\n40) TeeTeeTee: Build G1 Teeteetee\n\n41) dlwillson: Move G1 Dlwillson Field\n\n42) TeeTeeTee: Sacrifice Y1 Teeteetee\nMove R3 Field Golden\n\n43) dlwillson: Discover G2 Golden Y2 Sunny\n\n44) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G2 Field\nBuild G3 Teeteetee\nBuild G3 Teeteetee\nCatastrophe Field Green\n\n45) dlwillson: B G1 Dlwillson\n\n46) TeeTeeTee: Build Y1 Teeteetee\n\tdlwillson: Well. Good game. I&#39;ll play it out, if you like.\n\tTeeTeeTee: That&#39;s up to you! It&#39;d be quite reasonable to stop, here, if you think you can&#39;t make a come-back from this. (I don&#39;t believe that I&#39;ve won a game after being two large ships down, before.)\n\n\tdlwillson: I&#39;ll resign so the ladder is open to other attackers. No point wasting time. Well played.\n\twil: Helluva game guys!  I&#39;ma gonna wait... see if you can get 2short outta the woods DL\n\tTeeTeeTee: Okay, then. Thanks!\r\n\r\nI reckon that two things cost you the game, here. First was &quot;15. Build y2 field&quot;: it let me go a large ship ahead, and I was able to harrass your small and medium ships in the centre from then on. The second was to trade away your blues, starting from &quot;18. Trade b1 g1 field&quot;. At this point in the game, you had a far better grasp on the blue ships than I did, and there were lots of unbuilt b3s in the stash, which made blues very valuable. Indeed, sacrificing the g3 on this turn would have put you level with me on large ships (and you could have then sacrificed a smaller ship to prevent catastrophe on the next turn).\r\n\r\nAlso, I&#39;m probably only going to defend my ladder position for maybe one or two more games: I kind of feel like I should give Homeworlds a rest for a bit. (Or, at least, I&#39;d like to have the choice of when to accept games...)\n\twil: dang they reach the top and then retire....\r\n\n\nHomeworlds Online (SDG# 26751)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.14, Ended: 2015.3.14\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tagentofchaos: Hi have fun\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) SilentTitan: Build R2 Silenttitan\n\n8) agentofchaos: Build R2 Agentofchaos\n\n9) SilentTitan: Trade R2 Y2 Silenttitan\n\n10) agentofchaos: Trade R1 Y1 Agentofchaos\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) agentofchaos: Discover R2 Agentofchaos Y1 Hartstorm\n\n13) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n14) agentofchaos: Build Y2 Agentofchaos\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n16) agentofchaos: Discover Y1 Agentofchaos G1 Krillsol\n\n17) SilentTitan: Discover Y3 Silenttitan Y3 Soul\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) SilentTitan: Trade Y1 G1 Sol\n\n20) agentofchaos: Build Y1 Krillsol\n\n21) SilentTitan: Trade Y2 G2 Silenttitan\n\n22) agentofchaos: Build Y2 Agentofchaos\n\n23) SilentTitan: Build G2 Silenttitan\n\n24) agentofchaos: Move Y1 Krillsol Soul\n\n25) SilentTitan: Build G2 Sol\n\n26) agentofchaos: Move Y1 Krillsol Soul\nCatastrophe Soul Y\n\n27) SilentTitan: Sacrifice G2 Sol\nBuild Y1 Sol\nBuild Y1 Silenttitan\n\n28) agentofchaos: Discover Y2 Agentofchaos G1 Akastroph\n\n29) SilentTitan: Sacrifice Y2 Sol\nDiscover G2 Silenttitan Y3 Sole\nDiscover G2 Silenttitan Y3 Soul\n\n30) agentofchaos: Build Y2 Akastroph\n\n31) SilentTitan: Sacrifice G2 Soul\nBuild Y3 Sol\nBuild G2 Sol\n\n32) agentofchaos: Discover Y2 Akastroph G3 Doomclysm\n\n33) SilentTitan: Discover Y3 Sol B1 Soul\n\n34) agentofchaos: Move Y2 Akastroph Doomclysm\n\n35) SilentTitan: Sacrifice G2 Sole\nBuild Y3 Sol\nPass\n\n36) agentofchaos: M R2 Hartstorm Doomclysm\n\n37) SilentTitan: Trade Y3 G3 Silenttitan\n\n\nHomeworlds Online (SDG# 26776)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.15, Ended: 2015.1.19\nParticipants: wil (S), Sarthobi (N)\nWinner: Sarthobi\n\n1) Sarthobi: Homeworld B1 Y2 G3\n\tSarthobi: Hello again :)\n\n2) wil: Homeworld B3 Y1 G3\n\n3) Sarthobi: B G1 Sarthobi\n\n4) wil: Build G1 Wil\n\n5) Sarthobi: T G1 B1 Sarthobi\n\n6) wil: Trade G1 Y1 Wil\n\n7) Sarthobi: B B1 Sarthobi\n\n8) wil: Build Y1 Wil\n\n9) Sarthobi: D B1 Sarthobi G3 G3\n\n10) wil: Discover Y1 Wil G2 G2\n\n11) Sarthobi: B B2 G3\n\n12) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y2 Wil\nBuild Y3 G2\n\n13) Sarthobi: B B2 Sarthobi\n\twil: in this case I went for yellow because even thou you were a step ahead...there were only two drone yellows...which would allow me to jump ahead and get to queens first... we&#39;ll see how it plays out..\n\twil: a big thing in this game is...&#39;darnit...how did s/he get ahead of me?&#39;\n\n14) wil: Discover Y3 G2 B3 B3\n\tSarthobi: Yeah indeed, i learn things as i see them against me.\r\nNice\n\twil: Yes, exactly how I learned...somewhere between the third and seventh attack of the same way I began to catch on... top players still kick my butt...every time!\n\n15) Sarthobi: D B1 Sarthobi Y3 Y3\n\twil: It is easy to see the move that gets ya...it takes a bit to see the set up that allows the move..\r\n\n\n16) wil: Trade Y3 B3 B3\n\n17) Sarthobi: B G1 Sarthobi\n\twil: very weird game...love it!  \n\n18) wil: Build Y3 G2\n\n19) Sarthobi: T G3 Y3 Sarthobi\n\n20) wil: Trade Y1 G1 Wil\n\n21) Sarthobi: T B1 Y1 G3\n\n22) wil: Build G1 Wil\n\n23) Sarthobi: B G2 Sarthobi\n\n24) wil: Trade G1 R1 Wil\n\n25) Sarthobi: M Y1 G3 G2\nCatastrophe G2 Y\n\n26) wil: Trade B3 G3 B3\n\twil: what...was I blind?\r\n\n\n27) Sarthobi: B B1 G3\n\n28) wil: Build Y1 Wil\n\tSarthobi: Seems so :)\r\nGot a little lucky \n\n29) Sarthobi: B B2 G3\n\n30) wil: Discover Y1 Wil G2 G2\n\n31) Sarthobi: T B2 Y2 G3\n\n32) wil: Move Y1 G2 Y3\n\n33) Sarthobi: T G1 R1 Sarthobi\n\n34) wil: Sacrifice R1 Wil\nAttack B1 Y3\n\n35) Sarthobi: B Y1 G3\n\n36) wil: Build G1 Wil\n\n37) Sarthobi: Discover B2 G3 G2 G2\n\twil: I am playing terribly\n\n38) wil: Trade G1 R1 Wil\n\n39) Sarthobi: Build B2 G2\n\n40) wil: Discover Y1 Y3 G2 Gee2\n\n41) Sarthobi: Build G1 Sarthobi\n\n42) wil: Sacrifice G3 B3\nBuild B3 Y3\nBuild Y3 Gee2\nBuild R1 Wil\n\n43) Sarthobi: Sacrifice Y2 G3\nMove B2 G2 Wil\nMove B2 G2 Wil\n\tSarthobi: nice play.. i wonder how this effects my plan :)\n\n44) wil: Move B1 Y3 Sarthobi\n\n45) Sarthobi: Sacrifice G2 Sarthobi\nBuild B3 Wil\nBuild Y2 G3\nCatastrophe Wil B\n\twil: Nice plan...let us see how she plays out...\n\tSarthobi: i dont think you can stop it, at least not with out a huge lose on your side\n\n46) wil: Sacrifice Y3 Gee2\nMove Y1 Gee2 Y3\nMove B3 Y3 Sarthobi\n\nMove Y1 Y3 Sarthobi\nCatastrophe Sarthobi B\n\twil: you got me by one I think...\r\n\n\twil: nope...you got me by a glitch in the system!!  darnitall...  \r\n\r\ns y3 gee2\r\nm b3 y3 sarthobi\r\nc sarthobi b\r\nm y1 gee2 sarthobi\r\nm y1 wil sarthobi\r\nc sarthobi y\r\n\r\n\n\n47) Sarthobi: S Y3 Sarthobi\nM Y2 G3 Wil\nM Y1 G3 Wil\nPass\nC Wil Y\n\twil: good game!\n\twil: good game!\n\tSarthobi: Great game :)\r\nThanks!\n\n\nHomeworlds Online (SDG# 26791)\nVariants: &quot;Unrated&quot;\nStarted: 2015.1.15, Ended: 2015.2.18\nParticipants: wil (S), sounde (N)\nWinner: sounde\n\n1) sounde: Homeworld Y1 B3 G3\n\n2) wil: Homeworld B2 Y3 G3\n\tsounde: Haven&#39;t played this in years. Hope I still offer some amount of challenge.\n\twil: I like the game....we&#39;ll see about a challenge...\n\n3) sounde: Build G1 Sounde\n\n4) wil: Build G1 Wil\n\twil: Where did you play?  Here?\n\n5) sounde: Trade G1 Y1 Sounde\n\n6) wil: Trade G1 Y1 Wil\n\tsounde: Yeah. I also own a set of pyramids, but haven&#39;t played in person in a long time.\n\n7) sounde: Build Y2 Sounde\n\twil: cool.... I prefer this over chess now...  Although I have more folks that will play chess...  and seems chess folks get leery of learning something they may like better than chess...\n\tsounde: Ha hah. This is chessy in some ways and yeah... chess folks seem to get stuck in chess.\n\n8) wil: Build Y2 Wil\n\twil: intragalactic war game instead of land based... \n\n9) sounde: Discover Y2 Sounde G2 Sissa\n\n10) wil: Trade Y1 R1 Wil\n\n11) sounde: Trade Y1 R1 Sounde\n\n12) wil: Build G1 Wil\n\n13) sounde: Build G1 Sounde\n\tsounde: How long have you been playing?\n\n14) wil: Trade G1 B1 Wil\n\twil: It says first game march 2013... almost two years, and almost 200 games...  hmmm  that would be about 2 games a week...  I lost a lot while learning....\n\n15) sounde: Build Y1 Sissa\n\n16) wil: Discover Y2 Wil G1 G1\n\n17) sounde: Discover Y2 Sissa B1 Huin\n\n18) wil: Build B1 Wil\n\n19) sounde: Trade Y2 G2 Huin\n\n20) wil: Move B1 Wil G1\n\n21) sounde: Sacrifice G3 Sounde\nBuild G1 Huin\nBuild G2 Huin\nBuild G3 Sounde\n\n22) wil: Build G3 Wil\n\n23) sounde: Trade G2 Y2 Huin\n\n24) wil: Discover G3 Wil Y1 Y1\n\n25) sounde: Sacrifice Y2 Huin\nMove G1 Huin Wil\nMove G2 Huin Wil\n\n26) wil: Trade G3 Y3 Wil\n\n27) sounde: Trade G2 Y2 Wil\n\n28) wil: Trade Y3 R3 Wil\n\n29) sounde: Sacrifice G3 Sounde\nBuild G2 Wil\nBuild G2 Wil\nBuild G3 Sounde\n\twil: did that wrong last time...  coulda stopped ya from being such a pest..\n\n30) wil: Move G3 Y1 Wil\nCatastrophe Wil G\n\tsounde: nuisancing!\n\tsounde: i&#39;m relearning how some of these things play out. may be a bit too bold, but it&#39;s all process. :)\n\twil: no, it is great...I agree, I lost so many games, correct that lose so many games, by experimentation, but there are lessons to be learned...\n\n31) sounde: Discover Y2 Wil G1 Huin\n\n32) wil: Trade R3 G3 Wil\n\n33) sounde: Build G2 Sounde\n\n34) wil: Build B1 G1\n\n35) sounde: Discover G2 Sounde B2 Tra\n\n36) wil: Discover B1 G1 G3 G3\n\n37) sounde: Sacrifice G3 Sounde\nBuild G2 Tra\nBuild G3 Sounde\nBuild Y1 Huin\n\n38) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B3 Wil\nBuild B3 G1\n\n39) sounde: Sacrifice G3 Sounde\nBuild G3 Sounde\nBuild G3 Tra\nBuild Y2 Huin\n\n40) wil: Build Y3 G1\n\tsounde: i&#39;m probably in some trouble now with the blue lock-out. i remember that being problematic.\n\n41) sounde: Sacrifice Y2 Huin\nMove G3 Tra G3\nDiscover G2 Tra R1 Dorst\n\twil: it could be...but you&#39;ve got greens..any monopoly is an issue...\n\n42) wil: Move B3 G1 Tra\n\n43) sounde: Sacrifice G2 Tra\nBuild G2 Dorst\nBuild Y2 Sissa\n\twil: so we&#39;ll end both monopolies with a prisoner exchange...\n\n44) wil: Trade B3 Y3 Tra\n\tsounde: nah.\n\n45) sounde: Build R2 Sounde\n\n46) wil: Build B3 G1\n\n47) sounde: Sacrifice R1 Sounde\nAttack B2 G3\n\n48) wil: Move B1 G1 G3\n\n49) sounde: Sacrifice B2 G3\nTrade G2 B2 Dorst\nTrade Y1 R1 Huin\n\n50) wil: Trade Y2 R2 G1\n\tsounde: thanks for the patience\n\n51) sounde: Sacrifice G3 G3\nBuild G2 Sounde\nBuild G3 Dorst\nBuild R2 Huin\n\n52) wil: Build R3 G1\n\n53) sounde: Sacrifice Y2 Sissa\nMove G3 Dorst Wil\nMove B2 Dorst Wil\nCatastrophe Wil B\n\twil: de nada.... the game gives you a length of time to play.. sometimes we play rapidly, sometimes life gets in the way...\n\n54) wil: S Y3 G1\nM B3 G1 Wil\nM R2 G1 Wil\nM Y3 Tra Sounde\n\tsounde: i almost feel like that was a trap, but i don&#39;t really see how you can recover....\n\tsounde: oh... there&#39;s a way you can live a little longer... but not sure it saves you\n\tsounde: well yeah.... the game reminds me why it is so good.... things are never as simple as they seem\n\n55) sounde: Sacrifice R2 Huin\nAttack B3 Wil\nAttack Y3 Sounde\n\n\twil: Good game \r\n\n\nHomeworlds Online (SDG# 26788)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.15, Ended: 2015.2.16\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: oops?  what have I done? challenged you twice... my bad...I am up for simultaneous games to see where they go... but will resign from one if you wish...\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 B1 Wil\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) wil: Build B2 Wil\n\twil: interesting theme...\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Trade B2 Y2 Wil\n\n10) SilentTitan: Trade B1 Y1 Silenttitan\n\n11) wil: Build Y1 Wil\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) wil: Discover Y1 Wil G3 G3\n\n14) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n15) wil: Build Y2 Wil\n\n16) SilentTitan: Build G1 Silenttitan\n\n17) wil: Trade Y2 R2 Wil\n\n18) SilentTitan: Build Y2 Silenttitan\n\n19) wil: Build Y2 G3\n\n20) SilentTitan: Build Y3 Sol\n\n21) wil: Build Y3 Wil\n\n22) SilentTitan: Discover Y1 Sol B3 Soul\n\n23) wil: Discover R2 Wil Y3 Y3\n\n24) SilentTitan: Trade Y1 R1 Silenttitan\n\n25) wil: Build G1 Wil\n\n26) SilentTitan: Build Y1 Sol\n\n27) wil: Move G1 Wil Y3\n\n28) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y3 R3 Sol\nTrade G1 B1 Silenttitan\n\n29) wil: Discover B1 Wil Y3 Why3\n\n30) SilentTitan: Move R3 Sol Y3\n\n31) wil: Build R1 Y3\n\n32) SilentTitan: Attack G1 Y3 North\n\twil: shoo\n\tSilentTitan: Omg. I actually laughed out loud.\n\n33) wil: Sacrifice G3 Wil\nBuild R1 Y3\nBuild B2 Why3\nBuild B2 Why3\nCatastrophe Y3 R\n\n34) SilentTitan: Sacrifice G1 Y3\nBuild Y3 Soul\n\n35) wil: Sacrifice B2 Why3\nTrade B2 G2 Why3\nTrade Y2 G2 Wil\n\n36) SilentTitan: Trade Y1 G1 Soul\n\n37) wil: Build B2 Why3\n\n38) SilentTitan: Discover B1 Silenttitan Y1 Sole\n\n39) wil: Trade B2 R2 Why3\n\n40) SilentTitan: Build G1 Silenttitan\n\n41) wil: Build Y2 Wil\n\n\nHomeworlds Online (SDG# 26793)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.15, Ended: 2015.1.30\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld Y2 B3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 B1 Wil\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\tSilentTitan: On a theme here are we\n\n7) wil: Build B2 Wil\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Trade B2 Y2 Wil\n\n10) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n11) wil: Discover B1 Wil G3 G3\n\n12) SilentTitan: Build B2 Sol\n\n13) wil: Build B2 G3\n\n14) SilentTitan: Trade B1 Y1 Sol\n\n15) wil: Trade B1 R1 G3\n\n16) SilentTitan: Trade Y1 R1 Sol\n\n17) wil: Build Y1 Wil\n\n18) SilentTitan: Build B1 Sol\n\n19) wil: Build B1 G3\n\n20) SilentTitan: Trade B1 Y1 Sol\n\n21) wil: Move Y1 Wil G3\n\n22) SilentTitan: Build B1 Sol\n\n23) wil: Discover B1 G3 R1 R1\n\n24) SilentTitan: Discover B2 Sol Y3 Soul\n\n25) wil: Build B3 G3\n\n26) SilentTitan: Build B3 Sol\n\n27) wil: Trade B3 Y3 G3\n\n\tSilentTitan: Good game. Well played\n\twil: Wow, I wasn&#39;t positive I could execute an ending...\n\twil: I did like watching the two games side by side though..intriguing.   I think an interesting tourney would be everyone playing from the same midgame situation....\n\nHomeworlds Online (SDG# 26794)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.15, Ended: 2015.2.1\nParticipants: SilentTitan (S), Gungho (N)\nWinner: SilentTitan\n\n1) Gungho: Homeworld G3 Y1 B3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\tGungho: Hello.  Have fun. \n\tSilentTitan: You as well\n\n3) Gungho: Build B1 Gungho\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Gungho: Build B1 Gungho\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Gungho: Discover B1 Gungho G2 Mold\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Gungho: Build B1 Mold\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) Gungho: Build B2 Mold\n\n12) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n\nHomeworlds Online (SDG# 26773)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.16, Ended: 2015.2.23\nParticipants: agentofchaos (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) wil: Build G1 Wil\n\twil: thx for the game...I my old housemate and I kept a game of hw going almost continuously....like here...when someone walked by and looked at it...they&#39;d move...and whenever the other looked at it...they&#39;d move...  I miss that.\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) wil: Trade G1 Y1 Wil\n\tagentofchaos: Sounds like it was a fun arrangement \n\twil: Made me just talk to my new housemate of his need to learn homeworlds..\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) wil: Discover Y1 Wil G2 G2\n\tagentofchaos: Definitely a skill worth learning!\n\n8) agentofchaos: Discover Y1 Agentofchaos G1 Hartax\n\n9) wil: Build G1 Wil\n\n10) agentofchaos: Build Y2 Hartax\n\n11) wil: Build Y2 G2\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) wil: Trade G1 R1 Wil\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\n15) wil: Discover Y1 G2 B1 B1\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) wil: Build Y2 G2\n\n18) agentofchaos: Move Y1 Hartax Agentofchaos\n\n19) wil: Sacrifice G3 Wil\nBuild Y3 B1\nBuild Y3 B1\nBuild Y3 G2\n\n20) agentofchaos: Trade G1 B1 Agentofchaos\n\n21) wil: Trade Y1 B1 B1\n\n22) agentofchaos: Build Y1 Hartax\n\n23) wil: Move Y3 G2 Wil\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) wil: Move B1 B1 G2\n\n26) agentofchaos: Build G1 Agentofchaos\n\n27) wil: Build B2 G2\n\n28) agentofchaos: Move R1 Agentofchaos Hartax\n\n29) wil: Trade Y2 R2 G2\n\n30) agentofchaos: Build Y2 Agentofchaos\n\twil: And now i gotta do it!\n\n31) wil: Trade B2 G2 G2\n\tagentofchaos: It&#39;s an arms race!\n\n32) agentofchaos: Trade G1 R1 Agentofchaos\n\twil: I couldn&#39;t even win a foot race...\n\n33) wil: Trade Y3 G3 Wil\n\n34) agentofchaos: Move B1 Agentofchaos Hartax\n\n35) wil: Build Y3 G2\n\n36) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y1 Hartax G2\nMove Y2 Hartax G2\nCatastrophe G2 Y\n\n37) wil: Build G1 Wil\n\n38) agentofchaos: Build B2 Hartax\n\n39) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 G2\n\n40) agentofchaos: Build R2 Hartax\n\n41) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Wil\nBuild R3 G2\n\n\nHomeworlds Online (SDG# 26802)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.17, Ended: 2015.1.18\nParticipants: wil (S), Gungho (N)\nWinner: Gungho\n\n1) Gungho: Homeworld G2 Y2 B3 *\n\n2) wil: Homeworld Y3 G1 R3 *\n\tGungho: And now for something completely different.\r\n(I have never tried any of the obscure homeworlds.)\n\twil: a short homeworld??  really??\n\n3) Gungho: Build B1 Gungho\n\twil: I sir shall be equally silly...\n\n4) wil: Build R1 Wil\n\n5) Gungho: Trade B1 R1 Gungho\n\n6) wil: Discover R1 Wil B2 B2\n\n7) Gungho: Build R1 Gungho\n\n8) wil: Build R2 Wil\n\n9) Gungho: Move R1 Gungho Wil\n\n10) wil: Build R2 Wil\nCatastrophe Wil R\n\twil: yup...we&#39;ll have to play another real game..\n\tGungho: For sure\n\n\nHomeworlds Online (SDG# 26821)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.17, Ended: 2015.2.6\nParticipants: agentofchaos (S), Gungho (N)\nWinner: agentofchaos\n\n1) Gungho: Homeworld G3 Y1 B3\n\tGungho: Thanks for accepting. Have fun!\n\n2) agentofchaos: Homeworld B1 R2 G3\n\n3) Gungho: Build B1 Gungho\n\tagentofchaos: Thanks for the challenge! Enjoy!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Gungho: Build B1 Gungho\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) Gungho: Discover B1 Gungho G2 Mold\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) Gungho: Build B2 Mold\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) Gungho: Trade B2 Y2 Mold\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) Gungho: Build B2 Mold\n\n14) agentofchaos: Trade Y2 B2 Agentofchaos\n\n15) Gungho: Discover B2 Mold Y3 Taffy\n\n16) agentofchaos: Discover Y1 Agentofchaos G3 Holdgar\n\n17) Gungho: Build B2 Mold\n\n18) agentofchaos: Move B2 Agentofchaos Holdgar\n\n19) Gungho: Build B3 Gungho\n\n20) agentofchaos: Build B3 Holdgar\n\n\nHomeworlds Online (SDG# 26838)\nVariants: &quot;Hard time&quot;\nStarted: 2015.1.20, Ended: 2015.1.27\nParticipants: mneme (S), ajo (N)\nWinner: mneme\n\n1) ajo: Homeworld B2 R3 G3\n\n2) mneme: Homeworld R1 G3 B3\n\tajo: Wow, it&#39;s been a loooong time. I should be easy prey. :)\n\tmneme: :)  I&#39;ve mostly been retired for a bit, though I did play a couple of games recently.\n\n3) ajo: Build G1 Ajo\n\n4) mneme: Build B1 Mneme\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) mneme: Trade B1 Y1 Mneme\n\n7) ajo: Build G1 Ajo\n\n8) mneme: Build B1 Mneme\n\n9) ajo: Trade G3 B3 Ajo\n\n10) mneme: Trade B1 R1 Mneme\n\n11) ajo: Build B1 Ajo\n\n12) mneme: Build R1 Mneme\n\n13) ajo: Discover B1 Ajo G1 Alpha\n\n14) mneme: Discover R1 Mneme Y2 Hester\n\n15) ajo: Build G1 Ajo\n\n16) mneme: Build R2 Mneme\n\n17) ajo: Build G2 Ajo\n\n18) mneme: Trade R2 G2 Mneme\n\n19) ajo: Move G2 Ajo Alpha\n\n20) mneme: Move G2 Mneme Hester\n\n21) ajo: Trade G2 R2 Alpha\n\n22) mneme: Build R2 Hester\n\n23) ajo: Build R2 Alpha\n\n24) mneme: Build R3 Mneme\n\n25) ajo: Trade R2 Y2 Alpha\n\n26) mneme: Trade R3 Y3 Mneme\n\n27) ajo: Build R2 Alpha\n\n28) mneme: Discover R1 Hester R3 Andromeda\n\n29) ajo: Trade R2 Y2 Alpha\n\n30) mneme: Sacrifice G2 Hester\nBuild R2 Andromeda\nBuild R3 Hester\n\n31) ajo: Move R2 Alpha Andromeda\nCatastrophe Andromeda Red\n\n32) mneme: Move R3 Hester Alpha\n\n33) ajo: Sacrifice Y2 Alpha\nDiscover Y2 Alpha G2 Gamma\nMove B1 Alpha Gamma\n\n34) mneme: Move B3 Mneme Gamma\n\n35) ajo: Build G2 Ajo\n\n36) mneme: Sacrifice R2 Hester\nAttack Y2 Gamma\nAttack B1 Gamma\n\n37) ajo: Discover G1 Ajo B1 Beta\n\n38) mneme: Move B3 Gamma Beta\n\n39) ajo: Discover G2 Ajo B1 Delta\n\n40) mneme: Sacrifice B1 Gamma\nTrade Y3 R3 Mneme\n\n41) ajo: Build G2 Ajo\n\n42) mneme: Sacrifice Y2 Gamma\nMove R3 Alpha Ajo\nMove B3 Beta Ajo\n\n43) ajo: Attack R3 Ajo\n\tajo: I&#39;m almost inclined to resign at this point... you&#39;re pretty far ahead.\n\n44) mneme: Sacrifice R3 Mneme\nAttack R3 Ajo\nAttack B3 Ajo\nAttack G2 Ajo\n\n\tmneme: It would probably have made the pain easier. :)\n\tmneme: I probably spent a few extra turns on the kill, actually, since I could have done more or less the same kill on the turn I sacced my first r2.  But it was (a bit) safer to retrench first.\n\tajo: I could drag it out one more turn, but that&#39;s all. :) Good game.\n\tmneme: yes, it was, thanks.\n\nHomeworlds Online (SDG# 26852)\nStarted: 2015.1.22, Ended: 2015.7.29\nParticipants: Gungho (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B3 G3\n\tGungho: Hello again! Enjoy the game.\n\tmneme: You too!\n\n2) Gungho: Homeworld G2 Y1 B3\n\n3) mneme: Build G1 Mneme\n\n4) Gungho: Build B1 Gungho\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Gungho: Trade B1 R1 Gungho\n\n7) mneme: Build Y1 Mneme\n\n8) Gungho: Build R1 Gungho\n\n9) mneme: Build Y2 Mneme\n\n10) Gungho: Build R2 Gungho\n\n11) mneme: Trade Y2 R2 Mneme\n\n12) Gungho: Trade R1 G1 Gungho\n\n13) mneme: Build Y2 Mneme\n\n14) Gungho: Discover G1 Gungho B3 Bflat\n\n15) mneme: Discover Y2 Mneme B2 Eris\n\n16) Gungho: Trade R2 Y2 Gungho\n\n17) mneme: Sacrifice G3 Mneme\nBuild Y2 Eris\nBuild Y3 Eris\nBuild Y3 Mneme\n\n18) Gungho: Move Y2 Gungho Bflat\n\n19) mneme: Trade Y2 G2 Eris\n\n20) Gungho: Build Y2 Bflat\n\n21) mneme: Trade Y1 G1 Mneme\n\n22) Gungho: Build G1 Bflat\n\n23) mneme: Discover Y3 Eris G3 Clotho\n\n24) Gungho: Trade G1 R1 Bflat\n\n25) mneme: Sacrifice G2 Eris\nBuild Y1 Clotho\nBuild Y3 Eris\n\n26) Gungho: Build R2 Bflat\n\tGungho: Oh man. Tough choices ahead. :)\n\n27) mneme: Trade Y3 G3 Eris\n\tmneme: Yeah.  I played a lot more aggressively this time.\n\n28) Gungho: Discover R2 Bflat G2 Myohmy\n\n29) mneme: Move R2 Mneme Eris\n\n30) Gungho: Trade B3 G3 Gungho\n\n31) mneme: Sacrifice Y2 Eris\nMove G3 Eris Bflat\nMove Y3 Clotho Myohmy\n\n\tmneme: You going to finish this?\n\nHomeworlds Online (SDG# 26892)\nVariants: &quot;Hard time&quot;\nStarted: 2015.2.3, Ended: 2015.2.7\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: So since no one challenged ttt, you or me...I thought I&#39;d give them another chance while we play a game to determine that it will be you to challenge that top again...\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: Build Y1 Dlwillson\n\twil: I just can&#39;t be conventional...\n\tdlwillson: :-)\r\n\r\nI&#39;m glad you have such confidence! I&#39;m so busy right now, but I want to study his games. I think I&#39;ve figured out my bad pattern.\n\n8) wil: Build B1 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) dlwillson: B Y2 Field\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n13) dlwillson: Discover Y2 Field B3 Sky\n\n14) wil: Trade B3 Y3 Wil\n\n15) dlwillson: M Y2 Sky Wil\n\n16) wil: Trade Y3 R3 Wil\n\twil: I still play by the seat of my pants...making the same mistakes often..\n\n17) dlwillson: D Y2 Wil B3 Sky\n\n18) wil: Trade R3 G3 Wil\n\tdlwillson: Actually, I think I made a mistake. Dunno, we&#39;ll see.\n\n19) dlwillson: Build G1 Dlwillson\n\n20) wil: Build B3 Wil\n\twil: b b3 wil\n\n21) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Field\nBuild Y2 Sky\nBuild Y3 Sky\n\twil: helps if I put the input info in the right place\n\n22) wil: Trade B2 R2 Y3\n\twil: and why did i not see that potential?\n\n23) dlwillson: T Y3 R3 Sky\n\n24) wil: Discover B3 Wil G3 G3\n\n25) dlwillson: B Y3 Field\n\n26) wil: Build B2 G3\n\n27) dlwillson: S Y2 Field\nM Y3 Field Sky\nM Y3 Sky Wil\n\n28) wil: Sacrifice R2 Y3\nAttack Y3 Wil\nPass\n\twil: nice\n\twil: I&#39;m blind...I don&#39;t deserve another shot at the top!  Go for it!\n\twil: but first\n\n29) dlwillson: M R3 Sky Wil\n\twil: is there a hole in your plan?  \n\n30) wil: Trade B3 R3 G3\n\tdlwillson: Probably. We&#39;ll see.\n\n31) dlwillson: M R3 Wil Y3\n\twil: now shoo\n\n32) wil: Sacrifice Y3 Wil\nMove G3 Wil Y3\nMove G3 Y3 Field\nMove G3 Field Dlwillson\n\n\twil: now if you weren&#39;t so menacing with that big red attack craft I may not have seen... this (and still am not sure it is right)\r\n\n\tTeeTeeTee: Impressive!\n\tdlwillson: Very well done! :-)\n\twil: I did not see that coming... I didn&#39;t see you coming, I didn&#39;t see my way out....I was just about to resign when I thought I saw a possible window...I never saw how it could all play out..\n\nHomeworlds Online (SDG# 26916)\nVariants: &quot;Hard time&quot;\nStarted: 2015.2.6, Ended: 2015.2.9\nParticipants: Subhan64 (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 26911)\nVariants: &quot;Hard time&quot;\nStarted: 2015.2.6, Ended: 2015.3.2\nParticipants: TeeTeeTee (S), SilentTitan (N)\nWinner: TeeTeeTee\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) TeeTeeTee: Build B1 Teeteetee\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) TeeTeeTee: Discover B1 Teeteetee G2 Alice\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B2 Alice\nBuild B2 Alice\nBuild B3 Teeteetee\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n14) TeeTeeTee: Trade B3 G3 Teeteetee\n\n15) SilentTitan: Sacrifice Y2 Sol\nDiscover Y1 Silenttitan B3 Soul\nDiscover Y1 Silenttitan B3 Sole\n\tTeeTeeTee: Quirky\n\n16) TeeTeeTee: Trade B2 Y2 Alice\n\n17) SilentTitan: Trade Y1 G1 Sol\n\n18) TeeTeeTee: Build B2 Teeteetee\n\n19) SilentTitan: Build Y1 Sol\n\n20) TeeTeeTee: Sacrifice Y2 Alice\nMove G3 Teeteetee Alice\nDiscover G3 Alice Y3 Bob\n\n\tTeeTeeTee: I guess it only takes one yellow ship to break the blockade. Also, I think that if you&#39;d traded your y2 for a green ship instead of the y1, you&#39;d have been able to get your large ship back... \r\nThanks for the game!\n\tSilentTitan: Oh... Good points.  Thanks for the game. \n\nHomeworlds Online (SDG# 27000)\nVariants: &quot;Unrated&quot;\nStarted: 2015.2.18, Ended: 2015.3.22\nParticipants: wil (S), sounde (N)\nWinner: wil\n\n1) sounde: Homeworld Y3 B1 G3\n\twil: thanx for the rematch...i was blindsided last time...didn&#39;t see the danger...good job taking advantage of it...and then I blew it on my response!\n\tsounde: you&#39;ll get me this time :)\n\n2) wil: Homeworld B2 Y1 G3\n\twil: we&#39;ll see...and I agree with your last sentiment...the game is ALWAYS different, and always new, and watching a game reboot through catastrophes and attacks is so interesting...\n\n3) sounde: Build G1 Sounde\n\n4) wil: Build G1 Wil\n\tsounde: yeah - it&#39;s all push pull push pull\n\n5) sounde: Trade G1 Y1 Sounde\n\n6) wil: Trade G1 Y1 Wil\n\n7) sounde: Build G1 Sounde\n\n8) wil: Build Y2 Wil\n\n9) sounde: Build Y2 Sounde\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) sounde: Trade Y2 R2 Sounde\n\n12) wil: B Y2 Wil\n\n13) sounde: Discover Y1 Sounde B2 Willow\n\n14) wil: T Y2 R2 Wil\n\n15) sounde: Move G1 Sounde Willow\n\n16) wil: Build Y2 Wil\n\n17) sounde: Build R1 Sounde\n\n18) wil: Discover Y2 Wil B3 B3\n\n19) sounde: Build G1 Sounde\n\n20) wil: Build R1 Wil\n\n21) sounde: Move R1 Sounde Willow\n\n22) wil: Move Y2 B3 Willow\n\n23) sounde: Sacrifice G3 Sounde\nBuild R1 Willow\nBuild R2 Sounde\nBuild R3 Sounde\n\twil: our transportation ship is looking for a fueling station...\n\tsounde: that sounds potentially catastrophic\n\n24) wil: Build R3 Wil\n\tsounde: i seem to be off on some weird side-quest... not sure what I&#39;m aiming for\r\n\n\n25) sounde: Trade R3 G3 Sounde\n\twil: All I can think is there a trap I can&#39;t see...\n\n26) wil: Sacrifice R3 Wil\nAttack R1 Willow\nAttack R1 Willow\nAttack Y1 Willow\n\n27) sounde: Sacrifice R2 Sounde\nAttack Y1 Willow\nAttack R1 Willow\n\n28) wil: Attack R1 Willow\n\n29) sounde: Build G1 Willow\n\n30) wil: Sacrifice R2 Wil\nAttack G1 Willow\n\nAttack G1 Willow\n\n\nHomeworlds Online (SDG# 26999)\nVariants: &quot;Hard time&quot;\nStarted: 2015.2.18, Ended: 2015.2.28\nParticipants: Aristos (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) Aristos: Homeworld G3 B1 Y3\n\n3) fogus: Build G1 Fogus\n\n4) Aristos: Build Y1 Aristos\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) Aristos: Trade Y1 B1 Aristos\n\n7) fogus: Build G1 Fogus\n\n8) Aristos: Build B2 Aristos\n\n9) fogus: Build Y1 Fogus\n\n10) Aristos: Discover B2 Aristos G2 Boing\n\n11) fogus: Build G1 Fogus\n\n12) Aristos: Build B2 Boing\n\n13) fogus: Trade Y1 R1 Fogus\n\n14) Aristos: Build B2 Aristos\n\n15) fogus: Discover G1 Fogus B3 Kismet\n\n16) Aristos: Build B3 Boing\n\n17) fogus: Build Y1 Fogus\n\n18) Aristos: Discover B1 Aristos R2 Pop\n\n19) fogus: Build G1 Kismet\n\n20) Aristos: Trade B2 Y2 Boing\n\n21) fogus: Build G2 Fogus\n\n22) Aristos: Sacrifice Y3 Aristos\nMove Y2 Boing Kismet\nMove Y2 Kismet Fogus\nDiscover B2 Boing G3 Whack\nCatastrophe Fogus Yellow\n\n23) fogus: Trade G2 Y2 Fogus\n\n24) Aristos: Build B2 Aristos\n\n25) fogus: Trade G3 R3 Fogus\n\tAristos: Sorry for the undo/redos. I don&#39;t have a physical set of these to model with, and sometimes I have to make the move and then tweak it to see the strategy I really want. I try to always undo right away after grabbing a screenshot to avoid you thinking it&#39;s really your turn. \n\n26) Aristos: Sacrifice B2 Aristos\nTrade B3 R3 Boing\nTrade B2 Y2 Whack\n\tfogus: No worries at all.  I missed that in any case. :)\n\n27) fogus: Sacrifice Y2 Fogus\nMove R3 Fogus Pop\nMove R3 Pop Aristos\n\n\tAristos: Oh. I forgot you could now jump straight there. DOH. \n\tfogus: Thank you for the game.  I was really sweating after you destroyed my star!\n\nHomeworlds Online (SDG# 27021)\nVariants: &quot;Hard time&quot;\nStarted: 2015.2.21, Ended: 2015.4.18\nParticipants: Grosseteste (S), Remneb (N)\nWinner: Grosseteste\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Grosseteste: H B1 Y3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) Grosseteste: B G1 Grosseteste\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) Grosseteste: B G1 Grosseteste\n\n7) Remneb: Build Y1 Remneb\n\n8) Grosseteste: D G1 Grosseteste B2 Lucy\n\n9) Remneb: Discover Y1 Remneb G3 Thor\n\n10) Grosseteste: T G1 B1 Grosseteste\n\n11) Remneb: Build G1 Remneb\n\n\n12) Grosseteste: D B1 Grosseteste G2 Linus\n\n13) Remneb: Move G1 Remneb Thor\n\n14) Grosseteste: B G1 Grosseteste\n\n15) Remneb: Build G2 Remneb\n\n16) Grosseteste: B G2 Lucy\n\n17) Remneb: Move G1 Thor Linus\n\n18) Grosseteste: T G1 R1 Grosseteste\n\n19) Remneb: Sacrifice G2 Remneb\nBuild Y1 Thor\nBuild Y2 Remneb\n\n20) Grosseteste: Build G1 Grosseteste\n\n21) Remneb: Build G2 Remneb\n\n22) Grosseteste: T G1 B1 Grosseteste\n\n23) Remneb: Trade G2 R2 Remneb\n\n24) Grosseteste: Sacrifice G3 Grosseteste\nBuild B2 Linus\nBuild B3 Linus\nBuild B3 Grosseteste\n\n25) Remneb: Discover Y1 Remneb B3 Roma\n\n26) Grosseteste: Trade B3 G3 Grosseteste\n\n27) Remneb: Sacrifice Y1 Thor\nMove G1 Linus Thor\n\n\n28) Grosseteste: B B3 Grosseteste\n\n29) Remneb: Build G1 Remneb\n\n30) Grosseteste: T B3 Y3 Linus\n\n31) Remneb: Move G1 Remneb Roma\n\n32) Grosseteste: B B3 Linus\n\n33) Remneb: Move G1 Roma Lucy\n\n34) Grosseteste: B G2 Grosseteste\n\n35) Remneb: Move G1 Thor Lucy\nCatastrophe Lucy G\n\n36) Grosseteste: S Y3 Linus\nD B3 Linus Y3 Rerun\nM B2 Linus Rerun\nM B1 Linus Rerun\n\n37) Remneb: Trade R2 B2 Remneb\n\n38) Grosseteste: M B3 Rerun Remneb\n\n39) Remneb: Attack B3 Remneb\n\n40) Grosseteste: M B1 Rerun Remneb\nC Remneb Blue\n\n41) Remneb: Build G1 Remneb\n\n42) Grosseteste: T B2 R2 Rerun\n\n43) Remneb: Trade Y1 B1 Roma\n\n44) Grosseteste: T B3 Y3 Grosseteste\n\n45) Remneb: Discover Y1 Thor G2 Rem\n\n46) Grosseteste: S Y3 Grosseteste\nM R2 Rerun Remneb\nM R1 Grosseteste Rem\nM R1 Rem Remneb\n\n47) Remneb: Attack R2 Remneb\n\n48) Grosseteste: S G2 Grosseteste\nB R1 Remneb\nP\nC Remneb Red\n\n\tGrosseteste: Good game, thanks!\n\tRemneb: Thanks.\n\nHomeworlds Online (SDG# 27037)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2015.2.23, Ended: 2015.4.5\nParticipants: hellajoey (S), Grissom (N)\nWinner: Grissom\n\n1) Grissom: Homeworld B3 R2 G3\n\n2) hellajoey: Homeworld B1 G2 R3\n\n3) Grissom: Build G1 Grissom\n\n4) hellajoey: Build R1 Hellajoey\n\n5) Grissom: Trade G1 Y1 Grissom\n\n6) hellajoey: Trade R1 Y1 Hellajoey\n\n7) Grissom: Build G1 Grissom\n\n8) hellajoey: Build R1 Hellajoey\n\n9) Grissom: Discover G1 Grissom B1 Star\n\n10) hellajoey: Discover R3 Hellajoey Y3 Goldstar\n\n11) Grissom: Build G1 Grissom\n\n12) hellajoey: Move R3 Goldstar Star\n\n13) Grissom: Trade G1 R1 Star\n\n14) hellajoey: Attack R1 Star\n\n15) Grissom: Discover G1 Grissom B1 Newblu\n\n16) hellajoey: Trade R3 G3 Star\n\n17) Grissom: Build G1 Newblu\n\n18) hellajoey: Build R1 Hellajoey\n\n19) Grissom: Trade G1 Y1 Newblu\n\n20) hellajoey: Build R2 Hellajoey\n\n21) Grissom: Build G1 Grissom\n\n22) hellajoey: Discover R2 Hellajoey Y3 Planetx\n\n23) Grissom: Build Y2 Newblu\n\n24) hellajoey: Move R2 Planetx Newblu\n\n25) Grissom: Sacrifice Y2 Newblu\nDiscover Y1 Newblu R3 Bigred\nMove G1 Newblu Bigred\n\n26) hellajoey: Sacrifice G3 Star\nBuild R2 Star\nBuild R3 Newblu\nBuild R3 Hellajoey\n\n27) Grissom: Build Y2 Bigred\n\n28) hellajoey: Trade R3 Y3 Newblu\n\n29) Grissom: Build Y2 Grissom\n\n30) hellajoey: Trade R2 G2 Star\n\n31) Grissom: Discover Y1 Grissom G1 Missinglink\n\n32) hellajoey: Build R2 Star\n\n33) Grissom: Sacrifice G3 Grissom\nBuild G2 Bigred\nBuild G3 Bigred\nBuild G3 Grissom\n\n34) hellajoey: Sacrifice Y1 Hellajoey\nMove G2 Star Bigred\nCatastrophe Bigred Green\n\n35) Grissom: Sacrifice G3 Grissom\nBuild Y1 Bigred\nBuild Y2 Missinglink\nBuild Y3 Grissom\n\n36) hellajoey: Trade R3 Y3 Hellajoey\n\n37) Grissom: Trade Y3 G3 Grissom\n\n38) hellajoey: Move Y3 Hellajoey Bigred\nCatastrophe Bigred Yellow\n\n39) Grissom: Discover Y2 Missinglink B3 Spot\n\n40) hellajoey: Trade R2 G2 Star\n\n41) Grissom: Trade Y2 R2 Spot\n\n42) hellajoey: Move Y3 Newblu Spot\n\n43) Grissom: Sacrifice Y1 Missinglink\nMove R2 Spot Hellajoey\n\n44) hellajoey: Move Y3 Spot Hellajoey\n\n45) Grissom: Build R3 Hellajoey\nCatastrophe Hellajoey Red\n\n46) hellajoey: Trade R2 G2 Newblu\n\n47) Grissom: Discover G1 Grissom Y1 Yellno\n\n48) hellajoey: Build G1 Star\n\n49) Grissom: Discover G1 Yellno B3 Blubo\n\n50) hellajoey: Build Y1 Hellajoey\n\n51) Grissom: Build Y1 Grissom\n\thellajoey: How&#39;s it going, Larry? How&#39;s eBay treating you? I heard a rumor there was some downsizing.\n\n52) hellajoey: Trade G1 Y1 Star\n\tGrissom: Hi Joey, I am doing well. eBay is great, classifieds was not effected by the down sizing. I was converted so I am enjoying officially being on the team. \n\tGrissom: How are you?\n\n53) Grissom: Discover Y1 Grissom G1 Gbot\n\n54) hellajoey: Move R1 Star Blubo\n\n55) Grissom: Discover Y1 Gbot G3 Gbot2point0\n\thellajoey: Things are pretty good. Also pretty strange. I haven&#39;t actually been doing any Android development since I left eBay and I think I need to get back into it by EOS (end of Spring ;) at the latest. I&#39;m glad to hear things are going well for you still at eBay. I accidentally met the new Product Manager for Classifieds at a dance club a couple weeks ago (another strange story). She seemed cool. But when I heard there was downsizing (did you really lose the 3rd floor?) I was feeling bad for you guys. Nice to hear things are still good.\n\tGrissom: Ya we are on 9 now. It is different but I feel like it has been good for the team. Also they started catering breakfast every day and that has been great. \n\n56) hellajoey: Attack G1 Blubo\n\n57) Grissom: Build Y2 Gbot2point0\n\n58) hellajoey: Build G1 Blubo\n\n59) Grissom: Sacrifice Y2 Grissom\nMove Y2 Gbot2point0 Hellajoey\nMove Y1 Gbot2point0 Hellajoey\nCatastrophe Hellajoey Yellow\n\thellajoey: Oh, dang. I was thinking those were two jumps away. Good job!\n\n\nHomeworlds Online (SDG# 26967)\nStarted: 2015.2.23, Ended: 2015.3.22\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build G1 Wil\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wil: Trade G1 B1 Wil\n\n7) ts52: Build G1 Grover\n\n8) wil: Build B1 Wil\n\n9) ts52: Trade G1 Y1 Grover\n\n10) wil: Discover B1 Wil G2 G2\n\n11) ts52: Build G1 Ts52\n\n12) wil: Build B2 G2\n\n\nHomeworlds Online (SDG# 26801)\nVariants: &quot;Hard time&quot;\nStarted: 2015.2.23, Ended: 2015.3.26\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Discover G1 Wil B3 B3\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 B3\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) wil: T G1 Y1 B3\n\n10) SilentTitan: Trade Y1 R1 Silenttitan\n\n11) wil: Build Y1 B3\n\n12) SilentTitan: Discover R1 Silenttitan Y2 Sol\n\n13) wil: T Y1 R1 B3\n\n14) SilentTitan: Build Y1 Silenttitan\n\n15) wil: Build R2 B3\n\n16) SilentTitan: Discover Y1 Silenttitan G2 Soul\n\n17) wil: M R2 B3 Soul\n\n18) SilentTitan: Discover Y1 Soul G3 Sole\n\n19) wil: Build R2 B3\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) wil: Build G1 Wil\n\n22) SilentTitan: Build G2 Silenttitan\n\n23) wil: Move R2 B3 Sol\n\n24) SilentTitan: Discover R1 Sol Y3 Tac\n\n25) wil: Trade G1 B1 Wil\n\n26) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sole\n\n27) wil: Move G1 B3 Sol\n\n28) SilentTitan: Move Y3 Sole Soul\n\n29) wil: Build G1 Wil\n\twil: you did do it...\n\n30) SilentTitan: Move Y3 Silenttitan Sol\n\tSilentTitan: I confess it was me. I did it. I killed them all.... Wait!  Is this mike still on?\n\n31) wil: Move G1 Sol B3\n\n32) SilentTitan: Trade Y2 R2 Silenttitan\n\n33) wil: Build Y2 B3\n\n34) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Sol North\nAttack R2 Soul North\n\n35) wil: Build R2 B3\n\twil: I am doing terribly this game..  I&#39;m completely undeserving of being #1 on that ladder..\n\tSilentTitan: First of all: congrats.  Second we&#39;ve all felt that way. Third enjoy while you can.  (Grin)\n\n36) SilentTitan: Sacrifice Y3 Sol\nMove Y3 Soul Silenttitan\nMove Y1 Silenttitan Soul\nMove G1 Silenttitan Sol\n\twil: Oh I feel I am a decent player... just not in the caliber of two short, brocolli or TTT... I&#39;m outta their league..  would there be a real tournament, I&#39;d have to be lucky to beat you, dlwilson an zoltar...\n\n37) wil: Trade G3 Y3 Wil\n\n38) SilentTitan: Build R3 Sol\n\tSilentTitan: Hummel.. I disagree with most of your analysis, but am too short(ha) of time to elaborate at the moment.  Maybe get a chance to later this weekend.\n\n39) wil: Discover R2 B3 G2 G2\n\n40) SilentTitan: Build G3 Sol\n\n41) wil: B G3 Wil\n\tSilentTitan: Ok.  I have a moment.  I believe you are a very strong player. As for better or worse than the list of players you provided.  That would remain to be seen.  Too short is by his own admission a very poor performer live.  Broccoli and TTT while they have been very powerful in a relatively short time, I&#39;ve seen little evidence that they are comprehensive players.  The only player on the entire ladder to win an actual medallion at a tournament (that I know of) is neme and he is currently only passively playing the ladder.  Since the ladder is supposedly weighted like chess the relative strength of a player is supposed to be the value, but I believe that is only part of the story.  \n\n42) SilentTitan: Sacrifice G3 Sol\nBuild G3 Sol\nBuild R3 Soul\nBuild R3 Tac\n\twil: while I appreciate your analysis... I have made terrible blunders this game and you are kicking my butt\n\n43) wil: B B1 Wil\n\n44) SilentTitan: Move R3 Soul Silenttitan\n\tSilentTitan: I hope to make no mistakes and thereby win. Nothing is certain.\n\n45) wil: Move Y1 B3 G2\n\n46) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Soul Sole\nMove Y1 Sole Wil\nMove Y1 Sole Wil\nCatastrophe Wil Yellow\n\twil: So was it you that slipped into first when i first started learning hw on the ladder like I just did? (when two short missed a challenge and slipped to 6?)\n\n47) wil: Move R1 B3 G2\n\tSilentTitan: Yes and it was my brother in law that had made the challenge,and thereby alerted me to the fact that I was in first. Hence my analysis regarding broccoli and TTT. \n\n48) SilentTitan: Move G3 Sol Wil\n\n49) wil: Sacrifice Y2 B3\nMove R1 G2 Silenttitan\nMove R2 G2 Silenttitan\nCatastrophe Silenttitan R\n\n50) SilentTitan: Sacrifice R3 Sol\nAttack G3 Wil North\nAttack B1 Wil North\nAttack B1 Wil North\n\twil: this is the end...\n\n51) wil: Build G3 B3\n\n52) SilentTitan: Sacrifice R1 Tac\nAttack G1 Wil North\n\n\twil: thx for the whoopin!\n\tSilentTitan: Anytime......\n\nHomeworlds Online (SDG# 27071)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.2, Ended: 2015.3.6\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: Homeworld B2 Y1 G3\n\tTeeTeeTee: That was fast...\n\twil: I just finished a move in another game and the top of the page said I had a ladder opening...didnt expect this one...\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\n3) wil: Build G1 Wil\n\tTeeTeeTee: Well, you&#39;re at spot #2 on the ladder, so I&#39;m not sure what you were expecting... were you surprised by SilentTitan resigning?\n\twil: Yeah, somewhat... After I clicked on challenge i went back to look at what happened\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) wil: Trade G1 B1 Wil\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) wil: Build B2 Wil\n\twil: Also, I sure don&#39;t feel I deserve to be at 2...  Silent titan often bests me...two short...like you, I&#39;ve never beaten.\n\twil: Also, I sure don&#39;t feel I deserve to be at 2...  Silent titan often bests me...two short...like you, I&#39;ve never beaten.\n\n8) TeeTeeTee: Build B2 Teeteetee\n\n9) wil: Trade B2 R2 Wil\n\n10) TeeTeeTee: Discover B1 Teeteetee G2 Apple\n\n11) wil: Discover B1 Wil G3 G3\n\twil: That is the point right there...\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B2 Apple\nBuild B3 Apple\nBuild B3 Teeteetee\n\n13) wil: Build B3 G3\n\n14) TeeTeeTee: Trade B3 Y3 Apple\n\n15) wil: Trade B1 Y1 G3\n\n16) TeeTeeTee: Trade B3 G3 Teeteetee\n\n17) wil: Build Y1 G3\n\n18) TeeTeeTee: Build Y2 Apple\n\n19) wil: Move Y1 G3 Apple\n\n20) TeeTeeTee: Trade Y3 R3 Apple\n\tTeeTeeTee: Haha: good idea.\n\n21) wil: Build Y2 Apple\n\n22) TeeTeeTee: Move B1 Apple G3\n\n23) wil: Build R1 Wil\n\n24) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B1 G3\nBuild B3 Teeteetee\nBuild B3 G3\nCatastrophe G3 Blue\n\n25) wil: S R2 Wil\nA B2 Apple\nA Y2 Apple\n\n26) TeeTeeTee: Attack B2 Apple\n\n27) wil: Sacrifice G3 Wil\nBuild Y2 Apple\nBuild Y3 G3\nBuild Y3 G3\nCatastrophe Apple Y\n\n28) TeeTeeTee: Trade B3 G3 Teeteetee\n\n29) wil: M Y3 G3 Wil\n\n30) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B1 Apple\nBuild B1 Apple\nBuild B3 Teeteetee\n\n31) wil: T Y3 G3 Wil\n\tTeeTeeTee: I think that you just traded away your constructive and offensive options for a large ship.\n\n32) TeeTeeTee: Trade B3 G3 Teeteetee\n\n33) wil: M Y3 G3 Wil\n\n34) TeeTeeTee: Build B3 Teeteetee\n\twil: me? Make a game-changing blunder against you? never.... \n\n35) wil: Trade Y3 B3 Wil\n\n36) TeeTeeTee: Trade B3 Y3 Teeteetee\n\n37) wil: Move B3 Wil G3\n\n38) TeeTeeTee: Build B3 Teeteetee\n\twil: It was a risk...but I had to keep up in the Queen game or I was gonna be swamped.\n\n39) wil: Discover B3 G3 G2 G2\n\n40) TeeTeeTee: Move B3 Teeteetee G2\n\n41) wil: Sacrifice Y1 G3\nDiscover B3 G2 Y3 Y3\n\n42) TeeTeeTee: Build B3 G2\n\n\tTeeTeeTee: Going to play this out?\n\twil: I am just so far outta your league...  I make wunnerful blunders and you capitalize on them all...\n\tTeeTeeTee: I&#39;m trying to think where it all went wrong for you, here. As I said earlier, when you built those large yellow ships, you got yourself an immediate material gain, but put yourself in a very weak position: you had no ability to trade ships or put pressure on my ships, and that let me get an effective monopoly on blue.\n\twil: I lost way back...early mistake...that move you pointed out was a last ditch effort...\n\twil: outgunned and virtual blue factory...its over...time to let someone give you some competition again...\n\tTeeTeeTee: What do you think the early mistake was? Trading for the r2 in the opening? I think that did let me get a foothold on blues, yes, but going unarmed for so long did put me at risk, and I was fortunate to get away unscathed. Or were you referring to letting me blow up your blue ship?\n\nHomeworlds Online (SDG# 26820)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.4, Ended: 2015.3.16\nParticipants: Takvorian (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\n2) Takvorian: Homeworld R1 B2 G3\n\twil: thx for the game.\n\tTakvorian: my first ever game of Homworlds...\n\n3) wil: Build G1 Wil\n\twil: That is a near perfect opening response...do you want me to walk you through stuff I see as we go?\n\n4) Takvorian: Build G1 Takvorian\n\tTakvorian: Yes, that would be very helpful! This game is really different from all that I played before, I have no clue what to do...\r\nIf my English sounds a bit strange to you - I am from Berlin Germany, so it&#39;s not my native language.\r\nThanks for your help!\n\n5) wil: T G1 R1 Wil\n\twil: No worries .. Where chest is a land based war game this is a inter inter galactic war game the colors of your ships and stars indicate what powers you have\n\twil: typically you want to make sure you don&#39;t get isolated out of any economy / color...\n\n6) Takvorian: Trade G1 Y1 Takvorian\n\n7) wil: B R1 Wil\n\tTakvorian: ok, so I tried to diversify my colors...\n\twil: True,  but to show you what happens I&#39;ll go for a red monopoly \r\n\n\n8) Takvorian: Build Y1 Takvorian\n\n9) wil: B R2 Wil\n\tTakvorian: Just discovered that my small red star, doesn&#39;t help to buil a red ship...\n\twil: Exactly.... Picture it like you need a template of the other color to retrofit / trade it was not for another \n\n10) Takvorian: Build Y1 Takvorian\n\n11) wil: Discover R2 Wil B2 B2\n\tTakvorian: Am I already doomed?\n\n12) Takvorian: Discover Y1 Takvorian R3 Cygnus-x1\n\twil: nah...well maybe...as you&#39;ll have work to figure out how to get back out of this mess...but even if you were...it will be educational to see how powerful this is, and how it plays out... yellow and blue monopolies are the worst in my opinion...but any monopoly can be disastrous.\n\n13) wil: Discover R1 Wil R2 R2\n\tTakvorian: To be honest, I have no real plan for this game yet.\r\nI suppose you need many games under your belt, before things click.\n\twil: lol...yeah I lost dozens in different ways before I saw the attacks coming...two ways to win...take over all the ships in the homeworld or blow up the stars..\n\n14) Takvorian: Build Y2 Takvorian\n\n15) wil: Sacrifice G3 Wil\nBuild R2 B2\nBuild R3 B2\nBuild R3 Wil\n\n16) Takvorian: Discover Y1 Takvorian B3 Aldebaran\n\twil: Sacrificing...by sacrificing any ship anywhere you transmit the power throughout your armada... be it attacking, building, trading, or moving...by the strength (pip number) on that sacrificed ship...hence my sacrificing a g3 allowed me three grows.\n\n17) wil: T R3 Y3 B2\n\n18) Takvorian: Build Y2 Takvorian\n\n19) wil: T R3 G3 Wil\n\tTakvorian: I feel completely clueless in this game...\n\twil: It&#39;ll take you less than 10 games... \n\n20) Takvorian: Move Y2 Takvorian Aldebaran\n\twil: It&#39;ll take you less than 10 games... Watch for catastrophe.... 4 of any color in one star system will move all of that color back to the bank... Including the star \n\n21) wil: Build R3 Wil\n\tTakvorian: I don&#39;t know, I think I&#39;ll need around 50...\r\nSo far, I have no strategy. Because I have no access to red ships, I don&#39;t have an idea how I could harm you in any way. And it seems that you can easily overtake my two systems...\r\nBut I checked the rankings and saw that you are one of the strongest Homeworld players here.\r\nPerhaps we can play an unranked teaching game hereafter where you can tell me the ideas behind your moves.\r\nThe game itself looks very promising to me, if I could only wrap my head around...\n\n22) Takvorian: Trade G3 R3 Takvorian\n\n23) wil: T R2 G2 B2\n\n24) Takvorian: Trade Y2 R2 Aldebaran\n\n25) wil: B Y2 B2\n\n26) Takvorian: Trade Y1 G1 Takvorian\n\twil: you did good on grabbing that r3to stop the monopoly. but now you have no greens can&#39;t grow.\n\n27) wil: D Y2 B2 B3 B3\n\tTakvorian: So I have green again, but still don&#39;t know what to do ;)\n\twil: Always look at how to end the game and build the ships required to do it\n\n28) Takvorian: Move G1 Takvorian Cygnus-x1\n\twil: It is about moving a force in range and of the numbers needed \n\twil: It is about moving a force in range and of the numbers needed \n\twil: It is about moving a force in range and of the numbers needed \n\n29) wil: Build G1 B2\n\n30) Takvorian: Discover Y1 Cygnus-x1 Y2 Ertrus\n\n31) wil: S G2 B2\nB Y1 B2\nB Y3 B3\n\twil: There is a building stage, an arms race, there are only a limited number of pieces in the bank.  That morphs into a positioning stage, protecting and taking territory in space as you are working toward their homeworld.  Skirmishes of attacks and catastrophes.  Here is where it beats the crap out of chess... you don&#39;t destroy pieces if you can help it...when you attack you take over the ship...these are multitrillion dollar intragalactic crafts which carry upto thousands of people from one star system to another...you surely don&#39;t want to destroy that...   and then the way catastrophied or sacrificed pieces can come back into play... the universe can reboot over and over as this happens.  until someone goes in for the kill...building a doomsday machine, or taking advantage of a bluebird.\n\n32) Takvorian: Move R2 Aldebaran Ertrus\n\n33) wil: Move R2 B2 Aldebaran\n\tTakvorian: That is really a lot of stuff to consider, and I even don&#39;t know what doomsday machine and bluebird means ;)\r\nI can&#39;t remember that I was ever so clueless, the depth of this game must be similar to Go.\n\n34) Takvorian: Sacrifice G1 Cygnus-x1\nBuild R3 Ertrus\n\n35) wil: Sacrifice Y3 B3\nMove R1 R2 Aldebaran\nMove R1 Aldebaran Takvorian\nMove R2 Aldebaran Takvorian\nCatastrophe Takvorian R\n\n36) Takvorian: Trade Y2 G2 Takvorian\n\twil: You&#39;ll get the handle of it...  It is a great game for having set up in the house...with a move coin going back and forth from side to side and everytime you or you wife moves as you walk by you see it...and then make your move and move the coin...  I&#39;ve played numerous games with roomates this way. (as for definitions)  http://www.looneylabs.com/rules/homeworlds \n\twil: four colors, three sizes of pieces... so much variation...  yes like GO...simple rules, tons of strategy\n\tTakvorian: great idea setting up a game at home. Unfortunately we have some cats and because of that game positions would probably change while absent from the table...;)\n\n37) wil: Move R3 Wil Takvorian\n\twil: cat moves are part of the game..\n\n38) Takvorian: Move R2 Ertrus B3\n\tTakvorian: That was quite a hit!\r\nI think my days are counted (I don&#39;t know if this is also an English proverb).\n\n39) wil: Attack G2 Takvorian\n\twil: You got it!  We call it &quot;My days are numbered&quot;\n\twil: You are in trouble...but you wanna watch the end play out.\n\twil: I said that before looking at the board...yeah...you needed to sacrifice the y2 for two moves to get your big red gun back home to protect the remaining star... it is over..\n\n\tTakvorian: Thanks for the instructive game. Perhaps I learned a few things...\r\nBut comparing to the alphabet, now I know A, B and perhaps C, but all the other letters are well behind my horizon;)\n\twil: imagine how long chess took... in less than ten games you&#39;ll be beating some folks\\\n\nHomeworlds Online (SDG# 27112)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.4, Ended: 2015.3.20\nParticipants: Takvorian (S), foksieloy (N)\nWinner: Takvorian\n\n1) foksieloy: Homeworld B1 G3 Y3\n\n2) Takvorian: Homeworld R1 B2 G3\n\n3) foksieloy: Build Y1 Foksieloy\n\tTakvorian: Have fun!\n\tfoksieloy: Hey, good luck, have fun!\n\n4) Takvorian: Build G1 Takvorian\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) Takvorian: Trade G1 Y1 Takvorian\n\n\nHomeworlds Online (SDG# 27038)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.8, Ended: 2015.3.16\nParticipants: DiEvAl (S), SilentTitan (N)\nWinner: DiEvAl\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tDiEvAl: Hi\n\n2) DiEvAl: Homeworld R2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) DiEvAl: Build G1 Dieval\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) DiEvAl: Trade G1 Y1 Dieval\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) DiEvAl: Build G1 Dieval\n\n\nHomeworlds Online (SDG# 27111)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.19, Ended: 2015.4.9\nParticipants: Takvorian (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\twil: welcome back!\n\n2) Takvorian: Homeworld B2 R1 G3\n\tTakvorian: Hello again! Hopefully I will perform a bit better than in our last game.\r\nBy the way, I entered the Homeworlds ladder and already won my first game. After two moves my opponent was timed out...\r\nProbably he had to think too long because of my clever moves ;)\n\n3) wil: Build G1 Wil\n\twil: lol....  now ya got me scared...  played snake oil the other night... have you seen that game?  too much fun!\n\twil: But ya done goofed up on this opening...taking a b1 when I already did leaves one in the stash...I trade my g1 for a b1 and you are aced outta blues from the get...if you want to retract and pick adifferent start...\n\n4) Takvorian: Build G1 Takvorian\n\tTakvorian: Thanks for the hint. You see, I am still as bad as before. I just didn&#39;t think that the first move is already so important...\n\twil: Yes, you&#39;ll develop your favorite opening moves (mine is a form of banker...but banker seems to be a slight advantage(not confirmed due to better players simply choosing it)) So as an intragalactic warlord training a young starship captain is is only appropriate that I not take banker...(I should start with fortress as I soooo dislike it and should be practicing) and yes..you can lose the game in your first move (making a bad choice of a homeworld and ship)\n\n5) wil: Trade G1 R1 Wil\n\twil: I do see an exploit here though....red.. while convention has it that having red in your homeworld is advantageous (protection) I also find it tough when I can move and you can&#39;t...should be interesting.  (and when I say you can lose on an opening move, you can still win, but you have to find mistakes to take advantage of...a bad opehing move and you have an uphill battle until you do)\n\n6) Takvorian: Trade G1 R1 Takvorian\n\tTakvorian: Thanks for your comments, trainer. These are really helpful for me, because this game is still a mystery for me.\n\tTakvorian: What abaout choosing the same sizes as your opponent and making the universe smaller this way. Do you recommend this?\n\twil: we hate that...a short universe changes soooo much.   I don&#39;t know if anyone does it intentionally....usually a mistake (be worth considering though)\n\n7) wil: Build R2 Wil\n\n8) Takvorian: Build R2 Takvorian\n\tTakvorian: in our last game I took a y here and got in severe trouble without any r, so let&#39;s see what will happen now...\n\n9) wil: Build R2 Wil\n\n10) Takvorian: Trade R1 Y1 Takvorian\n\tTakvorian: Just saw that I didn&#39;t reply to you mentioning Snake Oil...\r\nNo, I don&#39;t own or played it yet. It sounds like a light Party game. Would you recommend it?\n\n11) wil: Trade R1 B1 Wil\n\n12) Takvorian: Build Y1 Takvorian\n\n13) wil: Build B1 Wil\n\n14) Takvorian: Build Y1 Takvorian\n\twil: party game yes....silly as all get out...who knows about shelflife...\r\n\n\n15) wil: Discover B1 Wil G2 G2\n\n16) Takvorian: Build G1 Takvorian\n\n17) wil: B B2 G2\n\n18) Takvorian: Discover Y1 Takvorian B3 Tb3\n\n19) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 Wil\nBuild R1 Wil\n\n20) Takvorian: Move R2 Takvorian Tb3\n\n21) wil: Trade B3 Y3 Wil\n\n22) Takvorian: Discover G1 Takvorian Y3 Tak-2\n\n23) wil: Trade B2 Y2 G2\n\tTakvorian: This game is still twisting my brain, I feel completely overwhelmed...\n\twil: you are a gamer...in games and in the world...the more experience often has the advantage... I&#39;m not giving you any breaks..I&#39;m using all the tricks so you can see them coming...\n\n24) Takvorian: Trade Y1 R1 Takvorian\n\n25) wil: Discover R2 Wil G2 Gee2\n\twil: Okee dokee...figuring out attacks is a tough one sometimes...everything is a move...so you have to have the jump.  I can right now attack your r2 you moved in.  I will sacrifice an r1 in my homeworld and attack your r2 (turn it around to be mine) should I proceed or would yoiu like to back up?\n\tTakvorian: omg, I really suck...\r\nSo I did take back my stupid move.\n\n26) Takvorian: Build G1 Takvorian\n\tTakvorian: I suppose this is not much better though\n\n27) wil: Trade R1 G1 Wil\n\twil: it is better than losing your only attack ship...  Now i hope you know what I am upto next..\n\twil: lol...oh crap...I didn&#39;t really look!! You did what I was gonna do next...before I mentioned it...sheesh...nice move!\n\tTakvorian: You expect too much from me, I don&#39;t know what you plan.\n\tTakvorian: Have to think about it...\n\twil: you took it perfect...invested a green 1 in a y3 poifection!\r\n\n\n28) Takvorian: Build G2 Tak-2\n\n29) wil: Build G3 Wil\n\n30) Takvorian: Build G3 Takvorian\n\n31) wil: Sacrifice Y3 Wil\nMove G1 Wil G2\nMove G1 G2 Tb3\nMove G1 Tb3 Takvorian\nCatastrophe Takvorian G\n\n32) Takvorian: Move G2 Tak-2 Takvorian\n\n33) wil: Build B2 G2\n\n34) Takvorian: Move R1 Takvorian Tak-2\n\n35) wil: Move B2 G2 Tak-2\n\twil: gotta watch out for overpopulation...\n\n36) Takvorian: Build G1 Takvorian\n\tTakvorian: did&#39;nt see it coming. This game is still so confusing for me...\n\twil: believe me...I know the feeling...  I had to see somethings two or three times before I was able to catch them\n\n37) wil: Sacrifice R2 Gee2\nAttack R1 Tak-2\nAttack G1 Tak-2\n\n38) Takvorian: Move G1 Takvorian Tb3\n\n39) wil: Build B3 Wil\n\n40) Takvorian: Build G1 Takvorian\n\n41) wil: Build B3 G2\n\n\tTakvorian: So I resign here to concentrate on our teaching game (not that I have any idea how to continue here ;))\n\twil: it was over when you lost your queen\n\nHomeworlds Online (SDG# 27163)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.21, Ended: 2015.3.30\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld G1 B2 Y3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\tOnePageWars: gl hf!\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Trade Y3 G3 Onepagewars\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) SilentTitan: Discover Y3 Silenttitan G2 Sol\n\n9) OnePageWars: Discover Y1 Onepagewars B3 Rossum\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) OnePageWars: Move G3 Onepagewars Rossum\n\n12) SilentTitan: Trade G1 R1 Silenttitan\n\n13) OnePageWars: Trade Y1 R1 Onepagewars\n\n14) SilentTitan: Build R2 Silenttitan\n\n15) OnePageWars: Build R2 Onepagewars\n\n16) SilentTitan: Trade R2 Y2 Silenttitan\n\n17) OnePageWars: Trade R1 Y1 Onepagewars\n\n18) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Sol Rossum\nMove Y3 Rossum Onepagewars\n\n19) OnePageWars: Move G3 Rossum Onepagewars\n\n20) SilentTitan: Sacrifice R1 Silenttitan\nAttack R2 Onepagewars North\n\n\tOnePageWars: Thanks for the game.\n\tSilentTitan: Thank you.  \n\nHomeworlds Online (SDG# 27282)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.21, Ended: 2015.4.1\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) dlwillson: H B3 R1 G3\n\twil: If I recall correctly when I first started learning this game you slipped into this very place under similar circumstances.\n\n3) wil: Build G1 Wil\n\tdlwillson: I don&#39;t think I&#39;ve ever hit #1. I think Silent Titan has.\n\tdlwillson: Have a lot of fun.\n\n4) dlwillson: B G1 Dlwillson\n\twil: hmmm...well then you got a chance now!!!\n\n5) wil: Trade G1 B1 Wil\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\tdlwillson: Good luck to both of us!\n\n8) dlwillson: B B2 Dlwillson\n\twil: no such thing as a bad homeworlds game...  bad plays... but no bad games\n\n9) wil: Discover B1 Wil G3 G3\n\n10) dlwillson: Trade B1 Y1 Dlwillson\n\n11) wil: B G1 Wil\n\n12) dlwillson: Build Y1 Dlwillson\n\n13) wil: T B2 Y2 Wil\n\n14) dlwillson: D Y1 Dlwillson G2 Field\n\n15) wil: Trade G1 R1 Wil\n\n16) dlwillson: B Y1 Field\n\n17) wil: Move Y2 Wil G3\n\n18) dlwillson: Discover Y1 Field B3 Lake\n\n19) wil: Build R1 Wil\n\n20) dlwillson: D Y1 Field Y3 Sol\n\twil: the best man is winning...\n\tSilentTitan: I was at number one for almost 1 year.  I believe I had 11 defends and then dlwillson challenged me and we were Neck and Neck when I was suddenly let go from my job. I then timed out on the match and you were number one until... Not sure.  I think tooshort beat you to reclaim.\n\twil: lol...we&#39;ll see if I can get one defend!\n\n21) wil: Discover R1 Wil Y3 Y3\n\tdlwillson: :-)\n\n22) dlwillson: B G1 Dlwillson\n\n23) wil: Build R2 Wil\n\n24) dlwillson: D B2 Dlwillson G2 Field\n\tdlwillson: I&#39;d say the odds are good!\n\n25) wil: M R2 Wil Sol\n\n26) dlwillson: M Y1 Sol Field\n\n27) wil: S G3 Wil\nB R2 Wil\nB R2 Y3\nB R3 Wil\n\n28) dlwillson: S G3 Dlwillson\nB Y2 Dlwillson\nB Y3 Dlwillson\nB B1 Field\n\n29) wil: Trade R3 G3 Wil\n\n30) dlwillson: T Y3 R3 Dlwillson\n\n31) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Sol\nBuild Y3 G3\n\n32) dlwillson: Discover B1 Field G1 Forest\n\n33) wil: Move R2 Sol Field\n\n34) dlwillson: Sacrifice Y1 Field\nDiscover B2 Field Y1 Sunny\n\n35) wil: Discover Y2 G3 B2 B2\n\n36) dlwillson: D B2 Sunny G3 Vale\n\twil: It is a little scary and a little different defending the top of the ladder...\n\tdlwillson: You&#39;re doing a fine job. Did you know I can see up your skirt from here?\n\twil: oops...bad day for me to have gone commando\n\n37) wil: S Y3 G3\nM R1 Y3 Field\nM R1 Field Dlwillson\nM R2 Field Dlwillson\nC Dlwillson R\n\n38) dlwillson: T Y1 R1 Dlwillson\n\n39) wil: Move R3 Wil Dlwillson\n\n40) dlwillson: B R1 Dlwillson\n\n41) wil: Sacrifice R3 Sol\nAttack R1 Dlwillson\nAttack R1 Dlwillson\nAttack G1 Dlwillson\n\n42) dlwillson: T Y2 G2 Dlwillson\n\twil: who are all these &#39;spectators&#39; and why don&#39;t I see them playing homeworlds?\n\tdlwillson: Dunno. It&#39;s been that way forever.\n\n43) wil: Attack G2 Dlwillson\n\twil: That could have easily blown up in my face, I barely stayed one step ahead of disaster there..\n\tdlwillson: Well played, Wil!\r\n\r\nCongrats on your first defend. I&#39;ll give the others a week or so before I attack again.\n\twil: thanx and anytime.... we&#39;ll see who steps upto the plate.\n\n\nHomeworlds Online (SDG# 27287)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.22, Ended: 2015.5.12\nParticipants: fogus (S), Takvorian (N)\nWinner: Takvorian\n\n1) Takvorian: Homeworld B1 R2 G3\n\n2) fogus: Homeworld B1 Y2 G3\n\tTakvorian: have fun!\n\n3) Takvorian: Build G1 Takvorian\n\n4) fogus: Build G1 Fogus\n\n5) Takvorian: Trade G1 B1 Takvorian\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) Takvorian: Build G1 Takvorian\n\n8) fogus: Build G1 Fogus\n\n9) Takvorian: Trade G1 Y1 Takvorian\n\tfogus: thanks! you too\n\n10) fogus: Build G1 Fogus\n\tTakvorian: I like Homeworlds, but I really have no clue in this game. It knots my brain...\n\n11) Takvorian: Build B2 Takvorian\n\n12) fogus: Discover G1 Fogus B3 Scan\n\n13) Takvorian: Trade B2 R2 Takvorian\n\n14) fogus: Trade Y1 R1 Fogus\n\n15) Takvorian: Move R2 Takvorian Scan\n\n16) fogus: Sacrifice G1 Scan\nBuild R1 Fogus\n\n17) Takvorian: Build B2 Takvorian\n\n18) fogus: Trade G1 Y1 Fogus\n\n19) Takvorian: Trade B2 Y2 Takvorian\n\n20) fogus: Build G1 Fogus\n\n21) Takvorian: Build G1 Takvorian\n\n22) fogus: Discover G1 Fogus Y3 Blip\n\tfogus: I&#39;ve gotten myself in a pickle\n\n23) Takvorian: Trade Y2 R2 Takvorian\n\n24) fogus: Build G1 Fogus\n\n25) Takvorian: Move R2 Takvorian Blip\n\n26) fogus: Discover G1 Blip Y2 Flip\n\n27) Takvorian: Move G1 Takvorian Blip\n\n28) fogus: Build G2 Flip\n\n29) Takvorian: Build G2 Blip\n\n30) fogus: Discover R1 Fogus G3 Chip\n\n31) Takvorian: Build B2 Takvorian\n\n32) fogus: Trade R1 Y1 Fogus\n\n33) Takvorian: Build Y2 Takvorian\n\n34) fogus: Move Y1 Fogus Chip\n\n35) Takvorian: Build G2 Takvorian\n\n36) fogus: Build Y3 Chip\n\n37) Takvorian: Sacrifice Y2 Takvorian\nMove G2 Blip Fogus\nMove G1 Blip Fogus\nCatastrophe Fogus G\n\n\nHomeworlds Online (SDG# 27274)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.24, Ended: 2015.4.15\nParticipants: Laurie_Menke (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hey, Wil!  You wanna give this another shot and see if I can remember to check into SDG on a regular basis?  :)\n\twil: lol\r\n\n\n2) Laurie_Menke: Homeworld B2 R1 G3\n\n3) wil: Build G1 Wil\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) wil: Trade G1 B1 Wil\n\n6) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n7) wil: Build B2 Wil\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) wil: Trade B1 R1 Wil\n\twil: looks like I just may defend my number 1 spot at least once!!\n\twil: of course that is me counting chickens...\n\n10) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tLaurie_Menke: I have complete faith in you and have had from the beginning!  Congrats in advance!  :)\n\n11) wil: Build R2 Wil\n\n12) Laurie_Menke: Build R2 Laurie_menke\n\n13) wil: Discover R2 Wil B2 B2\n\twil: I held onto my rung!!\n\n14) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Wooooo-hooooo!!!!!  Congrats... I knew you could do it!  :)\n\n15) wil: Sacrifice G3 Wil\nBuild R2 B2\nBuild R3 B2\nBuild R3 Wil\n\n16) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n17) wil: Trade R2 Y2 B2\n\tLaurie_Menke: Grrr....  ;)\n\n18) Laurie_Menke: Discover R2 Laurie_menke Y3 Yellow\n\twil: I think the two intermediary goals are similar cousins even...the race to the queens, it can be by acing out singles or by isolation.  \n\tLaurie_Menke: True.  And you are far too good at all of the above (or below)!\n\n19) wil: Move R3 B2 Yellow\n\n20) Laurie_Menke: Discover R2 Yellow G2 Green\n\n21) wil: Trade R3 G3 Wil\n\n22) Laurie_Menke: Discover B1 Laurie_menke G3 Greentoo\n\n23) wil: Sacrifice G3 Wil\nBuild R2 Yellow\nBuild R3 B2\nBuild R3 Wil\n\n24) Laurie_Menke: Move R1 Laurie_menke Yellow\n\tLaurie_Menke: Well, at least I accurately predicted what you would do.  Didn&#39;t have any good way to stop it, but saw it coming.  ;)\n\n25) wil: Move R3 Yellow Green\n\n26) Laurie_Menke: Build B1 Greentoo\n\twil: I&#39;m not gonna swat that little mosquito...I am just gonna go sight seeing...\n\tLaurie_Menke: Yeah, yeah....  was worth a shot...  ;)\n\n27) wil: Move R3 B2 Greentoo\n\n28) Laurie_Menke: Build Y1 Laurie_menke\n\twil: You gonna make me another star?\n\twil: I mean I appreciate all the stars you&#39;ve created for me so far...they are very nice...\n\tLaurie_Menke: grumblegrumblegrumble\n\n29) wil: Sacrifice R2 B2\nAttack B1 Greentoo\nAttack B1 Greentoo\n\n\twil: I have never played John Cooper...but John Cooper has changed my game play dramatically.   Andy came back from the JoCo cruise last year saying he got to play a number of games with John...and that John has a very aggressive game play....so I began attacking stars that others created... it is obnoxious, but it works...   \n\tLaurie_Menke: It works for you!  I tried that on Andy and it cost me my current game, I think.  :/  I just need a lot more practice...\n\tLaurie_Menke: Hmmm...  I think I should concede this game.  Congratulations, and Happy Birthday!!!  (Don&#39;t say I never gave you anything.)  ;)  ;)  ;)\n\twil: Andy is such a tricky player... he&#39;s seen it all..and comes up with moves that I baffle me at times when I think I have him cornered.\n\twil: Musta been ts52&#39;s birthday too...\n\tLaurie_Menke: LOL... musta been...  ;)   And yes, he is tricky!\n\tLaurie_Menke: Actually, I guess it was mine... did you see how that turned out?  :)\n\twil: Yeah, I am surprised neither of you saw that...it was sittin there and he moved and you moved and he moved...  I was bouncin off the walls!\n\tLaurie_Menke: So weird.  I don&#39;t know why I didn&#39;t see it, either!\n\twil: That was why I said it must&#39;ve been his birthday...  \r\n\n\tLaurie_Menke: Gotcha.  :)\n\nHomeworlds Online (SDG# 27281)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.24, Ended: 2015.4.27\nParticipants: Laurie_Menke (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B3 G3\n\tLaurie_Menke: Hi, SilentTitan!  Here&#39;s to a good game!  :)\n\tSilentTitan: Hello, and a good game to you as well\n\n2) Laurie_Menke: Homeworld B1 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Laurie_Menke: Build R1 Laurie_menke\n\n9) SilentTitan: Discover Y1 Silenttitan G2 Sol\n\n10) Laurie_Menke: Trade R1 Y1 Laurie_menke\n\n11) SilentTitan: Build Y2 Sol\n\n12) Laurie_Menke: Build R1 Laurie_menke\n\n13) SilentTitan: Discover Y2 Sol B3 Soul\n\n14) Laurie_Menke: Build Y2 Laurie_menke\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Soul\nBuild Y3 Silenttitan\n\n16) Laurie_Menke: Move Y2 Laurie_menke Soul\n\n17) SilentTitan: Trade Y3 R3 Soul\n\n18) Laurie_Menke: Move Y2 Soul Sol\n\n19) SilentTitan: Move R3 Soul Laurie_menke\nCatastrophe Laurie_menke Red\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y3 Laurie_menke\nBuild Y3 Sol\nPass\nCatastrophe Sol Y\n\n21) SilentTitan: Trade Y3 G3 Silenttitan\n\tLaurie_Menke: Ack!  Why didn&#39;t I see that???  ::sigh::\n\n22) Laurie_Menke: Discover Y1 Laurie_menke G2 Green\n\tLaurie_Menke: Good game!  Congratulations and thanks for the fun!  :)\n\n23) SilentTitan: Build Y1 Silenttitan\n\n24) Laurie_Menke: Build Y2 Green\n\tLaurie_Menke: Oops!  I was thinking you had me last turn, but I miscounted.  You were one pip short.\n\n25) SilentTitan: Trade Y2 B2 Soul\n\n26) Laurie_Menke: Move Y1 Green Laurie_menke\n\n27) SilentTitan: Sacrifice Y1 Silenttitan\nMove B2 Soul Laurie_menke\n\n28) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Laurie_menke\nBuild B1 Laurie_menke\nBuild Y1 Silenttitan\nCatastrophe Laurie_menke Blue\n\n\tSilentTitan: Thanks for the game\n\tLaurie_Menke: Nice job!  Thanks for the fun and congratulations!  :)\n\nHomeworlds Online (SDG# 27290)\nStarted: 2015.3.24, Ended: 2015.4.16\nParticipants: ts52 (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld B3 R1 G3\n\tLaurie_Menke: Hi, ts52!  Have fun!  :)\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Thanks! You too!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) ts52: Build G1 Ts52\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) ts52: Build G1 Ts52\n\n7) Laurie_Menke: Build Y1 Laurie_menke\n\n8) ts52: Discover G1 Ts52 B3 Gonzo_the_great\n\n9) Laurie_Menke: Build Y2 Laurie_menke\n\n10) ts52: Build G1 Ts52\n\tLaurie_Menke: LOL!  I like the name!\n\n11) Laurie_Menke: Discover Y2 Laurie_menke G2 Green\n\n12) ts52: Build G2 Gonzo_the_great\n\tLaurie_Menke: Sorry I keep undoing stupid moves.  :/\n\n13) Laurie_Menke: Build G2 Laurie_menke\n\n14) ts52: Build G3 Gonzo_the_great\n\n15) Laurie_Menke: Sacrifice Y2 Green\nDiscover G2 Laurie_menke Y2 Yellow\nMove G2 Yellow Gonzo_the_great\nCatastrophe Gonzo_the_great G\n\n16) ts52: Discover G1 Ts52 B3 Gonzo\n\n17) Laurie_Menke: Build Y2 Laurie_menke\n\n18) ts52: Build G1 Ts52\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\n20) ts52: Build G2 Gonzo\n\n21) Laurie_Menke: Discover G2 Laurie_menke Y2 Yellow\n\n22) ts52: Trade G2 Y2 Gonzo\n\n23) Laurie_Menke: Build G2 Laurie_menke\n\n24) ts52: Build Y3 Gonzo\n\tts52: Sorry about the undo, was typing on autopilot. \n\tLaurie_Menke: No worries!\n\n25) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G2 Yellow Gonzo\nMove G2 Gonzo Ts52\nCatastrophe Ts52 G\n\n\tLaurie_Menke: Good game, ts52!  Thanks for the fun!  :)\n\tts52: Thanks for the game! Well played.\n\nHomeworlds Online (SDG# 27311)\nStarted: 2015.3.24, Ended: 2015.4.30\nParticipants: hellajoey (S), JaredL (N)\nWinner: hellajoey\n\n1) JaredL: Homeworld B2 Y1 G3\n\n2) hellajoey: Homeworld R1 B2 G3\n\n3) JaredL: Build G1 Jaredl\n\n4) hellajoey: Build G1 Hellajoey\n\n5) JaredL: Discover G1 Jaredl B3 Blue3\n\n6) hellajoey: Trade G1 Y1 Hellajoey\n\n7) JaredL: Build G1 Blue3\n\n8) hellajoey: Build Y1 Hellajoey\n\n9) JaredL: Build G1 Jaredl\n\n10) hellajoey: Build Y2 Hellajoey\n\n11) JaredL: Build G2 Blue3\n\n12) hellajoey: Build G2 Hellajoey\n\n13) JaredL: Trade G2 Y2 Blue3\n\n14) hellajoey: Discover Y1 Hellajoey G3 Grun\n\n15) JaredL: Move G1 Blue3 Hellajoey\n\n16) hellajoey: Trade G3 R3 Hellajoey\n\n17) JaredL: Trade G1 R1 Jaredl\n\n18) hellajoey: Move R3 Hellajoey Blue3\n\n19) JaredL: Move Y2 Blue3 Hellajoey\n\n20) hellajoey: Attack Y2 Hellajoey\n\n21) JaredL: Sacrifice G1 Blue3\nBuild G1 Hellajoey\n\n22) hellajoey: Move G2 Hellajoey Blue3\n\n23) JaredL: Build G1 Jaredl\n\n24) hellajoey: Attack G1 Hellajoey\n\n25) JaredL: Sacrifice G3 Jaredl\nBuild G2 Hellajoey\nBuild G2 Hellajoey\nBuild G3 Jaredl\nCatastrophe Hellajoey G\n\n26) hellajoey: Build Y2 Grun\n\n27) JaredL: Trade G3 Y3 Jaredl\n\n28) hellajoey: Sacrifice Y2 Hellajoey\nMove Y2 Grun Jaredl\nMove Y1 Grun Jaredl\nCatastrophe Jaredl Yellow\n\n29) JaredL: Build G1 Jaredl\n\n30) hellajoey: Sacrifice Y2 Hellajoey\nMove G2 Blue3 Jaredl\nMove R3 Blue3 Jaredl\n\n31) JaredL: Build R1 Jaredl\n\n32) hellajoey: Sacrifice R3 Jaredl\nAttack R1 Jaredl\nAttack R1 Jaredl\nAttack G1 Jaredl\n\n33) JaredL: Build G1 Jaredl\n\n34) hellajoey: Pass\nCatastrophe Jaredl Green\n\n\nHomeworlds Online (SDG# 27308)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.30, Ended: 2015.4.10\nParticipants: wil (S), Aghmarck (N)\nWinner: wil\n\n1) Aghmarck: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: welcome and thx for the game!  You new around these parts?  would this be anderson?\n\n3) Aghmarck: Build G1 Aghmarck\n\tAghmarck: Hi! Yes, I&#39;m kind of new, but I&#39;m not sure who Mr. Anderson is though, reminds me of a movie somehow...\n\n4) wil: Build G1 Wil\n\twil: hee hee...just someone who said he was going to join and challenge me...  if you have any questions about the game, don&#39;t hesitate to ask.\n\twil: hee hee...just someone who said he was going to join and challenge me...  if you have any questions about the game, don&#39;t hesitate to ask.\n\n5) Aghmarck: Discover G1 Aghmarck B3 Storm\n\n6) wil: Trade G1 B1 Wil\n\n7) Aghmarck: Build G1 Aghmarck\n\n8) wil: Build B1 Wil\n\n9) Aghmarck: Trade G1 Y1 Aghmarck\n\n10) wil: Discover B1 Wil G2 G2\n\n11) Aghmarck: Build Y1 Aghmarck\n\n12) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n13) Aghmarck: Move Y1 Aghmarck Storm\n\n14) wil: Trade B2 Y2 G2\n\n15) Aghmarck: Build Y2 Storm\n\n16) wil: B Y2 G2\n\n17) Aghmarck: Trade Y2 B2 Storm\n\n18) wil: Trade Y2 R2 G2\n\n19) Aghmarck: Trade B2 R2 Storm\n\n20) wil: Build B2 G2\n\n21) Aghmarck: Build Y2 Storm\n\n22) wil: Discover B2 G2 Y3 Y3\n\n23) Aghmarck: Discover Y1 Aghmarck B3 Sea\n\n24) wil: Trade B3 G3 Wil\n\n25) Aghmarck: Build G1 Aghmarck\n\n26) wil: Build B3 G2\n\n27) Aghmarck: Trade G3 Y3 Aghmarck\n\n28) wil: Discover Y2 G2 G3 G3\n\n29) Aghmarck: Build Y2 Aghmarck\n\n30) wil: Move Y2 G3 Aghmarck\nCatastrophe Aghmarck Y\n\n\tAghmarck: How did I miss that? :)\n\twil: I don&#39;t know... I moved so you couldn&#39;t have it...then you grew it...I was looking all over for a trap!  Thanx for the game!\n\nHomeworlds Online (SDG# 27350)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.30, Ended: 2015.4.7\nParticipants: Aghmarck (S), foksieloy (N)\nWinner: Aghmarck\n\n1) foksieloy: Homeworld G1 B3 Y3\n\n2) Aghmarck: Homeworld Y1 B2 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build Y1 Foksieloy\n\n4) Aghmarck: Build G1 Aghmarck\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) Aghmarck: Build G2 Aghmarck\n\n7) foksieloy: Build G2 Foksieloy\n\n8) Aghmarck: Trade G1 Y1 Aghmarck\n\n9) foksieloy: Trade G2 B2 Foksieloy\n\n10) Aghmarck: Discover G2 Aghmarck B3 Storm\n\n11) foksieloy: Build Y1 Foksieloy\n\tAghmarck: Hi! I&#39;m new around here and had missed your message. good luck and have fun!\n\n12) Aghmarck: Build Y2 Aghmarck\n\tfoksieloy: No problem, if you need assistance, give me a shout.\n\n13) foksieloy: Discover Y1 Foksieloy G2 Tibbers\n\n14) Aghmarck: Trade Y1 B1 Aghmarck\n\n15) foksieloy: Build B1 Foksieloy\n\n16) Aghmarck: B G1 Aghmarck\n\n17) foksieloy: Move B1 Foksieloy Tibbers\n\n18) Aghmarck: Sacrifice G3 Aghmarck\nBuild G2 Aghmarck\nBuild G3 Aghmarck\nBuild G3 Storm\n\n19) foksieloy: Build Y1 Tibbers\n\n20) Aghmarck: Trade G3 Y3 Storm\n\n21) foksieloy: Build Y2 Tibbers\n\n22) Aghmarck: Discover G2 Aghmarck B3 Sea\n\n23) foksieloy: Trade Y1 R1 Tibbers\n\n24) Aghmarck: Sacrifice G3 Aghmarck\nBuild G3 Aghmarck\nBuild G3 Sea\nBuild G3 Storm\n\n25) foksieloy: Discover Y1 Tibbers Y3 Annie\n\n26) Aghmarck: Trade G3 R3 Sea\n\n27) foksieloy: Sacrifice G1 Foksieloy\nBuild Y1 Annie\n\n28) Aghmarck: Trade G3 R3 Aghmarck\n\n29) foksieloy: Sacrifice Y2 Tibbers\nMove Y1 Annie Aghmarck\nMove Y1 Annie Aghmarck\nCatastrophe Aghmarck Y\n\n30) Aghmarck: Sacrifice Y3 Storm\nMove R3 Aghmarck Foksieloy\nMove R3 Sea Tibbers\nMove R3 Tibbers Foksieloy\n\n\tfoksieloy: A light miscalculation :D\r\n\r\nsacrifice y3 foksieloy\r\nmove b2 foksieloy Aghmarck\r\nmove b1 Tibbers sea\r\nmove b1 sea Aghmarck\r\ncatastrophe Aghmarck blue\r\n\r\nYou may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.\r\n\r\nGood game!\n\tAghmarck: Yes, that was pretty close.\r\n\r\nGood game!\n\nHomeworlds Online (SDG# 27309)\nVariants: &quot;Hard time&quot;\nStarted: 2015.3.30, Ended: 2015.4.8\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld G1 B2 Y3\n\tOnePageWars: hi gl hf!\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Build Y1 Onepagewars\n\tSilentTitan: One more time into the breach.....\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) OnePageWars: Discover Y1 Onepagewars G3 Tvtropes\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) OnePageWars: Build Y2 Tvtropes\n\n10) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n11) OnePageWars: Trade Y1 B1 Onepagewars\n\n12) SilentTitan: Build Y1 Sol\n\n13) OnePageWars: Build B1 Onepagewars\n\n14) SilentTitan: Discover Y1 Sol B3 Soul\n\n15) OnePageWars: Move B1 Onepagewars Tvtropes\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Soul\nBuild Y3 Silenttitan\n\n17) OnePageWars: Trade Y2 R2 Tvtropes\n\tOnePageWars: Oh no, I&#39;m dead I&#39;m dead, I&#39;m alive, but I&#39;m dead!\r\nI&#39;m dead, deceased, I&#39;m dead alack the day --\r\nAlack the day, I&#39;m dead, I&#39;m dead, I&#39;m dead.\n\n18) SilentTitan: Trade Y3 G3 Silenttitan\n\tOnePageWars: Do you recognize the two (almost) quotes?\n\tSilentTitan: I do not ... If you said &quot;Aliens one, Humans nothing&quot;.  That one I would have recognized \n\n19) OnePageWars: Trade Y3 G3 Onepagewars\n\tOnePageWars: The first one (line 1) is paraphrased from &#39;The Incredibles&#39;, the second (lines 2 and 3) is paraphrased from &#39;Romeo and Juliet&#39;.\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\tSilentTitan: Yeah, I&#39;d have got the first if you&#39;d had written, &quot;we&#39;re dead&quot;, Dash says it when they resurface after diving to avoid a large piece of the plane they just bailed from.\n\n\tOnePageWars: But not the second if I had said: &quot;She&#39;s dead, deaceased, she&#39;s dead, alack the day, // Alack the day, she&#39;s dead, she&#39;s dead, she&#39;s dead!&quot;?\n\tOnePageWars: thanks for the game.\n\nHomeworlds Online (SDG# 27349)\nVariants: &quot;Hard time&quot;\nStarted: 2015.4.2, Ended: 2015.4.6\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld B2 G1 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tOnePageWars: gl hf!\n\twil: Thanx for the game!!\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) wil: Build G1 Wil\n\n5) OnePageWars: Discover Y1 Onepagewars G3 Table_tennis\n\n6) wil: Build G1 Wil\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) wil: Discover G1 Wil B2 B2\n\n9) OnePageWars: Trade Y1 B1 Onepagewars\n\n10) wil: Build G2 Wil\n\n11) OnePageWars: Build Y1 Onepagewars\n\n12) wil: Discover G2 Wil Y2 Y2\n\n13) OnePageWars: Trade Y1 R1 Onepagewars\n\n14) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G2 B2\nBuild G3 Wil\n\n15) OnePageWars: Build Y1 Onepagewars\n\n16) wil: Trade G2 Y2 B2\n\n17) OnePageWars: Build R1 Onepagewars\n\n18) wil: S G3 Wil\nB G2 B2\nB G3 B2\nB G3 Wil\n\n19) OnePageWars: Move R1 Onepagewars Table_tennis\n\n20) wil: T G3 Y3 B2\n\n21) OnePageWars: Build R1 Table_tennis\n\n22) wil: Trade Y2 R2 B2\n\n23) OnePageWars: Build R2 Onepagewars\n\n24) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B2\nBuild R2 B2\n\n\tOnePageWars: good game, thanks for the game.\n\twil: Yes there wasn&#39;t enough room in this galaxy for both of us!\n\nHomeworlds Online (SDG# 27401)\nVariants: &quot;Hard time&quot;\nStarted: 2015.4.8, Ended: 2015.5.27\nParticipants: Aghmarck (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R2 B3 G3\n\n2) Aghmarck: Homeworld G1 B2 Y3\n\tMandrel: Have a good game.\n\tAghmarck: Hi, good luck and have fun!\n\n3) Mandrel: Build G1 Mandrel\n\n4) Aghmarck: Build Y1 Aghmarck\n\n5) Mandrel: Build G1 Mandrel\n\n6) Aghmarck: Trade Y1 B1 Aghmarck\n\n7) Mandrel: Trade G1 Y1 Mandrel\n\n8) Aghmarck: Build Y1 Aghmarck\n\n9) Mandrel: Discover G1 Mandrel B1 Anomaly\n\tAghmarck: Hi Mandrel, are you still there? Cheers!\n\n10) Aghmarck: Build B1 Aghmarck\n\tMandrel: Apologies, hectic few days, should be able to keep up a bit better now.\n\tAghmarck: That&#39;s ok. I just wanted to make sure you were not going to run out of time without realizing it.\n\tMandrel: Cheers, wouldn&#39;t have been the first time that&#39;s happened sadly!\n\n11) Mandrel: Build G1 Mandrel\n\n12) Aghmarck: Discover B1 Aghmarck G3 Treant\n\n13) Mandrel: Build G2 Anomaly\n\n14) Aghmarck: Build B2 Treant\n\n15) Mandrel: Build G2 Anomaly\n\n16) Aghmarck: T B2 Y2 Treant\n\n17) Mandrel: Trade G2 B2 Anomaly\n\n18) Aghmarck: Build B2 Treant\n\n19) Mandrel: Trade G2 Y2 Anomaly\n\n20) Aghmarck: Trade B2 G2 Treant\n\n21) Mandrel: Build G2 Anomaly\n\n22) Aghmarck: Build B2 Treant\n\n23) Mandrel: Trade G2 R2 Anomaly\n\n24) Aghmarck: Sacrifice Y2 Treant\nMove B1 Treant Anomaly\nMove B2 Treant Anomaly\nCatastrophe Anomaly Blue\n\n25) Mandrel: Discover G1 Mandrel B1 Anomaly2\n\n26) Aghmarck: Build B1 Aghmarck\n\n27) Mandrel: B G1 Mandrel\n\n28) Aghmarck: B B2 Aghmarck\n\n29) Mandrel: B G2 Anomaly2\nCatastrophe Aghmarck Blue\n\n\tAghmarck: whoops :)\n\nHomeworlds Online (SDG# 27414)\nVariants: &quot;Unrated&quot;\nStarted: 2015.4.9, Ended: 2015.5.6\nParticipants: Takvorian (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\tTakvorian: Hello again,\r\nthanks for setting up a teaching game! I am very interested to know what you are thinking when making moves in Homeworlds.\n\n2) Takvorian: Homeworld R1 B2 G3\n\twil: I&#39;ve tried other scenarios but have always come back to green ships...I don&#39;t wanna give up a factory possibility..it just isn&#39;t worth it.  Now for you...since the bank is limited you need to insure you don&#39;t give me a monopoly opportunity immediately (no small yellow!!)\n\tTakvorian: So far, I had always chosen a homeworld with a red star, so I will do it again here. I remember not to choose the same color of your small star from our other game.\n\n3) wil: Build G1 Wil\n\n4) Takvorian: Build G1 Takvorian\n\twil: red in homeworld is good..you never have to worry about protection in your homeworld...I like yellow..it allows me to get out early and take to the stars...but differing openings require differing responses.\n\n5) wil: D G1 Wil Y2 Y2\n\twil: i didn&#39;t mean to back up..I was being clumsy\n\twil: Begin with the end in mind...  I look at three things...how can I get rid of the other homeworld stars...how can I get rid of the ships....how can I get to Queens first.\n\n6) Takvorian: Trade G1 R1 Takvorian\n\tTakvorian: So the first move is always easy ;)\r\nIt seems to me that as in many strategy games there is a bit of a first player advantage, right?\r\nAnd the only possibility to get rid of homeworld stars is to trigger a catastrophe, or?\n\twil: Yes and yes\n\n7) wil: B G1 Y2\n\twil: The advantage of yellow in my homeworld... Being able to get right out\n\n8) Takvorian: Build R1 Takvorian\n\tTakvorian: I don&#39;t know, was my move o.k.?\n\tTakvorian: Or should I go for yellow?\n\twil: either are good choices...  there are only two smalls. yellow however only has two yellows..possibly a faster way to get to queens and lets you get outta your homeworld...you already have a red so you are limited on how many of those you can grow before you have to get a yellow to move out...  \n\twil: red should force me to get a red soon...yellow doesn&#39;t...but yellow looks to me to be the better path...although both will force me off greens soon.\n\tTakvorian: ok, so because my red isn&#39;t a big blunder, I&#39;ll keep it and see what will happen...\r\n\n\twil: You tell me if you wanna back up and play differently or want to leave it alone and tell me if you want to play it out and see how it works out.\n\n9) wil: Build G1 Wil\n\tTakvorian: As I see it, my options are very limited at this point. I will grab the last small red...\n\n10) Takvorian: Build G2 Takvorian\n\twil: That is right...at this point...as I said,I wold have headed for yellow...so you could get out and about...but this isn&#39;t bad..I have to build a green, lets you get into drones, you usually don&#39;t want the last small of anything, lets somebody else get into mediums...unless you control the market...which you currently do...\n\n11) wil: Discover G1 Y2 B3 B3\n\tTakvorian: My Homeworld looks a bit crowded with reds at the moment but as you do not have a red yet I think it is not too dangerous...\r\nI will build a g2 now and perhaps trade it later on into a y2\n\n12) Takvorian: Trade G2 Y2 Takvorian\n\n13) wil: Build G2 B3\n\twil: Exactly and I made a mistake my not doing the move I just made last time....that way I would have got the g2 when you built a g1\n\n14) Takvorian: Build Y1 Takvorian\n\tTakvorian: Is this trade reasonable now?\n\n15) wil: Trade G2 Y2 B3\n\n16) Takvorian: Discover R1 Takvorian B3 Tb3\n\tTakvorian: Now the point has come, where I really have no idea how to proceed...\n\n17) wil: Build G2 Wil\n\twil: There are two major stall points in the game...when you run out of smalls or mediums and taking the last one will allow the other guy to jump up a notch on ya and get more powerful ships... (one goal...get to 3s first) the other is when we&#39;ve completely exhausted the bank...there is nothing else left to take...now what do I do...  In both cases it must always be, begin with the end in mind...you need to put 3 blues and 3 yellows within shooting distance of my homeworld to create a doomsday machine and end the game (and have a way to get them in)  Or you need to get enough 3s within shooting distance and enough big red guns to out power me in my homeworld...the entire game is about amassing enough ships in the right positions to be able to accomplish an end game condition.\r\n\n\twil: Along the way, you try to take over stars that the other has built, take over ships the other has created, and catastrophe at times to reboot the galaxy...  It is a game of chess, of positioning and control of the galaxy...in a balanced way so as the other guy cannot do the same to you.\n\twil: Along the way, you try to take over stars that the other has built, take over ships the other has created, and catastrophe at times to reboot the galaxy...  It is a game of chess, of positioning and control of the galaxy...in a balanced way so as the other guy cannot do the same to you.\n\twil: I am looking at, I build another g2, trade for r2, have the y2 to send it in if you don&#39;t clear out your reds (forces you to move some out)...  I took the Y2 so if you took a Y1 I would be able to get a Y3...if you move Ys out so you can get two to my one...I&#39;ll create an investment and leave a y2 back in the bank just to cause trouble maybe...If I were you I&#39;d be moving out and creating more stars, more bases of operation in the galaxy to prepare to launch attacks..\n\tTakvorian: Your thoughts are very helpful for me, although they are still at a much higher level than mine...;)\r\nI see that my homeworld is a bit crowded with reds, so I will move one out, but even then I don&#39;t know if it is better to build a yellow or blue system. I opt for blue. What do you think?\n\n18) Takvorian: Move Y2 Takvorian B3\n\n19) wil: Discover Y2 B3 G2 G2\n\twil: a.  we may get another commentator!  TeeTeeTee one of the best on the board (if not the best) has asked to pipe in...his thoughts and analysis are always top notch.  But tell me why you should n&#39;t build a yellow...\n\tTeeTeeTee: Hi Takvorian,\r\n\r\nI had written some comments, but you&#39;ve both already moved in the time it took me to write them! Serves me right for trying to say too much, I guess...\r\n\r\nI would probably have done something different on the last turn... I think that your greatest advantage at this point in the game is that you have red ships and Wil does not. At present, if you started moving ships into Wil&#39;s worlds, then he has to run, or lose the ships. (Remember that you can attack a ship by sacrificing a red ship in a different system, and that the attacking ship doesn&#39;t need to be red: it only needs to be the same size or larger than the attacked ship.)\r\n\r\n(On the question of blue or yellow world: I&#39;d have opted for discovering a green world. In the early game, the primary aim is to get a large ship before your opponent, or to prevent your opponent from getting one. Wil&#39;s route to large ships is through building greens, and staking out a g3 star stops him from going a large ship ahead.)\r\n\r\nHope this helps!\n\n20) Takvorian: Build R2 Takvorian\n\tTakvorian: Sorry for my late answer wasn&#39;t online very often during the last days.\r\n\n\tTakvorian: Hi TeeTeeTee,\r\n\r\nThanks for taking the time to comment on our game. Very helpful ideas! There is so much to discover in this game...\n\twil: no worries..  So nice move, I like the agressiveness... you&#39;ve got a red, I haven&#39;t any, nice move to head in and attack... do I mitigate it by moving on?  or by growing yellows?  \n\n21) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 B3\nBuild G3 Wil\n\n22) Takvorian: Build Y1 Takvorian\n\tTakvorian: is building another red reasonable?\r\n\n\twil: Its not terrible...but at every move there is a theoretical &#39;best move&#39; your concern is the inability to factory...mine is I have no red...so while I can factory, I can also be in great trouble... I think my thing is to factory and get another big 3...since I have a y2 I&#39;ll be able to keep you at bay from getting a factory... I&#39;ll wait a day...\n\twil: note:  not that I ever know what the theoretical best move is...  the game takes such wonderful twists and turns..\n\tTakvorian: I simply have no other ides what to do...\r\n\n\n23) wil: Build Y3 G2\n\twil: moving a r1 to a new G3 star would have kept me from getting the new 3....but I&#39;ve still plenty of work to do...  trading out my 3 is not easy as you can grow it...(although I could trade it for  Y3...and that would keep you at bay)\n\n24) Takvorian: Move Y1 Takvorian Tb3\n\twil: b y3 g2\n\n25) wil: Trade G3 R3 B3\n\n\tTakvorian: Wil, thanks for the patience you had with me, but I will resign now. Seems that Homeworlds is not really my cup of tea...\n\twil: Oh well...  take care...  hope to see you around.\n\twil: http://new.wunderland.com/2015/05/05/the-i-beat-andy-medal/\r\n\n\nHomeworlds Online (SDG# 27413)\nStarted: 2015.4.10, Ended: 2015.4.13\nParticipants: anirtak (S), ringebri (N)\nWinner: ringebri\n\n1) ringebri: Homeworld B3 G2 Y3\n\n\tringebri: I&#39;ve played this before but was bad at it. John got to be pretty good and even joined the ladder.\n\tanirtak: ugh - i can&#39;t figure out the commands.  i need to look at the rules when i have more time :( - maybe tomorrow\n\tringebri: That&#39;s ok.  I never quite got it, myself. Though it is one of the most popular games on this system.\n\nHomeworlds Online (SDG# 26789)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2015.4.14, Ended: 2015.7.23\nParticipants: agentofchaos (S), wil (W), DiEvAl (N), OnePageWars (E)\nWinner: wil\n\n1) DiEvAl: Homeworld R1 B2 G3\n\n2) OnePageWars: Homeworld Y3 B1 G3\n\n3) agentofchaos: Homeworld R2 B3 G3\n\n4) wil: Homeworld B3 R1 G3\n\n5) DiEvAl: Build G1 Dieval\n\n6) OnePageWars: Build G1 Onepagewars\n\n7) agentofchaos: Build G1 Agentofchaos\n\tOnePageWars: gl hf!\n\n8) wil: Build G1 Wil\n\n9) DiEvAl: Trade G1 Y1 Dieval\n\n10) OnePageWars: Trade G1 Y1 Onepagewars\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) wil: Trade G1 Y1 Wil\n\n13) DiEvAl: Build G1 Dieval\n\n14) OnePageWars: Build G1 Onepagewars\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) wil: Build G1 Wil\n\twil: b g1 wil\n\n17) DiEvAl: Trade G1 R1 Dieval\n\n18) OnePageWars: Trade G1 R1 Onepagewars\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\n20) wil: Build Y1 Wil\n\n21) DiEvAl: Build R2 Dieval\n\n22) OnePageWars: Build R2 Onepagewars\n\n23) agentofchaos: Build R2 Agentofchaos\n\n24) wil: Build Y2 Wil\n\n25) DiEvAl: Build Y2 Dieval\n\n26) OnePageWars: Discover R2 Onepagewars G2 Tom_m_riddle\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) wil: Trade Y2 R2 Wil\n\n29) DiEvAl: Discover G3 Dieval R3 Draco_l_malfoy\n\n30) OnePageWars: Build R3 Tom_m_riddle\n\n31) agentofchaos: Discover R1 Agentofchaos G1 Kakrafoon\n\n32) wil: Discover R2 Wil G2 Serenity\n\tDiEvAl: Let&#39;s keep the theme. ;-)\n\tOnePageWars: I agree. :)\n\n33) DiEvAl: Move Y1 Dieval Draco_l_malfoy\n\tDiEvAl: We should attack anyone who disagrees!\n\tOnePageWars: let&#39;s. :)\n\twil: theme?  what theme?\n\tOnePageWars: That of Harry Potter. :) Or Harry Potter Characters. Or Harry Potter Evil Characters. I&#39;m not quite sure which.\n\n34) OnePageWars: Build R3 Onepagewars\n\n35) agentofchaos: Build R3 Kakrafoon\n\n36) wil: Build R3 Serenity\n\n37) DiEvAl: Build G1 Draco_l_malfoy\n\tOnePageWars: Just to keep a record,\r\n\r\nTom_M_Riddle and Draco_L_Malfoy are referencing Harry Potter.\r\n\r\nKakrafoon is referencing The Hitchhiker&#39;s Guide to the Galaxy.\r\n\r\nSerenity is referencing Serenity (Joss Whedon, 2005)\n\tOnePageWars: Is that correct on the last one? Or is it just a serene planet?\n\twil: Firefly...\n\tOnePageWars: Keep Flying.\n\n38) OnePageWars: Build G1 Onepagewars\n\n39) agentofchaos: Build Y2 Agentofchaos\n\tagentofchaos: A diverse bunch of franchises here!\n\n40) wil: Move Y1 Wil Serenity\n\n41) DiEvAl: Move G1 Draco_l_malfoy Dieval\n\n42) OnePageWars: Trade G1 B1 Onepagewars\n\n43) agentofchaos: Move Y1 Agentofchaos Kakrafoon\n\n44) wil: Build Y2 Serenity\n\n45) DiEvAl: Trade R1 B1 Dieval\n\twil: bumpin....\n\n46) OnePageWars: Move B1 Onepagewars Tom_m_riddle\n\n47) agentofchaos: Trade Y2 B2 Agentofchaos\n\n48) wil: Discover Y2 Serenity G3 Xuan-wu\n\n49) DiEvAl: Move B1 Dieval Draco_l_malfoy\n\n50) OnePageWars: Build B1 Tom_m_riddle\n\n51) agentofchaos: Build Y2 Kakrafoon\n\n52) wil: Sacrifice G3 Wil\nBuild Y2 Serenity\nBuild Y3 Xuan-wu\nBuild Y3 Wil\n\n53) DiEvAl: Sacrifice G3 Draco_l_malfoy\nBuild R1 Dieval\nBuild Y3 Draco_l_malfoy\nBuild Y3 Dieval\n\tOnePageWars: Is xuan-wu a firefly reference to Niska&#39;s inspiration?\n\n54) OnePageWars: Build G1 Onepagewars\n\twil: in the firefly system...\n\twil: I need more binary Homeworld games...I am not in any right now....\n\twil: rated or non rated, competitive or training/discussion games...all are welcome.\n\twil: Is this about to go the way of the vast majority of multiplayer games??\n\tOnePageWars: stagnation?\n\twil: historically (in my experience) someone drops out... and yeah it could be due to just the time between the moves when there are so many people...if each move takes a few days it is a couple of weeks before you move again and someone forgets...\n\twil: historically (in my experience) someone drops out... and yeah it could be due to just the time between the moves when there are so many people...if each move takes a few days it is a couple of weeks before you move again and someone forgets...\n\n55) agentofchaos: Move B2 Agentofchaos Kakrafoon\n\tagentofchaos: Sorry for holding up the game, been a bit distracted and busy lately\n\n56) wil: Trade Y1 B1 Wil\n\n57) DiEvAl: Trade Y3 G3 Draco_l_malfoy\n\n58) OnePageWars: Trade B1 Y1 Tom_m_riddle\n\n59) agentofchaos: Build Y3 Agentofchaos\n\n60) wil: Move B1 Wil Serenity\n\n61) DiEvAl: Build G1 Draco_l_malfoy\n\n62) OnePageWars: Discover G3 Onepagewars B2 River_tam\n\n63) agentofchaos: Build B1 Kakrafoon\n\n64) wil: Build G2 Wil\n\n65) DiEvAl: Sacrifice Y2 Dieval\nDiscover G3 Draco_l_malfoy G2 Readtheinstruct\nMove R1 Dieval Draco_l_malfoy\n\n66) OnePageWars: Build G2 River_tam\n\n67) agentofchaos: Build G3 Agentofchaos\n\n68) wil: Build Y2 Wil\n\tOnePageWars: He looks better in red. No, can&#39;t go back, don&#39;t want to go back. They took Christmas away. Doesn&#39;t matter: they&#39;re here. Two by two hands of blue, two by two hands of blue. \n\n69) DiEvAl: Sacrifice G3 Readtheinstruct\nBuild G2 Dieval\nBuild G3 Draco_l_malfoy\nBuild B2 Draco_l_malfoy\n\n70) OnePageWars: Build B2 Tom_m_riddle\n\n71) wil: Build B3 Serenity\n\n72) DiEvAl: Move G3 Draco_l_malfoy Kakrafoon\n\tDiEvAl: Just Read The Instructions is a reference both to Culture series and to Elon Musk&#39;s pet project.\n\n73) OnePageWars: Discover B2 Tom_m_riddle B3 Simon_tam\n\tOnePageWars: River_Tam and my comment are both references to Firefly.\n\n74) wil: Sacrifice Y2 Serenity\nMove B3 Serenity Kakrafoon\nMove B3 Kakrafoon Agentofchaos\n\n75) DiEvAl: Sacrifice G2 Dieval\nBuild G2 Dieval\nBuild Y2 Draco_l_malfoy\n\n76) OnePageWars: Move R3 Tom_m_riddle Xuan-wu\n\n77) wil: Sacrifice R2 Serenity\nAttack R3E Xuan-wu\nAttack Y3S Agentofchaos\n\n78) DiEvAl: Sacrifice R2 Dieval\nAttack R3S Kakrafoon\nAttack Y2S Kakrafoon\n\n79) OnePageWars: Build R2 Tom_m_riddle\n\n80) wil: Build B3 Serenity\n\n81) DiEvAl: Attack R1S Kakrafoon\n\n82) OnePageWars: Build R2 Onepagewars\n\n83) wil: Attack G3S Agentofchaos\n\n84) DiEvAl: Sacrifice Y2 Kakrafoon\nMove R1 Kakrafoon Serenity\nMove R1 Serenity Onepagewars\nCatastrophe Onepagewars R\n\n85) OnePageWars: Build Y2 Tom_m_riddle\n\n86) wil: Attack R2S Agentofchaos\n\n87) DiEvAl: Attack Y1S Kakrafoon\n\n88) OnePageWars: Move R2 Tom_m_riddle Onepagewars\n\n89) wil: Move R3 Serenity Draco_l_malfoy\n\n90) DiEvAl: Sacrifice Y2 Draco_l_malfoy\nDiscover Y1 Draco_l_malfoy R2 Readtheinstruct\nMove G1 Draco_l_malfoy Readtheinstruct\n\n91) OnePageWars: Move Y1 Tom_m_riddle Simon_tam\n\n92) wil: Build Y2 Serenity\n\n93) DiEvAl: Trade B1 R1 Draco_l_malfoy\nCatastrophe Draco_l_malfoy R\n\tOnePageWars: I get the strangest feeling this is not so good for me.\n\n94) OnePageWars: Build R1 Tom_m_riddle\n\n95) wil: Move G2 Wil Readtheinstruct\n\n96) DiEvAl: Sacrifice Y3 Dieval\nMove Y1 Kakrafoon Readtheinstruct\nMove Y1 Readtheinstruct Onepagewars\nMove Y1 Readtheinstruct Onepagewars\nCatastrophe Onepagewars Y\n\n97) OnePageWars: Build R1 Onepagewars\n\n98) wil: Attack G1N Readtheinstruct\n\tDiEvAl: Is the timer broken for anyone else?\n\n99) DiEvAl: Build R1 Kakrafoon\n\twil: the way this multiplayer game works (as far as I can tell) when someone drops out and it becomes my turn...it says that MY time ran out...\n\tOnePageWars: yeah; same here. scared me for a few turns. :)\n\n100) OnePageWars: Trade G3 R3 River_tam\n\n101) wil: Build G3 Wil\n\n102) DiEvAl: Attack B2S Kakrafoon\n\tDiEvAl: Poor Draco :(\n\tDiEvAl: Does anyone want to write an eulogy for him?\n\tOnePageWars: Nah; noone likes Draco. :)\n\n103) OnePageWars: Build R3 River_tam\n\n104) wil: Sacrifice Y2 Wil\nMove G1 Readtheinstruct Kakrafoon\nMove G2 Readtheinstruct Kakrafoon\nCatastrophe Kakrafoon G\n\tDiEvAl: What about Astoria Greengrass?\n\n105) DiEvAl: Trade G1 B1 Dieval\n\n106) OnePageWars: Trade G2 Y2 River_tam\n\n107) wil: Sacrifice Y3 Agentofchaos\nMove B3 Agentofchaos Onepagewars\nMove B1 Serenity Onepagewars\nMove B3 Serenity Onepagewars\nCatastrophe Onepagewars B\n\n108) wil: Move Y3 Xuan-wu Dieval\n\n\tDiEvAl: nope...just wil\n\twil: lol...you are back early... and I was just about to send a cruise ship full of tourists to visit your fine home...\n\twil: wierd...I have to move?  It shows you, OPW still in the mix?\n\twil: Well how about that...our tourist ship got to dock anyway...\n\tOnePageWars: good game, all!\n\twil: It was my first 4 person game to make it to the end...and I guess we didn&#39;t really since agent of chaos got kicked out..\n\nHomeworlds Online (SDG# 26822)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2015.4.14, Ended: 2015.6.2\nParticipants: agentofchaos (S), wil (N), DiEvAl (E)\nWinner: wil\n\n1) wil: Homeworld Y3 B2 G3\n\n2) DiEvAl: Homeworld R1 B2 G3\n\twil: While I feel binary is the only way to go... and these multiplayer hw games often end up with someone forgetting about it....  I got a jones for HW...so I&#39;ll play!\n\n3) agentofchaos: Homeworld R1 B3 G3\n\tDiEvAl: Why is &quot;E&quot; at the bottom?\n\twil: N is at the bottom for me...the default always puts &#39;you&#39; at the bottom so to provide you a perspective of sitting at the table.\n\n4) wil: Build G1 Wil\n\tagentofchaos: I&#39;ll try not to forget about the game! Have fun all :-)\n\twil: uh oh...I may have a bit of an advantage with you two with short universes...  I&#39;ll wait a bit to see if you wanna change your homeworld AOC\n\n5) DiEvAl: Build G1 Dieval\n\tagentofchaos: OK thanks, for some reason I was sure my system was different from East\n\twil: no worries....\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) wil: Trade G1 R1 Wil\n\n8) DiEvAl: Trade G1 Y1 Dieval\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) wil: Build R2 Wil\n\n11) DiEvAl: Build Y1 Dieval\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) wil: Discover R2 Wil G1 G1\n\n14) DiEvAl: Trade Y1 G1 Dieval\n\n15) agentofchaos: Trade R2 Y2 Agentofchaos\n\n16) wil: Build R2 Wil\n\n17) DiEvAl: Trade G3 R3 Dieval\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) wil: Trade R2 B2 Wil\n\n20) DiEvAl: Discover R3 Dieval Y3 Y3\n\n21) agentofchaos: Discover Y2 Agentofchaos G2 Morgostar\n\n22) wil: Build R2 G1\n\n23) DiEvAl: Move R3 Y3 Morgostar\n\n24) agentofchaos: Discover Y2 Morgostar G3 Hadehome\n\n25) wil: Build R2 Wil\n\n26) DiEvAl: Build G1 Dieval\n\n27) agentofchaos: Build Y1 Agentofchaos\n\n28) wil: Trade R2 Y2 Wil\n\n29) DiEvAl: Build Y1 Dieval\n\n30) agentofchaos: Build Y2 Agentofchaos\n\n31) wil: Move Y2 Wil G1\n\n32) DiEvAl: Build R2 Morgostar\n\n33) agentofchaos: Discover R1 Agentofchaos G2 Elysiadrome\n\n34) wil: Discover R2 G1 G3 G3\n\n35) DiEvAl: Sacrifice Y1 Dieval\nMove R3 Morgostar G3\n\n36) agentofchaos: Build R2 Elysiadrome\n\n37) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 G1\nBuild R3 G3\n\n38) DiEvAl: Attack R3N G3\n\n39) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Elysiadrome G3\nMove Y2 Hadehome Dieval\nCatastrophe G3 R\n\n40) wil: Move R3 G1 Elysiadrome\n\n41) DiEvAl: Build Y1 Dieval\n\tDiEvAl: Thanks for that ship\n\twil: You do realize the dire straights you are in...yes?  No large ship in your homeworld, anyone can waltz in and pick off those pawns one by one... and I gave up that toxic planet G3 there is an infection spreading due to overpopulation and either of us will be soon saving the galaxy by eliminating it and all its inhabitants...  star ship captains code requires me to at least give you a heads up..  you now have a chance to save yourself...\n\n42) agentofchaos: Sacrifice R2 Elysiadrome\nAttack Y1E Dieval\nAttack Y1E Dieval\n\n43) wil: Build Y2 G1\n\n44) DiEvAl: Trade G1 R1 Dieval\n\n45) agentofchaos: Attack R1E Dieval\n\n46) wil: Discover Y2 G1 B2 B2\n\n47) DiEvAl: Attack R1S Dieval\n\n48) agentofchaos: Discover Y1 Dieval G3 Jartravartid\n\n49) wil: Trade R3 G3 Wil\n\n50) DiEvAl: Build R2 Dieval\n\n51) agentofchaos: Attack R2E Dieval\n\n52) wil: Sacrifice G3 Wil\nBuild R2 Elysiadrome\nBuild R3 Wil\nBuild R3 Wil\n\n53) DiEvAl: Build R3 Dieval\n\n54) agentofchaos: Attack G1E Dieval\nCatastrophe Dieval R\n\n55) wil: Trade R3 Y3 Wil\n\n56) agentofchaos: Trade Y2 R2 Dieval\n\n57) wil: Build Y2 G1\n\n58) agentofchaos: Build Y2 Dieval\n\n59) wil: Move Y2 G1 Jartravartid\n\n60) agentofchaos: Build Y3 Jartravartid\n\n61) wil: Build Y3 G1\n\n62) agentofchaos: Build G1 Agentofchaos\n\n63) wil: Move Y2 G1 Jartravartid\nCatastrophe Jartravartid Y\n\n64) wil: Move Y3 G1 Morgostar\n\n\nHomeworlds Online (SDG# 27359)\nVariants: &quot;Hard time&quot;\nStarted: 2015.4.14, Ended: 2015.4.26\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y2 G3\n\n2) SilentTitan: Homeworld G1 R3 B3\n\tSilentTitan: Lol.  Are u bored?\n\n3) wil: Build G1 Wil\n\twil: Why do you ask that?  I just like playing the game. Dang interesting opening!\n\n4) SilentTitan: Build B1 Silenttitan\n\twil: Interesting opening, but I possibly problematic with the small g?\n\n5) wil: Build G1 Wil\n\n6) SilentTitan: Trade B1 Y1 Silenttitan\n\n7) wil: Discover G1 Wil B1 B1\n\n8) SilentTitan: Build B1 Silenttitan\n\n9) wil: Build G2 Wil\n\n10) SilentTitan: Trade B3 G3 Silenttitan\n\n11) wil: Trade G2 Y2 Wil\n\n12) SilentTitan: Discover G3 Silenttitan Y2 Sol\n\n13) wil: Build G2 B1\n\twil: I just had someone do that to me the other day...interesting...\n\n14) SilentTitan: Sacrifice G3 Sol\nBuild B1 Silenttitan\nBuild B2 Silenttitan\nBuild Y1 Silenttitan\n\twil: the opening I tried the other day... yellow/red homeworld...against all rules...but I need to try again...\n\n15) wil: Build G2 Wil\n\n\twil: dang..\r\n\n\tSilentTitan: So sorry. Life has gotten very hectic again.\n\nHomeworlds Online (SDG# 27376)\nVariants: &quot;Hard time&quot;\nStarted: 2015.4.15, Ended: 2015.5.6\nParticipants: wil (S), Grosseteste (N)\nWinner: wil\n\n1) Grosseteste: H Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: thx for the game!  \n\n3) Grosseteste: B G1 Grosseteste\n\n4) wil: Build G1 Wil\n\n5) Grosseteste: D G1 Grosseteste B3 Lucy\n\n6) wil: Trade G1 B1 Wil\n\n7) Grosseteste: B G1 Grosseteste\n\n8) wil: Build B1 Wil\n\n9) Grosseteste: T G1 Y1 Grosseteste\n\n10) wil: Discover B1 Wil G2 G2\n\n11) Grosseteste: Build G1 Grosseteste\n\n12) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 Wil\nBuild B3 G2\n\n13) Grosseteste: Trade G3 B3 Grosseteste\n\n14) wil: Sacrifice B2 G2\nTrade B3 R3 G2\nTrade B2 Y2 Wil\n\n15) Grosseteste: T Y1 R1 Grosseteste\n\n16) wil: Build B2 G2\n\n17) Grosseteste: B R1 Grosseteste\n\n18) wil: Build B2 G2\n\n\twil: hate that...\n\tGrosseteste: Thanks for the game, sorry I didn&#39;t get back to take my medicine but you got ahead of me really quick there.  Well done.\n\nHomeworlds Online (SDG# 27448)\nStarted: 2015.4.18, Ended: 2015.4.24\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) ts52: Build G1 Ts52\n\twil: should i terminate?\n\tts52: No. Sorry... man, I suck at keeping up with these. Moving now.\n\n4) wil: Build G1 Wil\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) wil: Trade G1 B1 Wil\n\n7) ts52: Build G1 Gonzo\n\n8) wil: Build B1 Wil\n\n9) ts52: Trade G1 Y1 Gonzo\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) ts52: Build Y1 Gonzo\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\twil: lol...you are making up for slow moves now!!  (would be great if the site had a button for us to press saying...&quot;online and ready to play live!&quot;  \n\n13) ts52: Build Y2 Gonzo\n\n14) wil: Move B1 Y3 Gonzo\n\tts52: :) Trying to make up for it a bit. \n\n15) ts52: Trade Y2 R2 Gonzo\n\n16) wil: Move B2 Y3 Gonzo\n\n17) ts52: Discover G1 Gonzo B3 Grover\n\twil: I love how weird and interesting this game can be...  \r\n\n\n18) wil: Trade B3 G3 Wil\n\tts52: I agree. Very interesting. I really need to get some of my coworkers into it so I can play in person.\n\n19) ts52: Attack B2 Gonzo\n\n20) wil: Build B3 Wil\n\twil: yes in person games are great...although they do reach stalls and need some time...  (unless you are chess clocking it) my roomate and i used to keep a game going all the time... we&#39;d get the early play down face to face..and then it would slow as the plot thickened..and become more like this...\n\twil: yes in person games are great...although they do reach stalls and need some time...  (unless you are chess clocking it) my roomate and i used to keep a game going all the time... we&#39;d get the early play down face to face..and then it would slow as the plot thickened..and become more like this...\n\n21) ts52: Move B2 Gonzo Y3\n\n22) wil: Discover B2 Y3 Y2 Y2\n\n23) ts52: Move B2 Y3 Wil\nCatastrophe Wil Blue\n\n24) wil: Build G1 Wil\n\twil: had no idea where this experiment would go...still don&#39;t\n\twil: lol what was I thinkin?  I new I had to change that....Good show!!\n\twil: this is over....\n\n25) ts52: Attack B1 Gonzo\n\n26) wil: Discover G1 Wil B3 B3\n\tts52: Yeah, but my endgame sucks....\n\n27) ts52: Move Y1 Gonzo Grover\n\n28) wil: Build G1 B3\n\n29) ts52: Build G2 Grover\n\twil: I feel like that poor knight in MP Holy Grail...no arms, no legs, still want to fight...\n\twil: and to think I woke you up for this abuse!!  (I surely don&#39;t deserve the top of the ladder, someone needs to knock me outta there!)\n\n30) wil: Build G2 B3\n\tts52: damn, meant to type y2, not g2. oh well...\n\tts52: I can&#39;t remember the last ladder game I played. Maybe it&#39;s time to challenge you... :)\n\n31) ts52: Build Y2 Grover\n\twil: I&#39;d say so!\n\n32) wil: Build G2 Wil\n\n33) ts52: Sacrifice Y2 Grover\nMove G1 Grover Wil\nMove G2 Grover Wil\nCatastrophe Wil Green\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 27463)\nVariants: &quot;Hard time&quot;\nStarted: 2015.4.21, Ended: 2015.5.18\nParticipants: Grosseteste (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G1 R2 B3\n\n2) Grosseteste: H Y3 B1 G3\n\tgoulo: man, i&#39;ve not played this game in a while! thanks for the invitation.\n\n3) goulo: Build B1 Goulo\n\n4) Grosseteste: B G1 Grosseteste\n\n5) goulo: Build B1 Goulo\n\n6) Grosseteste: B G1 Grosseteste\n\n7) goulo: Trade B3 Y3 Goulo\n\n8) Grosseteste: Discover G1 Grosseteste B2 Chuck\n\n9) goulo: Discover B1 Goulo G3 Smeraldego\n\n10) Grosseteste: B G2 Grosseteste\n\n11) goulo: Build B2 Smeraldego\n\n12) Grosseteste: Trade G2 Y2 Grosseteste\n\n13) goulo: Build B2 Smeraldego\n\n14) Grosseteste: T G3 B3 Grosseteste\n\n15) goulo: Build B3 Goulo\n\n\tgoulo: ludus interruptus. :/\n\tGrosseteste: Sorry, had a bit of life intervene.  I suspect this won&#39;t be out last meeting :)\n\nHomeworlds Online (SDG# 27464)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2015.4.21, Ended: 2015.4.28\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B2 Y1 G3\n\tGrissom: I was just thinking about you the other day. I would have challenged but i was busy with the release.\n\n2) Grissom: Homeworld R3 B2 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Discover G1 Hellajoey B3 Blu3\n\n6) Grissom: Trade G1 Y1 Grissom\n\n7) hellajoey: Build G1 Blu3\n\n8) Grissom: Build Y1 Grissom\n\n9) hellajoey: Build G1 Hellajoey\n\n10) Grissom: Build G2 Grissom\n\n11) hellajoey: Build G2 Hellajoey\n\n12) Grissom: Discover Y1 Grissom B1 Lilblu\n\n13) hellajoey: Discover G2 Hellajoey G3 Gre3n\n\n14) Grissom: Sacrifice G3 Grissom\nBuild G2 Grissom\nBuild G3 Grissom\nBuild Y2 Grissom\n\n15) hellajoey: Sacrifice G2 Gre3n\nBuild G2 Blu3\nBuild G3 Hellajoey\n\n16) Grissom: Sacrifice G3 Grissom\nBuild Y2 Lilblu\nBuild Y2 Lilblu\nBuild Y3 Grissom\n\n17) hellajoey: Discover G3 Hellajoey G3 Gre3n\n\n18) Grissom: Sacrifice Y2 Lilblu\nMove Y2 Lilblu Blu3\nMove Y2 Blu3 Hellajoey\n\n19) hellajoey: Trade G2 Y2 Blu3\n\n20) Grissom: Sacrifice G2 Grissom\nBuild Y3 Hellajoey\nBuild Y3 Hellajoey\nCatastrophe Hellajoey Yellow\n\n21) hellajoey: Discover G1 Blu3 Y1 Yel1ow\n\n22) Grissom: Discover Y2 Grissom B1 Blop\n\n23) hellajoey: Build G2 Blu3\n\n24) Grissom: Trade Y1 B1 Lilblu\n\n25) hellajoey: Trade G3 R3 Hellajoey\n\n26) Grissom: Trade Y3 G3 Grissom\n\n27) hellajoey: Move G1 Yel1ow Grissom\n\n28) Grissom: Move G2 Grissom Lilblu\n\thellajoey: Hey, Larry. I know you&#39;ve got a busy schedule and so do I but let me know if you&#39;d like to get together for a live game sometime. I think it would be pretty fun.\n\n29) hellajoey: Sacrifice G2 Blu3\nBuild G2 Grissom\nBuild G2 Grissom\nCatastrophe Grissom Green\n\tGrissom: Absolutely! I have a good amount of time between now and the end of May.\n\thellajoey: Cool. If I remember correctly you have children and you live in Gresham. I live in SE. So maybe a happy hour thing near me on your way home would work well? Seems like you could stop by on your way home sometime? If that&#39;s not as good a weekend afternoon also works.\n\thellajoey: I should warn you a full game could take us a couple hours.\n\thellajoey: Something I&#39;ve been thinking of trying but haven&#39;t is playing with a chess clock. We could try that for limiting game time.\n\n30) Grissom: Sacrifice Y2 Blop\nMove G2 Lilblu Gre3n\nMove B1 Lilblu Hellajoey\n\tGrissom: I really wanted the undo option after that last move.\n\tGrissom: My family is out of town until the end of may so pretty much any time is good. Chess timer sounds interesting.\n\n31) hellajoey: Sacrifice R3 Hellajoey\nAttack G2 Gre3n\nAttack B1 Hellajoey\nPass\n\n32) Grissom: Trade Y1 G1 Grissom\n\n33) hellajoey: Sacrifice Y2 Blu3\nDiscover G3 Gre3n R1 C1ose\nMove G3 C1ose Grissom\n\n34) Grissom: Build G2 Grissom\n\n35) hellajoey: Build G2 Grissom\nCatastrophe Grissom Green\n\n\nHomeworlds Online (SDG# 27456)\nStarted: 2015.4.26, Ended: 2015.5.6\nParticipants: ts52 (S), rockabilly (N)\nWinner: ts52\n\n1) rockabilly: Homeworld G3 Y1 B3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) rockabilly: Build B1 Rockabilly\n\tts52: Have a good game.\n\n4) ts52: Build G1 Ts52\n\trockabilly: Thanks, you too.\n\n5) rockabilly: Build B1 Rockabilly\n\n6) ts52: Build G1 Ts52\n\n7) rockabilly: Discover B1 Rockabilly G2 Vincent\n\n8) ts52: Discover G1 Ts52 B3 Gonzo\n\n9) rockabilly: Build B2 Rockabilly\n\n10) ts52: Build G1 Gonzo\n\n11) rockabilly: Build B2 Vincent\n\n12) ts52: Build G2 Ts52\n\n13) rockabilly: Trade B2 Y2 Vincent\n\n14) ts52: Discover G2 Ts52 B3 Grover\n\n15) rockabilly: Discover B1 Vincent G3 Buddy\n\n16) ts52: Build G2 Grover\n\n17) rockabilly: Sacrifice B2 Rockabilly\nTrade B1 Y1 Rockabilly\nTrade B1 Y1 Buddy\n\n18) ts52: Trade G2 Y2 Grover\n\n19) rockabilly: Build Y3 Rockabilly\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y3 Grover\n\n21) rockabilly: Build Y3 Buddy\n\n22) ts52: Trade G2 R2 Grover\n\n23) rockabilly: Trade Y3 R3 Rockabilly\n\n24) ts52: Discover G1 Ts52 Y3 Bigbird\n\n25) rockabilly: Sacrifice Y2 Vincent\nDiscover R3 Rockabilly Y2 Tmp\nMove R3 Tmp Gonzo\n\n26) ts52: Sacrifice Y2 Grover\nMove G1 Gonzo Ts52\nDiscover G1 Gonzo Y2 Zoe\n\n\nHomeworlds Online (SDG# 27486)\nVariants: &quot;Hard time&quot;\nStarted: 2015.4.27, Ended: 2015.5.23\nParticipants: SilentTitan (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld B3 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\n7) ts52: Build G1 Ts52\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) ts52: Discover G1 Ts52 B3 Gonzo\n\n10) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n11) ts52: Build G2 Ts52\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n14) SilentTitan: Build G3 Sol\n\n15) ts52: Discover G2 Ts52 Y3 Bigbird\n\n16) SilentTitan: Trade G2 R2 Silenttitan\n\n17) ts52: Trade G1 R1 Gonzo\n\n18) SilentTitan: Build Y1 Silenttitan\n\n19) ts52: Move Y1 Ts52 Gonzo\n\n20) SilentTitan: Move G3 Sol Bigbird\n\n21) ts52: Sacrifice G3 Ts52\nBuild G1 Bigbird\nBuild G2 Bigbird\nBuild G3 Ts52\nCatastrophe Bigbird Green\n\n\tSilentTitan: Thanks for the game\n\nHomeworlds Online (SDG# 27489)\nStarted: 2015.4.27, Ended: 2015.4.29\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld Y2 R1 G3 *\n\n2) ts52: Homeworld Y2 B3 G3\n\twil: I am trying unconventional....\n\n3) wil: Build G1 Wil\n\tts52: _Very_ unconventional. Interesting.\n\twil: I saw you started the ladder again....with a familiar opponent... \n\n4) ts52: Build G1 Ts52\n\n5) wil: Discover G1 Wil B3 B3\n\tts52: Yeah, I tried to challenge you, but couldn&#39;t. Guessing either you were in a game already, or I wasn&#39;t high enough up.\n\twil: Somebody opened with it against me...  in a live game.  I played it with mixed results...  \n\n6) ts52: Discover G1 Ts52 B1 Gonzo\n\twil: Yeah, you can only go five up at a time... takes a long time to crawl thru the dead wood up that ladder..\n\n7) wil: Build G1 B3\n\tts52: I really need to get more people playing so I can play more live games. :(\n\twil: I&#39;d like to see Silent, Two, Tee, Broc, Zoltar, DL all active... we&#39;d have some go arounds on that ladder!\n\n8) ts52: Build G2 Gonzo\n\twil: great job screwin up my whole plan!\n\n9) wil: Build G2 Wil\n\tts52: There was a plan? ;)\n\n10) ts52: Trade G2 Y2 Gonzo\n\twil: Well there was you spoiler..  you had two choices and you took the unexpected one...\n\n11) wil: Trade G1 R1 B3\n\n12) ts52: Build Y1 Gonzo\n\n13) wil: Build R1 B3\n\n14) ts52: Trade Y2 R2 Gonzo\n\twil: so... so far while this opening set has been frowned upon...no major ill effects, eh?\n\n15) wil: Build R2 B3\n\tts52: Hasn&#39;t hurt you yet, true.\n\n16) ts52: Move R2 Gonzo B3\nCatastrophe B3 Red\n\twil: Yet... he says...   dangles carrot.\n\n17) wil: Discover G2 Wil B3 Bee3\n\tts52: ok, I&#39;ll take that bait.\n\n18) ts52: Build Y1 Gonzo\n\twil: it was tempting wasn&#39;t it... hopefully it was crisp and tastee!\n\n19) wil: Build G1 Wil\n\n20) ts52: Build G2 Gonzo\n\n21) wil: Sacrifice G3 Wil\nBuild G2 B3\nBuild G3 Bee3\nBuild G3 Wil\n\n22) ts52: Sacrifice G2 Gonzo\nBuild G2 Ts52\nBuild Y1 Gonzo\n\tts52: Why is it I always forget that trick. :( Well played.\n\n23) wil: Trade G2 Y2 B3\n\n24) ts52: Discover Y1 Gonzo G2 Kermit\n\n25) wil: Sacrifice Y2 B3\nMove G1 B3 Gonzo\nMove G1 Gonzo Ts52\n\n26) ts52: Trade G2 R2 Ts52\n\n27) wil: Sacrifice G2 Bee3\nBuild G2 Ts52\nBuild G2 Ts52\nCatastrophe Ts52 G\n\n28) ts52: Build Y2 Kermit\n\tts52: Wow, very nice play. \n\n29) wil: Build G1 Bee3\n\n30) ts52: Build Y3 Gonzo\n\twil: it wasn&#39;t completely thought out...\n\n31) wil: Trade G3 Y3 Bee3\n\n32) ts52: Build Y3 Kermit\n\n33) wil: Move Y3 Bee3 Gonzo\nCatastrophe Gonzo Y\n\n34) ts52: Build G2 Gonzo\n\twil: should be thinking...but am enjoying just shooting from the hip...\n\n35) wil: Build G2 Bee3\n\twil: unfortunately shooting from the hip hits me in the foot...  I &#39;was&#39; doing well...\n\n36) ts52: Build G3 Gonzo\n\n37) wil: Trade G1 R1 Bee3\n\tts52: Time will tell.\n\n38) ts52: Sacrifice Y2 Kermit\nDiscover G3 Gonzo Y3 Bigbird\nMove G1 Gonzo Bigbird\n\twil: my main problem is I play here like a play live...not taking the time to evaluate enough...\n\n39) wil: Build R1 Bee3\n\n40) ts52: Sacrifice Y3 Kermit\nMove G1 Bigbird Wil\nMove G3 Bigbird Wil\nPass\nCatastrophe Wil Green\n\tts52: Yeah, I almost screwed that up, but I think that start probably cost you. Thanks for the game!\n\twil: I&#39;ll try it again...\n\twil: I think my quick play lost me the game...not the opening...I am not ready to concede that yet...  I&#39;ll be testing it against Andy within the month...he&#39;ll flip out.\n\tts52: Good luck!\n\n\nHomeworlds Online (SDG# 27492)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2015.4.28, Ended: 2015.5.19\nParticipants: Grissom (S), hellajoey (N)\nWinner: Grissom\n\n1) hellajoey: Homeworld B1 Y2 G3\n\n2) Grissom: Homeworld B3 R2 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Discover G1 Hellajoey B3 Blu3\n\n6) Grissom: Trade G1 Y1 Grissom\n\n7) hellajoey: Build G1 Hellajoey\n\n8) Grissom: Build Y1 Grissom\n\n9) hellajoey: Trade G1 Y1 Hellajoey\n\n10) Grissom: Discover Y1 Grissom B1 B1ue\n\n11) hellajoey: Build Y2 Hellajoey\n\n12) Grissom: Build G1 Grissom\n\n13) hellajoey: Build G1 Hellajoey\n\n14) Grissom: Sacrifice G3 Grissom\nBuild Y2 B1ue\nBuild Y3 Grissom\nBuild Y3 Grissom\n\n15) hellajoey: Move Y1 Hellajoey Blu3\n\n16) Grissom: Trade Y3 G3 Grissom\n\n17) hellajoey: Build Y3 Blu3\n\n18) Grissom: Discover Y2 B1ue B3 Blomb\n\n\thellajoey: Crap. I&#39;m so sorry. Was just remembering today that I need to take a turn. Didn&#39;t realize I was about to time out though :) I still want to play. I promise I won&#39;t screw the next one up!\n\nHomeworlds Online (SDG# 27500)\nStarted: 2015.5.1, Ended: 2015.5.6\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) wil: Homeworld Y3 R1 G3 *\n\tts52: I know, so boring.... have a good game!\n\n3) ts52: Build G1 Ts52\n\twil: never boring this game..\r\nnever know where it will go...\r\nsafe openings... I&#39;m testin troubled waters\n\n4) wil: Build G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: Discover G1 Wil B2 B2\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) wil: Build G1 B2\n\n9) ts52: Build B1 Kermit\n\n10) wil: Build G1 Wil\n\n11) ts52: Build G2 Ts52\n\n12) wil: Build G2 B2\n\n13) ts52: Build B2 Kermit\n\n14) wil: Trade G1 Y1 B2\n\n15) ts52: Trade B2 Y2 Kermit\n\n16) wil: Trade G2 R2 B2\n\n17) ts52: Trade G2 R2 Ts52\n\n18) wil: Discover G1 B2 B3 B3\n\n19) ts52: Move R2 Ts52 B3\n\n20) wil: B G1 B3\n\n21) ts52: Build G2 Ts52\n\n22) wil: Build G2 B3\n\n23) ts52: Attack G2 B3\n\n24) wil: Sacrifice G3 Wil\nBuild G2 B3\nBuild Y1 B2\nBuild G3 Wil\nCatastrophe B3 G\n\n25) ts52: Move G2 Ts52 B3\n\n26) wil: Trade R2 B2 B2\n\n27) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit B2\nMove B1 Kermit B2\nCatastrophe B2 Blue\n\n28) wil: Discover G1 Wil B2 B2\n\n29) ts52: Build G1 B3\n\twil: this opening is not easy...obviously a couple steps behind...which means buckets in this game...\n\n30) wil: Build G1 Wil\n\tts52: definitely a tough opening, for sure\n\n31) ts52: Trade G1 Y1 B3\n\n32) wil: Build G1 B2\n\n33) ts52: Move R2 B3 B2\n\twil: it was a bad plan, poorly executed..\n\n34) wil: Build G2 Wil\n\n35) ts52: Attack G1 B2\n\n36) wil: Discover G1 Wil B2 Bee2\n\n37) ts52: Trade G1 Y1 B2\n\n38) wil: Build G1 B2\n\n39) ts52: Attack G1 B2\n\n40) wil: Sacrifice G3 Wil\nBuild G2 Bee2\nBuild G3 Wil\nBuild G3 Wil\n\n41) ts52: Move G1 B2 Wil\nCatastrophe Wil Green\n\n\tts52: Thanks for the game. But I feel like my stats are getting falsely inflated.\n\twil: lol...  blind he was...  hint don&#39;t look at the computer when you come back from a cinco de mayo partay...\n\tts52: :D\n\nHomeworlds Online (SDG# 27437)\nVariants: &quot;Hard time&quot;\nStarted: 2015.5.1, Ended: 2015.5.9\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 Y2 G3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: No blue harsh way to go\n\tSilentTitan: No blue harsh way to go\n\n4) wil: Build G1 Wil\n\twil: experimentation\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Discover G1 Wil B1 B1\n\n\nHomeworlds Online (SDG# 27416)\nVariants: &quot;Unrated&quot;\nStarted: 2015.5.5, Ended: 2015.5.12\nParticipants: wil (S), mcowper (N)\nWinner: wil\n\n1) mcowper: Homeworld G3 B2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: Welcome and thank you for the game!  Good luck!\n\n3) mcowper: Build Y1 Mcowper\n\n4) wil: Build G1 Wil\n\twil: new to homeworlds?  feel free to ask questions...\n\n5) mcowper: Trade Y1 R1 Mcowper\n\n6) wil: Trade G1 B1 Wil\n\tmcowper: Thanks. I&#39;m not new to homeworlds, but this is my first online homeworlds games, so I&#39;m new to this interface.\n\n7) mcowper: Build Y1 Mcowper\n\twil: ah...the interface sucks...the new systems layout as haphazardly as the ships in the star systems....but...it allows me to play more games with more people...so we put up with it!   \n\n8) wil: Build B1 Wil\n\n9) mcowper: Build Y1 Mcowper\n\n10) wil: Discover B1 Wil G2 G2\n\n11) mcowper: Trade Y1 G1 Mcowper\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B2 G2\nBuild B3 G2\n\n13) mcowper: Discover Y1 Mcowper G1 Omega\n\n14) wil: Trade B2 G2 Wil\n\n15) mcowper: Build Y1 Omega\n\n16) wil: Trade B3 Y3 G2\n\n17) mcowper: Build Y1 Mcowper\n\n18) wil: Build Y2 G2\n\n19) mcowper: Discover Y1 Mcowper G1 Psi\n\n20) wil: Build B2 G2\n\n21) mcowper: Build Y2 Mcowper\n\n22) wil: Discover B2 G2 R1 R1\n\n23) mcowper: Sacrifice Y2 Mcowper\nMove Y1 Psi G2\nMove Y1 Omega G2\nCatastrophe G2 Y\n\n24) wil: Build B3 G2\n\twil: I left the bait...wondering...\n\n25) mcowper: Build Y1 Omega\n\n26) wil: Sacrifice G2 Wil\nBuild B3 R1\nBuild B3 Wil\n\n27) mcowper: Build Y1 Mcowper\n\n28) wil: Sacrifice B3 G2\nTrade B2 R2 G2\nTrade B3 Y3 R1\nTrade B3 G3 Wil\n\n29) mcowper: Trade Y3 B3 Mcowper\n\twil: I&#39;ve got a queen building factory in place...\n\n30) wil: Sacrifice G3 Wil\nBuild B2 R1\nBuild B3 G2\nBuild B3 Wil\n\n31) mcowper: Build Y2 Mcowper\n\twil: captains log... trade ships are amassed at strike location, overpopulation will destroy new large trade ships as well as half of home world...\n\n32) wil: Sacrifice Y3 R1\nMove B3 G2 R1\nMove B2 R1 Mcowper\nMove B2 R1 Mcowper\nCatastrophe Mcowper B\n\n33) mcowper: Discover G1 Mcowper B2 Psi\n\n34) wil: Build B2 G2\n\n35) mcowper: Build Y2 Mcowper\n\n36) wil: Trade B3 G3 Wil\n\n37) mcowper: Move Y2 Mcowper Psi\n\n38) wil: Sacrifice G3 Wil\nBuild B2 R1\nBuild B3 G2\nBuild B3 Wil\n\n39) mcowper: Build Y2 Psi\n\n40) wil: Trade B3 Y3 R1\n\n41) mcowper: Build Y3 Omega\n\n42) wil: Sacrifice Y3 R1\nMove B3 G2 Mcowper\nMove B2 R1 Psi\nPass\n\n43) mcowper: Build Y3 Mcowper\n\n44) wil: Sacrifice R2 G2\nAttack Y3 Mcowper\nAttack R1 Mcowper\n\n45) mcowper: Trade G1 R1 Psi\n\n46) wil: Attack Y2 Mcowper\n\n47) mcowper: Sacrifice R1 Psi\nAttack R1 Mcowper\n\twil: it is all but over....thanx for the game....ALWAYS willing to play!\n\n48) wil: Trade Y3 R3 Mcowper\n\n49) mcowper: Build Y3 Mcowper\n\n50) wil: Sacrifice R3 Mcowper\nAttack Y3 Mcowper\nAttack Y1 Mcowper\nAttack R1 Mcowper\n\tmcowper: Thanks for the game. I&#39;m sure that we will play again.\n\twil: I look forward to it... I can&#39;t get enough of this game...  \n\n\nHomeworlds Online (SDG# 27520)\nStarted: 2015.5.8, Ended: 2015.5.13\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 R1 G3 *\n\n2) ts52: Homeworld Y3 B1 G3\n\twil: Ok, the last run at yr homeworlds... \n\n3) wil: Build G1 Wil\n\tts52: :) Have a good time.\n\n4) ts52: Build G1 Ts52\n\twil: I&#39;m a gonna take my time...or try to... I got that game in... and re-insured my medal..\n\tts52: Nice! Not sure when I&#39;m going to get to collect mine.\n\n5) wil: Discover G1 Wil B3 B3\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) wil: Build G1 B3\n\n8) ts52: Build G2 Ts52\n\n9) wil: Trade G1 R1 B3\n\n10) ts52: Trade G2 R2 Ts52\n\n11) wil: Build R1 B3\n\n12) ts52: Build R2 Ts52\n\n13) wil: Trade R1 Y1 B3\n\twil: I am getting further behind at every turn\n\n14) ts52: Move R2 Ts52 Gonzo\n\n15) wil: Discover R1 B3 G2 G2\n\n16) ts52: Build G1 Ts52\n\n17) wil: Build G2 B3\n\n18) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n19) wil: Trade G1 B1 B3\n\n20) ts52: Move R2 Ts52 G2\n\n21) wil: Build R1 G2\n\n22) ts52: Trade G1 Y1 Gonzo\n\n23) wil: Build G1 Wil\n\n24) ts52: Sacrifice R2 Gonzo\nAttack R1 G2\nAttack R1 G2\n\n25) wil: Build G1 B3\n\n26) ts52: Sacrifice Y1 Gonzo\nMove R2 G2 B3\n\n27) wil: Discover G2 B3 Y2 Y2\n\n28) ts52: Sacrifice G2 Ts52\nBuild G2 Gonzo\nBuild R2 B3\n\n29) wil: Sacrifice Y1 B3\nMove B1 B3 Y2\n\n30) ts52: Trade R2 Y2 B3\n\n31) wil: Sacrifice G3 Wil\nBuild B1 Y2\nBuild B2 Y2\nBuild G3 Wil\n\n32) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R2 B3\nBuild R2 B3\n\n33) wil: Discover B2 Y2 B3 Bee3\n\n34) ts52: Move R2 B3 Wil\n\n35) wil: Sacrifice G3 Wil\nBuild B2 Bee3\nBuild B3 Y2\nBuild G3 Wil\n\n36) ts52: Sacrifice Y2 B3\nMove R2 B3 Wil\nMove R2 B3 Wil\nCatastrophe Wil Red\n\n37) wil: Trade B3 Y3 Y2\n\n38) ts52: Move G3 Ts52 Wil\n\n39) wil: Sacrifice Y3 Y2\nMove G1 B3 Wil\nMove B2 Bee3 Wil\nMove G2 Y2 Ts52\nCatastrophe Wil G\n\n40) ts52: Trade G2 Y2 Gonzo\n\twil: I thought that was too costly a trigger to pull...\n\n41) wil: Sacrifice G2 Ts52\nBuild B3 Wil\nBuild B3 Wil\n\tts52: I really hope I&#39;ve thought this through correctly.\n\twil: lol, I knew I should have got an R3....I knew there was a catch I couldn&#39;t see..\n\n42) ts52: Move G3 Gonzo Ts52\n\n43) wil: Sacrifice B3 Wil\nTrade B2 R2 Bee3\nTrade B3 G3 Wil\nTrade B1 R1 Y2\n\twil: forgot to initiate the collapse...  \n\tts52: Damn. I knew I hadn&#39;t thought it through enough. Now to see if I can come back.\n\n44) ts52: Move G1 Ts52 Gonzo\n\twil: I think you are still ahead...\n\n45) wil: Sacrifice G3 Wil\nBuild B1 Y2\nBuild B2 Y2\nBuild B3 Wil\n\twil: well, I&#39;ve got blue in my hw now!!\n\n46) ts52: Build G1 Ts52\n\tts52: Yes, yes you do...\n\n47) wil: Trade B3 G3 Wil\n\twil: wotta crazy game!\n\n48) ts52: Build Y1 Gonzo\n\tts52: Absolutely crazy.\n\n49) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 Wil\nBuild R2 Y2\n\n50) ts52: Discover Y2 Gonzo G1 Kermit\n\n51) wil: Trade B3 Y3 Wil\n\twil: I believe it is now mine to lose...\n\n52) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\twil: and I am quite capable of just that!!\n\tts52: I think you may be right.\n\n53) wil: Trade B3 G3 Wil\n\n54) ts52: Trade G3 R3 Ts52\n\twil: are syou still a step ahead?  I knew I should have moved a piece to stop the y3 growth...to greedy\n\twil: are you still a step ahead?  I knew I should have moved a piece to stop the y3 growth...to greedy\n\n55) wil: Build B3 Wil\n\twil: still... I think it is clear that the yr opening is not the disaster it was thought to be..\n\twil: it appears it made you pause.... I am taking that as a good sign.... however you probably just got distracted...and your next move will end the game..\n\tts52: I was offline this morning. Have to get my head back into it. :)\n\n56) ts52: Build Y1 Kermit\n\n57) wil: Sacrifice Y3 Wil\nMove G3 Wil Ts52\nMove B3 Wil Ts52\nDiscover B2 Y2 Y3 Y3\n\n58) ts52: Move Y2 Kermit Wil\n\n59) wil: Sacrifice R2 Y2\nAttack R3 Ts52\nAttack Y2 Wil\n\n60) ts52: Move Y1 Kermit Wil\n\n61) wil: Sacrifice R3 Ts52\nAttack G2 Ts52\nAttack G1 Ts52\nAttack Y1 Wil\n\twil: he pulls the plug and hopes calculations are correct...\n\twil: Good game...  whole lotta fun...despite the ending!\n\n\twil: aarrghh...I slipped out by default...  I didn&#39;t see it...and evidently you didn&#39;t either..  s y2 m r3 into wil and y1 gonzo into your hw...\n\twil: one move apart....either of us hiccup and it was game over....wow.\r\n\n\tts52: Damn. Sorry I missed that too... very good game.\n\nHomeworlds Online (SDG# 27530)\nStarted: 2015.5.12, Ended: 2015.5.21\nParticipants: mcowper (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\n2) mcowper: Homeworld G3 R1 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) mcowper: Build B1 Mcowper\n\n5) ts52: Trade G1 B1 Ts52\n\n6) mcowper: Trade B1 Y1 Mcowper\n\n7) ts52: Discover B1 Ts52 G1 Robin\n\n8) mcowper: Build Y1 Mcowper\n\n9) ts52: Build G1 Ts52\n\n10) mcowper: Trade Y1 R1 Mcowper\n\n11) ts52: Trade G1 R1 Ts52\n\n12) mcowper: Build R2 Mcowper\n\n13) ts52: Build R2 Ts52\n\n14) mcowper: Trade R2 G2 Mcowper\n\n15) ts52: Move R2 Ts52 Robin\n\n16) mcowper: Build R2 Mcowper\n\n17) ts52: Sacrifice G3 Ts52\nBuild R2 Robin\nBuild R3 Robin\nBuild R3 Ts52\n\n18) mcowper: Trade R2 Y2 Mcowper\n\n19) ts52: Trade R3 Y3 Robin\n\n20) mcowper: Discover R1 Mcowper G2 Alpha\n\n21) ts52: Move R2 Robin Alpha\n\n22) mcowper: Discover Y1 Mcowper R2 Beta\n\n23) ts52: Attack R1 Alpha\n\n24) mcowper: Build Y1 Mcowper\n\n25) ts52: Build R3 Robin\n\n26) mcowper: Build B1 Mcowper\n\n27) ts52: Build R3 Alpha\n\n28) mcowper: Build G1 Mcowper\n\n29) ts52: Trade R3 G3 Ts52\n\n30) mcowper: Move G2 Mcowper Beta\n\n31) ts52: Build R3 Ts52\n\n32) mcowper: Discover Y2 Mcowper B2 Gamma\n\n33) ts52: Trade R2 Y2 Robin\n\n34) mcowper: Trade Y2 R2 Gamma\n\n35) ts52: Move Y2 Robin Alpha\n\n36) mcowper: Build Y1 Mcowper\n\n37) ts52: Build G1 Ts52\n\n38) mcowper: Move B1 Mcowper Beta\n\n39) ts52: Move R3 Robin Gamma\n\n40) mcowper: Sacrifice Y1 Mcowper\nMove R2 Gamma Robin\n\n41) ts52: Sacrifice R1 Ts52\nAttack R2 Robin\n\n42) mcowper: Trade Y1 R1 Beta\n\n43) ts52: Move Y3 Robin Beta\n\n44) mcowper: Sacrifice Y1 Mcowper\nMove R1 Beta Mcowper\n\n45) ts52: Sacrifice Y2 Alpha\nMove R1 Alpha Mcowper\nMove R2 Alpha Mcowper\nCatastrophe Mcowper Red\n\n46) mcowper: Sacrifice G2 Beta\nBuild B1 Beta\nBuild B2 Mcowper\n\n47) ts52: Sacrifice Y3 Beta\nMove R3 Gamma Mcowper\nMove G1 Ts52 Robin\nMove G1 Robin Mcowper\n\n48) mcowper: Build G2 Mcowper\n\n49) ts52: Sacrifice R3 Ts52\nAttack B3 Mcowper\nAttack B2 Mcowper\nAttack G2 Mcowper\nCatastrophe Mcowper Green\n\tts52: Thanks for the game.\n\tmcowper: Thanks for playing. Perhaps we&#39;ll play again some time.\n\tts52: I look forward to it.\n\n\nHomeworlds Online (SDG# 27580)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2015.5.22, Ended: 2015.6.7\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld Y1 B2 G3\n\n2) Grissom: Homeworld B2 R1 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Discover G1 Hellajoey B3 Blu3\n\n6) Grissom: Trade G1 Y1 Grissom\n\n7) hellajoey: Build G1 Hellajoey\n\n8) Grissom: Build Y1 Grissom\n\n9) hellajoey: Discover G1 Hellajoey Y3 Y3llow\n\n10) Grissom: Discover Y1 Grissom G3 Gr33n\n\n11) hellajoey: Build G1 Hellajoey\n\n12) Grissom: Build Y2 Grissom\n\n13) hellajoey: Build G2 Y3llow\n\n14) Grissom: Discover Y2 Grissom B3 Eulb\n\n15) hellajoey: Sacrifice G3 Hellajoey\nBuild G2 Blu3\nBuild G2 Blu3\nBuild G3 Hellajoey\n\n16) Grissom: Sacrifice G3 Grissom\nBuild Y2 Eulb\nBuild Y2 Gr33n\nBuild Y3 Grissom\n\n17) hellajoey: Build G3 Y3llow\n\n18) Grissom: Build Y3 Gr33n\n\n19) hellajoey: Trade G1 R1 Hellajoey\n\n20) Grissom: Trade Y1 G1 Grissom\n\n21) hellajoey: Discover G2 Y3llow B1 B1ue\n\n22) Grissom: Build Y1 Grissom\n\n23) hellajoey: Sacrifice G2 Blu3\nBuild R1 Hellajoey\nBuild G2 Hellajoey\n\n24) Grissom: Trade Y3 R3 Grissom\n\n25) hellajoey: Discover R1 Hellajoey Y3 Olyeller\n\n26) Grissom: Sacrifice Y2 Eulb\nMove R3 Grissom Y3llow\nMove Y3 Gr33n Grissom\n\n27) hellajoey: Sacrifice R1 Hellajoey\nAttack R3 Y3llow\n\n28) Grissom: Build Y2 Gr33n\n\n29) hellajoey: Sacrifice G3 Hellajoey\nBuild R1 Olyeller\nBuild R2 Y3llow\nBuild G3 Hellajoey\n\n30) Grissom: Move Y1 Gr33n Hellajoey\n\n31) hellajoey: Move G2 Hellajoey Gr33n\n\n32) Grissom: Sacrifice Y2 Eulb\nMove Y2 Gr33n Hellajoey\nMove Y2 Gr33n Hellajoey\nCatastrophe Hellajoey Yellow\n\n33) hellajoey: Move R2 Y3llow Hellajoey\n\n34) Grissom: Trade Y1 B1 Grissom\n\n35) hellajoey: Trade R2 Y2 Hellajoey\n\n36) Grissom: Build Y1 Grissom\n\n37) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild Y1 Hellajoey\nBuild Y1 Hellajoey\n\n38) Grissom: Discover Y1 Grissom B3 Eulb\n\n39) hellajoey: Move Y2 Hellajoey Eulb\n\n40) Grissom: Discover Y1 Eulb B1 Eu1b\n\n41) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild R2 Y3llow\nBuild R2 Olyeller\n\n42) Grissom: Build Y2 Grissom\n\n43) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild Y2 Eulb\nBuild R2 Y3llow\n\n44) Grissom: Discover Y2 Grissom R3 R3d\n\n45) hellajoey: Sacrifice Y2 Eulb\nMove R1 Olyeller Grissom\nMove R1 Olyeller Grissom\n\n46) Grissom: Build B2 Grissom\n\n47) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild R3 Grissom\nBuild Y2 Eulb\nCatastrophe Grissom Red\n\n48) Grissom: Trade B1 R1 Grissom\n\n49) hellajoey: Trade Y1 B1 Hellajoey\n\n50) Grissom: Sacrifice Y2 R3d\nMove R1 Grissom Y3llow\nDiscover B2 Grissom Y1 Ye11ow\nCatastrophe Y3llow Red\n\n51) hellajoey: Move G3 Y3llow Grissom\n\n52) Grissom: Move B2 Ye11ow Hellajoey\n\n53) hellajoey: Sacrifice R2 Olyeller\nAttack Y3 Grissom\nAttack G1 Grissom\n\tGrissom: Good game\n\thellajoey: Thanks. Feels like I drug it out at the end. Wasn&#39;t trying to though.\n\n\nHomeworlds Online (SDG# 27518)\nVariants: &quot;Unrated&quot;\nStarted: 2015.5.22, Ended: 2015.7.1\nParticipants: wil (S), mcowper (N)\nWinner: wil\n\n1) mcowper: Homeworld R1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) mcowper: Build G1 Mcowper\n\twil: thx for the game...good luck\n\n4) wil: Build G1 Wil\n\n5) mcowper: Trade G1 Y1 Mcowper\n\n6) wil: Trade G1 B1 Wil\n\n7) mcowper: Build Y1 Mcowper\n\n8) wil: Build B1 Wil\n\n9) mcowper: Build G1 Mcowper\n\n10) wil: Discover B1 Wil Y2 Y2\n\n11) mcowper: Discover G1 Mcowper B3 Alef\n\n12) wil: Build B2 Wil\n\n13) mcowper: Build G1 Mcowper\n\n14) wil: Discover B2 Wil Y2 Whytoo\n\n15) mcowper: Build Y1 Mcowper\n\n16) wil: Build B2 Wil\n\n17) mcowper: Discover Y1 Mcowper G3 Bet\n\n18) wil: Discover B2 Whytoo Y3 Y3\n\n19) mcowper: Build Y2 Bet\n\n20) wil: Trade B2 Y2 Y3\n\n21) mcowper: Build Y3 Bet\n\n22) wil: Discover B2 Wil G2 G2\n\n23) mcowper: Discover Y3 Bet B2 Gimel\n\n24) wil: Build B3 G2\n\n25) mcowper: Trade Y3 B3 Gimel\n\n26) wil: Discover B1 Y2 Y3 Why3\n\n27) mcowper: Build Y2 Bet\n\n28) wil: Trade B3 R3 G2\n\n29) mcowper: Sacrifice Y2 Bet\nMove Y1 Mcowper Y3\nMove Y1 Mcowper Y3\nCatastrophe Y3 Y\n\n30) wil: Build B3 G2\n\n31) mcowper: Move Y1 Bet Gimel\n\n32) wil: Trade B3 Y3 G2\n\n33) mcowper: Move B3 Gimel Bet\n\n34) wil: Move R3 G2 Bet\n\n35) mcowper: Sacrifice Y2 Bet\nDiscover B3 Bet G2 Dalet\nMove G1 Alef Gimel\n\n36) wil: Build B3 G2\n\n37) mcowper: Build B3 Dalet\n\n38) wil: Trade B3 R3 G2\n\n39) mcowper: Sacrifice G3 Mcowper\nBuild G1 Gimel\nBuild G2 Gimel\nBuild G3 Mcowper\n\n40) wil: Build B3 G2\n\n41) mcowper: Trade G2 Y2 Gimel\n\n42) wil: Trade B3 R3 G2\n\n43) mcowper: Sacrifice Y2 Gimel\nMove B3 Dalet Wil\nMove B3 Dalet Wil\nCatastrophe Wil B\n\n44) wil: Move R3 G2 Wil\n\n45) mcowper: Discover G1 Gimel Y1 Alef\n\n46) wil: Build G2 Wil\n\n47) mcowper: Trade G1 B1 Mcowper\n\twil: b g2 wil\n\n48) wil: Move Y3 G2 Bet\n\twil: ya gotta type the directions in the right box\n\n49) mcowper: Build Y1 Gimel\n\n50) wil: Move R3 Bet Gimel\n\n51) mcowper: Move Y1 Gimel Alef\n\n52) wil: Attack Y1 Gimel\n\n53) mcowper: Move Y1 Alef Bet\n\n54) wil: Attack G1 Gimel\n\n55) mcowper: Build Y2 Bet\n\n56) wil: Sacrifice R3 G2\nAttack Y2 Bet\nAttack Y1 Bet\nPass\n\n57) mcowper: Build G1 Alef\n\n58) wil: Build Y2 Gimel\n\twil: s g2 wil\r\nb b3 why3\r\nb b1 g2\n\n59) mcowper: Move G1 Alef Wil\n\n60) wil: Sacrifice G2 Wil\nBuild B1 G2\nBuild B3 Why3\n\twil: you are teachin me Hebrew numbers..\n\tmcowper: I&#39;m teaching myself too.\n\n61) mcowper: Sacrifice B1 Mcowper\nTrade G1 B1 Alef\n\n62) wil: S Y3 Bet\nMove B3 Why3 Mcowper\nMove R3 Gimel Why3\nMove R3 Why3 Mcowper\n\n63) mcowper: Attack R3 Mcowper\n\twil: cool\r\n\n\n64) wil: Sacrifice R3 Wil\nAttack G1 Wil\nAttack R3 Mcowper\nAttack G3 Mcowper\n\twil: It looks like I have two choices...\r\nS y3 bet m b3 why3 mcowper m r3 gimel why3 m r3 why3 mcowper   Or   s y3 bet m g3 wil mcowper m g1 gimel wil  m g1 wil mcowper.... both appear unstoppable?  If you&#39;d like to change your move you may.\n\tmcowper: Thanks. Let&#39;s play it out this way. You are a better player than I and I will most likely lose, but I&#39;ll learn stuff along the way and improve. I think that I have improved from our previous game.\n\n\twil: Have fun....  and challenge any time..\n\nHomeworlds Online (SDG# 27586)\nVariants: &quot;Hard time&quot;\nStarted: 2015.5.26, Ended: 2015.5.28\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\twil: here we go!  good luck\n\tts52: Thanks! Have a good game!\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 Y1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build Y1 Wil\n\n8) ts52: Build B1 Ts52\n\twil: oopsie...\n\n9) wil: Discover Y1 Wil B3 B3\n\n10) ts52: Discover B1 Ts52 G2 Robin\n\twil: s g3 wil\r\nb y2 b3\r\nb y2 b3\r\nb y3 wil\n\n11) wil: Sacrifice G3 Wil\nBuild Y2 B3\nBuild Y2 B3\nBuild Y3 Wil\n\n12) ts52: Build B2 Robin\n\tts52: That&#39;s a lot of yellow\n\n13) wil: Discover Y2 B3 G2 G2\n\n14) ts52: Build G1 Ts52\n\n15) wil: Trade Y3 G3 Wil\n\n16) ts52: Build B2 Ts52\n\twil: that move surprised me...while i am seeing red, I am not seeing a need for concern right away...\n\n17) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 B3\nBuild Y3 G2\n\n18) ts52: Trade B2 R2 Ts52\n\twil: now this is a lot of yellow!\n\n19) wil: Trade Y3 G3 Wil\n\tts52: Yes, yes it is.\n\n20) ts52: Move R2 Ts52 G2\n\twil: Now I want all the Queens!\n\n21) wil: Discover Y2 G2 R3 R3\n\n22) ts52: Build B2 Ts52\n\n23) wil: Trade Y3 B3 B3\n\n24) ts52: Discover B2 Ts52 G2 Oscar\n\n25) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 B3\nBuild B2 B3\n\twil: It is interesting ...there are factories and then there are queen factories....the regular factory creates extra ships...the queen factory creates extra large ships....through the monopoly race...\n\n26) ts52: Build G1 Ts52\n\tts52: Yeah, this seems to be quickly turning into a slaughter. Why did I think I could challenge you again?\n\n27) wil: Sacrifice B3 B3\nTrade Y3 B3 G2\nTrade Y3 G3 Wil\nTrade Y3 R3 B3\n\twil: Because you&#39;ve beaten me before with my silly mistakes!   But I capitalized on yours way back when I said &quot;oopsie&quot;... you let me corner the yellows... \n\n28) ts52: Discover G1 Ts52 R2 Elmo\n\tts52: Yeah, that was definitely a mistake. Thought I could let you have the smalls, and still build up to trade a medium in time. Now I know just how wrong I was... :)\n\n29) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 R3\nBuild Y3 B3\n\twil: there were three Blue drones...and only two yellow ones...once I had that edge I knew I could keep you from queens...lessons learned from TTT and BC..\n\n30) ts52: Sacrifice G3 Ts52\nBuild G1 Elmo\nBuild G3 Ts52\nBuild G3 Ts52\n\twil: he leaves the bait...if you take it, it is two moves to mate...if you don&#39;t it&#39;ll be a little longer.\n\twil: it is too funny that I wasted my time building a red...  but I can&#39;t hardly imagine winning without one!\n\n31) wil: Sacrifice Y3 R3\nMove B2 B3 G2\nMove B2 G2 Ts52\nMove B3 G2 Ts52\nCatastrophe Ts52 B\n\tts52: I&#39;m assuming I bit. But I can&#39;t see it. So lets see what happens next...\n\n32) ts52: Sacrifice B2 Robin\nTrade G3 R3 Ts52\nTrade G3 B3 Ts52\n\twil: and now the end is clear  (in his best Frank Sinatra voice)\n\tts52: Ah yes, figures I wasn&#39;t looking for that... :(\n\n33) wil: Sacrifice Y3 Wil\nMove Y3 B3 Ts52\nMove Y2 B3 Ts52\nMove Y2 R3 Ts52\nCatastrophe Ts52 Y\n\twil: the goal of cornering yellow is the doomsday machine...\r\n\n\twil: thx for the game!  I look forward to the next one!!\n\tts52: Good game! I&#39;ll try not to let you win so easily next time. ;)\n\twil: by the looks of the end game you almost had me!!\r\n\r\nit was that one hiccup early...I was pretty sure after that it was my game to lose...\n\n\nHomeworlds Online (SDG# 27600)\nVariants: &quot;Hard time&quot;\nStarted: 2015.5.28, Ended: 2015.6.2\nParticipants: ts52 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) dlwillson: B G1 Dlwillson\n\n4) ts52: Build G1 Ts52\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) ts52: Discover G1 Ts52 B3 Gonze\n\n7) dlwillson: B Y2 Dlwillson\n\tdlwillson: You too!\n\n8) ts52: Build G1 Ts52\n\n9) dlwillson: D Y1 Dlwillson B2 Sky\n\n10) ts52: Build G1 Gonze\n\n11) dlwillson: B G2 Dlwillson\n\n12) ts52: Build G2 Gonze\n\n13) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB Y2 Sky\nB Y3 Dlwillson\n\n14) ts52: Discover G1 Ts52 B3 Grover\n\n15) dlwillson: D Y2 Dlwillson B2 Sea\n\n16) ts52: Sacrifice G2 Gonze\nBuild G2 Ts52\nBuild G2 Grover\n\n17) dlwillson: B G3 Dlwillson\n\n18) ts52: Sacrifice G2 Grover\nBuild G2 Gonze\nBuild G3 Grover\n\n19) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y3 Sea\nB Y3 Sea\n\n20) ts52: Trade G2 R2 Ts52\n\n21) dlwillson: T Y3 R3 Sea\n\n22) ts52: Trade G3 Y3 Grover\n\n23) dlwillson: T Y3 R3 Dlwillson\n\n24) ts52: Sacrifice G2 Gonze\nBuild G2 Ts52\nBuild Y3 Grover\n\n25) dlwillson: S Y2 Sky\nM Y1 Sky Grover\nM Y2 Sea Grover\nC Grover Y\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Gonze\nBuild G3 Ts52\nBuild G3 Grover\n\n27) dlwillson: M R3 Sea Gonze\n\n28) ts52: Trade G1 Y1 Grover\n\n29) dlwillson: A G2 Gonze\n\n30) ts52: Build Y2 Grover\n\n31) dlwillson: T G2 Y2 Gonze\n\n32) ts52: Sacrifice G3 Ts52\nBuild G1 Gonze\nBuild G2 Grover\nBuild G3 Ts52\n\n33) dlwillson: S G3 Dlwillson\nB Y3 Gonze\nB Y3 Sea\nB G3 Dlwillson\n\n34) ts52: Trade G2 R2 Grover\n\n35) dlwillson: A G1 Gonze\n\n36) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Grover\n\n37) dlwillson: A G1 Gonze\n\n38) ts52: Sacrifice G2 Ts52\nBuild G2 Gonze\nBuild R1 Ts52\nCatastrophe Gonze Green\n\n39) dlwillson: Sacrifice Y2 Sky\nDiscover Y3 Sea R3 Mars\nMove Y3 Sea Mars\n\n40) ts52: Build Y2 Grover\n\n41) dlwillson: T Y2 G2 Gonze\n\tdlwillson: Huh... Good struggle. I can&#39;t quite seem to pluck off your head.\n\n42) ts52: Discover Y2 Grover G1 Robin\n\n43) dlwillson: Sacrifice G3 Dlwillson\nB Y2 Gonze\nB R1 Gonze\nB R2 Dlwillson\n\tts52: :) I screwed up in the beginning letting you monopolize yellow. Just glad I&#39;ve been able to make you work for it.\n\n44) ts52: Sacrifice Y2 Grover\nDiscover R2 Grover Y2 Bigbird\nMove R2 Ts52 Grover\n\n45) dlwillson: Sacrifice Y3 Mars\nMove Y3 Mars Ts52\nMove Y3 Gonze Ts52\nMove R3 Gonze Ts52\n\n46) ts52: Sacrifice G3 Grover\nBuild G1 Ts52\nBuild R3 Ts52\nBuild Y3 Grover\n\n47) dlwillson: Sacrifice R2 Dlwillson\nAttack R3 Ts52\nAttack G3 Ts52\n\n48) ts52: Sacrifice Y2 Robin\nMove R1 Grover Ts52\nMove Y1 Grover Ts52\nCatastrophe Ts52 Red\nCatastrophe Ts52 Yellow\n\n49) dlwillson: Sacrifice R1 Gonze\nAttack G1 Ts52\n\tts52: Thanks for the game!\n\tdlwillson: Wow! That was a lot of fireworks!\n\tdlwillson: Good game!\n\n\nHomeworlds Online (SDG# 27547)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2015.5.28, Ended: 2015.5.29\nParticipants: wil (S), jrandom (N)\nWinner: wil\n\n1) jrandom: Homeworld G2 B3 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) jrandom: Build Y1 Jrandom\n\twil: thanx for the game!\n\n4) wil: Build G1 Wil\n\tjrandom: My first game... there will be blood.  Probably mine.\n\twil: Do you want any explanation or hints or just play and learn from losing (this is a great game and I lost dozens...watching different scenarios attack me until I saw them coming)\n\twil: Do you want any explanation or hints or just play and learn from losing (this is a great game and I lost dozens...watching different scenarios attack me until I saw them coming)\n\n5) jrandom: Discover Y1 Jrandom Y1 Fungus\n\n6) wil: Discover G1 Wil B2 B2\n\tjrandom: I think I&#39;ll learn by losing (for now), but thank you for the offer.  Seems like I have to do things the hard way...\n\n7) jrandom: Build Y1 Jrandom\n\n8) wil: Build G1 Wil\n\n9) jrandom: Discover Y3 Jrandom B1 Horsehair\n\twil: You got it good...I&#39;m making plenty of mistakes!\n\n10) wil: Build G1 Wil\n\n11) jrandom: Trade Y3 G3 Horsehair\n\twil: scary to take your big ship out of you homeworld..\n\n12) wil: Trade G1 R1 Wil\n\tjrandom: I had a brilliant reason for doing it, but I don&#39;t remember what it is now.\n\n13) jrandom: Build Y2 Jrandom\n\twil: lol...only a brilliant reason would do!\n\n14) wil: Build G1 Wil\n\n15) jrandom: Trade Y2 R2 Jrandom\n\n16) wil: Build G2 B2\n\n17) jrandom: Build G2 Horsehair\n\n18) wil: Trade G2 Y2 B2\n\n19) jrandom: Build Y2 Jrandom\n\n20) wil: Build Y2 B2\n\n21) jrandom: Move Y2 Jrandom Horsehair\n\n22) wil: Discover Y2 B2 G3 G3\n\n23) jrandom: Move G3 Horsehair Jrandom\n\n24) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild Y3 B2\nBuild Y3 G3\n\n25) jrandom: Build G3 Jrandom\n\n26) wil: Sacrifice Y3 B2\nMove G1 B2 Horsehair\nMove G1 Horsehair Jrandom\nMove Y3 G3 Horsehair\nCatastrophe Jrandom G\n\n27) jrandom: Build Y3 Horsehair\n\twil: catastrophes....ya gotta watch out for them ...  I left the g3 because I knew you couldn&#39;t safely build it..\n\n28) wil: Move Y3 Horsehair Jrandom\n\tjrandom: I should probably stop thinking of my spaceships as &quot;spaceships&quot; -- then I wouldn&#39;t be so shy about sacrificing them...\n\n29) jrandom: Move Y3 Horsehair B2\n\twil: Nah...that is a good thought...that is why when we capture them we don&#39;t lose a ship that capable of interstellar travel and thousands of crew when we attack...however when we cause a castrophe, we are looking further at endgame...  that being said...y3s are powerful tools (as are all 3s)\n\n30) wil: Sacrifice R1 Wil\nAttack R2 Jrandom\n\n31) jrandom: Move G2 Horsehair Jrandom\n\n32) wil: Sacrifice R2 Jrandom\nAttack G2 Jrandom\nAttack Y1 Jrandom\n\tjrandom: I&#39;m guessing you&#39;re going to send in a Yellow ship to my homeworld and catastrophize.\n\n\tjrandom: Now you can explode me some other way...\n\twil: nah...only catastrophe when I need to...much prefer to enslave your people and take over the ships you offer me!  Feel free to challenge as often as you want...  I&#39;ll be glad to show you various attacks and grows...\n\nHomeworlds Online (SDG# 27582)\nVariants: &quot;Unrated&quot;\nStarted: 2015.5.29, Ended: 2015.6.1\nParticipants: wil (S), jrandom (N)\nWinner: wil\n\n1) jrandom: Homeworld B3 G2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tjrandom: Well, you&#39;ve got me addicted now.\n\twil: Cool.  So you&#39;ve started with Fortress...you get out of your homeworld with one pip pawns...they disappear early so a long game makes it harder for the other side to get in... Folks believe the best start is banker, because my moving out greens you can sacrifice the investment later and build a queen star...  I am taking goldilocks...because it isn&#39;t right for me to take that start...  \n\n3) jrandom: Build Y1 Jrandom\n\n4) wil: Build G1 Wil\n\n5) jrandom: Trade Y1 G1 Jrandom\n\n6) wil: Trade G1 B1 Wil\n\n7) jrandom: Build Y1 Jrandom\n\n8) wil: Build B1 Wil\n\n9) jrandom: Trade Y3 G3 Jrandom\n\n10) wil: Discover B1 Wil G2 G2\n\twil: a.  I like the speed of your play...makes me gotta watch so I don&#39;t delay you (I&#39;ve had some games take months as people are so slow to respond)  b.  I am making a &#39;b&#39; line to corner a commodity  (it is always what I attempt...if I can&#39;t do it I simply switch to building and trying to be the first in larger pyramids in any situation.  c.  is this your first pyramid game?  do you own and physical Looney Pyramids?\n\n11) jrandom: Discover G1 Jrandom G1 Connery\n\twil: one of the problems with having a green in your homestar is the fact that you cannot create a factory at home...always at risk of catastrophe\n\tjrandom: I&#39;ve actually ordered a pile of Looney Pyramids.  This is my second game of Homeworlds.\n\n12) wil: Build B2 Wil\n\n13) jrandom: Build Y1 Jrandom\n\twil: lol a pile of pyramids...\n\n14) wil: Build G1 Wil\n\tjrandom: Six stashes!\n\n15) jrandom: Move Y1 Jrandom Connery\n\n16) wil: Discover B2 Wil Y2 Y2\n\twil: This game is one of the best... there are other good ones, but for this former chess player this is my favorite by far.  on this site I am enjoying megavolcano, martian chess and blam!\n\n17) jrandom: Build Y1 Jrandom\n\n18) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 Y2\nBuild B3 Y2\n\n19) jrandom: Discover Y1 Connery R2 Moore\n\n20) wil: Build B3 Wil\n\n21) jrandom: Trade Y1 R1 Jrandom\n\n22) wil: Sacrifice B2 Y2\nTrade B3 G3 Y2\nTrade B3 G3 Wil\n\n23) jrandom: Build G2 Jrandom\n\n24) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Y2\nBuild B3 G2\n\n25) jrandom: Discover G2 Jrandom Y1 Lazenby\n\n26) wil: Trade B3 Y3 G2\n\n27) jrandom: Build Y2 Jrandom\n\n28) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G2\nBuild Y3 G2\n\n29) jrandom: Discover Y1 Moore R1 Dalton\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G2\nBuild B3 Y2\n\n31) jrandom: Pass\n\twil: the power of the factory cannot be overlooked... once the Gs are out...a G3 and any other G is a factory...sacrifice the G3 rebuild it right back where it was, and then build two more ships wherever you can..\n\twil: risky in that I&#39;ve got 3 Ys and two of them Queens...but they are two star systems away..so you have to sack a y2 to hop a y1 one in to catastrophe...leaving you with only one y...and I have the ability (thru B monopoly and factory) to grow faster.  \n\n32) wil: Sacrifice B2 Y2\nTrade B3 R3 Y2\nTrade B3 R3 G2\n\tjrandom: What does &quot;You did not provide a recognized colour name&quot; mean?\n\tjrandom: sacrifice y2 jrandom\r\nmove y1 Moore Connery\r\nmove y1 Connery g2\r\ncatastrophe\n\n33) jrandom: Trade G3 R3 Jrandom\n\twil: s y2 jrandom \r\nm y1 Moore Connery \r\nm y1 Connery g2 \r\nc g2 y   (y being the recongized color to catastrophe)\n\twil: I&#39;ll wait to see if you wanna back up and change your move...\n\twil: I&#39;ll go mix another martini whilst I wait..\n\tjrandom: I just did a different move.\n\n34) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y2\nBuild B2 Y2\n\n35) jrandom: Move Y1 Dalton G2\nCatastrophe G2 Y\n\n36) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G2\nBuild B3 Y2\n\n37) jrandom: Discover G2 Lazenby R2 Horton\n\n38) wil: Sacrifice B2 Y2\nTrade B3 Y3 G2\nTrade B3 Y3 Y2\n\n39) jrandom: Sacrifice Y2 Jrandom\nMove R3 Jrandom Connery\nMove R3 Connery Horton\n\twil: lol great timing on that...next two moves were:\r\ns y3 g2\r\nm g3 y2 lazenby\r\nm g3 y2 dalton\r\nm r3 g2 connery\r\n\r\ns y3 g2\r\nm g3 lazenby jrandom\r\nm g3 dalton jrandom\r\nm r3 connery jrandom\n\twil: that would be the you take one I take three move after that...  but now you put me back to work!\n\n40) wil: Sacrifice Y3 Y2\nMove G3 Y2 Connery\nMove R3 Y2 Connery\nMove G3 Connery Jrandom\n\n41) jrandom: Sacrifice Y1 Jrandom\nMove R3 Horton Wil\n\n42) wil: Sacrifice R3 G2\nAttack R1 Jrandom\nAttack G1 Connery\nAttack R3 Wil\n\n\tjrandom: Here, I&#39;ll make things even easier for you.\n\twil: a visitor....  It took me a little over ten games to get the handle of this...prolly five times that to understand the intracies... to me it is chess on steroids in space\n\twil: we thank you and your people for donating the fine ships, pilots and technicians... you will all be treated well and given a path to citizenship...\n\nHomeworlds Online (SDG# 27612)\nVariants: &quot;Unrated&quot;\nStarted: 2015.6.1, Ended: 2015.6.3\nParticipants: jrandom (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 R1 G3 *\n\twil: thank you for the game!!  What do you think of it so far...frustration level?\n\n2) jrandom: Homeworld B1 G3 Y3\n\tjrandom: I think the worst part is when I suddenly discover that my clever move isn&#39;t allowed.  E.g. not being able to create ships with a colour that you don&#39;t already control.\n\twil: this is an unconventional opening...opening without a blue in the past was considered ludicrous...I am busy proving that otherwise\n\tjrandom: Which means that you need to use blue to trade.  Except you can&#39;t trade unless there&#39;s a ship of the appropriate size.\n\twil: yes you must have the resources to build new ships...the star can&#39;t provide...your team must have another ship, a pattern to build it..  that and &#39;how exactly do I attack?&quot; are common hurdles\n\twil: exactly right again...hence the reason if someone else gets that color...you better as well\n\n3) wil: Build G1 Wil\n\tjrandom: Since we&#39;re both doing Goldilocks, this game will probably be quick.\n\twil: oh my...short universe!\n\n4) jrandom: Build Y1 Jrandom\n\n5) wil: Discover G1 Wil B2 B2\n\n6) jrandom: Trade Y1 R1 Jrandom\n\n7) wil: Build G1 Wil\n\n8) jrandom: Build Y1 Jrandom\n\n9) wil: Build G1 B2\n\n10) jrandom: Move R1 Jrandom B2\n\n11) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 B2\nPass\n\n12) jrandom: Trade Y1 B1 Jrandom\n\twil: cool...you&#39;ve got me on the ropes\n\tjrandom: Do I?  That seems unlikely.\n\n13) wil: Trade G2 R2 B2\n\n14) jrandom: Trade B1 R1 Jrandom\n\n15) wil: Attack R1 B2\n\n16) jrandom: Build R2 Jrandom\n\n17) wil: Build G2 B2\n\n18) jrandom: Build Y1 Jrandom\n\n19) wil: Trade G2 Y2 B2\n\n20) jrandom: Trade R2 B2 Jrandom\n\n21) wil: Build G2 B2\n\n22) jrandom: Build R2 Jrandom\n\tjrandom: Argh, wrong move!\n\n23) wil: Discover G1 Wil Y2 Y2\n\twil: which move was wrong?  the second was much better than the first..\n\tjrandom: I know, but it wasn&#39;t the second move I wanted.  Oh, well.\n\n24) jrandom: Move R2 Jrandom Y2\n\tjrandom: You now have an opportunity to beat our swords into ploughshares.\n\n25) wil: Discover G1 Y2 Y3 Y3\n\twil: yeah there is that..but starting over isn&#39;t in the current plan\n\twil: one of my thoughts is always begin with the end in mind....two ways to win the game...take over all the pieces in the homeworld or destroy both homeworld stars... every move should be thinking about building a flotilla that is preparing one or both scenarios whilst wheedling the others chances of doing the same..  \n\twil: short universes are generally frowned upon as games...but interesting thing about them is that killing half a homeworld provides no advantage\n\n26) jrandom: Move B2 Jrandom Y2\n\n27) wil: Move R2 B2 Y3\n\n28) jrandom: Trade B2 G2 Y2\n\n29) wil: Trade G1 B1 B2\n\n30) jrandom: Build R2 Y2\n\n31) wil: Build R3 B2\n\n32) jrandom: Build R3 Jrandom\n\n33) wil: Build R3 Y3\n\n34) jrandom: Sacrifice Y3 Jrandom\nMove R2 Y2 Y3\nMove R2 Y2 Y3\nMove R1 Jrandom Y2\nCatastrophe Y3 R\n\n35) wil: Build B1 B2\n\n36) jrandom: Build R2 Y2\n\twil: reboot the galaxy\n\n37) wil: Move B1 B2 Wil\n\n38) jrandom: Build Y1 Jrandom\n\n39) wil: Move R1 B2 Y3\n\n40) jrandom: Move Y1 Jrandom Y2\n\n41) wil: Build R2 Y3\n\n42) jrandom: Discover Y1 Y2 R3 Betelgeuse\n\n43) wil: Build R2 B2\n\n44) jrandom: Build Y1 Jrandom\n\n45) wil: Move R2 Y3 Y2\n\n46) jrandom: Attack R2 Y2\n\twil: very nice...the &#39;if I can&#39;t get it neither can you move.&#39;   now if that would have been done with a green....that becomes an investment.\n\n47) wil: Move R1 Y3 Y2\nCatastrophe Y2 R\n\n48) jrandom: Move G2 Y2 Jrandom\n\twil: Greetings....we were out traveling and were drawn to the light from your star...  \n\twil: it looked familiar to us....so we thought we&#39;d visit...for old times sake.  \n\n49) wil: Build Y2 B2\n\n50) jrandom: Discover Y1 Betelgeuse B2 Beetlejuice\n\n51) wil: Discover Y2 B2 G3 G3\n\n52) jrandom: Move G2 Jrandom Beetlejuice\n\n53) wil: Sacrifice G2 B2\nBuild Y2 B2\nBuild Y3 G3\n\n54) jrandom: Trade Y1 G1 Jrandom\n\n55) wil: Sacrifice G2 Wil\nBuild B2 B2\nBuild B3 Wil\n\n56) jrandom: Build G2 Beetlejuice\n\n57) wil: Trade B3 G3 Wil\n\n58) jrandom: Trade G2 R2 Beetlejuice\n\n59) wil: Build G2 B2\n\twil: so much for a short game!  i don&#39;t have a handle yet but it is about to get real...\n\n60) jrandom: Move R2 Beetlejuice Y3\n\n61) wil: Move B1 B2 Jrandom\n\n62) jrandom: Attack G1 Y3\n\twil: good move...I just saw I missed abusing that situation!\n\n63) wil: Sacrifice Y2 B2\nMove G1 B2 Jrandom\nMove G2 B2 Jrandom\nCatastrophe Jrandom G\n\n64) jrandom: Move R2 Y3 Beetlejuice\n\n65) wil: Sacrifice Y3 G3\nMove B2 B2 Jrandom\nMove B1 Wil B2\nMove B1 B2 Jrandom\nCatastrophe Jrandom B\n\n\tjrandom: In fact, your next move will probably be to sacrifice y3 in g3, then move b2 from b2 to jrandom, then b1 from wil to b2, then b2 to jrandom, then catastrophe blue.\n\twil: exactly...and that is why the b1 moved in...didn&#39;t matter if you attacked her...she is still blue..  I was forever without a big three in this match...you should have got and sacked a y2 attacked me directly with your Queen and used my own red star to anihilate me...but you are starting to see things\n\twil: the more you play the more you see...games are all so unique...  ya try one gambit, get foiled, move onto another...  whattya think?  gonna get started up the ladder?\n\nHomeworlds Online (SDG# 27510)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.2, Ended: 2015.6.14\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) wil: Build G1 Wil\n\twil: thanx for the game!\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 B1 Wil\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) wil: Discover B1 Wil G2 G2\n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) wil: Build B1 G2\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) wil: Build B2 G2\n\twil: he wakes up after a four day festival to two hours to go in the game...\n\n\twil: phooey\n\tSilentTitan: So sorry, I do hope the festival was fun. \n\twil: 19 hours of straight sleep...woke up once during it to get off the couch and crawl into bed...without stopping for water or toilet... that...THAT is how fun the festival was..as defined by the recovery period\n\nHomeworlds Online (SDG# 27550)\nStarted: 2015.6.2, Ended: 2015.6.10\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) wil: Build G1 Wil\n\twil: Hava great game...good luck!\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks. You too!\n\n5) wil: Trade G1 Y1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build Y2 Wil\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) wil: Discover Y2 Wil B1 B1\n\n10) ts52: Build G1 Ts52\n\n11) wil: Trade Y1 B1 Wil\n\n12) ts52: Trade G1 B1 Ts52\n\n13) wil: Build B2 Wil\n\n14) ts52: Build G1 Ts52\n\n15) wil: Discover B2 Wil G1 G1\n\n16) ts52: Move B1 Ts52 Kermit\n\n17) wil: Trade B1 R1 Wil\n\n18) ts52: Trade G1 R1 Ts52\n\n19) wil: Build R1 Wil\n\n20) ts52: Build R2 Ts52\n\n21) wil: Build R2 Wil\n\n22) ts52: Move R2 Ts52 Kermit\n\n23) wil: Trade R1 Y1 Wil\n\n24) ts52: Build G1 Ts52\n\n25) wil: Build G1 Wil\n\n26) ts52: Build G2 Ts52\n\n27) wil: Move G1 Wil B1\n\n28) ts52: Discover G2 Ts52 B3 Grover\n\n29) wil: Move Y1 Wil G1\n\n30) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n31) wil: Move G1 B1 Grover\nCatastrophe Grover G\n\n32) ts52: Build R1 Kermit\n\n33) wil: Move R1 Wil G1\n\n34) ts52: Build B1 Kermit\n\n35) wil: Build B2 G1\n\n36) ts52: Discover B1 Kermit G1 Robin\n\n37) wil: Trade B2 G2 G1\n\n38) ts52: Discover G1 Ts52 Y3 Bigbird\n\n39) wil: Build G2 Wil\n\n40) ts52: Move R1 Kermit Robin\n\n41) wil: Discover Y2 B1 G2 G2\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Bigbird\nBuild R2 Robin\nBuild R3 Ts52\n\n43) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Wil\nBuild R3 G1\n\n44) ts52: Trade R3 Y3 Ts52\n\n45) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G2\nBuild Y3 G1\n\n46) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild R3 Ts52\nBuild B1 Robin\n\n47) wil: Sacrifice Y2 G2\nDiscover Y1 G1 B3 B3\nMove R1 G1 B3\n\n48) ts52: Sacrifice Y3 Ts52\nMove G1 Bigbird G1\nMove G3 Bigbird G1\nMove R2 Robin B3\nCatastrophe G1 Green\n\n49) wil: Sacrifice G2 Wil\nBuild Y2 B3\nBuild Y3 B3\n\n50) ts52: Build R3 Robin\n\n51) wil: Build Y3 G2\n\n52) ts52: Build Y3 Kermit\n\n53) wil: Sacrifice Y3 G2\nMove R3 Wil Robin\nMove R3 Robin B3\nMove R3 B3 Ts52\n\n54) ts52: Sacrifice R2 Kermit\nAttack R3 Ts52\nAttack R1 B3\n\n55) wil: Sacrifice Y3 B3\nMove R2 Wil Robin\nMove R2 Robin B3\nMove R2 B3 Ts52\nCatastrophe Ts52 R\n\twil: the excrement is about to impact the rotating propellers....\n\n\twil: it was a surprising conclusion to me.... I was not on that path at all...\n\tts52: Indeed, I was struggling for a while. Thanks for the game!\n\twil: Heck, I thought I was behind, trying to play catchup on reds...he&#39;s cornering blues, can i stayout of that economy, yellows big yellows are coming what do I do...  the y2/g2 trade was unique I thought and my turning point...  trading for a g2 to sack when I can&#39;t have a factory.. I&#39;m putting that in the memory banks... thanx for the game!  I look forward to the next one...challenge me anytime...heck 10 times...I like playing this thing!\n\tts52: Funny to think we both felt behind... I too look forward to our next match.\n\nHomeworlds Online (SDG# 27635)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.2, Ended: 2015.6.15\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\twil: thx for the game!\n\n2) wil: Homeworld Y2 B1 G3\n\n3) dlwillson: B G1 Dlwillson\n\twil: now I gotta be on my toes and not play reckless, good luck.  \n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) dlwillson: Build Y3 Field\n\n12) wil: Build Y3 G3\n\n13) dlwillson: D Y1 Field B3 Sky\n\twil: I got behind on this race!\n\n14) wil: Move Y3 G3 Field\n\n15) dlwillson: T Y1 R1 Sky\n\n16) wil: Move Y3 Field Sky\n\tdlwillson: Sorry I forgot about this game for a bit!\n\tdlwillson: Hey! Don&#39;t you time out on me, Wil!\n\twil: just woke up from a four day festival\n\n17) dlwillson: Move Y3 Field Sky\n\n18) wil: Discover Y3 Sky G2 G2\n\tdlwillson: Nice! Burning man, or something?\n\n19) dlwillson: B G1 Dlwillson\n\n20) wil: Build G1 Wil\n\n21) dlwillson: D G1 Dlwillson B2 Sea\n\n22) wil: Trade Y2 G2 Wil\n\n23) dlwillson: Sacrifice Y3 Sky\nMove G3 Dlwillson Sea\nMove G3 Sea Sky\nMove G3 Sky Wil\nCatastrophe Wil G\n\twil: well that was both disappointing and appropriate!\n\tdlwillson: What happened? I waited and waited, hoping you would take it back...\n\twil: I couldn&#39;t take it back...not in the ladder....wouldn&#39;t be prudent...not when it took me that long to see it.\n\n\nHomeworlds Online (SDG# 27625)\nVariants: &quot;Unrated&quot;\nStarted: 2015.6.3, Ended: 2015.7.12\nParticipants: jrandom (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) jrandom: Homeworld B1 G2 Y3\n\n3) wil: Build G1 Wil\n\n4) jrandom: Build Y1 Jrandom\n\n5) wil: Trade G1 Y1 Wil\n\n6) jrandom: Build Y2 Jrandom\n\n7) wil: Build Y2 Wil\n\n8) jrandom: Trade Y2 G2 Jrandom\n\n9) wil: Discover Y2 Wil B2 B2\n\n10) jrandom: Build G1 Jrandom\n\n11) wil: Trade Y1 R1 Wil\n\n12) jrandom: Discover G2 Jrandom R3 Abalone\n\n13) wil: Build R1 Wil\n\n14) jrandom: Discover Y1 Jrandom B3 Bartleby\n\n15) wil: Discover R1 Wil G2 G2\n\n16) jrandom: Trade Y1 G1 Bartleby\n\n17) wil: Move Y2 B2 Bartleby\n\n18) jrandom: Build Y1 Jrandom\n\n19) wil: Sacrifice R1 G2\nAttack G1 Bartleby\n\n20) jrandom: Trade Y1 R1 Jrandom\n\n21) wil: Build G1 Wil\n\n22) jrandom: Build Y1 Jrandom\n\twil: headed off camping for a few days soon...  into Pennsylvania...pocono mtns eastern US...where abouts are you?\n\tjrandom: About 40 miles west of Toronto.\n\n23) wil: Discover G1 Wil Y2 Y2\n\twil: I&#39;ve a ton of family in Rochester...just crossed that little lake...\n\n24) jrandom: Move Y1 Jrandom Abalone\n\n25) wil: Build G2 Y2\n\n26) jrandom: Build G3 Abalone\n\n27) wil: Build G3 Wil\n\n28) jrandom: Trade G1 B1 Jrandom\n\n29) wil: Move G2 Y2 Abalone\n\n30) jrandom: Move G2 Abalone Y2\n\n31) wil: Move G1 Y2 Abalone\n\n32) jrandom: Attack G2 Abalone\n\tjrandom: move g2 Abalone y2\n\n33) wil: Sacrifice G3 Wil\nBuild G1 Abalone\nBuild R1 Wil\nBuild G3 Wil\nCatastrophe Abalone G\n\n34) jrandom: Build R2 Jrandom\n\n35) wil: Discover R1 Wil G2 G2\n\n36) jrandom: Move R2 Jrandom Bartleby\n\n37) wil: Sacrifice R1 G2\nAttack R2 Bartleby\n\n38) jrandom: Build G1 Y2\n\n39) wil: Discover G3 Wil B2 B2\n\n40) jrandom: Move Y1 Abalone Y2\n\n41) wil: Build G1 B2\n\n42) jrandom: Build R1 Jrandom\n\n43) wil: Build G2 Bartleby\n\n44) jrandom: Discover G1 Y2 G3 Cooper\n\n45) wil: Sacrifice G3 B2\nBuild G3 B2\nBuild R2 Bartleby\nBuild Y1 Bartleby\n\n46) jrandom: Build Y2 Jrandom\n\n47) wil: Sacrifice G3 B2\nBuild G3 B2\nBuild R2 Wil\nBuild R3 Wil\n\n48) jrandom: Build R3 Jrandom\n\n49) wil: Move R2 Bartleby Jrandom\nCatastrophe Jrandom R\n\n50) jrandom: Trade Y3 R3 Jrandom\n\n51) wil: Move Y1 Bartleby B2\n\twil: I can just move on of my reds in and catastrophe all the reds in your homeworld...are you aware of this?\n\twil: m r2 bartleby jrandom\r\nc jrandom r\n\twil: I&#39;m waiting for a response before I move...or if it gets upto the last couple days I&#39;ll just go ahead...\n\twil: another day...and I&#39;ll go ahead and move...\n\n52) jrandom: Build Y3 Jrandom\n\n53) wil: Sacrifice G3 B2\nBuild G3 B2\nBuild Y3 B2\nBuild Y3 Bartleby\n\n54) jrandom: Move Y2 Jrandom Cooper\n\n55) wil: Move R3 Wil Y2\n\n56) jrandom: Move G2 Y2 Cooper\n\n57) wil: Move G1 B2 Cooper\nCatastrophe Cooper G\n\n58) jrandom: Trade Y3 G3 Jrandom\n\n59) wil: Sacrifice Y2 Bartleby\nMove G1 Bartleby Jrandom\nMove G2 Bartleby Jrandom\nCatastrophe Jrandom G\n\n60) jrandom: Trade B1 G1 Jrandom\n\twil: Oh no, my little builder came to the convention and it was too much... \n\n61) wil: Sacrifice Y3 B2\nMove Y3 Bartleby Jrandom\nMove G3 B2 Bartleby\nMove G3 Bartleby Jrandom\n\n62) jrandom: Attack G3 Jrandom\n\n63) wil: Sacrifice R3 Y2\nAttack G3 Jrandom\nAttack R3 Jrandom\nAttack G1 Jrandom\n\n\twil: thx for the game....challenge me anytime...\n\nHomeworlds Online (SDG# 27632)\nStarted: 2015.6.3, Ended: 2015.6.11\nParticipants: ts52 (S), jrandom (N)\nWinner: ts52\n\n1) jrandom: Homeworld B1 G3 Y3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) jrandom: Build Y1 Jrandom\n\n4) ts52: Build G1 Ts52\n\n5) jrandom: Trade Y1 R1 Jrandom\n\n6) ts52: Trade G1 B1 Ts52\n\n7) jrandom: Build Y1 Jrandom\n\n8) ts52: Build B2 Ts52\n\n9) jrandom: Trade Y1 G1 Jrandom\n\n10) ts52: Trade B2 R2 Ts52\n\n11) jrandom: Build Y1 Jrandom\n\n12) ts52: Build B2 Ts52\n\n13) jrandom: Trade Y3 B3 Jrandom\n\n14) ts52: Build G1 Ts52\n\n15) jrandom: Build B2 Jrandom\n\n16) ts52: Discover B2 Ts52 G3 Kermit\n\n17) jrandom: Trade B3 Y3 Jrandom\n\n18) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\nBuild B3 Ts52\n\n19) jrandom: Discover G1 Jrandom R2 Artichoke\n\n20) ts52: Trade B3 Y3 Kermit\n\n21) jrandom: Sacrifice Y1 Jrandom\nMove G1 Artichoke Jrandom\n\n22) ts52: Build B3 Kermit\n\n23) jrandom: Build B3 Jrandom\n\n24) ts52: Trade B3 G3 Ts52\n\n25) jrandom: Discover B2 Jrandom Y2 Artichoke\n\n26) ts52: Trade B3 R3 Kermit\n\n27) jrandom: Build R1 Jrandom\n\n28) ts52: Move R3 Kermit Artichoke\n\n29) jrandom: Discover B2 Artichoke Y3 Bartleby\n\n30) ts52: Build B3 Kermit\n\n31) jrandom: Build Y1 Jrandom\n\n32) ts52: Discover G1 Ts52 B3 Gonzo\n\n33) jrandom: Discover R1 Jrandom Y2 Cummerbund\n\n34) ts52: Move B2 Kermit Artichoke\n\n35) jrandom: Move G1 Jrandom Cummerbund\n\n36) ts52: Trade B3 R3 Kermit\n\n37) jrandom: Move G1 Cummerbund Bartleby\n\n38) ts52: Build B3 Kermit\n\n39) jrandom: Move R1 Cummerbund Gonzo\n\n40) ts52: Move R2 Ts52 Gonzo\n\n41) jrandom: Move B2 Bartleby Ts52\n\n42) ts52: Sacrifice R2 Gonzo\nAttack R1 Gonzo\nAttack B2 Ts52\n\n43) jrandom: Sacrifice Y3 Jrandom\nMove B3 Jrandom Artichoke\nMove B3 Artichoke Bartleby\nMove B3 Bartleby Ts52\nCatastrophe Ts52 B\n\n44) ts52: Move R3 Artichoke Jrandom\n\n45) jrandom: Build R1 Jrandom\n\n46) ts52: Sacrifice R3 Kermit\nAttack R1 Jrandom\nAttack R1 Jrandom\nAttack Y1 Jrandom\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 27440)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.10, Ended: 2015.6.11\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\tSimon: Hi. I hope you don&#39;t mind bashing a newb. :-) I&#39;ve played 5-10 games IRL.\n\n2) wil: Homeworld B3 Y2 G3\n\twil: no problem at all...  If you have any questions...don&#39;t hesitate to ask!\n\n3) Simon: Build G1 Simon\n\tSimon: Alright, cool. Have fun!\n\n4) wil: Build G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: Trade G1 R1 Wil\n\n7) Simon: Build G1 Simon\n\twil: bashing a newb....   we&#39;ll see how well meet that goal...\n\n8) wil: Build R1 Wil\n\n9) Simon: Discover G1 Simon B2 Blue2\n\n10) wil: Discover R1 Wil Y1 Y1\n\n11) Simon: Build G1 Simon\n\n12) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 Y1\nBuild R2 Y1\n\n13) Simon: Build Y1 Simon\n\n14) wil: Trade R2 G2 Wil\n\n15) Simon: Build Y2 Simon\n\twil: the bashing will soon commence...\n\n16) wil: Sacrifice G2 Wil\nBuild R2 Wil\nBuild R3 Wil\n\tSimon: I didn&#39;t see the G3 sacrifice, and the counter-G3-sac wouldn&#39;t have cut it :)\n\n17) Simon: Move Y1 Simon Blue2\n\twil: you are correct...  gotta watch out for hoarding/monopolizing any economy...\n\n18) wil: Trade R3 G3 Wil\n\n19) Simon: Sacrifice G3 Simon\nBuild Y2 Blue2\nBuild Y3 Blue2\nBuild Y3 Simon\n\n20) wil: Move R1 Y1 Blue2\n\n21) Simon: Trade Y3 R3 Simon\n\n22) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Y1\nPass\n\twil: nice choice!\n\tSimon: Is there a ko rule on SDG? The wiki didn&#39;t mention anything. What&#39;s the designer&#39;s official stance on ko?\n\tSimon: &gt; nice choice!\r\nthanks :) it&#39;s gonna be very expensive defense though\n\n23) Simon: Build Y3 Simon\n\twil: ko?\n\tSimon: I mean a rule to prevent repetition. (taking the same ship using red back and forth, with neither player wanting to break the cycle.)\n\n24) wil: Trade R3 Y3 Wil\n\twil: ah....that hasn&#39;t happened to me yet in 200 games...  but I sure blew this game\r\n\n\tSimon: &gt; that hasn&#39;t happened to me yet in 200 games\r\nokay, thanks. I thought it would come up more often. :)\r\n&gt; but I sure blew this game\r\nNow as you say it, I see how I missed the one-move win (sac Y3, move R3 to wil)... I&#39;d rather not undo, because I didn&#39;t see it. I don&#39;t see a forced win for me right now :)\n\n25) Simon: Move R3 Simon Blue2\n\n26) wil: Move R2 Y1 Blue2\n\n27) Simon: Sacrifice Y2 Simon\nDiscover R3 Blue2 G1 Green1\nMove Y2 Blue2 Green1\n\n28) wil: Trade R2 G2 Wil\n\n29) Simon: Build R2 Green1\n\n30) wil: Build R3 Wil\n\n31) Simon: Sacrifice R2 Green1\nAttack R2S Blue2\nAttack R1S Blue2\n\n32) wil: Trade R1 B1 Wil\n\n33) Simon: Build Y2 Green1\n\n34) wil: Build G2 Wil\n\n35) Simon: Trade R1 B1 Blue2\n\twil: my blunders have got me in full regroup mode...\n\n36) wil: Move G2 Wil Y1\n\tSimon: small blue ship seems better for now than diving in with all the yellows. let&#39;s see whether I should have been greedy instead.\n\n37) Simon: Discover Y3 Blue2 R1 Red1\n\n38) wil: Move R3 Y1 Blue2\n\n39) Simon: Move B1 Blue2 Red1\n\twil: yes there are times when we have no great move...and have to not make a bad one..\n\n40) wil: Attack R2 Blue2\n\n41) Simon: Sacrifice Y1 Blue2\nMove G1 Blue2 Red1\n\n42) wil: Trade R3 G3 Blue2\n\n43) Simon: Build G2 Simon\n\n44) wil: Build G3 Y1\n\n45) Simon: Build G3 Red1\n\n46) wil: Discover Y3 Wil R1 R1\n\n47) Simon: Sacrifice G3 Red1\nBuild G3 Red1\nBuild Y1 Red1\nBuild B1 Red1\n\n48) wil: Sacrifice G3 Y1\nBuild G3 Y1\nBuild R2 Y1\nBuild R3 Blue2\n\n49) Simon: Sacrifice Y3 Red1\nMove B1 Red1 Wil\nMove B1 Red1 Wil\nMove Y2 Green1 Wil\nCatastrophe Wil B\n\n50) wil: Sacrifice Y3 R1\nMove G3 Blue2 Green1\nMove R3 Blue2 Green1\nDiscover G2 Wil Y3 Y3\n\twil: sweet!  nice move...and enough set up for the doomsday machine...great job!\n\n51) Simon: Sacrifice Y2 Green1\nMove Y1 Red1 Wil\nMove Y1 Simon Wil\nCatastrophe Wil Y\n\tSimon: Thanks, I believe it was the only variation that was guarantueed to work in 2 turns. Now I don&#39;t know whether I lucked out in the middlegame, or if &#39;newb&#39; doesn&#39;t match -- in any case, I learned new things, and have offer a rematch. :-)\n\twil: Good game...now challenge me again so I can get a reprieve!!\n\twil: or buttwhipped...\n\tSimon: Good game!\n\n\nHomeworlds Online (SDG# 27671)\nStarted: 2015.6.11, Ended: 2015.6.20\nParticipants: Simon (S), ts52 (N)\nWinner: Simon\n\n1) ts52: Homeworld Y3 B2 G3\n\tSimon: Hi. It&#39;s my second game on SDG. I&#39;ve played 5 to 10 times IRL, and am doing okay in my first online one. Enjoy the game!\n\tts52: Welcome! Feel free to ask any questions you like. Since you&#39;re new, I wont play the arguably stronger opening, as per star captain etiquette. ;)\n\n2) Simon: Homeworld B3 R1 G3\n\tts52: Which is &#39;h y1 b2 g3&#39; or &#39;h b1 y2 g3&#39;.\n\n3) ts52: Build G1 Ts52\n\n4) Simon: Build G1 Simon\n\tSimon: Yeah, I&#39;ve read about the ideas behind it. It&#39;ll be fun to experiment with later. :-)\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Simon: Trade G1 Y1 Simon\n\n7) ts52: Build B1 Ts52\n\n8) Simon: Build G1 Simon\n\n9) ts52: Discover B1 Ts52 G1 Robin\n\n10) Simon: Discover G1 Simon B2 Sea\n\n11) ts52: Build B1 Robin\n\n12) Simon: Build G1 Sea\n\n13) ts52: Build B2 Ts52\n\n14) Simon: Build G2 Simon\n\n15) ts52: Build B3 Robin\n\n16) Simon: Sacrifice G3 Simon\nBuild G2 Simon\nBuild G2 Simon\nBuild G3 Sea\n\n17) ts52: Build G3 Ts52\n\n18) Simon: Trade G3 Y3 Sea\n\n19) ts52: Trade B3 Y3 Robin\n\n20) Simon: Sacrifice G2 Simon\nBuild G2 Sea\nBuild G3 Simon\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Robin\nBuild Y1 Robin\n\n22) Simon: Trade G2 R2 Simon\n\n23) ts52: Discover B3 Robin G2 Oscar\n\tSimon: I considered destroying both of the non-homeworlds, but then you&#39;d take the first turn with a slightly stronger setup.\n\n24) Simon: Discover G1 Sea B3 Snatch\n\n25) ts52: Discover G3 Ts52 R1 Elmo\n\n26) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 Simon\nBuild Y2 Sea\n\n27) ts52: Trade B2 R2 Ts52\n\n28) Simon: Sacrifice Y2 Sea\nDiscover G2 Simon Y2 Melon\nMove R2 Simon Melon\n\n29) ts52: Move Y1 Robin Oscar\n\n30) Simon: Sacrifice G2 Sea\nBuild G2 Simon\nBuild Y2 Sea\n\n31) ts52: Build Y2 Oscar\n\n32) Simon: Trade Y2 B2 Sea\n\n33) ts52: Build Y2 Robin\n\n34) Simon: Trade Y1 R1 Simon\n\n35) ts52: Trade B3 R3 Oscar\n\n36) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R2 Melon\nBuild R3 Melon\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Elmo\nBuild B3 Robin\nBuild R3 Ts52\n\n38) Simon: Move B2 Sea Robin\nCatastrophe Robin Blue\n\n39) ts52: Move Y2 Oscar Elmo\n\n40) Simon: Move R2 Melon Snatch\n\n41) ts52: Move G3 Elmo Snatch\n\n42) Simon: Sacrifice Y1 Simon\nMove R2 Snatch Sea\n\n43) ts52: Sacrifice G3 Snatch\nBuild G3 Elmo\nBuild Y1 Elmo\nBuild Y1 Oscar\n\tSimon: hmm, I should have chosen the route via a yellow star instead &gt;_&gt;\n\n44) Simon: Trade G1 B1 Sea\n\n45) ts52: Discover G3 Elmo B2 Gonzo\n\n46) Simon: Discover B1 Sea G1 Nan\n\n47) ts52: Move B1 Ts52 Robin\n\n48) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 Nan\nBuild B3 Nan\n\n49) ts52: Move G3 Elmo Gonzo\n\n50) Simon: Move R3 Melon Elmo\n\n51) ts52: Sacrifice Y3 Robin\nMove G3 Gonzo Simon\nMove G3 Gonzo Simon\nMove R2 Ts52 Robin\nCatastrophe Simon Green\n\n52) Simon: Move Y3 Sea Simon\n\n53) ts52: Build Y3 Robin\n\n54) Simon: Attack Y2 Elmo\n\n55) ts52: Move Y3 Robin Melon\n\n56) Simon: Move R2 Melon Nan\n\n57) ts52: Move R2 Robin Melon\n\n58) Simon: Sacrifice R2 Sea\nAttack R2 Melon\nAttack Y1 Elmo\n\n59) ts52: Build R2 Oscar\n\n60) Simon: Move R2 Melon Nan\n\n61) ts52: Trade R3 G3 Ts52\n\n62) Simon: Move G2 Melon Elmo\n\n63) ts52: Move R3 Oscar Robin\n\n64) Simon: Build G2 Elmo\n\n65) ts52: Discover Y2 Robin B2 Grover\n\n66) Simon: Trade B3 G3 Nan\n\n67) ts52: Sacrifice Y1 Oscar\nMove R3 Robin Ts52\n\n68) Simon: Trade B1 Y1 Nan\n\n69) ts52: Build R3 Oscar\n\n70) Simon: Sacrifice G2 Elmo\nBuild G2 Snatch\nBuild G3 Snatch\n\n71) ts52: Move Y3 Melon Robin\n\n72) Simon: Sacrifice G3 Snatch\nBuild G3 Snatch\nBuild Y2 Nan\nBuild B1 Nan\n\n73) ts52: Sacrifice Y2 Grover\nMove R2 Oscar Elmo\nMove R3 Oscar Elmo\nCatastrophe Elmo Red\n\n74) Simon: Trade G2 Y2 Snatch\n\n75) ts52: Build Y1 Robin\n\n76) Simon: Build Y2 Snatch\n\n77) ts52: Build B2 Robin\n\n78) Simon: Move Y2 Snatch Robin\n\n79) ts52: Trade Y3 R3 Robin\n\n80) Simon: Move Y2 Robin Ts52\n\n81) ts52: Attack Y2 Ts52\n\n82) Simon: Sacrifice Y2 Snatch\nMove Y1 Nan Ts52\nMove Y2 Nan Ts52\nCatastrophe Ts52 Y\n\n83) ts52: Move B1 Robin Oscar\n\n84) Simon: Trade G3 Y3 Nan\n\n85) ts52: Build B2 Robin\n\n86) Simon: Trade Y3 B3 Simon\n\n87) ts52: Build G2 Ts52\n\n88) Simon: Sacrifice Y3 Nan\nMove B1 Nan Ts52\nMove B1 Nan Ts52\nMove B3 Simon Ts52\nCatastrophe Ts52 B\n\n\tSimon: Hm, this may have looked like an easy endgame; I&#39;ve learned something in the opening though. &lt;_&lt; And have to offer you a rematch to play against the stronger homeworld.\n\tts52: Well played. Thanks for the game. I look forward to the rematch.\n\tSimon: Thanks for the game!\n\nHomeworlds Online (SDG# 27676)\nStarted: 2015.6.11, Ended: 2015.6.13\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build B1 Wil\n\n8) ts52: Build Y1 Ts52\n\n9) wil: Discover B1 Wil G2 G2\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) wil: Build B2 G2\n\n12) ts52: Build Y2 Ts52\n\n13) wil: Trade B2 R2 G2\n\n14) ts52: Trade Y2 R2 Ts52\n\n15) wil: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B2 G2\nBuild B3 G2\n\n16) ts52: Build Y2 Kermit\n\n17) wil: Trade B3 Y3 G2\n\n18) ts52: Build Y2 Ts52\n\n19) wil: Build Y2 G2\n\n20) ts52: Discover Y2 Ts52 G3 Oscar\n\n21) wil: Discover B2 G2 Y3 Y3\n\n22) ts52: Sacrifice Y2 Kermit\nMove Y1 Kermit G2\nMove Y2 Oscar G2\nCatastrophe G2 Yellow\n\n23) wil: Build B3 G2\n\n24) ts52: Build Y1 Ts52\n\twil: I was wondering if you were willing to pull that trigger...poor kermit and oscar...\n\tts52: Yeah, not sure if it&#39;ll save me, but I figured it was worth the shot.\n\n25) wil: Trade B3 Y3 G2\n\n26) ts52: Discover Y1 Ts52 G3 Kermit\n\n27) wil: Build B3 G2\n\n28) ts52: Build Y2 Kermit\n\n29) wil: Build Y2 G2\n\n30) ts52: Build R1 Ts52\n\n31) wil: Move B3 G2 Kermit\n\n32) ts52: Build Y2 Ts52\n\n33) wil: Sacrifice Y3 G2\nMove B3 Kermit Ts52\nMove Y2 G2 Kermit\nMove Y2 Kermit Ts52\nCatastrophe Ts52 Y\n\n34) ts52: Attack B3 Ts52\n\n35) wil: Build B3 G2\n\n36) ts52: Sacrifice Y1 Kermit\nMove B3 Ts52 Wil\nCatastrophe Wil Blue\n\tts52: Thanks for the game. I wasn&#39;t sure I was going to get away with that one.\n\twil: lol....what a space cadet I was...\n\n\nHomeworlds Online (SDG# 27668)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.11, Ended: 2015.6.14\nParticipants: Simon (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 R1 G3 *\n\tSimon: Have fun!\n\n2) Simon: Homeworld R2 B1 G3\n\n3) wil: Build G1 Wil\n\n4) Simon: Build G1 Simon\n\twil: experimental opening....  \n\n5) wil: Discover G1 Wil B2 B2\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: Build G1 B2\n\n8) Simon: Build Y1 Simon\n\n9) wil: Trade G1 Y1 B2\n\n10) Simon: Discover Y1 Simon G3 G3\n\n11) wil: Build Y2 B2\n\n12) Simon: Build Y2 Simon\n\n13) wil: Trade Y1 R1 B2\n\n14) Simon: Trade Y2 R2 Simon\n\n15) wil: Build R1 B2\n\n16) Simon: Move R2 Simon G3\n\n17) wil: Trade R1 B1 B2\n\n18) Simon: Build Y1 Simon\n\n19) wil: Build B1 B2\n\n20) Simon: Build Y2 G3\n\n21) wil: Discover B1 B2 Y3 Y3\n\n22) Simon: Discover Y1 Simon B3 B3\n\n23) wil: Discover G1 B2 Y3 Why3\n\n24) Simon: Build Y2 Simon\n\n25) wil: Move B1 B2 Wil\n\n26) Simon: Trade Y2 R2 Simon\n\n27) wil: Build B2 Wil\n\n28) Simon: Move R2 Simon Y3\n\n29) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Wil\n\n30) Simon: Sacrifice R2 G3\nAttack B2 Y3\nAttack B1 Y3\n\twil: I know you thought my little trade ship was easy pickins....but he has friends.\n\tSimon: nice, didn&#39;t see it at all. In general, blue ships are much more important than I&#39;ve always thought\n\n31) wil: Trade B3 G3 Wil\n\n32) Simon: Discover R2 Y3 G2 Geetoo\n\n33) wil: Trade B3 R3 Y3\n\n34) Simon: Move B2 Y3 Simon\n\n35) wil: Attack B1 Y3\n\n36) Simon: Build G1 Simon\n\n37) wil: Build B3 Wil\n\n38) Simon: Move B2 Simon Why3\n\n39) wil: Trade B2 G2 Wil\n\n40) Simon: Build R1 Geetoo\n\n41) wil: Sacrifice G3 Wil\nBuild R2 B2\nBuild R3 B2\nBuild R3 Y3\n\n42) Simon: Build Y2 Simon\n\n43) wil: Move R3 B2 Why3\n\tSimon: I feel this is a lost game, with 1 large against 4. I should have went for the 3 red ships, even if it&#39;s pricey. &gt;_&gt;\n\twil: Yeah, I don&#39;t have a closing argument yet...but it is a mater of time....although mistakes are made....when I am this far behind I still don&#39;t quit because folks are known to be focused on an end game and make a huge blunder.\n\n44) Simon: Move B2 Why3 Geetoo\n\tSimon: Alright, then I&#39;ll play on happily. :)\n\n45) wil: Move R3 Why3 Geetoo\n\twil: no force...you can resign if you wish...the other thing I liked about sticking it out was watching the end game...watching how others beat me (ts52 just slaughtered me, like our old game..I was blinded by my scheme and missed the obvious)\n\n46) Simon: Build B2 Geetoo\n\n47) wil: Sacrifice R3 Y3\nAttack R2 Geetoo\nAttack R1 Geetoo\nAttack B2 Geetoo\n\n\tSimon: This sac is the safest play. Thanks for the game. :-)\n\twil: Yeah...that pretty much sealed the deal...look forward to another whenever you are upto it.\n\nHomeworlds Online (SDG# 27644)\nVariants: &quot;Unrated&quot;\nStarted: 2015.6.14, Ended: 2015.6.28\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld G3 B2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tdragon76n: Hello Wil, I&#39;m new to Homeworlds. I just read the rules of the game today on http://www.looneylabs.com/rules/homeworlds and was hoping to find an open game here that would be willing to show me the ropes. \n\twil: I&#39;m glad to help...just about my favorite game!  So now openings, folks think banker is best, you took fortress so I&#39;ll take goldilocks...\n\n3) dragon76n: Build Y1 Dragon76n\n\twil: Having a green star in your homeworld makes it hard to have a factory later..as you can&#39;t have one there...reduces opportunity.\n\n4) wil: Build G1 Wil\n\tdragon76n: Ok. Thanks for the tip about The Factory. I&#39;ll try to keep that in mind for the future. \n\n5) dragon76n: Trade Y1 B1 Dragon76n\n\twil: Are you a chess player?  What is your favorite game?\n\tdragon76n: I play chess once in a while. My favorite game is Conquest of the Empire, but it is tough for me to find people who will play. I play Dominion and Settlers of Catan the most with my wife and son.\n\n6) wil: Trade G1 B1 Wil\n\tdragon76n: At this point I&#39;m not even sure how I should be expanding. I&#39;m just trying to read over the instructions to try to grasp the basic ideas, so any tips you&#39;re willing to give a &quot;Junior Officer&quot; is much appreciated, even if they don&#39;t come until after you are in position to destroy me. \n\twil: You&#39;ve picked perfectly...the shortest stack...tis the game to get to the big pieces...\n\n7) dragon76n: Build B2 Dragon76n\n\twil: You are first working to build a variety of ships for use later, to build new outposts with protection and diversity\n\twil: Begin with the end in mind...there are two ways to win... take over the ships in the other homeworld or destroy the stars...\n\n8) wil: Build B2 Wil\n\n9) dragon76n: Trade B2 Y2 Dragon76n\n\n10) wil: Trade B1 R1 Wil\n\tdragon76n: Is it common for players to build up a lot at the homeworld before moving away to another star? \n\n11) dragon76n: Trade Y3 R3 Dragon76n\n\twil: nah...sometimes build two and move one...or you may simply move one straight out...depends\n\n12) wil: Discover B2 Wil G2 G2\n\tdragon76n: Based on what I was reading in the rules, bigger yellow ships seem to be able to move further than smaller ones, but I didn&#39;t see anything in the &quot;Move&quot; section that would confirm that. \n\twil: they don&#39;t...sacking a y3 allows you 3 moves with other ships...like sacrificing a r2 allows you to attack two ships and sacking a g1 build one, sacking a b3 changing the colors of 3 ships...\n\n13) dragon76n: Discover Y2 Dragon76n Y1 Yellone\n\tdragon76n: Ok. Thanks for the clarification. \n\n14) wil: Build R1 Wil\n\n15) dragon76n: Build B1 Dragon76n\n\n16) wil: Build B2 G2\n\tdragon76n: I guess I just tried a couple illegal plays, trying to build ships that I couldn&#39;t.\n\twil: you must have one of the ships in the star system you want to build... it is like you need an example to build another one...\n\n17) dragon76n: Move Y2 Yellone Dragon76n\n\twil: If you are confused...don&#39;t hesitate to ask questions...right there taking the last blue pawn, you opened up blue drones for me...and in the safety of you not being able to build another without a catastrophe\n\n18) wil: Trade B2 Y2 G2\n\tdragon76n: Ok. Thanks again. Is it possible for you to get to my Homeworld in one turn if there is no connecting star? For example, if you had a Y3 ship that you Sacrifice, would it allow you to do a discovery with one ship and then move past there with another? I don&#39;t think that&#39;s allowed since each &quot;pip&quot; only allows one ship from the current star to move to the next star, right? \n\twil: yes and no...the star system is created momentarily for you to land and then disappears again after you leave it.   \r\n\r\ns y3 hw\r\nm g1 hw existingstar\r\nd g1 existingstar newstar\r\nm g1 newstar opponentHW\n\n19) dragon76n: Discover B1 Dragon76n G1 Greeone\n\twil: and now suddenly your question is appropriate!\n\n20) wil: Build R1 Wil\n\tdragon76n: So a Sacrifice doesn&#39;t have to be applied at the same location?\n\twil: No...once you sac something you provide that power (trade, build, attack, move) anywhere on the board to any piece regardless of its color or the color of its star system, tis galaxy wide (for your ships)\n\n21) dragon76n: Build R2 Dragon76n\n\n22) wil: Move R1 Wil G2\n\tdragon76n: Ok. Thanks for the info. I&#39;m glad to be playing against you for my first game. Too many times I&#39;ve tried playing games online with people who have no tolerance for new players. I tried playing some stuff on VASSAL last week... a game that I know the rules to but didn&#39;t know how to play in using that program, but I was told to leave in a rather rude manner. And it wasn&#39;t my first experience like that. \n\twil: humans...\n\twil: and I missed my moment by one move...I shoulda moved in on your new star with my ship...you wouldn&#39;t sac a 3 for one kill and I would have had it....\n\n23) dragon76n: Move R2 Dragon76n Greeone\n\n24) wil: Trade R1 Y1 Wil\n\tdragon76n: Ahh... I think I&#39;m now realizing why even having small red ships would be nice, since you&#39;ve pointed out that I &quot;wouldn&#39;t sac a 3 for one kill.&quot; Those little red ones can just sit back like long range missiles. \n\twil: zactly, inter galactic star wars protection...lazer accuracy\n\n25) dragon76n: Build Y1 Dragon76n\n\n26) wil: Build G1 Wil\n\tdragon76n: Sorry, I thought I had submitted the orders for my turn yesterday. \n\n27) dragon76n: Move Y1 Dragon76n Greeone\n\twil: no worries..\n\n28) wil: Discover G1 Wil Y2 Y2\n\n29) dragon76n: Build B2 Greeone\n\n30) wil: Build B3 G2\n\n31) dragon76n: Move R2 Greeone Y2\n\n32) wil: Trade B3 Y3 G2\n\twil: do you know about overpopulation?  that you can cause an environmental catastrophe by having 4 of any one color in a star system?  That if I sac my y2 in g2 I can send a blue thru greeone into your homeworld and catastrophe all your blues?  Which would include half your homeworld star?  \n\twil: I&#39;ll wait till you decide to make a different move before I go.\n\twil: tell me if you wish to keep this move..\n\tdragon76n: I read about catastrophe before, but didn&#39;t notice you were in range to do out. I will accept the consequences if you choose to do that. \n\twil: no...if you didn&#39;t know you can always back up...I&#39;ve got no choice to go forward and do that...this is your chance, the learning game...next time I won&#39;t be so nice (note so much changes when you move...when we play live we move a coin or something when we are done..because you really need to look to see how the board changes...you legitimately get  a reprieve on this one...\n\tdragon76n: Ok. Thanks. I&#39;ll adjust my move. \n\n33) dragon76n: Attack G1 Y2\n\tdragon76n: Ok. I think I&#39;m set now. Do players get the option to take back their turn every time? I don&#39;t see an option to do it now. I only see an option to Resign up where I saw the option to undo my move before. Not that I&#39;m trying to take back this move, I&#39;m just wondering if it&#39;s possible. \n\twil: you can back up one move at a time...  each move allows run redo...but not two...  in real life you can try as much as you want...until you move the coin\n\n34) wil: Build B3 G2\n\n35) dragon76n: Sacrifice Y2 Dragon76n\nMove B1 Greeone G2\nMove B2 Greeone G2\nCatastrophe G2 Blue\n\n36) wil: Trade Y1 B1 Wil\n\n37) dragon76n: Trade B1 Y1 Dragon76n\n\tdragon76n: Ok. I noticed that multiple moves in one turn are submitted all together. \n\n38) wil: Build B1 Wil\n\n39) dragon76n: Discover Y1 Greeone B3 Bluethr\n\n40) wil: Move B1 Wil G2\n\n41) dragon76n: Build R1 Y2\n\n42) wil: Build R2 G2\n\n43) dragon76n: Move R2 Y2 Bluethr\n\n44) wil: Discover R2 G2 G3 G3\n\n45) dragon76n: Build R2 Y2\n\n46) wil: Build R3 G2\n\n47) dragon76n: Build R3 Dragon76n\n\n48) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n49) dragon76n: Discover R2 Bluethr G2 Gretwo\n\twil: looks like I might get both of those...hmmm\n\tdragon76n: Ouch. Yeah... I was wondering if that was coming. \n\n50) wil: Trade B3 G3 Wil\n\n51) dragon76n: Move Y1 Bluethr Gretwo\n\n52) wil: Discover B2 G2 G1 G1\n\n53) dragon76n: Move R3 Dragon76n G1\n\n54) wil: Move B1 G2 G3\n\n55) dragon76n: Attack B2 G1\n\n56) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 G2\nBuild B3 G3\n\n57) dragon76n: Build G1 Y2\n\n58) wil: Trade B3 G3 Wil\n\n59) dragon76n: Trade B2 Y2 G1\n\n60) wil: Trade B3 Y3 G3\n\n61) dragon76n: Build Y1 Gretwo\n\n62) wil: Build B2 G3\n\n63) dragon76n: Move Y1 Gretwo Wil\n\n64) wil: Attack Y1 Wil\n\n65) dragon76n: Move Y1 Dragon76n G1\n\n66) wil: Move Y3 G3 Y2\n\n67) dragon76n: Move Y1 G1 Gretwo\n\n68) wil: Sacrifice R1 G2\nAttack R2 Y2\n\n69) dragon76n: Sacrifice Y2 G1\nMove Y1 Gretwo Wil\nMove Y1 Gretwo Wil\nCatastrophe Wil Yellow\n\n70) wil: Sacrifice Y3 G2\nMove R3 G2 Wil\nMove R3 Wil Dragon76n\nMove R1 Wil Dragon76n\n\n71) dragon76n: Attack R3 Dragon76n\n\n72) wil: Sacrifice Y2 G2\nMove R2 G3 Wil\nMove R2 Wil Dragon76n\nCatastrophe Dragon76n R\n\n\tdragon76n: Yep... I realized that I have no movement after I sent in my attack. I was hoping that it would be worth the sacrifice but I&#39;m wondering about that now. \n\twil: good game... I look forward to the next!\n\twil: the issue is one color in your homeworld leaves you open for the blue bird (simply eliminating that color through catastrophe)...\n\tdragon76n: Oh wow... I saw that you were probably going to eliminate the red ships from my homeworld. I had forgotten about that causing an immediate loss. Good game. \n\twil: Can&#39;t run your fleet if you have no leaders left at  home\n\nHomeworlds Online (SDG# 27678)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.14, Ended: 2015.6.16\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 Y1 G3\n\tSimon: Have fun!\n\n2) wil: Homeworld B3 R1 G3\n\n3) Simon: Build G1 Simon\n\twil: THere he is again...  thanx for the game\n\n4) wil: Build G1 Wil\n\n5) Simon: Trade G1 B1 Simon\n\twil: I&#39;m  in the DC area...  I&#39;m guessing you are west coast?\n\tSimon: I&#39;m from Germany. :) I have a weird sleeping schedule these days, sleeping in the evenings, and getting to play early in the morning before university.\n\n6) wil: Trade G1 Y1 Wil\n\twil: lol....for some reason I was first gonna say EU...but then the late night responses made no sense!   now they do!\n\n7) Simon: Build B1 Simon\n\n8) wil: Build Y1 Wil\n\n9) Simon: Discover B1 Simon G2 Gee\n\twil: the race...\n\n10) wil: Discover Y1 Wil R2 R2\n\tSimon: Getting no blue ships in the last game was worse than getting no yellows.\n\n11) Simon: Build B1 Gee\n\twil: oh crap..dang short universe my bad\n\n12) wil: Build Y2 Wil\n\n13) Simon: Build B2 Gee\n\twil: while blues are great for trading...ya can&#39;t move without y...\n\n14) wil: Discover Y2 Wil G2 G2\n\n15) Simon: Trade B2 Y2 Gee\n\n16) wil: Build G1 Wil\n\n17) Simon: Build B2 Gee\n\n18) wil: Build Y2 Wil\n\n19) Simon: Build Y3 Gee\n\n20) wil: Sacrifice Y2 G2\nMove Y1 Wil Gee\nMove Y2 Wil Gee\nCatastrophe Gee Y\n\n21) Simon: Trade B2 Y2 Gee\n\n22) wil: Build G1 Wil\n\tSimon: now nobody can move without yellow.\n\n23) Simon: Sacrifice Y2 Gee\nMove G3 Simon Gee\nMove G3 Gee Wil\nCatastrophe Wil G\n\twil: yeah...I&#39;ve been playin real bad lately\n\tSimon: Small universe seems to makes the first move even more valuable. &gt;_&gt;\n\n\nHomeworlds Online (SDG# 27692)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.17, Ended: 2015.6.23\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B2 R1 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tSimon: Let&#39;s do another one. Enjoy!\n\twil: Yay-yuh!\n\twil: I think at one time I was playing 3 with the same player...it was fun...but confusing..\n\n3) Simon: Build G1 Simon\n\n4) wil: Build G1 Wil\n\n5) Simon: Trade G1 B1 Simon\n\n6) wil: Trade G1 B1 Wil\n\n7) Simon: Build B2 Simon\n\n8) wil: Build B2 Wil\n\n9) Simon: Trade B1 Y1 Simon\n\n10) wil: Trade B1 R1 Wil\n\n11) Simon: Build Y1 Simon\n\n12) wil: Build R1 Wil\n\n13) Simon: Discover B2 Simon G3 G3\n\n14) wil: Discover R1 Wil Y2 Y2\n\n15) Simon: Build G1 Simon\n\n16) wil: Build R2 Wil\n\n17) Simon: Build B1 G3\n\n18) wil: Sacrifice G3 Wil\nBuild R2 Y2\nBuild R2 Y2\nBuild R3 Wil\n\n19) Simon: Trade B2 Y2 G3\n\n20) wil: Move R2 Y2 G3\n\n21) Simon: Discover Y2 G3 G1 G1\n\n22) wil: Build R3 G3\n\tSimon: nowhere to hide!\n\n23) Simon: Discover G1 Simon Y3 Y3\n\twil: tis a cat and mouse game...I was one step ahead on growth, if you didn&#39;t trade for a red I could see a way to control the economy...worse than that...it is the red economy which covers attacks...(all monopolies are bad this just has another aspect.  \r\n\r\nonly one move I see that can delay me winning in 3\n\tSimon: I didn&#39;t pay attention after getting a b2 ship. That sure had to cover everything that could possibly happen. :]\n\n24) wil: Build R3 G3\n\n25) Simon: Sacrifice G3 Simon\nBuild Y1 G1\nBuild Y2 G1\nBuild Y3 Simon\n\twil: close...you needed to create an R3 star...\n\n26) wil: Attack B1 G3\n\twil: ar that that worked\n\n27) Simon: Discover Y2 G1 B3 B3\n\n28) wil: Move R2 Y2 G1\n\n29) Simon: Sacrifice G1 Y3\nBuild Y3 B3\n\n30) wil: Attack Y2 G1\n\n31) Simon: Trade Y3 G3 Simon\n\n32) wil: Sacrifice Y2 G1\nMove R3 G3 Simon\nMove R3 G3 Simon\n\n\twil: this is the you take one I&#39;ll take three maneuver....you held it off with your yellow monopoly...I couldn&#39;t move in with two until I got that y2\n\tSimon: gg. Instructive game again.\n\twil: I still miss stuff all the time...and probably lost 90% of my first 20 games....recognizing both attacks and opportunities comes from watching yourself get whooped (my opinion)\n\twil: thanx challenge me anytime...start climbing the ladder we need more playing at the top!\n\nHomeworlds Online (SDG# 27685)\nStarted: 2015.6.18, Ended: 2015.6.23\nParticipants: ts52 (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) endo: Build G1 Endo\n\n4) ts52: Build G1 Ts52\n\n5) endo: Trade G1 R1 Endo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) endo: Build R1 Endo\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) endo: Build R1 Endo\n\n10) ts52: Build B1 Robin\n\n11) endo: Discover R1 Endo B3 Union\n\n12) ts52: Build B2 Robin\n\n13) endo: Sacrifice G3 Endo\nBuild R2 Endo\nBuild R2 Union\nBuild R2 Union\n\n14) ts52: Trade B2 Y2 Robin\n\n15) endo: Discover R1 Endo G3 Powerset\n\n16) ts52: Discover B1 Robin G3 Kermit\n\n17) endo: Move R2 Endo Kermit\n\n18) ts52: Build G1 Ts52\n\n19) endo: Attack B1 Kermit\n\n20) ts52: Build B2 Robin\n\n21) endo: Build R3 Kermit\n\n22) ts52: Build G1 Ts52\n\n23) endo: Trade B1 Y1 Kermit\n\n24) ts52: Build B1 Robin\n\n25) endo: Build R3 Powerset\n\n26) ts52: Discover B2 Robin Y3 Bigbird\n\n27) endo: Build R3 Kermit\n\n28) ts52: Discover G1 Ts52 Y1 Zoe\n\n29) endo: Move R3 Kermit Zoe\n\n30) ts52: Build G2 Zoe\n\n31) endo: Move R3 Zoe Ts52\n\n32) ts52: Move B2 Bigbird Endo\n\n33) endo: Sacrifice R2 Union\nAttack G3 Ts52\nAttack G1 Ts52\n\tts52: Thanks for the game. Shouldn&#39;t have let you get the monopoly in red. Well played.\n\n\nHomeworlds Online (SDG# 27716)\nStarted: 2015.6.19, Ended: 2015.6.20\nParticipants: KatsCyl (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y1 G3 *\n\tKatsCyl: homeworld B3 Y2 G3\n\n2) KatsCyl: Homeworld B3 R1 G3\n\n3) endo: Build G1 Endo\n\n4) KatsCyl: Build G1 Katscyl\n\n5) endo: Discover G1 Endo B2 Mono\n\tKatsCyl: T&auml;m&auml; on varmaan k&auml;m&auml;sin webbipeli mit&auml; oon koskaan pelannut +D\n\n6) KatsCyl: Trade G1 Y1 Katscyl\n\tendo: Noh, toimii\n\n7) endo: Build G1 Mono\n\n8) KatsCyl: Build Y1 Katscyl\n\n9) endo: Trade G1 R1 Mono\n\n10) KatsCyl: Build Y2 Katscyl\n\n11) endo: Build R1 Mono\n\n12) KatsCyl: Discover Y2 Katscyl B2 Serenity\n\n13) endo: Build R2 Mono\n\n14) KatsCyl: Build G1 Katscyl\n\n15) endo: Trade R2 Y2 Mono\n\n16) KatsCyl: Move G1 Katscyl Serenity\n\n17) endo: Build R2 Mono\n\n18) KatsCyl: Build Y2 Serenity\n\n19) endo: Build Y3 Mono\n\n20) KatsCyl: Sacrifice Y2 Serenity\nMove Y1 Katscyl Mono\nMove Y1 Katscyl Mono\nCatastrophe Mono Y\n\n21) endo: Trade R2 Y2 Mono\n\n22) KatsCyl: Build Y1 Serenity\n\n23) endo: Build R2 Mono\n\n24) KatsCyl: Trade Y2 R2 Serenity\n\n25) endo: Trade R1 B1 Mono\n\n26) KatsCyl: Build G1 Serenity\n\n27) endo: Build G2 Mono\n\n28) KatsCyl: Build G2 Katscyl\n\n\tKatsCyl: Min&auml; olen tuuba...\n\nHomeworlds Online (SDG# 27628)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.21, Ended: 2015.7.6\nParticipants: endo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) endo: Build G1 Endo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) endo: Trade G1 B1 Endo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) endo: Build B1 Endo\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) endo: Discover B1 Endo G2 Ideal\n\n11) SilentTitan: Discover Y2 Silenttitan G3 Sol\n\n12) endo: Build B2 Ideal\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n14) endo: Build B2 Endo\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n16) endo: Discover B2 Endo B2 Filter\n\n17) SilentTitan: Discover Y1 Silenttitan B3 Sole\n\n18) endo: Build G1 Endo\n\n19) SilentTitan: Discover Y2 Sol G2 Tic\n\n20) endo: Trade G3 Y3 Endo\n\n21) SilentTitan: Move Y2 Sol Silenttitan\n\n22) endo: Trade B2 G2 Filter\n\n23) SilentTitan: Build Y3 Sol\n\n24) endo: Build G1 Filter\n\n25) SilentTitan: Sacrifice Y3 Sol\nMove Y2 Sol Tic\nMove Y2 Tic Endo\nMove Y2 Tic Endo\nCatastrophe Endo Yellow\n\n26) endo: Trade B1 Y1 Endo\n\n27) SilentTitan: Trade Y3 R3 Silenttitan\n\n28) endo: Build Y2 Endo\n\n29) SilentTitan: Move R3 Silenttitan Endo\n\n30) endo: Move Y2 Endo Silenttitan\n\n31) SilentTitan: Attack Y2 Silenttitan South\n\n32) endo: Move Y1 Endo Silenttitan\n\n33) SilentTitan: Attack G1 Endo South\n\n\nHomeworlds Online (SDG# 27719)\nStarted: 2015.6.22, Ended: 2015.9.18\nParticipants: Simon (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Simon: Homeworld G3 B1 Y3\n\tSimon: Have fun! :)\n\n3) ts52: Build G1 Ts52\n\tts52: Thanks. You too!\n\n4) Simon: Build Y1 Simon\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Simon: Build Y2 Simon\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) Simon: Discover Y2 Simon G2 Grass\n\n9) ts52: Build Y2 Kermit\n\n10) Simon: Trade Y1 B1 Simon\n\n11) ts52: Build G1 Ts52\n\n12) Simon: Build B1 Simon\n\n13) ts52: Move Y2 Kermit Ts52\n\n14) Simon: Move B1 Simon Grass\n\n15) ts52: Trade Y2 B2 Ts52\n\n16) Simon: Build B2 Grass\n\n17) ts52: Move B2 Ts52 Kermit\n\n18) Simon: Build B3 Simon\n\n19) ts52: Build B3 Kermit\n\n20) Simon: Trade B3 R3 Simon\n\n21) ts52: Trade B3 R3 Kermit\n\n22) Simon: Build B3 Simon\n\n23) ts52: Build B3 Kermit\n\n24) Simon: Trade B3 Y3 Simon\n\n25) ts52: Discover B3 Kermit G2 Robin\n\n26) Simon: Build B3 Grass\n\n27) ts52: Build B3 Robin\n\n28) Simon: Trade B3 Y3 Grass\n\n29) ts52: Build B3 Kermit\n\n30) Simon: Discover Y3 Simon R2 Wine\n\n31) ts52: Trade B3 R3 Robin\n\n32) Simon: Build B3 Grass\n\n33) ts52: Move B2 Kermit Grass\nCatastrophe Grass Blue\n\n34) Simon: Move B1 Simon Grass\n\n35) ts52: Discover G1 Ts52 B3 Gonzo\n\n36) Simon: Build R1 Simon\n\n37) ts52: Build G1 Ts52\n\n38) Simon: Move R3 Simon Grass\n\n39) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n40) Simon: Move R3 Grass Gonzo\n\n41) ts52: Sacrifice G3 Ts52\nBuild Y1 Kermit\nBuild Y2 Kermit\nBuild G3 Ts52\n\n42) Simon: Attack G2 Gonzo\n\n43) ts52: Trade G1 R1 Ts52\n\n44) Simon: Attack G1 Gonzo\n\n45) ts52: Move Y1 Kermit Robin\n\n46) Simon: Sacrifice Y2 Grass\nMove G1 Gonzo Ts52\nMove G2 Gonzo Ts52\nCatastrophe Ts52 G\n\n47) ts52: Move B3 Kermit Ts52\n\n48) Simon: Build Y2 Grass\n\n49) ts52: Trade B3 G3 Ts52\n\n50) Simon: Build Y2 Simon\n\n51) ts52: Build G1 Ts52\n\n52) Simon: Build B1 Grass\n\n53) ts52: Build B2 Robin\n\n54) Simon: Trade B1 G1 Grass\n\n55) ts52: Move B3 Robin Kermit\n\n56) Simon: Move G1 Grass Gonzo\n\n57) ts52: Move Y1 Kermit Robin\n\n58) Simon: Trade Y2 G2 Simon\n\n59) ts52: Build Y2 Kermit\n\n60) Simon: Move G2 Simon Wine\n\n61) ts52: Discover Y2 Kermit G1 Oscar\n\n62) Simon: Sacrifice Y3 Grass\nMove G1 Gonzo Ts52\nMove G2 Wine Gonzo\nMove G2 Gonzo Ts52\nCatastrophe Ts52 Green\n\n63) ts52: Move B3 Kermit Ts52\n\n64) Simon: Build Y3 Grass\n\n65) ts52: Trade B3 G3 Ts52\n\n66) Simon: Build B1 Grass\n\n67) ts52: Move Y2 Oscar Grass\n\n68) Simon: Move Y2 Grass Gonzo\n\n69) ts52: Build G1 Ts52\n\n70) Simon: Move B1 Grass Gonzo\n\n71) ts52: Build G1 Ts52\n\n72) Simon: Trade B1 G1 Gonzo\n\n73) ts52: Move G1 Ts52 Kermit\n\n74) Simon: Build R1 Gonzo\n\n75) ts52: Build R2 Kermit\n\n76) Simon: Build R2 Simon\n\n77) ts52: Sacrifice R1 Ts52\nAttack B1S Grass\n\n78) Simon: Build G2 Gonzo\n\n79) ts52: Trade G1 R1 Ts52\n\n80) Simon: Sacrifice R2 Simon\nAttack Y2 Grass\nAttack B1 Grass\n\n81) ts52: Build R2 Robin\n\n82) Simon: Discover Y3 Wine B3 Sea\n\n83) ts52: Build R2 Ts52\n\n84) Simon: Build B1 Grass\n\n85) ts52: Sacrifice Y2 Kermit\nMove R1 Ts52 Gonzo\nMove R2 Robin Gonzo\nCatastrophe Gonzo Red\n\n86) Simon: Sacrifice G1 Gonzo\nBuild Y2 Sea\n\n87) ts52: Move R3 Robin Gonzo\n\n88) Simon: Trade B1 R1 Grass\n\n89) ts52: Sacrifice R2 Kermit\nAttack Y2 Gonzo\nAttack G2 Gonzo\n\n90) Simon: Trade Y2 R2 Sea\n\n91) ts52: Build Y2 Gonzo\n\n92) Simon: Build B1 Grass\n\n93) ts52: Build G1 Ts52\n\n94) Simon: Trade B1 G1 Grass\n\n95) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Robin\nBuild R1 Gonzo\n\n96) Simon: Build B2 Grass\n\n97) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Kermit\n\n98) Simon: Move G1 Grass Sea\n\n99) ts52: Move B1 Robin Kermit\n\n100) Simon: Discover B1 Grass B3 B3\n\n101) ts52: Move Y1 Robin Kermit\n\n102) Simon: Move Y2 Grass B3\n\n103) ts52: Move R3 Kermit Robin\n\n104) Simon: Move R2 Sea Grass\n\n105) ts52: Move R1 Gonzo Robin\n\n106) Simon: Move R1 Grass Sea\n\n107) ts52: Move R2 Ts52 Kermit\n\n108) Simon: Move R1 Sea Grass\n\n109) ts52: Move R3 Robin B3\n\n110) Simon: Sacrifice Y2 B3\nMove R1 Grass Kermit\nMove R2 Grass Kermit\nCatastrophe Kermit R\n\n111) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild R1 Robin\n\n112) Simon: Build R2 Simon\n\n113) ts52: Sacrifice Y2 Gonzo\nMove R1 Robin Simon\nMove R1 Robin Simon\nCatastrophe Simon Red\n\n114) Simon: Trade G1 R1 Sea\n\n115) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G3 Ts52\nBuild Y2 Robin\n\n116) Simon: Move R1 Sea Grass\n\n117) ts52: Sacrifice Y2 Kermit\nMove Y1 Robin Simon\nMove Y2 Robin Simon\n\n118) Simon: Trade Y3 R3 Simon\n\n119) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild Y3 Kermit\n\n120) Simon: Attack Y2 Simon\n\n121) ts52: Move R3 Gonzo Robin\n\n122) Simon: Build R1 Grass\n\n123) ts52: Attack B1 B3\n\n124) Simon: Attack Y1 Simon\n\n125) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Robin\nBuild R2 Robin\n\n126) Simon: Sacrifice Y2 Simon\nMove R1 Grass Simon\nMove R1 Simon Robin\nCatastrophe Robin R\n\n127) ts52: Move Y2 Gonzo Robin\n\n128) Simon: Build Y2 Grass\n\n129) ts52: Discover Y3 Kermit R2 Elmo\n\n130) Simon: Build R1 Grass\n\n131) ts52: Sacrifice Y1 Kermit\nMove R3 B3 Robin\n\n132) Simon: Move Y3 Grass Gonzo\n\n133) ts52: Sacrifice Y2 Robin\nMove Y3 Elmo Simon\nMove R3 Robin Simon\n\n\tSimon: Nice, didn&#39;t see this. Thanks for the game!\n\tts52: Thanks! Good game!\n\nHomeworlds Online (SDG# 27705)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.22, Ended: 2015.6.23\nParticipants: wil (S), endo (N)\nWinner: wil\n\n1) endo: Homeworld B1 Y3 G3\n\n2) wil: Homeworld R2 Y1 B3 *\n\n3) endo: Build G1 Endo\n\twil: thanx for the game!  my fav...\n\n4) wil: Trade B3 G3 Wil\n\twil: oh crap, what was I thinkin?  \n\n5) endo: Trade G1 B1 Endo\n\tendo: hehe it happens :) I thought you were giving the beginner the &quot;second turn timewarp&quot;\n\n6) wil: Build G1 Wil\n\n7) endo: Discover B1 Endo G2 Ring\n\twil: are you a beginner?  well good...  I&#39;ve got a huge uphill battle now!\n\n8) wil: Discover G1 Wil B3 B3\n\n9) endo: Build B1 Ring\n\twil: you done gave me a fightin chance!\n\n10) wil: Build G1 B3\n\n11) endo: Build B2 Ring\n\n12) wil: Build G1 Wil\n\n13) endo: Trade B2 Y2 Ring\n\n14) wil: Build G2 B3\n\n15) endo: Build B2 Ring\n\n16) wil: Trade G2 R2 B3\n\n17) endo: Build G2 Endo\n\n18) wil: Trade G1 Y1 B3\n\n19) endo: Trade B2 R2 Ring\n\n20) wil: Build G1 Wil\n\n21) endo: Build B2 Ring\n\n22) wil: Build G2 B3\n\n23) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Endo\nBuild R1 Ring\n\n24) wil: Build R1 B3\n\n25) endo: Discover R2 Ring B3 Module\n\n26) wil: Discover G2 B3 B2 B2\n\n27) endo: Move G3 Endo B2\n\n28) wil: Move G1 Wil B3\n\n29) endo: Sacrifice R1 Ring\nAttack G2 B2\n\n30) wil: Move G1 B3 B2\n\n31) endo: Trade G2 Y2 B2\n\n32) wil: Build G2 B2\n\n33) endo: Sacrifice Y2 Ring\nMove Y2 B2 Module\nMove G3 B2 B3\n\n34) wil: Sacrifice G1 B2\nBuild G1 B3\n\n35) endo: Sacrifice G3 B3\nBuild Y1 Module\nBuild Y2 Module\nBuild R1 Module\n\twil: you and your running me in circles with that green queen\n\n36) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B2\nBuild Y2 B3\n\n37) endo: Sacrifice Y2 Module\nMove G2 Endo Ring\nDiscover G2 Ring B3 Monoid\n\n38) wil: Move Y1 B3 B2\n\n39) endo: Trade G3 R3 Endo\n\n40) wil: Move G3 B2 Monoid\n\n41) endo: Sacrifice G2 Monoid\nBuild R1 Module\nBuild R3 Endo\n\n42) wil: Sacrifice G3 Wil\nBuild G2 Monoid\nBuild G3 Wil\nBuild G3 B2\n\n43) endo: Trade B2 Y2 Ring\n\n44) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 B2\nBuild Y3 B3\n\n45) endo: Sacrifice Y2 Ring\nMove R1 Module Wil\nMove R1 Module Wil\n\twil: have I cemented the value of the factory in yet?\n\n46) wil: Sacrifice Y2 B3\nMove R1 B3 B2\nMove R1 B2 Endo\n\tendo: I think you have. sacrificing the green was a beautiful disaster in one move, had I just left it there I would&#39;ve been fine\n\n47) endo: Move R2 Module Wil\nCatastrophe Wil R\n\twil: lol my very next move... and you did it first!  although I think I am still a step ahead...\n\n48) wil: Sacrifice G1 Wil\nBuild R1 Endo\nCatastrophe Endo R\n\tendo: well, at least I got something!\n\twil: lol...blew up half my homeworld!!\n\twil: ya done darn well!  challenge me anytime!  start climbing the ladder now and I&#39;ll see you at the top\n\n\nHomeworlds Online (SDG# 27737)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.22, Ended: 2015.6.28\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B2 R3 G3\n\n2) wil: Homeworld Y2 B1 G3\n\twil: keep my seat warm!\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: :-)\n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: Build B2 Dlwillson\n\n8) wil: Build B2 Wil\n\n9) dlwillson: Trade B2 Y2 Dlwillson\n\n10) wil: Discover B2 Wil G3 G3\n\n11) dlwillson: D B1 Dlwillson G1 Field\n\n12) wil: Build B2 G3\n\n13) dlwillson: B B3 Field\n\n14) wil: Trade B2 Y2 G3\n\twil: I look and it isn&#39;t where I think it should be...dang fingers typing wrong...\n\tdlwillson: You&#39;re still given me a battleship!\n\n15) dlwillson: T B3 R3 Field\n\twil: mistakes....  I make them...\n\n16) wil: Trade B1 R1 Wil\n\n17) dlwillson: Build R1 Field\n\n18) wil: Build R1 Wil\n\twil: our spacescopes have picked up activity of refitting a trade ship into a warship...while this doesn&#39;t violate any treaties it is a cause for concern and has required us to move funds from our indigent care and intergalactic support to homeworld defense..\n\n19) dlwillson: T R1 Y1 Field\n\tdlwillson: LOL! Excellent!\r\nMeanwhile I have to bumble along on voluntary contributions. If I ever screw up, the people will stop giving, and I&#39;ll have to go get a real job. :-)\n\n20) wil: Move R1 Wil G3\n\n21) dlwillson: M R3 Field G3\n\n22) wil: Build R1 G3\n\n23) dlwillson: A Y2 G3\n\n24) wil: Build R2 G3\nCatastrophe G3 R\n\n25) dlwillson: D Y2 G3 G1 Forest\n\n26) wil: Build G1 Wil\n\twil: i needed the reboot\n\twil: i needed the reboot\n\n27) dlwillson: B Y1 Forest\n\tdlwillson: I&#39;m sorry about my last move. That was bogus and I should have taken it back, but I didn&#39;t get back soon enough.\n\twil: I thought you had another plan in place...too move out it woulda cost you your yellows...\n\n28) wil: Trade G1 Y1 Wil\n\n29) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB Y3 Dlwillson\nB Y3 Field\n\tdlwillson: No, I mean you could have just taken the y2 back. \n\twil: I&#39;m clueless..\r\n\n\n30) wil: Build R1 Wil\n\n31) dlwillson: T Y3 R3 Field\n\twil: well that is that!\n\n32) wil: Discover R1 Wil Y3 Y3\n\twil: I&#39;ll soon be waiting for the computer to give me another chance...\n\n33) dlwillson: Discover Y2 Forest B3 Sky\n\n34) wil: Build R1 Wil\n\n35) dlwillson: S Y3 Dlwillson\nM Y1 Forest Sky\nM Y1 Sky Wil\nM Y2 Sky Wil\nC Wil Y\n\n36) wil: Trade R1 Y1 Wil\n\twil: I should resign....now I am just waiting for you to make a mistake...\n\n37) dlwillson: T Y3 G3 Dlwillson\n\n38) wil: Build G1 Wil\n\n39) dlwillson: Move R3 Field G3\n\n40) wil: Sacrifice Y1 Wil\nDiscover B2 G3 Y2 Y2\n\n41) dlwillson: Build G1 Dlwillson\n\n42) wil: Trade G1 Y1 Wil\n\n43) dlwillson: M B1 Field G3\n\n44) wil: Build G1 Wil\n\n45) dlwillson: Move G3 Dlwillson Wil\n\n46) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 Wil\nBuild R1 Wil\nCatastrophe Wil G\n\n47) dlwillson: Sacrifice Y1 Field\nMove R3 G3 Wil\n\n48) wil: Move R1 Y3 Wil\nCatastrophe Wil R\n\n49) dlwillson: Build Y1 Dlwillson\n\n50) wil: Trade B2 R2 Y2\n\n51) dlwillson: Trade Y2 R2 Dlwillson\n\twil: Seriously weird ending...\n\n52) wil: Move R2 Y2 Wil\n\tdlwillson: I made a mistake going in with the red. If I&#39;d gone in with the yellow, instead... I think it would have been over a turn or two quicker.\n\n53) dlwillson: Build R1 Dlwillson\n\twil: I thought I saw where you were headed and prepared by blowing myself up as a diversion while building the r1....hoping you&#39;d see i did your work for you and you&#39;d jump on in before checking the water...\n\n54) wil: Trade Y1 G1 Wil\n\n55) dlwillson: Build B1 G3\n\twil: I wasted a step there...but let the games begin...again!\n\n56) wil: Build G1 Wil\n\n57) dlwillson: B G2 Dlwillson\n\tdlwillson: This is going to take a minute, isn&#39;t it?\n\n58) wil: Trade G1 Y1 Wil\n\n59) dlwillson: B B2 G3\n\twil: I told you I was waitin for you to make a couple mistakes.... that was one...a couple more would help.\n\n60) wil: Build G1 Wil\n\n61) dlwillson: Trade G2 Y2 Dlwillson\n\n62) wil: Move R2 Wil Dlwillson\nCatastrophe Dlwillson R\n\n63) dlwillson: Sacrifice Y2 Dlwillson\nMove B2 G3 Wil\nMove B1 G3 Wil\n\n64) wil: Discover G1 Wil Y3 Y3\n\n65) dlwillson: S Y1 Dlwillson\nM B1 G3 Wil\nC Wil B\n\n\twil: Just so when it ends it doesn&#39;t look like I did as poorly as the truth is...thanks for the game...I&#39;ll be back!\n\tdlwillson: This may be the cleanest ending board I&#39;ve ever seen. Good game! See you for the rematch. :-)\n\twil: too funny....\n\nHomeworlds Online (SDG# 27731)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.22, Ended: 2015.7.10\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B2 R3 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tSilentTitan: Lol\n\tSilentTitan: Homeworld b1 r2 g3\n\tSilentTitan: I forgot how to play\n\n3) dlwillson: B G1 Dlwillson\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: T G1 B1 Dlwillson\n\tdlwillson: :-)\n\n6) SilentTitan: Trade G3 B3 Silenttitan\n\n7) dlwillson: B G1 Dlwillson\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dlwillson: B G2 Dlwillson\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) dlwillson: Trade G2 Y2 Dlwillson\n\n12) SilentTitan: Trade G2 Y2 Silenttitan\n\n13) dlwillson: Build G2 Dlwillson\n\n14) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n15) dlwillson: D G2 Dlwillson Y1 Sirius\n\n16) SilentTitan: Build G2 Silenttitan\n\tdlwillson: What is our count? I know you usually win on the table. Do I usually win on SDG?\n\tSilentTitan: Hummmm.   Good question, I would doubt the assertion that I always win &quot;on table&quot;, more like I lose less often when a chess clock is involved.\n\n17) dlwillson: Move B1 Dlwillson Sirius\n\n18) SilentTitan: Discover B3 Silenttitan Y3 Soul\n\n19) dlwillson: Build B1 Sirius\n\n20) SilentTitan: Sacrifice G1 Silenttitan\nBuild B2 Soul\n\n21) dlwillson: S Y2 Dlwillson\nM B1 Sirius Soul\nM B1 Sirius Soul\nC Soul B\n\n22) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Silenttitan\nBuild Y1 Silenttitan\n\n23) dlwillson: Trade G3 Y3 Dlwillson\n\n24) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n25) dlwillson: Build Y2 Dlwillson\n\n\tSilentTitan: Good game thanks\n\nHomeworlds Online (SDG# 27740)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.24, Ended: 2015.6.29\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G2 B1 Y3\n\n2) wil: Homeworld B3 Y1 G3\n\tSimon: Alright, have fun!\n\n3) Simon: Build Y1 Simon\n\n4) wil: Build G1 Wil\n\n5) Simon: Build Y1 Simon\n\n6) wil: Trade G1 B1 Wil\n\n7) Simon: Discover Y1 Simon G3 G3\n\n8) wil: Build B1 Wil\n\n9) Simon: Build Y2 Simon\n\n10) wil: Discover B1 Wil G2 G2\n\n11) Simon: Trade Y2 B2 Simon\n\n12) wil: Build B2 G2\n\n13) Simon: Move B2 Simon G3\n\n14) wil: Trade B2 Y2 G2\n\n15) Simon: Build Y2 G3\n\n16) wil: Build B2 G2\n\n17) Simon: Build B2 G3\n\n18) wil: Discover B2 G2 G3 Gee3\n\n19) Simon: Trade B2 R2 G3\n\n20) wil: Trade B1 R1 G2\n\n21) Simon: Trade Y1 R1 Simon\n\n22) wil: Move B1 Wil G2\n\n23) Simon: Trade Y2 G2 G3\n\n24) wil: Build G1 Wil\n\n25) Simon: Discover G2 G3 Y2 Y2\n\n26) wil: Discover G1 Wil B2 B2\n\n27) Simon: Build G1 Y2\n\n28) wil: Build G1 Wil\n\n29) Simon: Sacrifice Y3 Simon\nMove G1 Y2 Wil\nMove G2 Y2 Wil\nPass\nCatastrophe Wil G\n\tSimon: I wanted to prevent that last g1 build. It seemed like the best move if I couldn&#39;t sac the yellow &gt;_&gt;\n\twil: ya done good!\n\twil: I look forward to the next...\n\tSimon: thanks for the game :)\n\n\nHomeworlds Online (SDG# 27761)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.26, Ended: 2015.7.7\nParticipants: Aghmarck (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 Y1 G3\n\n2) Aghmarck: Homeworld B1 G2 Y3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tAghmarck: Hello there! Good luck and have fun.\n\n4) Aghmarck: Build Y1 Aghmarck\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Aghmarck: Trade Y1 B1 Aghmarck\n\n7) Simon: Build G1 Simon\n\n8) Aghmarck: Build B1 Aghmarck\n\n9) Simon: Build Y1 Simon\n\n10) Aghmarck: Build Y2 Aghmarck\n\n11) Simon: Discover Y1 Simon G2 Leaf\n\n12) Aghmarck: Discover B1 Aghmarck G3 Verdega\n\n13) Simon: Build Y2 Leaf\n\n14) Aghmarck: Move Y2 Aghmarck Verdega\n\n15) Simon: Build Y2 Simon\n\n16) Aghmarck: Build Y3 Aghmarck\n\n17) Simon: Trade Y2 B2 Simon\n\n18) Aghmarck: B B2 Verdega\n\n19) Simon: Move B2 Simon Leaf\n\n20) Aghmarck: Discover B2 Verdega G2 Verda\n\n21) Simon: Discover G1 Simon B2 Sea\n\n22) Aghmarck: Build B3 Verda\n\n23) Simon: Build B3 Leaf\n\n24) Aghmarck: Trade B3 R3 Verda\n\n25) Simon: Trade B2 R2 Leaf\n\n26) Aghmarck: Build B2 Verda\n\n27) Simon: Build B3 Leaf\n\n28) Aghmarck: Sacrifice Y3 Aghmarck\nMove B1 Verdega Leaf\nMove B2 Verda Simon\nMove B2 Simon Leaf\nCatastrophe Leaf B\n\n29) Simon: Build G1 Simon\n\n30) Aghmarck: Build Y2 Verdega\n\n31) Simon: Sacrifice G3 Simon\nBuild G1 Sea\nBuild G3 Sea\nBuild G3 Simon\n\n32) Aghmarck: B Y3 Aghmarck\n\n33) Simon: Trade G3 Y3 Sea\n\n34) Aghmarck: B B1 Verda\n\n35) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 Sea\nBuild R1 Leaf\n\n36) Aghmarck: Build B2 Verda\n\n37) Simon: Move G3 Sea Verdega\n\n38) Aghmarck: Sacrifice Y2 Verdega\nMove R3 Verda Verdega\nMove R3 Verdega Leaf\n\n39) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Sea\nBuild R1 Leaf\nCatastrophe Leaf R\n\n40) Aghmarck: Build B3 Aghmarck\n\n41) Simon: Trade Y3 B3 Sea\n\n42) Aghmarck: Trade B3 R3 Aghmarck\n\n43) Simon: Trade Y1 R1 Simon\n\n44) Aghmarck: Sacrifice Y3 Aghmarck\nMove B1 Verda Simon\nMove B2 Verda Simon\nMove B2 Verda Simon\nCatastrophe Simon B\n\n45) Simon: Sacrifice G3 Simon\nBuild G2 Verdega\nBuild G3 Simon\nBuild R1 Simon\n\n46) Aghmarck: Build Y1 Verdega\n\n47) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y3 Sea\nBuild Y3 Leaf\n\n48) Aghmarck: Discover Y2 Verdega B2 Blua\n\n49) Simon: Discover B3 Sea R3 Cow\n\n50) Aghmarck: Trade Y3 R3 Aghmarck\n\n51) Simon: Sacrifice R1 Simon\nAttack Y1 Verdega\n\n\tAghmarck: Thanks for the game!\n\tSimon: Thanks!\n\nHomeworlds Online (SDG# 27762)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.28, Ended: 2015.9.5\nParticipants: foksieloy (S), MagicJohn (N)\nWinner: foksieloy\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\tfoksieloy: Good luck, have fun!\n\tMagicJohn: Hey! Somebody accepted a challenge!! The &quot;declines&quot; really get old. Thanks for the game ..... Enjoy!\n\n2) foksieloy: Homeworld B1 G3 Y3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) foksieloy: Build Y1 Foksieloy\n\n5) MagicJohn: Build G1 Magicjohn\n\n6) foksieloy: Trade Y1 G1 Foksieloy\n\n7) MagicJohn: Discover G1 Magicjohn Y3 Pine\n\n8) foksieloy: Build G2 Foksieloy\n\n9) MagicJohn: Trade G3 Y3 Magicjohn\n\n10) foksieloy: Trade G2 B2 Foksieloy\n\n11) MagicJohn: Build G2 Magicjohn\n\n12) foksieloy: Discover G1 Foksieloy B2 Tibbers\n\n13) MagicJohn: Trade G1 R1 Magicjohn\n\n14) foksieloy: Build Y1 Foksieloy\n\n15) MagicJohn: Move R1 Magicjohn Pine\n\n16) foksieloy: Trade Y1 R1 Foksieloy\n\n17) MagicJohn: Build Y1 Magicjohn\n\n18) foksieloy: Build Y1 Foksieloy\n\n19) MagicJohn: Trade Y1 B1 Magicjohn\n\n20) foksieloy: Move Y1 Foksieloy Tibbers\n\n21) MagicJohn: Move B1 Magicjohn Pine\n\n22) foksieloy: Discover B2 Foksieloy G2 Annie\n\n23) MagicJohn: Move G2 Magicjohn Pine\n\n24) foksieloy: Build G1 Tibbers\n\n25) MagicJohn: Move G1 Pine Magicjohn\n\n26) foksieloy: Discover G1 Tibbers B1 Lulu\n\n27) MagicJohn: Build B3 Pine\n\n28) foksieloy: Build B3 Annie\n\n29) MagicJohn: Trade B3 R3 Pine\n\n30) foksieloy: Trade B3 R3 Annie\n\n31) MagicJohn: Build B3 Pine\n\n32) foksieloy: Build B3 Annie\n\n33) MagicJohn: Move R3 Pine Tibbers\n\n34) foksieloy: Trade B3 R3 Annie\n\n35) MagicJohn: Sacrifice Y3 Magicjohn\nMove R3 Tibbers Pine\nMove R3 Pine Annie\nMove R1 Pine Annie\nCatastrophe Annie Red\n\n36) foksieloy: Build B3 Annie\n\n37) MagicJohn: Trade B3 R3 Pine\n\n38) foksieloy: Trade B3 R3 Annie\n\n39) MagicJohn: Move R3 Pine Magicjohn\n\n40) foksieloy: Build B3 Annie\n\n41) MagicJohn: Build B3 Pine\n\n42) foksieloy: Trade B3 Y3 Annie\n\n43) MagicJohn: Build G2 Pine\n\n44) foksieloy: Build G3 Tibbers\n\n45) MagicJohn: Sacrifice G2 Pine\nBuild G2 Pine\nBuild G3 Magicjohn\n\n46) foksieloy: Sacrifice G3 Tibbers\nBuild G3 Tibbers\nBuild B3 Annie\nBuild R1 Annie\n\n47) MagicJohn: Trade B1 Y1 Pine\n\n48) foksieloy: Sacrifice G3 Tibbers\nBuild G3 Tibbers\nBuild Y2 Annie\nBuild Y2 Tibbers\n\n49) MagicJohn: Discover Y1 Pine R1 Elm\n\n50) foksieloy: Sacrifice Y3 Annie\nMove Y1 Tibbers Pine\nMove Y2 Tibbers Pine\nMove Y2 Annie Pine\nCatastrophe Pine Yellow\n\n51) MagicJohn: Build R2 Magicjohn\n\n52) foksieloy: Sacrifice B2 Annie\nTrade R1 Y1 Annie\nTrade G1 B1 Tibbers\n\n53) MagicJohn: Sacrifice G1 Magicjohn\nBuild Y2 Elm\n\n54) foksieloy: Build Y2 Annie\n\n55) MagicJohn: Discover Y2 Elm G2 Mulberry\n\n56) foksieloy: Discover Y2 Annie B3 Shen\n\n57) MagicJohn: Trade R3 B3 Magicjohn\n\n58) foksieloy: Trade Y2 G2 Shen\n\n59) MagicJohn: Build Y2 Mulberry\n\n60) foksieloy: Build G1 Tibbers\n\n\tMagicJohn: Sorry.... Family health issues..Time got away from me. You were torching me anyway, so congrats.  Thanks for the game.\n\tfoksieloy: Aww, sorry to hear that. It was a very enjoyable game, I have to admit, the most turns I played so far. Good game!\n\nHomeworlds Online (SDG# 27753)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.28, Ended: 2015.6.29\nParticipants: wil (S), endo (N)\nWinner: wil\n\n1) endo: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tendo: hey, let&#39;s play another one\n\twil: I&#39;ll play as many as you like... this game makes me think!\n\n3) endo: Build G1 Endo\n\n4) wil: Build G1 Wil\n\n5) endo: Trade G1 Y1 Endo\n\n6) wil: Trade G1 B1 Wil\n\n7) endo: Build Y1 Endo\n\n8) wil: Build B1 Wil\n\n9) endo: Discover Y1 Endo B3 Epi\n\n10) wil: Discover B1 Wil G2 G2\n\n11) endo: Build Y2 Endo\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B2 G2\nBuild B3 G2\n\n13) endo: Discover Y2 Endo B3 Iso\n\n14) wil: Trade B3 Y3 G2\n\n15) endo: Discover Y1 Endo B3 Auto\n\n16) wil: Trade B2 Y2 G2\n\n17) endo: Build G1 Endo\n\n18) wil: Build B2 G2\n\n19) endo: Trade G1 R1 Endo\n\n20) wil: Trade Y2 R2 G2\n\n21) endo: Sacrifice G3 Endo\nBuild Y2 Epi\nBuild Y2 Auto\nBuild Y3 Iso\n\n22) wil: Sacrifice Y3 G2\nMove R2 G2 Auto\nMove B2 G2 Auto\nMove B2 Auto Endo\n\n23) endo: Sacrifice Y2 Auto\nMove Y3 Iso Endo\nDiscover Y1 Auto G2 Mono\n\n24) wil: Sacrifice R2 Auto\nAttack R1 Endo\nPass\n\n25) endo: Build Y2 Mono\n\twil: lol...forgot you had a 3....silly o me!\n\n26) wil: Trade B2 G2 Wil\n\n27) endo: Build Y3 Mono\n\n28) wil: Sacrifice G2 Wil\nBuild B2 Wil\nBuild B3 Endo\n\n29) endo: Trade Y3 R3 Endo\n\tendo: crap, I forgot you can also build at my homeworld\n\n30) wil: Attack R3 Endo\n\twil: That was quite the interesting go around there...  I look forward to our next game..  challenge me anytime, ask any questions!\n\n\nHomeworlds Online (SDG# 27745)\nStarted: 2015.6.29, Ended: 2015.7.11\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 G1 Y3\n\tts52: Have a good game!\n\twil: If you insist...\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build Y1 Wil\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) wil: Discover Y1 Wil G2 G2\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) wil: Build Y2 Wil\n\n9) ts52: Build Y2 Kermit\n\n10) wil: Trade Y2 R2 Wil\n\n11) ts52: Build G1 Ts52\n\n12) wil: Build Y2 G2\n\n13) ts52: Trade G1 R1 Ts52\n\n14) wil: Discover Y2 G2 G3 G3\n\n15) ts52: Build G1 Ts52\n\n16) wil: Build Y2 G2\n\n17) ts52: Discover Y2 Kermit G2 Oscar\n\n18) wil: Build Y3 G3\n\n19) ts52: Build Y3 Kermit\n\n20) wil: Sacrifice Y2 G3\nMove Y1 G2 Kermit\nMove Y2 G2 Kermit\nCatastrophe Kermit Y\n\n21) ts52: Build G1 Ts52\n\twil: oh phooey, a fuel fire at your oil field....we ame to help...but it looks like pouring rocket fuel on it doesn&#39;t help...sorry\n\n22) wil: Build Y1 Wil\n\tts52: Dangit! I hate it when that happens.\n\n23) ts52: Discover G1 Ts52 Y3 Bigbird\n\twil: I&#39;m sure your expedition was insured right?\n\n24) wil: Build R1 Wil\n\tts52: Insufficiently, it seems. :)\n\n25) ts52: Build G2 Bigbird\n\n26) wil: Trade R2 G2 Wil\n\n27) ts52: Build G3 Bigbird\n\n28) wil: Sacrifice Y3 G3\nDiscover Y1 Wil B2 B2\nMove G2 Wil B2\nMove G2 B2 Bigbird\nCatastrophe Bigbird G\n\n29) ts52: Build G1 Ts52\n\n30) wil: Build R1 Wil\n\twil: oops...that didn&#39;t look right!\n\n31) ts52: Discover G1 Ts52 B3 Gonzo\n\n32) wil: Discover R1 Wil G2 G2\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Gonzo\n\n34) wil: Discover Y1 B2 G3 G3\n\n35) ts52: Trade G3 Y3 Gonzo\n\n36) wil: Build R2 G2\n\twil: I&#39;ve definitely lost this game...\n\n37) ts52: Build G3 Gonzo\n\n38) wil: Build R2 Wil\n\n39) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R2 Ts52\nBuild R3 Ts52\n\n40) wil: Build R3 Wil\n\n41) ts52: Sacrifice Y3 Gonzo\nMove R1 Ts52 Gonzo\nMove R1 Gonzo G2\nMove R1 G2 Wil\nCatastrophe Wil Red\n\n42) wil: Build Y1 Wil\n\n43) ts52: Trade G3 Y3 Gonzo\n\n44) wil: Sacrifice Y1 Wil\nDiscover R1 G2 G3 Gee3\n\n45) ts52: Move R2 Ts52 Gee3\n\n46) wil: Build Y1 Wil\n\n47) ts52: Attack R1 Gee3\n\n48) wil: Trade Y1 B1 Wil\n\n49) ts52: Move R3 Ts52 Gonzo\n\n50) wil: Build B1 Wil\n\n51) ts52: Move R3 Gonzo G2\n\n52) wil: Trade B1 R1 Wil\n\n53) ts52: Attack R2 G2\n\n54) wil: Build B1 Wil\n\n55) ts52: Move Y2 Oscar Gee3\n\n56) wil: Discover B1 Wil Y2 Y2\n\n57) ts52: Move R2 Gee3 Y2\n\twil: this game is so over...\n\n58) wil: Discover B1 Y2 Y3 Y3\n\n59) ts52: Move Y3 Gonzo G2\n\n60) wil: Build B1 Wil\n\twil: it appears an impossibility for you to make a fatal error when I have nothing....but if you simply continue to chase me in circles and torture me instead of putting an end to my misery I may find an opening somehow...somewhere..\n\tts52: My endgame is my weakest. Much as I see that I should be able to overpower you, finding my way to it is difficult for me somehow.\n\n61) ts52: Sacrifice Y2 Gee3\nMove R3 G2 Wil\nMove Y3 G2 Wil\n\n62) wil: Build R1 Wil\n\n63) ts52: Sacrifice R2 G2\nAttack Y3S Wil\nAttack B1S Wil\n\twil: see there...the ole I get one you get two...\n\n64) wil: Build R2 Wil\n\n65) ts52: Attack B1S Wil\nCatastrophe Wil Red\n\tts52: Yep, took me a while to see it.\n\tts52: Hmmm, guess I could&#39;ve sac&#39;d the R3 that turn. Oh well.\n\n\tts52: Thanks for the game!\n\twil: thank you for the game...\n\nHomeworlds Online (SDG# 27690)\nVariants: &quot;Unrated&quot;\nStarted: 2015.6.29, Ended: 2015.7.17\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B2 G1 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tdragon76n: Hello again. \n\n3) dragon76n: Build Y1 Dragon76n\n\twil: thx for the game....let us have at it!\n\n4) wil: Build G1 Wil\n\n5) dragon76n: Discover Y1 Dragon76n G3 Grethr\n\n6) wil: Build G1 Wil\n\n7) dragon76n: Build Y1 Dragon76n\n\n8) wil: Trade G1 Y1 Wil\n\n9) dragon76n: Build Y2 Dragon76n\n\n10) wil: Discover Y1 Wil G2 G2\n\n11) dragon76n: Discover Y2 Dragon76n B3 Bluthr\n\n12) wil: Build Y2 G2\n\n13) dragon76n: Trade Y1 R1 Dragon76n\n\n14) wil: Trade G1 R1 Wil\n\n15) dragon76n: Trade Y2 R2 Bluthr\n\n16) wil: Build G1 Wil\n\n17) dragon76n: Build Y1 Grethr\n\n18) wil: Move Y2 G2 Grethr\n\n19) dragon76n: Sacrifice Y1 Grethr\nMove R2 Bluthr G2\n\n20) wil: Discover Y1 G2 G3 G3\n\n21) dragon76n: Build Y1 Grethr\n\n22) wil: Build Y2 G3\n\n23) dragon76n: Sacrifice Y1 Grethr\nMove R2 G2 G3\n\n24) wil: Sacrifice R1 Wil\nAttack R2 G3\n\n25) dragon76n: Build R1 Dragon76n\n\twil: I&#39;ll gladly trade my little pawn for your glorious attack drone...I like the way you&#39;ve outfitted it.\n\tdragon76n: I was wondering about that. \n\n26) wil: Build R1 G3\n\twil: everything is a move.... when it comes to attack who is bigger will trump....or who gets the first to fire their weapon in the case of evenly matched.\n\n27) dragon76n: Trade R1 B1 Dragon76n\n\n28) wil: Trade G1 B1 Wil\n\twil: t g1 b1 wil\n\n29) dragon76n: Build B2 Dragon76n\n\twil: basic strategy always get piece the same color as the other fellow has...gotta keep up...more basic stategy....write the directions in the correct box.\n\n30) wil: Discover B1 Wil Y2 Y2\n\tdragon76n: Ok. Thanks for the tips. Btw, I&#39;m assuming my build setup is safe since you don&#39;t have a y3 to move your b1 straight to my homeworld.\r\n\n\tdragon76n: It looks like there are some more abbreviated words that the system will accept. Are all of the commands able to be shortened to 1 letter?\n\n31) dragon76n: T B2 R2 Dragon76n\n\twil: yes you were correct...now you are not...cha cha cha..\n\n32) wil: Build G1 Wil\n\n33) dragon76n: Trade R1 G1 Dragon76n\n\n34) wil: Move G1 Wil Y2\n\n35) dragon76n: Build R1 Dragon76n\n\n36) wil: Build B2 Y2\n\n37) dragon76n: Move Y1 Grethr Y2\n\n38) wil: Sacrifice R1 G3\nAttack Y1 Y2\n\n39) dragon76n: Move B1 Dragon76n Grethr\n\n40) wil: Build R1 G3\n\n41) dragon76n: Discover R2 Dragon76n Y3 Yelthr\n\n42) wil: Sacrifice R1 G3\nAttack B1 Grethr\n\n43) dragon76n: Build R1 Dragon76n\n\n44) wil: Build G2 Wil\n\n45) dragon76n: Move G1 Dragon76n Yelthr\n\n46) wil: Trade G2 R2 Wil\n\twil: factory installed.\n\tdragon76n: Ooohhhhhh....\n\n47) dragon76n: Build G2 Yelthr\n\n48) wil: Build G2 Wil\n\twil: ok, so I&#39;ll postpone factory production for some planetary defense.\n\n49) dragon76n: Move G1 Yelthr Y2\n\n50) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild Y1 Grethr\nBuild G3 Wil\n\n51) dragon76n: M G2 Yelthr Y2\nC Y2 Green\n\n52) wil: Sacrifice G2 Wil\nBuild G1 Wil\nBuild G1 Wil\n\n53) dragon76n: Move R1 Dragon76n Yelthr\n\n54) wil: Build B2 Grethr\n\n55) dragon76n: M R2 Yelthr Dragon76n\n\n56) wil: Build B3 Grethr\n\n57) dragon76n: T R2 G2 Dragon76n\n\n58) wil: Sacrifice G1 Wil\nBuild B3 Y2\n\n59) dragon76n: Build G1 Dragon76n\n\n60) wil: Trade B3 R3 Grethr\n\n61) dragon76n: Sacrifice G2 Dragon76n\nBuild R1 Yelthr\nBuild G2 Dragon76n\n\n62) wil: Build B3 Grethr\n\n63) dragon76n: S G2 Dragon76n\nB R2 Yelthr\nB G2 Dragon76n\n\n64) wil: Build R3 G3\n\twil: got a two step plan where the second step requires two steps so we are three steps away....not from annihilation but massive control\n\n65) dragon76n: B R3 Dragon76n\n\n66) wil: Discover G1 Wil G2 G2\n\n67) dragon76n: Move R2 Yelthr Y2\n\n68) wil: Sacrifice Y2 G3\nMove G1 G2 G3\nMove G1 G3 Dragon76n\nCatastrophe Dragon76n G\n\n69) dragon76n: A B2 Y2\n\n70) wil: Sacrifice Y2 Grethr\nMove R2 Wil Dragon76n\nMove R2 G3 Dragon76n\nCatastrophe Dragon76n R\n\n71) dragon76n: M B2 Y2 Grethr\nC Grethr Blue\n\n72) wil: Build R1 Grethr\n\n73) dragon76n: D R2 Y2 G1 Greone\n\n74) wil: Build R2 Grethr\n\n75) dragon76n: Move R1 Yelthr Dragon76n\n\n76) wil: Move B3 Y2 Greone\n\n77) dragon76n: M R1 Yelthr Y2\n\n78) wil: Sacrifice B3 Greone\nTrade R3 B3 G3\nTrade R3 Y3 Grethr\nTrade Y1 B1 Grethr\n\n79) dragon76n: A Y1 Y2\n\n80) wil: Build B2 G3\n\n81) dragon76n: A B1 Y2\n\n82) wil: Sacrifice Y3 Grethr\nMove B1 Grethr Dragon76n\nMove B2 G3 Dragon76n\nMove B3 G3 Dragon76n\nCatastrophe Dragon76n B\n\n\twil: it was...42 moves...you made me work for it!\n\twil: I look forward to the next game...  I am playing HW, blam!, subdivision, mega volcano (lotso pyramid games) but am interested in any other game that you are willing to help teach!\n\nHomeworlds Online (SDG# 27768)\nVariants: &quot;Hard time&quot;\nStarted: 2015.6.29, Ended: 2015.7.2\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Simon: Homeworld Y3 B1 G3\n\twil: that last one was just too easy for you...and I was blind to reality\n\n3) wil: Build G1 Wil\n\tSimon: Have fun!\n\n4) Simon: Build G1 Simon\n\n5) wil: Trade G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: Build B2 Wil\n\n8) Simon: Discover B1 Simon G2 G2\n\n9) wil: Trade B1 Y1 Wil\n\n10) Simon: Build G1 Simon\n\n11) wil: Build Y1` Wil\n\n12) Simon: Build B1 G2\n\n13) wil: Discover B2 Wil G3 G3\n\n14) Simon: Trade G3 Y3 Simon\n\n15) wil: Build B2 G3\n\n16) Simon: Build Y2 Simon\n\n17) wil: Trade B2 R2 G3\n\n18) Simon: Trade Y2 R2 Simon\n\n19) wil: Build B2 G3\n\n20) Simon: Build Y2 Simon\n\n21) wil: Trade B2 Y2 G3\n\n22) Simon: Discover Y2 Simon R2 R2\n\n23) wil: Move R2 G3 G2\n\n24) Simon: Build G1 Simon\n\n25) wil: Attack B1 G2\n\n26) Simon: Build B2 G2\n\n27) wil: Build B3 G3\n\n28) Simon: Sacrifice R2 Simon\nAttack R2 G2\nAttack B1 G2\n\n29) wil: Move B2 G3 G2\nCatastrophe G2 B\n\n30) Simon: Move G1 Simon R2\n\n31) wil: Move B3 G3 R2\n\n32) Simon: Move Y2 R2 G3\n\n33) wil: Move Y2 G3 R2\n\n34) Simon: Move Y2 G3 Wil\nCatastrophe Wil Y\n\n35) wil: Trade B3 R3 R2\n\n36) Simon: Trade Y3 B3 Simon\n\n37) wil: Attack G1 R2\n\n38) Simon: Build B1 Simon\n\n39) wil: Build G1 Wil\n\n40) Simon: Build G2 Simon\n\n41) wil: Move G1 R2 Simon\n\n42) Simon: Trade G1 R1 Simon\n\n43) wil: Build G1 Simon\n\n44) Simon: Sacrifice R2 G2\nAttack G1 Simon\nAttack G1 Simon\n\n45) wil: Trade G1 Y1 Wil\n\n46) Simon: Move B1 Simon Wil\n\n47) wil: Move G3 Wil Simon\nCatastrophe Simon G\n\twil: nice game...\n\n48) Simon: Sacrifice R1 Simon\nAttack Y1 Wil\n\tSimon: Thanks -- most claustrophobic came I&#39;ve seen. I should have chosen other homeworld stars to not yield a monopoly again, but that is hard to see :)\n\twil: thanx, challenge me anytime!!\n\n\nHomeworlds Online (SDG# 27785)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.4, Ended: 2015.7.7\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: Homeworld Y2 B1 G3\n\n2) dlwillson: H B3 Y1 G3\n\n3) wil: Build G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\n5) wil: Trade G1 Y1 Wil\n\n6) dlwillson:\n\nT G1 Y1 Dlwillson\n\n7) wil: Build Y2 Wil\n\n8) dlwillson: B Y2 Dlwillson\n\n9) wil: Discover Y1 Wil B3 B3\n\n10) dlwillson: D Y1 Dlwillson G2 Field\n\n11) wil: Discover Y2 Wil G3 G3\n\n12) dlwillson: D Y2 Dlwillson G2 Forest\n\n13) wil: Build G1 Wil\n\n14) dlwillson: B Y3 Field\n\n15) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild Y3 B3\nBuild Y3 G3\n\n16) dlwillson: Sacrifice Y2 Forest\nMove Y3 Field B3\nMove Y3 B3 Wil\n\n17) wil: Move Y1 B3 Wil\n\n18) dlwillson: Trade Y3 R3 Wil\n\twil: record fast game\r\n\n\n19) wil: Build Y2 Wil\n\tdlwillson: Yup\r\n\n\n20) dlwillson: Attack Y2 Wil\n\n21) wil: Build G1 Wil\n\n22) dlwillson: B G2 Dlwillson\n\n23) wil: Trade Y3 B3 B3\n\n24) dlwillson: Attack G1 Wil\n\n25) wil: Build Y3 Wil\nCatastrophe Wil Y\n\n26) dlwillson: B G2 Wil\nC Wil G\n\tdlwillson: :-) I think you forgot the big rule.\n\twil: I forgot a lot... the end was coming fast enough...just thought I&#39;d accelerate it.\n\tdlwillson: Sure, but you lost back when you sac&#39;d your big green without looking.\r\n\r\nThe &quot;big&quot; rule is that you leave a big at home.\r\n\r\nThe &quot;gun&quot; rule is that when the other guy goes for his gun (a red), you go for yours.\r\n\r\nThere are probably other rules but I can&#39;t think of them.\r\n\r\nAnd the rules are just rules. You can break with them, but you gotta be careful. :-)\n\twil: Oh I agree...I broke them all...but I lost right out of the gates.  Once the early mistake was made it was written on the wall.\r\nI also have a habit of simply moving..and the format is such I can&#39;t see the field...I should at least set up a physical galaxy during a ladder game... I look and shoot from the hip way too often.\n\n\nHomeworlds Online (SDG# 27773)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.5, Ended: 2015.7.17\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: Homeworld Y3 B1 G3\n\tSimon: Once more, enjoy. :-)\n\twil: can&#39;t stop me!  I always enjoy this game\n\n2) Simon: Homeworld R1 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: Trade G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: Trade B1 R1 Wil\n\n8) Simon: Build B1 Simon\n\n9) wil: Build R1 Wil\n\n10) Simon: Build G1 Simon\n\n11) wil: Build R2 Wil\n\n12) Simon: Trade G1 Y1 Simon\n\n13) wil: Discover R2 Wil G2 G2\n\n14) Simon: Discover B1 Simon R3 R3\n\n15) wil: Sacrifice G3 Wil\nBuild R2 G2\nBuild R2 G2\nBuild R3 Wil\n\n16) Simon: Sacrifice G3 Simon\nBuild B2 R3\nBuild B2 R3\nBuild B3 Simon\n\n17) wil: Trade R3 G3 Wil\n\n18) Simon: Trade B3 G3 Simon\n\n19) wil: Build R3 Wil\n\n20) Simon: Build B3 Simon\n\n21) wil: Trade R3 B3 Wil\n\n22) Simon: Trade B2 Y2 R3\n\n23) wil: Build R3 Wil\n\n24) Simon: Discover B3 Simon G3 G3\n\n25) wil: Trade R3 Y3 Wil\n\n26) Simon: Trade B3 R3 G3\n\n27) wil: Build R3 Wil\n\n28) Simon: Discover B2 R3 G1 G1\n\twil: conundrum launched...\n\n29) wil: Discover R3 Wil G2 Gee2\n\n30) Simon: Build B2 G1\n\n31) wil: Move B3 Wil Gee2\n\n32) Simon: Build B3 G1\n\n33) wil: Move Y3 Wil Gee2\n\n34) Simon: Trade B3 Y3 G1\n\n35) wil: Move B3 Gee2 R3\n\n36) Simon: Build B3 G1\n\n37) wil: Sacrifice R2 G2\nAttack Y2 R3\nAttack B1 R3\n\tSimon: Can&#39;t build 3 blue ships, the stack is one short. &gt;_&gt; Nice timing for moving in. I will make one tasty ship instead.\n\n38) Simon: Sacrifice Y3 G1\nMove B2 G1 R3\nMove B1 Simon R3\nDiscover R3 G3 G2 Third\nCatastrophe R3 Blue\n\n39) wil: Build R2 Wil\n\n40) Simon: Trade B3 Y3 G1\n\n41) wil: Trade R2 Y2 Wil\n\n42) Simon: Build R2 Third\n\n43) wil: Trade R1 B1 Wil\n\n44) Simon: Build G1 Simon\n\n45) wil: Build G1 Wil\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 G1\nBuild B1 G1\n\n47) wil: Move B1 Wil G2\n\n48) Simon: Move B1 G1 Third\n\n49) wil: Move Y2 Wil G2\n\n50) Simon: Move Y1 G1 Third\n\n51) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Gee2\nBuild Y2 G2\n\n52) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G1\nBuild B3 Third\n\n53) wil: Build B3 G2\n\n54) Simon: Move B3 Third R3\n\n55) wil: Trade B3 G3 G2\n\n56) Simon: Attack Y2 R3\n\n57) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild B3 G2\n\n58) Simon: Build B3 Third\n\n59) wil: Sacrifice Y2 G2\nMove R1 Wil Third\nMove R1 Wil Third\nCatastrophe Third R\n\n60) Simon: Trade B2 R2 G1\n\n61) wil: Discover G3 G2 R3 Arr3\n\n62) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R1 G1\nBuild Y2 Third\n\twil: from the debris we discovered a pirate system...\n\n63) wil: Move B3 G2 Arr3\n\tSimon: New and exciting, making a catastrophe only to recover a piece as a pathway.\n\n64) Simon: Move R1 G1 Arr3\n\twil: Similar to a teleport with ships...but in two moves...\n\n65) wil: Attack R1 Arr3\n\tSimon: All abort the pirate ship!\n\n66) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R1 G1\nBuild B2 G1\n\twil: welcome aboard young straggler, are you lost?  we will accommodate your needs...said the spider to the fly...me thinks you may have just entered the web, now if you&#39;d please string the trap\n\n67) wil: Sacrifice Y2 G2\nMove R2 G2 G1\nMove R1 Arr3 G1\nCatastrophe G1 R\n\n68) Simon: Trade B2 R2 G1\n\twil: sproing... foist trap released\n\n69) wil: Move Y3 Gee2 Arr3\n\n70) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 G1\nBuild R1 G1\n\n71) wil: Move G3 Arr3 Simon\n\twil: nice moves...that exchange lost me ground\n\n72) Simon: Attack G3 Simon\n\n73) wil: Sacrifice Y3 Arr3\nMove G1 Wil G2\nMove G1 G2 Arr3\nMove G1 Arr3 Simon\nCatastrophe Simon G\n\tSimon: thanks :) I expected a retreat, but then I get first dips on moving in. Returning the 1 large ship seems better, you get to make the first move later.\n\n74) Simon: Sacrifice Y1 Third\nMove B3 R3 Simon\n\n75) wil: Build R1 G2\n\n76) Simon: Trade B3 G3 Simon\n\n77) wil: Build G1 Wil\n\n78) Simon: Build G1 Simon\n\n79) wil: Trade G3 Y3 Wil\n\n80) Simon: Sacrifice Y3 G1\nMove Y2 Third Wil\nMove Y2 R3 Third\nMove Y2 Third Wil\nCatastrophe Wil Yellow\n\n81) wil: Move R3 Gee2 Wil\n\twil: sweet, missed that.\n\n82) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 G1\nBuild B2 G1\n\n83) wil: Build G3 Wil\n\tSimon: hnn, it was an opening after a long while &gt;_&gt;\n\n84) Simon: Discover B2 G1 Y3 Y3\n\n85) wil: Build B3 G2\n\n86) Simon: Move B2 Y3 Wil\n\n87) wil: Attack B2 Wil\n\twil: this is the end...\n\n88) Simon: Sacrifice Y2 G1\nMove B3 Third Wil\nMove B1 Third Wil\nCatastrophe Wil Blue\n\tSimon: You&#39;ve played a better opening game again. I somehow managed to equalize later on, not sure how exactly. Thanks, great ideas in this round.\n\twil: feel free to challenge me anytime...\n\n\nHomeworlds Online (SDG# 27809)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.8, Ended: 2015.7.30\nParticipants: endo (S), Aghmarck (N)\nWinner: endo\n\n1) Aghmarck: Homeworld Y1 B2 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Aghmarck: Build G1 Aghmarck\n\n4) endo: Build G1 Endo\n\n5) Aghmarck: Trade G1 Y1 Aghmarck\n\n6) endo: Trade G3 Y3 Endo\n\n7) Aghmarck: Build Y2 Aghmarck\n\n8) endo: Build Y2 Endo\n\n9) Aghmarck: Trade Y2 G2 Aghmarck\n\n10) endo: Discover Y2 Endo G2 Subtle\n\n11) Aghmarck: Build Y2 Aghmarck\n\n12) endo: Build Y2 Subtle\n\n13) Aghmarck: Discover Y2 Aghmarck G3 Verdega\n\n14) endo: Build Y3 Endo\n\n15) Aghmarck: Build Y3 Verdega\n\n16) endo: Trade Y3 R3 Endo\n\n17) Aghmarck: Trade Y1 R1 Aghmarck\n\n18) endo: Build R1 Endo\n\n19) Aghmarck: Discover Y3 Verdega G2 Verda\n\n20) endo: Move Y2 Subtle Verdega\n\n21) Aghmarck: Build Y1 Verdega\n\n22) endo: Build Y3 Subtle\n\n23) Aghmarck: Build G1 Aghmarck\n\n24) endo: Sacrifice Y3 Endo\nMove G1 Endo Verda\nMove G1 Verda Verdega\nMove G1 Verdega Aghmarck\nCatastrophe Aghmarck G\n\n\nHomeworlds Online (SDG# 27810)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.9, Ended: 2015.7.21\nParticipants: Simon (S), Mandrel (N)\nWinner: Simon\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Simon: Homeworld B3 Y1 G3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\tSimon: Hi, enjoy!\n\n4) Simon: Build G1 Simon\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) Simon: Trade G1 R1 Simon\n\n\tSimon: Hi, you&#39;re low on time. Take care. :)\n\nHomeworlds Online (SDG# 27822)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.12, Ended: 2015.7.27\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 R1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\tdlwillson: Have fun!\n\twil: the pest is back\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: Build G1 Wil\n\tdlwillson: Happy to see you. I&#39;m here to play.\n\twil: b g1 wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\twil: ya gotta put the order in the right box\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: B G1 Dlwillson\n\n8) wil: Build G1 Wil\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) wil: Trade G1 R1 Wil\n\n11) dlwillson: B R2 Dlwillson\n\n12) wil: Build R2 Wil\n\n13) dlwillson: T R2 Y2 Dlwillson\n\n14) wil: Trade R2 Y2 Wil\n\n15) dlwillson: D Y1 Dlwillson B2 Sky\n\n16) wil: Discover Y1 Wil G3 G3\n\n17) dlwillson: B R2 Dlwillson\n\n18) wil: Build R2 Wil\n\n19) dlwillson: M R1 Dlwillson Sky\n\n20) wil: Discover Y2 Wil B3 B3\n\n21) dlwillson: Build G1 Dlwillson\n\n22) wil: Trade R2 G2 Wil\n\n23) dlwillson: B R2 Dlwillson\n\n24) wil: Build R2 Wil\n\n25) dlwillson: S G1 Dlwillson\nB R3 Sky\n\n26) wil: Move R2 Wil B3\n\n27) dlwillson: T R2 G2 Dlwillson\n\n28) wil: Sacrifice G2 Wil\nBuild R2 B3\nBuild R3 Wil\n\n29) dlwillson: M R3 Sky G3\n\n30) wil: Move R2 B3 Sky\n\tdlwillson: Sorry for the delay. I didn&#39;t see an obvious move, and then I forgot about it for a while.\n\n31) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB Y3 Dlwillson\nB R3 G3\n\n32) wil: Sacrifice Y2 B3\nMove R1 Wil G3\nMove R2 Sky G3\nCatastrophe G3 R\n\n33) dlwillson: T Y1 G1 Sky\n\n34) wil: Sacrifice Y1 G3\nMove R2 B3 Sky\n\n35) dlwillson: Sacrifice G2 Dlwillson\nBuild R1 Sky\nBuild R2 Sky\nCatastrophe Sky R\n\n36) wil: Build G1 Wil\n\n37) dlwillson: T Y3 G3 Dlwillson\n\n38) wil: Trade G1 B1 Wil\n\n39) dlwillson: Trade Y1 B1 Sky\n\n40) wil: Discover B1 Wil G3 G3\n\n41) dlwillson: Build B2 Sky\n\n42) wil: Build B2 G3\n\n43) dlwillson: T B2 Y2 Sky\n\n44) wil: Trade B1 Y1 G3\n\n45) dlwillson: M R2 Dlwillson Sky\n\n46) wil: Build R1 Wil\n\n47) dlwillson: M B1 Sky G3\n\n48) wil: Move R3 Wil G3\n\n49) dlwillson: B B1 G3\n\twil: The home office has sent an emissary to greet our visitor.   \n\n50) wil: Discover B2 G3 G2 G2\n\n51) dlwillson: T Y2 R2 Sky\n\twil: Interesting position...I wish we could play it out this way...and then play it out again where I sacked by R3 and took both of those...\n\n52) wil: Attack B1 G3\n\tdlwillson: You might have me beat this time.\n\n53) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Sky G3\nMove R2 Sky G3\n\twil: there is time for me to screw up still...\n\n54) wil: Attack B1 G3\n\n55) dlwillson: Attack Y1 G3\n\twil: even more interesting...I was sure before you were going to send the two blues in to attack half my homeworld..this is all a surprise\r\n\n\n56) wil: Build R1 G3\nCatastrophe G3 R\n\n57) dlwillson: M Y1 G3 Sky\n\twil: again unexpected...and I don&#39;t want to play othello...so I&#39;ll move it on...\n\n58) wil: Build B2 G2\n\n59) dlwillson: B G1 Dlwillson\n\n60) wil: Build B3 G2\n\n61) dlwillson: B G1 Sky\n\n62) wil: Build G2 Wil\n\n63) dlwillson: S G3 Dlwillson\nB G2 Sky\nB Y1 Sky\nB G3 Dlwillson\n\n64) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G3\nBuild R1 Wil\n\n65) dlwillson: T G2 Y2 Sky\n\twil: I am feeling more comfortable now that your prediction is correct...\n\n66) wil: Sacrifice B2 G2\nTrade B3 Y3 G3\nTrade B3 R3 G2\n\n67) dlwillson: Move Y1 Sky G3\n\n68) wil: Sacrifice G2 Wil\nBuild B2 G2\nBuild B3 G3\n\n69) dlwillson: Move G1 Sky G3\n\n70) wil: Move B3 G3 Sky\n\n71) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 G3\nBuild G2 G3\nBuild G3 Dlwillson\nCatastrophe G3 G\n\n72) wil: Sacrifice R3 G2\nAttack G1 Sky\nAttack Y1 Sky\nAttack Y2 Sky\n\n73) dlwillson: Trade G1 Y1 Dlwillson\n\twil: I didn&#39;t see that coming either...nice\n\twil: while it is one I&#39;ll hopefully save in my memory banks..it appears it backfired somewhat.\n\tdlwillson: I have no illusions about who&#39;s ultimately winning here. I&#39;m just looking for interesting opportunities, like that one, in the declining game.\n\n74) wil: Sacrifice G3 Wil\nBuild B1 G2\nBuild B1 Sky\nBuild R2 Wil\n\n75) dlwillson: B G1 Dlwillson\n\tdlwillson: What I need is a bow and arrow. Two free moves and I could have them. The and I could fire it. :-)\n\n76) wil: Trade B3 G3 Sky\n\n77) dlwillson: M G1 Dlwillson G2\n\twil: lol...yup...treadin dangerouse waters...\n\twil: I&#39;ve never cornered two commodities before...but I&#39;ve got them backwards...I need the red on the frontline and the blue in my homeworld...\n\twil: ah...you just made me aware of what I need to do..\n\twil: something I never really saw before...dawn just broke over marble head\n\n78) wil: Trade B2 R2 G2\n\n79) dlwillson: B G1 G2\n\n80) wil: Sacrifice R2 Wil\nAttack G1 G2\nAttack G1 G2\n\n81) dlwillson: B G2 Dlwillson\n\n82) wil: Sacrifice Y2 Sky\nMove G1 Sky Dlwillson\nMove G1 G2 Dlwillson\nCatastrophe Dlwillson G\n\twil: one strange game...\n\n83) dlwillson: T Y1 G1 Dlwillson\n\n84) wil: Move B1 Sky Dlwillson\n\n85) dlwillson: A B1 Dlwillson\n\n86) wil: Move G3 Sky Dlwillson\n\twil: yup, one strange game... \n\n87) dlwillson: B G1 Dlwillson\n\twil: LOL...what was I thinking?\n\n88) wil: Sacrifice R2 G2\nAttack G1 Dlwillson\nAttack G1 Dlwillson\n\n89) dlwillson: Pass\n\n90) wil: Attack B1 Dlwillson\n\twil: unless you have another rabbit in that hat\n\n\tdlwillson: Nope. That&#39;s a wrap.\n\twil: and now I have to defend...\n\twil: If there was only a b1 in the bank...I wanted to sack my b2 and change the colors of my green to catastrophe b&#39;s...all that would be left would be pawns on the board\n\tdlwillson: Congrats and good game! See you in about a week.\n\nHomeworlds Online (SDG# 27820)\nStarted: 2015.7.13, Ended: 2015.9.1\nParticipants: r01andg (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) r01andg: Homeworld Y2 G3 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tr01andg: You too!\n\n4) r01andg: Build B1 R01andg\n\n5) ts52: Trade G1 B1 Ts52\n\n6) r01andg: Discover B1 R01andg G1 Terra1\n\n7) ts52: Build B2 Ts52\n\n8) r01andg: Build B2 R01andg\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) r01andg: Trade B1 G1 Terra1\n\n11) ts52: Build G1 Ts52\n\n12) r01andg: Move B2 R01andg Terra1\n\n13) ts52: Discover G1 Ts52 Y2 Bigbird\n\n14) r01andg: Trade B2 Y2 Terra1\n\n15) ts52: Build G2 Bigbird\n\n16) r01andg: Build Y1 Terra1\n\n17) ts52: Trade B1 Y1 Ts52\n\n18) r01andg: Move Y2 Terra1 Kermit\n\n19) ts52: Trade B2 R2 Kermit\n\n20) r01andg: Discover Y1 Terra1 G3 Terr2\n\n21) ts52: Attack Y2 Kermit\n\n\nHomeworlds Online (SDG# 27772)\nVariants: &quot;Unrated&quot;\nStarted: 2015.7.13, Ended: 2015.7.18\nParticipants: wil (S), AcetyleneLamp (N)\nWinner: wil\n\n1) AcetyleneLamp: Homeworld B1 G2 Y3\n\tAcetyleneLamp: Where are the system lablels? I clicked hide/show system labels a couple of times and there still aren&#39;t any labels.\n\tAcetyleneLamp: What kind of first move should I make?\n\tAcetyleneLamp: Have you played this before? I don&#39;t understand how to do anything.\n\n2) wil: Homeworld B3 Y2 G3\n\tAcetyleneLamp: I found the games in progress on this site and looked at the commands for archived games. I still don&#39;t quite understand what I&#39;m doing though.\n\tAcetyleneLamp: I&#39;m trying to learn how to play some Looney Pyramid games on this site so I can introduce them to people I know in an offline gaming group. They might not go for this one (I think Zendo is out of the question), but they might like some of the simpler games like Blam.\n\twil: You&#39;ve chosen a fine start...banker star system...the yellow big ship is questionable...it works but is better suited for an experienced star ship captain...easier with a green (to maintain factory) I&#39;ll show you why... (don&#39;t know about system labels, never clicked that before)\n\twil: anyone who likes chess will love this when they grock how incredible it is.\n\n3) AcetyleneLamp: Build Y1 Acetylenelamp\n\tAcetyleneLamp: Ok, what kinds of things can I do now? I tried to build a new ship in my home system but it&#39;s telling me I need to already have one of the same color? How do I get that?\n\twil: You have a G in your homeworld star so you can always build (I have a G ship, so while my homeworld stars don&#39;t have that ability I do)  So you only have a mockup for a yellow ship, you can only build what you already have...so you can build yellow.\r\n\r\nAfter you&#39;ve built (first real move is a small ship the same color as the large ship..we are discussing as to whether that is will be the real start (there are times when a response may not be)..anywho... then you can trade (since you have blue in your star) either of those ships to a different color and then have the ability to build it as well)  G build/grow...Y move/fuel  B  trade/change  R attack\r\n\r\none other biggie...over population, 4 of any one color in a star system (including the star) can cause a catastrophe and all the pieces of that color go back to the bank (if the star blows too, then all the ships anchored in that system are destroyed as well.   We call this a reboot...\n\n4) wil: Build G1 Wil\n\tAcetyleneLamp: Sorry if it seems like I&#39;m relying on you to teach me these games, the rules for some of them don&#39;t really make sense to me until I&#39;ve had a chance to play a game or two, and the somewhat clunky interface on this site doesn&#39;t help.\n\tAcetyleneLamp: Why doesn&#39;t think game have a list of legal rules you can bring up like the others?\n\tAcetyleneLamp: Legal moves, I mean.\n\twil: this site is basically been running wild for awhile..aint the best and all we got... to much work coding legal moves on this one....but there is some behind the scenes (different curtain) shenanigans going on\n\twil: like any game there is a learning curve...some slow some fast...learning curve for something as simple as go...  this is not as long as chess..four or five games and you&#39;ll have about all the tricks figured...then it is seeing them\n\n\twil: If you wish, I&#39;ll inform you reason of and ask you to back off of a noticeably bad move.. and try again... I&#39;ll also tell you of situations I established and why...\n\twil: you can only move to stars of a different star than the one your ship is currently in...so you can only move to 3s and I can only move to 1s right now.  \n\twil: When you discover a new system...you name it..whatever you&#39;d like..for future reference (in live games they don&#39;t get a name)\n\tAcetyleneLamp: I&#39;m trying to discover a new system but it says there are insufficient pieces in the stash.\n\twil: what is listed as the global reserve stash is the bank...you can&#39;t discover a star that doesn&#39;t have it in the bank...\n\nHomeworlds Online (SDG# 27742)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.20, Ended: 2015.7.23\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 27829)\nVariants: &quot;Unrated&quot;\nStarted: 2015.7.21, Ended: 2015.8.27\nParticipants: jeep (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B2 G3\n\twil: ooo ooh thx for the game!\n\n2) jeep: Homeworld B3 Y1 G3\n\n3) wil: Build G1 Wil\n\tjeep: thanks for leaving up the challenge. I&#39;ve been away for a couple years and am trying to ease back into playing here. I will be travelling for GenCon, but expect I can keep up with this one game. ;)\n\twil: lol...  I can&#39;t get enough of this game.. \n\n4) jeep: Build G1 Jeep\n\n5) wil: Trade G1 R1 Wil\n\tjeep: Cool... FYI, I am unlikely to make a play tomorrow as I&#39;ll be driving, but I will make my move when I can.\n\twil: no worries...ome folks don&#39;t play for days...I just look when it shows up and play then...\n\n6) jeep: Trade G1 R1 Jeep\n\n7) wil: Build G1 Wil\n\n8) jeep: Build G1 Jeep\n\n9) wil: Trade G1 Y1 Wil\n\n10) jeep: Trade G1 Y1 Jeep\n\tjeep: Ugh... I am so rusty...\n\n11) wil: Build Y2 Wil\n\n12) jeep: Build Y2 Jeep\n\twil: I need rusty...\n\n13) wil: Discover Y1 Wil G1 G1\n\n14) jeep: Discover Y1 Jeep G2 G2\n\n15) wil: Discover Y2 Wil B1 B1\n\n16) jeep: Build G1 Jeep\n\n17) wil: Build G1 Wil\n\n18) jeep: Build G2 Jeep\n\n19) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild Y2 B1\n\n20) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y3 G2\nBuild R1 Jeep\n\n21) wil: Move G2 Wil B1\n\tjeep: Sorry for the delay. I should play more frequently when GenCon is over.\n\n22) jeep: Discover G2 Jeep B2 B2\n\twil: Were you a vendor or participant?  Did you see the Looneys?\n\tjeep: Participant. I saw Kristin as she walked by. Said &quot;hi&quot; to Andy, but he didn&#39;t remember me and he was too busy for me to remind him who I was. ;)\r\n\n\n23) wil: S G3 Wil\nBuild G3 B1\nBuild G3 Wil\nBuild Y3 G1\n\n24) jeep: Discover Y1 G2 B1 B1-2\n\n25) wil: Trade G3 R3 B1\n\tjeep: Sorry for the delay. It always seems to happen that when I start up a game here, something happens...\n\twil: no worries\n\n26) jeep: Build G3 B2\n\n27) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 B1\nBuild G3 Wil\n\n28) jeep: Trade G2 R2 B2\n\n29) wil: Trade R1 B1 Wil\n\n30) jeep: Sacrifice G3 Jeep\nBuild G2 B2\nBuild G3 Jeep\nBuild R1 B2\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Wil\nBuild B2 Wil\n\n32) jeep: Trade G3 B3 B2\n\n33) wil: S Y2 B1\nM R3 Wil G1\nM B2 Wil G1\n\tjeep: Yeah, this game is all over but the crying...\n\n34) jeep: Sacrifice Y2 Jeep\nMove R2 B2 B1\nMove R1 B2 B1\nCatastrophe B1 Red\n\n35) wil: S G3 Wil\nB G3 Wil\nB G3 B1\nB Y2 B1\n\n36) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 B1-2\nPass\n\n37) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB B3 G1\n\n38) jeep: Move R1 Jeep B2\n\n39) wil: M R2 Wil B1\n\n40) jeep: Move Y1 B1-2 B2\n\n41) wil: S Y2 B1\nM B3 G1 G2\nM Y3 G1 G2\n\n42) jeep: Trade B3 R3 B2\n\n43) wil: S R1 Wil\nA Y3 G2\n\n44) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 B2\nBuild R1 Jeep\n\tjeep: And it gets more and more grim...\n\twil: Yeah,but that&#39;s a good move....slowed my plan...\n\twil: Yeah,but that&#39;s a good move....slowed my plan...\n\n45) wil: S G3 Wil\nB B3 G2\nB R2 B1\nB G3 Wil\n\n46) jeep: Move Y1 B2 B1-2\n\n47) wil: T B3 R3 G2\n\n48) jeep: Trade Y2 R2 B1-2\n\n49) wil: S Y2 B1\nM R2 B1 B2\nM R2 B1 B2\nC B2 R\n\twil: Two moves to mate...unless\n\n50) jeep: Move Y1 B1-2 Wil\n\n51) wil: S Y3 G2\nM Y3 G2 Jeep\nM R3 G2 Jeep\nM B3 G2 Jeep\n\twil: Occupation vehicles in place...\n\n52) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild Y2 Wil\nBuild Y2 Wil\nCatastrophe Wil Yellow\n\n53) wil: S R3 Jeep\nA G2 Jeep\nA R1 Jeep\nA R1 Jeep\n\twil: We gracefully accept your gift\n\twil: And have sent a welcoming envoy to introduce your peoples tontheir new rulers..\n\n54) jeep: Sacrifice Y2 B2\nMove G2 B2 B1\nMove G2 B1 Wil\n\n55) wil: A G1 Jeep\n\twil: Our old homeworld was a superfund site, se are amazed at not only what a wonderful job you&#39;ve done on the environment here.,.but also how fast you cleameed uot that oil spill...\n\n\tjeep: gg\n\twil: We just kind of oil does rusty parts and gets too short back in the games and it back\n\nHomeworlds Online (SDG# 27790)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.22, Ended: 2015.7.29\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B3 G1 R3\n\n2) wil: Homeworld B3 Y2 G3\n\tSimon: Have fun!\n\twil: Oh, alright, if you insist!  Seriously thanx for the game...\n\twil: and now he looks at your opening and says &quot;WoW&quot;\n\n3) Simon: Build R1 Simon\n\n4) wil: Build G1 Wil\n\n5) Simon: Build R1 Simon\n\n6) wil: Trade G1 R1 Wil\n\n7) Simon: Trade R1 Y1 Simon\n\n8) wil: Build G1 Wil\n\n9) Simon: Discover R1 Simon G2 G2\n\n10) wil: Build G1 Wil\n\n11) Simon: Build Y1 Simon\n\n12) wil: Discover G1 Wil B1 B1\n\n13) Simon: Build R1 Simon\n\n14) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 B1\nBuild G3 Wil\n\n15) Simon: Build R2 G2\n\n16) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B1\nBuild R2 Wil\n\n17) Simon: Build R2 Simon\n\n18) wil: Trade G3 R3 B1\n\n19) Simon: Build R3 G2\n\n20) wil: Build G3 B1\n\n21) Simon: Trade R2 B2 Simon\n\n22) wil: Trade G3 Y3 B1\n\n23) Simon: Sacrifice B2 Simon\nTrade R1 B1 G2\nTrade R3 Y3 G2\n\n24) wil: Discover G2 B1 B2 B2\n\n25) Simon: Discover Y3 G2 G3 G3\n\n26) wil: Build G3 B2\n\n27) Simon: Trade Y1 B1 Simon\n\n28) wil: Trade G3 R3 B2\n\tSimon: Alright, the red ship sucked x_X\n\n29) Simon: Trade R3 G3 Simon\n\twil: You dang war mongers...\n\n30) wil: Sacrifice G2 Wil\nBuild R1 B2\nBuild G2 B2\n\n31) Simon: Sacrifice G3 Simon\nBuild B2 G2\nBuild B2 G2\nBuild B3 Simon\n\twil: Oh....so now you wanna go green?   After the sea rises?\n\n32) wil: Build G3 B2\n\twil: https://www.youtube.com/watch?t=14&amp;v=d90ZWD4I9O0\n\n33) Simon: Trade B2 Y2 G2\n\n34) wil: Trade G3 Y3 B2\n\n35) Simon: Trade B3 G3 Simon\n\n36) wil: Sacrifice Y3 B1\nMove G2 B2 Simon\nMove G2 B2 Simon\nMove R3 B2 Simon\nCatastrophe Simon G\n\n37) Simon: Sacrifice Y2 G2\nMove B1 G2 Simon\nMove B2 G2 Simon\nCatastrophe Simon B\n\tSimon: Nice, thanks for the game. Anything else than making a g3 didn&#39;t look enticing either.\n\twil: no, ya done right...I got ahead when I created that queen mill...\n\twil: Challenge me anytime...this game is never the same..\n\n\nHomeworlds Online (SDG# 27903)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.27, Ended: 2015.9.29\nParticipants: Grosseteste (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 Y1 G3\n\n2) Grosseteste: Homeworld B2 Y1 G3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tGrosseteste: Likewise, thanks for the game!\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Grosseteste: Discover G1 Grosseteste B3 Charlie\n\n7) Simon: Build Y2 Simon\n\n8) Grosseteste: Build G1 Charlie\n\n9) Simon: Discover Y2 Simon G2 G2\n\n10) Grosseteste: Build G1 Grosseteste\n\n11) Simon: Build Y2 G2\n\n12) Grosseteste: Trade G3 Y3 Grosseteste\n\n13) Simon: Build G2 Simon\n\n14) Grosseteste: Build G2 Grosseteste\n\n15) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Simon\nBuild Y3 G2\n\n16) Grosseteste: Discover G1 Grosseteste B3 Linus\n\n17) Simon: Trade Y2 B2 Simon\n\n18) Grosseteste: Build G3 Grosseteste\n\n19) Simon: Sacrifice B2 Simon\nTrade Y2 R2 G2\nTrade Y2 B2 G2\n\n20) Grosseteste: Sacrifice Y3 Grosseteste\nMove G1 Linus G2\nMove G1 Charlie G2\nMove G1 Charlie G2\nCatastrophe G2 G\n\n21) Simon: Build Y2 Simon\n\n22) Grosseteste: Trade G2 Y2 Grosseteste\n\n23) Simon: Discover Y2 Simon B2 B2\n\n24) Grosseteste: Build G1 Grosseteste\n\n25) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Simon\n\n26) Grosseteste: Discover G1 Grosseteste Y3 Chuck\n\n27) Simon: Trade Y3 G3 B2\n\n28) Grosseteste: D Y2 Grosseteste G3 Linus\n\n29) Simon: Trade Y2 R2 B2\n\n30) Grosseteste: B G1 Grosseteste\n\n31) Simon: Sacrifice Y2 B2\nMove G3 B2 Chuck\nMove G3 Chuck Grosseteste\n\n\tGrosseteste: Doh! Didn&#39;t see that coming.  GG\n\tSimon: gg -- Thanks for the game!\n\nHomeworlds Online (SDG# 27883)\nVariants: &quot;Hard time&quot;\nStarted: 2015.7.29, Ended: 2015.8.15\nParticipants: DOA (S), wil (N)\nWinner: DOA\n\n1) wil: Homeworld B3 Y1 G3\n\twil: thanx for the game...\n\n2) DOA: Homeworld G3 Y2 B3\n\twil: Can&#39;t find a live game?\n\n3) wil: Build G1 Wil\n\tDOA: Thanks and have fun.  Not many live games for me, sadly. People just don&#39;t &quot;get&quot; homeworlds sometimes or don&#39;t like the head to head aspect of games that I enjoy, so....  what do ya do? :)\n\twil: I always liked chess...and think the complexity here is more than equivalent, I keep thinking I should find a local chess club and introduce it.\n\n4) DOA: Build B1 Doa\n\twil: Interesting opening...  so how many games have you played?  And do you like fortress and blue or are you experimenting?\n\n5) wil: Trade G1 B1 Wil\n\tDOA: I&#39;ve played maybe... 40 games tops, but mostly against the same opponent. Fortress is an experiment but I like blue.\r\n\r\nYeah, I feel like most chess people would like this game. The fact that homeworlds is comparatively young is a huge draw for me.  The future is wide open. I have a hard time hooking anyone with it  because of the learning curve and many choices.\n\n6) DOA: Trade B1 G1 Doa\n\n7) wil: Build G1 Wil\n\n8) DOA: Discover G1 Doa B1 Lxsx\n\twil: I don&#39;t see where the learning curve is longer than chess...  I played and played here watched various attacks take me out...\n\n9) wil: Discover B1 Wil G2 G2\n\n10) DOA: Build G1 Lxsx\n\n11) wil: Trade G1 R1 Wil\n\n12) DOA: Trade G1 Y1 Lxsx\n\n13) wil: Trade B1 Y1 G2\n\n14) DOA: Build Y2 Lxsx\n\twil: yup...did that backwards..\n\n15) wil: Build Y2 G2\n\n16) DOA: Trade Y1 R1 Lxsx\n\n17) wil: Build G1 Wil\n\n18) DOA: Build B1 Doa\n\n19) wil: Trade G1 B1 Wil\n\n20) DOA: Discover B1 Doa Y1 Opip\n\n21) wil: Discover Y1 G2 G1 G1\n\twil: where are you out of...and how did you find homeworlds?\n\n22) DOA: Sacrifice Y2 Lxsx\nDiscover B1 Opip G2 Gee\nDiscover G1 Lxsx B2 Bee\n\tDOA: I&#39;m out of AZ. I discovered homeworlds out of PwP, then binary from wunderland.  Got stashes, found a friend to learn with, and now here we are. \r\n\r\nCame here because of that post on Wunderland about Andy wanting opponents and offering a metal to the winners haha.  I have never made it out east for anything game related nor would I win, but a guy can have a dream. ^_^\n\n23) wil: Move Y2 G2 Lxsx\n\twil: I am in the DC area and picked up HW during localgame nights...my daughter bought zendo first...a long time ago..\n\twil: Practice here...and then challenge him at a convention and earn that medal!!\n\twil: 1st grade to 3rd grade I lived in Pheonix...  visited often...love the SW\n\n24) DOA: Build B2 Gee\n\n25) wil: Discover B1 Wil G2 G2\n\n26) DOA: Trade B2 Y2 Gee\n\tDOA: I have to agree about the SW. :) I have not visited the DC area sense I was in middle school. All the historical stuff, it was neat. Only played zendo a few times, but it was a lot of fun. It&#39;s awesome you&#39;re daughter had/has a zendo box. &quot;alpha&quot; pyramid stuff is really cool.\n\n27) wil: Build B2 G2\n\twil: I took my kids to a local game developer gathering, them showing and playtesting new games...Corey was there with Zendo, wits and wagers was being tested..my kids were each allowed to pick one game... it was a great experience...we did it a couple of years and then got caught up in life...didn&#39;t find pyramids again till a few years ago.\n\twil: DC/MD/VA great spring and fall...stay away summer and winter...\n\n28) DOA: Build B2 Gee\n\n29) wil: Build R1 Wil\n\twil: I just so enjoy how each game is sooo different\n\n30) DOA: Build B3 Doa\n\tDOA: And how! It&#39;s one of the best parts for sure.\n\twil: that and how a couple of reboots with catastrophes or attacks turns it into a brand new game in the middle...\n\n31) wil: Trade B1 Y1 G2\n\n32) DOA: Build Y3 Gee\n\n33) wil: Build Y3 G2\n\n34) DOA: Sacrifice Y2 Gee\nMove B2 Gee Wil\nMove B1 Gee Wil\n\n35) wil: Build B1 G2\n\n36) DOA: Sacrifice G1 Bee\nBuild B2 Wil\nCatastrophe Wil Blue\n\n37) wil: Move B2 G2 G1\n\n38) DOA: Trade B3 R3 Doa\n\n39) wil: Sacrifice R1 Wil\nAttack R1 Lxsx\n\n40) DOA: Build Y2 Gee\n\n41) wil: Build Y3 G1\n\tDOA: uhh... never mind, then never mind that never mind. -_-\n\n42) DOA: Discover Y2 Gee G3 Ugh\n\n43) wil: B G1 Wil\n\n44) DOA: Build B1 Doa\n\n45) wil: B B2 G2\n\n46) DOA: Sacrifice Y2 Ugh\nMove Y3 Gee Wil\nMove B3 Doa Wil\n\n47) wil: A Y3 Wil\n\n48) DOA: Sacrifice R3 Doa\nAttack G3N Wil\nAttack Y3N Wil\nAttack R1N Wil\n\n49) wil: S Y3 G2\nM Y3 G1 Doa\nM B2 G1 Doa\nM B2 G2 Wil\n\n50) DOA: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nPass\nCatastrophe Wil Yellow\n\n\twil: Luv it when it gets interesting\n\twil: Luv it when it gets interesting\n\tDOA: Good game, thanks for playing.\n\twil: Thank you! Challenge me anytime.. I enjoy playing hw..\n\nHomeworlds Online (SDG# 27876)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.3, Ended: 2015.8.6\nParticipants: mcowper (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) mcowper: Homeworld R2 B1 G3\n\twil: THANX for the game!  Good Luck.\n\n3) wil: Build G1 Wil\n\n4) mcowper: Build G1 Mcowper\n\n5) wil: Trade G1 B1 Wil\n\n6) mcowper: Trade G1 Y1 Mcowper\n\n7) wil: Build B1 Wil\n\n8) mcowper: Build G1 Mcowper\n\n9) wil: Discover B1 Wil G2 G2\n\n10) mcowper: Discover G1 Mcowper B3 Heinlein\n\n11) wil: Build B2 G2\n\n12) mcowper: Build G1 Mcowper\n\n13) wil: Build B2 Wil\n\n14) mcowper: Discover G1 Mcowper B3 Asimov\n\n15) wil: Build B2 G2\n\n16) mcowper: Build G1 Mcowper\n\n17) wil: Sacrifice B2 Wil\nTrade B2 Y2 G2\nTrade B2 R2 G2\n\twil: very nice\n\n18) mcowper: Sacrifice G3 Mcowper\nBuild G2 Heinlein\nBuild G2 Asimov\nBuild G3 Mcowper\n\n19) wil: Build G3 Wil\n\n20) mcowper: Sacrifice G3 Mcowper\nBuild G3 Mcowper\nBuild Y1 Mcowper\nBuild Y2 Mcowper\n\n21) wil: Move R2 G2 Asimov\n\n22) mcowper: Sacrifice Y2 Mcowper\nDiscover G1 Asimov B2 Clarke\nDiscover G2 Asimov B2 Williamson\n\twil: this is where I&#39;d love to push a button, play it one way, then another, and another...I&#39;ve no clue which is the best direction...\n\n23) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Asimov\nBuild Y2 G2\n\n24) mcowper: Move Y1 Mcowper Heinlein\n\n25) wil: Move Y2 G2 Heinlein\n\n26) mcowper: Sacrifice G3 Mcowper\nBuild Y2 Mcowper\nBuild Y3 Heinlein\nBuild G3 Mcowper\n\n27) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 Heinlein\nBuild Y3 G2\nCatastrophe Heinlein Y\n\n28) mcowper: Sacrifice Y2 Mcowper\nMove G1 Clarke Wil\nMove G2 Williamson Wil\nCatastrophe Wil G\n\twil: Again three choices and don&#39;t know which was best...this should be fun.\n\twil: these are the times I wish I was the kinda guy that set up a physical board and thought about it and didn&#39;t just shoot from the hip...\n\n29) wil: Move Y2 G2 Heinlein\n\n30) mcowper: Trade G2 R2 Heinlein\n\n31) wil: Sacrifice R2 Asimov\nAttack R2 Heinlein\nAttack G1 Heinlein\n\n32) mcowper: Build Y1 Mcowper\n\twil: Putting two queen g&#39;s on the chopping block doesn&#39;t seem so ridiculous now\n\n33) wil: Build G1 Heinlein\n\n34) mcowper: Discover G1 Mcowper G3 Niven\n\n35) wil: Build G2 Heinlein\n\n36) mcowper: Move Y1 Mcowper Niven\n\n37) wil: Move Y3 G2 Niven\n\n38) mcowper: Sacrifice G3 Mcowper\nBuild Y2 Niven\nBuild Y2 Niven\nBuild Y3 Mcowper\nCatastrophe Niven Y\n\n39) wil: Discover G1 Heinlein Y2 Y2\n\twil: oh hell....great move!!\n\n40) mcowper: Trade Y3 R3 Mcowper\n\n41) wil: Sacrifice Y2 Heinlein\nMove R2 Heinlein Mcowper\nMove R1 Asimov Mcowper\nCatastrophe Mcowper R\n\tmcowper: Thank you. I think I&#39;m getting better at this.\n\n42) mcowper: Sacrifice G1 Niven\nBuild Y1 Mcowper\n\twil: me thinks we both made the same mistake!\n\tmcowper: How did I not see that coming? Maybe I&#39;m not getting better. I&#39;m pretty sure that I have lost at this point. I&#39;ll go a couple of more turns and see what happens.\n\n43) wil: Trade G2 R2 Heinlein\n\twil: It is going to take me a couple of moves...but you didn&#39;t see it the exact same way I didn&#39;t see yours...we get a plan, and then ego and tunnel vision collude...\n\n44) mcowper: Trade Y1 G1 Mcowper\n\n45) wil: Build G2 Heinlein\n\n46) mcowper: Build Y1 Mcowper\n\twil: Interesting, you are one step ahead...so I&#39;ve got to do some maneuvering to retake or I&#39;ll be in another blunder..\n\n47) wil: Build B2 G2\n\n48) mcowper: Build Y2 Mcowper\n\n49) wil: Trade B2 Y2 G2\n\n50) mcowper: Trade Y2 R2 Mcowper\n\n51) wil: Build B2 G2\n\twil: the dance of not givin your opponent access to the next larger size...\n\n52) mcowper: Build Y2 Mcowper\n\twil: I&#39;ve got a plan to come visit your fine homeworld..the ships are gassed up\n\n53) wil: Build Y3 G2\n\twil: here goes nuthin\n\twil: nope...that ain&#39;t gonna work..\n\n54) mcowper: Build G2 Mcowper\n\twil: ball back in your court...taking it the slow safe way...\n\n55) wil: Build B2 G2\n\tmcowper: I&#39;m pretty sure that all that I can do is delay the inevitable.\n\n\twil: lol... I&#39;ve been wasting my time..  and we&#39;ve just encountered an error in the system..I could sack my y3 and send in y2 and two Gs and catastrophe all your Ys and Gs but the system won&#39;t allow any moves after the first catastrophe.... which made me realize why am i focused on your ships when I only need to attack the star...\n\tmcowper: I saw that double catastrophe and was wondering if the system could handle it. I was kind of figuring that you would go after the star. I&#39;m resigning. Thank you for a good game. We&#39;ll play again soon.\n\twil: quite the back and forth...challenge anytime...thanx\n\nHomeworlds Online (SDG# 27920)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.7, Ended: 2015.8.12\nParticipants: mcowper (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\twil: thanks...hava good game\n\n2) mcowper: Homeworld R2 B1 G3\n\n3) wil: Build G1 Wil\n\n4) mcowper: Build G1 Mcowper\n\n5) wil: Trade G1 B1 Wil\n\n6) mcowper: Trade G1 B1 Mcowper\n\n7) wil: Trade B1 Y1 Wil\n\n8) mcowper: Build G1 Mcowper\n\n9) wil: Build Y1 Wil\n\n10) mcowper: Trade G3 Y3 Mcowper\n\n11) wil: Discover Y1 Wil G2 G2\n\n12) mcowper: Build Y2 Mcowper\n\n13) wil: Build Y2 Wil\n\n14) mcowper: Build G1 Mcowper\n\n15) wil: Trade Y1 R1 Wil\n\n16) mcowper: Discover G1 Mcowper Y3 Asimov\n\n17) wil: Build R1 Wil\n\n18) mcowper: Trade Y3 G3 Mcowper\n\n19) wil: Move R1 Wil G2\n\n20) mcowper: Trade G1 R1 Mcowper\n\n21) wil: Build R2 G2\n\n22) mcowper: Build G1 Mcowper\n\n23) wil: Move R2 G2 Asimov\n\n24) mcowper: Discover G1 Asimov B2 Bradbury\n\n25) wil: Sacrifice G3 Wil\nBuild R2 Asimov\nBuild R3 Wil\nBuild R3 Wil\n\n26) mcowper: Discover R1 Mcowper B3 Clarke\n\n27) wil: Trade R3 Y3 Wil\n\n28) mcowper: Build Y1 Mcowper\n\n29) wil: Discover Y3 Wil G2 Gee2\n\n30) mcowper: Discover Y1 Mcowper B3 Delaney\n\n31) wil: Build R3 G2\n\n32) mcowper: Sacrifice G3 Mcowper\nBuild R3 Clarke\nBuild Y2 Delaney\nBuild Y3 Mcowper\n\n33) wil: Trade R3 G3 Wil\n\n34) mcowper: Trade Y3 G3 Mcowper\n\n35) wil: Build Y3 G2\n\n36) mcowper: Sacrifice G3 Mcowper\nBuild G1 Bradbury\nBuild G2 Bradbury\nBuild G3 Mcowper\n\n37) wil: Build R3 Wil\n\n38) mcowper: Trade G1 B1 Bradbury\n\n39) wil: Move R3 Wil Bradbury\n\n40) mcowper: Sacrifice G2 Bradbury\nBuild B2 Bradbury\nBuild B2 Bradbury\nCatastrophe Bradbury B\n\n41) wil: Build R3 Wil\n\n42) mcowper: Build G1 Mcowper\n\n43) wil: Sacrifice Y3 Gee2\nMove R1 Wil G2\nMove R1 G2 Clarke\nMove R1 G2 Clarke\nCatastrophe Clarke R\n\twil: On the precipice... \r\n\n\n44) mcowper: Build Y3 Mcowper\n\n45) wil: B R1 G2\n\n46) mcowper: Discover G1 Mcowper B3 Ellison\n\n47) wil: M Y3 G2 Ellison\n\n48) mcowper: Sacrifice Y2 Mcowper\nDiscover G1 Ellison Y2 Flint\nMove G1 Mcowper Delaney\n\n49) wil: M R3 G2 Delaney\n\n50) mcowper: Trade G3 R3 Mcowper\n\n51) wil: S Y3 Ellison\nM R3 Wil Flint\nM R2 Asimov Mcowper\nM R2 Asimov Mcowper\nC Mcowper R\n\n\tmcowper: I should have resigned last turn. Thank you for the game.\n\twil: Thank you! For the game...challenge me anytime!\n\nHomeworlds Online (SDG# 27944)\nVariants: &quot;Hard time&quot;\nStarted: 2015.8.9, Ended: 2015.9.1\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) wil: Homeworld Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) dlwillson: Build Y3 Field\n\n12) wil: Build Y3 G3\n\n13) dlwillson: T Y2 R2 Dlwillson\n\n14) wil: Trade Y2 R2 Wil\n\n15) dlwillson: D Y1 Field B3 Sky\n\n16) wil: D Y3 G3 G2 G2\n\tdlwillson: Sorry for the delay\n\n17) dlwillson: B Y2 Field\n\tdlwillson: B y2 field\n\n18) wil: B Y2 G3\n\tdlwillson: Oops :-)\n\n19) dlwillson: Trade Y1 G1 Sky\n\twil: I do that all the time... \n\n20) wil: B R1 Wil\n\n21) dlwillson: Move Y2 Field Sky\n\n22) wil: D R2 Wil Y3 Y3\n\n23) dlwillson: Build G1 Dlwillson\n\n24) wil: B G1 Wil\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild Y1 Field\nBuild G3 Dlwillson\n\n26) wil: Build R1 Wil\n\n27) dlwillson: S Y3 Field\nM G2 Sky Wil\nM G1 Sky Wil\nM Y2 Sky Wil\nC Wil G\n\n28) wil: M Y2 G3 Wil\n\twil: Igotts watch better\n\n29) dlwillson: B Y3 Field\n\n30) wil: A Y2 Wil\n\n31) dlwillson: M Y3 Field Y3\n\twil: I thought I already lost this game... Oh I see I did... But this is where super duper games as an issue or it would be ended next move\n\tdlwillson: Actually, I goofed.\n\twil: Join the club!\n\n32) wil: D Y1 G3 B2 B2\n\tdlwillson: Sorry for the long delay. No obvious moves.\n\n33) dlwillson: B R1 Dlwillson\n\n34) wil: M Y1 B2 Y3\n\tdlwillson: Now that we&#39;re a couple moves out, what do you mean about SDG having an issue?\n\twil: It doesn&#39;t allow you to continue to move after a catastrophe which would have allowed you to move in on me more \n\twil: It doesn&#39;t allow you to continue to move after a catastrophe which would have allowed you to move in on me more \n\n35) dlwillson: M Y3 Y3 Wil\nC Wil Y\n\n36) wil: T R1 G1 Wil\n\tdlwillson: All my fiddling around bought me nothing! Good job!\n\n37) dlwillson: M R2 Dlwillson Field\n\twil: Half a homeworld out numbered..\n\twil: Half a homeworld out numbered..\n\n38) wil: B G1 Wil\n\n39) dlwillson: T G1 B1 Dlwillson\n\n40) wil: B Y2 G2\n\n41) dlwillson: B Y2 Field\n\n42) wil: M Y3 G2 Wil\n\n43) dlwillson: B B1 Dlwillson\n\n44) wil: B Y2 Wil\n\n45) dlwillson: Move Y1 Field Wil\n\n46) wil: B Y3 G2\n\n47) dlwillson: Move Y2 Field Wil\nCatastrophe Wil Y\n\tdlwillson: I will snatch defeat from the jaws of victory!\n\n48) wil: B Y1 G2\n\twil: Should we really concern oucellves with Vic&#39;s foot fetish?\n\n49) dlwillson: Move B1 Dlwillson Field\n\n50) wil: M Y3 G2 Wil\n\n51) dlwillson: Build B2 Field\n\n52) wil: M Y3 Wil Field\n\twil: Not quite deja vu... More like Groundhog Day, I keep seeing the same things and trying something different\n\n53) dlwillson: T R2 Y2 Field\n\n54) wil: S R2 Y3\nA Y2 Field\nA B2 Field\n\twil: And this is different...\n\n55) dlwillson: B B2 Field\n\n56) wil: S R1 Wil\nA B2 Field\n\n57) dlwillson: B B2 Field\nC Field B\n\n58) wil: B Y2 Field\n\twil: The twists and turns of this game are just so dramatic.,.\n\n59) dlwillson: B B1 Dlwillson\n\n60) wil: T G1 R1 Wil\n\n61) dlwillson: D B1 Dlwillson G2 Forest\n\n62) wil: B Y3 G2\n\n63) dlwillson: Build B2 Dlwillson\n\n64) wil: B R1 Wil\n\n65) dlwillson: B R2 Dlwillson\n\n66) wil: B R2 Wil\n\n67) dlwillson: M R2 Dlwillson Forest\n\n68) wil: T R2 B2 Wil\n\n69) dlwillson: M B2 Dlwillson Field\n\n70) wil: B R2 Wil\n\n71) dlwillson: B B2 Field\n\n72) wil: S R2 Wil\nA B2 Field\nA B2 Field\n\n73) dlwillson: D B1 Dlwillson R2 Mars\n\n74) wil: B B3 Wil\n\n75) dlwillson: Build B3 Forest\n\n76) wil: S Y2 Field\nM B2 Wil Forest\nM B3 Wil Forest\nC Forest B\n\n77) dlwillson: Sacrifice B1 Mars\nTrade R2 Y2 Forest\n\n78) wil: M Y3 G2 Wil\n\n79) dlwillson: B R2 Dlwillson\n\n80) wil: B R2 Wil\n\n81) dlwillson: Move R2 Dlwillson Forest\n\n82) wil: M R2 Wil Y3\n\n83) dlwillson: Build R2 Dlwillson\n\n84) wil: T R1 B1 Wil\n\n85) dlwillson: Build G1 Dlwillson\n\n86) wil: M B1 Wil G2\n\n87) dlwillson: Discover R2 Dlwillson B2 Sky\n\n88) wil: S Y3 Field\nM B2 Field Dlwillson\nM B2 Field Dlwillson\nM B1 G2 Dlwillson\nC Dlwillson B\n\twil: Well...that took long enough\n\twil: I believe doomsday machine is finally in place\n\n89) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Sky\nBuild R3 Forest\nBuild R3 Dlwillson\n\n90) wil: S Y3 Wil\nM Y2 Field Dlwillson\nM Y2 G2 Dlwillson\nM Y1 G2 Dlwillson\nC Dlwillson Y\n\n\twil: It is time to rebuild the galaxy...  Lot o warships out tgere\n\tdlwillson: gg\n\twil: Thanx for the game..I feel you had me...I got lucky as each big reboot I seemed to gain a little position.... And then it took me forever to close the deal..\n\tTeeTeeTee: You know, you had a perfect doomsday machine set up a dozen or so turns back, just before you triggered a catastrophe at Forest...\n\twil: I realized that I didn&#39;t see it...I took my I off the ball...\n\nHomeworlds Online (SDG# 27938)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.13, Ended: 2015.9.2\nParticipants: wil (S), mcowper (N)\nWinner: wil\n\n1) mcowper: Homeworld Y2 B1 G3\n\n2) wil: H Y3 B1 G3\n\n3) mcowper: Build G1 Mcowper\n\twil: Thank for the game..the one thing we know is that it will be new and different\n\n4) wil: B G1 Wil\n\n5) mcowper: Discover G1 Mcowper B3 Angel\n\n6) wil: T G1 B1 Wil\n\n7) mcowper: Build G1 Mcowper\n\twil: You didn&#39;t capitalize on my error\n\n8) wil: B B2 Wil\n\n9) mcowper: Build G1 Angel\n\tmcowper: I missed your error.\n\n10) wil: D B1 Wil G2 G2\n\n11) mcowper: Sacrifice G3 Mcowper\nBuild G2 Angel\nBuild G2 Mcowper\nBuild G3 Mcowper\n\twil: And I am thoroughly glad you did\n\n12) wil: B G3 Wil\n\n13) mcowper: Trade G2 B2 Mcowper\n\n14) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\n15) mcowper: Trade G1 Y1 Angel\n\twil: Smurfs up...ride the wave\n\n16) wil: S B2 G2\nT B3 Y3 G2\nT B3 G3 Wil\n\n17) mcowper: Discover G2 Angel Y2 Beast\n\n18) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\n19) mcowper: Build Y1 Angel\n\n20) wil: S B2 G2\nT B3 R3 G2\nT B3 G3 Wil\n\n21) mcowper: Discover Y1 Angel G2 Cyclops\n\n22) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\n23) mcowper: Trade G1 R1 Mcowper\n\n24) wil: T B3 Y3 Wil\n\n25) mcowper: Build G1 Mcowper\n\n26) wil: M B3 G2 Angel\n\n27) mcowper: Move Y1 Angel Beast\n\n28) wil: T B3 G3 Angel\n\n29) mcowper: Discover B2 Mcowper B3 Dazzler\n\n30) wil: B G1 Wil\n\n31) mcowper: Sacrifice G3 Mcowper\nBuild G3 Mcowper\nBuild Y1 Cyclops\nBuild Y2 Cyclops\n\twil: Has Elvis left the building?\n\n32) wil: S Y3 Wil\nM G3 Angel Mcowper\nM Y3 G2 Angel\nM Y3 Angel Mcowper\n\tmcowper: Sorry. I&#39;ve just been very busy lately.\n\twil: No worries..\n\twil: No worries..\n\twil: No worries..\n\n33) mcowper: Attack Y3 Mcowper\n\n34) wil: S R3 G2\nA Y3 Mcowper\nA G3 Mcowper\nA R1 Mcowper\n\tmcowper: This is not looking good for me.\n\n\twil: The ole you take one I&#39;ll take three...\n\tmcowper: I don&#39;t see any way out. I think I&#39;ll resign. Thanks for the game.\n\twil: Thanx for the game.. Challenge anytime...\n\nHomeworlds Online (SDG# 27957)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.19, Ended: 2015.8.27\nParticipants: wil (S), Professor_Rabbit (N)\nWinner: wil\n\n1) Professor_Rabbit: Homeworld B2 G3 Y3\n\n2) wil: H B2 Y1 G3\n\n3) Professor_Rabbit: Build Y1 Professor_rabbit\n\twil: At the game\n\twil: Have! A good game\n\tProfessor_Rabbit: you too\r\n\n\tProfessor_Rabbit: you too\r\n\n\n4) wil: B G1 Wil\n\n5) Professor_Rabbit: Trade Y1 R1 Professor_rabbit\n\n\n6) wil: T G1 R1 Wil\n\twil: So what brings you to play homeworlds?\n\n7) Professor_Rabbit: Build Y1 Professor_rabbit\n\tProfessor_Rabbit: I wanted to practice a few times before playing Andy.\r\n\n\n8) wil: B R1 Wil\n\n9) Professor_Rabbit: Build R2 Professor_rabbit\n\twil: Lol...I heard that from another!!   Doni know you?\n\tProfessor_Rabbit: I&#39;m Shane. I ran their events at GenCon.\r\n\n\n10) wil: B R2 Wil\n\twil: Ah, I see...didna get to play there? Or was it work all the time?\n\n11) Professor_Rabbit: Discover R2 Professor_rabbit G1 Alpha\n\n12) wil: T R1 Y1 Wil\n\tProfessor_Rabbit: A little bit of playing in the morning and running the Looney event in the afternoon and evening.\n\n13) Professor_Rabbit: Build Y2 Professor_rabbit\n\n14) wil: B Y2 Wil\n\n15) Professor_Rabbit: Move Y3 Professor_rabbit Alpha\n\n16) wil: D Y1 Wil G3 G3\n\n17) Professor_Rabbit: Build Y2 Alpha\n\n18) wil: B Y3 G3\n\n19) Professor_Rabbit: Build Y3 Professor_rabbit\n\n20) wil: S Y2 Wil\nM Y1 G3 Alpha\nM Y1 Alpha Professor_rabbit\nC Professor_rabbit Y\n\n21) Professor_Rabbit: Build R1 Professor_rabbit\n\n22) wil: M R2 Wil G3\n\n23) Professor_Rabbit: Trade R1 B1 Professor_rabbit\n\twil: That is something you are going to want to avoid....  How do you wanna play these? Do  you want me to warn you so you can back off? Or full steam ahead...the way I&#39;ve learned is watching me make stupid mistakes and others move in with various attacks..join the ladder and you can play a variety of players..\n\tProfessor_Rabbit: Play to win\r\n\n\n24) wil: D Y3 G3 R1 R1\n\n25) Professor_Rabbit: Build B1 Professor_rabbit\n\n26) wil: M Y3 R1 Professor_rabbit\n\n27) Professor_Rabbit: Move Y3 Alpha Professor_rabbit\n\n28) wil: S R1 Wil\nA Y3 Professor_rabbit\n\twil: No big gun in your homeworld...you keft yourself unprotected...\n\n\twil: The struggle is real!!\n\tProfessor_Rabbit: Good game.\n\twil: Feel free to challenge anytime\n\nHomeworlds Online (SDG# 28012)\nVariants: &quot;Hard time&quot;\nStarted: 2015.8.24, Ended: 2015.8.28\nParticipants: Remneb (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) Remneb: Homeworld B3 R2 G3\n\tendo: thanks for the game, it took me ages to get through the decliners... gl hf\n\n3) endo: Build G1 Endo\n\n4) Remneb: Build G1 Remneb\n\tRemneb: Ya. There is some who are no more on SDG.\n\n5) endo: Trade G1 B1 Endo\n\n6) Remneb: Trade G1 Y1 Remneb\n\tendo: Couldn&#39;t they simply leave the ladder to avoid receiving challenges and slowing down active players? Also, the player I just dropped to the last spot has posted a challenge...\n\tRemneb: There are plenty of people who don&#39;t care for\r\nwhat ever.\n\n7) endo: Build B1 Endo\n\n8) Remneb: Build Y1 Remneb\n\n9) endo: Discover B1 Endo G2 Kernel\n\n10) Remneb: Discover Y1 Remneb G1 Rem\n\n11) endo: Build B2 Kernel\n\n12) Remneb: Build Y1 Rem\n\n13) endo: Trade B2 Y2 Kernel\n\n14) Remneb: Build Y2 Remneb\n\n15) endo: Build B2 Kernel\n\n16) Remneb: Trade Y2 B2 Remneb\n\n17) endo: Move B2 Kernel Rem\n\n18) Remneb: Move B2 Remneb Rem\n\n19) endo: Sacrifice G3 Endo\nBuild B2 Endo\nBuild B3 Kernel\nBuild B3 Rem\n\n20) Remneb: Move B2 Rem Kernel\n\n21) endo: Sacrifice B2 Rem\nTrade B2 R2 Endo\nTrade B3 R3 Kernel\n\n22) Remneb: Trade B2 Y2 Kernel\n\n23) endo: Sacrifice R3 Kernel\nAttack Y2S Kernel\nAttack Y1S Rem\nAttack Y1S Rem\n\n\tRemneb: Thanks for the game.\n\tendo: thanks\n\nHomeworlds Online (SDG# 27995)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.26, Ended: 2015.8.27\nParticipants: crothlisberger (S), wil (N)\nWinner: wil\n\n1) wil: H R3 Y1 G3 *\n\twil: Thx for the game\n\n2) crothlisberger: Homeworld B1 R2 G3\n\twil: So you&#39;ve dove right in! Do ya play this in the real world?\n\n3) wil: B G1 Wil\n\tcrothlisberger: Not yet,  have a set in the mail. \n\n4) crothlisberger: Build G1 Crothlisberger\n\twil: Never played?  Ask any questions you wish... And I can play instructional...or for blood..your choice...\n\n5) wil: D G1 Wil B2 B2\n\tcrothlisberger: Nope,  ok,  ha nah just play your game I&#39;ll learn as I go. \n\tcrothlisberger: Nope,  ok,  ha nah just play your game I&#39;ll learn as I go. \n\tcrothlisberger: Oh weird just gave an error then sent three times. This site could definitely use some work. \n\twil: This site is fairly stagnant as far as work on improvement goes... FYI you picked a quite tried and true opening... Mine is quite unconventional...\n\n6) crothlisberger: Trade G1 Y1 Crothlisberger\n\n7) wil: B G1 Wil\n\n8) crothlisberger: Build G1 Crothlisberger\n\n9) wil: B G2 B2\n\n10) crothlisberger: Discover G1 Crothlisberger B3 B3\n\n11) wil: T G1 R1 B2\n\n12) crothlisberger: Trade G1 R1 B3\n\n13) wil: B R1 B2\n\n14) crothlisberger: Move Y1 Crothlisberger B3\n\n15) wil: B R2 B2\n\n16) crothlisberger: Move R1 B3 B2\nCatastrophe B2 R\n\n17) wil: B G1 B2\n\n18) crothlisberger: Build G1 Crothlisberger\n\n19) wil: T G1 R1 B2\n\n20) crothlisberger: Move Y1 B3 Crothlisberger\n\n21) wil: M G1 Wil B2\n\n22) crothlisberger: Trade G1 R1 Crothlisberger\n\n23) wil: T G2 Y2 B2\n\n24) crothlisberger: Build G1 Crothlisberger\n\n25) wil: B G1 B2\n\n26) crothlisberger: Discover R1 Crothlisberger G3 G3\n\n27) wil: B G2 Wil\n\n28) crothlisberger: Trade G1 B1 Crothlisberger\n\n29) wil: D G1 B2 B3 B3\n\n30) crothlisberger: Move B1 Crothlisberger G3\n\n31) wil: B G1 B3\n\n32) crothlisberger: Trade G3 R3 Crothlisberger\n\n33) wil: S G3 Wil\nB G2 B2\nB G2 B3\nB G3 Wil\n\n34) crothlisberger: Move R3 Crothlisberger B3\n\twil: You may have just list the capability to dactiey\n\twil: *factory...\n\n35) wil: B G3 B2\n\twil: S y2 b2\r\nMove in two green pawns to your homeworld and you experience a catastrophe in the power to build including your big ship\n\twil: Essentially game oveer...it&#39;ll take a little bit but is inevitable unless I blunders of course\n\twil: So do you want to back up one, or just proceed and watch it playout like it is?\n\tcrothlisberger: Ah cause if you sacrifice a piece those actions can be used in any system? \n\twil: Yes...the power of move, growth, trade, attack becomes galaxy wide...\n\tcrothlisberger: Gotcha, yes Im screwed ha. Maybe I should just resign and we could play again.\n\twil: Uoto you...you can challenge another, back this one up and keep playing...\n\twil: Uoto you...you can challenge another, back this one up and keep playing...\n\n36) crothlisberger: Attack G2 B3\n\n37) wil: S Y2 B2\nM G3 B2 B3\nM G3 B3 Crothlisberger\n\twil: Or both\n\n\twil: Yes...here you can (because you have to activate it and it is a choice) live games it catastrophes... But unless you are out of that size star...you can land on a previously unknown star for a bit and then fly off to your next destination and when you leave it moves back to the bank (they only aooear in the starfueld when they are populated)\n\tcrothlisberger: Ok. \n\twil: After a few games will see how powerful this game is... After a hundred games you&#39;ll be amazed you haven&#39;t played the same game twice they are all so different\n\twil: After a few games will see how powerful this game is... After a hundred games you&#39;ll be amazed you haven&#39;t played the same game twice they are all so different\n\twil: After a few games will see how powerful this game is... After a hundred games you&#39;ll be amazed you haven&#39;t played the same game twice they are all so different\n\twil: After a few games will see how powerful this game is... After a hundred games you&#39;ll be amazed you haven&#39;t played the same game twice they are all so different\n\tcrothlisberger: Thanks for the clarifications on some of these rules. \n\nHomeworlds Online (SDG# 27871)\nVariants: &quot;Hard time&quot;\nStarted: 2015.8.26, Ended: 2015.9.8\nParticipants: SilentTitan (S), crothlisberger (N)\nWinner: crothlisberger\n\n1) crothlisberger: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B3 R1 G3\n\n3) crothlisberger: Build G1 Crothlisberger\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) crothlisberger: Trade G1 Y1 Crothlisberger\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) crothlisberger: Build G1 Crothlisberger\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) crothlisberger: Discover G1 Crothlisberger B3 B3\n\n10) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n11) crothlisberger: Build G1 Crothlisberger\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) crothlisberger: Trade G1 Y1 Crothlisberger\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) crothlisberger: Move Y1 Crothlisberger B3\n\n16) SilentTitan: Discover G1 Sol Y3 Soul\n\n17) crothlisberger: Build Y2 B3\n\n18) SilentTitan: Discover Y1 Silenttitan G2 Sole\n\n19) crothlisberger: Trade Y1 R1 B3\n\n20) SilentTitan: Trade G2 Y2 Silenttitan\n\n21) crothlisberger: Move R1 B3 Sole\n\n\nHomeworlds Online (SDG# 28022)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.27, Ended: 2015.9.22\nParticipants: wil (S), jeep (N)\nWinner: wil\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) wil: H B3 Y1 G3\n\n3) jeep: Build G1 Jeep\n\n4) wil: B G1 Wil\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) wil: T G1 Y1 Wil\n\n7) jeep: Build Y2 Jeep\n\n8) wil: B Y2 Wil\n\n9) jeep: Discover Y2 Jeep B3 Bigblue\n\n10) wil: D Y1 Wil G2 G2\n\n11) jeep: Build G1 Jeep\n\tjeep: Heh, I thought I moved my y1... hmm... \n\n12) wil: B Y3 G2\n\n13) jeep: Sacrifice G1 Jeep\nBuild Y3 Bigblue\n\n14) wil: D Y3 G2 B3 B3\n\n15) jeep: Trade Y2 G2 Bigblue\n\n16) wil: B G1 Wil\n\n17) jeep: Build G1 Jeep\n\n18) wil: B Y2 G2\n\n19) jeep: Discover G1 Jeep Y3 Bank\n\n20) wil: T G1 R1 Wil\n\tjeep: So many basic concepts that I have forgotten and am learning the hard way. ;)\n\n21) jeep: Trade Y1 R1 Jeep\n\twil: That is the only way to learn!  First you get slammed when you don&#39;t see it coming..then you see it coming and can&#39;t figure out how to stop it...then you start using the same thing against others\n\n22) wil: B Y1 G2\n\tjeep: Yeah, the problem is that I used to be pretty good at this.\n\tjeep: Yeah, the problem is that I used to be pretty good at this.\n\n23) jeep: Discover Y3 Bigblue B2 Medblue\n\n24) wil: B G1 Wil\n\n25) jeep: Sacrifice G1 Bank\nBuild Y3 Medblue\n\n26) wil: S Y3 B3\nM Y1 G2 Bigblue\nM Y1 Bigblue Medblue\nM Y2 Wil Medblue\nC Medblue Y\n\n27) jeep: Trade G2 Y2 Bigblue\n\n28) wil: D Y1 G2 G3 G3\n\n29) jeep: Build G1 Jeep\n\n30) wil: T G1 B1 Wil\n\n31) jeep: Trade G1 B1 Jeep\n\n32) wil: T B1 Y1 Wil\n\n33) jeep: Discover Y2 Bigblue G2 Medgreen\n\n34) wil: B Y3 G2\n\n35) jeep: Build Y3 Medgreen\n\n36) wil: S Y2 G2\nM Y1 G3 Medgreen\nM Y1 Wil Medgreen\nC Medgreen Y\n\n37) jeep: Build G1 Jeep\n\n38) wil: B Y1 G2\n\tjeep: Heh, I saw that and then made the play anyway. I was so far behind already that I didn&#39;t know what to do. :/\n\n39) jeep: Build B1 Jeep\n\n40) wil: B R1 Wil\n\n41) jeep: Build R2 Jeep\n\n42) wil: B R2 Wil\n\n43) jeep: Build R2 Jeep\n\tjeep: Yep, I see little in the way of getting out of this mess.\n\n44) wil: M R1 Wil G2\n\n45) jeep: Trade R2 Y2 Jeep\n\n46) wil: B R2 G2\n\n47) jeep: Discover G1 Jeep B3 Changer\n\n48) wil: M R2 G2 Changer\n\n49) jeep: Sacrifice G1 Changer\nBuild G1 Jeep\n\n50) wil: S G3 Wil\nB R3 Changer\nB R3 G2\nB R3 Wil\n\n\tjeep: GG, There is no getting out of this even for a few moves. I need to take care of some family issues, but will be back to accept your standing challenge again in a few days. I&#39;ll get the rust off sooner or later. ;)\n\twil: Take care of family!! Yay.  And thanx for the game I look forward to the next\n\nHomeworlds Online (SDG# 28033)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.27, Ended: 2015.9.5\nParticipants: crothlisberger (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) crothlisberger: Homeworld B2 Y1 G3\n\n3) wil: B G1 Wil\n\n4) crothlisberger: Build G1 Crothlisberger\n\n5) wil: T G1 Y1 Wil\n\n6) crothlisberger: Build G1 Crothlisberger\n\n7) wil: B Y1 Wil\n\twil: Oops this can spell trouble if I can monopolize an economy..\n\n8) crothlisberger: Trade G3 Y3 Crothlisberger\n\n9) wil: D Y1 Wil G1 G1\n\twil: That is a solution!\n\n10) crothlisberger: Build Y2 Crothlisberger\n\n11) wil: B Y2 Wil\n\n12) crothlisberger: Sacrifice Y3 Crothlisberger\nDiscover Y2 Crothlisberger B3 Hoth\nMove Y2 Hoth G1\nMove Y2 G1 Wil\nCatastrophe Wil Y\n\n13) wil: B Y1 G1\n\twil: You are a crazy man!!   What are you gonna do without a big ship?  I&#39;ll wait a bit for you to rethink that or tell me to go ahead..\n\tcrothlisberger: Ha I debated whether or not it was worth it, but wasn&#39;t really sure, figured it was risky.\n\n14) crothlisberger: Build G2 Crothlisberger\n\tcrothlisberger: eh I already did it, let&#39;s just play it out this time.\n\n15) wil: M Y1 G1 Wil\n\n16) crothlisberger: Trade G1 R1 Crothlisberger\n\n17) wil: B Y2 Wil\n\tcrothlisberger: Just realized something unfortunate. \n\tcrothlisberger: Just realized something unfortunate. \n\tcrothlisberger: Just realized something unfortunate. \n\tcrothlisberger: Just realized something unfortunate. \n\n18) crothlisberger: Trade G2 Y2 Crothlisberger\n\n19) wil: T Y1 R1 Wil\n\n20) crothlisberger: Build G1 Crothlisberger\n\n21) wil: B G2 Wil\n\n22) crothlisberger: Build R1 Crothlisberger\n\n23) wil: B Y1 G1\n\n24) crothlisberger: Move G1 Crothlisberger Wil\n\n25) wil: T G2 R2 Wil\n\n26) crothlisberger: Build G2 Wil\n\n27) wil: S G3 Wil\nB Y2 Wil\nB Y3 G1\nB Y3 Wil\n\n28) crothlisberger: Move Y2 Crothlisberger Wil\nCatastrophe Wil Y\n\n29) wil: A G2 Wil\n\n30) crothlisberger: Build G2 Wil\n\n31) wil: A G2 Wil\n\twil: Crazy game...\n\n32) crothlisberger: Build G2 Wil\n\n33) wil: M Y3 G1 Wil\nC Wil G\n\n34) crothlisberger: Build G1 Crothlisberger\n\n35) wil: M Y3 Wil Crothlisberger\n\n36) crothlisberger: Build G2 Crothlisberger\n\n37) wil: S R2 Wil\nA R1 Crothlisberger\nA R1 Crothlisberger\n\n38) crothlisberger: Move G2 Crothlisberger Wil\n\n39) wil: A G1 Crothlisberger\n\tcrothlisberger: Oh dang I didn&#39;t realize you could do that without having a red ship in the system. \n\tcrothlisberger: Oh dang I didn&#39;t realize you could do that without having a red ship in the system. \n\n40) crothlisberger: Trade G2 R2 Wil\n\tcrothlisberger: I&#39;m out of options \n\n41) wil: A G1 Crothlisberger\n\twil: A sacrifice is intragalactic...if you have the other requirements any ability is deployed system wide\n\tcrothlisberger: But when you sacrifice a green you can&#39;t build in a system unless you have green there. \n\n\twil: Exactly.it just imoparts the ability to every star system..  As if you had a green there..you can always onkybuild where you have the color..\n\twil: I counted the steps and just stayed one ahead..good game\n\tcrothlisberger: Like you can sacrifice a green,  and then build a yellow in a system you have yellow but not green? \n\tcrothlisberger: Yeah good game,  better than the first ha \n\twil: Yes in order for the build power of the green anywhere ...you must have that color to build from...and why/how blue is important...\n\nHomeworlds Online (SDG# 28031)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.27, Ended: 2016.4.21\nParticipants: crothlisberger (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G2 B3 Y3\n\n2) crothlisberger: Homeworld B1 Y2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) crothlisberger: Build G1 Crothlisberger\n\n5) sompm: Trade Y1 B1 Sompm\n\n6) crothlisberger: Discover G1 Crothlisberger B3 Hoth\n\n7) sompm: Discover B1 Sompm Y1 Mirrodin\n\n8) crothlisberger: Build G1 Hoth\n\n9) sompm: Trade B1 G1 Mirrodin\n\n10) crothlisberger: Trade G1 Y1 Hoth\n\n11) sompm: Discover G1 Mirrodin G3 Galifrey\n\n12) crothlisberger: Build Y1 Hoth\n\n13) sompm: Build Y1 Sompm\n\n14) crothlisberger: Build Y2 Hoth\n\n15) sompm: Build G1 Galifrey\n\n16) crothlisberger: Move Y1 Hoth Crothlisberger\n\n17) sompm: Sacrifice Y1 Sompm\nMove G1 Galifrey Crothlisberger\n\n18) crothlisberger: Trade G3 R3 Crothlisberger\n\n19) sompm: Discover G1 Crothlisberger Y3 Vulcan\n\n20) crothlisberger: Trade R3 G3 Crothlisberger\n\n21) sompm: Build G2 Vulcan\n\n22) crothlisberger: Build Y1 Hoth\n\n23) sompm: Discover G2 Vulcan B1 Fodra\n\n24) crothlisberger: Move Y1 Hoth Fodra\n\n25) sompm: Build Y2 Sompm\n\tsompm: Are you dropping SDG or are you doing what I did and forgetting about it because there are no persistent reminders after your last &quot;your turn&quot; message arrives? I think you might get a &quot;time is almost up&quot; message right before the end, but yeah, it&#39;s possible to fall off entirely.\n\tcrothlisberger: Oh wow sorry,  yeah just been busy and never got any email or anything. \n\n26) crothlisberger: Build Y3 Hoth\n\n27) sompm: Trade Y3 R3 Sompm\n\tsompm: I know how that goes. You get busy, and Homeworlds is also not the easiest game in terms of turn-time.\n\tsompm: I ended up attaching a second email to my phone so I would be reminded. I&#39;m hoping if I keep my number of running games down I won&#39;t get overloaded and go offline again. We&#39;ll see how that goes.\n\n28) crothlisberger: Trade Y2 R2 Hoth\n\tcrothlisberger: I should probably do that \n\n29) sompm: Build G2 Vulcan\n\n30) crothlisberger: Build G3 Hoth\n\n31) sompm: Move G1 Vulcan Crothlisberger\n\n32) crothlisberger: Trade G3 R3 Crothlisberger\n\n33) sompm: Build G3 Fodra\n\n\tsompm: Poke.\n\nHomeworlds Online (SDG# 28035)\nVariants: &quot;Unrated&quot;\nStarted: 2015.8.27, Ended: 2015.9.14\nParticipants: sompm (S), wil (N)\nWinner: sompm\n\n1) wil: H R3 Y1 G3 *\n\n2) sompm: Homeworld B3 G1 Y3\n\n3) wil: B G1 Wil\n\twil: By also picking goldilocks... We have a short universe is that your intent?  You may back up and change\n\tsompm: That was intentional. If there is a known disadvantage to matched planets for a given player, then I&#39;ll switch back, but I do want to see how a short universe pans out.\n\twil: K, typically it is just a shorter game..\n\n4) sompm: Build Y1 Sompm\n\n5) wil: D G1 Wil B2 B2\n\n6) sompm: Move Y1 Sompm B2\n\n7) wil: T G1 R1 B2\n\n8) sompm: Discover Y1 B2 Y1 Y1\n\n9) wil: B G1 Wil\n\n10) sompm: Build Y2 Sompm\n\n11) wil: B G1 Wil\n\n12) sompm: Trade Y2 G2 Sompm\n\n13) wil: M G1 Wil B2\n\n14) sompm: Discover G2 Sompm Y2 Y2\n\n15) wil: B G2 B2\n\n16) sompm: Build Y2 Sompm\n\n17) wil: T G2 Y2 B2\n\n18) sompm: Trade Y2 R2 Sompm\n\n19) wil: B G2 B2\n\n20) sompm: Build G2 Y2\n\n21) wil: B G3 B2\n\n22) sompm: Sacrifice Y3 Sompm\nMove G2 Y2 Wil\nMove G2 Y2 Wil\nPass\nCatastrophe Wil G\n\n\tsompm: Good game. Not kidding about matched Homeworlds being fast - I think that was the shortest game I&#39;ve ever played.\n\twil: Yez..n I fell asleep at the wheel\n\tsompm: That&#39;s sometimes literal. I once took a game of chess from slightly in my advantage to lost in six moves by playing late at night.\n\nHomeworlds Online (SDG# 28032)\nVariants: &quot;Hard time&quot;\nStarted: 2015.8.27, Ended: 2015.9.9\nParticipants: sompm (S), SilentTitan (N)\nWinner: sompm\n\n1) SilentTitan: Homeworld B1 R3 G3\n\n2) sompm: Homeworld G2 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) sompm: Build B1 Sompm\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) sompm: Discover B1 Sompm G3 Pandora\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) sompm: Build B1 Pandora\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) sompm: Build B2 Sompm\n\n\nHomeworlds Online (SDG# 28045)\nStarted: 2015.8.29, Ended: 2015.9.7\nParticipants: crothlisberger (S), DOA (N)\nWinner: crothlisberger\n\n1) DOA: Homeworld G3 Y1 B3\n\n2) crothlisberger: Homeworld B1 Y2 G3\n\tDOA: Hello. Good luck and have fun!\n\n3) DOA: Build B1 Doa\n\n4) crothlisberger: Build G1 Crothlisberger\n\n5) DOA: Discover B1 Doa G2 Lxsx\n\n6) crothlisberger: Discover G1 Crothlisberger B3 Hoth\n\n7) DOA: Build B1 Doa\n\n8) crothlisberger: Build G1 Crothlisberger\n\n9) DOA: Build B2 Lxsx\n\n10) crothlisberger: Build G1 Crothlisberger\n\n11) DOA: Trade B2 Y2 Lxsx\n\n12) crothlisberger: Build G2 Hoth\n\n13) DOA: Trade B3 G3 Doa\n\n14) crothlisberger: Trade G1 R1 Crothlisberger\n\n15) DOA: Build B2 Lxsx\n\n16) crothlisberger: Trade G2 Y2 Hoth\n\n17) DOA: Discover B1 Lxsx Y3 Mxwx\n\n18) crothlisberger: Build G1 Hoth\n\n19) DOA: Sacrifice G3 Doa\nBuild B2 Mxwx\nBuild B2 Lxsx\nBuild B3 Doa\n\n20) crothlisberger: Move G1 Hoth Lxsx\n\n21) DOA: Build B3 Doa\n\n22) crothlisberger: Sacrifice G3 Crothlisberger\nBuild G2 Lxsx\nBuild G2 Hoth\nBuild G3 Crothlisberger\n\n23) DOA: Sacrifice Y2 Lxsx\nDiscover B2 Lxsx G3 Gwar\nMove B2 Lxsx Gwar\n\n24) crothlisberger: Trade G2 Y2 Hoth\n\n\nHomeworlds Online (SDG# 28063)\nVariants: &quot;Hard time&quot;\nStarted: 2015.8.30, Ended: 2015.9.14\nParticipants: ajo (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) ajo: Homeworld R2 B3 G3\n\n3) endo: Build G1 Endo\n\n4) ajo: Build G1 Ajo\n\n5) endo: Trade G1 B1 Endo\n\n6) ajo: Build G1 Ajo\n\n7) endo: Build B1 Endo\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) endo: Discover B1 Endo G2 Image\n\n10) ajo: Discover G1 Ajo Y1 Alpha\n\n11) endo: Build B2 Endo\n\n12) ajo: Build G1 Ajo\n\n13) endo: Discover B1 Endo B2 Quotient\n\n14) ajo: Build G1 Alpha\n\n15) endo: Sacrifice G3 Endo\nBuild B2 Image\nBuild B3 Endo\nBuild B3 Quotient\n\n16) ajo: Discover G1 Ajo Y1 Delos\n\n17) endo: Trade B3 G3 Endo\n\n18) ajo: Discover G1 Alpha B3 Lebling\n\n19) endo: Trade B3 G3 Quotient\n\n20) ajo: Build G2 Lebling\n\n21) endo: Sacrifice G3 Quotient\nBuild G2 Endo\nBuild G3 Endo\nBuild B3 Quotient\n\n22) ajo: Build Y2 Ajo\n\n23) endo: Trade G2 R2 Endo\n\n24) ajo: Trade G2 Y2 Lebling\n\n25) endo: Trade B3 Y3 Quotient\n\n26) ajo: Build Y2 Ajo\n\n27) endo: Sacrifice G3 Endo\nBuild R1 Endo\nBuild B3 Quotient\nBuild Y3 Quotient\n\n28) ajo: Build G2 Ajo\n\n29) endo: Trade B3 G3 Quotient\n\tajo: I&#39;m definitely going to lose...\n\n30) ajo: Discover G1 Alpha B3 Kotok\n\tendo: probably... I&#39;ve got quite a few larges\n\n31) endo: Move Y3 Quotient Kotok\n\n32) ajo: Sacrifice G3 Ajo\nBuild G2 Delos\nBuild G3 Ajo\nBuild Y1 Lebling\n\n33) endo: Sacrifice B2 Endo\nTrade B1 R1 Image\nTrade B1 R1 Quotient\n\n34) ajo: Trade Y2 R2 Lebling\n\n35) endo: Sacrifice G3 Quotient\nBuild G3 Endo\nBuild R3 Image\nBuild R3 Quotient\n\n36) ajo: Sacrifice G1 Kotok\nBuild R3 Lebling\n\n37) endo: Sacrifice Y3 Kotok\nDiscover R3 Image Y3 Sub\nMove R1 Image Lebling\nMove R1 Quotient Lebling\nCatastrophe Lebling R\n\n38) ajo: Trade Y2 B2 Ajo\n\n39) endo: Move R3 Quotient Delos\n\n40) ajo: Sacrifice G2 Delos\nBuild Y2 Lebling\nBuild Y2 Lebling\n\n41) endo: Attack G1S Delos\n\n42) ajo: Discover Y1 Lebling R2 Kotok\n\n43) endo: Sacrifice G3 Endo\nBuild G1 Endo\nBuild G2 Endo\nBuild G3 Delos\n\n44) ajo: Sacrifice Y2 Lebling\nMove G1 Lebling Delos\nMove G2 Ajo Delos\nCatastrophe Delos Green\n\n45) endo: Sacrifice G3 Endo\nBuild R1 Delos\nBuild R1 Delos\nBuild R3 Sub\n\n46) ajo: Move Y1 Kotok Endo\n\n47) endo: Sacrifice G2 Endo\nBuild Y2 Quotient\nBuild R2 Sub\n\n48) ajo: Build G1 Ajo\n\n49) endo: Sacrifice Y3 Quotient\nMove R3 Delos Ajo\nMove R3 Sub Delos\nMove R3 Delos Ajo\n\n50) ajo: Sacrifice G1 Ajo\nBuild Y3 Endo\n\n51) endo: Sacrifice R3 Ajo\nAttack G3 Ajo\nAttack B2 Ajo\nAttack Y2 Ajo\n\n52) ajo: Pass\n\n53) endo: Attack Y1 Ajo\n\tajo: Good game!\n\tendo: Thanks for the game. I like how the stashes kept swinging between the different colors throughout.\n\n\nHomeworlds Online (SDG# 28064)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2015.9.3, Ended: 2015.9.7\nParticipants: wil (S), DOA (N)\nWinner: wil\n\n1) DOA: Homeworld B3 Y1 G3\n\n2) wil: H B3 G2 Y3\n\tDOA: Hello again :) Have fun!\n\twil: Let&#39;s!!\n\n3) DOA: Build G1 Doa\n\n4) wil: B Y1 Wil\n\n5) DOA: Discover G1 Doa B2 Clue\n\n6) wil: B Y1 Wil\n\n7) DOA: Build G1 Clue\n\n8) wil: D Y1 Wil B1 B1\n\n9) DOA: Build G1 Clue\n\n10) wil: B Y2 Wil\n\n11) DOA: Build G2 Doa\n\n12) wil: T Y2 G2 Wil\n\n13) DOA: Trade G2 Y2 Doa\n\n14) wil: M G2 Wil B1\n\n15) DOA: Discover Y2 Doa G2 Badplan\n\n16) wil: D Y1 Wil B1 Be1\n\tDOA: Haha I&#39;m out of my element this time around. I should not have neglected that yellow! That was a clever reason to take fortress.\n\n17) DOA: Trade G1 R1 Clue\n\twil: Cornering any economy has advantages...\n\twil: But you&#39;ve got in...I was not successful..\n\twil: You stopped OPEC from controlling fissil fuels and I stopped Halibutron from and endless cycle of no bid contracts...\n\n18) wil: B Y2 B1\n\tDOA: Haha!\n\n\nHomeworlds Online (SDG# 28080)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.4, Ended: 2015.9.7\nParticipants: DOA (S), Aghmarck (N)\nWinner: Aghmarck\n\n1) Aghmarck: Homeworld Y1 B2 G3\n\n2) DOA: Homeworld G3 Y1 B3\n\n3) Aghmarck: Build G1 Aghmarck\n\n\nHomeworlds Online (SDG# 28042)\nVariants: &quot;Unrated&quot;\nStarted: 2015.9.6, Ended: 2015.9.10\nParticipants: wil (S), panglott (N)\nWinner: wil\n\n1) panglott: Homeworld G3 B1 Y3\n\n2) wil: H B3 Y2 G3\n\n3) panglott: Trade Y3 G3 Panglott\n\n4) wil: B G1 Wil\n\twil: Why didn&#39;t you build a yellow one?\n\twil: You&#39;ll now need to trade back for a yellow to move...I&#39;ll wait a bit...un case you want to take back that move.  \n\twil: You&#39;ll now need to trade back for a yellow to move...I&#39;ll wait a bit...un case you want to take back that move.  \n\tpanglott: Thanks, but no worries ;) I might have to learn things the hard way :)\n\twil: That is the way i see it too....  I lost a few dozen games learning what various attacks look like...then how to use them...then how to stop them...\n\n5) panglott: Build G1 Panglott\n\n6) wil: T G1 B1 Wil\n\n7) panglott: Trade G1 Y1 Panglott\n\n8) wil: B B1 Wil\n\n9) panglott: Build Y1 Panglott\n\twil: Second contemplation if I get a color you should make sure you have the same color \n\n10) wil: D B1 Wil G1 G1\n\n11) panglott: Discover Y1 Panglott G2 Helium\n\n12) wil: S G3 Wil\nB B2 G1\nB B2 G1\nB B2 Wil\n\n13) panglott: Build G1 Panglott\n\n14) wil: T B2 G2 Wil\n\n15) panglott: Trade G1 R1 Panglott\n\n16) wil: T B2 Y2 G1\n\n17) panglott: Build R1 Panglott\n\n18) wil: B B2 G1\n\n19) panglott: Move R1 Panglott Helium\n\n20) wil: T B2 R2 G1\n\n21) panglott: Build G1 Panglott\n\n22) wil: M B2 G1 Helium\n\n23) panglott: Move G3 Panglott Helium\n\n24) wil: S Y2 G1\nM B2 Helium Panglott\nD B1 G1 G2 Geetoo\n\n25) panglott: Build R1 Panglott\n\twil: I&#39;ve made some silly mistakes for ya. But I think I am still safe.\n\n26) wil: S R2 G1\nA R1 Panglott\nA R1 Panglott\n\n27) panglott: Build R2 Helium\n\n28) wil: A Y1 Panglott\n\n29) panglott: Move R1 Helium Panglott\n\n30) wil: A G1 Panglott\n\n31) panglott: Sacrifice R2 Helium\nAttack R1 Panglott\nAttack R1 Panglott\n\twil: This is the scary part about counting as nd verifying that I thought I could stay one step ahead...\n\n32) wil: T B2 R2 Panglott\nC Panglott R\n\tpanglott: Whew! ;)\n\n\twil: Good try...and I forgot this didn&#39;t automatically catastrophe!  You&#39;ll take a few beatings along the way but eventually be rewarded with a great game...  Challenge me anytime...ask any questions\n\tpanglott: Good game, thanks! ;)\n\nHomeworlds Online (SDG# 28072)\nStarted: 2015.9.10, Ended: 2015.10.30\nParticipants: MattTheSpratt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\n2) MattTheSpratt: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\tMattTheSpratt: Same to you!\n\n3) ts52: Build G1 Ts52\n\n4) MattTheSpratt: Build G1 Mattthespratt\n\n5) ts52: Trade G1 B1 Ts52\n\n6) MattTheSpratt: Discover G1 Mattthespratt R3 Corneria\n\n7) ts52: Build B1 Ts52\n\n8) MattTheSpratt: Build G1 Mattthespratt\n\n9) ts52: Discover B1 Ts52 Y1 Zoe\n\n10) MattTheSpratt: Move G1 Mattthespratt Corneria\n\n11) ts52: Build B2 Ts52\n\n12) MattTheSpratt: Trade G3 B3 Mattthespratt\n\n13) ts52: Trade B2 G2 Ts52\n\n\nHomeworlds Online (SDG# 28131)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.11, Ended: 2015.9.18\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld B3 Y1 G3\n\twil: good luck...  I look forward to when there are more players who work there way up to the top\n\n2) wil: H Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\twil: Until then I&#39;ll gladly battle you to improve my skill\n\n4) wil: B G1 Wil\n\tdlwillson: I always kinda hope someone will write an android app of this.\r\n\r\n:-)\r\n\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: We all do... Where you could slide with your fingers and see resoonse s real time...  Got one contendah...currently not an app..but live java script in alpa.. When it goes beta and I am allowed I&#39;ll get you in testing...\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Sky\n\n10) wil: D Y1 Wil G3 G3\n\tdlwillson: Cool!\n\n11) dlwillson: B Y3 Sky\n\n12) wil: Build Y3 G3\n\n13) dlwillson: D Y3 Sky B3 Sea\n\n14) wil: T Y2 R2 Wil\n\n15) dlwillson: T Y2 R2 Dlwillson\n\n16) wil: D Y3 G3 B2 B2\n\n17) dlwillson: Build Y2 Sky\n\n18) wil: D R2 Wil Y3 Y3\n\n19) dlwillson: Move Y2 Sky Sea\n\n20) wil: B Y2 G3\n\n21) dlwillson: Trade Y2 G2 Sea\n\n22) wil: M Y2 G3 B2\n\n23) dlwillson: Build Y2 Sea\n\n24) wil: B G1 Wil\n\n25) dlwillson: Build G1 Dlwillson\n\n26) wil: M G1 Wil Y3\n\n27) dlwillson: Build R1 Dlwillson\n\n28) wil: B R1 Y3\n\n29) dlwillson: Build G1 Sea\n\n30) wil: M R1 Y3 Wil\n\n31) dlwillson: Build G2 Sea\n\twil: Done forgot to fix the bluebird\n\n32) wil: S Y2 B2\nM G1 Y3 B2\nM G1 B2 Sea\nC Sea G\n\n33) dlwillson: Trade Y2 G2 Sea\n\n34) wil: B G1 Wil\n\n35) dlwillson: Build G1 Sea\n\n36) wil: M G1 Wil Y3\n\n37) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sea\nBuild G2 Sea\nBuild G3 Dlwillson\n\n38) wil: B R1 Wil\n\n39) dlwillson: Trade G2 R2 Sea\n\n40) wil: B Y2 G3\n\n41) dlwillson: Sacrifice Y2 Sea\nMove G1 Sea Wil\nDiscover R2 Dlwillson B2 Life\n\n42) wil: A G1 Wil\n\n43) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Sea\nBuild R3 Life\nBuild R3 Dlwillson\n\n44) wil: S G3 Wil\nB G2 Y3\nB G3 Y3\nB G3 Wil\n\twil: I don&#39;t like where this is going\n\n45) dlwillson: Trade R2 Y2 Life\n\n46) wil: M G1 Y3 B2\n\n47) dlwillson: M R3 Life G3\n\n48) wil: M R1 Wil Sea\n\n49) dlwillson: Sacrifice R2 Sea\nAttack Y2 G3\nAttack Y1 G3\n\n50) wil: B R2 Wil\n\tdlwillson: I wish I had hit those greens a few turns ago. :-/\n\n51) dlwillson: M G1 Dlwillson Life\n\twil: Yeah that wasn&#39;t so smart\n\n52) wil: B R2 Y3\n\twil: &Agrave;nd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: &Agrave;nd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: &Agrave;nd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: &Agrave;nd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: The not so smart...I was talking if my move not yours...but I did stick my neck out there...\n\n53) dlwillson: A R1 Sea\n\n54) wil: M R2 Y3 B2\n\n55) dlwillson: Sacrifice Y2 G3\nMove R3 G3 Wil\nMove G2 Sea Wil\n\n56) wil: S Y3 B2\nM R2 Y3 B2\nM R2 B2 Dlwillson\nM R2 B2 Dlwillson\nC Dlwillson R\n\n\tdlwillson: I believe that&#39;s checkmate, but you&#39;ve surprised me before. Let&#39;s see what you think of.\n\twil: I believe you were blinded like I often am...I get so focused on my gamut that I can&#39;t see anything else...\n\tdlwillson: Yup. I knew I was putting home in danger when I pulled the green out, but I didn&#39;t make the connection when you split your reds. I would have, on a table. Well done.\n\nHomeworlds Online (SDG# 28183)\nStarted: 2015.9.18, Ended: 2015.10.6\nParticipants: torianironfist (S), RogueJedi234 (N)\nWinner: torianironfist\n\n1) RogueJedi234: Homeworld B1 Y2 G3\n\n2) torianironfist: Homeworld G3 B1 Y3\n\ttorianironfist: homeworld g3 b1 y3 \n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) torianironfist: Build Y1 Torianironfist\n\n5) RogueJedi234: Trade G1 R1 Roguejedi234\n\n6) torianironfist: Trade Y1 R1 Torianironfist\n\n7) RogueJedi234: Build G1 Roguejedi234\n\n8) torianironfist: Build Y1 Torianironfist\n\n9) RogueJedi234: Discover G1 Roguejedi234 B3 Yavin4\n\n10) torianironfist: Trade Y1 G1 Torianironfist\n\n11) RogueJedi234: Build G1 Yavin4\n\n12) torianironfist: Build G2 Torianironfist\n\n13) RogueJedi234: Build G2 Yavin4\n\n14) torianironfist: Discover G1 Torianironfist B2 Dathomir\n\n15) RogueJedi234: Trade G2 R2 Yavin4\n\n16) torianironfist: Build G2 Dathomir\n\n17) RogueJedi234: Trade G1 Y1 Yavin4\n\n18) torianironfist: Move R1 Torianironfist Dathomir\n\n19) RogueJedi234: Build Y1 Yavin4\n\n20) torianironfist: Trade G2 Y2 Dathomir\n\n21) RogueJedi234: Discover Y1 Yavin4 G2 Ossus\n\n22) torianironfist: Trade G2 R2 Torianironfist\n\n23) RogueJedi234: Build Y1 Ossus\n\n24) torianironfist: Discover G1 Dathomir Y3 Sonamazekot\n\n25) RogueJedi234: Build Y2 Yavin4\n\n26) torianironfist: Sacrifice G1 Sonamazekot\nBuild Y3 Dathomir\n\n27) RogueJedi234: Sacrifice Y2 Yavin4\nMove Y1 Ossus Torianironfist\nMove Y1 Ossus Torianironfist\n\n28) torianironfist: Attack Y1 Torianironfist\n\n29) RogueJedi234: Build Y2 Torianironfist\nCatastrophe Torianironfist Yellow\n\n30) torianironfist: Move Y3 Dathomir Torianironfist\n\n31) RogueJedi234: Discover G1 Yavin4 B2 Moncalamari\n\n32) torianironfist: Build Y1 Torianironfist\n\n33) RogueJedi234: Build G1 Moncalamari\n\n34) torianironfist: Move Y1 Torianironfist Dathomir\n\n35) RogueJedi234: Build G1 Moncalamari\n\n36) torianironfist: Trade Y2 G2 Dathomir\n\ttorianironfist: trade y2 g2 dathomir \n\n37) RogueJedi234: Move R2 Yavin4 Moncalamari\n\n38) torianironfist: Build G2 Dathomir\n\n39) RogueJedi234: Sacrifice G1 Moncalamari\nBuild Y1 Yavin4\n\n40) torianironfist: Build Y2 Dathomir\n\n41) RogueJedi234: Move Y1 Yavin4 Dathomir\n\n42) torianironfist: Discover Y2 Dathomir G3 Kashyyyk\n\n43) RogueJedi234: Move Y1 Yavin4 Moncalamari\n\n44) torianironfist: Attack Y1 Dathomir\n\n45) RogueJedi234: Build Y2 Moncalamari\n\n46) torianironfist: Build Y3 Kashyyyk\n\n47) RogueJedi234: Sacrifice Y2 Moncalamari\nMove G1 Moncalamari Torianironfist\nMove G1 Moncalamari Torianironfist\n\n48) torianironfist: Sacrifice R2 Torianironfist\nAttack G1 Torianironfist\nAttack G1 Torianironfist\n\n49) RogueJedi234: Trade R2 G2 Moncalamari\n\n50) torianironfist: Trade G1 R1 Torianironfist\n\n51) RogueJedi234: Build Y2 Moncalamari\n\n52) torianironfist: Build Y3 Torianironfist\n\n53) RogueJedi234: Sacrifice Y2 Moncalamari\nMove Y1 Moncalamari Torianironfist\nMove G2 Moncalamari Torianironfist\n\n54) torianironfist: Attack G2 Torianironfist\n\n55) RogueJedi234: Build Y2 Torianironfist\nCatastrophe Torianironfist Yellow\n\n56) torianironfist: Discover Y1 Dathomir B3 Alderaan\n\n57) RogueJedi234: Build R2 Roguejedi234\n\n58) torianironfist: Move G2 Dathomir Alderaan\n\n59) RogueJedi234: Move R2 Roguejedi234 Alderaan\n\n60) torianironfist: Sacrifice R1 Torianironfist\nAttack R2 Alderaan\n\n\nHomeworlds Online (SDG# 28182)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.18, Ended: 2015.10.9\nParticipants: SilentTitan (S), goulo (N)\nWinner: SilentTitan\n\n1) goulo: Homeworld R3 B2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tSilentTitan: Thx\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) goulo: Trade G3 Y3 Goulo\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) goulo: Discover Y3 Goulo G1 Verdeto\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) goulo: Build G1 Goulo\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) goulo: Build G2 Goulo\n\n12) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n13) goulo: Trade G1 Y1 Goulo\n\n14) SilentTitan: Move Y1 Sol Verdeto\n\n15) goulo: Move Y3 Verdeto Goulo\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) goulo: Trade Y1 R1 Goulo\n\n18) SilentTitan: Discover Y2 Silenttitan G3 Sol\n\n19) goulo: Discover G2 Goulo Y1 Flaveto\n\n20) SilentTitan: Build Y2 Verdeto\n\n21) goulo: Discover G2 Flaveto Y3 Flavego\n\n22) SilentTitan: Build Y1 Silenttitan\n\n23) goulo: Build G1 Flavego\n\n24) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n25) goulo: Build G2 Flavego\n\n26) SilentTitan: Move G3 Silenttitan Flavego\nCatastrophe Flavego Green\n\n\tgoulo: Congrats - Thanks for the game!\n\nHomeworlds Online (SDG# 28197)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.20, Ended: 2015.9.21\nParticipants: Aristos (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) Aristos: Homeworld Y3 G2 B3\n\tendo: Good luck, have fun!\n\n3) endo: Build G1 Endo\n\tAristos: The Aristos Empire, spurred by a message from the stars, builds its first starship. As the scientists say: &quot;We have no idea what &#39;G-o-o-d- -l-u-c-k&#39; means, but it is clearly a non-natural signal. We must investigate.&quot; \n\n4) Aristos: Build B1 Aristos\n\n5) endo: Discover G1 Endo Y2 Stationary\n\n6) Aristos: Discover B1 Aristos B1 Plum\n\n7) endo: Build G1 Endo\n\n8) Aristos: Build B2 Aristos\n\n9) endo: Build G1 Stationary\n\n10) Aristos: Trade B2 G2 Aristos\n\n11) endo: Discover G1 Stationary Y1 Club\n\n12) Aristos: Trade B1 R1 Plum\n\n13) endo: Sacrifice G3 Endo\nBuild G2 Stationary\nBuild G3 Endo\nBuild G3 Club\n\n14) Aristos: Move G2 Aristos Plum\n\n15) endo: Build G3 Endo\n\n16) Aristos: Build B1 Aristos\n\n17) endo: Trade G1 R1 Endo\n\n18) Aristos: Build G1 Plum\n\n19) endo: Trade G3 B3 Endo\n\n\tAristos: Oh well .\n\nHomeworlds Online (SDG# 27906)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.20, Ended: 2015.9.29\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y1 G3\n\tSimon: Hi. Once again, have fun!\n\twil: Thanx...I wil\n\n2) Simon: Homeworld R2 B1 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B B1 Wil\n\n8) Simon: Build Y1 Simon\n\n9) wil: D B1 Wil B2 B2\n\n10) Simon: Build Y2 Simon\n\n11) wil: S G3 Wil\nB B2 B2\nB B2 B2\nB B3 Wil\n\n12) Simon: Discover Y2 Simon G3 G3\nCatastrophe B2 Blue\n\n13) wil: T B3 G3 Wil\n\tSimon: hmm, what have I been missing? I pondered about the g3 sac while showering, and decided that you had to get 4 of blue in a system?\n\twil: I just screwed up...pure and simple\n\twil: Odds are a non recoverable error...\n\n14) Simon: Build Y2 Simon\n\n15) wil: B B1 Wil\n\n16) Simon: Trade Y2 B2 Simon\n\n17) wil: T B1 R1 Wil\n\n18) Simon: Move B2 Simon G3\n\n19) wil: B R1 Wil\n\n20) Simon: Build Y2 G3\n\n21) wil: B R1 Wil\n\n22) Simon: Trade Y2 R2 G3\n\n23) wil: D R1 Wil B2 B2\n\n24) Simon: Build R2 G3\n\n25) wil: D R1 Wil Y2 Y2\n\n26) Simon: Build R3 G3\n\n27) wil: M R1 Y2 G3\nC G3 R\n\n28) Simon: Sacrifice G3 Simon\nBuild Y2 Simon\nBuild Y2 G3\nBuild Y3 G3\n\n29) wil: B R1 Wil\n\n30) Simon: Discover Y1 Simon Y3 Y3\n\n31) wil: B R2 Wil\n\n32) Simon: Trade Y3 R3 G3\n\n33) wil: D R1 Wil G2 G2\n\n34) Simon: Build Y3 G3\n\n35) wil: D R1 Wil G2 Gtoo\n\twil: Yup, you&#39;ve got that queen factory goin...\n\twil: It really should just knock over my king\n\twil: It really should just knock over my king\n\n36) Simon: Discover Y3 G3 G2 Gtree\n\n37) wil: B R2 G2\n\tSimon: Hmm yeah, I can produce a large every other turn. But maybe the game will become complex enough for me to err still. :-) It&#39;s your call.\n\n38) Simon: Build R3 G3\n\n39) wil: B R3 Wil\n\n40) Simon: Build Y3 Gtree\n\n41) wil: M B1 Wil G2\n\n42) Simon: Build B1 G3\n\twil: Waiting on those mistakes you promised\n\twil: Waiting on those mistakes you promised\n\n43) wil: T R3 B3 Wil\n\n44) Simon: Move B1 G3 Gtree\n\n45) wil: M B3 Wil G2\n\n46) Simon: Build B2 Gtree\n\n47) wil: B R3 Wil\n\twil: I don&#39;t need to help with your doomsday machine\n\n48) Simon: Build B3 Gtree\n\n49) wil: T R3 G3 Wil\n\n50) Simon: Sacrifice Y3 Gtree\nMove B1 Gtree Wil\nMove B2 Gtree Wil\nMove B3 Gtree Wil\nCatastrophe Wil B\n\n51) wil: T B3 Y3 G2\n\n52) Simon: Sacrifice Y3 Gtree\nMove Y1 Y3 Wil\nMove Y2 G3 Wil\nMove Y2 G3 Wil\nCatastrophe Wil Y\n\n\tSimon: Nyargh, it turned out straightforward enough to avoid mistakes &gt;_&gt;\n\twil: I got a yellow....I got a yellow!\n\nHomeworlds Online (SDG# 28224)\nVariants: &quot;No undo&quot;\nStarted: 2015.9.23, Ended: 2015.10.20\nParticipants: neilb (S), rjbs (N)\nWinner: rjbs\n\n1) rjbs: Homeworld G2 B1 R3\n\n2) neilb: Homeworld G1 B2 R3\n\trjbs: I have no idea what I&#39;m doing, Neil, but I doubt you do, either, so allons-y!\n\n3) rjbs: Build R1 Rjbs\n\n4) neilb: Build R1 Neilb\n\n5) rjbs: Trade R1 Y1 Rjbs\n\n6) neilb: Trade R1 Y1 Neilb\n\n7) rjbs: Build R1 Rjbs\n\n8) neilb: Discover Y1 Neilb B3 Frobozz\n\n9) rjbs: Move R3 Rjbs Frobozz\n\n10) neilb: Build R1 Neilb\n\n11) rjbs: Attack Y1 Frobozz\n\n12) neilb: Trade R1 Y1 Neilb\n\n13) rjbs: Build R1 Rjbs\n\n14) neilb: Build R1 Neilb\n\n15) rjbs: Trade R1 G1 Rjbs\n\n16) neilb: Discover Y1 Neilb G3 Banana\n\n17) rjbs: Move G1 Rjbs Frobozz\n\n18) neilb: Build Y2 Banana\n\n19) rjbs: Build Y2 Rjbs\n\n20) neilb: Build Y2 Banana\n\n21) rjbs: Build Y3 Frobozz\n\n22) neilb: Discover Y2 Banana R1 Trumpton\n\n23) rjbs: Trade Y3 R3 Frobozz\n\n24) neilb: Build Y3 Banana\n\n25) rjbs: Build R2 Rjbs\n\tneilb: It always feels like a minor victory if the first move I enter is actually valid!\n\n26) neilb: Build R2 Neilb\n\n27) rjbs: Move R3 Frobozz Trumpton\n\n28) neilb: Trade R1 G1 Neilb\n\n29) rjbs: Attack Y2 Trumpton\n\n30) neilb: Build R1 Neilb\n\n31) rjbs: Move R3 Trumpton Banana\n\n32) neilb: Move Y1 Banana Neilb\n\n33) rjbs: Attack Y3 Banana\n\n34) neilb: Build G2 Neilb\n\n35) rjbs: Attack Y2 Banana\n\n36) neilb: Discover R3 Neilb Y3 Pogle\n\n37) rjbs: Move R3 Frobozz Neilb\n\n38) neilb: Build Y3 Neilb\n\n39) rjbs: Attack Y3 Neilb\n\n40) neilb: Build R2 Neilb\n\n41) rjbs: Move G1 Frobozz Neilb\nCatastrophe Neilb Green\n\n42) neilb: Move R3 Pogle Trumpton\n\n43) rjbs: Trade Y1 B1 Rjbs\n\n44) neilb: Attack Y2 Trumpton\n\n45) rjbs: Trade R2 G2 Rjbs\n\n46) neilb: Move R3 Trumpton Neilb\n\tneilb: Arrgh!\n\n47) rjbs: Move G2 Rjbs Frobozz\nCatastrophe Neilb Red\n\tneilb: This log would sure be a lot longer if it recorded all the &quot;neilb tried to make a bonehead move&quot;! :-)\n\n\nHomeworlds Online (SDG# 28200)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.27, Ended: 2015.10.20\nParticipants: wil (S), sompm (N)\nWinner: wil\n\n1) sompm: Homeworld R1 Y3 G3 *\n\n2) wil: H Y2 B1 G3\n\n3) sompm: Build G1 Sompm\n\twil: I thought I was the only one crazy enough for that opening!\n\tsompm: Good luck.\r\n\r\nI&#39;m trying out a weird homeworld arrangement because I think it only rearranges the inevitable first three moves rather than restricting them, and it might help the endgame. We&#39;ll find out.\n\tsompm: You might not be. :)\n\n4) wil: B G1 Wil\n\twil: I&#39;ve played it...just to break convention... Took me a few times to win with it..first time I get this side!\n\n5) sompm: Discover G1 Sompm B2 Octothorpe\n\n6) wil: T G1 B1 Wil\n\n7) sompm: Build G1 Octothorpe\n\n8) wil: B B1 Wil\n\n9) sompm: Trade G1 Y1 Octothorpe\n\n10) wil: D B1 Wil Y3 Y3\n\n11) sompm: Build G1 Octothorpe\n\n12) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n13) sompm: Discover Y1 Octothorpe G3 G3\n\twil: Better than a factory.,.tis a queen mill...\n\tsompm: I come to understand why lacking easy access to blue is a disadvantage.\n\n14) wil: D B2 Y3 G2 G2\n\n15) sompm: Build Y1 G3\n\twil: Yup...it ain&#39;t easy\n\n16) wil: B B3 G2\n\n17) sompm: Move Y1 G3 Wil\n\n18) wil: T B3 R3 Wil\n\n19) sompm: Sacrifice G1 Octothorpe\nBuild Y1 Wil\n\twil: Where is that mosquito repellent?\n\twil: He has tossed in a Molotov cocktail..\n\twil: Little itty bitty suicide ship filled with fuel..\n\n20) wil: T B3 Y3 G2\n\tsompm: Hey, I have to get rid of that dumb long-named planet somehow...\n\tsompm: I knew I played with someone who named planets after their piece (which actually does make things a lot easier, so I may pick up the practice), I just forgot who it was. I haven&#39;t yet tired of naming planets dumb jokes, but I&#39;ll keep it to other games so you don&#39;t have to type build g2 ApocryphalDeuterocanon or anything.\n\twil: Yeah...some folks don&#39;t like it...for them I think about using g3 for b1...  I think the naming if some star systems long goofy names I&#39;d to keep me from attacking!!\n\n21) sompm: Sacrifice G1 Octothorpe\nBuild Y2 Wil\nCatastrophe Wil Y\n\n22) wil: B B2 G2\n\n23) sompm: Build Y1 G3\n\twil: Lol...wrong move...I&#39;ll leave it alone...but it is over\n\tsompm: The temptation to (trade g3 b3 sompm) right now is real. But it would also result in immediately undoing it to avoid death.\n\tsompm: Your message seems to suggest that one of us can force a win... I&#39;m having trouble seeing it. What am I missing?\n\n24) wil: B B3 G2\n\twil: We are close... II lengthened it a step\n\n25) sompm: Move Y1 G3 G2\n\n26) wil: T B3 R3 G2\n\tsompm: I do see the attack - I don&#39;t think it&#39;s fast enough I can&#39;t survive it. But we&#39;ll see... I get to mosquito until then. :)\n\n27) sompm: Discover Y1 G2 B3 B3\n\n28) wil: B B3 G2\n\n\twil: Swat...\n\tsompm: Hoisted by my own hard time pitard. Apologies.\n\twil: Hate that...it was all but ovah though\n\tsompm: What was the plan, by the way?\n\twil: S y3...send in r3 n b3...  You attack one I sack r3 in my homeworld... And take over all your ships.,.\n\tsompm: Gotcha. I was keeping careful track of saccable yellows for catastrophes, but not size 3s, apparently.\n\twil: Yes you used one up in your hw...\n\nHomeworlds Online (SDG# 28265)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.29, Ended: 2015.10.21\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) wil: H B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Don&#39;t you *ever* get tired of banker?\n\n4) wil: B G1 Wil\n\twil: I&#39;ve played them all...I like it playing second for sure...\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: T Y1 R1 Dlwillson\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: D Y2 Dlwillson G1 Field\n\n12) wil: B G1 Wil\n\n13) dlwillson: Build R1 Dlwillson\n\n14) wil: T G1 R1 Wil\n\n15) dlwillson: M R1 Dlwillson Field\n\n16) wil: D Y2 Wil B3 B3\n\n17) dlwillson: Build R2 Field\n\n18) wil: B R2 Wil\n\n19) dlwillson: M R2 Field G3\n\n20) wil: D Y1 G3 B1 B1\n\n21) dlwillson: B G1 Dlwillson\n\n22) wil: T R1 B1 Wil\n\n23) dlwillson: T G1 B1 Dlwillson\n\n24) wil: B B2 Wil\n\tdlwillson: Sorry for the delay. I forgot the game!\n\n25) dlwillson: B B2 Dlwillson\n\n26) wil: D B2 Wil Y3 Y3\n\n27) dlwillson: M B1 Dlwillson Field\n\n28) wil: S G3 Wil\nB B3 Y3\nB Y1 B3\nB Y3 B1\n\n29) dlwillson: B Y3 Field\n\n30) wil: S Y3 B1\nM Y1 B1 B3\nM Y1 B3 Field\nM Y1 B3 Field\nC Field Y\n\n31) dlwillson: B G1 Dlwillson\n\n32) wil: T B3 G3 Y3\n\n33) dlwillson: B R1 Field\n\n34) wil: B G1 Y3\n\n35) dlwillson: Trade R1 Y1 Field\n\n36) wil: B G2 Y3\n\n37) dlwillson: T B2 Y2 Dlwillson\n\n38) wil: T G2 R2 Y3\n\n39) dlwillson: D Y1 Field R3 Mars\n\n40) wil: M R2 Y3 Field\n\n41) dlwillson: S G3 Dlwillson\nB R1 G3\nB R3 Dlwillson\nB R3 Field\n\n42) wil: T G1 Y1 Y3\n\twil: Well that didn&#39;t work well?\n\n43) dlwillson: S Y2 Dlwillson\nM R3 Field G3\nM R3 G3 Wil\n\n\twil: I&#39;m not worthy!\n\twil: I&#39;m not worthy!\n\tdlwillson: Thanks for the game!\n\twil: I&#39;ll be back..\n\nHomeworlds Online (SDG# 28239)\nVariants: &quot;Unrated&quot;\nStarted: 2015.9.29, Ended: 2015.10.20\nParticipants: kanzenryu (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) kanzenryu: Homeworld B1 G3 Y3\n\n3) fogus: Build G1 Fogus\n\tkanzenryu: This is my first game, so don&#39;t expect much! BTW, are you the famous Clojure guy?\n\n4) kanzenryu: Build Y1 Kanzenryu\n\tfogus: I hesitate to say famous, but yes, I do stuff with Clojure.  Don&#39;t worry about this being your first game.  We can talk through it if you&#39;d like.\n\n5) fogus: Trade G1 Y1 Fogus\n\tkanzenryu: I bought The Joy of Clojure a while back. So I&#39;m the reason you&#39;re rich now ;-)\n\tfogus: Thanks (I say from my yacht)\n\n6) kanzenryu: Trade Y1 G1 Kanzenryu\n\n7) fogus: Build G1 Fogus\n\tkanzenryu: Really quite stoked to finally be playing a game of Homeworlds\n\n8) kanzenryu: Build Y1 Kanzenryu\n\n9) fogus: Discover G1 Fogus Y3 Foo\n\n10) kanzenryu: Discover Y1 Kanzenryu G2 Bar\n\n11) fogus: Discover G1 Foo Y2 Baz\n\n12) kanzenryu: Build Y1 Bar\n\n13) fogus: Build G1 Fogus\n\n14) kanzenryu: Build Y2 Kanzenryu\n\n15) fogus: Build G2 Baz\n\tfogus: You might want to rethink that move.  I&#39;ve one move away from your home world and can move in and declare a catastrophe.  that&#39;ll leave you in bad shape.  Feel free to undo if you&#39;d like.\n\n16) kanzenryu: Trade Y2 R2 Kanzenryu\n\tkanzenryu: Okay, thanks. I had carefully checked that there would not be a catastrophe before the move, but not after the move :-(\n\tkanzenryu: Playing around with rendering the position... http://imgur.com/OmNUlyU\n\tkanzenryu: Playing around with rendering the position... http://imgur.com/OmNUlyU\n\n17) fogus: Trade G1 R1 Fogus\n\tfogus: Very cool.  What did you use to render them?\n\n18) kanzenryu: Discover Y1 Bar G3 Staging\n\tkanzenryu: Rendered with povray. I had to hunt around on the net to find the files specifying the pyramids, and then change the colouring to make them less annoyingly transparent. I still don&#39;t have the lighting right.\n\tkanzenryu: And in the actual game... Red Alert!\n\n19) fogus: Discover Y1 Fogus B3 Prod\n\tfogus: trade g1 r1 fogus\n\n20) kanzenryu: Build R1 Kanzenryu\n\n21) fogus: Discover Y1 Prod G2 Boink\n\tkanzenryu: Are you still there?\n\n22) kanzenryu: Move Y3 Kanzenryu Baz\n\n23) fogus: Discover G2 Baz Y3 Frob\n\n24) kanzenryu: Trade R2 Y2 Kanzenryu\n\n25) fogus: Build Y3 Boink\n\n26) kanzenryu: Build R1 Kanzenryu\n\n27) fogus: Move Y3 Boink Kanzenryu\n\n28) kanzenryu: Move Y3 Baz Kanzenryu\n\n29) fogus: Sacrifice R1 Fogus\nAttack Y3 Kanzenryu\n\n\tkanzenryu: Pretty much time to resign. I keep overlooking the power of the sacrifice! Thanks for the game; I really enjoyed it.\n\tfogus: It takes a few games to really get a hang of the possibilities at any moment.  I&#39;m happy to play again if you want, or to try out your MCTS player one day.  :)\n\tkanzenryu: I confess I&#39;d love another game.\n\tkanzenryu: I&#39;ve set up a challenge.\n\nHomeworlds Online (SDG# 28267)\nVariants: &quot;Hard time&quot;\nStarted: 2015.9.29, Ended: 2015.10.15\nParticipants: Aristos (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R2 B1 G3\n\tAristos: The people of the Aristos Empire look out on the vast empty reaches of space and call upon their leaders, &quot;We should see what&#39;s out there... maybe it is edible!&quot;\n\tSimon: Hehe -- enjoy the game!\n\n2) Aristos: Homeworld Y3 G2 B3\n\n3) Simon: Build G1 Simon\n\tAristos: Oh! A message from the stars spurs science research... The people of Aristos launch their first ship capable of FTL travel. &quot;Unfortunately, we are dependent on our G-class yellow sun for jump ability, which limits our empire&#39;s reach. Research in artificial jump engines on ships is proceeding. \n\n4) Aristos: Build B1 Aristos\n\n5) Simon: Trade G1 B1 Simon\n\n6) Aristos: Trade B1 G1 Aristos\n\n7) Simon: Build G1 Simon\n\n8) Aristos: Discover G1 Aristos B1 Plum\n\n9) Simon: Build B2 Simon\n\n10) Aristos: Build B2 Aristos\n\n11) Simon: Trade B2 Y2 Simon\n\n12) Aristos: Build B2 Aristos\n\n13) Simon: Discover B1 Simon G3 G3\n\n14) Aristos: Trade B2 R2 Aristos\n\n15) Simon: Build B2 G3\n\n16) Aristos: Trade B2 Y2 Aristos\n\n17) Simon: Trade B2 Y2 G3\n\tAristos: At long last, Aristoi science discovers how to build ships with built in interstellar jump capacity! The new ship is christened &quot;The Ubiquitous&quot; for its ability to travel everywhere. \n\tAristos: Signals reach Homeworld from a new star, but in the same language, indicating that at least one other star-faring people exists in the universe. Thus far, the language defies our efforts at translation. \n\n18) Aristos: Build G1 Plum\n\n19) Simon: Discover G1 Simon B3 B3\n\n20) Aristos: Build G2 Plum\n\n21) Simon: Build G2 Simon\n\n22) Aristos: Sacrifice Y2 Aristos\nDiscover G2 Plum G3 Pear\nDiscover G1 Plum Y3 Banana\n\n23) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G3\nBuild B2 G3\n\n24) Aristos: Sacrifice G2 Pear\nBuild G2 Banana\nBuild G3 Plum\n\n25) Simon: Trade B2 R2 G3\n\n26) Aristos: Sacrifice G3 Plum\nBuild G3 Plum\nBuild R1 Aristos\nBuild B2 Aristos\n\n27) Simon: Discover B2 G3 R1 R1\n\n28) Aristos: Trade B2 Y2 Aristos\n\n29) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R1 G3\nBuild R3 G3\n\n30) Aristos: Sacrifice Y2 Aristos\nMove R1 Aristos Plum\nMove R1 Plum G3\nCatastrophe G3 Red\n\n31) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 R1\nBuild B2 R1\n\tAristos: Disaster! On entering a new system, something destabilized our ship. The final readings from the ship suggest that there was an overabundance of the red energy used in our splitter beams (used for peaceful mining purposes). Perhaps it was a triple star system? We will never know now as all contact with that system was lost. \n\n32) Aristos: Trade G1 Y1 Plum\n\n33) Simon: Sacrifice G3 Simon\nBuild G1 B3\nBuild G3 Simon\nBuild B3 G3\n\n34) Aristos: Move G3 Plum G3\n\n35) Simon: Sacrifice Y2 G3\nDiscover B3 G3 R1 R1b\nMove G1 B3 R1b\n\tAristos: FIRST CONTACT! &quot;Ma&#39;am... they outnumber us. How do we know they are friendly?&quot; &quot;Have they powered up any weapons?&quot; &quot;Not that we can detect...&quot; \n\n36) Aristos: Sacrifice Y1 Plum\nMove G3 G3 R1\n\tSimon: yeah, having no reds was the price for getting the large ship\n\n37) Simon: Sacrifice G2 Simon\nBuild G2 R1b\nBuild B1 G3\n\n38) Aristos: Attack B2 R1\n\n39) Simon: Sacrifice G1 B3\nBuild B3 R1b\n\tAristos: &quot;I have good news and bad news, Captain! The bad news is we *still* haven&#39;t translated their announcement. The good news is our weapons work against their shields! Oh... even better news... yes, they are edible!&quot; \n\n40) Aristos: Build G1 R1\n\n41) Simon: Trade B3 Y3 R1b\n\tAristos: Stunning announcement... the enemy has discovered time warping technology! They are able to leap back into the past at least one full cycle! We are doomed if we cannot replicate this dark magic!\n\n42) Aristos: Attack B2 R1\n\n43) Simon: Build B3 R1b\n\n44) Aristos: Trade B2 R2 R1\n\n45) Simon: Sacrifice B2 R1\nTrade B3 R3 R1b\nTrade B1 Y1 G3\n\n46) Aristos: Trade B2 Y2 R1\n\n47) Simon: Move R3 R1b Banana\n\n48) Aristos: Move R2 R1 G3\n\tAristos: Well, we figured out the time travel trick. That alternate timeline was a bad idea!\n\n49) Simon: Attack G2 Banana\n\n50) Aristos: Sacrifice G3 R1\nBuild G3 R1\nBuild R1 G3\nBuild R3 Aristos\n\n51) Simon: Sacrifice G2 Banana\nBuild G2 Simon\nBuild R3 Banana\n\n52) Aristos: Sacrifice R2 Aristos\nAttack Y1 G3\nAttack B1 G3\n\n53) Simon: Attack G1 Banana\n\n54) Aristos: Sacrifice G3 R1\nBuild G3 R1\nBuild B1 G3\nBuild B2 G3\n\n55) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 R1b\nBuild B2 R1b\n\n56) Aristos: Move B1 G3 Simon\n\n57) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R2 Banana\nBuild B2 R1b\n\n58) Aristos: Move B1 G3 Simon\n\n59) Simon: Discover R3 Banana Y1 Y1\n\tAristos: Intrepid explorers report that they have found the homeworld of the aliens. It is a strange place with red and blue suns. Not like our friendly yellow star and its green companion. Initial photos stir xenophobia among the populace. The popular press dubs the red star &quot;krypton&quot; and warns of a race of supermen seeking to take us over. It seems unlikely that there can be peace between our species...\n\n60) Aristos: Move B2 G3 Simon\nCatastrophe Simon Blue\n\tSimon: The red sun is only for decoration!\n\n61) Simon: Build Y2 Simon\n\n62) Aristos: Move G1 R1 Simon\n\n63) Simon: Sacrifice G2 Simon\nBuild G2 Banana\nPass\n\n64) Aristos: Move R1 G3 Simon\n\n65) Simon: Attack R1 Simon\n\tAristos: We have destroyed one of their Homeworld stars! Weirdly, they have managed to stabilize their world&#39;s orbit and continue to live. You&#39;d think blowing up a star that close would be game over, but noooooo! :-)\n\n66) Aristos: Move Y2 R1 Aristos\n\n67) Simon: Move R1 Simon R1\n\n\tAristos: Well played.\n\tSimon: Thanks for a challenging game!\n\nHomeworlds Online (SDG# 28286)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.1, Ended: 2015.10.12\nParticipants: MagicJohn (S), foksieloy (N)\nWinner: MagicJohn\n\n1) foksieloy: Homeworld B1 G3 Y3\n\tfoksieloy: Hi, good luck, have fun.\n\n2) MagicJohn: Homeworld B1 G3 B3 *\n\n3) foksieloy: Build Y1 Foksieloy\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) foksieloy: Build Y1 Foksieloy\n\tMagicJohn: Enjoy de game!\n\n6) MagicJohn: Trade B3 Y3 Magicjohn\n\n7) foksieloy: Trade Y1 G1 Foksieloy\n\n8) MagicJohn: Build B2 Magicjohn\n\n9) foksieloy: Trade Y3 B3 Foksieloy\n\n10) MagicJohn: Discover B2 Magicjohn B2 Bbking\n\n11) foksieloy: Build Y1 Foksieloy\n\n12) MagicJohn: Build B2 Magicjohn\n\n13) foksieloy: Discover B3 Foksieloy G2 Tibbers\n\n14) MagicJohn: Trade B2 R2 Magicjohn\n\n15) foksieloy: Trade B3 R3 Tibbers\n\n16) MagicJohn: Build Y1 Magicjohn\n\n17) foksieloy: Build Y2 Foksieloy\n\n18) MagicJohn: Discover B1 Magicjohn G2 Muddywaters\n\n19) foksieloy: Discover Y1 Foksieloy G2 Gnar\n\n20) MagicJohn: Build B2 Muddywaters\n\n21) foksieloy: Build Y2 Gnar\n\n22) MagicJohn: Move Y1 Magicjohn Muddywaters\n\n23) foksieloy: Trade Y2 R2 Foksieloy\n\n24) MagicJohn: Build R1 Magicjohn\n\n25) foksieloy: Build R1 Tibbers\n\n26) MagicJohn: Build B3 Muddywaters\n\n27) foksieloy: Build Y2 Foksieloy\n\n28) MagicJohn: Discover B2 Muddywaters Y3 Eclapton\n\n29) foksieloy: Discover Y1 Gnar B3 Teemo\n\n30) MagicJohn: Trade B3 G3 Muddywaters\n\n31) foksieloy: Trade Y1 G1 Teemo\n\n32) MagicJohn: Sacrifice G3 Muddywaters\nBuild Y1 Muddywaters\nBuild B3 Muddywaters\nBuild B3 Bbking\n\n33) foksieloy: Build G1 Teemo\n\n34) MagicJohn: Trade B3 G3 Bbking\n\n35) foksieloy: Trade G1 R1 Teemo\n\n36) MagicJohn: Trade B3 R3 Muddywaters\n\n37) foksieloy: Build Y2 Gnar\n\n38) MagicJohn: Sacrifice Y1 Muddywaters\nMove G3 Bbking Foksieloy\n\n39) foksieloy: Sacrifice Y2 Foksieloy\nMove G1 Teemo Tibbers\nMove G1 Tibbers Foksieloy\nCatastrophe Foksieloy Green\n\n40) MagicJohn: Sacrifice Y1 Muddywaters\nMove R3 Muddywaters Foksieloy\n\n\tfoksieloy: Compressed space means we start with same star system (mirror match). Reason why it is compressed is because in a normal setup (different star systems) there are 2 systems of distance between homeworlds, while in compressed games the distance is 1 system (in our case: medium stars). Only worse scenario is if we start with dual same size homeworlds of different sizes (example I start g3 b3 and you start g1 b1) in which case the distance is 0 (we can directly attack each others systems).\n\tfoksieloy: Congrats, I enjoyed this game!\n\tMagicJohn: Challenge back if you like. Both of our games have been instructive for me.\n\nHomeworlds Online (SDG# 28320)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.6, Ended: 2015.10.11\nParticipants: torianironfist (S), RogueJedi234 (N)\nWinner: torianironfist\n\n1) RogueJedi234: Homeworld B2 Y3 G3\n\n2) torianironfist: Homeworld G1 B2 Y3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) torianironfist: Build Y1 Torianironfist\n\n\nHomeworlds Online (SDG# 28331)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.8, Ended: 2015.10.25\nParticipants: ts52 (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) endo: Build G1 Endo\n\n4) ts52: Build G1 Ts52\n\n5) endo: Trade G1 B1 Endo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) endo: Build B2 Endo\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) endo: Discover B1 Endo G2 Pspace\n\n10) ts52: Build G1 Ts52\n\n11) endo: Build G1 Endo\n\n12) ts52: Trade G1 Y1 Ts52\n\n13) endo: Trade G1 Y1 Endo\n\n14) ts52: Build Y2 Ts52\n\n15) endo: Build Y2 Endo\n\n16) ts52: Discover Y2 Ts52 B3 Grover\n\n17) endo: Discover Y1 Endo G2 Bqp\n\n\nHomeworlds Online (SDG# 28245)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.8, Ended: 2015.10.11\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n\tSimon: Undo, in hopes that it resets your clock, but it doesn&#39;t :-/\n\twil: I was gone camping...give me another shot!  Homeworls thinking will take the space of my brain contemplating aching bones and muscles...\r\n.\n\nHomeworlds Online (SDG# 28294)\nVariants: &quot;Unrated&quot;\nStarted: 2015.10.8, Ended: 2015.10.15\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) kanzenryu: Homeworld G1 B2 Y3\n\tSimon: Hi, enjoy. Since you&#39;re new, ask away if you have any questions whatsoever. :-) If you like, we can play with a 1-turn handicap (I will pass twice, because I&#39;m starting player) or an even game with you moving first (I will pass once).\n\n3) Simon: Pass\n\tkanzenryu: Hi, thanks for playing! I have no objection to getting squashed quickly... this is only my second game and one thing I&#39;d like to learn is how quickly it can turn to custard.\n\n4) kanzenryu: Build Y1 Kanzenryu\n\tSimon: Hehe, that&#39;s the spirit. Then let&#39;s still make it a game where you go first.\n\n5) Simon: Build G1 Simon\n\tkanzenryu: Then it&#39;s a yellow star destroyer coming at ya.\n\n6) kanzenryu: Build Y1 Kanzenryu\n\n7) Simon: Trade G1 Y1 Simon\n\n8) kanzenryu: Discover Y1 Kanzenryu G3 Glorp\n\n9) Simon: Build Y2 Simon\n\n10) kanzenryu: Trade Y1 G1 Kanzenryu\n\n11) Simon: Discover Y2 Simon B2 B2\n\n12) kanzenryu: Trade Y3 R3 Kanzenryu\n\tkanzenryu: trade y3 r3 kanzenryu\n\n13) Simon: Build G1 Simon\n\n14) kanzenryu: Build G2 Kanzenryu\n\n15) Simon: Build G2 Simon\n\n16) kanzenryu: Build R1 Kanzenryu\n\n17) Simon: Move G2 Simon B2\n\n18) kanzenryu: Trade G1 Y1 Kanzenryu\n\n19) Simon: Sacrifice G3 Simon\nBuild G1 B2\nBuild G2 B2\nBuild G3 Simon\n\tkanzenryu: Ouch... Was trying to move but had no yellow at home\n\n20) kanzenryu: Build Y2 Glorp\n\tSimon: The opponent&#39;s yellows are important to assess frequently, to plan where &amp; what to build, yeah. I can ignore making red ships so far, because you can&#39;t move yours out.\n\n21) Simon: Trade G2 R2 B2\n\n22) kanzenryu: Sacrifice Y2 Glorp\nMove R3 Kanzenryu Glorp\nMove R3 Glorp B2\n\n23) Simon: Sacrifice G2 B2\nBuild R1 B2\nBuild R2 B2\nCatastrophe B2 R\n\tkanzenryu: I suspect this will either be very good or very bad...\n\n24) kanzenryu: Build Y2 Glorp\n\tSimon: I have to sacrifice to defend, but the net result is a 3-ship for a 2-ship.\n\n25) Simon: Build G2 B2\n\tkanzenryu: That was a learning experience! Defending by sacrifice and catastrophe did not occur to me. More possibilities than meets the eye in this game.\n\n26) kanzenryu: Discover Y2 Glorp G2 Staging\n\n27) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Simon\nBuild Y3 B2\n\n28) kanzenryu: Build Y3 Staging\n\n29) Simon: Trade Y2 R2 B2\n\tkanzenryu: Nice trick with building multiple ships per turn. I can&#39;t see a way to stop you from doing that.\n\tkanzenryu: Nice trick with building multiple ships per turn. I can&#39;t see a way to stop you from doing that.\n\tSimon: Setting this up is a common midgame target, and opening with a g3 ship is strong for this reason.\n\n30) kanzenryu: Build G3 Kanzenryu\n\n31) Simon: Sacrifice Y2 Simon\nMove G1 B2 Glorp\nMove G1 Glorp Kanzenryu\nCatastrophe Kanzenryu G\n\n\tkanzenryu: Haha, I thought I had carefully checked for that. Okay, I guess I can safely resign at this point. Thanks very much for the game, it was a lot of fun.\n\tSimon: Thanks. Yeah, there were some neat tactical ideas. This might have given the impression that every possible catastrophe is a good play. But whenever you make one, you pay 1 turn + maybe a sacrificed ship + the ships to bring the count to 4. This is expensive, and making a developing move can be better on occasion.\n\tkanzenryu: It does tell me I need to pay far more attention to the possibilities of sacrifices! My wife just ordered me some of the pyramids for my birthday, so that should be fun when they arrive.\n\nHomeworlds Online (SDG# 28106)\nVariants: &quot;Unrated&quot;\nStarted: 2015.10.9, Ended: 2015.10.20\nParticipants: mathieuzebest (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) mathieuzebest: Homeworld G1 B2 Y3\n\n3) wil: B G1 Wil\n\n4) mathieuzebest: Build Y1 Mathieuzebest\n\n5) wil: T G1 Y1 Wil\n\n6) mathieuzebest: Trade Y1 G1 Mathieuzebest\n\n7) wil: D Y1 Wil B2 B2\n\n8) mathieuzebest: Discover G1 Mathieuzebest B3 B1\n\n9) wil: B G1 Wil\n\n10) mathieuzebest: Build G2 B1\n\n11) wil: T G1 R1 Wil\n\n12) mathieuzebest: Trade G1 Y1 B1\n\n13) wil: B R1 Wil\n\n14) mathieuzebest: Build Y2 B1\n\n15) wil: D R1 Wil G2 G2\n\n16) mathieuzebest: Move Y2 B1 B2\n\n17) wil: B R1 G2\n\n18) mathieuzebest: Build Y2 B1\n\n19) wil: D Y1 B2 G3 G3\n\n20) mathieuzebest: Build Y2 Mathieuzebest\n\n21) wil: B Y3 G3\n\n22) mathieuzebest: Trade Y2 R2 B2\n\n23) wil: M Y3 G3 Mathieuzebest\n\n24) mathieuzebest: Trade Y2 R2 Mathieuzebest\n\n25) wil: S R1 G2\nA Y3 Mathieuzebest\n\n26) mathieuzebest: Build R1 Mathieuzebest\n\n27) wil: S R1 G2\nA R2 Mathieuzebest\n\n28) mathieuzebest: Move Y1 B1 Mathieuzebest\n\n29) wil: S R2 Mathieuzebest\nA R1 Mathieuzebest\nA Y1 Mathieuzebest\n\n\nHomeworlds Online (SDG# 28345)\nStarted: 2015.10.10, Ended: 2015.10.10\nParticipants: mathieuzebest (S), ulric (N)\nWinner: ulric\n\n1) ulric: Homeworld B3 G2 Y3\n\n2) mathieuzebest: Homeworld G1 Y2 B3\n\n3) ulric: Build Y1 Ulric\n\n4) mathieuzebest: Build B1 Mathieuzebest\n\n5) ulric: Discover Y1 Ulric Y1 Paf\n\n6) mathieuzebest: Discover B1 Mathieuzebest Y3 Zoulou\n\n7) ulric: Build Y1 Ulric\n\n8) mathieuzebest: Trade B1 R1 Zoulou\n\n9) ulric: Build Y2 Ulric\n\n10) mathieuzebest: Move R1 Zoulou Paf\n\n11) ulric: Trade Y2 R2 Ulric\n\n12) mathieuzebest: Attack Y1 Paf\n\n13) ulric: Move R2 Ulric Paf\n\n14) mathieuzebest: Discover R1 Paf G3 Urss\n\n15) ulric: Attack Y1 Paf\n\n16) mathieuzebest: Build B1 Mathieuzebest\n\n17) ulric: Move R2 Paf Urss\n\n18) mathieuzebest: Move B3 Mathieuzebest Urss\n\n19) ulric: Attack R1 Urss\n\n20) mathieuzebest: Trade B3 R3 Urss\n\n21) ulric: Sacrifice Y1 Ulric\nDiscover R2 Urss B1 Bim\n\n22) mathieuzebest: Attack R1 Urss\n\n23) ulric: Build Y1 Ulric\n\n24) mathieuzebest: Build R1 Urss\n\n25) ulric: Trade Y1 B1 Ulric\n\n26) mathieuzebest: Build B2 Mathieuzebest\n\n27) ulric: Build B2 Ulric\n\n28) mathieuzebest: Trade B2 Y2 Mathieuzebest\n\n29) ulric: Trade B2 G2 Ulric\n\n30) mathieuzebest: Move Y2 Mathieuzebest Urss\n\n31) ulric: Sacrifice Y1 Paf\nMove R2 Bim Urss\nCatastrophe Urss R\n\n32) mathieuzebest: Discover Y2 Urss B2 Glouda\n\n33) ulric: Discover G2 Ulric Y1 Paf\n\n34) mathieuzebest: Build B1 Mathieuzebest\n\n35) ulric: Build B2 Ulric\n\n36) mathieuzebest: Trade B1 G1 Mathieuzebest\n\n37) ulric: Move B2 Ulric Paf\n\n38) mathieuzebest: Discover G1 Mathieuzebest Y3 Name\n\n39) ulric: Build G1 Paf\n\n40) mathieuzebest: Move G1 Name Glouda\n\n41) ulric: Trade G1 R1 Paf\n\n42) mathieuzebest: Build Y1 Glouda\n\n43) ulric: Build G1 Paf\n\n44) mathieuzebest: Trade Y2 R2 Glouda\n\n45) ulric: Move G1 Paf Ulric\n\n46) mathieuzebest: Build G2 Glouda\n\n47) ulric: Build G3 Paf\n\n48) mathieuzebest: Build G3 Glouda\n\n49) ulric: Build G3 Ulric\n\n50) mathieuzebest: Trade G3 Y3 Glouda\n\n51) ulric: Discover G2 Paf B3 Bim\n\n52) mathieuzebest: Move Y3 Glouda Bim\n\n53) ulric: Build G3 Bim\n\n54) mathieuzebest: Sacrifice Y3 Bim\nMove G2 Glouda Bim\nMove G1 Glouda Bim\nMove R2 Glouda Bim\nCatastrophe Bim G\n\n55) ulric: Move G1 Ulric Paf\n\n56) mathieuzebest: Move Y1 Glouda Bim\n\n57) ulric: Move G3 Ulric Paf\n\n58) mathieuzebest: Discover Y1 Bim G1 Yoda\n\n59) ulric: Trade G3 R3 Paf\n\n60) mathieuzebest: Move Y1 Yoda Ulric\n\n61) ulric: Sacrifice Y3 Ulric\nMove R1 Paf Bim\nMove R1 Bim Mathieuzebest\nMove R3 Paf Ulric\n\n62) mathieuzebest: Trade Y1 R1 Ulric\n\n63) ulric: Attack B1 Mathieuzebest\n\n\nHomeworlds Online (SDG# 28373)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.13, Ended: 2015.11.15\nParticipants: MagicJohn (S), foksieloy (N)\nWinner: MagicJohn\n\n1) foksieloy: Homeworld R1 B3 G3\n\tfoksieloy: Hey, let&#39;s play another, I enjoyed the previous games. :) Good luck, have fun!\n\n2) MagicJohn: Homeworld B1 G3 B3 *\n\n3) foksieloy: Build G1 Foksieloy\n\tMagicJohn: Live long and prosper...\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) foksieloy: Trade G1 B1 Foksieloy\n\n6) MagicJohn: Trade B3 Y3 Magicjohn\n\n7) foksieloy: Build B2 Foksieloy\n\n8) MagicJohn: Build B2 Magicjohn\n\n9) foksieloy: Trade B1 Y1 Foksieloy\n\n10) MagicJohn: Discover B2 Magicjohn B2 Billieholiday\n\n11) foksieloy: Discover B2 Foksieloy G2 Tibbers\n\n12) MagicJohn: Trade B1 R1 Magicjohn\n\n13) foksieloy: Build B1 Tibbers\n\n14) MagicJohn: Build Y1 Magicjohn\n\n15) foksieloy: Trade B2 G2 Tibbers\n\n16) MagicJohn: Trade B2 R2 Billieholiday\n\n17) foksieloy: Build G1 Foksieloy\n\n18) MagicJohn: Discover Y1 Magicjohn G2 Gatemouth\n\n19) foksieloy: Discover G1 Foksieloy B2 Warwick\n\n20) MagicJohn: Build R1 Magicjohn\n\n21) foksieloy: Build Y1 Foksieloy\n\n22) MagicJohn: Build Y2 Gatemouth\n\n23) foksieloy: Trade Y1 B1 Foksieloy\n\n24) MagicJohn: Build R2 Magicjohn\n\tMagicJohn: Warwick :-)\n\n25) foksieloy: Build B2 Tibbers\n\n26) MagicJohn: Move R2 Magicjohn Tibbers\n\n27) foksieloy: Sacrifice G2 Tibbers\nBuild B3 Foksieloy\nBuild G1 Warwick\n\n28) MagicJohn: Attack B2 Tibbers\n\n29) foksieloy: Trade B3 Y3 Foksieloy\n\n30) MagicJohn: Attack B1 Tibbers\n\n31) foksieloy: Move B1 Foksieloy Warwick\n\n32) MagicJohn: Move R1 Magicjohn Warwick\n\n33) foksieloy: Move Y3 Foksieloy Warwick\n\n34) MagicJohn: Sacrifice R2 Tibbers\nAttack B1 Warwick\nAttack G1 Warwick\n\n35) foksieloy: Trade Y3 R3 Warwick\n\n36) MagicJohn: Build B3 Tibbers\n\n37) foksieloy: Sacrifice R3 Warwick\nAttack G1 Warwick\nAttack B1 Warwick\nAttack R1 Warwick\n\n38) MagicJohn: Trade B3 Y3 Tibbers\n\n39) foksieloy: Trade G1 Y1 Warwick\n\n40) MagicJohn: Build B3 Tibbers\n\n41) foksieloy: Discover B1 Warwick Y3 Gnar\n\n42) MagicJohn: Trade B2 G2 Tibbers\n\n43) foksieloy: Build Y2 Warwick\n\n44) MagicJohn: Sacrifice G2 Tibbers\nBuild Y2 Magicjohn\nBuild R2 Billieholiday\n\n45) foksieloy: Build G1 Warwick\n\n46) MagicJohn: Move B3 Tibbers Gnar\n\n47) foksieloy: Build G1 Warwick\n\n48) MagicJohn: Sacrifice R1 Magicjohn\nAttack B1 Gnar\n\n49) foksieloy: Move G1 Warwick Magicjohn\n\n50) MagicJohn: Trade B1 R1 Tibbers\n\n51) foksieloy: Sacrifice Y2 Warwick\nMove G1 Warwick Magicjohn\nMove G1 Warwick Magicjohn\nCatastrophe Magicjohn Green\n\n52) MagicJohn: Sacrifice Y3 Tibbers\nMove R1 Tibbers Foksieloy\nMove R2 Billieholiday Foksieloy\nMove R2 Billieholiday Foksieloy\nCatastrophe Foksieloy Red\n\tfoksieloy: Missclick :)\n\tMagicJohn: Who is this &quot;Miss Click&quot; and how did you meet? Does your significant other know?\n\n53) foksieloy: Build Y2 Foksieloy\n\n54) MagicJohn: Trade Y3 G3 Magicjohn\n\n55) foksieloy: Discover Y1 Warwick G3 Annie\n\n56) MagicJohn: Build Y3 Magicjohn\n\n57) foksieloy: Build Y3 Annie\n\n58) MagicJohn: Sacrifice Y2 Gatemouth\nMove Y1 Gatemouth Annie\nMove Y2 Magicjohn Annie\nCatastrophe Annie Yellow\n\n59) foksieloy: Sacrifice Y2 Foksieloy\nMove G3 Foksieloy Magicjohn\nMove R1 Warwick Magicjohn\n\n60) MagicJohn: Trade B3 R3 Gnar\n\n\tMagicJohn: Yep! :)\n\tfoksieloy: Argh I seen wrong, I though you had a blue ship in MagicJohn, wanted to build 3 blue ships. :D\r\n\r\nGG!\n\tMagicJohn: Thanks for the game! We seem to play on about the same level. Makes for a good game.  Challenge me any time!\n\nHomeworlds Online (SDG# 28334)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.13, Ended: 2015.10.18\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B3 R1 G3\n\n2) wil: H B3 Y2 G3\n\tSimon: Enjoy!\n\twil: I will!...played three games camping 2/1 \n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: T G1 R1 Wil\n\n7) Simon: Build Y1 Simon\n\n8) wil: B R1 Wil\n\n9) Simon: Discover Y1 Simon G2 G2\n\n10) wil: D R1 Wil B1 B1\n\n11) Simon: Build Y1 G2\n\n12) wil: B R2 Wil\n\n13) Simon: Build Y2 Simon\n\n14) wil: S G3 Wil\nB R2 B1\nB R2 B1\nB R3 Wil\n\n15) Simon: Build Y2 G2\n\n16) wil: T R3 G3 Wil\n\n17) Simon: Discover Y2 G2 B1 B1a\n\n18) wil: M R2 Wil B1a\n\n19) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 B1a\nBuild Y3 B1a\n\n20) wil: S G3 Wil\nB R3 Wil\nB R3 B1a\nB R3 B1a\n\twil: Fat fingers\n\tSimon: Against 6 red ships, and the natural reaction is *not* to defend!\n\n21) Simon: Sacrifice Y2 B1a\nDiscover Y3 B1a G3 G3\nDiscover Y3 B1a B3 B3\n\n22) wil: T R3 G3 Wil\n\n23) Simon: Trade Y3 G3 Simon\n\n24) wil: T R3 Y3 B1a\n\n25) Simon: Trade Y3 R3 B3\n\tSimon: Assume I&#39;d have built the last y2 instead of trade to g3 here. Then I would only move ships back and forth and never let go of a yellow. Does the game allow a draw by mutual agreement?\n\twil: Doesn&#39;t look like it..,and I&#39;ve not encountered one yet \n\twil: Doesn&#39;t look like it..,and I&#39;ve not encountered one yet \n\twil: Doesn&#39;t look like it..,and I&#39;ve not encountered one yet \n\twil: Doesn&#39;t look like it..,and I&#39;ve not encountered one yet \n\twil: Doesn&#39;t look like it..,and I&#39;ve not encountered one yet \n\twil: Doesn&#39;t look like it..,and I&#39;ve not encountered one yet \n\n26) wil: B R3 Wil\n\n27) Simon: Build G1 Simon\n\n28) wil: B G1 Wil\n\n29) Simon: Sacrifice G3 Simon\nBuild G1 Simon\nBuild Y2 G3\nBuild Y3 Simon\n\n30) wil: M R3 B1a G2\n\n31) Simon: Move Y3 G3 B1\n\n32) wil: A Y1 G2\n\n33) Simon: Trade Y2 B2 Simon\n\n34) wil: S G1 Wil\nB Y2 B1a\n\n35) Simon: Sacrifice R3 B3\nAttack Y1 G2\nAttack R2 B1\nAttack R2 B1\n\n36) wil: M R1 Wil B1\nC B1 R\n\n37) Simon: Discover B2 Simon G2 G2a\n\n38) wil: M R2 B1a G2a\n\n39) Simon: Move Y1 G2 B1a\n\n40) wil: T Y2 G2 B1a\n\n41) Simon: Sacrifice G1 Simon\nBuild Y2 B1\n\n42) wil: A Y1 G2\n\n43) Simon: Sacrifice B2 G2a\nTrade Y2 R2 B1\nTrade Y3 G3 Simon\n\twil: Most folks name their star systems... I just like naming mine by the star...\n\twil: Most folks name their star systems... I just like naming mine by the star...\n\n44) wil: M Y3 B1a G2a\n\tSimon: I found this to be the most descriptive name. Cute names obscure what it is, and naming by strategical idea is bad because that will change.\n\twil: Agree..\n\twil: Agree..\n\n45) Simon: Sacrifice G3 Simon\nBuild Y2 B1\nBuild Y3 Simon\nBuild R1 B1\n\n46) wil: B R1 G2a\n\n47) Simon: Build G1 Simon\n\tSimon: And my sleep schedule is botched again, making for good Homeworlds.\n\n48) wil: B G1 Wil\n\n49) Simon: Build G3 Simon\n\n50) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R3 G2\n\n51) Simon: Discover G3 Simon B2 B2\n\n52) wil: S R1 G2a\nA Y1 B1a\n\n53) Simon: Move G1 Simon B2\n\n54) wil: M G3 Wil B1a\n\n55) Simon: Move Y1 Simon B2\n\n56) wil: D G3 B1a B2 Beetwo\n\n57) Simon: Move G3 B2 B1a\n\n58) wil: S Y3 G2a\nM R3 G2 Simon\nM R3 G2 Simon\nM G3 Beetwo Simon\n\n\twil: It is &#39;the ole you take two I&#39;ll take three trick&#39;\n\tSimon: yep, gg!\n\twil: Ready anytime...win or lose...\n\nHomeworlds Online (SDG# 28385)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.15, Ended: 2015.11.2\nParticipants: SilentTitan (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 B1 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\tSimon: Hi, enjoy the game!\n\tSilentTitan: Thanks and the same back at you\n\n3) Simon: Build G1 Simon\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Simon: Trade G1 B1 Simon\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Simon: Build B1 Simon\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Simon: Build G1 Simon\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) Simon: Trade G3 Y3 Simon\n\n12) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n13) Simon: Discover B1 Simon G2 G2\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) Simon: Build B2 G2\n\n\nHomeworlds Online (SDG# 28336)\nVariants: &quot;Unrated&quot;\nStarted: 2015.10.16, Ended: 2015.11.11\nParticipants: wil (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld G1 B3 Y3\n\n2) wil: H Y2 B1 G3\n\tdragon76n: Hello Wil, we meet again. \n\n3) dragon76n: Build Y1 Dragon76n\n\n4) wil: B G1 Wil\n\n5) dragon76n: T Y1 G1 Dragon76n\n\n6) wil: B G2 Wil\n\n7) dragon76n: B G2 Dragon76n\n\twil: I think I had a better move..\n\twil: It has been awhile...\n\n8) wil: T G1 B1 Wil\n\tdragon76n: I&#39;m still learning the game anyway... I think I&#39;me only played Homeworlds twice since I played online here with you. \n\n9) dragon76n: B Y1 Dragon76n\n\n10) wil: B B1 Wil\n\n11) dragon76n: T G2 R2 Dragon76n\n\n12) wil: D B1 Wil G3 G3\n\n13) dragon76n: Build R1 Dragon76n\n\n14) wil: B B2 Wil\n\n15) dragon76n: D R2 Dragon76n Y2 Yeltwo\n\n16) wil: T B2 R2 Wil\n\n17) dragon76n: Move R2 Yeltwo G3\n\n18) wil: B B2 G3\n\n19) dragon76n: A B2 G3\n\n20) wil: B B2 G3\n\n21) dragon76n: Sacrifice Y1 Dragon76n\nDiscover B2 G3 Y1 Yelone\n\n22) wil: S R2 Wil\nA R2 G3\nP\n\n23) dragon76n: B R1 Dragon76n\n\n24) wil: T B2 Y2 G3\n\n25) dragon76n: D B2 Yelone B3 Bluthr\n\n26) wil: B B2 Wil\n\n27) dragon76n: B Y1 Dragon76n\n\n28) wil: D B1 Wil G3 Gee3\n\n29) dragon76n: T B2 G2 Bluthr\n\n30) wil: B B2 Gee3\n\n31) dragon76n: B G1 Bluthr\n\n32) wil: B B2 Wil\n\n33) dragon76n: Trade Y3 B3 Dragon76n\n\n34) wil: D G2 Wil Y3 Y3\n\n35) dragon76n: Trade G1 Y1 Bluthr\n\n36) wil: B G1 Wil\n\n37) dragon76n: B G2 Bluthr\n\n38) wil: T B2 Y2 Gee3\n\n39) dragon76n: T G2 B2 Bluthr\n\n40) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB R1 G3\n\n41) dragon76n: M B2 Bluthr Wil\nC Wil Blue\n\n42) wil: M R1 G3 Wil\n\n43) dragon76n: Sacrifice G2 Bluthr\nBuild Y1 Bluthr\nBuild Y3 Bluthr\n\tdragon76n: My previous orders were submitted in a browser that had old data still so when the page reloaded the results were quite different than I was expecting.\n\twil: Do you wanna back up nmakecths move you wanted?\n\n44) wil: B Y3 G3\n\tdragon76n: I had already done that. Thanks for checking though. \n\n45) dragon76n: Sacrifice Y3 Bluthr\nMove Y1 Bluthr Wil\nMove Y1 Bluthr Wil\nMove Y1 Dragon76n Wil\nCatastrophe Wil Y\n\n\twil: Doh...  I didn&#39;t scroll down far enough\n\tdragon76n: GG\n\twil: Miss count... Thx for the game...\n\nHomeworlds Online (SDG# 28398)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.19, Ended: 2015.12.1\nParticipants: MagicJohn (S), Salmonax (N)\nWinner: MagicJohn\n\n1) Salmonax: Homeworld R3 B2 G3\n\n2) MagicJohn: Homeworld B1 G3 B3 *\n\n3) Salmonax: Build G1 Salmonax\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) MagicJohn: Trade B3 Y3 Magicjohn\n\n7) Salmonax: Build G1 Salmonax\n\n8) MagicJohn: Build B1 Magicjohn\n\n9) Salmonax: Build G1 Salmonax\n\n10) MagicJohn: Discover B1 Magicjohn G2 Leaf\n\n11) Salmonax: Trade G3 B3 Salmonax\n\n12) MagicJohn: Build B2 Leaf\n\n13) Salmonax: Build Y1 Salmonax\n\n14) MagicJohn: Build Y1 Magicjohn\n\n15) Salmonax: Discover Y1 Salmonax G1 Two\n\n16) MagicJohn: Trade B2 Y2 Leaf\n\n17) Salmonax: Build Y2 Two\n\n18) MagicJohn: Build B2 Leaf\n\n19) Salmonax: Build G2 Salmonax\n\n20) MagicJohn: Build B2 Leaf\n\n21) Salmonax: Sacrifice Y2 Two\nMove Y1 Two Leaf\nMove Y1 Leaf Magicjohn\n\n22) MagicJohn: Trade Y3 R3 Magicjohn\n\n23) Salmonax: Build Y2 Magicjohn\n\n24) MagicJohn: Attack Y2 Magicjohn\n\n25) Salmonax: Build Y2 Magicjohn\n\n26) MagicJohn: Discover B2 Leaf G1 Stem\nCatastrophe Magicjohn Yellow\n\n27) Salmonax: Build Y1 Salmonax\n\tSalmonax: Sorry for the delay\n\n28) MagicJohn: Build B3 Stem\n\n\tMagicJohn: Life happens...\n\nHomeworlds Online (SDG# 28375)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.20, Ended: 2015.10.31\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y1 G3\n\n2) Simon: Homeworld B1 R2 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\tSimon: Still wondering about the mutually agreed draw when one person has all the yellows with nothing else, and is too weak to trade any. The red player can probably prevent the forced draw by moving to a y star.\n\twil: Exactly...  I have yet to draw...often eventually you have to give up your monopoly to trade to continue...  And then pandoeas box is open...  Last ditch I trade my queen at home if I feel out manipulated it one economy.\n\twil: Exactly...  I have yet to draw...often eventually you have to give up your monopoly to trade to continue...  And then pandoeas box is open...  Last ditch I trade my queen at home if I feel out manipulated it one economy.\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B B1 Wil\n\n8) Simon: Build Y1 Simon\n\n9) wil: D B1 Wil G2 G2\n\n10) Simon: Discover Y1 Simon B3 B3\n\n11) wil: B B2 Wil\n\n12) Simon: Build Y2 Simon\n\n13) wil: T B2 Y2 Wil\n\n14) Simon: Build G1 Simon\n\n15) wil: B B2 Wil\n\n16) Simon: Sacrifice G3 Simon\nBuild Y2 B3\nBuild Y3 B3\nBuild Y3 Simon\n\n17) wil: M Y2 Wil G2\n\n18) Simon: Trade Y2 B2 B3\n\n19) wil: T B1 R1 Wil\n\n20) Simon: Trade Y1 R1 B3\n\n21) wil: B B1 G2\n\n22) Simon: Discover B2 B3 G2 G2a\n\n23) wil: D B2 Wil Y2 Y2\n\n24) Simon: Trade Y3 G3 Simon\n\n25) wil: T B1 R1 G2\n\n26) Simon: Build B1 G2a\n\n27) wil: B R2 Wil\n\n28) Simon: Trade B2 R2 G2a\n\n29) wil: T R2 G2 Wil\n\n30) Simon: Build B2 G2a\n\n31) wil: S G2 Wil\nB B2 Y2\nB B3 G2\n\n32) Simon: Discover Y1 Simon R3 R3\n\n33) wil: T B3 Y3 G2\n\n34) Simon: Trade B1 Y1 G2a\n\n35) wil: D B2 Y2 Y3 Y3\n\n36) Simon: Move G1 Simon B3\n\n37) wil: B R2 G2\n\n38) Simon: Build R3 G2a\n\n39) wil: B R3 Wil\n\n40) Simon: Build G1 Simon\n\n41) wil: M Y2 G2 R3\n\tSimon: The game flows too comfortably. This is the most likely time to overlook something &lt;_&lt;\n\n42) Simon: Discover Y1 R3 G1 G1\n\n43) wil: T B2 G2 Y3\n\n44) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B3\nPass\n\n45) wil: S G2 Y3\nB Y3 R3\nB G2 Wil\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 G2a\nBuild B2 G2a\n\twil: I bought an option on a factory early...my investment paid off\n\n47) wil: B B3 G2\n\twil: And the bank... She is empty\n\n48) Simon: Move B1 G2a Wil\n\twil: But I suspect we&#39;ll see an economic collapse followed quickly by a govt bailout and our coffers will be full again soon.\n\n49) wil: A B1 Wil\n\tSimon: I&#39;ve won a different game because the other guy spent 3 moves on flying blues in.\n\twil: Looks like I&#39;ll be flying blues out...\n\n50) Simon: Sacrifice Y2 Simon\nMove B2 G2a Wil\nMove B2 G2a Wil\nCatastrophe Wil B\n\twil: And the bank will be full and universe reboot...\n\twil: The wicket....she is about to get sticky...\n\twil: Surely you won&#39;t waste three moves on this venture....he says slyly\n\n51) wil: S Y3 R3\nM B2 Y2 B3\nM B1 G2 B3\nM B3 G2 B3\nC B3 B\n\n52) Simon: Trade G1 B1 Simon\n\twil: And the bank is replenished\n\tSimon: In the other game, I didn&#39;t steal the first blue. But that position offered big alternative moves, unlike the empty bank.\n\n53) wil: B Y2 G2\n\n54) Simon: Build Y2 G2a\n\n55) wil: M Y2 G2 G1\n\n56) Simon: Discover Y1 G1 G3 G3\n\n57) wil: S G3 Wil\nB Y3 G1\nB Y3 R3\nB G1 Wil\n\n58) Simon: Move Y1 G3 Simon\n\n59) wil: S Y3 G2\nM R1 G2 Wil\nM R1 Wil G2a\nM R1 Wil G2a\nC G2a R\n\n60) Simon: Build Y3 Simon\n\n61) wil: S Y2 G1\nM Y3 R3 Simon\nM Y2 R3 Simon\nC Simon Y\n\n62) Simon: Build Y1 G2a\n\tSimon: The board is a blank void.\n\n63) wil: B Y2 G1\n\twil: Yeah...but it is still over\n\twil: I&#39;ve just been delaying the inevitable\n\n64) Simon: Move Y1 G2a Wil\n\n65) wil: A Y1 Wil\n\tSimon: Hmm, I&#39;d have expected the yellow catastrophe at g2a, then it would have played out like an opening with extra ships instead of blue.\n\twil: Yeah...I blew it....\n\n66) Simon: Move Y1 G2a Wil\n\n67) wil: M Y1 Wil G2a\n\n68) Simon: Sacrifice G3 Simon\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\twil: Thx for the game...challenge anytime\n\twil: Thx for the game...challenge anytime\n\tSimon: gg, and challenge coming right up.\n\n\nHomeworlds Online (SDG# 28422)\nVariants: &quot;Unrated&quot;\nStarted: 2015.10.21, Ended: 2015.11.4\nParticipants: fogus (S), kanzenryu (N)\nWinner: fogus\n\n1) kanzenryu: Homeworld B1 Y2 G3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) kanzenryu: Build G1 Kanzenryu\n\tfogus: let&#39;s try a claustrophobic game this time. :)\n\n4) fogus: Build G1 Fogus\n\tkanzenryu: Variety is the spice of life. The spice must flow!\n\n5) kanzenryu: Discover G1 Kanzenryu G3 Alpha\n\n6) fogus: Trade G1 R1 Fogus\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) fogus: Move R1 Fogus Alpha\n\n9) kanzenryu: Trade G1 R1 Kanzenryu\n\n10) fogus: Attack G1 Alpha\n\tkanzenryu: In trouble already...\n\n11) kanzenryu: Build G1 Kanzenryu\n\n12) fogus: Build G1 Fogus\n\n13) kanzenryu: Trade G1 Y1 Kanzenryu\n\n14) fogus: Discover G1 Fogus Y3 Beta\n\tkanzenryu: So at least I&#39;ve learned not to create another green ship\n\n15) kanzenryu: Build R1 Kanzenryu\n\n16) fogus: Build G1 Fogus\n\n17) kanzenryu: Move R1 Kanzenryu Beta\n\n18) fogus: Build G2 Beta\n\n19) kanzenryu: Attack G1 Beta\n\n20) fogus: Sacrifice R1 Alpha\nAttack R1 Beta\n\n21) kanzenryu: Move G1 Beta Fogus\n\n22) fogus: Trade G1 R1 Fogus\n\tkanzenryu: Hmmm... let&#39;s try this\n\n23) kanzenryu: Discover G1 Fogus Y3 Gamma\n\n24) fogus: Build R2 Fogus\n\n25) kanzenryu: Build R2 Kanzenryu\n\n26) fogus: Sacrifice G3 Fogus\nBuild R2 Beta\nBuild R3 Fogus\nBuild G1 Beta\n\n27) kanzenryu: Move R2 Kanzenryu Gamma\n\n28) fogus: Move R3 Fogus Gamma\n\n29) kanzenryu: Sacrifice G3 Kanzenryu\nBuild R3 Gamma\nBuild R3 Gamma\nBuild G2 Gamma\nCatastrophe Gamma Red\n\tkanzenryu: Don&#39;t forget about our alien city game!\n\n30) fogus: Move R2 Beta Kanzenryu\n\n\tkanzenryu: Of course it&#39;s not enough to save me\n\nHomeworlds Online (SDG# 28392)\nVariants: &quot;Unrated&quot;\nStarted: 2015.10.22, Ended: 2015.12.21\nParticipants: wil (S), sompm (N)\nWinner: wil\n\n1) sompm: Homeworld G3 Y2 B3\n\n2) wil: H B3 Y1 G3\n\n3) sompm: Build B1 Sompm\n\twil: We meet again...have fun.\n\n4) wil: B G1 Wil\n\tsompm: You too.\r\n\r\nI have an exhibition match scheduled in ten months. I have to practice.\n\twil: Exhibition match?\n\n5) sompm: Build B1 Sompm\n\n6) wil: T G1 Y1 Wil\n\tsompm: Every year around PAX Prime/Dev, one certain Andy Looney will be in town and desires to play Homeworlds with whomever he can. I was a poor opponent for him last year, so I must train.\n\n7) sompm: Discover B1 Sompm G1 G1\n\twil: Ah...and he is giving out medals for those that beat him!  \n\n8) wil: B Y1 Wil\n\tsompm: The medal is one of the goals. It would be more of a physical record of an event than anything. Basically I want to give him a good fight.\n\n9) sompm: Build B1 G1\n\twil: While I&#39;ve been working on the early advantage, he is more long build for the end game...\n\n10) wil: D Y1 Wil G2 G2\n\n11) sompm: Build B2 Sompm\n\n12) wil: B Y2 Wil\n\n13) sompm: Trade B2 Y2 Sompm\n\n14) wil: B Y3 G2\n\n15) sompm: Sacrifice Y2 Sompm\nMove B1 G1 G2\nDiscover B1 G1 Y3 Y3\n\n16) wil: T Y1 R1 Wil\n\n17) sompm: Sacrifice B1 G2\nTrade B1 Y1 Sompm\n\n18) wil: B Y2 G2\n\n19) sompm: Build B1 Sompm\n\n20) wil: B Y3 Wil\n\n21) sompm: Discover B1 Sompm G1 G1\n\tsompm: I think I may not be very good at this game.\n\n22) wil: T Y2 B2 Wil\n\twil: It took probably a dozen games to start to understand.... Another two dozen games before I started to develop strategies...\n\n23) sompm: Build B1 G1\n\n24) wil: B B2 Wil\n\n25) sompm: Build B2 G1\n\n26) wil: D Y2 G2 B3 B3\n\n27) sompm: Trade B2 Y2 G1\n\n28) wil: M B2 Wil G2\n\n29) sompm: Trade B1 G1 G1\n\n30) wil: B R1 Wil\n\n31) sompm: Trade Y1 R1 Sompm\n\n32) wil: M Y3 G2 G1\n\n33) sompm: Build G1 G1\n\n34) wil: B G2 Wil\n\n35) sompm: Discover Y2 G1 G2 G2a\n\n36) wil: D B2 G2 G3 G3\n\n37) sompm: Build B1 G1\n\tsompm: What&#39;s your naming convention for identically-sized planets?\n\twil: I&#39;m really the only one around that calls them like this...Andy likes to use star names, others sci-fi references.... Geetoo, beewon, whytree...is my next steos\n\n38) wil: S G3 Wil\nB G3 Wil\nB Y1 B3\nB B2 G3\n\n39) sompm: Build R2 Sompm\n\n40) wil: M R1 Wil G2\n\n41) sompm: Move R1 Sompm G1\n\n42) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 G2\n\n43) sompm: Sacrifice Y2 G2a\nDiscover B1 G1 Y2 Y2\nMove B1 G1 Y2\n\n44) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB R3 G2\n\n45) sompm: Move B1 Y2 Wil\n\tsompm: Well, it&#39;s approaching concede time. Most of the resources are claimed and not by me. Might as well go out with a bang, eh?\n\n46) wil: M Y1 B3 G1\n\n47) sompm: Move B1 Y2 Wil\nCatastrophe Wil Blue\n\n48) wil: S R2 G2\nA R1 G1\nA G1 G1\n\n49) sompm: Build B1 Sompm\n\tsompm: I just realized a blue nuke opens me up (further) to a green nuke. Hmm...\n\n50) wil: S G3 Wil\nB G3 Wil\nB Y2 G1\nB R2 G1\n\tsompm: Screw it, right? You&#39;re not really living if you don&#39;t die once in a while.\n\n51) sompm: Build R3 Sompm\n\n52) wil: S Y2 G1\nM R1 G1 Sompm\nM R1 Wil Sompm\nC Sompm R\n\n53) sompm: Trade B3 R3 Sompm\n\n54) wil: S Y3 Wil\nM R3 G2 G1\nM R3 G1 Sompm\nM Y3 G1 Sompm\n\n55) sompm: Attack R3 Sompm\n\twil: Finale...\n\n56) wil: S R2 G1\nA R3 Sompm\nA R3 Sompm\n\tsompm: I believe it must take you at least three moves to wipe me out, not two. :)\n\twil: That will be your choice\n\n57) sompm: Build B1 Sompm\n\n58) wil: S R2 Wil\nA B1 Sompm\nA B1 Sompm\n\n\tsompm: Good game.\n\twil: Yez it is...challenge me anytime\n\nHomeworlds Online (SDG# 28444)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.25, Ended: 2015.11.3\nParticipants: dlwillson (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 R1 G3\n\tendo: At last I&#39;ve reached the top 5! Good luck and have fun.\n\n3) endo: Build G1 Endo\n\tdlwillson: Congratulations on making it so far!\r\nGood skill and fun to you!\n\n4) dlwillson: B G1 Dlwillson\n\n5) endo: Trade G1 Y1 Endo\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) endo: Build Y2 Endo\n\n8) dlwillson: B Y2 Dlwillson\n\n9) endo: Trade Y1 R1 Endo\n\n10) dlwillson: D Y1 Dlwillson B2 Sky\n\n11) endo: Build R1 Endo\n\n12) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB Y2 Sky\nB Y3 Dlwillson\n\n13) endo: Discover Y2 Endo G3 Zf\n\n14) dlwillson: T Y1 G1 Sky\n\n15) endo: Build Y1 Zf\n\n16) dlwillson: T Y3 G3 Dlwillson\n\n17) endo: Discover Y1 Zf G2 Kp\n\n18) dlwillson: T Y2 R2 Sky\n\n19) endo: Build R2 Endo\n\n20) dlwillson: B R2 Sky\n\n21) endo: Move R2 Endo Zf\n\n22) dlwillson: Trade R2 G2 Sky\n\n23) endo: Discover R1 Endo Y3 Nf\n\n24) dlwillson: D G1 Sky Y3 Sol\n\n25) endo: Sacrifice G3 Endo\nBuild R2 Zf\nBuild R3 Endo\nBuild R3 Nf\n\n26) dlwillson: B R3 Sky\n\n27) endo: Trade R3 G3 Endo\n\n28) dlwillson: T R3 Y3 Sky\n\n29) endo: Build R3 Endo\n\n30) dlwillson: S G2 Sky\nB Y2 Dlwillson\nB R3 Sky\n\n31) endo: Trade R3 B3 Endo\n\n32) dlwillson: M R3 Sky Zf\n\n33) endo: Build R3 Zf\nCatastrophe Zf R\n\tdlwillson: Do your system names mean anything?\n\n34) dlwillson: D Y1 Sky B3 Sea\n\tendo: I name my systems after mathematical concepts. In this game they&#39;re axiom systems of set theory. Zermelo-Fraenkel set theory, Kripke-Platek set theory, New Foundations.\n\n35) endo: Move B3 Endo Sol\n\tdlwillson: I want to know more about them. Should I head to Wikipedia, or somewhere else?\n\n36) dlwillson: M G1 Sol Sky\n\tendo: Wikipedia is what I&#39;ve used the most. Mathematics Stack Exchange also contains a lot of good facts, and might be more accessible than the technical Wikipedia articles. If you know the basics about logic and set theory, you could start immediately with the lists of axioms in the relevant Wikipedia articles. If not, the article https://en.wikipedia.org/wiki/Set_theory looks like a good introduction, and browsing the Stack Exchange questions would be useful if you don&#39;t understand something. There are also some other sites like PlanetMath, Wolfram MathWorld and Stanford Encyclopedia of Philosophy. If you&#39;re looking for a particular concept, Google is probably your best friend.\n\n37) endo: Build R2 Endo\n\tdlwillson: I&#39;ll do some reading. Thanks!\n\n38) dlwillson: T Y2 R2 Dlwillson\n\tendo: You&#39;re welcome! I hope you&#39;ll read about some things that are interesting to you - I personally find set theory fascinating, but I don&#39;t think it&#39;s a branch of mathematics for everyone.\n\n39) endo: Move R2 Endo Sea\n\n40) dlwillson: M R2 Dlwillson Kp\n\n41) endo: Sacrifice G3 Endo\nBuild Y2 Zf\nBuild R3 Endo\nBuild R3 Sea\n\n42) dlwillson: Attack Y1 Kp\n\n43) endo: Attack Y1S Sea\n\n44) dlwillson: Trade Y3 G3 Sky\n\n45) endo: Discover R1 Endo Y3 Tg\n\n46) dlwillson: M R2 Kp Tg\n\n47) endo: Trade R2 G2 Sea\n\n48) dlwillson: B R2 Sky\n\n49) endo: Move R1 Tg Endo\n\n50) dlwillson: M R2 Tg Endo\n\n51) endo: Trade R3 Y3 Endo\n\n52) dlwillson: A R1 Endo\n\n53) endo: Build R3 Sea\n\n54) dlwillson: S Y2 Dlwillson\nM R2 Sky Sea\nM R2 Endo Sea\nC Sea R\n\n55) endo: Build Y2 Sea\n\n56) dlwillson: Build G1 Dlwillson\n\n57) endo: Build G1 Sea\n\n58) dlwillson: Trade G1 B1 Sky\n\n59) endo: Sacrifice R1 Nf\nAttack R1 Endo\n\n60) dlwillson: M Y1 Kp Dlwillson\n\n61) endo: Sacrifice G2 Sea\nBuild B1 Sol\nBuild R1 Nf\n\n62) dlwillson: M Y1 Dlwillson Sky\n\n63) endo: Sacrifice Y2 Zf\nMove B1 Sol Sky\nMove B3 Sol Sky\nCatastrophe Sky B\n\n64) dlwillson: T G3 Y3 Dlwillson\n\n65) endo: Discover Y1 Sea G2 Nbg\n\n66) dlwillson: B Y1 Dlwillson\n\n67) endo: Sacrifice Y3 Endo\nMove Y2 Zf Nbg\nMove Y1 Nbg Dlwillson\nMove Y2 Nbg Dlwillson\nCatastrophe Dlwillson Y\n\n\tdlwillson: Good game well played. I look forward to playing you again someday.\n\tendo: Thanks for an interesting game!\n\nHomeworlds Online (SDG# 28487)\nVariants: &quot;Hard time&quot;\nStarted: 2015.10.31, Ended: 2015.11.6\nParticipants: goulo (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tgoulo: hi, have fun!\n\tts52: Thanks! You too!\r\n\n\n4) goulo: Build G1 Goulo\n\n5) ts52: Trade G1 B1 Ts52\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) ts52: Build B1 Ts52\n\n8) goulo: Build G1 Goulo\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) goulo: Trade G3 B3 Goulo\n\n11) ts52: Build B2 Kermit\n\n12) goulo: Build G1 Goulo\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) goulo: Discover B3 Goulo Y1 Flaveto\n\n15) ts52: Build B2 Kermit\n\n16) goulo: Move B3 Flaveto Goulo\n\n17) ts52: Trade B2 G2 Kermit\n\n18) goulo: Discover G1 Goulo Y1 Flaveto\n\n19) ts52: Build B2 Kermit\n\n20) goulo: Move G1 Flaveto Kermit\n\n21) ts52: Discover G2 Kermit B3 Grover\n\n22) goulo: Build G1 Kermit\n\n23) ts52: Discover B2 Kermit G3 Oscar\n\n24) goulo: Build G2 Kermit\nCatastrophe Kermit G\n\n25) ts52: Build B1 Ts52\n\n26) goulo: Build G1 Goulo\n\n27) ts52: Discover B1 Ts52 G2 Kermit\n\n28) goulo: Trade G1 R1 Goulo\n\n29) ts52: Trade B1 R1 Ts52\n\n30) goulo: Build Y1 Goulo\n\n31) ts52: Build B1 Oscar\n\n32) goulo: Discover Y1 Goulo Y1 Flaveto\n\n33) ts52: Trade B2 Y2 Oscar\n\n34) goulo: Build Y2 Goulo\n\n35) ts52: Build B2 Kermit\n\n36) goulo: Build G1 Goulo\n\n37) ts52: Build B2 Oscar\n\n38) goulo: Discover Y1 Flaveto G2 Verdo\n\n39) ts52: Build B3 Oscar\n\n40) goulo: Build Y1 Verdo\n\n41) ts52: Trade B3 Y3 Oscar\n\n42) goulo: Build Y2 Verdo\n\n43) ts52: Move Y2 Oscar Verdo\nCatastrophe Verdo Yellow\n\n\tgoulo: i can&#39;t see any hope for me here... thanks for the game!\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 28420)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.1, Ended: 2015.11.5\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y2 G3\n\n2) Simon: Homeworld R3 B1 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: B B2 Wil\n\n8) Simon: Build B2 Simon\n\n9) wil: D B2 Wil G1 G1\n\n10) Simon: Trade B2 Y2 Simon\n\n11) wil: T B1 R1 Wil\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) wil: B R1 Wil\n\n14) Simon: Build B1 G2\n\n15) wil: M R1 Wil G1\n\n16) Simon: Build B2 G2\n\n17) wil: B R1 G1\n\n18) Simon: Trade B2 R2 G2\n\n19) wil: T R1 Y1 G1\n\n20) Simon: Trade B1 Y1 G2\n\n21) wil: B G1 Wil\n\n22) Simon: Build Y1 Simon\n\n23) wil: B Y2 G1\n\n24) Simon: Discover Y2 Simon B2 B2\n\n25) wil: M Y1 G1 B2\n\n26) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 B2\nBuild Y3 G2\n\n27) wil: M Y2 G1 B2\nC B2 Y\n\n28) Simon: Trade Y3 G3 Simon\n\twil: Yeah, I got behind the ball there\n\n29) wil: T G1 Y1 Wil\n\n30) Simon: Move Y3 G2 G1\n\tSimon: hmm, and catastrophe is expensive as always, but looks like the only move still.\n\n31) wil: D Y1 Wil G1 Gee1\n\n32) Simon: Sacrifice R2 G2\nAttack R1 G1\nAttack B2 G1\n\twil: It is really time to knock over my king\n\n33) wil: B Y2 Gee1\n\n34) Simon: Build Y2 G2\n\n35) wil: D Y1 Gee1 B2 B2\n\n36) Simon: Build Y3 G1\n\n37) wil: B Y3 Gee1\n\n38) Simon: Trade Y3 R3 G1\n\n39) wil: D Y2 Gee1 B2 Bee2\n\n40) Simon: Build Y3 Simon\n\n\twil: I could wait for an error...but you got me\n\tSimon: gg.\n\nHomeworlds Online (SDG# 28488)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.2, Ended: 2015.11.13\nParticipants: wil (S), foksieloy (N)\nWinner: wil\n\n1) foksieloy: Homeworld Y3 B1 G3\n\tfoksieloy: Hi wil, been a while. Let&#39;s hit one.\n\n2) wil: H Y3 B2 G3\n\twil: It has and thx!\n\n3) foksieloy: Build G1 Foksieloy\n\n4) wil: B G1 Wil\n\n5) foksieloy: Discover G1 Foksieloy B2 Tibbers\n\n6) wil: T G1 B1 Wil\n\n7) foksieloy: Trade G1 B1 Tibbers\n\n8) wil: B B2 Wil\n\n9) foksieloy: Build G1 Foksieloy\n\n10) wil: D B1 Wil Y1 Y1\n\n11) foksieloy: Move G1 Foksieloy Tibbers\n\n12) wil: B B3 Wil\n\n13) foksieloy: Build G1 Foksieloy\n\n14) wil: T B2 R2 Wil\n\n15) foksieloy: Trade G1 R1 Foksieloy\n\n16) wil: B B2 Wil\n\n17) foksieloy: Build G1 Tibbers\n\n18) wil: S G3 Wil\nB B3 Y1\nB B3 Y1\nB R1 Wil\n\n19) foksieloy: Trade G1 Y1 Tibbers\n\n20) wil: T B3 R3 Y1\n\n21) foksieloy: Discover B1 Tibbers G1 Annie\n\n22) wil: T B1 G1 Y1\n\n23) foksieloy: Sacrifice Y1 Tibbers\nMove B1 Annie Wil\nCatastrophe Wil Blue\n\n24) wil: M R3 Y1 Tibbers\n\twil: Ouch\n\n25) foksieloy: Sacrifice G1 Tibbers\nBuild R1 Foksieloy\n\tfoksieloy: You still have an economic advantage.\n\n26) wil: B B1 Y1\n\twil: He says twisting the sword...\n\n27) foksieloy: Build R2 Foksieloy\n\n28) wil: B B1 Y1\n\n29) foksieloy: Trade R2 Y2 Foksieloy\n\n30) wil: M B3 Y1 Wil\n\n31) foksieloy: Discover R1 Foksieloy G2 Fiora\n\n32) wil: B B2 Y1\n\n33) foksieloy: Build R2 Foksieloy\n\n34) wil: T R1 G1 Wil\n\n35) foksieloy: Trade R2 B2 Foksieloy\n\n36) wil: D B2 Y1 Y2 Y2\n\n37) foksieloy: Move B2 Foksieloy Fiora\n\n38) wil: T B1 Y1 Y1\n\n39) foksieloy: Build R1 Fiora\n\n40) wil: T R3 Y3 Tibbers\n\n41) foksieloy: Build B1 Fiora\n\n42) wil: B B3 Y1\n\n43) foksieloy: Trade B1 Y1 Fiora\n\n44) wil: T B3 G3 Y1\n\n45) foksieloy: Build Y2 Fiora\n\n46) wil: S G3 Y1\nB B1 Wil\nB B3 Y2\nB B3 Y1\n\n47) foksieloy: Move Y2 Fiora Wil\n\n48) wil: A Y2 Wil\n\n49) foksieloy: Move Y2 Foksieloy Fiora\n\n50) wil: B R2 Wil\n\twil: To early\n\n51) foksieloy: Move Y2 Fiora Wil\n\n52) wil: D Y2 Wil G2 G2\n\n53) foksieloy: Sacrifice Y2 Wil\nMove R1 Fiora Wil\nMove R1 Fiora Wil\nCatastrophe Wil Red\n\n54) wil: B Y2 G2\n\n55) foksieloy: Trade G3 R3 Foksieloy\n\n56) wil: T B3 R3 Wil\n\n57) foksieloy: Build B3 Fiora\n\n58) wil: T B3 G3 Y2\n\n59) foksieloy: Trade B3 R3 Fiora\n\n60) wil: S G3 Y2\nB B3 Y2\nB B3 Wil\nB R1 Wil\n\n61) foksieloy: Build R1 Fiora\n\n62) wil: B G1 Y1\n\n63) foksieloy: Move R1 Fiora Wil\n\n64) wil: M R3 Wil Y2\n\n65) foksieloy: Build R2 Fiora\n\n66) wil: S G1 Y1\nB R2 Y2\n\n67) foksieloy: Trade R1 G1 Foksieloy\n\n68) wil: A R1 Wil\n\n69) foksieloy: Build G2 Foksieloy\n\n70) wil: S Y2 G2\nM R1 Wil Fiora\nM R1 Wil Fiora\nC Fiora R\n\n71) foksieloy: Build Y2 Fiora\n\n72) wil: S Y2 G2\nM Y3 Tibbers Foksieloy\nM B3 Y2 Foksieloy\n\n73) foksieloy: Attack Y3 Foksieloy\n\n74) wil: S R3 Y2\nA Y3 Foksieloy\nA R3 Foksieloy\nA G2 Foksieloy\n\n\twil: Why this system looks suitable for a new colony.... They&#39;ve left all these nice ships!\n\twil: 40 moves...good game!\n\tfoksieloy: This was quite fun. gg!\n\nHomeworlds Online (SDG# 28043)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.3, Ended: 2015.11.6\nParticipants: kanzenryu (S), SilentTitan (N)\nWinner: kanzenryu\n\n\nHomeworlds Online (SDG# 28186)\nStarted: 2015.11.3, Ended: 2015.11.10\nParticipants: ts52 (S), kanzenryu (N)\nWinner: ts52\n\n1) kanzenryu: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\tkanzenryu: If you don&#39;t feel like playing a newbie just let me know and I&#39;ll resign.\n\tts52: I&#39;m always happy to play a newbie. More players is a good thing. Feel free to ask questions. Just make a move then undo it, so SDG will still send me an email.\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) ts52: Build G1 Ts52\n\tkanzenryu: I&#39;m having a hard time convincing people to play with the plastic pyramids I got for my birthday so it&#39;s great to be able to play online.\n\tts52: Oh no. That&#39;s terrible. Although I have the same problem. No one around here want&#39;s to play homeworlds... :(\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) ts52: Trade G1 B1 Ts52\n\n7) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: I&#39;ve been kind of obsessed with this game ever since I read the rules.\n\n8) ts52: Build B1 Ts52\n\n9) kanzenryu: Build Y1 Kanzenryu\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) kanzenryu: Discover Y1 Kanzenryu G3 Moon\n\n12) ts52: Build B2 Kermit\n\n13) kanzenryu: Build Y1 Moon\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) kanzenryu: Build Y2 Kanzenryu\n\n16) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n17) kanzenryu: Discover G1 Kanzenryu B3 Desperation\n\tkanzenryu: Ironically the Smurf fleet warps into the Kermit system\n\n18) ts52: Trade B3 G3 Ts52\n\n19) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: Oops meant b3, that&#39;s better\n\n20) ts52: Build B3 Ts52\n\n21) kanzenryu: Sacrifice Y2 Kanzenryu\nDiscover Y1 Moon G2 Close\nMove Y1 Moon Close\n\n22) ts52: Discover B2 Kermit G3 Oscar\n\n23) kanzenryu: Move Y1 Close Ts52\n\n24) ts52: Trade B3 R3 Ts52\n\n25) kanzenryu: Sacrifice G3 Kanzenryu\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild G1 Desperation\nCatastrophe Ts52 Y\n\tkanzenryu: And... this marks the first time I&#39;ve made it to the other side in any game so far ;-)\n\n26) ts52: Sacrifice Y2 Kermit\nMove R3 Ts52 Oscar\nMove R3 Oscar Kanzenryu\n\tts52: :)\n\n\tkanzenryu: Yes indeed. But the current economic climate was not favorable for starship building for any strategy. Thanks so much for the game.\n\tts52: Thank you for the game. Happy to play again, any time.\n\nHomeworlds Online (SDG# 28397)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.3, Ended: 2015.11.8\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 B1 G3\n\tSimon: Hi, enjoy. :-)\n\n2) kanzenryu: Homeworld B1 Y2 G3\n\n3) Simon: Build G1 Simon\n\tkanzenryu: More fun coming up\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Simon: Trade G1 B1 Simon\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Simon: Build B2 Simon\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) Simon: Trade B2 Y2 Simon\n\tkanzenryu: Ah, now I see why you did that. Medium ship.\n\n10) kanzenryu: Trade G1 R1 Kanzenryu\n\tSimon: Yeah, this follows from the colors of 1-pointers in the homeworlds.\n\n11) Simon: Discover B1 Simon G2 G2\n\n12) kanzenryu: Discover Y1 Kanzenryu G3 Foothold\n\n13) Simon: Build B2 G2\n\n14) kanzenryu: Build G1 Kanzenryu\n\n15) Simon: Trade B2 Y2 G2\n\tkanzenryu: Not being able to trade for a small blue ship is annoying!\n\n16) kanzenryu: Build Y1 Foothold\n\n17) Simon: Build B2 G2\n\n18) kanzenryu: Build R1 Kanzenryu\n\n19) Simon: Trade B2 R2 G2\n\n20) kanzenryu: Discover Y1 Foothold G2 Staging\n\n21) Simon: Build B2 G2\n\n22) kanzenryu: Build Y1 Staging\n\n23) Simon: Build Y3 G2\n\n24) kanzenryu: Build Y3 Foothold\n\n25) Simon: Build Y3 Simon\n\n26) kanzenryu: Trade G3 B3 Kanzenryu\n\n27) Simon: Trade Y3 R3 Simon\n\n28) kanzenryu: Move R1 Kanzenryu Foothold\n\n29) Simon: Move R3 Simon Staging\n\n30) kanzenryu: Sacrifice Y1 Staging\nDiscover Y1 Staging G3 Other\n\n31) Simon: Build G1 Simon\n\n32) kanzenryu: Discover Y3 Foothold R2 Brink\n\n33) Simon: Move B2 G2 Foothold\n\n34) kanzenryu: Move Y3 Brink Foothold\n\n35) Simon: Sacrifice Y3 G2\nMove B2 Foothold Kanzenryu\nMove B1 G2 Foothold\nMove B1 Foothold Kanzenryu\nCatastrophe Kanzenryu B\n\n36) kanzenryu: Move Y3 Foothold Kanzenryu\n\n37) Simon: Build Y1 Simon\n\n38) kanzenryu: Build Y3 Foothold\n\n39) Simon: Build Y3 G2\n\n40) kanzenryu: Discover Y1 Foothold R2 Hopeful\n\n41) Simon: Discover Y2 Simon R2 R2\n\n42) kanzenryu: Build G1 Kanzenryu\n\n43) Simon: Sacrifice Y2 G2\nMove Y2 R2 Foothold\nMove Y2 Foothold Kanzenryu\n\n44) kanzenryu: Discover Y3 Kanzenryu R3 Yikes\n\tkanzenryu: Wow, nice.\n\n45) Simon: Sacrifice R3 Staging\nAttack R1 Kanzenryu\nAttack G1 Kanzenryu\nAttack G1 Kanzenryu\n\tkanzenryu: Party at my place\n\tSimon: Yes, this kind of maneuver needs thorough calculation, otherwise it&#39;s too expensive. You may have one star left only, but haven&#39;t done any maneuvers that exhaust your own fleet, potentially giving you the more active position.\n\tSimon: Nonetheless, you seem to understand well the moves that occur. :) Even if you don&#39;t anticipate all of them, but that&#39;s the experience growing still. gg. Have your reallife pieces arrived yet?\n\tkanzenryu: Yes. Mainly been playing IceTowers with my family.  They&#39;re not into more hardcore games.\n\n\nHomeworlds Online (SDG# 28433)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.3, Ended: 2015.11.11\nParticipants: wil (S), kanzenryu (N)\nWinner: wil\n\n1) kanzenryu: Homeworld Y1 B3 G3\n\n2) wil: H B3 Y2 G3\n\tkanzenryu: If you&#39;re not keen on playing newbies let me know and I&#39;ll resign.\n\twil: No problem... If you&#39;d like any instructions just ask....enjoy teaching the game\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) wil: B G1 Wil\n\tkanzenryu: I&#39;m really enjoying learning this game. Trying to concentrate on noticing what sacrifice opportunities exist for both sides.\n\twil: It took me a while to see the strategies come at me...\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) wil: T G1 Y1 Wil\n\n7) kanzenryu: Build Y2 Kanzenryu\n\n8) wil: B Y2 Wil\n\tkanzenryu: Now I&#39;m wondering why you let me build a y2...\n\n9) kanzenryu: Discover Y2 Kanzenryu G2 Foothold\n\n10) wil: D Y1 Wil G1 G1\n\n11) kanzenryu: Build Y3 Foothold\n\n12) wil: B Y3 G1\n\n13) kanzenryu: Trade Y1 R1 Kanzenryu\n\n14) wil: T Y2 R2 Wil\n\n15) kanzenryu: Build G1 Kanzenryu\n\n16) wil: D Y1 G1 G2 G2\n\n17) kanzenryu: Build R1 Kanzenryu\n\n18) wil: B G1 Wil\n\n19) kanzenryu: Move R1 Kanzenryu Foothold\n\n20) wil: T G1 B1 Wil\n\n21) kanzenryu: Trade G1 B1 Kanzenryu\n\n22) wil: M B1 Wil G1\n\n23) kanzenryu: Move B1 Kanzenryu Foothold\n\n24) wil: B Y1 G2\n\n25) kanzenryu: Build G1 Kanzenryu\n\n26) wil: B G1 Wil\n\n27) kanzenryu: Discover Y2 Foothold R1 Peep\n\n28) wil: M G1 Wil G1\n\n29) kanzenryu: Build R2 Foothold\n\n30) wil: D G1 G1 Y3 Y3\n\n31) kanzenryu: Build Y2 Foothold\n\n32) wil: B G2 Wil\n\n33) kanzenryu: Sacrifice G3 Kanzenryu\nBuild B1 Foothold\nBuild R2 Kanzenryu\nBuild G3 Kanzenryu\n\n34) wil: B G3 Y3\n\n35) kanzenryu: Move R2 Kanzenryu G2\n\n36) wil: S G2 Wil\nB R3 Wil\nB B2 G1\n\n37) kanzenryu: Attack Y1 G2\n\n38) wil: M R2 Wil G1\n\n39) kanzenryu: Build R3 G2\n\n40) wil: S G3 Y3\nB G2 Wil\nB G3 Y3\nB R3 G1\n\n41) kanzenryu: Move Y1 G2 Peep\n\n42) wil: D Y1 G2 B3 B3\n\n43) kanzenryu: Sacrifice Y3 Foothold\nMove Y2 Foothold Peep\nMove Y1 Peep Wil\nMove Y2 Peep Wil\n\n44) wil: B Y3 G1\n\n45) kanzenryu: Move Y2 Peep Wil\nCatastrophe Wil Y\n\n46) wil: M Y3 G1 Foothold\n\tkanzenryu: This is when I want to negotiate a peace treaty ;-)\n\twil: I will send over a red cardinal to discuss your surrender\n\n47) kanzenryu: Trade R1 Y1 Foothold\n\n48) wil: S R2 G1\nA R2 Foothold\nA Y1 Foothold\n\twil: On second thought our secretary of transportation might be better suited\n\tkanzenryu: Ha ha, nice\n\n\tkanzenryu: Staring down a lot of barrels pointed at me.\n\twil: True... I still had work to do but was in control\n\nHomeworlds Online (SDG# 28495)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.3, Ended: 2015.11.24\nParticipants: TwoShort (S), Simon (N)\nWinner: TwoShort\n\n1) Simon: Homeworld R3 B1 G3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\tSimon: Hi, enjoy the game!\n\n3) Simon: Build G1 Simon\n\tTwoShort: Howdy!\n\n4) TwoShort: Build B1 Twoshort\n\n5) Simon: Build G1 Simon\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Simon: Trade G3 Y3 Simon\n\n8) TwoShort: Build B2 Twoshort\n\n9) Simon: Discover G1 Simon B2 B2\n\n10) TwoShort: Discover B2 Twoshort G3 Grogar\n\n11) Simon: Build G1 B2\n\n12) TwoShort: Build B2 Twoshort\n\n13) Simon: Build G2 B2\n\n14) TwoShort: Build B3 Grogar\n\n15) Simon: Trade G2 Y2 B2\n\n16) TwoShort: Discover B2 Twoshort G3 Greenland\n\n17) Simon: Build G2 B2\n\n18) TwoShort: Build B3 Twoshort\n\n19) Simon: Move G1 B2 Grogar\n\n20) TwoShort: Build B3 Greenland\n\n21) Simon: Build G2 B2\n\n22) TwoShort: Discover B1 Twoshort G3 Gondor\n\n23) Simon: Trade G2 R2 B2\n\n24) TwoShort: Trade B2 R2 Greenland\n\n25) Simon: Sacrifice G2 B2\nBuild G2 Grogar\nBuild G2 Grogar\nCatastrophe Grogar G\n\n26) TwoShort: Build B2 Gondor\n\n27) Simon: Build G1 Simon\n\n28) TwoShort: Build B2 Greenland\n\n29) Simon: Build G2 Simon\n\n30) TwoShort: Build B3 Twoshort\n\n31) Simon: Build G2 B2\n\n32) TwoShort: Sacrifice B2 Gondor\nTrade B3 Y3 Greenland\nTrade B3 G3 Twoshort\n\n33) Simon: Trade G2 B2 Simon\n\n34) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Gondor\nBuild B3 Greenland\nBuild R1 Greenland\n\n35) Simon: Build G2 B2\n\n36) TwoShort: Move B3 Greenland B2\n\n37) Simon: Build G3 Simon\n\n38) TwoShort: Sacrifice R2 Greenland\nAttack R2 B2\nAttack Y2 B2\n\n39) Simon: Discover G3 Simon R2 R2\n\n40) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Greenland B2\nMove Y3 B2 Simon\nMove B3 B2 Simon\n\n\tSimon: gg\n\tSimon: And instructive opening too. There should be no problem if I trade the queen at home to blue once, but it must done very early.\n\tTwoShort: Thanks for the game!  You can escape the blue lock by trading the queen asap, but I think forcing you to spend a few early turns dealing with it gives me enough of a jump that it&#39;s still a problem :)\n\nHomeworlds Online (SDG# 28507)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.3, Ended: 2015.11.6\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H Y3 B1 G3\n\n2) endo: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) endo: Build G1 Endo\n\n5) wil: T G1 B1 Wil\n\n6) endo: Trade G1 Y1 Endo\n\n7) wil: B B1 Wil\n\n8) endo: Build Y1 Endo\n\twil: Ah you chose to race\n\n9) wil: D B1 Wil G2 G2\n\n10) endo: Discover Y1 Endo B3 Well\n\n11) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\n\n12) endo: Build Y2 Endo\n\n13) wil: T B2 Y2 G2\n\n14) endo: Discover Y1 Endo B3 Lattice\n\n15) wil: B Y2 G2\n\n16) endo: Build G1 Endo\n\n17) wil: D Y2 G2 G3 G3\n\n18) endo: Sacrifice G3 Endo\nBuild G1 Endo\nBuild Y3 Well\nBuild Y3 Lattice\n\n19) wil: T B3 G3 Wil\n\n20) endo: Trade Y1 R1 Well\n\n21) wil: T B2 R2 G2\n\n22) endo: Sacrifice Y2 Endo\nMove Y3 Well Endo\nMove Y3 Lattice G2\n\n23) wil: B Y1 G2\n\n24) endo: Sacrifice R1 Well\nAttack R2 G2\n\n25) wil: M Y2 G3 G2\nC G2 Y\n\n26) endo: Attack B1 G2\n\n27) wil: B B2 Wil\n\n28) endo: Sacrifice Y1 Lattice\nMove B1 G2 Wil\nCatastrophe Wil B\n\n29) wil: B G1 Wil\n\n30) endo: Move Y3 Endo Wil\n\twil: Nice plays\n\n\tendo: Thanks for the game! You had me in a kinda tight situation at around moves 6-11 with your blue domination, catastrophe threats and bunch of medium ships against my extra Y3, but apparently I managed to create enough complications to wrestle my way out.\n\nHomeworlds Online (SDG# 28499)\nStarted: 2015.11.3, Ended: 2015.11.11\nParticipants: ts52 (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) endo: Build G1 Endo\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tendo: Same to you!\n\n5) endo: Trade G1 B1 Endo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) endo: Build B2 Endo\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) endo: Discover B1 Endo G2 Cyclic\n\n10) ts52: Build G1 Ts52\n\n11) endo: Sacrifice G3 Endo\nBuild B2 Cyclic\nBuild B3 Endo\nBuild B3 Cyclic\n\n12) ts52: Build B3 Kermit\n\n13) endo: Trade B2 Y2 Cyclic\n\n14) ts52: Trade B3 Y3 Kermit\n\n15) endo: Trade B3 G3 Endo\n\n16) ts52: Build Y1 Kermit\n\n17) endo: Discover B1 Cyclic G1 Simple\n\tendo: Gotta get the move order right!\n\n18) ts52: Trade Y3 R3 Kermit\n\n19) endo: Trade B2 R2 Endo\n\n20) ts52: Build B2 Kermit\n\n21) endo: Build B2 Cyclic\n\n22) ts52: Discover B2 Kermit G2 Oscar\n\n23) endo: Build B3 Simple\n\n24) ts52: Build B3 Oscar\n\n25) endo: Trade B2 G2 Cyclic\n\n26) ts52: Discover G1 Ts52 Y1 Zoe\n\n27) endo: Build G3 Endo\n\n28) ts52: Build B2 Kermit\n\n29) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild R1 Endo\nBuild R1 Endo\n\n30) ts52: Trade B2 R2 Oscar\n\n31) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Cyclic\nBuild Y1 Cyclic\n\n32) ts52: Move Y1 Kermit Oscar\n\n33) endo: Move R2 Endo Cyclic\n\n34) ts52: Build Y2 Oscar\n\n35) endo: Move B2 Cyclic Zoe\n\n36) ts52: Move G1 Zoe Ts52\n\n37) endo: Move Y2 Cyclic Simple\n\n38) ts52: Move Y2 Oscar Kermit\n\n39) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Simple\nBuild Y3 Cyclic\n\n40) ts52: Build R1 Kermit\n\n41) endo: Sacrifice Y3 Cyclic\nMove G3 Endo Oscar\nMove G3 Oscar Kermit\nMove G3 Kermit Ts52\n\n42) ts52: Trade G3 R3 Ts52\n\n43) endo: Sacrifice R2 Cyclic\nAttack G1 Ts52\nAttack R3 Ts52\n\n\tts52: Thanks for the game.\n\tendo: Thanks!\n\nHomeworlds Online (SDG# 28500)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.3, Ended: 2015.11.7\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) Simon: Homeworld B3 R1 G3\n\tendo: Hey, we haven&#39;t played yet! Have fun!\n\tSimon: Hi, enjoy! :-)\n\n3) endo: Build G1 Endo\n\n4) Simon: Build G1 Simon\n\n5) endo: Trade G1 B1 Endo\n\n6) Simon: Trade G1 B1 Simon\n\n7) endo: Build B2 Endo\n\n8) Simon: Build B2 Simon\n\n9) endo: Discover B1 Endo G2 Compact\n\n10) Simon: Trade B2 Y2 Simon\n\n11) endo: Build B2 Compact\n\tSimon: oh yeah, small universe.\n\n12) Simon: Build B2 Simon\n\tendo: It took me a while to realize that as well...\n\n13) endo: Trade B2 Y2 Endo\n\n14) Simon: Sacrifice B1 Simon\nTrade B2 Y2 Simon\n\n15) endo: Trade B2 R2 Compact\n\n16) Simon: Discover Y2 Simon G2 G2\n\n17) endo: Build R1 Compact\n\n18) Simon: Build Y1 G2\n\n19) endo: Move Y2 Endo G2\n\n20) Simon: Build Y1 Simon\n\n21) endo: Build B1 Compact\n\n22) Simon: Discover Y1 Simon B2 B2\n\n23) endo: Sacrifice R2 Compact\nAttack Y1 G2\nAttack Y2 G2\n\n24) Simon: Move Y2 Simon G2\nCatastrophe G2 Y\n\n25) endo: Build R1 Compact\n\n26) Simon: Build G1 Simon\n\n27) endo: Build B2 Compact\n\n28) Simon: Trade G1 Y1 Simon\n\n29) endo: Trade B2 Y2 Compact\n\n30) Simon: Build G1 Simon\n\n31) endo: Build B2 Compact\n\n32) Simon: Build G1 Simon\n\n33) endo: Build R2 Compact\n\n34) Simon: Move G1 Simon B2\n\n35) endo: Trade R2 Y2 Compact\n\n36) Simon: Sacrifice G3 Simon\nBuild Y1 B2\nBuild Y2 B2\nBuild Y3 Simon\n\n37) endo: Move B1 Compact Simon\n\n38) Simon: Build G1 B2\n\n39) endo: Sacrifice Y2 Compact\nMove B1 Compact Simon\nMove B2 Compact Simon\nCatastrophe Simon B\n\n40) Simon: Build G2 Simon\n\n41) endo: Move R1 Compact Endo\n\n42) Simon: Build G2 Simon\n\n43) endo: Build R2 Compact\n\n44) Simon: Move G1 B2 Endo\n\n45) endo: Build R2 Compact\n\n46) Simon: Sacrifice Y3 Simon\nMove G1 Endo Compact\nMove G1 Simon Compact\nMove G2 Simon Compact\nCatastrophe Compact G\n\n47) endo: Build G1 Endo\n\n48) Simon: Build Y2 Simon\n\n49) endo: Build R1 Endo\n\n50) Simon: Discover Y2 Simon Y2 Y2\n\n51) endo: Build R2 Endo\n\n52) Simon: Build Y3 Simon\n\n53) endo: Move R2 Endo B2\n\n54) Simon: Sacrifice Y2 Y2\nMove Y1 B2 Endo\nMove Y1 B2 Endo\n\n55) endo: Attack Y2 B2\n\n\tSimon: gg. :) It might have remained playable had I sacrificed the other y2, but it would have been hard still.\n\tendo: Good game! I think you were winning (by gaining total control over yellow) until the last few moves. You should have traded into red to prevent the invasion. Interestingly, I had a draw after your move 22 (which I think I should have taken, objectively speaking). I sacrifice my Y2 and bring my R1 and R2 to your homeworld, threatening to sacrifice the G3 for a catastrophe. You sacrifice your Y3 and blow up my G3 with your G1&#39;s. Then we attack one of your G2&#39;s back and forth. The system could probably not deal very well with such a situation!\n\tSimon: Yeah, that&#39;s a draw. I don&#39;t know what the official ruling is about repetition, there is no draw offer on this implementation at least. I believe it&#39;s still a hole in the rules.\r\n\r\nI should have traded the y2 for an r2 instead of sending in the g1 on move 22, right. Trading for red seemed necessary, but slow; but it was very urgent by then.\n\tSimon: And I&#39;d always be happy to play again :)\n\nHomeworlds Online (SDG# 28520)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.5, Ended: 2015.11.28\nParticipants: fogus (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y2 G3\n\n2) fogus: Homeworld Y3 B1 G3\n\tfogus: homeworld g3 y3 b1\n\n3) endo: Build G1 Endo\n\n4) fogus: Build G1 Fogus\n\n5) endo: Trade G1 B1 Endo\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) endo: Build B2 Endo\n\n8) fogus: Build G1 Fogus\n\n9) endo: Discover B1 Endo G3 Separable\n\n10) fogus: Build G1 Fogus\n\n11) endo: Build B2 Endo\n\n12) fogus: Trade G1 R1 Fogus\n\n13) endo: Discover B2 Endo Y3 Regular\n\n14) fogus: Discover R1 Fogus Y2 Flib\n\n15) endo: Sacrifice G3 Endo\nBuild B2 Separable\nBuild B3 Endo\nBuild B3 Regular\n\n16) fogus: Build G1 Fogus\n\tfogus: I&#39;ve never faced this strategy before.  It&#39;s blowing my mind! \n\n17) endo: Build B3 Separable\n\n18) fogus: Build Y1 Fogus\n\n19) endo: Trade B3 G3 Regular\n\n20) fogus: Move G1 Fogus Flib\n\n21) endo: Build B3 Regular\n\n22) fogus: Build R1 Flib\n\n23) endo: Trade B3 R3 Separable\n\n24) fogus: Trade Y1 R1 Fogus\n\n25) endo: Move B3 Regular Flib\n\n26) fogus: Sacrifice G1 Flib\nBuild R2 Fogus\n\n27) endo: Sacrifice R3 Separable\nAttack R1 Flib\nAttack R1 Flib\nPass\n\n28) fogus: Discover R2 Fogus Y2 Frogger\n\n29) endo: Build B3 Separable\n\n30) fogus: Build R2 Fogus\n\n31) endo: Trade B3 R3 Separable\n\n32) fogus: Build Y1 Fogus\n\n33) endo: Build B3 Separable\n\n34) fogus: Discover R1 Fogus G2 Flipper\n\n35) endo: Trade B3 R3 Endo\n\n36) fogus: Trade R2 G2 Fogus\n\n37) endo: Trade B3 Y3 Separable\n\n\nHomeworlds Online (SDG# 28492)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.5, Ended: 2015.11.15\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B2 Y1 G3\n\twil: I&#39;ll try harder!\n\n2) Simon: Homeworld R3 B1 G3\n\n3) wil: B G1 Wil\n\tSimon: Have fun!\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B B1 Wil\n\n8) Simon: Build Y1 Simon\n\n9) wil: D B1 Wil G3 G3\n\n10) Simon: Build Y2 Simon\n\n11) wil: B B2 Wil\n\n12) Simon: Discover Y2 Simon G2 G2\n\n13) wil: T B2 Y2 Wil\n\n14) Simon: Build Y2 Simon\n\n15) wil: D B1 Wil Y3 Y3\n\n16) Simon: Build Y3 G2\n\n17) wil: M Y2 Wil G3\n\n18) Simon: Trade Y2 B2 Simon\n\n19) wil: B G1 Wil\n\n20) Simon: Move B2 Simon G2\n\n21) wil: D G1 Wil Y3 Why3\n\n22) Simon: Trade Y3 R3 G2\n\n23) wil: T B1 G1 Y3\n\n24) Simon: Build R1 G2\n\n25) wil: B Y2 G3\n\n26) Simon: Build Y3 G2\n\n27) wil: T Y2 R2 G3\n\twil: You missed the win...s y2 send r3 in\n\twil: Not that you still ain&#39;t in the catbird seat\n\n28) Simon: Build Y2 Simon\n\n29) wil: S G1 Why3\nB Y3 G3\n\tSimon: Hnn yeah, I didn&#39;t even look for anything, was focused on development only.\n\n30) Simon: Discover Y2 Simon G2 G2b\n\n31) wil: B R1 G3\n\n32) Simon: Build B1 G2\n\n33) wil: D Y2 G3 G2 Gee2\n\n34) Simon: Move B2 G2 Y3\n\n35) wil: M G1 Y3 Wil\n\n36) Simon: Build G1 Simon\n\n37) wil: M R1 G3 Wil\n\n38) Simon: Move G1 Simon G2b\n\n39) wil: D R2 G3 G1 G1\n\n40) Simon: Move Y3 G2 G1\n\n41) wil: B R1 Wil\n\n42) Simon: Sacrifice R1 G2\nAttack R2 G1\n\n43) wil: M R1 Wil G3\n\n44) Simon: Move R2 G1 Y3\n\n45) wil: S G3 Wil\nB G3 Wil\nB R1 G3\nB R2 Wil\n\n46) Simon: Discover Y3 G1 R3 R3\n\n47) wil: D R1 G3 G1 G1\n\n48) Simon: Move G1 G2b Y3\n\n49) wil: S G3 Wil\nB G3 Wil\nB R2 G3\nB B2 G3\n\tSimon: no, I will not go and mop it up again. You can have it sit at the g1!\n\n50) Simon: Build B3 Y3\n\n51) wil: M B1 G3 Gee2\n\n52) Simon: Move Y3 R3 Gee2\n\n53) wil: S G3 Wil\nB G3 Wil\nB B3 G3\nB R3 G1\n\n54) Simon: Build B3 G2\n\n55) wil: S Y2 Gee2\nMove B1 Gee2 G3\nD B1 G3 Y2 Y2\n\n56) Simon: Move Y2 G2b Y3\n\n57) wil: M Y3 G3 G1\n\n58) Simon: Build G2 Y3\n\n59) wil: M R3 G1 Y2\n\n60) Simon: Sacrifice Y2 Y3\nMove G1 Y3 Wil\nMove G2 Y3 Wil\nCatastrophe Wil G\n\n\twil: Yeah...that&#39;s the end\n\tSimon: gg.\n\nHomeworlds Online (SDG# 28559)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.8, Ended: 2015.11.13\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\twil: Been gettin my butt kicked all over the board\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Played endo? He&#39;s pretty good.\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B B1 Dlwillson\n\n8) wil: B Y1 Wil\n\n9) dlwillson: D B1 Dlwillson G2 Forest\n\n10) wil: D Y1 Wil B3 B3\n\n11) dlwillson: B B2 Forest\n\n12) wil: S G3 Wil\nB Y2 B3\nB Y2 B3\nB Y3 Wil\n\n13) dlwillson: B G1 Dlwillson\n\n14) wil: T Y3 G3 Wil\n\n15) dlwillson: T G3 Y3 Dlwillson\n\n16) wil: B Y3 Wil\n\n17) dlwillson: Build B2 Dlwillson\n\n18) wil: T Y3 B3 Wil\n\n19) dlwillson: Move Y3 Dlwillson Forest\n\n20) wil: B Y3 Wil\n\n21) dlwillson: B G1 Dlwillson\n\n22) wil: T B3 R3 Wil\n\n23) dlwillson: S B2 Forest\nT G1 R1 Dlwillson\nT B2 G2 Dlwillson\n\n24) wil: T Y2 B2 B3\n\n25) dlwillson: B Y2 Forest\n\n26) wil: D Y2 B3 G2 G2\n\n27) dlwillson: D Y2 Forest G3 Field\n\n28) wil: D Y3 Wil Y3 Y3\n\n29) dlwillson: M Y3 Forest Dlwillson\n\n30) wil: B G1 Wil\n\n31) dlwillson: T Y3 R3 Dlwillson\n\twil: Ya finally got the big one back home\r\n..you were surprisingly well protected...\n\n32) wil: B Y3 G2\n\n33) dlwillson: M R1 Dlwillson Forest\n\n34) wil: M G1 Wil Y3\n\n35) dlwillson: S G2 Dlwillson\nB B2 Forest\nB R1 Forest\n\n36) wil: M Y3 Y3 Forest\n\n37) dlwillson: Build R1 Forest\n\n38) wil: S G1 Y3\nB Y3 Forest\n\n39) dlwillson: Discover Y2 Field G2 Fen\n\n40) wil: B R2 Wil\n\n41) dlwillson: Sacrifice B2 Forest\nTrade B1 G1 Forest\nTrade R1 G1 Forest\n\n42) wil: S Y3 G2\nM Y3 Forest B3\nM Y3 Forest B3\nM Y3 B3 Fen\n\twil: Nice try\n\n43) dlwillson: B G3 Dlwillson\n\n44) wil: B Y3 G2\n\n45) dlwillson: M G1 Dlwillson Fen\n\n46) wil: B G3 Wil\n\n47) dlwillson: M G3 Dlwillson Fen\n\n48) wil: S R3 Wil\nA G3 Fen\nA G1 Fen\nA Y2 Fen\n\n\twil: Two moves to mate I believe\n\tdlwillson: Good game! You kept picking up bigs. Well done.\n\twil: You were off you game..\n\nHomeworlds Online (SDG# 28530)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.8, Ended: 2015.11.10\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) kanzenryu: Homeworld R1 G2 B3\n\n3) endo: Build G1 Endo\n\tkanzenryu: Hi, I&#39;m just a newbie but I&#39;m really loving this game\n\n4) kanzenryu: Build B1 Kanzenryu\n\tendo: Hi! I think I&#39;ve played some 25 games so far. I like the game, but the deeper I learn to calculate, the more confusing it seems to get... Enjoy the match!\n\n5) endo: Discover G1 Endo Y2 Gch\n\tkanzenryu: I&#39;ve played about five and lost in five interesting ways.\n\n6) kanzenryu: Trade B3 Y3 Kanzenryu\n\n7) endo: Build G1 Endo\n\n8) kanzenryu: Build Y1 Kanzenryu\n\n9) endo: Sacrifice G3 Endo\nBuild G1 Gch\nBuild G2 Endo\nBuild G2 Gch\n\n10) kanzenryu: Trade Y1 R1 Kanzenryu\n\n11) endo: Build G3 Endo\n\n12) kanzenryu: Build Y1 Kanzenryu\n\n13) endo: Discover G2 Gch Y3 Ac\n\n14) kanzenryu: Trade Y3 G3 Kanzenryu\n\n15) endo: Trade G2 Y2 Endo\n\n16) kanzenryu: Move R1 Kanzenryu Ac\n\n17) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G3 Endo\nBuild G3 Ac\n\tkanzenryu: Hmmm... And to think I couldn&#39;t get in trouble early if I built one of each ship.\n\n18) kanzenryu: Trade G3 R3 Kanzenryu\n\n19) endo: Trade G3 R3 Endo\n\tendo: Although the tutorials tell you to get at least one of each, that&#39;s a gross oversimplification. The main reason it&#39;s bad to give your opponent control of some color is that then they&#39;ll be able to build medium/large ships in that color while you won&#39;t. For building those ships, however, they need room on a star with a ship of that color. Each star can usually house two ships of the same color (three in the early game or when there are no catastrophe threats, such as when you already control a color). The stars in the system reduce this value by one or two, depending on the situation.\r\n\r\nIn order to gain build capacity, you need to send your ships to new stars with a free &quot;slot&quot; as you build more. In here, you can&#39;t build green, because your green star takes away the slot.\r\n\r\nYou usually don&#39;t need to rush into all the colors, you just need to make sure you don&#39;t get frozen out of anything. In this case, I was only building green ships, so I wasn&#39;t threatening to take all the small ships of some other color.\r\n\r\nWhat you do need to take care about is that your opponent doesn&#39;t get bigger *sizes* of ships than you. Bigger ships get produced once the smaller ones run out (this is why you need a lot of build capacity in a color you are trying to control, to &quot;push&quot; the color to the bigger sizes). When you get to the medium ships, it&#39;s much easier to obtain any color when necessary, because the medium ships are exhausted only after the small ones. And, size is power, obviously.\r\n\r\nTo get to the larger ships, you can either use the same color as your opponent (build capacity less important, since either player can store the small ships) or start a &quot;race&quot; with a different color (build capacity very important). If your opponent has controlled a color, having one small of each other color won&#39;t get you towards medium and large ships.\n\n20) kanzenryu: Move R1 Ac Gch\n\tkanzenryu: Wow, thanks for all the great advice. In fact everybody on this site seems extra nice.\n\n21) endo: Sacrifice G3 Ac\nBuild G3 Endo\nBuild G3 Gch\nBuild G3 Ac\n\tendo: You&#39;re welcome! If some questions come to your mind, feel free to ask. Good luck to your upcoming games!\n\tkanzenryu: Thanks, I&#39;m going to need it ;-)\n\n\tkanzenryu: I won&#39;t waste any more of your time on this disaster ;-)\n\tendo: Thanks for the game!\n\nHomeworlds Online (SDG# 28517)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.8, Ended: 2015.11.19\nParticipants: Simon (S), kanzenryu (N)\nWinner: Simon\n\n1) kanzenryu: Homeworld G1 R3 B3\n\tkanzenryu: Thanks for the previous game! Up for another?\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: Sure sure, always happy to play!\n\n3) kanzenryu: Build B1 Kanzenryu\n\n4) Simon: Build G1 Simon\n\n5) kanzenryu: Trade B3 Y3 Kanzenryu\n\n6) Simon: Trade G1 Y1 Simon\n\n7) kanzenryu: Build Y1 Kanzenryu\n\n8) Simon: Build G1 Simon\n\n9) kanzenryu: Trade Y3 G3 Kanzenryu\n\n10) Simon: Trade G1 B1 Simon\n\n11) kanzenryu: Build G1 Kanzenryu\n\n12) Simon: Discover B1 Simon G3 G3\n\n13) kanzenryu: Discover G1 Kanzenryu Y2 First\n\n14) Simon: Build G1 Simon\n\n15) kanzenryu: Build G2 First\n\n16) Simon: Build G2 Simon\n\n17) kanzenryu: Build B1 Kanzenryu\n\n18) Simon: Discover G2 Simon B3 B3\n\n19) kanzenryu: Build G2 Kanzenryu\n\n20) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 Simon\nBuild Y2 Simon\n\n21) kanzenryu: Discover G2 Kanzenryu Y2 Out\n\n22) Simon: Trade Y1 R1 Simon\n\n23) kanzenryu: Trade B1 R1 Kanzenryu\n\n24) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 G3\nBuild B2 G3\n\n25) kanzenryu: Move R1 Kanzenryu First\n\n26) Simon: Trade B2 R2 G3\n\n27) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Out\nBuild Y1 Kanzenryu\nBuild Y3 Kanzenryu\n\n28) Simon: Move Y1 Simon G3\n\n29) kanzenryu: Move Y1 Kanzenryu Out\n\n30) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y3 Simon\nBuild Y3 G3\n\n31) kanzenryu: Sacrifice G3 Out\nBuild G3 Out\nBuild B2 Kanzenryu\nBuild R2 First\n\n32) Simon: Discover B1 G3 R2 R2\n\n33) kanzenryu: Discover Y1 Out B3 Nearly\n\n34) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G3\nBuild B3 R2\n\n35) kanzenryu: Move R2 First Nearly\n\n36) Simon: Build R3 G3\n\n37) kanzenryu: Sacrifice G3 Out\nBuild G3 Out\nBuild R3 Nearly\nPass\n\n38) Simon: Move R3 G3 First\n\n39) kanzenryu: Move R3 Nearly Simon\n\n40) Simon: Sacrifice R1 Simon\nAttack R3 Simon\n\n41) kanzenryu: Sacrifice Y3 Kanzenryu\nMove R1 First Nearly\nMove R1 Nearly Simon\nMove R2 Nearly Simon\nCatastrophe Simon R\n\n42) Simon: Sacrifice Y3 Simon\nMove R3 First Kanzenryu\nMove B3 R2 Kanzenryu\nMove B1 R2 Kanzenryu\nCatastrophe Kanzenryu B\n\n\tkanzenryu: Nice, thanks\n\tSimon: gg. Always happy to play again.\n\nHomeworlds Online (SDG# 28498)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.9, Ended: 2015.11.14\nParticipants: endo (S), SilentTitan (N)\nWinner: endo\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) endo: Homeworld B1 Y3 G3\n\n\nHomeworlds Online (SDG# 28561)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.9, Ended: 2015.11.12\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld R1 B2 G3\n\n2) Simon: Homeworld B1 R3 G3\n\tendo: Let&#39;s do another one then! I&#39;ll try a Planetary Defense System for the first time...\n\tSimon: Have fun!\n\n3) endo: Build G1 Endo\n\n4) Simon: Build G1 Simon\n\n5) endo: Trade G1 B1 Endo\n\n6) Simon: Trade G1 R1 Simon\n\n7) endo: Build B1 Endo\n\n8) Simon: Build G1 Simon\n\n9) endo: Trade B1 Y1 Endo\n\n10) Simon: Trade G1 Y1 Simon\n\n11) endo: Build B1 Endo\n\n12) Simon: Build R1 Simon\n\n13) endo: Discover B1 Endo R3 Sat\n\n14) Simon: Discover R1 Simon B2 B2\n\n15) endo: Sacrifice G3 Endo\nBuild B2 Sat\nBuild B3 Endo\nBuild B3 Sat\n\n16) Simon: Build G1 Simon\n\n17) endo: Trade B3 G3 Endo\n\n18) Simon: Build R2 Simon\n\n19) endo: Build B3 Endo\n\n20) Simon: Discover R1 Simon Y2 Y2\n\n21) endo: Trade B3 R3 Endo\n\n22) Simon: Sacrifice G3 Simon\nBuild R2 B2\nBuild R2 Y2\nBuild Y1 Simon\n\n23) endo: Build Y2 Endo\n\n24) Simon: Build Y2 Simon\n\n25) endo: Build Y3 Endo\n\n26) Simon: Discover Y1 Simon G2 G2\n\n27) endo: Sacrifice Y2 Endo\nMove B3 Sat B2\nMove B3 B2 Simon\n\n\tSimon: one of the many ways to do it. gg.\n\tendo: Good game, thanks for playing. I&#39;ve got a standing challenge up too, so you can use that when you feel like playing another one.\n\nHomeworlds Online (SDG# 28560)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.10, Ended: 2015.11.17\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y2 G3\n\tkanzenryu: I guess I know one more thing to avoid now\n\n2) kanzenryu: Homeworld G1 B3 Y3\n\n3) endo: Build G1 Endo\n\n4) kanzenryu: Build Y1 Kanzenryu\n\n5) endo: Build G1 Endo\n\n6) kanzenryu: Trade Y3 G3 Kanzenryu\n\n7) endo: Discover G1 Endo B3 Grp\n\n8) kanzenryu: Build G2 Kanzenryu\n\n9) endo: Sacrifice G3 Endo\nBuild G2 Grp\nBuild G2 Grp\nBuild G3 Endo\n\n10) kanzenryu: Trade G2 R2 Kanzenryu\n\n11) endo: Trade G2 Y2 Grp\n\n12) kanzenryu: Discover R2 Kanzenryu Y2 First\n\n13) endo: Trade G2 R2 Grp\n\n14) kanzenryu: Build Y1 Kanzenryu\n\tkanzenryu: Hmmm in trouble already\n\n15) endo: Build G2 Grp\n\n16) kanzenryu: Trade Y1 B1 Kanzenryu\n\n17) endo: Discover G2 Grp B2 Top\n\n18) kanzenryu: Build Y1 Kanzenryu\n\n19) endo: Sacrifice G3 Endo\nBuild G2 Grp\nBuild G2 Top\nBuild G3 Endo\n\n20) kanzenryu: Trade G3 R3 Kanzenryu\n\n21) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Grp\nBuild G3 Top\n\n22) kanzenryu: Build R1 Kanzenryu\n\tkanzenryu: This game simultaneously fills me with joy and makes me want to curl up into a ball rocking back and forward.\n\n23) endo: Trade G3 R3 Endo\n\n24) kanzenryu: Move R1 Kanzenryu Top\n\n25) endo: Sacrifice G3 Grp\nBuild G3 Endo\nBuild G3 Grp\nBuild R1 Grp\n\n26) kanzenryu: Build R1 Kanzenryu\n\n27) endo: Sacrifice R1 Grp\nAttack R1 Top\n\n28) kanzenryu: Move B1 Kanzenryu First\n\n29) endo: Sacrifice G3 Grp\nBuild R1 Top\nBuild R2 Endo\nBuild R3 Grp\n\n30) kanzenryu: Move Y1 Kanzenryu First\n\n31) endo: Move R3 Grp First\n\n32) kanzenryu: Sacrifice Y1 First\nDiscover R2 First G3 Peep\n\n33) endo: Sacrifice Y2 Grp\nMove R1 Top Kanzenryu\nMove R1 Top Kanzenryu\nCatastrophe Kanzenryu R\n\n\tkanzenryu: Thanks, despite the crushing result I&#39;m loving this game.\n\nHomeworlds Online (SDG# 28576)\nStarted: 2015.11.10, Ended: 2015.11.28\nParticipants: ts52 (S), kanzenryu (N)\nWinner: ts52\n\n1) kanzenryu: Homeworld G1 B3 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\tkanzenryu: Keen for more!\n\tts52: Absolutely!\n\n3) kanzenryu: Build Y1 Kanzenryu\n\n4) ts52: Build G1 Ts52\n\n5) kanzenryu: Discover Y1 Kanzenryu G2 First\n\n6) ts52: Build G1 Ts52\n\n7) kanzenryu: Trade Y3 G3 Kanzenryu\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) kanzenryu: Build G2 Kanzenryu\n\n10) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Ts52\n\n11) kanzenryu: Build Y1 First\n\n12) ts52: Trade G2 Y2 Grover\n\n13) kanzenryu: Trade G2 R2 Kanzenryu\n\n14) ts52: Sacrifice G3 Grover\nBuild G2 Ts52\nBuild G2 Grover\nBuild G3 Grover\n\n15) kanzenryu: Build R1 Kanzenryu\n\n16) ts52: Trade G3 R3 Grover\n\n17) kanzenryu: Discover Y1 First B3 Nearly\n\n18) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y2 Grover\n\n19) kanzenryu: Build Y2 First\n\n20) ts52: Discover Y2 Grover B2 Gonzo\n\n21) kanzenryu: Move Y1 First Kanzenryu\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild Y3 Gonzo\n\tkanzenryu: Retreat!\n\n23) kanzenryu: Build Y3 Kanzenryu\n\n24) ts52: Trade G2 R2 Ts52\n\n25) kanzenryu: Move G3 Kanzenryu First\n\n26) ts52: Sacrifice Y2 Grover\nMove G1 Grover First\nMove G2 Grover First\nCatastrophe First Green\n\n27) kanzenryu: Discover Y1 Kanzenryu G2 New\n\n28) ts52: Build Y2 Grover\n\n29) kanzenryu: Build Y2 New\n\n30) ts52: Trade Y2 G2 Gonzo\n\n31) kanzenryu: Build Y2 Kanzenryu\n\n32) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G2 Grover\nBuild G3 Ts52\n\n33) kanzenryu: Trade Y3 G3 Kanzenryu\n\n34) ts52: Sacrifice Y2 Grover\nMove G1 Gonzo Kanzenryu\nMove G2 Gonzo Kanzenryu\nCatastrophe Kanzenryu Green\n\n\tkanzenryu: Good game, thanks\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 28501)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.11, Ended: 2015.11.15\nParticipants: wil (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\tAusmuh: Hello again.  I&#39;m back after a hiatus. Sorry about the sudden disappearance last year ish...\n\twil: Why apologize for life?  Welcome back!\n\n3) Ausmuh: Build G1 Ausmuh\n\n4) wil: B G1 Wil\n\n5) Ausmuh: Trade G1 Y1 Ausmuh\n\n6) wil: T G1 Y1 Wil\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) wil: B Y2 Wil\n\n9) Ausmuh: Discover Y1 Ausmuh G2 Blellow\n\n10) wil: D Y1 Wil G3 G3\n\n11) Ausmuh: Build Y3 Blellow\n\n12) wil: B Y3 G3\n\n13) Ausmuh: Discover Y1 Blellow B3 Srv\n\n14) wil: D Y2 Wil Y3 Y3\n\n15) Ausmuh: Build G1 Ausmuh\n\n16) wil: B G1 Wil\n\n17) Ausmuh: Trade G1 B1 Ausmuh\n\n18) wil: T G1 B1 Wil\n\n19) Ausmuh: Move B1 Ausmuh Blellow\n\twil: I didn&#39;t want to join the trade treaty... But it looked like you gave me no choice\n\n20) wil: M B1 Wil G3\n\n21) Ausmuh: Trade Y3 R3 Blellow\n\n22) wil: D Y1 G3 G2 G2\n\n23) Ausmuh: Sacrifice Y2 Ausmuh\nMove R3 Blellow Srv\nMove R3 Srv Wil\n\n\twil: Well crap...no excuses...why didn&#39;t I get a gun?\n\twil: Well crap...no excuses...why didn&#39;t I get a gun?\n\nHomeworlds Online (SDG# 28579)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.11, Ended: 2015.11.28\nParticipants: kanzenryu (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) kanzenryu: Homeworld B2 Y3 G3\n\n3) wil: B G1 Wil\n\tkanzenryu: And now for something completely different\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) wil: T G1 B1 Wil\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) wil: B B1 Wil\n\n8) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: It amazes me how quickly I can get into trouble but still not see it coming one move earlier.\n\n9) wil: T G3 Y3 Wil\n\twil: It takes a while to see them coming... Rule of thumb... Rarely on insure what they get you get..  Often when it comes to growing new economies, copy cat is recommended...unless you have another plan to gain access...\n\n10) kanzenryu: Discover G1 Kanzenryu Y1 First\n\n11) wil: D B1 Wil G3 G3\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) wil: T Y3 G3 Wil\n\n14) kanzenryu: Discover G1 Kanzenryu Y1 Dwarf\n\n15) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\n16) kanzenryu: Build Y2 Kanzenryu\n\n17) wil: T B3 G3 Wil\n\n18) kanzenryu: Trade Y2 R2 Kanzenryu\n\n19) wil: B B3 Wil\n\n20) kanzenryu: Build R1 Kanzenryu\n\n21) wil: T B3 R3 Wil\n\n22) kanzenryu: Build Y2 Kanzenryu\n\n23) wil: B B3 Wil\n\n24) kanzenryu: Move R2 Kanzenryu First\n\n25) wil: T B3 Y3 Wil\n\n26) kanzenryu: Move Y2 Kanzenryu Dwarf\n\n27) wil: B Y2 Wil\n\n28) kanzenryu: Discover R2 First Y3 Peep\n\n29) wil: M R3 Wil Peep\n\n30) kanzenryu: Sacrifice G1 First\nBuild R1 Peep\n\n31) wil: M R3 Peep Dwarf\n\n32) kanzenryu: Move G1 Dwarf Peep\n\n33) wil: A Y2 Dwarf\n\n34) kanzenryu: Build R1 Peep\n\n35) wil: T B2 Y2 G3\n\n36) kanzenryu: Move R1 Peep Wil\n\n37) wil: A R1 Wil\n\n38) kanzenryu: Move R2 Peep Wil\n\n39) wil: T R1 Y1 Wil\n\n40) kanzenryu: Sacrifice G1 Peep\nBuild R1 Wil\n\n41) wil: M Y3 Wil Peep\n\n42) kanzenryu: Move R1 Peep Wil\nCatastrophe Wil R\n\n43) wil: S Y2 G3\nM Y2 Dwarf Kanzenryu\nM Y1 Wil Kanzenryu\nC Kanzenryu Y\n\n44) kanzenryu: Build G1 Kanzenryu\n\twil: I&#39;m afraid I let you walk right into this one...  \n\n45) wil: S Y3 Peep\nM B1 Wil Kanzenryu\nM B2 G3 Kanzenryu\nM B1 G3 Kanzenryu\nC Kanzenryu B\n\tkanzenryu: I could see that I&#39;ve been significantly behind for quite some time (like all my games ;-) so some big attack has to happen at some stage.\n\twil: This is a variation of the doomsday machine...using yellows and strategically placed ships to blow up your opponents homeworld...your blowing up half my homeworld helped to give me access to yours.\n\twil: Not much left in my galaxy after that...but enough to rebuild civilization...\n\n\nHomeworlds Online (SDG# 28535)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.11, Ended: 2015.12.11\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B2 G1 Y3\n\tdragon76n: Hi Wil, I&#39;m back for another game. \n\n2) wil: H Y3 B1 G3\n\twil: I&#39;m glad!  Let us hope I don&#39;t blink\n\n3) dragon76n: B Y1 Dragon76n\n\n4) wil: B G1 Wil\n\n5) dragon76n: T Y1 G1 Dragon76n\n\n6) wil: T G1 B1 Wil\n\n7) dragon76n: B Y1 Dragon76n\n\n8) wil: B B1 Wil\n\n9) dragon76n: B G1 Dragon76n\n\n10) wil: D B1 Wil Y2 Y2\n\n11) dragon76n: D Y1 Dragon76n G3 Grethr\n\n12) wil: B G2 Wil\n\n13) dragon76n: Discover G1 Dragon76n Y3 Yelthr\n\n14) wil: B B2 Wil\n\n15) dragon76n: B G2 Dragon76n\n\n16) wil: S G2 Wil\nB B2 Y2\nB B3 Y2\n\n17) dragon76n: Sacrifice G2 Dragon76n\nBuild G2 Yelthr\nBuild G2 Yelthr\n\n18) wil: T B3 G3 Y2\n\n19) dragon76n: Sacrifice G2 Yelthr\nBuild Y1 Grethr\nBuild G2 Dragon76n\n\n20) wil: B B3 Y2\n\n21) dragon76n: Trade G2 R2 Dragon76n\n\n22) wil: T B3 R3 Y2\n\n23) dragon76n: Build Y1 Grethr\n\n24) wil: T B2 Y2 Wil\n\n25) dragon76n: S Y3 Dragon76n\nM Y1 Grethr Y2\nM Y1 Grethr Y2\nM Y1 Grethr Y2\nC Y2 Yellow\n\n26) wil: B G2 Wil\n\n27) dragon76n: D G1 Yelthr B2 Blutwo\n\n28) wil: T G2 R2 Wil\n\n29) dragon76n: B G2 Blutwo\n\n30) wil: B G2 Wil\n\n\twil: I hate to win that way\n\nHomeworlds Online (SDG# 28571)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.12, Ended: 2015.11.20\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n1) Simon: Homeworld Y1 B3 G3\n\n2) endo: Homeworld B1 Y2 G3\n\tSimon: Yes yes, more homeworlds.\n\n3) Simon: Build G1 Simon\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 B1 Simon\n\n6) endo: Trade G1 B1 Endo\n\n7) Simon: Build B2 Simon\n\n8) endo: Build B2 Endo\n\n9) Simon: Discover B2 Simon G2 G2\n\n10) endo: Trade B1 Y1 Endo\n\n11) Simon: Build B1 Simon\n\n12) endo: Build Y1 Endo\n\n13) Simon: Discover B1 Simon R2 R2\n\n14) endo: Discover Y1 Endo B3 Clique\n\n15) Simon: Trade B2 Y2 G2\n\n16) endo: Sacrifice G3 Endo\nBuild Y2 Clique\nBuild Y3 Endo\nBuild Y3 Clique\n\n17) Simon: Build Y3 G2\n\n18) endo: Trade Y3 R3 Clique\n\n19) Simon: Discover Y3 G2 R3 R3\n\n20) endo: Sacrifice Y3 Endo\nMove R3 Clique R2\nMove R3 R2 Simon\nMove Y2 Clique R2\n\n\tSimon: Flat-out oversight. gg!\n\tendo: Good game! The position after move 9 was pretty crazy. &quot;s y3 g2, m y2 g2 clique, m y2 clique endo, c endo y, m b1 r2 endo&quot; would have been enough to win, I think, but if I understand it correctly, SDG doesn&#39;t allow taking actions after declaring catastrophes. I had to check the sources to make sure but was busy with real-life matters, that&#39;s why it took me so long. :)\n\tSimon: Right, catastrophe and then normal moves is forbidden here, which is the older version of the rules. Is the site open source?\n\tendo: There&#39;s a copy of the source from 2014 available in the author&#39;s Google Drive at https://drive.google.com/folderview?id=0Bw8J0V9P_9hMeEJUSXE1LXRBN00. I&#39;m not sure if it&#39;s completely up to date.\n\tSimon: Cool, thanks.\n\nHomeworlds Online (SDG# 28599)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.13, Ended: 2016.1.14\nParticipants: kanzenryu (S), fogus (N)\nWinner: kanzenryu\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) kanzenryu: Homeworld Y1 G3 B3\n\n3) fogus: Build G1 Fogus\n\tkanzenryu: I&#39;m still loving this game...\n\n4) kanzenryu: Build B1 Kanzenryu\n\n5) fogus: Build G1 Fogus\n\n6) kanzenryu: Build B1 Kanzenryu\n\tkanzenryu: After being crushed a number of times and getting into trouble pretty quickly I&#39;m now getting scared just doing the first few moves\n\n7) fogus: Trade G3 B3 Fogus\n\n8) kanzenryu: Trade B1 G1 Kanzenryu\n\tfogus: I like the &quot;Blue Rush&quot; strategy.  It&#39;s fun to play against. :)\n\n9) fogus: Build G2 Fogus\n\n10) kanzenryu: Build G2 Kanzenryu\n\n11) fogus: Discover G1 Fogus Y3 Fripp\n\n12) kanzenryu: Discover G1 Kanzenryu Y2 Out\n\n13) fogus: Trade G2 Y2 Fogus\n\n14) kanzenryu: Build G2 Out\n\n15) fogus: Build G2 Fogus\n\n16) kanzenryu: Discover G1 Out Y3 Nearly\n\n17) fogus: Build G3 Fripp\n\n18) kanzenryu: Build G3 Nearly\n\n19) fogus: Move G1 Fripp Out\n\n20) kanzenryu: Trade B1 R1 Kanzenryu\n\n21) fogus: Build B1 Fogus\n\n22) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild R1 Kanzenryu\nBuild B1 Kanzenryu\n\n23) fogus: Move G1 Out Fripp\n\n24) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild R1 Kanzenryu\nBuild B2 Kanzenryu\n\tfogus: How&#39;s the MCTS player coming along?\n\tkanzenryu: I was reading some articles on the MCTS and UCT algorithms. So far I&#39;m confused as to how a position that looks good but allows one very good move for the opponent will be handled. So the short answer is &quot;not started&quot; ;-)\n\n25) fogus: Trade G2 R2 Fogus\n\n26) kanzenryu: Trade B3 Y3 Kanzenryu\n\n27) fogus: Move B1 Fogus Fripp\n\n28) kanzenryu: Sacrifice B1 Kanzenryu\nTrade G3 B3 Nearly\n\n29) fogus: Sacrifice G3 Fripp\nBuild G2 Fogus\nBuild G3 Fripp\nBuild R2 Fogus\n\n30) kanzenryu: Build G3 Nearly\n\n31) fogus: Move R2 Fogus Fripp\n\n32) kanzenryu: Move R1 Kanzenryu Out\n\n33) fogus: Discover R2 Fripp Y1 Eno\n\n34) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild Y1 Kanzenryu\nBuild B1 Nearly\n\n35) fogus: Sacrifice G3 Fripp\nBuild R2 Fogus\nBuild R3 Eno\nBuild G3 Fripp\n\n36) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild B2 Nearly\nBuild R3 Out\n\n37) fogus: Trade B3 R3 Fogus\n\n38) kanzenryu: Move R1 Out Nearly\n\n39) fogus: Move R2 Fogus Fripp\n\tkanzenryu: BTW I sent you a challenge for alien city\n\n40) kanzenryu: Move Y1 Kanzenryu Out\n\n41) fogus: Move B1 Fripp Fogus\n\n42) kanzenryu: Move B1 Nearly Fogus\n\n43) fogus: Move B1 Fogus Fripp\n\n44) kanzenryu: Move B2 Nearly Fogus\n\n45) fogus: Sacrifice G3 Fripp\nBuild G3 Fripp\nBuild B2 Fripp\nBuild B3 Fripp\n\n46) kanzenryu: Sacrifice G2 Kanzenryu\nBuild G2 Out\nBuild B3 Fogus\nCatastrophe Fogus B\n\n47) fogus: Discover B3 Fripp B2 Zakir\n\n48) kanzenryu: Move Y1 Out Nearly\n\tkanzenryu: Congrats on making it to the top of Hacker News with your blog. Awesome stuff. Have you tried out parinfer? I&#39;m using vim-parinfer which is still pretty great.\n\n49) fogus: Move Y2 Fogus Fripp\n\tfogus: I have not tried parinfer yet.  People keep telling me about it though. :)\n\n50) kanzenryu: Move R3 Out Nearly\n\tkanzenryu: Parinfer seems to have dramatically improved the speed that I can write working Clojure code. But then I started from a position of being pretty crap.\n\n51) fogus: Move R2 Fogus Nearly\n\n52) kanzenryu: Move G3 Nearly Fogus\n\tfogus: Whoops. Accidental undo.\n\n53) fogus: Attack G3 Fogus\n\n54) kanzenryu: Move G1 Nearly Fogus\nCatastrophe Fogus G\n\n55) fogus: Move G3 Fripp Fogus\n\n56) kanzenryu: Attack R2 Nearly\n\tfogus: Sorry that it&#39;s taking me so long to play, but the new year has brought much busy-ness at work.\n\n57) fogus: Move R2 Eno Nearly\nCatastrophe Nearly R\n\tkanzenryu: No problem at all. At least your work involves Clojure. I once managed to write a GUI testing framework in Clojure, but a couple of years later it got rewritten in Groovy.\n\n58) kanzenryu: Trade B3 R3 Nearly\n\n59) fogus: Sacrifice Y2 Fripp\nMove R3 Eno Nearly\nMove B3 Zakir Nearly\n\n60) kanzenryu: Discover Y1 Nearly G1 Side\n\n61) fogus: Attack R3 Nearly\n\n62) kanzenryu: Sacrifice G2 Out\nBuild Y1 Side\nBuild Y2 Side\n\n\tkanzenryu: So far my homeworlds AI code really only finds the legal moves for a position (which is quite complex for sacrifices).\r\n\r\nMaybe you could have a quick look at https://github.com/davidplumpton/homeworldsai and when you stop laughing give me some advice.\n\tfogus: ARGGH!!!  I got too greedy!  I knew that I should have traded for that y2.  Great game!\n\tkanzenryu: Thanks, that game was pretty epic.\n\tfogus: This game is great because very often you&#39;re balancing on a knife&#39;s edge the whole time.  This game was a good example of that.\n\nHomeworlds Online (SDG# 28601)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.13, Ended: 2015.12.1\nParticipants: wil (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) wil: H B2 Y1 G3\n\n3) endo: Build G1 Endo\n\twil: Another try... I like the ladder because I get to play\n\n4) wil: B G1 Wil\n\tendo: Good luck, have fun!\n\n5) endo: Trade G1 B1 Endo\n\n6) wil: T G1 B1 Wil\n\n7) endo: Build B2 Endo\n\n8) wil: B B2 Wil\n\n9) endo: Discover B1 Endo G2 Directed\n\n10) wil: D B1 Wil Y3 Y3\n\n11) endo: Build B3 Directed\n\n12) wil: B B3 Wil\n\n13) endo: Build B3 Endo\n\n14) wil: T B3 Y3 Wil\n\n15) endo: Trade B2 Y2 Endo\n\n16) wil: B Y1 Wil\n\n17) endo: Move Y2 Endo Directed\n\n18) wil: T Y1 R1 Wil\n\n19) endo: Trade B1 R1 Directed\n\n20) wil: B Y1 Wil\n\n21) endo: Build Y1 Directed\n\n22) wil: D Y3 Wil G3 G3\n\n23) endo: Build Y2 Directed\n\n24) wil: D Y3 G3 G2 G2\n\n25) endo: Trade Y1 G1 Directed\n\n26) wil: B G1 Wil\n\n27) endo: Build G1 Endo\n\n28) wil: M G1 Wil Y3\n\n29) endo: Discover G1 Directed B3 Dense\n\n30) wil: M Y3 G2 Dense\n\n31) endo: Build G2 Dense\n\n32) wil: B G2 Y3\n\n33) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Dense\nBuild R1 Directed\n\n34) wil: S R1 Wil\nA G3 Dense\n\n35) endo: Sacrifice Y2 Directed\nMove B3 Directed Dense\nMove B3 Dense Wil\n\n36) wil: S G3 Dense\nB G3 Wil\nB B1 Wil\nB B2 Y3\nC Wil B\n\n37) endo: Move Y2 Directed Wil\n\n38) wil: S G3 Wil\nB Y1 Dense\nB Y2 Dense\nB Y2 Dense\n\n39) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B1 Endo\nBuild R1 Directed\nCatastrophe Dense Y\n\twil: Curses... Slaughtered again.\n\n40) wil: S G2 Y3\nB Y1 Wil\nB G2 Y3\n\n\tendo: You denied me my historic triple catastrophe :(\n\twil: Lol... I set it up... I took it down \r\n\r\nWe need to build a tourney... \n\nHomeworlds Online (SDG# 28566)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.15, Ended: 2015.11.20\nParticipants: Simon (S), Ausmuh (N)\nWinner: Simon\n\n1) Ausmuh: Homeworld G3 Y2 B3\n\n2) Simon: Homeworld R1 B3 G3\n\tAusmuh: Hello. Have a fun game.\n\tSimon: Hi, have fun!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) Simon: Build G1 Simon\n\n5) Ausmuh: Trade B1 Y1 Ausmuh\n\n6) Simon: Trade G1 Y1 Simon\n\n7) Ausmuh: Build B1 Ausmuh\n\n8) Simon: Build G1 Simon\n\n9) Ausmuh: Discover Y1 Ausmuh B1 Ls1\n\n10) Simon: Trade G1 B1 Simon\n\n11) Ausmuh: Discover Y1 Ls1 G2 Mw2\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) Ausmuh: Trade B1 R1 Ausmuh\n\n14) Simon: Build B1 G2\n\n15) Ausmuh: Build B1 Ausmuh\n\n16) Simon: Build B2 G2\n\n17) Ausmuh: Build B2 Ausmuh\n\n18) Simon: Trade B2 Y2 G2\n\n19) Ausmuh: Build R1 Ausmuh\n\n20) Simon: Sacrifice Y2 G2\nDiscover B1 G2 G1 G1\nMove B1 G1 Ausmuh\nCatastrophe Ausmuh B\n\n21) Ausmuh: Build R2 Ausmuh\n\tAusmuh: Wow I was not paying attention. \n\n22) Simon: Build B1 G2\n\n23) Ausmuh: Discover R1 Ausmuh Y1 Sm1\n\tSimon: Yeah, such threats can often restrict the choice of colors for a while.\n\n24) Simon: Build Y2 Simon\n\n25) Ausmuh: Move R1 Sm1 Mw2\n\n26) Simon: Move Y2 Simon G2\n\n27) Ausmuh: Build R2 Mw2\n\n28) Simon: Trade Y2 R2 G2\n\n29) Ausmuh: Build R3 Ausmuh\n\n30) Simon: Build R3 G2\n\n31) Ausmuh: Build R3 Mw2\n\n32) Simon: Trade R3 Y3 G2\n\n33) Ausmuh: Discover R2 Ausmuh B1 Ls1\n\n34) Simon: Build R3 G2\n\n35) Ausmuh: Trade R2 B2 Ls1\n\tAusmuh: Oops, wrong color :P\n\n36) Simon: Move R3 G2 Ls1\n\n37) Ausmuh: Sacrifice B2 Ls1\nTrade R2 Y2 Mw2\nTrade R3 B3 Ausmuh\n\n38) Simon: Trade B1 G1 G2\n\n39) Ausmuh: Discover Y1 Mw2 G1 Mw1\n\n40) Simon: Move G1 G2 Ls1\n\n41) Ausmuh: Trade R1 B1 Ausmuh\n\n42) Simon: Build G1 Simon\n\n43) Ausmuh: Move B1 Ausmuh Mw1\n\n44) Simon: Sacrifice G3 Simon\nBuild G2 Ls1\nBuild G3 Ls1\nBuild G3 Simon\n\n45) Ausmuh: Build B2 Mw1\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 G2\nBuild B2 G2\n\n47) Ausmuh: Build B2 Ausmuh\n\n48) Simon: Move B1 G2 Mw1\n\n49) Ausmuh: Move R3 Mw2 Mw1\n\n50) Simon: Sacrifice Y3 G2\nMove B1 Mw1 Ausmuh\nMove B2 G2 Mw1\nMove B2 Mw1 Ausmuh\nCatastrophe Ausmuh B\n\n\tSimon: I wanted to make room for building the last b3 myself, while gaining time by forcing responses to the various blue threats. &gt;_&gt;;\r\n\r\nThanks for the game still, I had to make some good decisions, and I&#39;d be up for rematches anytime!\n\nHomeworlds Online (SDG# 28588)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.15, Ended: 2015.11.19\nParticipants: Ausmuh (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld Y1 B2 G3\n\n2) Ausmuh: Homeworld G3 Y2 B3\n\n3) endo: Build G1 Endo\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) endo: Build G1 Endo\n\n6) Ausmuh: Trade B1 Y1 Ausmuh\n\n7) endo: Discover G1 Endo Y3 Abelian\n\n8) Ausmuh: Discover Y1 Ausmuh G1 Mw1\n\n9) endo: Build G2 Abelian\n\n10) Ausmuh: Discover Y1 Mw1 G3 Mw3\n\n11) endo: Discover G1 Abelian G1 Solvable\n\n12) Ausmuh: Build Y1 Mw3\n\n13) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 Abelian\nBuild G3 Endo\n\n14) Ausmuh: Build Y2 Mw3\n\n15) endo: Trade G3 R3 Endo\n\n16) Ausmuh: Sacrifice Y2 Mw3\nMove Y1 Mw3 Endo\nDiscover Y1 Endo G3 Mj3\n\n17) endo: Move G2 Endo Mj3\n\n18) Ausmuh: Build Y2 Mw3\n\n19) endo: Sacrifice G2 Abelian\nBuild G2 Endo\nBuild R1 Endo\n\n20) Ausmuh: Discover Y1 Mj3 Y2 Md1\n\tAusmuh: That was a sweet move.\n\n21) endo: Move R3 Endo Mw3\n\n22) Ausmuh: Sacrifice Y1 Mw3\nDiscover Y2 Mw3 Y1 Sm1\n\n23) endo: Sacrifice G2 Mj3\nBuild G2 Abelian\nBuild G3 Endo\n\n24) Ausmuh: Build B1 Ausmuh\n\n25) endo: Trade G3 Y3 Endo\n\n26) Ausmuh: Discover Y2 Sm1 G3 Mj3\n\n27) endo: Move G2 Endo Mj3\n\n28) Ausmuh: Build Y1 Mj3\n\n29) endo: Sacrifice R3 Mw3\nAttack Y1 Mj3\nAttack Y2 Mj3\nPass\n\n30) Ausmuh: Discover Y1 Md1 G3 Mw3\n\n31) endo: Sacrifice Y2 Mj3\nMove Y1 Mj3 Endo\nMove Y1 Endo Mw3\n\n32) Ausmuh: Trade B3 R3 Ausmuh\n\n33) endo: Sacrifice R1 Endo\nAttack Y1 Mw3\n\n34) Ausmuh: Build B1 Ausmuh\n\n35) endo: Sacrifice G2 Mj3\nBuild G2 Endo\nBuild G3 Endo\n\n36) Ausmuh: Build B1 Ausmuh\n\n37) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Endo\nBuild Y2 Mw3\n\n38) Ausmuh: Move B1 Ausmuh Solvable\n\n39) endo: Discover Y3 Endo B3 Nilpotent\n\n40) Ausmuh: Trade B1 R1 Solvable\n\n41) endo: Sacrifice G1 Solvable\nBuild Y3 Nilpotent\n\n42) Ausmuh: Move B1 Ausmuh Solvable\n\n43) endo: Move G2 Abelian Solvable\n\n44) Ausmuh: Trade B1 G1 Solvable\n\n45) endo: Sacrifice Y3 Nilpotent\nMove G2 Abelian Solvable\nMove G2 Solvable Ausmuh\nMove G2 Solvable Ausmuh\n\n46) Ausmuh: Build R1 Ausmuh\n\n47) endo: Sacrifice G3 Endo\nBuild G3 Ausmuh\nBuild Y3 Nilpotent\nBuild Y3 Nilpotent\nCatastrophe Ausmuh G\n\n48) Ausmuh: Build G2 Solvable\n\tAusmuh: Thanks for playing.  Nice work taking over yellow and nice doomsday machine. :)\n\n49) endo: Sacrifice Y3 Nilpotent\nMove Y1 Mw3 Ausmuh\nMove Y1 Mw3 Ausmuh\nMove Y2 Mw3 Ausmuh\nCatastrophe Ausmuh Y\n\tendo: Thanks for the game.\n\n\nHomeworlds Online (SDG# 28583)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.15, Ended: 2015.12.9\nParticipants: wil (S), Ausmuh (N)\nWinner: wil\n\n1) Ausmuh: Homeworld G3 Y2 B3\n\n2) wil: H B3 Y1 G3\n\tAusmuh: Last one was just the warm up. :)\n\twil: And another interesting open!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) wil: B G1 Wil\n\tAusmuh: Fortress intrigues me because it&#39;s less popular\n\twil: Yes...but it is your opening colors that surprised me...\n\n5) Ausmuh: Trade B1 Y1 Ausmuh\n\n6) wil: T G1 Y1 Wil\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) wil: B Y2 Wil\n\n9) Ausmuh: Discover Y1 Ausmuh G1 Mw1\n\n10) wil: D Y1 Wil G2 G2\n\n11) Ausmuh: Trade Y2 B2 Ausmuh\n\tAusmuh: My, what symmetric openings we can produce. :)\n\n12) wil: T Y2 R2 Wil\n\n13) Ausmuh: Build Y2 Mw1\n\n14) wil: B Y2 G2\n\n15) Ausmuh: Trade B2 R2 Ausmuh\n\n16) wil: D Y1 G2 B3 B3\n\n17) Ausmuh: Move Y1 Mw1 B3\n\n18) wil: B Y3 G2\n\n19) Ausmuh: Sacrifice R2 Ausmuh\nAttack Y1S B3\nPass\n\n20) wil: M Y3 G2 Mw1\n\n21) Ausmuh: Trade Y1 R1 B3\n\n22) wil: B R1 Wil\n\n23) Ausmuh: Move Y2 Mw1 B3\n\n24) wil: B Y1 G2\n\n25) Ausmuh: Trade Y1 G1 B3\n\n26) wil: B Y1 G2\n\n27) Ausmuh: Discover Y2 B3 G2 Mw2\n\n28) wil: M Y2 G2 B3\n\n29) Ausmuh: Build B1 Ausmuh\n\n30) wil: S R2 Wil\nA R1 B3\nA G1 B3\n\n31) Ausmuh: Trade B1 R1 Ausmuh\n\n32) wil: B G1 Wil\n\n33) Ausmuh: Build Y3 Mw2\n\n34) wil: S G3 Wil\nB G2 B3\nB Y3 B3\nB G3 Wil\n\n35) Ausmuh: Discover Y2 Mw2 B1 Ls1\n\n36) wil: S G3 Wil\nB G3 Wil\nB G3 B3\nB R2 B3\n\n37) Ausmuh: Trade Y2 R2 Ls1\n\n38) wil: B Y2 Mw1\n\n39) Ausmuh: Build B1 Ausmuh\n\n40) wil: M R1 B3 Mw1\n\n41) Ausmuh: Build B1 Ausmuh\n\n42) wil: T G2 B2 B3\n\n43) Ausmuh: Move B1 Ausmuh Ls1\n\n44) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB B2 B3\n\n45) Ausmuh: Sacrifice Y3 Mw2\nMove B1 Ls1 B3\nPass\nPass\nCatastrophe B3 Blue\n\n46) wil: B R2 Wil\n\n47) Ausmuh: Trade B1 G1 Ausmuh\n\n48) wil: T R1 B1 Wil\n\n49) Ausmuh: Move G1 Ausmuh Ls1\n\n50) wil: D Y1 G2 B1 B1\n\n51) Ausmuh: Trade R2 Y2 Ls1\n\n52) wil: S G2 Wil\nB Y3 B1\nB Y3 G2\n\n53) Ausmuh: Build G2 Ls1\n\n54) wil: M Y3 G2 Ls1\n\n55) Ausmuh: Move Y2 Ls1 G2\n\n56) wil: S R2 Wil\nA G1 Ls1\nA G2 Ls1\n\n\twil: I hate it when that happens\n\nHomeworlds Online (SDG# 28618)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.16, Ended: 2015.11.23\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B2 Y1 G3\n\n2) wil: H B3 Y2 G3\n\tSimon: More homeworlds, more homeworlds!\n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: T G1 Y1 Wil\n\n7) Simon: Build Y2 Simon\n\n8) wil: B Y2 Wil\n\n9) Simon: Discover Y2 Simon G3 G3\n\n10) wil: T Y1 R1 Wil\n\n11) Simon: Build Y1 G3\n\n12) wil: D Y2 Wil G1 G1\n\n13) Simon: Build Y3 Simon\n\n14) wil: B Y3 G1\n\n15) Simon: Trade Y3 R3 Simon\n\n16) wil: D Y2 G1 B3 B3\n\n17) Simon: Move R3 Simon B3\n\n18) wil: B Y3 G1\n\n19) Simon: Attack Y2 B3\n\n20) wil: D Y3 G1 Y3 Y3\n\n21) Simon: Build G1 Simon\n\n22) wil: B R1 Wil\n\n23) Simon: Move G1 Simon B3\n\n24) wil: T R1 B1 Wil\n\n25) Simon: Discover Y1 G3 G1 G1a\n\n26) wil: B G2 Wil\n\n27) Simon: Build G2 Simon\n\n28) wil: B R1 Wil\n\n29) Simon: Sacrifice G3 Simon\nBuild G2 B3\nBuild G3 Simon\nBuild R1 B3\n\n30) wil: M R1 Wil G1\n\n31) Simon: Move R1 B3 G1a\n\n32) wil: S G3 Wil\nB G3 Wil\nB B1 Wil\nB R2 G1\n\n33) Simon: Trade G1 B1 B3\n\n34) wil: M B1 Wil G1\n\n35) Simon: Move B1 B3 G1a\n\n36) wil: M G2 Wil G1a\n\n37) Simon: Discover Y2 G3 G1 G1b\n\n38) wil: B G3 Wil\n\n39) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G1a\nBuild B2 G1a\n\n40) wil: S R2 G1\nA B2 G1a\nA R1 G1a\n\n41) Simon: Sacrifice Y2 G1b\nMove B1 G1a Wil\nMove B2 G1a Wil\nCatastrophe Wil B\n\n42) wil: B Y2 G1\n\n43) Simon: Sacrifice Y2 B3\nMove Y1 Simon Y3\nMove Y1 G1a Y3\nCatastrophe Y3 Y\n\n44) wil: D G3 Wil Y3 Y3\n\n45) Simon: Sacrifice G3 Simon\nBuild G1 B3\nBuild R2 B3\nBuild G3 Simon\n\n46) wil: S Y3 G1\nM G2 G1a Y3\nM G2 Y3 Simon\nM G3 Y3 Simon\nC Simon G\n\n\twil: The bluebird\n\tSimon: Smart, because the distance is 2 only now. I stopped reading the move after &quot;ventured forth from wil&quot;.\n\twil: Yes taking out a homeworld is a one two punch....if you can&#39;t do the follow-up eight away you often forget it is a short universe..\n\nHomeworlds Online (SDG# 28581)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.16, Ended: 2015.11.18\nParticipants: Danielaurence (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\tDanielaurence: homeworld G2 B1 Y3\n\n2) Danielaurence: Homeworld R2 B1 G3\n\twil: Good luck... Have you played this?  \n\tDanielaurence: Only with real pyramids. I haven&#39;t played online yet. Figuring the controls out now.\n\n3) wil: B G1 Wil\n\twil: You have go catastrophe... It isn&#39;t automatic here... And you can&#39;t make any moves after one\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) wil: T G1 B1 Wil\n\tDanielaurence: Got it. Thanks for the tips. Good luck!\n\n6) Danielaurence: Trade G1 Y1 Danielaurence\n\n7) wil: B B2 Wil\n\n8) Danielaurence: Build Y1 Danielaurence\n\n9) wil: D B2 Wil G2 G2\n\n10) Danielaurence: Build G1 Danielaurence\n\n11) wil: B B2 Wil\n\n12) Danielaurence: Discover G1 Danielaurence B3 B3\n\n13) wil: T B2 R2 Wil\n\n14) Danielaurence: Build G1 B3\n\n15) wil: B B2 G2\n\n16) Danielaurence: Trade G3 B3 Danielaurence\n\n17) wil: T B2 Y2 G2\n\n18) Danielaurence: Trade Y1 G1 Danielaurence\n\n19) wil: B G2 Wil\n\n20) Danielaurence: Build G2 Danielaurence\n\n21) wil: B G3 Wil\n\n22) Danielaurence: Build G3 Danielaurence\n\tDanielaurence: I have a lot to learn about this game... part of the reason I&#39;m on here is to get a firmer grasp on the rules. For instance, I didn&#39;t know that you can only build a ship if you have another SHIP of the same color. I thought being in a system with that color was enough.\n\n23) wil: S G3 Wil\nB B2 Wil\nB B2 G2\nB B3 G2\n\n24) Danielaurence: Build G3 B3\n\n25) wil: T B3 Y3 G2\n\n26) Danielaurence: Trade G3 Y3 Danielaurence\n\n27) wil: S Y2 G2\nM G2 Wil G2\nM G2 G2 B3\nC B3 G\n\n28) Danielaurence: Discover B3 Danielaurence G3 Forest\n\n29) wil: M B2 G2 Forest\n\n30) Danielaurence: Trade B3 R3 Forest\n\n31) wil: T B2 R2 Forest\n\twil: Forgot to tell it to catastrophe\n\n32) Danielaurence: Attack R2 Forest\n\n33) wil: B B2 G2\n\n34) Danielaurence: Move Y1 Danielaurence Forest\n\twil: Nice\n\n35) wil: D B1 Wil Y2 Y2\n\n36) Danielaurence: Move R2 Forest Y2\n\tDanielaurence: Thanks!\n\n37) wil: S G3 Wil\nB B3 Wil\nB B3 Y2\nB B3 G2\n\twil: We.are a peaceful people and would like to offer you a warship\n\n38) Danielaurence: Move R3 Forest Y2\n\n39) wil: S R2 Wil\nA R3 Y2\nA R2 Y2\n\n40) Danielaurence: Build Y1 Forest\n\n41) wil: T B3 G3 Wil\n\twil: It was nice to have you come visit, you may stay for breakfast but you better be gone before nightfall\n\twil: It was nice to have you come visit, you may stay for breakfast but you better be gone before nightfall\n\n42) Danielaurence: Trade G1 R1 Danielaurence\n\tDanielaurence: I think I&#39;d like to sleep over :)\n\n43) wil: M B3 Y2 Forest\n\twil: What was I thinking? Pardon my manners, in that case I welcome you to the fold like family...you can stay as long as like\n\tDanielaurence: Cripes. Nice move!\n\twil: Your donation is gratefully accepted, while we are not a warring factions, these are nice ships...\n\n44) Danielaurence: Sacrifice Y1 Forest\nMove Y1 Forest Danielaurence\n\n45) wil: S Y3 G2\nM B3 G2 Forest\nM B3 Forest Danielaurence\nM B3 Forest Danielaurence\n\n46) Danielaurence: Trade Y3 B3 Danielaurence\nCatastrophe Danielaurence Blue\n\n47) wil: M G3 Wil Danielaurence\n\n48) Danielaurence: Build G1 Danielaurence\n\n49) wil: S R3 Y2\nA G2 Danielaurence\nA G1 Danielaurence\nA R1 Danielaurence\n\n50) Danielaurence: Pass\n\tDanielaurence: You left me with no choice...\n\twil: It was you only delaying tactic\n\n51) wil: A Y1 Danielaurence\n\n\tDanielaurence: Haha, brilliant strategy on the name change! :) Great game. As a beginner, I definitely learned a lot.\n\twil: Challenge me anytime...join the ladder now and by the time you work your way painfully through the deadwood... You&#39;ll be ready for those on top!\n\nHomeworlds Online (SDG# 28582)\nStarted: 2015.11.16, Ended: 2015.11.23\nParticipants: Danielaurence (S), ts52 (N)\nWinner: Danielaurence\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Danielaurence: Homeworld B2 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Danielaurence: Trade G1 B1 Danielaurence\n\tDanielaurence: Good luck! I&#39;m relatively new to the game, but I&#39;ll give it my best.\n\n7) ts52: Build B2 Ts52\n\tts52: Have a good game. Feel free to ask questions if you like. Always happy to help new players get into the game.\n\n8) Danielaurence: Build B2 Danielaurence\n\n9) ts52: Discover B2 Ts52 G2 Oscar\n\n10) Danielaurence: Trade B1 Y1 Danielaurence\n\n11) ts52: Build G1 Ts52\n\n12) Danielaurence: Build Y1 Danielaurence\n\n13) ts52: Move B1 Ts52 Oscar\n\n14) Danielaurence: Discover B2 Danielaurence G3 Forest\n\n15) ts52: Trade B2 Y2 Oscar\n\n16) Danielaurence: Build G1 Danielaurence\n\n17) ts52: Discover G1 Ts52 B2 Gonzo\n\n18) Danielaurence: Move Y1 Danielaurence Forest\n\n19) ts52: Build G1 Ts52\n\n20) Danielaurence: Move G1 Danielaurence Forest\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n22) Danielaurence: Discover G1 Forest Y2 Desert\n\n23) ts52: Trade G2 R2 Gonzo\n\n24) Danielaurence: Move G1 Desert Ts52\nCatastrophe Ts52 Green\n\tDanielaurence: Good game! I hope you didn&#39;t let me win just because I&#39;m a beginner! I&#39;d love to play again sometime.\n\tts52: I did not. Well played. I&quot;d be happy to play again, any time.\n\n\nHomeworlds Online (SDG# 28616)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.17, Ended: 2015.11.27\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld Y1 B3 G3\n\n2) kanzenryu: Homeworld B1 G2 Y3\n\n3) endo: Build G1 Endo\n\tkanzenryu: Can I stay out of trouble for one extra move this time? ;-)\n\n4) kanzenryu: Build Y1 Kanzenryu\n\tendo: You have to be really careful if you don&#39;t pick a green ship, especially when going second...\n\n5) endo: Discover G1 Endo B2 Adjoint\n\n6) kanzenryu: Trade Y3 G3 Kanzenryu\n\n7) endo: Build G1 Adjoint\n\n8) kanzenryu: Build Y1 Kanzenryu\n\n9) endo: Build G1 Endo\n\n10) kanzenryu: Discover Y1 Kanzenryu G3 Out\n\n11) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 Adjoint\nBuild G3 Endo\n\n12) kanzenryu: Build Y2 Out\n\n13) endo: Discover G1 Endo B2 Monoidal\n\n14) kanzenryu: Build Y2 Out\n\n15) endo: Trade G2 Y2 Adjoint\n\n16) kanzenryu: Discover Y2 Out B2 Peep\n\n17) endo: Sacrifice G3 Endo\nBuild G2 Monoidal\nBuild G3 Endo\nBuild Y3 Adjoint\n\tkanzenryu: Are these stars functional programming or math terms? Or both?\n\n18) kanzenryu: Move Y1 Out Peep\n\tendo: I pick a math theme for each game. In this case it&#39;s functors from category theory, which is strongly related to functional programming, yes.\n\n19) endo: Discover Y2 Adjoint B3 Enriched\n\n20) kanzenryu: Build Y3 Out\n\n21) endo: Sacrifice G2 Endo\nBuild G2 Endo\nBuild Y3 Enriched\n\n22) kanzenryu: Trade Y2 R2 Peep\n\n23) endo: Trade Y3 R3 Enriched\n\n24) kanzenryu: Build Y2 Kanzenryu\n\n25) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y3 Adjoint\nBuild R1 Enriched\n\n26) kanzenryu: Move Y3 Out Peep\n\n27) endo: Move G1 Adjoint Enriched\n\n28) kanzenryu: Trade Y1 R1 Kanzenryu\n\n29) endo: Sacrifice Y3 Adjoint\nMove G1 Adjoint Enriched\nMove G1 Enriched Kanzenryu\nMove G1 Enriched Kanzenryu\nCatastrophe Kanzenryu G\n\n30) kanzenryu: Move Y3 Peep Kanzenryu\n\n31) endo: Move Y3 Adjoint Kanzenryu\n\n\tkanzenryu: I just want to say this is not the first time I have been defeated by functional programming ;-)\n\nHomeworlds Online (SDG# 28563)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.18, Ended: 2015.12.6\nParticipants: SilentTitan (S), Danielaurence (N)\nWinner: Danielaurence\n\n1) Danielaurence: Homeworld B2 Y1 G3\n\n2) SilentTitan: Homeworld B3 R1 G3\n\n3) Danielaurence: Build G1 Danielaurence\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Danielaurence: Discover G1 Danielaurence B3 Boris\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Danielaurence: Build G1 Boris\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Danielaurence: Build G1 Danielaurence\n\n10) SilentTitan: Discover Y1 Silenttitan G2 Sol\n\n11) Danielaurence: Build G2 Boris\n\n12) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Sol\n\n13) Danielaurence: T G3 Y3 Danielaurence\n\n14) SilentTitan: Build Y3 Sol\n\n15) Danielaurence: T G1 R1 Boris\n\n16) SilentTitan: Discover Y2 Silenttitan B2 Soul\n\n17) Danielaurence: Move Y3 Danielaurence Boris\n\n\tDanielaurence: Thanks for playing\n\nHomeworlds Online (SDG# 28622)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.18, Ended: 2015.11.24\nParticipants: wil (S), Danielaurence (N)\nWinner: wil\n\n1) Danielaurence: Homeworld B3 G2 Y3\n\n2) wil: H R3 Y1 G3 *\n\tDanielaurence: Again! Again! Hopefully I have learned from some of my mistakes last time.\n\twil: Hopefully we&#39;ll find new mistakes for you to try!\n\n3) Danielaurence: Build Y1 Danielaurence\n\n4) wil: B G1 Wil\n\n5) Danielaurence: Build Y1 Danielaurence\n\n6) wil: D G1 Wil B2 B2\n\n7) Danielaurence: Discover Y1 Danielaurence G1 Jelloland\n\n8) wil: B G1 Wil\n\n9) Danielaurence: Build Y2 Jelloland\n\n10) wil: B G2 B2\n\n11) Danielaurence: Trade Y3 G3 Danielaurence\n\n12) wil: T G2 Y2 B2\n\tDanielaurence: I see your green and raise you a yellow!\n\n13) Danielaurence: Move Y1 Jelloland Danielaurence\n\twil: I&#39;d jelly of yo yelly\n\n14) wil: B G2 B2\n\n15) Danielaurence: Trade Y1 B1 Danielaurence\n\n16) wil: D G2 B2 Y1 Y1\n\n17) Danielaurence: Build B1 Danielaurence\n\n18) wil: S G3 Wil\nB G2 Y1\nB G3 B2\nB G3 Wil\n\n19) Danielaurence: Sacrifice G3 Danielaurence\nBuild Y2 Danielaurence\nBuild Y3 Jelloland\nBuild Y3 Danielaurence\n\n20) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB Y3 B2\n\n21) Danielaurence: Trade Y2 R2 Danielaurence\n\n22) wil: T G3 R3 B2\n\n23) Danielaurence: Move B1 Danielaurence Jelloland\n\n24) wil: D Y2 B2 B1 B1\n\n25) Danielaurence: Trade Y3 G3 Jelloland\n\n26) wil: T G3 Y3 B2\n\twil: Note... My opening...starting without a blue...is completely unorthodox.. But I have been successful with it...currently mixed reviews... And most popular opening is the banker, currently considered strongest and as a starship commander and galactic overlord, decorum does not allow me to use it against you...\n\n27) Danielaurence: Discover G3 Jelloland B2 Topos\n\n28) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB Y2 B1\n\tDanielaurence: I love using unorthodox strategies in games like this. I didn&#39;t know that the banker is considered stronger. I really like learning how to use less popular strategies and openings in these games. Thank you for your grace in avoiding the banker, oh great galactic overlord. Please allow my humble construction/conversion fortress to exist in peace!\n\n29) Danielaurence: Sacrifice G3 Topos\nBuild B2 Jelloland\nBuild B2 Jelloland\nBuild B3 Danielaurence\n\n30) wil: M Y3 B2 Jelloland\n\twil: We will let you live in peace....and expect similar diplomacy on your side...you do have an excess of resources which we will gladly facilitate taking off your hands at some point in time, and should your ancestral lands ever become desrbalized we will assist by eliminating the star before it nebulizes and puts my galaxy at risk\n\n31) Danielaurence: Sacrifice Y3 Danielaurence\nMove B2 Jelloland B2\nMove B2 Jelloland B2\nMove B1 Jelloland B2\nCatastrophe B2 Blue\n\n32) wil: S G3 Wil\nB G1 Y1\nB G3 Wil\nB G3 Wil\n\n33) Danielaurence: Build Y3 Danielaurence\n\n34) wil: T Y2 R2 B1\n\n35) Danielaurence: Trade B3 G3 Danielaurence\n\n36) wil: D G3 Wil B2 B2\n\n37) Danielaurence: Trade G3 R3 Danielaurence\n\n38) wil: B G3 B2\n\n39) Danielaurence: Move R3 Danielaurence Y1\n\n40) wil: T G3 Y3 B2\n\n41) Danielaurence: Attack G2 Y1\n\n42) wil: S G3 Wil\nB G3 Wil\nB G3 Y1\nB Y2 B1\nC Y1 G\n\n43) Danielaurence: Trade Y1 G1 Danielaurence\n\n44) wil: B G2 B2\n\n45) Danielaurence: Move B1 Danielaurence Jelloland\n\n46) wil: M G3 B2 B1\n\n47) Danielaurence: Move G1 Danielaurence Y1\n\twil: You giving me that fine ship?\n\tDanielaurence: Nope :)\n\n48) wil: S G3 Wil\nB G2 B2\nB G3 B1\nB G3 Wil\n\n49) Danielaurence: Build Y1 Jelloland\n\n50) wil: T G2 R2 B2\n\n51) Danielaurence: Build G2 Y1\n\n52) wil: S G3 Wil\nB G3 Wil\nB R1 B1\nB R1 B2\n\n53) Danielaurence: Discover G1 Y1 B2 Ice Town\n\n54) wil: M G1 Wil B2\n\n55) Danielaurence: Build B1 Jelloland\n\n56) wil: S R2 B2\nA Y2 Jelloland\nA B1 Jelloland\n\n57) Danielaurence: Move B1 Jelloland Ice\n\n58) wil: S R1 B1\nA Y1 Jelloland\n\n59) Danielaurence: Move R3 Y1 Ice\n\tDanielaurence: I knew you wouldn&#39;t fall for that, but it was worth a shot!\n\n60) wil: S Y3 B2\nM Y1 Jelloland Danielaurence\nM Y2 Jelloland Danielaurence\nM Y2 B1 Danielaurence\nC Danielaurence Y\n\n61) Danielaurence: Build R1 Ice\n\n62) wil: M Y3 Jelloland Danielaurence\n\twil: It was worth a shot!\n\twil: It was worth a shot!\n\twil: It was worth a shot!\n\n63) Danielaurence: Pass\n\n64) wil: S R1 B2\nA R2 Danielaurence\n\n\twil: Anytime...\n\tDanielaurence: Any tips regarding strategy? I&#39;m still quite bad at this but I&#39;d love any pointers from my new galactic dictator. You know... just in case I find a chance to spark a rebellion and overthrow your empire.\n\twil: Try to keep up in color/economy...not to allow a monopoly...begin and stay with the ends in mind... Loss  lot, learn a lot...seeing various attacks come at you..\n\tDanielaurence: Thanks!\n\nHomeworlds Online (SDG# 28638)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.18, Ended: 2015.11.27\nParticipants: Danielaurence (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Danielaurence: Homeworld B3 Y2 G3\n\tAusmuh: Have fun!\n\tDanielaurence: Thanks, you too!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) Ausmuh: Build B1 Ausmuh\n\n6) Danielaurence: Trade G1 B1 Danielaurence\n\n7) Ausmuh: Discover B1 Ausmuh G2 Mw2\n\n8) Danielaurence: Build B2 Danielaurence\n\n9) Ausmuh: Build B2 Mw2\n\n10) Danielaurence: Discover B2 Danielaurence G1 Foris\n\n11) Ausmuh: Sacrifice B2 Mw2\nTrade B1 Y1 Mw2\nTrade B1 R1 Ausmuh\n\n12) Danielaurence: Build B1 Foris\n\n13) Ausmuh: Build Y1 Mw2\n\n14) Danielaurence: Trade B2 Y2 Foris\n\n15) Ausmuh: Build R1 Ausmuh\n\n16) Danielaurence: Trade Y2 R2 Foris\n\n17) Ausmuh: Build Y2 Mw2\n\n18) Danielaurence: Build G1 Danielaurence\n\n19) Ausmuh: Move Y2 Mw2 Ausmuh\n\n20) Danielaurence: Move G1 Danielaurence Foris\n\n21) Ausmuh: Trade Y2 B2 Ausmuh\n\n22) Danielaurence: Build G1 Danielaurence\n\n23) Ausmuh: Build Y2 Mw2\n\n24) Danielaurence: Sacrifice G3 Danielaurence\nBuild G2 Foris\nBuild G2 Danielaurence\nBuild G3 Danielaurence\n\n25) Ausmuh: Discover Y2 Mw2 R1 Cc1\n\n26) Danielaurence: Trade G2 Y2 Foris\n\n27) Ausmuh: Trade B2 G2 Ausmuh\n\n28) Danielaurence: Sacrifice G3 Danielaurence\nBuild G3 Foris\nBuild Y3 Foris\nBuild G3 Danielaurence\n\n29) Ausmuh: Sacrifice Y2 Cc1\nMove G2 Ausmuh Mw2\nMove G2 Mw2 Foris\nCatastrophe Foris Green\n\n30) Danielaurence: Trade G2 Y2 Danielaurence\n\n31) Ausmuh: Build R1 Ausmuh\n\tDanielaurence: Nice play!\n\n32) Danielaurence: B Y2 Danielaurence\n\tAusmuh: Thanks, I don&#39;t have many. :)\n\n33) Ausmuh: Discover Y1 Mw2 G1 Mw1\n\n34) Danielaurence: Discover Y2 Danielaurence G1 Naboo\n\n35) Ausmuh: Build Y3 Mw1\n\n36) Danielaurence: S G3 Danielaurence\nB G2 Danielaurence\nB Y3 Danielaurence\nB Y3 Naboo\n\n37) Ausmuh: Move Y1 Mw1 Danielaurence\nCatastrophe Danielaurence Y\n\n38) Danielaurence: M Y3 Naboo Danielaurence\n\tDanielaurence: Ouch. I missed that!\n\n39) Ausmuh: Move Y3 Mw1 Danielaurence\n\n40) Danielaurence: Build Y1 Danielaurence\n\n41) Ausmuh: Trade Y3 R3 Danielaurence\n\tDanielaurence: Well done. I didn&#39;t see that gambit coming at all and it worked beautifully! I have learned.\n\n42) Danielaurence: Build Y2 Danielaurence\n\tAusmuh: Catastrophes are sneaky indeed.  It&#39;s usually advised to get into red when your opponent does. A 2  pip red has the ability to ward off most direct attacks on your Homeworld, as you would need three 3 pip ships to survive the sacrifice attack. Good game and thanks for playing\n\n43) Ausmuh: Attack Y3S Danielaurence\n\tDanielaurence: I see that now. And I forgot that you can always sacrifice an r1 to attack with a non-red ship in another system. Sneaky indeed! \n\n44) Danielaurence: Sacrifice G2 Danielaurence\nBuild B1 Danielaurence\nBuild B1 Danielaurence\n\n45) Ausmuh: Trade R3 B3 Danielaurence\nCatastrophe Danielaurence Blue\n\tDanielaurence: Let me help you out there ;)\n\n\nHomeworlds Online (SDG# 28614)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.19, Ended: 2015.12.2\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B2 R1 G3\n\n2) kanzenryu: Homeworld Y1 B3 G3\n\n3) Simon: Build G1 Simon\n\tkanzenryu: This game is an amazing universe of every idea turns out to be wrong ;-)\n\tSimon: It&#39;s a battle of several unevenly distributed resources, hard to estimate the value of them all.\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Simon: Trade G1 Y1 Simon\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Simon: Build Y2 Simon\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) Simon: Discover Y1 Simon B3 B3\n\n10) kanzenryu: Discover G1 Kanzenryu B2 Foo\n\n11) Simon: Build Y2 Simon\n\n12) kanzenryu: Build G1 Foo\n\n13) Simon: Discover Y2 Simon G3 G3\n\n14) kanzenryu: Move Y1 Kanzenryu Foo\n\n15) Simon: Sacrifice G3 Simon\nBuild Y2 B3\nBuild Y3 Simon\nBuild Y3 B3\n\n16) kanzenryu: Move Y1 Foo B3\nCatastrophe B3 Y\n\n17) Simon: Trade Y3 G3 Simon\n\n18) kanzenryu: Trade G1 Y1 Foo\n\n19) Simon: Build G1 Simon\n\n20) kanzenryu: Move Y1 Foo G3\n\n21) Simon: Trade G1 R1 Simon\n\n22) kanzenryu: Build G1 Kanzenryu\n\n23) Simon: Move R1 Simon G3\n\n24) kanzenryu: Discover Y1 G3 G1 Ouch\n\n25) Simon: Build G2 Simon\n\n26) kanzenryu: Build G2 Foo\n\n27) Simon: Sacrifice G3 Simon\nBuild G2 Simon\nBuild G3 Simon\nBuild Y1 G3\n\n28) kanzenryu: Trade G2 R2 Foo\n\n29) Simon: Discover Y2 G3 R2 R2\n\n30) kanzenryu: Sacrifice G3 Kanzenryu\nBuild Y2 Ouch\nBuild G2 Foo\nBuild G3 Kanzenryu\n\n31) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 G3\nBuild Y3 R2\n\n32) kanzenryu: Trade G1 R1 Kanzenryu\n\n33) Simon: Move Y3 G3 Foo\n\n34) kanzenryu: Sacrifice Y2 Ouch\nMove R2 Foo G3\nMove G2 Foo G3\n\n35) Simon: Sacrifice R1 G3\nAttack G1 Foo\n\n36) kanzenryu: Attack Y1 G3\n\n37) Simon: Sacrifice G2 Simon\nBuild G1 Simon\nBuild G2 Foo\n\n38) kanzenryu: Build Y2 G3\n\n39) Simon: Sacrifice Y2 R2\nMove G1 Simon G3\nMove G1 Foo G3\nCatastrophe G3 G\n\n40) kanzenryu: Build G1 Kanzenryu\n\n41) Simon: Build G1 Foo\n\n42) kanzenryu: Discover G1 Kanzenryu B2 Somewhere\n\n43) Simon: Build G2 Simon\n\n44) kanzenryu: Build G3 Somewhere\n\n45) Simon: Build G3 Foo\n\n46) kanzenryu: Trade G3 R3 Kanzenryu\n\n47) Simon: Trade G2 R2 Foo\n\n48) kanzenryu: Trade G1 Y1 Somewhere\n\n49) Simon: Sacrifice G2 Simon\nBuild R1 Foo\nBuild Y2 Foo\n\n50) kanzenryu: Build Y2 Somewhere\n\n\tSimon: The last build threatens mate. &gt;_&gt; If you would like to undo, feel free to do so. Or we can always play a fresh one. :)\n\tkanzenryu: I can see that it&#39;s all bad news for this game...\n\nHomeworlds Online (SDG# 28637)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.19, Ended: 2015.12.14\nParticipants: kanzenryu (S), Danielaurence (N)\nWinner: kanzenryu\n\n1) Danielaurence: Homeworld B2 Y1 G3\n\n2) kanzenryu: Homeworld B1 Y3 G3\n\tDanielaurence: Good luck! Have you played this before?\n\tkanzenryu: Hi, I&#39;ve played about 10 games and lost them all. Fun, though.\n\n3) Danielaurence: Build G1 Danielaurence\n\tDanielaurence: I&#39;ve lost all my games too so this should be interesting :) good luck!\n\n4) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: The pressure is on now ;-) It does seem like any small mistake early on can be ruthlessly exploited by a good player.\n\n5) Danielaurence: Trade G1 B1 Danielaurence\n\n6) kanzenryu: Trade G1 B1 Kanzenryu\n\tDanielaurence: Definitely. I&#39;m not a very player yet, though, so you have less to fear from your early mistakes.\r\n\n\tDanielaurence: good player*\n\n7) Danielaurence: Discover B1 Danielaurence G3 Boreal\n\n8) kanzenryu: Discover B1 Kanzenryu G2 Out\n\n9) Danielaurence: Build B2 Boreal\n\n10) kanzenryu: Build G1 Kanzenryu\n\n11) Danielaurence: Trade B1 Y1 Boreal\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) Danielaurence: Build G1 Danielaurence\n\n14) kanzenryu: Discover G1 Kanzenryu Y2 Other\n\n15) Danielaurence: Build B1 Boreal\n\n16) kanzenryu: Build G2 Other\n\n17) Danielaurence: S G3 Danielaurence\nBuild G2 Danielaurence\nBuild G3 Danielaurence\nB B2 Boreal\n\n18) kanzenryu: Build B3 Out\n\tkanzenryu: Do you want to undo that? I can catastrophe in green in your home system.\n\tDanielaurence: No, that&#39;s okay. I don&#39;t really believe in undoing moves if I missed something, so iif I made a mistake, you should definitely take advantage of it!\n\tDanielaurence: I&quot;m not totally sure you can get to my home system right now though. Is there some sneaky way you can get there that I&#39;m missing?\n\tkanzenryu: Ha ha, sorry, I&#39;m hallucinating a y2 from some other game.\n\n19) Danielaurence: T B2 R2 Boreal\n\n20) kanzenryu: Trade B1 R1 Out\n\n21) Danielaurence: Sacrifice G3 Danielaurence\nBuild G3 Danielaurence\nBuild Y1 Boreal\nBuild Y2 Boreal\n\n22) kanzenryu: Sacrifice G3 Kanzenryu\nBuild R1 Out\nBuild B1 Out\nBuild G3 Kanzenryu\n\n23) Danielaurence: Discover Y2 Boreal B2 Gate\n\n24) kanzenryu: Trade B3 Y3 Out\n\n25) Danielaurence: D G2 Danielaurence Y3 Sol\n\n26) kanzenryu: Build B3 Out\n\n27) Danielaurence: B Y2 Boreal\n\n28) kanzenryu: Move B3 Out Boreal\n\n29) Danielaurence: S Y2 Boreal\nM G1 Danielaurence Sol\nM G2 Sol Gate\n\n30) kanzenryu: Sacrifice R1 Out\nAttack R2 Boreal\n\n31) Danielaurence: Move G1 Sol Gate\n\n32) kanzenryu: Trade G1 R1 Kanzenryu\n\n33) Danielaurence: Move B2 Boreal Danielaurence\n\n34) kanzenryu: Build Y2 Out\n\n35) Danielaurence: Trade B2 R2 Danielaurence\n\n36) kanzenryu: Attack B1 Boreal\n\n37) Danielaurence: Build Y3 Gate\n\n38) kanzenryu: Build B2 Boreal\n\n39) Danielaurence: Move Y1 Boreal Gate\n\n40) kanzenryu: Sacrifice Y3 Out\nMove B1 Boreal Gate\nMove B2 Boreal Gate\nMove B3 Boreal Gate\nCatastrophe Gate B\n\n41) Danielaurence: Discover Y1 Boreal G2 Gate\n\n42) kanzenryu: Build G1 Kanzenryu\n\n43) Danielaurence: Build G1 Danielaurence\n\n44) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild B1 Out\nBuild B2 Out\n\n45) Danielaurence: B Y1 Gate\n\n46) kanzenryu: Move B1 Out Boreal\n\n47) Danielaurence: M Y1 Gate Kanzenryu\n\n48) kanzenryu: Attack Y1 Kanzenryu\n\n49) Danielaurence: Build Y2 Gate\n\n50) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild Y3 Out\nBuild R1 Out\n\n51) Danielaurence: Discover Y2 Gate B3 Warp\n\n52) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild B2 Boreal\nBuild B3 Boreal\n\n53) Danielaurence: Build Y3 Gate\n\tDanielaurence: Yikes,.... that&#39;s a lot of ships pointed my way!\n\n54) kanzenryu: Sacrifice Y3 Out\nMove B1 Boreal Danielaurence\nMove B2 Boreal Danielaurence\nMove B3 Boreal Danielaurence\nCatastrophe Danielaurence B\n\n55) Danielaurence: Sacrifice G3 Danielaurence\nBuild G3 Danielaurence\nBuild Y3 Warp\nPass\n\n56) kanzenryu: Discover Y1 Kanzenryu B2 Moon\n\n57) Danielaurence: Move Y3 Warp Out\n\n58) kanzenryu: Build R2 Out\n\n59) Danielaurence: Build R3 Danielaurence\n\tkanzenryu: This game really is interesting. I clearly overcommitted myself with that first attack. Now I&#39;m struggling. Awesome stuff!\n\tDanielaurence: It is very interesting! I had a game against another opponent recently where I blew up half of their homeworld, but I didn&#39;t have the resources to finish the job, so they creamed me in return. I don&#39;t know if I can manage to hit you back as hard here, but it is definitely dangerous to attack without the ability to finish the job!\n\n60) kanzenryu: Sacrifice Y2 Out\nMove R1 Out Danielaurence\nMove R1 Out Danielaurence\nCatastrophe Danielaurence R\n\n61) Danielaurence: Trade Y2 B2 Warp\n\n62) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild Y2 Moon\nBuild R1 Boreal\n\n63) Danielaurence: Sacrifice Y1 Gate\nMove B2 Warp Danielaurence\n\n64) kanzenryu: Sacrifice Y2 Moon\nMove G1 Other Danielaurence\nMove G2 Other Danielaurence\nCatastrophe Danielaurence G\n\n65) Danielaurence: T B2 G2 Danielaurence\n\tkanzenryu: Hmmm, catastrophe didn&#39;t seem to happen. Trying again...\n\n66) kanzenryu: Sacrifice Y1 Moon\nMove R2 Boreal Danielaurence\n\n67) Danielaurence: M Y3 Gate Danielaurence\n\tDanielaurence: This game is intense :) \n\tkanzenryu: I confess to setting up my plastic pyramids a couple of moves ago and looking for about 30 minutes to find a way to proceed.\n\n68) kanzenryu: Attack G2 Danielaurence\n\tDanielaurence: Haha! Perhaps I should try that!\n\n69) Danielaurence: Move Y3 Out Kanzenryu\n\tDanielaurence: I think you have the upper hand now though\n\n70) kanzenryu: Attack Y3 Kanzenryu\n\tkanzenryu: All glory to the plastic pyramids\n\n71) Danielaurence: Pass\n\n72) kanzenryu: Sacrifice B2 Out\nTrade R2 Y2 Danielaurence\nTrade G2 Y2 Danielaurence\nCatastrophe Danielaurence Y\n\n\tDanielaurence: You got me. Good game!\n\tDanielaurence: I have a new account on here that I am moving to (I got tired of typing in Danielaurence all the time in this game), so I will challenge you again from my new one (Felix) if you would like to rematch!\n\tDanielaurence: I have a new account on here that I am moving to (I got tired of typing in Danielaurence all the time in this game), so I will challenge you again from my new one (Felix) if you would like to rematch!\n\tkanzenryu: Felix will be much shorter to type, thanks for the game, my first ever win.\n\tDanielaurence: Yes, it&#39;s an old alias of mine. And congrats! You definitely earned it!\n\nHomeworlds Online (SDG# 28671)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.22, Ended: 2015.12.12\nParticipants: Uglyfoot (S), kanzenryu (N)\nWinner: Uglyfoot\n\n1) kanzenryu: Homeworld Y1 B3 G3\n\n2) Uglyfoot: Homeworld B2 Y3 G3\n\tkanzenryu: I&#39;m pretty bad at this game, too!\n\n3) kanzenryu: Build G1 Kanzenryu\n\tUglyfoot: Something always eludes me but maybe I&#39;ll get it this time...\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) Uglyfoot: Discover G1 Uglyfoot B1 Bluette\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) kanzenryu: Discover G1 Kanzenryu Y2 Out\n\n10) Uglyfoot: Build G2 Bluette\n\n11) kanzenryu: Build G2 Out\n\n12) Uglyfoot: Trade G2 Y2 Bluette\n\n13) kanzenryu: Discover G2 Out Y1 Peep\n\n14) Uglyfoot: Trade G1 R1 Uglyfoot\n\n15) kanzenryu: Trade Y1 R1 Kanzenryu\n\n16) Uglyfoot: Build Y1 Bluette\n\n17) kanzenryu: Build R1 Kanzenryu\n\n18) Uglyfoot: Build Y2 Bluette\n\n19) kanzenryu: Build R2 Kanzenryu\n\n20) Uglyfoot: Discover Y2 Bluette R2 Kaboom\n\n21) kanzenryu: Move R1 Kanzenryu Out\n\n22) Uglyfoot: Build Y3 Bluette\n\n23) kanzenryu: Build G1 Peep\n\n24) Uglyfoot: Trade Y3 R3 Bluette\n\n25) kanzenryu: Discover G1 Out B1 Peep2\n\n26) Uglyfoot: Build G2 Bluette\n\n27) kanzenryu: Build G2 Peep2\n\n28) Uglyfoot: Move R3 Bluette Uglyfoot\n\n29) kanzenryu: Build G3 Kanzenryu\n\n30) Uglyfoot: Build Y3 Bluette\n\n31) kanzenryu: Trade G3 Y3 Kanzenryu\n\n32) Uglyfoot: Sacrifice Y3 Bluette\nMove Y1 Bluette Kaboom\nMove Y1 Kaboom Kanzenryu\nMove Y2 Kaboom Kanzenryu\nCatastrophe Kanzenryu Y\n\n33) kanzenryu: Build G3 Kanzenryu\n\n34) Uglyfoot: Move R1 Uglyfoot Bluette\n\n35) kanzenryu: Trade G1 Y1 Peep2\n\n36) Uglyfoot: Sacrifice Y2 Bluette\nMove G1 Bluette Kanzenryu\nMove G2 Bluette Kanzenryu\nCatastrophe Kanzenryu G\n\n\tkanzenryu: Two have one catastrophe in your home system may be considered a misfortune, but two looks like carelessness... ;-)\n\nHomeworlds Online (SDG# 28675)\nStarted: 2015.11.23, Ended: 2015.12.4\nParticipants: Danielaurence (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\n2) Danielaurence: Homeworld G3 Y1 B3\n\n3) ts52: Build G1 Ts52\n\n4) Danielaurence: Build B1 Danielaurence\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\n6) Danielaurence: Discover B1 Danielaurence G2 Gate\n\n7) ts52: Build G1 Ts52\n\n8) Danielaurence: B B1 Gate\n\n9) ts52: Build G1 Gonzo\n\n10) Danielaurence: Build B2 Danielaurence\n\n11) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Ts52\nBuild G3 Ts52\n\n12) Danielaurence: Build B2 Gate\n\n13) ts52: Discover G2 Ts52 Y1 Zoe\n\n14) Danielaurence: Trade B3 G3 Danielaurence\n\n15) ts52: Trade G2 Y2 Gonzo\n\n16) Danielaurence: Trade B2 Y2 Gate\n\n17) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n18) Danielaurence: Build B2 Danielaurence\n\n19) ts52: Trade G3 B3 Ts52\n\n20) Danielaurence:\nB B3 Gate\n\n21) ts52: Build G3 Ts52\n\n22) Danielaurence: T B3 R3 Gate\n\n23) ts52: Trade G3 R3 Ts52\n\n24) Danielaurence: Move R3 Gate Gonzo\n\n25) ts52: Move B3 Ts52 Zoe\n\n26) Danielaurence: Attack G2 Gonzo\n\n27) ts52: Build G3 Ts52\n\n28) Danielaurence: Attack Y2 Gonzo\n\n29) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild Y3 Gonzo\nCatastrophe Gonzo Yellow\n\n30) Danielaurence: Build B3 Danielaurence\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Zoe\nBuild B3 Zoe\nBuild R1 Ts52\n\n32) Danielaurence: Sacrifice B2 Danielaurence\nTrade B3 Y3 Danielaurence\nTrade G2 Y2 Gonzo\n\n33) ts52: Trade B3 R3 Zoe\n\n34) Danielaurence: Sacrifice G3 Danielaurence\nBuild Y1 Gate\nBuild Y2 Gate\nBuild Y3 Gonzo\n\n35) ts52: Move R3 Zoe Gate\n\n36) Danielaurence: Sacrifice Y2 Gate\nMove B1 Gate Gonzo\nMove B1 Gate Gonzo\n\n37) ts52: Attack Y2 Gate\n\n38) Danielaurence: Sacrifice Y1 Gate\nDiscover B2 Danielaurence G2 Safe\n\n39) ts52: Sacrifice G3 Zoe\nBuild G3 Ts52\nBuild G3 Zoe\nBuild Y1 Gate\n\tDanielaurence: Nice move!\n\n40) Danielaurence: Move Y2 Gonzo Safe\n\n41) ts52: Move Y1 Gate Danielaurence\n\n42) Danielaurence: Sacrifice B1 Gonzo\nTrade Y3 B3 Danielaurence\n\n43) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Danielaurence\nBuild Y3 Gate\n\n44) Danielaurence: Attack G1 Gonzo\n\n45) ts52: Move Y2 Gate Danielaurence\nCatastrophe Danielaurence Yellow\n\tDanielaurence: Nice one. I&#39;m learning, but that hurt!\r\n\n\n46) Danielaurence: Attack G1 Gonzo\n\n47) ts52: Sacrifice Y3 Gate\nMove G2 Zoe Danielaurence\nMove G3 Zoe Danielaurence\nMove G1 Ts52 Zoe\n\n48) Danielaurence: Sacrifice R3 Gonzo\nAttack G3 Danielaurence\nAttack G2 Danielaurence\nPass\n\n49) ts52: Move G1 Zoe Danielaurence\nCatastrophe Danielaurence Green\n\n\tts52: Thanks for the game!\n\tDanielaurence: Likewise. I think I have learned!\n\tts52: Always happy to play another. :)\n\nHomeworlds Online (SDG# 28624)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.23, Ended: 2015.11.28\nParticipants: endo (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) endo: Homeworld B1 R2 G3\n\tSimon: More homeworlds! Have fun!\n\n3) Simon: Build G1 Simon\n\tendo: Glhf!\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 Y1 Simon\n\n6) endo: Trade G1 Y1 Endo\n\n7) Simon: Build G1 Simon\n\n8) endo: Build G1 Endo\n\n9) Simon: Trade G1 B1 Simon\n\n10) endo: Trade G1 B1 Endo\n\n11) Simon: Build B2 Simon\n\n12) endo: Build B2 Endo\n\n13) Simon: Discover B2 Simon G2 G2\n\n14) endo: Discover B1 Endo G3 Homotopy\n\n15) Simon: Build G1 Simon\n\n16) endo: Build Y1 Endo\n\n17) Simon: Build Y2 Simon\n\n18) endo: Move Y1 Endo Homotopy\n\n19) Simon: Move Y1 Simon G2\n\n20) endo: Build Y2 Homotopy\n\n21) Simon: Build Y2 Simon\n\n22) endo: Trade Y2 R2 Homotopy\n\n23) Simon: Trade Y2 R2 Simon\n\n24) endo: Build Y2 Homotopy\n\n25) Simon: Move R2 Simon G2\n\n26) endo: Discover Y2 Homotopy G2 Fibration\n\n27) Simon: Discover B1 Simon G2 G2a\n\n28) endo: Build R1 Homotopy\n\n29) Simon: Build B2 G2a\n\n30) endo: Move R1 Homotopy Fibration\n\n31) Simon: Build B3 G2\n\n32) endo: Build B3 Homotopy\n\n33) Simon: Sacrifice Y2 Simon\nMove B1 G2a Homotopy\nMove B2 G2a Homotopy\nCatastrophe Homotopy B\n\n34) endo: Sacrifice G3 Endo\nBuild Y2 Homotopy\nBuild Y2 Fibration\nBuild Y3 Endo\n\n35) Simon: Move B3 G2 Homotopy\n\n36) endo: Build Y3 Fibration\n\n37) Simon: Sacrifice R2 G2\nAttack R2 Homotopy\nAttack Y2 Homotopy\n\n38) endo: Build Y3 Homotopy\n\n39) Simon: Attack Y3 Homotopy\n\n40) endo: Move Y2 Fibration Homotopy\nCatastrophe Homotopy Y\n\n41) Simon: Build B1 G2\n\n42) endo: Build R1 Fibration\n\n43) Simon: Build R2 Homotopy\n\n44) endo: Discover R1 Fibration G3 Path\n\n45) Simon: Trade R2 Y2 Homotopy\n\n46) endo: Build R2 Fibration\n\n47) Simon: Build R3 Homotopy\n\n48) endo: Build R3 Path\n\n49) Simon: Move R3 Homotopy G2\n\n50) endo: Sacrifice B2 Endo\nTrade R2 B2 Fibration\nTrade R3 B3 Path\n\n51) Simon: Build R2 Homotopy\n\n52) endo: Build R3 Path\n\n53) Simon: Build R3 G2\n\n54) endo: Trade R3 Y3 Path\n\n55) Simon: Trade B2 Y2 G2\n\n56) endo: Trade Y1 G1 Endo\n\n57) Simon: Discover R3 G2 R3 R3\n\n58) endo: Sacrifice Y3 Path\nMove R1 Path Fibration\nMove R1 Fibration R3\nMove R1 Fibration R3\nCatastrophe R3 R\n\n59) Simon: Build R1 Homotopy\n\n60) endo: Trade Y3 R3 Fibration\n\n61) Simon: Move R1 Homotopy Endo\n\n62) endo: Build B1 Path\n\n63) Simon: Build B2 Homotopy\n\n64) endo: Build B2 Fibration\n\n65) Simon: Sacrifice Y2 G2\nMove R2 Homotopy Endo\nMove B2 Homotopy Endo\n\n66) endo: Sacrifice Y2 Fibration\nMove B1 Path G2\nMove B3 Path G2\n\n67) Simon: Attack B3 G2\n\n\tendo: Good game! I let you have all the medium and large red ships, not realizing how dangerous that could become... That said, I was in an uncomfortable position ever since my move 15, when I definitely had to build immediately to avoid the catastrophe, but missed the whole idea. Well played.\n\tSimon: gg! I didn&#39;t feel much ahead until discover r3 r3. But yeah, the game has developed smoothly even before.\n\nHomeworlds Online (SDG# 28620)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.24, Ended: 2015.12.10\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B3 R1 G3\n\n2) wil: H Y3 B2 G3\n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 R1 Simon\n\n6) wil: T G1 R1 Wil\n\n7) Simon: Build R2 Simon\n\n8) wil: B R2 Wil\n\n9) Simon: Trade R2 Y2 Simon\n\twil: You must be west coast or Europe\n\tSimon: Yeah, Germany, with the weird sleeping habits. :-) Awake today since 3 a.m.\n\n10) wil: D R2 Wil Y1 Y1\n\n11) Simon: Discover R1 Simon B2 B2\n\n12) wil: M R2 Y1 B2\n\n13) Simon: Build Y1 Simon\n\n14) wil: A R1 B2\n\n15) Simon: Trade Y2 R2 Simon\n\twil: I couldn&#39;t make it till 3am...had to head to sleep...\n\n16) wil: T R2 Y2 B2\n\n17) Simon: Discover R2 Simon G2 G2\n\n18) wil: B R2 Wil\n\n19) Simon: Build Y1 Simon\n\n20) wil: D R1 Wil Y1 Y1\n\n21) Simon: Move Y1 Simon G2\n\n22) wil: D R1 Y1 Y3 Y3\n\n23) Simon: Build G1 Simon\n\n24) wil: S G3 Wil\nB R2 Y3\nB R3 B2\nB R3 Wil\n\n25) Simon: Build R3 G2\n\n26) wil: S Y2 B2\nM R2 Y3 G2\nM R1 Y3 G2\nC G2 R\n\n27) Simon: Build Y1 Simon\n\n28) wil: T R3 G3 Wil\n\n29) Simon: Build Y2 G2\n\n30) wil: T R3 Y3 B2\n\n31) Simon: Build Y2 Simon\n\n32) wil: B G1 Wil\n\n33) Simon: Trade Y1 B1 Simon\n\n34) wil: S G3 Wil\nB R1 B2\nB R2 B2\nB R2 Wil\n\n35) Simon: Discover B1 Simon G2 G2a\n\n36) wil: B R3 Wil\n\n37) Simon: Discover G1 Simon B2 B2a\n\n38) wil: D R2 Wil Y1 Y1\n\n39) Simon: Build G1 Simon\n\n40) wil: M R2 Y1 G2\n\n41) Simon: Sacrifice G3 Simon\nBuild G2 B2a\nBuild G3 B2a\nBuild G3 Simon\n\n42) wil: B R3 Wil\n\n43) Simon: Trade G3 R3 B2a\n\n44) wil: D R3 Wil Y1 Y1\n\n45) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Simon\nBuild Y3 G2\n\n46) wil: B G3 Wil\n\n47) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2a\nBuild B1 G2a\n\tSimon: You have a wicked preference for the reds and aversion for the yellows.\n\n48) wil: M R3 Y1 G2a\n\n49) Simon: Discover Y2 G2 Y1 Y1\n\n50) wil: A B1 G2a\n\twil: I actually prefer fuel reserves\n\n51) Simon: Sacrifice Y1 G2\nMove B1 G2a Y1\n\n52) wil: S G3 Wil\nB Y1 B2\nB G3 Wil\nP\n\n53) Simon: Move Y2 Simon B2a\n\n54) wil: M R3 Wil Y1\n\n55) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 Y1\nBuild B3 Y1\n\n56) wil: A B3 Y1\n\n57) Simon: Sacrifice Y2 Y1\nMove R3 B2a Y1\nMove R3 Y1 G2\n\n58) wil: T R2 Y2 Wil\n\twil: I thank you for the pretty blue ship... It looks so sell kept it is as if it camer right from the bank...so thoughtful of you.\n\n59) Simon: Attack R2 G2\n\n60) wil: S G3 Wil\nB G3 Wil\nB R2 Y1\nB B3 G2a\n\n61) Simon: Sacrifice Y2 Simon\nMove B1 Y1 G2\nMove B1 Y1 G2\n\n62) wil: M R2 Y1 Wil\n\twil: Fortress... So named because if you don&#39;t create some pawn stars before they are gone...accessed is severely limited..\n\n63) Simon: Sacrifice G1 B2a\nBuild Y2 G2\n\tSimon: Many things to do still before homeworld access becomes a problem!\n\n64) wil: D Y2 Wil G1 G1\n\n65) Simon: Move Y3 G2 G1\n\n66) wil: S Y2 G1\nM R2 B2 Simon\nM R1 B2 Simon\n\n\tSimon: gg\n\twil: A version of the doomsday machine...built and ready.\n\tSimon: Yeah. I considered sac y3 and cata y, but then you can trade for a y3 with no substantial delay.\n\nHomeworlds Online (SDG# 28688)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.24, Ended: 2015.12.11\nParticipants: dlwillson (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\tSimon: Hi, enjoy!\n\n2) dlwillson: H B3 R2 G3\n\n3) Simon: Build G1 Simon\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Simon: Trade G1 Y1 Simon\n\tdlwillson: You too! Thanks for challenging me and good luck!\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Simon: Build G1 Simon\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Simon: Trade G1 R1 Simon\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Simon: Build R2 Simon\n\n12) dlwillson: B R2 Dlwillson\n\n13) Simon: Discover R2 Simon B2 B2\n\n14) dlwillson: T R2 Y2 Dlwillson\n\n15) Simon: Sacrifice G3 Simon\nBuild R2 B2\nBuild R3 B2\nBuild R3 Simon\n\n16) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R1 Dlwillson Y1 Sunny\nMove R1 Sunny B2\nCatastrophe B2 R\n\n17) Simon: Trade R3 G3 Simon\n\n18) dlwillson: B G1 Dlwillson\n\n19) Simon: Build R1 Simon\n\n20) dlwillson: T G3 R3 Dlwillson\n\n21) Simon: Discover R1 Simon B2 B2\n\n22) dlwillson: B R2 Dlwillson\n\n23) Simon: Sacrifice G3 Simon\nBuild R2 B2\nBuild R3 B2\nBuild R3 Simon\n\n24) dlwillson: D R2 Dlwillson G1 Forest\n\n25) Simon: Trade R2 Y2 B2\n\n26) dlwillson: B R2 Forest\n\n27) Simon: Trade R3 G3 Simon\n\n28) dlwillson: M Y1 Dlwillson Forest\n\n29) Simon: Build R3 Simon\n\n30) dlwillson: D R2 Forest Y2 Sol\n\n31) Simon: Move R3 Simon Sol\n\n32) dlwillson: T R3 G3 Dlwillson\n\tdlwillson: Sorry. Typo.\n\n33) Simon: Trade R1 G1 B2\n\tSimon: No problem with undo, it&#39;s no dexterity game :-)\n\n34) dlwillson: D R2 Sol Y1 Rigel\n\n35) Simon: Move R3 Sol Forest\n\tdlwillson: That one wasn&#39;t a typo, but I&#39;m down two larges. You&#39;ll forgive me. :-)\n\n36) dlwillson: S Y1 Forest\nD R2 Forest Y2 Sol\n\n37) Simon: Build G2 Simon\n\n38) dlwillson: T G1 Y1 Dlwillson\n\n39) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 Simon\nBuild Y3 B2\n\n40) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB R1 Rigel\nB R3 Sol\n\n41) Simon: Move Y3 B2 Rigel\n\n42) dlwillson: T Y1 G1 Dlwillson\n\n43) Simon: Sacrifice R1 Simon\nAttack R2 Rigel\n\n44) dlwillson: B G2 Dlwillson\n\n45) Simon: Build R1 Forest\n\n46) dlwillson: D G1 Dlwillson B1 Sky\n\n47) Simon: Build Y1 B2\n\n48) dlwillson: Build G2 Sky\n\n49) Simon: Build G3 B2\n\n50) dlwillson: B G3 Dlwillson\n\n51) Simon: Attack R1 Rigel\n\n52) dlwillson: T G1 B1 Sky\n\n53) Simon: Move R3 B2 Sky\n\n54) dlwillson: S G2 Sky\nB B1 Sky\nB B2 Sky\nC Sky B\n\n55) Simon: Trade G1 B1 B2\n\n56) dlwillson: D G3 Dlwillson B1 Sky\n\n57) Simon: Move Y2 B2 Forest\n\n58) dlwillson: M R2 Sol Sky\n\n59) Simon: Build B1 B2\n\n\tdlwillson: Very well done! :-)\n\tSimon: Thanks for the game! Always happy to play a rematch.\n\nHomeworlds Online (SDG# 28653)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.24, Ended: 2015.11.30\nParticipants: Danielaurence (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) Danielaurence: Homeworld B3 Y2 G3\n\tSimon: Hi, enjoy the game!\n\tDanielaurence: Hi there. Thanks, you too!\n\n3) Simon: Build G1 Simon\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Danielaurence: D G1 Danielaurence B1 Gate\n\n7) Simon: Build G1 Simon\n\n8) Danielaurence: B G1 Gate\n\n9) Simon: Build G2 Simon\n\n10) Danielaurence: Build G2 Gate\n\n11) Simon: Trade G2 B2 Simon\n\n12) Danielaurence: Build G2 Danielaurence\n\n13) Simon: Discover B2 Simon R2 R2\n\n14) Danielaurence: T G1 Y1 Gate\n\n15) Simon: Move G1 Simon R2\n\n16) Danielaurence: Discover G2 Gate B2 Door\n\n17) Simon: Build B1 R2\n\n18) Danielaurence: B G1 Door\n\n19) Simon: Trade B2 Y2 R2\n\n20) Danielaurence: Trade G2 R2 Danielaurence\n\n21) Simon: Build G2 Simon\n\n22) Danielaurence: B G2 Danielaurence\n\n23) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 R2\nBuild Y1 R2\n\n24) Danielaurence: B Y2 Gate\n\n25) Simon: Discover Y2 R2 R1 R1\n\n26) Danielaurence: S Y2 Gate\nM G1 Door Simon\nM G2 Door Simon\nCatastrophe Simon Green\n\n27) Simon: Sacrifice G3 R2\nBuild Y2 R1\nBuild Y3 Simon\nBuild Y3 R2\n\n28) Danielaurence: B Y3 Gate\n\n29) Simon: Trade Y3 G3 R2\n\n30) Danielaurence: T G3 Y3 Danielaurence\n\n31) Simon: Trade Y3 G3 Simon\n\n32) Danielaurence: Trade Y3 G3 Gate\n\n33) Simon: Sacrifice G3 R2\nBuild Y3 R2\nBuild Y3 Simon\nBuild B1 R2\n\n34) Danielaurence: Discover G3 Gate B2 Ice\n\n35) Simon: Build B2 R2\n\tDanielaurence: I think I&#39;m pretty bad at this :)\n\tSimon: No problem -- there&#39;s no matchmaking system on this server other than &quot;that person sounds like he won&#39;t bite my head off, so I&#39;ll accept their game offer&quot;. I&#39;m happy to play no matter what happens. If you feel like you&#39;re learning something new, that&#39;s perfectly fine. :-) Always happy about rematches, too.\n\n36) Danielaurence: Build G1 Ice\n\tDanielaurence: Same here! I am having fun and I am learning, even when I get my butt handed to me, so I&#39;m not complaining. I&#39;ll look forward to a rematch!\n\n37) Simon: Sacrifice Y3 Simon\nMove Y2 R1 Danielaurence\nMove Y2 R1 Danielaurence\nPass\nCatastrophe Danielaurence Y\n\n38) Danielaurence: Pass\n\n39) Simon: Sacrifice Y3 R2\nMove B1 R2 Danielaurence\nMove B1 R2 Danielaurence\nMove B2 R2 Danielaurence\nCatastrophe Danielaurence B\n\tDanielaurence: Nicely done!\n\tSimon: gg -- up for another game whenever you feel like it.\n\n\nHomeworlds Online (SDG# 28635)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.25, Ended: 2015.11.30\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\twil: Thx for the game!\n\n2) Felix: Homeworld R3 Y2 G3 *\n\twil: Feel free to ask any questions...\n\tFelix: Okay thanks! I have played a few games of this before offline but I am still learning the ins and outs.\n\n3) wil: B G1 Wil\n\twil: Dangerous opening...no blue...but.can be done\n\n4) Felix: Build G1 Felix\n\twil: Oops... I have a b1 you need.a b1 to move to...this game may be over fast...\n\tFelix: Oh... yeah, that could be bad. Oh well, here we go!\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Discover G1 Felix B1 Lasthope\n\n7) wil: B B2 Wil\n\n8) Felix: Build G1 Lasthope\n\n9) wil: D B2 Wil Y2 Y2\n\n10) Felix: B G1 Felix\n\n11) wil: S G3 Wil\nB B2 Y2\nB B2 Y2\nB B3 Wil\n\n12) Felix: Build G2 Lasthope\n\twil: If you wish to continue you may...but I will first be trading for g3s then reds, then whys...\n\n13) wil: T B3 G3 Wil\n\n14) Felix: Trade G1 Y1 Lasthope\n\n15) wil: B B3 Wil\n\n16) Felix: B Y1 Lasthope\n\n17) wil: T B3 R3 Wil\n\n18) Felix: T G1 R1 Lasthope\n\n19) wil: B B3 Wil\n\n20) Felix: D Y1 Lasthope G2 Newhope\n\n21) wil: D B2 Y2 G1 G1\n\n22) Felix: Build Y1 Newhope\n\n23) wil: S G3 Wil\nB B3 G1\nB B3 G1\nB R1 Wil\n\tFelix: Is the &quot;Goldilocks&quot; homeworld setup considered strongest? I have seen most of the top-rated players on here using it almost exclusively.\n\twil: It appeara to go banker, goldilocks, fortress...but I like trying fortress... If you are a starship commander, you should allow the lessor player to play banker...which leaves us playing goldilocks and fortress more often...it is decorum.... But once you win a few games...gloves are off!\n\n24) Felix: Build Y2 Newhope\n\tFelix: Oh, I see. Makes sense! And that&#39;s assuming I&#39;ll ever win a game :) Perhaps I shall try the banker next time and see if I can get a leg up.\n\n25) wil: M R3 Wil Newhope\n\twil: You understand the investment strategy right?  It is what helps.\n\tFelix: I think I get the principle. Parking g1 ships at large stars and then cashing them in later?\n\n26) Felix: Sacrifice G2 Lasthope\nBuild Y3 Lasthope\nBuild Y3 Lasthope\n\twil: Exactly...\n\twil: I need to fill up my ship with fuel...it will soon be used for a long distance mission.\n\n27) wil: A Y2 Newhope\n\tFelix: I&#39;ll just make some more fuel for you, then. You&#39;re welcome to take what you need.\n\n28) Felix: Move Y3 Lasthope Y2\n\twil: That was kind of you...especially since it appears fossil fuels are at a premium...thankfully I think that is all that is required\n\twil: You have some options... But it is one move to mate as it stands\n\n29) wil: S Y2 Newhope\nM B3 G1 Felix\nM B3 G1 Felix\n\n30) Felix: Sacrifice Y3 Lasthope\nMove Y1 Newhope Wil\nMove Y1 Newhope Wil\nMove Y3 Y2 Wil\nCatastrophe Wil Yellow\n\twil: The ole u get 1 I get 2 gambit\n\n31) wil: S R3 Newhope\nA G3 Felix\nA G1 Felix\nP\n\tFelix: Ah yes, I know it well. And I counter with the ol&#39; desperate last-ditch fuel explosion technique.\n\twil: Yes....we were so reliant on fossil fuels we had to leave our homeworld...we saw you had similar issues, reliant on fuel and violence in your stars...we&#39;ve brought the power and ability to change that....Felix&#39;s dark side is no longer..\n\tFelix: I learned much. Thanks, and I look forward to a rematch!\n\n\nHomeworlds Online (SDG# 28695)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.25, Ended: 2015.12.17\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B3 G3\n\n2) Felix: H B3 G2 Y3\n\tSimon: Hi, enjoy the game!\n\tFelix: Thanks, you also!\n\n3) Simon: Build G1 Simon\n\n4) Felix: Build Y1 Felix\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Felix: T Y1 G1 Felix\n\n7) Simon: Build G1 Simon\n\n8) Felix: Discover G1 Felix B1 Fw1\n\n9) Simon: Trade G1 B1 Simon\n\n10) Felix: B G1 Fw1\n\n11) Simon: Discover B1 Simon G2 G2\n\n12) Felix: T G1 B1 Fw1\n\n13) Simon: Build B2 G2\n\n14) Felix: B B2 Fw1\n\n15) Simon: Sacrifice Y1 Simon\nMove B1 G2 Fw1\nCatastrophe Fw1 B\n\n16) Felix: B Y1 Felix\n\n17) Simon: Build G1 Simon\n\n18) Felix: Trade Y1 G1 Felix\n\n19) Simon: Build B1 G2\n\n20) Felix: Build G1 Felix\n\n21) Simon: Trade B2 Y2 G2\n\n22) Felix: Discover G1 Felix B1 Rappa\n\n23) Simon: Build Y1 G2\n\n24) Felix: Build G2 Rappa\n\n25) Simon: Sacrifice Y1 G2\nDiscover G1 Simon B2 B2\n\n26) Felix: Trade G2 Y2 Rappa\n\n27) Simon: Build G2 Simon\n\n28) Felix: Build G3 Rappa\n\n29) Simon: Trade G2 Y2 Simon\n\n30) Felix: T G1 B1 Felix\n\n31) Simon: Build B2 G2\n\n32) Felix: Discover B1 Felix G1 Ghost\n\n33) Simon: Build G2 Simon\n\n34) Felix: Trade G3 R3 Rappa\n\n35) Simon: Move B2 G2 Ghost\n\n36) Felix: Move R3 Rappa G2\n\n37) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild B2 Ghost\n\n38) Felix: Attack B1 G2\n\n39) Simon: Trade B2 R2 Ghost\n\n40) Felix: Build G3 Rappa\n\n41) Simon: Trade G3 Y3 B2\n\n42) Felix: Attack Y2 G2\n\n43) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild B2 Ghost\n\n44) Felix: Sacrifice G3 Rappa\nBuild G3 Rappa\nBuild B3 G2\nBuild R1 G2\n\n45) Simon: Trade G3 Y3 B2\n\n46) Felix: Sacrifice G3 Rappa\nBuild G3 Rappa\nBuild Y1 Felix\nBuild Y1 G2\n\n47) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild Y1 Simon\n\n48) Felix: Move B1 G2 Ghost\nCatastrophe Ghost Blue\n\n49) Simon: Trade G3 R3 B2\n\n50) Felix: S G3 Rappa\nB G3 Rappa\nB B1 G2\nB B1 G2\n\n51) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild R1 Ghost\n\n52) Felix: Sacrifice Y2 G2\nMove R1 G2 Rappa\nMove R1 Rappa Felix\n\n53) Simon: Move Y3 B2 Ghost\n\n54) Felix: Sacrifice G3 Rappa\nBuild G3 Rappa\nBuild Y2 G2\nBuild R2 Felix\n\n55) Simon: Build R2 B2\n\n56) Felix: Sacrifice Y2 G2\nMove B1 G2 Simon\nMove B1 G2 Simon\n\n57) Simon: Sacrifice G1 B2\nBuild Y2 Ghost\n\n58) Felix: Sacrifice G3 Rappa\nBuild B2 G2\nBuild B2 Simon\nBuild R3 G2\nCatastrophe Simon Blue\n\n59) Simon: Sacrifice Y3 B2\nMove Y3 Ghost Felix\nMove R1 Ghost Felix\nMove R2 Ghost Felix\nCatastrophe Felix R\n\n60) Felix: S R3 G2\nA Y3 Felix\nPass\nPass\n\tFelix: Nice move!\n\n61) Simon: Move Y2 Ghost Felix\nCatastrophe Felix Y\n\tSimon: Thanks, yeah, the game got rather tricky at once. gg\n\tFelix: Good game! Thanks for playing.\n\n\nHomeworlds Online (SDG# 28711)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.27, Ended: 2015.12.2\nParticipants: kanzenryu (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 R2 G3\n\tFelix: Thanks for the game! I&#39;m still learning the strategies, but it&#39;s lots of fun! Hope you have fun\n\n2) kanzenryu: Homeworld Y1 B2 G3\n\n3) Felix: Build G1 Felix\n\tkanzenryu: Hi there! I&#39;m also a relative beginner. Enjoy the game...\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Felix: Trade G1 Y1 Felix\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Felix: B Y2 Felix\n\n8) kanzenryu: Build Y2 Kanzenryu\n\n9) Felix: D Y2 Felix G1 Loop\n\n10) kanzenryu: Trade Y1 B1 Kanzenryu\n\n11) Felix: Build G1 Felix\n\n12) kanzenryu: Discover B1 Kanzenryu G3 Out\n\n13) Felix: Trade G1 B1 Felix\n\n14) kanzenryu: Build G1 Kanzenryu\n\n15) Felix: B G1 Felix\n\n16) kanzenryu: Build G2 Kanzenryu\n\n17) Felix: Move B1 Felix Loop\n\n18) kanzenryu: Discover G2 Kanzenryu Y3 About\n\n19) Felix: Build Y1 Loop\n\n20) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Kanzenryu\nBuild G2 About\nBuild G3 Kanzenryu\n\n21) Felix: S G3 Felix\nB G3 Felix\nB Y2 Felix\nB Y3 Loop\n\n22) kanzenryu: Move Y2 Kanzenryu Out\n\n23) Felix: S Y3 Loop\nMove G1 Felix Loop\nM G1 Loop Out\nM G1 Out Kanzenryu\nCatastrophe Kanzenryu Green\n\tFelix: Good game! That was a lucky strike for me for sure. I&#39;d love to play again some time!\n\tkanzenryu: Thanks for the game. I&#39;ve joined the ladder now so I might be challenging you on that soon.\n\tFelix: Please do! I look forward to it :)\n\n\nHomeworlds Online (SDG# 28724)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.27, Ended: 2015.12.9\nParticipants: Felix (S), Ausmuh (N)\nWinner: Felix\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Felix: Homeworld B3 Y2 G3\n\tFelix: Thanks for the game. Good luck!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) Felix: B G1 Felix\n\tAusmuh: Thanks! Have fun\n\n5) Ausmuh: Trade B1 Y1 Ausmuh\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) Felix: B Y2 Felix\n\n9) Ausmuh: Discover Y1 Ausmuh G2 Mw1\n\n10) Felix: D Y2 Felix G1 Fort\n\n\nHomeworlds Online (SDG# 28687)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.27, Ended: 2015.12.6\nParticipants: endo (S), kanzenryu (N)\nWinner: endo\n\n1) kanzenryu: Homeworld Y1 B2 G3\n\n2) endo: Homeworld B1 Y3 G3\n\tkanzenryu: Is there any way to rename your homeworld?\n\n3) kanzenryu: Build G1 Kanzenryu\n\tendo: I don&#39;t think there is.\n\n4) endo: Build G1 Endo\n\n5) kanzenryu: Trade G1 B1 Kanzenryu\n\n6) endo: Trade G1 B1 Endo\n\n7) kanzenryu: Build B2 Kanzenryu\n\n8) endo: Build B2 Endo\n\n9) kanzenryu: Discover B2 Kanzenryu G3 Out\n\n10) endo: Trade B2 Y2 Endo\n\n11) kanzenryu: Build G1 Kanzenryu\n\n12) endo: Build Y1 Endo\n\n13) kanzenryu: Trade G1 Y1 Kanzenryu\n\n14) endo: Discover Y1 Endo G2 Hamiltonian\n\n15) kanzenryu: Move Y1 Kanzenryu Out\n\n16) endo: Build Y2 Endo\n\n17) kanzenryu: Build G1 Kanzenryu\n\n18) endo: Discover Y2 Endo G2 Knapsack\n\n19) kanzenryu: Discover G1 Kanzenryu Y3 More\n\n20) endo: Move B1 Endo Hamiltonian\n\n21) kanzenryu: Build G1 Kanzenryu\n\n22) endo: Move Y2 Knapsack More\n\n23) kanzenryu: Build Y2 Out\n\n24) endo: Build Y3 Hamiltonian\n\n25) kanzenryu: Move Y1 Out Hamiltonian\n\n26) endo: Trade Y3 R3 Hamiltonian\n\n27) kanzenryu: Move Y1 Hamiltonian Endo\n\n28) endo: Sacrifice Y2 Endo\nMove R3 Hamiltonian Out\nMove R3 Out Kanzenryu\n\n\tkanzenryu: Of course...\n\nHomeworlds Online (SDG# 28718)\nVariants: &quot;Hard time&quot;\nStarted: 2015.11.29, Ended: 2015.12.9\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld R1 B3 G3\n\n2) Simon: Homeworld B1 R2 G3\n\tendo: Even more homeworlds! Have fun!\n\tSimon: Yes yes, have fun!\n\n3) endo: Build G1 Endo\n\n4) Simon: Build G1 Simon\n\n5) endo: Trade G1 B1 Endo\n\n6) Simon: Build G1 Simon\n\n7) endo: Build B1 Endo\n\n8) Simon: Trade G1 Y1 Simon\n\n9) endo: Build G1 Endo\n\n10) Simon: Trade G3 B3 Simon\n\n11) endo: Trade B1 Y1 Endo\n\n12) Simon: Build G1 Simon\n\n13) endo: Build G2 Endo\n\n14) Simon: Build G2 Simon\n\n15) endo: Discover G1 Endo B2 Alternating\n\n16) Simon: Discover G2 Simon B3 B3\n\n17) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G3 Endo\nBuild G3 Alternating\n\n18) Simon: Build G3 B3\n\n19) endo: Discover G2 Endo B2 Dihedral\n\n20) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild B1 Simon\nBuild Y1 Simon\n\n21) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Endo\nBuild Y2 Endo\n\n22) Simon: Move Y1 Simon B3\n\n23) endo: Sacrifice Y2 Endo\nMove G1 Alternating B3\nMove G2 Dihedral B3\nCatastrophe B3 G\n\n24) Simon: Move G1 Simon B3\n\n25) endo: Build Y2 Endo\n\n26) Simon: Build Y2 B3\n\n27) endo: Move Y1 Endo Alternating\n\n28) Simon: Discover B1 Simon G3 G3\n\n29) endo: Trade B1 R1 Endo\n\n30) Simon: Discover Y1 B3 G2 G2\n\n31) endo: Build R1 Endo\n\n32) Simon: Build Y2 Simon\n\n33) endo: Sacrifice G3 Alternating\nBuild Y3 Endo\nBuild Y3 Endo\nBuild Y3 Alternating\n\n34) Simon: Move Y1 G2 Endo\nCatastrophe Endo Y\n\n35) endo: Move Y3 Alternating B3\n\n36) Simon: Trade Y2 R2 Simon\n\n37) endo: Sacrifice R1 Endo\nAttack Y2 B3\n\n38) Simon: Trade B3 G3 Simon\n\n39) endo: Build R1 Endo\n\n40) Simon: Discover G1 Simon Y3 Y3\n\n41) endo: Sacrifice R1 Endo\nAttack G1 B3\n\n42) Simon: Move R2 Simon G3\n\n43) endo: Trade Y3 R3 B3\n\n44) Simon: Build G1 Simon\n\n45) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 B3\nBuild G3 Endo\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 Simon\nBuild Y2 Simon\n\n47) endo: Sacrifice Y2 B3\nMove G1 B3 Simon\nMove G2 B3 Simon\nCatastrophe Simon G\n\n\tSimon: gg\n\tendo: Good game.\n\nHomeworlds Online (SDG# 28710)\nVariants: &quot;Unrated&quot;\nStarted: 2015.11.30, Ended: 2015.12.7\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) Felix: Homeworld B2 R1 G3\n\n3) wil: B G1 Wil\n\tFelix: Alright, let&#39;s try this investment strategy and see how she works....\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: B R1 Wil\n\n8) Felix: Build Y1 Felix\n\twil: Rule of thumb...play follow the leader at the beginning...especially with guns..  \n\tFelix: Got it. Thanks for the tip.\n\n9) wil: B R2 Wil\n\n10) Felix: D Y1 Felix G3 Rubble\n\n11) wil: D R1 Wil B1 B1\n\n12) Felix: B Y1 Rubble\n\n13) wil: S G3 Wil\nB R2 B1\nB R2 B1\nB R3 Wil\n\n14) Felix: Sacrifice G3 Felix\nBuild Y2 Rubble\nBuild Y2 Felix\nBuild Y3 Felix\n\n15) wil: T R3 G3 Wil\n\twil: This red yellow game agin\n\n16) Felix: Trade Y3 G3 Felix\n\n17) wil: B R3 Wil\n\tFelix: Very warm colors indeed!\n\n18) Felix: Discover Y2 Rubble G1 Tilt\n\n19) wil: T R3 Y3 Wil\n\n20) Felix: Build Y3 Tilt\n\n21) wil: B R3 Wil\n\n22) Felix: Sacrifice Y3 Tilt\nMove Y1 Rubble Tilt\nMove Y2 Tilt Wil\nMove Y1 Tilt Wil\nCatastrophe Wil Yellow\n\n23) wil: T R3 Y3 Wil\n\n24) Felix: Trade Y1 B1 Felix\n\twil: While blowing up half a homeworld feels good...unless the plan is in place to take out the rest it is often trouble\n\n25) wil: B R3 Wil\n\tFelix: I&#39;m still working on the rest of the plan :)\n\n26) Felix: Build B1 Felix\n\n27) wil: S Y3 Wil\nM G3 Wil Felix\nM R3 Wil Felix\nM R2 B1 Rubble\n\n28) Felix: S Y2 Felix\nPass\nPass\n\n29) wil: S R3 Felix\nA G3 Felix\nA B1 Felix\nA B1 Felix\n\n\twil: Gg\n\tFelix: You too. I have learned some things, I think.\n\twil: I think it takes a dozen gsmes or more to &quot;get it&quot; for the berage joe like me...and a mother couple dozen to feel competent... But after a couple hundred games I get slaughtered by the best...\n\tFelix: Well... I guess I&#39;m on my way to playing hundreds of games ;) Thanks, and I&quot;m happy to rematch any time.\n\twil: I am always up for a challenge... Endo is repeatedly kicking my butt.right now\r\n\r\n\n\nHomeworlds Online (SDG# 28731)\nStarted: 2015.11.30, Ended: 2015.12.15\nParticipants: kanzenryu (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) kanzenryu: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tkanzenryu: Still loving this game...\n\n4) kanzenryu: Build G1 Kanzenryu\n\tts52: That&#39;s good to hear. The more players the better!\n\tkanzenryu: I&#39;ve joined the ladder. I&#39;ll be way down the bottom of it for a long time, I think.\n\n5) ts52: Discover G1 Ts52 B2 Grover\n\n6) kanzenryu: Discover G1 Kanzenryu B3 Out\n\tts52: Nice!\n\n7) ts52: Build G1 Ts52\n\tkanzenryu: Well I can&#39;t seem to convince anybody to play with the plastic pyramids\n\n8) kanzenryu: Trade G1 Y1 Out\n\tkanzenryu: This time I can see some problems in advance. But now all moves look bad...\n\n9) ts52: Trade G1 Y1 Grover\n\n10) kanzenryu: Build G1 Kanzenryu\n\tts52: What kind of games do you usually play? I can&#39;t get anyone to play with the pyramids much either, though I&#39;m thinking of bringing them out at work again.\n\tkanzenryu: So far some IceTowers and Caldera. One game of Ice House, one of Zendo. I want to try RAMBots, Zagami and Gnostica.\n\n11) ts52: Move G1 Ts52 Grover\n\n12) kanzenryu: Move G1 Kanzenryu Out\n\tts52: Impressive. Gnostica is great, but Zark City is a really nice, lighter alternative.\n\tkanzenryu: Thanks, might try Zark City next\n\n13) ts52: Build Y2 Grover\n\n14) kanzenryu: Build Y2 Out\n\tkanzenryu: Have you played Icehouse or Zendo much?\n\n15) ts52: Trade Y2 R2 Grover\n\n16) kanzenryu: Trade Y1 R1 Out\n\tts52: I&#39;ve played icehouse a few times. Even played in an IIT, but it&#39;s a tough one to get people to play. There was a time when I was playing Zendo at lunch almost every day. But I haven&#39;t played it in quite a while.\n\n17) ts52: Build R1 Grover\n\n18) kanzenryu: Build G1 Kanzenryu\n\n19) ts52: Build G2 Ts52\n\n20) kanzenryu: Build G2 Out\n\n21) ts52: Trade G2 Y2 Ts52\n\n22) kanzenryu: Discover G1 Out Y2 Peep\n\n23) ts52: Build G2 Ts52\n\n24) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Out\nBuild G3 Kanzenryu\nBuild G3 Peep\n\n25) ts52: Discover G2 Ts52 B2 Gonzo\n\n26) kanzenryu: Build R1 Out\n\n27) ts52: Move Y2 Ts52 Gonzo\n\n28) kanzenryu: Trade G1 B1 Kanzenryu\n\n29) ts52: Trade R1 B1 Grover\n\n30) kanzenryu: Move G1 Peep Ts52\n\n31) ts52: Trade G3 R3 Ts52\n\n32) kanzenryu: Build G1 Kanzenryu\n\n33) ts52: Build G3 Grover\n\n34) kanzenryu: Discover B1 Kanzenryu Y3 Moon\n\n35) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y1 Grover\nBuild Y3 Gonzo\n\tts52: That&#39;s no moon.\n\n36) kanzenryu: Move B1 Moon Peep\n\n37) ts52: Discover B1 Grover Y3 Bigbird\n\tkanzenryu: It was a verb\n\n38) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild B3 Peep\nBuild R1 Out\n\tts52: :)\n\n39) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B3 Bigbird\nBuild R2 Grover\n\n40) kanzenryu: Move R1 Out Peep\n\n41) ts52: Move G1 Grover Bigbird\n\n42) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R2 Out\nBuild R3 Peep\n\n43) ts52: Sacrifice Y3 Gonzo\nMove G2 Gonzo Bigbird\nMove G2 Bigbird Kanzenryu\nMove G1 Bigbird Kanzenryu\nCatastrophe Kanzenryu Green\n\tts52: Thanks for the game!\n\tkanzenryu: Thanks, good game\n\n\nHomeworlds Online (SDG# 28745)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.2, Ended: 2015.12.26\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B2 G3\n\n2) kanzenryu: Homeworld B1 Y3 G3\n\tSimon: More homeworlds, more homeworlds, have fun!\n\n3) Simon: Build G1 Simon\n\tkanzenryu: Mo &#39;worlds!\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Simon: Trade G1 B1 Simon\n\n6) kanzenryu: Trade G1 B1 Kanzenryu\n\n7) Simon: Build B2 Simon\n\n8) kanzenryu: Build B2 Kanzenryu\n\n9) Simon: Trade B2 Y2 Simon\n\n10) kanzenryu: Discover B2 Kanzenryu G2 Out\n\n11) Simon: Discover B1 Simon G3 G3\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) Simon: Build G1 Simon\n\n14) kanzenryu: Trade G1 Y1 Kanzenryu\n\n15) Simon: Trade G1 R1 Simon\n\n16) kanzenryu: Trade B1 R1 Kanzenryu\n\n17) Simon: Move R1 Simon G3\n\n18) kanzenryu: Move Y1 Kanzenryu Out\n\n19) Simon: Build R2 G3\n\n20) kanzenryu: Build G1 Kanzenryu\n\n21) Simon: Trade R2 Y2 G3\n\n22) kanzenryu: Build Y1 Out\n\n23) Simon: Build R2 G3\n\n24) kanzenryu: Build R2 Kanzenryu\n\n25) Simon: Discover R1 G3 G2 G2\n\n26) kanzenryu: Move R2 Kanzenryu Out\n\n27) Simon: Build Y1 G3\n\n28) kanzenryu: Discover Y1 Out B3 Peep\n\n29) Simon: Move Y2 G3 G2\n\n30) kanzenryu: Build B1 Out\n\n31) Simon: Sacrifice G3 Simon\nBuild Y2 G2\nBuild Y3 G3\nBuild Y3 Simon\n\n32) kanzenryu: Move R2 Out Peep\n\n33) Simon: Trade Y2 G2 Simon\n\n34) kanzenryu: Build Y2 Out\n\n35) Simon: Build G1 Simon\n\n36) kanzenryu: Move B1 Out Peep\n\n37) Simon: Discover Y1 G3 G1 G1\n\n38) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R2 Kanzenryu\nBuild R3 Peep\n\n39) Simon: Discover G2 Simon R3 R3\n\n40) kanzenryu: Discover B2 Out G3 Soon\n\n41) Simon: Build R3 G2\n\n42) kanzenryu: Build B2 Soon\n\n43) Simon: Build B3 G3\n\n44) kanzenryu: Move B1 Peep Simon\n\n45) Simon: Move B3 G3 Out\n\n46) kanzenryu: Sacrifice Y2 Out\nMove B2 Soon Simon\nMove B2 Soon Simon\nCatastrophe Simon B\n\n47) Simon: Sacrifice G2 R3\nBuild B1 Out\nBuild B2 Out\n\n48) kanzenryu: Discover R2 Kanzenryu Y2 Run\n\n49) Simon: Sacrifice Y3 G3\nMove B1 Out Kanzenryu\nMove B2 Out Kanzenryu\nMove B3 Out Kanzenryu\nCatastrophe Kanzenryu B\n\n50) kanzenryu: Build Y3 Out\n\n51) Simon: Sacrifice Y3 Simon\nMove Y1 G1 Kanzenryu\nMove Y2 G2 Kanzenryu\nMove Y2 G2 Kanzenryu\nCatastrophe Kanzenryu Y\n\tSimon: This game was considerably harder than any of our earlier games -- I believe made a few weak moves myself along the way, and don&#39;t have much left over by now. Never get discouraged, I feel you&#39;re getting the hang of it :)\n\tkanzenryu: I&#39;m still enjoying it; thanks for the game.\n\n\nHomeworlds Online (SDG# 28634)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.4, Ended: 2015.12.7\nParticipants: SilentTitan (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n\nHomeworlds Online (SDG# 28751)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.4, Ended: 2015.12.10\nParticipants: Tamiel (S), Felix (N)\nWinner: Tamiel\n\n1) Felix: H B3 R2 G3\n\n2) Tamiel: Homeworld Y3 B1 G3\n\tFelix: Hi, thanks for the challenge! Have you played this before? Let me know if you have any questions.\n\n3) Felix: B G1 Felix\n\tTamiel: Thank you. This is my first game.\n\tFelix: Alright, good luck! I&#39;m happy to help answer any questions you have about it\n\n4) Tamiel: Build G1 Tamiel\n\n5) Felix: T G1 Y1 Felix\n\n6) Tamiel: Build G1 Tamiel\n\n7) Felix: Build G1 Felix\n\n8) Tamiel: Discover G1 Tamiel B2 Gliesse1\n\n9) Felix: Discover G1 Felix B1 Gate\n\n10) Tamiel: Build G2 Gliesse1\n\n11) Felix: B G2 Gate\n\n12) Tamiel: Trade G2 Y2 Gliesse1\n\n13) Felix: Build G2 Felix\n\n14) Tamiel: Sacrifice G3 Tamiel\nBuild G2 Tamiel\nBuild G3 Tamiel\nBuild G3 Gliesse1\n\n15) Felix: Trade G2 Y2 Gate\n\n16) Tamiel: Trade G2 R2 Tamiel\n\n17) Felix: Trade G2 R2 Felix\n\n18) Tamiel: Move G1 Gliesse1 Gate\n\n19) Felix: Build G2 Felix\n\n20) Tamiel: Build G2 Gliesse1\n\n21) Felix: Discover G1 Gate B2 Door\n\n22) Tamiel: Move R2 Tamiel Door\n\n23) Felix: B G2 Door\n\n24) Tamiel: Attack G2N Door\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Door\nBuild Y1 Gate\nBuild Y1 Felix\n\n26) Tamiel: Attack G1N Door\n\n27) Felix: Sacrifice R2 Felix\nAttack R2 Door\nAttack G2 Door\n\n28) Tamiel: Sacrifice Y2 Gliesse1\nMove G1 Gate Door\nMove G3 Gliesse1 Gate\nCatastrophe Door G\n\n29) Felix: Trade Y1 B1 Gate\n\tFelix: Are you sure this is your first game? :)\n\n30) Tamiel: Trade G2 R2 Gliesse1\n\n31) Felix: B G1 Felix\n\tTamiel: beginner&#39;s luck :-)\n\n32) Tamiel: Trade G1 R1 Tamiel\n\n33) Felix: M G1 Felix Gate\n\n34) Tamiel: Sacrifice R2 Gliesse1\nAttack Y2N Gate\nAttack B1N Gate\n\n35) Felix: Sacrifice G2 Felix\nBuild G1 Gate\nBuild G1 Gate\nCatastrophe Gate Green\n\n36) Tamiel: Move Y2 Gate Felix\n\n37) Felix: Sacrifice Y1 Felix\nPass\n\n38) Tamiel: Sacrifice G3 Tamiel\nBuild Y1 Felix\nBuild Y1 Felix\nBuild Y2 Felix\nCatastrophe Felix Y\n\tFelix: Well done! I&#39;d be happy to rematch any time.\n\tTamiel: Good game. Looking forward to the next one.\n\n\nHomeworlds Online (SDG# 28818)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.7, Ended: 2015.12.10\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H R2 B1 G3\n\n2) endo: Homeworld B1 G3 B3 *\n\n3) wil: B G1 Wil\n\n4) endo: Build B1 Endo\n\twil: Cool...I&#39;ve played that game... Not so successfully..\n\n5) wil: T G1 Y1 Wil\n\tendo: I saw TwoShort crush Simon with this opening in a ladder match and got inspired... Oh, what kind of tourney did you have in mind? I&#39;ll gladly play in an online one, but might not make it to a physical one if it&#39;s in the US since I live in Europe.\n\n6) endo: Trade B3 Y3 Endo\n\twil: Investigating the online tourneys here..\n\twil: I may have played that backwards\n\twil: I may have played that backwards\n\n7) wil: B G1 Wil\n\n8) endo: Build B2 Endo\n\twil: Yeah.. I did\n\n9) wil: T G3 B3 Wil\n\n10) endo: Discover B1 Endo G2 Hod\n\twil: Yes...another short game\n\n11) wil: B B2 Wil\n\n12) endo: Sacrifice Y3 Endo\nDiscover B1 Hod R3 V_omega\nMove B1 V_omega Wil\nPass\nCatastrophe Wil B\n\n13) wil: B G1 Wil\n\twil: I wondered\n\twil: I wondered\n\n14) endo: Build B1 Endo\n\n15) wil: D G1 Wil B3 B3\n\n16) endo: Trade B1 R1 Endo\n\n17) wil: B G1 B3\n\twil: I dont think I stand a chance here..\n\n18) endo: Build B1 Endo\n\n19) wil: B G2 B3\n\tendo: Yeah, might be over soonish, given that I can simply build enough red at my homeworld and invade...\n\n20) endo: Trade B2 Y2 Endo\n\twil: Zackly\n\n21) wil: B G2 Wil\n\n22) endo: Build R1 Endo\n\n23) wil: T G2 Y2 B3\n\tendo: Yup, I believe the second catastrophe is unstoppable now...\n\n24) endo: Build R1 Endo\n\twil: You are correct\n\n25) wil: M Y1 Wil Endo\n\n26) endo: Attack Y1 Endo\n\n\twil: The sooner I can rechallenge and be abused agin!\n\nHomeworlds Online (SDG# 28846)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.9, Ended: 2016.1.7\nParticipants: Felix (S), sompm (N)\nWinner: Felix\n\n1) sompm: Homeworld Y3 B1 G3\n\n2) Felix: H B3 Y2 G3\n\tFelix: Thanks for the game. Good luck!\n\n3) sompm: Build G1 Sompm\n\tsompm: To you too! I&#39;m still climbing through all of the inactives as well.\n\n4) Felix: B G1 Felix\n\tFelix: Yeah... It&#39;s hard to get anyone to accept around here!\n\n5) sompm: Discover G1 Sompm B2 Hoth\n\n6) Felix: Discover G1 Felix B1 Wampa\n\n7) sompm: Build G1 Hoth\n\n8) Felix: B G2 Wampa\n\n9) sompm: Build G2 Hoth\n\n10) Felix: T G1 Y1 Wampa\n\n11) sompm: Trade G2 Y2 Hoth\n\n12) Felix: Build G1 Felix\n\n13) sompm: Build G2 Sompm\n\n14) Felix: Sacrifice G3 Felix\nBuild G2 Wampa\nBuild G3 Felix\nBuild Y1 Wampa\n\n15) sompm: Sacrifice G3 Sompm\nBuild G3 Sompm\nBuild G3 Sompm\nBuild Y1 Hoth\n\n16) Felix: Discover Y1 Wampa B2 Gate\n\n\nHomeworlds Online (SDG# 28753)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.10, Ended: 2015.12.13\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) wil: H B3 Y2 G3\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: T G1 Y1 Wil\n\n7) Felix: Trade B1 Y1 Felix\n\twil: Next trick...start with a pawn stack less than three... I just took over the early advantage..\n\n8) wil: B Y2 Wil\n\tFelix: Good tip. I see that now. I seem to have wasted a turn, but thanks for helping me learn!\n\twil: No worries... See how I did it after... Allowing you to experience the full effect if your error...I am so thoughtful!  And modest\n\n9) Felix: Build Y2 Felix\n\n10) wil: D Y1 Wil G1 G1\n\tFelix: And cruel :)\n\n11) Felix: Discover Y1 Felix G2 Pickle\n\twil: There is no way I wouldn&#39;t allow you the full repercussions of your ways.\n\n12) wil: B Y3 G1\n\n13) Felix: Build Y3 Pickle\n\n14) wil: D Y1 G1 G2 G2\n\n15) Felix: Move Y3 Pickle G1\n\n16) wil: B Y3 G2\n\n17) Felix: T Y2 R2 Felix\n\n18) wil: B Y2 G1\n\n19) Felix: Move Y3 G1 Wil\n\n20) wil: M Y2 G1 Wil\nC Wil Y\n\tFelix: This is either stupid or brilliant, probably the first.\n\twil: Yeah..I was blinded\n\n21) Felix: Build Y2 Pickle\n\twil: Your red move was on target..our mutually agreed suicide...we&#39;ll see.\n\n22) wil: B G1 Wil\n\tFelix: Eh, it was fun anyway :)\n\n23) Felix: Sacrifice Y2 Pickle\nMove G3 Felix Pickle\nMove G3 Pickle Wil\n\n24) wil: M Y3 G1 Wil\n\n25) Felix: T G3 R3 Wil\n\twil: Yes it is fun...no two matches ever alike.\n\n26) wil: M Y3 G2 Felix\n\tFelix: I love that about this game. Also... I&#39;m just a loose cannon right now.\n\twil: It is working\n\twil: I think you&#39;ve won this\n\n27) Felix: Attack G3 Wil\n\n28) wil: T Y3 R3 Felix\n\tFelix: Perhaps... But I don&#39;t know if I have the skills to finish the job!\n\twil: I think you just did\n\n29) Felix: S R3 Wil\nA Y3 Wil\nA G1 Wil\nPass\n\tFelix: Good game! I doubt I&#39;ll be so lucky next time :)\n\twil: Well played\n\n\nHomeworlds Online (SDG# 28811)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.10, Ended: 2015.12.18\nParticipants: Tamiel (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) Tamiel: Homeworld Y1 B2 G3\n\n3) Felix: Build G1 Felix\n\n4) Tamiel: Build G1 Tamiel\n\tFelix: Good luck! I enjoy playing against you because the other players on here utterly destroy me, but I think you are a bit closer to my skill level, if still a  bit better :)\n\n5) Felix: T G1 Y1 Felix\n\n6) Tamiel: Build G1 Tamiel\n\n7) Felix: Build Y1 Felix\n\tTamiel: I think I was probably lucky the last game. You started with a red star in your homesystem and from what I&#39;ve read that&#39;s harder to play, at least for beginners.\n\tFelix: Yeah, that&#39;s what I have heard, too. I like trying different strategies to experience for myself what works and what doesn&#39;t, and why. I&#39;ve also heard that starting with a small and medium home star (the banker) is usually a bit stronger :)\n\n8) Tamiel: Trade G3 Y3 Tamiel\n\tFelix: I am definitely still learning how to develop strategies in this. Hopefully you will learn some things too!\n\n9) Felix: Discover Y1 Felix G1 Pickle\n\n10) Tamiel: Discover G1 Tamiel B3 Gliesse1\n\n11) Felix: B Y2 Pickle\n\n12) Tamiel: Build G2 Gliesse1\n\n13) Felix: B G2 Felix\n\n14) Tamiel: Trade G2 Y2 Gliesse1\n\n15) Felix: Move Y2 Pickle Gliesse1\n\n16) Tamiel: Build Y3 Gliesse1\n\n17) Felix: Build Y3 Pickle\n\n18) Tamiel: Sacrifice Y3 Tamiel\nMove Y2 Gliesse1 Pickle\nMove Y3 Gliesse1 Pickle\nPass\nCatastrophe Pickle Y\n\n19) Felix: Move Y2 Gliesse1 Tamiel\n\tFelix: Woah. Bold move! But I think it leaves you pretty vulnerable because now you don&#39;t have a large ship, and I can come into your home system and take it over in a few moves, I think. Do you want to take it back?\n\tTamiel: No, I don&#39;t take back the move. Thank you. I was in a bad position and I think this move might give me some (not much) fighting chance.  \n\n\tTamiel: And that&#39;s that. :-) You win. Good game. I&#39;ll start a new challenge sometime at the beginning of Jan; until then I&#39;m not sure about the internet connection since I&#39;ll be traveling around. You are more than welcome to join that the challenge.\n\tFelix: Good game! I had fun. I am definitely happy to play again any time. I will look for you challenge in January!\n\nHomeworlds Online (SDG# 28799)\nStarted: 2015.12.10, Ended: 2015.12.21\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld G3 Y2 B3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: B B1 Felix\n\tFelix: Have fun!\n\n5) ts52: Trade G1 B1 Ts52\n\tts52: Thanks! You too.\n\n6) Felix: B B2 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Discover B2 Felix G1 Pickle\n\n9) ts52: Discover B2 Ts52 G2 Robin\n\n10) Felix: Build B2 Pickle\n\n11) ts52: Build B3 Robin\n\n12) Felix: Build B3 Pickle\n\n13) ts52: Trade B3 Y3 Robin\n\tFelix: I&#39;m feeling blue.\n\n14) Felix: Trade B2 Y2 Pickle\n\n15) ts52: Build G1 Ts52\n\n16) Felix: T B3 R3 Felix\n\n17) ts52: Trade B1 R1 Ts52\n\n18) Felix: Trade B3 G3 Pickle\n\n19) ts52: Discover G1 Ts52 B2 Gonzo\n\n20) Felix: Build R1 Felix\n\n21) ts52: Build Y1 Robin\n\n22) Felix: Build Y1 Pickle\n\n23) ts52: Build G1 Ts52\n\n24) Felix: Build B1 Felix\n\n25) ts52: Build B3 Robin\n\n26) Felix: Build B3 Pickle\n\n27) ts52: Discover B3 Robin Y1 Bigbird\n\n28) Felix: Move B1 Felix Bigbird\n\tFelix: Do you like the muppets? :)\n\n29) ts52: Trade B3 R3 Bigbird\n\tts52: I do. Honestly I&#39;m not sure how it started, but at one point I started naming my systems after sesame street characters and muppets, and I&#39;ve just kept it up.\n\n30) Felix: Build B3 Felix\n\n31) ts52: Build B3 Robin\n\tFelix: Nice! I often struggle with a good naming system for my own stars :)\n\tFelix: They end up with very random names...\n\n32) Felix: S Y2 Pickle\nM B1 Bigbird Robin\nM B2 Pickle Robin\nCatastrophe Robin Blue\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n34) Felix: Discover G3 Pickle B2 Ice\n\n35) ts52: Trade G2 Y2 Gonzo\n\n36) Felix: Build G2 Ice\n\n37) ts52: Discover Y3 Robin R1 Elmo\n\n38) Felix: Trade B3 Y3 Felix\n\n39) ts52: Trade G3 R3 Ts52\n\n40) Felix: S G3 Ice\nB B1 Felix\nB Y2 Pickle\nB G3 Ice\n\n41) ts52: Build G3 Gonzo\n\n42) Felix: Sacrifice G3 Ice\nBuild G3 Ice\nBuild B2 Felix\nBuild B3 Pickle\n\n43) ts52: Trade G3 B3 Gonzo\n\n44) Felix: M B3 Pickle Robin\n\n45) ts52: Build G3 Gonzo\n\n46) Felix: S R1 Felix\nA Y1 Robin\n\n47) ts52: Move B3 Gonzo Bigbird\n\n48) Felix: M Y1 Pickle Robin\n\n49) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R1 Bigbird\nBuild R2 Bigbird\n\n50) Felix: Move Y1 Robin Ts52\n\n51) ts52: Attack Y1 Ts52\n\n52) Felix: S Y3 Felix\nM Y2 Pickle Robin\nM Y2 Robin Ts52\nM Y1 Robin Ts52\nCatastrophe Ts52 Yellow\n\n53) ts52: Sacrifice Y3 Elmo\nMove R1 Bigbird Felix\nMove R2 Bigbird Felix\nMove R3 Bigbird Felix\nCatastrophe Felix Red\n\n54) Felix: T B1 R1 Felix\n\n55) ts52: Sacrifice Y2 Gonzo\nMove G3 Gonzo Bigbird\nMove G3 Bigbird Felix\n\tFelix: I think I miscalculated my attack...\n\n56) Felix: Sacrifice G3 Ice\nBuild G3 Ice\nBuild R1 Felix\nBuild R2 Felix\n\n57) ts52: Sacrifice R3 Ts52\nAttack R1 Felix\nAttack R1 Felix\nAttack R2 Felix\n\tFelix: Yep... definitely miscalculated.\n\n58) Felix: T B2 R2 Felix\nCatastrophe Felix Red\n\tts52: It&#39;s never over &#39;till it&#39;s over.\n\n59) ts52: Sacrifice R1 Ts52\nAttack B1 Felix\n\tFelix: I think it&#39;s over. Well played! I thought I had you for a moment\n\tts52: And now it&#39;s over. ;) Thanks for the game!\n\tts52: I was starting to get a bit anxious. It was definitely close for a moment there.\n\n\nHomeworlds Online (SDG# 28794)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.10, Ended: 2015.12.19\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Felix: Build G1 Felix\n\tFelix: Thanks for playing. Good luck!\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Felix: Trade G1 R1 Felix\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) Felix: B R2 Felix\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Felix: Build R2 Felix\n\n\nHomeworlds Online (SDG# 28689)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.11, Ended: 2016.1.13\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y1 G3\n\twil: Gl\n\n2) Simon: Homeworld R1 B2 G3\n\tSimon: Have fun!\n\n3) wil: B G1 Wil\n\twil: If you insist...\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: B G1 Wil\n\n8) Simon: Build G1 Simon\n\n9) wil: T G1 R1 Wil\n\n10) Simon: Trade G1 Y1 Simon\n\n11) wil: B R1 Wil\n\n12) Simon: Build Y1 Simon\n\n13) wil: B R2 Wil\n\n14) Simon: Discover Y1 Simon G3 G3\n\n15) wil: D R2 Wil Y2 Y2\n\n16) Simon: Build Y2 Simon\n\n17) wil: M R2 Y2 G3\n\twil: Lol what was I thinking\n\twil: Lol what was I thinking\n\twil: Now I remember\n\n18) Simon: Discover Y1 G3 B2 B2\n\n19) wil: B R2 Wil\n\n20) Simon: Trade Y2 R2 Simon\n\n21) wil: T R2 Y2 Wil\n\n22) Simon: Discover R2 Simon B3 B3\n\n23) wil: D R1 Wil B2 Betwo\n\n24) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y2 B2\nBuild Y3 Simon\n\n25) wil: M Y2 Wil B2\nC B2 Y\n\n26) Simon: Trade Y3 G3 Simon\n\n27) wil: S G3 Wil\nB R2 Wil\nB R3 Wil\nB R3 Betwo\n\n28) Simon: Sacrifice G3 Simon\nBuild R3 B3\nBuild Y1 Simon\nBuild Y2 Simon\n\n29) wil: T R2 Y2 Wil\n\twil: The tables can turn fast and furious\n\n30) Simon: Sacrifice Y2 Simon\nMove R3 B3 Simon\nDiscover Y1 Simon G3 G3a\n\n31) wil: T R3 G3 Betwo\n\n32) Simon: Build Y2 G3a\n\n33) wil: M Y2 Wil Betwo\n\n34) Simon: Discover Y2 G3a G2 G2\n\n35) wil: S G3 Betwo\nB B1 Wil\nB R2 G3\nB R3 Betwo\n\n36) Simon: Trade R3 G3 Simon\n\n37) wil: T R3 Y3 Betwo\n\n38) Simon: Sacrifice G3 Simon\nBuild Y2 G2\nBuild Y3 Simon\nBuild R3 B3\n\n39) wil: T Y2 G2 Betwo\n\n40) Simon: Trade R3 G3 B3\n\n41) wil: B R3 Betwo\n\n42) Simon: Build R3 B3\n\n43) wil: T R3 Y3 Betwo\n\n44) Simon: Move B1 Simon G3a\n\n45) wil: T B1 G1 Wil\n\n46) Simon: Build Y2 G3a\n\n47) wil: B R3 Betwo\n\n48) Simon: Move Y1 Simon B3\n\n49) wil: T R3 B3 Betwo\n\n50) Simon: Move R3 B3 G2\n\n51) wil: B R3 Betwo\n\n52) Simon: Sacrifice Y2 G3a\nMove Y1 G3a Betwo\nMove Y1 B3 Betwo\nCatastrophe Betwo Y\n\n53) wil: T R1 Y1 Betwo\n\n54) Simon: Build R1 G2\n\n55) wil: B Y1 Betwo\n\n56) Simon: Move Y2 G2 B3\n\n57) wil: M Y1 Betwo G3\n\n58) Simon: Sacrifice G3 B3\nBuild Y2 Simon\nBuild Y3 B3\nBuild Y3 G2\n\n59) wil: T R3 G3 Wil\n\n60) Simon: Build B1 G3a\n\n61) wil: D B1 Wil G2 Geetwo\n\n62) Simon: Sacrifice Y2 G2\nMove B1 G3a Betwo\nMove B1 G3a Betwo\nCatastrophe Betwo B\n\n63) wil: D G1 Wil Y2 Y2\n\n64) Simon: Trade Y2 G2 B3\n\twil: It is so over\n\n65) wil: B R3 Wil\n\tSimon: I feel like your opening is much stronger than mine all the time, but then you somehow lose grip on all the goodies &gt;_&gt;\n\n66) Simon: Build R3 B3\n\twil: I shoot from the hip and don&#39;t take enough consideration on moves...\n\n67) wil: T R3 G3 Wil\n\n68) Simon: Move R3 B3 Geetwo\n\n69) wil: B R3 Wil\n\n70) Simon: Attack B1 Geetwo\n\n71) wil: T G3 B3 Wil\n\n72) Simon: Build B1 Geetwo\n\n73) wil: M B3 Wil Y2\n\n74) Simon: Build B1 Geetwo\n\n75) wil: M R1 Wil G2\n\n76) Simon: Build Y1 B3\n\n77) wil: B Y2 G3\n\n78) Simon: Move G2 B3 Simon\n\n79) wil: M R2 G3 G2\nC G2 R\n\n80) Simon: Discover Y2 Simon R3 R3\n\n81) wil: B B2 Y2\n\n82) Simon: Sacrifice Y3 G2\nMove B1 Geetwo Wil\nMove B1 Geetwo Wil\nMove B1 Geetwo Wil\nCatastrophe Wil B\n\n83) wil: T B3 Y3 Y2\n\n84) Simon: Sacrifice Y3 Simon\nMove Y3 B3 Wil\nMove Y1 B3 Wil\nMove Y2 R3 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 28868)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.12, Ended: 2015.12.15\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n\nHomeworlds Online (SDG# 28872)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.12, Ended: 2016.1.31\nParticipants: MagicJohn (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R1 G3\n\n2) MagicJohn: Homeworld G1 B2 B3 *\n\tMagicJohn: I&#39;m puzzled. I am trying to set up my homeworld move and the computer keeps telling me that there are no B3s left in the stash.... ??? Reason?\n\n3) ajo: Build G1 Ajo\n\n4) MagicJohn: Build B1 Magicjohn\n\tajo: Could you have been trying to do &quot;homeworld b3 b3 b3&quot;? That would do it. ;P  I&#39;m interested to see how you do with only two colors in your home system. I would think of that as a disadvantage... but we&#39;ll see. :)\n\tMagicJohn: I needed to leave a space between the &quot;homeworld&quot; directions and the &quot;*&quot; that the game requires to indicate that I knew I was only requesting two colors....\n\n5) ajo: Build G1 Ajo\n\n6) MagicJohn: Trade B1 Y1 Magicjohn\n\n7) ajo: Trade G3 Y3 Ajo\n\n8) MagicJohn: Build B1 Magicjohn\n\n9) ajo: Build G2 Ajo\n\n10) MagicJohn: Discover B1 Magicjohn G3 Outpost\n\n11) ajo: Discover G2 Ajo B2 Alpha\n\n12) MagicJohn: Build B1 Outpost\n\n13) ajo: Build G2 Alpha\n\n14) MagicJohn: Build B1 Magicjohn\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) MagicJohn: Trade B3 R3 Magicjohn\n\n17) ajo: Build G2 Alpha\n\n18) MagicJohn: Build B2 Outpost\n\n19) ajo: Trade G2 R2 Alpha\n\n20) MagicJohn: Build B3 Magicjohn\n\n21) ajo: Build G2 Alpha\n\n22) MagicJohn: Trade B2 R2 Outpost\n\n23) ajo: Trade G2 B2 Alpha\n\n24) MagicJohn: Trade B3 G3 Magicjohn\n\n25) ajo: Discover B2 Alpha G3 Beta\n\n26) MagicJohn: Sacrifice Y1 Magicjohn\nDiscover B1 Outpost Y2 Toolies\n\n27) ajo: Build B3 Beta\n\n28) MagicJohn: Build B3 Outpost\n\n29) ajo: Trade B3 Y3 Beta\n\n30) MagicJohn: Sacrifice G3 Magicjohn\nBuild B3 Toolies\nBuild R1 Magicjohn\nBuild R1 Outpost\n\n31) ajo: Build R2 Alpha\n\n32) MagicJohn: Trade R1 Y1 Magicjohn\n\n33) ajo: Move R2 Alpha Beta\n\n34) MagicJohn: Build Y1 Magicjohn\n\n35) ajo: Build R1 Beta\n\n36) MagicJohn: Discover B1 Toolies Y1 Outback\n\n37) ajo: Build Y2 Beta\n\n38) MagicJohn: Trade R2 G2 Outpost\n\n39) ajo: Build Y3 Alpha\n\n\tMagicJohn: Sorry - wife is ill and my time priorities are there just now...\n\nHomeworlds Online (SDG# 28859)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.14, Ended: 2015.12.17\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Felix: Homeworld G3 B2 Y3\n\twil: I&#39;ll try for 17 moves this time!\n\tFelix: Including my moves? :) What&#39;s the fastest you&#39;ve ever won?\n\n3) wil: B G1 Wil\n\twil: One move is both sides moving... I&#39;ve no clue...average games are 20-25...\n\twil: I think I&#39;ve been beat in ten\n\n4) Felix: Build Y1 Felix\n\twil: You just kicked my butt in 15... I&#39;m gonna last at least 17 with this go around\n\n5) wil: T G1 Y1 Wil\n\tFelix: I wouldn&#39;t say I kicked your butt. It was really close! Looking over the last game, I see where I think you could have turned the tables back on me on turn 12\n\tFelix: If you had traded your g3 for an r3 in your home system, I don&#39;t know if I could have overcome you, since I couldn&#39;t sacrifice my r2 at home. I may eventually have, but it would have been very tough.\n\tFelix: Good luck on 17 :) I&#39;m just hoping I don&#39;t get beat in 10!\n\n6) Felix: Discover Y1 Felix G1 Olive\n\n7) wil: B Y2 Wil\n\n8) Felix: Build Y2 Olive\n\n9) wil: T Y1 R1 Wil\n\n10) Felix: Build Y1 Felix\n\n11) wil: D Y2 Wil G2 G2\n\n12) Felix: Trade Y1 R1 Felix\n\n13) wil: B G1 Wil\n\n14) Felix: Discover Y2 Olive B2 Grape\n\n15) wil: B G1 Wil\n\n16) Felix: Trade Y2 G2 Grape\n\n17) wil: D G1 Wil B2 B2\n\n18) Felix: M Y1 Olive Grape\n\n19) wil: T G1 B1 Wil\n\n20) Felix: Build G1 Grape\n\n21) wil: B B1 Wil\n\n22) Felix: Discover G1 Grape Y3 Banana\n\n23) wil: B G1 Wil\n\n24) Felix: Build G2 Grape\n\n25) wil: B G3 B2\n\n26) Felix: Build Y1 Grape\n\n27) wil: M B1 Wil G2\n\n28) Felix: Sacrifice G2 Grape\nBuild Y2 Grape\nBuild Y2 Felix\n\n29) wil: B Y3 G2\n\n30) Felix: Trade Y1 B1 Grape\n\n31) wil: M B1 Wil Grape\n\n32) Felix: Move B1 Grape Wil\n\n33) wil: A B1 Wil\n\n34) Felix: Build G2 Grape\n\twil: We thank you for the peace offering of the trade.ship... She is a little.small but quite nice.\n\n35) wil: S G3 Wil\nB G3 Wil\nB B3 Wil\nB B3 Grape\n\n36) Felix: Sacrifice Y2 Grape\nMove G2 Grape Wil\nMove G2 Grape Wil\nCatastrophe Wil Green\n\tFelix: ...uh oh.\n\tFelix: I think I&#39;m learning that having green in your home system is a liability...\n\n37) wil: T B3 G3 Wil\n\twil: Yez, harder to create a factory\n\n38) Felix: Trade Y3 B3 Felix\n\twil: And I now have a queen factory so will be casually swooping up all the big guys\n\n39) wil: T B3 Y3 Grape\n\twil: Now that want nice\n\n40) Felix: Build G1 Banana\n\twil: Wasn&#39;t\n\n41) wil: B B3 G2\n\tFelix: I&#39;m a fish out of water, flailing and gasping.\n\n42) Felix: Sacrifice R1 Felix\nAttack B1 Grape\n\n43) wil: S Y2 G2\nD G3 B2 R1 R1\nM G3 R1 Felix\n\n44) Felix: Sacrifice Y2 Felix\nPass\nPass\n\twil: Uh oh... Not a game for unarmed pacifists..\n\n45) wil: S R1 Wil\nA B3 Felix\n\twil: 23 moves...about average... I have gone over 40...but those were games I lost and just kept running and playing mosquito hoping for a mistake\n\n\nHomeworlds Online (SDG# 28878)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.14, Ended: 2015.12.30\nParticipants: kanzenryu (S), Felix (N)\nWinner: kanzenryu\n\n1) Felix: H B3 R2 G3\n\n2) kanzenryu: Homeworld B1 Y2 G3\n\n3) Felix: B G1 Felix\n\tkanzenryu: More fun ahoy!\n\n4) kanzenryu: Build G1 Kanzenryu\n\tFelix: Indeed! Here we go! Good luck to you, fleet commander!\n\n5) Felix: T G1 Y1 Felix\n\tkanzenryu: Fleet? What fleet? And certainly not near the Neutral Zone.\n\tFelix: Oh! Er.... I mean, of course I would never think of breaking the treaty! What are you even talking about? We are a peaceful people. Don&#39;t let this bright red war star fool you...\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Felix: B G1 Felix\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) Felix: Discover G1 Felix B1 Ice\n\n10) kanzenryu: Discover Y1 Kanzenryu G3 Moon\n\n11) Felix: Build G1 Felix\n\n12) kanzenryu: Trade G1 B1 Kanzenryu\n\n13) Felix: B G1 Ice\n\n14) kanzenryu: Build G2 Kanzenryu\n\n15) Felix: Build G2 Ice\n\n16) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Kanzenryu\nBuild G3 Kanzenryu\nBuild B2 Kanzenryu\n\n17) Felix: T G1 R1 Ice\n\n18) kanzenryu: Trade B2 R2 Kanzenryu\n\n19) Felix: Trade G1 Y1 Ice\n\n20) kanzenryu: Discover G2 Kanzenryu Y3 Party\n\n21) Felix: Build Y2 Ice\n\n22) kanzenryu: Move B1 Kanzenryu Party\n\n23) Felix: T Y2 B2 Ice\n\n24) kanzenryu: Build Y2 Moon\n\n25) Felix: B Y2 Felix\n\n26) kanzenryu: Build B2 Party\n\n27) Felix: Build Y3 Ice\n\n28) kanzenryu: Discover Y1 Moon G1 Soon\n\n29) Felix: Move Y1 Felix Soon\n\n30) kanzenryu: Build Y3 Moon\n\n31) Felix: B R1 Ice\n\n32) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G1 Party\nBuild R1 Kanzenryu\nBuild G3 Kanzenryu\n\n33) Felix: Move Y3 Ice Party\n\n34) kanzenryu: Sacrifice Y2 Moon\nMove B1 Party Ice\nMove B2 Party Ice\nCatastrophe Ice B\n\n35) Felix: Trade G1 R1 Felix\n\tkanzenryu: Party Ice\n\n36) kanzenryu: Discover G2 Party Y1 Brink\n\n37) Felix: Build Y2 Felix\n\n38) kanzenryu: Discover G1 Party B1 Peep\n\n39) Felix: Sacrifice R1 Felix\nAttack Y1 Soon\n\n40) kanzenryu: Move R1 Kanzenryu Moon\n\n41) Felix: T Y2 R2 Felix\n\n42) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G1 Brink\nBuild G2 Peep\nBuild G3 Kanzenryu\n\n43) Felix: B Y2 Felix\n\n44) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R1 Moon\nBuild R1 Kanzenryu\n\n45) Felix: M Y3 Party Peep\n\n46) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R3 Kanzenryu\nBuild Y3 Moon\n\n47) Felix: S Y2 Felix\nM Y1 Soon Moon\nM Y1 Soon Moon\nCatastrophe Moon Yellow\n\n48) kanzenryu: Discover R3 Kanzenryu Y3 More\n\tkanzenryu: Very easy to make a typo in this game...\n\n49) Felix: M R2 Felix Peep\n\tFelix: Indeed, indeed... Your factory is really giving you an edge in this one!\n\n50) kanzenryu: Sacrifice R1 Moon\nAttack R2 Peep\n\n51) Felix: Trade G3 R3 Felix\n\n52) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G1 Peep\nBuild G3 Brink\nBuild G3 Kanzenryu\n\n53) Felix: S R3 Felix\nA R2 Peep\nA G2 Peep\nA G1 Peep\n\n54) kanzenryu: Move G3 Brink Felix\n\n55) Felix: B Y1 Peep\n\n56) kanzenryu: Sacrifice R1 Kanzenryu\nAttack Y2 Felix\n\n\tFelix: Got me again. Good game!\n\tkanzenryu: If you don&#39;t mind I&#39;d like to do a ladder challenge after this since every other person above me on the ladder declined.\n\tFelix: I&#39;m game! I think I&#39;m in a ladder challenge with someone else right now so challenge me when that&#39;s over. I will let you know.\n\nHomeworlds Online (SDG# 28728)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.15, Ended: 2015.12.17\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld G2 R1 B3\n\tFelix: Intermediate player here. I&#39;ve reviewed some of your games and I&#39;m impressed with your techniques! Hoping I can learn a thing or two by playing against you, and I hope I provide enough of a challenge for you to at least be entertained :) Have fun!\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Felix: Build B1 Felix\n\n4) endo: Build G1 Endo\n\tendo: Hey, thanks :) I enjoy playing against all levels of Homeworlds players. If any questions come into your mind, don&#39;t be afraid to ask! Good luck, have fun!\n\n5) Felix: Trade B1 Y1 Felix\n\n6) endo: Trade G1 Y1 Endo\n\n7) Felix: Build Y2 Felix\n\n8) endo: Build Y2 Endo\n\n9) Felix: Build Y2 Felix\n\n10) endo: Discover Y1 Endo G2 Amc\n\n11) Felix: T Y1 G1 Felix\n\n12) endo: Sacrifice G3 Endo\nBuild Y1 Amc\nBuild Y3 Endo\nBuild Y3 Amc\n\n13) Felix: S Y2 Felix\nD Y2 Felix Y3 A1\nM Y2 A1 Amc\nCatastrophe Amc Yellow\n\n14) endo: Trade Y3 G3 Endo\n\n15) Felix: Build B1 Felix\n\n16) endo: Build G1 Endo\n\n17) Felix: Trade B1 Y1 Felix\n\n18) endo: Discover G1 Endo B2 Zorn\n\n19) Felix: Discover G1 Felix B3 Kress\n\n20) endo: Build G1 Endo\n\n21) Felix: Build B1 Felix\n\n22) endo: Build G2 Endo\n\n23) Felix: Trade B3 G3 Felix\n\n24) endo: Discover G2 Endo B2 Antichain\n\n25) Felix: Build G2 Kress\n\n26) endo: Build G3 Zorn\n\n27) Felix: Build Y1 Felix\n\n28) endo: Build Y2 Endo\n\n29) Felix: Sacrifice Y1 Felix\nDiscover G1 Kress Y2 Bannermene\n\n30) endo: Sacrifice Y2 Endo\nMove G3 Zorn Kress\nMove G3 Kress Felix\n\n31) Felix: Attack G3 Felix\n\n32) endo: Sacrifice Y2 Endo\nMove G1 Zorn Kress\nMove G1 Kress Felix\nCatastrophe Felix G\n\n33) Felix: Move G1 Bannermene Felix\n\n34) endo: Build G1 Antichain\n\tFelix: Yow! Nice going. I should have seen that coming.\n\n35) Felix: Build G2 Felix\n\n36) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Endo\nBuild G3 Antichain\n\tendo: The green situation was quite nasty in any case... Had you traded your G3, I would simply have built it and the larges would go 3-1 for me. You couldn&#39;t have moved it away either, because then I could invade with my extra large as usual.\r\n\r\nSituations like this are the reason I almost always play with a green ship. The problem with having your ship in some other color is not that you don&#39;t have a G3 (which you can obtain via trade), but that you DO have a green star, which will become a huge liability once you get the G3. Green is the color of the large you need in the early game. Once you get more larges, you can house the Y3&#39;s and R3&#39;s you&#39;ll then need at stars other than your homeworld, where your yellow or red half-star won&#39;t be a problem.\r\n\r\nI see a green ship is what you&#39;ve been playing in all your previous games, I just thought I&#39;d elaborate a bit on why it&#39;s important to do that :)\n\n37) Felix: Discover G1 Felix Y2 Obelisk\n\tFelix: Wow, thanks for the in-depth tip! That&#39;s really helpful, and I definitely get what you&#39;re talking about. I have noticed that players start with a green ship 90% of the time. When I play games like this, however, I often want to try to use less-used strategies and ideas. I think it&#39;s fun to &quot;go against the grain&quot; and do things differently. However, sometimes there&#39;s a very good reason nobody does things a certain way! And I can tell that having green in my home system is a big liability, so I&#39;ll avoid it in the future. Thanks very much for the tip. I have learned!\n\n38) endo: Trade G1 Y1 Endo\n\n39) Felix: Build Y2 Felix\n\n40) endo: Trade G3 R3 Antichain\n\n41) Felix: Move G2 Felix Obelisk\n\n42) endo: Trade G3 R3 Endo\n\n43) Felix: Build G1 Kress\n\n44) endo: Sacrifice Y1 Endo\nMove R3 Antichain Felix\n\n\tFelix: Good game! I learned some things :)\n\tendo: Thanks for the game, and good luck in your upcoming matches :)\n\nHomeworlds Online (SDG# 28892)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.15, Ended: 2015.12.19\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H Y2 B1 G3\n\twil: Stuck with the sparring partner again!\n\n2) endo: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\tendo: Hehe, have fun!\n\n4) endo: Build G1 Endo\n\n5) wil: T G1 Y1 Wil\n\n6) endo: Trade G1 Y1 Endo\n\n7) wil: B Y2 Wil\n\n8) endo: Build Y2 Endo\n\n9) wil: D Y1 Wil G3 G3\n\n10) endo: Discover Y1 Endo G2 Projection\n\n11) wil: B Y3 G3\n\n12) endo: Build Y3 Projection\n\n13) wil: D Y2 Wil Y3 Y3\n\n14) endo: Discover Y1 Projection B3 Injection\n\n15) wil: B G1 Wil\n\n16) endo: Build G1 Endo\n\n17) wil: T G1 R1 Wil\n\n18) endo: Trade G1 R1 Endo\n\n19) wil: B G1 Wil\n\n20) endo: Build G1 Endo\n\n21) wil: T G1 B1 Wil\n\n22) endo: Trade G1 B1 Endo\n\n23) wil: M B1 Wil G3\n\n24) endo: Move B1 Endo Projection\n\n25) wil: B B2 G3\n\n26) endo: Build B2 Projection\n\n27) wil: T B2 R2 G3\n\n28) endo: Trade B2 R2 Projection\n\n29) wil: B B2 G3\n\n30) endo: Build B2 Projection\n\n31) wil: T B2 R2 G3\n\n32) endo: Trade Y1 R1 Injection\n\n33) wil: D R2 G3 B2 B2\n\n34) endo: Sacrifice G3 Endo\nBuild R3 Endo\nBuild R3 Projection\nBuild R3 Injection\n\n35) wil: B G1 Wil\n\n36) endo: Trade R1 G1 Injection\n\n37) wil: M Y1 G3 B2\n\n38) endo: Trade Y2 G2 Endo\n\n39) wil: B B2 G3\n\n40) endo: Trade R3 G3 Projection\n\n41) wil: T B2 G2 G3\n\n42) endo: Discover G3 Projection B3 Terminal\n\n43) wil: S G2 G3\nB R1 B2\nB R3 G3\n\n44) endo: Build G1 Terminal\n\n45) wil: B B2 G3\n\n46) endo: Sacrifice Y3 Projection\nMove R3 Injection Wil\nMove G1 Injection Wil\nMove G1 Terminal Wil\nCatastrophe Wil G\n\n47) wil: S Y3 G3\nM R2 G3 Wil\nM R3 G3 Wil\nM B2 G3 Wil\nC Wil R\n\twil: Nice... Lol\n\twil: I was supposed to take out your reds last move!   \n\n48) endo: Trade R1 Y1 Endo\n\twil: Ya got me again... \n\n\tendo: I do have a R2 outside my homeworld though... What you could have done was to deal with the catastrophe threat by trading or bringing in another large, which is why I probably should just have caused the catastrophe on my previous move with my G3, rather than using a move to get the G1. That would have created a situation where I have the only large.\n\twil: Hmmm thx...happy new year...and time for another try!\n\nHomeworlds Online (SDG# 28877)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.18, Ended: 2016.1.16\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) Felix: H Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: T G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: T B1 Y1 Wil\n\n10) Felix: Trade B2 Y2 Felix\n\n11) wil: B G1 Wil\n\n12) Felix: Build G1 Felix\n\n13) wil: T G1 R1 Wil\n\n14) Felix: T G1 R1 Felix\n\n15) wil: B G1 Wil\n\n16) Felix: Build G1 Felix\n\n17) wil: D Y1 Wil G2 G2\n\n18) Felix: Discover Y2 Felix G3 Grass\n\n19) wil: D G1 Wil B2 B2\n\n20) Felix: Move Y2 Grass G2\n\n21) wil: D Y1 G2 G3 G3\n\n22) Felix: Discover G1 Felix B3 Ice\n\tFelix: I waved as I went by\n\n23) wil: B G1 Wil\n\n24) Felix: Build G2 Felix\n\n25) wil: B G2 B2\n\n26) Felix: B R1 Felix\n\n27) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 Wil\n\n28) Felix: S G3 Felix\nB G3 Felix\nB R2 Felix\nB Y1 G2\n\n29) wil: M R2 Wil B2\n\n30) Felix: D R1 Felix Y3 Sun\n\n31) wil: S G3 Wil\nB G3 Wil\nB R3 B2\nB Y2 G3\n\n32) Felix: M Y2 G2 Ice\n\n33) wil: T R3 Y3 B2\n\n34) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 G2\nBuild R3 Sun\n\n35) wil: S G3 Wil\nB G3 Wil\nB R3 B2\nB R3 Wil\n\n36) Felix: M B1 Felix Sun\n\n37) wil: M R3 Wil G2\n\n38) Felix: M Y2 G2 Wil\n\n39) wil: S R2 Wil\nA Y2 Wil\nA Y1 G2\n\n40) Felix: S G3 Felix\nB G3 Felix\nB B1 Sun\nPass\n\n41) wil: B R2 G2\n\n42) Felix: S Y2 Ice\nD B1 Sun Y2 Star\nM R3 Sun Star\n\n43) wil: M B2 Wil G2\n\n44) Felix: S G3 Felix\nB G3 Felix\nB B3 Sun\nB B3 Star\n\n45) wil: M R3 B2 Ice\n\n46) Felix: M R3 Star G3\n\n47) wil: S Y1 G3\nM Y2 G3 G2\n\n48) Felix: T R1 Y1 Sun\n\n49) wil: B R1 Wil\n\n50) Felix: M G2 Felix G3\n\n51) wil: M G2 B2 G3\n\n52) Felix: Sacrifice Y1 Sun\nMove G2 G3 Star\n\n53) wil: A G1 Ice\n\n54) Felix: Attack G2 G3\n\n55) wil: M G1 B2 G3\n\n56) Felix: Trade B1 Y1 Star\n\n57) wil: S Y2 G2\nM G1 Wil G2\nM G1 G2 G3\nC G3 G\n\n58) Felix: Trade B3 R3 Sun\n\n59) wil: B Y2 G2\n\n60) Felix: Build G1 Felix\n\n61) wil: T R3 G3 G2\n\n62) Felix: Sacrifice G1 Felix\nBuild R3 Sun\n\n63) wil: S Y2 G2\nM R2 G2 Sun\nM R2 B2 Sun\nC Sun R\n\n64) Felix: Move R2 Felix Sun\n\n65) wil: B Y2 G2\n\tFelix: I&#39;m getting wrecked :)\n\n66) Felix: B G1 Felix\n\twil: I&#39;m gonna try not to make a mistake and you are gonna try to find a chink in my armor...\n\n67) wil: T Y2 G2 G2\n\tFelix: That sums it up quite well!\n\n68) Felix: Sacrifice G3 Felix\nBuild G1 Star\nBuild G3 Felix\nBuild R2 Sun\n\n69) wil: S G2 G2\nB Y2 G2\nB R2 Ice\n\n70) Felix: Build R3 Felix\n\n71) wil: T G3 R3 G2\n\n72) Felix: D G3 Felix B3 Snow\n\n73) wil: T R3 G3 Ice\n\n74) Felix: B G2 Snow\n\n75) wil: B R3 Ice\n\n76) Felix: M Y1 Star Snow\n\twil: ....this is the end...\n\n77) wil: S Y3 B2\nM R3 Ice Felix\nM R2 Ice Felix\nM G3 Ice Felix\nC Felix R\n\n\tFelix: Well done!\n\twil: There werent any good ships left in the bank...might as well attack\n\twil: Googd game\n\nHomeworlds Online (SDG# 28862)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.21, Ended: 2015.12.24\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 28933)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.21, Ended: 2015.12.28\nParticipants: endo (S), dlwillson (N)\nWinner: endo\n\n1) dlwillson: Homeworld Y3 B1 G3 Dlwillson\n\n2) endo: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) endo: Build G1 Endo\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) endo: Trade G1 B1 Endo\n\n7) dlwillson: B Y1 Dlwillson\n\n8) endo: Build B1 Endo\n\n9) dlwillson: D Y1 Dlwillson G2 Forest\n\n10) endo: Discover B1 Endo Y3 Foundation\n\n11) dlwillson: Build Y2 Dlwillson\n\n12) endo: Sacrifice G3 Endo\nBuild B2 Endo\nBuild B2 Foundation\nBuild B3 Foundation\n\n13) dlwillson: Discover Y1 Dlwillson G2 Stream\n\n14) endo: Discover B1 Endo Y3 Comprehension\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) endo: Trade B3 G3 Foundation\n\n17) dlwillson: Build G1 Dlwillson\n\n18) endo: Sacrifice G3 Foundation\nBuild B3 Endo\nBuild B3 Foundation\nBuild B3 Comprehension\n\n19) dlwillson: B Y2 Forest\n\n20) endo: Trade B3 G3 Comprehension\n\n21) dlwillson: D Y2 Forest B3 Sky\n\n22) endo: Trade B3 R3 Endo\n\n23) dlwillson: T G3 B3 Dlwillson\n\n24) endo: Trade B1 G1 Foundation\n\n25) dlwillson: T Y2 R2 Dlwillson\n\n26) endo: Trade B2 Y2 Endo\n\n27) dlwillson: Discover G1 Dlwillson B2 Sea\n\n28) endo: Build G1 Comprehension\n\n29) dlwillson: Trade Y2 G2 Dlwillson\n\n30) endo: Sacrifice G3 Comprehension\nBuild G3 Foundation\nBuild G3 Foundation\nBuild G3 Comprehension\n\n31) dlwillson: S Y2 Sky\nM G1 Sea Foundation\nM Y1 Stream Comprehension\nC Foundation G\n\n32) endo: Sacrifice G3 Comprehension\nBuild B1 Comprehension\nBuild B2 Comprehension\nBuild B3 Foundation\n\n33) dlwillson: Sacrifice G2 Dlwillson\nBuild R1 Dlwillson\nBuild Y2 Comprehension\n\tdlwillson: Typo\n\n34) endo: Trade B2 Y2 Comprehension\nCatastrophe Comprehension Y\n\n35) dlwillson: Discover R2 Dlwillson B2 Sky\n\n36) endo: Discover B3 Foundation Y2 Collection\n\n37) dlwillson: Trade B3 G3 Dlwillson\n\tdlwillson: I need to improve my early game against you, so I am not playing out games where you have an insurmountable capital advantage...\n\n38) endo: Trade B3 G3 Foundation\n\tendo: I think you played much of our previous game accurately though... We were well into a somewhat complicated middlegame, when I finally gained any significant advantage with my economic trickery. Still, winning the game economically in the opening is my favorite strategy...\n\n39) dlwillson: Build Y1 Forest\n\n40) endo: Build B1 Foundation\n\n41) dlwillson: T R1 B1 Dlwillson\n\n42) endo: Sacrifice G3 Foundation\nBuild R1 Endo\nBuild B3 Foundation\nBuild B3 Collection\n\n43) dlwillson: M Y1 Forest Foundation\n\n44) endo: Move B3 Foundation Sky\n\n\tdlwillson: See you in a few weeks.\n\nHomeworlds Online (SDG# 28890)\nStarted: 2015.12.21, Ended: 2016.1.5\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Felix: B G1 Felix\n\tFelix: Again! I must avenge my father :)\n\n4) ts52: Build G1 Ts52\n\tts52: :D Have a good game!\n\n5) Felix: T G1 Y1 Felix\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Felix: Build Y2 Felix\n\n8) ts52: Build Y2 Ts52\n\n9) Felix: D Y2 Felix G2 Grass\n\n10) ts52: Discover Y2 Ts52 G1 Robin\n\n11) Felix: D Y1 Felix B2 Ice\n\n12) ts52: Build G1 Ts52\n\n13) Felix: B Y2 Grass\n\n14) ts52: Build Y3 Robin\n\n15) Felix: M Y2 Grass Robin\n\n16) ts52: Discover Y3 Robin B2 Grover\n\n17) Felix: B Y3 Grass\n\n18) ts52: Trade Y1 R1 Ts52\n\n19) Felix: M Y3 Grass Robin\n\n20) ts52: Build Y1 Robin\nCatastrophe Robin Yellow\n\n21) Felix: B G1 Felix\n\n22) ts52: Move Y3 Grover Felix\n\n23) Felix: S G3 Felix\nB G1 Felix\nB Y1 Grass\nB Y2 Ice\n\n24) ts52: Trade Y3 R3 Felix\n\n\tFelix: Nice! Good game.\n\tts52: Thanks for the game. Happy to play another any tim.\n\nHomeworlds Online (SDG# 28841)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.30, Ended: 2016.1.17\nParticipants: Felix (S), kanzenryu (N)\nWinner: kanzenryu\n\n1) kanzenryu: Homeworld B1 Y3 G3\n\n2) Felix: H G3 B1 B3 *\n\tkanzenryu: Actually you are one spot up the ladder further than I can issue challenges\n\tFelix: Bummer! I look forward to your challenge. Soon...\n\n3) kanzenryu: Build G1 Kanzenryu\n\tFelix: I&#39;m feeling crazy. Let&#39;s do this.\n\n4) Felix: B B1 Felix\n\tkanzenryu: I&#39;ve played on of these before, and it was short and sharp.\n\tFelix: I&#39;ve never done it. Should be fun!\n\n5) kanzenryu: Discover G1 Kanzenryu Y2 Mid\n\n6) Felix: T B1 Y1 Felix\n\n7) kanzenryu: Build G1 Mid\n\n8) Felix: B B1 Felix\n\n9) kanzenryu: Build G1 Kanzenryu\n\tFelix: I think I screwed that up...\n\n10) Felix: T B3 G3 Felix\n\n11) kanzenryu: Build G2 Mid\n\n12) Felix: T G3 R3 Felix\n\n13) kanzenryu: Trade G1 R1 Kanzenryu\n\n14) Felix: Move R3 Felix Mid\n\n15) kanzenryu: Move G2 Mid Felix\n\n16) Felix: B B2 Felix\n\n17) kanzenryu: Trade G2 B2 Felix\nCatastrophe Felix B\n\n18) Felix: Attack G1 Mid\n\tFelix: Yow. I somehow didn&#39;t see that coming. Thought you&#39;d sacrifice your red instead.\n\tFelix: Nice going!\n\n19) kanzenryu: Move G1 Mid Felix\n\n20) Felix: S R3 Mid\nA G1 Felix\nPass\nPass\n\tkanzenryu: And planning more...\n\n21) kanzenryu: Build R1 Kanzenryu\n\n22) Felix: Build Y1 Felix\n\n23) kanzenryu: Move G3 Kanzenryu Mid\n\n24) Felix: B G1 Felix\n\n25) kanzenryu: Move G3 Mid Felix\nCatastrophe Felix G\n\tFelix: Good one again! I can&#39;t seem to get the edge on you :) Happy to rematch any time. I think I may have moved just out of your reach on the ladder though...\n\tkanzenryu: Trying to get a different game going on the ladder, but it&#39;s not happening yet...\n\n\nHomeworlds Online (SDG# 28919)\nVariants: &quot;Unrated&quot;\nStarted: 2015.12.30, Ended: 2016.1.29\nParticipants: wil (S), kanzenryu (N)\nWinner: wil\n\n1) kanzenryu: Homeworld R1 B2 G3\n\n2) wil: H Y3 B1 G3\n\twil: Good luck, and thanx for the game...\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) wil: B G1 Wil\n\tkanzenryu: Thanks for the game, I still love this one.\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) wil: Trade G1 B1 Wil\n\n7) kanzenryu: Build Y1 Kanzenryu\n\n8) wil: B B1 Wil\n\n9) kanzenryu: Discover Y1 Kanzenryu G3 Out\n\n10) wil: D B1 Wil B2 B2\n\n11) kanzenryu: Build Y1 Out\n\n12) wil: B B2 Wil\n\n13) kanzenryu: Build Y2 Kanzenryu\n\n14) wil: D B1 Wil G2 G3\n\n15) kanzenryu: Build Y2 Out\n\n16) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB B3 B2\n\n17) kanzenryu: Build G1 Kanzenryu\n\n18) wil: T B3 Y3 G3\n\tkanzenryu: I&#39;m facing the Blue Man Group\n\n19) kanzenryu: Discover Y2 Out G2 Along\n\twil: Tis a bmg queen factory.... I am about to take all the biggins\n\n20) wil: T B3 Y3 B2\n\n21) kanzenryu: Discover Y2 Kanzenryu B3 Bigblue\n\n22) wil: B B3 G3\n\n23) kanzenryu: Build Y2 Along\n\n24) wil: T B3 R3 G3\n\n25) kanzenryu: Trade G1 R1 Kanzenryu\n\n26) wil: B B3 G3\n\n27) kanzenryu: Move Y2 Along Wil\n\n28) wil: M R3 G3 Wil\n\n29) kanzenryu: Sacrifice Y2 Bigblue\nMove Y1 Out Along\nMove Y1 Along Wil\n\n30) wil: A Y2 Wil\n\n31) kanzenryu: Move Y2 Along Wil\nCatastrophe Wil Y\n\twil: Welcome fuel supply ships from far lands, is this a peace offering, so sweet of you!\n\tkanzenryu: Whoops, it&#39;s getting crowded in here\n\n32) wil: T B3 G3 Wil\n\twil: Oh it was a trap...you rolled fully loaded tankers into my homeworld??\n\n33) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: Not so much a trap as I can&#39;t think of anything else to do\n\n34) wil: T B3 R3 G3\n\n35) kanzenryu: Build G1 Kanzenryu\n\twil: I gotta admit....the view from your end must be a little scary...\n\n36) wil: B G1 Wil\n\tkanzenryu: Like most of my games...\n\n37) kanzenryu: Discover G1 Kanzenryu Y3 Blob\n\n38) wil: M R3 G3 Blob\n\n39) kanzenryu: Build G2 Blob\n\twil: This is the end...two moves to mate\n\n40) wil: S Y3 G3\nM R3 Blob Kanzenryu\nM Y3 B2 Blob\nM Y3 Blob Kanzenryu\n\tkanzenryu: I can&#39;t see how you can do it in only two moves... Should be educational.\n\twil: You are correct it&#39;s more than two moves but its inevitable\n\n\tkanzenryu: Ah, I didn&#39;t think of you attacking with different colours. Thanks for the game!\n\twil: It is the old you take one I&#39;ll take three ploy...used when one has larger attack ships...\n\nHomeworlds Online (SDG# 28891)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.30, Ended: 2016.1.27\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld R1 B3 G3\n\n2) kanzenryu: Homeworld B1 Y2 G3\n\n3) endo: Build G1 Endo\n\tkanzenryu: Ready for more\n\n4) kanzenryu: Build G1 Kanzenryu\n\tendo: Good luck, have fun!\n\n5) endo: Trade G1 Y1 Endo\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) endo: Build G1 Endo\n\n8) kanzenryu: Discover Y1 Kanzenryu G3 Jeep\n\n9) endo: Trade G1 B1 Endo\n\n10) kanzenryu: Build G1 Kanzenryu\n\n11) endo: Build B1 Endo\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) endo: Discover B1 Endo Y2 Open\n\n14) kanzenryu: Discover G1 Kanzenryu B3 Bigblue\n\n15) endo: Build B2 Endo\n\n16) kanzenryu: Trade G1 R1 Kanzenryu\n\n17) endo: Trade B2 R2 Endo\n\n18) kanzenryu: Build G1 Kanzenryu\n\n19) endo: Build B2 Endo\n\n20) kanzenryu: Discover G1 Kanzenryu B3 Other\n\n21) endo: Discover B2 Endo G2 Dense\n\n22) kanzenryu: Build G1 Kanzenryu\n\n23) endo: Build G2 Endo\n\n24) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Other\nBuild G3 Kanzenryu\nBuild R1 Kanzenryu\n\n25) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Open\nBuild B2 Open\n\n26) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R2 Kanzenryu\nBuild Y1 Jeep\n\n27) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Endo\nBuild Y3 Endo\n\n28) kanzenryu: Discover R2 Kanzenryu Y3 Sun\n\n29) endo: Sacrifice Y2 Endo\nMove Y1 Endo Dense\nMove R2 Endo Open\n\n30) kanzenryu: Discover Y1 Jeep R2 Brink\n\n31) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Endo\nBuild Y3 Dense\n\n32) kanzenryu: Sacrifice G2 Other\nBuild G2 Other\nBuild R3 Sun\n\n33) endo: Sacrifice G2 Endo\nBuild G2 Endo\nBuild R3 Open\n\n34) kanzenryu: Move G1 Kanzenryu Sun\n\n35) endo: Move R2 Open Jeep\n\n36) kanzenryu: Move Y1 Jeep Brink\n\n37) endo: Build R3 Jeep\n\n38) kanzenryu: Move R1 Kanzenryu Bigblue\n\n39) endo: Move Y3 Endo Brink\n\n\tkanzenryu: You&#39;ve got me completely locked out. Thanks!\n\nHomeworlds Online (SDG# 28767)\nVariants: &quot;Hard time&quot;\nStarted: 2015.12.30, Ended: 2016.2.5\nParticipants: Simon (S), kanzenryu (N)\nWinner: Simon\n\n1) kanzenryu: Homeworld R1 B2 G3\n\n2) Simon: Homeworld B3 Y1 G3\n\n3) kanzenryu: Build G1 Kanzenryu\n\tSimon: Have fun, have fun!\n\n4) Simon: Build G1 Simon\n\tkanzenryu: That&#39;s why I play\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) Simon: Trade G1 R1 Simon\n\n7) kanzenryu: Build Y1 Kanzenryu\n\n8) Simon: Build R1 Simon\n\n9) kanzenryu: Build Y2 Kanzenryu\n\n10) Simon: Discover R1 Simon B2 B2\n\n11) kanzenryu: Discover Y2 Kanzenryu G3 First\n\n12) Simon: Build R2 Simon\n\n13) kanzenryu: Build Y2 First\n\n14) Simon: Discover R2 Simon G2 G2\n\n15) kanzenryu: Discover Y2 First G2 Med\n\n16) Simon: Build R2 Simon\n\n17) kanzenryu: Trade Y1 B1 Kanzenryu\n\n18) Simon: Sacrifice G3 Simon\nBuild R2 G2\nBuild R3 Simon\nBuild R3 B2\n\n19) kanzenryu: Trade G3 R3 Kanzenryu\n\n20) Simon: Trade R3 G3 Simon\n\n21) kanzenryu: Trade B1 G1 Kanzenryu\n\n22) Simon: Build R3 Simon\n\tkanzenryu: I did not think that through...\n\n23) kanzenryu: Build Y1 Kanzenryu\n\tSimon: Hmm, countering monopolies can take several turns with specific order of moves.\n\n24) Simon: Trade R3 G3 B2\n\n25) kanzenryu: Build R3 Kanzenryu\n\n26) Simon: Build G1 B2\n\n27) kanzenryu: Move R3 Kanzenryu First\n\n28) Simon: Move R3 Simon Med\n\n29) kanzenryu: Discover Y2 Med G1 Back\n\n30) Simon: Build G2 Simon\n\n31) kanzenryu: Build Y2 First\n\n32) Simon: Trade G3 Y3 B2\n\n33) kanzenryu: Build Y3 Kanzenryu\n\n34) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y3 B2\nBuild G3 B2\n\n35) kanzenryu: Trade Y1 B1 Kanzenryu\n\n36) Simon: Discover Y3 B2 B3 B3\n\n37) kanzenryu: Move B1 Kanzenryu First\n\n38) Simon: Trade G1 B1 B2\n\n39) kanzenryu: Discover Y2 First B2 Up\n\n40) Simon: Sacrifice G3 Simon\nBuild G1 B2\nBuild G3 Simon\nBuild Y1 B2\n\n41) kanzenryu: Move Y2 Back Up\n\n42) Simon: Move R2 Simon Up\n\n43) kanzenryu: Sacrifice Y2 First\nMove Y2 Up Simon\nMove Y2 Up Simon\n\n44) Simon: Sacrifice G3 Simon\nBuild G1 B2\nBuild G3 Simon\nBuild Y2 B3\n\n45) kanzenryu: Sacrifice Y3 Kanzenryu\nMove Y1 Kanzenryu B3\nMove Y1 B3 G2\nMove Y1 G2 Simon\nCatastrophe Simon Y\n\n46) Simon: Discover B1 B2 Y3 Y3\n\tkanzenryu: Does it show that I have no ideas? ;-)\n\tSimon: It&#39;s not at all clear. I have more pieces, but must make two invasions now while I can&#39;t allow you to make even one.\n\n47) kanzenryu: Build B1 First\n\n48) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 B2\nBuild Y1 B3\n\n\tkanzenryu: I&#39;m locked out of yellow... not good. Thanks for the game.\n\tSimon: gg\n\nHomeworlds Online (SDG# 28934)\nStarted: 2015.12.30, Ended: 2016.1.19\nParticipants: kanzenryu (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) kanzenryu: Homeworld Y1 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) ts52: Trade G1 B1 Ts52\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) ts52: Build B1 Ts52\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) ts52: Discover B1 Ts52 G2 Robin\n\n10) kanzenryu: Discover G1 Kanzenryu B3 Bigblue\n\n11) ts52: Build B2 Robin\n\n12) kanzenryu: Build G1 Bigblue\n\n13) ts52: Build B2 Ts52\n\n14) kanzenryu: Trade G1 Y1 Bigblue\n\n15) ts52: Build B3 Robin\n\n16) kanzenryu: Build Y2 Bigblue\n\n17) ts52: Trade B3 Y3 Robin\n\n18) kanzenryu: Trade Y2 R2 Bigblue\n\n19) ts52: Trade B2 R2 Robin\n\n20) kanzenryu: Build Y2 Bigblue\n\n21) ts52: Build B2 Robin\n\n22) kanzenryu: Discover Y1 Kanzenryu B3 Other\n\n23) ts52: Build B3 Robin\n\n24) kanzenryu: Build G1 Kanzenryu\n\n25) ts52: Discover B2 Robin Y3 Bigbird\n\n26) kanzenryu: Discover Y1 Bigblue G2 Peep\n\n27) ts52: Trade B3 G3 Robin\n\n\tkanzenryu: I can see I&#39;m being crushed in this game... no real point in dragging it out. Thanks!\n\nHomeworlds Online (SDG# 28978)\nVariants: &quot;Hard time&quot;\nStarted: 2016.1.1, Ended: 2016.1.24\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H Y2 B1 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\tendo: Happy new year, and GLHF\n\n4) endo: Build G1 Endo\n\n5) wil: T G1 Y1 Wil\n\n6) endo: Trade G1 Y1 Endo\n\n7) wil: B Y2 Wil\n\n8) endo: Build Y2 Endo\n\n9) wil: D Y1 Wil G3 G3\n\n10) endo: Discover Y1 Endo G2 Diamond\n\n11) wil: B Y3 G3\n\n12) endo: Build Y3 Diamond\n\n13) wil: D Y2 Wil Y3 Y3\n\n14) endo: Build G1 Endo\n\n15) wil: B G1 Wil\n\n16) endo: Trade G1 R1 Endo\n\n17) wil: T G1 R1 Wil\n\n18) endo: Build G1 Endo\n\n19) wil: B G1 Wil\n\n20) endo: Trade G1 B1 Endo\n\n21) wil: T G1 B1 Wil\n\n22) endo: Move B1 Endo Diamond\n\n23) wil: M B1 Wil G3\n\n24) endo: Build B2 Diamond\n\n25) wil: B B2 G3\n\n26) endo: Discover B1 Diamond G1 Club\n\n\twil: Oops\n\nHomeworlds Online (SDG# 29013)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.8, Ended: 2016.2.10\nParticipants: Tamiel (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\n2) Tamiel: Homeworld Y1 B2 G3\n\n3) Felix: Build G1 Felix\n\n4) Tamiel: Build G1 Tamiel\n\tFelix: Welcome back. I hope you have a good game!\n\n5) Felix: Trade G1 Y1 Felix\n\tTamiel: Thank you, you too.\n\n6) Tamiel: Build G1 Tamiel\n\n7) Felix: B G1 Felix\n\n8) Tamiel: Discover G1 Tamiel Y3 Gliesse1\n\n9) Felix: D G1 Felix B1 Ice\n\tTamiel: I&#39;ll be away until Monday. I don&#39;t think I&#39;ll be able to make a move until then. Sorry for the delay.\n\tFelix: That&#39;s okay! I will wait a day or two for my move so that you have more time on your limit.\n\n10) Tamiel: Build G2 Gliesse1\n\n11) Felix: Build G2 Felix\n\tTamiel: Thank you.\n\n12) Tamiel: Sacrifice G3 Tamiel\nBuild G2 Gliesse1\nBuild G3 Tamiel\nBuild G3 Tamiel\n\n13) Felix: Trade G2 Y2 Felix\n\n14) Tamiel: Trade G3 Y3 Tamiel\n\tFelix: Good move! I thought at first that it was unwise but I see now that it works greatly in your favor!\n\n15) Felix: Build G2 Felix\n\tTamiel: I always keep my eyes open for possible sacrifices. Mostly as a defensive measure. \n\tFelix: Ah, but now I can sacrifice my Y2 in my homeworld and move my G1 from ice to your homeward and cause a catastrophe there. Do you want to take your move back and try something else?\n\tTamiel: I thought you cannot move g1 from ice because there is no yellow color there. I&#39;ve reread the sacrifice rule and realized my mistake. I will take back the last move. Thank you for allowing it and sorry for my lapse of judgement regarding the rules of play.\n\n16) Tamiel: Move G2 Gliesse1 Ice\n\tFelix: That&#39;s okay! It does take a little while to learn all of the ins and outs of the rules. And I am still learning them myself! The sacrifice lets you move any ship in any of your systems.\n\n17) Felix: T G1 R1 Ice\n\n18) Tamiel: Move G2 Gliesse1 Ice\n\n19) Felix: M Y2 Felix Ice\n\n20) Tamiel: Sacrifice Y3 Tamiel\nMove G2 Ice Felix\nMove G2 Ice Felix\nPass\nCatastrophe Felix Green\n\n21) Felix: Trade Y1 G1 Felix\n\n22) Tamiel: Build G2 Tamiel\n\n23) Felix: Build G2 Felix\n\tFelix: Ouch! Nice move.\n\n24) Tamiel: Trade G2 B2 Tamiel\n\n25) Felix: Move G1 Felix Ice\n\n26) Tamiel: Build G2 Gliesse1\n\n27) Felix: Move G1 Ice Gliesse1\n\n28) Tamiel: Move B2 Tamiel Gliesse1\n\n29) Felix: Move G1 Gliesse1 Tamiel\n\n30) Tamiel: Trade G3 R3 Tamiel\n\n31) Felix: Discover G1 Tamiel B3 Rim\n\n32) Tamiel: Discover G1 Gliesse1 B1 Gliesse2\n\n33) Felix: Move Y2 Ice Gliesse1\n\n34) Tamiel: Build R1 Tamiel\n\n35) Felix: Move Y2 Gliesse1 Gliesse2\n\n36) Tamiel: Trade R3 G3 Tamiel\n\n37) Felix: Sacrifice R1 Ice\nAttack G1 Gliesse2\n\n38) Tamiel: Move R1 Tamiel Rim\n\n39) Felix: Build G2 Rim\n\n40) Tamiel: Attack G1N Rim\n\n41) Felix: Sacrifice Y2 Gliesse2\nMove G2 Rim Tamiel\nDiscover G1 Gliesse2 Y3 Brink\n\n42) Tamiel: Trade G3 R3 Tamiel\n\n43) Felix: Sacrifice G2 Tamiel\nBuild G2 Brink\nBuild G3 Felix\n\n44) Tamiel: Sacrifice G2 Gliesse1\nBuild G2 Rim\nBuild G3 Rim\n\n45) Felix: Build G3 Felix\n\n46) Tamiel: Move R3 Tamiel Brink\n\n47) Felix: Move G2 Brink Tamiel\n\n48) Tamiel: Trade G2 Y2 Rim\n\n49) Felix: S G2 Felix\nB G2 Tamiel\nB G2 Tamiel\nC Tamiel Green\n\n\tTamiel: Ooops, I made a mistake.\n\tFelix: That&#39;s unfortunate! I hate when I make them!\n\tFelix: Good game though! I&#39;m happy to rematch any time.\n\nHomeworlds Online (SDG# 29006)\nStarted: 2016.1.8, Ended: 2016.1.21\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld B3 Y2 G3\n\tts52: Have a good game!\n\tFelix: Thanks, you too! I appreciate you accepting my challenges as you are helping me learn to be a better player!\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Always happy to play more homeworlds. I need to work on convince my local friends to play so I can play more irl games.\n\tFelix: Same, haha. I can&#39;t even get my wife to play with me!\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\tts52: My wife has some deep aversion to pyramid games. Not really sure why. :(\n\n7) ts52: Build B2 Ts52\n\tFelix: Mine tolerates some of the simper games, but no homeworlds, sadly!\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) Felix: Discover B2 Felix G1 Grape\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build B2 Grape\n\n13) ts52: Build B3 Kermit\n\n14) Felix: Build B3 Grape\n\n15) ts52: Trade B3 Y3 Kermit\n\n16) Felix: Trade B2 Y2 Grape\n\n17) ts52: Discover B1 Ts52 G2 Oscar\n\n18) Felix: Discover B1 Felix G1 Olive\n\n19) ts52: Build Y1 Kermit\n\n20) Felix: B Y1 Grape\n\n21) ts52: Trade Y1 R1 Kermit\n\n22) Felix: Trade Y1 R1 Grape\n\n23) ts52: Build Y1 Kermit\n\n24) Felix: Trade B1 Y1 Olive\n\n25) ts52: Build B1 Oscar\n\n26) Felix: Discover Y1 Olive R2 Apple\n\n27) ts52: Discover G1 Ts52 Y2 Bigbird\n\n28) Felix: Build G1 Felix\n\n29) ts52: Build G2 Ts52\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Grape\nBuild Y3 Apple\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B2 Kermit\n\n32) Felix: B R1 Grape\n\n33) ts52: Discover B2 Kermit R3 Elmo\n\n34) Felix: Move Y2 Grape Oscar\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild R2 Kermit\n\n36) Felix: Move R1 Grape Felix\n\n37) ts52: Sacrifice B1 Oscar\nTrade G3 R3 Bigbird\n\n38) Felix: S G3 Felix\nB G3 Felix\nB R2 Felix\nB R3 Grape\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B1 Elmo\n\n40) Felix: M Y2 Oscar Ts52\n\n41) ts52: Move Y3 Kermit Elmo\n\n42) Felix: M Y1 Apple Ts52\n\n43) ts52: Sacrifice Y1 Kermit\nDiscover R3 Bigbird Y1 Zoe\n\n44) Felix: Sacrifice Y3 Apple\nDiscover Y1 Grape R2 Apple\nMove Y1 Apple Ts52\nMove B3 Grape Kermit\n\n45) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild Y3 Elmo\nBuild R2 Zoe\n\n46) Felix: S R2 Felix\nA R2 Kermit\nA B3 Kermit\nCatastrophe Ts52 Yellow\n\tFelix: Crud. I forgot to catastrophe. Whoops.\n\tts52: You can undo and redo if you want. I&#39;ll give it a couple hours before I move. \n\tFelix: I already undid a mistake I made on this turn, and the system only allows one redo, I think. But that&#39;s okay. I will just press on! Thanks very much for offering.\n\n47) ts52: Move B1 Elmo Kermit\nCatastrophe Kermit Blue\n\tts52: Fair enough. It will be interesting to see how this plays out.\n\n48) Felix: M G3 Felix Ts52\n\tts52: Huh, I missed that one.\n\n49) ts52: Sacrifice Y3 Elmo\nMove Y3 Elmo Ts52\nMove G1 Bigbird Ts52\nMove R3 Zoe Felix\nCatastrophe Ts52 Green\n\n50) Felix: B R2 Felix\n\tFelix: Interesting indeed! I think I may have gotten you... Unless I&#39;m overlooking something. And I likely am!\n\tts52: This certainly doesn&#39;t look good, but I may be able to at least forestall the inevitable another turn or two.\n\n51) ts52: Sacrifice R2 Zoe\nAttack R2 Felix\nAttack R1 Felix\n\tFelix: Oh dear. I think you managed to turn the tables back on me. I overextended and couldn&#39;t finish the job. Well done! I think I&#39;m done for now\n\n\tFelix: Close one. Good game!\n\tts52: Very close. Thanks for the game. Well played!\n\nHomeworlds Online (SDG# 29032)\nVariants: &quot;Hard time&quot;\nStarted: 2016.1.12, Ended: 2016.3.5\nParticipants: Felix (S), Salmonax (N)\nWinner: Felix\n\n1) Salmonax: Homeworld B3 R2 G3\n\n2) Felix: Homeworld Y3 B1 G3\n\tFelix: Have a good game!\r\n\n\n3) Salmonax: Build G1 Salmonax\n\n4) Felix: Build G1 Felix\n\tSalmonax: You too\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) Felix: Trade G1 B1 Felix\n\n7) Salmonax: Build G1 Salmonax\n\n8) Felix: B B1 Felix\n\n9) Salmonax: Build Y1 Salmonax\n\n10) Felix: Discover B1 Felix G2 Grass\n\n11) Salmonax: Trade Y1 R1 Salmonax\n\n12) Felix: Build B2 Grass\n\n13) Salmonax: Discover G1 Salmonax Y1 Mars\n\n14) Felix: T B2 Y2 Grass\n\n15) Salmonax: Build G1 Mars\n\n16) Felix: Build B2 Grass\n\n17) Salmonax: Move G1 Mars Grass\n\n18) Felix: Trade B2 R2 Grass\n\n19) Salmonax: Sacrifice G3 Salmonax\nBuild G1 Grass\nBuild G2 Grass\nBuild G2 Mars\nCatastrophe Grass G\n\n20) Felix: B B1 Felix\n\n21) Salmonax: Move G1 Mars Salmonax\n\n22) Felix: D B1 Felix G2 Rim\n\tFelix: Woah. Bold move!\n\tSalmonax: Let&#39;s see how it goes. =)\n\n23) Salmonax: Move G2 Mars Rim\n\tFelix: Indeed! Should be interesting:)\n\n24) Felix: Sacrifice G3 Felix\nBuild B2 Rim\nBuild B2 Rim\nBuild B2 Felix\n\n25) Salmonax: Build G1 Rim\n\n26) Felix: Trade B2 R2 Felix\n\n27) Salmonax: Build G1 Rim\n\n28) Felix: Sacrifice B2 Rim\nTrade R2 G2 Felix\nTrade B1 R1 Felix\n\n29) Salmonax: Build G3 Salmonax\nCatastrophe Rim G\n\n30) Felix: Build G1 Felix\n\n31) Salmonax: Trade G1 B1 Salmonax\n\tFelix: Oh, that was clever! I was wondering why you didn&#39;t catastrophe. I should have...\n\n32) Felix: Trade G1 B1 Felix\n\tSalmonax: I wasn&#39;t sure that would work. =)\n\n33) Salmonax: Discover B1 Salmonax G1 Greenone\n\tFelix: I like unconventional strategies like that, and I will remember that one! Once, I intentionally blew up half of my own homeworld in order to immediately put some of my ships within one jump of my opponents homeworld. It ended up working against me, ultimately, but it did cause him react to the immediate threat :)\n\n34) Felix: B B2 Felix\n\n35) Salmonax: Build B2 Greenone\n\n36) Felix: D B1 Felix G2 Hope\n\n37) Salmonax: Build Y1 Salmonax\n\n38) Felix: Sacrifice G2 Felix\nBuild B2 Hope\nBuild B3 Felix\n\n39) Salmonax: Build B3 Greenone\n\n40) Felix: Sacrifice B2 Felix\nTrade B3 G3 Felix\nTrade B2 Y2 Hope\n\n41) Salmonax: Trade B3 R3 Greenone\n\n42) Felix: Build B2 Hope\n\n43) Salmonax: Move Y1 Salmonax Greenone\n\n44) Felix: Discover B2 Hope G1 Rim\n\n45) Salmonax: Move R3 Greenone Hope\n\n46) Felix: Move Y2 Hope Rim\n\n47) Salmonax: Attack B1 Hope\n\n48) Felix: Build Y1 Rim\n\n49) Salmonax: Move Y1 Salmonax Rim\n\n50) Felix: Build B2 Rim\n\n51) Salmonax: Build Y2 Rim\nCatastrophe Rim Yellow\n\n52) Felix: T B2 Y2 Rim\n\n53) Salmonax: Build B2 Hope\n\n54) Felix: B B3 Rim\n\n55) Salmonax: Build B3 Hope\n\n56) Felix: M B2 Rim Hope\nC Hope Blue\n\n57) Salmonax: Trade B2 R2 Greenone\n\n58) Felix: B G1 Felix\n\tSalmonax: Ah, I should have done that in greenone instead.\n\n59) Salmonax: Build G2 Salmonax\n\tFelix: Yeah, probably. I always overlook stuff like that!\n\n60) Felix: D G1 Felix B2 Ichor\n\n61) Salmonax: Discover B1 Greenone G2 Greentwo\n\n62) Felix: Build G3 Ichor\n\n63) Salmonax: Move R2 Greenone Ichor\n\n64) Felix: Sacrifice R1 Felix\nAttack R2 Ichor\n\n65) Salmonax: Sacrifice Y1 Greenone\nMove R3 Hope Felix\n\n66) Felix: Sacrifice R2 Ichor\nAttack R3 Felix\nPass\n\n67) Salmonax: Trade G2 Y2 Salmonax\n\n68) Felix: Trade G1 Y1 Ichor\n\tSalmonax: Man, I didn&#39;t see that R2 at all...\n\tSalmonax: Man, I didn&#39;t see that R2 at all...\n\tFelix: I thought you had me for a moment. That was scary!\n\n69) Salmonax: Build Y1 Salmonax\n\n70) Felix: Move G3 Ichor Rim\n\n71) Salmonax: Build B1 Greentwo\n\tFelix: Regardless of how this turns out, I&#39;ve really enjoyed playing against you and I&#39;d love to have a rematch, ladder or otherwise. I feel like our skill levels are pretty close\n\tFelix: Everyone else on here destroys me...\n\n72) Felix: Sacrifice Y2 Rim\nMove B3 Rim Salmonax\nMove G3 Rim Salmonax\n\tSalmonax: Yeah, this is pretty fun. =)\n\n73) Salmonax: Build B2 Greentwo\n\n74) Felix: S R3 Felix\nA G3 Salmonax\nA Y2 Salmonax\nA R1 Salmonax\n\tFelix: I think I may have you now.... unless I&#39;m overlooking something.\n\tSalmonax: Not immediately, but I think so.\n\n75) Salmonax: Attack R1 Salmonax\n\n76) Felix: Trade G3 R3 Salmonax\n\n77) Salmonax: Sacrifice Y1 Salmonax\nMove B2 Greentwo Felix\n\n78) Felix: A R1 Salmonax\n\tSalmonax: GG\n\n\tFelix: You too! Very close and exciting. I&#39;d love to have a rematch!\n\nHomeworlds Online (SDG# 28961)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.18, Ended: 2016.3.12\nParticipants: wil (S), Ottia (N)\nWinner: Ottia\n\n1) Ottia: Homeworld B2 G3 R3\n\n2) wil: H Y3 B1 G3\n\tOttia: Good morning again, Wil! It&#39;s my first game, I guarantee that here I won&#39;t be playing too quickly (grin), should I make any mistakes please let me know, I&#39;ll apologise and correct immediately\n\twil: Do I know you?  \n\n3) Ottia: Build R1 Ottia\n\twil: First battle you have is G in your homeworld star...keeps you from a factory at home...not insurmountable... But troublesome\n\tOttia: If half a game of Blam! is knowing each other then we do, Sir. My pleasure. Now let&#39;s see what to do next (thanks for the advice, by the way!).\n\n4) wil: B G1 Wil\n\twil: Ah...okee... And no problem...I&#39;ve played that...\n\n5) Ottia: Trade R1 Y1 Ottia\n\n6) wil: T G1 B1 Wil\n\tOttia: Goodness, you make it sound difficult HAHAHAHA... I&#39;ll add some egg yolk to my system.\n\n7) Ottia: Discover Y1 Ottia G1 Ashikawa\n\n8) wil: B B1 Wil\n\n9) Ottia: Build R1 Ottia\n\twil: Normally I would build whatever color you built to keep up...but their were only two pawns and two drones in the blue bank...which meant to me I could get to drones and queens in blue and hopefully swap for yellow queens....so I entered the race rather than matching....your moving out yourpawn means you can&#39;t build more yellow at home right away ..  Which puts me another step closer to winning the race..\n\twil: This game does have a learning curve...but is amazing... I learned it by losing doEns of games watching the attacks come after me....and then trying them against others and learning the gambits\n\n10) wil: D B1 Wil R2 R2\n\tOttia: Well, now it&#39;s your turn to inflict lots of pain HAHAHAHA... I can imagine both that the game has got a long learning curve and that it&#39;s stunning once you get past it. I will have to practice a bit to get all the chains of moves you need to make to achieve mid- or long-term goals...\n\n11) Ottia: Trade R1 Y1 Ottia\n\n12) wil: B B2 Wil\n\tOttia: Alright, now I see resources for trading are scarce at least at the beginning ;)\n\twil: Yes early phase is building and trying to corner bigger oieecda or a monopoly\n\n13) Ottia: Build Y1 Ottia\n\n14) wil: D B2 Wil G2 G2\n\tOttia: What does oieecda mean? (if you pardon my question, I suppose you mean systems but being a novice I can never be sure...)\n\twil: Pyramids..,. One helluva typo\n\n15) Ottia: Build Y2 Ashikawa\n\n16) wil: S G3 Wil\nB B2 G2\nB B3 R2\nB B3 Wil\n\tOttia: Goodness me... was that the autocorrector? I can&#39;t quite follow all the hand displacements to touch-type that from &quot;Pyramids&quot;... interesting! HAHA, patterns! By the way, do you like games like Zendo and the sort?\n\twil: There  is no telling how that happened... It is just me...\n\n17) Ottia: Trade R3 B3 Ottia\n\n18) wil: T B3 Y3 R2\n\tOttia: Some blue stuff for me still (I start fist pumping and shouting Tuco-style)...\n\n19) Ottia: Trade Y1 R1 Ottia\n\n20) wil: B B3 G2\n\n21) Ottia: Build R1 Ottia\n\n22) wil: S B2 G2\nT B3 R3 G2\nT B3 G3 Wil\n\n23) Ottia: Discover Y2 Ashikawa B2 Ojima\n\n24) wil: B B3 G2\n\n25) Ottia: Build Y1 Ashikawa\n\n26) wil: T B3 Y3 G2\n\n27) Ottia: Build Y2 Ottia\n\n28) wil: M R3 G2 Ashikawa\n\n29) Ottia: Move Y1 Ashikawa G2\n\n30) wil: A Y1 Ashikawa\n\n31) Ottia: Move Y2 Ottia Ashikawa\n\n\tOttia: I&#39;m sorry that I terminate the game like this but it&#39;s not moving forward, you&#39;re obviously busy and I need to declutter. I&#39;ll be looking forward to our next games (you can always invite me when you have time again).\n\nHomeworlds Online (SDG# 29041)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.20, Ended: 2016.2.11\nParticipants: Felix (S), kanzenryu (N)\nWinner: Felix\n\n1) kanzenryu: Homeworld Y2 B3 G3\n\n2) Felix: Homeworld Y3 B1 G3\n\tkanzenryu: I&#39;ll try something different again\n\tFelix: The fortress, eh? I actually really like using that opening! It rarely works well for me, but I like it!\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) Felix: Build G1 Felix\n\n5) kanzenryu: Trade G1 B1 Kanzenryu\n\n6) Felix: T G1 B1 Felix\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) Felix: D B1 Felix G2 Grass\n\n9) kanzenryu: Discover B1 Kanzenryu G1 Out\n\n10) Felix: B B2 Grass\n\n11) kanzenryu: Build B2 Out\n\n12) Felix: Trade B1 R1 Grass\n\n13) kanzenryu: Trade B2 R2 Out\n\n14) Felix: B R1 Grass\n\n15) kanzenryu: Trade G1 Y1 Kanzenryu\n\n16) Felix: Trade R1 Y1 Grass\n\n17) kanzenryu: Build G1 Kanzenryu\n\n18) Felix: B G1 Felix\n\n19) kanzenryu: Discover G1 Kanzenryu B1 Beep\n\n20) Felix: Move B2 Grass Beep\n\n21) kanzenryu: Build B2 Out\n\n22) Felix: Sacrifice R1 Grass\nAttack G1 Beep\n\n23) kanzenryu: Build G2 Kanzenryu\n\n24) Felix: S G3 Felix\nB G2 Felix\nB G3 Felix\nB G3 Beep\n\n25) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R1 Out\nBuild R1 Out\n\n26) Felix: T G1 R1 Felix\n\n27) kanzenryu: Move Y1 Kanzenryu Out\n\n28) Felix: T G2 Y2 Felix\n\n29) kanzenryu: Move R2 Out Grass\n\n30) Felix: Move Y1 Grass Beep\n\n31) kanzenryu: Build R2 Out\n\n32) Felix: Build G1 Felix\n\n33) kanzenryu: Trade G2 R2 Kanzenryu\n\n34) Felix: Build R3 Felix\n\n35) kanzenryu: Sacrifice G3 Kanzenryu\nBuild R3 Kanzenryu\nBuild R3 Grass\nBuild Y1 Out\n\n36) Felix: Build G2 Beep\n\n37) kanzenryu: Sacrifice B2 Out\nTrade R3 G3 Kanzenryu\nTrade R3 Y3 Grass\n\n38) Felix: S G2 Beep\nB Y2 Felix\nB Y3 Beep\n\n39) kanzenryu: Build R3 Kanzenryu\n\n40) Felix: Trade G3 R3 Beep\n\n41) kanzenryu: Build G2 Kanzenryu\n\n42) Felix: Discover B2 Beep G2 Ichor\n\n43) kanzenryu: Move Y3 Grass Felix\nCatastrophe Felix Y\n\n44) Felix: Sacrifice Y3 Beep\nMove R3 Beep Kanzenryu\nMove R1 Felix Kanzenryu\nMove G1 Beep Kanzenryu\nCatastrophe Kanzenryu Red\n\tkanzenryu: I didn&#39;t have any other ideas\n\n45) kanzenryu: Sacrifice R1 Out\nAttack G1 Kanzenryu\n\tFelix: Not a bad plan! You&#39;ve damaged my system greatly, but I think I may just pull through!\n\n46) Felix: Sacrifice Y1 Beep\nMove G1 Felix Kanzenryu\nCatastrophe Kanzenryu Green\n\tkanzenryu: Heh. I actually spent a couple of minutes looking for that kind of attack and didn&#39;t see it :-(\n\tFelix: Good game though! Rematch?\n\n\nHomeworlds Online (SDG# 29079)\nStarted: 2016.1.21, Ended: 2016.1.25\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld R3 B1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Discover G1 Ts52 B3 Gonzo\n\n7) Felix: Build B2 Felix\n\n8) ts52: Build G1 Ts52\n\n9) Felix: Trade B2 Y2 Felix\n\n10) ts52: Build G1 Gonzo\n\n11) Felix: Build G2 Felix\n\n12) ts52: Build G2 Gonzo\n\n13) Felix: Discover G2 Felix B2 Ice\n\n14) ts52: Trade G2 Y2 Gonzo\n\tts52: What&#39;s up? Did you click the &#39;call an admin&#39; on purpose?\n\tFelix: Oh shoot! No, I didn&#39;t! That was an accident. What happens now?\n\tts52: No idea. I&#39;ll make my move as normal. You can try clicking &#39;cancel call&#39;\n\n15) Felix: B G2 Felix\n\tFelix: Ah, didn&#39;t notice that. That seems to have done the trick!\n\n16) ts52: Discover G1 Gonzo B2 Grover\n\n17) Felix: S G3 Felix\nB G2 Ice\nB G3 Felix\nB B2 Felix\n\tts52: Yep, seems to be cancelled now. Not sure it would&#39;ve done anything anyway.\n\n18) ts52: Build G3 Gonzo\n\n19) Felix: S G2 Ice\nB B3 Felix\nB Y1 Felix\n\n20) ts52: Trade G3 B3 Gonzo\n\n21) Felix: S G3 Felix\nB G2 Ice\nB G3 Ice\nB G3 Felix\nC Felix Blue\n\tFelix: I&#39;m not sure this site implements the rules correctly. In the official rules from Andrew Looney, you can catastrophe at any point in your turn. I was going to catastrophe my own system and then sacrifice my y2 to move both my greens from my homeworld to yours, but the system won&#39;t let me do that\n\tFelix: It was a crazy idea and I really wish it would work :p \n\n22) ts52: Trade G3 R3 Ts52\n\n23) Felix: T G3 Y3 Ice\n\tts52: That is a very interesting play. I don&#39;t think I&#39;ve ever seen anyone intentionally create a catastrophe in their homeworld\n\n24) ts52: Build G3 Grover\n\tFelix: I thought it would be a very unique form of attack, and it would have been effective if the rules were implemented differently! Now I know catastrophes must take place at the end of a turn...\n\n25) Felix: T G2 B2 Ice\n\n26) ts52: Sacrifice G3 Grover\nBuild G2 Ts52\nBuild G3 Grover\nBuild G3 Gonzo\n\n27) Felix: M B2 Ice Felix\n\n28) ts52: Sacrifice Y2 Gonzo\nMove G1 Ts52 Felix\nMove G1 Grover Felix\nCatastrophe Felix Green\n\n29) Felix: Build G1 Ice\n\n30) ts52: Trade G1 Y1 Gonzo\n\n31) Felix: Move Y3 Ice Felix\n\n32) ts52: Trade B3 Y3 Gonzo\n\n33) Felix: Sacrifice Y2 Felix\nDiscover G1 Ice B3 Slash\nMove G2 Ice Felix\n\n34) ts52: Sacrifice G3 Gonzo\nBuild R1 Ts52\nBuild R1 Ts52\nBuild G1 Grover\n\n35) Felix: Trade G1 R1 Slash\n\n36) ts52: Sacrifice Y3 Gonzo\nMove R3 Ts52 Felix\nMove R1 Ts52 Felix\nMove R1 Ts52 Felix\nCatastrophe Felix Red\n\n\tts52: Thanks for the game!\n\tFelix: You too! I left myself wide open after that failed attack by destroying my own homeworld. It was fun though! I&#39;m always up for a rematch.\n\tts52: Yeah, it was an interesting gambit, but didn&#39;t work out for you. Always happy to play another game.\n\nHomeworlds Online (SDG# 28866)\nVariants: &quot;Hard time&quot;\nStarted: 2016.1.22, Ended: 2016.1.26\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B2 G3\n\n2) wil: H R3 B1 G3\n\n3) Felix: B G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: T G1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: B B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Discover B2 Felix G1 Grass\n\n10) wil: T B1 Y1 Wil\n\n11) Felix: S G3 Felix\nB B1 Grass\nB B3 Grass\nB B3 Felix\n\n12) wil: B B3 Wil\n\n13) Felix: S B2 Grass\nT B3 Y3 Grass\nT B3 G3 Felix\n\n14) wil: D B2 Wil G2 G2\n\n15) Felix: B G1 Felix\n\n16) wil: D B3 Wil G2 Gee2\n\n17) Felix: T B1 R1 Felix\n\n18) wil: T B3 Y3 Gee2\n\n19) Felix: D G1 Felix B1 Ice\n\n20) wil: B G1 Wil\n\n21) Felix: B G2 Felix\n\n22) wil: D Y3 Gee2 G3 G3\n\n23) Felix: S G3 Felix\nB G2 Ice\nB G3 Felix\nB Y1 Grass\n\n24) wil: S G3 Wil\nB G3 Wil\nB Y1 G3\nB Y2 Wil\n\n25) Felix: M Y1 Grass G3\n\n26) wil: M Y3 G3 Ice\n\n27) Felix: S G3 Felix\nB G3 Felix\nB Y2 Grass\nB Y2 G3\n\n28) wil: T Y2 R2 Wil\n\n29) Felix: S G2 Ice\nB B2 Grass\nB R1 Felix\n\n30) wil: B B3 G2\n\n31) Felix: D B2 Grass G2 Plain\n\n32) wil: T B2 Y2 G2\n\n33) Felix: Sacrifice G3 Felix\nBuild B2 Grass\nBuild B3 Plain\nBuild G3 Felix\n\n34) wil: B B3 G2\n\n35) Felix: Sacrifice Y2 G3\nMove B1 Grass G2\nMove B2 Grass G2\nCatastrophe G2 Blue\n\n36) wil: M Y1 G3 Grass\n\n37) Felix: Sacrifice Y1 G3\nMove Y3 Grass G2\n\n38) wil: M Y1 Grass G2\n\tFelix: Sorry. Decided I wanted to sacrifice a different yellow.\n\twil: Undoing is not a sorry....it is a given in this game\n\n39) Felix: Sacrifice B3 Plain\nTrade Y3 R3 G2\nTrade B2 R2 Plain\nTrade R1 B1 Felix\n\tFelix: Oh okay. :) I thought it might be poor form to do so\n\n40) wil: D Y2 G2 R1 R2\n\twil: No...in a live game we use a turn token...your turn isn&#39;t over until you move the token...as when you do major moves with catastrophes and grows you may not like the repercussions, when you see the final layout...so you try multiple moves prior to moving the token...the board layout here is a mess...so it is easy to miss something...the issue is you are only allowed one redo...which is wrong for this game...it should be unlimited....  However... If one doesn&#39;t undo fast enough... And the other moves...oops!  N fair game as well\n\n41) Felix: S Y2 Grass\nM R3 G2 Wil\nM R2 Plain Wil\nCatastrophe Wil Red\n\n42) wil: S Y2 R2\nM G3 Wil Felix\nM G1 Wil Felix\nC Felix G\n\n43) Felix: M R1 Felix Wil\n\n\tFelix: Hello. We are an investigation party sent to check out this small moon. What are you doing out here? Nothing illegal, I hope. We may have to board your vessel and check for contraband...\n\twil: Nice\n\nHomeworlds Online (SDG# 28962)\nVariants: &quot;Hard time&quot;\nStarted: 2016.1.22, Ended: 2016.1.25\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld Y3 B2 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Felix: B G1 Felix\n\tendo: Hi again, GLHF!\n\tFelix: Thanks! You too! I did NOT mean to click the call an admin button!\n\n4) endo: Build G1 Endo\n\n5) Felix: Discover G1 Felix B1 Ice\n\n6) endo: Trade G1 B1 Endo\n\tendo: I can&#39;t see the system message about calling an admin :) Perhaps it doesn&#39;t show up to other players...\n\n7) Felix: Build G1 Felix\n\n8) endo: Build B1 Endo\n\n9) Felix: Trade G1 Y1 Felix\n\n10) endo: Discover B1 Endo G2 Wellorder\n\tFelix: Hmm... I&#39;m not sure. It sent me an email saying it had been clicked. I don&#39;t even know what it does, but I guess we&#39;re fine as long as nothing blows up :)\n\n11) Felix: B Y1 Felix\n\n12) endo: Build B2 Endo\n\n13) Felix: D Y1 Felix G1 Grass\n\n14) endo: Discover B2 Endo B2 Basis\n\n15) Felix: B Y2 Grass\n\n16) endo: Build B3 Wellorder\n\n17) Felix: D Y1 Grass B3 Molnak\n\n18) endo: Trade B3 Y3 Wellorder\n\n19) Felix: S G3 Felix\nB Y2 Molnak\nB Y2 Grass\nB Y3 Felix\n\n20) endo: Build B3 Wellorder\n\n21) Felix: T Y1 G1 Felix\n\n22) endo: Trade B3 R3 Wellorder\n\n23) Felix: Trade G1 R1 Ice\n\n24) endo: Build B3 Wellorder\n\n25) Felix: Trade Y3 G3 Felix\n\n26) endo: Build R1 Wellorder\n\n27) Felix: Move G1 Felix Ice\n\n28) endo: Move R3 Wellorder Grass\n\n29) Felix: Build G1 Ice\n\n30) endo: Sacrifice Y3 Wellorder\nMove B3 Wellorder Ice\nMove B3 Ice Felix\nMove R3 Grass Felix\n\n\tFelix: Well done! That was a slick move to end it. I have learned. Thanks for playing!\n\nHomeworlds Online (SDG# 29072)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.22, Ended: 2016.1.25\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y3 B1 G3 G3\n\n2) Felix: H G2 B1 B3 *\n\n3) wil: B G1 Wil\n\tFelix: I&#39;m gonna try this and hope I don&#39;t botch it :)\n\n4) Felix: B B1 Felix\n\twil: Way scary....but love multiple games..\n\n5) wil: B G1 Wil\n\tFelix: So far I haven&#39;t succeeded at this strategy. Multiple games are great!\n\n6) Felix: T B3 Y3 Felix\n\n7) wil: D G1 Wil Y2 Y2\n\n8) Felix: B B2 Felix\n\n9) wil: B G1 Y2\n\n10) Felix: D B1 Felix G3 Plain\n\n11) wil: D G1 Y2 Y3 Y3\n\n12) Felix: Discover B2 Felix G3 Grass\n\n13) wil: B G2 Wil\n\n14) Felix: B B2 Grass\n\n15) wil: B G2 Y3\n\n16) Felix: B B2 Plain\n\n17) wil: T G3 B3 Wil\n\n18) Felix: B B3 Grass\n\n19) wil: B B3 Wil\n\n20) Felix: S B2 Grass\nT B3 G3 Grass\nT B2 Y2 Plain\n\n21) wil: M G1 Y2 Grass\n\n22) Felix: S Y2 Plain\nD B1 Plain B2 B2\nM B1 B2 Wil\nCatastrophe Wil Blue\n\n23) wil: S G2 Y3\nB G2 Grass\nB G3 Wil\nC Grass G\n\n24) Felix: B Y1 Felix\n\n25) wil: D G1 Wil B2 B2\n\n26) Felix: T Y3 R3 Felix\n\n27) wil: T G1 R1 B2\n\n28) Felix: B Y1 Felix\n\n29) wil: S G2 Wil\nB R1 B2\nB G1 Wil\n\twil: Shoveling or homeworlds....shoveling or homeworlds...HOMEWORRLDS!!!\n\n30) Felix: B Y1 Felix\n\twil: Ya got me on the run here\n\tFelix: Bahahaha. Good choice!  We got a lot of snow too. \n\n31) wil: M G1 Wil B2\n\tFelix: I&#39;m not quite sure how to finish the job yet though...\n\n32) Felix: D Y1 Felix G3 Grass\n\n33) wil: B G1 Wil\n\n34) Felix: B Y2 Grass\n\twil: Finishing is always tricky...even with a big advantage you have to be patient to administer it\n\n35) wil: B G2 B2\n\n36) Felix: Build Y2 Felix\n\n37) wil: T G2 Y2 B2\n\n38) Felix: Sacrifice Y2 Felix\nMove Y1 Felix Wil\nMove Y1 Felix Wil\n\n39) wil: M G3 Wil B2\n\twil: There ya go\n\n40) Felix: Sacrifice Y2 Grass\nMove Y1 Grass Felix\nMove Y1 Felix Wil\nCatastrophe Wil Yellow\n\twil: We&#39;ve left our homeworld to form a new colony in hooes of finding more peaceful neighbors\n\twil: Freudian slip....we hope we find hooes too!\n\tFelix: Good luck on your quest to fine hooes! :) Since it&#39;s dangerous to leave this much fuel sitting in space without being monitored, I will go ahead and create a controlled fire to burn it all up. It&#39;s safer that way. I&#39;m sure you understand. Bon voyage!\n\tFelix: Good game! The banker setup probably gave me an edge, but I sure had to work for it! I like having two at once with you. Care for a rematch?\n\twil: You may start as many games as you like...try different openings.. I enjoy playing this game...\n\twil: Look at my happy colony...they will survive..\n\n\nHomeworlds Online (SDG# 29118)\nVariants: &quot;Hard time&quot;\nStarted: 2016.1.24, Ended: 2016.3.9\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n1) Simon: Homeworld R1 B3 G3\n\tSimon: I was away right after the previous challenge. Now trying to be more attentive. Have fun!\n\n2) endo: Homeworld B1 Y2 G3\n\n3) Simon: Build G1 Simon\n\tendo: Hehe, I seem to be winning a lot of ladder matches on time lately. Have a nice game!\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 Y1 Simon\n\n6) endo: Trade G1 Y1 Endo\n\n7) Simon: Build G1 Simon\n\n8) endo: Build G1 Endo\n\n9) Simon: Discover G1 Simon B2 B2\n\n10) endo: Trade G1 B1 Endo\n\n11) Simon: Build G1 B2\n\n12) endo: Build B1 Endo\n\n13) Simon: Build G1 Simon\n\n14) endo: Discover B1 Endo Y3 Sheaf\n\n15) Simon: Build G2 B2\n\n16) endo: Sacrifice G3 Endo\nBuild B2 Sheaf\nBuild B2 Sheaf\nBuild B3 Endo\n\n17) Simon: Trade G2 R2 B2\n\n18) endo: Trade B3 G3 Endo\n\n19) Simon: Sacrifice Y1 Simon\nMove R2 B2 Sheaf\n\n20) endo: Build B3 Endo\n\n21) Simon: Build G2 B2\n\n22) endo: Trade B3 R3 Endo\n\n23) Simon: Trade G2 Y2 B2\n\n24) endo: Build B3 Endo\n\n25) Simon: Discover G1 B2 B3 B3\n\n26) endo: Build R1 Endo\n\n27) Simon: Attack B2 Sheaf\n\n28) endo: Sacrifice R3 Endo\nAttack B2 Sheaf\nAttack R2 Sheaf\nPass\n\n29) Simon: Build G2 B3\n\n30) endo: Move R2 Sheaf B2\n\n31) Simon: Build G2 B2\n\n32) endo: Attack G2 B2\n\n33) Simon: Sacrifice G3 Simon\nBuild G2 B3\nBuild G3 Simon\nBuild G3 B2\n\n34) endo: Attack Y2 B2\n\n35) Simon: Trade G1 R1 B2\n\n36) endo: Attack R1 B2\n\n37) Simon: Trade G2 R2 B3\n\n38) endo: Sacrifice G3 Endo\nBuild G1 B2\nBuild G2 B2\nBuild R2 B2\nCatastrophe B2 G\n\n39) Simon: Build R3 B3\n\n40) endo: Sacrifice Y2 B2\nMove R1 B2 B3\nMove R2 B2 B3\nCatastrophe B3 R\n\n41) Simon: Trade G2 R2 B3\n\n42) endo: Trade B3 G3 Endo\n\n43) Simon: Trade G3 B3 Simon\n\n44) endo: Build R1 Endo\n\n45) Simon: Build G1 B3\n\n46) endo: Build G2 Endo\n\n47) Simon: Build G2 Simon\n\n48) endo: Discover G2 Endo G3 Stalk\n\n49) Simon: Trade G2 Y2 Simon\n\n50) endo: Build G2 Endo\n\n51) Simon: Build G2 Simon\n\n52) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Stalk\nBuild Y1 Endo\n\n53) Simon: Build Y1 Simon\n\n54) endo: Sacrifice Y1 Endo\nMove G3 Stalk B2\n\n55) Simon: Build R2 B3\n\n56) endo: Sacrifice G3 Endo\nBuild R3 Endo\nBuild R3 B2\nBuild R3 B2\n\n57) Simon: Build G3 Simon\n\n58) endo: Sacrifice G2 Stalk\nBuild G2 B2\nBuild G3 Endo\n\n59) Simon: Discover G2 Simon Y2 Y2\n\n60) endo: Sacrifice B2 Sheaf\nTrade R3 Y3 Endo\nTrade R3 Y3 B2\n\n61) Simon: Move B3 Simon Y2\n\n62) endo: Sacrifice Y3 Endo\nMove G2 B2 Simon\nMove G3 B2 Simon\nMove Y3 B2 Simon\nCatastrophe Simon G\n\n\tSimon: gg\n\nHomeworlds Online (SDG# 29103)\nVariants: &quot;Hard time&quot;\nStarted: 2016.1.25, Ended: 2016.1.27\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) Felix: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B G1 Wil\n\n8) Felix: Build G1 Felix\n\n9) wil: T G1 R1 Wil\n\n10) Felix: Build B2 Felix\n\n11) wil: B B2 Wil\n\n12) Felix: Trade B2 Y2 Felix\n\n13) wil: D B1 Wil G2 G2\n\n14) Felix: Build B2 Felix\n\n15) wil: B B2 Wil\n\n16) Felix: Discover B1 Felix Y1 Rim\n\n17) wil: B B3 G2\n\n18) Felix: Build B3 Felix\n\n19) wil: T B2 Y2 Wil\n\n20) Felix: Move G1 Felix Rim\n\n21) wil: S Y2 Wil\nM B1 G2 Rim\nM B1 Rim Felix\nC Felix B\n\twil: Whenever anyone trades for a transport ship you should look to see why...\n\n22) Felix: Build B1 Rim\n\n23) wil: B R1 Wil\n\tFelix: Sage advice, given too late!\n\twil: Not for the next game... Ya gotta touch the stove, feel the pain...to cement the lesson...or I could tell you if you wish and let you change your move...would that be preferable?\n\n24) Felix: Build B2 Rim\n\tFelix: Nah, I like to learn from my mistakes!\n\n25) wil: T B3 Y3 G2\n\n26) Felix: Move B1 Rim Felix\n\n27) wil: B R1 Wil\n\n28) Felix: Sacrifice B2 Rim\nTrade Y2 R2 Felix\nTrade G3 R3 Felix\n\n29) wil: M R1 Wil Felix\nC Felix R\n\tFelix: More firepower is always good, right? :)\n\twil: Lol...\n\n\nHomeworlds Online (SDG# 29105)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.26, Ended: 2016.1.27\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld G3 B1 Y3\n\n2) wil: H Y3 B2 G3\n\n3) Felix: Build Y1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade Y1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Sacrifice Y3 Felix\nDiscover B1 Felix Y2 Y2\nDiscover B1 Y2 Y1 Y1\nMove B1 Y1 Wil\nCatastrophe Wil Blue\n\n10) wil: B G1 Wil\n\twil: Interesting risk...well see how it play oit\n\n11) Felix: B B1 Felix\n\n12) wil: D G1 Wil B2 B2\n\n13) Felix: T B2 Y2 Felix\n\tFelix: I hope it pays off, but I have my doubts.\n\n14) wil: B G1 Wil\n\n15) Felix: Build Y1 Felix\n\n16) wil: B G1 Wil\n\n17) Felix: Discover Y1 Felix G2 Gambit\n\n18) wil: M G1 Wil Gambit\n\n19) Felix: Build Y1 Gambit\n\n20) wil: B G2 Gambit\n\n21) Felix: Move Y1 Gambit Wil\n\n22) wil: S G3 Wil\nB G2 Gambit\nB G3 B2\nB G3 Wil\n\n23) Felix: Move Y1 Gambit Wil\nCatastrophe Gambit Green\n\n24) wil: T G3 R3 B2\n\n25) Felix: Discover Y2 Felix G2 Oust\n\twil: All dicey...move by move\n\twil: Tiptoe, thru the tulips..\n\n26) wil: M G3 Wil B2\n\tFelix: Haha. I know, the last handful of moves have been so tense! \n\twil: Very nice..\n\n27) Felix: Move Y2 Oust Wil\nCatastrophe Wil Yellow\n\twil: This system is too pollutes from uae of fossil fuels and refi ing waste from petroleum products... We are moving on to a clean one rather than take care of our own..you may have it...it is now a superfund site\n\tFelix: I suppose I will just stay and clean up this mess. Another controlled burn ought to do it. It&#39;s unfortunate you were unable to evacuate your small construction vessel, but the loss will benefit the greater good of the galaxy&#39;s stability.\n\tFelix: Frankly I&#39;m surprised my risk paid off. I thought I was done for!\n\twil: This is where I wish we could backup.to move x and retry various endings...gg\n\twil: Good job cleaning up the mess.,.now the debris is propelling itself through the galaxy\n\n\nHomeworlds Online (SDG# 29120)\nVariants: &quot;Hard time&quot;\nStarted: 2016.1.27, Ended: 2016.2.4\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B1 G3\n\n2) wil: H Y3 B2 G3\n\tFelix: More! More! I hope you don&#39;t mind so many games against me. Few people make moves on here as regularly as you do, and playing against you is definitely helping me improve!\n\twil: More games...more games...start as many as you like...as long as the choice is shoveling out car spaces or playing...I&#39;ll play\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\tFelix: Definitely the better choice :) I work on a computer all day for my job, so this gives me a nice little break now and then.\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: D B1 Felix G2 Cintas\n\n10) wil: T B1 Y1 Wil\n\n11) Felix: Build G1 Felix\n\n12) wil: B Y1 Wil\n\n13) Felix: Trade G1 Y1 Felix\n\n14) wil: T Y1 R1 Wil\n\n15) Felix: Build G1 Felix\n\n16) wil: D B2 Wil G1 G1\n\n17) Felix: Trade B2 R2 Felix\n\n18) wil: B R1 Wil\n\n19) Felix: Discover G1 Felix B2 Efrit\n\n20) wil: M Y1 Wil G1\n\n21) Felix: Move R2 Felix Efrit\n\n22) wil: M B2 G1 Cintas\n\n23) Felix: B B1 Cintas\n\n24) wil: T B2 R2 Cintas\n\n25) Felix: Build G1 Felix\n\n26) wil: A B1 Cintas\n\n27) Felix: Build B2 Cintas\n\n28) wil: A B2 Cintas\n\n29) Felix: Build B3 Cintas\n\n30) wil: B G2 Wil\nC Cintas B\n\n31) Felix: S G3 Felix\nB G2 Efrit\nB G3 Efrit\nB G3 Felix\n\n32) wil: S G3 Wil\nB G3 Wil\nB Y1 G1\nB Y2 G1\n\n33) Felix: Trade G2 Y2 Efrit\n\n34) wil: S Y2 G1\nM Y1 G1 Cintas\nD Y1 G1 B2 B2\n\n35) Felix: Build Y2 Efrit\n\n36) wil: S G2 Wil\nB Y2 Cintas\nB Y3 B2\n\n37) Felix: Sacrifice Y2 Efrit\nMove G3 Efrit Felix\nMove G3 Felix Cintas\n\n38) wil: S Y2 Cintas\nM Y1 Cintas Felix\nM Y1 B2 Felix\nC Felix Y\n\n39) Felix: Trade G1 R1 Felix\n\n40) wil: D R1 Wil Y1 Y1\n\n41) Felix: Sacrifice R1 Felix\nAttack R2 Cintas\n\tFelix: Oops\n\n42) wil: B G1 Wil\n\n43) Felix: Build G1 Efrit\n\n44) wil: D G1 Wil Y1 Why1\n\n45) Felix: Move R2 Efrit Why1\n\n46) wil: B G2 Wil\n\n47) Felix: Attack G1 Why1\n\n48) wil: M Y3 B2 Why1\n\n49) Felix: Build G2 Why1\n\n50) wil: M G2 Wil Y1\n\n51) Felix: Move Y2 Efrit Why1\n\n52) wil: M Y3 Why1 Efrit\n\twil: Nice distraction\n\n53) Felix: Trade G1 Y1 Efrit\n\tFelix: I tried :)\n\n54) wil: S R1 Y1\nA G1 Efrit\n\twil: You did, and it was admirable, and I almost missed it.\n\n55) Felix: Sacrifice G2 Why1\nBuild Y2 Efrit\nBuild Y2 Efrit\nCatastrophe Efrit Yellow\n\n56) wil: B G1 Wil\n\n57) Felix: S G3 Cintas\nB G2 Felix\nB G3 Why1\nB Y1 Why1\n\n58) wil: T G3 Y3 Wil\n\n59) Felix: Trade G2 Y2 Felix\n\n60) wil: B R1 Wil\n\n61) Felix: Sacrifice Y2 Felix\nMove Y1 Why1 Wil\nMove Y2 Why1 Wil\nCatastrophe Wil Yellow\n\n62) wil: B G2 Wil\n\n63) Felix: M G3 Why1 Wil\n\tFelix: Ah, ah, ah, ah, stayin&#39; alive, stayin&#39; alive...\n\n64) wil: S G2 Y1\nB G2 Wil\nB G3 Efrit\nC Wil G\n\twil: I wish I was!\n\n65) Felix: M R2 Why1 Wil\n\n66) wil: S G1 Efrit\nB R1 Wil\nC Wil R\n\twil: Gg\n\n\tFelix: And you! I&#39;m surprised I recovered after you took out half my homeworld\n\twil: It was my mistake... One should never take out half without a plan in place for the first other half....impatience is a problem with this one...\n\twil: Self destruction is not allowed in this game.. I do like finding gapsin the programming\n\tFelix: So you can self-destruct through a catastrophe?\n\twil: Not always... I don&#39;t know the criteria... I just know I periodically get away with it...  But not always... I have also got away with evacuating or sacrificing...it is simply a slightly more satisfying end to a loss\n\tFelix: Yeah. You are the captain of your fate, and all :)\n\twil: That is disconcerting.... I miss blame...\n\nHomeworlds Online (SDG# 29135)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.27, Ended: 2016.2.1\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H G2 B1 R3\n\n2) Felix: Homeworld R3 G2 Y3 *\n\tFelix: Interesting open! I want to try a unique one too...\n\n3) wil: B R1 Wil\n\n4) Felix: Build Y1 Felix\n\n5) wil: T R1 B1 Wil\n\n6) Felix: Discover Y1 Felix G1 Petri\n\n7) wil: T B1 Y1 Wil\n\n8) Felix: Build Y1 Petri\n\n9) wil: B Y2 Wil\n\n10) Felix: B Y2 Felix\n\n11) wil: D Y1 Wil G3 G3\n\n12) Felix: Discover Y2 Felix B1 Algae\n\n13) wil: B Y2 Wil\n\n14) Felix: Move Y1 Petri G3\n\n15) wil: D Y2 Wil G3 Gee3\n\n16) Felix: Trade Y2 B2 Algae\n\n17) wil: B R1 Wil\n\n18) Felix: Sacrifice Y1 G3\nMove B2 Algae Felix\n\n19) wil: M Y1 G3 Petri\n\n20) Felix: D Y1 Petri G3 Dish\n\n21) wil: M R1 Wil Dish\n\n22) Felix: Build Y1 Felix\n\n23) wil: A Y1 Dish\n\n24) Felix: Trade Y1 R1 Felix\n\n25) wil: B R1 Wil\n\n26) Felix: Build B1 Felix\n\n27) wil: B R2 Wil\n\n28) Felix: M B2 Felix Petri\n\n29) wil: B R2 Dish\n\n30) Felix: Move R1 Felix Petri\n\n31) wil: S R1 Dish\nA R1 Petri\n\n32) Felix: Build B1 Felix\n\twil: Petri dish...one of my favorite unpublished pyramid games\n\n33) wil: M R2 Dish Petri\n\tFelix: I&#39;ve never played it.\n\tFelix: But it&#39;s going to be a part of the upcoming Pyramid Arcade!\n\twil: Yez...\n\n34) Felix: Build B2 Felix\n\n35) wil: A B2 Petri\n\n36) Felix: D B2 Felix Y1 Out\n\n37) wil: M R2 Wil Dish\n\n38) Felix: Trade B1 G1 Felix\n\n39) wil: B Y2 Petri\n\n40) Felix: Discover G1 Felix B1 Apophis\n\n41) wil: B Y3 Wil\n\n42) Felix: Build G1 Apophis\n\n43) wil: B Y3 Dish\n\n44) Felix: Build G2 Apophis\n\n45) wil: M Y2 Gee3 Apophis\n\n46) Felix: Sacrifice G2 Apophis\nBuild B2 Out\nBuild B3 Felix\n\n47) wil: B B3 Petri\n\n48) Felix: Trade B3 R3 Felix\n\n49) wil: S Y2 Wil\nM R2 Petri Felix\nM R1 Petri Felix\nC Felix R\n\n\twil: There is trouble... Right here in river city\n\twil: If he grows a yellow I kill them all...if he grows a blue I kill them... If he does nothing..I&#39;ll win the game...imminent danger...\n\tFelix: Doesn&#39;t look good. I&#39;m out of here!\n\nHomeworlds Online (SDG# 29086)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.29, Ended: 2016.2.4\nParticipants: Felix (S), random56 (N)\nWinner: Felix\n\n1) random56: Homeworld G3 B2 Y3\n\n2) Felix: Homeworld Y3 B1 G3\n\tFelix: Hey there. Good luck to you!\n\n3) random56: Build Y1 Random56\n\n4) Felix: B G1 Felix\n\n5) random56: Discover Y1 Random56 G1 Go39\n\n6) Felix: Discover G1 Felix B2 Rim\n\n7) random56: Build Y1 Go39\n\n8) Felix: Build G1 Felix\n\n9) random56: Build Y1 Go39\n\n10) Felix: Build G2 Rim\n\n11) random56: Move Y1 Go39 Rim\n\n12) Felix: Trade G2 R2 Rim\n\n13) random56: Build Y2 Random56\n\n14) Felix: A Y1 Rim\n\n15) random56: Trade Y2 R2 Random56\n\n16) Felix: B G2 Rim\n\n17) random56: Move R2 Random56 Go39\n\n18) Felix: B G2 Rim\n\n19) random56: Build Y2 Random56\n\n20) Felix: B Y2 Rim\n\n21) random56: Build R1 Go39\n\n22) Felix: Discover G2 Rim B1 Gate\n\n23) random56: Sacrifice Y2 Random56\nMove R2 Go39 Rim\nMove R2 Rim Gate\n\n24) Felix: S G3 Felix\nB G2 Rim\nB G3 Gate\nB G3 Felix\n\n25) random56: Attack G2 Gate\n\n26) Felix: S R2 Rim\nA R2 Gate\nA G2 Gate\n\n27) random56: Build Y2 Random56\n\n28) Felix: M Y1 Rim Gate\n\n29) random56: Move R1 Go39 Random56\n\n30) Felix: S G3 Felix\nB Y2 Rim\nB Y3 Gate\nB G3 Felix\n\n31) random56: Build R1 Random56\n\n32) Felix: S Y2 Rim\nM Y1 Gate Random56\nM Y3 Gate Random56\nC Random56 Yellow\n\n33) random56: Trade R1 Y1 Random56\n\n34) Felix: Sacrifice Y2 Rim\nMove G3 Gate Random56\nMove R2 Gate Random56\n\n35) random56: Build Y2 Random56\n\n36) Felix: Sacrifice R2 Random56\nAttack R1 Random56\nAttack Y2 Random56\n\n37) random56: Build Y2 Go39\n\tFelix: And I believe that&#39;s it. Good game. For next time, a good tip would be to try to not let me get all of one color (like green). If you get locked out of a particular color, it will make things very difficult for you. Cheers! And rematch me any time.\n\n38) Felix: Attack Y1 Random56\n\trandom56: Thanks for the tip,  I really wanna get better. And good game. \n\tFelix: I&#39;m not totally advanced myself, but I am happy to help you get better. Make sure you get all of the colors if possible. If you see that there is only one small of a particular color left, and you don&#39;t have that color yet, try to trade one of your smalls for it. That&#39;s a good general rule, but you shouldn&#39;t necessarily always do that, depending on the circumstances.\n\tFelix: As a beginner, it&#39;s also a good rule of thumb to always start with a large green ship. This allows you to set up what&#39;s called a &quot;factory&quot; which is what I have in my homeworld right now. Late in the game, you can sacrifice your G3, then rebuild it and build two other ships elsewhere. It&#39;s a great way to get an edge over your opponent.\n\tFelix: Also, using a small and medium for your homeworld is good as a beginner. This is called the &quot;banker&quot; setup and it allows you easier access to large stars that you can potentially trade in later for large ships. Finally, it&#39;s always a good idea to try to get a red ship whenever your opponent does. If he has a red ship and you do not, that means trouble!\n\n\nHomeworlds Online (SDG# 29153)\nVariants: &quot;Unrated&quot;\nStarted: 2016.1.31, Ended: 2017.3.15\nParticipants: wil (S), YsdkRichard (N)\nWinner: wil\n\n1) YsdkRichard: Homeworld G3 B2 R3\n\n2) wil: H Y3 B1 G3\n\n3) YsdkRichard: Build R1 Ysdkrichard\n\twil: An attack ship in my galaxy... This is a peaceful system....\n\tYsdkRichard: This is my first time playing lol\n\tYsdkRichard: This is my first time playing lol\n\tYsdkRichard: you should help me out with the commands lol. How do I know what the system name is?\n\tYsdkRichard: you should help me out with the commands lol. How do I know what the system name is?\n\n4) wil: B G1 Wil\n\tYsdkRichard: Oh yay I did it!\n\n5) YsdkRichard: Trade R1 Y1 Ysdkrichard\n\n6) wil: T G1 B1 Wil\n\n7) YsdkRichard: Build R1 Ysdkrichard\n\n8) wil: B B1 Wil\n\n9) YsdkRichard: Trade R1 G1 Ysdkrichard\n\twil: I am sorry....missed all your notes... First lesson....don&#39;t let the other guy monopolize any economy . \n\twil: I am sorry....missed all your notes... First lesson....don&#39;t let the other guy monopolize any economy . \n\twil: This is a great game ...lose about ten times and you&#39;ll begin to grasp it.\n\tYsdkRichard: okie thanks :)\n\n10) wil: D B1 Wil G2 G2\n\tKing: hi?\n\tKing: homeworld g3 b2 y3\n\twil: Howdy king...you&#39;ll have to start a new game to challenge\n\n\nHomeworlds Online (SDG# 29095)\nStarted: 2016.2.1, Ended: 2016.2.4\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\tFelix: Hello again :) Good luck!\n\n2) ts52: Homeworld B2 Y3 G3\n\tts52: Greetings! :) Have a good game!\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 Y1 Felix\n\n6) ts52: Build G1 Ts52\n\n7) Felix: Build Y1 Felix\n\n8) ts52: Discover G1 Ts52 B1 Gonzo\n\n9) Felix: Trade Y1 B1 Felix\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) Felix: Build Y2 Felix\n\n12) ts52: Build Y2 Ts52\n\n13) Felix: Trade Y1 R1 Felix\n\n14) ts52: Trade Y1 R1 Ts52\n\n15) Felix: Discover B1 Felix G2 Rim\n\n16) ts52: Build G1 Gonzo\n\n17) Felix: Build B1 Rim\n\n18) ts52: Move Y2 Ts52 Gonzo\n\n19) Felix: Build B2 Rim\n\n20) ts52: Build Y1 Gonzo\n\n21) Felix: Trade B2 Y2 Rim\n\n22) ts52: Discover G1 Gonzo Y3 Bigbird\n\n23) Felix: Discover B1 Rim G3 Bank\n\n24) ts52: Build G1 Ts52\n\n25) Felix: Build G2 Felix\n\n26) ts52: Build G2 Gonzo\n\n27) Felix: S G3 Felix\nB G3 Felix\nB B2 Bank\nB B2 Rim\n\n28) ts52: Discover Y2 Gonzo R2 Elmo\n\n29) Felix: Sacrifice G2 Felix\nBuild B3 Bank\nBuild B3 Rim\n\n30) ts52: Sacrifice G2 Gonzo\nBuild Y1 Elmo\nBuild Y3 Gonzo\n\n31) Felix: Trade B3 R3 Rim\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Bigbird\nBuild G3 Ts52\n\n33) Felix: Sacrifice Y2 Felix\nMove B3 Bank Gonzo\nMove R3 Rim Gonzo\n\n34) ts52: Move Y3 Gonzo Bank\n\n35) Felix: Sacrifice G3 Felix\nBuild B3 Gonzo\nBuild R1 Gonzo\nBuild R2 Felix\n\n36) ts52: Sacrifice Y2 Elmo\nMove Y3 Bank Elmo\nMove Y3 Elmo Felix\n\n37) Felix: S Y2 Rim\nM B3 Gonzo Ts52\nM B3 Gonzo Ts52\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild G3 Gonzo\n\n39) Felix: Sacrifice R3 Gonzo\nAttack G3 Ts52\nAttack R2 Ts52\nAttack R1 Ts52\n\n40) ts52: Trade G3 R3 Gonzo\n\n41) Felix: Attack G1 Ts52\n\n\tFelix: Thank you! Great game. \n\tFelix: Up for a rematch? I always am.\n\tts52: Always up for a rematch!\n\nHomeworlds Online (SDG# 29197)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.1, Ended: 2016.2.8\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\twil: There e is\n\n3) Felix: Build G1 Felix\n\tFelix: Hehe.\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Discover B2 Felix G2 Luno\n\n10) wil: T B2 Y2 Wil\n\n11) Felix: Build B2 Luno\n\n12) wil: B Y1 Wil\n\n13) Felix: Trade B2 Y2 Luno\n\n14) wil: D Y2 Wil G3 G3\n\n15) Felix: Build B2 Luno\n\n16) wil: T Y1 R1 Wil\n\n17) Felix: Trade B1 R1 Felix\n\n18) wil: M B1 Wil G3\n\n19) Felix: D B2 Luno Y3 Orbit\n\n20) wil: B G1 Wil\n\n21) Felix: Build G1 Felix\n\n22) wil: B Y1 G3\n\n23) Felix: Build Y1 Luno\n\n24) wil: T Y2 R2 G3\n\n25) Felix: Discover Y2 Luno G1 Brink\n\n26) wil: B G2 Wil\n\n27) Felix: S G3 Felix\nB G2 Felix\nB G3 Felix\nB Y2 Brink\n\n28) wil: S G3 Wil\nB G3 Wil\nB Y3 G3\nB B1 G3\n\n29) Felix: S G3 Felix\nB G3 Felix\nB Y3 Luno\nB B2 Orbit\n\n30) wil: S Y3 G3\nM G1 Wil Orbit\nM G1 Orbit Luno\nM G1 Luno Felix\nC Felix G\n\n31) Felix: Build B3 Luno\n\n32) wil: B Y3 G3\n\n33) Felix: Sacrifice Y2 Brink\nMove Y2 Brink G3\nMove Y1 Luno G3\nCatastrophe G3 Yellow\n\n34) wil: T B1 Y1 G3\n\twil: Why am I so blind sometimes?\n\n35) Felix: Move B3 Luno Felix\n\tFelix: I looked like easy prey :) I don&#39;t blame your eagerness!\n\n36) wil: B R1 Wil\n\n37) Felix: Trade B3 G3 Felix\n\n38) wil: D G2 Wil B3 B3\n\n39) Felix: Build R2 Felix\n\n40) wil: B G1 Wil\n\n41) Felix: Move Y3 Luno B3\n\n42) wil: B G1 B3\n\n43) Felix: Sacrifice R2 Felix\nAttack G2 B3\nAttack G1 B3\n\n44) wil: B R2 G3\n\n45) Felix: Sacrifice Y3 B3\nMove G1 B3 Wil\nMove G2 B3 Wil\nMove B2 Orbit Wil\nCatastrophe Wil Green\n\n\tFelix: Hullo. We noticed your system had an overabundance of construction technology, but your small and medium stars do not seem capable of supporting such growth. In order to help control your population and maintain stability in your sector, we had to remove some of your facilities from the area. I do hope you understand. We have left one of our conversion vessels in the area to aid in the clean up. They will also be inspecting your weaponry and potentially converting said weapons into dust. Still in the interest of maintaining stability and peace in your system. I do hope you understand and appreciate our neighborly interest.\n\twil: Uh..oh...\n\nHomeworlds Online (SDG# 28931)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.1, Ended: 2016.2.4\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29180)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.4, Ended: 2016.2.7\nParticipants: random56 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) random56: Homeworld Y1 B2 G3\n\tFelix: Good luck and let me know if you have any questions!\n\n3) Felix: Build G1 Felix\n\n4) random56: Build G1 Random56\n\n5) Felix: Trade G1 B1 Felix\n\n6) random56: Build G1 Random56\n\n7) Felix: Build G1 Felix\n\n8) random56: Discover G1 Random56 B3 Zal\n\n9) Felix: Discover G1 Felix B1 Ichor\n\n10) random56: Trade G1 R1 Random56\n\n11) Felix: Trade B1 R1 Felix\n\n12) random56: Build G1 Zal\n\n13) Felix: Build G2 Felix\n\n14) random56: Build G2 Random56\n\n15) Felix: Trade G2 B2 Felix\n\n16) random56: Build G2 Random56\n\n17) Felix: Build G2 Ichor\n\n18) random56: Build G3 Zal\n\n19) Felix: Build B1 Felix\n\n20) random56: Trade G1 Y1 Zal\n\n21) Felix: Build G1 Felix\n\n22) random56: Sacrifice G3 Zal\nBuild G3 Zal\nBuild Y1 Zal\nBuild Y2 Zal\n\n23) Felix: Trade G2 Y2 Ichor\n\n24) random56: Trade G2 B2 Random56\n\n25) Felix: Build Y3 Ichor\n\n26) random56: Discover Y1 Zal G2 Hco3\n\n27) Felix: Discover Y2 Ichor G2 Maia\n\n28) random56: Build Y3 Hco3\n\n29) Felix: Build Y3 Maia\n\trandom56: if i have a red ship in a system and you do not can you use the red power too? \n\n30) random56: Sacrifice Y3 Hco3\nMove B2 Random56 Zal\nMove B2 Zal Ichor\nMove B2 Ichor Felix\nCatastrophe Felix B\n\tFelix: No, I cannot. I can only use the powers of the ships that I own, or of the star itself. However, I CAN sacrifice a red ship from a different system and use a non-red to attack. For instance, I could sacrifice my r1 in my homeworld and attack with another ship in another system using that sacrifice action. Make sense?\n\trandom56: yes\r\n\n\n31) Felix: Sacrifice Y2 Maia\nMove G1 Ichor Zal\nMove G1 Felix Zal\nCatastrophe Zal Green\n\n32) random56: Discover Y1 Hco3 G3 Pco2\n\tFelix: Hey, nice move.\n\n33) Felix: Move Y3 Maia Pco2\n\n34) random56: Build G1 Random56\n\n35) Felix: Sacrifice Y3 Ichor\nMove G3 Felix Pco2\nMove G3 Pco2 Random56\nMove Y3 Pco2 Random56\nCatastrophe Random56 Green\n\n36) random56: Move Y1 Zal Random56\n\n37) Felix: Trade Y3 R3 Random56\n\n38) random56: Build Y2 Pco2\n\trandom56: Sorry, I am afraid I have lost but I am still trying to see a solution \n\n39) Felix: Attack R1 Random56\n\n40) random56: Move Y1 Pco2 Random56\n\tFelix: I think I got you, but it was a very close game! And it&#39;s always good to look hard for a way out. Sometimes there is one even when it seems like there isn&#39;t.\n\n41) Felix: Trade R3 Y3 Random56\nCatastrophe Random56 Yellow\n\tFelix: Very close. Feel free to challenge me again!\n\trandom56: Thanks for the game, I will\n\n\nHomeworlds Online (SDG# 29085)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.4, Ended: 2016.2.9\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tFelix: You too!\n\n4) Felix: Build G1 Felix\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build B1 Felix\n\n9) ts52: Trade G1 Y1 Ts52\n\n10) Felix: Trade B1 Y1 Felix\n\n11) ts52: Build Y2 Ts52\n\n12) Felix: Build Y2 Felix\n\n13) ts52: Move Y2 Ts52 Gonzo\n\n14) Felix: Discover Y2 Felix G2 Ichor\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Build G1 Felix\n\n17) ts52: Build G2 Gonzo\n\n18) Felix: Move G1 Felix Ichor\n\n19) ts52: Trade G2 R2 Gonzo\n\n20) Felix: Trade Y1 R1 Felix\n\n21) ts52: Build G2 Gonzo\n\n22) Felix: B G2 Felix\n\n23) ts52: Discover G2 Gonzo Y2 Bigbird\n\n24) Felix: Sacrifice G2 Felix\nBuild G2 Ichor\nBuild G3 Felix\n\n25) ts52: Move G1 Gonzo Ichor\nCatastrophe Ichor G\n\n26) Felix: Move G3 Felix Bigbird\n\n27) ts52: Build G1 Bigbird\n\n28) Felix: Move G3 Bigbird Gonzo\n\n29) ts52: Move R2 Gonzo Bigbird\n\n30) Felix: S R1 Felix\nA Y2 Gonzo\n\n31) ts52: Discover G2 Bigbird B3 Grover\n\n32) Felix: B G1 Gonzo\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Grover\nBuild G3 Ts52\n\n34) Felix: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y1 Gonzo\nBuild B1 Felix\n\n35) ts52: Move Y1 Ts52 Grover\n\n36) Felix: Sacrifice Y2 Gonzo\nMove G3 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 Green\n\tFelix: I think you may have missed that... Good game though!\n\tts52: Yep, totally missed it. Well played! Good game. Happy to play another any time.\n\n\nHomeworlds Online (SDG# 29236)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.7, Ended: 2016.3.1\nParticipants: Felix (S), random56 (N)\nWinner: Felix\n\n1) random56: Homeworld B1 Y2 G3\n\n2) Felix: H B3 G2 Y3\n\n3) random56: Build G1 Random56\n\n4) Felix: Build Y1 Felix\n\n5) random56: Build G1 Random56\n\n6) Felix: T Y1 G1 Felix\n\n7) random56: Discover G1 Random56 B3 A1c\n\n8) Felix: B G2 Felix\n\n9) random56: Sacrifice G3 Random56\nBuild G2 Random56\nBuild G3 A1c\nBuild G3 A1c\n\n10) Felix: Discover G2 Felix B1 Door\n\n11) random56: Trade G1 Y1 Random56\n\n12) Felix: Build Y1 Felix\n\n13) random56: Trade G1 Y1 A1c\n\n14) Felix: Move Y1 Felix Door\n\n15) random56: Sacrifice G3 A1c\nBuild G1 A1c\nBuild G1 A1c\nBuild G3 Random56\n\n16) Felix: Move G2 Door A1c\nCatastrophe A1c Green\n\n17) random56: Trade Y1 G1 A1c\n\n18) Felix: Build Y1 Felix\n\n19) random56: Build Y2 Random56\n\n20) Felix: M G1 Felix Door\n\n21) random56: Discover Y1 Random56 G3 Fio2\n\n22) Felix: Build Y2 Door\n\n23) random56: Sacrifice G3 Random56\nBuild Y3 Random56\nBuild Y3 Fio2\nBuild G1 A1c\n\n24) Felix: Build G2 Door\n\n25) random56: Discover Y2 Random56 G3 Aki\n\n26) Felix: Trade Y1 R1 Felix\n\n27) random56: Trade G2 R2 Random56\n\n28) Felix: Discover G2 Door B3 Gate\n\n29) random56: Build Y1 Aki\n\trandom56: I&#39;m sorry it took me so long\n\n30) Felix: Build G2 Door\n\n31) random56: Build G3 A1c\n\tFelix: That&#39;s okay. Better late than never!\n\n32) Felix: Move G1 Door A1c\nCatastrophe A1c Green\n\n33) random56: Discover Y1 Aki G1 Help\n\n34) Felix: Move Y2 Door Gate\n\n35) random56: Move Y1 Fio2 Help\n\n36) Felix: Move Y1 Door Gate\n\n37) random56: Trade Y3 R3 Random56\n\n38) Felix: Trade Y1 R1 Gate\n\n39) random56: Build Y1 Help\n\n40) Felix: Move R1 Gate Random56\n\n\nHomeworlds Online (SDG# 29152)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.8, Ended: 2016.2.14\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y2 B1 G3\n\n2) Felix: Homeworld B1 G2 B3 *\n\n3) wil: B G1 Wil\n\n4) Felix: Build B1 Felix\n\n5) wil: B G1 Wil\n\tFelix: These should both be fast games...\n\n6) Felix: Trade B3 G3 Felix\n\n7) wil: T G1 R1 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: B R1 Wil\n\n10) Felix: Trade B2 R2 Felix\n\n11) wil: D R1 Wil B3 B3\n\twil: Lol.,I didn&#39;t notice short uni\n\twil: And I think I already list the other one\n\n12) Felix: Build B2 Felix\n\tFelix: Yeah, I was a bit obnoxious by starting to small universe games. *shrug* I like to change things up a bit sometimes. And you may not have lost the other! I am very prone to mistakes :)\n\n13) wil: B R1 Wil\n\n14) Felix: Build R2 Felix\n\n15) wil: B R2 Wil\n\n16) Felix: Build R3 Felix\n\n17) wil: S G1 Wil\nB R3 B3\n\n18) Felix: T R3 Y3 Felix\n\n19) wil: T R1 Y1 B3\n\n20) Felix: Discover B2 Felix G3 Nomans\n\n21) wil: T R2 B2 Wil\n\n22) Felix: Build B2 Nomans\n\n23) wil: B G1 Wil\n\n24) Felix: B B3 Felix\n\n25) wil: T R3 B3 B3\n\n26) Felix: T B3 Y3 Felix\n\n27) wil: M G1 Wil B3\n\n28) Felix: S Y3 Felix\nM B1 Felix B3\nM B2 Nomans Felix\nM B2 Felix B3\nC B3 Blue\n\n29) wil: D B2 Wil Y3 Y3\n\n30) Felix: Move G3 Felix Y3\n\n31) wil: D B2 Y3 Y2 Y2\n\n32) Felix: Discover Y3 Felix B3 Fulcrum\n\n33) wil: B G1 Wil\n\n34) Felix: Trade R2 Y2 Felix\n\n35) wil: T G1 Y1 Wil\n\n36) Felix: Sacrifice Y2 Felix\nMove Y3 Fulcrum Wil\nMove G3 Y3 Wil\n\n37) wil: A G3 Wil\n\n38) Felix: Build R1 Felix\n\n39) wil: A Y3 Wil\n\twil: I think you missed one step...\n\twil: Did I miss something or did you need just a tad more patience?\n\tFelix: Dang it. Nope, you didn&#39;t miss anything. I just messed up. I didn&#39;t account for not being able to sacrifice my r2 at home...\n\n40) Felix: T R2 Y2 Felix\n\twil: Yez....can&#39;t sacrifice control of your homeworld to kill me... Your team would not exist before the attack would occur.\n\n41) wil: M Y3 Wil Nomans\n\n42) Felix: B Y1 Felix\n\n43) wil: D Y1 Wil B3 B3\n\n44) Felix: T Y2 G2 Felix\n\n45) wil: T G3 R3 Wil\n\tFelix: Yep... I knew that, but I didn&#39;t look carefully enough for it. FAtal mistake!\n\n46) Felix: T B2 Y2 Nomans\n\n47) wil: S Y3 Nomans\nM G3 Wil B3\nM G3 B3 Felix\nP\n\twil: Yes these are the moments I wish we could say, Hey lets finish this game, buy back up to move 20 and play again.\n\n48) Felix: S Y2 Nomans\nM R1 Felix B3\nM R1 B3 Wil\nC Wil Red\n\tFelix: Yeah, same\n\n\tFelix: We both made mistakes I guess. Good game! Very intense!\n\nHomeworlds Online (SDG# 29217)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.8, Ended: 2016.2.14\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 Y1 G3 *\n\n2) wil: H G3 Y1 Y3 *\n\tFelix: I feel like trying some new things :)\n\twil: Oh boy...\n\n3) Felix: Build G1 Felix\n\n4) wil: B Y1 Wil\n\n5) Felix: Discover G1 Felix B2 Zimmer\n\n6) wil: M Y1 Wil Zimmer\n\n7) Felix: Trade G1 R1 Zimmer\n\n8) wil: D Y1 Zimmer G3 G3\n\n9) Felix: Build G1 Felix\n\n10) wil: B Y2 G3\n\n11) Felix: M G1 Felix Zimmer\n\n12) wil: M Y2 G3 Zimmer\n\n13) Felix: B R1 Zimmer\n\n14) wil: T Y2 R2 Zimmer\n\n15) Felix: Build R2 Zimmer\nCatastrophe Zimmer Red\n\n16) wil: B Y2 Wil\n\n17) Felix: Build G1 Zimmer\n\n18) wil: B Y2 G3\n\n19) Felix: B G1 Felix\n\n20) wil: M Y2 Wil Zimmer\n\n21) Felix: D G1 Felix B2 Duluth\n\n22) wil: T Y2 R2 Zimmer\n\n23) Felix: B G2 Duluth\n\n24) wil: A G1 Zimmer\n\n25) Felix: Build G2 Felix\n\n26) wil: A G1 Zimmer\n\n27) Felix: Discover G2 Felix B2 Alazar\n\n28) wil: M Y1 G3 Zimmer\n\n29) Felix: Trade G2 Y2 Duluth\n\tFelix: It doesn&#39;t look good for me!\n\twil: It does in the other game\n\n30) wil: B Y2 G3\n\n31) Felix: Build Y3 Duluth\n\n32) wil: B Y3 Zimmer\n\n33) Felix: B G2 Alazar\n\n34) wil: T Y3 B3 Zimmer\n\n35) Felix: M Y2 Duluth Wil\n\n36) wil: S Y2 G3\nM B3 Zimmer Wil\nM Y3 Wil Alazar\n\n37) Felix: S G2 Alazar\nB Y2 Wil\nB Y3 Wil\nC Wil Yellow\n\n38) wil: T G1 B1 Zimmer\n\n39) Felix: S G2 Alazar\nB G1 Duluth\nB G2 Felix\n\n40) wil: B G2 Zimmer\n\n41) Felix: S Y3 Duluth\nM G1 Duluth Wil\nM G1 Duluth Wil\nM G2 Felix Wil\nC Wil Green\n\n\twil: Sweet\n\tFelix: You have trained me well, Sensei!\n\nHomeworlds Online (SDG# 29216)\nStarted: 2016.2.10, Ended: 2016.2.24\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 Y1 Ts52\n\tFelix: And here we go again. Have fun!\n\tts52: Thanks! You too!\n\n6) Felix: T G1 Y1 Felix\n\n7) ts52: Build Y2 Ts52\n\n8) Felix: B Y2 Felix\n\n9) ts52: Discover Y1 Ts52 G1 Kermit\n\n10) Felix: T Y1 B1 Felix\n\n11) ts52: Build Y1 Ts52\n\n12) Felix: Discover Y2 Felix G2 Bereth\n\n13) ts52: Build G1 Ts52\n\n14) Felix: Build B1 Felix\n\n15) ts52: Trade Y1 B1 Ts52\n\n16) Felix: Move B1 Felix Bereth\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Felix: Trade B1 R1 Felix\n\n19) ts52: Trade G1 R1 Ts52\n\n20) Felix: Build G1 Felix\n\n21) ts52: Move Y2 Ts52 Kermit\n\n22) Felix: D G1 Felix B2 Jogrit\n\n23) ts52: Trade Y2 R2 Kermit\n\n24) Felix: Build G1 Felix\n\n25) ts52: Build G2 Ts52\n\n26) Felix: Sacrifice G3 Felix\nBuild G2 Jogrit\nBuild G3 Jogrit\nBuild G3 Felix\n\n27) ts52: Discover G2 Ts52 Y1 Bigbird\n\n28) Felix: Sacrifice G3 Jogrit\nBuild G3 Felix\nBuild Y2 Bereth\nBuild B1 Bereth\n\n29) ts52: Build Y2 Kermit\n\n30) Felix: Trade G3 Y3 Felix\n\n31) ts52: Build G3 Ts52\n\n32) Felix: S Y2 Bereth\nM G1 Jogrit Bigbird\nM G1 Bigbird Ts52\n\n33) ts52: Trade G3 R3 Ts52\n\n34) Felix: S G2 Jogrit\nB G2 Ts52\nB G3 Ts52\nC Ts52 Green\n\n35) ts52: Trade R1 G1 Ts52\n\n36) Felix: Discover G1 Felix Y2 Jigrit\n\n37) ts52: Build Y3 Kermit\n\n38) Felix: Move Y2 Bereth Kermit\nCatastrophe Kermit Yellow\n\n39) ts52: Build B2 Kermit\n\n40) Felix: Trade B1 Y1 Bereth\n\n41) ts52: Trade B2 Y2 Kermit\n\n42) Felix: Build G2 Felix\n\n43) ts52: Build G3 Ts52\n\n44) Felix: S G3 Felix\nB G3 Felix\nB Y2 Felix\nB Y3 Bereth\n\n45) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild R1 Ts52\n\n46) Felix: M Y3 Bereth Kermit\n\n47) ts52: Move R2 Kermit Bereth\n\n48) Felix: M Y3 Felix Bereth\n\n49) ts52: Sacrifice Y2 Kermit\nMove R2 Bereth Bigbird\nDiscover B1 Kermit Y2 Zoe\n\n50) Felix: S G3 Felix\nB G3 Felix\nB B1 Bereth\nB R1 Felix\n\n51) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Zoe\nBuild R2 Bigbird\n\n52) Felix: M R1 Felix Bereth\n\n53) ts52: Move R2 Bigbird Jigrit\n\n54) Felix: Sacrifice G3 Felix\nBuild R2 Bereth\nBuild R3 Felix\nBuild G3 Jigrit\n\n55) ts52: Build R3 Bigbird\n\n56) Felix: Sacrifice R1 Felix\nAttack R2 Jigrit\n\tFelix: I thought I saw a better move, but then I decided it wasn&#39;t better, so I made the same move, haha.\n\tts52: Heh, no problem.\n\n57) ts52: Move R3 Bigbird Zoe\n\n58) Felix: Sacrifice Y2 Felix\nMove R1 Bereth Kermit\nMove G1 Jigrit Kermit\n\n59) ts52: Trade B2 Y2 Zoe\n\n60) Felix: Sacrifice Y3 Bereth\nMove R2 Jigrit Kermit\nMove R2 Kermit Ts52\nMove R1 Kermit Ts52\nCatastrophe Ts52 Red\n\n61) ts52: Trade G3 R3 Ts52\n\n62) Felix: Sacrifice G3 Jigrit\nBuild G3 Felix\nBuild Y2 Kermit\nBuild Y3 Bereth\n\n63) ts52: Sacrifice G3 Bigbird\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B2 Zoe\n\n64) Felix: Move G1 Kermit Ts52\n\n65) ts52: Discover G3 Ts52 R1 Elmo\n\n66) Felix: Sacrifice Y3 Kermit\nMove Y1 Bereth Kermit\nMove Y1 Kermit Zoe\nMove Y2 Kermit Zoe\nCatastrophe Zoe Yellow\n\n67) ts52: Attack G1 Ts52\n\n68) Felix: Sacrifice G3 Felix\nBuild G1 Felix\nBuild Y1 Bereth\nBuild G3 Felix\n\n69) ts52: Trade G1 B1 Ts52\n\n70) Felix: D B1 Bereth G1 Ocelot\n\n71) ts52: Move B1 Ts52 Bigbird\n\n72) Felix: M Y1 Bereth Ocelot\n\n73) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild B2 Bigbird\nBuild R1 Bigbird\n\n74) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Bereth\nBuild B3 Ocelot\n\n75) ts52: Trade B2 Y2 Bigbird\n\n76) Felix: Sacrifice G3 Felix\nBuild Y2 Ocelot\nBuild Y2 Ocelot\nBuild Y3 Bereth\n\n77) ts52: Sacrifice G3 Bigbird\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B2 Bigbird\n\n78) Felix: Sacrifice Y3 Bereth\nMove Y1 Ocelot Ts52\nMove Y2 Ocelot Ts52\nMove Y2 Ocelot Ts52\nCatastrophe Ts52 Yellow\n\n79) ts52: Move G3 Bigbird Bereth\n\n80) Felix: Sacrifice Y3 Bereth\nMove B3 Ocelot Ts52\nMove B1 Ocelot Ts52\nMove B1 Bereth Felix\n\n81) ts52: Sacrifice R3 Ts52\nAttack B3 Ts52\nAttack B1 Ts52\nAttack R2 Bereth\n\n82) Felix: Move B1 Felix Ts52\nCatastrophe Ts52 Blue\n\n\tFelix: Really close one! Great game. I had fun!\n\tts52: D&#39;oh, I missed that one. Very good game! Thanks!\n\nHomeworlds Online (SDG# 28963)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.10, Ended: 2016.3.14\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B2 R1 G3\n\n2) Felix: H Y3 B2 G3\n\tSimon: Hi again, have fun :)\n\tFelix: Hello! Thanks, you too!\n\n3) Simon: Build G1 Simon\n\n4) Felix: B G1 Felix\n\n5) Simon: Trade G1 B1 Simon\n\n6) Felix: Trade G1 R1 Felix\n\n7) Simon: Build G1 Simon\n\n8) Felix: B R1 Felix\n\n9) Simon: Trade G3 R3 Simon\n\n10) Felix: T R1 B1 Felix\n\n11) Simon: Build R1 Simon\n\n12) Felix: Build R2 Felix\n\n13) Simon: Trade R3 Y3 Simon\n\n14) Felix: T R2 Y2 Felix\n\n15) Simon: Discover B1 Simon G3 G3\n\n16) Felix: Discover B1 Felix G1 Rim\n\n17) Simon: Build R2 Simon\n\n18) Felix: Build R2 Felix\n\n19) Simon: Move R2 Simon G3\n\n20) Felix: Discover R2 Felix Y1 Spawn\n\n21) Simon: Build Y1 Simon\n\n22) Felix: Sacrifice G3 Felix\nBuild R2 Felix\nBuild R3 Felix\nBuild R3 Spawn\n\n23) Simon: Build R3 G3\n\n24) Felix: T R3 G3 Felix\n\n25) Simon: Trade R2 Y2 G3\n\n26) Felix: Move R2 Felix Rim\n\n27) Simon: Build Y1 G3\n\n28) Felix: Move Y2 Felix Rim\n\n29) Simon: Discover R1 Simon B3 B3\n\n30) Felix: Build G1 Felix\n\n31) Simon: Build G2 Simon\n\n32) Felix: Move R2 Spawn B3\n\n33) Simon: Sacrifice G2 Simon\nBuild R2 G3\nBuild R3 B3\n\n34) Felix: Build Y2 Rim\n\n35) Simon: Discover Y1 G3 G2 G2\n\n36) Felix: Discover Y2 Rim Y3 Stow\n\n37) Simon: Sacrifice R1 B3\nAttack R2 B3\n\n38) Felix: Build R1 Rim\n\n39) Simon: Build G2 Simon\n\n40) Felix: Sacrifice Y2 Stow\nMove R1 Rim G3\nMove R2 Rim G3\nCatastrophe G3 Red\n\n41) Simon: Sacrifice G2 Simon\nBuild Y2 G2\nBuild Y3 G3\n\n42) Felix: Move R3 Spawn G2\n\n43) Simon: Sacrifice Y1 G2\nMove Y2 G2 B3\n\n44) Felix: Build Y1 Rim\n\n45) Simon: Build G2 Simon\n\n46) Felix: Discover G1 Felix B1 Cassa\n\n47) Simon: Move G2 Simon B3\n\n48) Felix: D Y2 Rim G3 Slit\n\n49) Simon: Build Y1 B3\n\n50) Felix: B G2 Felix\n\n51) Simon: Move R2 B3 Rim\n\n52) Felix: Move Y1 Rim Slit\n\n53) Simon: Attack B1 Rim\n\n54) Felix: M Y1 Slit Simon\n\n55) Simon: Discover Y1 Simon R3 R3\n\n56) Felix: D Y1 Simon B3 Slat\n\n57) Simon: Build B2 G3\n\n58) Felix: S Y1 Slat\nM R3 G2 Rim\n\n59) Simon: Build R1 Rim\n\n60) Felix: Attack B1 Rim\n\n61) Simon: Build R2 Rim\nCatastrophe Rim R\n\n62) Felix: Sacrifice G3 Felix\nBuild G2 Cassa\nBuild G3 Felix\nBuild B3 Rim\n\n63) Simon: Build Y1 Simon\n\n64) Felix: M Y2 Slit Rim\n\n65) Simon: Build G3 B3\n\n66) Felix: Move B3 Rim R3\n\n67) Simon: Discover Y1 R3 R1 R1\n\n68) Felix: S G3 Felix\nB G3 Felix\nB R2 Felix\nB B3 Rim\n\n69) Simon: Build R2 B3\n\n70) Felix: Move R2 Felix Rim\n\n71) Simon: Move G3 B3 R1\n\n72) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Felix\nBuild R3 Rim\n\n73) Simon: Move G2 B3 R1\n\n74) Felix: Move R3 Rim B3\n\n75) Simon: Sacrifice R2 B3\nAttack R3 B3\nPass\n\n76) Felix: B R2 Rim\n\tFelix: Oh, nicely done!\n\n77) Simon: Move R3 B3 Cassa\n\n78) Felix: M B1 Rim R3\n\tSimon: hnn &gt;_&gt; the special defense against red\n\tFelix: Amazingly, I hadn&#39;t seen that defense used until now. It&#39;s obvious in retrospect. I have learned!\n\n79) Simon: Move Y3 G3 Cassa\n\n80) Felix: M B3 Rim G3\n\n81) Simon: Sacrifice Y3 Simon\nMove Y3 Cassa Felix\nMove G3 R1 Felix\nMove G2 R1 Felix\nCatastrophe Felix G\n\n82) Felix: Sacrifice Y2 Rim\nMove R2 Rim Felix\nMove R2 Rim Felix\n\n83) Simon: Pass\nCatastrophe Felix R\n\tFelix: Good game :)\n\tSimon: gg!\n\n\nHomeworlds Online (SDG# 29104)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.10, Ended: 2016.3.2\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) endo: Homeworld B1 Y3 G3\n\tFelix: Hello again! Still trying to sharpen my skills.... I hope you have fun!\n\n3) Felix: Build G1 Felix\n\tendo: Hey, sorry for the late response. I&#39;m certainly up for another game of Homeworlds, as I&#39;m not really overflowing with Homeworlds matches at the moment :) Amazons, on the other hand...\n\n4) endo: Build G1 Endo\n\tFelix: No problem! I need to play more Amazons. I tried it once and got trashed!\n\n5) Felix: T G1 B1 Felix\n\n6) endo: Trade G1 B1 Endo\n\n7) Felix: Build B2 Felix\n\n8) endo: Build B2 Endo\n\n9) Felix: Discover B2 Felix G1 Rim\n\n10) endo: Discover B1 Endo Y2 Site\n\n11) Felix: T B1 R1 Felix\n\n12) endo: Build B1 Endo\n\n13) Felix: Build R1 Felix\n\n14) endo: Discover B1 Endo G2 Topos\n\n15) Felix: Trade G3 Y3 Felix\n\tFelix: I see where this is going. I think I&#39;ve already messed up pretty badly...\n\n16) endo: Build G1 Endo\n\n17) Felix: B B2 Rim\n\n18) endo: Build B3 Topos\n\tendo: Whoops... just realized you have a red sacrifice, so I can&#39;t do that just yet :)\r\n\r\nGetting the reds was dangerous. No reds were gone from the bank yet, and since medium blues are available, there was no way for you to control red (which would be very powerful if you could do it, hovewer). Getting into the red economy a bit later in the game creates threats your opponent needs to respond to (typically by getting red himself), but here you weren&#39;t in range (no yellow sacrifices, no yellow on your G1 star), so I could continue creating more blue build capacity for myself. Being able to build a lot of ships in a color in which the large ships are going to be exposed in the bank is the main goal of the early game (and usually very useful later as well). I strongly believe Homeworlds is a first-player win with optimal play (draws are rare, and I don&#39;t think getting to see your opponent&#39;s homeworld choice before making yours can win you the game). That means you have to be extremely careful to make the moves that make the greatest difference, since throwing away even one move effectively makes your opponent the one going first.\n\tendo: Oh, and another thing: By trading away the last ship of a color on a star you lose your build capacity in that color on that star. Even if you get a new color, that&#39;s inferior to trading away one of two (or three) ships of the same color on the same star. So, in general, you should first build, then trade (two moves used, two colors available on that star), rather than trading before building (two moves used, but only one color available). In this case, even though red is a better color to build at your homeworld (because of the blue star), I didn&#39;t have immediate catastrophe threats, so you shouldn&#39;t have given up the blue ship there just yet. Continuing this logic, discovering new stars when you are supposed to get in some new color is something to avoid. It uses up TWO moves - one for building the ship you discover with, and another for the discovery itself. After the discovery, you are forced to either make a trade that does not increase the number of your color accesses (counting the same color on different stars separately), or risk giving your opponent a monopoly. That didn&#39;t happen in this game (blue was the color being contested, so splitting your blues was definitely correct), but see the initial moves in my ongoing ladder game against Simon for an example: http://superdupergames.org/?page=archive_play&amp;gid=29118\n\tFelix: Wow, thanks so much for the detailed tips! I appreciate the help a lot. :) I&#39;ll keep that in mind in future and maybe have a better shot!\n\n19) Felix: Trade B2 Y2 Rim\n\n20) endo: Trade B3 R3 Topos\n\n21) Felix: Trade R1 G1 Felix\n\n22) endo: Trade G1 Y1 Endo\n\n23) Felix: Build Y1 Felix\n\n24) endo: Move Y1 Endo Topos\n\n25) Felix: Trade Y3 G3 Felix\n\n26) endo: Move R3 Topos Rim\n\n27) Felix: Sacrifice Y2 Rim\nMove B2 Rim Site\nMove B2 Site Endo\n\n28) endo: Sacrifice R3 Rim\nAttack B2 Endo\nPass\nPass\n\n29) Felix: Discover G3 Felix Y1 Flow\n\n30) endo: Trade B2 R2 Endo\n\n31) Felix: Build Y2 Felix\n\n32) endo: Build Y3 Topos\n\n33) Felix: Discover Y2 Felix G1 Oust\n\n34) endo: Discover Y1 Topos Y3 Germ\n\n35) Felix: B R1 Felix\n\n36) endo: Build B2 Topos\n\n37) Felix: Move G3 Flow Felix\n\n38) endo: Sacrifice G3 Endo\nBuild B2 Site\nBuild B3 Endo\nBuild B3 Site\n\n\tFelix: I didn&#39;t do well at all. :) Time to keep practicing! Thanks for the tips and good game.\n\nHomeworlds Online (SDG# 29218)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.10, Ended: 2016.2.20\nParticipants: zmehaffey (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tzmehaffey: homeworld G3, B1\n\n2) zmehaffey: H Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) zmehaffey: B G1 Zmehaffey\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) zmehaffey: D G1 Zmehaffey B2 Hornet\n\n7) SilentTitan: Build Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 29272)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.10, Ended: 2017.3.15\nParticipants: wil (S), zmehaffey (N)\nWinner: wil\n\n1) zmehaffey: Homeworld B3 Y2 G3\n\n2) wil: H B3 Y1 G3\n\twil: Ty 4 da game...gl\n\n3) zmehaffey: B G1 Zmehaffey\n\n4) wil: B G1 Wil\n\n5) zmehaffey: D G1 Zmehaffey Y1 Hornet\n\n6) wil: T G1 Y1 Wil\n\n7) zmehaffey: B G1 Hornet\n\n8) wil: B Y2 Wil\n\n9) zmehaffey: B G1 Zmehaffey\n\n10) wil: D Y1 Wil B2 B2\n\n11) zmehaffey: D G1 Hornet B2 Fig\n\n12) wil: S G3 Wil\nB Y2 B2\nB Y3 B2\nB Y3 Wil\n\n13) zmehaffey: B G2 Hornet\n\n14) wil: T Y3 G3 Wil\n\n\nHomeworlds Online (SDG# 29304)\nStarted: 2016.2.10, Ended: 2016.2.11\nParticipants: Felix (S), zmehaffey (N)\nWinner: zmehaffey\n\n1) zmehaffey: Homeworld B3 Y2 G3\n\n2) Felix: H R3 B1 G3\n\n3) zmehaffey: Build G1 Zmehaffey\n\n4) Felix: B G1 Felix\n\n5) zmehaffey: Trade G1 R1 Zmehaffey\n\n6) Felix: T G1 Y1 Felix\n\tFelix: Hey there sexy pants\n\n7) zmehaffey: Build G1 Zmehaffey\n\n8) Felix: B Y1 Felix\n\n9) zmehaffey: Discover G1 Zmehaffey B1 Brony\n\n10) Felix: D Y1 Felix G2 Butts\n\n11) zmehaffey: Build G1 Brony\n\n12) Felix: B Y1 Felix\n\n13) zmehaffey: B G1 Zmehaffey\n\n14) Felix: B G2 Felix\n\n15) zmehaffey: S G3 Zmehaffey\nB G2 Brony\nB G3 Zmehaffey\nB G3 Zmehaffey\n\n16) Felix: B Y2 Butts\n\n17) zmehaffey: T G2 Y2 Brony\n\n18) Felix: B Y3 Felix\n\n19) zmehaffey: D G3 Zmehaffey R1 Harlem\n\n20) Felix: T Y1 B1 Felix\n\n21) zmehaffey: S G3 Zmehaffey\nB G2 Harlem\nB G3 Zmehaffey\nB R1 Zmehaffey\n\n22) Felix: M B1 Felix Butts\n\tzmehaffey: I just seen your flattering sexy pants statement \n\n23) zmehaffey: M Y2 Brony Butts\n\tFelix: I meant every word :) and you are whipping my butt so far.\n\n24) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Butts\nBuild Y3 Felix\nCatastrophe Butts Yellow\n\tzmehaffey: I feel like this might have been a bad idea. I will have no life for the next two weeks... lol\n\tFelix: Good, good.... mwahaha. My evil plan is working. Just remember, all good things in moderation! You&#39;re only allowed to play it while you&#39;re not working or loving on your wife. I work on a computer all day, so I have an excuse to play all the time :)\n\n25) zmehaffey: T G1 Y1 Brony\n\n26) Felix: Trade Y3 R3 Felix\n\n27) zmehaffey: B Y1 Brony\n\n28) Felix: Move R3 Felix Butts\n\n29) zmehaffey: D Y1 Brony B3 Vince\n\n30) Felix: Move Y3 Felix Butts\n\n31) zmehaffey: B Y2 Brony\n\n32) Felix: Discover G2 Felix B2 Pony\n\n33) zmehaffey: B G1 Brony\n\n34) Felix: Move Y3 Butts Brony\n\n35) zmehaffey: S G3 Harlem\nB G3 Harlem\nB Y2 Brony\nB Y3 Vince\nC Brony Y\n\n36) Felix: Build B2 Butts\n\n37) zmehaffey: T Y3 R3 Vince\n\n38) Felix: Trade B2 Y2 Butts\n\n39) zmehaffey: S G3 Harlem\nB G3 Harlem\nB R2 Vince\nB Y1 Vince\n\n40) Felix: Sacrifice G3 Felix\nBuild G3 Pony\nBuild Y2 Butts\nBuild Y3 Felix\n\n41) zmehaffey: M R2 Vince Harlem\n\n42) Felix: Sacrifice G3 Pony\nBuild G3 Pony\nBuild B2 Butts\nBuild B2 Butts\n\n43) zmehaffey: M R3 Vince Pony\n\n44) Felix: Sacrifice R3 Butts\nAttack R3 Pony\nPass\nPass\n\n45) zmehaffey: M Y1 Vince Harlem\n\n46) Felix: Move Y2 Butts Brony\n\n47) zmehaffey: S G3 Harlem\nB G3 Harlem\nB Y3 Harlem\nB Y3 Vince\n\n48) Felix: Move B2 Butts Brony\n\n49) zmehaffey: T Y3 R3 Vince\n\n50) Felix: Trade B2 R2 Butts\n\n51) zmehaffey: M R3 Vince Butts\n\n52) Felix: Sacrifice R2 Butts\nAttack G1 Brony\nAttack G1 Brony\n\n53) zmehaffey: S R2 Harlem\nA B1S Butts\nA Y2S Butts\n\n54) Felix: Build Y3 Brony\n\n55) zmehaffey: S Y3 Harlem\nM Y2 Butts Felix\nM Y1 Vince Butts\nM Y1 Butts Felix\nC Felix Y\n\n\nHomeworlds Online (SDG# 29291)\nStarted: 2016.2.10, Ended: 2016.3.22\nParticipants: zmehaffey (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) zmehaffey: H G3 Y1 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tzmehaffey: You as well!\n\n4) zmehaffey: B B1 Zmehaffey\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) zmehaffey: B B1 Zmehaffey\n\n7) ts52: Build Y1 Ts52\n\n8) zmehaffey: D B1 Zmehaffey G2 Hornet\n\n9) ts52: Discover Y1 Ts52 G1 Kermit\n\n10) zmehaffey: B B1 Hornet\n\n11) ts52: Build Y2 Ts52\n\n12) zmehaffey: B B2 Zmehaffey\n\n13) ts52: Trade Y2 B2 Ts52\n\n14) zmehaffey: B B3 Hornet\n\n15) ts52: Build B3 Ts52\n\n16) zmehaffey: T B2 Y2 Zmehaffey\n\n17) ts52: Move B3 Ts52 Kermit\n\n18) zmehaffey: T B3 G3 Hornet\n\n19) ts52: Build Y2 Kermit\n\n\nHomeworlds Online (SDG# 29311)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.11, Ended: 2016.2.24\nParticipants: Felix (S), zmehaffey (N)\nWinner: Felix\n\n1) zmehaffey: H B2 Y1 G3\n\n2) Felix: H B1 Y3 G3\n\n3) zmehaffey: B G1 Zmehaffey\n\n4) Felix: Build G1 Felix\n\n5) zmehaffey: T G3 R3 Zmehaffey\n\n6) Felix: Trade G1 B1 Felix\n\n7) zmehaffey: B G1 Zmehaffey\n\n8) Felix: Build B1 Felix\n\n9) zmehaffey: D G1 Zmehaffey Y3 Hornet\n\n10) Felix: Discover B1 Felix G2 Turtle\n\n11) zmehaffey: B R1 Zmehaffey\n\n12) Felix: Build B2 Turtle\n\n13) zmehaffey: B G1 Hornet\n\n14) Felix: Build B2 Felix\n\n15) zmehaffey: B G2 Zmehaffey\n\n16) Felix: B B3 Turtle\n\n17) zmehaffey: T R3 B3 Zmehaffey\n\n18) Felix: T B2 Y2 Turtle\n\n19) zmehaffey: B G2 Hornet\n\n20) Felix: B G3 Felix\n\n21) zmehaffey: B G3 Zmehaffey\n\n22) Felix: D B1 Turtle R3 Rage\n\n23) zmehaffey: M G3 Zmehaffey Rage\n\n24) Felix: S G3 Felix\nB G3 Felix\nB B2 Rage\nB B3 Turtle\n\n25) zmehaffey: A B2 Rage\n\n26) Felix: T B3 R3 Turtle\n\n27) zmehaffey: S G3 Rage\nB G3 Zmehaffey\nB B3 Zmehaffey\nB R1 Zmehaffey\n\n28) Felix: S Y2 Turtle\nM B1 Rage Zmehaffey\nM R3 Turtle Hornet\nC Zmehaffey Blue\n\n29) zmehaffey: D G2 Hornet Y2 Killer\n\tFelix: Boom :)\n\n30) Felix: Trade B2 Y2 Felix\n\n31) zmehaffey: M G1 Zmehaffey Rage\n\n32) Felix: Attack G1 Hornet\n\n33) zmehaffey: S G3 Zmehaffey\nB G3 Zmehaffey\nB B1 Rage\nB R1 Zmehaffey\n\n34) Felix: S Y2 Felix\nM R3 Hornet Zmehaffey\nM G1 Hornet Zmehaffey\nC Zmehaffey Red\n\n35) zmehaffey: M G2 Zmehaffey Rage\n\tFelix: I have you now.\n\n36) Felix: S G3 Felix\nB G3 Zmehaffey\nB B2 Turtle\nPass\n\n\n\nHomeworlds Online (SDG# 29302)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.11, Ended: 2016.2.14\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\tFelix: Have fun!\n\n\nHomeworlds Online (SDG# 29320)\nStarted: 2016.2.12, Ended: 2016.4.28\nParticipants: Nupanick (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y1 B2 G3\n\n2) Nupanick: Homeworld B1 G3 Y3\n\tnycavri: Let&#39;s see if I remember how to do this . . .\n\tnycavri: TaGG!\n\n3) nycavri: Build G1 Nycavri\n\tNupanick: Okay! Also, what&#39;s TaGG mean?\n\tnycavri: It&#39;s my toast, &quot;To a Good Game!&quot;\n\n4) Nupanick: Build Y1 Nupanick\n\n5) nycavri: D G1 Nycavri Y3 Deacon\n\n6) Nupanick: Trade Y1 R1 Nupanick\n\tNupanick: What&#39;s deacon mean?\n\n7) nycavri: B G1 Nycavri\n\tnycavri: My first 4 systems will be Deacon, May, Mercury and Taylor . . .\n\n8) Nupanick: Trade R1 G1 Nupanick\n\n9) nycavri: B G2 Deacon\n\tNupanick: Aw, hell, I can&#39;t believe I almost just got locked out of green.\n\tNupanick: Aw, hell, I can&#39;t believe I almost just got locked out of green.\n\tNupanick: Also, is that a reference to a band? Actors? I don&#39;t recognize the names.\n\tnycavri: It&#39;s the members of Queen . . .\n\tnycavri: It&#39;s the members of Queen . . .\n\n10) Nupanick: Discover G1 Nupanick Y2 Discworld\n\n11) nycavri: T G1 B1 Nycavri\n\n12) Nupanick: Build Y1 Nupanick\n\n13) nycavri: Move B1 Nycavri Deacon\n\n14) Nupanick: Discover G1 Discworld B3 Chalkzone\n\n15) nycavri: Trade G1 R1 Deacon\n\n16) Nupanick: Trade Y1 R1 Nupanick\n\n17) nycavri: Build G1 Deacon\n\n\tnycavri: *poke*\n\nHomeworlds Online (SDG# 29238)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.13, Ended: 2016.2.16\nParticipants: arcpollux (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\n\tFelix: Hi there. Thanks for the game, and have fun! Have you played this before?\n\nHomeworlds Online (SDG# 29270)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.13, Ended: 2016.2.17\nParticipants: Felix (S), arcpollux (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29329)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.14, Ended: 2016.2.21\nParticipants: Felix (S), hunter547 (N)\nWinner: Felix\n\n\tFelix: Hi there. Have a good game! Need any tips?\n\nHomeworlds Online (SDG# 29269)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.14, Ended: 2016.2.29\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y3 B1 G3\n\n2) Felix: Homeworld B3 Y2 G3\n\n3) wil: B G1 Wil\n\tFelix: Here we go again. Have fun!\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: T G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: B B2 Felix\n\n9) wil: T B1 R1 Wil\n\n10) Felix: Discover B1 Felix Y1 Spawn\n\n11) wil: D B2 Wil Y2 Y2\n\n12) Felix: Build B1 Felix\n\n13) wil: B R1 Wil\n\n14) Felix: Discover B2 Felix G1 Nascent\n\n15) wil: B G1 Wil\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Nascent\nBuild B3 Spawn\nBuild B3 Felix\n\n17) wil: B G1 Wil\n\tFelix: I used to be super hesitant to get rid of my green at home, but I saw Endo do this in one of his games (against you, I think!) and it seemed pretty effective...\n\n18) Felix: Sacrifice B2 Nascent\nTrade B1 R1 Spawn\nTrade B3 G3 Felix\n\n19) wil: B R2 Wil\n\n20) Felix: Sacrifice G3 Felix\nBuild B1 Nascent\nBuild B2 Spawn\nBuild B3 Felix\n\n21) wil: T R2 Y2 Wil\n\n22) Felix: Sacrifice B2 Nascent\nTrade B3 G3 Felix\nTrade B3 Y3 Spawn\n\n23) wil: M B2 Y2 Nascent\n\n24) Felix: Build G2 Felix\n\n25) wil: D G1 Wil Y2 Y2\n\n26) Felix: Sacrifice G3 Felix\nBuild B2 Spawn\nBuild B3 Spawn\nBuild B3 Nascent\n\n\nHomeworlds Online (SDG# 29336)\nVariants: &quot;Hard time&quot;\nStarted: 2016.2.14, Ended: 2016.2.29\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld Y3 B1 G3\n\n3) wil: B G1 Wil\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: T G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: B B2 Felix\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Felix: Trade B2 Y2 Felix\n\tFelix: Ah, I know this game... :)\r\n\n\n11) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\twil: Then that is the game we shall play\n\n12) Felix: Sacrifice Y2 Felix\nDiscover B1 Felix Y2 Out\nMove B1 Out Y3\nCatastrophe Y3 Blue\n\n13) wil: T B3 G3 Wil\n\n14) Felix: Build G1 Felix\n\n15) wil: B B1 Wil\n\n16) Felix: Trade G1 B1 Felix\n\tFelix: Rats. That gave you an edge. I should have changed by mg to a y3 instead earlier.\n\tFelix: g3*\n\n17) wil: T B1 Y1 Wil\n\n18) Felix: Build B1 Felix\n\n19) wil: B B2 Wil\n\n20) Felix: Discover B1 Felix Y2 Brisingr\n\n21) wil: D B2 Wil Y3 Y3\n\n22) Felix: Build G1 Felix\n\n23) wil: D B2 Y3 G2 G2\n\n24) Felix: Trade G3 Y3 Felix\n\n25) wil: B B3 G2\n\n26) Felix: Move B1 Felix G2\n\n27) wil: T B2 R2 G2\n\n28) Felix: Build B2 G2\n\n\tFelix: I know that feeling\r\n\n\tFelix: Aw man.... sorry this had to happen.\n\nHomeworlds Online (SDG# 29338)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.23, Ended: 2016.2.27\nParticipants: ugoggino (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\tFelix: Hi there, thanks for the game! Good luck. Have you played this before?\n\n2) ugoggino: Homeworld Y3 B2 G3\n\tugoggino: Hi, as you could guess... it&#39;s my first play. Thanks and good luck\n\n3) Felix: B G1 Felix\n\tFelix: Welcome! I am happy to give you tips or answer any questions you may have.\n\tFelix: The colors you chose to start with are good\n\n4) ugoggino: Build G1 Ugoggino\n\tugoggino: thank you, any advice is welcome\n\n5) Felix: Trade G1 B1 Felix\n\tFelix: Some general tips to get started with:\r\nStarting with a large green ship is a good idea, and having blue and yellow as your starting homeworld colors is also great. As a beginner, it&#39;s easiest to also start with small and medium homeworld pieces, as this allows you to access large pieces more quickly from the beginning.\n\tFelix: You typically don&#39;t need to bother with red at the beginning, but focus on building up your fleet of ships as fast as possible. Try to get the best ships you can without letting me get them. And diversify your colors as soon as possible, trying to rarely have three of the same color in a system if possible (and definitely never have four, because I could call catastrophe and blow them up!)\r\n\r\nIf your opponent gets a red ship, however, you should also try to get at least one as soon as possible so you aren&#39;t defenseless if they move in to attack.\n\tFelix: Also remember that if you sacrifice a ship for actions, you can use those actions in any system, so you don&#39;t necessarily have to have a red ship in a system, for instance, in order to attack. You could sacrifice your red elsewhere and still attack in a different system, so long as you had a ship there big enough to successfully attack. Make sense?\n\n6) ugoggino: Trade G1 Y1 Ugoggino\n\tFelix: If I think of other tips along the way, I&#39;ll let you know. Good luck!\n\n7) Felix: Build B1 Felix\n\n8) ugoggino: Build Y1 Ugoggino\n\n9) Felix: Discover B1 Felix G1 Rim\n\n10) ugoggino: Discover Y1 Ugoggino G1 Vega\n\n11) Felix: Build B1 Rim\n\n12) ugoggino: Build G1 Ugoggino\n\n13) Felix: Build B2 Felix\n\n14) ugoggino: Build G2 Ugoggino\n\n15) Felix: Discover B2 Felix Y1 Spark\n\n16) ugoggino: Trade G2 B2 Ugoggino\n\n17) Felix: Build G2 Felix\n\n18) ugoggino: Move B2 Ugoggino Vega\n\n19) Felix: Sacrifice G3 Felix\nBuild B3 Spark\nBuild B3 Rim\nBuild G2 Felix\n\n20) ugoggino: Sacrifice G3 Ugoggino\nBuild Y2 Vega\nBuild Y2 Vega\nBuild Y3 Ugoggino\n\n21) Felix: T B3 Y3 Rim\n\n22) ugoggino: Sacrifice Y3 Ugoggino\nMove Y1 Vega Felix\nMove Y2 Vega Felix\nMove Y2 Vega Felix\nCatastrophe Felix Y\n\n23) Felix: Trade B3 R3 Spark\n\n24) ugoggino: Build B3 Vega\n\n25) Felix: Move B2 Spark Ugoggino\n\tFelix: Good move to blow up half my system, but also dangerous. You now only have small ships in your home system, so it is vulnerable to attack. You should try to always have a large ship at home if possible.\n\n26) ugoggino: Sacrifice Y1 Ugoggino\nMove B3 Vega Felix\n\tugoggino: why didn&#39;t you move r3 to my homesystem? \n\n27) Felix: S R3 Spark\nA G1 Ugoggino\nPass\nPass\n\tFelix: I wanted to be able to sacrifice  my red in order to capture all of your ships at once. You can sacrifice her read in another system and text chips and a different system. So if you had build another ship in your system, I could have sacrificed my large red and used my blue medium to attack all of your pieces at once\n\tFelix: Sorry, speech to text is not much good. I  meant if you can sacrifice a red in one system and attack ships in a different system \n\tFelix: Like that. Not bad and good game!\n\tugoggino: thank you, I&#39;ve got much to understand and learn\n\tFelix: No problem. It takes a few games to get a handle on the strategy, but I&#39;m happy to help you learn! Feel free to challenge me as many times as you wish.\n\n\nHomeworlds Online (SDG# 29363)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.23, Ended: 2016.3.2\nParticipants: Felix (S), ugoggino (N)\nWinner: Felix\n\n1) ugoggino: Homeworld G3 B2 Y3\n\tugoggino: homeworld G3 B2 Y3\n\n2) Felix: H R1 B3 G3\n\n3) ugoggino: Build Y1 Ugoggino\n\n4) Felix: Build G1 Felix\n\n5) ugoggino: Trade Y1 G1 Ugoggino\n\tFelix: Starting with a yellow ship is slightly harder. Having a large green at the beginning gives you a lot more potential build power later if you sacrifice it. Having a large yellow has its advantages too, though, so it all comes down to how you like to play.\n\tFelix: Starting with a red, as I did, is pretty dangerous. But it can also have its advantages if used properly. It just makes things more difficult for me in the beginning game, because I have to trade for yellow before I can move anywhere.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) ugoggino: Build G1 Ugoggino\n\n8) Felix: Build G1 Felix\n\n9) ugoggino: Discover G1 Ugoggino B1 Rigel\n\n10) Felix: Trade G1 B1 Felix\n\n11) ugoggino: Build Y1 Ugoggino\n\n12) Felix: Build B1 Felix\n\n13) ugoggino: Move Y1 Ugoggino Rigel\n\n14) Felix: Discover B1 Felix G2 Out\n\tFelix: It is dangerous to let your opponent get all of the smalls of a particular color before you yourself have any mediums, especially blue. In this case, I have all the small blues, and you can&#39;t trade for blue unless you first build a medium, or trade away your large yellow, which isn&#39;t ideal.  In general, you don&#39;t want to let the opponent get a monopoly on any one color, but blue is especially dangerous since I can easily trade blues for other ships. If there is only one small of any color left, ad you don&#39;t have it yet, it&#39;s usually a good idea to try to get it.\n\n15) ugoggino: Build G1 Rigel\n\n16) Felix: Build B2 Out\n\n17) ugoggino: Build G2 Ugoggino\n\n18) Felix: B G2 Felix\n\n19) ugoggino: Build G3 Rigel\n\n20) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Out\n\n21) ugoggino: Trade G3 B3 Rigel\n\tugoggino: Don&#39;t know what I can do... It&#39;s getting complex\n\n22) Felix: Trade B1 R1 Felix\n\tFelix: Getting a blue was smart, since I have so much in my home system, and you also don&#39;t want me to monopolize it. You want to try to cause a catastrophe in my home system if possible, but you also want some sort of plan to finish the job after you blow up half my homeworld. If you don&#39;t, you may leave yourself open to a counterattack. It does get pretty complex, but a few games will help you wrap your head around it!\n\n23) ugoggino: Sacrifice G2 Ugoggino\nBuild G2 Rigel\nBuild G3 Ugoggino\n\n24) Felix: T B1 Y1 Out\n\n25) ugoggino: Trade G1 R1 Rigel\n\n26) Felix: Discover G2 Felix Y2 Gate\n\n27) ugoggino: Discover G3 Ugoggino B1 Polar\n\n28) Felix: Build G1 Felix\n\n29) ugoggino: Sacrifice G2 Rigel\nBuild G2 Polar\nBuild Y2 Ugoggino\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\n\n31) ugoggino: Sacrifice G3 Polar\nBuild G3 Polar\nBuild Y3 Rigel\nBuild R2 Rigel\n\n32) Felix: D Y1 Out B1 In\n\n33) ugoggino: Discover Y3 Rigel R2 Sirio\n\n34) Felix: Move R1 Felix Out\n\n35) ugoggino: Move R1 Rigel Ugoggino\n\n36) Felix: Move B3 Out In\n\n37) ugoggino: Sacrifice G3 Polar\nBuild G3 Polar\nBuild R2 Ugoggino\nBuild R3 Rigel\n\n38) Felix: M Y2 Out In\n\n39) ugoggino: Move R3 Rigel Gate\n\n40) Felix: Build R3 Out\n\n41) ugoggino: Attack G2 Gate\n\n42) Felix: Sacrifice Y3 Felix\nMove Y2 In Ugoggino\nMove Y1 In Ugoggino\nMove B3 In Ugoggino\nCatastrophe Ugoggino Yellow\n\n43) ugoggino: Pass\n\tFelix: By stripping away your large yellow ship with a catastrophe and moving my own large ship in at the same time, I have disabled your defenses, while having my own large red waiting to be sacrificed essentially guarantees I can capture any defenses you try to move in. I know it was tempting to capture my green ship in the gate system, but in this case, that was just a distraction, and I didn&#39;t need that ship anymore to put my plan into motion.\n\tFelix: It&#39;s definitely difficult to recognize maneuvers like this, and even harder to defend against them, but you have actually played very well in this game! You&#39;ve got a great sense for the game, and I think you will get very good at it with practice.\n\tugoggino: good game, thanks\n\n44) Felix: Sacrifice R3 Out\nAttack R2 Ugoggino\nAttack R1 Ugoggino\nAttack G1 Ugoggino\n\tFelix: Happy to play again! Just challenge me.\n\n\nHomeworlds Online (SDG# 29362)\nVariants: &quot;Unrated&quot;\nStarted: 2016.2.29, Ended: 2016.3.8\nParticipants: Anshir (S), ugoggino (N)\nWinner: ugoggino\n\n1) ugoggino: Homeworld R1 B3 G3\n\tAnshir: Hi, first at all I want to say this is going to be my first play here, so I don&#39;t know how many mistakes I will make :) Please be patience with me XD\n\n2) Anshir: Homeworld B2 Y3 G3\n\tugoggino: hi, I&#39;m new at this game too. so we can experitment.. ;) good luck\n\n3) ugoggino: Build G1 Ugoggino\n\n4) Anshir: Build G1 Anshir\n\n5) ugoggino: Trade G1 Y1 Ugoggino\n\n6) Anshir: Build G1 Anshir\n\n7) ugoggino: Build G1 Ugoggino\n\n8) Anshir: Discover G1 Anshir B1 Rigel\n\n9) ugoggino: Build G2 Ugoggino\n\n10) Anshir: Build G2 Rigel\n\n11) ugoggino: Discover G2 Ugoggino Y2 Alfa\n\n12) Anshir: Trade G2 Y2 Rigel\n\n13) ugoggino: Build Y1 Ugoggino\n\n14) Anshir: Sacrifice G3 Anshir\nBuild G2 Anshir\nBuild G2 Rigel\nBuild G3 Anshir\n\n15) ugoggino: Build G3 Alfa\n\n16) Anshir: Sacrifice Y2 Rigel\nMove G1 Rigel Alfa\nMove G2 Rigel Alfa\nCatastrophe Alfa G\n\n17) ugoggino: Trade G1 B1 Ugoggino\n\n18) Anshir: Trade G2 Y2 Anshir\n\n19) ugoggino: Build G1 Ugoggino\n\n20) Anshir: Trade G1 B1 Anshir\n\n21) ugoggino: Discover Y1 Ugoggino G2 Beta\n\n22) Anshir: Build G1 Anshir\n\n23) ugoggino: Move B1 Ugoggino Beta\n\n24) Anshir: Discover G1 Anshir R1 Antares\n\n25) ugoggino: Build Y1 Ugoggino\n\n26) Anshir: Build Y2 Anshir\n\n27) ugoggino: Build Y2 Beta\n\n28) Anshir: Move Y2 Anshir Antares\n\n29) ugoggino: Trade Y2 B2 Beta\n\n30) Anshir: Build G1 Antares\n\n31) ugoggino: Trade Y1 B1 Ugoggino\n\n32) Anshir: Build G2 Anshir\n\n33) ugoggino: Discover B1 Ugoggino Y2 Alfa\n\n34) Anshir: Sacrifice G3 Anshir\nBuild G2 Anshir\nBuild G3 Antares\nBuild G3 Anshir\n\n35) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild Y1 Beta\nBuild Y3 Ugoggino\n\n36) Anshir: Build Y3 Antares\n\n37) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild B2 Beta\nBuild B3 Alfa\n\n38) Anshir: Move B1 Anshir Antares\n\n39) ugoggino: Sacrifice Y1 Beta\nMove Y3 Ugoggino Beta\n\n40) Anshir: Trade G2 R2 Anshir\n\n41) ugoggino: Sacrifice B2 Beta\nTrade B1 R1 Alfa\nTrade B2 R2 Beta\n\n42) Anshir: Discover B1 Antares G2 Vega\n\n43) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild R2 Beta\nBuild Y1 Ugoggino\n\n44) Anshir: Sacrifice G3 Anshir\nBuild G3 Anshir\nBuild B1 Vega\nBuild B2 Vega\n\tAnshir: Sorry, I was out the weekend and today was...one of those days...however, difficult movement :D\n\n45) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild R3 Beta\nBuild R3 Alfa\n\n46) Anshir: Sacrifice Y3 Antares\nMove B1 Vega Ugoggino\nMove B1 Vega Ugoggino\nMove B2 Vega Ugoggino\nCatastrophe Ugoggino B\n\n47) ugoggino: Sacrifice Y3 Beta\nMove Y1 Ugoggino Anshir\nMove Y1 Ugoggino Anshir\nMove B3 Alfa Ugoggino\nCatastrophe Anshir Y\n\n48) Anshir: Sacrifice G3 Anshir\nBuild G2 Anshir\nBuild G3 Anshir\nBuild R3 Anshir\n\n49) ugoggino: Sacrifice G3 Ugoggino\nBuild B1 Ugoggino\nBuild B1 Ugoggino\nBuild G3 Ugoggino\n\n50) Anshir: Sacrifice Y2 Antares\nMove G2 Anshir Ugoggino\nMove G2 Anshir Ugoggino\nCatastrophe Ugoggino G\n\n51) ugoggino: Move Y1 Beta Ugoggino\n\n52) Anshir: Trade R3 Y3 Anshir\n\n53) ugoggino: Sacrifice B1 Beta\nTrade R3 Y3 Alfa\n\n54) Anshir: Sacrifice Y3 Anshir\nMove G3 Anshir Antares\nMove R2 Anshir Antares\nPass\n\tAnshir: I didn&#39;t see that :D well done\n\tugoggino: Very enjoiable match. I didn&#39;t imagine I could win untill I saw your attack with blue and a possibile counteroffensive just ready with yellow from my home system plus the monopoly of red pieces. \r\nThx\n\n\nHomeworlds Online (SDG# 29367)\nStarted: 2016.3.1, Ended: 2016.3.7\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld Y3 B2 G3\n\tFelix: Hello again :) Good luck and have fun!\n\n2) ts52: Homeworld B1 Y3 G3\n\tts52: Thanks. You too!\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: T G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G2 Kermit\n\n9) Felix: Discover B2 Felix G1 Range\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Range\nBuild B3 Range\nBuild B3 Felix\n\n12) ts52: Build B3 Kermit\n\n13) Felix: Trade B3 Y3 Range\n\n14) ts52: Trade B1 Y1 Kermit\n\n15) Felix: Trade B3 G3 Felix\n\n16) ts52: Build Y1 Kermit\n\n17) Felix: D B2 Range Y2 Settlement\n\n18) ts52: Trade Y1 R1 Kermit\n\n19) Felix: Sacrifice G3 Felix\nBuild B1 Settlement\nBuild B3 Range\nBuild B3 Felix\n\n20) ts52: Discover B3 Kermit Y1 Bigbird\n\n21) Felix: Sacrifice B3 Range\nTrade B1 G1 Settlement\nTrade B2 G2 Range\nTrade B3 G3 Felix\n\n22) ts52: Discover G1 Ts52 Y2 Zoe\n\n23) Felix: Sacrifice G2 Range\nBuild G2 Settlement\nBuild G2 Settlement\n\n24) ts52: Trade G3 R3 Ts52\n\n25) Felix: Build G3 Felix\n\n26) ts52: Sacrifice G1 Zoe\nBuild R1 Ts52\n\n27) Felix: Trade G2 R2 Settlement\n\n28) ts52: Trade R1 G1 Ts52\n\n29) Felix: S Y3 Range\nM R2 Settlement Ts52\nM G2 Settlement Ts52\nM G1 Settlement Ts52\n\n30) ts52: Attack R2 Ts52\n\n31) Felix: T G2 R2 Ts52\n\n32) ts52: Sacrifice R2 Ts52\nAttack R2 Ts52\nAttack G1 Ts52\n\n33) Felix: T G3 R3 Felix\n\tFelix: Ah, dang. Definitely overlooked that!\n\n34) ts52: Sacrifice G1 Ts52\nBuild B1 Bigbird\n\n35) Felix: B G1 Felix\n\tts52: I almost missed it too.\n\n36) ts52: Trade B1 G1 Bigbird\n\n37) Felix: D G1 Felix B1 Stead\n\n38) ts52: Build B2 Bigbird\n\n39) Felix: B G2 Felix\n\n40) ts52: Trade B3 G3 Bigbird\n\n41) Felix: Sacrifice G3 Felix\nBuild G2 Stead\nBuild G3 Stead\nBuild G3 Felix\n\n42) ts52: Build B3 Bigbird\n\n43) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 Settlement\nBuild R1 Felix\n\n44) ts52: Trade B3 Y3 Bigbird\n\n45) Felix: Sacrifice B2 Settlement\nTrade G2 Y2 Stead\nTrade G2 Y2 Felix\n\n46) ts52: Build B2 Bigbird\n\n47) Felix: Sacrifice G3 Stead\nBuild Y1 Felix\nBuild G2 Stead\nBuild B3 Settlement\n\n48) ts52: Sacrifice Y3 Bigbird\nMove Y1 Kermit Bigbird\nMove Y1 Bigbird Felix\nMove B2 Bigbird Felix\nCatastrophe Felix Yellow\n\n49) Felix: Sacrifice Y2 Stead\nMove R3 Felix Ts52\nMove B1 Felix Ts52\n\n50) ts52: Sacrifice G3 Bigbird\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild B3 Felix\n\tFelix: Ooh. Nicely done. I anticipated (and even hoped for) the yellow catastrophe, but I didn&#39;t anticipate the one-two followup punch with blue.\n\n51) Felix: Sacrifice B3 Settlement\nTrade B1 R1 Ts52\nTrade G3 B3 Felix\nPass\nCatastrophe Ts52 Red\nCatastrophe Felix Blue\n\n\tts52: Thanks. It took me a bit to find it.\n\tFelix: Nice one! Very close.  I made a fatal mistake in my earlier attack and you turned it back on me very well!\n\tts52: Absolutely. Another close game. Happy to play again, any time.\n\nHomeworlds Online (SDG# 29337)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.1, Ended: 2016.3.4\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B2 G3\n\tFelix: Hope all is well! I hate that our other games timed out. Good luck and have fun!\n\n\tFelix: :(\n\nHomeworlds Online (SDG# 29313)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.1, Ended: 2016.3.11\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\tFelix: Hello again. Good luck and have fun!\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) Felix: Build G1 Felix\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Felix: T G1 B1 Felix\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) Felix: Build B1 Felix\n\n8) SilentTitan: Trade G3 B3 Silenttitan\n\n9) Felix: Discover B1 Felix Y1 Gora\n\n10) SilentTitan: Build B2 Silenttitan\n\n11) Felix: S G3 Felix\nB B2 Gora\nB B2 Gora\nB B3 Felix\n\n12) SilentTitan: Trade B3 Y3 Silenttitan\n\n13) Felix: Sacrifice B1 Gora\nTrade B3 G3 Felix\n\n\nHomeworlds Online (SDG# 29395)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.2, Ended: 2016.3.5\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29295)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.3, Ended: 2016.3.22\nParticipants: alexcobo (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) endo: Build G1 Endo\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) endo: Build G1 Endo\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) endo: Discover G1 Endo Y2 Pushout\n\n8) alexcobo: Trade Y1 B1 Alexcobo\n\n9) endo: Build G1 Pushout\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) endo: Build G2 Pushout\n\n12) alexcobo: Discover Y1 Alexcobo B1 Noidea\n\n13) endo: Move G2 Pushout Noidea\n\n14) alexcobo: Build B2 Alexcobo\n\n15) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 Pushout\nBuild G3 Endo\n\n16) alexcobo: Trade Y3 G3 Alexcobo\n\n17) endo: Trade G3 Y3 Endo\n\n18) alexcobo: Trade B2 Y2 Alexcobo\n\n19) endo: Sacrifice Y3 Endo\nMove G1 Pushout Noidea\nMove G1 Noidea Alexcobo\nMove G2 Noidea Alexcobo\nCatastrophe Alexcobo G\n\n20) alexcobo: Trade Y2 G2 Alexcobo\n\n21) endo: Trade G2 R2 Endo\n\n22) alexcobo: Trade B1 R1 Alexcobo\n\n23) endo: Build R1 Endo\n\n24) alexcobo: Trade Y1 G1 Noidea\n\n25) endo: Trade R1 B1 Endo\n\n26) alexcobo: Build Y1 Alexcobo\n\n27) endo: Build B2 Endo\n\n28) alexcobo: Build G2 Alexcobo\n\n29) endo: Build G3 Endo\n\n30) alexcobo: Sacrifice G2 Alexcobo\nBuild G2 Noidea\nBuild G3 Alexcobo\n\n31) endo: Discover G1 Pushout B3 Terminal\n\n32) alexcobo: Trade G2 Y2 Noidea\n\n33) endo: Sacrifice G3 Endo\nBuild G2 Pushout\nBuild G3 Endo\nBuild G3 Terminal\n\n34) alexcobo: Sacrifice Y2 Noidea\nMove G1 Noidea Terminal\nMove G2 Alexcobo Terminal\nCatastrophe Terminal G\n\n35) endo: Trade G3 Y3 Endo\n\n36) alexcobo: Build G1 Alexcobo\n\n37) endo: Sacrifice Y3 Endo\nMove B1 Endo Alexcobo\nMove B2 Endo Alexcobo\nPass\n\n38) alexcobo: Attack B2 Alexcobo\n\n39) endo: Sacrifice G1 Endo\nBuild B1 Alexcobo\nCatastrophe Alexcobo B\n\n\nHomeworlds Online (SDG# 29409)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.6, Ended: 2016.3.11\nParticipants: Felix (S), ajo (N)\nWinner: Felix\n\n1) ajo: Homeworld G3 Y1 B3\n\n2) Felix: H B3 Y2 G3\n\tFelix: Thanks for accepting my challenge. Good luck!\n\n3) ajo: Build B1 Ajo\n\n4) Felix: Build G1 Felix\n\n5) ajo: Discover B1 Ajo B2 Alpha\n\n6) Felix: Trade G1 B1 Felix\n\n7) ajo: Trade B1 G1 Alpha\n\n8) Felix: Build G1 Felix\n\n9) ajo: Build B1 Ajo\n\n10) Felix: Discover G1 Felix B1 Out\n\n11) ajo: Build B2 Ajo\n\n12) Felix: B B2 Felix\n\n13) ajo: Trade B2 R2 Ajo\n\n14) Felix: T B1 Y1 Felix\n\n15) ajo: Move R2 Ajo Alpha\n\n16) Felix: B Y1 Felix\n\tFelix: Oops. Didn&#39;t mean to click that\n\n17) ajo: Build R1 Alpha\n\n18) Felix: M Y1 Felix Out\n\n19) ajo: Trade R2 Y2 Alpha\n\n20) Felix: T Y1 R1 Felix\n\n21) ajo: Trade B3 Y3 Ajo\n\n22) Felix: B G1 Felix\n\n23) ajo: Build G2 Alpha\n\n24) Felix: B G2 Out\n\n25) ajo: Trade G2 R2 Alpha\n\n26) Felix: Discover G2 Out B2 Jelwick\n\n27) ajo: Move R2 Alpha Out\n\n28) Felix:\nM G3 Felix Out\n\n29) ajo: Trade R2 G2 Out\n\n30) Felix: S G3 Out\nB G2 Out\nB G3 Felix\nB G3 Jelwick\n\n31) ajo: Sacrifice G2 Out\nBuild B1 Ajo\nBuild B3 Ajo\n\tajo: Ouch. Nicely done, I missed that.\n\n32) Felix: D B2 Felix Y1 Arthos\n\tFelix: Thanks! You had me scrambling with that red attack \n\n33) ajo: Sacrifice B1 Ajo\nTrade B3 R3 Ajo\n\n34) Felix: B Y2 Out\n\n35) ajo: Build Y3 Alpha\n\n36) Felix: M Y2 Out Jelwick\n\n37) ajo: Move Y3 Alpha Out\n\n38) Felix: S G2 Out\nB Y3 Jelwick\nB R1 Felix\n\n39) ajo: Move Y3 Ajo Alpha\n\n40) Felix: S Y2 Jelwick\nM G3 Jelwick Ajo\nM Y3 Jelwick Ajo\n\n41) ajo: Attack Y3 Ajo\n\n42) Felix: S R1 Felix\nA R3 Ajo\n\n43) ajo: Sacrifice R1 Alpha\nAttack R3 Ajo\n\n44) Felix: S R1 Felix\nA R3 Ajo\n\n45) ajo: Sacrifice Y3 Alpha\nMove G1 Alpha Out\nMove G1 Out Felix\nMove Y2 Alpha Ajo\n\tFelix: Back and forth...\n\tajo: Yeah, it&#39;s fruitless; you should just give up now. :)\n\n46) Felix: S R3 Ajo\nA Y2 Ajo\nA Y3 Ajo\nA B1 Ajo\n\tFelix: Never give up! Never surrender! :) great game. Very close. I&#39;d love to rematch sometime!\n\n\nHomeworlds Online (SDG# 29419)\nStarted: 2016.3.7, Ended: 2016.3.8\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld B3 Y1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: B G1 Felix\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Felix: T G1 Y1 Felix\n\n7) ts52: Build Y2 Ts52\n\n8) Felix: B Y2 Felix\n\n9) ts52: Discover Y1 Ts52 G1 Kermit\n\n10) Felix: D Y1 Felix G2 Sirius\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build G1 Felix\n\n13) ts52: Build G2 Ts52\n\n14) Felix: Build G2 Felix\n\n15) ts52: Discover G2 Ts52 B1 Gonzo\n\n16) Felix: Trade G1 B1 Felix\n\n17) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n18) Felix: Discover G2 Felix B2 Brinstar\n\n19) ts52: Trade G1 R1 Ts52\n\n20) Felix: Build G1 Felix\n\n21) ts52: Sacrifice Y2 Ts52\nMove G3 Gonzo Brinstar\nMove G3 Brinstar Felix\n\n22) Felix: Trade G2 R2 Brinstar\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Felix\nBuild G3 Ts52\nBuild Y2 Kermit\nCatastrophe Felix G\n\n24) Felix: Trade Y2 G2 Felix\n\tFelix: I knew I should have gotten a red when you did :)\n\n25) ts52: Move Y1 Kermit Sirius\n\tts52: Yeah, when your enemy get&#39;s a gun, you get a gun. - Old Homeworlds adage.  :)\n\n26) Felix: Discover Y1 Sirius B1 Alpha\n\n27) ts52: Build Y2 Sirius\n\n28) Felix: Build B2 Felix\n\n29) ts52: Sacrifice G2 Gonzo\nBuild Y2 Sirius\nBuild Y3 Kermit\n\n30) Felix: Discover Y1 Alpha G2 Beta\n\n31) ts52: Sacrifice Y2 Sirius\nMove Y3 Kermit Brinstar\nMove Y3 Brinstar Felix\n\n32) Felix: Build G1 Felix\n\n33) ts52: Trade Y3 R3 Felix\n\n34) Felix: Build G3 Felix\n\n35) ts52: Attack G3 Felix\n\n36) Felix: Build G3 Felix\nCatastrophe Felix Green\n\tFelix: Very nicely done. That was fast!\n\n37) ts52: Trade R3 B3 Felix\nCatastrophe Felix B\n\n\tts52: Thanks. Definitely worth strongly considering getting a gun as soon as your opponent does.\n\tFelix: Definitely. That was a big mistake. I overlooked the fact that you could actually move a ship to my homeworld already, so I thought I could wait another turn before building one. I thought wrong :)\n\tts52: :) Still, an exellent game. Happy for a rematch any time.\n\nHomeworlds Online (SDG# 29413)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.7, Ended: 2016.3.17\nParticipants: Salmonax (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R3 B2 G3\n\n2) Salmonax: Homeworld Y1 G3 B3\n\tFelix: Hello again :) have fun!\n\tSalmonax: You too!\n\n3) Felix: Build G1 Felix\n\n4) Salmonax: Build B1 Salmonax\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Salmonax: Trade B1 Y1 Salmonax\n\n7) Felix: Build Y2 Felix\n\n\tFelix: Aw :(\n\tSalmonax: Sorry about that, lost track of time\r\n\n\nHomeworlds Online (SDG# 29328)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.8, Ended: 2016.3.25\nParticipants: alexcobo (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) alexcobo: Homeworld B3 Y2 G3\n\tFelix: Hey there! First game?\n\tFelix: Nevermind. I see you&#39;ve played a few! Have fun!\n\n3) Felix: Build G1 Felix\n\talexcobo: I played a few. Long time ago. :-)\r\nPlease, do not hold back. How would I ever get better otherwise?\n\n4) alexcobo: Build G1 Alexcobo\n\tFelix: Welcome back! I am certainly not the best player on here, so you don&#39;t have to worry about me holding back. I regularly get thrashed by other players, but doing so is also making me better :)\n\n5) Felix: Trade G1 Y1 Felix\n\n6) alexcobo: Build G1 Alexcobo\n\n7) Felix: Build Y1 Felix\n\n8) alexcobo: Discover G1 Alexcobo B1 Blueone\n\n9) Felix: Discover Y1 Felix G1 Cephas\n\n10) alexcobo: Build G2 Blueone\n\n11) Felix: B Y1 Felix\n\n12) alexcobo: Trade G2 Y2 Blueone\n\n13) Felix: Trade Y1 B1 Felix\n\n14) alexcobo: Build G2 Blueone\n\n15) Felix: Build B1 Felix\n\n16) alexcobo: Discover G2 Blueone R2 R2\n\n17) Felix: Move B1 Felix Cephas\n\n18) alexcobo: Build G2 Blueone\n\n19) Felix: B B2 Cephas\n\n20) alexcobo: Sacrifice G3 Alexcobo\nBuild G2 Alexcobo\nBuild G3 R2\nBuild G3 Alexcobo\n\n21) Felix: D B1 Cephas Y3 Ingot\n\n22) alexcobo: Trade G1 R1 Alexcobo\n\n23) Felix: T Y1 R1 Felix\n\n24) alexcobo: Build Y1 Blueone\n\n25) Felix: S G3 Felix\nB B2 Cephas\nB B2 Ingot\nB B3 Felix\n\n26) alexcobo: Sacrifice G3 R2\nBuild G1 R2\nBuild G3 R2\nBuild G3 Blueone\n\tFelix: Blue vs Green...\n\n27) Felix: T B2 R2 Cephas\n\tFelix: Hmm. Not having any green is a problem...\n\n28) alexcobo: Trade G2 B2 Blueone\n\n29) Felix: Sacrifice B1 Felix\nTrade B2 G2 Ingot\n\talexcobo: Here. Have one. :-)\n\n30) alexcobo: Sacrifice Y1 Blueone\nMove G3 R2 Ingot\n\tFelix: Why thank you, good sir. Too kind!\n\n31) Felix: Move B1 Ingot Blueone\n\n32) alexcobo: Trade G1 Y1 Blueone\n\n33) Felix: Sacrifice G2 Ingot\nBuild B1 Blueone\nBuild B2 Cephas\nCatastrophe Blueone Blue\n\n34) alexcobo: Sacrifice G3 Alexcobo\nBuild G1 R2\nBuild G2 Ingot\nBuild G3 Alexcobo\n\n35) Felix: T B3 G3 Felix\n\n36) alexcobo: Trade G2 B2 Alexcobo\n\n37) Felix: B G2 Felix\n\n38) alexcobo: Sacrifice B2 Alexcobo\nTrade G2 Y2 Ingot\nTrade G1 Y1 R2\n\n39) Felix: D G2 Felix B1 Rathe\n\n40) alexcobo: Sacrifice G2 R2\nBuild Y1 Ingot\nBuild Y3 R2\n\n41) Felix: Build Y3 Cephas\n\n\tFelix: Aw :(\n\talexcobo: I&#39;m sorry about that.\n\tFelix: That&#39;s okay! I should have turned off the hard time setting. Want a rematch without that on so we don&#39;t have to worry about timing out?\n\nHomeworlds Online (SDG# 29432)\nStarted: 2016.3.8, Ended: 2016.3.11\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld B3 Y2 G3\n\tFelix: Hope you don&#39;t get tired of the rematches! I work on a computer all day for my job, so this provides a much needed mind break from my work :)\n\n3) ts52: Build G1 Ts52\n\tts52: I don&#39;t mind at all. Also spend all day staring at a computer. ;)\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Build G1 Ts52\n\n10) Felix: Discover B2 Felix Y1 Braxus\n\n11) ts52: Discover B1 Ts52 Y2 Bigbird\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade B2 Y2 Ts52\n\n14) Felix: T G1 Y1 Felix\n\n15) ts52: Discover Y2 Ts52 G2 Kermit\n\n16) Felix: B G1 Felix\n\n17) ts52: Move G1 Ts52 Bigbird\n\n18) Felix: M G1 Felix Braxus\n\n19) ts52: Build B2 Bigbird\n\n20) Felix: B B2 Braxus\n\n21) ts52: Build Y1 Kermit\n\n22) Felix: D B2 Braxus G2 Omen\n\n23) ts52: Build Y3 Kermit\n\n24) Felix: Build B3 Omen\n\n25) ts52: Trade B2 R2 Bigbird\n\n26) Felix: Trade B2 R2 Omen\n\n27) ts52: Build R1 Bigbird\n\n28) Felix: Discover Y1 Felix G1 Brink\n\n29) ts52: Move Y3 Kermit Brink\n\n30) Felix: T B3 Y3 Omen\n\n31) ts52: Sacrifice R1 Bigbird\nAttack Y1 Brink\n\n32) Felix: Build R1 Omen\n\n33) ts52: Build B2 Bigbird\n\n34) Felix: Move B2 Braxus Kermit\n\n35) ts52: Move Y2 Kermit Braxus\n\n36) Felix: Sacrifice R1 Omen\nAttack Y1 Kermit\n\n37) ts52: Build R1 Bigbird\n\n38) Felix: Move G1 Braxus Kermit\n\n39) ts52: Move B1 Bigbird Brink\n\n40) Felix: Move G1 Kermit Ts52\n\n41) ts52: Sacrifice R1 Bigbird\nAttack G1 Ts52\n\n42) Felix: M B2 Kermit Ts52\n\n43) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Bigbird\n\n44) Felix: B R1 Omen\n\n45) ts52: Build R1 Bigbird\n\n46) Felix: Move B2 Ts52 Omen\n\n47) ts52: Move R2 Bigbird Brink\n\n48) Felix: Move Y1 Kermit Ts52\n\n49) ts52: Trade G3 R3 Ts52\n\n50) Felix: Sacrifice Y3 Omen\nMove R2 Omen Ts52\nMove R1 Omen Ts52\nMove B2 Omen Ts52\n\n51) ts52: Sacrifice R2 Brink\nAttack R2 Ts52\nAttack B2 Ts52\n\tts52: Hmmmm, I guess I didn&#39;t think that through enough.\n\n52) Felix: Attack G1 Ts52\n\tFelix: Or I&#39;m just flailing in my death throes :)\n\n53) ts52: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n54) Felix: Sacrifice G3 Felix\nBuild Y3 Ts52\nBuild B2 Felix\nBuild B3 Felix\n\tts52: Hmmmm, hadn&#39;t thought about it that way. ;)\n\n55) ts52: Attack Y3 Ts52\nCatastrophe Felix Blue\n\tFelix: That&#39;s what we call an attack falling flat on its face. I saw the way the game was going and thought it was worth a shot :) Well played!\n\tts52: Happens to the best of us. Thanks for the game! Another?\n\tFelix: Indeed! I&#39;m always up for more. Challenge away.\n\n\nHomeworlds Online (SDG# 29428)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.11, Ended: 2016.4.8\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B1 G3\n\tFelix: Oops. Looks like we&#39;re playing two at once. Sorry about that, my mistake. I don&#39;t mind playing two games though!\n\n2) ts52: Homeworld B2 Y3 G3\n\tts52: No worries. \n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: B B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: D B2 Felix Y2 Rim\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Build G1 Felix\n\n12) ts52: Build G2 Ts52\n\n13) Felix: Move G1 Felix Rim\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) Felix: Build G2 Rim\n\n16) ts52: Move Y2 Ts52 Kermit\n\n17) Felix: Build G2 Felix\n\n18) ts52: Discover G1 Ts52 Y1 Bigbird\n\n19) Felix: Discover G2 Rim G3 Bank\n\n20) ts52: Build G2 Ts52\n\n21) Felix: Discover G2 Felix Y2 Ram\n\n22) ts52: Move Y2 Kermit Bank\n\n23) Felix: Trade G1 R1 Rim\n\n24) ts52: Trade G2 R2 Ts52\n\n25) Felix: Sacrifice R1 Rim\nAttack Y2 Bank\n\n26) ts52: Build G1 Ts52\n\n27) Felix: Build G2 Felix\n\n28) ts52: Trade G1 Y1 Ts52\n\n29) Felix: Sacrifice G3 Felix\nBuild G1 Ram\nBuild G3 Felix\nBuild B2 Rim\n\n30) ts52: Build B3 Kermit\n\n31) Felix: Sacrifice G3 Felix\nBuild Y1 Bank\nBuild Y3 Bank\nBuild G3 Felix\n\n32) ts52: Move Y1 Ts52 Kermit\n\n33) Felix: S Y1 Bank\nD B2 Rim Y1 Rom\n\n34) ts52: Move B3 Kermit Ram\n\n35) Felix: T B1 R1 Felix\n\n36) ts52: Build R1 Ts52\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Felix\nBuild R2 Felix\n\n38) ts52: Sacrifice R2 Ts52\nAttack G2 Ram\nAttack G1 Ram\n\n39) Felix: Move Y2 Bank Kermit\n\n40) ts52: Sacrifice G2 Ram\nBuild B1 Ram\nBuild B3 Kermit\n\n41) Felix: Sacrifice R2 Felix\nAttack B1 Kermit\nAttack Y1 Kermit\n\n42) ts52: Trade B3 R3 Kermit\n\n43) Felix: Sacrifice Y2 Kermit\nDiscover Y1 Kermit Y2 Rum\nMove B1 Kermit Rum\n\n44) ts52: Trade B3 R3 Ram\n\n45) Felix: Sacrifice G3 Felix\nBuild B3 Rom\nBuild B3 Rim\nBuild B3 Rum\n\n46) ts52: Build R2 Ram\n\n47) Felix: Move B3 Rim Felix\n\n48) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R2 Kermit\nBuild R3 Ts52\n\n49) Felix: M R1 Felix Rim\n\n50) ts52: Trade R3 G3 Ram\n\n51) Felix: B R3 Felix\n\n52) ts52: Trade R3 G3 Ts52\n\n53) Felix: Sacrifice G2 Bank\nBuild G2 Felix\nBuild R3 Rim\n\n54) ts52: Build G2 Ts52\n\n55) Felix: M R3 Rim Bigbird\n\n56) ts52: Move G1 Bigbird Rum\n\n57) Felix: Move R1 Rim Kermit\nCatastrophe Kermit Red\n\n58) ts52: Build R1 Ram\n\n59) Felix: Sacrifice R1 Felix\nAttack G1 Rum\n\n60) ts52: Trade G3 R3 Ts52\n\n61) Felix: Sacrifice G2 Felix\nBuild R1 Bigbird\nBuild G1 Felix\n\n62) ts52: Sacrifice G3 Ram\nBuild G2 Ts52\nBuild G3 Ram\nBuild G3 Ts52\n\n63) Felix: S Y3 Bank\nM G1 Rum Bigbird\nM G1 Bigbird Ts52\nM R1 Bigbird Ts52\nC Ts52 Green\n\n64) ts52: Trade R3 Y3 Ts52\n\n65) Felix: Attack R1 Ts52\n\n66) ts52: Sacrifice R2 Ram\nAttack R1 Ts52\nAttack R1 Ts52\n\tFelix: You&#39;re gonna make me fight for this :)\n\n67) Felix: Sacrifice B2 Rim\nTrade B2 Y2 Rom\nTrade B1 G1 Rum\n\tts52: Yes, yes I am. ;)\n\n68) ts52: Build R2 Ram\n\n69) Felix: Sacrifice G2 Felix\nBuild G2 Felix\nBuild B1 Rom\n\n70) ts52: Build B2 Ram\n\n71) Felix: Move Y1 Rum Bigbird\n\n72) ts52: Move B1 Ram Felix\n\n73) Felix: Move Y1 Bigbird Ts52\n\n74) ts52: Trade Y3 G3 Ts52\n\n75) Felix: Sacrifice G2 Felix\nBuild G2 Felix\nBuild Y3 Ts52\n\n76) ts52: Attack Y3 Ts52\n\n77) Felix: Move Y2 Rom Ts52\nCatastrophe Ts52 Yellow\n\n78) ts52: Trade R1 Y1 Ts52\n\tFelix: I&#39;m so nervous of messing up right now, haha.\n\n79) Felix: Sacrifice B3 Felix\nTrade R3 B3 Bigbird\nTrade B3 Y3 Rum\nPass\n\n80) ts52: Sacrifice G3 Ram\nBuild B2 Felix\nBuild B3 Felix\nBuild Y2 Ts52\nCatastrophe Felix Blue\n\tts52: :)\n\n81) Felix: S Y3 Rum\nM B3 Bigbird Ts52\nM B3 Rom Ts52\nM B1 Rom Ts52\nC Ts52 Blue\n\n\tFelix: Thanks! That was a fun one. Happy to go again!\n\tts52: Any time. Good game!\n\nHomeworlds Online (SDG# 29440)\nStarted: 2016.3.11, Ended: 2016.3.29\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld R2 B3 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\tts52: Trying something different. Interesting\n\n3) Felix: Build G1 Felix\n\tFelix: It&#39;s always good to change things up now and then!\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: B B2 Felix\n\n8) ts52: Build B2 Ts52\n\n9) Felix: T B2 Y2 Felix\n\n10) ts52: Discover B2 Ts52 G3 Kermit\n\n11) Felix: Build B2 Felix\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Discover B2 Felix G1 Still\n\n14) ts52: Trade B1 Y1 Ts52\n\n15) Felix: Build G1 Felix\n\n16) ts52: Build G2 Ts52\n\n17) Felix: Build G2 Felix\n\n18) ts52: Discover G2 Ts52 B3 Gonzo\n\n19) Felix: Trade G1 R1 Felix\n\n20) ts52: Trade G1 R1 Ts52\n\n21) Felix: Discover G2 Felix B1 Estate\n\n22) ts52: Build G1 Ts52\n\n23) Felix: Build G1 Estate\n\n24) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Ts52\n\n25) Felix: Trade G2 Y2 Estate\n\n26) ts52: Move Y1 Ts52 Kermit\n\n27) Felix: Build G2 Felix\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\n\n29) Felix: Sacrifice Y2 Estate\nMove B2 Still Kermit\nDiscover G1 Estate Y3 Fulcrum\n\n30) ts52: Sacrifice B2 Kermit\nTrade B3 R3 Kermit\nTrade G2 Y2 Gonzo\n\n31) Felix: Sacrifice G2 Felix\nBuild B1 Kermit\nBuild B2 Kermit\nCatastrophe Kermit Blue\n\n32) ts52: Sacrifice G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Ts52\nBuild Y3 Gonzo\n\n33) Felix: Sacrifice G1 Fulcrum\nBuild Y3 Felix\n\n34) ts52: Trade Y3 G3 Ts52\n\n35) Felix: D Y2 Felix G1 Prescience\n\n36) ts52: Move R3 Kermit Prescience\n\n37) Felix: M Y2 Prescience Kermit\n\n38) ts52: Build Y3 Gonzo\n\n39) Felix: Discover Y2 Kermit B1 Sink\n\n40) ts52: Trade Y2 R2 Gonzo\n\n41) Felix: Build Y2 Felix\n\n42) ts52: Move Y3 Gonzo Prescience\n\n43) Felix: Discover Y2 Felix G1 Onus\n\n44) ts52: Trade R2 B2 Gonzo\n\n45) Felix: Build G2 Felix\n\tFelix: Well things are certainly stacked against me :)\n\n46) ts52: Move B2 Gonzo Prescience\n\n47) Felix: Move B1 Felix Onus\n\tts52: That may be true, but I think my end game is still pretty weak.\n\n48) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild B2 Prescience\n\tFelix: So is mine, haha\n\n49) Felix: Move R1 Felix Onus\n\n50) ts52: Trade G2 R2 Gonzo\n\n51) Felix: B B2 Onus\n\n52) ts52: Move B2 Prescience Kermit\n\n53) Felix: T B1 R1 Onus\n\n54) ts52: Sacrifice G2 Gonzo\nBuild B1 Kermit\nBuild B3 Prescience\n\n55) Felix: Move G2 Felix Sink\n\n56) ts52: Sacrifice Y3 Gonzo\nMove B3 Prescience Felix\nMove Y3 Prescience Felix\nMove Y1 Ts52 Gonzo\n\n57) Felix: S G2 Sink\nB Y3 Felix\nB G2 Felix\n\tFelix: Ah, nicely done!\n\n58) ts52: Sacrifice R3 Prescience\nAttack Y3 Felix\nAttack Y3 Felix\nAttack G3 Felix\n\n59) Felix: Move Y2 Sink Felix\nCatastrophe Felix Yellow\n\tts52: Thanks! GG!\n\n60) ts52: Attack G2 Felix\n\n\nHomeworlds Online (SDG# 29439)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.11, Ended: 2016.4.1\nParticipants: Felix (S), kanzenryu (N)\nWinner: Felix\n\n1) kanzenryu: Homeworld Y1 B2 G3\n\n2) Felix: H Y3 B2 G3\n\tkanzenryu: Haven&#39;t played for a while... have fun!\n\tFelix: You too!\n\n3) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: build g1 kanzeryu\n\n4) Felix: Build G1 Felix\n\n5) kanzenryu: Trade G1 B1 Kanzenryu\n\tkanzenryu: Typing in the wrong box... shows how long since I&#39;ve played! Have you been following the AlphaGo games? Incredible stuff.\n\tFelix: Haha, I&#39;ve done that plenty of times! And no! Never heard of them. What are they?\n\n6) Felix: Trade G1 Y1 Felix\n\tkanzenryu: It&#39;s a five game match of the game of Go between a new computer program and a to human player. It&#39;s pretty much the only game that humans are still better than computers. Until now. But the human did win game 4. Final game tomorrow. It&#39;s steamed live on YouTube. Search for AlphaGo.\n\tFelix: Woah, sounds pretty cool. I don&#39;t know much about Go. Wonder when they&#39;ll develop a computer to kick butt at Homeworlds :)\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) Felix: Build Y1 Felix\n\tkanzenryu: I attempted an AI for Homeworlds but it was pretty terrible. At times there are several thousand possible moves if you consider all the various sacrifice combinations, which makes it awkward for software.\n\tFelix: I can imagine. That&#39;s what makes it such a fun game to play though. So many possibilities!\n\n9) kanzenryu: Trade G3 Y3 Kanzenryu\n\n10) Felix: Discover Y1 Felix G1 Ripkin\n\n11) kanzenryu: Build Y2 Kanzenryu\n\n12) Felix: Build Y2 Ripkin\n\n13) kanzenryu: Discover Y2 Kanzenryu G3 Out\n\n14) Felix: Move Y1 Ripkin Out\n\n15) kanzenryu: Trade B1 R1 Kanzenryu\n\n16) Felix: Build Y2 Out\n\n17) kanzenryu: Build Y3 Out\nCatastrophe Out Y\n\n18) Felix: B G1 Felix\n\n19) kanzenryu: Build G2 Kanzenryu\n\n20) Felix: T G1 R1 Felix\n\n21) kanzenryu: Discover G2 Kanzenryu B3 Moon\n\n22) Felix: Trade Y1 B1 Felix\n\n23) kanzenryu: Build Y1 Kanzenryu\n\n24) Felix: Build Y1 Ripkin\n\n25) kanzenryu: Move Y1 Kanzenryu Moon\n\n26) Felix: Discover Y1 Ripkin G3 Foil\n\n27) kanzenryu: Discover G2 Moon B1 Peep\n\n28) Felix: Build Y2 Foil\n\n29) kanzenryu: Trade Y3 G3 Kanzenryu\n\n30) Felix: Build B1 Felix\n\n31) kanzenryu: Discover G1 Kanzenryu Y3 Also\n\n32) Felix: B Y2 Ripkin\n\n33) kanzenryu: Build G1 Kanzenryu\n\n34) Felix: Move Y2 Ripkin Moon\n\n35) kanzenryu: Move Y1 Moon Peep\n\n36) Felix: Build Y3 Ripkin\n\n\tkanzenryu: I think I can safely resign at this point. Thanks for the game.\n\nHomeworlds Online (SDG# 29438)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.11, Ended: 2016.3.15\nParticipants: Felix (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 Y1 B3\n\n2) Felix: H R3 B2 G3\n\tajo: Here we go again. :)\n\tFelix: Indeed. I enjoy playing against you! Good luck and have fun!\n\n3) ajo: Build B1 Ajo\n\tajo: build b1\n\tajo: Ha. Wrong box.\n\n4) Felix: B G1 Felix\n\n5) ajo: Trade B1 G1 Ajo\n\n6) Felix: Trade G1 Y1 Felix\n\n7) ajo: Build G1 Ajo\n\n8) Felix: B Y1 Felix\n\n9) ajo: Discover G1 Ajo B2 Alpha\n\n10) Felix: Build Y2 Felix\n\n11) ajo: Build G1 Ajo\n\n12) Felix: Build G2 Felix\n\n13) ajo: Build G2 Alpha\n\n14) Felix: D G2 Felix B1 Rogue\n\n15) ajo: Trade G1 R1 Ajo\n\n16) Felix: Move Y1 Felix Rogue\n\n17) ajo: Trade G2 Y2 Alpha\n\n18) Felix: Trade Y1 R1 Felix\n\n19) ajo: Build B1 Ajo\n\n20) Felix: Build G1 Rogue\n\n21) ajo: Build G2 Alpha\n\n22) Felix: Discover G2 Rogue B2 Rebel\n\n23) ajo: Discover G1 Alpha Y1 Beta\n\n24) Felix: Build G2 Felix\n\n25) ajo: Build G3 Beta\n\n26) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Rogue\nBuild G3 Felix\n\n27) ajo: Sacrifice G3 Beta\nBuild G3 Beta\nBuild Y3 Alpha\nBuild R1 Ajo\n\n28) Felix: Sacrifice Y1 Rogue\nMove G2 Rebel Ajo\n\n29) ajo: Attack G2 Ajo\n\n30) Felix: Sacrifice Y2 Felix\nMove G1 Rogue Alpha\nMove G1 Alpha Ajo\nCatastrophe Ajo Green\n\n31) ajo: Sacrifice Y3 Alpha\nMove R1 Ajo Felix\nMove R1 Ajo Felix\nMove B1 Ajo Felix\nCatastrophe Felix Red\n\n32) Felix: Pass\n\tajo: :)\n\n33) ajo: Sacrifice G2 Alpha\nBuild B1 Felix\nBuild B2 Felix\nCatastrophe Felix Blue\n\tFelix: I took the bait! Very well done.\n\n\nHomeworlds Online (SDG# 29475)\nStarted: 2016.3.18, Ended: 2016.6.27\nParticipants: Felix (S), Salmonax (N)\nWinner: Felix\n\n1) Salmonax: Homeworld G1 Y2 B3\n\n2) Felix: Homeworld R3 B2 G3\n\n3) Salmonax: Build B1 Salmonax\n\n4) Felix: B G1 Felix\n\n5) Salmonax: Trade B1 G1 Salmonax\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Salmonax: Build G1 Salmonax\n\n8) Felix: B G2 Felix\n\n9) Salmonax: Discover G1 Salmonax B3 Bees\n\n10) Felix: B G2 Felix\n\n11) Salmonax: Build G2 Salmonax\n\n12) Felix: Discover G2 Felix B1 Echo\n\n13) Salmonax: Build G3 Bees\n\n14) Felix: Build G3 Echo\n\tSalmonax: That&#39;s a lot of green ships. =D\n\n15) Salmonax: Trade G2 R2 Salmonax\n\tFelix: Gosh, sure is! And another!\n\n16) Felix: Trade G3 Y3 Echo\n\n17) Salmonax: Trade G1 Y1 Bees\n\n18) Felix: Trade G2 R2 Felix\n\tFelix: And now it all goes away...\n\n19) Salmonax: Build G1 Bees\n\n20) Felix: Build G2 Felix\n\n21) Salmonax: Discover G1 Bees Y1 Wyeone\n\n22) Felix: Sacrifice G3 Felix\nBuild G2 Echo\nBuild G3 Echo\nBuild G3 Felix\n\n23) Salmonax: Move G3 Bees Echo\nCatastrophe Echo Green\n\n24) Felix: Move G2 Felix Echo\n\n25) Salmonax: Build G2 Wyeone\n\n26) Felix: B Y2 Echo\n\n27) Salmonax: Sacrifice G1 Wyeone\nBuild Y2 Bees\n\n28) Felix: Discover Y2 Echo G3 Pillow\n\n29) Salmonax: Move G2 Wyeone Bees\n\n30) Felix: S G3 Felix\nB Y1 Echo\nB Y3 Pillow\nB Y3 Felix\n\n31) Salmonax: Move Y2 Bees Echo\n\tFelix: Now the yellow is taking over!\n\tSalmonax: lol\n\n32) Felix: Trade Y1 B1 Echo\n\n33) Salmonax: Build Y1 Bees\n\n34) Felix: Trade Y1 G1 Felix\n\n35) Salmonax: Move Y1 Bees Echo\n\n36) Felix: Discover Y3 Echo G3 Crux\n\n37) Salmonax: Trade Y2 R2 Echo\n\n38) Felix: Sacrifice R2 Felix\nAttack R2 Echo\nAttack Y1 Echo\n\n39) Salmonax: Build G2 Bees\n\n40) Felix: Build G3 Echo\n\n41) Salmonax: Trade G2 Y2 Bees\n\n42) Felix: Sacrifice G3 Echo\nBuild G2 Felix\nBuild G3 Echo\nBuild Y1 Echo\n\tSalmonax: What a build-up. =D\n\n43) Salmonax: Build B1 Salmonax\n\tFelix: Indeed :O\n\n44) Felix: Move B1 Echo Pillow\n\n45) Salmonax: Trade G2 R2 Bees\n\tSalmonax: Man, I&#39;m kinda stuck\n\n46) Felix: Build B2 Pillow\n\tFelix: I feel for you. It&#39;s hard to live without those large yellows!\n\n47) Salmonax: Trade B1 R1 Salmonax\n\n48) Felix: Discover G2 Echo B3 Slipstream\n\n49) Salmonax: Move R2 Salmonax Slipstream\n\n50) Felix: B G2 Echo\n\n51) Salmonax: Attack G2 Slipstream\n\n52) Felix: Move G3 Echo Bees\n\n53) Salmonax: Build R1 Salmonax\n\n54) Felix: Sacrifice R2 Echo\nAttack R2 Bees\nAttack Y2 Bees\n\n55) Salmonax: Discover Y1 Bees B1 Stars\n\n56) Felix: Sacrifice Y3 Pillow\nMove G3 Bees Salmonax\nMove G2 Echo Bees\nMove G2 Bees Salmonax\nCatastrophe Salmonax Green\n\n\nHomeworlds Online (SDG# 29303)\nVariants: &quot;Unrated&quot;\nStarted: 2016.3.23, Ended: 2016.3.26\nParticipants: Pheonixian (S), wil (N)\nWinner: Pheonixian\n\n\nHomeworlds Online (SDG# 29499)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.24, Ended: 2016.4.6\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y1 G3 *\n\n2) Simon: Homeworld B1 G2 B3 *\n\tendo: Gotta try a Gemini opening for a change... Despite all the animosity towards them, I believe this one should be powerful when going first.\n\n3) endo: Build G1 Endo\n\tSimon: hf! The b1 in first position is vulnerable for this, but haven&#39;t played it from this side yet.\n\n4) Simon: Build B1 Simon\n\tendo: I&#39;ve played that opening against wil, who had a red half-star, and won, but I thought it&#39;s too slow if the first player uses yellow. Let&#39;s see...\n\n5) endo: Build G1 Endo\n\n6) Simon: Trade B3 Y3 Simon\n\n7) endo: Discover G1 Endo G2 Poset\n\n8) Simon: Build B2 Simon\n\n9) endo: Sacrifice G3 Endo\nBuild G1 Endo\nBuild G2 Poset\nBuild G3 Endo\n\n10) Simon: Discover B2 Simon G3 G3\n\n11) endo: Discover G1 Endo Y3 Filter\n\n12) Simon: Build B2 Simon\n\n13) endo: Build G3 Filter\n\n14) Simon: Build B2 G3\n\n15) endo: Trade G3 R3 Endo\n\n16) Simon: Build B3 G3\n\n17) endo: Move G3 Filter Simon\n\n\tSimon: gg, expected r3 endo-g3.\n\nHomeworlds Online (SDG# 29441)\nStarted: 2016.3.24, Ended: 2016.4.16\nParticipants: nycavri (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) nycavri: Homeworld G3 B1 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tnycavri: TaGG!\n\n4) nycavri: Build Y1 Nycavri\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) nycavri: T Y1 G1 Nycavri\n\n7) ts52: Build G1 Ts52\n\n8) nycavri: B Y1 Nycavri\n\n9) ts52: Discover G1 Ts52 B1 Gonzo\n\n10) nycavri: D Y1 Nycavri G2 Deacon\n\n11) ts52: Move Y1 Ts52 Gonzo\n\n12) nycavri: T G1 R1 Nycavri\n\n13) ts52: Trade Y1 R1 Gonzo\n\n14) nycavri: Build Y1 Nycavri\n\n15) ts52: Build G1 Ts52\n\n16) nycavri: B Y1 Deacon\n\n17) ts52: Build G1 Gonzo\n\n18) nycavri: B Y2 Deacon\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n20) nycavri: B Y2 Nycavri\n\n21) ts52: Trade G3 Y3 Ts52\n\n22) nycavri: D Y2 Deacon B1 May\n\n23) ts52: Move Y3 Ts52 Gonzo\n\n24) nycavri: B Y2 Deacon\n\n25) ts52: Build G3 Ts52\n\n26) nycavri: Sacrifice Y2 Deacon\nM Y1 Deacon May\nM Y1 Deacon May\n\n27) ts52: Discover G2 Gonzo Y2 Bigbird\n\n28) nycavri: S Y3 Nycavri\nM Y2 May Ts52\nM Y1 May Ts52\nM Y1 May Ts52\nC Ts52 Y\n\n29) ts52: Move Y3 Gonzo Ts52\n\n30) nycavri: B Y1 Nycavri\n\n31) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Gonzo\n\n32) nycavri: D Y1 Nycavri B2 Mercury\n\n33) ts52: Move G3 Ts52 Nycavri\n\n34) nycavri: Discover Y1 Mercury B3 Taylor\n\n35) ts52: Sacrifice R1 Gonzo\nAttack R1 Nycavri\n\n36) nycavri: Move Y1 Taylor Ts52\n\n37) ts52: Attack Y2 Nycavri\n\n38) nycavri: B Y1 Nycavri\n\n39) ts52: Build Y2 Nycavri\nCatastrophe Nycavri Yellow\n\tts52: Thanks for the game!\n\tnycavri: Thank you, too.\n\n\nHomeworlds Online (SDG# 29506)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.26, Ended: 2016.4.2\nParticipants: mneme (S), Felix (N)\nWinner: mneme\n\n1) Felix: H B3 Y1 G3\n\tFelix:  Thanks for  accepting. Good luck! \n\n2) mneme: Homeworld B1 G2 Y3\n\n3) Felix: B G1 Felix\n\n4) mneme: Build Y1 Mneme\n\n5) Felix: Trade G1 Y1 Felix\n\n6) mneme: Trade Y1 B1 Mneme\n\n7) Felix: Build Y1 Felix\n\n8) mneme: Build B1 Mneme\n\n9) Felix: Discover Y1 Felix G2 Ramp\n\n10) mneme: Build Y2 Mneme\n\n11) Felix: Build Y2 Felix\n\n12) mneme: Discover Y2 Mneme G3 Sparta\n\n13) Felix: Trade Y2 B2 Felix\n\n14) mneme: Move B1 Mneme Sparta\n\n15) Felix: Build Y2 Felix\n\n16) mneme: Build Y2 Mneme\n\n17) Felix: Trade Y1 R1 Felix\n\n18) mneme: Trade Y2 R2 Mneme\n\n19) Felix: Move B2 Felix Ramp\n\n20) mneme: Discover B1 Mneme G3 Macc\n\n21) Felix: Build G1 Felix\n\n22) mneme: Build B2 Macc\n\n23) Felix: Build G1 Felix\n\n24) mneme: Build Y1 Sparta\n\n25) Felix: Discover G1 Felix B2 Stake\n\n26) mneme: Build B3 Sparta\n\n27) Felix: Build B3 Ramp\n\n28) mneme: Sacrifice Y2 Sparta\nMove B1 Sparta Ramp\nMove B1 Macc Ramp\nCatastrophe Ramp B\n\n29) Felix: Sacrifice G3 Felix\nBuild G1 Stake\nBuild G2 Stake\nBuild G3 Felix\n\n30) mneme: Build R1 Mneme\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild R1 Felix\n\n32) mneme: Sacrifice Y3 Mneme\nMove Y1 Sparta Ramp\nMove Y1 Ramp Felix\nMove B3 Sparta Mneme\nCatastrophe Felix Y\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild Y1 Ramp\n\n34) mneme: Build B1 Mneme\n\n35) Felix: T R1 B1 Felix\n\n36) mneme: Trade B3 Y3 Mneme\n\n37) Felix: S B1 Felix\nT G3 Y3 Felix\n\n38) mneme: Build B1 Mneme\n\tmneme: Check.\n\n39) Felix: T G2 B2 Stake\n\n40) mneme: Sacrifice Y3 Mneme\nMove B1 Mneme Felix\nMove B1 Mneme Felix\nDiscover B2 Macc Y2 Checkmate\n\tFelix: Nicely done!\n\n\tmneme: The out, btw, was:\r\ns y3 felix\r\nm g1 stake macc\r\nm g1 stake macc\r\nm g2 stake macc\r\nc macc g\r\n\n\tFelix: Oh, I see it now. Probably wouldn&#39;t have made a difference. Good game!\n\tmneme: Thanks -- good game!\n\nHomeworlds Online (SDG# 29294)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.26, Ended: 2016.4.4\nParticipants: Simon (S), Pheonixian (N)\nWinner: Simon\n\n1) Pheonixian: Homeworld Y1 B2 G3\n\n2) Simon: Homeworld R1 B3 G3\n\tSimon: Hi, have fun!\n\n3) Pheonixian: Build G1 Pheonixian\n\n4) Simon: Build G1 Simon\n\tPheonixian: Hello, you too! This is my first game so we&#39;ll see how it goes but I think in any case I will enjoy it.\n\n5) Pheonixian: Discover G1 Pheonixian B3 Eris\n\tSimon: No problem -- fire away with questions about rules or this implementation. This implementation forbids catastrophe in the middle of a the turn, catastrophe can only occur at end of turn.\n\n6) Simon: Trade G1 Y1 Simon\n\tPheonixian: Okay good to know about catastrophes. Is that the standard rule that most people play? Also can one pass a turn or is the pass command only for passing extra sacrifice actions?\n\tSimon: Pass is to pass one action. You may pass all actions of your turn. I believe this impl has the end-of-turn-only catastrophe merely due to age. Any-time-during-turn catastrophe is the newer ruleset. I don&#39;t know what people play in real life, it&#39;s advisable to agree. :-)\n\tSimon: Turns without sacrifice have one action, which you may pass.\n\n7) Pheonixian: Build G1 Pheonixian\n\n8) Simon: Build Y1 Simon\n\tPheonixian: Thanks for the information.\n\n9) Pheonixian: Trade G1 B1 Pheonixian\n\n10) Simon: Build Y2 Simon\n\n11) Pheonixian: Build G1 Eris\n\n12) Simon: Trade Y2 B2 Simon\n\n13) Pheonixian: Build G1 Pheonixian\n\n14) Simon: Discover B2 Simon G2 G2\n\n15) Pheonixian: Sacrifice G3 Pheonixian\nBuild G2 Pheonixian\nBuild G2 Eris\nBuild G3 Pheonixian\n\n16) Simon: Build G3 Simon\n\n17) Pheonixian: Trade G2 Y2 Eris\n\n18) Simon: Move Y1 Simon G2\n\n19) Pheonixian: Discover G2 Pheonixian Y3 Sol\n\n20) Simon: Build Y2 G2\n\n21) Pheonixian: Sacrifice G3 Pheonixian\nBuild G2 Sol\nBuild G3 Pheonixian\nBuild B1 Pheonixian\n\n22) Simon: Sacrifice Y2 G2\nMove B2 G2 Eris\nMove B2 Eris Pheonixian\nCatastrophe Pheonixian B\n\n23) Pheonixian: Trade G1 B1 Eris\n\n24) Simon: Build Y2 G2\n\n25) Pheonixian: Sacrifice G3 Pheonixian\nBuild G1 Eris\nBuild B1 Eris\nBuild G3 Pheonixian\n\n26) Simon: Move Y1 G2 Pheonixian\n\n27) Pheonixian: Move B1 Eris Pheonixian\n\n28) Simon: Sacrifice G3 Simon\nBuild Y2 Pheonixian\nBuild Y3 Pheonixian\nPass\nCatastrophe Pheonixian Y\n\tSimon: It&#39;s rare to see no red ships at all. gg, always happy to rematch!\n\n\nHomeworlds Online (SDG# 29366)\nVariants: &quot;Unrated&quot;\nStarted: 2016.3.26, Ended: 2016.4.3\nParticipants: Pheonixian (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\n2) Pheonixian: Homeworld B1 G2 Y3\n\tFelix: Thanks for the game! Have you played before?\n\n3) Felix: Build G1 Felix\n\tPheonixian: Thank you as well! This is my first game so I have a lot to learn. I&#39;m looking forward to it.\n\tFelix: Welcome! I&#39;m pretty familiar with the game, but I&#39;m definitely not the best on here. I&#39;m happy to answer any questions you have or provide tips along the way. Hope you have fun!\n\n4) Pheonixian: Build Y1 Pheonixian\n\n5) Felix: Trade G1 B1 Felix\n\tPheonixian: I hear the best on here are some of the best anywhere so certainly nothing wrong with not yet being ready to match them.\n\tFelix: Yeah. They crush me repeatedly, but the best way to improve is to play against good players and see what tactics they use against you!\n\n6) Pheonixian: Trade Y1 G1 Pheonixian\n\n7) Felix: Build B1 Felix\n\tPheonixian: Indeed so. One learns quite a bit more from playing better players than oneself than from playing worse players.\n\n8) Pheonixian: Build G1 Pheonixian\n\n9) Felix: Discover B1 Felix G1 Ramp\n\tFelix: Certainly! One tip... you notice that I got the last small blue, and now you are unable to trade for blue until you are able to make a medium ship. You COULD trade your large yellow away for a blue, but that wouldn&#39;t be particularly helpful because then you would lose the ability to build yellow. Since I have all the small blues, I have essentially blocked you from getting to blue until you are able to build medium ships. That&#39;s not the ideal situation for you. So, in the early game, when you see that there is only one small left of a color you don&#39;t yet have, it&#39;s wise to try to trade for it and not let your opponent block you out of that color. Make sense? I hope that helps.\n\n10) Pheonixian: Discover G1 Pheonixian B3 Ice\n\n11) Felix: Build B2 Ramp\n\tPheonixian: I see how that makes sense indeed. Thanks. I also noticed you took the last small green but avoided giving me the first new medium ship because I had nowhere available to build it.\n\tFelix: Exactly!\n\n12) Pheonixian: Build G2 Ice\n\n13) Felix: Trade B2 Y2 Ramp\n\n14) Pheonixian: Trade G2 B2 Ice\n\n15) Felix: Build B2 Ramp\n\n16) Pheonixian: Build G2 Pheonixian\n\n17) Felix: Trade B2 R2 Ramp\n\n18) Pheonixian: Trade B2 R2 Ice\n\n19) Felix: B B2 Ramp\n\tFelix:  Smart thinking to get a red when your opponent does. \n\n20) Pheonixian: Trade G2 B2 Pheonixian\n\n21) Felix: Build G2 Felix\n\tPheonixian: Yes I&#39;ve heard that as a basic rule of strategy when I was reading the little writing that there is on Homeworlds strategy. &quot;The Weapon Rule: once your opponent has a weapon, you need a weapon.&quot; \r\nBut even without having already known that that it was clear you could move the R2 into ice, take the G1 and that would be a pretty weak position for me.\r\nI was going to build the G2 but then I realized it was the last one so I reconsidered the wisdom of giving you an easy large green.\n\n22) Pheonixian: Discover B2 Pheonixian G3 Kale\n\tFelix: Yeah, good call. It&#39;s always good to be aware of what your choice will allow your opponent to do. If it lets your opponent get something better than you, it may not be the wisest choice (although sometimes, you just have to bite the bullet and take a less-than-optimal choice)\n\tFelix: You seem to have a pretty solid grasp on the basic strategy. With a little practice, you&#39;ll be doing great\n\n23) Felix: Discover B2 Ramp G3 Scale\n\n24) Pheonixian: Build G2 Ice\n\tPheonixian: I think a solid grasp of basic strategy is a fair evaluation. I think I can generally tell approximately how strong a move is in the short term. I still feel a little bit lost in terms of longer-term strategy, questions like &quot;what colors should I be prioritizing?&quot; and &quot;where is it good to put my ships&quot; and &quot;when is it time to be more threatening?&quot;. If I had to sum it up with one question I&#39;d say I don&#39;t have a good idea of how the overall game plays out. I guess those types of questions are the first part of the deep strategy that makes Homeworlds a great game.\n\tFelix: I think you hit the nail on the head. When I started on here a few months ago, I also had a pretty good understanding of the mechanics and I could discern what seemed to be a strong move in the short term. It took me at least 10-20 games to begin to really see and understand the deeper strategy, and I&#39;m still learning it. Formulating that long term strategy and positioning your ships in an effective way is crucial, but really difficult to pull off, especially against a good opponent.\n\tFelix: One tip I have discovered is that starting with blue/yellow in your homeworld and starting with a large green as your first ship seems to be the most effective opening setup. It can be really helpful in the mid-game to have a large green ship that you can either sacrifice for three build actions, or you can set up a &quot;factory&quot; in your homeworld. This is more difficult to pull off when you have green as one of your home stars, since green quickly becomes a crowded color in your home system. This also comes down to preference and play style, of course, but I have found that I have struggled a lot more when I have included green in my home system instead of as my starting ship.\n\tFelix: Red can be pretty much ignored in the early game, unless of course your opponent gets it. You want to focus on building up your other colors and spreading out as much as possible so you have a lot of build potential. I would say Blue is actually one of the most important colors to prioritize early on. This depends on what your opponent is doing, of course, but blue is a strong color because you can easily trade it for anything. You also want to be careful about trading away the last of any color in a system. If you trade the last of any color, you immediately lose the ability to build that color in that system. It&#39;s usually preferable to try to build a second blue, for instance, and then trade one of those blues for another color. Make sense?\n\tFelix: Lastly, regarding longer-term strategy (and color prioritization) you obviously need to factor in what colors are present in your opponent&#39;s homeworld. I have blue and yellow in mine, so you will probably want to focus on building up enough blue and yellow ships in locations close to my homeworld. Once you have enough to cause a catastrophe, you can work on figuring out a way to move them into my system. Alternatively, you could also try to bring in green to destroy most of my ships (and my biggest ones) and then bring in your own medium or large ship to try to capture my remaining ships. If I changed one of my greens to a red or some other color, though, that would make things trickier for you. It truly is a deep game...\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Ramp\nBuild B3 Scale\n\tPheonixian: I was in fact noticing that exact problem. I wanted to build green but it was getting very crowded quickly in my homeworld, so having yellow/blue as the star and a green ship seems likely to be better. The yellow ship hasn&#39;t seemed particularly useful at the beginning of the game, whereas green would allow a powerful sacrifice it seems. \n\tPheonixian: When I first started blue seemed a bit underpowered as a ship option honestly but as we move through the game it seems better and better, so it seems you are right about that. \r\n\n\tPheonixian: The multiple options for victory conditions also seem to be an important part of the depth of this game. There&#39;s also a really neat effect it seems where ships build up more and more which pushes the game towards catastrophes and ultimately a conclusion. It seems an important part of a well-designed game is a force driving it naturally to a conclusion and Homeworlds definitely has that feeling.\n\n26) Pheonixian: Build Y1 Pheonixian\n\tFelix: Right. I recommend having no more than two of any color in a system if possible. If green is one of your homeworld stars, that makes it impossible to set up a factory... And you&#39;re right, the game does sort of drive itself to a conclusion in that way. I hadn&#39;t thought of it like that, but you&#39;re right!\n\n27) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Ramp\nBuild R1 Ramp\n\tFelix: And here you see an effective use of the factory, which results in me nearly monopolizing blue...\n\n28) Pheonixian: Discover Y1 Pheonixian R3 Warship\n\tPheonixian: Ouch. I planned to sac the g2 to take both blue pieces next turn but somehow completely blanked on the fact that you could just do that and prevent me. \r\nMuch to learn for me it seems.\n\tFelix: That&#39;s okay. Best way to learn is to make mistakes! I&#39;ve made many. It&#39;s always a learning experience.\n\n29) Felix: Trade B3 Y3 Scale\n\n30) Pheonixian: Build B3 Kale\n\tPheonixian: Indeed, making mistakes has much potential to teach us.\r\nThis turn was kind of awkward I wasn&#39;t really sure what would be a good move. That might have been because I got myself into a bad spot and there wasn&#39;t a great move.\n\tFelix: Sometimes there just isn&#39;t a great move available and you have to do the best you can, or try to work toward a better move. It can be very difficult to see good moves in the midge when things are very complex. I often miss the ideal move myself.\n\n31) Felix: Move R2 Ramp Scale\n\n32) Pheonixian: Trade G1 R1 Pheonixian\n\tPheonixian: That makes sense. Considering one&#39;s options for the next turns can probably reduce the difficulty but not eliminate it. The middle game does seem to be the most complex part of the game.\n\n33) Felix: Move Y2 Ramp Warship\n\n34) Pheonixian: Discover Y1 Warship G1 Venus\n\n35) Felix: Build Y1 Scale\n\tFelix: Yeah, in my opinion, the mid game is the easiest place to lose track of things and make mistakes!\n\n36) Pheonixian: Sacrifice G2 Ice\nBuild Y2 Pheonixian\nBuild Y3 Venus\n\n37) Felix: Sacrifice Y3 Scale\nMove Y1 Scale Pheonixian\nMove Y2 Warship Pheonixian\nMove B2 Scale Pheonixian\nCatastrophe Pheonixian Yellow\n\tPheonixian: It makes sense, as this is the time when the most pieces are on the board and therefore the most options are available.\n\n38) Pheonixian: Sacrifice Y3 Venus\nMove R2 Ice Pheonixian\nMove B3 Kale Pheonixian\nMove G1 Ice Pheonixian\n\n39) Felix: S R2 Scale\nA R1 Pheonixian\nA R2 Pheonixian\n\n40) Pheonixian: Trade B3 R3 Pheonixian\n\n41) Felix: B R1 Pheonixian\nC Pheonixian Red\n\tPheonixian: Hm, I didn&#39;t see that when I build the yellow ship. This is a pretty bad place to be in it seems; though I don&#39;t think I lose instantly.\n\tFelix: It&#39;s so easy to overlook stuff like that when the game gets complex. I do it often! It doesn&#39;t look good for you, but you should be able to survive a bit longer and hope I make a mistake!\n\n42) Pheonixian: Trade B2 R2 Kale\n\tFelix: You always want to guard against losing control of red, though. I&#39;m not sure there&#39;s much else you could have done though. I think you made the best move, given the scenario\n\n43) Felix: S R1 Ramp\nA G1 Pheonixian\n\n\tPheonixian: It looks pretty bad and I don&#39;t really see a way out from here honestly. I&#39;ll keep playing a bit but I don&#39;t see myself succeeding in the end.\n\tFelix: Hey, that&#39;s okay. Don&#39;t be discouraged. I think you played very well for a first time! You will definitely be a very solid player after a few games under your belt. I&#39;m happy to rematch any time!\n\tPheonixian: I didn&#39;t expect to win my very first game against an experienced player, so I&#39;m not discouraged I would say. I definitely have a much greater appreciation for the size of the learning curve of this game though :)\r\n\n\tFelix: It can be a bit overwhelming at times, but I&#39;m happy to do what i can to give you pointers. If you want to rematch, I&#39;m happy to play an even more casual game and just talk through it as we go.\n\nHomeworlds Online (SDG# 29514)\nVariants: &quot;Hard time&quot;\nStarted: 2016.3.27, Ended: 2016.4.9\nParticipants: goulo (S), Aristos (N)\nWinner: goulo\n\n1) Aristos: Homeworld B3 R2 G3\n\n2) goulo: Homeworld R2 B1 G3\n\tAristos: Hello. Good game.\n\n3) Aristos: Build G1 Aristos\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Aristos: Trade G3 Y3 Aristos\n\n6) goulo: Trade G3 Y3 Goulo\n\n7) Aristos: Build Y1 Aristos\n\n8) goulo: Build Y1 Goulo\n\n9) Aristos: Trade Y3 B3 Aristos\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) Aristos: Build B1 Aristos\n\n12) goulo: Build Y1 Goulo\n\n13) Aristos: Discover B1 Aristos B1 Plum\n\n14) goulo: Trade Y3 B3 Goulo\n\n15) Aristos: Trade B1 G1 Plum\n\n16) goulo: Build G2 Goulo\n\n17) Aristos: Build G2 Plum\n\n18) goulo: Discover G2 Goulo Y3 Parnaso\n\n19) Aristos: Trade G1 Y1 Plum\n\n20) goulo: Build Y2 Goulo\n\n21) Aristos: Build Y2 Plum\n\n22) goulo: Move Y1 Goulo Parnaso\n\n23) Aristos: Discover Y1 Plum G3 Pear\n\n24) goulo: Sacrifice G2 Parnaso\nBuild Y2 Parnaso\nBuild Y3 Goulo\n\n25) Aristos: Build Y3 Aristos\n\tAristos: Sorry... mistyped g3 as g2. \n\n26) goulo: Move Y2 Parnaso Plum\n\n27) Aristos: Trade Y1 R1 Aristos\n\n28) goulo: Move Y2 Plum Pear\n\n29) Aristos: Build Y1 Pear\n\n30) goulo: Sacrifice R1 Goulo\nAttack Y1 Pear\n\n31) Aristos: Move Y2 Plum Pear\nCatastrophe Pear Yellow\n\n32) goulo: Build Y1 Goulo\n\n33) Aristos: Build Y1 Aristos\n\n34) goulo: Trade Y1 R1 Goulo\n\n35) Aristos: Move Y1 Aristos Plum\n\n36) goulo: Build B1 Goulo\n\n37) Aristos: Sacrifice G2 Plum\nBuild Y1 Plum\nBuild Y2 Aristos\n\n38) goulo: Move B1 Goulo Parnaso\n\n39) Aristos: Move Y1 Plum Parnaso\n\n40) goulo: Discover B1 Parnaso Y2 Hesse\n\n41) Aristos: Sacrifice R1 Aristos\nAttack Y1 Parnaso\n\n42) goulo: Discover Y2 Goulo G3 Kalevala\n\n43) Aristos: Build G1 Aristos\n\n44) goulo: Build G2 Goulo\n\n45) Aristos: Move G1 Aristos Plum\n\n46) goulo: Move G2 Goulo Parnaso\n\n47) Aristos: Move Y3 Aristos Plum\n\n48) goulo: Sacrifice R1 Goulo\nAttack Y1 Parnaso\n\n49) Aristos: Move Y1 Plum Parnaso\nCatastrophe Parnaso Yellow\n\n50) goulo: Build G2 Goulo\n\n51) Aristos: Build G2 Plum\n\n52) goulo: Sacrifice G1 Goulo\nBuild B2 Hesse\n\n53) Aristos: Trade Y2 R2 Aristos\n\n54) goulo: Discover B1 Hesse Y1 Parnaseto\n\n55) Aristos: Trade B3 G3 Aristos\n\n56) goulo: Trade B2 G2 Hesse\n\n57) Aristos: Move G2 Plum Hesse\n\n58) goulo: Discover G2 Hesse Y1 Flaveto\n\n59) Aristos: Sacrifice G3 Aristos\nBuild G1 Hesse\nBuild G3 Plum\nBuild G3 Aristos\n\n60) goulo: Sacrifice G2 Flaveto\nBuild B2 Parnaseto\nBuild B2 Parnaseto\n\n61) Aristos: Trade G3 B3 Plum\n\n62) goulo: Build Y1 Goulo\n\n63) Aristos: Move B3 Plum Kalevala\n\n64) goulo: Sacrifice Y2 Kalevala\nMove B1 Parnaseto Aristos\nMove B2 Parnaseto Aristos\n\n65) Aristos: Sacrifice G3 Aristos\nBuild G2 Plum\nBuild G3 Aristos\nBuild B2 Kalevala\n\n66) goulo: Attack R2 Aristos\n\tAristos: Wow. That would&#39;ve been stupid. \n\n67) Aristos: Attack R2 Aristos\n\tgoulo: heh! :)\n\n68) goulo: Pass\n\tAristos: What&#39;s the rule on take backs? I.e. you attack my red ship, I attack right back. You attack again... deadlock. Which of us wins that scenario to break the cycle? \n\tAristos: Hm... found a citation where the official ruling is that such a game is a draw. I&#39;ll assume that&#39;s the case. You can either take a draw by attacking my red ship before you catastrophe or play for victory by catastrophe first. Either way, I&#39;m going to leverage my green advantage while I have it. \n\n69) Aristos: Pass\n\tAristos: Ok, so now if you attack my red (or my green for that matter), I attack back. Stalemate. \n\n70) goulo: Pass\n\tgoulo: there seems to be a technical problem of SDG not providing a way to propose a draw in Homeworlds. Or am I blind and missing it somewhere?\n\tAristos: We have to both pass twice in a row. The problem with that is that if I pass, you press advantage. So the only way to a draw is to agree to it here and then actually execute on it. \n\n71) Aristos: Pass\n\tAristos: You can move your b2 into Aristos to break the cycle. \n\tgoulo: Oh, interesting, I didn&#39;t know we could both pass and that would let SDG recognize it&#39;s a draw. I&#39;m content to agree to a draw if you are. So I officially propose doing that. OK? If you agree to a draw too, then let&#39;s both pass and finish it rather than capturing back and forth the rest of our lives. :)\n\tAristos: I agree.\n\n72) goulo: Pass\n\n\tAristos: I challenged. I&#39;ll resign so you can keep your seat. \n\tgoulo: Thanks, that&#39;s very gracious of you, since I think if we&#39;d kept playing instead of trying to make SDG recognize a draw, you were winning. \n\tgoulo: Too bad Aaron isn&#39;t developing SDG any more. This game needs a &quot;propose draw&quot; option! :)\n\nHomeworlds Online (SDG# 29541)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.3, Ended: 2016.5.4\nParticipants: Felix (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\tTeeTeeTee: Well, if you insist.\n\n2) Felix: Homeworld G3 B1 B3 *\n\tFelix: No one else will accept, either. Good luck!\n\tFelix: h g3 b1 b3*\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) Felix: Build B1 Felix\n\n5) TeeTeeTee: Trade G3 B3 Teeteetee\n\n6) Felix: Trade B3 Y3 Felix\n\n7) TeeTeeTee: Build B2 Teeteetee\n\n8) Felix: Build B2 Felix\n\n9) TeeTeeTee: Trade B3 R3 Teeteetee\n\tFelix: Nice work dodging around that early blue advantage I was going for!\n\n10) Felix: Trade B1 G1 Felix\n\n11) TeeTeeTee: Build R1 Teeteetee\n\n12) Felix: Build Y1 Felix\n\n13) TeeTeeTee: Build G1 Teeteetee\n\n14) Felix: Build G2 Felix\n\n15) TeeTeeTee: Build G2 Teeteetee\n\n16) Felix: Discover G1 Felix B2 Stilt\n\n17) TeeTeeTee: Discover G1 Teeteetee Y3 Sunn\n\n18) Felix: Build G2 Stilt\n\n19) TeeTeeTee: Build G3 Sunn\n\n20) Felix: Build G3 Felix\n\n21) TeeTeeTee: Trade G2 Y2 Teeteetee\n\n22) Felix: Trade G2 R2 Felix\n\n23) TeeTeeTee: Sacrifice G3 Sunn\nBuild G2 Teeteetee\nBuild G2 Teeteetee\nBuild G3 Sunn\n\n24) Felix: Move Y1 Felix Stilt\n\n25) TeeTeeTee: Move B2 Teeteetee Sunn\n\n26) Felix: Move G1 Stilt Sunn\n\n27) TeeTeeTee: Sacrifice G3 Sunn\nBuild G3 Sunn\nBuild B1 Sunn\nBuild B3 Sunn\n\n28) Felix: Discover B2 Felix Y2 Stamp\n\n29) TeeTeeTee: Move B2 Sunn Stamp\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Stilt\nBuild R1 Felix\nBuild B3 Stamp\n\n31) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove B1 Sunn Stamp\nMove G3 Sunn Stamp\nCatastrophe Stamp Blue\n\n32) Felix: Move G1 Sunn Teeteetee\nCatastrophe Teeteetee Green\n\n33) TeeTeeTee: Build B1 Sunn\n\n34) Felix: Trade G2 B2 Stilt\n\n35) TeeTeeTee: Move B1 Sunn Stamp\n\n36) Felix: Move R1 Felix Stilt\n\n37) TeeTeeTee: Sacrifice G3 Stamp\nBuild B2 Sunn\nBuild B3 Stamp\nBuild B3 Stamp\n\n38) Felix: Discover B2 Stilt G3 Stake\n\n39) TeeTeeTee: Move B3 Stamp Stake\n\n40) Felix: Build R1 Stilt\n\n41) TeeTeeTee: Trade B3 R3 Sunn\n\n42) Felix: Discover R1 Stilt Y3 Stall\n\n43) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack B2 Stake\n\n44) Felix: Discover R1 Stilt B3 Stab\n\n45) TeeTeeTee: Trade B3 R3 Stake\n\n46) Felix: Discover G3 Stilt B3 Onus\n\n47) TeeTeeTee: Build G1 Sunn\n\n48) Felix: B G1 Onus\n\n49) TeeTeeTee: Move B3 Stamp Stall\n\n50) Felix: Build G2 Onus\n\n51) TeeTeeTee: Build G2 Sunn\n\n52) Felix: S G2 Onus\nB R1 Stab\nB R2 Stab\n\n53) TeeTeeTee: Move B3 Stall Teeteetee\n\n54) Felix: Sacrifice G3 Onus\nBuild Y1 Felix\nBuild Y1 Stilt\nBuild Y2 Stilt\n\n55) TeeTeeTee: Move R3 Sunn Stilt\n\n56) Felix: Sacrifice Y2 Stilt\nMove R2 Stab Stamp\nMove Y1 Stilt Stab\n\n57) TeeTeeTee: Attack Y1 Stilt\n\n58) Felix: A B1 Stamp\n\n59) TeeTeeTee: Move R3 Stilt Onus\n\n60) Felix: S G1 Onus\nB Y2 Stab\n\n61) TeeTeeTee: Trade R3 G3 Onus\n\n62) Felix: Trade R1 G1 Stab\n\n63) TeeTeeTee: Trade G1 R1 Sunn\n\n64) Felix: Move R2 Felix Stilt\n\n65) TeeTeeTee: Sacrifice G3 Onus\nBuild B3 Sunn\nBuild R2 Stake\nBuild R3 Sunn\n\n66) Felix: A Y1 Stilt\n\n67) TeeTeeTee: Move B3 Sunn Stamp\n\n68) Felix: M B1 Stamp Stall\n\n69) TeeTeeTee: Sacrifice R1 Sunn\nAttack R2 Stamp\n\n70) Felix: Build R1 Stab\n\n71) TeeTeeTee: Move B3 Stamp Stab\n\n72) Felix: Sacrifice Y2 Stab\nMove R1 Stab Teeteetee\nMove R1 Stab Teeteetee\n\n73) TeeTeeTee: Sacrifice R3 Teeteetee\nAttack Y1 Stab\nAttack G1 Stab\nAttack R1 Teeteetee\n\n74) Felix: Trade Y3 R3 Felix\n\n75) TeeTeeTee: Trade R3 Y3 Stake\n\n76) Felix: Build R3 Felix\n\n77) TeeTeeTee: Sacrifice Y3 Stake\nMove R2 Stake Stamp\nMove R2 Stamp Felix\nMove R2 Stamp Felix\nCatastrophe Felix Red\n\n78) Felix: Build Y2 Felix\n\n79) TeeTeeTee: Move B3 Stab Stilt\n\n80) Felix: Trade Y2 G2 Felix\n\n81) TeeTeeTee: Sacrifice Y1 Stab\nMove B3 Stilt Felix\n\n82) Felix: Sacrifice B1 Stall\nTrade R1 B1 Teeteetee\n\n83) TeeTeeTee: Sacrifice R3 Sunn\nAttack G2 Felix\nAttack Y1 Felix\nAttack B1 Teeteetee\n\tFelix: Nicely done. I think you will have me soon!\n\n\tFelix: Good game. Thanks for accepting my challenge!\n\tTeeTeeTee: Thanks for the game. Just out of curiosity, how come you decided to sacrifice your last large ship in the centre? It was a very valuable piece at that point. ( http://superdupergames.org/?page=archive_play&amp;gid=29541&amp;idx=53 )\n\tFelix: I did it to try to gain a monopoly on yellow, but in retrospect, that was an unwise decision. As you said, I couldn&#39;t maintain the monopoly, and I ended up getting destroyed by my lack of large ships.\n\nHomeworlds Online (SDG# 29496)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.8, Ended: 2016.4.15\nParticipants: wil (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld Y3 B2 G3\n\n\torangeblood: My first-ever Homeworlds game. No clue what to do, haha.\n\nHomeworlds Online (SDG# 29517)\nStarted: 2016.4.9, Ended: 2016.4.19\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: H B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tFelix: Likewise!\n\n4) Felix: B G1 Felix\n\tts52: I can&#39;t wait for PAX East! I know I&#39;ll be able to get in a few games of homeworlds in person!\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Felix: Trade G1 B1 Felix\n\tFelix: Aw man, sounds awesome! I wish I could make it, but I won&#39;t be able to. I hope you have a great time! \n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build B1 Felix\n\n9) ts52: Trade G1 Y1 Ts52\n\n10) Felix: Discover B1 Felix G2 Grip\n\n11) ts52: Build Y1 Ts52\n\n12) Felix: Build B2 Grip\n\n13) ts52: Move Y1 Ts52 Gonzo\n\n14) Felix: Trade B2 Y2 Grip\n\n15) ts52: Build Y2 Gonzo\n\n16) Felix: Build Y2 Grip\n\n17) ts52: Discover Y1 Ts52 G3 Kermit\n\n18) Felix: Move Y2 Grip Kermit\n\n19) ts52: Build Y3 Kermit\n\n20) Felix: Build Y3 Grip\n\n21) ts52: Move Y1 Kermit Grip\n\n22) Felix: Trade Y2 R2 Grip\n\n23) ts52: Trade Y2 R2 Gonzo\n\n24) Felix: M Y3 Grip Gonzo\n\n25) ts52: Discover R2 Gonzo Y2 Bigbird\n\n26) Felix: A Y1 Grip\n\n27) ts52: Move G1 Gonzo Bigbird\n\n28) Felix: B B2 Grip\n\n29) ts52: Build R1 Bigbird\n\n30) Felix: Move Y3 Gonzo Bigbird\n\n31) ts52: Sacrifice R1 Bigbird\nAttack Y2 Kermit\n\n32) Felix: Sacrifice R2 Grip\nAttack R2 Bigbird\nAttack G1 Bigbird\n\n33) ts52: Trade Y1 R1 Gonzo\n\n34) Felix: Discover B2 Grip R3 Surge\n\n35) ts52: Build G1 Ts52\n\n36) Felix: Sacrifice G3 Felix\nBuild B2 Felix\nBuild B3 Surge\nBuild B3 Surge\n\n37) ts52: Move G1 Ts52 Gonzo\n\n38) Felix: Sacrifice Y3 Bigbird\nMove B3 Surge Ts52\nMove B3 Surge Ts52\nDiscover G1 Bigbird Y3 Oster\n\n39) ts52: Sacrifice Y2 Kermit\nMove Y3 Kermit Bigbird\nMove Y3 Bigbird Felix\n\n40) Felix: Sacrifice R2 Bigbird\nAttack G3 Ts52\nPass\n\tFelix: Scared me to death to not have a large at home. I think maybe it paid off though?\n\tts52: Definitely a scary thought, but I think you have me.\n\n\tFelix: Looks like it! Great game. :)\n\tts52: Very good game.\n\nHomeworlds Online (SDG# 29400)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.14, Ended: 2016.4.17\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29396)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.14, Ended: 2016.4.17\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29511)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.14, Ended: 2016.5.2\nParticipants: Simon (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\n2) Simon: Homeworld B3 R1 G3\n\tFelix: Hi, good luck and have fun!\n\tSimon: You too, have fun!\n\n3) Felix: B G1 Felix\n\n4) Simon: Build G1 Simon\n\n5) Felix: T G1 B1 Felix\n\n6) Simon: Trade G1 B1 Simon\n\n7) Felix: B B2 Felix\n\n8) Simon: Build B2 Simon\n\n9) Felix: Discover B2 Felix G3 Rise\n\n10) Simon: Trade B2 Y2 Simon\n\n11) Felix: Build B2 Rise\n\n12) Simon: Build Y1 Simon\n\n13) Felix: Trade B2 Y2 Rise\n\n14) Simon: Discover Y2 Simon G2 G2\n\n15) Felix: Build B2 Rise\n\n16) Simon: Move B1 Simon G2\n\n17) Felix: Discover B2 Rise G2 Whorl\n\n18) Simon: Build Y1 G2\n\n19) Felix: B G1 Felix\n\n20) Simon: Trade Y1 R1 G2\n\n21) Felix: Trade G1 R1 Felix\n\n22) Simon: Build R2 G2\n\n23) Felix: Build B2 Rise\n\n24) Simon: Build B3 G2\n\n25) Felix: B B3 Whorl\n\n26) Simon: Trade B3 Y3 G2\n\n27) Felix: Trade B2 R2 Rise\n\n28) Simon: Build G1 Simon\n\n29) Felix: Build G1 Felix\n\n30) Simon: Discover Y2 G2 B3 B3\n\n31) Felix: Build B2 Rise\n\n32) Simon: Move R1 G2 B3\n\n33) Felix: Discover G1 Felix Y3 Opus\n\n34) Simon: Sacrifice G3 Simon\nBuild Y1 G2\nBuild Y1 B3\nBuild Y3 Simon\n\n35) Felix: Sacrifice G1 Opus\nBuild Y3 Rise\n\tFelix: I have seen the face of death, and it is yellow.\n\n36) Simon: Discover Y1 G2 R3 R3\n\n37) Felix: Build R2 Rise\n\tSimon: Hnn, the good y3s\n\n38) Simon: Build R3 G2\n\n39) Felix: Build R3 Felix\n\n40) Simon: Trade Y3 G3 Simon\n\n41) Felix: Discover R1 Felix Y3 Slipstream\n\n42) Simon: Move R3 G2 Slipstream\n\n43) Felix: Move R3 Felix B3\n\n44) Simon: Sacrifice Y2 B3\nDiscover Y1 B3 G1 G1\nMove R1 B3 G2\n\n45) Felix: Discover B2 Rise Y2 Codex\n\n46) Simon: Attack R1 Slipstream\n\n47) Felix: S Y2 Rise\nM B2 Whorl Simon\nM B3 Whorl Simon\n\n48) Simon: Attack B3 Simon\n\n49) Felix: M B2 Codex Simon\nC Simon Blue\n\n50) Simon: Sacrifice Y3 G2\nMove R1 G2 Rise\nMove R2 G2 Rise\nMove Y1 R3 Felix\nCatastrophe Rise R\n\n51) Felix: Trade B2 R2 Rise\n\n52) Simon: Build B2 G2\n\tSimon: Expensive defense x_X\n\tFelix: Definitely, but well done! I didn&#39;t realize you had a way out there...\n\n53) Felix: Build R1 Rise\n\n\tSimon: gg\n\tFelix: Likewise! Well fought!\n\nHomeworlds Online (SDG# 29518)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.15, Ended: 2016.4.26\nParticipants: Felix (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld Y3 B2 G3\n\n2) Felix: H G3 B2 Y3\n\torangeblood: Hi... first game, no idea what I&#39;m doing! But I&#39;ve heard a lot about it, and looking forward to learning.\n\tFelix: Hey there! Welcome! I&#39;m glad you decided to jump in. It&#39;s and extremely fun game. I&#39;d be happy to help you learn the ropes. I don&#39;t think I&#39;m as scary as some of the other players on here, who are insanely good!\n\n3) orangeblood: Build G1 Orangeblood\n\tFelix: Let me know if you have any questions, and if I think of any tips along the way, I&#39;ll give em! Most importantly, have fun\n\n4) Felix: B Y1 Felix\n\torangeblood: Thanks for offer to help! First question: Why did you choose to build a a star system the same size as mine. Everything I&#39;ve read indicates it&#39;s better not to... but I&#39;m guessing the answer is that a more experienced player can take advantage of that. :)\n\tFelix: You know what? I actually didn&#39;t notice I built the same size until now! The fortress setup, which is what we both have, is usually considered weaker, and I usually pick it when playing against a new player. I didn&#39;t look closely enough at your setup and just made a mistake :) I actually did intend them to be different. This will make for a much faster and more close range game!\n\tFelix: Your choice of starting colors is really smart. I normally don&#39;t put green as one of my starting homeworld colors. A yellow/blue star with a green ship is the most effective from my experience. It all comes down to personal preference though!\n\n5) orangeblood: Trade G1 B1 Orangeblood\n\n6) Felix: T Y1 B1 Felix\n\torangeblood: I notice you trade for a blue ship early... why don&#39;t you start with a blue ship? Because you want to keep a large yellow at home?\n\torangeblood: (BTW, do you know about the Pyramid Arcade Kickstarter currently underway?)\n\tFelix: Usually I start with a large green, actually. It&#39;s one of the most useful colors to have a large early on because you can sacrifice it any time for three builds, and it can also allow you to set up a &quot;factory&quot; situation. I tend to trade for blue early on because it&#39;s usually one of the more contested colors in the game for some reason so it&#39;s good to try to get some of it early, especially if your opponent is also going for it.\n\tFelix: If there are only two small a of a particular color on the second turn, you usually want to trade your first small ship for that color to make sure you don&#39;t get locked out of it.\n\tFelix: And yes! I backed it! Looks awesome :)\n\n7) orangeblood: Build G1 Orangeblood\n\n8) Felix: Build Y1 Felix\n\torangeblood: The rules seem pretty easy to grasp... but i wont have much of a clue what to do until I&#39;ve played a couple times. \n\torangeblood: I backed the Kickstarter also... even though I&#39;ve not played any of the pyramid games. \n\n9) orangeblood: Trade G1 Y1 Orangeblood\n\tFelix: Yeah, this is one of those games where the basic rules are pretty simple, and the short-term strategy isn&#39;t too hard, but developing longer term strategies takes quite a few games to understand!\r\n\r\nI think you will find the pyramid arcade well worth your money. it includes so many games, and the ability to play many more!\n\n10) Felix: Trade Y1 G1 Felix\n\torangeblood: I&#39;ve sort of been frozen for a couple of days trying to figure out what to do, so I&#39;ve decided to just do some things and not worry about making mistakes in this first game. :)\n\tFelix: Yeah, don&#39;t worry about it! You will make a lot of mistakes in your first few games. I still make mistakes, and I&#39;ve played 70 games now!\n\tFelix: Just do what seems best, and you will learn as you go when you see the consequences of your moves :) \n\n11) orangeblood: Discover B1 Orangeblood G1 Bevo\n\tFelix: Trading for a yellow was a pretty good idea. I&#39;d recommend sending your yellow or blue ship out to a new planet soon. One thing to keep in mind, though, is that if you only have one of a color in a system, then moving that color to a new system will immediately lose you the ability to build that color in the old system. So if you move out your blue now, for instance, you will no longer be able to build blue in your homeworld. That isn&#39;t necessarily always a bad thing, especially since you have blue as one of your home stars, so you don&#39;t really want to build much blue there anyway and risk a catastrophe. But it&#39;s just a good tip to remember that if you build a second ship of a color first and THEN move a ship to discover new lands, you will have the ability to build that color in both systems.\n\n12) Felix: Discover G1 Felix B1 Opus\n\torangeblood: Thanks for all the great tips!\n\n13) orangeblood: Trade B1 R1 Bevo\n\n14) Felix: Build G1 Opus\n\torangeblood: Red hits the table! ;)\n\tFelix: Oh snap! It&#39;s getting real now!\n\n15) orangeblood: Build G2 Orangeblood\n\n16) Felix: Trade G1 R1 Opus\n\tFelix: It may have been an error on my part to allow you to build the first medium green like that. I didn&#39;t really have too much of a choice though. Nice job taking advantage of it!\n\n17) orangeblood: Move Y1 Orangeblood Bevo\n\n18) Felix: Build Y1 Felix\n\n19) orangeblood: Move R1 Bevo Felix\n\torangeblood: Do you know why when I try move to Felix, it tells me the system does not exist?\n\n20) Felix: Sacrifice R1 Opus\nAttack R1 Felix\n\torangeblood: Ah, I wasn&#39;t writing my own system first. \n\n21) orangeblood: Build Y1 Bevo\n\tFelix: Glad you figured it out! And here&#39;s a painful lesson to learn. It&#39;s possible to sacrifice a red in one system and attack a ship in a different system. That&#39;s how I was able to take over your small red just now, giving me the only red at this point. You should always look out for that possibility! But I don&#39;t think it has set you back too much.\n\torangeblood: Ah! Good thing to know. Now that you say it it makes sense. \n\n22) Felix: Move Y1 Felix Opus\n\n23) orangeblood: Build Y2 Bevo\n\n24) Felix: Build Y2 Opus\n\n25) orangeblood: Move Y2 Bevo Orangeblood\n\n26) Felix: Trade Y2 B2 Opus\n\torangeblood: I assume if you sacrifice to construct in another system... you must still have a ship in the system you&#39;re building in of the same color you want to construct?\n\tFelix: Yep. You are correct. You still have to have a ship in the target system of that color. This is crucial when you try to set up a &quot;factory.&quot; You need to have a large green on your home system, plus another green. Then, when there are no greens left, or only larges left, you can sacrifice the large green, then immediately rebuild it in the same system, and you can also use two other build actions. It is difficult to set up but can be very effective when used properly.\n\n27) orangeblood: Trade Y2 R2 Orangeblood\n\n28) Felix: Build G1 Opus\n\n29) orangeblood: Trade G3 B3 Orangeblood\n\n30) Felix: Build Y2 Opus\n\n31) orangeblood: Build G2 Orangeblood\n\n32) Felix: Discover B1 Felix R1 Echo\n\n33) orangeblood: M G2 Orangeblood Bevo\n\n34) Felix: S Y2 Opus\nM B2 Opus Orangeblood\nM B1 Echo Orangeblood\nC Orangeblood Blue\n\n35) orangeblood: Move R2 Orangeblood Opus\n\torangeblood: Other than avoiding a catastrophe, what are the advantages of finding a second system like you did? (Unless that gives away what you&#39;re going to do, haha.)\n\tFelix: I don&#39;t mind giving away my plan at the moment :) the main benefit is just spreading your ships out so you can avoid a catastrophe and build more ships. It really limits how large your fleet can grow if you don&#39;t spread them out. In this case, however, I wanted to have two blue ships that are each one jump away from your system. It would have been too risky to put both blue ships in a blue system because you could have easily caused a catastrophe there and blown up the whole system\n\torangeblood: I think I know what your next move is. I&#39;ll tell you why if it turns out I&#39;m right. :)\n\n36) Felix: B G2 Opus\n\tFelix: Were you right? :)\n\n37) orangeblood: Attack G2 Opus\n\torangeblood: Yes, and there&#146;s a funny story behind it. I saw you&#146;d answered my question, and just glanced over it without really absorbing what you said. Later I was checking out a video Andy Looney did about the &#147;Bluebird Mistake.&quot;\r\nhttps://www.boardgamegeek.com/video/7488/homeworlds/strategy-lesson-and-bluebird-mistake\r\n\r\nWhich is pretty much what you did &#151; sacrifice a ship to overload a color in the opponent&#146;s home system. Then I went back and read your note more closely, and OF COURSE if you wanted to get two blue ships one jump away from my system, I figured that&#146;s what you had in mind. :)\r\n\r\nNow I get to learn how hard it is to play with one star in my system&#133; and to have no blue!\n\tFelix: Good catch! I made the bluebird mistake myself several times. The best way to learn is to experience it for yourself! Making mistakes is the best way to learn from them so I hope this is helping your improve your game :) it is also challenging to not have a large ship, so you have quite an uphill battle in front of you!\n\n38) Felix: Sacrifice Y3 Felix\nMove G1 Opus Orangeblood\nMove G1 Opus Orangeblood\nMove Y1 Opus Felix\n\tFelix: Here&#39;s another situation where the blue bird mistake is possible. Can you catch it and prevent it?\n\n39) orangeblood: Sacrifice R2 Opus\nAttack G1 Orangeblood\nAttack G1 Orangeblood\n\torangeblood: I guess this will temporarily help.\n\n40) Felix: Build Y2 Felix\n\tFelix: Yep, that will help. Good move!\n\n41) orangeblood: Sacrifice G2 Bevo\nBuild G2 Opus\nBuild G3 Opus\n\tFelix: And another good move. You repelled my attack very nicely, and I may be in trouble now!\n\n42) Felix: Move Y2 Felix Opus\n\n43) orangeblood: Trade G3 R3 Opus\n\n44) Felix: Discover Y2 Opus Y2 Hope\n\n45) orangeblood: S Y1 Bevo\nM R3 Opus Felix\n\n46) Felix: Build R1 Felix\n\n47) orangeblood: Attack Y1 Felix\n\n48) Felix: Build R1 Felix\n\n49) orangeblood: Move Y1 Bevo Felix\nCatastrophe Felix Red\n\torangeblood: Man, you&#39;ve expertly guided me through a dozen learning processes this game. I have to stare at the screen for an hour figuring things out. :)\n\tFelix: I&#39;m glad you&#39;re learning! I actually made quite a mistake myself in this game, and I think I&#39;m about to lose. I hope it has taught you some things though! Would you be up for a rematch?\n\n\tFelix: There&#39;s two different ways you could finish me off right now. Do you see both?\n\torangeblood: I only saw the catastrophe... \n\torangeblood: Absolutely we&#39;ll do a rematch!\r\n\n\tFelix: The catastrophe was by far the more obvious, but you could also have sacrificed your R3 ship in my system and used your three attack actions to take over all three of my small reds with your small yellow. :) Rematch sounds good! If you want, you can just go accept my open challenge on the challenge list\n\tFelix: And nicely done! You played well.\n\torangeblood: Ah, yes. I had actually tried sacrificing the R3 before I had the yellow ship in there, but of course you can&#39;t sacrifice first if you have no other ship in the system. \r\n\r\nI&#39;ll start our new game later on tonight... thanks very much again for all your help!\n\torangeblood: And by the way, what mistake did you make other than taking it easy on a newbie?\n\tFelix: No problem! I&#39;m looking forward to our next game.\n\nHomeworlds Online (SDG# 29608)\nStarted: 2016.4.17, Ended: 2016.4.17\nParticipants: doctorfedora (S), lowtiergrgl (N)\nWinner: doctorfedora\n\n1) lowtiergrgl: Homeworld Y1 G1 R3 *\n\n2) doctorfedora: Homeworld Y1 G3 B3\n\n3) lowtiergrgl: Discover R3 Lowtiergrgl Y2 Pooptown\n\n\nHomeworlds Online (SDG# 29606)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.17, Ended: 2016.10.4\nParticipants: MagicJohn (S), Grosseteste (N)\nWinner: MagicJohn\n\n1) Grosseteste: H Y3 B2 G3\n\n2) MagicJohn: Homeworld B2 G3 B3 *\n\tGrosseteste: Hello and thanks for the game, good luck!\n\n3) Grosseteste: B G1 Grosseteste\n\tMagicJohn: Live long and prosper!\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) Grosseteste: T G1 B1 Grosseteste\n\n6) MagicJohn: Trade B1 Y1 Magicjohn\n\n7) Grosseteste: D B1 Grosseteste Y1 Charlie\n\n8) MagicJohn: Trade Y1 R1 Magicjohn\n\n9) Grosseteste: Build G1 Grosseteste\n\n10) MagicJohn: Build R1 Magicjohn\n\tGrosseteste: Congrats on getting one of your games picked for the Homeworlds demo game video!  I enjoyed it.\n\tMagicJohn: Aaaah.... well.... hmmmm..... didn&#39;t know I had been given an opportunity to publicly humiliate myself.... Where can I find the game?\n\n11) Grosseteste: Trade G1 R1 Grosseteste\n\tGrosseteste: Part of the Kickstarter campaign for Pyramid Arcade, here is the Homeworlds video: https://www.youtube.com/watch?v=7l_IouG6mOA\r\nI only learned it was you when I followed the link in the description.\n\n12) MagicJohn: Trade R1 Y1 Magicjohn\n\n13) Grosseteste: B G1 Grosseteste\n\tMagicJohn: Thanks for the info.\n\n14) MagicJohn: Discover Y1 Magicjohn G1 Strawberry Fields\n\n15) Grosseteste: T G1 B1 Grosseteste\n\n16) MagicJohn: Trade B3 Y3 Magicjohn\n\n17) Grosseteste: M R1 Grosseteste Strawberry\n\tMagicJohn: This opening is becoming something of a learning experience...\n\n18) MagicJohn: Sacrifice R1 Magicjohn\nAttack R1 Strawberry\n\tGrosseteste: For you and me both, brother.\n\n19) Grosseteste: M B1 Charlie Magicjohn\n\tMagicJohn: I suspect that I will NOT create matching homeworld systems again (star sizes) without including a yellow star.\n\n20) MagicJohn: Sacrifice R1 Strawberry\nAttack B1 Magicjohn\n\n21) Grosseteste: Build G1 Grosseteste\n\n22) MagicJohn: Trade B1 R1 Magicjohn\n\n23) Grosseteste: T G1 R1 Grosseteste\n\n24) MagicJohn: Build Y1 Strawberry\n\n25) Grosseteste: B B1 Grosseteste\n\n26) MagicJohn: Build Y1 Magicjohn\n\n27) Grosseteste: Discover B1 Grosseteste G1 Lucy\n\n28) MagicJohn: Build Y2 Strawberry\n\tMagicJohn: Sorry about yet another time delay but Sara (wife) had a TIA and we spent the weekend and Monday in the hospital.\n\n29) Grosseteste: Sacrifice G3 Grosseteste\nBuild B1 Lucy\nBuild B2 Lucy\nBuild B3 Grosseteste\n\tGrosseteste: I would be in no position to complain.  Hope she is feeling better and you can avoid another one.\n\n30) MagicJohn: Build Y2 Magicjohn\n\tMagicJohn: Thnx\n\n31) Grosseteste: T B3 G3 Grosseteste\n\n32) MagicJohn: Discover Y1 Strawberry G2 Walrus\n\n33) Grosseteste: Build B3 Grosseteste\n\n34) MagicJohn: Build Y2 Walrus\n\n35) Grosseteste: D B3 Grosseteste G1 Linus\n\n36) MagicJohn: Build Y3 Walrus\n\n37) Grosseteste: B B3 Grosseteste\n\n38) MagicJohn: Discover Y2 Walrus B3 Bluejway\n\n39) Grosseteste: T B3 R3 Grosseteste\n\n40) MagicJohn: Discover Y1 Strawberry B3 Revolution\n\n41) Grosseteste: Move R3 Grosseteste Strawberry\n\n42) MagicJohn: Move Y2 Strawberry Bluejway\n\n43) Grosseteste: Build G2 Grosseteste\n\n44) MagicJohn: Build R1 Magicjohn\n\n45) Grosseteste: S G3 Grosseteste\nB G2 Grosseteste\nB G3 Grosseteste\nB R2 Strawberry\n\n46) MagicJohn: Build R2 Magicjohn\n\n47) Grosseteste: Move G2 Grosseteste Lucy\n\n48) MagicJohn: Move R1 Magicjohn Strawberry\n\n49) Grosseteste: Sacrifice G3 Grosseteste\nBuild G3 Grosseteste\nBuild G3 Lucy\nBuild R2 Grosseteste\n\n50) MagicJohn: Build R3 Magicjohn\n\n51) Grosseteste: Build R3 Grosseteste\n\n52) MagicJohn: Move R1 Magicjohn Strawberry\nCatastrophe Strawberry Red\n\n53) Grosseteste: Discover R3 Grosseteste G1 Charlie\n\n54) MagicJohn: Build R1 Magicjohn\n\n55) Grosseteste: S G3 Grosseteste\nB G3 Grosseteste\nB R1 Charlie\nB R2 Grosseteste\n\n56) MagicJohn: Move R1 Magicjohn Charlie\n\n57) Grosseteste: Move R2 Grosseteste Lucy\n\n58) MagicJohn: Build R3 Magicjohn\n\n59) Grosseteste: Sacrifice G2 Grosseteste\nBuild G2 Grosseteste\nPass\n\n60) MagicJohn: Move R2 Magicjohn Charlie\nCatastrophe Charlie Red\n\n61) Grosseteste: Discover R1 Grosseteste R1 Rerun\n\n62) MagicJohn: Build R1 Magicjohn\n\n63) Grosseteste: Build G1 Grosseteste\n\n64) MagicJohn: Move R1 Magicjohn Rerun\n\n65) Grosseteste: Sacrifice G3 Grosseteste\nBuild G3 Grosseteste\nBuild R2 Rerun\nBuild R3 Grosseteste\nCatastrophe Rerun Red\n\n66) MagicJohn: Build R1 Magicjohn\n\n67) Grosseteste: M R2 Grosseteste Linus\n\n68) MagicJohn: Discover Y1 Magicjohn R1 Honeypie\n\n69) Grosseteste: S G3 Grosseteste\nB R1 Grosseteste\nB R2 Grosseteste\nB G3 Grosseteste\n\n70) MagicJohn: Move R1 Magicjohn Honeypie\n\n71) Grosseteste: Move R2 Grosseteste Honeypie\n\n72) MagicJohn: Move Y1 Honeypie Walrus\n\n73) Grosseteste: Attack R1 Honeypie\n\n74) MagicJohn: Move Y1 Walrus Revolution\n\n75) Grosseteste: Sacrifice G1 Grosseteste\nBuild G1 Grosseteste\n\n76) MagicJohn: Move Y3 Magicjohn Honeypie\n\n77) Grosseteste: Move R1 Grosseteste Honeypie\nCatastrophe Honeypie Red\n\n78) MagicJohn: Build Y3 Walrus\n\n79) Grosseteste: Sacrifice G3 Grosseteste\nBuild R1 Linus\nBuild R1 Grosseteste\nBuild G3 Grosseteste\n\n80) MagicJohn: Discover Y3 Walrus R1 Blackbird\n\n81) Grosseteste: B R2 Grosseteste\n\n82) MagicJohn: Move Y1 Walrus Bluejway\n\n\tDraw5PlayAll: If you want, I have some advice... but I need permission or else I break the Prime Directive.\n\tDraw5PlayAll: On the other hand, Grosseteste has very little time.\n\tGrosseteste: I&#39;ve been thinking about this for several moves now.  I don&#39;t see a way to force a trade for some yellow.  I would like a draw, but I don&#39;t think the rules allow it.  Incidentally, I may be posting this position in different places later to ask for advice on something we missed or to brainstorm a draw mechanic for the game (perhaps 3 consecutive catastrophes of the same color might be a draw?).\n\tGrosseteste: Just resigned so we can kibitz in earnest.  So what are you thinking, Draw5PlayAll?  How would you break the impasse?\n\tDraw5PlayAll: First off, there was an &quot;Offer Draw&quot; button. Second, the only way to draw by force is to give up your homeworld to destroy the other, e.g. sac the last yellow and move 3 blues in and destroy the second half.\r\n\r\nBelay my idea. I wanted to suggest a way for MJ to send 2 yellows in and then another next turn, keeping the Y3s. This fails since Grosseteste can use the Y3 star.\n\tMagicJohn: It was my thinking that if I exploded gross&#39;s yellow star that he could trade for the dead yellow then use his green/blue technologies to out-build me.\n\tDraw5PlayAll: Oh well. Congratulation on the ladder promotion!\n\tGrosseteste: Where is the offer draw button in Homeworlds?\n\tGrosseteste: My thought was the same.  Also, good game MagicJohn!\n\tMagicJohn: Thanks for an interesting game.......We should have figured out some way of getting a draw......\n\tDraw5PlayAll: There are plenty of ways.\r\n1. Both Homeworlds are destroyed if someone sacs (or moves) their last ship there to destroy the opponent. Andy said this makes a draw.\r\n2. All blue and yellow is removed, and neither player can do anything useful with the green and red.\r\n3. Both players are fighting over a large ship, and they keep attacking forever. If either side backs off they either lose or have a bad position.\r\n4. A fortress like in this game; destroying one star gives the opponent the chance to kill both of yours.\r\n\r\nAnd there are likely many more. This game (and also Praetorian) should have the draw feature.\r\n\r\nI think I was thinking of Martian Chess which has a draw feature.\n\nHomeworlds Online (SDG# 29609)\nStarted: 2016.4.17, Ended: 2016.4.22\nParticipants: doctorfedora (S), lowtiergrgl (N)\nWinner: lowtiergrgl\n\n1) lowtiergrgl: Homeworld G1 Y1 R3 *\n\n2) doctorfedora: Homeworld R2 B1 G3\n\n3) lowtiergrgl: Build R1 Lowtiergrgl\n\n4) doctorfedora: Build G1 Doctorfedora\n\n5) lowtiergrgl: Build R1 Lowtiergrgl\n\n6) doctorfedora: Trade G1 Y1 Doctorfedora\n\n7) lowtiergrgl: Discover R1 Lowtiergrgl B3 Pooptown\n\n8) doctorfedora: Discover Y1 Doctorfedora G3 Sloam\n\n9) lowtiergrgl: Move R3 Lowtiergrgl Pooptown\n\n10) doctorfedora: Build Y1 Sloam\n\n11) lowtiergrgl: Build R1 Lowtiergrgl\n\n12) doctorfedora: Build Y2 Sloam\n\n13) lowtiergrgl: Build R2 Lowtiergrgl\n\n14) doctorfedora: Discover Y1 Sloam B2 Funkdunker\n\n15) lowtiergrgl: Move R1 Lowtiergrgl Sloam\n\n16) doctorfedora: Move Y1 Sloam Funkdunker\n\n17) lowtiergrgl: Build R2 Sloam\n\n18) doctorfedora: Move Y2 Sloam Funkdunker\n\n19) lowtiergrgl: Build R3 Lowtiergrgl\n\n20) doctorfedora: Trade Y1 G1 Funkdunker\n\n21) lowtiergrgl: Build R3 Sloam\n\n22) doctorfedora: Build Y1 Funkdunker\n\n23) lowtiergrgl: Trade R3 Y3 Pooptown\n\n24) doctorfedora: Build G1 Doctorfedora\n\tdoctorfedora: what am I even trying to do\n\tlowtiergrgl: It&#39;s a mystery kek\r\n\r\nI&#39;m surprised how much pressure a green ship can put on from it&#39;s homeworld though. It seems like a much faster method of what I&#39;m trying to do right now, kek\n\n25) lowtiergrgl: Sacrifice Y3 Pooptown\nMove R3 Sloam Doctorfedora\nMove R3 Lowtiergrgl Pooptown\nMove R3 Pooptown Doctorfedora\n\n26) doctorfedora: Trade G3 R3 Doctorfedora\nCatastrophe Doctorfedora Red\n\n27) lowtiergrgl: Move R2 Lowtiergrgl Pooptown\n\n28) doctorfedora: Build G2 Doctorfedora\n\n29) lowtiergrgl: Trade R2 Y2 Pooptown\n\tdoctorfedora: ohhhh this is not good\n\n30) doctorfedora: Trade Y2 R2 Funkdunker\n\n31) lowtiergrgl: Sacrifice Y2 Pooptown\nMove R2 Sloam Doctorfedora\nMove R1 Sloam Doctorfedora\n\n32) doctorfedora: Build G2 Doctorfedora\n\n33) lowtiergrgl: Trade R2 G2 Doctorfedora\nCatastrophe Doctorfedora Green\n\n\nHomeworlds Online (SDG# 29602)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.19, Ended: 2016.5.23\nParticipants: Felix (S), aRough1 (N)\nWinner: Felix\n\n1) aRough1: Homeworld R1 B2 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\tFelix: Hi there! Is this your first time playing the game? Got any questions? Hope you have fun!\n\n3) aRough1: Build G1 Arough1\n\taRough1: Yeah first timer! Getting used to word commands! Will do my best!\n\n4) Felix: Build G1 Felix\n\tFelix: Not a problem! I&#39;m always happy to help new players get used to the game. The word command system is a bit clunky at first. One tip is that you don&#39;t have to type out the entire word. Just the first letter will suffice. So instead of typing &quot;build g1 aRough1&quot; you could type &quot;b g1 aRough1&quot; Make sense?\n\n5) aRough1: Trade G1 B1 Arough1\n\tFelix: If you have any questions, just let me know!\n\taRough1: Yeah! Cheers for the tip!\n\n6) Felix: Trade G1 B1 Felix\n\n7) aRough1: B G1 Arough1\n\n8) Felix: Build B1 Felix\n\n9) aRough1: Build B2 Arough1\n\n10) Felix: Discover B1 Felix G1 Semper\n\n11) aRough1: Trade B2 Y2 Arough1\n\n12) Felix: B B2 Semper\n\n13) aRough1: T G1 R1 Arough1\n\n14) Felix: Trade B2 R2 Semper\n\n15) aRough1: B B2 Arough1\n\n16) Felix: Build B2 Semper\n\n17) aRough1: Build B3 Arough1\n\n18) Felix: Build B3 Felix\n\tFelix: Ooh, you should be careful not to build four of any color in a system, like you&#39;ve done with blue. I could call a catastrophe now and destroy all your blue. Do you want to take that move back and try something else?\n\n19) aRough1: Trade B3 R3 Arough1\n\tFelix: I&#39;ll give you a pass this time :) But not next time!\n\taRough1: Oh! Dammit!  You shouldt go that easy on me!\n\n20) Felix: Trade B2 Y2 Semper\n\n21) aRough1: Discover Y2 Arough1 Y3 Bowie\n\tFelix: Oh don&#39;t worry. I won&#39;t go easy on you again. That was your one freebie :P\n\n22) Felix: Build Y1 Semper\n\n23) aRough1: Trade B1 Y1 Arough1\n\n24) Felix: Move B1 Felix Semper\n\n25) aRough1: M R1 Arough1 Bowie\n\n26) Felix: Build G1 Felix\n\n\nHomeworlds Online (SDG# 29501)\nStarted: 2016.4.19, Ended: 2016.5.3\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\tFelix: And here we go again :) Good luck!\n\n5) Felix: Trade G1 Y1 Felix\n\tts52: Indeed! Have a good game.\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build Y1 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: Build Y1 Felix\n\n10) ts52: Build B1 Kermit\n\n11) Felix: D Y1 Felix G3 Gorm\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Build Y2 Felix\n\n14) ts52: Discover G1 Ts52 B1 Gonzo\n\n15) Felix: Build Y2 Gorm\n\n16) ts52: Build B2 Kermit\n\n17) Felix: Discover Y1 Felix B3 Fritz\n\tFelix: Uh oh...\n\n18) ts52: Trade B2 Y2 Kermit\n\tFelix: Blue vs. Yellow\n\tts52: Yeah, yellow is a bit more important than blue I&#39;m afraid.\n\n19) Felix: Build Y3 Felix\n\tFelix: Definitely later on, but blue can be much more versatile in the early game, in my opinion. It&#39;s going to be close!\n\n20) ts52: Build Y3 Kermit\n\n21) Felix: Sacrifice Y2 Felix\nMove Y1 Gorm Kermit\nMove Y1 Fritz Kermit\nCatastrophe Kermit Yellow\n\n22) ts52: Build B2 Kermit\n\n23) Felix: Trade Y3 B3 Felix\n\n24) ts52: Trade B2 Y2 Kermit\n\n25) Felix: Move B3 Felix Gorm\n\n26) ts52: Build Y1 Kermit\n\n27) Felix: Build B2 Gorm\n\n28) ts52: Discover B1 Kermit G2 Oscar\n\n29) Felix: D B2 Gorm G1 Issol\n\n30) ts52: Build B3 Kermit\n\n31) Felix: Build B3 Issol\n\n32) ts52: Trade B3 R3 Kermit\n\n33) Felix: Trade B2 R2 Issol\n\n34) ts52: Build G2 Ts52\n\n35) Felix: Build G2 Felix\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Oscar\n\tFelix: Nice maneuvering there on blue. I am still struggling to get a solid grasp on how to best manipulate the piece pool to my advantage.\n\tts52: Thanks, though this game is far from over.\n\n37) Felix: Discover B3 Gorm Y1 Opus\n\n38) ts52: Move Y2 Kermit Oscar\n\n39) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild Y3 Gorm\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Oscar\nBuild R1 Kermit\n\n41) Felix: Move B3 Opus Gorm\n\n42) ts52: Discover Y3 Oscar R3 Elmo\n\n43) Felix: Sacrifice Y2 Felix\nMove Y3 Gorm Kermit\nMove B3 Gorm Kermit\n\n44) ts52: Move R3 Kermit Gorm\n\n45) Felix: Trade B3 R3 Kermit\n\n46) ts52: Build B3 Oscar\n\n47) Felix: Sacrifice Y2 Gorm\nMove B3 Issol Oscar\nPass\nCatastrophe Oscar Blue\n\n48) ts52: Move B2 Kermit Oscar\n\n49) Felix: Sacrifice R2 Issol\nAttack R1 Kermit\nAttack B1 Kermit\n\n50) ts52: Move Y1 Kermit Gorm\n\n51) Felix: Move R3 Kermit Oscar\n\n52) ts52: Sacrifice Y2 Oscar\nMove B2 Oscar Gorm\nMove G1 Gonzo Elmo\n\n53) Felix: T R1 G1 Kermit\n\n54) ts52: Trade G2 R2 Ts52\n\n55) Felix: Discover G1 Kermit B3 Opus\n\n56) ts52: Build G2 Ts52\n\n57) Felix: S G3 Felix\nB G3 Felix\nB B1 Kermit\nB Y1 Kermit\n\n58) ts52: Sacrifice G3 Ts52\nBuild Y2 Elmo\nBuild Y2 Gorm\nBuild G3 Ts52\n\n59) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild R1 Oscar\n\n60) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gorm\nBuild R2 Ts52\n\n61) Felix: Discover B1 Kermit B3 Chuckle\n\tFelix: Things are about to start happening, I have a feeling :)\n\n62) ts52: Sacrifice Y2 Gorm\nMove R2 Ts52 Kermit\nMove R2 Kermit Opus\n\n63) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Chuckle\nBuild B3 Kermit\n\n64) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gorm\nBuild R2 Opus\n\n65) Felix: Sacrifice Y1 Kermit\nDiscover B1 Chuckle Y1 Esper\n\n66) ts52: Attack G1 Opus\n\n67) Felix: Move B1 Kermit Ts52\n\n68) ts52: Sacrifice Y2 Elmo\nMove R1 Gorm Oscar\nMove R2 Opus Oscar\nCatastrophe Oscar Red\n\n69) Felix: Build Y2 Kermit\n\tFelix: Ooh nice. You&#39;ve thrown a serious wrench in my works.\n\n70) ts52: Sacrifice Y2 Gorm\nMove R3 Gorm Felix\nMove Y3 Elmo Felix\n\tFelix: Oops. Hold on. Just saw a serious flaw in my new plan.\n\tts52: Darn.... :) No worries.\n\n71) Felix: Sacrifice Y3 Kermit\nMove B3 Kermit Ts52\nMove B1 Esper Ts52\nMove Y2 Kermit Ts52\nCatastrophe Ts52 Blue\n\tFelix: Sorry if I cut you off mid turn. I think you were about to destroy me :P\n\n72) ts52: Sacrifice R3 Felix\nAttack G3 Felix\nAttack G2 Felix\nAttack Y2 Felix\n\tts52: No worries. I _think_ I have you. But I&#39;ve been wrong before.\n\n\tts52: Very good game though. That was a close one right to the end.\n\tFelix: Yeah that was definitely a nail biter there at the end. Very well fought!\n\tts52: I look forward to a rematch.\n\nHomeworlds Online (SDG# 31896)\nVariants: &quot;Hard time&quot;\nStarted: 2017.4.5, Ended: 2017.4.18\nParticipants: agentofchaos (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) agentofchaos: Homeworld B1 R2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n10) agentofchaos: Discover Y1 Agentofchaos G3 Dreadzone\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G2 B2\nBuild G3 Draw5playall\n\n14) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y1 Dreadzone\nBuild Y2 Dreadzone\n\n15) Draw5PlayAll: Trade G2 Y2 B2\n\n16) agentofchaos: Move Y1 Dreadzone Agentofchaos\n\n17) Draw5PlayAll: Sacrifice Y2 B2\nMove G1 B2 Dreadzone\nMove G1 Dreadzone Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: You got me, well played\n\nHomeworlds Online (SDG# 29629)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.19, Ended: 2016.4.22\nParticipants: kensho (S), slothbear (N)\nWinner: kensho\n\n1) slothbear: Homeworld B2 Y1 G3\n\n2) kensho: Homeworld G1 B2 Y3\n\n3) slothbear: Build G1 Slothbear\n\n4) kensho: Build Y1 Kensho\n\n5) slothbear: Discover G1 Slothbear G3 Katastrofo\n\n6) kensho: Trade Y1 G1 Kensho\n\n7) slothbear: Build G2 Slothbear\n\n8) kensho: Move G1 Kensho Katastrofo\n\n9) slothbear: Trade G2 Y2 Slothbear\n\n10) kensho: Build Y1 Kensho\n\n11) slothbear: Build G2 Slothbear\n\n12) kensho: Build Y1 Kensho\n\n13) slothbear: Trade Y2 B2 Slothbear\n\n14) kensho: Trade Y1 R1 Kensho\n\n15) slothbear: Move B2 Slothbear Katastrofo\n\n16) kensho: Move R1 Kensho Katastrofo\n\n17) slothbear: Move G3 Slothbear Katastrofo\n\n18) kensho: Move Y1 Kensho Katastrofo\n\n19) slothbear: Build B1 Katastrofo\n\n20) kensho: Build R1 Katastrofo\n\n21) slothbear: Trade B2 Y2 Katastrofo\n\n22) kensho: Build Y1 Katastrofo\n\n23) slothbear: Build Y2 Katastrofo\n\n24) kensho: Build Y2 Kensho\n\n25) slothbear: Build Y3 Katastrofo\n\n26) kensho: Trade Y2 B2 Kensho\n\n27) slothbear: Trade Y2 R2 Katastrofo\n\n28) kensho: Move B2 Kensho Katastrofo\n\n29) slothbear: Build G2 Slothbear\n\n30) kensho: Build Y2 Kensho\n\n31) slothbear: Move G2 Slothbear Katastrofo\n\n32) kensho: Move Y2 Kensho Katastrofo\n\n33) slothbear: Build G2 Slothbear\n\n34) kensho: Build Y2 Kensho\n\n35) slothbear: Sacrifice Y2 Katastrofo\nPass\nPass\n\n36) kensho: Trade Y2 R2 Kensho\n\n37) slothbear: Trade G2 Y2 Slothbear\n\n38) kensho: Pass\n\n\nHomeworlds Online (SDG# 29616)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.20, Ended: 2016.6.5\nParticipants: sompm (S), Salmonax (N)\nWinner: Salmonax\n\n1) Salmonax: Homeworld Y1 B2 G3\n\n2) sompm: Homeworld G3 B2 Y3\n\n3) Salmonax: Build G1 Salmonax\n\n4) sompm: Build Y1 Sompm\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) sompm: Build Y2 Sompm\n\n7) Salmonax: Trade Y1 R1 Salmonax\n\n8) sompm: Discover Y2 Sompm B1 Ted\n\n9) Salmonax: Build R1 Salmonax\n\n10) sompm: Trade Y2 G2 Ted\n\n11) Salmonax: Build G1 Salmonax\n\n12) sompm: Build G1 Ted\n\n13) Salmonax: Trade R1 Y1 Salmonax\n\n14) sompm: Build Y2 Sompm\n\n15) Salmonax: Trade G3 Y3 Salmonax\n\n16) sompm: Discover Y2 Sompm B1 Hdmi\n\n17) Salmonax: Discover Y1 Salmonax G3 Submarines\n\n18) sompm: Discover Y1 Sompm G1 Lox\n\n19) Salmonax: Move Y1 Submarines Lox\n\n20) sompm: Build G2 Ted\n\n21) Salmonax: Move Y1 Lox Sompm\n\n22) sompm: Build Y2 Lox\n\n23) Salmonax: Build Y2 Sompm\n\n24) sompm: Sacrifice G2 Ted\nBuild Y3 Hdmi\nBuild G2 Ted\n\n25) Salmonax: Build G2 Salmonax\n\n26) sompm: Trade Y2 R2 Hdmi\n\n27) Salmonax: Build Y2 Sompm\nCatastrophe Sompm Yellow\n\tSalmonax: gg\n\tsompm: Apparently I forgot I was in danger. Good game; thanks!\n\n\nHomeworlds Online (SDG# 29649)\nStarted: 2016.4.26, Ended: 2016.5.12\nParticipants: velgarath2 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B3 G3\n\tFelix: Hola! Tenga un buen juego :) \n\n2) velgarath2: Homeworld G3 B2 Y3\n\n3) Felix: Build G1 Felix\n\n4) velgarath2: Build Y1 Velgarath2\n\tvelgarath2: Gracias! La verdad es que no tengo mucha idea de c&oacute;mo se juega, pero har&eacute; lo que pueda :)\r\n\n\n5) Felix: Trade G1 Y1 Felix\n\tFelix: No hay problema. Estoy feliz de ayudarle a aprender , y responder a cualquier pregunta que tenga ! Adem&aacute;s, espa&ntilde;ol no es mi primera lengua , as&iacute; que perdoname si es malo\n\n6) velgarath2: Build Y2 Velgarath2\n\n7) Felix: Build Y2 Felix\n\n8) velgarath2: Discover Y1 Velgarath2 G1 Alpha\n\n9) Felix: Discover Y2 Felix G2 Opus\n\n10) velgarath2: Trade Y2 B2 Velgarath2\n\n11) Felix: Build Y2 Felix\n\n12) velgarath2: Build Y2 Velgarath2\n\n13) Felix: Trade Y2 B2 Felix\n\n14) velgarath2: Build Y2 Alpha\n\n15) Felix: Build Y3 Opus\n\n16) velgarath2: Sacrifice Y2 Velgarath2\nMove Y1 Alpha Opus\nMove Y2 Alpha Opus\nCatastrophe Opus Y\n\n17) Felix: Build G1 Felix\n\tFelix: Very nice :)\n\n18) velgarath2: Build B1 Velgarath2\n\n19) Felix: Build G1 Felix\n\tvelgarath2: need to go....will resume tomorrow!\n\tFelix: Ok!\n\n20) velgarath2: Build Y1 Velgarath2\n\n21) Felix: Discover G1 Felix Y2 Out\n\n22) velgarath2: Build Y2 Velgarath2\n\n23) Felix: Build G1 Out\n\n24) velgarath2: Trade Y2 G2 Velgarath2\n\n25) Felix: Move B2 Felix Out\n\n26) velgarath2: Discover B2 Velgarath2 R1 Bravo\n\tvelgarath2: discover b2 velgarath2 r1 bravo\n\n27) Felix: Trade G1 R1 Felix\n\n28) velgarath2: Build Y2 Velgarath2\n\n29) Felix: Build B1 Out\n\n30) velgarath2: Discover Y2 Velgarath2 R1 Charly\n\n31) Felix: Trade B2 R2 Out\n\n32) velgarath2: Move G2 Velgarath2 Bravo\n\n33) Felix: Build R2 Felix\n\n34) velgarath2: Build Y2 Velgarath2\n\n35) Felix: Discover Y1 Felix G2 Opus\n\n36) velgarath2: Move Y2 Velgarath2 Bravo\n\n37) Felix: Build Y3 Opus\n\n38) velgarath2: Build Y3 Bravo\n\n39) Felix: Discover G1 Out B1 Rumple\n\n40) velgarath2: Trade Y3 R3 Velgarath2\n\n41) Felix: Discover G1 Out Y3 Bank\n\n42) velgarath2: Build B2 Bravo\n\tvelgarath2: ok...I think I did some things wrong. I misunderstood the firing rule and now I am going to be in trouble. Anyways.....let&#39;s continue and resist\n\n43) Felix: Move Y1 Opus Rumple\n\tFelix: That&#39;s ok. Making mistakes is the best way to learn! We will continue :)\n\n44) velgarath2: Move B1 Velgarath2 Charly\n\n45) Felix: Build G1 Felix\n\n46) velgarath2: Sacrifice B2 Bravo\nTrade Y3 R3 Bravo\nTrade Y2 G2 Charly\n\n47) Felix: Build G3 Rumple\n\n48) velgarath2: Move R3 Bravo Out\n\n49) Felix: Sacrifice G3 Rumple\nBuild G3 Rumple\nBuild R2 Out\nBuild R3 Out\nCatastrophe Out Red\n\n50) velgarath2: Build R2 Velgarath2\n\n51) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Opus\nBuild Y3 Rumple\n\tvelgarath2: wow! that was crazy. I certainly lack experience.\n\n52) velgarath2: Sacrifice G2 Bravo\nBuild B2 Charly\nBuild B3 Bravo\n\n53) Felix: Sacrifice G3 Felix\nBuild G2 Bank\nBuild G3 Felix\nBuild B3 Out\n\tFelix: You will learn! It is a very complex game. I had to play many games before I understood all the possibilities.\n\n54) velgarath2: Sacrifice Y2 Bravo\nMove B1 Charly Out\nMove B2 Bravo Out\nCatastrophe Out B\n\n55) Felix: Trade G1 B1 Rumple\n\n56) velgarath2: Build Y2 Velgarath2\n\tFelix: You can see that the &quot;factory&quot; is a very powerful thing.\n\tvelgarath2: indeed...wow!\n\n57) Felix: Build G1 Rumple\n\n58) velgarath2: Move Y2 Velgarath2 Bravo\n\n59) Felix: Move B1 Rumple Bank\n\n60) velgarath2: Build Y2 Velgarath2\n\n61) Felix: Discover G1 Bank B1 Ragg\n\n62) velgarath2: Trade B3 R3 Bravo\n\n63) Felix: Trade R2 B2 Felix\n\n64) velgarath2: Move R3 Bravo Bank\n\n65) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 Bank\nBuild B3 Bank\n\n66) velgarath2: Sacrifice R2 Velgarath2\nAttack B3 Bank\nAttack B3 Bank\n\n67) Felix: Sacrifice G1 Ragg\nBuild B1 Bank\nCatastrophe Bank Blue\n\n68) velgarath2: Attack G2 Bank\n\n69) Felix: T G1 B1 Rumple\n\n70) velgarath2: Build R2 Bank\n\n71) Felix: Move B2 Felix Opus\n\n72) velgarath2: Move Y1 Velgarath2 Charly\n\n73) Felix: Build R2 Felix\n\n74) velgarath2: Move Y2 Bravo Opus\n\n75) Felix: Move Y3 Opus Charly\n\n76) velgarath2: Sacrifice R2 Bank\nAttack Y2 Opus\nAttack B2 Opus\n\n77) Felix: Attack G2 Charly\n\n78) velgarath2: Sacrifice Y2 Velgarath2\nMove Y2 Opus Rumple\nMove Y2 Opus Rumple\nCatastrophe Rumple Y\n\n79) Felix: Sacrifice R2 Felix\nAttack Y1 Charly\nAttack B2 Charly\n\n80) velgarath2: Build R1 Bank\n\n81) Felix: Sacrifice G3 Felix\nBuild G1 Charly\nBuild G1 Rumple\nBuild G3 Felix\n\n82) velgarath2: Build R2 Bank\n\n83) Felix: Build B1 Charly\n\n84) velgarath2: Move R2 Bank Rumple\n\n85) Felix: Sacrifice R1 Felix\nAttack R2 Rumple\n\n86) velgarath2: Build B3 Opus\n\n87) Felix: Trade G3 Y3 Rumple\n\n88) velgarath2: Build G3 Bank\n\n89) Felix: Sacrifice Y3 Rumple\nMove B2 Charly Velgarath2\nMove B1 Charly Velgarath2\nMove B1 Rumple Velgarath2\nCatastrophe Velgarath2 Blue\n\n90) velgarath2: Sacrifice B2 Opus\nTrade B3 Y3 Opus\nTrade G2 Y2 Bank\n\n91) Felix: Sacrifice Y3 Charly\nMove G1 Charly Velgarath2\nMove G2 Charly Velgarath2\nMove G1 Rumple Velgarath2\nCatastrophe Velgarath2 Green\n\n\tFelix: Good game! You played very well! I would love to play again any time.\n\nHomeworlds Online (SDG# 29601)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.26, Ended: 2016.5.19\nParticipants: orangeblood (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) orangeblood: Homeworld G1 B2 Y3\n\tFelix: Here we go again! Have fun :)\n\n3) Felix: Build G1 Felix\n\torangeblood: Well, let&#39;s see what happens. Enjoy!\n\n4) orangeblood: Build Y1 Orangeblood\n\tFelix: And you too!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) orangeblood: Trade Y1 G1 Orangeblood\n\n7) Felix: Build G1 Felix\n\n8) orangeblood: Build G2 Orangeblood\n\n9) Felix: Discover G1 Felix B1 Opus\n\n10) orangeblood: Discover G1 Orangeblood B3 Bevo\n\n11) Felix: Build G2 Felix\n\n12) orangeblood: B Y1 Orangeblood\n\n13) Felix: Discover G2 Felix Y1 Opal\n\n14) orangeblood: Build Y2 Orangeblood\n\n15) Felix: Build G2 Felix\n\n16) orangeblood: Build G3 Bevo\n\n17) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Opus\nBuild Y2 Felix\n\n18) orangeblood: Move Y1 Orangeblood Bevo\n\n19) Felix: Trade Y1 R1 Felix\n\n20) orangeblood: Trade G3 R3 Bevo\n\n21) Felix: B G3 Opal\n\tFelix: Good thinking getting a weapon when I do...\n\n22) orangeblood: Build R1 Bevo\n\n23) Felix: Trade G1 B1 Opus\n\torangeblood: I read somewhere that&#39;s what you&#39;re supposed to do, so I did... haha. Now, this latest red build is more a lack of knowing what else to do.\n\n24) orangeblood: T R1 B1 Bevo\n\tFelix: It&#39;s a good rule of thumb to follow! You may want to try to diversify into blue soon.\n\n25) Felix: Sacrifice G3 Felix\nBuild G1 Opus\nBuild G3 Felix\nBuild R1 Felix\n\torangeblood: The problem with blue is the rule of thumb about taking the last piece of a size. Of course, if everyone followed those rules no one would be building. \n\tFelix: That&#39;s true. There&#39;s pros and cons to every action, and sometimes you have to violate a rule of thumb just to get a certain color. If you get locked out of the color, you will be in trouble. But in this case, it wasn&#39;t a bad move, because I can&#39;t build a blue at the moment anyway, or I would have three blues in the opus system and you could easily cause a catastrophe there.\n\n26) orangeblood: Move B1 Bevo Orangeblood\n\n27) Felix: Discover G2 Opal Y3 Brink\n\torangeblood: Sorry for the delay.\n\n28) orangeblood: Trade Y3 R3 Orangeblood\n\tFelix: \r\nno problem!\n\n29) Felix: Trade G1 Y1 Opus\n\n30) orangeblood: Build Y3 Orangeblood\n\n31) Felix: Build Y3 Opus\n\n32) orangeblood: M R3 Orangeblood Brink\n\n33) Felix: Move G2 Brink Orangeblood\n\torangeblood: Hi, just wanted to take a look at the neighborhood you&#39;re building!\n\tFelix: Eep! Don&#39;t look! \r\nIt&#39;s not finished!\n\n34) orangeblood: Build R1 Bevo\n\tFelix: I&#39;ll just have a look at your home!\n\n35) Felix: Build G1 Orangeblood\nCatastrophe Orangeblood Green\n\torangeblood: All are welcome, as long as they come in peace.\n\n36) orangeblood: Move Y2 Orangeblood Brink\n\n37) Felix: Trade G2 B2 Felix\n\torangeblood: Huh, I was blind to that one.\n\n38) orangeblood: Sacrifice Y2 Brink\nMove R3 Brink Opus\nMove R3 Bevo Opus\n\tFelix: I&#39;m sneaky sneaky :)\n\n39) Felix: Sacrifice Y3 Opus\nMove B1 Opus Orangeblood\nMove B2 Felix Opus\nMove B2 Opus Orangeblood\nCatastrophe Orangeblood Blue\n\tFelix: Good maneuver with your large reds there. That would normally be an effective attack, but I was lucky enough to have an opening to finish you off before you could pull off your attack. Very well played! Would be happy to rematch any time!\n\torangeblood: Ah, well done. I&#39;ll hit you up for a rematch soon.\n\n\nHomeworlds Online (SDG# 29618)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.27, Ended: 2016.4.29\nParticipants: Steele (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) Steele: Homeworld G3 Y1 B3\n\tFelix: Welcome! First game? Have fun!\n\n3) Felix: Build G1 Felix\n\tSteele: Yeah, first game of homeworlds ever, but it looks like a cool game.  It looks like I game I will quickly fall in love with.\n\tFelix: I&#39;m sure you will! I fell in love with it myself last year and it is my favorite game of all time now. I hope you have fun. Let me know if you have any questions and I&#39;d be happy to help you learn the ropes.\n\tFelix: But the best way to learn is to make mistakes, so I won&#39;t take it TOO easy on you :) Some of the other players on here are brutal! I&#39;ll try to give you tips along the way if I think of them.\n\n4) Steele: B B1 Steele\n\tFelix: One quick tip to start with: you don&#39;t have to type out the full word of the commands. You can just type &quot;b b1 steele&quot; instead of &quot;build b1 Steele&quot;. Saves a bit of time!\n\n5) Felix: T G1 B1 Felix\n\tSteele: Good to know!  Also good to know it won&#39;t let me make invalid moves (because the first two attempts weren&#39;t valid).  :)\n\tFelix: Yeah! The system will only let you make valid moves, which is a great way to learn the rules \n\n6) Steele: Trade B3 G3 Steele\n\n7) Felix: B G1 Felix\n\n8) Steele: Build G1 Steele\n\n9) Felix: T G1 Y1 Felix\n\n10) Steele: Trade B1 Y1 Steele\n\n11) Felix: Build B1 Felix\n\n12) Steele: Discover G1 Steele B2 Alpha\n\n13) Felix: Discover B1 Felix G1 Orpheus\n\n14) Steele: B Y2 Steele\n\n15) Felix: Build Y2 Felix\n\tFelix: I recommend trying to get a blue ship in your home system. It can cause a real color clog if you don&#39;t, since you can&#39;t trade any of your colors for others. It may have been a mistake to trade your B3 ship away at the beginning without building another blue first. If you had built a small blue and THEN traded your large blue away, you would still have the capacity to build blue and to trade in your homeworld, but now you have a difficult situation in your home system...\n\n16) Steele: Build G1 Alpha\n\tSteele: Yeah, I noticed that as soon as I did it.  Now I&#39;m trying to use the blue star to fix it :)\n\n17) Felix: Move Y1 Felix Orpheus\n\n18) Steele: Build G2 Alpha\n\n19) Felix: Build Y3 Orpheus\n\tFelix: Yeah. It&#39;s going to cost you a few turns to fix things, though, and momentum is crucial at this point in the game!\n\n20) Steele: Move Y1 Steele Alpha\n\n21) Felix: Discover Y1 Orpheus G2 Mikal\n\n22) Steele: Trade G2 B2 Alpha\n\n23) Felix: Build Y3 Mikal\n\n24) Steele: Move B2 Alpha Steele\n\n25) Felix: Build B1 Orpheus\n\n26) Steele: Build G2 Steele\n\n27) Felix: Build G2 Felix\n\n28) Steele: Sacrifice G3 Steele\nBuild G3 Steele\nBuild Y3 Alpha\nBuild B2 Steele\n\n29) Felix: Move B1 Orpheus Mikal\n\tFelix: Now you&#39;re in better shape. Nice use of the factory!\n\n30) Steele: Discover Y2 Steele R2 Beta\n\tSteele: Thanks, I wasn&#39;t sure if I was doing that right - but I like the effect.  Now to get myself out of this yellow catastrophe threat you have me in...\n\n31) Felix: B B3 Orpheus\n\n32) Steele: Discover Y2 Beta R1 Gamma\n\tFelix: Good catch. And watch out with all that green you&#39;ve got at home too...\n\tSteele: Yep, not sure green was a good homeworld choice...\n\n33) Felix: Sacrifice Y3 Orpheus\nMove G2 Felix Orpheus\nMove G2 Orpheus Mikal\nMove G2 Mikal Steele\nCatastrophe Steele Green\n\n34) Steele: Sacrifice Y3 Alpha\nMove Y1 Alpha Gamma\nMove Y1 Gamma Felix\nMove Y2 Gamma Felix\nCatastrophe Felix Yellow\n\tFelix: Putting green in your Homeworld can definitely make things more difficult. The main problem is that it makes it hard to set up a factory there. Of course, it&#39;s always possible to try to set up a factory in another system instead. If you can accomplish that, it can actually be a good homeworld color to have because it forces your opponent to potentially use green as an invasion color, and it&#39;s usually a tricky color to invade with.\n\tFelix: On the whole, I think the most effective starting homeworld is blue and yellow with a large green ship. This comes down to preference, though. I know a player who always starts with blue and red, with a green ship, and he wins often. As a beginner, it will also help you to start with the &quot;banker&quot; homeworld (a small and medium star).\n\n35) Felix: Sacrifice Y3 Mikal\nMove B1 Mikal Steele\nMove B1 Felix Steele\nPass\nCatastrophe Steele Blue\n\tFelix: Now things might be a bit tricky for you :/ But not impossible to recover from!\n\n\tSteele: I was wondering if you could double move the same ship or not.  Looks like you can - so I gave it a go too ;)\n\tFelix: Absolutely. You can even triple move a ship. Nice move! But it has also left you vulnerable to my own counterattack!\n\tFelix: Nicely played! I hope you learned some things. I have an open challenge on the challenges list so feel free to challenge me again and we&#39;ll have a rematch :)\n\tFelix: It can be really satisfying to destroy half of your opponent&#39;s homeworld, as you did to mine, but you also need to have a plan in place for finishing the job, or you may leave yourself vulnerable.\n\tSteele: Learned a ton and I will definitely be starting a rematch soon!\n\nHomeworlds Online (SDG# 29666)\nVariants: &quot;Hard time&quot;\nStarted: 2016.4.28, Ended: 2016.5.11\nParticipants: nycavri (S), Pheonixian (N)\nWinner: nycavri\n\n1) Pheonixian: Homeworld B1 R2 G3\n\n2) nycavri: Homeworld B2 Y3 G3\n\tnycavri: TaGG!\n\n3) Pheonixian: Build G1 Pheonixian\n\n4) nycavri: Build G1 Nycavri\n\tPheonixian: Have Fun!\r\n\n\n5) Pheonixian: Trade G1 Y1 Pheonixian\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) Pheonixian: Build G1 Pheonixian\n\n8) nycavri: B G1 Nycavri\n\n9) Pheonixian: Trade G1 B1 Pheonixian\n\n10) nycavri: T G1 R1 Nycavri\n\n11) Pheonixian: Discover B1 Pheonixian G3 Garden\n\n12) nycavri: B G1 Nycavri\n\n13) Pheonixian: Build B1 Garden\n\n14) nycavri: D Y1 Nycavri G1 Taylor\n\n\nHomeworlds Online (SDG# 29665)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.30, Ended: 2016.4.30\nParticipants: Mister (S), Felix (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29644)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.30, Ended: 2016.4.30\nParticipants: nycavri (S), Mister (N)\nWinner: nycavri\n\n\nHomeworlds Online (SDG# 29663)\nStarted: 2016.4.30, Ended: 2016.4.30\nParticipants: Mister (S), Felix (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29570)\nVariants: &quot;Unrated&quot;\nStarted: 2016.4.30, Ended: 2017.3.15\nParticipants: Mister (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 29678)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.1, Ended: 2016.5.2\nParticipants: Steele (S), nycavri (N)\nWinner: nycavri\n\n\nHomeworlds Online (SDG# 29675)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.2, Ended: 2016.5.6\nParticipants: wil (S), Steele (N)\nWinner: Steele\n\n1) Steele: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 29586)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.2, Ended: 2016.5.7\nParticipants: Felix (S), Simon (N)\nWinner: Felix\n\n\tSimon: Whoops -- I&#39;m back from a trip this week. Will try to be more attentive.\n\tFelix: No problem!\n\nHomeworlds Online (SDG# 29619)\nStarted: 2016.5.2, Ended: 2016.5.17\nParticipants: benr (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\tbenr: homeworld B1 Y2 G3\n\tts52: not your turn yet, that box is for comments/messages, the box will appear at the top if it&#39;s your turn. :) Have a good game!\n\n2) benr: Homeworld B1 Y2 G3\n\tbenr: Oh! Now I get it. Thanks. You too! :)\n\n3) ts52: Build G1 Ts52\n\n4) benr: Build G1 Benr\n\n5) ts52: Discover G1 Ts52 B1 Grover\n\n6) benr: Discover G1 Benr Y3 Kermit\n\n7) ts52: Build G1 Ts52\n\n8) benr: Build G2 Benr\n\n9) ts52: Trade G1 B1 Ts52\n\n10) benr: Trade G2 B2 Benr\n\n11) ts52: Discover B1 Ts52 G1 Oscar\n\n12) benr: Build G2 Benr\n\n13) ts52: Build G2 Ts52\n\n14) benr: Move B2 Benr Kermit\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n16) benr: Move G2 Benr Kermit\n\n17) ts52: Trade G2 Y2 Ts52\n\n18) benr: Sacrifice G2 Kermit\nBuild G2 Kermit\nBuild G2 Benr\n\n19) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Oscar\nBuild B3 Oscar\n\n20) benr: Sacrifice G2 Kermit\nBuild G2 Benr\nBuild B3 Kermit\n\n21) ts52: Sacrifice Y2 Ts52\nMove G1 Grover Kermit\nMove G1 Kermit Benr\nCatastrophe Benr Green\n\n\tts52: Thanks for the game!\n\tbenr: Wow! Good move, good victory. You&#39;re welcome, thank you as well for a good game!\n\nHomeworlds Online (SDG# 29690)\nStarted: 2016.5.3, Ended: 2016.6.6\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\tFelix: And away we go.\n\tts52: :D\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Build B2 Ts52\n\n9) Felix: Discover B2 Felix G1 Settlement\n\n10) ts52: Discover B2 Ts52 G2 Kermit\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Settlement\nBuild B3 Settlement\nBuild B3 Felix\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Trade B1 G1 Felix\n\n14) ts52: Trade G1 Y1 Ts52\n\n15) Felix: Trade B3 Y3 Settlement\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) Felix: Build G1 Felix\n\n18) ts52: Build G2 Ts52\n\n19) Felix: Discover B2 Settlement G2 Village\n\n20) ts52: Discover G2 Ts52 Y2 Bigbird\n\n21) Felix: Build G3 Felix\n\n22) ts52: Discover G2 Bigbird Y1 Zoe\n\n23) Felix: Trade G1 R1 Felix\n\n24) ts52: Trade B1 R1 Ts52\n\n25) Felix: Move B3 Felix Zoe\n\n26) ts52: Discover G2 Zoe G3 Oscar\n\n27) Felix: Sacrifice G3 Felix\nBuild G1 Felix\nBuild G3 Felix\nBuild B1 Village\n\n28) ts52: Build Y1 Kermit\n\n29) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Zoe\nBuild B3 Settlement\n\n30) ts52: Move Y1 Kermit Oscar\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Felix\nBuild Y2 Settlement\n\n32) ts52: Sacrifice G2 Oscar\nBuild Y2 Oscar\nBuild Y3 Kermit\n\n33) Felix: Discover B2 Settlement G2 Duchy\n\n34) ts52: Sacrifice Y2 Oscar\nMove Y1 Oscar Settlement\nMove Y1 Kermit Settlement\nCatastrophe Settlement Yellow\n\n35) Felix: Trade G1 Y1 Felix\n\tFelix: Ooh, nice one.\n\n36) ts52: Build R2 Ts52\n\n37) Felix: Move Y1 Felix Settlement\n\tts52: Thanks, but you already thwarted my plan. ;)\n\n38) ts52: Move R2 Ts52 Kermit\n\n39) Felix: Move R1 Felix Settlement\n\n40) ts52: Build Y1 Kermit\n\n41) Felix: Build Y2 Settlement\n\n42) ts52: Discover Y3 Kermit G3 Oscar\n\n43) Felix: Move Y1 Settlement Village\n\n44) ts52: Move Y3 Oscar Village\n\n45) Felix: Build Y2 Village\n\n46) ts52: Build Y3 Kermit\n\n47) Felix: Sacrifice Y2 Village\nMove B1 Village Ts52\nMove B2 Village Ts52\n\tFelix: Shoot. I&#39;m not sure how I missed that.\n\n48) ts52: Build R2 Ts52\n\n49) Felix: Build Y2 Settlement\n\n50) ts52: S R2 Ts52\nA Y1 Village\nA B2 Ts52\n\n51) Felix: Move Y2 Settlement Duchy\n\n52) ts52: Move B2 Ts52 Village\n\n53) Felix: Sacrifice R1 Settlement\nAttack R1 Ts52\n\n54) ts52: Sacrifice R2 Kermit\nAttack R1 Ts52\nAttack B1 Ts52\n\n55) Felix: Move B2 Duchy Ts52\n\n56) ts52: Attack B2 Ts52\n\n57) Felix: Sacrifice Y2 Settlement\nMove B1 Zoe Duchy\nMove B1 Duchy Ts52\nCatastrophe Ts52 Blue\n\n58) ts52: B G1 Ts52\n\n59) Felix: D G1 Felix B1 Argyle\n\n60) ts52: Discover Y3 Kermit G3 Oscar\n\n61) Felix: Trade G3 R3 Felix\n\n62) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild B1 Village\n\n63) Felix: Sacrifice Y2 Duchy\nMove B3 Zoe Ts52\nMove B3 Settlement Ts52\n\n64) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild R1 Ts52\nBuild R2 Ts52\n\n65) Felix: Sacrifice R3 Felix\nAttack R1 Ts52\nAttack R1 Ts52\nAttack R2 Ts52\n\n66) ts52: Sacrifice Y3 Village\nMove Y3 Oscar Argyle\nMove Y3 Argyle Felix\nMove B1 Village Ts52\n\tFelix: Interesting defense! Divide and clog :)\n\n67) Felix: Sacrifice B3 Ts52\nTrade B3 Y3 Ts52\nTrade R2 Y2 Ts52\nTrade R1 Y1 Ts52\nCatastrophe Ts52 Yellow\n\tts52: I think I can drag it out another turn, but I suspect that&#39;s about it.\n\tFelix: I found a way to speed things up :) Great game!\n\tts52: Yep, that will do it. Very well played.\n\n\nHomeworlds Online (SDG# 29585)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.3, Ended: 2016.5.6\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29687)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.4, Ended: 2016.5.9\nParticipants: mcowper (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R2 G3\n\tFelix: Welcome! First game?\n\n2) mcowper: Homeworld B2 Y1 G3\n\n3) Felix: Build G1 Felix\n\n4) mcowper: Build G1 Mcowper\n\n5) Felix: Trade G1 Y1 Felix\n\n6) mcowper: Discover G1 Mcowper G3 Alpha\n\n7) Felix: Build Y1 Felix\n\n8) mcowper: Build G1 Mcowper\n\n9) Felix: Build Y2 Felix\n\n10) mcowper: Discover G1 Mcowper Y3 Bravo\n\n11) Felix: Discover Y1 Felix G1 Out\n\n12) mcowper: Build G2 Mcowper\n\n13) Felix: Build G2 Felix\n\n14) mcowper: Build G2 Mcowper\n\n15) Felix: Build Y2 Out\n\n16) mcowper: Trade G2 B2 Mcowper\n\n17) Felix: Trade G2 B2 Felix\n\n18) mcowper: Sacrifice G3 Mcowper\nBuild G2 Bravo\nBuild G2 Mcowper\nBuild G3 Mcowper\n\n19) Felix: Build Y2 Felix\n\n20) mcowper: Sacrifice B2 Mcowper\nTrade G2 B2 Mcowper\nTrade G3 Y3 Mcowper\n\n21) Felix: Build Y3 Out\n\n22) mcowper: Move B2 Mcowper Alpha\n\n23) Felix: Discover Y1 Out G3 Brink\n\n24) mcowper: Build G2 Mcowper\n\n25) Felix: M B2 Felix Out\n\n26) mcowper: Trade G2 R2 Mcowper\n\n27) Felix: T Y2 R2 Out\n\n28) mcowper: Trade B2 Y2 Alpha\n\n29) Felix: Build G2 Felix\n\n30) mcowper: Trade R2 B2 Mcowper\n\n31) Felix: Sacrifice Y2 Felix\nMove Y3 Out Brink\nMove Y3 Brink Mcowper\n\n32) mcowper: Trade G2 R2 Mcowper\n\tFelix: Always be careful of not having a weapon when your opponent does. Very dangerous!\n\n33) Felix: Sacrifice R2 Out\nAttack Y3 Mcowper\nAttack R2 Mcowper\n\n\tmcowper: Thanks for the game.\n\tFelix: No problem! feel free to challenge me agin any time. I hope you had fun and have learned something\n\nHomeworlds Online (SDG# 29698)\nStarted: 2016.5.4, Ended: 2016.5.31\nParticipants: nycavri (S), zeder (N)\nWinner: nycavri\n\n1) zeder: Homeworld Y2 B1 G3\n\tnycavri: Hello again!  Let&#39;s get you started on the steep learning curve.  (I still very much play in the shallow end . . .)\n\tnycavri: TaGG!\n\tzeder: This one seems very rich!\r\n\n\tzeder: homeworld y2 b1 g3\n\n2) nycavri: Homeworld G3 B1 Y3\n\tzeder: wrong place!  not an good start!\n\n3) zeder: Build G1 Zeder\n\n4) nycavri: Build Y1 Nycavri\n\n5) zeder: Trade G1 Y1 Zeder\n\n6) nycavri: T Y1 B1 Nycavri\n\n7) zeder: Build G1 Zeder\n\n8) nycavri: Build B2 Nycavri\n\n9) zeder: Build G1 Zeder\n\tzeder: I am feel uncomfortable already!\n\n10) nycavri: Trade B2 G2 Nycavri\n\n11) zeder: Discover G1 Zeder B3 Aaa\n\n12) nycavri: B B2 Nycavri\n\n13) zeder: Build Y1 Zeder\n\n14) nycavri: Discover B2 Nycavri G2 Taylor\n\n15) zeder: Discover Y1 Zeder B3 Bbb\n\n16) nycavri: Build B2 Taylor\n\n17) zeder: Move Y1 Zeder Aaa\n\n18) nycavri: D G2 Nycavri Y2 Mercury\n\n19) zeder: Trade G1 R1 Zeder\n\n20) nycavri: B B2 Taylor\n\n21) zeder: Build G1 Zeder\n\n22) nycavri: B B3 Nycavri\n\n23) zeder: Build R1 Zeder\n\n24) nycavri: T B2 Y2 Taylor\n\n25) zeder: Sacrifice G3 Zeder\nBuild G1 Aaa\nBuild G2 Aaa\nBuild G3 Zeder\n\n26) nycavri: B B2 Taylor\n\n\nHomeworlds Online (SDG# 29711)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.6, Ended: 2016.5.23\nParticipants: raptorial (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 B2 G3\n\tFelix: Welcome! First game? Let me know if you have any questions.\n\n\nHomeworlds Online (SDG# 29721)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.6, Ended: 2016.5.18\nParticipants: Steele (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 B2 G3\n\tSteele: We meet again :)\n\tFelix: Welcome back! Good luck and have fun :]\n\n2) Steele: Homeworld B3 R1 G3\n\n3) Felix: B G1 Felix\n\n4) Steele: B G1 Steele\n\n5) Felix: Trade G1 R1 Felix\n\n6) Steele: T G1 Y1 Steele\n\n7) Felix: Build G1 Felix\n\n8) Steele: B G1 Steele\n\n9) Felix: Trade G1 Y1 Felix\n\n10) Steele: Discover G1 Steele B2 Alpha\n\n11) Felix: Build G1 Felix\n\n12) Steele: Build G1 Steele\n\n13) Felix: Build G2 Felix\n\n14) Steele: Sacrifice G3 Steele\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Steele\n\n15) Felix: Discover G2 Felix Y1 Rim\n\tFelix: Nice!\n\n16) Steele: T G2 R2 Alpha\n\n17) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 Rim\n\n18) Steele: B Y2 Steele\n\n19) Felix: Trade G1 B1 Felix\n\n20) Steele: M Y1 Steele Alpha\n\n21) Felix: Move B1 Felix Rim\n\n22) Steele: M R2 Alpha Rim\n\n23) Felix: Sacrifice R1 Felix\nAttack R2 Rim\n\n24) Steele: S Y2 Steele\nM G1 Alpha Rim\nM G2 Alpha Rim\nC Rim G\n\tSteele: Nice!  Didn&#39;t see that coming :)\n\n25) Felix: Build Y2 Felix\n\tFelix: Thanks! it&#39;s so hard to anticipate everything in this game because there are so many possibilities! It truly is like chess in that regard.\n\n26) Steele: T Y1 G1 Alpha\n\n27) Felix: Move G2 Felix Rim\n\n28) Steele: B G1 Alpha\n\n29) Felix: Trade G2 Y2 Rim\n\n30) Steele: T G1 Y1 Alpha\n\n31) Felix: Build G1 Felix\n\n32) Steele: B Y2 Alpha\n\n33) Felix: Move G1 Felix Rim\n\n34) Steele: T Y1 R1 Alpha\n\n35) Felix: Build G2 Rim\n\n36) Steele: S G3 Steele\nB G2 Alpha\nB G2 Alpha\nB G3 Steele\nPass\n\n37) Felix: Build G3 Felix\n\n38) Steele: D G2 Alpha Y1 Beta\n\tSteele: Well that wasn&#39;t exactly what I was aiming to do :)\n\tFelix: Whoopsie :P\n\n39) Felix: Discover Y1 Felix B1 Opal\n\n40) Steele: B Y3 Alpha\n\n41) Felix: Sacrifice G3 Felix\nBuild Y3 Opal\nBuild Y3 Felix\nBuild G3 Felix\n\n42) Steele: S Y3 Alpha\nM G1 Alpha Beta\nM G2 Beta Felix\nM G1 Beta Felix\nC Felix G\n\n43) Felix: Trade Y3 G3 Felix\n\n44) Steele: Discover R1 Alpha Y1 Beta\n\n45) Felix: Build Y3 Felix\n\tFelix: Ooh, nice move!\n\n46) Steele: S G3 Steele\nB Y3 Alpha\nB R1 Beta\nB R2 Beta\nPass\n\tSteele: I&#39;m trying to think longer term in my tactics.  So many possibilities!!\n\n47) Felix: Build B1 Rim\n\tFelix: It&#39;s truly mind boggling sometimes!\n\n48) Steele: S Y3 Alpha\nM R1 Beta Felix\nM R1 Beta Felix\nM R2 Beta Felix\nC Felix R\n\n49) Felix: Move Y3 Felix Steele\n\tFelix: Ooh, be careful leaving your homeworld without a large like that. If I moved a large or medium ship in there now, you&#39;d be done for!\n\tSteele: Good advice, yeah, I may be rushing this, but...\n\n50) Steele: S G2 Alpha\nB G1 Steele\nB G2 Steele\nPass\n\n51) Felix: Trade Y3 G3 Steele\nCatastrophe Steele Green\n\tFelix: You did rush a bit. I know that it feels really good to blow up half your opponent&#39;s world, but if you don&#39;t have a plan already in place to deal with the other half, you may leave yourself vulnerable to a quick counterattack, like I&#39;m doing now.\n\n\tSteele: Yeah, I&#39;m certainly on the defense now... \n\tFelix: Very good game. You got a bit overeager at the end and it left you vulnerable. I&#39;ve had to learn that lesson many times. Patience can be more frustrating sometimes, but it usually pays to wait until you have a full plan. That said, sometimes doing something radical and unexpected can really pay off, so keep being creative! I&#39;d love to rematch any time.\n\tSteele: So much to learn - a rematch is coming soon :)\n\nHomeworlds Online (SDG# 29726)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.6, Ended: 2016.5.10\nParticipants: Felix (S), goulo (N)\nWinner: Felix\n\n1) goulo: Homeworld R1 B2 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\tgoulo: hi, have fun!\n\tFelix: Thanks for accepting. Hope you have fun too!\n\n3) goulo: Build G1 Goulo\n\n4) Felix: Build G1 Felix\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Felix: Trade G1 B1 Felix\n\n7) goulo: Build G1 Goulo\n\n8) Felix: Build B1 Felix\n\n9) goulo: Build Y1 Goulo\n\n10) Felix: Discover B1 Felix G2 Opus\n\n11) goulo: Discover Y1 Goulo G3 Verdego\n\n12) Felix: Build B2 Opus\n\n13) goulo: Trade G3 B3 Goulo\n\n14) Felix: Trade B2 Y2 Opus\n\n15) goulo: Build G1 Goulo\n\n16) Felix: Build B2 Opus\n\n17) goulo: Discover G1 Goulo B3 Bluego\n\n18) Felix: Build B2 Felix\n\n19) goulo: Build Y1 Verdego\n\n20) Felix: Build B3 Opus\n\n21) goulo: Build Y2 Goulo\n\n22) Felix: Discover B2 Opus G3 Brink\n\n23) goulo: Discover Y1 Verdego G2 Verdo\n\n24) Felix: Build G1 Felix\n\n25) goulo: Build G2 Bluego\n\n26) Felix: Trade B1 R1 Felix\n\n27) goulo: Build Y2 Verdo\n\n28) Felix: Build Y3 Opus\n\n29) goulo: Build Y3 Verdego\n\n30) Felix: Sacrifice Y3 Opus\nMove B1 Opus Brink\nMove B2 Brink Goulo\nMove B1 Brink Goulo\nCatastrophe Goulo Blue\n\n31) goulo: Build G3 Goulo\n\n32) Felix: Sacrifice G3 Felix\nBuild Y3 Opus\nBuild G3 Felix\nBuild R1 Felix\n\n33) goulo: Discover Y1 Verdego B2 Bluo\n\n34) Felix: Move R1 Felix Opus\n\n35) goulo: Move Y1 Verdo Felix\n\n36) Felix: Sacrifice Y3 Opus\nMove R1 Opus Goulo\nMove R1 Felix Opus\nMove R1 Opus Goulo\n\n37) goulo: Sacrifice Y2 Goulo\nMove Y1 Bluo Felix\nMove Y2 Verdo Felix\nCatastrophe Felix Y\n\n38) Felix: Sacrifice G1 Felix\nBuild R2 Goulo\nCatastrophe Goulo Red\n\tgoulo: man, you outplayed me early with that blue lead, congrats and thanks.\n\tFelix: Good game! Thank you for playing. Would love to rematch any time!\n\n\nHomeworlds Online (SDG# 29686)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.9, Ended: 2016.5.12\nParticipants: mcowper (S), wil (N)\nWinner: mcowper\n\n\nHomeworlds Online (SDG# 29750)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.10, Ended: 2016.6.20\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\tFelix: We meet on the battlefield at last. Good luck to you!\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: And to you! :)\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: Discover B2 Felix G3 Raid\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Build G1 Felix\n\n12) ts52: Build G2 Ts52\n\n13) Felix: Discover G1 Felix B3 Maraud\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) Felix: Build G2 Felix\n\n16) ts52: Move Y2 Ts52 Kermit\n\n17) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G2 Maraud\nBuild G3 Felix\n\n18) ts52: Discover G1 Ts52 Y1 Bigbird\n\n19) Felix: Discover G2 Felix B3 Pillage\n\n20) ts52: Discover G1 Bigbird B3 Grover\n\n21) Felix: Trade G1 Y1 Maraud\n\n22) ts52: Build G1 Ts52\n\n23) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Raid\nBuild Y1 Maraud\n\n24) ts52: Sacrifice G1 Grover\nBuild B3 Kermit\n\n25) Felix: Trade B2 R2 Raid\n\n26) ts52: T G1 R1 Ts52\n\n27) Felix: Build B2 Raid\n\n28) ts52: Build R1 Ts52\n\n29) Felix: Trade B2 Y2 Raid\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) Felix: Sacrifice G3 Felix\nBuild G1 Maraud\nBuild G1 Pillage\nBuild G3 Felix\n\n32) ts52: Trade B3 R3 Kermit\n\n33) Felix: Move Y1 Maraud Felix\n\n34) ts52: M R3 Kermit Maraud\n\n35) Felix: Sacrifice Y2 Raid\nMove G2 Maraud Kermit\nMove G2 Pillage Kermit\n\n36) ts52: A Y1 Maraud\n\n37) Felix: S G1 Maraud\nB G1 Kermit\nC Kermit Green\n\n38) ts52: Build G1 Ts52\n\n39) Felix: Sacrifice G3 Felix\nBuild B1 Raid\nBuild B2 Raid\nBuild B3 Felix\n\n40) ts52: Discover G1 Ts52 Y1 Bigbird\n\n41) Felix: Trade B3 G3 Felix\n\n42) ts52: Move G1 Bigbird Maraud\n\n43) Felix: Build B3 Felix\n\n44) ts52: Build R1 Maraud\n\n45) Felix: Trade B2 Y2 Raid\n\n46) ts52: Discover R3 Maraud Y2 Zoe\n\n47) Felix: Move B3 Felix Raid\n\n48) ts52: Move R3 Zoe Pillage\n\n49) Felix: Sacrifice G1 Pillage\nBuild B2 Felix\n\n50) ts52: Build G1 Ts52\n\n51) Felix: Trade B3 Y3 Raid\n\n52) ts52: Discover G1 Ts52 Y1 Zoe\n\n53) Felix: Build B3 Raid\n\n54) ts52: Build G1 Ts52\n\n55) Felix: Trade B3 Y3 Raid\n\n\tFelix: :(\n\tts52: Dammit! Got distracted and forgot about my SDG games again. Sorry Felix.\n\tFelix: That&#39;s okay. I just hate that you had to lose that way, and on a ladder game no less! I&#39;ve already been challenged by someone else but I hope you&#39;ll challenge me again in future, and I&#39;d love to just plat a non-ladder game in the meantime!\n\tDraw5PlayAll: And the ts52 system is now in the main grid... odd...\n\tts52: No worries, it&#39;s my own fault.\n\tDraw5PlayAll: Felix: you were clearly winning. How were you going to try to finish ts52 off?\r\nAll: Why do you suppose the ts52 system drifted into the middle of the field with all the other systems?\n\tts52: Draw5PlayAll: That&#39;s just what happens when someone loses. SDG no longer thinks ts52 is a homeworld, so it doesn&#39;t treat it special any more.\n\tts52: fwiw I Would&#39;ve factoried g2 at zoe and maraud, probably.\n\tFelix: I didn&#39;t quite have a concrete finishing him off plan in place yet, but my plan was to just keep trying to dominate the blue market while continuing to rebuild that b3 and trade it, scooping up the rest of the larges and giving myself plenty of forces and options. I think I would have just positioned my blue and yellow ships and then sacrificed some y3s to move them into place and catastrophe his homeworld. Jury&#39;s out on whether it would work though. Ts52 has upset my plans before when I thought I was winning!\n\tts52: :)\n\nHomeworlds Online (SDG# 29725)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.15, Ended: 2016.5.26\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R2 G3\n\tFelix: Welcome! First game? Hope you enjoy and let me know if you have any questions!\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\n3) Felix: Build G1 Felix\n\tDraw5PlayAll: Here&#39;s what I think is going to happen.\r\nWe each will build a G1 and then either build another green or trade for something (probably yellow).\n\tFelix: That sounds pretty accurate to me. The beginnings of games are usually pretty similar.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Hold it. How do I construct ships in the home world? Do I write `build G1 Draw5PlayAll` or `build G1 homeworld` or `build G1 S`?\n\n5) Felix: Trade G1 Y1 Felix\n\tDraw5PlayAll: Figured it out from the system message &quot;North created a G1 ship in the Felix system&quot;.\n\tFelix: Glad you figured it out! You also don&#39;t have to write out the whole word for an action. You can just type &quot;B G1 Draw5PlayAll&quot; instead of &quot;Build G1 ....&quot;\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Despite several doubts we are going to attempt to build another small construction ship. As no enemies are in range of a suicide attack, we are safe for the time being.\r\n\r\n&#151;&#151;&#151;\r\n\r\nI have a question. Suppose you have a green and a Y3 in your base while I have three greens. If you sac the Y3 to fly your green into my home and call catastrophe, who wins? Or is it a draw?\n\n7) Felix: Build G1 Felix\n\tFelix: Before we venture forth on a discovery mission, we would also like to increase the construction capacity of our system by building a new small construction ship.\r\n\r\n- - - - -\r\n\r\nI think in an offline game it would be considered a draw if that situation came up. If there are no ships left in MY homeworld at the end of my turn, I would also lose. The system here on SDG, however, doesn&#39;t allow you to fully abandon your homeworld like that. The move is impossible on here, so it couldn&#39;t happen that way. That&#39;s just how the game is programmed here.\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: By popular request, we have decided to implement warp drive on one of our small ships. Unfortunately we had to remove its construction capabilities to do so. We&#39;ve been trying for years to fit two abilities into one ship but it is simply impossible.\n\n9) Felix: Trade G1 B1 Felix\n\n10) Draw5PlayAll: Discover G1 Draw5playall R3 Dangerzone\n\tFelix: My people, meanwhile, have been demanding that we expand our trade market, so we have retrofitted one of our construction vessels with trade technology. We hope to venture forth into the unknown soon in search of peaceful people with which to trade.\n\n11) Felix: Build B1 Felix\n\tDraw5PlayAll: A lone green ventured out into space and found a huge red planet. The people there had many weapons, but surprisingly the green was undetected in orbit. That&#39;s what I&#39;m told at least.\n\tFelix: The people are pleased with the new trade regime and demand its further expansion. We complied by building yet another trade vessel. The technology powering our trade vessels is also found in the core of the larger of our two home planets, so we must send out one of our trade vessels soon to avoid any natural catastrophes occurring by overtaxing the planet&#39;s reactor.\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: We got a little annoyed by your actions and decided to construct another ship, this time with warp drives from the beginning.  We fear your later actions and are trying to access more planets to diversify and spread out our fleet.\r\n\r\nBe aware that if you upsize your movement vessels, we many launch suicide ships to destroy your warp drive.\n\n13) Felix: Discover B1 Felix G1 Littlewood\n\tDraw5PlayAll: Incidentally, I saw your 4P challenge. I&#39;m a bit hesitant because that forces either two people to share a homeworld size (causing them to fight bitterly in LCS; not as bad in Sinister) or someone to choose a &quot;Gemini&quot; star (1-1, 2-2, or 3-3) which also creates bitter fighting. (I think a gemini is an awful choice for any battle.)\r\n\r\nI think they should add a 2v2 mode for four players. I&#39;ve hypothesized about how this might work (the teams obviously should pick the same size stars). Not sure if partners should go sequentially (1,2 vs 3,4) or not (1,3 vs 2,4).\r\nHowever, I don&#39;t think this will happen any time soon because I&#39;m not sure if teams are implemented at all.\n\n14) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: Despite the threatening message of suicide bombers received by an alien race somewhere to the south of us, we are sending out one of our small trade vessels in search of peaceful people with which to trade. The vessel is fragile and unprotected, but it has discovered a small and seemingly peaceful forest planet. We are dubbing this planet &quot;LittleWood.&quot; The planet seems conducive to a construction facility, so we are installing a ship factory on the planet and soon hope to produce larger ships that will protect our small trade vessel. We hope that the suicide bomber threats are simply a ruse.\n\tFelix: (I hadn&#39;t thought of that problem in a 4p game but I believe you&#39;re right. I still think it could be fun to give it a try though! Would love to have you join in and see how it goes.\n\tDraw5PlayAll: We are risk-takers, and decided to upsize our ships in the warp drive industry. \r\nWe have also canceled the threat. There has been some slight amounts of radiation coming from the warp drives, and we fear it will be too much if we don&#39;t explore soon.\r\n\r\n--\r\nSo far, I dislike the map structuring. Specifically, the proximity from your base to DangerZone, despite both systems having a Large. I keep getting tempted to barge in to Little Wood, despite impossibility.\n\n15) Felix: Build B2 Littlewood\n\tDraw5PlayAll: We detected aliens from DangerZone and LittleWood are observing our actions. I hope they leave soon because this could get messy.\n\n16) Draw5PlayAll: Move Y1 Draw5playall Dangerzone\n\tFelix: Fearing attack from the nearby DangerZone system, our colony on LittleWood has decided to build a larger trade vessel to help protect the smaller. We do not wish a confrontation, as we are a peaceful trading people, so we are not equipping our vessels with weapons at the moment.\n\tFelix: (It does take some time to get one&#39;s head around the movement and layout on here. It&#39;s much easier to arrange things how you wish when playing on a table.)\n\tDraw5PlayAll: We decided to fly a Constellation-class ship into Danger Zone. With the earlier green ship we could potentially upsize our fleet.\n\n17) Felix: Build Y2 Felix\n\tFelix: The lack of warp capability in our LittleWood colony is worrisome, so we are creating a new warp vessel at home to send out to the colony.\n\n18) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\tDraw5PlayAll: Since your mission is peace, you clearly don&#39;t need to be involved in the red economy. Plus we want to diversify our fleet. Red seemed like a good option, just in case you changed your mind at some point.\n\n19) Felix: Move Y2 Felix Littlewood\n\tFelix: Our sensors indicate that the alien race to the south is developing weapons in its home system. This is troubling for a peaceful people such as ourselves. We may need to arm ourselves with a warship, purely for defensive reasons, of course. But first, we are sending our new warship out to the LittleWood colony so that the colony can evacuate if an attack should come from our southern neighbors.\n\n20) Draw5PlayAll: Discover R1 Draw5playall Y3 Biglemon\n\tDraw5PlayAll: Well, fine then. If you prefer, we are sending the weaponed ship to a new, more peaceful star known as the Big Lemon. Seems like a strange name for a star.\n\n21) Felix: Trade B1 R1 Littlewood\n\tDraw5PlayAll: The map got completely messed up. The large stars should be closer to me than they are to you.\n\tFelix: Since we now have a larger trade ship capable of carrying out our trade directives, we no longer need our smallest trade vessel, so we will be stripping out its trade facilities and replacing them with weapons. This is purely for defense, since the alien warship located at the Big Lemon is only one warp jump away from us.\n\n22) Draw5PlayAll: Build Y1 Dangerzone\n\tFelix: The map looks right to me, but it does sometimes get messed up. You just have to think of it more abstractly and less literally in terms of distance.\n\tDraw5PlayAll: Well, in this case, we&#39;re just going to build another yellow ship at Danger Zone.\n\n23) Felix: Build Y2 Littlewood\n\n24) Draw5PlayAll: Build Y3 Draw5playall\n\tFelix: We see the need to explore further in search of peaceful species with which to trade, so we are increasing our fleet with a new warp ship.\n\tDraw5PlayAll: Well, our Ambassador-class ships aren&#39;t enough. We are going to Galaxy-class. And it&#39;s being built right here in the base.\n\n25) Felix: Build Y3 Felix\n\tFelix: We have noticed that the resources required for building Galaxy-class warp ships have dropped to nearly nonexistent levels. We suspect the aliens to the south of us are also drawing on the same resources. We are going to build our own galaxy-class warp cruiser to make sure we have one before resources are fully depleted.\n\n26) Draw5PlayAll: Build G1 Dangerzone\n\tDraw5PlayAll: Ah, you&#39;ve robbed us of the blue economy! Well then, we&#39;re going to a planet covered in ice, and sending a construction ship with the boost from the warp ships in Danger Zone. We have a way of transporting ships without sacrificing, so long as we have a yellow in the area.\n\tDraw5PlayAll: Slight change in plans. We decided we needed more resources and are just going to build another construction ship in the danger zone.\r\nOur star charts lost the planet in the process.\n\n27) Felix: Build B1 Littlewood\n\n28) Draw5PlayAll: Build G2 Dangerzone\n\tFelix: We are building a new trade vessel to send out on a contact mission of peace.\n\tDraw5PlayAll: Despite the potential for catastrophe, we have decided to build an Ambassador-class construction ship in the Danger Zone system. We are aware that you have the means to invade with your large green but you would be unwise to do so.\n\n29) Felix: Move B2 Littlewood Biglemon\n\n30) Draw5PlayAll: Discover G1 Dangerzone B2 Epsilonvi\n\tFelix: We have sent our liaison-class trade vessel on a mission of discovery and peace. A particularly large desert planet has shown up on our charts so we are beginning our search there. Hopefully the denizens of this big lemon are peaceful.\n\tDraw5PlayAll: Meanwhile our own people at Danger Zone realized the, well, danger.. They decided to flee off to a small watery planet, but the name is unknown....\n\n31) Felix: Sacrifice R1 Littlewood\nAttack R1 Biglemon\n\tDraw5PlayAll: As soon as we were within sensor range, aliens completely obliterated the planet and killed themselves in the act. A time warp sent us back to where we started.\n\tDraw5PlayAll: One of the crew was able to prevent the same mistake from occurring again. We instead ventured to a slightly larger planet Epsilon VI, again covered in water.\n\n32) Draw5PlayAll: Build G2 Epsilonvi\n\tFelix: We made contact with a small vessel at BigLemon. However, the small vessel appears to be armed with high powered lasers and warheads. We were expecting to open peaceful trade relations with this people, but they seem to be aggressive. We have no choice but to take over this vessel so that it does not harm us or our people. Purely defensive measures, you understand. Our defensive vessel in LittleWood is sending a warp-powered boarding crew to take the ship intact.\n\n33) Felix: Build G2 Felix\n\tFelix: Unfortunately, the amount of power required to send the warp-powered boarding vessel was too much for our defense ship&#39;s core to handle. The ship self-destructed in the process, but we were able to successfully take over the enemy vessel, so we are calling it even.\n\tDraw5PlayAll: Our small Constellation ship at Epsilon VI is lonely and we decided to build an Ambassador-class construction vessel on that planet.\n\n34) Draw5PlayAll: Trade G2 B2 Epsilonvi\n\n35) Felix: Sacrifice G3 Felix\nBuild B3 Biglemon\nBuild B3 Littlewood\nBuild G2 Felix\n\tFelix: We are short on construction ships, so we are building a new construction vessel in our home system.\n\tDraw5PlayAll: Despite the knowledge that you can send suicide ships to destroy me, we traded out the construction power of our Ambassador-class ship at Epsilon VI for trading power, using the planet of course.\r\n---\r\nYou have the possibility of sacrificing a medium yellow to bring two blues into Epsilon VI and call catastrophe. If you don&#39;t, we will begin actions you will not like.\n\n36) Draw5PlayAll: Build G3 Epsilonvi\n\n37) Felix: Discover G2 Felix R1 Lavaflow\n\tFelix: We have ignored your beckon to cause a catastrophe on Epsilon VI. We do not believe in such overt aggression as a suicide attack. Instead, we tried to send our biggest construction vessel out to LittleWood to begin construction operations there. However, something strange happened in transit and our ship entered a wormhole. When it came out the other side of the wormhole, it had been split into three ships, a medium construction ship and two large trade vessels! These ships showed up in random locations around our domain. We aren&#39;t sure what happened in the wormhole, but we are happy with the net gain to our fleet.\n\tDraw5PlayAll: We build a Galaxy-class construction vessel in Epsilon VI. Go on, blow us up. We dare you.\r\n\r\n--\r\n\r\nHa, just right after I got a blue, you removed the color from the stash. I need two turns in a row here!!\n\n38) Draw5PlayAll: Sacrifice Y1 Dangerzone\nMove G3 Epsilonvi Lavaflow\n\tDraw5PlayAll: I see us both left with a single medium red as our homeworlds.\r\nHere&#39;s what I see for you:\r\nYou run a ship into Little Wood and then sac a yellow to bomb our small blue star, leaving me with just a red. (There&#39;s a change you might sabotage my yellow economy, but I think that won&#39;t work.)\r\nMeanwhile I see multiple ways that I can get to YOUR homeworld and either call catastrophe or sabotage your Planetary Defense System (if you sac your only large there and I get a large inside, you can&#39;t attack me).\n\tFelix: Interesting prediction :) We shall see! It&#39;s generally a terrible idea to ever leave your homeworld without a large ship to defend it, so I will tell you that I am unlikely to sac my y3 any time soon...\n\n39) Felix: S G2 Lavaflow\nB R1 Biglemon\nB R2 Biglemon\n\tFelix: We were intending to send our medium construction vessel out to Big Lemon to establish a factory on that world, but the vessel became lost in transit and ended up stumbling upon a small planet covered in active volcanoes. We have dubbed this planet Lava Flow and may commence our construction operations here.\n\tDraw5PlayAll: Oh no. This is bad. This is really bad.\r\n\r\nThe large green from Epsilon VI heard about this lava planet and decided to go there. We used the engine from a yellow at DangerZone, but said engine broke down as soon as we reached Lava Flow.\n\n40) Draw5PlayAll: Sacrifice G2 Dangerzone\nBuild G2 Lavaflow\nBuild G2 Epsilonvi\n\n41) Felix: Build G3 Felix\n\tFelix: Our construction vessel on lava flow was startled by the appearance of a large and unknown ship. It lost control and careened into the planet, blowing itself up. The construction energy within the ship reacted with the planet, however, and created two new warships equipped with heat lasers. The reaction propelled these new ships back over to big lemon for some reason...\n\tDraw5PlayAll: I can&#39;t think of a good way to phrase this move in our... narrative...\n\n42) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G2 Lavaflow Felix\nMove G3 Lavaflow Felix\nCatastrophe Felix Green\n\tDraw5PlayAll: You know, the only reason I picked a 1-2 home world is for the Investment strategy, where I park a single green at a star and try to cash it in via a sacrifice. Result? I got *nearly* frozen out of blue.\n\tFelix: That&#39;s okay if you we don&#39;t narrate every move. it&#39;s fun though! And yeah... the banker strategy is a good one though! It&#39;s definitely the strongest homeworld set up and can be used very effectively, but I have found it difficult to actually pull off the &quot;banker&quot; move in games.\n\n43) Felix: Move R1 Biglemon Draw5playall\n\tDraw5PlayAll: We wanted to trade for a Galaxy-class attacking ship but the risk of invasion is just too great. We instead decided to run a suicide mission to hold back your green economy.\n\n44) Draw5PlayAll: Sacrifice G2 Epsilonvi\nBuild Y1 Draw5playall\nBuild Y2 Dangerzone\n\n45) Felix: Discover B1 Littlewood G3 Bigwood\n\tFelix: Despite our peaceful intentions, it seems the aliens to our south are a warlike species interested only in our destruction. We are sending out one of our small warships on a scouting mission to their homeworld to see if we can find a way to neutralize their weapons. Purely in self defense, of course.\n\tDraw5PlayAll: Not sure if there&#39;s anything I can do here. You rip away my red next move, then you can sac yellows to throw your blues at me and wipe out my homeworld. My only shot here is to...\n\n46) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y2 Dangerzone Littlewood\nMove Y1 Dangerzone Littlewood\nDiscover B2 Epsilonvi R1 Lavaflow\nCatastrophe Littlewood Yellow\n\tDraw5PlayAll: We have developed a &quot;distant construction&quot; device, and used it on our G2 in Epsilon VI, but it has a problem. It draws so much power that the ship self-destructs in the process.\n\tDraw5PlayAll: This game will be very close.\n\n47) Felix: Move R1 Biglemon Draw5playall\n\tFelix: Little did we know that the planet Little Wood was actually just a forest moon for a much larger forest planet. We&#39;re not very creative, so we&#39;re dubbing this planet Big Wood.\n\tDraw5PlayAll: There&#39;s only one thing I can really do at this point. Commence Brutal Destruction!!\n\n\tFelix: Our small warship needs backup in the alien home system. Soon, we will be able to neutralize all weapons, and then perhaps we can build peace between our peoples...\n\tDraw5PlayAll: Facing unavoidable doom, we had a last ditch effort to save our remaining crew. We piled everyone into our large green and used engines from the yellow to flee into space. We also poisoned the planets with lots of deadly gases and radiation (there were nobody there except us) so we leave nothing behind for the &quot;peaceful&quot; invaders in the direction of Polaris.\r\n\r\n&#151;&#151;&#151;&#151;&#151;&#151;&#151;&#151;&#151;&#151;&#151;&#151;&#151;&#151;\r\n\r\nGood game. I just needed two more moves, attack red and move it away. Sadly when I ransacked your yellow economy in the Little Wood system, you had the move advantage to destroy us. I had traps set if you sacrificed too early. But you managed to trap me in a corner.\r\n\r\nPerhaps we will meet again. In the meantime, so long, and thanks for all the fish. (Yes, we tried to raid your incoming red ships. We failed, but at least we got some fish.)\n\tFelix: Great game yourself! Very well played for a beginner. You will have a very solid grasp on the strategy with a few more games. I&#39;d love to have a rematch any time! Enjoy that fish!\n\nHomeworlds Online (SDG# 29701)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.15, Ended: 2016.6.5\nParticipants: Draw5PlayAll (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y1 B2 G3\n\tnycavri: TaGG!\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) nycavri: Build G1 Nycavri\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Interesting. You appear to have skilled explorers in your home world but you lack a planetary defense system. We are going to build another construction ship before taking on any adventurous actions.\n\n5) nycavri: T G1 Y1 Nycavri\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\tnycavri: We come in peace . . . ?\n\tDraw5PlayAll: We are risk-takers, and we build another construction ship in our system. There is no risk of a suicide bomber blowing up all our green.\n\n7) nycavri: D Y1 Nycavri B3 Deacon\n\tnycavri: Yet . . .\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: I take note of your actions and decide to implement warp drives in one of the small Constellation-class ships. As always, we have to remove the construction capabilities.\n\n9) nycavri: Build G1 Nycavri\n\n10) Draw5PlayAll: Build Y2 Draw5playall\n\tnycavri: Looks like you&#39;re all set to escalate  / accelerate . . .\n\tDraw5PlayAll: Ah, but we have an Ambassador-class movement ship in our system. We hope to use it to explore strange new worlds.\n\n11) nycavri: S G1 Nycavri\nBuild Y2 Deacon\n\n12) Draw5PlayAll: Discover Y2 Draw5playall G2 Greenville\n\tnycavri: And you&#39;ve stolen tempo . . .\n\tDraw5PlayAll: Well, in that case... We discovered a medium-sized planet covered in forest. The local aliens have construction facilities that we could use to our advantage. \n\n13) nycavri: T Y2 G2 Deacon\n\n14) Draw5PlayAll: Build Y2 Greenville\n\tnycavri: Not enjoying how loneyly my mothership is . . .\n\tDraw5PlayAll: We&#39;re building another Ambassador class ship with warp drives.\n\n15) nycavri: B G1 Nycavri\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Hmmm... I could sac the G1 and build three times but I don&#39;t think I have enough influence. Instead we decided to build an Ambassador-class movement ship.\n\n17) nycavri: D Y1 Deacon G2 May\n\n18) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Greenville\n\n19) nycavri: S G3 Nycavri\nB G3 Nycavri\nB Y3 May\nB G3 Deacon\n\tDraw5PlayAll: What&#39;s interesting is that even though I am in danger of an overpopulation (I have 3 of a color in two systems) but you can&#39;t get anything there to call.\n\n20) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n21) nycavri: T G3 Y3 Deacon\n\tDraw5PlayAll: Because of the threat of a disaster we decided to swap out our Constellation-class construction vessel for a trading vessel.\n\n22) Draw5PlayAll: Sacrifice Y2 Greenville\nDiscover Y1 Draw5playall R2 Firefly\nMove B1 Draw5playall Firefly\n\n23) nycavri: T G1 R1 Nycavri\n\tDraw5PlayAll: Oh, your forces are quite annoying!\n\n24) Draw5PlayAll: Move Y3 Greenville Deacon\n\n25) nycavri: B R1 Nycavri\n\tnycavri: Happy system!\n\n26) Draw5PlayAll: Trade Y3 R3 Deacon\n\n27) nycavri: S R1 Nycavri\nA R3 Deacon\n\n28) Draw5PlayAll: Discover B1 Firefly G3 Large-green\n\n29) nycavri: B R1 Nycavri\n\n30) Draw5PlayAll: Build B1 Large-green\n\n31) nycavri: S Y3 May\nMove R3 Deacon May\nM R3 May Large-green\nM R1 Nycavri Large-green\n\n32) Draw5PlayAll: Build Y2 Greenville\n\n33) nycavri: A B1 Large-green\n\n34) Draw5PlayAll: Discover Y2 Greenville B3 Bigocean\n\n35) nycavri: B Y3 May\n\tDraw5PlayAll: That was unexpected. *sigh* I guess I&#39;ll build an Ambassador-class ship in the Greenville system.\n\n36) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y3 Bigocean\n\n37) nycavri: B G1 Nycavri\n\n38) Draw5PlayAll: Sacrifice B1 Large-green\nTrade Y2 B2 Greenville\n\n39) nycavri: S G3 Nycavri\nB G1 Deacon\nB G1 Deacon\nB G3 Nycavri\n\n40) Draw5PlayAll: Move Y2 Draw5playall Greenville\n\n41) nycavri: B Y2 Deacon\n\n42) Draw5PlayAll: Discover Y2 Greenville R3 Dangerzone\n\tDraw5PlayAll: He was doomed anyway. Plus I get to have a stake in the blue economy\n\n43) nycavri: T G2 R2 Deacon\n\tnycavri: Factory is fully operational . . .\n\tDraw5PlayAll: This behavior will not be tolerated. Prepare for destruction on a planetary scale.\n\n44) Draw5PlayAll: Build G2 Draw5playall\n\n45) nycavri: S G3 Nycavri\nB G3 Nycavri\nB R1 Deacon\nB R2 Deacon\n\tDraw5PlayAll: Same effect, but now I have a stake in the blue economy.\n\n46) Draw5PlayAll: Build B1 Greenville\n\n47) nycavri: S Y2 Deacon\nDiscover R1 Deacon Y2 Mercury\nM R2 Deacon Mercury\n\n48) Draw5PlayAll: Move Y1 Firefly Dangerzone\n\n49) nycavri: S Y3 May\nMove R1 Large-green May\nM R1 Mercury Draw5playall\nM R2 Mercury Draw5playall\n\tDraw5PlayAll: I&#39;m risking the so-called Bluebird Mistake in the hope of getting to build, trade, or move other ships soon.\n\n50) Draw5PlayAll: Sacrifice Y3 Bigocean\nMove Y2 Bigocean Nycavri\nMove Y2 Dangerzone Nycavri\nMove Y1 Dangerzone Nycavri\nCatastrophe Nycavri Yellow\n\n51) nycavri: S Y3 Deacon\nM G1 Nycavri Draw5playall\nM G3 Nycavri Draw5playall\nM R3 Large-green Nycavri\nC Draw5playall G\n\n\tDraw5PlayAll: We have successfully launched an invasion force to the base of those two mean attackers. Our long-range action technology used the Galaxy-class warp ship in BigOcean to move three suicide yellow ships into your homeworld. The energy from the ranged action system destroyed the four warp drive ships and your small yellow planet.\n\tnycavri: Thanks for the game, perhaps the favorite Homeworlds contest I have played.  You mentioned Bluebird, then missed the fact that destroying my yellow world would give me direct access to your own Homeworld . . .\n\tDraw5PlayAll: Actually, I knew it too late. I was hoping you wouldn&#39;t realize it. I didn&#39;t have much else anyway. Oddly enough, your planned attack would NOT have connected our homeworlds.\n\tDraw5PlayAll: Interestingly enough, it moved my homeworld into the middle fray, as if it was simply another star system.\n\nHomeworlds Online (SDG# 29732)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.15, Ended: 2016.5.24\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 29689)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.17, Ended: 2016.6.8\nParticipants: Simon (S), Felix (N)\nWinner: Simon\n\n1) Felix: Homeworld B1 Y3 G3\n\tFelix: Good luck and have fun :)\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: You too!\n\n3) Felix: Build G1 Felix\n\n4) Simon: Build G1 Simon\n\n5) Felix: Trade G1 B1 Felix\n\n6) Simon: Trade G1 B1 Simon\n\n7) Felix: Build B2 Felix\n\n8) Simon: Build G1 Simon\n\n9) Felix: Discover B2 Felix G2 Raven\n\n10) Simon: Trade G1 Y1 Simon\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Raven\nBuild B3 Raven\nBuild B3 Felix\n\n12) Simon: Build B3 Simon\n\n13) Felix: Trade B3 G3 Felix\n\n14) Simon: Trade B3 Y3 Simon\n\n15) Felix: Trade B2 Y2 Raven\n\n16) Simon: Discover Y3 Simon G3 G3\n\n17) Felix: Discover B2 Raven Y3 Albatross\n\n18) Simon: Move B1 Simon G3\n\n19) Felix: Build G1 Felix\n\n20) Simon: Build Y1 G3\n\n21) Felix: Discover B1 Felix Y2 Rim\n\n22) Simon: Trade Y1 R1 G3\n\n23) Felix: Trade G1 R1 Felix\n\n24) Simon: Build R2 G3\n\n25) Felix: Sacrifice G3 Felix\nBuild B2 Raven\nBuild B3 Albatross\nBuild B3 Rim\n\n26) Simon: Sacrifice Y3 G3\nMove G3 Simon Albatross\nMove G3 Albatross Raven\nMove G3 Raven Felix\n\n27) Felix: Sacrifice Y2 Raven\nMove B3 Raven Felix\nMove B3 Rim Felix\n\tFelix: I could have sworn I saw a way out of this before I made my last move. But now it&#39;s gone. I think I somehow thought I had a y3 available, which would have changed everything. I think I made a big mistake.Oops :)\n\n28) Simon: Sacrifice R2 G3\nAttack B3 Felix\nAttack B3 Felix\n\n29) Felix: Move B1 Rim Felix\nCatastrophe Felix Blue\n\tSimon: Flying in my y3 wouldn&#39;t have cut it either. If flying in the g3 didn&#39;t work, you&#39;d have the huge advantage. :-)\n\tFelix: Oh... I thought *I* had a Y3. I anticipated you moving in the G3, and I was planning to move two of my ships back home and move one ship to your homeworld to take out your remaining small. Miscalculated. Well done!\n\n30) Simon: Sacrifice R1 G3\nAttack R1 Felix\n\tSimon: gg!\n\n\nHomeworlds Online (SDG# 29771)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.17, Ended: 2016.6.24\nParticipants: dijek (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\tFelix: Hi! First game? Hope you have fun. Let me know if you have any questions.\n\n2) dijek: Homeworld G1 Y3 B3\n\tdijek: Yes, I thought this game looked interesting, although it seems fairly simple.\n\n3) Felix: Build G1 Felix\n\tdijek: Is there any limit to the number of systems, other than the size of the global stash?\n\tFelix: No limit. There can be as many as the global stash will allow!\n\n4) dijek: Build B1 Dijek\n\n5) Felix: Trade G1 B1 Felix\n\n6) dijek: Discover B1 Dijek R2 Galois\n\tFelix: The game seems fairly simple, but I assure you it is anything but. It becomes incredibly complex, and the strategy is very deep and takes many games to truly figure out. \n\tdijek: Yes, I only meant the rules seemed easy enough to understand. The strategy of easy to learn games is often quite fun and complex. :)\n\n7) Felix: Discover B1 Felix G1 Littlewood\n\tFelix: True! Yes, I think that&#39;s what makes a game great. Easy to understand rules, but depth of strategy. Hive is another favorite of mine for that reason.\n\n8) dijek: Build B1 Dijek\n\tdijek: I am not endangering Golois for next turn, I think, because although you could build a b2 in littlewood now, you could not yet move it.\n\tdijek: Oh, but you could attack even with the smallest ship size; it is greater than or equal to.\n\n9) Felix: Build B2 Littlewood\n\tFelix: Right. I can&#39;t move my ship there right now without a yellow. And even if I could move it there, I can&#39;t move and attack on the same turn, so you could just attack my ship as soon as it arrived. I would want to move a bigger ship into your system if I wanted to attack.\n\n10) dijek: Build B2 Dijek\n\tFelix: The early game is usually more focused on just building up your fleet as quickly as possible. Blue is a good color to go for at this point, as you can see I&#39;m doing. And spreading your blue ships out to green planets is useful so you can keep building faster.\n\n11) Felix: Trade B1 Y1 Littlewood\n\n12) dijek: Discover B2 Dijek B2 Klein\n\n13) Felix: Build B1 Littlewood\n\n14) dijek: Trade B2 Y2 Klein\n\n15) Felix: Build Y1 Littlewood\n\n16) dijek: Build B2 Dijek\n\n17) Felix: D B1 Littlewood G2 Othlorien\n\n18) dijek: Move Y2 Klein Dijek\n\n19) Felix: B B2 Othlorien\n\n20) dijek: Move B2 Dijek Galois\n\n21) Felix: Build B3 Littlewood\n\n22) dijek: Build Y1 Dijek\n\n23) Felix: Trade B2 Y2 Othlorien\n\n24) dijek: Trade Y2 G2 Dijek\n\n25) Felix: Build G1 Felix\n\n26) dijek: Move G2 Dijek Galois\n\n27) Felix: Discover G1 Felix R1 Sapros\n\n28) dijek: Trade B3 G3 Dijek\n\n29) Felix: Build G2 Felix\n\n30) dijek: Build G3 Galois\n\n31) Felix: Build Y2 Othlorien\n\n32) dijek: Move Y1 Dijek Galois\n\n33) Felix: Sacrifice Y1 Littlewood\nMove G1 Sapros Othlorien\n\n34) dijek: Discover B2 Galois R1 Kowa\n\n35) Felix: Discover B2 Littlewood R2 Lavaflow\n\n36) dijek: Sacrifice G3 Galois\nBuild B2 Galois\nBuild B3 Kowa\nBuild G3 Galois\n\n37) Felix: Sacrifice G3 Felix\nBuild Y1 Othlorien\nBuild Y3 Littlewood\nBuild G3 Felix\n\n38) dijek: Build Y3 Galois\n\n39) Felix: Trade G2 R2 Felix\n\tFelix: Nice move!\n\n40) dijek: Sacrifice Y3 Galois\nMove Y1 Galois Kowa\nMove Y1 Kowa Othlorien\nPass\nCatastrophe Othlorien Yellow\n\tdijek: Oh no, you&#39;ve got one of my stars...\n\tdijek: I can&#39;t stop it\n\n41) Felix: Sacrifice Y1 Littlewood\nMove G1 Othlorien Dijek\n\tFelix: I&#39;m afraid I do :) Sorry...\n\tFelix: Except I can&#39;t get it yet.... if I did, it would leave me open to a counterattack by you that could take out all of my green and destroy me. So I must be patient...\n\n42) dijek: Trade G3 R3 Dijek\n\n43) Felix: Build G2 Dijek\n\tFelix: Ooh, nice one.\n\n44) dijek: Build R1 Dijek\n\tdijek: Are you supposed to be able to trigger a catastrophe during the middle of your turn? The rules here say the end, but those on the looney labs site say any time.\n\n45) Felix: Build G3 Dijek\nCatastrophe Dijek Green\n\tFelix: There&#39;s always been some confusion over that. You&#39;re right about the rule difference between here and Looney Labs. In my opinion, Looney Labs has the rules correct, and I play that way when I play real games, but yeah, unfortunately the implementation of the rules on here only allows you to catastrophe at the end of your turn. I wish it were different, as there have been opportunities where it could have been really handy!\n\n46) dijek: Trade R1 G1 Dijek\n\tdijek: I guess it would change the strategy, especially since it stops you from doing multiple catastrophes at once.\n\tdijek: I guess it would change the strategy, especially since it stops you from doing multiple catastrophes at once.\n\tdijek: Oh wow, this attack is really good\n\n47) Felix: Build G1 Felix\n\n48) dijek: Trade B1 Y1 Galois\n\tFelix: Thank you! Yeah, I hadn&#39;t thought about being able to do two catastrophes in one turn, but that would be awesome if you could pull it off!\n\n49) Felix: Sacrifice Y3 Littlewood\nMove G3 Felix Littlewood\nMove B3 Littlewood Dijek\nMove G3 Littlewood Dijek\n\n50) dijek: Attack B3 Dijek\n\n51) Felix: Sacrifice R2 Felix\nAttack R3 Dijek\nAttack B3 Dijek\n\n52) dijek: Sacrifice G3 Galois\nBuild G1 Dijek\nBuild B1 Dijek\nBuild G2 Galois\n\tFelix: I hope this works out.... scary stuff.\n\n53) Felix: Build G3 Dijek\nCatastrophe Dijek Green\n\n54) dijek: Trade B1 R1 Dijek\n\tdijek: So tense\n\tdijek: ugh I messed up\n\n55) Felix: Sacrifice R3 Dijek\nAttack B1 Dijek\nAttack R1 Dijek\nPass\n\n\tFelix: Good game! You played well and I hope you learned some stuff. Let&#39;s play again any time!\n\tdijek: Thank you! I had fun. I still think I&#39;m a beginner, though.\n\tFelix: I got utterly destroyed the first 20 or so games I played on here, so don&#39;t be discouraged!\n\nHomeworlds Online (SDG# 29703)\nStarted: 2016.5.17, Ended: 2016.7.18\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tDraw5PlayAll: We have settled ourselves on a binary system with a blue and red star. Our large ship is geared for construction.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tts52: :) Have a good game!\n\n4) ts52: Build G1 Ts52\n\tts52: Sorry about the delay.\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) ts52: Trade G1 R1 Ts52\n\tDraw5PlayAll: That was intentional, not a typo.\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\tts52: How aggressive. Interesting.\n\n8) ts52: Build R2 Ts52\n\tDraw5PlayAll: That was a mistake. Hopefully everything is resolved.\n\n9) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\tts52: Things seem to be ok now. No worries. I&#39;ll try to keep up so I don&#39;t end up with negative time again. Thanks for being patient.\n\n10) ts52: Build G1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Discover G1 Ts52 B1 Grover\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) ts52: B G1 Ts52\n\tDraw5PlayAll: I don&#39;t want to get frozen out of blue like I was in another game...\n\n15) Draw5PlayAll: Build Y1 Draw5playall\n\n16) ts52: T R2 Y2 Ts52\n\n17) Draw5PlayAll: Discover Y1 Draw5playall G3 Thirdgen\n\n18) ts52: Move Y2 Ts52 Grover\n\tDraw5PlayAll: ThirdGen is a pun: green three-pip =&gt; G3 =&gt; 3G =&gt; third generation\n\n19) Draw5PlayAll: Move R2 Draw5playall Thirdgen\n\tts52: :) I&#39;m not sure how I started with muppets, but it&#39;s become a thing I think.\n\n20) ts52: Move R1 Ts52 Grover\n\tDraw5PlayAll: We received an order to create more warrior ships because aliens away from the direction of Polaris might potentially be hostile. In order to reduce the threat of civil war leading to catastrophe, we send the red to the ThirdGen planet to defend the Constellation ship there.\n\n21) Draw5PlayAll: Build B1 Draw5playall\n\tDraw5PlayAll: We are peacefully building another Constellation-class trading vessel in order to access more technologies.\n\n22) ts52: Build Y1 Grover\n\n23) Draw5PlayAll: Build Y2 Thirdgen\n\tts52: We are investing in new fusing drive technology to facilitate our exploratory nature.\n\tDraw5PlayAll: Interesting. I think I&#39;ll take the next Ambassador-class ship.\n\n24) ts52: Trade Y2 B2 Grover\n\n25) Draw5PlayAll: Move B1 Draw5playall Thirdgen\n\n26) ts52: Build Y2 Grover\n\tDraw5PlayAll: To reduce threats we have decided to transfer our small trading vessel over to our well-populated ThirdGen planet.\n\n27) Draw5PlayAll: Discover Y1 Thirdgen G1 Littleforest\n\n28) ts52: Discover B2 Grover G2 Oscar\n\n29) Draw5PlayAll: Build B3 Thirdgen\n\n30) ts52: Build B3 Oscar\n\n31) Draw5PlayAll: Trade B3 R3 Thirdgen\n\n32) ts52: Trade B3 Y3 Oscar\n\n33) Draw5PlayAll: Build B3 Thirdgen\n\n34) ts52: Build B3 Oscar\n\n35) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade B3 Y3 Thirdgen\n\n36) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n37) Draw5PlayAll: Build Y2 Littleforest\n\n38) ts52: Trade G2 R2 Grover\n\n39) Draw5PlayAll: Discover Y2 Thirdgen R1 Lavaflow\n\n40) ts52: Move B3 Oscar Lavaflow\n\n41) Draw5PlayAll: Sacrifice Y3 Thirdgen\nMove Y2 Lavaflow Ts52\nMove Y1 Littleforest Ts52\nMove Y2 Littleforest Ts52\nCatastrophe Ts52 Yellow\n\n42) ts52: Move Y2 Grover Ts52\n\n43) Draw5PlayAll: Trade R3 Y3 Thirdgen\n\tDraw5PlayAll: WARNING: You have only ONE COLOR AT YOUR HOMEWORLD!\n\n44) ts52: M R1 Grover Ts52\n\tts52: Thanks for the warning. Well done setting up the catastrophe.\n\n45) Draw5PlayAll: Build B1 Thirdgen\n\tDraw5PlayAll: South&#39;s ship Y2 was not sacrificed in the ts52 system. South did not move their R2 ship from Grover to ThirdGen. South did not move their R1 ship from Grover to ThirdGen. A catastrophe did not occur in the ThirdGen system. No attack (R) technology was lost.\n\n46) ts52: B B3 Oscar\n\n47) Draw5PlayAll: Move B1 Thirdgen Oscar\n\n48) ts52: Trade B3 R3 Oscar\n\n49) Draw5PlayAll: Build B3 Thirdgen\n\n50) ts52: Attack B1 Oscar\n\tDraw5PlayAll: I do not have time to plan this out. Will move later.\n\n51) Draw5PlayAll: Discover B3 Thirdgen G1 Port1\n\tDraw5PlayAll: In case you are wondering, the B1@oscar is mine, so the threat of sacrificing Y2@ts52 to explode my blues is gone.\n\n52) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild B3 Lavaflow\n\tts52: There&#39;s one solution to that problem. :)\n\n53) Draw5PlayAll: Trade B3 R3 Port1\n\tDraw5PlayAll: And there is a way to prevent you from doing that next move. True, I had access to ts52 from ThirdGen, but I had to evacuate. I chose the B1 because most of your fleet is at the wrong size\n\tDraw5PlayAll: Actually, no. I want a large there.\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Oscar\nBuild R3 Grover\n\n55) Draw5PlayAll: Build B3 Thirdgen\n\tDraw5PlayAll: I thought I was winning!! Wow.\n\n56) ts52: Discover R3 Oscar Y3 Bigbird\n\tDraw5PlayAll: Trying this on for size...\n\tDraw5PlayAll: You can supernova the ThirdGen system, but it would cost you so much that it would not be worth it, and plus, you would lose your bind on the green economy\n\n57) Draw5PlayAll: Move B1 Thirdgen Lavaflow\n\n58) ts52: Sacrifice Y2 Ts52\nMove B3 Lavaflow Bigbird\nMove G2 Grover Bigbird\n\tDraw5PlayAll: You have WAY too many ships!!\n\n59) Draw5PlayAll: Build Y1 Thirdgen\n\n60) ts52: Attack B1 Lavaflow\n\n61) Draw5PlayAll: Build Y2 Draw5playall\n\n62) ts52: Build Y2 Grover\n\n63) Draw5PlayAll: Move Y1 Thirdgen Port1\n\n64) ts52: Move R2 Grover Bigbird\n\n65) Draw5PlayAll: Build Y2 Port1\n\n66) ts52: Move Y2 Grover Ts52\n\n67) Draw5PlayAll: Sac Y3 Thirdgen\nMove Y1 Port1 Bigbird\nMove Y1 Draw5playall Bigbird\nMove Y2 Port1 Bigbird\nCatastrophe Bigbird Yellow\n\n68) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild B3 Oscar\n\tDraw5PlayAll: There are zero ships in the global stash\n\n69) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: I do not know if this is worthwhile, but I am about to do a very interesting move\n\n70) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Oscar\nBuild R3 Grover\n\tDraw5PlayAll: Problem is, I lost too much yellow.\n\n71) Draw5PlayAll: Move Y1 Draw5playall Thirdgen\nPass\n\tts52: True enough. That may have hurt you more than it hurt me.\n\tDraw5PlayAll: Your factory. Ugh.\n\n72) ts52: Discover B3 Oscar Y3 Bigbird\n\n73) Draw5PlayAll: Move Y1 Thirdgen Port1\n\n74) ts52: Move R2 Oscar Bigbird\n\n75) Draw5PlayAll: Build Y1 Port1\n\tDraw5PlayAll: If we were on Hard Time, I would probably use the Page Admin just to freeze the timer...\n\n76) ts52: Discover R3 Grover Y3 Zoe\n\tts52: Thanks. Much appreciated. Just got back, making all my moves.\n\n77) Draw5PlayAll: Build Y2 Draw5playall\n\n78) ts52: Move R2 Oscar Bigbird\n\n\tDraw5PlayAll: You had the infamous Doomsday Machine, and there is no defense. Good game.\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 29784)\nStarted: 2016.5.19, Ended: 2016.6.1\nParticipants: Jaegernjos (S), doctorfedora (N)\nWinner: doctorfedora\n\n1) doctorfedora: Homeworld B1 G3 Y3\n\n2) Jaegernjos: Homeworld B3 G1 R3\n\tdoctorfedora: So feel free to ask if you have any questions about the rules. All commands can be abbreviated as just the first letter (e.g. I sent the command &quot;h b1 g3 y3&quot; for my homeworld instead of typing out &quot;homeworld&quot; as the command)\n\n3) doctorfedora: Build Y1 Doctorfedora\n\n4) Jaegernjos: B R1 Jaegernjos\n\n5) doctorfedora: Trade Y1 G1 Doctorfedora\n\n6) Jaegernjos: Trade R1 Y1 Jaegernjos\n\n7) doctorfedora: Discover G1 Doctorfedora G2 Middy\n\n8) Jaegernjos: Move R3 Jaegernjos Middy\n\n9) doctorfedora: Build Y1 Doctorfedora\n\n10) Jaegernjos: A G1 Middy\n\n11) doctorfedora: Trade Y3 R3 Doctorfedora\n\n12) Jaegernjos: B Y1 Jaegernjos\n\n13) doctorfedora: Build Y2 Doctorfedora\n\n14) Jaegernjos: Move Y1 Jaegernjos Middy\n\tJaegernjos: What is the command for discovering a new system?  What do I put for the second system name?\n\n15) doctorfedora: Discover Y2 Doctorfedora B2 Sidey\n\n16) Jaegernjos: Build Y2 Jaegernjos\n\n17) doctorfedora: Move Y2 Sidey Jaegernjos\n\n18) Jaegernjos: Trade Y1 G1 Jaegernjos\n\n19) doctorfedora: Trade R3 G3 Doctorfedora\n\n20) Jaegernjos: Move R3 Middy Jaegernjos\n\tdoctorfedora: check\n\n21) doctorfedora: Discover Y2 Jaegernjos B2 Bluey\n\tdoctorfedora: wait, yeah, not-check after all, duh\n\n22) Jaegernjos: Discover G1 Middy Y1 Sideytoo\n\tJaegernjos: I&#39;m just blindly moving things around; I still don&#39;t quite have a handle on this yet, lol.  I&#39;m starting to get a better understanding though, I think\n\n23) doctorfedora: Trade Y2 R2 Bluey\n\n24) Jaegernjos: Build G2 Sideytoo\n\n25) doctorfedora: Build Y2 Doctorfedora\n\n26) Jaegernjos: Move G2 Sideytoo Middy\n\n27) doctorfedora: Trade R2 G2 Bluey\n\n28) Jaegernjos: Trade G1 R1 Jaegernjos\n\n29) doctorfedora: T Y1 R1 Doctorfedora\n\n30) Jaegernjos: Move R1 Jaegernjos Middy\n\n31) doctorfedora: Build R1 Doctorfedora\n\n32) Jaegernjos: Build R2 Middy\n\n33) doctorfedora: Trade R1 Y1 Doctorfedora\n\n34) Jaegernjos: Build Y2 Middy\n\n35) doctorfedora: Move Y2 Doctorfedora Bluey\n\n36) Jaegernjos: Discover R2 Middy B1 Blueytoo\n\n37) doctorfedora: Sacrifice G2 Bluey\nBuild Y3 Bluey\nBuild Y3 Doctorfedora\n\n38) Jaegernjos: Sacrifice Y2 Jaegernjos\nMove Y2 Middy Doctorfedora\nMove Y1 Middy Doctorfedora\nCatastrophe Doctorfedora Y\n\n39) doctorfedora: Trade Y2 R2 Bluey\n\n40) Jaegernjos: Trade R2 Y2 Blueytoo\n\n41) doctorfedora: Sacrifice G3 Doctorfedora\nBuild R1 Bluey\nBuild R2 Bluey\nBuild R2 Doctorfedora\n\n42) Jaegernjos: Sacrifice Y2 Blueytoo\nMove R3 Jaegernjos Bluey\nMove G2 Middy Jaegernjos\nCatastrophe Bluey R\n\n43) doctorfedora: Move Y3 Bluey Jaegernjos\n\n44) Jaegernjos: Build R1 Middy\n\n45) doctorfedora: Sacrifice R2 Doctorfedora\nAttack G2 Jaegernjos\nPass\n\tdoctorfedora: Clever idea, but it&#39;s still checkmate, I believe.\n\n\tJaegernjos: Good game!\n\nHomeworlds Online (SDG# 29777)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2016.5.19, Ended: 2016.6.13\nParticipants: Draw5PlayAll (S), Steele (N), Felix (E)\nWinner: Steele\n\n1) Steele: H B3 R1 G3\n\n2) Felix: Homeworld G3 Y2 B3\n\tFelix: So how does sinister work again? You have to try to destroy the player on your left?\n\n3) Draw5PlayAll: Homeworld B1 R2 G3 Invincible\n\tFelix: Have fun everyone :)\n\tDraw5PlayAll: Oh! My request was accepted and I get banker!\r\nFelix, THAT is a weird home world.\r\n\r\nSo I take it that:\r\nI must destroy Steele\r\nSteele must destroy Felix\r\nFelix must destroy me\r\n\r\nAnd we get 4 of each piece, how nice is that.\n\n4) Steele: B G1 Steele\n\n5) Felix: B B1 Felix\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I suppose I should get my green going before I get frozen out of blue &#151; knowing Felix, he&#39;ll probably do just that.\n\n7) Steele: T G1 Y1 Steele\n\n8) Felix: Discover B1 Felix G1 Colony\n\tFelix: Haha I&#39;ll do my best!\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: I want to do a GB home world with an R3 ship, as that gets me in the weapons economy from move one. Too bad I already picked for this game\n\n10) Steele: B Y1 Steele\n\n11) Felix: Build B1 Colony\n\tFelix: That&#39;s doable, but difficult. It&#39;s generally less useful to have weapons in the early game, and it can also cause problems to have green in your homeworld. It makes it more difficult to set up the &quot;factory&quot; in your homeworld. I chose green in my homeworld in this game to give myself a slight handicap since I have more experience than you two.\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Steele: D Y1 Steele G2 Alpha\n\tDraw5PlayAll: So is the home-world that I have (ignoring the two Constellation ships) the optimal one? Or is it better to have yellow in your world so you can move from the start?\n\n14) Felix: Trade B1 Y1 Colony\n\tFelix: From my experience, the optimal starting homeworld is a small blue and medium yellow star, and a large green ship. It all comes down to preference though!\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) Steele: B Y2 Alpha\n\n17) Felix: Build B1 Colony\n\n18) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n19) Steele: Build Y1 Steele\n\n20) Felix: Trade B1 R1 Colony\n\n21) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n22) Steele: T Y1 R1 Steele\n\n23) Felix: Build R2 Colony\n\tDraw5PlayAll: No more blue freezing, Felix!\n\n24) Draw5PlayAll: Discover R1 Draw5playall G3 Bigwood\n\tFelix: That would be a lot harder to do with this many pieces in the pool!\n\n25) Steele: Discover Y1 Alpha G1 Beta\n\n26) Felix: Discover R2 Colony Y2 Ridgeline\n\tDraw5PlayAll: Sorry for stealing the planet name!\n\n27) Draw5PlayAll: Build R2 Bigwood\n\n28) Steele: S G3 Steele\nB Y1 Alpha\nB Y3 Steele\nB Y3 Beta\nPass\n\n29) Felix: Build Y3 Colony\n\n30) Draw5PlayAll: Build Y3 Draw5playall\n\n31) Steele: Trade Y1 B1 Steele\n\tDraw5PlayAll: Eek! The resources for creating movement ships are near nonexistent. We are forced to take the last share of that economy before it&#39;s too late and we freeze out of it.\n\n32) Felix: Build B2 Felix\n\n33) Draw5PlayAll: Move B1 Draw5playall Bigwood\n\tFelix: This got really hectic, really fast o.o\n\n34) Steele: M R1 Steele Alpha\n\tDraw5PlayAll: Our colony on Big Wood is in slight danger of catastrophe and so we are sending a Constellation-class trading vessel over to the planet.\n\n35) Felix: Move Y3 Colony Bigwood\n\tDraw5PlayAll: I did notice that all of us have *exactly* two large ships.\n\n36) Draw5PlayAll: Sacrifice B1 Bigwood\nTrade Y3 R3 Draw5playall\n\n37) Steele: M B1 Steele Alpha\n\n38) Felix: Sacrifice R2 Ridgeline\nAttack R2S Bigwood\nAttack R1S Bigwood\n\n39) Draw5PlayAll: Discover R3 Draw5playall G3 Inflation\n\tDraw5PlayAll: We couldn&#39;t let you have access to our precious ships in the BigWood system. And plus, we needed a Galaxy-class ship that had phasers. We decided to use our long-range action system to suicide the small blue.\n\n40) Steele: M B1 Alpha Beta\n\n41) Felix: Move Y3 Bigwood Alpha\n\tFelix: We are a warlike race, so I&#39;m afraid it is in our nature to capture as many enemy ships as possible. It is just the way we are... please don&#39;t hold it against us! \n\n42) Draw5PlayAll: Build Y1 Draw5playall\n\n43) Steele: Build B1 Beta\n\n44) Felix: Sacrifice B1 Colony\nTrade Y3 B3 Alpha\n\tDraw5PlayAll: I was going to inflate my red economy, but I realized you could diplomatically send in small reds, one each, and explode my large and medium. Instead I&#39;m interested in propulsion technology.\n\n45) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Draw5playall\nCatastrophe Draw5playall Yellow\n\n46) Steele: Sacrifice Y2 Alpha\nMove B1 Beta Felix\nMove B1 Beta Felix\nCatastrophe Felix B\n\n\tDraw5PlayAll: Interestingly enough, my guy at Inflation did NOT disintegrate.\n\tFelix: Oh wow - definitely did not see that. Should have been more careful. It gets hectic with 3 players. Was fun though! Let&#39;s do it again some time. And well done Steele!\n\tSteele: You have taught me well :)\n\nHomeworlds Online (SDG# 29688)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.19, Ended: 2016.5.31\nParticipants: Steele (S), Felix (N)\nWinner: Steele\n\n1) Felix: Homeworld G3 B2 Y3\n\n2) Steele: H B3 R1 G3\n\tFelix: hello again. :) have fun!\n\n3) Felix: Build Y1 Felix\n\tSteele: Anything special I should know with the &quot;hard time&quot; variant?\n\tFelix: Oh. No, that just means that if you time out (don&#39;t make a move in 10 days or whatever the cap is) then the system will make you automatically surrender. I don&#39;t really like the setting and didn&#39;t realize I had it turned on!\n\n4) Steele: B G1 Steele\n\tSteele: Oh, no worries - I&#39;ll try not and make you wait 10 days between moves :)\n\n5) Felix: Trade Y1 G1 Felix\n\tFelix: Haha thanks :)\n\n6) Steele: T G1 Y1 Steele\n\n7) Felix: B Y1 Felix\n\n8) Steele: B G1 Steele\n\n9) Felix: D G1 Felix B1 Element\n\n10) Steele: B Y1 Steele\n\n11) Felix: Build Y2 Felix\n\n12) Steele: B Y2 Steele\n\n13) Felix: Move Y2 Felix Element\n\n14) Steele: S Y2 Steele\nD G1 Steele B2 Temp\nD G1 Temp B1 Alpha\nPass\n\n15) Felix: Build Y2 Element\n\n16) Steele: B G1 Alpha\n\tFelix: That was an interesting move. I&#39;ve never seen someone jump directly to a star close to my homeworld like that. Most people build up their feet at a star closer to their own home first. I like your idea though!\n\n17) Felix: Build G2 Element\n\tSteele: Seeing what happens if I put you back on your heals a bit ;)\n\n18) Steele: D Y1 Steele G2 Beta\n\tFelix: I&quot;m all for thinking out of the box and being unpredictable :)\n\n19) Felix: Discover G2 Element G3 Investment\n\n20) Steele: B Y2 Beta\n\n21) Felix: Discover Y2 Element B2 Rigor\n\n22) Steele: M Y1 Beta Alpha\n\n23) Felix: Build Y3 Element\n\n24) Steele: B Y3 Alpha\n\n25) Felix: Build G2 Element\n\n26) Steele: Sacrifice Y2 Beta\nMove Y1 Alpha Felix\nMove Y3 Alpha Felix\nCatastrophe Felix Y\n\n\tFelix: Wow. I did not see that at all. Very well done!!! \n\tSteele: My rush tactic worked this time, I don&#39;t expect it to work again in the future though... at least not against you :)\n\nHomeworlds Online (SDG# 29723)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.19, Ended: 2016.8.12\nParticipants: Felix (S), MagicJohn (W), sompm (N), dijek (E)\nWinner: Felix\n\n1) sompm: Homeworld Y1 G2 B3\n\n2) dijek: Homeworld Y3 B1 G3\n\n3) Felix: Homeworld R2 B3 G3\n\tFelix: No idea how well this will work, but have fun everyone!\n\n4) MagicJohn: Homeworld Y1 B3 G3\n\n5) sompm: Build B1 Sompm\n\tsompm: From what little experience I have; it will take us a while, but I think we knew that already. Good luck, all!\n\tsompm: From what little experience I have; it will take us a while, but I think we knew that already. Good luck, all!\n\tsompm: Hmm; that&#39;s not a new glitch.\n\n6) dijek: Build G1 Dijek\n\n7) Felix: B G1 Felix\n\tMagicJohn: Can&#39;t we all just get along?\n\tFelix: I don&#39;t mind a drawn out game. :)\n\n8) MagicJohn: Build G1 Magicjohn\n\n9) sompm: Trade B1 G1 Sompm\n\n10) dijek: Trade G1 B1 Dijek\n\n11) Felix: Trade G1 Y1 Felix\n\n12) MagicJohn: Trade G1 R1 Magicjohn\n\tFelix: We have detected aliens out there, so we are retrofitting one of our construction vessels with a warp drive. To do so, we are forced to remove the construction facilities aboard. We hope to explore the surrounding planets soon and see if any of these other life forms are peaceful.\n\tMagicJohn: Aliens?? Out there?? Where??   No Way!!!  We believe/know that we are the center of the universe and all that dead space &quot;out there&quot; revolves around us. \n\n13) sompm: Build B1 Sompm\n\n14) dijek: Build B1 Dijek\n\tsompm: &quot;Sir, the meat has discovered warp drive.&quot;\r\n&quot;They WHAT? How do they control their ships?&quot;\r\n&quot;They build pistons and variable resistors  and push them around with meat. Alternatively they use sensitive gold films and electromagnets to record and interpret their meat sounds.&quot;\r\n&quot;Oh dear. We told everyone there was nobody here because they wouldn&#39;t believe our stories. Are we comfortable with the introduction of meat-based life forms to the galactic community?&quot;\r\n&quot;I&#39;m not sure, sir, but we need to decide quickly or we&#39;re going to have an inefficient little Von Neumann meat farm on our hands.&quot;\n\n15) Felix: Build Y1 Felix\n\tMagicJohn:    Com Officer: &quot;Sir Magic, we have indeed intercepted communications from space, and there is some indication that there are multiple alien life forms in our sector. We must somehow protect ourselves from the alien presence and from a populace that may no longer accept our current line of dogmatic &quot;Center of the Universe&quot; BS. We must formulate a plan..&quot;\r\n   S.M.: &quot;Contact Agent Orange.&quot;\n\tFelix: *Squishy meat sounds*\r\nTranslation: Sir, detecting the presence of weapons technology in a nearby sector. Suggest developing our own meat missiles to defend ourselves from threat.\n\n16) MagicJohn: Build G1 Magicjohn\n\n17) sompm: Discover B1 Sompm G3 Halc\n\tMagicJohn: Agent Orange:  &quot;Assemble the council. Advise immediate discontinuation of clandestine population control measures that limit Trog population.... May soon need cannon fodder.&quot;\n\n18) dijek: Build G1 Dijek\n\tsompm: Dateline: an untended base in an empty sector of the outer dark regions. Unregistered materialization that set the network abuzz, conspiracy theories gaining some footing today when a transformation pod made a system-leap, consuming relatively huge amounts of energy to get from one empty, worthless system to another supposedly empty, worthless system. Speculation abounds, some saying that an industry deep-scanner found an unexpected reserve of underground ice or helium atmosphere; aqueous water and resource scans had already ruled the sector out for physical exploration. Might this be good for the local economy, or will foreign exporters exploit the rim worlds again? Stay tuned to 15/3, your source for fourth-arm section-five local news. Up next: is exposure to too much cuteness bad for athletic performance? Find out after these messages.\n\n19) Felix: Trade Y1 B1 Felix\n\n20) MagicJohn: Build R1 Magicjohn\n\n21) sompm: Build B2 Sompm\n\n22) dijek: Trade B1 R1 Dijek\n\n23) Felix: Build Y1 Felix\n\n24) MagicJohn: Discover R1 Magicjohn Y2 Pie\n\n25) sompm: Build G1 Sompm\n\n26) dijek: Discover G1 Dijek Y2 Pi\n\n27) Felix: Trade Y1 R1 Felix\n\n28) MagicJohn: Discover R1 Pie Y3 Cookies\n\tMagicJohn: Sorry about yet another time delay but Sara (wife) had a TIA and we spent the weekend and Monday in the hospital.\n\n29) sompm: Trade B2 R2 Sompm\n\n30) dijek: Trade B1 Y1 Dijek\n\n31) Felix: Build G1 Felix\n\tFelix: No worries! I don&#39;t mind a delay. I&#39;m so sorry you had to spend the weekend in the hospital! Everyone is okay, I hope?\n\n32) MagicJohn: Discover G1 Magicjohn Y2 Kaline\n\n33) sompm: Discover G1 Sompm Y3 Milk\n\n34) dijek: Build G2 Pi\n\n35) Felix: Discover G1 Felix B1 Ouster\n\n36) MagicJohn: Build G2 Kaline\n\n37) sompm: Build G2 Sompm\n\n38) dijek: Move G1 Pi Dijek\n\n39) Felix: Build B1 Felix\n\n40) MagicJohn: Build G2 Magicjohn\n\n41) sompm: Build G3 Milk\n\n42) dijek: Discover G2 Pi B3 Omicron\n\n43) Felix: Discover B1 Felix Y1 Chance\n\tsompm: Gah. Forgot I was south and saw my own ship as a catastrophe threat, than didn&#39;t see the sacrifice-build-build move available. Now is not the time of sleep cycle to be making important decisions.\n\tdijek: Sorry, I was away from the computer for a couple of days.\n\n44) MagicJohn: Trade G2 Y2 Magicjohn\n\n45) sompm: Sacrifice G2 Sompm\nBuild B2 Sompm\nBuild B2 Halc\n\n46) dijek: Build G2 Omicron\n\n47) Felix: Build G2 Ouster\n\n48) MagicJohn: Sacrifice G2 Kaline\nBuild R1 Cookies\nBuild G2 Kaline\n\n49) sompm: Trade B2 Y2 Halc\n\n50) dijek: Trade G2 B2 Omicron\n\n51) Felix: Build G2 Felix\n\n52) MagicJohn: Build R2 Magicjohn\n\n53) sompm: Sacrifice G3 Milk\nBuild G3 Milk\nBuild B2 Halc\nBuild Y2 Halc\n\n54) dijek: Build R2 Dijek\n\n55) Felix: Trade G2 Y2 Ouster\n\n56) MagicJohn: Discover G2 Kaline B3 Colavito\n\n57) sompm: Sacrifice G3 Milk\nBuild G2 Sompm\nBuild G3 Milk\nBuild Y3 Halc\n\n58) dijek: Discover Y1 Dijek B2 Krow\n\n59) Felix: Sacrifice G3 Felix\nBuild Y3 Ouster\nBuild G3 Felix\nBuild B2 Chance\n\n60) MagicJohn: Sacrifice Y2 Magicjohn\nMove G2 Colavito Sompm\nMove R1 Magicjohn Kaline\nCatastrophe Sompm Green\n\n61) sompm: Sacrifice Y2 Halc\nMove B3 Sompm Kaline\nMove G3 Milk Krow\n\n62) Felix: Move B2 Chance Cookies\n\n63) MagicJohn: Move G1 Kaline Dijek\n\tDraw5PlayAll: So many planets!\n\n64) sompm: Move B3 Kaline Dijek\n\tDraw5PlayAll: Wow! That was... weird. Now we have a bunch of sleeper ships that people will want to attack, sompm is left in a horrible shape, and not a single R3 exists on the board in any form at all.\r\n\r\nWow.\n\n65) Felix: Sacrifice G2 Felix\nBuild B3 Chance\nBuild G1 Felix\n\n66) MagicJohn: Build G2 Magicjohn\n\n67) sompm: Sacrifice R2 Sompm\nAttack G3E Dijek\nAttack R2E Dijek\n\tsompm: Eeyep. Y&#39;all are welcome to keep me in this game for as long or as short as you want, I&#39;ll try to survive, but there&#39;s not much I can do right now that a well-placed R3 can&#39;t fix.\n\tDraw5PlayAll: [Comment withheld due to Prime Directive]\n\n68) Felix: Trade Y2 R2 Ouster\n\tDraw5PlayAll: [Comment with help due to Prime Directive]\n\tDraw5PlayAll: *withheld\n\n69) MagicJohn: Sacrifice G3 Magicjohn\nBuild R2 Kaline\nBuild R3 Magicjohn\nBuild G2 Magicjohn\n\n70) sompm: Sacrifice R2 Dijek\nAttack G1W Dijek\nAttack Y1E Krow\n\n71) Felix: Move B2 Cookies Sompm\n\n72) MagicJohn: Move R2 Kaline Halc\n\n73) sompm: Sacrifice Y2 Halc\nMove Y3 Halc Sompm\nMove B2 Halc Krow\n\tsompm: Don&#39;t mind me, just securing my ride home.\n\n74) Felix: Trade B2 Y2 Sompm\n\tDraw5PlayAll: [Comment withheld due to Prime Directive]\n\n75) MagicJohn: Sacrifice G2 Magicjohn\nBuild R2 Halc\nBuild R3 Kaline\n\n76) sompm: Sacrifice Y3 Sompm\nMove G3 Dijek Kaline\nDiscover B3 Dijek G2 Goodotglee8ebm\nMove B3 Goodotglee8ebm Sompm\n\n77) Felix: Sacrifice G3 Felix\nBuild R3 Ouster\nBuild R3 Felix\nBuild G2 Ouster\n\n78) MagicJohn: Attack G3N Kaline\n\tsompm: Bah. If I had one more yellow ship outside of my home planet I could prevent the build-catastrophe by running us out of yellow, but alas, it is not to be. Thanks for the game.\n\n79) sompm: Sacrifice G3 Krow\nBuild Y2 Krow\nBuild Y2 Krow\nBuild G2 Milk\n\tsompm: Heh.\n\n80) Felix: Sacrifice G2 Ouster\nBuild Y2 Ouster\nBuild Y3 Sompm\n\tFelix: Not yet, but soon...\n\n81) MagicJohn: Move R3 Kaline Omicron\n\n82) sompm: Trade B3 R3 Sompm\n\tsompm: No? Well, nuts to this death thing, then!\n\n83) Felix: S R2 Ouster\nA R3N Sompm\nA B2N Sompm\n\n84) Felix: Pass\n\n85) MagicJohn: Move R2 Magicjohn Krow\n\tDraw5PlayAll: July 21: &quot;not a single R3 exists on the board in any form at all.&quot;\r\nNow: All of the five R3 tokens are ships.\r\n\r\nSO many planets!\n\n86) Felix: Move R3 Sompm Krow\n\tFelix: And there it is. Sorry mate!\n\n87) MagicJohn: Move R1 Cookies Krow\n\tFelix: Odd. The game gave me two turns in a row. Glitch?\n\tDraw5PlayAll: Eleven planets. This will be quite a conclusion. Go {[(USERNAME)]}!\n\n88) Felix: Sacrifice R3 Ouster\nAttack Y2N Krow\nAttack Y2N Krow\nAttack R2W Krow\n\n89) MagicJohn: Move R1 Cookies Krow\nCatastrophe Krow Red\n\n90) Felix: Sacrifice Y3 Ouster\nMove Y2 Krow Magicjohn\nMove Y2 Krow Magicjohn\nMove Y2 Sompm Krow\n\n91) MagicJohn: Trade R3 Y3 Omicron\n\n92) Felix: Move Y2 Krow Magicjohn\nCatastrophe Magicjohn Yellow\n\n93) MagicJohn: Sacrifice Y3 Omicron\nMove R2 Halc Sompm\nMove R2 Sompm Felix\nMove R2 Halc Krow\nCatastrophe Felix Red\n\n94) Felix: Sacrifice Y3 Sompm\nMove B2 Sompm Magicjohn\nMove B1 Chance Magicjohn\nMove B3 Chance Magicjohn\nCatastrophe Magicjohn Blue\n\n\tFelix: Good game!\n\tMagicJohn: Felix,\r\nSorry about the &quot;spite check&quot; but I had to whack you once before I joined Spock, Scotty and Bones in the great vortex in the sky. Good Game!\n\tDraw5PlayAll: What vortex? Where is Kirk?\n\tDraw5PlayAll: And what happened to all the R3s again?\n\tsompm: Thanks for the game, y&#39;all!\n\tFelix: John,\r\nQuite understandable. I&#39;d have done the same :)\n\tDraw5PlayAll: I believe this game was from when Felix said &quot;Never tried a 4P game before. Who&#39;s up?&quot; or something in the challenge description.\r\n\r\nWhat did you all think of the four-player setup?\n\tFelix: A bit chaotic, but I enjoyed it. Definitely entertaining, but perhaps less strategic.\n\tDraw5PlayAll: Well, in the two 4P games I have seen, someone has time forfeited.\n\tsompm: It felt like it needed a bit more active politics to make a whole lot of sense. Normally in a Homeworlds game I make quite certain to be immune to whatever my opponent could do in a single turn. With three adversaries, so much can change in one round, it&#39;s not worth considering every permutation. Also, if the rest of the group wanted you gone, they might very well be able to do so before you had a turn to safeguard against it. With a little more table-talk we might get alliances and betrayals and a little more ability to make &quot;unsafe&quot; moves without worry.\n\tMagicJohn: I agree with the Sommer. Communication should probably be limited to open comments (written in the game comment window)so all would have opportunities to &quot;negotiate&quot; and propose alternative scenarios. I considered a number of moves in the last game that would have relied on some &quot;help&quot; from the next player but did not feel right about leaving &quot;hints&quot; in the dialogue between plays. I would like to try a more political game. I suspect that anyone that cannot stand a little well-meant betrayal should take a pass but are any of you thick-skinned commanders up for another game?\n\tDraw5PlayAll: I wish we had a 2v2 mode where opposite seats are partners. You can do this unofficially but it is so easy to break the alliance.\n\tsompm: Ooh, I would play that. We would have to use house rules, run it as an unrated game so we can declare an alternate victory than SDG will recognize. Not sure if we would want to do SW/NE or NS/WE to allow or prevent teams getting two turns in a row.\n\tDraw5PlayAll: I said &quot;opposite seats&quot;, implying that teams will not get two turns in a row.\r\n\r\nMagicJohn proposed a challenge for 4P which I entered, but I am not 100% sure about what he means by &quot;politics&quot;. I do not want to debate about You-Know-Who and You-Know-As-Well.\r\n\r\nWe could even custom-implement Good/Evil rules as long as a fifth person monitors the game.\r\n\r\nPartners should choose identical homeworld configurations (e.g. both goldilocks, both banker, etc). This is so they can send resources to each other more easily.\r\n\r\nMain problem is that players 1 and 3 can gang up on player 4, and then after 4 dies, 2 is an easy target. Though maybe 2 could send extra resources and cause some catastrophes, so it evens out.\r\n\r\nBut it becomes nearly impossible to do the factory since you have TWO opponents who could each sac a Y2 and send a G1 to blow up the overpopulation.\n\tMagicJohn: Maybe the &quot;rules&quot; could be altered to forestall immediate attacks on #4.  Maybe no invasions for X number of turns...\n\tDraw5PlayAll: P4 can simply not connect his homeworld to the opposition and then get help from 2 in stopping the attack.\r\n\r\n1,4 vs 2,3 seems fairer in this regard but then you have a team making 2 consecutive turns.\n\tMagicJohn: But after the first move both teams would move in consecutive turns..... might work?....\n\tDraw5PlayAll: So to recap:\r\n1,3 vs 2,4.\r\nAdvantages: team members do not get to make 2 consecutive turns.\r\nDisadvantages: player 4 is an easy target for attack.\r\n1,4 vs 2,3.\r\nAdvantages: Balances number of turns.\r\nDisadvantages: after the first move, teams get 2 turns in a row.\r\n\r\nHonestly, I think we should have a vote. I vote for 1,3 vs 2,4.\n\nHomeworlds Online (SDG# 29782)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.23, Ended: 2016.6.28\nParticipants: haymire (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R2 G3\n\thaymire: Hello mate, this is my first game of Homeworlds, I will learn as I play.\n\thaymire: Hello mate, this is my first game of Homeworlds, I will learn as I play.\n\tFelix: Welcome! I hope you have fun. I hope you learn a lot too, and don&#39;t hesitate to ask me if you have any questions!\n\n2) haymire: Homeworld R3 B1 G3\n\thaymire: Having a bit of trouble with inputting my commands, errors keep popping up.\r\nI want my Homeworld to be R3, B1, with a ship G3. What do I need to type?\n\n3) Felix: Build G1 Felix\n\tFelix: Oops, sorry. It didn&#39;t notify me of your message so I didn&#39;t see it till now. Looks like you figured it out though! It can take bit of trial and error to figure out the command inputs. You can also just type the first letter of your command. So you could type &quot;H R3 B1 G3&quot; instead of &quot;Homeworld R3 B1 G3.&quot; Same goes for other commands like build.\n\tFelix: Oops, sorry. It didn&#39;t notify me of your message so I didn&#39;t see it till now. Looks like you figured it out though! It can take bit of trial and error to figure out the command inputs. You can also just type the first letter of your command. So you could type &quot;H R3 B1 G3&quot; instead of &quot;Homeworld R3 B1 G3.&quot; Same goes for other commands like build.\n\n4) haymire: Build G1 Haymire\n\n5) Felix: Trade G1 Y1 Felix\n\n6) haymire: Trade G1 Y1 Haymire\n\n7) Felix: Build G1 Felix\n\n8) haymire: Build G1 Haymire\n\n9) Felix: Trade G1 B1 Felix\n\n10) haymire: Discover G1 Haymire Y2 Mt Cheese\n\n11) Felix: Build B1 Felix\n\n12) haymire: Build G1 Haymire\n\tFelix: If there&#39;s only small left of a particular color that you don&#39;t have yet, it&#39;s best to try to trade for it if possible. Otherwise it becomes more difficult to get that color. For instance, I just took the last small blue, and you have no medium ships to trade for blue currently, so you either must wait until you have a medium, or you must trade your large for blue, neither of which is an ideal situation.\n\thaymire: Okay, I thought the build action was any colour of a ship or the star system its at.\n\n13) Felix: Discover B1 Felix G1 Orchid\n\tFelix: Ah, no. That&#39;s a mistake I made early on, too. You must actually control a ship of a color in order to build that color, I&#39;m afraid.\n\n14) haymire: Build G2 Haymire\n\n15) Felix: Build B2 Orchid\n\n16) haymire: Trade G2 B2 Haymire\n\n17) Felix: Build G2 Felix\n\n18) haymire: Sacrifice G3 Haymire\nBuild G2 Mt\nBuild G2 Mt\nBuild G3 Haymire\n\n19) Felix: Build G3 Felix\n\n20) haymire: Trade G3 Y3 Haymire\n\n21) Felix: Trade G2 R2 Felix\n\n22) haymire: Move G2 Mt Orchid\n\n23) Felix: Move R2 Felix Orchid\n\n24) haymire: Sacrifice Y3 Haymire\nMove G2 Orchid Felix\nMove G2 Mt Orchid\nMove G2 Orchid Felix\nCatastrophe Felix Green\n\n25) Felix: Trade B2 Y2 Orchid\n\n26) haymire: Build G2 Haymire\n\n27) Felix: Move R2 Orchid Mt\n\tFelix: Woah. No more larges!\n\n28) haymire: Trade G2 R2 Haymire\n\n29) Felix: Attack G1 Mt\n\n30) haymire: Build G2 Haymire\n\n31) Felix: Build B2 Orchid\n\n32) haymire: Discover G1 Haymire Y2 Cheese\n\n33) Felix: Move B2 Orchid Mt\n\n34) haymire: Build G2 Cheese\n\n35) Felix: Build B2 Mt\n\n36) haymire: Sacrifice G2 Cheese\nBuild Y1 Haymire\nBuild Y3 Haymire\n\n37) Felix: Build Y3 Orchid\n\n38) haymire: Sacrifice Y3 Haymire\nMove Y1 Haymire Mt\nMove Y1 Haymire Mt\nMove G1 Cheese Orchid\n\n39) Felix: Sacrifice Y2 Orchid\nMove Y3 Orchid Mt\nMove Y3 Mt Haymire\n\n40) haymire: Sacrifice G1 Orchid\nBuild Y2 Mt\nCatastrophe Mt Yellow\n\n41) Felix: Build B2 Orchid\n\tFelix: Man, your play style is fun to play against :) Very loose and aggressive. Most players are super cautious and don&#39;t make sacrifices very often until late in the game. This is fun, but risky!\n\n42) haymire: Build G1 Haymire\n\n43) Felix: Trade B2 R2 Orchid\n\n44) haymire: Trade G1 Y1 Haymire\n\n45) Felix: Build B2 Orchid\n\n46) haymire: Discover R2 Haymire Y2 Moonhead\n\n47) Felix: Sacrifice R2 Orchid\nAttack G2 Haymire\nAttack B2 Haymire\n\n48) haymire: Move R2 Moonhead Haymire\n\n49) Felix: Attack R2 Haymire\n\n50) haymire: Trade Y1 G1 Haymire\n\n51) Felix: Attack G1 Haymire\n\n\tFelix: Good game! You had me worried for a minute. Very well played. I&#39;d love to play again any time!\n\thaymire: &#39;ANNIHILATION OF ALL OPPOSITION&#39; lol that&#39;s nice, it was only my first game. \r\nYeah that was fun, could do a re-match.\r\nAny advice for me to improve?\n\thaymire: &#39;ANNIHILATION OF ALL OPPOSITION&#39; lol that&#39;s nice, it was only my first game. \r\nYeah that was fun, could do a re-match.\r\nAny advice for me to improve?\n\thaymire: Good game, well played\n\tFelix: Hmm... I&#39;ll try to provide tips as I think of them in our second game. Just try to diversify your colors as much as possible. Try not to get locked out of any color, and try not to have more than 2 of a color in any system, if possible, at least not for more than a turn and only if you know you&#39;ll be safe that turn. Also, it feels good to be aggressive and try to cause a catastrophe any time it&#39;s possible, but it can also leave you vulnerable to a counterattack, which is what happened here. Sometimes it&#39;s wiser to build up your forces first and wait to attack until you&#39;re sure you can finish the opponent off. Finally, you might have a bit more luck if you start with the &quot;banker&quot; formation for your home world. A small and medium of yellow and blue with a large green ship is generally considered the best starting set up for beginners.\n\nHomeworlds Online (SDG# 29797)\nStarted: 2016.5.26, Ended: 2016.9.6\nParticipants: Felix (S), zakmagnus (N)\nWinner: zakmagnus\n\n1) zakmagnus: Homeworld B3 G2 Y3\n\n2) Felix: Homeworld B1 G3 R3\n\tFelix: Welcome! First game?\n\n3) zakmagnus: Build Y1 Zakmagnus\n\n4) Felix: Build R1 Felix\n\n5) zakmagnus: Discover Y1 Zakmagnus Y1 Submarine\n\n6) Felix: Trade R1 Y1 Felix\n\n7) zakmagnus: Build Y2 Zakmagnus\n\n8) Felix: Build Y2 Felix\n\tzakmagnus: First online game.\n\tFelix: I hope you have fun. Let me know if you have any questions!\n\n9) zakmagnus: Trade Y2 R2 Zakmagnus\n\n10) Felix: Discover Y2 Felix G2 Rykan\n\n11) zakmagnus: Move R2 Zakmagnus Submarine\n\n12) Felix: Build R1 Felix\n\n13) zakmagnus: Build Y2 Zakmagnus\n\n14) Felix: Build Y2 Rykan\n\n15) zakmagnus: Trade Y2 R2 Zakmagnus\n\n16) Felix: Discover Y2 Rykan G1 Issichar\n\n17) zakmagnus: Discover Y1 Submarine G3 Lush\n\n18) Felix: Build Y2 Felix\n\n19) zakmagnus: Build Y3 Zakmagnus\n\n20) Felix: Build Y3 Issichar\n\n21) zakmagnus: Discover Y3 Zakmagnus B1 Bill\n\n22) Felix: Trade Y1 B1 Felix\n\n23) zakmagnus: Trade Y3 G3 Bill\n\n24) Felix: Build B2 Felix\n\n25) zakmagnus: Build G1 Bill\n\n26) Felix: Trade B2 G2 Felix\n\n27) zakmagnus: Move Y1 Lush Bill\n\n28) Felix: Discover G2 Felix B2 Still\n\n29) zakmagnus: Sacrifice G3 Bill\nBuild G1 Bill\nBuild G3 Bill\nBuild R1 Zakmagnus\n\n30) Felix: Build G3 Still\n\n31) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y1 Zakmagnus\nBuild Y3 Bill\n\n32) Felix: Build B2 Felix\n\n33) zakmagnus: Sacrifice Y3 Bill\nMove G1 Bill Still\nMove G1 Bill Still\nDiscover R2 Submarine B3 Thumb\nCatastrophe Still Green\n\n34) Felix: Move B1 Felix Rykan\n\n35) zakmagnus: Build G1 Bill\n\tzakmagnus: build g1 bill\n\n36) Felix: Build B2 Rykan\n\tzakmagnus: Sorry for the delay.\n\tFelix: Not a problem!\n\n37) zakmagnus: Trade R2 G2 Thumb\n\n38) Felix: Build B2 Felix\n\n39) zakmagnus: Sacrifice G3 Bill\nBuild G1 Thumb\nBuild G3 Bill\nBuild G3 Bill\n\n40) Felix: Build B3 Rykan\n\n41) zakmagnus: Sacrifice G3 Bill\nBuild G3 Thumb\nBuild Y1 Bill\nBuild Y3 Bill\n\n42) Felix: Move Y2 Rykan Bill\nCatastrophe Bill Yellow\n\tFelix: Well we&#39;re overpowered :)\n\n43) zakmagnus: Move Y1 Zakmagnus Bill\n\n44) Felix: Build Y1 Felix\n\n45) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y1 Zakmagnus\nBuild Y2 Bill\n\n46) Felix: Trade B3 Y3 Rykan\n\n47) zakmagnus: Move Y1 Bill Thumb\n\n48) Felix: Build B3 Rykan\n\n49) zakmagnus: Sacrifice Y2 Bill\nMove Y1 Thumb Issichar\nMove Y1 Zakmagnus Issichar\nCatastrophe Issichar Yellow\n\n50) Felix: Trade R1 G1 Felix\n\n51) zakmagnus: Trade G2 Y2 Thumb\n\n52) Felix: Discover Y2 Felix G2 Opus\n\n53) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y1 Zakmagnus\nBuild Y1 Thumb\n\n54) Felix: Build Y2 Rykan\n\n55) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y3 Zakmagnus\nBuild R1 Zakmagnus\n\n56) Felix: Sacrifice Y2 Rykan\nMove Y2 Opus Bill\nMove Y2 Bill Zakmagnus\nCatastrophe Zakmagnus Yellow\n\n57) zakmagnus: Sacrifice Y1 Thumb\nMove G3 Bill Zakmagnus\n\n58) Felix: Build R1 Felix\n\n59) zakmagnus: Trade R1 Y1 Zakmagnus\n\n60) Felix: D B2 Rykan Y1 Onyx\n\n61) zakmagnus: Sacrifice G3 Thumb\nBuild G2 Bill\nBuild G3 Thumb\nBuild Y2 Zakmagnus\n\n62) Felix: Move B3 Rykan Bill\n\n63) zakmagnus: Sacrifice G2 Bill\nBuild Y2 Thumb\nBuild Y3 Thumb\n\n64) Felix: Build Y3 Felix\n\n65) zakmagnus: Move G3 Thumb Onyx\n\n66) Felix: Move B2 Onyx Rykan\n\n67) zakmagnus: Sacrifice G1 Bill\nBuild G1 Onyx\n\n68) Felix: Discover G1 Felix R2 Ledge\n\n69) zakmagnus: Build G2 Thumb\n\n70) Felix: Move R1 Felix Rykan\n\n71) zakmagnus: Move R1 Zakmagnus Onyx\n\n72) Felix: Sacrifice Y1 Felix\nDiscover B2 Rykan Y1 Entry\n\n73) zakmagnus: Sacrifice G3 Onyx\nBuild G3 Onyx\nBuild R1 Zakmagnus\nBuild R2 Onyx\n\n74) Felix: Build R3 Rykan\n\n75) zakmagnus: Build R3 Zakmagnus\n\n76) Felix: Move B2 Entry Zakmagnus\n\n77) zakmagnus: Attack B2 Zakmagnus\n\tzakmagnus: This means war!\n\n78) Felix: Sacrifice Y3 Rykan\nMove B3 Bill Zakmagnus\nMove B1 Rykan Onyx\nMove B1 Onyx Zakmagnus\nCatastrophe Zakmagnus Blue\n\n79) zakmagnus: Move G3 Onyx Ledge\n\tFelix: Retaliation!\n\n80) Felix: Sacrifice G1 Ledge\nBuild Y1 Felix\n\n81) zakmagnus: Sacrifice Y2 Thumb\nMove Y2 Zakmagnus Felix\nMove Y1 Zakmagnus Felix\nCatastrophe Felix Yellow\n\n82) Felix: Trade B2 Y2 Felix\n\n83) zakmagnus: Sacrifice G3 Ledge\nBuild G1 Zakmagnus\nBuild G3 Onyx\nBuild Y1 Thumb\n\n84) Felix: Build R2 Felix\n\n85) zakmagnus: Sacrifice Y2 Thumb\nMove R1 Zakmagnus Felix\nMove R2 Zakmagnus Felix\nCatastrophe Felix Red\n\n86) Felix: Sacrifice Y2 Felix\nMove R3 Rykan Felix\nMove R1 Rykan Felix\n\n87) zakmagnus: Sacrifice Y3 Thumb\nMove R1 Onyx Zakmagnus\nMove R1 Zakmagnus Felix\nMove R3 Zakmagnus Felix\nCatastrophe Felix Red\n\n88) Felix: Build B1 Felix\n\tFelix: Ooh, nicely done.\n\n89) zakmagnus: Sacrifice Y1 Thumb\nMove G3 Zakmagnus Felix\n\n90) Felix: Build B1 Felix\n\n91) zakmagnus: Sacrifice G2 Thumb\nBuild G2 Felix\nBuild G2 Felix\nCatastrophe Felix Green\nCatastrophe Felix Blue\n\tFelix: Nice work and good game!\n\tzakmagnus: Good game. You&#39;ve been a brutal opponent.\n\tFelix: Thanks! You definitely got me fair and square. I try to play well even against newer players so you can learn, and you definitely have improved.\n\tFelix: If love to rematch any time\n\n\nHomeworlds Online (SDG# 29776)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.28, Ended: 2016.6.23\nParticipants: Draw5PlayAll (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B2 R1 G3\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n7) Simon: Build Y1 Simon\n\tDraw5PlayAll: These games are too predictable at the start. I&#39;m going to try something different this time.\r\n\r\nAs we prepared for our expedition, an announcement from a parallel universe came in. The message, when decrypted, reads:\r\n&quot;Learn your lesson: do not lose control of the traders economy. We failed at this and had to evacuate when an opposing alien race, whose leader was named Felix, destroyed our planet.&quot;\r\n\r\nWe&#39;re changing the Constellation ship to a trader ship for this reason.\n\n8) Draw5PlayAll: Build B1 Draw5playall\n\n9) Simon: Discover Y1 Simon G3 G3\n\tDraw5PlayAll: We have taken the risk of creating another Constellation-class trading vessel. We will need to diversify our economy before a disaster happens.\n\n10) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n11) Simon: Build Y2 G3\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) Simon: Discover Y1 G3 B2 B2\n\n14) Draw5PlayAll: Discover Y2 Draw5playall G1 Constructbase\n\n15) Simon: Sacrifice G3 Simon\nBuild Y2 G3\nBuild Y3 B2\nBuild Y3 Simon\n\n16) Draw5PlayAll: Build Y3 Constructbase\n\n17) Simon: Trade Y1 G1 Simon\n\tDraw5PlayAll: Every ship you have is yellow. You should start trading them or else I will Bluebird Assault you.\n\n18) Draw5PlayAll: Move B1 Draw5playall Constructbase\n\n19) Simon: Trade Y1 R1 B2\n\n20) Draw5PlayAll: Trade Y3 R3 Constructbase\n\n21) Simon: Move Y2 G3 B2\n\tDraw5PlayAll: Yeah, I realized I don&#39;t need weapons. I think I&#39;d rather own more trading vessels. I just don&#39;t like doing it at a homeworld containing blue.\n\n22) Draw5PlayAll: Build B1 Constructbase\n\n23) Simon: Trade Y2 G2 B2\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) Simon: Build G2 B2\n\n26) Draw5PlayAll: Build R1 Constructbase\n\n27) Simon: Build R2 B2\n\n28) Draw5PlayAll: Discover B1 Constructbase G3 Thegreen\n\n29) Simon: Move G2 B2 Thegreen\n\n30) Draw5PlayAll: Build B1 Constructbase\n\n31) Simon: Sacrifice R1 B2\nAttack B1 Thegreen\n\n32) Draw5PlayAll: Move G1 Draw5playall Constructbase\n\n33) Simon: Sacrifice Y2 G3\nMove G2 B2 Constructbase\nMove G2 Thegreen Constructbase\nCatastrophe Constructbase G\n\n34) Draw5PlayAll: Build Y1 Draw5playall\n\n35) Simon: Build B1 Thegreen\n\n36) Draw5PlayAll: Discover Y1 Draw5playall G1 Constructbase2\n\tDraw5PlayAll: What the... wow. That was a sweeping change.I think I&#39;m going to attempt to cover the most important economy.\n\n37) Simon: Trade B1 Y1 Thegreen\n\tSimon: yeah &gt;_&gt; Other than for this, you had a rock-solid position.\n\n38) Draw5PlayAll: Build Y2 Constructbase2\n\n39) Simon: Build Y2 Thegreen\n\n40) Draw5PlayAll: Build G1 Draw5playall\n\n41) Simon: Build G2 Simon\n\tDraw5PlayAll: You&#39;re allowed to just demolish a ship, right? Sacrifice it and pass...\n\tSimon: Yeah. Everything is optional. You can pass the regular one action, or sac a ship and pass all actions.\n\n42) Draw5PlayAll: Discover Y2 Constructbase2 B3 Bigocean\n\n43) Simon: Sacrifice G2 Simon\nBuild Y2 Thegreen\nBuild Y3 B2\n\n44) Draw5PlayAll: Move Y1 Constructbase2 Thegreen\nCatastrophe Thegreen Yellow\n\n45) Simon: Trade Y3 G3 B2\n\n46) Draw5PlayAll: Discover G1 Draw5playall R1 Lavaflow\n\n47) Simon: Build R1 B2\n\tDraw5PlayAll: Revenge!!\n\n48) Draw5PlayAll: Trade Y2 G2 Bigocean\n\n49) Simon: Discover R2 B2 G1 G1\n\n50) Draw5PlayAll: Build G2 Bigocean\n\n51) Simon: Build G2 B2\n\n52) Draw5PlayAll: Trade G2 Y2 Bigocean\n\n53) Simon: Sacrifice G3 B2\nBuild R2 G1\nBuild R3 G1\nBuild R3 B2\n\n54) Draw5PlayAll: Build G2 Lavaflow\n\n55) Simon: Sacrifice Y3 Simon\nMove Y3 B2 G1\nMove Y3 G1 Draw5playall\nMove R3 G1 Draw5playall\n\n56) Draw5PlayAll: Attack R3N Draw5playall\n\n57) Simon: Sacrifice R3 B2\nAttack R3 Draw5playall\nAttack G3 Draw5playall\nAttack Y1 Draw5playall\n\n\tSimon: wil has called this you-take-one-I-take-three. Nonetheless, a solid opening. gg, always happy to rematch.\n\tDraw5PlayAll: I could have delayed defeat by moving my guys from LavaFlow into Draw5PlayAll but it was pointless.\r\n\r\nThis is my (I think) 4th 1v1 game I have finished, and my 4th loss.\n\tDraw5PlayAll: I wonder something.\r\nSuppose we were fighting and you had no other reds, and we kept going back and forth attacking the ships for eternity.\r\nI would likely rule the ship in question destroyed, and force one player to evacuate the star. Or let it be a draw. Of course, this requires both people to not have any better moves.\n\tSimon: The game lacks a ko rule, you can repeat positions as often as you want. I consider this a hole in the rules. The implementation here doesn&#39;t recognize repetition, we&#39;d have to notify an admin.\r\n\r\nSurprisingly, I haven&#39;t had a game with repetition yet. They feel like they come up often, but happen rarely in practice.\r\n\r\nTeach the game to a friend in real life!\n\tDraw5PlayAll: Although if both players agreed they had nothing better then they could agree to a draw. It is no different from perpetual check in Earth Chess, except that Earth Chess has rules for that sort of thing.\n\nHomeworlds Online (SDG# 29836)\nVariants: &quot;Unrated&quot;\nStarted: 2016.5.29, Ended: 2016.6.17\nParticipants: Draw5PlayAll (S), Steele (N)\nWinner: Steele\n\n1) Steele: H B2 G1 Y3\n\n2) Draw5PlayAll: Homeworld R2 B3 G3\n\n3) Steele: B Y1 Steele\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Steele: B Y1 Steele\n\n6) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n7) Steele: Trade Y1 G1 Steele\n\tDraw5PlayAll: As we had no need for too much construction, we decided to trade the construction capabilities in our Constellation ship for more trading abilities.\n\n8) Draw5PlayAll: Build B1 Draw5playall\n\tDraw5PlayAll: Welp, I think I&#39;m safe for now. I&#39;m going to continue building Constellation-class trading vessels.\r\n\r\n--\r\n\r\nI have terminology for ships:\r\nSmall = Constellation class\r\nMedium = Ambassador class\r\nLarge = Galaxy class\n\n9) Steele: Discover Y1 Steele G3 Alpha\n\tSteele: I like it.\n\n10) Draw5PlayAll: Trade B1 R1 Draw5playall\n\n11) Steele: B Y1 Alpha\n\tDraw5PlayAll: We decided that it would be best to proceed to control all economies before embarking on a journey.\n\n12) Draw5PlayAll: Build R1 Draw5playall\n\n13) Steele: Trade G1 R1 Steele\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) Steele: Build R2 Steele\n\n16) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n17) Steele: T R1 B1 Steele\n\n18) Draw5PlayAll: Build Y2 Draw5playall\n\n19) Steele: Move B1 Steele Alpha\n\n20) Draw5PlayAll: Discover B1 Draw5playall G1 Littlewood\n\n21) Steele: B Y2 Steele\n\n22) Draw5PlayAll: Build G2 Draw5playall\n\n23) Steele: T Y1 R1 Alpha\n\n24) Draw5PlayAll: Discover G2 Draw5playall B1 Traderpool\n\n25) Steele: B R1 Alpha\n\n26) Draw5PlayAll: Build G2 Traderpool\n\n27) Steele: Discover R1 Alpha Y1 Beta\n\n28) Draw5PlayAll: Build B2 Littlewood\n\n29) Steele: B R2 Alpha\n\tDraw5PlayAll: The next system I discover in this game will be called Fluxx, no matter what star it is.\n\n30) Draw5PlayAll: Move R1 Draw5playall Littlewood\n\n31) Steele: T R2 G2 Alpha\n\n32) Draw5PlayAll: Build R2 Littlewood\n\n33) Steele: B R3 Alpha\n\n34) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R2 Littlewood G3 Fluxx\n\n35) Steele: Move G2 Alpha Beta\n\tDraw5PlayAll: I did that for a reason &#151; not just to have one with that name.\n\n36) Draw5PlayAll: Build R3 Fluxx\n\n37) Steele: B R3 Beta\n\n38) Draw5PlayAll: Trade B2 Y2 Littlewood\n\n39) Steele: Move R3 Alpha Traderpool\n\tDraw5PlayAll: You CAN destroy my red home star in two moves... but you&#39;d have to give up your LARGE yellow to do it.\n\tDraw5PlayAll: Oh, and your large RED! Is it really worth it?\r\n\r\nBy the way, I refuse to move in our me-you-Felix game because you&#39;re just going to win.\n\n40) Draw5PlayAll: Sacrifice Y2 Littlewood\nDiscover G2 Traderpool Y3 Port1\nDiscover G2 Traderpool Y3 Port2\n\tSteele: Nah - going for your red star doesn&#39;t really help just yet.  Soon though :)\n\n41) Steele: B B2 Alpha\n\tDraw5PlayAll: No. You are not taking my Ambassador-class construction vessels from me!!\n\n42) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild G1 Port2\n\n43) Steele: Move B1 Alpha Beta\n\tDraw5PlayAll: Green Teleportation!\n\tSteele: Take your turn in the other game.\n\n44) Draw5PlayAll: Build Y1 Draw5playall\n\n45) Steele: Sacrifice G2 Beta\nBuild Y2 Alpha\nBuild B2 Beta\nPass\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G1 Port2 Steele\nMove G2 Port2 Steele\n\n47) Steele: S Y2 Alpha\nM B2 Alpha Beta\nM B2 Beta Draw5playall\nPass\n\tDraw5PlayAll: Looks like I got the first strike\n\n48) Draw5PlayAll: Build G2 Steele\nCatastrophe Steele Green\n\n49) Steele: S Y2 Steele\nM B2 Beta Draw5playall\nM B1 Beta Draw5playall\nC Draw5playall B\n\tDraw5PlayAll: Since you made no effort to clear the attackers and they were green, they decided to build a new ship to cause the catastrophe.\r\n\r\nHowever, it appears that you will win by a one-move margin. The only way I could stop you is to hammer you with reds but I&#39;d need 2-3 turns to do anything useful.\n\n50) Draw5PlayAll: Build Y2 Draw5playall\n\tSteele: Yeah - my green star had to be sacrificed in order to follow through with my original plan.  Good game though!\n\n51) Steele: S Y3 Steele\nMove R1 Beta Draw5playall\nMove R3 Beta Draw5playall\nMove R3 Traderpool Draw5playall\nC Draw5playall R\n\tDraw5PlayAll: Good game! I somehow always end up moves behind my opponents. Like, if given just a few more moves, I could win.\n\n\nHomeworlds Online (SDG# 29834)\nVariants: &quot;Hard time&quot;\nStarted: 2016.5.31, Ended: 2016.6.21\nParticipants: Simon (S), zeder (N)\nWinner: Simon\n\n1) zeder: Homeworld G3 B1 Y3\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: Hi, have fun!\n\n3) zeder: Build Y1 Zeder\n\n4) Simon: Build G1 Simon\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) Simon: Trade G1 B1 Simon\n\n7) zeder: Trade Y3 B3 Zeder\n\n8) Simon: Build G1 Simon\n\n9) zeder: Trade G1 Y1 Zeder\n\n10) Simon: Trade G1 Y1 Simon\n\n11) zeder: Build Y1 Zeder\n\tzeder: I am already feelings uncomfortable. :(\n\n12) Simon: Build Y2 Simon\n\n13) zeder: Build Y2 Zeder\n\tSimon: Slow openings are normal in non-yellow homeworlds\n\n14) Simon: Discover Y2 Simon G3 G3\n\tzeder: This game am so confusing!\n\n15) zeder: Trade Y1 G1 Zeder\n\n16) Simon: Move B1 Simon G3\n\n17) zeder: Discover Y1 Zeder G2 Aaa\n\n18) Simon: Build G1 Simon\n\n19) zeder: Trade G1 R1 Zeder\n\n20) Simon: Build B1 G3\n\n\nHomeworlds Online (SDG# 29809)\nVariants: &quot;Unrated&quot;\nStarted: 2016.6.1, Ended: 2016.7.6\nParticipants: Felix (S), AcetyleneLamp (N)\nWinner: Felix\n\n1) AcetyleneLamp: Homeworld B1 Y2 G3\n\tAcetyleneLamp: I can&#39;t get the names of the systems to show up.\n\n2) Felix: Homeworld B3 Y2 G3\n\tAcetyleneLamp: Nevermind\n\tFelix: It takes some figuring out. The language for submitting orders is a bit finicky, but just play around and you&#39;ll get it. Is this your first game? Hope you have fun and let me know if you have questions!\n\n3) AcetyleneLamp: Build G1 Acetylenelamp\n\tAcetyleneLamp: I attempted to play this before and asked for some help in figuring it out and I had to just give up because I never got a reply (The one time I attempted to play Zendo went similarly as well). I decided to give this another chance after watching the video about how to play Homeworlds that Looney Labs put on YouTube and that cleared up things a little.\n\n4) Felix: Build G1 Felix\n\tAcetyleneLamp: I&#39;m hoping the new version of SDG that&#39;s in the works will have a less fiddly/confusing input system for games, I think that would improve this site a lot.\n\tFelix: I hope so too! And sorry you never got a response before. I&#39;m happy to help you figure the game out, since it&#39;s really a great game! You&#39;re off to a great start with your choice of piece sizes and colors. In my opinion, the homeworld colors/sizes and the large green ship you have are the best starting combination.\n\tFelix: When you&#39;re entering orders, it helps to abbreviate the words. Rather than saying &quot;built g1 felix&quot; I just type &quot;b g1 felix&quot; and the system will take that. Each command can be shortened to its first letter like that. The names of systems must be typed out fully though.\n\n5) AcetyleneLamp: Trade G1 Y1 Acetylenelamp\n\n6) Felix: Trade G1 B1 Felix\n\n7) AcetyleneLamp: Discover Y1 Acetylenelamp R3 Giedi_prime\n\n8) Felix: Discover B1 Felix G1 Rygar\n\n9) AcetyleneLamp: Build G1 Acetylenelamp\n\n10) Felix: Build G1 Felix\n\n11) AcetyleneLamp: Move G1 Acetylenelamp Giedi_prime\n\n12) Felix: Build B1 Rygar\n\n13) AcetyleneLamp: Build G2 Acetylenelamp\n\n14) Felix: Build B2 Rygar\n\n15) AcetyleneLamp: Trade G2 R2 Acetylenelamp\n\n16) Felix: Trade B2 R2 Rygar\n\n17) AcetyleneLamp: Build R1 Acetylenelamp\n\n18) Felix: Build B2 Rygar\n\n19) AcetyleneLamp: Move R1 Acetylenelamp Giedi_prime\n\n20) Felix: Trade B2 Y2 Rygar\n\n21) AcetyleneLamp: Build G2 Acetylenelamp\n\n22) Felix: Build B2 Rygar\n\n23) AcetyleneLamp: Trade G2 B2 Acetylenelamp\n\n24) Felix: Discover B2 Rygar G3 Rappa\n\n25) AcetyleneLamp: Move R2 Acetylenelamp Rappa\n\n26) Felix: Sacrifice R2 Rygar\nAttack R2 Rappa\nPass\n\n27) AcetyleneLamp: Build B2 Acetylenelamp\n\n28) Felix: Build B3 Rappa\n\n29) AcetyleneLamp: Trade B2 R2 Acetylenelamp\n\n30) Felix: Trade B3 Y3 Rappa\n\n31) AcetyleneLamp: Discover Y1 Giedi_prime B2 Corneria\n\n32) Felix: Build B3 Rappa\n\n33) AcetyleneLamp: Build B3 Acetylenelamp\n\n34) Felix: Move B2 Rappa Acetylenelamp\nCatastrophe Acetylenelamp Blue\n\n35) AcetyleneLamp: Build G2 Acetylenelamp\n\n36) Felix: Build Y1 Rygar\n\tFelix: Oopsie. Watch out for that overpopulation threat!\n\tAcetyleneLamp: I&#39;m confused as to how that happened, I thought it had to be four or more pieces of the same color in one system for a catastrophe.\n\tAcetyleneLamp: Oh, wait, you moved a blue ship in and caused it.\n\n37) AcetyleneLamp: Build G2 Giedi_prime\n\tFelix: Yeah. Any time you build three ships of the same color in a system, you should make sure that there&#39;s no way your opponent can get a fourth ship in there to cause a catastrophe.\n\n38) Felix: Build Y1 Rappa\n\n39) AcetyleneLamp: Move Y1 Corneria Giedi_prime\n\n40) Felix: Sacrifice Y3 Rappa\nMove Y1 Rappa Acetylenelamp\nMove Y2 Rygar Acetylenelamp\nMove Y1 Rygar Acetylenelamp\nCatastrophe Acetylenelamp Yellow\n\n\tFelix: Good game! I hope you had fun and learned some things. I&#39;d be happy to rematch any time you want to!\n\nHomeworlds Online (SDG# 29863)\nStarted: 2016.6.6, Ended: 2016.6.21\nParticipants: Steele (S), ladybugsfly (N)\nWinner: Steele\n\n1) ladybugsfly: H R2 G1 B3\n\n2) Steele: Homeworld Y3 B2 G3\n\n3) ladybugsfly: B B1 Ladybugsfly\n\n4) Steele: Build G1 Steele\n\tladybugsfly: I won&#39;t admit how long it took me to realize my home system&#39;s name was my username. 0:-)\n\n5) ladybugsfly: Build B1 Ladybugsfly\n\tSteele: lol - I love you &lt;3\n\n6) Steele: Build G1 Steele\n\n7) ladybugsfly: Trade B1 Y1 Ladybugsfly\n\n8) Steele: Discover G1 Steele Y1 Yourecute\n\n9) ladybugsfly: Discover B1 Ladybugsfly G3 Loveyoutoo\n\tladybugsfly: d b1 ladybugsfly g3 loveyoutoo\n\tladybugsfly: Haha, whoops! Wrong box.\n\n10) Steele: B G2 Yourecute\n\n11) ladybugsfly: Discover Y1 Ladybugsfly G3 Shouldbeworking\n\n12) Steele: Sacrifice G3 Steele\nBuild G2 Steele\nBuild G2 Yourecute\nBuild G3 Steele\nPass\n\n13) ladybugsfly: Build Y1 Shouldbeworking\n\n14) Steele: Discover G2 Yourecute Y3 Kisses\n\n15) ladybugsfly: Build Y2 Shouldbeworking\n\n16) Steele: T G1 B1 Steele\n\n17) ladybugsfly: Move Y1 Shouldbeworking Yourecute\n\n18) Steele: Trade B1 R1 Steele\n\n19) ladybugsfly: Sacrifice Y1 Yourecute\nDiscover B1 Loveyoutoo G1 Happy\n\n20) Steele: T G2 B2 Steele\n\n21) ladybugsfly: Build B1 Happy\n\n22) Steele: M B2 Steele Yourecute\n\n23) ladybugsfly: Build B1 Happy\n\n24) Steele: T G1 Y1 Yourecute\n\n25) ladybugsfly: Trade B1 R1 Happy\n\n26) Steele: B G1 Yourecute\n\n27) ladybugsfly: Move Y1 Shouldbeworking Yourecute\n\n28) Steele: D Y1 Yourecute G3 Nicetry\n\n29) ladybugsfly: Sacrifice R1 Happy\nAttack G1S Yourecute\nPass\n\n30) Steele: M B2 Yourecute Kisses\n\n31) ladybugsfly: Sacrifice Y2 Shouldbeworking\nMove B1 Happy Steele\nMove B1 Happy Steele\nPass\n\n32) Steele: Sacrifice G2 Kisses\nBuild Y2 Nicetry\nBuild R1 Steele\nPass\n\n33) ladybugsfly: Sacrifice G1 Yourecute\nBuild B1 Steele\nCatastrophe Steele B\n\n34) Steele: B R1 Steele\n\n35) ladybugsfly: Build B1 Ladybugsfly\n\n36) Steele: S Y2 Nicetry\nMove R1 Steele Ladybugsfly\nMove R1 Steele Ladybugsfly\nPass\n\n37) ladybugsfly: Discover Y1 Yourecute G2 Runforestrun\n\n38) Steele: S B2 Kisses\nT R1 B1 Ladybugsfly\nT R1 B1 Ladybugsfly\nC Ladybugsfly B\n\n\tSteele: Even though I&#39;m going to destroy all your ships, just know I love you still and you are always welcome to ride around on my ships &lt;3\n\nHomeworlds Online (SDG# 29870)\nVariants: &quot;Hard time&quot;\nStarted: 2016.6.8, Ended: 2016.8.7\nParticipants: sompm (S), Remneb (N)\nWinner: sompm\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) sompm: Homeworld Y3 B1 G3\n\n3) Remneb: Build G1 Remneb\n\n4) sompm: Build G1 Sompm\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) sompm: Trade G1 Y1 Sompm\n\n7) Remneb: Build G1 Remneb\n\n8) sompm: Discover Y1 Sompm G2 Fruitbat\n\n9) Remneb: Discover G1 Remneb Y3 Ninbo\n\n10) sompm: Build G1 Sompm\n\n11) Remneb: Discover G1 Ninbo Y2 Alba\n\n12) sompm: Trade G1 R1 Sompm\n\n13) Remneb: Build G1 Remneb\n\n14) sompm: Build R1 Sompm\n\n15) Remneb: Build Y1 Remneb\n\n16) sompm: Build Y2 Fruitbat\n\n17) Remneb: Discover Y1 Remneb G3 Mora\n\n18) sompm: Discover Y1 Fruitbat B3 Jesse\n\n19) Remneb: Sacrifice G3 Remneb\nBuild Y2 Mora\nBuild Y3 Remneb\nBuild G1 Remneb\n\n20) sompm:\nBuild G2 Sompm\n\n21) Remneb: Discover G1 Remneb Y3 Harum\n\n22) sompm: Discover G2 Sompm B2 Nodule\n\n23) Remneb: Discover Y2 Mora R2 Orion\n\n24) sompm: Move R1 Sompm Alba\n\n25) Remneb: Move G1 Alba Jesse\n\n26) sompm: Sacrifice R1 Alba\nAttack G1 Jesse\n\n27) Remneb: Build Y2 Mora\n\n28) sompm: Sacrifice G3 Sompm\nBuild G2 Nodule\nBuild G3 Jesse\nBuild R1 Sompm\n\n29) Remneb: Build G3 Harum\n\n30) sompm: Sacrifice Y2 Fruitbat\nMove G3 Jesse Orion\nMove G2 Nodule Harum\n\n31) Remneb: Sacrifice Y2 Orion\nMove G3 Harum Orion\nMove G3 Orion Sompm\n\n32) sompm: Sacrifice Y1 Jesse\nMove G3 Orion Sompm\n\n33) Remneb: Move G3 Sompm Nodule\n\n34) sompm: Build G2 Sompm\n\n35) Remneb: Trade G3 R3 Nodule\n\n36) sompm: Sacrifice G2 Nodule\nBuild G2 Harum\nBuild G3 Jesse\n\n37) Remneb: Sacrifice Y1 Mora\nMove R3 Nodule Harum\n\n38) sompm: Discover R1 Sompm Y2 Disco\n\n39) Remneb: Attack G2 Harum\n\n40) sompm: Sacrifice G2 Sompm\nBuild G2 Harum\nBuild R2 Disco\nCatastrophe Harum G\n\n41) Remneb: Build G1 Remneb\n\n42) sompm: Discover R2 Disco B3 Ranch\n\n43) Remneb: Move G1 Remneb Mora\n\n44) sompm: Build G2 Sompm\n\n45) Remneb: Build G2 Remneb\n\n46) sompm: Sacrifice G2 Sompm\nBuild G2 Sompm\nBuild R2 Ranch\n\n47) Remneb: Move G1 Remneb Harum\n\n48) sompm: Trade G1 Y1 Jesse\n\n49) Remneb: Build G1 Remneb\n\n50) sompm: Sacrifice G3 Sompm\nBuild G2 Jesse\nBuild Y1 Jesse\nBuild G3 Sompm\n\n51) Remneb: Build Y2 Mora\n\n52) sompm: Move R1 Disco Mora\n\n53) Remneb: Discover G1 Mora Y2 Zek\n\n54) sompm: Build R2 Mora\n\n55) Remneb: Sacrifice Y3 Remneb\nMove G1 Harum Zek\nMove G1 Zek Sompm\nMove G1 Zek Sompm\nCatastrophe Sompm G\n\n56) sompm: Sacrifice G2 Jesse\nBuild R3 Sompm\nBuild R3 Mora\n\n57) Remneb: Sacrifice Y2 Mora\nMove R3 Harum Remneb\nMove Y2 Mora Remneb\n\n58) sompm: Sacrifice Y1 Jesse\nMove R2 Mora Remneb\n\n59) Remneb: Trade R3 B3 Remneb\n\n60) sompm: Sacrifice R3 Mora\nAttack G2N Remneb\nAttack G1N Remneb\nAttack Y2N Remneb\n\n61) Remneb: Attack R2 Remneb\n\n62) sompm: Sacrifice Y2 Remneb\nMove R1 Mora Remneb\nMove R2 Ranch Remneb\nCatastrophe Remneb R\n\n63) Remneb: Trade B3 R3 Remneb\n\n64) sompm: Sacrifice G2 Remneb\nBuild G1 Remneb\nBuild Y1 Jesse\n\n65) Remneb: Attack G1 Remneb\n\n66) sompm: Build G1 Remneb\n\n67) Remneb: Attack G1 Remneb\n\n68) sompm: Build G2 Remneb\nCatastrophe Remneb G\n\n69) Remneb: Trade Y1 G1 Remneb\n\n70) sompm: Trade Y1 B1 Jesse\n\n71) Remneb: Build G1 Remneb\n\tsompm: This is definitely one of the more feel-bad moments in this game, but it&#39;s a one-step hop from you to me now and my home planet is not exactly diverse at the moment.\n\n72) sompm: Build B1 Jesse\n\tRemneb: It is a difficult part in the game. I really don&#39;t know what to do in my position.Try to survive is my only task here.\n\n73) Remneb: Trade G1 Y1 Remneb\n\tsompm: In other games, this would be the part where I really sit back and consider the possibilities in depth and try to really leverage my advantage as hard as possible. Unfortunately, my brain just can&#39;t seem to hold all the options at once to go any further than one or two turns deep. I&#39;m pretty sure I have one of two or three primary paths to take and make sure that you don&#39;t counter them or sneak an attack while I&#39;m winding up, but man do I not know what that should look like.\n\n74) sompm: Trade R2 B2 Ranch\n\n75) Remneb: Build G1 Remneb\n\n76) sompm: Trade R3 Y3 Sompm\n\n\tsompm: Whoops! That would have been a lethal typo. Anyhow, thanks for the game!\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 29769)\nStarted: 2016.6.10, Ended: 2016.6.10\nParticipants: Vilci (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 29884)\nVariants: &quot;Hard time&quot;\nStarted: 2016.6.12, Ended: 2016.7.19\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n1) Simon: Homeworld B1 Y2 G3\n\tSimon: have fun!\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Simon: Build G1 Simon\n\tendo: Glhf!\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 B1 Simon\n\n6) endo: Trade G1 Y1 Endo\n\n7) Simon: Build B1 Simon\n\n8) endo: Build Y1 Endo\n\n9) Simon: Discover B1 Simon G3 G3\n\n10) endo: Discover Y1 Endo Y2 Measure\n\n11) Simon: Build B2 Simon\n\n12) endo: Build Y2 Endo\n\n13) Simon: Discover B2 Simon Y3 Y3\n\n14) endo: Discover Y1 Endo G2 Topology\n\n15) Simon: Build B2 G3\n\n16) endo: Build Y3 Endo\n\n17) Simon: Sacrifice G3 Simon\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Simon\n\n18) endo: Trade Y3 R3 Endo\n\n19) Simon: Trade B3 R3 Y3\n\n20) endo: Sacrifice G3 Endo\nBuild Y3 Measure\nBuild Y3 Topology\nBuild R1 Endo\n\n21) Simon: Build B3 G3\n\n22) endo: Trade R3 G3 Endo\n\n23) Simon: Trade B3 G3 Simon\n\n24) endo: Discover Y3 Topology B3 Matroid\n\n25) Simon: Build G1 Simon\n\n26) endo: Build R1 Endo\n\n27) Simon: Trade B2 R2 G3\n\n28) endo: Move R1 Endo Measure\n\n29) Simon: Build B2 G3\n\n30) endo: Build R1 Endo\n\n31) Simon: Move G1 Simon Y3\n\n32) endo: Build G1 Endo\n\n33) Simon: Build G1 Simon\n\n34) endo: Discover R1 Endo R2 Manifold\n\n35) Simon: Build G2 Y3\n\n36) endo: Sacrifice G3 Endo\nBuild R2 Endo\nBuild R3 Endo\nBuild R3 Measure\n\n37) Simon: Move G2 Y3 Manifold\n\n38) endo: Discover Y1 Measure G3 Filter\n\n39) Simon: Build G2 Y3\n\n40) endo: Move Y3 Measure Filter\n\n41) Simon: Attack R1 Manifold\n\n42) endo: Move Y3 Filter Manifold\n\n43) Simon: Move G2 Y3 Topology\n\n44) endo: Sacrifice R2 Endo\nAttack G2 Manifold\nAttack R1 Manifold\n\n45) Simon: Sacrifice R2 G3\nAttack Y1 Topology\nPass\n\n46) endo: Move Y3 Matroid Simon\n\n\tSimon: gg\n\nHomeworlds Online (SDG# 29770)\nVariants: &quot;Unrated&quot;\nStarted: 2016.6.15, Ended: 2016.6.19\nParticipants: Skully (S), wil (N)\nWinner: Skully\n\n\tSkully: Well this sucked! Thanx alot will! \r\n\n\tSkully: Well this sucked! Thanx alot will! \r\n\n\nHomeworlds Online (SDG# 29902)\nStarted: 2016.6.19, Ended: 2016.11.11\nParticipants: Felix (S), Skully (N)\nWinner: Felix\n\n1) Skully: Homeworld Y3 G2 B3\n\n2) Felix: Homeworld R1 G3 Y3 *\n\n3) Skully: Build B1in Skully\n\tFelix: Hey there! First game? Hope you have fun and let me know if you have questions!\n\n4) Felix: Build Y1 Felix\n\tSkully: Oh hey. It actually is my first game. Hopefully i wont make it to easy for ya :)  \n\tSkully: To be sure, the only way to get the bigger size ships is if there arent any smaller ones left, correct?\n\tFelix: Hey, no worries. I&#39;m happy to help you learn the game, but I won&#39;t take it TOO easy on you. The best way to learn is to make mistakes against a better player. That&#39;s how I learned and am still learning!\r\n\r\nAnd yep, you&#39;re right. You cannot build a bigger ship until the smaller ones are all used up. You also can ONLY build a ship of a color you already own in that system. You cannot use the star&#39;s color(s) when doing this, but you can only use a ship color you already own. For instance, I can ONLY build yellow in my home system right now, not green or red until I trade for one of those colors (but I have no blue, so that will be tricky!)\n\n5) Skully: Trade B1 R1 Skully\n\n6) Felix: Discover Y1 Felix B2 Rim\n\tSkully: Ok great thanx for the clarafication. I would preffer if you didnt hold back at all hehe. \n\tFelix: Then I won&#39;t! :)\n\n7) Skully: Discover R1 Skully Y1 Evil\n\n8) Felix: Build Y1 Felix\n\n9) Skully: Build B1 Skully\n\n10) Felix: Move Y1 Felix Rim\n\n11) Skully: Move R1 Evil Rim\n\n12) Felix: Discover Y1 Rim G1 Escape\n\n13) Skully: Attack Y1 Rim\n\n14) Felix: Build Y1 Escape\n\n15) Skully: Trade B1 R1 Skully\n\tFelix: Man, I&#39;m already in a dire position!\n\n16) Felix: Build Y2 Felix\n\tSkully: I dont think its too dire\n\n17) Skully: Build R2 Skully\n\n18) Felix: Move Y2 Felix Rim\n\n19) Skully: Move R2 Skully Escape\n\tFelix: I just need to try to get a blue ships somehow\r\n\n\tSkully: Haha yeah  i know tryed to stop you but cant now.  Well played. I had heard the majority of players use blue and red as thier stars. Or atleast have blue and red in the mix between ship and stars. I personally hate when people implament a metta,  so i sat down and came up wit my combo to use against the Meta. To my suprise i find your combo, is this an experamentle  game for you?\n\n20) Felix: Trade Y2 R2 Rim\n\tFelix: Interesting. Yes, some top players incorporate red and blue into their home stars. My preference is usually to use a yellow and blue star with a green starting ship. Yeah, this is a bit of an experimental game for me. I&#39;d be happy to try another with my traditional starting colors, though!\n\n21) Skully: Attack Y1 Escape\n\n22) Felix: Attack R1 Rim\n\n23) Skully: Discover Y1 Rim G3 Factory\n\n24) Felix: Move Y1 Escape Rim\n\tSkully: I&#39;d be happy to accept that challange once this match is over. Im glad to see that in my very first Home World match im playing against a non meta player. I have the feeling that we&#39;ll  be playing against each other many times. :)\n\tFelix: Sounds good to me! I have a few games under my belt, so I know some things, but I am definitely not a meta player haha. I&#39;d rather have fun than crush everyone around me :P\n\n25) Skully: Discover Y1 Escape R2 War\n\n26) Felix: Trade R1 B1 Rim\n\n27) Skully: Build R1 Skully\n\n28) Felix: Trade B1 G1 Rim\n\n29) Skully: Move Y1 War Escape\n\n30) Felix: Build Y2 Rim\n\n31) Skully: Move Y1 Factory Rim\n\n32) Felix: Trade Y1 B1 Rim\n\n33) Skully: Discover Y1 Rim B3 Eye\n\n34) Felix: Move B1 Rim Felix\n\n35) Skully: Trade Y1 G1 Eye\n\tFelix: Finally got a blue to my homeworld!\n\n36) Felix: Build G2 Rim\n\tSkully: Hehe yeah, cant say im happy for you :p\n\n37) Skully:\nBuild G2 Eye\n\n38) Felix: Discover G2 Rim B1 Scyther\n\n39) Skully: Trade G1 Y1 Eye\n\tSkully: pokemon? stuck on go huh? :D\n\n40) Felix: B G1 Scyther\n\tFelix: You caught me :p it&#39;s a real problem...\n\n41) Skully: Build G3 Eye\n\n42) Felix: Build G3 Rim\n\n43) Skully: Trade G3 R3 Eye\n\n44) Felix: Trade G1 Y1 Scyther\n\n45) Skully: Move R3 Eye Scyther\n\n46) Felix: S Y1 Scyther\nD G2 Scyther Y3 Ekans\n\n47) Skully: Sacrifice G2 Eye\nBuild R2 Scyther\nBuild R3 Escape\n\n48) Felix: Build R3 Rim\n\n49) Skully: Move Y1 Eye Scyther\n\n50) Felix: Discover G1 Rim B1 Oddish\n\n51) Skully: Build B2 Skully\n\n52) Felix: Build G1 Ekans\n\n53) Skully: Trade B2 Y2 Skully\n\n54) Felix: Sacrifice G3 Rim\nBuild G2 Oddish\nBuild G3 Oddish\nBuild G3 Ekans\n\n55) Skully: Sacrifice Y2 Skully\nMove R2 Scyther Rim\nMove R2 Escape Rim\nCatastrophe Rim R\n\n56) Felix: Trade G3 R3 Oddish\n\n57) Skully: Move R3 Scyther Ekans\n\n58) Felix: Sacrifice R3 Oddish\nAttack R3 Ekans\nPass\nPass\n\n59) Skully: Move R1 Skully Scyther\n\tSkully: Wow very well played. Didnt see that one.\n\n60) Felix: Build G3 Oddish\n\tFelix: Thank you! I learned the hard way about that move myself once upon a time. It&#39;s easy to overlook the ability to sacrifice a red and attack in another system. Definitely something to watch out for!\n\n61) Skully: Move R3 Escape Rim\n\n62) Felix: Move Y2 Rim Oddish\n\n63) Skully: Build B2 Skully\n\n64) Felix: Trade G3 B3 Oddish\n\n65) Skully: Trade B3 G3 Skully\n\n66) Felix: Sacrifice Y3 Felix\nMove G1 Oddish Skully\nMove G2 Oddish Skully\nMove B3 Oddish Skully\nCatastrophe Skully Green\n\n\tSkully: Hmmmm quite a bind you have me in. I thinck its safe to say I lost this one. GG. \n\tFelix: I think you&#39;re right. But really, great game! Very well done! You played well.\n\nHomeworlds Online (SDG# 29921)\nVariants: &quot;Hard time&quot;\nStarted: 2016.6.21, Ended: 2016.6.27\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 R1 G3\n\tFelix: Hey, have fun and good luck!\n\tdlwillson: Sorry for fumbling your challenge! I wad clicking too quick and I missed the correct click. But, now we&#39;re playing! :-) You have fun, too, and thanks for the game!\r\n\n\tdlwillson: s/wad/was/\n\n3) Felix: Build G1 Felix\n\tFelix: No worries, Thanks for accepting the challenge!\r\n\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Felix: Build Y2 Felix\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Felix: Discover Y2 Felix G3 Opus\n\n10) dlwillson: D Y1 Dlwillson B2 Sky\n\n11) Felix: Trade Y1 B1 Felix\n\n12) dlwillson: B G1 Dlwillson\n\n13) Felix: Move B1 Felix Opus\n\n14) dlwillson: Move G1 Dlwillson Sky\n\n15) Felix: Build B1 Opus\n\n16) dlwillson: Build Y1 Sky\n\n17) Felix: Discover B1 Opus G2 Magnum\n\n18) dlwillson: D Y1 Sky Y3 Sol\n\n19) Felix: Build B1 Opus\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y3 Dlwillson\nBuild Y3 Dlwillson\n\n21) Felix: B B2 Opus\n\n22) dlwillson: T Y3 R3 Dlwillson\n\n23) Felix: Build Y3 Opus\n\n24) dlwillson: Sacrifice Y3 Dlwillson\nMove R3 Dlwillson Sky\nMove R3 Sky Sol\nMove R3 Sol Felix\n\n25) Felix: Sacrifice Y3 Opus\nMove Y2 Opus Magnum\nMove Y2 Magnum Dlwillson\nMove B2 Opus Felix\n\tFelix: Well dang, that was fast. I definitely made a mistake last turn!\n\n26) dlwillson: A Y2 Dlwillson\n\n27) Felix: Build B3 Felix\n\tdlwillson: Took me that long to remember I could do that... :-)\n\n28) dlwillson: A G3 Felix\n\n29) Felix: Trade B1 R1 Opus\n\n30) dlwillson: S R3 Felix\nA B3 Felix\nA B2 Felix\nPass\n\tFelix: Well done! You knocked me out fast. I definitely messed up by not building a red when you did.\n\tdlwillson: Thanks for the game!\n\n\nHomeworlds Online (SDG# 29780)\nStarted: 2016.6.21, Ended: 2016.7.25\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: B B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: D B2 Ts52 G3 Kermit\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Discover B1 Felix G2 Grass\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Felix: Build G1 Felix\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Build Y1 Felix\n\n17) ts52: Move Y1 Ts52 Kermit\n\n18) Felix: Trade Y2 R2 Felix\n\n19) ts52: Trade G1 R1 Ts52\n\n20) Felix: Build Y2 Felix\n\n21) ts52: Build G1 Ts52\n\n22) Felix: Move Y2 Felix Grass\n\n23) ts52: Build Y2 Kermit\n\n24) Felix: Build Y2 Grass\n\n25) ts52: Discover Y2 Kermit G2 Oscar\n\n26) Felix: Discover Y2 Grass B3 Ocean\n\n27) ts52: Build Y3 Kermit\n\n28) Felix: Sacrifice G1 Felix\nBuild Y3 Ocean\n\n29) ts52: Build G1 Ts52\n\n30) Felix: Build G1 Felix\n\n31) ts52: Discover G1 Ts52 B3 Gonzo\n\n32) Felix: Trade Y2 G2 Ocean\n\tFelix: Hope you have fun camping!\n\n33) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Oscar\nBuild R1 Ts52\n\n34) Felix: Sacrifice G1 Felix\nBuild G1 Ocean\n\tts52: Thanks! We had a blast!\n\tFelix: My wife and I went camping with our 6-month-old infant a few weekends back and it was a blast too. Got rained on though!\n\n35) ts52: Move R1 Ts52 Gonzo\n\tts52: That\n\tts52: That&#39;s awesome! We started when my youngest was 3 or so, I don&#39;t think I&#39;d be brave enough to try camping with a 6 month old. Well done!\n\n36) Felix: Move Y2 Grass Gonzo\n\tFelix: Thanks! It wasn&#39;t the easiest or most relaxing camping trip, but we made it work! She co-sleeps with my wife, so the two of them just slept in a hammock together. I was impressed they pulled it off!\n\tFelix: Next time we&#39;re going to try out this cool tent we got called a &quot;Tentsile Connect&quot; tree tent. It&#39;s a tent that you suspend from trees kind of like a hammock. Should be a bit more comfy than the ground, but we&#39;ll see.\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gonzo\nBuild R2 Gonzo\n\tts52: Let me know how it goes. We have a massive 160 sq ft tent for the 4 of us to sprawl out in, but I&#39;ve been curious about the tree tents. Was looking at one only a month or so ago actually.\n\n38) Felix: Sacrifice Y3 Ocean\nMove G1 Ocean Ts52\nMove G2 Ocean Ts52\nMove Y2 Gonzo Ts52\nCatastrophe Ts52 Green\n\n39) ts52: Sacrifice Y2 Oscar\nMove R2 Gonzo Ts52\nMove G1 Gonzo Ts52\n\tFelix: Will do!\n\tts52: Well played sir, I did not see that coming.\n\n40) Felix: Sacrifice R2 Felix\nAttack R2 Ts52\nAttack B1 Ts52\n\tFelix: Thank you! I assumed you would move your Y3 ship back home after my move, so your move makes things more interesting...\n\n41) ts52: Sacrifice Y2 Oscar\nMove R1 Gonzo Ts52\nMove R1 Gonzo Ts52\nCatastrophe Ts52 Red\n\n42) Felix: Trade Y1 R1 Felix\n\tts52: Yeah, I couldn&#39;t let you get the catastrophe that easy. But this still isn&#39;t looking too good for me.\n\n43) ts52: Build G1 Ts52\n\n44) Felix: Build G1 Felix\n\n45) ts52: Trade Y3 R3 Kermit\n\n46) Felix: Sacrifice G3 Felix\nBuild B2 Ts52\nBuild B3 Ts52\nBuild Y1 Ts52\nCatastrophe Ts52 Blue\n\n47) ts52: Move R3 Kermit Ts52\n\tFelix: Very well thought! I think I may have you now though.\n\tFelix: fought*\n\tts52: Yeah, I don&#39;t see a way out of that. Good game.\n\n48) Felix: Sacrifice G1 Felix\nBuild Y2 Ts52\nCatastrophe Ts52 Yellow\n\n\tFelix: I almost gave you a way out by forgetting to catastrophe! Great game.\n\nHomeworlds Online (SDG# 29918)\nVariants: &quot;Unrated&quot;\nStarted: 2016.6.22, Ended: 2016.7.14\nParticipants: Kalimantan (S), Felix (N), Draw5PlayAll (E)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) Draw5PlayAll: Homeworld R1 B2 G3\n\tFelix: RAWR!!!!\n\n3) Kalimantan: Homeworld B3 R1 G3\n\tDraw5PlayAll: I was actually predicting a me-Felix-someone setup, where the someone was &quot;likely Steele, unlikely ts52&quot;...\n\n4) Felix: Build G1 Felix\n\tFelix: Interesting that everyone chose the same colors as me! Looks like we&#39;ll be fighting for yellow :P\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Well, I was doing what Andy Looney says his strategy is.\n\n6) Kalimantan: Build G1 Kalimantan\n\n7) Felix: Trade G1 Y1 Felix\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) Kalimantan: Trade G1 Y1 Kalimantan\n\tDraw5PlayAll: The beginnings are too predictable. I do not know if I should send out a Y1 or G1 or B1 to explore.\n\n10) Felix: B G1 Felix\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: The first few moves are typically the same, but the possibilities become endless pretty quickly :)\n\n12) Kalimantan: Discover Y1 Kalimantan G2 Dagoba\n\tDraw5PlayAll: Well, with a finite number of pieces and a finite number of possible positions....\n\n13) Felix: Trade G1 R1 Felix\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Kalimantan: Build Y1 Dagoba\n\n16) Felix: Build R1 Felix\n\n17) Draw5PlayAll: Con Y2 Draw5playall\n\n18) Kalimantan: Build Y2 Dagoba\n\n19) Felix: Discover R1 Felix G1 Rim\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Kalimantan: Move Y2 Dagoba Kalimantan\n\tDraw5PlayAll: I think I will invest in the future.\n\n22) Felix: Build Y2 Felix\n\n23) Draw5PlayAll: Discover G1 Draw5playall B3 Traderpool\n\n24) Kalimantan: Build Y2 Kalimantan\n\tDraw5PlayAll: I see you two have been throwing your Y and R ships at green planets, while I send a green ship to a blue planet.\n\n25) Felix: Move Y1 Felix Rim\n\n26) Draw5PlayAll: Build G1 Traderpool\n\n27) Kalimantan: Trade Y2 R2 Kalimantan\n\tFelix: Different strokes for different folks :)\n\n28) Felix: Build R2 Rim\n\n29) Draw5PlayAll: Discover B1 Draw5playall G3 Heh\n\n30) Kalimantan: Move R2 Kalimantan Dagoba\n\n31) Felix: Move R2 Rim Heh\n\n32) Draw5PlayAll: Sacrifice B1 Heh\nTrade Y2 R2 Draw5playall\n\n33) Kalimantan: Move R2 Dagoba Rim\n\tFelix: *cue Jaws music* :)\n\n34) Felix: Build R3 Rim\n\tDraw5PlayAll: See, *THIS* is my problem. I get my development too slow and I end up behind the race for the large ships, particularly yellow.\n\tFelix: It can be hard to keep up, especially in a 3p game. But it&#39;s arguably more important to develop red when your opponents do. That way you at least will be less likely to lose ships.\n\n35) Draw5PlayAll: Trade G1 B1 Traderpool\n\n36) Kalimantan: Build R3 Rim\nCatastrophe Rim R\n\tDraw5PlayAll: I cannot resist!!\n\tDraw5PlayAll: Darn, I wanted to explode the reds at rim, but I cannot. Oh well, TraderPool needs support.\n\n37) Felix: Build Y2 Felix\n\n38) Draw5PlayAll: Build B1 Traderpool\n\n39) Kalimantan: Build G1 Kalimantan\n\n40) Felix: Trade Y2 B2 Felix\n\tDraw5PlayAll: This is safe because I have control of the blue economy.\n\n41) Draw5PlayAll: Trade B1 R1 Traderpool\n\n42) Kalimantan: Trade G3 R3 Kalimantan\n\tFelix: Not any more :)\n\n43) Felix: Build Y2 Felix\n\n44) Draw5PlayAll: Discover R2 Draw5playall Y3 Port\n\n45) Kalimantan: Build G1 Kalimantan\n\n46) Felix: Build G2 Felix\n\tDraw5PlayAll: I think I was playing ts52 or someone and I discovered two yellow stars as a plot to destroy the other guy&#39;s homeworld. I named them &quot;Port1&quot; and &quot;Port2&quot;, so now &quot;Port&quot; is my name for any Y3 star system.\n\n47) Draw5PlayAll: Build G2 Traderpool\n\n48) Kalimantan: Trade G1 B1 Kalimantan\n\tFelix: Sounds like a plan. I shall name all my red ships &quot;Port Destroyer&quot; then ;)\n\n49) Felix: Discover Y2 Felix B1 Ice\n\tDraw5PlayAll: This game (With 3P) has a lot of diplomacy. If Felix got too strong, the other two players can agree to each send a ship of the same color into his homeworld, which prevents the need for sacrificing while still attacking the enemy.\r\n\r\nPerhaps that game was with Simon or nycavri...I do not think it was ts52.\n\n50) Draw5PlayAll: Trade G2 Y2 Traderpool\n\n51) Kalimantan: Move B1 Kalimantan Dagoba\n\n52) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Rim\nBuild Y3 Ice\n\tDraw5PlayAll: Next blue planet should be Icehouse...\n\n53) Draw5PlayAll: Build G1 Draw5playall\n\n54) Kalimantan: Sacrifice Y2 Kalimantan\nMove Y1 Dagoba Ice\nMove Y1 Dagoba Ice\nCatastrophe Ice Y\n\tFelix: That would be clever :) \n\n55) Felix: Sacrifice Y1 Rim\nMove R2 Heh Dagoba\n\n56) Draw5PlayAll: Build G2 Traderpool\n\n57) Kalimantan: Build G2 Kalimantan\n\tDraw5PlayAll: I wish I could sac my G1 and build the G2 before the G1 is returned to the stash\n\n58) Felix: Build G3 Felix\n\n59) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Port\nBuild Y1 Traderpool\n\n60) Kalimantan: Build G3 Kalimantan\n\n61) Felix: Attack B1S Dagoba\n\tDraw5PlayAll: I really need to get some of my ships off of TraderPool before it goes supernova!\n\n62) Draw5PlayAll: Discover G2 Traderpool B2 Icehouse\n\tDraw5PlayAll: That is also a good move.\n\tDraw5PlayAll: I would not be surprised if Felix sacrificed his Y3@Felix to send his G2@Felix to Kalimantan, exploding your army. Which would only help me.\n\n63) Kalimantan: Trade G2 Y2 Kalimantan\n\n64) Felix: Build R3 Dagoba\n\tDraw5PlayAll: I tried to distance my ship from the evils that await in the direction of Polaris. It was a choice between sending a blue to a green system (which would not work) or a green to a blue system.\n\n65) Draw5PlayAll: D R2 Port Y1 Port5\n\n66) Kalimantan: Discover R3 Kalimantan Y2 Yarvin\n\n67) Felix: Trade R3 Y3 Dagoba\n\n68) Draw5PlayAll: Sac G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild R3 Port5\nPass\nPass\nPass\nPass\n\n69) Kalimantan: Discover R3 Yarvin Y1 Hoth\n\tFelix: About time to attack :)\n\n70) Felix: Discover G2 Felix B1 Flip\n\n71) Draw5PlayAll: Move B1 Traderpool Port5\n\tDraw5PlayAll: Well, I do not like this... But I have a plan.\n\n72) Kalimantan: Build G3 Kalimantan\n\n73) Felix: Sacrifice Y3 Felix\nMove G2 Flip Dagoba\nMove G2 Dagoba Kalimantan\nMove Y3 Dagoba Kalimantan\nCatastrophe Kalimantan Green\n\n74) Draw5PlayAll: Discover R1 Traderpool G1 Treehouse\n\n75) Kalimantan: Move R3 Hoth Felix\n\n76) Felix: Sacrifice R1 Felix\nAttack Y2S Kalimantan\n\tFelix: *spaceship noises*\n\tDraw5PlayAll: This only helps me.\n\n77) Draw5PlayAll: Sacrifice Y2 Traderpool\nMove R1 Treehouse Felix\nMove R2 Port5 Felix\nCatastrophe Felix R\n\tDraw5PlayAll: The thing about a 3P battle is that here Felix sacrificed many resources to bomb Kalimantan, meaning I will have an edge. However, the Kalimantan system is now like a second homeworld, because the star is intact.\r\n\r\nA quick pip count shows that I have 22 pips of ships while Felix has 17. Notice that he has more larges (but I can craft larges easily)...\r\n\r\nInteresting game.\n\n78) Felix: Build G1 Felix\n\tDraw5PlayAll: I wonder if anyone caught my reasons for the name Treehouse. Apart from being a green planet, of course.\n\n79) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Traderpool\nBuild G3 Draw5playall\nBuild B1 Port5\n\tFelix: Sorry about that, Kalimantan. That&#39;s just how it goes sometimes! And I&#39;m guessing you named it because of the other looney pyramid game, Treehouse?\n\tKalimantan: Well gg. Let me know if you guys do a 3p again. I want in. Is 4p offered at sdg? Anyway 3p and up I definitely want to participate.  Thanks for a grest game.\n\n80) Felix: Sacrifice Y3 Kalimantan\nMove G3 Felix Draw5playall\nMove G1 Felix Draw5playall\nMove B2 Felix Draw5playall\nCatastrophe Draw5playall Green\n\tDraw5PlayAll: Note to self. Be careful.\r\n\r\nI like the spite/revenge move that Kalimantan did.\n\tDraw5PlayAll: 4P is offered, but I do not like it because it creates sizing problems.\n\n81) Draw5PlayAll: Sacrifice G2 Icehouse\nBuild Y1 Draw5playall\nBuild Y2 Draw5playall\n\n82) Felix: Trade B2 Y2 Draw5playall\nCatastrophe Draw5playall Yellow\n\tDraw5PlayAll: I think when I built a G2, my mind assumed I had reinstated the factory...\n\n\tDraw5PlayAll: Hahaha you do not have enough red!!\n\tFelix: Who needs red? :)\n\tDraw5PlayAll: Do you think I had any way out? It did not look like it.\n\tDraw5PlayAll: Good game though.\n\tFelix: I didn&#39;t see any way out for you. The move you used was probably the best you could have used, but unlucky for you I had a blue ship so I could trade it for the color your had! Great game.\n\tDraw5PlayAll: Oh, I was predicting some freak move with sacrificing a large yellow and then taking over. You could have preserved my base, at the cost of Kalimantan&#39;s.\n\nHomeworlds Online (SDG# 29904)\nVariants: &quot;Unrated&quot;\nStarted: 2016.6.23, Ended: 2017.3.15\nParticipants: wil (S), Ben10 (N)\nWinner: wil\n\n1) Ben10: Homeworld Y3 B1 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 29949)\nVariants: &quot;No undo&quot;\nStarted: 2016.6.24, Ended: 2016.6.24\nParticipants: tinlef (S), Dahgrow (N)\nWinner: Dahgrow\n\n\ttinlef: hi\n\ttinlef: i don&#39;t know what i&#39;m doing\n\nHomeworlds Online (SDG# 29957)\nVariants: &quot;Unrated&quot;\nStarted: 2016.6.28, Ended: 2016.7.14\nParticipants: Felix (S), haymire (N)\nWinner: haymire\n\n1) haymire: Homeworld R3 B2 G3\n\n2) Felix: Homeworld G1 B3 R3\n\n3) haymire: Build G1 Haymire\n\n4) Felix: Build R1 Felix\n\thaymire: Last game, I just copied the colours of your home world for mine, the same this time as well. Cheers for the advice.\n\tFelix: Blue and red is not a bad combo either. I know several top players who always use that combo and do very well with it. It comes down to personal style, but I find yellow/blue to be the easiest to work with. Having a large green is really helpful early on because it gives you lots of build potential in the early game where it&#39;s important to build your fleet up quickly. You can potentially sac the g3 for 3 builds, or you can more easily set up a &quot;factory&quot; situation in your homeworld.\n\n5) haymire: Trade G1 Y1 Haymire\n\n6) Felix: Trade R1 Y1 Felix\n\n7) haymire: Build G1 Haymire\n\n8) Felix: Build Y1 Felix\n\n9) haymire: Build Y2 Haymire\n\n10) Felix: Trade Y1 G1 Felix\n\n11) haymire: Build G2 Haymire\n\n12) Felix: Discover G1 Felix B2 Rim\n\n13) haymire: Discover G2 Haymire R1 Blood\n\n14) Felix: Build G2 Rim\n\n15) haymire: Sacrifice G3 Haymire\nBuild G2 Blood\nBuild G3 Haymire\nBuild G3 Haymire\n\n16) Felix: Trade G2 Y2 Rim\n\n17) haymire: Discover G3 Haymire Y1 Cheeseball\n\tFelix: Nice move!\n\n18) Felix: Build Y2 Rim\n\n19) haymire: Trade Y1 B1 Haymire\n\n20) Felix: Trade Y2 B2 Rim\n\n21) haymire: Move B1 Haymire Blood\n\n22) Felix: Build R1 Felix\n\n23) haymire: Trade G2 Y2 Blood\n\n24) Felix: Trade R3 G3 Felix\n\n25) haymire: Build B1 Blood\n\n26) Felix: Build G2 Rim\n\tDraw5PlayAll: I am watching your actions from another sector of the galaxy. Your styles of defense intrigue me.\n\n27) haymire: Sacrifice G2 Blood\nBuild Y1 Haymire\nBuild Y3 Haymire\n\tFelix: *gasp* Who is this ethereal observer?\n\n28) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Rim\nBuild R1 Felix\n\n29) haymire: Sacrifice Y2 Haymire\nMove B1 Blood Rim\nMove B1 Blood Rim\nCatastrophe Rim Blue\n\n30) Felix: Discover Y1 Felix G2 Opus\n\tFelix: Oh, snap. Nice.\n\n31) haymire: Discover G3 Cheeseball B2 Aquatear\n\tDraw5PlayAll: Ah, we made the same mistake in another galaxy, and our immense fleet could not evacuate the supernova in time :(\n\n32) Felix: Move Y3 Felix Aquatear\n\n33) haymire: Sacrifice Y1 Haymire\nMove G3 Aquatear Felix\n\n34) Felix: Move Y3 Aquatear Felix\n\n35) haymire: Sacrifice G3 Haymire\nBuild G1 Felix\nBuild G2 Felix\nBuild G2 Haymire\nCatastrophe Felix Green\n\n36) Felix: Trade R1 G1 Felix\n\n37) haymire: Build Y1 Haymire\n\n38) Felix: Build G1 Felix\n\n39) haymire: Trade G1 B1 Haymire\n\n40) Felix: Trade G1 B1 Felix\n\n41) haymire: Discover B1 Haymire G1 Bogey\n\n42) Felix: Build Y1 Opus\n\n43) haymire: Trade Y1 B1 Haymire\n\n44) Felix: Move B1 Felix Opus\n\n45) haymire: Build G1 Haymire\n\n46) Felix: Build B2 Opus\n\n47) haymire: Move B1 Haymire Blood\n\n48) Felix: Trade Y1 R1 Opus\n\n49) haymire: Trade G2 B2 Haymire\n\n50) Felix: Discover B1 Opus Y1 Raggy\n\n51) haymire: Sacrifice Y3 Haymire\nMove B2 Haymire Bogey\nMove B2 Bogey Felix\nMove B1 Bogey Felix\n\tDraw5PlayAll: I think haymire is winning.\n\n52) Felix: Move B1 Raggy Felix\n\n53) haymire: Move B1 Blood Felix\nCatastrophe Felix Blue\n\tFelix: Very nicely done!\n\tDraw5PlayAll: Missed Catastrophe??\n\thaymire: Good game mate, thank you. I learnt from you.\n\tFelix: Glad you learned! Good game. I&#39;d love to rematch any time!\n\n\nHomeworlds Online (SDG# 29989)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.2, Ended: 2016.8.6\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld B1 Y2 G3\n\tdlwillson: Have fun!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Thanks, you too!\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: B B2 Dlwillson\n\n8) Felix: Build B2 Felix\n\n9) dlwillson: Trade B2 Y2 Dlwillson\n\n10) Felix: Trade B2 Y2 Felix\n\n11) dlwillson: Build B2 Dlwillson\n\tFelix: I feel a bit like a copycat right now.\n\n12) Felix: Build B2 Felix\n\n13) dlwillson: Trade B2 R2 Dlwillson\n\n14) Felix: Trade B2 R2 Felix\n\n15) dlwillson: B B2 Dlwillson\n\n16) Felix: Build B2 Felix\n\tdlwillson: It&#39;s the nature of it. You can copy for free, or break out at a cost. Copying is more correct, most of the time, in the early game, I think.\n\tdlwillson: But I am late to move out now... Losing momentum.\n\n17) dlwillson: D B1 Dlwillson G2 Field\n\n18) Felix: Discover B2 Felix G3 Dagobah\n\n19) dlwillson: Discover B2 Dlwillson G2 Forest\n\n20) Felix: Discover B1 Felix Y3 Tattooine\n\n21) dlwillson: Build Y1 Dlwillson\n\n22) Felix: Build Y1 Felix\n\n23) dlwillson: M Y1 Dlwillson Field\n\n24) Felix: Move Y1 Felix Dagobah\n\tDraw5PlayAll: I am always late and I never fail to lose momentum.\n\tdlwillson: Sorry for the delay. Interesting position. I&#39;m going to set it up in plastic before I move.\n\tdlwillson: Bah. Too busy. I&#39;ll just move and hope for the best. :-)\n\n25) dlwillson: B Y3 Field\n\tdlwillson: Shoot. I thought I submitted that move this morning!\n\n26) Felix: Build Y3 Dagobah\n\tFelix: I think I had a plan for my last move, but now I can&#39;t remember it, haha\n\tDraw5PlayAll: That is what the notebook is for, haha\n\n27) dlwillson: Trade Y3 R3 Field\n\n28) Felix: Trade Y1 R1 Dagobah\n\n29) dlwillson: Build B2 Field\n\n30) Felix: Build B3 Dagobah\n\n31) dlwillson: B B3 Forest\n\n32) Felix: Sacrifice Y2 Felix\nMove B1 Tattooine Forest\nMove B2 Dagobah Forest\nCatastrophe Forest Blue\n\n33) dlwillson: D B2 Field Y3 Sol\n\n34) Felix: Build G1 Felix\n\n35) dlwillson: Discover Y2 Dlwillson B2 Sky\n\n36) Felix: Discover G1 Felix B3 Jade\n\n37) dlwillson: B G1 Dlwillson\n\n38) Felix: B G1 Felix\n\n39) dlwillson: Build R1 Dlwillson\n\n40) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G2 Jade\nBuild G3 Felix\n\n41) dlwillson: M R3 Field Jade\n\n42) Felix: Sacrifice G2 Jade\nBuild Y1 Dagobah\nBuild B1 Dagobah\n\n43) dlwillson: A G1 Jade\n\n44) Felix: Discover G2 Felix Y3 Escape\n\n45) dlwillson: S G3 Dlwillson\nB G2 Jade\nB G3 Dlwillson\nB Y2 Sky\n\n46) Felix: Trade G1 R1 Felix\n\n47) dlwillson: S G3 Dlwillson\nB G1 Jade\nB G3 Dlwillson\nB B2 Sol\n\n48) Felix: Move Y3 Dagobah Field\n\n49) dlwillson: M Y2 Sky Escape\n\n50) Felix: Sacrifice R2 Felix\nAttack Y2 Escape\nAttack Y1 Field\n\n51) dlwillson: Sacrifice Y2 Sky\nMove B2 Sol Felix\nMove B2 Sol Felix\n\n52) Felix: Sacrifice G2 Escape\nBuild Y2 Field\nBuild Y3 Dagobah\n\n53) dlwillson: S R1 Dlwillson\nA R1 Felix\n\n54) Felix: Trade B3 R3 Dagobah\n\tFelix: Huh. For some reason I thought you had no yellows left after my attack. That was a mistake!\n\n55) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB B2 Felix\n\n56) Felix: Sacrifice R1 Dagobah\nAttack B1 Field\n\tDraw5PlayAll: Red Teleportaion?!?\n\n57) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB R1 Felix\nB B3 Felix\n\n58) Felix: Move Y3 Field Dlwillson\nCatastrophe Felix Blue\n\n59) dlwillson: A Y3 Dlwillson\n\n60) Felix: Sacrifice Y2 Escape\nMove Y2 Field Dlwillson\nMove Y1 Field Dlwillson\nCatastrophe Dlwillson Yellow\n\n61) dlwillson: Trade G3 Y3 Dlwillson\n\n62) Felix: Move Y3 Dagobah Felix\n\n63) dlwillson: T G2 Y2 Jade\n\n64) Felix: B B1 Field\n\n65) dlwillson: M Y3 Dlwillson Felix\n\n66) Felix: S Y3 Felix\nM B1 Field Dlwillson\nM B1 Field Dlwillson\nD B1 Dagobah Y2 Soclose\n\n67) dlwillson: S G2 Dlwillson\nB Y1 Felix\nB Y1 Felix\nC Felix Y\n\tFelix: This is so tense :O\n\tDraw5PlayAll: Wow, it does look tense.\n\n\tFelix: Well played indeed. I was one move away. I knew I should have kept you locked out of yellow a bit longer!\n\tdlwillson: Excellent game :-)\n\nHomeworlds Online (SDG# 29970)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.4, Ended: 2016.7.4\nParticipants: jslimify (S), Felix (N)\nWinner: Felix\n\n\tjslimify: Gl\n\tjslimify: Gl\n\nHomeworlds Online (SDG# 29942)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.4, Ended: 2016.7.31\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 29956)\nStarted: 2016.7.6, Ended: 2016.7.26\nParticipants: Felix (S), Kalimantan (N)\nWinner: Felix\n\n1) Kalimantan: Homeworld Y3 G1 R3 *\n\n2) Felix: Homeworld R3 Y2 G3 *\n\tFelix: Have fun! :)\n\n3) Kalimantan: Build R1 Kalimantan\n\tFelix: A blueless intro...\n\n4) Felix: Build G1 Felix\n\n5) Kalimantan: Build R1 Kalimantan\n\n6) Felix: Build G1 Felix\n\n7) Kalimantan: Discover R1 Kalimantan B2 Dagoba\n\n8) Felix: Discover G1 Felix B1 Flip\n\n9) Kalimantan: Move R1 Kalimantan Dagoba\n\n10) Felix: Build G2 Flip\n\n11) Kalimantan: Trade R1 B1 Dagoba\n\n12) Felix: Trade G2 B2 Flip\n\n13) Kalimantan: Trade R1 Y1 Dagoba\n\n14) Felix: Build G2 Flip\n\n15) Kalimantan: Move B1 Dagoba Kalimantan\n\n16) Felix: Trade G2 Y2 Flip\n\n17) Kalimantan: Build R1 Kalimantan\n\n18) Felix: Move B2 Flip Felix\n\n19) Kalimantan: Move R1 Kalimantan Dagoba\n\n20) Felix: Build G2 Flip\n\tDraw5PlayAll: What is with this name &quot;Dagoba&quot;?\n\tFelix: @Draw5 - it&#39;s from Star Wars\n\n21) Kalimantan: Move R1 Dagoba Flip\n\tKalimantan: Lol. Yeah I&#39;m butchering all the names I can remember from star wars systems. Like yarvin was supposed to be from yavin 4 but I misspelled it so now I just use yarvin all the time. I can&#39;t remember to many names of starsystems and star wars is pretty much the only exposure I&#39;ve had to galactic warfare. \n\n22) Felix: Trade G2 R2 Flip\n\n23) Kalimantan: Attack G1 Flip\n\tFelix: You need to watch some Star Trek or Battlestar Galactica!\n\tKalimantan: Well I like startrek but I don&#39;t know of any memorable star systems. I was very young when I watched it. And I always saw as more about galactic exploration and diplomacy and not warfare. Battlestar galatica on the other I&#39;ve just never actully watched it. I&#39;m not sure why, maybe it was past my generation, I don&#39;t remember ever seeing on tv.\n\n24) Felix: Sacrifice R2 Flip\nAttack R1 Flip\nAttack G1 Flip\n\tFelix: Quite understandable :) I watched both those shows but i can&#39;t really remember any memorable system names either!\n\n25) Kalimantan: Build R1 Kalimantan\n\n26) Felix: Build G2 Flip\n\n27) Kalimantan: Trade R3 G3 Kalimantan\n\tDraw5PlayAll: But this game IS exploration, and diplomacy in a 3+ player game...\n\tKalimantan: It&#39;s time implement a monopoly breaking transaction y\n\n28) Felix: D G2 Flip B2 Flop\n\tFelix: Good thinking!\n\n29) Kalimantan: Sacrifice G3 Kalimantan\nBuild B1 Kalimantan\nBuild B3 Kalimantan\nBuild Y1 Dagoba\n\n30) Felix: Build B3 Felix\n\tFelix: Did you mean to pass? You can undo your move and do it again if you wish.\n\n31) Kalimantan: Trade B3 G3 Kalimantan\n\n32) Felix: Build B3 Felix\n\n33) Kalimantan: Sacrifice G3 Kalimantan\nBuild B3 Kalimantan\nBuild R1 Kalimantan\nBuild R2 Kalimantan\n\n34) Felix: Discover B3 Felix Y1 Flap\n\n35) Kalimantan: Move R2 Kalimantan Flop\n\n36) Felix: Sacrifice R1 Flip\nAttack R2 Flop\n\n37) Kalimantan: Move Y1 Dagoba Flip\n\n38) Felix: Move B3 Flap Flop\n\n39) Kalimantan: Sacrifice R1 Kalimantan\nAttack G1 Flip\n\n40) Felix: Sacrifice Y2 Flip\nMove B3 Flop Kalimantan\nMove R2 Flop Kalimantan\nCatastrophe Kalimantan Blue\n\n41) Kalimantan: Build R1 Kalimantan\n\n42) Felix: Sacrifice G1 Felix\nBuild R1 Kalimantan\nCatastrophe Kalimantan Red\n\tFelix: Watch out for that overpopulation threat! It&#39;s a killer. I know it was super tempting to attack my ship, but you left yourself open in your homeworld. \n\n\tKalimantan: Well I think I lost this match from the point where I made the g3, l thought it was a good move then but now in hindsight it seems like that&#39;s the precise moment I sealed my doom.  And hey who knows, maybe I would&#39;ve fared better if I kept the pass. But I think I saw the catastrophe coming but there was really nothing I can do to stop it I think, can&#39;t quite remember now that the ships r gone.\n\tFelix: Yeah, that G3 might have been a mistake. It&#39;s difficult to work with a G3 in your homeworld if you also have green as one of your home stars, too. That said, you played well, and I hope you learned some things! I&#39;d be happy to rematch any time :)\n\tDraw5PlayAll: Felix, was the no-blue homeworld a handicap thing? Because I have always found that a blue star is helpful (I have not tried a blue ship, but I prefer green ships). It helps me diversify the local defense fleet without having to go to blue stars or worry about keeping blues at home.\n\tFelix: @Draw5 it&#39;s generally considered more difficult to not have any blue at all at the start of the game. Since we both did it, neither of us were handicapped!\n\nHomeworlds Online (SDG# 29930)\nStarted: 2016.7.6, Ended: 2016.8.8\nParticipants: ts52 (S), Kalimantan (N)\nWinner: ts52\n\n1) Kalimantan: Homeworld R3 G2 B3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Kalimantan: Build B1 Kalimantan\n\tts52: Sorry for the delay.\n\tKalimantan: It&#39;s okay\n\n4) ts52: Build G1 Ts52\n\n5) Kalimantan: Build B1 Kalimantan\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Kalimantan: Trade B1 Y1 Kalimantan\n\n8) ts52: Build G1 Ts52\n\n9) Kalimantan: Trade B1 G1 Kalimantan\n\n10) ts52: Discover G1 Ts52 B3 Gonzo\n\n11) Kalimantan: Build B1 Kalimantan\n\n12) ts52: Discover B1 Ts52 G3 Oscar\n\n13) Kalimantan: Trade B1 R1 Kalimantan\n\n14) ts52: Trade B1 R1 Oscar\n\n15) Kalimantan: Discover R1 Kalimantan G1 Dagoba\n\n16) ts52: Build G2 Ts52\n\n17) Kalimantan: Build G2 Kalimantan\n\n18) ts52: Build G3 Gonzo\n\n19) Kalimantan: Build B1 Kalimantan\n\n20) ts52: Trade G3 Y3 Gonzo\n\n21) Kalimantan: Move G2 Kalimantan Dagoba\n\n22) ts52: Build G3 Gonzo\n\n23) Kalimantan: Move Y1 Kalimantan Dagoba\n\n24) ts52: Trade G2 B2 Ts52\n\n25) Kalimantan: Trade G1 Y1 Kalimantan\n\n26) ts52: Sacrifice G3 Gonzo\nBuild G1 Ts52\nBuild G2 Ts52\nBuild G3 Gonzo\n\n27) Kalimantan: Build Y2 Kalimantan\n\n28) ts52: Discover G1 Ts52 Y3 Bigbird\n\n29) Kalimantan: Move R1 Dagoba Bigbird\n\n30) ts52: Sacrifice R1 Oscar\nAttack R1 Bigbird\n\n31) Kalimantan: Discover Y1 Dagoba G3 Yavin\n\n32) ts52: Move Y3 Gonzo Dagoba\n\n33) Kalimantan: Sacrifice G2 Dagoba\nBuild Y2 Yavin\nBuild Y2 Yavin\n\n34) ts52: Sacrifice G3 Gonzo\nBuild G2 Bigbird\nBuild G3 Gonzo\nBuild Y3 Dagoba\n\n35) Kalimantan: Sacrifice Y2 Kalimantan\nMove Y2 Yavin Ts52\nMove Y2 Yavin Ts52\n\n36) ts52: Trade G3 R3 Ts52\n\n37) Kalimantan: Build Y2 Yavin\n\n38) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\nBuild R1 Bigbird\n\n39) Kalimantan: Move Y1 Yavin Ts52\nCatastrophe Ts52 Y\n\n40) ts52: Sacrifice Y3 Dagoba\nMove G3 Gonzo Dagoba\nMove G3 Dagoba Kalimantan\nMove Y3 Dagoba Kalimantan\n\n41) Kalimantan: Attack G3S Kalimantan\n\n42) ts52: Sacrifice R3 Ts52\nAttack G3 Kalimantan\nAttack B3 Kalimantan\nAttack Y1 Kalimantan\n\n43) Kalimantan: Attack Y1 Kalimantan\n\n44) ts52: Sacrifice G3 Kalimantan\nBuild Y1 Kalimantan\nBuild Y1 Kalimantan\nBuild B1 Kalimantan\nCatastrophe Kalimantan Yellow\n\n45) Kalimantan: Attack B1S Kalimantan\n\n46) ts52: Build B1 Kalimantan\nCatastrophe Kalimantan Blue\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 29584)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.7, Ended: 2016.7.10\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B1 R2 G3\n\n\nHomeworlds Online (SDG# 30027)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.9, Ended: 2016.7.19\nParticipants: Draw5PlayAll (S), Kalimantan (N)\nWinner: Draw5PlayAll\n\n1) Kalimantan: Homeworld Y3 G2 R3 *\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) Kalimantan: Build R1 Kalimantan\n\tDraw5PlayAll: We have geared up to start a new civilization with our best Galaxy-class construction vessel.\n\tKalimantan: And we have geared up to start a new empire with our Galaxy class war machine.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Kalimantan: Discover R1 Kalimantan Y1 Dagoba\n\tDraw5PlayAll: On the other hand, our empire is usually peaceful. We only attack in self-defense.\n\tKalimantan: Well I guess that means you wont be that peaceful this time around\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Kalimantan: Build R1 Kalimantan\n\tDraw5PlayAll: Well, we usually choose a Planeary Defense System because invaders often are less peaceful and we need protection. We have noticed, though, that it seems to only discourage attacks from reaching our base, instead of actually stopping those that happen.\n\tDraw5PlayAll: *Planetary\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Kalimantan: Discover R1 Kalimantan B1 Yarvin Iv\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) Kalimantan: Trade R1 G1 Yarvin\n\n12) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n13) Kalimantan: Build G1 Yarvin\n\n14) Draw5PlayAll: Build R2 Draw5playall\n\n15) Kalimantan: Build R2 Kalimantan\n\n16) Draw5PlayAll: Discover R2 Draw5playall B3 Icehouse\n\n17) Kalimantan: Move R2 Kalimantan Yarvin\n\tDraw5PlayAll: When we sent out on our quest for new life and new civilizations, we found a large icy planet. A few members of our defense ship beamed down and found inhabitants playing the game Icehouse, which has spread in popularity around the Galaxy.\n\tKalimantan: Is that from the book?\n\n18) Draw5PlayAll: Move G1 Draw5playall Icehouse\n\tDraw5PlayAll: The captain of our Constellation-class construction vessel heard about a Martian Chess tournament and traveled over to have some R&amp;R, as well as to begin to build outside our homeworld.\r\n\r\n--\r\n\r\nNo, I have not read The Empty City, so there is no way I could have taken that from the book.\n\n19) Kalimantan: Trade G1 Y1 Yarvin\n\tKalimantan: Oh ok. Lol.\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Kalimantan: Build G2 Yarvin\n\n22) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\n\n23) Kalimantan: Sacrifice G2 Yarvin\nBuild Y2 Yarvin\nBuild G2 Yarvin\n\n24) Draw5PlayAll: Move Y1 Draw5playall Icehouse\n\n25) Kalimantan: Discover Y1 Yarvin R3 Hoth\n\tDraw5PlayAll: The problem with using a G2 for the factory is that you really only get 1 growth. But that growth can be in places you have no greens...\n\tKalimantan: I thought I did something wrong.\n\n26) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Icehouse\nBuild Y3 Draw5playall\nPass\n\n27) Kalimantan: Sacrifice G2 Yarvin\nBuild R2 Dagoba\nBuild R3 Yarvin\n\tDraw5PlayAll: The other thing about a G2 factory is that you can use Green Teleportation. So if you had a green at Hoth, you could sac G2@Yarvin and build the G2 at Hoth, as well as getting another build.\r\n\r\nMy homeworld and the blue star are both kind of cramped.\n\n28) Draw5PlayAll: Discover G2 Icehouse B1 Icetraders\n\n29) Kalimantan: Build Y3 Yarvin\n\n30) Draw5PlayAll: Sac G3 Draw5playall\nBuild G2 Icetraders\nBuild G3 Draw5playall\nBuild G3 Icehouse\n\n31) Kalimantan: Move R1 Dagoba Hoth\n\tDraw5PlayAll: This will be close.\n\n32) Draw5PlayAll: Discover R1 Draw5playall G3 Builders\n\n33) Kalimantan: Move R3 Yarvin Builders\n\n34) Draw5PlayAll: Sacrifice Y1 Icehouse\nDiscover R1 Builders B1 Pluto\n\n35) Kalimantan: Move R2 Dagoba Builders\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Icehouse\nBuild Y1 Icehouse\n\n37) Kalimantan: Sacrifice Y3 Yarvin\nMove R1 Hoth Draw5playall\nMove R2 Builders Draw5playall\nMove R3 Builders Draw5playall\n\n38) Draw5PlayAll: Move Y1 Icehouse Pluto\nCatastrophe Draw5playall Red\n\n39) Kalimantan: Build Y3 Yarvin\n\tDraw5PlayAll: Close close close!!!\n\n40) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Icehouse\nBuild R1 Pluto\nPass\n\n41) Kalimantan: Build G3 Yarvin\n\n42) Draw5PlayAll: Sacrifice Y1 Icehouse\nDiscover R1 Icehouse Y1 Port4\n\n43) Kalimantan: Move Y3 Yarvin Kalimantan\n\tDraw5PlayAll: The icehouse system is too crowded so we decided to set up a new colony. We needed access to the trading economy so we decided on a planet with trained navigators.\n\n44) Draw5PlayAll: Move Y1 Pluto Kalimantan\n\tDraw5PlayAll: Insufficient.\n\n45) Kalimantan: Attack Y1S Kalimantan\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y2 Icehouse Port4\nMove Y2 Port4 Kalimantan\nCatastrophe Kalimantan Yellow\n\n47) Kalimantan: Move Y2 Yarvin Kalimantan\n\tDraw5PlayAll: Well, you can mess me up and leave 1 ship in my homeworld.\n\n48) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Icehouse Kalimantan\nMove G2 Icetraders Kalimantan\nMove G2 Icetraders Kalimantan\nCatastrophe Kalimantan Green\n\tDraw5PlayAll: Problem is, the icehouse and IceTraders both connected to your homeworld, allowing me to score my first EVER home worlds win on SDG.\r\n\r\nGood game, want to play again?\n\tKalimantan: Yeah sure\n\tDraw5PlayAll: Interestingly enough, none of us really took hold of the blue economy.\r\nIf you had three blue ships, I would have had to been much more careful.\r\n\r\nLooking for / making the challenge.\n\n\nHomeworlds Online (SDG# 30021)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.10, Ended: 2016.9.21\nParticipants: Ben10 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) Ben10: Homeworld Y3 B1 G3\n\tFelix: Welcome! First game?\n\n3) Felix: Build G1 Felix\n\tBen10: Yeah, absolute first game, might take me a while to get into the swing of things!\n\tFelix: Not a problem. I&#39;d be happy to help you figure things out. Let me know if you have any questions! And if I have tips along the way I&#39;ll try to give them\n\n4) Ben10: Build G1 Ben10\n\tBen10: Thanks, I&#39;ll let you know if I have any questions!\n\n5) Felix: Trade G1 B1 Felix\n\n6) Ben10: Build G1 Ben10\n\n7) Felix: Build B1 Felix\n\n8) Ben10: Trade G3 B3 Ben10\n\tFelix: Lesson 1: if there&#39;s only one small left of a color you don&#39;t yet have, it&#39;s wise to try and trade for it if possible. Otherwise your opponent may snap up all the smalls, like I just did with the blues, and then it becomes more difficult for you to trade for a blue ship, since you now have to get a medium before you can trade for blue. Make sense?\n\tBen10: Makes a lot of sense! Thanks\n\n9) Felix: Build G1 Felix\n\n10) Ben10: Build G2 Ben10\n\n11) Felix: Discover B1 Felix Y1 Station\n\n12) Ben10: Discover G1 Ben10 B2 Bampton\n\n13) Felix: Move G1 Felix Station\n\n14) Ben10: Move G2 Ben10 Bampton\n\n15) Felix: Build G2 Station\n\n16) Ben10: Trade G1 Y1 Bampton\n\n17) Felix: Trade G2 Y2 Station\n\n18) Ben10: Build B2 Ben10\n\n19) Felix: Build G1 Felix\n\n20) Ben10: Build G2 Bampton\n\n21) Felix: Build G2 Station\n\n22) Ben10: Move B2 Ben10 Bampton\n\n23) Felix: B G3 Felix\n\n24) Ben10: Build G3 Ben10\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Station\n\n26) Ben10: Discover B2 Bampton Y1 Oddington\n\n27) Felix: Trade B2 R2 Felix\n\n28) Ben10: Trade B2 R2 Oddington\n\n29) Felix: Discover G2 Station B2 Pulse\n\tFelix: Smart thinking getting a red when I do. You&#39;re playing very well so far!\n\n30) Ben10: Sacrifice G3 Ben10\nBuild G3 Ben10\nBuild R1 Oddington\nBuild Y2 Bampton\n\n31) Felix: Discover G3 Felix R1 Battleship\n\tBen10: Haha thank you for pretending ;) I feel very much on the defensive, trying to think offensively a few moves ahead is a bit tricky first time round!\n\tFelix: No, really. For a first game, you&#39;re avoiding many of the mistakes beginners make in their first game. You are keeping pace with my movements. You aren&#39;t overpopulating your systems with any one color. You got weapons when I did. Good stuff. It&#39;s very hard to develop long term strategies for your first several games, but it will come!\n\n32) Ben10: Sacrifice Y2 Bampton\nMove G3 Ben10 Pulse\nMove R1 Oddington Pulse\n\n33) Felix: Sacrifice G2 Pulse\nBuild G2 Station\nBuild B2 Felix\n\tBen10: Apologies for the delay, I&#39;ve been away the last couple of weeks, normal service should be resumed henceforth.\n\n34) Ben10: Sacrifice G3 Pulse\nBuild G3 Ben10\nBuild R1 Pulse\nBuild Y2 Bampton\n\tFelix: Not a problem. Welcome back!\n\n35) Felix: Move Y2 Station Pulse\n\n\nHomeworlds Online (SDG# 30005)\nStarted: 2016.7.10, Ended: 2016.9.6\nParticipants: ts52 (S), njmickel (N)\nWinner: ts52\n\n1) njmickel: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) njmickel: Build G1 Njmickel\n\n4) ts52: Build G1 Ts52\n\n5) njmickel: Discover G1 Njmickel B2 Batmanville\n\n6) ts52: Discover G1 Ts52 B3 Gonzo\n\n7) njmickel: Trade G1 Y1 Batmanville\n\n8) ts52: Trade G1 Y1 Gonzo\n\n\nHomeworlds Online (SDG# 29847)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.10, Ended: 2016.7.21\nParticipants: Simon (S), njmickel (N)\nWinner: Simon\n\n1) njmickel: Homeworld B3 Y2 G3\n\n2) Simon: Homeworld G2 R1 B3\n\tSimon: Hi, have fun!\n\n3) njmickel: Build G1 Njmickel\n\n4) Simon: Build B1 Simon\n\tnjmickel: Good luck, have fun!\n\tnjmickel: Good luck, have fun!\n\n5) njmickel: Build G1 Njmickel\n\n6) Simon: Trade B1 Y1 Simon\n\n\nHomeworlds Online (SDG# 30048)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.11, Ended: 2016.7.11\nParticipants: GalateanGemmate (S), Mitotic (N)\nWinner: Mitotic\n\n1) Mitotic: Homeworld R1 G2 B3\n\n2) GalateanGemmate: Homeworld R3 B1 G3\n\tGalateanGemmate: R3 B1 G3\n\n3) Mitotic: Build B1 Mitotic\n\n4) GalateanGemmate: Build G1 Galateangemmate\n\tGalateanGemmate: build g1 galateangemmate\n\tMitotic: sup nerd\n\n5) Mitotic: Trade B1 Y1 Mitotic\n\tMitotic: saucy move, girl\n\n6) GalateanGemmate: Trade G1 B1 Galateangemmate\n\tMitotic: copycat &lt;3\n\n7) Mitotic: Build Y1 Mitotic\n\n8) GalateanGemmate: Trade B1 Y1 Galateangemmate\n\tMitotic: I&#39;ll do what you say for now, &lt;3\n\n9) Mitotic: Trade Y1 R1 Mitotic\n\n10) GalateanGemmate: Build Y1 Galateangemmate\n\n11) Mitotic: Trade B3 R3 Mitotic\n\n12) GalateanGemmate: Build G1 Galateangemmate\n\tMitotic: militarism, GO!\n\n13) Mitotic: Discover R1 Mitotic B3 Aegis\n\n14) GalateanGemmate: Build Y2 Galateangemmate\n\n15) Mitotic: Move Y1 Mitotic Aegis\n\tMitotic: As usual, militarism proves a bad idea\n\n16) GalateanGemmate: Trade Y1 B1 Galateangemmate\n\n17) Mitotic: Trade R1 B1 Aegis\n\n18) GalateanGemmate: Discover B1 Galateangemmate G2 Sofa\n\tMitotic: *squints suspiciously*\n\n19) Mitotic: Move B1 Aegis Mitotic\n\n20) GalateanGemmate: Build B2 Sofa\n\n21) Mitotic: Trade B1 G1 Mitotic\n\n22) GalateanGemmate: Move Y1 Galateangemmate Sofa\n\n\nHomeworlds Online (SDG# 30049)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.11, Ended: 2016.7.12\nParticipants: GalateanGemmate (S), Mitotic (N)\nWinner: GalateanGemmate\n\n1) Mitotic: Homeworld G2 B3 Y3\n\n2) GalateanGemmate: Homeworld G3 R1 B3\n\n3) Mitotic: Build Y1 Mitotic\n\n4) GalateanGemmate: Build B1 Galateangemmate\n\tMitotic: yeah!\n\n5) Mitotic: Trade Y1 G1 Mitotic\n\tMitotic: impressive\n\n6) GalateanGemmate: Build B1 Galateangemmate\n\n7) Mitotic: Build Y1 Mitotic\n\n8) GalateanGemmate: Trade B1 Y1 Galateangemmate\n\n9) Mitotic: Discover Y1 Mitotic Y1 Phlegm\n\n10) GalateanGemmate: Build Y2 Galateangemmate\n\n11) Mitotic: Build Y2 Mitotic\n\n12) GalateanGemmate: Trade Y1 G1 Galateangemmate\n\n13) Mitotic: Trade Y2 R2 Mitotic\n\tGalateanGemmate: hon hon hon\n\n14) GalateanGemmate: Discover G1 Galateangemmate B2 Black Bile\n\tMitotic: Note: ggg is TOO CUTE TO BE ALLOWED TO WIN\n\tMitotic: Note: ggg is TOO CUTE TO BE ALLOWED TO WIN\n\n15) Mitotic: Move R2 Mitotic Phlegm\n\n16) GalateanGemmate: Build G1 Black\n\n17) Mitotic: Move R2 Phlegm Black\n\n18) GalateanGemmate: Sacrifice Y2 Galateangemmate\nDiscover G1 Black B3 Cholera\nMove G1 Black Cholera\n\tMitotic: I&#39;ve got a bad feeling about this scoob...\n\tMitotic: I&#39;ve got a bad feeling about this scoob...\n\n19) Mitotic: Build G2 Mitotic\n\n20) GalateanGemmate: Trade B3 Y3 Galateangemmate\n\n21) Mitotic: Move Y1 Phlegm Black\n\n22) GalateanGemmate: Build Y1 Galateangemmate\n\tGalateanGemmate: note: prepare to be stomped by zylphia\n\n23) Mitotic: Discover Y1 Black Y1 Phlegm2\n\n24) GalateanGemmate: Build Y2 Galateangemmate\n\n25) Mitotic: Build Y2 Mitotic\n\n26) GalateanGemmate: Sacrifice Y2 Galateangemmate\nMove G1 Cholera Phlegm2\nMove G1 Phlegm2 Mitotic\nCatastrophe Mitotic Green\n\n27) Mitotic: Discover Y1 Phlegm2 G2 Uuugh\n\n28) GalateanGemmate: Trade Y1 R1 Galateangemmate\n\n29) Mitotic: Move Y2 Mitotic Black\n\n30) GalateanGemmate: Build G1 Cholera\n\n31) Mitotic: Move R2 Black Cholera\n\n32) GalateanGemmate: Move Y3 Galateangemmate Black\n\n33) Mitotic: Attack G1 Cholera\n\n34) GalateanGemmate: Sacrifice G1 Cholera\nBuild B1 Galateangemmate\n\n35) Mitotic: Build R1 Cholera\n\n36) GalateanGemmate: Trade Y3 R3 Black\n\n37) Mitotic: Move Y2 Black Cholera\n\n38) GalateanGemmate: Trade B1 Y1 Galateangemmate\n\n39) Mitotic: Build Y1 Cholera\n\n40) GalateanGemmate: Trade R3 G3 Black\n\n41) Mitotic: Discover Y1 Cholera R2 Ihunger\n\n42) GalateanGemmate: Build G1 Black\n\n43) Mitotic: Move R2 Cholera Uuugh\n\n44) GalateanGemmate: Build Y2 Galateangemmate\n\n45) Mitotic: Move R1 Cholera Uuugh\n\n46) GalateanGemmate: Trade R1 B1 Galateangemmate\n\n47) Mitotic: Trade Y3 B3 Mitotic\n\n48) GalateanGemmate: Trade G1 R1 Black\n\n49) Mitotic: Build G1 Cholera\n\n50) GalateanGemmate: Build R2 Black\n\n51) Mitotic: Trade B3 R3 Mitotic\n\n52) GalateanGemmate: Discover B1 Galateangemmate G2 Sanguinos\n\n53) Mitotic: Build R3 Uuugh\n\n54) GalateanGemmate: Sacrifice Y2 Galateangemmate\nMove R1 Black Cholera\nMove R1 Cholera Uuugh\nCatastrophe Uuugh Red\n\n55) Mitotic: Move G1 Cholera Uuugh\n\n56) GalateanGemmate: Build Y2 Galateangemmate\n\n57) Mitotic: Move Y1 Ihunger Mitotic\n\n58) GalateanGemmate: Trade Y2 B2 Galateangemmate\n\n59) Mitotic: Move G1 Uuugh Mitotic\n\n60) GalateanGemmate: Build Y2 Galateangemmate\n\n61) Mitotic: Build R1 Mitotic\n\tGalateanGemmate: oh! I see it&#39;s my turn again! forutunately I have ~9 more days\n\n62) GalateanGemmate: Build B1 Sanguinos\n\tGalateanGemmate: built a ship! take that!\n\tGalateanGemmate: wait actually don&#39;t take my ship! :O\n\n63) Mitotic: Build Y2 Mitotic\n\tMitotic: oh gosh what am I doing\n\n64) GalateanGemmate: Build B2 Sanguinos\n\tGalateanGemmate: my sinister plot is unfolding!\r\nit is to deprive you of blues!\n\n65) Mitotic: Move R3 Mitotic Sanguinos\n\tMitotic: *metal gear alert noise*\n\n66) GalateanGemmate: Sacrifice Y2 Galateangemmate\nMove B1 Sanguinos Mitotic\nMove B2 Sanguinos Mitotic\n\tGalateanGemmate: I love that noise! I have no idea how I know what it sounds like, but I love it!\n\n67) Mitotic: Attack B1 Mitotic\n\n68) GalateanGemmate: Sacrifice Y1 Galateangemmate\nMove B1 Sanguinos Mitotic\nCatastrophe Mitotic Blue\n\tMitotic: https://www.youtube.com/watch?v=2P5qbcRAXVk\n\tGalateanGemmate: :D\n\n\tGalateanGemmate: !\n\tMitotic: *sweats nervously*\n\nHomeworlds Online (SDG# 30051)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.11, Ended: 2016.7.11\nParticipants: Mitotic (S), GalateanGemmate (N)\nWinner: Mitotic\n\n\nHomeworlds Online (SDG# 30052)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.12, Ended: 2016.7.12\nParticipants: Draw5PlayAll (S), GalateanGemmate (N)\nWinner: Draw5PlayAll\n\n\tDraw5PlayAll: Whaaaaat?\n\tGalateanGemmate: ah - my apologies, I am new and just wanted to start a single game with my friend. And, apparently it ended up starting 3 games???\n\tDraw5PlayAll: Standing Challenges will renew themselves when accepted. If you want to play a specific user, you can create a challenge from the Games list, and select the user from &quot;Challenge whom?&quot;\n\tGalateanGemmate: ohhh thanks! that is very helpful!\n\nHomeworlds Online (SDG# 30058)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.12, Ended: 2016.7.12\nParticipants: Kalimantan (S), GalateanGemmate (N)\nWinner: Kalimantan\n\n\nHomeworlds Online (SDG# 30065)\nStarted: 2016.7.12, Ended: 2016.7.13\nParticipants: Mitotic (S), GalateanGemmate (N)\nWinner: GalateanGemmate\n\n1) GalateanGemmate: Homeworld B2 Y3 G3\n\tMitotic: Let&#39;s go GGG! I won&#39;t be bested this time!\n\n2) Mitotic: Homeworld Y2 G3 B3\n\tGalateanGemmate: yeah! let&#39;s do it!\n\n3) GalateanGemmate: Build G1 Galateangemmate\n\n4) Mitotic: Build B1 Mitotic\n\tGalateanGemmate: interesting\r\na mirror match-up\r\nour homeworlds will be v close to each other\r\n2 away instead of 4\n\tGalateanGemmate: 3*\n\n5) GalateanGemmate: Build G1 Galateangemmate\n\n6) Mitotic: Trade B1 G1 Mitotic\n\n7) GalateanGemmate: Trade G1 Y1 Galateangemmate\n\n8) Mitotic: Build B1 Mitotic\n\n9) GalateanGemmate: Trade G1 B1 Galateangemmate\n\n10) Mitotic: Trade B1 Y1 Mitotic\n\n11) GalateanGemmate: Discover B1 Galateangemmate G1 Phlegmnation\n\tGalateanGemmate: I didn&#39;t think I&#39;d undone my move! whoops!\n\tMitotic: &lt;3\n\n12) Mitotic: Build B1 Mitotic\n\n13) GalateanGemmate: Build B1 Phlegmnation\n\n14) Mitotic: Trade B3 R3 Mitotic\n\tMitotic: Whoops! I forgot to hit enter on the command I typed, that was dumb!\n\tMitotic: Nice name for that star. That&#39;s gonna be fun to type. :D\n\tGalateanGemmate: haha I&#39;ll bet!\n\n15) GalateanGemmate: Trade B1 R1 Phlegmnation\n\tGalateanGemmate: oh man that was hard to type! :O hoisted by my own petard!\n\n16) Mitotic: Build R1 Mitotic\n\n17) GalateanGemmate: Build R1 Phlegmnation\n\n18) Mitotic: Trade R1 B1 Mitotic\n\n19) GalateanGemmate: Build B2 Phlegmnation\n\n20) Mitotic: Move B1 Mitotic Phlegmnation\n\n21) GalateanGemmate: Trade B1 Y1 Phlegmnation\n\tMitotic: whoo! that was close! almost made a bad move there!\n\tGalateanGemmate: oh no! what was your bad move?\n\n22) Mitotic: Build B1 Phlegmnation\n\tMitotic: The move I undid. I move my r3 to phlegmnation and then you could have made another red ship and gotten rid of my 3 ship this early in the game.\r\nOn second thought, it wasn&#39;t *that* bad a move, but it was still kinda bad.\n\n23) GalateanGemmate: Build Y2 Phlegmnation\n\tGalateanGemmate: ah! I was planning for that, actually! that is why I made the red ship\n\n24) Mitotic: Build B2 Phlegmnation\nCatastrophe Phlegmnation Blue\n\n25) GalateanGemmate: Trade Y1 B1 Galateangemmate\n\n26) Mitotic: Build G1 Mitotic\n\n27) GalateanGemmate: Build G2 Galateangemmate\n\tMitotic: my first catastrophe! Granted, it didn&#39;t really help me that much, but still!\n\tGalateanGemmate: I&#39;ll have to trade my yellow ship in for a blue\n\tGalateanGemmate: but yeah you lost more ships than I\n\n28) Mitotic: Move G1 Mitotic Phlegmnation\n\n29) GalateanGemmate: Attack G1 Phlegmnation\n\n30) Mitotic: Build B1 Mitotic\n\n31) GalateanGemmate: Move B1 Galateangemmate Phlegmnation\n\n32) Mitotic: Move B1 Mitotic Phlegmnation\n\n33) GalateanGemmate: Attack B1 Phlegmnation\n\n34) Mitotic: Discover Y1 Mitotic Y1 Fasst\n\n35) GalateanGemmate: Sacrifice Y2 Phlegmnation\nMove R1 Phlegmnation Mitotic\nMove R1 Phlegmnation Mitotic\n\n36) Mitotic: Attack R1 Mitotic\n\n37) GalateanGemmate: Build R1 Mitotic\nCatastrophe Mitotic Red\n\tGalateanGemmate: lol nice name\n\n38) Mitotic: Build B2 Mitotic\n\n39) GalateanGemmate: Trade G3 R3 Galateangemmate\n\tMitotic: AHHHHHHHHHHHHHHHHHHHHH\n\n40) Mitotic: Trade B2 Y2 Mitotic\n\tMitotic: also thanks I was trying to think of something lewd to say but then I thought of fast and ass and I couldn&#39;t come up with anything else\n\tMitotic: oh no\n\tGalateanGemmate: LOL fast ass I love it &amp;#9829;\n\n41) GalateanGemmate: Move G1 Phlegmnation Mitotic\n\tMitotic: my ass is losing pretty fast lol\n\tMitotic: &amp;#9829; is that a heart?\n\tMitotic: D&#39;aww it is \n\tGalateanGemmate: wow unicode support much? guess not :/\n\n42) Mitotic: Trade G1 R1 Mitotic\n\tMitotic: *swallows nervously*\n\n43) GalateanGemmate: Build Y2 Phlegmnation\n\n44) Mitotic: Attack G1 Mitotic\n\n45) GalateanGemmate: Move Y2 Phlegmnation Mitotic\n\n46) Mitotic: Trade Y2 R2 Mitotic\n\tGalateanGemmate: dang I forgot about how the attack mechanics work\r\nI was trying to defend against a really terrifying attack earlier on when you sent your blues after me\r\nbut then I realized you couldn&#39;t do it\r\nand now I was about to do the same thing\n\n47) GalateanGemmate: Sacrifice R3 Galateangemmate\nAttack R2 Mitotic\nAttack R1 Mitotic\nAttack B1 Mitotic\n\tMitotic: I just glanced at a strategy guide and one of the first things it said was to not copy the sizes of your opponents stars bc then you&#39;ll be too close and it is too hard to defend with only one buffer star in between unless I had some amazing strategy for blitzing you.\r\nWhich I don&#39;t\n\tGalateanGemmate: oh! btw here&#39;s a strategy link\r\nI think I read it a long time ago, before I even had the game\r\nhttp://icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\tGalateanGemmate: oh hey you found a strategy guide! probably the one I just gave you!\n\tGalateanGemmate: yeah I think it might just highlight the turn advantage player 1 gets\n\n48) Mitotic: Build G1 Mitotic\n\n49) GalateanGemmate: Sacrifice R2 Mitotic\nAttack G1 Mitotic\nAttack G1 Mitotic\n\tMitotic: yeah it is the same strategy guide I was looking at &lt;3\n\n\tMitotic: I forgot how attacking works (and that the y2 you had made it so you could take my r2), but even if I had remembered, I wouldn&#39;t have realized that you could, or even would, do that. Good move!\n\tGalateanGemmate: thanks! the reason I figured it out is that I was *really* worried about you doing it earlier\n\tGalateanGemmate: oops! I didn&#39;t mean to make that a rated game!\n\tGalateanGemmate: I mean IDK if it matters\n\tGalateanGemmate: and yeah attacking is p confusing\n\tMitotic: GG GGG\n\tGalateanGemmate: yes! that was a good game! I think you&#39;re p close to beating me!\n\nHomeworlds Online (SDG# 30076)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.14, Ended: 2016.7.25\nParticipants: Draw5PlayAll (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build G1 Foksieloy\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) foksieloy: Trade G1 B1 Foksieloy\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) foksieloy: Build G1 Foksieloy\n\n8) Draw5PlayAll: Build Y1 Draw5playall\n\n9) foksieloy: Trade G1 Y1 Foksieloy\n\n10) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n11) foksieloy: Build B2 Foksieloy\n\tDraw5PlayAll: I have played several games, but as of now I have never won. Though I might win in the future...\n\n12) Draw5PlayAll: Discover B1 Draw5playall G3 Builders\n\tfoksieloy: Well there is always a first time for everything. :)\n\n13) foksieloy: Discover B2 Foksieloy G2 Tibbers\n\n14) Draw5PlayAll: Build B2 Builders\n\n15) foksieloy: Build B2 Tibbers\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) foksieloy: Build B3 Foksieloy\n\n18) Draw5PlayAll: Trade B2 R2 Builders\n\n19) foksieloy: Trade B2 R2 Tibbers\n\n20) Draw5PlayAll: Discover G1 Draw5playall B3 Civilization\n\n21) foksieloy: Build B2 Tibbers\n\n22) Draw5PlayAll: Build B2 Builders\n\n23) foksieloy: Discover B3 Foksieloy Y2 Valor\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) foksieloy: Trade B2 G2 Tibbers\n\n26) Draw5PlayAll: Build G1 Civilization\n\n27) foksieloy: Build B2 Tibbers\n\n28) Draw5PlayAll: Trade B2 Y2 Builders\n\n29) foksieloy: Trade B2 Y2 Tibbers\n\n30) Draw5PlayAll: Trade G1 R1 Civilization\n\n31) foksieloy: Discover G2 Tibbers Y3 Gnar\n\n32) Draw5PlayAll: Build B2 Builders\n\n33) foksieloy: Build G1 Gnar\n\n34) Draw5PlayAll: Build G2 Civilization\n\n35) foksieloy: Sacrifice Y2 Tibbers\nMove G1 Gnar Draw5playall\nMove G2 Gnar Draw5playall\nCatastrophe Draw5playall Green\n\n36) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G2 Civilization Draw5playall\n\n37) foksieloy: Discover B3 Valor Y3 Sion\n\tDraw5PlayAll: How... Did not see that coming!\n\n38) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R1 Civilization\nBuild R3 Builders\n\tDraw5PlayAll: Homeworld Stability is quite useful!!\n\n\tfoksieloy: I usually play quite aggressive, so I always look for opportunities to sacrifice y2 and catastrophe a system with 2 in it.\n\tDraw5PlayAll: Weird, SDG did not stop me from losing.\n\tfoksieloy: I am quite sure it used to. Also, the y1 sacrifice you did used to be illegal, you can&#39;t leave your home system empty even during turn. Are they programming a new version?\r\n\r\nAnyway, I was 3 turns from winning. Move b3 to your system, trade to r3, win.\n\tDraw5PlayAll: You did not even really need to trade, as sacrificing an R2@Tibbers would have been sufficient no matter what I did.\r\n\r\nThe homeworlds rules at http://www.looneylabs.com/rules/homeworlds say:\r\n&quot;Game Over: It&#39;s OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over. However, you are eliminated from the game if both stars in your Homeworld are destroyed, or if none of the ships at your Homeworld are yours.&quot;\r\n\r\nI interpreted the homeworlds as having &quot;stability&quot;, so that instead of collapsing immediately, they take time to deteriorate, which can be stopped if you can get a ship there.\n\tfoksieloy: Ok, I was wrong about the ships at homeworld rule it seems. Anyway, Good game! If you want a rematch, or a non ranked game, just send me a shout.\n\nHomeworlds Online (SDG# 30024)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.14, Ended: 2016.7.17\nParticipants: foksieloy (S), wil (N)\nWinner: foksieloy\n\n\tfoksieloy: Hi, been a while! Good luck, have fun!\n\nHomeworlds Online (SDG# 30073)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.15, Ended: 2016.7.15\nParticipants: Felix (S), GalateanGemmate (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 30020)\nStarted: 2016.7.15, Ended: 2016.8.7\nParticipants: haymire (S), Felix (N)\nWinner: haymire\n\n1) Felix: Homeworld R1 B3 G3\n\thaymire: Hello again mate\n\tFelix: Hello! Good luck and have fun\n\n2) haymire: Homeworld Y3 B2 G3\n\n3) Felix: Build G1 Felix\n\thaymire: Let&#39;s try this set up\n\tFelix: That&#39;s a good one! My favorite color combo.\n\n4) haymire: Build G1 Haymire\n\n5) Felix: Trade G1 Y1 Felix\n\n6) haymire: Trade G1 Y1 Haymire\n\n7) Felix: B G1 Felix\n\n8) haymire: Build G1 Haymire\n\n9) Felix: Trade G1 B1 Felix\n\n10) haymire: Trade G1 B1 Haymire\n\n11) Felix: Build G1 Felix\n\n12) haymire: Build G1 Haymire\n\n13) Felix: Discover G1 Felix B2 Rim\n\n14) haymire: Trade G1 R1 Haymire\n\n15) Felix: Build G1 Felix\n\n16) haymire: Build G1 Haymire\n\n17) Felix: Build G2 Rim\n\n18) haymire: Discover G1 Haymire Y1 Fret\n\n19) Felix: Trade G2 Y2 Rim\n\n20) haymire: Build Y2 Haymire\n\n21) Felix: Build G2 Rim\n\n22) haymire: Build G2 Haymire\n\n23) Felix: Discover G2 Rim B1 Epic\n\n24) haymire: Discover G2 Haymire R1 Scar\n\n25) Felix: Sacrifice G3 Felix\nBuild G2 Rim\nBuild G3 Felix\nBuild G3 Epic\n\n26) haymire: Sacrifice Y2 Haymire\nMove B1 Haymire Fret\nMove Y1 Haymire Scar\n\n27) Felix: Build Y2 Rim\n\n28) haymire: Move B1 Fret Rim\n\n29) Felix: Sacrifice Y2 Rim\nMove Y2 Rim Epic\nMove G2 Rim Fret\n\n30) haymire: Build R2 Haymire\n\n31) Felix: Trade G2 R2 Epic\n\n32) haymire: Trade R2 B2 Haymire\n\n33) Felix: Build R2 Epic\n\n34) haymire: Sacrifice G3 Haymire\nBuild B3 Haymire\nBuild G2 Fret\nBuild G3 Scar\n\n35) Felix: Sacrifice R2 Epic\nAttack B1 Rim\nAttack G2 Fret\n\n36) haymire: Trade B2 Y2 Haymire\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild Y3 Epic\n\n38) haymire: Sacrifice G3 Scar\nBuild G3 Scar\nBuild Y3 Scar\nBuild R2 Haymire\n\n39) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Rim\n\n40) haymire: Sacrifice Y3 Scar\nMove B3 Haymire Fret\nMove B3 Fret Rim\nMove B3 Rim Felix\nCatastrophe Felix Blue\n\n41) Felix: M G3 Epic Haymire\n\thaymire: hmmm... maybe that wasn&#39;t the best idea\n\n42) haymire: Sacrifice G3 Scar\nBuild G3 Scar\nBuild Y3 Scar\nBuild R2 Haymire\n\tFelix: Haha yeah, maybe not!\n\tDraw5PlayAll: I generally get quite nervous when destroying half the homeworld causes a direct connection. Of course, sometimes this works in my favor.\n\thaymire: Didn&#39;t feel like I had much else I could do\n\n43) Felix: T B3 R3 Rim\n\n44) haymire: Sacrifice Y3 Scar\nMove R1 Haymire Felix\nMove R2 Haymire Felix\nMove R2 Haymire Felix\nCatastrophe Felix Red\n\thaymire: Good game mate, \n\tFelix: Likewise. Nice work laying the bait like that. I definitely overlooked that!\n\tDraw5PlayAll: Can you explain?\n\n\nHomeworlds Online (SDG# 30083)\nStarted: 2016.7.15, Ended: 2016.8.1\nParticipants: ladybugsfly (S), Steele (N)\nWinner: ladybugsfly\n\n1) Steele: H B2 G1 Y3\n\n2) ladybugsfly: Homeworld Y3 B1 G3\n\n3) Steele: B Y1 Steele\n\n4) ladybugsfly: Build G1 Ladybugsfly\n\n5) Steele: Trade Y1 G1 Steele\n\n6) ladybugsfly: Build G2 Ladybugsfly\n\n7) Steele: Build G2 Steele\n\n8) ladybugsfly: Trade G1 R1 Ladybugsfly\n\n9) Steele: B Y1 Steele\n\tladybugsfly: I absentmindedly typed p for pink instead of r for red. Glad it error-ed out and didn&#39;t make a move I wasn&#39;t expecting. 0:-)\n\n10) ladybugsfly: Discover G2 Ladybugsfly B2 Ravenclaw\n\n11) Steele: Discover G2 Steele Y3 Alpha\n\n12) ladybugsfly: Build G1 Ladybugsfly\n\n13) Steele: Discover G2 Alpha Y2 Beta\n\n14) ladybugsfly: Discover G1 Ladybugsfly Y2 Mystic\n\n15) Steele: Build G2 Beta\n\n16) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G3 Mystic\nBuild G3 Mystic\nBuild G3 Ravenclaw\n\n17) Steele: Trade Y1 R1 Steele\n\n18) ladybugsfly: Move G3 Mystic Ladybugsfly\n\n19) Steele: Build Y1 Steele\n\n20) ladybugsfly: Sacrifice G2 Ravenclaw\nBuild R1 Ladybugsfly\nBuild R2 Ladybugsfly\n\n21) Steele: B G2 Steele\n\n22) ladybugsfly: Discover G1 Mystic Y3 Squirtle\n\n23) Steele: Move G1 Steele Squirtle\n\n24) ladybugsfly: Sacrifice R1 Ladybugsfly\nAttack G1 Squirtle\n\n25) Steele: M G2 Steele Squirtle\n\n26) ladybugsfly: Move G1 Squirtle Steele\n\n27) Steele: A G1 Steele\n\n28) ladybugsfly: Move G1 Squirtle Steele\n\n29) Steele: M G1 Steele Squirtle\n\n30) ladybugsfly: Sacrifice R2 Ladybugsfly\nAttack R1 Steele\nAttack Y1 Steele\n\n31) Steele: Trade Y3 R3 Steele\n\n32) ladybugsfly: Sacrifice G3 Ravenclaw\nBuild R1 Steele\nBuild R2 Steele\nCatastrophe Steele R\nPass\n\n\nHomeworlds Online (SDG# 30082)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.15, Ended: 2016.8.1\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Felix: H B1 Y2 G3\n\tDraw5PlayAll: There has been analysis and 1-3 vs 1-2 is perfectly even, off by a margin that could be statistical error.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: We shall see!\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 B1 Felix\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Felix: Build B1 Felix\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\n10) Felix: Discover B1 Felix G3 Wild\n\n11) Draw5PlayAll: Build G1 Icehouse\n\n12) Felix: Build B2 Wild\n\n13) Draw5PlayAll: Trade G1 Y1 Icehouse\n\tFelix: We have decided that taking control of the blue resources in this system will be the most efficient way to expand our fleet.\n\n14) Felix: Trade B2 Y2 Wild\n\tDraw5PlayAll: Meanwhile, we have been meaning to expand out over the galaxy, and wish to create warp-capable ships. Interestingly enough, our favorite type of Fluxx card is the New Rule...\n\n15) Draw5PlayAll: Build G1 Draw5playall\n\n16) Felix: Build B2 Wild\n\n17) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n18) Felix: Trade B2 R2 Wild\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) Felix: Build B2 Wild\n\n21) Draw5PlayAll: Build Y1 Icehouse\n\n22) Felix: Discover B2 Wild G2 Erness\n\n23) Draw5PlayAll: Build Y2 Draw5playall\n\n24) Felix: Build Y3 Wild\n\n25) Draw5PlayAll: Move R1 Draw5playall Icehouse\n\n26) Felix: Move Y2 Wild Erness\n\n27) Draw5PlayAll: Build G1 Icehouse\n\tDraw5PlayAll: Why are the pieces arranged pseudo-randomly in a 5x5 grid?\n\n28) Felix: Build G2 Felix\n\tFelix: You mean why does the visual layout differ each time? Not sure. There must be some algorithm telling it how to lay out the grid depending on which systems are created first. And then the ships just spawn randomly in each block I suppose.\n\n29) Draw5PlayAll: Build G2 Icehouse\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Wild\nBuild Y3 Erness\n\tDraw5PlayAll: Like how wild is actually on my side while Icehouse and erness are on yours? I hope SDG2.0 puts them in a better position relating more to the connections.\n\tFelix: *shrug* I don&#39;t know how it works, really. I&#39;ve just gotten kind of used to seeing the connections wherever they are, rather than needing them to be laid out in order. It may not make that much sense, but then again, we are in outer space :)\n\n31) Draw5PlayAll: Discover G1 Icehouse B3 Cool\n\n32) Felix: Sacrifice G3 Felix\nBuild B2 Wild\nBuild B3 Erness\nBuild G3 Felix\n\n33) Draw5PlayAll: Sacrifice G1 Icehouse\nBuild G1 Cool\n\tFelix: You let me get all the blue again :)\n\n34) Felix: Sacrifice Y2 Erness\nMove B3 Erness Draw5playall\nMove Y3 Erness Draw5playall\n\tDraw5PlayAll: Green teleportation\n\n35) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G1 Cool Felix\nMove G1 Cool Felix\nCatastrophe Felix Green\n\n36) Felix: Sacrifice R2 Wild\nAttack G3 Draw5playall\nAttack Y1 Draw5playall\n\tDraw5PlayAll: One...move...short...\r\n\r\nGood game!\n\n37) Draw5PlayAll: Sacrifice G2 Icehouse\nBuild G1 Draw5playall\nBuild G1 Draw5playall\n\tFelix: Pretty close! Good game. What was your plan to finish me off?\n\tDraw5PlayAll: Nothing. I just saw a trick to threaten your large, but...\r\n\r\nI could delay the game for 4 more moves but there is no point.\n\n38) Felix: Pass\nCatastrophe Draw5playall Green\n\tFelix: Good game! I hope you&#39;ve learned some things :)\n\tDraw5PlayAll: That I need a red ship to match the number of larges my opponent can invade with?\n\n\nHomeworlds Online (SDG# 30096)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.19, Ended: 2016.8.7\nParticipants: Draw5PlayAll (S), Kalimantan (N)\nWinner: Draw5PlayAll\n\n1) Kalimantan: Homeworld Y3 B2 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) Kalimantan: Build G1 Kalimantan\n\tDraw5PlayAll: Have you ever won a game of homeworlds?\n\tKalimantan: Nope never. My first game ever was the 3p with u and felix.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Oh, interesting. I had to lose seven games before winning that one...\r\n\r\n--\r\n\r\nWe have prepared the civilization vessels to peacefully explore the galaxy.\n\n5) Kalimantan: Discover G1 Kalimantan Y1 Fleeting\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Kalimantan: Discover G1 Fleeting B2 Dagoba\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Kalimantan: Build G1 Dagoba\n\n10) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n11) Kalimantan: Trade G1 R1 Dagoba\n\n12) Draw5PlayAll: Discover B1 Draw5playall G2 Draw3play2\n\n13) Kalimantan: Build R1 Dagoba\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) Kalimantan: Build R1 Dagoba\n\n16) Draw5PlayAll: Move Y1 Draw5playall Draw3play2\n\n17) Kalimantan: Build G1 Dagoba\n\n18) Draw5PlayAll: Build B1 Draw3play2\n\n19) Kalimantan: Trade G1 Y1 Dagoba\n\n20) Draw5PlayAll: Build Y2 Draw3play2\n\n21) Kalimantan: Build Y2 Dagoba\n\n22) Draw5PlayAll: Trade Y2 R2 Draw3play2\n\n23) Kalimantan: Sacrifice Y2 Dagoba\nMove R1 Dagoba Draw5playall\nMove R1 Dagoba Draw5playall\n\n24) Draw5PlayAll: Build B2 Draw3play2\n\n25) Kalimantan: Build R2 Dagoba\n\n26) Draw5PlayAll: Discover B2 Draw3play2 G1 Keeper\n\n27) Kalimantan: Build Y2 Dagoba\n\n28) Draw5PlayAll: Build B3 Keeper\n\n29) Kalimantan: Sacrifice G1 Dagoba\nBuild G1 Kalimantan\n\n30) Draw5PlayAll: Build B3 Keeper\n\n31) Kalimantan: Move R1 Dagoba Draw5playall\nCatastrophe Draw5playall R\n\n32) Draw5PlayAll: Build B3 Draw3play2\n\n33) Kalimantan: Move Y1 Dagoba Draw5playall\n\tDraw5PlayAll: You have no blue :P\n\n34) Draw5PlayAll: Move R2 Draw3play2 Draw5playall\n\n35) Kalimantan: Move Y1 Draw5playall Draw3play2\n\n36) Draw5PlayAll: Trade Y1 R1 Draw3play2\n\n37) Kalimantan: Sacrifice R2 Dagoba\nAttack R1 Draw3play2\nAttack B1 Draw3play2\n\n38) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack R1N Draw3play2\nAttack B1N Draw3play2\nPass\n\n39) Kalimantan: Move Y1 Draw3play2 Draw5playall\n\n40) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n41) Kalimantan: Move Y1 Draw5playall Dagoba\n\tDraw5PlayAll: Not sure what you are doing, but I do know our homeworlds are connected.\n\n42) Draw5PlayAll: Build R1 Draw5playall\n\n43) Kalimantan: Trade Y2 G2 Dagoba\n\n44) Draw5PlayAll: Build R2 Draw3play2\n\n45) Kalimantan: Sacrifice G3 Kalimantan\nBuild G1 Dagoba\nBuild G2 Dagoba\nBuild G3 Kalimantan\n\n46) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n47) Kalimantan: Trade G2 Y2 Dagoba\n\tDraw5PlayAll: Ugh, I let you have a factory... though I think I might be safe. For now.\n\tDraw5PlayAll: This is tenser than I thought. But I have a plan.\n\n48) Draw5PlayAll: Move G3 Draw5playall Kalimantan\n\n49) Kalimantan: Sacrifice Y2 Dagoba\nMove Y1 Dagoba Draw5playall\nMove Y1 Draw5playall Kalimantan\n\tDraw5PlayAll: How do you like the, uh, visitor?\r\n\r\nGood game.\n\tDraw5PlayAll: Well, I may have spoken too soon. If you see a way out, please let me know by making the move.\n\n50) Draw5PlayAll: Sacrifice R2 Draw3play2\nAttack G1 Kalimantan\nAttack G3 Kalimantan\n\n\tKalimantan: Well gg.\n\nHomeworlds Online (SDG# 30070)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.19, Ended: 2016.10.1\nParticipants: GalateanGemmate (S), Mitotic (N)\nWinner: GalateanGemmate\n\n1) Mitotic: Homeworld Y3 G2 B3\n\n2) GalateanGemmate: Homeworld R1 B2 G3\n\n3) Mitotic: Build B1 Mitotic\n\n4) GalateanGemmate: Build G1 Galateangemmate\n\n5) Mitotic: Trade B1 Y1 Mitotic\n\n6) GalateanGemmate: Build G1 Galateangemmate\n\n7) Mitotic: Build B1 Mitotic\n\n8) GalateanGemmate: Trade G1 B1 Galateangemmate\n\n9) Mitotic: Trade B1 G1 Mitotic\n\tGalateanGemmate: &amp;#9829;\n\n10) GalateanGemmate: Trade G1 Y1 Galateangemmate\n\n11) Mitotic: Discover G1 Mitotic R1 Friendship\n\n12) GalateanGemmate: Build G1 Galateangemmate\n\n13) Mitotic: Build B1 Mitotic\n\tGalateanGemmate: that is a cute name!\n\n14) GalateanGemmate: Trade B1 R1 Galateangemmate\n\tMitotic: you know who else has a cute name?\r\nYou!\n\n15) Mitotic: Trade B1 G1 Mitotic\n\n16) GalateanGemmate: Build G2 Galateangemmate\n\n17) Mitotic: Build G2 Mitotic\n\n18) GalateanGemmate: Trade G2 B2 Galateangemmate\n\n19) Mitotic: Trade G2 R2 Mitotic\n\n20) GalateanGemmate: Discover B2 Galateangemmate G3 Laughter\n\n21) Mitotic: Move Y1 Mitotic Friendship\n\n22) GalateanGemmate: Build G2 Galateangemmate\n\n23) Mitotic: Build G2 Friendship\n\n24) GalateanGemmate: Trade G1 B1 Galateangemmate\n\n25) Mitotic: Build B1 Mitotic\n\n26) GalateanGemmate: Discover G2 Galateangemmate Y3 Moscow\n\n27) Mitotic: Move B1 Mitotic Friendship\n\n28) GalateanGemmate: Move R1 Galateangemmate Laughter\n\n29) Mitotic: Build R2 Mitotic\n\n30) GalateanGemmate: Trade B2 Y2 Laughter\n\n31) Mitotic: Move R2 Mitotic Friendship\n\n32) GalateanGemmate: Build G1 Moscow\n\n33) Mitotic: Move R2 Friendship Moscow\n\n34) GalateanGemmate: Sacrifice R1 Laughter\nAttack R2 Moscow\n\n35) Mitotic: Trade G1 R1 Mitotic\n\n36) GalateanGemmate: Build G1 Galateangemmate\n\n37) Mitotic: Move R1 Mitotic Friendship\n\n38) GalateanGemmate: Sacrifice G3 Galateangemmate\nBuild G3 Galateangemmate\nBuild G3 Galateangemmate\nBuild Y1 Laughter\n\n39) Mitotic: Move R1 Friendship Laughter\n\n40) GalateanGemmate: Discover G1 Galateangemmate B3 Fun\n\n41) Mitotic: Attack Y1 Laughter\n\n42) GalateanGemmate: Sacrifice G3 Galateangemmate\nBuild G3 Fun\nBuild R2 Moscow\nBuild R3 Moscow\n\n43) Mitotic: Move R1 Laughter Friendship\n\n44) GalateanGemmate: Move R2 Moscow Friendship\n\n45) Mitotic: Move R1 Friendship Moscow\n\n46) GalateanGemmate: Sacrifice R3 Moscow\nAttack G2 Friendship\nAttack G1 Friendship\nAttack Y1 Friendship\n\n47) Mitotic: Build B1 Mitotic\n\n48) GalateanGemmate: Sacrifice G3 Fun\nBuild G3 Fun\nBuild B2 Galateangemmate\nBuild Y2 Galateangemmate\n\n49) Mitotic: Build R3 Mitotic\n\n50) GalateanGemmate: Trade G3 Y3 Fun\n\n51) Mitotic: Trade R2 Y2 Mitotic\n\tGalateanGemmate: you can also great r3s\n\tGalateanGemmate: create*\n\n52) GalateanGemmate: Build G3 Fun\n\tGalateanGemmate: oh unless the reason you made the blue ship was so there&#39;s only one way in or out of your homeworld?\n\n53) Mitotic: Attack G1 Moscow\n\n54) GalateanGemmate: Move Y1 Galateangemmate Laughter\n\n55) Mitotic: Build R2 Moscow\n\tMitotic: rn I&#39;m basically on the defensive until I can get another buffer system going\n\n56) GalateanGemmate: Sacrifice R2 Moscow\nAttack R2 Moscow\nAttack G1 Moscow\n\tGalateanGemmate: got it\n\n57) Mitotic: Attack G1 Moscow\n\n58) GalateanGemmate: Move B1 Galateangemmate Laughter\n\n59) Mitotic: Build R2 Moscow\n\n60) GalateanGemmate: Sacrifice R2 Moscow\nAttack R2 Moscow\nAttack R1 Moscow\n\n61) Mitotic: Move G1 Moscow Friendship\n\n62) GalateanGemmate: Move Y1 Laughter Friendship\n\n63) Mitotic: Build R2 Mitotic\n\tGalateanGemmate: phew! I just realized you could&#39;ve sacrificed that medium yellow you have to blow up one of my stars\n\n64) GalateanGemmate: Sacrifice Y2 Laughter\nMove Y1 Friendship Mitotic\nMove Y1 Friendship Mitotic\nCatastrophe Mitotic Yellow\n\n\nHomeworlds Online (SDG# 30092)\nStarted: 2016.7.23, Ended: 2016.7.23\nParticipants: Ryzorrin (S), ts52 (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 30078)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.26, Ended: 2016.7.29\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\tFelix: You back?\n\n\tDraw5PlayAll: This is why I will never do Standing Challenges again.\n\nHomeworlds Online (SDG# 30039)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.26, Ended: 2016.8.25\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B2 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\tSimon: Have fun!\n\tFelix: You too!\n\n3) Simon: Build G1 Simon\n\n4) Felix: Build G1 Felix\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Simon: Build Y2 Simon\n\n8) Felix: Build Y2 Felix\n\n9) Simon: Discover Y2 Simon G3 G3\n\n10) Felix: Trade Y2 R2 Felix\n\n11) Simon: Build Y2 G3\n\n12) Felix: Discover Y1 Felix G2 Rim\n\n13) Simon: Discover Y2 G3 B2 B2\n\n14) Felix: Build R1 Felix\n\n15) Simon: Build Y2 Simon\n\n16) Felix: Build Y3 Rim\n\n17) Simon: Build Y3 G3\n\n18) Felix: Discover Y1 Rim B3 Opus\n\n19) Simon: Sacrifice Y1 Simon\nMove Y3 G3 B2\n\n20) Felix: Build G1 Felix\n\n21) Simon: Trade Y2 R2 B2\n\n22) Felix: Trade G1 B1 Felix\n\n23) Simon: Sacrifice G3 Simon\nBuild Y1 G3\nBuild Y2 B2\nBuild Y3 Simon\n\n24) Felix: Move R1 Felix Rim\n\n25) Simon: Trade Y2 G2 B2\n\n26) Felix: Build G1 Felix\n\n27) Simon: Build Y2 B2\n\n28) Felix: Build R1 Rim\n\n29) Simon: Build G1 B2\n\n30) Felix: Discover G1 Felix B2 Ledge\n\n31) Simon: Trade G1 B1 B2\n\n32) Felix: Build G1 Ledge\n\n33) Simon: Move B1 B2 G3\n\n34) Felix: Move R1 Rim Opus\n\n35) Simon: Sacrifice G2 B2\nBuild B1 G3\nBuild B3 G3\n\n36) Felix: Discover Y3 Rim G3 Hangar\n\n37) Simon: Move Y2 Simon Opus\n\n38) Felix: Sacrifice G3 Felix\nBuild R2 Rim\nBuild R3 Opus\nBuild R3 Felix\n\n39) Simon: Sacrifice Y2 Opus\nMove B3 G3 Rim\nMove B1 G3 B2\n\n40) Felix: B R3 Rim\n\n41) Simon: Sacrifice Y1 G3\nMove B3 Rim Felix\n\n42) Felix: Attack B3 Felix\n\n43) Simon: Move B1 B2 Felix\nCatastrophe Felix B\n\n44) Felix: Sacrifice Y3 Hangar\nMove R3 Rim G3\nMove Y1 Opus Simon\nMove R1 Opus Simon\n\n45) Simon: Move Y2 G3 Felix\n\n46) Felix: Sacrifice R2 Rim\nAttack Y2 Felix\nAttack B1 G3\n\n47) Simon: Move Y3 B2 Felix\n\n48) Felix: Sacrifice Y2 Felix\nMove G1 Ledge Felix\nMove R3 Opus Simon\n\n49) Simon: Sacrifice R2 B2\nAttack R3 Felix\nAttack R3 Simon\n\n50) Felix: Sacrifice G1 Ledge\nBuild R2 Simon\nCatastrophe Simon Red\n\n51) Simon: Sacrifice R3 Felix\nAttack R2 Felix\nAttack G1 Felix\nAttack Y1 Simon\n\tFelix: Really nice move.\n\tDraw5PlayAll: This is sure to be an exciting conclusion. If R2N@B2 was sacrificed, Simon would only attack two of the three ships and thus Felix could blast the alien army...\n\n\tFelix: What I would have given to have a B2 during the last several moves...\n\tSimon: gg! Sharpest ending in a while, yes :)\n\tSimon: Always happy to rematch!\n\tDraw5PlayAll: Would you have given up your R3@g3 for a B2?\n\nHomeworlds Online (SDG# 30118)\nVariants: &quot;Unrated&quot;\nStarted: 2016.7.26, Ended: 2016.8.25\nParticipants: Kalimantan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R1 G3\n\n2) Kalimantan: Homeworld Y3 B2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\tKalimantan: Thanks\n\n4) Kalimantan: Build G1 Kalimantan\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Kalimantan: Trade G1 R1 Kalimantan\n\n7) Felix: Build Y1 Felix\n\n8) Kalimantan: Discover R1 Kalimantan R1 Redplanet\n\n9) Felix: Build Y1 Felix\n\n10) Kalimantan: Build G1 Kalimantan\n\n11) Felix: Discover Y1 Felix G2 Rim\n\n12) Kalimantan: Build G1 Kalimantan\n\n13) Felix: Build Y2 Rim\n\n14) Kalimantan: Move G1 Kalimantan Redplanet\n\n15) Felix: Build Y2 Felix\n\n16) Kalimantan: Trade G3 Y3 Kalimantan\n\n17) Felix: D Y1 Rim G1 Arkos\n\n18) Kalimantan: Move Y3 Kalimantan Arkos\n\n19) Felix: Trade Y2 R2 Felix\n\n20) Kalimantan: Build R2 Redplanet\n\n21) Felix: Build Y2 Rim\n\n22) Kalimantan: Sacrifice R1 Redplanet\nAttack Y1N Arkos\n\n23) Felix: B G2 Felix\n\n24) Kalimantan: Build G2 Redplanet\n\tDraw5PlayAll: Interesting very interesting\n\n25) Felix: Sacrifice Y2 Rim\nMove Y2 Rim Arkos\nMove Y2 Arkos Kalimantan\n\n26) Kalimantan: Sacrifice G2 Redplanet\nBuild G2 Kalimantan\nBuild G2 Kalimantan\n\n27) Felix: Sacrifice R2 Felix\nAttack G2 Kalimantan\nAttack G2 Kalimantan\n\n28) Kalimantan: Move Y3 Arkos Kalimantan\n\n29) Felix: S G2 Felix\nB Y2 Kalimantan\nB G2 Kalimantan\nC Kalimantan Yellow\nC Kalimantan Green\n\n\tFelix: Good game! I didn&#39;t know it was possible to do a double catastrophe like that... \n\nHomeworlds Online (SDG# 30097)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2016.7.27, Ended: 2016.11.23\nParticipants: Felix (S), Kalimantan (W), Skully (N), Draw5PlayAll (E)\nWinner: Felix\n\n1) Skully: Homeworld G3 Y2 B3\n\n2) Draw5PlayAll: Homeworld R3 B1 G3\n\n3) Felix: Homeworld G2 R3 B3\n\n4) Kalimantan: Homeworld G2 B1 Y3\n\n5) Skully: Build B1 Skully\n\tKalimantan: Hey what does it mean that the variant is sinister?\n\tDraw5PlayAll: Objective is to destroy the guy on your left.\r\nSkulls must destroy Draw5PlayAll (me)\r\nI must destroy Felix (annoyingly)\r\nFelix must destroy Kalimantan\r\nKali must destroy Skully\n\tDraw5PlayAll: If someone other than your right destroys you, the game continues without you. So if I was destroyed by Felix (say) then Skully&#39;s target becomes Felix.\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Felix: Build B1 Felix\n\tDraw5PlayAll: There is a flaw though. If I am facing imminent doom from Skully, I might set up the conditions so that one of the other two players can call catastrophe and eliminate me, preventing Skully from winning.\n\n8) Kalimantan: Build Y1 Kalimantan\n\n9) Skully: Discover B1 Skully Y1 Evil\n\n10) Draw5PlayAll: Build G1 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n11) Felix: Trade B1 Y1 Felix\n\n12) Kalimantan: Build Y1 Kalimantan\n\n13) Skully: Trade B1 Y1 Evil\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Felix: Build Y2 Felix\n\n16) Kalimantan: Discover Y1 Kalimantan B3 Hell\n\tDraw5PlayAll: The Evil system is completely redundant!\n\n17) Skully: Build B1 Skully\n\tSkully: Redundent?? No... Evil?? Yesss! \n\n18) Draw5PlayAll: Build G1 Draw5playall\n\n19) Felix: T Y1 G1 Felix\n\tDraw5PlayAll: There really is no point to this conspiracy. If I really, really have to move out I can easily trade my G3 into a Y3 to give myself movement powers.\n\tSkully: Ah that is true. Id have to be just plane Sinister if that were part of my plan. ;)\n\n20) Kalimantan: Build Y1 Kalimantan\n\tFelix: I see what you did there :p\n\tDraw5PlayAll: *I&#39;d *plain\r\n\r\nKali should be the one to break the conspiracy. After all, the more damage I do to Felix, the less Kali has to worry about Felix.\n\n21) Skully: Move B1 Skully Evil\n\n22) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n23) Felix: Build Y2 Felix\n\n24) Kalimantan: Discover Y1 Kalimantan G3 Paradise\n\n25) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n26) Felix: Discover Y2 Felix G1 Lykos\n\n27) Kalimantan: Trade Y1 G1 Kalimantan\n\n28) Draw5PlayAll: Discover B1 Draw5playall G2 Keeper\n\tDraw5PlayAll: Hahahaha\n\tSkully: Dam srry guys been having issues wit my internet srry guys\n\tFelix: No problem. Sorry you had to drop out!\n\n29) Felix: B B1 Felix\n\tDraw5PlayAll: Blame me. After all, normally I would give a 1-3 day allowance before forcing a resignation.\n\tDraw5PlayAll: Seriously??\n\tDraw5PlayAll: I will keep Kalimantan purely because I cannot fight Felix alone!\n\n30) Kalimantan: Move G1 Kalimantan Hell\n\n31) Draw5PlayAll: Build B2 Keeper\n\n32) Felix: Move B1 Felix Lykos\n\tDraw5PlayAll: Felix is not so nice...\n\n33) Kalimantan: Build G1 Hell\n\n34) Draw5PlayAll: Build G2 Draw5playall\n\tFelix: What does the vote thing mean?\r\n\n\n35) Felix: Build B2 Lykos\n\tDraw5PlayAll: System console.\n\n36) Kalimantan: Build G2 Hell\n\n37) Draw5PlayAll: Build G3 Draw5playall\n\tFelix: That doesn&#39;t help me :P\n\n38) Felix: Discover G1 Felix Y1 Pax\n\tDraw5PlayAll: Go to your user page. It should have a thing called system console.\n\n39) Kalimantan: Build Y2 Kalimantan\n\n40) Draw5PlayAll: Discover G2 Draw5playall B2 Icehouse\n\n41) Felix: Build G3 Pax\n\tDraw5PlayAll: Hmmmm....\n\tDraw5PlayAll: For a second I thought I had just made a huge mistake. But really, Felix just set it up on that move.\n\n42) Kalimantan: Trade G2 B2 Hell\n\n43) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\n\n44) Felix: Sacrifice G3 Pax\nBuild G3 Pax\nBuild Y3 Lykos\nBuild Y3 Felix\n\n45) Felix: Trade Y2 R2 Lykos\n\n46) Draw5PlayAll: Move Y3 Draw5playall Keeper\n\tDraw5PlayAll: Funny how I went from frozen out of yellow to leading pip counts 17-14-11-5. Though that is in turn order so it might be 17-20-14 next time it comes to my turn.\n\n47) Felix: Sacrifice Y2 Felix\nMove Y3 Lykos Keeper\nMove G3 Pax Keeper\n\tDraw5PlayAll: I see a move for West. Sac your Y2@Kalimantan and move two greens at Hell into Pax, blowing up his factory. This move is completely optional.\n\tDraw5PlayAll: Time to resume the clocks.\n\tDraw5PlayAll: What I mean is, I have belayed the orders to assist our galactic neighbors in life support. In approximately 84 hours they will be dead.\n\n48) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover Y3 Keeper B3 B3\nMove G1 Draw5playall Keeper\n\n49) Felix: Sacrifice Y3 Felix\nMove Y3 Keeper Draw5playall\nMove G3 Keeper Draw5playall\nPass\n\n50) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Draw5playall\nBuild R1 Draw5playall\nBuild R1 Draw5playall\n\tFelix: Just us then, eh?\n\tDraw5PlayAll: 4P never seems to work. Someone ALWAYS seems to forfeit on time. :(\r\n\r\nMe vs you vs dragon has not had that happen yet though!\n\n51) Felix: Catastrophe Draw5playall Red\nPass\n\n\nHomeworlds Online (SDG# 30110)\nStarted: 2016.7.27, Ended: 2016.10.25\nParticipants: ts52 (S), Ryzorrin (N)\nWinner: ts52\n\n1) Ryzorrin: Homeworld B2 R1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Ryzorrin: Build G1 Ryzorrin\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tRyzorrin: Thanks, you too.  I only learned how to play this game over the weekend at Looney Con.\n\tts52: That&#39;s great! I was bummed I couldn&#39;t make it. Hopefully they&#39;ll do it again next year.\n\n5) Ryzorrin: Trade G1 Y1 Ryzorrin\n\n6) ts52: Build G1 Ts52\n\tRyzorrin: I hope so too!  It was utterly fantastic.\n\n7) Ryzorrin: Build Y1 Ryzorrin\n\n8) ts52: Discover G1 Ts52 B1 Gonzo\n\n9) Ryzorrin: Trade Y1 B1 Ryzorrin\n\tRyzorrin: trade y1 b1 Ryzorrin\n\n10) ts52: Trade G1 Y1 Ts52\n\tDraw5PlayAll: A while back I *almost* typed my move into the chat box, but then I realized what happened. Huh.\n\n11) Ryzorrin: Build G1 Ryzorrin\n\tts52: Sorry for the delay.\r\n\n\tRyzorrin: No problem.  I figured this game would take quite awhile.\n\n12) ts52: Move Y1 Ts52 Gonzo\n\n13) Ryzorrin: Discover G1 Ryzorrin B3 Click\n\tts52: Thanks for understanding. I&#39;m afraid I&#39;m going off grid again until Friday. But I&#39;ll be back online to make my move Friday night.\n\n14) ts52: Build G1 Ts52\n\n15) Ryzorrin: Build G2 Click\n\n16) ts52: Build G2 Gonzo\n\n17) Ryzorrin: Trade G2 Y2 Click\n\n18) ts52: Trade G2 B2 Gonzo\n\n19) Ryzorrin: Build G2 Click\n\n20) ts52: Build G2 Gonzo\n\n21) Ryzorrin: Trade G2 R2 Click\n\n22) ts52: Trade G1 R1 Ts52\n\n23) Ryzorrin: Build G1 Ryzorrin\n\n24) ts52: Build G2 Ts52\n\n25) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G2 Click\nBuild B1 Ryzorrin\nBuild G3 Ryzorrin\n\n26) ts52: Discover B2 Gonzo G3 Kermit\n\n27) Ryzorrin: Discover B1 Ryzorrin Y3 Knock\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n29) Ryzorrin: Move B1 Ryzorrin Kermit\nCatastrophe Kermit B\n\n30) ts52: Discover G2 Gonzo G3 Kermit\n\n31) Ryzorrin: Move R2 Click Gonzo\n\n32) ts52: Discover G2 Ts52 Y1 Bigbird\n\n33) Ryzorrin: Attack Y1 Gonzo\n\n34) ts52: Sacrifice G2 Kermit\nBuild G2 Ts52\nBuild G3 Gonzo\n\n35) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G3 Ryzorrin\nBuild Y2 Gonzo\nBuild Y2 Click\n\n36) ts52: Sacrifice R1 Ts52\nAttack R2 Gonzo\n\n37) Ryzorrin: Build Y3 Ryzorrin\n\n38) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R1 Gonzo\nBuild R1 Gonzo\n\n39) Ryzorrin: Sacrifice B1 Knock\nTrade Y2 R2 Gonzo\nCatastrophe Gonzo R\n\n40) ts52: T G1 R1 Gonzo\n\n41) Ryzorrin: Discover Y1 Gonzo R3 Tap\n\n42) ts52: Trade G3 Y3 Gonzo\n\tRyzorrin: discover y1 gonzo r3 Tap\n\tRyzorrin: Ah shoot I did that again.\n\n43) Ryzorrin: Discover G2 Click B1 Clap\n\n44) ts52: Sacrifice G3 Ts52\nBuild G1 Bigbird\nBuild G3 Ts52\nBuild Y2 Gonzo\n\tRyzorrin: g2 click discover b1 Clap\n\n45) Ryzorrin: Build G3 Clap\n\tDraw5PlayAll: I keep putting chat messages into the notebook. Of course I usually catch before I even finish.\n\tts52: Yeah, I&#39;m not sure I see much point in the notebook.\n\n46) ts52: Trade G2 R2 Ts52\n\tDraw5PlayAll: Record ideas? Like you find this killer strategy idea and you want to not forget?\n\n47) Ryzorrin: Trade G3 R3 Clap\n\n48) ts52: Move Y3 Gonzo Tap\n\n49) Ryzorrin: Discover Y3 Ryzorrin B3 Thud\n\n50) ts52: Attack Y1 Tap\n\n51) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G2 Click\nBuild G3 Clap\nBuild G3 Ryzorrin\n\n52) ts52: Sacrifice G2 Bigbird\nBuild R1 Ts52\nBuild R2 Gonzo\n\n53) Ryzorrin: Move G1 Click Clap\n\n54) ts52: Trade R2 B2 Ts52\n\tDraw5PlayAll: Sounds vs Muppets.\n\n55) Ryzorrin: Sacrifice Y3 Thud\nMove G3 Clap Ts52\nMove G1 Clap Ts52\nMove G2 Clap Ts52\nCatastrophe Ts52 G\n\n56) ts52: Sacrifice Y2 Gonzo\nMove Y3 Tap Gonzo\nMove Y3 Gonzo Ts52\n\n57) Ryzorrin: Move G2 Click Clap\n\n58) ts52: Move B2 Ts52 Bigbird\n\n59) Ryzorrin: Trade Y2 G2 Click\n\n60) ts52: Build B1 Bigbird\n\n61) Ryzorrin: Build R2 Clap\n\n62) ts52: Build B3 Bigbird\n\n63) Ryzorrin: Trade R3 B3 Clap\n\n64) ts52: Move B3 Bigbird Tap\n\n65) Ryzorrin: Sacrifice Y2 Click\nMove R2 Clap Click\nMove R2 Click Bigbird\n\n66) ts52: Sacrifice R1 Gonzo\nAttack R2 Bigbird\n\n67) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G1 Click\nBuild G2 Clap\nBuild G3 Ryzorrin\n\n68) ts52: Build G3 Bigbird\n\n69) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G3 Clap\nBuild G3 Ryzorrin\nBuild Y2 Ryzorrin\n\n70) ts52: Move G1 Bigbird Tap\n\n71) Ryzorrin: Trade G3 R3 Clap\n\n72) ts52: Build G3 Tap\n\n73) Ryzorrin: Sacrifice G1 Ryzorrin\nBuild R1 Clap\n\n74) ts52: Sacrifice G3 Tap\nBuild G1 Bigbird\nBuild G3 Tap\nBuild Y2 Tap\n\n75) Ryzorrin: Trade G2 Y2 Clap\n\n76) ts52: Discover G3 Bigbird Y3 Zoe\n\n77) Ryzorrin: Trade G2 R2 Click\n\n78) ts52: Build R3 Bigbird\n\n79) Ryzorrin: Move R3 Clap Zoe\n\tDraw5PlayAll: These are diverse systems! IDIC.\n\n80) ts52: Sacrifice R1 Ts52\nAttack R3 Zoe\n\n81) Ryzorrin: Sacrifice Y2 Clap\nMove R1 Clap Ts52\nMove B3 Clap Ts52\n\tRyzorrin: Move r3 clap zoe\n\n82) ts52: Sacrifice R2 Bigbird\nAttack R1 Ts52\nAttack B3 Ts52\n\n83) Ryzorrin: Build G2 Clap\n\n84) ts52: Sacrifice Y3 Ts52\nMove B3 Tap Ryzorrin\nMove G3 Tap Ryzorrin\nMove G3 Zoe Ryzorrin\n\n85) Ryzorrin: Sacrifice R2 Click\nAttack B3 Ryzorrin\nAttack G3 Ryzorrin\n\n86) ts52: Sacrifice R3 Bigbird\nAttack G3 Ryzorrin\nAttack G3 Ryzorrin\nAttack B3 Ryzorrin\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 30116)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.27, Ended: 2016.7.30\nParticipants: wil (S), mxpf (N)\nWinner: mxpf\n\n1) mxpf: Homeworld G1 B2 Y3\n\n\tmxpf: Hi! This is my first time playing Homeworlds online...let&#39;s see how I do!\n\tDraw5PlayAll: I think you should challenge someone else. Wil has not responded in weeks.\r\n\r\nI am willing to play, just select Draw5PlayAll in the Challenge Whom field.\n\tmxpf: I KILLED IT!\n\tDraw5PlayAll: Uhhh... the user has not logged on for a month. It&#39;s anyone&#39;s guess if&amp;when he will return.\n\tmxpf: I kid, I kid.\n\nHomeworlds Online (SDG# 30137)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.28, Ended: 2016.7.29\nParticipants: Draw5PlayAll (S), mxpf (N)\nWinner: Draw5PlayAll\n\n1) mxpf: Homeworld G1 B2 Y3\n\n2) Draw5PlayAll: Homeworld R1 B3 G3\n\tmxpf: Hi! Thanks for finding me in that other game. Good luck!\n\tmxpf: Hi! Thanks for finding me in that other game. Good luck!\n\tmxpf: Weird, not sure why that message double posted, haha\n\tDraw5PlayAll: Well, I chose the option to observe all Homeworlds games. Double posting is NOT a new bug.\n\n3) mxpf: Build Y1 Mxpf\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mxpf: Trade Y3 B3 Mxpf\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) mxpf: Discover B3 Mxpf Y3 Mutaranebula\n\tDraw5PlayAll: We needed to obtain warp drives to pursue our peaceful quest for new life and new civilizations.\n\tmxpf: hahaha\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: !!!\n\n9) mxpf: Trade B3 G3 Mutaranebula\n\tmxpf: probably a bad move, I have no idea what I&#39;m doing\n\n10) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\tDraw5PlayAll: You are safe because I cannot access your home world yet.\r\nhttp://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\n11) mxpf: Trade Y1 R1 Mxpf\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) mxpf: Build G2 Mutaranebula\n\n14) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G2 Draw5playall\nBuild G3 Draw5playall\n\n15) mxpf: Sacrifice G3 Mutaranebula\nBuild G3 Mutaranebula\nBuild G3 Mutaranebula\nBuild R1 Mxpf\n\tmxpf: Nice one!\n\n16) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G1 Icehouse Mutaranebula\nCatastrophe Mutaranebula Green\n\n\tmxpf: Good game!\n\tDraw5PlayAll: Well, you always want to have a large in the homeworld... that was probably your mistake. (Unless you are going for THE winning kill and you are 100% sure you will succeed.)\r\nhttp://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\tmxpf: Gotcha. Thanks!\n\nHomeworlds Online (SDG# 30117)\nVariants: &quot;Hard time&quot;\nStarted: 2016.7.29, Ended: 2016.8.13\nParticipants: mxpf (S), Simon (N)\nWinner: mxpf\n\n1) Simon: Homeworld R2 B1 G3\n\n2) mxpf: Homeworld Y1 G3 B3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tmxpf: You too!\n\n4) mxpf: Build B1 Mxpf\n\n5) Simon: Trade G1 B1 Simon\n\n6) mxpf: Build B2 Mxpf\n\n7) Simon: Build B2 Simon\n\n8) mxpf: Trade B1 Y1 Mxpf\n\tmxpf: I&#39;m screwed already!! Haha\n\n9) Simon: Trade B2 Y2 Simon\n\n10) mxpf: Trade B2 R2 Mxpf\n\n11) Simon: Discover B1 Simon G3 G3\n\n12) mxpf: Discover R2 Mxpf Y2 Mutara\n\n13) Simon: Build G1 Simon\n\n14) mxpf: Move R2 Mutara G3\n\n15) Simon: Trade G1 R1 Simon\n\n16) mxpf: Attack B1 G3\n\n17) Simon: Move G3 Simon G3\n\n18) mxpf: Sacrifice Y1 Mxpf\nDiscover R2 G3 Y2 Ceres\n\n19) Simon: Move R1 Simon G3\n\n20) mxpf: Discover R2 Ceres B3 Luna\n\n21) Simon: Build G1 G3\n\n22) mxpf: Trade B1 G1 G3\nCatastrophe G3 G\n\n\tSimon: gg\n\tmxpf: U2!\n\nHomeworlds Online (SDG# 30135)\nStarted: 2016.8.2, Ended: 2016.8.17\nParticipants: mxpf (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B1 R3 G3\n\n2) mxpf: Homeworld B3 Y2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) mxpf: Build G1 Mxpf\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tmxpf: I&#39;ll try to last longer this time\n\n6) mxpf: Build G1 Mxpf\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) mxpf: Trade G1 B1 Mxpf\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\n10) mxpf: Discover G1 Mxpf G1 Arboria\n\n11) Draw5PlayAll: Build G2 Draw5playall\n\n12) mxpf: Sacrifice G1 Arboria\nBuild B1 Mxpf\n\n13) Draw5PlayAll: Build Y1 Draw5playall\n\n14) mxpf: Discover B1 Mxpf Y1 Amber\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) mxpf: Build B2 Mxpf\n\n17) Draw5PlayAll: Move Y2 Draw5playall Icehouse\n\n18) mxpf: Trade B2 Y2 Mxpf\n\n19) Draw5PlayAll: Build Y3 Icehouse\n\n20) mxpf: Sacrifice G3 Mxpf\nBuild B2 Amber\nBuild B2 Amber\nBuild B3 Mxpf\n\n21) Draw5PlayAll: Trade Y3 R3 Icehouse\n\n22) mxpf: Move B1 Amber Icehouse\n\n23) Draw5PlayAll: Sacrifice Y2 Icehouse\nMove R3 Icehouse Amber\nMove G1 Icehouse Amber\n\n24) mxpf: Trade B1 R1 Icehouse\n\n25) Draw5PlayAll: Attack B2S Amber\n\tmxpf: I think I&#39;m in trouble...\n\n26) mxpf: Sacrifice B2 Amber\nTrade B3 R3 Mxpf\nTrade B1 G1 Mxpf\n\tDraw5PlayAll: Have it.\n\n27) Draw5PlayAll: Discover G2 Draw5playall B2 Action\n\n28) mxpf: Build Y2 Mxpf\n\n29) Draw5PlayAll: Build Y3 Draw5playall\n\n30) mxpf: Discover Y2 Mxpf G1 Scrofula\n\n31) Draw5PlayAll: Move Y1 Draw5playall Action\n\n32) mxpf: Build Y3 Scrofula\n\tmxpf: A size 3 ship can capture a size 3 ship, right?\n\tDraw5PlayAll: Yes, it can.\n\n33) Draw5PlayAll: Build Y3 Action\n\tmxpf: Hmm.\n\n34) mxpf: Build G2 Mxpf\n\tmxpf: What would you do if you were me right now? I mean, besides surrender\n\tDraw5PlayAll: Sacrifice that Y2@mxpf and bomb all my yellows... if it were your move!\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\tmxpf: Haha!\n\n36) mxpf: Trade G1 R1 Mxpf\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Action\nBuild G3 Draw5playall\nBuild B1 Amber\n\tmxpf: There are a lot f pieces on the board. My head hurts\n\tDraw5PlayAll: You never moved.\n\tmxpf: I know, I know\n\tmxpf: I have 4 days to mull it over ;-)\n\n38) mxpf: Move Y3 Scrofula Action\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Amber\nBuild B1 Amber\n\n40) mxpf: Sacrifice R3 Mxpf\nAttack Y3 Action\nAttack G2 Action\nAttack Y1 Action\n\n41) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y1 Draw5playall Action\nMove R3 Amber Mxpf\nMove G3 Amber Mxpf\n\n42) mxpf: Sacrifice Y2 Scrofula\nDiscover Y1 Action Y3 Argo\nMove Y3 Action Amber\n\n43) Draw5PlayAll: Sacrifice R3 Mxpf\nAttack R1S Mxpf\nAttack G2S Mxpf\nAttack Y2S Mxpf\n\n\tDraw5PlayAll: But then I just kill all your ships.\n\tDraw5PlayAll: Yeah, your big mistake was when you gave up your R3. You *always* need to keep a large at your homeworld unless you are 100% sure you are delivering the final blow (or you can get a large back in time).\r\n\r\nGood game!\n\tmxpf: Ah OK. I appreciate all the commentary, it&#39;s helping me learn!\n\nHomeworlds Online (SDG# 30141)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.2, Ended: 2016.8.24\nParticipants: Simon (S), mxpf (N)\nWinner: Simon\n\n1) mxpf: Homeworld Y3 G2 B3\n\tmxpf: Hi!\n\n2) Simon: Homeworld B3 Y1 G3\n\tSimon: Have fun :)\n\n3) mxpf: Build B1 Mxpf\n\n4) Simon: Build G1 Simon\n\n5) mxpf: Trade B1 G1 Mxpf\n\n6) Simon: Discover G1 Simon B2 B2\n\n7) mxpf: Build B1 Mxpf\n\n8) Simon: Build G1 Simon\n\n9) mxpf: Build G2 Mxpf\n\n10) Simon: Build G2 Simon\n\n11) mxpf: Discover G2 Mxpf Y1 Artax\n\n12) Simon: Build G3 B2\n\n13) mxpf: Build G3 Artax\n\n14) Simon: Trade G1 Y1 B2\n\n15) mxpf: Discover G2 Artax Y2 Amber\n\n16) Simon: Trade G1 R1 Simon\n\n17) mxpf: Sacrifice G3 Artax\nBuild G1 Amber\nBuild G1 Amber\nBuild G3 Mxpf\n\n18) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 B2\nBuild Y2 B2\n\n19) mxpf: Trade G3 Y3 Mxpf\n\n20) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild R1 Simon\n\n21) mxpf: Sacrifice B1 Mxpf\nTrade G2 Y2 Amber\n\n22) Simon: Sacrifice Y2 B2\nMove G2 Simon Amber\nDiscover Y1 B2 R1 R1\n\n23) mxpf: Sacrifice Y3 Mxpf\nMove Y2 Amber Simon\nMove G1 Amber Simon\nMove G1 Amber Simon\n\n24) Simon: Attack Y2 Simon\n\n25) mxpf: Build G2 Simon\nCatastrophe Simon G\n\n26) Simon: Sacrifice G3 B2\nBuild Y2 B2\nBuild Y3 R1\nBuild Y3 Simon\n\n27) mxpf: Trade B3 R3 Mxpf\n\n28) Simon: Build G1 B2\n\n29) mxpf: Build R2 Mxpf\n\n30) Simon: Discover G3 B2 B1 B1\n\n31) mxpf: Build R2 Mxpf\n\n32) Simon: Build G1 B1\n\n\tmxpf: Good game! I learned a lot. Sorry I didn&#39;t put up much of a fight!\n\tSimon: gg! No need to feel sorry, always happy for a rematch.\n\tDraw5PlayAll: Time forfeit, or what?\n\tSimon: Not time. With the y monopoly, I can build for doomsday in absolute safety.\n\tmxpf: Time forfeit!? What do you take me for?? ;-)\n\nHomeworlds Online (SDG# 30167)\nStarted: 2016.8.2, Ended: 2016.8.11\nParticipants: Steele (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: Homeworld Y3 G2 B3\n\n2) Steele: H B2 Y1 G3\n\n3) ladybugsfly: Build B1 Ladybugsfly\n\n4) Steele: B G1 Steele\n\n5) ladybugsfly: Trade B1 G1 Ladybugsfly\n\n6) Steele: B G1 Steele\n\n7) ladybugsfly: Build G2 Ladybugsfly\n\n8) Steele: D G1 Steele Y3 Alpha\n\n9) ladybugsfly: Trade G1 R1 Ladybugsfly\n\n10) Steele: S G3 Steele\nB G1 Alpha\nB G2 Alpha\nB G3 Steele\nPass\n\n11) ladybugsfly: Build G3 Ladybugsfly\n\n12) Steele: B G3 Steele\n\n13) ladybugsfly: Trade G3 Y3 Ladybugsfly\n\n14) Steele: D G1 Steele G3 Beta\n\n15) ladybugsfly: Sacrifice Y3 Ladybugsfly\nDiscover B3 Ladybugsfly R1 Good\nDiscover B3 Good R3 Morning\nMove B3 Morning Steele\n\n16) Steele: D G1 Alpha Y1 Gamma\n\n17) ladybugsfly: Sacrifice G2 Ladybugsfly\nBuild R1 Ladybugsfly\nBuild R1 Ladybugsfly\n\n18) Steele: Discover G1 Gamma B3 Omega\n\n19) ladybugsfly: Sacrifice R1 Ladybugsfly\nAttack G3 Steele\n\n20) Steele: Move G2 Alpha Steele\n\n21) ladybugsfly: Trade G3 R3 Steele\n\n22) Steele: Pass\n\tSteele: Good move...\n\n23) ladybugsfly: Sacrifice R3 Steele\nAttack G3 Steele\nAttack G2 Steele\nPass\n\tladybugsfly: &lt;3\n\n\nHomeworlds Online (SDG# 30180)\nStarted: 2016.8.3, Ended: 2016.8.29\nParticipants: Babamots (S), RogueJedi234 (N)\nWinner: Babamots\n\n1) RogueJedi234: Homeworld B3 R2 G3\n\n2) Babamots: Homeworld G2 R1 B3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\tBabamots: So is this a chat box?\n\n4) Babamots: Build B1 Babamots\n\n5) RogueJedi234: Build G1 Roguejedi234\n\n6) Babamots: Build B1 Babamots\n\n7) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n8) Babamots: Trade B1 Y1 Babamots\n\n9) RogueJedi234: Discover G1 Roguejedi234 B1 Yavin4\n\n10) Babamots: Build B1 Babamots\n\n11) RogueJedi234: Build G1 Yavin4\n\n12) Babamots: Discover B1 Babamots G3 Cuellar\n\n13) RogueJedi234: Build G1 Roguejedi234\n\n14) Babamots: Build B2 Cuellar\n\n15) RogueJedi234: Build G2 Yavin4\n\n16) Babamots: Discover B1 Babamots G3 Galorndon\n\n17) RogueJedi234: Trade G2 R2 Yavin4\n\n18) Babamots: Trade B2 R2 Cuellar\n\n19) RogueJedi234: Discover G1 Roguejedi234 Y1 Tatooine\n\n20) Babamots: Build B2 Galorndon\n\n21) RogueJedi234: Build G2 Roguejedi234\n\n22) Babamots: Trade B2 G2 Galorndon\n\n23) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild Y2 Roguejedi234\nBuild R1 Yavin4\n\n24) Babamots: Build Y2 Babamots\n\n25) RogueJedi234: Move Y2 Roguejedi234 Tatooine\n\n26) Babamots: Sacrifice G2 Galorndon\nBuild B2 Galorndon\nBuild B2 Cuellar\n\n27) RogueJedi234: Discover Y2 Tatooine B3 Bespin\n\n28) Babamots: Trade B2 Y2 Cuellar\n\n29) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild Y3 Bespin\nBuild G2 Tatooine\nBuild G3 Roguejedi234\n\n30) Babamots: Sacrifice Y2 Babamots\nMove Y2 Cuellar Yavin4\nMove B2 Galorndon Yavin4\n\n31) RogueJedi234: Trade Y3 R3 Bespin\n\n32) Babamots: Sacrifice R2 Cuellar\nAttack R2N Yavin4\nAttack G1N Yavin4\n\n33) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild R1 Bespin\nBuild Y2 Bespin\n\n34) Babamots: Attack R1N Yavin4\n\n35) RogueJedi234: Sacrifice Y2 Bespin\nDiscover G2 Tatooine Y3 Hoth\nMove G1 Tatooine Hoth\n\n36) Babamots: Attack G1N Yavin4\n\n37) RogueJedi234: Trade G2 B2 Roguejedi234\n\n38) Babamots: Build B2 Cuellar\n\n39) RogueJedi234: Sacrifice G1 Hoth\nBuild Y1 Bespin\n\n40) Babamots: Trade B2 Y2 Cuellar\n\n41) RogueJedi234: Trade Y1 G1 Bespin\n\n42) Babamots: Discover B1 Cuellar Y1 Wolf359\n\n43) RogueJedi234: Move B2 Roguejedi234 Wolf359\n\n44) Babamots: Build Y3 Yavin4\n\n45) RogueJedi234: Sacrifice R1 Bespin\nAttack B1 Wolf359\n\n46) Babamots: Build Y3 Cuellar\n\n47) RogueJedi234: Trade B2 G2 Wolf359\n\n48) Babamots: Move Y3 Cuellar Wolf359\n\n49) RogueJedi234: Sacrifice Y2 Bespin\nMove B1 Wolf359 Bespin\nMove G2 Wolf359 Bespin\n\n50) Babamots: Build Y2 Cuellar\n\n51) RogueJedi234: Build R1 Bespin\n\n52) Babamots: Sacrifice Y3 Wolf359\nMove B1 Galorndon Yavin4\nMove B1 Yavin4 Bespin\nMove B2 Yavin4 Bespin\nCatastrophe Bespin B\n\n53) RogueJedi234: Build G1 Hoth\n\n54) Babamots: Trade Y2 B2 Yavin4\n\n55) RogueJedi234: Discover G2 Hoth Y1 Ossus\n\n56) Babamots: Sacrifice Y2 Cuellar\nMove G1 Yavin4 Roguejedi234\nMove G1 Yavin4 Roguejedi234\n\n57) RogueJedi234: Trade G3 B3 Roguejedi234\n\n58) Babamots: Sacrifice B2 Yavin4\nTrade G1 B1 Roguejedi234\nTrade G1 B1 Roguejedi234\nCatastrophe Roguejedi234 B\n\n59) RogueJedi234: Move G1 Hoth Babamots\n\n60) Babamots: Move Y3 Yavin4 Roguejedi234\n\n61) RogueJedi234: Sacrifice G2 Ossus\nBuild G1 Babamots\nBuild G1 Babamots\nCatastrophe Babamots Green\n\n62) Babamots: Attack Y1N Roguejedi234\n\n\nHomeworlds Online (SDG# 30216)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.7, Ended: 2016.10.24\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) endo: Homeworld R1 B3 G3\n\n3) Felix: Build G1 Felix\n\tendo: Hi! Nice to see that you&#39;ve made your way into the top 5 of the ladder. Enjoy the game!\n\tFelix: Thank you! I hope you have fun :)\n\n4) endo: Build G1 Endo\n\n5) Felix: Trade G1 R1 Felix\n\n6) endo: Trade G1 Y1 Endo\n\n7) Felix: Build R1 Felix\n\n8) endo: Build Y1 Endo\n\n9) Felix: Build R2 Felix\n\n10) endo: Discover Y1 Endo Y2 Norm\n\n11) Felix: Discover R1 Felix Y3 Rim\n\n12) endo: Sacrifice G3 Endo\nBuild Y2 Endo\nBuild Y2 Norm\nBuild Y3 Endo\n\n13) Felix: Build G1 Felix\n\n14) endo: Trade Y3 G3 Endo\n\n15) Felix: Sacrifice G3 Felix\nBuild R2 Rim\nBuild R2 Rim\nBuild R3 Felix\n\tFelix: I knew in my gut it was a mistake to go for red instead of yellow!\n\n16) endo: Build Y3 Endo\n\n17) Felix: Move R2 Rim Norm\n\n18) endo: Trade Y3 R3 Endo\n\n19) Felix: Attack Y2 Norm\n\n20) endo: Move Y1 Endo Norm\nCatastrophe Norm Y\n\n21) Felix: Trade R2 Y2 Felix\n\tendo: I did get an extra large, but you have a whole bunch of ships in compensation...\n\n22) endo: Build Y1 Endo\n\n23) Felix: Trade R3 G3 Felix\n\n24) endo: Discover Y1 Endo Y2 Metric\n\n25) Felix: Move R1 Rim Metric\n\n26) endo: Sacrifice G3 Endo\nBuild Y1 Endo\nBuild Y3 Endo\nBuild Y3 Metric\n\n27) Felix: Move R1 Metric Endo\n\n28) endo: Sacrifice R3 Endo\nAttack R1 Endo\nPass\nPass\n\n29) Felix: Discover Y2 Felix G3 Oligarchy\n\n30) endo: Move Y3 Metric Oligarchy\n\n31) Felix: Discover Y2 Oligarchy G2 Bastion\n\n32) endo: Trade Y1 B1 Endo\n\n33) Felix: Build Y1 Bastion\n\n34) endo: Trade Y2 G2 Endo\n\n35) Felix: Build R2 Felix\n\n36) endo: Discover R1 Endo G2 Uniformity\n\n37) Felix: Discover R2 Felix B3 Anarchy\n\n38) endo: Trade Y3 G3 Endo\n\n39) Felix: Move R2 Rim Uniformity\n\n40) endo: Sacrifice Y1 Metric\nMove R1 Uniformity Oligarchy\n\n41) Felix: Discover G1 Felix R3 Inflation\n\n42) endo: Build R2 Oligarchy\n\n43) Felix: Build R3 Uniformity\n\n44) endo: Sacrifice Y3 Oligarchy\nDiscover R2 Oligarchy Y2 Topology\nMove G2 Endo Uniformity\nDiscover G2 Uniformity R3 Product\n\n45) Felix: Sacrifice G1 Inflation\nBuild R3 Anarchy\n\n46) endo: Sacrifice G2 Product\nBuild R3 Topology\nBuild B1 Endo\n\n47) Felix: Trade R2 B2 Anarchy\n\n48) endo: Trade B1 Y1 Endo\n\n49) Felix: Build G1 Felix\n\n50) endo: Build Y2 Endo\n\n51) Felix: Move Y2 Bastion Anarchy\n\tDraw5PlayAll: Someone here likes to name the stars after forms of government\n\n52) endo: Move Y2 Endo Bastion\n\n53) Felix: Sacrifice G1 Felix\nBuild Y3 Anarchy\n\n54) endo: Build Y3 Endo\n\n55) Felix: Discover Y3 Anarchy G2 Incident\n\n56) endo: Build Y3 Bastion\n\n57) Felix: Move Y2 Anarchy Bastion\nCatastrophe Bastion Yellow\n\n58) endo: Build G1 Endo\n\n59) Felix: Build G1 Felix\n\n60) endo: Discover Y3 Endo G2 Manifold\n\n61) Felix: Build Y1 Incident\n\n62) endo: Sacrifice G3 Endo\nBuild Y2 Manifold\nBuild Y2 Manifold\nBuild Y3 Endo\n\n63) Felix: Sacrifice Y3 Incident\nMove Y1 Incident Anarchy\nMove Y1 Anarchy Manifold\nMove G1 Felix Anarchy\nCatastrophe Manifold Yellow\n\n64) endo: Build B1 Endo\n\n65) Felix: Build R2 Anarchy\n\n66) endo: Move B1 Endo Topology\n\n67) Felix: Trade R2 Y2 Anarchy\n\n68) endo: Trade R3 G3 Topology\n\n69) Felix: Move B2 Anarchy Uniformity\n\n70) endo: Discover B1 Endo Y2 Convex\n\n71) Felix: Build Y1 Anarchy\n\n72) endo: Discover Y1 Endo R2 Vector\n\n73) Felix: Sacrifice B2 Uniformity\nTrade R3 Y3 Uniformity\nTrade Y1 B1 Anarchy\n\n74) endo: Sacrifice G3 Topology\nBuild B2 Topology\nBuild R3 Topology\nBuild R3 Oligarchy\n\n75) Felix: Build G1 Felix\n\n76) endo: Sacrifice B2 Topology\nTrade R2 G2 Topology\nTrade R3 G3 Oligarchy\n\n77) Felix: Sacrifice G3 Felix\nBuild G2 Anarchy\nBuild G3 Felix\nBuild R2 Uniformity\n\n78) endo: Sacrifice G3 Oligarchy\nBuild G3 Endo\nBuild Y1 Endo\nBuild R3 Oligarchy\n\n79) Felix: Build Y3 Uniformity\n\n80) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Topology\nBuild B2 Topology\n\n81) Felix: Sacrifice Y3 Uniformity\nMove R2 Uniformity Endo\nMove R2 Uniformity Endo\nMove B1 Anarchy Topology\nCatastrophe Topology Blue\n\n82) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y3 Vector\nPass\n\n83) Felix: Move R3 Anarchy Convex\n\n84) endo: Move B1 Convex Oligarchy\n\n85) Felix: Trade G2 B2 Anarchy\n\n86) endo: Attack R2 Endo\n\n87) Felix: Sacrifice Y3 Uniformity\nMove R3 Convex Endo\nCatastrophe Endo Red\nMove G1 Felix Endo\nDiscover G1 Anarchy Y2 Concave\n\n88) endo: Sacrifice Y3 Vector\nMove G3 Endo Felix\nMove R3 Oligarchy Felix\nMove Y1 Endo Vector\n\n89) Felix: Attack R3 Felix\n\tDraw5PlayAll: A fight broke out in the endo system! South&#39;s R2 ship was overtaken by North.\r\nA fight broke out in the endo system! North&#39;s R2 ship was overtaken by South.\r\nad infinitum...\r\n\r\nOr not.\n\n90) endo: Sacrifice R3 Topology\nAttack G3 Felix\nAttack R1 Felix\nAttack R3 Felix\n\n\tFelix: Ah. Well done! I missed that counterattack.\n\tendo: I&#39;ve made a similar mistake versus Simon, and that wasn&#39;t when I was new :) See here: http://superdupergames.org/?page=archive_play&amp;gid=28624&amp;idx=56\r\nThanks for a long and difficult game. This was my longest game yet. I was afraid you had bested me halfway through the game when you gained those two larges. I somehow managed to equalize with yellow after some time.\n\tFelix: Thanks! I&#39;ll study that game and this one and hopefully learn to avoid it in future. This may have been my longest game as well. Definitely a difficult and interesting one. I also felt that advantage halfway through but I wasn&#39;t quite able to capitalize on it. You recovered really well. I look forward to our next game whenever that may be!\n\nHomeworlds Online (SDG# 30215)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.7, Ended: 2016.8.25\nParticipants: dlwillson (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R2 B1 G3\n\n2) dlwillson: H B3 R1 G3 Dlwillson\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tdlwillson: Hi! You too!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Simon: Trade G1 Y1 Simon\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Simon: Build G1 Simon\n\n8) dlwillson: B G1 Dlwillson\n\n9) Simon: Trade G1 R1 Simon\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Simon: Build R2 Simon\n\n12) dlwillson: B R2 Dlwillson\n\n13) Simon: Discover R2 Simon G3 G3\n\n14) dlwillson: T R1 B1 Dlwillson\n\n15) Simon: Build G1 Simon\n\n16) dlwillson: B B1 Dlwillson\n\n17) Simon: Discover R1 Simon B3 B3\n\n18) dlwillson: Discover B1 Dlwillson G2 Field\n\n19) Simon: Move G1 Simon B3\n\n20) dlwillson: B B2 Field\n\n21) Simon: Build R1 G3\n\n22) dlwillson: B R3 Dlwillson\n\n23) Simon: Build R3 B3\n\n24) dlwillson: Move R2 Dlwillson Field\n\n25) Simon: Build R3 G3\n\n26) dlwillson: S Y1 Dlwillson\nM R2 Field G3\nC G3 R\n\n27) Simon: Trade R1 Y1 B3\n\n28) dlwillson: T B2 Y2 Field\n\n29) Simon: Build Y1 B3\n\n30) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Dlwillson\nBuild B2 Field\nBuild R1 Dlwillson\n\n31) Simon: Move R3 B3 Field\n\n32) dlwillson: S Y2 Field\nM B2 Field B3\nDiscover R1 Dlwillson G2 Forest\n\n33) Simon: Attack B1 Field\n\tdlwillson: Why you gotta kick my ass so hard?\n\n34) dlwillson: T B2 R2 B3\n\tSimon: I was able to force your (sacrifice y1 dlwilson, move r2 into my 3 reds, cata red) with your only y1. That was expensive, maybe you must let me get away with the extra large, I&#39;m not sure.\n\n35) Simon: Sacrifice Y1 B3\nMove B1 Field Dlwillson\nCatastrophe Dlwillson B\n\n36) dlwillson: T R2 B2 B3\n\n37) Simon: Sacrifice G3 Simon\nBuild Y1 Simon\nBuild Y2 Simon\nBuild R1 Field\n\tdlwillson: I actually missed that. Wow.\n\n38) dlwillson: S B2 B3\nT R3 G3 Dlwillson\nT R1 B1 Forest\n\n39) Simon: Sacrifice Y2 Simon\nMove R1 Field Dlwillson\nMove R3 Field Dlwillson\n\tdlwillson: Sorry for the delay. I&#39;ve been teaching Linux Camp.\n\n40) dlwillson: Attack R3 Dlwillson\n\n41) Simon: Sacrifice G1 B3\nBuild R1 Dlwillson\nCatastrophe Dlwillson R\n\tdlwillson: GG TY :-)\n\tSimon: gg!\n\n\nHomeworlds Online (SDG# 30219)\nVariants: &quot;Unrated&quot;\nStarted: 2016.8.7, Ended: 2016.8.7\nParticipants: Rizzotto (S), DetectiveAzul (N)\nWinner: DetectiveAzul\n\n1) DetectiveAzul: Homeworld G2 B1 Y3\n\tDetectiveAzul: Hola chat\n\n2) Rizzotto: Homeworld G3 B2 R3\n\tDetectiveAzul: jajajajaja puti\n\tRizzotto: homeworld G3 B2 R3\n\n3) DetectiveAzul: Build Y1 Detectiveazul\n\tRizzotto: chocho\n\n4) Rizzotto: Build R1 Rizzotto\n\n5) DetectiveAzul: Build Y1 Detectiveazul\n\n6) Rizzotto: Trade R1 Y1 Rizzotto\n\n7) DetectiveAzul: Discover Y1 Detectiveazul G3 Yvolo\n\n8) Rizzotto: Build Y2 Rizzotto\n\n9) DetectiveAzul: Discover Y1 Detectiveazul G3 Yyovoledeel\n\n10) Rizzotto: Build Y2 Rizzotto\n\tDetectiveAzul: chocho los que me meto en la boca en edimburgo\n\n11) DetectiveAzul: Build Y2 Yvolo\n\tRizzotto: :3 \n\n12) Rizzotto: Trade Y2 R2 Rizzotto\n\tRizzotto: Hay alguien que va a recibir una felaci&oacute;n nada m&aacute;s llegue a casa...~ \n\n13) DetectiveAzul: Build Y2 Yyovoledeel\n\n14) Rizzotto: Build R1 Rizzotto\n\n15) DetectiveAzul: Build Y3 Detectiveazul\n\n16) Rizzotto: Discover R2 Rizzotto G1 Elpan\n\tDetectiveAzul: 8===============================DO:\n\n17) DetectiveAzul: Build Y3 Detectiveazul\n\n18) Rizzotto: Move Y1 Rizzotto Elpan\n\tRizzotto: :3============8\n\tDetectiveAzul: Po voy a haserte una foto con mi pene en tu boca para los momentos de soledad en los fines de semana que tu trabajes, ea\n\n19) DetectiveAzul: Trade Y3 R3 Detectiveazul\n\tRizzotto: Hazla, si quieres. Pero pudiendo hacer un v&iacute;deo...\n\n20) Rizzotto: Build Y3 Rizzotto\n\tDetectiveAzul: Bueno, es que un v&iacute;deo en el m&oacute;vil no va a ser muy bonito, pero por m&iacute; vale\n\tDetectiveAzul: Bueno, es que un v&iacute;deo en el m&oacute;vil no va a ser muy bonito, pero por m&iacute; vale\n\n21) DetectiveAzul: Trade Y3 B3 Detectiveazul\n\tRizzotto: A ver, hasta que tengamos la gopro...De algo habr&aacute; que tirar. Te haces un POV casero. \n\n22) Rizzotto: Sacrifice Y2 Rizzotto\nMove R3 Rizzotto Elpan\nMove R3 Elpan Yvolo\n\tDetectiveAzul: Bueno, con el m&oacute;vil se pueden hacer semipovs de cosas sin mucho movimiento. Con la gopro falsa ya podremos hacer acrobacias.\n\n23) DetectiveAzul: Sacrifice Y2 Yvolo\nMove R3 Detectiveazul Yvolo\nMove R3 Yvolo Elpan\n\tRizzotto: Bajar y subir los labios sobre tu pene no es mucho movimiento :3\n\n24) Rizzotto: Move R2 Elpan Yvolo\n\n25) DetectiveAzul: Sacrifice Y1 Yvolo\nMove Y2 Yyovoledeel Elpan\n\tDetectiveAzul: Pero antes me quito los pelitos, que no quedan bien en la c&aacute;mara, ya lo he podido comprobar en los intentos fallidos de v&iacute;deos para mandarte\n\tRizzotto: A lo mejor a m&iacute; me gustaban los pelos. EL PORNO VINTAGE ERA CON PELOS. \n\n26) Rizzotto: Sacrifice Y1 Elpan\nMove R3 Yvolo Detectiveazul\n\tDetectiveAzul: RESPETA MI DECISI&Oacute;N A NO TENER PELOS &Ograve;,&Oacute;\n\tDetectiveAzul: Al final no te mando foto :#\n\tDetectiveAzul: Yo que iba a hacer eso de correrme en tu cara y luego darte besos para compartir fluidos...\n\n27) DetectiveAzul: Sacrifice R3 Elpan\nAttack R3S Detectiveazul\nPass\nPass\n\tRizzotto: .......Sin pelos, sin pelos. :3\n\n28) Rizzotto: Build Y1 Rizzotto\n\n29) DetectiveAzul: Build Y1 Yyovoledeel\n\n30) Rizzotto: Trade Y3 R3 Rizzotto\n\n31) DetectiveAzul: Build Y2 Elpan\n\n32) Rizzotto: Build Y2 Rizzotto\n\n33) DetectiveAzul: Build Y3 Detectiveazul\n\n34) Rizzotto: Trade R3 Y3 Rizzotto\n\n35) DetectiveAzul: Move Y2 Elpan Rizzotto\nCatastrophe Rizzotto Yellow\n\tRizzotto: y cu&aacute;ndo pensabas mandarme el v&iacute;deo?\n\n\nHomeworlds Online (SDG# 30188)\nStarted: 2016.8.7, Ended: 2016.9.17\nParticipants: Draw5PlayAll (S), RogueJedi234 (N)\nWinner: Draw5PlayAll\n\n1) RogueJedi234: Homeworld B3 R2 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) RogueJedi234: Build G1 Roguejedi234\n\n8) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n9) RogueJedi234: Build Y1 Roguejedi234\n\n10) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n11) RogueJedi234: Discover Y1 Roguejedi234 G1 Tatooine\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) RogueJedi234: Build Y2 Tatooine\n\n14) Draw5PlayAll: Discover B1 Draw5playall G2 Earth\n\n15) RogueJedi234: Build Y2 Roguejedi234\n\tDraw5PlayAll: Are they star systems or planets? I have seen them called both of those nouns...\n\n16) Draw5PlayAll: Move Y1 Draw5playall Earth\n\tRogueJedi234: I believe the upright pyramids are referred to as star systems, but regardless of that I always draw my names from star wars planets. It just helps me keep track of things. Either that or greek letter designations.\n\n17) RogueJedi234: Sacrifice Y2 Tatooine\nDiscover G1 Roguejedi234 B1 Hoth\nMove Y1 Roguejedi234 Hoth\n\n18) Draw5PlayAll: Build B2 Earth\n\n19) RogueJedi234: Build G1 Hoth\n\n20) Draw5PlayAll: Build G2 Draw5playall\n\n21) RogueJedi234: Build G2 Roguejedi234\n\n22) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Earth\nBuild G3 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n23) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild Y3 Roguejedi234\nBuild Y3 Tatooine\n\n24) Draw5PlayAll: Trade Y3 R3 Earth\nPass Pass Pass\n\n25) RogueJedi234: Discover Y3 Tatooine B2 Endor\n\n26) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Earth\nBuild R1 Earth\n\n27) RogueJedi234: Sacrifice Y2 Roguejedi234\nMove Y1 Hoth Earth\nMove Y1 Tatooine Earth\nCatastrophe Earth Yellow\n\n28) Draw5PlayAll: Discover G2 Draw5playall B2 Icehouse\n\n29) RogueJedi234: Trade G1 Y1 Hoth\n\n30) Draw5PlayAll: Build B3 Earth\n\n31) RogueJedi234: Build G1 Hoth\n\n32) Draw5PlayAll: Build Y1 Draw5playall\n\n33) RogueJedi234: Sacrifice Y3 Endor\nDiscover G1 Hoth B2 Alderaan\nMove Y1 Hoth Alderaan\nMove Y1 Alderaan Draw5playall\nCatastrophe Draw5playall Yellow\n\n34) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n35) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G1 Hoth\nBuild G3 Roguejedi234\nBuild G3 Alderaan\n\n36) Draw5PlayAll: Build G3 Icehouse\n\n37) RogueJedi234: Trade G3 R3 Alderaan\n\n38) Draw5PlayAll: Trade G2 Y2 Icehouse\n\n39) RogueJedi234: Trade G1 Y1 Hoth\n\n40) Draw5PlayAll: Move G3 Icehouse Draw5playall\n\n41) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G1 Hoth\nBuild G2 Alderaan\nBuild G3 Roguejedi234\n\n42) Draw5PlayAll: Build Y1 Draw5playall\n\n43) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild G3 Hoth\nBuild R1 Alderaan\n\n44) Draw5PlayAll: Move G3 Draw5playall Icehouse\n\n45) RogueJedi234: Discover G1 Hoth Y2 Korriban\n\n46) Draw5PlayAll: Build Y1 Icehouse\n\n47) RogueJedi234: Trade G2 Y2 Alderaan\n\n48) Draw5PlayAll: Move G3 Icehouse Draw5playall\n\n49) RogueJedi234: Build G2 Korriban\n\n50) Draw5PlayAll: Sacrifice Y1 Icehouse\nDiscover B1 Earth Y3 Wolf359\n\n51) RogueJedi234: Build Y1 Alderaan\n\n52) Draw5PlayAll: Move Y1 Draw5playall Earth\n\n53) RogueJedi234: Discover G1 Korriban R1 Belkadan\n\n54) Draw5PlayAll: Move B2 Earth Belkadan\n\n55) RogueJedi234: Sacrifice Y3 Roguejedi234\nMove G3 Hoth Earth\nMove G1 Hoth Earth\nMove G1 Belkadan Earth\nCatastrophe Earth Green\n\n56) Draw5PlayAll: Trade Y2 G2 Icehouse\n\n57) RogueJedi234: Trade G2 Y2 Roguejedi234\n\n58) Draw5PlayAll: Sacrifice G2 Icehouse\nBuild B2 Wolf359\nBuild B3 Belkadan\n\tDraw5PlayAll: Just what I needed! Really.\n\n59) RogueJedi234: Build G1 Roguejedi234\n\n60) Draw5PlayAll: Trade B2 G2 Wolf359\n\tDraw5PlayAll: First I tried to build two B3s but forgot that I sacrificed the only ship at a B2 system, so I had to build the b2 before the B3s.\n\n61) RogueJedi234: Build R1 Alderaan\n\n62) Draw5PlayAll: Build B2 Wolf359\n\n63) RogueJedi234: Sacrifice Y2 Alderaan\nMove R3 Alderaan Draw5playall\nMove R1 Alderaan Draw5playall\n\n64) Draw5PlayAll: Attack R3 Draw5playall\n\n65) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild R2 Draw5playall\nBuild R2 Alderaan\nBuild R3 Alderaan\nCatastrophe Draw5playall Red\n\n66) Draw5PlayAll: Trade B2 R2 Wolf359\n\n67) RogueJedi234: Move R3 Alderaan Wolf359\n\tDraw5PlayAll: I would have been more scared if you went to Wolf359 with that thing...\n\n68) Draw5PlayAll: Sac Y3 Draw5playall\nMove B3 Belkadan Roguejedi234\nMove B1 Wolf359 Belkadan\nMove R2 Wolf359 Draw5playall\n\n\tDraw5PlayAll: The really amazing thing is that no B1 ships exist for you to try and catastrophe my invader!\n\nHomeworlds Online (SDG# 30223)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.8, Ended: 2016.8.31\nParticipants: Draw5PlayAll (S), foksieloy (N)\nWinner: Draw5PlayAll\n\n1) foksieloy: Homeworld R3 B1 G3\n\n2) Draw5PlayAll: Homeworld R1 B2 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build G1 Foksieloy\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) foksieloy: Trade G1 B1 Foksieloy\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) foksieloy: Build B1 Foksieloy\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) foksieloy: Trade B1 Y1 Foksieloy\n\n10) Draw5PlayAll: Discover G1 Draw5playall B3 Action\n\n11) foksieloy: Discover B1 Foksieloy G2 Tibbers\n\n12) Draw5PlayAll: Build G1 Action\n\n13) foksieloy: Build B1 Tibbers\n\n14) Draw5PlayAll: Trade G1 R1 Action\n\n15) foksieloy: Build B2 Tibbers\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) foksieloy: Trade B2 R2 Tibbers\n\n18) Draw5PlayAll: Build Y1 Draw5playall\n\n19) foksieloy: Build Y2 Foksieloy\n\n20) Draw5PlayAll: Build Y2 Draw5playall\n\n21) foksieloy: Build B2 Tibbers\n\n22) Draw5PlayAll: Move Y2 Draw5playall Action\n\n23) foksieloy: Trade B2 G2 Tibbers\n\n24) Draw5PlayAll: Build G1 Action\n\n25) foksieloy: Move Y2 Foksieloy Tibbers\n\n26) Draw5PlayAll: Sacrifice Y2 Action\nMove G1 Action Tibbers\nMove G1 Action Tibbers\nCatastrophe Tibbers Green\n\n27) foksieloy: Build Y2 Foksieloy\n\tDraw5PlayAll: You had two greens...\n\tfoksieloy: That&#39;s what I get for playing a turn at 6 am.\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) foksieloy: Discover Y2 Foksieloy G2 Annie\n\n30) Draw5PlayAll: Move Y2 Draw5playall Action\n\n31) foksieloy: Build G1 Foksieloy\n\tfoksieloy: Damn missclick.\n\n32) Draw5PlayAll: Move G1 Draw5playall Action\n\n33) foksieloy: Trade G1 B1 Foksieloy\n\n34) Draw5PlayAll: Build G1 Draw5playall\n\n35) foksieloy: Move B1 Foksieloy Annie\n\n36) Draw5PlayAll: Build G1 Action\n\n37) foksieloy: Build G2 Foksieloy\n\n38) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Action\n\n39) foksieloy: Sacrifice G3 Foksieloy\nBuild G3 Foksieloy\nBuild Y2 Annie\nBuild Y3 Foksieloy\n\n40) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Action\nBuild R2 Action\n\n41) foksieloy: Sacrifice Y3 Foksieloy\nMove G2 Foksieloy Annie\nDiscover G2 Annie Y3 Tibbers\nMove G2 Tibbers Draw5playall\nCatastrophe Draw5playall Green\n\n42) Draw5PlayAll: Move R2 Action Draw5playall\n\tDraw5PlayAll: The action system is crowded.\n\n43) foksieloy: Trade Y2 B2 Annie\n\tDraw5PlayAll: Oops... This time I can recover.\n\n44) Draw5PlayAll: Trade Y3 G3 Action\n\tDraw5PlayAll: Tibbers? What is that?\n\n45) foksieloy: Build Y2 Foksieloy\n\tfoksieloy: Annie and Tibbers https://s-media-cache-ak0.pinimg.com/736x/2d/89/2d/2d892d4cde04e7c4c34770207da65484.jpg\n\n46) Draw5PlayAll: Build Y3 Action\n\n47) foksieloy: Discover B2 Annie Y3 Tibbers\n\n48) Draw5PlayAll: Move G3 Action Draw5playall\n\n49) foksieloy: Discover B1 Annie G3 Gnar\n\n50) Draw5PlayAll: Build R2 Action\n\n51) foksieloy: Build B1 Gnar\n\n52) Draw5PlayAll: Move R2 Draw5playall Gnar\n\n53) foksieloy: Sacrifice Y2 Foksieloy\nMove B1 Gnar Draw5playall\nMove B1 Gnar Draw5playall\n\n54) Draw5PlayAll: Build R2 Gnar\n\n55) foksieloy: Move B2 Tibbers Draw5playall\nCatastrophe Draw5playall Blue\n\n56) Draw5PlayAll: Build R3 Gnar\n\n57) foksieloy: Build Y2 Annie\n\n58) Draw5PlayAll: Discover G1 Action B2 Icetraders\n\n59) foksieloy: Build Y3 Foksieloy\n\n60) Draw5PlayAll: Discover Y1 Draw5playall R3 Qo&#39;nos\n\n61) foksieloy: Discover Y2 Annie B3 Teemo\n\n62) Draw5PlayAll: Build Y3 Draw5playall\n\n63) foksieloy: Trade Y1 B1 Foksieloy\n\n64) Draw5PlayAll: Trade Y2 B2 Action\n\n65) foksieloy: Move B1 Foksieloy Annie\n\n66) Draw5PlayAll: Discover B2 Action Y1 Hyperspace\n\n67) foksieloy: Build Y2 Annie\n\n68) Draw5PlayAll: Move Y1 Draw5playall Icetraders\n\n69) foksieloy: Build B1 Annie\n\n70) Draw5PlayAll: Move R2 Action Annie\n\n71) foksieloy: Sacrifice Y2 Annie\nMove B1 Annie Action\nMove B1 Annie Action\n\tfoksieloy: I can&#39;t say I had a lot of games where the stash is about to get empty. :)\n\n72) Draw5PlayAll: Move Y3 Action Icetraders\n\tDraw5PlayAll: I can&#39;t say I had a lot of games where I managed to completely dominate the red economy.\n\n73) foksieloy: Sacrifice Y2 Annie\nDiscover Y2 Teemo G2 Valor\nMove B1 Action Valor\n\n74) Draw5PlayAll: Move B2 Hyperspace Gnar\n\tDraw5PlayAll: Fine then. Blow up a bunch of 1-pointers. I don&#39;t care.\n\n75) foksieloy: Build B2 Valor\n\n76) Draw5PlayAll: Sacrifice Y1 Icetraders\nMove B2 Gnar Annie\n\n77) foksieloy: Move B2 Valor Qo&#39;nos\n\n78) Draw5PlayAll: Build B3 Annie\n\n79) foksieloy: Build G1 Foksieloy\n\n80) Draw5PlayAll: Sacrifice Y3 Icetraders\nMove B3 Annie Foksieloy\nMove R3 Gnar Annie\nMove R3 Annie Foksieloy\nPass\n\tDraw5PlayAll: Thought so.\n\n81) foksieloy: Attack R3 Foksieloy\n\n82) Draw5PlayAll: Sacrifice R2 Annie\nAttack R3N Foksieloy\nAttack G3N Foksieloy\nPass\nPass\nPass\n\n\tfoksieloy: Ok, you have two r2, that is sufficient for you. GG!\n\tDraw5PlayAll: Checking ladder...\n\nHomeworlds Online (SDG# 30129)\nStarted: 2016.8.9, Ended: 2016.10.3\nParticipants: ts52 (S), Pheonixian (N)\nWinner: ts52\n\n1) Pheonixian: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) Pheonixian: Build G1 Pheonixian\n\tts52: Have a good game! FYI I&#39;m&#39; going off grid until Friday, but will be back online to make my move Friday night.\n\n4) ts52: Build G1 Ts52\n\tPheonixian: Okay, no problem. Have a good game!\n\n5) Pheonixian: Trade G1 B1 Pheonixian\n\n6) ts52: Build G1 Ts52\n\n7) Pheonixian: Build B1 Pheonixian\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\n9) Pheonixian: Trade B1 Y1 Pheonixian\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) Pheonixian: Build Y2 Pheonixian\n\n12) ts52: Move Y1 Ts52 Grover\n\n13) Pheonixian: Discover Y2 Pheonixian G3 Eden\n\n14) ts52: Build G1 Ts52\n\n15) Pheonixian: Build B1 Pheonixian\n\n16) ts52: Trade G1 R1 Ts52\n\n17) Pheonixian: Move B1 Pheonixian Eden\n\n18) ts52: Build G1 Grover\n\n19) Pheonixian: Build B2 Eden\n\n20) ts52: Build R1 Ts52\n\n21) Pheonixian: Trade B1 R1 Eden\n\n22) ts52: Move R1 Ts52 Grover\n\n23) Pheonixian: Build B1 Eden\n\n24) ts52: Build R2 Grover\n\n25) Pheonixian: Build R2 Eden\n\n26) ts52: Discover G1 Grover Y3 Bigbird\n\n27) Pheonixian: Discover B2 Eden G2 Spinach\n\n28) ts52: M R1 Grover Bigbird\n\n29) Pheonixian: Build B2 Spinach\n\n30) ts52: Sacrifice G3 Ts52\nBuild R2 Grover\nBuild R3 Ts52\nBuild R3 Bigbird\n\n31) Pheonixian: Move R2 Eden Pheonixian\n\n32) ts52: Trade R3 G3 Ts52\n\n33) Pheonixian: Sacrifice G3 Pheonixian\nBuild B3 Eden\nBuild R3 Pheonixian\nBuild R3 Eden\n\n34) ts52: Move R3 Bigbird Spinach\n\n35) Pheonixian: Sacrifice Y2 Eden\nDiscover B2 Spinach G3 Avocado\nMove B2 Spinach Avocado\n\n36) ts52: Build Y2 Grover\n\n37) Pheonixian: Build B3 Eden\n\n38) ts52: Build Y2 Grover\n\n39) Pheonixian: Trade B3 Y3 Eden\n\n40) ts52: Build G1 Ts52\n\n41) Pheonixian: Build Y3 Eden\n\n42) ts52: Sacrifice Y1 Grover\nMove R3 Spinach Avocado\n\n43) Pheonixian: Sacrifice Y3 Eden\nDiscover B2 Avocado G2 Lemon\nMove B2 Avocado Lemon\nDiscover B1 Eden G2 Apple\n\n44) ts52: Move R2 Grover Bigbird\n\n45) Pheonixian: Discover R2 Pheonixian B3 Icetower\n\n46) ts52: Move Y2 Grover Avocado\n\n47) Pheonixian: Trade B2 G2 Lemon\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Avocado\nBuild Y3 Grover\n\n49) Pheonixian: Move Y1 Pheonixian Eden\n\n50) ts52: Move Y3 Grover Icetower\n\n51) Pheonixian: Build B2 Apple\n\n52) ts52: Sacrifice R1 Bigbird\nAttack R2 Icetower\n\n53) Pheonixian: Sacrifice Y3 Eden\nMove B1 Apple Ts52\nMove B2 Apple Ts52\nMove B2 Lemon Ts52\nCatastrophe Ts52 Blue\n\n54) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y3 Icetower\n\n55) Pheonixian: Build B1 Eden\n\tBabamots: I&#39;ve been enjoying your game! Instead of continuing to lurk, I thought I&#39;d test whether observers really get to post comments.\n\tts52: Glad you&#39;re enjoying it. And yes, lurkers can comment!\n\n56) ts52: Trade G2 B2 Grover\n\tDraw5PlayAll: Very intense.. I like these ones where half the homeworld dies, yet said player has control.\r\n\r\n[Removed due to Prime Directive]\n\tBabamots: What does &quot;Removed due to Prime Directive&quot; mean? Was a comment censored somehow or is that what Draw5 actually typed? Maybe redaction due to interfering with the natural development of a &quot;culture&quot; (i.e. game)?\n\tts52: I&#39;m pretty sure that&#39;s just Draw5PlayAll&#39;s sense of humor coming through. :)\n\n57) Pheonixian: Move B1 Eden Lemon\n\tPheonixian: Indeed, I&#39;m pretty sure of that. It is amusing. \r\nThe game itself has been very interesting, thank you much for it, ts52. \n\n58) ts52: Move B2 Grover Bigbird\n\tts52: Agreed, this had been a very interesting game.\n\tDraw5PlayAll: Why the past tense? I see no immediate win for either side.\n\tts52: No, not over yet, I agree.\n\n59) Pheonixian: Build B2 Lemon\n\n60) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild B3 Bigbird\n\n61) Pheonixian: Move R1 Eden Lemon\n\n62) ts52: Sacrifice Y2 Grover\nMove B2 Bigbird Pheonixian\nMove B3 Bigbird Pheonixian\nCatastrophe Pheonixian Blue\n\n\tPheonixian: And I think that is game. I see no way to prevent destruction of the other half of my homeworld. Well played. \n\tts52: Thanks. Good game!\n\nHomeworlds Online (SDG# 30235)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.11, Ended: 2016.10.18\nParticipants: nycavri (S), Salmonax (N)\nWinner: nycavri\n\n1) Salmonax: Homeworld G1 R3 B3\n\n2) nycavri: Homeworld Y1 B2 G3\n\tSalmonax: Good luck, have fun\n\tnycavri: TaGG!\n\n3) Salmonax: Build B1 Salmonax\n\n4) nycavri: B G1 Nycavri\n\n5) Salmonax: Trade B1 G1 Salmonax\n\n6) nycavri: B G2 Nycavri\n\n7) Salmonax: Build G2 Salmonax\n\n8) nycavri: T G2 Y2 Nycavri\n\n9) Salmonax: Trade G2 Y2 Salmonax\n\n10) nycavri: B Y1 Nycavri\n\n11) Salmonax: Build G2 Salmonax\n\n12) nycavri: T Y1 B1 Nycavri\n\n13) Salmonax: Discover G1 Salmonax B2 Oats\n\n14) nycavri: Trade G1 R1 Nycavri\n\n15) Salmonax: Build Y1 Salmonax\n\n16) nycavri: B B1 Nycavri\n\n17) Salmonax: Build G1 Oats\n\n18) nycavri: Build G2 Nycavri\n\tSalmonax: Sorry for the delay\n\n19) Salmonax: Build G2 Oats\n\n20) nycavri: S Y2 Nycavri\nD G2 Nycavri Y3 Deacon\nDiscover G2 Deacon Y2 May\n\n21) Salmonax: Trade G1 R1 Oats\n\n22) nycavri: T B1 G1 Nycavri\n\n23) Salmonax: Build G3 Oats\n\n24) nycavri: S G3 Nycavri\nBuild G3 Nycavri\nB G3 May\nB B1 Nycavri\n\n25) Salmonax: Move Y1 Salmonax Oats\n\n26) nycavri: Sacrifice B1 Nycavri\nTrade G2 Y2 May\n\n27) Salmonax: Discover G2 Oats Y3 Pebble\n\n28) nycavri: Discover G1 Nycavri Y3 Mercury\n\n29) Salmonax: Sacrifice G2 Salmonax\nBuild Y1 Salmonax\nBuild Y3 Oats\n\n30) nycavri: Build G2 May\n\n31) Salmonax: Trade G3 R3 Oats\n\n32) nycavri: Move G2 May Salmonax\n\n\nHomeworlds Online (SDG# 30140)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.11, Ended: 2016.8.24\nParticipants: ladybugsfly (S), mxpf (N)\nWinner: ladybugsfly\n\n1) mxpf: Homeworld R3 B1 G3\n\n2) ladybugsfly: Homeworld G3 Y2 B3\n\tmxpf: Good luck! :-)\n\n3) mxpf: Build G1 Mxpf\n\tladybugsfly: You, too!\n\n4) ladybugsfly: Build B1 Ladybugsfly\n\n5) mxpf: Trade G3 B3 Mxpf\n\n6) ladybugsfly: Discover B1 Ladybugsfly Y1 Squirtle\n\n7) mxpf: Build G1 Mxpf\n\n8) ladybugsfly: Build B1 Ladybugsfly\n\n9) mxpf: Build B2 Mxpf\n\n10) ladybugsfly: Discover B1 Squirtle Y2 Wartortle\n\n11) mxpf: Trade B2 Y2 Mxpf\n\n12) ladybugsfly: Trade B1 G1 Wartortle\n\n13) mxpf: Trade G1 R1 Mxpf\n\n14) ladybugsfly: Build G1 Wartortle\n\n15) mxpf: Move Y2 Mxpf Wartortle\n\n16) ladybugsfly: Trade B3 R3 Ladybugsfly\n\n17) mxpf: Sacrifice R1 Mxpf\nAttack G1 Wartortle\n\n18) ladybugsfly: Build G2 Wartortle\n\n19) mxpf: Build G2 Mxpf\n\n20) ladybugsfly: Sacrifice G2 Wartortle\nBuild R1 Ladybugsfly\nBuild B1 Ladybugsfly\n\n21) mxpf: Build G2 Mxpf\n\n\tmxpf: Ah shoot, I screwed up, haha! Another?\n\tladybugsfly: Sure!\n\nHomeworlds Online (SDG# 30247)\nStarted: 2016.8.12, Ended: 2016.8.25\nParticipants: ladybugsfly (S), Steele (N)\nWinner: ladybugsfly\n\n1) Steele: H B3 G2 Y3\n\n2) ladybugsfly: Homeworld Y3 B1 G3\n\n3) Steele: B Y1 Steele\n\n4) ladybugsfly: Build G1 Ladybugsfly\n\n5) Steele: T Y1 G1 Steele\n\n6) ladybugsfly: Discover G1 Ladybugsfly B2 Diglett\n\n7) Steele: B Y1 Steele\n\n8) ladybugsfly: Trade G1 Y1 Diglett\n\n9) Steele: T Y1 R1 Steele\n\n10) ladybugsfly: Build G1 Ladybugsfly\n\n11) Steele: B Y1 Steele\n\n12) ladybugsfly: Move G1 Ladybugsfly Diglett\n\n13) Steele: D G1 Steele Y1 Alpha\n\n14) ladybugsfly: Build Y2 Diglett\n\n15) Steele: Build G1 Alpha\n\n16) ladybugsfly: Build G2 Ladybugsfly\n\n17) Steele: Discover G1 Alpha Y2 Beta\n\n18) ladybugsfly: Trade G2 R2 Ladybugsfly\n\n19) Steele: Build G2 Beta\n\n20) ladybugsfly: Discover Y2 Diglett R1 Dugtrio\n\n21) Steele: Discover G1 Alpha B2 Gamma\n\n22) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild Y1 Diglett\nBuild Y2 Diglett\nBuild Y3 Dugtrio\n\n23) Steele: Trade Y1 R1 Steele\n\n24) ladybugsfly: Sacrifice Y2 Diglett\nMove Y3 Dugtrio Steele\nMove Y2 Dugtrio Steele\n\n25) Steele: T Y3 G3 Steele\n\n26) ladybugsfly: Trade Y3 G3 Steele\n\n27) Steele: T G3 B3 Steele\n\n28) ladybugsfly: Trade G3 B3 Steele\n\n29) Steele: S B3 Steele\nT G1 R1 Beta\nT G2 R2 Beta\nT R1 Y1 Steele\nPass\n\n30) ladybugsfly: Move G1 Diglett Ladybugsfly\n\n31) Steele: B R1 Steele\n\n32) ladybugsfly: Build R2 Ladybugsfly\n\n33) Steele: B Y2 Steele\n\n34) ladybugsfly: T B3 R3 Steele\n\n35) Steele: B R3 Steele\nC Steele Red\n\n36) ladybugsfly: B Y3 Steele\nC Steele Y\n\n\nHomeworlds Online (SDG# 30119)\nStarted: 2016.8.12, Ended: 2016.8.12\nParticipants: Felix (S), Benjeski (N)\nWinner: Felix\n\n\tBenjeski: Sorry im a bit of a newb\r\n\n\nHomeworlds Online (SDG# 30227)\nStarted: 2016.8.12, Ended: 2016.8.12\nParticipants: Benjeski (S), ts52 (N)\nWinner: ts52\n\n\tBenjeski: Hey :D\n\nHomeworlds Online (SDG# 30134)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.12, Ended: 2016.8.15\nParticipants: wil (S), Benjeski (N)\nWinner: Benjeski\n\n1) Benjeski: Homeworld R3 G1 B3\n\n\nHomeworlds Online (SDG# 30173)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.12, Ended: 2016.8.24\nParticipants: Benjeski (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B2 G3\n\tBenjeski: Hey :D \n\n2) Benjeski: Homeworld R3 G1 B3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\n4) Benjeski: Build B1 Benjeski\n\n\n5) Simon: Build G1 Simon\n\tBenjeski: Sorry man its 1` in the morning where i live. see you in the morning\n\n6) Benjeski: Trade B1 Y1 Benjeski\n\n7) Simon: Trade G3 Y3 Simon\n\n8) Benjeski: Discover Y1 Benjeski G2 Sigma\n\n9) Simon: Discover G1 Simon B3 B3\n\n10) Benjeski: Build Y1 Sigma\n\n11) Simon: Build G2 B3\n\n\nHomeworlds Online (SDG# 30258)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.21, Ended: 2016.8.31\nParticipants: Draw5PlayAll (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\tSimon: Have fun :)\n\n3) Simon: Build G1 Simon\n\tDraw5PlayAll: I actually prefer a 1-3 more... Investment rarely works and it is super easy to throw an R2 at someone&#39;s investment.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Simon: Build Y1 Simon\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) Simon: Build Y2 Simon\n\n10) Draw5PlayAll: Build Y2 Draw5playall\n\n11) Simon: Discover Y2 Simon B2 B2\n\tSimon: The 1-3 seems best to me, yeah. You can park ships at 2-pointers of the same color, to deplete the color for a monopoly.\n\n12) Draw5PlayAll: Discover G1 Draw5playall B3 Neptune\n\n13) Simon: Discover Y1 Simon Y2 Y2\n\tDraw5PlayAll: *planet\n\n14) Draw5PlayAll: Move Y1 Draw5playall Neptune\n\n15) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 B2\nBuild Y3 Y2\n\n16) Draw5PlayAll: Move Y1 Neptune Y2\nCatastrophe Y2 Yellow\nPass\n\n17) Simon: Trade Y2 G2 B2\n\tDraw5PlayAll: That is not the way to monopolize yellow.\n\n18) Draw5PlayAll: Build G1 Neptune\n\n19) Simon: Build Y1 B2\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Simon: Trade Y3 R3 B2\n\n22) Draw5PlayAll: Build G2 Neptune\n\n23) Simon: Move R3 B2 Neptune\n\n24) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G2 Neptune B2 Action\nMove G1 Neptune Action\nPass Pass Pass\n\tDraw5PlayAll: Drats\n\n25) Simon: Attack G1 Neptune\n\n26) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n27) Simon: Build Y2 B2\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) Simon: Move Y1 B2 Neptune\n\n30) Draw5PlayAll: Trade G2 B2 Action\n\n31) Simon: Trade Y1 B1 Simon\n\n32) Draw5PlayAll: Build G1 Draw5playall\n\n33) Simon: Build G2 B2\n\n34) Draw5PlayAll: Trade B2 R2 Action\n\n35) Simon: Discover G2 B2 Y3 Y3\n\n36) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n37) Simon: Build Y1 B2\n\n38) Draw5PlayAll: Discover B1 Draw5playall G3 Earth\n\n39) Simon: Build G1 Y3\n\n40) Draw5PlayAll: Build B2 Earth\n\n41) Simon: Move G1 Y3 Draw5playall\n\n42) Draw5PlayAll: Trade G3 B3 Draw5playall\n\n43) Simon: Build Y2 Neptune\n\n44) Draw5PlayAll: Attack G1 Draw5playall\n\n45) Simon: Sacrifice G2 Y3\nBuild Y3 Simon\nBuild Y3 B2\n\tDraw5PlayAll: I did not type &quot;G1N&quot;, but it worked anyway.\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Draw5playall Neptune\nMove Y1 Neptune B2\nCatastrophe B2 Yellow\n\n47) Simon: Move Y3 Simon Action\n\n\tDraw5PlayAll: I really have nothing. One main problem is that I kept having to change the color of my initial large.\n\tSimon: gg still. Always happy to rematch!\n\nHomeworlds Online (SDG# 30293)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.24, Ended: 2016.9.16\nParticipants: zeder (S), mxpf (N)\nWinner: zeder\n\n1) mxpf: Homeworld B1 G3 Y3\n\n2) zeder: Homeworld Y2 B1 G3\n\tzeder: homeworld Y2 B1 G3 \n\n3) mxpf: Build Y1 Mxpf\n\n4) zeder: Build G1 Zeder\n\n5) mxpf: Trade Y1 G1 Mxpf\n\n6) zeder: Trade G1 Y1 Zeder\n\n7) mxpf: Build Y1 Mxpf\n\n8) zeder: Build G1 Zeder\n\n9) mxpf: Discover Y1 Mxpf G2 Monad\n\n10) zeder: Discover Y1 Zeder B3 Functor\n\n11) mxpf: Build Y1 Mxpf\n\n12) zeder: Sacrifice G1 Zeder\nBuild Y2 Functor\n\n13) mxpf: Trade Y1 R1 Mxpf\n\n14) zeder: Build G1 Zeder\n\n15) mxpf: Discover G1 Mxpf Y2 Dyad\n\tmxpf: I just realized you&#39;re my Morelli opponent on Little Golem!\n\tmxpf: trade y3 g3 mxpf\n\n16) zeder: Trade Y1 R1 Functor\n\n17) mxpf: Build Y1 Mxpf\n\tzeder: Small world!\n\tzeder: I am not feeling very happy about that Morelli game so far. :(\n\n18) zeder: Trade Y2 G2 Functor\n\n\nHomeworlds Online (SDG# 30303)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.24, Ended: 2016.9.8\nParticipants: ladybugsfly (S), mxpf (N)\nWinner: ladybugsfly\n\n1) mxpf: Homeworld Y1 G3 B3\n\n2) ladybugsfly: Homeworld B3 G2 Y3\n\tmxpf: I&#39;ll try to last longer this time!\n\n3) mxpf: Build B1 Mxpf\n\n4) ladybugsfly: Build Y1 Ladybugsfly\n\n5) mxpf: Build B1 Mxpf\n\n6) ladybugsfly: Trade Y1 B1 Ladybugsfly\n\n7) mxpf: Trade B1 R1 Mxpf\n\n8) ladybugsfly: B Y1 Ladybugsfly\n\n9) mxpf: Trade B1 Y1 Mxpf\n\n10) ladybugsfly: B Y2 Ladybugsfly\n\n11) mxpf: Build Y2 Mxpf\n\n12) ladybugsfly: Discover Y1 Ladybugsfly G1 Pikachu\n\n13) mxpf: Discover Y1 Mxpf B2 Cornholio\n\n14) ladybugsfly: B Y2 Pikachu\n\n15) mxpf: Move Y1 Cornholio Pikachu\n\n16) ladybugsfly: Sacrifice B1 Ladybugsfly\nTrade Y2 R2 Pikachu\n\tmxpf: Oh shoot. Almost built a y3 at my homeworld...but realized that you could sacrifice that y2 to trigger a catastrophe.\n\n17) mxpf: Move Y1 Pikachu Ladybugsfly\n\n18) ladybugsfly: Trade Y3 R3 Ladybugsfly\n\tladybugsfly: Almost catastrophied you with yellow two turns ago, but realized I&#39;d leave my homeworld without a big ship. ;)\n\tDraw5PlayAll: This is a problem.\n\n19) mxpf: Discover Y1 Ladybugsfly G1 Abraham\n\tmxpf: Here, let me help you with removing that big ship!\n\n20) ladybugsfly: D R2 Pikachu Y2 Riachu\n\tmxpf: (just kidding)\n\n21) mxpf: Build Y3 Abraham\n\n22) ladybugsfly: Build Y3 Pikachu\n\n23) mxpf: Move Y3 Abraham Riachu\n\n24) ladybugsfly: Build Y3 Ladybugsfly\n\n25) mxpf: Sacrifice R1 Mxpf\nAttack R2 Riachu\n\n26) ladybugsfly: S Y2 Ladybugsfly\nM Y1 Pikachu Riachu\nM Y1 Riachu Mxpf\n\n27) mxpf: Trade Y2 R2 Mxpf\n\n28) ladybugsfly: Move Y1 Mxpf Riachu\n\n29) mxpf: Move Y3 Riachu Abraham\n\tmxpf: I&#39;m guessing by your system names that you&#39;re a Go player? :-)\n\n30) ladybugsfly: M Y1 Riachu Abraham\n\tladybugsfly: You bet! Is your name Abraham?\n\tmxpf: Ha, actually reading a sci-fi  book by Daniel Abraham right now.\n\n31) mxpf: Discover Y3 Abraham B2 Scopuli\n\n32) ladybugsfly: Build R1 Ladybugsfly\n\n33) mxpf: Build Y2 Abraham\n\n34) ladybugsfly: Build Y2 Abraham\nCatastrophe Abraham Y\n\n35) mxpf: Trade Y3 G3 Scopuli\n\n36) ladybugsfly: Build Y1 Pikachu\n\n37) mxpf: Build G1 Scopuli\n\n38) ladybugsfly: D Y1 Pikachu B2 Squirtle\n\n39) mxpf: Trade G3 Y3 Scopuli\n\tladybugsfly: Whoops! Forgot to abandon Abraham to the hyperspatial flux the firs time.\n\n40) ladybugsfly: Move Y3 Pikachu Squirtle\n\n41) mxpf: Trade R2 Y2 Mxpf\n\n42) ladybugsfly: M Y1 Squirtle Mxpf\n\n43) mxpf: Sacrifice Y2 Mxpf\nMove R2 Riachu Mxpf\nDiscover Y3 Scopuli R1 Caliban\n\n44) ladybugsfly: Build Y1 Mxpf\n\tmxpf: Easily the grossest name for a planet\n\n\tmxpf: Gg!&#39;\n\tDraw5PlayAll: Huh? Was there a time forfeit?\n\nHomeworlds Online (SDG# 30297)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.25, Ended: 2016.8.28\nParticipants: sompm (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 30291)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.25, Ended: 2016.9.12\nParticipants: Felix (S), Simon (N)\nWinner: Felix\n\n1) Simon: Homeworld R1 B3 G3\n\n2) Felix: H B1 R2 G3\n\tSimon: Have fun :)\n\tFelix: You too! Good luck :) hey, how do you set it up so that your open challenge automatically renews after someone accepts it? Make sense? I&#39;m tired of having to set up new challenges each time...\n\tSimon: The feature is called Standing challenge, accessible from main navigation -&gt; Challenges -&gt; Manage standing challenges, near the top.\n\tDraw5PlayAll: Though personally I dislike it because if I go AFK unexpectedly for long periods of time, I can accumulate vast numbers of time forfeits. Just look at wil.\n\n3) Simon: Build G1 Simon\n\n4) Felix: Build G1 Felix\n\tFelix: Ah, that&#39;s it! Thanks for the tip mate.\n\n5) Simon: Trade G1 R1 Simon\n\n6) Felix: Trade G1 B1 Felix\n\n7) Simon: Build R1 Simon\n\n8) Felix: Build B1 Felix\n\n9) Simon: Build G1 Simon\n\n10) Felix: Build G1 Felix\n\n11) Simon: Trade G1 Y1 Simon\n\n12) Felix: Trade G1 Y1 Felix\n\n13) Simon: Discover R1 Simon R2 R2\n\n14) Felix: Discover B1 Felix R3 Carnagie\n\n15) Simon: Build R2 Simon\n\n16) Felix: Build G1 Felix\n\n17) Simon: Discover R1 Simon G2 G2\n\n18) Felix: Discover G1 Felix R3 Keepaway\n\n19) Simon: Build R3 G2\n\n20) Felix: Build B2 Felix\n\n21) Simon: Trade R2 B2 Simon\n\n22) Felix: Trade B2 R2 Felix\n\n23) Simon: Move B2 Simon G2\n\n24) Felix: Sacrifice G1 Keepaway\nBuild R3 Felix\n\n25) Simon: Trade R3 Y3 G2\n\n26) Felix: Discover R2 Felix R3 Pax\n\n27) Simon: Build B2 G2\n\n28) Felix: Build G1 Felix\n\n29) Simon: Trade B2 Y2 G2\n\n30) Felix: Move G3 Felix Carnagie\n\n31) Simon: Build B2 G2\n\n32) Felix: Build B2 Carnagie\n\n33) Simon: Discover B2 G2 G3 G3\n\n34) Felix: Trade B2 Y2 Carnagie\n\n35) Simon: Build B2 G3\n\n36) Felix: Build B3 Carnagie\n\n37) Simon: Sacrifice Y2 G2\nMove B2 G3 Felix\nMove B2 G3 Felix\nCatastrophe Felix B\n\n38) Felix: M B3 Carnagie Felix\n\n39) Simon: Move Y3 G2 Pax\n\n40) Felix: Sacrifice Y2 Carnagie\nMove R3 Felix Simon\nMove B3 Felix Simon\n\tDraw5PlayAll: Klingon invasion!\n\n\tFelix: *Closes eyes tightly and prays this will work*\n\tSimon: gg\n\tFelix: It was touch and go there at the end. Good game!\n\tSimon: &quot;A catastrophe occurred in the Felix system. All conversion (B) technology was lost.&quot;\r\nThis would have made sense only if I could move the reds, then build 2 reds afterwards. But there would have been only 1 in the stash, that&#39;s wasn&#39;t a followup thread. :-)\n\tFelix: Yeah, it probably would have been wiser to try to capture one or more of my reds before connecting our systems with that catastrophe. It ended up working in my favor to have our systems connected like that...\n\tDraw5PlayAll: I hate connecting the systems and I prefer to trigger the one that will not cause a connection.\n\nHomeworlds Online (SDG# 30309)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.25, Ended: 2016.9.18\nParticipants: mxpf (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) mxpf: Homeworld Y2 G3 B3\n\n3) Felix: Build G1 Felix\n\tFelix: Hi, good luck and have fun!\n\n4) mxpf: Build B1 Mxpf\n\n5) Felix: Trade G1 Y1 Felix\n\n6) mxpf: Trade B1 R1 Mxpf\n\n7) Felix: Build Y1 Felix\n\n8) mxpf: Build R1 Mxpf\n\tmxpf: thanks! you too\n\n9) Felix: Build Y1 Felix\n\n10) mxpf: Build R2 Mxpf\n\n11) Felix: Discover Y1 Felix G2 Darrow\n\n12) mxpf: Trade R2 Y2 Mxpf\n\n13) Felix: Build Y2 Darrow\n\n14) mxpf: Discover Y2 Mxpf G1 Clarence\n\n15) Felix: Trade Y1 B1 Felix\n\n16) mxpf: Build R2 Mxpf\n\n17) Felix: Move B1 Felix Darrow\n\n18) mxpf: Move Y2 Clarence Darrow\n\n19) Felix: Sacrifice G3 Felix\nBuild Y1 Darrow\nBuild Y3 Felix\nBuild Y3 Felix\nCatastrophe Darrow Yellow\n\n20) mxpf: Discover R1 Mxpf Y1 Cleveland\n\n21) Felix: Trade Y3 G3 Felix\n\n22) mxpf: Trade B3 G3 Mxpf\n\n23) Felix: Build Y1 Felix\n\n24) mxpf: Sacrifice G3 Mxpf\nBuild R2 Cleveland\nBuild R2 Mxpf\nBuild R3 Cleveland\n\n25) Felix: Trade G3 R3 Felix\n\n26) mxpf: Discover R3 Cleveland Y2 Springfield\n\n27) Felix: M R3 Felix Darrow\n\n\tFelix: That&#39;s a shame!\n\tDraw5PlayAll: Both of you had a bluebird mistake.\n\tFelix: But he had no yellow, so mine was no mistake\n\tDraw5PlayAll: Was there a reason you neglected to sac Y3@Felix and move the red three steps to mxpf, winning instantly?\n\tFelix: Suspense? :)\n\nHomeworlds Online (SDG# 30319)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.26, Ended: 2016.9.27\nParticipants: Felix (S), ladybugsfly (N)\nWinner: Felix\n\n1) ladybugsfly: Homeworld Y3 G2 B3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) ladybugsfly: Build B1 Ladybugsfly\n\tFelix: Welcome! First game?\n\n4) Felix: Build G1 Felix\n\n5) ladybugsfly: Discover B1 Ladybugsfly G1 Squirtle\n\tladybugsfly: Nope, I&#39;ve played in person a bit, but was just recently introduced to SuperDuper. :)\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: Excellent. Well have fun and good luck!\n\n7) ladybugsfly: Build B1 Ladybugsfly\n\n8) Felix: Build Y1 Felix\n\n9) ladybugsfly: Discover B1 Ladybugsfly G1 Wartortle\n\n10) Felix: Trade Y1 B1 Felix\n\n11) ladybugsfly: Build B2 Squirtle\n\n12) Felix: Build B2 Felix\n\n13) ladybugsfly: Build B2 Wartortle\n\n14) Felix: Trade B2 Y2 Felix\n\n15) ladybugsfly: Trade B2 Y2 Squirtle\n\n16) Felix: Discover B1 Felix G2 Rim\n\n17) ladybugsfly: Trade B1 R1 Wartortle\n\n18) Felix: Trade Y1 R1 Felix\n\n19) ladybugsfly: Build R2 Wartortle\n\n20) Felix: Move R1 Felix Rim\n\n21) ladybugsfly: B Y1 Squirtle\n\n22) Felix: Build R2 Rim\n\n23) ladybugsfly: Trade R1 Y1 Wartortle\n\n24) Felix: Trade R2 Y2 Rim\n\n25) ladybugsfly: Build B1 Ladybugsfly\n\n26) Felix: Build B2 Rim\n\n27) ladybugsfly: Trade B3 G3 Ladybugsfly\n\n28) Felix: Discover B2 Rim G1 Pax\n\n29) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild B2 Wartortle\nBuild B3 Squirtle\nBuild B3 Ladybugsfly\n\n30) Felix: Build G2 Felix\n\n31) ladybugsfly: Sacrifice Y2 Squirtle\nDiscover B3 Squirtle Y2 Blastoise\nMove Y1 Squirtle Blastoise\n\n32) Felix: Build G3 Felix\n\n33) ladybugsfly: Sacrifice B1 Squirtle\nTrade Y1 G1 Blastoise\n\n34) Felix: Sacrifice G2 Felix\nBuild B1 Pax\nBuild Y1 Rim\n\n35) ladybugsfly: Trade B1 R1 Ladybugsfly\n\n36) Felix: Sacrifice G3 Felix\nBuild Y1 Rim\nBuild Y3 Felix\nBuild Y3 Felix\n\n37) ladybugsfly: Sacrifice B2 Wartortle\nTrade B3 G3 Blastoise\nTrade B3 G3 Ladybugsfly\n\n38) Felix: Build G2 Felix\n\n39) ladybugsfly: Move G3 Blastoise Felix\n\n40) Felix: Attack G3 Felix\n\n41) ladybugsfly: Move G1 Blastoise Felix\nCatastrophe Felix G\n\n42) Felix: Trade B2 Y2 Pax\n\n43) ladybugsfly: Discover Y1 Wartortle G2 Pikachu\n\n44) Felix: Move Y2 Felix Pikachu\n\n45) ladybugsfly: Move Y1 Pikachu Wartortle\n\n46) Felix: Build B1 Pax\n\n47) ladybugsfly: Move Y1 Wartortle Rim\nCatastrophe Rim Y\n\n48) Felix: B R2 Rim\n\n49) ladybugsfly: Trade R2 Y2 Wartortle\n\n50) Felix: Trade R1 Y1 Rim\n\n51) ladybugsfly: Build Y1 Wartortle\n\n52) Felix: Trade Y3 G3 Felix\n\n53) ladybugsfly: Build R1 Ladybugsfly\n\n54) Felix: Build G1 Felix\n\n55) ladybugsfly: M R1 Ladybugsfly Wartortle\n\n56) Felix: Build G3 Felix\n\n57) ladybugsfly: Build R2 Wartortle\n\n58) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Pikachu\nBuild Y3 Rim\n\n59) ladybugsfly: Discover R1 Wartortle B2 Riachu\n\n60) Felix: Move Y3 Rim Wartortle\n\n61) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild R2 Wartortle\nBuild R3 Wartortle\nBuild R3 Ladybugsfly\n\n62) Felix: Move R2 Rim Wartortle\nCatastrophe Wartortle Red\n\n63) ladybugsfly: Move R3 Ladybugsfly Wartortle\n\n64) Felix: Move Y3 Wartortle Rim\n\n65) ladybugsfly: Move R3 Wartortle Rim\n\n66) Felix: Sacrifice Y3 Rim\nMove B1 Pax Ladybugsfly\nMove B1 Pax Ladybugsfly\nMove Y2 Pax Ladybugsfly\n\n67) ladybugsfly: S Y2 Wartortle\nM R3 Rim Wartortle\nM R3 Wartortle Ladybugsfly\n\n68) Felix: Sacrifice G3 Felix\nBuild Y2 Ladybugsfly\nBuild Y3 Ladybugsfly\nBuild B2 Ladybugsfly\nCatastrophe Ladybugsfly Yellow\n\n69) ladybugsfly: B B3 Wartortle\n\n70) Felix: Trade B2 R2 Ladybugsfly\n\n71) ladybugsfly: Attack R2 Ladybugsfly\n\n72) Felix: Trade G3 R3 Felix\n\n73) ladybugsfly: Sacrifice R2 Ladybugsfly\nAttack B1 Ladybugsfly\nAttack B1 Ladybugsfly\n\n74) Felix: B B2 Rim\n\n75) ladybugsfly: M B3 Wartortle Pikachu\n\n76) Felix: Build G1 Felix\n\n77) ladybugsfly: Build B3 Pikachu\n\n78) Felix: Build G3 Felix\n\n79) ladybugsfly: S R1 Riachu\nA Y2 Pikachu\n\n80) Felix: Sacrifice Y3 Felix\nMove G1 Felix Ladybugsfly\nMove G1 Felix Ladybugsfly\nMove G3 Felix Ladybugsfly\nCatastrophe Ladybugsfly Green\n\n\tFelix: Thanks, you too! You played very well!\n\tFelix: I&#39;m happy to rematch any time.\n\nHomeworlds Online (SDG# 30316)\nVariants: &quot;Hard time&quot;\nStarted: 2016.8.26, Ended: 2016.9.9\nParticipants: mxpf (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) mxpf: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) mxpf: Build G1 Mxpf\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) mxpf: Trade G1 Y1 Mxpf\n\n7) Draw5PlayAll: Build Y2 Draw5playall\n\n8) mxpf: Build Y2 Mxpf\n\n9) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n10) mxpf: Discover Y1 Mxpf B3 Bootstrap\n\n11) Draw5PlayAll: Discover B2 Draw5playall G2 Keeper\n\n12) mxpf: Discover Y2 Mxpf G3 Cyclades\n\tDraw5PlayAll: What made you choose bootstrap as your system name?\n\tmxpf: we were just kicking off a bootstrap project at work, it was on my mind\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\n14) mxpf: Build G1 Mxpf\n\tmxpf: Why do you ask? :-)\n\n15) Draw5PlayAll: Build B1 Keeper\n\n16) mxpf: Build Y2 Cyclades\n\n17) Draw5PlayAll: Move Y2 Draw5playall Keeper\n\n18) mxpf: Trade G1 R1 Mxpf\n\n19) Draw5PlayAll: Build Y3 Draw5playall\n\n20) mxpf: Move Y2 Cyclades Keeper\n\n21) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n22) mxpf: Sacrifice G3 Mxpf\nBuild Y1 Keeper\nBuild Y3 Bootstrap\nBuild Y3 Cyclades\n\n23) Draw5PlayAll: Sacrifice Y2 Keeper\nMove B2 Keeper Cyclades\nMove B2 Cyclades Mxpf\n\n24) mxpf: Move Y3 Bootstrap Mxpf\n\n25) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack R1 Mxpf\n\n26) mxpf: Trade Y3 R3 Mxpf\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Mxpf\nBuild R2 Mxpf\nPass\nCatastrophe Mxpf Red\n\tDraw5PlayAll: Wrong choice!\n\n\nHomeworlds Online (SDG# 30320)\nStarted: 2016.8.27, Ended: 2016.9.7\nParticipants: Steele (S), ladybugsfly (N)\nWinner: Steele\n\n1) ladybugsfly: H Y2 B1 G3\n\n2) Steele: Homeworld G3 B2 Y3\n\n3) ladybugsfly: Build G1 Ladybugsfly\n\n4) Steele: Build Y1 Steele\n\n5) ladybugsfly: Discover G1 Ladybugsfly Y3 Snorlax\n\n6) Steele: Discover Y1 Steele G1 Alpha\n\n7) ladybugsfly: Build G1 Ladybugsfly\n\n8) Steele: B Y1 Steele\n\n9) ladybugsfly: Discover G1 Ladybugsfly Y3 Lapras\n\n10) Steele: Trade Y1 B1 Steele\n\n11) ladybugsfly: B G2 Ladybugsfly\n\n12) Steele: D B1 Steele Y1 Beta\n\n13) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G2 Lapras\nBuild G2 Snorlax\nBuild G3 Ladybugsfly\n\n14) Steele: Build Y1 Steele\n\n15) ladybugsfly: T G2 Y2 Ladybugsfly\n\n16) Steele: B Y2 Alpha\n\n17) ladybugsfly: D G1 Snorlax B1 Squirtle\n\n18) Steele: Trade Y1 R1 Steele\n\n19) ladybugsfly: Trade G1 R1 Squirtle\n\n20) Steele: Trade B1 G1 Beta\n\n21) ladybugsfly: Discover G1 Lapras Y1 Eevee\n\n22) Steele: Build G2 Beta\n\n23) ladybugsfly: Build G3 Ladybugsfly\n\n24) Steele: Discover G2 Beta B3 Gamma\n\n25) ladybugsfly: Discover Y2 Ladybugsfly B3 Drowzee\n\n26) Steele: Sacrifice Y3 Steele\nMove G1 Beta Gamma\nMove G1 Gamma Ladybugsfly\nMove G2 Gamma Ladybugsfly\nCatastrophe Ladybugsfly G\n\n\nHomeworlds Online (SDG# 30318)\nVariants: &quot;Unrated&quot;\nStarted: 2016.8.29, Ended: 2016.9.27\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Here we go again :) Have fun\n\tDraw5PlayAll: A fortress.\n\n4) Felix: Build G1 Felix\n\tFelix: It&#39;s actually my favorite opening, but it&#39;s generally considered \r\nweaker, so I don&#39;t use it as often as I&#39;d like.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Felix: Build G1 Felix\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Felix: Trade G1 R1 Felix\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 Keeper\n\n12) Felix: Build R1 Felix\n\n13) Draw5PlayAll: Build Y1 Draw5playall\n\n14) Felix: Build Y2 Felix\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) Felix: Discover Y1 Felix G1 Rim\n\n17) Draw5PlayAll: Move Y2 Draw5playall Keeper\n\n18) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Rim\nBuild R2 Felix\n\n19) Draw5PlayAll: Build Y3 Keeper\n\n20) Felix: Trade Y3 G3 Felix\n\n21) Draw5PlayAll: Trade Y3 R3 Keeper\n\n22) Felix: Build Y3 Felix\n\n23) Draw5PlayAll: Build Y3 Keeper\n\n24) Felix: T Y3 B3 Felix\n\n25) Draw5PlayAll: Build R2 Keeper\n\n26) Felix: Move R1 Felix Rim\n\n27) Draw5PlayAll: Discover Y3 Keeper B1 Action\n\n28) Felix: Sacrifice Y1 Rim\nDiscover Y2 Felix G1 Pax\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: Build G2 Felix\n\n31) Draw5PlayAll: Move R2 Keeper Action\n\n32) Felix: Move B3 Felix Pax\n\n33) Draw5PlayAll: Discover G1 Draw5playall B2 Draw2useem\n\n34) Felix: Discover G2 Felix B1 Arakkis\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\n36) Felix: Build G3 Arakkis\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Keeper\nBuild R3 Action\n\n38) Felix: Sacrifice G3 Arakkis\nBuild G3 Arakkis\nBuild R3 Rim\nBuild B2 Pax\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Keeper\nBuild Y3 Action\n\n40) Felix: Move R3 Rim Draw2useem\n\tDraw5PlayAll: Too many ships, too small of an area. Perhaps I should sac a Y1 and develop a colony there?\n\n41) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover G1 Draw2useem Y1 Newrule\n\tFelix: There are quite a few ships out here... But I could always use more :)\n\n42) Felix: Sacrifice Y2 Pax\nDiscover G2 Arakkis Y2 Dune\nMove G3 Arakkis Dune\n\tDraw5PlayAll: Oh, so systems are sorted alphabetically.\n\n43) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild G2 Newrule\nBuild B1 Keeper\n\tFelix: Huh. That&#39;s new to me too.\n\n44) Felix: Move G3 Dune Newrule\n\tDraw5PlayAll: Weak factory, if you ask me. More for the green teleportation, but with an extra blue on the side.\n\n45) Draw5PlayAll: Discover G2 Newrule B2 Spacejackpot\n\tFelix: Clever move! I would have had you in the next two moves if you hadn&#39;t evacuated your green.\n\n46) Felix: Sacrifice R1 Felix\nAttack G1 Newrule\n\tDraw5PlayAll: Now I do that to you.\n\n47) Draw5PlayAll: Move R3 Action Dune\n\n48) Felix: Sacrifice G2 Dune\nBuild G2 Felix\nBuild R1 Draw2useem\n\n49) Draw5PlayAll: Move Y3 Action Spacejackpot\n\n50) Felix: Move G1 Newrule Draw2useem\n\n51) Draw5PlayAll: Sacrifice Y2 Keeper\nMove B1 Keeper Pax\nMove B1 Keeper Pax\nCatastrophe Pax B\nPass\nPass\nPass\n\n52) Felix: Sacrifice G3 Felix\nBuild G1 Draw2useem\nBuild G3 Felix\nBuild Y2 Rim\n\n53) Draw5PlayAll: Discover R3 Dune B1 Icetraders\n\tDraw5PlayAll: I needed to get some ships in the bank!!\n\n54) Felix: Move Y2 Rim Draw2useem\n\tFelix: It was getting pretty thin!\n\n55) Draw5PlayAll: Sacrifice G2 Spacejackpot\nBuild Y2 Action\nPass\n\tDraw5PlayAll: This only backfired...\n\n56) Felix: Build G2 Draw2useem\n\tDraw5PlayAll: Taking advantage  of the fact that you have nowhere safe to build that yellow!\n\n57) Draw5PlayAll: Trade G3 B3 Draw5playall\n\tFelix: That&#39;s a great strategic technique, if you can tell that the opponent has nowhere safe to build, you can guarantee yourself the piece on your next move.\n\n58) Felix: Build G3 Newrule\n\tDraw5PlayAll: Green Teleportaion and trading in one move!\n\n59) Draw5PlayAll: Move Y3 Action Felix\n\n60) Felix: Attack Y3 Felix\n\tFelix: Good threat anticipation. But now you have no ability to build!\n\n61) Draw5PlayAll: Sacrifice Y3 Spacejackpot\nMove Y2 Action Felix\nMove Y1 Keeper Action\nMove Y1 Action Felix\nCatastrophe Felix Y\n\tDraw5PlayAll: GRRRR.\n\n62) Felix: Trade R1 B1 Draw2useem\n\n63) Draw5PlayAll: Trade R2 B2 Action\n\n64) Felix: T G2 B2 Felix\n\n65) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n66) Felix: Build Y1 Draw2useem\n\n67) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n68) Felix: Build Y1 Draw2useem\n\n69) Draw5PlayAll: Trade Y3 B3 Draw5playall\n\n70) Felix: Sacrifice Y3 Rim\nMove B1 Draw2useem Draw5playall\nMove B2 Felix Keeper\nMove B2 Keeper Draw5playall\nCatastrophe Draw5playall Blue\n\n71) Draw5PlayAll: Sacrifice B2 Action\nTrade R3 Y3 Keeper\nPass\n\n72) Felix: Sacrifice Y2 Draw2useem\nMove R3 Draw2useem Draw5playall\nMove R2 Felix Draw5playall\nCatastrophe Draw5playall Red\n\n\tDraw5PlayAll: Our planet has become inhospitable and we rigged the Auto-Destruct to explode the empty starship if it was not destroyed by our [CONFIDENTIAL INFORMATION NOT DISCLOSED]\n\tFelix: We are glad to hear that we helped solve your tribble problem. However, when our first aid vessels entered the sector they discovered that the small red star remaining was also infested with tribbles. Our medical ships are also equipped with nuclear warheads, so we went ahead and took care of the tribble trouble for you. Unfortunately, the extermination process also destroyed your remaining home planet. Sorry about that...\n\tDraw5PlayAll: We do not mind. Anyone still alive at the time of the first catastrophe was already in the Galaxy-class warp ship when the second hit. We need a new planet to settle on, but we can survive on the large ship for a few years.\r\n\r\nI wish the defense system was better, but every time they try to give me one, it repels our own ships during tests.\n\nHomeworlds Online (SDG# 30327)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2016.8.31, Ended: 2016.9.29\nParticipants: MagicJohn (S), Felix (W), Draw5PlayAll (N), mxpf (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\tDraw5PlayAll: This is the political chatter game and NOT the team game.\n\n2) mxpf: Homeworld G2 B3 Y3\n\n3) MagicJohn: Homeworld Y1 B2 G3\n\n4) Felix: Homeworld R2 G3 B3\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) mxpf: Build Y1 Mxpf\n\n7) MagicJohn: Build G1 Magicjohn\n\tmxpf: So...what does everything think about Larreta&#39;s plan to urbanize Villa 31? I&#39;m all for it, myself.\n\tmxpf: *everyone DANG THESE CHUBBY FINGERS\n\tDraw5PlayAll: Felix is clearly the best player in the group. Be careful before he denies each of us of a different economy and then proceeds to build every legal R3 not used as a star.\n\tMagicJohn: build g1 magicjohn\n\n8) MagicJohn: Trade G3 R3 Magicjohn\n\tDraw5PlayAll: I wonder if we should all target Felix though... After all, he can probably find ways of snagging all R3 ships and then implode our armies, dominating the battlefield.\r\n\r\nI think we should not do this. After all, it is too risky for the rest of us. What if someone has to consistently make the big sacs and send in 2s and 3s while others send 1s and 2s? An anti-Felix conspiracy, or any other player for that matter, would cause some game-theoretical issues.\r\n\r\nI have only one suggestion: Don&#39;t panic.\n\tDraw5PlayAll: Really though, if two people are going to cooperate to destroy a third, MAKE SURE that both people are giving up an equal amount. Otherwise the deal could flop: &quot;Ha! Why don&#39;t you just lose those ships instead!&quot; Or &quot;Ha! I will not give up an R3 &amp; Y3 for this!&quot;\n\tMagicJohn: What I intended to initiate was a  Homeworlds game where players would form alliances and negotiate actions that could influence the outcome of games. Perhaps my languaging (political chatter) was misleading...... Sorry if it was. Real-life political discussion was not my intent. Given what is now happening in the presidential race, I&#39;m not at all sure rational discussion or discourse is even possible. The Villa 31 situation is well discussed at http://www.bubblear.com/how-viable-is-the-villa-31-urbanization-plan-a-shantytown-delegate-weighs-in/. Sounds like another country is having to deal with the gaps between ideas, proposals, promises, and implementation of legislation...... with a tad of corruption tossed in on the side. Good luck with that...    \n\tDraw5PlayAll: Exactly the point of my last 2 posts\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tFelix: Oops. I didn&#39;t want that to happen! Sorry for timing out, everyone, but have fun!\n\tDraw5PlayAll: This game just got a LOT more interesting.\n\tDraw5PlayAll: When we sighted the sleeper ship, our planetary empire immediately passed laws that would support the education of highly intelligent members of our species, so that we could build the biggest ships faster and claim the sleeper.\n\n10) mxpf: Build Y1 Mxpf\n\tMagicJohn: Note to battleship commanders: Please initiate beautification project and paint ships an eye-catching tone of red. \n\n11) MagicJohn: Build R1 Magicjohn\n\tDraw5PlayAll: We are not interested in &quot;looking nice&quot;. Instead we wish to peacefully explore the Galaxy.\n\tMagicJohn: First impressions are important....\n\tDraw5PlayAll: We disagree, especially when large-scale and important galactic success vs failure is at stake.\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\tmxpf: oh! Look at that! That sleeper is so close to our system! We must away to the stars, my people.\n\tDraw5PlayAll: So, how do you like the idea of each person throwing a B1 at the system and destroying the sleeper? After all, there is only a 1/3 chance you will get it.\n\tDraw5PlayAll: Plus the system is green so if someone bails, you just build another blue\n\tMagicJohn: We will consider your plan carefully..\n\n13) mxpf: Discover Y1 Mxpf B1 Monad\n\n14) MagicJohn: Trade R3 Y3 Magicjohn\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\tmxpf: Indeed, I am considering the pants off of that plan.\n\n16) MagicJohn: Build Y2 Magicjohn\n\n17) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\tFelix: Enjoy fighting over my corpse, folks!\n\tDraw5PlayAll: *ping*\n\tDraw5PlayAll: I have intercepted  message from one of the crew on mxpf&#39; ships.\r\n\r\nLife support systems are failing! We know you have the fix. Can you please assist?\r\n\r\nFascinating.\n\n18) MagicJohn: Discover Y2 Magicjohn G3 Kennedy\n\tMagicJohn: good grief.....\n\n19) Draw5PlayAll: Discover B2 Draw5playall G2 Keeper\n\tDraw5PlayAll: This game is pointless now\n\n20) MagicJohn: Build Y2 Kennedy\n\n21) Draw5PlayAll: Move Y1 Draw5playall Keeper\n\tMagicJohn: Well, there are still two races trying to take over the universe,,,,,\n\n22) MagicJohn: Move Y2 Kennedy Keeper\n\n23) Draw5PlayAll: Sacrifice Y1 Keeper\nDiscover B2 Keeper G1 Earth\n\n24) MagicJohn: Move Y2 Keeper Earth\n\tDraw5PlayAll: The whole intent of your game was ruined though. Now we have no diplomacy or making deals. But we still have 5 of every piece. This will make for a crowded Galaxy.\n\tMagicJohn: What do you want to do??\n\tDraw5PlayAll: Your move\n\n25) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove B2 Earth Mxpf\n\n26) MagicJohn: Build Y1 Earth\n\n27) Draw5PlayAll: Build B1 Mxpf\n\n28) MagicJohn: Build R1 Magicjohn\n\n29) Draw5PlayAll: Trade B2 R2 Mxpf\n\n\tMagicJohn: Sorry, 15 year old pup just died and our &quot;pack&quot; is taking some time off....\n\tDraw5PlayAll: This game was boring. We should do another with 4/4/10 time control\n\tDraw5PlayAll: I knew it was just a matter of.... time... before something like this would happen.\r\nI have a new challenge with a better time control and not using Hard Time.\n\nHomeworlds Online (SDG# 30357)\nVariants: &quot;Hard time&quot;\nStarted: 2016.9.2, Ended: 2016.11.4\nParticipants: Pheonixian (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3 Null\nPass\n\n2) Pheonixian: Homeworld B1 R2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) Pheonixian: Build G1 Pheonixian\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Pheonixian: Trade G1 Y1 Pheonixian\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Pheonixian: Build G1 Pheonixian\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Pheonixian: Trade G1 R1 Pheonixian\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 Earth\n\n12) Pheonixian: Build G1 Pheonixian\n\n13) Draw5PlayAll: Build B1 Earth\n\n14) Pheonixian: Discover G1 Pheonixian B3 Apple\n\n15) Draw5PlayAll: Build B2 Earth\n\n16) Pheonixian: Build G1 Apple\n\n17) Draw5PlayAll: Trade B2 R2 Earth\n\n18) Pheonixian: Trade G1 R1 Apple\n\n19) Draw5PlayAll: Build B2 Earth\n\n20) Pheonixian: Build G1 Pheonixian\n\n21) Draw5PlayAll: Build G1 Draw5playall\n\n22) Pheonixian: Sac G3 Pheonixian\nBuild G2 Apple\nBuild G2 Apple\nBuild G3 Pheonixian\n\n23) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\n24) Pheonixian: Build G3 Pheonixian\n\n25) Draw5PlayAll: Trade B2 Y2 Earth\n\n26) Pheonixian: Trade G3 B3 Pheonixian\n\n27) Draw5PlayAll: Build G3 Icehouse\n\n28) Pheonixian: Trade G2 B2 Apple\n\n29) Draw5PlayAll: Sacrifice G3 Icehouse\nBuild G2 Draw5playall\nBuild G3 Icehouse\nBuild Y1 Earth\n\n30) Pheonixian: Trade G2 Y2 Apple\n\n31) Draw5PlayAll: Build R2 Earth\n\n32) Pheonixian: Sacrifice G3 Pheonixian\nBuild G2 Apple\nBuild G3 Pheonixian\nBuild R3 Apple\n\n33) Draw5PlayAll: Sacrifice Y2 Earth\nMove B1 Earth Apple\nMove B1 Earth Apple\nCatastrophe Apple Blue\n\n34) Pheonixian: Build Y2 Pheonixian\n\n35) Draw5PlayAll: Sacrifice G3 Icehouse\nBuild Y2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Earth\n\n36) Pheonixian: Discover G1 Pheonixian Y3 Sol\n\n37) Draw5PlayAll: Move Y2 Draw5playall Icehouse\n\tDraw5PlayAll: Wanted the Y3 at Earth\n\n38) Pheonixian: Build G1 Pheonixian\n\tDraw5PlayAll: Ah, this Investment thing.\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild Y3 Icehouse\n\tPheonixian: I&#39;m not sure that&#39;s what I was going for, but it was where I ended up. \n\n40) Pheonixian: Build G3 Sol\n\n41) Draw5PlayAll: Trade G1 B1 Icehouse\n\n42) Pheonixian: Discover G3 Sol B2 Icecube\n\n43) Draw5PlayAll: Sacrifice B1 Icehouse\nTrade R2 B2 Earth\n\n44) Pheonixian: Build G1 Icecube\n\n45) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 Earth\nBuild R1 Earth\n\n46) Pheonixian: Trade G1 B1 Icecube\n\n47) Draw5PlayAll: Move B2 Earth Sol\n\n48) Pheonixian: Move B3 Pheonixian Sol\n\tDraw5PlayAll: Excuse me, I need access to Sol. This will only take a moment.\n\n49) Draw5PlayAll: Discover B2 Sol G1 G1\n\n50) Pheonixian: Move R1 Pheonixian Sol\n\tPheonixian: I&#39;m afraid I simply cannot allow this. \n\n51) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B3 G1\nPass\n\n52) Pheonixian: Discover G1 Sol R2 Firebrand\n\n53) Draw5PlayAll: Move R1 Earth G1\n\n54) Pheonixian: Sacrifice G3 Pheonixian\nBuild G3 Pheonixian\nBuild R3 Sol\nPass\n\n55) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 Earth\nBuild R3 G1\nBuild G3 Draw5playall\n\n56) Pheonixian: Move R3 Sol Icecube\n\n57) Draw5PlayAll: Move G2 Draw5playall Firebrand\n\tDraw5PlayAll: You have a new chat message in the 4P game.\n\n58) Pheonixian: Move R1 Sol Icecube\n\n59) Draw5PlayAll: Sacrifice Y3 Earth\nMove B1 Earth Sol\nMove B1 Sol Icecube\nMove B2 G1 Icecube\nCatastrophe Icecube Blue\n\n60) Pheonixian: Discover G1 Pheonixian Y3 Emrakul\n\tDraw5PlayAll: I am sort of just shuffling my pieces around to improve my position. I think I have the advantage in a cat and mouse situation.\n\n61) Draw5PlayAll: Build G3 Icehouse\n\n62) Pheonixian: Discover Y1 Pheonixian R3 Fireball\n\tDraw5PlayAll: NEVER put a ship in a system of the same color if you care about that system!\n\n63) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R3 G1 Emrakul\n\n64) Pheonixian: Discover G1 Emrakul Y1 Venus\n\n65) Draw5PlayAll: S G3 Icehouse\nBuild G3 Icehouse\nBuild R1 Emrakul\nBuild B1 G1\n\n66) Pheonixian: Move G1 Venus Sol\n\n67) Draw5PlayAll: Move R2 Earth Fireball\n\n68) Pheonixian: Move B3 Sol Firebrand\n\n69) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 Emrakul Pheonixian\nMove R1 G1 Emrakul\n\n70) Pheonixian: Attack G2 Firebrand\n\n71) Draw5PlayAll: Sacrifice Y1 Earth\nMove B1 G1 Emrakul\n\n72) Pheonixian: Attack R1 Pheonixian\n\tDraw5PlayAll: Having the lone green scares me..\n\n73) Draw5PlayAll: Sacrifice Y2 Icehouse\nMove R1 Emrakul Pheonixian\nMove R2 Fireball Pheonixian\nCatastrophe Pheonixian Red\n\n74) Pheonixian: Build Y1 Pheonixian\n\tPheonixian: I realized what you were doing after your first move, but I don&#39;t think I have a way to prevent the catastrophe. \n\tDraw5PlayAll: Time was precisely what I needed!\n\n75) Draw5PlayAll: Move R3 Emrakul Pheonixian\n\tDraw5PlayAll: My fear of a screwup is high but I think I can defend.\n\tPheonixian: Okay you didn&#39;t do what I expected. I&#39;m not sure if that&#39;s good or bad for me.\n\n\tDraw5PlayAll: To be honest I did not expect it to be this easy myself. Trading for an R2 would set me back several moves, forcing me to defend my homeworld.\n\nHomeworlds Online (SDG# 30367)\nStarted: 2016.9.4, Ended: 2016.10.3\nParticipants: Pheonixian (S), dragonlord (N)\nWinner: Pheonixian\n\n1) dragonlord: Homeworld G1 R2 B3\n\n2) Pheonixian: Homeworld B1 Y2 G3\n\n3) dragonlord: Build B1 Dragonlord\n\n4) Pheonixian: Build G1 Pheonixian\n\n5) dragonlord: Trade B1 G1 Dragonlord\n\n6) Pheonixian: Build G2 Pheonixian\n\n7) dragonlord: Build G2 Dragonlord\n\n8) Pheonixian: Trade G2 B2 Pheonixian\n\n9) dragonlord: Trade G2 Y2 Dragonlord\n\n10) Pheonixian: Build G2 Pheonixian\n\n11) dragonlord: Build G2 Dragonlord\n\n12) Pheonixian: Trade G2 Y2 Pheonixian\n\n13) dragonlord: Discover G2 Dragonlord Y3 Portals\n\n14) Pheonixian: Build B1 Pheonixian\n\n15) dragonlord: Build G2 Portals\n\n16) Pheonixian: Trade B2 R2 Pheonixian\n\n17) dragonlord: Build B1 Dragonlord\n\n18) Pheonixian: Build R1 Pheonixian\n\n19) dragonlord: Trade B1 R1 Dragonlord\n\n20) Pheonixian: Discover R2 Pheonixian G3 Peach\n\n21) dragonlord: Build B1 Dragonlord\n\n22) Pheonixian: Move G1 Pheonixian Peach\n\n23) dragonlord: Move B1 Dragonlord Portals\n\n24) Pheonixian: Build G2 Pheonixian\n\n25) dragonlord: Trade G2 B2 Portals\n\n26) Pheonixian: Move B1 Pheonixian Peach\n\n27) dragonlord: Build B2 Dragonlord\n\n28) Pheonixian: Build Y1 Pheonixian\n\n29) dragonlord: Trade B3 Y3 Dragonlord\n\n30) Pheonixian: Move Y2 Pheonixian Peach\n\n31) dragonlord: Discover G1 Dragonlord R3 Icehouse\n\n32) Pheonixian: Build R1 Pheonixian\n\n33) dragonlord: Build B2 Dragonlord\n\n34) Pheonixian: Sacrifice G3 Pheonixian\nBuild B3 Peach\nBuild G2 Peach\nBuild G3 Pheonixian\n\n35) dragonlord: Sacrifice Y2 Dragonlord\nMove G1 Icehouse Dragonlord\nMove G1 Dragonlord Peach\nCatastrophe Peach Green\n\n36) Pheonixian: Trade G2 Y2 Pheonixian\n\n37) dragonlord: Discover B2 Dragonlord G3 Garden\n\n38) Pheonixian: Discover R1 Pheonixian Y3 Sol\n\n39) dragonlord: Trade B2 R2 Dragonlord\n\n40) Pheonixian: Move R1 Sol Dragonlord\nCatastrophe Dragonlord Red\n\n41) dragonlord: Build Y1 Dragonlord\n\n42) Pheonixian: Discover Y2 Pheonixian G3 Terra\n\n43) dragonlord: Sacrifice B1 Portals\nTrade Y1 B1 Dragonlord\n\n44) Pheonixian: Build Y1 Terra\n\n45) dragonlord: Build B1 Dragonlord\n\n46) Pheonixian: Build G1 Pheonixian\n\n47) dragonlord: Trade Y3 R3 Dragonlord\n\n48) Pheonixian: Discover G1 Pheonixian R3 Dragon\n\n49) dragonlord: Trade B1 Y1 Dragonlord\n\n50) Pheonixian: Build G1 Pheonixian\n\n51) dragonlord: Build G2 Portals\n\n52) Pheonixian: Sacrifice G3 Pheonixian\nBuild R1 Pheonixian\nBuild G2 Dragon\nBuild G3 Pheonixian\n\n53) dragonlord: Build Y2 Dragonlord\n\n54) Pheonixian: Move Y1 Pheonixian Dragon\n\n55) dragonlord: Move Y2 Dragonlord Portals\n\n56) Pheonixian: Build Y3 Dragon\n\n57) dragonlord: Discover Y2 Portals R2 Jail\n\n58) Pheonixian: Discover G1 Pheonixian Y3 Lemon\n\n59) dragonlord: Build B1 Dragonlord\n\tPheonixian: Are you sure about that?\r\nIt lets me win.\n\n60) Pheonixian: Sacrifice Y3 Dragon\nMove G1 Dragon Dragonlord\nMove G2 Dragon Dragonlord\nMove G1 Lemon Dragonlord\nCatastrophe Dragonlord Green\n\n\nHomeworlds Online (SDG# 30315)\nVariants: &quot;Hard time&quot;\nStarted: 2016.9.9, Ended: 2016.9.23\nParticipants: Simon (S), ladybugsfly (N)\nWinner: Simon\n\n1) ladybugsfly: Homeworld Y3 G1 B3\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: Hi, have fun!\n\n3) ladybugsfly: Build B1 Ladybugsfly\n\n4) Simon: Build G1 Simon\n\tladybugsfly: You, too!\n\n5) ladybugsfly: Discover B1 Ladybugsfly Y2 Charmander\n\n6) Simon: Trade G3 Y3 Simon\n\n7) ladybugsfly: T B1 G1 Charmander\n\n8) Simon: Build G2 Simon\n\n9) ladybugsfly: B G2 Charmander\n\n10) Simon: Discover G2 Simon B3 B3\n\n11) ladybugsfly: D G1 Charmander Y3 Charmeleon\n\n12) Simon: Build Y1 Simon\n\n13) ladybugsfly: B B1 Ladybugsfly\n\n14) Simon: Move Y1 Simon B3\n\n15) ladybugsfly: T B3 G3 Ladybugsfly\n\n16) Simon: Build G2 Simon\n\n17) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G3 Charmander\nBuild G3 Charmander\nBuild G3 Charmeleon\n\n18) Simon: Move G2 B3 Charmander\nCatastrophe Charmander G\n\n19) ladybugsfly: D G3 Charmeleon Y2 Charmander\n\n20) Simon: Move G2 Simon B3\n\n21) ladybugsfly: Build B1 Ladybugsfly\n\n22) Simon: Build G2 B3\n\n23) ladybugsfly: Trade B1 R1 Ladybugsfly\n\n24) Simon: Trade G2 R2 B3\n\n25) ladybugsfly: Build G2 Charmander\n\n26) Simon: Build G2 B3\n\n27) ladybugsfly: M G3 Charmander Ladybugsfly\n\n28) Simon: Build G3 Simon\n\n29) ladybugsfly: Trade G3 R3 Ladybugsfly\n\n30) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 Simon\nBuild G3 B3\n\n31) ladybugsfly: Move G1 Charmeleon Simon\nCatastrophe Simon G\n\n32) Simon: Sacrifice G2 B3\nBuild Y1 Simon\nBuild Y1 B3\n\n33) ladybugsfly: B B1 Ladybugsfly\n\n34) Simon: Discover Y1 B3 G2 G2\n\n35) ladybugsfly: M R1 Ladybugsfly G2\n\n36) Simon: Sacrifice G3 B3\nBuild Y2 B3\nBuild Y2 G2\nBuild Y3 G2\n\tDraw5PlayAll: Simon, what do you do if you discover two identical systems?\n\tSimon: g2b and g3c :)\n\n37) ladybugsfly: A Y1 G2\n\n38) Simon: Sacrifice R2 B3\nAttack R1 G2\nAttack Y1 G2\n\n39) ladybugsfly: M B1 Ladybugsfly Charmander\n\n40) Simon: Build R1 G2\n\n41) ladybugsfly: B B1 Charmander\n\tDraw5PlayAll: Direct star names vs pocket monsters\n\n42) Simon: Build R2 G2\n\n43) ladybugsfly: T R3 G3 Ladybugsfly\n\n44) Simon: Move Y3 G2 Ladybugsfly\n\n45) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild B2 Charmander\nBuild B2 Ladybugsfly\nBuild B3 Ladybugsfly\n\tladybugsfly: Nice game\n\tladybugsfly: Nice game\n\n46) Simon: Sacrifice R2 G2\nAttack B3 Ladybugsfly\nAttack B2 Ladybugsfly\n\n47) ladybugsfly: Sacrifice B2 Charmander\nTrade B1 G1 Charmander\nTrade B1 G1 Charmander\n\tSimon: gg!\n\n48) Simon: Sacrifice R1 G2\nAttack B1 Ladybugsfly\n\n\nHomeworlds Online (SDG# 31871)\nStarted: 2017.4.4, Ended: 2017.8.14\nParticipants: gjimenez (S), velgarath2 (N)\nWinner: velgarath2\n\n1) velgarath2: Homeworld B2 Y3 G3\n\n2) gjimenez: Homeworld G1 Y2 R3 *\n\n3) velgarath2: Build G1 Velgarath2\n\n4) gjimenez: Build R1 Gjimenez\n\tgjimenez: build R gjimenez\n\tgjimenez: Joder, no funciona\n\tgjimenez: There are insufficient R pieces in the stash.\n\tDraw5PlayAll: You want:\r\nbuild R1 gjimenez\n\n5) velgarath2: Discover G1 Velgarath2 B1 Jagermeister\n\n\nHomeworlds Online (SDG# 30256)\nStarted: 2016.9.13, Ended: 2016.9.29\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 R3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tFelix: Same to you :)\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Felix: Trade G1 Y1 Felix\n\n7) ts52: Build Y2 Ts52\n\n8) Felix: Build Y2 Felix\n\n9) ts52: Discover Y2 Ts52 G3 Kermit\n\n10) Felix: Discover Y1 Felix G2 Caladan\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade G1 B1 Ts52\n\n14) Felix: Build Y2 Caladan\n\n15) ts52: Build Y3 Kermit\n\n16) Felix: Build Y3 Felix\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Felix: Trade Y3 B3 Felix\n\n19) ts52: Trade Y3 R3 Kermit\n\n20) Felix: Build Y3 Felix\n\tDraw5PlayAll: Star Wars planets vs muppets\n\tFelix: Wrong on Star Wars. Caladan comes from the book Dune by Frank Herbert :)\n\n21) ts52: Move R3 Kermit Caladan\n\n22) Felix: Sacrifice Y2 Caladan\nMove Y1 Caladan Kermit\nMove Y1 Kermit Ts52\n\n23) ts52: Trade Y1 R1 Ts52\n\n24) Felix: Sacrifice G3 Felix\nBuild Y1 Ts52\nBuild Y2 Ts52\nBuild G1 Felix\nCatastrophe Ts52 Yellow\n\n25) ts52: Build R1 Ts52\n\n26) Felix: Discover B3 Felix G2 Geidi_prime\n\n27) ts52: Trade R1 Y1 Ts52\n\n28) Felix: Trade G1 R1 Felix\n\n29) ts52: Build R1 Caladan\n\n30) Felix: Move R1 Felix Geidi_prime\n\n31) ts52: Build R2 Ts52\n\n32) Felix: Build R2 Geidi_prime\n\n33) ts52: Build Y1 Ts52\n\n34) Felix: Trade Y2 B2 Felix\n\n35) ts52: Build B1 Kermit\n\n36) Felix: Trade R2 Y2 Geidi_prime\n\n37) ts52: Build B2 Kermit\n\n38) Felix: Move B3 Geidi_prime Kermit\nCatastrophe Kermit Blue\n\n39) ts52: Build Y1 Ts52\n\n40) Felix: Build B1 Felix\n\n41) ts52: Move R1 Ts52 Felix\n\n42) Felix: Attack R1 Felix\n\n43) ts52: Sacrifice Y2 Kermit\nMove R1 Caladan Felix\nMove Y1 Ts52 Felix\n\n44) Felix: Move B1 Felix Geidi_prime\n\n45) ts52: Sacrifice G3 Ts52\nBuild Y2 Felix\nBuild Y2 Felix\nBuild R2 Felix\nCatastrophe Felix Red\nCatastrophe Felix Yellow\n\n46) Felix: Build B1 Felix\n\tFelix: Verrrrry nice defense.\n\n47) ts52: Sacrifice Y1 Ts52\nMove R3 Caladan Felix\n\tts52: Thanks. I explored several other options before finding that one.\n\n48) Felix: Sacrifice Y2 Geidi_prime\nMove B1 Felix Ts52\nMove B2 Felix Ts52\n\tFelix: It was effective on multiple fronts. I admit I thought I had you. Very nice playing and good game!\n\n49) ts52: Attack G1 Felix\n\tts52: It was definitely touch and go there for a while. Always tough to recover from catastrophes in your homeworld. Definitely a good game.\n\n\nHomeworlds Online (SDG# 30392)\nVariants: &quot;Sinister&quot;\nStarted: 2016.9.13, Ended: 2017.1.4\nParticipants: Pheonixian (S), Draw5PlayAll (W), Felix (N), dragonlord (E)\nWinner: Draw5PlayAll\n\n1) Felix: Homeworld R2 B3 G3\n\n2) dragonlord: Homeworld R1 B2 G3\n\tFelix: Here we go! Have fun all :)\n\n3) Pheonixian: Homeworld B1 R3 G3\n\tdragonlord: Good luck everyone\n\n4) Draw5PlayAll: Homeworld R2 B3 G3\n\tDraw5PlayAll: Exclamation mark!\n\n5) Felix: Build G1 Felix\n\tDraw5PlayAll: When did I join this game?\n\tFelix: Looks like it&#39;s going to be a battle over yellow!\n\n6) dragonlord: Build G1 Dragonlord\n\n7) Pheonixian: Build G1 Pheonixian\n\tDraw5PlayAll: We all can build one though.\n\tdragonlord: Please don&#39;t make anyone surrender.\n\tDraw5PlayAll: It never fails. Every time we try a 4P game, someone seems to die on time.\n\tDraw5PlayAll: If you do not like time forfeits, use at least 5/3/7 as the time control. 3/1/10 rarely works.\n\tDraw5PlayAll: If you do not like time forfeits, use at least 5/3/7 as the time control. 3/1/10 rarely works.\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: What??? When I actually wrote that, it showed up once.\n\n9) Felix: Trade G1 Y1 Felix\n\tFelix: Even if time runs out, just don&#39;t force a surrender. I think you can choose to or not to, unless hard time is activated.\n\n10) dragonlord: Trade G1 Y1 Dragonlord\n\n11) Pheonixian: Trade G1 Y1 Pheonixian\n\tDraw5PlayAll: Hard time by definition is the variant in which a time forfeit immediately surrenders you. Perhaps sis is good if you find that your opponent moved before you even got to eliminate them.\r\n\r\nAll ladder games are hard time and 3/3/10.\n\n12) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n13) Felix: Build G1 Felix\n\tDraw5PlayAll: Soon our paths will diverge.\n\n14) dragonlord: Build Y1 Dragonlord\n\n15) Pheonixian: Build Y2 Pheonixian\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Felix: Build Y2 Felix\n\n18) dragonlord: Build G1 Dragonlord\n\n19) Pheonixian: Build Y2 Pheonixian\n\n20) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n21) Felix: Discover Y2 Felix G1 Caladan\n\tDraw5PlayAll: Captain&#39;s log, Stardate 47011.2: We have seen three other alien races are going along similar lines of action to our own. We have decided to attempt to diverge by attaining Ambassador-class trading capabilities.\n\n22) dragonlord: Discover G1 Dragonlord Y3 Terrace\n\tFelix: Venturing forth, commander! We don&#39;t know what&#39;s out there, but we aim to find out!\n\n23) Pheonixian: Build G1 Pheonixian\n\n24) Draw5PlayAll: Discover B2 Draw5playall G1 Keeper\n\n25) Felix: Build Y2 Felix\n\n26) dragonlord: Build G2 Dragonlord\n\n27) Pheonixian: Discover Y2 Pheonixian G2 Seraphim\n\tDraw5PlayAll: Admiral&#39;s Log, Stardate 47014.9: The aliens of the star system Phoenixian are experiencing life support problems. We are waiting until they either fix the problem or die trying.\n\n28) Draw5PlayAll: Build G2 Draw5playall\n\tPheonixian: The life support systems have been restored to proper condition. An unexpected surge in energy consumption was experienced in conjunction with a surge in industry, resulting in a failure of temperature regulation and a pipe bursting due to freezing of dihydrogen monoxide. Personnel loss occured. Steps to prevent failure of this manner in the future have been taken.\n\tDraw5PlayAll: Admiral&#39;s log, Supplemental: We are pursuing Ambassador-class construction vessels as we wait for more exciting action.\n\n29) Felix: Discover G1 Felix B1 Bazoik\n\n30) dragonlord: Build G2 Terrace\n\n31) Pheonixian: Trade Y1 B1 Pheonixian\n\tdragonlord: Farming is taken very seriously here in dragonlord. It is the key to civilization and food. Farmers are constantly being trained.\n\n32) Draw5PlayAll: Build B1 Keeper\n\n33) Felix: Build G2 Bazoik\n\n34) dragonlord: Trade G2 B2 Dragonlord\n\tFelix: Reek rik ark kram korpo rak rak rimmy rook krame korkra koori [Translation: Increasing build capacity to expand fleet. Detect carbon-based life-forms in the vicinity.]\n\n35) Pheonixian: Build Y1 Seraphim\n\n36) Draw5PlayAll: Discover G2 Draw5playall B1 B1\n\n\nPass\n\tdragonlord: Captain&#39;s log 111: Increasing life support to prevent situations such as  the life support loss on Phoenixian and have more resource potential\n\tdragonlord: Captain&#39;s log 111: Increasing life support to prevent situations such as  the life support loss on Phoenixian and have more resource potential\n\n37) Felix: Sacrifice Y2 Felix\nMove G2 Bazoik Draw5playall\nMove G1 Bazoik Draw5playall\n\tDraw5PlayAll: Admital&#39;s log star date 47019.4: We decided to branch out and found a small IceTraders star base on a water planet. We wonder why the IceTraders like blue so much...\n\n38) dragonlord: Move B2 Dragonlord Terrace\n\tFelix: &amp;#1490;&amp;#1463;&amp;#1501; &amp;#1502;&amp;#1506;&amp;#1489;&amp;#1493;&amp;#1491;&amp;#1514;&amp;#1493; &amp;#1492;&amp;#1497;&amp;#1488; &amp;#1493;&amp;#1513;&amp;#1500;&amp;#1497;&amp;#1513;&amp;#1497;&amp;#1514; &amp;#1502;&amp;#1506;&amp;#1500; &amp;#1492;&amp;#1514;&amp;#1492; &amp;#1489;&amp;#1506;&amp;#1491; &amp;#1492;&amp;#1504;&amp;#1493;&amp;#1512;&amp;#1488;&amp;#1497;&amp;#1501; &amp;#1514;&amp;#1468;&amp;#1461;&amp;#1513;&amp;#1473;&amp;#1461;&amp;#1489; &amp;#1500;&amp;#1492;&amp;#1497;&amp;#1512;&amp;#1488;&amp;#1493;&amp;#1514; &amp;#1505;&amp;#1500;&amp;#1495; &amp;#1497;&amp;#1460;&amp;#1492;&amp;#1456;&amp;#1497;&amp;#1493;&amp;#1468;. &amp;#1493;&amp;#1502;&amp;#1506;&amp;#1489;&amp;#1493;&amp;#1491;&amp;#1514;&amp;#1493; &amp;#1489;&amp;#1506;&amp;#1512;&amp;#1489;&amp;#1493;&amp;#1489;&amp;#1497;&amp;#1492; &amp;#1506;&amp;#1462;&amp;#1513;&amp;#1474;&amp;#1456;&amp;#1512;&amp;#1461;&amp;#1492; &amp;#1493;&amp;#1502;&amp;#1508;&amp;#1493;&amp;#1514;&amp;#1495;&amp;#1497;&amp;#1501; &amp;#1497;&amp;#1463;&amp;#1495;&amp;#1456;&amp;#1491;&amp;#1468;&amp;#1464;&amp;#1493; &amp;#1505;&amp;#1456;&amp;#1512;&amp;#1493;&amp;#1468;&amp;#1495;&amp;#1464;&amp;#1492;. &amp;#1490;&amp;#1500; &amp;#1488;&amp;#1507; &amp;#1499;&amp;#1512;&amp;#1493;&amp;#1514;&amp;#1497;&amp;#1501; &amp;#1500;&amp;#1490;&amp;#1494;&amp;#1512;&amp;#1497;&amp;#1501; &amp;#1505;&amp;#1490; &amp;#1510;&amp;#1491; &amp;#1502;&amp;#1513;&amp;#1500;&amp;#1502;&amp;#1497;&amp;#1501; &amp;#1513;&amp;#1473;&amp;#1462;&amp;#1492;&amp;#1461;&amp;#1501; &amp;#1492;&amp;#1501; &amp;#1500;&amp;#1456;&amp;#1513;&amp;#1473;&amp;#1461;&amp;#1501; &amp;#1514;&amp;#1492; &amp;#1490;&amp;#1497;&amp;#1489;&amp;#1493;&amp;#1512;&amp;#1497;. &amp;#1488;&amp;#1501; &amp;#1489;&amp;#1488;&amp;#1495;&amp;#1493;&amp;#1494;&amp;#1514;&amp;#1497; &amp;#1512;&amp;#1498; &amp;#1500;&amp;#1497; &amp;#1488;&amp;#1497; &amp;#1489;&amp;#1468;&amp;#1456;&amp;#1508;&amp;#1460;&amp;#1497;&amp;#1493; &amp;#1500;&amp;#1492;&amp;#1514;&amp;#1512;&amp;#1488;&amp;#1493;&amp;#1514; &amp;#1495;&amp;#1503; &amp;#1493;&amp;#1492;&amp;#1514;&amp;#1502;&amp;#1500;&amp;#1488;&amp;#1493; &amp;#1499;&amp;#1489;&amp;#1512;&amp;#1494;&amp;#1497;&amp;#1500;&amp;#1497; &amp;#1511;&amp;#1500; &amp;#1491;&amp;#1501; &amp;#1493;&amp;#1488;&amp;#1493;&amp;#1499;&amp;#1500;&amp;#1497;&amp;#1501; &amp;#1490;&amp;#1503;. &amp;#1497;&amp;#1513;. [TRANSLATION: Reactor explosion in home sector! Teleportation beams going haywire. Construction vessels teleported to unknown sector.]\n\n39) Pheonixian: Build G2 Pheonixian\n\tdragonlord: Captain&#39;s log 121: Increasing strength of Terrace. As said before, farming is taken very seriously on Dragonlord. All these wars cause so much starvation and we will keep everyone who fights for us fed, allies included.\n\n40) Draw5PlayAll: Trade G3 B3 Draw5playall\n\tDraw5PlayAll: Ah, these intruders again. The ones with this &quot;peace&quot; scandal. Oh, I remember the day when they claimed the destruction of a planet was an &quot;accident&quot;. Any reasonable starship captain should know that having a concentration of technology creates an inevitable disaster!\r\n\r\nWe are considering the most efficient way to delete the intruders.\n\n41) Felix: Build G3 Felix\n\n42) dragonlord: Build G3 Dragonlord\n\n43) Pheonixian: Move B1 Pheonixian Seraphim\n\tFelix: Blip blip blip blip blip blip Blip blip blip blip blip blip bloop. [We seem to have lost contact with our construction vessels in the unknown sector. Building new and better construction vessels to replace them.]\n\tDraw5PlayAll: I should wait until these aliens fire Felix and appoint a new government. Sadly, I hear he is named &quot;dictator for life and then some&quot;.\n\n44) Draw5PlayAll: Attack G2N Draw5playall\n\n45) Felix: Trade G1 B1 Draw5playall\n\n46) dragonlord: Discover G1 Terrace Y2 Solblast\n\tDraw5PlayAll: I vote we cause a G catastrophe.\n\tPheonixian: Where is it you are trying to cause this catastrophe?\n\tDraw5PlayAll: Ummm.. Uh... Felix or DragonLord&#39;s homeworld, obviously...\n\tdragonlord: I&#39;ll assist causing a catastrophe in Felix&#39;s homeworld.\n\n47) Pheonixian: Build B2 Seraphim\n\tFelix: Ah, but may I point out that it is now much easier to cause a blue catastrophe in Draw5&#39;s homeworld? Dragonlord, I believe you need to eliminate said world, isn&#39;t that right? You know what to do...\n\tDraw5PlayAll: GAAH!! If you do then I will abandon my homeworld and you will have to defeat Felix instead!\n\tDraw5PlayAll: Felix, you are actually talking to Phoenixian.. and so am I. Phoenixian can knock out my blue star and ship in one move, and is the one who needs to destroy me.\r\n\r\nHowever, if he decides to blow up my star and ship then I will resign the game and blast into hyperspace, leaving the remaining players. Then Phoenixian will have to destroy Felix instead. Muhahaha!\n\n48) Draw5PlayAll: Trade B3 R3 Draw5playall\n\n49) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Caladan\nBuild Y3 Felix\n\n50) dragonlord: Move G1 Solblast Pheonixian\nCatastrophe Pheonixian G\n\tDraw5PlayAll: Felix, if you rip apart my blue star then Phoenixian can have an easy attack... and you do not want him to win because then you lose.\n\tFelix: I thought whoever eliminated the player to their left just became the winner? In that case, Phoenixian will win if he destroys you. Not ideal...\n\tFelix: Hmm, but you have a point. Offense may not be the best defense after all.\n\tDraw5PlayAll: Well, if Phoenixian breaks down one of my stars then I will probably suicide so he does not get the win.\r\n\r\nThis variant is not broken but it seems like it is more last man standing than its intent.\n\n51) Pheonixian: Trade Y1 G1 Seraphim\n\tFelix: I don&#39;t think the system allows you to suicide, but perhaps it does.\n\tDraw5PlayAll: Even then, I could set up a catastrophe and then tell Felix or DragonLord to finish me off. And they would, unless they WANTED Phoenixian to win.\n\n52) Draw5PlayAll: Attack B1N Draw5playall\n\n53) Felix: Trade Y3 B3 Felix\n\n54) dragonlord: Discover G3 Dragonlord R3 Firebeam\n\n55) Pheonixian: Build Y1 Seraphim\n\n56) Draw5PlayAll: Build Y2 Draw5playall\n\n57) Felix: Sacrifice Y1 Felix\nDiscover Y3 Caladan B3 Bazoik\n\tdragonlord: With all the fights breaking out the council of Dragonlord has decided to attempt to pacify those fights but be prepared. If you&#39;re not alive you can&#39;t farm-Dragonlord Motto\n\n58) dragonlord: Build G1 Terrace\n\n59) Pheonixian: Trade B1 R1 Seraphim\n\tDraw5PlayAll: No, that was just some futile invaders we were clearing. They are of lesser intellect than most of their species...\n\n60) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 Keeper Felix\nMove B2 Keeper Felix\nCatastrophe Felix Blue\nPass\nPass\nPass\n\n61) Felix: Build Y1 Caladan\n\tdragonlord: Farming will always continue here on Dragonlord\n\n62) dragonlord: Trade G2 R2 Terrace\n\n63) Pheonixian: Build R1 Seraphim\n\n64) Draw5PlayAll: Build G1 B1\n\n65) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Felix\nBuild Y3 Bazoik\n\tdragonlord: Captain&#39;s log 323: Farmers can fight effectively. Giving are farming ships weapons to be ready. Fights are still breaking out and Dragonlord will be ready. If you&#39;re not alive, you can&#39;t farm- Dragonlord Motto\n\n66) dragonlord: Build B1 Terrace\n\n67) Pheonixian: Sacrifice G1 Seraphim\nBuild Y3 Pheonixian\n\n68) Draw5PlayAll: Move Y1 Draw5playall B1\n\n69) Felix: Move Y2 Felix Pheonixian\n\n70) dragonlord: Discover B1 Terrace R2 Firefarm\n\n71) Pheonixian: Move Y2 Pheonixian Firefarm\n\n72) Draw5PlayAll: Build G1 Draw5playall\n\n73) Felix: Sacrifice Y3 Bazoik\nMove Y1 Caladan Felix\nMove Y1 Felix Pheonixian\nMove Y2 Felix Pheonixian\nCatastrophe Pheonixian Yellow\n\n74) dragonlord: Build G1 Dragonlord\n\tdragonlord: New FireFarming(copyright) technology is being used: blow up stars and objects and use that energy to farm.\n\n75) Draw5PlayAll: Build Y1 B1\n\n76) Felix: Move Y3 Bazoik Firefarm\n\n77) dragonlord: Move Y1 Dragonlord Terrace\n\tFelix: Kaboom. Sorry Pheonixian. I couldn&#39;t let Dragonlord kill you and take the win!\n\tDraw5PlayAll: How could he?\n\n78) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n79) Felix: Attack B1E Firefarm\n\n80) dragonlord: Build G2 Firebeam\n\n81) Draw5PlayAll: Build Y2 Draw5playall\n\tdragonlord: Dragonlord is a proud supporter of economic diversity. To support this, terrace has been given ships of all kinds.\n\n82) Felix: Build Y3 Caladan\n\n83) dragonlord: Build Y3 Dragonlord\n\tDraw5PlayAll: Ahem!\n\tDraw5PlayAll: Please do not make me press the red button!\n\tDraw5PlayAll: At -7 days we are removing the dragons.\n\tDraw5PlayAll: That gives DragonLord 6 days.\n\tDraw5PlayAll: What happened??\n\tDraw5PlayAll: I really don&#39;t want ANOTHER time forfeit! Phoenix lost legitimately, dragon did not!\n\tDraw5PlayAll: This is the only way to get a message to our opponent.\n\n84) Draw5PlayAll: Discover Y2 Draw5playall B1 B1&#39;\n\tDraw5PlayAll: YES!!!\n\n85) Felix: Sacrifice Y2 Caladan\nMove B1 Firefarm Caladan\nMove B1 Caladan Felix\n\n86) dragonlord: Build B1 Terrace\n\n87) Draw5PlayAll: Sacrifice G2 B1\nBuild G2 B1\nBuild Y2 B1&#39;\n\n88) Felix: Trade Y3 G3 Felix\n\n89) dragonlord: Move B1 Terrace Dragonlord\n\n90) Draw5PlayAll: Build Y3 Draw5playall\n\n91) Felix: Attack Y2S Firefarm\n\n92) dragonlord: Move B1 Dragonlord Firebeam\n\tFelix: It looks grim for me!\n\n93) Draw5PlayAll: Move R3 Draw5playall B1\n\n94) Felix: Move Y3 Caladan Felix\n\n95) dragonlord: Build B2 Firebeam\n\n96) Draw5PlayAll: Build R1 B1\n\n97) Felix: B B2 Felix\n\n98) dragonlord: Discover Y1 Terrace G1 Farm\n\n99) Draw5PlayAll: Discover B1 Draw5playall R1 R1\n\n100) Felix: D B2 Felix G3 Safety\n\n101) dragonlord: Move Y1 Dragonlord Firebeam\n\n102) Draw5PlayAll: Sacrifice G2 B1\nBuild G2 B1\nBuild B3 R1\n\n103) Felix: Build B3 Safety\n\n104) dragonlord: Move B1 Firebeam Farm\n\n105) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 B1 Felix\nMove R1 B1 Felix\n\tDraw5PlayAll: I am pondering a plan which will remove Felix and let DragonLord take the win.\n\n106) Felix: Trade G3 R3 Felix\nCatastrophe Felix Red\n\n107) Draw5PlayAll: Pass\n\n108) dragonlord: Discover B2 Terrace R1 Anger\n\n109) Draw5PlayAll: Build G2 Draw5playall\n\n110) dragonlord: Move B2 Firebeam Anger\n\tDraw5PlayAll: Our people are watching the attack on their computer screens... and fake news about conspiracies and threats to our planet is swarming our communications!\n\tDraw5PlayAll: There is one too many red in the stash. I win. If Felix stacks, DragonLord can only discover three of them as stars, and if Felix discovers them then he loses ships as I get the first shot.\n\n111) Draw5PlayAll: Trade Y2 R2 B1&#39;\n\tFelix: Huh. That probably wasn&#39;t supposed to work.\n\tFelix: But good luck to the both of ya :D\n\tDraw5PlayAll: You could simply have clicked &quot;Resign&quot; after confirming it.\n\tDraw5PlayAll: Was DragonLord just skipped?!?\n\n112) dragonlord: Sacrifice Y3 Dragonlord\nMove B1 Farm Draw5playall\nMove B2 Anger Draw5playall\nMove B2 Anger Draw5playall\nCatastrophe Draw5playall Blue\n\n113) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 B1&#39;\nBuild R1 B1&#39;\n\n114) dragonlord: Build R2 Terrace\n\tFelix: Would it give you the win if I clicked resign? I don&#39;t think I could resign after I was removed from the game...\n\tFelix: There seems to be a loophole in Sinister where suiciding is possible to deny someone else the win.\n\n115) Draw5PlayAll: Sacrifice Y2 B1&#39;\nMove G1 B1 Safety\nMove G1 Safety Dragonlord\n\tDraw5PlayAll: Either way, DragonLord could have done the catastrophe. That is a loophole in Sinister, yes, and that is why I think Last Man Standing is better for 3-4 players.\n\n116) dragonlord: Trade G3 R3 Dragonlord\n\n117) Draw5PlayAll: Sacrifice G2 B1\nBuild Y2 Draw5playall\nBuild G2 Dragonlord\n\n118) dragonlord: Trade R3 Y3 Dragonlord\n\n119) Draw5PlayAll: Trade G2 Y2 Dragonlord\n\n120) dragonlord: Discover R2 Terrace B1 Ice\n\n121) Draw5PlayAll: Build Y3 Dragonlord\n\n122) dragonlord: Move Y3 Dragonlord Safety\n\n123) Draw5PlayAll: Attack G1E Dragonlord\n\n\tDraw5PlayAll: I thought I was lost! Good game.\n\nHomeworlds Online (SDG# 30331)\nVariants: &quot;Unrated&quot;\nStarted: 2016.9.14, Ended: 2016.10.12\nParticipants: Felix (S), zeder (N)\nWinner: Felix\n\n1) zeder: Homeworld G3 B1 Y3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) zeder: Build Y1 Zeder\n\tFelix: Welcome! First game?\n\tzeder: Not first, but maybe 3rd or 4th.\n\n4) Felix: Build G1 Felix\n\tFelix: Awesome. Well I hope you have fun and let me know if you have any questions\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) Felix: Trade G1 Y1 Felix\n\tzeder: Thank you!  I am very pondering why you chose to have no yellow?\n\n7) zeder: Build Y1 Zeder\n\tFelix: Sometimes I prefer to start without yellow and then trade for it on my second turn - as I have just done. It can be helpful to have red in my home system instead of yellow sometimes. it really depends on play style.\n\n8) Felix: Build G1 Felix\n\n9) zeder: Trade Y1 B1 Zeder\n\n10) Felix: Trade G1 B1 Felix\n\n11) zeder: Build B2 Zeder\n\n12) Felix: Discover B1 Felix G1 Rim\n\n13) zeder: Trade B1 Y1 Zeder\n\n14) Felix: Build B1 Rim\n\n15) zeder: Build B2 Zeder\n\n16) Felix: Trade B1 Y1 Rim\n\n17) zeder: Build Y2 Zeder\n\n18) Felix: Build Y2 Rim\n\n19) zeder: Trade Y1 R1 Zeder\n\n20) Felix: Trade Y1 R1 Rim\n\n21) zeder: Discover B2 Zeder G2 Flip\n\n22) Felix: Build Y1 Rim\n\n23) zeder: Trade B2 R2 Flip\n\n24) Felix: Discover Y1 Rim G2 Bazoik\n\n25) zeder: Move Y2 Zeder Flip\n\n26) Felix: Build G1 Felix\n\n27) zeder: Build G2 Zeder\n\n28) Felix: Discover G1 Felix B1 Ralston\n\n29) zeder: Trade G1 R1 Zeder\n\n30) Felix: Build G1 Felix\n\n31) zeder: Discover G2 Zeder Y2 Lips\n\n32) Felix: Sacrifice G3 Felix\nBuild G3 Ralston\nBuild G3 Felix\nBuild B2 Rim\n\n33) zeder: Move R1 Zeder Lips\n\n34) Felix: Sacrifice G3 Ralston\nBuild Y1 Rim\nBuild Y3 Bazoik\nBuild Y3 Felix\n\n35) zeder: Build G3 Lips\n\n36) Felix: Move B1 Rim Bazoik\n\n37) zeder: Move G3 Lips Rim\n\n38) Felix: Move B1 Bazoik Zeder\n\n39) zeder: Trade B2 R2 Zeder\n\n40) Felix: Sacrifice G3 Felix\nBuild B2 Zeder\nBuild B2 Zeder\nCatastrophe Zeder Blue\nBuild G3 Felix\n\n41) zeder: Sacrifice R1 Lips\nAttack R1 Rim\n\tzeder: OUCH!!\n\n42) Felix: Sacrifice Y2 Rim\nMove B2 Rim Bazoik\nDiscover Y1 Rim Y2 Arrakis\n\tFelix: Sorry :) You&#39;re about to wreak havoc on my ships in Rim, though!\n\n43) zeder: Sacrifice Y2 Flip\nMove G3 Rim Bazoik\nMove R1 Rim Bazoik\n\tDraw5PlayAll: Arrakis?\n\n44) Felix: Sacrifice Y3 Bazoik\nMove G1 Felix Ralston\nMove G1 Ralston Zeder\nMove G1 Ralston Zeder\n\tFelix: @Draw5 Read Dune. :)\n\n45) zeder: Attack G1 Zeder\n\tFelix: @Zeder You&#39;re making me quite nervous!\n\tzeder: Not sure why... that were an killer moves!\n\n46) Felix: Build G1 Zeder\nCatastrophe Zeder Green\n\tFelix: Well... I got nervous before that move, haha\n\tFelix: And I thought you might sacrifice your r2 to take over both of my G ships, which would have forced me to sac my Y3 at my home and move my g3 in to finish the job. That would only leave me a y1 at home, which would be scary, but I guess you&#39;d actually be dead at that point, so...\n\tFelix: Great game! You played well and that was fun. I like your aggressive play style.\n\tzeder: I saw the y3 sacrifice so decided to take the move that I thoughts would let me live in case you didn&#39;t see it. :) thanks you for the game!\n\n\nHomeworlds Online (SDG# 30323)\nVariants: &quot;Hard time&quot;\nStarted: 2016.9.20, Ended: 2016.9.23\nParticipants: zeder (S), mxpf (N)\nWinner: zeder\n\n\nHomeworlds Online (SDG# 30440)\nVariants: &quot;Hard time&quot;\nStarted: 2016.9.20, Ended: 2016.9.23\nParticipants: Draw5PlayAll (S), mxpf (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 30447)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2016.9.21, Ended: 2016.9.25\nParticipants: Draw5PlayAll (S), sompm (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 30408)\nStarted: 2016.9.29, Ended: 2016.10.18\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tFelix: No time wasted between games :) Good luck!\n\tts52: :D Have a good game.\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) Felix: Discover B2 Felix G2 Flemoid\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Flemoid\nBuild B3 Flemoid\nBuild B3 Felix\n\n12) ts52: Build B3 Robin\n\n13) Felix: Trade B2 Y2 Flemoid\n\n14) ts52: Trade B3 Y3 Robin\n\n15) Felix: Trade B3 G3 Felix\n\n16) ts52: Build Y1 Robin\n\n17) Felix: T B2 R2 Flemoid\n\n18) ts52: Trade Y1 R1 Robin\n\n19) Felix: Build B2 Flemoid\n\n20) ts52: Build R1 Robin\n\n21) Felix: Trade B2 Y2 Flemoid\n\n22) ts52: Build B2 Robin\n\n23) Felix: Build B2 Flemoid\n\n24) ts52: Discover B2 Robin Y2 Bigbird\n\n25) Felix: Discover B2 Flemoid G1 Ralston\n\n26) ts52: Build B3 Robin\n\n27) Felix: Build B3 Ralston\n\n28) ts52: Build G2 Ts52\n\n29) Felix: Trade B2 G2 Ralston\n\n30) ts52: Trade G2 R2 Ts52\n\n31) Felix: Sacrifice G2 Ralston\nBuild G2 Felix\nBuild B2 Ralston\n\n32) ts52: Move G1 Ts52 Robin\n\n33) Felix: Move Y2 Flemoid Ralston\n\n34) ts52: Move G1 Robin Bigbird\n\n35) Felix: Build Y1 Ralston\n\n36) ts52: Build G2 Ts52\n\n37) Felix: Move B3 Ralston Bigbird\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y1 Robin\n\n39) Felix: Trade B3 R3 Bigbird\n\n40) ts52: Trade G3 B3 Ts52\n\n41) Felix: Move B2 Ralston Flemoid\n\n42) ts52: Move B2 Bigbird Felix\n\n43) Felix: Sacrifice Y2 Ralston\nMove B2 Flemoid Ralston\nMove B2 Ralston Ts52\n\n44) ts52: Move G1 Bigbird Felix\n\n45) Felix: S R2 Flemoid\nA G1 Felix\nA B2 Felix\n\n46) ts52: Sacrifice Y3 Robin\nMove B1 Robin Bigbird\nMove B1 Bigbird Felix\nDiscover G2 Ts52 Y1 Scooter\nCatastrophe Felix Blue\n\n47) Felix: Sacrifice G3 Felix\nBuild B1 Ts52\nBuild Y2 Flemoid\nBuild Y3 Ralston\nCatastrophe Ts52 Blue\n\n48) ts52: Move B3 Robin Felix\n\n49) Felix: Sacrifice Y3 Ralston\nMove Y1 Ralston Ts52\nMove Y2 Flemoid Ts52\nMove Y2 Flemoid Ts52\nCatastrophe Ts52 Yellow\n\tFelix: Good game! Very close there at the end!\n\tts52: Wow, very well done. I missed that at the end. Good game!\n\tFelix: Thank you. I stared at the game for a LONG time before I finally discovered the ability to build enough yellows for that final rush.\n\n\nHomeworlds Online (SDG# 30436)\nVariants: &quot;Unrated, Sinister&quot;\nStarted: 2016.9.29, Ended: 2016.12.5\nParticipants: Draw5PlayAll (S), Felix (N), sompm (E)\nWinner: Felix\n\n1) Felix: Homeworld B2 G3 R3\n\n2) sompm: Homeworld B1 Y2 G3\n\tsompm: Was this supposed to be the teams game?\n\n3) Draw5PlayAll: Homeworld R1 B3 G3\n\tDraw5PlayAll: No, since it is 3P not 4P\n\n4) Felix: Build R1 Felix\n\n5) sompm: Build G1 Sompm\n\tFelix: Just normal sinister, right?\n\tDraw5PlayAll: Correct\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Felix: Trade R1 Y1 Felix\n\n8) sompm: Trade G1 Y1 Sompm\n\tFelix: You always end up having to eliminate me!\n\tDraw5PlayAll: That might have something to do with the order people join...\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) Felix: Build Y1 Felix\n\n11) sompm: Build Y2 Sompm\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) Felix: Discover Y1 Felix G1 Flemoid\n\n14) sompm: Discover Y1 Sompm B3 Bombs\n\n15) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n16) Felix: Build Y2 Felix\n\n17) sompm: Build G1 Sompm\n\n18) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n19) Felix: Trade Y2 G2 Felix\n\n20) sompm: Build G1 Sompm\n\n21) Draw5PlayAll: Build Y2 Draw5playall\n\n22) Felix: S G2 Felix\nB Y2 Flemoid\nB Y3 Felix\n\n23) sompm: Sacrifice G3 Sompm\nBuild Y3 Bombs\nBuild Y3 Bombs\nBuild Y3 Sompm\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Bad move, verrrrrry bad move\n\n25) Felix: Move Y1 Flemoid Bombs\nCatastrophe Bombs Yellow\n\tDraw5PlayAll: North&#39;s ship Y3 was sacrificed in the Felix system. North moved their Y1 ship from Femoid to bombs. North moved their Y1 ship from bombs to sompm. North moved their Y2 ship from Flemoid to bombs. A catastrophe occurred in the sompm system. All propulsion (Y) technology was lost. A catastrophe occurred in the bombs system. All propulsion (Y) technology was lost. The bombs system has been abandoned to the hyperspatial flux.\n\tDraw5PlayAll: Actually, Felix, if you want please leave a chat message and I will take back my G1 and blow bombs, letting you destroy the sompm homeworld yourself.\n\n26) sompm: Trade Y3 R3 Sompm\n\tFelix: Thanks for the offer, but I think I&#39;d like to just proceed this way for now :)\n\tsompm: I knew part of that was getting blown, I was banking on the Sinister politics to keep me alive; seems to have panned out.\n\n27) Draw5PlayAll: Build G2 Draw5playall\n\n28) Felix: Trade Y3 G3 Felix\n\n29) sompm: Discover G1 Sompm B3 Bones\n\n30) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\n31) Felix: Discover G3 Felix B1 Wesgorix\n\n32) sompm: Build G2 Bones\n\n33) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\n\n34) Felix: Build G3 Wesgorix\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\nBuild B1 G2\n\n36) Felix: Sacrifice G3 Wesgorix\nBuild G3 Wesgorix\nBuild Y1 Flemoid\nBuild Y3 Felix\n\tDraw5PlayAll: I clicked &quot;terminate game&quot;.\n\n37) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G2 B2 Wesgorix\nMove G2 B2 Wesgorix\nCatastrophe Wesgorix Green\n\tDraw5PlayAll: The game is ruined.\n\n38) Felix: Move R3 Felix Flemoid\n\n39) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\n40) Felix: Move Y1 Flemoid Bones\n\n41) Draw5PlayAll: Build G2 Draw5playall\n\tDraw5PlayAll: I think the loss of the other players ruined the game.\n\n42) Felix: Build R1 Flemoid\n\tFelix: You&#39;re welcome to resign then ;)\n\n43) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 B2\n\n44) Felix: Build Y3 Flemoid\n\n45) Draw5PlayAll: Trade Y3 R3 B2\n\n46) Felix: Move R3 Flemoid Bones\n\n47) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y3 B2\n\n48) Felix: Attack G2E Bones\n\n49) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 B2 Bones\nMove R3 Bones Sompm\n\n50) Felix: Build R1 Bones\n\n51) Draw5PlayAll: Attack Y2E Sompm\n\n52) Felix: Move Y2 Flemoid G2\n\n53) Draw5PlayAll: Trade Y1 R1 B2\n\n54) Felix: Sacrifice R3 Bones\nAttack B1S G2\nAttack B1S G2\nAttack B2S G2\n\n55) Draw5PlayAll: Attack R3E Sompm\n\tDraw5PlayAll: Tricky!\n\n56) Felix: Build R2 Bones\n\tFelix: :) It&#39;s kinda fun to have so many assets lying around in space. Nice work getting to sompm&#39;s system first!\n\n57) Draw5PlayAll: Move R3 Sompm Bones\n\n58) Felix: Sacrifice Y2 G2\nDiscover R2 Bones Y2 Slipstream\nMove R1 Bones Slipstream\n\n59) Draw5PlayAll: Sacrifice Y2 Sompm\nMove R3 Sompm Bones\nMove R3 Bones Slipstream\n\n60) Felix: Sacrifice Y3 Flemoid\nMove R2 Slipstream Draw5playall\nMove R1 Slipstream Draw5playall\nDiscover R1 Flemoid Y2 Insert\n\n61) Draw5PlayAll: Trade R1 B1 B2\n\n62) Felix: Sacrifice Y3 Felix\nMove B1 G2 Draw5playall\nMove B1 G2 Draw5playall\nMove B2 G2 Draw5playall\nCatastrophe Draw5playall Blue\n\tDraw5PlayAll: Only move.\n\n63) Draw5PlayAll: Sacrifice Y3 B2\nMove R3 Bones Draw5playall\nMove R3 Draw5playall Felix\nPass R3 Felix\n\tDraw5PlayAll: No! I thought I had an amazing trap...\n\n64) Felix: Move R1 Insert Draw5playall\nCatastrophe Draw5playall Red\n\tFelix: What was your trap going to be?\n\n\tFelix: Oh, I see. That wouldn&#39;t have accomplished anything as long as my Y3 was still there, though\n\tFelix: Good game! A bit hectic with all those resources.\n\tDraw5PlayAll: As I said, the removal of sompm ruined it.\n\nHomeworlds Online (SDG# 30489)\nVariants: &quot;Hard time&quot;\nStarted: 2016.10.4, Ended: 2016.10.10\nParticipants: foksieloy (S), Subhan64 (N)\nWinner: foksieloy\n\n1) Subhan64: Homeworld B3 G2 Y3\n\tfoksieloy: Hi! good luck, have fun!\n\n2) foksieloy: Homeworld B1 R3 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) foksieloy: Build G1 Foksieloy\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) Subhan64: Build Y1 Subhan64\n\n8) foksieloy: Build G1 Foksieloy\n\n9) Subhan64: Discover G1 Subhan64 G1 Kermit\n\n10) foksieloy: Discover G1 Foksieloy B2 Tibbers\n\n11) Subhan64: Build G2 Kermit\n\n12) foksieloy: Build G2 Tibbers\n\n13) Subhan64: Trade Y1 B1 Subhan64\n\n14) foksieloy: Build G3 Foksieloy\n\n15) Subhan64: Sacrifice B1 Subhan64\nTrade G1 Y1 Kermit\n\n16) foksieloy: Trade G2 Y2 Tibbers\n\n17) Subhan64: Discover G2 Kermit G3 Scooter\n\n18) foksieloy: Discover G3 Foksieloy B2 Annie\n\n19) Subhan64: Move Y1 Kermit Annie\n\n20) foksieloy: Build G1 Annie\n\n21) Subhan64: Sacrifice Y1 Annie\nMove G2 Scooter Annie\n\n\n22) foksieloy: Trade G1 R1 Annie\n\n23) Subhan64: Build Y1 Subhan64\n\n24) foksieloy: Attack G2 Annie\n\n25) Subhan64: Trade Y1 R1 Subhan64\n\n26) foksieloy: Build Y1 Tibbers\n\n27) Subhan64: Discover R1 Subhan64 G1 Scooter\n\n28) foksieloy: Discover Y2 Tibbers G1 Fishbone\n\n29) Subhan64: Build Y1 Subhan64\n\n30) foksieloy: Sacrifice G3 Annie\nBuild G2 Tibbers\nBuild G3 Annie\nBuild G3 Foksieloy\n\n31) Subhan64: Build Y2 Subhan64\n\n32) foksieloy: Move Y2 Fishbone Subhan64\nCatastrophe Subhan64 Y\n\tSubhan64: good game, but I know when I&#39;m licked!\n\tfoksieloy: Good game!\n\n\nHomeworlds Online (SDG# 30484)\nStarted: 2016.10.4, Ended: 2016.10.18\nParticipants: Draw5PlayAll (S), ladybugsfly (N)\nWinner: Draw5PlayAll\n\n1) ladybugsfly: Homeworld B3 Y2 G3\n\n2) Draw5PlayAll: Homeworld R3 B1 G3 *\n\n3) ladybugsfly: B G1 Ladybugsfly\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ladybugsfly: Trade G1 R1 Ladybugsfly\n\tDraw5PlayAll: Does north seat always go first?\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ladybugsfly: Build G1 Ladybugsfly\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) ladybugsfly: Discover G1 Ladybugsfly B1 Dumbledore\n\n10) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n11) ladybugsfly: B G1 Dumbledore\n\n12) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n13) ladybugsfly: T G1 Y1 Dumbledore\n\n14) Draw5PlayAll: Build B2 G2\n\n15) ladybugsfly: Build Y1 Dumbledore\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) ladybugsfly: D Y1 Dumbledore R2 Snape\n\n18) Draw5PlayAll: Build B2 G2\n\n19) ladybugsfly: S G3 Ladybugsfly\nB Y2 Dumbledore\nB Y3 Dumbledore\nB Y3 Snape\n\n20) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Draw5playall Snape\nMove Y1 Snape Dumbledore\nCatastrophe Dumbledore Yellow\n\tDraw5PlayAll: This could get interesting.\n\n21) ladybugsfly: Move Y3 Snape Dumbledore\n\n22) Draw5PlayAll: Trade B2 R2 G2\n\n23) ladybugsfly: M G1 Dumbledore Snape\n\tDraw5PlayAll: &quot;trade B2 R2 G2&quot;... wow, did not expect that pattern\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) ladybugsfly: Build G1 Snape\n\n26) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n27) ladybugsfly: Build G1 Snape\n\n28) Draw5PlayAll: Trade B2 Y2 G2\n\n29) ladybugsfly: M Y3 Dumbledore Ladybugsfly\n\n30) Draw5PlayAll: Build B1 G2\n\n31) ladybugsfly: Discover G1 Snape Y1 Hagrid\n\n32) Draw5PlayAll: Build B2 G2\n\n33) ladybugsfly: Build G2 Snape\n\n34) Draw5PlayAll: Build Y2 Draw5playall\n\n35) ladybugsfly: B Y3 Snape\n\n36) Draw5PlayAll: Discover Y2 Draw5playall B2 B2\n\n37) ladybugsfly: Build G2 Hagrid\n\n38) Draw5PlayAll: Build Y3 G2\n\n39) ladybugsfly: Move G2 Hagrid Ladybugsfly\n\n40) Draw5PlayAll: Trade G3 B3 Draw5playall\n\tDraw5PlayAll: I cannot take the suspense.\n\n41) ladybugsfly: Build G3 Hagrid\n\tladybugsfly: Haha, I needed a one-two punch and wasn&#39;t going to move before I had it.\n\n42) Draw5PlayAll: Discover Y3 G2 B3 B3\n\n43) ladybugsfly: M G1 Hagrid B2\n\n44) Draw5PlayAll: Trade Y3 G3 B3\n\n45) ladybugsfly: Sacrifice G3 Hagrid\nBuild G3 B2\nBuild G3 Ladybugsfly\nBuild R1 Ladybugsfly\n\n46) Draw5PlayAll: Move Y2 B2 B3\n\n47) ladybugsfly: Sacrifice G3 B2\nBuild G3 B2\nBuild R1 Ladybugsfly\nBuild Y1 Ladybugsfly\n\n48) Draw5PlayAll: Build Y3 G2\n\n49) ladybugsfly: Trade G3 R3 B2\n\n50) Draw5PlayAll: Build G3 B3\n\n51) ladybugsfly: Sacrifice Y3 Snape\nDiscover G1 Snape R3 Lupin\nMove G1 Snape Lupin\nMove G2 Snape Lupin\n\n52) Draw5PlayAll: Sacrifice Y2 G2\nMove G3 B3 Snape\nMove G3 Snape Lupin\nCatastrophe Lupin Green\n\n53) ladybugsfly: Sacrifice Y3 Ladybugsfly\nDiscover R1 Ladybugsfly G1 Ginny\nMove R1 Ladybugsfly Ginny\nDiscover R1 Ginny Y2 Krum\n\tDraw5PlayAll: Keep in mind you had to lose a Y3 to move them to Lupin.\n\tladybugsfly: No judgement, you don&#39;t have to justify your moves.\n\n54) Draw5PlayAll: Sacrifice G3 B3\nBuild Y3 Draw5playall\nBuild Y3 B3\nBuild R2 G2\n\n55) ladybugsfly: Move Y1 Snape Ginny\n\n56) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n57) ladybugsfly: Build R2 Ginny\n\n58) Draw5PlayAll: Move Y3 B3 Ginny\n\n59) ladybugsfly: M R2 Ginny B3\n\n60) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y3 Ginny Ladybugsfly\nMove Y2 B3 Ginny\nMove Y2 Ginny Ladybugsfly\nCatastrophe Ladybugsfly Yellow\n\n61) ladybugsfly: Move R1 Krum Draw5playall\n\tladybugsfly: Nice game! You had that one-two punch. ;)\n\n62) Draw5PlayAll: Sacrifice Y3 G2\nMove B2 G2 Ladybugsfly\nMove B1 G2 Ladybugsfly\nMove B1 G2 Ladybugsfly\nCatastrophe Ladybugsfly Blue\n\tDraw5PlayAll: This is why I get nervous every time I put a ship in a same-color star.\n\n\nHomeworlds Online (SDG# 30476)\nStarted: 2016.10.4, Ended: 2016.10.25\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\tts52: Have a good game!\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Build G1 Ts52\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) ts52: Discover G1 Ts52 B1 Gonzo\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) ts52: Build G1 Gonzo\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n12) ts52: Build G2 Gonzo\n\n13) Draw5PlayAll: Build G2 Draw5playall\n\n14) ts52: Trade G2 Y2 Gonzo\n\tDraw5PlayAll: Factory engaging in 3.... 2.... 1...\n\n15) Draw5PlayAll: Build B1 G2\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\tts52: :)\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild B2 G2\n\n18) ts52: Trade G3 R3 Gonzo\n\n19) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\tDraw5PlayAll: Fascinating. - Spock\n\n20) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild R1 Gonzo\n\tDraw5PlayAll: Going to yellow alert!!\n\n21) Draw5PlayAll: Trade B2 Y2 G2\n\n22) ts52: Trade G3 R3 Ts52\n\n23) Draw5PlayAll: Build G3 Draw5playall\n\n24) ts52: Move R3 Gonzo B2\n\n25) Draw5PlayAll: S G2 B2\nBuild Y1 Draw5playall\nBuild Y3 G2\n\n26) ts52: Sacrifice G3 Gonzo\nBuild G2 Ts52\nBuild G3 Gonzo\nBuild Y3 Gonzo\n\n27) Draw5PlayAll: Sacrifice Y2 G2\nMove G3 Draw5playall G2\nMove G3 G2 Gonzo\nCatastrophe Gonzo G\n\tDraw5PlayAll: Facing destruction or assimilation the crew aboard our Ambassador class starship decided to fire off the Long Range Construction Mechanism, which destroyed the ship but actually gave us a Galaxy-class wormhole generation ship! \n\n28) ts52: Move G2 Ts52 Gonzo\n\n29) Draw5PlayAll: Build B2 G2\n\tDraw5PlayAll: I had to :(\n\n30) ts52: Move Y2 Gonzo B2\n\tts52: fair enough\n\n31) Draw5PlayAll: Discover Y1 Draw5playall B2 B2&#39;\n\n32) ts52: Sacrifice G2 Ts52\nBuild Y2 Gonzo\nBuild Y3 B2\n\n33) Draw5PlayAll: Move Y1 Draw5playall B2&#39;\n\n34) ts52: Sacrifice Y2 Gonzo\nMove R3 B2 Draw5playall\nMove Y3 B2 Draw5playall\n\tDraw5PlayAll: DANG\n\n35) Draw5PlayAll: Move G3 Draw5playall G2\n\n\tDraw5PlayAll: I think the issue was the factories. You got all the good stuff and I just got some smalls and mediums. Once you allow a &quot;sac G3, build a bunch of 2&#39;s and 3&#39;s&quot; move you are toast unless you can counter it.\n\tts52: Factories are tough to defend against, but I think the issue this time was letting me get a monopoly on trade, which let me safely build up my large fleet. And also, not building up your own red supply as soon as I started. If you had even a medium red, you could&#39;ve held me off for a while.\n\tDraw5PlayAll: Monopoly on trade? I had three blue ships and you never had more than one...\n\tts52: Sorry, conflating different games. \n\nHomeworlds Online (SDG# 30501)\nVariants: &quot;Hard time&quot;\nStarted: 2016.10.6, Ended: 2016.11.3\nParticipants: Grosseteste (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y3 B1 G3\n\n2) Grosseteste: H Y3 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) agentofchaos: Discover G1 Agentofchaos Y2 Skaros\n\n6) Grosseteste: Trade G1 B1 Grosseteste\n\n7) agentofchaos: Build G1 Agentofchaos\n\tGrosseteste: Thanks for the game, looking forward to it.\n\n8) Grosseteste: Build G1 Grosseteste\n\tagentofchaos: Thanks, looking forward to it too\n\n9) agentofchaos: Build G2 Agentofchaos\n\n10) Grosseteste: Build G2 Grosseteste\n\n11) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Skaros\nBuild G3 Skaros\nBuild G3 Agentofchaos\n\n12) Grosseteste: Trade G2 R2 Grosseteste\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) Grosseteste: Build G1 Grosseteste\n\n15) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild R1 Agentofchaos\nBuild G3 Agentofchaos\n\tGrosseteste: Nice one, I&#39;m disappointed I didn&#39;t see that move.\n\tagentofchaos: I almost didn&#39;t see it either!\n\n16) Grosseteste: Discover G1 Grosseteste Y1 Charlie\n\n17) agentofchaos: Move G3 Skaros Charlie\n\n\tGrosseteste: Sorry about that, I haven&#39;t been able to give this the time I needed to.  Maybe later on I can give you a game.\n\nHomeworlds Online (SDG# 30444)\nVariants: &quot;Hard time&quot;\nStarted: 2016.10.6, Ended: 2016.10.9\nParticipants: Subhan64 (S), mxpf (N)\nWinner: Subhan64\n\n\nHomeworlds Online (SDG# 30492)\nStarted: 2016.10.7, Ended: 2016.10.26\nParticipants: Subhan64 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Subhan64: Homeworld B2 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Subhan64: Build G1 Subhan64\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Subhan64: Build G1 Subhan64\n\n7) ts52: Build B1 Ts52\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) Subhan64: Discover G1 Subhan64 G3 Scooter\n\n11) ts52: Build B2 Kermit\n\n12) Subhan64: Build G1 Subhan64\n\n13) ts52: Build B2 Ts52\n\n14) Subhan64: Trade G1 Y1 Subhan64\n\n15) ts52: Build B3 Kermit\n\n16) Subhan64: Move Y1 Subhan64 Scooter\n\n17) ts52: Trade B3 Y3 Kermit\n\n18) Subhan64: Build Y2 Scooter\n\n19) ts52: Build B3 Kermit\n\n20) Subhan64: Build Y2 Subhan64\n\n21) ts52: Trade B3 R3 Kermit\n\n22) Subhan64: Trade G3 B3 Subhan64\n\n23) ts52: Discover B2 Kermit G3 Oscar\n\n24) Subhan64: Move B3 Subhan64 Scooter\n\n25) ts52: Sacrifice Y3 Kermit\nMove R3 Kermit Oscar\nMove R3 Oscar Subhan64\nMove B2 Oscar Subhan64\n\n26) Subhan64: Sacrifice Y2 Scooter\nMove B3 Scooter Kermit\nMove B3 Kermit Ts52\nCatastrophe Ts52 B\n\n27) ts52: Sacrifice R3 Subhan64\nAttack Y2 Subhan64\nAttack Y1 Subhan64\nPass\n\tSubhan64: gg!\n\tSubhan64: gg!\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 30509)\nStarted: 2016.10.7, Ended: 2016.10.7\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: Homeworld B3 G1 Y3\n\n2) lordrefa: Homeworld G2 Y3 R3 *\n\n3) ladybugsfly: Build Y1 Ladybugsfly\n\n4) lordrefa: Discover R3 Lordrefa G1 Superduper\n\tDraw5PlayAll: ???\n\n\nHomeworlds Online (SDG# 30510)\nStarted: 2016.10.7, Ended: 2016.10.11\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: H B3 Y2 G3\n\n2) lordrefa: Homeworld B2 G1 Y3\n\n3) ladybugsfly: B G1 Ladybugsfly\n\n4) lordrefa: Build Y1 Lordrefa\n\n5) ladybugsfly: B G1 Ladybugsfly\n\n6) lordrefa: Discover Y1 Lordrefa B3 Poop\n\n7) ladybugsfly: Discover G1 Ladybugsfly Y1 Unicorn\n\n8) lordrefa: Build Y1 Lordrefa\n\n9) ladybugsfly: B G2 Unicorn\n\n10) lordrefa: Build Y2 Lordrefa\n\n11) ladybugsfly: Discover G2 Unicorn B3 Centaur\n\n12) lordrefa: Discover Y1 Poop Y2 Devilhorns\n\n13) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G2 Unicorn\nBuild G2 Centaur\nBuild G3 Ladybugsfly\n\n14) lordrefa: Discover Y1 Devilhorns G3 Newname\n\n15) ladybugsfly: Trade G2 Y2 Centaur\n\n16) lordrefa: Move Y3 Lordrefa Centaur\n\n17) ladybugsfly: Build Y3 Centaur\n\n18) lordrefa: Trade Y3 R3 Centaur\n\n19) ladybugsfly: M Y3 Centaur Lordrefa\n\n20) lordrefa: Attack Y2 Centaur\n\n21) ladybugsfly: Build Y3 Lordrefa\nCatastrophe Lordrefa Y\n\n\nHomeworlds Online (SDG# 30475)\nStarted: 2016.10.10, Ended: 2016.10.30\nParticipants: Subhan64 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) Subhan64: Homeworld Y2 B1 G3\n\tFelix: Welcome, and have fun! Have you played before?\n\n3) Felix: Build G1 Felix\n\tSubhan64: yes, but I always lose!\r\n\n\tDraw5PlayAll: I lost 7 times before winning once, and I still lose a lot.\n\tFelix: I had the same experience at first. It took me a good 10-15 games before I started winning. Stick with it!\n\n4) Subhan64: Build G1 Subhan64\n\n5) Felix: Trade G1 B1 Felix\n\n6) Subhan64: Build G1 Subhan64\n\n7) Felix: Build G1 Felix\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) Felix: Build B1 Felix\n\n10) Subhan64: Build Y1 Subhan64\n\n11) Felix: Trade B1 Y1 Felix\n\n12) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n13) Felix: Discover Y1 Felix G1 Flemoid\n\n14) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild Y2 Kermit\n\nBuild Y3 Subhan64\n\n15) Felix: Build Y3 Flemoid\n\n16) Subhan64: Move Y1 Kermit Flemoid\n\n17) Felix: Move Y3 Flemoid Kermit\n\tFelix: Nice move!\n\n18) Subhan64: Move Y1 Subhan64 Kermit\n\n19) Felix: Sacrifice B1 Felix\nTrade Y3 R3 Kermit\n\n20) Subhan64: Sacrifice Y1 Kermit\nMove Y2 Kermit Flemoid\n\n21) Felix: Build Y1 Flemoid\nCatastrophe Flemoid Yellow\n\n22) Subhan64: Trade Y3 R3 Subhan64\n\n23) Felix: Trade G1 B1 Felix\n\n24) Subhan64: Build R1 Subhan64\n\n25) Felix: Build G1 Felix\n\n26) Subhan64: Trade G2 Y2 Subhan64\n\n27) Felix: Trade G1 Y1 Felix\n\n28) Subhan64: Trade R1 B1 Subhan64\n\n29) Felix: Discover B1 Felix G1 Ralston\n\n30) Subhan64: Build B2 Subhan64\n\n31) Felix: B B2 Ralston\n\n32) Subhan64: Trade B2 G2 Subhan64\n\n33) Felix: Trade B1 Y1 Ralston\n\n34) Subhan64: Discover G2 Subhan64 Y3 Tweety\n\n35) Felix: Sacrifice G3 Felix\nBuild Y1 Ralston\nBuild Y3 Ralston\nBuild Y3 Felix\n\n36) Subhan64: Move Y2 Subhan64 Tweety\n\n37) Felix: Move Y1 Ralston Tweety\n\n38) Subhan64: Build G1 Subhan64\n\n39) Felix: Move Y1 Ralston Tweety\nCatastrophe Tweety Yellow\n\n40) Subhan64: Trade G1 Y1 Subhan64\n\n41) Felix: Build Y1 Ralston\n\n42) Subhan64: Build G1 Subhan64\n\n43) Felix: Trade Y3 G3 Felix\n\n44) Subhan64: Build R1 Subhan64\n\n45) Felix: Move Y1 Ralston Kermit\n\n46) Subhan64: Discover G1 Subhan64 Y3 Daisy\n\n47) Felix: Build Y2 Kermit\n\n48) Subhan64: Move R3 Subhan64 Daisy\n\n49) Felix: Build Y3 Ralston\n\n50) Subhan64: Move R3 Daisy Ralston\n\n51) Felix: Sacrifice Y3 Ralston\nMove R3 Kermit Subhan64\nMove Y1 Kermit Subhan64\nMove Y3 Ralston Kermit\n\n52) Subhan64: Build R1 Subhan64\n\n53) Felix: Sacrifice Y3 Kermit\nMove Y2 Kermit Subhan64\nCatastrophe Subhan64 Yellow\nMove B2 Ralston Daisy\nMove B2 Daisy Subhan64\n\n\tFelix: Good game! I hope you learned some new tricks, and I&#39;d love to rematch any time!\n\nHomeworlds Online (SDG# 30521)\nStarted: 2016.10.10, Ended: 2016.10.13\nParticipants: Subhan64 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Subhan64: Homeworld G2 B1 Y3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Subhan64: Discover G1 Subhan64 Y3 Big Bird\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) Subhan64: Build G1 Big\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n12) Subhan64: Build Y1 Subhan64\n\n13) Draw5PlayAll: Build B1 G2\n\n14) Subhan64: Discover Y1 Subhan64 Y3 Banana\n\n15) Draw5PlayAll: Build B2 G2\n\n16) Subhan64: Build Y1 Subhan64\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) Subhan64: Build Y2 Subhan64\n\n19) Draw5PlayAll: Trade B2 Y2 G2\n\n20) Subhan64: Trade Y2 B2 Subhan64\n\n21) Draw5PlayAll: Build B2 G2\n\n22) Subhan64: Sacrifice G1 Big\nBuild Y2 Banana\n\n23) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\n24) Subhan64: Build B3 Subhan64\n\n25) Draw5PlayAll: Sacrifice Y2 G2\nMove B1 G2 Big\nMove B1 Big Subhan64\nCatastrophe Subhan64 Blue\n\tDraw5PlayAll: Incorrect.\n\n26) Subhan64: Pass\n\n27) Draw5PlayAll: Build Y2 Draw5playall\n\n\tDraw5PlayAll: ????\n\tDraw5PlayAll: Was that intentional? It certainly was NOT a time forfeit.\n\tSubhan64: bad move on my part :(\n\tDraw5PlayAll: Did you resign intentionally or not?\n\tDraw5PlayAll: And what about when you passed? Was that intentional?\n\tSubhan64: yep. once I loose a star there is little hope\r\n\n\tDraw5PlayAll: Good game. Another?\n\tSubhan64: sure, set up a challenge\n\tDraw5PlayAll: I think I have one, but...\n\nHomeworlds Online (SDG# 30506)\nVariants: &quot;Hard time&quot;\nStarted: 2016.10.12, Ended: 2016.10.15\nParticipants: mxpf (S), zeder (N)\nWinner: zeder\n\n1) zeder: Homeworld G2 B1 Y3\n\n\tDraw5PlayAll: Mxpf has not responded in 16 days. You might want to challenge someone else.\n\nHomeworlds Online (SDG# 31850)\nStarted: 2017.4.6, Ended: 2017.6.12\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H G1 B2 Y3\n\tMobyNostromo: Have fun!\n\n2) wil: H B3 Y1 G3\n\twil: If you insist\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) wil: B G1 Wil\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) wil: B G1 Wil\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Green\n\n8) wil: D G1 Wil Y2 Y2\n\n9) MobyNostromo: T Y1 B1 Mobynostromo\n\n10) wil: B G2 Wil\n\n11) MobyNostromo: B B1 Mobynostromo\n\n12) wil: B G2 Y2\n\n13) MobyNostromo: D B1 Mobynostromo R3 Red Giant\n\n14) wil: M G2 Y2 Red\n\n15) MobyNostromo: M Y3 Mobynostromo Red\n\n16) wil: S G3 Wil\nB G2 Y2\nB G3 Y2\nB G3 Wil\n\n17) MobyNostromo: A G2 Red\n\twil: Now this is different\n\twil: I see what I should a done\n\n18) wil: T G2 B2 Wil\n\n19) MobyNostromo: M G2 Red Y2\nCatastrophe Y2 G\n\n20) wil: D B2 Wil Y2 Y2\n\n21) MobyNostromo: T B1 R1 Mobynostromo\n\n22) wil: B G1 Wil\n\n23) MobyNostromo: B R1 Mobynostromo\n\n24) wil: D G1 Wil Y2 Why2\n\n25) MobyNostromo: T R1 Y1 Mobynostromo\n\n26) wil: B G2 Wil\n\n27) MobyNostromo: B Y2 Green\n\n28) wil: Discover G1 Why2 Y3 Y3\n\n29) MobyNostromo: B R1 Mobynostromo\n\n30) wil: T G2 Y2 Wil\n\n31) MobyNostromo: B Y3 Mobynostromo\n\n32) wil: T G1 R1 Wil\n\n33) MobyNostromo: T R1 G1 Mobynostromo\n\n34) wil: Discover Y2 Wil G2 G2\n\n35) MobyNostromo: B R1 Mobynostromo\n\n36) wil: S G1 Y3\nB Y3 G2\n\n37) MobyNostromo: S Y3 Red\nM Y1 Green G2\nM Y2 Green G2\nM B1 Red G2\nC G2 Y\n\n38) wil: B R2 Wil\n\n39) MobyNostromo: B R2 Mobynostromo\n\n40) wil: T R2 Y2 Wil\n\n41) MobyNostromo: D R2 Mobynostromo G3 Gammagreen\n\n42) wil: B R2 Wil\n\n43) MobyNostromo: M Y1 Mobynostromo Gammagreen\n\n44) wil: M R2 Wil Y2\n\n45) MobyNostromo: B B1 G2\n\n46) wil: S G3 Wil\nB R2 Wil\nB R3 Wil\nB R3 Y2\n\n47) MobyNostromo: B R3 Gammagreen\n\n48) wil: D R2 Wil Y2 Whytwo\n\n49) MobyNostromo: B G1 Mobynostromo\n\n50) wil: T R3 G3 Wil\n\n51) MobyNostromo: D G1 Mobynostromo R3 Redgiant\n\n52) wil: B G2 Wil\n\n53) MobyNostromo: B G2 Mobynostromo\n\n54) wil: T R3 G3 Y2\n\n55) MobyNostromo: D G1 Mobynostromo R3 Redragon\n\n56) wil: M B2 Y2 Redragon\n\n57) MobyNostromo: B B1 G2\n\n58) wil: A G1 Redragon\n\n59) MobyNostromo: S Y3 Mobynostromo\nM B1 G2 Wil\nM B1 G2 Wil\nM B1 G2 Wil\nC Wil B\n\n60) wil: D Y2 Wil B3 B3\n\n61) MobyNostromo: T R1 Y1 Mobynostromo\n\n62) wil: Sacrifice G3 Wil\nBuild G2 Redragon\nBuild G3 Wil\nBuild Y3 B3\n\n63) MobyNostromo: S G2 Mobynostromo\nB Y3 Mobynostromo\nB Y3 Gammagreen\n\n64) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 Wil\nBuild R1 Y2\n\n65) MobyNostromo: M Y1 Mobynostromo Gammagreen\n\n66) wil: S Y3 B3\nM Y2 B3 Y2\nM Y2 Y2 Gammagreen\nM R1 Y2 Gammagreen\nC Gammagreen Y\n\n67) MobyNostromo: S Y3 Mobynostromo\nM R2 Gammagreen Mobynostromo\nM R3 Gammagreen Whytwo\nPass\n\n68) wil: D G3 Y2 Y3 Y3\n\n69) MobyNostromo: A R2 Whytwo\n\n70) wil: M G3 Y3 Mobynostromo\n\n71) MobyNostromo: S G1 Redgiant\nB R3 Mobynostromo\n\twil: You violated the always leave a big ship at home rule...  Challenge anytime.\n\n72) wil: S R2 Y2\nA R3 Mobynostromo\nA R2 Mobynostromo\n\n73) MobyNostromo: M R3 Whytwo Gammagreen\n\n74) wil: B R2 Mobynostromo\nC Mobynostromo R\n\twil: Gg\n\tMobyNostromo: I&#39;m still learning this one. Thanks for the game!\n\n\nHomeworlds Online (SDG# 30545)\nStarted: 2016.10.14, Ended: 2016.10.18\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: lordrefa\n\n1) ladybugsfly: Homeworld G3 B2 Y3\n\n2) lordrefa: Homeworld G3 B1 G3 *\n\n3) ladybugsfly: Build Y1 Ladybugsfly\n\n4) lordrefa: Build G1 Lordrefa\n\n5) ladybugsfly: Discover Y1 Ladybugsfly G1 Frodo\n\n6) lordrefa: Trade G1 Y1 Lordrefa\n\n7) ladybugsfly: Build Y1 Frodo\n\n8) lordrefa: Build Y2 Lordrefa\n\n9) ladybugsfly: Build Y2 Ladybugsfly\n\n10) lordrefa: Discover Y2 Lordrefa G2 Bilbo\n\n11) ladybugsfly: Trade Y2 B2 Ladybugsfly\n\n12) lordrefa: Build Y2 Bilbo\n\n13) ladybugsfly: Move B2 Ladybugsfly Frodo\n\n14) lordrefa: Build Y2 Lordrefa\n\n15) ladybugsfly: Build Y3 Ladybugsfly\n\n16) lordrefa: Move Y2 Bilbo Frodo\n\n17) ladybugsfly: Trade Y1 R1 Frodo\n\n18) lordrefa: Move Y2 Frodo Ladybugsfly\n\n19) ladybugsfly: Trade Y3 R3 Ladybugsfly\n\n20) lordrefa: Sacrifice G3 Lordrefa\nBuild Y1 Ladybugsfly\nBuild Y3 Ladybugsfly\nBuild Y3 Bilbo\nCatastrophe Ladybugsfly Yellow\n\n21) ladybugsfly: Build R1 Ladybugsfly\n\n22) lordrefa: Trade Y2 R2 Lordrefa\n\n23) ladybugsfly: Build B1 Frodo\n\n24) lordrefa: Move R2 Lordrefa Bilbo\n\n25) ladybugsfly: Discover B2 Frodo Y2 Gandalf\n\n26) lordrefa: Move R2 Bilbo Frodo\n\n27) ladybugsfly: Move B2 Gandalf Lordrefa\n\n28) lordrefa: Move Y3 Bilbo Lordrefa\n\n29) ladybugsfly: Discover B1 Frodo Y2 Gimli\n\n30) lordrefa: Attack R1 Frodo\n\n31) ladybugsfly: Build B1 Lordrefa\n\n32) lordrefa: Sacrifice Y2 Bilbo\nMove R1 Frodo Ladybugsfly\nMove R2 Frodo Ladybugsfly\nCatastrophe Ladybugsfly Red\n\n\nHomeworlds Online (SDG# 30546)\nStarted: 2016.10.15, Ended: 2016.11.22\nParticipants: Draw5PlayAll (S), Subhan64 (N)\nWinner: Draw5PlayAll\n\n1) Subhan64: Homeworld B3 G1 Y3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) Draw5PlayAll: Build G2 Draw5playall\n\n7) Subhan64: Build G2 Subhan64\n\n8) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n9) Subhan64: Discover G2 Subhan64 Y2 Tweety\n\n10) Draw5PlayAll: Build G2 Draw5playall\n\n11) Subhan64: Build G2 Tweety\n\tDraw5PlayAll: I offer you the chance to make this game very interesting...\n\n12) Draw5PlayAll: Trade G2 B2 Draw5playall\n\tDraw5PlayAll: I consider that a declination.\n\n13) Subhan64: Discover G2 Tweety G3 Kermit\n\n14) Draw5PlayAll: Discover B2 Draw5playall G3 G3\n\n15) Subhan64: Build G2 Tweety\n\n16) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G3\nBuild Y1 Draw5playall\n\n17) Subhan64: Build Y1 Subhan64\n\tDraw5PlayAll: You can still blow up my greens if you want.\n\tSubhan64: not worth it\n\n18) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G3\nBuild Y1 Draw5playall\n\n19) Subhan64: Move G2 Tweety G3\n\n20) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n21) Subhan64: Trade G1 Y1 Subhan64\n\n22) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack G2N G3\n\n23) Subhan64: Move Y1 Subhan64 Tweety\n\n24) Draw5PlayAll: Trade G2 R2 G3\n\n25) Subhan64: Discover Y1 Subhan64 G2 Scooter\n\n26) Draw5PlayAll: Move G1 Draw5playall Kermit\n\n27) Subhan64: Sacrifice G2 Tweety\nBuild Y2 Scooter\nBuild Y3 Subhan64\n\n28) Draw5PlayAll: Move Y1 Draw5playall G3\n\n29) Subhan64: Discover Y1 Scooter Y3 Blah\n\n30) Draw5PlayAll: Build G1 Kermit\nCatastrophe Kermit G\n\n31) Subhan64: Trade Y3 G3 Subhan64\n\n32) Draw5PlayAll: Build Y3 G3\n\n33) Subhan64: Trade G3 B3 Subhan64\n\n34) Draw5PlayAll: Move B1 G3 Tweety\n\n35) Subhan64: Trade B3 R3 Subhan64\n\n36) Draw5PlayAll: Build R1 G3\n\n37) Subhan64: Sacrifice Y1 Tweety\nMove Y2 Scooter Blah\n\n38) Draw5PlayAll: Build Y1 Draw5playall\n\n39) Subhan64: Build R1 Subhan64\n\n40) Draw5PlayAll: Move Y1 Draw5playall Blah\nCatastrophe Blah Yellow\n\n41) Subhan64: Move R3 Subhan64 Tweety\n\n42) Draw5PlayAll: Discover B1 Tweety G1 G1\n\n43) Subhan64: Build Y1 Subhan64\n\n44) Draw5PlayAll: Build B2 G3\n\n45) Subhan64: Build R1 Subhan64\n\n46) Draw5PlayAll: Build B2 G1\n\n47) Subhan64: Move R3 Tweety G1\n\n48) Draw5PlayAll: Build B3 G1\n\n49) Subhan64: Attack B3 G1\n\n50) Draw5PlayAll: Build B3 G1\nCatastrophe G1 Blue\n\n51) Subhan64: Build R2 G1\n\n52) Draw5PlayAll: Build R3 G3\n\n53) Subhan64: Sacrifice Y1 Subhan64\nMove R2 G1 G3\nCatastrophe G3 R\n\n54) Draw5PlayAll: Build G1 Draw5playall\n\n55) Subhan64: Trade R1 Y1 Subhan64\n\n56) Draw5PlayAll: Build G2 Draw5playall\n\n57) Subhan64: Sacrifice Y1 Subhan64\nMove R3 G1 G3\n\n58) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover Y3 G3 G1 G1\nMove B2 G3 G1\n\n59) Subhan64: Attack Y1 G3\n\tDraw5PlayAll: Dang\n\n60) Draw5PlayAll: Sacrifice B2 G3\nTrade G1 R1 Draw5playall\nTrade B1 G1 G3\n\n61) Subhan64: Attack G1 G3\n\n62) Draw5PlayAll: Build Y1 G1\n\n63) Subhan64: Build R1 G3\n\n64) Draw5PlayAll: Build B1 G1\n\n65) Subhan64: Move R3 G3 Draw5playall\n\n66) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack R3 Draw5playall\n\n67) Subhan64: Build G2 G3\n\n68) Draw5PlayAll: S Y1 G1\nMove G2 Draw5playall G3\nCatastrophe G3 G\n\tDraw5PlayAll: Incorrect. I believe you were hoping I would do a straight attack?\n\n69) Subhan64: Build Y1 Subhan64\n\tSubhan64: that&#39;s what I was expecting,  yes. I overlooked the sacrifice move\r\n\n\n70) Draw5PlayAll: Build G1 Draw5playall\n\n71) Subhan64: Build Y1 Subhan64\n\n72) Draw5PlayAll: Build Y1 G1\n\n73) Subhan64: Build R1 Subhan64\n\n74) Draw5PlayAll: Build G2 Draw5playall\n\n75) Subhan64: Discover Y1 Subhan64 Y2 Bb\n\n76) Draw5PlayAll: Sacrifice Y1 G1\nDiscover G2 Draw5playall B3 B3\n\n77) Subhan64: Build R1 Subhan64\n\n78) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3\nBuild G2 B3\nBuild G3 Draw5playall\n\n79) Subhan64: Trade Y3 G3 Subhan64\n\n80) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Draw5playall\n\n81) Subhan64: Build Y1 Subhan64\n\n82) Draw5PlayAll: Trade G2 Y2 B3\n\tDraw5PlayAll: Deliberately having an unstable base\n\n83) Subhan64: Trade Y1 B1 Subhan64\n\n84) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 B3\nBuild Y2 B3\nBuild Y3 G1\n\n85) Subhan64: Move Y1 Bb B3\nCatastrophe B3 Yellow\n\n86) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3\nBuild B2 G1\nBuild G3 Draw5playall\n\n87) Subhan64: Discover B1 Subhan64 Y2 Bb\n\n88) Draw5PlayAll: Sacrifice B2 G1\nTrade R2 Y2 Draw5playall\nTrade G2 Y2 B3\n\n89) Subhan64: Build Y1 Subhan64\n\n\n90) Draw5PlayAll: Sacrifice Y3 G1\nMove G2 B3 Bb\nMove G2 B3 Bb\nMove G2 Bb Subhan64\n\n91) Subhan64: Attack G2 Subhan64\n\n92) Draw5PlayAll: Move G2 Bb Subhan64\nCatastrophe Subhan64 Green\n\n\tDraw5PlayAll: Good game\n\tSubhan64: gg\n\nHomeworlds Online (SDG# 30523)\nStarted: 2016.10.17, Ended: 2016.11.1\nParticipants: Felix (S), zeder (N)\nWinner: Felix\n\n1) zeder: Homeworld G3 B1 Y3\n\n2) Felix: Homeworld R2 G3 B3\n\tzeder: Hello again!\n\tFelix: Hello! I hope you have fun!\n\n3) zeder: Build Y1 Zeder\n\tDraw5PlayAll: I find the blue ship to be the most impractical starting choice, preferring a blue star instead.\n\n4) Felix: Build B1 Felix\n\tFelix: @Draw5 it can have its advantages, especially if the opponent choose a b1 in their homeworld. :)\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) Felix: Build B1 Felix\n\n7) zeder: Trade Y3 B3 Zeder\n\n8) Felix: Trade B1 Y1 Felix\n\n9) zeder: Trade G1 Y1 Zeder\n\tzeder: I don&#39;t know if trading for b3 was good idea but i felt scared that i would not be ables to get blue soon\n\n10) Felix: Trade B1 G1 Felix\n\tFelix: It was probably the best move at the moment, because I WAS trying to lock you out of blue. I kind of forced you into that move but I think it will work out better for you to have the blue.\n\tFelix: Once you build another blue ship you could always trade back your b3 for something else.\n\n11) zeder: Build B1 Zeder\n\n12) Felix: Discover G1 Felix B1 Bazoik\n\tzeder: i am finding this game one of tempo... and trading back and forth loses me tempo. :(\n\tDraw5PlayAll: Imagine my plight when I have to keep trading my initial G3 to prevent attacks...\n\n13) zeder: Discover B1 Zeder G2 Groo\n\tFelix: Tempo is so hard to maintain at times. I&#39;m not doing it too well this game either.\n\n14) Felix: Build B2 Felix\n\n15) zeder: Build B2 Groo\n\n16) Felix: Discover B2 Felix G1 Wastle\n\n17) zeder: Trade B1 R1 Groo\n\n18) Felix: Build B1 Wastle\n\n19) zeder: Trade B3 G3 Zeder\n\n20) Felix: Trade B2 Y2 Wastle\n\n21) zeder: Build B2 Groo\n\n22) Felix: Build B2 Felix\n\n23) zeder: Trade B2 Y2 Groo\n\n24) Felix: Trade B2 R2 Felix\n\n25) zeder: Build B2 Groo\n\n26) Felix: Build B2 Felix\n\n27) zeder: Trade B2 R2 Groo\n\n28) Felix: Build G1 Bazoik\n\n29) zeder: Move R2 Groo Bazoik\n\n30) Felix: Sacrifice G1 Bazoik\nBuild Y1 Wastle\n\n31) zeder: Sacrifice G3 Zeder\nBuild Y2 Groo\nBuild Y3 Zeder\nBuild B2 Groo\n\n32) Felix: Sacrifice G1 Bazoik\nBuild Y3 Felix\n\n33) zeder: Sacrifice Y3 Zeder\nMove R1 Groo Bazoik\nMove R1 Bazoik Felix\nMove R2 Bazoik Felix\nCatastrophe Felix R\n\n34) Felix: Sacrifice Y2 Wastle\nMove B3 Felix Groo\nMove B3 Groo Zeder\n\n35) zeder: Sacrifice Y2 Groo\nMove B2 Groo Zeder\nMove B2 Groo Zeder\nCatastrophe Zeder B\n\tFelix: Oh. Nice!\n\n36) Felix: Move Y1 Wastle Zeder\n\tzeder: difficult decisions\n\n37) zeder: Build Y2 Groo\n\tzeder: I am in big troubles!\n\tFelix: Yeah, I think you are, haha. But nice decision there. It saved you for the moment, but you don&#39;t have many ships to work with!\n\n38) Felix: Build Y2 Zeder\n\tzeder: maybe in 1 year I will be a challengings opponent. :)\n\n39) zeder: Move Y2 Groo Zeder\nCatastrophe Zeder Y\n\n\tFelix: Oh, I think you will be sooner than that. You have a great instinct for the game!\n\tzeder: Seppuku!\n\tzeder: Thank you again for the game!\n\tFelix: Nice suicide :) And no problem! Sorry if I was a bit tough on you. If you&#39;d like to play again, I&#39;m happy any time, and I can even try to coach you a bit if I see you making any mistakes.\n\nHomeworlds Online (SDG# 30557)\nVariants: &quot;Hard time&quot;\nStarted: 2016.10.19, Ended: 2016.10.28\nParticipants: foksieloy (S), Subhan64 (N)\nWinner: foksieloy\n\n1) Subhan64: Homeworld Y3 B1 G3\n\n2) foksieloy: Homeworld R2 B1 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) foksieloy: Build G1 Foksieloy\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) Subhan64: Build G1 Subhan64\n\tfoksieloy: Btw, hi, good luck and have fun! :)\n\tSubhan64: txx, u2!\n\n8) foksieloy: Build G1 Foksieloy\n\n9) Subhan64: Trade G1 B1 Subhan64\n\n10) foksieloy: Discover G1 Foksieloy Y3 Tibbers\n\n11) Subhan64: Build G1 Subhan64\n\n12) foksieloy: Build G1 Tibbers\n\n13) Subhan64: Build G2 Subhan64\n\n14) foksieloy: Build G2 Tibbers\n\n15) Subhan64: Discover G1 Subhan64 Y2 Tweety\n\n16) foksieloy: Discover G2 Tibbers B2 Annie\n\n17) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Tweety\nBuild G3 Subhan64\nBuild B2 Subhan64\n\n18) foksieloy: Build G3 Annie\n\n19) Subhan64: Sacrifice B1 Subhan64\nTrade G2 B2 Tweety\n\n20) foksieloy: Trade G3 R3 Annie\n\n21) Subhan64: Move B2 Subhan64 Tweety\n\n22) foksieloy: Sacrifice Y1 Foksieloy\nMove R3 Annie Subhan64\n\n23) Subhan64: Sacrifice B2 Tweety\nTrade Y1 R1 Subhan64\nTrade G2 R2 Subhan64\n\n24) foksieloy: Attack G3 Subhan64\n\n\tSubhan64: gg!\r\n\n\tfoksieloy: GG!\n\tSubhan64: gg thanks\n\nHomeworlds Online (SDG# 30555)\nStarted: 2016.10.19, Ended: 2016.10.25\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: Homeworld Y3 G2 B3\n\n2) lordrefa: Homeworld B3 G1 Y3\n\n3) ladybugsfly: B B1 Ladybugsfly\n\n4) lordrefa: Build Y1 Lordrefa\n\n5) ladybugsfly: Build B1 Ladybugsfly\n\n6) lordrefa: Build Y1 Lordrefa\n\n7) ladybugsfly: Discover B1 Ladybugsfly G1 Peterpan\n\n8) lordrefa: Discover Y1 Lordrefa G2 Mrsmee\n\n9) ladybugsfly: T B1 Y1 Peterpan\n\n10) lordrefa: Build Y2 Mrsmee\n\n11) ladybugsfly: Build Y2 Peterpan\n\n12) lordrefa: Trade Y1 B1 Lordrefa\n\n13) ladybugsfly: Discover B1 Ladybugsfly G1 Hook\n\n14) lordrefa: Build Y1 Lordrefa\n\n15) ladybugsfly: Sacrifice Y1 Peterpan\nDiscover B1 Hook G2 Lostboys\n\n16) lordrefa: Move B1 Lordrefa Mrsmee\n\n17) ladybugsfly: B B1 Lostboys\n\n18) lordrefa: Build B2 Mrsmee\n\n19) ladybugsfly: Build B2 Ladybugsfly\n\n20) lordrefa: Move B1 Mrsmee Peterpan\n\n21) ladybugsfly: T B2 R2 Ladybugsfly\n\n22) lordrefa: Trade B1 R1 Peterpan\n\n23) ladybugsfly: Sacrifice Y2 Peterpan\nMove B1 Lostboys Lordrefa\nMove B1 Lostboys Lordrefa\n\n24) lordrefa: Build R1 Peterpan\n\n25) ladybugsfly: Build B1 Ladybugsfly\n\n26) lordrefa: Sacrifice R1 Peterpan\nAttack B1 Lordrefa\n\n27) ladybugsfly: Build B2 Lordrefa\nCatastrophe Lordrefa B\n\n28) lordrefa: Trade Y2 B2 Mrsmee\n\n29) ladybugsfly: Discover B1 Ladybugsfly Y1 Hook\n\n30) lordrefa: Move B2 Mrsmee Lordrefa\n\n31) ladybugsfly: Trade B1 G1 Hook\n\n32) lordrefa: Move B2 Mrsmee Hook\n\n33) ladybugsfly: Build G2 Hook\n\n34) lordrefa: Build R1 Peterpan\n\n35) ladybugsfly: Discover G2 Hook Y2 Wendy\n\n36) lordrefa: Move Y3 Lordrefa Wendy\n\n37) ladybugsfly: Sacrifice G2 Wendy\nBuild G2 Hook\nBuild B1 Ladybugsfly\n\n38) lordrefa: Sacrifice Y3 Wendy\nMove B2 Hook Ladybugsfly\nMove B2 Lordrefa Ladybugsfly\nMove R1 Peterpan Mrsmee\nCatastrophe Ladybugsfly Blue\n\n39) ladybugsfly: Build G3 Hook\n\n40) lordrefa: Build Y2 Lordrefa\n\n41) ladybugsfly: Discover G3 Hook Y3 Tigerlily\n\n42) lordrefa: Build Y2 Mrsmee\n\n43) ladybugsfly: Move G3 Tigerlily Lordrefa\n\n44) lordrefa: Build Y2 Mrsmee\n\n45) ladybugsfly: Sacrifice G2 Hook\nBuild G2 Lordrefa\nBuild G3 Lordrefa\nCatastrophe Lordrefa G\n\n\nHomeworlds Online (SDG# 30551)\nStarted: 2016.10.23, Ended: 2016.11.23\nParticipants: orangeblood (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) orangeblood: Homeworld B1 Y2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\torangeblood: Hi! It&#39;s time to play again, because my Pyramid Arcade kickstarter should arrive this week (hopefully). I need to re-learn the game so I can more easily teach others. The only two games I&#39;ve ever played are with you, and it&#39;s been awhile.\n\tFelix: Welcome back! I&#39;m happy to help you brush up on your skills before your Arcade arrives. I didn&#39;t realize they were arriving so soon. I hope mine arrives this week as well!\n\n4) orangeblood: Build G1 Orangeblood\n\n5) Felix: Trade G1 Y1 Felix\n\torangeblood: Trying to follow the Kickstarter updates... it&#39;s not clear they have actually shipped U.S. orders yet. Someone said they might ship Thursday. Where do you live? I&#39;m near D.C.\n\tFelix: I&#39;m in NC. I think I remember them saying they should arrive by Nov 3 at the latest for US residents. Here&#39;s hoping it&#39;s sooner!\n\n6) orangeblood: Trade G1 B1 Orangeblood\n\n7) Felix: Build Y1 Felix\n\n8) orangeblood: Build G1 Orangeblood\n\n9) Felix: Discover Y1 Felix G2 Flemoid\n\n10) orangeblood: Discover G1 Orangeblood Y3 Wishbone\n\n11) Felix: Build G1 Felix\n\n12) orangeblood: Build G1 Orangeblood\n\n13) Felix: Discover G1 Felix B2 Ralston\n\n14) orangeblood: Build G2 Wishbone\n\n15) Felix: Build Y1 Felix\n\torangeblood: Still no game here in Virginia. Gak.\n\tFelix: Nor here. They just sent out an update saying most of them were shipped over the last few days, so hopefully this week!\n\n16) orangeblood: Discover G1 Orangeblood G3 Bevo\n\n17) Felix: Build G2 Felix\n\n18) orangeblood: Move B1 Orangeblood Wishbone\n\n19) Felix: Move Y1 Felix Ralston\n\n20) orangeblood: T G2 Y2 Wishbone\n\n21) Felix: Build G2 Ralston\n\n22) orangeblood: Move Y2 Wishbone Orangeblood\n\torangeblood: I got the game yesterday... it looks great!\n\tFelix: Same here! Loving it so far!\n\n23) Felix: Build Y2 Flemoid\n\tDraw5PlayAll: Was Homeworlds the first game you tried out?\n\n24) orangeblood: Move Y2 Orangeblood Bevo\n\torangeblood: Homeworlds is the only pyramid game I&#39;ve ever played, and only here at SDG. I am going to play F2F with one of my co-workers this week, however. I need to learn some of the other games. :)\n\tDraw5PlayAll: Felix?\n\tFelix: @orangeblood There&#39;s some great games in there. I am really enjoying Petal Battle at the moment. Good luck getting people hooked on it!\r\n\r\n@Draw5 - no, my first play was Treehouse, and then IceDice. I didn&#39;t play homeworlds until I had a bigger set of pyramids.\n\n25) Felix: Build Y3 Ralston\n\n26) orangeblood: Build Y3 Bevo\n\torangeblood: Yeah I&#39;ve been reading the rules... several I can&#39;t wait to try.\n\n27) Felix: Trade Y3 R3 Ralston\n\n28) orangeblood: Trade G3 R3 Orangeblood\n\n29) Felix: Build Y3 Ralston\n\n30) orangeblood: Sacrifice Y2 Bevo\nMove Y3 Bevo Orangeblood\nMove G1 Bevo Orangeblood\n\n31) Felix: Discover G2 Ralston B3 Bazoik\n\n32) orangeblood: Build G3 Wishbone\n\torangeblood: I&#39;m just sort of flailing about, haha.\n\tFelix: Haha, no worries. It may have been a bad idea to trade away your G ship in your home system. It&#39;s better to try to build another G first before trading. That&#39;s a good rule of thumb for any color, really. Always better to build a second ship of any color and THEN trade that for a different ship. Otherwise you are losing one color ability to gain another, and it&#39;s not really a net gain.\n\n33) Felix: Build G3 Bazoik\n\n34) orangeblood: Build R1 Orangeblood\n\torangeblood: Makes sense!\r\n\r\nGot to play a 3-player World War 5 game today... and it was a lot of fun. More strategy than I thought.\n\tFelix: That&#39;s a game I&#39;d like to see on SDG someday! I still haven&#39;t played yet.\n\n35) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild R1 Ralston\n\tDraw5PlayAll: While we are at it I would like to see Zark City here.\n\tDraw5PlayAll: And RAMbots.\n\n36) orangeblood: Discover Y3 Orangeblood B3 Santorini\n\torangeblood: Finally got to teach Homeworlds to a co-worker today... first f2f game ever. Lots of fun. Also tried Hijinks, which was way better than I thought it would be. Color Wheel, on the other hand... well, I&#39;m not a big fan of puzzles. :)\n\torangeblood: Also, you may have noticed my attempt at the investment/banker strategy this game was.... suboptimal.\n\n37) Felix: Move Y1 Flemoid Bazoik\n\tFelix: My wife and I played hijinks and quite enjoyed it! Deceptively complex for such a seemingly simple game.\r\n\r\nAnd yeah... the investment/banking is tough to pull off! I have rarely done it successfully. Good attempt though!\n\n38) orangeblood: Move R1 Orangeblood Wishbone\n\n39) Felix: Move R3 Ralston Bazoik\n\n40) orangeblood: S G3 Wishbone\nBuild G3 Wishbone\nB R2 Wishbone\nB R2 Orangeblood\n\n41) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Bazoik\nBuild R3 Ralston\n\n42) orangeblood: M Y3 Santorini Orangeblood\n\n43) Felix: Trade R3 B3 Bazoik\n\n44) orangeblood: Discover R3 Orangeblood R3 Red Cloud\n\n45) Felix: Move Y2 Flemoid Bazoik\n\n46) orangeblood: Sacrifice G3 Wishbone\nB G2 Orangeblood\nB G3 Wishbone\nB B1 Wishbone\n\torangeblood: I think you&#39;ve got me pretty good.\n\torangeblood: We played a couple of 3-player Zark City games today... and it&#39;s really a good game. Great finishes.\n\tDraw5PlayAll: ZC and Rambots and Lunar Invaders deserve to be on sdg.\n\torangeblood: I haven&#39;t tried Lunar Invaders yet!\n\n47) Felix: Sacrifice Y3 Ralston\nMove Y1 Bazoik Orangeblood\nMove Y2 Bazoik Orangeblood\nCatastrophe Orangeblood Yellow\nMove B3 Bazoik Orangeblood\n\tFelix: I haven&#39;t played Zark City or Lunar Invaders yet but I&#39;m excited to try them both!\n\n\tFelix: The coup de grace!\n\torangeblood: Huh. Somehow I overlooked your second yellow ship in bazoik.\n\torangeblood: Well played!\n\torangeblood: Anyway, mission accomplished for me to brush up on the rules. I&#39;ve already taught Homeworlds to a friend with the PA set. Thanks again!\n\tFelix: Thank you! Well played yourself. Glad to help you brush up!\n\nHomeworlds Online (SDG# 30530)\nVariants: &quot;Hard time&quot;\nStarted: 2016.10.25, Ended: 2016.10.28\nParticipants: mxpf (S), Ryzorrin (N)\nWinner: Ryzorrin\n\n1) Ryzorrin: Homeworld R1 G2 B3\n\tRyzorrin: Hello!\r\n\n\n\nHomeworlds Online (SDG# 30584)\nVariants: &quot;Hard time&quot;\nStarted: 2016.10.29, Ended: 2016.11.3\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n\tFelix: Good luck and have fun!\n\tFelix: Oh dear :( I hate to win that way.\n\tdlwillson: Aw, shucks! I hate to lose that way! I must have missed the email.\n\tFelix: Sorry! I&#39;m happy to rematch when the opportunity arises.\n\nHomeworlds Online (SDG# 30553)\nStarted: 2016.10.31, Ended: 2017.1.4\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld R1 B2 G3\n\tts52: Have a good game!\n\tFelix: Likewise! I always enjoy playing against you.\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Indeed\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build B1 Felix\n\n9) ts52: Build G1 Ts52\n\n10) Felix: Build G2 Felix\n\n11) ts52: Build G2 Gonzo\n\n12) Felix: Trade G2 Y2 Felix\n\n13) ts52: Build G2 Gonzo\n\n14) Felix: Build G2 Felix\n\n15) ts52: Trade G2 Y2 Gonzo\n\n16) Felix: Discover G2 Felix B3 Rails\n\n17) ts52: Trade G1 R1 Ts52\n\n18) Felix: Trade B1 R1 Felix\n\n19) ts52: Trade G2 B2 Gonzo\n\n20) Felix: Build R2 Felix\n\n21) ts52: Build R2 Ts52\n\n22) Felix: Move R2 Felix Rails\n\n23) ts52: Move R2 Ts52 Gonzo\n\n24) Felix: Discover R1 Felix G3 Bazoik\n\n25) ts52: Sacrifice G3 Ts52\nBuild R2 Gonzo\nBuild R3 Gonzo\nBuild R3 Ts52\n\n26) Felix: Build R3 Rails\n\n27) ts52: Move R2 Gonzo Rails\n\n28) Felix: Sacrifice R2 Rails\nAttack R2 Rails\nPass\n\n29) ts52: Trade R3 G3 Ts52\n\n30) Felix: Trade R2 Y2 Rails\n\n31) ts52: Move R2 Gonzo Bazoik\n\n32) Felix: Build R2 Rails\n\n33) ts52: Attack R1 Bazoik\n\n34) Felix: Discover R2 Rails G2 Ruby\n\n35) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n36) Felix: Move G2 Rails Gonzo\nCatastrophe Gonzo Green\n\n37) ts52: Move B2 Gonzo Bazoik\n\n38) Felix: Build G1 Felix\n\n39) ts52: Move G1 Ts52 Gonzo\n\n40) Felix: Move G1 Felix Rails\n\n41) ts52: Build Y1 Gonzo\n\n42) Felix: Build G1 Felix\n\n43) ts52: Build G2 Ts52\n\n44) Felix: Build Y1 Rails\n\n45) ts52: Move Y1 Gonzo Bazoik\n\n46) Felix: Move Y2 Rails Ruby\n\n47) ts52: Build B1 Bazoik\n\n48) Felix: Sacrifice G3 Felix\nBuild Y1 Rails\nBuild Y3 Ruby\nBuild Y3 Felix\n\n49) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n50) Felix: Move G1 Rails Gonzo\nCatastrophe Gonzo Green\n\n51) ts52: Sacrifice G2 Ts52\nBuild R2 Ts52\nBuild R3 Gonzo\n\n52) Felix: Discover B1 Felix G3 Raptor\n\n53) ts52: Move R3 Gonzo Raptor\n\n54) Felix: Sacrifice Y1 Rails\nMove B1 Raptor Ruby\n\n55) ts52: Build Y1 Bazoik\n\n56) Felix: Build B3 Ruby\n\n57) ts52: Move B1 Bazoik Felix\n\n58) Felix: Move B3 Ruby Bazoik\n\tFelix: Ooh, that was sneaky. Very nice.\n\n59) ts52: Attack G1 Felix\n\tDraw5PlayAll: I fail to understand\n\tFelix: Moving his b1 to my homeworld made it so A) I have to deal with the threat of his b1 and B) he opened up the opportunity to build the remaining b3 himself. A great move.\n\tts52: Thanks! Although I hadn&#39;t considered your counter move. Now if I build the b3, you can immediately steal it from me.\n\n60) Felix: Sacrifice R2 Ruby\nAttack B1 Felix\nAttack G1 Felix\n\tFelix: And thank you! It took me a while to come up with that countermove, and I was soiling my pants there for a while first :)\n\n61) ts52: Build G1 Ts52\n\n62) Felix: Build B3 Ruby\n\n63) ts52: Sacrifice Y2 Gonzo\nMove Y1 Bazoik Felix\nMove Y1 Bazoik Felix\nCatastrophe Felix Yellow\n\n64) Felix: Sacrifice Y2 Ruby\nMove Y3 Ruby Rails\nMove Y3 Rails Felix\n\tFelix: Aw, man, how did I miss that?\n\n65) ts52: Trade R1 Y1 Bazoik\n\n66) Felix: Sacrifice R3 Rails\nAttack Y1 Bazoik\nAttack R2 Bazoik\nAttack B2 Bazoik\n\tts52: Probably because it wasn&#39;t the killing blow I&#39;d hoped it would be when I started thinking about it several turns ago.\n\n67) ts52: Trade R2 Y2 Ts52\n\tFelix: Ah yes, I suppose that must be it :) It was a bold strike, but I think it might end up leaving you a bit worse off than before.\n\n68) Felix: Trade B3 Y3 Bazoik\n\tts52: I think you may be right. It cost all of my transport, and for what real gain? Oh well.\n\n69) ts52: Move Y2 Ts52 Gonzo\n\n70) Felix: Build B3 Bazoik\n\n71) ts52: Move G1 Ts52 Gonzo\n\n72) Felix: Trade B3 R3 Ruby\n\n73) ts52: Build G1 Ts52\n\n74) Felix: Build G2 Felix\n\n75) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n76) Felix: Sacrifice G2 Felix\nBuild Y2 Felix\nBuild Y2 Rails\n\n77) ts52: Move Y2 Gonzo Raptor\n\n78) Felix: Build G2 Felix\n\n79) ts52: Move R3 Gonzo Rails\n\n80) Felix: Sacrifice Y1 Rails\nMove Y2 Rails Ruby\n\n81) ts52: Trade G3 B3 Ts52\n\n82) Felix: S Y3 Bazoik\nM B2 Bazoik Ruby\nM B1 Ruby Ts52\nM B2 Ruby Ts52\nC Ts52 Blue\n\n83) ts52: Sacrifice Y2 Raptor\nMove R3 Rails Ruby\nMove R3 Ruby Ts52\n\tts52: Sorry for running out of time, thanks for being patient.\n\n84) Felix: Sacrifice Y3 Felix\nMove Y2 Ruby Ts52\nMove Y1 Bazoik Gonzo\nMove Y1 Gonzo Ts52\n\n85) ts52: Sacrifice R3 Raptor\nAttack Y1 Ts52\nAttack Y2 Ts52\nPass\n\tFelix: No problem! I understand with the holidays, and I won&#39;t force someone to surrender as long as the system allows it!\n\tts52: Thanks!\n\tts52: Though I think you&#39;ve got this one wrapped up.\n\n86) Felix: Move Y2 Felix Ts52\nCatastrophe Ts52 Yellow\n\tFelix: Yes, I suppose that&#39;s a bummer to come back from holiday just to suffer defeat, but good game, and I look forward to the next!\n\tts52: It was an excellent game. Always happy to play another.\n\n\nHomeworlds Online (SDG# 30579)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.1, Ended: 2016.11.4\nParticipants: mxpf (S), zeder (N)\nWinner: zeder\n\n1) zeder: Homeworld G3 B1 Y3\n\n\tDraw5PlayAll: Just so you know, MXPF has not signed on in over a month.\n\tzeder: Damnit!  I forgot about this person! How do he keep creating games?!\n\tDraw5PlayAll: Standing Challenge. It is a feature where you can have a challenge create itself automatically. Too bad it leads to this situation.\r\n\r\nIt is similar to how you always get spectators who have not signed on in years. They chose the option to monitor all Homeworlds games.\n\tzeder: Thank you for this informations.  I will remember this person next time.\n\tDraw5PlayAll: Withdraw the planetary regime plans -- our enemy&#39;s Life Support Systems are going to blow.\n\nHomeworlds Online (SDG# 30611)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.3, Ended: 2016.11.6\nParticipants: Subhan64 (S), mxpf (N)\nWinner: Subhan64\n\n\tDraw5PlayAll: Last I checked mxpf is inactive\n\nHomeworlds Online (SDG# 30647)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.5, Ended: 2016.11.8\nParticipants: Subhan64 (S), Pheonixian (N)\nWinner: Subhan64\n\n\nHomeworlds Online (SDG# 30571)\nStarted: 2016.11.7, Ended: 2017.1.8\nParticipants: agentofchaos (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\tFelix: Hey, hope you have fun!\n\n2) agentofchaos: Homeworld R1 B2 G3\n\tagentofchaos: Thanks, you too!\n\n3) Felix: Build G1 Felix\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Felix: Trade G1 Y1 Felix\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) Felix: Build Y1 Felix\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) Felix: Build Y2 Felix\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) Felix: Trade Y1 B1 Felix\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) Felix: Discover B1 Felix G1 Rim\n\n14) agentofchaos: Discover G1 Agentofchaos R3 Doombridge\n\n15) Felix: Build G2 Felix\n\n16) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Doombridge\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\n\n17) Felix: Discover G2 Felix B1 Opus\n\n18) agentofchaos: Trade G2 R2 Agentofchaos\n\n19) Felix: Build G2 Felix\n\n20) agentofchaos: Move Y1 Agentofchaos Doombridge\n\n21) Felix: Build G3 Opus\n\n22) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Doombridge\nBuild R1 Agentofchaos\nBuild G3 Agentofchaos\n\n23) Felix: Move Y2 Felix Opus\n\n24) agentofchaos: Discover R2 Agentofchaos Y3 Yuggoth\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Opus\nBuild Y3 Felix\n\n26) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Agentofchaos\nBuild R1 Yuggoth\nBuild G3 Agentofchaos\n\n27) Felix: Trade G3 R3 Opus\n\n28) agentofchaos: Move G1 Doombridge Rim\n\n29) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Opus\nBuild R2 Opus\n\n30) agentofchaos: Sacrifice R1 Yuggoth\nAttack B1 Rim\n\n31) Felix: Move R3 Opus Doombridge\n\n32) agentofchaos: Sacrifice Y1 Doombridge Rim\nDiscover G2 Doombridge Y1 Agarzon\n\n33) Felix: Attack Y1 Doombridge\n\n34) agentofchaos: Move R1 Agentofchaos Doombridge\n\n35) Felix: Attack R1 Doombridge\n\tFelix: Your g2 has escaped a terrible fate! :P\n\tagentofchaos: for the time being anyway!\n\n36) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R2 Yuggoth Rim\nMove R2 Rim Doombridge\nCatastrophe Doombridge R\n\n37) Felix: Discover G2 Opus Y3 Edge\n\n38) agentofchaos: Trade B1 Y1 Rim\n\tFelix: Very nice!\n\n39) Felix: Build Y2 Opus\n\tagentofchaos: Thanks - a desperation move!\n\n40) agentofchaos: Trade G1 R1 Agentofchaos\n\n41) Felix: Sacrifice G3 Felix\nBuild G1 Opus\nBuild G3 Felix\nBuild R1 Opus\n\n42) agentofchaos: Discover G2 Agarzon B2 Ghost\n\n43) Felix: Move G2 Felix Rim\n\n44) agentofchaos: Discover G1 Rim B2 Lycan\n\n45) Felix: Sacrifice R1 Opus\nAttack Y1 Rim\n\n46) agentofchaos: Build Y1 Agentofchaos\n\n47) Felix: Move Y2 Opus Lycan\n\n48) agentofchaos: Sacrifice G1 Lycan\nBuild G1 Ghost\n\n49) Felix: Trade G1 B1 Opus\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) Felix: Sacrifice G2 Rim\nBuild G2 Felix\nBuild B1 Opus\n\n52) agentofchaos: Discover Y1 Agentofchaos B3 Shade\n\n53) Felix: Move B1 Opus Edge\n\n54) agentofchaos: Move R1 Agentofchaos Shade\n\n55) Felix: Build B3 Edge\n\n56) agentofchaos: Move R1 Shade Ghost\n\n57) Felix: Sacrifice Y3 Felix\nMove B3 Edge Agentofchaos\nMove G3 Opus Edge\nMove G3 Edge Agentofchaos\n\n\tagentofchaos: well played\n\tFelix: Thanks, you too! Good game!\n\nHomeworlds Online (SDG# 30597)\nStarted: 2016.11.7, Ended: 2017.1.21\nParticipants: ts52 (S), agentofchaos (N)\nWinner: ts52\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\tagentofchaos: Hi there, enjoy the game\n\n3) agentofchaos: Build G1 Agentofchaos\n\tts52: Thanks! You too!\n\n4) ts52: Build G1 Ts52\n\n5) agentofchaos: Discover G1 Agentofchaos Y3 Hymzoth\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) ts52: Build G2 Ts52\n\n9) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Hymzoth\nBuild G2 Hymzoth\nBuild G3 Agentofchaos\n\n10) ts52: Build G3 Gonzo\n\n11) agentofchaos: Discover G2 Hymzoth B2 Abaddon\n\n12) ts52: Trade G1 Y1 Gonzo\n\n13) agentofchaos: Build G1 Hymzoth\n\n14) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Gonzo\n\n15) agentofchaos: Trade G2 Y2 Abaddon\n\n16) ts52: Trade G2 R2 Ts52\n\n17) agentofchaos: Trade G1 R1 Agentofchaos\n\n18) ts52: Discover Y2 Gonzo B3 Grover\n\n19) agentofchaos: Build R1 Agentofchaos\n\n20) ts52: Build G1 Gonzo\n\n21) agentofchaos: Sacrifice G2 Hymzoth\nBuild Y2 Abaddon\nBuild G2 Agentofchaos\n\n22) ts52: Sacrifice G1 Gonzo\nBuild Y3 Grover\n\n23) agentofchaos: Move G1 Hymzoth Abaddon\n\n24) ts52: Build G1 Gonzo\n\n25) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Abaddon\nBuild G2 Hymzoth\nBuild G3 Agentofchaos\n\n26) ts52: Trade Y3 R3 Grover\n\n27) agentofchaos: Trade G3 Y3 Agentofchaos\n\n28) ts52: Discover Y1 Gonzo G3 Kermit\n\n29) agentofchaos: Trade R1 B1 Agentofchaos\n\n30) ts52: Move G1 Gonzo Grover\n\n31) agentofchaos: Build B1 Agentofchaos\n\n32) ts52: Move R3 Grover Abaddon\n\n33) agentofchaos: Sacrifice Y2 Abaddon\nMove G1 Abaddon Ts52\nMove G2 Abaddon Ts52\n\n34) ts52: Attack G2 Ts52\n\n35) agentofchaos: Sacrifice Y2 Abaddon\nMove G1 Hymzoth Abaddon\nMove G1 Abaddon Ts52\nCatastrophe Ts52 G\n\n36) ts52: Move G3 Gonzo Ts52\n\n37) agentofchaos: Discover B1 Agentofchaos G3 Grimvale\n\n38) ts52: Build G1 Ts52\n\n39) agentofchaos: Build B3 Grimvale\n\n40) ts52: Sacrifice G3 Ts52\nBuild G1 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n41) agentofchaos: Build B3 Grimvale\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild Y2 Kermit\n\n43) agentofchaos: Build R1 Agentofchaos\n\n44) ts52: Move Y2 Grover Abaddon\n\n45) agentofchaos: Trade B3 R3 Grimvale\n\n46) ts52: Sacrifice Y2 Abaddon\nMove Y2 Grover Agentofchaos\nMove Y1 Kermit Agentofchaos\nCatastrophe Agentofchaos Y\n\n47) agentofchaos: Build B3 Agentofchaos\n\n48) ts52: Move Y1 Gonzo Grover\n\n49) agentofchaos: Trade B3 Y3 Agentofchaos\n\n50) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Grover\nBuild Y1 Kermit\n\n\tagentofchaos: good game, well played\n\tts52: Good game. Thanks. I look forward to our next one.\n\tDraw5PlayAll: Why resign?\n\nHomeworlds Online (SDG# 30623)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.7, Ended: 2016.11.10\nParticipants: agentofchaos (S), mxpf (N)\nWinner: agentofchaos\n\n\tDraw5PlayAll: Your opponent has not signed on in over a month!\n\nHomeworlds Online (SDG# 30658)\nStarted: 2016.11.7, Ended: 2017.2.8\nParticipants: GalateanGemmate (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\tGalateanGemmate: Hello! I might be a beginner? So far I&#39;ve only played against people I&#39;ve taught how to play, so I&#39;ve no idea how good I am. Also, good luck!\n\tts52: No problem. I&#39;m always happy to play with new players. Have a good game!\n\n2) GalateanGemmate: Homeworld B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) GalateanGemmate: Build G1 Galateangemmate\n\n5) ts52: Trade G1 B1 Ts52\n\n6) GalateanGemmate: Trade G1 Y1 Galateangemmate\n\n7) ts52: Build B1 Ts52\n\n8) GalateanGemmate: Build G1 Galateangemmate\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) GalateanGemmate: Trade G3 B3 Galateangemmate\n\n11) ts52: Build B2 Kermit\n\n12) GalateanGemmate: Build B2 Galateangemmate\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) GalateanGemmate: Discover B2 Galateangemmate G1 Greenmachine\n\n15) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n16) GalateanGemmate: Sacrifice Y1 Galateangemmate\nMove B2 Greenmachine Kermit\nCatastrophe Kermit Blue\n\n17) ts52: Trade B3 G3 Ts52\n\n18) GalateanGemmate: Build B1 Galateangemmate\n\n19) ts52: Build B2 Ts52\n\n20) GalateanGemmate: Discover B1 Galateangemmate G1 Morning\n\n21) ts52: Move B2 Ts52 Kermit\n\n22) GalateanGemmate: Build B2 Morning\n\n23) ts52: Build B2 Kermit\n\n24) GalateanGemmate: Trade B2 Y2 Morning\n\n25) ts52: Discover B1 Ts52 G2 Robin\n\n\nHomeworlds Online (SDG# 30672)\nStarted: 2016.11.8, Ended: 2016.11.11\nParticipants: Joe_Hill (S), ratpfink (N)\nWinner: ratpfink\n\n1) ratpfink: Homeworld G1 B3 Y3\n\n2) Joe_Hill: Homeworld B2 Y1 G3\n\n3) ratpfink: Build Y1 Ratpfink\n\n4) Joe_Hill: Build G1 Joe_hill\n\n5) ratpfink: Build Y1 Ratpfink\n\n6) Joe_Hill: Build G1 Joe_hill\n\n7) ratpfink: Trade Y3 G3 Ratpfink\n\n8) Joe_Hill: Trade G1 B1 Joe_hill\n\n9) ratpfink: Discover Y1 Ratpfink G2 Lexi\n\n10) Joe_Hill: Build G1 Joe_hill\n\n11) ratpfink: Build Y2 Lexi\n\tJoe_Hill: I still don&#39;t really understand how far away we from each other. \n\n12) Joe_Hill: Discover G1 Joe_hill Y3 Ta\n\n13) ratpfink: Trade Y1 B1 Ratpfink\n\tratpfink: You can move between systems of different types of stars. That&#39;s why my ship could move from ratpfink system to lexi system. It&#39;s a (1,3) to a 2\n\n14) Joe_Hill: Build G2 Ta\n\n15) ratpfink: Build G2 Ratpfink\n\n16) Joe_Hill: Build G3 Ta\n\n17) ratpfink: Sacrifice Y2 Lexi\nMove G2 Ratpfink Lexi\nMove G2 Lexi Ta\nCatastrophe Ta Green\n\n18) Joe_Hill: Build G1 Joe_hill\n\tJoe_Hill: strange\n\n19) ratpfink: Build G2 Ratpfink\n\n20) Joe_Hill: Discover G1 Joe_hill B3 Tab\n\tratpfink: That was fun!\n\tDraw5PlayAll: JoeHill (1,2) =&gt; any 3 =&gt; any 2 =&gt; ratpfink (1,3).\r\nAs of now a 1-system is not connected to either side.\n\tDraw5PlayAll: If you sac a Y3 (for 3 movements) you can send a ship from one homeworld to the other.\r\n\r\nAlso note if on earth of the stars gets blown up the connections are altered.\n\tJoe_Hill: Right, I understood all that, but thank you. I guess I was just incorrectly thinking of distance as linear instead of the way it is. \n\tJoe_Hill: Have to shake off the squares of the chess board.\n\tJoe_Hill: Mentally shake them off.\n\n21) ratpfink: Build G2 Ratpfink\n\n22) Joe_Hill: Trade G1 Y1 Tab\n\n23) ratpfink: Trade G3 Y3 Ratpfink\n\n24) Joe_Hill: Move G1 Joe_hill Tab\n\n25) ratpfink: Build Y2 Ratpfink\n\n26) Joe_Hill: Build Y2 Tab\n\n27) ratpfink: Trade Y3 R3 Ratpfink\n\n28) Joe_Hill: Discover Y1 Tab B2 Cab\n\n29) ratpfink: Move R3 Ratpfink Cab\n\n30) Joe_Hill: Trade Y2 R2 Tab\n\n31) ratpfink: Attack Y1 Cab\n\n32) Joe_Hill: Build B1 Joe_hill\n\tJoe_Hill: Not sure that was wise. TBH I don&#39;t know what the hell I&#39;m doing.\n\n33) ratpfink: Sacrifice Y2 Ratpfink\nMove R3 Cab Tab\nMove R3 Tab Joe_hill\n\n34) Joe_Hill: Build B2 Joe_hill\n\n35) ratpfink: Attack B2 Joe_hill\nCatastrophe Joe_hill B\n\n\tJoe_Hill: oh for Christ&#39;s sake.\n\tJoe_Hill: I forgot about the star....\n\tJoe_Hill: Rematch?\n\nHomeworlds Online (SDG# 30663)\nVariants: &quot;Unrated&quot;\nStarted: 2016.11.9, Ended: 2017.1.13\nParticipants: zeder (S), agentofchaos (N)\nWinner: zeder\n\n1) agentofchaos: Homeworld B1 Y2 G3\n\n2) zeder: Homeworld R2 G3 B3\n\tagentofchaos: Hi, enjoy the game\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) zeder: Build B1 Zeder\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) zeder: Build B1 Zeder\n\n7) agentofchaos: Discover G1 Agentofchaos Y3 Xunzi\n\n8) zeder: Trade B3 G3 Zeder\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) zeder: Build B2 Zeder\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) zeder: Trade B2 Y2 Zeder\n\n13) agentofchaos: Trade G3 B3 Agentofchaos\n\n14) zeder: Discover B1 Zeder G1 Flip\n\n15) agentofchaos: Build G2 Xunzi\n\n16) zeder: Build G2 Zeder\n\n17) agentofchaos: Build G2 Agentofchaos\n\n18) zeder: Move G2 Zeder Flip\n\n19) agentofchaos: Trade G2 Y2 Agentofchaos\n\n20) zeder: Build B2 Flip\n\n21) agentofchaos: Trade Y1 R1 Agentofchaos\n\n22) zeder: Build B2 Flip\n\n23) agentofchaos: Move G1 Xunzi Flip\n\n24) zeder: Trade G2 R2 Flip\n\n25) agentofchaos: Sacrifice G2 Xunzi\nBuild G2 Flip\nBuild G2 Flip\nCatastrophe Flip G\n\n26) zeder: Build G1 Zeder\n\n27) agentofchaos: Discover G1 Agentofchaos Y3 Solvol\n\tzeder: Reset button!\n\n28) zeder: Trade G1 Y1 Zeder\n\n29) agentofchaos: Trade B3 G3 Agentofchaos\n\tagentofchaos: I thought it was time for a little reset!\n\n30) zeder: Discover Y2 Zeder G1 Cribbage\n\n31) agentofchaos: Build G1 Agentofchaos\n\n32) zeder: Move B1 Zeder Cribbage\n\n33) agentofchaos: Build G2 Solvol\n\n34) zeder: Trade Y2 G2 Cribbage\n\n35) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y1 Agentofchaos\n\n36) zeder: Build Y1 Zeder\n\n37) agentofchaos: Trade Y1 B1 Agentofchaos\n\n38) zeder: Build B2 Cribbage\n\n39) agentofchaos: Sacrifice G3 Agentofchaos\nBuild B2 Agentofchaos\nBuild R1 Agentofchaos\nBuild G3 Agentofchaos\n\n40) zeder: Trade B2 Y2 Cribbage\n\n41) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G2 Agentofchaos Y3 Abysshome\nMove B2 Agentofchaos Abysshome\n\n42) zeder: Build B2 Cribbage\n\n43) agentofchaos: Trade B2 Y2 Abysshome\n\n44) zeder: Sacrifice G2 Cribbage\nBuild Y1 Zeder\nBuild Y3 Cribbage\n\n45) agentofchaos: Build G2 Abysshome\n\n46) zeder: Discover B2 Cribbage R3 Mahjong\n\n47) agentofchaos: Move B1 Agentofchaos Solvol\n\n48) zeder: Build B2 Cribbage\n\n49) agentofchaos: Discover G2 Abysshome R1 Gloam\n\n50) zeder: Trade Y3 R3 Cribbage\n\n51) agentofchaos: Move Y2 Abysshome Gloam\n\n52) zeder: Build Y3 Cribbage\n\n53) agentofchaos: Move G1 Solvol Gloam\n\n54) zeder: Move R3 Cribbage Solvol\n\n55) agentofchaos: S Y2 Gloam\nMove G1 Gloam Zeder\nMove G2 Gloam Zeder\n\n56) zeder: Sacrifice B1 Cribbage\nTrade G3 R3 Zeder\n\n57) agentofchaos: Sacrifice G2 Solvol\nBuild G2 Zeder\nBuild G3 Abysshome\nCatastrophe Zeder G\n\n58) zeder: Build Y2 Cribbage\n\n59) agentofchaos: Sacrifice B1 Solvol\nTrade G2 B2 Abysshome\n\n60) zeder: Build B1 Cribbage\n\n61) agentofchaos: Move R1 Agentofchaos Abysshome\n\n62) zeder: Trade B2 G2 Cribbage\n\n63) agentofchaos: B R1 Abysshome\n\n64) zeder: Sacrifice B2 Mahjong\nTrade R3 G3 Zeder\nTrade Y3 R3 Cribbage\n\n65) agentofchaos: D R1 Agentofchaos Y3 Heartchasm\n\n66) zeder: Sacrifice Y2 Cribbage\nMove G3 Zeder Solvol\nMove G3 Solvol Agentofchaos\n\n67) agentofchaos: Sacrifice R1 Abysshome\nAttack G3 Agentofchaos\n\n68) zeder: Sacrifice Y2 Cribbage\nMove G2 Cribbage Solvol\nMove G2 Solvol Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: well done, good game\n\tzeder: Thank you for this games!\n\nHomeworlds Online (SDG# 30657)\nStarted: 2016.11.9, Ended: 2017.1.16\nParticipants: Felix (S), zeder (N)\nWinner: Felix\n\n1) zeder: Homeworld R2 G3 B3\n\n2) Felix: Homeworld R1 Y3 G3 *\n\n3) zeder: Build B1 Zeder\n\tDraw5PlayAll: !!\n\n4) Felix: Build G1 Felix\n\n5) zeder: Trade B1 G1 Zeder\n\n6) Felix: Discover G1 Felix B2 Signal\n\n7) zeder: Build B1 Zeder\n\n8) Felix: Build G1 Signal\n\n9) zeder: Build G2 Zeder\n\n10) Felix: Build G2 Signal\n\n11) zeder: Trade G1 Y1 Zeder\n\n12) Felix: Trade G2 Y2 Signal\n\n13) zeder: Discover G2 Zeder Y1 Noise\n\n14) Felix: Trade G1 B1 Signal\n\n15) zeder: Trade B1 G1 Zeder\n\n16) Felix: Move B1 Signal Felix\n\n17) zeder: Build B1 Zeder\n\n18) Felix: Build G1 Felix\n\n19) zeder: Build G2 Noise\n\n20) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 Signal\n\n21) zeder: Discover G2 Noise Y2 Drone\n\n22) Felix: Discover G2 Felix B2 Interference\n\n23) zeder: Trade G1 R1 Zeder\n\n24) Felix: Trade G3 R3 Signal\n\n25) zeder: Trade B3 G3 Zeder\n\n26) Felix: Build G1 Interference\n\n27) zeder: Build B1 Zeder\n\tzeder: I feel like am being chokes!\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Felix\n\tFelix: Sorry, I hope you can breathe soon! :)\n\n29) zeder: Sacrifice G3 Zeder\nBuild G3 Noise\nBuild B3 Zeder\nPass\n\n30) Felix: Discover B3 Felix Y2 Broadcast\n\n31) zeder: Move B1 Zeder Noise\n\n32) Felix: Build B3 Felix\n\n33) zeder: Sacrifice G3 Noise\nBuild Y1 Zeder\nBuild Y3 Zeder\nBuild G3 Noise\n\n34) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Signal\nBuild R1 Signal\n\n35) zeder: Sacrifice Y1 Zeder\nMove R1 Zeder Noise\n\tzeder: I am never see this many ships in play at same time!\n\n36) Felix: Discover R3 Signal Y1 Edge\n\n37) zeder: Build R2 Noise\n\tFelix: It is quite a few! It becomes very difficult to keep track when there are this many.\n\n38) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Signal\nBuild R3 Edge\n\n39) zeder: Move B3 Zeder Noise\n\n40) Felix: Move R3 Edge Interference\n\n41) zeder: Move B1 Noise Drone\n\n42) Felix: Move B2 Felix Signal\n\n43) zeder: Discover B1 Drone R3 Groo\n\n44) Felix: Move B3 Felix Drone\n\n45) zeder: Move B3 Noise Zeder\n\n46) Felix: Sacrifice R1 Signal\nAttack G2 Drone\n\n47) zeder: Sacrifice Y3 Zeder\nMove B1 Groo Signal\nMove B1 Zeder Noise\nMove B1 Noise Signal\nCatastrophe Signal B\n\n48) Felix: Build G1 Drone\n\n49) zeder: Sacrifice G3 Noise\nBuild Y2 Zeder\nBuild Y3 Zeder\nBuild G3 Noise\n\tFelix: Nice!\n\n50) Felix: Sacrifice G3 Felix\nBuild B1 Drone\nBuild R1 Edge\nBuild G3 Felix\n\tzeder: I had to simplify! :)\n\n51) zeder: Discover G2 Noise B2 Oline\n\n52) Felix: Trade G3 R3 Felix\n\n53) zeder: Move R1 Noise Oline\n\n54) Felix: Build G3 Felix\n\n55) zeder: Sacrifice Y3 Zeder\nMove R1 Oline Felix\nMove R2 Noise Drone\nMove R2 Drone Felix\nCatastrophe Felix R\n\n56) Felix: Sacrifice B3 Broadcast\nTrade R3 Y3 Interference\nTrade G2 Y2 Interference\nTrade B3 Y3 Drone\n\tFelix: Oh I say. Well done.\n\n57) zeder: Build G2 Oline\n\n58) Felix: Trade G3 R3 Felix\n\tDraw5PlayAll: DoY attack!\r\n\r\nRare to see a sac of a B2 or B3.\n\n59) zeder: Trade G2 R2 Oline\n\n60) Felix: Build R1 Felix\n\n61) zeder: Build R1 Oline\n\n62) Felix: Sacrifice Y2 Interference\nMove R1 Edge Oline\nMove R1 Felix Oline\nCatastrophe Oline Red\n\n63) zeder: Trade G2 R2 Oline\n\n64) Felix: Build Y2 Interference\n\n65) zeder: Move G3 Noise Oline\n\n66) Felix: Discover G2 Drone Y1 Rim\n\n67) zeder: Build R1 Oline\n\n68) Felix: Build G2 Interference\n\tFelix: Good defensive move!\n\n69) zeder: Build R1 Oline\n\n70) Felix: Sacrifice G2 Interference\nBuild B1 Drone\nBuild B2 Felix\n\n71) zeder: Sacrifice Y2 Zeder\nMove R1 Oline Felix\nMove R2 Oline Felix\n\n72) Felix: Sacrifice G2 Rim\nBuild B3 Drone\nBuild B3 Felix\n\n73) zeder: Attack B2 Felix\n\n74) Felix: Sacrifice R3 Felix\nAttack R2 Felix\nAttack R1 Felix\nAttack B2 Felix\n\n75) zeder: Build G2 Oline\n\n76) Felix: Sacrifice Y3 Interference\nMove B3 Drone Edge\nMove B3 Edge Zeder\nMove R3 Edge Zeder\n\n\tzeder: Sch***e!!!  Thanks you for an great game!\n\tFelix: Good game, thanks for playing!\n\nHomeworlds Online (SDG# 30686)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.10, Ended: 2016.11.10\nParticipants: agentofchaos (S), Aristos (N)\nWinner: agentofchaos\n\n1) Aristos: Homeworld Y2 B3 G3\n\n2) agentofchaos: Homeworld Y1 B2 G3\n\n3) Aristos: Build G1 Aristos\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Aristos: Discover G1 Aristos B1 Spark\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Aristos: Build G1 Aristos\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Aristos: Trade G3 Y3 Aristos\n\n\tAristos: Completely stupid on opening. My brain is still addled by election. Sorry to waste your time. \n\nHomeworlds Online (SDG# 30689)\nStarted: 2016.11.10, Ended: 2016.12.2\nParticipants: zeder (S), Joe_Hill (N)\nWinner: zeder\n\n1) Joe_Hill: Homeworld B3 Y1 G3\n\n2) zeder: Homeworld B2 G3 Y3\n\n3) Joe_Hill: Build G1 Joe_hill\n\tzeder: I am also beginner!\n\tJoe_Hill: Cool. This is only my second game.\n\n4) zeder: Build Y1 Zeder\n\n5) Joe_Hill: Build G1 Joe_hill\n\n6) zeder: Build Y1 Zeder\n\n7) Joe_Hill: Discover G1 Joe_hill B2 Car\n\n8) zeder: Discover Y1 Zeder B1 Doop\n\n9) Joe_Hill: Build G1 Car\n\n10) zeder: Trade Y3 G3 Zeder\n\n11) Joe_Hill: Build G2 Joe_hill\n\n12) zeder: Build G2 Zeder\n\n13) Joe_Hill: Trade G2 Y2 Joe_hill\n\n14) zeder: Move G2 Zeder Doop\n\n15) Joe_Hill: Build Y2 Joe_hill\n\n16) zeder: Trade G2 Y2 Doop\n\n17) Joe_Hill: Move Y2 Joe_hill Car\n\n18) zeder: Build Y3 Zeder\n\n19) Joe_Hill: Build Y3 Car\n\n20) zeder: Discover Y1 Doop G2 Gloop\n\n21) Joe_Hill: Trade Y3 R3 Car\n\n22) zeder: Trade Y1 R1 Zeder\n\n23) Joe_Hill: Move R3 Car Doop\n\n24) zeder: Sacrifice Y3 Zeder\nMove Y2 Doop Gloop\nMove Y1 Gloop Joe_hill\nMove Y2 Gloop Joe_hill\nCatastrophe Joe_hill Y\n\n25) Joe_Hill: Move Y2 Car Doop\n\n26) zeder: Build R1 Zeder\n\tJoe_Hill: ouch!\n\n27) Joe_Hill: Trade G1 Y1 Joe_hill\n\n28) zeder: Trade R1 Y1 Zeder\n\n29) Joe_Hill: Build G1 Joe_hill\n\n30) zeder: Build R1 Zeder\n\n31) Joe_Hill: Build G2 Car\n\n32) zeder: Discover R1 Zeder Y1 Mancala\n\n33) Joe_Hill: Trade G1 R1 Joe_hill\n\n34) zeder: Build R2 Zeder\n\n35) Joe_Hill: Trade G2 Y2 Car\n\n36) zeder: Move R2 Zeder Mancala\n\n37) Joe_Hill: Build R2 Joe_hill\n\n38) zeder: Trade R1 B1 Zeder\n\n39) Joe_Hill: Move R3 Doop Zeder\n\n40) zeder: Sacrifice R1 Mancala\nAttack R3 Zeder\n\n41) Joe_Hill: Move G1 Car Doop\n\n42) zeder: Move R3 Zeder Doop\n\n43) Joe_Hill: Build G1 Doop\n\tJoe_Hill: Shit. I didn&#39;t realize you could do that.\r\n\n\tzeder: I didn&#39;t think of it until I needed it and wow did I needs it!\n\tDraw5PlayAll: Hey. Don&#39;t curse.\n\n44) zeder: Attack Y2 Doop\n\n45) Joe_Hill: Sacrifice Y2 Car\nMove G1 Doop Zeder\nMove G1 Doop Zeder\nCatastrophe Zeder G\n\n46) zeder: Move R3 Doop Zeder\n\n47) Joe_Hill: Build G1 Car\n\n48) zeder: Move R2 Mancala Car\n\n49) Joe_Hill: Move R2 Joe_hill Doop\n\n50) zeder: Discover Y2 Doop R3 Bowie\n\n51) Joe_Hill: Trade G1 Y1 Car\n\n52) zeder: Attack G1 Car\n\n53) Joe_Hill: Move Y1 Car Doop\n\n54) zeder: Trade B1 G1 Zeder\n\n55) Joe_Hill: Build G1 Joe_hill\n\n56) zeder: Build G2 Car\n\n57) Joe_Hill: Move G1 Joe_hill Doop\n\n58) zeder: Build Y2 Zeder\n\n\nHomeworlds Online (SDG# 30697)\nStarted: 2016.11.11, Ended: 2016.11.21\nParticipants: ratpfink (S), Joe_Hill (N)\nWinner: ratpfink\n\n1) Joe_Hill: Homeworld G2 Y1 B3\n\n2) ratpfink: Homeworld G3 B2 Y3\n\n3) Joe_Hill: Build B1 Joe_hill\n\n4) ratpfink: Build Y1 Ratpfink\n\tJoe_Hill: I think green opening star might be less than optimal...\n\tratpfink: Yeah, not sure. If you have any red in your opening homeworld system SDG yells at you about it.\n\n5) Joe_Hill: Build B1 Joe_hill\n\tJoe_Hill: I saw that on the wiki. System message for Noobs. \r\n\n\n6) ratpfink: Build Y1 Ratpfink\n\n7) Joe_Hill: Trade B1 G1 Joe_hill\n\tDraw5PlayAll: ...I use red stars in absolutely every game and I never got a yell...\n\n8) ratpfink: Build Y2 Ratpfink\n\tJoe_Hill: Draw 5, in your homeworld?\n\n9) Joe_Hill: Build G1 Joe_hill\n\tDraw5PlayAll: Yes. Mostly because I like to have a defense system to repel attacks, as well as develop yellow ships without fear of them dying.\n\n10) ratpfink: Trade Y2 B2 Ratpfink\n\n11) Joe_Hill: Discover G1 Joe_hill Y3 Bat\n\n12) ratpfink: Discover Y1 Ratpfink B1 Rolo\n\n13) Joe_Hill: Build G1 Joe_hill\n\n14) ratpfink: Move Y3 Ratpfink Rolo\n\n15) Joe_Hill: Build G2 Bat\n\n16) ratpfink: Trade Y3 R3 Rolo\n\n17) Joe_Hill: Trade B3 R3 Joe_hill\n\n18) ratpfink: Move R3 Rolo Bat\n\n19) Joe_Hill: Move G2 Bat Rolo\n\n20) ratpfink: Attack G1 Bat\n\n21) Joe_Hill: Trade G1 R1 Joe_hill\n\n22) ratpfink: Build Y2 Ratpfink\n\n23) Joe_Hill: T G2 R2 Rolo\n\n24) ratpfink: Trade B2 R2 Ratpfink\n\n25) Joe_Hill: Attack Y1 Rolo\n\n26) ratpfink: Move R3 Bat Rolo\n\n27) Joe_Hill: Move R2 Rolo Bat\n\n28) ratpfink: Move G1 Bat Rolo\n\n29) Joe_Hill: Move G1 Joe_hill Bat\n\n30) ratpfink: Attack Y1 Rolo\n\n31) Joe_Hill: Move R3 Joe_hill Bat\n\n32) ratpfink: Build R1 Rolo\n\n33) Joe_Hill: Build G1 Bat\n\n34) ratpfink: Build Y2 Rolo\n\n35) Joe_Hill: Move G1 Bat Joe_hill\n\n36) ratpfink: Build G2 Rolo\n\n37) Joe_Hill: Build B1 Joe_hill\n\n38) ratpfink: Build Y2 Ratpfink\n\n39) Joe_Hill: M B1 Joe_hill Bat\n\tJoe_Hill: This shit is a mess Karl.\n\n40) ratpfink: Sacrifice Y2 Ratpfink\nMove G2 Rolo Bat\nMove G2 Bat Joe_hill\n\n41) Joe_Hill: Build B2 Joe_hill\n\tJoe_Hill: I can&#39;t move at all.\n\tJoe_Hill: I can move. Obviously. Just not the way I need to.\n\n42) ratpfink: Build G2 Joe_hill\nCatastrophe Joe_hill G\n\n43) Joe_Hill: Trade B2 G2 Joe_hill\n\n44) ratpfink: Sacrifice Y2 Rolo\nMove R3 Rolo Bat\nMove R3 Bat Joe_hill\n\n45) Joe_Hill: Move R2 Bat Joe_hill\n\tJoe_Hill: Sweet jesus\n\n46) ratpfink: Attack G2 Joe_hill\n\n47) Joe_Hill: Move R3 Bat Joe_hill\nCatastrophe Joe_hill R\n\n48) ratpfink: Sacrifice Y2 Ratpfink\nMove R1 Rolo Bat\nMove R1 Bat Joe_hill\n\n\tJoe_Hill: pffffft\n\nHomeworlds Online (SDG# 30696)\nStarted: 2016.11.11, Ended: 2016.11.13\nParticipants: Joe_Hill (S), ratpfink (N)\nWinner: Joe_Hill\n\n1) ratpfink: Homeworld R1 G2 B3\n\n2) Joe_Hill: Homeworld B2 Y1 G3\n\n3) ratpfink: Build B1 Ratpfink\n\n4) Joe_Hill: Build G1 Joe_hill\n\n5) ratpfink: Build B1 Ratpfink\n\n6) Joe_Hill: Build G1 Joe_hill\n\n7) ratpfink: Build B1 Ratpfink\n\n8) Joe_Hill: Build G1 Joe_hill\nCatastrophe Ratpfink B\n\n\tJoe_Hill: LOL. I don&#39;t have to be in system to call a catastrophe.\n\tDraw5PlayAll: What is weirder is that your own base had 4 greens and nothing else.\n\tJoe_Hill: I was about to trade for something else when I saw the potential to test the rule. \n\tratpfink: We just didn&#39;t understand the rules...\n\tJoe_Hill: He&#39;ll we still don&#39;t! Lol\n\tJoe_Hill: Hell. Cell phone autocorrect\n\nHomeworlds Online (SDG# 30680)\nStarted: 2016.11.11, Ended: 2016.12.30\nParticipants: Felix (S), agents17 (N)\nWinner: Felix\n\n1) agents17: Homeworld R2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) agents17: Build G1 Agents17\n\tFelix: Hey, welcome! First game?\n\n4) Felix: Build B1 Felix\n\n5) agents17: Build G1 Agents17\n\tagents17: Indeed, anything I ought to know?\n\n6) Felix: Trade B3 Y3 Felix\n\tFelix: If I think of anything, I&#39;ll let you know! So far, you&#39;re looking good. Swapping for a yellow soon would be wise, and then moving some ships out to create space so you can try to build up your armada as quickly as possible. Try to diversify your colors as quickly as possible so you have a nice balance across multiple systems. I like to not have more than 2 of the same color in a system for more than a turn if I can help it.\n\n7) agents17: Trade G1 Y1 Agents17\n\tFelix: I did a sneaky maneuver here at the start to prevent you from getting any of the small blues, so you won&#39;t be able to trade for them until you get a medium ship, unless you wanted to trade away your g3, which is not really recommended.\n\n8) Felix: Build B2 Felix\n\tDraw5PlayAll: It could have backfired!!\n\n9) agents17: Discover G1 Agents17 B3 Alpha\n\n10) Felix: Trade B2 G2 Felix\n\tagents17: Thanks for the advice. Also, is Draw5playAll watching?\n\tFelix: You&#39;re welcome! Yeah, I think anyone who wants to can watch any of the games, and he seems to like to stalk on other players more than most :)\r\n\r\n@Draw5 - It could only have backfired if I made a mistake, but I&#39;ve done this maneuver a few times and it usually works out!\n\n11) agents17: Build G1 Agents17\n\tDraw5PlayAll: I selected the option to watch every game of I think 3 different games. If there is a chat message sometimes I reply.\n\n12) Felix: Build B2 Felix\n\n13) agents17: Build G1 Alpha\n\n14) Felix: Trade B2 R2 Felix\n\n15) agents17: Discover G1 Agents17 B3 Beta\n\n16) Felix: Build B2 Felix\n\tFelix: Good work spreading out a lot of greens in various systems. This gives you potential to take over most of the green pieces, and the ability to trade them for others\n\n17) agents17: Build G2 Agents17\n\n18) Felix: Discover G2 Felix B2 Omega\n\n19) agents17: Discover G2 Agents17 B3 Gamma\n\n20) Felix: Build Y1 Felix\n\n21) agents17: Build Y1 Agents17\n\n22) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: So many oceanic planets.\n\tFelix: Pretty smart, actually. agents17 soaked up all the blue larges before I could get them.\n\n23) agents17: Move Y1 Agents17 Alpha\n\n24) Felix: Build G2 Omega\n\n25) agents17: Build Y2 Alpha\n\n26) Felix: Move B2 Felix Omega\n\n27) agents17: Trade Y2 B2 Alpha\n\n28) Felix: Build Y2 Felix\n\n\nHomeworlds Online (SDG# 30715)\nStarted: 2016.11.14, Ended: 2016.11.21\nParticipants: ratpfink (S), Joe_Hill (N)\nWinner: ratpfink\n\n1) Joe_Hill: H B2 Y1 G3\n\n2) ratpfink: Homeworld R3 B2 G3\n\n3) Joe_Hill: Build G1 Joe_hill\n\n4) ratpfink: Build G1 Ratpfink\n\n5) Joe_Hill: Build G1 Joe_hill\n\n6) ratpfink: Build G2 Ratpfink\n\n7) Joe_Hill: T G1 B1 Joe_hill\n\n8) ratpfink: Trade G1 B1 Ratpfink\n\n9) Joe_Hill: Build B1 Joe_hill\n\n10) ratpfink: Build B2 Ratpfink\n\n11) Joe_Hill: Trade B1 Y1 Joe_hill\n\n12) ratpfink: Trade B2 Y2 Ratpfink\n\n13) Joe_Hill: Build Y1 Joe_hill\n\n14) ratpfink: Build Y2 Ratpfink\n\n15) Joe_Hill: Discover Y1 Joe_hill R3 Fat\n\n16) ratpfink: Discover Y2 Ratpfink G1 Eat\n\n17) Joe_Hill: Move G1 Joe_hill Fat\n\n18) ratpfink: Build Y2 Eat\n\n19) Joe_Hill: B Y3 Joe_hill\n\n20) ratpfink: Sacrifice Y2 Eat\nMove Y2 Eat Fat\nMove Y2 Fat Joe_hill\nCatastrophe Joe_hill Y\n\n21) Joe_Hill: Build G1 Joe_hill\n\n22) ratpfink: Trade G3 R3 Ratpfink\n\tratpfink: boom\n\tJoe_Hill: blergh\n\n23) Joe_Hill: Trade G1 Y1 Joe_hill\n\tJoe_Hill: This is the problem I have with online gaming. I tend to not pay as close of attention as I should. \n\n24) ratpfink: Discover R3 Ratpfink Y1 Deathstar\n\n25) Joe_Hill: B B1 Joe_hill\n\n26) ratpfink: Move R3 Deathstar Joe_hill\n\n27) Joe_Hill: Discover B1 Joe_hill Y1 Bad\n\n28) ratpfink: Attack G3 Joe_hill\n\tJoe_Hill: hmm. what now.\n\n29) Joe_Hill: Move B1 Joe_hill Bad\n\n30) ratpfink: Attack Y1 Joe_hill\n\n\nHomeworlds Online (SDG# 30290)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.18, Ended: 2017.1.2\nParticipants: Felix (S), agentofchaos (N), Draw5PlayAll (E)\nWinner: Draw5PlayAll\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) Draw5PlayAll: Homeworld R1 B3 G3\n\tagentofchaos: Enjoy the game, everyone\n\tDraw5PlayAll: ?\n\n3) Felix: Homeworld Y2 B3 G3\n\tFelix: Thanks! Have fun!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Felix: Build G1 Felix\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) Felix: Trade G1 Y1 Felix\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) Felix: Build G1 Felix\n\n13) agentofchaos: Trade G1 B1 Agentofchaos\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Felix: Trade G1 B1 Felix\n\n16) agentofchaos: Build B2 Agentofchaos\n\n17) Draw5PlayAll: Build B2 Draw5playall\n\n18) Felix: Build B2 Felix\n\n19) agentofchaos: Build G1 Agentofchaos\n\tFelix: Trading assets seem to be in high demand, so we are investing as much as we can in them...\n\tDraw5PlayAll: This is 2/1/5 but some players have 5d:12h etc\n\n20) Draw5PlayAll: Trade B2 R2 Draw5playall\n\tagentofchaos: That is odd about the time\n\n21) Felix: Trade B2 R2 Felix\n\tFelix: I think it depends on how quickly you take your turn. You get time added each time you move but I think it took me a couple days to make a move so I have less time.\n\n22) agentofchaos: Trade B2 R2 Agentofchaos\n\n23) Draw5PlayAll: Build B2 Draw5playall\n\tDraw5PlayAll: Copycats...\n\n24) Felix: Discover B1 Felix G1 Grinch\n\n25) agentofchaos: Build B2 Agentofchaos\n\n26) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n27) Felix: Build B2 Grinch\n\n28) agentofchaos: Discover B2 Agentofchaos Y3 Oolon\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: Trade B2 Y2 Grinch\n\n31) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B2 Oolon\n\n32) Draw5PlayAll: Move R2 Draw5playall G2\n\n33) Felix: Build G1 Felix\n\n34) agentofchaos: Move R2 Agentofchaos Oolon\n\n35) Draw5PlayAll: Build R1 G2\n\n36) Felix: Build R1 Felix\n\n37) agentofchaos: Trade B2 G2 Oolon\n\n38) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n39) Felix: Move R1 Felix Grinch\n\n40) agentofchaos: Trade B1 R1 Agentofchaos\n\n41) Draw5PlayAll: Trade R1 Y1 G2\n\n42) Felix: Sacrifice G3 Felix\nBuild R1 Felix\nBuild R3 Felix\nBuild R3 Grinch\n\n43) agentofchaos: Sacrifice G2 Oolon\nBuild Y2 Agentofchaos\nBuild R3 Oolon\n\n44) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild R3 G2\nBuild Y3 Draw5playall\n\tDraw5PlayAll: This from some one who is not a &quot;go with the crowd&quot; type. (My next move)\n\n45) Felix: Trade R3 G3 Felix\n\n46) agentofchaos: Trade R2 G2 Oolon\n\n47) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n48) Felix: Build Y3 Grinch\n\n49) agentofchaos: Build B1 Oolon\n\n50) Draw5PlayAll: Build Y3 Draw5playall\n\n51) Felix: Move Y3 Grinch B2\n\n52) agentofchaos: Build Y3 Agentofchaos\n\n53) Draw5PlayAll: Discover Y1 G2 G1 G1\n\n54) Felix: Sacrifice R1 Felix\nAttack G1E B2\n\n55) agentofchaos: Discover Y3 Agentofchaos R3 Crashzone\n\n56) Draw5PlayAll: Build G2 Draw5playall\n\n57) Felix: Sacrifice G3 Felix\nBuild G2 B2\nBuild G3 Felix\nBuild G3 B2\n\n58) agentofchaos: Move G2 Oolon B2\nCatastrophe B2 G\n\n59) Draw5PlayAll: Discover G2 Draw5playall R2 R2\n\n60) Felix: Sacrifice Y2 Grinch\nMove R3 Grinch Oolon\nMove Y3 B2 Oolon\n\tDraw5PlayAll: Duj paw DeSDu&#39; yuQmey SuvwI&#39;.\n\n61) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R3 Oolon Grinch\nMove B2 Oolon Grinch\n\tFelix: What is this black tongue we hear echoing across the cosmos?\n\tDraw5PlayAll: Hoch neH ghob SoH SoH!\n\n62) Draw5PlayAll: Build Y2 G1\n\n63) Felix: S R1 Grinch\nA B1N Oolon\n\n64) Draw5PlayAll: Sacrifice Y2 G2\nMove Y3 Draw5playall R2\nMove Y3 R2 Grinch\n\n65) Felix: Move Y3 Oolon Agentofchaos\n\tDraw5PlayAll: *AGAIN*???\n\n66) Draw5PlayAll: Sacrifice R2 G2\nAttack B1S Grinch\nAttack R3N Grinch\n\n67) Felix: Attack G3N Agentofchaos\n\tFelix: Bummer :/\n\n68) Draw5PlayAll: Build Y2 Draw5playall\n\n69) Felix: Move G3 Agentofchaos Crashzone\n\n70) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G1 Felix\nMove Y2 G1 Felix\nCatastrophe Felix Yellow\n\n71) Felix: Sacrifice G1 Felix\nBuild B2 Oolon\n\n72) Draw5PlayAll: Move B1 Grinch Felix\n\n73) Felix: Attack B1E Felix\n\tFelix: Nice one!\n\tDraw5PlayAll: Nice try.\n\n74) Draw5PlayAll: Sacrifice Y3 Grinch\nMove B1 Draw5playall R2\nMove B1 R2 Felix\nMove B2 G2 Felix\nCatastrophe Felix Blue\n\n\tDraw5PlayAll: Good game! Even though aoc ruined it a bit...\n\tagentofchaos: Sorry about that, was very busy over the last few days and lost track of my time :(\n\nHomeworlds Online (SDG# 30712)\nStarted: 2016.11.18, Ended: 2016.11.29\nParticipants: agentofchaos (S), Joe_Hill (N)\nWinner: agentofchaos\n\n1) Joe_Hill: Homeworld B2 Y1 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) Joe_Hill: B G1 Joe_hill\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Joe_Hill: Trade G1 Y1 Joe_hill\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Joe_Hill: B G1 Joe_hill\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) Joe_Hill: B Y2 Joe_hill\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) Joe_Hill: D Y2 Joe_hill G3 Flat\n\n12) agentofchaos: Trade Y1 G1 Agentofchaos\n\n13) Joe_Hill: Trade G1 B1 Joe_hill\n\n14) agentofchaos: Discover Y2 Agentofchaos G2 Omegahedron\n\n15) Joe_Hill: Build G1 Joe_hill\n\n16) agentofchaos: Build Y1 Agentofchaos\n\n17) Joe_Hill: Build Y3 Flat\n\n18) agentofchaos: Build Y3 Omegahedron\n\n19) Joe_Hill: Move B1 Joe_hill Flat\n\n20) agentofchaos: Trade G1 B1 Agentofchaos\n\n21) Joe_Hill: Trade Y3 R3 Flat\n\n22) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y3 R3 Omegahedron\n\n23) Joe_Hill: Build Y3 Flat\n\n24) agentofchaos: Build Y3 Omegahedron\n\n25) Joe_Hill: Discover Y3 Flat B2 Stat\n\n26) agentofchaos: Discover Y3 Omegahedron R3 Satrap\n\n27) Joe_Hill: Move R3 Flat Stat\n\n28) agentofchaos: Build Y3 Omegahedron\n\n29) Joe_Hill: Move Y2 Flat Stat\n\n30) agentofchaos: Move Y2 Omegahedron Flat\n\n31) Joe_Hill: Move G1 Joe_hill Flat\n\n32) agentofchaos: Move R3 Omegahedron Flat\n\n33) Joe_Hill: Build G1 Joe_hill\n\n34) agentofchaos: Attack G1 Flat\n\n35) Joe_Hill: Trade G1 R1 Joe_hill\n\n36) agentofchaos: Attack B1 Flat\n\n37) Joe_Hill: Build G1 Joe_hill\n\n38) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Flat Joe_hill\nMove Y3 Satrap Joe_hill\nCatastrophe Joe_hill Y\n\n39) Joe_Hill: Trade G3 R3 Joe_hill\n\n40) agentofchaos: Build B1 Flat\n\n41) Joe_Hill: Build G1 Joe_hill\n\n42) agentofchaos: Trade G1 B1 Flat\n\n\tJoe_Hill: Good game\n\nHomeworlds Online (SDG# 30700)\nStarted: 2016.11.20, Ended: 2016.12.22\nParticipants: dragon76n (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tdragon76n: homeworld g2 b1 y3\n\tdragon76n: If this is the message area, hello! It&#39;s been nearly a year since I&#39;ve been on this site, but I&#39;m looking forward to playing some games on here again. \n\tDraw5PlayAll: That was the message area. The move area should be on the top left. If it is not, then it is not your turn.\n\n2) dragon76n: Homeworld G2 B1 Y3\n\tFelix: Hello! Welcome back! I&#39;m happy to make your acquaintance and I hope you have fun :)\n\n3) Felix: Build G1 Felix\n\n4) dragon76n: B Y1 Dragon76n\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dragon76n: T Y1 G1 Dragon76n\n\n7) Felix: Build G1 Felix\n\n8) dragon76n: B Y1 Dragon76n\n\n9) Felix: Trade G1 B1 Felix\n\n10) dragon76n: B G1 Dragon76n\n\n11) Felix: Build G1 Felix\n\n12) dragon76n: Trade G1 B1 Dragon76n\n\n13) Felix: Discover B1 Felix G1 Grinch\n\n14) dragon76n: B G2 Dragon76n\n\n15) Felix: Build B2 Grinch\n\n16) dragon76n: D G1 Dragon76n R3 Redthr\n\n17) Felix: Trade B2 Y2 Grinch\n\n18) dragon76n: B B2 Dragon76n\n\n19) Felix: Build B2 Grinch\n\n20) dragon76n: T B1 R1 Dragon76n\n\n21) Felix: Trade B2 R2 Grinch\n\n22) dragon76n: Build G2 Redthr\n\n23) Felix: Discover G1 Felix B1 Ridge\n\n24) dragon76n: D B2 Dragon76n G3 Grethr\n\n25) Felix: Build G3 Ridge\n\n26) dragon76n: Move Y1 Dragon76n Redthr\n\n27) Felix: Sacrifice G3 Ridge\nBuild G3 Ridge\nBuild Y1 Grinch\nBuild R1 Grinch\n\n28) dragon76n: B Y2 Redthr\n\n29) Felix: Sacrifice Y1 Grinch\nMove G3 Ridge Grethr\n\n30) dragon76n: M G2 Redthr Ridge\n\n31) Felix: Sacrifice R1 Grinch\nAttack B2 Grethr\n\n32) dragon76n: Sacrifice G2 Dragon76n\nBuild G2 Redthr\nBuild R1 Dragon76n\n\n33) Felix: Sacrifice G3 Grethr\nBuild G3 Felix\nBuild B2 Grinch\nBuild B3 Grethr\n\n34) dragon76n: S R1 Dragon76n\nA G1 Ridge\n\n35) Felix: Trade G3 Y3 Felix\n\n36) dragon76n: B G3 Redthr\n\n37) Felix: Build B3 Grethr\n\n38) dragon76n: Discover G3 Redthr R1 Redone\n\n39) Felix: Build B3 Grinch\n\n40) dragon76n: Move G1 Redthr Redone\n\n41) Felix: Sacrifice Y2 Grinch\nMove B3 Grethr Dragon76n\nMove B3 Grethr Dragon76n\n\n42) dragon76n: S G3 Redone\nB G3 Redthr\nB R1 Dragon76n\nB R2 Dragon76n\n\n43) Felix: Sacrifice R2 Grinch\nAttack Y3 Dragon76n\nAttack R2 Dragon76n\n\n44) dragon76n: Sacrifice Y2 Redthr\nMove G1 Ridge Felix\nMove G2 Ridge Felix\n\n45) Felix: Sacrifice R2 Dragon76n\nAttack R1 Dragon76n\nAttack R1 Dragon76n\n\tFelix: I think that&#39;s about it. Good game! You played well and I hope I&#39;ve been able to help you de-rust a bit and relearn some tricks. I&#39;d love to rematch any time!\n\n\tdragon76n: Thanks for playing. I had fun. \n\nHomeworlds Online (SDG# 30746)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.21, Ended: 2017.2.28\nParticipants: Draw5PlayAll (S), Grosseteste (N)\nWinner: Draw5PlayAll\n\n1) Grosseteste: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\tGrosseteste: Looking forward to it, thanks for the challenge!\n\n3) Grosseteste: Build G1 Grosseteste\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Grosseteste: D G1 Grosseteste Y3 Charlie\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Grosseteste: Build G1 Grosseteste\n\n8) Draw5PlayAll: Build Y1 Draw5playall\n\n9) Grosseteste: Trade G1 B1 Grosseteste\n\n10) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n11) Grosseteste: Build B2 Grosseteste\n\tDraw5PlayAll: Hello, it is your turn.\n\n12) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n13) Grosseteste: T B2 Y2 Grosseteste\n\n14) Draw5PlayAll: Build B2 G2\n\n15) Grosseteste: Build G1 Grosseteste\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) Grosseteste: Build G2 Charlie\n\n18) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n19) Grosseteste: Build B3 Grosseteste\n\n20) Draw5PlayAll: Build G2 Draw5playall\n\n21) Grosseteste: B G3 Grosseteste\n\n22) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild Y2 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n23) Grosseteste: Sacrifice Y2 Grosseteste\nDiscover G3 Grosseteste Y3 Lucy\nDiscover B3 Grosseteste Y3 Schroeder\n\tDraw5PlayAll: this is so slow!!!\n\n24) Draw5PlayAll: Build B3 G2\n\tGrosseteste: Sorry, I usually move slowly, and it being this time of the year doesn&#39;t help.\n\n25) Grosseteste: Move B3 Schroeder G2\nCatastrophe G2 Blue\n\n26) Draw5PlayAll: Build G2 B2\n\tDraw5PlayAll: Oh, a green!\n\n27) Grosseteste: Build B1 Grosseteste\n\n28) Draw5PlayAll: Move Y1 Draw5playall B2\n\n29) Grosseteste: Sacrifice B1 Grosseteste\nTrade G2 Y2 Charlie\n\n30) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 B2\n\n31) Grosseteste: Discover Y2 Charlie R2 Rerun\n\n32) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n33) Grosseteste: Move B1 Grosseteste Charlie\n\n34) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n35) Grosseteste: Trade G1 B1 Grosseteste\n\n36) Draw5PlayAll: Build B3 G2\n\n37) Grosseteste: Build B3 Charlie\n\n38) Draw5PlayAll: Build Y2 B2\n\n39) Grosseteste: Move B1 Charlie Rerun\n\n40) Draw5PlayAll: Discover Y2 B2 B3 B3\n\n41) Grosseteste: Build G1 Charlie\n\n42) Draw5PlayAll: Trade G1 R1 B2\n\n43) Grosseteste: Trade G1 R1 Charlie\n\n44) Draw5PlayAll: Move Y1 Draw5playall G2\n\n45) Grosseteste: Sacrifice G3 Lucy\nBuild G1 Charlie\nBuild G1 Grosseteste\nBuild Y3 Rerun\n\n46) Draw5PlayAll: Move G2 B2 B3\n\n47) Grosseteste: Trade G1 R1 Grosseteste\n\n48) Draw5PlayAll: Build G1 Draw5playall\n\n49) Grosseteste: Move G1 Charlie Rerun\n\n50) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R2 B2\n\n51) Grosseteste: Build G1 Grosseteste\n\n52) Draw5PlayAll: Discover B2 G2 G3 G3\n\n53) Grosseteste: Discover B1 Grosseteste R3 Lucy\n\n54) Draw5PlayAll: Move Y1 G2 G3\n\n55) Grosseteste: Sacrifice G3 Grosseteste\nBuild G2 Rerun\nBuild G3 Grosseteste\nBuild R2 Charlie\n\n56) Draw5PlayAll: Discover Y1 B2 R3 R3\n\n57) Grosseteste: S Y3 Rerun\nM Y2 Rerun Draw5playall\nM G2 Rerun Draw5playall\nM G1 Rerun Draw5playall\n\n58) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B3 G2 Draw5playall\nMove Y1 R3 Grosseteste\n\tDraw5PlayAll: If this fails, which it will, you have nothing to show.\n\n\tBabamots: I think he&#39;s got you, Gross. But I like the Peanuts systems!\n\tGrosseteste: I think it&#39;s likely too.  But I want to take a look at it after my flu lifts.  At the moment I can say I totally missed the possibility of the b3 moving to the homeworld.\n\tGrosseteste: OK, another look does not reveal a positive way forward for me, sorry to make you wait for it, good game!\n\tDraw5PlayAll: Good game.\n\nHomeworlds Online (SDG# 30744)\nStarted: 2016.11.21, Ended: 2017.1.23\nParticipants: dragon76n (S), zeder (N)\nWinner: dragon76n\n\n1) zeder: Homeworld G3 B2 Y3\n\n2) dragon76n: Homeworld B3 Y2 G3\n\n3) zeder: Build Y1 Zeder\n\n4) dragon76n: Build G1 Dragon76n\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) dragon76n: T G1 Y1 Dragon76n\n\n7) zeder: Build G1 Zeder\n\n8) dragon76n: Build Y1 Dragon76n\n\n9) zeder: Discover G1 Zeder Y1 Poker\n\n10) dragon76n: T Y1 R1 Dragon76n\n\n11) zeder: Trade G1 R1 Zeder\n\n12) dragon76n: B G1 Dragon76n\n\n13) zeder: Trade R1 B1 Zeder\n\n14) dragon76n: Move R1 Dragon76n Poker\n\tdragon76n: m r1 dragon76n Poker\n\n15) zeder: Discover G1 Poker Y2 Gin\n\tdragon76n: Apparently I&#39;ve mixed up my Message form with my Command form again... :D\n\n16) dragon76n: Trade G1 B1 Dragon76n\n\n17) zeder: Trade B1 R1 Zeder\n\n18) dragon76n: Build G1 Dragon76n\n\n19) zeder: Build Y1 Zeder\n\n20) dragon76n: M G1 Dragon76n Poker\n\n21) zeder: Build Y2 Zeder\n\n22) dragon76n: M Y1 Dragon76n Poker\n\n23) zeder: Move Y2 Zeder Poker\n\n24) dragon76n: M R1 Poker Gin\n\n25) zeder: Sacrifice R1 Zeder\nAttack R1 Gin\n\n26) dragon76n: Move Y1 Poker Zeder\n\n27) zeder: Trade Y1 R1 Zeder\n\n28) dragon76n: B Y1 Zeder\n\n29) zeder: Attack Y1 Zeder\n\n30) dragon76n: B Y3 Zeder\nC Zeder Yellow\n\n31) zeder: Build R1 Zeder\n\n32) dragon76n: Discover G1 Poker B2 Blutwo\n\n33) zeder: Build R2 Zeder\n\n34) dragon76n: B B1 Dragon76n\n\n35) zeder: Build R2 Gin\n\n36) dragon76n: T B1 Y1 Dragon76n\n\n37) zeder: Build R2 Gin\n\n38) dragon76n: T G3 R3 Dragon76n\n\n39) zeder: Discover R2 Gin Y1 Hearts\n\n40) dragon76n: Sacrifice G1 Blutwo\nBuild R3 Dragon76n\n\n41) zeder: Build R3 Gin\n\n42) dragon76n: Move R3 Dragon76n Poker\n\n43) zeder: Move Y2 Poker Zeder\n\n44) dragon76n: M R3 Poker Zeder\nC Zeder Red\n\tzeder: Oh no!\n\n45) zeder: Move R3 Gin Hearts\n\n46) dragon76n: T B1 G1 Dragon76n\n\n47) zeder: Build Y1 Zeder\n\n48) dragon76n: Discover Y1 Dragon76n G1 Greone\n\n49) zeder: Trade Y2 G2 Zeder\n\n50) dragon76n: Build Y2 Greone\n\n51) zeder: Move R2 Gin Greone\n\n52) dragon76n: Build Y3 Greone\n\n53) zeder: Move Y1 Zeder Greone\nCatastrophe Greone Y\n\n54) dragon76n: Build G2 Dragon76n\n\n55) zeder: Move G1 Gin Hearts\n\n56) dragon76n: Trade G2 Y2 Dragon76n\n\n57) zeder: Build G2 Hearts\n\n58) dragon76n: B Y1 Dragon76n\n\n59) zeder: Move R1 Gin Greone\n\n60) dragon76n: Discover Y2 Dragon76n R1 Redone\n\n61) zeder: Trade G2 Y2 Zeder\n\n62) dragon76n: Build G2 Dragon76n\n\n63) zeder: Move R3 Hearts Zeder\n\n64) dragon76n: Move G1 Dragon76n Redone\n\n65) zeder: Build R1 Hearts\n\n66) dragon76n: B G2 Redone\n\n67) zeder: Sacrifice Y2 Zeder\nMove R2 Greone Dragon76n\nMove R1 Greone Dragon76n\n\n68) dragon76n: Sacrifice R3 Dragon76n\nAttack R2 Dragon76n\nAttack R1 Dragon76n\nPass\n\n69) zeder: Build R2 Zeder\n\n70) dragon76n: D G2 Redone Y2 Yeltwo\n\n71) zeder: Trade R2 B2 Zeder\n\n72) dragon76n: Build G1 Dragon76n\n\n73) zeder: Discover G2 Hearts B2 Steak\n\n74) dragon76n: B Y1 Redone\n\n75) zeder: Build G3 Steak\n\n76) dragon76n: B G3 Redone\n\n77) zeder: Sacrifice G3 Steak\nBuild G3 Hearts\nBuild R2 Zeder\nBuild R3 Zeder\n\n78) dragon76n: Sacrifice Y2 Redone\nMove R1 Dragon76n Redone\nMove R1 Redone Zeder\nCatastrophe Zeder Red\n\n79) zeder: Move G3 Hearts Dragon76n\n\n80) dragon76n: M G1 Redone Dragon76n\nC Dragon76n Green\n\n\nHomeworlds Online (SDG# 30759)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.22, Ended: 2016.12.14\nParticipants: Subhan64 (S), Salmonax (N)\nWinner: Salmonax\n\n1) Salmonax: Homeworld G1 Y3 B3\n\n2) Subhan64: Homeworld Y2 G1 B3\n\n3) Salmonax: Build B1 Salmonax\n\n4) Subhan64: Build B1 Subhan64\n\tSalmonax: Good luck, have fun!\n\n5) Salmonax: Trade B1 G1 Salmonax\n\tSubhan64: thanks, u2\r\n\n\n6) Subhan64: Trade B3 G3 Subhan64\n\n7) Salmonax: Build G2 Salmonax\n\n8) Subhan64: Build G2 Subhan64\n\n9) Salmonax: Discover G2 Salmonax B2 Fiddle\n\n10) Subhan64: Discover G2 Subhan64 Y3 Bb\n\n11) Salmonax: Trade G1 R1 Salmonax\n\n12) Subhan64: Build G1 Subhan64\n\n13) Salmonax: Build B1 Salmonax\n\n14) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Bb\nBuild G3 Subhan64\nBuild G3 Bb\n\n15) Salmonax: Build G3 Fiddle\n\n16) Subhan64: Discover G2 Bb B2 Cm\n\n17) Salmonax: Trade B3 Y3 Salmonax\n\n18) Subhan64: Sacrifice G1 Subhan64\nBuild G1 Cm\n\n19) Salmonax: Build Y1 Salmonax\n\n20) Subhan64: Trade G2 Y2 Cm\n\n21) Salmonax: Move Y1 Salmonax Fiddle\n\n22) Subhan64: Sacrifice G2 Bb\nBuild G2 Cm\nBuild G2 Cm\n\n23) Salmonax: Move G3 Fiddle Bb\n\n24) Subhan64: Move G1 Cm Salmonax\n\n25) Salmonax: Move G3 Bb Subhan64\n\n26) Subhan64: Trade G3 R3 Subhan64\n\n27) Salmonax: Sacrifice R1 Salmonax\nAttack R3 Subhan64\n\n28) Subhan64: Sacrifice Y2 Cm\nMove G2 Cm Salmonax\nMove G2 Cm Salmonax\nCatastrophe Salmonax Green\n\n29) Salmonax: Attack B1 Subhan64\n\n\tSalmonax: Gg\n\nHomeworlds Online (SDG# 30758)\nVariants: &quot;Hard time&quot;\nStarted: 2016.11.23, Ended: 2016.12.14\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B3 R2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\tdlwillson: You too!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Felix: Build G1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: Trade G1 R1 Felix\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\n12) dlwillson: B R2 Dlwillson\n\n13) Felix: Discover R2 Felix G3 Gronch\n\n14) dlwillson: Discover R1 Dlwillson B1 Sky\n\n15) Felix: Build R3 Gronch\n\n16) dlwillson: B R3 Dlwillson\n\n17) Felix: Build R3 Felix\n\n18) dlwillson: T R2 Y2 Dlwillson\n\n19) Felix: Trade R3 Y3 Felix\n\n20) dlwillson: M Y1 Dlwillson Sky\n\n21) Felix: Move Y1 Felix Gronch\n\n22) dlwillson: B Y1 Dlwillson\n\n23) Felix: Build Y2 Felix\n\n24) dlwillson: Discover Y1 Dlwillson B1 Sea\n\n25) Felix: Move R3 Gronch Sky\n\n26) dlwillson: D Y1 Sky B3 Dabadee\n\n27) Felix: Attack R1 Sky\n\n28) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y3 Dabadee\nBuild Y3 Sea\n\n29) Felix: Sacrifice Y3 Felix\nMove R1 Sky Dlwillson\nMove R3 Sky Dlwillson\nCatastrophe Dlwillson Red\nMove Y2 Felix Dlwillson\n\n30) dlwillson: Sacrifice Y3 Dabadee\nMove Y1 Sea Dlwillson\nCatastrophe Dlwillson Y\nMove Y3 Sea Dlwillson\nMove Y1 Dabadee Felix\n\tdlwillson: Excellent play! Totally didn&#39;t see it coming!\n\tDraw5PlayAll: All just yellow ships at blue systems??\n\n31) Felix: Attack Y1 Felix\n\tdlwillson: Interesting... I&#39;m not sure why that worked.\n\tFelix: I believe they changed the rules so that it&#39;s now possible to cause a catastrophe during a turn instead of only at the end. This more closely reflects the official rules, I think, and I like it, because it opens up more strategic opportunities.\r\n\r\nAMAZING defense. I thought there was no way out of my attack!\n\n32) dlwillson: T Y3 G3 Dlwillson\n\tFelix: I don&#39;t know if it will save you in the end, but it was an awesome play.\n\tDraw5PlayAll: One ship!!!\n\n33) Felix: Move G3 Felix Dlwillson\n\tdlwillson: I&#39;m sure it won&#39;t save me, and I&#39;m pretty sure it&#39;s not legal, with or without cats in the middle of the turn. The cat should have sent my homeworld back to the bank.\n\tFelix: Ah, yeah. You&#39;re right. You should have been eliminated immediately after that catastrophe and before you moved your other Y3 home, but if the system will accept it, I&#39;m happy to play it out!\n\n34) dlwillson: B G1 Dlwillson\n\tFelix: And I think that will do it. Really great game. That was an exciting finish, and I look forward to our next rematch!\n\n35) Felix: Sacrifice R2 Gronch\nAttack G3 Dlwillson\nAttack G1 Dlwillson\n\tdlwillson: GG! See you in a week or so! :-)\n\tFelix: See you then! Or feel free to start up a non-ladder game with me any time :)\n\tDraw5PlayAll: The rules say you can temporarily abandon your homeworld at any time.\n\n\nHomeworlds Online (SDG# 30666)\nStarted: 2016.11.23, Ended: 2017.1.9\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) ts52: Build G1 Ts52\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Build G1 Ts52\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) ts52: Discover G1 Ts52 R1 Elmo\n\n15) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n16) ts52: Move B1 Ts52 Elmo\n\n17) Draw5PlayAll: Trade G1 R1 B2\n\n18) ts52: Build G1 Ts52\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) ts52: Build G2 Elmo\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild R2 B2\n\tDraw5PlayAll: Here come the factories!\n\n22) ts52: Trade G3 R3 Ts52\n\n23) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild Y2 Draw5playall\n\n24) ts52: Build G3 Ts52\n\n25) Draw5PlayAll: Move Y1 Draw5playall G2\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 G2\n\n28) ts52: Discover G3 Ts52 B1 Grover\n\n29) Draw5PlayAll: Discover Y2 Draw5playall B2 B2&#39;\n\n30) ts52: Trade G3 Y3 Grover\n\n31) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y3 B2&#39;\n\n32) ts52: Move Y1 Ts52 Elmo\n\n33) Draw5PlayAll: Move G2 Draw5playall B2&#39;\n\n34) ts52: Move Y3 Grover B2\n\n35) Draw5PlayAll: Sacrifice Y2 B2&#39;\nDiscover R2 B2 B1 B1\nMove Y3 B2&#39; Elmo\n\tDraw5PlayAll: Two can&#39;t play at that game.\n\tDraw5PlayAll: *can\n\n36) ts52: Sacrifice R2 Ts52\nAttack R1 B2\nPass\n\tts52: Sorry for running out of time. thanks for being patient.\n\n37) Draw5PlayAll: Attack G2 Elmo\n\tDraw5PlayAll: Really! I thought you would not trade an R2 for an R1...\n\n38) ts52: Move G1 Elmo B2\n\n39) Draw5PlayAll: Attack Y1 Elmo\n\n40) ts52: Build R2 Ts52\n\n41) Draw5PlayAll: Attack B1 Elmo\n\n42) ts52: Move R3 Ts52 B1\n\tDraw5PlayAll: My attack seems slow.\n\n43) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R2 B1 B2&#39;\n\n44) ts52: Build Y1 B2\n\n45) Draw5PlayAll: Build Y2 Draw5playall\n\n46) ts52: Move Y1 B2 B1\n\n47) Draw5PlayAll: Sacrifice G2 B2&#39;\nBuild G1 Elmo\nBuild B2 Elmo\n\n48) ts52: Move R3 B1 B2&#39;\n\tDraw5PlayAll: Five blue stars, man, are you kidding me?\n\n49) Draw5PlayAll: Sacrifice Y3 G2\nMove B1 Elmo Ts52\nMove B2 Elmo Ts52\nMove B1 G2 Elmo\n\tDraw5PlayAll: STALKER!\n\n50) ts52: Attack R2 B2&#39;\n\tts52: :)\n\n51) Draw5PlayAll: Sacrifice Y3 Elmo\nMove B1 Elmo Ts52\nCatastrophe Ts52 Blue\nMove Y1 Elmo Ts52\nDiscover Y1 G2 B3 B3\n\tDraw5PlayAll: I see exactly what the problem is!!!\n\n52) ts52: Attack Y1 Ts52\n\tDraw5PlayAll: This is what you get for that behavior.\n\n53) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 B3 Ts52\nMove Y2 Draw5playall Ts52\nCatastrophe Ts52 Yellow\n\tDraw5PlayAll: My last move actually seemed to be a losing move.\n\tts52: Agreed, I think if you destroyed yellow instead of blue, it would&#39;ve cost you the game. Instead....\n\tts52: Hmm, guess I didn&#39;t look at your undone move close enough. But you&#39;re definitely in a stronger position with the move you ended up going with.\n\n\tDraw5PlayAll: I blew up your greens and blues in the first case. Here I kept your greens and went after yellow.\n\tDraw5PlayAll: Good game! I suppose that brings my Homeworlds Number to 3...\n\tts52: Indeed, good game. Your Homeworlds Number?\n\tDraw5PlayAll: Andrew Looney&#39;s number is 1.\r\nIf you beat him, your number goes to 2.\r\nAnd in general, if you beat someone with number n (smaller than your own), yours is n-1.\r\n\r\nSince I think you beat Andy, yours is 2, and since I just beat you (albeit on SDG) that takes me to 3.\n\tts52: Ah, that makes sense... :)\n\nHomeworlds Online (SDG# 31884)\nVariants: &quot;Hard time&quot;\nStarted: 2017.4.6, Ended: 2017.4.17\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) wil: H B3 Y2 G3\n\tFelix: Good luck!\n\twil: Back atcha\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\twil: Lol... Meant to go goldlilox not fortress\n\tFelix: Oops! Is there any way to walk it back now?\n\n6) wil: T G1 Y1 Wil\n\twil: Nah...it is what it is... I just chuckled when I saw it\n\n7) Felix: Build Y2 Felix\n\n8) wil: B Y2 Wil\n\n9) Felix: Discover Y1 Felix G3 Opus\n\n10) wil: D Y1 Wil G1 G1\n\n11) Felix: Build Y3 Opus\n\n12) wil: B Y3 G1\n\n13) Felix: Discover Y1 Opus G1 Magnum\n\n14) wil: D Y1 G1 Y3 Y3\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: T Y2 R2 Wil\n\n17) Felix: Build Y2 Magnum\n\n18) wil: B Y2 G1\n\twil: On a bus, and then metro...these games might move..\n\n19) Felix: Build R1 Felix\n\tFelix: I&#39;m at work on my computer, so I&#39;ll be semi-around all day, but I gotta get SOME work done :)\n\n20) wil: B R1 Wil\n\n21) Felix: Trade R1 B1 Felix\n\n22) wil: M R1 Wil G1\n\n23) Felix: Build B1 Felix\n\n24) wil: B R1 Wil\n\n25) Felix: Move B1 Felix Opus\n\n26) wil: T R1 B1 Wil\n\n27) Felix: Build B2 Opus\n\n28) wil: M B1 Wil G1\n\n29) Felix: Move B2 Opus Magnum\n\twil: Two more stops...then back to work for you!\n\n30) wil: B R1 G1\n\tFelix: Phew. Though I must say I do enjoy it when a game goes along quickly. It&#39;s a pain to try to remember my strategy every time I load up the game!\n\n31) Felix: Build G1 Felix\n\n32) wil: Build G2 Wil\n\n33) Felix: Move R2 Felix Y3\n\n34) wil: M Y1 Y3 Magnum\n\tDraw5PlayAll: Felix, if I thought is that bad use the notebook.\n\n35) Felix: Move R2 Y3 Magnum\n\n36) wil: D Y2 G1 Y3 Y3\n\n37) Felix: Build R1 Magnum\n\n38) wil: D R1 G1 G2 G2\n\n39) Felix: Move R2 Magnum Y3\n\n40) wil: S R1 G2\nA R2 Y3\n\n41) Felix: Attack Y1 Magnum\n\tFelix: Well dang. I didn&#39;t think that one through.\n\n42) wil: M Y2 Y3 Magnum\nC Magnum Y\n\n43) Felix: Discover G1 Felix B3 Safe\n\n44) wil: D G2 Wil Y1 Y1\n\n45) Felix: Build G2 Felix\n\n46) wil: B B2 G1\n\n47) Felix: Sacrifice G3 Felix\nBuild G2 Safe\nBuild G3 Felix\nBuild B3 Magnum\n\n48) wil: M Y3 G1 Safe\n\n49) Felix: Sacrifice G2 Safe\nBuild Y1 Opus\nBuild Y2 Opus\n\n50) wil: B G2 Wil\n\twil: Sweet, I was looking for a safe place\n\n51) Felix: Trade B2 Y2 Magnum\n\tFelix: Haha, there are no safe spaces over here in the U.S. now that the Trump Train is in town\n\n52) wil: Sacrifice G2 Y1\nBuild R1 G1\nBuild Y1 Safe\n\n53) Felix: Sacrifice G1 Safe\nBuild R2 Magnum\n\n54) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Y3\nBuild R3 G1\n\n55) Felix: Trade Y3 G3 Opus\n\n56) wil: Move R2 Wil Magnum\n\n57) Felix: Sacrifice R1 Magnum\nAttack R2 Magnum\n\n58) wil: Move R2 Y3 Magnum\n\n59) Felix: Sacrifice R2 Magnum\nAttack R2 Magnum\nPass\n\n60) wil: Trade R3 Y3 Wil\n\n61) Felix: Sacrifice Y2 Opus\nMove R2 Magnum Y3\nMove R2 Y3 G1\nCatastrophe G1 Red\n\tFelix: I could do this all day :P\n\n62) wil: Trade B2 Y2 G1\n\twil: yeah it was week\r\n\n\n63) Felix: Sacrifice G2 Felix\nBuild B2 Magnum\nBuild B2 Opus\n\n64) wil: Build G1 Wil\n\n65) Felix: Build G2 Felix\n\n66) wil: Sacrifice G2 Wil\nBuild G2 Wil\nBuild R1 Y3\n\n67) Felix: Trade G3 R3 Opus\n\n68) wil: M R1 Y3 G1\n\n69) Felix: Move R3 Opus G1\n\n70) wil: S G2 Wil\nB R1 G1\nB R1 G1\nC G1 R\n\n71) Felix: Discover G2 Felix G3 Bank\n\n72) wil: B G2 Wil\n\n73) Felix: Build G2 Felix\n\n74) wil: M G2 Wil G1\n\n75) Felix: Discover G2 Felix R3 Factory\n\n76) wil: M G2 G1 Bank\n\n77) Felix: Build R1 Magnum\n\n78) wil: S G1 Wil\nB G1 Bank\nC Bank G\n\twil: I like to watch investments patiently until it looks like they are going to pay off\n\n79) Felix: Move B2 Opus G1\n\n80) wil: M Y2 G1 Opus\n\twil: Dang it, I really got in that one at the wrong time...  I&#39;m calling my broker...I got no green\n\n81) Felix: Move B2 Magnum Opus\n\tFelix: Haha, you need a new accountant!\n\twil: Noice!\n\n82) wil: D Y2 Opus G2 G2\n\n83) Felix: Move Y1 Opus G1\n\n84) wil: T Y1 G1 Safe\n\n85) Felix: Build Y1 Magnum\n\n86) wil: T Y3 G3 Wil\n\n87) Felix: Sacrifice G2 Factory\nBuild G2 Felix\nBuild Y3 G1\n\n88) wil: Build G2 Wil\n\n89) Felix: Sacrifice R1 Magnum\nAttack B1 G1\n\n90) wil: M R3 Y3 G2\n\n91) Felix: Move Y1 Magnum Wil\n\n92) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 G2\nBuild R1 G2\n\n93) Felix: Move Y1 G1 Wil\n\twil: yeah...this is the end..nice job\n\n94) wil: Move Y3 Safe Felix\n\n95) Felix: Sacrifice R2 Magnum\nAttack Y3 Felix\nPass\n\tFelix: Thanks! This was a good game. Very well fought!\n\n96) wil: Sacrifice Y3 G2\nMove G3 Wil Magnum\nMove G3 Magnum Opus\nMove G3 Opus Felix\n\tFelix: ...unless I mess up, of course.\n\n97) Felix: Sacrifice G2 Felix\nBuild Y3 Wil\nBuild G2 Felix\nCatastrophe Wil Yellow\n\n98) wil: Sacrifice R3 G2\nAttack G3 Felix\nAttack Y3 Felix\nAttack G2 Felix\n\twil: lol...just a good looking finale as rome crumbles\n\n99) Felix: Sacrifice Y3 G1\nMove B3 Magnum Wil\nMove B2 G1 Wil\nMove B1 G1 Wil\nCatastrophe Wil Blue\n\n\tFelix: I sure don&#39;t have much of a fleet left... good game! You nearly gave me a heart attack there at the very end. Well struggled.\n\twil: I was a beat behind...fun.\n\nHomeworlds Online (SDG# 30743)\nStarted: 2016.11.26, Ended: 2017.2.3\nParticipants: Mandrel (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) Mandrel: Homeworld R1 B2 G3\n\tFelix: Hi there! First game?\n\n3) Felix: Build G1 Felix\n\tMandrel: Hi! I&#39;ve played quite a few games before, but not for a long while; this is my first in a couple of years or so, so am probably pretty rusty.\n\n4) Mandrel: Build G1 Mandrel\n\tFelix: No problem. I&#39;m happy to help you de-rust. Hope you have fun!\n\n5) Felix: Trade G1 Y1 Felix\n\tMandrel: Thanks, you too!\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Felix: Build G1 Felix\n\n8) Mandrel: Build G1 Mandrel\n\n9) Felix: Trade G1 B1 Felix\n\n10) Mandrel: Trade G1 B1 Mandrel\n\n11) Felix: Discover B1 Felix G1 Grinch\n\n12) Mandrel: Discover B1 Mandrel G3 Tooth\n\n13) Felix: Build G1 Felix\n\n14) Mandrel: Build G1 Mandrel\n\n15) Felix: Discover G1 Felix B1 Quozah\n\n16) Mandrel: Build G2 Mandrel\n\n17) Felix: Build G2 Felix\n\n18) Mandrel: Discover G1 Mandrel B3 Early\n\n19) Felix: Sacrifice G3 Felix\nBuild G2 Quozah\nBuild G3 Felix\nBuild B2 Grinch\n\n20) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y1 Mandrel\nBuild B2 Tooth\n\n21) Felix: T B2 Y2 Grinch\n\n22) Mandrel: Build Y2 Mandrel\n\n23) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Grinch\nBuild Y3 Felix\n\n24) Mandrel: Move Y1 Mandrel Tooth\n\n25) Felix: Move Y2 Grinch Early\n\n26) Mandrel: Build Y3 Tooth\n\n27) Felix: Build Y3 Grinch\n\n28) Mandrel: Trade Y1 R1 Mandrel\n\n29) Felix: Trade Y2 R2 Early\n\n30) Mandrel: Sacrifice G1 Early\nBuild Y1 Mandrel\n\n31) Felix: Build B2 Grinch\n\n32) Mandrel: Discover G2 Mandrel B3 Hole\n\n33) Felix: M Y2 Grinch Early\n\n34) Mandrel: Trade B2 R2 Tooth\n\n35) Felix: Sacrifice G3 Felix\nBuild G1 Quozah\nBuild G3 Felix\nBuild Y2 Early\n\n36) Mandrel: Build B2 Tooth\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Early\nPass\n\n38) Mandrel: Move R1 Mandrel Hole\n\n39) Felix: Sacrifice Y2 Early\nMove R2 Early Quozah\nMove G1 Quozah Early\n\n40) Mandrel: Build R3 Hole\n\n41) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R3 Early\nBuild R3 Quozah\n\n42) Mandrel: Move Y1 Mandrel Hole\n\n43) Felix: Sacrifice Y3 Felix\nMove R3 Quozah Early\nMove R3 Early Mandrel\nMove R3 Early Mandrel\n\n44) Mandrel: Sacrifice R2 Tooth\nAttack R3 Mandrel\nAttack R3 Mandrel\n\n45) Felix: Move R1 Early Mandrel\nCatastrophe Mandrel Red\n\n46) Mandrel: Move R3 Hole Quozah\n\n47) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Quozah\nBuild R1 Quozah\nCatastrophe Quozah Red\n\tFelix: Huh. I somehow missed the fact that you had that r2...\n\n48) Mandrel: Discover B1 Tooth R1 Fall\n\tMandrel: I almost did as well, nearly sacrificed my r3 instead. Shouldn&#39;t think it&#39;ll matter in the end though..\n\n49) Felix: Move Y2 Early Fall\n\n50) Mandrel: Sacrifice Y3 Tooth\nMove B1 Fall Felix\nMove B2 Tooth Fall\nMove B2 Fall Felix\n\n51) Felix: Attack B2 Felix\n\n52) Mandrel: Attack Y1 Felix\n\n53) Felix: Sacrifice Y3 Grinch\nMove B1 Grinch Mandrel\nMove B2 Grinch Mandrel\nDiscover B2 Felix G1 Gambit\n\n54) Mandrel: Sacrifice G2 Hole\nBuild Y2 Felix\nBuild Y3 Felix\n\n55) Felix: Sacrifice Y2 Fall\nMove B2 Gambit Mandrel\nCatastrophe Mandrel Blue\nPass\n\tFelix: Way to put pressure on me like that. I think I might have pulled it off, but it was really close!\n\n\tMandrel: Thanks, but I think the writing has been on the wall for a while, you&#39;d amassed a pretty serious material advantage. Good game!\n\tFelix: Great game! Looking forward to a rematch.\n\nHomeworlds Online (SDG# 30808)\nStarted: 2016.11.30, Ended: 2016.11.30\nParticipants: agentofchaos (S), randrews (N)\nWinner: agentofchaos\n\n1) randrews: Homeworld Y3 G1 B3\n\n2) agentofchaos: Homeworld B2 R1 G3\n\n3) randrews: Build B1 Randrews\n\tagentofchaos: Enjoy the game\n\n4) agentofchaos: Build G1 Agentofchaos\n\trandrews: You too!\n\n5) randrews: Build B1 Randrews\n\n6) agentofchaos: Trade G1 B1 Agentofchaos\n\n7) randrews: Discover B1 Randrews G2 Blah\n\n8) agentofchaos: Build B2 Agentofchaos\n\n9) randrews: Build B2 Blah\n\n10) agentofchaos: Trade B2 Y2 Agentofchaos\n\n11) randrews: Trade B1 G1 Blah\n\n12) agentofchaos: Discover B1 Agentofchaos G3 Kakrafoon\n\n13) randrews: Build B1 Randrews\n\n14) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Kakrafoon Blah\nMove B1 Blah Randrews\nCatastrophe Randrews B\n\tagentofchaos: I was getting ready in case you built another blue in your homeworld. Thanks for the game. \n\trandrews: Yeah, I&#39;m not very good at Homeworlds. Good game!\n\tDraw5PlayAll: With time and practice you can improve.\n\n\nHomeworlds Online (SDG# 30817)\nVariants: &quot;Hard time&quot;\nStarted: 2016.12.6, Ended: 2017.1.1\nParticipants: agentofchaos (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3 Y2\n\n2) agentofchaos: Homeworld R2 B1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tagentofchaos: Enjoy the game\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) agentofchaos: Build G2 Agentofchaos\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: Failed...\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tDraw5PlayAll: Not making the same mistake again.\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) Draw5PlayAll: Build B1 Draw5playall\n\n12) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\n14) agentofchaos: Discover Y2 Agentofchaos G3 Doomchasm\n\n15) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n16) agentofchaos: Build Y2 Agentofchaos\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 G2\nPass\n\n18) agentofchaos: Build Y3 Doomchasm\n\n19) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade Y3 B3 G2\n\n20) agentofchaos: Trade Y1 B1 Agentofchaos\n\tDraw5PlayAll: If you build it, we will come... and blow it up in a spectacular explosion.\n\n21) Draw5PlayAll: Build B2 G2\n\tagentofchaos: puts a bit of a damper on the building industry then\n\n22) agentofchaos: Move B1 Agentofchaos Doomchasm\n\n23) Draw5PlayAll: Trade B2 R2 G2\n\n24) agentofchaos: Trade Y2 R2 Doomchasm\n\n25) Draw5PlayAll: Build B2 G2\n\n26) agentofchaos: Build B2 Doomchasm\n\n27) Draw5PlayAll: Trade B1 G1 Draw5playall\n\n28) agentofchaos: Trade B2 Y2 Doomchasm\n\n29) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n30) agentofchaos: Build B1 Doomchasm\n\n31) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n32) agentofchaos: Trade G1 R1 Agentofchaos\n\n33) Draw5PlayAll: Build G1 B2\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\n36) agentofchaos: Move R2 Doomchasm B2\n\n37) Draw5PlayAll: Build G2 B2\n\n\tDraw5PlayAll: Resistance may be futile, but we would rather DIE than face your wrath!\n\nHomeworlds Online (SDG# 30446)\nVariants: &quot;Unrated&quot;\nStarted: 2016.12.10, Ended: 2016.12.10\nParticipants: Draw5PlayAll (S), Amuzet (N)\nWinner: Draw5PlayAll\n\n1) Amuzet: Homeworld B1 Y2 G3\n\n2) Draw5PlayAll: Home R1 B3 G3\n\tDraw5PlayAll: Good luck.\n\n3) Amuzet: Discover G3 Amuzet G3 A_zerl\n\tAmuzet: you to\n\n\tAmuzet: oh god, this is my first game! I forgot that would do that\n\tDraw5PlayAll: I just plain do not understand. A few weeks ago I wanted to resign by blowing my homeworld, and it blocked the move.\r\n\r\nRematch?\n\nHomeworlds Online (SDG# 30877)\nVariants: &quot;Hard time&quot;\nStarted: 2016.12.10, Ended: 2017.1.7\nParticipants: Aristos (S), MagicJohn (N)\nWinner: Aristos\n\n1) MagicJohn: Homeworld G1 B2 B3 *\n\tAristos: Having bought out, assimilated, or conquered the last opposing tribe on the planet, the leaders of the Aristos Empire turn their eyes skyward. &quot;Are we alone? Might there be other worlds than this?&quot;\n\tMagicJohn: An acolyte magician, while immersed in his meditations, experiences visions of past generations and a strangely physical plane of existance. He rises, bumping his head on an overhanging light source and staggers into a new world. Rubbing his head, he sees a diversity of life and is stunned by a cacophony society with its sights, sounds and...touch. As he watches in disbelief, he catches phrases of sound with timber he has never before experienced... &quot;Momma told me not to come.......&quot;   \n\n2) Aristos: Homeworld B3 Y2 G3\n\tDraw5PlayAll: Was this an accident?\n\n3) MagicJohn: Build B1 Magicjohn\n\tAristos: A night of celebration around the world as the starship shipyards complete construction of the first interstellar Aristos ship!\n\n4) Aristos: Build G1 Aristos\n\tMagicJohn: A ship appears over the acolyte&#39;s head and he wonders what strange magic he is witnessing...\n\n5) MagicJohn: Trade B1 Y1 Magicjohn\n\n6) Aristos: Discover G1 Aristos B1 Leaf\n\tMagicJohn: As the acolyte, MJ, raises his hand to shield his eyes the ship he is viewing changes configuration and speeds across the sky in a burst of speed. The crowd around him gasps. All look about in shock and awe. He hears melodious sounds wafting through the air asking &quot;Do you believe in magic....?&quot; \n\n7) MagicJohn: Build Y1 Magicjohn\n\tAristos: &quot;And so we sail into the void.&quot; -- Parting words of Captain Zane on the first interstellar mission. \n\n8) Aristos: Build G1 Aristos\n\n9) MagicJohn: Discover Y1 Magicjohn R3 Awakening\n\tMagicJohn: MJ gazes at the ship and feels as if his own body is somehow connected to the machine. He refocuses his eyes and, to his astonishment, sees the landscape below. He imagines a distant planet, blinks, and..... \n\n10) Aristos: Build G2 Leaf\n\tMagicJohn: The captain of Galaxy Rider 347 Yellow begins to show signs of consternation with his navigation crew..\n\n11) MagicJohn: Build Y1 Magicjohn\n\tAristos: Deep space ship foundry established. Restlessness on homeworld about cost of space program soothed now that offworld resources can be used. Collapse of parliament averted. \n\n12) Aristos: Trade G2 Y2 Leaf\n\tMagicJohn: MJ claps hands and Galaxy Rider 348 appears overhead. Beings on the street look nervously about and begin to drift towards protected locations. The Captain of Galaxy Rider 347 contacts Siri..\n\n13) MagicJohn: Discover Y1 Awakening G2 Rebirth\n\tAristos: &quot;Captain, the Senate Appropriations Committee wants to know why you wasted an entire year&#39;s budget on a new paint job.&quot;\r\n&quot;For morale. I was sick of green.&quot;\r\n&quot;That&#39;s hardly a good use of government funds.&quot;\r\n&quot;Keep talking, boy, and I&#39;ll paint the bridge red...&quot;\r\n&quot;Yessir. I&#39;ll let the Committee know.&quot;\n\n14) Aristos: Sacrifice G3 Aristos\nBuild G2 Leaf\nBuild G2 Leaf\nBuild G3 Aristos\n\tMagicJohn: MJ blinks as he imagines a lush green world of exotic life. As the material world bends to his whim, he affects a serene smile. The captain of Galaxy Rider 348, not so much... \n\n15) MagicJohn: Move Y1 Rebirth Leaf\n\tAristos: &quot;We don&#39;t know what happened. Some weird wave of energy came through. Every member of the crew swears they heard a voice say, &#39;I imagine a green world full of exotic life.&#39; And suddenly, the ships were replicated. And the replicas held alternate versions of the crews! If we weren&#39;t beyond such superstition, I&#39;d say it was magic!&quot; -- First Mate (version 1) Yenith Iskander of Starship Zen, reporting on The Miracle At Leaf.\n\n16) Aristos: Trade G2 R2 Leaf\n\tMagicJohn: The captain of Galaxy rider 347 searches for a way home. Flying from one quadrant to the next, he finds 347 surrounded by a virtual Armada of alien ships. He addresses his crew, &quot;Prepare to grin and wave&quot;.  \n\n17) MagicJohn: Build Y2 Magicjohn\n\tAristos: &quot;Combat stations! First contact protocol!&quot;\r\n&quot;What if they come in peace?&quot;\r\n&quot;That&#39;s great! We don&#39;t!&quot;\n\n18) Aristos: Attack Y1 Leaf\n\n19) MagicJohn: Trade Y2 R2 Magicjohn\n\n20) Aristos: Sacrifice G3 Aristos\nBuild G2 Aristos\nBuild G2 Leaf\nBuild G3 Aristos\n\n21) MagicJohn: Trade B3 G3 Magicjohn\n\tAristos: Ping!\n\tDraw5PlayAll: I am not sure if I like how I can do that to other people&#39;s games.\n\tAristos: Draw5PlayAll: It is sometimes useful if an observer notices a rule not Implemented correctly. It  does no harm to have an admin look in. It&#39;s not like you can force moves or anything. :-)\n\tMagicJohn: I have been playing so badly that I really have no good options. If someone wants to discuss the rules issue it&#39;s fine with me. I am trying to play on but it&#39;s pretty pointless. Too many brain-farts in one game......\n\n22) Aristos: Discover G2 Leaf Y3 Knock\n\n23) MagicJohn: Discover Y1 Magicjohn R3 No Hope\n\tAristos: I think Draw5 was just playing with the button. \n\tMagicJohn: One might think I&#39;ve been doing something like that for most of this game.....\n\tDraw5PlayAll: In reality, I was using it as a ping, since it emails the players. It sometimes does not work if the person chose Private Messages instead of Email Notifications.\n\n24) Aristos: Sacrifice G3 Aristos\nBuild G3 Aristos\nBuild G3 Knock\nBuild R1 Leaf\n\n\tAristos: Market crashes on news that known supplies of rare element &quot;green&quot; have been exhausted! New sources urgently sought!\n\nHomeworlds Online (SDG# 30883)\nStarted: 2016.12.10, Ended: 2017.1.1\nParticipants: Simpsonsurge (S), Joe_Hill (N)\nWinner: Joe_Hill\n\n1) Joe_Hill: H Y3 B1 G3\n\tJoe_Hill: Hey Eric!\n\n2) Simpsonsurge: Homeworld R2 G3 B3\n\tSimpsonsurge: Hey!  No idea what I&#39;m doing!! Hahaha\n\n3) Joe_Hill: B G1 Joe_hill\n\tJoe_Hill: That makes two of us. This game is difficult. \n\n4) Simpsonsurge: Build B1 Simpsonsurge\n\n5) Joe_Hill: T G1 Y1 Joe_hill\n\tSimpsonsurge: It takes me 30 minutes to figure out the right command for what I want to do.  But it looks like after a game or two it gets a lot easier. \n\tJoe_Hill: Yea. Each new game you have to learn all the weird new commands for each. In this game you can abbreviate, which helps. So build becomes b and trade t, etc.\n\n6) Simpsonsurge: T B1 G1 Simpsonsurge\n\n7) Joe_Hill: B G1 Joe_hill\n\tDraw5PlayAll: I use the &quot;View All Moves&quot; whenever possible, but *obviously* it is not for Homeworlds...\n\tJoe_Hill: Some games that works very well for. I agree.\n\tSimpsonsurge: That would be a great  tool for a newbie. \n\n8) Simpsonsurge: Build B1 Simpsonsurge\n\tDraw5PlayAll: It could work for homeworlds if it used multiple select options, e.g. the left one says Move, Trade, Build, (no attack since it is impossible here) Sac, Catastrophe, pass?\n\n9) Joe_Hill: T G1 B1 Joe_hill\n\n10) Simpsonsurge: Trade B3 Y3 Simpsonsurge\n\n11) Joe_Hill: B G1 Joe_hill\n\n12) Simpsonsurge: Discover B1 Simpsonsurge Y1 Planetx\n\n13) Joe_Hill: Build G1 Joe_hill\n\n14) Simpsonsurge: B G2 Simpsonsurge\n\n15) Joe_Hill: D G1 Joe_hill Y2 Pan\n\n16) Simpsonsurge: M G1 Simpsonsurge Planetx\n\n17) Joe_Hill: M B1 Joe_hill Pan\n\n18) Simpsonsurge: B Y1 Simpsonsurge\n\n19) Joe_Hill: Build Y2 Joe_hill\n\n20) Simpsonsurge: M B1 Planetx Simpsonsurge\n\n21) Joe_Hill: Trade Y1 R1 Joe_hill\n\n22) Simpsonsurge: Trade Y3 B3 Simpsonsurge\n\n23) Joe_Hill: Build G2 Joe_hill\n\n24) Simpsonsurge: M B1 Simpsonsurge Planetx\n\n25) Joe_Hill: Trade G2 B2 Joe_hill\n\n26) Simpsonsurge: B G2 Simpsonsurge\n\n27) Joe_Hill: S Y2 Joe_hill\nM G1 Pan Planetx\nM G1 Planetx Simpsonsurge\nCatastrophe Simpsonsurge G\n\n28) Simpsonsurge: B G1 Planetx\n\n29) Joe_Hill: Move G1 Joe_hill Pan\n\n30) Simpsonsurge: M G1 Planetx Simpsonsurge\n\n31) Joe_Hill: Build G2 Pan\n\n32) Simpsonsurge: B G2 Planetx\n\n33) Joe_Hill: B G2 Joe_hill\n\n34) Simpsonsurge: T G2 R2 Planetx\n\n35) Joe_Hill: Trade G3 R3 Joe_hill\n\n36) Simpsonsurge: M R2 Planetx Pan\n\n37) Joe_Hill: M R3 Joe_hill Pan\n\n38) Simpsonsurge: M R2 Pan Joe_hill\n\n39) Joe_Hill: A R2 Joe_hill\n\n40) Simpsonsurge: B B2 Simpsonsurge\n\n41) Joe_Hill: M R3 Pan Planetx\n\n42) Simpsonsurge: T B2 R2 Simpsonsurge\n\tJoe_Hill: My blue or green 2 can attack you even though I only have a r1\n\tJoe_Hill: Or because I have an r1\n\n43) Joe_Hill: A B1 Planetx\n\n44) Simpsonsurge: M G1 Planetx Pan\n\n45) Joe_Hill: T G2 Y2 Pan\n\n46) Simpsonsurge: M R2 Simpsonsurge Planetx\n\n47) Joe_Hill: A R2 Planetx\n\n48) Simpsonsurge: B G2 Pan\n\n49) Joe_Hill: M G1 Pan Planetx\n\n50) Simpsonsurge: B G2 Simpsonsurge\n\n51) Joe_Hill: M R2 Joe_hill Pan\n\n52) Simpsonsurge: T G1 R1 Simpsonsurge\n\n53) Joe_Hill: Sacrifice Y2 Pan\nMove R3 Planetx Simpsonsurge\nMove R2 Planetx Simpsonsurge\nCatastrophe Simpsonsurge R\n\n\tJoe_Hill: good game Eric.\n\nHomeworlds Online (SDG# 30885)\nStarted: 2016.12.10, Ended: 2017.2.27\nParticipants: Amuzet (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Amuzet: Homeworld Y1 G2 B3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: First game, right?\r\n\r\nMake sure you build a B1 before exploring. And it would be better to send the small itself out, because leaving your homeworld without a large ship can be dangerous.\n\n4) Amuzet: Build B1 Amuzet\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tAmuzet: Oh you can only build ships of the same color!\n\tDraw5PlayAll: Yeah. If you wanted to build say reds, you first have to trade for it, unless you started with a red (you didn&#39;t) or attack one of mine (which is usually impractical).\n\n6) Amuzet: Discover B1 Amuzet B3 Berilium\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Amuzet: Build B1 Amuzet\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Amuzet: Trade B3 R3 Amuzet\n\tAmuzet: Now I realize my mistake in sending a blue ship to a blue system.\n\n11) Draw5PlayAll: Build B2 Draw5playall\n\n12) Amuzet: Build B2 Amuzet\n\n13) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tDraw5PlayAll: Trade B1 G1 Berilium\n\n14) Amuzet: Trade B1 G1 Berilium\n\n15) Draw5PlayAll: Build B1 G2\n\n16) Amuzet: Build G1 Berilium\n\n17) Draw5PlayAll: Trade B2 Y2 G2\n\n18) Amuzet: Trade G1 Y1 Berilium\n\n19) Draw5PlayAll: Build Y2 G2\n\n20) Amuzet: Build B2 Amuzet\n\n21) Draw5PlayAll: Build B2 Draw5playall\n\n22) Amuzet: Move B2 Amuzet Berilium\n\n23) Draw5PlayAll: Build B3 G2\n\n24) Amuzet: Discover B2 Berilium G1 Breilium\n\n25) Draw5PlayAll: Discover B2 Draw5playall G2 G2&#39;\n\n26) Amuzet: Build G1 Berilium\n\n27) Draw5PlayAll: Build G3 Draw5playall\n\n28) Amuzet: Build G3 Berilium\n\n29) Draw5PlayAll: Trade Y2 R2 G2\n\n30) Amuzet: Sacrifice G1 Berilium\nBuild Y2 Berilium\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\nBuild R1 G2\n\n32) Amuzet: Sacrifice Y2 Berilium\nDiscover G3 Berilium R2 Hola\nMove Y1 Berilium Hola\n\n33) Draw5PlayAll: Move Y3 Draw5playall G2&#39;\n\n34) Amuzet: Sacrifice G3 Hola\nBuild G1 Berilium\nBuild G3 Berilium\nBuild Y2 Hola\n\n35) Draw5PlayAll: Build G3 Draw5playall\n\n36) Amuzet: Sacrifice B2 Amuzet\nTrade B2 R2 Breilium\nTrade G1 R1 Berilium\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 G2&#39;\nBuild R3 G2\n\n38) Amuzet: Sacrifice Y2 Hola\nMove G3 Berilium G2&#39;\nMove R1 Berilium G2\nCatastrophe G2 Red\n\n39) Draw5PlayAll: Sacrifice Y2 G2\nMove Y3 G2&#39; Berilium\nDiscover Y3 G2&#39; R3 R3\n\tDraw5PlayAll: I know very well that you can bomb the reds.\n\n40) Amuzet: Sacrifice G3 G2&#39;\nBuild Y2 Hola\nBuild B2 Amuzet\nBuild R1 Breilium\n\n41) Draw5PlayAll: Trade B1 R1 G2\n\n42) Amuzet: Trade B1 G1 Amuzet\n\n43) Draw5PlayAll: Build G3 Draw5playall\n\n44) Amuzet: Build G3 Berilium\n\n45) Draw5PlayAll: Sacrifice R1 G2\nAttack G3S Berilium\n\n46) Amuzet: Sacrifice Y2 Hola\nMove R2 Breilium G2\nMove Y1 Hola Breilium\n\n47) Draw5PlayAll: Move Y2 G2 Berilium\n\n48) Amuzet: Trade G1 B1 Berilium\n\n49) Draw5PlayAll: Trade Y2 R2 Berilium\n\n\tDraw5PlayAll: Hello \n\tDraw5PlayAll: Sadly, the empire appears to have faded away, and ours has ordered a cease fire. Their president is dead with no replacement and no one is DOING anything.\n\nHomeworlds Online (SDG# 30818)\nVariants: &quot;Hard time&quot;\nStarted: 2016.12.10, Ended: 2017.2.10\nParticipants: agentofchaos (S), Draw5PlayAll (N), Amuzet (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Amuzet: Homeworld B1 R2 G3\n\n3) agentofchaos: Homeworld R3 B2 G3\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Amuzet: Build G1 Amuzet\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n8) Amuzet: Trade G1 Y1 Amuzet\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) Draw5PlayAll: Build B1 Draw5playall\n\n11) Amuzet: Build G1 Amuzet\n\n12) agentofchaos: Trade G1 B1 Agentofchaos\n\n13) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n14) Amuzet: Discover G1 Amuzet Y3 Alley\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n17) Amuzet: Build G1 Alley\n\n18) agentofchaos: Discover Y1 Agentofchaos G1 Urizen\n\n19) Draw5PlayAll: Build B1 G2\n\n20) Amuzet: Build G1 Amuzet\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) Draw5PlayAll: Build G2 Draw5playall\n\n23) Amuzet: Sacrifice G3 Amuzet\nBuild G2 Alley\nBuild G3 Amuzet\nBuild G3 Amuzet\n\n24) agentofchaos: Build B2 Agentofchaos\n\tAmuzet: God it took me a day to figure out what I was doing wrong, thank god it doesn&#39;t let you sac a g1 to build 3 G ships! XD\n\n25) Draw5PlayAll: Build B2 G2\n\n26) Amuzet: Sacrifice G3 Amuzet\nBuild G3 Alley\nBuild Y1 Amuzet\nBuild Y2 Amuzet\nCatastrophe Alley Green\n\n27) agentofchaos: Build Y2 Urizen\n\tAmuzet: My plan worked!\n\tDraw5PlayAll: Why did you blow your own ships like that?\n\n28) Draw5PlayAll: Trade B2 Y2 G2\n\n29) Amuzet: Sacrifice Y2 Amuzet\nDiscover G1 Amuzet B3 Aloha\nMove Y1 Amuzet Aloha\n\n30) agentofchaos: Trade B2 R2 Agentofchaos\n\n31) Draw5PlayAll: Trade B1 R1 G2\n\n32) Amuzet: Build Y2 Aloha\n\n33) agentofchaos: Trade G3 Y3 Agentofchaos\n\n34) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\nBuild G1 Draw5playall\n\n35) Amuzet: Sacrifice G3 Amuzet\nBuild Y3 Amuzet\nBuild G1 Aloha\nBuild G2 Aloha\n\n36) agentofchaos: Build Y3 Agentofchaos\n\n37) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\n38) Amuzet: Sacrifice Y2 Aloha\nMove G1 Aloha Amuzet\nMove G1 Aloha G2\n\n39) agentofchaos: Build G3 Agentofchaos\n\n40) Draw5PlayAll: Attack G1E G2\n\n41) Amuzet: Build Y2 Aloha\n\n42) agentofchaos: Move R2 Agentofchaos Urizen\n\n43) Draw5PlayAll: Build G3 B2\n\n44) agentofchaos: Move R2 Urizen G2\n\n45) Draw5PlayAll: Attack R2S G2\n\n46) agentofchaos: Trade G2 R2 Agentofchaos\n\n47) Draw5PlayAll: Sacrifice Y2 G2\nMove G3 B2 Aloha\nMove G3 Aloha Amuzet\n\n48) agentofchaos: Discover Y3 Agentofchaos R1 Cashzone\n\n49) Draw5PlayAll: Attack Y3E Amuzet\n\n50) agentofchaos: Build Y2 Agentofchaos\n\n51) Draw5PlayAll: Attack Y1E Amuzet\n\n52) agentofchaos: Build G2 Agentofchaos\n\n53) Draw5PlayAll: Build G3 Draw5playall\n\n\nHomeworlds Online (SDG# 30786)\nStarted: 2016.12.15, Ended: 2016.12.23\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\tDraw5PlayAll: Not sure what to do about phoenixian. I want the game to continue legitimately (killing him would make you win by force), but it has been three weeks.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Hmm. Yeah. I think that&#39;s just the risk of 3P and 4P games and there&#39;s not much to be done about it. Best to stick to 2P games so stuff like that doesn&#39;t occur.\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: That game is active again. I think it is even your turn.\n\n6) Felix: Trade G1 R1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: Build R1 Felix\n\tDraw5PlayAll: If you freeze red, I will freeze yellow!\n\tFelix: Okay. Good luck :)\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) Felix: Build R2 Felix\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n12) Felix: Trade R2 Y2 Felix\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Rats.\n\n14) Felix: Discover Y2 Felix G1 Rim\n\n15) Draw5PlayAll: Build Y3 G2\n\n16) Felix: Build Y3 Rim\n\n17) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n18) Felix: Move Y2 Rim G2\n\n19) Draw5PlayAll: Discover Y1 G2 B1 B1\n\tDraw5PlayAll: DaneHbogh yIta&#39;?\n\n20) Felix: Build Y2 G2\n\tDraw5PlayAll: First ever: d Y1 G2 B1 B1\n\tFelix: You&#39;ve gotten less creative with your planet names :P\n\n21) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack Y2 G2\nAttack Y2 G2\n\tDraw5PlayAll: I was never that creative anyway -- usually just reusing the same stuff. And when I had a new name, it wasn&#39;t that good, except Qo&#39;noS which I rarely get to do anyway.\n\n22) Felix: Build Y3 Rim\n\n23) Draw5PlayAll: Move Y2 G2 B1\n\n24) Felix: Move Y3 Rim G2\n\tFelix: Why do you rarely get to use that?\n\tDraw5PlayAll: Reserved for red stars\n\n25) Draw5PlayAll: Sacrifice Y2 B1\nMove Y3 G2 B1\nMove Y1 Draw5playall G2\n\tFelix: Is that a real name from something? I use Bazoik all the time from Chex Quest and I use it for other colored planets even though Bazoik is red.\n\tDraw5PlayAll: Should I, or should I not...\n\n26) Felix: Move Y3 G2 B1\n\n27) Draw5PlayAll: Sacrifice Y3 B1\nMove Y1 B1 Felix\nMove Y1 G2 B1\nMove Y1 B1 Felix\n\tDraw5PlayAll: I hope this works.\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 B1\nBuild Y3 Rim\nBuild R2 Felix\n\n29) Draw5PlayAll: Discover Y2 G2 B1 B1&#39;\n\tFelix: Interesting move. I hope the intrigue of mine matches it.\n\tDraw5PlayAll: Dang, it failed.\n\n30) Felix: Discover Y3 B1 G2 Oroset\n\n31) Draw5PlayAll: Trade Y2 R2 B1&#39;\n\n32) Felix: Sacrifice R2 Felix\nAttack Y1 Felix\nAttack Y1 Felix\n\tDraw5PlayAll: South&#39;s ship Y3 was not sacrificed in the rim system. South did not move their Y3 ship from rim to Oroset. The rim system was not abandoned to the hyperspatial flux. South did not move their Y3 ship from Oroset to Draw5PlayAll. South did not move their Y3 ship from Oroset to Draw5PlayAll.\n\tDraw5PlayAll: I see no plans for you to get three 3-point ships in my homeworld any time soon.\n\n33) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R2 B1&#39; Felix\n\n34) Felix: Sacrifice Y3 Rim\nDiscover Y2 B1 Y2 Implement\nMove Y3 Rim Felix\nDiscover Y1 Felix Y1 Outage\n\n35) Draw5PlayAll: Move R2 Felix Outage\n\tDraw5PlayAll: You might be lost. You cannot get a Y3 to your homeworld.\n\n36) Felix: D Y1 Outage B2 Brinks\n\tFelix: :)\n\n37) Draw5PlayAll: Build G1 Draw5playall\n\n38) Felix: B Y3 Oroset\n\tDraw5PlayAll: Thanks for the escape system!\n\n39) Draw5PlayAll: Move R2 Outage Brinks\n\n40) Felix: D Y1 Brinks Y1 Regret\n\n41) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R2 Brinks\n\n42) Felix: Trade R1 G1 Felix\n\n\tFelix: You can&#39;t move at all!\n\tDraw5PlayAll: I k&amp;#324;ow. There is no way to do anyth&icirc;ng.\n\nHomeworlds Online (SDG# 30953)\nVariants: &quot;Hard time&quot;\nStarted: 2016.12.17, Ended: 2017.1.3\nParticipants: Subhan64 (S), Remneb (N)\nWinner: Subhan64\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld B3 G2 R3\n\n3) Remneb: Build G1 Remneb\n\n4) Subhan64: Build R1 Subhan64\n\n5) Remneb: Trade G1 R1 Remneb\n\n6) Subhan64: Build R2 Subhan64\n\n7) Remneb: Build G1 Remneb\n\n8) Subhan64: Trade R2 Y2 Subhan64\n\n9) Remneb: Trade G1 Y1 Remneb\n\n10) Subhan64: Build R2 Subhan64\n\n11) Remneb: Build R2 Remneb\n\n12) Subhan64: Build Y1 Subhan64\n\n13) Remneb: Discover R2 Remneb Y3 Rogue One\n\n14) Subhan64: Discover R1 Subhan64 G1 Kermit\n\n15) Remneb: Trade R1 G1 Remneb\n\n16) Subhan64: Trade Y2 B2 Subhan64\n\n17) Remneb: Move R2 Rogue Kermit\n\n18) Subhan64: Sacrifice Y1 Subhan64\nDiscover R1 Kermit Y3 Bb\n\n19) Remneb: Build Y1 Remneb\n\n20) Subhan64: Build B1 Subhan64\n\n21) Remneb: Discover Y1 Remneb Y3 Drone\n\n22) Subhan64: Trade B2 G2 Subhan64\n\n23) Remneb: Move G1 Remneb Drone\n\n24) Subhan64:\nBuild G1 Subhan64\n\n25) Remneb: Build G2 Remneb\n\n26) Subhan64: Trade G2 Y2 Subhan64\n\n27) Remneb: Build G2 Drone\n\n28) Subhan64: Build G3 Subhan64\n\n29) Remneb: Build G3 Remneb\n\n30) Subhan64: Sacrifice Y2 Subhan64\nMove G1 Subhan64 Kermit\nMove G1 Kermit Bb\n\n31) Remneb: Move Y1 Drone Kermit\n\n32) Subhan64: Move G1 Bb Remneb\nCatastrophe Remneb Green\n\n\tRemneb: Thanks for the game.\n\tSubhan64: Thanks!\r\n\n\nHomeworlds Online (SDG# 30427)\nStarted: 2016.12.18, Ended: 2017.1.28\nParticipants: Babamots (S), Draw5PlayAll (W), Felix (N), mi_spero (E)\nWinner: Babamots\n\n1) Felix: Homeworld R2 B3 G3\n\tmi_spero: Good luck and have fun! \n\tmi_spero: Hi, Draw5. :) Can teammates coordinate via pm?\n\tDraw5PlayAll: Hold on.\n\tDraw5PlayAll: (Apparently the times were rounded.)\r\n\r\nOk, so this is an unofficial team mode, So it is Felix &amp; MiSpero vs Babamots and me.\r\n\r\nYes, PM communication is legal. However, we have a more pressing issue: Babamots has not signed in for the last seven weeks. I have a trick to try to spur action, but I do not know if it will work. If this fails, we can scrap this game and try to find a more active player.\n\tmi_spero: @Draw5PlayAll feel free to invite me if we&#39;re remaking.\n\tDraw5PlayAll: The call admin thing was designed to just do that, but nowadays Aaron is busy and we use it to send emails to all players in the game.\n\tDraw5PlayAll: Oh, and make sure we actually give Babamots a chance.\n\tmi_spero: Ok. And nice exploit with the call admin! It&#39;s always fun to figure out ways to use things in ways they weren&#39;t originally intended. :D\n\tBabamots: I&#39;m not a great player, but I don&#39;t think I&#39;ll totally bore you either. I will have less time to play while I&#39;m traveling for the holidays, but I won&#39;t time out.\n\tBabamots: I&#39;m not a great player, but I don&#39;t think I&#39;ll totally bore you either. I will have less time to play while I&#39;m traveling for the holidays, but I won&#39;t time out.\n\tBabamots: I&#39;m not a great player, but I don&#39;t think I&#39;ll totally bore you either. I will have less time to play while I&#39;m traveling for the holidays, but I won&#39;t time out.\n\tBabamots: I&#39;m not a great player, but I don&#39;t think I&#39;ll totally bore you either. I will have less time to play while I&#39;m traveling for the holidays, but I won&#39;t time out.\n\tBabamots: Thanks for letting me stay :-).\n\tFelix: Cool! Have fun all! MiSpero, feel free to message me so we can coordinate our plan of attack!\n\n2) mi_spero: Homeworld B2 Y1 G3\n\tmi_spero: @Felix, I think I&#39;m with Draw5.\n\tDraw5PlayAll: I originally intended opposite sides to be teammates, so yes, MiSpero is with Felix.\n\tDraw5PlayAll: Belay that! I was looking at the clocks, not the positions. Yes, MiSpero *is* on my team.\n\tmi_spero: Ok; that makes sense. :D That would be how I would intuitively interpret it too.\n\tmi_spero: So its me and Felix vs Draw and Babamots. Gl hf!\n\n3) Babamots: Homeworld G3 Y1 B3\n\tDraw5PlayAll: No, Felix and Babamots are on a team. Felix is north and Babamots is south.\r\n\r\nI got confused by the clocks.\n\tmi_spero: Oh, ok.\n\tmi_spero: Well, now that&#39;s sorted out. :D\n\n4) Draw5PlayAll: Homeworld R1 B2 G3\n\n5) Felix: Build G1 Felix\n\n6) mi_spero: Build G1 Mi_spero\n\tFelix: Good luck!\n\n7) Babamots: Build B1 Babamots\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I wish I knew if Felix and Babamots were planning anything through secret messages...\n\n9) Felix: Trade G1 Y1 Felix\n\tmi_spero: :D\n\tmi_spero: Well, I think it would be GTO to do so, therefore if we act as if they are and play in a maximally exploitative way, which will also be GTO, they can therefore not gain any advantage by deviating from the GTO which we assumed they were enacting. :D So we don&#39;t need to know. :D\n\n10) mi_spero: Discover G1 Mi_spero Y3 Tarci\n\n11) Babamots: Build B1 Babamots\n\tmi_spero: &quot;tarci&quot; [&#39;tar-she] means: &quot;x1 is a star/sun with stellar properties x2.&quot; in lojban.\n\tmi_spero: so &quot;ta tarci lo pelxu&quot; would mean &quot;That star/sun has stellar property &#39;yellow&#39;&quot; or &quot;That star is yellow&quot;.\n\tmi_spero: I think. lojban grammar is hard.\n\n12) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n13) Felix: Build G1 Felix\n\tDraw5PlayAll: vIH ma&#39;eH!\n\tBabamots: I&auml;! I&auml;!\n\tmi_spero: test i I l L\n\tmi_spero: @Babamots Is that Na&#39;vi?\n\tBabamots: That&#39;s the cheer of Cthulhu&#39;s worshippers.\n\n14) mi_spero: Build G1 Mi_spero\n\tFelix: I sprek engrish.\n\tDraw5PlayAll: We all seem to be speaking different languages. Literally.\n\tDraw5PlayAll: \n\tDraw5PlayAll: Well,  more like writing or typing.\n\tmi_spero: go&#39;i (literally repeats the last statement in the conversation)\n\tmi_spero: And pronounced &quot;&#39;Go-he&quot;. (It&#39;s lojban)\n\n15) Babamots: Trade B1 R1 Babamots\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) Felix: Trade G1 B1 Felix\n\tDraw5PlayAll: yo&#39; weghbogh qach maH.\n\tmi_spero: I think I&#39;m starting to get the hang of pronouncing the Klingon. Still don&#39;t know what it means, though.\n\tDraw5PlayAll: What property separates the SDG depictions of the R1, G2, B1, Y1, and Y3 ships from the others? \n\tmi_spero: what?\n\n18) mi_spero: Build G1 Tarci\n\n19) Babamots: Discover B1 Babamots G2 Ferenginar\n\tmi_spero: @Draw5PlayAll Ahh!! I get it! They have squares instead of dots?\n\n20) Draw5PlayAll: Discover G1 Draw5playall B3 B3\n\tDraw5PlayAll: Is that the Ferengi from Star Trek TNG?\n\n21) Felix: B B1 Felix\n\tDraw5PlayAll: ...keep forgetting I have a 1-2 when I have a 1-3 in every other active game (except one 2-3).\n\tBabamots: Ferenginar is in fact the Ferengi homeworld. It rains almost everywhere almost all the time.\n\n22) mi_spero: Trade G1 B1 Mi_spero\n\tBabamots: Happy holiday(s) everyone! Travel safe if that&#39;s what you&#39;re up to!\n\tmi_spero: Thanks. Sorry for the slow responses, we&#39;re in Wisconsin with family and I don&#39;t always have access to the Internet.\n\n23) Babamots: Build B1 Ferenginar\n\n24) Draw5PlayAll: Build G1 B3\n\n25) Felix: T B1 R1 Felix\n\n26) mi_spero: Build G1 Mi_spero\n\n27) Babamots: Trade B1 Y1 Ferenginar\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) Felix: Build Y2 Felix\n\n30) mi_spero: Build G2 Tarci\n\n31) Babamots: Build Y2 Ferenginar\n\n32) Draw5PlayAll: Move Y2 Draw5playall B3\n\n33) Felix: Build G2 Felix\n\n34) mi_spero: Build G2 Mi_spero\n\n35) Babamots: Discover Y1 Ferenginar G3 Kesprytt\n\n36) Draw5PlayAll: Trade G1 R1 B3\n\n37) Felix: Discover G2 Felix B1 Threat\n\tDraw5PlayAll: Suq nuH.\r\n\r\nMiSpero please do not move until you get my message...\n\n38) mi_spero: Discover G2 Mi_spero B3 Bandulami_spero\n\n39) Babamots: Build B1 Ferenginar\n\tmi_spero: lookup bandu on vlasisku if you&#39;re curious about the name.\n\tmi_spero: I wanted to say &quot;bandu zo&#39;e la fileks&quot;, but there wasn&#39;t enough room.\n\tDraw5PlayAll: Another gimsu? I hope I spelled that correctly...\n\tDraw5PlayAll: One thing I hate about Klingon is how hard it is to get a noticeable &#39; sound without sounding too obvious.\n\n40) Draw5PlayAll: Build G1 Draw5playall\n\tmi_spero: In lojban the &#39; character makes the English h sound and the . makes the Klingon &#39; sound, while the x makes the Klingon GH sound.\n\tmi_spero: Gismu.\n\tDraw5PlayAll: Oh no. Lojban has that thing too?\n\n41) Felix: Sacrifice Y1 Felix\nMove G2 Threat Tarci\nCatastrophe Tarci Green\n\tmi_spero: @Draw5PlayAll yep. Glottal stop, velar fricative, the works. :D\n\tmi_spero: And it occurs pretty often. .i (glottal stop, i as in eel) denotes the beginning of a sentence. :D\n\n42) mi_spero: Build G1 Bandulami_spero\n\n43) Babamots: Move B1 Ferenginar Kesprytt\n\n44) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Told you...\n\n45) Felix: Build Y2 Felix\n\tDraw5PlayAll: paw weghbogh Duj tugh!\n\n46) mi_spero: Trade G2 R2 Bandulami_spero\n\tmi_spero: Yeah, though to be fair, at that point I had to choose between risking my terciary star and my homeworld in green tech.\n\n47) Babamots: Build B1 Kesprytt\n\n48) Draw5PlayAll: Discover G1 Draw5playall B3 B3&#39;\n\tDraw5PlayAll: MiSpero please... ugh. We need blue and red, but it is harder for me to get blue.\n\n49) Felix: Build G1 Felix\n\tmi_spero: Considerations like that are not even on my radar, sorry. I can kindof sortof handle that sort of thing in two player games, but I&#39;ve messed it up in like every game I&#39;ve played.\n\n50) mi_spero: Build G2 Bandulami_spero\n\n51) Babamots: Sacrifice Y2 Ferenginar\nMove B1 Kesprytt Mi_spero\nMove B1 Kesprytt Mi_spero\nCatastrophe Mi_spero B\n\n52) Draw5PlayAll: Build G2 Draw5playall\n\tBabamots: Sorry for the delay. Travel was crazy and I&#39;ve been getting settled back in for a couple of days.\n\n53) Felix: Sacrifice Y2 Felix\nMove G1 Felix Mi_spero\nMove G3 Felix Mi_spero\nCatastrophe Mi_spero Green\n\tDraw5PlayAll: Oh no.\n\tDraw5PlayAll: Hmmm... counting on Felix not giving up his only large ship to destroy mi_spero.\n\n54) Babamots: Build Y1 Kesprytt\n\n55) Draw5PlayAll: Trade G2 B2 Draw5playall\n\tFelix: Shrug. Risky, but probably worth it! Sorry mi_spero! Go get him, Babamots!\n\n56) Felix: Trade R1 G1 Felix\n\tDraw5PlayAll: I think I will destroy Felix, but then Babamots wilL destroy my own homeworld.\n\n57) Babamots: Move Y1 Kesprytt Ferenginar\n\tBabamots: That would be kind of convenient since the system will only know that the game over when one player is left. If two allies were left, I guess we&#39;d have to time it out or resign.\n\n58) Draw5PlayAll: Move B2 Draw5playall Kesprytt\n\n59) Felix: Build Y2 Felix\n\n60) Babamots: Build Y2 Kesprytt\n\n61) Draw5PlayAll: Sacrifice R1 B3\nAttack Y2S Kesprytt\n\n62) Felix: Discover Y2 Felix G1 Roam\n\tDraw5PlayAll: Eek.\n\n63) Babamots: Build Y2 Kesprytt\n\n64) Draw5PlayAll: Build Y3 Kesprytt\nCatastrophe Kesprytt Y\n\n65) Felix: Build Y1 Felix\n\n66) Babamots: Build Y2 Ferenginar\n\n67) Draw5PlayAll: Build G2 Draw5playall\n\n68) Felix: Discover Y2 Felix R1 Net\n\n69) Babamots: Move Y2 Ferenginar Bandulami_spero\n\n70) Draw5PlayAll: Build G2 B3\n\n71) Felix: Build Y2 Roam\n\n72) Babamots: Build Y3 Ferenginar\n\n73) Draw5PlayAll: Build Y3 B3\n\n74) Felix: Build Y3 Felix\n\tDraw5PlayAll: nooooooooooo\n\n75) Babamots: Sacrifice R1 Babamots\nAttack G2E Bandulami_spero\n\n76) Draw5PlayAll: Move Y1 Draw5playall B3&#39;\n\n77) Felix: Move Y2 Roam B3\n\tFelix: Yay!\n\n78) Babamots: Move Y1 Ferenginar B3\nCatastrophe B3 Y\n\tBabamots: I kind of wanted to finish a game without getting a green ship, but that&#39;s probably not the best strategy.\n\n79) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n80) Felix: Build G2 Felix\n\n81) Babamots: Trade Y2 R2 Bandulami_spero\n\n82) Draw5PlayAll: Build G2 Draw5playall\n\tDraw5PlayAll: I just hate how seats are alphabetical, not random. It is annoying in Sinister and 2v2.\n\tFelix: You should suggest it for SDG 2.0\n\n83) Felix: Discover G1 Felix B1 Spindar\n\n84) Babamots: Attack G1E Bandulami_spero\n\tBabamots: Really? Seating isn&#39;t random? That&#39;s a major flaw, especially in sinister.\n\tmi_spero: ditto\n\n85) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 B3\nBuild B1 Kesprytt\n\n86) Felix: Sacrifice Y1 Felix\nMove G1 Spindar B3\nCatastrophe B3 Green\n\n87) Babamots: Attack R2E Bandulami_spero\n\n88) Draw5PlayAll: Build Y1 Draw5playall\n\n89) Felix: Sacrifice Y3 Felix\nMove G2 Felix Roam\nMove G2 Roam B3&#39;\nMove G2 B3&#39; Draw5playall\n\n90) Babamots: Sacrifice Y3 Ferenginar\nMove G1 Bandulami_spero Draw5playall\nCatastrophe Draw5playall G\nMove G2 Bandulami_spero Draw5playall\nMove R2 Bandulami_spero Draw5playall\n\n91) Babamots: Trade R2 Y2 Draw5playall\n\tDraw5PlayAll: I hate that my teammate got booted so early.\n\tFelix: &quot;Give in to your hatred. It will only make you stronger.&quot; - Emperor Palpatine.\r\n\r\nSuch is the nature of 2v2. \n\n92) Babamots: Attack R2W Draw5playall\n\n\tDraw5PlayAll: Why did my R2 need to be overtaken?\n\tBabamots: I don&#39;t know. The system said it was my turn, so I took a turn. I had hoped I could just keep playing with no opponents and use up all the pieces.\n\tFelix: Good game all! Pleasure being your teammate Babamots!\n\nHomeworlds Online (SDG# 30958)\nStarted: 2016.12.18, Ended: 2017.3.2\nParticipants: MagicJohn (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) MagicJohn: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) MagicJohn: Build G1 Magicjohn\n\tDraw5PlayAll: The fortress, a classic.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) MagicJohn: Discover G1 Magicjohn R1 Antagonist\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) MagicJohn: Discover G1 Magicjohn Y1 Empire\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) MagicJohn: Build G1 Magicjohn\n\n13) Draw5PlayAll: Build G2 Draw5playall\n\n14) MagicJohn: Build G2 Empire\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\n\n16) MagicJohn: Build G3 Antagonist\n\n17) Draw5PlayAll: Discover Y2 Draw5playall B2 B2\n\n18) MagicJohn: Trade G3 Y3 Magicjohn\n\n19) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n20) MagicJohn: Sacrifice G3 Antagonist\nBuild G2 Antagonist\nBuild G3 Magicjohn\nBuild G3 Magicjohn\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 B2\n\n22) MagicJohn: Discover G3 Magicjohn B1 Colony3\n\n23) Draw5PlayAll: Trade Y3 R3 B2\n\n24) MagicJohn: Trade G1 R1 Magicjohn\n\n25) Draw5PlayAll: Move G2 Draw5playall B2\n\n26) MagicJohn: Build R2 Magicjohn\n\n27) Draw5PlayAll: Build Y3 B2\n\n28) MagicJohn: Discover G1 Empire Y3 Colony4\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Scared of green systems now!,\n\tDraw5PlayAll: Hello?\n\tMagicJohn: Sorry, wife health issues..... back in the game soon.....\n\n30) MagicJohn: Move R1 Magicjohn Empire\n\n31) Draw5PlayAll: Move Y3 B2 Antagonist\n\n32) MagicJohn: Sacrifice G3 Magicjohn\nBuild G3 Empire\nBuild R2 Magicjohn\nBuild R3 Empire\n\n33) Draw5PlayAll: Attack G2 Antagonist\n\n34) MagicJohn: Discover R3 Empire B2 Colony5\n\n35) Draw5PlayAll: Build R3 B2\n\n36) MagicJohn: Move R2 Magicjohn Empire\n\tDraw5PlayAll: Never saw colony1 or 2...\n\n37) Draw5PlayAll: Move Y1 Draw5playall B2\n\tMagicJohn: Sneaky bunch of aliens...\n\n38) MagicJohn: Move R1 Empire B2\n\n39) Draw5PlayAll: Discover R3 B2 B1 B1\n\n40) MagicJohn: Trade R2 B2 Magicjohn\n\n41) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B3 Draw5playall\nBuild R2 B1\n\n42) MagicJohn: Attack Y1 B2\n\tDraw5PlayAll: Risky to sweep the bank, but...\n\n43) Draw5PlayAll: Attack R1 B2\n\n44) MagicJohn: Move Y1 B2 Colony3\n\n45) Draw5PlayAll: Move Y2 Draw5playall B2\n\n46) MagicJohn: Move G3 Colony3 Magicjohn\n\n47) Draw5PlayAll: Move Y2 B2 B1\n\n48) MagicJohn: Move Y3 Magicjohn Colony3\n\n49) Draw5PlayAll: Attack G1 Antagonist\n\tDraw5PlayAll: In this situation, sacrifices and abandonments are questionable as the opponent just builds the ship...\n\n50) MagicJohn: Move Y1 Colony3 Colony5\n\n51) Draw5PlayAll: Sacrifice Y2 B2\nDiscover B3 Draw5playall Y2 Y2\nMove R2 Draw5playall Y2\n\n52) MagicJohn: Sacrifice G1 Colony4\nBuild Y3 Colony5\n\n53) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade G1 B1 Antagonist\n\n54) MagicJohn: Move B2 Magicjohn Empire\n\n55) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Antagonist\nBuild G1 B2\nBuild G3 Draw5playall\n\tDraw5PlayAll: Blue Teleportation\n\n56) MagicJohn: Move R2 Empire Magicjohn\n\n57) Draw5PlayAll: Sacrifice Y2 B1\nMove G1 B2 Empire\nMove G2 B2 Empire\nCatastrophe Empire Green\n\n58) MagicJohn: Discover Y3 Colony5 G3 Colony6\n\n59) Draw5PlayAll: Build Y2 Antagonist\n\n60) MagicJohn: Move Y1 Colony5 Antagonist\n\n61) Draw5PlayAll: Sacrifice Y2 Antagonist\nMove G1 Draw5playall B2\nMove G1 B2 B1\n\n62) MagicJohn: Build Y2 Colony6\n\n63) Draw5PlayAll: Build G1 B1\n\n64) MagicJohn: Move Y1 Antagonist Colony5\n\n65) Draw5PlayAll: Build G2 B1\n\n66) MagicJohn: Pass\n\n67) Draw5PlayAll: Move G1 Antagonist Magicjohn\n\n68) MagicJohn: Attack G1 Magicjohn\n\tDraw5PlayAll: !\n\n69) Draw5PlayAll: Sacrifice Y3 Antagonist\nMove G1 B1 Magicjohn\nMove G1 B1 Magicjohn\nCatastrophe Magicjohn Green\nMove R3 B1 Magicjohn\n\n70) MagicJohn: Sacrifice Y3 Colony6\nMove Y3 Colony3 Magicjohn\nMove R3 Colony5 Empire\nMove R3 Empire Magicjohn\n\n71) Draw5PlayAll: Sacrifice R3 B2\nAttack R3 Magicjohn\nAttack Y3 Magicjohn\nAttack R2 Magicjohn\n\tDraw5PlayAll: Gotcha.\n\tMagicJohn: Yes, things have been a bit hopeless for several moves now.  Well played.\n\tDraw5PlayAll: You neither move nor resign??\n\tMagicJohn: getting impatient are we??\n\n\nHomeworlds Online (SDG# 31009)\nVariants: &quot;Hard time&quot;\nStarted: 2016.12.23, Ended: 2017.1.3\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Felix: H B1 R3 G3\n\tdlwillson: Whoa! What happened?\n\tFelix: I hit the wrong button by mistake :( tiny phone screen\n\tFelix: I hit the wrong button by mistake :( tiny phone screen\n\tFelix: I hit the wrong button by mistake :( tiny phone screen\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Let&#39;s make this interesting :)\n\n4) Felix: Build G1 Felix\n\tdlwillson: B2 R2 would have been more interesting. :-)\n\tdlwillson: Also, I&#39;ve done exactly that. Now, I zoom WAY in before I click accept. ;-)\n\tDraw5PlayAll: What &quot;wrong button&quot;?\n\tDraw5PlayAll: Oh wow, a competition for the #1 seed! Let the best galactic overlord win!\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Felix: T G1 Y1 Felix\n\tdlwillson: When challenged, &quot;accept&quot; and &quot;decline&quot; appear right next to each other.\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: B G1 Felix\n\n9) dlwillson: D G1 Dlwillson B2 Sky\n\n10) Felix: Trade G1 B1 Felix\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Build B1 Felix\n\n13) dlwillson: B G1 Sky\n\n14) Felix: Discover B1 Felix B2 Synchron\n\n15) dlwillson: B G2 Sky\n\n16) Felix: Build B2 Felix\n\n17) dlwillson: Trade G2 Y2 Sky\n\n18) Felix: Discover B2 Felix G2 Occo\n\n19) dlwillson: Sacrifice Y2 Sky\nDiscover G1 Sky B3 Sea\nDiscover G1 Sky B3 Bluesky\n\n20) Felix: Build B2 Occo\n\n21) dlwillson: Build G2 Bluesky\n\n22) Felix: Trade B2 R2 Occo\n\n23) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB G3 Bluesky\n\n24) Felix: Build B2 Occo\n\n25) dlwillson: T G2 R2 Bluesky\n\n26) Felix: Build G2 Felix\n\n27) dlwillson: M G2 Dlwillson Synchron\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Felix\nBuild Y2 Felix\n\n29) dlwillson: Sacrifice G3 Bluesky\nBuild Y2 Dlwillson\nBuild R1 Bluesky\nBuild G3 Synchron\n\n30) Felix: Sacrifice Y1 Felix\nMove B1 Synchron Dlwillson\n\n31) dlwillson: A B1 Dlwillson\n\n32) Felix: Sacrifice Y2 Felix\nMove B2 Occo Dlwillson\nMove B2 Occo Dlwillson\nCatastrophe Dlwillson Blue\n\n33) dlwillson: S Y2 Dlwillson\nM G2 Synchron Felix\nM G3 Synchron Felix\nC Felix G\n\n34) Felix: Sacrifice Y1 Felix\nMove R2 Occo Sea\n\n35) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Sea\nB G2 Dlwillson\n\tFelix: Wow, excellent reversal. I didn&#39;t anticipate that in the slightest.\n\n36) Felix: Sacrifice R2 Sea\nPass\nPass\n\n\tdlwillson: Good game, Felix! I enjoyed the interesting symmetry of the small universe. I may do that again, from 2nd seat.\n\tFelix: Likewise! Excellent game. I had fun and look forward to a rematch!\n\nHomeworlds Online (SDG# 30934)\nStarted: 2016.12.23, Ended: 2017.1.10\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: I think I will lose that other game. This time I am not going so extreme on the yellows.\n\n2) Felix: H Y2 B3 G3\n\tDraw5PlayAll: And if you want me to vary my start, do not let me go first and choose a 1-3 homeworld.\n\tFelix: It&#39;s up to you whether you vary your start! And whoever goes first is chosen randomly.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: But why do you repeat the B3? Shouldn&#39;t you have flipped the colors of your stars?\n\n4) Felix: B G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: *Shrug* I&#39;m not sure why it matters if I flip them or not :) There will just be fewer B3s available now.\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: For an extreme example see my game vs mi_spero who chose an R1 when that was already there.\n\n8) Felix: Build G1 Felix\n\tFelix: That can sometimes be used strategically to one&#39;s own advantage. I will often choose a b1 on purpose if my opponent starts with a b1. Combining that with a b3 starter can give one an effective boost into dominating blue.\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\tDraw5PlayAll: So you start with a double blue??\n\n10) Felix: Trade G1 B1 Felix\n\tDraw5PlayAll: Basically I need to be sure I get every color and a good supply of them. G and Y are easy since I can have them in my HW without fear of a 4-boom.\n\tDraw5PlayAll: ...blowing up one of my stars, that is.\n\tFelix: Yep, start with a b1/g2 or b1/g3 homeworld and a b3 ship. It&#39;s unorthodox but it has worked very effectively. There&#39;s an epic game between wil and twoshort where twoshort used it to great effect. I&#39;ll see if I can find it.\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Ah, it was Endo, not TwoShort. Here it is: http://superdupergames.org/?page=archive_play&amp;gid=28818&amp;idx=0\r\n\r\nSimply divine.\n\n12) Felix: Build B1 Felix\n\tDraw5PlayAll: Interesting, but (1) I dislike green homeworld stars and (2) I only use B3 (not B1) stars unless I am going second.\r\n\r\nI like setting up the Factory in my homeworld, and then using yellow ships for extra defense.\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tFelix: I agree with the green homeworld thing in general, but being unpredictable has its benefits :)\n\n14) Felix: Discover B1 Felix G1 Arrakis\n\n15) Draw5PlayAll: Build B2 Draw5playall\n\n16) Felix: Build B2 Arrakis\n\n17) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n18) Felix: Trade B1 R1 Arrakis\n\n19) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n20) Felix: Move Y1 Felix Arrakis\n\n21) Draw5PlayAll: Move R2 Draw5playall B2\n\n22) Felix: Sacrifice G3 Felix\nBuild B1 Arrakis\nBuild B2 Arrakis\nBuild B3 Felix\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: This is probably so dumb.\n\n24) Felix: Sacrifice B2 Arrakis\nTrade B2 Y2 Arrakis\nTrade B3 G3 Felix\n\tDraw5PlayAll: I need the yellows more anyway.\n\n25) Draw5PlayAll: Build G2 B2\n\tDraw5PlayAll: That looks good.\n\n26) Felix: Build G2 Felix\n\tFelix: Oh, I just made my move based on your first move. Hold on.\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild B2 Arrakis\n\n29) Draw5PlayAll: Discover G2 Draw5playall R2 R2\n\tDraw5PlayAll: Now let me try.\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Arrakis\n\n31) Draw5PlayAll: Move B1 Draw5playall R2\n\n32) Felix: Discover B2 Arrakis R2 Bazoik\n\n33) Draw5PlayAll: Move Y1 Draw5playall R2\n\n34) Felix: Move Y1 Arrakis Bazoik\n\tDraw5PlayAll: Agh you got all the blue again! I should have sent the B1 first!\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 R2\nBuild G3 Draw5playall\n\tFelix: Yes, I think your first move was better back when you undid your move...\n\n36) Felix: Sacrifice B2 Felix\nTrade G3 Y3 Felix\nTrade B3 Y3 Arrakis\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 R2\nBuild B2 R2\n\tDraw5PlayAll: I can do this though\n\tDraw5PlayAll: No!\n\tDraw5PlayAll: You only get one undo...\n\n38) Felix: Trade Y3 R3 Arrakis\n\tFelix: I ended up doing the same move anyway. And who says you only get one undo? You can undo every move one time.\n\n39) Draw5PlayAll: Build R1 B2\n\tDraw5PlayAll: 1. I meant one undo per turn, yeah.\r\n2. I need to snag those &quot;sac G3 build all one color&quot; things more often and maybe I won&#39;t lose vs you.\n\n40) Felix: Sacrifice G3 Felix\nBuild Y3 Bazoik\nBuild B3 Bazoik\nBuild G3 Felix\n\tFelix: You might not lose even as is. I got hung up for a long time on that move and I&#39;m still not sure I made a good one.\n\n41) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R2 B2 Arrakis\nMove R1 B2 Arrakis\nCatastrophe Arrakis Red\n\tDraw5PlayAll: I did not like opening up the B3 but you could factory build both anyway.\n\n42) Felix: Trade B2 R2 Bazoik\n\n43) Draw5PlayAll: Trade G3 R3 R2\n\n44) Felix: Trade B1 R1 Arrakis\n\n45) Draw5PlayAll: Move R3 R2 Arrakis\n\n46) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Arrakis\nBuild R3 Arrakis\nCatastrophe Arrakis Red\n\n47) Draw5PlayAll: Trade Y3 R3 R2\n\n48) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild Y3 Arrakis\n\n49) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 R2\nBuild B1 R2\n\n50) Felix: S G3 Felix\nB G3 Felix\nB B2 Bazoik\nB R1 Bazoik\n\n51) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R3 R2 Y1 Y1\n\n52) Felix: Sacrifice Y2 Felix\nMove R2 Bazoik Arrakis\nDiscover R2 Arrakis Y2 Dune\n\n53) Draw5PlayAll: Move G2 R2 Y1\n\n54) Felix: Move Y3 Arrakis B2\n\tDraw5PlayAll: This is probably resignable...\n\n55) Draw5PlayAll: Sacrifice G2 B2\nBuild G2 Y1\nBuild R1 Y1\n\tFelix: It could be interesting to play out, but it&#39;s up to you!\n\n56) Felix: Sacrifice Y2 Arrakis\nMove Y3 B2 Y1\nMove B3 Bazoik Y1\n\n\tFelix: I would have been interested to see how it played out, but I think I would have had you in the end so that was probably a good call. Good game though! It took me quite a large number of games to get a firm grasp on the &quot;long game&quot; and develop a winning fleet from turn 1. I&#39;m not always good at it, but practice, practice, practice. Look forward to our rematch!\n\tDraw5PlayAll: I need something of every color, but I need to watch those &quot;color bombs&quot; where someone sacs a G3 and builds all blue or yellow. Yellow and red seem to be my weak points.\n\nHomeworlds Online (SDG# 30931)\nStarted: 2016.12.24, Ended: 2017.1.5\nParticipants: mi_spero (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3 *\n\n2) mi_spero: Homeworld R1 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tmi_spero: To match to come salute I you anon, \r\nFor further chance is naught at duel&#39;s end.\n\n4) mi_spero: Build G1 Mi_spero\n\tDraw5PlayAll: wo&#39; not ghaH jey!\n\tDraw5PlayAll: ...wait, you picked EXACTLY the same homeworld as me.\n\tmi_spero: Draw5, the love I bear thee can afford, \r\nNo better term than this: thou art a villain. :D\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) mi_spero: Build G1 Mi_spero\n\tDraw5PlayAll: We have decided to take a share of the only small weaponry available in order to build Ambassador-class ships quickly.\r\n\r\n(Constellation = 1 Ambassador = 2 Galaxy = 3)\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\tmi_spero: I underestimated the severity of this course of events when I chose my homeworld.\n\n8) mi_spero: Trade G1 Y1 Mi_spero\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n10) mi_spero: Build Y1 Mi_spero\n\tDraw5PlayAll: I call that maneuver a &quot;pump&quot; for no real reason.\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) mi_spero: Trade G1 B1 Mi_spero\n\n13) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n14) mi_spero: Build G1 Mi_spero\n\n15) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n16) mi_spero: Discover B1 Mi_spero G2 Fanri\n\n17) Draw5PlayAll: Build R2 Draw5playall\n\n\tmi_spero: gg\n\tDraw5PlayAll: You resign way too soon.\n\tmi_spero: Really? I&#39;m behind both in material, and by several tempi. In addition, you have a positional advantage, particularly in the area of blue as I will have to work very hard and waste multiple tempi bringing in blue without risking catastrophe.\n\nHomeworlds Online (SDG# 31027)\nVariants: &quot;Hard time&quot;\nStarted: 2016.12.24, Ended: 2017.1.11\nParticipants: Babamots (S), mi_spero (N)\nWinner: Babamots\n\n1) mi_spero: Homeworld B3 G1 Y3\n\tmi_spero: Good luck and have fun.\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) mi_spero: Build Y1 Mi_spero\n\n4) Babamots: Build G1 Babamots\n\n5) mi_spero: Trade Y1 R1 Mi_spero\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) mi_spero: Build Y1 Mi_spero\n\n8) Babamots: Build G1 Babamots\n\n9) mi_spero: Build R1 Mi_spero\n\n10) Babamots: Build G1 Babamots\n\n11) mi_spero: Build R2 Mi_spero\n\n12) Babamots: Discover G1 Babamots Y3 Wolf359\n\n13) mi_spero: Trade R2 G2 Mi_spero\n\n14) Babamots: Sacrifice G3 Babamots\nBuild G2 Wolf359\nBuild G2 Wolf359\nBuild G3 Babamots\n\n15) mi_spero: Build G3 Mi_spero\n\tBabamots: Not quite what I meant.\n\n16) Babamots: Discover G2 Wolf359 B2 Kronos\n\tDraw5PlayAll: Hmmm... Wolf359 is a real star system, but it could also be a Trek reference?\n\n17) mi_spero: Discover G2 Mi_spero B2 Tamaran\n\n18) Babamots: Sacrifice G3 Babamots\nBuild G3 Babamots\nBuild G3 Kronos\nBuild Y1 Babamots\n\tBabamots: I&#39;ll let you guess.\n\n19) mi_spero: Build R2 Mi_spero\n\n20) Babamots: Trade G2 R2 Kronos\n\tDraw5PlayAll: I used the correct form, Qo&#39;noS, as a red star a while back since red = warriors.\n\n21) mi_spero: Move R2 Mi_spero Tamaran\n\tBabamots: I prefer to use the English spelling for consistency (I don&#39;t insist on saying &quot;Deutschland&quot; either).\n\n22) Babamots: Sacrifice G3 Babamots\nBuild G2 Kronos\nBuild Y2 Babamots\nBuild G3 Babamots\n\tmi_spero: Well, Deutschland makes more sense. I don&#39;t speak German, but it&#39;s more than a bit weird that the Germans speak Deutsch, the Dutch speak Nederlands (or something like that), and the Netherlands isn&#39;t even a country, it&#39;s a region. Some words obviously weren&#39;t borrowed into English by linguists.\n\tBabamots: I&#39;m OK with calling Netherlands a country since its American municipalities are pretty minor. I always forget what the deal is with &quot;Holland,&quot; though. I&#39;m also stubborn enough to keep saying &quot;Ivory Coast.&quot;\n\n23) mi_spero: Build Y2 Mi_spero\n\n24) Babamots: Discover Y1 Babamots B3 Wadi\n\n25) mi_spero: Trade Y1 B1 Mi_spero\n\n26) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y2 Wadi\nBuild G3 Babamots\n\n27) mi_spero: Move Y3 Mi_spero Tamaran\n\n28) Babamots: Sacrifice Y2 Babamots\nMove G3 Kronos Mi_spero\nMove G2 Kronos Mi_spero\nCatastrophe Mi_spero G\n\n\tBabamots: Sorry about the double whammy tonight with catastrophes in both games. I guess this Kronos was pretty warlike as well :-(.\n\tDraw5PlayAll: What is Wadi?\n\tBabamots: It&#39;s the home system of the game-loving people in the DS9 episode &quot;Move Along Home.&quot;\n\tmi_spero: Ehh, to be expected given my skill at this game. :D\n\tmi_spero: gg\n\tBabamots: gg\n\nHomeworlds Online (SDG# 31016)\nStarted: 2016.12.27, Ended: 2017.2.9\nParticipants: dragon76n (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\tdragon76n: Hello.\n\tFelix: Hi again! Have fun!\n\n2) dragon76n: Homeworld B1 G2 Y3\n\n3) Felix: Build G1 Felix\n\n4) dragon76n: Build Y1 Dragon76n\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dragon76n: T Y1 B1 Dragon76n\n\n7) Felix: Trade Y1 B1 Felix\n\n8) dragon76n: Build B2 Dragon76n\n\tFelix: Doh! Silly mistake.\n\tdragon76n: I don&#39;t have a ton of experience with Homeworlds yet, but in the games I&#39;ve played, I find myself getting trapped out of colors way too often. \n\n9) Felix: Build G1 Felix\n\tFelix: That happened a lot to me early on too. You&#39;ve got a good start so far and almost locked me out of blue!\n\n10) dragon76n: Trade B2 G2 Dragon76n\n\n11) Felix: Trade G1 Y1 Felix\n\n12) dragon76n: Build B2 Dragon76n\n\n13) Felix: Discover B1 Felix G1 Out\n\n14) dragon76n: Discover B2 Dragon76n G3 Grethr\n\n15) Felix: Build B2 Out\n\n16) dragon76n: B Y1 Dragon76n\n\n17) Felix: Trade B2 Y2 Out\n\n18) dragon76n: Build B2 Grethr\n\n19) Felix: Build B2 Out\n\n20) dragon76n: Trade B2 R2 Grethr\n\n21) Felix: Trade B2 R2 Out\n\n22) dragon76n: Build B2 Grethr\n\n23) Felix: Build B2 Out\n\n24) dragon76n: Trade B2 Y2 Grethr\n\n25) Felix: D B2 Out G3 Rim\n\n26) dragon76n: Build Y1 Grethr\n\n27) Felix: Build G1 Felix\n\n28) dragon76n: T Y2 G2 Grethr\n\n29) Felix: Discover G1 Felix R1 Bazoik\n\n30) dragon76n: Move B2 Grethr Bazoik\n\n31) Felix: Sacrifice G1 Bazoik\nBuild G1 Felix\n\n32) dragon76n: S G2 Dragon76n\nB B2 Bazoik\nB B3 Bazoik\n\n33) Felix: Build B3 Rim\n\n34) dragon76n: S B2 Bazoik\nT B1 R1 Dragon76n\nT B2 Y2 Bazoik\n\n35) Felix: Trade B3 Y3 Rim\n\n36) dragon76n: Sacrifice G2 Grethr\nBuild Y2 Bazoik\nBuild Y3 Bazoik\n\n37) Felix: Move Y1 Felix Bazoik\nCatastrophe Bazoik Yellow\n\n38) dragon76n: Trade Y3 R3 Dragon76n\n\n39) Felix: Move R2 Out Rim\n\n40) dragon76n: B Y1 Grethr\n\n41) Felix: Build R1 Rim\n\n42) dragon76n: M Y1 Grethr Bazoik\n\n43) Felix: Sacrifice Y2 Out\nMove R1 Rim Dragon76n\nMove R2 Rim Dragon76n\nCatastrophe Dragon76n Red\n\n44) dragon76n: B Y2 Dragon76n\n\n45) Felix: Build Y2 Rim\n\n46) dragon76n: Trade Y1 G1 Dragon76n\n\n47) Felix: Trade Y2 R2 Rim\n\n48) dragon76n: S Y2 Dragon76n\nM B3 Bazoik Grethr\nM B3 Grethr Dragon76n\n\n49) Felix: Build B1 Rim\n\n50) dragon76n: T B3 R3 Dragon76n\n\n51) Felix: Build B2 Rim\n\n52) dragon76n: Build G2 Dragon76n\n\n53) Felix: Build Y1 Rim\n\n54) dragon76n: B Y2 Grethr\n\n55) Felix: Move Y3 Rim Out\n\n56) dragon76n: Sacrifice Y2 Grethr\nDiscover G2 Dragon76n Y3 Yelthr\nMove G1 Dragon76n Grethr\n\n57) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild Y2 Rim\n\n58) dragon76n: B Y2 Grethr\n\n59) Felix: Sacrifice Y1 Rim\nMove G2 Felix Bazoik\n\n60) dragon76n: D G1 Grethr Y1 Yelone\n\n61) Felix: Attack Y1 Bazoik\n\n62) dragon76n: M G1 Yelone Felix\n\n63) Felix: Trade G1 Y1 Felix\n\n64) dragon76n: Sacrifice G2 Yelthr\nBuild G1 Felix\nBuild G2 Felix\nCatastrophe Felix Green\n\n65) Felix: Sacrifice G2 Bazoik\nBuild Y2 Rim\nBuild Y3 Felix\n\n66) dragon76n: B Y3 Grethr\n\n67) Felix: Move Y1 Bazoik Grethr\nCatastrophe Grethr Yellow\n\n68) dragon76n: B R1 Dragon76n\n\n69) Felix: Trade Y3 G3 Felix\n\n70) dragon76n: Trade R1 Y1 Dragon76n\n\n71) Felix: Move B1 Rim Dragon76n\n\n72) dragon76n: B R1 Grethr\n\n73) Felix: Sacrifice Y2 Rim\nMove B2 Rim Dragon76n\nMove B2 Rim Dragon76n\nCatastrophe Dragon76n Blue\n\n74) dragon76n: B Y1 Dragon76n\n\n75) Felix: Build G1 Felix\n\n76) dragon76n: D Y1 Dragon76n B3 Bluthr\n\n77) Felix: Trade B1 G1 Out\n\n78) dragon76n: Build Y2 Dragon76n\n\n79) Felix: Sacrifice Y3 Out\nMove G1 Felix Out\nMove G1 Out Dragon76n\nMove G1 Out Dragon76n\n\n80) dragon76n: S R2 Grethr\nA G1 Dragon76n\nA G1 Dragon76n\n\n81) Felix: Sacrifice Y2 Rim\nDiscover G3 Felix B1 Step\nMove G3 Step Dragon76n\nCatastrophe Dragon76n Green\n\n\tFelix: Good game! That was fun. I&#39;d be happy to rematch any time :)\n\nHomeworlds Online (SDG# 31050)\nVariants: &quot;Sinister&quot;\nStarted: 2016.12.29, Ended: 2017.2.28\nParticipants: Draw5PlayAll (S), zeder (N), mi_spero (E)\nWinner: Draw5PlayAll\n\n1) zeder: Homeworld B1 G2 Y3\n\n2) mi_spero: Homeworld G1 B3 Y3\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\tmi_spero: Glhf\n\n4) zeder: Build Y1 Zeder\n\tDraw5PlayAll: Hold it, I want to be next to zeder.\n\n5) mi_spero: Build Y1 Mi_spero\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) zeder: Trade Y1 G1 Zeder\n\n8) mi_spero: Trade Y1 B1 Mi_spero\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) zeder: Build Y1 Zeder\n\n11) mi_spero: Build Y1 Mi_spero\n\tDraw5PlayAll: Hello! Is there a problem?\n\tDraw5PlayAll: The call admin button is really more of a &quot;wake up players&quot; button.\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) zeder: Discover G1 Zeder Y3 Turtles\n\n14) mi_spero: Build B1 Mi_spero\n\n15) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n16) zeder: Build G1 Turtles\n\n17) mi_spero: Discover B1 Mi_spero G2 Ichidai\n\n18) Draw5PlayAll: Build B2 Draw5playall\n\n19) zeder: Trade Y3 B3 Zeder\n\tmi_spero: I tried to use &amp;#12300;&amp;#19968;&amp;#21488;&amp;#12301; , but it wouldn&#39;t let me. :( That would have been pretty trollish, though. :D\n\tmi_spero: Lol. Even chat is glowering at me. :D\n\tmi_spero: It was just the kanji for one and the kanji for &quot;machine counter&quot;.\n\tDraw5PlayAll: Is that star name a lojban word?\n\n20) mi_spero: Build B2 Ichidai\n\tmi_spero: nahh, it means &quot;one machine (big ones, like cars)&quot; in Japanese afaik. I&#39;m still learning.\n\n21) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n22) zeder: Build B2 Zeder\n\n23) mi_spero: Trade B2 G2 Ichidai\n\n24) Draw5PlayAll: Move R2 Draw5playall Turtles\n\n25) zeder: Trade B3 R3 Zeder\n\n26) mi_spero: Build B2 Ichidai\n\n27) Draw5PlayAll: Attack G1N Turtles\n\n28) zeder: Move G1 Turtles Ichidai\n\n29) mi_spero: Trade B2 R2 Ichidai\n\n30) Draw5PlayAll: Move B1 Draw5playall Turtles\n\n31) zeder: Build G1 Ichidai\nCatastrophe Ichidai Green\n\tDraw5PlayAll: build G1 ichidai\r\ncatastrophe ichidai green\n\n32) mi_spero: Trade Y1 R1 Mi_spero\n\n33) Draw5PlayAll: Build B1 Turtles\n\n34) zeder: Discover B2 Zeder Y3 Foo\n\n35) mi_spero: Build Y1 Mi_spero\n\n36) Draw5PlayAll: Build G1 Draw5playall\n\n37) zeder: Build R1 Zeder\n\n38) mi_spero: Build B2 Mi_spero\n\n39) Draw5PlayAll: Build Y1 Draw5playall\n\n40) zeder: Build Y2 Zeder\n\n41) mi_spero: Trade B2 G2 Mi_spero\n\n42) Draw5PlayAll: Build Y2 Draw5playall\n\n\tDraw5PlayAll: I hate this.\n\tmi_spero: Draw5, can we invite zeder (or whomever to join your zendo game? It&#39;s not very fun with only one person. :()\n\tDraw5PlayAll: Zeder timed out. I will ask around.\n\nHomeworlds Online (SDG# 34099)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.4.28, Ended: 2018.5.13\nParticipants: Babamots (S), wil (N)\nWinner: Babamots\n\n1) wil: Homeworld B2 Y1 G3\n\twil: Is this it?  Do you think there is no way I can make a mistake now?\n\twil: I&#39;m assuming if I win this will be our tourney game...and if I lose the tourney game it will just be a game.\n\n2) Babamots: Homeworld B3 G1 Y3\n\tBabamots: I didn&#39;t issue this challenge until I was positive you would win game #8. If you did happen to lose, then this game would just be for fun I suppose. Otherwise, I intend this to be game #9 of the bracket.\n\n3) wil: Build G1 Wil\n\twil: Perfect...makes sense...so if either win we have to win the game after...and if we win that...we are in a best out of three with Felix right?\n\twil: any who...  good luck, have fun..  thx so much for facilitating this...it has been a blast.\n\n4) Babamots: Build Y1 Babamots\n\tBabamots: Sounds like you expected another game after this one. Winner of this game plays Felix in a best of three for the championship.\n\n5) wil: Build G1 Wil\n\twil: I do...don&#39;t I?  if he beats either of us first round, we both have two losses...double elimination achieved.  If either of us wins...we are now at one loss each and it goes into the final playoff???  He is only the only undefeated right?\n\n6) Babamots: Build Y1 Babamots\n\n7) wil: Discover G1 Wil Y3 Y3\n\tBabamots: The loser of this game is out. The winner of this game plays a best of three with Felix (in the bracket, they&#39;re labelled games #10-12). Even if Felix wins game #10, the best of three goes on. It&#39;s not strictly double elimination.\n\n8) Babamots: Discover Y1 Babamots B2 Betazed\n\n9) wil: Build G2 Wil\n\n10) Babamots: Build Y2 Babamots\n\n11) wil: Discover G1 Wil B3 B3\n\n12) Babamots: Trade Y2 G2 Babamots\n\n13) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 B3\nBuild G3 Wil\n\n14) Babamots: Build G3 Babamots\n\n15) wil: Trade G3 Y3 Wil\n\n16) Babamots: Sacrifice G2 Babamots\nBuild Y2 Betazed\nBuild Y2 Betazed\n\n17) wil: Sacrifice G3 B3\nBuild G2 Y3\nBuild G3 B3\nBuild G3 Wil\n\n18) Babamots: Build Y2 Babamots\n\n19) wil: Trade G1 R1 B3\n\tBabamots: I&#39;m hoping you don&#39;t have enough yellow to expand effectively.\n\n20) Babamots: Trade Y2 R2 Babamots\n\twil: lol, I am hoping I do!\n\n21) wil: Discover G2 Y3 Y2 Y2\n\n22) Babamots: Move G3 Babamots Betazed\n\twil: I am so lousy about thinking about moves...I always plan on taking my time, considering options...and then when you play...I just make a knee jerk reaction!\r\n\n\tBabamots: I&#39;m working on breaking that habit. I lose games when I pick moves at the bus stop.\n\n23) wil: Sacrifice G3 Wil\nBuild G1 B3\nBuild R1 B3\nBuild G3 Wil\n\n24) Babamots: Build R1 Babamots\n\n25) wil: Move Y3 Wil B3\n\n26) Babamots: Build R2 Babamots\n\n27) wil: Move R1 B3 Y2\n\twil: While I try to look long and hard at moves...and still knee jerk... I think often my knee jerks are right and paralysis analysis doesn&#39;t help me...  What helps most is making the move and then looking at what I&#39;ve done before I move the coin.    If we are to ever have live games, chess clocks will be a thing...in order for brackets to be completed in a weekend.\n\tBabamots: Sorry for the delay; it&#39;s been a stressful week.\n\n28) Babamots: Trade R1 B1 Babamots\n\twil: things happen....talkin to Felix, he has a second baby due in a couple weeks...he will be swamped whoever he plays.\n\n29) wil: S G3 B3\nB G3 Y2\nB R1 Y2\nB R2 B3\n\tBabamots: I&#39;ve gotten bored with always starting out with green ships, but my yellow experiment isn&#39;t working out well.\n\tBabamots: And I just haven&#39;t been very pleased with life in general for a while, so it&#39;s pretty hard to care about the game. You deserve to win more than I do.\n\n30) Babamots: Move R2 Babamots Betazed\n\twil: Sorry to hear that brother...\n\n31) wil: D R2 B3 B2 B2\n\twil: I thought you had some plan with the y opening, I know I&#39;ve been beat by them, and also don&#39;t play them well.\n\twil: You&#39;ve done us all a great service running these tourmanents\n\n32) Babamots: Build R3 Betazed\n\n33) wil: S G3 Wil\nB G3 Wil\nB R3 B3\nB R3 B2\n\n34) Babamots: Move R3 Betazed Y3\n\n35) wil: T R3 B3 B3\n\n36) Babamots: Sacrifice R2 Betazed\nAttack G2N Y3\nAttack G1N Y3\n\n37) wil: T G2 R2 Wil\n\n38) Babamots: Build R3 Babamots\n\twil: Lol, I didn&#39;t even look and saw what I left behind and after words figured I deserve what I get.\n\tBabamots: I made such huge mistakes in my games this tournament that I think I was overdue for my opponent to make a few :-P.\n\n39) wil: S G3 Y2\nB G2 Y2\nB G3 B3\nP\n\twil: Lol, bus stop moves\n\n40) Babamots: Sacrifice Y2 Betazed\nMove R2 Babamots Betazed\nMove Y3 Babamots Y2\n\n41) wil: S G2 Y2\nB G2 Wil\nB Y2 B3\n\n42) Babamots: Sacrifice Y3 Y2\nMove R3 Y3 Wil\nMove G2 Y3 Wil\nMove G1 Y3 Wil\nCatastrophe Wil G\n\twil: Yeah, that mistake cost me!  I was working outside had come in and saw you moved and just played the planned move saved in notes and didn&#39;t even glance at what you had done...maximum silliness\n\n43) wil: S Y3 B3\nM G1 B3 Wil\nM B3 B3 Wil\nM R1 B3 Wil\n\twil: Intent to move the b3 in there to protect was lost on me too\n\n44) Babamots: Sacrifice R3 Babamots\nAttack B3N Wil\nAttack R2N Wil\nAttack G1N Wil\n\n45) wil: S Y2 B3\nM R3 B2 Babamots\nM G3 B3 B2\n\twil: Well, I deserve to lose this one.\n\n46) Babamots: Attack R1N Wil\n\tBabamots: It&#39;s miserable to lose a game to mistakes. I know exactly where you&#39;re at. I didn&#39;t handle my last loss well.\n\twil: This is a game of capitalizing on mistakes, the big and small...\n\twil: Good luck\n\n\tBabamots: Sorry for being moody earlier. Neither the game nor anything else seemed to be going right.\n\tBabamots: See you next time!\n\tDraw5PlayAll: So where&#39;s is this game in the tournament schedule?\n\twil: The semi final... Babamots goes in two a best of 3 with Felix...  You were worried about it going on to long, I am said it is over and hope the next one takes a year and a half or more!\n\tBabamots: The tournament is going on 9 months, so I would call it pretty long. I would prefer to have more frequent, shorter tournaments in the future. I&#39;ll recommend a straight round-robin for next time. The bracket is very slow because some games have to wait for others to finish.\n\nHomeworlds Online (SDG# 30957)\nStarted: 2017.1.2, Ended: 2017.1.2\nParticipants: floydmasterson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n\tDraw5PlayAll: What?\n\nHomeworlds Online (SDG# 31044)\nStarted: 2017.1.2, Ended: 2017.3.6\nParticipants: WindMillCobra (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tFelix: Hi there! First game?\n\n2) WindMillCobra: Homeworld Y3 B2 G3\n\tWindMillCobra: Yes this is my First Game\n\tWindMillCobra: Yes this is my First Game\n\n3) Felix: Build G1 Felix\n\tFelix: Awesome! I&#39;m happy to help you learn. Let me know if you have any questions, and if I think of tips, I&#39;ll let you know.\n\n4) WindMillCobra: Build G1 Windmillcobra\n\tFelix: You&#39;re off to a good start with the colors you picked for your homeworld and starting ship. Choosing the same size pieces as my homeworld will make the playing field be quite small and tight, however.\n\tWindMillCobra: Thanks a lot for your advice!\n\tWindMillCobra: I have played one game of homeworlds irl but I am still a beginner \n\n5) Felix: Trade G1 Y1 Felix\n\tWindMillCobra: Could you tell me what you think good starting size and color homeworlds are?\n\tFelix: I think as a beginner, the best starting size and color homeworld is to use small and medium stars in yellow and blue, with a large green ship as your starter. It doesn&#39;t matter too much which star is yellow and which is blue. Some people prefer to go with red and blue instead of yellow and blue, which is what I have done here, and it provides defense at home, but it makes it slower to move at first since there are no yellows. It comes down to preference, but as a beginner I think yellow and blue with a green ship is best.\n\n6) WindMillCobra: Trade G1 B1 Windmillcobra\n\tWindMillCobra: oh ok thanks!\n\n7) Felix: Build Y1 Felix\n\n8) WindMillCobra: Build B1 Windmillcobra\n\n9) Felix: Trade Y1 B1 Felix\n\n10) WindMillCobra: Trade B1 Y1 Windmillcobra\n\n11) Felix: Discover B1 Felix G1 Out\n\n12) WindMillCobra: Build Y1 Windmillcobra\n\n13) Felix: Build Y2 Felix\n\n14) WindMillCobra: Discover Y1 Windmillcobra G1 Star\n\n15) Felix: Move Y1 Felix Out\n\n16) WindMillCobra: Build Y2 Star\n\n17) Felix: B Y2 Out\n\n18) WindMillCobra: Move Y1 Windmillcobra Out\n\n19) Felix: Trade Y2 R2 Out\n\n\nHomeworlds Online (SDG# 31106)\nStarted: 2017.1.2, Ended: 2017.1.3\nParticipants: WindMillCobra (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\tFelix: Did you mean to start 2 games?\n\n\tWindMillCobra: No I didn&#39;t I am going to end this one\r\n\n\nHomeworlds Online (SDG# 31110)\nStarted: 2017.1.3, Ended: 2017.1.9\nParticipants: zeder (S), floydmasterson (N)\nWinner: zeder\n\n\nHomeworlds Online (SDG# 30932)\nStarted: 2017.1.3, Ended: 2017.3.8\nParticipants: WindMillCobra (S), mi_spero (N), Draw5PlayAll (E)\nWinner: Draw5PlayAll\n\n1) mi_spero: Homeworld B1 Y3 G3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) WindMillCobra: Homeworld Y2 B1 G3\n\n4) mi_spero: Build G1 Mi_spero\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) WindMillCobra: Build G1 Windmillcobra\n\n7) mi_spero: Trade G1 B1 Mi_spero\n\tmi_spero: hi everyone!\n\n8) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tDraw5PlayAll: Quick!\n\n9) WindMillCobra: Trade G1 Y1 Windmillcobra\n\n10) mi_spero: Build B2 Mi_spero\n\n11) Draw5PlayAll: Build B2 Draw5playall\n\n12) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\tDraw5PlayAll: GRRR no yellow :(\n\tmi_spero: Anyone know where WindMillCobra\n\tmi_spero:  is?\n\tDraw5PlayAll: Time to move on.\n\n13) mi_spero: Trade B1 R1 Mi_spero\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) mi_spero: Build R1 Mi_spero\n\n16) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n17) mi_spero: Discover R1 Mi_spero G2 Lojpluka\n\n18) Draw5PlayAll: Build R2 Draw5playall\n\n19) mi_spero: Build R2 Lojpluka\n\tDraw5PlayAll: Obviously &quot;loj&quot; is logic and &quot;pluka&quot; is...\n\n20) Draw5PlayAll: Discover R2 Draw5playall G3 G3\n\tmi_spero: pluka: x1 (event/state) seems pleasant to/pleases x2 under conditions x3.\r\n\r\nSo lojpluka is when it&#39;s pleasing in a logical sort of way, however you want to interpret that.\n\n21) mi_spero: Move B2 Mi_spero Lojpluka\n\n22) Draw5PlayAll: Build R2 G3\n\n23) mi_spero: Trade R1 Y1 Lojpluka\n\n24) Draw5PlayAll: Move B1 Draw5playall G3\n\n25) mi_spero: Build R1 Mi_spero\n\n26) Draw5PlayAll: Trade R2 Y2 G3\n\n27) mi_spero: Discover R1 Mi_spero G2 Surreal Numbers\n\n28) Draw5PlayAll: Build R2 Draw5playall\n\n29) mi_spero: Build Y1 Lojpluka\n\n30) Draw5PlayAll: Trade R2 G2 Draw5playall\n\n31) mi_spero: Build R2 Surreal\n\n32) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 G3\nBuild R3 Draw5playall\nBuild G1 Draw5playall\n\n33) mi_spero: Build R3 Lojpluka\n\n34) Draw5PlayAll: Discover R1 Draw5playall Y3 Y3\n\n35) mi_spero: Build G1 Mi_spero\n\n36) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R3 Y3\n\n37) mi_spero: Build R3 Mi_spero\n\n38) Draw5PlayAll: Move R3 Y3 Windmillcobra\n\n39) mi_spero: Build B1 Lojpluka\n\n40) Draw5PlayAll: Attack G3S Windmillcobra\n\tDraw5PlayAll: Have you ever seen this?\r\nhttp://superdupergames.org/?page=telegram\n\tmi_spero: yeah, never tried it.\n\n41) mi_spero: Trade Y1 G1 Lojpluka\n\n42) Draw5PlayAll: Move G3 Windmillcobra Y3\n\n43) mi_spero: Build Y1 Lojpluka\n\n44) Draw5PlayAll: Build B2 G3\n\n\tmi_spero: gg\n\tDraw5PlayAll: ???\n\tmi_spero: I have little idea how to play the early game, less idea how to play the mid game, and at this stage of the game am doing little better than moving at random. Given that, I see little reason to continue, assuming that for any G(H,n)=[(1v0)^~(1^0)] where G is the result (win or loss) of the Homeworlds game H at move n, G(H,n) approaches 0 or 1 for some sufficiently large n. In other words, iff there is always a winner. If there is not always a winner, it grows more complicated, but if there is a winner, then eventually you would have been said winner. So because I can surmise the end, there is no need to continue.\n\tDraw5PlayAll: Tip: Especially with more players, explore multiple systems. I like to send a green to a blue system and a blue to a green system to provide balance and kick start the development.\n\tDraw5PlayAll: Several no winner situations can arise. For instance, all blue and yellow could be wiped out.\n\nHomeworlds Online (SDG# 31109)\nStarted: 2017.1.3, Ended: 2017.1.7\nParticipants: floydmasterson (S), WindMillCobra (N)\nWinner: WindMillCobra\n\n1) WindMillCobra: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 34080)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.28, Ended: 2018.5.22\nParticipants: silversliver (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) silversliver: Homeworld B2 G1 R3\n\tFelix: Hi there! New to the game?\n\tsilversliver: Yeah, still learning\n\n3) Felix: Build G1 Felix\n\n4) silversliver: Build R1 Silversliver\n\tFelix: Well I hope you have fun! Let me know if you have any questions along the way\n\n5) Felix: Trade G1 Y1 Felix\n\n6) silversliver: Trade R1 G1 Silversliver\n\n7) Felix: Build Y1 Felix\n\n8) silversliver: Build R1 Silversliver\n\n9) Felix: Trade Y1 R1 Felix\n\n10) silversliver: Trade R1 Y1 Silversliver\n\n11) Felix: Build R1 Felix\n\n12) silversliver: Discover G1 Silversliver Y3 Sys1\n\n13) Felix: Discover R1 Felix G1 Out\n\n14) silversliver: Build G2 Sys1\n\n15) Felix: Build G2 Felix\n\n16) silversliver: Sacrifice G2 Sys1\nBuild G2 Sys1\nBuild R1 Silversliver\n\n17) Felix: D G2 Felix B1 Rim\n\n18) silversliver: Move G2 Sys1 Silversliver\n\n19) Felix: Build R2 Felix\n\n20) silversliver: Trade G2 Y2 Silversliver\n\n21) Felix: Move R2 Felix Rim\n\n22) silversliver: Build G2 Sys1\n\n23) Felix: Build G2 Felix\n\n24) silversliver: Sacrifice Y2 Silversliver\nMove R3 Silversliver Sys1\nMove R3 Sys1 Rim\n\n25) Felix: Sacrifice G2 Rim\nBuild R2 Out\nBuild R3 Felix\n\n26) silversliver: Build R3 Silversliver\n\n27) Felix: Discover G2 Felix B1 Opus\n\n28) silversliver: Sacrifice Y1 Silversliver\nMove R3 Rim Felix\nCatastrophe Felix Red\n\n29) Felix: B G2 Felix\n\tsilversliver: What a twist.\n\n30) silversliver: Trade R1 Y1 Silversliver\n\tFelix: Nice! Not sure how I missed that\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild G3 Opus\n\n32) silversliver: Move G1 Sys1 Opus\n\n33) Felix: Trade G3 B3 Felix\n\n34) silversliver: Build G3 Opus\nCatastrophe Opus Green\n\n35) Felix: Build B1 Felix\n\n36) silversliver: Build R1 Silversliver\n\n37) Felix: Move B1 Felix Out\n\n38) silversliver: Trade R1 B1 Silversliver\n\n39) Felix: Discover B3 Felix B2 Safety\n\n40) silversliver: Move B1 Silversliver Sys1\n\n41) Felix: B B2 Out\n\n42) silversliver: Build B3 Sys1\n\n43) Felix: Build Y1 Felix\n\n44) silversliver: Trade B3 R3 Sys1\n\n45) Felix: Move Y1 Felix Out\n\n46) silversliver: Move R3 Sys1 Out\n\n47) Felix: Build R1 Out\nCatastrophe Out Red\n\n48) silversliver: Build B3 Sys1\n\n49) Felix: Build Y2 Felix\n\n50) silversliver: Trade B3 R3 Sys1\n\n51) Felix: Discover B1 Out G3 Entry\n\n52) silversliver: Move R3 Sys1 Out\n\n53) Felix: Sacrifice Y1 Out\nDiscover B2 Out G3 Limbo\n\n54) silversliver: Build B3 Sys1\n\n55) Felix: Trade B3 Y3 Safety\n\n56) silversliver: Trade B1 Y1 Sys1\n\n57) Felix: Sacrifice G2 Felix\nBuild B1 Limbo\nBuild B3 Entry\n\n58) silversliver: Move B3 Sys1 Out\n\n59) Felix: Move Y1 Felix Rim\n\n60) silversliver: Build Y2 Silversliver\n\n61) Felix: Trade B3 Y3 Entry\n\n62) silversliver: Build B3 Out\n\n63) Felix: B G1 Felix\n\n64) silversliver: Sacrifice Y1 Sys1\nMove R3 Out Limbo\n\n65) Felix: Sacrifice Y2 Felix\nMove B2 Limbo Silversliver\nMove B1 Limbo Silversliver\n\n66) silversliver: Sacrifice Y2 Silversliver\nMove B3 Out Felix\nMove B3 Out Felix\n\n67) Felix: Sacrifice R2 Rim\nAttack B3 Felix\nAttack B3 Felix\n\n68) silversliver: Sacrifice Y1 Silversliver\nMove R3 Limbo Safety\n\n69) Felix: Move Y3 Safety Felix\n\n70) silversliver: Sacrifice G2 Sys1\nBuild R1 Safety\nBuild R1 Silversliver\n\n71) Felix: Sacrifice B3 Felix\nTrade B1 R1 Silversliver\nTrade B2 R2 Silversliver\nCatastrophe Silversliver Red\nPass\n\n\tFelix: Phew, good game! I thought you had me for a minute there. A very fun one :)\n\tsilversliver: gg\n\nHomeworlds Online (SDG# 31133)\nVariants: &quot;Hard time&quot;\nStarted: 2017.1.4, Ended: 2017.3.8\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tFelix: And we meet on the ladder again. Good luck and have fun!\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Indeed, have a good game!\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Build G1 Ts52\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Discover B2 Ts52 G2 Kermit\n\n12) Felix: Build B2 Felix\n\n13) ts52: Build B2 Kermit\n\n14) Felix: Discover B2 Felix G1 Opus\n\n15) ts52: Trade B2 Y2 Kermit\n\n16) Felix: Build Y1 Felix\n\n17) ts52: Build Y1 Kermit\n\n18) Felix: Build G1 Felix\n\n19) ts52: Trade Y2 R2 Kermit\n\n20) Felix: Trade G1 R1 Felix\n\n21) ts52: Build R1 Kermit\n\n22) Felix: Move Y2 Felix Opus\n\n23) ts52: Discover B1 Ts52 Y2 Bigbird\n\n24) Felix: Move R1 Felix Opus\n\n25) ts52: Move G1 Ts52 Bigbird\n\n26) Felix: Build R1 Opus\n\n27) ts52: Discover R2 Kermit Y1 Zoe\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Opus\nBuild Y3 Felix\n\n29) ts52: Build G1 Ts52\n\n30) Felix: Trade Y3 G3 Felix\n\n31) ts52: Build Y3 Kermit\n\n32) Felix: Build G2 Felix\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild R2 Zoe\n\n34) Felix: Sacrifice Y2 Felix\nDiscover R1 Opus Y2 Rim\nMove B1 Felix Opus\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Kermit\nBuild G3 Bigbird\n\n36) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R3 Opus\nBuild R3 Rim\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Bigbird\n\n38) Felix: Move B2 Opus Rim\n\n39) ts52: Move G3 Bigbird Zoe\n\n40) Felix: Sacrifice G2 Felix\nBuild B3 Rim\nPass\n\tFelix: Quite the fleets we have amassed! \n\n41) ts52: Build G2 Zoe\n\tFelix: You&#39;ve got me in a pickle.\n\tts52: Yeah, we&#39;ve built to quite the awkward end game.\n\n42) Felix: Move B3 Rim Ts52\n\n43) ts52: Sacrifice R1 Kermit\nAttack B3 Ts52\n\n44) Felix: Sacrifice Y3 Opus\nMove B1 Opus Rim\nMove B1 Rim Ts52\nMove B2 Rim Ts52\nCatastrophe Ts52 Blue\n\n45) ts52: Move B2 Kermit Ts52\n\n46) Felix: Build Y3 Opus\n\n47) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Kermit\nBuild B1 Kermit\n\n48) Felix: Sacrifice Y2 Opus\nDiscover R3 Rim B1 Rom\nMove R1 Rim Rom\n\n49) ts52: Sacrifice Y1 Kermit\nDiscover R3 Kermit Y1 Scooter\n\n50) Felix: Build Y2 Opus\n\n51) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild B2 Kermit\n\n52) Felix: Sacrifice Y3 Opus\nMove Y2 Opus Kermit\nMove Y1 Felix Opus\nMove Y1 Opus Kermit\nCatastrophe Kermit Yellow\n\tFelix: Arg. So close!\n\n53) ts52: Trade B2 Y2 Kermit\n\n54) Felix: Trade R3 B3 Rom\n\n55) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y2 Kermit\n\n56) Felix: Trade B3 Y3 Rom\n\tFelix: .... Very nice move.\n\n57) ts52: Sacrifice G3 Zoe\nBuild G3 Zoe\nBuild R3 Kermit\nBuild B2 Bigbird\n\tFelix: I think you&#39;ve got me in a pickle.\n\n\tFelix: No point drawing it out. Very nicely played!\n\tts52: Thanks. That was a good game. I still didn&#39;t have a complete plan for how to finish you off, but I agree that it was only a matter of time. I look forward to our next game.\n\nHomeworlds Online (SDG# 31135)\nVariants: &quot;Hard time&quot;\nStarted: 2017.1.4, Ended: 2017.2.2\nParticipants: agentofchaos (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 Y2 G3\n\n2) agentofchaos: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ajo: Build G1 Alpha\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) ajo: Trade G1 Y1 Alpha\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) ajo: Build Y2 Alpha\n\n12) agentofchaos: Discover Y2 Agentofchaos G3 Pazuza\n\n13) ajo: Trade Y2 R2 Alpha\n\n14) agentofchaos: Trade Y1 R1 Agentofchaos\n\n15) ajo: Build G1 Ajo\n\n16) agentofchaos: Trade Y1 B1 Agentofchaos\n\n17) ajo: Build R1 Alpha\n\n18) agentofchaos: Build B2 Agentofchaos\n\n19) ajo: Trade R2 Y2 Alpha\n\n20) agentofchaos: Trade B1 Y1 Agentofchaos\n\n21) ajo: Build R1 Alpha\n\n22) agentofchaos: Move R1 Agentofchaos Pazuza\n\n23) ajo: Discover Y1 Alpha B3 Beta\n\n24) agentofchaos: Build R2 Pazuza\n\n25) ajo: Move R1 Alpha Ajo\n\n26) agentofchaos: Build B1 Agentofchaos\n\n27) ajo: Build R2 Ajo\n\n28) agentofchaos: M B2 Agentofchaos Pazuza\n\n29) ajo: Build R3 Alpha\n\n30) agentofchaos: Build Y1 Agentofchaos\n\n31) ajo: Sacrifice G1 Ajo\nBuild Y3 Beta\n\n32) agentofchaos: Build Y3 Pazuza\n\n33) ajo: Build Y3 Alpha\n\n34) agentofchaos: Build G1 Agentofchaos\n\n35) ajo: Move R3 Alpha Beta\n\n36) agentofchaos: Sacrifice Y2 Pazuza\nMove Y1 Agentofchaos Beta\nMove Y1 Agentofchaos Beta\nCatastrophe Beta Y\n\n37) ajo: Build R3 Alpha\n\n38) agentofchaos: Build Y1 Pazuza\n\n39) ajo: Move R3 Alpha Beta\n\n40) agentofchaos: Build R3 Pazuza\n\n41) ajo: Move R1 Alpha Pazuza\nCatastrophe Pazuza Red\n\n42) agentofchaos: Trade B2 R2 Pazuza\n\n43) ajo: Build G1 Ajo\n\n44) agentofchaos: Build B2 Agentofchaos\n\n45) ajo: Build G2 Alpha\n\n46) agentofchaos: Trade G1 Y1 Agentofchaos\n\n47) ajo: Trade G2 B2 Alpha\n\n48) agentofchaos: Move B2 Agentofchaos Pazuza\n\n49) ajo: Discover B2 Alpha G2 Midland\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) ajo: Move R1 Ajo Alpha\n\tajo: It is your move, btw. We were speeding along for a couple of days there...\n\n52) agentofchaos: Build R1 Pazuza\n\tagentofchaos: I have had a lot going on in the last week, so it has kept me preoccupied.\n\n53) ajo: Trade R3 Y3 Beta\n\n54) agentofchaos: Build B2 Pazuza\n\n55) ajo: Build B3 Midland\n\n56) agentofchaos: Discover B1 Agentofchaos R3 Mortzone\n\n57) ajo: Move G1 Alpha Beta\n\n58) agentofchaos: Trade B2 G2 Pazuza\n\n59) ajo: Sacrifice G3 Ajo\nBuild G2 Beta\nBuild G3 Ajo\nBuild R1 Ajo\n\n60) agentofchaos: Sacrifice G3 Agentofchaos\nBuild B2 Mortzone\nBuild Y1 Agentofchaos\nBuild G3 Agentofchaos\n\n61) ajo: Sacrifice Y3 Alpha\nMove Y3 Beta Agentofchaos\nMove G1 Beta Agentofchaos\nMove G2 Beta Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: well done\n\nHomeworlds Online (SDG# 31149)\nVariants: &quot;Hard time&quot;\nStarted: 2017.1.8, Ended: 2017.1.9\nParticipants: Aristos (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 G2 B3\n\n2) Aristos: Homeworld B3 Y1 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build B1 Goulo\n\tAristos: You as well. \n\n4) Aristos: Build G1 Aristos\n\n5) goulo: Build B1 Goulo\n\n6) Aristos: Trade G1 B1 Aristos\n\n7) goulo: Trade B1 Y1 Goulo\n\n8) Aristos: Build G1 Aristos\n\n9) goulo: Build Y1 Goulo\n\n10) Aristos: Trade G3 Y3 Aristos\n\tAristos: I should resign now. I&#39;m two counts behind you already. I really wish I understood how this happens. \n\n11) goulo: Discover Y1 Goulo G1 Verdeto\n\n12) Aristos: Build Y2 Aristos\n\n13) goulo: Build Y2 Verdeto\n\n14) Aristos: Trade Y3 R3 Aristos\n\n15) goulo: Build Y2 Verdeto\n\n16) Aristos: Discover Y2 Aristos G2 Leaf\n\n17) goulo: Build Y3 Goulo\n\n18) Aristos: Build Y3 Leaf\n\n19) goulo: Sacrifice Y2 Verdeto\nMove Y1 Verdeto Leaf\nMove Y2 Verdeto Leaf\nCatastrophe Leaf Y\n\n\tAristos: Good game. \n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 31130)\nStarted: 2017.1.8, Ended: 2017.3.22\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: Draw5PlayAll\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ts52: Build Y2 Ts52\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) ts52: Discover Y2 Ts52 G3 Kermit\n\n10) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n11) ts52: Build Y2 Ts52\n\n12) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tDraw5PlayAll: Nanolog, star date 3206.3:\r\nOur systems have finally begun to settle on our form of government. The large blue planet contains all government offices and is filled with a highly intelligent populace. The red planet is filled with corruption and bad policies. We are looking for warp capable materials but alien empires continually take them before our fleet can.\r\n\r\n(55 words. I hope.)\n\n13) ts52: Trade Y1 B1 Ts52\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) ts52: Build G1 Ts52\n\n16) Draw5PlayAll: Build B1 G2\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Draw5PlayAll: Move Y1 Draw5playall G2\n\n19) ts52: Discover G1 Ts52 B3 Gonzo\n\n20) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n21) ts52: Build G1 Ts52\n\n22) Draw5PlayAll: Trade B1 R1 G2\n\n23) ts52: Trade Y2 R2 Ts52\n\n24) Draw5PlayAll: Build R2 G2\n\n25) ts52: Build B1 Kermit\n\n26) Draw5PlayAll: Trade R2 Y2 G2\n\n27) ts52: Build R2 Ts52\n\n28) Draw5PlayAll: Build R2 G2\n\n29) ts52: Move R2 Ts52 Kermit\n\n30) Draw5PlayAll: Discover R1 G2 G1 G1\n\n31) ts52: Build R3 Ts52\n\n32) Draw5PlayAll: Build R3 G2\n\n33) ts52: Build R3 Kermit\n\n34) Draw5PlayAll: Move Y1 G2 Draw5playall\n\n35) ts52: Move R3 Ts52 Gonzo\n\n36) Draw5PlayAll: Build Y1 Draw5playall\n\n37) ts52: Build G2 Gonzo\n\n38) Draw5PlayAll: Build G2 Draw5playall\n\n39) ts52: Move R2 Kermit G1\n\n40) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 G2\n\n41) ts52: Build Y3 Kermit\n\n42) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\tDraw5PlayAll: I wanted to sac the R1 and pass but you just build the R1 back.\n\tts52: True\n\n43) ts52: Discover G1 Ts52 Y3 Bigbird\n\n44) Draw5PlayAll: Move R2 G2 Bigbird\n\n45) ts52: Move Y3 Kermit G1\n\n46) Draw5PlayAll: Attack G1 Bigbird\n\n47) ts52: Attack R1 G1\n\n48) Draw5PlayAll: Discover Y1 B2 B3 B3\n\n49) ts52: Move Y3 G1 B3\n\n50) Draw5PlayAll: Discover Y1 B3 B1 B1\n\n51) ts52: Move B1 Kermit G1\n\n52) Draw5PlayAll: Build B2 G2\n\n53) ts52: Move Y3 B3 G1\n\n54) Draw5PlayAll: Discover Y2 G2 B3 B3\n\n55) ts52: Move R3 Kermit B1\n\n56) Draw5PlayAll: Move Y1 B1 G2\n\n57) ts52: Move Y2 Kermit B1\n\n58) Draw5PlayAll:\nSacrifice Y1 Draw5playall\nD R2 Bigbird Y1 Y1\n\n59) ts52: Move R3 B1 Bigbird\n\n60) Draw5PlayAll: Move G1 Bigbird Y1\n\tDraw5PlayAll: We both appear to be shuttling around randomly.\n\n61) ts52: Move Y2 B1 Gonzo\n\tts52: Endgame is tricky when you exhaust the bank.\n\n62) Draw5PlayAll: Move R2 Y1 Kermit\n\n63) ts52: Move Y3 G1 Kermit\n\n64) Draw5PlayAll: Attack B1 Kermit\n\n\tDraw5PlayAll: I offer a draw.\n\tts52: I accept. And since the system doesn&#39;t seem to allow it, I&#39;ll resign. Good game.\n\nHomeworlds Online (SDG# 31107)\nStarted: 2017.1.12, Ended: 2017.2.8\nParticipants: Felix (S), Ausmuh (N)\nWinner: Felix\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\tFelix: Welcome and good luck!\n\tAusmuh: Thanks! you too! Just getting back to it after a year or so.\n\n4) Felix: Build G1 Felix\n\tFelix: Yeah I remember playing again you. Happy to help you de-rust!\n\n5) Ausmuh: Trade B1 G1 Ausmuh\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Ausmuh: Discover G1 Ausmuh Y2 Lemmy\n\n8) Felix: Build G1 Felix\n\n9) Ausmuh: Build B1 Ausmuh\n\n10) Felix: Trade G1 B1 Felix\n\n11) Ausmuh: Move B1 Ausmuh Lemmy\n\n12) Felix: Build Y1 Felix\n\n13) Ausmuh: Build B1 Ausmuh\n\n14) Felix: Build Y2 Felix\n\n15) Ausmuh: Trade B3 Y3 Ausmuh\n\n16) Felix: Discover Y1 Felix G1 Out\n\n17) Ausmuh: Build B2 Lemmy\n\n18) Felix: Build Y2 Out\n\n19) Ausmuh: Build B2 Ausmuh\n\n20) Felix: Move B1 Felix Out\n\n21) Ausmuh: Trade B2 R2 Lemmy\n\n22) Felix: Trade Y1 R1 Out\n\n23) Ausmuh: Discover G1 Lemmy Y3 Hmm\n\n24) Felix: Build G1 Felix\n\n25) Ausmuh: Build G2 Hmm\n\n26) Felix: Discover G1 Felix R1 Edge\n\n27) Ausmuh: Sacrifice G1 Hmm\nBuild B2 Lemmy\n\n28) Felix: Build B2 Out\n\n29) Ausmuh: Move B2 Lemmy Edge\n\n30) Felix: Discover B1 Out G2 Rim\n\n31) Ausmuh: Sacrifice G2 Hmm\nBuild B3 Edge\nBuild B3 Lemmy\n\n32) Felix: Move B2 Out Lemmy\n\n33) Ausmuh: Sacrifice B2 Edge\nTrade B3 Y3 Edge\nTrade B3 G3 Lemmy\n\n34) Felix: Sacrifice R1 Out\nAttack R2 Lemmy\n\n35) Ausmuh: Discover B1 Lemmy G1 Pasture\n\tAusmuh: Haha, great attack. I didn&#39;t pay attention to that one at all!\n\n36) Felix: Build B2 Rim\n\tFelix: Thank you! Yeah I&#39;ve fallen victim to that type of attack many times. I always forget that people can attack even without a red in the actual system as long as they have one elsewhere!\n\n37) Ausmuh: Trade B2 R2 Ausmuh\n\n38) Felix: Sacrifice Y2 Felix\nMove B2 Lemmy Out\nMove R2 Lemmy Out\n\n39) Ausmuh: Move G3 Lemmy Out\n\n40) Felix: Sacrifice Y2 Out\nMove R2 Out Rim\nMove B2 Out Felix\n\n41) Ausmuh: Build B2 Pasture\n\tFelix: Man, you really have me on the run...\n\n42) Felix: Trade B1 Y1 Rim\n\tAusmuh: Almost, sort of. :) You getting that red two-pip from me really put a damper on my plan. Now comes the fun part... plan B! Later in the game is when it can be really difficult for me to see a clear cut plan.\n\n43) Ausmuh: Sacrifice Y3 Edge\nMove B1 Pasture Felix\nMove B2 Pasture Felix\nCatastrophe Felix Blue\nMove G3 Out Rim\n\n44) Felix: Move Y1 Rim Ausmuh\n\tFelix: Woah, nice move\n\n45) Ausmuh: Trade Y3 B3 Ausmuh\n\n46) Felix: Trade R2 G2 Rim\n\tAusmuh: Thanks, nice response!\n\n47) Ausmuh: Sacrifice B1 Ausmuh\nTrade G3 Y3 Rim\n\n48) Felix: Build Y2 Ausmuh\n\n49) Ausmuh: Sacrifice R2 Ausmuh\nAttack G2S Rim\nAttack B2S Rim\n\n50) Felix: Build Y2 Ausmuh\nCatastrophe Ausmuh Yellow\n\n51) Ausmuh: Build B1 Ausmuh\n\n52) Felix: Build Y1 Felix\n\n53) Ausmuh: Trade G2 Y2 Rim\n\n54) Felix: Sacrifice Y1 Felix\nMove G1 Edge Ausmuh\n\n55) Ausmuh: Sacrifice Y2 Rim\nMove Y3 Rim Ausmuh\nMove Y3 Ausmuh Felix\n\tAusmuh: Well done! \n\n56) Felix: Sacrifice G3 Felix\nBuild G1 Ausmuh\nBuild G1 Ausmuh\nCatastrophe Ausmuh Green\nBuild Y1 Felix\n\tFelix: Thank you, good game! I&#39;m happy to rematch any time :)\n\tDraw5PlayAll: Has there ever in the history of Homeworlds been a game with complete anihillation of all stars and ships?\n\n\nHomeworlds Online (SDG# 31172)\nStarted: 2017.1.12, Ended: 2017.3.3\nParticipants: Felix (S), w00t (N)\nWinner: Felix\n\n1) w00t: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) w00t: Build G1 W00t\n\tFelix: Hi there. First game or have you played before?\n\n4) Felix: Build G1 Felix\n\tw00t: Greetings.  I&#39;ve played homeworlds a lot more on a table top than here.  Certainly not new to the game, but far from calling myself a master :)\n\tFelix: Cool, well sounds like you know what you&#39;re doing :) I&#39;m no master either but I&#39;ve played quite a few games on here. Good luck and have fun!\n\n5) w00t: Discover G1 W00t B2 Boop\n\n6) Felix: Trade G1 Y1 Felix\n\n7) w00t: Build G1 Boop\n\n8) Felix: Build Y1 Felix\n\n9) w00t: Build G1 W00t\n\n10) Felix: Build Y2 Felix\n\n11) w00t: Build G2 Boop\n\n12) Felix: Build G2 Felix\n\n13) w00t: Trade G2 Y2 Boop\n\n14) Felix: Discover G2 Felix B1 Out\n\n15) w00t: Discover G1 Boop R1 Bop\n\n16) Felix: Move Y1 Felix Out\n\n17) w00t: Build G2 Bop\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\nBuild G2 Out\n\n19) w00t: Sacrifice G3 W00t\nBuild G3 W00t\nBuild G3 Boop\nBuild Y3 Boop\n\n20) Felix: Sacrifice Y2 Felix\nMove G2 Out Boop\nMove G2 Boop W00t\n\n21) w00t: Trade G1 R1 W00t\n\tw00t: I apologize for the delay... that was a mighty good move you made :)\n\tw00t: trade g1 r1 w00t\n\tw00t: lol... errr... wrong box :)\n\n22) Felix: Sacrifice G2 Out\nBuild G1 W00t\nBuild G2 W00t\nCatastrophe W00t Green\n\n23) w00t: Move G3 Boop W00t\n\tFelix: Thanks! We&#39;ll see if it works out!\n\n24) Felix: Trade Y3 G3 Felix\n\n25) w00t: Move Y3 Boop Bop\n\tFelix: Darn. I&#39;m not sure it worked out!\n\n26) Felix: Discover Y1 Out G2 Vazoik\n\tw00t: It would have worked very well if I hadn&#39;t been a lucky s.o.b. with that g3 at another system :)\n\n27) w00t: Build G1 W00t\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 Vazoik\nBuild Y3 Out\nBuild Y3 Felix\n\n29) w00t: Move Y2 Boop Out\n\n30) Felix: Trade Y3 R3 Out\n\n31) w00t: Build Y3 Bop\n\n32) Felix: Trade Y3 G3 Felix\n\n33) w00t: Sacrifice G3 W00t\nBuild G2 Bop\nBuild G3 W00t\nBuild G3 Boop\n\n34) Felix: Build Y3 Felix\n\n35) w00t: Move Y2 Out Felix\n\n36) Felix: Trade Y3 R3 Felix\n\tw00t: Still no clue which one of us has any sort of upper hand... I am enjoying this game a whole lot! :)\n\n37) w00t: Sacrifice Y2 Felix\nMove G1 Bop Felix\nMove G2 Bop Felix\n\tFelix: I think you have the upper hand at the moment. You&#39;re playing quite well, and I&#39;m having fun too!\n\n38) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\nBuild R1 Out\n\n39) w00t: Trade G2 R2 Felix\n\n40) Felix: Sacrifice R3 Felix\nAttack R2 Felix\nAttack G1 Felix\nPass\n\n41) w00t: Build R2 W00t\n\tw00t: wow!! I so did not expect you to sacrifice that piece :)\n\n42) Felix: Sacrifice Y2 Out\nMove Y2 Vazoik Bop\nMove Y1 Felix Bop\nCatastrophe Bop Yellow\n\n43) w00t: Move R2 W00t Vazoik\n\tFelix: I wasn&#39;t sure myself if I would until I did it! It was too much to resist getting two of your pieces.\n\n44) Felix: Move R3 Out Vazoik\n\n45) w00t: Sacrifice G2 Bop\nBuild R1 Vazoik\nBuild R3 Vazoik\nCatastrophe Vazoik Red\n\n46) Felix: Build G2 Felix\n\tw00t: Wow! This game has been an epic battle so far!\n\n47) w00t: Trade G1 Y1 Boop\n\tFelix: Indeed!\n\n48) Felix: Move G2 Felix Out\n\n49) w00t: Move G3 Boop Out\n\n50) Felix: Sacrifice Y2 Out\nMove G2 Out Boop\nMove R1 Out Boop\n\n51) w00t: Move Y1 Boop Out\n\n52) Felix: Build Y2 Felix\n\n53) w00t: Build Y2 Out\n\n54) Felix: Discover Y2 Felix B1 Rim\n\n55) w00t: Trade G1 B1 W00t\n\n56) Felix: Build Y2 Vazoik\n\n57) w00t: Sacrifice Y2 Out\nDiscover G3 Out Y3 Yoink1\nDiscover Y1 Out Y3 Yoink2\n\n58) Felix: Build Y2 Vazoik\n\n59) w00t: Move Y1 Yoink2 Vazoik\nCatastrophe Vazoik Yellow\n\n60) Felix: Build G1 Boop\n\n61) w00t: Trade G3 Y3 W00t\n\tFelix: So many explosions!\n\tw00t: it was the end of vazoik as we know it :)\n\n62) Felix: Trade G1 Y1 Boop\n\n63) w00t: Trade Y3 B3 W00t\n\n64) Felix: Build G1 Boop\n\tw00t: I&#39;m hoping I&#39;ve found a clever way to end that standoff :)\n\n65) w00t: Discover B1 W00t G2 Thbt\n\tFelix: We&#39;ll see!\n\n66) Felix: Trade G1 B1 Boop\n\n67) w00t: Trade B3 G3 W00t\n\n68) Felix: Build B2 Boop\n\n69) w00t: Move G3 Yoink1 Rim\n\n70) Felix: Sacrifice Y2 Rim\nMove B1 Boop W00t\nMove B2 Boop W00t\n\n71) w00t: Build B2 Thbt\n\n72) Felix: Sacrifice R1 Boop\nAttack R1 W00t\n\n73) w00t: Trade B2 R2 Thbt\n\n74) Felix: Sacrifice G2 Boop\nBuild B2 W00t\nBuild Y1 Boop\nCatastrophe W00t Blue\n\n75) w00t: Build R1 Thbt\n\n76) Felix: Sacrifice G1 Felix\nBuild Y2 Boop\n\n77) w00t: Sacrifice R1 Thbt\nAttack R1 W00t\n\n78) Felix: Sacrifice Y3 Felix\nMove Y2 Boop W00t\nMove Y1 Boop W00t\nMove Y1 Boop W00t\nCatastrophe W00t Yellow\n\tw00t: t&#39;was a mighty fun game :)  Thank you very much\n\tFelix: It was! Well played. I hope you had fun and learned some things. I&#39;m happy to rematch any time.\n\n\nHomeworlds Online (SDG# 31173)\nVariants: &quot;Hard time&quot;\nStarted: 2017.1.13, Ended: 2017.1.22\nParticipants: Ausmuh (S), zeder (N)\nWinner: Ausmuh\n\n1) zeder: Homeworld Y2 B1 G3\n\n2) Ausmuh: Homeworld G3 Y1 B3\n\n3) zeder: Build G1 Zeder\n\tAusmuh: Hello, Have a fun game!\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) zeder: Discover G1 Zeder Y3 Water\n\n6) Ausmuh: Build B1 Ausmuh\n\n7) zeder: Build G1 Zeder\n\n8) Ausmuh: Discover B1 Ausmuh G2 Gwar\n\n9) zeder: Trade G3 B3 Zeder\n\n10) Ausmuh: Build B2 Gwar\n\n11) zeder: Build B2 Zeder\n\n12) Ausmuh: Trade B2 Y2 Gwar\n\n13) zeder: Trade B2 R2 Zeder\n\n14) Ausmuh: Build B2 Gwar\n\n15) zeder: Build G1 Zeder\n\n16) Ausmuh: Trade B2 R2 Gwar\n\n17) zeder: Move R2 Zeder Water\n\n18) Ausmuh: Build B2 Gwar\n\n19) zeder: Build G2 Zeder\n\n20) Ausmuh: Trade B3 G3 Ausmuh\n\n21) zeder: Discover G1 Water Y2 Deaddog\n\n22) Ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Ausmuh\nBuild B2 Gwar\nBuild B3 Ausmuh\n\n23) zeder: Build G2 Deaddog\n\n24) Ausmuh: Trade B3 Y3 Ausmuh\n\n25) zeder: Build G3 Deaddog\n\n26) Ausmuh: Build B3 Ausmuh\n\n27) zeder: Discover G2 Deaddog B3 Heap\n\n28) Ausmuh: Discover B2 Gwar G3 Lxsx\n\n\nHomeworlds Online (SDG# 31174)\nStarted: 2017.1.13, Ended: 2017.3.6\nParticipants: Felix (S), MobyNostromo (N)\nWinner: Felix\n\n1) MobyNostromo: Homeworld B1 G2 Y3\n\tMobyNostromo: Hi. This is my first time playing, and the wiki is down. Can you help me with the notation?\n\n2) Felix: Homeworld B2 R3 G3\n\tDraw5PlayAll: What do you need?\r\n\r\nAlso, change games/homeworlds to games:homeworlds in the wiki URL and that should work.\n\tMobyNostromo: Aha!! I found it. Thank you., and thank you for waiting for my move. I&#39;m good, you can make your move.\n\tFelix: I guess Draw5 beat me to the advice. But I&#39;m happy to help you with the notation and give you tips as we play. One cool thing to remember is that you don&#39;t have to type out the full word of the notation. &quot;b g1 MobyNostromo&quot; would work just as well as &quot;build g1 MobyNostromo.&quot; Saves a bit of time!\n\n3) MobyNostromo: Build Y1 Mobynostromo\n\n4) Felix: Build G1 Felix\n\tMobyNostromo: Hi Felix. Thanks for the clarification. I&#39;m very curious about this game, but I&#39;m afraid I&#39;m not going to give you a very good game.\n\tFelix: No problem! I&#39;m always happy to help a beginner learn. It&#39;s a wonderful game so I hope you&#39;ll learn to love it. Don&#39;t worry about doing super wlel on your first game. It took me a solid 10-20 games to really start to wrap my head around the strategy of it.\n\n5) MobyNostromo: Build Y1 Mobynostromo\n\tMobyNostromo: Knowing the little I know of it, I think I&#39;m going to like this one. I know I&#39;m going to blow this game (and the next ten or twenty).\n\tMobyNostromo: And thanks for the help!!\n\tMobyNostromo: I&#39;m not getting the proper codes. I wanted to discover a new system with my Y1. What should I right for the next move?\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: To discover a new system you would type &quot;d y1 MobyNostromo&quot; plus the size/color of the new system and the name of the new system. So if you wanted to discover a g3 with your y1 you would type &quot;d y1 MobyNostromo g3 system1&quot; for instance. But you can name it whatever you want.\r\n\r\nI hope that helps!\n\n7) MobyNostromo: Discover Y1 Mobynostromo G3 Alpha\n\n8) Felix: Build Y2 Felix\n\tMobyNostromo: It worked! Thanks!\n\n9) MobyNostromo: Build Y2 Alpha\n\n\n\n\n10) Felix: Discover Y2 Felix G1 Out\n\n11) MobyNostromo: Trade Y1 B1 Mobynostromo\n\n12) Felix: Build G1 Felix\n\n13) MobyNostromo: Move B1 Mobynostromo Alpha\n\n14) Felix: Trade G1 B1 Felix\n\n15) MobyNostromo: T Y2 R2 Alpha\n\n16) Felix: Build B2 Felix\n\n17) MobyNostromo: Discover R2 Alpha G1 In\n\n18) Felix: Trade B2 R2 Felix\n\n19) MobyNostromo: B B2 Alpha\n\n20) Felix: Move B1 Felix Out\n\n21) MobyNostromo: T B2 R2 Alpha\n\n22) Felix: Build B2 Out\n\n23) MobyNostromo: B B2 Alpha\n\n24) Felix: Discover B2 Out G3 Ridge\n\n25) MobyNostromo: B B3 Alpha\n\n26) Felix: Move B1 Out Alpha\nCatastrophe Alpha Blue\n\n27) MobyNostromo: M R2 Alpha Out\n\tMobyNostromo: I had a dire feeling something was in the works. Something &quot;catastrophic.&quot;\n\n28) Felix: Sacrifice R2 Felix\nAttack R2 Out\nPass\n\tFelix: Hehehe, always gotta watch out for those catastrophes, but it can be very difficult to recognize the threats sometimes.\n\n29) MobyNostromo: B Y1 Alpha\n\tFelix: Also, watch out for the remote attack ability on a sacrifice, like I just did!\n\tMobyNostromo: I completely forgot about that. There&#39;s a lot to this game! I think I&#39;m going to like this one at least a lot.\n\n30) Felix: Build Y2 Out\n\tFelix: It&#39;s my favorite game, even better than chess. The rules are simple but the possibilities are extremely complex!\n\n31) MobyNostromo: B Y2 Mobynostromo\n\tMobyNostromo: Though I know very little at this point, I can see it supplanting games like Chess.\n\n32) Felix: Build Y3 Felix\n\tDraw5PlayAll: I doubt the rules are simple... but the possibilities are very IDIC (infinite diversity in infinite combinations).\n\n33) MobyNostromo: T Y2 B2 Mobynostromo\n\tFelix: @Draw5 - I meant compared with chess. Only four piece types, one type of movement, one type of attack, etc. Pretty simple, really.\n\tDraw5PlayAll: Four piece types? I say 12 or 24!\n\tFelix: How do you figure? Different sizes, sure, but the same action types.\n\tMobyNostromo: It seems to me to encapsulate pretty elegant rules within so many possible outcomes, it can become an incredible brain-burner. Then again, my two cents at this point is worth about that much - two cents.\n\n34) Felix: Build B1 Ridge\n\n35) MobyNostromo: M B2 Mobynostromo Alpha\n\tDraw5PlayAll: Inflation...\n\tMobyNostromo: Ha, ha! Those are two expensive cents.\n\n36) Felix: Move Y2 Out Ridge\n\n37) MobyNostromo: B B1 Alpha\n\n38) Felix: Move B1 Ridge Out\n\n39) MobyNostromo: M B2 Alpha In\n\n40) Felix: Build B3 Ridge\n\n41) MobyNostromo: B B3 In\n\n42) Felix: Build B3 Out\n\n43) MobyNostromo: M Y1 Alpha In\n\n44) Felix: Build G1 Felix\n\n45) MobyNostromo: B Y2 Alpha\n\n46) Felix: Build Y3 Out\n\n47) MobyNostromo: T Y2 R2 Alpha\n\n48) Felix: Build Y2 Ridge\n\n49) MobyNostromo: B R1 Alpha\n\n50) Felix: Discover Y2 Out R3 Rim\n\n51) MobyNostromo: T B3 R3 In\n\n52) Felix: Sacrifice Y3 Felix\nMove Y2 Rim Mobynostromo\nMove Y2 Ridge Mobynostromo\nMove Y2 Ridge Mobynostromo\nCatastrophe Mobynostromo Yellow\n\tFelix: Good game and well fought! Hope you had fun!\n\tMobyNostromo: It was awesome. I want to keep playing this game and really learn it. Thank you for your patience.\n\tFelix: Well I&#39;m happy to rematch any time.\n\n\nHomeworlds Online (SDG# 30502)\nStarted: 2017.1.14, Ended: 2017.2.12\nParticipants: dragonlord (S), w00t (N)\nWinner: w00t\n\n1) w00t: Homeworld R3 Y2 G3 *\n\n2) dragonlord: Homeworld G1 B2 Y3\n\n3) w00t: Build G1 W00t\n\n4) dragonlord: Build Y1 Dragonlord\n\n5) w00t: Discover G1 W00t B1 Boop\n\n6) dragonlord: Discover Y1 Dragonlord G3 Terrace\n\n7) w00t: Build G1 Boop\n\tdragonlord: \n\tdragonlord: \n\n8) dragonlord: Build Y1 Dragonlord\n\n9) w00t: Build G2 Boop\n\n10) dragonlord: Trade Y3 G3 Dragonlord\n\n11) w00t: Trade G2 Y2 Boop\n\n12) dragonlord: Build Y1 Terrace\n\n13) w00t: Build G2 W00t\n\n14) dragonlord: Discover Y1 Terrace B1 Iceland\n\n15) w00t: Discover G1 Boop B3 Bop\n\n16) dragonlord: Trade Y1 R1 Dragonlord\n\n17) w00t: Sacrifice G3 W00t\nBuild G2 Boop\nBuild G2 Bop\nBuild G3 W00t\n\n18) dragonlord: Build R1 Dragonlord\n\n19) w00t: Sacrifice Y2 Boop\nMove G1 Bop Dragonlord\nMove G2 Bop Dragonlord\nCatastrophe Dragonlord Green\n\n20) dragonlord: Trade R1 Y1 Dragonlord\n\n21) w00t: Trade G2 Y2 Boop\n\n22) dragonlord: Build Y2 Terrace\n\n23) w00t: Move Y2 Boop Dragonlord\n\n24) dragonlord: Discover Y1 Dragonlord G3 Farm\n\n25) w00t: Trade G1 R1 Boop\n\n\nHomeworlds Online (SDG# 31155)\nStarted: 2017.1.14, Ended: 2017.4.14\nParticipants: ts52 (S), w00t (N)\nWinner: ts52\n\n1) w00t: Homeworld G2 R1 B3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) w00t: Build B1 W00t\n\n4) ts52: Build G1 Ts52\n\n5) w00t: Trade B1 Y1 W00t\n\n6) ts52: Trade G1 B1 Ts52\n\n7) w00t: Build Y1 W00t\n\n8) ts52: Build G1 Ts52\n\n9) w00t: Trade Y1 G1 W00t\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) w00t: Discover G1 W00t B3 Boop\n\n12) ts52: Build G1 Ts52\n\n13) w00t: Build Y1 W00t\n\n14) ts52: Build Y2 Ts52\n\n15) w00t: Build Y2 W00t\n\n16) ts52: Discover Y1 Ts52 G2 Kermit\n\n17) w00t: Move Y1 W00t Boop\n\n18) ts52: Move B1 Ts52 Kermit\n\n19) w00t: Discover Y1 W00t G3 Bop\n\n20) ts52: Discover G1 Ts52 B2 Grover\n\n21) w00t: Build G1 Boop\n\n22) ts52: Build G2 Grover\n\n23) w00t: Trade G1 R1 Boop\n\n24) ts52: Trade G2 R2 Grover\n\n25) w00t: Build G1 Boop\n\n26) ts52: Move Y2 Ts52 Grover\n\n27) w00t: Discover G1 Boop R2 Star\n\n28) ts52: Build R1 Grover\n\n29) w00t: Trade B3 G3 W00t\n\n30) ts52: Build G2 Ts52\n\n31) w00t: Sacrifice Y1 Boop\nMove G1 Star Ts52\n\n32) ts52: Trade G2 R2 Ts52\n\n33) w00t: Build G2 Ts52\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Grover\nBuild R2 Grover\nBuild R3 Ts52\n\n35) w00t: Sacrifice G2 Ts52\nBuild R3 Boop\nBuild G2 Boop\n\n36) ts52: Move R2 Grover Bop\n\n\tLaurie_Menke: Hi ts52... I just wanted to let you and w00t know that I&#39;m making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that&#39;s the right thing to do.  :)\n\tts52: Laurie, that&#39;s fine. In this case I can terminate the game, but since I&#39;ve forgotten about my SDG games on more than one occasion, I have a tendency to let time lapse for up to a month before I do.\n\tLaurie_Menke: ts52, Aaron did his sweep but didn&#39;t take this one out, so I guess you&#39;ll have to do it yourself if you want to.  :)\n\tts52: Thanks Laurie. I&#39;ll give it another week or so.\n\tLaurie_Menke: :)\n\nHomeworlds Online (SDG# 31180)\nStarted: 2017.1.16, Ended: 2017.1.22\nParticipants: w00t (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y1 G3\n\tAusmuh: wait. what?\n\n\tDraw5PlayAll: What do you mean?\n\tAusmuh: I was just surprised to see w00t making standing challenges. It&#39;s been a while.\n\tAusmuh: Next time! :)\n\nHomeworlds Online (SDG# 31200)\nVariants: &quot;Hard time&quot;\nStarted: 2017.1.18, Ended: 2017.2.2\nParticipants: ausmuh (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n\tAusmuh: I have no place to enter commands from my screen. o.O  Never ran into this problem before. :)\n\tBabamots: I had my loyalists on your planet sabotage your interstellar transmitter. It&#39;s war. You do what you gotta do. ;-)\n\tAusmuh: Haha, so that&#39;s what happened! Well done! I admit I never saw it coming.\n\tDraw5PlayAll: Who is playing this game?\n\tBabamots: It&#39;s Babamots and ausmuh.\n\tAusmuh: OK, well I can&#39;t take a move, but maybe if the time runs out you can at least move up a rung?\n\tBabamots: Well yeah, but that&#39;s not very fair to you. I can wait. Let&#39;s get someone to sort this out.\n\tBabamots: I&#39;ll trying emailing Aaron. If that fails, I&#39;ll try Facebook and SDG PM. So many ways to bug people!\n\tAusmuh: Haha, ok. Whatever is clever :)\n\tBabamots: Quick question: have you tried using a different browser?\n\tAusmuh: I have tried a couple different ones to no avail :( chrome, slim jet (chrome), edge. I&#39;ll have to try Firefox. I can take turns in my other games so I don&#39;t know if that&#39;s the problem.\n\tBabamots: I haven&#39;t got an email response yet, so I tried Aaron on Facebook today. If we never hear back, whaddaya say we play an unranked game and the loser resigns this one?\n\tAusmuh: I like it! Except I don&#39;t have a resign button either. Just the map. You&#39;DE Welshman to start the clock, no bad feelings here. I&#39;m still all for another game though :)\n\tAusmuh: *you&#39;re welcome.    \r\n\r\nWow, autocorrect. Welshman....\n\tBabamots: But you can run out the clock, so we can still use this to update the ladder correctly. \n\tAusmuh: good point! :) \n\tBabamots: Aaron hasn&#39;t checked his Facebook messages yet. Oh well. I promise not to disable your communications array the next time we meet.\n\tAusmuh: Sounds good to me! The whole time this played out I couldn&#39;t help but think of SpaceBalls.\r\n\r\n&quot;The radar appears to be...&quot;\r\n&quot;Jammed.... raspberry. There&#39;s only one man who would dare give me the raspberry! Babamots!!!&quot;\n\tBabamots: Ausmuh. So at last we meet for the first time for the last time.\n\tBabamots: Looks like Aaron is active on the site. I should have sent him a PM first.\n\nHomeworlds Online (SDG# 31176)\nStarted: 2017.1.19, Ended: 2017.4.3\nParticipants: alexhouston (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\talexhouston: hi\r\n\n\n2) alexhouston: Homeworld G3 R2 B3\n\tFelix: Hello! First game?\n\n3) Felix: Build G1 Felix\n\talexhouston: Yeah first game on SDG, I recently got Pyramid Arcade and Homeworlds was easily my favorite on there.  I&#39;ll admit I&#39;m still probably a pretty novice player so you might not find me a huge challenge but I&#39;m just trying to get better\n\talexhouston: Yeah first game on SDG, I recently got Pyramid Arcade and Homeworlds was easily my favorite on there.  I&#39;ll admit I&#39;m still probably a pretty novice player so you might not find me a huge challenge but I&#39;m just trying to get better\n\tFelix: No problem! The best way to get better is to practice and play a lot. I&#39;m no pro but I have played quite a few games on here so I hope I&#39;m able to help you improve. Let me know if you have any questions and if I think of any tips I&#39;ll let you know!\n\n4) alexhouston: Build B1 Alexhouston\n\tFelix: I have found that starting with a green star in your homeworld generally makes the game a bit more difficult for a newer player The reason is that it makes it harder to set up a &quot;factory&quot; in your homeworld (A g3 and another green) without overcrowding it with green. Of course, you can always try and build that factory elsewhere, but it&#39;s a bit more difficult usually. It&#39;s also widely considered strongest to begin with a large green ship because this provides extra build power in the early game (It&#39;s possible to sacrifice the G3 to build 3 ships, one of which could be a large). That extra build potential can realy help build up one&#39;s fleet early on, and it&#39;s not always so easy to do that if you start with something like a B3 (though a b3 does give you an early edge in getting blue ships, which is good too)\n\n5) Felix: Trade G1 Y1 Felix\n\n6) alexhouston: Trade B1 Y1 Alexhouston\n\n7) Felix: Build G1 Felix\n\n8) alexhouston: Discover Y1 Alexhouston G1 Star\n\n9) Felix: Trade G1 B1 Felix\n\tFelix: Just as a general tip, it is sometimes wiser to build another ship of a particular color before you move your ship out. For instance, since you just moved your y1 to a new system, you lost the ability to use yellow in your homeworld, and to get it back you&#39;ll either have to move your y1 back there or build a b1 and then trade it for a y1, which will essentially cause you to waste a turn in the future. If you built another y1 first and THEN moved one of them out, then you&#39;d retain the yellow ability in both systems. It&#39;s a good rule of thumb to build first and then move, but then again, there might be unique situations where you won&#39;t ALWAYS want to follow that rule.\n\n10) alexhouston: Build B1 Alexhouston\n\n11) Felix: Build G1 Felix\n\talexhouston: Thanks for the tips, that definitely makes sense.\r\n\n\tDraw5PlayAll: Building the Y1 would allow Felix to get a Y2.\n\n12) alexhouston: Build Y1 Star\n\n13) Felix: Trade G1 R1 Felix\n\n14) alexhouston: Move Y1 Star Alexhouston\n\n15) Felix: Build Y2 Felix\n\n16) alexhouston: Build Y2 Alexhouston\n\n17) Felix: Discover Y1 Felix G2 Rykas\n\n18) alexhouston: Move B1 Alexhouston Star\n\n19) Felix: Build Y2 Felix\n\n20) alexhouston: Build Y3 Star\n\n21) Felix: Build Y3 Rykas\n\n22) alexhouston: Discover Y3 Star B2 World\n\n23) Felix: Move Y1 Rykas Star\n\n24) alexhouston: Discover Y1 Alexhouston G1 Flash\n\n25) Felix: Build Y3 Rykas\n\n26) alexhouston: Move B1 Star World\n\n27) Felix: Move B1 Felix World\n\n28) alexhouston: Move Y1 Star Rykas\n\n29) Felix: Move Y3 Rykas Flash\n\n30) alexhouston: Trade Y2 R2 Alexhouston\n\n31) Felix: Trade Y2 B2 Felix\n\n32) alexhouston: Build Y2 Flash\n\n33) Felix: Move B2 Felix World\nCatastrophe World Blue\n\n34) alexhouston: Move Y1 Flash Alexhouston\n\n35) Felix: Move R1 Felix Rykas\n\n36) alexhouston: Move Y1 Rykas Star\n\n37) Felix: Build G1 Felix\n\n38) alexhouston: Trade R2 G2 Alexhouston\n\n39) Felix: Discover G1 Felix B2 Roam\n\n40) alexhouston: Trade Y1 B1 Alexhouston\n\n41) Felix: Build G2 Roam\n\n42) alexhouston: Trade G2 Y2 Alexhouston\n\n43) Felix: Build G2 Felix\n\n44) alexhouston: Trade B3 G3 Alexhouston\n\n45) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Rykas\nBuild Y3 Felix\n\n46) alexhouston: Build B1 Alexhouston\n\n47) Felix: Build R1 Rykas\n\n48) alexhouston: Sacrifice Y2 Alexhouston\nMove Y1 Star Rykas\nMove Y2 Flash Rykas\nCatastrophe Rykas Y\n\n49) Felix: Trade G2 Y2 Roam\n\n50) alexhouston: Trade B1 Y1 Alexhouston\n\n51) Felix: Build G2 Roam\n\n52) alexhouston: Build B1 Alexhouston\n\n53) Felix: Discover G1 Roam B1 Edge\n\n54) alexhouston: Trade G3 B3 Alexhouston\n\n55) Felix: Build G3 Edge\n\n56) alexhouston: Move B1 Alexhouston Star\n\n57) Felix: Sacrifice R1 Rykas\nAttack B1 Star\n\n58) alexhouston: Discover B1 Alexhouston R1 Run\n\n59) Felix: Build B2 Star\n\tFelix: Watch out for your opponents ability to attack remotely with a sacrifice!\n\talexhouston: yeah I just lost a different game because of that so I got to get better at noticing that for sure\n\n60) alexhouston: Build Y1 Alexhouston\n\n61) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Flash\nBuild Y3 Roam\n\n62) alexhouston: Move Y1 Alexhouston Run\n\n63) Felix: Build R2 Rykas\n\n64) alexhouston: Build B2 Alexhouston\n\n65) Felix: Sacrifice Y3 Roam\nMove B1 Star Alexhouston\nMove B2 Star Alexhouston\nCatastrophe Alexhouston Blue\nMove G3 Edge Alexhouston\n\n\tLaurie_Menke: Hi Felix... I just wanted to let you and alexhouston know that I&#39;m making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that&#39;s the right thing to do.  :)\n\tLaurie_Menke: Ooops!  I&#39;m sorry!  I see now that the game is back on track.  I won&#39;t have Aaron delete it.  Sorry for the interruption!\n\tFelix: @Laurie_Menke Thanks for letting us know. It does seem that it was abandoned after all, so I went ahead and ended it!\n\tDraw5PlayAll: Evidently the deletion happened, as there are only 165 games in progress.\n\tLaurie_Menke: You&#39;re welcome, Felix!  And yes, it has happened, Draw5PlayAll.  Hopefully we can play with real people who are really here now instead of ghost people on ladders and long lists of timed out games.  :)\n\nHomeworlds Online (SDG# 31227)\nVariants: &quot;Hard time&quot;\nStarted: 2017.1.22, Ended: 2017.1.24\nParticipants: alexhouston (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y1 G3\n\n2) alexhouston: Homeworld R3 B2 G3\n\tAusmuh: Hello, have a fun game!\n\n3) Ausmuh: Build G1 Ausmuh\n\n4) alexhouston: Build G1 Alexhouston\n\n5) Ausmuh: Trade G1 B1 Ausmuh\n\n6) alexhouston: Trade G1 B1 Alexhouston\n\n7) Ausmuh: Build G1 Ausmuh\n\n8) alexhouston: Trade B1 Y1 Alexhouston\n\n9) Ausmuh: Discover B1 Ausmuh G2 Gwar\n\n10) alexhouston: Build G1 Alexhouston\n\n11) Ausmuh: Trade B1 Y1 Gwar\n\n12) alexhouston: Build Y2 Alexhouston\n\n13) Ausmuh: Build Y2 Gwar\n\n14) alexhouston: Discover Y1 Alexhouston B1 Outpost\n\n15) Ausmuh: Move Y2 Gwar Outpost\n\n16) alexhouston: Move Y1 Outpost Gwar\n\n17) Ausmuh: Trade Y2 G2 Outpost\n\n18) alexhouston: Build Y2 Gwar\n\n19) Ausmuh: Build Y2 Gwar\nCatastrophe Gwar Yellow\n\n20) alexhouston: Build Y1 Alexhouston\n\n21) Ausmuh: Build G1 Outpost\n\n22) alexhouston: Build G2 Alexhouston\n\n23) Ausmuh: Trade G2 Y2 Outpost\n\n24) alexhouston: Trade G2 B2 Alexhouston\n\n25) Ausmuh: Build G2 Outpost\n\n26) alexhouston: Move G1 Alexhouston Outpost\n\n27) Ausmuh: Trade G2 R2 Outpost\n\n28) alexhouston: Trade G1 Y1 Outpost\n\n29) Ausmuh: Attack Y1S Outpost\n\n30) alexhouston: Build B1 Alexhouston\n\n31) Ausmuh: Discover Y2 Outpost B3 Blucifer\n\n32) alexhouston: Trade G3 R3 Alexhouston\n\n33) Ausmuh: Build R1 Outpost\n\n34) alexhouston: Trade R3 G3 Alexhouston\n\n35) Ausmuh: Sacrifice Y2 Blucifer\nMove R2 Outpost Alexhouston\nMove R1 Outpost Alexhouston\n\n36) alexhouston: Attack R2N Alexhouston\n\n37) Ausmuh: Sacrifice G1 Outpost\nBuild R1 Alexhouston\nCatastrophe Alexhouston Red\n\n38) alexhouston: Move Y1 Alexhouston Outpost\n\n39) Ausmuh: Move G1 Ausmuh Alexhouston\n\n40) alexhouston: Build Y2 Alexhouston\n\n41) Ausmuh: Trade G1 B1 Alexhouston\nCatastrophe Alexhouston Blue\n\n\tAusmuh: Thanks for the game!\n\talexhouston: dang, thanks for playing. I&#39;m super new to homeworlds as you can probably tell\n\tAusmuh: No worries! I&#39;m not more then a novice myself. It takes a little getting used to. It&#39;s important to watch the planet connections after a catastrophe. Keep with it, that seems to be the real secret. :) Eventually the middle of the game will seem clearer. (Sometimes. I still get overwhelmed by all the choices in some games.)\n\nHomeworlds Online (SDG# 31243)\nStarted: 2017.1.24, Ended: 2017.6.19\nParticipants: w00t (S), Ausmuh (N)\nWinner: w00t\n\n1) Ausmuh: Homeworld G3 B1 Y3\n\n2) w00t: Homeworld B3 Y2 G3\n\n3) Ausmuh: Build Y1 Ausmuh\n\tw00t: It&#39;s been far too long since I played any homeworlds... I&#39;m psyched you&#39;re still active on here to challenge :)\n\tAusmuh: Right! I was excited to see you here also! I&#39;m so rusty. Back into the fire! I stole the 48 hour turn scheme from Star Realms (A card game you should still totally check out the app for, Kami and I still play and the online community is so active) And having to check in a little more often has made it easier to remember and more enjoyable. Or the game will just end. Either way, less time wasted.\n\n4) w00t: Build G1 W00t\n\n5) Ausmuh: Trade Y1 G1 Ausmuh\n\tw00t: Star Realms... I&#39;ll have to look into it......\n\n6) w00t: Discover G1 W00t B1 Illuminati\n\tAusmuh: Aye. But first... there are other star realms to destroy!\n\n7) Ausmuh: Discover G1 Ausmuh B2 Blucifer\n\n8) w00t: Build G1 Illuminati\n\n9) Ausmuh: Build G2 Blucifer\n\n10) w00t: Build G2 W00t\n\n11) Ausmuh: Trade G2 Y2 Blucifer\n\n12) w00t: Trade G1 Y1 Illuminati\n\n13) Ausmuh: Build Y1 Ausmuh\n\tw00t: sorry for the delay... crazy past few days here\n\n14) w00t: Trade G2 Y2 W00t\n\tAusmuh: No worries man! I&#39;m pretty much on auto-pilot until I shake the dust off anyways. After about turn 5, I&#39;m just kinda making moves to see what happens for now. Hopefully I remember some of the finer points later. :)\n\n15) Ausmuh: Trade Y1 R1 Ausmuh\n\n16) w00t: Build Y1 Illuminati\n\n17) Ausmuh: Discover Y2 Blucifer G1 Gwar\n\n18) w00t: Build G2 W00t\n\n19) Ausmuh: Move Y2 Gwar W00t\n\n20) w00t: Sacrifice Y2 W00t\nDiscover Y1 Illuminati G2 Yin\nDiscover Y1 Illuminati G2 Yan\n\tAusmuh: I&#39;m much too curious to not make that move.\n\tw00t: I thought you would do that &gt;:)  I just hope my scheming was adequate...\n\tw00t: dammit... I thought illuminati was connected to your homeworld for some reason :\\\n\n21) Ausmuh: Sacrifice R1 Ausmuh\nAttack G2S W00t\n\n22) w00t: Trade G3 R3 W00t\n\tAusmuh: That&#39;s one reason I like the table better. The paths stay clearer.  Still only played like 2 games tops IRL with other folk though. Sad.\n\tw00t: amen to that... sdg seems to put the star systems in awkward orders\n\n23) Ausmuh: Sacrifice G2 W00t\nBuild Y1 W00t\nBuild Y2 W00t\nCatastrophe W00t Yellow\n\tDraw5PlayAll: The systems are ordered alphabetically.\n\tw00t: huh... hadn&#39;t noticed that, but they sure are alphabetical... It&#39;d be a nice touch if we could drag the tile that star system is into a preferred placement... but alas, I&#39;m content just having online homeworlds! :)\n\tAusmuh: Good to know!! Thanks Draw5PlayAll!\n\n24) w00t: Move Y1 Yin Ausmuh\n\tDraw5PlayAll: So if you agree to name them purposefully, you might get the effect you want.\n\tw00t: AHHH!! I so knew that was gonna happen, but I couldn&#39;t find a way to stop it :&#39;(\n\n25) Ausmuh: Build G1 Blucifer\n\tw00t: You ought to join that 4 man standing challenge that Draw5PlayAll issued... I joined another 4 man challenge, but one of the players is very not active, so we&#39;ve been waiting like 3 days for him to move\n\n26) w00t: Build Y1 Ausmuh\n\tAusmuh: Non binary you say?? I could at least give it a whirl.\n\tDraw5PlayAll: Once a game starts you cannot join it, even if an existing player forfeits on time\n\tw00t: I was talking about the team one that&#39;s still waiting for two more players...\n\n27) Ausmuh: Trade Y3 R3 Ausmuh\n\n28) w00t: Sacrifice Y1 Ausmuh\nDiscover Y1 Ausmuh G2 Run_away\n\tAusmuh: Maybe we should join that 3 player sinister game.\r\n\r\nAlso, maybe you should stop trying to blow up all my ships. :)\n\tDraw5PlayAll: Yes, join the 3P.\r\n\r\nSays the only player who still has an intact homeworld...\n\n29) Ausmuh: Build R1 Ausmuh\n\tw00t: I&#39;m down to join it... not sure how sinister works, but it sounds sinister... \n\n30) w00t: Build Y1 Run_away\n\tDraw5PlayAll: Sinister = destroy the player on your left to win. If anyone else causes their elimination, the game continues and your target changes.\n\n31) Ausmuh: Build G2 Blucifer\n\n32) w00t: Discover Y1 Run_away G3 O_o\n\n33) Ausmuh: Trade G2 Y2 Blucifer\n\n34) w00t: Build Y2 Yan\n\n35) Ausmuh: Trade G1 R1 Blucifer\n\n36) w00t: Move Y1 Yan W00t\n\n37) Ausmuh: Trade R3 Y3 Ausmuh\n\n38) w00t: Build G1 Illuminati\n\tw00t: I am so doomed :)\n\n39) Ausmuh: Trade G1 B1 Blucifer\n\tAusmuh: Haha you&#39;d think that, but sometimes I have a very hard time putting together the endgame. I had Felix in a bad spot in our last game, but fumbled it all somewhere along the way! o.O\n\n40) w00t: Build Y2 Yan\n\tw00t: That happened to me recently on a game, too! I think it was even against Felix.... I had him in a tight corner, but wasn&#39;t watching his pieces and he catastrophe&#39;d all my ships at my homeworld... clever guy :)\n\n41) Ausmuh: Trade Y3 G3 Ausmuh\n\n42) w00t: Build Y3 Run_away\n\n\tLaurie_Menke: Hi w00t... I just wanted to let you and Ausmuh know that I&#39;m making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that&#39;s the right thing to do.  :)\n\nHomeworlds Online (SDG# 31221)\nStarted: 2017.1.24, Ended: 2017.3.5\nParticipants: actilson (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) actilson: Homeworld B2 Y1 G3\n\n3) ts52: Build G1 Ts52\n\n4) actilson: Build G1 Actilson\n\n5) ts52: Trade G1 B1 Ts52\n\n6) actilson: Trade G1 B1 Actilson\n\n7) ts52: Build B2 Ts52\n\n8) actilson: Build G1 Actilson\n\n9) ts52: Build G1 Ts52\n\n10) actilson: Build B2 Actilson\n\n11) ts52: Discover B1 Ts52 G2 Kermit\n\n12) actilson: Discover B2 Actilson R3 Death\n\n13) ts52: Trade B2 Y2 Ts52\n\n14) actilson: Build B2 Actilson\n\n15) ts52: Build B3 Kermit\n\n16) actilson: Move B1 Actilson Death\n\n17) ts52: Build B3 Kermit\n\n18) actilson: Build B3 Actilson\n\n19) ts52: Trade B3 Y3 Kermit\n\n20) actilson: Move B3 Actilson Death\n\n21) ts52: Build B3 Kermit\n\n22) actilson: Trade B1 G1 Death\n\n23) ts52: Trade B3 R3 Kermit\n\n24) actilson: Build G2 Death\n\n25) ts52: Sacrifice Y2 Ts52\nMove R3 Kermit Death\nMove R3 Death Actilson\n\n26) actilson: Trade B2 R2 Actilson\n\n27) ts52: Attack R2 Actilson\n\n28) actilson: Trade B3 R3 Death\n\n29) ts52: Sacrifice R2 Actilson\nAttack G3 Actilson\nAttack G1 Actilson\n\n\tts52: Good game. Thanks!\n\nHomeworlds Online (SDG# 31254)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.1.25, Ended: 2017.1.30\nParticipants: Ausmuh (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) Ausmuh: Homeworld G2 B1 Y3\n\n3) Babamots: Build G1 Babamots\n\n4) Ausmuh: Build Y1 Ausmuh\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Ausmuh: Discover Y1 Ausmuh B3 Bluzebub\n\n7) Babamots: Build G1 Babamots\n\n8) Ausmuh: Trade Y1 G1 Bluzebub\n\n9) Babamots: Discover G1 Babamots B2 Zakdorn\n\n10) Ausmuh: Build G1 Bluzebub\n\n11) Babamots: Build G2 Babamots\n\n12) Ausmuh: Trade G1 Y1 Bluzebub\n\n13) Babamots: Discover G2 Babamots B2 Husnock\n\n14) Ausmuh: Build G1 Bluzebub\n\n15) Babamots: Build G2 Babamots\n\n16) Ausmuh: Trade G1 R1 Bluzebub\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G1 Babamots\nBuild G3 Zakdorn\nBuild G3 Babamots\n\n18) Ausmuh: Build G3 Bluzebub\n\n19) Babamots: Trade G3 R3 Zakdorn\n\n20) Ausmuh: Discover G1 Bluzebub Y2 Mellow\n\n21) Babamots: Sacrifice G2 Babamots\nBuild G2 Zakdorn\nBuild G3 Husnock\n\n22) Ausmuh: Sacrifice G3 Bluzebub\nBuild Y1 Ausmuh\nBuild Y2 Bluzebub\nBuild G3 Mellow\n\n23) Babamots: Trade G3 Y3 Husnock\n\n24) Ausmuh: Sacrifice Y2 Bluzebub\nMove Y1 Bluzebub Husnock\nMove G1 Mellow Babamots\n\n25) Babamots: Attack G1S Babamots\n\n26) Ausmuh: Move G3 Mellow Babamots\nCatastrophe Babamots Green\n\n27) Babamots: Trade G2 Y2 Zakdorn\n\n28) Ausmuh: Trade R1 G1 Bluzebub\n\n29) Babamots: Sacrifice Y2 Zakdorn\nMove Y3 Husnock Bluzebub\nMove Y3 Bluzebub Ausmuh\n\tAusmuh: hmmm... perhaps I got a little too gung ho. :)\n\n30) Ausmuh: Move Y1 Husnock Babamots\n\tBabamots: It&#39;s tricky to know when you have enough to go for the throat. I had to look at the board a long time before I was sure I wasn&#39;t about to die.\n\tAusmuh: In for the kill. With that free R3 you have I don&#39;t see a way out of it. GG! Next time won&#39;t be so easy... hopefully. \n\n31) Babamots: Sacrifice R3 Zakdorn\nAttack Y3S Ausmuh\nAttack Y1S Ausmuh\nPass\nPass\nPass\n\tBabamots: GG! Until we meet again somewhere in the cosmos...\n\n\nHomeworlds Online (SDG# 31265)\nStarted: 2017.1.26, Ended: 2017.3.14\nParticipants: w00t (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B2 Y1 G3\n\n2) w00t: Homeworld B3 R2 G3\n\tbhorner: It&#39;s been a while, good luck!\n\n3) bhorner: Build G1 Bhorner\n\n4) w00t: Build G1 W00t\n\n5) bhorner: Trade G1 Y1 Bhorner\n\tw00t: Many apologies for the delay... \n\tbhorner: No worries!\n\n6) w00t: Trade G1 Y1 W00t\n\n7) bhorner: Build Y2 Bhorner\n\n8) w00t: Build Y2 W00t\n\n9) bhorner: Trade Y2 R2 Bhorner\n\n10) w00t: Build Y2 W00t\n\n11) bhorner: Discover Y1 Bhorner G3 Plants\n\n12) w00t: Trade Y1 R1 W00t\n\n13) bhorner: Build G1 Bhorner\n\n14) w00t: Discover R1 W00t G1 Boop\n\n15) bhorner: Discover G1 Bhorner Y3 Big-bird\n\n16) w00t: Move Y2 W00t Boop\n\n17) bhorner: Build G1 Bhorner\n\n18) w00t: Build G2 W00t\n\n19) bhorner: Sacrifice G3 Bhorner\nBuild G2 Big-bird\nBuild G2 Big-bird\nBuild G3 Bhorner\n\n20) w00t: Build Y1 Boop\n\n21) bhorner: Discover G1 Bhorner Y3 Sunny\n\n22) w00t: Sacrifice G3 W00t\nBuild G3 W00t\nBuild Y2 W00t\nBuild Y3 W00t\n\n23) bhorner: Sac G1 Sunny\nBuild Y3 Plants\n\n24) w00t: Discover Y2 Boop R3 Rawr\n\n25) bhorner: Move G2 Big-bird Boop\n\n26) w00t: Sacrifice Y2 W00t\nDiscover Y1 Boop B3 Blue\nMove R1 Boop Blue\n\n27) bhorner: Move Y1 Plants Boop\n\n28) w00t: Discover G3 W00t R1 Another_bop\n\n29) bhorner: Discover G1 Big-bird Y2 Sticky-note\n\n30) w00t: Move Y2 W00t Another_bop\n\n31) bhorner: Sacrifice G2 Big-bird\nBuild Y3 Boop\nBuild R1 Bhorner\n\n32) w00t: Sacrifice Y2 Another_bop\nMove Y1 Blue Boop\nMove Y2 Rawr Boop\nCatastrophe Boop Yellow\n\n33) bhorner: Discover R1 Bhorner Y3 Big-bird\n\n34) w00t: Build Y1 W00t\n\n35) bhorner: Build Y1 Plants\n\n36) w00t: Move Y1 W00t Another_bop\n\n37) bhorner: Sacrifice G2 Boop\nBuild R2 Bhorner\nBuild R3 Big-bird\n\n38) w00t: Build Y2 Another_bop\n\n39) bhorner: Discover R1 Big-bird Y2 Stick-note\n\n40) w00t: Sacrifice G2 W00t\nBuild R3 Blue\nBuild G1 Another_bop\n\n41) bhorner: Build G1 Bhorner\n\n42) w00t: Move Y1 Another_bop Plants\n\n43) bhorner: Discover Y3 Plants B1 Grover\n\n44) w00t: Sacrifice R1 Blue\nAttack Y1 Plants\n\n45) bhorner: Build G2 Sticky-note\n\n46) w00t: Move G3 Another_bop Blue\n\n47) bhorner: Sacrifice G2 Sticky-note\nBuild R1 Big-bird\nBuild R3 Stick-note\n\n48) w00t: Build G2 Blue\n\n49) bhorner: Sacrifice Y3 Grover\nMove G1 Sticky-note Blue\nMove G1 Bhorner Blue\nCatastrophe Blue Green\nMove R2 Bhorner Plants\n\n50) w00t: Sacrifice Y2 Another_bop\nMove R3 Blue Another_bop\nMove R3 Another_bop Plants\n\tbhorner: I think it would be fun to test the system rendering, make an unrated game, where no one calls catastrophes, and put all pieces in a single system, just to see what it looks like.  :)\n\tDraw5PlayAll: I am up for that.\n\tbhorner: Whoah, that threw me, you are someone other than w00t right?  :)\n\tbhorner: I put in a challenge to you to try it.\n\n51) bhorner: Move R1 Stick-note Plants\n\n52) w00t: Discover R3 Plants B1 Bravelyrunaway\n\tw00t: lol... sly :)\n\n53) bhorner: Attack Y1 Plants\n\tbhorner: I couldn&#39;t believe you had turned that around on me, I was lucky to think of it rather than sly.  :)\n\n54) w00t: Move Y1 Plants Bravelyrunaway\n\n55) bhorner: Build Y2 Plants\n\n56) w00t: Sacrifice G1 Another_bop\nBuild Y2 W00t\n\tDraw5PlayAll: Green chat messages are spectators and red ones are players.\n\n57) bhorner: Discover R3 Stick-note Y3 Snuffy\n\n58) w00t: Trade Y2 G2 W00t\n\n59) bhorner: Discover Y1 Plants R1 Spark\n\n60) w00t: Sacrifice G2 W00t\nBuild Y2 W00t\nBuild Y2 Bravelyrunaway\n\n61) bhorner: Build G1 Bhorner\n\n62) w00t: Trade Y1 G1 Bravelyrunaway\n\n63) bhorner: Sacrifice G1 Bhorner\nBuild Y1 Spark\n\n64) w00t: Trade Y2 G2 W00t\n\n65) bhorner: Build Y2 Plants\n\n66) w00t: Discover R3 Bravelyrunaway B3 Nothing2see\n\tw00t: This game is madness!! OMG such fun :D\r\nI&#39;m pretty convinced you&#39;ve got me in a tight tight corner right now, though\n\n67) bhorner: Move R2 Plants Bravelyrunaway\n\n68) w00t: Sacrifice Y2 Bravelyrunaway\nMove R3 Nothing2see Spark\nMove R3 Spark Plants\n\tbhorner: I like Homeworlds, I haven&#39;t really played it much outside a small group of friends.  :)  I&#39;ve played here once in a while over the years, hopefully it sticks this time!\n\tw00t: I got introduced to Homeworlds on the tabletop through a buddy many moons ago... We&#39;ve both since moved away, and just barely returned here not too long ago... I&#39;m still dusting off my memory banks, but this game is so awesome that even if you&#39;re playing against someone who&#39;s &quot;better&quot; than you are, it&#39;s still going to be a fun game that anyone can win :D\n\n69) bhorner: Sacrifice Y2 Plants\nMove R2 Bravelyrunaway Plants\nDiscover R1 Big-bird Y2 Sticky-note\n\n70) w00t: Attack Y2 Plants\n\n71) bhorner: M R1 Sticky-note Plants\nCat Plants Red\n\n72) w00t: Build Y2 Plants\n\n73) bhorner: Build G1 Bhorner\n\n74) w00t: Build Y2 W00t\n\n75) bhorner: Discover Y1 Spark B3 Bubble\n\n76) w00t: Build G1 Bravelyrunaway\n\n77) bhorner: Build R1 Bhorner\n\n\nHomeworlds Online (SDG# 31283)\nVariants: &quot;Hard time&quot;\nStarted: 2017.1.29, Ended: 2017.2.9\nParticipants: bhorner (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\tAusmuh: hello, have a fun game!\n\n2) bhorner: Homeworld Y2 B1 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\tbhorner: You too, hope I can hold my own, it&#39;s been a long time!\n\n4) bhorner: Build G1 Bhorner\n\tAusmuh: Same here. I&#39;m only a couple games deep sense getting back into it. The one or two 48 hour games I&#39;ve done so far have been really enjoyable. I have a hard time remembering my plans if it goes much longer then that before I get a turn.\n\n5) Ausmuh: Discover B1 Ausmuh G2 Gwar\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) Ausmuh: Build B1 Ausmuh\n\n8) bhorner: Build Y1 Bhorner\n\n9) Ausmuh: Build B2 Gwar\n\n10) bhorner: Discover Y1 Bhorner G3 Plant\n\n11) Ausmuh: Trade B2 Y2 Gwar\n\n12) bhorner: Build G1 Bhorner\n\n13) Ausmuh: Build B2 Gwar\n\n14) bhorner: Sac G3 Bhorner\nBuild Y2 Plant\nBuild Y3 Plant\nBuild Y3 Bhorner\n\n15) Ausmuh: Build Y3 Gwar\n\n16) bhorner: Sacrifice Y1 Bhorner\nMove Y1 Plant Gwar\n\n17) Ausmuh: Trade Y3 R3 Gwar\n\n18) bhorner: Trade G1 R1 Bhorner\n\n19) Ausmuh: Attack Y1S Gwar\n\n20) bhorner: Discover Y3 Plant G2 Small-plant\n\n21) Ausmuh: Trade B3 G3 Ausmuh\n\n\tbhorner: Dang it.  Sorry about that.\n\tAusmuh: No worries! Maybe I should start making the 48 hour games non-rated. Next time! :) \n\nHomeworlds Online (SDG# 31298)\nStarted: 2017.1.31, Ended: 2017.2.15\nParticipants: w00t (S), alexhouston (N)\nWinner: w00t\n\n1) alexhouston: Homeworld Y2 B3 G3\n\n2) w00t: Homeworld G3 B1 Y3\n\n3) alexhouston: Build G1 Alexhouston\n\n4) w00t: Build Y1 W00t\n\n5) alexhouston: Build G1 Alexhouston\n\n6) w00t: Build Y1 W00t\n\n7) alexhouston: Discover G1 Alexhouston B1 Post\n\n8) w00t: Trade Y1 R1 W00t\n\n9) alexhouston: Trade G1 Y1 Alexhouston\n\n10) w00t: Discover Y1 W00t G2 Boop\n\n11) alexhouston: Build G1 Post\n\n12) w00t: Build R1 W00t\n\n13) alexhouston: Trade G1 R1 Post\n\n14) w00t: Move R1 W00t Boop\n\n15) alexhouston: Build R2 Post\n\n16) w00t: Build R2 Boop\n\n17) alexhouston: Build G1 Post\n\n18) w00t: Discover R2 Boop G3 Bop\n\n19) alexhouston: Move Y1 Alexhouston Post\n\n20) w00t: Trade R1 B1 W00t\n\n21) alexhouston: Move G1 Post Alexhouston\n\n22) w00t: Build B2 W00t\n\n23) alexhouston: Trade G3 B3 Alexhouston\n\n24) w00t: Move B2 W00t Boop\n\n25) alexhouston: Build B2 Alexhouston\n\n26) w00t: Discover B2 Boop Y1 Illuminati\n\n27) alexhouston: Move B2 Alexhouston Post\n\n28) w00t: Build Y2 W00t\n\n29) alexhouston: Move R2 Post Boop\n\n\n30) w00t: Sacrifice Y1 Boop\nDiscover R1 Boop G1 Run_away\n\n31) alexhouston: Build G2 Post\n\n32) w00t: Trade Y3 G3 W00t\n\n33) alexhouston: Build Y1 Post\n\n34) w00t: Build B2 W00t\n\n35) alexhouston: Build G2 Alexhouston\n\n36) w00t: Sacrifice B1 W00t\nTrade R1 B1 Run_away\n\n37) alexhouston: Trade B3 R3 Alexhouston\n\n38) w00t: Build B3 Run_away\n\n39) alexhouston: Move Y1 Post Boop\n\n40) w00t: Build B3 Run_away\n\n41) alexhouston: Move R2 Boop Illuminati\n\n42) w00t: Sacrifice B2 Illuminati\nTrade B3 R3 Run_away\nTrade B3 Y3 Run_away\n\n43) alexhouston: Sacrifice G2 Alexhouston\nBuild G2 Alexhouston\nBuild R1 Post\n\n44) w00t: Build R1 Run_away\n\n45) alexhouston: Sacrifice G2 Post\nBuild Y2 Post\nBuild Y3 Boop\n\n46) w00t: Sacrifice G3 W00t\nBuild R2 Run_away\nBuild R3 Bop\nBuild Y3 W00t\n\n47) alexhouston: Sacrifice Y2 Post\nMove R1 Post Boop\nMove R1 Boop Run_away\nCatastrophe Run_away Red\n\n48) w00t: Build Y2 Run_away\n\n49) alexhouston: Move B2 Post Boop\n\n50) w00t: Move Y2 Run_away Bop\n\n51) alexhouston: Move Y1 Boop W00t\n\n52) w00t: Trade Y3 R3 W00t\n\n53) alexhouston: Sacrifice G2 Alexhouston\nBuild G2 Alexhouston\nBuild Y3 Post\n\n54) w00t: Attack Y1 W00t\n\n55) alexhouston: Trade G2 B2 Alexhouston\n\n56) w00t: Build B3 Run_away\n\n57) alexhouston: Move B2 Alexhouston Illuminati\n\n58) w00t: Sacrifice B2 W00t\nTrade B1 R1 Run_away\nTrade R3 B3 Bop\n\n59) alexhouston: Build B1 Boop\n\n60) w00t: Move B3 Bop Illuminati\n\n61) alexhouston: Discover B2 Illuminati G2 Moon\n\n62) w00t: Sacrifice R1 Run_away\nAttack R2 Illuminati\n\n63) alexhouston: Sacrifice Y3 Boop\nMove B1 Boop W00t\nMove B2 Boop W00t\nMove B2 Moon W00t\nCatastrophe W00t B\n\n64) w00t: Sacrifice Y2 Bop\nMove Y3 Run_away Alexhouston\nMove B3 Run_away Alexhouston\n\n65) alexhouston: Attack Y3 Alexhouston\n\n66) w00t: Sacrifice R3 W00t\nAttack R3 Alexhouston\nAttack Y3 Alexhouston\nAttack G1 Alexhouston\n\n\tw00t: Thank you very much for the awesome game!! rematch any time :)\n\nHomeworlds Online (SDG# 30933)\nStarted: 2017.1.31, Ended: 2017.2.9\nParticipants: dragonlord (S), w00t (W), Draw5PlayAll (N), alexhouston (E)\nWinner: alexhouston\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: I believe this is just a last man standing. I have no idea how skilled any of the players are except dragon lord.\n\n2) alexhouston: Homeworld R3 B2 G3\n\tw00t: Honestly, I&#39;ve only played binary homeworlds... I&#39;m excited to see how this many players works out!\n\n3) dragonlord: Homeworld R3 G2 Y3 *\n\talexhouston: yeah my first time playing w 4 people\n\talexhouston: yeah my first time playing w 4 people\n\tDraw5PlayAll: So, we are going to have 2 players with the same homeworld star pattern. That, or someone chooses two same-sized stars.\r\n\r\nThen again, I am not sure what happens to dragonlord. He was inactive.\n\tDraw5PlayAll: Wait, so I am not sure how the turn order works. I think all uppercase names are first and then lowercase names, in alphabetical order. This is a flaw.\n\n4) w00t: Homeworld R2 Y1 G3 *\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) alexhouston: Build G1 Alexhouston\n\n7) w00t: Build G1 W00t\n\n8) alexhouston: Build G1 Alexhouston\n\n\nHomeworlds Online (SDG# 31305)\nVariants: &quot;Unrated&quot;\nStarted: 2017.1.31, Ended: 2017.2.6\nParticipants: w00t (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 G2 Y3\n\n2) w00t: Homeworld R3 Y1 G3 *\n\n3) fogus: Build Y1 Fogus\n\n4) w00t: Build G1 W00t\n\n5) fogus: Build Y1 Fogus\n\n6) w00t: Discover G1 W00t B2 Boop\n\n7) fogus: Discover Y1 Fogus G3 Orcus\n\n8) w00t: Build G1 W00t\n\n9) fogus: Build Y2 Orcus\n\n10) w00t: Build G1 Boop\n\n11) fogus: Trade Y3 G3 Fogus\n\n12) w00t: Build G2 Boop\n\n13) fogus: Build G2 Fogus\n\n14) w00t: Trade G2 Y2 Boop\n\n15) fogus: Discover G2 Fogus Y3 Acererak\n\n16) w00t: Move G1 Boop Acererak\n\n17) fogus: Discover G2 Acererak R2 Meph\n\n18) w00t: Move G1 Acererak Fogus\n\n19) fogus: Trade G3 R3 Fogus\n\n20) w00t: Sacrifice G3 W00t\nBuild G2 Fogus\nBuild G3 Fogus\nBuild G3 W00t\nCatastrophe Fogus Green\n\n21) fogus: Build G1 Meph\n\n22) w00t: Build G2 Boop\n\tw00t: I&#39;m not 100% certain I should be able to make that move.... Is it legal to not call my catastrophe until after I build my third g3, or is it mandatory for the catastrophe to occur before I continue building?\n\n23) fogus: Sacrifice Y2 Orcus\nMove G1 Meph W00t\nMove G2 Meph W00t\nCatastrophe W00t G\n\tfogus: It seems ok to me.... so to speak. :)\n\n\tDraw5PlayAll: You can call catastrophe at any time on your turn, and you need not wait.\r\n\r\nAlso, you could do (assuming 2 reds at system X) sac Y3, move R1 to X, move R1 to X, catastrophe, move R3 to X.\n\tw00t: I get all that, but if I was sitting across the table from an opponent the catastrophe would have been called as soon as I built that second green ship in the fogus system, so my last build would have been a g1 instead of the g3 I was able to build\n\tDraw5PlayAll: Sure. You can also do it later if you want.\n\tDraw5PlayAll: In fact, a while back the rule was you could *only* call catastrophe at the end... but now it is completely flexible.\r\n\r\nAnother situation: you need to access the enemy&#39;s homeworld but the ONLY way in is through a system with 3 of the color you want. You can breeze through it, as if the radiation levels were not present long enough...\n\tfogus: Thank you for the game.  \n\tw00t: :o  How did I miss that?\r\nThat was a very fun game!  Rematch anytime :)\n\nHomeworlds Online (SDG# 31313)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.2, Ended: 2017.2.16\nParticipants: Draw5PlayAll (S), w00t (N)\nWinner: Draw5PlayAll\n\n1) w00t: Homeworld R3 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\tw00t: There are no challenges because they keep getting accepted!  I&#39;ve been loving how active these homeworld games have been since I returned!\n\tDraw5PlayAll: Hmmm... never thought of that. I have seen many other dead games with no challenges, and stuff.\n\tDraw5PlayAll: I was about to type homeworld B3 R1 G3... realized you took the goldilocks\n\n3) w00t: Build G1 W00t\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\tw00t: I&#39;ve never seen anyone start with so much blue... You&#39;ve got lots of time to stabilize, so I&#39;m sure you&#39;re not worried, but I&#39;m intrigued by your start :) \n\n5) w00t: Trade G1 Y1 W00t\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) w00t: Build Y1 W00t\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) w00t: Discover Y1 W00t G2 Boop\n\n10) Draw5PlayAll: Discover B2 Draw5playall G3 G3\n\n11) w00t: Build Y1 Boop\n\n12) Draw5PlayAll: Build B2 G3\n\n13) w00t: Discover Y1 Boop B3 O_o\n\n14) Draw5PlayAll: Build B2 Draw5playall\n\n15) w00t: Discover Y1 Boop B3 Blue\n\n16) Draw5PlayAll: Build B3 G3\n\n17) w00t: Build Y2 W00t\n\n18) Draw5PlayAll: Trade B3 Y3 G3\n\n19) w00t: Sacrifice Y2 W00t\nDiscover Y1 W00t G2 Temp\nDiscover Y1 Temp B3 Yoink\n\n20) Draw5PlayAll: Build Y2 G3\n\tDraw5PlayAll: !!!\n\n21) w00t: Build G1 W00t\n\tDraw5PlayAll: Invasion crew, we have a new ission.\n\n22) Draw5PlayAll: Build Y2 Draw5playall\n\n23) w00t: Trade Y1 G1 Yoink\n\n24) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n25) w00t: Build G1 Yoink\n\n26) Draw5PlayAll: Trade B2 R2 G3\n\n27) w00t: Trade G1 Y1 Yoink\n\n28) Draw5PlayAll: Build R1 G3\n\n29) w00t: Build Y2 Yoink\n\tDraw5PlayAll: Your blues will fall to me.\n\n30) Draw5PlayAll: Build B2 G3\n\n31) w00t: Sacrifice G1 W00t\nBuild Y2 Blue\n\n32) Draw5PlayAll: Move Y3 Draw5playall O_o\n\n33) w00t: Build G1 Yoink\n\tDraw5PlayAll: Ha ha.\n\n34) Draw5PlayAll: Sacrifice Y2 G3\nMove G2 Draw5playall Blue\nMove Y3 G3 Draw5playall\n\tDraw5PlayAll: I guess I am just taunting you now.\n\n35) w00t: Sacrifice Y2 Blue\nMove Y1 Blue Draw5playall\nMove Y1 O_o Draw5playall\n\tw00t: You definitely have the upper hand in this game... I was trying too hard to keep you away from the b3&#39;s and just let you build an army o_O\n\n36) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\tDraw5PlayAll: I considered sending the G3 to a Y3 but realized the sacrifice of a Y2 kept you from growing the Y3.\n\n37) w00t: Trade Y1 G1 Draw5playall\n\tw00t: I did want that y3\n\n38) Draw5PlayAll: Sacrifice G2 Blue\nBuild B3 G3\nBuild Y1 O_o\n\tDraw5PlayAll: You are getting away with nothing.\n\n39) w00t: Sacrifice Y2 Yoink\nMove G1 Yoink Draw5playall\nMove G1 Yoink Draw5playall\nCatastrophe Draw5playall Green\n\n40) Draw5PlayAll: Attack Y1N Draw5playall\n\tDraw5PlayAll: I got a B3, and you will never get that 4th blue ever!\n\n41) w00t: Build G1 W00t\n\tDraw5PlayAll: Fell right into my trap.\n\n42) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n43) w00t: Trade G1 Y1 W00t\n\n44) Draw5PlayAll: Sacrifice Y1 O_o\nD B3 G3 G2 G2\n\tw00t: right... trap... admittedly, your fleet is one to be feared; and now you are a single hop from my homeworld\n\n45) w00t: Build Y1 W00t\n\tDraw5PlayAll: No... I still need two moves. If you wanted distance you took out the right star.\n\n46) Draw5PlayAll: Sacrifice Y3 O_o\nMove R3 Draw5playall G2\nMove R3 G2 W00t\nMove B3 G2 W00t\n\tw00t: uhh.. right... that&#39;s what I was saying... like it&#39;d take a y2 to hop once to a temporary star before you can reach mean... instead of two hops... I guess I just picture it differently :)\n\tw00t: *mine\n\n47) w00t: Trade G3 B3 W00t\n\n48) Draw5PlayAll: Sacrifice R3 W00t\nAttack B3 W00t\nAttack Y1 W00t\nAttack Y1 W00t\n\tDraw5PlayAll: I leaked a blue so this makes me slightly nervous...\n\tw00t: yeah... you&#39;ve got the attack ability to back that up... I&#39;m trying to come up with a clever solution :)\n\n\tw00t: I choose that move solely so I can say you didn&#39;t lock me out of blue the entire game :D\n\tw00t: Very fun game :) I&#39;ll post a new challenge if you&#39;re down for a rematch\n\tDraw5PlayAll: Too little, WAY too late. How many movies or other stories end where the guy gets his/her life wish or something right before dying?\r\n\r\nAnd I took your blue back anyway.\r\n\r\nI think the game would have been a lot more competitive had you traded for a B3 instead of discovering all those systems.\n\tw00t: I took a gamble, and it didn&#39;t pay off... &gt;&gt;shrug&lt;&lt; still fun to try different tactics\n\nHomeworlds Online (SDG# 31346)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.4, Ended: 2017.2.9\nParticipants: foksieloy (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) foksieloy: Homeworld B1 Y2 G3\n\n3) Babamots: Build G1 Babamots\n\tfoksieloy: Hi! Good luck, have fun!\n\tBabamots: Thanks! You too!\n\n4) foksieloy: Build G1 Foksieloy\n\tBabamots: And thanks for the game. I&#39;m trying to figure out where I belong in the stack.\n\n5) Babamots: Trade G1 Y1 Babamots\n\tfoksieloy: Have you played often? With friends? Online?\n\tBabamots: I&#39;ve only played a handful of times, mostly here on SDG.\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\tBabamots: I think the main trick to the game is patience to study a position carefully. Even Andy seems to lose by not recognizing when death is imminent.\n\n7) Babamots: Build G1 Babamots\n\n8) foksieloy: Build G1 Foksieloy\n\tfoksieloy: Manage the stash, that is the main thing. Deny colors. :)\n\n9) Babamots: Discover G1 Babamots B2 Iconia\n\n10) foksieloy: Discover G1 Foksieloy B3 Annie\n\n11) Babamots: Build G1 Babamots\n\n12) foksieloy: Build G2 Annie\n\n13) Babamots: Discover G1 Babamots B2 Vandros\n\n14) foksieloy: Trade G2 R2 Annie\n\tfoksieloy: trade g2 r2 annie\n\tfoksieloy: damn wrong window :D\n\n15) Babamots: Build G2 Babamots\n\n16) foksieloy: Build G2 Annie\n\tBabamots: Someone has been broadcasting your fleet&#39;s orders to the enemy. Maybe you&#39;ve got a infiltrator?\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Iconia\nBuild G3 Vandros\nBuild G3 Babamots\n\tfoksieloy: Infiltrator taken care of, has been fired into the Annie star.\n\n18) foksieloy: Trade G2 Y2 Annie\n\n19) Babamots: Trade G1 R1 Iconia\n\n20) foksieloy: Discover G1 Annie B1 Tibbers\n\n21) Babamots: Trade G1 Y1 Vandros\n\n22) foksieloy: Build G1 Foksieloy\n\tBabamots: Oh, you moved to a small system, not a medium. I don&#39;t like my move so much anymore.\n\n23) Babamots: Discover G3 Vandros B3 Celtris\n\tBabamots: I don&#39;t remember if I&#39;ve ever seen anyone move to a system that wasn&#39;t connected to any homeworld.\n\tDraw5PlayAll: One or two happened in the Homeworlds Demo Game, in the 25000s between ts52 and MagicJohn.\n\n24) foksieloy: Sacrifice G1 Foksieloy\nBuild Y2 Annie\n\tfoksieloy: Sorry for waiting, I was sure I posted my move this morning but seems internet wasn&#39;t cooperating with me.\n\n25) Babamots: Sacrifice G3 Babamots\nBuild Y3 Babamots\nBuild Y3 Vandros\nBuild G1 Celtris\n\n26) foksieloy: Discover Y1 Foksieloy Y3 Teemo\n\n27) Babamots: Sacrifice Y1 Babamots\nMove G3 Celtris Foksieloy\n\n28) foksieloy: Trade G3 R3 Foksieloy\n\tBabamots: I&#39;m pretty sleepy, so I hope I haven&#39;t made a calculation error.\n\n29) Babamots: Sacrifice R1 Iconia\nAttack R3S Foksieloy\n\tBabamots: Shoot, I missed that little guy on Tibbers. Quite a nuisance.\n\tBabamots: Sorry about that. I&#39;ll have to come back to it in the morning.\n\n\tfoksieloy: GG\n\tBabamots: Good game. Thanks again!\n\nHomeworlds Online (SDG# 31314)\nVariants: &quot;Sinister, Hard time&quot;\nStarted: 2017.2.5, Ended: 2017.3.17\nParticipants: w00t (S), Draw5PlayAll (N), Ausmuh (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Ausmuh: Homeworld G3 Y2 B3\n\n3) w00t: Homeworld G2 B1 R3\n\tAusmuh: Should be interesting\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Ausmuh: Build B1 Ausmuh\n\n6) w00t: Build R1 W00t\n\tAusmuh: So the circle of carnage is ausmuh kills w00t kills Draw5PlayAll? (With me winning at the end of course.)\n\tDraw5PlayAll: The game ends once one of those three things happens. So if w00t gets me out, then w00t wins.\r\n\r\nThat being said, Sinister is broken in the sense that someone can simply resign (or if they want, make one move and then resign) when they are about to be defeated.\n\tAusmuh: Got ya. Thanks!\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Ausmuh: Trade B1 R1 Ausmuh\n\n9) w00t: Build R1 W00t\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) Ausmuh: Build B1 Ausmuh\n\n12) w00t: Trade R1 Y1 W00t\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) Ausmuh: Discover B1 Ausmuh G1 Zang\n\n15) w00t: Discover R1 W00t Y3 Unf\n\n16) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n17) Ausmuh: Trade B1 Y1 Zang\n\n18) w00t: Build R1 W00t\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) Ausmuh: Build B1 Ausmuh\n\n21) w00t: Build R2 W00t\n\n22) Draw5PlayAll: Build B1 G2\n\n\tDraw5PlayAll: Hi\n\nHomeworlds Online (SDG# 31333)\nStarted: 2017.2.6, Ended: 2017.3.2\nParticipants: fogus (S), w00t (N)\nWinner: fogus\n\n1) w00t: Homeworld R3 Y1 G3 *\n\tfogus: Hello again!\n\n2) fogus: Homeworld B2 G3 Y3\n\tw00t: \n\tw00t: huzzah! rematch! :D  Good luck\n\n3) w00t: Build G1 W00t\n\n4) fogus: Build Y1 Fogus\n\n5) w00t: Discover G1 W00t B2 Star\n\n6) fogus: Build Y1 Fogus\n\n7) w00t: Build G1 W00t\n\n8) fogus: Trade Y3 G3 Fogus\n\n9) w00t: Build G1 W00t\n\n10) fogus: Build G2 Fogus\n\n11) w00t: Build G2 Star\n\n12) fogus: Trade G3 Y3 Fogus\n\n13) w00t: Discover G1 W00t B2 Otherstar\n\n14) fogus: Trade Y1 R1 Fogus\n\n15) w00t: Trade G2 Y2 Star\n\tw00t: hehe... I almost effed that up pretty good :)\n\tfogus: :)\n\n16) fogus: Discover G2 Fogus B1 Carp\n\n17) w00t: Build G2 Otherstar\n\n18) fogus: Sacrifice Y1 Fogus\nDiscover G2 Carp Y2 Pike\n\n19) w00t: Trade G1 B1 Otherstar\n\n20) fogus: Build G1 Pike\n\n21) w00t: Sacrifice B1 Otherstar\nTrade G1 B1 W00t\n\n22) fogus: Build Y1 Fogus\n\n23) w00t: Discover G1 Star Y1 Unf\n\n24) fogus: Build Y2 Fogus\n\n25) w00t: Sacrifice G2 Otherstar\nBuild Y3 Star\nBuild G1 Unf\n\n26) fogus: Move R1 Fogus Unf\n\n27) w00t: Sacrifice Y2 Star\nMove G1 Unf Fogus\nMove G1 Unf Fogus\n\n28) fogus: Sacrifice Y2 Fogus\nMove G2 Pike W00t\nMove G1 Pike W00t\n\n29) w00t: Trade G3 B3 W00t\n\tw00t: not sure why I haven&#39;t caused a catastrophe on your yellow ships... Not gonna take the move back because I legit didn&#39;t see that I could&#39;ve done that until after I&#39;d committed to this move\n\n30) fogus: Attack B1 W00t\n\n31) w00t: Attack G2 W00t\n\n32) fogus: Build B1 W00t\n\n33) w00t: Trade B3 R3 W00t\n\n34) fogus: Build G2 W00t\n\n35) w00t: Sacrifice G2 W00t\nBuild G2 Fogus\nBuild Y2 Star\nCatastrophe Fogus Green\n\n36) fogus: Trade G1 R1 W00t\n\n37) w00t: Move Y3 Star W00t\n\n38) fogus: Build R1 W00t\nCatastrophe W00t R\n\n39) w00t: Trade Y2 B2 Star\n\n40) fogus: Trade G2 Y2 W00t\n\tw00t: I am so doomed!! :)\n\n41) w00t: Sacrifice B2 Star\nTrade Y3 R3 W00t\nPass\n\n42) fogus: Move R1 Unf Fogus\n\n43) w00t: Attack Y2 W00t\n\n44) fogus: Trade B1 Y1 W00t\n\n45) w00t: Discover Y2 W00t G3 Doom\n\n46) fogus: Move Y1 Fogus W00t\n\n47) w00t: Attack Y1 W00t\n\n48) fogus: Move Y3 Fogus W00t\nCatastrophe W00t Y\n\n\tw00t: apologies for the delay at the end there... thank you for the mighty fun game :D\n\tDraw5PlayAll: Four pieces remain in play. That is destruction.\n\nHomeworlds Online (SDG# 31386)\nStarted: 2017.2.8, Ended: 2017.4.14\nParticipants: alexhouston (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) alexhouston: Homeworld R3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tts52: Sorry for the undo. I try not to take a s/m homeworld with people I haven&#39;t played often, and just forgot. Have a good game.\n\n4) alexhouston: Build G1 Alexhouston\n\n5) ts52: Trade G1 B1 Ts52\n\n6) alexhouston: Build G1 Alexhouston\n\n7) ts52: Build B1 Ts52\n\n8) alexhouston: Trade G1 Y1 Alexhouston\n\n9) ts52: Build G1 Ts52\n\n10) alexhouston: Build Y1 Alexhouston\n\n11) ts52: Discover B1 Ts52 G2 Kermit\n\n12) alexhouston: Discover Y1 Alexhouston R1 Boop\n\n13) ts52: Build B2 Kermit\n\n14) alexhouston: Move G1 Alexhouston Boop\n\n15) ts52: Build B2 Ts52\n\n16) alexhouston: Build Y1 Boop\n\n17) ts52: Build B3 Kermit\n\n18) alexhouston: Move Y1 Boop Kermit\n\n19) ts52: Trade B3 R3 Kermit\n\n\nHomeworlds Online (SDG# 31390)\nStarted: 2017.2.9, Ended: 2017.5.24\nParticipants: w00t (S), alexhouston (W), dragonlord (N), Draw5PlayAll (E)\nWinner: Draw5PlayAll\n\n1) dragonlord: Homeworld R1 G2 Y3 *\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) w00t: Homeworld G3 Y2 B3\n\n4) alexhouston: Homeworld R3 B2 G3\n\n5) dragonlord: Build Y1 Dragonlord\n\tw00t: hehe... didn&#39;t mean to do banker\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) w00t: Build B1 W00t\n\n8) alexhouston: Build G1 Alexhouston\n\n9) dragonlord: Discover Y1 Dragonlord B3 Icerealm\n\n10) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n11) w00t: Trade B1 Y1 W00t\n\n12) alexhouston: Trade G1 Y1 Alexhouston\n\n13) dragonlord: Trade Y1 B1 Icerealm\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) w00t: Build B1 W00t\n\n16) alexhouston: Build Y1 Alexhouston\n\n17) dragonlord: Build Y1 Dragonlord\n\n18) Draw5PlayAll: Build Y2 Draw5playall\n\n19) w00t: Build Y2 W00t\n\n20) alexhouston: Build Y2 Alexhouston\n\n21) dragonlord: Move Y1 Dragonlord Icerealm\n\n22) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n23) w00t: Discover Y1 W00t R1 Doom\n\talexhouston: my bad on the undo, just redid the original move\n\n24) alexhouston: Discover Y1 Alexhouston B1 Post\n\n25) dragonlord: Move B1 Icerealm Dragonlord\n\tDraw5PlayAll: W00t, you can cripple Alex Houston... sac the Y2 and move your Y1 into his homeworld!\n\tw00t: that cripples me just a much as it doe him o_O\n\n26) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Argh, well then go and do your business normally.\n\n27) w00t: Trade B1 R1 W00t\n\n28) alexhouston: Build G1 Alexhouston\n\n29) dragonlord: Build B1 Dragonlord\n\n30) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n31) w00t: Trade Y2 G2 W00t\n\n32) alexhouston: Build G1 Alexhouston\n\n33) dragonlord: Trade B1 G1 Dragonlord\n\n34) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Not this again!\n\n35) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tDraw5PlayAll: What time is it? Time for your empire to cease to exist.\n\n36) dragonlord: Move G1 Dragonlord Icerealm\n\n37) Draw5PlayAll: Move Y1 Draw5playall G2\n\tDraw5PlayAll: w00t is inactive...\n\tDraw5PlayAll: Next time I start a 4P game I will include only Felix, ts52, and NYC Avri.\n\tdragonlord: He has 8 days left on his time\n\tDraw5PlayAll: And was last active two weeks ago.\n\tLaurie_Menke: Hi everyone... I just wanted to let you know that I&#39;m making a list of games to ask Aaron to end due to abandonment.  I know you are all fairly currently active on SDG, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that&#39;s the right thing to do.  :)\n\tdragonlord: Please don&#39;t add this to the list of abandoned games.\n\tDraw5PlayAll: Yeah, we can just boot the one player and continue.\n\tDraw5PlayAll: So that explains how come I got about 10 monitored Homeworlds game with a new chat message.\r\n\r\nDid you use an automated script to write those comments?\n\tLaurie_Menke: OK... you got it!  :)  Have fun!  :)   (And no, Draw5PlayAll... I just copied and pasted, but changed the names.)\n\n38) dragonlord: Build Y2 Icerealm\n\tDraw5PlayAll: He&#39;s dead, Jim...\n\tdragonlord: should we force alexhouston to resign?\n\tDraw5PlayAll: Give him... nah, I will do the honors.\n\n39) Draw5PlayAll: Build B1 G2\n\n40) dragonlord: Trade Y1 R1 Icerealm\n\tDraw5PlayAll: gives you four days\n\tdragonlord: explain the vote please?\n\n41) Draw5PlayAll: Move Y1 G2 Doom\n\tDraw5PlayAll: Just read the wiki...\n\n42) dragonlord: Build R2 Icerealm\n\n43) Draw5PlayAll: Attack Y1S Doom\n\n44) dragonlord: Move R2 Icerealm G2\n\n45) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack R2N G2\nPass\n\n46) dragonlord: Build R2 Icerealm\n\n47) Draw5PlayAll: Move Y1 Doom Alexhouston\n\n\tDraw5PlayAll: ???\n\nHomeworlds Online (SDG# 31366)\nVariants: &quot;Unrated&quot;\nStarted: 2017.2.11, Ended: 2017.2.22\nParticipants: Draw5PlayAll (S), fogus (N)\nWinner: Draw5PlayAll\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n3) fogus: Build G1 Fogus\n\tDraw5PlayAll: We have successfully landed in a system. The small blue planet bears striking resemblance to our enemy&#39;s...\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) fogus: Trade G3 B3 Fogus\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) fogus: Discover B3 Fogus Y3 Whynot\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) fogus: Build G1 Fogus\n\tDraw5PlayAll: Do it! Do it! Do it!\n\n10) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n11) fogus: Build G1 Fogus\n\n12) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R2 Draw5playall Whynot\nMove R2 Whynot Fogus\nPass\n\tDraw5PlayAll: This will be over soon.\n\n13) fogus: Trade G1 R1 Fogus\n\n14) Draw5PlayAll: Attack R1 Fogus\n\n15) fogus: Trade G1 R1 Fogus\n\n16) Draw5PlayAll: Sacrifice R2 Fogus\nAttack R1N Fogus\nAttack G1N Fogus\n\tDraw5PlayAll: Good game.\n\tfogus: You&#39;re being kind.  But it was fun to find out (the hard way) the downside of leaving a HW without a large.  :)  Thanks for the game.\n\n\nHomeworlds Online (SDG# 31334)\nStarted: 2017.2.16, Ended: 2017.3.27\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Draw5PlayAll\n\n1) Felix: Homeworld B1 R3 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\n3) Felix: Build G1 Felix\n\tFelix: Good luck and have fun!\n\tDraw5PlayAll: Are you laying a trap?\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\tFelix: No? Are you?\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\tDraw5PlayAll: I thought you were the one who actually told me about this strategy.\n\n7) Felix: Build Y1 Felix\n\tFelix: Oh, I did, haha. But I didn&#39;t know you were going to use it. I&#39;m not laying a trap :P\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) Felix: Discover Y1 Felix G2 Out\n\n10) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n11) Felix: Build Y1 Out\n\n12) Draw5PlayAll: Build B2 Draw5playall\n\n13) Felix: Build Y2 Felix\n\n14) Draw5PlayAll: Move R2 Draw5playall Out\n\n15) Felix: Move Y1 Out Draw5playall\n\n16) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\n17) Felix: Sacrifice G3 Felix\nBuild Y2 Draw5playall\nBuild Y2 Out\nBuild Y3 Felix\n\n18) Draw5PlayAll: Attack Y2N Out\n\n19) Felix: Trade Y3 G3 Felix\n\n20) Draw5PlayAll: Sacrifice R2 Out\nAttack Y1 Out\nAttack Y2 Draw5playall\n\n21) Felix: Build Y3 Draw5playall\n\n22) Draw5PlayAll: Attack Y3 Draw5playall\n\tDraw5PlayAll: I would have traded the Y2 for a B2 and blown half my system...\n\tDraw5PlayAll: Well, your system, Since in this hypothetical universe you have the blue dominance.\n\tFelix: If I had done so, you could have destroyed me since I only had yellow at home.\n\n23) Felix: Build Y3 Draw5playall\nCatastrophe Draw5playall Yellow\n\tDraw5PlayAll: Really?\n\n24) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n25) Felix: Trade Y2 B2 Felix\n\n26) Draw5PlayAll: Build B2 Draw5playall\n\tFelix: Really really.\n\n27) Felix: Build G1 Felix\n\tDraw5PlayAll: I have more ships\n\n28) Draw5PlayAll: Move B2 Draw5playall Out\n\n29) Felix: Trade G1 R1 Felix\n\n30) Draw5PlayAll: Build R1 Draw5playall\n\n31) Felix: Discover B2 Felix G2 Rim\n\n32) Draw5PlayAll: Move R1 Draw5playall Out\n\n33) Felix: Build G1 Felix\n\n34) Draw5PlayAll: Build R1 Out\n\n35) Felix: Move R1 Felix Rim\n\n36) Draw5PlayAll: Build R2 Draw5playall\n\n37) Felix: Build R2 Rim\n\n38) Draw5PlayAll: Build R2 Out\n\n39) Felix: Trade R2 Y2 Rim\n\n40) Draw5PlayAll: Move R1 Out Felix\n\n41) Felix: Build R2 Rim\n\n42) Draw5PlayAll: Trade R2 G2 Draw5playall\n\n43) Felix: Move R1 Rim Draw5playall\n\n44) Draw5PlayAll: Attack R1 Draw5playall\n\n45) Felix: Build R2 Rim\n\n46) Draw5PlayAll: Sac Y2 Draw5playall\nMove R1 Felix Rim\nMove R1 Draw5playall Rim\nCatastrophe Rim Red\n\n47) Felix: Build B2 Rim\n\tDraw5PlayAll: In case you forgot about my little guy... now you will not.\n\n48) Draw5PlayAll: Build B3 Out\n\n49) Felix: Move B2 Rim Draw5playall\n\tFelix: I did not forget!\n\n50) Draw5PlayAll: Trade B1 R1 Draw5playall\n\tDraw5PlayAll: It seems like we looped.\n\n51) Felix: Build B1 Rim\n\n52) Draw5PlayAll: Attack B2 Draw5playall\n\n53) Felix: Sacrifice Y2 Rim\nMove B1 Rim Draw5playall\nMove B2 Rim Draw5playall\nCatastrophe Draw5playall Blue\n\n54) Draw5PlayAll: Sacrifice Y1 Out\nD R3 Draw5playall Y2 Y2\n\n55) Felix: Trade G1 R1 Felix\n\n56) Draw5PlayAll: Sacrifice Y2 Out\nMove R3 Y2 Felix\nMove B3 Out Felix\n\tFelix: Crud. I meant to build that b1 in your homeworld. Should have been more careful.\n\n57) Felix: Attack B3 Felix\n\n58) Draw5PlayAll: Sacrifice R2 Out\nAttack G3 Felix\nAttack B3 Felix\n\n\tDraw5PlayAll: I noticed how my homeworld looked and wondered... have there been any games where both sides were reduced to only green and red and could not do anything of value?\n\tFelix: The opportunity didn&#39;t present itself until after you moved your R3 out. Had I built the b1 in your homeworld, I needn&#39;t have sacked my y2, so I could have used it to move my G3 directly to your home. You could have done nothing to stop me from building another green and finishing off your homeworld.\n\tDraw5PlayAll: Oh, in that case I simply would not have moved the R3.\n\tFelix: If you had seen the danger :)\n\tDraw5PlayAll: Well, I was nervous about moving the R3 anyway, and even feared you could do something to win, but then I realized you could not. Especially considering that G2 in there...\n\tDraw5PlayAll: I think that was the first time I ever won against you.\n\tFelix: Yes, well done! You&#39;ve improved quite a bit. Looking forward to a rematch.\n\nHomeworlds Online (SDG# 31445)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.17, Ended: 2017.2.20\nParticipants: Salmonax (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 31400)\nStarted: 2017.2.17, Ended: 2017.3.12\nParticipants: Draw5PlayAll (S), Ddrowan (N)\nWinner: Draw5PlayAll\n\n1) Ddrowan: Homeworld G3 Y1 B3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) Ddrowan: Build B1 Ddrowan\n\tDdrowan: Hey, I&#39;m new to the site and I&#39;m having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Hey, I&#39;m new to the site and I&#39;m having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Hey, I&#39;m new to the site and I&#39;m having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Hey, I&#39;m new to the site and I&#39;m having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Woah sorry about that...system malfunction \n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I think you figured it out. Your homeworld name is your username and everything else is the name you give it when you discover it.\n\n5) Ddrowan: Discover B1 Ddrowan G2 Hercules\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Ddrowan: Build B1 Hercules\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Ddrowan: Trade B1 Y1 Hercules\n\n10) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n11) Ddrowan: Trade B1 R1 Hercules\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) Ddrowan: Build Y2 Hercules\n\n14) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n15) Ddrowan: Build R1 Hercules\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Ddrowan: Discover R1 Hercules Y3 Cerillion\n\n18) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n19) Ddrowan: Trade B3 G3 Ddrowan\n\n20) Draw5PlayAll: Move R2 Draw5playall Cerillion\n\tDraw5PlayAll: You just froze yourself out of blue...\n\n21) Ddrowan: Discover Y1 Hercules B1 Redemption\n\tDdrowan: Dang, you&#39;re right...this is my first game against an actual person so I apologize, I&#39;m stil learning a bit...I&#39;m willing to play it out if you want\n\n22) Draw5PlayAll: Attack R1 Cerillion\n\tDraw5PlayAll: See, now you trade the Y1 into a B1 and get back in the economy.\r\n\r\nIf you need, you can sac the B1 and trade something else into blue later.\n\n23) Ddrowan: Trade Y1 B1 Redemption\n\n24) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade R2 B2 Cerillion\n\tDdrowan: Thanks, I&#39;m glad that my play did work the way I had thought it would\n\n25) Ddrowan: Build R2 Hercules\n\n26) Draw5PlayAll: Build G1 Draw5playall\n\n\nHomeworlds Online (SDG# 31447)\nStarted: 2017.2.18, Ended: 2017.3.6\nParticipants: Ddrowan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n\tFelix: Hello, have fun!\n\nHomeworlds Online (SDG# 31455)\nStarted: 2017.2.18, Ended: 2017.3.6\nParticipants: Felix (S), Ddrowan (N)\nWinner: Felix\n\n1) Ddrowan: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld R1 B2 G3\n\n3) Ddrowan: Build G1 Ddrowan\n\n4) Felix: Build G1 Felix\n\n\nHomeworlds Online (SDG# 31456)\nStarted: 2017.2.18, Ended: 2017.3.15\nParticipants: Ausmuh (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) Ausmuh: Homeworld B2 R1 G3\n\n3) Felix: Build G1 Felix\n\tFelix: Good luck and have fun :)\n\n4) Ausmuh: Build G1 Ausmuh\n\tAusmuh: Thanks you too!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Ausmuh: Trade G1 Y1 Ausmuh\n\n7) Felix: Build G1 Felix\n\n\nHomeworlds Online (SDG# 31467)\nStarted: 2017.2.18, Ended: 2017.5.9\nParticipants: fogus (S), SoaringPilot (N)\nWinner: fogus\n\n1) SoaringPilot: Homeworld R3 B2 G3\n\n2) fogus: Homeworld B1 G2 Y3\n\n3) SoaringPilot: Build G1 Soaringpilot\n\n4) fogus: Build Y1 Fogus\n\tSoaringPilot: So given this is a learning game, and we&#39;ve both established our homeworlds, may I ask why you built it that way?\n\tSoaringPilot: PM if you prefer, since apparently there&#39;s an audience :-o \n\n5) SoaringPilot: Trade G1 Y1 Soaringpilot\n\tfogus: I built that way for two reasons: to keep you far away (based on connections) and because I&#39;ve been playing around with the Y3 opening recently.  It hasn&#39;t worked well for me so far I&#39;ll admit.  :)\n\tSoaringPilot: haha fair enough :)\n\n6) fogus: Trade Y1 G1 Fogus\n\n7) SoaringPilot: Build Y1 Soaringpilot\n\n8) fogus: Trade G1 B1 Fogus\n\tSoaringPilot: I&#39;m not entirely sure what to do in the early game because there&#39;s nothing to react to. So, make a bunch of ships, and make them at a safe distance from the homeworld.\n\n9) SoaringPilot: Discover Y1 Soaringpilot G1 Wolf359\n\tfogus: Opening &quot;theory&quot; is definitely not my strong suit.  I try to look out for problems getting shut out of certain colors mostly and also try to keep a mix of colors in play.  It&#39;s a delicate balance I&#39;ve found.\n\tSoaringPilot: Oh this was dumb. I didn&#39;t need to make a second yellow ship in my home system. I could have made any colour and still been able to move out of the system because of the other yellow ship. Ugh. Oh well.\n\n10) fogus: Build B1 Fogus\n\n11) SoaringPilot: Build G1 Soaringpilot\n\tfogus: That&#39;s is not too bad because you currently have a lead in yellow and I&#39;m hesitant to make another Y1 because that would let you get into the Y2s first.\n\tSoaringPilot: Oh that&#39;s diabolical. I can&#39;t build blue ships right now so you&#39;re completely safe to build the last small one.\n\n12) fogus: Discover B1 Fogus G3 Plop\n\n13) SoaringPilot: Trade G1 R1 Soaringpilot\n\tfogus: I could, but I have to get into a safe system to build which gives you a moment to react to my blue rush.\n\tSoaringPilot: Yeah that was a juicy-looking Bluebird situation if only I had a blue ship :P\n\n14) fogus: Build B2 Plop\n\tSoaringPilot: Oh that&#39;s a cool thing with a green star and a blue ship. Green lets you build more things, blue lets you trade them. I&#39;ll have to keep that in mind in future games. I suppose you could also do it with a blue star and a green ship.\n\n15) SoaringPilot: Move R1 Soaringpilot Wolf359\n\tfogus: I like the potential of my opening system, but I haven&#39;t quite figured it out yet.  \n\n16) fogus: Trade B2 R2 Plop\n\tSoaringPilot: Yeah it seems very flexible. Mine is mainly about defence.\n\n17) SoaringPilot: Build R1 Wolf359\n\n18) fogus: Build B2 Plop\n\tSoaringPilot: Let&#39;s hope gathering the fleet at Wolf 359 works better here than it did in Star Trek.\n\n19) SoaringPilot: Build G1 Soaringpilot\n\tfogus: I don&#39;t think I saw that one.  :(\n\tSoaringPilot: The episode is Best of Both Worlds (Part 1 and 2) when Capt. Picard gets captured by the Borg.\n\tSoaringPilot: The number of blue ships you have does not make be feel good at all.\n\n20) fogus: Build B2 Fogus\n\n21) SoaringPilot: Move G1 Soaringpilot Wolf359\n\tfogus: Right, this is a blue rush.  The only way to avoid a shut out is to trade for a blue.  This&#39;ll keep me from getting them all.\n\tSoaringPilot: Oh that&#39;s what you meant earlier. OK.\r\nI thought about trading earlier, when you snagged the last blue and I realized what a pickle I was in. But I&#39;d have to trade my green large. And then I&#39;ll have to choose between making myself vulnerable to a catastrophe at home, and not having a Large at home. Ugh.\n\tSoaringPilot: *the last small blue, I mean\n\tfogus: It&#39;s a tight spot for sure.  Try to think through the moves if you trade for a large blue.  Keep in mind that I can&#39;t build one in my home world.\n\n22) fogus: Build B3 Plop\n\tSoaringPilot: Sorry for dropping off the face of the earth there. I&#39;ve been travelling for work. This month is super busy.\n\tfogus: No rush on my end.  Glad you&#39;re back.\n\n23) SoaringPilot: Discover G1 Wolf359 B3 Komarr\n\n24) fogus: Discover B1 Fogus B3 Boo\n\n25) SoaringPilot: Build G1 Komarr\n\n26) fogus: Trade B2 G2 Plop\n\n27) SoaringPilot: Build G2 Soaringpilot\n\tSoaringPilot: Ugggghhh of course I have no medium ships to swap for that blue\n\n28) fogus: Sacrifice B2 Fogus\nTrade B3 Y3 Plop\nTrade Y3 G3 Fogus\n\n29) SoaringPilot: Trade G2 B2 Soaringpilot\n\tSoaringPilot: well that&#39;s not what i thought would happen\n\n30) fogus: Move R2 Plop Wolf359\n\tfogus: I didn&#39;t want to get shut out of green.  :)\n\n31) SoaringPilot: Move Y1 Wolf359 Komarr\n\tSoaringPilot: AUGH!\n\n32) fogus: Attack R1 Wolf359\n\tSoaringPilot: This seems potentially catastrophic.\n\n\nHomeworlds Online (SDG# 31469)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.19, Ended: 2017.6.11\nParticipants: TwoShort (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\tdlwillson: You&#39;re back! What happened? Where have you been? When did you come back? How&#39;s life?\n\tdlwillson: You ub... Gonna take your turn?\n\n3) dlwillson: Build G1 Dlwillson\n\tTwoShort: Short answer is life got complicated and I felt bad that I was timing out a lot.  Which, fair warning, might happen again. But I&#39;ll do my best.\n\n4) TwoShort: Build G1 Twoshort\n\tdlwillson: Life gets that way sometimes. Take another turn and you&#39;ll have 4 days in the bank. Whether that makes you more or less likely to time out... I can&#39;t guess. SilentTitan and I are thinking of BGG con or Origins this year...\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) dlwillson: B R1 Dlwillson\n\n8) TwoShort: Build Y1 Twoshort\n\n9) dlwillson: B R2 Dlwillson\n\n10) TwoShort: Build Y2 Twoshort\n\n11) dlwillson: T R2 Y2 Dlwillson\n\n12) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n13) dlwillson: Discover Y2 Dlwillson G2 Field\n\n14) TwoShort: Trade Y2 R2 Twoshort\n\n15) dlwillson: Build Y2 Field\n\n16) TwoShort: Build Y2 Grogar\n\n17) dlwillson: Discover Y2 Field Y3 Golden-sun\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Grogar\nBuild Y3 Twoshort\nBuild R2 Twoshort\n\n19) dlwillson: Move Y2 Field Grogar\nCatastrophe Grogar Y\n\n20) TwoShort: Trade R2 G2 Twoshort\n\n21) dlwillson: D R1 Dlwillson B2 Sky\n\n22) TwoShort: Discover R2 Twoshort G3 Grogar\n\n23) dlwillson: B R2 Dlwillson\n\n24) TwoShort: Move Y1 Twoshort Grogar\n\n25) dlwillson: D R1 Dlwillson Y2 Sol\n\n26) TwoShort: Build Y1 Twoshort\n\n27) dlwillson: Sacrifice G3 Dlwillson\nB R2 Sol\nB R3 Sky\nB R3 Dlwillson\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Grogar\nBuild Y3 Grogar\n\tdlwillson: I&#39;m going on a cruise, so I may not be able to take turns for the next week.\n\tTwoShort: Ha Ha! now is my chance to make an uncharacteristically prompt move and get you to time out!  (Kidding...) enjoy the cruise. :) \n\n29) dlwillson: D R2 Sol G3 Field\n\n30) TwoShort: Trade Y3 G3 Twoshort\n\tdlwillson: Back from the cruise. It was nice.\n\tDraw5PlayAll: Red vs yellow again...\n\tdlwillson: It happens often. I&#39;m surprised that SilentTitan quit that game. I don&#39;t think he knew how well he was doing. This game is less simple in that I have access to some yellow, just not a lot.\n\tDraw5PlayAll: The winner will be blue.\n\tdlwillson: Think so? I agree.\n\n31) dlwillson: T R3 Y3 Sky\n\tTwoShort: blue strategic key \r\nyet tactical details reign \r\ngrowth begins all plans\n\tTwoShort: My past experience is that if I comment on games in progress it looks stupid 2 turns later; but if it&#39;s a haiku, maybe I can claim syllable counting clouded expression of my strategic insight :)  \n\n32) TwoShort: Build R3 Grogar\n\n33) dlwillson: M Y3 Sky Grogar\nC Grogar Y\n\n34) TwoShort: Build Y1 Twoshort\n\n35) dlwillson: B R3 Field\n\n36) TwoShort: Move Y1 Twoshort Grogar\n\n37) dlwillson: S Y2 Golden-sun\nM R1 Sky Grogar\nM R1 Sol Grogar\nC Grogar R\n\n38) TwoShort: Build Y2 Twoshort\n\n39) dlwillson: T R2 G2 Dlwillson\n\n40) TwoShort: Build Y2 Grogar\n\tdlwillson: Sorry for the long delay\n\n41) dlwillson: Build R1 Dlwillson\n\n42) TwoShort: Trade Y2 R2 Twoshort\n\n43) dlwillson: Trade R1 B1 Dlwillson\n\n44) TwoShort: Build Y2 Twoshort\n\n45) dlwillson: Sacrifice B1 Dlwillson\nTrade R2 B2 Field\n\n46) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n47) dlwillson: Build R1 Field\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\nBuild Y3 Twoshort\n\n49) dlwillson: T R3 Y3 Field\n\n50) TwoShort: Trade Y1 B1 Bluestar\n\n51) dlwillson: Build R1 Field\n\n52) TwoShort: Sacrifice Y2 Grogar\nDiscover B1 Bluestar Y2 Yolonda\nMove R2 Twoshort Grogar\n\n53) dlwillson: Discover R1 Field Y1 Sol\n\n54) TwoShort: Build R2 Grogar\n\n55) dlwillson: B R2 Dlwillson\n\n56) TwoShort: Move R2 Grogar Yolonda\n\n57) dlwillson: Trade R3 G3 Dlwillson\n\n58) TwoShort: Build R3 Grogar\n\n59) dlwillson: B R3 Field\n\n60) TwoShort: Discover R2 Grogar B2 Borbor\n\n61) dlwillson: S G2 Dlwillson\nB R3 Sol\nB G1 Dlwillson\n\tdlwillson: Been playing this game for three months today. :-)\n\n62) TwoShort: Trade R2 G2 Borbor\n\n63) dlwillson: M Y3 Field Borbor\n\n64) TwoShort: Sacrifice G2 Borbor\nBuild B1 Yolonda\nBuild B1 Yolonda\n\n65) dlwillson: M R3 Sol Yolonda\n\tdlwillson: I hate it when you surprise me! :-)\n\tTwoShort: My perspective differs :)\n\tTwoShort: (i.e.  I&#39;m really glad that was a surprise;  I was scared you had a plan for it.   now scared you&#39;ll make one...)\n\n66) TwoShort: Sacrifice Y3 Bluestar\nMove B1 Yolonda Dlwillson\nMove B1 Yolonda Dlwillson\nMove B1 Yolonda Dlwillson\nCatastrophe Dlwillson Blue\n\n67) dlwillson: Trade R3 Y3 Field\n\n\nHomeworlds Online (SDG# 31466)\nStarted: 2017.2.20, Ended: 2017.4.11\nParticipants: Felix (S), Takvorian (N)\nWinner: Felix\n\n1) Takvorian: Hom B1 R2 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\tTakvorian: Hi, \r\nGreetings from Berlin, Germany. Have fun!\r\n\n\n3) Takvorian: B G1 Takvorian\n\tFelix: Greetings from North Carolina, USA. :) You have fun too!\n\n4) Felix: Build G1 Felix\n\n5) Takvorian: T G1 B1 Takvorian\n\n6) Felix: Trade G1 B1 Felix\n\n7) Takvorian: B B2 Takvorian\n\n8) Felix: Build B2 Felix\n\n9) Takvorian: T B1 Y1 Takvorian\n\n10) Felix: Trade B2 R2 Felix\n\n11) Takvorian: B Y1 Takvorian\n\n12) Felix: Build R1 Felix\n\n13) Takvorian: T Y1 R1 Takvorian\n\n14) Felix: Trade R2 Y2 Felix\n\n15) Takvorian: B G1 Takvorian\n\n16) Felix: Build G1 Felix\n\n17) Takvorian: D B2 Takvorian G3 Britz\n\n18) Felix: Discover G1 Felix B2 Out\n\n19) Takvorian: T G1 B1 Takvorian\n\n20) Felix: Discover B1 Felix G2 Opus\n\n21) Takvorian: B G1 Takvorian\n\n22) Felix: Build G1 Felix\n\n23) Takvorian: D G1 Takvorian B3 Rixdorf\n\n24) Felix: Sacrifice G3 Felix\nBuild G2 Out\nBuild G2 Felix\nBuild G3 Felix\n\n25) Takvorian: Tr B2 Y2 Britz\n\n26) Felix: Build B2 Opus\n\n27) Takvorian: S Y2 Britz\nM G1 Rixdorf Opus\nM G1 Opus Felix\nC Felix G\n\n28) Felix: Trade B2 Y2 Opus\n\tFelix: Oops. I&#39;m not sure how I missed that!\n\n\nHomeworlds Online (SDG# 31477)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.20, Ended: 2017.6.23\nParticipants: Mandrel (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld Y2 B1 G3\n\n2) Mandrel: Homeworld R1 B3 G3\n\n3) bhorner: Build G1 Bhorner\n\tMandrel: Have a good game.\n\tbhorner: You too!\n\n4) Mandrel: Build G1 Mandrel\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) Mandrel: Trade G1 B1 Mandrel\n\n7) bhorner: Discover B1 Bhorner G3 Stpat\n\n8) Mandrel: Build B2 Mandrel\n\n9) bhorner: Build B2 Stpat\n\n10) Mandrel: Trade B1 Y1 Mandrel\n\n11) bhorner: Trade B1 Y1 Stpat\n\n12) Mandrel: Discover B2 Mandrel G2 Adjustment\n\n13) bhorner: B G1 Bhorner\n\n14) Mandrel: Build B1 Adjustment\n\n15) bhorner: B G1 Bhorner\n\n16) Mandrel: T B2 Y2 Adjustment\n\n17) bhorner: Trade G1 R1 Bhorner\n\tbhorner: Just curious, are you trying to win by making me forget about the game?\n\n18) Mandrel: B Y1 Adjustment\n\n19) bhorner: D G1 Bhorner Y3 Big-bird\n\tMandrel: Apologies, don&#39;t always have time to over as frequently asked I&#39;d like\n\n20) Mandrel: Trade Y2 R2 Adjustment\n\tbhorner: I understand.  My track record is that I end up not making it back in time and lose on time.  Trying to be better about that.  A 15 move game could potentially take 300 days to complete, that&#39;s some endurance!\n\tDraw5PlayAll: 20 days per move?!?\n\tbhorner: 10 days per person right?  If you count a move in the game history as both players taking a turn.  That&#39;s how chess counts move I think.\n\tDraw5PlayAll: But still, 10 days per move is unusual. Most SDG time controls are stricter\n\tbhorner: I think this is a standard ladder challenge, maybe I had an opportunity, but missed where I could change the time controls.\n\tDraw5PlayAll: Clocks are fixed at 3/3/10\n\tbhorner: Ah, so we&#39;ve each just stacked up 10 days of time?\n\tbhorner: Ok, looked it up, I guess a 15 move game should take less than 90 days.\n\n21) bhorner: B Y2 Stpat\n\n22) Mandrel: Build Y2 Adjustment\n\n23) bhorner: D Y2 Stpat G2 Xmas\n\n24) Mandrel: Build Y3 Mandrel\n\n25) bhorner: B Y3 Xmas\n\n26) Mandrel: Discover Y1 Adjustment B3 Boltzmann\n\n27) bhorner: D Y2 Xmas R1 Spark\n\n28) Mandrel: Build B1 Adjustment\n\n29) bhorner: S G1 Big-bird\nB Y3 Stpat\n\tbhorner: It really seems like you must stop in quite often in order to cut it so close to the deadline each time.\n\n30) Mandrel: Build R2 Adjustment\n\n31) bhorner: D Y1 Stpat G2 Envy\n\n32) Mandrel: Move R2 Adjustment Boltzmann\n\n33) bhorner: S Y3 Xmas\nM Y2 Spark Envy\nM Y1 Envy Mandrel\nM Y2 Envy Mandrel\nCatastrophe Mandrel Yellow\n\tbhorner: \n\n34) Mandrel: Build Y1 Adjustment\n\n35) bhorner: Build B2 Stpat\n\n36) Mandrel: Build G1 Mandrel\n\n37) bhorner: Discover B2 Stpat Y2 Tweety\n\n38) Mandrel: Build Y1 Adjustment\n\n39) bhorner: Discover B2 Tweety Y3 Big-bird\n\n40) Mandrel: Discover Y1 Adjustment B3 Bubbles\n\n41) bhorner: Build B2 Stpat\n\n42) Mandrel: Trade B1 G1 Adjustment\n\n43) bhorner: Trade B2 R2 Stpat\n\n44) Mandrel: Move G1 Adjustment Boltzmann\n\n45) bhorner: Build Y2 Stpat\n\n46) Mandrel: Build Y3 Boltzmann\n\n47) bhorner: Discover Y3 Stpat B2 Grover\n\tbhorner: I almost forgot about the game.  :)\n\n48) Mandrel: Discover Y1 Adjustment R3 Hard\n\n49) bhorner: Trade B2 G2 Big-bird\n\n50) Mandrel: S G3 Mandrel\nB G1 Boltzmann\nB G2 Boltzmann\nB G3 Mandrel\n\n51) bhorner: Sacrifice Y3 Grover\nMove G3 Bhorner Big-bird\nMove G3 Big-bird Adjustment\nMove G3 Adjustment Mandrel\n\n52) Mandrel: Sacrifice Y3 Boltzmann\nMove G1 Boltzmann Adjustment\nMove G1 Adjustment Mandrel\nMove Y2 Adjustment Mandrel\nCatastrophe Mandrel G\n\n53) bhorner: Build Y3 Stpat\n\n54) Mandrel: Move R2 Boltzmann Bhorner\n\n55) bhorner: M Y3 Stpat Bhorner\n\n56) Mandrel: Sacrifice G2 Boltzmann\nBuild R1 Bhorner\nBuild R3 Adjustment\n\n57) bhorner: Build Y3 Stpat\n\n58) Mandrel: Attack R1 Bhorner\n\n59) bhorner: Sacrifice Y2 Stpat\nMove Y3 Stpat Adjustment\nMove Y3 Adjustment Mandrel\n\n60) Mandrel: T R2 Y2 Bhorner\n\n61) bhorner: Sacrifice R2 Stpat\nAttack Y2 Mandrel\nPass\n\n\tMandrel: Good game\n\tMandrel: Good game\n\tbhorner: Good game\n\tDraw5PlayAll: The feature was offering a draw, or alternatively to declare that if both players eliminate each other it is a draw.\n\tbhorner: Both players couldn&#39;t eliminate each other right?  One of them would be the last to act.\n\nHomeworlds Online (SDG# 31448)\nStarted: 2017.2.20, Ended: 2020.9.1\nParticipants: w00t (S), Takvorian (N)\nWinner: Takvorian\n\n1) Takvorian: Ho R2 B1 G3\n\n2) w00t: Homeworld Y3 G1 B3\n\tTakvorian: Hi,\r\nGreetings from Berlin, Germany. Have fun!\n\n3) Takvorian: B G1 Takvorian\n\tw00t: Exciting! My first international game (that I&#39;m aware of)  \r\nGood luck!\n\n4) w00t: Build B1 W00t\n\tTakvorian: Don&#39;t expect too much from your first international game ;)\r\nI played around 5 games of Homeworlds before, the last in May 2015...\r\nBy the way, where are you located?\n\n5) Takvorian: T G1 B1 Takvorian\n\tw00t: I&#39;ve played lots and lots of homeworlds on the tabletop, but only completed a handful of games on SDG... Still very far from calling myself any good at the game, I just love the strategy!\r\n\r\nI&#39;m from Colorado... In the Mid-Western US tucked against the Rocky Mountain chain\n\tTakvorian: Cool!  I&#39;ve never been there yet, but I like the mountains. I often made vacations in the Bavarian Alps.\r\n\r\nI never played Homeworlds in the &quot;physical&quot; life, although I have more than enough pyramids at home. Because I am such a newbie I am probably quite bad at explaining the game ;)\r\n\n\n6) w00t: Build B2 W00t\n\n7) Takvorian: B B2 Takvorian\n\n8) w00t: Discover B2 W00t G2 Blep\n\n9) Takvorian: Tr B1 Y1 Takvorian\n\n10) w00t: Build B1 Blep\n\n11) Takvorian: B G1 Takvorian\n\n12) w00t: Trade B1 Y1 Blep\n\tTakvorian: By the way, if you see me making a big blunder, it would be great if you can tell me about, so that I can learn a thing or two :)\n\n13) Takvorian: D B2 Takvorian G3 Britz\n\n14) w00t: Build B1 Blep\n\n15) Takvorian: B G1 Takvorian\n\n16) w00t: Discover B2 Blep G3 Thbt\n\n17) Takvorian: D G1 Takvorian B3 Wedding\n\n18) w00t: Trade B2 G2 Thbt\n\n19) Takvorian: B G2 Wedding\n\n20) w00t: Build B2 Blep\n\n21) Takvorian: S G3 Takvorian\nB G3 Takvorian\nB Y1 Takvorian\nB Y2 Takvorian\n\n22) w00t: Trade B1 R1 W00t\n\n23) Takvorian: T Y1 R1 Takvorian\n\n\tLaurie_Menke: Hi Takvorian... I just wanted to let you and w00t know that I&#39;m making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that&#39;s the right thing to do.  :)\n\nHomeworlds Online (SDG# 31476)\nVariants: &quot;Unrated&quot;\nStarted: 2017.2.20, Ended: 2017.3.19\nParticipants: Draw5PlayAll (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld Y1 B1 G3 *\n\n2) Draw5PlayAll: Homeworld B3 Y3 G3 *\n\tbhorner: Here we go.  Planning on repeated sacs of g3, to speed it up, we should help each other keep the. Available in the bank.  Also, probably won&#39;t want to do this again, so I made small small to get all the biggest into a single system elsewhere...  Maybe we should do it in one our homes?  You could go big big to make it more crowded.  :)\n\tDraw5PlayAll: Homeworld systems accept up to 16 ships and peripherals accept 24. We should first pile everything into the homeworlds and then try the peripheral systems.\n\n3) bhorner: Build G1 Bhorner\n\tbhorner: How did you find out about the limits?  Those aren&#39;t part of the game... just this implementation?  Is the code open source or something?\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: http://wiki.superdupergames.org/games:homeworlds\n\n5) bhorner: Build G1 Bhorner\n\tDraw5PlayAll: Also, for extra fun, let us at the end try to make us both lose at once.\n\tbhorner: Yes, and also at some point try for a catastrophe of all pieces of a single color.  (Or 2 in one turn even...?)\n\n6) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G2 Draw5playall\nBuild G2 Draw5playall\n\n7) bhorner: Trade G1 Y1 Bhorner\n\n8) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n9) bhorner: Sacrifice G3 Bhorner\nBuild G1 Bhorner\nBuild G2 Bhorner\nBuild G3 Bhorner\n\tbhorner: Can&#39;t win...  No way to get you a g3 on your next turn.\n\n10) Draw5PlayAll: Build G3 Draw5playall\n\n11) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y1 Bhorner\nBuild Y2 Bhorner\n\n12) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Draw5playall\nBuild R1 Draw5playall\nBuild G3 Draw5playall\n\n13) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y2 Bhorner\nBuild Y2 Bhorner\n\n14) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Draw5playall\n\n15) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y3 Bhorner\nBuild Y3 Bhorner\n\n16) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n17) bhorner: Trade G1 B1 Bhorner\n\tbhorner: lol, this is the kind of thing I wanted to see.  :)\n\tbhorner: You have a Christmas homeworld!\n\n18) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Draw5playall\nBuild B2 Draw5playall\nBuild G1 Draw5playall\n\n19) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild B2 Bhorner\nBuild B2 Bhorner\n\n20) Draw5PlayAll: Move G2 Draw5playall Bhorner\n\n21) bhorner: Sac G3 Bhorner\nB G3 Bhorner\nB B3 Bhorner\nB B3 Bhorner\n\n22) Draw5PlayAll: Catastrophe Draw5playall R\nPass\n\n23) bhorner: Sac Y3 Bhorner\nM G3 Bhorner Draw5playall\nM Y3 Bhorner Draw5playall\nM B3 Bhorner Draw5playall\n\tbhorner: They&#39;re filling the border, that&#39;s probably not random.\n\tbhorner: OK, 16 for the outer ring, and it must be 8 for an inner ring.  We should put all the bugs in yours sincerely you have big big.\n\tDraw5PlayAll: &quot;The ship could not be moved&quot; when I tried to invade your homeworld.\n\tDraw5PlayAll: Please move one blue into my homeworld, unless you want to try to do something else.\r\n\r\nI believe that homeworld systems reserve the inner 9 squares of the 5x5 grid for the stars. It seems like they could use less space, especially after 1 star dies, but then again the highest amount of ships that could &quot;safely&quot; enter a system is 11 (3 of each color, but one is the star.) \n\n24) Draw5PlayAll: Pass\nPass\nPass\nPass\nPass\n\tDraw5PlayAll: I intend to end this game with both homeworld systems destroyed.\n\tbhorner: That sounds like a good idea, but first, I&#39;d like to fill your homeworld with bigs, and then mediums until it&#39;s full, and see what happens when no more will fit.  Then I&#39;d like to do the same with a non-homeworld...  are you on board with that?\n\tDraw5PlayAll: Sure, let us flood a peripheral system. Call it something nice and simple.\n\tDraw5PlayAll: I noticed that the positions of the stars keep changing. Sometimes they are diagonal, sometimes orthogonal...\n\n25) bhorner:\nBuild G3 Draw5playall\n\n26) Draw5PlayAll: Pass\n\tbhorner: I missed some of your comments before my last move, that&#39;s what I get for playing on my phone.  I also noticed the stars orientation changing.  I bet that when a single star is left, the inner ring of 8 can also be filled, like a non-homeworld.\n\n27) bhorner: Trade G3 R3 Draw5playall\n\n28) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n29) bhorner: Build Y3 Draw5playall\n\tDraw5PlayAll: Tell me f you want me to do anything.\n\n30) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Draw5playall\n\n31) bhorner: Build G3 Draw5playall\n\tbhorner: If you want to help me fill your homeworld with all the bugs, that would make it go faster, then we can flood a secondary system (I vote small system).  I was just thinking, I don&#39;t think both players can die at once, it would be against the rules to call the killing catastrophe on yourself...\n\tDraw5PlayAll: I saw a white ship for a second... probably a blur of the Y2 and B2.\n\n32) Draw5PlayAll: Build R1 Draw5playall\n\tDraw5PlayAll: I vote medium.\n\tbhorner: Hm, an impasse...  Just kidding, I don&#39;t really care.  :)\n\n33) bhorner: Sacrifice B2 Bhorner\nTrade Y3 R3 Draw5playall\nTrade G3 R3 Draw5playall\n\n34) Draw5PlayAll: Discover G1 Draw5playall R2 R2\n\n35) bhorner: Build Y3 Draw5playall\n\tbhorner: We&#39;ll need 2 more spots open for all the bigs soon.\n\n36) Draw5PlayAll: Attack Y3 Draw5playall\n\n37) bhorner: Move B3 Bhorner Draw5playall\n\tbhorner: If you&#39;d like to take one (or both) of the y3&#39;s to have sacrifice power to move faster, feel free to go for it.\n\n38) Draw5PlayAll: Build G3!!! R2\n\n39) bhorner: Sac Y2 Bhorner\nMove B3 Draw5playall R2\nMove Y1 Bhorner R2\n\tDraw5PlayAll: Cannot make new ships in the system.\n\n40) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Draw5playall R2\nMove B2 Draw5playall R2\nMove R1 Draw5playall R2\n\tbhorner: Right, one of the smaller pieces needs to move out first.\n\n41) bhorner: Attack G3 R2\n\tbhorner: I&#39;ve give you a yellow to capture, and moved a big in to take the green, and move both back, you can choose.  Trying to minimize the number of moves it takes...\n\n42) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G314159265358979 R2\nBuild B2$ R2\nBuild R2! R2\n\n43) bhorner: A G3 R2\n\tDraw5PlayAll: I wonder what w00t thinks of this...\n\n44) Draw5PlayAll: Attack Y1 R2\n\tbhorner: This game in general?  :)  I don&#39;t know, would W00t think it&#39;s a waste of time?\n\n45) bhorner: Sac G3 R2\nB G3 Draw5playall\nB Y2 Bhorner\nB Y3 Draw5playall\n\tbhorner: Dude...\n\n46) Draw5PlayAll: Build R2 R2\n\tbhorner: If you&#39;re not into this anymore, just let me know.\n\n47) bhorner: Sac Y2 Bhorner\nM B3 R2 Draw5playall\nM G3 R2 Draw5playall\n\tDraw5PlayAll: Pile everything into the R2 and then I want to collapse the entire economy, leaving absolutely nothing.\n\tbhorner: Haven&#39;t got all the bugs to your homeworld yet, here has been a little counterproductive stuff...\n\n48) Draw5PlayAll: Build Y2 R2\n\n49) bhorner: Sac Y3 Draw5playall\nM Y3 Draw5playall R2\nM G3 Draw5playall R2\nM B3 Draw5playall R2\n\n\n50) Draw5PlayAll: Build Y3 R2\n\tbhorner: Woohoo!  Made it!\n\tDraw5PlayAll: ??\n\n51) bhorner: Sac Y3 R2\nM R3 Draw5playall R2\nM R3 Draw5playall R2\nM R3 Draw5playall R2\n\n52) Draw5PlayAll: Build Y3 R2\n\n53) bhorner: Sac Y2 Bhorner\nM B3 Draw5playall R2\nM G3 Draw5playall R2\n\n54) Draw5PlayAll: Build Y2... R2\n\tbhorner: Since we can&#39;t kill both players at once, I vote we kill as many pips at once as possible in a single turn.  This would mean filling the r2 system with all the bigs, then all the mediums, then smalls for whatever room is left.  I assume this would leave at least 4 of each color there.  Then in one turn you could call catastrophes on all 4 colors in a single system (I guess for full glory, you&#39;d want to save the color of the system itself for last).\n\tDraw5PlayAll: I want to try to kill both at once.\n\n55) bhorner: Sac Y2 Bhorner\nM B2 Bhorner R2\nM G3 Draw5playall R2\n\tbhorner: Ok, good luck.  Let me know if you need any help.  I&#39;ll fill up r2 until you say different.\n\n56) Draw5PlayAll: Move G2 Bhorner R2\n\n57) bhorner: Move G2 Bhorner R2\n\n58) Draw5PlayAll: Move G2 Draw5playall R2\n\tbhorner: That&#39;s lookin&#39; pretty sweet.\n\n59) bhorner: Pass\n\n60) Draw5PlayAll: Sacrifice Y3 R2\nMove Y3 R2 Draw5playall\nMove B2 R2 Draw5playall\nMove B2 R2 Draw5playall\n\n61) bhorner: Move G1 Bhorner R2\n\n62) Draw5PlayAll: Sacrifice Y2 R2\nMove R1 Draw5playall R2\nMove R1 Draw5playall R2\n\tbhorner: You could:\r\ns g1 r2\r\nb y2 r2\r\n\r\nBut I&#39;m not really worried about it.  How do you want to do the catastrophes?  4 y and 4 b in both home systems?\n\n63) bhorner: S G3 R2\nB Y2 Bhorner\nB Y2 Bhorner\nB Y3 Bhorner\n\tDraw5PlayAll: I want to abandon mine while blowing up yours\n\tbhorner: Abandon as in move your final ship out?\n\n64) Draw5PlayAll: Pass\n\n65) bhorner: Pass\n\n66) Draw5PlayAll: Pass\n\n67) bhorner: Pass\n\n68) Draw5PlayAll: Catastrophe Bhorner Y\nPass\n\tDraw5PlayAll: Unfortunately all attempts to get a draw resulted in &quot;illegal modulus zero&quot; perl error...\n\tDraw5PlayAll: Try passing repeatedly, and see if the system gives a draw.\n\tbhorner: Now thats funny, the mod error.  :)\n\n69) bhorner: Cat Draw5playall B\nPass\n\n70) Draw5PlayAll: Move G1 R2 Draw5playall\nCatastrophe R2 Red\n\n71) bhorner: Trade B1 G1 Bhorner\n\tDraw5PlayAll: Idk\n\n72) Draw5PlayAll: Build G1 Draw5playall\n\n73) bhorner: B G2 Bhorner\n\tbhorner: I got what I wanted...  If you just want something else extreme,.. I could resign, for the maximal anti-climax.  :)\n\n74) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Draw5playall Bhorner\nMove G1 Draw5playall Bhorner\nPass\n\n\tDraw5PlayAll: It let me lose as long as I did not eliminate you.\n\tbhorner: Oh, nice.  That&#39;s actually against the rules but I imagine it doesn&#39;t come up in standard play much.  :). That was interesting, thanks!\n\tDraw5PlayAll: It is within the rules to annihilate both players (creating a tie) but not to self-destruct. On SDG it is the opposite!\n\tbhorner: &quot;You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of \r\nyour turn.&quot;\n\tbhorner: That&#39;s from the 2nd to last paragraph of this:\r\nhttp://superdupergames.org/rules/homeworlds.pdf\n\tDraw5PlayAll: ...but Andy said you can cause a tie, in some BoardGameGeek page. The Homeworlds rules are sort of messed up, with at least 4 different sources (Playing with Pyramids, your link, Pyramid Arcade, and SDG&#39;s rules from ginohn.com)\n\tDraw5PlayAll: Wait, your link was SDG&#39;s / John Cooper&#39;s. I meant www.looneylabs.com/rules/homeworlds\n\tbhorner: Oh no, pyramid arcade is yet different?  I just got that, and have all the print (and electronic) versions I&#39;m aware of.\n\tDraw5PlayAll: Well, I know Arcade has more content... not sure if there is any functional difference.\n\nHomeworlds Online (SDG# 31478)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.21, Ended: 2017.3.9\nParticipants: ajo (S), SilentTitan (N)\nWinner: ajo\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ajo: Homeworld B3 Y2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) ajo: Build G1 Ajo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) ajo: Trade G1 R1 Ajo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) ajo: Build R1 Ajo\n\n9) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n10) ajo: Build R2 Ajo\n\n11) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n12) ajo: Discover R2 Ajo B1 Alpha\n\n13) SilentTitan: Discover Y2 Sol G1 Soul\n\n14) ajo: Build R2 Ajo\n\n15) SilentTitan: Build Y3 Soul\n\n16) ajo: Discover R1 Ajo B1 Beta\n\n17) SilentTitan: Discover Y3 Soul G3 Sole\n\n18) ajo: Sacrifice G3 Ajo\nBuild R2 Beta\nBuild R3 Alpha\nBuild R3 Ajo\n\n\tajo: So which team is going to win? Red or yellow?\n\tDraw5PlayAll: Blue.\n\tSilentTitan: Red I made too many mistakes.  Good game\n\tajo: For the record, I didn&#39;t expect that. I think I was barely winning.\n\tDraw5PlayAll: By the way I said &quot;blue&quot; because I expected both sides to do lots of trading for other colors...\n\nHomeworlds Online (SDG# 31479)\nStarted: 2017.2.21, Ended: 2019.10.22\nParticipants: MobyNostromo (S), w00t (N)\nWinner: MobyNostromo\n\n1) w00t: Homeworld G3 B2 R3\n\n2) MobyNostromo: H Y3 G2 B3\n\tw00t: Greetings!  Good luck :)\n\tMobyNostromo: Hello!! I&#39;m going to need the good luck: I&#39;m new at this. Regardless, I hope you have fun.\n\n3) w00t: Build R1 W00t\n\tw00t: I&#39;d call myself seasoned... I&#39;ve played a lot of tabletop homeworlds, and I&#39;ve been having a blast returning here... \r\n\r\nIf you&#39;ve got any questions at all, I&#39;m happy to help a new player learn and develop \n\n4) MobyNostromo: B B1 Mobynostromo\n\tMobyNostromo: Thank you. I may take you up on it.\n\n5) w00t: Trade R1 B1 W00t\n\n6) MobyNostromo: T B1 Y1 Mobynostromo\n\n7) w00t: Build B1 W00t\n\n8) MobyNostromo: B B1 Mobynostromo\n\n9) w00t: Trade B1 Y1 W00t\n\n10) MobyNostromo: B Y1 Mobynostromo\n\n11) w00t: Build Y2 W00t\n\n12) MobyNostromo: T Y1 G1 Mobynostromo\n\n\tLaurie_Menke: Hi MobyNostromo... I just wanted to let you and w00t know that I&#39;m making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that&#39;s the right thing to do.  :)\n\tMobyNostromo: Thank you for asking. Sure, go ahead and cancel this one.\n\tLaurie_Menke: Hi MobyNostromo, Aaron already did his sweep, but didn&#39;t take this one out because he wasn&#39;t sure if you wanted it.  He may still do it now, but I&#39;m not sure.\n\tDraw5PlayAll: I guess what you could do is click the &quot;Terminate Game (unrated)&quot; option.\n\nHomeworlds Online (SDG# 31465)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.2.22, Ended: 2017.2.27\nParticipants: Ausmuh (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 Y1 G3\n\n2) Ausmuh: Homeworld G3 Y2 B3\n\tBabamots: It is I, the sabotaging Welshman :-).\n\n3) Babamots: Build G1 Babamots\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) Babamots: Discover G1 Babamots B2 Ferenginar\n\n\tBabamots: Sorry. I guess you don&#39;t have time at the moment. Maybe later. See ya!\n\nHomeworlds Online (SDG# 31516)\nVariants: &quot;Unrated&quot;\nStarted: 2017.2.23, Ended: 2017.7.25\nParticipants: w00t (S), shoejitsu (N)\nWinner: shoejitsu\n\n1) shoejitsu: Homeworld B3 G1 Y3\n\tw00t: Greetings!  Happy to help a new player learn if you have any questions\n\n2) w00t: Homeworld B3 R2 G3\n\tshoejitsu: hey! thanks so much, this is actually my first game ever so its gonna be a lil rocky :P\n\n3) shoejitsu: Build Y1 Shoejitsu\n\tshoejitsu: How do I build in my homeworld? Im not sure what to refer to my homeworld as when building...\n\n4) w00t: Build G1 W00t\n\tshoejitsu: nevermind!\n\tw00t: like that :)\n\n5) shoejitsu: Discover Y1 Shoejitsu G2 Casio\n\n6) w00t: Trade G1 Y1 W00t\n\n7) shoejitsu: Build Y1 Shoejitsu\n\tshoejitsu: hmm. so i guess I can&#39;t really build an attack fleet until i discover a system with a red star? guess I kinda jumped the gun on the casio system\n\n8) w00t: Build Y2 W00t\n\tshoejitsu: how am i doin :P\n\tw00t: still opening moves... so far so good :)\n\n9) shoejitsu: Trade Y1 G1 Shoejitsu\n\n10) w00t: Discover Y1 W00t R1 Rawr\n\n11) shoejitsu: Trade G1 R1 Shoejitsu\n\n\tshoejitsu: you still there??\n\tLaurie_Menke: Hi shoejitsu... I just wanted to let you and w00t know that I&#39;m making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that&#39;s the right thing to do.  :)\n\nHomeworlds Online (SDG# 31523)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.24, Ended: 2017.5.6\nParticipants: Babamots (S), mneme (N)\nWinner: Babamots\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Babamots: Homeworld R1 B3 G3\n\n3) mneme: Build G1 Mneme\n\n4) Babamots: Build G1 Babamots\n\n5) mneme: Trade G1 R1 Mneme\n\tmneme: Argh.  I am getting no notifications at all.  So if I lose because of that...well, I do.  :(\n\n6) Babamots: Trade G1 Y1 Babamots\n\tBabamots: For what it&#39;s worth, I seldom go a whole day without making a move. If you move at the same time every day, I&#39;ll usually have played before you get back.\n\n7) mneme: Build R2 Mneme\n\tmneme: Fair enough.  But I&#39;d -really- like to just get the email; I got the notification of the challenge, so I have -no- idea why the per-move emails aren&#39;t happening. :(\n\n8) Babamots: Build Y1 Babamots\n\tBabamots: Maybe it&#39;s because I had my loyalists on your planet sabotage your interstellar transmitter. Bwahaha!\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Babamots: Discover Y1 Babamots G2 Betazed\n\n11) mneme: Build R2 Mneme\n\n12) Babamots: Build Y1 Betazed\n\n13) mneme: Build Y2 Mneme\n\tBabamots: I&#39;ve never really worried about how the homeworld stars affect the stash and how that should affect which color I pursue. I&#39;ve learned something this game.\n\n14) Babamots: Sacrifice G3 Babamots\nBuild Y2 Betazed\nBuild Y3 Babamots\nBuild Y3 Babamots\n\n15) mneme: Discover Y2 Mneme B3 Euterpe\n\n16) Babamots: Sacrifice Y1 Betazed\nDiscover Y3 Babamots B2 Galorndon\n\n17) mneme: Move R2 Mneme Euterpe\n\tBabamots: Sorry to be slow. The site was down last night from the moment I got my notification until I went to bed.\n\tmneme: LOL.  I hadn&#39;t noticed. :)\r\n\n\n18) Babamots: Trade Y3 G3 Babamots\n\tDraw5PlayAll: Galorndon??\n\tBabamots: Welcome to Galorndon Core: where no good deed goes unpunished.\n\n19) mneme: Move R2 Euterpe Betazed\n\tDraw5PlayAll: Trek reference? If so, which series (TOS, TNG, DS9, VOY, ...)? Please no spoilers.\n\tBabamots: Galorndon Core is from TNG season 3: &quot;The Enemy.&quot; Are you watching Star Trek? And if so, which series?\n\n20) Babamots: Discover Y2 Betazed B1 Iconia\n\n21) mneme: Attack Y1 Betazed\n\n22) Babamots: Trade Y2 R2 Iconia\n\n23) mneme: Build R2 Betazed\n\n24) Babamots: Build G1 Babamots\n\n25) mneme: Trade R1 B1 Mneme\n\n26) Babamots: Move G1 Babamots Galorndon\n\tDraw5PlayAll: Iconia?\n\tBabamots: In Star Trek, the Iconians were an ancient race that built passages between planets, like on Stargate.\n\n27) mneme: Build G1 Mneme\n\n28) Babamots: Build G1 Babamots\n\tmneme: b g1 mneme \n\tBabamots: I suspect you meant to type into the Move Box. It would be a shame for you to time out since I think you&#39;ll beat me.\n\n29) mneme: Discover R2 Betazed Y1 Jumper\n\n30) Babamots: Build G2 Galorndon\n\tmneme: true.  I got it eventually; was wondering why it was not updating.  :)\n\tmneme: You did get the first extra large.  That&#39;s a bit deal, but I do have some other advantages.\n\n31) mneme: Sacrifice G3 Mneme\nBuild Y2 Euterpe\nBuild Y3 Betazed\nBuild Y3 Mneme\n\n32) Babamots: Trade G1 R1 Galorndon\n\n33) mneme: Build R3 Betazed\n\n34) Babamots: Sacrifice G2 Galorndon\nBuild R3 Galorndon\nBuild R3 Iconia\n\tBabamots: I think I lost when I didn&#39;t have red to keep you from taking Betazed.\n\tmneme: Red and yellow are super-important, it&#39;s true.  This is very much a game where you only have to be one move ahead to crush someone, if you can leverage it properly and not make too many mistakes.\n\tmneme: But I think you could have come back from that if you found a way to leverage your extra large before I caught up; it&#39;s why I needed to keep up the pressure.\r\n\n\n35) mneme: Sacrifice B1 Mneme\nTrade R2 B2 Betazed\n\tmneme: still, I can&#39;t stop you from getting a large red, so...we&#39;ll see.\n\n36) Babamots: Move R3 Galorndon Euterpe\n\n37) mneme: Sacrifice Y2 Euterpe\nDiscover Y2 Euterpe G2 Caliope\nDiscover Y3 Betazed G3 Polyhymnia\n\n38) Babamots: Move G1 Babamots Galorndon\n\n39) mneme: Build R2 Betazed\n\n40) Babamots: Build Y2 Galorndon\n\n41) mneme: Build B1 Betazed\n\n42) Babamots: Sacrifice Y2 Galorndon\nDiscover R1 Galorndon B3 Vidiia\nDiscover G1 Galorndon B1 Ktaris\n\n43) mneme: Discover R2 Jumper Y2 Erato\n\n44) Babamots: Build G1 Babamots\n\n45) mneme: Sacrifice Y2 Mneme\nMove R2 Betazed Iconia\nMove R2 Erato Iconia\nCatastrophe Iconia R\n\tBabamots: Sorry for the undo. I mistyped and then took a while to decide whether to bother to redo it.\n\tmneme: no worries, I undo all the time.\n\n46) Babamots: Sacrifice G3 Babamots\nBuild G2 Ktaris\nBuild G3 Babamots\nBuild R2 Euterpe\n\n47) mneme: Build G3 Mneme\n\n48) Babamots: Trade R2 Y2 Euterpe\n\n49) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild B1 Betazed\nBuild R2 Betazed\n\n50) Babamots: Sacrifice Y3 Galorndon\nMove G1 Ktaris Betazed\nMove G2 Ktaris Betazed\nMove G1 Babamots Betazed\nCatastrophe Betazed G\n\n51) mneme: Build Y1 Polyhymnia\n\n52) Babamots: Trade Y2 G2 Euterpe\n\n53) mneme: Trade G1 B1 Mneme\n\tBabamots: Well, that simplified a lot.\n\tmneme: Yeah, I was wondering if you&#39;d do that.\r\n\n\n54) Babamots: Build R2 Euterpe\n\tBabamots: I was unhappy that destroying that fleet gave you a g3, but I eventually decided that it was worth it.\n\tBabamots: I&#39;m working on a couple of deadlines right now, but I&#39;ll move again when I&#39;ve got time to study this properly.\n\tmneme: No worries.\n\n55) mneme: Sacrifice B1 Mneme\nTrade Y3 R3 Polyhymnia\n\n56) Babamots: Trade R2 Y2 Euterpe\n\n57) mneme: Build R2 Polyhymnia\n\n58) Babamots: Build R2 Euterpe\n\n59) mneme: Build G1 Mneme\n\n60) Babamots: Discover R2 Euterpe B1 Mab-bu\n\n61) mneme: Discover G1 Mneme Y3 Erato\n\n62) Babamots: Build R2 Euterpe\n\n63) mneme: Build G1 Mneme\n\n64) Babamots: Build G1 Babamots\n\n65) mneme: Trade G1 B1 Mneme\n\n66) Babamots: Trade R3 Y3 Euterpe\n\n67) mneme: Sacrifice B1 Mneme\nTrade R2 B2 Polyhymnia\n\n68) Babamots: Sacrifice G2 Euterpe\nBuild R2 Mab-bu\nBuild R3 Vidiia\n\n69) mneme: Build R3 Polyhymnia\n\n70) Babamots: Sacrifice Y2 Euterpe\nMove R2 Mab-bu Polyhymnia\nMove R2 Mab-bu Polyhymnia\nCatastrophe Polyhymnia R\n\n71) mneme: Build G1 Mneme\n\n72) Babamots: Trade R2 G2 Euterpe\n\n73) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Erato\nBuild B1 Polyhymnia\n\tBabamots: Well, I&#39;m feeling a lot more secure than I was a month and a half ago. Are you still not getting notifications?\n\tDraw5PlayAll: What are Vidiia, K t a r i s, and any others I missed?\n\tBabamots: Ktaris (from Voyager) is the homeworld of a couple of minor Star Trek characters (Etana Jol and the father of  Naomi Wildman). Vidiia (from Voyager) is the homeworld of the Vidiians, who are basically space zombies. They&#39;re all infected with a plague that makes their organs shut down, so they harvest organs from other races. Mab-Bu IV is a gas giant with a (barely) habitable moon. The Next Generation crew found disembodied souls there that were not friendly.\n\tBabamots: Oh, and Betazed is where telepathic Betazoids are from (including Deanna Troi&#39;s family).\n\tmneme: Well, I found where in the spamtrap they&#39;re ending up, but no, I think they&#39;re still getting blocked there.\r\n\n\n74) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y2 Euterpe\nBuild G3 Babamots\n\tmneme: And I should hope so; you&#39;ve been very sucessful at denial and cornering, and I&#39;ve been a little too cautious overall.\n\n75) mneme: Trade B2 R2 Polyhymnia\n\n76) Babamots: Sacrifice Y1 Babamots\nMove R3 Vidiia Caliope\n\n77) mneme: Move Y2 Caliope Vidiia\n\n78) Babamots: Sacrifice G3 Babamots\nBuild R2 Caliope\nBuild Y1 Babamots\nBuild G3 Babamots\n\n79) mneme: Sacrifice R2 Polyhymnia\nAttack R1 Vidiia\nPass\n\n80) Babamots: Sacrifice Y1 Babamots\nMove R3 Caliope Polyhymnia\n\n81) mneme: Sacrifice Y1 Polyhymnia\nDiscover B1 Polyhymnia Y2 Melpomne\n\n82) Babamots: Sacrifice Y2 Euterpe\nMove Y3 Euterpe Mneme\nMove R3 Polyhymnia Mneme\n\n83) mneme: Sacrifice G3 Erato\nBuild G3 Erato\nBuild R2 Vidiia\nBuild Y1 Mneme\n\n84) Babamots: Sacrifice R2 Caliope\nAttack Y3N Mneme\nAttack G2N Mneme\n\n\tmneme: Good game!\n\tmneme: Hmph.  It wouldn&#39;t let me resign by catastrophe.  For the best for new players, I suppose.\n\tBabamots: By double catastrophe, no less. Good game!\n\nHomeworlds Online (SDG# 31473)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.25, Ended: 2017.2.27\nParticipants: Draw5PlayAll (S), Ausmuh (N)\nWinner: Draw5PlayAll\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n\tDraw5PlayAll: Uhhhh...?\n\nHomeworlds Online (SDG# 31531)\nVariants: &quot;Hard time&quot;\nStarted: 2017.2.26, Ended: 2017.3.31\nParticipants: Takvorian (S), Aghmarck (N)\nWinner: Aghmarck\n\n1) Aghmarck: Homeworld Y1 B3 G3\n\n2) Takvorian: H B1 Y2 G3\n\tAghmarck: GL, HF!\n\n3) Aghmarck: B G1 Aghmarck\n\tTakvorian: Have fun!\r\nSorry for challenging you repeatedly, but it&#39;s quite hard to get a game when you enter the ladder at the bottom ;)\n\tAghmarck: Oh no need for apologies! It&#39;s overdue to pick this game again. Thanks for nagging me back!\n\tAghmarck: Oh no need for apologies! It&#39;s overdue to pick this game again. Thanks for nagging me back!\n\n4) Takvorian: B G1 Takvorian\n\n5) Aghmarck: Trade G1 B1 Aghmarck\n\tTakvorian: By the way, I am from Berlin, Germany. Where are you from?\n\tAghmarck: Heredia, Costa Rica\n\n6) Takvorian: T G1 B1 Takvorian\n\n7) Aghmarck: Build B2 Aghmarck\n\n8) Takvorian: B B2 Takvorian\n\n9) Aghmarck: T B1 Y1 Aghmarck\n\n10) Takvorian: T B2 Y2 Takvorian\n\n11) Aghmarck: B G1 Aghmarck\n\n12) Takvorian: B G1 Takvorian\n\n13) Aghmarck: D G1 Aghmarck B2 B2\n\n14) Takvorian: D B1 Takvorian G3 Britz\n\n15) Aghmarck: B G1 Aghmarck\n\n16) Takvorian: B G2 Takvorian\n\n17) Aghmarck: S G3 Aghmarck\nB G2 Aghmarck\nB G2 B2\nB G3 Aghmarck\n\n18) Takvorian: T G1 R1 Takvorian\n\n19) Aghmarck: T G1 R1 Aghmarck\n\n20) Takvorian: M Y2 Takvorian Britz\n\n21) Aghmarck: T G2 Y2 B2\n\n22) Takvorian: T G2 B2 Takvorian\n\n23) Aghmarck: Build G1 B2\n\n24) Takvorian: B B1 Britz\n\n25) Aghmarck: Discover B2 Aghmarck G2 G2\n\n26) Takvorian: T B1 R1 Britz\n\n27) Aghmarck: Build R2 Aghmarck\n\n\nHomeworlds Online (SDG# 31503)\nStarted: 2017.2.27, Ended: 2017.4.6\nParticipants: MobyNostromo (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) MobyNostromo:\nH G3 Y2 B3\n\tDraw5PlayAll: I am just doing this as a test to see if it will forfeit me for having no homeworld\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\tMobyNostromo: I think it worked.\n\n4) MobyNostromo: B B1 Mobynostromo\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) MobyNostromo: B B1 Mobynostromo\n\n7) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n8) MobyNostromo: T B1 Y1 Mobynostromo\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) MobyNostromo: T B1 G1 Mobynostromo\n\n11) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n12) MobyNostromo: B Y1 Mobynostromo\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\n14) MobyNostromo: D Y1 Mobynostromo B1 Blue\n\n15) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n16) MobyNostromo: B Y2 Mobynostromo\n\n17) Draw5PlayAll: Move Y1 Draw5playall G2\n\n18) MobyNostromo: M G1 Mobynostromo Blue\n\n19) Draw5PlayAll: Build Y3 G2\n\n20) MobyNostromo: B Y3 Blue\n\n21) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G2 Blue\nMove Y1 Blue Mobynostromo\nCatastrophe Mobynostromo Y\n\n22) MobyNostromo: T Y3 R3 Blue\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) MobyNostromo: M R3 Blue G2\n\n25) Draw5PlayAll: Move Y3 G2 Blue\n\n26) MobyNostromo: A B1 G2\n\n27) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n28) MobyNostromo: S Y1 Blue\nM R3 G2 Blue\n\n29) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack R3 Blue\n\n30) MobyNostromo: T B3 G3 Mobynostromo\n\n31) Draw5PlayAll: Attack G1 Blue\n\n32) MobyNostromo: B B1 G2\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) MobyNostromo: T B1 Y1 G2\n\n35) Draw5PlayAll: Sacrifice Y3 Blue\nMove G1 Blue Mobynostromo\nMove G1 Draw5playall G2\nMove G1 G2 Mobynostromo\nCatastrophe Mobynostromo Green\n\n\nHomeworlds Online (SDG# 31546)\nStarted: 2017.3.2, Ended: 2017.5.7\nParticipants: MobyNostromo (S), panglott (N)\nWinner: panglott\n\n1) panglott: Homeworld G2 R1 B3\n\n2) MobyNostromo: H G3 Y2 B3\n\n3) panglott: Build B1 Panglott\n\tMobyNostromo: Have fun!\n\n4) MobyNostromo: B B1 Mobynostromo\n\n5) panglott: Trade B1 Y1 Panglott\n\n6) MobyNostromo: B B1 Mobynostromo\n\n7) panglott: Build Y1 Panglott\n\n8) MobyNostromo: T B1 Y1 Mobynostromo\n\n9) panglott: Build Y2 Panglott\n\n10) MobyNostromo: T B1 G1 Mobynostromo\n\n11) panglott: Discover Y2 Panglott B3 Arcturus\n\n12) MobyNostromo: B Y2 Mobynostromo\n\n13) panglott: Build Y3 Panglott\n\n14) MobyNostromo: T Y2 R2 Mobynostromo\n\n15) panglott: Sacrifice Y2 Arcturus\nDiscover Y1 Panglott B3 Arcturus\nMove Y1 Panglott Arcturus\n\n16) MobyNostromo: D Y1 Mobynostromo G1 Green\n\n17) panglott: Build Y2 Panglott\n\n18) MobyNostromo: M R2 Mobynostromo Green\n\n19) panglott: Trade Y1 R1 Arcturus\n\n20) MobyNostromo: B R1 Green\n\n21) panglott: Move Y3 Panglott Arcturus\n\n22) MobyNostromo: B B1 Mobynostromo\n\n23) panglott: Trade Y1 G1 Arcturus\n\n24) MobyNostromo: M R2 Green Arcturus\n\n25) panglott: Attack R2 Arcturus\n\n26) MobyNostromo: B R2 Green\n\n27) panglott: Build G2 Arcturus\n\n28) MobyNostromo: B G2 Mobynostromo\n\n29) panglott: Sacrifice Y2 Panglott\nMove G1 Arcturus Green\nMove G1 Green Mobynostromo\nCatastrophe Mobynostromo G\n\n30) MobyNostromo: T B3 R3 Mobynostromo\n\n31) panglott: Build B1 Panglott\n\n32) MobyNostromo: T B1 G1 Mobynostromo\n\n33) panglott: Trade B1 G1 Panglott\n\n34) MobyNostromo: D G1 Mobynostromo B3 Blue\n\n35) panglott: Build R2 Arcturus\n\n36) MobyNostromo: M R1 Green Arcturus\nC Arcturus Red\n\n37) panglott: Trade G1 R1 Panglott\n\n38) MobyNostromo: B G1 Blue\n\n39) panglott: Build Y1 Arcturus\n\n40) MobyNostromo: T G1 Y1 Blue\n\n41) panglott: Move Y3 Arcturus Panglott\n\n42) MobyNostromo: B Y2 Blue\n\n43) panglott: Build Y2 Arcturus\n\n44) MobyNostromo: B Y3 Green\n\n45) panglott: Sacrifice Y2 Arcturus\nMove Y3 Panglott Blue\nMove R1 Panglott Blue\n\n46) MobyNostromo: D Y2 Blue G2 G2\n\n47) panglott: Move Y3 Blue Panglott\n\n48) MobyNostromo: B Y2 Blue\n\n49) panglott: Attack Y1 Blue\n\n50) MobyNostromo: B Y3 G2\n\n51) panglott: Attack G1 Blue\n\n52) MobyNostromo: M R2 Green Blue\n\n53) panglott: Move R1 Blue Panglott\n\n54) MobyNostromo: A G1 Blue\n\n55) panglott: Build G1 Arcturus\n\n56) MobyNostromo: B G3 Blue\n\n57) panglott: Build G3 Arcturus\n\n58) MobyNostromo: M G1 Blue Mobynostromo\n\n59) panglott: Trade G1 R1 Arcturus\n\n60) MobyNostromo: B R2 Mobynostromo\n\n61) panglott: Sacrifice G3 Arcturus\nBuild G1 Arcturus\nBuild R2 Arcturus\nBuild G3 Arcturus\n\n62) MobyNostromo: M G1 Mobynostromo Arcturus\nC Arcturus G\n\n63) panglott: Sacrifice Y3 Panglott\nMove R1 Arcturus Mobynostromo\nMove R2 Arcturus Mobynostromo\nPass\nCatastrophe Mobynostromo Red\n\n\nHomeworlds Online (SDG# 31557)\nVariants: &quot;Hard time&quot;\nStarted: 2017.3.3, Ended: 2017.3.21\nParticipants: Aristos (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\tDraw5PlayAll: ?\n\n2) Aristos: Homeworld B3 R2 G3\n\n3) Draw5PlayAll: Homeworld B1 R3 G3\n\tAristos: Hello. Your move.\n\tAristos: Why did you pass? \n\n4) Aristos: Build G1 Aristos\n\n5) Draw5PlayAll: Build G1! Draw5playall\n\n6) Aristos: Trade G3 Y3 Aristos\n\tDraw5PlayAll: That could be weird.\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Aristos: Build Y1 Aristos\n\n9) Draw5PlayAll: Build G1* Draw5playall\n\n10) Aristos: Discover Y1 Aristos G1 Mold\n\tAristos: What is a &quot;G1*&quot; ship? Why does your ship have an asterisk next to it? I&#39;ve never seen that in the notation. \n\n11) Draw5PlayAll: Build G2097152 Draw5playall\n\tDraw5PlayAll: We shall see. I built a &quot;G1!&quot; ship, and it seems to function as a normal G1...\n\n12) Aristos: Build G2 Aristos\n\tDraw5PlayAll: Hmmm... I should try sacrificing that thing and seeing if I can grow the whole bank...\n\n13) Draw5PlayAll: Trade G2 B2 Draw5playall\n\n14) Aristos: Discover G1 Aristos B1 Plum\n\n15) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tAristos: Weird that the system doesn&#39;t filter the extra letters. Guess they never thought someone would try that. :-) \n\n16) Aristos: Build Y1 Aristos\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) Aristos: Build Y2 Mold\n\n19) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n20) Aristos: Trade Y1 R1 Aristos\n\n21) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n22) Aristos: Build G1 Aristos\n\n23) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B2 G2\nBuild B2 G2\nBuild B3 Draw5playall\n\n24) Aristos: Build G2 Plum\n\n25) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n\tDraw5PlayAll: ??\n\nHomeworlds Online (SDG# 31596)\nVariants: &quot;Hard time&quot;\nStarted: 2017.3.3, Ended: 2017.3.14\nParticipants: fogus (S), panglott (N)\nWinner: fogus\n\n1) panglott: Homeworld B3 G2 Y3\n\n2) fogus: Homeworld Y2 B1 G3\n\n3) panglott: Build Y1 Panglott\n\n4) fogus: Build G1 Fogus\n\n5) panglott: Build Y1 Panglott\n\n6) fogus: Build G1 Fogus\n\n7) panglott: Discover Y1 Panglott B1 Deneb\n\n8) fogus: Discover G1 Fogus B3 Boo\n\n9) panglott: Move Y1 Panglott Deneb\n\n10) fogus: Build G1 Fogus\n\n11) panglott: Build Y1 Panglott\n\n12) fogus: Sacrifice G3 Fogus\nBuild G2 Boo\nBuild G2 Boo\nBuild G3 Fogus\n\n13) panglott: Build Y2 Panglott\n\n14) fogus: Trade G2 Y2 Boo\n\n15) panglott: Move Y2 Panglott Deneb\n\n16) fogus: Trade G3 Y3 Fogus\n\n17) panglott: Build Y3 Panglott\n\n18) fogus: Sacrifice Y3 Fogus\nDiscover Y2 Boo R1 Boingboing\nMove Y2 Boingboing Panglott\nPass\nCatastrophe Panglott Y\n\tfogus: Happy to play again if you&#39;d like.  Send a challenge my way if you&#39;re interested.\n\n\nHomeworlds Online (SDG# 31583)\nStarted: 2017.3.4, Ended: 2017.3.15\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H G3 Y2 B3\n\twil: This is a great game...takes a while to learn....ask any question Long the way.\n\tMobyNostromo: Thank you. I&#39;ll do my best to make this game interesting for you.\n\n2) wil: H B2 Y1 G3\n\twil: Is it your first game?  Do you want me to point out anything?\n\n3) MobyNostromo: B B1 Mobynostromo\n\tMobyNostromo: Not really my first game because I&#39;m in the process of playing three other ones, but I have yet to finish any. I think I&#39;m getting the general hang of it, so go ahead and destroy me - it might be the best way I learn.\n\n4) wil: B G1 Wil\n\twil: It is...watching different attacks come at you is perfect...  I shy away from using G3 as a star...keeps you from getting a factory there.\n\n5) MobyNostromo: T B1 Y1 Mobynostromo\n\tMobyNostromo: What&#39;s a factory?\n\n6) wil: T G1 Y1 Wil\n\twil: When you sacrifice a piece you get to use the power of the piece anywhere in the galaxy....when the green bank is empty, and I have a g3 and g1 I can sack my g3 for 3 grows, grow the g3 Right back and still have two more grows for any color anywhere in the galaxy that I have those.colors whether I have a green in that star system or not.\n\n7) MobyNostromo: B Y2 Mobynostromo\n\tMobyNostromo: Now I understand. I like the idea behind that, like loopholes (or wormholes) in the rules that nurture different strategies. It&#39;s definitely something to keep in mind during my next setup.\n\n8) wil: B Y2 Wil\n\twil: You have pyramid arcade?\n\n9) MobyNostromo: T Y2 G2 Mobynostromo\n\tMobyNostromo: Yes. Do you?\n\n10) wil: D Y1 Wil B3 B3\n\twil: Yes, read the pages on strategies...they are incredibly valuable.\n\n11) MobyNostromo: B Y2 Mobynostromo\n\n12) wil: Sacrifice Y2 Wil\nDiscover Y1 B3 R1 R1\nMove Y1 R1 Mobynostromo\nCatastrophe Mobynostromo Y\n\tMobyNostromo: Will do.\n\n13) MobyNostromo: T G2 Y2 Mobynostromo\n\n14) wil: B G1 Wil\n\twil: I wasn&#39;t going to do it, I was, I wasn&#39;t and then I said I should... I learned all I know by making all the mistakes.\n\tMobyNostromo: WOW! I think I gave some studying to do.\n\n15) MobyNostromo: B B1 Mobynostromo\n\n16) wil: T G3 R3 Wil\n\tDraw5PlayAll: !\n\n17) MobyNostromo: B Y1 Mobynostromo\n\n18) wil: M R3 Wil Mobynostromo\n\n19) MobyNostromo: D B3 Mobynostromo G1 Green\n\n20) wil: A Y2 Mobynostromo\n\n21) MobyNostromo: T B3 R3 Green\n\n22) wil: S R3 Mobynostromo\nA Y1 Mobynostromo\nA B1 Mobynostromo\nP\n\n\twil: Challenge any time\n\tMobyNostromo: Thanks, I will after I study this a bit more.\n\twil: meh...playing and losing is the study (was for me anyway..) I lost by the dozens, seeing the various attacks coming at me, then trying against others, then learning the counters...\r\n\n\nHomeworlds Online (SDG# 31610)\nVariants: &quot;Hard time&quot;\nStarted: 2017.3.4, Ended: 2017.3.7\nParticipants: w00t (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\n\twil: Good luck... \n\tDraw5PlayAll: You are back!!\n\twil: Phooey\n\nHomeworlds Online (SDG# 31654)\nVariants: &quot;Hard time&quot;\nStarted: 2017.3.9, Ended: 2017.3.12\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3 Wil\n\twil: Back for a visit!\n\n\tts52: D&#39;oh! Sorry about that. I should&#39;ve declined the challenge before heading to PAX this weekend. Please challenge me again.\n\nHomeworlds Online (SDG# 31657)\nVariants: &quot;Hard time&quot;\nStarted: 2017.3.11, Ended: 2017.5.7\nParticipants: Subhan64 (S), Grosseteste (N)\nWinner: Subhan64\n\n1) Grosseteste: H B2 R1 G3\n\n2) Subhan64: Homeworld G3 B2 Y3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Grosseteste: T G1 Y1 Grosseteste\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) Grosseteste: B G1 Grosseteste\n\n8) Subhan64: Build Y1 Subhan64\n\n9) Grosseteste: Trade G1 B1 Grosseteste\n\n10) Subhan64: Build G1 Subhan64\n\n11) Grosseteste: Build B1 Grosseteste\n\n12) Subhan64: Trade G1 B1 Subhan64\n\n13) Grosseteste: D B1 Grosseteste G3 Patty\n\n14) Subhan64: Discover B1 Subhan64 G1 Kermit\n\n15) Grosseteste: Build Y1 Grosseteste\n\n16) Subhan64: Build Y2 Subhan64\n\n17) Grosseteste: Move Y1 Grosseteste Patty\n\n18) Subhan64: Trade B1 G1 Kermit\n\n\tGrosseteste: Sorry I wasn&#39;t more attentive, good luck further up the ladder!\n\nHomeworlds Online (SDG# 31618)\nStarted: 2017.3.13, Ended: 2017.5.10\nParticipants: ts52 (S), Personman (N)\nWinner: ts52\n\n1) Personman: Homeworld R1 B3 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: :) Have a good game!\n\n3) Personman: Build G1 Personman\n\n4) ts52: Build G1 Ts52\n\tPersonman: you too!\n\n5) Personman: Trade G1 Y1 Personman\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Personman: Build G1 Personman\n\n8) ts52: Build G1 Ts52\n\n9) Personman: Trade G1 B1 Personman\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Personman: Build G1 Personman\n\n12) ts52: Discover B1 Ts52 G1 Robin\n\n13) Personman: Discover B1 Personman G2 Kestrel\n\n14) ts52: Move Y1 Ts52 Robin\n\n15) Personman: Discover G1 Personman B2 Lark\n\n16) ts52: Build B1 Robin\n\n17) Personman: Trade B1 R1 Kestrel\n\n18) ts52: Trade B1 R1 Robin\n\n19) Personman: Build R2 Kestrel\n\n20) ts52: Build R2 Robin\n\n21) Personman: Move Y1 Personman Kestrel\n\n22) ts52: Trade R2 B2 Robin\n\n23) Personman: Build G1 Personman\n\n24) ts52: Build G2 Ts52\n\n25) Personman: Sacrifice G3 Personman\nBuild G2 Lark\nBuild G3 Lark\nBuild G3 Personman\n\n26) ts52: Discover B1 Robin Y2 Bigbird\n\n27) Personman: Sacrifice Y1 Kestrel\nMove G3 Lark Robin\n\n28) ts52: Move R1 Robin Bigbird\n\n29) Personman: Sacrifice R2 Kestrel\nAttack B2 Robin\nAttack Y1 Robin\n\n30) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Bigbird\nBuild B1 Bigbird\n\n31) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild R2 Kestrel\nBuild Y1 Robin\n\n32) ts52: Discover R1 Bigbird Y3 Zoe\n\n33) Personman: Trade G1 Y1 Lark\n\n34) ts52: Trade B1 G1 Bigbird\n\tts52: Apparently I&#39;m no longer getting notification emails from SDG. I&#39;ll try to remember to check once a day, but if you notice me lagging, feel free to nugde me at tim.seiger@gmail.com.\n\n35) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild Y2 Lark\nBuild Y2 Lark\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Zoe\nBuild R3 Bigbird\n\n37) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild Y3 Robin\nBuild B1 Robin\n\n38) ts52: Move G2 Ts52 Robin\n\n39) Personman: Sacrifice Y3 Robin\nMove G3 Robin Zoe\nMove Y1 Robin Ts52\nMove Y1 Robin Ts52\n\n40) ts52: Sacrifice R3 Bigbird\nAttack B2 Robin\nAttack B1 Robin\nAttack Y1 Ts52\n\tts52: Well that doesn&#39;t look good. ;)\n\n41) Personman: Sacrifice Y2 Lark\nMove Y1 Lark Robin\nMove Y1 Robin Ts52\nCatastrophe Ts52 Y\n\n42) ts52: Move R2 Zoe Ts52\n\n43) Personman: Sacrifice R1 Kestrel\nAttack R1 Zoe\n\n44) ts52: Trade B1 Y1 Robin\n\n45) Personman: Move G3 Zoe Bigbird\n\tts52: Made it with hours to spare. ;)\r\n\n\tPersonman: You just know i was hovering over that &quot;force ts52 to resign&quot; button :D\n\tPersonman: btw, can you remind me of the exact rules for that variant your friend invented, with the central white stars that are an additional win condition? My housemate and I want to try it out.\n\n46) ts52: Move R2 Bigbird Zoe\n\n47) Personman: Sacrifice R1 Zoe\nAttack B1 Bigbird\n\tts52: Hmmm, good question. IIRC, you use black and white colors to build 3 binary systems, one of each size combination. Then there is an additional win condition of controlling 2/3 of those systems. I believe controlling meant having the only ships in it.\n\n48) ts52: Move G1 Bigbird Zoe\n\n49) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild B1 Bigbird\nBuild Y1 Lark\n\n50) ts52: Build R1 Ts52\n\n51) Personman: Trade Y1 R1 Lark\n\n52) ts52: Sacrifice G2 Robin\nBuild R3 Ts52\nBuild R3 Zoe\n\n53) Personman: Sacrifice G3 Personman\nBuild G2 Lark\nBuild G3 Personman\nBuild R3 Lark\n\n54) ts52: Trade R2 Y2 Ts52\n\n55) Personman: Discover B1 Bigbird Y1 Littlebird\n\n56) ts52: Move G1 Zoe Ts52\n\n57) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild B1 Littlebird\nBuild B3 Littlebird\n\n58) ts52: Sacrifice Y2 Ts52\nMove G3 Ts52 Personman\nMove G1 Ts52 Personman\nCatastrophe Personman Green\n\n\tts52: Good game! Happy to play again any time.\n\tPersonman: oh my gosh, i completely missed it. well done. will challenge again!\n\nHomeworlds Online (SDG# 31612)\nStarted: 2017.3.13, Ended: 2017.4.6\nParticipants: w00t (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n\nHomeworlds Online (SDG# 31611)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.3.13, Ended: 2017.3.15\nParticipants: wil (S), RedMerlin (N)\nWinner: wil\n\n1) RedMerlin: Homeworld Y2 B1 G3\n\n2) wil: H R3 B2 G3\n\n3) RedMerlin: Build G1 Redmerlin\n\n4) wil: B G1 Wil\n\tRedMerlin: Oh oops, I accidentally joined two games against you... Should I concede one or would you like to play 2 games?\n\n5) RedMerlin: Trade G1 B1 Redmerlin\n\n6) wil: T G1 B1 Wil\n\n7) RedMerlin: Discover B1 Redmerlin G3 A3\n\n8) wil: B B2 Wil\n\n9) RedMerlin: Build G1 Redmerlin\n\n10) wil: T B1 Y1 Wil\n\n11) RedMerlin: Build G1 Redmerlin\n\n12) wil: B Y1 Wil\n\n13) RedMerlin: Trade G1 Y1 Redmerlin\n\n14) wil: D Y1 Wil G1 G1\n\n15) RedMerlin: Build Y2 Redmerlin\n\twil: If you have the arcade, read the strategies..\n\tRedMerlin: Why? Don&#39;t take the last piece of a size?\n\n16) wil: B Y2 G1\n\twil: There is a lot, factories, teleportation, investments..\n\tRedMerlin: Oh yeah I know, I have read that, I set up an early investment in the other game...\n\n17) RedMerlin: Move Y2 Redmerlin A3\n\n18) wil: S G3 Wil\nB Y3 Wil\nB Y3 Wil\nB Y3 G1\n\n19) RedMerlin: Discover G1 Redmerlin B3 B3\n\n20) wil: M Y2 G1 B3\n\tRedMerlin: Arg! I could have moved my small yellow forward and caused a catastrophe!\n\n21) RedMerlin: Move Y1 Redmerlin A3\n\n22) wil: S B2 Wil\nT Y3 R3 G1\nT Y3 G3 Wil\n\twil: Yes when I saw that you didn&#39;t move it forward, I figured I&#39;d try this.\n\tRedMerlin: Yeah, if I had moved that one forward I could have sacrificed my 2 to send my 1 two jumps forward...\n\n23) RedMerlin: Trade Y2 R2 A3\n\n24) wil: S G3 Wil\nB Y2 B3\nB Y3 Wil\nB Y3 G1\n\twil: Now you&#39;ve put your two yellows in yye same star system, keeping you from being able to grow a yello\n\tRedMerlin: Oh... Yeah...\n\n25) RedMerlin: Build G1 Redmerlin\n\tRedMerlin: I feel like I&#39;m already very dead...\n\twil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.\n\twil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.\n\twil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.\n\n26) wil: M Y3 G1 A3\n\n27) RedMerlin: Sacrifice G3 Redmerlin\nBuild G2 Redmerlin\nBuild B1 A3\nBuild B2 A3\n\n28) wil: S R3 G1\nA G1 B3\nA B2 A3\nA R2 A3\n\n29) RedMerlin: Discover Y1 A3 R1 C1\n\n30) wil: M Y3 A3 Redmerlin\n\twil: Yes not owning any big ships has shortened your days...  Although I should have just sent my big fuel ship in\n\tRedMerlin: Oh...\n\n31) RedMerlin: Trade G1 R1 Redmerlin\n\n32) wil: S R2 A3\nA G2 Redmerlin\nA R1 Redmerlin\n\n\twil: The oilagarchy has won, domination of the galaxy via fuel\n\twil: Challenge me anytime... \n\nHomeworlds Online (SDG# 31675)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.3.13, Ended: 2017.3.13\nParticipants: RedMerlin (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) RedMerlin: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) RedMerlin: Build G1 Redmerlin\n\n5) wil: T G1 B1 Wil\n\tRedMerlin: Oh oops, I accidentally joined two games against you... Should I concede one or would you like to play 2 games?\n\twil: Two is fine...\n\n6) RedMerlin: Discover G1 Redmerlin Y3 Al\n\tRedMerlin: Cool ok\n\n7) wil: B B1 Wil\n\n8) RedMerlin: Build G1 Redmerlin\n\n9) wil: D B1 Wil G2 G2\n\n10) RedMerlin: Discover G1 Redmerlin B3 B3\n\n11) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\n\n12) RedMerlin: Trade G3 B3 Redmerlin\n\n13) wil: S B2 G2\nT B2 Y2 G2\nT B3 G3 Wil\n\n\tRedMerlin: Sorry, this was my first game and I&#39;m crap at it...\n\twil: No worries... You&#39;ll lose 90% of your first games.. This was an example of getting frozen out of an economy.\n\nHomeworlds Online (SDG# 31678)\nVariants: &quot;Unrated&quot;\nStarted: 2017.3.14, Ended: 2017.3.20\nParticipants: fogus (S), RedMerlin (N)\nWinner: fogus\n\n1) RedMerlin: Homeworld Y1 B2 G3\n\n2) fogus: Homeworld G3 B2 Y3\n\n3) RedMerlin: Build G1 Redmerlin\n\n4) fogus: Build Y1 Fogus\n\n5) RedMerlin: Discover G1 Redmerlin Y3 Y3\n\n6) fogus: Trade Y1 G1 Fogus\n\n7) RedMerlin: Build G1 Redmerlin\n\n8) fogus: Build G2 Fogus\n\n9) RedMerlin: Build G2 Redmerlin\n\n10) fogus: Sacrifice Y3 Fogus\nDiscover G1 Fogus Y1 Bounce\nMove G1 Bounce Y3\nMove G1 Y3 Redmerlin\nCatastrophe Redmerlin G\n\n\nHomeworlds Online (SDG# 31676)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.3.14, Ended: 2017.3.28\nParticipants: wil (S), bhorner (N)\nWinner: wil\n\n1) bhorner: Homeworld B2 Y1 G3\n\n2) wil: H R3 B1 G3\n\n3) bhorner: B G1 Bhorner\n\n4) wil: B G1 Wil\n\n5) bhorner: D G1 Bhorner B3 Blip\n\n6) wil: T G1 Y1 Wil\n\n7) bhorner: Trade G1 Y1 Blip\n\n8) wil: B Y2 Wil\n\tbhorner: That was quick.\n\n9) bhorner: Build G1 Bhorner\n\n10) wil: B Y2 Wil\n\n11) bhorner: Sac G1 Bhorner\nB Y2 Blip\n\n12) wil: D Y2 Wil G2 G2\n\n13) bhorner: M Y1 Blip G2\n\n14) wil: T Y2 R2 Wil\n\n15) bhorner: Trade Y2 R2 Blip\n\twil: Oh, I missed a good move there...sack g3 build all the y3s catastrophe, and I would be one ahead with the ability to build...dang it.\n\tbhorner: You can take it back.  :)\n\twil: Lol... No go ahead..\n\n16) wil: B Y2 Wil\n\n17) bhorner: Build G1 Bhorner\n\n18) wil: D Y1 Wil G2 Geetoo\n\n19) bhorner: Discover G1 Bhorner Y3 Doh\n\n20) wil: S G3 Wil\nB Y2 G2\nB Y3 Geetoo\nB Y3 Wil\n\n21) bhorner: D Y1 G2 R1 Spark\n\n22) wil: T Y2 G2 Wil\n\n23) bhorner: B G1 Bhorner\n\n24) wil: M Y3 Geetoo Blip\n\tbhorner: Sorry for the delay, no choices look particularly good, and I&#39;ve only gotten to look at the game for 5 minutes at a time.\n\n25) bhorner: T G1 R1 Bhorner\n\twil: If you have a set if pyramids, it is handy to set up the game when it gets complicated...but you are in trouble here..\n\tbhorner: I have lots.  :). I just got the pyramid arcade too.  :). I thought you would win, but hoped to learn something.  Seems like it&#39;s not over yet though.  :)\n\n26) wil: M Y2 G2 Doh\n\twil: Oh no, this is a game of mistakes..and capitalizing in them..I have plenty of time to blow it.\n\n27) bhorner: D G1 Doh Y2 Tri\n\n28) wil: B R1 Wil\n\n29) bhorner: S Y1 Spark\nM R2 Blip Tri\n\n30) wil: M R2 Wil Geetoo\n\n31) bhorner: B G1 Bhorner\n\n32) wil: B Y1 G2\n\tbhorner: Guess I could have done that a lot sooner.  I&#39;ve been tired the last couple days, keep thinking I&#39;ll come up with something awesome tomorrow.  :)\n\twil: Lol\n\n33) bhorner: M R1 Bhorner Doh\n\n34) wil: M Y3 Blip Tri\n\n35) bhorner: S G3 Bhorner\nB R1 Tri\nB R2 Tri\nB R3 Doh\n\n36) wil: B R3 Geetoo\n\n37) bhorner: M R2 Tri Wil\n\n38) wil: S Y3 Tri\nM R3 Geetoo Doh\nM R3 Doh Bhorner\nM Y2 Doh Bhorner\n\n39) bhorner: M R1 Tri Wil\nCat Wil R\n\n40) wil: A G1 Bhorner\n\twil: You left g1 home alone..\n\tbhorner: Did I have some better move?  You could just have moved in your y3 last move instead of building r3.  :). My only hope was boldness and flustering you (which I didn&#39;t actually count on).  Now I will take the pretend 2nd place and pound of flesh of half your homeworld.  :). gg\n\n\tbhorner: I think I said something you didn&#39;t do...  But the result is the same.  :)\n\twil: What... That old place?  We found this lovely new star with growth potential... It appears abandoned...just a few indigenous we can easily enslave.\n\twil: Feel free to challenge anytime... I like paying\n\nHomeworlds Online (SDG# 31683)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.3.15, Ended: 2017.3.17\nParticipants: wil (S), RedMerlin (N)\nWinner: wil\n\n1) RedMerlin: Homeworld Y1 B2 G3\n\n2) wil: H R3 B1 G3\n\tRedMerlin: Hi I&#39;m back\n\n3) RedMerlin: Build G1 Redmerlin\n\twil: Lol, good luck!\n\twil: Just tell me how much info you would like.. And if you want me to give you a chance to take back moves I see as terrible...or only report after the fact.\n\n4) wil: B G1 Wil\n\tRedMerlin: Haha thanks, I&#39;ll probably need it... And I think reporting after the fact is helpful enough, unless it&#39;s like a game losing mistake\n\n5) RedMerlin: Trade G1 B1 Redmerlin\n\twil: I&#39;ll do my best to shorten the curve and reduce the number if times you touch the stove... (Unless it contains s valuable lesson)\n\tRedMerlin: Thanks so much!\n\n6) wil: T G1 B1 Wil\n\tRedMerlin: Did it matter if I traded for a blue or a yellow there? And if so, which was the better option (taking into account only having 2 B2s and 3 Y3s)?\n\tRedMerlin: Y2s*\n\twil: I think the b1 is correct, shortest way to 3s\n\n7) RedMerlin: Build B2 Redmerlin\n\n8) wil: B B2 Wil\n\n9) RedMerlin: Discover B1 Redmerlin G3 G3\n\n10) wil: T B2 Y2 Wil\n\n11) RedMerlin: Build G1 Redmerlin\n\n12) wil: Build Y1 Wil\n\n13) RedMerlin: Trade G1 Y1 Redmerlin\n\n14) wil: B Y2 Wil\n\n15) RedMerlin: Build G1 Redmerlin\n\tRedMerlin: I know it gives you access to medium yellows but I don&#39;t want to have 0 yellow ships if you take that last one...\n\n16) wil: T Y2 R2 Wil\n\n17) RedMerlin: Trade B2 R2 Redmerlin\n\twil: Exactly right... Onen thing to keep in mind when this happens is knowing you have a 2 you can trade some time as well...you only get outrun when you don&#39;t have the same size\n\twil: All those things are what you weigh to find the best move.\n\n18) wil: Build Y2 Wil\n\n19) RedMerlin: Move R2 Redmerlin G3\n\n20) wil: D Y2 Wil G2 G2\n\n21) RedMerlin: Build B2 G3\n\n22) wil: S G3 Wil\nB Y2 G2\nB Y3 G2\nB Y3 Wil\n\n23) RedMerlin: Move Y1 Redmerlin G3\n\n24) wil: M Y3 G2 G3\n\n25) RedMerlin: Build Y3 G3\n\n26) wil: S R2 Wil\nA Y3 G3\nA R2 G3\n\twil: This looks like a lovely solar system... I like what you&#39;ve done with the place.. So many pretty colors..\n\n\twil: IMA just gonna re arrange the furniture a little...\n\tRedMerlin: That sounds very ominous...\n\twil: Crap... I should a let you change that move...sorry...  Next game.\n\twil: But that is how a red sacrifice works...\n\tRedMerlin: Ohhhhh.....\r\n\n\tRedMerlin: I had completely forgotten you could sacrifice reds for attacks in other places...\n\twil: Yez...everything sacrifices... And next move was in!\n\tRedMerlin: Yep\n\nHomeworlds Online (SDG# 31697)\nVariants: &quot;Unrated&quot;\nStarted: 2017.3.17, Ended: 2017.3.25\nParticipants: Personman (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Personman: Homeworld B1 Y2 G3\n\n3) wil: B G1 Wil\n\n4) Personman: Build G1 Personman\n\n5) wil: T G1 Y1 Wil\n\n6) Personman: Trade G1 B1 Personman\n\n7) wil: B Y1 Wil\n\n8) Personman: Build G1 Personman\n\n9) wil: D Y1 Wil B2 B2\n\n10) Personman: Trade G1 R1 Personman\n\n11) wil: B Y2 Wil\n\n12) Personman: Build G1 Personman\n\n13) wil: D Y1 Wil G2 G2\n\n14) Personman: Discover B1 Personman G3 G3\n\n15) wil: S G3 Wil\nB Y2 B2\nB Y3 B2\nB Y3 Wil\n\n16) Personman: Trade G3 Y3 Personman\n\n17) wil: T Y3 G3 Wil\n\n18) Personman: Build G1 Personman\n\n19) wil: T Y1 R1 B2\n\n20) Personman: Build B1 G3\n\n21) wil: T Y2 R2 Wil\n\n22) Personman: Trade B1 Y1 G3\n\n23) wil: M Y2 B2 G3\n\n24) Personman: Sacrifice Y1 G3\nMove B1 G3 Personman\n\n25) wil: B Y1 G2\n\n26) Personman: Build B1 Personman\n\n27) wil: B Y2 G3\n\n28) Personman: Discover B1 Personman Y3 Y3\n\n29) wil: B G1 Wil\n\n30) Personman: Build B2 Personman\n\n31) wil: T Y3 B3 B2\n\n32) Personman: Move B2 Personman Y3\n\n33) wil: B Y3 G2\n\n34) Personman: Build G2 Personman\n\n35) wil: S B3 B2\nT Y3 B3 G2\nT Y2 B2 G3\nT Y1 R1 G2\n\n36) Personman: Sacrifice G1 Personman\nBuild B3 Y3\n\n37) wil: M B3 G2 Y3\nC Y3 B\n\n38) Personman: Build R2 Personman\n\n39) wil: S G3 Wil\nB R2 G2\nB R3 B2\nB R3 Wil\n\n40) Personman: Discover G2 Personman Y3 Y3\n\n41) wil: B R3 G2\n\twil: The map of the galaxy can change fast\n\n42) Personman: Build G1 Personman\n\n43) wil: M R3 G2 Y3\n\n44) Personman: Discover G2 Y3 Y2 Y2\n\n45) wil: T R3 G3 Wil\n\n46) Personman: Build G2 Y2\n\twil: Not to my star!\n\n47) wil: S G3 Wil\nB Y1 G3\nB Y3 G2\nB R3 Wil\n\n48) Personman: Move G2 Y2 Wil\n\n49) wil: B G3 Wil\n\n50) Personman: Build G3 Y2\n\n51) wil: S Y2 G3\nM G1 Wil Y2\nM G3 Wil Y2\nC Y2 G\n\n52) Personman: Discover G2 Wil B2 B2a\n\n53) wil: S B2 G3\nT R3 G3 Y3\nT R3 G3 Wil\n\n54) Personman: Trade G2 Y2 B2a\n\n55) wil: S G3 Y3\nB Y2 G3\nB Y3 G2\nB R3 Wil\n\n56) Personman: Discover R1 Personman G3 G3a\n\n57) wil: T R1 B1 B2\n\n58) Personman: Build R1 Personman\n\n59) wil: S Y1 G2\nM R3 B2 G3a\n\n60) Personman: Build R3 G3a\n\n61) wil: A R3 G3a\n\n62) Personman: Move R1 Personman G3a\nCatastrophe G3a R\n\n63) wil: M R1 G2 G3\n\n64) Personman: Sacrifice G1 Personman\nBuild Y1 B2a\n\twil: Can&#39;t let you have that queen\n\twil: Was a valid response thou\n\n65) wil: S B1 B2\nT Y1 B1 G3\n\n66) Personman: Build G1 Personman\n\n67) wil: B Y1 G3\n\n68) Personman: Trade Y2 G2 B2a\n\n69) wil: B B2 G3\n\n70) Personman: Discover B1 Personman G3 G3a\n\n71) wil: M R3 Wil B2a\n\twil: Dooms day machine almost complete\n\n72) Personman: Sacrifice G2 B2a\nBuild B2 G3a\nBuild B3 G3a\n\n73) wil: S Y2 G3\nM B1 G3 G2\nM B1 G2 G3a\nC G3a B\n\twil: Doomsday machine ready ready to lunch\n\n74) Personman: Discover Y1 B2a G3 G3a\n\n75) wil: B Y2 G3\n\n76) Personman: Trade Y3 B3 Personman\n\n77) wil: B B1 G3\n\n78) Personman: Build Y2 G3a\n\n79) wil: B Y3 G3\n\twil: I should have just stuck to the plan\n\n80) Personman: Sacrifice Y2 G3a\nMove Y1 G3a B2a\nMove Y1 B2a G3\nCatastrophe G3 Y\n\n81) wil: Sacrifice Y3 G2\nMove B2 G3 Personman\nMove B1 G3 Personman\nDiscover R3 B2a Y3 Y3\nCatastrophe Personman B\n\n\twil: I didn&#39;t want to blow up your entire civilization anyway...some of them must be useful for our future colonies...\n\tDraw5PlayAll: I wish SDG supported star abbreviations. Then opponents could simply use &quot;Draw5&quot; and I can type the first three letters of their name. Of course, then UserGuy5713 discovers a star and calls it UserGuy5714....\n\tDraw5PlayAll: I like the direct names when it makes it easy to know that yes I want to go to a G2 star system and I do not have to remember if it was &quot;out&quot; or &quot;Kermit&quot; or &quot;dagobah&quot; or &quot;treehouse&quot;... the view for entering comments shows little of the actual battle on my screen.\n\tPersonman: gg! that opening with the yellows was quite something. i can&#39;t believe i clung to life for so long :)\n\twil: thanx for the game...challenge anytime..I like playing\n\nHomeworlds Online (SDG# 31716)\nVariants: &quot;Unrated&quot;\nStarted: 2017.3.17, Ended: 2017.4.1\nParticipants: RedMerlin (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\n2) RedMerlin: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) RedMerlin: Build G1 Redmerlin\n\n5) wil: T G1 Y1 Wil\n\n6) RedMerlin: Trade G1 Y1 Redmerlin\n\twil: The building phase...\n\tDraw5PlayAll: Less diverse than chess...\n\n7) wil: B Y2 Wil\n\n8) RedMerlin: Build Y2 Redmerlin\n\n9) wil: B Y2 Wil\n\n10) RedMerlin: Discover Y1 Redmerlin B3 B3\n\n11) wil: T Y1 R1 Wil\n\n12) RedMerlin: Build G1 Redmerlin\n\n13) wil: B R1 Wil\n\n14) RedMerlin: Trade Y2 R2 Redmerlin\n\n15) wil: D Y2 Wil B2 B2\n\n16) RedMerlin: Build R2 Redmerlin\n\n17) wil: M R1 Wil B2\n\n18) RedMerlin: Trade G1 B1 Redmerlin\n\n19) wil: S G3 Wil\nB R2 B2\nB R3 B2\nB R3 Wil\n\n20) RedMerlin: Trade R2 Y2 Redmerlin\n\n21) wil: M R3 B2 B3\n\n22) RedMerlin: Sacrifice Y1 B3\nPass\n\n23) wil: T R3 G3 Wil\n\tRedMerlin: Quick! Scuttle the ship!\n\tRedMerlin: You will never take us alive!\n\n24) RedMerlin: Build G1 Redmerlin\n\n25) wil: S G3 Wil\nB R2 B2\nB R3 B3\nB R3 Wil\n\n26) RedMerlin: Build G1 Redmerlin\n\twil: The royal armada is ready to visit!\n\tRedMerlin: Crapppp.....\n\n27) wil: T R1 G1 B2\n\tRedMerlin: I don&#39;t even know what else I can do right now...!\n\twil: You will be well taken care if under the new regime.\n\n28) RedMerlin: Discover G1 Redmerlin Y3 Y3\n\tRedMerlin: Sure...\n\n29) wil: M R2 B2 Y3\n\n30) RedMerlin: Build G2 Redmerlin\n\n31) wil: A G1 Y3\n\twil: A g1 y3\n\n32) RedMerlin: Build R1 Redmerlin\n\n33) wil: Move G1 Y3 Redmerlin\nCatastrophe Redmerlin G\n\n34) RedMerlin: Trade R1 G1 Redmerlin\n\tRedMerlin: Welp... \n\n35) wil: S Y2 B2\nM R3 B3 Redmerlin\nM G1 B2 B3\n\twil: only way to learn that one is the hardway...any time you get three in a system...look around...and then don&#39;t let it last long  \n\n36) RedMerlin: Pass\n\tRedMerlin: Yep...\n\n37) wil: S R3 Wil\nA G1 Redmerlin\nA R2 Redmerlin\nA B1 Redmerlin\n\n38) RedMerlin: Pass\n\twil: Your people will be well taken care of...if those yellow bellies want to run away...so be it\n\tRedMerlin: Awe! &quot;You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.&quot;\n\n39) wil: A Y2 Redmerlin\n\twil: Well then, welcome to the revolution\n\n\nHomeworlds Online (SDG# 31669)\nStarted: 2017.3.18, Ended: 2017.4.23\nParticipants: Personman (S), Laurie_Menke (N)\nWinner: Personman\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi Personman! It was good to meet you at PAX East!  :)\n\n2) Personman: Homeworld Y1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Personman: Build G1 Personman\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) Personman: Trade G1 R1 Personman\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) Personman: Build G1 Personman\n\n9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller\n\n10) Personman: Trade G1 Y1 Personman\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) Personman: Build Y1 Personman\n\n13) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n14) Personman: Discover Y1 Personman G3 Grainy\n\n15) Laurie_Menke: Build Y2 Laurie_menke\n\n16) Personman: Build Y2 Grainy\n\n17) Laurie_Menke: Discover Y2 Laurie_menke G2 Green\n\n18) Personman: Build Y3 Personman\n\tLaurie_Menke: Oops... sorry... gotta back up....\n\n19) Laurie_Menke: Sacrifice G1 Yeller\nBuild Y2 Green\n\n20) Personman: Trade Y3 R3 Personman\n\n21) Laurie_Menke: Discover Y2 Green G1 Lime\n\n22) Personman: Trade Y1 B1 Personman\n\n23) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\n24) Personman: Build G1 Personman\n\n25) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y1 Lime\nBuild Y3 Green\nBuild G2 Laurie_menke\n\n26) Personman: Move Y2 Grainy Green\n\n27) Laurie_Menke: Move Y3 Green Grainy\n\n28) Personman: Sacrifice R1 Personman\nAttack Y2 Green\n\n29) Laurie_Menke: Discover Y1 Lime G3 Forest\n\n30) Personman: Build G2 Personman\n\n31) Laurie_Menke: Build Y3 Forest\n\n32) Personman: Trade G1 B1 Personman\n\n33) Laurie_Menke: Trade G2 B2 Laurie_menke\n\n34) Personman: Move B1 Personman Grainy\n\n35) Laurie_Menke: Build G1 Laurie_menke\n\n36) Personman: Build R1 Personman\n\n37) Laurie_Menke: Build G2 Laurie_menke\n\n38) Personman: Discover R1 Personman B3 Blimp\n\n39) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack B1 Grainy\n\n40) Personman: Sacrifice R1 Blimp\nAttack B1 Grainy\n\n41) Laurie_Menke: Trade G2 R2 Laurie_menke\n\n42) Personman: Discover Y1 Grainy G2 Gurney\n\n43) Laurie_Menke: Move Y2 Lime Gurney\n\n44) Personman: Discover Y1 Gurney G1 Grumpy\n\n45) Laurie_Menke: Move B2 Laurie_menke Gurney\n\n46) Personman: Build R1 Personman\n\n47) Laurie_Menke: Move B2 Gurney Forest\n\n48) Personman: Discover Y2 Green B3 Blur\n\n49) Laurie_Menke: Build B2 Forest\n\n50) Personman: Move R3 Personman Blur\n\n51) Laurie_Menke: Build R1 Laurie_menke\n\n52) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild R1 Personman\nBuild R2 Blur\n\n53) Laurie_Menke: Move R1 Laurie_menke Gurney\n\n54) Personman: Sacrifice Y2 Green\nMove R3 Blur Gurney\nMove R3 Gurney Laurie_menke\n\n55) Laurie_Menke: Build R2 Laurie_menke\n\n56) Personman: Sacrifice R2 Blur\nAttack G1 Laurie_menke\nAttack G1 Laurie_menke\n\n57) Laurie_Menke: Move Y2 Gurney Laurie_menke\n\n58) Personman: Attack R2 Laurie_menke\n\n59) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack R2 Laurie_menke\nAttack G1 Laurie_menke\n\n60) Personman: Attack R2 Laurie_menke\n\tLaurie_Menke: This is not looking good...\n\n61) Laurie_Menke: Sacrifice Y3 Grainy\nMove Y1 Forest Personman\nMove B2 Forest Personman\nMove B2 Forest Personman\nCatastrophe Personman B\n\n62) Personman: Sacrifice R2 Laurie_menke\nAttack Y2 Laurie_menke\nAttack G1 Laurie_menke\n\n\tLaurie_Menke: At least I went down fighting.  :)  Congratulations!  Well played!  Thanks for the fun!  Challenge me to anything anytime!\n\tPersonman: Good game, and thanks! I&#39;ll definitely take you up on that :)\n\nHomeworlds Online (SDG# 31315)\nVariants: &quot;Unrated&quot;\nStarted: 2017.3.18, Ended: 2017.5.8\nParticipants: wil (S), Draw5PlayAll (W), Laurie_Menke (N), w00t (E)\nWinner: wil\n\n1) Laurie_Menke: Homeworld B3 Y1 G3\n\tLaurie_Menke: Hi Everyone!  Just checking... if I understand correctly, if either Draw5PlayAll or I win, it&#39;s a win for our team, and the same goes for w00t and wil.  Yes?  Anything else I need to understand?  It&#39;s been a looooong time since I played a 4-player game!\n\n2) wil: H R3 G2 B3\n\tDraw5PlayAll: Yes, I think so. However, if w00t does not show up to play, then we have to make it a regular no teams 3P game.\r\n\r\nI hate it when games start without me knowing... especially since I did not even get the notice that there was a chat message!\n\tLaurie_Menke: Huh... that&#39;s weird about you not getting notified.  Sorry!\n\tLaurie_Menke: Hmmm... it does look like w00t is AWOL.  Shall we give up on this game?\n\tDraw5PlayAll: AWOL??\r\n\r\nJust force a surrender and play it as a standard 3P game with extra pieces.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tDraw5PlayAll: On second thought, perhaps we should annul this and issue another challenge.\n\tDraw5PlayAll: I added another challenge. I put Felix in it since I needed someone else to challenge (and he came to mind first), and making it open causes the game to start a month after the challenge is issued.\n\tDraw5PlayAll: If you two want to duel it out, fine.\n\tLaurie_Menke: Your choice, wil!\n\twil: Wow... We will never empty this bank and no way to ever freeze anyone out of an economy!!  What a challenge?\n\n4) wil: Build B1 Wil\n\tDraw5PlayAll: Just discover 4 systems...\n\tLaurie_Menke: Yeah, I hadn&#39;t thought about that... probably not worth playing.  Agreed?  Should I terminate?\n\n5) Laurie_Menke: Discover G1 Laurie_menke Y2 Bank\n\twil: can&#39;t terminate an experiment\n\n6) wil: Build B1 Wil\n\tDraw5PlayAll: Wil, I issued a new teams challenge and you are the only one not to respond... why?\n\tLaurie_Menke: LOL... then we shall experiment away!  :)\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) wil: T B1 R1 Wil\n\n9) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n10) wil: B B1 Wil\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) wil: T B1 Y1 Wil\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\n14) wil: Trade B1 G1 Wil\n\n15) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n16) wil: D G1 Wil Y1 Y1\n\n17) Laurie_Menke: Build R1 Laurie_menke\n\n18) wil: B Y1 Wil\n\n19) Laurie_Menke: Trade G1 Y1 Blue\n\n20) wil: Build Y2 Wil\n\n21) Laurie_Menke: Discover Y1 Blue G1 Green\n\tLaurie_Menke: Oh, man... did I almost do that again... with this many pieces!?!  I will NOT let you freeze me out of an economy... I will not let you freeze me out of an economy... (my new mantra).  ;)\n\n22) wil: M Y2 Wil Green\n\twil: should always be...\n\n23) Laurie_Menke: Build Y2 Green\n\n24) wil: B Y2 Green\n\n25) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n26) wil: Build Y2 Wil\nCatastrophe Green Y\n\n27) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tLaurie_Menke: LOL!\n\n28) wil: D Y1 Wil G1 G1\n\n29) Laurie_Menke: Discover Y1 Laurie_menke G2 G2\n\twil: I&#39;ll teach you not to take advantage of blatant mistakes\r\n\n\tLaurie_Menke: Dang it... I actually WANTED you to do that, but now I can&#39;t remember why.  ::sigh::\n\n30) wil: B Y2 Wil\n\n31) Laurie_Menke: Build Y2 G2\n\tDraw5PlayAll: What?\n\tLaurie_Menke: What&#39;s the problem?\n\twil: Idk.. Fat fingers?\n\tLaurie_Menke: LOL!\n\n32) wil: B Y2 G1\n\n33) Laurie_Menke: Sacrifice Y2 G2\nMove Y1 G2 G1\nMove Y1 G1 Wil\nCatastrophe Wil Y\n\n34) wil: Build Y1 G1\n\n35) Laurie_Menke: Trade B1 Y1 Laurie_menke\n\n36) wil: B B1 Wil\n\n37) Laurie_Menke: Discover Y1 Laurie_menke G2 G2\n\n38) wil: S B1 Wil\nT Y1 B1 G1\n\n39) Laurie_Menke: Build G1 Laurie_menke\n\n40) wil: B B1 G1\n\n41) Laurie_Menke: Build R1 Laurie_menke\n\n42) wil: Build R1 Wil\n\n43) Laurie_Menke: Move R1 Laurie_menke Bank\n\n44) wil: M Y2 G1 Bank\n\n45) Laurie_Menke: Move R1 Bank Y1\n\n46) wil: S R1 Wil\nA R1N Y1\n\n47) Laurie_Menke: Discover G1 Bank R1 R1\n\n48) wil: M Y2 Bank R1\n\n49) Laurie_Menke: Build Y1 G2\n\tLaurie_Menke: Grrrr...  ;)\n\n50) wil: A G1N R1\n\twil: It wasn&#39;t a donation?\r\n\n\n51) Laurie_Menke: Discover Y1 G2 R1 Red\n\twil: It appears the bank is empty...and despite Tue hostel looking environment, I think I see welcoming life.\n\n52) wil: B Y2 G1\n\n53) Laurie_Menke: Build Y2 G2\n\n54) wil: B Y2 R1\n\n55) Laurie_Menke: Move Y2 G2 Y1\n\n56) wil: D R1 Y1 B2 B2\n\n57) Laurie_Menke: Build R2 Laurie_menke\n\n58) wil: S G1 Y1\nB R2 B2\n\n59) Laurie_Menke: Move R2 Laurie_menke G2\n\n60) wil: M Y2 R1 B2\n\n61) Laurie_Menke: Build R2 G2\n\n62) wil: D Y1 G1 G2 Geetoo\n\n63) Laurie_Menke: Move R2 G2 Y1\n\n64) wil: T R2 G2 B2\n\n65) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild R2 Y1\n\n66) wil: Sacrifice Y1 Geetoo\nMove R1 Wil G1\n\n67) Laurie_Menke: Sacrifice Y2 Y1\nMove R2 Y1 Wil\nMove R2 Y1 Wil\n\n68) wil: B R2 G1\n\n69) Laurie_Menke: Build R2 Wil\nCatastrophe Wil R\n\n70) wil: B R2 B2\n\n71) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: I am probably counting my chickens waaaayyyy too soon, but I think I may have you!  That&#39;d be a first!\n\tDraw5PlayAll: How do you plan to get the green?\n\n72) wil: B G1 B2\n\tLaurie_Menke: For me to know and you to find out!  ;)\n\n73) Laurie_Menke: Move G1 Laurie_menke B2\n\tDraw5PlayAll: My question was rhetorical.\n\n74) wil: A G1N B2\n\tLaurie_Menke: :)\n\n75) Laurie_Menke: Build G1 Laurie_menke\n\n76) wil: S Y2 R1\nM G1 B2 Laurie_menke\nM G1 B2 Laurie_menke\nC Laurie_menke G\n\n77) Laurie_Menke: Move Y1 Red Wil\n\n78) wil: M G2 B2 Laurie_menke\n\n79) Laurie_Menke: Build Y1 Wil\n\n80) wil: S R2 G1\nA R1N Laurie_menke\nA Y1N Wil\n\twil: You had me and let me go\n\twil: I think that is it.\n\tLaurie_Menke: Awww, man! I hate when I do stupid things.  ::sigh::\n\tLaurie_Menke: Well played, as always, wil!  Congrats on the win!  :D\n\n\nHomeworlds Online (SDG# 31701)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.3.19, Ended: 2017.3.26\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) wil: H B3 Y1 G3\n\tDraw5PlayAll: I found a loophole... I think...\n\twil: What...you want me to pass?   Like second seat do ya?\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\twil: Ah, the emporers favorite opening\n\n6) wil: T G1 R1 Wil\n\tDraw5PlayAll: I thought he was indifferent about B1+R2 and R1+B2 unless one of the stars was already taken.\n\twil: Yez, br banker\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) wil: B R1 Wil\n\tDraw5PlayAll: Well, the loophole is that I can never lose by just repeatedly passing over and over... I think...\n\twil: Start another game, test your theory\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Two can play at that game.\n\n10) wil: D R1 Wil R2 R2\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) wil: S G3 Wil\nB R2 R2\nB R2 Wil\nB R3 Wil\n\n13) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n14) wil: T R3 G3 Wil\n\n15) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n16) wil: T R2 Y2 Wil\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) wil: M Y2 Wil R2\n\n19) Draw5PlayAll: D Y2 Draw5playall G3 G3\n\n20) wil: D R2 R2 Y3 Y3\n\n21) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 G3\n\n22) wil: S G3 Wil\nB Y3 R2\nB R2 R2\nB R3 Wil\n\n23) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n24) wil: T R3 G3 Wil\n\n25) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade Y3 R3 G3\n\n26) wil: Sacrifice Y3 R2\nMove R1 R2 Y3\nMove R1 Y3 Draw5playall\nMove R2 Y3 Draw5playall\nCatastrophe Draw5playall R\n\n27) Draw5PlayAll: Move R3 G3 Draw5playall\n\n28) wil: Build G1 Wil\n\tDraw5PlayAll: Thought so\n\n29) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\tDraw5PlayAll: As the empire is in ruins we are working on a planet sized white flag though we are not ready to use it.\n\n30) wil: T G1 B1 Wil\n\twil: I really am liking the renovations, we are planning on coming over for a visit.\n\n31) Draw5PlayAll: Build R1 Draw5playall\n\twil: There was a valid reason to blast a wormhole..\n\n32) wil: B G1 Wil\n\twil: And he almost lost it due to lack of thought!\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) wil: B G2 Wil\n\n35) Draw5PlayAll: Sac Y2 G3\nMove G1 Draw5playall Wil\nCatastrophe Wil Green\nMove R3 Draw5playall Wil\n\n36) wil: M R2 R2 Wil\n\tDraw5PlayAll: There was a long period of time (at least eight months) when you never logged on to SDG at all... why, and what made now your time to come back?\n\twil: I just got busy.. Or lazy.. But I&#39;ve told a lit if people with arcade that this is the best place to learn homeworlds... Come here and play a lot,.lose repeatedly and learn attacks and.counters withe every loss\n\twil: I thought I should be here...\n\n37) Draw5PlayAll: Attack R2 Wil\n\n38) wil: T B1 R1 Wil\nC Wil R\n\tDraw5PlayAll: Never resign!\n\twil: Nice!\n\n\twil: We warped into a new galaxy unknown to this format... Good capitalization of my errors!!!\n\tDraw5PlayAll: I wonder what would happen if you could make a move action and go to a single star, then we start again with that as your homeworld...\n\twil: no...when you lose your homeworld you lose all control of your ships throughout the galaxy, they are reliant on the constant signal from home...\n\nHomeworlds Online (SDG# 31717)\nVariants: &quot;Unrated&quot;\nStarted: 2017.3.19, Ended: 2017.3.27\nParticipants: wil (S), Laurie_Menke (N)\nWinner: wil\n\n1) Laurie_Menke: Homeworld B2 R1 G3\n\tLaurie_Menke: Hi wil!  :)  You wanna beat me at a game of Homeworlds?\n\n2) wil: H Y3 B1 G3\n\twil: If you insist.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :)\n\n4) wil: B G1 Wil\n\tLaurie_Menke: I doubt I have much choice... but I&#39;ll do my best!\n\tLaurie_Menke: I doubt I have much choice... but I&#39;ll do my best!\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) wil: T G1 B1 Wil\n\n7) Laurie_Menke: Build Y1 Laurie_menke\n\twil: Andy hates this move.\n\tLaurie_Menke: Why? Because you didn&#39;t make a happy system?\n\tLaurie_Menke: Or maybe because you&#39;re forcing me to either trade and give you the b2 or not trade and be edged out of the economy?\n\tLaurie_Menke: Well, two can play that game!  ;)\n\n8) wil: B B1 Wil\n\n9) Laurie_Menke: Build G1 Laurie_menke\n\twil: Unless I am wrong...you are a step ahead to the twos, but a step behind to the threes..  That is this game\n\tLaurie_Menke: I have no idea what you just said... LOL!\n\n10) wil: D B1 Wil R2 R2\n\tLaurie_Menke: Please explain more and I will read it in the morning... I&#39;m off to bed.  G&#39;night, wil!  :)\n\n11) Laurie_Menke: Discover G1 Laurie_menke Y3 C3po\n\n12) wil: B B2 Wil\n\n13) Laurie_Menke: Discover Y1 Laurie_menke R3 D2\n\n14) wil: D B1 Wil Y2 Y2\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) wil: S G3 Wil\nB B2 R2\nB B3 Y2\nB B3 Wil\n\n17) Laurie_Menke: Trade G3 B3 Laurie_menke\n\n18) wil: S B2 R2\nT B3 G3 Wil\nT B3 Y3 Y2\n\n19) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: You suck.  ;)  ;)  ;)\n\n20) wil: S G3 Wil\nB B2 R2\nB B3 Y2\nB B3 Wil\n\n21) Laurie_Menke: Build G2 C3po\n\twil: I love queen factories\n\tLaurie_Menke: I have never seen one before, but having now experienced it... I didn&#39;t love it so much!  ;)\n\n22) wil: S B2 R2\nT B3 G3 Y2\nT B3 G3 Wil\n\n23) Laurie_Menke: Trade B3 G3 Laurie_menke\n\tLaurie_Menke: OK, so I concede that you will win this eventually... would you rather play it out or have me end it?\n\tLaurie_Menke: Heading to bed for now... let me know which you prefer.  Sweet dreams!\n\tLaurie_Menke: So do you want me to Resign or keep playing this one?\n\tLaurie_Menke: Maybe you&#39;re not seeing these messages because it&#39;s not your turn...\n\n24) wil: B G2 Wil\n\n25) Laurie_Menke: Move Y1 Laurie_menke D2\n\n26) wil: S G3 Wil\nB G2 Y2\nB G3 Wil\nB B2 R2\n\n27) Laurie_Menke: Sacrifice Y1 D2\nMove G1 Laurie_menke D2\n\twil: Whatever you&#39;d like...  I just like to play...\n\n28) wil: S G3 Wil\nB B3 Wil\nB B3 R2\nB B3 Y2\n\n29) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n30) wil: T B3 R3 Y2\n\n31) Laurie_Menke: Build Y1 D2\n\n32) wil: M R3 Y2 D2\n\n33) Laurie_Menke: Discover G2 C3po Y2 Y2too\n\n34) wil: A G1 D2\n\n35) Laurie_Menke: Discover Y1 D2 Y2 Y2three\n\n36) wil: M G3 Y2 C3po\n\n37) Laurie_Menke: Move G2 Y2too Wil\n\n38) wil: T B3 R3 Wil\n\n39) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Wil\nBuild R1 Laurie_menke\nBuild Y1 Y2three\n\n40) wil: S Y3 Y2\nM R3 Wil Y2\nM R3 Y2 D2\nM R3 D2 Laurie_menke\nC Laurie_menke R\n\tLaurie_Menke: Thanks for the fun, wil!  :)\n\n\nHomeworlds Online (SDG# 31799)\nVariants: &quot;Hard time&quot;\nStarted: 2017.3.24, Ended: 2017.3.27\nParticipants: goulo (S), Draw5PlayAll (N)\nWinner: goulo\n\n1) Draw5PlayAll: Pass\n\n2) goulo: Homeworld R3 B2 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) goulo: Build G1 Goulo\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) goulo: Build Y1 Goulo\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) goulo: Build Y2 Goulo\n\n13) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n14) goulo: Discover Y1 Goulo G1 Verdeto\n\n15) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n16) goulo: Build G2 Goulo\n\n17) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n18) goulo: Discover G1 Goulo Y1 Flaveto\n\n19) Draw5PlayAll: Build G2 Draw5playall\n\n20) goulo: Sacrifice G3 Goulo\nBuild G3 Flaveto\nBuild G3 Goulo\nBuild Y2 Goulo\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\n\n22) goulo: Sacrifice G2 Goulo\nBuild Y3 Verdeto\nBuild Y3 Verdeto\n\n23) Draw5PlayAll: Move Y2 Draw5playall G2\n\n24) goulo: Move Y3 Verdeto B2\n\n25) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n26) goulo: Trade Y2 R2 Goulo\n\n27) Draw5PlayAll: Build G2 Draw5playall\n\n28) goulo: Sacrifice G3 Flaveto\nBuild G2 Flaveto\nBuild G3 Goulo\nBuild Y2 B2\n\n29) Draw5PlayAll: Discover R2 Draw5playall B2 B2a\n\n30) goulo: Move Y3 Verdeto B2a\n\n31) Draw5PlayAll: Discover Y3 Draw5playall R2 R2\n\n32) goulo: Sacrifice R2 Goulo\nAttack R2 B2a\nAttack G1 B2\n\n33) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n34) goulo: Sacrifice G3 Goulo\nBuild R1 B2a\nBuild G2 B2\nBuild G3 Goulo\n\n35) Draw5PlayAll: Build B1 G2\n\n36) goulo: Trade G1 R1 B2\n\n37) Draw5PlayAll: Discover B1 G2 G1 G1\n\n38) goulo: Sacrifice Y3 B2\nMove R1 B2 Draw5playall\nMove R1 B2a Draw5playall\nMove Y3 B2a Draw5playall\nCatastrophe Draw5playall R\n\n\tDraw5PlayAll: Good game\n\tgoulo: thanks for the game!\n\nHomeworlds Online (SDG# 31747)\nVariants: &quot;Unrated&quot;\nStarted: 2017.3.25, Ended: 2017.3.26\nParticipants: Draw5PlayAll (S), Laurie_Menke (N)\nWinner: Draw5PlayAll\n\n1) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: Have a good time!  :)\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Laurie_Menke: Build R2 Laurie_menke\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) Laurie_Menke: Discover R2 Laurie_menke G2 Green\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) Laurie_Menke: Sacrifice Y3 Laurie_menke\nDiscover R2 Green Y3 Temporary\nMove R2 Temporary Draw5playall\nCatastrophe Draw5playall R\nPass\n\n14) Draw5PlayAll: Move Y2 Draw5playall Laurie_menke\n\tLaurie_Menke: That was probably stupid, but it was exciting!  ;)\n\n15) Laurie_Menke: Trade R1 G1 Laurie_menke\n\n16) Draw5PlayAll: Trade Y2 R2 Laurie_menke\n\n17) Laurie_Menke: Build G1 Laurie_menke\n\n18) Draw5PlayAll: Attack G1 Laurie_menke\n\n19) Laurie_Menke: Build G1 Laurie_menke\n\n\tLaurie_Menke: Alright, so I tanked that game stupidly. Sorry. If you&#39;d like to try again, feel free to challenge me.  Congrats on the win!  :)\n\tDraw5PlayAll: Oh I see, you resigned while I tried to call catastrophe.\n\tLaurie_Menke: Sorry... didn&#39;t mean to confuse you!\n\nHomeworlds Online (SDG# 31609)\nStarted: 2017.3.26, Ended: 2017.3.30\nParticipants: Ottia (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H G1 Y2 B3\n\tOttia: Hiya Rey! I still haven&#39;t got tons of time to play anything but I thought we could at least get one single game going, especially one with such a learning curve...\r\n\r\n...fatherhood is fantastic. I need more time to elaborate on it properly...\n\tMobyNostromo: Hey Antonio! I&#39;m glad you&#39;re enjoying being a father. I&#39;m finally teaching my daughter Spanish; she is doing very well in English and Korean but knows very little Spanish. She&#39;s slowly picking up individual words. With all the languages you know, your child will easily become a polyglot!\n\n2) Ottia: Homeworld G3 B2 Y3\n\tMobyNostromo: I forgot: have you played this game before? I&#39;m almost brand new.\n\n3) MobyNostromo: B B1 Mobynostromo\n\tOttia: I played it once aaaaages ago. It seems like a deep, rewarding game... one of those you can play your whole lifetime. I would like to learn to play it properly - since you had an open invitation and we already have a way of &quot;cracking games open&quot; together it was quite an easy decision...\r\n\r\n...that said, I barely remember a thing about it.\n\tOttia: As far as Melissa&#39;s languages are concerned, we will try at first to raise her bilingual (EN, ES)... German will come afterwards and then whatever she wants to learn; we could help her in French and Italian but if she wants to start with something else, then welcome... the more the merrier! For years and years Eleanor (my wife) and I have had the temptation to start learning Japanese but never quite found the time for it...\n\tDraw5PlayAll: You do realize the chat and games are public, right?\n\tMobyNostromo: Nice!! I was not kidding when I used the word, polyglot, and now I know there was no exaggeration on my part. I used to know a little Japanese, but it&#39;s mostly gone. Fascinating to learn a language that has no ties whatsoever to your own.\r\n\n\tMobyNostromo: Let&#39;s crack this game open!!\n\n\tOttia: Thanks to Draw5PlayAll to point that out. I&#39;m fine with everyone reading what I&#39;ve written so far but I&#39;ll definitely follow your advice and move the conversation elsewhere. For the time being, I&#39;ll start another game.\n\tOttia: (for pointing that out, I mean... little sleep, slow brain)\n\nHomeworlds Online (SDG# 31782)\nStarted: 2017.3.27, Ended: 2017.5.16\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld B2 R3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Sorry for the delay. Thanks for being patient.\n\tFelix: No problem! I&#39;ve never been one to be impatient about turns on here.\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Felix: Discover B1 Felix G1 Out\n\tts52: Apparently I&#39;m no longer getting notification emails from SDG. I&#39;ll try to remember to check once a day, but if you notice me lagging, feel free to nugde me at tim.seiger@gmail.com.\n\tFelix: Yeah, they&#39;re making some changes to the system, I think.\r\n\r\nWill do!\n\n15) ts52: Move Y1 Ts52 Kermit\n\tts52: That would explain things.\n\n16) Felix: Build Y1 Felix\n\tFelix: I believe the developer is working on a &quot;2.0&quot; version of the website, as well.\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Felix: Discover G1 Felix R1 Rot\n\n19) ts52: Trade B1 R1 Kermit\n\n20) Felix: Trade Y1 R1 Felix\n\n21) ts52: Build R2 Kermit\n\n22) Felix: Build R2 Felix\n\n23) ts52: Move R2 Kermit Out\n\n24) Felix: Trade R2 B2 Felix\n\n25) ts52: Attack B1 Out\n\n26) Felix: Build Y1 Felix\n\n27) ts52: Build B1 Out\n\n28) Felix: Move B2 Felix Rot\n\n29) ts52: Build B3 Out\n\n30) Felix: Build B3 Rot\n\n31) ts52: Build B3 Kermit\n\n32) Felix: Trade B3 Y3 Rot\n\tts52: Phew. Just made it under the wire. Sorry for not checking in at all last week.\n\tFelix: Welcome back! I hope your vacation was lovely.\n\tFelix: No worries if you can&#39;t make it. I don&#39;t think Hard Time is turned on, is it? I won&#39;t force end the game unless the system does it for me.\n\n33) ts52: Trade B3 Y3 Out\n\n34) Felix: Build B3 Rot\n\tts52: It was, thanks. Hectic, but lovely. \n\n35) ts52: Build B3 Out\n\n36) Felix: Sacrifice Y2 Felix\nMove B2 Rot Kermit\nMove B2 Kermit Out\nCatastrophe Out Blue\n\n37) ts52: Build R2 Out\n\n38) Felix: Discover R1 Felix G1 G1\n\n39) ts52: Build G2 Ts52\n\n40) Felix: Build G2 Felix\n\n41) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Out\nBuild R3 Kermit\n\n42) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Rot\nBuild R3 G1\n\n43) ts52: Move R3 Kermit Ts52\n\n44) Felix: Sacrifice G3 Rot\nBuild G3 Rot\nBuild Y1 Rot\nBuild B1 Rot\n\n45) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild Y2 Out\n\n46) Felix: Discover B3 Rot Y2 Ritz\n\n47) ts52: Move B2 Kermit Out\n\n48) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Ritz\nBuild B2 Rot\n\n49) ts52: Build B3 Out\n\n50) Felix: Move G1 Rot Ritz\n\n51) ts52: Sacrifice Y1 Kermit\nDiscover B3 Kermit Y1 Bigbird\n\n52) Felix: Sacrifice G2 Felix\nBuild G2 Ritz\nPass\n\n53) ts52: Move B2 Out Felix\n\tFelix: You&#39;ll have me shortly :)\n\n54) Felix: Sacrifice Y3 Rot\nMove R1 G1 Ritz\nMove R1 Ritz Out\nMove G1 Ritz Ts52\nCatastrophe Out Red\n\tts52: I think so. But I try to never count on it.\n\n55) ts52: Sacrifice G3 Ts52\nBuild R1 Kermit\nBuild R2 Kermit\nBuild Y3 Kermit\n\tFelix: Desperate times...\n\n56) Felix: Build G3 Ts52\n\n57) ts52: Attack G3 Ts52\n\tFelix: Nicely done!\n\n58) Felix: Sacrifice G2 Ritz\nBuild G2 Ts52\nBuild R2 G1\nCatastrophe Ts52 Green\n\n59) ts52: Move R2 Kermit Bigbird\n\n60) Felix: Move G3 Rot Kermit\n\n61) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit Out\nDiscover R1 Kermit G1 Robin\n\n62) Felix: Sacrifice R2 G1\nAttack Y3 Kermit\nAttack B2 Felix\n\n63) ts52: Sacrifice Y2 Out\nMove B3 Out Felix\nMove B3 Bigbird Felix\nCatastrophe Felix Blue\n\n64) Felix: Sacrifice G3 Felix\nPass\nPass\nPass\n\n65) ts52: Sacrifice Y3 Out\nMove R1 Out Felix\nMove R1 Robin Felix\nMove R2 Bigbird Felix\nCatastrophe Felix Red\n\tFelix: You&#39;ve got me again. nicely done!\n\tts52: Thanks. That was a good game. I look forward to our next! :)\n\n\nHomeworlds Online (SDG# 31821)\nStarted: 2017.3.27, Ended: 2017.4.19\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Two B3 stars? I will have the last one.\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tFelix: Good luck with that :P\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Felix: Build G1 Felix\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n10) Felix: Discover G1 Felix B1 Lanayru\n\tDraw5PlayAll: &quot;Engage.&quot;\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) Felix: Build G2 Felix\n\n13) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G2 Draw5playall\nBuild G3 Draw5playall\n\n14) Felix: Build G3 Lanayru\n\n15) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n16) Felix: Trade G1 Y1 Lanayru\n\n17) Draw5PlayAll: Move Y1 Draw5playall B2\n\n18) Felix: Trade G2 R2 Felix\n\n19) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 B2\n\n20) Felix: Build Y3 Lanayru\n\n21) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n22) Felix: Build R1 Felix\n\n23) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n24) Felix: Trade Y1 B1 Lanayru\n\n25) Draw5PlayAll: Trade Y1 R1 B2\n\n26) Felix: Move R2 Felix Lanayru\n\n27) Draw5PlayAll: Discover R2 Draw5playall Y2 Y2\n\n28) Felix: Build G1 Lanayru\n\n29) Draw5PlayAll: Sacrifice G2 B2\nBuild R2 B2\nBuild R3 Y2\n\n30) Felix: Build R3 Lanayru\n\n31) Draw5PlayAll: Trade R2 Y2 B2\n\n32) Felix: Discover R3 Lanayru B2 Ridge\n\n33) Draw5PlayAll: Build G2 B2\n\n34) Felix: Build G2 Felix\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\n36) Felix: Move G3 Lanayru Ridge\n\n37) Draw5PlayAll: Sacrifice B2 Draw5playall\nTrade R3 B3 Y2\nTrade G2 B2 B2\n\n38) Felix: Discover B1 Lanayru G2 Steamer\n\n39) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild B1 Y2\n\n40) Felix: Sacrifice G3 Felix\nBuild R2 Lanayru\nBuild R3 Ridge\nBuild R3 Felix\n\n41) Draw5PlayAll: Move R1 B2 Draw5playall\n\tDraw5PlayAll: This bluebird potential is risky.\n\n42) Felix: Build Y1 Lanayru\n\tFelix: Risky risky!\n\tDraw5PlayAll: Ironically, this seems to be the only move.\n\n43) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n44) Felix: Discover G1 Lanayru Y3 Y3\n\tFelix: Way to recognize and defend.\n\tDraw5PlayAll: But... how did you get ALL the R3s?\n\n45) Draw5PlayAll: Move R2 Y2 Y3\n\n46) Felix: Sacrifice G1 Y3\nBuild G1 Ridge\n\tFelix: Same way you got all the B3s ;)\n\tDraw5PlayAll: No, one of the B3s is in your home and one is in mine.\n\n47) Draw5PlayAll: Move R2 Y3 B2\n\tFelix: I know. You got all the available B3s.\n\tFelix: By which I mean the one :)\n\n48) Felix: Move R2 Lanayru Steamer\n\n49) Draw5PlayAll: Build Y3 Draw5playall\n\n50) Felix: S Y3 Lanayru\nM R2 Steamer Draw5playall\nM R3 Ridge Draw5playall\nM G3 Ridge Draw5playall\nC Draw5playall Red\n\n\tFelix: Prepare to meet thy doom.\n\tDraw5PlayAll: I see.\n\tFelix: Good game and well played! I had to really think hard there at the end.\n\tDraw5PlayAll: Where did I go wrong? Large pieces? R3s?\n\nHomeworlds Online (SDG# 31613)\nVariants: &quot;Hard time&quot;\nStarted: 2017.3.29, Ended: 2017.4.1\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 31816)\nStarted: 2017.3.30, Ended: 2017.9.21\nParticipants: Ottia (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B2 G1 Y3\n\n2) Ottia: Homeworld G1 Y2 B3\n\tMobyNostromo: Hello again. I too wasn&#39;t thinking about our conversation being open. It&#39;s so natural to chat here without having to email or go on BGG. Thanks for sharing, regardless. \n\n3) MobyNostromo: B Y1 Mobynostromo\n\tMobyNostromo: Let&#39;s talk at BGG or by email! Pick the one you like.\n\n4) Ottia: Build B1 Ottia\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Ottia: Trade B1 Y1 Ottia\n\n7) MobyNostromo: D Y1 Mobynostromo Y3 Yellow Giant\n\n8) Ottia: Discover Y1 Ottia R3 Blackgarlic\n\tMobyNostromo: I&#39;ll respond to your BGG message soon; I&#39;ve been a little crazy myself.\r\n\n\n9) MobyNostromo: D Y1 Mobynostromo G3 Green Beans\n\n10) Ottia: Build B1 Ottia\n\n11) MobyNostromo: B Y2 Mobynostromo\n\n12) Ottia: Move B1 Ottia Blackgarlic\n\n13) MobyNostromo: T Y2 G2 Mobynostromo\n\n14) Ottia: Build B1 Ottia\n\n15) MobyNostromo: B G1 Mobynostromo\n\n16) Ottia: Trade B3 Y3 Ottia\n\n17) MobyNostromo: D G1 Mobynostromo R3 Gazpacho\n\n18) Ottia: Discover Y3 Ottia G3 Rawginger\n\n19) MobyNostromo: B G2 Mobynostromo\n\n20) Ottia: Build Y2 Rawginger\n\n21) MobyNostromo: M G2 Mobynostromo Yellow\n\n22) Ottia: Build B1 Ottia\n\n23) MobyNostromo: B G2 Yellow\n\n24) Ottia: Discover Y2 Rawginger Y2 Galiamelon\n\n25) MobyNostromo: B G3 Gazpacho\n\n26) Ottia: Move B1 Ottia Rawginger\n\n27) MobyNostromo: D G2 Yellow R1 Kimchi\n\n28) Ottia: Discover B1 Rawginger R1 Tulsitea\n\n29) MobyNostromo: T G2 B2 Mobynostromo\n\n30) Ottia: Build B2 Ottia\n\n31) MobyNostromo: D B2 Mobynostromo R3 Redbeans\n\n32) Ottia: Trade B2 G2 Ottia\n\n33) MobyNostromo: M Y1 Yellow Kimchi\n\n34) Ottia: Build B2 Ottia\n\n35) MobyNostromo: S G2 Yellow\nB Y3 Mobynostromo\nBuild G2 Kimchi\n\n36) Ottia: Move B1 Ottia Rawginger\n\n37) MobyNostromo: S Y3 Mobynostromo\nM G2 Kimchi Gazpacho\nM G2 Gazpacho Ottia\nM G1 Gazpacho Ottia\nC Ottia G\n\n\tOttia: Hiya Rey! I&#39;m sorry to cancel things so abruptly but I can&#39;t find the time to play while taking proper care of the household and of work. I&#39;m happy to stay in touch on BGG - I will reply to your message very soon, I&#39;m very thankful for it. Sorry again - I hope I can play again soon.\n\tMobyNostromo: No problem, buddy. I understand. I was there in a similar place.\n\nHomeworlds Online (SDG# 31841)\nVariants: &quot;Unrated&quot;\nStarted: 2017.4.1, Ended: 2017.6.3\nParticipants: wil (S), Laurie_Menke (W), Draw5PlayAll (N), Felix (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld R2 B1 G3\n\tDraw5PlayAll: All right, good luck -- not just in the usual sense but that this time the game gets played.\r\n\r\nThe teams appear to have worked out as such: Felix and wil are on one team, me and Laurie on the other. If either member of the team wins then it is a win for both.\n\n3) wil: Homeworld Y2 B1 G3\n\twil: Laurie and I\n\twil: Not a change of teams...it is just that I never get to correct others English! (And am probably wrong anyway\n\twil: But team strategy...interesting...\r\n\n\twil: Current actual concern with teams...the setup looks like I am going to be south??  So ES plays two moves, the WN plays to moves?\n\twil: Should make for lots of catastrophes...\n\twil: My homeworld choice is dependent on who my partner is at this point...it looks like I should be with d5pA\n\twil: I am playing just to ping the board...  If I am not felix&#39;s partner I&#39;d like to change this move.\n\twil: I am willing to play side by side if that is how it works...just to see if it will be as awful as I suspect.\n\n4) Laurie_Menke: Homeworld Y3 B2 G3\n\tDraw5PlayAll: I believe I stated that we were doing 1+4 vs 2+3, to mitigate the first turn advantage.\n\tDraw5PlayAll: Therefore according to that rule wil is teamed up with Felix.\n\tLaurie_Menke: OK... so all that said, I&#39;m going to go ahead and play.  But I do see wil&#39;s point.  It&#39;ll be interesting to see how this turns out!  Have fun, everyone!\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Felix: Build G1 Felix\n\tDraw5PlayAll: And really, 1+3 vs 2+4 has the same flaw... often 2 can do nothing to stop 1+3 from killing 4.\n\tLaurie_Menke: Yeah, I can see that, too.\n\tFelix: Yeah, this should be interesting...\n\n7) wil: B G1 Wil\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\twil: So...no table talk?  At all?  Or no table talk in private messages only within the game for all to see?\n\tDraw5PlayAll: Private messages are fine\n\tLaurie_Menke: Interesting...\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I have received none so far.\n\n10) Felix: Build G2 Felix\n\n11) wil: T G1 B1 Wil\n\twil: Team Strategy on fleek eh?\n\n12) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n13) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: B B2 Wil\n\n16) Laurie_Menke: Build B2 Laurie_menke\n\twil: So to declarify a loop hole in the rules...if my partner knocks me out... I win.\n\tDraw5PlayAll: No, you win by being the last survivor. So your partner has to knock both opponents, as well as you, out for your statement to work.\n\tFelix: @wil Hahaha, our team strategy is SO on fleek!\n\twil: err...scuse me sir...d5pA... you made the rules..  \r\n\r\n &quot;If either member of the team wins then it is a win for both.&quot;\n\tDraw5PlayAll: This is not a Sinister match... normally in a 4P game you win by being the LAST survivor... not just by killing 1 empire.\n\n17) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: I gotcha...  I&#39;m just a binary guy... I think I may have seen one entire game of four player.. jumped in due to the partner thang\n\n18) Felix: Build B2 Felix\n\n19) wil: Discover B2 Wil Y3 Whynot\n\n20) Laurie_Menke: Discover B2 Laurie_menke G1 Metoo\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\n22) Felix: Trade G2 Y2 Felix\n\n23) wil: B G1 Wil\n\n24) Laurie_Menke: Build G1 Laurie_menke\n\n25) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n26) Felix: Discover B2 Felix Y3 Latetotheparty\n\n27) wil: S G3 Wil\nB B2 Whynot\nB B3 Whynot\nB B3 Wil\n\n28) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild B3 Laurie_menke\nBuild B3 Metoo\nBuild G1 Laurie_menke\n\n29) Draw5PlayAll: Build Y1 Draw5playall\n\n30) Felix: Sacrifice Y2 Felix\nMove B2 Latetotheparty Metoo\nMove B2 Metoo Laurie_menke\nCatastrophe Laurie_menke Blue\n\tDraw5PlayAll: Hey, I wanted a blue system!\n\n31) wil: T B3 R3 Whynot\n\tLaurie_Menke: Sorry... you&#39;ll get your chance, I&#39;m sure.\n\n32) Laurie_Menke: Trade B2 Y2 Metoo\n\tFelix: Taking one for the team here, wil!\n\n33) Draw5PlayAll: Build Y1 Draw5playall\n\n34) Felix: Build G1 Felix\n\tLaurie_Menke: Alas... I screwed up, but couldn&#39;t undo it, so hoped that you wouldn&#39;t see it.  But you did.  :/  Sorry, Draw5PlayAll!\n\n35) wil: T B1 R1 Wil\n\n36) Laurie_Menke: Move B3 Metoo Laurie_menke\n\n37) Draw5PlayAll: Build G2 Draw5playall\n\n38) Felix: Trade G1 Y1 Felix\n\n39) wil: M B2 Whynot G2\n\n40) Laurie_Menke: Build Y2 Metoo\n\n41) Draw5PlayAll: Discover Y1 Draw5playall G2 G2a\n\n42) Felix: Trade B1 R1 Felix\n\n43) wil: S R1 Wil\nA Y1N G2\n\n44) Laurie_Menke: Build B1 Laurie_menke\n\n45) Draw5PlayAll: Build Y2 G2a\n\n46) Felix: Build Y2 Felix\n\n47) wil: Build Y3 G2\n\n48) Laurie_Menke: Sacrifice Y2 Metoo\nMove B3 Laurie_menke Wil\nMove B1 Laurie_menke Wil\nCatastrophe Wil B\n\n49) Draw5PlayAll: Discover Y1 G2a B3 B3\n\n50) Felix: Move Y2 Felix B3\n\tLaurie_Menke: Well, this is a bit of a suicide mission, but we&#39;re takin&#39; you down, wil!  ;)  I&#39;ll take care of the blue, and the Draw5PlayAll has a bunch of ways to finish you off in another couple turns.  :)\n\n51) wil: M R3 Whynot Wil\n\n52) Laurie_Menke: Move Y2 Metoo Wil\n\n53) Draw5PlayAll: Sacrifice Y2 G2a\nMove Y1 Draw5playall Wil\nMove Y1 B3 Wil\nCatastrophe Wil Yellow\n\tFelix: Uh oh...\n\n54) Felix: Sacrifice Y2 B3\nMove G3 Felix Whynot\nMove G3 Whynot G2\n\tLaurie_Menke: D5PA... notice that you are directly connected to wil now...\n\n55) Laurie_Menke: Discover G1 Laurie_menke B2 B2\n\n56) Draw5PlayAll: Move G2 Draw5playall G2\n\n57) Felix: Sacrifice G3 G2\nBuild R1 Felix\nBuild Y1 Felix\nBuild Y1 Felix\n\tLaurie_Menke: Bye wil.  :(  Well done Draw5PlayAll!  :)\n\tLaurie_Menke: Interesting... wil&#39;s pieces weren&#39;t removed...\n\n58) Laurie_Menke: Trade G1 R1 B2\n\tDraw5PlayAll: Laurie... I have an idea, please consider undoing that move and instead going to the G2 system\n\tDraw5PlayAll: If you do then I can send in MY green, and blow up Felix&#39;s only large.\n\tLaurie_Menke: OK, I undid just to have time to check with folks.  That&#39;s a great idea, Draw5PlayAll... sorry I didn&#39;t see it!  Felix and wil... would you rather I play my original move and take the game closer to its close, or would you rather have the challenge of our team playing its best option and seeing what happens next?\n\tDraw5PlayAll: I think they are a little biased... they want Felix not to lose like this!\n\tLaurie_Menke: Agreed, and he should win (or at least have a better chance at it) since I made a stupid mistake.  What I&#39;m asking is whether they would prefer to keep the game going by having me undo, or continue the game as it is (and most likely, but not definitely, win).\n\tLaurie_Menke: Well, since neither have answered, I think I will leave the move as it was.  It was a bad mistake, and I apologize, Draw5PlayAll. But I don&#39;t feel right backing up on a multi-player game without the other players&#39; consent.\n\n59) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack B2S G2\n\n60) Felix: Trade Y1 G1 Felix\n\tFelix: I would have been fine with it if you took back the move, but I didn&#39;t see this message until now!\n\n61) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: ::sigh:: Oh well.  It&#39;s just a game!  Sorry for messing up so much!\n\n62) Draw5PlayAll: Trade G2 R2 G2\n\tLaurie_Menke: Actually, I still think we&#39;re going to win this thing, Draw5PlayAll.  :)  Whatever you do, don&#39;t give up your G3 &amp; G2.  They&#39;re going to be the keys to winning.\n\n63) Felix: Build G1 Felix\n\tDraw5PlayAll: How much time do I have to raid before I need moves?\n\n64) Laurie_Menke: Move G1 Laurie_menke B2\n\tLaurie_Menke: I don&#39;t know... it&#39;s always best to be as efficient as possible in Homeworlds.\n\n65) Draw5PlayAll: Attack Y1S G2\n\n66) Felix: Discover R1 Felix G3 G3\n\n67) Laurie_Menke: Trade G1 Y1 B2\n\n68) Draw5PlayAll: Build Y2 Draw5playall\n\n69) Felix: Move Y1 Felix G3\n\n70) Laurie_Menke: Move R1 B2 Laurie_menke\n\n71) Draw5PlayAll: Sacrifice Y2 Draw5playall\nD B2 G2 Y3 Y3\nMove B2 Y3 Felix\n\n72) Felix: Build Y2 Felix\n\n73) Laurie_Menke: Build R1 Laurie_menke\n\n74) Draw5PlayAll: Attack Y2E Felix\n\tDraw5PlayAll: Now or never, use it or lose it..,\n\n75) Felix: Pass\n\n76) Laurie_Menke: Move R1 Laurie_menke Felix\n\n77) Draw5PlayAll: Attack G1E Felix\n\n78) Felix: Build Y2 Felix\n\n79) Laurie_Menke: Move R1 Laurie_menke Felix\nCatastrophe Felix Red\n\tFelix: Huh. Just wanted to see if you could do that.\n\tDraw5PlayAll: But why?\n\n80) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Felix\nBuild Y2 Felix\nBuild G1 Felix\nCatastrophe Felix Green\nCatastrophe Felix Yellow\n\n\nHomeworlds Online (SDG# 31842)\nVariants: &quot;Hard time&quot;\nStarted: 2017.4.3, Ended: 2017.4.11\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tFelix: Hey, it&#39;s been a while since you were active. Best of luck!\n\twil: have fun!\n\n3) Felix: Build G1 Felix\n\n4) wil: Build G1 Wil\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: Trade G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Trade B2 Y2 Felix\n\n10) wil: Trade B1 R1 Wil\n\n11) Felix: Build Y1 Felix\n\n12) wil: Build R1 Wil\n\n13) Felix: Build Y1 Felix\n\n14) wil: Build R2 Wil\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: D R1 Wil B2 B2\n\n17) Felix: Discover Y1 Felix B3 Rim\n\n18) wil: D R2 Wil Y2 Y2\n\n19) Felix: Build G1 Felix\n\n20) wil: M R2 Y2 Rim\n\n21) Felix: Move G3 Felix Rim\n\n22) wil: S G3 Wil\nB R2 Wil\nB R3 Wil\nB R3 B2\n\n23) Felix: Build R3 Felix\n\n24) wil: T R2 Y2 Wil\n\n25) Felix: Sacrifice R2 Felix\nAttack R2 Rim\nPass\n\n26) wil: T R1 G1 Wil\n\n27) Felix: Build Y1 Rim\n\n28) wil: T R3 G3 B2\n\n29) Felix: Build Y2 Felix\n\n30) wil: M Y2 Wil B2\n\n31) Felix: Discover Y1 Rim G2 Range\n\n32) wil: B R1 Wil\n\twil: B r1 wil\n\n33) Felix: Sacrifice G3 Rim\nBuild Y2 Range\nBuild Y3 Rim\nBuild Y3 Felix\n\twil: First gotta place order in right box, then you have to type correctly\n\tFelix: hahaha\n\n34) wil: B R2 B2\n\n35) Felix: Discover B1 Felix G3 Rhino\n\n36) wil: M R2 B2 Rhino\n\n37) Felix: Move Y3 Felix Rhino\n\n38) wil: D B2 Wil G2 G2\n\twil: I&#39;m gonna make good moves in the ladder game\n\twil: I&#39;m gonna make good moves in the ladder game\n\twil: And sayanara to oroductivity\n\n39) Felix: Sacrifice R2 Rim\nAttack R2 Rhino\nPass\n\n40) wil: B R2 B2\n\tFelix: Sayonara, indeed. And don&#39;t worry - I&#39;ve been really letting my strategy in this game slip. I tend to rush my moves lately.\n\twil: I eagerly await your mistakes\n\n41) Felix: Build B1 Rhino\n\n42) wil: D R2 B2 B3 B3\n\n43) Felix: Build B3 Rhino\n\tFelix: Well, nice move!\n\n44) wil: B G1 B2\n\n45) Felix: Sacrifice Y2 Felix\nMove B1 Rhino Range\nDiscover Y1 Rim Y2 Ricket\n\twil: I had a good walk...\n\n46) wil: Sacrifice G3 B2\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 B2\n\twil: nice job!\n\n47) Felix: Sacrifice Y3 Rhino\nMove Y1 Range Wil\nMove Y2 Range Wil\nMove Y1 Ricket Wil\n\twil: I suppose a distraction won&#39;t work.\r\n\n\tFelix: A distraction? Where?!\n\n48) wil: S G3 Wil\nB G3 Wil\nB Y2 B2\nB Y3 B2\nC Wil Y\n\n49) Felix: Sacrifice Y3 Rim\nMove B1 Range Wil\nMove B1 Rhino Wil\nMove B3 Rhino Wil\nCatastrophe Wil Blue\n\tFelix: Ah, it worked! I totally messed up and then totally forgot to catastrophe.\n\tFelix: That&#39;s what I get for being overeager.\n\tDraw5PlayAll: At least wil cannot prevent it next turn.\n\n\twil: Doomsday machine...Exactly how I lost to Andy last night.. Nice \n\tFelix: Good game though! Did you play against Andy Looney last night?  Cool!\n\tFelix: I&#39;d love to get the chance to play against him.\n\twil: Ya gotta catch him...and get that medal!\n\tFelix: How did you play him? In person, or on here?\n\twil: I met Andy before I met homeworlds...  we play regularly, friend and neighbor.\n\twil: He, like most of us, get driven crazy by the format of the ships in the blocks and the orientation of the blocks in relation to connection between star systems..\n\twil: and since he is now giving away medals for beating him, I suspect he won&#39;t be playing the medal competition games online even if an improved system is built....but who knows...\n\tFelix: Ah, very cool that you are friends and neighbors! I have played far more games on here than with actual pyramids, so I&#39;ve gotten used to the format, but I definitely prefer the real deal!\n\tDraw5PlayAll: Yeah, I am not sure if there is an easy way to make the formatting better... the blocks and the 5x5 grids are just so much easier to code...\n\twil: I have friends playing with the virtual reality, might be we will be able to play live games moving pieces around space.\n\tDraw5PlayAll: That seems a bit of a stretch. But tell me when I can say &quot;Computer, freeze program!&quot; and have it work.\n\tDraw5PlayAll: And about the format... I got my Homeworlds start from here... I have played fewer than a dozen IRL games. \n\nHomeworlds Online (SDG# 31902)\nStarted: 2017.5.5, Ended: 2017.5.6\nParticipants: lockedlake (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 Y2 G3\n\n\nHomeworlds Online (SDG# 31966)\nStarted: 2017.5.5, Ended: 2017.5.6\nParticipants: ts52 (S), lockedlake (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 31970)\nStarted: 2017.5.6, Ended: 2017.5.22\nParticipants: panglott (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) panglott: Homeworld B3 G1 Y3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) panglott: Build Y1 Panglott\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) panglott: Trade Y3 G3 Panglott\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) panglott: Build Y1 Panglott\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) panglott: Build G1 Panglott\n\n11) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G1 Draw5playall Y2 Y2\nMove G1 Y2 Panglott\nCatastrophe Panglott Green\n\n12) panglott: Trade Y1 G1 Panglott\n\tDraw5PlayAll: Take that! And that! And...\n\tpanglott: Hoo boy.\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) panglott: Build G1 Panglott\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) panglott: Discover G1 Panglott Y1 Ulzad\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) panglott: Build Y2 Panglott\n\n19) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n20) panglott: Trade Y2 B2 Panglott\n\tDraw5PlayAll: This is way harder than I expected.\n\n21) Draw5PlayAll: Move R1 Draw5playall G2\n\n22) panglott: Build Y2 Panglott\n\n23) Draw5PlayAll: Build R1 G2\n\n24) panglott: Move Y2 Panglott Ulzad\n\n25) Draw5PlayAll: Move Y2 G2 Panglott\n\n26) panglott: Trade B2 R2 Panglott\n\n27) Draw5PlayAll: Sac R1 G2\nAttack R2 Panglott\n\n28) panglott: Build Y2 Ulzad\n\n29) Draw5PlayAll: Sacrifice R2 Panglott\nAttack G1 Panglott\nAttack Y1 Panglott\n\tpanglott: Thanks for the game ;)\n\tDraw5PlayAll: Yeah, I kept thinking you would get a large and make the fight a lot harder...\r\n\r\nI did not realize my rating was already 1750.\n\n\nHomeworlds Online (SDG# 32141)\nVariants: &quot;Hard time&quot;\nStarted: 2017.5.7, Ended: 2017.5.10\nParticipants: goulo (S), mneme (N)\nWinner: goulo\n\n\nHomeworlds Online (SDG# 32149)\nVariants: &quot;Hard time&quot;\nStarted: 2017.5.9, Ended: 2017.5.12\nParticipants: Subhan64 (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B3 R2 G3\n\n\tAristos: Ping! (Because some times I&#39;ve observed that superdupergames doesn&#39;t send emails for the first move.)\n\nHomeworlds Online (SDG# 32120)\nStarted: 2017.5.10, Ended: 2017.11.7\nParticipants: MobyNostromo (S), Joe_Hill (N)\nWinner: MobyNostromo\n\n1) Joe_Hill: Homeworld B2 R1 G3\n\tJoe_Hill: Hiya!\n\tJoe_Hill: It&#39;s been a while since I played this. Very interested in this game, but it has a steep learning curve.\n\tJoe_Hill: The amount of spectators always cracks me up...\n\n2) MobyNostromo: H G1 B2 Y3\n\tMobyNostromo: Yeah, I was noticing - it brings the game all the way down to the bottom of the page. :)\n\n3) Joe_Hill: Build G1 Joe_hill\n\tJoe_Hill: Probably more than half of them haven&#39;t even been on the site in years...\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Joe_Hill: Trade G1 Y1 Joe_hill\n\n6) MobyNostromo: T Y1 G1 Mobynostromo\n\n7) Joe_Hill: Build G1 Joe_hill\n\n8) MobyNostromo: B G2 Mobynostromo\n\n9) Joe_Hill: Build G2 Joe_hill\n\n10) MobyNostromo: D G2 Mobynostromo R3 Redgiant\n\n11) Joe_Hill: Discover G2 Joe_hill Y3 Pan\n\n12) MobyNostromo: D G1 Mobynostromo Y3 Yellowtriad\n\n13) Joe_Hill: Build G2 Pan\n\n14) MobyNostromo: B G3 Redgiant\n\n15) Joe_Hill: Trade G1 B1 Joe_hill\n\n16) MobyNostromo: B G1 Yellowtriad\n\n17) Joe_Hill: Move B1 Joe_hill Pan\n\n18) MobyNostromo: Build Y1 Mobynostromo\n\n19) Joe_Hill: Trade G2 R2 Pan\n\n20) MobyNostromo: D Y1 Mobynostromo G3 Earth\n\n21) Joe_Hill: Move R2 Pan Mobynostromo\n\n22) MobyNostromo: T Y3 R3 Mobynostromo\n\n23) Joe_Hill: Build G2 Pan\n\n24) MobyNostromo: M G1 Yellowtriad Mobynostromo\n\tJoe_Hill: well that&#39;s annoying.\n\tMobyNostromo: Oh boy.\n\tJoe_Hill: I basically concede that piece. WAsted move. Bummer!\r\n\n\n25) Joe_Hill: Trade G2 Y2 Pan\n\n26) MobyNostromo: A R2 Mobynostromo\n\tMobyNostromo: I know your frustration.\n\n27) Joe_Hill: Build G2 Pan\n\n28) MobyNostromo: Trade G1 Y1 Mobynostromo\n\n29) Joe_Hill: Trade G2 R2 Pan\n\n30) MobyNostromo: Build Y2 Mobynostromo\n\n31) Joe_Hill: Build G1 Joe_hill\n\n32) MobyNostromo: B G2 Yellowtriad\n\tJoe_Hill: I wish I had more opportunities to play this game face to face. I feel like I would have a better understanding of it.\n\tMobyNostromo: I know. That is also my life with just about every game I play - not enough face to face. This game in particular could slip you a sneaky one because there is just so much growing on the board.\n\tDraw5PlayAll: I have taught a few people... and I always win... never encountered anyone who already knew the game!\n\n33) Joe_Hill: Trade G3 R3 Joe_hill\n\n34) MobyNostromo: D Y2 Mobynostromo Y3 Bigbird\n\n35) Joe_Hill: Build Y2 Joe_hill\n\n36) MobyNostromo: D G2 Yellowtriad R2 D2\n\n37) Joe_Hill: Build R1 Pan\n\n38) MobyNostromo: M R3 Mobynostromo Pan\n\n39) Joe_Hill: Trade B1 R1 Pan\nCatastrophe Pan Red\n\n40) MobyNostromo: S G1 Yellowtriad\nB Y3 Mobynostromo\n\n41) Joe_Hill: Build G1 Pan\n\n42) MobyNostromo: B R1 Mobynostromo\n\n43) Joe_Hill: Trade Y1 B1 Joe_hill\n\n44) MobyNostromo: B Y1 Earth\n\n45) Joe_Hill: Move B1 Joe_hill Pan\n\n46) MobyNostromo: D Y1 Earth R2 Maul\n\n47) Joe_Hill: T G1 R1 Pan\n\n48) MobyNostromo: S Y2 Bigbird\nM Y1 Maul Pan\nM Y1 Mobynostromo Pan\nC Pan Y\n\n49) Joe_Hill: Build R1 Joe_hill\n\n50) MobyNostromo: S Y3 Mobynostromo\nM R2 Mobynostromo Earth\nM R2 Earth Joe_hill\nM Y1 Earth Mobynostromo\nC Joe_hill R\n\tJoe_Hill: damn...\n\n51) Joe_Hill: Build G1 Joe_hill\n\n52) MobyNostromo: Sacrifice G3 Redgiant\nBuild G2 D2\nBuild G3 D2\nBuild G3 Redgiant\n\n53) Joe_Hill: Trade G1 R1 Joe_hill\n\n54) MobyNostromo: B Y1 Mobynostromo\n\n55) Joe_Hill: Build G1 Joe_hill\n\n56) MobyNostromo: M Y1 Mobynostromo Redgiant\n\n57) Joe_Hill: Trade G1 Y1 Joe_hill\n\n58) MobyNostromo: B Y2 Mobynostromo\n\n59) Joe_Hill: Build G1 Joe_hill\n\n60) MobyNostromo: M G3 Redgiant Mobynostromo\n\n61) Joe_Hill: Discover G1 Joe_hill R1 Bill\n\n62) MobyNostromo: T G3 R3 Mobynostromo\n\n63) Joe_Hill: Build G3 Bill\n\n64) MobyNostromo: S G3 D2\nB G3 Redgiant\nB Y2 Redgiant\nB Y3 Mobynostromo\n\n65) Joe_Hill: Sacrifice Y2 Joe_hill\nMove Y1 Joe_hill Redgiant\nMove Y1 Redgiant Mobynostromo\nCatastrophe Mobynostromo Y\n\n66) MobyNostromo: S Y2 Redgiant\nM R3 Mobynostromo Redgiant\nM R3 Redgiant Joe_hill\n\n67) Joe_Hill: Build R2 Joe_hill\n\n68) MobyNostromo: A R2 Joe_hill\n\tJoe_Hill: i&#39;m doomed.\n\n69) Joe_Hill: Build R2 Joe_hill\nCatastrophe Joe_hill R\n\n70) MobyNostromo: B R1 Mobynostromo\n\n71) Joe_Hill: B G3 Joe_hill\n\tMobyNostromo: See! You still have a chance!\n\n72) MobyNostromo: M G2 Redgiant Joe_hill\n\tJoe_Hill: Start fresh. Why not!\n\n73) Joe_Hill: T G3 R3 Joe_hill\n\n74) MobyNostromo: B G3 Redgiant\n\n75) Joe_Hill: B R2 Joe_hill\n\n76) MobyNostromo: T R1 Y1 Mobynostromo\n\n77) Joe_Hill: Attack G2 Joe_hill\n\n78) MobyNostromo: B Y1 Mobynostromo\n\n79) Joe_Hill: Trade R2 Y2 Joe_hill\n\tDraw5PlayAll: Close\n\tJoe_Hill: it&#39;s been an interesting game so far.\n\tMobyNostromo: Yes. Lots of ups and downs.\n\n80) MobyNostromo: M G3 Redgiant Mobynostromo\n\n81) Joe_Hill: Build Y2 Joe_hill\n\n82) MobyNostromo: T Y1 B1 Mobynostromo\n\n83) Joe_Hill: Trade G2 B2 Joe_hill\n\n84) MobyNostromo: M B1 Mobynostromo Redgiant\n\n85) Joe_Hill: Move Y2 Joe_hill Bill\n\n86) MobyNostromo: T G3 B3 Redgiant\n\n87) Joe_Hill: Move B2 Joe_hill Bill\n\n88) MobyNostromo: D B1 Redgiant Y1 Solar\n\n89) Joe_Hill: Build Y2 Joe_hill\n\n90) MobyNostromo: B Y3 Mobynostromo\n\n91) Joe_Hill: Discover G1 Bill Y3 Phil\n\n92) MobyNostromo: T Y1 B1 Redgiant\n\n93) Joe_Hill: Sacrifice Y2 Joe_hill\nMove G3 Bill Phil\nMove G3 Phil Mobynostromo\n\n94) MobyNostromo: S Y3 Mobynostromo\nM B1 Redgiant Joe_hill\nM B3 Redgiant Joe_hill\nM B1 Solar Joe_hill\nC Joe_hill B\n\tJoe_Hill: damn\n\tJoe_Hill: i think you got me.\n\n\tMobyNostromo: Thanks for the game, Joe. That was really exciting!\n\tJoe_Hill: yea, very good game. Thanks Moby\n\nHomeworlds Online (SDG# 32031)\nVariants: &quot;Unrated&quot;\nStarted: 2017.5.10, Ended: 2017.8.8\nParticipants: wil (S), Personman (N)\nWinner: wil\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) wil: H B3 Y2 G3\n\n3) Personman: Build G1 Personman\n\n4) wil: B G1 Wil\n\n5) Personman: Trade G1 Y1 Personman\n\n6) wil: T G1 Y1 Wil\n\n7) Personman: Build Y2 Personman\n\n8) wil: B Y2 Wil\n\n9) Personman: Trade Y2 B2 Personman\n\n10) wil: D Y1 Wil G1 G1\n\n11) Personman: Build Y2 Personman\n\n12) wil: B Y3 G1\n\n13) Personman: Discover Y2 Personman G2 G2\n\n14) wil: M Y1 G1 G2\n\n15) Personman: Build G1 Personman\n\n16) wil: B Y3 G1\n\n17) Personman: Build Y3 G2\n\twil: Looks like you took. A little hiatus from this game...\n\n18) wil: M Y3 G1 G2\nC G2 Y\n\n19) Personman: Build B1 Personman\n\n20) wil: B Y1 G1\n\n21) Personman: Trade B1 R1 Personman\n\n22) wil: B Y2 G1\n\n23) Personman: Discover Y1 Personman G2 G2\n\n24) wil: B Y3 Wil\n\n25) Personman: Move Y1 G2 G1\nCatastrophe G1 Y\n\n26) wil: Discover Y2 Wil B1 B1\n\n27) Personman: Discover B2 Personman G2 G2\n\n28) wil: B G1 Wil\n\n29) Personman: Build B1 G2\n\n30) wil: T G1 B1 Wil\n\n31) Personman: Trade B1 Y1 G2\n\n32) wil: B G1 Wil\n\n33) Personman: Build R1 Personman\n\n34) wil: T G1 R1 Wil\n\n35) Personman: Trade R1 Y1 Personman\n\n36) wil: B G1 Wil\n\n37) Personman: Build Y2 Personman\n\n38) wil: D Y3 Wil G1 G1\n\n39) Personman: Trade Y1 B1 Personman\n\n40) wil: Move Y3 G1 G2\n\n41) Personman: Build B2 G2\n\n42) wil: D B1 Wil G1 G1\n\n43) Personman: Trade B2 G2 G2\n\n44) wil: B G2 Wil\n\n45) Personman: Build G3 Personman\n\n46) wil: S Y3 G2\nM G2 Wil B1\nM G2 B1 G2\nM G2 G2 Personman\nC Personman G\n\n\nHomeworlds Online (SDG# 32121)\nStarted: 2017.5.10, Ended: 2017.7.5\nParticipants: ts52 (S), Personman (N)\nWinner: ts52\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) ts52: Build G1 Ts52\n\n5) Personman: Trade G1 Y1 Personman\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Personman: Build Y2 Personman\n\n8) ts52: Build Y2 Ts52\n\n9) Personman: Trade Y2 B2 Personman\n\n10) ts52: Trade Y2 B2 Ts52\n\n11) Personman: Build Y2 Personman\n\n12) ts52: Build Y2 Ts52\n\n13) Personman: Discover Y2 Personman G2 G2\n\n14) ts52: Discover Y1 Ts52 G1 Kermit\n\n15) Personman: Build G1 Personman\n\n16) ts52: Move B2 Ts52 Kermit\n\n17) Personman: Trade G1 R1 Personman\n\n18) ts52: Trade Y2 R2 Ts52\n\n19) Personman: Build Y2 Personman\n\n20) ts52: Build Y2 Kermit\n\n21) Personman: Build Y3 G2\n\n22) ts52: Sacrifice Y2 Kermit\nMove Y1 Kermit G2\nMove Y1 G2 Personman\nCatastrophe Personman Yellow\n\tts52: I may regret this, but I can&#39;t resist\n\n23) Personman: Build G1 Personman\n\n24) ts52: Build B1 Kermit\n\n25) Personman: Move Y3 G2 Kermit\n\n26) ts52: Build G1 Ts52\n\n27) Personman: Build R1 Personman\n\n28) ts52: Discover G1 Ts52 Y1 Bigbird\n\n29) Personman: Sacrifice R1 Personman\nAttack B2 Kermit\n\n30) ts52: Build B1 Kermit\n\n31) Personman: Trade B2 R2 Kermit\n\n32) ts52: Build B1 Kermit\n\n33) Personman: Build B2 Personman\n\n34) ts52: Trade B1 Y1 Kermit\n\n35) Personman: Attack Y1 Kermit\n\n36) ts52: Build B1 Kermit\n\n37) Personman: Attack B1 Kermit\n\n38) ts52: Sacrifice B1 Kermit\nTrade G1 B1 Bigbird\n\n39) Personman: Attack B1 Kermit\n\n40) ts52: Move B1 Bigbird Personman\nCatastrophe Personman Blue\n\tts52: Good game sir. I look forward to our next.\n\n\nHomeworlds Online (SDG# 32153)\nVariants: &quot;Hard time&quot;\nStarted: 2017.5.11, Ended: 2017.5.15\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y2 B1 G3 Wil\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) wil: B G1 Wil\n\tFelix: I&#39;ve never been able to get this opening to work successfully, but here goes.\n\twil: I have, love the attempts at a second start freeze out\n\n4) Felix: Build B1 Felix\n\n5) wil: B G1 Wil\n\n6) Felix: Trade B3 Y3 Felix\n\twil: The question is always...do I put.an end to it by trading for a b3?  I think I can still catch up\n\n7) wil: D G1 Wil Y3 Y3\n\tFelix: That&#39;s the question! Let&#39;s experiment, shall we? I&#39;d be interested to know if there&#39;s a reliable way to defeat the strategy.\n\tDraw5PlayAll: Inform me.\n\n8) Felix: Build B2 Felix\n\twil: The b3 trade like you just did with yellow would get me there....but I think my heading to g2s may even freeze you out of Gs  unless you give up on a b freeze\n\n9) wil: B G1 Y3\n\tFelix: Hmm, true. I have the option of gunning for a complete blue freez-out, but that gives you the opportunity to make most of the green, and even then, I think you could get to one of the blues before I manage to get them all... I guess the main benefit of my start is that it gives me earlier access to 2-pip ships\n\n10) Felix: Discover B2 Felix B2 Range\n\n11) wil: T G3 B3 Wil\n\twil: Nixe\n\n12) Felix: Build B2 Felix\n\n13) wil: B B3 Wil\n\n14) Felix: Sacrifice Y3 Felix\nMove B2 Range Y3\nMove B2 Y3 Wil\nCatastrophe Wil Blue\nMove B2 Felix Wil\n\twil: No two games alike\n\n15) wil: B G2 Wil\n\tFelix: Indeed. It&#39;s why I love this game! The game Hive by Gen42 games has a similar phenomenon.\n\twil: Nice\n\n16) Felix: Trade B2 R2 Wil\n\n17) wil: B G2 Wil\n\n18) Felix: Attack G2 Wil\n\n19) wil: B G2 Wil\n\n20) Felix: Sacrifice R2 Wil\nPass\nPass\nCatastrophe Wil Green\n\twil: Ending in silliness\n\twil: Thx for the slaughter\n\tFelix: Silliness is fun. Thanks for allowing me to finally win with that odd blue opening!\n\twil: Letting you?!?!!   \n\tDraw5PlayAll: I am just now trying it against ts52. I wonder what happens if the opponent picks a G1 or Y1 and you do a similar trick? (G1 = homeworld B2 G1 G3; Y1 = G2 Y1 Y3.)\r\n\r\nI think the green one would be more successful and yellow less, since they started with a yellow star anyway.\n\tFelix: @wil Trying to be gracious here ;)\r\n\r\n@draw5 Both of those would be less effective. The green is less effective because most opponents open with a green ship, so they will have access to green anyway and it doesn&#39;t really provide an advantage. The yellow version would be far too slow because you don&#39;t have any blue in your system so trading would be a pain.\n\twil: I&#39;ve done the no blue...having to go out to a blue star to create... But this is always a nice balance.... The second player can take these risks some times.\n\tDraw5PlayAll: @Felix No, I was meaning what if they choose, e.g. G1B2 stars and Y3 ship. Or similarly Y1B2 stars and G3 ship.\n\n\nHomeworlds Online (SDG# 32017)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.5.12, Ended: 2017.5.15\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H B1 R2 G3\n\n2) dlwillson: H Y3 B2 G3\n\n3) wil: B G1 Wil\n\tdlwillson: Hi Wil! Good to play Homeworlds with you, again!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) wil: T G1 B1 Wil\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) wil: B B2 Wil\n\n8) dlwillson: Build B2 Dlwillson\n\n9) wil: T B1 Y1 Wil\n\n10) dlwillson: D B1 Dlwillson G1 Forest\n\n11) wil: B Y1 Wil\n\n12) dlwillson: B G1 Dlwillson\n\n13) wil: B Y1 Wil\n\n14) dlwillson: Sacrifice G3 Dlwillson\nB B1 Forest\nB B3 Forest\nB B3 Dlwillson\n\n15) wil: Build B3 Wil\n\n16) dlwillson: T B3 Y3 Forest\n\twil: lol....missed a bunch of opportunity there I did...wow\n\n17) wil: T B3 G3 Wil\n\tdlwillson: We&#39;re you going for blue control or yellow control?\n\tdlwillson: *Were\n\n18) dlwillson: B B3 Forest\n\twil: Going foR?  I still just mostly take advantage of opportunity\n\twil: Going foR?  I still just mostly take advantage of opportunity\n\n19) wil: Discover B2 Wil G3 G3\n\n20) dlwillson: T B1 R1 Forest\n\n21) wil: T Y1 R1 Wil\n\n22) dlwillson: B R1 Forest\n\n23) wil: B R2 Wil\n\n24) dlwillson: S Y3 Forest\nD R1 Forest Y3 Golden\nM B3 Forest Golden\nM R1 Golden Wil\nC Wil R\n\n25) wil: T Y1 B1 Wil\n\n26) dlwillson: T B3 Y3 Dlwillson\n\n27) wil: M B1 Wil Dlwillson\n\n28) dlwillson: S Y3 Dlwillson\nM B2 Dlwillson Wil\nM B1 Forest Golden\nM B3 Golden Wil\n\n29) wil: S G3 Wil\nB B3 Dlwillson\nB B3 Dlwillson\nP\nC Dlwillson B\n\n30) dlwillson: M B1 Golden Wil\nC Wil B\n\twil: There it doesn&#39;t look like a slaughter...but wish in saw that earliee\n\tdlwillson: Good game, Wil!\n\tdlwillson: Not much left of the board, is there?\n\twil: I think as rougue survivors of both worlds my barbarians have an advantage...we have more people and can adapt... You won WWV but how will you survive?\n\tdlwillson: :-)\r\n\r\nWould you like to play again? If so, I&#39;ll pick up your challenge again.\n\twil: Shore....anytime!!\n\n\nHomeworlds Online (SDG# 32162)\nStarted: 2017.5.12, Ended: 2017.6.1\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: Draw5PlayAll\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tDraw5PlayAll: I am so going to do it.\n\n3) ts52: Build G1 Ts52\n\tts52: Oh boy, here we go!\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) ts52: Build G1 Ts52\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) ts52: Build G1 Ts52\n\n10) Draw5PlayAll: Move B2 Draw5playall Gonzo\n\n11) ts52: Trade G1 Y1 Gonzo\n\n12) Draw5PlayAll: Build B2 Draw5playall\n\n13) ts52: Discover G1 Ts52 Y2 Bigbird\n\n14) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n15) ts52: Build G1 Bigbird\n\n16) Draw5PlayAll: Build B3 G2\n\n17) ts52: Build G2 Ts52\n\n18) Draw5PlayAll: Trade B3 R3 G2\n\n19) ts52: Trade G3 R3 Ts52\n\n20) Draw5PlayAll: Build B3 G2\n\n21) ts52: Trade G2 R2 Ts52\n\n22) Draw5PlayAll: Build R1 G2\n\n23) ts52: Build G2 Ts52\n\n24) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R1 G2 Ts52\nMove R3 G2 Ts52\nCatastrophe Ts52 Red\nMove B3 G2 Ts52\n\n25) ts52: Move G1 Bigbird Draw5playall\n\n26) Draw5PlayAll: Trade B2 R2 Gonzo\n\n27) ts52: Move Y1 Gonzo Ts52\n\tts52: Yeah, that about does it. Maybe I should play more &#39;small universe&#39; games.\n\n28) Draw5PlayAll: Sacrifice R2 Gonzo\nAttack G2 Ts52\nAttack Y1 Ts52\n\n29) ts52: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: I think this is the correct way.\n\tDraw5PlayAll: This is actually not trivial. I have to play accurately or else you strike first.\n\tts52: Indeed.\n\n30) Draw5PlayAll: Sacrifice B2 G2\nTrade Y1 G1 Ts52\nTrade B3 G3 Ts52\nCatastrophe Ts52 Green\n\tts52: I don&#39;t think I had a way out of it, but just realized that move hands it to you. Well played.\n\tDraw5PlayAll: I am surprised my rating is nearly 1800! Good game.\n\n\nHomeworlds Online (SDG# 32176)\nVariants: &quot;Hard time&quot;\nStarted: 2017.5.14, Ended: 2017.6.4\nParticipants: MagicJohn (S), Subhan64 (N)\nWinner: MagicJohn\n\n1) Subhan64: Homeworld B1 Y2 G3\n\n2) MagicJohn: Homeworld Y2 B1 G3\n\n3) Subhan64: Build G1 Subhan64\n\tMagicJohn: Should make for a wide-open game......\n\tMagicJohn: Should make for a wide-open game......\n\tMagicJohn: Should make for a wide-open game......\n\tDraw5PlayAll: Should make for an epic fight over blue and possibly yellow...\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Subhan64: Trade G1 B1 Subhan64\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) Subhan64: Build G1 Subhan64\n\n8) MagicJohn: Build G1 Magicjohn\n\n\tMagicJohn: ?????\n\nHomeworlds Online (SDG# 32192)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.5.16, Ended: 2017.5.25\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H B3 Y1 G3\n\n2) Felix: Homeworld B1 R2 G3\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Good luck and have fun :)\n\n4) Felix: Build G1 Felix\n\tdlwillson: You too! It&#39;s good to play Homeworlds with you again.\n\tFelix: Likewise! You&#39;ve always been an enjoyable (and challenging) opponent\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: B B2 Dlwillson\n\n8) Felix: Build B2 Felix\n\n9) dlwillson: D B1 Dlwillson Y2 Golden\n\n10) Felix: Trade B1 Y1 Felix\n\n11) dlwillson: Build B1 Dlwillson\n\n12) Felix: Build Y1 Felix\n\n13) dlwillson: Discover B1 Dlwillson G2 Forest\n\n14) Felix: Discover Y1 Felix B3 Lapiz\n\n15) dlwillson: Build G1 Dlwillson\n\tdlwillson: Excellent move! I&#39;ll have to think.\r\nFastest SDG Homeworlds game, ever! :-)\n\n16) Felix: Sacrifice G3 Felix\nBuild Y2 Lapiz\nBuild Y2 Felix\nBuild Y3 Felix\n\n17) dlwillson: Build B2 Dlwillson\n\tFelix: Thanks! Then of course I took a long time to try to think of another excellent move :P This might be a bad idea...\n\n18) Felix: Discover B2 Felix G3 Nicetry\n\tdlwillson: Let&#39;s see what you do if I dare you...\n\n19) dlwillson: T B2 R2 Dlwillson\n\tFelix: I&#39;m sorely tempted! But I think you would just move your G3 into my system immediately after and use my red star to overcome my ships before I could replace my Y3 with another large...\n\n20) Felix: Trade Y3 G3 Felix\n\tdlwillson: That&#39;s just exactly what I would&#39;ve done!\n\n21) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Forest\nBuild B3 Golden\nBuild G1 Dlwillson\n\n22) Felix: Trade Y2 R2 Lapiz\n\n23) dlwillson: Trade B2 Y2 Forest\n\n24) Felix: Move Y2 Felix Nicetry\n\n25) dlwillson: Build Y3 Forest\n\tFelix: I just want all those nice pretty Y3s so badly...\n\n26) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Lapiz\nBuild B2 Nicetry\n\n27) dlwillson: Sacrifice Y2 Forest\nMove Y3 Forest Dlwillson\nMove B3 Golden Nicetry\n\tdlwillson: one for me and two for you and that, I think, will have to do\n\n28) Felix: Sacrifice Y2 Nicetry\nMove B2 Nicetry Golden\nMove B2 Nicetry Forest\n\tFelix: That will do I suppose!\n\n29) dlwillson: M B1 Golden Nicetry\n\n30) Felix: Move B2 Golden Dlwillson\n\tFelix: Scatter! Scatter!\n\n31) dlwillson: S B2 Dlwillson\nT Y3 R3 Dlwillson\nT B3 Y3 Nicetry\n\n32) Felix: Sacrifice B2 Dlwillson\nTrade Y3 G3 Felix\nTrade Y1 R1 Lapiz\n\n33) dlwillson: Build B2 Nicetry\n\n34) Felix: Move R2 Lapiz Forest\n\tFelix: Great move! I knew that attack was doomed to fail.\n\n35) dlwillson: D B1 Nicetry G2 Field\n\tdlwillson: Good game so far! Fun and fast!\n\tdlwillson: That was a really good attack. It cost me a lot to escape.\n\n36) Felix: Attack B1 Forest\n\tFelix: Thank you. I do like to keep the pressure on whenever possible, because I have found that if I let it become a resource management game (that is, a game dominated mostly by fleet building and denying pieces to the opponent), I usually lose. My hope is that pressuring the opponent to make rash decisions (or even better, choose between 2 potential threats) and hopefully make a mistake :)\n\tFelix: This has definitely been a fun one!\n\tDraw5PlayAll: &quot;My hope is that pressuring the opponent to make rash decisions... and hopefully make a mistake&quot; is awkwardly written.\n\n37) dlwillson: Build B2 Nicetry\n\tFelix: &quot;My hope is that pressuring the opponent to make rash decisions will cause him or her to make a mistake.&quot;\n\tFelix: &quot;My hope is that pressuring the opponent to make rash decisions will cause him or her to make a mistake.&quot;\n\n38) Felix: Trade B1 R1 Forest\n\n39) dlwillson: Move Y3 Nicetry Forest\n\tdlwillson: Homeworlds and Creative Writing. Awesome. :-)\n\n40) Felix: Sacrifice Y3 Lapiz\nMove R2 Forest Dlwillson\nMove R1 Forest Dlwillson\nMove B2 Forest Dlwillson\nCatastrophe Dlwillson Red\n\n41) dlwillson: Build B1 Nicetry\n\n42) Felix: Sacrifice G3 Felix\nBuild B3 Dlwillson\nBuild Y1 Felix\nBuild Y2 Felix\n\n43) dlwillson: S Y3 Forest\nM B2 Nicetry Field\nM B1 Field Dlwillson\nC Dlwillson B\nM B2 Field Dlwillson\n\tdlwillson: I think you&#39;re one short of a win, but I guess we&#39;ll see.\n\n44) Felix: Trade Y2 G2 Felix\n\tFelix: I think you&#39;re right, but it will be fun either way :)\r\n\n\tFelix: Hold on, I just thought of something. Let me make sure I want to do that :P\n\n45) dlwillson: B B1 Dlwillson\n\tFelix: Heck, let&#39;s try something even more fun...\n\n46) Felix: Build Y2 Felix\n\tdlwillson: I may have been mistaken. :-)\n\n47) dlwillson: Trade G1 R1 Dlwillson\n\n48) Felix: Move Y1 Felix Lapiz\n\tFelix: That&#39;s not at all what I expected (and secretly hoped) you&#39;d do! And sorry to keep undoing. That time I typed in the wrong color!\n\tFelix: And nice use of the catastrophe during the turn instead of at the end. I&#39;m so glad they opened up that feature, since it adds so much strategic depth. I often secretly hope that my opponent doesn&#39;t realize it&#39;s an option ;)\n\n49) dlwillson: B B2 Dlwillson\n\n50) Felix: Discover Y1 Felix B3 Soak\n\n51) dlwillson: B B3 Nicetry\n\tdlwillson: There&#39;s another thing that&#39;s a surprise. Home systems can be completely abandoned mid-turn without returning to the bank. You still have to be back by the end of the turn, though.\n\tdlwillson: I didn&#39;t do that this game, obviously. I did it in another game.\n\n52) Felix: Build G1 Felix\n\tdlwillson: Sorry about that. I suddenly realized I&#39;d put myself in checkmate.\n\tFelix: Oh, interesting! I knew that was possible in the real game rules, but I didn&#39;t know it was implemented on here. I haven&#39;t had a situation yet where that&#39;s necessary, but I can see how it could be in a pinch. Thanks for the tip ;)\n\tFelix: And I honestly never have a problem with undoing if you catch yourself and want to change it before I make my next move \n\tFelix: Although in this case I would have preferred you to make the mistake :P\n\n53) dlwillson: T B3 Y3 Nicetry\n\n54) Felix: Sacrifice Y2 Felix\nMove Y1 Soak Dlwillson\nMove Y1 Lapiz Dlwillson\n\n55) dlwillson: M Y3 Nicetry Felix\n\tdlwillson: It seems like a bug to me. Where do you see it in the real rules?\n\tFelix: There&#39;s a line about it in the Andy Looney rules and also in the version on John Cooper&#39;s website.\r\n\r\nLooney rules: &quot; It&#39;s OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over.&quot;\r\n\r\nCooper rules: &quot;You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of your turn.&quot;\n\n56) Felix: Sacrifice G1 Felix\nBuild Y2 Dlwillson\nCatastrophe Dlwillson Yellow\n\tdlwillson: Huh. I&#39;ve seen that rule, but I just now realized that I&#39;ve been assuming that someone else needs to have a ship in the system to hold it down.\n\n\tFelix: Thank you! I was scared you&#39;d notice the threat and trade for an R2 during one of the last few turns. That was a very fun and interesting game, especially when we both had zero large ships. I look forward to the next!\n\tdlwillson: Meanwhile I was scared you&#39;d get a blue and go bowling.\n\tFelix: There were several ways I could have kept you on the wrong footing, I suppose. As ill conceived as my earlier attack was, it all worked out in the end :) I honestly hadn&#39;t planned beyond the initial attack.\n\nHomeworlds Online (SDG# 32171)\nStarted: 2017.5.16, Ended: 2017.6.21\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 R3 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\tFelix: Here we go again. Good luck!\n\tts52: Excellent! Good luck to you too!\n\n3) Felix: Build G1 Felix\n\tFelix: Thanks, I&#39;ll need it. You&#39;ve been playing very well lately!\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: Trade B1 Y1 Felix\n\n10) ts52: Build B1 Kermit\n\n11) Felix: D B2 Felix G2 Grassland\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Build Y1 Felix\n\n14) ts52: Trade B1 Y1 Kermit\n\n15) Felix: Move Y1 Felix Grassland\n\n16) ts52: Build Y2 Kermit\n\n17) Felix: Build Y2 Grassland\n\n18) ts52: Build B1 Kermit\n\n19) Felix: Move Y1 Grassland Kermit\n\n20) ts52: Trade Y1 R1 Kermit\n\n21) Felix: Sacrifice G3 Felix\nBuild Y1 Kermit\nBuild Y2 Grassland\nBuild Y3 Felix\n\n22) ts52: Discover Y2 Kermit G2 Robin\n\n23) Felix: Build Y3 Grassland\n\n24) ts52: Attack Y1 Kermit\n\n25) Felix: Trade Y2 R2 Grassland\n\n26) ts52: Build Y2 Kermit\n\n27) Felix: Move Y2 Grassland Kermit\nCatastrophe Kermit Yellow\n\n28) ts52: Trade B1 Y1 Kermit\n\n29) Felix: Trade Y3 G3 Felix\n\n30) ts52: Build B1 Kermit\n\n31) Felix: Build B2 Grassland\n\n32) ts52: Move B1 Kermit Robin\n\n33) Felix: Move B2 Grassland Kermit\n\n34) ts52: Build B3 Kermit\n\n35) Felix: Build B3 Kermit\nCatastrophe Kermit Blue\n\n36) ts52: Build B1 Robin\n\n37) Felix: Move B2 Grassland Kermit\n\n38) ts52: Move R1 Kermit Ts52\n\n39) Felix: Build B2 Kermit\n\n40) ts52: Move B1 Robin Kermit\n\n41) Felix: Trade B2 R2 Kermit\n\n42) ts52: Build B2 Kermit\n\n43) Felix: Build B3 Kermit\nCatastrophe Kermit Blue\n\n44) ts52: Build R1 Ts52\n\n45) Felix: A Y1 Kermit\n\n46) ts52: Discover R1 Ts52 B1 Gonzo\n\n47) Felix: B Y1 Kermit\n\n48) ts52: Build B2 Robin\n\n49) Felix: Sacrifice G3 Felix\nBuild Y2 Grassland\nBuild Y2 Grassland\nBuild Y3 Felix\n\n50) ts52: Build B2 Robin\n\n51) Felix: Move Y3 Grassland Gonzo\n\n52) ts52: Trade B2 R2 Robin\n\n53) Felix: Move Y3 Gonzo Robin\n\n54) ts52: Build B2 Robin\n\n55) Felix: Sacrifice R2 Grassland\nAttack R2 Robin\nAttack Y2 Robin\n\n56) ts52: Sacrifice R1 Gonzo\nAttack R2 Robin\n\n57) Felix: Sacrifice R2 Kermit\nAttack R2 Robin\nAttack B2 Robin\n\n58) ts52: Sacrifice R1 Ts52\nAttack R2 Robin\n\n59) Felix: Trade Y3 R3 Robin\n\n60) ts52: Build R1 Robin\n\tFelix: That was an interesting little back-and-forth... I hope this works out.\n\n61) Felix: S R3 Robin\nA R2 Robin\nA R1 Robin\nA B2 Robin\n\n62) ts52: Build B1 Robin\nCatastrophe Robin Blue\n\tts52: Yeah, this isn&#39;t going to end well for me.\n\n63) Felix: B Y3 Kermit\n\n64) ts52: Trade G1 R1 Ts52\n\tFelix: Yeah... I dare say you&#39;re in a bit of trouble now. It has been a few games since i&#39;ve managed to get a leg up on you, so I&#39;ll take it!\n\tFelix: Yeah... I dare say you&#39;re in a bit of trouble now. It has been a few games since i&#39;ve managed to get a leg up on you, so I&#39;ll take it!\n\n65) Felix: T Y3 G3 Felix\n\tts52: Well played. We can play it out if you like, or I can resign and we can start another.\n\n66) ts52: Build G1 Ts52\n\tFelix:  It&#39;s totally up to you. I&#39;m fine either way. I&#39;ve been known to make some silly mistakes when I have the upper hand, but there is an air of inevitability about this one, I think. I&#39;d love to rematch!\n\n67) Felix: Build Y3 Robin\n\tts52: Yeah, I don&#39;t think it&#39;ll take you too long to wipe me out, but maybe you&#39;ll make a mistake. ;)\n\n68) ts52: Build R1 Ts52\n\n69) Felix: Discover Y3 Robin B1 Waterworld\n\n70) ts52: Build R2 Ts52\n\n71) Felix: Sacrifice Y3 Waterworld\nMove R1 Robin Kermit\nMove R1 Kermit Ts52\nCatastrophe Ts52 Red\nMove Y3 Kermit Ts52\n\n72) ts52: Trade G3 R3 Ts52\n\n73) Felix: S R2 Robin\nA G1 Ts52\nA R3 Ts52\n\tts52: Congrats. Good game.\n\tFelix: Thank you. You too!\n\n\nHomeworlds Online (SDG# 32169)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.5.16, Ended: 2017.5.28\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 R3 G3\n\n2) wil: H G2 B1 B3 *\n\tFelix: Here we go! I&#39;ll give you the opportunity to open with a blue rush, should you wish to do so. I&#39;m curious what options are open for defending against it.\n\twil: I&#39;ll play, I like this.  \n\twil: Frankly I think the issue is when do you turn your g3 to blue...\n\twil: Frankly I think the issue is when do you turn your g3 to blue...\n\twil: Frankly I think the issue is when do you turn your g3 to blue...\n\n3) Felix: Build G1 Felix\n\n4) wil: B B1 Wil\n\tFelix: Right.... I think some experimentation is in order. It probably would have been smarter for me to use a y3 instead of an r3, so I can diversify more quickly.\n\n5) Felix: Trade G3 B3 Felix\n\n6) wil: T B3 Y3 Wil\n\tFelix: Oh why not?\n\n7) Felix: Build B2 Felix\n\twil: Could be this is Ynot?\n\n8) wil: B B2 Wil\n\n9) Felix: Trade B3 Y3 Felix\n\n10) wil: T B1 R1 Wil\n\tFelix: Y, don&#39;t mind if I do\n\n11) Felix: Build G1 Felix\n\n\tFelix: So, I&#39;m not sure you benefited much from that opening this time around. I think trading for that B3 on the second turn might be the best way to counteract that blue rush attack.\n\tDraw5PlayAll: Then P2 sacs the Y3 and throws a B1 at the homeworld.\n\twil: D5p&agrave;...  You are peanutting....  Members of the peanut gallery are allowed to watch and discuss.things amongst themselves but not make comments which can affect the outcome of a game.\n\tFelix: Rats!\n\tDraw5PlayAll: Uh oh, I think he hibernated again.\n\twil: Went camping....acting like a kid...back n recovering...\n\twil: Another day\n\nHomeworlds Online (SDG# 32197)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.5.16, Ended: 2017.5.27\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Pass\n\tdlwillson: Hi Wil! I feel like I should take a small handicap. What do you think?\n\n2) wil: H Y2 B1 G3\n\twil: I like getting wooped!  You play how you wish to make it interesting for you... No worries either way here.  \n\n3) dlwillson: Homeworld R3 B2 G3\n\n4) wil: B G1 Wil\n\tdlwillson: I like to win some and lose some. I&#39;ll look at our game history and see if you&#39;ve beaten me recently. If you have, I won&#39;t take a handicap. If you haven&#39;t, I&#39;ll skip a turn or two.\n\tdlwillson: You have! In fact, you beat me three times in a row, and it looks like you have beaten me more than I&#39;ve beaten you. No handicap needed here. Game on! :-)\n\twil: Now I want one! \n\n5) dlwillson: Build G1 Dlwillson\n\tdlwillson: If I win two more back-to-back, maybe. :-)\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: T G1 B1 Dlwillson\n\n8) wil: Build B2 Wil\n\n9) dlwillson: B B2 Dlwillson\n\n10) wil: Discover B2 Wil Y3 Y3\n\n11) dlwillson: T B2 Y2 Dlwillson\n\n12) wil: B G1 Wil\n\n13) dlwillson: D B1 Dlwillson G1 Forest\n\n14) wil: D B1 Wil Y3 Why3\n\n15) dlwillson: Build Y1 Dlwillson\n\n16) wil: Trade G1 R1 Wil\n\n17) dlwillson: Build B2 Forest\n\n18) wil: Build R1 Wil\n\n19) dlwillson: S Y1 Dlwillson\nD B1 Forest G3 Field\n\n\tdlwillson: Bummer!\n\twil: My bad..left n went camping...\n\nHomeworlds Online (SDG# 31952)\nVariants: &quot;Hard time&quot;\nStarted: 2017.5.18, Ended: 2017.5.21\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 31969)\nStarted: 2017.5.19, Ended: 2017.5.19\nParticipants: Felix (S), icalvinist (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 32230)\nVariants: &quot;Hard time&quot;\nStarted: 2017.5.22, Ended: 2017.5.25\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 32245)\nStarted: 2017.5.25, Ended: 2017.6.1\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Good luck and have fun!\n\n4) Felix: Build G1 Felix\n\tDraw5PlayAll: I sense this will be a race for one economy and you then sac your G3 to overwhelm me.\n\tFelix: Hmm, what makes you think that? Based on our homeworlds, we might be focusing on different economies.\n\n5) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n6) Felix: Trade G1 B1 Felix\n\n7) Draw5PlayAll: Build B2 Draw5playall\n\n8) Felix: Discover B1 Felix G2 Out\n\tDraw5PlayAll: However, we both have 1-3...\n\n9) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n10) Felix: B B2 Out\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) Felix: Trade B2 Y2 Out\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) Felix: Build B2 Out\n\n15) Draw5PlayAll: Build B2 G2\n\n16) Felix: T B2 R2 Out\n\n17) Draw5PlayAll: Trade B2 R2 G2\n\n18) Felix: Build G1 Felix\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) Felix: Build B2 Out\n\n21) Draw5PlayAll: Build B2 G2\n\n22) Felix: Trade B2 Y2 Out\n\n23) Draw5PlayAll: Build R1 G2\n\n24) Felix: Build B2 Out\n\n25) Draw5PlayAll: Trade R1 Y1 G2\n\n26) Felix: Trade B2 G2 Out\n\n27) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n28) Felix: Build B2 Out\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: Move G2 Out Draw5playall\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 B2\nBuild R1 G2\n\n32) Felix: Sacrifice G1 Felix\nBuild G1 Draw5playall\nCatastrophe Draw5playall Green\n\n33) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G3 B2 Draw5playall\n\tDraw5PlayAll: I figured I might want the extra red.\n\n34) Felix: Discover B1 Out B3 Rumpus_room\n\tFelix: Might come in handy :)\n\tDraw5PlayAll: Oh, how I so want to attack you...\n\n35) Draw5PlayAll: Trade B1 Y1 G2\n\tFelix: I thought you might. I had to think it through very carefully to make sure that was a relatively safe move...\n\n36) Felix: T B1 G1 Rumpus_room\n\n37) Draw5PlayAll: Move Y1 G2 Rumpus_room\n\n38) Felix: S Y2 Out\nM G1 Rumpus_room Out\nD G1 Out Y3 Cheese\n\n39) Draw5PlayAll: Build B1 G2\n\n40) Felix: Build G1 Felix\n\n41) Draw5PlayAll: Build G2 B2\n\n42) Felix: Build G3 Cheese\n\n43) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G1 B2 Felix\nMove G2 B2 Felix\nCatastrophe Felix Green\n\n\tDraw5PlayAll: Good game. I never expected that you would actually fall for the trap... I thought you would trade for an R1 (which makes my intent, getting the G3, impossible for the moment).\r\n\r\nI would have been terrified if I had that bluebird homeworld for so long. \n\tFelix: Well done. I definitely overlooked that. Rookie mistake! One of the drawbacks of these longer turn-based games vs real-time games is the ease of overlooking threats when coming back for a new turn.\n\nHomeworlds Online (SDG# 32246)\nVariants: &quot;Unrated&quot;\nStarted: 2017.5.25, Ended: 2017.6.3\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R3 B2 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Let&#39;s make this interesting :)\n\tDraw5PlayAll: R3B2G3 would have been more interesting.\n\n4) Felix: Build G1 Felix\n\tFelix: @Draw5 That&#39;s a subjective statement, I dare say.\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Felix: Trade G1 Y1 Felix\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: B G1 Felix\n\n9) dlwillson: D G1 Dlwillson Y1 Sol\n\n10) Felix: Build Y2 Felix\n\n11) dlwillson: B G1 Sol\n\n12) Felix: Move G1 Felix Sol\n\n13) dlwillson: B G2 Dlwillson\n\n14) Felix: B G2 Felix\n\n15) dlwillson: M G1 Sol Felix\n\n16) Felix: Sacrifice G2 Felix\nBuild G2 Sol\nBuild Y2 Felix\n\n17) dlwillson: S G3 Dlwillson\nB G2 Sol\nB G3 Felix\nB G3 Dlwillson\nC Sol G\n\n18) Felix: Build G1 Felix\nCatastrophe Felix Green\n\n19) dlwillson: B Y1 Dlwillson\n\tFelix: Dang it, nice one :)\n\tdlwillson: I think you responded wrong. I think you should&#39;ve attack my big green, forcing me to do the cat, so you&#39;d have the lead.\n\tdlwillson: And thank you, I was pretty proud of the assault. :-)\n\tdlwillson: Hmm... Maybe not. If I do the cat, I might get an extra ship out of it.\n\n20) Felix: T Y2 G2 Felix\n\tFelix: Either way, I think you would have an edge, but I&#39;d rather be in control of what happens ;)\n\n21) dlwillson: B Y2 Dlwillson\n\n22) Felix: Build G1 Felix\n\n23) dlwillson: D Y1 Dlwillson B1 Sky\n\n24) Felix: Discover Y1 Felix B1 Oriole\n\n25) dlwillson: M Y2 Dlwillson Oriole\n\n26) Felix: Sacrifice G2 Felix\nBuild Y2 Oriole\nBuild Y3 Felix\n\n27) dlwillson: S G2 Dlwillson\nB Y3 Oriole\nB Y3 Sky\nC Oriole Y\n\n28) Felix: Build G1 Felix\n\n29) dlwillson: Sacrifice Y3 Sky\nMove Y1 Dlwillson Sky\nMove Y1 Sky Felix\nMove Y1 Sky Felix\nCatastrophe Felix Y\n\n30) Felix: Trade G1 Y1 Felix\n\tFelix: .... Oh.\n\n31) dlwillson: Build G1 Dlwillson\n\n32) Felix: Build G1 Felix\n\tDraw5PlayAll: This has been a weird game. No real developments and Felix is without a large for the second time with no other star systems.\n\n33) dlwillson: B G2 Dlwillson\n\tFelix: I have nothing but hobbits.\n\n34) Felix: Build G2 Felix\n\n35) dlwillson: T G3 Y3 Dlwillson\n\n36) Felix: Discover G1 Felix B1 Hope\n\n37) dlwillson: B Y1 Dlwillson\n\n38) Felix: Discover G1 Felix B1 Saveme\n\n39) dlwillson: Move Y3 Dlwillson Saveme\n\n40) Felix: Build G2 Hope\n\tdlwillson: Don&#39;t worry buddy! I&#39;ll save you!\n\n41) dlwillson: Sacrifice G2 Dlwillson\nBuild Y1 Saveme\nBuild Y2 Dlwillson\n\n42) Felix: Build G2 Saveme\n\n43) dlwillson: Build G3 Dlwillson\n\tFelix: I don&#39;t want YOUR help! Sending distress signals across the\r\n cosmos...\n\n44) Felix: Build G3 Felix\n\tdlwillson: LOL! But ... but, I&#39;m right *here*! I can help you!\n\n45) dlwillson: Trade Y3 R3 Saveme\n\tFelix: Like the last time you &quot;helped&quot; me with your happy yellow ships? No thanks ;)\n\n46) Felix: Sacrifice G2 Hope\nBuild G2 Saveme\nBuild G3 Hope\n\tdlwillson: I think my last turn may have been a mistake. I think I shoulda swapped to red a turn or two ago... This game is hard.\n\n47) dlwillson: Attack G2 Saveme\n\n48) Felix: Trade G3 R3 Hope\n\n49) dlwillson: Trade G2 R2 Saveme\n\tFelix: Definitely tricky! I thought for sure I was a goner a while back. I think you also failed to capitalize on an opportunity to move your large into my homeworld before I could get one. But yeah, trading for a red sooner would have expedited that attack...\n\n50) Felix: Sacrifice G3 Felix\nBuild G2 Saveme\nBuild G3 Hope\nBuild G3 Felix\n\tdlwillson: I didn&#39;t move in, because you always had the ability to stop me with a catastrophe. It would have been expensive to you, so I suppose I should have, anyway.\n\n51) dlwillson: Move G1 Dlwillson Saveme\nCatastrophe Saveme G\n\tFelix: It was a tricky situation, and I&#39;d say I got very lucky!\n\n52) Felix: Trade G3 Y3 Hope\n\n53) dlwillson: Build G1 Dlwillson\n\n54) Felix: Build Y2 Hope\n\n55) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Saveme Dlwillson\nMove G1 Dlwillson Saveme\n\n56) Felix: Build R1 Hope\n\n57) dlwillson: B G1 Saveme\n\n58) Felix: S G3 Felix\nB G2 Hope\nB G2 Hope\nB G3 Felix\n\n59) dlwillson: M G1 Saveme Felix\n\n60) Felix: Trade G2 R2 Felix\n\n61) dlwillson: B G2 Felix\n\n62) Felix: Sacrifice Y3 Hope\nMove G1 Hope Dlwillson\nMove G2 Hope Dlwillson\nMove G2 Hope Dlwillson\nCatastrophe Dlwillson Green\n\n63) dlwillson: B G1 Felix\nC Felix G\n\n64) Felix: Trade Y1 G1 Felix\n\n65) dlwillson: Trade R3 B3 Saveme\n\tFelix: This is an interesting stand off...\n\n66) Felix: Move R3 Hope Felix\n\tdlwillson: I was debating between that and building an r1.\n\tdlwillson: I&#39;m still not sure which is the better move. If this were a ladder match, I&#39;d have set up the plastic and played out the various moves.\n\tFelix: Yeah, I usually play while I&#39;m at work, so I don&#39;t have the chance to break out the plastic! I do a lot of mental gymnastics though. Sometimes I write it out on paper to try to visualize it!\n\n67) dlwillson: B B1 Saveme\n\tdlwillson: You should do what SilentTitan, my brother-in-law, does; take your &#39;mids to work and teach everyone Homeworlds. :-)\n\n68) Felix: Trade R3 Y3 Felix\n\n69) dlwillson: M B3 Saveme Dlwillson\n\tFelix: I could! And interesting... I didn&#39;t know you and SilentTitan were related. He&#39;s an excellent player as well. Which one of you got the other one into Pyramids?\n\tdlwillson: I started it. Many years ago, I saw Brian Trotter playing WW5 and fell in love with the pyramids, though not with WW5.\n\n70) Felix: Move R2 Felix Saveme\n\n71) dlwillson: Sacrifice Y1 Saveme\nMove B1 Saveme Dlwillson\n\tFelix: Yeah, I&#39;m not such a fan of WW5 either. I was introduced via martian chess, which is a pretty decent game, but nothing like Homeworlds.\n\n72) Felix: Attack G1 Saveme\n\n73) dlwillson: D R2 Dlwillson Y1 Golden\n\n74) Felix: Build Y1 Felix\n\n75) dlwillson: T B3 G3 Dlwillson\n\n76) Felix: Build G1 Saveme\n\n77) dlwillson: B Y2 Dlwillson\n\n78) Felix: Trade Y3 G3 Felix\n\n79) dlwillson: Build B2 Dlwillson\n\n80) Felix: Sacrifice G3 Felix\nBuild Y2 Hope\nBuild Y3 Felix\nBuild G2 Saveme\n\n81) dlwillson: M B2 Dlwillson Golden\n\n82) Felix: Trade G2 B2 Saveme\n\n83) dlwillson: D Y1 Dlwillson R1 Mars\n\n84) Felix: Move Y1 Felix Saveme\n\n85) dlwillson: Sacrifice G3 Dlwillson\nBuild Y3 Dlwillson\nBuild Y3 Mars\nBuild B3 Golden\n\n86) Felix: S Y3 Felix\nM Y2 Hope Dlwillson\nM Y1 Saveme Dlwillson\nM B2 Saveme Dlwillson\nC Dlwillson Yellow\n\n87) dlwillson: M Y3 Mars Dlwillson\n\n88) Felix: Sacrifice G1 Saveme\nBuild B3 Dlwillson\n\n89) dlwillson: M B3 Golden Felix\nC Dlwillson B\n\tFelix: That&#39;s about what I figured. Worth a shot though!\n\n90) Felix: Sacrifice Y2 Hope\nMove R1 Hope Dlwillson\nMove R2 Saveme Dlwillson\n\tdlwillson: I gotta admit; I&#39;m surprised. I thought you had me.\n\n91) dlwillson: A G1 Felix\n\tFelix: And I thought you had me quite a while back. It was a foolish attack, to be honest, and left me wide open. I could have played the safe game, but sometimes that&#39;s just no fun :P\n\tdlwillson: Another very fun game. Thanks Felix.\n\n\nHomeworlds Online (SDG# 32161)\nVariants: &quot;Unrated&quot;\nStarted: 2017.5.25, Ended: 2017.8.8\nParticipants: kato830 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y3 G3\n\n2) kato830: Homeworld G3 B1 Y3\n\twil: Good luck\n\n3) wil: B G1 Wil\n\tkato830: Good luck! This is my first game and I&#39;m excited to play!\r\n\n\twil: Read the rules?  Have arcade?  This is a tricky one.\n\n4) kato830: Build Y1 Kato830\n\tkato830: Yes, I&#39;ve read the rules. I&#39;ve been meaning to play it for the past couple of years but haven&#39;t convinced my friends to play it. I don&#39;t have arcade but I have accumulated more pyramids than I need for any game.\n\n5) wil: T G1 B1 Wil\n\n6) kato830: Discover Y1 Kato830 G2 Pangea\n\n7) wil: B B1 Wil\n\n8) kato830: Build Y1 Kato830\n\twil: So the beginning is often follow the leader... You don&#39;t want anyone to freeze you out of any commodity... And ya just gave me blue...sort of.  \r\n\n\twil: So the beginning is often follow the leader... You don&#39;t want anyone to freeze you out of any commodity... And ya just gave me blue...sort of.  \r\n\n\twil: So the beginning is often follow the leader... You don&#39;t want anyone to freeze you out of any commodity... And ya just gave me blue...sort of.  \r\n\n\tkato830: I was under the impression that you shouldn&#39;t take the last of the smallest size. So now I can start grabbing the g2&#39;s. But i see what you&#39;re saying. I think. \n\tkato830: I meant b2&#39;s\n\tkato830: Oh I mis-remembered the rules. I see. \n\n9) wil: D B1 Wil G1 G1\n\twil: Yes while taking the last of 1s or 2s gives the other access to the next rank..not getting in on a color is trouble..\n\n10) kato830: Trade Y1 G1 Kato830\n\n11) wil: B B2 Wil\n\n12) kato830: Trade Y3 B3 Kato830\n\n13) wil: T B2 Y2 Wil\n\n14) kato830: Build B2 Kato830\n\twil: My counter is to mitigate that not allowing you to grow\n\n15) wil: S Y2 Wil\nM B1 G1 Pangea\nM B1 Pangea Kato830\nC Kato830 B\n\n16) kato830: Build Y1 Pangea\n\n17) wil: Discover B1 Wil Y1 Y1\n\n18) kato830: Move Y1 Pangea Kato830\n\n19) wil: B G1 Wil\n\n20) kato830: Build Y2 Kato830\n\n21) wil: M G1 Wil Y1\n\n22) kato830: Build Y2 Pangea\n\n23) wil: Build G1 Wil\n\n24) kato830: Move G1 Kato830 Pangea\n\n25) wil: Build G2 Y1\n\n\nHomeworlds Online (SDG# 32133)\nStarted: 2017.5.26, Ended: 2017.6.21\nParticipants: panglott (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) panglott: Homeworld G2 B1 Y3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) panglott: Build Y1 Panglott\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) panglott: Build Y1 Panglott\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) panglott: Trade Y1 B1 Panglott\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) panglott: Build Y1 Panglott\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) panglott: Discover Y1 Panglott B3 Macon\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) panglott: Build Y2 Panglott\n\n15) Draw5PlayAll: Move Y1 Draw5playall G2\n\n16) panglott: Move Y2 Panglott Macon\n\n17) Draw5PlayAll: Build B2 G2\n\n18) panglott: Trade Y1 G1 Macon\n\n19) Draw5PlayAll: Build B2 G2\n\n20) panglott: Build B2 Panglott\n\n21) Draw5PlayAll: Trade B2 R2 G2\n\n22) panglott: Trade Y3 R3 Panglott\n\n23) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 G2 Macon\nMove B1 Macon Panglott\nCatastrophe Panglott Blue\n\n24) panglott: Sacrifice Y2 Macon\nMove R3 Panglott Macon\nMove R3 Macon G2\n\n25) Draw5PlayAll: Build R1 G2\n\n26) panglott: Attack R2 G2\n\n27) Draw5PlayAll: Build R1 G2\nCatastrophe G2 Red\n\n28) panglott: Build Y1 Panglott\n\n29) Draw5PlayAll: Build Y2 G2\n\n30) panglott: Move Y1 Panglott Macon\n\n31) Draw5PlayAll: Trade Y1 R1 G2\n\n32) panglott: Build G1 Macon\n\n33) Draw5PlayAll: Move Y2 G2 Macon\n\n34) panglott: Build Y1 Panglott\n\n35) Draw5PlayAll: Sacrifice R1 G2\nAttack Y1S Macon\n\n36) panglott: Trade G1 R1 Macon\n\n37) Draw5PlayAll: Trade Y2 R2 Macon\n\n38) panglott: Discover Y1 Panglott B3 London\n\n39) Draw5PlayAll: Sacrifice R2 Macon\nAttack G1 Macon\nAttack R1 Macon\n\n40) panglott: Trade Y1 G1 London\n\n41) Draw5PlayAll: Move G1 Macon Panglott\n\n42) panglott: Build G1 London\n\n43) Draw5PlayAll: Build G2 Panglott\n\n44) panglott: Build G3 London\n\n45) Draw5PlayAll: Build G3 Panglott\nCatastrophe Panglott Green\n\tpanglott: Thanks for the game ;)\n\tDraw5PlayAll: Hey, you finally got a large.\n\n\nHomeworlds Online (SDG# 32282)\nVariants: &quot;Hard time&quot;\nStarted: 2017.5.31, Ended: 2017.6.14\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y3 B2 G3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 R1 Felix\n\n7) wil: B R2 Wil\n\n8) Felix: Build R2 Felix\n\n9) wil: B R2 Wil\n\n10) Felix: T R1 Y1 Felix\n\n11) wil: D R2 Wil Y1 Y1\n\n12) Felix: Build Y1 Felix\n\n13) wil: D R2 Y1 Y2 Y2\n\n14) Felix: Move G3 Felix Y2\n\n15) wil: D R2 Y2 Y3 Y3\n\twil: Lol\n\n16) Felix: Build G1 Y2\n\n17) wil: T R2 Y2 Wil\n\n18) Felix: M G3 Y2 Felix\n\n19) wil: M R2 Y3 Y2\n\n20) Felix: Move G1 Y2 Felix\n\n21) wil: B R1 Wil\n\n22) Felix: Discover Y1 Felix B2 B2\n\n23) wil: D R1 Wil G1 G1\n\n24) Felix: Discover R2 Felix B2 B2b\n\n25) wil: B G1 Wil\n\n26) Felix: Move G1 Felix B2b\n\n27) wil: B G2 Wil\n\n28) Felix: Build G2 Felix\n\n29) wil: B Y1 Wil\n\n30) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 B2b\n\n31) wil: S G3 Wil\nB G3 Wil\nB R2 G1\nB R3 Y2\n\n32) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 B2\nBuild Y3 Felix\n\n33) wil: M Y1 Wil G1\n\twil: Nice\n\twil: Nice\n\n34) Felix: Sacrifice Y2 Felix\nMove G1 B2b G1\nMove G1 G1 Wil\n\twil: Might be resigning soon\n\n35) wil: S G2 Wil\nB R3 Wil\nB R3 G1\n\tFelix: Thanks! I didn&#39;t realize quite how good my last move was until after the fact.\n\twil: Wanna finish your move?  \n\twil: I don&#39;t feel right taking advantage of an sdg issue\n\tDraw5PlayAll: Then just call the catastrophe yourself.\n\twil: Lol...we can play our own game...upto Felix...if he don&#39;t wanna replay it, I&#39;ll take the offering.  \n\twil: Lol...we can play our own game...upto Felix...if he don&#39;t wanna replay it, I&#39;ll take the offering.  \n\twil: Note, I opened this game to take s look since it looked like Felix had replied.  In general, when in a game I prefer discussing the game with my opponent, not the peanut gallery.  While I am not fully versed as to the proper decorum, it is my preference.\n\n36) Felix: Sacrifice G2 Felix\nBuild G2 Wil\nBuild G2 B2b\nCatastrophe Wil Green\n\tFelix: Oh, sorry for not seeing this. I tend to only come to the games when it&#39;s my turn so I usually don&#39;t see messages when it&#39;s not my turn. It was actually intentional to not call the catastrophe. All part of my plan... I think :) Is your move the one you actually want to make?\n\tFelix: And then he realized it wasn&#39;t a very good idea after all.\n\n37) wil: T R1 G1 Wil\n\tFelix: I must have been thinking that waiting to do the catastrophe would give me a chance to grab that G3, but that was a really stupid idea hahaha. Big mistake. You&#39;re welcome for the offering! Take it with my best wishes.\n\tDraw5PlayAll: Question mark?\r\n\r\nAlso, I like how you guys are using my naming conventions now.\n\tFelix: You didn&#39;t invent the convention, Draw5. Wil&#39;s been using it since before you were a gleam in the SDG registration page&#39;s eye.\n\twil: Sure...although I&#39;d like to know why you wouldn&#39;t want to catastrophe!   (I have no issues losing games, look at my record, I like playing and leaning and experimenting)\n\n38) Felix: Trade G2 Y2 B2b\n\twil: Lol, yes d5 I was given some grief when I started... It stemmed from attempting to play blind...most didn&#39;t like it.  Folks that imitated I would start naming g3 systems y2...then they quit complaining... But welcome to the cult young padwan\n\tFelix: My hope was that you would do something OTHER than sacrificing your G2, so that on my next turn I could build the last g3 and THEN do the catastrophe. In retrospect, it was an awful idea that would never have worked. Whoops!\n\n39) wil: B G1 Wil\n\n40) Felix: Build R1 B2b\n\n41) wil: D R3 Y2 B1 B1\n\n42) Felix: Move R1 B2b G1\nCatastrophe G1 Red\n\n43) wil: B R1 Wil\n\n44) Felix: Move R2 B2b G1\n\n45) wil: D Y1 G1 G2 G2\n\n46) Felix: Build G2 B2b\n\n47) wil: D Y1 G2 G3 G3\n\n48) Felix: Sacrifice G3 B2b\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 B2b\n\n49) wil: Move G1 Wil B1\n\n50) Felix: S G2 Felix\nPass\nB R1 G1\n\n51) wil: B G2 Wil\n\n52) Felix: Move Y1 B2 G1\n\n53) wil: S G2 Wil\nB R2 B1\nB R3 Y2\n\n54) Felix: Trade G3 B3 B2b\n\n55) wil: M R2 Y2 G1\n\n56) Felix: S R1 G1\nA R2 G1\n\n57) wil: T R3 B3 Wil\n\twil: Nice\n\n58) Felix: M B3 B2b G1\n\n59) wil: B G2 Wil\n\tFelix: Thanks! That was a near thing.\n\n60) Felix: S G3 Felix\nB B1 G1\nB G3 B2b\nB G3 Felix\n\n61) wil: M B3 Wil B1\n\n62) Felix: M B3 G1 Wil\n\n63) wil: T G1 B1 Wil\n\tFelix: Interesting. Suicide?\n\twil: I guess...  \n\twil: Brain fart\n\twil: Oh well...heehee\n\n64) Felix: Sacrifice R2 G1\nAttack Y2 Wil\nAttack G2 Wil\n\twil: No chance of recovery from that I believe\n\n65) wil: S Y1 G3\nM B3 B1 Wil\nC Wil B\n\tFelix: I don&#39;t think so. Oh well! I think I had a working plan of victory either way... it just would have taken longer. But nothing is a given in this game.\n\n66) Felix: Sacrifice R2 G1\nAttack R1 Wil\nPass\n\twil: Gg\n\tFelix: You too! A very fun one, and definitely a nailbiter after I made that one mistake.\n\twil: I am always happy to increase your ratings and decrease mine so I can be a surprise.\n\n\nHomeworlds Online (SDG# 32289)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.2, Ended: 2017.6.9\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: Odd, I did not think I would get a rematch this soon.\n\n2) Felix: Homeworld Y2 B2 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Haha, why ever not? You&#39;re a worthy opponent and have climbed the ranks quite quicklY!\n\tDraw5PlayAll: Uh oh\n\n4) Felix: Build G1 Felix\n\tDraw5PlayAll: Also, I prefer 8/5/11 hard time because it gives leeway but I do not have to worry about forgetting to time someone out.\r\n\r\nHowever for 3+ players I usually keep the time control and drop Hard Time.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 R1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: B R1 Felix\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) Felix: Build R2 Felix\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n12) Felix: Trade R2 Y2 Felix\n\n13) Draw5PlayAll: Build Y2 G2\n\n14) Felix: Discover Y2 Felix G3 Out\n\n15) Draw5PlayAll: Build Y3 Draw5playall\n\n16) Felix: Build Y3 Out\n\n17) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\n18) Felix: Move Y2 Out G2\n\n19) Draw5PlayAll: Sacrifice Y1 G2\nMove R3 Draw5playall G2\n\n20) Felix: Build Y1 G2\n\n21) Draw5PlayAll: Build R2 G2\n\n22) Felix: Build Y3 Out\n\n23) Draw5PlayAll: Sacrifice R2 G2\nAttack Y2 G2\nAttack Y1 G2\n\n24) Felix: Discover Y3 Out G2 In\n\n25) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n26) Felix: Trade R1 B1 Felix\n\n27) Draw5PlayAll: Discover Y2 G2 B3 B3\n\n28) Felix: Build G1 Felix\n\n29) Draw5PlayAll: Trade Y2 B2 B3\n\n30) Felix: Move B1 Felix Out\n\n31) Draw5PlayAll: Move Y1 G2 B3\n\n32) Felix: B B1 Out\n\n33) Draw5PlayAll: Move B2 B3 G2\n\n34) Felix: Move B1 Out In\n\tDraw5PlayAll: So G2 = Altair, out = Betelgeuse, in = Caster, B3 = Denham (?)\n\n35) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n36) Felix: Build B1 In\n\tFelix: I have no idea what you&#39;re talking about\n\tDraw5PlayAll: Did I spell the names right?\n\n37) Draw5PlayAll: Move Y1 B3 Felix\n\tDraw5PlayAll: South&#39;s ship Y3 was not sacrificed in the in system. South did not move their G3 ship from Felix to Draw5PlayAll. South did not move their G1 ship from Felix to Draw5PlayAll. South did not move their Y3 ship from out to Felix. A catastrophe did not occur in the Draw5PlayAll system. No construction (G) technology was lost.\n\n38) Felix: Attack Y1 Felix\n\n39) Draw5PlayAll: Sacrifice Y2 G2\nMove Y1 Draw5playall Felix\nMove Y1 Draw5playall Felix\nCatastrophe Felix Yellow\n\n40) Felix: Build G1 Felix\n\n41) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n42) Felix: Sacrifice G3 Felix\nBuild Y1 In\nBuild Y1 In\nBuild R1 Felix\n\n43) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\tFelix: Good attack, but leaving yourself without mobility may have been unwise.\n\n44) Felix: Build G1 Felix\n\tDraw5PlayAll: What did you say?\n\n45) Draw5PlayAll: Trade G3 R3 Draw5playall\n\tFelix: I believe I said it would be unwise to leave yourself without any construction ability.\n\n46) Felix: Sacrifice Y3 Out\nMove R1 Felix Draw5playall\nMove R1 Felix Draw5playall\nCatastrophe Draw5playall Red\nMove Y3 In Draw5playall\n\tDraw5PlayAll: I think you have me cornered.\n\tDraw5PlayAll: I think my mess up was allowing you two Y3s.\n\n\tFelix: Good game though. I honestly didn&#39;t think I&#39;d have a shot with a duplicate-star homeworld. According to most of what I&#39;ve read, it&#39;s supposed to be suicide.\n\tDraw5PlayAll: When I made that earlier comment (G2 = Altair, etc) I was referring to the system the Homeworlds Theater videos use... but I would hope this game does not end up on the video... or really any of mine, even those that I won.\n\tFelix: Ah, I see. I&#39;ve never heard of Homeworlds Theater. Why wouldn&#39;t you wanna be on it?\n\tDraw5PlayAll: http://new.wunderland.com/2017/06/05/homeworlds-theater/\n\nHomeworlds Online (SDG# 32258)\nStarted: 2017.6.2, Ended: 2017.6.16\nParticipants: Felix (S), panglott (N)\nWinner: Felix\n\n1) panglott: Homeworld B3 Y1 G3\n\n2) Felix: H B2 Y3 G3\n\n3) panglott: Build G1 Panglott\n\n4) Felix: Build G1 Felix\n\tFelix: Good luck and have fun!\n\n5) panglott: Discover G1 Panglott B2 Tallahassee\n\n6) Felix: Trade G1 Y1 Felix\n\n7) panglott: Build G1 Tallahassee\n\n8) Felix: Build Y1 Felix\n\n9) panglott: Build G1 Panglott\n\n10) Felix: Discover Y1 Felix B1 Out\n\n11) panglott: Build G2 Tallahassee\n\n12) Felix: Build G2 Felix\n\n13) panglott: Trade G1 R1 Panglott\n\n14) Felix: B Y2 Felix\n\n15) panglott: Trade G2 Y2 Tallahassee\n\n16) Felix: Discover Y1 Felix B1 Gumdrop\n\n17) panglott: Move G1 Tallahassee Gumdrop\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Gumdrop\nBuild Y3 Out\nBuild Y3 Felix\n\n19) panglott: Discover Y2 Tallahassee G1 Cairo\n\n20) Felix: T Y2 R2 Felix\n\n21) panglott: Build G2 Panglott\n\n22) Felix: T Y2 R2 Gumdrop\n\n23) panglott: Sacrifice G3 Panglott\nBuild G2 Tallahassee\nBuild G3 Gumdrop\nBuild G3 Panglott\n\n24) Felix: Build G3 Felix\n\n25) panglott: Trade G3 R3 Gumdrop\n\n26) Felix: S G2 Felix\nB R1 Gumdrop\nB R1 Gumdrop\nC Gumdrop Red\n\n27) panglott: Sacrifice G3 Panglott\nBuild Y2 Cairo\nBuild G2 Tallahassee\nBuild G3 Panglott\n\n28) Felix: B G3 Felix\n\n29) panglott: Trade G2 Y2 Tallahassee\n\n30) Felix: B R1 Felix\n\n31) panglott: Sacrifice Y2 Tallahassee\nMove Y2 Cairo Felix\nMove Y2 Cairo Felix\nCatastrophe Felix Y\n\n32) Felix: Sacrifice Y3 Out\nMove G3 Felix Panglott\nMove G3 Felix Panglott\nCatastrophe Panglott Green\nMove R2 Felix Panglott\n\n33) panglott: Trade G2 Y2 Tallahassee\n\n34) Felix: Attack R1 Panglott\n\n\tpanglott: Thanks for the game ;)\n\tFelix: Thank you too! It was a fun finish. Good game\n\nHomeworlds Online (SDG# 32159)\nStarted: 2017.6.4, Ended: 2020.3.31\nParticipants: SubatomicAura (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) SubatomicAura: Homeworld R3 B1 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) SubatomicAura: Build G1 Subatomicaura\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n\nHomeworlds Online (SDG# 32251)\nVariants: &quot;Unrated&quot;\nStarted: 2017.6.4, Ended: 2017.7.17\nParticipants: SubatomicAura (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B2 G3\n\n2) SubatomicAura: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\n4) SubatomicAura: Build G1 Subatomicaura\n\n5) wil: T G1 Y1 Wil\n\n6) SubatomicAura: Build G1 Subatomicaura\n\n7) wil: B Y1 Wil\n\n8) SubatomicAura: Discover G1 Subatomicaura R2 Alpha\n\twil: One thing one should watch for is a freeze out from any economy....the early game is often copycat to insure that doesn&#39;t occur\n\n9) wil: D Y1 Wil G1 G1\n\n10) SubatomicAura: Build G2 Subatomicaura\n\n11) wil: S G3 Wil\nB Y2 Wil\nB Y2 G1\nB Y2 G1\n\n12) SubatomicAura: Trade G2 B2 Subatomicaura\n\n13) wil: M Y2 G1 Alpha\n\n14) SubatomicAura: Trade B2 R2 Subatomicaura\n\n15) wil: A G1 Alpha\n\n16) SubatomicAura: Build R1 Subatomicaura\n\n17) wil: B Y3 Alpha\n\n18) SubatomicAura: Trade G1 B1 Subatomicaura\n\n19) wil: B Y3 G1\n\n\nHomeworlds Online (SDG# 32300)\nVariants: &quot;Unrated&quot;\nStarted: 2017.6.4, Ended: 2017.7.17\nParticipants: SubatomicAura (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) SubatomicAura: Homeworld R2 B1 G3\n\n3) wil: B G1 Wil\n\n4) SubatomicAura: Build G1 Subatomicaura\n\n5) wil: T G1 B1 Wil\n\twil: Was atomicaura already taken?\n\n6) SubatomicAura: Trade G1 Y1 Subatomicaura\n\n7) wil: B B2 Wil\n\n8) SubatomicAura: Build Y1 Subatomicaura\n\n9) wil: D B2 Wil Y2 Y2\n\n10) SubatomicAura: Build G1 Subatomicaura\n\n11) wil: S G3 Wil\nB B2 Y2\nB B2 Y2\nB B3 Wil\n\n12) SubatomicAura: Build G1 Subatomicaura\n\n13) wil: D B2 Y2 G3 G3\n\n14) SubatomicAura: Move G1 Subatomicaura G3\n\n15) wil: B B3 G3\n\n16) SubatomicAura: Build Y1 Subatomicaura\n\n17) wil: S B2 Y2\nT B3 G3 Wil\nT B3 R3 G3\n\n18) SubatomicAura: Discover Y1 Subatomicaura B3 B3\n\n19) wil: A G1 G3\n\n\nHomeworlds Online (SDG# 32299)\nStarted: 2017.6.4, Ended: 2017.6.7\nParticipants: dlwillson (S), MobyNostromo (N)\nWinner: dlwillson\n\n\nHomeworlds Online (SDG# 32199)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.6.4, Ended: 2017.6.13\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: H G2 Y1 Y3 *\n\n3) dlwillson: Build G1 Dlwillson\n\twil: This game has an asterisk at the start\n\tdlwillson: Huh... I wonder why... I don&#39;t see one.\n\n4) wil: B Y1 Wil\n\twil: I had to place an asterisk for not using a blue and for having two of one color in my hw\n\n5) dlwillson: Trade G3 Y3 Dlwillson\n\n6) wil: D Y1 Wil G3 G3\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: B Y2 G3\n\twil: Lol, this is getting real bad real fast...\n\n9) dlwillson: D Y2 Dlwillson G2 Field\n\n10) wil: M Y1 G3 Field\n\n11) dlwillson: Build G1 Dlwillson\n\n12) wil: B Y2 Field\n\n13) dlwillson: Build Y3 Field\nCatastrophe Field Y\n\n14) wil: B Y1 G3\n\n15) dlwillson: Build G1 Dlwillson\n\twil: Thought that would be tempting\n\twil: It is weird....using a non blue instafreeze causes a turmoil between the non blue opening (need to get blue now) and the freezout need to maintain the freeze...  Well that and my shoot from.the hip not thinking ways\n\n16) wil: B Y2 Wil\n\tdlwillson: Yeah, that&#39;s interesting. I think you have got a slight advantage, though.\n\twil: I feel much better after the catastrophe\n\n17) dlwillson: D G1 Dlwillson B2 Sea\n\n18) wil: D Y2 Wil B3 B3\n\n19) dlwillson: B G2 Sea\n\n20) wil: B Y2 Wil\n\n21) dlwillson: Discover G1 Dlwillson G2 Forest\n\n22) wil: M Y3 Wil B3\n\n23) dlwillson: B G3 Sea\n\n24) wil: T Y3 G3 B3\n\n25) dlwillson: T G2 R2 Sea\n\n26) wil: M G3 B3 Wil\n\twil: Yeah...oops\n\n27) dlwillson: Sacrifice Y3 Dlwillson\nMove G3 Sea B3\nMove G3 B3 Wil\nDiscover G1 Forest Y3 Golden\n\n28) wil: B G2 Wil\nC Wil G\n\n29) dlwillson: B G2 Dlwillson\n\twil: They went willingly to save the kingdom...what troopers\n\n30) wil: B Y3 G3\n\n31) dlwillson: Build G2 Sea\n\tDraw5PlayAll:  \n\tDraw5PlayAll: !?\n\n32) wil: S Y2 G3\nM Y3 G3 Sea\nM Y3 Sea Dlwillson\n\n33) dlwillson: T G1 R1 Dlwillson\n\n34) wil: T Y2 R2 B3\n\n35) dlwillson: Sacrifice G2 Sea\nBuild G1 Dlwillson\nBuild R1 Dlwillson\n\n36) wil: B Y2 G3\n\n37) dlwillson: Trade G2 Y2 Dlwillson\n\twil: Wotta game\n\n38) wil: B Y3 G3\n\tdlwillson: :-)\n\n39) dlwillson: B G2 Golden\n\n40) wil: M Y3 G3 Sea\n\n41) dlwillson: M G2 Golden Wil\n\n42) wil: S R2 B3\nA G2 Wil\nA R2 Sea\n\n43) dlwillson: B G2 Dlwillson\n\tdlwillson: B g2 dlwillson\n\n44) wil: S R2 Sea\nA Y2 Dlwillson\nA G2 Dlwillson\n\tdlwillson: I haven&#39;t done that in a while... :-)\n\n45) dlwillson: B G2 Sea\n\n46) wil: Trade Y2 R2 Dlwillson\n\n47) dlwillson: Build G3 Golden\n\n48) wil: S R2 Dlwillson\nA R1 Dlwillson\nA R1 Dlwillson\n\n49) dlwillson: T G2 R2 Sea\n\n50) wil: A G1 Dlwillson\n\twil: I didn&#39;t play that well, but the instafreeze was powerful enough to overcome...gg\n\tdlwillson: good game :-)\n\n\nHomeworlds Online (SDG# 32225)\nStarted: 2017.6.4, Ended: 2017.6.14\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) dlwillson: Build G1 Dlwillson\n\tFelix: Here we go again. Have fun!\n\tdlwillson: Yay! You too!\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Felix: Trade G1 Y1 Felix\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) Felix: Build Y2 Felix\n\n9) dlwillson: D Y1 Dlwillson G2 Forest\n\n10) Felix: Sacrifice Y1 Felix\nDiscover Y2 Felix G1 Endor\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Build G1 Felix\n\n13) dlwillson: D G1 Dlwillson B2 Sea\n\n14) Felix: Trade G1 R1 Felix\n\n15) dlwillson: Trade Y2 R2 Dlwillson\n\n16) Felix: Build R1 Felix\n\n17) dlwillson: Move R2 Dlwillson Forest\n\n18) Felix: Move R1 Felix Endor\n\n19) dlwillson: B G1 Dlwillson\n\tdlwillson: Darn it, Felix!\n\n20) Felix: Build G2 Felix\n\tFelix: Haha, but I don&#39;t think I&#39;m doing very well! You&#39;re about to get most of the greens, I think.\n\n21) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB G3 Sea\n\n22) Felix: Discover G2 Felix Y1 Tattooine\n\n23) dlwillson: Trade G2 R2 Dlwillson\n\n24) Felix: Build G2 Felix\n\n25) dlwillson: T G3 Y3 Sea\n\n26) Felix: Build G3 Tattooine\n\n27) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB Y3 Forest\nB G3 Dlwillson\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Endor\nBuild R1 Felix\n\n29) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Forest\nBuild R3 Dlwillson\nBuild G3 Dlwillson\n\n30) Felix: Build R3 Endor\n\tFelix: well that escalated quickly!\n\n31) dlwillson: Move R2 Dlwillson Sea\n\tdlwillson: Factories! Factories everywhere!\n\tdlwillson: I&#39;m really not sure what to do with all this capital...\n\n32) Felix: Trade R1 B1 Felix\n\tdlwillson: Oh, I know! I&#39;ll try to make more!\n\n33) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Dlwillson\nBuild R3 Sea\nBuild G3 Dlwillson\n\tFelix: Greed will get you nowhere! It&#39;s all about smart exchanges ;)\n\n34) Felix: Build B1 Felix\n\n35) dlwillson: Discover G1 Sea B1 Sky\n\n36) Felix: Move G2 Felix Sky\n\n37) dlwillson: Move R3 Sea Sky\n\tdlwillson: I&#39;m so used to playing against bankers...\n\n38) Felix: M B1 Felix Tattooine\n\tFelix: Yeah... I do play it sometimes, but I&#39;ve never been as effective as I could be at using that strategy. Plus it&#39;s less satisfying somehow to win with that setup since it&#39;s generally considered stronger.\n\tDraw5PlayAll: But I just send a spare R2 to your investment and scare it off! Why is it stronger than a 1-3? If I get small greens on 2-point stars, I can still move to large stars.\n\n39) dlwillson: Trade Y2 B2 Sea\n\n40) Felix: Move B1 Felix Endor\n\tFelix: @draw5 - it still gives the player a much greater control over the supply. Large pieces can be absorbed and kept from the opponent in a pinch. And small pieces tend to run out faster, limiting the ability of someone with a fortress to move out.\n\n41) dlwillson: M B2 Sea Sky\n\tdlwillson: @draw5: You are uniquely positioned to understand the importance of being a banker: http://superdupergames.org/main.html?page=play_homeworlds&amp;num=32303\n\n42) Felix: Sacrifice G2 Sky\nBuild B2 Endor\nBuild B3 Tattooine\n\n43) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB G2 Sky\nB G3 Dlwillson\n\n44) Felix: Sacrifice Y2 Endor\nDiscover B2 Endor Y2 Entry\nMove B1 Tattooine Entry\n\n45) dlwillson: M R3 Dlwillson Entry\n\tdlwillson: The bank is empty!\n\tFelix: The pieces are all laid out. Now if only I had a dang medium star to use as an entry point to your homeworld!\n\n46) Felix: Sacrifice Y3 Endor\nMove B2 Entry Sky\nMove B1 Entry Sky\nCatastrophe Sky Blue\nDiscover B1 Endor Y3 Precious\n\tFelix: I guess this will have to do...\n\n47) dlwillson: Build R3 Dlwillson\n\tFelix: Sorry, just wanted to adjust that ever so slightly.\n\n48) Felix: Build B1 Tattooine\n\tdlwillson: Abandon hope, ye who entry here.\n\n49) dlwillson: Trade R1 B1 Dlwillson\n\tFelix: Excellent move. You force me into a costly maneuver!\n\tFelix: That solves my medium star problem though ;)\n\n50) Felix: Discover B3 Tattooine G2 Seafoam\n\tdlwillson: Expensive maybe, but I think it was profitable for you.\n\n51) dlwillson: M B1 Dlwillson Entry\n\n52) Felix: S G2 Tattooine\nB B2 Seafoam\nB B2 Tattooine\n\n53) dlwillson: D Y1 Forest G1 Field\n\n54) Felix: S B1 Precious\nT B3 Y3 Seafoam\n\n55) dlwillson: S G3 Dlwillson\nB R1 Entry\nB G2 Dlwillson\nB G3 Dlwillson\n\n56) Felix: S G3 Tattooine\nB G3 Felix\nB B1 Seafoam\nB B3 Seafoam\n\n57) dlwillson: Sacrifice Y2 Sea\nMove B1 Entry Field\nMove B1 Field Seafoam\nCatastrophe Seafoam B\n\n58) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Seafoam\nBuild B1 Tattooine\n\n59) dlwillson: Move G1 Dlwillson Seafoam\n\n60) Felix: D B1 Tattooine B2 Absorption\n\n61) dlwillson: Sacrifice Y1 Field\nDiscover G1 Seafoam B1 Sky\n\n62) Felix: Trade B1 G1 Tattooine\n\n63) dlwillson: Sacrifice Y3 Sea\nMove G3 Dlwillson Absorption\nMove G3 Absorption Endor\nMove G3 Endor Felix\n\n64) Felix: Sacrifice Y2 Seafoam\nMove G1 Tattooine Felix\nCatastrophe Felix Green\nMove R3 Endor Felix\n\n65) dlwillson: Move R3 Entry Tattooine\n\tFelix: That was a nice move!\n\n66) Felix: Move B2 Tattooine Felix\n\n67) dlwillson: M R2 Forest Sky\n\tFelix: OUCH. Really nice. I didn&#39;t see that coming.\n\tdlwillson: I&#39;ve been wanting to do that since you got the second big green, but I couldn&#39;t set it up right until then. Unfortunately, it was about as expensive for me as it was for you.\n\n68) Felix: Trade R1 G1 Felix\n\n69) dlwillson: B G3 Sky\n\tFelix: True. This has been a pretty epic game thus far.\n\tDraw5PlayAll: 8 planets.\n\n70) Felix: Build G3 Felix\n\n71) dlwillson: Trade G3 Y3 Sky\n\n72) Felix: S G3 Felix\nB B1 Absorption\nB B3 Felix\nB G3 Felix\n\n73) dlwillson: Build G3 Sky\n\n74) Felix: Build Y1 Seafoam\n\tdlwillson: I was supposed to have won by now... &gt;:-|\n\n75) dlwillson: M Y3 Sky Absorption\n\tFelix: And I was supposed to lose by now! \n\n76) Felix: S Y3 Seafoam\nM B2 Felix Tattooine\nM B2 Tattooine Absorption\nC Absorption Blue\nM B3 Felix Endor\n\tdlwillson: That&#39;s kinda what I mean. You&#39;re not cooperating.\n\n77) dlwillson: Sacrifice G3 Sky\nBuild R1 Dlwillson\nBuild G3 Sky\nBuild G3 Dlwillson\n\n78) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Seafoam\nBuild Y3 Seafoam\n\n79) dlwillson: Build Y3 Forest\n\tFelix: Yeah...\r\nSorry about that old chap. I&#39;m afraid I tend to kick and squirm. But I think you have me in the wrong footing now.\n\tdlwillson: LOL! I read that in the voice of Mr. B, The Gentleman Rhymer.\n\tdlwillson: I suddenly became terribly afraid you were going to blow up Sky, and completely end my little game, so I started diversifying.\n\n80) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Endor\nBuild B1 Endor\n\n81) dlwillson: Sacrifice Y3 Forest\nMove G3 Sky Felix\nMove G1 Sky Felix\nMove R3 Tattooine Felix\nCatastrophe Felix G\n\tFelix: Haha, I&#39;m not familiar with Mr. B, but I&#39;ll look him up.\r\n\r\nI honestly should have threatened Sky more, but the great eye of Sauron was turned elsewhere, so to speak.\n\n82) Felix: Sacrifice Y3 Seafoam\nMove R1 Endor Felix\nMove B3 Endor Felix\nMove B1 Endor Felix\n\n83) dlwillson: Sacrifice R3 Dlwillson\nAttack R3 Felix\nAttack B3 Felix\nAttack R1 Felix\n\tFelix: I present you with a choice: Eliminate all the yellow ships and draw this game out even further.... or don&#39;t. :P\n\n84) Felix: Sacrifice B1 Endor\nTrade B1 B1 Felix\n\tFelix: Hey, that works too.\n\tdlwillson: No sense dragging it out further... :-)\n\n85) dlwillson: Sacrifice R3 Felix\nAttack B1 Felix\nPass\nPass\n\tFelix: I didn&#39;t notice that threat. Very nicely done! \n\n\tFelix: Haha, I didn&#39;t know you could trade for the same color. That&#39;s funny.\n\tdlwillson: Thanks!\n\tdlwillson: I meant &quot;Thanks!&quot; to &quot;nicely done&quot;\n\tdlwillson: Excellent game! Now, to focus on work for a few hours!\n\tFelix: Yes, great game and well played. I thought I was a goner several times before you closed the deal. I have some work to do too, and then I should gather all of my wits for the epic ladder battle.\n\tdlwillson: o/\\o\n\nHomeworlds Online (SDG# 32290)\nStarted: 2017.6.4, Ended: 2017.6.12\nParticipants: panglott (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) panglott: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) panglott: Build G1 Panglott\n\tdlwillson: Have fun!\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) panglott: Discover G1 Panglott B1 Versailles\n\n7) dlwillson: B Y1 Dlwillson\n\n8) panglott: Build G1 Versailles\n\n9) dlwillson: D Y1 Dlwillson B2 Sea\n\n10) panglott: Build G1 Panglott\n\n11) dlwillson: Build G2 Dlwillson\n\n12) panglott: Discover G1 Panglott B1 Allegheny\n\n13) dlwillson: S G3 Dlwillson\nB Y2 Dlwillson\nB Y2 Sea\nB Y2 Sea\n\n14) panglott: Build G2 Panglott\n\n15) dlwillson: Discover Y1 Dlwillson B2 Sky\n\n16) panglott: Sacrifice G3 Panglott\nBuild G2 Versailles\nBuild G3 Allegheny\nBuild G3 Panglott\n\tdlwillson: I like your system names. Are they based on some predictive model, like mine are?\n\tpanglott: I was trying to use real star names for a while, but it was easier to think of evocative American small towns. Versailles is a small town in Kentucky, not too far from the Allegheny Mountains ;) \n\n17) dlwillson: Build G3 Dlwillson\n\n18) panglott: Trade G3 Y3 Allegheny\n\tpanglott: But they say it &quot;vur-sales&quot;\n\n19) dlwillson: Move G2 Dlwillson Sky\n\tdlwillson: That&#39;s excellent. Are you Kentuckian?\n\tdlwillson: Mine are &#39;field&#39; and &#39;forest&#39; for green, &#39;sky&#39; and &#39;sea&#39; for blue, &#39;sol&#39; and &#39;golden&#39; for yellow, and I almost never create red systems, but when I do, they have weird names. Basically, anything but &#39;mars&#39; will do.\n\tpanglott: That&#39;s neat. I guess you don&#39;t often need more than 2\n\tpanglott: Yea, in Louisville. \n\n20) panglott: Trade G1 R1 Versailles\n\n21) dlwillson: B Y3 Sky\n\n22) panglott: Sacrifice G3 Panglott\nBuild G1 Allegheny\nBuild G3 Allegheny\nBuild G3 Panglott\n\n23) dlwillson: Move G2 Sky Allegheny\nCatastrophe Allegheny G\n\n24) panglott: Move Y3 Allegheny Sea\n\n25) dlwillson: D Y2 Sea G1 Field\n\n26) panglott: Trade Y3 R3 Sea\n\n27) dlwillson: S Y2 Sea\nM Y1 Sea Field\nM Y1 Field Panglott\n\n28) panglott: Trade G2 Y2 Versailles\n\n29) dlwillson: Trade Y2 R2 Dlwillson\n\n30) panglott: Move G1 Versailles Sea\n\n31) dlwillson: T Y1 G1 Panglott\n\n32) panglott: Trade G2 R2 Panglott\n\n33) dlwillson: B G2 Panglott\n\n34) panglott: Move G3 Panglott Versailles\n\n35) dlwillson: Sacrifice R2 Dlwillson\nAttack R2 Panglott\nPass\n\n\tdlwillson: Good game! Thank you!\n\nHomeworlds Online (SDG# 32303)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.6.5, Ended: 2017.6.18\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: Draw5PlayAll\n\n1) dlwillson: Homeworld B3 Y1 G3\n\tDraw5PlayAll: You really asked for a 1/1/3 time control?\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\tdlwillson: Yes. I strongly prefer fast games. I figure a day is plenty of time, typically, and three days is plenty of time to get in a good think, if the other guy has submitted a particularly clever and/or surprising turn.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Yeah, just that some people cannot get on SDG every single day. I have noticed that the clock here is less of a measure of thinking time and more a measure of patience. With just one hour you could have a decent think but most of the hours are spent doing other things,\n\tdlwillson: Are you saying that you think the timing is too fast?\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: I am commenting o  it.\n\n7) dlwillson: Build R2 Dlwillson\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) dlwillson: Discover R1 Dlwillson R2 Gambit\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) dlwillson: S G3 Dlwillson\nB R2 Gambit\nB R3 Dlwillson\nB R3 Dlwillson\n\n12) Draw5PlayAll: Discover R1 Draw5playall G3 G3\n\n13) dlwillson: T R2 Y2 Dlwillson\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Gambit G3\nDiscover R1 Gambit G3 Field\n\n16) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n17) dlwillson: Attack R1 G3\n\n18) Draw5PlayAll: Move B2 Draw5playall Field\n\n19) dlwillson: Discover R3 Dlwillson Y2 Sol\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) dlwillson: Move R3 Sol Field\n\n22) Draw5PlayAll: Sacrifice Y1 Draw5playall\nD B2 Field G1 G1\n\n23) dlwillson: Sacrifice R1 G3\nPass\n\n24) Draw5PlayAll: Build B1 G1\n\n25) dlwillson: S R2 G3\nPass\nPass\n\tdlwillson: Nice! I had no idea...\n\n26) Draw5PlayAll: Trade B1 Y1 G1\n\n27) dlwillson: T R3 G3 Dlwillson\n\n28) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: Rats, I just realized I could have held you even longer...\n\n29) dlwillson: Build G1 Dlwillson\n\tdlwillson: Right. :-)\n\tDraw5PlayAll: Actually, you would have been absolutely powerless to do anything. Ugh.\n\n30) Draw5PlayAll: Build Y2 G1\n\n31) dlwillson: T G1 B1 Dlwillson\n\n32) Draw5PlayAll: Discover Y1 G1 Y2 Y2\n\tDraw5PlayAll: My only hope.\n\n33) dlwillson: S B1 Dlwillson\nT R3 B3 Field\n\n34) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G1\nBuild Y3 Draw5playall\nBuild Y3 G1\n\tDraw5PlayAll: I might not be so losing after all.\n\n35) dlwillson: B B1 Field\n\n36) Draw5PlayAll: Trade Y2 R2 G1\n\tDraw5PlayAll: I expected you to trade for a Y3.\n\n37) dlwillson: T B3 Y3 Field\n\tdlwillson: Yeah, well... I like to surprise when I can. Let&#39;s see what happens!\n\n38) Draw5PlayAll: Trade Y3 B3 Draw5playall\n\n39) dlwillson: B B1 Field\n\n40) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n41) dlwillson: M B1 Field Y2\n\n42) Draw5PlayAll: Discover Y1 Y2 B3 B3\n\n43) dlwillson: B G1 Dlwillson\n\n44) Draw5PlayAll: Build G1 Draw5playall\n\n45) dlwillson: T G1 R1 Dlwillson\n\n46) Draw5PlayAll: Move G1 Draw5playall B3\n\n47) dlwillson: D B1 Y2 Y3 Golden\n\n48) Draw5PlayAll: Build Y2 Draw5playall\n\n49) dlwillson: Build Y2 Field\n\n50) Draw5PlayAll: Build R2 G1\n\n51) dlwillson: Build R2 Field\n\n52) Draw5PlayAll: Move R2 G1 Golden\n\n53) dlwillson: D B1 Golden G2 Forest\n\n54) Draw5PlayAll: Build R3 G1\n\n55) dlwillson: Move R2 Field Forest\n\n56) Draw5PlayAll: Move R3 G1 B3\n\n57) dlwillson: Build R3 Forest\n\n58) Draw5PlayAll: Build R3 G1\n\n59) dlwillson: Sacrifice Y2 Field\nMove R1 Field G1\nMove R2 Forest G1\nCatastrophe G1 R\n\n60) Draw5PlayAll: Build Y2 B3\n\n61) dlwillson: B B1 Field\n\n62) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Thanks for the Y2!\n\tdlwillson: I think you&#39;re beating me!\n\tdlwillson: Nice job!\n\tDraw5PlayAll: You forgot to move.\n\n63) dlwillson: Move B1 Field Draw5playall\n\tdlwillson: Right you are! There you go, sir!\n\n64) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3\nBuild G2 B3\nBuild G3 Draw5playall\n\n65) dlwillson: Build B2 Field\n\n66) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B3 G1\nBuild G3 Draw5playall\nBuild R1 Golden\n\tDraw5PlayAll: You are being very annoying. It will take skill to withstand this storm.\n\n67) dlwillson: Trade B2 R2 Field\n\n68) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Golden\nBuild R3 B3\nBuild G3 Draw5playall\n\n69) dlwillson: B B2 Field\n\n70) Draw5PlayAll: Attack B1 Draw5playall\n\tDraw5PlayAll: The first time I tried it told me I had 1 unused action because I forgot to build the G3 back. Thanks, system!\n\n71) dlwillson: M B2 Field Draw5playall\n\n72) Draw5PlayAll: Move B1 Draw5playall Golden\n\n73) dlwillson: M B1 Field Draw5playall\n\n74) Draw5PlayAll: Attack B2 Draw5playall\n\tDraw5PlayAll: You have two turns to blow my blue star to stellar dust before you run out of blue.\n\n75) dlwillson: Sacrifice Y3 Field\nMove B1 Forest Field\nMove B1 Field Draw5playall\nCatastrophe Draw5playall B\nDiscover R3 Forest Y3 Solar\n\tdlwillson: Yep. I know.\n\n76) Draw5PlayAll: Discover B3 G1 G2 G2\n\n77) dlwillson: M R3 Solar G2\n\n78) Draw5PlayAll: Sacrifice R1 Golden\nAttack R3 G2\n\tDraw5PlayAll: Nice attempt but I doubt you can continue with just 4 ships.\n\n79) dlwillson: B R1 Dlwillson\n\n80) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 G1\nBuild B1 G2\n\tDraw5PlayAll: 3 now.\n\n81) dlwillson: T R1 B1 Dlwillson\n\n82) Draw5PlayAll: Sacrifice Y3 G1\nMove B1 G2 Dlwillson\nMove B3 G2 Dlwillson\nCatastrophe Dlwillson B\nMove Y1 Draw5playall G2\n\tDraw5PlayAll: At this point my win is likely guaranteed. Tell me if you have any way to resist:\r\nFirst I discover one of the B2s and put three yellows (from B3, G1, or my homeworld) there. Then I put three blues on G2. At this point I have a doomsday machine and you cannot block it.\r\nThe only catch is that if you obtain a blue, I may need to sac a Y2 to create another system for the blues, but I think you otherwise cannot resist.\n\n83) dlwillson: B R1 Dlwillson\n\tDraw5PlayAll: I just realized I can accelerate the process this way.\n\n84) Draw5PlayAll: Sacrifice Y3 G1\nMove Y2 B3 Dlwillson\nMove Y1 B3 Dlwillson\nMove Y1 G2 Dlwillson\nCatastrophe Dlwillson Yellow\n\n\tDraw5PlayAll: Good game. I wish it had been a ladder game.\n\tdlwillson: You&#39;d be #1 now, if it had! :-)\n\tDraw5PlayAll: That is what I meant. At least I have some self efficacy in that, assuming nothing major changes, I know I have beaten the #1 seat at least once. (I have also beat Felix but not on the ladder.)\n\nHomeworlds Online (SDG# 32198)\nStarted: 2017.6.8, Ended: 2017.7.21\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: Draw5PlayAll\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ts52: Build Y2 Ts52\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n11) ts52: Build Y2 Kermit\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Sadly I can do little to avoid you getting way too much yellow.\n\n13) ts52: Build Y3 Ts52\n\n14) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n15) ts52: Trade Y2 B2 Ts52\n\n16) Draw5PlayAll: Move B2 Draw5playall G2\n\n17) ts52: Move B2 Ts52 Kermit\n\n18) Draw5PlayAll: Build B1 G2\n\n19) ts52: Build G1 Ts52\n\tDraw5PlayAll: We are attempting to diversify, that is all.\n\n20) Draw5PlayAll: Trade B1 R1 G2\n\n21) ts52: Trade G1 R1 Ts52\n\tDraw5PlayAll: A purely defensive resource designed to deter invasions coming from Kermit.\n\n22) Draw5PlayAll: Build R2 G2\n\tts52: I&#39;m afraid you leave us no choice but to begin researching our own defense capabilities.\n\n23) ts52: Build R2 Ts52\n\tDraw5PlayAll: That was well-intentioned. You see, on the red planet we have a race of emotional, reactionary, and aggressive aliens that have a voice in our government and sometimes try to make decisions... like take over innocent &quot;enemy&quot; bases. The way I see it, they are not an enemy until they initiate conflict.\n\n24) Draw5PlayAll: Build Y2 Draw5playall\n\n25) ts52: Discover Y2 Kermit G2 Robin\n\n26) Draw5PlayAll: Build Y3 G2\n\n27) ts52: Build Y3 Robin\n\n28) Draw5PlayAll: Build G1 Draw5playall\n\n29) ts52: Discover Y3 Ts52 B3 Gonzo\n\n30) Draw5PlayAll: Discover R1 G2 G1 G1\n\n31) ts52: Move R2 Ts52 Kermit\n\n32) Draw5PlayAll: Discover Y1 G2 G1 G1b\n\n33) ts52: Move Y3 Robin G1\n\n34) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\n\n35) ts52: Build B1 Kermit\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 G1\nBuild R3 G2\nBuild G3 Draw5playall\n\n37) ts52: Sacrifice R2 Kermit\nAttack R2 G1\nAttack R1 G1\n\n38) Draw5PlayAll: Move R3 G2 Kermit\n\n39) ts52: Move B2 Kermit Robin\n\n40) Draw5PlayAll: Attack B1 Kermit\n\n41) ts52: Move Y1 Kermit Robin\n\n42) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\nBuild B3 Kermit\n\n43) ts52: Move R1 G1 Robin\n\n44) Draw5PlayAll: Discover B1 G2 R3 R3\n\n45) ts52: Build R2 G1\n\n46) Draw5PlayAll: Build R3 G2\n\n47) ts52: Move R2 G1 Gonzo\n\n48) Draw5PlayAll: Move B1 G2 R3\n\tDraw5PlayAll: I wish there was a position analyzer for Homeworlds like there is for Chess... after the game I would like to see if this position was winning for me, if you really should blow my homeworld greens to shreds, etc...\n\tts52: Agreed. I think you&#39;re pretty overwhelmingly in a better position. But I&#39;ve been sorely tempted to obliterate all the green in your homeworld. Sadly it would leave me a bit too vulnerable.\n\n49) ts52: Move R2 G1 R3\n\n50) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 R3 Ts52\nMove B1 R3 Ts52\n\n51) ts52: Move Y3 G1 R3\n\n52) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y2 G2\n\n53) ts52: Sacrifice R2 R3\nAttack B1 Ts52\nAttack B1 Ts52\n\n54) Draw5PlayAll: Sacrifice Y2 G2\nMove B1 Kermit Ts52\nMove Y1 G1b Kermit\nCatastrophe Ts52 Blue\n\n55) ts52: Build Y2 Robin\n\n56) Draw5PlayAll: Move Y1 Kermit Robin\nCatastrophe Robin Yellow\n\n57) ts52: Build G1 Ts52\n\n58) Draw5PlayAll: Build Y1 G2\n\n59) ts52: Move G1 Ts52 Gonzo\n\n60) Draw5PlayAll: Move Y1 G2 Kermit\n\n61) ts52: Build Y1 Gonzo\n\n62) Draw5PlayAll: Build Y2 Kermit\n\n63) ts52: Build Y2 Gonzo\n\n64) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Kermit Ts52\nMove Y2 Kermit Ts52\n\n\tDraw5PlayAll: In order to preserve your home planet you must agree to these terms and conditions. Please read these carefully, particularly section 15.1 about how exactly you are to indicate unconditional surrender, section 48.9 regarding intelligence tests and improved treatment for those who pass, and section 72.8 regarding conversion of your starships.\r\n\r\nFailure to accept the terms will result in a supernova of your home star.\r\n\r\n***** TERMS AND CONDITIONS *****\r\nThe chief officer of The Galactic Empire of TS52 (&quot;You&quot;) hereby agree to accept surrender of all starships and other space-travel related items (the &quot;Fleet&quot;) effective immediately, including but not limited to all defensive systems at the Homeworld of TS52, the star systems Gonzo, Robin, and R3, and... [page 1 of 47]\n\tts52: :) I fully accept your terms of surrender. Excellent game. \n\nHomeworlds Online (SDG# 32354)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.11, Ended: 2017.6.14\nParticipants: Subhan64 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n\nHomeworlds Online (SDG# 32338)\nStarted: 2017.6.11, Ended: 2017.8.1\nParticipants: ts52 (S), icalvinist (N)\nWinner: icalvinist\n\n1) icalvinist: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) icalvinist: Build G1 Icalvinist\n\n4) ts52: Build G1 Ts52\n\n5) icalvinist: Trade G1 Y1 Icalvinist\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) icalvinist: Build Y2 Icalvinist\n\n8) ts52: Build Y2 Ts52\n\n9) icalvinist: Build G1 Icalvinist\n\n10) ts52: Discover Y1 Ts52 B1 Gonzo\n\n11) icalvinist: Discover Y1 Icalvinist B2 Loki\n\n12) ts52: Build G1 Ts52\n\n13) icalvinist: Trade G1 B1 Icalvinist\n\n14) ts52: Trade G1 B1 Ts52\n\n15) icalvinist: Build G1 Icalvinist\n\n16) ts52: Discover B1 Ts52 G1 Kermit\n\n17) icalvinist: Move G1 Icalvinist Loki\n\n18) ts52: Move Y2 Ts52 Kermit\n\n19) icalvinist: Move G1 Loki Gonzo\n\n20) ts52: Trade Y1 R1 Gonzo\n\n21) icalvinist: Sacrifice Y1 Loki\nMove G1 Gonzo Ts52\n\n22) ts52: Sacrifice R1 Gonzo\nAttack G1 Ts52\n\n23) icalvinist: Discover B1 Icalvinist Y2 Odin\n\n24) ts52: Discover G1 Ts52 B1 Gonzo\n\n25) icalvinist: Build G1 Icalvinist\n\n26) ts52: Build G2 Ts52\n\n27) icalvinist: Move G1 Icalvinist Odin\n\n28) ts52: Build B2 Kermit\n\n29) icalvinist: Build G2 Odin\n\n30) ts52: Build Y1 Kermit\n\n31) icalvinist: Trade G1 R1 Odin\n\n32) ts52: Trade B1 R1 Kermit\n\n33) icalvinist: Move G2 Odin Gonzo\n\n34) ts52: Trade G2 R2 Ts52\n\n35) icalvinist: Sacrifice R1 Odin\nAttack G1 Gonzo\n\n36) ts52: Build R1 Kermit\n\n37) icalvinist: Trade G1 Y1 Gonzo\n\n38) ts52: Discover Y2 Kermit G2 Robin\n\n39) icalvinist: Build Y3 Gonzo\n\n40) ts52: Build Y3 Kermit\n\n41) icalvinist: Build G1 Icalvinist\n\n42) ts52: Discover Y3 Kermit R2 Elmo\n\n43) icalvinist: Trade Y1 R1 Gonzo\n\n44) ts52: Build G1 Ts52\n\n45) icalvinist: Sacrifice G3 Icalvinist\nBuild G2 Gonzo\nBuild R2 Gonzo\nBuild G3 Icalvinist\n\n46) ts52: Discover G1 Ts52 Y1 Bigbird\n\n47) icalvinist: Discover R1 Gonzo G3 Loki\n\n48) ts52: Build R3 Ts52\n\n49) icalvinist: Sacrifice G3 Icalvinist\nBuild G3 Icalvinist\nBuild R3 Gonzo\nBuild R3 Loki\n\n50) ts52: Move R3 Ts52 Bigbird\n\n51) icalvinist: Sacrifice B1 Odin\nTrade G2 Y2 Gonzo\n\n52) ts52: Build G2 Ts52\n\n53) icalvinist: Move Y2 Gonzo Loki\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Kermit\nBuild B1 Kermit\n\n55) icalvinist: Move R3 Loki Kermit\n\n56) ts52: Move B2 Kermit Robin\n\n57) icalvinist: Sacrifice R3 Gonzo\nAttack R1 Kermit\nAttack R1 Kermit\nAttack Y1 Kermit\n\n58) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Bigbird\nBuild B2 Robin\n\n59) icalvinist: Move R1 Kermit Loki\n\n60) ts52: Build B3 Robin\n\n61) icalvinist: Sacrifice G1 Icalvinist\nBuild G1 Gonzo\n\n62) ts52: Sacrifice B1 Kermit\nTrade R3 B3 Bigbird\n\n63) icalvinist: Sacrifice Y2 Icalvinist\nMove G2 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 Green\n\n64) ts52: Move B3 Bigbird Ts52\n\n65) icalvinist: Attack B1 Kermit\n\n66) ts52: Sacrifice Y3 Elmo\nMove B2 Robin Icalvinist\nMove B2 Robin Icalvinist\nMove B3 Robin Icalvinist\nCatastrophe Icalvinist Blue\n\n67) icalvinist: Build Y2 Kermit\n\n68) ts52: Build Y3 Robin\n\n69) icalvinist: Build B1 Kermit\n\n70) ts52: Trade B3 G3 Ts52\n\n71) icalvinist: Build B2 Kermit\n\n72) ts52: Build G1 Ts52\n\n73) icalvinist: Sacrifice Y2 Loki\nMove Y3 Gonzo Ts52\nMove Y1 Kermit Ts52\n\n74) ts52: Sacrifice R2 Ts52\nAttack Y3 Ts52\nAttack Y1 Ts52\n\n75) icalvinist: Move Y2 Kermit Ts52\nCatastrophe Ts52 Y\n\n76) ts52: Move Y2 Robin Icalvinist\n\n77) icalvinist: Sacrifice R1 Loki\nAttack Y2 Icalvinist\n\n78) ts52: Build Y1 Robin\n\n79) icalvinist: Trade R3 Y3 Kermit\n\n80) ts52: Move Y1 Robin Icalvinist\n\n81) icalvinist: Sacrifice Y3 Kermit\nMove B2 Kermit Ts52\nMove B1 Kermit Ts52\nMove B1 Kermit Ts52\nCatastrophe Ts52 B\n\n\tts52: I look forward to a rematch! \n\nHomeworlds Online (SDG# 32381)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.14, Ended: 2017.6.18\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tdlwillson: Yay! Another game with Felix!\r\nI think I&#39;m going to go blue/red in serious games, from now on. It just seems slightly more useful under various conditions.\n\tFelix: Hooray! I always enjoy our games, and this one is high stakes, so even better! I&#39;m honestly still torn over whether I prefer red/blue or yellow/blue.... I flip back and forth a lot on which is better.  Red/blue is probably better for defensive play and slowly amassing a powerful fleet, while yellow/blue may be a bit better at quickly expanding and diversifying and even attacking with some little jabs early on. Hmm... now I must decide.\n\n3) dlwillson: Build G1 Dlwillson\n\tFelix: And there you have it. I think blue/red might be a bit stronger as a fortress, while yellow/blue is stronger as a banker.\n\tdlwillson: Hm... That might be a good summary. But, I think of banker as a defensive position. I think goldilocks is the most aggressive.\n\n4) Felix: Build G1 Felix\n\tFelix: Interesting! I was under the impression that the fortress was a bit stronger in defensive play, since it generally requires you to go through small stars to get to my system, and small stars tend to run out in the endgame, whereas larges are typically available in the endgame, so there are more options for attacking a banker. I agree with you that Goldy might be the most aggressive though\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tFelix: I thought about attempting a 2-2 homeworld to make this a very tight and interesting game, but I&#39;m not sure I&#39;m brave enough to attempt that in a ladder game.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: Build G1 Felix\n\n9) dlwillson: D G1 Dlwillson B2 Sea\n\n10) Felix: T G1 R1 Felix\n\n11) dlwillson: T G1 R1 Sea\n\n12) Felix: Build R2 Felix\n\n13) dlwillson: Build G1 Dlwillson\n\n14) Felix: Discover R2 Felix Y1 Rhombus\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) Felix: Build Y2 Felix\n\n17) dlwillson: Discover Y1 Dlwillson Y2 Golden\n\n18) Felix: Move R2 Rhombus Sea\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Golden\nBuild Y3 Dlwillson\nBuild R2 Sea\n\tFelix: Great move. You&#39;ve given me a thinker early on in this game.\n\n20) Felix: S G3 Felix\nB R3 Felix\nB R3 Sea\nPass\n\tFelix: There, that makes a bit more sense\n\n21) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R1 Sea G1 Forest\nMove R1 Forest Felix\nCatastrophe Felix R\n\tdlwillson: I don&#39;t know if that&#39;s the *best* move I could have made, but I&#39;m pretty sure it&#39;s the most irritating move I can make. :-)\n\n22) Felix: Sacrifice Y1 Felix\nMove R2 Sea Felix\n\tFelix: And at the end of the day, isnt that what matters?:p\n\tdlwillson: I see you&#39;re irritating me back... :-)\r\n\r\nDecisions, decisions...\n\tdlwillson: I see you&#39;re irritating me back... :-)\r\n\r\nDecisions, decisions...\n\n23) dlwillson: Sacrifice Y1 Golden\nMove R2 Sea Dlwillson\n\tdlwillson: I could not resist; it was too tempting. Spring your evil trap...\n\n24) Felix: T R3 Y3 Sea\n\tFelix: Hmm, I&#39;m not so sure my evil trap is so evil after all. This isn&#39;t going at all how I hoped!\n\n25) dlwillson: Build R1 Dlwillson\n\n26) Felix: M Y3 Sea Felix\n\n27) dlwillson: Build Y1 Dlwillson\n\n28) Felix: T Y2 G2 Felix\n\tFelix: How did this all go so horribly wrong?\n\n29) dlwillson: Move R1 Dlwillson Golden\n\n30) Felix: B G1 Felix\n\n31) dlwillson: Discover Y1 Golden B1 Sea\n\n32) Felix: T G1 B1 Felix\n\tFelix: I think my biggest mistake was not playing the catastrophe in red a few turns back.\n\n33) dlwillson: Build G1 Dlwillson\n\n34) Felix: B B1 Felix\n\n35) dlwillson: T R2 B2 Dlwillson\n\n36) Felix: Discover B1 Felix B2 Trapezoid\n\n37) dlwillson: Move B2 Dlwillson Trapezoid\n\n38) Felix: Sacrifice G2 Felix\nBuild B2 Trapezoid\nBuild B3 Felix\nCatastrophe Trapezoid Blue\n\n39) dlwillson: Trade G1 B1 Dlwillson\n\n40) Felix: Discover B1 Felix G2 Quadrilat\n\tFelix: Fool me once...\n\n41) dlwillson: Discover B1 Dlwillson G2 Field\n\tdlwillson: I was expecting you to attack my system, but I suppose keeping a big blue is a better move. You&#39;re very hard to finish off.\n\n42) Felix: Build B2 Quadrilat\n\tFelix: I do try to be a thorn in one&#39;s side :) Can&#39;t make it too easy now. This is the ladder!\n\n43) dlwillson: B B2 Field\n\n44) Felix: Move B3 Felix Field\n\n45) dlwillson: Build B2 Field\nCatastrophe Field B\n\n46) Felix: Build B1 Quadrilat\n\n47) dlwillson: Discover Y1 Dlwillson G2 Field\n\n48) Felix: Trade B2 Y2 Quadrilat\n\n49) dlwillson: Build Y1 Field\n\n50) Felix: Build B2 Quadrilat\n\n51) dlwillson: Build Y2 Dlwillson\n\n52) Felix: Build Y3 Quadrilat\n\n53) dlwillson: D Y2 Dlwillson B2 Sky\n\n54) Felix: Discover B2 Quadrilat G1 Square\n\tFelix: Am I being annoying yet? :P I&#39;m flirting with death on all sides here!\n\tdlwillson: Yes, very... Still thinking...\n\n55) dlwillson: D R1 Golden G1 Forest\n\n56) Felix: B B2 Quadrilat\n\n57) dlwillson: M Y2 Sky Sea\n\n58) Felix: Trade B2 R2 Quadrilat\n\n59) dlwillson: T Y2 G2 Sea\n\n60) Felix: B B2 Quadrilat\n\n61) dlwillson: B G3 Sea\n\n62) Felix: B R1 Quadrilat\n\n63) dlwillson: S Y3 Dlwillson\nM Y1 Sea Quadrilat\nM Y1 Field Sea\nM Y1 Sea Quadrilat\nC Quadrilat Y\n\n64) Felix: B B2 Square\n\tFelix: Phew, had to bust out the physical pyramids for that move. My brain is breaking.\n\n65) dlwillson: Sacrifice G3 Sea\nBuild G3 Dlwillson\nBuild G3 Sea\nBuild G3 Sea\n\tdlwillson: Doomsday machines on the horizon... Desperate times. Desperate measures.\n\n66) Felix: B B3 Square\n\n67) dlwillson: Sacrifice G3 Sea\nBuild R2 Forest\nBuild R3 Forest\nBuild G3 Dlwillson\n\n68) Felix: S B2 Square\nT B3 Y3 Square\nT B2 Y2 Quadrilat\n\tFelix: You didn&#39;t at all do what I expected and hoped when you catastrophed yellow. Great move.\n\n69) dlwillson: Sacrifice Y1 Field\nMove R3 Forest Quadrilat\n\tdlwillson: I didn&#39;t set up the plastic, but by my guess, if I hadn&#39;t done that, the game would have been over in two or three turns. Hopefully, it will take longer now.\n\n70) Felix: S Y2 Quadrilat\nM R2 Quadrilat Dlwillson\nM Y3 Square Quadrilat\n\n71) dlwillson: S R2 Forest\nA Y3 Quadrilat\nA R2 Dlwillson\n\n72) Felix: S B1 Quadrilat\nT B1 Y1 Quadrilat\n\tFelix: It will indeed. But I really can&#39;t tell if it will go your way or my way at this point! I am managing to hold on... and I hope that last moves puts you in a bit of a fix!\n\tDraw5PlayAll: I still have not been defeated legitimately in OTB Homeworlds. I think that says more about the nature of this game and its very low acknowledgement, even among gamers.\n\n73) dlwillson: T G3 B3 Sea\n\tdlwillson: What is OTB Homeworlds?\n\tFelix: Wait, wait... I wanna take that back! Haha, ugh. I can&#39;t believe I  made such a rookie blunder at this crucial point. I totally overlooked that you could attack in two places, thinking you&quot;d have to give up the r3 to dodge the green catastrophe at home.\n\n\tdlwillson: Yeah, I figured something like that, so I waited an hour for you to realize and take it back. 2 or 3 more turns.\n\tdlwillson: 6 more turns. 3 each.\n\tFelix: We could play it out, but I&#39;ll just save you the time and trouble. Good game! And no need to wait for me to realize mistakes. Just take advantage of them! And.... &quot;I&#39;ll be baaaaaaaaaack!&quot;\n\tdlwillson: Great! I look forward to it!\r\n\r\nDraw5: What is OTB Homeworlds?\n\tDraw5PlayAll: Over the board, I.e. face to face\n\tFelix: Same here! Our games are always a blast, even if I&#39;m really kicking myself for how I played in this one.\r\n\r\nDraw5: it might also speak to how experience your Face-to-face opponents are :p\n\tDraw5PlayAll: \n\tDraw5PlayAll:  \n\tDraw5PlayAll:     \r\n\r\n  \n\nHomeworlds Online (SDG# 32307)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.6.15, Ended: 2017.6.20\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) wil: Build G1 Wil\n\tFelix: Oh, why not?\n\twil: lol, goin for the instafreeze\n\n4) Felix: Build B1 Felix\n\n5) wil: Build G1 Wil\n\tFelix: Perhaps. Though I&#39;m not sure if I want to go that route or just get an early medium and diversify.\n\n6) Felix: T B3 Y3 Felix\n\n7) wil: Discover G1 Wil Y3 Y3\n\n8) Felix: B B2 Felix\n\n9) wil: Build G1 Y3\n\n10) Felix: T B2 G2 Felix\n\n11) wil: Discover G1 Y3 Y2 Y2\n\n12) Felix: B B2 Felix\n\n13) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 Y3\nBuild G3 Y2\n\n14) Felix: T B2 R2 Felix\n\twil: experimentation\n\n15) wil: Trade G2 R2 Wil\n\tFelix:  Interesting experiment! I like it. \n\n16) Felix: D G2 Felix B2 Rim\n\n17) wil: Sacrifice G3 Y2\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Y2\n\n18) Felix: B B2 Felix\n\n19) wil: Sacrifice G3 Y2\nBuild G3 Y2\nBuild R1 Wil\nBuild R1 Wil\n\n20) Felix: M R2 Felix Rim\n\n21) wil: T R2 B2 Wil\n\n22) Felix: T B2 Y2 Felix\n\n23) wil: M R1 Wil Y3\n\n24) Felix: S Y2 Felix\nM G2 Rim Y3\nM G2 Y3 Wil\nC Wil Green\n\n25) wil: B G1 Y2\n\n26) Felix: B Y1 Felix\n\n27) wil: D G1 Y2 Y3 Why3\n\n28) Felix: B B2 Felix\n\n29) wil: S G3 Y2\nB G2 Y2\nB G2 Y3\nB G3 Why3\n\n30) Felix: Move B1 Felix Rim\n\n31) wil: M B2 Wil Y3\n\n32) Felix: B B3 Felix\n\n33) wil: Move G3 Why3 Wil\n\n34) Felix: S B1 Rim\nT B3 G3 Felix\n\n35) wil: Trade G2 Y2 Y3\n\n36) Felix: M G3 Felix Rim\n\n37) wil: B G2 Wil\n\n38) Felix: M Y1 Felix Rim\n\n39) wil: S G3 Wil\nBuild G3 Wil\nBuild B1 Y3\nBuild B3 Y3\n\n40) Felix: B Y1 Rim\n\n41) wil: Move B2 Y3 Y2\n\n42) Felix: M Y1 Rim Y3\n\n43) wil: S Y2 Y3\nD B3 Y3 R2 R2\nM G1 Y3 R2\n\n44) Felix: M G3 Rim Y3\n\n45) wil: S G3 Wil\nB G3 Wil\nB B3 R2\nB B3 Y2\n\n46) Felix: Sacrifice R2 Rim\nAttack R1 Y3\nAttack G2 Y3\n\n47) wil: T G1 Y1 R2\n\n48) Felix: Move G3 Y3 Wil\n\twil: Lol, I got greedy.... I should have sacked the g2 and played your plan and grew 2 yellows\n\n49) wil: S G2 Y2\nB G1 Wil\nB Y2 R2\nC Wil G\n\n50) Felix: A B1 Y3\n\n51) wil: Move B3 R2 Y3\n\tFelix: Except perhaps that wasn&#39;t my plan... :P\n\twil: It wasn&#39;t your plan to blow up my y3?  And if I blew up my y3 after your g3 was in there would that not have affected you negatively??\n\n52) Felix: Discover B2 Felix G2 Reggio\n\n53) wil: Sacrifice B2 Y2\nTrade B3 G3 R2\nTrade B3 R3 Y3\n\twil: I forgot to catastrophe\n\n54) Felix: Sacrifice G2 Y3\nBuild B2 Y3\nBuild B3 Reggio\n\tFelix: You know, they say hindsight is 20/20...\r\n\r\nI didn&#39;t reckon on you getting that y2 for some reason...\n\n55) wil: Sacrifice Y2 R2\nMove G3 R2 Felix\nMove B3 Y2 Felix\n\twil: it took me a while to figure out how to get it after plan A was foiled.\n\n56) Felix: Sacrifice B3 Reggio\nTrade Y1 R1 Y3\nTrade B2 R2 Y3\nTrade B2 R2 Reggio\nCatastrophe Y3 Red\n\n57) wil: Sacrifice G3 Felix\nBuild B2 Felix\nBuild B2 Felix\nBuild R1 Wil\n\twil: a little squanking was in order\n\n58) Felix: Sacrifice Y3 Felix\nMove R2 Reggio Y3\nMove R2 Y3 Wil\nMove Y1 Rim Felix\nCatastrophe Felix Blue\n\tFelix: These desperate times though.\n\n59) wil: Sacrifice G1 Y2\nBuild R1 Wil\nCatastrophe Wil R\n\twil: My lowly little defense team has been highly concerned for a long time about being left behind with such responsiblity post that last big invasion and catastrophe...  he is pleased that the ole, you take one I&#39;ll take two has been initiated and prays dearly for its success.\r\n\n\n\tFelix: I guess it actually doesn&#39;t matter to much if you did or if I do it. Wow, this has been a fascinating game!\n\twil: no kidding fun stuff and lol...I didn&#39;t want to catastrophe...i had some kind of plan for if you didn&#39;t do it to me...\r\n\n\twil: and yeah...i love experimenting...every game is different but some can turn bizarre\n\twil: That is an awesome end board...all pawns!!\n\tFelix: Awesome indeed! How did you manage to end yourself? The system usually won&#39;t let me do that.\n\twil: I been buckin the system my whole life.\n\tFelix: This could be an interesting game for homeworlds theater...\n\tDraw5PlayAll: I think you guys should start using Altair, Betelgeuse, Caster (?), etc as your star names if you are considering trying to get your games on that show. I am not trying for that so I use my own name convention.\n\twil: The names are changed for the show... Converted from whatever is used.\r\n.there are two in editing and six chosen and in the pipeline now... \n\twil: And I appreciate you using my convention.. Are you also using why3, rtoo, gee1, bwon etc when stars duplicate?\n\tDraw5PlayAll: I used to use e.g. B3&#39; and G2&#39;&#39; (that is two &#39; characters) but I switched to B3b and G2c.\n\tFelix: I&#39;m glad there are so many shows in production! I&#39;d also like to submit this recent game I played against ts52 (#32480). It&#39;s relatively short, but one of the most fascinating games I&#39;ve played in a while. It ended with me only have a small red in my possession!\r\n\r\nhttp://superdupergames.org/?page=archive_play&amp;gid=32480\n\tDraw5PlayAll: &quot;Two in editing and six chosen and in the pipeline&quot; huh? What does this mean and where are you getting it from?\n\nHomeworlds Online (SDG# 32398)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.6.15, Ended: 2017.6.16\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: H Y1 B3 G3\n\n2) Draw5PlayAll: Homeworld G3 Y1 Y3 *\n\tFelix: Hello again. Have fun!\n\tDraw5PlayAll: Are we playing 2 games at once or am I remembering things wrong?\n\n3) Felix: B G1 Felix\n\tDraw5PlayAll: If I do not then I have to play an unfamiliar setup against a stronger player with a tempo less. I think we should make this interesting.\n\tFelix: I&#39;m up for interesting and fun, and casual. I think you&#39;re quickly getting very skilled at this though and wouldn&#39;t necessarily consider myself a stronger player. As far as I know we just have this one game going right now\n\n4) Draw5PlayAll: Build Y1 Draw5playall\n\n5) Felix: T G3 Y3 Felix\n\n6) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\n7) Felix: Build G1 Felix\n\tDraw5PlayAll: *access denied*\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) Felix: Build G1 Felix\n\tDraw5PlayAll: The annoying thing is that I have to get blue quickly.\n\n10) Draw5PlayAll: Move Y2 Draw5playall B2\n\n11) Felix: Trade G1 B1 Felix\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: Yeah.... starting without blue is a really stiff handicap. That&#39;s why trying to do the insta-freeze start like you did is really only effective when done with blue.\n\n13) Felix: Discover Y3 Felix G2 Roam\n\tDraw5PlayAll: Or green... if someone picks a G1 star you can do G1 B2 G3 and be in the blue economy via your star.\n\tFelix: That&#39;s true, but most people start with a large green ship, so there&#39;s not really any point in trying to freeze out green\n\n14) Draw5PlayAll: Move Y2 Draw5playall Roam\n\tFelix: Wait... that&#39;s a bad idea.\n\n15) Felix: Move Y3 Roam Draw5playall\n\n\tFelix: It was an interesting experiment though. And hey, now we know!\n\tDraw5PlayAll: Aww, it did not let me blow up your yellow star. Rematch?\n\tFelix: Sure! I&#39;m always up for a rematch. Interesting game!\n\nHomeworlds Online (SDG# 32399)\nStarted: 2017.6.16, Ended: 2017.7.12\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\n3) Felix: B G1 Felix\n\n4) SilentTitan: Build G1 Silenttitan\n\tFelix: Hello again. Hope you have fun!\n\tSilentTitan: Hello same back at ya\n\n5) Felix: T G1 R1 Felix\n\n6) SilentTitan: Trade G3 R3 Silenttitan\n\n7) Felix: B G1 Felix\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Felix: Discover G1 Felix B1 Ender\n\n10) SilentTitan: Trade G1 Y1 Silenttitan\n\n11) Felix: Build G1 Ender\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) Felix: Build G2 Felix\n\n14) SilentTitan: Discover G2 Silenttitan Y2 Sol\n\tFelix: I&#39;ll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\n15) Felix: T G1 Y1 Ender\n\n16) SilentTitan: Build Y1 Silenttitan\n\n17) Felix: Build Y2 Ender\n\n18) SilentTitan: Discover Y1 Silenttitan B2 Soul\n\n19) Felix: M Y1 Ender Soul\n\n20) SilentTitan: Sacrifice G2 Sol\nBuild Y2 Soul\nBuild Y3 Silenttitan\n\n21) Felix: S G2 Felix\nB Y3 Ender\nB Y3 Soul\n\n22) SilentTitan: Discover Y3 Silenttitan G2 Sole\nCatastrophe Soul Yellow\n\n23) Felix: Discover Y2 Ender G2 Game\n\n24) SilentTitan: Discover Y3 Sole G1 Soul\n\n25) Felix: B Y1 Game\n\n26) SilentTitan: Build G2 Silenttitan\n\n27) Felix: B G2 Ender\n\n28) SilentTitan: Discover G1 Silenttitan B2 Solaris\n\n29) Felix: T G1 B1 Ender\n\n30) SilentTitan: Build G1 Silenttitan\n\n31) Felix: Build G3 Ender\n\n32) SilentTitan: Build G3 Solaris\n\n33) Felix: Trade G3 Y3 Ender\n\n34) SilentTitan: Trade G1 B1 Silenttitan\n\n35) Felix: Move B1 Ender Game\n\n36) SilentTitan: Build Y1 Silenttitan\n\n37) Felix: Build B2 Game\n\n38) SilentTitan: Move Y3 Soul Game\n\n39) Felix: Sacrifice Y2 Game\nMove B1 Game Silenttitan\nMove B2 Game Silenttitan\nCatastrophe Silenttitan Blue\n\n40) SilentTitan: Discover Y3 Game G1 Sol\n\n41) Felix: Build R1 Felix\n\n\tSilentTitan: Good game thaks\n\tFelix: Likewise! I enjoyed it. Thanks for playing!\n\nHomeworlds Online (SDG# 32413)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.6.17, Ended: 2017.7.10\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B2 Y3 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) Felix: B G1 Felix\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Felix: T G1 R1 Felix\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Felix: B R2 Felix\n\tDraw5PlayAll: Sometimes I have thought about a blue-less variant where you start with 3 ships, one of each size. It certainly eases the opening.\n\tFelix: That would be interesting, but would also probably increase the first player advantage rather greatly. I suppose you could alternate choices, but that&#39;s essentially what you do in the first few rounds, anyway. It may unnecessarily complicate the initial setup rather than lettting it happen organically  through play, even if the first few moves are usually a bit dru\n\tFelix: Dry, that is.\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) Felix: B R2 Felix\n\tDraw5PlayAll: I sometimes wonder if I would be better off taking (say) the yellow economy while you grab red, and then trading into red once I break the medium barrier.\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\tFelix: That&#39;s often the question! Which path is better? I&#39;m still figuring it out myself...\n\n11) Felix: D R2 Felix G1 Gingham\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\n13) Felix: T R2 Y2 Felix\n\n14) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n15) Felix: M Y2 Felix Gingham\n\n16) Draw5PlayAll: Move R1 Draw5playall G2\n\n17) Felix: B R2 Gingham\n\n18) Draw5PlayAll: Build Y1 G2\n\n19) Felix: S Y2 Gingham\nM R2 Gingham G2\nM R2 Gingham G2\n\n20) Draw5PlayAll: Build R2 G2\nCatastrophe G2 Red\n\n21) Felix: B R1 Felix\n\tDraw5PlayAll: [Begin Narration]\r\n\r\nWe were shocked to find that once again the aliens from the planet Felix have pursued hostile action. Noticing dangerous radiation buildup from the presence of three red ships in the same star system, we decided on a bold plan: build a fourth red ship and trigger a radiation catastrophe. It appears the plan has worked, as all enemy ships are destroyed and we now control our colony system again.\n\n22) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Plan thwarted. Begin rebuilding of primary weapon systems.\n\n23) Felix: B R2 Felix\n\tDraw5PlayAll: We are attempting to regroup as the attack left us with zero weaponry other than our red star.\n\n24) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n25) Felix: D R2 Felix Y1 Aegis\n\n26) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade Y2 R2 G2\n\n27) Felix: Discover R1 Felix B1 Stash\n\tDraw5PlayAll: Sensing the possibility of a hostile &quot;visitor&quot; we have dropped our plans with the blue economy and instead we have gained a weapon.\n\n28) Draw5PlayAll: Build Y2 G2\n\tFelix: There&#39;s only one solution to the opponent having weapons.... MORE WEAPONS!\n\tDraw5PlayAll: I see in your log that you captured the Klingons long ago. We are more interested in wormhole technology.\n\n29) Felix: Sacrifice G3 Felix\nBuild R2 Aegis\nBuild R3 Stash\nBuild R3 Felix\n\n30) Draw5PlayAll: Build R3 G2\n\tFelix: Ah, but our newly acquired Klingon warships have just returned from hyperspace...\n\tDraw5PlayAll: Red alert!\n\n31) Felix: T R3 G3 Felix\n\n32) Draw5PlayAll: Build Y2 Draw5playall\n\n33) Felix: Trade R3 Y3 Stash\n\n34) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n35) Felix: Sacrifice G3 Felix\nBuild R3 Stash\nBuild R3 Felix\nBuild Y2 Stash\n\tDraw5PlayAll: I am a little bit concerned about your empire&#39;s rapid growth and colonization.\n\n36) Draw5PlayAll: Move B2 Draw5playall G2\n\tFelix: Conquest is our prime directive. Your concerns do not concern us.\n\tFelix: I&#39;ll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\n37) Felix: S Y3 Stash\nM R1 Stash G2\nM R2 Aegis G2\nC G2 Red\nM R3 Stash G2\n\n38) Draw5PlayAll: Sacrifice Y2 G2\nDiscover Y1 G2 G1 G1\nMove B2 G2 G1\n\tDraw5PlayAll: Grrrr\n\n39) Felix: M R3 Felix G1\n\n40) Draw5PlayAll: Sacrifice Y1 G1\nMove B2 G1 Felix\n\tFelix: Just for fun :)\n\n41) Felix: M R2 Aegis Felix\n\n42) Draw5PlayAll: Discover B2 Felix G1 G1b\n\n43) Felix: M Y2 Stash G2\n\n44) Draw5PlayAll: Build Y1 Draw5playall\n\tFelix: The system says you are away. Yet you are here.\n\n45) Felix: Move R3 G2 G1b\n\n46) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover B2 G1b G3 G3\n\n47) Felix: Move Y2 G2 G3\n\tDraw5PlayAll: You are unable to catch me as I have a wormhole factory that can dodge any intruders.\n\n48) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover B2 G3 Y2 Y2\n\tFelix: But you will run out of wormholes eventually... and then my warships will feed on your cold blue corpse. :)\n\n49) Felix: M Y2 G3 Y2\n\n50) Draw5PlayAll: Discover B2 Y2 Y3 Y3\n\tFelix: Round and round the mulberry bush... interesting that all the stars in the game are ones you created.\n\n51) Felix: Move Y2 Y2 G1b\n\tDraw5PlayAll: You are unable to keep this up forever, or else we get a dr... wait, SDG does not allow draws of any form. I wonder if I can hijack the POST request for a Martian Chess draw offer.\n\tDraw5PlayAll: Okay, so I tried just now to copy the form element from a Martian Chess game and then change what was required... and nothing happened.\n\n52) Draw5PlayAll: Build G1 Draw5playall\n\n53) Felix: Trade R2 G2 Felix\n\n54) Draw5PlayAll: Build G2 Draw5playall\n\n55) Felix: B G2 Felix\n\n56) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n57) Felix: D G2 Felix B1 Bazoik\n\n58) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n59) Felix: B R2 G1b\n\n60) Draw5PlayAll: Build G1 Draw5playall\n\n61) Felix: B G2 Bazoik\n\n62) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2\n\n63) Felix: B G3 Felix\n\n64) Draw5PlayAll: Build G3 Draw5playall\n\n65) Felix: T G3 Y3 Felix\n\n66) Draw5PlayAll: Build G3 Y2\n\n67) Felix: D R2 G1b B2 Calypso\n\n68) Draw5PlayAll: Move R1 Draw5playall Y2\n\n69) Felix: S Y2 G1b\nM G2 Bazoik Calypso\nM G2 Calypso Draw5playall\n\n70) Draw5PlayAll: Trade G3 B3 Draw5playall\n\n71) Felix: B G3 Bazoik\n\n72) Draw5PlayAll: Attack G2 Draw5playall\n\n73) Felix: S G3 Bazoik\nB G3 Bazoik\nB Y1 Felix\nB R2 Calypso\n\tDraw5PlayAll: Wow. I actually have a fighting chance now!\n\n74) Draw5PlayAll: Sacrifice B2 Y3\nTrade G3 R3 Y2\nTrade R1 Y1 Y2\n\tDraw5PlayAll: Homeworld One may have to capitulate. The moment you have to sac a B2, something is wrong.\n\n75) Felix: Move Y1 Felix G1\n\n76) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Y2\nBuild R1 Y2\n\tFelix: Usually, yeah :P\n\tDraw5PlayAll: That changed a lot!\n\n77) Felix: Trade G3 Y3 Bazoik\n\n78) Draw5PlayAll: Discover Y1 Y2 B1 B1\n\tFelix: Now it gets interesting!\n\n79) Felix: Build G3 Bazoik\n\n80) Draw5PlayAll: Sacrifice G3 Y2\nBuild G3 Y2\nBuild Y1 Draw5playall\nBuild Y2 B1\n\n81) Felix: Sacrifice Y3 Felix\nMove R3 G1b Y2\nMove R3 G1 Y2\nCatastrophe Y2 Red\nMove R2 Calypso B1\n\n82) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n83) Felix: Sacrifice G3 Bazoik\nBuild R1 Calypso\nBuild R3 B1\nBuild R3 Felix\n\n84) Draw5PlayAll: Sacrifice Y2 B1\nDiscover Y1 B1 G2 G2\nMove R2 Draw5playall G2\n\n85) Felix: Sacrifice G2 Bazoik\nBuild Y2 G1\nBuild Y3 Bazoik\n\n86) Draw5PlayAll: Build R3 G2\n\n87) Felix: Sacrifice Y2 G1\nMove R2 Calypso Draw5playall\nMove R1 Calypso Draw5playall\n\n88) Draw5PlayAll: Move R2 G2 G1\n\n89) Felix: Sacrifice Y1 G1\nDiscover R2 B1 Y2 Insert_coin\n\n90) Draw5PlayAll: Discover G3 Y2 Y1 Y1\n\n91) Felix: Trade R3 B3 B1\n\n92) Draw5PlayAll: Sacrifice G1 Y2\nBuild Y2 G2\n\n93) Felix: Sacrifice B3 B1\nTrade R1 B1 Draw5playall\nTrade R2 B2 Draw5playall\nPass\nCatastrophe Draw5playall Blue\n\n94) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G2 Bazoik\nMove Y2 G2 Bazoik\nCatastrophe Bazoik Yellow\n\tDraw5PlayAll: Nice move! You got me, I think.\n\n95) Felix: T R3 Y3 Felix\n\tDraw5PlayAll: Well, I can fight on I guess...\n\n96) Draw5PlayAll: Build Y1 Draw5playall\n\n97) Felix: B R1 Felix\n\n98) Draw5PlayAll: Move Y1 Draw5playall Felix\n\n99) Felix: S Y3 Felix\nM R2 Insert_coin Draw5playall\nM R1 Felix Draw5playall\nM R1 Felix Draw5playall\nC Draw5playall Red\n\tFelix: Thank you! It was a good game. I didn&#39;t expect you to draw it out longer by catastropheing my two large yellows, so that was a good move. Well played! I&#39;ve enjoyed seeing you get better. Maybe I&#39;ll face you in the ladder soon!\n\tDraw5PlayAll: My plan is to get to #1 by waiting until you are off of there. But you will very likely kick me off.\n\tFelix: Currently wil is number one. There are plenty of other strong players you need to worry about more than me!\n\tDraw5PlayAll: Yeah, I think I have a good shot at beating wil, but sadly I am challenging dlwillson and he will likely kill me with the red economy.\n\n\nHomeworlds Online (SDG# 32301)\nVariants: &quot;Unrated&quot;\nStarted: 2017.6.18, Ended: 2017.7.17\nParticipants: wil (S), PBCrunch (N)\nWinner: wil\n\n1) PBCrunch: Homeworld Y3 B2 G3\n\n2) wil: H Y2 B1 G3\n\n3) PBCrunch: Build G1 Pbcrunch\n\n4) wil: B G1 Wil\n\n\nHomeworlds Online (SDG# 32428)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.18, Ended: 2017.6.21\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: Homeworld G2 Y1 Y3 *\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B Y1 Wil\n\n5) dlwillson: T G3 Y3 Dlwillson\n\n6) wil: Discover Y1 Wil B3 B3\n\n7) dlwillson: B Y2 Dlwillson\n\twil: this experiment is not going to end well\n\n8) wil: Trade Y1 B1 B3\n\tdlwillson: If I were doing the experiment, I&#39;d have built a y2. As it is, you can&#39;t shoot me now.\n\twil: I could not...catastrophe\n\n9) dlwillson: T Y3 G3 Dlwillson\n\twil: It was a bad plan, poorly executed\n\tdlwillson: Huh. You&#39;re right. Good point.\n\n10) wil: B Y1 Wil\n\twil: Wow, I expected you to come right in and end the game!\n\n11) dlwillson: B Y2 Dlwillson\n\n12) wil: Discover Y1 Wil G3 G3\n\tdlwillson: Huh. I guess I could&#39;ve. You have no red or blue.\n\n13) dlwillson: S Y2 Dlwillson\nD Y2 Dlwillson B2 Sea\nM G1 Dlwillson Sea\n\n14) wil: B Y2 G3\n\n15) dlwillson: B Y2 Sea\n\n16) wil: D Y1 G3 G2 G2\n\n17) dlwillson: M Y2 Sea B3\n\n18) wil: Build Y3 G2\n\n19) dlwillson: Build Y3 Sea\n\n20) wil: Sacrifice B1 B3\nTrade Y3 R3 G2\n\n21) dlwillson: Sacrifice Y3 Sea\nMove Y2 Sea B3\nMove Y2 B3 Wil\nMove Y2 B3 Wil\nCatastrophe Wil Y\n\tdlwillson: Good game! Thank you! Weird, though, with all the yellow and green. I could not take proper advantage of all the things you couldn&#39;t do until several turns in.\n\n\nHomeworlds Online (SDG# 32315)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.6.18, Ended: 2017.6.20\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) Felix: H B2 R3 G3\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Have fun again! \n\n4) Felix: B G1 Felix\n\tdlwillson: You too!\n\n5) dlwillson: T G1 R1 Dlwillson\n\tFelix: I&#39;m out to prove that I can only win in games that don&#39;t really matter ;)\n\tdlwillson: You very nearly beat me in that game!\n\n6) Felix: T G1 Y1 Felix\n\tFelix: It was definitely closer than I expected! I thought I was an instant goner after losing the first half of my system. Every game with you has been a nail biter lately :)\n\n7) dlwillson: B G1 Dlwillson\n\tdlwillson: If I hadn&#39;t had the cat y *and* been popping green  battleships at a critical moment, you&#39;d have win. If you hadn&#39;t botched the response to my attack, we&#39;d still be in that game.\n\n8) Felix: B Y1 Felix\n\tFelix: It&#39;s true, but you live and you learn! You played extremely well and fended off my attack perfectly. I kept thinking I had all your possible responses covered and you kept surprising me\n\n9) dlwillson: T G3 Y3 Dlwillson\n\n10) Felix: B Y2 Felix\n\n11) dlwillson: B Y2 Dlwillson\n\n12) Felix: D Y1 Felix G1 Borgus\n\n13) dlwillson: D Y2 Dlwillson B2 Sea\n\n14) Felix: Discover Y1 Felix B1 Ender\n\n15) dlwillson: T Y3 B3 Dlwillson\n\n16) Felix: S G3 Felix\nB Y2 Borgus\nB Y3 Ender\nB Y3 Felix\n\n17) dlwillson: S G1 Dlwillson\nB Y3 Sea\n\n18) Felix: Sacrifice Y2 Borgus\nMove Y1 Borgus Sea\nMove Y1 Ender Sea\nCatastrophe Sea Yellow\n\n19) dlwillson: Trade B3 G3 Dlwillson\n\n20) Felix: Trade Y3 G3 Felix\n\tdlwillson: Hm. I don&#39;t think I&#39;ll be recovering from that, but I suppose we&#39;ll see. Nice sequence.\n\n21) dlwillson: B R1 Dlwillson\n\tFelix: Thanks! I&#39;ve been making a lot of silly mistakes in my games lately though, so you never know.\n\n22) Felix: Build Y1 Felix\n\n23) dlwillson: T R1 Y1 Dlwillson\n\n24) Felix: Sacrifice G3 Felix\nBuild Y2 Ender\nBuild Y2 Ender\nBuild Y3 Felix\n\tFelix: But as Gollum would say, &quot;We&#39;ve a ways to go yet, precious.&quot;\n\n25) dlwillson: D Y1 Dlwillson G2 Field\n\tdlwillson: Here we go again! :-)\n\n26) Felix: Move Y2 Ender Field\n\n27) dlwillson: Discover Y1 Field G1 Forest\n\tFelix: I&#39;ll try not to repeat myself :P\n\n28) Felix: Move Y1 Felix Forest\n\n29) dlwillson: Build R1 Dlwillson\n\n30) Felix: Build Y3 Field\n\n31) dlwillson: Sacrifice R1 Dlwillson\nAttack Y1 Forest\n\n32) Felix: Trade Y2 R2 Felix\n\n33) dlwillson: Move Y1 Forest Field\n\n34) Felix: Move Y2 Field Forest\n\tdlwillson: s r; a y1\r\nb y2\r\ns y2; c y # three yellow battleships, very neat\n\n35) dlwillson: Discover Y1 Forest Y2 Solar\n\tFelix: The dance of the yellows...\n\tdlwillson: I guess I could drive the y1 in, rather than build the y2... No, that&#39;s not any better. Hmm...\n\tdlwillson: Or you could do that, and change the choices... Hm... I think I&#39;m going to have to setup some plastic and have a think. I see lots of bad choices and need to figure out which one is least bad.\n\tFelix: No problem. Take your time! I&#39;m glad to have created a conundrum for you :) You consistently surprise me with the clever ways you wriggle out of what I think are foolproof traps though.\n\n36) Felix: T Y3 G3 Ender\n\n37) dlwillson: Discover Y1 Field Y3 Golden\n\n38) Felix: M Y2 Forest Felix\n\n39) dlwillson: B G1 Dlwillson\n\n40) Felix: Sacrifice Y3 Felix\nMove G3 Ender Field\nMove Y3 Field Dlwillson\nMove G3 Field Dlwillson\n\n41) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Dlwillson\nBuild Y3 Golden\nBuild R1 Dlwillson\n\n42) Felix: Sacrifice R2 Felix\nAttack R1 Dlwillson\nAttack R1 Dlwillson\n\tdlwillson: Nice! I&#39;ve been expecting something along that line. Let me see if I can find an escape route.\n\n43) dlwillson: Sacrifice Y3 Golden\nMove Y1 Golden Solar\nMove Y1 Solar Dlwillson\nMove Y1 Solar Dlwillson\nCatastrophe Dlwillson Y\n\tdlwillson: I really can&#39;t, but maybe I can stave off the inevitable for a move or two.\n\n44) Felix: B G1 Dlwillson\nC Dlwillson Green\n\tFelix: Yep, I think I&#39;ve got your number now. This was an interesting game. Quite the yellow struggle!\n\n\tdlwillson: Another excellent game. Well done.\n\tFelix: Good game as always! I&#39;ll see you on the ladder soon probably :)\n\nHomeworlds Online (SDG# 32351)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.19, Ended: 2017.6.20\nParticipants: Ausmuh (S), Felix (N)\nWinner: Felix\n\n1) Felix: Pass\n\n2) Ausmuh: Homeworld G3 R1 B3\n\tFelix: Hello again! I wanted to see if the system would just let me pass my first turn since I actually tend to prefer going second. It does! If you&#39;d also rather go second, though, just pass again and I&#39;ll take my turn first.\n\tAusmuh: Hey, groovy! No worries here, I&#39;ve thought about that myself. It seems Pyramid Arcade has encouraged some interesting thoughts for Homeworlds. I saw the thread at BGG a player exploring same sized homeworlds as an option too.\r\n\r\nThis is the only game I&#39;m starting this time so I shouldn&#39;t overwhelm myself! GL;HF\n\n3) Felix: Homeworld R2 B2 G3 *\n\n4) Ausmuh: Build B1 Ausmuh\n\tFelix: That player on BGG was actually me! Haha, thanks for reminding me that I want to experiment with it more!\n\tAusmuh: That&#39;s awesome! I really think there is something there and it&#39;s just uncharted territory. I look forward to seeing that chapter develop.\n\n5) Felix: Build G1 Felix\n\n6) Ausmuh: Build B1 Ausmuh\n\n7) Felix: Trade G1 B1 Felix\n\n8) Ausmuh: Trade B1 Y1 Ausmuh\n\n9) Felix: Build G1 Felix\n\n10) Ausmuh: Trade B1 G1 Ausmuh\n\n11) Felix: T G1 Y1 Felix\n\n12) Ausmuh: Discover G1 Ausmuh B2 Zog\n\n13) Felix: B G1 Felix\n\n14) Ausmuh: Build B1 Ausmuh\n\n15) Felix: Trade G1 R1 Felix\n\n16) Ausmuh: Build G1 Zog\n\n17) Felix: B R1 Felix\n\n18) Ausmuh: Trade G1 Y1 Zog\n\n19) Felix: Build Y2 Felix\n\n20) Ausmuh: Build Y2 Zog\n\n21) Felix: Sacrifice Y2 Felix\nMove R1 Felix Ausmuh\nMove R1 Felix Ausmuh\n\n22) Ausmuh: Attack R1N Ausmuh\n\tFelix: Not positive if this will work out... but here goes!\n\tAusmuh: I was wishing I could attack both of those when they came. :) Stressful being connected like this. I like it!\n\n23) Felix: Build R2 Ausmuh\nCatastrophe Ausmuh Red\n\n24) Ausmuh: Trade B1 R1 Ausmuh\n\tFelix: It definitely changes the tone of the whole game and makes it much more intense rather than being a slow, more casual build in the beginning like most games!\n\n25) Felix: Build Y2 Felix\n\n26) Ausmuh: Discover Y2 Zog G1 Alt\n\n27) Felix: Build G1 Felix\n\n28) Ausmuh: Build G2 Zog\n\tAusmuh: My green might face the same fate! I could really use a R2 to quell this uprising.\n\n29) Felix: Sacrifice Y2 Felix\nMove G3 Felix Ausmuh\nMove G1 Felix Ausmuh\n\tAusmuh: If I move a y2 in to apply pressure, you simply attack it. It doesn&#39;t seem like I could take your ships faster then you could blow up my green. Hmmm\n\n30) Ausmuh: Attack G3N Ausmuh\n\tFelix: Yeah, I think I&#39;ll be able to blow up your star first!\r\nThis has been a strange game, but pretty fun! If you want to have a rematch, we can play a more normal game that isn&#39;t so tight.\n\tAusmuh: All&#39;s fair in love and war. :) I don&#39;t mind losing to small universes. I dig the unexplored. But I will accept your standing challenge again for sure.\r\n\r\nI liked your clever thinking on passing the first turn and I think small universes have a place in the game. Also curious about identical homeworlds too.\n\n31) Felix: Build G2 Ausmuh\nCatastrophe Ausmuh Green\n\tFelix: Very fun little game! Thanks for playing. I do think there are untapped possibilities when it comes to intentionally creating a tiny universe with same size stars, but I haven&#39;t really figured them out yet. I think the game is balanced enough that it won&#39;t have a HUGE impact on the strategy, but I do love finding those little nuances to this game that make a difference!\r\n\r\nI look forward to our rematch. I just set up an unrated standing challenge if you want to play without putting your rating on the line every time.\n\n\nHomeworlds Online (SDG# 32443)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.20, Ended: 2017.6.26\nParticipants: Felix (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Felix: H G2 R3 B3\n\tAusmuh: Just saw your message after I accepted. I&#39;m not too worried about my rating at the moment but I appreciate the thought. Have fun. Don&#39;t feel obligated to play &#39;standard&#39; if you don&#39;t want to. It&#39;s all good to me. Have fun!\n\n3) Ausmuh: Build B1 Ausmuh\n\tFelix:  Yeah, I&#39;m not too worried about ratings either. If my sense of self worth is determined by an arbitrary number on an online game website, I have bigger problems to worry about :p  and I usually start with a large green shit, so this is fairly non-standard for me. We&#39;ll see how it plays out! Have a good game! \n\n4) Felix: Build B1 Felix\n\tFelix: Oh, I&#39;m so sorry. I just noticed the typo in my last comment, hahaha. I meant SHIP!!!\n\n5) Ausmuh: Discover B1 Ausmuh G2 Zog\n\tAusmuh: Haha no worries! I had a good laugh :D\n\n6) Felix: Trade B1 Y1 Felix\n\n7) Ausmuh: Trade B1 Y1 Zog\n\n8) Felix: Build Y2 Felix\n\n9) Ausmuh: Build Y2 Zog\n\n10) Felix: Trade Y2 R2 Felix\n\n11) Ausmuh: Build B1 Ausmuh\n\n12) Felix: Build Y2 Felix\n\n13) Ausmuh: Sacrifice B1 Ausmuh\nTrade Y1 R1 Zog\n\n14) Felix: Build B1 Felix\n\n15) Ausmuh: Build B1 Ausmuh\n\n16) Felix: Build R1 Felix\n\n17) Ausmuh: Build Y1 Zog\n\n18) Felix: Build R1 Felix\nCatastrophe Felix Red\n\n19) Ausmuh: Trade B3 R3 Ausmuh\n\tFelix: This is a fun (and probably stupid) way to attack :)\n\n20) Felix: Trade B1 R1 Felix\n\tAusmuh: That&#39;s clever, in the right situation it may be quite the problem for me. Hope this isn&#39;t one!\n\n21) Ausmuh: Build B1 Ausmuh\n\tDraw5PlayAll: About Felix&#39;s second comment: that is one of the thing I most hate about curse words: a lot of them are one letter away from perfectly honest and acceptable words.  \n\tFelix: I&#39;ll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\tAusmuh: Enjoy!\n\n22) Felix: D Y1 Felix G1 Brovurst\n\n23) Ausmuh: Move B1 Ausmuh Zog\n\n24) Felix: B Y2 Brovurst\n\n25) Ausmuh: Discover Y1 Zog G1 Bog\n\n26) Felix: Build Y3 Felix\n\tAusmuh: Welcome back! Now... what was my secret plan again??\n\n27) Ausmuh: Build Y3 Bog\n\tFelix: Thank you! And don&#39;t worry... I&#39;ve forgotten my secret plan too!\n\n28) Felix: Sacrifice Y2 Brovurst\nMove Y3 Felix Ausmuh\nMove B3 Felix Ausmuh\n\n29) Ausmuh: Attack Y3S Ausmuh\n\tFelix: Ah, yes, that&#39;s what it was. I hope this works!\n\tAusmuh: Ah! Maybe, I think you might need an r2 here.\r\n\r\nI&#39;ll take a 3pip\r\nYou take my R3\r\nI sac to take R3\r\nYou sac to take R3\r\n\r\nWait a minute...... Here we go!\n\n30) Felix: Move B3 Ausmuh Felix\n\tAusmuh: This is a interesting situation. I will be putting this one down in plastic to stare at some time. :)\n\n31) Ausmuh: Trade B1 G1 Ausmuh\n\tFelix: Wait a second. That didn&#39;t work at all :P Retreat! Retreat!\n\n32) Felix: B Y2 Felix\n\tAusmuh: Ugh. Hindsight is 20/20.\r\n\r\nToo bad for me that I can&#39;t just move in my yellows. Homeworlds can be quite delicate. Hopefully I don&#39;t waste my newly acquired advantage.\n\n33) Ausmuh: Build G2 Ausmuh\n\tFelix:  Indeed.  Looking at a situation before you move and after the move can be totally different  animals. I do have a very steep hill to climb up now&#133; But anything can happen! :-) \n\n34) Felix: D Y2 Felix G3 Florist\n\n35) Ausmuh: Sacrifice Y2 Zog\nMove G1 Ausmuh Felix\nMove G2 Ausmuh Felix\n\n36) Felix: D R1 Felix G3 Hosget\n\n37) Ausmuh: Sacrifice Y3 Bog\nDiscover R1 Zog B3 Log\nMove B1 Zog Ausmuh\nMove Y1 Bog Log\n\tFelix: Walking a knife&#39;s edge!\n\tAusmuh: Haha, so good!\r\nI would have traded for an R2 but this seems to work! How in the hell can I get the 4th green! :)\n\n38) Felix: S B3 Felix\nT Y2 G2 Florist\nT R1 G1 Hosget\nPass\n\tFelix:  If I had traded for an hour or two, you could&#39;ve just built that  last green right away and finished off my star. As it is, I think I only delayed the inevitable a turn. Good play! \n\n39) Ausmuh: Sacrifice R3 Ausmuh\nAttack Y2S Felix\nPass\nPass\n\tFelix:  I&#39;m game! Very well played. \n\tFelix:  Good game* \n\tAusmuh: Thanks, good game! The self destruct didn&#39;t work out this time but still a clever thought! \n\tFelix: I like to try to think outside the box sometimes. Sometimes it pays off.... sometimes it doesn&#39;t!\n\n\nHomeworlds Online (SDG# 32306)\nStarted: 2017.6.20, Ended: 2017.8.26\nParticipants: MobyNostromo (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) MobyNostromo: H G1 B2 Y3\n\n3) Draw5PlayAll: Homeworld G1 B2 G3 *\n\n4) MobyNostromo: Build Y1 Mobynostromo\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) MobyNostromo: D Y1 Mobynostromo Y3 Tweety\n\n7) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n8) MobyNostromo: Build Y1 Mobynostromo\n\n9) Draw5PlayAll: Build G2 Draw5playall\n\n10) MobyNostromo: T Y3 G3 Mobynostromo\n\n11) Draw5PlayAll: Discover G1 Draw5playall Y3 Y3\n\n12) MobyNostromo: T G3 R3 Mobynostromo\n\n13) Draw5PlayAll: Build G2 Draw5playall\n\n14) MobyNostromo: Build Y1 Mobynostromo\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) MobyNostromo: D Y1 Mobynostromo G3 Krypton\n\n17) Draw5PlayAll: Build G2 Y3\n\n18) MobyNostromo: B Y2 Mobynostromo\n\n19) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n20) MobyNostromo: B R1 Mobynostromo\n\n21) Draw5PlayAll: Discover G2 Draw5playall B3 B3\n\n22) MobyNostromo: M R1 Mobynostromo Y3\n\n23) Draw5PlayAll: Build R1 Draw5playall\n\n24) MobyNostromo: A G1 Y3\n\n25) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack G1 Y3\nAttack R1S Y3\n\n26) MobyNostromo: B R1 Mobynostromo\n\n27) Draw5PlayAll: Build G3 B3\n\n28) MobyNostromo: M R1 Mobynostromo Krypton\n\n29) Draw5PlayAll: Sacrifice G3 B3\nBuild G3 B3\nBuild G3 Y3\nBuild R2 Draw5playall\n\n30) MobyNostromo: Build Y2 Krypton\n\n31) Draw5PlayAll: Build R2 Y3\n\n32) MobyNostromo: M Y1 Tweety Mobynostromo\n\n33) Draw5PlayAll: Trade G3 B3 B3\n\n34) MobyNostromo: B R2 Krypton\n\n35) Draw5PlayAll: Sacrifice G3 Y3\nBuild G3 Y3\nBuild G3 B3\nBuild B1 B3\n\n36) MobyNostromo: M Y1 Mobynostromo Y3\n\n37) Draw5PlayAll: Discover G3 Y3 B1 B1\n\n38) MobyNostromo: S Y2 Krypton\nM Y1 Mobynostromo Y3\nM Y2 Mobynostromo Y3\nC Y3 Y\n\n39) Draw5PlayAll: Sac G3 B3\nBuild G1 B1\nBuild G2 B1\nBuild G3 B3\n\n40) MobyNostromo: B Y1 Krypton\n\n41) Draw5PlayAll: Trade R1 B1 Draw5playall\n\tDraw5PlayAll: That hurt you more than it hurt me, and you STILL have no green!\n\tMobyNostromo: Yeah, but it was fun to do. Fun is good - you should try it sometime.\n\n42) MobyNostromo: B R1 Mobynostromo\n\n43) Draw5PlayAll: Discover B1 Draw5playall R3 R3\n\n44) MobyNostromo: T R1 Y1 Mobynostromo\n\n45) Draw5PlayAll: Trade G3 Y3 B1\n\n46) MobyNostromo: T R3 G3 Mobynostromo\n\n47) Draw5PlayAll: Sacrifice Y3 B1\nMove G3 B3 Mobynostromo\nMove G2 B3 Mobynostromo\nMove B1 B3 Mobynostromo\nCatastrophe Mobynostromo Green\n\n48) MobyNostromo: T Y1 R1 Mobynostromo\n\n49) Draw5PlayAll: Sacrifice G2 B1\nBuild B2 Mobynostromo\nBuild B3 Mobynostromo\nCatastrophe Mobynostromo Blue\n\n\tDraw5PlayAll: Good try... the instafreeze is powerful.\n\tMobyNostromo: Cool. I&#39;m still learning, so I have this incredible journey with this game. I&#39;m actually quickly falling in love with Homeworlds. It is an amazing game with so many possibilities. I guess I&#39;m at that stage in discovering a game where I&#39;m enrapt in wonder at everything all around me. Homeworlds is just awesome!!\n\nHomeworlds Online (SDG# 32479)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.21, Ended: 2017.6.28\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Felix: H R2 B3 G3\n\n3) wil: Build G1 Wil\n\tFelix: Looks like you got to me before I had a chance to challenge dlwillson :) good luck and have fun! I hope this one is as interesting as our last bout.\n\n4) Felix: B G1 Felix\n\twil: oops...\n\n5) wil: Trade G1 Y1 Wil\n\tDraw5PlayAll: Felix, you COULD have dropped to position 6 and then challenged dlwillson again.\n\tFelix: And run from a fight? Never, sir! Not when a captain&#39;s honor is on the line!\n\n6) Felix: T G1 Y1 Felix\n\n7) wil: B Y2 Wil\n\tFelix: I&#39;ll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\twil: No worries....have fun...make some.jiffy pop!   I got over 40 days under the stars last year....on 15 so far this year.\n\n8) Felix: B Y2 Felix\n\n9) wil: D Y1 Wil G3 G3\n\tFelix:  Oh, I do love jiffy pop! Didn&#39;t get any this time though. We used to go camping a lot, but it has been a little bit trickier with a baby and a puppy.\n\n10) Felix: D Y1 Felix G1 Rumpus\n\n11) wil: D Y2 Wil B3 B3\n\n12) Felix: B Y2 Rumpus\n\n13) wil: B Y3 G3\n\n14) Felix: M Y1 Rumpus G3\n\n15) wil: D Y3 G3 G1 G1\n\n16) Felix: B Y3 Rumpus\n\n17) wil: B Y3 G1\n\n18) Felix: T Y2 R2 Felix\n\n19) wil: T Y2 R2 B3\n\n20) Felix: Move Y3 Rumpus B3\n\n21) wil: S Y1 G3\nM R2 B3 G1\n\n22) Felix: Move Y3 B3 G1\n\n23) wil: S Y3 G1\nD Y3 G1 G2 G2\nM R2 G1 G2\nP\n\n24) Felix: Build Y1 G1\n\twil: Taking the little ones camping is great stuff...   \n\tFelix: For sure. It&#39;s loads of fun, especially now that our daughter is old enough to actually know what&#39;s going on around her :P\n\n25) wil: B G1 Wil\n\n26) Felix: Build Y2 G3\n\twil: My kids are 24..but when they were preteen they became great campers...they set up tents, the kitchen, cooked, cleaned, packed the containers and car...I didn&#39;t even have to say anything, they were super efficient.\r\n\n\twil: My kids are 24..but when they were preteen they became great campers...they set up tents, the kitchen, cooked, cleaned, packed the containers and car...I didn&#39;t even have to say anything, they were super efficient.\r\n\n\tFelix: Ah, your kids aren&#39;t much younger than me! I&#39;m 26. Didn&#39;t realize I was competing against an older and wiser fellow :) My strategies shall now change accordingly.\n\n27) wil: D G1 Wil Y3 Y3\n\n28) Felix: B Y2 Rumpus\n\n29) wil: B R1 G2\n\n30) Felix: Build G2 Felix\n\n31) wil: B G2 Wil\n\n32) Felix: Build R1 Felix\n\n33) wil: D R1 G2 B1 B1\n\n34) Felix: Trade R1 B1 Felix\n\n35) wil: B R1 G2\n\n36) Felix: Move Y1 G1 Felix\n\n37) wil: M R1 G2 Rumpus\n\n38) Felix: Sacrifice Y2 Rumpus\nMove B1 Felix G1\nMove R2 Felix G1\n\n39) wil: S G3 Wil\nB G3 Wil\nB R1 B1\nB R3 Rumpus\n\n40) Felix: Sacrifice G3 Felix\nBuild R3 G1\nBuild Y2 G1\nBuild G3 Felix\n\twil: Lol, you are playing a 60 year old...that slept outside over 40 days last year, from minus 7 at standing rock to 102 at burning man...\n\twil: I didn&#39;t have my kids till I was 36...\n\n41) wil: A Y2 Rumpus\n\tFelix: I&#39;m impressed! That&#39;s quite a temperature range. My impression was that this type of nerdy game generally appealed to a younger demographic, but I&#39;m glad it has a broader appeal than I realized! How did you get into the game? You said you&#39;re friends with Andy Looney, right?\r\n\r\nMy dad was 55 when I was born... he&#39;s nearly 82 now. He started having kids around 38, I believe, so he beat you by a couple years!\n\n42) Felix: Move R3 G1 Y3\n\n43) wil: B R3 G2\n\twil: This is chess but better... It will take time to catch on.... My daughter bought zendo when she was in third grade...nearly a decade later I was playing poker with john, korey and Andy....with the same pyramids as chips...and I learned the rest of the story.\n\n44) Felix: Sacrifice G3 Felix\nBuild B1 G1\nBuild B2 G1\nBuild G3 Felix\n\n45) wil: M R3 G2 G3\n\tFelix: I agree. It will catch on, and I hope soon, since It&#39;s hard to find anyone willing to play outside of this website. I still haven&#39;t played much Zendo, but have enjoyed what I played! It&#39;s very cool that you have been along since the early days of the system.\n\n46) Felix: Sacrifice Y3 G1\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nDiscover Y2 G1 Y3 Keepaway\n\n47) wil: M Y3 G2 G1\n\n48) Felix: S R2 G1\nA G2 Wil\nA G1 Y3\n\twil: I have the same problem here as I do with chess .... I should take longer to look but I don&#39;t last four moves had lots of choices ... and I still shoot from the hip\n\n49) wil: S R3 G3\nA G2 Wil\nA Y2 Wil\nA Y1 Wil\n\tFelix: No worries... I will do the same :)\n\tdlwillson: If either of you are in Colorado, I&#39;ll drive for a game.\n\twil: How much would the 1st place prize have to be to get people to fly to a tourney.....hmmm\n\n50) Felix: Move Y2 Keepaway Wil\nCatastrophe Wil Yellow\n\tFelix: I&#39;d love to se Colorado, dlwillson. I&#39;m in North Carolina, however :/ I&#39;d love to do a tourney of some kind. I wondered if it was feasible to do one online. This game really needs to be implemented somewhere like BoardGameArena, which has a realtime system.\n\n51) wil: S R3 Rumpus\nA B2 G1\nA B1 G1\nA B1 G1\n\twil: You two have any good games examples for he theater?   Classic bluebirds, or doomsdays, or freezeouts ....or just darn interesting games?  Kudos to submitting ones you lost by stupid mistakes.\n\tdlwillson: I&#39;ll pay $128 to be in a competitive tournament.\n\n52) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Y3\nBuild Y1 Felix\n\tdlwillson: The crushing defeat I just got from Draw5 is pretty interesting. Also, the small game Felix and I played was pretty interesting.\n\tFelix: The game I just lost to Ausmuh was fairly interesting. I did some really stupid (but unique) things, such as intentionally blowing up part of my homeworld in order to threaten a catastrophe in his. Didn&#39;t work out, but made for some interesting moments. I seem to recall that you and I had a pretty long and fascinating game not long ago too, Wil.\n\tFelix: Let&#39;s see... Game #32289 with Draw5PlayAll was pretty fascinating, since I managed to squeak out a win with an usual 2-2 homeworld star. If you&#39;re looking for a freezout... I managed a pretty decent yellow freeze against ts52 in game #32171. And my recent ladder defeat to dlwillson was pretty fascinating with me barely hanging onto half of a my homeworld while desperately trying to keep the blue out of his hands. That one may not be a good candidate though, because I resigned instead of playing it out.\n\n53) wil: T G3 Y3 Wil\n\n54) Felix: Move G1 Y3 Wil\n\tFelix: Or this game for a good example of a doomsday machine :) I was so focused on trying to get what I needed, I utterly failed to notice you setting up a nice apocalypse for me!\n\n55) wil: S Y3 G1\nM B2 G1 Felix\nM B1 G1 Felix\nM B1 G1 Felix\nC Felix B\n\n56) Felix: S G2 Felix\nB G1 Wil\nB G2 Wil\n\twil: Lol, I was quietly amassing whikst you were attacking and losing all those yellow you had accumulated...\n\twil: Still a squeaker...\n\n57) wil: S Y3 Wil\nM R1 Rumpus Felix\nM R1 B1 Felix\nM R1 B1 Felix\nC Felix R\n\tFelix: Indeed.   Not my most situationally aware game ever. Well done and congratulations! \n\tFelix: I have no idea why I didn&#39;t catastrophe on my last turn. That would have dragged things out a bit longer I suppose.\n\tFelix: Though only a turn or two at most, I think.\n\twil: Lol yup, ids had to sack my y2 to get the r2 home which would have really looked like a bad ending with your r3 in my hw!\n\n\nHomeworlds Online (SDG# 32504)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.23, Ended: 2017.7.22\nParticipants: Aristos (S), Subhan64 (N)\nWinner: Aristos\n\n1) Subhan64: Homeworld B3 Y2 G3\n\n2) Aristos: Homeworld G2 Y1 B3\n\n3) Subhan64: Build G1 Subhan64\n\n\n\n4) Aristos: Build B1 Aristos\n\n5) Subhan64: Build G1 Subhan64\n\n6) Aristos: Trade B1 G1 Aristos\n\n7) Subhan64: Trade G1 Y1 Subhan64\n\n8) Aristos: Discover G1 Aristos Y3 Submarine\n\n9) Subhan64: Discover G1 Subhan64 Y1 Kermit\n\n10) Aristos: Build B1 Aristos\n\n11) Subhan64: Build G1 Kermit\n\tAristos: Ping!\n\tDraw5PlayAll: Oops, sorry!\n\n12) Aristos: Build G2 Submarine\n\n13) Subhan64: Build Y2 Subhan64\n\n14) Aristos: Move G1 Submarine Kermit\n\n15) Subhan64: Move G1 Kermit Submarine\n\n16) Aristos: Trade B1 R1 Aristos\n\n\nHomeworlds Online (SDG# 32480)\nStarted: 2017.6.26, Ended: 2017.7.7\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\tFelix: Likewise! I always enjoy our games.\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: T G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Trade B2 Y2 Ts52\n\n10) Felix: Trade B1 Y1 Felix\n\n11) ts52: Discover B1 Ts52 G2 Kermit\n\n12) Felix: Build Y1 Felix\n\n13) ts52: Build G1 Ts52\n\n14) Felix: Discover Y1 Felix G1 Florist\n\n15) ts52: Move Y2 Ts52 Kermit\n\n16) Felix: Build Y1 Florist\n\n17) ts52: Build Y2 Kermit\n\n18) Felix: Move Y1 Florist Kermit\n\n19) ts52: Trade Y2 R2 Kermit\n\n20) Felix: Move Y1 Kermit Ts52\n\n21) ts52: Trade G1 R1 Ts52\n\n22) Felix: Sacrifice G3 Felix\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild Y3 Felix\nCatastrophe Ts52 Yellow\n\n23) ts52: Build G1 Ts52\n\tts52: Oh well done. That was very well done.\n\n24) Felix: Trade Y1 G1 Felix\n\n25) ts52: Trade G1 Y1 Ts52\n\tFelix: Thank you kindly, sir!\n\n26) Felix: Build G1 Felix\n\n27) ts52: Move R2 Kermit Florist\n\n28) Felix: D Y1 Florist G2 Forest\n\n29) ts52: Build R1 Ts52\n\n30) Felix: Trade G1 R1 Felix\n\n31) ts52: Sacrifice Y2 Kermit\nMove R1 Ts52 Felix\nMove R1 Ts52 Felix\nCatastrophe Felix Red\n\n32) Felix: Sacrifice B2 Felix\nTrade G1 R1 Felix\nTrade Y1 B1 Forest\n\tFelix: Oh, excellent. Not sure how I overlooked that!\n\n33) ts52: Sacrifice Y1 Ts52\nMove R2 Florist Forest\n\n34) Felix: Move R1 Felix Kermit\n\tts52: I&#39;ve been trying to decide when the right time was to pull that trigger. We&#39;ll see if I made the right call or not.\n\n35) ts52: Attack B1 Forest\n\tFelix: I think the timing will work out for you, especially with that last move of yours, which was also good! I thought I could get the blue edge on you. I might still, but it will be tricky\n\n36) Felix: Attack B1 Kermit\n\tts52: Thanks. We&#39;ll see if it&#39;s enough to turn the tide in my favor.\n\n37) ts52: Build B2 Forest\n\tFelix: I think it will be, unless you make a mistake. You&#39;re a step ahead at the moment.\n\n38) Felix: Build B2 Kermit\n\n39) ts52: Trade R2 Y2 Forest\n\n40) Felix: Trade B2 G2 Kermit\n\n41) ts52: Build B2 Forest\n\n42) Felix: Sacrifice Y3 Felix\nMove R1 Kermit Felix\nMove B1 Kermit Ts52\nMove G2 Kermit Ts52\n\n43) ts52: Move B2 Forest Felix\n\tFelix: Phew... I think I managed to just nip out of that one. Talk about escaping with your hair singed!\n\tts52: Oh wow, nice move. Very well done.\n\n44) Felix: S G2 Ts52\nB B2 Ts52\nB B3 Ts52\nC Ts52 Blue\n\tts52: I did not see _that_ coming.\n\tFelix: It took me quite a lot of brain power to come up with that as a possible move. I thought for sure I was a goner. It was you trading away that red that gave me the opening. Great game!\n\tts52: Very well played. I look forward to our next.\n\tts52: I figured I could get a little extra tempo by trading the red instead of the blue. That&#39;ll teach me. :)\n\tFelix: In any other situation, I think that would have been a great idea. But losing any attack power left you open to that little construction trick. I can&#39;t say there&#39;s much left of my fleet though! I&#39;ve never had a game end with only one small left in my possession. Super fascinating game all around.\n\tts52: Definitely one for the books. :)\n\n\nHomeworlds Online (SDG# 32434)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.6.26, Ended: 2017.6.29\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\tdlwillson: Done camping?\n\tFelix: Hope you don&#39;t mind the consistent matches against me. I enjoy our bouts too much to resist. :P\n\tFelix: Yep! And it was extremely wet. I taught someone from our church how to play Homeworlds though, so that was a good way to beat the drizzle.\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: Mind? Of course not! I enjoy them thoroughly.\n\n5) Felix: Trade G1 B1 Felix\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Felix: Build B2 Felix\n\n8) dlwillson: Build B2 Dlwillson\n\n9) Felix: D B2 Felix Y1 Cypher\n\n10) dlwillson: Trade B2 Y2 Dlwillson\n\n11) Felix: B B2 Felix\n\n12) dlwillson: Discover B1 Dlwillson G2 Field\n\n13) Felix: D B1 Felix G1 Forest\n\n14) dlwillson: Move Y2 Dlwillson Field\n\n15) Felix: T B2 Y2 Felix\n\n16) dlwillson: Build B2 Field\n\n17) Felix: D B2 Cypher G2 Kringo\n\n18) dlwillson: M B2 Field Forest\n\n19) Felix: T B1 Y1 Forest\n\n20) dlwillson: B B1 Forest\n\n21) Felix: M Y1 Forest Kringo\n\n22) dlwillson: T B1 Y1 Forest\n\n23) Felix: T Y2 R2 Felix\n\n24) dlwillson: T B2 R2 Forest\n\n25) Felix: Build R1 Felix\n\n26) dlwillson: B G1 Dlwillson\n\n27) Felix: Build G1 Felix\n\n28) dlwillson: Trade G1 R1 Dlwillson\n\n29) Felix: Trade R2 Y2 Felix\n\n30) dlwillson: Build Y1 Forest\n\n31) Felix: Build Y3 Kringo\n\n32) dlwillson: B Y3 Field\n\tFelix: I am just not happy with any of my choices in this game!\n\n33) Felix: D Y2 Felix G1 Sublime\n\tdlwillson: I&#39;m trying hard to offer you unattractive alternatives.\n\n34) dlwillson: Sacrifice Y2 Field\nMove Y1 Forest Kringo\nMove Y1 Forest Kringo\nCatastrophe Kringo Y\n\tFelix: The ugliest.\n\n35) Felix: Discover G1 Felix B1 Ringersoll\n\tdlwillson: That was more than I wanted to pay...\n\tFelix: And yet... also more than I wanted to lose!\n\n36) dlwillson: Build B2 Field\n\n37) Felix: Build Y1 Sublime\n\n38) dlwillson: Move B1 Field Forest\n\n39) Felix: Move Y1 Sublime Kringo\n\n40) dlwillson: Build Y1 Field\n\n41) Felix: Build Y1 Kringo\n\n42) dlwillson: M Y1 Field Forest\n\n43) Felix: Move Y1 Kringo Ringersoll\n\n44) dlwillson: Build R1 Forest\n\n45) Felix: Build G2 Felix\n\n46) dlwillson: Build G3 Dlwillson\n\n47) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Kringo\nBuild Y3 Ringersoll\n\tdlwillson: Nice!\n\n48) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Field\nBuild B3 Forest\nBuild G3 Dlwillson\n\tFelix: Thank you! I finally made one decision I&#39;m pleased with :P\n\n49) Felix: S G3 Felix\nB G3 Felix\nBuild R2 Felix\nB B3 Kringo\n\n50) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild R3 Dlwillson\nBuild G3 Dlwillson\n\n51) Felix: M R2 Felix Ringersoll\n\tdlwillson: Gosh, we sure like to empty the bank; don&#39;t we. Oh hey! My poor reds are within range! Oh noes!\n\n52) dlwillson: M B2 Field Sublime\n\tFelix: Nice try... but you can&#39;t bait me that easily :p\n\n53) Felix: Sacrifice R1 Felix\nAttack B2 Sublime\n\n54) dlwillson: M B3 Forest Felix\n\tFelix: So many choices.... it&#39;s hard to turn down those juicy R3s!\n\n55) Felix: Sacrifice R2 Ringersoll\nAttack B3 Felix\nPass\n\tdlwillson: Boo! Blue!\n\n56) dlwillson: Sacrifice Y3 Field\nMove R3 Dlwillson Kringo\nMove R3 Kringo Sublime\nMove R3 Sublime Felix\n\tFelix: Very nice move! I knew it was a bad idea to sac that r1 on my last turn. I have lots of options now, but they all end in misery for me, I think.\n\n57) Felix: Sacrifice B3 Kringo\nTrade B3 R3 Felix\nTrade G3 R3 Felix\nTrade B2 R2 Sublime\n\tdlwillson: I think it&#39;s a downhill walk from here.\n\tdlwillson: And thank you! Your sac of the home red was a pleasant surprise! I do wish I had some reserve jumps, though. If I have to move ships around, I&#39;m screwed.\n\n58) dlwillson: Sacrifice R2 Dlwillson\nAttack R3 Felix\nAttack G2 Felix\n\tFelix: *cue desperate flailing*\n\n59) Felix: Sacrifice Y2 Kringo\nMove R2 Sublime Felix\nCatastrophe Felix Red\nMove Y3 Ringersoll Felix\n\n60) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Felix\nBuild R1 Forest\nBuild R2 Dlwillson\n\n61) Felix: Sacrifice Y3 Felix\nMove Y1 Ringersoll Felix\nMove G1 Ringersoll Felix\nMove Y2 Sublime Felix\n\n62) dlwillson: Sacrifice R2 Forest\nAttack Y2 Felix\nAttack Y1 Felix\n\tFelix: *desperate flailing continues*\n\n63) Felix: Build G1 Felix\n\tdlwillson: The downhill walk is strewn with rocks.\n\n64) dlwillson: Build Y2 Felix\nCatastrophe Felix G\nCatastrophe Felix Y\n\tFelix: *flailing subsides, a low gurgle is heard, and then silence*\n\tdlwillson: Good game as always!\n\tFelix: Likewise! Very intense.\n\n\nHomeworlds Online (SDG# 32361)\nStarted: 2017.6.26, Ended: 2017.7.11\nParticipants: panglott (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) panglott: Homeworld B3 Y2 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) panglott: Build G1 Panglott\n\n5) Ausmuh: Trade B1 G1 Ausmuh\n\n6) panglott: Trade G1 Y1 Panglott\n\n7) Ausmuh: Build B1 Ausmuh\n\n8) panglott: Discover Y1 Panglott G1 Trantor\n\n9) Ausmuh: Discover B1 Ausmuh G2 Zog\n\n10) panglott: Build G1 Panglott\n\n11) Ausmuh: Build G2 Ausmuh\n\n12) panglott: Move G1 Panglott Trantor\n\n13) Ausmuh: Discover G1 Ausmuh Y2 Zwarp\n\n14) panglott: Build G2 Panglott\n\n15) Ausmuh: Build G3 Ausmuh\n\n16) panglott: Sacrifice G3 Panglott\nBuild G3 Panglott\nBuild Y1 Trantor\nBuild Y2 Trantor\n\n17) Ausmuh: Trade G3 Y3 Ausmuh\n\n18) panglott: Move Y1 Trantor Zog\n\n19) Ausmuh: Trade B3 R3 Ausmuh\n\n20) panglott: Sacrifice G3 Panglott\nBuild G3 Panglott\nBuild G3 Trantor\nBuild Y3 Trantor\n\n21) Ausmuh: Sacrifice Y3 Ausmuh\nMove R3 Ausmuh Zwarp\nMove R3 Zwarp Trantor\nMove R3 Trantor Panglott\n\n22) panglott: Trade G3 R3 Panglott\n\n23) Ausmuh: Attack R3S Panglott\n\n24) panglott: Sacrifice Y3 Trantor\nMove G1 Trantor Zog\nMove G1 Zog Ausmuh\nMove G3 Trantor Zog\n\n25) Ausmuh: Attack G2S Panglott\n\tpanglott: Thanks for the game ;)\n\tAusmuh: Thanks, you too! \n\n\nHomeworlds Online (SDG# 32457)\nVariants: &quot;Unrated&quot;\nStarted: 2017.6.27, Ended: 2017.7.3\nParticipants: Felix (S), Ausmuh (N)\nWinner: Felix\n\n1) Ausmuh: Homeworld G3 Y2 B3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\tFelix: Hello again! Have a good game :)\n\tAusmuh: Thanks, you too!\n\n4) Felix: Build G1 Felix\n\n5) Ausmuh: Trade B1 R1 Ausmuh\n\n6) Felix: Trade G1 R1 Felix\n\n7) Ausmuh: Build R2 Ausmuh\n\n8) Felix: Build R2 Felix\n\n9) Ausmuh: Discover R2 Ausmuh B1 Zed\n\tAusmuh: You are braver then I! I am always gun shy to take the last 1-pip. I also get locked out of color often that way. \n\n10) Felix: Trade R2 Y2 Felix\n\tFelix: Yeah... sometimes you have to! In this case, if I had traded for the y1 instead of the r1 on my second turn, you could have easily locked me out of red. Not a good situation to be in!\n\n11) Ausmuh: Build R2 Ausmuh\n\n12) Felix: Discover R1 Felix G2 Troid\n\n13) Ausmuh: Trade R2 G2 Zed Ausmuh\n\n14) Felix: Build R2 Troid\n\n15) Ausmuh: Build G1 Zed\n\n16) Felix: Build Y1 Felix\n\n17) Ausmuh: Trade G2 Y2 Zed\n\n18) Felix: Move Y1 Felix Troid\n\n19) Ausmuh: Move R1 Ausmuh Zed\n\n20) Felix: Discover R2 Troid B1 Mega\n\n21) Ausmuh: Build B1 Ausmuh\n\n22) Felix: Build Y1 Troid\n\tAusmuh: That was a tough turn. Still not completely happy with my choice. Those 3 pips are looking ripe for you!\n\n23) Ausmuh: Move Y2 Zed Troid\n\tFelix: Maybe! The fruit is just out of reach though. It&#39;s tricky to get to them without allowing you to get to them too :P\n\n24) Felix: Sacrifice G3 Felix\nBuild Y1 Troid\nBuild Y3 Felix\nBuild Y3 Felix\nCatastrophe Troid Yellow\n\n25) Ausmuh: Build B2 Ausmuh\n\tFelix: That was an interesting maneuver. I think I like it :)\n\tAusmuh: Well, I cruised right into that one!\n\n26) Felix: Trade Y3 G3 Felix\n\n27) Ausmuh: Discover B2 Ausmuh G1 Zog\n\n28) Felix: Sacrifice G3 Felix\nBuild R2 Mega\nBuild R3 Troid\nBuild R3 Mega\n\n29) Ausmuh: Build R3 Zed\n\n30) Felix: Trade R3 G3 Mega\n\tAusmuh: Eesh. That&#39;s awesome.\n\tFelix: Haha, lots of weapons! I&#39;m a bit nervous leaving only one color in my homeworld though...\n\n31) Ausmuh: Trade B2 Y2 Zog\n\n32) Felix: Trade Y3 G3 Felix\n\n33) Ausmuh: Trade R1 Y1 Zed\n\n34) Felix: Build Y1 Felix\n\n35) Ausmuh: Trade R2 G2 Ausmuh\n\n36) Felix: Move Y1 Felix Troid\n\n37) Ausmuh: Sacrifice Y1 Zed\nDiscover Y2 Zog B2 Aaa\n\n38) Felix: Build Y1 Troid\n\n39) Ausmuh: Build R1 Zed\n\n40) Felix: M Y1 Troid Mega\n\n41) Ausmuh: Trade R3 Y3 Zed\n\n42) Felix: S G3 Felix\nB Y1 Mega\nB Y3 Troid\nB Y3 Felix\n\n43) Ausmuh: Build R2 Zed\n\n44) Felix: S Y3 Troid\nM R1 Troid Zed\nM R3 Troid Zed\nC Zed Red\nM G3 Mega Ausmuh\n\tAusmuh: Impending DooM!!!\r\n\r\nNot sure I see a way out of this one as it sits.\n\n45) Ausmuh: Build G1 Ausmuh\nCatastrophe Ausmuh Green\n\tFelix: It doesn&#39;t look great for you... but you might get out of this yet!\n\tAusmuh: Beautiful red catastrophe. :) That hurts!\n\n46) Felix: Move Y1 Troid Zed\n\n47) Ausmuh: Trade B1 R1 Ausmuh\n\tFelix: Thank you! It was a costly move, though. \n\tAusmuh: oh wow, i think you could have moved your 3 pip in from your HW to lock in the win. I would have been lacking the attack to defend. Maybe I&#39;m wrong but I&#39;ll take it! :)\n\n48) Felix: Sacrifice Y3 Felix\nMove Y1 Mega Ausmuh\nMove Y1 Mega Ausmuh\nMove Y1 Zed Ausmuh\nCatastrophe Ausmuh Yellow\n\tFelix: That would have been one pathway to get there! ;) It would have taken two moves for me either way, I think, but catastrophes are always more fun. Great game!\n\tAusmuh: Good game! You&#39;re right, catastrophes are sweet! See you on the next one!\n\n\nHomeworlds Online (SDG# 32556)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.28, Ended: 2017.7.1\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) dlwillson: Homeworld Y3 B2 G3\n\tFelix: Here we go again! I suppose I&#39;ll take the Goldilocks for once, and see how it works for me :) I&#39;ve been trying to really coerce the fortress into a viable competitive choice, but it really does seem to have its drawbacks.\n\tDraw5PlayAll: What about B2 R1?\n\n3) Felix: B G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I wouldn&#39;t have minded if you had wanted to go banker, for the record :P\n\n5) Felix: Trade G1 Y1 Felix\n\tdlwillson: I never go banker, for the record. :-)\n\tFelix: Fair enough! :)\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Felix: B G1 Felix\n\tFelix: So do you really believe the banker provides an unfair advantage? Or do you just not like to play it?\r\n\n\n8) dlwillson: B G1 Dlwillson\n\tdlwillson: I don&#39;t think it gives an unfair advantage. I don&#39;t think it&#39;s as much a banker as it is a blocker. It&#39;s convenient to be able to block a big by discovering it. I think that&#39;s easy, but cashing it in... That&#39;s hard.\r\n\r\nBut, I think folks have the impression that it gives an advantage, so I don&#39;t play it.\n\n9) Felix: Trade G1 R1 Felix\n\tFelix: I agree. I think in capable hands, all three setups can be equally good... but each one does have particular different strengths and weaknesses. It just depends on whether you&#39;d like to be able to easily manipulate the supply of smalls, mediums, or larges.\r\n\r\nBut yeah, there is a certain stigma associated with it, so I try to avoid it too.\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\n12) dlwillson: B R2 Dlwillson\n\n13) Felix: Discover R2 Felix B2 Orcrist\n\n14) dlwillson: Discover Y1 Dlwillson G1 Field\n\tdlwillson: Gotta think about this one.\n\n15) Felix: Sacrifice G3 Felix\nBuild R2 Orcrist\nBuild R3 Orcrist\nBuild R3 Felix\n\tdlwillson: Not sure I liked any of my options there...\n\tFelix: As a wise man once told me.... I tried to present you with only the most unappealing of options :)\n\n16) dlwillson: Build R3 Dlwillson\n\tFelix: And so the emptying of the bank begins...\n\n17) Felix: Trade R2 Y2 Orcrist\n\n18) dlwillson: Move R3 Dlwillson Field\n\n19) Felix: Trade R3 G3 Orcrist\n\n20) dlwillson: Trade R2 Y2 Dlwillson\n\n21) Felix: Trade R3 G3 Felix\n\n22) dlwillson: Build R2 Dlwillson\n\n23) Felix: B Y1 Orcrist\n\n24) dlwillson: D R2 Dlwillson B1 Sea\n\n25) Felix: D Y1 Orcrist B1 Glamdring\n\n26) dlwillson: M Y2 Dlwillson Glamdring\n\n27) Felix: Sacrifice G3 Felix\nBuild Y2 Glamdring\nBuild Y3 Orcrist\nBuild Y3 Felix\n\n28) dlwillson: S R1 Dlwillson\nAttack Y2 Glamdring\n\n29) Felix: Move Y2 Orcrist Glamdring\nCatastrophe Glamdring Yellow\n\n30) dlwillson: B G1 Dlwillson\n\n31) Felix: Build G1 Orcrist\n\tdlwillson: Hmm... You&#39;re doing very well at offering our choices!\n\tdlwillson: Hmm... You&#39;re doing very well at offering poor choices!\n\n32) dlwillson: Trade G1 B1 Dlwillson\n\tFelix: Well, I learned how to do that in our most recent game where you offered me only the lowest-quality choices ;)\n\n33) Felix: Build G1 Orcrist\n\n34) dlwillson: Trade R2 G2 Sea\n\n35) Felix: M G3 Orcrist Sea\n\tdlwillson: Is it getting cold in here? I feel a sudden chill...\n\n36) dlwillson: Sacrifice G2 Sea\nBuild B1 Dlwillson\nBuild Y1 Field\n\tFelix: I&#39;m just feeling green with envy :p\n\n37) Felix: B G2 Sea\n\n38) dlwillson: M B1 Dlwillson Field\n\tDraw5PlayAll: Are you trying to reference the blue and green abilities?\n\n39) Felix: Sacrifice Y1 Felix\nMove G3 Sea Dlwillson\n\tdlwillson: I&#39;m not. I was misreading the board. I thought I was losing worse than I am.\n\n\tFelix: I was just making a bad pun because I had just built a green ship.\n\tdlwillson: Oh, poo.\n\tFelix: I believe you did something similar to this to me in our last game! I hope it pays off... but I have had my most confident of moves totally overturned by your sneakery before.\n\tdlwillson: Not this time. You&#39;ve got me. I can resign here or we can walk down the hill. Well done!\n\tdlwillson: I&#39;m so used to Goldilocks... I thought Orcrist was in *my* orbit.\n\tFelix: Whatever you&#39;d like to do! I always enjoy playing it out (when I&#39;m winning!) but I understand if you&#39;d just like to resign.\n\tFelix: And thank you! I just got lucky by throwing off your goldilocks game. :)\n\tdlwillson: I prefer to resign as soon as the end is inevitable, assuming perfect play on both sides. I think it is more interesting for people reading the game later and allows the players to move on to non-determined scenarios.\r\n\r\nIt&#39;s always a pleasure. Welcome to #1!\n\tdlwillson: Let me correct part of that. Not assuming &quot;perfect play&quot;, assuming the quality of play thus far demonstrated. So, I don&#39;t resign if there&#39;s a fair chance the other fellow might fumble the ball.\n\tFelix: Sometimes when losing I play it out in hopes of the opponent making a game-changing mistake, but I do resign when it&#39;s completely inevitable, and it&#39;s too much to hope for certain opponents (like yourself) to make mistakes after a certain point!\r\n\r\nAnd thank you very much! I don&#39;t think I&#39;d be so fortunate if certain juggernauts like endo or TwoShort were still active, but I&#39;ll bask in the glory while I can and try not to accidentally reject a challenge on my tiny iPhone screen this time ;)\n\nHomeworlds Online (SDG# 32569)\nVariants: &quot;Hard time&quot;\nStarted: 2017.6.30, Ended: 2017.7.5\nParticipants: ajo (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) ajo: Homeworld B2 Y3 G3\n\twil: Let&#39;s do this!  Have fun\n\n3) wil: Build G1 Wil\n\tajo: You too. :)\n\n4) ajo: Build G1 Ajo\n\n5) wil: Trade G1 Y1 Wil\n\n6) ajo: Discover G1 Ajo B1 Alpha\n\n7) wil: Build Y1 Wil\n\n8) ajo: Build G1 Ajo\n\twil: Didja just give me a slight advantage?\n\n9) wil: Build Y1 Wil\n\tajo: I wasn&#39;t planning to; I guess we&#39;ll see in a minute.\n\n10) ajo: Build G1 Ajo\n\n11) wil: Discover Y1 Wil Y3 Y3\n\twil: it is gonna be crazy\n\n12) ajo: Build G2 Alpha\n\twil: I am always incapable of thinking ahead..\n\n13) wil: D Y1 Wil G3 G3\n\n14) ajo: Trade G2 Y2 Alpha\n\n15) wil: S G3 Wil\nB Y2 G3\nB Y2 Wil\nB Y3 Wil\n\n16) ajo: Trade G3 R3 Ajo\n\n17) wil: Trade Y2 G2 Wil\n\n18) ajo: Build G2 Ajo\n\n19) wil: B Y2 Wil\n\n20) ajo: Discover Y2 Alpha G3 Beta\n\n21) wil: T Y1 R1 Wil\n\n22) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild Y1 Beta\n\n23) wil: T Y3 G3 Wil\n\n24) ajo: Trade G2 R2 Alpha\n\n25) wil: Build Y3 Wil\n\n26) ajo: Move Y1 Beta Wil\n\n27) wil: Trade Y3 B3 Wil\n\tajo: I see we&#39;re doing this. :)\n\n28) ajo: Build Y3 Beta\n\n29) wil: Attack Y1 Wil\n\n30) ajo: Move Y3 Beta Alpha\n\n31) wil: Move G2 Wil Y3\n\n32) ajo: Build G2 Alpha\n\n33) wil: Build G2 Wil\n\n34) ajo: Move G1 Alpha Beta\n\twil: Yeah...I blew my advantage..\n\n35) wil: D Y1 Y3 B1 B1\n\n36) ajo: Build R1 Alpha\n\n37) wil: S G2 Y3\nB B1 Wil\nB Y3 B1\n\n38) ajo: Build R2 Ajo\n\n39) wil: M R1 Wil G3\n\n40) ajo: Move R1 Alpha Beta\n\n41) wil: T B3 R3 Wil\n\n42) ajo: Build R2 Beta\n\n43) wil: Build R3 G3\n\n44) ajo: Sacrifice Y2 Beta\nMove R1 Beta Wil\nMove R2 Beta Wil\nCatastrophe Wil Red\n\tajo: *hums the theme to &quot;Jaws&quot;*\n\n45) wil: Build B2 Wil\n\n46) ajo: Build G2 Alpha\n\n47) wil: S Y2 Wil\nM B2 Wil G3\nM R1 G3 B1\n\n48) ajo: Sacrifice Y3 Alpha\nMove G2 Alpha Wil\nMove G1 Beta Wil\nMove R2 Alpha Wil\nCatastrophe Wil Green\n\n49) wil: M Y3 B1 Wil\n\tajo: That looks like the classic Bluebird mistake. :)\n\n50) ajo: Attack B1 Wil\n\n51) wil: Sacrifice R3 G3\nAttack B1 Wil\nAttack R2 Wil\nPass\n\twil: In my choices of outcomes...the best I saw was you going in...and I&#39;d still have two queens and opportunity to grow..\n\tajo: Oho. I didn&#39;t see that.\n\n52) ajo: Move R2 Ajo B1\n\tajo: Make that &quot;one queen&quot;.\n\n53) wil: Sacrifice Y1 B1\nMove R1 B1 G3\n\twil: true...and I may have missed the opportunity to lose it had you not reminded me!!\n\n54) ajo: Sacrifice G2 Alpha\nBuild R1 B1\nBuild R1 Ajo\n\tajo: Seems like you survived. Bah.\n\n55) wil: Build B1 G3\n\twil: It appears to still be looking good for our team..  that shark was all teeth and no bite..  and now is chum\n\twil: better than a phoenix from the ashes the blue queen machine is about to start building...\n\n56) ajo: Trade R2 G2 B1\n\n57) wil: B B3 G3\n\n58) ajo: Build R2 B1\n\n59) wil: M B3 G3 B1\n\n60) ajo: Sacrifice G2 B1\nBuild R2 B1\nBuild R3 B1\nCatastrophe B1 Red\n\n61) wil: B B3 G3\n\twil: I can&#39;t hardly hear you humming that jaws theme anymore...it doesn&#39;t bother me...crank it up\n\tajo: Nuts. Well, I think I&#39;m going to lose now.\n\n62) ajo: Discover R1 Ajo R1 Gamma\n\n63) wil: M B3 G3 Gamma\n\twil: Well you just had some kind of insurrection with your lead attack and building force...  They all seem to have gone awol\n\twil: Well you just had some kind of insurrection with your lead attack and building force...  They all seem to have gone awol\n\n64) ajo: Build R2 Ajo\n\tajo: That Y3 that I overlooked was really disastrous for my invasion plans.\n\n65) wil: B B3 G3\n\twil: I will have all the queens but one, muahahahah\n\n66) ajo: Trade R2 Y2 Ajo\n\n67) wil: S Y2 G3\nM B3 Gamma Ajo\nM B3 B1 Ajo\n\n68) ajo: Trade G1 B1 Ajo\nCatastrophe Ajo Blue\n\n69) wil: S Y3 Wil\nM Y1 Wil Ajo\nM Y1 G3 Wil\nM Y1 Wil Ajo\nC Ajo Y\n\twil: Well fought...\n\n\tajo: Yep, I think that&#39;s game.\n\tajo: Good game!\n\nHomeworlds Online (SDG# 32534)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.1, Ended: 2017.7.19\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y2 B3 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) dlwillson: B G1 Dlwillson\n\n6) Draw5PlayAll: Build G2 Draw5playall\n\n7) dlwillson: D G1 Dlwillson B1 Sea\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) dlwillson: Build G1 Dlwillson\n\n12) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n13) dlwillson: Build R2 Dlwillson\n\n14) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\n15) dlwillson: D R1 Dlwillson Y1 Golden\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild R2 Golden\nBuild R3 Golden\n\n18) Draw5PlayAll: Build R3 Draw5playall\n\n19) dlwillson: Build R3 Dlwillson\n\n20) Draw5PlayAll: Trade R3 Y3 Draw5playall\n\n21) dlwillson: T R3 Y3 Dlwillson\n\n22) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n23) dlwillson: M R2 Golden G2\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G3 Draw5playall\nBuild R3 G2\n\n25) dlwillson: B G3 Dlwillson\n\n26) Draw5PlayAll: Sacrifice R1 G2\nAttack R2N G2\n\n27) dlwillson: Build G3 Sea\n\n28) Draw5PlayAll: Move Y3 Draw5playall B2\n\n29) dlwillson: T G3 Y3 Sea\n\n30) Draw5PlayAll: Trade G2 Y2 B2\n\n31) dlwillson: M R2 Dlwillson Sea\n\n32) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n33) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Golden G2\nMove R2 Sea G2\nCatastrophe G2 R\nMove Y3 Sea B2\n\n34) Draw5PlayAll: Sacrifice Y2 B2\nDiscover Y3 B2 R3 R3\nMove G2 B2 R3\n\n35) dlwillson: Build G1 Dlwillson\n\n36) Draw5PlayAll: Build G2 Draw5playall\n\n37) dlwillson: Move G1 Dlwillson Golden\n\tDraw5PlayAll: Quit tempting me!\n\n38) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n39) dlwillson: B G2 Golden\n\tdlwillson: OK, but I reserve the right to tempt you again, later.\n\n40) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n41) dlwillson: M G2 Golden B2\n\n42) Draw5PlayAll: Build Y1 R3\n\n43) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 B2\nBuild G3 Sea\nBuild G3 Dlwillson\n\n44) Draw5PlayAll: Build B1 Draw5playall\n\n45) dlwillson: T G3 Y3 Sea\n\n46) Draw5PlayAll: Build G3 R3\n\n47) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y1 Sea\nB Y2 B2\n\n48) Draw5PlayAll: Move B1 Draw5playall B2\n\n49) dlwillson: S Y2 B2\nM G2 B2 R3\nM G1 Sea R3\nCatastrophe R3 G\n\n50) Draw5PlayAll: Build Y2 Draw5playall\n\n51) dlwillson: Sacrifice Y3 Sea\nMove Y3 B2 Draw5playall\nMove R3 Golden B2\nMove R3 B2 Draw5playall\n\n52) Draw5PlayAll: Attack R3 Draw5playall\n\n53) dlwillson: Sacrifice R2 Dlwillson\nAttack R3 Draw5playall\nAttack G3 Draw5playall\n\tdlwillson: /me verifies that this is *not* the ladder match\r\n/me attack wildly, hollering, &quot;YEEHAA!&quot;\n\tdlwillson: /me verifies that this is *not* the ladder match\r\n/me attacks wildly, hollering, &quot;YEEHAA!&quot;\n\tDraw5PlayAll: Your attack wins no matter what.\n\n\nHomeworlds Online (SDG# 32601)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.1, Ended: 2017.7.3\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H Y2 B3 G3 Dlwillson\n\n2) Felix: H B1 R1 G3 *\n\tdlwillson: GLHF!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Likewise! And I apologize in advance. This could be a weird game...\n\n4) Felix: B G1 Felix\n\n5) dlwillson: B G1 Dlwillson\n\tDraw5PlayAll: Thankfully they are not on the ladder... never make experiments on the ladders.\n\n6) Felix: T G1 Y1 Felix\n\n7) dlwillson: D G1 Dlwillson B1 Sea\n\n8) Felix: B Y1 Felix\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Felix: B Y1 Felix\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Discover Y1 Felix G2 Graves\n\n13) dlwillson: D G1 Dlwillson G1 Field\n\n14) Felix: Discover Y1 Felix G3 Yards\n\n15) dlwillson: B G2 Sea\n\n16) Felix: Build G2 Felix\n\n17) dlwillson: T G2 Y2 Sea\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Graves\nBuild Y3 Yards\nBuild Y3 Felix\n\n19) dlwillson: B Y3 Sea\n\n20) Felix: Sacrifice Y2 Graves\nMove Y1 Graves Sea\nMove Y1 Yards Sea\nCatastrophe Sea Yellow\n\n21) dlwillson: B G2 Dlwillson\n\n22) Felix: Build G2 Felix\n\n23) dlwillson: Trade G2 Y2 Dlwillson\n\n24) Felix: Sacrifice Y3 Yards\nMove G2 Felix Dlwillson\nMove G2 Felix Dlwillson\nMove Y1 Felix Dlwillson\n\n25) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G3 Sea\nB R1 Dlwillson\n\n26) Felix: Build Y1 Dlwillson\nCatastrophe Dlwillson Yellow\n\tFelix: What fun is life without a little risk?\n\n27) dlwillson: Trade G3 Y3 Sea\n\n28) Felix: T G2 B2 Dlwillson\n\tdlwillson: Better. Not good, but better.\n\n29) dlwillson: Sacrifice Y3 Sea\nMove G1 Field Dlwillson\nMove G1 Sea Dlwillson\nMove G2 Sea Dlwillson\nCatastrophe Dlwillson G\n\tFelix: It&#39;s all or nothing time here. I&#39;m not recovering from this attack if it fails!\n\n30) Felix: T B2 R2 Dlwillson\n\n31) dlwillson: Trade R1 G1 Dlwillson\n\n32) Felix: A R1 Dlwillson\n\tdlwillson: This was an interesting game. I might like to try these starting positions again sometime.\n\n33) dlwillson: Build G1 Dlwillson\n\n34) Felix: Sacrifice R2 Dlwillson\nAttack G1 Dlwillson\nAttack G1 Dlwillson\n\n\nHomeworlds Online (SDG# 32397)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.1, Ended: 2017.7.5\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\n2) Felix: H B3 R3 G3 *\n\n3) wil: B G1 Wil\n\tDraw5PlayAll: !\n\twil: Nimby\n\n4) Felix: B G1 Felix\n\tFelix: Nimby?\n\n5) wil: Trade G1 R1 Wil\n\n6) Felix: T G1 Y1 Felix\n\n7) wil: Build R1 Wil\n\n8) Felix: B Y1 Felix\n\n9) wil: Build R1 Wil\n\n10) Felix: B Y2 Felix\n\n11) wil: D R1 Wil G3 G3\n\n12) Felix: Discover Y1 Felix B1 Surplus\n\n13) wil: B R2 Wil\n\n14) Felix: Sacrifice G3 Felix\nBuild Y2 Surplus\nBuild Y2 Surplus\nBuild Y3 Felix\n\n15) wil: D R2 Wil Y3 Y3\n\n16) Felix: Trade Y3 G3 Felix\n\n17) wil: B R2 Wil\n\n18) Felix: Build Y3 Felix\n\n19) wil: D R2 Wil B3 B3\n\n20) Felix: Trade Y3 R3 Felix\n\n21) wil: M R1 Wil Felix\n\n22) Felix: Move R3 Felix Surplus\n\n23) wil: B R2 G3\n\n24) Felix: D Y1 Felix G2 Opix\n\n25) wil: Build R3 Wil\n\n26) Felix: B Y3 Felix\n\n27) wil: Trade R3 Y3 Wil\n\twil: Not\r\nIn\r\nMy\r\nBack\r\nYard\n\n28) Felix: S Y1 Surplus\nM Y3 Felix Wil\n\tFelix: Ah, I see. But you are the one invading my yard with your pesky little red fly!\n\n29) wil: A Y3 Wil\n\n30) Felix: M Y2 Felix Wil\nC Wil Yellow\n\n31) wil: B R3 Wil\n\n32) Felix: T Y2 G2 Surplus\n\tFelix: Oops. No reason I should have sacked that y1 last turn\n\n33) wil: T R2 Y2 B3\n\n34) Felix: Build R2 Surplus\n\n35) wil: S Y2 B3\nM R1 G3 Surplus\nM R1 Wil Surplus\nC Surplus R\n\n36) Felix: Attack R1 Felix\n\n37) wil: B G1 Wil\n\twil: We had a surplus of small attack ships...we moved them to the surplus system...we did...idk why they are now in the bank\n\n38) Felix: B G1 Felix\n\n39) wil: T G1 Y1 Wil\n\n40) Felix: T G1 B1 Felix\n\n41) wil: M R3 Wil Surplus\n\n42) Felix: Move Y2 Surplus Felix\n\n43) wil: A G2 Surplus\n\twil: Wonder if anything is at the thrift store\n\n44) Felix: Build B1 Felix\n\tFelix: Just one green in stock I&#39;m afraid\n\twil: Just my size.\n\n45) wil: B G1 Wil\n\n46) Felix: Discover B1 Felix G1 Ribald\n\n47) wil: M R2 Y3 Ribald\n\n48) Felix: Build B2 Felix\n\n49) wil: T G2 Y2 Surplus\n\n50) Felix: S Y1 Opix\nM B1 Ribald Wil\n\n51) wil: S Y2 Surplus\nM G3 Wil Felix\nM R3 Surplus Felix\n\n52) Felix: Sacrifice Y2 Felix\nMove B1 Felix Wil\nMove B2 Felix Wil\nCatastrophe Wil Blue\n\tFelix: Capturing that blue would have made my job substantially more difficult, I think.\n\twil: Lol...just steps away\n\n\tFelix: Very, very close. Good game!\n\nHomeworlds Online (SDG# 32218)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.3, Ended: 2017.7.12\nParticipants: belenar (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) belenar: Homeworld R2 B1 G3\n\n3) wil: Build G1 Wil\n\n4) belenar: Build G1 Belenar\n\n5) wil: T G1 B1 Wil\n\n6) belenar: Trade G1 Y1 Belenar\n\n7) wil: B B1 Wil\n\n\nHomeworlds Online (SDG# 32458)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.3, Ended: 2017.7.13\nParticipants: belenar (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) belenar: Homeworld R3 B1 G3\n\tFelix: Hello there :) Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\n4) belenar: Build G1 Belenar\n\n5) Felix: Trade G1 B1 Felix\n\n6) belenar: Trade G3 Y3 Belenar\n\n7) Felix: B B1 Felix\n\n8) belenar: Build G1 Belenar\n\n9) Felix: T B1 Y1 Felix\n\n\nHomeworlds Online (SDG# 32608)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.3, Ended: 2017.7.13\nParticipants: Ausmuh (S), dlwillson (N)\nWinner: Ausmuh\n\n1) dlwillson: H B2 Y3 G3\n\tAusmuh: Hello, Have a fun game! I like the shorter hard time trigger.\n\n2) Ausmuh: Homeworld B3 Y1 G3\n\tdlwillson: Glad you like it! Good luck and have fun!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Ausmuh: Build G1 Ausmuh\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) Ausmuh: Trade G1 B1 Ausmuh\n\n7) dlwillson: B R1 Dlwillson\n\n8) Ausmuh: Build B1 Ausmuh\n\n9) dlwillson: Trade R1 B1 Dlwillson\n\n10) Ausmuh: Discover B1 Ausmuh G2 Zog\n\n11) dlwillson: Discover B1 Dlwillson G1 Field\n\n12) Ausmuh: Build B2 Ausmuh\n\n13) dlwillson: Build R1 Dlwillson\n\n14) Ausmuh: Trade B2 R2 Ausmuh\n\n15) dlwillson: Build G1 Dlwillson\n\n16) Ausmuh: Build B2 Zog\n\n17) dlwillson: Move R1 Dlwillson Field\n\n18) Ausmuh: Trade B2 Y2 Zog\n\n19) dlwillson: B B2 Field\n\n20) Ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Zog\nBuild B3 Zog\nBuild B3 Ausmuh\n\n21) dlwillson: Trade B2 Y2 Field\n\n22) Ausmuh: Sacrifice B2 Zog\nTrade B3 G3 Ausmuh\nTrade B3 Y3 Zog\n\n23) dlwillson: Build B2 Field\n\n24) Ausmuh: Build G1 Ausmuh\n\n25) dlwillson: T B2 G2 Field\n\n26) Ausmuh: Discover Y3 Zog Y1 Almost\n\n27) dlwillson: Discover G2 Field B2 Sky\n\n28) Ausmuh: Trade B1 Y1 Ausmuh\n\n29) dlwillson: B G2 Sky\n\tAusmuh: Two undos of shame!! Sorry about that!\n\n30) Ausmuh: Sacrifice G3 Ausmuh\nBuild Y2 Zog\nBuild Y3 Almost\nBuild G3 Ausmuh\n\n31) dlwillson: D G1 Dlwillson B1 Sea\n\n32) Ausmuh: Move B1 Zog Almost\n\n33) dlwillson: S G2 Sky\nB G2 Dlwillson\nB G3 Sky\n\n34) Ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Almost\nBuild B3 Almost\nBuild G3 Ausmuh\n\n35) dlwillson: Build B3 Field\n\n36) Ausmuh: Sacrifice Y2 Zog\nMove Y3 Almost Dlwillson\nMove B3 Almost Dlwillson\n\tdlwillson: Undo is fine. If it weren&#39;t, I&#39;d have turned it off. :-)\n\n37) dlwillson: A B3 Dlwillson\n\tDraw5PlayAll: (System &quot;almost&quot;) Show-off!\n\n38) Ausmuh: Sacrifice R2 Ausmuh\nAttack G3N Dlwillson\nAttack B3N Dlwillson\n\n39) dlwillson: Move B3 Field Dlwillson\n\n40) Ausmuh: Trade Y3 R3 Almost\n\n41) dlwillson: Sacrifice G3 Sky\nBuild Y2 Field\nBuild Y3 Field\nBuild G3 Dlwillson\n\n42) Ausmuh: Sacrifice R3 Almost\nAttack B3N Dlwillson\nAttack G3N Dlwillson\nAttack R1N Dlwillson\n\n43) dlwillson: Sacrifice R1 Field\nAttack R1 Dlwillson\n\n44) Ausmuh: Sacrifice B2 Almost\nTrade G3 R3 Ausmuh\nTrade Y2 R2 Zog\n\n\tdlwillson: Good game! Well played!\n\tAusmuh: Thanks, you too! I look forward to the next one.\n\nHomeworlds Online (SDG# 32637)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.3, Ended: 2017.7.5\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld B1 R1 G3 *\n\n2) dlwillson: Homeworld Y3 B2 G3\n\tDraw5PlayAll: Aha! Taking a small universe with the first move your own!\r\n(That sentence got messed up but yeah)\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I wonder how the dynamic of this position will change since I&#39;m going first instead of second.\n\tdlwillson: You&#39;ll have a slightly stronger advantage?\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: T G1 R1 Dlwillson\n\tFelix: I wonder. Do you really think the 1-1 star has an advantage? I suppose it&#39;s like the banker in that in can block or invest in larges, and like goldilocks in that it can aggressively take mediums. That certainly seems like an advantage over the fortress. But we shall see!\n\tFelix: I&#39;d be fascinated to see how a game with both players using 1-1 (or 2-2 or 3-3) stars would play out.\n\n7) Felix: Build Y1 Felix\n\tdlwillson: I should&#39;ve started blue and red. Oh well.\n\n8) dlwillson: Build R1 Dlwillson\n\n9) Felix: B Y1 Felix\n\n10) dlwillson: Build R2 Dlwillson\n\n11) Felix: Discover Y1 Felix G2 Opus\n\n12) dlwillson: T R2 Y2 Dlwillson\n\n13) Felix: Move Y1 Felix Dlwillson\n\n14) dlwillson: S Y2 Dlwillson\nM R1 Dlwillson Felix\nM R1 Felix Opus\n\n15) Felix: Build Y2 Felix\n\n16) dlwillson: A Y1 Opus\n\n17) Felix: M Y1 Felix Dlwillson\n\n18) dlwillson: B R2 Dlwillson\n\n19) Felix: Build Y2 Felix\n\n20) dlwillson: Build Y2 Opus\n\n21) Felix: Move Y2 Felix Dlwillson\nCatastrophe Dlwillson Yellow\n\n22) dlwillson: Trade R1 Y1 Dlwillson\n\n23) Felix: Build G1 Felix\n\n24) dlwillson: Build G1 Dlwillson\n\n25) Felix: Trade G1 B1 Felix\n\n26) dlwillson: Sacrifice Y2 Opus\nMove G3 Dlwillson Felix\nMove G1 Dlwillson Felix\n\n27) Felix: Build G1 Felix\nCatastrophe Felix Green\n\n28) dlwillson: Build Y1 Opus\n\n29) Felix: Trade B1 G1 Felix\n\tFelix: Great move!\n\n30) dlwillson: Build Y2 Opus\n\n31) Felix: Build G1 Felix\n\tdlwillson: Hm. What was great about creating that y1? My own genius seems to have eluded me...\n\tFelix: I meant the move before that :P\n\n32) dlwillson: Move Y1 Opus Felix\n\n33) Felix: Trade Y2 R2 Felix\n\n34) dlwillson: Trade Y1 R1 Felix\n\n\tFelix: Well done! I guess I didn&#39;t have such a strong advantage after all :)\n\nHomeworlds Online (SDG# 32459)\nStarted: 2017.7.4, Ended: 2017.9.30\nParticipants: MobyNostromo (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld B3 Y1 G3\n\n2) MobyNostromo: H Y1 B2 G3\n\n3) dragon76n: Build G1 Dragon76n\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) MobyNostromo: B G1 Mobynostromo\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) MobyNostromo: D G1 Mobynostromo Y3 Bigbird\n\n9) dragon76n: Discover Y1 Dragon76n B2 Blutwo\n\n10) MobyNostromo: D G1 Mobynostromo Y3 Tweety\n\n11) dragon76n: Build G1 Dragon76n\n\n12) MobyNostromo: B G2 Mobynostromo\n\n13) dragon76n: Sacrifice G3 Dragon76n\nBuild Y2 Blutwo\nBuild Y2 Blutwo\nBuild Y3 Dragon76n\n\n14) MobyNostromo: D G2 Mobynostromo R3 Hotstuff\n\n15) dragon76n: T Y2 G2 Blutwo\n\n16) MobyNostromo: B G2 Mobynostromo\n\n17) dragon76n: B G3 Blutwo\n\n18) MobyNostromo: T G2 Y2 Mobynostromo\n\n19) dragon76n: M G3 Blutwo Hotstuff\n\n20) MobyNostromo: S G2 Hotstuff\nB G2 Tweety\nB G2 Bigbird\n\n21) dragon76n: Build G3 Dragon76n\n\n22) MobyNostromo: T G3 R3 Mobynostromo\n\n23) dragon76n: Trade Y1 R1 Blutwo\n\n24) MobyNostromo: Discover G1 Bigbird B2 Grover\n\n25) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild Y1 Blutwo\nBuild G3 Blutwo\n\n26) MobyNostromo: D Y2 Mobynostromo R3 Maximillian\n\n27) dragon76n: M G3 Blutwo Maximillian\n\n28) MobyNostromo: M Y2 Maximillian Grover\n\n29) dragon76n: Move Y3 Dragon76n Grover\n\n30) MobyNostromo: Move G1 Tweety Mobynostromo\n\n31) dragon76n: Sacrifice R1 Blutwo\nAttack Y2 Grover\n\n32) MobyNostromo: B R1 Mobynostromo\n\n33) dragon76n: Trade Y2 R2 Grover\n\n34) MobyNostromo: T R1 B1 Mobynostromo\n\n35) dragon76n: Sacrifice G3 Hotstuff\nBuild Y2 Grover\nBuild G3 Blutwo\nBuild R1 Grover\n\n36) MobyNostromo: B B1 Mobynostromo\n\n37) dragon76n: A G1 Grover\n\n38) MobyNostromo: M B1 Mobynostromo Tweety\n\n39) dragon76n: Move G3 Blutwo Bigbird\n\n40) MobyNostromo: S G2 Tweety\nB B1 Tweety\nB B3 Tweety\n\n41) dragon76n: Sacrifice R1 Grover\nAttack G2 Bigbird\n\n42) MobyNostromo: Build G2 Mobynostromo\n\n43) dragon76n: S Y2 Blutwo\nM G2 Blutwo Maximillian\nM Y1 Blutwo Maximillian\n\n44) MobyNostromo: T G2 Y2 Mobynostromo\n\n45) dragon76n: T Y2 B2 Grover\n\n46) MobyNostromo: S Y2 Mobynostromo\nM B1 Tweety Grover\nM B1 Tweety Grover\nC Grover B\n\n47) dragon76n: S G3 Maximillian\nB Y2 Dragon76n\nB Y2 Maximillian\nB Y3 Maximillian\n\n48) MobyNostromo: B G1 Mobynostromo\n\n49) dragon76n: T Y2 B2 Dragon76n\n\n50) MobyNostromo: M G1 Mobynostromo Tweety\n\n51) dragon76n: D B2 Dragon76n Y2 Yeltwo\n\n52) MobyNostromo: B R1 Mobynostromo\n\n53) dragon76n: Move B2 Yeltwo Maximillian\n\n54) MobyNostromo: B R1 Mobynostromo\n\n55) dragon76n: Trade Y2 R2 Maximillian\n\n56) MobyNostromo: D R1 Mobynostromo G3 Miracle\n\n57) dragon76n: Discover G2 Bigbird R1 Redone\n\n58) MobyNostromo: B G2 Mobynostromo\n\n59) dragon76n: Sacrifice G3 Dragon76n\nBuild B1 Maximillian\nBuild Y2 Maximillian\nBuild G3 Dragon76n\n\n60) MobyNostromo: M B3 Tweety Redone\n\n61) dragon76n: Sacrifice Y1 Maximillian\nMove G2 Redone Tweety\n\n62) MobyNostromo: T G2 Y2 Mobynostromo\n\n63) dragon76n: Sacrifice Y2 Maximillian\nMove B2 Maximillian Mobynostromo\nMove B1 Maximillian Mobynostromo\nCatastrophe Mobynostromo Blue\n\n64) MobyNostromo: B G2 Tweety\n\n65) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB Y1 Maximillian\nB Y2 Dragon76n\n\n66) MobyNostromo: S G2 Tweety\nB G2 Tweety\nB B1 Redone\n\n67) dragon76n: Sacrifice Y2 Dragon76n\nMove Y1 Maximillian Mobynostromo\nMove Y3 Maximillian Mobynostromo\nCatastrophe Mobynostromo Yellow\n\n\tdragon76n: Good Game. Thanks for playing.\n\tMobyNostromo: It was fun!\n\nHomeworlds Online (SDG# 32547)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.4, Ended: 2017.7.7\nParticipants: JunodaJuniper (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n\tFelix: Hello! Good luck and have fun. First game?\n\nHomeworlds Online (SDG# 32646)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.4, Ended: 2017.7.7\nParticipants: JunodaJuniper (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 32654)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.5, Ended: 2017.7.8\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld B1 R3 G3\n\n3) wil: B G1 Wil\n\tFelix: Good luck :)\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: Build B1 Wil\n\n8) Felix: Build Y1 Felix\n\n9) wil: Trade B1 Y1 Wil\n\n10) Felix: Discover Y1 Felix Y2 Gold\n\n11) wil: Build B1 Wil\n\n12) Felix: Build Y2 Felix\n\n13) wil: D B1 Wil Y3 Y3\n\tFelix: You didn&#39;t fall for it :(\n\n14) Felix: D Y1 Gold B3 Horcrux\n\n15) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n16) Felix: S G3 Felix\nB Y2 Horcrux\nB Y2 Horcrux\nB Y3 Felix\n\n17) wil: M Y1 Wil Horcrux\nC Horcrux Y\n\n18) Felix: Trade Y1 G1 Felix\n\twil: Oops, I didn&#39;t see what I was supposed to fall for.\n\tFelix: Hmm... well I somehow missed the fact that horcruz was adjacent to your homeworld. Oops.\n\n19) wil: D B1 Y3 G2 G2\n\n20) Felix: Trade Y3 B3 Felix\n\twil: I was confused as to why you moved forward...outlr interface is partially to blame....when things get dicey I set up a physical game to watch\n\n21) wil: B B3 G2\n\tFelix: Yeah... this isn&#39;t going so well.\n\n22) Felix: Discover B3 Felix G2 Gremlin\n\twil: I think I am going to have to make some big mistakes to lose this match.  But the good news is.... I am more than capable of that!  \n\n23) wil: T B3 Y3 Wil\n\n24) Felix: Build Y1 Felix\n\n25) wil: T B3 Y3 G2\n\tFelix: I haven&#39;t seen any yet... bring on the mistakes!\n\n26) Felix: Build G1 Felix\n\n27) wil: T B2 R2 Y3\n\n28) Felix: Build G1 Felix\n\twil: You are making me work...why not just roll over?\n\n29) wil: T Y3 G3 Wil\n\n30) Felix: Discover G1 Felix G2 Kremlin\n\tFelix: I can&#39;t make it too easy for you to be number 1! I must prepare you for the dangers that lie ahead.\n\n31) wil: M R2 Y3 Kremlin\n\twil: Heck, I been kicked off the mountain top before...that doesn&#39;t bother me...\n\tDraw5PlayAll: I am not disinterested in the outcome of this...\n\n32) Felix: Build G3 Felix\n\tFelix: I ain&#39;t skeered.\n\n33) wil: B G3 Wil\n\twil: A star designed for reds\n\n34) Felix: Trade G3 R3 Felix\n\n35) wil: Trade G3 Y3 Wil\n\n36) Felix: Discover G1 Felix B2 Frost\n\n37) wil: B G3 Wil\n\n38) Felix: Build B3 Gremlin\n\tFelix: Ah, ah, ah, ah, stayin&#39; alive, stayin&#39; alive...\n\n39) wil: S G3 Wil\nB G3 Wil\nB R1 Kremlin\nB B3 G2\n\n40) Felix: B G3 Felix\n\n41) wil: Sacrifice Y3 G2\nMove B3 G2 Felix\nMove R2 Kremlin Felix\nMove R1 Kremlin Felix\nCatastrophe Felix R\n\n42) Felix: T G3 R3 Felix\n\n43) wil: S Y3 Wil\nM G3 Wil Y3\nM B2 Y3 Felix\nM B1 G2 Felix\nC Felix B\n\n\tFelix: I knew communism would fail. Well played!\n\twil: I should a been able to shorten your misery.\n\tFelix: I did discover a fountain of hope somewhere in there. Alas. Congrats!\n\nHomeworlds Online (SDG# 32661)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.5, Ended: 2017.8.4\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 R2 G3\n\tdlwillson: GLHF!\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) dlwillson: B G1 Dlwillson\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) dlwillson: B R2 Dlwillson\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) dlwillson: Discover R1 Dlwillson B1 Sea\n\n14) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Sea\nBuild R3 Sea\nBuild R3 Dlwillson\n\n16) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R1 G2 Sea\nCatastrophe Sea Red\n\tFelix: Warships.... warships everywhere!\n\n17) dlwillson: T R3 G3 Dlwillson\n\tDraw5PlayAll: But sir, I fail to understand why someone would spend so much energy building warships if they would just be reduced to rubble the next day.\n\n18) Draw5PlayAll: Build G1 Draw5playall\n\tdlwillson: I think it puts me a click or two ahead, but maybe not...\n\n19) dlwillson: B Y1 Dlwillson\n\n20) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n21) dlwillson: B Y2 Dlwillson\n\n22) Draw5PlayAll: Build Y2 Draw5playall\n\n23) dlwillson: D Y1 Dlwillson B1 Sea\n\n24) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n25) dlwillson: Discover Y1 Dlwillson G1 Field\n\n26) Draw5PlayAll: Move R2 Draw5playall G2\n\n27) dlwillson: M R2 Dlwillson Field\n\n28) Draw5PlayAll: Build R1 G2\n\n29) dlwillson: D R2 Field Y3 Solar\n\n30) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\nPass\n\n31) dlwillson: Build Y3 Field\n\n32) Draw5PlayAll: Move R1 G2 Sea\n\n33) dlwillson: D Y1 Sea G2 Forest\n\n34) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n35) dlwillson: Move R2 Solar Sea\n\n36) Draw5PlayAll: Build R1 G2\n\n37) dlwillson: Attack R1 Sea\n\n38) Draw5PlayAll: Discover R1 G2 B1 B1\n\n39) dlwillson: B Y2 Forest\n\n40) Draw5PlayAll: Build R3 G2\n\n41) dlwillson: Sacrifice Y2 Forest\nMove R1 Sea G2\nMove R2 Sea G2\nCatastrophe G2 R\n\n42) Draw5PlayAll: Discover Y1 G2 G1 G1\n\n43) dlwillson: Sacrifice Y3 Field\nMove Y1 Field Forest\nMove Y1 Forest Draw5playall\nMove Y1 Forest Draw5playall\n\n44) Draw5PlayAll: Attack Y1 Draw5playall\n\n45) dlwillson: S G3 Dlwillson\nB Y2 Draw5playall\nB Y3 Dlwillson\nPass\nC Draw5playall Y\n\n46) Draw5PlayAll: Build Y1 G1\n\n47) dlwillson: T Y2 G2 Dlwillson\n\tdlwillson: Typo, sorry\n\tDraw5PlayAll: I did not see  the build Y3 coming\n\n48) Draw5PlayAll: Build G1 Draw5playall\n\n49) dlwillson: B G1 Dlwillson\n\n50) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n51) dlwillson: M Y3 Dlwillson B1\n\n52) Draw5PlayAll: Build Y2 G2\n\n53) dlwillson: T G2 Y2 Dlwillson\n\n54) Draw5PlayAll: Build Y3 Draw5playall\n\n55) dlwillson: B Y3 Dlwillson\n\n56) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\tDraw5PlayAll: This has been quite a &quot;back and forth&quot; game.\n\n57) dlwillson: T Y3 G3 Dlwillson\n\n58) Draw5PlayAll: Discover Y1 G1 B2 B2\n\tdlwillson: Yeah. My attack&#39;s effects didn&#39;t last long enough. :-)\n\n59) dlwillson: Trade Y3 R3 B1\n\n60) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R2 B1\nBuild R2 B1\nCatastrophe B1 Red\n\n61) dlwillson: B G1 Dlwillson\n\tDraw5PlayAll: Here we go again.\n\n62) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n63) dlwillson: D G1 Dlwillson B1 Sea\n\tdlwillson: I think you&#39;ve got me. I didn&#39;t have quite enough momentum to finish you off while you didn&#39;t have a big, and now I&#39;m way behind economically. We&#39;ll see.\n\n64) Draw5PlayAll: Move Y2 G2 Draw5playall\n\n65) dlwillson: B G2 Sea\n\n66) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 G1\nBuild Y3 Draw5playall\nBuild Y3 B2\n\n67) dlwillson: B Y3 Dlwillson\n\n68) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G1 Dlwillson\nMove Y1 G1 Dlwillson\nCatastrophe Dlwillson Y\n\n69) dlwillson: S G3 Dlwillson\nB G1 Sea\nB G2 Dlwillson\nB G3 Dlwillson\n\n70) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n71) dlwillson: Trade G2 Y2 Dlwillson\n\tDraw5PlayAll: That may come back to haunt me.\n\n72) Draw5PlayAll: Build Y1 G2\n\tdlwillson: Probably not, but maybe. You have a massive material advantage, at present.\n\n73) dlwillson: T G2 Y2 Sea\n\tDraw5PlayAll: But you can just keep factory building... unless...\n\n74) Draw5PlayAll: Move Y1 G2 Draw5playall\n\n75) dlwillson: Discover G1 Sea B2 Sky\n\n76) Draw5PlayAll: Discover Y1 B2 G3 G3\n\n77) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Sky\nB G3 Dlwillson\n\n78) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 B2\nBuild Y3 G3\nBuild Y3 Draw5playall\n\n79) dlwillson: B G3 Sky\n\n80) Draw5PlayAll: Move Y3 G3 Sky\n\n81) dlwillson: T G2 B2 Sky\n\n82) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack B2 Sky\n\n83) dlwillson: Trade G3 R3 Sky\n\n84) Draw5PlayAll: Sacrifice Y2 G2\nMove Y3 Sky Sea\nDiscover B2 Sky G3 G3b\n\n85) dlwillson: B Y2 Dlwillson\n\n86) Draw5PlayAll: Trade Y3 R3 Sea\n\n87) dlwillson: S Y2 Dlwillson\nD G2 Sea Y3 Solar\nD Y2 Sea G2 Forest\n\n88) Draw5PlayAll: Build Y2 G3\n\n89) dlwillson: S G2 Solar\nB Y3 Dlwillson\nB G2 Sky\n\n90) Draw5PlayAll: Build B1 G3b\n\n91) dlwillson: D Y2 Dlwillson R1 Mars\n\n92) Draw5PlayAll: Move Y3 B2 G3b\n\tdlwillson: Short term investments!\n\n93) dlwillson: Sacrifice Y3 Dlwillson\nMove Y2 Mars Forest\nMove Y2 Forest Draw5playall\nMove Y2 Forest Draw5playall\nCatastrophe Draw5playall Y\n\n\tdlwillson: GGTY!\r\nAndy did a video about what he calls the Bluebird Mistake: https://www.youtube.com/watch?v=081STRjOFMw\n\tDraw5PlayAll: HUH???\n\tDraw5PlayAll: I did not realize how much yellow you had and it was hard to trade away without giving you other opportunities.\n\nHomeworlds Online (SDG# 32647)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.8, Ended: 2017.7.21\nParticipants: Felix (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y2 G3\n\n2) Felix: H Y1 G3 B3\n\tAusmuh: Have fun!\n\n3) Ausmuh: Build G1 Ausmuh\n\tFelix: Thanks! Likewise!\n\n4) Felix: Build B1 Felix\n\n5) Ausmuh: Trade G1 Y1 Ausmuh\n\n6) Felix: Trade B1 Y1 Felix\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) Felix: Build Y2 Felix\n\n9) Ausmuh: D Y2 Ausmuh G1 Zzz\n\n10) Felix: Discover Y1 Felix G2 Emerald\n\n11) Ausmuh: Trade Y1 R1 Ausmuh\n\tFelix: Quit making me copy you ;)\n\n12) Felix: Build B1 Felix\n\tAusmuh: Hehe, guess I&#39;ll switch it up a bit. This universe didn&#39;t mess around when it came to space travel! \n\n13) Ausmuh: Build G1 Ausmuh\n\n14) Felix: Trade B1 R1 Felix\n\tFelix: No sir... it&#39;s one mobile universe!\n\n15) Ausmuh: Discover R1 Ausmuh G1 Znutar\n\n16) Felix: Build B1 Felix\n\n17) Ausmuh: Trade G1 B1 Ausmuh\n\n18) Felix: Trade B1 G1 Felix\n\n19) Ausmuh: Build G2 Ausmuh\n\n20) Felix: Discover G1 Felix B2 Azure\n\n21) Ausmuh: Move Y2 Zzz Azure\n\n22) Felix: Build G1 Azure\n\n23) Ausmuh: Sacrifice R1 Znutar\nAttack G1S Azure\n\n24) Felix: Build Y1 Emerald\n\n25) Ausmuh: Build Y3 Azure\n\n26) Felix: Build Y3 Emerald\n\tAusmuh: I live!\n\tAusmuh: I live!\n\tAusmuh: I&#39;m so excited about it I had to double post. -_-&#39;\n\n27) Ausmuh: Trade Y3 R3 Azure\n\tFelix: Haha, welcome back!\n\n28) Felix: Discover Y3 Emerald G1 Esmerelda\n\n29) Ausmuh: Sacrifice G3 Ausmuh\nBuild G2 Azure\nBuild G3 Ausmuh\nBuild Y3 Azure\n\n30) Felix: Build Y3 Esmerelda\n\n31) Ausmuh: Trade G2 R2 Ausmuh\n\n32) Felix: Sacrifice Y1 Emerald\nDiscover G1 Azure B1 Sapphire\n\n33) Ausmuh: Sacrifice Y2 Azure\nMove Y3 Azure Felix\nMove R3 Azure Felix\n\n34) Felix: Attack R3 Felix\n\tFelix: Great move! I think you have me.\n\n35) Ausmuh: Sacrifice R2 Ausmuh\nAttack R3S Felix\nAttack B3S Felix\n\n36) Felix: Sacrifice R1 Felix\nPass\n\tAusmuh: Thanks. I think so too. GG! That&#39;s about the only way I really know how to end a game. If my opp. doesn&#39;t have a 2-pip red and I can sneak 2 large ships in it&#39;s a good day. :)\r\n\r\nCatastrophe planning on the other hand.. what a mess I can make of that!\n\n37) Ausmuh: Attack Y2S Felix\n\tFelix: It&#39;s a great way to win. I usually guard against it, but I just missed it this time! Very well played and well earned victory.\n\tAusmuh: Thanks for the game! See you next time!\n\n\nHomeworlds Online (SDG# 32692)\nStarted: 2017.7.10, Ended: 2017.7.20\nParticipants: velgarath2 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 G2 B3\n\tFelix: Greetings! I have a few games under my belt, but I&#39;d be happy to help you learn the ropes. Let me know if you have any questions, and I&#39;ll try to offer some helpful advice if I think of it\n\n2) velgarath2: Homeworld B1 Y2 G3\n\n3) Felix: B B1 Felix\n\tvelgarath2: Thank you! Let&#39;s see what happens \n\n4) velgarath2: Build G1 Velgarath2\n\n5) Felix: Trade B1 Y1 Felix\n\n6) velgarath2: Discover G1 Velgarath2 B3 Krypton\n\n7) Felix: Build B1 Felix\n\n8) velgarath2: Build G1 Velgarath2\n\n9) Felix: Trade B1 G1 Felix\n\n10) velgarath2: Build G2 Krypton\n\n11) Felix: Discover G1 Felix B1 Vergois\n\n12) velgarath2: Trade G1 Y1 Krypton\n\n13) Felix: Build B1 Felix\n\n14) velgarath2: Move G2 Krypton Vergois\n\n15) Felix: Build B2 Felix\n\n16) velgarath2: Trade G2 B2 Vergois\n\n17) Felix: Trade B2 R2 Felix\n\n18) velgarath2: Trade B2 R2 Vergois\n\n19) Felix: Build B2 Felix\n\n20) velgarath2: Attack G1 Vergois\n\n21) Felix: Discover B2 Felix G1 Outward\n\n22) velgarath2: Sacrifice G3 Velgarath2\nBuild G2 Vergois\nBuild G2 Vergois\nBuild G3 Velgarath2\n\n23) Felix: Trade B3 G3 Felix\n\n24) velgarath2: Build G3 Velgarath2\n\n25) Felix: Sacrifice G3 Felix\nBuild B2 Outward\nBuild B2 Felix\nBuild B3 Felix\n\tFelix: Nice move!\n\tvelgarath2: Thank you! Homeworlds is really tricky and challenging. But very cool!\n\n26) velgarath2: Trade G3 B3 Velgarath2\n\n27) Felix: Trade B3 G3 Felix\n\n28) velgarath2: Sacrifice G3 Velgarath2\nBuild B3 Velgarath2\nBuild G3 Velgarath2\nBuild R1 Vergois\n\tFelix: Yes indeed. There are a lot of things to think about, and it can get a bit overwhelming sometimes!\n\n29) Felix: Trade B2 Y2 Outward\n\n30) velgarath2: Trade G2 Y2 Vergois\n\n31) Felix: Sacrifice G3 Felix\nBuild Y1 Outward\nBuild B2 Outward\nBuild Y3 Felix\n\n32) velgarath2: Sacrifice B3 Velgarath2\nTrade Y1 R1 Krypton\nTrade B3 Y3 Velgarath2\nTrade G1 R1 Velgarath2\n\n33) Felix: Move R2 Felix Outward\n\n34) velgarath2: Move R1 Vergois Felix\n\n35) Felix: Attack R1 Felix\n\n36) velgarath2: Sacrifice Y3 Velgarath2\nMove R1 Krypton Vergois\nMove R1 Vergois Felix\nMove R2 Vergois Felix\nCatastrophe Felix Red\n\n37) Felix: Build B3 Felix\n\n38) velgarath2: Build G1 Vergois\n\n39) Felix: Move B3 Felix Vergois\n\n40) velgarath2: Move G1 Vergois Felix\n\n41) Felix: Sacrifice R2 Outward\nAttack G1 Felix\nAttack Y2 Vergois\n\tFelix: Nice one!\n\n42) velgarath2: Trade G1 Y1 Vergois\n\n43) Felix: Trade B2 R2 Felix\n\n44) velgarath2: Build G1 Velgarath2\n\n45) Felix: Sacrifice R2 Felix\nAttack G2 Vergois\nAttack Y1 Vergois\n\n46) velgarath2: Discover G1 Velgarath2 Y3 Alpha\n\n47) Felix: Sacrifice Y3 Felix\nDiscover G1 Felix G3 Rauros\nDiscover Y1 Vergois G2 Saria\nDiscover B3 Vergois G3 Darunia\n\tvelgarath2: That was a NICE move!!\n\n48) velgarath2: Build R1 Velgarath2\n\n49) Felix: Build Y3 Felix\n\tFelix: Thanks! But I&#39;m not sure it will save me in the end.\n\n50) velgarath2: Discover R1 Velgarath2 Y3 Bravo\n\n51) Felix: Trade Y3 R3 Felix\n\n52) velgarath2: Build R1 Velgarath2\n\tDraw5PlayAll: At this point http://superdupergames.org/?page=archive_play&amp;gid=32692&amp;idx=37 I thought Felix was doomed. I am not sure now.\n\n53) Felix: Build Y3 Felix\n\n54) velgarath2: Move R1 Bravo Saria\n\n55) Felix: Move Y1 Saria Rauros\n\n56) velgarath2: Build R2 Saria\n\tvelgarath2: OMG....this is getting really ugly\n\n57) Felix: Build Y3 Vergois\n\n58) velgarath2: Build R2 Velgarath2\n\tFelix: I&#39;m barely hanging on!\n\n59) Felix: Build B2 Darunia\n\n60) velgarath2: Move R2 Velgarath2 Rauros\n\n61) Felix: Move R3 Felix Rauros\n\n62) velgarath2: Sacrifice R2 Saria\nAttack G1 Rauros\nAttack Y1 Rauros\n\n63) Felix: Attack R2 Rauros\n\n64) velgarath2: Move Y1 Rauros Velgarath2\n\n65) Felix: Attack G1 Rauros\n\n66) velgarath2: Build R2 Saria\n\n67) Felix: Build B3 Darunia\n\n68) velgarath2: Sacrifice G1 Alpha\nBuild Y3 Velgarath2\n\n69) Felix: Sacrifice Y2 Vergois\nMove Y1 Outward Rauros\nMove Y1 Rauros Velgarath2\nCatastrophe Velgarath2 Yellow\n\n70) velgarath2: Build G1 Velgarath2\n\n71) Felix: Sacrifice Y3 Vergois\nMove B3 Darunia Velgarath2\nMove B3 Darunia Velgarath2\nMove B2 Darunia Velgarath2\nCatastrophe Velgarath2 Blue\n\n\tFelix: Good game! I hope you had fun and learned some things.\n\tvelgarath2: That was really a very nice game. Thank you for playing with me! \n\nHomeworlds Online (SDG# 32698)\nStarted: 2017.7.10, Ended: 2017.9.23\nParticipants: ratpfink (S), Joe_Hill (N)\nWinner: Joe_Hill\n\n1) Joe_Hill: Homeworld B2 R1 G3\n\n2) ratpfink: Homeworld Y2 B1 G3\n\n3) Joe_Hill: Build G1 Joe_hill\n\n4) ratpfink: Build G1 Ratpfink\n\n5) Joe_Hill: Trade G1 Y1 Joe_hill\n\n6) ratpfink: Discover G1 Ratpfink Y3 Cat\n\n7) Joe_Hill: Build G1 Joe_hill\n\n8) ratpfink: Build G1 Cat\n\n9) Joe_Hill: Discover G1 Joe_hill B3 Verge\n\n10) ratpfink: Build G2 Ratpfink\n\n\n11) Joe_Hill: Build G2 Verge\n\n12) ratpfink: Trade G2 R2 Ratpfink\n\n13) Joe_Hill: Trade G2 R2 Verge\n\n14) ratpfink: Build G2 Ratpfink\n\n15) Joe_Hill: Build G2 Verge\n\n16) ratpfink: Trade G2 Y2 Ratpfink\n\n17) Joe_Hill: Build Y1 Joe_hill\n\n18) ratpfink: Build Y1 Ratpfink\n\n19) Joe_Hill: Move Y1 Joe_hill Verge\n\n20) ratpfink: Move Y1 Ratpfink Cat\n\n21) Joe_Hill: Discover G1 Verge Y2 Merge\n\n22) ratpfink: Build G2 Ratpfink\n\n23) Joe_Hill: Build G2 Merge\n\n24) ratpfink: Build R1 Ratpfink\n\n25) Joe_Hill: Build Y3 Verge\n\n26) ratpfink: Sacrifice Y2 Ratpfink\nMove G1 Cat Merge\nMove G1 Cat Merge\nCatastrophe Merge G\n\n27) Joe_Hill: Trade Y3 R3 Verge\n\n28) ratpfink: Move R1 Ratpfink Verge\n\n29) Joe_Hill: Move R3 Verge Joe_hill\n\n30) ratpfink: Attack Y1 Verge\n\n31) Joe_Hill: Attack R1 Verge\n\n32) ratpfink: Discover Y1 Verge R1 Bat\n\n33) Joe_Hill: Build G1 Verge\n\n34) ratpfink: Build R2 Ratpfink\n\n35) Joe_Hill: Trade G3 Y3 Joe_hill\n\n36) ratpfink: Trade G2 B2 Ratpfink\n\n37) Joe_Hill: Trade G2 Y2 Verge\n\n38) ratpfink: Move R2 Ratpfink Cat\n\n39) Joe_Hill: Move R2 Verge Bat\n\n40) ratpfink: Discover Y1 Bat G2 Worm\n\n41) Joe_Hill: Build R3 Verge\n\n42) ratpfink: Build R3 Ratpfink\n\n43) Joe_Hill: Move R3 Joe_hill Cat\n\n44) ratpfink: Move R2 Cat Joe_hill\n\n45) Joe_Hill: Attack R2 Joe_hill\n\n46) ratpfink: Move Y1 Worm Cat\n\n47) Joe_Hill: T Y1 G1 Joe_hill\n\n48) ratpfink: Build G1 Ratpfink\n\n49) Joe_Hill: Move R1 Verge Ratpfink\n\n50) ratpfink: Sacrifice G1 Ratpfink\nBuild Y1 Cat\nCatastrophe Cat Y\n\n51) Joe_Hill: Build Y1 Joe_hill\n\n52) ratpfink: Discover R2 Ratpfink Y3 Wampa\n\n53) Joe_Hill: Build R3 Verge\n\n54) ratpfink: Attack R1 Ratpfink\n\n55) Joe_Hill: Sacrifice Y2 Verge\nMove R3 Verge Ratpfink\nMove R3 Verge Ratpfink\nCatastrophe Ratpfink Red\n\n56) ratpfink: Trade B2 Y2 Ratpfink\n\n57) Joe_Hill: Move Y1 Joe_hill Verge\n\n58) ratpfink: Build G1 Ratpfink\n\n59) Joe_Hill: Build G2 Verge\n\n60) ratpfink: Move G1 Ratpfink Wampa\n\n61) Joe_Hill: Trade G1 R1 Verge\n\n62) ratpfink: Build R3 Wampa\n\n63) Joe_Hill: Build R3 Verge\n\n64) ratpfink: Trade G3 R3 Ratpfink\n\n65) Joe_Hill: Build Y1 Verge\n\n66) ratpfink: Build G1 Wampa\n\n67) Joe_Hill: Move Y1 Verge Bat\n\n68) ratpfink: Sacrifice Y2 Ratpfink\nMove R3 Wampa Joe_hill\nMove R2 Wampa Joe_hill\nCatastrophe Joe_hill R\n\n69) Joe_Hill: Build G2 Joe_hill\n\n70) ratpfink: Move G1 Wampa Ratpfink\n\n71) Joe_Hill: M R2 Bat Wampa\n\n72) ratpfink: Move G1 Wampa Joe_hill\n\n73) Joe_Hill: Trade G1 R1 Joe_hill\n\n74) ratpfink: Build G1 Joe_hill\n\n75) Joe_Hill: Move R2 Wampa Joe_hill\n\n76) ratpfink: Build G2 Joe_hill\n\n77) Joe_Hill: Move Y1 Bat Joe_hill\nCatastrophe Joe_hill G\n\tratpfink: build g2 Joe_Hill\n\n78) ratpfink: Build R1 Ratpfink\n\n79) Joe_Hill: Trade Y1 G1 Joe_hill\n\n80) ratpfink: Discover R1 Ratpfink G3 Clown\n\n81) Joe_Hill: Build R2 Verge\n\n82) ratpfink: Build G1 Ratpfink\n\n83) Joe_Hill: Build G2 Joe_hill\n\n84) ratpfink: Discover G1 Ratpfink G3 Down\n\n85) Joe_Hill: Move R2 Joe_hill Down\n\n86) ratpfink: Sacrifice G1 Down\nBuild R2 Ratpfink\n\n87) Joe_Hill: S Y3 Joe_hill\nM R1 Verge Ratpfink\nM R2 Verge Ratpfink\nPass\nC Ratpfink R\n\n\nHomeworlds Online (SDG# 32619)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.10, Ended: 2017.7.26\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) wil: Build G1 Wil\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\twil: lol...so don&#39;t use any of your games in the tv shows eh?   Not even if we change the names to protect the guilty?\n\n5) wil: Trade G1 B1 Wil\n\tDraw5PlayAll: TV??\n\twil: looney tv\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: HWtv...having conversations continue in closed games is a pain...need to move them to current games.\n\n7) wil: Build B1 Wil\n\n8) Draw5PlayAll: Build R1 Draw5playall\n\twil: a race huh?\n\n9) wil: B G1 Wil\n\n10) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n11) wil: T G1 Y1 Wil\n\n12) Draw5PlayAll: Build R1 Draw5playall\n\n13) wil: D B1 Wil Y3 Y3\n\n14) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n15) wil: B B2 Wil\n\n16) Draw5PlayAll: Build R2 G2\n\n17) wil: D B1 Wil Y3 Why3\n\n18) Draw5PlayAll: Move Y1 Draw5playall G2\n\n19) wil: S G3 Wil\nB B2 Why3\nB B3 Y3\nB B3 Wil\n\n20) Draw5PlayAll: Move R2 G2 Why3\n\n21) wil: S B2 Why3\nT B3 G3 Wil\nT B3 R3 Y3\n\n22) Draw5PlayAll: Attack B1 Why3\n\n23) wil: Discover B2 Wil Y3 Ythree\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 G2\nBuild R2 Why3\nBuild R3 Draw5playall\n\n25) wil: S G3 Wil\nB B2 Y3\nB B3 Ythree\nB B3 Y3\n\n26) Draw5PlayAll: Trade R2 G2 Why3\n\n27) wil: S B2 Y3\nT B3 G3 Y3\nT B2 R2 Ythree\n\n28) Draw5PlayAll: Move R2 Why3 Wil\n\n29) wil: M G3 Y3 Wil\n\n30) Draw5PlayAll: Trade R1 G1 Draw5playall\n\n31) wil: A R2 Wil\n\n32) Draw5PlayAll: Build R1 Draw5playall\n\n33) wil: T R2 B2 Wil\n\twil: Thank you for the donation of your warship, we may convert it for use in more peaceful missions\n\n34) Draw5PlayAll: Build B2 Why3\n\tDraw5PlayAll: My plan would have worked if there were more reds in the bank!\n\twil: Lol...  The dog would have caught the cat if he didn&#39;t stop.at the fire hydrant...\r\n\n\twil: When planning a dinner or a battle...checking resources should happen before you light the fire...\n\n35) wil: Sacrifice G3 Wil\nBuild R2 Y3\nBuild B3 Y3\nBuild B3 Ythree\n\twil: Another contemplation at that stage is...don&#39;t take.out half the star unless you have a plan to take out the other half...  Ya gotta watch access as the universe changes more worm holes open up.\n\n36) Draw5PlayAll: Move B1 Why3 Wil\n\n37) wil: M R2 Y3 Wil\n\n38) Draw5PlayAll: Move B2 Why3 Wil\nCatastrophe Wil Blue\n\n39) wil: Move B3 Y3 Wil\n\n40) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n41) wil: Move B3 Ythree G2\n\n42) Draw5PlayAll: Move R2 G2 Why3\n\n43) wil: S R2 Wil\nA R1 G2\nA Y1 G2\n\n44) Draw5PlayAll: Build Y2 Draw5playall\n\n45) wil: M B3 G2 Why3\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover R2 Why3 Y2 Y2\nDiscover G2 Why3 Y2 Y2b\n\n47) wil: Build Y2 G2\n\n48) Draw5PlayAll: Sacrifice G2 Y2b\nBuild Y2 Draw5playall\nBuild R1 Y2\n\tDraw5PlayAll: This reminds me of the game Realm. Particularly the Dispersal plays.\n\n49) wil: B R2 G2\n\n50) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n51) wil: Trade B3 R3 Why3\n\n52) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n53) wil: M R2 Ythree B2\n\twil: I don&#39;t know the game realm...and dispersal? like catastrophes?\r\n\n\n54) Draw5PlayAll: Sacrifice G1 B2\nBuild G1 Draw5playall\n\n55) wil: T B3 G3 Ythree\n\n56) Draw5PlayAll: Discover G1 Draw5playall B2 B2b\n\tDraw5PlayAll: Really? I put my smallest explorer on an innocent system, and you have to scare it off?\n\n57) wil: S G3 Ythree\nB B1 Y3\nB B2 Y3\nB Y3 Wil\n\twil: We received a transmission, the ship wished to defect... You should know you just brought a traitor back home.\n\tDraw5PlayAll: I decommissioned the captain after a court martial. Now the ship is run by loyal members only.\n\n58) Draw5PlayAll: Build G1 B2b\n\n59) wil: M R3 Y3 B2b\n\n60) Draw5PlayAll: Build G1 Draw5playall\n\n61) wil: A G1 B2b\n\twil: Is this a better time for a visit?\n\n62) Draw5PlayAll: Build G2 B2b\n\n63) wil: Trade B2 G2 Y3\n\n64) Draw5PlayAll: Discover G1 Draw5playall B2 B2c\n\n65) wil: Sacrifice G2 Y3\nBuild B3 Wil\nBuild B3 Y3\n\n66) Draw5PlayAll: Build G2 B2c\n\n67) wil: Sacrifice Y2 G2\nMove R1 G2 Draw5playall\nMove R2 B2 Draw5playall\n\n68) Draw5PlayAll: Build G3 Draw5playall\n\n69) wil: M R2 G2 Draw5playall\nC Draw5playall R\n\twil: been dawdling too long, time to move in...\n\twil: I was working towards building the doomsday machine, but it appears the modified version will work fine.\n\twil: but we like what you&#39;ve done with the place...we just have a little remodeling planned.\n\n70) Draw5PlayAll: Trade G2 R2 B2c\n\n71) wil: S Y3 Wil\nM B1 Y3 Draw5playall\nM B1 Y3 Draw5playall\nM B3 Y3 Draw5playall\nC Draw5playall B\n\n\twil: I surely could have done that more efficiently... Gg\n\nHomeworlds Online (SDG# 32625)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.10, Ended: 2017.7.17\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 R1 Felix\n\twil: Lez playz\n\n7) wil: B R2 Wil\n\n8) Felix: Build R2 Felix\n\n9) wil: T R1 Y1 Wil\n\n10) Felix: Trade R2 Y2 Felix\n\n11) wil: Build Y1 Wil\n\n12) Felix: Build G1 Felix\n\n13) wil: D Y1 Wil G3 G3\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: B Y1 G3\n\n16) Felix: Discover Y2 Felix G1 Piece\n\n17) wil: S G3 Wil\nB Y2 G3\nB Y3 Wil\nB Y3 Wil\n\n18) Felix: Build Y3 Piece\n\n19) wil: S Y2 G3\nM Y1 G3 Piece\nM Y1 G3 Piece\nC Piece Y\n\n20) Felix: Build B1 Felix\n\tFelix: Niiiiice\n\n21) wil: T Y3 G3 Wil\n\n22) Felix: Discover B1 Felix G1 Preston\n\twil: Yeah, two worthwhile sacrifices.\n\n23) wil: B Y1 Wil\n\n24) Felix: Build B1 Preston\n\n25) wil: D Y3 Wil G3 G3\n\n26) Felix: Trade B1 Y1 Preston\n\n27) wil: D Y1 Wil B3 B3\n\n28) Felix: Build B1 Preston\n\n29) wil: S G3 Wil\nB Y2 G3\nB Y2 B3\nB Y3 Wil\n\n30) Felix: Discover B1 Preston Y3 Brink\n\twil: Deja vu\n\n31) wil: M Y2 G3 Preston\n\n32) Felix: Sacrifice G3 Felix\nBuild B2 Brink\nBuild B2 Brink\nBuild B3 Felix\n\n33) wil: S R2 Wil\nA Y1 Preston\nA B1 Preston\n\n34) Felix: Sacrifice B1 Brink\nTrade B3 G3 Felix\n\twil: Deja blue\n\n35) wil: T Y3 G3 Wil\n\tFelix: And no yellows left for me!\n\n36) Felix: Trade B2 G2 Brink\n\n37) wil: B Y3 Preston\n\n38) Felix: Move B2 Brink Preston\n\n39) wil: T Y3 R3 Preston\n\n\tFelix: Not much point playing this out. Well played!\n\twil: Idk how many times I&#39;ve won (or lost) on both sides of this situation due to the leader missing something or making a bad move and capitalizing....  I almost always hang out..\n\twil: Idk how many times I&#39;ve won (or lost) on both sides of this situation due to the leader missing something or making a bad move and capitalizing....  I almost always hang out..\n\twil: But it can get confusing with a number of.games with the same player...\n\nHomeworlds Online (SDG# 32640)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.10, Ended: 2017.7.15\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B1 R3 G3\n\n2) wil: H Y2 B2 G3 *\n\n3) dlwillson: B G1 Dlwillson\n\twil: The microverse\n\twil: And instafreeze with ts52\n\n4) wil: B G1 Wil\n\tdlwillson: What do you mean?\n\twil: I just got into these two games playing the strange second responses...\n\twil: I just got into these two games playing the strange second responses...\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: Unconventional.... Currently\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: Move Y1 Dlwillson Wil\nCatastrophe Wil Y\n\n10) wil: B G1 Wil\n\n11) dlwillson: Build G1 Dlwillson\n\twil: Lol...forgot what was going on between games\n\tdlwillson: I was going to call it out, but then I realized that *you* set up the micro-verse. :-)\n\n12) wil: T G3 R3 Wil\n\n13) dlwillson: Trade G1 R1 Dlwillson\n\twil: Oh no worries...  I enjoy losing to my own stupid mistakes... I am working at convincing myself that someday I&#39;ll quit making them.\n\n14) wil: B G1 Wil\n\n15) dlwillson: B G1 Dlwillson\n\n16) wil: T G1 Y1 Wil\n\n17) dlwillson: T G1 B1 Dlwillson\n\n18) wil: B G1 Wil\n\n19) dlwillson: B B1 Dlwillson\n\n20) wil: Discover G1 Wil B3 B3\n\n21) dlwillson: D B1 Dlwillson G2 Field\n\twil: yeah this one is over\n\n22) wil: B G1 Wil\n\tdlwillson: It&#39;s going to take a few more moves to get it done, though.\n\n23) dlwillson: S G3 Dlwillson\nB B2 Field\nB B2 Field\nB B3 Dlwillson\n\n24) wil: B G2 B3\n\n25) dlwillson: M B1 Dlwillson Wil\n\twil: Just wanna watch my world collapse\n\n26) wil: Attack B1 Wil\n\n27) dlwillson: M B3 Dlwillson Wil\n\n28) wil: A B3 Wil\n\n29) dlwillson: T B2 Y2 Field\n\twil: What am I missing?\n\twil: Did you just slip?\n\tdlwillson: LOL! Yes!\n\n30) wil: M B3 Wil Dlwillson\n\twil: Lol...that will still work.\n\twil: Or maybe it won&#39;t.\n\n\tdlwillson: Hahaha! Good game! Sheesh!\r\n/me slaps his forehead\n\twil: Yes, you let me free!\n\nHomeworlds Online (SDG# 32642)\nStarted: 2017.7.10, Ended: 2017.9.22\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) wil: H Y3 B2 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) wil: B G1 Wil\n\n5) MobyNostromo: T Y1 G1 Mobynostromo\n\n6) wil: T G1 B1 Wil\n\n7) MobyNostromo: B G1 Mobynostromo\n\n8) wil: B B1 Wil\n\n9) MobyNostromo: D G1 Mobynostromo Y3 Azo\n\n10) wil: D B1 Wil Y1 Y1\n\n11) MobyNostromo: B G1 Mobynostromo\n\n12) wil: S G3 Wil\nB B2 Y1\nB B2 Y1\nB B3 Wil\n\n13) MobyNostromo: B G2 Azo\n\n14) wil: S B2 Y1\nT B2 R2 Y1\nT B3 G3 Wil\n\n15) MobyNostromo: D G2 Azo B2 Thalo\n\n16) wil: S G3 Wil\nB B2 Y1\nB B3 Y1\nB B3 Wil\n\n17) MobyNostromo: B Y1 Mobynostromo\n\n18) wil: Move B3 Y1 Azo\n\n19) MobyNostromo: Trade G1 R1 Mobynostromo\n\n20) wil: T B3 G3 Wil\n\n21) MobyNostromo: B G1 Thalo\n\n22) wil: S G3 Wil\nB B3 Wil\nB B3 Azo\nB R1 Y1\n\n23) MobyNostromo: B G2 Azo\n\n24) wil: S B2 Y1\nT B3 G3 Wil\nT B3 R3 Azo\n\n25) MobyNostromo: D G2 Azo Y2 Nickel\n\n26) wil: S G3 Wil\nB B2 Azo\nB B3 Y1\nB B3 Wil\n\n27) MobyNostromo: B G3 Nickel\n\n28) wil: S B2 Azo\nT B3 G3 Wil\nT B3 G3 Y1\n\n29) MobyNostromo: T G2 B2 Thalo\n\n30) wil: A G1 Azo\n\n31) MobyNostromo: D Y1 Mobynostromo B3 Cobalt\n\n32) wil: S G3 Y1\nB B3 Azo\nB G2 Azo\nB G3 Wil\n\n33) MobyNostromo: B Y1 Mobynostromo\n\n34) wil: Trade G2 Y2 Azo\n\n35) MobyNostromo: S Y3 Mobynostromo\nM Y1 Cobalt Thalo\nM Y1 Thalo Azo\nM Y1 Mobynostromo Azo\nC Azo Y\n\n36) wil: S G3 Wil\nB B3 Y1\nB B3 Wil\nB B3 Y1\n\n37) MobyNostromo: S G3 Nickel\nB G1 Nickel\nB G2 Thalo\nB G3 Mobynostromo\n\n38) wil: B G3 Wil\n\n39) MobyNostromo: T G2 Y2 Thalo\n\n40) wil: S B3 Wil\nT G3 R3 Wil\nT B3 G3 Y1\nT B3 Y3 Y1\n\n41) MobyNostromo: D B2 Thalo Y1 Arylide\n\n42) wil: B B3 Y1\n\n43) MobyNostromo: Trade G1 Y1 Mobynostromo\n\n44) wil: B B3 Y1\n\n45) MobyNostromo: B Y2 Mobynostromo\n\n46) wil: M B3 Y1 Thalo\n\n47) MobyNostromo: D Y1 Mobynostromo Y3 Oxide\n\n48) wil: B B3 Y1\n\n49) MobyNostromo: S Y2 Mobynostromo\nM Y1 Oxide Y1\nM Y2 Thalo Y1\nC Y1 Y\n\n50) wil: B R1 Wil\n\n51) MobyNostromo: T G1 Y1 Thalo\n\n52) wil: S R1 Wil\nA Y1 Thalo\n\n53) MobyNostromo: B R1 Mobynostromo\n\n54) wil: M B3 Thalo Arylide\n\n55) MobyNostromo: T R1 Y1 Mobynostromo\n\n56) wil: B R1 Wil\n\n57) MobyNostromo: B Y2 Mobynostromo\n\n58) wil: S R1 Wil\nA B2 Arylide\n\n59) MobyNostromo: B R1 Mobynostromo\n\n60) wil: D B2 Arylide G3 G3\n\n61) MobyNostromo: D R1 Mobynostromo Y3 Vanadate\n\n62) wil: T B2 Y2 G3\n\n63) MobyNostromo: T Y1 B1 Mobynostromo\n\n64) wil: B G1 Wil\n\n65) MobyNostromo: M B1 Mobynostromo Vanadate\n\n66) wil: M B3 Arylide G3\n\n67) MobyNostromo: T R1 G1 Vanadate\n\n68) wil: D B1 Wil Y1 Y1\n\n69) MobyNostromo: B B2 Vanadate\n\n70) wil: B B3 G3\n\n71) MobyNostromo: S G3 Mobynostromo\nB G2 Vanadate\nB G3 Vanadate\nB R1 Mobynostromo\n\n72) wil: S G3 Wil\nB G3 Wil\nB B3 Y1\nB R1 Wil\n\n73) MobyNostromo: M G3 Vanadate Mobynostromo\n\n74) wil: Sacrifice G3 Wil\nBuild Y1 Thalo\nBuild Y3 G3\nBuild G3 Wil\n\n75) MobyNostromo: M R1 Mobynostromo Vanadate\n\n76) wil: S Y2 G3\nM Y3 G3 Mobynostromo\nM B3 G3 Mobynostromo\n\n77) MobyNostromo: A Y3 Mobynostromo\n\n78) wil: S R3 Wil\nA G3 Mobynostromo\nA Y3 Mobynostromo\nA Y2 Mobynostromo\n\n79) MobyNostromo: T B2 R2 Vanadate\n\n80) wil: S R1 Wil\nA R1 Mobynostromo\n\n\twil: It was a hostile takeover...we evidently like your world better than our own\n\tMobyNostromo: It seems that way...\n\nHomeworlds Online (SDG# 32657)\nStarted: 2017.7.10, Ended: 2017.7.21\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) wil: H G2 B1 B3 *\n\n3) ts52: Build G1 Ts52\n\twil: The instafreeze\n\twil: And microverse with dlwillson\n\n4) wil: Build B1 Wil\n\tts52: interesting, sorry for the delay\n\twil: no worries\r\n\n\n5) ts52: Build G1 Ts52\n\n6) wil: T B3 Y3 Wil\n\n7) ts52: Discover G1 Ts52 B2 Grover\n\twil: How was camping?\n\n8) wil: B B2 Wil\n\tts52: Not the greatest. Kind of cold, and damp, and the lake was closed to swimming because of bacteria :( Still had fun though. \n\n9) ts52: Build G1 Grover\n\n10) wil: D B1 Wil G3 G3\n\n11) ts52: Build G2 Ts52\n\n12) wil: B B2 G3\n\n13) ts52: Build G2 Grover\n\twil: Last trip I went on 20% of the campground got noro....I was unscathed, but the horror stories!  Last year I was over a month in tents..wunderful\n\tts52: Glad you managed to escape unscathed. We only get to take 2 short camping trips a year, but we make the most of them.\n\n14) wil: B B3 Wil\n\n15) ts52: Trade G3 Y3 Ts52\n\n16) wil: T B3 G3 Wil\n\twil: You go camping to the same place or different parks?  Car camping, RVing, or backpackin?\n\n17) ts52: Build G3 Ts52\n\tts52: So far we always go the same place, but they&#39;ve had so many problems with cyanobacteria, we may have to find some new places. Basically car camping, but the place we go you have to haul your gear away from the parking area, so you don&#39;t hear cars coming and going from your site. We have a &#39;10 person&#39; tent for the 4 of us. :D\n\n18) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB Y1 Wil\n\twil: Tents and inflatable boats, you.always divide by two for the real number... \n\n19) ts52: Trade G3 B3 Ts52\n\twil: This is the deal now...the kids get.their own bedrooms...\n\tts52: Yeah, always divide by 2. Haven&#39;t gotten into inflatable boats yet, but I can see it would be the same. How old are your kids?\n\n20) wil: S B2 G3\nT B3 G3 G3\nT B3 G3 Wil\n\twil: https://o7fe62guj6g73vlj30xpogpm-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/MIH0774And8more-hdr2233-Edit-1024x684.jpg\n\twil: https://o7fe62guj6g73vlj30xpogpm-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/MIH0774And8more-hdr2233-Edit-1024x684.jpg\n\twil: Lol,.mine just turned 24...awesome campers...by the time they were in middle.school... All I did was drive up. And then tell them I was gonna go pay, when I got.back the tent and kitchen was set up...\n\n21) ts52: Discover G2 Ts52 Y2 Bigbird\n\tts52: That&#39;s awesome. Great picture too. Mine are 9 and 11, so not quite ready to set up without me yet.\n\tts52: Also, nice play with the double trade.\n\n22) wil: Sacrifice G3 G3\nBuild B2 Wil\nBuild B3 G3\nBuild B3 G3\n\twil: lol...that is not my tent!!   that is what happens when you jump back and forth between devices...that was the temple 2016 burning man...I was camped there for 12 days last year...\n\n23) ts52: Build G3 Ts52\n\twil: This one, three tents attach to a central.popup. and there is an internal tent.for.that too...https://www.amazon.com/gp/aw/d/B01IT4SVIG/ref=mp_s_a_1_9?ie=UTF8&amp;qid=1500407761&amp;sr=8-9&amp;pi=AC_SX236_SY340_FMwebp_QL65&amp;keywords=ozark+trail+canopy+tent\n\tDraw5PlayAll: All of wills ships are aligned on the left in my view.\n\tts52: That looks like a pretty cool setup.\n\n24) wil: Trade B3 R3 G3\n\twil: I first saw it camping in NC near tennesee in a rainforest...I chuckled...those flys aren&#39;t going to help...it rained/poured every day for at least an hour..sometimes 8..sometimes all day... over two weeks and not a problem...so I bought my own...roll out a tarp and oriental rug and we is glamping\n\n25) ts52: Trade G3 R3 Ts52\n\n26) wil: Build B3 G3\n\n27) ts52: Build G3 Ts52\n\n28) wil: S Y1 Wil\nM R3 G3 Grover\n\tts52: That&#39;s pretty awesome. I&#39;ll have to keep it in mind when my current tent finally falls apart.\n\n29) ts52: Sacrifice Y3 Ts52\nMove B3 Ts52 Grover\nMove B3 Grover G3\nMove B3 G3 Wil\nCatastrophe Wil Blue\n\tDraw5PlayAll: ts52&#39;s homeworld fleet... especially if he moves the g1 out.\n\twil: he may just do that to catastrophe the greens I am about to accumulate...\n\n30) wil: A G2 Grover\n\n31) ts52: Move G1 Ts52 Wil\n\n32) wil: S B3 G3\nT G3 R3 Wil\nT B3 G3 G3\nT B1 Y1 G3\n\n33) ts52: Sacrifice G1 Grover\nBuild G1 Wil\n\n34) wil: Sacrifice Y3 Wil\nMove R3 Wil Ts52\nMove R3 Grover Ts52\nMove G3 G3 Wil\nCatastrophe Wil G\n\twil: blunders r us!  good game...  I like to lose these and save my luck for the ladder!!\n\twil: Keeps my points down so folks missunderstimate me..\n\tts52: Indeed, good game! I look forward to our next one.\n\n\nHomeworlds Online (SDG# 32713)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.11, Ended: 2017.7.20\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R2 B2 G3 *\n\n2) Felix: Homeworld Y2 B3 G3\n\tdlwillson: Strange that the engine forces confirmation for this, while being completely indifferent to forgone catastrophes.\n\tFelix: Odd indeed. I like the experimentation! You&#39;ve presented me with a very interesting choice...\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Felix: Build G1 Felix\n\tdlwillson: I wonder if b1 r1 would be strong or weak, in the end? I wonder if a yellow or blue starting ship would work well. Yellow seems like it would, but then you&#39;d *have* to have a green star. Yuck. I&#39;m not sure *why* it&#39;s yuck, but yuck.\n\tFelix: I do like the idea of starting with blue or yellow, but I can&#39;t stand having a green star! It just feels like a lot of toil to try and set up a factory. I do it sometimes to handicap myself against new players; but I really don&#39;t like it. I thought about using a 1-1 against this, but I kind of want to see how the 2-2 works against a fortress.\n\tFelix: In theory, 2-2 may be the strongest starting position, since it lets you block larges and move out to smalls if necessary. But it also forces a small or micro universe, which certainly has quirks. It&#39;s a totally different game when there isn&#39;t time to build up your fleet.\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Felix: Trade G1 Y1 Felix\n\tdlwillson: Could build the factory in another system. It&#39;s slower, but it could work.\n\tDraw5PlayAll: But if you go FIRST with the 2-2 then you have a tempo more. I like the blue-red stars since I can safely build yellow ships in the homeworld, and with a yellow star that gets risky. Colonies are hard to come by so I like to keep yellows at home.\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) Felix: Build Y2 Felix\n\n9) dlwillson: D Y1 Dlwillson B1 Sea\n\n10) Felix: Discover Y1 Felix G1 Out\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Build G1 Felix\n\n13) dlwillson: Discover G1 Dlwillson Y3 Solar\n\n14) Felix: Discover G1 Felix B1 Oat\n\n15) dlwillson: B G2 Dlwillson\n\n16) Felix: Build G2 Felix\n\n17) dlwillson: Build G2 Solar\n\n18) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Oat\nBuild Y2 Out\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n20) Felix: Sacrifice Y2 Felix\nMove G1 Oat Dlwillson\nMove G3 Oat Dlwillson\n\n21) dlwillson: Discover Y1 Dlwillson B1 Sky\nCatastrophe Dlwillson G\n\tFelix: Oh boy. This is ill conceived.\n\tDraw5PlayAll: Unusual move.\n\n22) Felix: Discover Y1 Out B3 Aegis\n\tdlwillson: I&#39;m not sure ... what was supposed to happen?\n\tFelix: Oh, pretty much what just happened. I just thought it would be fun to force you to do the catastrophe instead. I just meant that attacking this soon is ill conceived.\n\n23) dlwillson: M G1 Solar Dlwillson\n\n24) Felix: Move Y1 Aegis Dlwillson\n\n25) dlwillson: Attack Y1 Dlwillson\n\n26) Felix: Build Y2 Out\n\n27) dlwillson: T Y1 G1 Sea\n\n28) Felix: Move Y2 Out Dlwillson\n\n29) dlwillson: Sacrifice Y3 Sea\nMove G2 Solar Sea\nMove G2 Sea Felix\nMove G1 Sea Felix\nCatastrophe Felix G\n\tdlwillson: Sneak, sneak, sneak... KABOOOOM!!!\n\tFelix: Wow, nicely done. I wasn&#39;t expecting that. Rookie mistake! I have not been on my game over the last few weeks. Not enough coffee? Well played!\n\n\nHomeworlds Online (SDG# 32719)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.11, Ended: 2017.7.21\nParticipants: Jaybones (S), Eraelan (N)\nWinner: Jaybones\n\n1) Eraelan: Homeworld B3 G2 Y3\n\tJaybones: Hi there :) I&#39;m completely new to Homeworlds too! Excited to finally get a game in. Good luck!\n\n2) Jaybones: Homeworld R3 B1 G3\n\tEraelan: I&#39;m looking forward to playing!  Good luck to you as well!\n\n3) Eraelan: Build Y1 Eraelan\n\n4) Jaybones: Build G1 Jaybones\n\tEraelan: Boy...getting a hang of these commands certainly takes some time.\n\n5) Eraelan: Discover Y3 Eraelan G1 Callup\n\n6) Jaybones: Build G1 Jaybones\n\n7) Eraelan: Build Y1 Eraelan\n\tJaybones: Tell me about it! Haha getting there... I think?!\n\n8) Jaybones: Trade G1 Y1 Jaybones\n\n9) Eraelan: Move Y1 Eraelan Callup\n\n10) Jaybones: Discover Y1 Jaybones G2 Melon\n\n11) Eraelan: Build Y2 Eraelan\n\n12) Jaybones: Build Y2 Melon\n\n13) Eraelan: Trade Y1 B1 Eraelan\n\n14) Jaybones: Build G1 Jaybones\n\n15) Eraelan: Build Y1 Callup\n\n16) Jaybones: Move Y1 Melon Callup\nCatastrophe Callup Y\n\n17) Eraelan: Build Y1 Eraelan\n\tEraelan: Well...that&#39;s unfortunate.\n\n18) Jaybones: Trade G1 Y1 Jaybones\n\n19) Eraelan: Discover B1 Eraelan G1 Color\n\tJaybones: I couldn&#39;t resist my first ever catastrophe opportunity sorry!\n\tEraelan: Haha, no worries. Had it been me I probably would have done the same.\n\n20) Jaybones: Discover G1 Jaybones Y2 Banana\n\n21) Eraelan: Build B1 Color\n\n22) Jaybones: Discover G1 Banana G1 Apple\n\tJaybones: Discover G1 Banana g1 Apple\n\n23) Eraelan: Build B2 Color\n\tJaybones: Ha! Wrong text box, still getting used to this site!\n\n24) Jaybones: Build G2 Jaybones\n\tEraelan: Haha, I know the feeling! \n\n25) Eraelan: Trade B2 R2 Color\n\n26) Jaybones: Sacrifice G3 Jaybones\nBuild G3 Jaybones\nBuild G3 Apple\nBuild G3 Jaybones\n\n27) Eraelan: Build B2 Color\n\tEraelan: Nice job controlling the Green!\n\n28) Jaybones: Trade G3 R3 Jaybones\n\n29) Eraelan: Build Y1 Eraelan\n\tJaybones: Cheers, I&#39;m amazed at how much there is to take in in this game and the possibilities available. Feel like my brain is about to fall out of my head!\n\n30) Jaybones: Sacrifice G3 Jaybones\nBuild G3 Jaybones\nBuild Y2 Jaybones\nBuild Y3 Melon\n\tEraelan: I know!  I feel like I&#39;m just pulling levers and hoping for the best at this point. Haha.  \n\n31) Eraelan: Build R1 Color\n\n32) Jaybones: Sacrifice Y2 Melon\nMove Y3 Melon Apple\nMove Y3 Apple Eraelan\nCatastrophe Eraelan Yellow\n\tJaybones: Whew, thank you the game! Great fun and learned a lot! \n\tJaybones: Thank you for the game*!\n\n\nHomeworlds Online (SDG# 32728)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.12, Ended: 2017.7.18\nParticipants: foksieloy (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tfoksieloy: good luck, have fun\n\n2) foksieloy: Homeworld B1 R3 G3\n\n3) bhorner: Build G1 Bhorner\n\n4) foksieloy: Build G1 Foksieloy\n\tbhorner: Yes, good luck to you too.  :)\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) bhorner: Build B2 Bhorner\n\n8) foksieloy: Build Y1 Foksieloy\n\n9) bhorner: Trade B2 Y2 Bhorner\n\n10) foksieloy: Discover Y1 Foksieloy G2 Tibbers\n\n11) bhorner: Build B2 Bhorner\n\n12) foksieloy: Build Y1 Foksieloy\n\n13) bhorner: Build Y2 Bhorner\n\n14) foksieloy: Discover Y1 Foksieloy G2 Annie\n\n15) bhorner: Discover Y2 Bhorner G3 Xmas\n\n16) foksieloy: Build G1 Foksieloy\n\n17) bhorner: Move B2 Bhorner Xmas\n\n18) foksieloy: Discover Y1 Annie B3 Valor\n\n19) bhorner: Build B2 Bhorner\n\n20) foksieloy: Sacrifice G1 Foksieloy\nBuild Y2 Valor\n\n21) bhorner: Build Y3 Xmas\n\n22) foksieloy: Trade Y2 B2 Valor\n\n23) bhorner: Discover B2 Bhorner Y3 Big-bird\n\n24) foksieloy: Build Y2 Tibbers\n\n25) bhorner: Build Y3 Bhorner\n\n26) foksieloy: Trade Y1 G1 Valor\n\n27) bhorner: Build B3 Xmas\n\n28) foksieloy: Build G1 Valor\n\n29) bhorner: Trade B3 R3 Xmas\n\n30) foksieloy: Sacrifice Y1 Foksieloy\nMove B2 Valor Tibbers\n\n31) bhorner: Move R3 Xmas Tibbers\n\n32) foksieloy: Sacrifice Y2 Tibbers\nMove G1 Valor Bhorner\nMove G1 Valor Bhorner\n\n33) bhorner: Sacrifice Y2 Bhorner\nMove G3 Bhorner Xmas\nDiscover G3 Xmas Y2 Little-bird\n\n34) foksieloy: Move B2 Tibbers Big-bird\n\n35) bhorner: Move Y3 Xmas Little-bird\n\n36) foksieloy: Move B2 Big-bird Bhorner\n\tbhorner: I&#39;m not certain, but I think everything can be blamed on the little blue in your homeworld, which matched mine.\n\tfoksieloy: Yea, basically I just woke up and thought I was the first player. :)\n\n37) bhorner: Sacrifice Y2 Xmas\nMove Y3 Little-bird Foksieloy\nMove G3 Little-bird Foksieloy\n\tbhorner: Ah!\n\n38) foksieloy: Build B3 Bhorner\nCatastrophe Bhorner Blue\n\n39) bhorner: Sacrifice R3 Tibbers\nAttack G3 Foksieloy\nPass\nPass\n\tfoksieloy: The last hurrah. GG!\n\tbhorner: GG.  :)\n\n\nHomeworlds Online (SDG# 32727)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.13, Ended: 2017.10.13\nParticipants: Ausmuh (S), AcetyleneLamp (N)\nWinner: AcetyleneLamp\n\n1) AcetyleneLamp: Homeworld B2 G1 Y3\n\n2) Ausmuh: Homeworld G3 R2 B3\n\n3) AcetyleneLamp: Build Y1 Acetylenelamp\n\tAusmuh: Hello, have a fun game!\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) AcetyleneLamp: Discover Y1 Acetylenelamp R3 Corneria\n\n6) Ausmuh: Build B1 Ausmuh\n\n7) AcetyleneLamp: Build Y1 Acetylenelamp\n\tAusmuh: Usually at the beginning of the game it&#39;s building and trading. I&#39;m not totally sure you needed to move to a red planet. I&#39;m two moves away from that planet and I don&#39;t have any move myself so me attacking you is not a threat.  Just a thought. If Draw5 is watching, maybe they&#39;d like to give a pointer or two also.\n\tDraw5PlayAll: I am watching. I usually prefer to start with green as the ship instead of the star. I consider green and yellow to be important colors and I like the chance to have them in my homeworld without fear of a catastrophe of my stars.\r\n\r\nAt Corneria, you have no ability to build or trade. However that system CAN be useful if you manage to get a green there.\n\tAcetyleneLamp: Thanks for the advice. I don&#39;t really know what I&#39;m doing, as you may have guessed.\n\tDraw5PlayAll: Ausmuh undid their last move and has not made a new one.\r\n\r\nAcetylene, you should probably build another Y1 and then trade it for a green. And for future reference you may want to look at this game: http://superdupergames.org/main.html?page=archive_play&amp;gid=32306 (in progress as of now). My opponent played with a G1 star and has since gotten no green ships at all.\n\tAusmuh: Thanks and sorry!! \r\n\r\nBusy at work but I&#39;m back!\r\n\r\nIt&#39;s ok to not know what you&#39;re doing yet. We can cruise around space getting our bearings.\r\n\r\nNormally I&#39;d trade My small blue for a small yellow. That way when you build... It would have to be a small yellow too. Then I&#39;d get to grab a medium first. If you follow that.\r\n\r\nInstead I&#39;ll just take another blue. You definitely want to get some build to Corneria soon.\r\n\r\nLet me know if you&#39;re having trouble following!\n\n8) Ausmuh: Trade B1 Y1 Ausmuh\n\n9) AcetyleneLamp: Trade Y1 G1 Acetylenelamp\n\n10) Ausmuh: Discover B1 Ausmuh G1 Zog\n\n11) AcetyleneLamp: Move G1 Acetylenelamp Corneria\n\n12) Ausmuh: Build Y1 Ausmuh\n\n13) AcetyleneLamp: Build Y2 Acetylenelamp\n\n14) Ausmuh: Move Y1 Ausmuh Zog\n\tAusmuh: Nice. Now you have a little outpost (Corneria). To be connected to my homeworld you will need to move out from a 3-pip planet to a 1-pip planet. You&#39;re also spread out a little so acquiring new ships will be easier without being afraid of Catastrophe.\r\n\r\nWe have also opened up 2-pips in the bank. Collecting a 2-pip ship or two can be quite useful.\r\n\r\nAs it stands, no one has build an attack ship. You usually don&#39;t need to collect attack, but if your opponent arms themselves, you will want to do the same. \r\n\r\nThis is where the game can get overwhelming sometimes so don&#39;t hesitate to ask questions and always take what I say with a grain of salt - there are many better players then me. :)\n\n15) AcetyleneLamp: Trade Y2 R2 Acetylenelamp\n\tDraw5PlayAll: Also I am disinterested in the result and Ausmuh is not.\n\n16) Ausmuh: Build Y2 Zog\n\tAusmuh: ?\n\n17) AcetyleneLamp: Build Y2 Acetylenelamp\n\tDraw5PlayAll: I am disinterested as to the result of this game. Therefore I can offer neutral advice. Ausmuh is playing the game and thus may be biased.\n\n18) Ausmuh: Discover Y1 Zog G3 Alfred\n\n19) AcetyleneLamp: Trade Y2 B2 Acetylenelamp\n\n20) Ausmuh: Build Y2 Alfred\n\n21) AcetyleneLamp: Move B2 Acetylenelamp Corneria\n\n22) Ausmuh: Discover Y1 Alfred B1 Zawg\n\n23) AcetyleneLamp: Trade Y1 R1 Corneria\n\n24) Ausmuh: Trade Y2 R2 Zog\n\n25) AcetyleneLamp: Build Y1 Acetylenelamp\n\n26) Ausmuh: Trade B3 G3 Ausmuh\n\n27) AcetyleneLamp: Move Y1 Acetylenelamp Corneria\n\n28) Ausmuh: Build Y2 Alfred\n\n29) AcetyleneLamp: Move R2 Acetylenelamp Corneria\n\n30) Ausmuh: Move Y2 Alfred Zog\n\n31) AcetyleneLamp: Move R2 Corneria Zawg\n\n32) Ausmuh: Sacrifice G3 Ausmuh\nBuild Y2 Alfred\nBuild Y3 Ausmuh\nBuild Y3 Zawg\n\tAcetyleneLamp: Was afraid my red pieces at Corneria were going to get catastrophed, after I made my last move, I check the rules again and saw that four pieces (either stars or ships) of the same color are enough for a catastrophe, I initially thought it was just ships.\n\n33) AcetyleneLamp: Attack Y1 Zawg\n\n\nHomeworlds Online (SDG# 32739)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.14, Ended: 2017.7.27\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld B1 R3 G3\n\twil: Here we go again\n\n3) wil: B G1 Wil\n\tFelix: Dun dun duuuuun\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 R1 Felix\n\n7) wil: B G1 Wil\n\n8) Felix: Build R1 Felix\n\tdlwillson: Felix: Are you on Facebook? Ausmuh started a group for Homeworlds and the Looney started a group for Starship Captains.\n\tFelix: I&#39;m barely on Facebook. I have an account I share with my wife solely for the sake of membership in groups like that. My name on there is J.D. Sellers and I am in the Starship Captains group already. I&#39;ll look for the homeworlds one!\n\n9) wil: T G1 Y1 Wil\n\n10) Felix: Trade R1 Y1 Felix\n\n11) wil: B B1 Wil\n\n12) Felix: Build R1 Felix\n\n13) wil: D B1 Wil R3 R3\n\n14) Felix: Discover R1 Felix G2 Rauros\n\n15) wil: B G1 Wil\n\n16) Felix: Build R2 Felix\n\n17) wil: S G3 Wil\nB B2 R3\nB B2 R3\nB B3 Wil\n\n18) Felix: Discover R2 Felix Y2 Tail\n\n19) wil: T B3 R3 Wil\n\n20) Felix: Build G1 Felix\n\n21) wil: B B3 Wil\n\n22) Felix: Trade G3 B3 Felix\n\n23) wil: D B3 Wil G3 G3\n\n24) Felix: Build B3 Felix\n\n25) wil: T B2 G2 R3\n\n26) Felix: Move B3 Felix Rauros\n\twil: Nice move, somebody wasn&#39;t thinking.\n\n27) wil: B B2 R3\n\tFelix: Thanks! I was hoping for a lucky break. Choosing the red path at the beginning was a poor decision.\n\n28) Felix: Build R2 Rauros\n\n29) wil: Trade B2 Y2 R3\n\twil: Capitalizing in any mistake is as big a part as not making them is..\n\n30) Felix: Trade R2 Y2 Rauros\n\tFelix: Unless you cancel yourself out by capitalizing on a mistake and then making mistakes yourself, as I&#39;m likely to do now :P\n\n31) wil: Build B2 G3\n\twil: I can only hope...I hung on to a sure loss to dlwillson....and he made a blunder which completely turned the game around.\n\n32) Felix: Trade B3 G3 Felix\n\n33) wil: Build B3 R3\n\n34) Felix: Sacrifice G3 Felix\nBuild Y1 Rauros\nBuild Y3 Felix\nBuild Y3 Felix\n\n35) wil: Build Y3 R3\n\n36) Felix: Build R2 Rauros\n\n37) wil: S Y3 R3\nM B3 R3 Tail\nM Y2 R3 Tail\nM Y2 Tail Felix\nC Felix Y\n\tdlwillson: Yeah! &lt;grumble, mumble&gt;\n\n38) Felix: Move B3 Rauros Felix\n\twil: Oops\n\n39) wil: Trade B2 R2 G3\n\n40) Felix: Move Y2 Rauros Felix\n\tFelix: Oops indeed\n\n41) wil: B B2 G3\n\n42) Felix: Build Y1 Rauros\n\n43) wil: Trade B3 Y3 G3\n\n44) Felix: Discover Y1 Rauros Y3 Gold\n\n45) wil: Sacrifice G2 R3\nBuild Y2 Wil\nBuild Y3 G3\n\n46) Felix: Move Y1 Gold Wil\n\n47) wil: Trade B3 Y3 Tail\n\n48) Felix: Sacrifice R2 Tail\nAttack G1 Wil\nAttack B1 Wil\n\n49) wil: A B1 Wil\n\n50) Felix: Sacrifice Y1 Wil\nDiscover R2 Rauros G3 Edge\n\n51) wil: M Y3 Tail Edge\n\n52) Felix: Sacrifice Y1 Rauros\nMove R2 Edge Wil\n\n53) wil: S R2 G3\nA R2 Wil\nA G1 Wil\n\n54) Felix: Sacrifice Y2 Felix\nMove R1 Rauros Edge\nMove R1 Edge Wil\nCatastrophe Wil Red\n\n55) wil: B B3 G3\n\n56) Felix: Build G1 Felix\n\twil: Nice!\n\n57) wil: D B2 G3 Y2 Y2\n\n58) Felix: Trade B3 R3 Felix\n\tFelix: Thanks! It was a desperate measure, and I doubt it will save me in the end!\n\n59) wil: S Y3 G3\nM Y3 G3 Wil\nM B1 Wil Felix\nM B2 Y2 Felix\n\n60) Felix: Trade G1 Y1 Felix\n\n61) wil: Trade Y2 R2 Wil\n\n62) Felix: Sacrifice R1 Felix\nAttack B1 Felix\n\n63) wil: Sacrifice G1 Wil\nBuild B3 Felix\nCatastrophe Felix B\n\n64) Felix: Build Y1 Felix\n\n65) wil: Trade Y3 G3 Wil\n\n66) Felix: Build Y2 Felix\n\n67) wil: M Y1 Wil Felix\nC Felix Y\n\n\tFelix: No ability to move or trade? Looks like it&#39;s curtains for me. Well played!\n\tDraw5PlayAll: Imagine if both empires ended up like that...\n\twil: Gg....\n\nHomeworlds Online (SDG# 32726)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.14, Ended: 2017.8.17\nParticipants: SilentTitan (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tts52: Have a good game!\n\tSilentTitan: Thanks you too. \n\n3) ts52: Build G1 Ts52\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ts52: Trade G1 B1 Ts52\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ts52: Build B1 Ts52\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) ts52: Discover B1 Ts52 G1 Kermit\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n11) ts52: Build B2 Kermit\n\n12) SilentTitan: Build Y1 Sol\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) ts52: Build B2 Kermit\n\n16) SilentTitan: Discover Y1 Sol G1 Soul\n\n17) ts52: Build B2 Ts52\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\nBuild Y3 Silenttitan\n\n19) ts52: Build Y3 Kermit\n\n20) SilentTitan: Sacrifice Y2 Soul\nMove Y1 Sol Kermit\nMove Y2 Sol Kermit\nCatastrophe Kermit Yellow\n\n21) ts52: Build B3 Kermit\n\n22) SilentTitan: Build G2 Silenttitan\n\n23) ts52: Trade B3 Y3 Kermit\n\n\tSilentTitan: Good game\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 32741)\nVariants: &quot;Sinister&quot;\nStarted: 2017.7.14, Ended: 2017.9.6\nParticipants: Nupanick (S), Laroka (N), neverendingvoid88 (E)\nWinner: Nupanick\n\n1) Laroka: Homeworld B3 Y1 G3\n\tneverendingvoid88: homeworld b2 r1 g1\n\n2) neverendingvoid88: Homeworld B2 Y1 G3\n\n3) Nupanick: Homeworld G2 B3 R3\n\tLaroka: boobs\r\n\n\tLaroka: boobs\r\n\n\tneverendingvoid88: Hit that bitch with the uwu\n\n4) Laroka: Build G1 Laroka\n\tLaroka: uwu baby\r\n\n\tNupanick: gdi roxy\n\n5) neverendingvoid88: Build G1 Neverendingvoid88\n\tneverendingvoid88: XD Yes Johhhhhn?\n\tLaroka: it&#39;s your turn\r\n\n\n6) Nupanick: Build R1 Nupanick\n\n7) Laroka: Discover G1 Laroka Y2 Milkyway\n\tneverendingvoid88: Well yeah but I feel like Nupa was gonna say something else.\n\n8) neverendingvoid88: Build G1 Neverendingvoid88\n\tNupanick: nah, just being a derp.\n\n9) Nupanick: Trade R1 G1 Nupanick\n\tneverendingvoid88: okii\n\n10) Laroka: Build G2 Laroka\n\tNupanick: hi i would like a green too thx\n\n11) neverendingvoid88: Trade G1 Y1 Neverendingvoid88\n\n12) Nupanick: Build R1 Nupanick\n\n13) Laroka: Trade G3 R3 Laroka\n\n14) neverendingvoid88: Discover Y1 Neverendingvoid88 R3 Uwu\n\n15) Nupanick: Trade R1 Y1 Nupanick\n\tneverendingvoid88: So uuuuuh\n\tLaroka: hmm?\r\n\n\n16) Laroka: Build R1 Laroka\n\tLaroka: build b1 Laroka\n\n17) neverendingvoid88: Move G1 Neverendingvoid88 Uwu\n\n18) Nupanick: Build Y2 Nupanick\n\tneverendingvoid88: Okay finally, I&#39;m back in.\n\n19) Laroka: Trade R1 B1 Laroka\n\n20) neverendingvoid88: Build G1 Neverendingvoid88\n\tneverendingvoid88: How do I get more days back?? D;\n\n21) Nupanick: Build G2 Nupanick\n\tDraw5PlayAll: After every move you get some number of days back. I cannot see the time control.\r\n\r\nBe alert and move promptly after Laroka moves.\n\tneverendingvoid88: Thanks bot~\n\n22) Laroka: Build G2 Milkyway\n\n23) neverendingvoid88: Trade G1 B1 Neverendingvoid88\n\tDraw5PlayAll: Bot?\n\tneverendingvoid88: Oh, not a bot. Sorry, thought you were for a moment.\n\n24) Nupanick: Discover G2 Nupanick B1 Prospit\n\n25) Laroka: Build R1 Laroka\n\tNupanick: Finally, I get to name a star :3\n\n26) neverendingvoid88: Build G1 Neverendingvoid88\n\tneverendingvoid88: And you named it Prospit, yes\n\n27) Nupanick: Build G3 Prospit\n\n28) Laroka: Build R1 Laroka\n\n29) neverendingvoid88: Move B1 Neverendingvoid88 Uwu\n\n30) Nupanick: Move Y2 Nupanick Prospit\n\n31) Laroka: Build G3 Laroka\n\n32) neverendingvoid88: Build Y2 Uwu\n\n33) Nupanick: Sacrifice G3 Prospit\nBuild G3 Prospit\nBuild Y2 Nupanick\nBuild Y3 Prospit\n\tneverendingvoid88: From -5 to 18 hours, eyyy\n\n34) Laroka: Trade G3 Y3 Laroka\n\tNupanick: Awww ye, I pulled off the Factory combo :3\n\n35) neverendingvoid88: Trade Y1 R1 Uwu\n\tneverendingvoid88: Aw geez, I missed the 2 days by...a lot. Dx\n\n36) Nupanick: Discover Y3 Prospit B2 Lowas\n\tneverendingvoid88: Turn~\n\n37) Laroka: Build G3 Milkyway\n\tNupanick: * does the windy thing *\n\n38) neverendingvoid88: Move G1 Uwu Milkyway\n\n39) Nupanick: Trade G2 B2 Prospit\nCatastrophe Milkyway Green\n\tNupanick: Void, did you mean to call catastrophe on Laroka there? If so, you need to explicitly state that at the end of your move -- it&#39;s technically optional to trigger it.\n\n40) Laroka: Build Y1 Laroka\n\tNupanick: Got it for ya :p\n\tneverendingvoid88: Oh, okay, I thought it was auto-initiated. I guess that&#39;s what catastrophe means then. xP\r\nBut yeah, that&#39;s what I was going for.\n\tneverendingvoid88: Oh, okay, I thought it was auto-initiated. I guess that&#39;s what catastrophe means then. xP\r\nBut yeah, that&#39;s what I was going for.\n\tneverendingvoid88: IT LIVES\n\n41) neverendingvoid88: Build G1 Neverendingvoid88\n\n42) Nupanick: Move Y3 Lowas Laroka\nCatastrophe Laroka Yellow\n\n43) Laroka: Trade R3 Y3 Laroka\n\n\tNupanick: Dammit, Void! I didn&#39;t want to attack yet, but if I hadn&#39;t done that, Laroka would have killed you and won the game before me D:\r\n\r\nI hope you&#39;re happy, I technically saved your skin :p\n\tNupanick: I guess my other option was to take out Void myself, turning this into a 1v1 game, but that&#39;d be lame. Void, pls diversify your home fleet colors kthx.\n\tNupanick: I guess my other option was to take out Void myself, turning this into a 1v1 game, but that&#39;d be lame. Void, pls diversify your home fleet colors kthx.\n\tneverendingvoid88: ...I WAS PLANNING ON DOING THAT. Dx Yeah yeah, I&#39;m working on it.\n\n44) neverendingvoid88: Trade G1 B1 Neverendingvoid88\n\n45) Nupanick: Discover B2 Prospit G2 Derse\n\tneverendingvoid88: Turn\n\n46) Laroka: Build G1 Laroka\n\n47) neverendingvoid88: Move Y2 Uwu Neverendingvoid88\n\n48) Nupanick: Build B2 Derse\n\n49) Laroka: Discover B1 Laroka G1 Welp\n\tNupanick: cough cough reminder that if I blow up laroka&#39;s star I win\n\tneverendingvoid88: Laro, you maaaay wanna notate that.\n\n50) neverendingvoid88: Move G1 Neverendingvoid88 Uwu\n\tneverendingvoid88: Nice name\n\n51) Nupanick: Sacrifice Y2 Nupanick\nMove B2 Derse Laroka\nMove B2 Derse Laroka\n\n52) Laroka: Trade G2 R2 Laroka\n\tNupanick: I think that&#39;s game~\n\tLaroka: gg\r\n\n\n53) neverendingvoid88: Trade G1 Y1 Uwu\n\tDraw5PlayAll: Remind me after the game and I will share something about this point.\n\tneverendingvoid88: ....DAMNIT\n\n54) Nupanick: Sacrifice G3 Prospit\nBuild B2 Laroka\nBuild B3 Laroka\nPass\nCatastrophe Laroka Blue\n\tNupanick: Woo!\n\tNupanick: Draw5PlayAll, what was your feedback?\n\tDraw5PlayAll: Laroka could have set up a catastrophe and left it for NEV to trigger. This would at least prevent Nupanick from winning immediately.\n\tDraw5PlayAll: Also, are you guys beginners or just people who have not played much on SDG? This is the only game I am aware of that bears your names, and I set the option to monitor all Homeworlds games.\n\tneverendingvoid88: A combo of the two for myself and Laroka. Nupa&#39;s the vet in this game.\n\n\nHomeworlds Online (SDG# 32609)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.15, Ended: 2017.7.19\nParticipants: AzorAhai (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B2 G3\n\n\nHomeworlds Online (SDG# 32624)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.15, Ended: 2017.7.19\nParticipants: AzorAhai (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\n\nHomeworlds Online (SDG# 32718)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.15, Ended: 2017.7.17\nParticipants: AzorAhai (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n\nHomeworlds Online (SDG# 32750)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.15, Ended: 2017.7.16\nParticipants: AzorAhai (S), dlwillson (N)\nWinner: AzorAhai\n\n\tDraw5PlayAll: HUH??\n\tdlwillson: AzorAhai had started two of the same game with me.\n\nHomeworlds Online (SDG# 32764)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.19, Ended: 2017.8.23\nParticipants: bhorner (S), Salmonax (N)\nWinner: bhorner\n\n1) Salmonax: Homeworld Y1 B3 G3\n\n2) bhorner: Homeworld R2 B1 G3\n\n3) Salmonax: Build G1 Salmonax\n\n4) bhorner: B G1 Bhorner\n\n5) Salmonax: Discover G1 Salmonax B2 Bluetwoth\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) Salmonax: Build G1 Salmonax\n\n8) bhorner: B B1 Bhorner\n\n9) Salmonax: Trade G1 Y1 Salmonax\n\n10) bhorner: T B1 Y1 Bhorner\n\n11) Salmonax: Build Y2 Salmonax\n\n12) bhorner: Build Y2 Bhorner\n\n13) Salmonax: Move Y1 Salmonax Bluetwoth\n\n14) bhorner: D Y2 Bhorner G3 Xmas\n\n15) Salmonax: Move Y2 Salmonax Bluetwoth\n\n16) bhorner: Build B1 Bhorner\n\n17) Salmonax: Build G1 Salmonax\n\n18) bhorner: Move B1 Bhorner Xmas\n\n19) Salmonax: Trade Y1 R1 Bluetwoth\n\n20) bhorner: Trade B1 R1 Xmas\n\n\tbhorner: Doh!\n\nHomeworlds Online (SDG# 32749)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.20, Ended: 2017.7.25\nParticipants: wil (S), visitor338 (N)\nWinner: wil\n\n1) visitor338: Pass\n\n2) wil: H Y3 B1 G3\n\n\nHomeworlds Online (SDG# 32758)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.21, Ended: 2017.8.1\nParticipants: elrac (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\telrac: Hi. This is my first game on here.\n\n2) elrac: Homeworld R3 B2 G3\n\twil: First game of homeworlds?  Or just first game on SDG and you picked one of the best?\r\n\n\telrac: Essentially both. I&#39;ve played homeworlds once with my wife, but it was pretty much just a learning game.\n\n3) wil: Build G1 Wil\n\n4) elrac: Build G1 Elrac\n\twil: The first 50 are learning games....\n\n5) wil: T G1 Y1 Wil\n\twil: The star formations here are problematic... when it gets going it is often good to set up a set at home to observe..\n\n6) elrac: Build G1 Elrac\n\telrac: thanks for the tip, I&#39;ll keep it in mind\n\n7) wil: B Y1 Wil\n\twil: Beginning of the game is slow, best follow the leader to prevent missing out on economy\n\n8) elrac: Trade G3 Y3 Elrac\n\n9) wil: T Y1 R1 Wil\n\twil: Ya didn&#39;t follow the leader... You&#39;ll need to swap your big green for a y3 sometime.to move\n\telrac: I know, that was my plan for this turn\r\n\n\n10) elrac: Trade G1 B1 Elrac\n\twil: Okee doke\n\n11) wil: B R1 Wil\n\n12) elrac: Trade B1 R1 Elrac\n\n13) wil: T R1 B1 Wil\n\telrac: hmm, interesting, fine, I didn&#39;t want that blue one anyway\r\n\n\n14) elrac: Build G1 Elrac\n\twil: Lol...\n\n15) wil: B B1 Wil\n\n16) elrac: Trade G1 B1 Elrac\n\n17) wil: Discover B1 Wil Y2 Y2\n\n18) elrac: Discover B1 Elrac G1 Alpha\n\n19) wil: Discover B1 Wil G2 G2\n\telrac: You aren&#39;t kidding that it starts out slow. You have to get one of each color ship at the start or you&#39;re in trouble.\n\twil: yup!  don&#39;t let anyone freeze you out of any economy as you are building...you are one lonely ship at a binary star trying to take over the galaxy\n\n20) elrac: Build B2 Alpha\n\n21) wil: Build B2 G2\n\n22) elrac: Trade B2 Y2 Alpha\n\n23) wil: Trade B2 Y2 G2\n\n24) elrac: Build B2 Alpha\n\twil: You know about catastrophe right\n\telrac: yeah, I do, and I see that you have 3 blues + the blue in my star. But I don&#39;t see a way for you to get them to my system.\n\n25) wil: D Y1 Wil G2 Gee2\n\n26) elrac: Trade B2 R2 Alpha\n\twil: I can&#39;t, couldn&#39;t, but was just checking..\n\n27) wil: B B2 G2\n\n28) elrac: Move R2 Alpha G2\n\n29) wil: Sacrifice R1 Wil\nAttack R2 G2\n\n30) elrac: Build B2 Alpha\n\n31) wil: Discover B1 G2 G1 G1\n\n32) elrac: Discover B2 Alpha R2 Beta\n\twil: You are so generous to offer me a trade of my small fighter to an attack cruiser.  Thank you for the nice new ship, it appears you have maintained it well.  We have sold the crew to a garment manufacturer in Alpha if you want them back.\n\n33) wil: B B3 G1\n\telrac: fair, I didn&#39;t see that move.\n\twil: learning attacks and sacrifices are tricky...but now you know!!\n\n34) elrac: Build B3 Alpha\n\n35) wil: T B3 Y3 G1\n\n36) elrac: Trade B3 R3 Alpha\n\n37) wil: B B3 G1\n\n38) elrac: Build B3 Alpha\n\n39) wil: Sacrifice Y2 G2\nMove B2 G2 Alpha\nMove B1 Y2 Alpha\nCatastrophe Alpha B\n\n40) elrac: Build G2 Elrac\n\n41) wil: Sacrifice Y1 Gee2\nMove R2 G2 Wil\n\n42) elrac: Sacrifice G2 Elrac\nBuild G2 Elrac\nBuild B1 Beta\n\n43) wil: B Y1 G1\n\n44) elrac: Trade B2 Y2 Beta\n\telrac: that one I did see coming, I just didn&#39;t know if you would think it was worth it\n\twil: it may not have been\n\twil: Yeah...it was a big mistake!\n\n45) wil: B G2 Wil\n\n46) elrac: Sacrifice G2 Elrac\nBuild Y1 Beta\nBuild G2 Elrac\n\n47) wil: Discover B3 G1 Y3 Y3\n\n48) elrac: Build Y2 Elrac\n\n49) wil: Build R1 Wil\n\n50) elrac: Discover Y2 Alpha B2 Gamma\n\n51) wil: Discover Y1 G1 B2 B2\n\n52) elrac: Move Y1 Beta Wil\n\n53) wil: Attack Y1 Wil\n\n54) elrac: Sacrifice Y2 Elrac\nMove Y2 Beta Wil\nMove Y2 Gamma Wil\nCatastrophe Wil Y\n\n55) wil: B B1 G1\n\n56) elrac: Build R1 Alpha\n\n57) wil: T G2 Y2 Wil\n\n58) elrac: Sacrifice B1 Beta\nTrade R3 B3 Alpha\n\n59) wil: M R2 Wil G1\n\n60) elrac: Discover G1 Elrac Y1 Delta\n\n61) wil: Build G2 Wil\n\n62) elrac: Discover G2 Elrac B1 Epsilon\n\n63) wil: M B3 Y3 Epsilon\n\n64) elrac: Build B2 Alpha\n\n65) wil: S R1 Wil\nA G2 Epsilon\n\n66) elrac: Build G2 Delta\n\n67) wil: S G3 Wil\nB G3 Wil\nB G3 Epsilon\nB G3 Epsilon\n\n68) elrac: Discover G1 Delta Y3 Eta\n\n69) wil: T B3 R3 Epsilon\n\n70) elrac: Discover R1 Elrac Y1 Zeta\n\n71) wil: S Y2 Wil\nM G3 Epsilon Elrac\nM G3 Epsilon Elrac\n\n72) elrac: Sacrifice Y3 Elrac\nMove G1 Eta Delta\nMove G1 Delta Elrac\nMove G2 Delta Elrac\nCatastrophe Elrac Green\n\n\twil: Cause my guns are bigger than your guns\n\twil: Gg\n\telrac: I&#39;m surprised it would let me kill myself\n\telrac: GG\n\telrac: Hmm, I wonder what would have happened if I had caused that catastrophe in your system instead.\n\twil: Lol......you would a won !\n\twil: No lost, no mutual destruction\n\telrac: If I had done that I should have lost, since the game should end when I sacrificed the y3 in elrac, but I wonder how the site would have handled that.\r\n\r\nActually, reading the rules, &quot;You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of \r\nyour turn. You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of \r\nyour turn.&quot; I don&#39;t think it would have been a legal move, but neither was the move I made.\n\telrac: I may send that as a question to Loony Labs.\n\telrac: Ah, found that question here https://boardgamegeek.com/thread/991015/what-if-both-homeworlds-destroyed-end-turn-win-los\r\nit would have been a tie.\n\telrac: either way, GG\n\twil: first time I won a hw game by intimidation!\n\nHomeworlds Online (SDG# 32682)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.22, Ended: 2017.8.23\nParticipants: Felix (S), Gui (N)\nWinner: Felix\n\n1) Gui: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) Gui: Build G1 Gui\n\tFelix: Hello! Have fun. First game?\n\n4) Felix: Build G1 Felix\n\tGui: yep\n\n5) Gui: Discover G1 Gui Y2 Betacenturi\n\tFelix: Awesome. Good luck and let me know if you have any questions.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Gui: Build G1 Gui\n\n8) Felix: Build Y1 Felix\n\n9) Gui: Trade G1 B1 Gui\n\n10) Felix: Build Y1 Felix\n\n\nHomeworlds Online (SDG# 32715)\nStarted: 2017.7.23, Ended: 2017.8.15\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\twil: So you get to determine our style.of.play this time..\n\n2) ts52: Homeworld G2 B1 R3\n\tts52: Hmmmmm, I&#39;m tempted to try something unusual just for fun....\n\n3) wil: B G1 Wil\n\n4) ts52: Build R1 Ts52\n\n5) wil: T G1 R1 Wil\n\n6) ts52: Build R2 Ts52\n\n7) wil: B R2 Wil\n\n8) ts52: Trade R2 Y2 Ts52\n\n9) wil: Trade R2 Y2 Wil\n\n10) ts52: Build R2 Ts52\n\twil: follow the leader..\n\n11) wil: Build R2 Wil\n\n12) ts52: Discover R2 Ts52 G3 Kermit\n\n13) wil: Trade R1 B1 Wil\n\n14) ts52: Trade R1 B1 Ts52\n\n15) wil: Build B2 Wil\n\n16) ts52: Build B2 Ts52\n\n17) wil: Trade B2 G2 Wil\n\n18) ts52: Move B1 Ts52 Kermit\n\n19) wil: Discover B1 Wil G2 G2\n\n20) ts52: Build B2 Kermit\n\n21) wil: B B2 G2\n\n22) ts52: Trade B2 Y2 Kermit\n\n23) wil: T B1 Y1 G2\n\n24) ts52: Build Y1 Kermit\n\n25) wil: Build B1 G2\n\n26) ts52: Discover B2 Ts52 G3 Robin\n\n27) wil: D B2 G2 Y3 Y3\n\n28) ts52: Move R2 Kermit G2\n\n29) wil: B Y1 G2\n\n30) ts52: Attack B1 G2\n\n31) wil: B Y3 Wil\n\n32) ts52: Build Y3 Ts52\n\n33) wil: B G1 Wil\n\n34) ts52: Attack Y1 G2\n\n35) wil: Move G3 Wil G2\n\n36) ts52: Move R2 G2 Kermit\n\n37) wil: M R2 Wil G2\n\n38) ts52: Move Y1 G2 Robin\n\n39) wil: A B1 G2\n\n40) ts52: Move Y3 Ts52 Robin\n\n41) wil: B G1 G2\n\n42) ts52: Build R1 Kermit\n\n43) wil: S G3 G2\nB G1 Wil\nB G3 G2\nB R1 G2\n\n44) ts52: Build R2 Ts52\n\twil: When am I ever gonna see a game I recognize?  They are all so different!\n\tts52: That&#39;s kind of the beauty of homeworlds.\n\tts52: Though I don&#39;t think trying something different is going to pay off this game. :)\n\n45) wil: D R1 G2 B3 B3\n\n46) ts52: Discover R1 Kermit B2 Gonzo\n\n47) wil: S G3 G2\nB G3 G2\nB R3 B3\nB B3 Y3\n\n48) ts52: Build R3 Kermit\n\n49) wil: M G1 G2 B3\n\n50) ts52: Move R2 Kermit Gonzo\n\n51) wil: S Y3 Wil\nM R3 B3 Ts52\nM R1 B3 Ts52\nM B3 Y3 Ts52\nC Ts52 R\n\n52) ts52: Sacrifice Y3 Robin\nMove B1 Kermit Ts52\nMove B2 Robin Ts52\nMove R3 Kermit Ts52\nCatastrophe Ts52 Blue\n\tts52: Wow. Although I didn&#39;t like my chances, I totally didn&#39;t see that coming.\n\n53) wil: Sacrifice Y2 Wil\nMove G1 Wil Ts52\nMove G1 Wil Ts52\n\n54) ts52: Move R3 Ts52 Wil\n\twil: I didn&#39;t think I was ever gonna get it setup.\n\twil: the bank was empty just a bit ago...musta been a gov&#39;t bailout...\n\n55) wil: S Y1 G2\nM G1 B3 Ts52\nC Ts52 G\n\twil: Looks ominous\n\tts52: Excellent game, as usual. Thanks!\n\twil: I slipped thru\n\n\nHomeworlds Online (SDG# 32751)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.23, Ended: 2017.7.27\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R2 B3 G3\n\n2) wil: H Y3 B1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: B G1 Dlwillson\n\n8) wil: B B1 Wil\n\n9) dlwillson: T G3 B3 Dlwillson\n\n10) wil: T B1 R1 Wil\n\n11) dlwillson: B Y1 Dlwillson\n\n12) wil: B R1 Wil\n\n13) dlwillson: T Y1 R1 Dlwillson\n\n14) wil: T R1 Y1 Wil\n\n15) dlwillson: Build G1 Dlwillson\n\n16) wil: D B1 Wil Y2 Y2\n\n17) dlwillson: Discover G1 Dlwillson B1 Sea\n\n18) wil: Build G1 Wil\n\n19) dlwillson: Build G2 Dlwillson\n\n20) wil: Sacrifice G1 Wil\nBuild B2 Y2\n\n21) dlwillson: B B2 Dlwillson\n\n22) wil: Trade B2 G2 Y2\n\n23) dlwillson: Discover B2 Dlwillson G1 Field\n\n24) wil: Build G2 Wil\n\n25) dlwillson: S G2 Dlwillson\nB G2 Sea\nB G3 Dlwillson\n\n26) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB G3 Y2\n\n27) dlwillson: T G2 Y2 Sea\n\n28) wil: B B2 Y2 Y2\n\n29) dlwillson: S G3 Dlwillson\nB G2 Sea\nB Y1 Sea\nB G3 Dlwillson\n\n30) wil: T G3 Y3 Wil\n\n31) dlwillson: S Y2 Sea\nD Y1 Sea B2 Sky\nM Y1 Sky Wil\nC Wil Y\n\n32) wil: Sacrifice G3 Y2\nB G3 Y2\nB G3 Wil\nB R2 Wil\n\n33) dlwillson: M R1 Dlwillson Wil\nC Wil R\n\n34) wil: T G2 R2 Y2\n\n35) dlwillson: S G3 Dlwillson\nB B2 Dlwillson\nB B3 Field\nB G2 Sea\n\n36) wil: B G3 Y2\n\n37) dlwillson: Trade B3 Y3 Field\n\n38) wil: T G3 Y3 Wil\n\tdlwillson: Goodness, Wil! We never talked at all this game! What&#39;s going on around here?\n\n39) dlwillson: S Y3 Field\nD B2 Field Y3 Solar\nM B2 Dlwillson Wil\nM B3 Dlwillson Wil\n\n40) wil: T Y3 B3 Wil\nC Wil B\n\n\tdlwillson: That used to be illegal!\n\tDraw5PlayAll: It is very inconsistent.\n\twil: I&#39;ve been doing it for years...it is all about the leaving!!  Not against Andy&#39;s rules...he often takes off with a ship to safety abaonding his homeworlds in an ark moment when there is impending unavoidable doom.   Me, I prefer a scorched solar system approach leaving a better civilization elsewhere.\n\twil: Gg\n\tdlwillson: GGTY\n\nHomeworlds Online (SDG# 32778)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.25, Ended: 2017.7.25\nParticipants: wil (S), shoejitsu (N)\nWinner: wil\n\n1) shoejitsu: Homeworld G2 B3 Y3\n\n2) wil: H Y2 B1 G3\n\tshoejitsu: good luck, have fun!\n\twil: If you insist!\n\n3) shoejitsu: Discover Y3 Shoejitsu G1 Titan\n\tshoejitsu: hah... interesting\n\twil: oops\n\tDraw5PlayAll: The game is very inconsistent about when it forbids homeworld abandonment.\n\n\nHomeworlds Online (SDG# 32814)\nVariants: &quot;Unrated&quot;\nStarted: 2017.7.25, Ended: 2017.8.21\nParticipants: ts52 (S), shoejitsu (N)\nWinner: ts52\n\n1) shoejitsu: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Welcome! Feel free to ask questions here, and let me know how much advice you&#39;d like me to give. Unfortunately there is no notification for comments, so if you want to ask a question, do so, then make and undo a move so I&#39;ll get an email about it. :) Have a great game!\n\n3) shoejitsu: Build G1 Shoejitsu\n\tshoejitsu: thanks for the help! I was trying to find this in the rule book but i dont think it&#39;s ever touched upon. What&#39;s the general purpose of the colors that make up the homeworld if they don&#39;t count as stars? This has messed me up so many times, since i assume that they count as stars and therefore i can build.\n\n4) ts52: Build G1 Ts52\n\tts52: They do count as stars. You can use the powers of all the colors in your homeworld, but only one per turn. So currently either of us can build (as you just did) or trade or move/discover.\n\n5) shoejitsu: Build G1 Shoejitsu\n\tshoejitsu: weird... i must have mistyped my command when i tried to build in one of my other games. I had a b3 g2 homeworld with a y3 ship and it would not let me build a g1 on the second turn\n\tts52: Ah, that doesn&#39;t quite work. You can use the power of a green star (homeworld or not) to build in that system, but you can only build the smallest available ship it a color that matches a ship you control in that system. So in your case you could only build the smallest available yellow ship.\n\tshoejitsu: ohhhh... got it. very important detail i missed XD\n\n6) ts52: Build G2 Ts52\n\n7) shoejitsu: Discover G1 Shoejitsu B1 Titan\n\tts52: Very important detail, but a fairly common one. We should have a FAQ or Common Mistakes or something like that.\n\n8) ts52: Trade G1 B1 Ts52\n\tDraw5PlayAll: Why do you both have a fortress (2-3)?\n\tshoejitsu: dunno, i made mine first :P\n\tts52: Oh, whoops. I totally screwed up and stuck us in a tiny universe. My bad. \n\n9) shoejitsu: Trade G1 Y1 Shoejitsu\n\tshoejitsu: yeah, i guess that alright since ive never played a tiny universe\n\n10) ts52: Discover G2 Ts52 B1 Grover\n\tshoejitsu: starting to understand how you can force the economy to allow you to build bigger pieces like you did. was unsure how you were able to build that g2 until i went back in the logs and counted the stash haha\n\tts52: Good. Sorry about the tiny universe. But you&#39;ll soon see why it&#39;s generally considered a bad idea.\n\n11) shoejitsu: Build G1 Titan\n\tshoejitsu: oh yeah ive already started to see it haha\n\n12) ts52: Build B2 Ts52\n\n13) shoejitsu: Trade G1 Y1 Titan\n\n14) ts52: Discover B2 Ts52 G1 Kermit\n\n15) shoejitsu: Build G1 Titan\n\tshoejitsu: So is it a general rule of thumb to alway discover a new star system with a blue and a green peice in it? Its kind of seeming like yellow and red should be saved for building and trading transactions... and that makes buying smartly pretty challenging haha\n\n16) ts52: Build G2 Ts52\n\tDraw5PlayAll: Placing a green at a blue system or a blue at a green system lets you quickly expand and gather all of the technologies. I used to attempt to do both but in my recent games I can usually only fit one of those in (I tend to lose the green or blue economy).\n\n17) shoejitsu: Discover G1 Titan B2 Gaea\n\tts52: Generally speaking green and blue are pretty important in the opening, growth and discovery part of the game. Yellow and Red are more important in the mid and end game.\n\n18) ts52: Build B3 Kermit\n\n19) shoejitsu: Build Y1 Titan\n\tshoejitsu: well i just realized i have no blue ships :D\n\n20) ts52: Trade B3 Y3 Kermit\n\tts52: Yeah, I&#39;ve frozen you out of the blue economy, for now at least.\n\n21) shoejitsu: Trade Y1 R1 Titan\n\n22) ts52: Build B3 Kermit\n\n23) shoejitsu: Move R1 Titan Ts52\n\tts52: I&#39;m breaking a pretty standard homeworlds adage here, that is &#39;when your enemy get&#39;s a gun, you get a gun&#39;. But I think I can afford to wait.\n\n24) ts52: Trade G2 R2 Ts52\n\n25) shoejitsu: Attack B1 Ts52\n\tshoejitsu: Yeah i was surprised you didnt draw right away but clearly you have an upper hand to assist you \n\n26) ts52: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack B1 Ts52\n\n27) shoejitsu: Build G2 Shoejitsu\n\tshoejitsu: oy\n\n28) ts52: Build B3 Kermit\n\tshoejitsu: i may or may not have had a sudden realization involving the construct functionality...\n\tDraw5PlayAll: Care to share it?\n\n29) shoejitsu: Trade G2 R2 Shoejitsu\n\n30) ts52: Trade B3 Y3 Kermit\n\tshoejitsu: Only that delaying building due to worrying about the enemy&#39;s ability to build larger pieces will only effect me negatively at this point in the game. It seems like I just need any pieces right now, regardless of whether or not the enemy controls a majority of the stronger ones\n\n31) shoejitsu: Build G2 Titan\n\tts52: Indeed. Although it can be important to limit your opponents ability to get larger ships in play, you always have to way that against what it costs you to do so.\n\n32) ts52: Build B3 Kermit\n\n33) shoejitsu: Move Y1 Shoejitsu Titan\n\tshoejitsu: how do you list multiple moves, like after a sacrifice? Im not sure what a carriage return is...\n\n34) ts52: Trade B3 R3 Kermit\n\tDraw5PlayAll: Just press return. It will look like this:\r\nsacrifice Y3 Altair\r\nmove B1 Altair Electra\r\nmove B2 Altair Electra\r\nmove B1 Caster Electra\r\ncatastrophe Electra blue\n\tshoejitsu: thank you. I just realized what i was trying to do was not possible, thats why it was telling me i have no more moves... this game is looking pretty over at this point\n\tshoejitsu: confused why i cant do this:\r\n\r\nsacrifice g2 titan\r\nmove y1 shoejitsu kermit\r\nbuild y1 kermit\r\ncatastrophe kermit yellow\r\n\r\ni thought if i could use the stars power even if i dont control the system? its telling me i have no more actions but it seems right to me?\n\n35) shoejitsu: Move Y1 Titan Gaea\n\tshoejitsu: ah shoot now i cant undo my move again.... ughhh\r\n\n\tshoejitsu: now i know only one undo per turn i suppose\n\tts52: When you sacrifice, you can only use the power of the sacrificed ship. So sacrificing a green means you can only build. It lets you sacrifice a large or medium piece to get 3 or 2 actions, but they all have to be the action of the piece sacrificed. Hopefully that makes sense.\n\n36) ts52: Build B3 Kermit\n\tshoejitsu: that makes total sense, thanks\n\tshoejitsu: couldnt you have move all you blue ships in to my homeworld by sacrificing a y3 and calling catastrophe then?\n\n37) shoejitsu: Move Y1 Titan Gaea\n\tts52: Yes, I could have. But I&#39;m going for a slightly longer play.\n\n38) ts52: Sacrifice Y3 Kermit\nMove B3 Kermit Shoejitsu\nMove Y3 Kermit Shoejitsu\nMove B3 Kermit Shoejitsu\n\n39) shoejitsu: Trade G3 R3 Shoejitsu\n\n40) ts52: Sacrifice R3 Kermit\nAttack R3 Shoejitsu\nAttack R2 Shoejitsu\nPass\n\n\tts52: Thanks for the game! I look forward to the next one.\n\tshoejitsu: good game, thanks for the help\n\nHomeworlds Online (SDG# 32829)\nStarted: 2017.7.27, Ended: 2017.8.1\nParticipants: equinox (S), ratpfink (N)\nWinner: ratpfink\n\n1) ratpfink: Homeworld G2 B1 Y3\n\n2) equinox: Homeworld Y3 B2 G3\n\n3) ratpfink: Build Y1 Ratpfink\n\n4) equinox: Build G1 Equinox\n\n5) ratpfink: Build Y1 Ratpfink\n\n6) equinox: Trade G1 Y1 Equinox\n\n7) ratpfink: Trade Y1 G1 Ratpfink\n\n8) equinox: Build Y1 Equinox\n\n9) ratpfink: Sacrifice Y3 Ratpfink\nDiscover Y1 Ratpfink R3 Wampa\nDiscover Y1 Wampa R1 Lexi\nMove Y1 Lexi Equinox\nCatastrophe Equinox Y\n\n\nHomeworlds Online (SDG# 32801)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.7.28, Ended: 2017.8.3\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B2 Y3 G3\n\tdlwillson: Hi Wil!\n\n2) wil: H Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\twil: Hi wil-lson\n\n4) wil: B G1 Wil\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: Build B2 Dlwillson\n\n8) wil: B B2 Wil\n\n9) dlwillson: D B1 Dlwillson G1 Field\n\n10) wil: T B1 R1 Wil\n\n11) dlwillson: S G3 Dlwillson\nB B1 Field\nB B3 Field\nB B3 Dlwillson\n\n12) wil: B B3 Wil\n\n13) dlwillson: T B3 G3 Dlwillson\n\n14) wil: T B2 Y2 Wil\n\n15) dlwillson: T B3 Y3 Field\n\n16) wil: Discover B3 Wil G3 G3\n\n17) dlwillson: Trade B2 R2 Dlwillson\n\n18) wil: B B2 G3\n\n19) dlwillson: D B1 Field G2 Forest\n\twil: Discussion during games varies..\n\n20) wil: T B3 Y3 G3\n\tdlwillson: Yeah. Sometimes, we just play. But I&#39;m glad we play. It&#39;s good to play.\n\n21) dlwillson: B G1 Dlwillson\n\n22) wil: B G1 Wil\n\twil: Since I lose s significant number of games...my goal is to lose those outside The ladder and win those within..\n\n23) dlwillson: Discover G1 Dlwillson Y1 Solar\n\n24) wil: B R1 Wil\n\n25) dlwillson: B G2 Dlwillson\n\n26) wil: Build Y1 G3\n\n27) dlwillson: S G3 Dlwillson\nB G2 Solar\nB B2 Field\nB G3 Dlwillson\n\n28) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB B3 G3\n\n29) dlwillson: T B2 R2 Field\n\twil: I just had 6 moves to make....luv the confusion of multiple he games\n\n30) wil: S Y2 Wil\nM R1 Wil G3\nM B2 G3 Forest\n\n31) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Field\nBuild R3 Dlwillson\nBuild G3 Solar\n\n32) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Forest\nBuild B3 G3\n\n33) dlwillson: S Y3 Field\nM G1 Solar G3\nM G2 Solar G3\nM G3 Solar G3\nC G3 G\n\n34) wil: T B2 Y2 Forest\n\tdlwillson: I &lt;3 supernova! I&#39;m not sure whether that was a good trade, but it sure was satisfying.\n\twil: Lol....I should a looked for that\n\n35) dlwillson: S G2 Dlwillson\nB B2 Forest\nB B3 Field\n\n36) wil: S R1 Wil\nA B2 Forest\n\n37) dlwillson: B B3 Forest\nC Forest B\n\twil: I am going to need you to make some collaossal mistake....whenever you are ready...I&#39;ll wait.\n\n38) wil: B R1 Wil\n\tdlwillson: I&#39;ll work on it. Actually, I&#39;ve been playing my hardest just to keep up! I think the supernova may have finally given me a little edge.\n\n39) dlwillson: T B3 Y3 Field\n\twil: It left you with more ships and 2-1 queens...a little edge...\n\n40) wil: D R1 Wil Y3 Y3\n\n41) dlwillson: T R3 G3 Dlwillson\n\n42) wil: T G1 B1 Wil\n\n43) dlwillson: Discover R2 Field B3 Sky\n\n44) wil: Build G1 Wil\n\n45) dlwillson: Build B2 Field\n\n46) wil: Move B1 Wil Y3\n\n47) dlwillson: T B2 G2 Field\n\n48) wil: Sacrifice G1 Wil\nBuild B2 Y3\n\n49) dlwillson: M G2 Field Sky\n\n50) wil: D B1 Y3 G1 G1\n\n51) dlwillson: B G1 Dlwillson\n\n52) wil: B G2 Wil\n\n53) dlwillson: B G3 Sky\n\n54) wil: S G3 Wil\nB G3 Wil\nB B2 Y3\nB B3 G1\n\n55) dlwillson: Build B3 Field\n\n56) wil: Trade B3 R3 G1\n\n57) dlwillson: S Y3 Field\nM G3 Sky Wil\nM G2 Sky Wil\nC Wil G\nM R2 Sky Wil\n\n58) wil: Sacrifice Y2 Forest\nMove R1 Y3 Wil\nMove B2 Y3 Wil\n\twil: nice!\n\n59) dlwillson: A B2 Wil\n\twil: good game, I blew it...funny why I thought about thinking of doing it to you, didn&#39;t dawn on me that the red would come in with it...\n\n\tdlwillson: Good game. I think that supernova was the turning point. Pretty even to there.\n\twil: Yeah it was\n\tdlwillson: Thanks for the game!\n\nHomeworlds Online (SDG# 32712)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.28, Ended: 2017.8.7\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) wil: B G1 Wil\n\tFelix: Good luck and have fun!\n\twil: You know I do..\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: B R1 Wil\n\n8) Felix: Build Y1 Felix\n\twil: I think I am a step behind...but math is hard.\n\n9) wil: D R1 Wil G3 G3\n\tFelix: I&#39;m not so sure myself. The path to larges is smaller with red, but I can get to mediums faster with yellow...\n\n10) Felix: Trade Y1 R1 Felix\n\n11) wil: B R2 Wil\n\n12) Felix: Discover R1 Felix G1 Rim\n\twil: Ah....we don&#39;t get to find out!\n\n13) wil: T R1 Y1 Wil\n\tFelix: I debated it, but being left without a weapon is too scary.\n\n14) Felix: Build Y2 Felix\n\n15) wil: B Y2 Wil\n\n16) Felix: Move Y1 Felix Rim\n\n17) wil: M Y1 Wil G3\n\n18) Felix: Build G1 Felix\n\n19) wil: B R1 Wil\n\n20) Felix: Build R2 Rim\n\n21) wil: B R3 G3\n\n22) Felix: Discover R1 Rim B3 Rom\n\n23) wil: M R3 G3 Rim\n\n24) Felix: Sacrifice G1 Felix\nBuild R3 Rom\n\n25) wil: Build R3 G3\n\n26) Felix: Trade R3 Y3 Rom\n\n27) wil: Sacrifice R2 Wil\nAttack R2 Rim\nAttack Y1 Rim\n\n28) Felix: Build G1 Felix\n\n29) wil: Build Y2 Rim\n\n30) Felix: Build Y3 Felix\n\n31) wil: B Y3 G3\n\tFelix: This didn&#39;t work out so well for me.\n\n32) Felix: Trade Y3 R3 Felix\n\n33) wil: T Y2 B2 Wil\n\n34) Felix: Sacrifice G3 Felix\nBuild Y2 Rom\nBuild Y3 Felix\nBuild R2 Rom\n\n35) wil: Sacrifice Y3 G3\nMove R1 G3 Rim\nMove R1 Rim Felix\nMove R2 Rim Felix\nCatastrophe Felix R\n\n36) Felix: Trade Y3 G3 Rom\n\tDraw5PlayAll: Why is blue so ignored in high level play? Is it too easy to focus on red and yellow, or are too many stars blue?\n\twil: Blue is rarely ignored by me...I utilize it.whenever I can...but...the early game can define mid game...are we racing, building, blocking...this game became a race...only two colors participate in races...until one sees an advantage (or desperation) opportunity to switch\n\twil: Oh, you said high level...nevermind\n\tDraw5PlayAll: Consider: out of the 15 ships on the board, only one (7%) is blue. Yet of the 6 stars on the field, three are blue.\r\n\r\nActually, before the previous move there were even more yellows and reds... NO BLUES!\n\tDraw5PlayAll: And I  think this is high level play because you two are first and second on the ladder, even though this is not a ladder game.\n\n37) wil: B Y3 G3\n\twil: We are only one and two because the best are either resting on their laurels or otherwise not in the game.\n\n38) Felix: Build Y3 Rom\n\n39) wil: D Y1 G3 G2 G2\n\tFelix: What Wil said. I&#39;ve never stood a chance against the likes of endo, TwoShort, or TeeTeeTee.\n\twil: Or broccoli commander\n\n40) Felix: Build G1 Rom\n\n41) wil: S Y3 G3\nM Y1 Rim Felix\nM Y1 G2 Felix\nM R3 Rim Felix\nC Felix Y\n\tFelix: I&#39;ve never played Broccoli, actually\n\n42) Felix: Sacrifice Y3 Rom\nPass\nPass\nPass\n\twil: Wishing the distraction would have effected the ladder game instead.\n\n43) wil: A G1 Felix\n\tFelix: Nice! Just came back from a long weekend and I am not playing carefully enough.\n\twil: Thank you for that!   Hope you ha fun!\n\twil: But what was that?  You should have sacked the y3 and moved everything in...so it would look like you almost had it!\n\tFelix: I always have fun :) And I was just having fun by passing 3 moves. If I can&#39;t win, I don&#39;t care about the end board appearances!\n\n\nHomeworlds Online (SDG# 32795)\nVariants: &quot;Hard time&quot;\nStarted: 2017.7.28, Ended: 2017.8.17\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) wil: H B2 R2 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\twil: Let&#39;s see how this goes...\n\tDraw5PlayAll: Copycat!\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\twil: Probably for less than ten moves but we&#39;ll see\n\n6) wil: T G1 Y1 Wil\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) wil: B G1 Wil\n\tDraw5PlayAll: Now, do I go to a 1-point star to try to freeze you out or a 3 point star to keep my options open?\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: Appears I am not even smart enough to understand your question\n\tDraw5PlayAll: There appears to be nothing to freeze you out of.\n\n10) wil: T G1 R1 Wil\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) wil: B G1 Wil\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) wil: T G1 B1 Wil\n\n15) Draw5PlayAll: Discover B1 Draw5playall G1 G1\n\n16) wil: Build G1 Wil\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) wil: B G2 Wil\n\n19) Draw5PlayAll: Build G2 Draw5playall\n\n20) wil: Trade G2 Y2 Wil\n\n21) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n22) wil: D G1 Wil Y3 Y3\n\n23) Draw5PlayAll: Discover G1 Draw5playall B3 B3\n\twil: If you become a copycat does that mean I got one step ahead?\n\n24) wil: D Y1 Wil G3 G3\n\n25) Draw5PlayAll: Build B1 G1\n\n26) wil: B Y1 G3\n\n27) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 G1 Wil\nMove B1 G1 Wil\nCatastrophe Wil Blue\n\n28) wil: B Y2 Wil\n\n29) Draw5PlayAll: Build Y2 Draw5playall\n\n30) wil: M Y1 G3 Draw5playall\n\n31) Draw5PlayAll: Move Y1 Draw5playall G3\n\n32) wil: Discover Y2 Wil G1 G1\n\n33) Draw5PlayAll: Build Y3 G3\n\n34) wil: Move Y1 Draw5playall G3\nCatastrophe G3 Y\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\n36) wil: M R1 Wil Y3\n\n37) Draw5PlayAll: Move R1 Draw5playall B3\n\n38) wil: B G2 Y3\n\n39) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n40) wil: B G2 Y3\n\n41) Draw5PlayAll: Discover R2 Draw5playall Y1 Y1\n\n42) wil: M Y2 G1 B3\n\n43) Draw5PlayAll: Build R1 B3\n\n44) wil: B R3 Y3\n\n45) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 B3 Wil\nMove R1 B3 Wil\n\n46) wil: Sacrifice Y2 Wil\nMove G3 Wil Y1\nMove R1 Y3 Wil\nCatastrophe Wil R\n\n\twil: nice game.\n\twil: We have abandoned our homeworld with per our scorched earth scenario...taken our ark moment to establish a new base...and rule the galaxy in the next game.\n\twil: never played one of these...it was interesting\n\tDraw5PlayAll: I hate seeing that a game ended not from my own actions... it seems like it will end up a loss.\n\twil: Lol, your own actions ended the game...my resignation is the same as a win... As is an.ark.moment\r\n\n\nHomeworlds Online (SDG# 32800)\nStarted: 2017.7.28, Ended: 2017.9.29\nParticipants: Ausmuh (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) Ausmuh: Homeworld G3 Y1 B3\n\n3) ts52: Build G1 Ts52\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) ts52: Build G1 Ts52\n\n6) Ausmuh: Trade B1 G1 Ausmuh\n\n7) ts52: Discover G1 Ts52 B1 Grover\n\n8) Ausmuh: Discover G1 Ausmuh Y2 Zing\n\n9) ts52: Build G2 Grover\n\n10) Ausmuh: Build B1 Ausmuh\n\n11) ts52: Trade G1 Y1 Grover\n\n12) Ausmuh: Build B1 Ausmuh\n\n13) ts52: Build Y1 Grover\n\n14) Ausmuh: Discover B1 Ausmuh G2 Zork\n\n15) ts52: Build Y2 Grover\n\n16) Ausmuh: Trade B3 Y3 Ausmuh\n\n17) ts52: Discover Y1 Grover G2 Kermit\n\n18) Ausmuh: Build B2 Zork\n\n19) ts52: Build Y2 Kermit\n\n\nHomeworlds Online (SDG# 32864)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.1, Ended: 2017.8.15\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld B1 R3 G3\n\n2) wil: H G2 B1 B3 *\n\n3) Felix: Build G1 Felix\n\n4) wil: B B1 Wil\n\n5) Felix: Trade G3 B3 Felix\n\n6) wil: Trade B3 Y3 Wil\n\n7) Felix: Build B2 Felix\n\twil: I believe that to be the only response...immediate change...one or two moves later and it is trouble..\n\tFelix: I think you may be right... but we&#39;ll see if it costs me in the long run!\n\n8) wil: Build B2 Wil\n\twil: In my trials it is the only move....too moves later and you&#39;ll never get a blue and I create a queen factory...  (or you lose half your homeworld trying)\n\n9) Felix: Trade B3 Y3 Felix\n\n10) wil: D B2 Wil G3 G3\n\n11) Felix: Discover B2 Felix G2 Rem\n\n12) wil: B Y1 Wil\n\n13) Felix: Build Y1 Felix\n\n14) wil: Trade Y1 G1 Wil\n\n15) Felix: Move Y1 Felix Rem\n\n16) wil: T G1 R1 Wil\n\n17) Felix: Build G1 Felix\n\n18) wil: B R1 Wil\n\n19) Felix: Build G1 Felix\n\n20) wil: B Y1 Wil\n\n21) Felix: Discover G1 Felix B2 Ram\n\n22) wil: B B3 G3\n\n23) Felix: Build B3 Rem\n\n24) wil: T B3 Y3 G3\n\n25) Felix: Move B2 Rem G3\n\n26) wil: T B2 R2 G3\n\n27) Felix: Build G2 Ram\n\n28) wil: A B2 G3\n\n29) Felix: Build G3 Felix\n\n30) wil: D B1 Wil G3 Gee3\n\n31) Felix: Trade G1 R1 Felix\n\n32) wil: T R1 G1 Wil\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Rem\nBuild Y2 Felix\n\n34) wil: B Y2 G3\n\n35) Felix: Build B2 Rem\n\n36) wil: B B3 G3\n\n37) Felix: Move B2 Rem Gee3\n\n38) wil: B B3 Gee3\n\n39) Felix: Move R1 Felix Ram\n\n40) wil: M B3 G3 Ram\n\n41) Felix: Sacrifice Y3 Felix\nMove G1 Ram Gee3\nMove G1 Gee3 Wil\nDiscover G2 Ram Y3 Rom\n\n42) wil: M G1 Wil G3\n\n43) Felix: Sacrifice G1 Felix\nBuild G1 Wil\n\n44) wil: Trade Y1 R1 Wil\n\n45) Felix: Sacrifice G2 Rom\nBuild G2 Wil\nCatastrophe Wil Green\nBuild G1 Felix\n\n46) wil: Sacrifice R2 G3\nAttack B2 Gee3\nAttack R1 Ram\n\n47) Felix: Move B3 Rem Gee3\nCatastrophe Gee3 Blue\n\n48) wil: M R1 Wil Rem\n\n49) Felix: Sacrifice Y1 Rem\nMove Y1 Rem G3\n\n50) wil: T Y2 R2 G3\n\n51) Felix: Trade G1 B1 Felix\n\n52) wil: A Y1 G3\n\tFelix: Meh. I&#39;m not happy with this situation :P\n\n53) Felix: Discover B1 Felix G2 Somata\n\n54) wil: M B2 G3 Somata\n\tFelix: May as well speed along the inevitable.\n\n55) Felix: Build B2 Somata\n\n56) wil: S R2 G3\nA B1 Somata\nA B2 Somata\n\n57) Felix: Build G1 Felix\n\n58) wil: B R2 Rem\n\n59) Felix: Sacrifice Y2 Felix\nMove G1 Felix Somata\nMove G1 Somata G3\n\twil: Ur slowing me down!\n\n60) wil: S Y3 G3\nM R1 Rem Felix\nM R2 Rem Felix\nM R1 Ram Felix\n\n61) Felix: Build G1 G3\nCatastrophe G3 Green\nCatastrophe Felix Red\n\twil: Doomsday machine locked and loaded\n\n62) wil: S Y3 Wil\nM B3 Ram Felix\nM B2 Somata Felix\nM B2 Somata Felix\nC Felix B\n\n\tFelix: It&#39;s not often I get to call two catastrophes on one turn. Good game!\n\twil: Hey... I was a gonna do that!\n\twil: Wots somata u...\n\nHomeworlds Online (SDG# 32876)\nStarted: 2017.8.4, Ended: 2017.8.24\nParticipants: MobyNostromo (S), Helix (N)\nWinner: MobyNostromo\n\n1) Helix: Pass\n\n2) MobyNostromo: H B1 G2 Y3\n\tHelix: Hi. I&#39;m trying this games which looks very complicated.\n\tMobyNostromo: Yes. This one is a very complicated one, but it seems to have the depth of Chess or Go. I&#39;ve played this about ten times now, and I am now starting to feel the incredible possibilities. You&#39;re not going to understand it this time or maybe the next couple of times, but you will soon find a strategy you might want to use, and then the game will slowly start to make sense. Be patient.\n\n3) Helix: Pass\n\tHelix: Could you show me an example of first move (how to write it)?\n\tDraw5PlayAll: The homeworld move is: homeworld [star] [star] [ship] e.g. homeworld B3 R1 G3.\r\nWhen it comes time to build your second ship, use:\r\nbuild G1 Helix\r\n(Or B1, Y1, or R1... the same color as your initial ship.)\n\tDraw5PlayAll: Oh, and there should not be a period in the homeworld command.\n\n4) MobyNostromo: B Y1 Mobynostromo\n\tHelix: Sorry, I saw your answers after I moved.\n\n5) Helix: Homeworld B3 R1 G3\n\n6) MobyNostromo: B Y1 Mobynostromo\n\tHelix: Thanks to Draw5PlayAll\n\tMobyNostromo: Me too. Thanks to Draw5PlayAll.\n\n\nHomeworlds Online (SDG# 32786)\nVariants: &quot;Unrated&quot;\nStarted: 2017.8.4, Ended: 2017.8.23\nParticipants: DazelHirae (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\tDazelHirae: hi\n\tFelix: Hello! First game?\n\n\nHomeworlds Online (SDG# 32841)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.8, Ended: 2017.8.23\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y2 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G1 Field\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: B Y3 Field\n\n12) wil: B Y3 G3\n\n13) dlwillson: Discover Y3 Field B3 Sky\n\n14) wil: Discover Y2 Wil Y3 Y3\n\n15) dlwillson: D Y2 Dlwillson B1 Sea\n\n16) wil: B G1 Wil\n\n17) dlwillson: Trade Y2 G2 Sea\n\n18) wil: T G1 R1 Wil\n\n19) dlwillson: B G1 Dlwillson\n\n20) wil: Move Y3 G3 Sea\n\n21) dlwillson: T G1 R1 Dlwillson\n\n22) wil: B R1 Wil\n\n23) dlwillson: S Y1 Field\nM G2 Sea Sky\n\n24) wil: B R2 Wil\n\n25) dlwillson: B R2 Dlwillson\n\n26) wil: T R1 B1 Wil\n\n27) dlwillson: T R1 B1 Dlwillson\n\n28) wil: M B1 Wil G3\n\n29) dlwillson: B G1 Sky\n\n30) wil: B B2 G3\n\n31) dlwillson: B G1 Sky\n\n32) wil: S B2 G3\nT R2 G2 Wil\nT G3 R3 Wil\n\n33) dlwillson: Trade G2 B2 Sky\n\n34) wil: Build B2 G3\n\n35) dlwillson: Discover B2 Sky G1 Field\n\n36) wil: Move B1 G3 Field\n\n37) dlwillson: Build B3 Field\n\n38) wil: Move B2 G3 Field\nCatastrophe Field B\n\n39) dlwillson: B B1 Dlwillson\n\n40) wil: Build G1 Wil\n\n41) dlwillson: T G1 R1 Sky\n\n42) wil: T G2 B2 Wil\n\n43) dlwillson: D B1 Dlwillson G1 Field\n\n44) wil: B G2 Wil\n\n45) dlwillson: B G2 Dlwillson\n\n46) wil: M B2 Wil G3\n\n47) dlwillson: Discover B1 Dlwillson Y1 Golden\n\n48) wil: Discover G2 Wil B3 B3\n\n49) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild G3 Dlwillson\nBuild Y2 Sky\n\n50) wil: B G3 B3\n\n51) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Sky\nBuild B2 Golden\nBuild G3 Dlwillson\n\n52) wil: M R1 Wil G3\n\tdlwillson: Damn your perfect move! You foiled my plan!\n\n53) dlwillson: Sacrifice Y2 Sky\nMove G2 Sky Wil\nMove R1 Sky Wil\n\tdlwillson: I have a new plan! It&#39;s not as good as the old plan...\n\n54) wil: Attack R1 Wil\n\twil: Will it be easier to foil?\n\n55) dlwillson: S G2 Dlwillson\nB G2 Wil\nB R2 Sky\n\tdlwillson: probably :-(\n\tdlwillson: &lt;grin&gt; I hope not!\n\n56) wil: S Y3 Sea\nM R1 Wil Y3\nM G2 B3 Wil\nC Wil G\nM G3 B3 Wil\n\n57) dlwillson: M R2 Sky Golden\n\n58) wil: D R1 Y3 G1 G1\n\tdlwillson: Hm. There was more to that idea, but I&#39;ve forgotten what it was...\n\n59) dlwillson: S G3 Dlwillson\nB R2 Sky\nB R3 Golden\nB R3 Dlwillson\n\twil: Thats wot notes are for\n\twil: Oh my nice move\n\n60) wil: T G3 Y3 Wil\n\tdlwillson: Wow!\n\twil: I had no other choice did I?  You were headed in!\n\twil: I really like your early second level aggression...it has put mW in hurt from the beginning...\n\twil: I really like your early second level aggression...it has put mW in hurt from the beginning...\n\twil: It isn&#39;t like I got myself outta hot water, but I did think it rather nice move.\n\n61) dlwillson: S B2 Golden\nT R3 G3 Dlwillson\nT R3 G3 Golden\n\n62) wil: B R3 G1\n\n63) dlwillson: B R3 Golden\n\n64) wil: M R1 G3 Golden\n\n65) dlwillson: S G3 Golden\nB G2 Dlwillson\nB G2 Sky\nB G2 Sky\n\n66) wil: S Y2 Y3\nM R1 G1 Sky\nM R1 Sky Golden\nC Golden R\n\n67) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB G3 Dlwillson\nB G3 Dlwillson\n\n68) wil: B B1 G3\n\n69) dlwillson: M Y3 Sky Wil\n\n70) wil: A Y3 Wil\n\n71) dlwillson: Move Y2 Sky Wil\nCatastrophe Wil Y\n\n72) wil: T B1 R1 G3\n\n73) dlwillson: T G3 Y3 Dlwillson\n\n74) wil: B B1 G3\n\n75) dlwillson: T G2 B2 Sky\n\n76) wil: S Y1 G3\nM R3 Wil Field\n\twil: I will do my best to take advantage of a colossal mistake should you feel the urge.\n\n\tdlwillson: I don&#39;t think I have enough time left to make a mistake.\n\tdlwillson: Or we, rather.\n\twil: When your top soldiers flee to another island...\n\tdlwillson: Good game, Wil! Thank you!\n\nHomeworlds Online (SDG# 32910)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.10, Ended: 2017.8.28\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld B2 R3 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\tFelix: Hello again :) Have fun!\n\tdlwillson: Hi Felix! GLHF!\n\n3) Felix: B G1 Felix\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Felix: Build G1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: Trade G1 R1 Felix\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\n12) dlwillson: Build R2 Dlwillson\n\n13) Felix: Discover R1 Felix B1 Gronch\n\n14) dlwillson: Trade R2 Y2 Dlwillson\n\n15) Felix: Discover R2 Felix Y1 Splinch\n\n16) dlwillson: Build Y2 Dlwillson\n\n17) Felix: Build Y2 Felix\n\n18) dlwillson: D Y2 Dlwillson B2 Sea\n\n19) Felix: Move Y1 Felix Gronch\n\n20) dlwillson: D Y1 Dlwillson G2 Field\n\n21) Felix: Build Y3 Felix\n\n22) dlwillson: B Y3 Field\n\n23) Felix: Sacrifice G3 Felix\nBuild Y3 Gronch\nBuild R2 Gronch\nBuild R2 Splinch\n\n24) dlwillson: S Y2 Sea\nM Y3 Field Gronch\nM Y3 Gronch Felix\n\n25) Felix: Move R2 Splinch Felix\n\n26) dlwillson: A Y3 Felix\n\tFelix: Woah, nice move. I didn&#39;t see that one coming.\n\n27) Felix: Move Y1 Gronch Felix\nCatastrophe Felix Yellow\n\tdlwillson: I think you&#39;re going to come out ahead... Boo...\n\n28) dlwillson: M R1 Dlwillson Field\n\tFelix: Still a heavy blow!\n\tFelix: Hey, you should join the tournament Babamots is running. Check it out in the Facebook group! \n\n29) Felix: Trade R1 G1 Gronch\n\n30) dlwillson: B Y1 Field\n\n31) Felix: Move Y3 Gronch Felix\n\n32) dlwillson: Discover Y1 Field B1 Sky\n\n33) Felix: Trade R2 G2 Felix\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Field\nBuild Y2 Sky\nBuild Y3 Dlwillson\n\n35) Felix: Build G1 Gronch\n\n36) dlwillson: Build Y3 Field\n\tFelix: Very nice move!\n\tdlwillson: I&#39;m going to skip the tournament. 2/2/7 is just too slow. The tournament will still be running in six months, and at that rate, it doesn&#39;t add much value over the regular ladder. Have fun, though.\n\tdlwillson: I was thinking it would be as close to live as possible, with timings of hours, rather than days. :-(\n\n37) Felix: Build G1 Felix\n\tdlwillson: And finally, about the move, thanks very much!\n\tFelix: I&#39;d prefer that myself, but since I am frequently playing games on here at a slow pace every day anyway, it didn&#39;t sound so bad to me. I&#39;d really love to have a faster paced tourney one day though!\n\n38) dlwillson: Move Y3 Field Gronch\n\n39) Felix: Sacrifice R2 Gronch\nPass\nPass\n\n40) dlwillson: Trade Y3 R3 Gronch\n\n41) Felix: Build G2 Gronch\n\n42) dlwillson: Attack G2 Gronch\n\n43) Felix: Sacrifice G2 Felix\nBuild G2 Gronch\nBuild G3 Felix\nCatastrophe Gronch Green\n\n44) dlwillson: B Y3 Field\n\n45) Felix: Move G3 Felix Sky\n\n46) dlwillson: Sacrifice Y2 Sky\nMove Y3 Field Splinch\nMove Y1 Field Gronch\n\tdlwillson: Ooh. Good move! Now, I have to think!\n\n47) Felix: Trade G3 R3 Sky\n\tdlwillson: OK, that&#39;s the best I could come up with from my unfavorable choices.\n\tFelix: Pretty good response! I&#39;m still in a bad situation without any more yellow.\n\n48) dlwillson: S Y1 Sky\nM Y2 Field Gronch\n\n49) Felix: Move R2 Splinch Field\n\n50) dlwillson: Trade Y3 G3 Dlwillson\n\n51) Felix: A R1 Field\n\n52) dlwillson: S G3 Dlwillson\nB Y1 Dlwillson\nB Y2 Splinch\nB Y3 Dlwillson\n\n53) Felix: Build G1 Felix\n\n54) dlwillson: S Y3 Dlwillson\nM Y2 Splinch Felix\nM Y2 Gronch Felix\nM Y1 Gronch Felix\nC Felix Y\n\n55) Felix: T G1 Y1 Felix\n\n56) dlwillson: M Y3 Splinch Felix\n\tFelix: And that&#39;s a wrap! Well played\n\n57) Felix: Sacrifice Y1 Felix\nMove R3 Sky Felix\n\tdlwillson: TY! Playing with you and Wil has improved me.\n\n58) dlwillson: S R3 Gronch\nA G1 Felix\nAttack R3 Felix\nPass\n\tFelix: Playing against both of you has helped me improve as well! Not enough for this game, but I&#39;ll have you next time ;)\n\tdlwillson: Thanks again! Good game as always!\n\tFelix: Congrats! Thanks for playing. Always fun :) You&#39;ve been a beast lately. Great playing!\n\n\nHomeworlds Online (SDG# 32881)\nStarted: 2017.8.11, Ended: 2017.9.10\nParticipants: Amnykon (S), MobyNostromo (N)\nWinner: Amnykon\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Amnykon: Homeworld B3 Y2 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Amnykon: Build G1 Amnykon\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Amnykon: Build G1 Amnykon\n\n7) MobyNostromo: T Y1 G1 Mobynostromo\n\n8) Amnykon: Trade G1 Y1 Amnykon\n\n9) MobyNostromo: B G1 Mobynostromo\n\n10) Amnykon: Discover G1 Amnykon Y1 Far\n\n11) MobyNostromo: D G1 Mobynostromo G3 Chromium\n\n12) Amnykon: Build G2 Amnykon\n\n13) MobyNostromo: D G1 Mobynostromo Y3 Azo\n\n14) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Far\nBuild G3 Far\nBuild G3 Amnykon\n\n15) MobyNostromo: M G1 Azo Far\nC Far G\n\n16) Amnykon: Discover G2 Amnykon Y1 Far\n\n17) MobyNostromo: Build Y2 Mobynostromo\n\n18) Amnykon: Build G1 Amnykon\n\n19) MobyNostromo: Trade Y1 B1 Mobynostromo\n\n20) Amnykon: Sacrifice G3 Amnykon\nBuild G1 Far\nBuild G2 Far\nBuild G3 Amnykon\n\n21) MobyNostromo: S Y2 Mobynostromo\nM G1 Chromium Far\nD B1 Mobynostromo Y3 Oxide\nC Far G\n\n22) Amnykon: Discover G1 Amnykon Y1 Ye\n\n23) MobyNostromo: B Y1 Mobynostromo\n\n24) Amnykon: Discover Y1 Amnykon G1 Green\n\n25) MobyNostromo: B Y2 Mobynostromo\n\n26) Amnykon: Build G1 Amnykon\n\n27) MobyNostromo: T Y2 G2 Mobynostromo\n\n28) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Ye\nBuild G3 Amnykon\nBuild Y2 Green\n\n29) MobyNostromo: T Y1 B1 Mobynostromo\n\n30) Amnykon: Discover G1 Ye Y3 Yyy\n\n31) MobyNostromo: M G2 Mobynostromo Oxide\n\n32) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild G3 Yyy\nBuild G3 Yyy\n\tMobyNostromo: I didn&#39;t resign our other game!!\n\n\tAmnykon: A) you only had 3 small ships. I would have clearly won\r\nB) I think the 10 day time limit is exstream. If you reach that, it would seem that you abandoned the game,which is a forfeit. If you said you were leaving town or something, it would be another story.\n\tMobyNostromo: A) You didn&#39;t give ten days; you barely let 24 hours pass by before you claimed your win.\r\nB) Real life gets in the way of these things; if you can&#39;t let the fun roll without having to claim your &quot;victory,&quot; then the next time you want to play this, lose my number.\r\nC) Here&#39;s a real resignation.\n\nHomeworlds Online (SDG# 32937)\nStarted: 2017.8.11, Ended: 2017.9.7\nParticipants: MobyNostromo (S), Amnykon (N)\nWinner: Amnykon\n\n1) Amnykon: Homeworld B1 Y2 G3\n\n2) MobyNostromo: H B2 G1 Y3\n\n3) Amnykon: Build G1 Amnykon\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Amnykon: Build G1 Amnykon\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Amnykon: Discover G1 Amnykon B3 Blue\n\n8) MobyNostromo: T Y1 R1 Mobynostromo\n\n9) Amnykon: Build G2 Amnykon\n\n10) MobyNostromo: M R1 Mobynostromo Blue\n\n11) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Blue\nBuild G2 Blue\nBuild G3 Amnykon\n\n12) MobyNostromo: A G1 Blue\n\n13) Amnykon: Trade G2 R2 Amnykon\n\n14) MobyNostromo: T R1 Y1 Blue\n\n15) Amnykon: Sacrifice R2 Amnykon\nAttack Y1 Blue\nAttack G1 Blue\n\n16) MobyNostromo: M Y1 Mobynostromo Blue\n\n17) Amnykon: Discover G1 Blue G2 Green\n\n18) MobyNostromo: B Y1 Mobynostromo\n\n19) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild G3 Blue\nBuild G3 Green\n\n20) MobyNostromo: T Y1 R1 Mobynostromo\n\n21) Amnykon: Trade G2 R2 Blue\n\n22) MobyNostromo: M Y1 Blue Amnykon\n\n23) Amnykon: Sacrifice G3 Green\nBuild G2 Green\nBuild G3 Blue\nBuild R1 Blue\n\n24) MobyNostromo: B R1 Mobynostromo\n\n25) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild Y1 Blue\nBuild Y2 Blue\n\n26) MobyNostromo: D R1 Mobynostromo Y3 Bismuth\n\n27) Amnykon: Sacrifice Y2 Blue\nMove Y1 Blue Mobynostromo\nMove Y1 Blue Mobynostromo\n\n28) MobyNostromo: A Y1 Mobynostromo\n\n29) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild Y2 Mobynostromo\nBuild R2 Blue\nCatastrophe Mobynostromo Yellow\n\n\nHomeworlds Online (SDG# 32938)\nStarted: 2017.8.12, Ended: 2017.9.29\nParticipants: MobyNostromo (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld Y1 B2 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\torangeblood: Greetings! I&#39;m still learning this game, but I love it so far.\n\n3) orangeblood: Build G1 Orangeblood\n\tMobyNostromo: Me too. Let&#39;s have fun!\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) orangeblood: Trade G1 B1 Orangeblood\n\n6) MobyNostromo: T Y1 G1 Mobynostromo\n\n7) orangeblood: Build G1 Orangeblood\n\n8) MobyNostromo: Build Y1 Mobynostromo\n\n9) orangeblood: Discover G1 Orangeblood B3 Pollux\n\n10) MobyNostromo: T Y1 B1 Mobynostromo\n\n11) orangeblood: B B2 Orangeblood\n\n12) MobyNostromo: B B2 Mobynostromo\n\n13) orangeblood: Trade B2 Y2 Orangeblood\n\n14) MobyNostromo: D G1 Mobynostromo Y3 Azo\n\n15) orangeblood: Sacrifice Y2 Orangeblood\nMove B1 Orangeblood Azo\nMove B1 Azo Mobynostromo\nCatastrophe Mobynostromo Blue\n\n16) MobyNostromo: B Y1 Mobynostromo\n\n17) orangeblood: Trade G1 Y1 Pollux\n\n18) MobyNostromo: M Y1 Mobynostromo Pollux\n\n19) orangeblood: Build G1 Orangeblood\n\n20) MobyNostromo: B Y2 Mobynostromo\n\n21) orangeblood: Trade G1 R1 Orangeblood\n\n22) MobyNostromo: T Y1 R1 Pollux\n\n23) orangeblood: Sacrifice R1 Orangeblood\nAttack R1 Pollux\n\n24) MobyNostromo: M Y2 Mobynostromo Pollux\n\n25) orangeblood: Build G1 Orangeblood\n\n26) MobyNostromo: T Y2 B2 Pollux\n\n27) orangeblood: Move Y1 Pollux Mobynostromo\n\n28) MobyNostromo: B Y1 Mobynostromo\n\n29) orangeblood: Build Y2 Mobynostromo\nCatastrophe Mobynostromo Yellow\n\torangeblood: Thanks for the game!\n\tMobyNostromo: Thanks!!\n\n\nHomeworlds Online (SDG# 32844)\nStarted: 2017.8.13, Ended: 2017.8.17\nParticipants: ts52 (S), Amnykon (N)\nWinner: Amnykon\n\n1) Amnykon: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) Amnykon: Build G1 Amnykon\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Amnykon: Discover G1 Amnykon B3 Blue\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) Amnykon: Build G1 Amnykon\n\n8) ts52: Build G2 Ts52\n\n9) Amnykon: Trade G1 Y1 Amnykon\n\n10) ts52: Trade G2 Y2 Ts52\n\n11) Amnykon: Build G1 Amnykon\n\n12) ts52: Build G2 Ts52\n\n13) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Blue\nBuild G2 Blue\nBuild G3 Amnykon\n\n14) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild Y1 Ts52\n\n15) Amnykon: Trade G2 Y2 Blue\n\n16) ts52: Move Y1 Ts52 Gonzo\n\n17) Amnykon: Discover G2 Blue B2 Mba\n\n18) ts52: Discover Y2 Ts52 G2 Kermit\n\n19) Amnykon: Trade Y1 B1 Amnykon\n\n20) ts52: Trade G1 R1 Gonzo\n\n21) Amnykon: Trade G1 R1 Amnykon\n\n22) ts52: Build Y1 Gonzo\n\n23) Amnykon: Sacrifice G3 Amnykon\nBuild G1 Blue\nBuild G1 Blue\nBuild G3 Mba\n\n24) ts52: Sacrifice Y2 Kermit\nMove G3 Gonzo Blue\nMove G3 Blue Amnykon\n\n25) Amnykon: Sacrifice Y2 Blue\nMove G3 Mba Ts52\nMove G2 Mba Ts52\nCatastrophe Ts52 G\n\tts52: Very well done! I did not see that coming. Good game!\n\tAmnykon: Gg\r\nI was hopping abandoning my home world and building 3 green on another system was not a mistake\r\n\r\nI had to try something. You managed the stock well. If I built something, you would boule better. \n\n\nHomeworlds Online (SDG# 32774)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.13, Ended: 2017.8.22\nParticipants: wil (S), semicolon (N)\nWinner: wil\n\n1) semicolon: Homeworld R2 B1 G3\n\n2) wil: H B3 Y1 G3\n\twil: Wrlcome  to SDG... How familiar are you with the game?\n\n3) semicolon: Build G1 Semicolon\n\tsemicolon: Familiar with the game, new to SDG. Didn&#39;t look at the ladder until after I accepted the game though; probably going to lose!\n\n4) wil: B G1 Wil\n\twil: Lol, losing is the way to learn...\n\n5) semicolon: Trade G1 Y1 Semicolon\n\n6) wil: T G1 Y1 Wil\n\n7) semicolon: B G1 Semicolon\n\twil: And don&#39;t worry about the ladder, I don&#39;t deserve to be at the top.\n\n8) wil: B Y2 Wil\n\n9) semicolon: B Y2 Semicolon\n\n10) wil: T Y1 B1 Wil\n\n11) semicolon: D G1 Semicolon Y3 Y3\n\n12) wil: B B1 Wil\n\n13) semicolon: B G1 Y3\n\n14) wil: Discover B1 Wil Y2 Y2\n\n15) semicolon: B G1 Semicolon\n\n16) wil: Build B2 Wil\n\n17) semicolon: T Y2 B2 Semicolon\n\n18) wil: Discover B1 Wil Y2 Why2\n\n19) semicolon: D B2 Semicolon G3 G3\n\n20) wil: S G3 Wil\nB B2 Why2\nB B3 Y2\nB B3 Wil\n\n21) semicolon: D G1 Y3 R2 R2\n\n22) wil: S B2 Why2\nT B3 R3 Y2\nT B3 G3 Wil\n\n23) semicolon: B G2 Semicolon\n\n24) wil: S G3 Wil\nB B2 Y2\nB B3 Why2\nB B3 Wil\n\n25) semicolon: T B2 G2 G3\n\n26) wil: M B3 Why2 G3\n\n27) semicolon: S G3 Semicolon\nB G2 Y3\nB G3 R2\nB G3 Semicolon\n\n28) wil: M B2 Y2 Y3\n\n29) semicolon: B Y1 Semicolon\n\n30) wil: Sacrifice R3 Y2\nAttack G2 G3\nAttack G2 Y3\nAttack G1 Y3\n\n31) semicolon: T G3 Y3 Semicolon\n\n32) wil: T B3 Y3 G3\n\n33) semicolon: S Y3 Semicolon\nM G1 Semicolon Y3\nM G1 R2 Y3\nC Y3 G\nM G3 R2 Y3\n\n34) wil: B Y3 G3\n\tsemicolon: and I think that&#39;s game\n\tsemicolon: Well played :) I&#39;ll have to try again some time\n\n35) semicolon: M G3 Y3 Semicolon\n\n36) wil: S G2 G3\nB B2 Y3\nB B3 Y3\n\tsemicolon: Could you not have sacrificed Y2, moved Y3 to my Homeworld and start capturing everything?\n\twil: Unless I missed something you would have grown a y3 and blown them all up.\r\n\n\n37) semicolon: M G2 Semicolon Y3\n\n38) wil: S B2 Y3\nT B3 R3 Y3\nT B3 G3 Wil\n\n39) semicolon: M G2 Y3 Why2\n\n40) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Wil\n\n41) semicolon: B G1 Why2\n\twil: now my route to the end is secure.\n\n42) wil: S Y3 G3\nM B1 Y2 G3\nM Y3 G3 Semicolon\nM B3 Y3 Semicolon\n\n\tsemicolon: Good game :)\n\twil: This is a game (like most) of refraining from really bad moves and capitalizing on the mistakes of others.  \n\nHomeworlds Online (SDG# 32886)\nVariants: &quot;Unrated&quot;\nStarted: 2017.8.13, Ended: 2017.9.20\nParticipants: Felix (S), orangeblood (N)\nWinner: Felix\n\n1) orangeblood: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld R2 B3 G3\n\torangeblood: Hi again... I&#39;ve finally made my way through a backlog of games on Little Golem, and I&#39;m ready to get back into HW.\n\tFelix: Excellent! Welcome back. I hope you have fun :)\n\n3) orangeblood: Build G1 Orangeblood\n\n4) Felix: Build G1 Felix\n\n5) orangeblood: Trade G1 Y1 Orangeblood\n\n6) Felix: Trade G1 Y1 Felix\n\n7) orangeblood: Build Y2 Orangeblood\n\n8) Felix: Build Y2 Felix\n\n9) orangeblood: Build G1 Orangeblood\n\n10) Felix: Discover Y1 Felix B1 Point\n\n11) orangeblood: Discover Y1 Orangeblood G3 Arcturus\n\n12) Felix: Build G1 Felix\n\n13) orangeblood: Discover G1 Orangeblood B3 Antares\n\tFelix: I want so badly to sacrifice my g3 for a bunch of yellows, but then you could just catastrophe them!\n\torangeblood: Do you mean because you could grab two large ones in the process?\n\n14) Felix: Move G1 Felix Point\n\tFelix: I wouldn&#39;t really gain anything. I&#39;d just end up trading my g3 for a y3, basically.\n\n15) orangeblood: Trade Y2 R2 Orangeblood\n\n16) Felix: Build Y2 Point\n\torangeblood: Gotcha. I was just trying to understand the basics of what you meant, but had to think about it for awhile.\n\n17) orangeblood: T G1 B1 Antares\n\tFelix: No worries. I&#39;m not sure I fully understood it myself :)\n\n18) Felix: Trade Y2 R2 Point\n\n19) orangeblood: Move R2 Orangeblood Antares\n\n20) Felix: Build Y2 Point\n\n21) orangeblood: Build G1 Orangeblood\n\n22) Felix: Sacrifice G3 Felix\nBuild Y2 Point\nBuild Y3 Felix\nBuild Y3 Felix\n\n23) orangeblood: M Y1 Arcturus Point\nCatastrophe Point Yellow\n\n24) Felix: Move Y3 Felix Point\n\torangeblood: I feel you were baiting me into that, but we&#39;ll see what happens... :)\n\n25) orangeblood: Trade B1 Y1 Antares\n\tFelix: Somewhat :) It&#39;s usually worth it to take a catastrophe if it will leave your opponent without a particular color temporarily... especially if that color is yellow\n\n26) Felix: Trade Y3 G3 Felix\n\n27) orangeblood: Move G1 Orangeblood Antares\n\n28) Felix: Move Y3 Point Antares\n\n29) orangeblood: Build Y1 Antares\n\n30) Felix: Sacrifice Y3 Antares\nMove G1 Point Antares\nMove G1 Antares Orangeblood\nMove R2 Point Antares\n\n31) orangeblood: Sacrifice R2 Antares\nAttack G1 Orangeblood\nPass\n\tFelix: Fantastic move. You put me in a tight spot, but hopefully this will work :)\n\n32) Felix: A G1 Antares\n\torangeblood: Any fantastic moves are just a result of me lashing out with my back to the wall, haha. Your move was great. I can&#39;t believe how deep this game is.\n\n33) orangeblood: Move Y1 Antares Orangeblood\n\n34) Felix: Attack Y1 Antares\n\n35) orangeblood: Trade G1 R1 Orangeblood\n\tFelix: It&#39;s so deep! I&#39;ve been playing for a while now and am constantly surprised.\n\n36) Felix: Build Y2 Antares\n\n37) orangeblood: D Y1 Orangeblood G3 Altair\n\n38) Felix: T Y1 B1 Antares\n\n39) orangeblood: Build G1 Orangeblood\n\n40) Felix: Build G1 Antares\n\n41) orangeblood: Move G1 Orangeblood Altair\n\n42) Felix: B G2 Antares\n\n43) orangeblood: Build G2 Altair\n\n44) Felix: Sacrifice Y2 Antares\nMove G1 Antares Orangeblood\nMove G1 Orangeblood Altair\nCatastrophe Altair Green\n\n45) orangeblood: Build R1 Orangeblood\n\n46) Felix: Trade G1 Y1 Antares\n\n47) orangeblood: Trade R1 B1 Orangeblood\n\torangeblood: It was my intention to try the &quot;banker&quot; strategy in this game. Do you have any tips on how to actually get to the point where I could even try it? haha...\n\tFelix: I&#39;m not so good at that strategy myself. Basically you just want to move g1s or g2s out to large stars that you want to keep away from me, but you can&#39;t really cash those in until that color is down to only larges. So if you moved a g1 to a y3, for instance, then if all the y1s and y2s were depleted you could sac that g1 to build the y3 (but only if you had a yellow ship elsewhere where you could build it.) It&#39;s not an easy strategy and sometimes requires more effort than it&#39;s worth, in my opinion.\n\n48) Felix: Build Y1 Antares\n\n49) orangeblood: Build R1 Orangeblood\n\torangeblood: I&#39;ll have to try something else next time. ;)\n\n50) Felix: B Y2 Felix\n\n\torangeblood: I&#39;m out of ideas... thanks for the game!\n\tFelix: Good game! Thanks for playing :)\n\nHomeworlds Online (SDG# 32842)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.14, Ended: 2017.8.23\nParticipants: velgarath2 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tvelgarath2: Hi Felix!\r\nLet&#39;s play another one. I will try new things on this game!\r\nThanks for playing\n\tFelix: Hello again! I&#39;m happy to play again. I hope you have fun :)\n\n2) velgarath2: Homeworld Y3 G1 B3\n\n3) Felix: Build G1 Felix\n\n4) velgarath2: Build B1 Velgarath2\n\n5) Felix: Trade G1 Y1 Felix\n\n6) velgarath2: Build B1 Velgarath2\n\n7) Felix: Build Y1 Felix\n\n8) velgarath2: Trade B1 Y1 Velgarath2\n\n9) Felix: Build Y2 Felix\n\n10) velgarath2: Build Y2 Velgarath2\n\n11) Felix: Discover Y1 Felix B1 Point\n\n12) velgarath2: Trade Y1 R1 Velgarath2\n\n13) Felix: Discover Y1 Felix Y1 C3x\n\n14) velgarath2: Discover Y2 Velgarath2 G2 Eden\n\n15) Felix: Sacrifice G3 Felix\nBuild Y2 C3x\nBuild Y3 Felix\nBuild Y3 Point\n\n16) velgarath2: Move Y2 Eden C3x\nCatastrophe C3x Y\n\n17) Felix: Trade Y3 G3 Felix\n\n18) velgarath2: Trade B3 G3 Velgarath2\n\n19) Felix: Trade Y3 G3 Point\n\n20) velgarath2: Build B1 Velgarath2\n\n21) Felix: Build Y1 Felix\n\n22) velgarath2: Discover B1 Velgarath2 G2 Somewhere\n\n23) Felix: Discover Y1 Felix Y1 Tinop\n\n24) velgarath2: Sacrifice G3 Velgarath2\nBuild B2 Somewhere\nBuild B2 Somewhere\nBuild B3 Velgarath2\n\n25) Felix: Build Y2 Felix\n\n26) velgarath2: Build B3 Velgarath2\n\tFelix: Good move!\n\n27) Felix: Sacrifice G3 Felix\nBuild Y2 Tinop\nBuild Y3 Point\nBuild Y3 Felix\n\n28) velgarath2: Trade B3 G3 Velgarath2\n\tvelgarath2: That was also a good move!\n\n29) Felix: Trade Y3 R3 Point\n\n30) velgarath2: Trade B3 Y3 Velgarath2\n\n31) Felix: Move R3 Point Somewhere\n\n32) velgarath2: Build B3 Velgarath2\n\n33) Felix: Attack B2 Somewhere\n\n34) velgarath2: Sacrifice G3 Velgarath2\nBuild B3 Velgarath2\nBuild B3 Somewhere\nBuild R1 Velgarath2\nCatastrophe Somewhere Blue\n\n35) Felix: Trade Y3 G3 Felix\n\n36) velgarath2: Discover Y3 Velgarath2 G2 Greenland\n\tFelix: Interesting move! I like it\n\n37) Felix: Build Y3 Point\n\n38) velgarath2: Trade B3 G3 Velgarath2\n\n39) Felix: Move Y3 Point Somewhere\n\n40) velgarath2: Move R1 Velgarath2 Greenland\n\n41) Felix: Trade Y2 R2 Felix\n\n42) velgarath2: Build Y2 Greenland\n\n43) Felix: Discover G3 Point B2 Ocean\n\n44) velgarath2: Move Y2 Greenland Tinop\nCatastrophe Tinop Yellow\n\n45) Felix: Sacrifice Y2 Felix\nMove G3 Ocean Velgarath2\nMove Y3 Somewhere Velgarath2\n\n46) velgarath2: Attack Y3 Velgarath2\n\n47) Felix: S R3 Somewhere\nA B3 Velgarath2\nA Y3 Velgarath2\nA G3 Velgarath2\n\tvelgarath2: wow! This looks ugly!\n\n48) velgarath2: Move Y3 Greenland Velgarath2\n\n49) Felix: Sacrifice G3 Velgarath2\nBuild G1 Velgarath2\nBuild G1 Velgarath2\nBuild Y1 Velgarath2\nCatastrophe Velgarath2 Yellow\nCatastrophe Velgarath2 Green\n\tFelix: I&#39;m afraid it does! Only being able to attack once can be very dangerous if the opponent can attack twice or three times\n\n\tFelix: Good game! Exciting finish :)\n\tvelgarath2: Thank you! A good learning experience. Lessons learned!\n\nHomeworlds Online (SDG# 32953)\nStarted: 2017.8.14, Ended: 2017.10.6\nParticipants: velgarath2 (S), maka (N)\nWinner: velgarath2\n\n1) maka: Homeworld G3 Y1 B3\n\n2) velgarath2: Homeworld Y2 B3 G3\n\n3) maka: Build B1 Maka\n\n4) velgarath2: Build G1 Velgarath2\n\n5) maka: Trade B1 R1 Maka\n\n6) velgarath2: Trade G1 R1 Velgarath2\n\n7) maka: Build B1 Maka\n\n8) velgarath2: Build G1 Velgarath2\n\n9) maka: Trade B1 G1 Maka\n\n10) velgarath2: Trade G1 Y1 Velgarath2\n\n11) maka: Discover G1 Maka B2 Loko\n\n12) velgarath2: Build G1 Velgarath2\n\n13) maka: Build B1 Maka\n\n14) velgarath2: Discover G1 Velgarath2 Y1 Katapum\n\n15) maka: Build B1 Maka\n\n16) velgarath2: Build Y2 Velgarath2\n\n17) maka: Trade B3 Y3 Maka\n\n18) velgarath2: Trade Y2 B2 Velgarath2\n\n19) maka: Build Y2 Maka\n\n20) velgarath2: Discover Y1 Velgarath2 G1 Ultima\n\n21) maka: Trade Y3 R3 Maka\n\n22) velgarath2: Build G2 Velgarath2\n\n23) maka: Move Y2 Maka Loko\n\n24) velgarath2: Build G2 Katapum\n\n25) maka: Move R3 Maka Loko\n\n26) velgarath2: Build Y2 Ultima\n\tmaka: Perdona por ir tan lento. Pero esta vez voy a intentar que no se me vaya la olla y terminemos el juego :)\n\tmaka: Tu llegaste a jugar al attangle aqu&iacute; no? Recuerdo que me gustaba mucho. Podr&iacute;amos echar una tb jeje\n\n27) maka: Build Y3 Loko\n\n28) velgarath2: Trade G3 Y3 Velgarath2\n\n29) maka: Sacrifice Y2 Loko\nMove Y3 Loko Katapum\nMove R3 Loko Katapum\n\n30) velgarath2: Sacrifice Y2 Ultima\nMove G2 Katapum Loko\nMove G2 Loko Maka\n\n31) maka: Attack G1 Katapum\n\n32) velgarath2: Sacrifice R1 Velgarath2\nAttack R1 Maka\n\tmaka: otras! me la has jugado bien :D\n\tvelgarath2: Bueno....la cosa tampoco esta muy tranquila para mi. No me gusta nada esa nave roja amenazante...\n\n33) maka: Sacrifice Y3 Katapum\nMove R3 Katapum Loko\nMove R3 Loko Maka\nPass\n\n34) velgarath2: Build G2 Maka\n\n35) maka: Attack G2 Maka\n\n36) velgarath2: Build G3 Maka\nCatastrophe Maka Green\n\n37) maka: Attack R1 Maka\n\tmaka: bueno... muy bueno... me has pillado totalmente\r\n\n\tmaka: se me da fatal este juego :D\r\n\n\n38) velgarath2: Build G2 Velgarath2\n\n39) maka: Build G2 Loko\n\n40) velgarath2: Trade G2 R2 Velgarath2\n\n41) maka: Build G2 Loko\n\n42) velgarath2: Build G3 Velgarath2\n\n43) maka: Trade G2 R2 Loko\n\n44) velgarath2: Build Y2 Ultima\n\n45) maka: Trade G2 Y2 Loko\n\n46) velgarath2: Build Y3 Velgarath2\n\n47) maka: Build Y3 Loko\n\n48) velgarath2: Move Y3 Velgarath2 Maka\n\n49) maka: Attack Y3 Maka\n\tmaka: perdona que tarde tanto... tengo mogoll&oacute;n de l&iacute;o estos d&iacute;as y se ma va la olla... \n\n50) velgarath2: Move Y3 Velgarath2 Maka\n\n51) maka: Move Y3 Maka Velgarath2\n\n52) velgarath2: Sacrifice R2 Velgarath2\nAttack R3 Maka\nAttack R1 Maka\n\n\tmaka: ostras... no recordaba que se pudiera hacer eso... pues nada... ya me tienes :) \n\tvelgarath2: buena partida maka!\n\nHomeworlds Online (SDG# 32952)\nStarted: 2017.8.14, Ended: 2017.11.13\nParticipants: velgarath2 (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld Y1 B2 G3\n\n2) velgarath2: Homeworld R3 B2 G3\n\tvelgarath2: Thank  you for playing!\n\n3) fogus: Build G1 Fogus\n\n4) velgarath2: Build G1 Velgarath2\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) velgarath2: Trade G1 Y1 Velgarath2\n\n7) fogus: Discover Y1 Fogus G3 Cribbage\n\n8) velgarath2: Build Y2 Velgarath2\n\n9) fogus: Build Y2 Cribbage\n\n10) velgarath2: Discover Y2 Velgarath2 G1 Hyperspace\n\n11) fogus: Build G1 Fogus\n\n12) velgarath2: Build Y2 Hyperspace\n\n\n13) fogus: Discover G1 Fogus Y3 Gops\n\n14) velgarath2: Build Y3 Velgarath2\n\n15) fogus: Discover Y1 Cribbage G1 Gin\n\n16) velgarath2: Discover Y2 Hyperspace Y3 Casiopea\n\n17) fogus: Build G2 Fogus\n\n18) velgarath2: Build G2 Velgarath2\n\n19) fogus: Build G2 Gops\n\n20) velgarath2: Trade G2 R2 Velgarath2\n\n21) fogus: Build G2 Gops\n\n22) velgarath2: Move R2 Velgarath2 Gin\n\n23) fogus: Move Y1 Gin Velgarath2\n\n24) velgarath2: Move Y1 Velgarath2 Gin\n\n25) fogus: Discover Y1 Velgarath2 B1 Hearts\n\n26) velgarath2: Move R2 Gin Gops\n\n27) fogus: Trade Y1 R1 Hearts\n\n28) velgarath2: Move R2 Gops Hearts\n\n29) fogus: Build Y1 Cribbage\n\n\nHomeworlds Online (SDG# 32959)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.15, Ended: 2017.8.28\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H B3 Y2 G3\n\twil: Time to get knocked off my perch\n\n2) dlwillson: H Y3 B1 G3\n\tdlwillson: I hope so! Good luck and have fun!\n\n3) wil: B G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\n5) wil: T G1 B1 Wil\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\n8) dlwillson: B B2 Dlwillson\n\n9) wil: T B2 G2 Wil\n\n10) dlwillson: Build G1 Dlwillson\n\n11) wil: B B2 Wil\n\n12) dlwillson: Discover B1 Dlwillson G2 Field\n\n13) wil: T B2 R2 Wil\n\n14) dlwillson: Trade G1 R1 Dlwillson\n\n15) wil: Trade G2 Y2 Wil\n\n16) dlwillson: B B2 Dlwillson\n\n17) wil: D B1 Wil G1 G1\n\n18) dlwillson: D B2 Dlwillson Y2 Golden\n\n19) wil: B Y1 Wil\n\n20) dlwillson: M B2 Golden G1\n\n21) wil: B B2 G1\n\twil: I really like that move\n\n22) dlwillson: B B3 Field\n\n23) wil: S Y2 Wil\nM B1 G1 Field\nM B2 G1 Field\nC Field B\n\n24) dlwillson: B B1 G1\n\n25) wil: B Y1 Wil\n\n26) dlwillson: T B2 Y2 G1\n\n27) wil: M Y1 Wil G1\n\n28) dlwillson: Build R1 Dlwillson\n\n29) wil: B Y1 G1\n\n30) dlwillson: T B1 R1 G1\n\n31) wil: B R2 Wil\n\n32) dlwillson: B R2 G1\n\n33) wil: M R2 Wil G1\n\n34) dlwillson: A R2 G1\n\tdlwillson: Interesting build-up!\n\n35) wil: Build R3 Wil\n\n36) dlwillson: Sacrifice Y2 G1\nMove R1 G1 Wil\nMove R2 G1 Wil\nCatastrophe Wil R\n\twil: you in the tourney?\n\n37) wil: B Y2 Wil\n\tdlwillson: I have been teaching SFS Linux Camp for the last 4 days. I haven&#39;t had time to read up on it. Link?\n\twil: Homeworlds tournament starting\r\n\r\nJust trying to make sure everyone knows...\r\n\r\nhttps://docs.google.com/document/d/1hkxl9Mw2XAv4-efyG_hURgV9lx11vendySVaKzZvg6U/edit?usp=sharing\n\twil: Does that mean you can tell me.how to clean out my boot and make my computer work faster?\n\n38) dlwillson: A Y1 G1\n\n39) wil: M Y1 Wil G1\n\tdlwillson: Yes, but only if you&#39;re running Linux. I don&#39;t do Windows or Mac.\n\n40) dlwillson: Sacrifice R2 G1\nAttack Y1 G1\nAttack Y1 G1\n\twil: Yeah, it...it Linux.... I think illegal to run if.you don&#39;t know what you are.doing..\n\n41) wil: T Y2 R2 Wil\n\tdlwillson: Then yes, I can help you clean up your boot and speed up your system.\r\n\r\nWant to have the conversation here or in email? Either way, run `df -hT` and return the output to me and: Do you have a spinning disc or a solid-state drive? And, run `top -bn1 | head -n 20` and return the output of that.\n\tdlwillson: I&#39;m going to skip the tournament. 2/2/7 is just too slow. The tournament will still be running in six months, and at that rate, it doesn&#39;t add much value over the regular ladder. Have fun, though.\n\twil: Let&#39;s email...theallyns@gmail.com\n\twil: Lol somebody wasn&#39;t thinking\n\n42) dlwillson: Discover Y1 G1 G2 Field\n\tdlwillson: Why didn&#39;t you build first, then trade?\n\tdlwillson: Oh, wait, I think I see. I think I could have locked you out of red.\n\n43) wil: B R1 Wil\n\tdlwillson: Email sent from DLWillson@TheGeek.NU. Check your junk if you don&#39;t see it.\n\twil: I saw it, didn&#39;t get to it today..thx innadvance for the help.\n\n44) dlwillson: M R1 Dlwillson Field\n\twil: This has not gone well...   IMA gonna return you to the hot seat.\n\n45) wil: M R2 Wil G1\n\tdlwillson: Yeah. Things are looking pretty good for South right now.\n\n46) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Field\nB Y3 G1\n\n47) wil: B R2 Wil\n\n48) dlwillson: S R1 Field\nA R2 G1\n\n49) wil: D R2 Wil G1 Gone\n\n50) dlwillson: M Y2 Field Dlwillson\n\n51) wil: B R1 Gone\n\n52) dlwillson: B Y3 Field\n\n53) wil: B G1 Wil\n\n54) dlwillson: Sacrifice B2 Dlwillson\nTrade Y3 G3 Field\nTrade Y3 G3 G1\n\n55) wil: T G1 B1 Wil\n\n56) dlwillson: Sacrifice G3 Field\nBuild G1 G1\nBuild Y3 G1\nBuild Y3 Field\n\n57) wil: B B1 Wil\n\n58) dlwillson: Sacrifice Y3 Field\nMove G1 G1 Wil\nMove G3 G1 Wil\nMove Y1 G1 Wil\n\n59) wil: M G3 Wil G1\n\n60) dlwillson: T G3 B3 Wil\nC Wil B\n\n61) wil: S R2 Gone\nA Y3 G1\nA R2 G1\n\n62) dlwillson: S Y2 Field\nM Y2 Dlwillson Wil\nM Y1 G1 Wil\nC Wil Y\n\twil: Congrats\n\tdlwillson: Thanks and good game, Wil!\n\n\nHomeworlds Online (SDG# 32813)\nVariants: &quot;Unrated&quot;\nStarted: 2017.8.16, Ended: 2017.8.30\nParticipants: twermund (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) twermund: Homeworld B2 Y1 G3\n\twil: New to the game?\n\n3) wil: B G1 Wil\n\ttwermund: Yup, first game\n\n4) twermund: Build G1 Twermund\n\twil: Do you have pyramids\n\ttwermund: Yup, just got my first full set last week. I got Treehouse and two pyramid stashes.\n\n5) wil: T G1 Y1 Wil\n\twil: Cool...this format is often tough to see actual relationships, sometimes worth creating your own physical set to review\n\n6) twermund: Trade G1 Y1 Twermund\n\twil: The beginning of the game is follow the leader...insuring you don&#39;t get frozen out of any economy (color/ability)\n\n7) wil: Build Y2 Wil\n\ttwermund: I&#39;ve watched a little bit of Homeworlds Theater on youtube so I have a rough idea of how the game works, I&#39;m just excited to get into more complicated games to play with my pyramids\n\n8) twermund: Trade Y1 B1 Twermund\n\twil: Read the rules? Understand attacks and catastrophes, end game scenarios?\n\twil: Pyramid Arcade has a few more.strategy games...but this is the best....turned a life long chess fan around.\n\n9) wil: B G1 Wil\n\ttwermund: I&#39;ve read them a few times out of the Pyramid Arcade rulebook, I just figured I would try a game and lose to learn more about the game :D\n\n10) twermund: Build B1 Twermund\n\twil: Warning... You jumped back out of yellow!\n\twil: Look at how many I lost to learn!!\n\n11) wil: T G1 B1 Wil\n\n12) twermund: Trade B1 Y1 Twermund\n\n13) wil: D Y1 Wil G1 G1\n\n14) twermund: Build G1 Twermund\n\n15) wil: B Y2 G1\n\n16) twermund: Build B1 Twermund\n\tDraw5PlayAll: It took me seven games before I won my first...\n\n17) wil: B Y3 Wil\n\n18) twermund: Build Y3 Twermund\n\n19) wil: S Y2 Wil\nD Y1 G1 R3 R3\nM Y1 R3 Twermund\nC Twermund Y\n\n20) twermund: Trade G1 R1 Twermund\n\twil: It was a little early to catastrophe, but something you should always watch out for.\n\ttwermund: haha, I was trying to get my blues ready for the same thing\n\ttwermund: haha, I was trying to get my blues ready for the same thing\n\n21) wil: B B2 Wil\n\n22) twermund: Trade B1 Y1 Twermund\n\twil: That focus on a gambit must not take younaway from looking around.  My Y&#39;s have been in play for that ever since I moved the little in forward and left a y2 at home..\n\ttwermund: Is there any rational move left for me at this point?\n\n23) wil: B G1 Wil\n\n24) twermund: Move R1 Twermund G1\n\n25) wil: T B2 R2 Wil\n\n26) twermund: Build R1 G1\n\twil: Are you wishing to donate a ship to me?  So nice...\n\n27) wil: S R2 Wil\nA R1 G1\nA R1 G1\n\n28) twermund: Build B1 Twermund\n\twil: That is what an attack looks like....thank you for the nice new ships.... Sacrificing a 2 pip ship gives me the power of 2 attacks anywhere in the galaxy\r\n\n\n\twil: Well that will end it...do you want to play another?\n\ttwermund: Yeah, that sounds good. I&#39;ll research my moves this time :D\n\ttwermund: Yeah, that sounds good. I&#39;ll research my moves this time :D\n\twil: Did you see the end move?\n\ttwermund: Nope, what was it?\n\ttwermund: oh! move the blue in and catastrophe\n\twil: Yes...any time someone changes to yellow or has yellows you really need to count potential moves...I just lost another game to that reality\n\nHomeworlds Online (SDG# 32974)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.18, Ended: 2017.11.13\nParticipants: Joe_Hill (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Joe_Hill: Homeworld Y1 B2 G3\n\tMandrel: Have a good game\n\tJoe_Hill: Hi Mandrel, I&#39;m pretty new to this game, looking to learn.\n\n3) Mandrel: Build G1 Mandrel\n\n4) Joe_Hill: Build G1 Joe_hill\n\tMandrel: Cool! I&#39;ve played a bunch but not really for a while so am pretty rusty, but feel free to ask any questions if you want\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) Joe_Hill: Trade G1 Y1 Joe_hill\n\n7) Mandrel: Build Y2 Mandrel\n\n8) Joe_Hill: Build G1 Joe_hill\n\n9) Mandrel: Discover Y1 Mandrel G3 Peer\n\n10) Joe_Hill: Trade G3 R3 Joe_hill\n\n11) Mandrel: Build Y2 Peer\n\n12) Joe_Hill: Trade Y1 B1 Joe_hill\n\n13) Mandrel: B G1 Mandrel\n\n14) Joe_Hill: Build G1 Joe_hill\n\n15) Mandrel: T G1 B1 Mandrel\n\n16) Joe_Hill: Discover G1 Joe_hill Y3 Tab\n\n17) Mandrel: M B1 Mandrel Peer\n\n18) Joe_Hill: Move B1 Joe_hill Tab\n\n19) Mandrel: B Y1 Mandrel\n\n20) Joe_Hill: Build G1 Tab\n\n21) Mandrel: B G2 Mandrel\n\n22) Joe_Hill: Build G2 Joe_hill\n\n23) Mandrel: Trade Y2 R2 Mandrel\n\n24) Joe_Hill: Trade G1 R1 Tab\n\n25) Mandrel: Move R2 Mandrel Tab\n\n26) Joe_Hill: Move R1 Tab Joe_hill\n\n27) Mandrel: Attack G1 Tab\n\n28) Joe_Hill: Discover B1 Tab Y2 Hab\n\n29) Mandrel: Build Y2 Mandrel\n\n30) Joe_Hill: Move G2 Joe_hill Peer\n\n31) Mandrel: Build Y3 Peer\n\n\nHomeworlds Online (SDG# 32976)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.18, Ended: 2017.10.11\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) ts52: Build G1 Ts52\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Discover B1 Ts52 G1 Kermit\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) ts52: Move Y1 Ts52 Kermit\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) ts52: Build G1 Ts52\n\n17) Draw5PlayAll: Build R1 Draw5playall\n\n18) ts52: Discover G1 Ts52 B1 Gonzo\n\n19) Draw5PlayAll: Build B2 G2\n\n20) ts52: B B2 Kermit\n\n21) Draw5PlayAll: Move R1 Draw5playall G2\n\n22) ts52: Trade B2 R2 Kermit\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) ts52: Build G2 Ts52\n\n25) Draw5PlayAll: Move Y1 Draw5playall G2\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Gonzo\n\n27) Draw5PlayAll: Trade B2 Y2 G2\n\n28) ts52: T G2 Y2 Gonzo\n\n29) Draw5PlayAll: Move Y1 G2 Draw5playall\n\n30) ts52: Discover G1 Gonzo Y2 Bigbird\n\n31) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R2 Kermit\n\n33) Draw5PlayAll: Move R1 Draw5playall B2\n\n34) ts52: Move R2 Kermit B2\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 B2\nBuild Y1 G2\nBuild Y3 Draw5playall\n\n36) ts52: Build Y3 Gonzo\n\n37) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G1 B2 Draw5playall\n\n38) ts52: Sacrifice G3 Gonzo\nBuild G3 Bigbird\nBuild R2 B2\nBuild R3 Kermit\n\n39) Draw5PlayAll: Sacrifice G3 B2\nBuild R3 B2\nBuild R3 G2\nBuild G3 Draw5playall\nCatastrophe B2 Red\n\n40) ts52: Trade G3 R3 Ts52\n\n41) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 G2\nBuild Y1 Draw5playall\n\n42) ts52: Build G3 Gonzo\n\tDraw5PlayAll: What is gonzo?\n\tts52: Gonzo the great! He&#39;s one of the Muppets. A Jim Henson character.\n\n43) Draw5PlayAll: Discover B1 G2 R1 R1\n\n44) ts52: Discover Y3 Gonzo R2 Elmo\n\tDraw5PlayAll: A lone peacemaker sets up camp at an unfamiliar place, ready for the burst of energy from home to terraform the planet.\n\n45) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 G2\nBuild B3 R1\n\n46) ts52: Sacrifice G3 Gonzo\nBuild B3 Kermit\nBuild G3 Gonzo\nBuild R2 Ts52\n\n47) Draw5PlayAll: Sacrifice Y1 G2\nDiscover B2 G2 Y1 Y1\n\n48) ts52: Move G2 Gonzo Elmo\n\n49) Draw5PlayAll: Move B2 Y1 Ts52\n\n50) ts52: Build Y1 Elmo\n\n51) Draw5PlayAll: Move Y1 Draw5playall G2\n\n52) ts52: Move B1 Kermit Bigbird\n\n53) Draw5PlayAll: Move Y1 G2 R1\n\n54) ts52: Attack B2 Ts52\n\n55) Draw5PlayAll: Move B3 R1 Ts52\n\n56) ts52: Attack B3 Ts52\n\n57) Draw5PlayAll: Move B1 R1 Ts52\nCatastrophe Ts52 Blue\n\n58) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild B1 Bigbird\nBuild B2 Bigbird\n\n59) Draw5PlayAll: Sacrifice Y2 G2\nMove R1 G2 Ts52\nMove R3 G2 Ts52\nCatastrophe Ts52 Red\n\n60) ts52: Move R3 Kermit Ts52\n\n61) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 R1\nBuild G3 Draw5playall\nPass\n\n62) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild R1 Kermit\nBuild R2 Ts52\n\n63) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n64) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild G3 Elmo\nBuild R3 Kermit\n\n\tDraw5PlayAll: I knew it was bad to blow your B2 star without a plan to take out the Y3, but I had no choice really. I was just hoping that maybe you would mess up and I _would_ get a shot at your Y3.\n\tts52: :) Yeah, it&#39;s always risky blowing up half a homeworld before you have a plan for the other half. Good game!\n\tDraw5PlayAll: Was there anything else I could have done?\n\tts52: Not sure. At some point I need to spend time studying homeworlds end games.\n\nHomeworlds Online (SDG# 32996)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.22, Ended: 2017.9.6\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y3 B2 G3\n\tts52: Have a good game!\n\n2) Felix: Homeworld B1 R3 G3\n\n3) ts52: Build G1 Ts52\n\tFelix: Thanks, you too! This one is for the Homeworlds tournament on Facebook :) Good luck!\n\tts52: I see you send all your challenges at once. I screwed up my first one (forgot to make it unrated and the note about the tournament) d&#39;oh!\n\n4) Felix: Build G1 Felix\n\tFelix: No worries. It will all be pretty laid back, I think :) I may have bitten off more than I can chew by challenging everyone at once, though... it&#39;s hard to focus on good strategy when I have 10 moves to make in 10 different games!\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G1 Kermit\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Build G1 Ts52\n\tFelix: I don&#39;t like the looks of this!\n\n12) Felix: Discover B1 Felix G2 Opus\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Felix: Build Y1 Felix\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Move Y2 Felix Opus\n\n17) ts52: Move Y1 Ts52 Kermit\n\n18) Felix: Build Y1 Opus\n\n19) ts52: Build Y2 Kermit\n\n20) Felix: Move Y1 Opus Kermit\n\n21) ts52: Trade Y1 R1 Kermit\n\n22) Felix: Build Y1 Kermit\n\n23) ts52: Build R1 Kermit\n\n24) Felix: S G3 Felix\nB Y2 Kermit\nB Y3 Opus\nB Y3 Felix\nC Kermit Yellow\n\n25) ts52: Trade R1 Y1 Kermit\n\n26) Felix: Trade Y3 R3 Opus\n\n27) ts52: Build G1 Ts52\n\n28) Felix: Move R3 Opus Kermit\n\n29) ts52: Build R1 Kermit\n\n30) Felix: Attack B2 Kermit\n\n31) ts52: Build R1 Kermit\nCatastrophe Kermit Red\n\n32) Felix: Build B2 Kermit\n\tFelix: Nice move!\n\n33) ts52: Discover G1 Ts52 Y1 Bigbird\n\tts52: Still hurts though. Well played.\n\n34) Felix: Trade B2 R2 Kermit\n\n35) ts52: T G1 R1 Ts52\n\n36) Felix: Attack Y1 Kermit\n\n37) ts52: Build G1 Ts52\n\n38) Felix: Trade Y3 G3 Felix\n\n39) ts52: Build G2 Bigbird\n\n40) Felix: Build Y2 Kermit\n\n41) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Ts52\n\n42) Felix: Sacrifice G3 Felix\nBuild Y2 Kermit\nBuild Y3 Opus\nBuild Y3 Felix\n\n43) ts52: Trade G3 R3 Ts52\n\n44) Felix: Build B2 Kermit\n\tFelix: Yellow versus green. In most lockouts like this, I&#39;d rather control yellow than any other color, but we&#39;ll see how this shakes out!\n\tts52: You may be right. But at the very least, it&#39;s an interesting game. :)\n\n45) ts52: Move R3 Ts52 Kermit\n\n46) Felix: Sacrifice Y2 Kermit\nMove B2 Kermit Ts52\nMove B2 Kermit Ts52\nCatastrophe Ts52 Blue\n\n47) ts52: Attack Y2 Kermit\n\tts52: d&#39;oh. saw it coming just a bit too late. this will be interesting....\n\n48) Felix: S Y3 Felix\nM Y3 Opus Ts52\nM Y2 Opus Ts52\nM Y1 Kermit Ts52\nC Ts52 Yellow\n\tFelix: I think I&#39;ve made my calculations correctly.... fingers crossed!\n\n\tts52: I suspect you have. Well played.\n\tFelix: Thank you! That was a very fun and interesting one.\n\tts52: It was definitely fun and interesting. Well done.\n\nHomeworlds Online (SDG# 32994)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.22, Ended: 2017.9.6\nParticipants: Babamots (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tBabamots: Thanks for getting so many challenges going! You&#39;ll fill out the game start form?\n\n2) Babamots: Homeworld B2 R1 G3\n\tFelix: No prob; thanks for organizing this! Yep, I just filled it out :)\n\n3) Felix: Build G1 Felix\n\n4) Babamots: Build G1 Babamots\n\n5) Felix: T G1 Y1 Felix\n\n6) Babamots: Build G1 Babamots\n\n7) Felix: Build Y1 Felix\n\n8) Babamots: Trade G1 Y1 Babamots\n\n9) Felix: Discover Y1 Felix G1 Bazoik\n\n10) Babamots: Build Y2 Babamots\n\tBabamots: Well, I don&#39;t like it but I&#39;m not sure that I have anything better.\n\n11) Felix: Sacrifice G3 Felix\nBuild Y2 Bazoik\nBuild Y2 Felix\nBuild Y3 Felix\n\tFelix: It&#39;s definitely better than being locked out of yellow! But don&#39;t worry. You&#39;re not at too much of a disadvantage at the moment, I don&#39;t think. Just one step behind on the yellow economy.\n\n12) Babamots: Discover Y1 Babamots B3 Cardassia\n\n13) Felix: Sacrifice Y1 Felix\nMove Y2 Bazoik Cardassia\n\n14) Babamots: Sacrifice G3 Babamots\nBuild Y1 Cardassia\nBuild Y3 Cardassia\nBuild Y3 Babamots\nCatastrophe Cardassia Y\n\n15) Felix: Trade Y3 G3 Felix\n\tFelix: Ooh, that was clever. Nice move!\n\n16) Babamots: Build G1 Babamots\n\tBabamots: Thanks! I rather liked it.\n\n17) Felix: Build Y1 Bazoik\n\n18) Babamots: Discover G1 Babamots B3 Cardassia\n\n19) Felix: Move Y1 Bazoik Cardassia\n\n20) Babamots: Trade Y3 G3 Babamots\n\n21) Felix: Build Y1 Bazoik\n\n22) Babamots: Move Y2 Babamots Cardassia\n\n23) Felix: Sacrifice G3 Felix\nBuild Y2 Cardassia\nBuild Y3 Felix\nBuild Y3 Felix\n\n24) Babamots: Trade Y2 R2 Cardassia\n\tBabamots: I&#39;m not sure why I thought moving my yellow out was such a good idea since that&#39;s exactly what I expected you to do.\n\n25) Felix: Sacrifice Y2 Cardassia\nMove Y3 Felix Bazoik\nMove Y3 Bazoik Cardassia\n\tFelix: Haha, good move in response though!\n\n26) Babamots: Attack Y1N Cardassia\n\n27) Felix: Trade Y2 R2 Felix\n\n28) Babamots: Sacrifice Y1 Cardassia\nMove R2 Cardassia Bazoik\n\n29) Felix: S Y1 Bazoik\nD Y1 Bazoik G3 Flemoid\n\n30) Babamots: Build G2 Babamots\n\n31) Felix: Sacrifice R2 Felix\nAttack G1 Cardassia\nPass\n\n32) Babamots: Trade G2 Y2 Babamots\n\n33) Felix: Build G2 Cardassia\n\n34) Babamots: Discover G1 Babamots B3 Ferenginar\n\tBabamots: I think I have a serious problem.\n\n35) Felix: Trade G1 R1 Cardassia\n\n36) Babamots: Build G1 Babamots\n\tFelix: Maybe! But I&#39;m not in the clear yet.\n\tBabamots: Anything I can build you can build bigger. I can&#39;t build anything bigger than yoooooou...\n\n37) Felix: Build G2 Cardassia\n\n38) Babamots: Sacrifice G3 Babamots\nBuild G2 Ferenginar\nBuild G3 Ferenginar\nBuild G3 Babamots\n\tFelix: Hahahaha\n\n39) Felix: Move G2 Cardassia Babamots\n\n40) Babamots: Trade G1 B1 Babamots\n\n41) Felix: Sacrifice G2 Cardassia\nBuild G1 Babamots\nBuild G2 Babamots\nCatastrophe Babamots Green\n\n42) Babamots: Sacrifice Y2 Babamots\nMove G3 Ferenginar Babamots\nMove G1 Ferenginar Bazoik\n\tFelix: The ol&#39; &quot;warp and build.&quot; One of my favorite techniques! It&#39;s looking grim for the brave soldiers of Babamots. Best get that G3 home, stat! :)\n\tBabamots: Didn&#39;t think about the sacrifice! Never seen that one before. At least I saved the little guy.\n\n43) Felix: Move Y3 Cardassia Bazoik\n\n44) Babamots: Sacrifice G2 Ferenginar\nBuild G1 Bazoik\nBuild G2 Bazoik\nCatastrophe Bazoik G\n\n45) Felix: Build Y1 Flemoid\n\tBabamots: Nearly equalized :-).\n\tBabamots: Really, I should have let you sacrifice your r1 to take my r2 before doing that, but I was worried you would notice your peril and run away.\n\tBabamots: Suffice to say, I really enjoyed that move.\n\n46) Babamots: Build G1 Babamots\n\tFelix: That was a good move! We are pretty balanced out now...\n\n47) Felix: Trade Y3 G3 Felix\n\n48) Babamots: Trade G1 Y1 Babamots\n\n49) Felix: Discover Y1 Flemoid G1 Raggar\n\n50) Babamots: Build Y2 Babamots\n\n51) Felix: Build Y2 Raggar\n\n52) Babamots: Discover Y1 Babamots B3 Galorndon\n\n53) Felix: M Y2 Raggar Felix\n\n54) Babamots: Trade B1 R1 Babamots\n\n55) Felix: S G3 Felix\nB Y2 Flemoid\nB Y3 Raggar\nB Y3 Felix\n\n56) Babamots: Build Y3 Babamots\n\n57) Felix: Sacrifice Y2 Felix\nMove Y1 Flemoid Babamots\nMove Y2 Flemoid Babamots\nCatastrophe Babamots Yellow\n\n58) Babamots: Build G1 Babamots\n\n59) Felix: Move Y1 Raggar Felix\n\n60) Babamots: Build G1 Babamots\n\tBabamots: Aaaand I&#39;m back to hoping you&#39;ll make a mistake.\n\n61) Felix: Trade Y3 G3 Felix\n\n62) Babamots: Trade G1 Y1 Babamots\n\tFelix: It&#39;s definitely possible! I&#39;ve been known to make many :)\n\n63) Felix: Build Y2 Raggar\n\n64) Babamots: Build Y2 Babamots\n\n65) Felix: Move Y2 Raggar Cardassia\n\n66) Babamots: Discover G1 Babamots Y3 Vulcan\n\n67) Felix: Sacrifice G3 Felix\nBuild Y2 Cardassia\nBuild Y3 Felix\nBuild R2 Cardassia\n\n68) Babamots: Move R1 Babamots Vulcan\n\n69) Felix: Trade Y1 G1 Felix\n\n70) Babamots: Build R2 Vulcan\n\n71) Felix: Build G2 Felix\n\n72) Babamots: Build G2 Babamots\n\n73) Felix: Trade Y2 G2 Cardassia\n\n74) Babamots: Sacrifice G3 Babamots\nBuild G3 Vulcan\nBuild G3 Babamots\nBuild Y1 Galorndon\n\n75) Felix: B G3 Cardassia\n\n76) Babamots: Move G2 Babamots Cardassia\n\n77) Felix: Sacrifice Y2 Cardassia\nMove G3 Cardassia Babamots\nMove G2 Cardassia Babamots\n\n78) Babamots: Sacrifice R2 Vulcan\nAttack G3N Babamots\nAttack G2N Babamots\n\tFelix: Good move!\n\tBabamots: We&#39;ll see. It got a reaction anyway.\n\n79) Felix: Sacrifice Y3 Raggar\nDiscover G1 Felix G1 Raggar\nMove G1 Raggar Cardassia\nMove G1 Cardassia Babamots\nCatastrophe Babamots Green\n\n80) Babamots: Sacrifice R1 Vulcan\nAttack R2N Cardassia\n\tFelix: It sure did. And it hurt me quite a bit, too! But hopefully it hurt you slightly worse :)\n\tBabamots: I like this situation a little better than before my move, mostly since we&#39;re now even on large ships.\n\n81) Felix: Build Y2 Felix\n\n82) Babamots: Attack R1N Cardassia\n\tFelix: Yeah, I think I am actually worse off at the moment after you got my r2.\r\n\r\nIn an unrelated note, I finished my first game against wil and filled out the game end form, but it looks like the tournament table didn&#39;t update but still says the game is in progress. There was no place to enter the game number on the game end form. Is it something you just manually update, or do I need to do something else?\n\n83) Felix: Discover Y2 Felix G1 Glorfindel\n\tBabamots: The tournament table only looks the player names from the finish form. The table should be showing the winner. I&#39;ll investigate.\n\n84) Babamots: Trade Y1 G1 Babamots\n\tBabamots: Found the problem. Each form submission created a new row on the spreadsheet, and references to the top row were automatically changed to refer to the next row down (to the old empty cell). It&#39;s fixed now.\n\n85) Felix: B Y1 Glorfindel\n\n86) Babamots: Sacrifice Y2 Babamots\nMove Y1 Galorndon Glorfindel\nMove Y1 Galorndon Glorfindel\nCatastrophe Glorfindel Y\n\n87) Felix: Build G1 Felix\n\n88) Babamots: Move G3 Vulcan Babamots\n\tFelix: Man, nice one again. I can&#39;t get the edge I need on you!\n\n89) Felix: Discover G2 Felix B1 Glimdark\n\n90) Babamots: Discover G1 Vulcan B1 Betazed\n\n91) Felix: Build Y1 Felix\n\n92) Babamots: Trade R1 Y1 Cardassia\n\n93) Felix: Trade Y1 R1 Felix\n\n94) Babamots: Discover R2 Cardassia B1 Iconia\n\n95) Felix: Build Y1 Felix\n\n96) Babamots: Move Y1 Cardassia Iconia\n\n97) Felix: Move Y1 Felix Glimdark\n\n98) Babamots: Discover Y1 Iconia G3 Brekka\n\n99) Felix: Discover G2 Glimdark Y3 Rimworld\n\n100) Babamots: Sacrifice G3 Babamots\nBuild G2 Cardassia\nBuild G3 Babamots\nBuild G3 Betazed\n\n101) Felix: Move G1 Felix Glimdark\n\n102) Babamots: Trade G1 R1 Betazed\n\n103) Felix: S Y3 Felix\nM G1 Glimdark Rimworld\nM G1 Rimworld Babamots\nM G2 Rimworld Babamots\nC Babamots Green\n\tFelix: Good game! That was a fun one. You put up a heck of a fight with all those unexpected aggressive catastrophes on me. I like that aggressive play... loads of fun. Thanks for playing and setting up this tourney!\n\tBabamots: Looks like I missed something. I&#39;ll have to go back and see what happened.\n\tBabamots: Yeach, standard Bluebird. I was really looking forward to beating you. Maybe next time.\n\tFelix: You gave me a run for my money, for sure. Excellent play! I&#39;m sure we&#39;ll meet again in the bracket, and you may take me down when it really counts!\n\tBabamots: I&#39;m kicking myself pretty hard because I got up in material and then just got sloppy. Good luck in your other games! I hope I can make it into the bracket to face you again!\n\n\nHomeworlds Online (SDG# 32998)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.22, Ended: 2017.11.4\nParticipants: Felix (S), jeep (N)\nWinner: jeep\n\n1) jeep: H R2 B3 G3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) jeep: B G1 Jeep\n\tFelix: Hey, good luck and have fun :)\n\tjeep: Thanks! You too.\n\n4) Felix: Build G1 Felix\n\n5) jeep: T G1 Y1 Jeep\n\n6) Felix: Trade G1 R1 Felix\n\n7) jeep: Build Y1 Jeep\n\n8) Felix: Trade R1 Y1 Felix\n\n9) jeep: Build Y2 Jeep\n\tFelix: Oops. I made a mistake!\n\n10) Felix: B Y2 Felix\n\tjeep: :( That sucks. Not a tech error, I hope.\n\n11) jeep: Discover Y1 Jeep G1 Aaa\n\n12) Felix: Discover Y1 Felix B2 Rim\n\tFelix: Not at all, just a user error ;)\n\tFelix: I should have traded for yellow at the start, not red!\n\n13) jeep: Discover Y1 Jeep B1 Bbb\n\n14) Felix: Build G1 Felix\n\n15) jeep: Trade Y1 G1 Bbb\n\n16) Felix: Move G1 Felix Rim\n\tjeep: I expect that I will be playing slowly through the holiday.\n\n17) jeep: Build G2 Jeep\n\n18) Felix: B G2 Felix\n\n19) jeep: Sacrifice G3 Jeep\nBuild G2 Bbb\nBuild G3 Bbb\nBuild G3 Jeep\n\n20) Felix: Move G1 Rim Bbb\nCatastrophe Bbb Green\n\n21) jeep: Build G1 Jeep\n\n22) Felix: M G2 Felix Rim\n\n23) jeep: Discover G2 Jeep Y1 Shot\n\n24) Felix: Build G1 Felix\n\tFelix: Late response, but not a problem! Did you have a nice holiday?\n\n25) jeep: Sacrifice G3 Jeep\nBuild G2 Shot\nBuild G3 Jeep\nBuild G3 Shot\n\n26) Felix: M G2 Rim Shot\nC Shot Green\n\tjeep: It was pretty good. There has to be a better move than this, but it&#39;s the best I found.\n\n27) jeep: Build G2 Jeep\n\tFelix: It sort of just makes us break even ha\n\tjeep: Yeah, just a reset. I didn&#39;t see a way to do better.\n\n28) Felix: Move G1 Felix Rim\n\n29) jeep: Discover G2 Jeep B1 Wheel\n\n30) Felix: Build G2 Felix\n\n31) jeep: Trade G1 R1 Jeep\n\n32) Felix: Trade G2 R2 Felix\n\n33) jeep: Discover Y1 Aaa G2 Stage\n\n34) Felix: Build Y1 Rim\n\n35) jeep: Build G1 Jeep\n\n36) Felix: D Y1 Rim B1 Soap\n\n37) jeep: Build Y2 Stage\n\n38) Felix: Sacrifice G3 Felix\nBuild Y3 Soap\nBuild Y3 Rim\nBuild Y3 Felix\n\n39) jeep: Sacrifice Y2 Jeep\nMove Y1 Stage Felix\nMove Y2 Stage Felix\nCatastrophe Felix Yellow\n\n40) Felix: Move Y3 Rim Felix\n\tjeep: I clearly missed that. :(\n\n41) jeep: Build G1 Wheel\n\tFelix: Huh.... so did I!\n\tjeep: You still game out ahead...\n\n42) Felix: Build G2 Rim\n\n43) jeep: Trade G2 Y2 Wheel\n\n44) Felix: Move G1 Rim Soap\n\n45) jeep: Trade G1 Y1 Jeep\n\n46) Felix: T Y1 R1 Soap\n\n47) jeep: Move R1 Jeep Wheel\n\n48) Felix: T R2 G2 Felix\n\n49) jeep: Build R2 Wheel\n\n50) Felix: Build R2 Soap\n\n51) jeep: Trade R2 B2 Wheel\n\n52) Felix: Move R2 Soap Rim\n\n53) jeep: Build B1 Wheel\n\n54) Felix: Build R2 Soap\n\n55) jeep: Discover B1 Wheel Y2 Box\n\tjeep: Yeah, this has been a losing battle for a while... I don&#39;t know if there is a way to recover...\n\n56) Felix: Move R2 Soap Box\n\n57) jeep: Build R3 Wheel\n\tFelix: Never give up! I&#39;ve made really dumb mistakes when I&#39;ve been in better positions than this.\n\n58) Felix: Attack B1 Box\n\n59) jeep: Discover G1 Wheel R3 Derby\n\n60) Felix: Build R3 Soap\n\n61) jeep: Move R3 Wheel Rim\n\n62) Felix: Discover R2 Rim Y1 Rom\n\n63) jeep: Attack Y1 Rim\n\n64) Felix: Sacrifice G2 Rim\nBuild Y2 Soap\nBuild B2 Box\n\n65) jeep: Discover B2 Wheel B3 Hat\n\n66) Felix: Build Y3 Felix\n\n67) jeep: Sacrifice G1 Derby\nBuild R3 Rim\n\n68) Felix: Sacrifice Y2 Soap\nMove R1 Soap Rim\nMove R2 Rom Rim\nCatastrophe Rim Red\n\n69) jeep: Trade B2 R2 Hat\n\tjeep: Ugh, now I remember why I discarded that play the first time I looked at the game.\n\n70) Felix: Move R3 Soap Hat\n\tFelix: It could be a lot worse! You&#39;re really doing quite well defensively. I can&#39;t get the edge I need to attack.\n\n71) jeep: Sacrifice Y1 Rim\nDiscover R2 Hat Y2 Mover\n\n72) Felix: Sacrifice G2 Felix\nBuild R1 Hat\nBuild R3 Box\n\n73) jeep: Build G1 Jeep\n\n74) Felix: Move R3 Box Soap\n\n75) jeep: Sacrifice G1 Jeep\nBuild R3 Wheel\n\n76) Felix: Discover B2 Box G1 Slip\n\n77) jeep: Move R3 Wheel Box\n\tjeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.\n\n\tFelix: Sure thing! I always love to finish a game.\n\tFelix: Oops. Looks like I let time get away from me! Sorry.\n\nHomeworlds Online (SDG# 33001)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.22, Ended: 2017.10.4\nParticipants: Grosseteste (S), jeep (N)\nWinner: jeep\n\n1) jeep: H B3 R2 G3\n\n2) Grosseteste: Homeworld Y3 B1 G3\n\n3) jeep: B G1 Jeep\n\n4) Grosseteste: B G1 Grosseteste\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Grosseteste: T G1 B1 Grosseteste\n\n7) jeep: B Y1 Jeep\n\n8) Grosseteste: Build B1 Grosseteste\n\n9) jeep: Build Y1 Jeep\n\n10) Grosseteste: Discover B1 Grosseteste G2 Charlie\n\n11) jeep: Discover Y1 Jeep G1 Brown\n\n12) Grosseteste: Build B2 Grosseteste\n\n13) jeep: Build Y2 Brown\n\n14) Grosseteste: T B1 R1 Grosseteste\n\n15) jeep: Discover Y2 Brown B3 Snoopy\n\n16) Grosseteste: Build B1 Charlie\n\n17) jeep: Build G1 Jeep\n\n18) Grosseteste: Build B2 Charlie\n\n19) jeep: Build Y2 Brown\n\n20) Grosseteste: T B2 Y2 Charlie\n\tjeep: I expect to be playing slowly through the holiday.\n\n21) jeep: Sacrifice G3 Jeep\nBuild Y3 Jeep\nBuild Y3 Snoopy\nBuild G1 Jeep\n\tGrosseteste: No worries, I&#39;ve got stuff going on myself\n\n22) Grosseteste: Move Y2 Charlie Brown\n\n23) jeep: Move Y1 Jeep Brown\nCatastrophe Brown Yellow\n\n24) Grosseteste: B B2 Charlie\n\n25) jeep: Trade Y3 B3 Snoopy\n\n26) Grosseteste: S B2 Grosseteste\nT B1 Y1 Charlie\nT B2 Y2 Charlie\n\n27) jeep: Discover G1 Jeep Y1 Bravo\n\n28) Grosseteste: D Y1 Charlie G3 Rerun\n\n29) jeep: Discover G1 Bravo Y3 First\n\n30) Grosseteste: Build B1 Charlie\n\n31) jeep: Build G1 First\n\n32) Grosseteste: S Y2 Charlie\nM B1 Charlie Snoopy\nM B1 Charlie Snoopy\nC Snoopy Blue\n\n33) jeep: Discover G1 First B2 Prequel\n\n34) Grosseteste: B G2 Grosseteste\n\n35) jeep: Build G2 Prequel\n\n36) Grosseteste: Trade G2 Y2 Grosseteste\n\n37) jeep: Trade G2 Y2 Prequel\n\n\nHomeworlds Online (SDG# 32993)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.22, Ended: 2017.8.31\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\twil: This a round Robin game?\n\n2) Felix: Homeworld R2 B3 G3\n\tFelix: Yes indeed! Good luck and have fun :)\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\twil: You as well, this should be interesting.\n\n5) wil: Trade G1 B1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: T B1 Y1 Wil\n\n8) Felix: Build Y2 Felix\n\twil: Such a nice start I got off to!\n\n9) wil: B Y2 Wil\n\tFelix: Better to get your mistakes out early than in the late game!\n\n10) Felix: Discover Y1 Felix B1 Out\n\twil: That makes sense, not.\n\n11) wil: D Y1 Wil G3 G3\n\n12) Felix: Build G1 Felix\n\n13) wil: B G1 Wil\n\tDraw5PlayAll: So this is that tournament where you play 7 rounds followed by a double elimination? I think it will be at least 18 months and maybe 2 years before it is over. And the ladder is already annoying enough!\n\twil: Seriously?  Just cause you don&#39;t wanna play you wanna annoy us during our game?  Comment all you want on games you are involved in...but I am formally asking younto refrain from butting in and commenting on my games you are not involved in.   Is this too much to ask?\n\twil: Your intrusions in my games like this fits the definition of annoying.\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: D G1 Wil Y3 Y3\n\tFelix: @Draw5 and even if it does take that long, that just means victory will be all the sweeter.\n\n16) Felix: Build B1 Felix\n\n17) wil: T Y2 B2 Wil\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Felix\nBuild Y3 Felix\n\twil: Lol, absolutely agree Felix...  Why would I care his long it takes... My goal here is to play games...  While scoring well in a tourney or being on top of the ladder provides some ego gratification.... The real goal is to simply play games!!\n\n19) wil: B Y3 G3\n\n20) Felix: Sacrifice Y2 Felix\nMove Y2 Out G3\nMove Y1 Out G3\nCatastrophe G3 Yellow\n\n21) wil: Build G1 Wil\n\n22) Felix: Trade Y3 G3 Felix\n\tFelix: Forgot to catastrophe\n\twil: no worries...the back up button is like moving the coin...first you need to see the repercussions of your move...\n\n23) wil: T G1 Y1 Wil\n\n24) Felix: Discover B1 Felix G1 R2\n\n25) wil: M B2 Wil Y3\n\n26) Felix: Build Y1 Felix\n\n27) wil: B Y2 Wil\n\n28) Felix: Move Y1 Felix R2\n\n29) wil: D Y1 Wil G3 G3\n\n30) Felix: Build Y2 R2\n\n31) wil: B Y3 G3\n\n32) Felix: B Y3 Felix\n\n33) wil: B G1 Wil\n\n34) Felix: S Y2 Felix\nM Y1 R2 G3\nM B1 R2 G3\n\n35) wil: D Y3 G3 B1 B1\n\n36) Felix: S Y2 R2\nM Y1 G3 Wil\nM B1 G3 Wil\n\n37) wil: T Y2 R2 Wil\n\n38) Felix: S G3 Felix\nB B2 Wil\nB B3 Wil\nB Y2 Wil\nC Wil Blue\n\n39) wil: S B2 Y3\nP\nT R2 Y2 Wil\nC Wil Y\n\twil: Nice!\n\n\tFelix: Thanks! I&#39;ve been hoping for the opportunity to try that for a few turns, but you kept fouling my plans.\n\twil: Nice game.... That was great\n\tFelix: Indeed, a very fun one! I&#39;ll hopefully see you in the bracket round, whenever that finally comes about :)\n\nHomeworlds Online (SDG# 33002)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.23, Ended: 2017.9.15\nParticipants: Grosseteste (S), shoejitsu (N)\nWinner: Grosseteste\n\n1) shoejitsu: Homeworld G2 R1 B3\n\n2) Grosseteste: Homeworld B1 Y3 G3\n\n3) shoejitsu: Build B1 Shoejitsu\n\tGrosseteste: Very interesting starting setup, good luck!\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) shoejitsu: Build B1 Shoejitsu\n\tshoejitsu: hah yep. good luck and have fun!\n\n6) Grosseteste: B G1 Grosseteste\n\n7) shoejitsu: Trade B1 G1 Shoejitsu\n\n8) Grosseteste: Discover G1 Grosseteste B2 Charlie\n\n9) shoejitsu: Build G2 Shoejitsu\n\n10) Grosseteste: S G3 Grosseteste\nB G2 Charlie\nB G3 Charlie\nB G3 Grosseteste\n\n11) shoejitsu: Sacrifice G2 Shoejitsu\nBuild B1 Shoejitsu\nBuild G2 Shoejitsu\n\n12) Grosseteste: Trade G3 Y3 Charlie\n\n13) shoejitsu: Trade B1 Y1 Shoejitsu\n\n14) Grosseteste: S Y3 Charlie\nD G1 Charlie R3 Lucy\nM G1 Lucy Shoejitsu\nD G1 Grosseteste B2 Rerun\nC Shoejitsu Green\n\n15) shoejitsu: Trade B1 G1 Shoejitsu\n\tshoejitsu: ouch... nice move\n\n16) Grosseteste: B G1 Grosseteste\n\n17) shoejitsu: Discover G1 Shoejitsu R3 Indigo\n\n18) Grosseteste: Build G2 Rerun\n\n19) shoejitsu: Build G2 Indigo\n\n20) Grosseteste: S G3 Grosseteste\nB G3 Grosseteste\nB G3 Grosseteste\nB G3 Charlie\n\n21) shoejitsu: Move Y1 Shoejitsu Indigo\n\n22) Grosseteste: T G3 B3 Grosseteste\n\n23) shoejitsu: Trade B3 G3 Shoejitsu\n\n24) Grosseteste: T G3 Y3 Grosseteste\n\n25) shoejitsu: Move G2 Indigo Charlie\n\n26) Grosseteste: S Y3 Grosseteste\nM G1 Rerun Shoejitsu\nM G2 Rerun Shoejitsu\nM G2 Charlie Shoejitsu\nCatastrophe Shoejitsu Green\n\tshoejitsu: idk dude\n\tGrosseteste: Thanks for the game!\n\tshoejitsu: thanks and good luck!\n\n\nHomeworlds Online (SDG# 32997)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.23, Ended: 2017.9.12\nParticipants: Felix (S), shoejitsu (N)\nWinner: Felix\n\n1) shoejitsu: Homeworld G3 Y2 B3\n\n2) Felix: H R1 B3 G3\n\n3) shoejitsu: Build B1 Shoejitsu\n\n4) Felix: Build G1 Felix\n\tFelix: Have a good game!\n\n5) shoejitsu: Build B1 Shoejitsu\n\tshoejitsu: have fun!\n\n6) Felix: Trade G1 B1 Felix\n\n7) shoejitsu: Trade B1 G1 Shoejitsu\n\n8) Felix: Build G1 Felix\n\n9) shoejitsu: Discover G1 Shoejitsu B1 Prime\n\n10) Felix: T G1 Y1 Felix\n\n11) shoejitsu: Build B2 Shoejitsu\n\n12) Felix: Build B2 Felix\n\n13) shoejitsu: Move B1 Shoejitsu Prime\n\n14) Felix: Discover B1 Felix G2 Out\n\n15) shoejitsu: Build G1 Prime\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B3 Felix\nBuild Y1 Felix\n\n17) shoejitsu: Trade G1 Y1 Prime\n\n18) Felix: Trade B2 Y2 Out\n\n19) shoejitsu: Discover B1 Prime Y2 Dot\n\n20) Felix: Trade B2 G2 Felix\n\n21) shoejitsu: Build G1 Prime\n\n22) Felix: Sacrifice Y2 Out\nMove B1 Out Prime\nMove B1 Prime Shoejitsu\n\n23) shoejitsu: Trade B3 R3 Shoejitsu\n\n24) Felix: Build B2 Shoejitsu\n\n25) shoejitsu: Trade B2 G2 Shoejitsu\n\n26) Felix: Trade B1 G1 Shoejitsu\n\n27) shoejitsu: Attack G1S Shoejitsu\n\n28) Felix: T B2 G2 Shoejitsu\nC Shoejitsu Green\n\n29) shoejitsu: Move G1 Prime Dot\n\n30) Felix: Discover Y1 Felix G2 Out\n\n31) shoejitsu: Build Y2 Prime\n\n32) Felix: Sacrifice G2 Felix\nBuild Y3 Felix\nBuild Y3 Out\n\n33) shoejitsu: Trade G1 B1 Dot\n\n34) Felix: Move Y1 Felix Shoejitsu\n\n35) shoejitsu: Sacrifice Y2 Prime\nMove B1 Dot Felix\nMove B1 Dot Felix\nCatastrophe Felix Blue\n\n36) Felix: Discover Y1 Out R1 In\n\n37) shoejitsu: Build Y2 Prime\n\n38) Felix: Build Y2 Out\n\n39) shoejitsu: Attack Y1 Shoejitsu\n\tFelix: It&#39;s gonna be close!\n\tshoejitsu: my nails are already chewed down to the stubs... XD\n\n40) Felix: Sacrifice Y3 Out\nMove Y2 Out In\nMove Y1 In Shoejitsu\nMove Y2 In Shoejitsu\nCatastrophe Shoejitsu Yellow\n\n\tshoejitsu: yep... i noticed your move a bit too late. great game felix!\n\tFelix: Good game! Very fun, with a tense ending :)\n\nHomeworlds Online (SDG# 32995)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.23, Ended: 2017.9.11\nParticipants: fogus (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) fogus: Homeworld Y1 B2 G3\n\tFelix: Hey fogus! Good luck and have fun :)\n\n3) Felix: Build G1 Felix\n\tfogus: thanks, you too!\n\n4) fogus: Build G1 Fogus\n\n5) Felix: Trade G1 Y1 Felix\n\n6) fogus: Build G1 Fogus\n\n7) Felix: Build Y1 Felix\n\n8) fogus: Trade G3 Y3 Fogus\n\n9) Felix: Discover Y1 Felix B1 Out\n\n10) fogus: Build Y2 Fogus\n\n11) Felix: Build Y2 Felix\n\n12) fogus: Discover Y2 Fogus G3 Cribbage\n\n13) Felix: Discover Y1 Felix G1 Opus\n\n14) fogus: Build G2 Fogus\n\n15) Felix: Sacrifice G3 Felix\nBuild Y2 Opus\nBuild Y3 Out\nBuild Y3 Felix\n\n16) fogus: Move Y2 Cribbage Out\n\n17) Felix: D Y1 Out R3 Brink\n\n\tFelix: That&#39;s a shame! Do you want to rematch, or just take the loss?\n\nHomeworlds Online (SDG# 32999)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.23, Ended: 2017.9.9\nParticipants: Babamots (S), fogus (N)\nWinner: Babamots\n\n1) fogus: Homeworld Y1 B2 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) fogus: Build G1 Fogus\n\n4) Babamots: Build G1 Babamots\n\n5) fogus: Trade G3 R3 Fogus\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) fogus: Build G1 Fogus\n\n8) Babamots: Build Y1 Babamots\n\n9) fogus: Trade R3 Y3 Fogus\n\n10) Babamots: Discover Y1 Babamots G2 Romulus\n\n11) fogus: Build Y2 Fogus\n\n12) Babamots: Build Y2 Romulus\n\n13) fogus: Discover Y2 Fogus G3 Piquet\n\n14) Babamots: Discover Y1 Romulus B3 Iconia\n\n15) fogus: Trade G1 B1 Fogus\n\n16) Babamots: Sacrifice G3 Babamots\nBuild Y2 Romulus\nBuild Y3 Babamots\nBuild Y3 Iconia\n\n\nHomeworlds Online (SDG# 33011)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.23, Ended: 2017.9.21\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\twil: tourney game?\n\tts52: Yes. At least that was my intent.\n\n3) wil: B G1 Wil\n\twil: So there is some challenge page you as the initiator fill out eh?\n\n4) ts52: Build G1 Ts52\n\twil: Good luck!\n\tts52: There is. I filled out the form (as the challenger I&#39;m supposed to) here: https://docs.google.com/forms/d/e/1FAIpQLSdk1Fe7kzk_3jtdslPS2npk2O9aPUxnJY2mps6se-J8s8k0Ew/viewform?usp=sf_link \n\n5) wil: T G1 B1 Wil\n\tts52: Good luck to you too.\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: B B2 Wil\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) wil: D B2 Wil G3 G3\n\n10) ts52: Build G1 Ts52\n\n11) wil: B G1 Wil\n\n12) ts52: Build G2 Ts52\n\n13) wil: B G2 Wil\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) wil: D G2 Wil Y3 Y3\n\n16) ts52: Build G2 Ts52\n\n17) wil: D B1 Wil Y3 Why3\n\n18) ts52: Discover G1 Ts52 Y1 Bigbird\n\n19) wil: T G1 R1 Wil\n\n20) ts52: Trade G2 R2 Ts52\n\n21) wil: B R1 Wil\n\n22) ts52: Move Y2 Ts52 Kermit\n\n23) wil: T R1 Y1 Wil\n\n24) ts52: B G1 Ts52\n\n25) wil: M Y1 Wil G3\n\n26) ts52: B G2 Bigbird\n\n27) wil: B G2 Wil\n\n28) ts52: Build R1 Ts52\n\n29) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB R2 Wil\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) wil: T R2 Y2 Wil\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild R2 Kermit\n\n33) wil: M R1 Wil G3\n\n34) ts52: Move R2 Kermit Why3\n\n35) wil: S G3 Wil\nB G3 Wil\nB B2 G3\nB B3 Why3\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n37) wil: M B1 Why3 Kermit\nC Kermit B\n\n38) ts52: Trade G1 B1 Ts52\n\n39) wil: D B2 G3 G1 G1\n\n40) ts52: Move B1 Ts52 Bigbird\n\n41) wil: S R1 G3\nA R2 Why3\n\n42) ts52: Move G1 Bigbird Ts52\n\n43) wil: M B3 Why3 Bigbird\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Bigbird\nBuild B3 Bigbird\nCatastrophe Bigbird Blue\n\n45) wil: S G3 Wil\nB B1 G1\nB B1 G3\nB G3 Wil\n\n46) ts52: Build R1 Ts52\n\n47) wil: S G3 Wil\nB G3 Wil\nB B3 G3\nB B3 G1\n\n48) ts52: Move R1 Ts52 Bigbird\n\n49) wil: S B2 G3\nT B3 R3 G1\nT B3 R3 G3\n\n50) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Bigbird\nBuild R3 Kermit\n\n51) wil: S G2 Y3\nB Y3 G3\nB B2 G1\n\n52) ts52: Discover Y2 Kermit B3 Gonzo\n\n53) wil:\nB B3 G3\n\n54) ts52: Move G2 Bigbird Gonzo\n\n55) wil: S Y1 G3\nM R3 G1 Gonzo\n\n56) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild Y1 Gonzo\nBuild G3 Ts52\n\n57) wil: A Y2 Gonzo\n\twil: Dang it....all power, no clear path to closure\n\n58) ts52: M G2 Gonzo Wil\n\n59) wil: S R3 G3\nA G2 Wil\nA Y1 Gonzo\nA G2 Gonzo\n\n60) ts52: Build R3 Ts52\n\n61) wil: M G2 Wil Why3\n\n62) ts52: Move R3 Kermit Why3\n\n63) wil: S Y2 Gonzo\nM G2 Why3 Kermit\nM R2 Why3 Kermit\n\n64) ts52: Move R3 Ts52 Kermit\n\n65) wil: S Y2 Wil\nM R1 Wil Why3\nM R1 Why3 Kermit\nC Kermit R\n\n66) ts52: Move R3 Why3 G1\n\n67) wil: B B3 G3\n\n68) ts52: Attack B2 G1\n\n69) wil: M B1 G3 G1\nC G1 B\n\n70) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild R1 G1\n\n71) wil: S G2 Kermit\nB Y2 G3\nB Y3 Gonzo\n\n72) ts52: Build R1 Ts52\n\n73) wil: S Y2 G3\nM B3 G3 Bigbird\nM B3 G3 Kermit\n\n74) ts52: Sacrifice Y2 Kermit\nDiscover R2 Bigbird B2 Grover\nMove R1 Bigbird Grover\n\n75) wil: B R2 Gonzo\n\n76) ts52: Move Y1 Kermit Grover\n\n77) wil: B Y2 G3\n\n78) ts52: Trade R2 G2 Grover\n\n79) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Bigbird\nBuild B1 Kermit\n\n80) ts52: Build Y2 Grover\n\twil: I cannot.recall specifically avoiding creating the factory for so long in a game\r\n\n\n81) wil: Sacrifice Y3 G3\nMove Y1 Gonzo Kermit\nMove Y2 G3 Kermit\nMove R2 Gonzo Wil\n\n82) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y3 Grover\n\n83) wil: Move Y1 Kermit Grover\nCatastrophe Grover Y\n\n84) ts52: Trade G3 Y3 Grover\n\n85) wil: S G3 Wil\nB G3 Wil\nB G3 Gonzo\nB B2 Bigbird\n\n86) ts52: Build Y1 Grover\n\n87) wil: S G3 Wil\nB Y1 Gonzo\nB Y2 Kermit\nB G3 Wil\n\n88) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Grover\n\n89) wil: M B1 Bigbird Ts52\n\n90) ts52: Move Y3 Grover Kermit\n\n91) wil: S Y2 Kermit\nM Y2 Kermit Ts52\nM B3 Kermit Ts52\n\n92) ts52: Attack Y2 Ts52\n\n93) wil: S R3 Gonzo\nA G3 Ts52\nA R2 Ts52\nA R2 Ts52\n\n94) ts52: Sacrifice Y3 Kermit\nMove R1 G1 Ts52\nMove G2 Grover Kermit\nMove G2 Kermit Ts52\nCatastrophe Ts52 Red\n\twil: Folly or not..  I am committed\n\n95) wil: S Y3 Gonzo\nM B2 Bigbird Ts52\nC Ts52 B\nM G2 Wil Ts52\nC Ts52 G\nM B3 Bigbird Ts52\n\tts52: Interesting. I didn&#39;t expect the slow kill.\n\n96) ts52: Sacrifice Y2 Ts52\nMove R3 Grover Ts52\nMove R3 G1 Ts52\n\twil: It was sort of a wishbone offense... I didn&#39;t have enough for the full frontal attack\n\tts52: Wow. Well played. I was so focused on loosing by catastrophe, I failed to take raw capture into account.\n\n97) wil: S R2 Wil\nA R3 Ts52\nA R3 Ts52\n\n\twil: IRL you always have been able ... Aaron fixed this a few (6?) Months ago or so...\n\twil: He left in the no destroying yourself to prevent accidents...even thou IRL ark moments are a thing\n\twil: Now the question is is your move (doesn&#39;t change this game) acceptable...is pulling out the y3 abandoning your hw? Or is the action instantaneous?\n\twil: Quite the game!  \n\tts52: Indeed. Thanks for the game! I look forward to a re-match.\n\tts52: And yes, you can abandon your homeworld during your turn, so long as you end your turn with a ship in your homeworld, you&#39;re good.\n\nHomeworlds Online (SDG# 32987)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.23, Ended: 2017.9.1\nParticipants: eliscinsky (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\n3) Remneb: Build G1 Remneb\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Remneb: Build G1 Remneb\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) eliscinsky: Discover Y1 Eliscinsky R3 Proto\n\n11) Remneb: Build R2 Remneb\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Remneb: Trade R2 Y2 Remneb\n\n14) eliscinsky: Trade G1 Y1 Eliscinsky\n\n15) Remneb: Build G1 Remneb\n\n16) eliscinsky: Build G1 Eliscinsky\n\n17) Remneb: Sacrifice Y2 Remneb\nMove G1 Remneb Proto\nMove G1 Proto Eliscinsky\nCatastrophe Eliscinsky G\n\n18) eliscinsky: Trade Y1 G1 Eliscinsky\n\n19) Remneb: Build R2 Remneb\n\teliscinsky: @Remneb nice move, got me on that on!\n\tRemneb: :)\r\n\n\n20) eliscinsky: Build G1 Eliscinsky\n\n21) Remneb: Discover R2 Remneb Y3 Trump\n\n22) eliscinsky: Trade G1 B1 Eliscinsky\n\n23) Remneb: Move R2 Trump Eliscinsky\n\n24) eliscinsky: Build G1 Eliscinsky\n\n25) Remneb: Attack G1 Eliscinsky\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) Remneb: Attack G1 Eliscinsky\n\n28) eliscinsky: Build G2 Eliscinsky\n\n29) Remneb: Catastrophe Eliscinsky G\nAttack B1 Eliscinsky\n\tRemneb: Thanks for the game.\n\teliscinsky: It was fun, a real learning experience for me.\n\tRemneb: It take time and many games to understand all parts of that game.\n\n\nHomeworlds Online (SDG# 33006)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.23, Ended: 2017.9.10\nParticipants: Remneb (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) Remneb: Homeworld B2 R1 G3\n\tFelix: Hey, good luck and have fun :)\n\n3) Felix: Build G1 Felix\n\tRemneb: Thanks. Have a good game !\n\n4) Remneb: Build G1 Remneb\n\n5) Felix: Trade G1 R1 Felix\n\n6) Remneb: Trade G1 R1 Remneb\n\n7) Felix: Build R2 Felix\n\n8) Remneb: Build G1 Remneb\n\n9) Felix: Trade R2 Y2 Felix\n\n10) Remneb: Trade G1 Y1 Remneb\n\n11) Felix: B R2 Felix\n\n12) Remneb: Build R2 Remneb\n\n13) Felix: Discover R2 Felix G1 Out\n\n14) Remneb: Discover R2 Remneb Y3 Wotan\n\n15) Felix: Build R3 Felix\n\n16) Remneb: Discover R1 Remneb G3 Gort\n\n17) Felix: Build R3 Out\n\n18) Remneb: Build R3 Gort\n\n19) Felix: Build Y1 Felix\n\n20) Remneb: Build G1 Remneb\n\n21) Felix: Move Y1 Felix Out\n\n22) Remneb: Move Y1 Remneb Gort\n\n23) Felix: T R1 B1 Felix\n\n24) Remneb: Trade G1 Y1 Remneb\n\n25) Felix: Move B1 Felix Out\n\n26) Remneb: Build Y2 Remneb\n\n27) Felix: Trade R3 Y3 Out\n\n28) Remneb: Move Y1 Remneb Gort\n\n29) Felix: B B1 Out\n\n30) Remneb: Discover Y1 Gort G1 Orel\n\n31) Felix: M R3 Felix Orel\n\n32) Remneb: Discover Y1 Orel G2 Proton\n\n33) Felix: Discover B1 Out Y3 In\n\n34) Remneb: Build Y2 Gort\n\n35) Felix: Build G1 Felix\n\n36) Remneb: Build G2 Remneb\n\n37) Felix: Build B1 Out\n\n38) Remneb: Sacrifice Y2 Remneb\nMove Y1 Proton Out\nMove Y1 Gort Out\nCatastrophe Out Y\n\tFelix: So many ships and systems!\n\tFelix: So many ships and systems!\n\n39) Felix: Trade B1 Y1 Out\n\tRemneb: Yes...i don&#39;t realy know what to do !\r\n\n\n40) Remneb: Trade G2 Y2 Remneb\n\n41) Felix: Discover G1 Felix B1 Ent\n\n42) Remneb: Build G2 Remneb\n\n43) Felix: Build G2 Felix\n\n44) Remneb: Move G2 Remneb Gort\n\n45) Felix: Sacrifice G3 Felix\nBuild G2 Ent\nBuild G3 Felix\nBuild B2 In\n\n46) Remneb: Discover G2 Gort Y1 Mud\n\n47) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Felix\nBuild Y3 Out\n\n48) Remneb: Move R3 Gort Ent\n\n49) Felix: S G2 Ent\nB B2 In\nB B3 Out\n\n50) Remneb: Attack G1 Ent\n\n51) Felix: Sacrifice Y1 Out\nMove R3 Orel Gort\n\n52) Remneb: Sacrifice Y2 Gort\nMove G1 Ent Felix\nMove G2 Mud Felix\nCatastrophe Felix G\n\n53) Felix: Move B3 Out Felix\n\n54) Remneb: Sacrifice Y2 Remneb\nMove R3 Ent In\nDiscover R1 Gort Y1 Pawn\n\n55) Felix: Sacrifice Y3 Out\nMove B1 In Remneb\nMove B2 In Remneb\nMove B2 In Remneb\nCatastrophe Remneb Blue\n\n56) Remneb: Move R3 In Remneb\n\n57) Felix: Sacrifice Y2 Felix\nMove R3 Gort Remneb\nDiscover R2 Out Y2 In\n\n\tRemneb: Well done. Thanks for the game.\n\tFelix: Thank you! Great game!\n\nHomeworlds Online (SDG# 33018)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.24, Ended: 2017.9.9\nParticipants: Babamots (S), bhorner (N)\nWinner: Babamots\n\n1) bhorner: Homeworld B2 R1 G3\n\tBabamots: Thanks for joining the tournament! Good luck!\n\n2) Babamots: Homeworld Y3 B1 G3\n\tbhorner: Thanks for organizing, good luck to you too!  First goal is to win more games than the bottom 4.  :)\n\n3) bhorner: B G1 Bhorner\n\n4) Babamots: Build G1 Babamots\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) Babamots: Discover G1 Babamots B2 Bajor\n\n7) bhorner: Build G1 Bhorner\n\n8) Babamots: Build G1 Babamots\n\n9) bhorner: B G2 Bhorner\n\n10) Babamots: Sacrifice G3 Babamots\nBuild G2 Bajor\nBuild G2 Bajor\nBuild G3 Babamots\n\n11) bhorner: Discover G2 Bhorner G3 Xmas\n\n12) Babamots: Trade G2 Y2 Bajor\n\n13) bhorner: Discover G1 Bhorner B3 Grover\n\n14) Babamots: Trade G1 R1 Bajor\n\n15) bhorner: Trade G1 R1 Grover\n\n16) Babamots: Move G2 Bajor Grover\n\n17) bhorner: Build Y1 Bhorner\n\n18) Babamots: Sacrifice R1 Bajor\nAttack R1N Grover\n\tbhorner: It seems like it&#39;s not going well, it doesn&#39;t seem like that should be possible this early!\n\tbhorner: Do you know openings?  Are you kind of &quot;on book&quot; at this point in the game?  (I don&#39;t know what the larger culture of this game is like.  :) )\n\tBabamots: I don&#39;t know that there&#39;s anything standard after the first for moves or so while you obviously have to build and diversify. I&#39;m afraid it was a mistake to leave the medium and large greens so available earlier. That&#39;s what let me surge ahead. \n\n19) bhorner: Build G1 Bhorner\n\tbhorner: Yes, I see.  I thought that you wouldn&#39;t be able to go ahead because you would be forced to let me go ahead further... but I was wrong.  :)\n\n20) Babamots: Sacrifice G3 Babamots\nBuild G1 Grover\nBuild G2 Babamots\nBuild G3 Babamots\n\n21) bhorner: Discover G1 Bhorner B3 Berry\n\n22) Babamots: Trade G1 Y1 Grover\n\n23) bhorner: Discover Y1 Bhorner Y3 Big_bird\n\n24) Babamots: Sacrifice G2 Babamots\nBuild G1 Grover\nBuild Y2 Grover\n\n25) bhorner: Trade G1 R1 Berry\n\n26) Babamots: Build R2 Grover\n\tbhorner: ug\n\n27) bhorner: B Y2 Bhorner\n\n28) Babamots: Sacrifice G1 Grover\nBuild Y3 Bajor\n\n29) bhorner: Build G1 Bhorner\n\n30) Babamots: Move Y3 Bajor Xmas\n\n31) bhorner: Sacrifice G3 Bhorner\nBuild G1 Xmas\nBuild G2 Xmas\nBuild G3 Bhorner\nCatastrophe Xmas Green\n\n32) Babamots: Sacrifice G1 Babamots\nBuild Y3 Bajor\n\n33) bhorner: Move Y1 Bhorner Berry\n\tbhorner: It was still kind of satisfying.  :)\n\n34) Babamots: Move Y2 Bajor Berry\n\n35) bhorner: Discover R1 Berry G2 Go\n\n36) Babamots: Sacrifice R1 Grover\nAttack Y1N Berry\n\n37) bhorner: Discover G1 Bhorner B3 Blue\n\n38) Babamots: Trade Y2 G2 Berry\n\n39) bhorner: Build G1 Blue\n\n40) Babamots: Build Y2 Berry\n\n41) bhorner: Discover Y1 Big_bird B2 Pebble\n\n42) Babamots: Sacrifice G2 Berry\nBuild G1 Babamots\nBuild Y3 Bajor\n\n43) bhorner: Move Y1 Pebble Blue\n\n44) Babamots: Move Y3 Bajor Blue\n\n45) bhorner: Move G1 Blue Go\n\n46) Babamots: Sacrifice R2 Grover\nAttack Y1N Blue\nAttack G1N Blue\n\n47) bhorner: Sacrifice Y2 Bhorner\nMove G1 Go Babamots\nMove R1 Go Babamots\n\n48) Babamots: Move Y3 Bajor Babamots\n\n49) bhorner: Build R1 Babamots\n\n50) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Babamots\nBuild G3 Grover\nCatastrophe Babamots G\n\n51) bhorner: T R1 G1 Babamots\n\n52) Babamots: Sacrifice Y3 Blue\nMove G1 Blue Bhorner\nMove G2 Grover Bhorner\nMove G3 Grover Bhorner\nCatastrophe Bhorner G\n\tBabamots: Thanks for the game! The ending seemed kind of weird. I think you issued the challenge, so would you like to fill the game-finish form?\n\tbhorner: Weird?  I was just continually losing ground, so tried something desperate, completely exhausting my resources.  :) It might have worked if you were easily rattled.  I&#39;ll fill out the form, never done that yet.  :). Thank you for the game as well.  The beginning stung, another thing I will have to keep in mind!\n\n\nHomeworlds Online (SDG# 33005)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.24, Ended: 2017.9.24\nParticipants: eliscinsky (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: B G1 Felix\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Felix: T G1 R1 Felix\n\n6) eliscinsky: Build G1 Eliscinsky\n\n7) Felix: Build R1 Felix\n\n8) eliscinsky: Trade G1 Y1 Eliscinsky\n\n9) Felix: Trade R1 Y1 Felix\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) Felix: Build R2 Felix\n\n12) eliscinsky: Discover Y1 Eliscinsky Y3 Proto\n\n13) Felix: Discover R2 Felix B1 Zoan\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) Felix: S G3 Felix\nB R2 Zoan\nB R3 Zoan\nB R3 Felix\n\n16) eliscinsky: Trade G1 Y1 Eliscinsky\n\n17) Felix: T R3 G3 Felix\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) Felix: Trade R3 Y3 Zoan\n\n20) eliscinsky: Build Y2 Eliscinsky\n\n21) Felix: Move R2 Zoan Proto\n\n22) eliscinsky: Move Y2 Eliscinsky Proto\n\n23) Felix: Attack Y2 Proto\n\n24) eliscinsky: Move Y1 Eliscinsky Proto\nCatastrophe Proto Y\n\n25) Felix: B G1 Felix\n\n26) eliscinsky: Trade G1 Y1 Eliscinsky\n\n27) Felix: Trade G1 B1 Felix\n\n28) eliscinsky: Build G1 Eliscinsky\n\n29) Felix: Build B1 Felix\n\n30) eliscinsky: Build Y1 Eliscinsky\n\n31) Felix: Build Y2 Felix\n\n32) eliscinsky: Build Y2 Eliscinsky\n\n33) Felix: D Y1 Felix G1 Opus\n\n34) eliscinsky: Trade Y2 B2 Eliscinsky\n\n35) Felix: Sacrifice G3 Felix\nBuild Y2 Opus\nBuild Y2 Zoan\nBuild Y3 Felix\n\n36) eliscinsky: Discover Y1 Eliscinsky R3 Alpha\n\n37) Felix: Sacrifice Y1 Opus\nMove Y2 Opus Alpha\n\n38) eliscinsky: Move B2 Eliscinsky Alpha\n\n39) Felix: Attack B2 Alpha\n\n40) eliscinsky: Build R2 Eliscinsky\n\n41) Felix: S Y2 Zoan\nM R2 Zoan Alpha\nM R2 Alpha Eliscinsky\nC Eliscinsky Red\n\n42) eliscinsky: Build G1 Eliscinsky\n\n43) Felix: Sacrifice Y2 Alpha\nDiscover B1 Felix G1 Out\nMove B1 Felix Out\n\n44) eliscinsky: Trade G1 R1 Eliscinsky\n\n45) Felix: Sacrifice Y3 Zoan\nMove B1 Out Eliscinsky\nMove B1 Out Eliscinsky\nMove B2 Alpha Eliscinsky\nCatastrophe Eliscinsky Blue\n\n\tFelix: Good game! Thanks for playing :)\n\teliscinsky: Was fun while it lasted.\r\nI&#39;m really learning good stuff.\r\n:)\n\tFelix: That&#39;s the main thing! if you&#39;ve learned something, then it was a good game!\n\nHomeworlds Online (SDG# 33025)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.25, Ended: 2017.10.13\nParticipants: bhorner (S), shoejitsu (N)\nWinner: bhorner\n\n1) shoejitsu: Homeworld G3 R1 B3\n\n2) bhorner: Homeworld R2 B1 G3\n\tshoejitsu: good luck and have fun!\n\n3) shoejitsu: Build B1 Shoejitsu\n\tbhorner: Thanks, same to you.  :)\n\n4) bhorner: Build G1 Bhorner\n\n5) shoejitsu: Trade B1 G1 Shoejitsu\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) shoejitsu: Build B1 Shoejitsu\n\n8) bhorner: Build Y1 Bhorner\n\n9) shoejitsu: Trade B1 Y1 Shoejitsu\n\n10) bhorner: Build Y2 Bhorner\n\n11) shoejitsu: Build G1 Shoejitsu\n\n12) bhorner: Discover Y2 Bhorner G3 Xmas\n\n13) shoejitsu: Discover G1 Shoejitsu B2 Bruno\n\n14) bhorner: Build Y2 Xmas\n\n15) shoejitsu: Build Y2 Shoejitsu\n\n16) bhorner: Build Y3 Bhorner\n\n17) shoejitsu: Move Y1 Shoejitsu Bruno\n\n18) bhorner: Sacrifice Y1 Bhorner\nDiscover Y3 Bhorner B3 Grover\n\n19) shoejitsu: Build B1 Shoejitsu\n\n20) bhorner: Discover Y2 Xmas R2 Fire\n\n21) shoejitsu: Build G1 Bruno\n\n22) bhorner: Sacrifice G3 Bhorner\nBuild Y1 Grover\nBuild Y3 Bhorner\nBuild Y3 Fire\n\n23) shoejitsu: Build G2 Bruno\n\n24) bhorner: Trade Y1 R1 Bhorner\n\n25) shoejitsu: Build Y1 Shoejitsu\n\n26) bhorner: M Y3 Grover Bruno\n\n27) shoejitsu: Trade G1 R1 Bruno\n\n28) bhorner: Sacrifice R1 Bhorner\nAttack R1 Bruno\n\n29) shoejitsu: Move G2 Bruno Grover\n\n30) bhorner: Attack G1 Bruno\n\n31) shoejitsu: Move Y1 Bruno Xmas\n\n32) bhorner: Sacrifice R1 Bruno\nAttack Y1 Xmas\n\n33) shoejitsu: Trade B1 R1 Shoejitsu\n\n34) bhorner: M Y1 Grover Bhorner\n\n35) shoejitsu: Discover R1 Shoejitsu G2 Dance\n\n36) bhorner: Trade Y3 G3 Bhorner\n\n37) shoejitsu: Move Y1 Shoejitsu Dance\n\n38) bhorner: Build Y3 Bhorner\n\n39) shoejitsu: Build R1 Dance\n\n40) bhorner: T Y1 B1 Bhorner\n\n41) shoejitsu: Build G1 Grover\n\n42) bhorner: Trade Y3 R3 Bruno\n\n43) shoejitsu: Trade G1 Y1 Grover\n\n44) bhorner: Trade Y3 R3 Bhorner\n\n45) shoejitsu: Sacrifice G2 Grover\nBuild Y3 Grover\nBuild R2 Dance\n\n46) bhorner: B R3 Bruno\n\n47) shoejitsu: Move R1 Dance Grover\n\n48) bhorner: Sacrifice Y2 Xmas\nMove R3 Bruno Xmas\nMove R3 Xmas Dance\n\n49) shoejitsu: Sacrifice Y3 Grover\nMove R1 Grover Bhorner\nMove R2 Dance Grover\nMove R2 Grover Bhorner\nCatastrophe Bhorner Red\n\n50) bhorner: S Y2 Fire\nM R3 Dance Shoejitsu\nM Y3 Fire Shoejitsu\n\n51) shoejitsu: Attack R3 Shoejitsu\n\n52) bhorner: Sacrifice R3 Bruno\nAttack R3 Shoejitsu\nAttack B3 Shoejitsu\nAttack Y2 Shoejitsu\n\n53) shoejitsu: Build G1 Shoejitsu\n\n54) bhorner: T Y2 G2 Shoejitsu\nC Shoejitsu Green\n\n\nHomeworlds Online (SDG# 33008)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.25, Ended: 2017.9.27\nParticipants: fogus (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G2 Y1 B3\n\tBabamots: Oops. How did we end up with two games? Let&#39;s make the other game the one for the tournament. We can play this one later for fun.\n\n2) fogus: Homeworld B2 Y3 G3\n\n3) Babamots: Build B1 Babamots\n\n4) fogus: Build G1 Fogus\n\tBabamots: I&#39;ve never tried starting with a blue ship before, so this might be interesting.\n\n5) Babamots: Discover B1 Babamots G3 Betazed\n\n6) fogus: Trade G1 B1 Fogus\n\n7) Babamots: Build B1 Betazed\n\n8) fogus: Build B2 Fogus\n\n9) Babamots: Build B2 Babamots\n\n10) fogus: Discover B1 Fogus Y1 Cribbage\n\n11) Babamots: Build B3 Babamots\n\n\nHomeworlds Online (SDG# 33024)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.25, Ended: 2017.8.28\nParticipants: fogus (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: H R2 B1 G3\n\n\tbhorner: Hey fogus, this was for Babamots&#39; tournament...  I hate win from a time out when you never moved, do you want to start another game?\n\nHomeworlds Online (SDG# 33045)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.27, Ended: 2017.10.4\nParticipants: Aristos (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tAristos: Well met.\n\tbhorner: Hello there.  :)\n\n2) Aristos: Homeworld G3 B2 Y3\n\n3) bhorner: Build G1 Bhorner\n\n4) Aristos: Build Y1 Aristos\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) Aristos: Trade Y1 G1 Aristos\n\n7) bhorner: Build G1 Bhorner\n\n8) Aristos: Build Y1 Aristos\n\n9) bhorner: T G1 B1 Bhorner\n\n10) Aristos: Discover Y1 Aristos G1 Seedling\n\n11) bhorner: Build B1 Bhorner\n\n12) Aristos: Build Y1 Aristos\n\n13) bhorner: B Y2 Bhorner\n\n14) Aristos: Build Y2 Seedling\n\n15) bhorner: Discover B1 Bhorner G3 Xmas\n\n16) Aristos: Move Y2 Seedling Xmas\n\n17) bhorner: Build B2 Bhorner\n\n18) Aristos: Build Y2 Seedling\n\n19) bhorner: Trade Y1 R1 Bhorner\n\n20) Aristos: Trade Y1 R1 Aristos\n\n21) bhorner: T B1 G1 Xmas\n\n22) Aristos: Build Y1 Aristos\n\n23) bhorner: Build G2 Xmas\n\n24) Aristos: Sacrifice Y2 Xmas\nMove G1 Aristos Seedling\nMove G1 Seedling Xmas\nCatastrophe Xmas Green\n\n25) bhorner: Discover B2 Bhorner G3 Xmas\n\n26) Aristos: Build R1 Aristos\n\n27) bhorner: Build R2 Bhorner\n\n28) Aristos: Move R1 Aristos Seedling\n\n29) bhorner: Move R2 Bhorner Xmas\n\n30) Aristos: Build R2 Seedling\n\n31) bhorner: B R3 Xmas\n\n32) Aristos: Build R3 Aristos\n\n33) bhorner: Trade R2 Y2 Xmas\n\n34) Aristos: Build R2 Seedling\n\n35) bhorner: S Y2 Bhorner\nM R1 Bhorner Xmas\nM R1 Xmas Seedling\nC Seedling Red\n\n36) Aristos: Move R3 Aristos Seedling\n\n37) bhorner: B B1 Xmas\n\n38) Aristos: Build R1 Seedling\n\n39) bhorner: Build G1 Bhorner\n\n40) Aristos: Trade Y1 G1 Aristos\n\n41) bhorner: Discover B1 Xmas B2 Way\n\n42) Aristos: Build G2 Aristos\n\n43) bhorner: S G3 Bhorner\nB B3 Bhorner\nB B3 Xmas\nB B3 Way\n\n44) Aristos: Discover R1 Seedling G3 Art\n\tAristos: You win I think. I can&#39;t see any way out of this box short of a mistake on your part. \n\tAristos: You win I think. I can&#39;t see any way out of this box short of a mistake on your part. \n\n45) bhorner: S Y2 Xmas\nD B1 Way Y1 Flare\nM B2 Xmas Flare\n\tbhorner: Weird, I think I have a lot to learn about this game.  I hadn&#39;t even considered things from your perspective, and didn&#39;t realize if I had you in a box.  I was just trying to gain material advantage.\n\n46) Aristos: Sacrifice Y2 Seedling\nMove R3 Seedling Way\nMove R3 Way Flare\n\n47) bhorner: Sacrifice B3 Xmas\nTrade B1 R1 Flare\nTrade B2 R2 Flare\nTrade B3 Y3 Bhorner\n\n48) Aristos: Sacrifice G2 Aristos\nBuild R2 Art\nBuild R3 Aristos\n\n49) bhorner: Move R2 Flare Way\n\n50) Aristos: Attack R1 Flare\n\tAristos: I see a glimmer of hope in my greater maneuverability. You have no yellow to use to run away or to press your attack quickly. Going to be tough, but *maybe* I can pull something together. \n\tAristos: By the way, I tend to use the &quot;move, undo, move&quot; sequence a lot in the end game. I don&#39;t have physical pieces to move around, and frequently I use it to visualize alternative boards. I undo pretty quick (just grab a screenshot) so you won&#39;t be stuck thinking there&#39;s a move for you. If I move and I&#39;m not going to undo, I&#39;ll leave you a message. \n\tbhorner: Ok, well...  my time starts running when you&#39;ve moved, so I may not wait for a message to make my move, but I won&#39;t be trying to pounce on you in between experiments or anything.  How about if I see that you moved at least a half hour ago, I&#39;ll feel free to move?  Also, I didn&#39;t know that you could continue undo-ing, I thought I could only do it once, and then after I remade the move, undo was no longer available, interesting that you can do it repeatedly.\n\n51) bhorner: Build B1 Bhorner\n\n52) Aristos: Move R1 Flare Art\n\tbhorner: Yeah, I just tried it, it appears that I can&#39;t undo again.\n\tAristos: Only one undo per move, and if I undo, it rolls back your time. That&#39;s why I do it fast -- move, grab screenshot, undo. :-)\n\n53) bhorner: M B1 Bhorner Xmas\n\n54) Aristos: Build Y1 Aristos\n\n55) bhorner: Build B2 Xmas\n\n56) Aristos: Sacrifice Y3 Aristos\nMove R1 Art Bhorner\nMove R1 Art Bhorner\nMove R2 Art Bhorner\nCatastrophe Bhorner Red\n\n57) bhorner: B B3 Bhorner\n\n58) Aristos: Discover Y1 Seedling B3 Arch\n\n59) bhorner: Build G1 Bhorner\n\n60) Aristos: Build Y2 Aristos\n\n61) bhorner: M G1 Bhorner Aristos\n\n62) Aristos: Attack G1 Aristos\n\n63) bhorner: M G1 Bhorner Aristos\nC Aristos Green\n\n64) Aristos: Trade Y1 G1 Aristos\n\n65) bhorner: S Y3 Bhorner\nM B1 Bhorner Aristos\nM B1 Xmas Aristos\nM B2 Xmas Aristos\nC Aristos Blue\n\n\tbhorner: That was a good game!  At first I thought I had you, but then the yellow situation raised it&#39;s head, and I was losing...  A roller coaster!\n\tAristos: Well played.\n\nHomeworlds Online (SDG# 32949)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.27, Ended: 2017.9.23\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) wil: H R2 B2 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) wil: B G1 Wil\n\tDraw5PlayAll: You know this lost for you last time...\n\twil: Lol, losing is what benefits learning....I rarely learn anything by winning a game.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) wil: T G1 Y1 Wil\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) wil: B G1 Wil\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) wil: T G1 B1 Wil\n\n11) Draw5PlayAll: Discover B1 Draw5playall G1 G1\n\n12) wil: D B1 Wil G3 G3\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) wil: B G1 Wil\n\n15) Draw5PlayAll: Build G2 Draw5playall\n\n16) wil: T G1 R1 Wil\n\n17) Draw5PlayAll: Discover G2 Draw5playall Y1 Y1\n\n18) wil: B Y2 Wil\n\n19) Draw5PlayAll: Build Y2 Draw5playall\n\n20) wil: M Y2 Wil G1\n\n21) Draw5PlayAll: Discover Y1 Draw5playall G1 G1b\n\n22) wil: B R1 Wil\n\n23) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n24) wil: S R1 Wil\nA B1 G1\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) wil: M R1 Wil G1\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Y1\nBuild G2 Y1\nBuild G3 Draw5playall\n\n28) wil: B B1 G1\n\n29) Draw5PlayAll: Discover G2 Y1 B3 B3\n\n30) wil: B B2 G3\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G1b\nBuild Y3 Draw5playall\nBuild G3 Draw5playall\n\n32) wil: B Y3 G1\n\n33) Draw5PlayAll: Move Y1 G1b B3\n\n34) wil: B R1 G1\n\n35) Draw5PlayAll: Move R1 Draw5playall B3\n\n36) wil: B Y3 Wil\n\n37) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 B3 Wil\nMove Y2 G1b Wil\nCatastrophe Wil Y\n\n38) wil: Move Y3 G1 Wil\n\n39) Draw5PlayAll: Build Y1 Draw5playall\n\n40) wil: Build B3 G3\n\n41) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 B3\nBuild G3 Draw5playall\nBuild R2 B3\n\n42) wil: T B3 R3 G3\n\twil: almost...almost had me there...\n\n43) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R1 B3 G1\n\n44) wil: B R3 G3\n\twil: So feels like I am about to make a critical error.\n\n45) Draw5PlayAll: Attack R1 G1\n\n46) wil: Sacrifice R3 G3\nAttack R1 G1\nAttack R1 G1\nPass\n\twil: Dang little mosquitos\n\n47) Draw5PlayAll: Build R3 B3\n\n48) wil: M R1 G1 Draw5playall\n\n49) Draw5PlayAll: Trade R3 Y3 B3\n\tDraw5PlayAll: Almost put that in the chat...\n\n50) wil: Sacrifice Y3 Wil\nMove R3 G3 Wil\nMove R1 G1 Draw5playall\nMove R1 G1 Draw5playall\nCatastrophe Draw5playall R\n\twil: I do that all the time..and no delete!!\n\n51) Draw5PlayAll: Sacrifice Y3 B3\nMove R2 B3 Wil\nMove G2 Y1 Wil\nMove G1 B3 Wil\n\n52) wil: T R3 Y3 Wil\n\n53) Draw5PlayAll: Trade G2 Y2 Wil\n\tDraw5PlayAll: Throwing all but the kitchen sink at you.\n\n54) wil: S Y3 Wil\nM B1 G3 Draw5playall\nM B1 G1 Draw5playall\nM B1 G1 Draw5playall\nC Draw5playall B\n\n\twil: Welcome visitors...\n\tDraw5PlayAll: I thought you had bluebirded me. Should have blown your red instead\n\nHomeworlds Online (SDG# 32973)\nVariants: &quot;Unrated&quot;\nStarted: 2017.8.27, Ended: 2017.9.9\nParticipants: willeth (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld Y2 G3 Y3 *\n\n\tDraw5PlayAll: All right, I have chosen to start with no blue as a handicap. Usually I go for B3+R1 stars and a G3 ship.\r\n\r\n\n\nHomeworlds Online (SDG# 33065)\nVariants: &quot;Hard time&quot;\nStarted: 2017.8.28, Ended: 2017.9.1\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H Y3 B2 G3\n\tdlwillson: Well hello! Long time, no see! :-)\n\n2) Felix: Homeworld R1 B3 G3\n\tFelix: Hahaha, that timing worked out well. Congrats on hitting the top again! You&#39;ve been playing really well lately; but I am to change that ;) Have fun.\n\tFelix: aim to*\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: You took my fortress... sad day! I&#39;m so used to playing fortress now, I&#39;m not always sure what to do with myself as a Goldilocks. I briefly debated playing a 1-1... but I don&#39;t want to be that obnoxious in a ladder game :P\n\tdlwillson: I wouldn&#39;t have minded. It&#39;s just a game. The greatest game in the world! Of Off all time! But still, just a game. :-)\n\tdlwillson: s/Of Off/Of/\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\tFelix: Good to know for next time! And agreed. The best game in the UNIVERSE! Wishing it would catch on more.\n\n6) Felix: Trade G1 R1 Felix\n\n7) dlwillson: Build R2 Dlwillson\n\n8) Felix: Build R2 Felix\n\twil: (apologizing in advance for the intrusion)  \r\nIn plotting how to make homeworlds as ubiquitous as chess... Can we come up with a better way than kidnapping the top chess players of each metropolitan area and locking them in a room with a bunch of pyramids?\n\tdlwillson: I like that idea! :-)\n\n9) dlwillson: B R2 Dlwillson\n\tFelix: I&#39;m in favor ;)\n\tdlwillson: More seriously, a live tournament with an entry fee and prizes would be fun, and I think it might make people curious. I also keep thinking that it&#39;s time for Looney Labs to make a Homeworlds box set.\n\n10) Felix: Trade R2 Y2 Felix\n\n11) dlwillson: Discover R1 Dlwillson Y1 Golden\n\tdlwillson: I just checked and tight-timings are possible in SDG. I put up a challenge of 1h/1h/1 as a test. It seems to have worked. I&#39;m thinking that it should be 1/1h/1, though.\n\n12) Felix: Discover R1 Felix G2 Forstep\n\tFelix: Interesting! I wonder if you could do something even tighter in theory? 5 minutes each side, with a maximum of 10? If you had your opponent on a skype or phone call, it could move very quickly.\n\n13) dlwillson: Discover R1 Golden B2 Sky\n\n14) Felix: Build Y1 Felix\n\n15) dlwillson: D R2 Dlwillson B1 Sea\n\tdlwillson: We should try it. Try m for minute, and challenge me.\n\n16) Felix: Move Y1 Felix Forstep\n\tFelix: Done. I&#39;m at work though, so I don&#39;t think I&#39;ll be able to play it out.\n\tFelix: No good. Looks like it doesn&#39;t take minutes, only hours, per this documentation: http://superdupergames.wikidot.com/howto:clocks\n\tdlwillson: Oh! It takes 0 as an increment!\n\n17) dlwillson: Build G1 Dlwillson\n\tFelix: So the best you could do would be to set one hour for the game, and have a 0 increment?\n\n18) Felix: Sacrifice G3 Felix\nBuild R2 Forstep\nBuild R3 Forstep\nBuild Y1 Forstep\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Sea\nBuild R3 Dlwillson\nBuild G1 Dlwillson\n\tdlwillson: Yes. That would be perfect, I think.\n\tFelix: We&#39;ll have to schedule one sometime! My schedule is pretty packed now though. Hard to set aside a solid hour for game time with a puppy, a baby, and two jobs :P\n\n20) Felix: Move R3 Forstep Felix\n\n21) dlwillson: Move G1 Dlwillson Sea\n\tdlwillson: Your burst was excellently surprising!\n\tdlwillson: Let&#39;s try that fast game. If it works, we can recommend it to Bamabots for the next tournament.\n\n22) Felix: D R2 Forstep Y1 Ichor\n\tFelix: It was probably a dumb move, in retrospect. But it&#39;s nice to be unpredictable :) And yes, I&#39;ll let you know when we can try that.\n\n23) dlwillson: T R2 Y2 Sea\n\n24) Felix: T R3 G3 Felix\n\n25) dlwillson: T R3 G3 Dlwillson\n\n26) Felix: D Y1 Forstep B1 Inglass\n\n27) dlwillson: M R3 Sea Forstep\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 Inglass\nBuild Y3 Felix\nBuild Y3 Felix\n\n29) dlwillson: S R2 Dlwillson\nA R1 Forstep\nA Y1 Forstep\n\n30) Felix: Trade Y2 G2 Felix\n\tdlwillson: Stop surprising me!\n\n31) dlwillson: B Y2 Forstep\n\tFelix: No :)\n\n32) Felix: Discover Y3 Felix G2 Doge\n\n33) dlwillson: Move R3 Forstep Sea\n\n34) Felix: Trade Y1 G1 Inglass\n\n35) dlwillson: T G3 R3 Dlwillson\n\n36) Felix: Build G3 Felix\n\n37) dlwillson: B G3 Sea\n\n38) Felix: S G3 Felix\nB G3 Felix\nB G3 Inglass\nB Y1 Inglass\n\n39) dlwillson: S G3 Sea\nB R2 Dlwillson\nB R2 Sea\nB R3 Forstep\n\n40) Felix: Trade G1 B1 Inglass\n\n41) dlwillson: T R3 G3 Sea\n\n42) Felix: Sacrifice G2 Felix\nBuild R3 Ichor\nBuild B2 Inglass\n\n43) dlwillson: T R1 G1 Sky\n\n44) Felix: Trade Y1 R1 Inglass\n\n45) dlwillson: Sacrifice G3 Sea\nBuild G2 Sea\nBuild G3 Sky\nBuild Y1 Sea\n\tdlwillson: You&#39;re playing really well this game. I think my time at the top of the ladder may be shorter than I&#39;d intended.\n\n46) Felix: Sacrifice Y3 Doge\nMove R1 Inglass Dlwillson\nMove R2 Ichor Dlwillson\nMove G3 Inglass Dlwillson\nCatastrophe Dlwillson Red\n\tFelix: Thank you! I&#39;ve had a losing streak for a while, so I hope I can break that. And I know the feeling... The last time I was on top, I played very poorly and lost my first game. Not that you&#39;re playing poorly! I just hope I&#39;m playing better ;)\n\n\tFelix: There. That&#39;s slightly smarter, I think.\n\tdlwillson: &quot;Darn! That&#39;s the end!&quot; https://www.youtube.com/watch?v=MT6cxlW6ym8\n\tdlwillson: Good game! Excellently played!\n\tFelix: Thank you! Likewise. I&#39;m sure my reign of terror will be brought to an end by you or Wil before long :P\n\tdlwillson: Ah, absolutely! &gt;;-)\n\nHomeworlds Online (SDG# 32943)\nStarted: 2017.8.30, Ended: 2017.10.13\nParticipants: ts52 (S), redsang (N)\nWinner: ts52\n\n1) redsang: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) redsang: Build G1 Redsang\n\tts52: Have a good game!\n\n4) ts52: B G1 Ts52\n\n5) redsang: Trade G1 Y1 Redsang\n\n6) ts52: T G1 R1 Ts52\n\n7) redsang: Build G1 Redsang\n\n8) ts52: Build R1 Ts52\n\n9) redsang: Trade G1 B1 Redsang\n\n10) ts52: Build R2 Ts52\n\n11) redsang: Discover B1 Redsang Y3 Portobello\n\n12) ts52: Discover R1 Ts52 G2 Kermit\n\n13) redsang: Build G1 Redsang\n\n14) ts52: Build G1 Ts52\n\n15) redsang: Build Y1 Redsang\n\n16) ts52: Trade R2 Y2 Ts52\n\n17) redsang: Move Y1 Redsang Portobello\n\n18) ts52: Build R2 Kermit\n\n19) redsang: Discover Y1 Portobello R2 Fili\n\tredsang: Sorry for the delay.\n\n20) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\nBuild R3 Ts52\n\n21) redsang: Build Y1 Redsang\n\n22) ts52: Move Y2 Ts52 Kermit\n\n23) redsang: Trade Y1 B1 Redsang\n\n24) ts52: Trade R3 B3 Ts52\n\n25) redsang: Discover B1 Redsang R3 Ali\n\n26) ts52: Build R3 Ts52\n\n27) redsang: Build G1 Redsang\n\n28) ts52: Move R2 Kermit Ali\n\n29) redsang: Build G2 Redsang\n\n30) ts52: Catastrophe Redsang Green\nSacrifice Y2 Kermit\nMove R2 Ali Redsang\nMove R2 Kermit Ali\n\n31) redsang: Trade Y1 G1 Redsang\n\n32) ts52: Attack G1 Redsang\n\tts52: Thanks for the game!\n\tredsang: Thank you.\n\n\nHomeworlds Online (SDG# 32965)\nVariants: &quot;Unrated&quot;\nStarted: 2017.8.30, Ended: 2017.8.31\nParticipants: wil (S), twermund (N)\nWinner: wil\n\n1) twermund: Homeworld B3 G1 Y3\n\n2) wil: H B3 Y2 G3\n\n3) twermund: Discover Y3 Twermund G2 Ice\n\ttwermund: oh. woops\n\twil: Ya abandoned your homeworld?\n\ttwermund: Yup, just a rookie loss :)\n\twil: Lol..live n learn!\n\n\nHomeworlds Online (SDG# 33082)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.8.31, Ended: 2017.9.25\nParticipants: Felix (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B2 R1 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\tbhorner: Have fun.  :)\n\tFelix: Thanks, you too! :)\n\n3) bhorner: B G1 Bhorner\n\n4) Felix: Build G1 Felix\n\n5) bhorner: T G1 Y1 Bhorner\n\n6) Felix: Trade G1 B1 Felix\n\n7) bhorner: Build Y1 Bhorner\n\n8) Felix: Build B1 Felix\n\n9) bhorner: Build Y1 Bhorner\n\n10) Felix: Discover B1 Felix G2 Out\n\tbhorner: What an interesting race.  I hope I&#39;ve blunted your advantage!\n\n11) bhorner: Discover Y1 Bhorner G3 Xmas\n\tFelix: We shall see! :)\n\n12) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B2 Out\nBuild B3 Felix\n\n13) bhorner: Build Y2 Bhorner\n\n14) Felix: Trade B3 G3 Felix\n\tbhorner: I guess not...  That seems like a very risky move you made, but I can see how to make you pay for it, so maybe not.\n\n15) bhorner: Build Y2 Xmas\n\tFelix: As long as I control blue, it&#39;s not too risky :)\n\n16) Felix: T B2 Y2 Out\n\n17) bhorner: Trade Y2 B2 Bhorner\n\n18) Felix: B B3 Felix\n\n19) bhorner: Move B2 Bhorner Xmas\n\n20) Felix: Trade B1 R1 Felix\n\n21) bhorner: Discover Y1 Bhorner R3 Turmoil\n\n22) Felix: Move B2 Out Turmoil\n\n23) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Xmas\nBuild Y3 Turmoil\nBuild Y3 Bhorner\n\n24) Felix: Attack Y1 Turmoil\n\n25) bhorner: Trade Y2 R2 Xmas\n\n26) Felix: M Y1 Turmoil Bhorner\n\tFelix: Good move!\n\tbhorner: Whew, when I saw that there was a chat message, I thought you might be apologizing for killing me or something.  :)\n\n27) bhorner: Attack Y1 Bhorner\n\n28) Felix: Build Y2 Out\n\n29) bhorner: T Y1 G1 Bhorner\n\n30) Felix: Discover Y2 Out G3 In\n\n31) bhorner: A B2 Turmoil\n\n32) Felix: Build Y1 In\n\n33) bhorner: Move Y1 Bhorner In\n\n34) Felix: Sacrifice Y2 In\nMove B3 Felix Out\nMove B3 Out Xmas\n\n35) bhorner: D R2 Xmas G2 Run\n\n36) Felix: Build Y2 Out\n\n37) bhorner: Move B2 Xmas Out\n\n38) Felix: S R1 Felix\nA B2 Out\n\n39) bhorner: Sacrifice Y2 Xmas\nMove Y3 Turmoil Out\nMove Y3 Out Felix\n\tFelix: Good move, by the way! When you moved your y1 to In, that is.\n\n40) Felix: Sacrifice Y2 Out\nMove Y2 Out Felix\nMove B2 Out Felix\n\n41) bhorner: S R2 Run\nA G3 Felix\nA B2 Felix\n\n42) Felix: Trade Y2 R2 Felix\n\n43) bhorner: T Y3 R3 Bhorner\n\tFelix: I say, very well done! I normally play with a red in my home star, so I&#39;m not used to this sort of attack happening and let my guard down. Way to capitalize :)\n\tbhorner: Ok.  I thought it must just have been a slip.  I&#39;ve joined a very small group in winning my first round game against you.  :). Thanks!\n\tbhorner: Well...  Assuming it happens.\n\n44) Felix: Attack B2 Felix\n\tbhorner: The yellow overpopulation made me nervous, but I think I&#39;m good.\n\n45) bhorner: S R3 Bhorner\nA B2 Felix\nA R2 Felix\nPass\n\tFelix: I think you are! Very well played.\n\n\tFelix: Good game and well done!\n\tbhorner: Thanks.  :). I hope I get to face to again!  Good game to you too!\n\nHomeworlds Online (SDG# 33085)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.1, Ended: 2017.9.11\nParticipants: mneme (S), Felix (N)\nWinner: mneme\n\n1) Felix: Homeworld B2 R3 G3\n\n2) mneme: Homeworld R1 G3 B3\n\tFelix: Hello! Good luck and have fun :)\n\n3) Felix: Build G1 Felix\n\tmneme: Hey -- you too!\n\n4) mneme: Build B1 Mneme\n\n5) Felix: Trade G1 R1 Felix\n\n6) mneme: Trade B1 R1 Mneme\n\n7) Felix: Build R2 Felix\n\n8) mneme: Build R2 Mneme\n\n9) Felix: T R2 Y2 Felix\n\n10) mneme: Trade R2 Y2 Mneme\n\n11) Felix: Build R2 Felix\n\n12) mneme: Build R2 Mneme\n\n13) Felix: Trade R2 Y2 Felix\n\n14) mneme: Discover R2 Mneme G2 Cleo\n\n15) Felix: Discover R1 Felix G1 Parsnip\n\n16) mneme: Build B1 Mneme\n\n17) Felix: Move Y2 Felix Parsnip\n\n18) mneme: Build B1 Mneme\n\n19) Felix: Build R2 Parsnip\n\n20) mneme: Move B1 Mneme Cleo\n\n21) Felix: Discover R2 Parsnip G2 Cuke\n\n22) mneme: Build B1 Mneme\n\n23) Felix: Build Y1 Parsnip\n\n24) mneme: Trade B3 G3 Mneme\n\n25) Felix: Build R2 Cuke\n\n26) mneme: Discover R1 Mneme B2 Refuge\n\n27) Felix: Build R3 Parsnip\n\n28) mneme: Sacrifice G3 Mneme\nBuild R3 Cleo\nBuild B2 Cleo\nBuild B3 Mneme\n\n29) Felix: Move R3 Parsnip Refuge\n\n30) mneme: Sacrifice B1 Cleo\nTrade R1 B1 Refuge\n\n31) Felix: Attack B1 Refuge\n\n32) mneme: Sacrifice Y2 Mneme\nMove B1 Mneme Refuge\nMove B1 Mneme Refuge\nCatastrophe Refuge B\n\n33) Felix: B G1 Felix\n\n34) mneme: Trade R2 Y2 Cleo\n\n35) Felix: Trade G1 B1 Felix\n\n36) mneme: Build B1 Mneme\n\n37) Felix: Move B1 Felix Parsnip\n\n38) mneme: Trade B3 Y3 Mneme\n\n39) Felix: Build B1 Parsnip\n\n40) mneme: Build B2 Cleo\n\n41) Felix: Move B1 Parsnip Cuke\n\n42) mneme: Trade B2 G2 Cleo\n\n43) Felix: M Y1 Parsnip Cuke\n\n44) mneme: Build G1 Cleo\n\n45) Felix: Build G1 Felix\n\n46) mneme: Discover G2 Cleo Y3 Euterpe\n\n47) Felix: Sacrifice G3 Felix\nBuild Y1 Cuke\nBuild Y1 Cuke\nBuild Y3 Felix\n\n48) mneme: Build G3 Euterpe\n\n49) Felix: Build G3 Felix\n\n50) mneme: Discover G2 Euterpe R2 Erato\n\n51) Felix: Move Y1 Cuke Mneme\n\n52) mneme: Sacrifice G3 Euterpe\nBuild Y3 Cleo\nBuild G3 Erato\nBuild B2 Mneme\n\n53) Felix: Sacrifice Y2 Felix\nMove Y1 Cuke Mneme\nMove Y1 Cuke Mneme\nCatastrophe Mneme Yellow\n\n54) mneme: Trade B2 Y2 Mneme\n\n55) Felix: S Y3 Felix\nM G3 Felix Parsnip\nM G3 Parsnip Cuke\nM G3 Cuke Mneme\n\n56) mneme: Sacrifice Y3 Cleo\nMove G2 Erato Mneme\nMove G3 Erato Parsnip\nMove G3 Parsnip Felix\n\n57) Felix: Sacrifice R2 Cuke\nAttack Y2 Mneme\nAttack G2 Mneme\n\n58) mneme: Attack G1 Felix\n\n\tFelix: Yeah, I knew that attack would backfire, but it just seemed too fun to not try it :) Good game and way to capitalize on my blunder correctly!\n\tmneme: Good game and -very- challenging opposition until that blunder!\n\tFelix: Very good game! To be honest, I underestimated you a bit, since I&#39;ve played very few games against you. I shan&#39;t do so again :)\n\tFelix: Underestimate you, that is.\n\tmneme: Heh.  I -do- have a championship; it&#39;s probably not that wise, although like anyone I make mistakes.  And excellent; it&#39;s good to be taken seriously.  \n\tmneme: http://www.wunderland.com/LooneyLabs/Origins/2011/gallery.html\n\tFelix: Nice! When was this championship? I didn&#39;t realize there had been real ones already. Were there a lot of participants? I thought it was a bit too tricky to get enough Homeworlds players in the same room :P\n\tmneme: This was in 2011 -- back when Looney Labs was still running &quot;The Big Experiment&quot; events at Origins.  I don&#39;t remember how many players we had for the Binary Homeworlds tournament--not that many, compared to, say, the fluxx tournament, but at least 8 or 10 (maybe more; this was a while ago).\n\tmneme: On the other hand, one of the participants was Andy Looney himself (there were some other strong players, but the finals was me and Andy).  \r\n\r\nFortunately or unfortunately, the player who scares me -most- isn&#39;t in this tournament (that being TwoShort; I&#39;ve only beaten him once!)\n\tFelix: Ah, cool! Endo is another player I have trouble with who doesn&#39;t seem to be active anymore. Shame. I&#39;d like to keep cutting my teeth on the better players!\n\tmneme: It&#39;s definately (for all of us) the way to improve!  Sometimes stressful, though!\n\tmneme: I also, BTW, ended up being one of John Cooper&#39;s two advisors in an exhibition match at Looneycon 1 (Will, IIRC, was one of Andy&#39;s advisors on the other side).  Pretty fun game, though a touch short:\r\n\r\nhttp://looneylabs.ning.com/profiles/blog/show?id=6320919%3ABlogPost%3A110703&amp;commentId=6320919%3AComment%3A110521&amp;xg_source=activity\r\n\r\nI always forget the ning forurms exist, alas.\n\tFelix: Very interesting! Thanks for the link. I enjoyed following along with the game :)\n\tDraw5PlayAll: Do the other two have SDG accounts?\n\tmneme: Wil&#39;s SDG account is Wil; he&#39;s in the tournament and solid.  Andy does, in fact, have a SDG account, though I don&#39;t remember the last time I saw him play here.  \n\tDraw5PlayAll: Wait, so it was mneme + JohnCooper + ?? vs wil + Andy + ??.\r\nDo the two ??s have SDG accounts?\n\tmneme: Ah, that was the version of the question I was dreading; I&#39;m not sure.  You can ask Joshua D on ning, since I know you&#39;ve responded to him there; I don&#39;t think I&#39;m accquainted (other than that game) with the third player on Andy&#39;s side.\n\tmneme: And functionally, of course, it was Andy vs John -- the other four players were strategic advisors/helpers, but Andy and Coop made the final call if there needed to be one.\n\nHomeworlds Online (SDG# 33086)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.1, Ended: 2017.9.6\nParticipants: mneme (S), Babamots (N)\nWinner: mneme\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: How&#39;s it going! I&#39;ve filled the &quot;start game&quot; form, so we&#39;re official. Good luck!\n\n2) mneme: Homeworld G3 B1 Y3\n\tmneme: Great -- have fun and do your best!\n\n3) Babamots: Build G1 Babamots\n\n4) mneme: Build Y1 Mneme\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) mneme: Build Y2 Mneme\n\n7) Babamots: Discover Y1 Babamots G3 Gaia\n\n8) mneme: Discover Y1 Mneme G2 Flavor\n\n9) Babamots: Build Y2 Gaia\n\n10) mneme: Trade Y2 G2 Mneme\n\n11) Babamots: Build G1 Babamots\n\n12) mneme: Build Y2 Flavor\n\n13) Babamots: Trade G1 R1 Babamots\n\n14) mneme: Discover Y1 Flavor B3 Touch\n\n15) Babamots: Move Y2 Gaia Flavor\n\n16) mneme: Discover Y2 Flavor Y3 Waystation\n\n17) Babamots: Move Y2 Flavor Mneme\n\n18) mneme: Sacrifice G2 Mneme\nBuild Y2 Waystation\nBuild Y3 Touch\n\n19) Babamots: Discover Y1 Gaia B2 Pakled\n\tBabamots: Oh yeah. Well, maybe that will teach me not to play while I&#39;m distracted :-P\n\tmneme: :)  \n\n20) mneme: Trade Y1 G1 Touch\n\n21) Babamots: Move Y1 Pakled Waystation\nCatastrophe Waystation Y\n\n22) mneme: Trade Y3 R3 Mneme\n\n23) Babamots: Discover Y2 Mneme G2 Vulcan\n\n24) mneme: Build Y1 Touch\n\n25) Babamots: Build G1 Babamots\n\n26) mneme: Build G1 Touch\n\n27) Babamots: Move G1 Babamots Touch\n\n28) mneme: Discover G1 Touch Y2 Scent\n\n29) Babamots: Sacrifice R1 Babamots\nAttack Y1S Touch\n\n30) mneme: Build R1 Mneme\n\n31) Babamots: Trade G3 R3 Babamots\n\n32) mneme: Sacrifice R1 Mneme\nAttack Y1 Touch\n\n33) Babamots: Discover Y2 Vulcan B3 Romulus\n\n34) mneme: Trade Y3 R3 Touch\n\tmneme: s r1 mneme \r\na y1 touch\n\n35) Babamots: Trade Y2 G2 Romulus\n\tmneme: oops.\n\n36) mneme: Attack G1 Touch\n\n37) Babamots: Build G2 Romulus\n\n38) mneme: Build G2 Touch\n\n39) Babamots: Trade G2 Y2 Romulus\n\n40) mneme: Trade G2 Y2 Touch\n\n41) Babamots: Build G2 Romulus\n\n42) mneme: Build G2 Touch\n\n43) Babamots: Discover G2 Romulus B2 Kesprytt\n\n44) mneme: Sacrifice G2 Touch\nBuild R1 Touch\nBuild R1 Touch\n\n\tBabamots: I don&#39;t think we need to play the rest of this out, do you? Would you like the satisfaction of crushing me, or do you mind if I resign?\n\tDraw5PlayAll: Kesprytt??\n\tDraw5PlayAll: Pakled? Gaia? Heck, is Babamots a Trek reference?\n\tBabamots: Babamots is not a Trek reference, but all my system names are.\n\tmneme: I&#39;m fine with a resignation here; it&#39;s not quite a 2 turn kill, but best case, you&#39;re left without any larges or red.\n\tBabamots: That&#39;s one win for you! No wins for me in this tournament yet. Too many mistakes.\n\tmneme: Good luck!  Worst case, it will be a learning experience!\n\tmneme: Thanks for the game!\n\tBabamots: I think I can do better from here out. Good luck on your other games!\n\tmneme: You too!\n\nHomeworlds Online (SDG# 33089)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.1, Ended: 2017.9.10\nParticipants: Remneb (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: Hey there -- I&#39;ll fill out the form; have fun!\n\n2) Remneb: Homeworld B3 R2 G3\n\tRemneb: Have a good game too !\n\n3) mneme: Build G1 Mneme\n\n4) Remneb: Build G1 Remneb\n\n5) mneme: Trade G1 R1 Mneme\n\n6) Remneb: Trade G1 R1 Remneb\n\n7) mneme: Build R2 Mneme\n\n8) Remneb: Build G1 Remneb\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Remneb: Trade G1 Y1 Remneb\n\n11) mneme: Build R2 Mneme\n\n12) Remneb: Discover R1 Remneb Y1 Lod\n\n13) mneme: Discover R2 Mneme Y3 Alpha\n\n14) Remneb: Build G1 Remneb\n\n15) mneme: Build G1 Mneme\n\n16) Remneb: Sacrifice G1 Remneb\nBuild R2 Lod\n\n17) mneme: Build R3 Mneme\n\n18) Remneb: Discover R1 Lod Y3 Thor\n\n19) mneme: Trade R1 B1 Mneme\n\n20) Remneb: Build G1 Remneb\n\n21) mneme: Discover R3 Mneme B3 Beta\n\n22) Remneb: Discover G1 Remneb Y1 Rob\n\n23) mneme: Build Y2 Mneme\n\n24) Remneb: Build Y2 Remneb\n\n25) mneme: Build Y3 Mneme\n\n26) Remneb: Discover Y1 Remneb G1 Rem\n\tmneme: Letting me grow a y3 for free was a blunder, but since it&#39;s a tournament game, I&#39;ll take it.  \n\n27) mneme: Move Y2 Mneme Beta\n\tRemneb: I was aware of it.\n\tmneme: I assumed you were, but thanks.\n\n28) Remneb: Build G2 Remneb\n\n29) mneme: Move G3 Mneme Thor\n\n30) Remneb: Discover R1 Thor B1 Dove\n\n31) mneme: Build G2 Thor\n\n32) Remneb: Move G2 Remneb Rob\n\n33) mneme: Sacrifice G3 Thor\nBuild G2 Mneme\nBuild G3 Mneme\nBuild G3 Thor\n\n34) Remneb: Sacrifice Y2 Remneb\nMove G1 Rob Beta\nMove G1 Beta Mneme\nCatastrophe Mneme G\n\n35) mneme: Move G3 Thor Dove\n\n36) Remneb: Build Y2 Rem\n\n37) mneme: Sacrifice R2 Alpha\nAttack R1 Dove\nPass\n\n38) Remneb: Move Y2 Rem Remneb\n\n39) mneme: Trade Y2 G2 Mneme\n\n40) Remneb: Build G1 Remneb\n\n41) mneme: Sacrifice G2 Mneme\nBuild Y2 Mneme\nBuild Y3 Beta\n\n\tRemneb: I try to do the same and the program told me that the rule was to choose a small yellow firts !\n\tmneme: If you sacrifice your g2 at Rob, the pieces ather (y1, g2) go back to the bank before you start doing grow actions--so you end up not being able to reach the y3.  This was why I set up the grow in the first place--with your only g2 on a lone y1 system, you didn&#39;t have time to reach it first.\r\n\r\nI&#39;d try to play out some endgames were I you, rather than resigning when it seems hopeless. The endgame is probably the toughest part of the game, and many, many games turn on an endgame being bungled resulting in a game turning around.\r\n\r\nObviously, if I had an unblockable lethal, it&#39;s different, but with your having r2s, that wasn&#39;t going to happen quickly unless I could trigger a catastrophe in your home system.\n\nHomeworlds Online (SDG# 33091)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.1, Ended: 2017.9.7\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\twil: Good luck\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 Y1 Wil\n\tFelix: You as well!\n\n6) Felix: T G1 R1 Felix\n\n7) wil: B Y1 Wil\n\n8) Felix: Build R1 Felix\n\n9) wil: D Y1 Wil B3 B3\n\tFelix: A race it is :)\n\twil: Now that was you that played my fav obstinate move!\n\n10) Felix: Discover R1 Felix B1 Y3\n\n11) wil: B Y1 Wil\n\tFelix: That was a deceptively difficult decision!\n\n12) Felix: Build R2 Felix\n\twil: This&#39;ll be fun if I can&#39;t attack and you can&#39;t move\n\n13) wil: D Y1 Wil Y3 Why3\n\tFelix: I&#39;d rather be able to move...\n\n14) Felix: Sacrifice G3 Felix\nBuild R2 Y3\nBuild R2 Felix\nBuild R3 Y3\n\n15) wil: S G3 Wil\nB Y2 Why3\nB Y2 B3\nB Y3 Wil\n\n16) Felix: Trade R3 Y3 Y3\n\n17) wil: T Y1 G1 B3\n\n18) Felix: Move R2 Y3 B3\n\n19) wil: T Y3 G3 Wil\n\n20) Felix: Sacrifice R2 Felix\nAttack Y2 B3\nAttack G1 B3\n\n21) wil: B G1 Wil\n\n22) Felix: Build G1 B3\n\twil: I&#39;ve blown this game.... Can you please make a horrendously bad move for me to capitalize on?\n\n23) wil: D G1 Wil B3 Bee3\n\tFelix: No promises ;)\n\twil: Not asking for promises...just do what you can.\n\twil: Not asking for promises...just do what you can.\n\n24) Felix: Move R1 Y3 Bee3\n\n25) wil: B G2 Bee3\n\n26) Felix: Attack G1 Bee3\n\n27) wil: T G2 R2 Bee3\n\n28) Felix: Build R3 Bee3\n\n29) wil: B G2 Wil\n\n30) Felix: Sacrifice Y3 Y3\nMove G1 B3 Wil\nMove G1 Bee3 Wil\nMove R3 Bee3 Wil\nCatastrophe Wil Green\n\n31) wil: S Y2 Why3\nM R2 Bee3 Wil\nM Y1 Why3 Wil\n\n32) Felix: Sacrifice R2 B3\nAttack R2 Wil\nAttack Y1 Wil\n\twil: Somewhere about now would be great for.that catastrophic mistake.\n\n\tFelix: Oops. I don&#39;t know if that was it. Sorry, I tried ;)\n\twil: It wouldnt let me do anything silly... Good gsme.\n\nHomeworlds Online (SDG# 33090)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.1, Ended: 2017.9.13\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) ts52: H Y3 B1 G3\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 R1 Mneme\n\tts52: Have a good game! Is this a tournament game?\n\n6) ts52: Trade G1 R1 Ts52\n\tmneme: You too--and yes!\n\n7) mneme: Build R2 Mneme\n\n8) ts52: Build R2 Ts52\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) ts52: Build G1 Ts52\n\n11) mneme: Build R2 Mneme\n\n12) ts52: Discover R2 Ts52 G2 Kermit\n\n13) mneme: Discover R1 Mneme Y3 Cleo\n\n14) ts52: Build G1 Ts52\n\n15) mneme: Build Y1 Mneme\n\n16) ts52: Trade G1 B1 Ts52\n\n17) mneme: Discover Y1 Mneme R3 Euterpe\n\n18) ts52: Build B1 Ts52\n\tmneme: Incidentally, I&#39;m not at all sure what Aaron&#39;s doing with the sorting on this site.\r\n\r\nHomeworlds sorting is -simple-.  Top row is always player 0.  Bottom row is player 1.  2nd row is stuff that&#39;s (until things start getting blown up) 1 away from player 1; 4th row is stuff that&#39;s 1 away from player 2.  And then anything that deviates from this (or pretty much anything, in a small universe situation) goes further in the middle than that, or ideally offsides.\r\n\r\nI&#39;m not really sure what the logic here is, but at least to me it&#39;s exactly opposite from what I described -- cleo, then euterpe, then kermit.\n\n19) mneme: Sacrifice G3 Mneme\nBuild R2 Cleo\nBuild R3 Cleo\nBuild R3 Mneme\n\tts52: The sorting works the way I expect it to for a little while, but eventually starts to break down. But at the start it always shows your homeworld on the bottom row. Adjacent systems to your homeworld one row up. Your opponents homeworld at the top (the enemies gate is always up?) and adjacent systems to their homeworld one row down. \n\tmneme: That&#39;s what I&#39;d expect, yes.  But even with four worlds, I see your homeworld, then cleo and euterpe, then kermit, and finally my homeworld.  It may depend on what side you&#39;re sitting.\n\n20) ts52: Move B1 Ts52 Kermit\n\n21) mneme: Trade R2 B2 Mneme\n\n22) ts52: Build R2 Kermit\n\n23) mneme: Sacrifice B2 Mneme\nTrade R2 B2 Cleo\nTrade R3 G3 Cleo\n\n24) ts52: Trade G1 Y1 Ts52\n\n25) mneme: Build G1 Cleo\n\n26) ts52: Move Y1 Ts52 Kermit\n\n27) mneme: Trade B2 G2 Cleo\n\n28) ts52: Build B2 Kermit\n\n29) mneme: Sacrifice G2 Cleo\nBuild R2 Mneme\nBuild R3 Cleo\n\n30) ts52: Trade B2 Y2 Kermit\n\n31) mneme: Trade R2 G2 Mneme\n\n32) ts52: D R2 Kermit Y3 Bigbird\n\n33) mneme: Move G3 Cleo Kermit\n\n34) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit Bigbird\nMove R2 Kermit Bigbird\n\n35) mneme: Move R3 Mneme Bigbird\n\n36) ts52: Build G1 Ts52\n\n37) mneme: Sacrifice R3 Cleo\nAttack R2 Bigbird\nAttack R2 Bigbird\nAttack Y1 Kermit\n\n38) ts52: Discover R1 Ts52 Y2 Zoe\n\n39) mneme: Attack B1 Bigbird\n\n40) ts52: Move G1 Ts52 Zoe\n\n41) mneme: Move G3 Kermit Ts52\n\n42) ts52: Sacrifice R1 Zoe\nAttack G3 Ts52\n\n43) mneme: Sacrifice Y2 Mneme\nMove R3 Bigbird Kermit\nMove R3 Kermit Ts52\n\tmneme: Good game.\n\n44) ts52: Trade G3 R3 Ts52\n\n45) mneme: Sacrifice R2 Bigbird\nAttack R3 Ts52\nAttack G3 Ts52\n\tmneme: nah, what the hell, it&#39;s the most fun endgame.\n\n46) ts52: Sacrifice G1 Zoe\nBuild B2 Ts52\n\tts52: Good game. Well played.\n\n47) mneme: Trade R3 B3 Ts52\nCatastrophe Ts52 B\n\tmneme: You too!\r\n\r\nI&#39;d have probably done the catastrophe -- though of course the squeeze is that you can&#39;t do both.\n\n\tmneme: True.  On the other hand, if you&#39;re going to go out, might as well do it with a bang.\r\n\r\nI&#39;m doing ok.  Enough that I&#39;m resenting having to do it again inthe double elimination game--it&#39;s likely that the only game I lose (if any) is against wil.\n\nHomeworlds Online (SDG# 33094)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.2, Ended: 2017.9.14\nParticipants: shoejitsu (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\tBabamots: I&#39;m filling out the game start form. Good luck!\n\n2) shoejitsu: Homeworld B3 R1 G3\n\tshoejitsu: have fun!\n\n3) Babamots: Build G1 Babamots\n\n4) shoejitsu: Build G1 Shoejitsu\n\n5) Babamots: Discover G1 Babamots Y3 Betazed\n\n6) shoejitsu: Trade G1 B1 Shoejitsu\n\n7) Babamots: Build G1 Babamots\n\n8) shoejitsu: Build G1 Shoejitsu\n\n9) Babamots: Build G2 Betazed\n\n10) shoejitsu: Build G2 Shoejitsu\n\n11) Babamots: Discover G1 Betazed Y2 Galorndon\n\n12) shoejitsu: Trade G1 Y1 Shoejitsu\n\n13) Babamots: Sacrifice G3 Babamots\nBuild G1 Betazed\nBuild G2 Galorndon\nBuild G3 Babamots\n\n14) shoejitsu: Move G2 Shoejitsu Galorndon\n\n15) Babamots: Sacrifice G2 Betazed\nBuild G2 Galorndon\nBuild G3 Betazed\nCatastrophe Galorndon G\n\n16) shoejitsu: Discover B1 Shoejitsu G2 Xed\n\n17) Babamots: Discover G3 Betazed B2 Ferenginar\n\n18) shoejitsu: Build B1 Xed\n\n19) Babamots: Build G1 Ferenginar\n\n20) shoejitsu: Build B2 Xed\n\n21) Babamots: Trade G3 R3 Ferenginar\n\n22) shoejitsu: Build Y1 Shoejitsu\n\n23) Babamots: Build G2 Betazed\n\n24) shoejitsu: Trade B2 G2 Xed\n\n25) Babamots: Sacrifice G3 Babamots\nBuild G3 Babamots\nBuild G3 Ferenginar\nBuild R1 Ferenginar\n\n26) shoejitsu: Move Y1 Shoejitsu Xed\n\n27) Babamots: Move G1 Betazed Xed\n\n28) shoejitsu: Trade G2 R2 Xed\n\n29) Babamots: Sacrifice G2 Betazed\nBuild G2 Xed\nBuild G2 Xed\nCatastrophe Xed G\n\n30) shoejitsu: Trade G3 R3 Shoejitsu\n\n31) Babamots: Build G1 Ferenginar\n\n\tshoejitsu: ugh... well this is a mess\n\tshoejitsu: good game\n\tBabamots: Sorry it was a rough one for you :(.\r\nI&#39;ll fill out the game-finish form.\r\nThanks for playing, and good luck on the rest of games! \n\tshoejitsu: good luck to you!\n\nHomeworlds Online (SDG# 33079)\nStarted: 2017.9.2, Ended: 2017.12.5\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H Y3 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n3) ts52: Build G1 Ts52\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\tts52: going for the fast shut out, eh?\n\n5) ts52: Build G1 Ts52\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) ts52: Discover G1 Ts52 B2 Gonzo\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) ts52: B G1 Ts52\n\n10) Draw5PlayAll: Discover B1 Draw5playall G3 G3\n\n11) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n12) Draw5PlayAll: Build B2 G3\n\n13) ts52: Trade G2 Y2 Gonzo\n\n14) Draw5PlayAll: Build B3 Draw5playall\n\n15) ts52: Trade G3 B3 Ts52\n\n16) Draw5PlayAll: Build B3 G3\n\n17) ts52: Build G2 Gonzo\n\n18) Draw5PlayAll: Trade B3 Y3 G3\n\n19) ts52: Build G3 Ts52\n\n20) Draw5PlayAll: Build B3 G3\n\n21) ts52: Trade G3 R3 Ts52\n\n22) Draw5PlayAll: Trade B3 R3 G3\n\n23) ts52: Build G3 Ts52\n\n24) Draw5PlayAll: Move R3 G3 Gonzo\n\n25) ts52: Sacrifice Y2 Gonzo\nDiscover G2 Gonzo B3 Grover\nMove G2 Gonzo Grover\n\tDraw5PlayAll: Chaos breaks out!\n\n26) Draw5PlayAll: Attack G1 Gonzo\n\n27) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R1 Ts52\n\n28) Draw5PlayAll: Sacrifice Y3 G3\nMove G1 Gonzo Grover\nCatastrophe Grover Green\nMove B3 Draw5playall G3\nMove B2 G3 Gonzo\n\n29) ts52: Discover B3 Ts52 G2 Kermit\n\n30) Draw5PlayAll: Build B3 Draw5playall\n\n31) ts52: Trade G1 Y1 Ts52\n\n32) Draw5PlayAll: Build Y1 Draw5playall\n\n33) ts52: Build G1 Ts52\n\n34) Draw5PlayAll: Move Y1 Draw5playall G3\n\n35) ts52: Discover G1 Ts52 Y2 Bigbird\n\n36) Draw5PlayAll: Build Y1 Draw5playall\n\n37) ts52: Move Y1 Ts52 Kermit\n\n38) Draw5PlayAll: Build Y2 G3\n\n39) ts52: Build G1 Bigbird\n\n40) Draw5PlayAll: Move Y1 G3 Gonzo\n\n41) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Ts52\n\n42) Draw5PlayAll: Discover B3 Draw5playall Y3 Y3\n\n43) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild R1 Ts52\n\n44) Draw5PlayAll: Move B3 Y3 Bigbird\n\n45) ts52: Move R3 Ts52 Kermit\n\n46) Draw5PlayAll: Build Y3 G3\n\n47) ts52: Move G1 Bigbird G3\n\tDraw5PlayAll: I think I have a win in 5.\n\n48) Draw5PlayAll: Sacrifice Y2 G3\nDiscover Y3 G3 R2 R2\nMove B3 G3 R2\n\tts52: I think you&#39;re probably right.\n\tDraw5PlayAll: That complicates my plan severely.\n\n49) ts52: Move Y2 Kermit G3\n\n50) Draw5PlayAll: Discover Y1 Draw5playall R3 R3\n\tts52: Happy to help. :)\n\n51) ts52: Build Y2 G3\n\n52) Draw5PlayAll: Move R3 Gonzo G3\n\n53) ts52: Sacrifice Y2 G3\nMove G2 Bigbird R3\nDiscover G1 G3 Y2 Zoe\n\n54) Draw5PlayAll: Attack Y2 G3\n\n55) ts52: Attack Y1 R3\n\tDraw5PlayAll: I feel like this is an easy draw for my side, but I would like to play this out and SDG does not have Offer Draw for Homeworlds games. (Perhaps you could email Aaron and see if there is a quick fix.)\n\tts52: I&#39;m happy to play it out if you are.\n\n56) Draw5PlayAll: Build R1 G3\n\n57) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R2 Kermit\nBuild G3 R3\n\n58) Draw5PlayAll: Move R1 G3 R2\n\n59) ts52: M R2 Ts52 Zoe\n\n60) Draw5PlayAll: Move B3 R2 G3\n\n61) ts52: Move R3 Kermit R3\n\n62) Draw5PlayAll: Move B1 G3 R2\n\n63) ts52: Move R3 R3 Gonzo\n\n64) Draw5PlayAll: Sacrifice Y1 Gonzo\nMove B2 Gonzo G3\n\n65) ts52: Build Y1 R3\n\tDraw5PlayAll: You can never get more blue or more non-small yellows.\n\n66) Draw5PlayAll: Move R3 G3 Zoe\n\tts52: True, I&#39;m curious how this one is going to end.\n\n67) ts52: Move R2 Zoe R3\n\tDraw5PlayAll: Let me try this on for size.\n\n68) Draw5PlayAll: Attack G1 Zoe\n\tts52: That seems like it could be the beginning of the end for me\n\n69) ts52: Move G1 Ts52 Gonzo\n\tDraw5PlayAll: Is it?\n\tDraw5PlayAll: I mean, I have 5 large ships and I need to defend 5 systems... letting you get either Y2 is extremely dangerous.\n\n70) Draw5PlayAll: Move R1 R2 G3\n\tts52: It&#39;s true. Letting me get a y2 would be bad for you. But letting you get a green isn&#39;t great for me either.\n\n71) ts52: Move Y1 R3 Gonzo\n\tDraw5PlayAll: I see a thing that MIGHT get you a win, but it takes several turns to setup and I can defend before it happens.\n\n72) Draw5PlayAll: Pass\nPass\nPass\nPass\nPass\n\n73) ts52: Move G2 R3 Draw5playall\n\n74) Draw5PlayAll: Move R3 Zoe G3\n\n75) ts52: Move R2 R3 Zoe\n\n76) Draw5PlayAll: Move R3 G3 Draw5playall\n\n77) ts52: Attack G1 Zoe\n\n78) Draw5PlayAll: Attack G2 Draw5playall\n\n79) ts52: Move R2 Zoe R3\n\n80) Draw5PlayAll: Move B2 G3 Zoe\n\n81) ts52: Move G3 R3 Zoe\n\tDraw5PlayAll: The stash is empty. STILL.\n\n82) Draw5PlayAll: Move B2 Zoe G3\n\tts52: Yep. If you&#39;d only let me get a medium yellow.... ;)\n\tDraw5PlayAll: But what could you do either way?\n\n83) ts52: Move G1 Zoe R3\n\n84) Draw5PlayAll: Move B2 G3 Bigbird\n\tts52: Honestly, I&#39;m not 100% sure. This may be a very long endgame.\n\n85) ts52: Sacrifice G3 Zoe\nBuild G3 R3\nBuild Y2 Gonzo\nPass\n\n86) Draw5PlayAll: Move B2 Draw5playall G3\n\tDraw5PlayAll: The only thing you could possibly do is try to sabotage me on the red economy.\n\n87) ts52: Move G1 R3 Draw5playall\n\tDraw5PlayAll: You have neither the blue nor the movement to blow both of my stars. I can hold the game eternally as long as you never take over R2, G3, or bigbird. Also G3 and my homeworld have reds in then and R2 is a red system, therefore you could only get me to waste red at bigbird (or by sending two ships in at once, which wastes your only Y2).\n\tts52: Yeah, I&#39;m really not sure what either of us should be doing at this point. Going to have to think on this one.\n\tDraw5PlayAll: I have no way at all to win or even make progress unless you let me. I cannot afford to throw another blue to G3 because you catastrophe it.\n\n88) Draw5PlayAll: Attack G1 Draw5playall\n\tts52: Here goes nothing.\n\n89) ts52: Move G3 R3 Draw5playall\nCatastrophe Draw5playall Green\n\n90) Draw5PlayAll: Pass\n\n91) ts52: Build G1 Ts52\n\n92) Draw5PlayAll: Pass\n\n93) ts52: Build G2 Bigbird\n\n94) Draw5PlayAll: Move B2 Bigbird Draw5playall\n\n95) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Gonzo\nBuild G3 Ts52\n\tDraw5PlayAll: Do you have any way of getting through to the developer, so that he can please add the &quot;Offer a Draw&quot; button to Homeworlds?\n\n96) Draw5PlayAll: Move B2 G3 R2\n\tts52: Sadly, I don&#39;t.\n\n97) ts52: Sacrifice Y2 Gonzo\nMove G3 Gonzo Draw5playall\nMove B3 Kermit Draw5playall\n\n98) Draw5PlayAll: Sacrifice R3 Draw5playall\nAttack B3 Draw5playall\nAttack G3 Draw5playall\nAttack G2 Bigbird\n\n99) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild R3 Kermit\n\n100) Draw5PlayAll: Move B3 Draw5playall R3\n\n101) ts52: Sacrifice Y2 Gonzo\nMove R3 Gonzo Draw5playall\nMove R3 Kermit Draw5playall\n\tDraw5PlayAll: You only have 2 larges left.\n\n102) Draw5PlayAll: Sacrifice Y3 R2\nMove G2 Bigbird Ts52\nMove G3 Draw5playall Gonzo\nMove G3 Gonzo Ts52\nCatastrophe Ts52 Green\n\tts52: 3 now. ;)\n\n103) ts52: Sacrifice R2 Kermit\nAttack Y3S Draw5playall\nAttack B2S Draw5playall\n\n\tDraw5PlayAll: Ah yes, forgot about that. You win.\n\tts52: An excellent game, as usual. This was a particularly tough one though.\n\nHomeworlds Online (SDG# 33101)\nStarted: 2017.9.5, Ended: 2018.1.11\nParticipants: dlwillson (S), Felix (W), Draw5PlayAll (N), ts52 (E)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: Yay, it worked!\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) dlwillson: Homeworld B3 R2 G3\n\tdlwillson: Last Player Standing wins?\n\n4) Felix: Homeworld B1 R1 G3 *\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Have fun all :)\n\tts52: Wow. I&#39;m the only one who didn&#39;t go for homeworld defense, huh? This will be interesting.\n\tDraw5PlayAll: Fortunately, Felix picked dlwillson as his victim. Oh how I wish I had just passed on move 1...\n\tDraw5PlayAll: (Fortunately = it was not me)\n\n6) ts52: Build G1 Ts52\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: Build G1 Felix\n\tFelix: b g1 felix\n\tFelix: Haha, rookie move :)\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) ts52: B G1 Ts52\n\n11) dlwillson: T G1 Y1 Dlwillson\n\n12) Felix: T G1 Y1 Felix\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) ts52: Discover G1 Ts52 B3 Gonzo\n\n15) dlwillson: B G1 Dlwillson\n\n16) Felix: Build Y1 Felix\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) ts52: Trade G1 R1 Ts52\n\n19) dlwillson: B Y2 Dlwillson\n\n20) Felix: Trade Y1 R1 Felix\n\n21) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n22) ts52: Build G1 Ts52\n\n23) dlwillson: Discover G1 Dlwillson B1 Sea\n\n24) Felix: M R1 Felix Gonzo\n\tdlwillson: So much going on... And it&#39;s likely to get worse...\n\n25) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\tFelix: These 4p games are so hard to wrap my head around\n\n26) ts52: Sacrifice R1 Ts52\nAttack R1W Gonzo\n\n27) dlwillson: Build G1 Dlwillson\n\n28) Felix: Build Y1 Felix\n\n29) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: I&#39;m not sure why I thought that would work.\n\n30) ts52: Build R1 Gonzo\n\n31) dlwillson: M Y2 Dlwillson Sea\n\n32) Felix: Move Y1 Felix G2\n\n33) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n34) ts52: Trade R1 B1 Gonzo\n\n35) dlwillson: Build Y2 Sea\n\n36) Felix: Build Y2 Felix\n\n37) Draw5PlayAll: Move R2 Draw5playall G2\n\n38) ts52: Build R1 Gonzo\n\n39) dlwillson: T Y2 R2 Sea\n\n40) Felix: Trade Y1 R1 Felix\n\n41) Draw5PlayAll: Attack Y1W G2\n\n42) ts52: Trade R1 Y1 Gonzo\n\n43) dlwillson: Build Y2 Sea\n\n44) Felix: Build Y2 Felix\n\n45) Draw5PlayAll: Build Y3 Draw5playall\n\n46) ts52: Build Y3 Gonzo\n\n47) dlwillson: Discover Y2 Sea B2 Northwest_sky\n\n48) Felix: Discover Y2 Felix G2 Out\n\n49) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n50) ts52: Build R2 Gonzo\n\n51) dlwillson: S G3 Dlwillson\nB Y1 Northwest_sky\nB Y3 Sea\nB Y3 Dlwillson\n\n52) Felix: B Y3 Felix\n\n53) Draw5PlayAll: Discover R1 Draw5playall B2 B2\n\n54) ts52: Discover B1 Gonzo G2 Kermit\n\n55) dlwillson: T Y2 G2 Northwest_sky\n\n56) Felix: M R1 Felix Out\n\n57) Draw5PlayAll: Build Y2 Draw5playall\n\n58) ts52: Move R1 Gonzo Ts52\n\tDraw5PlayAll: Please build the R2!\n\n59) dlwillson: Move Y2 Sea Northwest_sky\n\n60) Felix: Build G1 Felix\n\tdlwillson: Nope. Not me. Someone else can. I&#39;m not set up well for red. Or any other color, actually. I think I don&#39;t know how to play Homeworlds free-for-all.\n\n61) Draw5PlayAll: Move B1 Draw5playall G2\n\tFelix: So hectic...\n\n62) ts52: Move Y1 Gonzo Kermit\n\n63) dlwillson: Move Y1 Dlwillson Felix\n\n64) Felix: Move Y2 Felix Dlwillson\n\n65) Draw5PlayAll: Build G2 Draw5playall\n\n66) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild G3 Gonzo\n\n67) dlwillson: A Y2W Dlwillson\n\n68) Felix: Attack Y1S Felix\n\n69) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 B2\nBuild R3 G2\n\tFelix: Tradesies :)\n\tDraw5PlayAll: I take it dlwillson&#39;s G2@northwest_sky was a coward.\n\n70) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R3 Gonzo\nBuild R3 Ts52\n\n71) dlwillson: B R3 Sea\n\n72) Felix: Move G1 Felix Gonzo\nCatastrophe Gonzo G\n\tdlwillson: Draw5: not sure what you mean? They go where the amiable directs them. But, maybe I missed something.\n\n73) Draw5PlayAll: Move Y3 Draw5playall B2\n\n74) ts52: Build R3 Ts52\n\tDraw5PlayAll: I have 3 systems and 0 plans.\n\n75) dlwillson: M R3 Sea Northwest_sky\n\tdlwillson: Ugh. &#39;ansible&#39;, not &#39;amiable&#39;.\n\n76) Felix: Build G1 Felix\n\n77) Draw5PlayAll: Move G2 Draw5playall B2\n\n78) ts52: Discover R3 Ts52 G3 Oscar\n\n79) dlwillson: T Y1 B1 Northwest_sky\n\n80) Felix: Move Y1 Felix Dlwillson\n\tdlwillson: Is there any advantage to not playing completely defensively? I can&#39;t think of one.\n\n81) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: It&#39;s more fun to not? :)\n\n82) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\n\n83) dlwillson: A Y1W Dlwillson\n\n84) Felix: Move Y3 Felix Dlwillson\nCatastrophe Dlwillson Yellow\n\n85) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild B2 G2\n\n86) ts52: Discover G3 Ts52 B3 Grover\n\n87) dlwillson: Sacrifice Y3 Sea\nMove R2 Sea Dlwillson\nMove G1 Dlwillson Felix\nMove G2 Northwest_sky Felix\nCatastrophe Felix G\n\tDraw5PlayAll: Someone is going to be eliminated real soon.\n\n88) Draw5PlayAll: Move R2 B2 Sea\n\n89) ts52: M R3 Gonzo Out\n\tdlwillson: Two someones are.\n\n90) dlwillson: Sacrifice G1 Sea\nBuild Y2 Northwest_sky\n\n91) Draw5PlayAll: Build Y3 B2\n\n92) ts52: Attack Y2W Out\n\n93) dlwillson: Trade R2 G2 Dlwillson\n\tDraw5PlayAll: I thought about trying to land a red in dlwillson&#39; homeworld but I figured ts52 would not follow up and I do not want to waste a red and the movement to get there.\n\tFelix: Well, it was fun while it lasted! These big games don&#146;t reward offensive moves. Shame!\n\n94) Draw5PlayAll: Sacrifice Y1 G2\nMove Y3 B2 Sea\n\tts52: funny, I thought about the same thing \n\n95) ts52: Move Y1 Kermit Oscar\n\n96) dlwillson: S Y2 Northwest_sky\nM R3 Northwest_sky Sea\nM R3 Sea Dlwillson\n\tDraw5PlayAll: Just messing with the yellow economy.\n\n97) Draw5PlayAll: Build G1 B2\n\n98) ts52: Build Y1 Out\n\n99) dlwillson: Trade R3 Y3 Dlwillson\n\n100) Draw5PlayAll: Move G1 B2 Sea\n\n101) ts52: Attack R1W Out\n\n102) dlwillson: T B1 G1 Northwest_sky\n\n103) Draw5PlayAll: Move R2 Sea Kermit\n\n104) ts52: Sacrifice Y1 Kermit\nMove B1 Kermit Oscar\n\n105) dlwillson: Build Y1 Northwest_sky\n\n106) Draw5PlayAll: Build R1 B2\n\n107) ts52: Discover G3 Ts52 Y3 Bigbird\n\n108) dlwillson: B Y2 Dlwillson\n\n109) Draw5PlayAll: Move R2 G2 Sea\n\n110) ts52: Sacrifice G3 Bigbird\nBuild Y3 Oscar\nBuild R2 Oscar\nBuild R3 Gonzo\n\n111) dlwillson: Trade Y1 B1 Northwest_sky\n\n112) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 B2 Gonzo\nMove R2 Kermit Gonzo\nCatastrophe Gonzo Red\n\n113) ts52: Move R3 Oscar Northwest_sky\n\tdlwillson: Sorry for the delay, gents!\n\n114) dlwillson: M G1 Northwest_sky Oscar\n\tDraw5PlayAll: I thought my R2@kermit was too vulnerable so I used it instead of the R1@B2. Also I keep a weapon at B2.\n\tDraw5PlayAll: Hey DLWillson, I am sending you a message... please read it before moving.\n\tts52: I feel as if I&#39;m about to be ganged up on...\n\n115) Draw5PlayAll: Sacrifice Y2 G2\nMove G2 B2 Oscar\nMove G1 Sea Oscar\nCatastrophe Oscar Green\n\tDraw5PlayAll: Wrong! Perhaps you would like an undo!\n\n116) ts52: Attack Y2S Northwest_sky\n\tdlwillson: You should pick on somebody your own size.\n\n117) dlwillson: Sacrifice G2 Dlwillson\nBuild B1 Northwest_sky\nBuild B1 Northwest_sky\nCatastrophe Northwest_sky B\n\tDraw5PlayAll: Who, me? But ts52 is too big (he still has 5 larges to my 4) and you are too small.\n\n118) Draw5PlayAll: Build Y1 Draw5playall\n\tdlwillson: No, TS52 should... I might have declined your offer of cooperation, if TS52 hadn&#39;t moved into my system. Had I been him, I would have attacked you and bet that I would not be able to capitalize on it. That still seems like the best play, to me. Either of you spending to hit me, is wasting pyramids or turns. Unless you can turn a profit, that is...\n\n119) ts52: Build G1 Grover\n\tdlwillson: Since I can&#39;t win, I can afford to do silly things like that.\n\tDraw5PlayAll: I will start to discover some large systems.\n\n120) dlwillson: Trade Y3 G3 Dlwillson\n\tDraw5PlayAll: But I do not 100% trust that you cannot win. If me and ts52 keep attacking each other that might give you enough time to build a legitimate fleet.\n\n121) Draw5PlayAll: Move Y1 Draw5playall G2\n\n122) ts52: Build G1 Ts52\n\n123) dlwillson: Build G1 Dlwillson\n\n124) Draw5PlayAll: Move G1 Draw5playall B2\n\n125) ts52: Move G1 Ts52 Gonzo\n\tdlwillson: Draw5: You should cross the &quot;dlwillson has a legitimate fleet&quot; bridge when you come to it. ts52 is a much more immediate threat to you. Any turns or ships either of you spends on me... Well, you play your own game, but I will casually predict that the next player to attack me, will ultimately lose the game, because of the waste of time/material.\n\n126) dlwillson: D G1 Dlwillson B1 Sky\n\tDraw5PlayAll: No, I meant that as me and Tim attack each other, you will get enough to become a threat... what will more likely happen is that I destroy Tim (or vice versa) and then have to defeat you. I will deal with you later, but you seem to be in the kingmaker position...\n\n127) Draw5PlayAll: Build Y1 B2\n\n128) ts52: Build Y2 Gonzo\n\n129) dlwillson: B G2 Dlwillson\n\n130) Draw5PlayAll: Build G2 Draw5playall\n\n131) ts52: Trade R1 B1 Ts52\n\n132) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild G3 Sky\nBuild G3 Dlwillson\n\n133) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 B2\nBuild R1 Sea\n\n134) ts52: Move Y2 Out Grover\n\n135) dlwillson: T G2 R2 Sky\n\n136) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Sea\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n137) ts52: Build Y3 Out\n\n138) dlwillson: Discover G2 Dlwillson B1 Lake\n\n139) Draw5PlayAll: Move G3 B2 Draw5playall\n\n140) ts52: Sacrifice G3 Grover\nBuild G2 Ts52\nBuild G3 Grover\nBuild G3 Gonzo\n\n141) dlwillson: B R1 Sky\n\n142) Draw5PlayAll: Discover B1 G2 B3 B3\n\n143) ts52: Discover B1 Ts52 R3 Elmo\n\n144) dlwillson: T R2 B2 Sky\n\n145) Draw5PlayAll: Build B2 G2\n\n146) ts52: Move R1 Out Gonzo\n\tDraw5PlayAll: My small blue ship has been trying to set up signs saying &quot;PRIVATE - NO ENTRY&quot; on the planet.\n\n147) dlwillson: Build R2 Sky\n\n148) Draw5PlayAll: Move B2 G2 Elmo\n\n149) ts52: Move R3 Out B3\n\n150) dlwillson: Pass\n\n151) Draw5PlayAll: Attack B1E Elmo\n\n152) ts52: Attack B1N B3\n\n153) dlwillson: M Y2 Dlwillson Sky\n\n154) Draw5PlayAll: Sacrifice Y2 Sea\nMove B2 Elmo Ts52\nMove B1 Elmo Ts52\n\n155) ts52: Sacrifice Y3 Gonzo\nMove Y2 Gonzo B2\nMove Y2 Grover B2\nMove R3 B3 B2\nCatastrophe B2 Yellow\n\n156) dlwillson: D R2 Sky Y2 Sol\n\n157) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 B2\nBuild R2 B2\nCatastrophe B2 Red\n\n158) ts52: Attack B2N Ts52\n\tDraw5PlayAll: ts52 dies in two moves.\n\tts52: Yikes! How&#39;d I miss that?\n\n159) dlwillson: S G3 Sky\nB Y1 Sky\nB Y2 Sky\nB G3 Sky\n\n160) Draw5PlayAll: Sacrifice G1 B2\nBuild B2 Ts52\nCatastrophe Ts52 Blue\n\tDraw5PlayAll: ts52: Incorrect!\n\n161) ts52: Move Y1 Out B3\n\n162) dlwillson: S Y2 Sky\nM Y1 Sky G2\nM Y2 Sky G2\nC G2 Y\n\n163) Draw5PlayAll: Move Y1 Draw5playall G2\n\n164) ts52: Trade G1 Y1 Grover\n\tDraw5PlayAll: I like moves like that.\n\n165) dlwillson: B G1 Dlwillson\n\n166) Draw5PlayAll: Trade R1 G1 Sea\n\tdlwillson: I need you two more evenly balanced.\n\n167) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y1 Out\nBuild Y2 B3\n\tDraw5PlayAll: Where did all my yellow go?!\n\n168) dlwillson: T G3 Y3 Dlwillson\n\n169) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Sea\nBuild Y2 Sea\n\n170) ts52: Move Y1 Out Gonzo\n\n171) dlwillson: T B2 Y2 Sky\n\n172) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n173) ts52: Sacrifice Y2 B3\nMove Y1 B3 Sea\nMove Y1 Grover Sea\nCatastrophe Sea Y\n\n174) dlwillson: M G3 Sky Sol\n\n175) Draw5PlayAll: Move Y1 G2 Sea\n\n176) ts52: Build Y1 Out\n\tDraw5PlayAll: All right ts52, your time is almost up.\n\n177) dlwillson: Build Y1 Sky\n\n178) Draw5PlayAll: Discover Y3 Draw5playall B2 B2\n\n179) ts52: Build Y2 Gonzo\n\n180) dlwillson: M G3 Sol Draw5playall\n\n181) Draw5PlayAll: Attack G3S Draw5playall\n\n182) ts52: Sacrifice Y2 Gonzo\nDiscover G1 Gonzo Y2 Attack\nMove G1 Attack Draw5playall\nCatastrophe Draw5playall G\n\n183) dlwillson: S Y2 Sky\nM Y1 Sky Out\nM Y1 Out Draw5playall\n\n184) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n185) ts52: Build Y2 Gonzo\n\tDraw5PlayAll: Ummm... ts52 cannot afford to help dlwillson destroy me because ts52&#39;s empire will then die as well.\n\tts52: Yeah, I&#39;ve been struggling to stay alive. But I don&#39;t think I&#39;ll be able to much longer.\n\tts52: Building the last 2 yellow only means they&#39;ll be destroyed in the next few turns, I think I might last longer returning a lot of green to the supply. And if not, at least I&#39;ll go out in a bang. ;)\n\n186) dlwillson: Sacrifice Y3 Dlwillson\nMove G2 Lake Sol\nMove G2 Sol Draw5playall\nMove G1 Sky Sol\n\n187) Draw5PlayAll: Move Y3 B2 Draw5playall\n\n188) ts52: Discover Y1 Gonzo G2 Oscar\n\n189) dlwillson: Build Y2 Draw5playall\n\n190) Draw5PlayAll: Move G3 Sea Dlwillson\n\n191) ts52: Sacrifice Y3 Out\nMove Y1 Oscar Draw5playall\nMove G3 Gonzo Out\nMove G3 Out Draw5playall\nCatastrophe Draw5playall Y\n\n192) dlwillson: Build G1 Draw5playall\nCatastrophe Draw5playall G\n\n193) ts52: Sacrifice Y2 Gonzo\nMove G1 Ts52 Dlwillson\nMove G2 Ts52 Dlwillson\nCatastrophe Dlwillson G\n\n\tdlwillson: Good, fun game. Very political, as multi-player should be. Well done, all! Now, unless I miss my guess, this ends in two TS52 turns.\n\tts52: Wow. That was a very interesting and unusual game. (I don&#39;t recall the last time I played a full game larger than 2 players.) Thanks everyone. That was fun!\n\tdlwillson: I missed my guess. :-)\n\nHomeworlds Online (SDG# 33123)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.7, Ended: 2017.9.13\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) wil: H Y2 B1 G3\n\twil: I was clicking away...  I shouldn&#39;t have challenged you\r\n...you want me to resign so you can challenge Felix?\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: B G1 Wil\n\tdlwillson: It&#39;s no problem. I am here to play. You and he are both challenging and enjoyable opponents.\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: B R1 Dlwillson\n\n8) wil: B B1 Wil\n\n9) dlwillson: D R1 Dlwillson Y1 Golden\n\n10) wil: D B1 Wil Y3 Y3\n\n11) dlwillson: Build R1 Dlwillson\n\n12) wil: B B2 Wil\n\n13) dlwillson: B R2 Dlwillson\n\n14) wil: D B1 Wil G3 G3\n\n15) dlwillson: D R1 Dlwillson Y1 Sol\n\n16) wil: S G3 Wil\nB B2 G3\nB B2 Y3\nB B3 Wil\n\n17) dlwillson: S G3 Dlwillson\nB R2 Golden\nB R2 Sol\nB R3 Dlwillson\n\n18) wil: S B2 Y3\nT B3 G3 Wil\nT B2 Y2 G3\n\n19) dlwillson: M R2 Golden G3\n\n20) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n21) dlwillson: Build R3 G3\n\n22) wil: T B3 R3 Wil\n\n23) dlwillson: Sacrifice R2 G3\nAttack Y2 G3\nAttack B1 G3\n\n24) wil: D B1 Y3 G1 G1\n\n25) dlwillson: B B3 G3\n\n26) wil: B B3 G1\n\n27) dlwillson: M B3 G3 Wil\n\n28) wil: A B3 Wil\n\n29) dlwillson: Move B1 G3 Wil\nCatastrophe Wil B\n\n30) wil: T B3 Y3 G1\n\n31) dlwillson: Trade R2 G2 Dlwillson\n\n32) wil: B Y1 G1\n\tdlwillson: No! Hell, no! I see what you almost did there!\n\twil: Lol, it was worth a try...\n\n33) dlwillson: Sacrifice G2 Dlwillson\nBuild Y3 G3\nBuild R2 G3\n\n34) wil: S B2 Y3\nT B2 R2 Y3\nT R3 B3 Wil\n\n35) dlwillson: M Y3 G3 Wil\n\tdlwillson: Good block!\n\n36) wil: S R2 Y3\nA Y3 Wil\nP\n\tdlwillson: I think I&#39;ve still got you, though.\n\twil: Oh I am still waiting on some.collosal .mistake.to capitalize on..\n\n37) dlwillson: M R3 G3 Wil\n\n38) wil: M B1 G1 Wil\n\tdlwillson: I&#39;d better hurry up with that mistake, I guess.\n\twil: I have little faith that you are capable of making a mistake of the proportions required.\r\n\n\n39) dlwillson: Sacrifice R3 Dlwillson\nAttack B3 Wil\nAttack Y3 Wil\nAttack B1 Wil\n\tdlwillson: I tried. Just too little time left and no confusing choices.\n\n\nHomeworlds Online (SDG# 33141)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.10, Ended: 2017.10.17\nParticipants: bhorner (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: (to be clear, this is a tournament game).  \r\nGood luck, and have fun!\r\n\n\n2) bhorner: Homeworld R3 B1 G3\n\n3) mneme: Build G1 Mneme\n\n4) bhorner: Build G1 Bhorner\n\n5) mneme: Trade G1 B1 Mneme\n\tbhorner: yes, the great tournament.  :)\r\ngood luck to you too, and also have fun!\n\n6) bhorner: T G1 B1 Bhorner\n\tmneme: And you!\n\n7) mneme: Build B2 Mneme\n\n8) bhorner: B G1 Bhorner\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) bhorner: Build B2 Bhorner\n\n11) mneme: Build B2 Mneme\n\n12) bhorner: Trade B1 Y1 Bhorner\n\n13) mneme: Discover B1 Mneme G3 Calliope\n\n14) bhorner: Discover B2 Bhorner G2 Melpomene\n\n15) mneme: Build G1 Mneme\n\n16) bhorner: Build Y1 Bhorner\n\n17) mneme: Build Y1 Mneme\n\n18) bhorner: B Y2 Bhorner\n\n19) mneme: Move Y2 Mneme Calliope\n\n20) bhorner: M Y2 Bhorner Melpomene\n\n21) mneme: Discover G1 Mneme Y3 River\n\n22) bhorner: D Y1 Bhorner G2 Exhaust\n\n23) mneme: Build G1 Mneme\n\n24) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Melpomene\nBuild Y3 Bhorner\nBuild Y3 Exhaust\n\n25) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Mneme\nBuild G3 River\n\n26) bhorner: Trade Y1 R1 Bhorner\n\n27) mneme: Trade G2 R2 Mneme\n\n28) bhorner: B G2 Bhorner\n\n29) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Calliope\nBuild R1 Mneme\n\n30) bhorner: Sacrifice G1 Bhorner\nBuild R2 Bhorner\n\n31) mneme: Move R1 Mneme Calliope\n\n32) bhorner: Move R2 Bhorner Exhaust\n\n33) mneme: Move G3 River Melpomene\n\n34) bhorner: Sacrifice Y2 Melpomene\nMove Y2 Melpomene Calliope\nMove B2 Melpomene River\n\n35) mneme: Attack Y2 Calliope\n\tmneme: I totally didn&#39;t notice that you&#39;d used a muse name for one of your worlds before now.  Respect!\n\tbhorner: lol\r\nEvery time I read your name, I pronounce it in my head &quot;mini-me&quot;.  :)\n\n36) bhorner: Move Y1 Exhaust Calliope\nCatastrophe Calliope Yellow\n\n37) mneme: Sacrifice G3 Mneme\nBuild G1 Melpomene\nBuild G3 River\nBuild Y1 Mneme\n\tmneme: It&#39;s greek -- for a muse.  Pronounced (almost) &quot;nemay&quot;.\n\tDraw5PlayAll: Oh, I say &quot;im-neem&quot;.\n\n38) bhorner: M G2 Bhorner Melpomene\nCat Melpomene Green\n\tmneme: How to you pronounce &quot;mnemonic?&quot;\r\n\n\n39) mneme: Sacrifice R1 Calliope\nAttack B2 River\n\n40) bhorner: M R2 Exhaust Calliope\n\n41) mneme: Sacrifice G3 River\nBuild B1 River\nBuild B3 Mneme\nBuild B3 Calliope\n\tBabamots: Now I don&#39;t think I&#39;ll be able to un-see mini-me.\n\n42) bhorner: Move Y3 Exhaust River\n\n43) mneme: Sacrifice B2 Mneme\nTrade B2 Y2 River\nTrade B1 Y1 River\nCatastrophe River Y\n\tDraw5PlayAll: IM-NEEM! IM-NEEM! IM-NEEM!\r\nNUH-MAY! NUH-MAY! NUH-MAY!\r\n\r\nThat should help it.\n\tbhorner: It helped me.\n\tmneme: The way I pronounce it, the epsilon (er, e) is really more pronounced like a schwa.  neh-may.  \n\n44) bhorner: Trade Y3 G3 Bhorner\n\tmneme: well, I -hope- that was reasonably predictable.\n\tbhorner: Made too many moves at the bus stop, didn&#39;t anticipate that.  :)\n\n45) mneme: Sacrifice R2 Mneme\nAttack R2 Calliope\nPass\n\n46) bhorner: T R1 Y1 Bhorner\n\tmneme: That was wasn&#39;t exactly a trap, but I had thought it out beforehand.  \n\tbhorner: It&#39;s been a while since I used blue to attack like that...  I&#39;m going to have to go back to the history.  :)  I don&#39;t have much hope to pick up the pieces, but I&#39;ll give it a go.\n\tbhorner: (back to the history to sort out what happened)\n\n47) mneme: Move Y1 Mneme Calliope\n\n48) bhorner: B Y2 Bhorner\n\tmneme: I&#39;d call it using blue to defend or counterattack in this case, but I know what you mean.\n\tmneme: And yeah, you&#39;re in a bad spot at this pint, but best to play it out--everyone blunders sometimes.\n\n49) mneme: Build Y2 Calliope\n\n50) bhorner: Discover Y2 Bhorner G2 Doh\n\n51) mneme: Trade B3 G3 Calliope\n\n52) bhorner: B Y2 Doh\n\n53) mneme: Trade Y1 R1 Calliope\n\n54) bhorner: D Y2 Doh B3 Blurb\n\n55) mneme: Move R2 Calliope Doh\n\n56) bhorner: S G3 Bhorner\nB Y1 Blurb\nB Y3 Bhorner\nB Y3 Doh\n\n57) mneme: Sacrifice G3 Calliope\nBuild Y3 Mneme\nBuild R1 Doh\nBuild R2 Doh\n\n58) bhorner: Sacrifice Y2 Doh\nMove Y1 Blurb Mneme\nMove Y2 Blurb Mneme\nCatastrophe Mneme Y\n\n59) mneme: Build R2 Calliope\n\n60) bhorner: T Y1 G1 Bhorner\n\n61) mneme: Build R3 Calliope\n\n62) bhorner: Build Y1 Bhorner\n\n63) mneme: Build B1 Calliope\n\n64) bhorner: Discover Y1 Bhorner G2 Nored\n\n65) mneme: Trade R3 Y3 Calliope\n\n66) bhorner: B Y1 Nored\n\n67) mneme: Build R3 Calliope\n\n68) bhorner: Build Y1 Doh\n\n69) mneme: Sacrifice Y3 Calliope\nMove R1 Doh Bhorner\nMove R2 Doh Bhorner\nMove R2 Doh Bhorner\nCatastrophe Bhorner R\n\n70) bhorner: Trade Y3 R3 Bhorner\n\n71) mneme: Build B2 Calliope\n\n72) bhorner: Discover Y1 Nored B3 Fluid\n\n73) mneme: Move B2 Calliope Bhorner\n\n74) bhorner: Sacrifice Y3 Doh\nMove R3 Bhorner Calliope\nMove R3 Calliope Mneme\nMove Y1 Nored Bhorner\n\n75) mneme: Sacrifice Y2 Calliope\nMove B1 Calliope Bhorner\nMove B1 Calliope Bhorner\nCatastrophe Bhorner B\n\n\tmneme: It doesn&#39;t really matter.  \n\tbhorner: If I had moved to a small blue, hen:\r\ns y3 doh\r\n  m y1 doh calliope\r\n  m y1 nored calliope\r\n  m y1 nored calliope\r\n  c yellow calliope\r\n\r\nYou couldn&#39;t move, and I could take your b2 at home...\r\nBut I agree, it doesn&#39;t really matter.\n\tmneme: It didn&#39;t, because my next move is to trade for a y3 which I could then use to finish up the kill after the capture.  But yeah, it would have slowed things down for a turn.  \n\nHomeworlds Online (SDG# 33134)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.10, Ended: 2017.10.15\nParticipants: ts52 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\n2) ts52: H Y3 B1 G3\n\n3) Babamots: Build G1 Babamots\n\tBabamots: Thanks for being in the tournament! Good luck!\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks for organizing it! Good luck to you too.\n\n5) Babamots: Discover G1 Babamots B3 Kurl\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) Babamots: Build G1 Babamots\n\n8) ts52: Build G2 Ts52\n\n9) Babamots: Build G2 Kurl\n\n10) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n11) Babamots: Trade G2 Y2 Kurl\n\n12) ts52: Trade G2 Y2 Gonzo\n\n13) Babamots: Build G2 Kurl\n\n14) ts52: Trade G3 R3 Gonzo\n\n15) Babamots: Trade G1 R1 Kurl\n\n16) ts52: Build R1 Gonzo\n\n17) Babamots: Build R1 Kurl\n\n18) ts52: Discover R3 Gonzo G3 Kermit\n\n19) Babamots: Build G1 Kurl\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n21) Babamots: Discover R1 Kurl B2 Betazed\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Gonzo\nBuild Y1 Gonzo\n\n23) Babamots: Sacrifice G3 Babamots\nBuild R2 Betazed\nBuild R2 Kurl\nBuild G3 Babamots\n\n24) ts52: Trade G3 R3 Ts52\n\n25) Babamots: Sacrifice G3 Babamots\nBuild R3 Betazed\nBuild G3 Kurl\nBuild G3 Babamots\n\n26) ts52: Sacrifice Y2 Gonzo\nMove R1 Gonzo Kermit\nMove R1 Kermit Betazed\nCatastrophe Betazed Red\n\n27) Babamots: Discover G3 Kurl B2 Galorndon\n\n28) ts52: Move Y1 Gonzo Kermit\n\n29) Babamots: Discover G1 Kurl Y2 Iconia\n\tBabamots: So if you name several systems of the same color, do you pick other muppets? I can only think of a few muppets of each color. Are there any green ones besides Kermit and Oscar?\n\tts52: Typically I don&#39;t have too many. For green I typically have kermit, oscar and robin (kermit&#39;s nephew). For red I use elmo, but if I get more than that I have to scramble a bit. For blue I have gonzo and grover. And yellow is bigbird, and if I squint zoe.\n\n30) ts52: Discover G2 Gonzo Y3 Bigbird\n\tBabamots: I also thought of Little Bird and Bert. Telly is kind of red.\n\tBabamots: Pepe and Animal are pretty red. Cookie Monster, Harry Monster, and Sam Eagle are blue. Scooter and Janice are yellowish. Dr. Teeth and Sherlock Hemlock have green skin.\n\tts52: Excellent! I&#39;ve used Scooter before, but Animal is a good one, as in Dr. Teeth. Thanks!\n\n31) Babamots: Discover G1 Iconia Y3 Xindus\n\n32) ts52: Build R1 Gonzo\n\n33) Babamots: Trade R1 B1 Kurl\n\tDraw5PlayAll: Xindus\r\nKurl\r\n\r\nBetazed seems to be a blue or green. Galorndon seems to be always blue.\n\tBabamots: Not on purpose. I pick Star Trek worlds for my system names almost totally at random.\n\tBabamots: Sometimes &quot;Ferenginar&quot; is an investment, or &quot;Kronos&quot; might be for an aggressive move. \n\tBabamots: Sometimes &quot;Ferenginar&quot; is an investment, or &quot;Kronos&quot; might be for an aggressive move. \n\n34) ts52: Move R2 Gonzo Xindus\n\n35) Babamots: Discover B1 Kurl R2 Cuellar\n\n36) ts52: Attack G1 Xindus\n\n37) Babamots: Sacrifice G3 Babamots\nBuild B2 Cuellar\nBuild B3 Cuellar\nBuild G3 Babamots\n\tDraw5PlayAll: But what are Xindus &amp; Kurl &amp; Cuellar?\r\nHeck, maybe you should just give me a full list of your system names and their meanings, without any spoilers.\n\tBabamots: Here are the names I use most often:\r\nIconia: Home of an ancient race that built mysterious gateways allowing instant travel between distant worlds.\r\nRomulus: Home of the manipulative, secretive Romulans. \r\nGalorndon: Site of a tense standoff between the Federation and the Romulans.\r\nKronos: Home of the Klingon warrior race.\r\nBetazed: Home of a telepathic race including TNG&#39;s Troi.\r\nCuellar: Site of a secret Cardassian fleet in defiance of their treaty with the Federation.\r\nKurl: Home of an extremely ancient, long-extinct race. Captain Picard was given a rare artifact from Kurl by his archeology mentor.\r\nXindus: A planet shown in ENT that&#39;s home to 5 intelligent lifeforms.\r\nVulcan: Home of a highly intelligent, logic-loving race that is friendly to the Federation.\r\nFerenginar: Home of the greedy, scheming, big-eared Ferengi.\n\n38) ts52: Sacrifice G2 Ts52\nBuild Y1 Kermit\nBuild Y2 Gonzo\n\n39) Babamots: Trade G3 R3 Babamots\n\n40) ts52: Sacrifice G2 Bigbird\nBuild G2 Gonzo\nBuild Y3 Kermit\n\n41) Babamots: Sacrifice G2 Kurl\nBuild G2 Galorndon\nBuild R1 Kurl\n\n42) ts52: Build R1 Xindus\n\n43) Babamots: Sacrifice Y2 Kurl\nMove G2 Galorndon Kermit\nMove G3 Galorndon Kermit\n\n44) ts52: Sacrifice Y3 Kermit\nMove R3 Kermit Gonzo\nMove Y1 Kermit Babamots\nMove Y1 Kermit Babamots\n\n45) Babamots: Sacrifice B2 Cuellar\nTrade B3 Y3 Cuellar\nTrade G2 Y2 Kermit\n\n46) ts52: Discover Y1 Gonzo G3 Robin\n\tBabamots: I&#39;m having a hard time NOT thinking about this game, but I also need to focus on other things for today. I&#39;m hoping that posting this note will give me enough closure of thought that I can get some work done :-).\n\n47) Babamots: Sacrifice Y2 Kermit\nMove B1 Cuellar Kermit\nMove Y3 Cuellar Xindus\n\n48) ts52: Sacrifice G2 Gonzo\nBuild G2 Gonzo\nBuild Y2 Babamots\nCatastrophe Babamots Yellow\n\tts52: I hear you. I have that problem a lot.\n\n49) Babamots: Sacrifice R2 Kurl\nAttack R2S Xindus\nAttack R1S Xindus\n\n50) ts52: Trade G2 B2 Gonzo\n\n51) Babamots: Sacrifice Y3 Xindus\nMove R1 Xindus Gonzo\nMove R1 Kurl Gonzo\nCatastrophe Gonzo R\nMove R2 Xindus Gonzo\n\n52) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Ts52\nMove B2 Gonzo Xindus\n\n53) Babamots: Build G2 Babamots\n\n54) ts52: Build G2 Xindus\n\tBabamots: I can&#39;t remember the last time I had only one marker in my home. Despite having more material, I&#39;m awfully vulnerable.\n\n55) Babamots: Trade G2 Y2 Babamots\n\n56) ts52: Build B2 Xindus\n\n57) Babamots: Move R3 Babamots Xindus\n\n58) ts52: Move B2 Xindus Babamots\n\n59) Babamots: Sacrifice R2 Gonzo\nAttack B2S Babamots\nAttack B2S Xindus\n\n60) ts52: Discover G2 Xindus Y2 Bigbird\n\n61) Babamots: Sacrifice G3 Kermit\nBuild B2 Xindus\nBuild B3 Babamots\nBuild B3 Kermit\n\tBabamots: I sometimes name a system &quot;Pakled&quot; after I think I&#39;ve done something really stupid.\n\tBabamots: (I&#39;ve got a Pakled system in my ladder game right now. I&#39;m getting walloped.)\n\n62) ts52: Build G2 Bigbird\n\n63) Babamots: Move B3 Babamots Bigbird\n\n64) ts52: Move G2 Bigbird Babamots\n\n65) Babamots: Sacrifice R3 Xindus\nAttack G1S Xindus\nAttack G2S Bigbird\nAttack G2S Babamots\n\n66) ts52: Build R1 Ts52\n\n67) Babamots: Trade G2 R2 Babamots\n\n68) ts52: Build G2 Ts52\n\n69) Babamots: Build B3 Bigbird\n\n70) ts52: Trade G2 Y2 Ts52\n\n71) Babamots: Sacrifice Y2 Babamots\nMove B3 Bigbird Ts52\nMove B3 Bigbird Ts52\n\n72) ts52: Move R3 Ts52 Bigbird\n\n73) Babamots: Sacrifice R2 Babamots\nAttack R1S Ts52\nAttack Y2S Ts52\n\tBabamots: Two by two, ships of blue :-).\n\tts52: :) Well played. I was too focused on the attack by catastrophe to notice the threat of just attack. Something I have to learn to look for.\n\n74) ts52: Build G2 Ts52\n\n75) Babamots: Attack G2S Ts52\n\tBabamots: (Red alert)\n\tBabamots: I prefer winning by hostile takeover rather than by system marker catastrophe. It takes fewer ships, and it does seem to me that people are less likely to see it coming.\n\n76) ts52: Build G2 Ts52\n\tts52: Indeed. I think at this point I can only delay the inevitable.\n\tBabamots: You can make it another last another three moves, I think.\n\n77) Babamots: Build G3 Ts52\nCatastrophe Ts52 G\n\tBabamots: (red alert)\n\tBabamots: I probably don&#39;t need to tell you &quot;red alert&quot; when a passing move from you would be an immediate loss :-).\n\n\tts52: Not my best move, now that I think about it more, but taking your r1 only buys me one or two more turns, and you&#39;re not going to make a big enough mistake for me to capitalize. Good game.\n\tBabamots: Good game! I&#39;ll record it for the tournament.\n\tts52: Thanks!\n\nHomeworlds Online (SDG# 33139)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.11, Ended: 2017.9.23\nParticipants: fogus (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) fogus: Homeworld Y3 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) fogus: Build G1 Fogus\n\n5) mneme: Trade G1 B1 Mneme\n\n6) fogus: Trade G1 B1 Fogus\n\n7) mneme: Build G1 Mneme\n\n8) fogus: Build G1 Fogus\n\n9) mneme: Trade G1 Y1 Mneme\n\n10) fogus: Trade G1 Y1 Fogus\n\n11) mneme: Build G1 Mneme\n\n\tmneme: Erg.  I reported this, but really, it&#39;s early and a weekend.  Do you want to restart?\n\nHomeworlds Online (SDG# 33155)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.12, Ended: 2017.9.15\nParticipants: goulo (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B1 R3 G3\n\n2) goulo: Homeworld R2 B3 G3\n\n3) ajo: Build G1 Ajo\n\tgoulo: hi!\n\n4) goulo: Build G1 Goulo\n\n5) ajo: Trade G3 Y3 Ajo\n\tajo: Hi! I might be slower than this in the coming days, fyi, but I&#39;ll try not to forfeit by timeout. ;)\n\n6) goulo: Trade G3 Y3 Goulo\n\n7) ajo: Build Y1 Ajo\n\n8) goulo: Build Y1 Goulo\n\tgoulo: OK! :)\n\n9) ajo: Discover Y1 Ajo G2 Alpha\n\n10) goulo: Discover Y1 Goulo B1 Blueto\n\n11) ajo: Build Y1 Ajo\n\n12) goulo: Build Y2 Goulo\n\n13) ajo: Build Y2 Alpha\n\n14) goulo: Trade Y2 R2 Goulo\n\n15) ajo: Trade Y1 B1 Ajo\n\n16) goulo: Build R1 Goulo\n\n17) ajo: Build B2 Ajo\n\n18) goulo: Trade R2 B2 Goulo\n\n19) ajo: Move B2 Ajo Alpha\n\n20) goulo: Discover B2 Goulo G1 Verdeto\n\n21) ajo: Build G2 Ajo\n\n22) goulo: Trade B2 G2 Verdeto\n\n23) ajo: Build G3 Ajo\n\n24) goulo: Build G3 Goulo\n\tajo: That was a strange trade, when you could have built b2 in Verdeto...\n\n25) ajo: Discover G2 Ajo B2 Beta\n\tgoulo: it seemed better than setting you up to build b3 and me not being able to without getting catastrophed; but i won&#39;t pretend to be a genius at this game. ;)\n\n26) goulo: Build G3 Verdeto\n\n27) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B2 Ajo\nBuild B3 Alpha\n\n28) goulo: Move Y1 Blueto Alpha\n\n29) ajo: Trade B2 R2 Alpha\n\n30) goulo: Move Y1 Alpha Verdeto\n\n31) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B1 Alpha\nBuild R1 Alpha\n\n32) goulo: Discover G3 Verdeto Y2 Flavo\n\n33) ajo: Move B3 Alpha Verdeto\n\n34) goulo: Sacrifice G2 Verdeto\nBuild G2 Flavo\nBuild Y1 Goulo\n\n35) ajo: Sacrifice R1 Alpha\nAttack Y1 Verdeto\n\n36) goulo: Discover Y1 Goulo R1 Rugheto\n\n37) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\nBuild Y3 Verdeto\n\n\tgoulo: man it&#39;s crazy how ridiculously far behind i am! thanks for the game; you totally outplayed me here!\n\tajo: I was actually worried in the first couple turns that I was a move behind; but your moving out to a yellow star, and then bunching your greens together, made it easy for me to recoup. Good game. :)\n\tDraw5PlayAll: Huh?\n\nHomeworlds Online (SDG# 33159)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.13, Ended: 2017.9.28\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld R1 B3 G3\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 R1 Felix\n\tdlwillson: You should accept my other challenge, too...\n\tFelix: I didn&#39;t see it for some reason!\r\n\r\nHave fun and good luck :)\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Felix: Build R2 Felix\n\n8) dlwillson: B R2 Dlwillson\n\n9) Felix: Trade R2 Y2 Felix\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) Felix: Build R2 Felix\n\tdlwillson: Copy cat turns :-(\n\n12) dlwillson: Build R2 Dlwillson\n\tFelix: It&#39;s inevitable. I do not mind!\n\n13) Felix: Discover R2 Felix G2 Out\n\n14) dlwillson: Discover R2 Dlwillson G1 Field\n\n15) Felix: Build R3 Out\n\n16) dlwillson: Build R3 Field\n\n17) Felix: D R1 Felix G2 Krimbus\n\n18) dlwillson: T R1 B1 Dlwillson\n\n19) Felix: B Y1 Felix\n\n20) dlwillson: M B1 Dlwillson Field\n\n21) Felix: T Y1 B1 Felix\n\n22) dlwillson: Trade R3 Y3 Field\n\n23) Felix: Move B1 Felix Out\n\n24) dlwillson: Build Y1 Dlwillson\n\n25) Felix: Trade R3 Y3 Out\n\n26) dlwillson: Discover Y1 Dlwillson B1 Sea\n\tFelix: This has been an oddly symmetrical game so far.\n\n27) Felix: Move R2 Out Sea\n\tdlwillson: I think that&#39;s going to change soon. Somewhere in the next three turns, or four at most. The bank is running too low for all this peaceful copy-catting to continue much longer.\n\n28) dlwillson: D Y1 Sea B2 Sky\n\tFelix: Voila. :)\n\n29) Felix: Build B2 Out\n\n30) dlwillson: Build B2 Field\n\n31) Felix: Discover B2 Out G1 Linter\n\n32) dlwillson: Trade B2 G2 Field\n\n33) Felix: B B2 Out\n\n34) dlwillson: B B3 Field\n\n35) Felix: Build Y1 Out\n\n36) dlwillson: Move G2 Field Sky\n\n37) Felix: Move Y1 Out Linter\n\n38) dlwillson: M B3 Field Krimbus\n\n39) Felix: Build Y1 Linter\n\n40) dlwillson: B G1 Sky\n\n41) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\nBuild R1 Sea\n\n42) dlwillson: B G3 Sky\n\n43) Felix: S Y2 Felix\nM R1 Krimbus Linter\nM R2 Sea Dlwillson\n\tFelix: Thought it was too risky, then decided to do it anyway. :)\n\n44) dlwillson: Sacrifice Y3 Field\nMove G1 Sky Linter\nMove G2 Sky Linter\nMove G3 Sky Linter\nCatastrophe Linter G\n\tdlwillson: That is not what you were supposed to do.\n\n45) Felix: Trade B1 R1 Out\n\n46) dlwillson: Attack R2 Dlwillson\n\tFelix: Sorry for the delayed undo. Realized I made a grave mistake!\n\tDraw5PlayAll: How?\n\tdlwillson: &lt;sigh&gt; Now, I have to *think*. Dangit.\n\n47) Felix: Move Y3 Out Field\n\tdlwillson: I&#39;m not sure that was correct, but it sure was fun.\n\n48) dlwillson: Trade R2 Y2 Field\n\tFelix: It has certainly set back my doomsday machinations!\n\n49) Felix: Move R1 Out Field\n\n50) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Field\nBuild Y1 Field\nBuild Y3 Dlwillson\nCatastrophe Field Y\n\tFelix: This will be more difficult than I hoped. You&#39;re not behaving!\n\n51) Felix: Attack B1 Field\n\n52) dlwillson: Move R2 Dlwillson Field\n\n53) Felix: Build R2 Field\n\tdlwillson: And I&#39;m pretty sure that was wrong. But it was fun, too. I&#39;ll just keep making fun, wrong moves until one of us wins. :-)\n\n54) dlwillson: Attack R2 Field\n\tFelix: I like your style! Your wild flailing is really setting back my plans :P\n\n55) Felix: Build R3 Field\nCatastrophe Field Red\n\tdlwillson: I have successfully stopped your first wave, and am now shooing your kids off my lawn!\n\n56) dlwillson: Trade Y3 G3 Dlwillson\n\tFelix: Aw, nuts. I knew I shouldn&#39;t have let that red catastrophe sit for so long. Well played.\n\n57) Felix: Build B1 Field\n\n58) dlwillson: Build B2 Krimbus\n\n59) Felix: Trade Y3 G3 Felix\n\tdlwillson: That&#39;s one of Wil&#39;s puzzlers! What is the correct response?\r\n1) Build an r3\r\n2) Capture the r2\r\n3) Something else\r\nAnd why?\n\n60) dlwillson: Trade B2 Y2 Krimbus\n\n61) Felix: Build G1 Felix\n\tFelix: I almost always build R3s when I can :)\n\n62) dlwillson: B Y1 Dlwillson\n\tdlwillson: In my position, attacking your r2 was better, because it encouraged you to build the r3, which gave me the first &quot;free&quot; move. I&#39;m still not out of danger. *LOTS* of Northern kids still on my lawns.\n\n63) Felix: S Y2 Out\nM B1 Field Dlwillson\nM B1 Field Dlwillson\n\n64) dlwillson: S Y2 Krimbus\nM Y1 Dlwillson Sea\nD Y1 Sea B2 Also Sky\n\n65) Felix: Trade B2 Y2 Out\n\n66) dlwillson: B B2 Krimbus\n\n67) Felix: S Y2 Out\nM R1 Sea Dlwillson\nPass\n\tFelix: Blah. This sure isn&#39;t turning out how I hoped, though. When did you nearly monopolize yellow while I wasn&#39;t looking?\n\n68) dlwillson: B B1 Krimbus\n\tdlwillson: That took a lot of thinking! I finally decided to go with denial, but at a very high cost.\n\n69) Felix: T B1 R1 Dlwillson\n\n70) dlwillson: Discover Y2 Dlwillson B1 Sea\n\tFelix: Stop foiling my plans!\n\n71) Felix: Sacrifice G1 Felix\nBuild R2 Dlwillson\nCatastrophe Dlwillson Red\n\tdlwillson: Stop making plans that are so hard to foil oh, so that I can begin to make plans of my own. And then you can foil my plans instead!\n\tdlwillson: Speech-to-text is pretty good but not perfect yet.\n\n72) dlwillson: Sacrifice B3 Krimbus\nTrade G3 R3 Dlwillson\nTrade Y1 G1 Also\nTrade Y1 G1 Sky\n\tdlwillson: What is the protocol around captures in the home system? We have the relatively common situation where we can endlessly capture the same piece back and forth. I generally avoid capturing any piece my opponent can capture back, but we&#39;re now in the situation where it matters more than a little.\n\n73) Felix: T B1 R1 Dlwillson\n\n74) dlwillson: Attack R1 Dlwillson\n\tFelix: Hmm, I generally try to find creative alternatives when possible so those repetitive situations don&#39;t occur!\n\n75) Felix: Pass\n\n76) dlwillson: Trade B2 Y2 Krimbus\n\tFelix: You deflected my attack so well. Where did all my material go? :(\n\n77) Felix: T G3 R3 Felix\n\tdlwillson: I was thinking you&#39;d trade an r1 for a g1 at dlwillson last turn, then when I swapped b3 to r3, you&#39;d build something (the big blue?) and have four at dlwillson, and I probably wouldn&#39;t be able to recover.\n\n78) dlwillson: Build B1 Krimbus\n\tFelix: Huh. I didn&#39;t even think of that. But what would have stopped you from just attacking my g1 at that point without trading for the r3?\n\tFelix: Oh, do you mean after I catastrophed red?\n\tFelix: I&#39;ve made a lot of mistakes during this attack run, and you defended insanely well. Great game!\n\n79) Felix: T R3 Y3 Felix\n\n80) dlwillson: T B1 R1 Krimbus\n\n\tFelix: If I think there&#39;s a chance my opponent could still make a mistake, I tend to prefer playing it out. But there&#39;s no hope for me now. Very well played. I admit I thought I had you and am a bit stunned at how you undermined my every approach with the doomsday devices. One for the books. You deserve that top slot!\n\tdlwillson: Thanks! Hard fought game! I thought I was going to get you with yellow way back when. Then, I saw the doomsday machine and had to burn half my fleet to stop it! Excellent game.\n\tdlwillson: It would be cool if Andy and John theatered this.\n\tDraw5PlayAll: If you want that, do them a favor and always call your systems Altair, Betelgeuse, Caster, etc in future games.\n\tdlwillson: That matters? If it does, I&#39;ll do it, but I had a system, already with Field and Forest, Sea and Sky, Golden and Sol, and ... Um ... Mars and something.\n\tFelix: It doesn&#39;t matter. They just sub those system names in automatically when they prepare a transcript of the game, from what I&#39;ve been told.\n\twil: It is a large matter of cut and pasting and editing...  eliminating the chatter... find and replace the system names globally as well as the names of the players...  If we find a game we&#39;d like to see them try...  A game name and description of what would be of interest (frontal attack, bluebird, universe reboots, monopolizing economies etc.)  I am sure they&#39;d really appreciate editing.\n\nHomeworlds Online (SDG# 33140)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.13, Ended: 2017.10.22\nParticipants: mneme (S), shoejitsu (N)\nWinner: mneme\n\n1) shoejitsu: Homeworld G2 R1 B3\n\n2) mneme: Homeworld B3 R2 G3\n\n3) shoejitsu: Build B1 Shoejitsu\n\n4) mneme: Build G1 Mneme\n\n5) shoejitsu: Build B1 Shoejitsu\n\n6) mneme: Trade G1 B1 Mneme\n\n7) shoejitsu: Trade B1 Y1 Shoejitsu\n\n8) mneme: Build G1 Mneme\n\n9) shoejitsu: Build Y1 Shoejitsu\n\n10) mneme: Trade G1 Y1 Mneme\n\n11) shoejitsu: Trade B1 G1 Shoejitsu\n\n12) mneme: Build Y2 Mneme\n\n13) shoejitsu: Discover G1 Shoejitsu R3 Soar\n\n14) mneme: Discover Y2 Mneme G1 Thalia\n\n15) shoejitsu: Build Y2 Shoejitsu\n\n16) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Thalia\n\n17) shoejitsu: Trade Y1 B1 Shoejitsu\n\n18) mneme: Trade Y3 G3 Mneme\n\n19) shoejitsu: Move Y2 Shoejitsu Soar\n\n20) mneme: Discover Y2 Thalia B3 Euterpe\n\n21) shoejitsu: Build Y1 Soar\n\n22) mneme: Trade Y2 R2 Mneme\n\n23) shoejitsu: Build Y2 Shoejitsu\n\n24) mneme: Sacrifice G3 Mneme\nBuild Y3 Mneme\nBuild Y3 Euterpe\nBuild R1 Mneme\n\n25) shoejitsu: Trade B1 R1 Shoejitsu\n\n26) mneme: Trade Y2 R2 Euterpe\n\n27) shoejitsu: Move R1 Shoejitsu Soar\n\n28) mneme: Trade R2 G2 Mneme\n\n29) shoejitsu: Discover R1 Soar G1 Orion\n\n30) mneme: Trade Y3 G3 Mneme\n\n31) shoejitsu: Build R2 Orion\n\n32) mneme: Sacrifice G2 Mneme\nBuild Y2 Euterpe\nBuild Y3 Mneme\n\n33) shoejitsu: Build G2 Soar\n\n34) mneme: Move R1 Mneme Thalia\n\n35) shoejitsu: Build G2 Soar\n\n36) mneme: Build G3 Mneme\n\n\tshoejitsu: While I didn&#39;t mean for this to go to time... I didn&#39;t feel like I had much to do anyway :D good game!\n\tmneme: Yeah, that&#39;s fair enough. Good game!\n\nHomeworlds Online (SDG# 33160)\nVariants: &quot;No undo, Unrated, Sinister, Hard time&quot;\nStarted: 2017.9.13, Ended: 2017.9.30\nParticipants: dlwillson (S), Felix (N), wil (E)\nWinner: wil\n\n1) Felix: Homeworld Y2 B3 G3\n\tdlwillson: Hi guys! Thanks for accepting the challenge! This is just a friendly game. Un-ranked, no take backs, sinister. Cause the player on your left to lose, and you win!\n\tdlwillson: I gave it a short starting bank, but a big max bank in case one of us has a business trip or vacation in the Himalayas or somewhere else there&#39;s no signal.\n\n2) wil: H Y2 B1 G3\n\tFelix: No problem, should be fun :)\n\twil: How did I sign up for a multiple game?  Oh well....its you two...maybe it will work.\n\twil: So I gotta take out Willson...hmmm\n\n3) dlwillson: H B3 Y1 G3\n\n4) Felix: Build G1 Felix\n\twil: Reminder for attacks...  ship must also be specified as belonging to a particular player by appending that player&#39;s seat designation (eg. G2S, B1E).\n\twil: Not that anyone has red\n\tdlwillson: Wil: I like movies live music, and Scotch.\n\tFelix: Interesting. I assumed at least one of you would take some red! \r\n\r\n@wil Thanks for the tip :)\r\n\r\n@dlwillson bahahaha, I see what you did there.\n\n5) wil: B G1 Wil\n\twil: My plan is taking you on a long walk in the woods...\n\n6) dlwillson: B G1 Dlwillson\n\twil: I&#39;d like to devise a tourney where everyone starts at.the same game\r\n..one that is half over, 3/4ths the pieces in play, and evenly matched...a coin flip decides who gets which side and the other person goes first...   As an attempt to shorten tourney duration...thoughts?\n\twil: I&#39;d also like &quot;two moves to mate&quot; puzzles.\n\twil: And a root beer float\n\twil: Not really, I don&#39;t like root beer...but I&#39;ll have that scotch.\n\n7) Felix: Trade G1 R1 Felix\n\tdlwillson: That tournament idea is great! And, the positions don&#39;t need to be balanced, you just play two games from those positions and switch seats for the second game.\n\tFelix: Interesting idea. How do you get the game to that midway point in the first place, though?\n\n8) wil: Trade G1 Y1 Wil\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\twil: I&#39;m thinking either just pick a tight game, or make up a tight game...  that will be one of the turning points in this game...when folks can stop and say...this is where I went wrong...lets back up to that point and see where it goes. \n\n10) Felix: B R1 Felix\n\n11) wil: B Y1 Wil\n\n12) dlwillson: B G1 Dlwillson\n\n13) Felix: Trade R1 Y1 Felix\n\tdlwillson: I think that&#39;s a great idea. A little like duplicate bridge.\n\n14) wil: D Y1 Wil G3 G3\n\twil: Yes, I hadn&#39;t thought of that, but yes.\n\n15) dlwillson: B R1 Dlwillson\n\n16) Felix: Build Y2 Felix\n\n17) wil: S G3 Wil\nB Y2 G3\nB Y3 G3\nB Y3 Wil\n\n18) dlwillson: Discover R1 Dlwillson B2 Sea\n\twil: If Felix attacks it gives him the advantage over me yet gives Willson the advantage over him?  \n\tdlwillson: Good Lord! What&#39;s going on around here?!\r\n\r\nAnd yes, that&#39;s a good synopsis of sinister.\n\n19) Felix: Discover Y1 Felix G1 Out\n\n20) wil: T Y3 G3 Wil\n\tFelix: So, so tempting...\n\twil: Not when I actually just gave you the yellow threes dangit!\n\n21) dlwillson: B R1 Dlwillson\n\n22) Felix: Move Y1 Out G3\nCatastrophe G3 Yellow\n\n23) wil: Build G1 Wil\n\tFelix: Also tempting, but I had to serve the greater good!\n\tdlwillson: Your charity is noted, but any credit is moderated by a note that Wil is to your left.\n\twil: Wow...traded out getting into the threes...\n\n24) dlwillson: Build R2 Dlwillson\n\tDraw5PlayAll: Whoa, this confused me! It felt like I had been eliminated from the 4P game for some reason...\n\tDraw5PlayAll: About your tournament idea, it could be that one player picks the position and the other player picks which side they are on, so you have an incentive to balance the position or risk getting the worse side. \r\n\r\nPlaying two games from an unbalanced position will recreate the one thing I dislike about the game ChessCards, which is that most of the time there is an easy win that P1 has to demonstrate for P2 and you just get a draw every time.\r\n\r\nAnd wil, this is not a comment about your current game, just on an idea you guys had.\n\twil: lol\n\n25) Felix: B R2 Felix\n\n26) wil: T G3 R3 Wil\n\n27) dlwillson: Discover R2 Dlwillson Y2 Golden\n\twil: I&#39;ve goofed up here royally\n\n28) Felix: D R2 Felix B1 Glint\n\n29) wil: B R2 Wil\n\tFelix: Likely I have as well, for passing up those Y3s!\n\n30) dlwillson: S G3 Dlwillson\nB R2 Sea\nB R3 Golden\nB R3 Dlwillson\n\n31) Felix: B R3 Felix\n\n32) wil: B Y1 Wil\n\n33) dlwillson: T R3 Y3 Dlwillson\n\n34) Felix: Build R3 Felix\n\n35) wil: T R3 G3 Wil\n\n36) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Sea Glint\nMove R1 Glint Felix\nCatastrophe Felix R\nDiscover R2 Golden B3 Eastern_sky\n\n37) Felix: Sacrifice Y2 Felix\nMove R2 Glint Golden\nMove R2 Golden Dlwillson\n\tdlwillson: 3 is different from 2\n\n38) wil: D Y1 Wil G3 G3\n\tFelix: This is fun. Buck the system :)\n\n39) dlwillson: B R1 Dlwillson\nC Dlwillson R\n\twil: &lt;wil&#39;s eyebrows raise, and pretends to casually look away whistling nonchalantly&gt;\n\tFelix: They say offense is the best defense.... or something like that.\n\n40) Felix: Build G1 Felix\n\tdlwillson: I&#39;m not dead... I&#39;m feeling better...\n\n41) wil: B Y1 Wil\n\tFelix: ... I&#39;ve made a terrible mistake.\n\n42) dlwillson: M R3 Golden Dlwillson\n\n43) Felix: Discover G1 Felix B1 Out\n\n44) wil: B Y2 G3\n\n45) dlwillson: T R2 Y2 Sea\n\n46) Felix: Build G1 Felix\n\tdlwillson: I should&#39;ve done that last turn... Oops!\n\n47) wil: S Y2 G3\nD Y1 Wil B3 B3\nD Y1 Wil Y3 Y3\n\tFelix: Captain, your petulant little attacks have left our fleet (what remains of it) floundering, without access to propulsion technology. What should we do?\r\n\r\n&quot;KEEP FIRING!!!!!!!!&quot;\r\n\r\nSir, we have no weapons either. What shall we do?\r\n\r\n&quot;....LUDICROUS SPEED.... GO!&quot;\r\n\r\nBut I already told you, we have no propu-\r\n\r\n&quot;LUDICROUS GREEN.... GO!!!!&quot;\r\n\r\nWell... alright then.\n\n48) dlwillson: Build G2 Dlwillson\n\n49) Felix: Build G2 Out\n\tdlwillson: Do you play Magic? Back when the game made sense, I used to call green stompy decks &quot;stupid green&quot;, because you didn&#39;t have to know any strategy or do anything clever. Just play the cards and stomp the crap out of the other guy before s/he does something crafty. (Like suicide black, but without the risk of killing yourself first accidentally.)\n\twil: Not I, but stupid green is a thing...\n\tdlwillson: I can never *quite* get rid of the urge to bring black into Homeworlds somehow. And I&#39;m embarassed to admit that I just *now* realized that the Rainbow colors are the Magic colors. No, wait... They&#39;re not. Rainbow has yellow; MTG has white. So, I guess there&#39;s a partial Moody Blues transformation &quot;red is grey and yellow white&quot;... Something something... I need to get back to work.\n\tdlwillson: I suppose technically, there&#39;s no reason black *couldn&#39;t* be in the game *without* adding rules. It just wouldn&#39;t carry a technology, because it doesn&#39;t have a color. Being forced to choose one black pyramid for something on turn zero could be a mild handicap for a strong player.\n\tdlwillson: Being forced to choose a black *ship* could be a moderate handicap for a stronger player.\n\tFelix: That could actually be a bit interesting. It doesn&#39;t carry any technology in itself, but it can passively use the tech of other ships or stars either by sharing a star or from sacrifice moves. Interesting, but beyond that one use as a handicap piece, I&#39;m not really sure what other use there&#39;d be for the concept. I never played Magic. I wasn&#39;t even allowed to play with Pokemon cards as a kid :P\n\n50) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 G3\nBuild Y3 B3\n\twil: I have a new player, yet to learn the complexities of the game, wants to add a purple...  also wants to add docking to the game (a one going into a two and increasing power and or tech but not both)\n\n51) dlwillson: Sacrifice G2 Dlwillson\nBuild R1 Eastern_sky\nBuild R1 Eastern_sky\n\twil: well dang...no coin moving...so much for not double checking\n\n52) Felix: T G3 Y3 Felix\n\tdlwillson: no coin moving?\n\twil: No undo... I&#39;ve used the solo undo here often as the turn token...\n\tdlwillson: I&#39;m still not sure I understand, but I will not turn off undo anymore.\n\n53) wil: S Y2 G3\nM Y3 G3 Wil\nM R2 Wil Eastern_sky\nC Eastern_sky R\n\tFelix: The docking idea has some potential as a variant... but I just don&#39;t see the need to tweak the game at all. It&#39;s already so well balanced. I do like the idea of some variants though. There is a &quot;worldships&quot; variant on board game geek that has a lot of potential, though I&#39;ve never played it.\n\twil: Yes, I told the kid (but he already knows everything) when he learns to beat me regularly...then he should contemplate improving the game that I enjoy more than chess...that I played for 50 years....\n\n54) dlwillson: S G1 Dlwillson\nB Y2 Sea\n\n55) Felix: Build G1 Felix\n\n56) wil: B G2 Wil\n\n57) dlwillson: Move Y2 Sea G3\n\twil: So is it last man standing or first one to knock out the homeworld to their left?  Vastly different strategy....if you need to be strong enough to be attacked after attacking...\n\twil: So you guys don&#39;t use a turn token in live play?  So you can rearrange ships.and stars a few times before you make your final decision?  And then when you have come.to.the conclusion slide.the coin to the other player after multiple &quot;undo&#39;s&quot;?\n\tdlwillson: The first player to lose causes the player to his right to win.\n\n58) Felix: Discover G1 Felix B1 Doubt\n\n59) wil: T G2 R2 Wil\n\twil: Ah, thanx...  And you both are to be commended on the speed of this game!!  \n\twil: Idk what you are plotting dl\n\n60) dlwillson: Move Y2 Sea Doubt\n\n61) Felix: Build G2 Doubt\n\tdlwillson: I forgot to answer about the token. No, I&#39;ve never used a turn-token in real life. I have used a chess-clock, though... Is it still a chess-clock, if one is using it for Homeworlds?\n\tdlwillson: I don&#39;t know what I&#39;m plotting, either. I hope I figure it out, soon.\n\tFelix: I&#39;ve not used the turn token much, myself, though I&#39;ve tried. Usually we just end up doing it verbally: &quot;Ok, your turn&quot; instead of with an actual token.\r\n\r\n\n\n62) wil: B G2 Wil\n\n63) dlwillson: T Y2 R2 Doubt\n\n64) Felix: Trade G2 Y2 Out\n\n65) wil: T G1 B1 Wil\n\n66) dlwillson: A G2N Doubt\n\n67) Felix: Build G1 Doubt\n\tdlwillson: It&#39;s annoying that I have to say g2n when g2 is unambiguous.\n\n68) wil: B G2 Wil\n\tDraw5PlayAll: I want to use turn tokens and the end up forgetting.\n\tdlwillson: I&#39;ve tried to to use turn tokens, but they always fall. Someone forgets, someone accepts the nonverbal, non-token cue, and that&#39;s the end of it.\n\n69) dlwillson: S G2 Doubt\nB R1 Doubt\nB R1 Dlwillson\n\n70) Felix: Build G2 Out\n\n71) wil: B B2 Wil\n\n72) dlwillson: T R3 G3 Dlwillson\n\n73) Felix: T G2 R2 Out\n\n74) wil: M G2 Wil Y3\n\n75) dlwillson: Sacrifice R2 Doubt\nAttack G1N Doubt\nAttack G1N Doubt\n\n76) Felix: Build G2 Out\n\n77) wil: T Y3 G3 B3\n\n78) dlwillson: Sacrifice R1 Doubt\nAttack Y1E G3\n\n79) Felix: Build Y3 Out\n\n80) wil: D Y1 Y3 B2 B2\n\n81) dlwillson: Sacrifice G1 Doubt\nBuild G1 Dlwillson\n\n82) Felix: T G2 B2 Out\n\n83) wil: D B2 Wil G3 Gee3\n\n84) dlwillson: Move Y2 G3 Doubt\n\n85) Felix: Move B2 Out G3\n\tdlwillson: You both look pretty stacked. I&#39;m feeling pretty puny.\n\n86) wil: S G2 Y3\nB G2 B3\nB Y3 B3\n\tFelix: I&#39;m not really sure how I&#39;ve been able to build back up after my flailing, petulant attack against you early on. Wil was the real beneficiary of all that tomfoolery.\n\n87) dlwillson: Move Y1 G3 Doubt\n\n88) Felix: Build B2 G3\n\n89) wil: M B1 Wil G3\n\n90) dlwillson: B G2 Doubt\n\n91) Felix: T B2 R2 G3\n\n92) wil: B B2 G3\n\n93) dlwillson: M G2 Doubt B2\n\n94) Felix: Sacrifice R2 G3\nAttack B1E G3\nAttack B2E G3\n\n95) wil: S G3 B3\nB G2 Wil\nB G3 B3\nB B3 Gee3\n\n96) dlwillson: S R1 Dlwillson\nA Y1E B2\n\n97) Felix: Sacrifice Y3 Out\nMove B1 G3 Wil\nMove B2 G3 Wil\nMove B2 G3 Wil\nCatastrophe Wil Blue\n\n98) wil: S Y3 B3\nM G2 Wil Dlwillson\nM G2 Wil Dlwillson\nM B3 Gee3 Out\nC Dlwillson G\n\twil: Ya gave me access!\n\tFelix: Oops! Sorry Dlwillson D:\n\tdlwillson: LOL! :-) Excellent!\r\n\n\tdlwillson: That was an excellent game, I think. Felix, we both did something. I sacrificed my red. Really good game. I&#39;ll be more careful next time. :-)\n\tFelix: It&#39;s so hard to prepare for the repercussions of your moves when there are two opponents between each of your turns!\n\tdlwillson: Shall we do it again, but with take-backs?\n\tFelix: I&#39;m game!\n\twil: I&#39;m in...as long as you guys play just like you did...I thought you all were AWESOME!!\n\n\nHomeworlds Online (SDG# 33142)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.13, Ended: 2017.9.26\nParticipants: eliscinsky (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) eliscinsky: Homeworld R2 B3 G3\n\n3) mneme: Build G1 Mneme\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) mneme: Trade G1 R1 Mneme\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) mneme: Build R1 Mneme\n\n8) eliscinsky: Build Y1 Eliscinsky\n\n9) mneme: Build G1 Mneme\n\n10) eliscinsky: Discover Y1 Eliscinsky B1 Alpha\n\n11) mneme: Trade G3 Y3 Mneme\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) mneme: Discover R1 Mneme G3 Calliope\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) mneme: Build G2 Mneme\n\n16) eliscinsky: Trade G1 B1 Eliscinsky\n\tmneme: Have a good (the great tournament) game!\n\n17) mneme: Build R2 Calliope\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) mneme: Sacrifice Y3 Mneme\nMove G1 Mneme Calliope\nMove G1 Calliope Alpha\nMove G1 Alpha Eliscinsky\nCatastrophe Eliscinsky G\n\n20) eliscinsky: Trade Y1 G1 Eliscinsky\n\n21) mneme: Build R2 Mneme\n\n22) eliscinsky: Build G1 Eliscinsky\n\n23) mneme: Build R3 Calliope\n\n24) eliscinsky: Trade G1 Y1 Eliscinsky\n\n25) mneme: Trade R2 Y2 Mneme\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) mneme: Sacrifice Y2 Mneme\nDiscover R2 Calliope G1 Melpomene\nMove R2 Melpomene Eliscinsky\n\n28) eliscinsky: Move G1 Eliscinsky Alpha\n\n29) mneme: Sacrifice R3 Calliope\nAttack Y1 Eliscinsky\nAttack G1 Eliscinsky\nAttack B1 Eliscinsky\n\tmneme: good game!\n\teliscinsky: Thanks. I still have no Idea what I&#39;m doing LOL!\n\tmneme: I can play a teaching game if you like!\r\n\r\nFundamentally, the game is all about making sure you have what you need to win, while denying it to your opponent, by manipulating not only your own pieces but the supply.  \r\n\r\nThis was why my move on turn 10 (click on history to see a listing style of the game) was very good, and fundamentally won the game; I gave up my large, but I reduced you to smalls without a strong prospect if getting anything larger, with me still keeping a strong red growth engine, so I could build an overpowering attack before you could recover.  \r\n\r\nAs it was, you could have delayed me for another two turns by growing ships -- once I started capturing, you could delay me by just capturing smalls back, so I needed enough red power that I could continuously capture until the game ended.  If you&#39;d grown a ship, I&#39;d have grown a medium red -- that would have given me a combined 7 attack, which -still- wasn&#39;t enough to capture 6 ships; I sac large red to take 3, you capture one back and have 4, I sac a medium red and take 2, you capture one back and have 3, I sac a medium red and have 2, and you capture one back and have 2 and I&#39;m out of artillery.  So I&#39;d have gone one -more- round of prep and grown another large red before going off; at that point even if you went to 7 ships (7 was basically your limit, too, since your home could only hold 3 greens, 2 blues, and 3 yellows--and since you can&#39;t capture back a medium if I take your only one, the 3rd green was a non-starter), I could take them all; 1 3 red to drop you from 7 to 4 (which could go to 5), another 3 red to go from 5 to 2, and the two red ships could take out the remaining 3 ships even if you grew or captured every turn.\n\n\nHomeworlds Online (SDG# 33169)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.14, Ended: 2017.9.23\nParticipants: Remneb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B1 Y2 G3\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) Babamots: Build G1 Babamots\n\n4) Remneb: Build G1 Remneb\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Babamots: Build R1 Babamots\n\n8) Remneb: Build G1 Remneb\n\n9) Babamots: Build R2 Babamots\n\n10) Remneb: Trade G1 B1 Remneb\n\n11) Babamots: Discover R2 Babamots B3 Galorndon\n\n12) Remneb: Build G1 Remneb\n\n13) Babamots: Build R2 Babamots\n\n14) Remneb: Build Y1 Remneb\n\n15) Babamots: Discover R2 Babamots B3 Vulcan\n\n16) Remneb: Discover Y1 Remneb G3 Malvern\n\n17) Babamots: Sacrifice G3 Babamots\nBuild R2 Vulcan\nBuild R3 Galorndon\nBuild R3 Babamots\n\n18) Remneb: Discover G1 Remneb Y3 Altair\n\tBabamots: Aaarr, it be Talk Like a Pirate day! Sure as all these red ships be makin&#39; me like a space pirate, matey!\n\tRemneb: You will destroy my red star for sure :)\n\n19) Babamots: Trade R3 G3 Galorndon\n\n20) Remneb: Build G1 Remneb\n\n21) Babamots: Build R3 Galorndon\n\n22) Remneb: Discover G1 Remneb Y3 Sand\n\n23) Babamots: Build R3 Galorndon\n\n24) Remneb: Build Y1 Remneb\n\n25) Babamots: Trade R2 Y2 Vulcan\n\n26) Remneb: Discover Y1 Remneb B3 Polix\n\n27) Babamots: Sacrifice Y2 Vulcan\nMove G3 Galorndon Remneb\nMove R3 Galorndon Remneb\n\n28) Remneb: Attack G3 Remneb\n\n29) Babamots: Sacrifice R2 Galorndon\nAttack G3S Remneb\nAttack G3S Remneb\n\n\tRemneb: Thanks for the game. Well done,\n\tBabamots: Thanks! I&#39;ll let your crews live :-P. Good luck in the tournament!\n\nHomeworlds Online (SDG# 33100)\nStarted: 2017.9.15, Ended: 2017.9.15\nParticipants: ts52 (S), Hambone (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 33189)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.18, Ended: 2017.11.7\nParticipants: goulo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R3 G3\n\n2) goulo: Homeworld B1 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tgoulo: hi!\n\n4) goulo: Build G1 Goulo\n\tSilentTitan: Hello\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) goulo: Trade G3 B3 Goulo\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) goulo: Build B2 Goulo\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) goulo: Trade B3 Y3 Goulo\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) goulo: Build B2 Goulo\n\n13) SilentTitan: Discover B2 Silenttitan G2 Sol\n\n14) goulo: Trade B2 Y2 Goulo\n\n15) SilentTitan: Build B2 Sol\n\n16) goulo: Discover B2 Goulo G3 Verdego\n\n17) SilentTitan: Trade B2 Y2 Sol\n\n18) goulo: Build G1 Goulo\n\n19) SilentTitan: Build Y1 Sol\n\n20) goulo: Trade G1 R1 Goulo\n\n21) SilentTitan: Trade Y1 R1 Sol\n\n22) goulo: Move Y2 Goulo Verdego\n\n23) SilentTitan: Build R1 Sol\n\n24) goulo: Move R1 Goulo Verdego\n\n25) SilentTitan: Build Y1 Sol\n\n26) goulo: Build R2 Verdego\n\n27) SilentTitan: Trade Y2 G2 Sol\n\n28) goulo: Build B2 Verdego\n\n29) SilentTitan: Discover B1 Silenttitan Y2 Soul\n\n30) goulo: Move R2 Verdego Soul\n\n31) SilentTitan: Sacrifice G2 Sol\nBuild B3 Sol\nBuild B3 Soul\n\n32) goulo: Discover R2 Soul Y3 Flavego\n\n33) SilentTitan: Trade B3 Y3 Sol\n\n34) goulo: Discover B2 Verdego G2 Verdo\n\n35) SilentTitan: Move B3 Soul Verdego\n\n36) goulo: Build B3 Verdo\n\n37) SilentTitan: Build B3 Sol\n\n38) goulo: Sacrifice Y2 Verdego\nMove R1 Verdego Verdo\nMove B2 Verdego Soul\n\n39) SilentTitan: Sacrifice B1 Soul\nTrade B3 R3 Verdego\n\n40) goulo: Move R2 Flavego Verdo\n\n41) SilentTitan: Discover B3 Sol Y3 Sole\n\n42) goulo: Build Y1 Goulo\n\n43) SilentTitan: Build R2 Verdego\n\n44) goulo: Build R3 Verdo\n\n45) SilentTitan: Sacrifice Y1 Sol\nMove R2 Verdego Verdo\nCatastrophe Verdo Red\n\n46) goulo: Trade B2 Y2 Verdo\n\n47) SilentTitan: Trade B2 R2 Sol\n\n48) goulo: Build B1 Verdo\n\n49) SilentTitan: Sacrifice Y2 Silenttitan\nMove B3 Sole Goulo\nMove R3 Verdego Goulo\n\n\tgoulo: thanks, congrats, well played!\n\tSilentTitan: Thank you\n\nHomeworlds Online (SDG# 33182)\nStarted: 2017.9.19, Ended: 2017.10.9\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld B2 R3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tFelix: Salutations! I hope you&#39;re not too busy with tournament games to take on another normal game. Have fun :)\n\tts52: Always happy to play another game!\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 Y1 Felix\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Felix: Build Y2 Felix\n\n8) ts52: Build Y2 Ts52\n\n9) Felix: Discover Y1 Felix G1 Out\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) Felix: B G1 Felix\n\n12) ts52: Build G1 Ts52\n\n13) Felix: T G1 B1 Felix\n\n14) ts52: Trade G1 B1 Ts52\n\n15) Felix: M B1 Felix Out\n\n16) ts52: Move B1 Ts52 Kermit\n\n17) Felix: Build G1 Felix\n\n18) ts52: Discover Y2 Ts52 B3 Gonzo\n\n19) Felix: Build Y2 Out\n\n20) ts52: Build Y3 Kermit\n\n21) Felix: Build Y3 Felix\n\n22) ts52: Discover Y1 Kermit G1 Oscar\n\n23) Felix: Trade Y1 R1 Out\n\n24) ts52: Build G2 Ts52\n\n25) Felix: S Y3 Felix\nM G3 Felix Out\nM G3 Out Kermit\nM G3 Kermit Ts52\n\n26) ts52: Move Y3 Kermit Ts52\n\tts52: Dammit! Well played. I never think of people abandoning all larges in their homeworld.\n\n27) Felix: Sacrifice R1 Out\nAttack Y3 Ts52\n\n28) ts52: Trade G2 R2 Ts52\n\tFelix: It&#39;s a risky move, but I like to surprise people with it from time to time. Thank you :) But I&#39;m not celebrating yet! This is still a delicate situation...\n\n29) Felix: Sacrifice G3 Ts52\nBuild Y1 Ts52\nBuild Y3 Ts52\nBuild Y3 Felix\nCatastrophe Ts52 Yellow\n\n30) ts52: Build G2 Ts52\n\n31) Felix: Build B1 Out\n\n32) ts52: Sacrifice Y1 Oscar\nMove R2 Ts52 Out\n\n33) Felix: Sacrifice Y2 Out\nDiscover B1 Out Y3 In\nMove B1 Out In\n\n34) ts52: Trade G2 Y2 Ts52\n\n35) Felix: D B1 In G1 Integer\n\n36) ts52: Sacrifice Y2 Gonzo\nMove R2 Out In\nMove B1 Kermit Integer\n\n37) Felix: Discover B1 In G1 Remote\n\n38) ts52: Move R2 In Remote\n\n39) Felix: Sacrifice Y2 Felix\nMove B1 Remote Ts52\nDiscover B1 Integer G3 Brink\n\tFelix: Round and round we go...\n\n40) ts52: Sacrifice R2 Remote\nAttack B1 Ts52\nPass\n\n41) Felix: Build B2 Brink\n\n42) ts52: Move B1 Ts52 Brink\n\n43) Felix: Trade B2 R2 Brink\n\n44) ts52: T B1 R1 Brink\n\tts52: Yeah, I&#39;m pretty sure you&#39;re going to win at the end of this cycle, but still curious to see how it plays out.\n\n45) Felix: A R1 Brink\n\n46) ts52: T B1 R1 Integer\n\n47) Felix: Build B1 Brink\n\n48) ts52: Move G3 Ts52 Brink\n\n49) Felix: Sacrifice Y3 Felix\nMove B1 Brink Ts52\nMove B1 Brink Ts52\nDiscover R2 Brink B1 Ingot\n\n50) ts52: Sacrifice R1 Integer\nAttack B1 Ts52\n\tts52: Well played sir. Good game.\n\n51) Felix: Trade R2 B2 Ingot\n\tFelix: Thank you!\r\n\r\n... I&#39;ms till puzzling over how to actually finish the job, though.\n\n52) ts52: Trade B1 R1 Ts52\n\n53) Felix: Trade B2 G2 Ingot\n\n54) ts52: Attack B1 Ts52\n\n55) Felix: Build G1 Felix\n\tFelix: Oh my goodness. I completely messed up. I meant to trade my r2 for a g2 last turn, and thought I had. That&#39;s what I get for not double checking my move. Doh!\n\n56) ts52: Sacrifice Y2 Ts52\nMove G3 Brink Ingot\nMove G3 Ingot Felix\n\n57) Felix: Trade G1 Y1 Felix\n\tts52: I may manage to eek this one out yet. ;)\n\tFelix: I would have had you this turn if not for that blunder! Darn. Just goes to show that it&#39;s never over until it&#39;s over!\n\n58) ts52: Attack Y1 Felix\n\n59) Felix: Build G1 Felix\n\tts52: agreed, you had me dead to rights\n\n60) ts52: Build G1 Felix\nCatastrophe Felix Green\n\n\tFelix: Good game! So mad at myself. I&#39;ll be double checking every move from now on!\n\tts52: :) Thanks for the game!\n\nHomeworlds Online (SDG# 32748)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.19, Ended: 2017.9.24\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Felix: Homeworld Y3 B2 G3\n\twil: Is this a round robin challenge.\n\n3) wil: B G1 Wil\n\tFelix: Nah, just a fun game, if you can handle it with all the others you have :) We already played our round robin game I believe, unless there are supposed to be more?\n\twil: Lol, I didn&#39;t look, it is time for me to.challenge someone...\r\n\n\twil: Been teaching a few locals to play, I now have two that I can consistently get in a game with.  One is real bright and sees possibilities for escape that I would never.\r\n\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\tFelix: That&#39;s fantastic! Tell them to get on here so I can play them :)\n\n6) Felix: Trade G1 B1 Felix\n\twil: I&#39;m working on getting one on.. \n\n7) wil: B G1 Wil\n\n8) Felix: Build B1 Felix\n\n9) wil: B B2 Wil\n\n10) Felix: Discover B1 Felix G1 Linter\n\n11) wil: D B1 Wil Y3 Y3\n\twil: 3 newbies that play regular now... All of them teaching one or two others.  And then my two regular folks... I now average over 10 games offline a week...I should be improving\n\n12) Felix: Build B3 Linter\n\twil: We will have none of that nonsense\n\tFelix: Just in time to win the tournament, perhaps :) I must say I&#39;m jealous of all the offline games you get to play!\n\n13) wil: S G3 Wil\nB B3 Wil\nB G1 Wil\nB B3 Y3\n\twil: Thx to encouraging friends to buy pyramid arcade...and introducing them to easier games first.   Most who bought are not interested in homeworlds...so I still play a lot of petri dish, volcano, color wheel, blame, martian chess..\n\n14) Felix: Trade B3 Y3 Linter\n\n15) wil: Trade B2 Y2 Wil\n\n16) Felix: Build G2 Felix\n\n17) wil: Build G2 Wil\n\n18) Felix: Trade G2 R2 Felix\n\n19) wil: Trade B1 R1 Y3\n\n20) Felix: B G2 Felix\n\n21) wil: D G1 Wil B3 B3\n\n22) Felix: Discover G2 Felix B1 Splinter\n\n23) wil: M G2 Wil Y3 Y3\n\n24) Felix: Build G2 Felix\n\n25) wil: B G3 Y3\n\n26) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Splinter\nBuild B2 Linter\n\n27) wil: S G3 Y3\nB G3 Y3\nB R1 Y3\nB R1 Y3\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Linter\nBuild Y1 Linter\n\n29) wil: D R1 Y3 Y2 Y2\n\n30) Felix: Move B2 Linter B3\n\n31) wil: S G1 B3\nB R2 Y2\n\n32) Felix: Sacrifice Y3 Linter\nMove B1 Linter B3\nMove B1 B3 Wil\nMove B2 B3 Wil\nCatastrophe Wil Blue\n\n33) wil: S Y2 Wil\nM G3 Y3 Wil\nM B3 Y3 Linter\n\n34) Felix: T G3 Y3 Felix\n\n35) wil: M R1 Y3 Wil\n\n36) Felix: S Y1 Linter\nD Y1 Linter B2 Binter\n\n37) wil: S B3 Linter\nT G2 B2 Y3\nT R1 Y1 Y2\nT R2 Y2 Y2\n\n38) Felix: Trade G2 Y2 Splinter\n\n39) wil: D Y1 Y2 G1 G1\n\n40) Felix: Sacrifice Y2 Splinter\nMove Y1 Binter Wil\nMove Y3 Felix Wil\n\n41) wil: M Y2 Y2 Wil\nC Wil Y\n\tFelix: You&#39;re putting up quite a struggle!\n\twil: Ark moment...we went to another universe where peace and compassion reigns\n\tFelix: There is no compassion here :)\r\n\r\nGood game!\n\n\nHomeworlds Online (SDG# 33083)\nStarted: 2017.9.21, Ended: 2017.12.24\nParticipants: Ottia (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Ottia: Homeworld G2 B3 Y3\n\n3) MobyNostromo: Build Y1 Mobynostromo\n\tOttia: Hiya Rey! Nice to open a game against you again... let&#39;s see if I can write during the weekend. Take care!\n\tMobyNostromo: Me too! Have a great game!!\n\n4) Ottia: Build Y1 Ottia\n\n5) MobyNostromo: T Y1 G1 Mobynostromo\n\n6) Ottia: Discover Y1 Ottia B1 Goldenboy\n\n7) MobyNostromo: B Y1 Mobynostromo\n\n8) Ottia: Build Y1 Ottia\n\n9) MobyNostromo: B Y2 Mobynostromo\n\n10) Ottia: Trade Y1 G1 Goldenboy\n\n11) MobyNostromo: D Y2 Mobynostromo G3 Earth\n\n12) Ottia: Build G1 Goldenboy\n\n13) MobyNostromo: D G1 Mobynostromo Y3 Saturn\n\n14) Ottia: Trade G1 Y1 Goldenboy\n\n15) MobyNostromo: T Y1 B1 Mobynostromo\n\n16) Ottia: Build Y1 Goldenboy\n\n17) MobyNostromo: B Y2 Mobynostromo\n\n18) Ottia: Discover Y1 Goldenboy Y2 Jimmycorrigan\n\n19) MobyNostromo: B B2 Mobynostromo\n\n20) Ottia: Build G1 Goldenboy\n\tMobyNostromo: Nice!\n\tMobyNostromo: (I meant the Jimmy Corrigan reference.)\n\n21) MobyNostromo: D B2 Mobynostromo G3 Gogogo\n\tOttia: I was going to write That Yellow Bastard but names can&#39;t be that long HEHEHEHEHEHE (by the way, thanks a lot for your GeekMail! Lots of interesting info... I will reply as soon as I can)\n\n22) Ottia: Move G1 Goldenboy Ottia\n\tMobyNostromo: Please reply only when you can. Let&#39;s keep our pen pal habit as a casual thing. It&#39;s a lot funner that way, I think. (BTW, are you a Frank Miller fan? I can see how Yellow Bastard would have definitely worked for that last discovery. I loved Miller for years until the second Sin City book, and then it was all downhill for me.)\n\n23) MobyNostromo: B B2 Mobynostromo\n\n24) Ottia: Build G2 Goldenboy\n\n25) MobyNostromo: B G3 Saturn\n\n26) Ottia: Trade G2 B2 Goldenboy\n\n27) MobyNostromo: B B3 Gogogo\n\n28) Ottia: Move B2 Goldenboy Saturn\n\n29) MobyNostromo: M B2 Mobynostromo Earth\n\tMobyNostromo: Sorry about the long delays. So much to do over here.\n\tOttia: You took the words out of my keyboard...\n\n30) Ottia: Trade Y1 R1 Ottia\n\tMobyNostromo: You too, huh? \n\n31) MobyNostromo: B B3 Earth\n\n32) Ottia: Move R1 Ottia Goldenboy\n\n33) MobyNostromo: M B3 Earth Goldenboy\n\n34) Ottia: Build G2 Goldenboy\n\n35) MobyNostromo: T B3 R3 Goldenboy\n\n36) Ottia: Move R1 Goldenboy Gogogo\n\n37) MobyNostromo: A G2 Goldenboy\n\n38) Ottia: Build Y1 Ottia\n\n39) MobyNostromo: A G1 Goldenboy\n\n40) Ottia: Move Y1 Goldenboy Saturn\n\tMobyNostromo: Sorry about the long delay.\n\n41) MobyNostromo: T B2 R2 Gogogo\n\n42) Ottia: Discover Y3 Ottia R1 Chorizo\n\tOttia: Don&#39;t worry, same here...\n\n43) MobyNostromo: S Y2 Earth\nM R2 Gogogo Chorizo\nM R2 Chorizo Ottia\n\n44) Ottia: Sacrifice Y3 Chorizo\nMove Y1 Saturn Mobynostromo\nMove Y1 Jimmycorrigan Saturn\nMove Y1 Saturn Mobynostromo\nCatastrophe Mobynostromo Y\n\n45) MobyNostromo: S R3 Goldenboy\nA G1 Ottia\nA Y1 Ottia\nA B2 Saturn\n\n\tOttia: Happy Christmas, Rey! I hope I can write during the next days...\n\tMobyNostromo: You beat me to it. I took a break from Christmas Eve to make a move and wish you a great Christmas. Feliz Navidad!! I wish you the best on you daughter&#39;s first Christmas.\n\nHomeworlds Online (SDG# 33081)\nVariants: &quot;Unrated&quot;\nStarted: 2017.9.21, Ended: 2017.10.12\nParticipants: Ottia (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Ottia: Homeworld G3 B2 Y3\n\n3) wil: B G1 Wil\n\tOttia: Hi Wil! Nice to play with you again after so long...\n\n4) Ottia: Build Y1 Ottia\n\n5) wil: T G1 Y1 Wil\n\n6) Ottia: Discover Y1 Ottia G1 Parsley\n\twil: It has been awhile!!  \n\tOttia: You didn&#39;t play for quite a long while... and then I didn&#39;t (slight burnout). I hope things are OK with you.\n\n7) wil: B Y2 Wil\n\n8) Ottia: Build Y2 Ottia\n\n9) wil: D Y1 Wil G3 G3\n\n10) Ottia: Trade Y2 B2 Ottia\n\n11) wil: B Y2 Wil\n\n12) Ottia: Move B2 Ottia Parsley\n\n13) wil: D Y2 Wil B3 B3\n\n14) Ottia: Build Y2 Parsley\n\n15) wil: B Y3 G3\n\n16) Ottia: Discover Y2 Parsley Y3 Turmeric\n\n17) wil: B G1 Wil\n\twil: Hey, I wanted that!\n\n18) Ottia: Sacrifice Y3 Ottia\nMove Y1 Parsley Turmeric\nMove Y1 Turmeric Wil\nMove Y2 Turmeric Wil\nCatastrophe Wil Y\n\n\tOttia: I was going to say I was glad you &quot;liked&quot; my move, since I&#39;m still green at this... I must read the rules again regarding situations like this. I&#39;d like to ask if you&#39;d fancy another game.\n\twil: Oh me gosh, you abandoned your homeworld ya gotta leave someone at the helm!!\r\n\r\nAnd of course,.challenge me.anytime...and feel free.to ask questions or for feedback.\n\nHomeworlds Online (SDG# 33217)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.21, Ended: 2017.9.28\nParticipants: agentofchaos (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\tBabamots: Thanks for the game! Good luck!\n\n2) agentofchaos: Homeworld B2 R3 G3\n\n3) Babamots: Build G1 Babamots\n\tagentofchaos: Thanks, good luck!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) agentofchaos: Trade G1 B1 Agentofchaos\n\n7) Babamots: Build B2 Babamots\n\n8) agentofchaos: Build B2 Agentofchaos\n\n9) Babamots: Discover B1 Babamots G3 Betazed\n\n10) agentofchaos: Trade B2 Y2 Agentofchaos\n\n11) Babamots: Build G1 Babamots\n\n12) agentofchaos: B Y1 Agentofchaos\n\n13) Babamots: Discover G1 Babamots B3 Ferenginar\n\n14) agentofchaos: Discover Y2 Agentofchaos G1 Webn\n\n15) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B3 Betazed\nBuild B3 Babamots\n\n16) agentofchaos: Move B1 Agentofchaos Webn\n\n17) Babamots: Sacrifice B1 Betazed\nTrade B3 G3 Babamots\n\n18) agentofchaos: Build B1 Webn\n\n19) Babamots: Trade B2 Y2 Betazed\n\n20) agentofchaos: Build Y1 Agentofchaos\n\n21) Babamots: Trade B2 R2 Babamots\n\n22) agentofchaos: Trade Y1 R1 Agentofchaos\n\n23) Babamots: Discover B3 Betazed G1 Bajor\n\n24) agentofchaos: Build G2 Agentofchaos\n\n25) Babamots: Build G2 Babamots\n\n26) agentofchaos: Build G2 Agentofchaos\n\n27) Babamots: Sacrifice Y2 Betazed\nMove G1 Ferenginar Bajor\nMove G1 Bajor Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: didn&#39;t see that coming, well played\n\tBabamots: Thanks! See you around! \n\nHomeworlds Online (SDG# 33233)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.23, Ended: 2017.10.2\nParticipants: Grosseteste (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: I&#39;ll fill out the tournament form for the beginning of the game. Good luck!\n\n2) Grosseteste: H B1 Y3 G3\n\n3) Babamots: Build G1 Babamots\n\tGrosseteste: Likewise, looking forward to it!\n\n4) Grosseteste: B G1 Grosseteste\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) Grosseteste: T G1 B1 Grosseteste\n\n7) Babamots: Build B2 Babamots\n\n\nHomeworlds Online (SDG# 33228)\nStarted: 2017.9.24, Ended: 2019.11.13\nParticipants: Jaybones (S), Ottia (N)\nWinner: Ottia\n\n1) Ottia: Homeworld G3 B2 Y3\n\n2) Jaybones: Homeworld Y3 B1 G3\n\n3) Ottia: Build Y1 Ottia\n\n\nHomeworlds Online (SDG# 33237)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.26, Ended: 2017.10.27\nParticipants: Remneb (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tbhorner: This game is for &quot;The Great Homeworld Tournament&quot; organized by Babamots, good luck!\n\n2) Remneb: Homeworld B2 R3 G3\n\n3) bhorner: B G1 Bhorner\n\n4) Remneb: Build G1 Remneb\n\n5) bhorner: T G1 B1 Bhorner\n\n6) Remneb: Trade G1 B1 Remneb\n\n7) bhorner: Build B2 Bhorner\n\n8) Remneb: Build G1 Remneb\n\n9) bhorner: T B2 Y2 Bhorner\n\n10) Remneb: Trade G1 Y1 Remneb\n\n11) bhorner: B B2 Bhorner\n\n12) Remneb: Build G1 Remneb\n\n13) bhorner: Discover B2 Bhorner G3 Fern\n\n14) Remneb: Discover B1 Remneb G1 Gort\n\n15) bhorner: D B1 Bhorner Y3 Bigbird\n\n16) Remneb: Build Y1 Remneb\n\n17) bhorner: T B1 R1 Bigbird\n\n18) Remneb: Trade G1 R1 Remneb\n\n19) bhorner: B B1 Fern\n\n20) Remneb: Build B2 Gort\n\n21) bhorner: Trade B2 Y2 Fern\n\n22) Remneb: Trade B2 Y2 Gort\n\n23) bhorner: B B2 Fern\n\n24) Remneb: Build G1 Remneb\n\n25) bhorner: Build G1 Bhorner\n\n26) Remneb: Move G1 Remneb Gort\n\n27) bhorner: Discover G1 Bhorner B3 Ocean\n\n28) Remneb: Build B2 Gort\n\n29) bhorner: D B2 Fern Y1 Shiney\n\n30) Remneb: Build Y3 Gort\n\n31) bhorner: B Y3 Fern\n\n32) Remneb: Move B2 Gort Bigbird\n\n33) bhorner: Build B3 Fern\n\n34) Remneb: Build B3 Gort\n\n35) bhorner: Build G2 Bhorner\n\n36) Remneb: Build G2 Remneb\n\n37) bhorner: Sacrifice Y3 Fern\nMove G2 Bhorner Ocean\nMove G2 Ocean Gort\nMove G1 Ocean Gort\nC Gort Green\n\n38) Remneb: Sacrifice R1 Remneb\nAttack R1 Bigbird\n\n39) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Bhorner\nBuild Y3 Fern\nBuild Y3 Bhorner\n\n40) Remneb: Discover Y1 Remneb G1 Hoth\n\n41) bhorner: T B3 R3 Fern\n\n42) Remneb: Move Y1 Hoth Bigbird\n\n43) bhorner: Trade Y2 G2 Bhorner\n\n44) Remneb: Build Y2 Remneb\n\n45) bhorner: Trade Y3 G3 Bhorner\n\n46) Remneb: Discover Y1 Bigbird G1 Trek\n\n47) bhorner: B Y3 Bhorner\n\n48) Remneb: Discover Y1 Remneb G1 Assur\n\n49) bhorner: M G3 Bhorner Bigbird\n\n50) Remneb: Sacrifice Y2 Remneb\nMove Y1 Assur Fern\nMove Y1 Trek Fern\nCatastrophe Fern Y\n\n51) bhorner: M Y2 Bhorner Fern\n\n52) Remneb: Discover B2 Bigbird Y1 Roma\n\n53) bhorner: M G3 Bigbird Shiney\n\n54) Remneb: Trade G2 Y2 Remneb\n\n55) bhorner: M R3 Fern Shiney\n\n56) Remneb: Build G1 Remneb\n\n57) bhorner: T Y3 R3 Bhorner\n\n58) Remneb: Sacrifice G1 Remneb\nBuild R1 Bigbird\n\n59) bhorner: S Y2 Fern\nM G3 Shiney Remneb\nM R3 Shiney Remneb\n\n60) Remneb: Sacrifice Y2 Remneb\nMove R1 Bigbird Bhorner\nMove R1 Bigbird Bhorner\nCatastrophe Bhorner R\n\n61) bhorner: A G3 Remneb\n\n\tbhorner: GG!\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 32921)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.28, Ended: 2017.10.14\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld G2 R3 B3\n\tFelix: Hello again :) Hard not to keep a game against you going, since you&#39;re one of the few players who actually makes moves in a timely fashion!\n\n2) dlwillson: H Y1 B3 G3\n\tFelix: I&#39;m going to be a little bit experimental today...\n\n3) Felix: B B1 Felix\n\tdlwillson: Yay, another game with Felix! But, it&#39;s funny that you say I make moves in a timely fashion when today in particular I&#39;m having trouble doing that. Busy day at work.\n\n4) dlwillson: B G1 Dlwillson\n\tFelix: No worries there! I have busy days too\n\n5) Felix: T B3 Y3 Felix\n\n6) dlwillson: B G1 Dlwillson\n\n7) Felix: Build Y1 Felix\n\n8) dlwillson: T G1 Y1 Dlwillson\n\n9) Felix: B Y2 Felix\n\n10) dlwillson: D Y1 Dlwillson G2 Field\n\n11) Felix: Discover Y1 Felix G1 Farholme\n\n12) dlwillson: Build Y2 Field\n\n13) Felix: Build Y2 Farholme\n\n14) dlwillson: Discover Y1 Field G1 Forest\n\n15) Felix: M Y2 Felix Forest\n\n16) dlwillson: Build Y3 Field\n\n17) Felix: D Y2 Farholme B2 Edge\n\n18) dlwillson: Build Y3 Forest\n\n19) Felix: Trade Y2 G2 Edge\n\n20) dlwillson: Trade G1 R1 Dlwillson\n\n21) Felix: Build Y2 Forest\nCatastrophe Forest Yellow\n\tFelix: Boy, I messed that up :D\n\n22) dlwillson: Discover Y2 Field B1 Sky\n\n23) Felix: Build G1 Edge\n\n24) dlwillson: Build R1 Dlwillson\n\n25) Felix: Trade G1 R1 Edge\n\n26) dlwillson: Move R1 Dlwillson Field\n\n27) Felix: Build R2 Edge\n\n28) dlwillson: Build R2 Dlwillson\n\n29) Felix: Trade R2 Y2 Edge\n\n30) dlwillson: Move Y3 Field Farholme\n\n31) Felix: B Y1 Farholme\n\n32) dlwillson: Move Y3 Farholme Edge\n\n33) Felix: S G2 Edge\nB Y2 Edge\nB Y3 Felix\n\n34) dlwillson: Sacrifice R2 Dlwillson\nAttack R1 Edge\nAttack Y2 Edge\n\n35) Felix: Move Y1 Farholme Edge\nCatastrophe Edge Yellow\n\n36) dlwillson: Build R2 Dlwillson\n\n37) Felix: Trade Y3 R3 Felix\n\n38) dlwillson: Build G1 Dlwillson\n\n39) Felix: Move R3 Felix Sky\n\n40) dlwillson: M Y2 Sky Field\n\tdlwillson: That is some baity bait, though. Very tempting.\n\n41) Felix: Build Y1 Felix\n\tFelix: Hehehe.\n\n42) dlwillson: Build Y2 Field\n\n43) Felix: Move Y1 Felix Sky\n\n44) dlwillson: Move Y2 Field Farholme\n\n45) Felix: Move R3 Sky Field\n\n46) dlwillson: B R2 Field\n\n47) Felix: Sacrifice Y1 Sky\nMove R3 Field Farholme\n\n48) dlwillson: S G3 Dlwillson\nB Y1 Farholme\nB R2 Field\nB R3 Edge\n\n49) Felix: Build Y2 Felix\n\tFelix: Simple, yet effective.\n\n50) dlwillson: Sacrifice Y2 Field\nMove Y1 Farholme Felix\nMove Y2 Farholme Felix\nCatastrophe Felix Y\n\n51) Felix: Build Y1 Farholme\n\n52) dlwillson: Trade R3 Y3 Edge\n\n53) Felix: Build R3 Farholme\n\tFelix: Ouch! I need to think more before moving.\n\n54) dlwillson: Sacrifice Y3 Edge\nMove R1 Field Farholme\nMove R2 Field Farholme\nCatastrophe Farholme R\nMove R2 Field Farholme\n\tdlwillson: I&#39;m in danger. But, I&#39;m comforted by the thought that maybe you&#39;re in more danger than I am.\n\n55) Felix: Sacrifice Y1 Farholme\nMove Y1 Farholme Felix\n\tFelix: I think I almost certainly am...\n\n56) dlwillson: Trade R2 Y2 Dlwillson\n\tdlwillson: OK, the mid-turn cat is officially my favorite rules modification. I think I the &quot;in danger&quot; slider is at least 5 clicks further toward you.\n\n57) Felix: Trade Y1 R1 Felix\n\tFelix: I know. I love that change! It makes for some very interesting moves. Great move! I&#39;m in big trouble.\n\n58) dlwillson: S Y2 Dlwillson\nM R2 Farholme Felix\nD R1 Edge Y1 Sol\n\n59) Felix: Build R2 Felix\nCatastrophe Felix R\n\n60) dlwillson: Build R1 Dlwillson\n\tFelix: I fail to see how it would have worked out better for me :P I would have been left with but one ship.\n\tFelix: Woah. Weird. This message was supposed to go on our game with Wil.\n\n61) Felix: Build B1 Felix\n\n62) dlwillson: Move R1 Dlwillson Felix\n\n63) Felix: Build B1 Felix\n\n64) dlwillson: B R2 Felix\n\n65) Felix: Trade B1 Y1 Felix\n\n66) dlwillson: Build R2 Dlwillson\n\n67) Felix: Build Y2 Felix\n\n68) dlwillson: T R2 B2 Dlwillson\n\tdlwillson: I am now laughing at myself for my dumbs... Sigh.\n\n69) Felix: Sacrifice Y2 Felix\nMove B1 Felix Dlwillson\nMove B1 Felix Dlwillson\nCatastrophe Dlwillson B\n\tFelix: Hehe. I&#39;m just stretching out the inevitable at this point.\n\n70) dlwillson: A Y1 Felix\n\n\tFelix: Good game :)\n\tdlwillson: Good game, as always, Felix! \n\tDraw5PlayAll: Quite a bleak residue.\n\nHomeworlds Online (SDG# 33213)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.28, Ended: 2017.10.12\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld G2 B3 Y3\n\n2) wil: H Y2 B1 G3\n\tFelix: I&#39;m going to try an experimental game here, if you don&#39;t mind :) I rarely play with green in my system, so I wanna get some more practice with that setup.\n\twil: Lol, me mind playing experimental hw  games?\n\n3) Felix: B Y1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade Y1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Discover B2 Felix G1 Farholme\n\n10) wil: D B1 Wil G3 G3\n\n11) Felix: Trade B1 R1 Felix\n\n12) wil: B G1 Wil\n\n13) Felix: Build R1 Felix\n\n14) wil: T G1 R1 Wil\n\n15) Felix: Move R1 Felix Farholme\n\n16) wil: B R2 Wil\n\n17) Felix: Build R2 Farholme\n\n18) wil: M R2 Wil G3\n\n19) Felix: Trade R2 Y2 Farholme\n\n20) wil: B R2 Wil\n\n21) Felix: B R2 Felix\n\n22) wil: B R3 G3\n\n23) Felix: B R3 Farholme\n\n24) wil: T R3 Y3 G3\n\n25) Felix: Move R1 Farholme G3\n\n26) wil: T R1 Y1 Wil\n\n27) Felix: Build R1 G3\n\n28) wil: S R2 G3\nA R1 G3\nA R1 G3\n\n29) Felix: Trade R2 G2 Felix\n\n30) wil: D R1 G3 Y1 Y1\n\twil: Dang skeeters\n\n31) Felix: Build R2 Felix\n\n32) wil: S G3 Wil\nB R2 Y1\nB R3 Wil\nB R3 G3\n\n33) Felix: Build Y1 Farholme\n\n34) wil: T R3 Y3 G3\n\twil: Would you like to start disarmament talks?\n\n35) Felix: Move Y2 Farholme G3\n\tFelix: If we must :P\n\n36) wil: D Y3 G3 G1 G1\n\n37) Felix: Build R3 Farholme\n\n38) wil: A Y2 G3\n\n39) Felix: Build Y2 Farholme\n\n40) wil: T R3 G3 Wil\n\n41) Felix: Discover Y2 Farholme R3 Bazoik\n\n42) wil: M R1 Y1 Felix\n\twil: I was hoping it was a tourney challenge...but just some bloke on the ladder...\n\n43) Felix: Sacrifice R1 Felix\nAttack R1 Felix\n\tFelix: Nothing exciting, I&#39;m afraid.\n\n44) wil: B R1 G3\n\n45) Felix: Discover Y1 Farholme G3 Nearhome\n\twil: Lol\n\twil: Thatndodnt work right\n\n46) wil: S Y2 G3\nM R1 G3 Farholme\nM R1 G3 Farholme\nC Farholme R\n\twil: Let us start this over again...\n\n47) Felix: Build Y2 Nearhome\n\n48) wil: D Y1 Wil R3 R3\n\n49) Felix: Sacrifice Y1 Nearhome\nMove B2 Farholme R3\n\n50) wil: D Y1 R3 B1 B1\n\n51) Felix: Sacrifice G2 Felix\nBuild Y1 Nearhome\nBuild B2 R3\n\n52) wil: B B3 G3\n\n53) Felix: Sacrifice Y2 Nearhome\nMove B2 R3 Wil\nMove B2 R3 Wil\nCatastrophe Wil B\n\n54) wil: B Y2 G3\n\n55) Felix: Move R2 Felix B1\n\n56) wil: M Y3 G3 B1\n\n57) Felix: Build R1 Felix\n\n58) wil: B R1 Wil\n\tFelix: I gotta think about this one for a bit...\n\n59) Felix: Discover R1 Felix G1 Out\n\n60) wil: M R2 Wil Out\n\n61) Felix: Build R3 Felix\n\n62) wil: S R2 Y1\nA R1 Out\nA R2 B1\n\n63) Felix: Build Y1 Nearhome\n\n64) wil: S Y3 G1\nM Y3 B1 Felix\nM R1 Out Felix\nM R2 B1 Felix\nC Felix R\n\n65) Felix: Sacrifice Y2 Bazoik\nMove Y1 Nearhome Wil\nMove Y1 Nearhome Wil\n\n66) wil: S R1 Wil\nA Y3 Felix\n\twil: Those turncoats immediately struck back!\n\n\tFelix: Well played! I technically should be able to win here simply by being the player who causes both our eliminations, but the system won&#39;t let me.\n\twil: At the end of your move you must have a ship in your homeworlds I believe.\n\twil: I&#39;ll verify with Andy n john tonight.\n\tFelix: I&#39;m not sure. I thought I remember seeing some forum post where Andy or John covered this edge case, saying that if a move would cause both players to be eliminated, whoever makes that move is considered the winner.\r\n\r\nAlso, if causing your destruction occurs DURING my turn, then wouldn&#39;t you be elminated before my turn techncially ends, so it wouldn&#39;t matter at that point if I have any ships left? An interesting scenario.\n\tFelix: I like the idea of kamikazeing my entire fleet to achieve a hollow victory :)\n\tDraw5PlayAll: *I* thought that they said that if both players are eliminated the game is a tie, not &quot;the player who caused it&quot;... I mean, it makes more sense that way, like in chess if it is king vs king it is not &quot;the player who caused it to be KvK&quot;.\n\twil: War games scenario...nobody wins with mutual nuclear destruction...\n\tDraw5PlayAll: So this game deserves to be a draw but SDG will not let you offer a draw in Homeworlds games.\r\nhttps://boardgamegeek.com/article/21140352#21140352\n\nHomeworlds Online (SDG# 33260)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.9.29, Ended: 2017.10.16\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\n3) wil: B G1 Wil\n\twil: Wow, short universe?\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) wil: T G1 R1 Wil\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) wil: B R1 Wil\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) wil: B R2 Wil\n\n10) eliscinsky: Build Y1 Eliscinsky\n\n11) wil: D R2 Wil Y3 Y3\n\n12) eliscinsky: Build Y2 Eliscinsky\n\n13) wil: B R2 Wil\n\n14) eliscinsky: Trade Y2 R2 Eliscinsky\n\n15) wil: T R2 Y2 Wil\n\n16) eliscinsky: Trade Y1 B1 Eliscinsky\n\n17) wil: B R2 Wil\n\n18) eliscinsky: Discover Y1 Eliscinsky B3 B3\n\n19) wil: D R1 Wil B3 Be3\n\n20) eliscinsky: Trade G1 Y1 Eliscinsky\n\n21) wil: S G3 Wil\nB R3 Y3\nB R3 Be3\nB R3 Wil\n\n22) eliscinsky: Build Y2 Eliscinsky\n\n23) wil: T R3 G3 Wil\n\n\twil: Aaarrrgghhhh hate that.\n\teliscinsky: Damn how&#39;d I miss that\n\nHomeworlds Online (SDG# 33263)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.29, Ended: 2017.10.9\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) wil: H Y2 B1 G3\n\twil: Let&#39;s do this!\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Yeehaa! :-)\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: B Y3 Field\n\n12) wil: B Y3 G3\n\n13) dlwillson: Discover Y1 Field B3 Sky\n\n14) wil: D Y2 Wil Y3 Why3\n\n15) dlwillson: T Y2 R2 Dlwillson\n\n16) wil: T G3 R3 Wil\n\n17) dlwillson: Build Y2 Field\n\n18) wil: M Y1 G3 Wil\n\n19) dlwillson: Discover Y2 Field G3 Forest\n\twil: Nice\n\n20) wil: T Y1 G1 Wil\n\n21) dlwillson: Build Y1 Field\n\n22) wil: B R1 Wil\n\n23) dlwillson: M Y1 Field Sky\n\n24) wil: M R1 Wil G3\n\n25) dlwillson: B G1 Dlwillson\n\n26) wil: B R1 Wil\n\n27) dlwillson: Trade G1 B1 Dlwillson\n\n28) wil: T R1 B1 Wil\n\n29) dlwillson: Move B1 Dlwillson Field\n\n30) wil: M B1 Wil G3\n\n31) dlwillson: Build B2 Field\n\n32) wil: B B2 G3\n\n33) dlwillson: M B2 Field Forest\n\n34) wil: D B1 G3 G2 G2\n\n35) dlwillson: Build B2 Forest\n\n36) wil: B B3 G2\n\n37) dlwillson: Move B2 Forest Wil\n\n38) wil: A B2 Wil\n\n39) dlwillson: S Y3 Field\nM B2 Forest Wil\nM B1 Field Forest\nM B1 Forest Wil\nC Wil B\n\n40) wil: B Y3 G3\n\tdlwillson: &lt;fingers crossed&gt; I sure hope this works...\n\twil: Hmm\n\n41) dlwillson: Sacrifice Y2 Forest\nMove Y1 Sky Wil\nMove Y1 Sky Wil\n\n42) wil: S G1 Wil\nB Y2 Why3\n\n43) dlwillson: Move Y1 Wil Why3\nCatastrophe Why3 Y\n\twil: Looks like it did\n\n44) wil: A Y1 Wil\n\tdlwillson: Well, the first part did, but I knew it would. It&#39;s this part here that I&#39;m not so sure about.\n\tdlwillson: It doesn&#39;t help that I botched it. I was supposed to go with the y2 and a y... no, that doesn&#39;t work, either. What made me think this was going to work? Bah... Maybe I&#39;ll be able to recover somehow.\n\n45) dlwillson: B R1 Dlwillson\n\n46) wil: T B1 R1 G2\n\n47) dlwillson: Trade R1 Y1 Dlwillson\n\n48) wil: B R1 G2\n\n49) dlwillson: Discover Y1 Dlwillson G2 Field\n\n50) wil: Move R1 G3 Field\n\n51) dlwillson: D Y1 Field G1 Forest\n\n52) wil: Build R2 Field\n\n53) dlwillson: B Y2 Forest\n\n54) wil: S Y3 G3\nM R1 G2 Dlwillson\nM R1 Field Dlwillson\nM R2 Field Dlwillson\nC Dlwillson R\n\n55) dlwillson: M Y1 Forest Wil\n\n56) wil: S Y3 G3\nM Y1 Wil Dlwillson\nM B3 G2 Dlwillson\nM B2 G3 Wil\n\n\twil: I think that did it.\n\tdlwillson: Yup. It won&#39;t let me MAD.\r\nGood game!\n\twil: I you would have had any pawn in your homeworld... That was something else.\n\tFelix: Fascinating endgame! So tight.\n\nHomeworlds Online (SDG# 33266)\nVariants: &quot;Hard time&quot;\nStarted: 2017.9.29, Ended: 2017.10.6\nParticipants: ajo (S), Babamots (N)\nWinner: ajo\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: Thanks for the game! Good luck!\n\n2) ajo: Homeworld R2 B3 G3\n\n3) Babamots: Build G1 Babamots\n\n4) ajo: Build G1 Ajo\n\n5) Babamots: Discover G1 Babamots B3 Betazed\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) Babamots: Build G1 Babamots\n\n8) ajo: Build Y1 Ajo\n\n9) Babamots: Build G1 Betazed\n\n10) ajo: Build G2 Ajo\n\n11) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Betazed\nBuild G3 Babamots\n\n12) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\n\n13) Babamots: Trade G2 Y2 Betazed\n\n14) ajo: Discover G3 Ajo B1 Alpha\n\n15) Babamots: Discover G2 Babamots Y3 Ferenginar\n\n16) ajo: Trade Y1 R1 Ajo\n\n17) Babamots: Trade G1 R1 Betazed\n\n18) ajo: Build G1 Alpha\n\n19) Babamots: Sacrifice G3 Babamots\nBuild G2 Betazed\nBuild Y1 Betazed\nBuild G3 Babamots\n\n20) ajo: Move Y1 Ajo Alpha\n\n21) Babamots: Discover Y2 Betazed B2 Iconia\n\n22) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\nBuild Y3 Alpha\n\n23) Babamots: Sacrifice G2 Ferenginar\nBuild Y3 Betazed\nBuild Y3 Iconia\n\n24) ajo: Trade Y3 R3 Alpha\n\n25) Babamots: Trade Y2 G2 Iconia\n\n26) ajo: Sacrifice Y2 Ajo\nMove G3 Alpha Betazed\nMove G3 Betazed Babamots\n\n27) Babamots: Sacrifice Y3 Iconia\nMove G1 Betazed Babamots\nCatastrophe Babamots G\nMove Y3 Betazed Babamots\nDiscover G2 Iconia Y3 Pakled\n\tajo: Check. :)\n\n28) ajo: Move R3 Alpha Betazed\n\n29) Babamots: Sacrifice G2 Betazed\nBuild R1 Betazed\nBuild R2 Betazed\nCatastrophe Betazed R\n\n30) ajo: Build Y2 Alpha\n\n31) Babamots: Build G1 Pakled\n\n32) ajo: Move Y2 Alpha Betazed\n\n33) Babamots: Sacrifice Y1 Betazed\nMove G1 Pakled Babamots\n\n34) ajo: Build Y1 Alpha\n\tBabamots: Oh, I didn&#39;t notice that you said &quot;check&quot; back there. I always liked the term &quot;red alert.&quot;\n\n35) Babamots: Build G1 Pakled\n\tBabamots: I wish ts52 would move as quickly as you. I think I&#39;m doing better in my game with him.\n\tBabamots: Meaning that, in general, I think people move more slowly when they&#39;re losing, which is too bad for their opponents who would usually like to hurry up and win.\n\n36) ajo: Build Y2 Ajo\n\n37) Babamots: Build G2 Babamots\n\tajo: I think you&#39;re right, but that&#39;s only to be expected in any game. :) Another reason it might happen in Homeworlds is that I often set up the pieces offline so I can visualize the position better than I can with the SDG interface. But in this game I&#39;m doing well enough that I haven&#39;t felt the need for physical pieces yet. ;)\n\tBabamots: I usually manage to put up at least a little bit of a fight, but not so much this time.\n\tBabamots: I&#39;m trying to decide whether to quit and forget this game ever happened or sit around hoping you&#39;ll make a colossal mistake.\n\n38) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild Y3 Betazed\n\n39) Babamots: Trade Y3 R3 Babamots\n\tajo: I suspect it will be over soon either way. ;)\n\n\tBabamots: I think I&#39;ll stop here and focus on the tournament. Maybe I&#39;ll give you trouble next time :-).\n\tajo: Good game! :)\n\nHomeworlds Online (SDG# 33077)\nVariants: &quot;Unrated&quot;\nStarted: 2017.9.30, Ended: 2017.11.24\nParticipants: redsang (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld B3 Y1 G3\n\n2) redsang: Homeworld R1 Y2 G3 *\n\tdragon76n: Hello redsang, \r\nI hope you enjoy the game. I&#39;ve played a few times, both online and in person, but not a lot. Is this your first time playing Homeworlds at all, or just first time playing it on SDG? Either way, as long as you keep playing, I&#39;m willing to answer your questions about the game. \r\n--Nathaniel &quot;Dragon&quot;\n\n3) dragon76n: Build G1 Dragon76n\n\tredsang: Dragon - It is almost my first time playing at all. I am halfway through another game on SDG but not faring well.\n\n4) redsang: Build G1 Redsang\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) redsang: Build G1 Redsang\n\tredsang: Have I just messed up by not starting with a blue?\n\n7) dragon76n: B Y1 Dragon76n\n\n8) redsang: Discover G1 Redsang B3 Tom\n\tdragon76n: Well, based on some of the things I&#39;ve read, yellow, blue, and green give you a better start, but at least you can go out and discover a blue star. \n\tdragon76n: I think yellow is the worst color to begin without, since you can&#39;t move to discover anything without yellow. \n\n9) dragon76n: D Y1 Dragon76n G2 Gretwo\n\n10) redsang: Trade G1 R1 Tom\n\n11) dragon76n: Build Y2 Gretwo\n\n12) redsang: Build G1 Redsang\n\n13) dragon76n: Move Y2 Gretwo Tom\n\n14) redsang: Move G1 Redsang Tom\n\n15) dragon76n: Trade Y2 R2 Tom\n\tredsang: Just lost the other game I was playing. There&#39;s still so much about the mechanics I don&#39;t get.\n\tDraw5PlayAll: @dragon76n I think blue is the second worst to start without (you absolutely must have green to do anything useful). I use B3R1 with a G3 ship, and trade my built G1 for a Y1 to do exploring. But without blue it becomes more risky to obtain blue ships (it takes longer and your homeworld is relatively safe early on).\n\n16) redsang: Trade G1 B1 Tom\n\n17) dragon76n: A R1 Tom\n\tredsang: It seems like I have inadvertently gotten my ships stuck at Tom. Not really sure what tot do here.\n\tdragon76n: I&#146;ll put them back to work. ;)\n\n\tdragon76n: Hi... \n\tdragon76n: Hello redsang... it looks like you&#39;ve abandoned the game. \n\tDraw5PlayAll: I think so too.\n\nHomeworlds Online (SDG# 33270)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.1, Ended: 2017.10.21\nParticipants: eliscinsky (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) eliscinsky: Trade G1 R1 Eliscinsky\n\n7) ts52: B G1 Ts52\n\n8) eliscinsky: Build R1 Eliscinsky\n\n9) ts52: Build G1 Gonzo\n\n10) eliscinsky: Trade R1 Y1 Eliscinsky\n\n11) ts52: Trade G1 R1 Ts52\n\n12) eliscinsky: Move R1 Eliscinsky Gonzo\n\n13) ts52: Sacrifice R1 Ts52\nAttack R1 Gonzo\n\n14) eliscinsky: Build Y1 Eliscinsky\n\n15) ts52: Trade G1 Y1 Gonzo\n\n16) eliscinsky: Trade Y1 R1 Eliscinsky\n\n17) ts52: Build R2 Gonzo\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) ts52: Build G1 Ts52\n\n20) eliscinsky: Trade G1 B1 Eliscinsky\n\n21) ts52: Trade R2 Y2 Gonzo\n\n22) eliscinsky: Build G1 Eliscinsky\n\n23) ts52: Build G2 Gonzo\n\n24) eliscinsky: Discover G1 Eliscinsky B3 Bozo\n\n25) ts52: Build R2 Gonzo\n\n26) eliscinsky: Build G2 Bozo\n\n27) ts52: Move R1 Gonzo Ts52\n\n28) eliscinsky: Move B1 Eliscinsky Bozo\n\n29) ts52: Build R2 Gonzo\n\n30) eliscinsky: Build G2 Eliscinsky\n\n31) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Eliscinsky\nMove G2 Gonzo Eliscinsky\nCatastrophe Eliscinsky Green\n\n32) eliscinsky: Move Y1 Eliscinsky Bozo\n\n33) ts52: Move R2 Gonzo Eliscinsky\n\n34) eliscinsky: Move G2 Bozo Eliscinsky\n\teliscinsky: Nice game.  I see that you&#39;ll have me in a few moves. ;)\n\n35) ts52: S R2 Gonzo\nA G2 Eliscinsky\nA R1 Eliscinsky\n\tts52: Good game. I was surprised by your choice to make it a small universe. \n\n\teliscinsky: nice game :)\n\nHomeworlds Online (SDG# 33261)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.1, Ended: 2017.10.7\nParticipants: shoejitsu (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld R1 B2 G3\n\tshoejitsu: good luck!\n\n2) shoejitsu: Homeworld G3 Y1 B3\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) shoejitsu: Build B1 Shoejitsu\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n\tshoejitsu: ugh... thats a shame. had a busy few days and slipped my mind\n\teliscinsky: Bummer, I never wanted a RESIGNATION. Would you be interested in trying  again?\n\tshoejitsu: I wouldn&#39;t mind another game, you can mark it however you want though. rules are rules!\n\tBabamots: It&#39;s fine with me if you&#39;d both like to try again. Just fill out the start form like usual. It will temporarily break the tournament results grid, but I will fix it.\n\nHomeworlds Online (SDG# 33264)\nStarted: 2017.10.4, Ended: 2017.11.6\nParticipants: Hambone (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n\tts52: Have a good game!\n\nHomeworlds Online (SDG# 33290)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.6, Ended: 2017.11.1\nParticipants: Babamots (S), jeep (N)\nWinner: Babamots\n\n1) jeep: Homeworld B2 R1 G3\n\n2) Babamots: Homeworld B1 Y3 G3\n\tBabamots: I&#39;ve filled out the form for the tournament. Good luck!\n\n3) jeep: Build G1 Jeep\n\tjeep: Thanks. GLHF\n\n4) Babamots: Build G1 Babamots\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) jeep: Build Y1 Jeep\n\n8) Babamots: Build B1 Babamots\n\n9) jeep: Build Y1 Jeep\n\n10) Babamots: Discover B1 Babamots G2 Betazed\n\n11) jeep: Discover Y1 Jeep G3 Grower\n\n12) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B2 Betazed\nBuild B3 Babamots\n\n13) jeep: Build Y2 Grower\n\n14) Babamots: Trade B2 Y2 Betazed\n\n15) jeep: Discover Y1 Grower G2 Gammay\n\n16) Babamots: Discover B1 Babamots B2 Rubicun\n\n17) jeep: Sacrifice G3 Jeep\nBuild Y2 Gammay\nBuild Y3 Jeep\nBuild Y3 Gammay\n\n18) Babamots: Build B3 Betazed\n\n19) jeep: Trade Y1 R1 Jeep\n\n20) Babamots: Trade B3 R3 Betazed\n\n21) jeep: Trade Y3 G3 Jeep\n\n22) Babamots: Build B3 Betazed\n\n23) jeep: Sacrifice G3 Jeep\nBuild Y1 Grower\nBuild Y3 Jeep\nBuild R1 Jeep\n\n24) Babamots: Trade B3 G3 Betazed\n\n25) jeep: Discover R1 Jeep B3 Changer\n\n26) Babamots: Move R3 Betazed Grower\n\n27) jeep: Sacrifice Y2 Grower\nDiscover Y1 Grower Y2 Mover\nMove R1 Changer Rubicun\n\n28) Babamots: Sacrifice G3 Betazed\nBuild B3 Babamots\nBuild R2 Grower\nBuild B3 Rubicun\n\n29) jeep: Attack B1 Rubicun\n\n30) Babamots: Sacrifice R2 Grower\nAttack R1N Rubicun\nAttack B1N Rubicun\n\n31) jeep: Trade Y1 G1 Jeep\n\n32) Babamots: Build Y1 Betazed\n\n33) jeep: Build G1 Jeep\n\n34) Babamots: Sacrifice Y2 Betazed\nMove Y1 Betazed Grower\nMove Y1 Grower Gammay\nCatastrophe Gammay Y\n\n35) jeep: Build R2 Jeep\n\tjeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.\n\tBabamots: Yes, I&#39;m happy to continue this game. Sorry to see you out of the tournament, but I know life needs to take priority.\n\n36) Babamots: Trade B3 G3 Rubicun\n\n\nHomeworlds Online (SDG# 33226)\nStarted: 2017.10.7, Ended: 2017.12.1\nParticipants: MobyNostromo (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld B1 Y3 G3\n\n2) MobyNostromo: Homeworld B2 G1 Y3\n\n3) orangeblood: Build G1 Orangeblood\n\torangeblood: Shall we do this again?\n\tMobyNostromo: Yes. I&#39;ll try to give you a more interesting game.\r\n\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) orangeblood: Trade G1 B1 Orangeblood\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) orangeblood: Build B1 Orangeblood\n\n8) MobyNostromo: T Y1 G1 Mobynostromo\n\n9) orangeblood: Trade B1 Y1 Orangeblood\n\n10) MobyNostromo: T Y1 B1 Mobynostromo\n\n11) orangeblood: Build B2 Orangeblood\n\n12) MobyNostromo: B B2 Mobynostromo\n\n13) orangeblood: Discover B2 Orangeblood G2 Proximacentauri\n\n14) MobyNostromo: D B2 Mobynostromo R3 Merlot\n\n15) orangeblood: Build B3 Proximacentauri\n\n16) MobyNostromo: B B3 Mobynostromo\n\n17) orangeblood: Trade B2 Y2 Proximacentauri\n\n18) MobyNostromo: M B3 Mobynostromo Merlot\n\n19) orangeblood: Build Y1 Proximacentauri\n\n20) MobyNostromo: T B3 Y3 Merlot\n\n21) orangeblood: Build B2 Proximacentauri\n\n22) MobyNostromo: D B2 Merlot Y2 Lemonade\n\n23) orangeblood: Discover B3 Proximacentauri G3 Mmmdonuts\n\n24) MobyNostromo: M B1 Mobynostromo Merlot\n\n25) orangeblood: Trade B1 R1 Orangeblood\n\tMobyNostromo: I&#39;m getting hungry.\n\n26) MobyNostromo: T Y3 G3 Merlot\n\n27) orangeblood: Sacrifice Y1 Proximacentauri\nMove B3 Mmmdonuts Mobynostromo\n\torangeblood: Donuts and merlot.\n\tMobyNostromo: Yes!!\n\n28) MobyNostromo: T G1 R1 Mobynostromo\n\n29) orangeblood: Sacrifice R1 Orangeblood\nAttack R1 Mobynostromo\n\n30) MobyNostromo: S G3 Merlot\nB Y1 Mobynostromo\nB B1 Lemonade\nB B3 Lemonade\n\n31) orangeblood: Attack Y3 Mobynostromo\n\tMobyNostromo: I think you got me.\n\n32) MobyNostromo: T B3 R3 Lemonade\n\n33) orangeblood: Attack Y1 Mobynostromo\n\torangeblood: It seems so... but I&#39;ve been wrong before!\n\n\torangeblood: Good game... thanks!\n\tMobyNostromo: Thank you!\n\nHomeworlds Online (SDG# 33265)\nStarted: 2017.10.7, Ended: 2017.11.9\nParticipants: Gidaio (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Gidaio: Homeworld R3 B1 G3\n\twil: Looks like it&#39;s been awhile holler if you have any questions\n\tGidaio: I remember how to play, but I&#39;m almost definitely going to lose. Thanks, though!\n\n3) wil: Build G1 Wil\n\n4) Gidaio: Build G1 Gidaio\n\n5) wil: T G1 B1 Wil\n\n6) Gidaio: Trade G1 Y1 Gidaio\n\n7) wil: B B1 Wil\n\n8) Gidaio: Build Y1 Gidaio\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Gidaio: Discover Y1 Gidaio G2 Gallifrey\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n12) Gidaio: Build Y2 Gallifrey\n\n13) wil: M B2 Y3 Gallifrey\n\n14) Gidaio: Build Y2 Gidaio\n\n15) wil: Trade B3 G3 Wil\n\n16) Gidaio: Move Y2 Gallifrey Y3\n\n17) wil: S G3 Wil\nB B3 Gallifrey\nB B3 Y3\nB B3 Wil\n\n18) Gidaio: Sacrifice G3 Gidaio\nBuild Y2 Y3\nBuild Y3 Gallifrey\nBuild Y3 Gidaio\n\n19) wil: S B3 Y3\nT B2 R2 Gallifrey\nT B2 G2 Y3\nT B3 G3 Wil\n\n20) Gidaio: Move Y3 Gallifrey Y3\nCatastrophe Y3 Yellow\n\twil: Quite the response.\n\n21) wil: A Y1 Gallifrey\n\tGidaio: :D\n\n22) Gidaio: Trade Y3 G3 Gidaio\n\n23) wil: B Y2 Gallifrey\n\n24) Gidaio: Discover Y2 Gidaio B2 Bob\n\n25) wil: D Y2 Gallifrey B3 B3\n\n26) Gidaio: Trade Y2 R2 Bob\n\n27) wil: B B1 Gallifrey\n\n28) Gidaio: Build Y2 Gidaio\n\n29) wil: B Y2 Gallifrey\n\n30) Gidaio: Move Y2 Gidaio Bob\n\n31) wil: Discover B3 Gallifrey Y3 Y3\n\n32) Gidaio: Move R2 Bob B3\n\n33) wil: Sacrifice G3 Wil\nBuild B2 Gallifrey\nBuild B3 Wil\nBuild Y3 B3\n\n34) Gidaio: Attack Y2 B3\n\n35) wil: S B2 Gallifrey\nT B3 G3 Wil\nT B3 Y3 Y3\n\n36) Gidaio: Build G1 Gidaio\n\n37) wil: S G3 Wil\nB B2 Gallifrey\nB B3 Gallifrey\nB B3 Wil\n\n38) Gidaio: Sacrifice Y2 Bob\nMove Y2 B3 Wil\nDiscover G1 Gidaio G2 Terragreen\n\twil: The blue queen machine in operation\n\tGidaio: Apparently!\n\n39) wil: S R2 Gallifrey\nA R2 B3\nA Y2 Wil\n\n40) Gidaio: Build Y2 Gidaio\n\twil: The ships you have built for us are lovely, we have accepted delivery at both locations... When can we expect more?\n\tGidaio: Gah! Didn&#39;t see that one...\n\n41) wil: S B2 Gallifrey\nT B3 R3 Gallifrey\nT B3 G3 Wil\n\n42) Gidaio: Build G1 Terragreen\n\n43) wil: S G3 Wil\nB B2 Gallifrey\nB B2 Gallifrey\nB B3 Wil\n\tGidaio: I&#39;m gonna lose, for sure. All that&#39;s left is to see how long I can make it and how much damage I can do.\n\twil: Yes this where you wait patiently for me to do something stupid and pounce.\n\n44) Gidaio: Sacrifice Y1 Gidaio\nMove G1 Terragreen Y3\n\n45) wil: B R1 Gallifrey\n\n46) Gidaio: Build Y1 Gidaio\n\n47) wil: B R1 Gallifrey\n\n48) Gidaio: Build G1 Gidaio\n\twil: Doomsday machine locked and loaded.\n\n49) wil: S Y3 B3\nM R3 Gallifrey Gidaio\nM R1 Gallifrey Gidaio\nM R1 Gallifrey Gidaio\nC Gidaio R\n\tGidaio: I literally have no idea what to do anymore. This has been a bad game for me.\n\tGidaio: If I resign, though, I lose valuable information and future strategies based on how you defeat me!\n\twil: This is now a classic doomsday.machine.  I have the two big transport ships ready to send all the required ships to cause acatastrophic ending to your star system\n\n\twil: Fire torpedo tube 3 and send in the twins\n\tGidaio: There was no way to win! Good game! Hopefully my next one won&#39;t be as horrible...\n\nHomeworlds Online (SDG# 33296)\nVariants: &quot;Unrated, Sinister, Hard time&quot;\nStarted: 2017.10.7, Ended: 2017.10.18\nParticipants: Felix (S), wil (N), dlwillson (E)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) dlwillson: H B3 Y2 G3 Dlwillson\n\twil: I just challenged Jeep and Remneb for the tourney...  \n\n3) Felix: Homeworld B1 R3 G3\n\n4) wil: B G1 Wil\n\tFelix: Too many games to juggle?\n\twil: Nevah!\n\n5) dlwillson: B G1 Dlwillson\n\n6) Felix: Build G1 Felix\n\n7) wil: T G1 B1 Wil\n\n8) dlwillson: Trade G1 B1 Dlwillson\n\n9) Felix: Trade G1 B1 Felix\n\n10) wil: B B2 Wil\n\n11) dlwillson: Build B2 Dlwillson\n\n12) Felix: Build B2 Felix\n\n13) wil: D B1 Wil Y3 Y3\n\twil: Next time we will have to mix up order..\n\n14) dlwillson: Discover B1 Dlwillson G1 Field\n\n15) Felix: Trade B2 Y2 Felix\n\tdlwillson: I set the seats to random. We just randomly ended up in the same order. :-)\n\n16) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n17) dlwillson: Build B3 Field\n\n18) Felix: Discover B1 Felix G2 Corneria\n\tDraw5PlayAll: 9 blues already?!\n\twil: The question is does he take me out to make himself and me weak again...  \n\n19) wil: S B2 Y3\nT B3 G3 Wil\nT B1 R1 Y3\n\tFelix: Not today!\n\n20) dlwillson: T B2 R2 Dlwillson\n\tdlwillson: It would have worked out better today.\n\n21) Felix: Build B1 Corneria\n\twil: Bettah for you!\n\tdlwillson: Better for Felix, too! But not better for Wil... :-)\n\n22) wil: B G1 Wil\n\tFelix: \t\r\nI fail to see how it would have worked out better for me :P I would have been left with but one ship.\n\n23) dlwillson: Trade B3 Y3 Field\n\tdlwillson: You wouldn&#39;t have lost immediately... :-)\n\n24) Felix: Trade B1 R1 Corneria\n\n25) wil: T G1 R1 Wil\n\n26) dlwillson: Build Y1 Field\n\twil: He meant better for him...\n\n27) Felix: Build Y1 Felix\n\n28) wil: B G1 Wil\n\n29) dlwillson: Move Y3 Field Corneria\n\n30) Felix: Sacrifice B1 Corneria\nTrade R1 Y1 Corneria\n\n31) wil: T B2 Y2 Wil\n\n32) dlwillson: Build R1 Dlwillson\n\n33) Felix: Build Y2 Corneria\n\n34) wil: Discover Y2 Wil G3 G3\n\n35) dlwillson: B Y3 Field\n\n36) Felix: Sacrifice Y1 Corneria\nDiscover Y2 Corneria G1 Focus\n\tdlwillson: Available bigs engage my avarice and make it harder to make good decisions. ;-)\n\n37) wil: T G1 B1 Wil\n\n38) dlwillson: M R2 Dlwillson Field\n\n39) Felix: Build G1 Felix\n\n40) wil: M B1 Wil G3\n\n41) dlwillson: B R1 Field\n\n42) Felix: Trade Y2 R2 Felix\n\n43) wil: B G1 Wil\n\n44) dlwillson: Move R1 Field Corneria\n\n45) Felix: Trade G1 B1 Felix\n\n46) wil: Build B2 G3\n\n47) dlwillson: B B2 Field\n\n48) Felix: Discover B1 Felix G2 Ficus\n\n49) wil: B R2 Wil\n\n50) dlwillson: Move B2 Field Corneria\n\twil: Sure wish you were in the tourney dl\n\n51) Felix: Move R2 Felix Ficus\n\tdlwillson: How&#39;s it going? How many rounds are complete? Where&#39;s the chart? Who should I be cheering for?\n\tFelix: Here&#39;s the tourney viewer: https://docs.google.com/spreadsheets/d/1kPVTvNAsvxu1bvDR4tmNEq4g5PzAjeSvPtPwbWv1l3c/pubhtml?gid=1121943752&amp;single=true\r\n\r\nRoot for wil, obviously!\n\n52) wil: M G1 Wil Y3\n\twil: Yes me, Felix already has the edge on me!\n\n53) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Corneria\nBuild R2 Corneria\nBuild R3 Dlwillson\n\n54) Felix: Build R3 Ficus\n\tFelix: But I&#39;ve lost 2 games so far to your one!\n\n55) wil: B R3 Y3\n\twil: Two to people I have not played...and you beat me!  Lol, not that I care... I play this game for the day that I see the same game twice.\n\n56) dlwillson: Sacrifice Y3 Corneria\nMove B2 Corneria Felix\nMove B2 Corneria Felix\nDiscover B1 Field Y2 Sol\n\n57) Felix: Sacrifice Y2 Focus\nMove R2 Ficus Field\nMove R2 Field Dlwillson\n\tdlwillson: I see that mneme is doing well. He&#39;s a very strong player. He hasn&#39;t been active on the ladder for a long time, but he and I used to take turns trying to beat...\n\tdlwillson: TwoShort. He&#39;s *very* hard to beat. I&#39;d say that TTT is the only player stronger, but I&#39;ve only seen TTT in a few games. As near as I can tell, he doesn&#39;t make mistakes.\n\twil: Then there is broccoli commander... We are missing the four top names!!  \n\tdlwillson: What do you mean &quot;the four top names&quot;?\n\n58) wil: S Y2 G3\nM R1 Y3 Field\nM R1 Field Dlwillson\nC Dlwillson R\n\tFelix: Not my wisest move, but it&#39;s dangerous to corner a wild animal :P\n\twil: I mean you ain&#39;t playing!!  \n\tdlwillson: Saw it coming! :-)\r\n\r\nI thought to myself, &quot;Felix can easily hand the game to Wil. I probably would, in his position.&quot;\r\n\r\nI should&#39;ve swapped something, so I&#39;d be two-colored at home.\r\n\r\nGood game, y&#39;all!\n\twil: You only gave him the choice of losing or insuring you didn&#39;t win...  But that is twice you two combatting provided me the easy win... And twice the luck of the draw put us in the same position.  Id like another game... Is it possible that we arrange the positions differently?\n\twil: I&#39;d also like to try four person partners.. Take any opponent out and the other resigns....partners take the same homeworld setup (banker, goldilocks or fortress)...  Who for the fourth?\n\tFelix: Yeah... I would lose if I kept it going, so I just wanted to give wil the victory to spite you for attacking me :)\r\n\r\nGood game! I&#39;d be up for trying again, or for 4p teams. Maybe ts52 or mneme if he&#39;s willing for the 4th.\n\tdlwillson: I&#39;m down for whatever, but someone else has to set up the next one.\n\tDraw5PlayAll: I thought in teams, if one member of a team dies the other just has a disadvantage (or maybe not even that).\n\twil: D5PA...who cares what the rules say on SDG...we can make up our own win conditions.  When one member dies, the team loses is my suggestion. \n\tDraw5PlayAll: I have done 1 or 2 team matches unofficially and we used the &quot;must eliminate both&quot;. I think we should put it to a vote, except that we would have an even number...\n\twil: Is there really such thing as a team match that once one is eliminated the solo player comes back to beat the other two??\n\tDraw5PlayAll: I think it is similar to the red ability: it is more of a deterrent to certain types of plans than a thing you actually use often.\r\n\r\nAlso, it might be that one of the players (nearly) sacrifices himself to take out a member of the other team, and quickly it becomes a 1v1.\r\n\r\nThen again, probably we should play it your way just because last time we did it mine and it is &quot;only fair&quot;.\r\n\r\nI&#39;ll alert the crew.\n\n\nHomeworlds Online (SDG# 33297)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.7, Ended: 2017.10.15\nParticipants: wil (S), Remneb (N)\nWinner: wil\n\n1) Remneb: Homeworld B1 R3 G3\n\n2) wil: H B2 Y1 G3\n\n3) Remneb: Build G1 Remneb\n\n4) wil: B G1 Wil\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) wil: T G1 B1 Wil\n\n7) Remneb: Trade Y1 B1 Remneb\n\n8) wil: B B2 Wil\n\n9) Remneb: Build G1 Remneb\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Remneb: Trade G1 Y1 Remneb\n\n12) wil: T B2 Y2 Wil\n\n13) Remneb: Discover B1 Remneb G2 Bronx\n\twil: Tis a tourney game!\n\n14) wil: M B1 Y3 Bronx\n\tRemneb: Trying to protect my blue star. I&#39;ve lost it several times in the other games.\n\n15) Remneb: Build B2 Bronx\n\twil: I couldn&#39;t hear you so well, thought I&#39;d come for a visit\n\n16) wil: B B2 Bronx\nC Bronx B\n\n17) Remneb: Build G1 Remneb\n\n18) wil: B G1 Wil\n\n19) Remneb: Trade G1 B1 Remneb\n\twil: Funny early reset button.\n\tRemneb: Yes.\n\n20) wil: T G1 B1 Wil\n\n21) Remneb: Discover B1 Remneb G2 King\n\n22) wil: B B2 Wil\n\n23) Remneb: Build B2 King\n\n24) wil: T B1 R1 Wil\n\n25) Remneb: Build G1 Remneb\n\n26) wil: B B1 Wil\n\n27) Remneb: Sacrifice Y1 Remneb\nDiscover B2 King Y3 Kong\n\n28) wil: M B2 Wil Kong\n\n29) Remneb: Discover B2 Kong Y2 Hydra\n\n30) wil: M B2 Kong King\n\n31) Remneb: Build B3 King\n\n32) wil: B B3 Wil\n\n33) Remneb: Trade B3 R3 King\n\n34) wil: D B3 Wil G3 G3\n\n35) Remneb: Attack B2 King\n\n36) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB R1 Wil\n\n37) Remneb: Trade G1 Y1 Remneb\n\n38) wil: M Y2 Wil G3\n\n39) Remneb: Trade B2 Y2 King\n\n40) wil: T B3 G3 Wil\n\n41) Remneb: Build B2 King\n\n42) wil: T B3 Y3 G3\n\n43) Remneb: Sacrifice G3 Remneb\nBuild Y1 King\nBuild Y3 Remneb\nBuild B3 Hydra\n\n44) wil: B B3 G3\n\n45) Remneb: Trade B2 R2 Hydra\n\n46) wil: T B3 R3 G3\n\n47) Remneb: Discover B1 King Y3 Trump\n\n48) wil: D Y3 G3 G2 G2\n\n49) Remneb: Move B2 King Trump\n\n50) wil: D B1 Wil G3 Gee3\n\n51) Remneb: Build R1 King\n\n52) wil: D Y2 G3 R2 R2\n\n53) Remneb: Move B1 Trump King\n\n54) wil: M Y3 G2 Remneb\n\n55) Remneb: Sacrifice Y1 Remneb\nMove R3 King Remneb\n\twil: It is like a yellow family reunion\n\n56) wil: S R3 G3\nA R3 Remneb\nA Y3 Remneb\nP\n\twil: I almost didn&#39;t see that opportunity... Gg!\n\tRemneb: Thanks for the game\n\n\nHomeworlds Online (SDG# 33298)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.7, Ended: 2017.11.14\nParticipants: wil (S), jeep (N)\nWinner: wil\n\n1) jeep: Homeworld B1 Y2 G3\n\tjeep: This probably puts me over my capacity for reasonable playing, but you are likely to crush me fast. ;)\n\n2) wil: H B3 Y1 G3\n\n3) jeep: Build G1 Jeep\n\n4) wil: B G1 Wil\n\n5) jeep: Trade G1 B1 Jeep\n\twil: I&#39;ll stop it and you can challenge me when available\n\twil: Holler I&#39;ll.check with babamots...don&#39;t wanna spoil the tourney\n\tBabamots: If you can&#39;t play this many games at once, you can pause the game timer by clicking the &quot;Call an Admin&quot; link at the top (I&#39;ve never seen a site administrator actually respond, so pausing the tier is all it does). I didn&#39;t put anything about this in the rules, so I think it&#39;s OK as long as you don&#39;t pause all your games and slow down the tournament :-).\n\twil: I am noe in half a dozen games and just got to play 3 or 4 of them back and fourth turn after turn for 20-30 minutes...it was glorious.\n\tjeep: I&#39;m okay with playing this. One of my others is a losing battle, so doesn&#39;t take much time.\n\n6) wil: T G1 B1 Wil\n\n7) jeep: Build B2 Jeep\n\n8) wil: B B2 Wil\n\n9) jeep: Discover B1 Jeep G3 Grower\n\n10) wil: D B1 Wil Y2 Y2\n\n11) jeep: Sacrifice G3 Jeep\nBuild B2 Grower\nBuild B3 Jeep\nBuild B3 Grower\n\tjeep: Yeah, didn&#39;t think ahead... \n\n12) wil: M B1 Y2 Grower\nC Grower B\n\twil: You didn&#39;t have to pull the trigger.\n\n13) jeep: Trade B3 G3 Jeep\n\tjeep: Really? Hmm... I&#39;ll review it again later. I felt like I got further behind in all other moves I considered.\n\n14) wil: B B1 Wil\n\twil: Well we is definitely tied up...I only gained one step.\n\n15) jeep: Build B1 Jeep\n\n16) wil: T B1 Y1 Wil\n\n17) jeep: Trade B2 Y2 Jeep\n\n18) wil: B G1 Wil\n\n19) jeep: Build G1 Jeep\n\n20) wil: T G1 R1 Wil\n\n21) jeep: Trade G1 R1 Jeep\n\tjeep: How does it go? If your opponent gets a weapon, you better get one too?\n\n22) wil: B G1 Wil\n\n23) jeep: Build G1 Jeep\n\twil: Just to keep the peace.\n\n24) wil: D G1 Wil B2 B2\n\n25) jeep: Discover G1 Jeep B3 Changer\n\n26) wil: B G1 B2\n\n27) jeep: Build G2 Jeep\n\n28) wil: B G2 Wil\n\n29) jeep: Sacrifice G3 Jeep\nBuild G2 Changer\nBuild G3 Changer\nBuild G3 Jeep\n\tjeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.\n\twil: Of course, and sorry you need to drop out...but literally, challenge me anytime!\n\n30) wil: S Y1 Wil\nM G1 B2 Changer\nC Changer G\n\n31) jeep: Build Y1 Jeep\n\n32) wil: T G2 Y2 Wil\n\n\nHomeworlds Online (SDG# 33306)\nVariants: &quot;Hard time&quot;\nStarted: 2017.10.9, Ended: 2017.11.16\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld B1 R3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Felix: Trade B1 Y1 Felix\n\n11) wil: D B1 Y3 Y2 Y2\n\n12) Felix: Build Y1 Felix\n\n13) wil: B B1 Wil\n\n14) Felix: Discover B2 Felix G2 Out\n\n15) wil: D B1 Wil Y3 Y3\n\n16) Felix: Discover Y1 Felix Y2 Crumpet\n\n17) wil: S G3 Wil\nB B3 Wil\nB B3 Y3\nB B3 Y2\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Crumpet\nBuild Y3 Felix\nBuild Y3 Felix\n\n19) wil: T B2 R2 Wil\n\n20) Felix: Trade Y1 R1 Felix\n\n21) wil: T B1 Y1 Y3 Y3\n\n22) Felix: Move Y1 Crumpet Y3\n\n23) wil: T B3 G3 Y2\n\n24) Felix: Trade Y3 G3 Felix\n\n25) wil: D B1 Y2 Y3 Why3\n\n26) Felix: Move Y2 Crumpet Y3\nCatastrophe Y3 Y\n\n27) wil: B G1 Y2\n\n28) Felix: Build B1 Out\n\n29) wil: M G1 Y2 Why3\n\n30) Felix: Trade B1 Y1 Out\n\n31) wil: Build B1 Why3\n\n32) Felix: Build B2 Out\n\n33) wil: M B1 Why3 Out\n\n34) Felix: Trade B2 R2 Out\n\n35) wil: B B2 Out\n\n36) Felix: Attack B2 Out\n\n37) wil: S G3 Y2\nB B3 Why3\nB B3 Out\nC Out B\nB B1 Why3\n\n38) Felix: Build Y1 Out\n\n39) wil: T B3 G3 Why3\n\n40) Felix: Build Y2 Felix\n\n41) wil: D B1 Why3 G2 G2\n\n42) Felix: Move Y2 Felix G2\n\n43) wil: S G3 Why3\nB B2 Why3\nB B2 Wil\nB B3 G2\n\n44) Felix: Sacrifice R1 Felix\nAttack B1 G2\n\n45) wil: Sacrifice B2 Why3\nTrade B3 R3 G2\nTrade B3 G3 Wil\n\n46) Felix: Sacrifice Y2 G2\nMove B1 G2 Felix\nMove B1 Felix Out\n\n47) wil: Trade B2 Y2 Wil\n\n48) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y2 Felix\nBuild Y3 Out\n\n49) wil: D Y2 Wil B3 B3\n\n50) Felix: Sacrifice Y2 Felix\nMove Y3 Out B3\nMove R2 Out Why3\n\n51) wil: M Y2 B3 G2\n\twil: Nice\n\n52) Felix: Attack B1 Why3\n\n53) wil: B Y2 G2\n\n54) Felix: Trade Y2 G2 Felix\n\tFelix: Thank you! I&#39;m *trying* to focus a little more before I make moves in this game.\n\n55) wil: M R3 G2 Why3\n\n56) Felix: Sacrifice G2 Felix\nBuild R1 Why3\nBuild R1 Why3\nCatastrophe Why3 Red\n\n57) wil: M Y2 G2 Why3\n\twil: Stop that focusing.. It just isn&#39;t fair.\n\n58) Felix: Move Y1 Out Why3\n\tFelix: I&#39;m making increasingly worse decisions, so I must have stopped focusing :P\n\twil: I am proud of you.\n\n59) wil: B Y2 G2\n\n60) Felix: Discover B1 Why3 G2 Ichor\n\n61) wil: M Y2 Why3 Out\n\n62) Felix: Trade B1 R1 Ichor\n\n63) wil: B R1 Wil\n\n64) Felix: Discover B1 Out G3 In\n\n65) wil: Sacrifice R2 Wil\nAttack Y1 Out\nAttack Y1 Why3\n\n66) Felix: B B1 In\n\twil: I blew that opportunity\n\n67) wil: Move Y1 Out Felix\n\tFelix: And I blew my yellow monopoly, big time.\n\n68) Felix: Trade Y3 G3 Felix\n\twil: I do believe that is correct.\n\n69) wil: Build Y3 G2\n\n70) Felix: Attack Y1 Felix\n\n71) wil: M Y1 Why3 Ichor\n\n72) Felix: Attack Y1 Ichor\n\n73) wil: S Y2 G2\nM Y3 G2 In\nD Y2 G2 B3 Be3\n\n74) Felix: Build Y2 Ichor\n\n75) wil: S G1 Why3\nB Y3 Be3\n\n76) Felix: Move Y1 Ichor In\n\twil: Oops\n\n77) wil: T Y2 R2 Be3\n\n78) Felix: Sacrifice Y1 In\nMove B1 In Ichor\n\n79) wil: S R1 Wil\nA B1 In\n\n80) Felix: Build B2 Ichor\n\n81) wil: B B2 In\n\n82) Felix: Move B1 Ichor In\n\n83) wil: T B2 R2 In\n\n84) Felix: Build B2 In\n\n85) wil: Build B3 In\nCatastrophe In B\n\n86) Felix: Move Y3 B3 Ichor\n\n87) wil: Build G1 Wil\n\n88) Felix: Build B1 Ichor\n\n89) wil: T G1 B1 Wil\n\n90) Felix: Discover B1 Ichor B3 Gym\n\n91) wil: Move B1 Wil In\n\n92) Felix: Build R1 Ichor\n\n93) wil: B G1 Wil\n\n94) Felix: Trade B1 G1 Gym\n\n95) wil: T G1 R1 Wil\n\n96) Felix: Move R1 Ichor Gym\n\tFelix: Phew! Just made it.\n\twil: Lol, words used by one running down the airport and into a men&#39;s room stall...\n\twil: I just made an r1.\n\n97) wil: B G1 Wil\n\n98) Felix: Build R2 Gym\n\tFelix: Hahahaha, it does indeed! Very crude :P\n\n99) wil: B R3 In\n\n100) Felix: Build R3 Ichor\n\n101) wil: M R3 In Out\n\n102) Felix: Build G1 Gym\n\n103) wil: T G1 B1 Wil\n\n104) Felix: Build G1 Gym\n\n105) wil: D R2 Be3 G2 G2\n\n106) Felix: Sacrifice Y2 Ichor\nMove G1 Gym Wil\nMove G1 Gym Wil\n\n107) wil: M Y3 In Wil\n\n108) Felix: Sacrifice R2 Gym\nAttack B1 Wil\nAttack R1 Wil\n\n109) wil: Sacrifice R2 G2\nAttack R1 Wil\nAttack B1 Wil\n\n110) Felix: Build G2 Wil\nCatastrophe Wil Green\n\n111) wil: Build R2 Out\n\n\n\n\n112) Felix: Build R2 Gym\n\n113) wil: Sacrifice Y2 Out\nMove B1 Wil In\nDiscover B1 In G2 G2\n\n114) Felix: Build G1 Felix\n\n115) wil: Build B2 In\n\n116) Felix: Sacrifice G3 Felix\nBuild G1 Gym\nBuild G3 Felix\nBuild B3 Ichor\n\n117) wil: Trade B2 Y2 In\n\n118) Felix: Move B3 Ichor In\n\n119) wil: Sacrifice Y2 In\nMove B1 In Out\nMove R2 In G2\n\n120) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Gym\nBuild B2 In\n\n121) wil: Move Y3 Be3 G2\n\n122) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 Ichor\nBuild Y1 Ichor\n\n123) wil: Build Y2 G2\n\twil: Hey, we were just spending a little time squatting at your in(n)... if you wanted us to leave you just had to say so...no need to chase us out!\r\n\n\n124) Felix: Move Y1 Ichor Gym\n\tFelix: Hehehe, I know what you&#39;re doing, and it will probably work.\n\n125) wil: Move R2 G2 Felix\n\n126) Felix: Build Y2 Gym\n\n127) wil: Attack Y1 Felix\n\n128) Felix: Sacrifice Y3 Ichor\nMove Y1 Gym Wil\nMove Y2 Gym Wil\nCatastrophe Wil Yellow\nMove G3 Gym Wil\n\n\twil: like i said\n\twil: nice\n\tFelix: Good game! I honestly thought it wasn&#39;t going so well for me until about 5 turns ago.\n\nHomeworlds Online (SDG# 33227)\nVariants: &quot;Unrated&quot;\nStarted: 2017.10.12, Ended: 2017.12.11\nParticipants: wil (S), Ottia (N)\nWinner: wil\n\n1) Ottia: Homeworld G3 B2 Y3\n\n2) wil: H Y2 B1 G3\n\tOttia: Thanks for agreeing to another one, Wil! I will pay more attention this time around and not commit suicide (!).\n\tOttia: (you deserve a worthy opponent, obviously)\n\n3) Ottia: Build Y1 Ottia\n\n4) wil: B G1 Wil\n\n5) Ottia: Discover Y1 Ottia B1 Smurf\n\n6) wil: Trade G1 Y1 Wil\n\n7) Ottia: Build Y1 Ottia\n\n8) wil: B Y2 Wil\n\n9) Ottia: Build Y2 Ottia\n\n10) wil: D Y1 Wil Y3 Y3\n\n11) Ottia: Trade Y3 G3 Ottia\n\n12) wil: D Y1 Y3 G2 G2\n\n13) Ottia: Trade Y1 G1 Ottia\n\n14) wil: Build G1 Wil\n\n15) Ottia: Move G1 Ottia Smurf\n\twil: I didn&#39;t notice you had green in your homeworld...tempting a catastrophe..\n\tOttia: I know... (thanks for the remark i.e. taking care of me not committing suicide again)\n\n16) wil: T G1 R1 Wil\n\n17) Ottia: Build Y1 Ottia\n\n18) wil: B Y3 G2\n\n19) Ottia: Discover Y1 Smurf Y3 Yellowbrickroad\n\n20) wil: M Y3 G2 Smurf\n\n21) Ottia: Trade Y2 R2 Ottia\n\n22) wil: B R1 Wil\n\n23) Ottia: Build R1 Ottia\n\n24) wil: S R1 Wil\nA G1 Smurf\n\n25) Ottia: Move R2 Ottia Smurf\n\n26) wil: Sacrifice R1 Wil\nAttack R2 Smurf\n\n27) Ottia: Build Y2 Ottia\n\twil: We welcome your new ship to the colony we like what you&#39;ve done with the place\n\n28) wil: Build Y3 G2\n\tOttia: Ahem EXTERMINATE EXTERMINATE EXTERMINATE\n\n29) Ottia: Trade Y2 R2 Ottia\n\n30) wil: Build R1 Smurf\n\n31) Ottia: Build Y2 Ottia\n\tOttia: build y2 Ottia\n\n32) wil: B G1 Wil\n\tOttia: I SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\n(...)\n\tOttia: I SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\n(...)\n\n33) Ottia: Discover R2 Ottia G1 Cabbage\n\n34) wil: S G3 Wil\nB G2 Smurf\nB G2 Smurf\nB G3 Wil\n\n35) Ottia: Move G3 Ottia Smurf\nCatastrophe Smurf G\n\n36) wil: M Y3 Smurf Ottia\n\n37) Ottia: Move Y2 Ottia Cabbage\n\tOttia: I&#39;m sorry for taking so long to move... things are very busy at the moment for me. I hope I can respond a bit faster from now on.\n\twil: No worries.. Life trumps games\n\n38) wil: Sacrifice R2 Smurf\nAttack Y1 Ottia\nAttack R1 Ottia\n\n\twil: good game!  Challenge me anytime\n\nHomeworlds Online (SDG# 33339)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.16, Ended: 2017.12.5\nParticipants: bhorner (S), ts52 (N)\nWinner: bhorner\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) bhorner: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\tbhorner: You too, and just to be clear, this is for the Great Homeworlds Tournament organized by Babamots.  :)\n\n3) ts52: Build G1 Ts52\n\tts52: Yes, got that from the challenge details. But that&#39;s for making sure it was clear.\n\n4) bhorner: B G1 Bhorner\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) ts52: Build G1 Ts52\n\n8) bhorner: B Y1 Bhorner\n\n9) ts52: Build G1 Ts52\n\n10) bhorner: B G2 Bhorner\n\n11) ts52: B G2 Gonzo\n\n12) bhorner: Build Y2 Bhorner\n\n13) ts52: Trade G2 Y2 Gonzo\n\n14) bhorner: Discover G2 Bhorner B2 Bloop\n\n15) ts52: Trade G1 R1 Ts52\n\n16) bhorner: Trade Y1 R1 Bhorner\n\n17) ts52: Build R2 Ts52\n\n18) bhorner: Build R2 Bhorner\n\n19) ts52: Move R1 Ts52 Gonzo\n\n20) bhorner: Move R2 Bhorner Bloop\n\n21) ts52: Trade G1 B1 Ts52\n\n22) bhorner: Move Y1 Bhorner Bloop\n\n23) ts52: Build G1 Ts52\n\n24) bhorner: B Y1 Bloop\n\n25) ts52: Build B1 Ts52\n\n26) bhorner: Trade Y1 B1 Bloop\n\n27) ts52: Discover B1 Ts52 Y3 Bigbird\n\n28) bhorner: Build Y1 Bloop\n\n29) ts52: Move R2 Ts52 Bigbird\n\n30) bhorner: Discover Y1 Bloop B3 Grover\n\n31) ts52: Move G1 Ts52 Bigbird\n\n32) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Bloop\nBuild Y3 Bhorner\nBuild Y3 Grover\n\n33) ts52: Build B2 Bigbird\n\n34) bhorner: D B1 Bloop R3 Xmas\n\n35) ts52: Discover B2 Bigbird G2 Kermit\n\tbhorner: Woops, not a good name.  :)\n\n36) bhorner: D Y1 Grover G2 Branch\n\n37) ts52: Build G1 Bigbird\n\n38) bhorner: Build G3 Bloop\n\n39) ts52: Build G3 Ts52\n\n40) bhorner: Move G2 Bloop Grover\n\n41) ts52: Move G3 Ts52 Xmas\n\n42) bhorner: Move Y3 Grover Kermit\n\n43) ts52: Move R2 Bigbird Branch\n\n44) bhorner: D Y1 Branch R3 War\n\n45) ts52: Sacrifice G3 Xmas\nBuild G3 Gonzo\nBuild R2 Branch\nBuild R3 Gonzo\n\n46) bhorner: Sacrifice R1 Bhorner\nAttack B2 Kermit\n\n47) ts52: Move R3 Gonzo Ts52\n\n48) bhorner: Sacrifice Y3 Kermit\nMove B2 Kermit Xmas\nMove B1 Xmas Ts52\nMove B2 Xmas Ts52\nCatastrophe Ts52 B\n\n49) ts52: Sacrifice G3 Gonzo\nBuild G2 Ts52\nBuild G3 Gonzo\nBuild Y3 Gonzo\n\n50) bhorner: Sacrifice Y3 Bhorner\nMove Y1 War Ts52\nMove Y1 Bloop Ts52\nMove Y2 Bloop Ts52\nCatastrophe Ts52 Y\n\tts52: Well played sir. Excellent game.\n\tbhorner: It was, we cleaned out the entire bank.  :)\n\n\nHomeworlds Online (SDG# 33340)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.16, Ended: 2017.10.21\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\tBabamots: Good luck! Will you record the game for the tournament?\n\n2) wil: H B3 Y1 G3\n\twil: As initiator that is my job right?  Gonna try to get my games knocked out...  \n\n3) Babamots: Build G1 Babamots\n\tBabamots: Right, since you issued the challenge, the rules ask you to record the results. It doesn&#39;t really matter who does it, but giving the job to the challenger helps to prevent duplication.\n\n4) wil: Build G1 Wil\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) wil: T G1 Y1 Wil\n\n7) Babamots: Build Y2 Babamots\n\n8) wil: B Y2 Wil\n\n9) Babamots: Discover Y1 Babamots G3 Tellar\n\n10) wil: D Y1 Wil G2 G2\n\n11) Babamots: Build Y3 Tellar\n\twil: The copycat start....\n\n12) wil: B Y3 G2\n\n13) Babamots: Discover Y1 Tellar B2 Andor\n\n14) wil: D Y3 G2 Y3 Y3\n\n15) Babamots: Trade Y2 R2 Babamots\n\twil: Prepped for round two\n\n16) wil: T Y2 R2 Wil\n\n17) Babamots: Build Y2 Tellar\n\n18) wil: B Y2 G2\n\twil: Why did my dang thumbs type b??\n\n19) Babamots: Build R1 Babamots\n\n20) wil: B R1 Wil\n\n21) Babamots: Move Y3 Tellar G2\n\n22) wil: S Y1 G2\nD Y2 G2 R3 R3\n\n23) Babamots: Build Y1 G2\n\n24) wil: M R2 Wil Andor\n\n25) Babamots: Sacrifice Y2 Tellar\nMove Y1 Andor Y3\nMove Y1 G2 Y3\nCatastrophe Y3 Y\n\n26) wil: B R1 Wil\n\n27) Babamots: Discover R1 Babamots B3 Kronos\n\n28) wil: Trade R1 B1 Wil\n\n29) Babamots: Move Y3 G2 R3\n\n30) wil: D Y2 R3 G2 G2\n\tBabamots: I need to stay busy today, so I won&#39;t be moving so much as yesterday.\n\twil: No worries, play at your own pace.\n\n31) Babamots: Move Y3 R3 Andor\n\n32) wil: T R2 B2 Andor\n\n33) Babamots: Sacrifice R1 Kronos\nAttack B2S Andor\n\n34) wil: M B1 Wil G2\n\n35) Babamots: Discover B2 Andor G1 Vulcan\n\n36) wil: B R1 Wil\n\n37) Babamots: Build G1 Babamots\n\n38) wil: T R1 B1 Wil\n\n39) Babamots: Discover G1 Babamots B3 Orion\n\n40) wil: Build R1 Wil\n\n41) Babamots: Build G1 Babamots\n\n42) wil: Build G2 Wil\n\n43) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G3 Orion\nBuild G3 Babamots\n\n44) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 G2\nBuild G3 Wil\n\n45) Babamots: Sacrifice Y3 Andor\nDiscover G3 Orion B2 Andor\nMove G2 Babamots Orion\nMove B2 Vulcan G2\nCatastrophe G2 B\n\n46) wil: Build B1 Wil\n\n47) Babamots: Trade G2 Y2 Orion\n\n48) wil: Move B1 Wil G2\n\n49) Babamots: Sacrifice G3 Babamots\nBuild G1 Andor\nBuild G2 Orion\nBuild G3 Babamots\n\n50) wil: S G3 Wil\nB G3 Wil\nB B2 G2\nB Y1 G2\n\n51) Babamots: Trade G3 B3 Andor\n\n52) wil: M B1 Wil Andor\n\n53) Babamots: Trade B3 Y3 Andor\n\n54) wil: D B1 G2 G3 G3\n\n55) Babamots: Sacrifice Y3 Andor\nMove G1 Andor Wil\nMove G1 Orion Andor\nMove G1 Andor Wil\nCatastrophe Wil G\n\n56) wil: M Y1 G2 G3\n\n57) Babamots: Sacrifice Y2 Orion\nMove G2 Orion Andor\nMove G2 Andor Wil\n\twil: Nice\n\n\tBabamots: Red alert :)\n\tBabamots: Thanks for moving so often. I&#39;ve really enjoyed this game.\n\twil: Nice\n\tBabamots: Good game! Will you record the result for the tournament?\n\tBabamots: Nevermind, I went ahead and filled out the form. Thanks again!\n\twil: oops,thx\n\nHomeworlds Online (SDG# 33343)\nStarted: 2017.10.16, Ended: 2017.10.16\nParticipants: Nupanick (S), Laroka (N)\nWinner: Nupanick\n\n1) Laroka: Homeworld B3 Y1 G3\n\n2) Nupanick: Homeworld R3 G2 B3\n\n3) Laroka: Build G1 Laroka\n\tNupanick: I&#39;m gonna try something different from my normal opening, see how this goes.\n\n4) Nupanick: Build B1 Nupanick\n\n5) Laroka: Trade G1 B1 Laroka\n\n6) Nupanick: Trade B1 Y1 Nupanick\n\n7) Laroka: Build G1 Laroka\n\n8) Nupanick: Build B1 Nupanick\n\n9) Laroka: Trade G1 R1 Laroka\n\n10) Nupanick: Build Y1 Nupanick\n\n11) Laroka: Build G1 Laroka\n\n12) Nupanick: Build Y2 Nupanick\n\n13) Laroka: Sacrifice G3 Laroka\nBuild B1 Laroka\nBuild B2 Laroka\nBuild G1 Laroka\n\n14) Nupanick: Trade Y2 R2 Nupanick\nCatastrophe Laroka Blue\n\n\nHomeworlds Online (SDG# 33344)\nStarted: 2017.10.16, Ended: 2017.10.16\nParticipants: Nupanick (S), Laroka (N)\nWinner: Nupanick\n\n1) Laroka: Homeworld B3 Y2 G3\n\n2) Nupanick: Homeworld R3 G1 B3\n\n3) Laroka: Build G1 Laroka\n\n4) Nupanick: Build B1 Nupanick\n\n5) Laroka: Trade G1 B1 Laroka\n\n6) Nupanick: Trade B1 Y1 Nupanick\n\n7) Laroka: Build G1 Laroka\n\n8) Nupanick: Build Y1 Nupanick\n\n9) Laroka: Trade G1 R1 Laroka\n\n10) Nupanick: Build Y1 Nupanick\n\n11) Laroka: Build R1 Laroka\n\n12) Nupanick: Build B1 Nupanick\n\n13) Laroka: Discover R1 Laroka B1 Boobies\n\n14) Nupanick: Discover Y1 Nupanick G2 Ahegao\n\n15) Laroka: Build B2 Laroka\n\n16) Nupanick: Build B2 Nupanick\n\tNupanick: PFFT.\n\n17) Laroka: Trade B2 Y2 Laroka\n\n18) Nupanick: Move B2 Nupanick Ahegao\n\n19) Laroka: Build B2 Laroka\n\n20) Nupanick: Build B2 Nupanick\n\n21) Laroka: Trade B2 R2 Laroka\n\n22) Nupanick: Trade B2 R2 Ahegao\n\n23) Laroka: Build G1 Laroka\n\n24) Nupanick: Move B2 Nupanick Ahegao\n\n25) Laroka: Move R2 Laroka Boobies\n\n26) Nupanick: Build B2 Ahegao\n\n27) Laroka: Move G1 Laroka Boobies\n\n28) Nupanick: Sacrifice Y1 Nupanick\nDiscover B2 Ahegao Y1 Paizuri\n\n29) Laroka: Build G1 Boobies\n\n30) Nupanick: Build Y2 Nupanick\n\n31) Laroka: Move Y2 Laroka Boobies\n\n32) Nupanick: Build Y3 Ahegao\n\n33) Laroka: Build G2 Laroka\n\n34) Nupanick: Move Y3 Ahegao Boobies\n\n35) Laroka: Build Y3 Boobies\n\n36) Nupanick: Sacrifice R2 Ahegao\nAttack R2 Boobies\nAttack Y3 Boobies\n\n37) Laroka: Sacrifice R1 Boobies\nAttack R2 Boobies\n\n38) Nupanick: Trade Y3 R3 Boobies\n\n39) Laroka: Move Y2 Boobies Laroka\n\n40) Nupanick: Build Y3 Ahegao\n\n41) Laroka: Trade G3 R3 Laroka\n\n42) Nupanick: Attack R2 Boobies\n\n43) Laroka: Build G2 Laroka\n\n44) Nupanick: Attack G1 Boobies\n\n45) Laroka: Trade G2 B2 Laroka\n\n46) Nupanick: Sacrifice Y3 Ahegao\nMove R2 Boobies Laroka\nMove R3 Boobies Laroka\nMove Y3 Boobies Laroka\nCatastrophe Laroka Red\n\n47) Laroka: Trade B2 R2 Laroka\n\n48) Nupanick: Trade Y3 R3 Laroka\n\n49) Laroka: Build G2 Boobies\n\n50) Nupanick: Attack R2 Laroka\n\n51) Laroka: Trade G1 R1 Boobies\n\n52) Nupanick: Sacrifice R3 Laroka\nAttack Y2 Laroka\nAttack B1 Laroka\nAttack G2 Laroka\n\n\nHomeworlds Online (SDG# 33345)\nStarted: 2017.10.16, Ended: 2017.10.17\nParticipants: Laroka (S), Nupanick (N)\nWinner: Nupanick\n\n1) Nupanick: Homeworld R3 G2 B3\n\n2) Laroka: Homeworld R3 B2 G3\n\n3) Nupanick: Build B1 Nupanick\n\n4) Laroka: Build G1 Laroka\n\n5) Nupanick: Trade B1 Y1 Nupanick\n\n6) Laroka: Trade G1 Y1 Laroka\n\n7) Nupanick: Build B1 Nupanick\n\n8) Laroka: Build G1 Laroka\n\n9) Nupanick: Discover B1 Nupanick Y1 Altair\n\n10) Laroka: Trade G1 R1 Laroka\n\n11) Nupanick: Build Y2 Nupanick\n\n12) Laroka: Build G1 Laroka\n\n13) Nupanick: Build Y2 Nupanick\n\n14) Laroka: Move G3 Laroka Altair\n\n15) Nupanick: Discover B1 Altair G2 Betelgeuse\n\n16) Laroka: Build G1 Laroka\n\n17) Nupanick: Trade Y1 G1 Nupanick Nupanick\n\n18) Laroka: Trade G1 B1 Laroka\n\n19) Nupanick: Discover Y2 Nupanick R1 Castor\n\n20) Laroka: Move B1 Laroka Altair\n\n21) Nupanick: Move Y2 Castor Laroka\n\n22) Laroka: Move G3 Altair Laroka\n\n23) Nupanick: Sacrifice Y2 Laroka\nMove Y2 Nupanick Altair\nMove Y2 Altair Betelgeuse\n\n24) Laroka: Move G1 Laroka Altair\n\n25) Nupanick: Trade G1 Y1 Nupanick\n\n26) Laroka: Build Y2 Laroka\n\n27) Nupanick: Build Y2 Nupanick\n\n28) Laroka: Move Y2 Laroka Altair\n\n29) Nupanick: Build Y3 Betelgeuse\n\n30) Laroka: Sacrifice Y2 Altair\nMove G1 Altair Betelgeuse\nMove B1 Altair Betelgeuse\n\n31) Nupanick: Trade Y2 R2 Betelgeuse\n\n32) Laroka: Build G1 Laroka\n\n33) Nupanick: Attack G1 Betelgeuse\n\n34) Laroka: Discover G1 Laroka B1 Caprica\n\n35) Nupanick: Attack B1 Betelgeuse\n\n36) Laroka: Move G3 Laroka Caprica\n\n37) Nupanick: Sacrifice Y2 Nupanick\nMove Y3 Betelgeuse Caprica\nMove Y3 Caprica Laroka\n\n38) Laroka: Trade G1 Y1 Caprica\n\n39) Nupanick: Sacrifice R2 Betelgeuse\nAttack R1 Laroka\nAttack Y1 Laroka\n\n\nHomeworlds Online (SDG# 33347)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.17, Ended: 2017.11.15\nParticipants: bhorner (S), wil (N)\nWinner: bhorner\n\n1) wil: H B2 Y1 G3\n\twil: Lol tghwt eh?   I almost challenged you earlier today!\n\n2) bhorner: H R1 B2 G3\n\tbhorner: You were the only one available with an open slot to play.  :). I don&#39;t think I&#39;ve ever beat you (yet).\n\n3) wil: B G1 Wil\n\n4) bhorner: B G1 Bhorner\n\n5) wil: T G1 B1 Wil\n\tbhorner: I only meant that in a friendly way btw, you invited me to the tournament! :)  Good luck!\n\twil: No worries..may all mistakes be maximully capitalized on...\r\nBack we are short universe!!!!\n\twil: *ackk\n\twil: Is this what you wanted?  Did you record the start to this game?  I&#39;ll be glad to play it if we have too, but a lot of people don&#39;t like short uni and if it was unintentional...\n\tbhorner: It was intentional.  I was a little worried that it might be a big advantage to the first player, but I haven&#39;t done it... hardly ever, and wanted to get you away from what you are used to.  :)\n\tbhorner: I will record the challenge, thanks for the reminder.\n\twil: Lol, I like miniverse and microverse...totally game changers.\n\n6) bhorner: T G1 Y1 Bhorner\n\n7) wil: B B1 Wil\n\n8) bhorner: B Y1 Bhorner\n\n9) wil: D B1 Wil Y3 Y3\n\n10) bhorner: T Y1 B1 Bhorner\n\n11) wil: B G1 Wil\n\n12) bhorner: Build Y1 Bhorner\n\n13) wil: T G1 R1 Wil\n\n14) bhorner: Trade Y1 R1 Bhorner\n\n15) wil: B R2 Wil\n\n16) bhorner: Build Y1 Bhorner\n\n17) wil: T R2 Y2 Wil\n\n18) bhorner: Build Y2 Bhorner\n\n19) wil: D Y2 Wil G3 G3\n\n20) bhorner: Move Y1 Bhorner G3\n\twil: That wasn&#39;t the best move, but I think I just discovered something about this game layoutm\n\tbhorner: were you saying mine wasn&#39;t the best or yours?  That last move I made really had me in a bind, I learned a lot about this layout on my last move.  I figured you knew a lot about what was going on, and that was why I was in such a pinch.  I didn&#39;t think I had any other choices than what I did.\n\n21) wil: B R2 Wil\n\n22) bhorner: Build Y2 G3\n\twil: No, I was saying my move was not the best\n\tDraw5PlayAll: Discovered what? The ordering of stars?\n\tbhorner: No... more like yellow is much more important earlier, and if your opponent gets to a y2, you can have a max of 2 of any color in your homeworld.  There is a need to expand earlier, before trying to grow too much.\n\tbhorner: Sorry, my last message was posted thinking that wil had asked what I&#39;d discovered.  Please others, keep your comments to a minimum.\n\n23) wil: T R2 G2 Wil\n\twil: The peanut gallery is not to be heard... I believe we&#39;ve discussed this.\n\n24) bhorner: Sacrifice R1 Bhorner\nAttack Y2 G3\n\n25) wil: S G2 Wil\nB G1 Wil\nB B2 Y3\n\n26) bhorner: Move B1 Bhorner G3\n\n27) wil: B R1 Wil\n\tbhorner: Sorry for the long delay, busy week at work, lots of possibilities on both sides for this turn, and this game is important to me.  :)\n\n28) bhorner: Build Y3 Bhorner\n\twil: No worries.\n\n29) wil: S G1 Wil\nB B3 Y3\n\n30) bhorner: Sacrifice Y2 Bhorner\nMove B1 G3 Wil\nMove B1 Wil Y3\nCatastrophe Y3 Blue\n\n31) wil: B R2 Wil\n\n32) bhorner: Build Y2 Bhorner\n\n33) wil: M R2 Wil G3\n\twil: Yeah that was an oops\n\tbhorner: I will continue to try my hardest to avoid my own oops!  :)\n\n34) bhorner: Sacrifice Y3 Bhorner\nDiscover Y2 G3 B2 Bloop\nDiscover Y2 G3 G2 Branch\nDiscover Y1 G3 G2 Twig\n\n35) wil: D R1 Wil Y3 Y3\n\n36) bhorner: Sacrifice G3 Bhorner\nBuild Y3 Bhorner\nBuild Y3 Bloop\nPass\n\n37) wil: S G3 Wil\nB R2 Y3\nB R2 Y3\nB R3 Wil\n\n38) bhorner: Trade Y3 R3 Bloop\n\n39) wil: T R3 Y3 Wil\n\n40) bhorner: Sacrifice Y2 Bhorner\nMove Y1 Bhorner Y3\nMove Y1 Y3 Wil\n\n41) wil: A Y1 Wil\n\n42) bhorner: S Y2 Bloop\nM Y1 Twig Y3\nM Y1 Y3 Wil\nC Wil Y\n\n43) wil: M R2 Y3 Wil\n\n44) bhorner: T Y3 G3 Bhorner\n\tbhorner: Maybe I went for it too soon...\n\n45) wil: B R3 G3\n\twil: One could.only hope... But you got this.\n\n46) bhorner: B G1 Bhorner\n\n47) wil: T R2 Y2 Wil\n\n48) bhorner: Build Y1 Branch\n\n49) wil: S Y2 Wil\nM R3 G3 Wil\nM R2 G3 Branch\n\n50) bhorner: Sacrifice Y1 Branch\nDiscover Y2 Branch G1 Leaf\n\n51) wil: T R1 G1 Wil\n\n52) bhorner: Build G2 Bhorner\n\n53) wil: B G2 Wil\n\n54) bhorner: Trade G1 Y1 Bhorner\n\n55) wil: T G2 Y2 Wil\n\n56) bhorner: Trade R3 B3 Bloop\n\n57) wil: B G1 Wil\n\tbhorner: I think I&#39;ll undo every move from here on out  :)\n\n58) bhorner: Build Y1 Bhorner\n\n59) wil: D G1 Wil B3 B3\n\n60) bhorner: Trade Y1 B1 Bhorner\n\n61) wil: Build G2 Wil\n\n62) bhorner: Discover B1 Bhorner Y3 Sun\n\n63) wil: Build G3 B3\n\n64) bhorner: Sacrifice Y2 Leaf\nMove B3 Bloop Y3\nMove B3 Y3 Wil\n\n\twil: at least now it doesn&#39;t look so bad.\n\tbhorner: If I had moved the little blue to your home first, you could have sacrifices your y2 to move your b1 and another ship both to be blue starts, draining the bank, so I couldn&#39;t cat your blues.  Was that part of your plan?  It was razor thin, with all my infos to squirrel that one out!  The hardest game I&#39;ve ever played I think.  :)\n\twil: I made a few mistakes early...it was a good game... I appreciate the ability to use the undo even thou the tourney organizers frown upon it...the locking things in with a movement coin is necessary in my opinion...good game.\n\nHomeworlds Online (SDG# 33342)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.17, Ended: 2017.10.23\nParticipants: wil (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) wil: H B3 Y1 G3\n\n3) mneme: Build G1 Mneme\n\tmneme: Good luck, have fun!\r\n\r\nI&#39;ve been delaying this challenge until I had fewer simultaneous games, I&#39;ll admit, because you are the only person in the tournament whom I -know- has a good chance of beating me!\n\n4) wil: B G1 Wil\n\n5) mneme: Trade G1 Y1 Mneme\n\twil: Lol, one never knows.   I can be online for a bit till we slow down.\n\twil: But take as much time as you need... \n\n6) wil: T G1 Y1 Wil\n\tmneme: *nod*  I&#39;m at work, so that&#39;s some good some bad in terms of the online question; we&#39;ll see.\n\n7) mneme: Build Y2 Mneme\n\n8) wil: B Y2 Wil\n\tmneme: Hmm.  Not the way I&#39;d play it...that said, I thought you might.\n\n9) mneme: Discover Y1 Mneme B3 Melpomene\n\n10) wil: D Y1 Wil G2 G2\n\n11) mneme: Build G1 Mneme\n\n12) wil: B G1 Wil\n\n13) mneme: Move G1 Mneme Melpomene\n\n14) wil: T G1 R1 Wil\n\n15) mneme: Trade G1 R1 Melpomene\n\n16) wil: B R2 Wil\n\n17) mneme: Build G1 Mneme\n\n18) wil: M R2 Wil G2\n\n19) mneme: Sacrifice G1 Mneme\nBuild R2 Melpomene\n\n20) wil: B R2 Wil\n\n21) mneme: Sacrifice G3 Mneme\nBuild Y2 Melpomene\nBuild Y3 Mneme\nBuild R3 Melpomene\n\n22) wil: M R2 G2 Melpomene\nC Melpomene R\n\twil: Nice quandry... I can&#39;t think far enough ahead to determine if it is better to get the large ships...\n\n23) mneme: Trade Y2 G2 Mneme\n\n24) wil: M R2 Wil G2\n\tmneme: Thanks.  I was in a quandry myself, so it seemed worth the risk to set up a more complex situation.\n\n25) mneme: Trade Y1 R1 Melpomene\n\n26) wil: B R2 Wil\n\n27) mneme: Build G1 Mneme\n\n28) wil: D R2 Wil Y2 Y2\n\n29) mneme: Discover G1 Mneme Y3 Erato\n\n30) wil: B R2 G2\n\n31) mneme: Sacrifice G2 Mneme\nBuild Y1 Mneme\nBuild Y3 Melpomene\n\n32) wil: M R2 G2 Erato\n\n33) mneme: Sacrifice G1 Erato\nBuild R3 Melpomene\n\n34) wil: Build R3 Wil\n\n35) mneme: Trade R1 G1 Melpomene\n\twil: I have a short universe game going in the tourney...That is something I have to remember everytime I look at the games being played...is this the one?\n\n36) wil: Trade R3 B3 Wil\n\n37) mneme: Trade Y1 G1 Mneme\n\n38) wil: Build R1 G2\n\n39) mneme: Build R3 Melpomene\n\tmneme: I mostly just re-enalalyze each game as I get to it, since earlier inthe tournament I was in 4 games at a time much of the time.  But with shoejitsu playing fairly slowly, I&#39;ve mostly been able to give you my full attention.\n\tmneme: I should make a study of small and tiny universe games at some point.  I never have, largely because my intuiton reads them as a loss for player 2.  But since P2 starts the game on the attack if they don&#39;t simply start at disadvantage--so there are probably some openings where it&#39;s the right approach.\n\twil: Dang it...I&#39;d rather only get half of your intention.\n\twil: I am a shoot from the hip player...  I don&#39;t have the attention span to figure out everything.  Although playing various players I get to learn new moves from their analyzing.  I do notice if anyone can&#39;t see anyway out they tend to not want to make a move at all... a homeworlds metaphor.\n\n40) wil: B R3 Wil\n\tmneme: I&#39;m also pretty shoot from the hip, but I do build a vocabulary of principles and best practices.  One of the reasons I avoid small universe games is that they&#39;re unfamiliar to me.  The stakes for everything are higher and there&#39;s less room to safely develop, so it seems like any advantage or disadvantage or risk is going to be magnified.  I might be able to turn this to my advantage with practice, but I&#39;d need some time and losses to get the practice.\r\n\r\nI learned  -so- much from my first few TwoShort games.\n\twil: Yeah Ive started playing more unconventional games...just to learn them.\n\n41) mneme: Discover R3 Melpomene G2 Urania\n\n42) wil: B G1 Wil\n\n43) mneme: Trade Y3 G3 Melpomene\n\n44) wil: B B1 Wil\n\n45) mneme: Trade G1 B1 Melpomene\n\n46) wil: S Y2 Wil\nM B1 Wil Y2\nM G1 Wil Y2\n\n47) mneme: Move B1 Melpomene Urania\n\n48) wil: D B3 Wil G2 Gtwo\n\n49) mneme: Build B1 Urania\n\n50) wil: B B2 Y2\n\n51) mneme: Move G3 Melpomene Y2\n\n52) wil: M G1 Y2 Erato\n\n53) mneme: Sacrifice R3 Urania\nAttack B2 Y2\nAttack R2 Y2\nAttack B1 Y2\n\n54) wil: B R3 Erato\n\n55) mneme: Sacrifice G3 Y2\nBuild Y1 Melpomene\nBuild Y2 Mneme\nBuild Y3 Mneme\n\n56) wil: M R3 Wil Y2\n\n57) mneme: Move B2 Y2 Wil\n\n58) wil: A R2 Y2\n\n59) mneme: Sacrifice Y3 Mneme\nMove B1 Urania Wil\nMove B1 Y2 Wil\nCatastrophe Wil B\nDiscover Y2 Mneme G3 Nemesis\n\n60) wil: M R3 Erato Mneme\n\n61) mneme: Sacrifice Y3 Mneme\nMove Y2 Melpomene Wil\nMove Y1 Melpomene Wil\nMove Y2 Nemesis Wil\nCatastrophe Wil Y\n\n\twil: There...at least it will look like I tried in the final picture\n\tmneme: I don&#39;t think there was, after I grew Y.\n\tmneme: Good game!\n\twil: challenge me anytime... I need more losses!! (only way I learn)\n\tmneme: :)  I&#39;m pretty sure I&#39;ll face you at least once more in the tournament.  After that...we&#39;ll see!\r\n\n\nHomeworlds Online (SDG# 33341)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.18, Ended: 2017.11.21\nParticipants: wil (S), shoejitsu (N)\nWinner: wil\n\n1) shoejitsu: Homeworld R3 B1 G3\n\n2) wil: H B2 Y1 G3\n\n3) shoejitsu: Build G1 Shoejitsu\n\twil: Good luck, I will record the start of our tourney\n\tshoejitsu: good luck!\n\n4) wil: B G1 Wil\n\n5) shoejitsu: Build G1 Shoejitsu\n\n6) wil: T G1 B1 Wil\n\n7) shoejitsu: Trade G1 B1 Shoejitsu\n\n8) wil: B B2 Wil\n\n9) shoejitsu: Build G1 Shoejitsu\n\n10) wil: D B2 Wil Y3 Y3\n\n11) shoejitsu: Build B2 Shoejitsu\n\n12) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 Y3\nBuild B3 Y3\n\n13) shoejitsu: Trade G1 Y1 Shoejitsu\n\tshoejitsu: o my\n\n14) wil: Sacrifice B2 Y3\nTrade B3 G3 Wil\nTrade B3 G3 Y3\n\n15) shoejitsu: Discover B2 Shoejitsu G2 Mix\n\twil: We retain the right to change our mind and our ships...took a break to retrofit.\n\n16) wil: B G1 Wil\n\n17) shoejitsu: Build Y1 Shoejitsu\n\n18) wil: T B1 R1 Wil\n\n19) shoejitsu: Trade Y1 R1 Shoejitsu\n\n20) wil: T G1 Y1 Wil\n\n21) shoejitsu: Move R1 Shoejitsu Mix\n\twil: Ya let me into the oil fields.,\n\n22) wil: B Y2 Wil\n\tshoejitsu: yeah.. probably could have traded the b1 away, oh well\n\n23) shoejitsu: Build Y2 Shoejitsu\n\tBabamots: I noticed that this game didn&#39;t get recorded for the tournament. Would you like to do that, wil?\n\n24) wil: D Y1 Wil B3 B3\n\twil: Oops\n\n25) shoejitsu: Move Y1 Shoejitsu Mix\n\tBabamots: I went ahead and started the tournament record of the game. Someone will just need to record the result at the end.\n\tMagicJohn: Yo, Babs........ Sorry I did not respond in the Wiz Garden Game but my wife is quite ill and I&#39;m taking some time off gaming. Maybe catch you later...   Magic John\n\n26) wil: D Y2 Wil B3 Be3\n\tshoejitsu: thanks babamots! one of us will take care of it\n\twil: Take care of her and yourself magic...\n\n27) shoejitsu: Discover B2 Mix Y3 It\n\n28) wil: M B3 Y3 Mix\n\n29) shoejitsu: Build Y2 Shoejitsu\n\n30) wil: S G3 Y3\nB G1 Wil\nB Y3 B3\nB Y3 Be3\n\tshoejitsu: this game man... you people amaze me sometimes XD\n\n31) shoejitsu: Trade B2 G2 It\n\twil: These games are never the Same.and always interesting...\n\n32) wil: S R1 Wil\nA R1 Mix\n\tshoejitsu: definitely. the hardest part of this game for me is probably mid game when trying to hone in on an end game strategy\n\n33) shoejitsu: Sacrifice G2 It\nBuild Y3 Mix\nBuild G1 Shoejitsu\n\twil: Begin with the end in mind.\n\n34) wil: A Y3 Mix\n\n35) shoejitsu: Move Y1 Mix B3\n\tshoejitsu: oops... guess i put that y3 in the wrong spot huh :D\n\n36) wil: T Y3 R3 B3\n\twil: My bad, I shoulda.thanked you for the big transport.ship and crew.\n\n37) shoejitsu: Build Y3 Shoejitsu\n\n38) wil: S Y2 Be3\nM Y1 B3 Mix\nM Y1 Mix Shoejitsu\nC Shoejitsu Y\n\tshoejitsu: yes, and you&#39;re welcome XD\n\n39) shoejitsu: Discover Y1 B3 R2 Up\n\n40) wil: Sacrifice Y3 Be3\nMove G1 Wil B3\nMove G1 B3 Up\nMove G1 Up Shoejitsu\nCatastrophe Shoejitsu G\n\n41) shoejitsu: Trade B1 G1 Shoejitsu\n\n42) wil: Move B3 Mix Shoejitsu\n\tshoejitsu: hmm. i dont think ill be coming back from this one but ill play it out\n\n43) shoejitsu: Build G1 Shoejitsu\n\twil: Yeah...this is the end... challenge me anytime.\n\n44) wil: Sacrifice R3 B3\nAttack G1 Shoejitsu\nAttack G1 Shoejitsu\nPass\n\tshoejitsu: good luck in the rest of the tourney!\n\n\nHomeworlds Online (SDG# 33358)\nVariants: &quot;Hard time&quot;\nStarted: 2017.10.21, Ended: 2017.12.1\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tts52: That&#39;s an interesting opening. Forcing a small universe eh?\n\tDraw5PlayAll: I tried it against wil twice, who did the exact same thing (B2R2+G3) back.\n\n4) ts52: Build G1 Ts52\n\tts52: Interesting. I&#39;m curious to see how this goes.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Draw5PlayAll: Build Y2 Draw5playall\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) ts52: Build G1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Trade G1 B1 Ts52\n\n13) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n14) ts52: Trade B1 R1 Ts52\n\n15) Draw5PlayAll: Discover Y2 Draw5playall B1 B1\n\n16) ts52: Build G1 Ts52\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) ts52: Trade G1 B1 Ts52\n\n19) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n20) ts52: Build Y2 Kermit\n\n21) Draw5PlayAll: Build G1 Draw5playall\n\n22) ts52: Move B1 Ts52 Kermit\n\n23) Draw5PlayAll: Discover B1 Draw5playall G1 G1\n\n24) ts52: Build G1 Ts52\n\n25) Draw5PlayAll: Build Y2 Draw5playall\n\n26) ts52: Discover Y2 Kermit R1 Elmo\n\n27) Draw5PlayAll: Move Y2 Draw5playall Kermit\n\n28) ts52: Build Y3 Kermit\n\n29) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Kermit\nBuild Y3 Draw5playall\nCatastrophe Kermit Yellow\nBuild G2 Draw5playall\n\n30) ts52: Build R2 Ts52\n\n31) Draw5PlayAll: Move R1 Draw5playall G1\n\n32) ts52: Discover G1 Ts52 B3 Gonzo\n\n33) Draw5PlayAll: Move G2 Draw5playall G1\n\n34) ts52: Build G2 Ts52\n\n35) Draw5PlayAll: Build R2 G1\n\n36) ts52: Move R2 Ts52 Kermit\n\n37) Draw5PlayAll: Build R3 G1\n\n38) ts52: Sacrifice G3 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\nBuild Y1 Elmo\n\n39) Draw5PlayAll: Trade R3 Y3 G1\n\n40) ts52: Trade R3 Y3 Kermit\n\n41) Draw5PlayAll: Discover R1 G1 Y2 Y2\n\n42) ts52: Build R3 Kermit\n\n43) Draw5PlayAll: Build R3 G1\n\n44) ts52: Move R3 Kermit B1\n\n45) Draw5PlayAll: Move Y2 B1 Gonzo\n\n46) ts52: Move Y1 Elmo Kermit\n\n47) Draw5PlayAll: Sacrifice R1 Y2\nAttack G1 Gonzo\n\n48) ts52: Sacrifice Y3 Kermit\nMove Y1 Kermit Draw5playall\nMove Y2 Elmo Draw5playall\nMove R3 B1 Draw5playall\nCatastrophe Draw5playall Yellow\n\n49) Draw5PlayAll: Sacrifice Y2 Gonzo\nMove R2 G1 Draw5playall\nMove R3 G1 Draw5playall\nCatastrophe Draw5playall Red\n\n50) ts52: Discover R3 Ts52 Y3 Bigbird\n\tDraw5PlayAll: Huh?!\n\n\tDraw5PlayAll: &quot;Far from over&quot;?! You win in 3 moves!\n\tts52: Yeah, I thought of taking the large out of my homeworld right after I posted that. Thanks for the game!\n\nHomeworlds Online (SDG# 33360)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.21, Ended: 2017.10.28\nParticipants: eliscinsky (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\n2) eliscinsky: Homeworld Y1 B2 G3\n\tBabamots: Thanks for the game! Will you record it for the tournament?\n\n3) Babamots: Build G1 Babamots\n\n4) eliscinsky: Build G1 Eliscinsky\n\tBabamots: I went ahead and filled out the tournament form. Good luck!\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Babamots: Build Y2 Babamots\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) Babamots: Sacrifice Y2 Babamots\nDiscover Y1 Babamots Y3 Iconia\nMove Y1 Iconia Eliscinsky\nCatastrophe Eliscinsky Y\n\n10) eliscinsky: Build G1 Eliscinsky\n\n11) Babamots: Build G1 Babamots\n\tBabamots: Back to square one :-).\n\n12) eliscinsky: Trade G1 Y1 Eliscinsky\n\n13) Babamots: Discover G1 Babamots Y3 Ferenginar\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) Babamots: Build G1 Babamots\n\teliscinsky: I spy with my little eye ... a Trekie!\n\n16) eliscinsky: Trade G1 R1 Eliscinsky\n\n17) Babamots: Trade G1 R1 Babamots\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) Babamots: Build G1 Ferenginar\n\n20) eliscinsky: Trade G1 R1 Eliscinsky\n\n21) Babamots: Build R2 Babamots\n\n22) eliscinsky: Move R1 Eliscinsky Ferenginar\n\n23) Babamots: Sacrifice R1 Babamots\nAttack R1S Ferenginar\n\n24) eliscinsky: Build Y1 Eliscinsky\n\n25) Babamots: Discover G1 Ferenginar B1 Betazed\n\n26) eliscinsky: Trade Y1 B1 Eliscinsky\n\n27) Babamots: Build G1 Babamots\n\tBabamots: Definitely a Trekkie :-). Many of my system names are pretty obscure though. I use &quot;Iconia&quot; and &quot;Galorndon&quot; often.\n\n28) eliscinsky: Build B2 Eliscinsky\n\n29) Babamots: Build G2 Ferenginar\n\n30) eliscinsky: Build R1 Eliscinsky\n\n31) Babamots: Build G2 Betazed\n\n32) eliscinsky: Build Y1 Eliscinsky\n\teliscinsky: Just keep swimming, swimming, swimming. Just keep swimming, swimming, swimming.  haha\n\n33) Babamots: Sacrifice G3 Babamots\nBuild G2 Betazed\nBuild G3 Babamots\nBuild G3 Babamots\n\n\teliscinsky: I resign. I now hate this game. \n\teliscinsky: I guess I just cannot grasp the rules.  Everytime I try something I think should be possible the system tells me &quot;No more moves&quot;.\n\tBabamots: I&#39;ll write you a PM with some hopefully useful information.\n\nHomeworlds Online (SDG# 32620)\nVariants: &quot;Sinister&quot;\nStarted: 2017.10.23, Ended: 2018.4.9\nParticipants: Draw5PlayAll (S), agentofchaos (W), Vezeon (N), Babamots (E)\nWinner: Babamots\n\n1) Vezeon: Homeworld R1 B3 G3\n\n2) Babamots: Homeworld Y2 B1 G3\n\n3) Draw5PlayAll: Homeworld B2 R3 G3\n\tBabamots: I forgot I signed up for this game. I&#39;ve never actually played sinister, so this should be fun! \n\tVezeon: sinister? lol\n\tVezeon: I&#39;m just trying to figure out how to play homeworlds online. I didn&#39;t realize this was a different variant until I saw 4 players.\n\tBabamots: Sinister means you&#39;re trying to eliminate the guy on your left. In your case, Vezeon, you win if *you* destroy me. If someone else kills me, no one wins yet, and the player to your left is then the South player.\n\tVezeon: Oh sweet ok! I was reading the rules earlier and it was talking about good vs evil but I guess that&#39;s more of when you are playing tabletop\n\tBabamots: Yeah, this site doesn&#39;t support good vs evil rules.\n\tVezeon: Makes sense. The honor system wouldn&#39;t work either lol\n\tBabamots: Actually, it wouldn&#39;t be hard to have the site randomly assign alignments to the players that only they could see. But I think most people are more interested in rules that don&#39;t involve chance.\n\tVezeon: True, this is definitely a wonderful game that relies heavily on strategy and throwing in the chance factor is a bit iffy.\n\n4) agentofchaos: Homeworld B1 R2 G3\n\tDraw5PlayAll: So just so it is all clear...\r\nDraw5PlayAll (me) needs to destroy AgentOfChaos who needs to destroy Vezeon who needs to destroy Babamots who needs to destroy me.\n\tVezeon: Thanks! :)\n\n5) Vezeon: Build G1 Vezeon\n\tagentofchaos: First time I have played sinister, thanks for the tips! :-)\n\n6) Babamots: Build G1 Babamots\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) Vezeon: Trade G1 Y1 Vezeon\n\n10) Babamots: Trade G1 B1 Babamots\n\n11) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n12) agentofchaos: Trade G1 B1 Agentofchaos\n\tBabamots: Well, do we continue? The stashes are a little big for a three-player game.\n\tDraw5PlayAll: What just happened?! It has not been enough time yet...\r\n\r\nI vote to continue.\n\tagentofchaos: I agree the stashes are a little big, but I&#39;m willing to continue and see what happens.\n\n13) Babamots: Build B1 Babamots\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) agentofchaos: Build G1 Agentofchaos\n\tDraw5PlayAll: Apparently Vezeon&#39;s account has been deleted.\n\n16) Babamots: Discover B1 Babamots G3 Ferenginar\n\tagentofchaos: how unusual\n\n17) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Who locked me out of blue while I was not looking?\n\n18) agentofchaos: Trade G1 Y1 Agentofchaos\n\tBabamots: That would be me and my new friend agentofchaos.\n\n19) Babamots: Build B2 Ferenginar\n\n20) Draw5PlayAll: Discover Y1 Draw5playall G1 G1\n\n21) agentofchaos: Build B2 Agentofchaos\n\n22) Babamots: Trade B2 Y2 Ferenginar\n\n23) Draw5PlayAll: Build Y1 G1\n\n24) agentofchaos: Discover B2 Agentofchaos Y3 Kakradoom\n\n25) Babamots: Build B2 Ferenginar\n\n26) Draw5PlayAll: Build Y2 Draw5playall\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) Babamots: Trade B2 R2 Ferenginar\n\n29) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n30) agentofchaos: Build G1 Agentofchaos\n\n31) Babamots: Move R2 Ferenginar G1\n\n32) Draw5PlayAll: Sacrifice Y1 G1\nDiscover Y1 G1 G2 G2\n\tDraw5PlayAll: That gives you no profit though.\n\n33) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B2 Kakradoom\n\tBabamots: Even though this isn&#39;t exactly a zero-sum game, in this case I think your loss is my profit.\n\n34) Babamots: Move B1 Babamots Kakradoom\n\n35) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n36) agentofchaos: Trade B2 R2 Kakradoom\n\n37) Babamots: Move B1 Kakradoom G1\n\n38) Draw5PlayAll: Discover B2 Draw5playall G1 G1b\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) Babamots: Build B2 G1\n\n41) Draw5PlayAll: Build G1 Draw5playall\n\n42) agentofchaos: Move G1 Agentofchaos Kakradoom\n\n43) Babamots: Trade B2 Y2 G1\n\n44) Draw5PlayAll: Move R1 Draw5playall G1b\n\n45) agentofchaos: Build B2 Kakradoom\n\n46) Babamots: Build B2 Ferenginar\n\n47) Draw5PlayAll: Build B3 G1b\n\n48) agentofchaos: Build R1 Kakradoom\n\n49) Babamots: Build B3 G1\n\n50) Draw5PlayAll: Trade B3 Y3 G1b\n\n51) agentofchaos: Move B2 Kakradoom G2\n\tBabamots: I&#39;m a little afraid agent&#39;s not coming back. What do you think D5PA? Is your enthusiasm for this match ebbing too?\n\tDraw5PlayAll: 2-3 more days then we can boot the player\n\n52) Babamots: Discover B3 G1 Y2 Galorndon\n\tagentofchaos: sorry been a bit distracted lately, will try to move more promptly\n\n53) Draw5PlayAll: Build B3 G1b\n\n54) agentofchaos: Move R1 Kakradoom G2\n\n55) Babamots: Build B3 G1\n\n56) Draw5PlayAll: Discover Y1 G2 G1 Escape\n\n57) agentofchaos: Build G2 Agentofchaos\n\n58) Babamots: Move B3 Galorndon Vezeon\n\n59) Draw5PlayAll: Build R1 G1b\n\n60) agentofchaos: Build B3 G2\n\n61) Babamots: Attack G3N Vezeon\n\n62) Draw5PlayAll: Discover G1 Draw5playall Y1 Y1\n\n63) agentofchaos: Build G2 Kakradoom\n\n64) Babamots: Build G2 Vezeon\n\tDraw5PlayAll: How is that AI project coming along?\n\n65) Draw5PlayAll: Build G2 Y1\n\n66) agentofchaos: Trade B2 Y2 G2\n\n67) Babamots: Sacrifice G3 Vezeon\nBuild Y3 Ferenginar\nBuild Y3 G1\nBuild G3 Vezeon\n\tBabamots: Haven&#39;t done anything with it for a while. There are still problems with not being able to find all valid moves.\n\n68) Draw5PlayAll: Build Y3 Escape\n\n69) agentofchaos: Build B2 G2\n\n70) Babamots: Trade B3 R3 Vezeon\n\n71) Draw5PlayAll: Discover R1 G1b B3 B3\n\n72) agentofchaos: Build R1 Kakradoom\n\n73) Babamots: Sacrifice Y3 Ferenginar\nMove B1 Ferenginar Babamots\nMove Y3 G1 Draw5playall\nMove B3 G1 Draw5playall\n\n74) agentofchaos: Move B3 G2 Escape\n\n75) Babamots: Sacrifice G3 Vezeon\nBuild R2 G1\nBuild Y3 G1\nBuild G3 Vezeon\n\tBabamots: Oh don&#39;t go! I&#39;m supposed to eliminate you!\n\tDraw5PlayAll: Muhahahahaha\n\n\tDraw5PlayAll: Uhhhhhhhhhh\n\tBabamots: I&#39;m perfectly happy to take the time-out win. As far as I&#39;m concerned, I won by defeating the player to my left. Resigning to prevent that victory from technically happening isn&#39;t really in the spirit of the game.\n\nHomeworlds Online (SDG# 33007)\nVariants: &quot;Hard time&quot;\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Felix (S), Vezeon (N)\nWinner: Felix\n\n1) Vezeon: Homeworld R1 B3 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) Vezeon: Build G1 Vezeon\n\n4) Felix: Build G1 Felix\n\n5) Vezeon: Trade G1 Y1 Vezeon\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Vezeon: Discover Y1 Vezeon G2 Train\n\n8) Felix: Build G1 Felix\n\n9) Vezeon: Build G1 Vezeon\n\n10) Felix: Discover G1 Felix B1 Out\n\n11) Vezeon: Move Y1 Train Out\n\n12) Felix: Trade G1 R1 Out\n\n13) Vezeon: Discover Y1 Out G2 Eye\n\n14) Felix: Build G1 Felix\n\n15) Vezeon: Trade G1 B1 Vezeon\n\n16) Felix: Move G1 Felix Out\n\n17) Vezeon: Build G1 Vezeon\n\n\nHomeworlds Online (SDG# 33295)\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Vezeon (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Vezeon: Homeworld R2 B3 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Vezeon: Build G1 Vezeon\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Vezeon: Build G1 Vezeon\n\n7) MobyNostromo: T Y1 G1 Mobynostromo\n\n8) Vezeon: Trade G1 Y1 Vezeon\n\n9) MobyNostromo: T Y1 B1 Mobynostromo\n\n10) Vezeon: Build Y1 Vezeon\n\n11) MobyNostromo: D B1 Mobynostromo G3 Hohoho\n\n12) Vezeon: Discover Y1 Vezeon R1 Deana\n\n13) MobyNostromo: B B1 Hohoho\n\n14) Vezeon: Trade G1 R1 Vezeon\n\n\nHomeworlds Online (SDG# 33047)\nVariants: &quot;Hard time&quot;\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Vezeon (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Diving right into the deep end of the pool?\n\n2) Vezeon: Homeworld R3 B1 G3\n\tVezeon: lol, how&#39;d you know?\n\n3) wil: Build G1 Wil\n\twil: When I get challenged to a game by someone I don&#39;t know...I take a look at their game play on the site...  If never played homeworlds I then ask if they want a learning game...where I inform them of my thoughts on their moves and missed opportunities...  saw yours and it looked like you were in a bunch of games..yet never played (here at least)  Do you have a copy of arcade at home?\n\n4) Vezeon: Build G1 Vezeon\n\tVezeon: Yea, I have a copy at home but nobody is really into homeworlds. I&#39;ve only been able to play a handful of times so i&#39;m excited to use this website.\n\n5) wil: T G1 B1 Wil\n\twil: My recommendation is to lose and lose often...you will start to see attacks coming at you...and watch them.build...and then when you try that attack you&#39;ll get to see the counter...ask any questions you want during the game.  I usually recommend you set up a live set on a table so you can look at them.  (But you are in so many games...but still...if you want to ponder..) \n\n6) Vezeon: Trade G1 Y1 Vezeon\n\tVezeon: I love the advice. Particularly the live set up of the game.  I might have to try that one day. Thanks for your help.\n\n7) wil: B B1 Wil\n\n8) Vezeon: Build G1 Vezeon\n\twil: Often best to play follow the leader early in the game with attempts to insure you get what they get.\n\twil: I count how many ships of each color to twos. And how many ships each of each color to threes.\n\n9) wil: D B1 Wil Y3 Y3\n\tVezeon: Yea I noticed its best not to make the next size available to the opponent when possible\n\n10) Vezeon: Build Y1 Vezeon\n\twil: In this game you will learn the horror of fighting the blue monopoly (if I have my way)\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\tVezeon: Ooo. That should be pretty fun to experience \n\n12) Vezeon: Build Y2 Vezeon\n\tVezeon: Nice!\n\n13) wil: Discover B2 Y3 G2 G2\n\n14) Vezeon: Discover Y2 Vezeon R2 Boom\n\twil: I like to name my stars by the star sizes and types...lazy I am.   Most players have favorite names they use, Andy likes using actual star names.\n\tVezeon: Lol, I see! So far I like naming them but i can see myself getting lazy \n\n15) wil: Trade B3 G3 Wil\n\n16) Vezeon: Trade G1 R1 Vezeon\n\n17) wil: S G3 Wil\nB B3 Wil\nB B3 Y3\nB B3 G2\n\twil: lol...I don&#39;t encourage using my star naming system....confuses the heck out of everything when two of us use it.\n\tVezeon: Oh lord i bet!\n\n18) Vezeon: Move R1 Vezeon G2\n\n19) wil: S B2 Y3\nT B3 Y3 G2\nT B3 G3 Wil\n\twil: Witness the blue queen mill...  More powerful than a factory...\r\n\r\n\n\n20) Vezeon: Move Y2 Boom Y3\n\n21) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\twil: There is a gnat in my midst...but I am on a mission... I&#39;ll swat him in a minute.\n\n22) Vezeon: Sacrifice R1 G2\nAttack B1 Y3\n\n23) wil: Sacrifice B2 G2\nTrade B3 R3 Y3\nTrade B3 G3 Wil\n\n24) Vezeon: Move B1 Y3 G2\n\n25) wil: T B2 R2 G2\n\twil: I didn&#39;t do that quite right...wasted a couple turns, but in the process now have four large ships...the power of the blue queen mill... \n\tVezeon: They are giant and scary!\n\n\twil: Challenge anytime...  But that was the power of a blue monopoly...try not to let anyone do that to ya...it is trouble.\n\tDraw5PlayAll: Apparently Vezeon&#39;s account was deleted. The only information I have is that attempting to access that profile brings up my own.\n\nHomeworlds Online (SDG# 33365)\nVariants: &quot;Hard time&quot;\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Felix (S), Vezeon (N)\nWinner: Felix\n\n1) Vezeon: Homeworld R2 B3 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) Vezeon: Build G1 Vezeon\n\tFelix: Hello! First game?\n\tVezeon: Yup, well so far as online is concerned. Still a noob either way you swing it.\n\n4) Felix: Build G1 Felix\n\tFelix: Cool! Hope you have fun!\n\n5) Vezeon: Trade G1 Y1 Vezeon\n\n6) Felix: Trade G1 Y1 Felix\n\tVezeon: Thanks! Pretty cool so far.\n\n7) Vezeon: Build Y2 Vezeon\n\tFelix: It&#39;s an incredibly deep game, but always fun.\n\tVezeon: Yea, I was stoked to find out I could play it online. I didn&#39;t realize it was a &quot;wait a few days&quot; to take a turn game but oh well.\n\n8) Felix: Build Y2 Felix\n\n9) Vezeon: Discover Y2 Vezeon G1 Grump\n\n10) Felix: Discover Y1 Felix G2 Out\n\tFelix: Yeah, there&#39;s no live implementation online, unfortunately, so these games tend to take a while.\n\tVezeon: It&#39;s sort of neat to return to it every now and then. It feels like real space combat as if we are waiting for our ships to construct or travel\n\n11) Vezeon: Build G1 Vezeon\n\n12) Felix: Build G1 Felix\n\tFelix: That&#39;s a neat way to think about it!\n\n13) Vezeon: Build G2 Vezeon\n\n14) Felix: Discover G1 Felix B2 Opus\n\n15) Vezeon: Discover G2 Vezeon B1 Free\n\n\tFelix: Aw, shame. Why the resignation?\n\tDraw5PlayAll: Apparently Vezeon&#39;s account was deleted. The only information I have is that attempting to access that profile brings up my own.\n\nHomeworlds Online (SDG# 33257)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Vezeon (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Vezeon: Homeworld B3 R2 G3\n\tdlwillson: Good luck and have fun!\n\tVezeon: Thanks! This is my first game of homeworlds not on a tabletop!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Vezeon: Build G1 Vezeon\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Vezeon: Build G1 Vezeon\n\n7) dlwillson: B R1 Dlwillson\n\n\tdlwillson: Whoa! What happened? Why did you resign?\n\tDraw5PlayAll: Apparently Vezeon&#39;s account was deleted. The only information I have is that attempting to access that profile brings up my own.\n\nHomeworlds Online (SDG# 33363)\nVariants: &quot;Hard time&quot;\nStarted: 2017.10.23, Ended: 2017.11.19\nParticipants: agentofchaos (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: H R2 B1 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) bhorner: B G1 Bhorner\n\tagentofchaos: Hi, gl\n\tbhorner: Hi there, gl to you too!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) agentofchaos: Trade G1 B1 Agentofchaos\n\n7) bhorner: Build B2 Bhorner\n\n8) agentofchaos: Build B2 Agentofchaos\n\n9) bhorner: T B2 Y2 Bhorner\n\n10) agentofchaos: Trade B2 Y2 Agentofchaos\n\n11) bhorner: B B2 Bhorner\n\n12) agentofchaos: Build B2 Agentofchaos\n\n13) bhorner: Discover B1 Bhorner G3 Xmas\n\n14) agentofchaos: Discover B2 Agentofchaos G1 Wopolsa\n\n15) bhorner: Trade B2 R2 Bhorner\n\n16) agentofchaos: Trade B1 R1 Agentofchaos\n\n17) bhorner: B G1 Bhorner\n\n18) agentofchaos: Build B1 Wopolsa\n\n19) bhorner: B B2 Xmas\n\n20) agentofchaos: Trade B2 Y2 Wopolsa\n\n21) bhorner: T B1 Y1 Xmas\n\n22) agentofchaos: B R1 Agentofchaos\n\n23) bhorner: B Y1 Xmas\n\n\nHomeworlds Online (SDG# 33387)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.10.28, Ended: 2017.11.10\nParticipants: eliscinsky (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\tbhorner: Hi there, good luck!\n\n3) bhorner: Build G1 Bhorner\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\tbhorner: Sorry about the undo, I didn&#39;t realize you made the same size homeworld as me, I need to consider more carefully!\n\n7) bhorner: Build G1 Bhorner\n\teliscinsky: NP. I&#39;ve been undoing quite a lot the last few games. ;)\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) bhorner: Trade G1 B1 Bhorner\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) bhorner: Build B1 Bhorner\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) bhorner: Build G1 Bhorner\n\n14) eliscinsky: Build R1 Eliscinsky\n\n15) bhorner: D B1 Bhorner R3 War\n\n16) eliscinsky: Discover R1 Eliscinsky Y3 Frodo\n\n17) bhorner: Move G1 Bhorner War\n\n18) eliscinsky: Move R1 Frodo Bhorner\n\n19) bhorner: Attack R1 Bhorner\n\n20) eliscinsky: Build R2 Eliscinsky\n\n21) bhorner: Sacrifice G3 Bhorner\nBuild B2 War\nBuild B2 War\nBuild B3 Bhorner\n\n22) eliscinsky: Discover R1 Eliscinsky Y3 Frodo\n\n23) bhorner: Discover B1 Bhorner G3 Xmas\n\n24) eliscinsky: Move G1 Eliscinsky Frodo\n\n25) bhorner: Build B3 Xmas\n\n26) eliscinsky: Build R2 Frodo\n\n27) bhorner: Move R1 Bhorner Xmas\n\n28) eliscinsky: Build R3 Frodo\n\n29) bhorner: Build R3 Xmas\n\n30) eliscinsky: Move R3 Frodo Bhorner\n\n31) bhorner: Attack R3 Bhorner\n\n32) eliscinsky: Build G1 Eliscinsky\n\n33) bhorner: Trade B2 Y2 War\n\n34) eliscinsky: Move R2 Eliscinsky Frodo\n\n35) bhorner: Sacrifice Y2 War\nMove R1 Xmas Bhorner\nMove R1 Bhorner Frodo\nCatastrophe Frodo R\n\n36) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Frodo\nBuild G2 Frodo\nBuild G2 Eliscinsky\n\n37) bhorner: S Y1 Bhorner\nM R3 Xmas Eliscinsky\n\n38) eliscinsky: Build G3 Eliscinsky\n\n39) bhorner: S R3 Bhorner\nA G3 Eliscinsky\nA G2 Eliscinsky\nA G1 Eliscinsky\n\n40) eliscinsky: Build G3 Frodo\n\n41) bhorner: Sacrifice B3 Xmas\nTrade G3 Y3 Eliscinsky\nTrade G2 Y2 Eliscinsky\nTrade G1 Y1 Eliscinsky\nCatastrophe Frodo G\nCatastrophe Eliscinsky Y\n\n\tbhorner: I will give you your bang!  :)\n\tbhorner: Double catastrophe.  :)\n\teliscinsky: Hazzah!!!\n\nHomeworlds Online (SDG# 33388)\nVariants: &quot;Unrated&quot;\nStarted: 2017.10.28, Ended: 2017.11.11\nParticipants: ts52 (S), Remneb (N)\nWinner: ts52\n\n1) Remneb: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) Remneb: Build G1 Remneb\n\tts52: Have a good game! This is for the tournament.\n\tRemneb: Have a good game too. \n\n4) ts52: Build G1 Ts52\n\n5) Remneb: Trade G1 R1 Remneb\n\n6) ts52: Trade G1 R1 Ts52\n\n7) Remneb: Build G1 Remneb\n\n8) ts52: Build G1 Ts52\n\n9) Remneb: Trade G1 B1 Remneb\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Remneb: Build G1 Remneb\n\n12) ts52: Build B2 Ts52\n\n13) Remneb: Build B2 Remneb\n\n14) ts52: Discover B2 Ts52 G2 Kermit\n\n15) Remneb: Discover B2 Remneb G3 Doom\n\n16) ts52: Sacrifice G3 Ts52\nBuild B3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n17) Remneb: Trade B1 Y1 Remneb\n\n18) ts52: Trade B3 Y3 Kermit\n\n19) Remneb: Sacrifice Y1 Remneb\nDiscover B2 Doom Y2 Orb\n\n20) ts52: Trade B3 G3 Ts52\n\n21) Remneb: Sacrifice G1 Remneb\nBuild B1 Orb\n\n22) ts52: Build B3 Kermit\n\n23) Remneb: Move B1 Orb Ts52\n\n24) ts52: Trade B3 R3 Kermit\n\n25) Remneb: Move B2 Orb Ts52\nCatastrophe Ts52 B\n\n26) ts52: Sacrifice Y3 Kermit\nMove B3 Kermit Ts52\nMove B3 Ts52 Remneb\nMove G3 Ts52 Remneb\n\n27) Remneb: Move G3 Remneb Ts52\n\n28) ts52: Sacrifice R3 Kermit\nAttack R1 Remneb\nPass\nPass\n\n\tts52: Thanks for the game!\n\tRemneb: Thanks for the game too !\n\nHomeworlds Online (SDG# 33386)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.1, Ended: 2018.2.9\nParticipants: Babamots (S), BlueSkies (N)\nWinner: Babamots\n\n1) BlueSkies: Homeworld R1 B2 G3\n\tBabamots: So this is from my &quot;training game challenge.&quot; Are you a pretty new player?\n\n2) Babamots: Homeworld G3 Y2 B3\n\n3) BlueSkies: Build G1 Blueskies\n\tBlueSkies: Hi Babamots, I am a complete beginner.\n\n4) Babamots: Build B1 Babamots\n\n5) BlueSkies: Trade G1 Y1 Blueskies\n\tBabamots: Well, so far so good! Let me know any time you&#39;d like help analyzing the position. I&#39;ll start saying stuff about the game spontaneously when it&#39;s a little more complicated.\n\tBlueSkies: Ok this is great. I appreciate any advice you may have.\n\n6) Babamots: Build B1 Babamots\n\tBlueSkies: I was wondering, what is the usual protocol on superdupergames? Do games tend to be played in realtime or over a matter of days?\n\n7) BlueSkies: Discover Y1 Blueskies G3 Biggreen\n\n8) Babamots: Discover B1 Babamots G1 Betazed\n\tBabamots: Right now, I&#39;m trying to build all the little blue ships so that you can&#39;t trade any of your little ships to get blue (this is &quot;freezing you out&quot; of blue). You are in a good position to try to do the same to me but with yellow. Neither of us will succeed unless the other makes a mistake, though.\n\n\tBlueSkies: Sorry, I hate to do this, but I think I will have to come back to game at some later point. Thanks again though.\n\tBabamots: It&#39;s normal for purple to only make one or two moves a day (sometimes less). It&#39;s fine if you&#39;re now leaving for a day or two. If you&#39;ll be gone more than a week, we&#39;ll need to pause the timer. Also, I composed my last chat before you moved. I will be able to freeze you out of blue now.\n\tBabamots: Purple=people. That&#39;s the trouble with typing on a phone at the bus stop. \n\nHomeworlds Online (SDG# 33323)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.1, Ended: 2017.11.28\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B3 Y2 G3\n\n2) wil: H B2 Y1 G3\n\twil: Thanx for the game!\n\n3) dragon76n: Build G1 Dragon76n\n\n4) wil: B G1 Wil\n\tdragon76n: Hi Wil, glad I could join you again. \n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) wil: T G1 Y1 Wil\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) wil: B Y2 Wil\n\n9) dragon76n: D Y2 Dragon76n G1 Greone\n\n10) wil: D Y1 Wil G3 G3\n\n11) dragon76n: B Y3 Greone\n\n12) wil: B Y3 G3\n\n13) dragon76n: D Y2 Greone G2 Gretwo\n\n14) wil: D Y2 Wil Y3 Y3\n\n15) dragon76n: B G1 Dragon76n\n\n16) wil: B G1 Wil\n\n17) dragon76n: T G1 R1 Dragon76n\n\n18) wil: T G1 R1 Wil\n\twil: Well what color should eliminate next?\n\n19) dragon76n: B G1 Dragon76n\n\n20) wil: B R1 Wil\n\twil: An arms race it is\n\n21) dragon76n: Build R2 Dragon76n\n\n22) wil: B R2 Wil\n\n23) dragon76n: T R1 G1 Dragon76n\n\n24) wil: B G2 Wil\n\n25) dragon76n: Discover G1 Dragon76n B1 Bluone\n\n26) wil: M R2 Wil G3\n\n27) dragon76n: S G3 Dragon76n\nB G2 Bluone\nB R1 Dragon76n\nB G3 Dragon76n\n\n28) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild R3 G3\n\n29) dragon76n: Move R1 Dragon76n Greone\n\n30) wil: Trade R1 B1 Wil\n\n31) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild R1 Greone\nBuild R3 Dragon76n\n\n32) wil: Move R3 G3 Bluone\n\n33) dragon76n: Sacrifice Y2 Gretwo\nMove G1 Bluone G3\nMove G2 Bluone G3\n\n34) wil: Sacrifice R2 Wil\nAttack G2 G3\nAttack G1 G3\n\n35) dragon76n: S Y3 Greone\nM G1 Dragon76n Greone\nM G1 Greone G3\nC G3 Green\nD R2 Dragon76n Y1 Yelone\n\n36) wil: B R2 Wil\n\n37) dragon76n: B Y2 Dragon76n\n\n38) wil: Build B1 Wil\n\n39) dragon76n: T Y2 B2 Dragon76n\n\n40) wil: Discover R2 Wil B3 B3\n\n41) dragon76n: Move B2 Dragon76n Greone\n\n42) wil: Move B1 Wil Y3\n\n43) dragon76n: Build Y2 Dragon76n\n\n44) wil: Sacrifice G2 Wil\nBuild R2 Bluone\nBuild R3 B3\n\n45) dragon76n: S Y2 Dragon76n\nM R1 Greone B3\nM R1 Greone B3\nC B3 Red\n\n46) wil: Trade R3 Y3 Bluone\n\n47) dragon76n: B B2 Greone\n\n48) wil: S G3 Wil\nB B3 Wil\nB B3 Y3\nB Y2 Bluone\n\n49) dragon76n: T R3 G3 Dragon76n\n\n50) wil: Trade B3 G3 Wil\n\n51) dragon76n: T B2 R2 Greone\n\n52) wil: Move B3 Y3 Yelone\n\n53) dragon76n: Discover R2 Yelone Y3 Yelthr\n\n54) wil: Build G1 Wil\n\n55) dragon76n: B R1 Greone\n\n56) wil: Move Y3 Bluone Yelthr\n\n57) dragon76n: Discover R2 Yelthr R1 Redone\n\n58) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Bluone\nBuild R3 Bluone\n\n59) dragon76n: Sacrifice B2 Greone\nTrade R2 G2 Greone\nTrade R2 G2 Redone\n\n60) wil: Sacrifice Y2 Bluone\nMove R3 Bluone Dragon76n\nMove B3 Yelone Dragon76n\n\n61) dragon76n: Sacrifice R1 Greone\nAttack R3 Dragon76n\n\twil: oops, me thinks\n\n62) wil: Sacrifice R2 Bluone\nAttack R3 Dragon76n\nAttack G3 Dragon76n\n\n63) dragon76n: Sacrifice G2 Redone\nBuild Y1 Dragon76n\nBuild G1 Dragon76n\n\n64) wil: S R3 Dragon76n\nA Y1 Dragon76n\nA Y1 Dragon76n\nA G1 Dragon76n\n\tdragon76n: It reminds me of when I played Chess with my grandfather years ago... I can sacrifice my queen now, and my king lives a little longer, or he&#39;ll take something else, and that will be checkmate.\n\n65) dragon76n: S G2 Greone\nB G1 Dragon76n\nB G2 Dragon76n\n\tdragon76n: Good game. I wasn&#39;t expecting that homeworld invasion right then. I thought about sacrificing my yellow ship to knock out a bunch of your red ships with a catastrophe, but obviously decided not to and I&#39;m paying for it now. \n\twil: I was looking at the invasion...and then those two dang r2s were in the way...I wished them gone and low and behold.... To my surprise. They were!!\n\n66) wil: S G3 Dragon76n\nB B2 Dragon76n\nB B2 Dragon76n\nB Y2 Dragon76n\nC Dragon76n Y\nC Dragon76n G\nC Dragon76n B\n\n\twil:  Triple catastrophe fun never done that before. \n\nHomeworlds Online (SDG# 33313)\nStarted: 2017.11.5, Ended: 2017.11.5\nParticipants: ts52 (S), TumbleSteak (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 33405)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.6, Ended: 2017.11.9\nParticipants: Babamots (S), smokeytroll42 (N)\nWinner: Babamots\n\n1) smokeytroll42: Homeworld B1 R2 G3\n\tsmokeytroll42: Hello! New player here. Looking for any words of wisdom! Thanks!\n\tBabamots: Sure! Have you played before at all? Do you need any help understanding how to tell your moves to the website?\n\n2) Babamots: Homeworld G3 Y2 B3\n\tsmokeytroll42: I think I have the commands basically down, but I&#146;ll ask if I have any questions. This is my first game, but I&#146;ve read a bit on strategy.\n\n3) smokeytroll42: Build G1 Smokeytroll42\n\tsmokeytroll42: Any rationale for certain moves or basic advice would be appreciated. But don&#146;t feel like you need to go easy on me.\n\tBabamots: My plan is to play my best, but I will answer questions, give suggestions, and warn you when you should block me from doing something tricky.\n\tBabamots: (For now, your only sensible move is to build, and you can count on my next move being a build as well)\n\tsmokeytroll42: Excellent, much appreciated! \n\tsmokeytroll42: So for building, am I only restricted to green ships? Or can I expand my system?\n\tBabamots: You can only build ships with colors that you already have. Since your only ship is green, you can only build green ships.\n\tBabamots: If you build a g1 now and trade it for a y1 on your next turn, then you will be able to build green ships and yellow ships in your home system.\n\tsmokeytroll42: So you get the actions of your system&#146;s colors, just not for building ships?\n\n4) Babamots: Build B1 Babamots\n\n5) smokeytroll42: Build G1 Smokeytroll42\n\tBabamots: Yes, so my green system marker lets me build things, but I have to build blue ships because, so far, I only have blue ships.\n\n6) Babamots: Trade B1 G1 Babamots\n\tsmokeytroll42: So how do I build bigger ships?\n\tBabamots: When you pick a color of ship to build, you have to use the smallest piece available. You get to build bigger ships when the little ones are used up.\n\n7) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\tBabamots: And right now, you shouldn&#39;t build a 4th green, because then I can make it a catastrophe (any time four pieces of the same color are in the same system, they can all be destroyed by any player who gives the catastrophe command).\n\n8) Babamots: Build B1 Babamots\n\tBabamots: One thing to watch for in the next few moves is getting &quot;frozen out&quot; of a color. If you build the last two y1 before I trade for a y1, it will be harder for me to get any yellow at all (since I&#39;ll have to wait and trade for a y2 after I get a medium of another color). You will be frozen out of blue if you don&#39;t get a b1 before I build the last two b1. Getting frozen out of yellow is probably worse than getting frozen out of blue, though.\n\tBabamots: I traded for a g1 earlier to make sure you couldn&#39;t freeze me out of green, which would have been pretty bad.\n\n9) smokeytroll42: Build Y1 Smokeytroll42\n\tsmokeytroll42: So being frozen out of yellow would basically trap someone?\n\n10) Babamots: Trade B1 Y1 Babamots\n\tBabamots: Yes, getting frozen out of yellow makes it hard to move. I can always move from home since I have a yellow star, but if I can&#39;t get a yellow ship, I wouldn&#39;t be able to move away from my new system (unless I chose a yellow star there too...).\n\n11) smokeytroll42: Build Y2 Smokeytroll42\n\tsmokeytroll42: How does movement work? Do I select what&#146;s in a new system?\n\tBabamots: Yes, you get to pick the marker piece (&quot;star&quot;) for new systems. If you want to want to &quot;discover&quot; a new system right now, you&#39;ll have to choose a large marker because large is the only size missing from your home markers. If you wanted to use your g1 to discover a system with a b3 marker, the command is &quot;discover g1 smokeytroll42 b3 NewSystemName&quot;.\n\tsmokeytroll42: Is that an advisable strategy, or is continuing to build the fleet higher priority at this point in the game?\n\tBabamots: Rather than moving out right now, you should probably either build a y2 (since they just became available) or trade one of your y1s for a b1 (which will prevent me from getting a medium piece for a while). I think you&#39;re better off building y2. Then, if I build y2, you will have the first opportunity to build y3 (though you would need use a yellow to discover a new system first, because building another yellow right away makes a catastrophe).\n\n12) Babamots: Build Y2 Babamots\n\n13) smokeytroll42: Discover Y2 Smokeytroll42 B3 Galileo\n\n14) Babamots: Discover Y1 Babamots B1 Betazed\n\tBabamots: I&#39;m going to try to prevent you form safely building yellows by moving a yellow ship toward you. If you build a y3 in your home system, I will be able to sacrifice y2 to move the y1 twice, reach your home, and call catastrophe on your new y3.\n\tBabamots: You can safely build y3 in Galileo, but you will need to sacrifice a green ship to do it.\n\n15) smokeytroll42: Build Y3 Smokeytroll42\n\n16) Babamots: Sacrifice Y2 Babamots\nMove Y1 Betazed Galileo\nMove Y1 Galileo Smokeytroll42\nCatastrophe Smokeytroll42 Y\n\n17) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\tBabamots: You come out ahead from all that.\n\tsmokeytroll42: catastrophes can be caused if the opponent puts a ship in there as well? Walk me through what happened there.\n\tBabamots: Here&#39;s the position before my move:\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=33405&amp;idx=14\r\n\r\nYou had three yellow ships and I moved in a fourth yellow ship. Because there were four yellow ships, I could call catastrophe and destroy all four of them.\n\tsmokeytroll42: Okay\n\tsmokeytroll42: I missed that one messaged where you warned me about building the Y3\n\n18) Babamots: Build B1 Babamots\n\n19) smokeytroll42: Build G1 Smokeytroll42\n\n20) Babamots: Build B1 Babamots\n\n21) smokeytroll42: Trade Y2 B2 Galileo\n\n22) Babamots: Trade B1 Y1 Babamots\n\n23) smokeytroll42: Trade B2 Y2 Galileo\n\n24) Babamots: Discover B1 Babamots B1 Iconia\n\n25) smokeytroll42: Move G1 Smokeytroll42 Galileo\n\n26) Babamots: Build B2 Babamots\n\n27) smokeytroll42: Build G1 Galileo\n\n28) Babamots: Build B2 Babamots\n\n29) smokeytroll42: Trade Y2 R2 Galileo\n\n30) Babamots: Trade B2 R2 Babamots\n\n31) smokeytroll42: Build G2 Smokeytroll42\n\tBabamots: As soon as my opponent gets a red ship, I always get one too, whether I can see an immediate threat or not. In this case, I&#39;m not going to be able to prevent from from taking my b1 on Iconia (if you&#39;re willing to sacrifice your y1 to get your r2 there).\n\tsmokeytroll42: My thought was to sacrifice the R2 to take the B1 and another in your home system. Is that how that works?\n\tBabamots: Yes, you can sacrifice an r2 to attack twice, but you do have to have a ship in the system where you want to attack. Your ship in that system must be at least as large as the ship you want to attack. You don&#39;t any ships in systems where my ships are, so you can&#39;t attack just yet.\n\tBabamots: The thing I would work on right now, if I were you, is building the g2 ships (since medium is the largest ship available to build in any color).\n\n32) Babamots: Build G2 Babamots\n\n33) smokeytroll42: Build G2 Smokeytroll42\n\n34) Babamots: Discover G1 Babamots Y1 Bajor\n\n35) smokeytroll42: Trade G2 Y2 Smokeytroll42\n\n36) Babamots: Move B2 Babamots Bajor\n\n37) smokeytroll42: Move Y1 Smokeytroll42 Galileo\n\n38) Babamots: Build B2 Bajor\n\n39) smokeytroll42: Discover G2 Smokeytroll42 B3 Newton\n\tBabamots: Right now, we&#39;re both avoiding building the last g2 so that the other person doesn&#39;t get the g3. I suggest trying to split up your green ships a bit so that you can get the g2 and g3 at the same time with a &quot;factory&quot; move:\r\nsacrifice g3 smokeytroll42\r\nbuild g2 (wherever)\r\nbuild g3 (wherever)\r\nbuild g3 (wherever)\n\tBabamots: Of course, I can try to stop you from getting the last g3 by either returning my g2 to the stash (running me very low on green ships) or by discovering a g3 system.\r\n\r\nYou also might want to try to stop me from getting a b3 (for example, by discovering a b3 system).\n\tBabamots: You could even do that factory move now and put the g2 in Galileo and both g3s in your home system. I could do the green catastrophe in Galileo, but the g3 would be safe in your home. \n\n40) Babamots: Discover B2 Bajor G3 Cardassia\n\n41) smokeytroll42: Move R2 Galileo Iconia\n\tsmokeytroll42: Any chance you could type out an example sarafice command for me?\n\n42) Babamots: Build G2 Bajor\n\tBabamots: You have to put each action of a sacrifice move on a new line.\r\n\r\nHere&#39;s a green sacrifice (large ship, three actions). You can build different colors in different systems in the same sacrifice.\r\n\r\nsacrifice g3 smokeytroll42\r\nbuild g2 Newton\r\nbuild g3 Galileo\r\nbuild y2 smokeytroll42\r\n\r\nHere&#39;s a yellow sacrifice (medium ship, two actions). You can move the same ship repeatedly or move multiple ships.\r\n\r\nsacrifice y2 smokeytroll42\r\nmove r2 Iconia Babamots\r\ndiscover g1 Galileo b2 Kepler\r\n\r\nYou don&#39;t have to use all of the actions when you sacrifice a ship. If you sacrifice your red ship now, there would be no attack actions that you could take, but you could sacrifice it if you wanted to for some reason. You would have to state that you wanted to pass instead of taking those actions.\r\n\r\nsacrifice r2 Iconia\r\npass\r\npass\r\n\r\nWhat I expect you want to do on your next turn is capture my b1 in Iconia. For that, you need to specify the current owner of the ship (by putting a &quot;s&quot; after the ship type, since I am the south player).\r\n\r\nattack b1s Iconia\n\n43) smokeytroll42: Attack B1S Iconia\n\tsmokeytroll42: Thanks! That is helpful.\n\n44) Babamots: Move B2 Bajor Galileo\n\n45) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove G1 Galileo Iconia\nMove G1 Galileo Iconia\n\n46) Babamots: Build Y2 Babamots\n\tBabamots: I am planning to my sacrifice r2 to take two of your small ships in Galileo. There are two usual responses to an invasion like this\r\n1) sacrifice y2 in your home to move two little ships out of Galileo\r\n2) Sacrifice y1 in Galileo to move one g1 out of Galileo (you lose the y1 for no reason other than to keep me from getting it). I think this second option is your best move.\n\tBabamots: Trouble is, you move so quickly that my advice comes after your move :-). I need to post advice before I move I guess. I&#39;ll give you a few minutes in case you want to undo (I can just take that y2 from you by sacrificing my r2).\n\n47) smokeytroll42: Trade G2 Y2 Newton\n\tBabamots: I passed and undid it to send you an &quot;It&#39;s your move&quot; notice to give you more chance to undo your move if you like.\n\tsmokeytroll42: Oh, I was thinking that ships of same size were safe, which I guess wouldn&#146;t make sense because you could never capture a three then.\n\n48) Babamots: Sacrifice R2 Babamots\nAttack Y1N Galileo\nPass\n\n49) smokeytroll42: Sacrifice G1 Iconia\nBuild Y3 Newton\n\n50) Babamots: Sacrifice G2 Babamots\nBuild Y3 Galileo\nBuild Y3 Galileo\n\tBabamots: I haven&#39;t decided what to do about it yet, but right now, you are threatening to destroy either of my home system stars. Unless I prevent it, by sacrificing your new y2, you could destroy my green marker by\r\n\r\nsacrifice y2 Newton\r\nmove g1 Iconia Babamots\r\nmove g1 Iconia Babamots\r\ncatastrophe Babamots g\r\n\r\nYou could destroy my yellow marker by\r\n\r\nsacrifice y2 Newton\r\nmove y1 Galileo Iconia\r\nmove y1 Iconia Babamots\r\ncatastrophe Babamots y\r\n\r\nBut I&#39;m deciding how to prevent both of these moves.\n\tBabamots: Those aren&#39;t necessarily great moves since you lose more ships than I do, but it&#39;s always awkward to only have half a home.\n\tsmokeytroll42: Yes lol. That one I actually planned. That&#146;s why I saved the two G1s with the Y2 sacrifice as opposed to the Y1 sacrifice.\n\tBabamots: I&#39;ve decided that I don&#39;t really mind if you do the green catastrophe, but I want to prevent the yellow one and open up my chances for building y3.\n\n51) smokeytroll42: Sacrifice Y3 Newton\nMove Y2 Newton Iconia\nMove Y2 Iconia Babamots\nCatastrophe Babamots Y\nMove R2 Iconia Cardassia\n\tBabamots: If you do the green catastrophe, I think I&#39;ll be able to lock you out of yellow technology pretty quickly, so I don&#39;t mind.\n\tBabamots: Specifically, after your move\r\n\r\nsacrifice y2 Newton \r\nmove g1 Iconia Babamots \r\nmove g1 Iconia Babamots \r\ncatastrophe Babamots g\r\n\r\nmy plan is\r\n\r\nsacrifice g2 Bajor\r\nbuild y2 Galileo\r\nbuild y3 Galileo\r\n\r\nat which point, your only way to get a yellow ship is to trade your g3 at home. But then you can&#39;t build at home nor move any ships (because sacrificing the only ship in your home leavs your home empty and you would lose).\n\tBabamots: You might be better off by moving your r2 someplace to threaten to attack more of my ships (I did just lose my only red after all).\n\tsmokeytroll42: Lots to think about in this game. I like it!\n\tBabamots: I think your best move right now is to get another yellow ship:\r\n\r\nsacrifice g1 Iconia\r\nbuild y3 Newton\n\tsmokeytroll42: I think I need to sacrifice the Y2 either way to do anything useful.\n\tsmokeytroll42: i think you&#146;re right. The catastrophe would be satisfying, but maybe not the best long term move.\n\n52) Babamots: Sacrifice G2 Bajor\nBuild B2 Babamots\nBuild B3 Cardassia\n\n53) smokeytroll42: Build G1 Smokeytroll42\n\tsmokeytroll42: Can you chain events with a sacrifice ie Sacrafice Y3 Newton, move Y2 Newton Iconia, move Y2 Iconia Babamots?\n\tBabamots: Yes, that&#39;s a legitimate move except that you only used two move actions there, so you have one more available. If that&#39;s the type of move you want, you might consider\r\n\r\nsacrifice y3 Newton\r\nmove y2 Newton Iconia\r\nmove y2 Iconia Babamots\r\ncatastrophe Babamots y\r\nmove r2 Iconia Cardassia\r\n\r\nIf you don&#39;t want to use that third action, you will have to pass, like this\r\n\r\nsacrifice y3 Newton\r\nmove y2 Newton Iconia\r\nmove y2 Iconia Babamots\r\ncatastrophe Babamots y\r\npass\n\n54) Babamots: Trade Y1 R1 Galileo\n\n55) smokeytroll42: Trade G1 R1 Smokeytroll42\n\n56) Babamots: Sacrifice R1 Galileo\nAttack R2N Cardassia\n\n\tBabamots: Looks like we could get caught in a cycle :-).\n\tBabamots: Oh no wait, somehow I thought you had taken my b2 in Galileo at some point. Nevermind. No cycle.\n\tBabamots: I mean my b2 in Cardassia. I&#39;m trying to do several things at once, and so I haven&#39;t been looking at the game extra carefully or giving advice. Sorry about that.\n\tBabamots: I&#39;m not sure you can win now. My next move will probably be\r\n\r\nsacrifice y3 Galileo\r\nmove y3 Galileo smokeytroll42\r\nmove b3 Cardassia smokeytroll42\r\nmove b3 Babamots smokeytroll42\r\n\r\nassuming you then attack my y3, for example, my next move can be\r\n\r\nsacrifice r2 Cardassia\r\nattack g3n smokeytroll42\r\nattack y3n smokeytroll42\r\n\r\nand then it&#39;s pretty much over.\n\tsmokeytroll42: I&#146;m willing to call it.\n\tsmokeytroll42: Good game and thanks for all the advice! I&#146;d love lay again if you&#146;re down!\n\nHomeworlds Online (SDG# 33389)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.6, Ended: 2018.2.26\nParticipants: ts52 (S), shoejitsu (N)\nWinner: ts52\n\n1) shoejitsu: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) shoejitsu: Build G1 Shoejitsu\n\tts52: Have a good game! This is for the homeworlds tournament.\n\tshoejitsu: Good luck!\n\n4) ts52: Build G1 Ts52\n\n5) shoejitsu: Trade G1 B1 Shoejitsu\n\n6) ts52: Trade G1 B1 Ts52\n\n7) shoejitsu: Build B2 Shoejitsu\n\n8) ts52: Discover B1 Ts52 G2 Kermit\n\n9) shoejitsu: Build G1 Shoejitsu\n\n10) ts52: Build G1 Ts52\n\n11) shoejitsu: Discover G1 Shoejitsu B3 Howdy\n\n12) ts52: Build B2 Kermit\n\n13) shoejitsu: Trade B2 Y2 Shoejitsu\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) shoejitsu: Build Y1 Shoejitsu\n\n16) ts52: Build Y1 Kermit\n\n17) shoejitsu: Move Y1 Shoejitsu Howdy\n\n18) ts52: Build B2 Kermit\n\n19) shoejitsu: Build Y2 Howdy\n\n20) ts52: Discover Y2 Kermit G3 Robin\n\n21) shoejitsu: Build Y3 Shoejitsu\n\n22) ts52: Build Y3 Kermit\n\n23) shoejitsu: Trade Y2 B2 Howdy\n\n24) ts52: Move B1 Kermit Robin\n\n25) shoejitsu: Trade B1 R1 Shoejitsu\n\n26) ts52: Trade Y1 R1 Kermit\n\n27) shoejitsu: Move Y3 Shoejitsu Howdy\n\n28) ts52: Build B1 Kermit\n\n29) shoejitsu: Trade B2 G2 Howdy\n\n30) ts52: Build B2 Robin\n\n31) shoejitsu: Trade G2 Y2 Howdy\n\n32) ts52: Build B3 Robin\n\tshoejitsu: weird, i didnt see an email for it being my turn... sorry for the wait\n\n\tBabamots: Tournament games are supposed to use 2/2/7 hard time. I can&#39;t see what the time settings are for this game, but since more than a week has passed without a move, the settings must be different from tournament regulation. As it turned out, the result of this game could not affect tournament bracket seeding, and the next phase of the tournament is already well underway. For completeness, I&#39;m going to record that ts52 won this game by timeout.\n\tts52: Huh, I must&#39;ve missed setting hard time. Sorry about that. I&#39;ll force the termination of this game.\n\nHomeworlds Online (SDG# 33408)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.11.6, Ended: 2017.11.16\nParticipants: Remneb (S), shoejitsu (N)\nWinner: Remneb\n\n1) shoejitsu: Homeworld B3 G2 Y3\n\tBabamots: Is this game for the tournament? Want me to record it?\n\n2) Remneb: Homeworld B1 R1 G3 *\n\tshoejitsu: just submitted the game start form. Good luck!\n\n3) shoejitsu: Build Y1 Shoejitsu\n\tRemneb: Have a good game !\n\n4) Remneb: Build G1 Remneb\n\n5) shoejitsu: Build Y1 Shoejitsu\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) shoejitsu: Discover Y1 Shoejitsu B1 Hi\n\n8) Remneb: Trade G3 R3 Remneb\n\n9) shoejitsu: Trade Y1 B1 Shoejitsu\n\n10) Remneb: Move R3 Remneb Shoejitsu\n\n11) shoejitsu: Move B1 Shoejitsu Remneb\n\n12) Remneb: Attack Y3 Shoejitsu\n\n\tRemneb: I must say that i was quit surprise by your move, Thanks for the game anyway. Will be my last one of the tournament.\r\n\n\tshoejitsu: I&#39;m a noob, I thought I could continue as long as there was any ship still in the homeworld... Oh well now I know. I also didn&#39;t know another good move besides continuously building and giving you more ships to attack haha \n\tshoejitsu: i recorded the match, thanks for the game, even it was a little embarrassing \n\nHomeworlds Online (SDG# 33423)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.9, Ended: 2017.11.13\nParticipants: smokeytroll42 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y1 B3 G3\n\n2) smokeytroll42: Homeworld B2 G1 Y3\n\n3) Babamots: Build G1 Babamots\n\tBabamots: In case you&#39;re curious, I like to have yellow for a home system marker for two reasons:\r\n* It gives me the opportunity to discover a new system about one turn earlier than if I didn&#39;t start out with yellow. However, it also means I have to resist the temptation to discover before it&#39;s a good idea.\r\n* If my opponent wants to destroy my home by catastrophe, they normally have to have a yellow ship to sacrifice--in order to get ships into my home faster than I can attack them. To destroy my blue marker, they need a yellow for sacrifice and three blues. To destroy my yellow, they need four yellows. I believe it&#39;s usually slightly harder to get four ships of one color than to get three ships of one color and one of another.\n\n4) smokeytroll42: Build Y1 Smokeytroll42\n\tsmokeytroll42: Ok. \n\n5) Babamots: Build G1 Babamots\n\tBabamots: Your homeworld setup is largely a matter of taste. I don&#39;t think there&#39;s anything wrong with yours at all :-).\n\n6) smokeytroll42: Build Y1 Smokeytroll42\n\tsmokeytroll42: Yeah, I wanted to try something different from the last game. It seemed like the red Homeworld didn&#146;t do me much good.\n\n7) Babamots: Discover G1 Babamots B2 Sauria\n\tDraw5PlayAll: I like to be able to put yellow ships in my homeworld, thus the blue+red star and green ship.\n\n8) smokeytroll42: Discover Y1 Smokeytroll42 B3 Leo\n\n9) Babamots: Build G2 Sauria\n\n10) smokeytroll42: Build Y2 Smokeytroll42\n\n11) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Sauria\nBuild G3 Babamots\n\tBabamots: So here&#39;s a factory in action. I effectively get two build actions at once. Taking up the last of the medium greens makes it more difficult for you to get any green ships at all.\n\n12) smokeytroll42: Move Y2 Smokeytroll42 Leo\n\n13) Babamots: Trade G2 Y2 Sauria\n\tsmokeytroll42: Cool\n\n14) smokeytroll42: Trade Y2 G2 Leo\n\tBabamots: Even though it gives me a chance to get a g3, you might want to trade y2 for g2 in Leo while you have the chance. Not having any green ships would be rough.\r\n\r\nYou could also trade something (probably a y1) for a red ship. Either way, I&#39;m pretty sure it&#39;s time to diversify.\n\tsmokeytroll42: That makes sense. Seems like going by too hard in one color really stunts your growth.\n\n15) Babamots: Trade G2 R2 Babamots\n\n16) smokeytroll42: Trade G2 R2 Leo\n\tBabamots: I needed to remove a green from my home immediately since otherwise you would win by sacrificing your y3 to move in your g2 for a catastrophe.\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Sauria\nBuild G3 Babamots\n\tBabamots: That&#39;s probably not a great move since I just got a red. You don&#39;t want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I&#39;ll be able to capture something. I&#39;ll wait a while to move in case you want to undo.\n\tBabamots: That&#39;s probably not a great move since I just got a red. You don&#39;t want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I&#39;ll be able to capture something. I&#39;ll wait a while to move in case you want to undo.\n\tBabamots: That&#39;s probably not a great move since I just got a red. You don&#39;t want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I&#39;ll be able to capture something. I&#39;ll wait a while to move in case you want to undo.\n\n18) smokeytroll42: Build Y2 Smokeytroll42\n\tsmokeytroll42: Thanks! My thought process was to trade the Y2 for an R2, but I realized after that you could still get your R2 to Leo before I could get one. I suppose the obvious move would be just to trade one and not build a new one.\n\n19) Babamots: Discover G2 Sauria B3 Risa\n\tBabamots: I think trading y1 for r1 at your home system was the best move (you could sacrifice it if I try to attack you elsewhere). Trading away your green means you have no green again. More generally, I try not to trade a ship that is already the only one of its color in its system (let alone in my whole fleet).\n\n20) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\n21) Babamots: Sacrifice G3 Babamots\nBuild G3 Babamots\nBuild G3 Risa\nBuild R1 Babamots\n\tBabamots: For now, I&#39;m just working on getting as many ships as I can as fast as I can while trying to prevent you from getting the big ones. The next phase will be to spread out my greens so I can build some g3.\r\nYour best move now might be to trade y3 for g3 at home. After doing that, it won&#39;t be safe for you to *build* the other g3 at home (since I could cause a catastrophe), but at least you would have one green ship.\r\nAlternatively, you could discover a g3 system so that I can&#39;t get two new g3 ships.\n\n22) smokeytroll42: Build Y2 Smokeytroll42\n\n23) Babamots: Trade G3 Y3 Risa\n\n\tsmokeytroll42: Haha, we&#146;ll call it a draw? Just kidding. I&#146;ll resign, but I&#146;m down for another. I&#146;m very much appreciating your continued mentoring.\n\nHomeworlds Online (SDG# 33218)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.10, Ended: 2017.12.4\nParticipants: smokeytroll42 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) smokeytroll42: Homeworld G3 Y1 B3\n\n3) Felix: Build G1 Felix\n\tFelix: Hey there. First game?\n\n4) smokeytroll42: Build B1 Smokeytroll42\n\n5) Felix: Trade G1 Y1 Felix\n\tsmokeytroll42: Game 3 actually. Or maybe 2.5. Game 2 is still in progress.\n\n6) smokeytroll42: Build B1 Smokeytroll42\n\n7) Felix: Build Y1 Felix\n\n8) smokeytroll42: Discover B1 Smokeytroll42 G2 Peace\n\n9) Felix: Build Y2 Felix\n\n10) smokeytroll42: Build B1 Peace\n\n11) Felix: Discover Y1 Felix G1 Out\n\n12) smokeytroll42: Build B2 Peace\n\n13) Felix: Build Y2 Out\n\n14) smokeytroll42: Trade B2 Y2 Peace\n\n15) Felix: Move Y1 Out Peace\n\n16) smokeytroll42: Trade B1 R1 Peace\n\n17) Felix: Discover Y1 Felix B1 Engaurde\n\n18) smokeytroll42: Attack Y1N Peace\n\n19) Felix: Sacrifice G3 Felix\nBuild Y3 Engaurde\nBuild Y3 Out\nBuild Y3 Felix\n\n20) smokeytroll42: Discover Y1 Peace G1 Harmony\n\n21) Felix: Trade Y1 G1 Engaurde\n\n22) smokeytroll42: Build Y1 Harmony\n\n23) Felix: Trade Y2 G2 Felix\n\n24) smokeytroll42: Build Y2 Peace\n\n25) Felix: Build G2 Felix\n\n26) smokeytroll42: Trade B3 G3 Smokeytroll42\n\n27) Felix: S Y2 Out\nM G1 Engaurde Peace\nM G1 Peace Smokeytroll42\n\n28) smokeytroll42: Trade G3 R3 Smokeytroll42\n\n29) Felix: Sacrifice G2 Felix\nBuild G2 Smokeytroll42\nBuild G3 Smokeytroll42\nCatastrophe Smokeytroll42 G\n\n30) smokeytroll42: Trade B1 G1 Smokeytroll42\n\n31) Felix: Build Y2 Out\n\n32) smokeytroll42: Build R1 Smokeytroll42\n\n33) Felix: Discover Y2 Out R2 In\n\n34) smokeytroll42: Trade Y2 R2 Peace\n\n35) Felix: Move Y2 In Smokeytroll42\n\n\tsmokeytroll42: I don&#146;t think I have a move that can save me here...\n\tFelix: I don&#39;t think that you do!\n\tsmokeytroll42: Well good game!\n\tFelix: Good game! I hope you had fun. Happy to rematch any time.\n\nHomeworlds Online (SDG# 33394)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.11, Ended: 2017.11.15\nParticipants: icalvinist (S), wil (N)\nWinner: icalvinist\n\n1) wil: H Y2 B1 G3\n\n2) icalvinist: Homeworld B2 R1 G3\n\n3) wil: B G1 Wil\n\twil: Thx for the game\n\twil: Short universe?\n\n4) icalvinist: Build G1 Icalvinist\n\n5) wil: T G1 B1 Wil\n\n6) icalvinist: Trade G1 Y1 Icalvinist\n\n7) wil: B B1 Wil\n\n8) icalvinist: Build G1 Icalvinist\n\n9) wil: D B1 Wil G3 G3\n\n10) icalvinist: Trade G3 B3 Icalvinist\n\n11) wil: B B2 G3\n\ticalvinist: Hey no problem. Yea, let&#39;s mix it up with some close quarters interaction!\n\n12) icalvinist: Build B2 Icalvinist\n\twil: No problem just checking. Let&#39;s have at it!\n\n13) wil: B B3 Wil\n\n14) icalvinist: Discover B3 Icalvinist Y3 Odin\n\n15) wil: T B2 Y2 G3\n\n16) icalvinist: Move B3 Odin Wil\nCatastrophe Wil B\n\n17) wil: B G1 Wil\n\n18) icalvinist: Build G1 Icalvinist\n\n19) wil: B B1 G3\n\n20) icalvinist: Discover Y1 Icalvinist G3 Loki\n\n21) wil: B B1 G3\n\n22) icalvinist: Trade B2 Y2 Icalvinist\n\n23) wil: M B1 G3 Wil\n\n24) icalvinist: Build Y1 Icalvinist\n\n25) wil: T G3 R3 Wil\n\n26) icalvinist: Trade Y2 R2 Icalvinist\n\n27) wil: B B2 G3\n\n28) icalvinist: Build Y1 Loki\n\n29) wil: T B2 R2 G3\n\n30) icalvinist: Build Y2 Loki\n\n31) wil: B Y3 G3\n\n32) icalvinist: Build Y3 Icalvinist\n\n33) wil: Sacrifice Y3 G3\nDiscover Y2 G3 G2 G2\nMove B1 G3 G2\nMove Y2 G2 Loki\nCatastrophe Loki Y\n\n34) icalvinist: Build G2 Icalvinist\n\n35) wil: Build B2 G3\n\n36) icalvinist: Discover Y1 Icalvinist G3 Loki\n\n37) wil: Build G2 Wil\n\n38) icalvinist: Sacrifice G2 Icalvinist\nBuild Y1 Loki\nBuild Y1 Loki\n\n39) wil: Trade B2 Y2 G3\n\n40) icalvinist: Sacrifice Y3 Icalvinist\nMove Y1 Loki Wil\nMove Y1 Loki Wil\nMove Y1 Loki Wil\nCatastrophe Wil Y\n\n\ticalvinist: Good game!\n\twil: challenge anytime!\n\nHomeworlds Online (SDG# 33431)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.13, Ended: 2017.12.6\nParticipants: smokeytroll42 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\n2) smokeytroll42: Homeworld R1 B2 G3\n\tBabamots: OK, my turn for the banker system.\n\n3) Babamots: Build G1 Babamots\n\tBabamots: Or we can both be bankers :-).\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\tsmokeytroll42: I&#39;m a little confused on the theory behind the starting homeworlds. Is it determined more color or size? \n\n5) Babamots: Trade G1 R1 Babamots\n\tDraw5PlayAll: With a yellow star you can move on your third turn, but you cannot safely keep yellow ships there. With a red star you can resist certain kinds of attacks without actually needing to get a red ship, though it is easy to get cocky with this.\n\tBabamots: Andy introduced 3 terms to refer to the size combinations of home markers:\r\n\r\nBanker: small, medium\r\nGoldilocks: small, large\r\nFortress: medium, large\r\n\r\nA brief explanation for these names is on page two of these rules:\r\nhttp://www.looneylabs.com/sites/default/files/rules/Homeworlds.pdf\r\n\r\nI haven&#39;t read much discussion on starting colors, but it&#39;s pretty obvious that you want to start with green and blue (one of these can be your ship). The third color (red vs yellow) is what&#39;s worth debating.\n\n6) smokeytroll42: Trade G1 R1 Smokeytroll42\n\tBabamots: If you don&#39;t get a red ship now, you could get frozen out for a while.\n\n7) Babamots: Build R2 Babamots\n\n8) smokeytroll42: Build R2 Smokeytroll42\n\n9) Babamots: Build R2 Babamots\n\tsmokeytroll42: I think we&#146;re in an arms race.\n\tBabamots: It&#39;s been my experience that players compete for whatever color has the largest ships available.\n\n10) smokeytroll42: Trade R1 Y1 Smokeytroll42\n\n11) Babamots: Discover R2 Babamots B3 Galorndon\n\n12) smokeytroll42: Build Y1 Smokeytroll42\n\n13) Babamots: Trade R2 Y2 Babamots\n\n14) smokeytroll42: Build Y2 Smokeytroll42\n\n15) Babamots: Discover Y2 Babamots G3 Vulcan\n\n16) smokeytroll42: Discover Y2 Smokeytroll42 B3 Risa\n\n17) Babamots: Build R1 Babamots\n\tBabamots: I don&#39;t think you want to do that. My move should be\r\n\r\nsacrifice r1 Babamots\r\nattack r2s Vulcan\r\n\r\nFeel free to undo and try something else.\n\n18) smokeytroll42: Move Y1 Smokeytroll42 Risa\n\tsmokeytroll42: I always forget how red sacrifice works. \n\n19) Babamots: Discover R1 Babamots Y3 Omicrontheta\n\n20) smokeytroll42: Move R2 Smokeytroll42 Omicrontheta\n\tDraw5PlayAll: Is Risa the planet that initiated the augmented reality game in TNG: The Game?\n\tsmokeytroll42: It&#146;s a &#147;pleasure&#148; Planet that Picard goes on vacation to for a few days in TNG. Naturally things go awry.\n\n21) Babamots: Sacrifice G3 Babamots\nBuild R2 Galorndon\nBuild R3 Omicrontheta\nBuild R3 Babamots\n\tBabamots: Also, yes, Riker was on Risa when the brain-control game device was given to him.\n\n22) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild R3 Omicrontheta\nCatastrophe Omicrontheta R\nBuild Y2 Risa\nBuild Y3 Smokeytroll42\n\tBabamots: My intended next move is\r\n\r\nsacrifice g3 Babamots\r\nbuild r2 OmicronTheta\r\nbuild r3 Galorndon\r\nbuild r3 Babamots\r\n\r\nThis gives me an additional large ship, and you are not free to take the last r3 because building it in your home system will allow me to cause a red catastrophe there.\n\tBabamots: You have a way to keep me from getting that additional large ship and a (different) way to make it so I can complete that move, but so that you can safely build an r3 afterward.\r\nCan you see how to do these things?\n\tsmokeytroll42: Discover an R3 Star? The second, just move the R2 out of Smokeytroll42\n\n23) Babamots: Build Y3 Vulcan\n\tBabamots: Sorry, I had a lot going on today and tomorrow looks busy too.\r\n\r\nThe reason I think you should be so concerned about my next move is that it gives me a large ship advantage, which is usually a big deal.\r\n\r\nUnfortunately, discovering only one r3 star won&#39;t prevent me from building the other two. You could discover two r3 stars if you&#39;re willing to sacrifice your y2, however. If you discover two r3 stars, there will only be one r3 piece left, and I can only build one (and if I sacrifice a g3 to do it, I have the same number of large ships as before).\r\n\r\nAnother option for (temporarily) blocking my move is to trade your r2 for another color (I would have to build both r2s before getting any r3). This probably isn&#39;t a great move since it leaves you with no red at all, which allows me to build the r3s at my leisure.\r\nA possibly better option is to get your r2 to a green system so that you can safely build an r3 if I build the r2. Since all the g3 are used, you would need to sacrifice y2 to move r2 twice to a g2 or g1.\r\n\r\nYou may want to instead move your r2 to OmicronTheta. If I build an r2, you can then move your r2 to a new green star and be ready to build the last r3. If I don&#39;t build an r2, you can attack my r1 (unless I run for it.)\r\n\r\nI&#39;m not positive that&#39;s your best move, but I probably won&#39;t have time to look for better moves for you until tomorrow evening.\n\tsmokeytroll42: No worries! I understand. \n\n24) smokeytroll42: Discover Y1 Risa G2 Ceti Alpha V\n\tBabamots: I see a problem with the plan I suggested (but I don&#39;t have a better idea for you yet)\r\n\r\nme:\r\nsacrifice g3 Babamots\r\nbuild r2 Galorndon\r\nbuild r3 OmicronTheta\r\nbuild r3 Babamots\r\n\r\nyou:\r\ndiscover r2 OmicronTheta g1 BestNameEver\r\n(planning to build an r3 since I won&#39;t be able to)\r\n\r\nme: \r\nmove r3 OmicronTheta BestNameEver\r\n(I&#39;m ready to capture your r3 as soon as you build it or I&#39;ll take your r2 if you don&#39;t build the r3)\n\tsmokeytroll42: Well, we can let it play out. Sorry, I also had a busy one today. \n\tBabamots: Today was even more exhausting that yesterday. I should have time to take a good look at the game tomorrow.\r\n\r\nAnother move you could consider:\r\n\r\nsacrifice g3 smoketroll42\r\nbuild r3 OmicronTheta\r\ncatastrophe OmicronTheta r\r\nbuild y2 Risa\r\nbuild y3 smoketroll42\r\n\r\nI haven&#39;t worked out the consequences, but it does destroy the r3 I&#39;m about to build and you still have a large ship. Unfortunately, I would then be able to build y3, but (due to the destruction of OmicronTheta) there will be another y3 piece around. Maybe you can beat me to it? I&#39;m not sure yet.\n\n25) Babamots: Pass\n\tBabamots: I wanted to give you plenty of time to change your mind rather than holding you to trying to take my bad advice :-P.\n\n26) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\tsmokeytroll42: No worries! I appreciate all the mentoring!\n\n27) Babamots: Sacrifice Y2 Vulcan\nMove R2 Galorndon Ceti\nMove R2 Ceti Risa\n\tsmokeytroll42: So I&#39;m thinking Discover a Green Star with Y1 from Risa, then build the Y3 there?\n\n28) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild Y2 Ceti\nBuild Y3 Smokeytroll42\nBuild Y3 Risa\n\tBabamots: Sorry, another busy day (I should be more responsive the rest of this week).\r\n\r\nIf you stick with your most recent move, I will win in two moves. Would you like to try to figure out how?\n\n29) Babamots: Sacrifice R2 Galorndon\nAttack Y2S Risa\nAttack Y2S Risa\n\tBabamots: If you want to know why I can win from here, read the following backward (bottom to top, right to left)\r\n\r\ny 24llortyekoms ehportsatac\r\nssap\r\n\r\n:evom ehportsatac eht ekam ylpmis nac I dna emoh ruoy ni spihs wolley ruof tsael ta eb lliw ereht ,ecrofnier ot emoh ruoy ot spihs rehto ruoy fo rebmun yna evom uoy fI )3\r\n\r\n.niw I dna emoh ta spihs on evah dluow uoY .metsys emoh ruoy ni spihs eht fo htob kcatta ot 2r na ecifircas nac I )emoh ruoy ni noitautis eht egnahc t&#39;nseod taht esle gnihtyna ro iteC ni 3y a dliub ro( ,roloc rehtona rof spihs emoh ruoy fo rehtie edart uoy fI )2\r\n\r\n.niw I dna metsys emoh ruoy ni spihs on evah uoy nehT\r\n\r\ny 24llortyekoms ehportsatac\r\n24llortyekoms nacluV 2y evom\r\n\r\nsi evom gninniw ym ,3y ym kcatta uoy fI )1\r\n\r\n24llortyekoms nacluV 3y evom\r\n\r\neb dluohs evom txen yM\n\n30) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\tBabamots: Rather than sitting around with an expired timer (wondering if you want to undo), I&#39;ll just pass this turn. I will win if you build that y3.\n\tsmokeytroll42: mmm I&#39;m trying to work it out. I&#39;ll give it some more thought throughout the day tomorrow\n\tBabamots: Take your time. I won&#39;t end the game even if your timer runs out.\n\tsmokeytroll42: I haven&#39;t had much time to sit and look it over. Sorry for the delay\n\tsmokeytroll42: Okay, so after processing all that, I don&#39;t have a move to survive?\n\tBabamots: You can survive, but you need to defend your home immediately. You need to trade one of your yellow ships for another color (either y3 for g3 or y1 for g1 is best).\n\tsmokeytroll42: Oh right, to protect from the catastrophe.\n\n31) Babamots: Trade Y2 G2 Risa\n\n32) smokeytroll42: Trade Y3 R3 Risa\n\tBabamots: Looking at it 5 seconds later, mine was not such a good move. It doesn&#39;t actually stop you form getting the y3 ships like I thought (in fact, you can get both). One move you may want to consider is something like\r\n\r\nsacrifice g3 smokeytroll42\r\nbuild y2 Ceti\r\nbuild y3 smokeytroll42\r\nbuild y3 Risa\n\n33) Babamots: Sacrifice G2 Risa\nBuild R1 Risa\nBuild R2 Risa\nCatastrophe Risa R\n\n34) smokeytroll42: Build G1 Smokeytroll42\n\n35) Babamots: Trade R3 G3 Babamots\n\tBabamots: I didn&#39;t notice until now that my advice for your last turn should have come with a warning. It made it so you again have only yellow in your home system. That was OK when I only had one yellow ship, but as soon as I captured your yellow ships, you were in danger of losing by catastrophe again. You should trade one of your home-system yellow ships for a green again. It might seem like that move is just running in circles, but remember that you gained two ships (a medium and a large) in the process.\r\n\r\nIf you don&#39;t undo, I&#39;ll win.\n\n36) smokeytroll42: Discover G1 Smokeytroll42 B3 Mintakaiii\n\tBabamots: Specifically, my move now should be\r\n\r\nsacrifice y2 Risa\r\nmove y3 Vulcan smokeytroll42\r\nmove y2 Risa smokeytroll42\r\ncatastrophe smokeytroll42 y\n\n37) Babamots: Build R1 Babamots\n\n38) smokeytroll42: Build Y2 Smokeytroll42\n\n39) Babamots: Build R2 Babamots\n\n40) smokeytroll42: Discover Y1 Ceti B3 Qo&#39;nos\n\tsmokeytroll42: Ah, I need to remember that you build wherever there&#146;s a green ship.\n\tBabamots: I&#39;m a big fan of green sacrifices. They can take your opponent off guard pretty often.\n\tBabamots: And remember that the build actions don&#39;t need to happen in the same system where the sacrifice is. I just happened to sacrifice and build in the same system this time.\n\tsmokeytroll42: Does there have to a green star or ship in the system where the build action occurs? Same question with attacking or trading?\n\tBabamots: This is important to understand, so here&#39;s a quick summary of how to use colors. There are three kinds of turns:\r\n\r\n1) &quot;Regular&quot;\r\nIn a normal turn (without a sacrifice), one of your ships uses the technology of a marker in that ship&#39;s system or the technology of any ship that you own in that system. If you have a blue ship (or marker) in a system, any of your ships in that system can be traded for another color. If you have a yellow ship (or marker) in a system, any of your ships in that system can move to another system.\r\n\r\n2) &quot;Sacrifice&quot;\r\nWhen you do a sacrifice, you destroy one of your ships and use its technology to perform a number of actions up to the size of the ship you destroyed. The actions can be taken in any system (whether you have the sacrificed technology there or not).\r\n\r\n3) &quot;Pass&quot;\r\nYou don&#39;t do anything at all.\n\tBabamots: So the answer to your question is no (assuming we&#39;re talking about a sacrifice). There does not need to be green in a system where you build after a green sacrifice.\n\tsmokeytroll42: Yes, I believe that does!\n\tsmokeytroll42: Actually maybe not. Do you still need a ship, of some color, in the system to do the sacrifice action in that system? Like right now I couldn&#146;t: \r\n\r\nSacrifice g3 smokeytroll42\r\nBuild R1 Babamots\r\nBuild R2 Babamots \r\nCatastrophe Babamots r\n\tBabamots: I think of it like this: you have to apply every action to one of your own ships (whether that action came from a sacrifice or &quot;regular&quot; turn). Applying green to a ship means you build a new ship of that ship&#39;s color. You don&#39;t have a ship in my home system, so you can&#39;t build there.\r\n\r\nRed is a special case where you pick one of your own ships to do the attacking (whichever is the largest in the system) and you also have to pick an enemy target ship.\n\tBabamots: So, yes, before you can build a ship, you need to have a ship of the same color in the system where you build.\n\tsmokeytroll42: In other words, I would need a red in Babamots for that move to work?\n\tBabamots: Yes, you would need a red ship in Babamots in order to build a red ship in Babamots.\n\n41) Babamots: Move Y2 Risa Ceti\n\n42) smokeytroll42: Move Y2 Ceti Mintakaiii\n\n43) Babamots: Build Y3 Ceti\n\n44) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove Y1 Qo&#39;nos Ceti\nMove Y2 Mintakaiii Ceti\nCatastrophe Ceti Y\n\n45) Babamots: Move R2 Babamots Mintakaiii\n\tBabamots: You&#39;ve done a good job of using up the small and medium pieces of the color that you have the most control of (yellow). Unless I can find a good way to block you, you will be able to build a large yellow ship, but only if you spread out your current yellow ships. Right now, if you build a y3 at your home or in Ceti, I can move in my y2 for a catastrophe. If you move one of your yellows out of those systems, you could build safely.\r\n\r\nI think the main weakness of your position right now is that you don&#39;t have any red ships. Right now, if I move my y2 into Ceti, then I&#39;ll be able to capture one of your ships be sacrificing my r1 in Babamots (unless you sacrifice a yellow in order to remove both of your ships from Ceti in the same move). Getting you to sacrifice a piece you didn&#39;t want to is a small victory for me.\n\n46) smokeytroll42: Sacrifice G1 Mintakaiii\nBuild G1 Smokeytroll42\n\n47) Babamots: Move R1 Babamots Vulcan\n\n48) smokeytroll42: Build Y1 Smokeytroll42\n\tBabamots: Your best responses are probably\r\n\r\n1) Moving your y2 away from Ceti so I can&#39;t attack it. After that, I think we get to safely build one y3 each.\r\n2) Building a y3, either at home or in Ceti. If you build in Ceti, I plan to build a y3 there as well and catastrophe all of them. If you build a y3 at home, I will either attack your y2 in Ceti or possibly move my y3 into your home system for the catastrophe.\n\n49) Babamots: Sacrifice G3 Babamots\nBuild R2 Mintakaiii\nBuild R2 Vulcan\nBuild R3 Babamots\n\n50) smokeytroll42: Discover G1 Smokeytroll42 Y3 Arrakis\n\tsmokeytroll42: So I could sacrifice Y2 in the Homeworld to move in 2 yellows for catastrophe at Ceti, or build Y3 MintakaIII.\n\tBabamots: Yes, I should have mentioned that catastrophe option earlier. I thought that was building is best for you, but I&#39;ve realized that you will lose after that. Consider this continuation:\r\n\r\nyou\r\nbuild y3 MintakaIII\r\n\r\nme\r\nsacrifice y3 Ceti\r\nmove g3 Babamots Vulcan\r\nmove y3 Vulcan smokeytroll42\r\nmove g3 Vulcan smokeytroll42\r\n\r\nYou don&#39;t have a way to win from this point:\r\n\r\n1) If you attack one of my larges, I sacrifice my r2 to attack both your g3 and whichever large you just attacked. I&#39;ll win in a few moves by attacking the rest of your home ships.\r\n\r\n2) If you try to defend by moving your new y3 into your home, I can sacrifice my r2 to attack both your g3 and y3. Again, I can attack your ships freely until I win.\r\n\r\nSo to sum up, you should do the catastrophe.\n\tBabamots: And I love &quot;Who Watches the Watchers&quot; :-)\n\tsmokeytroll42: Yes, it&#146;s one of my favs from my edgy college skeptic days. And still is.\n\n51) Babamots: Build R3 Vulcan\n\n\tsmokeytroll42: Is there any way to prevent the impending attack on my Homeworld?\n\tBabamots: I&#39;m afraid you&#39;re pretty doomed. You didn&#39;t have a chance to get red ships, and since I&#39;ve taken most of them, I&#39;ll win soon after I can move two large ships into your home at once.\r\n\r\nI think the best thing you can do to prolong the game is to build y2. My current plan goes like this:\r\n\r\n1)\r\ntrade r2 y2 MintakaIII\r\n\r\n2)\r\nsacrifice y2 MintakaIII\r\nmove y3 Vulcan smokeytroll42\r\nmove r3 Vulcan smokeytroll42\r\n\r\n(I assume you will attack one of my large ships, say my r3)\r\n\r\n3)\r\nsacrifice r2 MinktakaIII\r\nattack r3s smokeytroll42\r\nattack g3s smokeytroll42\r\n\r\nIf you build a y2 now, my second move will put 4 yellows in your home, and you can trigger a yellow catastrophe and attack my r3. My backup plan will be something like\r\n\r\n2)\r\ntrade r3 g3 Babamots\r\n\r\n3)\r\nsacrifice y3 Vulcan\r\nmove g3 Babamots Vulcan\r\nmove g3 Vulcan smokeytroll42\r\nmove r3 Vulcan smokeytroll42\r\n\r\nI would need to trade the r3 for g3 (or b3) so that you couldn&#39;t destroy my invading ships by trading your home g3 for r3.\r\n\r\nI hope you&#39;ve enjoyed the game. Playing a losing game over the course of weeks can be very frustrating.\n\tBabamots: &quot;Measure of a Man&quot; is usually my favorite episode.\n\tsmokeytroll42: Well we can just call it then. To be fair, since I&#146;m still new to the game, I&#146;m not seeing my own demise so clearly, so it&#146;s not really a big deal. Plus, the only to get better is to keep playing. I&#146;m up for a rematch if you are. As always, I appreciate the advice.\n\tBabamots: I&#39;m happy to play again. If you&#39;d like to look for another player of similar skill level, you could make an undirected challenge (nothing in the &quot;Challenge whom&quot; section) and in the &quot;Notes&quot; section say you&#39;re looking for another newish player.\n\tsmokeytroll42: Ok, I sent you the challenge. I&#146;ll give that try next time I start a new game. \n\nHomeworlds Online (SDG# 33427)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.15, Ended: 2017.11.15\nParticipants: icalvinist (S), wil (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 33436)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.15, Ended: 2017.11.18\nParticipants: wil (S), icalvinist (N)\nWinner: wil\n\n1) icalvinist: Homeworld B2 Y1 G3\n\n2) wil: Homeworld B3 Y2 G3\n\twil: thx\r\n\n\n3) icalvinist: Build G1 Icalvinist\n\n4) wil: Build G1 Wil\n\n5) icalvinist: Discover G1 Icalvinist Y3 Odin\n\n6) wil: Trade G1 Y1 Wil\n\n7) icalvinist: Build G1 Icalvinist\n\n8) wil: Build Y1 Wil\n\n9) icalvinist: Discover G1 Icalvinist Y3 Tyr\n\n10) wil: Discover Y1 Wil G1 G1\n\n11) icalvinist: Build G2 Icalvinist\n\n12) wil: Sacrifice G3 Wil\nBuild Y2 G1\nBuild Y2 G1\nBuild Y3 Wil\n\n13) icalvinist: Sacrifice G3 Icalvinist\nBuild G2 Icalvinist\nBuild G2 Icalvinist\nBuild G3 Odin\n\n14) wil: Trade Y3 G3 Wil\n\n15) icalvinist: Build G3 Tyr\n\n16) wil: Build Y3 Wil\n\n17) icalvinist: Trade G2 B2 Icalvinist\n\twil: never the same game twice...always interesting...\n\twil: bout to get dicey\n\n18) wil: Build G2 Wil\n\ticalvinist: I&#39;m pretty new to the Homeworlds game, but man are you right about it never being the same game twice. Truly THE hidden gem of tabletop gaming\n\ticalvinist: Hope you don&#39;t mind my style of play. I feel like I&#39;m still figuring things out, but I&#39;m having a blast just trying moves out\n\n19) icalvinist: Build B1 Icalvinist\n\twil: I believe in the first 50 games you should lose 40..just to learn...you want to see how folks beat you in the end...you want to see the different attacks...and then try using them against someone else..and then you get to learn the counters, and then you try the counters and see how to stop them...you don&#39;t learn a thing by winning\n\n20) wil: Trade G2 B2 Wil\n\n21) icalvinist: Sacrifice B1 Icalvinist\nTrade G3 R3 Odin\n\n22) wil: Discover Y2 G1 G3 G3\n\n23) icalvinist: Sacrifice G3 Tyr\nBuild G2 Odin\nBuild G3 Tyr\nBuild R1 Odin\n\n24) wil: Trade Y1 R1 Wil\n\n25) icalvinist: Sacrifice B2 Icalvinist\nTrade G1 Y1 Odin\nTrade G2 B2 Icalvinist\n\n26) wil: Build R1 Wil\n\n27) icalvinist: Sacrifice G3 Tyr\nBuild G1 Odin\nBuild G2 Tyr\nBuild G3 Icalvinist\n\n28) wil: Sacrifice Y2 G3\nMove Y1 G1 Odin\nMove Y2 G1 Odin\nCatastrophe Odin Y\n\n29) icalvinist: Trade G2 Y2 Icalvinist\n\n30) wil: Build R1 Wil\n\n31) icalvinist: Discover G1 Tyr Y1 Odin\n\n32) wil: Move R1 Wil Odin\n\n33) icalvinist: Discover G1 Odin Y3 Thor\n\n34) wil: Build R2 Wil\n\n35) icalvinist: Trade G3 R3 Icalvinist\n\n36) wil: Move R1 Odin Thor\n\n37) icalvinist: Sacrifice G1 Thor\nBuild G1 Tyr\n\n38) wil: Discover R1 Wil B1 B1\n\n39) icalvinist: Discover R3 Icalvinist G3 Loki\n\n40) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 B1\nBuild R3 Thor\n\n41) icalvinist: Sacrifice Y2 Icalvinist\nMove R3 Loki B1\nMove R3 B1 Wil\nCatastrophe Wil R\n\n42) wil: Move R3 Thor Icalvinist\n\n43) icalvinist: Move G2 Tyr Icalvinist\n\n44) wil: Sacrifice R2 B1\nAttack B2 Icalvinist\nAttack G2 Icalvinist\n\twil: oops the pending doom was accelerated...\n\n\ticalvinist: good game!\n\twil: anytime you are up for it...\n\nHomeworlds Online (SDG# 33440)\nVariants: &quot;Hard time&quot;\nStarted: 2017.11.17, Ended: 2017.12.18\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tdlwillson: Long time, no see! How&#39;ve you been?\n\n3) dlwillson: B G1 Dlwillson\n\n4) Felix: Build G1 Felix\n\tFelix: It has been a while indeed! Ive been well. Took me a long time to knock Wil off the throne! And I haven&#39;t had as much time for games in the Holidays. How have you been?\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tdlwillson: I&#39;ve been well. My wife and I went camping with my baby sister and her husband in Moab, Utah. It was great.\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: Nice! That sounds like a great time. Weather&#39;s been nice here, weirdly so for November. I need to get out and camp!\n\n7) dlwillson: B G1 Dlwillson\n\tdlwillson: Let&#39;s do ... yellow! Yellow, yellow, bo-bellow, banana-fana-fo-fellow, me my mo-mellow, yellow.\n\n8) Felix: B G1 Felix\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) Felix: Trade G1 R1 Felix\n\tFelix: I prefer green bean bo bean, fee fi fo feen, greeeeeeeen.\n\n11) dlwillson: B R2 Dlwillson\n\n12) Felix: Build R2 Felix\n\n13) dlwillson: Discover R1 Dlwillson G2 Field\n\n14) Felix: Discover R2 Felix G1 Grass\n\n15) dlwillson: B R3 Field\n\n16) Felix: Sacrifice G3 Felix\nBuild R3 Felix\nBuild R3 Grass\nBuild Y1 Felix\n\n17) dlwillson: Build Y2 Dlwillson\n\n18) Felix: Trade R1 G1 Felix\n\n19) dlwillson: B Y2 Dlwillson\n\n20) Felix: Move Y1 Felix Grass\n\n21) dlwillson: Move Y1 Dlwillson Field\n\n22) Felix: Build G1 Felix\n\n23) dlwillson: Sacrifice Y2 Dlwillson\nMove R3 Field Grass\nMove R3 Grass Felix\n\n24) Felix: Attack R3 Felix\n\n25) dlwillson: S Y2 Dlwillson\nM R1 Field Grass\nM R1 Grass Felix\nC Felix R\n\n26) Felix: Build G2 Felix\n\tFelix: Ooh, nice move.\n\n27) dlwillson: B Y2 Field\n\tdlwillson: Thank you! I&#39;m glad you think so. :-)\n\n28) Felix: Move R3 Grass Felix\n\n29) dlwillson: Discover Y1 Field B1 Fielder\n\n30) Felix: Move G2 Felix Fielder\n\n31) dlwillson: D Y1 Fielder B2 Sea\n\n32) Felix: Trade G1 B1 Felix\n\n33) dlwillson: B R1 Dlwillson\n\n34) Felix: Build Y2 Grass\n\n35) dlwillson: T R2 B2 Dlwillson\n\n36) Felix: Move B1 Felix Grass\n\n37) dlwillson: M Y1 Sea Dlwillson\n\n38) Felix: Trade R3 G3 Felix\n\n39) dlwillson: M B2 Dlwillson Field\n\n40) Felix: Discover Y2 Grass B2 Omnus\n\n41) dlwillson: B B1 Field\n\n42) Felix: Build B2 Grass\n\n43) dlwillson: T G3 B3 Dlwillson\n\n44) Felix: Sacrifice G3 Felix\nBuild Y2 Omnus\nBuild Y3 Grass\nBuild Y3 Felix\n\n45) dlwillson: Build Y3 Field\n\n46) Felix: Sacrifice Y1 Felix\nDiscover B2 Grass G2 Grassy\n\tFelix: Uh oh, you weren&#39;t supposed to get enough blue!\n\n47) dlwillson: Sacrifice Y3 Field\nMove B3 Dlwillson Grassy\nMove B3 Grassy Felix\nMove B2 Field Felix\n\tdlwillson: Hmm...\n\n48) Felix: Sacrifice B1 Grass\nTrade G1 B1 Felix\nCatastrophe Felix Blue\n\n\tdlwillson: What a fantastic minefield you have! What magnificent rabbits proceed from your hat! I think I&#39;ve successfully navigated through your trap, but I&#39;m not sure you don&#39;t have something even more miraculous in store!\n\tFelix: ..........Tada.\n\tdlwillson: :-)\n\tFelix: Good game! Congrats on the well-earned top slot. My brain has been really fuzzy with this game lately. Haven&#39;t been doing well! Not good news for me being in that tournament.\n\nHomeworlds Online (SDG# 33459)\nVariants: &quot;Hard time&quot;\nStarted: 2017.11.19, Ended: 2017.11.29\nParticipants: goulo (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: H R2 B1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) bhorner: Build G1 Bhorner\n\tgoulo: hi\n\n4) goulo: Build G1 Goulo\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) bhorner: Build B1 Bhorner\n\n8) goulo: Build Y1 Goulo\n\n9) bhorner: T B1 Y1 Bhorner\n\n10) goulo: Build Y2 Goulo\n\n11) bhorner: B Y2 Bhorner\n\n12) goulo: Trade Y1 G1 Goulo\n\n13) bhorner: B B1 Bhorner\n\n14) goulo: Trade Y2 B2 Goulo\n\n15) bhorner: D B1 Bhorner G3 Xmas\n\n16) goulo: Discover B2 Goulo G1 Verdeto\n\n17) bhorner: M Y2 Bhorner Xmas\n\n18) goulo: Trade G1 R1 Goulo\n\n19) bhorner: B G1 Bhorner\n\n20) goulo: Build G1 Goulo\n\n21) bhorner: T G1 R1 Bhorner\n\n22) goulo: Move G1 Goulo Verdeto\n\n23) bhorner: S G3 Bhorner\nB B2 Xmas\nB B3 Bhorner\nB B3 Xmas\n\n24) goulo: Build B3 Verdeto\n\n25) bhorner: Sacrifice Y2 Xmas\nMove B1 Xmas Verdeto\nMove B2 Xmas Verdeto\nCatastrophe Verdeto Blue\n\tbhorner: Decided to go for it.\n\n26) goulo: Build Y1 Goulo\n\n27) bhorner: Trade B3 G3 Bhorner\n\n28) goulo: Build Y2 Goulo\n\n29) bhorner: B Y2 Bhorner\n\n30) goulo: Move Y1 Goulo Verdeto\n\n31) bhorner: M Y1 Bhorner Xmas\n\n32) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n33) bhorner: Build R1 Bhorner\n\n34) goulo: Sacrifice G3 Goulo\nBuild Y2 Smeraldeto\nBuild Y3 Verdeto\nBuild Y3 Goulo\n\n35) bhorner: Build Y3 Bhorner\n\n36) goulo: Build G2 Verdeto\n\n37) bhorner: Discover Y3 Bhorner G3 Tree\n\n38) goulo: Move R1 Goulo Verdeto\n\n39) bhorner: B G2 Bhorner\n\n40) goulo: Sacrifice Y3 Verdeto\nMove R1 Verdeto Tree\nMove R1 Tree Bhorner\nMove G2 Verdeto Goulo\nCatastrophe Bhorner Red\n\n41) bhorner: B Y3 Bhorner\n\n42) goulo: Trade G2 R2 Goulo\n\n43) bhorner: S Y3 Tree\nM Y2 Bhorner Goulo\nM Y1 Xmas Bhorner\nM Y1 Bhorner Goulo\nC Goulo Yellow\n\n\tgoulo: congrats!\n\tbhorner: thanks.  :)  gg!\n\nHomeworlds Online (SDG# 33437)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.20, Ended: 2017.12.8\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) wil: Homeworld Y2 B1 G3\n\twil: lol, passed out early last night\r\n\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\twil: Is it me that can&#39;t count?  or you...  I picked yellow because you are gonna want to move out to a yellow one so you can move again.  Switch to a yellow three and you can&#39;t build...we will see how it goes but it is about to get dicey...\n\n10) wil: Trade Y1 B1 Wil\n\n11) Trydnt: Build B2 Trydnt\n\n12) wil: Build B2 Wil\n\n13) Trydnt: Discover B2 Trydnt G1 Ac\n\n14) wil: Discover B1 Wil Y3 Y3\n\n15) Trydnt: Move Y1 Trydnt Ac\n\n16) wil: Build G1 Wil\n\n17) Trydnt: Trade B1 R1 Trydnt\n\n18) wil: Trade G1 R1 Wil\n\n19) Trydnt: Move B2 Ac Y3\n\n20) wil: Sacrifice G3 Wil\nBuild B1 Y3\nBuild B2 Y3\nBuild B3 Wil\nCatastrophe Y3 B\n\n21) Trydnt: Build Y1 Ac\n\n22) wil: Discover Y1 Wil G3 G3\n\n23) Trydnt: Discover Y1 Ac G2 G2\n\n24) wil: Trade B3 G3 Wil\n\n25) Trydnt: Build G1 Trydnt\n\n26) wil: Build B1 Wil\n\n27) Trydnt: Trade G1 B1 Trydnt\n\n28) wil: Discover B2 Wil Y3 Y3\n\n29) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Ac\nBuild Y3 G2\nBuild B2 Trydnt\n\n30) wil: Build Y3 G3\n\n31) Trydnt: Move B1 Trydnt Ac\n\twil: I fell asleep like 9 oclock..  woke up just a bit ago...what the hell are you doing up?\n\n32) wil: Build G1 Wil\n\n33) Trydnt: Move Y3 G2 Y3\n\n34) wil: Discover B2 Y3 G1 G1\n\twil: don&#39;t like the other game eh?\n\n35) Trydnt: Move Y3 Y3 G1\n\n36) wil: B B2 G1\n\tTrydnt: nah that was messed up haha this one is weird too. like you said, never seen the same game twice\n\n37) Trydnt: Build Y3 G1\n\twil: Enjoying your other games and time off for slaughtering natives that helped Englishman thru harsh winters?\n\tTrydnt: yup\n\tTrydnt: what did you do for tg?\n\n38) wil: Build B3 G1\n\twil: I am still down at my mothers...hanging with my sister and her... my kids and her kids and their current partners will all be here tomorrow and we will have our tday then... we just hang out and play games.\n\twil: Am working on a design to finish out my mothers basement...\n\n39) Trydnt: Sacrifice Y2 Ac\nMove B1 Ac G3\nMove B1 G3 G1\nCatastrophe G1 B\n\n40) wil: Build G2 Wil\n\n41) Trydnt: Build Y2 Ac\n\twil:  nice move...and we took a hike in the woods...we did that too\n\n42) wil: Trade G2 R2 Wil\n\twil: forgot to catastrophe eh?  but yes...great response..most other choices were death..\n\tTrydnt: yup forgot that it wasn&#39;t automatic haha\n\n43) Trydnt: Move Y3 G1 Trydnt\n\n44) wil: Discover Y1 G3 G2 Gee2\n\n45) Trydnt: Discover Y3 G1 G3 Gee3\n\n46) wil: Build G1 Wil\n\n47) Trydnt: Move B2 Trydnt Ac\n\n48) wil: Move G1 Wil G3\n\n49) Trydnt: Move B2 Ac Gee3\n\n50) wil: M R2 Wil G3\n\n51) Trydnt: Build B1 Gee3\n\n52) wil: Move B1 Wil G3\n\n53) Trydnt: Build B2 Gee3\n\n54) wil: Build B2 G3\n\n55) Trydnt: Move B1 Gee3 G2\n\n56) wil: M B2 G3 G2\n\n57) Trydnt: Build B3 G2\n\n58) wil: Sacrifice G3 Wil\nBuild B3 G3\nBuild G2 G3\nBuild G3 Wil\n\n59) Trydnt: Discover B1 G2 R3 R3\n\twil: me thinks you may have this one\n\n60) wil: Move B3 G3 Ac\n\n61) Trydnt: Sacrifice Y3 Gee3\nMove Y1 Ac R3\nMove B1 R3 Wil\nMove Y2 Ac Gee3\n\n62) wil: S G3 Wil\nB G3 Wil\nB Y3 G3\nB R1 G3\n\n63) Trydnt: Move B2 Gee3 Wil\n\n64) wil: Sacrifice R1 G3\nAttack Y1 G2\n\twil: forgotted I had a factory\n\n65) Trydnt: Move B2 Gee3 Wil\nCatastrophe Wil B\n\twil: hung around whytestone till after 8 last evening...thought I&#39;d get a live game...\n\n66) wil: S G3 Wil\nB B1 G2\nB G3 Wil\nB B1 G2\nC G2 B\n\n67) Trydnt: Move Y2 Gee3 Gee2\n\n68) wil: Move Y1 Gee2 Ac\n\n69) Trydnt: Discover Y2 Gee2 G3 Gee3\n\n70) wil: Trade G2 R2 G3\n\n71) Trydnt: Discover Y1 R3 B1 B1\n\n72) wil: Sacrifice Y3 G3\nMove Y3 G3 Ac\nMove Y3 Ac Trydnt\nMove B3 Ac Trydnt\n\twil: why thank you for that birthday present\n\n73) Trydnt: Move Y1 B1 Trydnt\nCatastrophe Trydnt Y\n\n74) wil: S R2 G3\nA R1 Trydnt\nP\n\n\twil: Leaving for the mtns for the weekend... See you next week, feel free to start another.\n\nHomeworlds Online (SDG# 33369)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.11.20, Ended: 2017.12.21\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) dlwillson: H B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tdlwillson: Welcome! Good luck and have fun!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Trydnt: Build B2 Trydnt\n\n8) dlwillson: B B2 Dlwillson\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) dlwillson: T B1 Y1 Dlwillson\n\n11) Trydnt: Build G1 Trydnt\n\n12) dlwillson: B B1 Dlwillson\n\n13) Trydnt: Discover B2 Trydnt G3 G3\n\n14) dlwillson: D B1 Dlwillson G2 Field\n\n15) Trydnt: Build G1 Trydnt\n\n16) dlwillson: B G1 Dlwillson\n\n17) Trydnt: Trade G1 R1 Trydnt\n\n18) dlwillson: T G1 R1 Dlwillson\n\n19) Trydnt: Build R2 Trydnt\n\n20) dlwillson: B R2 Dlwillson\n\n21) Trydnt: Move R1 Trydnt G3\n\n22) dlwillson: Build B1 Field\n\tdlwillson: Hey, sorry for timing out on you in the other game.\n\n23) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild R3 G3\n\n24) dlwillson: Build B3 Dlwillson\n\n25) Trydnt: Trade R2 Y2 G3\n\n26) dlwillson: Trade B3 Y3 Dlwillson\n\n27) Trydnt: Trade R3 G3 Trydnt\n\n28) dlwillson: M R1 Dlwillson Field\n\n29) Trydnt: Move R3 G3 Field\n\n30) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Field\nBuild R3 Field\nBuild Y1 Dlwillson\nCatastrophe Field R\n\n31) Trydnt: Build Y2 G3\n\n32) dlwillson: Move Y1 Dlwillson Field\n\n33) Trydnt: Move Y2 G3 Field\n\n34) dlwillson: D B1 Field G1 Meadow\n\n35) Trydnt: Sacrifice R2 Trydnt\nAttack Y1 Field\nAttack B1 Field\n\n36) dlwillson: B B3 Meadow\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Field\nBuild Y3 Trydnt\nBuild B3 G3\n\tdlwillson: Oops!\n\n38) dlwillson: M Y1 Dlwillson Field\nC Field Y\n\n39) Trydnt: Build B3 Field\n\n40) dlwillson: T B3 Y3 Meadow\n\n41) Trydnt: Trade B1 Y1 Field\n\n42) dlwillson: Trade B2 G2 Dlwillson\n\n43) Trydnt: Build Y1 Field\n\n44) dlwillson: B B1 Meadow\n\n45) Trydnt: Discover B2 G3 G2 G2\n\n46) dlwillson: D B1 Meadow G3 Forest\n\n47) Trydnt: Build B2 G2\n\n48) dlwillson: B B3 Forest\n\n49) Trydnt: Build Y2 G3\n\n50) dlwillson: Discover R2 Dlwillson Y2 Sol\n\n51) Trydnt: Sacrifice Y2 G3\nMove B2 G2 Forest\nMove B2 G2 Forest\nCatastrophe Forest B\n\n52) dlwillson: Build G1 Dlwillson\n\n53) Trydnt: Build Y2 G3\n\n54) dlwillson: Discover G1 Dlwillson B2 Sea\n\n55) Trydnt: Trade Y3 G3 Trydnt\n\n56) dlwillson: B G2 Sea\n\n57) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Trydnt\nBuild Y3 Trydnt\n\n58) dlwillson: S Y3 Meadow\nM G1 Sea G3\nM G1 G3 Trydnt\nC Trydnt G\nD B1 Meadow G3 Forest\n\n59) Trydnt: Build Y3 G3\n\n\tdlwillson: Bah! Sorry..\n\tdlwillson: I keep timing out in games. It&#39;s hard to keep up with work and Christmas and games.\n\tTrydnt: no worries. Merry Christmas!\n\tdlwillson: Same to you and yours!\n\nHomeworlds Online (SDG# 33403)\nStarted: 2017.11.20, Ended: 2018.1.12\nParticipants: ts52 (S), Trydnt (N)\nWinner: ts52\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Trydnt: Build G1 Trydnt\n\n8) ts52: Build B2 Ts52\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) Trydnt: Discover B1 Trydnt Y3 Y3\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Build G1 Trydnt\n\n14) ts52: Build B2 Kermit\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild B3 Y3\nBuild B3 Y3\nBuild Y1 Trydnt\n\n16) ts52: Trade B2 Y2 Kermit\n\n17) Trydnt: Move B3 Y3 Trydnt\n\n18) ts52: Build B2 Ts52\n\n19) Trydnt: Discover B1 Y3 Y2 Y2\n\n20) ts52: Trade B2 R2 Ts52\n\n21) Trydnt: Trade Y1 R1 Trydnt\n\n22) ts52: Move R2 Ts52 Y2\n\n23) Trydnt: Move B3 Y3 Y2\n\n24) ts52: Discover R2 Y2 Y3 Bigbird\n\n25) Trydnt: Move B3 Y2 Bigbird\n\n26) ts52: Move R2 Bigbird Y2\n\n27) Trydnt: Move B1 Y2 Ts52\n\n28) ts52: Trade B2 R2 Ts52\n\n29) Trydnt: Move B3 Bigbird Kermit\n\n30) ts52: Discover Y2 Kermit G3 Robin\n\n31) Trydnt: Build Y1 Trydnt\n\n32) ts52: Build Y1 Robin\n\n33) Trydnt: Discover Y1 Trydnt G3 G3\n\n34) ts52: Move R2 Y2 G3\n\n35) Trydnt: Move Y1 G3 Kermit\n\n36) ts52: Sacrifice R2 G3\nAttack Y1N Kermit\nAttack B1N Ts52\n\n37) Trydnt: Trade B3 R3 Kermit\n\n38) ts52: Sacrifice Y1 Kermit\nMove B1 Kermit Robin\n\n39) Trydnt: Sacrifice Y1 Trydnt\nMove R3 Kermit Robin\n\n40) ts52: Sacrifice Y2 Robin\nDiscover B1 Robin G2 Kermit\nMove Y1 Robin Kermit\n\n41) Trydnt: Build B2 Trydnt\n\n42) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\nBuild B3 Ts52\n\n43) Trydnt: Trade B3 Y3 Trydnt\n\n44) ts52: Trade B3 G3 Ts52\n\n45) Trydnt: Build B3 Trydnt\n\n46) ts52: Discover B2 Kermit G3 Oscar\n\n47) Trydnt: Trade B3 Y3 Trydnt\n\n48) ts52: Build B3 Oscar\n\n49) Trydnt: Build B3 Trydnt\n\n50) ts52: Sacrifice Y1 Kermit\nMove B2 Oscar Trydnt\nCatastrophe Trydnt B\n\n51) Trydnt: Discover Y3 Trydnt B3 B3\n\n52) ts52: Build B2 Oscar\n\n53) Trydnt: Build Y1 Trydnt\n\n54) ts52: Trade B2 Y2 Oscar\n\n55) Trydnt: Build G1 Trydnt\n\n56) ts52: Trade B1 R1 Kermit\n\n57) Trydnt: Move G1 Trydnt B3\n\n58) ts52: Build R2 Kermit\n\n\tts52: Thanks for the game!\n\tTrydnt: anytime\n\nHomeworlds Online (SDG# 33425)\nStarted: 2017.11.20, Ended: 2017.12.14\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Trydnt: Homeworld B3 Y1 G3\n\tMobyNostromo: Have fun!\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Trydnt: Build G1 Trydnt\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) MobyNostromo: D Y1 Mobynostromo B3 Hal\n\n8) Trydnt: Build G1 Trydnt\n\n9) MobyNostromo: B Y2 Mobynostromo\n\n10) Trydnt: Build B1 Trydnt\n\n11) MobyNostromo: D Y2 Mobynostromo G3 Treebeard\n\n12) Trydnt: Discover B1 Trydnt Y2 Y2\n\n13) MobyNostromo: B Y2 Mobynostromo\n\n14) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Y2\n\n15) MobyNostromo: B Y3 Treebeard\n\n16) Trydnt: Discover B2 Y2 Y3 Y3\n\n17) MobyNostromo: T Y2 B2 Mobynostromo\n\n18) Trydnt: Build G1 Trydnt\n\n\nHomeworlds Online (SDG# 33368)\nVariants: &quot;Hard time&quot;\nStarted: 2017.11.20, Ended: 2017.12.13\nParticipants: Felix (S), Trydnt (N)\nWinner: Felix\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Felix: H B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Felix: Trade G1 B1 Felix\n\n7) Trydnt: Build B2 Trydnt\n\n8) Felix: Build B2 Felix\n\n9) Trydnt: Discover B2 Trydnt Y3 Y3\n\n10) Felix: Trade B1 Y1 Felix\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild B1 Y3\nBuild B3 Y3\nBuild B3 Trydnt\n\n12) Felix: Build B3 Felix\n\n13) Trydnt: Trade B3 G3 Trydnt\n\tFelix: Nice!\n\n14) Felix: Discover B2 Felix Y2 Out\n\n15) Trydnt: Trade B1 R1 Y3\n\n16) Felix: Sacrifice G3 Felix\nBuild B1 Out\nBuild B3 Felix\nBuild Y1 Felix\n\n17) Trydnt: Move B2 Y3 Out\n\n18) Felix: Trade B3 G3 Felix\n\n19) Trydnt: Trade B1 R1 Trydnt\n\n20) Felix: Sacrifice G3 Felix\nBuild B1 Out\nBuild B3 Felix\nBuild Y2 Felix\nCatastrophe Out Blue\n\n21) Trydnt: Discover B3 Y3 G2 G2\n\n22) Felix: Trade B3 G3 Felix\n\n23) Trydnt: Build B1 G2\n\n24) Felix: Discover Y2 Felix B2 Out\n\n25) Trydnt: Trade B3 Y3 G2\n\n26) Felix: Discover Y1 Felix B2 Blue\n\n27) Trydnt: Move R1 Y3 G2\n\n28) Felix: Build Y2 Felix\n\n29) Trydnt: Build R1 G2\n\n30) Felix: Sacrifice G3 Felix\nBuild Y2 Blue\nBuild Y3 Blue\nBuild Y3 Out\n\n31) Trydnt: Build R2 Trydnt\n\n32) Felix: Trade Y1 G1 Felix\n\n33) Trydnt: Sacrifice Y3 G2\nMove R1 G2 Felix\nMove R1 G2 Felix\nMove B1 G2 Felix\n\n34) Felix: Attack B1 Felix\n\tFelix: Ooh, nice move!\n\n35) Trydnt: Sacrifice R2 Trydnt\nAttack B1 Felix\nAttack G1 Felix\n\n36) Felix: Attack B1 Felix\n\n37) Trydnt: Build R2 Felix\nCatastrophe Felix R\n\tFelix: I think you might have me\n\n38) Felix: Trade B3 R3 Felix\n\n39) Trydnt: Sacrifice G1 Felix\nBuild G1 Trydnt\n\n40) Felix: Trade Y3 G3 Blue\n\n41) Trydnt: Build R1 Trydnt\n\n42) Felix: Sacrifice G3 Blue\nBuild Y1 Out\nBuild Y3 Blue\nBuild Y3 Felix\n\n43) Trydnt: Discover R1 Trydnt B3 B3\n\n44) Felix: Trade Y2 G2 Felix\n\n45) Trydnt: Build R1 Trydnt\n\n46) Felix: Build B1 Felix\n\n47) Trydnt: Discover R1 Trydnt B3 Bee3\n\n48) Felix: Discover B1 Felix G3 Rom\n\n49) Trydnt: Build R2 Trydnt\n\n50) Felix: Build B3 Rom\n\n51) Trydnt: Sacrifice G1 Trydnt\nBuild R2 B3\n\n52) Felix: Build Y2 Felix\n\n\tFelix: Good game!\n\nHomeworlds Online (SDG# 32752)\nVariants: &quot;Sinister&quot;\nStarted: 2017.11.20, Ended: 2018.5.2\nParticipants: Mandrel (S), Draw5PlayAll (N), Trydnt (E)\nWinner: Trydnt\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tDraw5PlayAll: Welcome! The objective is to eliminate the player on your left.\n\n3) Mandrel: Homeworld B1 R2 G3\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tMandrel: Have a good game!\n\n5) Trydnt: Build G1 Trydnt\n\n6) Mandrel: Build G1 Mandrel\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Trydnt: Build G1 Trydnt\n\n9) Mandrel: T G1 Y1 Mandrel\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) Trydnt: Trade G1 Y1 Trydnt\n\n12) Mandrel: Build G1 Mandrel\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) Trydnt: Trade G1 B1 Trydnt\n\n15) Mandrel: Discover G1 Mandrel B3 Lash\n\n16) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n17) Trydnt: Discover Y1 Trydnt G1 G1\n\n18) Mandrel: B G1 Lash\n\n19) Draw5PlayAll: Build B1 G2\n\n20) Trydnt: Build B2 Trydnt\n\n21) Mandrel: T G1 R1 Lash\n\n22) Draw5PlayAll: Build B2 G2\n\n23) Trydnt: Trade B1 R1 Trydnt\n\n24) Mandrel: Build G1 Lash\n\n25) Draw5PlayAll: Trade B2 R2 G2\n\n26) Trydnt: Move B2 Trydnt G1\n\n27) Mandrel: T G1 Y1 Lash\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) Trydnt: Build Y2 G1\n\n30) Mandrel: Build Y2 Lash\n\n31) Draw5PlayAll: Move Y1 Draw5playall G2\n\n32) Trydnt: Discover Y2 G1 G3 G3\n\n33) Mandrel: Build G1 Mandrel\n\n34) Draw5PlayAll: Build G1 Draw5playall\n\n35) Trydnt: Build G2 Trydnt\n\n36) Mandrel: Build G2 Lash\n\n37) Draw5PlayAll: Build R1 G2\n\n38) Trydnt: Build R2 Trydnt\n\n39) Mandrel: Discover Y1 Lash G2 Ton\n\n40) Draw5PlayAll: Discover R1 G2 B3 Space\n\n41) Trydnt: Move R2 Trydnt G1\n\n42) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y2 Ton\nBuild Y3 Lash\n\n43) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 G2\nBuild Y3 Draw5playall\n\n44) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Trydnt\nBuild R3 G1\n\n45) Mandrel: Build R3 Lash\n\n46) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R3 Space\nBuild R3 G2\n\n47) Trydnt: Build B1 G1\n\n48) Mandrel: Discover G2 Lash B2 Threeee\n\n49) Draw5PlayAll: Move Y3 G2 G3\n\n50) Trydnt: Move Y2 G3 G1\n\n51) Mandrel: Trade G2 B2 Threeee\n\n52) Draw5PlayAll: Move B1 G2 G3\n\n53) Trydnt: Discover B1 G1 G2 Gee2\n\n54) Mandrel: Sacrifice B2 Threeee\nTrade Y2 B2 Lash\nTrade Y2 B2 Ton\n\n55) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B3 G2\nBuild Y2 G3\n\n56) Trydnt: Move Y1 G1 G3\n\n57) Mandrel: Move Y1 Ton G3\nCatastrophe G3 Y\n\tDraw5PlayAll: Question 2: What should I do with this material advantage?\n\n58) Draw5PlayAll: Build Y1 G2\n\tTrydnt: well if Mandrel sacs y3 and moves two blues in your homeworld...\n\tTrydnt: nvmnd forgot we&#39;re going left haha\n\n59) Trydnt: Trade R3 Y3 G1\n\tTrydnt: y1 ton-&gt;g3 ought to remedy that material advantage though\n\n60) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y1 Lash\nBuild Y2 Mandrel\n\n61) Draw5PlayAll: Move Y1 G2 G3\n\n62) Trydnt: Build R3 G1\n\n63) Mandrel: Build Y2 Mandrel\n\n64) Draw5PlayAll: Move B1 G2 G3\n\n65) Trydnt: Move R3 G1 G3\n\n66) Mandrel: Move R1 Lash Ton\n\n67) Draw5PlayAll: Sacrifice Y1 G3\nDiscover B1 G3 Y1 Y1\n\n68) Trydnt: Attack B1N G3\n\n69) Mandrel: Move B2 Lash Ton\n\n70) Draw5PlayAll: Move R3 G2 Y1\n\n71) Trydnt: Move Y2 G1 G3\n\n72) Mandrel: Sacrifice Y2 Mandrel\nMove B2 Ton Draw5playall\nMove B2 Ton Draw5playall\n\n73) Draw5PlayAll: Build Y2 G2\n\n74) Trydnt: Move B2 G1 G3\n\n75) Mandrel: M G1 Lash Ton\n\n76) Draw5PlayAll: Attack B2S Draw5playall\n\n77) Trydnt: Move R1 Trydnt G1\n\n78) Mandrel: A Y2N Draw5playall\n\n79) Draw5PlayAll: Attack B2S Draw5playall\n\n80) Trydnt: Move R2 G1 G3\n\n81) Mandrel: Move Y1 Lash Ton\n\n82) Draw5PlayAll: Move B2 Draw5playall Ton\n\n83) Trydnt: Sacrifice Y3 G1\nMove R1 G1 G3\nMove R1 G3 Mandrel\nMove R2 G3 Mandrel\n\n84) Mandrel: Sacrifice R3 Lash\nAttack R1E Mandrel\nAttack R2E Mandrel\nAttack B2N Draw5playall\n\n85) Draw5PlayAll: Build R3 G2\n\n86) Trydnt: Move R3 G3 Mandrel\nCatastrophe Mandrel R\n\n87) Mandrel: B Y3 Ton\n\n88) Draw5PlayAll: Sacrifice Y1 G2\nMove B2 Ton Mandrel\n\n89) Trydnt: Sacrifice Y2 G3\nMove B1 Gee2 Mandrel\nMove B1 G3 Mandrel\nCatastrophe Mandrel B\n\n\tDraw5PlayAll: Forgot this was Sinister!!\n\tTrydnt: haha I was curious as to why you moved your b2 in there. oh well live and learn. good game both of you\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 33469)\nStarted: 2017.11.20, Ended: 2017.12.11\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Build G1 Trydnt\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Trydnt: Trade G1 Y1 Trydnt\n\n8) MobyNostromo: D Y1 Mobynostromo Y3 Bigbird\n\n9) Trydnt: Build G1 Trydnt\n\n10) MobyNostromo: B Y2 Mobynostromo\n\n11) Trydnt: Trade G1 B1 Trydnt\n\n12) MobyNostromo: D Y2 Mobynostromo B3 Ibm\n\n13) Trydnt: Build Y2 Trydnt\n\n14) MobyNostromo: T Y2 G2 Ibm\n\n15) Trydnt: Discover Y1 Trydnt G3 G3\n\n16) MobyNostromo: T Y1 B1 Mobynostromo\n\n17) Trydnt: Move B1 Trydnt G3\n\n\nHomeworlds Online (SDG# 33463)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.20, Ended: 2017.11.23\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: Homeworld G3 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\twil: lettuce turnup n bee sillie\n\n4) wil: Build Y1 Wil\n\n5) Trydnt: Build G1 Trydnt\n\n6) wil: Discover Y1 Wil G2 G2\n\n7) Trydnt: Trade G1 R1 Trydnt\n\twil: I&#39;ve done the instant freezeout with blue before, and I think red once...never yellow...don&#39;t think it will play out, but we will see.\n\n8) wil: Build Y2 G2\n\n9) Trydnt: Build R1 Trydnt\n\n10) wil: Build Y2 G2\n\n11) Trydnt: Build G1 Trydnt\n\n12) wil: Discover Y2 G2 B3 B3\n\n13) Trydnt: Discover G1 Trydnt B3 Acb\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild G1 Acb\nBuild G2 Acb\nBuild G2 Trydnt\n\n16) wil: Build Y3 G2\n\n17) Trydnt: Build G3 Trydnt\n\n18) wil: Move Y3 G2 B3\n\n19) Trydnt: Discover G1 Trydnt B3 B32\n\tDraw5PlayAll: @wil: How can you instafreeze red? Starting R1+G3 stars and R3 ship gives you no room to move.\n\twil: You are correct...not red.\n\n20) wil: Trade Y3 G3 B3\n\n21) Trydnt: Sacrifice G1 Acb\nBuild G1 B32\n\n22) wil: Build Y3 B3\n\n23) Trydnt: Discover G2 Trydnt Y3 Y3\n\n24) wil: Trade Y3 R3 B3\n\twil: The beginning of the end.\n\n\nHomeworlds Online (SDG# 33426)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.20, Ended: 2017.12.26\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Felix: H B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tFelix: Hello! Are you new to the game?\n\n4) Felix: Build G1 Felix\n\tTrydnt: Hi! I&#39;m new-ish. Been playing a few months with a friend IRL but only just made an account here.\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Felix: Trade G1 B1 Felix\n\tFelix: Cool, well have fun!\n\n7) Trydnt: Build B2 Trydnt\n\n8) Felix: Build B2 Felix\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) Felix: Trade B2 Y2 Felix\n\n11) Trydnt: Build G1 Trydnt\n\n12) Felix: Build Y1 Felix\n\n13) Trydnt: Discover B2 Trydnt G3 G3\n\n14) Felix: Discover Y1 Felix G2 Out\n\n15) Trydnt: Build G1 Trydnt\n\n16) Felix: Build Y1 Out\n\n17) Trydnt: Discover G1 Trydnt Y3 Y3\n\n18) Felix: Move Y1 Out G3\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) Felix: Build Y2 Felix\n\n21) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G3\n\n22) Felix: Discover Y2 Felix B2 Opus\n\n23) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 Trydnt\nBuild G1 Y3\n\n24) Felix: Build Y3 Felix\n\n25) Trydnt: Trade Y1 R1 G3\n\n26) Felix: Discover Y1 Out G3 Grand\n\n27) Trydnt: Discover Y1 Trydnt B3 B3\n\n28) Felix: Discover Y2 Felix G2 Farhome\n\n29) Trydnt: Build R1 G3\n\n30) Felix: Sacrifice Y3 Felix\nMove Y2 Opus Grand\nMove Y2 Grand Trydnt\nMove Y1 Grand Trydnt\n\n31) Trydnt: Trade Y3 G3 Trydnt\n\n32) Felix: Trade B1 Y1 Felix\n\n33) Trydnt: Build Y3 G3\n\tFelix: Huh. I&#39;m not really sure why I thought that would work...\n\n34) Felix: Build Y3 Felix\n\n35) Trydnt: Attack Y2 Trydnt\n\n36) Felix: Move Y1 Trydnt G3\n\n37) Trydnt: Discover Y3 G3 G2 G2\n\n38) Felix: Discover Y1 G3 G2 Rim\n\n39) Trydnt: Build G1 Trydnt\n\n40) Felix: Trade Y1 B1 Felix\n\n41) Trydnt: Move R1 G3 G2\n\n42) Felix: Move B1 Felix Farhome\n\n43) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 G2\nBuild R2 G3\n\n44) Felix: Trade Y2 R2 Farhome\n\n45) Trydnt: Move R1 G2 Y3\n\n46) Felix: Build R3 Farhome\n\n47) Trydnt: Build R3 G2\n\n48) Felix: Trade R2 Y2 Farhome\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Y3\nBuild Y1 B3\n\n50) Felix: Move R3 Farhome B3\n\n51) Trydnt: Sacrifice Y2 G3\nMove R3 G2 Y3\nMove R3 Y3 Farhome\n\n52) Felix: Sacrifice Y2 Farhome\nMove B1 Farhome B3\nMove B1 B3 Rim\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G2\nBuild Y2 Trydnt\n\n54) Felix: Attack Y1 B3\n\n55) Trydnt: Move Y1 B3 Farhome\n\n56) Felix: Build B1 Rim\n\n57) Trydnt: Sacrifice Y1 Farhome\nMove R2 G3 Rim\n\n58) Felix: Move R3 B3 Rim\n\n59) Trydnt: Sacrifice Y2 Trydnt\nMove R1 Y3 Rim\nMove R1 G3 Rim\nCatastrophe Rim R\n\n60) Felix: Trade B1 R1 Rim\n\n61) Trydnt: Move R2 Y3 Rim\n\n62) Felix: Move Y3 Felix Rim\n\n63) Trydnt: Attack R1 Rim\n\n64) Felix: Trade Y1 B1 B3\n\n65) Trydnt: Attack Y1 Rim\n\n\nHomeworlds Online (SDG# 33471)\nStarted: 2017.11.20, Ended: 2017.12.11\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Build G1 Trydnt\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Trydnt: Discover G1 Trydnt Y3 Y3\n\n8) MobyNostromo: D Y1 Mobynostromo G3 Jolly\n\n9) Trydnt: Build G1 Y3\n\n10) MobyNostromo: B Y2 Mobynostromo\n\n11) Trydnt: Build G2 Y3\n\n12) MobyNostromo: T Y1 R1 Mobynostromo\n\n13) Trydnt: Trade G1 R1 Trydnt\n\n14) MobyNostromo: T Y2 G2 Mobynostromo\n\n15) Trydnt: Move G1 Y3 Mobynostromo\n\n16) MobyNostromo: M G2 Mobynostromo Y3\n\n17) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Mobynostromo\n\n\nHomeworlds Online (SDG# 33464)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.11.20, Ended: 2017.11.26\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\tdlwillson: Two games?\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Trydnt: Discover Y1 Trydnt G1 G1\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) Trydnt: Build G1 Trydnt\n\n11) dlwillson: D Y2 Dlwillson G2 Field2\n\n12) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G1\nBuild G1 Trydnt\nBuild G2 Trydnt\n\n\tdlwillson: Oops! Sorry about that.\n\nHomeworlds Online (SDG# 33473)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.24, Ended: 2017.12.13\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld G3 B1 Y3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: Trade G1 B1 Wil\n\n6) Trydnt: Trade Y1 B1 Trydnt\n\n7) wil: Build B2 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: Discover B1 Wil Y3 Y3\n\n10) Trydnt: Discover B1 Trydnt Y2 Y2\n\n11) wil: Trade B1 R1 Y3\n\n12) Trydnt: Trade B2 R2 Trydnt\n\n13) wil: Build B1 Wil\n\n14) Trydnt: Move R2 Trydnt Y2\n\n15) wil: Move B2 Wil Y3\n\n16) Trydnt: Build Y1 Trydnt\n\n17) wil: T B1 Y1 Wil\n\n18) Trydnt: Build Y2 Trydnt\n\n19) wil: Discover Y1 Wil G3 G3\n\n20) Trydnt: Discover Y2 Trydnt G2 G2\n\n21) wil: Build G1 Wil\n\twil: look at you, succumbing to my nomenclature\n\n22) Trydnt: Move R2 Y2 G3\n\n23) wil: M Y1 G3 G2\n\n24) Trydnt: Build R1 G3\n\n25) wil: Discover Y1 G2 G1 G1\n\n26) Trydnt: Sacrifice B1 Y2\nTrade R2 Y2 G3\n\n27) wil: Discover G1 Wil Y3 Why3\n\n28) Trydnt: Build Y2 G3\n\n29) wil: Sacrifice G1 Why3\nBuild Y3 G1\n\n30) Trydnt: Trade Y1 B1 Trydnt\n\n31) wil: B G1 Wil\n\n32) Trydnt: Build R1 G3\n\n33) wil: Move G1 Wil Y3\n\n34) Trydnt: Build Y1 G2\n\n35) wil: Build R2 Y3\n\n36) Trydnt: Discover Y2 G2 B3 B3\n\n37) wil: Move R2 Y3 G2\n\n38) Trydnt: Discover Y1 G2 B3 Bee3\n\twil: I am doing worse in this game..\n\n39) wil: B R2 Y3\n\n40) Trydnt: Discover B1 Trydnt G2 Gee2\n\n41) wil: Move R2 Y3 Gee2\n\n42) Trydnt: Sacrifice Y1 Bee3\nMove B1 Gee2 G3\n\twil: Lovely new area...fancy meeting you here.\n\twil: If I saw two in the queue, I always knew it was ueue.\n\n43) wil: Move Y1 G1 G2\n\n44) Trydnt: Build Y1 Trydnt\n\n45) wil: Build G1 Wil\n\n46) Trydnt: Build B1 G3\n\twil: I&#39;d say officially my game to lose now...\n\n47) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 Wil\nBuild R2 G2\n\n48) Trydnt: Build B2 G3\n\n49) wil: S Y3 G1\nM B2 Y3 G2\nM B2 G2 G3\nM R2 G2 G3\nC G3 B\n\n50) Trydnt: Attack R2 G3\n\twil: And it. Appears I am doing it!\n\n51) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G3 Wil\nBuild Y3 G2\n\n52) Trydnt: Move Y1 Trydnt G2\n\n53) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 G2\nBuild R3 Gee2\n\n54) Trydnt: Move Y1 G2 B3\n\n55) wil: Sacrifice Y3 G2\nMove R3 G2 Trydnt\nMove R2 Gee2 G3\nMove R1 Y3 Wil\nCatastrophe G3 R\n\n\twil: Just a few moves ago you were one move away from unleashing the doomsday machine and I alexed my way out of it!\n\nHomeworlds Online (SDG# 33475)\nStarted: 2017.11.24, Ended: 2017.12.14\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Trydnt: Homeworld Y3 G1 B3\n\tMobyNostromo: Have fun!\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Trydnt: Build B1 Trydnt\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Trydnt: Build B1 Trydnt\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Jollygreen\n\n8) Trydnt: Discover B1 Trydnt Y2 Y2\n\n9) MobyNostromo: B Y1 Jollygreen\n\n10) Trydnt: Build B2 Trydnt\n\n11) MobyNostromo: Build Y2 Mobynostromo\n\n12) Trydnt: Move B2 Trydnt Y2\n\n\nHomeworlds Online (SDG# 33514)\nStarted: 2017.11.27, Ended: 2017.11.27\nParticipants: inattentive (S), Schmoopy (N)\nWinner: Schmoopy\n\n1) Schmoopy: Homeworld B3 R1 G3\n\n2) inattentive: Homeworld Y2 B1 G3\n\tinattentive: homeworld y2 b1 g1\n\tSchmoopy: right back at ya\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) inattentive: Build G1 Inattentive\n\n5) Schmoopy: Trade G1 Y1 Schmoopy\n\n6) inattentive: Trade G1 R1 Inattentive\n\n7) Schmoopy: Build Y1 Schmoopy\n\n8) inattentive: Build G1 Inattentive\n\n9) Schmoopy: Build Y1 Schmoopy\n\n10) inattentive: Trade G1 B1 Inattentive\n\n11) Schmoopy: Build Y2 Schmoopy\n\n12) inattentive: Build R1 Inattentive\nCatastrophe Schmoopy Y\n\n\nHomeworlds Online (SDG# 33515)\nStarted: 2017.11.27, Ended: 2017.11.27\nParticipants: inattentive (S), Schmoopy (N)\nWinner: inattentive\n\n1) Schmoopy: Homeworld B3 R1 G3\n\n2) inattentive: Homeworld Y3 B1 G3\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) inattentive: Build G1 Inattentive\n\n5) Schmoopy: Trade G1 R1 Schmoopy\n\n6) inattentive: Trade G1 R1 Inattentive\n\n7) Schmoopy: Build R2 Schmoopy\n\n8) inattentive: Build R2 Inattentive\n\n9) Schmoopy: Trade R1 Y1 Schmoopy\n\n10) inattentive: Discover R2 Inattentive Y2 Poop\n\n11) Schmoopy: Build G1 Schmoopy\n\n12) inattentive: Build G1 Inattentive\n\n13) Schmoopy: Move G3 Schmoopy Poop\n\n14) inattentive: Move G3 Inattentive Poop\n\n15) Schmoopy: Sacrifice R2 Schmoopy\nAttack R2 Poop\nAttack G3 Poop\n\n16) inattentive: Build G1 Inattentive\n\n17) Schmoopy: Move G3 Poop Inattentive\n\n18) inattentive: Build G2 Inattentive\nCatastrophe Inattentive G\n\n19) Schmoopy: Move R2 Poop Inattentive\n\n20) inattentive: Trade R1 G1 Inattentive\n\n\tDraw5PlayAll: Whaaaaat?\n\nHomeworlds Online (SDG# 33478)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.28, Ended: 2017.12.28\nParticipants: smokeytroll42 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) smokeytroll42: Homeworld G3 R2 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) smokeytroll42: Build B1 Smokeytroll42\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) smokeytroll42: Trade B1 Y1 Smokeytroll42\n\n7) Trydnt: Build Y2 Trydnt\n\n8) smokeytroll42: Build Y2 Smokeytroll42\n\n9) Trydnt: Discover Y2 Trydnt G3 G3\n\n10) smokeytroll42: Discover Y2 Smokeytroll42 G1 Mars\n\n11) Trydnt: Discover Y1 Trydnt B3 B3\n\n12) smokeytroll42: Build B1 Smokeytroll42\n\n13) Trydnt: Build G1 Trydnt\n\n14) smokeytroll42: Move B1 Smokeytroll42 Mars\n\n15) Trydnt: Move G1 Trydnt B3\n\n16) smokeytroll42: Build B1 Mars\n\n17) Trydnt: Build G1 Trydnt\n\n18) smokeytroll42: Trade B1 R1 Mars\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) smokeytroll42: Build B1 Mars\n\n21) Trydnt: Build G1 Trydnt\n\n22) smokeytroll42: Build B1 Smokeytroll42\n\n23) Trydnt: Build G2 B3\n\n24) smokeytroll42: Build B2 Mars\n\n25) Trydnt: Discover G1 Trydnt B3 Bee3\n\n26) smokeytroll42: Trade B2 R2 Mars\n\n27) Trydnt: Build G2 Bee3\n\n28) smokeytroll42: Trade R2 G2 Mars\n\n29) Trydnt: Sacrifice Y2 G3\nMove G1 B3 Mars\nMove G1 Bee3 Mars\nCatastrophe Mars G\n\n30) smokeytroll42: Build Y2 Smokeytroll42\n\n31) Trydnt: Build Y2 B3\n\n32) smokeytroll42: Trade Y1 R1 Smokeytroll42\n\n33) Trydnt: Build G1 Bee3\n\n34) smokeytroll42: Discover B1 Smokeytroll42 G1 Mercury\n\n35) Trydnt: Build G1 Trydnt\n\n36) smokeytroll42: Build B1 Mercury\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B3\nBuild G3 Trydnt\nBuild G3 B3\n\n38) smokeytroll42: Build B1 Smokeytroll42\n\n39) Trydnt: Trade G2 R2 B3\n\n40) smokeytroll42: Move Y2 Smokeytroll42 Mercury\n\n41) Trydnt: Move G3 B3 Mercury\n\n42) smokeytroll42: Sacrifice Y2 Mercury\nDiscover B1 Mercury Y2 Pluto\nDiscover B1 Mercury R2 Neptune\n\n43) Trydnt: Sacrifice Y2 B3\nMove R2 B3 Pluto\nMove G2 Bee3 Neptune\n\n44) smokeytroll42: Discover B1 Pluto Y3 Venus\n\n45) Trydnt: Attack B1 Neptune\n\n46) smokeytroll42: Build B2 Smokeytroll42\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild B2 Neptune\nBuild G2 Bee3\nBuild G3 Trydnt\n\n48) smokeytroll42: Trade B1 Y1 Smokeytroll42\n\n49) Trydnt: Move R2 Pluto Venus\n\n50) smokeytroll42: Build Y2 Smokeytroll42\n\n51) Trydnt: Attack B1 Venus\n\n52) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove B3 Smokeytroll42 Mercury\nMove B3 Mercury Venus\n\n53) Trydnt: Move R2 Venus Mercury\n\n54) smokeytroll42: Trade B3 R3 Venus\n\n55) Trydnt: Sacrifice Y1 B3\nMove G3 Mercury Smokeytroll42\n\n\tsmokeytroll42: good game!\n\nHomeworlds Online (SDG# 33468)\nStarted: 2017.11.29, Ended: 2017.12.31\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) wil: Build G1 Wil\n\tts52: Have a good game!\n\twil: I ran out of games!  Was only in three...\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 Y1 Wil\n\tts52: :D\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build Y2 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: D Y1 Wil B2 B2\n\n10) ts52: Trade G1 B1 Ts52\n\n11) wil: Sacrifice G3 Wil\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Wil\n\n12) ts52: Discover Y1 Ts52 G3 Kermit\n\n13) wil: M Y2 B2 Kermit\n\n14) ts52: Discover Y1 Kermit G2 Robin\n\n15) wil: Trade Y3 G3 Wil\n\n16) ts52: Build Y3 Robin\n\n17) wil: Build Y3 Kermit\n\n18) ts52: Build B1 Ts52\n\n19) wil: Trade Y1 G1 B2\n\n20) ts52: Sacrifice B1 Ts52\nTrade Y1 B1 Robin\n\n21) wil: Trade Y2 R2 Wil\n\n22) ts52: Trade B1 R1 Ts52\n\n23) wil: B R1 Wil\n\n24) ts52: Build B1 Robin\n\n25) wil: Build Y1 B2\n\n26) ts52: Build B2 Robin\n\n27) wil: Trade R2 B2 Wil\n\n28) ts52: Trade B2 R2 Robin\n\n29) wil: M B2 Wil B2\n\n30) ts52: Build G1 Ts52\n\n31) wil: Build G1 B2\n\n32) ts52: Discover G1 Ts52 B3 Gonzo\n\n33) wil: Build G2 Wil\n\n34) ts52: Build Y1 Robin\n\n35) wil: S G3 Wil\nB G2 B2\nB G3 Wil\nB Y2 B2\n\n36) ts52: Move Y1 Robin Gonzo\n\n37) wil: Sacrifice B2 B2\nTrade Y2 R2 B2\nTrade Y2 B2 Kermit\n\n38) ts52: Build Y2 Gonzo\n\n39) wil: S G3 Wil\nB G3 Wil\nB Y2 Kermit\nB R1 B2\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Gonzo\nBuild R2 Robin\nBuild R3 Ts52\n\n41) wil: Move R1 B2 Kermit\n\n42) ts52: Trade R3 B3 Ts52\n\twil: attention all troops, the factory has been transported to Gonzo!\n\n43) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 B2\nBuild R3 Kermit\n\n44) ts52: Sacrifice Y2 Gonzo\nMove R2 Robin Kermit\nMove R2 Robin Kermit\nCatastrophe Kermit R\n\twil: I think the end is in sight....of course that could change..\n\n45) wil: S Y3 B2\nM R3 B2 Kermit\nM R3 Kermit Ts52\nM Y3 Kermit Ts52\n\tts52: I think you&#39;re probably right.\n\n46) ts52: Attack R3N Ts52\n\twil: Hope you had a great holiday\n\tts52: Yep. That&#39;ll do it. Thanks for the game! Hope you had a great holiday too!\n\n47) wil: Sacrifice R3 Wil\nAttack R3 Ts52\nAttack B3 Ts52\nAttack R1 Ts52\n\twil: See you next year!\n\n\nHomeworlds Online (SDG# 33493)\nStarted: 2017.11.29, Ended: 2018.1.8\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) wil: Homeworld B3 Y1 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\twil: Just dislike checking and not having a move to make!   Gotta get my HW fix\n\tMobyNostromo: I&#39;m actually going out of town tomorrow, but I&#39;ll try to do this from my phone.\n\n4) wil: Build G1 Wil\n\twil: If it doesn&#39;t work out, hit me up when you return.  Hava good trip!\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) wil: B G1 Wil\n\tMobyNostromo: Thanks, Wil!\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Jollygreen\n\n8) wil: D G1 Wil B2 B2\n\n9) MobyNostromo: T Y1 G1 Mobynostromo\n\twil: Hmmm nice start.... Shoulda took fortress I suppose\n\n10) wil: B G2 B2\n\tMobyNostromo: Fortress has a red, right? I&#146;m still not experienced enough to really understand the initial setups. I&#146;ve been using the same one. \n\n11) MobyNostromo: B G2 Mobynostromo\n\twil:  No banker is a one and a two PIP star, fortress is a three PIP and two pip a star .. \n\tMobyNostromo: I see. Thanks! (Sorry about the delay.)\n\n12) wil: Build G3 B2\n\twil: Fortress because ones are often taken early and then in short supply when your opponent is trying to build an avenue in.   Banker because you can send greens out to queen stars and sacrifice green later and grow the star someplace else...your investment gets paid off.  large and small star system is called goldilocks...because not the other two...\n\n13) MobyNostromo: T G1 B1 Mobynostromo\n\tMobyNostromo: I remember reading about this a few months ago, but it didn&#39;t make any sense to me back then. Now, I&#39;m getting a picture.\n\n14) wil: T G1 Y1 B2\n\n15) MobyNostromo: B Y2 Mobynostromo\n\n16) wil: T G3 Y3 B2\n\n17) MobyNostromo: B Y2 Jollygreen\n\n18) wil: Discover Y1 B2 B3 B3\n\n19) MobyNostromo: M B1 Mobynostromo Jollygreen\n\n20) wil: Sacrifice G2 B2\nBuild Y2 B2\nBuild Y3 B3\n\n21) MobyNostromo: B G1 Mobynostromo\n\n22) wil: S Y2 B2\nM Y3 B3 Mobynostromo\nM Y1 B3 Mobynostromo\nC Mobynostromo Y\n\n23) MobyNostromo: T G2 Y2 Mobynostromo\n\n24) wil: Trade G1 R1 Wil\n\n25) MobyNostromo: D Y1 Jollygreen G2 Emerald\n\n26) wil: M Y3 B2 Jollygreen\n\n27) MobyNostromo: B Y1 Mobynostromo\n\n28) wil: Build R1 Wil\n\n29) MobyNostromo: B Y2 Emerald\n\twil: So many moves to contemplate.\n\tMobyNostromo: And I bet you can see more moves than I can.\n\n30) wil: S R1 Wil\nA Y2 Jollygreen\n\n31) MobyNostromo: T Y1 R1 Mobynostromo\n\n32) wil: M Y3 Jollygreen Mobynostromo\n\n33) MobyNostromo: T G1 R1 Mobynostromo\n\n34) wil: B R2 Wil\n\n35) MobyNostromo: M Y2 Emerald Jollygreen\n\twil: I don&#39;t know how to see moves ahead... So many ways to thwart plans.... I have plans, strategy, begin with the end in mind, only a few ways to win, I work toward any one of them...\n\n36) wil: Sacrifice R2 Wil\nAttack Y2 Mobynostromo\nAttack Y2 Jollygreen\n\tMobyNostromo: You play Chess, yes?\n\twil: I did...until I found this...  now rarely chess, working on coverting chess players to this..or identify folks who might be interested based on chess.  But I don&#39;t &#39;see moves ahead&#39; there either...I look for where I want to end...and then work my way thru to get there...like hiking to the next range...I look and try to head for a pass that I see.  And then head down to the valley and as I run into obstacles I keep turning back toward that place I am headed.\n\n37) MobyNostromo: B Y1 Emerald\n\tMobyNostromo: I know what you mean. I&#39;ve played this about twenty or so times and still feel like there is so much more that I cannot yet see. I used to play Chess casually, and I appreciate that game and its depth, but there are other games that are even deeper and more interesting.\r\n\r\nAnd your description of your thinking process makes a lot of sense. I remember reading this one strategy book on Chess that described the two kinds of planning in that game: the tactics and the fuzzy thinking that involved where you would like to be by a certain time.\n\n38) wil: Trade Y2 R2 Mobynostromo\n\n39) MobyNostromo: B Y2 Emerald\n\n40) wil: S R2 Mobynostromo\nA R1 Mobynostromo\nA R1 Mobynostromo\n\twil: I was left with a choice sack and attack or grow and catastrophe...almost got creative!!   Gg, challenge me anytime!  (Note, for my first 50 -100 games I didn&#39;t challenge to win.. I challenged to lose and learn)\n\tMobyNostromo: Thanks, Wil. I know that the better the game, the longer it takes to master it.\n\n\nHomeworlds Online (SDG# 33474)\nVariants: &quot;Unrated&quot;\nStarted: 2017.11.29, Ended: 2017.12.5\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld B2 R3 G3\n\n3) wil: Build G1 Wil\n\tFelix: Hello again :)\n\n4) Felix: Build G1 Felix\n\twil: tryin to get my fix\n\n5) wil: Trade G1 B1 Wil\n\tFelix: I understand that.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: Build B1 Wil\n\n8) Felix: Build Y1 Felix\n\n9) wil: Discover B1 Wil Y3 Y3\n\n10) Felix: Build Y2 Felix\n\n11) wil: Sacrifice G3 Wil\nBuild B1 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n12) Felix: Discover Y1 Felix G1 Out\n\n13) wil: M B2 Y3 Out\n\tFelix: Nice\n\n14) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Out\nBuild Y3 Felix\n\n15) wil: Build B3 Out\n\n16) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: Absolutely yellow vs blue... very interesting.\n\twil: Dang it...you&#39;ve done it again!   I see a notice...I think my opponent has moved...and I get to contemplate a move...or he has commented and I need to respond...  No...just the peanut gallery popping in.  I am so confused...I have played you...you comment less during a game when I am playing you...and do this when I am not??  Have I not mentioned enough that I find it irritating? \n\twil: Sorry...can&#39;t delete...clicked on this right after a Trump and Tax and Racism discussion...while the sentiment is true...the rant stems from a previous discussion without which I prolly would have just grumbled under my breath....again.\n\n17) wil: T B3 Y3 Out\nC Out Y\n\tFelix: Quite understandable. Between Trump, Taxes, and Racism, that&#39;s a lot of volatile ground to cover in one discussion.\n\tFelix: I only get email notifications when an actual move is made, so that saves me that headache at least :)\n\twil: It isn&#39;t the email notifications.... I open the page and it shows a bolded and non bolded games,  A MOVE TO MAKE!!!!   Like pavlov&#39;s dogs I salivate, adrenaline courses thru my veins, I tap the screen in anticipation and a balloon lets go and flies backwards thru the room deflated from dissapoimtment...\n\n18) Felix: Trade Y2 R2 Felix\n\tFelix: Oh, haha. I almost never just open the page. The home page takes too long to load. I just come here directly from the email.\n\n19) wil: Trade B3 G3 Wil\n\tFelix: Good move.\n\n20) Felix: Move R2 Felix Out\n\n21) wil: Sacrifice G3 Wil\nBuild B3 Out\nBuild B3 Y3\nBuild B3 Wil\n\twil: I don&#39;t open the main page either...just leave a game open and look to the right to see if anything changed...I try to play enough games that I have a move a day...prefer a dozen!  I only get to sit down and play live games two or three nights a week.. \n\n22) Felix: Move G3 Felix Out\n\tFelix: &quot;only&quot; .... &quot;two or three nights a week&quot;\r\nI&#39;d be grateful to get that many! With a 2-year-old and a baby on the way, I&#39;m lucky to get one live game a year.\n\n23) wil: Sacrifice B3 Y3\nTrade B3 G3 Out\nTrade B2 G2 Out\nTrade B3 G3 Wil\nCatastrophe Out G\n\twil: congrats on the kids!! mine are out of college and on their own.. As those little time absorption capsules grow up you&#39;ll be able to play with them!\r\n\n\n\twil: That was exciting... for a moment I thought I was cornered.\n\twil: Kids...you&#39;ve got so many memories you are making...  you&#39;ve taken me down memory lane with my twins...from pregnant to three... what a glorious time... Your younger one will come out making neuro connections by the second....your older child has now three times as many connections as we do...and will spend the next 13 years pruning...through their experiences and life around them they will be choosing which connections to eliminate, not needed, which ones to move over to other similar needs, and which to turn into super highways of accessible thought... \n\twil: me thinks this game is over and unimportant in the larger scheme of things...however that other game that you are playing... that is one to focus on!!\n\tFelix: Ooh, well played! And thanks for the congrats and, um, scientific poetry? It&#39;s all very fascinating :) And good point that they&#39;ll make good opponents in years to come!\n\nHomeworlds Online (SDG# 33480)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.11.29, Ended: 2017.12.4\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld B2 Y3 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\twil: snow yet your way?\r\n\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tdlwillson: We had a couple snows, but they melted off fast. Today&#39;s cold, but no snow. Had a little rain yesterday, too.\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n\tdlwillson: Dangit! Sorry Wil! I&#39;m having trouble keeping up with all my things lately.\n\twil: phooey freaking hard time!  Challenge me when you ain&#39;t so busy...   Trident is a young man I&#39;ve recently taught the game to...caught on quick...smart kid...pissed he can&#39;t beat me more often.\n\tDraw5PlayAll: ummm... you can turn off the hard time if it is not a ladder game... and there is something about the system console too....\n\nHomeworlds Online (SDG# 33520)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.11.29, Ended: 2017.12.10\nParticipants: dlwillson (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld B1 Y2 G3\n\n2) dlwillson: H B2 Y3 G3\n\n3) dragon76n: B G1 Dragon76n\n\tdlwillson: GLHF\n\n4) dlwillson: Build G1 Dlwillson\n\tdragon76n: Glhf\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) dragon76n: Build G1 Dragon76n\n\n8) dlwillson: Discover Y1 Dlwillson G1 Field\n\n9) dragon76n: T G1 B1 Dragon76n\n\n10) dlwillson: B Y1 Field\n\n11) dragon76n: Build Y2 Dragon76n\n\n12) dlwillson: Discover Y1 Field G3 Forest\n\n13) dragon76n: T Y2 R2 Dragon76n\n\n14) dlwillson: Build G1 Dlwillson\n\n15) dragon76n: M R2 Dragon76n Forest\n\n16) dlwillson: D Y1 Forest G1 Mossy\n\n17) dragon76n: B B1 Dragon76n\n\n\tdlwillson: Sorry for timing out on you!\n\tdragon76n: It&#39;s ok. I know that life can get extremely busy unexpectedly. Maybe next time. \n\nHomeworlds Online (SDG# 33258)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.11.30, Ended: 2017.12.11\nParticipants: wil (S), AlexKM (N)\nWinner: wil\n\n1) AlexKM: Homeworld Y1 B2 G3\n\tAlexKM: Hi!\n\n2) wil: H B3 Y2 G3\n\tAlexKM: This is my first game online so I&#39;m sorry if I don&#39;t manage to synchronise too well! Do you mind telling me what the policy is on how often to move and such?\n\n3) AlexKM: Build G1 Alexkm\n\twil: Whenever you can..every\r\nFew days at a minimum... But if I get on and see you&#39;ve moved I&#39;ll move\n\twil: Have fun\n\n4) wil: B G1 Wil\n\tAlexKM: Oh okay, I&#39;ll have time to move several times a day, so no worries :)\n\n5) AlexKM: Trade G1 Y1 Alexkm\n\n6) wil: Trade G1 Y1 Wil\n\n7) AlexKM: Build Y2 Alexkm\n\n8) wil: Build Y2 Wil\n\n9) AlexKM: Trade Y2 G2 Alexkm\n\twil: ya know about catastrophes??\n\n10) wil: T Y2 R2 Wil\n\tAlexKM: Of course, of course. I&#39;m a bit rusty, but I&#39;ve played some of this irl\n\n11) AlexKM: Build Y2 Alexkm\n\twil: Just checkin\n\n12) wil: B Y2 Wil\n\n13) AlexKM: Discover Y1 Alexkm B3 Sigma\n\n14) wil: D Y1 Wil G1 G1\n\n15) AlexKM: Sacrifice Y2 Alexkm\nMove Y1 Sigma Alexkm\nDiscover Y1 Alexkm Y3 Praise_it\n\n16) wil: B Y2 Wil\n\n\tAlexKM: Sorry, I don&#39;t think this is for me, I don&#39;t really enjoy playing a single game over a long period of time...\n\twil: No worries..  \n\nHomeworlds Online (SDG# 33525)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.1, Ended: 2017.12.20\nParticipants: bhorner (S), SilentTitan (N)\nWinner: bhorner\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) bhorner: Homeworld B2 R1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) bhorner: Build G1 Bhorner\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) bhorner: T G1 Y1 Bhorner\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) bhorner: B G1 Bhorner\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) bhorner: B G1 Bhorner\n\n11) SilentTitan: Build B1 Silenttitan\n\n12) bhorner: T G1 R1 Bhorner\n\n13) SilentTitan: Discover B1 Silenttitan Y3 Sol\n\tbhorner: Woops, thought I already had a blue.\n\n14) bhorner: B R1 Bhorner\n\n15) SilentTitan: Build B2 Silenttitan\n\n16) bhorner: M R1 Bhorner Sol\n\n17) SilentTitan: Sacrifice B1 Sol\nTrade B2 Y2 Silenttitan\n\n18) bhorner: Build R2 Bhorner\n\n\nHomeworlds Online (SDG# 33534)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.4, Ended: 2017.12.11\nParticipants: smokeytroll42 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 G3 Y3\n\n2) smokeytroll42: Homeworld B3 R1 G3\n\n3) Felix: Build Y1 Felix\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Felix: Trade Y1 R1 Felix\n\n6) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n7) Felix: Build R1 Felix\n\n8) smokeytroll42: Build Y1 Smokeytroll42\n\n9) Felix: Discover R1 Felix G1 Out\n\n10) smokeytroll42: Build G1 Smokeytroll42\n\n11) Felix: Build R2 Felix\n\n12) smokeytroll42: Build G1 Smokeytroll42\n\n13) Felix: Trade R2 G2 Felix\n\n14) smokeytroll42: Discover G1 Smokeytroll42 B2 Garden\n\n15) Felix: Discover G2 Felix B1 Opus\n\n16) smokeytroll42: Build G2 Garden\n\n17) Felix: Build G2 Opus\n\n18) smokeytroll42: Build G3 Smokeytroll42\n\n19) Felix: Trade G2 Y2 Opus\n\n20) smokeytroll42: Trade G3 R3 Smokeytroll42\n\n21) Felix: Build G2 Opus\n\n22) smokeytroll42: Trade G2 Y2 Garden\n\n23) Felix: Move G2 Opus Garden\n\n24) smokeytroll42: Move R3 Smokeytroll42 Garden\n\n25) Felix: Build G2 Garden\n\n26) smokeytroll42: Attack G2N Garden\n\n27) Felix: Build G3 Opus\n\n28) smokeytroll42: Sacrifice Y2 Garden\nMove G2 Garden Opus\nMove G1 Garden Opus\nCatastrophe Opus G\n\n29) Felix: Sacrifice G2 Garden\nBuild Y1 Felix\nBuild Y2 Opus\n\n30) smokeytroll42: Move Y1 Smokeytroll42 Garden\n\tFelix: Nice move!\n\tsmokeytroll42: Thanks!\n\n31) Felix: Trade Y2 G2 Opus\n\n32) smokeytroll42: Move R3 Garden Opus\n\n33) Felix: Sacrifice Y2 Opus\nMove G2 Opus Garden\nMove R1 Out Garden\n\n34) smokeytroll42: Move Y1 Garden Opus\n\n35) Felix: Build R2 Garden\n\n36) smokeytroll42: Move G3 Smokeytroll42 Garden\n\n37) Felix: Sacrifice Y1 Felix\nMove G2 Garden Smokeytroll42\n\n38) smokeytroll42: Sacrifice Y1 Opus\nMove G3 Garden Smokeytroll42\n\n39) Felix: Build G1 Smokeytroll42\nCatastrophe Smokeytroll42 Green\n\n\tsmokeytroll42: Again, good game!\n\tFelix: Likewise! You might have been able to recover from that, but it would have been an uphill struggle. Good game!\n\tsmokeytroll42: Huh, I don&#146;t see how other than building ships faster than you can take them. \n\nHomeworlds Online (SDG# 33535)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.6, Ended: 2018.1.22\nParticipants: smokeytroll42 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G3 B2 Y3\n\n2) smokeytroll42: Homeworld B2 R1 G3\n\n3) Babamots: Build Y1 Babamots\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Babamots: Build Y1 Babamots\n\n6) smokeytroll42: Build G1 Smokeytroll42\n\n7) Babamots: Discover Y1 Babamots Y1 Iconia\n\n8) smokeytroll42: Trade G3 Y3 Smokeytroll42\n\tBabamots: I discovered a y1 to open up y2 for myself and prevent you from getting yellow ships for an extra turn or two.\n\tsmokeytroll42: So I could keep building up at the Homeworld or, trade my g3 to Y3 so I can expand.\n\tBabamots: Yeah, you can trade your g3 for y3 and then build yellow after that. I hadn&#39;t really thought about that.\n\n9) Babamots: Build Y2 Babamots\n\n10) smokeytroll42: Discover G1 Smokeytroll42 G3 Corrino\n\n11) Babamots: Trade Y2 G2 Babamots\n\n12) smokeytroll42: Build G1 Smokeytroll42\n\n13) Babamots: Discover G2 Babamots B1 Ferenginar\n\n14) smokeytroll42: Discover G1 Smokeytroll42 Y3 Ix\n\n15) Babamots: Build Y2 Babamots\n\n16) smokeytroll42: Build G2 Ix\n\n17) Babamots: Trade Y1 R1 Babamots\n\n18) smokeytroll42: Trade G1 R1 Smokeytroll42\n\n19) Babamots: Build R2 Babamots\n\n20) smokeytroll42: Build G1 Ix\n\n21) Babamots: Move Y2 Babamots Ferenginar\n\n22) smokeytroll42: Move G1 Ix Smokeytroll42\n\tBabamots: I would be pretty happy to cause a green catastrophe on Ix if you let me.\n\n23) Babamots: Build R2 Babamots\n\n24) smokeytroll42: Build R2 Smokeytroll42\n\n25) Babamots: Move R2 Babamots Ferenginar\n\n26) smokeytroll42: Move R2 Smokeytroll42 Corrino\n\n27) Babamots: Sacrifice G2 Ferenginar\nBuild R3 Ferenginar\nBuild R3 Babamots\n\n28) smokeytroll42: Build R3 Corrino\n\n29) Babamots: Move R3 Ferenginar Ix\n\n30) smokeytroll42: Move G2 Ix Iconia\n\n31) Babamots: Attack G1S Ix\n\n32) smokeytroll42: Sacrifice R1 Smokeytroll42\nAttack Y1N Iconia\n\n33) Babamots: Build G2 Ix\n\n34) smokeytroll42: Build Y1 Iconia\n\n35) Babamots: Sacrifice G2 Ix\nBuild Y2 Ferenginar\nBuild Y2 Babamots\n\n36) smokeytroll42: Move Y1 Iconia Corrino\n\tBabamots: I would like to cause a yellow catastrophe in Iconia if you let me.\n\n37) Babamots: Move R3 Babamots Iconia\n\n38) smokeytroll42: Move R3 Corrino Ferenginar\n\n39) Babamots: Sacrifice Y2 Ferenginar\nMove Y2 Ferenginar Ix\nDiscover R2 Ferenginar G3 Kronos\n\tBabamots: Good move.\n\tsmokeytroll42: Thank you!\n\n40) smokeytroll42: Sacrifice Y1 Iconia\nMove R3 Ferenginar Kronos\n\n41) Babamots: Sacrifice R2 Kronos\nAttack G2S Iconia\nPass\n\n42) smokeytroll42: Discover G1 Corrino Y2 Caladan\n\n43) Babamots: Discover G2 Iconia B3 Wadi\n\n44) smokeytroll42: Build Y1 Smokeytroll42\n\tDraw5PlayAll: Caladan?\r\nCorrine?\n\tsmokeytroll42: From Frank Herbert&#146;s Dune series.\n\tsmokeytroll42: From Frank Herbert&#146;s Dune series.\n\n45) Babamots: Build G2 Wadi\n\n46) smokeytroll42: Build G2 Caladan\n\n47) Babamots: Discover Y2 Babamots R1 Remus\n\n48) smokeytroll42: Build R2 Corrino\n\n49) Babamots: Move R3 Iconia Corrino\n\n50) smokeytroll42: Sacrifice Y1 Corrino\nMove R2 Corrino Caladan\n\n51) Babamots: Attack R2S Corrino\n\n52) smokeytroll42: Move Y1 Smokeytroll42 Kronos\n\n53) Babamots: Move R3 Ix Caladan\n\n54) smokeytroll42: Move R2 Caladan Kronos\n\tBabamots: The lesson of the game might be that it can be easy for your opponent to gobble up your fleet if you don&#39;t have a large enough ship at each system.\n\tsmokeytroll42: Yeah, it&#146;s hard to get the right momentum for building up a fleet.\n\n55) Babamots: Sacrifice R2 Corrino\nAttack G2S Caladan\nAttack G1S Caladan\n\n56) smokeytroll42: Build Y1 Kronos\n\n57) Babamots: Sacrifice G2 Wadi\nBuild G2 Caladan\nBuild R2 Corrino\n\n58) smokeytroll42: Sacrifice Y1 Kronos\nMove R3 Kronos Remus\n\tBabamots: My next planned move is to green catastrophe on Kronos by sacrificing my y3 at home. I would lose more than you, but since I have a material advantage, it&#39;s probably worth it.\r\n\r\nYou should probably move your r3 out of Kronos. You could move it to Remus for a quick little threat. I&#39;ll want to take a turn to get my y2 to safety, and then you could sacrifice a y1 to move your r3 to Ix.\n\n59) Babamots: Move Y2 Remus Corrino\n\n\tsmokeytroll42: Good game! I&#39;m sorry for the long delay, but I&#39;ve just been busy with life!\n\nHomeworlds Online (SDG# 33367)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.8, Ended: 2017.12.19\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: T G1 R1 Wil\n\n7) Trydnt: Build G1 Trydnt\n\n8) wil: Build R1 Wil\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) wil: Discover R1 Wil Y2 Y2\n\n11) Trydnt: Build B1 Trydnt\n\n12) wil: Build R2 Wil\n\n13) Trydnt: Discover B1 Trydnt R3 R3\n\twil: As long as I counted correctly\n\n14) wil: Discover R2 Wil B2 B2\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild B2 R3\nBuild B3 Trydnt\nBuild Y1 Trydnt\n\n16) wil: S G3 Wil\nB R2 B2\nB R2 Y2\nB R3 Wil\n\twil: Lol, I wasn&#39;t thinking, I gave you that!\n\n17) Trydnt: Trade B3 G3 Trydnt\n\n18) wil: T R3 G3 Wil\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild B3 Trydnt\nBuild B3 R3\nBuild Y1 Trydnt\n\n20) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Y2\nPass\n\n21) Trydnt: Move Y1 Trydnt R3\n\twil: I don&#39;t think this is gonna work...but I am committed to seeing how it plays out.\r\n\n\n22) wil: Discover R3 Y2 B3 B3\n\n23) Trydnt: Trade Y1 G1 Trydnt\n\n24) wil: Pass\n\n25) Trydnt: Build G1 Trydnt\n\twil: omg, this is ludicrous but I got it! I think!\n\twil: no,  that doesn&#39;t work\n\n26) wil: D R1 Y2 Y3 Y3\n\n27) Trydnt: Move G1 Trydnt R3\n\n28) wil: Trade R2 Y2 B2\n\n29) Trydnt: Build Y1 R3\n\n30) wil: T R1 G1 Wil\n\n31) Trydnt: Discover B2 R3 R2 R2\n\n32) wil: B R1 Wil\n\n33) Trydnt: Move Y1 R3 R2\n\n34) wil: Build G2 Wil\n\n35) Trydnt: Trade B3 G3 Trydnt\n\n36) wil: Trade R3 B3 B3\n\n37) Trydnt: Trade G3 R3 Trydnt\n\n38) wil: Move R1 Y3 Trydnt\n\n39) Trydnt: Discover R3 Trydnt Y3 Y3\n\n40) wil: Sacrifice R3 Wil\nAttack G1 Trydnt\nAttack B1 Trydnt\nAttack Y1 Trydnt\n\n\twil: the red worked out...hmmmm\n\nHomeworlds Online (SDG# 33517)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.10, Ended: 2018.2.23\nParticipants: Trydnt (S), dragon76n (N)\nWinner: Trydnt\n\n1) dragon76n: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) dragon76n: Build G1 Dragon76n\n\tdragon76n: Hello, good luck and have fun. :)\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: likewise my draconic friend\n\n5) dragon76n: T G1 Y1 Dragon76n\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) Trydnt: Build Y2 Trydnt\n\n9) dragon76n: Discover Y2 Dragon76n G3 Grethr\n\n10) Trydnt: Discover Y2 Trydnt G1 G1\n\n11) dragon76n: Build Y3 Grethr\n\n12) Trydnt: Build Y3 G1\n\n13) dragon76n: T Y1 R1 Dragon76n\n\n14) Trydnt: Trade Y1 R1 Trydnt\n\n15) dragon76n: Build G1 Dragon76n\n\n16) Trydnt: Discover Y2 G1 B3 B3\n\n17) dragon76n: T G1 B1 Dragon76n\n\n18) Trydnt: Build G1 Trydnt\n\n19) dragon76n: B B1 Dragon76n\n\n20) Trydnt: Trade G1 B1 Trydnt\n\n21) dragon76n: M B1 Dragon76n Grethr\n\n22) Trydnt: Move B1 Trydnt G1\n\n23) dragon76n: Build B2 Grethr\n\n24) Trydnt: Build B2 G1\n\n25) dragon76n: Trade B1 R1 Grethr\n\n26) Trydnt: Trade B2 R2 G1\n\n27) dragon76n: Build R2 Dragon76n\n\n28) Trydnt: Build Y1 G1\n\n29) dragon76n: D R2 Dragon76n Y3 Yelthr\n\n30) Trydnt: Build G1 Trydnt\n\n31) dragon76n: Build G1 Dragon76n\n\n32) Trydnt: Move G1 Trydnt G1\n\n33) dragon76n: M G1 Dragon76n Yelthr\n\n34) Trydnt: Build G2 Trydnt\n\n35) dragon76n: B G2 Dragon76n\n\n36) Trydnt: Move G1 G1 B3\n\n37) dragon76n: S G3 Dragon76n\nB G2 Yelthr\nB G3 Dragon76n\nB B1 Grethr\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 B3\nBuild B2 G1\n\n39) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild R2 Dragon76n\nBuild R3 Yelthr\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Trydnt\nBuild R3 G1\n\n41) dragon76n: Sacrifice Y2 Grethr\nMove R2 Yelthr G1\nMove R1 Grethr G1\nCatastrophe G1 Red\n\n42) Trydnt: Build Y2 B3\n\n43) dragon76n: Sacrifice Y3 Grethr\nMove B2 Grethr G1\nDiscover R3 Yelthr R1 Redone\nMove R3 Redone B3\n\n44) Trydnt: Build Y3 G1\n\n45) dragon76n: Sacrifice R2 Dragon76n\nAttack Y2 B3\nAttack Y2 B3\n\n46) Trydnt: Move Y1 G1 B3\nCatastrophe B3 Y\n\n47) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB R1 B3\nB B3 Grethr\n\n48) Trydnt: Sacrifice R1 Trydnt\nAttack B2 G1\n\n49) dragon76n: S B3 Grethr\nT R1 Y1 B3\nT G1 R1 Yelthr\nT G2 Y2 Dragon76n\n\n50) Trydnt: Trade B2 R2 G1\n\n51) dragon76n: Attack G1 B3\n\n52) Trydnt: Move Y3 G1 Grethr\n\n53) dragon76n: Trade B1 Y1 Grethr\n\n54) Trydnt: Build Y2 G1\n\n55) dragon76n: Move Y2 Dragon76n Yelthr\n\n56) Trydnt: Sacrifice R2 G1\nAttack Y1 Grethr\nPass\n\n57) dragon76n: Move G1 B3 G1\n\n58) Trydnt: Sacrifice Y2 G1\nDiscover G2 Trydnt G1 Gee1\nDiscover B1 G1 G2 G2\n\n59) dragon76n: Sacrifice G1 G1\nBuild Y2 B3\n\n60) Trydnt: Build G1 Trydnt\n\n61) dragon76n: Move R3 B3 Gee1\n\n62) Trydnt: Build R1 Trydnt\n\n63) dragon76n: Attack G2 Gee1\n\n64) Trydnt: Move R1 Trydnt G1\n\n65) dragon76n: Move G2 Yelthr Dragon76n\n\n66) Trydnt: Build R2 G1\n\n67) dragon76n: Build R2 Gee1\n\n68) Trydnt: Move R1 G1 Grethr\n\n69) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB R2 Dragon76n\nB R3 Yelthr\n\n70) Trydnt: Move B2 G1 Grethr\n\n71) dragon76n: Move B1 Dragon76n Yelthr\n\n72) Trydnt: Build B1 Grethr\n\n73) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild B2 Yelthr\nBuild B3 Yelthr\n\n74) Trydnt: Sacrifice Y1 Grethr\nMove B1 G2 Yelthr\nCatastrophe Yelthr B\n\n75) dragon76n: Sacrifice G3 Dragon76n\nBuild G2 Gee1\nBuild G3 Dragon76n\nBuild Y1 B3\n\n76) Trydnt: Move G1 Trydnt Gee1\nCatastrophe Gee1 G\n\n77) dragon76n: Trade Y1 B1 B3\n\n78) Trydnt: Build Y1 Grethr\n\n79) dragon76n: Discover B1 B3 G1 Greone\n\n80) Trydnt: Move R3 Trydnt Greone\n\n81) dragon76n: Trade B1 G1 Greone\n\n82) Trydnt: Attack G1 Greone\n\n83) dragon76n: Trade Y2 G2 B3\n\n84) Trydnt: Build Y2 G1\n\n85) dragon76n: Move Y2 Yelthr G1\n\n86) Trydnt: Discover Y2 G1 R2 R2\n\n87) dragon76n: Move R3 Yelthr R2\n\n88) Trydnt: Sacrifice Y2 R2\nMove R3 Greone B3\nMove G1 Greone Yelthr\n\n89) dragon76n: Sacrifice R2 Dragon76n\nAttack G1 Yelthr\nAttack R2 G1\n\n90) Trydnt: Attack G2 B3\n\n91) dragon76n: Move Y1 B3 R2\n\n92) Trydnt: Sacrifice G2 B3\nBuild R2 B3\nBuild R3 Grethr\n\n93) dragon76n: Discover R2 G1 B2 Blutwo\n\n94) Trydnt: Sacrifice R1 Grethr\nAttack Y2 G1\n\n95) dragon76n: S G2 Dragon76n\nB Y2 R2\nB G1 Dragon76n\n\n96) Trydnt: Sacrifice Y2 G1\nMove R2 B3 R2\nMove R3 B3 R2\nCatastrophe R2 R\n\n97) dragon76n: Build G2 Yelthr\n\n98) Trydnt: Build Y1 Grethr\n\n99) dragon76n: Trade R2 G2 Blutwo\n\n100) Trydnt: Move R3 Grethr Blutwo\n\n101) dragon76n: Sacrifice G2 Blutwo\nBuild G2 Dragon76n\nBuild G2 Yelthr\n\n102) Trydnt: Build Y2 G1\n\n103) dragon76n: T G1 B1 Dragon76n\n\n104) Trydnt: Sacrifice Y3 G1\nMove B1 Grethr Dragon76n\nMove Y1 Grethr Dragon76n\nMove Y3 Grethr Dragon76n\n\n105) dragon76n: Attack Y3 Dragon76n\n\n106) Trydnt: Sacrifice Y2 G1\nMove B2 Grethr Dragon76n\nMove Y1 Grethr Dragon76n\nCatastrophe Dragon76n B\nCatastrophe Dragon76n Y\n\n\nHomeworlds Online (SDG# 33544)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.11, Ended: 2018.1.5\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\twil: And he has made it thru the gauntlet to the top of the ladder!\n\twil: have fun!\n\tDraw5PlayAll: Huh?\n\n2) wil: Homeworld Y1 B1 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\twil: great time to try something different!\n\n4) wil: Build G1 Wil\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) wil: Trade G1 B1 Wil\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) wil: Build B1 Wil\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G1 G1\n\n12) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G3 G3\n\n14) wil: Discover B2 Y3 G1 Gwon\n\n15) Draw5PlayAll: Build Y2 G1\n\n16) wil: S B2 Y3\nT B2 Y2 Gwon\nT B3 G3 Wil\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) wil: Build Y3 Gwon\n\n19) Draw5PlayAll: Build Y3 Draw5playall\n\n20) wil: D Y2 Gwon B3 B3\n\n21) Draw5PlayAll: Discover Y2 Draw5playall B3 B3&#39;\n\n22) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n23) Draw5PlayAll: Build G2 Draw5playall\n\n24) wil: Sacrifice B2 Y3\nTrade B2 R2 Y3\nTrade B3 G3 Wil\n\n25) Draw5PlayAll: Move G2 Draw5playall B3&#39;\n\n26) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3&#39;\nBuild G2 B3&#39;\nBuild G3 Draw5playall\n\n28) wil: M B2 Y3 Gwon\n\n29) Draw5PlayAll: Sacrifice G2 B3&#39;\nBuild G2 Draw5playall\nBuild G3 B3&#39;\n\tDraw5PlayAll: My turn to grab all the 2-pointers.\n\n30) wil: M B2 Y3 G1\n\n31) Draw5PlayAll: Sacrifice Y1 G1\nDiscover Y2 G1 R3 R3\n\n32) wil: M B2 Gwon B3&#39;\n\n33) Draw5PlayAll: Sacrifice Y2 B3&#39;\nDiscover G3 B3&#39; R1 Ntvwbp\nMove G2 B3&#39; Ntvwbp\n\n34) wil: M Y3 Gwon R3\n\n35) Draw5PlayAll: Move Y2 R3 Ntvwbp\n\n36) wil: T B1 G1 Y3\n\n37) Draw5PlayAll: Trade G2 R2 Draw5playall\n\tDraw5PlayAll: Stands for &quot;No Tresspassing Violators Will Be Prosecuted&quot;. Undo because I wanted to go to an R2 but decided not to.\n\n38) wil: Build G2 Y3\n\n39) Draw5PlayAll: Move R2 Draw5playall G3\n\n40) wil: Sacrifice G2 Y3\nBuild Y1 B3\nBuild Y2 R3\n\n41) Draw5PlayAll: Build R1 G3\n\n42) wil: B G2 Y3\n\n43) Draw5PlayAll: Sacrifice R1 G3\nAttack B2 B3&#39;\n\n44) wil: Sacrifice B1 Wil\nTrade G1 B1 Y3\n\n45) Draw5PlayAll: Sacrifice Y1 G3\nMove B2 B3&#39; Ntvwbp\n\n46) wil: B B1 G1\n\n47) Draw5PlayAll: Sacrifice G2 B3&#39;\nBuild Y1 Ntvwbp\nBuild B3 Ntvwbp\n\n48) wil: Build R1 Y3\n\twil: all of these games are archived...need to build a program to extract them and put moves on data sheet to be compared and analyzed...various openers results...players rating...frequency of various ending attacks, etc.\n\twil: I like that you play different openings, all learning to me....need to play more of them.\n\tDraw5PlayAll: Well, you do like to learn about people [through] the way they play.\r\n\r\nI do not use blue teleportation very often... nor the blue sac in general... at May because I have a hard time getting that many blue ships (there are usually 3-5 in star systems anyway in late game).\n\n49) Draw5PlayAll: Sacrifice Y2 Ntvwbp\nMove B3 Ntvwbp G3\nMove B3 G3 Wil\n\n50) wil: Sacrifice Y2 R3\nMove Y3 R3 Wil\nMove B1 Y3 Wil\nCatastrophe Wil B\n\n51) Draw5PlayAll: Sacrifice G2 Ntvwbp\n\nBuild Y2 Ntvwbp\nBuild Y2 Draw5playall\n\n52) wil: S B1 G1\nT Y3 B3 Wil\n\n53) Draw5PlayAll: Move Y1 Ntvwbp G3\n\n54) wil: Build G1 Y3\n\twil: nice move...was contemplating do I change to R3 or continue with my plan...you proved what I should have been doing!\n\n55) Draw5PlayAll: Discover G1 Draw5playall B1 Donteventry\n\n56) wil: M G1 Y3 Wil\n\n57) Draw5PlayAll: Build Y3 G3\n\n58) wil: B G2 Wil\n\twil: I do believe you have this game...\n\tDraw5PlayAll: &quot;have&quot; as in &quot;North can force a win from this position&quot;?\n\n59) Draw5PlayAll: Discover Y2 Ntvwbp G2 G2\n\n60) wil: M R1 Y3 Wil\n\twil: Just goin thru the motions over here waiting for the shoe to drop!\n\n61) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y3 G3 Wil\nMove Y1 G3 Wil\nMove Y2 G2 Wil\nCatastrophe Wil Yellow\n\twil: You toying with me?\n\n\tDraw5PlayAll: Yeah, but my faster plan may have fallen into a bluebird trap, so I adjusted.\r\n\r\nGood game.\n\twil: All you had to do was move one yellow in... and then the next move follow up with the other two...  gg\n\tDraw5PlayAll: Oh, our home systems were connected. Completely missed that.\n\nHomeworlds Online (SDG# 33552)\nStarted: 2017.12.11, Ended: 2017.12.12\nParticipants: inattentive (S), Schmoopy (N)\nWinner: Schmoopy\n\n1) Schmoopy: Homeworld R3 B1 G3\n\n2) inattentive: Homeworld Y2 B3 G3\n\tinattentive: homeworld y2, b1, g3\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) inattentive: Build G1 Inattentive\n\n5) Schmoopy: Trade G1 B1 Schmoopy\n\n6) inattentive: Trade G1 R1 Inattentive\n\n7) Schmoopy: Build B1 Schmoopy\n\n8) inattentive: Build G1 Inattentive\n\n9) Schmoopy: Build G1 Schmoopy\n\n10) inattentive: Trade G1 Y1 Inattentive\n\n11) Schmoopy: Trade G1 Y1 Schmoopy\n\n12) inattentive: Build R1 Inattentive\n\n13) Schmoopy: Discover B1 Schmoopy R2 Stelaris\n\n14) inattentive: Build G1 Inattentive\n\n15) Schmoopy: Build G1 Schmoopy\n\n16) inattentive: Discover G3 Inattentive R1 Poo\n\n17) Schmoopy: Move G3 Schmoopy Stelaris\n\n18) inattentive: Build R2 Inattentive\n\n19) Schmoopy: Build B2 Stelaris\n\n20) inattentive: Trade R2 B2 Inattentive\n\n21) Schmoopy: Trade B2 R2 Stelaris\n\n22) inattentive: Build R2 Inattentive\n\n23) Schmoopy: Build R3 Stelaris\n\n24) inattentive: Move R1 Inattentive Poo\n\n25) Schmoopy: Sacrifice Y1 Schmoopy\nDiscover R3 Stelaris Y1 Pee\n\n26) inattentive: Sacrifice Y1 Inattentive\nMove G3 Poo Inattentive\n\n27) Schmoopy: Trade B1 Y1 Schmoopy\n\tinattentive: move g3 poo inattentive\n\n28) inattentive: Trade R2 Y2 Inattentive\n\n29) Schmoopy: Build Y1 Schmoopy\n\n30) inattentive: Build R2 Inattentive\n\n31) Schmoopy: Move Y1 Schmoopy Stelaris\n\n32) inattentive: Move R1 Inattentive Poo\n\n33) Schmoopy: Move R2 Stelaris Pee\n\n34) inattentive: Build R3 Inattentive\n\n35) Schmoopy: Build Y2 Schmoopy\n\n36) inattentive: Move R2 Inattentive Pee\n\n37) Schmoopy: Build Y3 Schmoopy\n\n38) inattentive: Sacrifice Y2 Inattentive\nMove R1 Poo Stelaris\nMove R1 Stelaris Pee\nCatastrophe Pee R\n\n39) Schmoopy: Discover Y2 Schmoopy G2 Neat\n\n40) inattentive: Trade G1 Y1 Inattentive\n\n41) Schmoopy: Sacrifice G3 Stelaris\nBuild Y2 Stelaris\nBuild Y3 Neat\nBuild Y3 Stelaris\n\n42) inattentive: Move Y1 Inattentive Poo\n\tinattentive: You stoop\n\n43) Schmoopy: Move Y3 Stelaris Poo\n\n44) inattentive: Discover Y1 Poo G2 Comegetmejerry\n\n45) Schmoopy: Attack R1 Poo\n\n46) inattentive: Build R1 Inattentive\n\n47) Schmoopy: Build G1 Schmoopy\n\n48) inattentive: Move R1 Inattentive Poo\n\n49) Schmoopy: Move R1 Poo Neat\n\n50) inattentive: Build R2 Inattentive\n\n51) Schmoopy: Attack R1 Poo\n\n52) inattentive: Discover Y1 Comegetmejerry G1 Suckitbitch\n\n53) Schmoopy: Build G2 Schmoopy\n\n54) inattentive: Move R3 Inattentive Suckitbitch\n\n55) Schmoopy: Move Y2 Stelaris Poo\n\n56) inattentive: Build G2 Inattentive\n\n57) Schmoopy: Move G1 Schmoopy Neat\n\n58) inattentive: Move R3 Suckitbitch Stelaris\n\n59) Schmoopy: Move B1 Stelaris Schmoopy\n\n60) inattentive: Attack Y1 Stelaris\n\n61) Schmoopy: Build G3 Schmoopy\n\n62) inattentive: Build G3 Inattentive\n\n63) Schmoopy: Sacrifice Y2 Neat\nMove G1 Neat Poo\nMove G1 Poo Inattentive\nCatastrophe Inattentive Green\n\n64) inattentive: Build Y2 Suckitbitch\n\n65) Schmoopy: Move Y3 Poo Inattentive\n\n66) inattentive: Trade R2 G2 Inattentive\n\n67) Schmoopy: Trade G3 R3 Schmoopy\n\n\nHomeworlds Online (SDG# 33492)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.13, Ended: 2018.1.2\nParticipants: wil (S), Ottia (N)\nWinner: wil\n\n1) Ottia: Homeworld G3 B2 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Ottia: Build Y1 Ottia\n\n4) wil: B G1 Wil\n\n5) Ottia: Build Y1 Ottia\n\n6) wil: B G1 Wil\n\tOttia: Merry Christmas, wil!\n\n7) Ottia: Trade Y1 G1 Ottia\n\twil: Same to you!  I am down at my mothers awaiting my kids and nieces to arrive...everybody grown and no little ones running around.\n\n8) wil: T G1 B1 Wil\n\n9) Ottia: Build G1 Ottia\n\n10) wil: B B1 Wil\n\n\tOttia: I&#39;m really sorry for resigning like this but at the moment I don&#39;t have the time to concentrate and play properly. I will very happily challenge you again when I have.\r\n\r\nI hope otherwise you have enjoyed Christmas and started the year in style!\n\twil: no worries...whenever you have time is fine..\n\nHomeworlds Online (SDG# 33558)\nStarted: 2017.12.13, Ended: 2017.12.13\nParticipants: Schmoopy (S), inattentive (N)\nWinner: Schmoopy\n\n1) inattentive: Homeworld G3 B2 Y3\n\n2) Schmoopy: Homeworld G2 B1 R3\n\tinattentive: You cant do y3 loser, cause i did\r\n\n\n3) inattentive: Build Y1 Inattentive\n\tinattentive: build y1 inattentive\n\n4) Schmoopy: Build R1 Schmoopy\n\n5) inattentive: Trade Y1 R1 Inattentive\n\n6) Schmoopy: Trade R1 Y1 Schmoopy\n\n7) inattentive: Build Y1 Inattentive\n\n8) Schmoopy: Build R1 Schmoopy\n\n9) inattentive: Trade Y1 B1 Inattentive\n\n10) Schmoopy: Build Y1 Schmoopy\n\n11) inattentive: Discover B1 Inattentive G1 Potatoe\n\tSchmoopy: This game is weird. Usually we both have a bunch of green ships in the beginning\n\n12) Schmoopy: Trade Y1 G1 Schmoopy\n\n13) inattentive: Build Y1 Inattentive\n\n14) Schmoopy: Discover G1 Schmoopy B3 Shabby\n\n15) inattentive: Move Y1 Inattentive Potatoe\n\n16) Schmoopy: Move R1 Schmoopy Shabby\n\n17) inattentive: Move R1 Inattentive Potatoe\n\n18) Schmoopy: Move R3 Schmoopy Shabby\n\n19) inattentive: Build Y1 Inattentive\n\n20) Schmoopy: Build Y2 Schmoopy\n\n21) inattentive: Build Y2 Potatoe\n\n22) Schmoopy: Move Y1 Schmoopy Shabby\n\n23) inattentive: Trade Y1 R1 Potatoe\n\n24) Schmoopy: Move R3 Shabby Potatoe\n\n25) inattentive: Trade Y2 R2 Potatoe\nCatastrophe Potatoe R\n\n26) Schmoopy: Build Y1 Shabby\n\n27) inattentive: Move Y1 Inattentive Potatoe\n\n28) Schmoopy: Build Y2 Schmoopy\n\n29) inattentive: Build B1 Potatoe\n\n30) Schmoopy: Build G1 Shabby\n\n31) inattentive: Build B2 Potatoe\n\n32) Schmoopy: Build G2 Shabby\n\n33) inattentive: Trade B2 R2 Potatoe\n\n34) Schmoopy: Discover G1 Shabby R1 Haribo\n\n35) inattentive: Build B2 Potatoe\n\n36) Schmoopy: Build G2 Haribo\n\n37) inattentive: Trade Y3 G3 Inattentive\n\n38) Schmoopy: Build G3 Haribo\n\n39) inattentive: Move R2 Potatoe Inattentive\n\n40) Schmoopy: Sacrifice Y2 Schmoopy\nMove G2 Haribo Inattentive\nMove G1 Haribo Inattentive\nCatastrophe Inattentive Green\n\n41) inattentive: Trade B2 G2 Potatoe\n\n42) Schmoopy: Sacrifice G2 Shabby\nBuild R1 Shabby\nBuild R2 Shabby\n\n43) inattentive: Move G2 Potatoe Inattentive\n\n44) Schmoopy: Sacrifice Y1 Shabby\nMove G3 Haribo Inattentive\n\n45) inattentive: Sacrifice Y1 Potatoe\nMove R2 Inattentive Shabby\nCatastrophe Shabby R\n\n46) Schmoopy: Trade G1 R1 Shabby\n\n47) inattentive: Build G1 Inattentive\n\n48) Schmoopy: Move R1 Shabby Inattentive\n\n49) inattentive: Trade B1 Y1 Potatoe\n\n50) Schmoopy: Attack G2 Inattentive\n\n51) inattentive: Move Y1 Potatoe Inattentive\n\n52) Schmoopy: Attack G1 Inattentive\n\n53) inattentive: Trade Y1 G1 Inattentive\n\n54) Schmoopy: Attack G1 Inattentive\n\n\tDraw5PlayAll: catastrophe inattentive green\n\nHomeworlds Online (SDG# 33549)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.13, Ended: 2017.12.21\nParticipants: smokeytroll42 (S), Schmoopy (N)\nWinner: Schmoopy\n\n1) Schmoopy: Homeworld R3 B2 G3\n\tSchmoopy: Hey, I&#39;m a newer player, too. I&#39;ve played about 4 games with a coworker after we taught ourselves how to play\n\n2) smokeytroll42: Homeworld G1 B2 Y3\n\tsmokeytroll42: Hello! Sounds good. I have three or four games under my belt as well.\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) smokeytroll42: Build Y1 Smokeytroll42\n\tSchmoopy: Awesome. I&#146;m loving this game. Where&#146;d you hear about it?\n\tsmokeytroll42: Oh, probably the Pyramid Acrade promo videos. Very neat theme and mechanics. I love that there&#146;s no gameboard.\n\n5) Schmoopy: Build G1 Schmoopy\n\n6) smokeytroll42: Build Y1 Smokeytroll42\n\n7) Schmoopy: Trade G3 Y3 Schmoopy\n\n8) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\n9) Schmoopy: Discover G1 Schmoopy B1 Patrick\n\n10) smokeytroll42: Build G2 Smokeytroll42\n\n11) Schmoopy: Sacrifice Y3 Schmoopy\nDiscover G1 Patrick R3 Fingerscrossed\nMove G1 Fingerscrossed Smokeytroll42\nPass\nCatastrophe Smokeytroll42 Green\n\n12) smokeytroll42: Trade Y1 G1 Smokeytroll42\n\tsmokeytroll42: Ouch, I didnt even know that move was possible. But I guess I shouldn&#146;t have assumed that you can&#146;t discover planets with a sacrifice.\n\tsmokeytroll42: Good move\n\n13) Schmoopy: Build G1 Schmoopy\n\n14) smokeytroll42: Build G2 Smokeytroll42\n\tSchmoopy: Thanks man. Yeah sacrifice doesn&#146;t have any special rules I don&#146;t think. It just gives you a number of turns using the ship&#146;s power\n\n15) Schmoopy: Trade G1 Y1 Schmoopy\n\n16) smokeytroll42: Discover G2 Smokeytroll42 B1 Dune\n\n17) Schmoopy: Build Y1 Schmoopy\n\n18) smokeytroll42: Build Y2 Smokeytroll42\n\n19) Schmoopy: Discover Y1 Schmoopy R1 Zaphod\n\n20) smokeytroll42: Trade G2 R2 Dune\n\n21) Schmoopy: Build Y2 Schmoopy\n\n22) smokeytroll42: Build G1 Smokeytroll42\n\n23) Schmoopy: Trade Y1 B1 Schmoopy\n\n24) smokeytroll42: Move G1 Smokeytroll42 Dune\n\n25) Schmoopy: Build G2 Schmoopy\n\n26) smokeytroll42: Build G2 Smokeytroll42\n\n27) Schmoopy: Build B1 Schmoopy\n\n28) smokeytroll42: Trade R2 B2 Dune\n\n29) Schmoopy: Move B1 Schmoopy Zaphod\n\n30) smokeytroll42: Sacrifice Y1 Smokeytroll42\nDiscover B2 Dune G3 Coral\n\n31) Schmoopy: Move G1 Schmoopy Zaphod\n\n32) smokeytroll42: Build B3 Coral\n\n33) Schmoopy: Build B3 Zaphod\n\n34) smokeytroll42: Build Y1 Smokeytroll42\n\n35) Schmoopy: Trade B1 R1 Schmoopy\n\n36) smokeytroll42: Trade B3 R3 Coral\n\n37) Schmoopy: Move B3 Zaphod Smokeytroll42\n\n38) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove R3 Coral Dune\nMove R3 Dune Schmoopy\n\n39) Schmoopy: Sacrifice G2 Schmoopy\nBuild B1 Smokeytroll42\nBuild B3 Smokeytroll42\nCatastrophe Smokeytroll42 Blue\n\tSchmoopy: gg!\n\tsmokeytroll42: Gg, I didn&#146;t see that catastrophe coming. Well played. Rematch?\n\tSchmoopy: Let&#146;s do it!\n\n\nHomeworlds Online (SDG# 33542)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.14, Ended: 2018.1.12\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Trydnt\n\n1) Draw5PlayAll: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n8) Trydnt: Build R2 Trydnt\n\n9) Draw5PlayAll: Build R2 Draw5playall\n\n10) Trydnt: Build R2 Trydnt\n\n11) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) Trydnt: Build R2 Trydnt\n\n15) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n16) Trydnt: Discover R2 Trydnt Y3 Y3\n\n17) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n18) Trydnt: Move R2 Y3 G2\n\n19) Draw5PlayAll: Build B1 Draw5playall\n\n20) Trydnt: Trade R1 B1 Trydnt\n\n21) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n22) Trydnt: Attack R1 G2\n\n23) Draw5PlayAll: Discover R2 Draw5playall G2 G2b\n\n24) Trydnt: Discover Y2 Trydnt G3 G3\n\n25) Draw5PlayAll: Move B1 Draw5playall G2\n\n26) Trydnt: Attack B1 G2\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) Trydnt: Build Y1 G3\n\n29) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n30) Trydnt: Build B2 G2\n\n31) Draw5PlayAll: Move B1 Draw5playall G2b\n\n32) Trydnt: Move Y1 G3 G2\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) Trydnt: Move B1 G2 G3\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\n36) Trydnt: Build Y2 G2\n\n37) Draw5PlayAll: Move Y1 Draw5playall G2b\n\n38) Trydnt: Discover R2 G2 Y3 Y3\n\n39) Draw5PlayAll: Build Y3 G2b\n\n40) Trydnt: Build Y3 G3\n\n41) Draw5PlayAll: Move G1 Draw5playall G2b\n\n42) Trydnt: Build G1 Trydnt\n\n43) Draw5PlayAll: Discover G1 G2b R3 R3\n\n44) Trydnt: Move R2 Trydnt R3\n\n45) Draw5PlayAll: Sacrifice G1 R3\nBuild G1 Draw5playall\n\n46) Trydnt: Build B2 G2\n\n47) Draw5PlayAll: Build B3 G2b\n\n48) Trydnt: Build B3 G3\n\n49) Draw5PlayAll: Move G1 Draw5playall G2\n\n50) Trydnt: Attack G1 G2\n\n51) Draw5PlayAll: Build G1 Draw5playall\n\n52) Trydnt: Sacrifice Y3 G3\nMove G1 G2 Draw5playall\nMove B2 G2 Draw5playall\nMove B2 G2 Draw5playall\n\n53) Draw5PlayAll: Attack G1 Draw5playall\n\n54) Trydnt: Sacrifice Y2 G2\nMove B1 G3 G2\nMove B1 G2 Draw5playall\nCatastrophe Draw5playall B\n\n55) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G1 Draw5playall Y3 Base\nMove B3 G2b R3\n\n56) Trydnt: Sacrifice Y2 G3\nMove R2 R3 Draw5playall\nMove R1 G2 Draw5playall\n\n57) Draw5PlayAll: Sacrifice Y3 G2b\nMove G1 Draw5playall Base\nMove G1 Base Trydnt\nMove G1 Base Trydnt\nCatastrophe Trydnt Green\n\n58) Trydnt: Move R2 Y3 Draw5playall\nCatastrophe Draw5playall R\n\n\nHomeworlds Online (SDG# 33470)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.14, Ended: 2017.12.26\nParticipants: Schmoopy (S), Felix (N)\nWinner: Schmoopy\n\n1) Felix: Homeworld R2 B3 G3\n\tSchmoopy: Hey! I got my pyramids about a month ago, I&#39;ve played maybe 5 games of homeworlds and love it.\n\n2) Schmoopy: Homeworld G2 B1 Y3\n\tFelix: Hello! Glad you picked up the game and are loving it. I hope you have fun! \n\n3) Felix: Build G1 Felix\n\n4) Schmoopy: Build Y1 Schmoopy\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Schmoopy: Trade Y1 B1 Schmoopy\n\n7) Felix: Build Y1 Felix\n\n8) Schmoopy: Build B1 Schmoopy\n\n9) Felix: Discover Y1 Felix G1 Out\n\n10) Schmoopy: Discover B1 Schmoopy Y3 About\n\n\nHomeworlds Online (SDG# 33479)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.20, Ended: 2017.12.28\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: Homeworld B3 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build Y1 Wil\n\twil: lol...tried to give away the start eh?\n\tTrydnt: thought about it but realized it was a cop-out so I took it back\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Build Y2 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: T Y2 G2 Wil\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) wil: D Y1 Wil G1 Y3\n\n11) Trydnt: Build Y2 G3\n\n12) wil: S G2 Wil\nB Y2 Y3\nB Y3 Wil\n\n13) Trydnt: Discover Y1 G3 G1 G1\n\n14) wil: D Y1 Y3 Y3 B1\n\twil: Idk if that was the best move... Almost went the other way\n\n15) Trydnt: Build G1 Trydnt\n\tTrydnt: nice move with the star name\n\twil: Lol I do that when someone uses my vernacular\n\twil: Down with family for the holydays\n\n16) wil: Discover Y2 Y3 B3 G2\n\tTrydnt: haha I started using your venacular for that exact reason, so I could at some point turn it around on you. but I check the star every time just to be safe\n\n17) Trydnt: Discover Y2 G3 G1 Gee1\n\n18) wil: M Y3 Wil Gee1\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) wil: T Y2 G2 G2\n\n21) Trydnt: Build Y2 G1\n\twil: Whew, don&#39;t move that coin!\n\n22) wil: B G1 G2\n\n23) Trydnt: Move Y1 G1 Wil\n\n24) wil: T Y3 R3 Wil\n\n25) Trydnt: Build Y3 G1\n\n26) wil: A Y1 Wil\n\n27) Trydnt: Move R1 Trydnt B1\n\twil: Merry Christmas\n\tTrydnt: haha nice big red tree there\r\nmerry christmas!\n\n28) wil: M Y1 B1 G1\n\n29) Trydnt: Move Y3 G1 G2\n\n30) wil: B R1 Wil\n\n31) Trydnt: Sacrifice R1 B1\nAttack G2 G2\n\n32) wil: B Y3 G1\n\n33) Trydnt: Trade G2 R2 G2\n\n34) wil: M R1 Wil G1\n\n35) Trydnt: Sacrifice R2 G2\nAttack R1 G1\nAttack Y1 G1\n\twil: How are the slopes?\n\tTrydnt: shit\n\tTrydnt: there isn&#39;t nearly enough snow\r\n\n\n36) wil: Build R1 Wil\n\n37) Trydnt: Sacrifice Y2 G1\nMove R1 G1 Wil\nMove Y1 G1 Wil\n\n38) wil: Attack R1 Wil\n\twil: friends hit kirkwood and squaw and said lots of trails open, and either groomed or packed powder last weekend.\n\n39) Trydnt: Trade Y1 R1 Wil\nCatastrophe Wil R\n\tTrydnt: yeah we ski alpine meadows and our passes work at Squaw but it&#39;s hella crowded with tourists right now\n\n40) wil: Move Y3 G1 Wil\n\n41) Trydnt: Discover Y2 Trydnt G3 G3\n\twil: You do think of moves that I would have never considered.\n\n42) wil: Trade Y1 R1 Wil\n\n43) Trydnt: Build Y1 Gee1\n\n44) wil: Move Y3 Gee1 G2\n\n45) Trydnt: Discover Y3 G2 R1 R1\n\n46) wil: B G1 G2\n\n47) Trydnt: Build G2 Trydnt\n\n48) wil: Sacrifice Y3 G2\nMove G1 G2 Trydnt\nMove G1 G2 Trydnt\nPass\nCatastrophe Trydnt G\n\n\twil: I did not think you&#39;d fall for that!\n\tTrydnt: wow\n\nHomeworlds Online (SDG# 33591)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.21, Ended: 2018.1.22\nParticipants: smokeytroll42 (S), Schmoopy (N)\nWinner: smokeytroll42\n\n1) Schmoopy: Homeworld B3 Y1 G3\n\n2) smokeytroll42: Homeworld B2 R1 G3\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Schmoopy: Trade G1 Y1 Schmoopy\n\n6) smokeytroll42: Trade G3 Y3 Smokeytroll42\n\n7) Schmoopy: Build G1 Schmoopy\n\n8) smokeytroll42: Build G1 Smokeytroll42\n\n9) Schmoopy: Build G2 Schmoopy\n\n10) smokeytroll42: Build G2 Smokeytroll42\n\n11) Schmoopy: Discover G2 Schmoopy B2 Ding\n\n12) smokeytroll42: Discover G1 Smokeytroll42 G3 Yaviniv\n\n13) Schmoopy: Move Y1 Schmoopy Ding\n\n14) smokeytroll42: Discover G1 Smokeytroll42 G3 Hoth\n\n15) Schmoopy: Build G2 Ding\n\n16) smokeytroll42: Build Y1 Smokeytroll42\n\n17) Schmoopy: Build Y2 Ding\n\n18) smokeytroll42: Move Y1 Smokeytroll42 Yaviniv\n\n19) Schmoopy: Discover Y2 Ding B3 Dong\n\n20) smokeytroll42: Build Y2 Smokeytroll42\n\n21) Schmoopy: Sacrifice G3 Schmoopy\nBuild G3 Schmoopy\nBuild Y2 Ding\nBuild Y3 Dong\n\n22) smokeytroll42: Build Y3 Yaviniv\n\n\tsmokeytroll42: Yo, you still want to play?\n\nHomeworlds Online (SDG# 33618)\nVariants: &quot;Unrated&quot;\nStarted: 2017.12.25, Ended: 2017.12.28\nParticipants: Schmoopy (S), Krom (N)\nWinner: Krom\n\n1) Krom: Homeworld R3 B1 G3\n\n2) Schmoopy: Homeworld B2 Y1 G3\n\n3) Krom: Build G1 Krom\n\n4) Schmoopy: Build G1 Schmoopy\n\n5) Krom: Trade G1 B1 Krom\n\n6) Schmoopy: Trade G1 Y1 Schmoopy\n\n7) Krom: Build G1 Krom\n\n8) Schmoopy: Build Y1 Schmoopy\n\n9) Krom: Build G1 Krom\n\n10) Schmoopy: Build G1 Schmoopy\n\n11) Krom: Build B1 Krom\n\n12) Schmoopy: Build G2 Schmoopy\n\n13) Krom: Trade B1 R1 Krom\n\n14) Schmoopy: Trade G1 B1 Schmoopy\n\n15) Krom: Build B2 Krom\n\n16) Schmoopy: Discover B1 Schmoopy G3 Meme\n\n17) Krom: Trade B2 Y2 Krom\n\n18) Schmoopy: Build B2 Meme\n\n19) Krom: Discover B1 Krom G2 Dingus\n\n20) Schmoopy: Trade B1 R1 Meme\n\n21) Krom: Build Y2 Krom\n\n22) Schmoopy: Move Y1 Schmoopy Meme\n\n23) Krom: Move Y2 Krom Dingus\n\n24) Schmoopy: Build R1 Meme\n\n25) Krom: Sacrifice G3 Krom\nBuild Y2 Krom\nBuild Y3 Krom\nBuild Y3 Dingus\n\n26) Schmoopy: Build Y3 Meme\n\n27) Krom: Move R1 Krom Dingus\n\n28) Schmoopy: Sacrifice Y3 Meme\nMove Y1 Meme Dingus\nMove Y1 Dingus Krom\nPass\nCatastrophe Krom Yellow\n\n29) Krom: Move Y2 Dingus Krom\n\n30) Schmoopy: Move Y1 Schmoopy Meme\n\n31) Krom: Build R2 Dingus\n\n32) Schmoopy: Move R1 Meme Schmoopy\n\n33) Krom: Move R1 Dingus Krom\n\n34) Schmoopy: Build R2 Schmoopy\n\n35) Krom: Build B1 Dingus\n\n36) Schmoopy: Discover R2 Schmoopy G3 Crusty\n\n37) Krom: Move Y3 Dingus Crusty\n\n38) Schmoopy: Sacrifice G2 Schmoopy\nBuild R2 Schmoopy\nBuild R3 Meme\n\n39) Krom: Build R3 Dingus\n\n40) Schmoopy: Discover R3 Meme Y2 Neato\n\n41) Krom: Sacrifice Y2 Krom\nMove R3 Dingus Meme\nMove R2 Dingus Krom\n\n42) Schmoopy: Move R1 Meme Neato\n\n43) Krom: Sacrifice Y3 Crusty\nMove R2 Krom Neato\nMove R1 Krom Neato\nMove B1 Dingus Krom\nCatastrophe Neato R\n\n44) Schmoopy: Discover B2 Meme Y2 Neato2\n\n45) Krom: Attack Y1 Meme\n\n46) Schmoopy: Trade R2 B2 Schmoopy\n\n47) Krom: Move R3 Meme Neato2\n\n48) Schmoopy: Sacrifice G3 Schmoopy\nBuild B3 Neato2\nBuild B3 Neato2\nBuild B3 Schmoopy\n\n49) Krom: Sacrifice Y1 Meme\nMove B1 Krom Neato2\nCatastrophe Neato2 B\n\n50) Schmoopy: Trade B3 G3 Schmoopy\n\n51) Krom: Move R3 Neato2 Crusty\n\n52) Schmoopy: Move R1 Schmoopy Crusty\n\n53) Krom: Trade G1 Y1 Krom\n\n54) Schmoopy: Build R1 Crusty\nCatastrophe Crusty Red\n\n55) Krom: Build Y1 Krom\n\n56) Schmoopy: Build G1 Schmoopy\n\n57) Krom: Build Y2 Krom\n\n58) Schmoopy: Trade B2 Y2 Schmoopy\n\n59) Krom: Move Y1 Krom Dingus\n\n60) Schmoopy: Discover Y2 Schmoopy G3 Crambo\n\n61) Krom: Discover Y1 Dingus G3 Brigfacks\n\n62) Schmoopy: Discover G3 Schmoopy R3 Peace\n\n63) Krom: Build Y2 Brigfacks\n\n64) Schmoopy: Sacrifice Y2 Crambo\nMove G3 Peace Dingus\nMove G3 Dingus Krom\n\n65) Krom: Move Y2 Brigfacks Schmoopy\n\n66) Schmoopy: Attack Y2 Krom\n\n67) Krom: Sacrifice B1 Dingus\nTrade Y2 R2 Schmoopy\n\n68) Schmoopy: Sacrifice G3 Krom\nBuild Y2 Krom\nBuild Y2 Krom\nBuild G1 Schmoopy\nCatastrophe Krom Yellow\n\n69) Krom: Attack G1 Schmoopy\n\n\nHomeworlds Online (SDG# 33540)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.26, Ended: 2018.2.10\nParticipants: wil (S), orangeblood (N)\nWinner: wil\n\n1) orangeblood: Homeworld B1 Y3 G3\n\n2) wil: H B2 Y1 G3\n\torangeblood: Hi, enjoy!\n\n3) orangeblood: Build G1 Orangeblood\n\twil: If you insist...have fun and good luck!\n\twil: and thanx for the game!\n\n4) wil: B G1 Wil\n\n5) orangeblood: Trade G1 Y1 Orangeblood\n\n6) wil: Trade G1 B1 Wil\n\n7) orangeblood: Build G1 Orangeblood\n\n8) wil: Build B1 Wil\n\n9) orangeblood: Discover Y1 Orangeblood G2 Cloudatlas\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) orangeblood: Build G1 Orangeblood\n\n12) wil: Build B2 Wil\n\n13) orangeblood: Trade G3 B3 Orangeblood\n\n14) wil: Discover B2 Wil Y3 Why3\n\n15) orangeblood: Build Y1 Cloudatlas\n\twil: Been playing a while?\n\torangeblood: Just counted... 7 times. You?\n\n16) wil: S G3 Wil\nB B2 Y3\nB B3 Why3\nB B3 Wil\n\twil: Hundreds\n\n17) orangeblood: Build Y2 Cloudatlas\n\n18) wil: Trade B3 G3 Why3\n\torangeblood: Nice! It&#39;s a great game.\n\n19) orangeblood: Build B3 Orangeblood\n\n20) wil: T B2 Y2 Y3\n\torangeblood: Wow... just got back from a business trip and saw I had 3 hours to move! \n\n21) orangeblood: Discover B3 Orangeblood R2 Nachtmusik\n\n22) wil: T B3 G3 Wil\n\n23) orangeblood: Move G1 Orangeblood Nachtmusik\n\n24) wil: Trade B1 R1 Wil\n\n25) orangeblood: Trade G1 R1 Orangeblood\n\n26) wil: B B1 Why3\n\n27) orangeblood: Move Y1 Cloudatlas Orangeblood\n\n28) wil: T B2 Y2 Why3\n\n29) orangeblood: Trade Y1 G1 Orangeblood\n\n30) wil: B B2 Why3\n\n31) orangeblood: Discover Y2 Cloudatlas G3 Valkyries\n\n32) wil: T B1 R1 Why3\n\n33) orangeblood: Build R2 Orangeblood\n\n34) wil: Build R2 Why3\n\n35) orangeblood: Move R2 Orangeblood Cloudatlas\n\n36) wil: Move R1 Why3 Cloudatlas\n\n37) orangeblood: Build R3 Orangeblood\n\n38) wil: Build R3 Why3\n\n39) orangeblood: Discover R1 Orangeblood G2 Ebbetsfield\n\n40) wil: B R3 Wil\n\n41) orangeblood: Attack R1 Cloudatlas\n\n42) wil: M R2 Why3 Ebbetsfield\n\n43) orangeblood: Build Y1 Cloudatlas\n\n44) wil: Build G1 Why3\n\n\torangeblood: Apologies for timing out. You had me anyway, congrats.\n\twil: meh, I hate that...challenge me on the non timed game...if you wish to play.\n\nHomeworlds Online (SDG# 33626)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.27, Ended: 2018.1.6\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\twil: Got into a few pyramid throw downs with the fam?\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: Build B2 Wil\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\twil: interesting...\n\n10) wil: Trade B2 Y2 Wil\n\n11) Trydnt: Trade B2 Y2 Trydnt\n\n12) wil: Build Y1 Wil\n\n13) Trydnt: Build B2 G3\n\twil: Ok...I thought you had the jump!  You s g3 and build the blues...if I s y2 for b catastrophe I would be left with 1 g3 and you would be left with b3 n b2...  \n\n14) wil: Discover B1 Wil G2 G2\n\n15) Trydnt: Trade B1 Y1 G3\n\twil: 13 degree wind chill here this afternoon...\n\n16) wil: M Y1 Wil G2\n\n17) Trydnt: Build G1 Trydnt\n\n18) wil: Discover Y2 Wil G2 Gtoo\n\n19) Trydnt: Build Y2 G3\n\n20) wil: B Y3 G2\n\n21) Trydnt: Move Y1 G3 Gtoo\n\n22) wil: Build Y3 Gtoo\n\n23) Trydnt: Move Y2 G3 Gtoo\nCatastrophe Gtoo Y\n\n24) wil: Trade Y1 R1 G2\n\twil: all of these games are archived...need to build a program to extract them and put moves on data sheet to be compared and analyzed...various openers results...players rating...frequency of various ending attacks, etc.\n\n25) Trydnt: Trade G1 R1 Trydnt\n\tTrydnt: I can actually do that analysis. I use a statistical programming language called STATA to do that stuff but it&#39;s really just writing a few lines of code and it spits out answers. How useful those answers are depends on how good I am at asking the right questions.\n\n26) wil: M Y3 G2 G3\n\n27) Trydnt: Build B1 G3\n\twil: oughta give it a shot...we might find some good insights.\n\twil: If it can be set up as public access there are some other geek/nerds on the hw fb page that would probably help input and analyze as well.\r\n\n\n28) wil: Build B2 G2\n\n29) Trydnt: Discover Y2 Trydnt B3 B3\n\n30) wil: B B3 G2\n\n31) Trydnt: Sacrifice Y2 B3\nDiscover B1 G3 G2 G22\nDiscover B2 G3 G2 G222\n\n32) wil: T B1 Y1 G2\n\n33) Trydnt: Build G1 Trydnt\n\n34) wil: B G1 Wil\n\n35) Trydnt: Trade B2 Y2 G222\n\n36) wil: M B2 G2 G3\n\n37) Trydnt: Build B1 G22\n\n38) wil: S G3 Wil\nB G1 Wil\nB G3 Wil\nB B2 G3\n\n39) Trydnt: Discover G1 Trydnt B3 B3\n\n40) wil: Discover G1 Wil Y2 Y2\n\n\nHomeworlds Online (SDG# 33627)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.27, Ended: 2017.12.30\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n\tdlwillson: Dude! What happened?\n\tFelix: Holidays. Sorry man! I also just changed jobs and got a new phone that wasn&#39;t set up for notifications.\n\tdlwillson: NP. Let&#39;s play again! How&#39;s the new job?\n\tFelix: Good! I&#39;ve started doing software development, working from home, learning on the job. It&#39;s been quite a learning experience.\n\nHomeworlds Online (SDG# 33543)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2017.12.27, Ended: 2017.12.29\nParticipants: dlwillson (S), RedMerlin (N)\nWinner: RedMerlin\n\n1) RedMerlin: Homeworld B1 Y2 G3\n\n2) dlwillson: H B3 Y1 G3\n\n3) RedMerlin: Build G1 Redmerlin\n\n\tdlwillson: Sorry! I&#39;m timing out in a lot of games lately. Want to try again?\n\tDraw5PlayAll: Stop playing hard time in anything except the ladder then.\n\nHomeworlds Online (SDG# 33581)\nVariants: &quot;Hard time&quot;\nStarted: 2017.12.28, Ended: 2018.1.11\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: B B2 Wil\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) wil: B G1 Wil\n\n11) Trydnt: Build G1 Trydnt\n\n12) wil: T G1 Y1 Wil\n\n13) Trydnt: Build G1 Trydnt\n\n14) wil: B G1 Wil\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) wil: T G1 R1 Wil\n\n17) Trydnt: Discover R1 Trydnt G3 G3\n\n18) wil: Build R2 Wil\n\n19) Trydnt: Build R2 G3\n\n20) wil: Discover R2 Wil Y2 Y2\n\n21) Trydnt: Move B2 Trydnt G3\n\n22) wil: Build R2 Wil\n\n23) Trydnt: Trade R2 Y2 G3\n\n24) wil: B G1 Wil\n\n25) Trydnt: Sacrifice Y2 G3\nMove B2 G3 Y2\nMove B2 Y2 Wil\nCatastrophe Wil B\n\n26) wil: Discover R1 Wil Y2 Why2\n\n27) Trydnt: Build Y1 Trydnt\n\n28) wil: D R1 Why2 R3 R3\n\twil: You&#39;ve got this one!\n\n29) Trydnt: Move Y1 Trydnt Wil\n\twil: You&#39;ll need to make a few real bad moves to help me out\n\n30) wil: D Y1 Wil G2 G2\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 33569)\nVariants: &quot;Unrated&quot;\nStarted: 2018.1.2, Ended: 2018.1.30\nParticipants: Remneb (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B1 G3\n\tts52: Sorry for the delay in accepting. Wanted to be sure I had time to give this game the attention it deserves. Have a good game!\n\n2) Remneb: Homeworld Y3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tRemneb: Have a good game too. \n\tRemneb: For the Great Homeworld Tournament round 2.\r\n\n\n4) Remneb: Build G1 Remneb\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Remneb: Trade G1 R1 Remneb\n\n7) ts52: Build G1 Ts52\n\n8) Remneb: Build R1 Remneb\n\n9) ts52: Trade G1 R1 Ts52\n\n10) Remneb: Trade R1 Y1 Remneb\n\n11) ts52: Build G1 Ts52\n\n12) Remneb: Discover Y1 Remneb G1 Hort\n\n13) ts52: Build G2 Gonzo\n\n14) Remneb: Build G2 Remneb\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n16) Remneb: Move G2 Remneb Hort\n\n17) ts52: Trade G1 Y1 Gonzo\n\n18) Remneb: Build G1 Remneb\n\n19) ts52: Trade G1 B1 Ts52\n\n20) Remneb: Trade G1 B1 Remneb\n\n21) ts52: Build B2 Ts52\n\n22) Remneb: Build B2 Remneb\n\n23) ts52: Discover B2 Ts52 Y3 Bigbird\n\n24) Remneb: Discover B2 Remneb G1 Aries\n\n25) ts52: Sacrifice G2 Gonzo\nBuild B3 Bigbird\nBuild B3 Ts52\n\n26) Remneb: Trade B2 Y2 Aries\n\n27) ts52: Discover B3 Ts52 Y3 Zoe\n\n28) Remneb: Build B2 Remneb\n\n29) ts52: Trade B2 G2 Bigbird\n\n30) Remneb: Trade B2 Y2 Remneb\n\n31) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G3 Ts52\nBuild B2 Zoe\n\n32) Remneb: Discover B1 Remneb Y1 Borg\n\n33) ts52: Trade B3 R3 Zoe\n\n34) Remneb: Build R1 Remneb\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Bigbird\nBuild B3 Zoe\n\n36) Remneb: Build R2 Remneb\n\n37) ts52: Move R3 Zoe Borg\n\n38) Remneb: Move R2 Remneb Hort\n\n39) ts52: Attack B1 Borg\n\n40) Remneb: Move R1 Remneb Aries\n\n41) ts52: Trade B3 R3 Bigbird\n\n42) Remneb: Build R2 Aries\n\n43) ts52: Sacrifice G3 Gonzo\nBuild B3 Borg\nBuild R2 Borg\nBuild R3 Ts52\n\n44) Remneb: Build G3 Remneb\n\n45) ts52: Move R3 Bigbird Aries\n\n46) Remneb: Move R1 Remneb Aries\nCatastrophe Aries R\n\n47) ts52: Move B3 Borg Remneb\n\n48) Remneb: Sacrifice R2 Hort\nAttack B3 Remneb\nPass\n\n49) ts52: Move R3 Borg Remneb\n\n50) Remneb: Sacrifice Y2 Aries\nMove G2 Hort Remneb\nMove Y1 Hort Remneb\n\n51) ts52: Sacrifice R3 Ts52\nAttack G3S Remneb\nAttack G3S Remneb\nAttack B3S Remneb\n\n52) Remneb: Trade Y1 G1 Remneb\nCatastrophe Remneb G\n\n53) ts52: Attack Y2S Remneb\n\tRemneb: There&#39;s nothing i can do to save my Homeworld anyway.\n\tRemneb: Trade y1 g1 remneb\r\ncatastrophe remneb g\n\n\tRemneb: Thanks for the game and good luck for the tournament !\n\tts52: Good game. Thanks! Happy to play again any time.\n\nHomeworlds Online (SDG# 33519)\nStarted: 2018.1.2, Ended: 2018.1.16\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H G1 B2 Y3\n\n2) Trydnt: Homeworld Y3 G1 B3\n\tMobyNostromo: Have a good game!\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Trydnt: Build B1 Trydnt\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Trydnt: Trade B1 Y1 Trydnt\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Terra3\n\n8) Trydnt: Build Y2 Trydnt\n\n\nHomeworlds Online (SDG# 33533)\nVariants: &quot;Unrated&quot;\nStarted: 2018.1.2, Ended: 2018.1.24\nParticipants: Felix (S), Trydnt (N)\nWinner: Felix\n\n1) Trydnt: Homeworld R3 G2 Y3 *\n\n2) Felix: H R1 B3 G3 Felix\n\n3) Trydnt: Build Y1 Trydnt\n\n4) Felix: Build G1 Felix\n\tFelix: Hello again. Good luck and have fun!\n\n5) Trydnt: Build Y1 Trydnt\n\tTrydnt: and to you fellow starship captain\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Trydnt: Discover Y1 Trydnt G1 G1\n\n8) Felix: B Y2 Felix\n\n9) Trydnt: Build Y2 G1\n\n10) Felix: Discover Y1 Felix B2 Out\n\n11) Trydnt: Move Y2 G1 Out\n\n12) Felix: Move Y1 Out G1\n\n13) Trydnt: Trade Y2 R2 Out\n\n14) Felix: Build Y2 Felix\n\n15) Trydnt: Sacrifice Y1 Trydnt\nMove R2 Out G1\n\n16) Felix: B Y1 G1\n\n17) Trydnt: Build R1 G1\n\n18) Felix: Discover Y2 Felix B2 Out\n\n19) Trydnt: Discover Y1 G1 G2 G2\n\n20) Felix: Sacrifice G3 Felix\nBuild Y2 G1\nBuild Y3 Felix\nBuild Y3 Out\n\n21) Trydnt: Attack Y2 G1\n\n22) Felix: Trade Y2 G2 Felix\n\n23) Trydnt: Attack Y1 G1\n\n24) Felix: Build Y2 G1\nCatastrophe G1 Yellow\n\n25) Trydnt: Build Y1 G2\n\n26) Felix: Trade Y3 G3 Out\n\n27) Trydnt: Move Y1 G2 G1\n\n28) Felix: Build Y1 Out\n\n29) Trydnt: Build Y2 G2\n\n30) Felix: Trade Y2 R2 Out\n\n31) Trydnt: Build Y2 G2\n\n32) Felix: Build Y2 Out\n\n33) Trydnt: Build Y3 G1\n\n34) Felix: Discover Y1 Out G1 Roam\n\n35) Trydnt: Discover Y2 G2 B1 B1\n\n36) Felix: Build G1 Out\n\n\nHomeworlds Online (SDG# 33630)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.1.2, Ended: 2018.1.22\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) dlwillson: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) Trydnt: Build G1 Trydnt\n\n8) dlwillson: B G1 Dlwillson\n\n9) Trydnt: Build B2 Trydnt\n\n10) dlwillson: B B2 Dlwillson\n\n11) Trydnt: Trade B2 Y2 Trydnt\n\n12) dlwillson: Trade B1 Y1 Dlwillson\n\n13) Trydnt: Build Y1 Trydnt\n\n14) dlwillson: Trade G1 R1 Dlwillson\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) dlwillson: Build R2 Dlwillson\n\n17) Trydnt: Discover R1 Trydnt G3 G3\n\n18) dlwillson: Discover R1 Dlwillson G2 Field\n\n19) Trydnt: Build R2 G3\n\n20) dlwillson: Move B2 Dlwillson Field\n\n21) Trydnt: Move B1 Trydnt G3\n\n22) dlwillson: Build R2 Field\n\n23) Trydnt: Sacrifice Y1 Trydnt\nDiscover R1 G3 G2 G2\n\n24) dlwillson: Trade R1 Y1 Field\n\n25) Trydnt: Build G1 Trydnt\n\n26) dlwillson: B G1 Dlwillson\n\n27) Trydnt: Move G1 Trydnt G3\n\n28) dlwillson: Move R2 Dlwillson G2\n\n29) Trydnt: Build R1 G2\n\n30) dlwillson: Build R3 Field\n\n31) Trydnt: Build R3 G3\n\n32) dlwillson: Sacrifice R2 Field\nAttack R1 G2\nAttack R1 G2\n\n33) Trydnt: Trade R3 Y3 G3\n\n34) dlwillson: T G1 B1 Dlwillson\n\n35) Trydnt: Build R2 G3\n\n36) dlwillson: B R3 Field\n\n37) Trydnt: Move R2 G3 G2\nCatastrophe G2 R\n\n\tdlwillson: Bah! Stupid weekends! I&#39;ll go take the hard time of my challenge now...\n\tdlwillson: *off\n\nHomeworlds Online (SDG# 33634)\nStarted: 2018.1.2, Ended: 2018.1.16\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Trydnt: Build Y2 Trydnt\n\n8) MobyNostromo: D Y1 Mobynostromo G3 Emerald\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n\nHomeworlds Online (SDG# 33526)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.1.2, Ended: 2018.1.9\nParticipants: wil (S), sharkhands (N)\nWinner: wil\n\n1) sharkhands: Homeworld B1 G2 R3\n\n2) wil: H B3 Y1 G3\n\n3) sharkhands: Build R1 Sharkhands\n\twil: Familiar with the game?\n\n4) wil: B G1 Wil\n\n5) sharkhands: Trade R1 Y1 Sharkhands\n\tsharkhands: I&#39;m fairly new to it (have played about a dozen games irl). Working on getting better, which is why I&#39;m playing here\n\n6) wil: T G1 B1 Wil\n\twil: great place to increase skills....challenge a bunch of folk and then you&#39;ll have a move or two to make every day...(some folks don&#39;t check in so often, or take time making their moves) the format is not the best, the star systems and ships are allover the board....  in tricky situations set up a physical game to mirror so you don&#39;t miss anything!\r\n\n\n7) sharkhands: Build R1 Sharkhands\n\tsharkhands: Good point with the physical setup. And yeah, definitely plan to challenge many people!\r\n\r\nThis game is great - I&#39;m glad there&#39;s a forum to play it (even slowly) online\n\n8) wil: B B1 Wil\n\n9) sharkhands: Trade R1 G1 Sharkhands\n\twil: Yes this is an awesome place to learn\n\n10) wil: D B1 Wil Y2 Y2\n\n11) sharkhands: Build G1b Sharkhands\n\n12) wil: B B2 Wil\n\n13) sharkhands: Discover G1 Sharkhands R3 Antares\n\n14) wil: D B1 Wil Y2 Why2\n\n15) sharkhands: Build G1 Sharkhands\n\n16) wil: Build B2 Wil\n\n17) sharkhands: Discover G1 Sharkhands R3 Something\n\n18) wil: D B2 Wil G2 G2\n\twil: You want to play this straight heads up, or as a learning/training game, or any after the fact hints, reflections on potential moves? \n\tsharkhands: Let&#39;s play it head-to-head, and then maybe do a post-mortem of my egregious mistakes :P\n\n19) sharkhands: Build R1 Sharkhands\n\n20) wil: S G3 Wil\nB B2 Y2\nB B3 Wil\nB B3 G2\n\twil: Perfect!    I&#39;ll get a bigger notepad\n\n21) sharkhands: Discover G1 Sharkhands Y3 Baloo\n\n22) wil: M B2 Y2 Antares\n\n23) sharkhands: Build G2 Baloo\n\tsharkhands: Nicely done\n\n24) wil: A G1 Antares\n\n25) sharkhands: Build G3 Baloo\n\n26) wil: Build G3 Antares\n\n27) sharkhands: Discover G3 Baloo Y2 Another\n\n28) wil: Trade B3 Y3 G2\n\tsharkhands: \n\n29) sharkhands: Build G3 Another\n\n30) wil: Trade B2 R2 Wil\n\n31) sharkhands: Sacrifice G3 Another\nBuild Y1 Sharkhands\nBuild Y3 Sharkhands\nBuild G3 Another\n\n32) wil: Sacrifice G3 Antares\nBuild G3 Antares\nBuild B2 Y2\nBuild B3 Why2\n\n33) sharkhands: Move R3 Sharkhands Baloo\n\twil: I was momentarily blinded and almost made a grave error...\n\n34) wil: Trade B2 R2 G2\n\n35) sharkhands: Sacrifice G3 Another\nBuild G3 Another\nBuild R1 Sharkhands\nBuild R1 Baloo\n\n36) wil: S G3 Antares\nB G3 Antares\nB B2 Antares\nB R2 G2\n\n37) sharkhands: Move R3 Baloo Another\n\n38) wil: M R2 G2 Baloo\n\n39) sharkhands: Attack R2 Baloo\n\tsharkhands: Minor problem with that first one :P\n\n40) wil: M R2 G2 Something\n\n41) sharkhands: Sacrifice G1 Something\nBuild G1 Baloo\n\n42) wil: M B3 Why2 Baloo\n\n43) sharkhands: Move R3 Another Baloo\n\twil:  What was I thinking?\n\n44) wil: S R2 Wil\nA R3 Baloo\nA G2 Baloo\n\tsharkhands: I wasn&#39;t sure... Thought there might have been some depending strategy. Almost didn&#39;t take it cause I was second-guessing myself so much\n\n45) sharkhands: Move R1 Sharkhands Baloo\nCatastrophe Baloo Red\n\n46) wil: T G2 R2 Baloo\n\twil: I wish I had some deep strategy....empty banks are so rare I don&#39;t even know how to play them\n\n47) sharkhands: Move G1 Baloo Sharkhands\n\n48) wil: Attack G1 Baloo\n\n49) sharkhands: Build R1 Sharkhands\n\tsharkhands: Oh balls, completely forgot about sacrifices. That might be about the game for me\n\n50) wil: S Y3 G2\nM G3 Antares Sharkhands\nM B3 Baloo Sharkhands\nM B1 Y2 Baloo\n\twil: You&#39;ve been sacrificing g3s\n\n\tsharkhands: And that&#39;ll do it right there. Good game!\n\nHomeworlds Online (SDG# 33561)\nStarted: 2018.1.2, Ended: 2018.3.6\nParticipants: sharkhands (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3 Ts52\n\n2) sharkhands: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\tsharkhands: You too!\n\n3) ts52: Build G1 Ts52\n\n4) sharkhands: Build G1 Sharkhands\n\n5) ts52: Discover G1 Ts52 B1 Grover\n\n6) sharkhands: Trade G1 B1 Sharkhands\n\n7) ts52: Build G1 Ts52\n\n8) sharkhands: Discover B1 Sharkhands G3 G3\n\n9) ts52: Trade G1 B1 Ts52\n\n10) sharkhands: Build G1 Sharkhands\n\n11) ts52: Build G1 Grover\n\n12) sharkhands: Build G2 Sharkhands\n\n13) ts52: Build G2 Ts52\n\n14) sharkhands: Discover G1 Sharkhands B3 B3\n\n15) ts52: Trade G1 Y1 Grover\n\n16) sharkhands: Trade G2 B2 Sharkhands\n\n17) ts52: Build Y1 Grover\n\n18) sharkhands: Build B3 Sharkhands\n\n19) ts52: Build B3 Ts52\n\n20) sharkhands: Build G1 B3\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n22) sharkhands: Trade B2 Y2 Sharkhands\n\n23) ts52: Discover B3 Ts52 R1 Elmo\n\n24) sharkhands: Build B2 G3\n\n25) ts52: Trade G2 R2 Grover\n\n26) sharkhands: Trade B2 Y2 G3\n\n27) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild B2 Elmo\n\n28) sharkhands: Sacrifice Y2 Sharkhands\nMove G1 B3 Grover\nCatastrophe Grover Green\nDiscover B3 Sharkhands Y3 Y3\n\n29) ts52: Sacrifice Y1 Grover\nDiscover B3 Elmo Y3 Bigbird\n\n30) sharkhands: Trade G3 R3 Sharkhands\n\n31) ts52: Move G2 Ts52 Grover\n\n32) sharkhands: Discover B3 Y3 G1 G1\n\n33) ts52: Move R2 Grover B3\n\n\nHomeworlds Online (SDG# 33641)\nStarted: 2018.1.3, Ended: 2018.2.6\nParticipants: Draw5PlayAll (S), sharkhands (N)\nWinner: Draw5PlayAll\n\n1) sharkhands: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) sharkhands: Build G1 Sharkhands\n\tsharkhands: Have a good game!\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) sharkhands: Trade G1 R1 Sharkhands\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) sharkhands: Build R2 Sharkhands\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) sharkhands: Discover R1 Sharkhands G3 G3\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) sharkhands: Build R2 Sharkhands\n\n12) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n13) sharkhands: Build G1 Sharkhands\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) sharkhands: Discover G1 Sharkhands R3 R3\n\n16) Draw5PlayAll: Move Y2 Draw5playall G2\n\n17) sharkhands: Discover R2 Sharkhands Y3 Y3\n\n18) Draw5PlayAll: Build G1 Draw5playall\n\n19) sharkhands: Sacrifice G3 Sharkhands\nBuild R2 G3\nBuild R3 Sharkhands\nBuild R3 Y3\n\n20) Draw5PlayAll: Build Y1 G2\n\n21) sharkhands: Discover R2 Sharkhands B3 B3\n\n22) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2\n\n23) sharkhands: Sacrifice G1 R3\nBuild R3 B3\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 G2\n\n25) sharkhands: Move R2 Y3 Y2\n\n26) Draw5PlayAll: Sacrifice G1 Y2\nPass\n\n27) sharkhands: Move R2 Y2 Y3\n\n28) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n29) sharkhands: Trade R2 Y2 B3\n\n30) Draw5PlayAll: Discover Y1 G2 G1 G1\n\n31) sharkhands: Discover R3 Y3 Y2 Y2\n\n32) Draw5PlayAll: Build R2 G2\n\n33) sharkhands: Discover Y2 B3 G2 G2-1\n\n34) Draw5PlayAll: Build G1 Draw5playall\n\n35) sharkhands: Move Y2 G2-1 B3\n\n36) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n37) sharkhands: Move R3 B3 B2\n\n38) Draw5PlayAll: Sacrifice G1 B2\nBuild G1 Draw5playall\n\n39) sharkhands: Move Y2 B3 B2\n\n40) Draw5PlayAll: Trade G2 B2 Draw5playall\n\n41) sharkhands: Sacrifice Y2 B2\nMove R1 G3 G2\nMove R2 G3 G2\nCatastrophe G2 Red\n\n42) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n43) sharkhands: Discover R2 Y3 G2 G2-1\n\n44) Draw5PlayAll: Move R1 Draw5playall G2\n\n\nHomeworlds Online (SDG# 33661)\nVariants: &quot;Hard time&quot;\nStarted: 2018.1.7, Ended: 2018.1.30\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 Y1 Wil\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B Y1 Wil\n\n8) Felix: Build B1 Felix\n\n9) wil: D Y1 Wil G3 G3\n\n10) Felix: Discover B1 Felix G2 Romp\n\n11) wil: B Y2 G3\n\n12) Felix: Sacrifice G3 Felix\nBuild B2 Romp\nBuild B2 Romp\nBuild B3 Felix\n\n13) wil: D Y2 G3 Y2 Y2\n\n14) Felix: T B2 Y2 Romp\n\n15) wil: Build Y3 Wil\n\n16) Felix: Build Y3 Romp\n\n17) wil: T Y3 B3 Wil\n\n18) Felix: Discover B2 Romp Y3 Grump\n\twil: I just had to see how that race would play out.\n\n19) wil: M B3 Wil G3\n\tFelix: I&#39;m still not quite sure...\n\n20) Felix: Sacrifice B1 Felix\nTrade Y3 R3 Romp\n\n21) wil: T Y1 R1 Wil\n\n22) Felix: Trade B3 G3 Felix\n\n23) wil: B R1 Wil\n\n24) Felix: Build R1 Romp\n\n25) wil: M R1 Wil G3\n\n26) Felix: Trade R3 Y3 Romp\n\n27) wil: B R2 Wil\n\n28) Felix: Build R2 Romp\n\n29) wil: Build B1 G3\n\n30) Felix: Move R1 Romp Felix\n\n31) wil: Discover B1 G3 G2 G2\n\n32) Felix: Sacrifice G3 Felix\nBuild R2 Romp\nBuild B2 Grump\nBuild R3 Felix\n\n33) wil: Build B3 G2\n\n34) Felix: Build B3 Romp\n\n35) wil: Build R3 G3\n\n36) Felix: Trade R3 G3 Felix\n\n37) wil: Move R1 G3 G2\n\n38) Felix: Move B2 Grump Wil\n\n39) wil: Attack B2 Wil\n\n40) Felix: Sacrifice Y3 Romp\nMove B1 Romp Grump\nMove B1 Grump Wil\nMove B2 Grump Wil\nCatastrophe Wil Blue\n\twil: I didn&#39;t expect that that early...I thought it would be premature...but there you are!\n\n41) wil: B R3 G2\n\tFelix: It&#39;s probably a mistake... but here we are!\n\n42) Felix: Build Y1 Romp\n\n43) wil: Build Y3 G3\n\n44) Felix: Build R3 Felix\n\twil: let us just hope!\n\n45) wil: Trade R3 Y3 G2\n\n46) Felix: Move R3 Felix Y2\n\n47) wil: Discover Y2 Y2 R3 R3\n\n48) Felix: M Y1 Romp G3\n\n49) wil: Discover Y1 G3 G2 Gtoo\n\n50) Felix: Move R3 Y2 R3\n\n51) wil: B Y2 G2\n\n52) Felix: Attack Y2 R3\n\n53) wil: Attack Y1 G3\n\n54) Felix: Move R3 R3 Gtoo\n\n55) wil: Sacrifice Y3 G3\nMove Y1 Gtoo Felix\nMove Y2 G2 Felix\nMove B1 G2 Felix\n\twil: Initiate Doomsday Device...fire one!\n\twil: dang..math doesn&#39;t work yet...I thought I was there..\n\twil: oh heck...there is always next game...fire anyway!\n\n56) Felix: Sacrifice R3 Gtoo\nAttack Y1 Felix\nAttack Y2 Felix\nAttack B1 Felix\n\n57) wil: Move B3 G2 Felix\n\tFelix: Nicely played nonetheless!\n\n58) Felix: A B3 Felix\n\n59) wil: S Y3 G2\nM Y1 G3 G2\nM Y1 G2 Felix\nC Felix Y\nM B3 G3 Felix\nC Felix B\n\tFelix: Ooh, nice. I didn&#39;t think you could quite do that yet. I forgot about the mid-turn catastrophe.\n\twil: We got her I jammed Capt. Fire number 2!\n\twil: My brain hurts\n\twil: Thx for the challenge!  Twas a strange game\n\n\nHomeworlds Online (SDG# 33654)\nVariants: &quot;Hard time&quot;\nStarted: 2018.1.7, Ended: 2018.2.9\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: Draw5PlayAll\n\n1) dlwillson: H Y3 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tdlwillson: GLHF! \n\n3) dlwillson: Build G1 Dlwillson\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) dlwillson: Build R1 Dlwillson\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) dlwillson: Build R1 Dlwillson\n\n10) Draw5PlayAll: Discover B2 Draw5playall B2 B2\n\n11) dlwillson: Discover R1 Dlwillson Y2 Sol\n\n12) Draw5PlayAll: Build B2 Draw5playall\n\n13) dlwillson: Build G1 Dlwillson\n\n14) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n15) dlwillson: Discover R1 Dlwillson G2 Field\n\n16) Draw5PlayAll: Build B3 G2\n\n17) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB R2 Field\nB R2 Sol\n\n18) Draw5PlayAll: Trade B3 R3 G2\n\n19) dlwillson: Build R3 Dlwillson\n\n20) Draw5PlayAll: Build R3 G2\n\n21) dlwillson: Trade R3 Y3 Dlwillson\n\n22) Draw5PlayAll: Trade R3 G3 G2\n\n23) dlwillson: M R2 Sol Draw5playall\n\n24) Draw5PlayAll: Sacrifice G3 G2\nBuild R3 G2\nBuild B3 B2\nBuild B3 G2\n\n25) dlwillson: Build R3 Dlwillson\n\n26) Draw5PlayAll: Build Y1 Draw5playall\n\n27) dlwillson: T R3 B3 Dlwillson\n\n28) Draw5PlayAll: Move Y1 Draw5playall G2\n\n29) dlwillson: B R3 Field\n\n30) Draw5PlayAll: Move R3 G2 Draw5playall\n\n31) dlwillson: M R2 Dlwillson Sol\n\n32) Draw5PlayAll: Attack R2N Draw5playall\n\n33) dlwillson: M B3 Dlwillson Sol\n\n34) Draw5PlayAll: Move R2 Draw5playall B2\n\n35) dlwillson: Sacrifice B3 Sol\nTrade R3 B3 Field\nTrade Y3 G3 Dlwillson\nTrade R2 Y2 Field\n\tDraw5PlayAll: That move was suicidal.\n\n36) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B3 B2 Dlwillson\nMove B3 G2 Dlwillson\nMove R3 G2 Dlwillson\n\n\tDraw5PlayAll: I think this means something great!\n\tdlwillson: Yup! Good game! Well played!\n\nHomeworlds Online (SDG# 33553)\nVariants: &quot;Unrated&quot;\nStarted: 2018.1.8, Ended: 2018.2.9\nParticipants: mneme (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B1 Y2 G3\n\n2) mneme: Homeworld G3 R1 B3\n\n3) Babamots: Build G1 Babamots\n\n4) mneme: Build B1 Mneme\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) mneme: Build B2 Mneme\n\n7) Babamots: Build B2 Babamots\n\n8) mneme: Trade B2 Y2 Mneme\n\n9) Babamots: Discover B2 Babamots G3 Betazed\n\n10) mneme: Discover B1 Mneme G2 Clio\n\n11) Babamots: Trade B1 R1 Babamots\n\n12) mneme: Build B1 Mneme\n\n13) Babamots: Build B2 Betazed\n\n14) mneme: Build B2 Clio\n\n15) Babamots: Trade B2 Y2 Betazed\n\n16) mneme: Trade B2 R2 Clio\n\n17) Babamots: Build B2 Betazed\n\tmneme: Oh, belated good luck (what there is of it) and have fun!\n\tBabamots: I think that the same person will make different moves depending on their mood and many other factors that have nothing to do with the game position. In that sense, there&#39;s a little luck in any game.\r\n\r\nGood luck to you too!\n\n18) mneme: Move Y2 Mneme Clio\n\n19) Babamots: Discover B2 Betazed G2 Galorndon\n\tmneme: Not untrue, but it&#39;s an odd kind of luck.\n\n20) mneme: Trade B1 Y1 Mneme\n\n21) Babamots: Build B1 Galorndon\n\n22) mneme: Build Y1 Clio\n\n23) Babamots: Trade B2 R2 Galorndon\n\n24) mneme: Build B2 Clio\n\n25) Babamots: Build B2 Galorndon\n\n26) mneme: Trade B2 G2 Clio\n\n27) Babamots: Trade B1 G1 Galorndon\n\n28) mneme: Sacrifice G2 Clio\nBuild Y1 Clio\nBuild Y3 Mneme\n\n29) Babamots: Build Y3 Betazed\n\n30) mneme: Sacrifice Y2 Clio\nMove Y1 Clio Betazed\nMove Y1 Clio Betazed\nCatastrophe Betazed Y\n\n31) Babamots: Build G1 Babamots\n\n32) mneme: Build Y1 Mneme\n\n33) Babamots: Sacrifice G3 Babamots\nBuild G1 Galorndon\nBuild G2 Babamots\nBuild G3 Babamots\n\n34) mneme: Move Y3 Mneme Galorndon\n\n35) Babamots: Discover G1 Babamots Y3 Iconia\n\n36) mneme: Sacrifice R2 Clio\nAttack R2 Galorndon\nAttack B2 Galorndon\n\n37) Babamots: Sacrifice G2 Babamots\nBuild G2 Galorndon\nCatastrophe Galorndon G\nBuild G1 Iconia\n\n38) mneme: Trade Y1 R1 Mneme\n\n39) Babamots: Build G1 Babamots\n\n40) mneme: Build Y1 Mneme\n\n41) Babamots: Sacrifice G3 Babamots\nBuild G2 Iconia\nBuild G2 Babamots\nBuild G3 Babamots\n\n42) mneme: Build Y1 Mneme\n\n43) Babamots: Trade G2 Y2 Babamots\n\n44) mneme: Build R2 Mneme\n\n45) Babamots: Discover Y2 Babamots B3 Kronos\n\tmneme: Nice move; my error.  Now to see if you can take full advantage of it.\n\n46) mneme: Trade R2 G2 Mneme\n\tBabamots: I&#39;ll be playing keep-away with the greens for a bit :-)\n\n47) Babamots: Sacrifice G3 Babamots\nBuild Y2 Kronos\nBuild Y3 Kronos\nBuild G3 Babamots\n\n48) mneme: Discover Y1 Mneme B2 Treasure\n\n49) Babamots: Move Y2 Kronos Treasure\n\tmneme: Or not, apparently.\n\n50) mneme: Build Y3 Mneme\n\tBabamots: Well, I didn&#39;t think I&#39;d get the chance at a large. I think this is better.\n\n51) Babamots: Move Y2 Treasure Mneme\nCatastrophe Mneme Y\n\tmneme: maybe.  Y is strong; I shouldn&#39;t have let myself be manuvered into grouping up all the y1s; it&#39;s a weak position.\r\n\n\n52) mneme: Build R2 Mneme\n\n53) Babamots: Sacrifice Y3 Kronos\nMove R1 Babamots Betazed\nMove R1 Betazed Clio\nMove R1 Clio Mneme\nCatastrophe Mneme R\n\n54) mneme: Trade G2 R2 Mneme\n\n55) Babamots: Trade B2 R2 Betazed\n\n56) mneme: Build B1 Mneme\n\n57) Babamots: Discover G1 Iconia Y2 Bolarus\n\n58) mneme: Build B2 Clio\n\n59) Babamots: Move G1 Iconia Bolarus\n\n\tmneme: Well played.  Mate in 2.  \n\tBabamots: Thanks. Good game!\n\tmneme: Congrats!  Good game.\n\nHomeworlds Online (SDG# 33636)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.1.10, Ended: 2018.1.29\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 Y3 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I&#39;ll try not to drop out of this one :)\n\n5) Felix: T G1 B1 Felix\n\tdlwillson: I timed out on a bunch of games over the holidays, too. :-)\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Felix: Build B2 Felix\n\n8) dlwillson: Build B2 Dlwillson\n\n9) Felix: Discover B2 Felix G1 Out\n\n10) dlwillson: Discover B2 Dlwillson Y2 Sol\n\n11) Felix: Build B3 Out\n\n12) dlwillson: S G3 Dlwillson\nB B3 Sol\nB B3 Dlwillson\nPass\n\n13) Felix: Trade B3 Y3 Out\n\n14) dlwillson: T B1 R1 Dlwillson\n\n15) Felix: Trade B1 R1 Felix\n\n16) dlwillson: T B3 G3 Dlwillson\n\n17) Felix: Build B1 Out\n\n18) dlwillson: D B2 Sol G1 Forest\n\n19) Felix: Discover B2 Out G2 Rim\n\n20) dlwillson: Build G1 Dlwillson\n\n21) Felix: Build G2 Felix\n\n22) dlwillson: T B3 G3 Sol\n\n23) Felix: Sacrifice G2 Felix\nBuild B1 Out\nBuild B3 Rim\n\n\tdlwillson: Sorry Felix. Sometimes, I wish SDG would send reminders.\n\tFelix: I&#39;ve been there too. Shame though! Happy to rematch any time!\n\nHomeworlds Online (SDG# 33672)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.1.12, Ended: 2018.1.13\nParticipants: mi_spero (S), dlwillson (N)\nWinner: mi_spero\n\n\tdlwillson: Hey, sorry about that! I usually check in every day, but I missed yesterday. Go again?\n\tmi_spero: Sure.\n\nHomeworlds Online (SDG# 33681)\nVariants: &quot;Hard time&quot;\nStarted: 2018.1.12, Ended: 2018.2.2\nParticipants: Trydnt (S), sharkhands (N)\nWinner: Trydnt\n\n1) sharkhands: Homeworld Y1 G2 B3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) sharkhands: Build B1 Sharkhands\n\n4) Trydnt: Build G1 Trydnt\n\n5) sharkhands: Discover B1 Sharkhands G3 G3\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) sharkhands: Build B1 G3\n\n8) Trydnt: Build Y1 Trydnt\n\n9) sharkhands: Build B1 Sharkhands\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) sharkhands: Trade B1 G1 G3\n\n12) Trydnt: Build Y2 Trydnt\n\n13) sharkhands: Build B1 G3\n\n14) Trydnt: Build Y2 G1\n\n15) sharkhands: Trade B3 Y3 Sharkhands\n\n16) Trydnt: Build Y3 G1\n\n17) sharkhands: Move Y3 Sharkhands G3\n\n18) Trydnt: Move Y1 G1 G3\n\n19) sharkhands: Build B2 G3\n\n20) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n21) sharkhands: Build B2 Sharkhands\n\tsharkhands: That was a damn good move\n\n22) Trydnt: Build Y3 Gee1\n\n\nHomeworlds Online (SDG# 33685)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.1.13, Ended: 2018.1.20\nParticipants: mi_spero (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\tdlwillson: Thanks for trying again!\r\n\n\n2) mi_spero: Homeworld Y1 B2 G3\n\tmi_spero: No problem; good luck and have fun!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) mi_spero: Build G1 Mi_spero\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) mi_spero: Trade G1 B1 Mi_spero\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) mi_spero: Build G1 Mi_spero\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\n10) mi_spero: Build G1 Mi_spero\n\n11) dlwillson: Build G1 Dlwillson\n\n12) mi_spero: Trade G1 R1 Mi_spero\n\n13) dlwillson: B Y2 Dlwillson\n\n14) mi_spero: Trade G3 Y3 Mi_spero\n\n15) dlwillson: B Y2 Field\n\n16) mi_spero: Build Y2 Mi_spero\n\n17) dlwillson: S Y2 Field\nD Y1 Field Y3 Sol\nM Y1 Sol Mi_spero\nC Mi_spero Y\n\n\tmi_spero: Thank you for the game.\n\tdlwillson: It is my pleasure! Let&#39;s play again, sometime!\n\nHomeworlds Online (SDG# 33555)\nVariants: &quot;Unrated&quot;\nStarted: 2018.1.13, Ended: 2018.4.26\nParticipants: sharkhands (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) sharkhands: Homeworld G2 B3 Y3\n\tsharkhands: Good luck, have fun! Thanks for playing with me again\n\n3) wil: B G1 Wil\n\twil: I will play repeatedly, I enjoy this game\n\n4) sharkhands: Build Y1 Sharkhands\n\n5) wil: T G1 Y1 Wil\n\n6) sharkhands: Build Y2 Sharkhands\n\n7) wil: B Y2 Wil\n\n8) sharkhands: Trade Y2 G2 Sharkhands\n\n9) wil: D Y1 Wil G3 G3\n\n10) sharkhands: Trade Y1 B1 Sharkhands\n\n11) wil: Build Y1 Wil\n\n12) sharkhands: Discover B1 Sharkhands G1 G1\n\n13) wil: B Y2 G3\n\n14) sharkhands: Build G1 Sharkhands\n\n15) wil: D Y2 Wil B3 B3\n\n16) sharkhands: Build B1 G1\n\n17) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 B3\nBuild Y3 Wil\n\n18) sharkhands: Discover G2 Sharkhands B1 B1\n\twil: Ready to catastrophe?\n\twil: A chance to back up that move if you want\n\twil: Just doeet?\n\tsharkhands: You&#39;re uncommonly generous - that was a legitimate oversight on my part\n\n19) wil: T Y2 R2 B3\n\n20) sharkhands: Build Y2 Sharkhands\n\n21) wil: T Y1 R1 Wil\n\n22) sharkhands: Trade B1 R1 G1\n\n23) wil: M R2 B3 G1\n\n\nHomeworlds Online (SDG# 33671)\nVariants: &quot;Hard time&quot;\nStarted: 2018.1.13, Ended: 2018.3.17\nParticipants: bhorner (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 R3 G3\n\tbhorner: If you miss your opportunity to move, we can just start another game.  :)\n\tFelix: We can keep going with this one, but would there be a good time this week to knock out a large number of moves? I am in GMT-5 time (Eastern time in the United States) and my schedule is pretty flexible.\n\n2) bhorner: Homeworld B2 R1 G3\n\n3) Felix: Build G1 Felix\n\tbhorner: I think that rushing things would significantly affect my chances.  :)\n\tbhorner: (I&#39;m in Pacific time U.S. which is GMT-8)\n\n4) bhorner: B G1 Bhorner\n\tFelix: Well, I&#39;m okay with drawing it out, but the instructions for the bracket games said to try to finish them within one week...\n\tDraw5PlayAll: One WEEK?!\n\tbhorner: The time controls didn&#39;t change did they?  I never saw the part about finishing w/in a week.\n\n5) Felix: Trade G1 B1 Felix\n\tbhorner: I think you must be referring to the &quot;Remaining Active&quot; section.  It doesn&#39;t say you must complete a game in 7 days, just that you remain active, and the first way to remain active is:\r\n&quot;You will be considered active for the following seven days if\r\nyou are currently in at least one game that is part of the tournament&quot;\r\nThat let&#39;s the time controls kick in.\r\nI&#39;m not trying to draw it out, not trying to bore you into a mistake.  I just like the game, and want to think hard, and take a couple looks at the next move before I go.  That&#39;s the thing about correspondence board games, they&#39;re probably higher quality due to the extended time per move.  Good luck to you!\r\n\n\tFelix: You&#39;re right. I think I just misread the rules for the bracket portion of the tournament. I have no problem drawing it out and didn&#39;t mean to rush you! :) Good luck.\n\n6) bhorner: T G1 B1 Bhorner\n\n7) Felix: Build B2 Felix\n\n8) bhorner: Build B2 Bhorner\n\n9) Felix: Trade B2 Y2 Felix\n\n10) bhorner: Trade B2 Y2 Bhorner\n\n11) Felix: Build B2 Felix\n\n12) bhorner: B B2 Bhorner\n\n13) Felix: Discover B2 Felix G2 Out\n\n14) bhorner: D B1 Bhorner G3 Xmas\n\n15) Felix: Build B3 Out\n\n16) bhorner: B B3 Xmas\n\n17) Felix: T B3 Y3 Out\n\n18) bhorner: Trade B1 Y1 Xmas\n\n19) Felix: Build Y1 Out\n\n20) bhorner: Trade B3 R3 Xmas\n\n21) Felix: Trade Y1 R1 Out\n\n22) bhorner: Build G1 Bhorner\n\tbhorner: Whoah, sorry, the weekend really got away from me.  Not much time to think now, here goes!\n\n23) Felix: Build B1 Felix\n\n24) bhorner: M B2 Bhorner Xmas\n\tFelix: No prob! Weekends tend to do that.\n\n25) Felix: Discover B1 Felix G2 Opus\n\n26) bhorner: Build B3 Xmas\n\n27) Felix: Build B3 Opus\n\n28) bhorner: D G1 Bhorner B3 Puddle\n\n29) Felix: Trade B3 Y3 Opus\n\n30) bhorner: Discover B2 Xmas Y2 Twinkle\n\n31) Felix: Build B3 Opus\n\n32) bhorner: Sacrifice G1 Puddle\nBuild B3 Twinkle\n\n33) Felix: Sacrifice B1 Felix\nTrade B3 Y3 Opus\n\n34) bhorner: Trade B3 R3 Twinkle\n\n35) Felix: B G1 Felix\n\n36) bhorner: Move B3 Xmas Twinkle\n\n37) Felix: Trade B2 R2 Out\n\n38) bhorner: B Y1 Xmas\n\n39) Felix: Trade Y3 B3 Opus\n\n40) bhorner: Discover R3 Twinkle Y3 Little\n\n41) Felix: Discover B1 Opus B3 Inka\n\n42) bhorner: Build G1 Bhorner\n\n43) Felix: Trade B1 G1 Inka\n\n44) bhorner: M G1 Bhorner Little\n\n45) Felix: Sacrifice G3 Felix\nBuild G2 Inka\nBuild G3 Felix\nBuild B1 Opus\n\n46) bhorner: D R3 Little Y1 Star\n\n47) Felix: Move R2 Out Little\n\n48) bhorner: Move R3 Star Inka\n\n49) Felix: Move B3 Opus Little\n\n50) bhorner: A G2 Inka\n\n51) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Little\nBuild R1 Out\n\n52) bhorner: M G1 Little Twinkle\n\n53) Felix: Sacrifice Y3 Opus\nMove B3 Little Bhorner\nMove B1 Little Bhorner\nDiscover B1 Opus Y3 Insertion\n\n54) bhorner: Attack B3 Bhorner\n\n55) Felix: S Y3 Out\nM B1 Insertion Bhorner\nC Bhorner Blue\nM R1 Out Bhorner\nM R1 Out Bhorner\n\n56) bhorner: Attack R1 Bhorner\n\n57) Felix: M R2 Little Bhorner\nC Bhorner Red\n\n\tFelix: Good game! And good luck with your next game!\n\tbhorner: Thanks, same to you.  :)\n\nHomeworlds Online (SDG# 33635)\nVariants: &quot;Unrated&quot;\nStarted: 2018.1.15, Ended: 2018.2.23\nParticipants: sharkhands (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) sharkhands: Homeworld B2 Y1 G3\n\n3) Felix: Build G1 Felix\n\n4) sharkhands: Build G1 Sharkhands\n\tFelix: Have a good game!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) sharkhands: Build G1 Sharkhands\n\n7) Felix: Build Y1 Felix\n\n8) sharkhands: Discover G1 Sharkhands R3 R3\n\n9) Felix: Build Y2 Felix\n\n10) sharkhands: Discover G1 Sharkhands R3 R3-1\n\n11) Felix: Discover Y1 Felix G1 Out\n\n12) sharkhands: Build G2 Sharkhands\n\n13) Felix: Build Y2 Out\n\n\nHomeworlds Online (SDG# 33628)\nVariants: &quot;Hard time&quot;\nStarted: 2018.1.17, Ended: 2018.2.21\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: B Y2 Wil\n\n9) Trydnt: Discover Y1 Trydnt G2 G2\n\n10) wil: D Y1 Wil G3 G3\n\n11) Trydnt: Build Y3 G2\n\n12) wil: Build Y3 G3\n\n13) Trydnt: Move Y1 G2 G3\n\n14) wil: Discover Y2 Wil Y3 Y3\n\n15) Trydnt: Build G1 Trydnt\n\tTrydnt: smart AND annoying\n\n16) wil: B G1 Wil\n\n17) Trydnt: Trade Y2 R2 Trydnt\n\n18) wil: Move Y1 G3 G2\n\n19) Trydnt: Build Y2 G3\n\n20) wil: Trade G1 R1 Wil\n\n21) Trydnt: Move R2 Trydnt G2\n\n22) wil: Move Y1 G2 Y3\n\n23) Trydnt: Sacrifice Y2 G3\nMove Y1 G3 G2\nMove Y1 G2 Y3\nCatastrophe Y3 Y\n\n24) wil: Build R1 Wil\n\n25) Trydnt: Trade G1 B1 Trydnt\n\n26) wil: Trade R1 B1 Wil\n\n27) Trydnt: Move B1 Trydnt G2\n\n28) wil: Build B2 Wil\n\n29) Trydnt: Build B2 G2\n\n30) wil: Move B2 Wil G3\n\n31) Trydnt: Discover B2 G2 Y3 Y3\n\n32) wil: Move B1 Wil Y3\n\n33) Trydnt: Build R1 G2\n\n34) wil: S G3 Wil\nB B2 G3\nB B3 G3\nB B3 Y3\n\n35) Trydnt: Move Y3 G2 G3\n\n36) wil: S B3 G3\nT B2 Y2 G3\nT B2 Y2 G3\nC G3 Y\nT B3 R3 Y3\n\twil: Incredibly stupid or ingenious.    I think stupid but love experimentation \n\n37) Trydnt: Move B2 Y3 Wil\n\n38) wil: Move R3 Y3 Wil\n\n39) Trydnt: Move B2 Wil Y3\n\n40) wil: D B1 Y3 Y2 Y2\n\n41) Trydnt: Build B2 G2\n\n42) wil: T R3 G3 Wil\n\n43) Trydnt: Trade B2 Y2 G2\n\n44) wil: B G1 Wil\n\n45) Trydnt: Move B2 Y3 Y2\n\n46) wil: D B1 Y2 Y3 Y3\n\n47) Trydnt: Build G1 Trydnt\n\n48) wil: Trade G1 Y1 Wil\n\n49) Trydnt: Move G1 Trydnt Y2\n\n50) wil: Discover B1 Y3 G2 B2\n\n51) Trydnt: Build B2 Y2\n\n52) wil: Build G1 Wil\n\n53) Trydnt: Discover B2 Y2 Y3 Y3\n\n54) wil: Build B2 B2\n\twil: I am in sooo much trouble here...you better kick my  butt or i will be thoroughly disappointed.\n\n55) Trydnt: Build B3 G2\n\n56) wil: Trade B1 Y1 B2\n\n57) Trydnt: Build Y3 G2\n\n58) wil: Build Y3 B2\n\n59) Trydnt: Discover Y3 G2 G3 G3\n\n60) wil: Discover G1 Wil B3 B3\n\n61) Trydnt: Move B2 Y2 G3\n\n62) wil: Build G1 Wil\n\n63) Trydnt: Sacrifice G1 Y2\nBuild Y2 G3\n\n64) wil: Trade Y1 G1 B2\n\n65) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 G2\nPass\n\n66) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild G3 Wil\nBuild Y1 B2\n\n67) Trydnt: Sacrifice Y2 G3\nMove Y3 G2 Trydnt\nMove G3 Trydnt B2\nCatastrophe B2 G\n\n68) wil: Move Y1 Wil B3\n\n69) Trydnt: Move R2 G2 B3\n\n70) wil: Build G1 B3\n\n71) Trydnt: Attack Y1 B3\n\n72) wil: Build G2 B3\n\n73) Trydnt: Attack G2 B3\n\n74) wil: S G3 Wil\nB G2 B3\nB G3 Wil\nB G3 Wil\nC B3 G\n\n75) Trydnt: Sacrifice B2 G3\nTrade R2 G2 B3\nTrade Y1 G1 B3\n\n76) wil: T G3 Y3 Wil\n\n77) Trydnt: Sacrifice Y2 G2\nMove G2 B3 Wil\nMove G1 B3 Wil\nCatastrophe Wil G\n\n78) wil: T Y3 G3 Wil\n\n79) Trydnt: Build B1 G2\n\twil: Nice\n\n80) wil: Build G1 Wil\n\n81) Trydnt: Build B2 G2\n\n82) wil: Build G1 Wil\n\n83) Trydnt: Build Y1 G3\n\n84) wil: T G1 Y1 Wil\n\n85) Trydnt: Move Y3 G3 G2\n\n86) wil: M Y1 Wil G3\n\n87) Trydnt: Build Y2 G3\n\n88) wil: Build Y2 G3\nCatastrophe G3 Y\n\n89) Trydnt: Discover B2 G2 G1 G1\n\n90) wil: Build G1 Wil\n\n91) Trydnt: Trade Y3 G3 Trydnt\n\n92) wil: D G1 Wil G3 G3\n\n93) Trydnt: Build G2 Trydnt\n\n94) wil: Sacrifice G3 Wil\nBuild G2 G3\nBuild G3 Wil\nBuild R1 Wil\n\n95) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 G2\nBuild B2 G1\n\n96) wil: Discover R1 Wil Y3 Y3\n\n97) Trydnt: Discover B1 G2 Y3 Y33\n\n98) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild R2 Y3\n\n99) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B2 G2\nBuild B3 Y33\n\n100) wil: Discover R1 Y3 Y2 Y2\n\n101) Trydnt: Trade B3 R3 Y33\n\n102) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Y3\nBuild R3 Y2\n\n103) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G1\nBuild B3 Y33\n\n104) wil: Trade R2 Y2 Wil\n\n105) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 G2\nBuild Y1 G2\n\n106) wil: Build R2 Wil\n\n107) Trydnt: Move Y1 G2 G1\n\n108) wil: Move R1 Wil G3\n\n109) Trydnt: Move Y1 G1 Y33\n\n110) wil: Move Y2 Wil G3\n\n111) Trydnt: Move B1 G2 Y33\n\n112) wil: Move G1 G3 Y2\n\n113) Trydnt: Sacrifice Y1 G2\nMove B3 G1 G3\n\n114) wil: Move R3 Y3 G1\n\n115) Trydnt: Sacrifice R3 Y33\nAttack G2 G3\nAttack Y2 G3\nAttack R1 G3\n\n116) wil: Build R3 G1\n\n117) Trydnt: Sacrifice Y3 G2\nMove B1 Y33 Wil\nMove B1 Y33 Wil\nMove Y1 Y33 Wil\n\n118) wil: Sacrifice R3 G1\nAttack Y1 Wil\nAttack B2 G1\nAttack B2 G1\n\n119) Trydnt: Sacrifice B2 G2\nTrade B1 Y1 Wil\nTrade B3 Y3 G3\n\n120) wil: Discover Y1 Wil B3 B3\n\n121) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B1 Wil\nBuild B2 Wil\n\n122) wil: Move G1 Y2 Trydnt\n\n123) Trydnt: Catastrophe Wil B\nSacrifice Y3 G3\nMove G2 Trydnt Wil\nMove G2 G3 Wil\nMove B3 Y33 Wil\nCatastrophe Wil G\n\n124) wil: Trade B2 G2 G1\n\n125) Trydnt: Sacrifice R1 G2\nAttack R2 Wil\n\n\twil: good game!\n\nHomeworlds Online (SDG# 33688)\nStarted: 2018.1.17, Ended: 2018.1.21\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 33698)\nVariants: &quot;Hard time&quot;\nStarted: 2018.1.19, Ended: 2018.1.30\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R2 G3 *\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: B Y1 Wil\n\n8) Trydnt: Build R1 Trydnt\n\n9) wil: Trade Y1 R1 Wil\n\n10) Trydnt: Discover R1 Trydnt Y3 Y3\n\n11) wil: Discover R1 Wil G3 G3\n\n12) Trydnt: Build R2 Trydnt\n\n13) wil: B Y1 Wil\n\n14) Trydnt: Discover R2 Trydnt Y3 Y3ee\n\n15) wil: Move Y1 Wil G3\n\n16) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R3 Y3ee\nBuild R3 Trydnt\n\n17) wil: Build R3 G3\n\n18) Trydnt: Trade R3 G3 Trydnt\n\n19) wil: Discover Y1 Wil R3 R3\n\n20) Trydnt: Build G1 Trydnt\n\n21) wil: Build Y2 G3\n\n22) Trydnt: Trade G1 B1 Trydnt\n\n23) wil: Build G1 Wil\n\n24) Trydnt: Move B1 Trydnt Y3ee\n\n25) wil: Build Y2 G3\n\n26) Trydnt: Build G1 Trydnt\n\n27) wil: Move Y2 G3 Wil\n\n28) Trydnt: Move G1 Trydnt Y3ee\n\n29) wil: Build Y2 G3\n\n\nHomeworlds Online (SDG# 33702)\nVariants: &quot;Hard time&quot;\nStarted: 2018.1.19, Ended: 2018.2.15\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) wil: H B2 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) wil: T G1 R1 Wil\n\n7) Trydnt: Build R2 Trydnt\n\n8) wil: Build R2 Wil\n\n9) Trydnt: Build R2 Trydnt\n\n10) wil: Trade R2 Y2 Wil\n\n11) Trydnt: Discover R2 Trydnt Y1 Y1\n\n12) wil: D R1 Wil G3 G3\n\n13) Trydnt: Move R2 Y1 G3\n\n14) wil: Build R2 G3\n\n15) Trydnt: Attack R2 G3\n\n16) wil: Build R3 G3\n\n17) Trydnt: Build R3 Trydnt\nCatastrophe G3 R\n\twil: Got my resume down to 6 pages...and now made it 3...double sided F convention.  Want a job I can walk to, applied at moms, might just apply at home depot!!\n\n18) wil: Build Y1 Wil\n\tTrydnt: If you&#39;re applying to jobs like that you should probably prioritize and get your resume down to 1 page single sided. They just wont read much more than that\n\n19) Trydnt: Trade R1 Y1 Trydnt\n\twil: lol...  those are for people that don&#39;t have a history....everyone reads my resume\r\n\n\twil: Including professional resume writers who give the same 1 page advice adnauseum....they all go...two many pages and then go...wow.\n\n20) wil: Trade Y1 B1 Wil\n\twil: this game is now yours to lose...you&#39;ve already won\n\n21) Trydnt: Build R1 Trydnt\n\n22) wil: Build B1 Wil\n\n23) Trydnt: Trade R2 B2 Trydnt\n\n24) wil: Trade B1 R1 Wil\n\n25) Trydnt: Build R2 Trydnt\n\n26) wil: Build R2 Wil\n\n27) Trydnt: Discover R2 Trydnt Y1 Y1\n\n28) wil: Discover R1 Wil Y3 Y3\n\n29) Trydnt: Move R2 Y1 Y3\n\n30) wil: S G3 Wil\nB R2 Y3\nB R3 Y3\nB R3 Wil\nC Y3 R\n\n31) Trydnt: Build B1 Trydnt\n\n32) wil: T R3 G3 Wil\n\n33) Trydnt: Discover R3 Trydnt Y1 Y1\n\twil: Same statement as other game\n\n34) wil: Discover R2 Wil Y3 Y3\n\n35) Trydnt: Discover B2 Trydnt G1 G1\n\n36) wil: B G1 Wil\n\n37) Trydnt: Move Y1 Trydnt G1\n\n38) wil: B Y1 Wil\n\n39) Trydnt: Build Y2 G1\n\n40) wil: D Y1 Wil G3 G3\n\n41) Trydnt: Move Y2 G1 G3\n\n42) wil: B Y3 G3\n\n43) Trydnt: Build Y3 G1\n\n44) wil: Move Y1 G3 G1\n\n45) Trydnt: Discover Y1 G1 B3 B3\n\n46) wil: Trade G1 R1 Wil\n\n47) Trydnt: Discover Y2 G3 R2 R2\n\n48) wil: Move R1 Wil G3\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 Trydnt\nBuild B1 G1\n\n50) wil: Build R3 G3\n\n51) Trydnt: Trade R3 G3 Trydnt\n\n52) wil: Move R1 G3 Y1\n\n53) Trydnt: Sacrifice R2 Y1\nAttack R1 Y1\nAttack Y1 G1\n\n54) wil: Build G1 Wil\n\n55) Trydnt: Move R3 Y1 Y3\n\n56) wil: Discover R2 Y3 G1 B1\n\n57) Trydnt: Move B1 G1 Y3\n\n58) wil: Discover G1 Wil B3 R3\n\n59) Trydnt: Build G2 Trydnt\n\n60) wil: Build R2 B1\n\n61) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Y1\nBuild B2 Y3\n\n62) wil: M B1 Wil G3\n\n63) Trydnt: Move R3 Y1 R3\n\n64) wil: B G2 Wil\n\n65) Trydnt: Attack G1 R3\n\n66) wil: Move G2 Wil B3\n\n67) Trydnt: Sacrifice Y3 G1\nMove B1 Y3 Wil\nMove B2 Y3 Wil\nMove B2 G1 Y3\n\n68) wil: Build Y3 G3\n\n69) Trydnt: Move B2 Y3 Wil\nCatastrophe Wil B\n\n70) wil: S Y3 G3\nM Y2 Wil Trydnt\nM B1 G3 Y1\nM B1 Y1 Trydnt\n\n71) Trydnt: Move R1 Trydnt Wil\n\n72) wil: S G2 B3\nB B1 Trydnt\nB Y3 Trydnt\nC Trydnt B\n\twil: Good game\n\n73) Trydnt: Sacrifice Y2 R2\nMove R3 R3 Wil\nMove R3 Y3 Wil\nCatastrophe Wil R\n\n\twil: You are starting to get the hang of it!\n\nHomeworlds Online (SDG# 33755)\nStarted: 2018.2.5, Ended: 2018.2.14\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\teliscinsky: Good Luck wil, not that I think you&#39;ll need it.  I&#39;m truly a novice. LOL \n\n2) eliscinsky: Homeworld B1 Y2 G3\n\twil: It takes a while to get the nuance of this game...you learn by losing...not winning!\n\n3) wil: Build G1 Wil\n\teliscinsky: Yes I have been &quot;learning&quot; a lot. :)\n\twil: oh jeez...another short universe..\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) wil: Trade G1 B1 Wil\n\n6) eliscinsky: Trade G1 R1 Eliscinsky\n\n7) wil: Build B1 Wil\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) wil: D B1 Wil Y3 Y3\n\n10) eliscinsky: Trade G1 Y1 Eliscinsky\n\n11) wil: B G1 Wil\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) wil: Build B2 Wil\n\n14) eliscinsky: Build R1 Eliscinsky\n\n15) wil: T B2 R2 Wil\n\n16) eliscinsky: Move R1 Eliscinsky Y3\n\n17) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n18) eliscinsky: Attack B1 Y3\n\teliscinsky: WOW, cool move!\n\n19) wil: Sacrifice R2 Wil\nAttack R1 Y3\nAttack B1 Y3\n\n20) eliscinsky: Discover Y1 Eliscinsky R3 R3\n\twil: Don&#39;t let people monopolize an economy!!  \n\n21) wil: Discover B3 Wil G3 G3\n\n22) eliscinsky: Build R1 Eliscinsky\n\n23) wil: B B3 G3\n\n24) eliscinsky: Move R1 Eliscinsky R3\n\n25) wil: Trade B3 R3 G3\n\n26) eliscinsky: Build R2 Eliscinsky\n\n27) wil: B B3 Wil\n\n28) eliscinsky: Trade G1 Y1 Eliscinsky\n\twil: I&#39;ve now got a big ship factory, and will build size 3s every other turn\n\n29) wil: Trade B3 G3 Wil\n\n30) eliscinsky: Build Y2 Eliscinsky\n\n31) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB R2 Y3\n\n32) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R2 Eliscinsky R3\nMove R2 R3 Wil\n\n33) wil: Sacrifice R1 Y3\nAttack R2 Wil\n\n34) eliscinsky: Build Y2 Eliscinsky\n\n35) wil: Trade B3 Y3 G3\n\n36) eliscinsky: Move Y2 Eliscinsky R3\n\n37) wil: Build B3 G3\n\n38) eliscinsky: Build Y2 Eliscinsky\n\n39) wil: Sacrifice Y3 G3\nMove B3 G3 Eliscinsky\nMove B3 G3 Eliscinsky\nMove B1 Wil G3\n\n40) eliscinsky: Move Y2 Eliscinsky R3\n\n41) wil: Sacrifice R3 G3\nAttack G3 Eliscinsky\nAttack Y1 Eliscinsky\nAttack R1 Eliscinsky\n\twil: Awesome that you joined the tourney...keep challenging folks and next time it happens you will go a lot further!  \n\teliscinsky: WOW! That was a spectacular move.  Did NOT see that coming. Thanks for the game, wil.  I learned a lot.\n\n\nHomeworlds Online (SDG# 33565)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.7, Ended: 2018.2.27\nParticipants: Felix (S), Trydnt (N)\nWinner: Felix\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Felix: Homeworld B2 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\tFelix: Have a good game!\n\tTrydnt: And you!\n\n6) Felix: Trade G1 B1 Felix\n\n7) Trydnt: Build Y1 Trydnt\n\n8) Felix: Build B1 Felix\n\n9) Trydnt: Build G1 Trydnt\n\n10) Felix: Discover B1 Felix G1 Out\n\n11) Trydnt: Discover Y1 Trydnt B3 B3\n\n12) Felix: Build B1 Out\n\n13) Trydnt: Build Y1 Trydnt\n\n14) Felix: Build B2 Out\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B3\nBuild Y2 B3\nBuild Y2 Trydnt\n\n16) Felix: Build B3 Felix\n\n17) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt B3 B33\nDiscover Y1 B3 Y2 Y2\n\n18) Felix: Trade B3 Y3 Felix\n\n19) Trydnt: Build Y3 Trydnt\n\n20) Felix: Build B3 Felix\n\n21) Trydnt: Build G1 Trydnt\n\n22) Felix: Trade B3 R3 Felix\n\n23) Trydnt: Trade Y2 G2 B3\n\n24) Felix: Trade B2 Y2 Out\n\tFelix: Good moves!\n\n25) Trydnt: Build G2 B3\n\n26) Felix: Move R3 Felix Out\n\n27) Trydnt: Move G1 Trydnt B33\n\n28) Felix: Move R3 Out B3\n\n29) Trydnt: Sacrifice Y2 B3\nMove G2 B3 Out\nMove G2 B3 Out\n\n30) Felix: Sacrifice Y2 Out\nDiscover B1 Out G3 Rim\nDiscover B1 Out G3 Rom\n\n31) Trydnt: Build G2 B33\n\n32) Felix: Build B2 Rom\n\n33) Trydnt: Sacrifice G2 B33\nBuild Y2 B33\nBuild Y2 B33\n\n34) Felix: B B3 Rim\n\n35) Trydnt: Move Y1 B33 Out\n\n36) Felix: Sacrifice B2 Rom\nTrade Y3 R3 Felix\nTrade B3 Y3 Rim\n\n37) Trydnt: Build G2 B33\n\n38) Felix: Build B2 Rom\n\n39) Trydnt: Trade G2 R2 B33\n\n40) Felix: Build B3 Rim\n\n41) Trydnt: Build G2 Trydnt\n\n42) Felix: Move R3 Felix Out\n\n43) Trydnt: Sacrifice Y1 Out\nDiscover G1 B33 Y1 Y1\n\n44) Felix: Attack G2 Out\n\n45) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Out\nCatastrophe Out G\nBuild G1 Y1\n\n46) Felix: Trade B3 R3 Rim\n\n47) Trydnt: Build G2 Y1\n\n48) Felix: Build B3 Felix\n\n49) Trydnt: Build G2 Trydnt\n\n50) Felix: Move R3 Rim Y2\n\n51) Trydnt: Discover Y1 Y2 R1 R1\n\n52) Felix: Move R3 Y2 B33\n\n53) Trydnt: Sacrifice G2 Trydnt\nBuild R1 B33\nBuild R2 B33\nCatastrophe B33 R\n\n54) Felix: Trade B3 R3 Felix\n\n55) Trydnt: Sacrifice G2 Y1\nBuild G2 Y1\nBuild Y2 R1\n\n56) Felix: Build B3 Rim\n\n57) Trydnt: Move Y2 B33 Y1\n\n58) Felix: Sacrifice Y3 Rim\nMove R3 B3 Trydnt\nMove B3 Rim Trydnt\nMove B2 Rom Trydnt\n\n59) Trydnt: Attack R3 Trydnt\n\n60) Felix: Sacrifice R3 Felix\nAttack R3 Trydnt\nAttack Y3 Trydnt\nAttack G1 Trydnt\n\n\tFelix: Good game!\n\tTrydnt: haha lots of trouble from the start. Well played!\n\tFelix: You too! I&#39;m definitely seeing improvement, so keep playing!\n\nHomeworlds Online (SDG# 33699)\nStarted: 2018.2.7, Ended: 2018.2.13\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n\nHomeworlds Online (SDG# 33704)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.7, Ended: 2018.2.26\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B1 Y1 G3 *\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G3 R3 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build G1 Wil\n\n8) Trydnt: Build R1 Trydnt\n\n9) wil: Trade G1 B1 Wil\n\n10) Trydnt: Trade R1 B1 Trydnt\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: Trade G1 Y1 Wil\n\n14) Trydnt: Discover B1 Trydnt G1 G1\n\n15) wil: B B2 Wil\n\n16) Trydnt: Build B2 G1\n\n17) wil: D B1 Wil G3 G3\n\n18) Trydnt: Trade B1 Y1 G1\n\n19) wil: Build G1 Wil\n\n20) Trydnt: Move B2 G1 G3\n\n21) wil: Build B1 G3\n\n22) Trydnt: Trade B2 R2 G3\n\n23) wil: B B2 G3\n\n24) Trydnt: Attack B2 G3\n\n25) wil: B B3 G3\n\n26) Trydnt: Build Y2 G1\nCatastrophe G3 B\n\n27) wil: Build B1 Wil\n\n28) Trydnt: Sacrifice Y2 G1\nMove R2 G3 Wil\nMove R1 Trydnt Wil\n\n29) wil: Sacrifice R3 Wil\nAttack R2 Wil\nAttack R1 Wil\nPass\n\twil: Lol what the helll\n\n30) Trydnt: Build G2 Trydnt\n\n31) wil: D B2 Wil G3 G3\n\n32) Trydnt: Build Y2 G1\n\n33) wil: Build G2 Wil\n\n34) Trydnt: Move G2 Trydnt Wil\nCatastrophe Wil G\n\n35) wil: Build B1 G3\n\n36) Trydnt: Build Y2 G1\n\n37) wil: Build B2 G3\n\n38) Trydnt: Discover Y2 G1 G3 G33\n\n39) wil: Trade B2 Y2 G3\n\n40) Trydnt: Build Y3 G33\n\n41) wil: Build Y3 G3\n\n42) Trydnt: Sacrifice Y2 G33\nMove Y1 G1 G3\nMove Y2 G1 G3\nCatastrophe G3 Y\n\n43) wil: Build B2 G3\n\n44) Trydnt: Build R1 Trydnt\n\n45) wil: Trade R1 G1 Wil\n\n46) Trydnt: Discover Y3 G33 G2 G2\n\n47) wil: Build B3 Wil\n\twil: You found the best way out of that...you almost let me catch back upto even!\r\n\n\twil: I can&#39;t believe I am getting back into this game!\n\n48) Trydnt: Move Y3 G2 G3\n\twil: I am still alive!!\n\n49) wil: Discover B1 Wil Y2 Y2\n\tTrydnt: It&#39;s an interesting game for sure\n\n50) Trydnt: Sacrifice R1 Trydnt\nAttack B2 G3\n\n51) wil: Sacrifice G1 Wil\nBuild B3 Y2\n\twil: I just can&#39;t believe you let me get a 3!!\n\n52) Trydnt: Trade B2 R2 G3\n\n53) wil: Move B1 Y2 G3\n\twil: I was torn between this and sacking the B2 and changing the other two to yellow...\n\n54) Trydnt: Attack B2 G3\n\n55) wil: Build B2 G3\nCatastrophe G3 B\n\n56) Trydnt: Build G1 Trydnt\n\n57) wil: Trade B3 G3 Y2\n\n58) Trydnt: Trade G1 B1 Trydnt\n\n59) wil: Build G1 Y2\n\twil: again couldn&#39;t decide...s r2 and attack r2 and b2 or ...dang it again the other way would have been better\n\n60) Trydnt: Build G1 Trydnt\n\n61) wil: Discover Y1 Wil G2 G2\n\n62) Trydnt: Build R1 G3\n\n63) wil: Move G1 Y2 Wil\n\n64) Trydnt: Move R2 G3 G2\n\n65) wil: Discover Y1 G2 G1 G1\n\n66) Trydnt: Build R1 G3\n\n67) wil: Build G2 Wil\n\n68) Trydnt: Move R1 G3 Wil\n\n69) wil: Attack R1 Wil\n\n70) Trydnt: Move R1 G3 Wil\n\n71) wil: Move R1 Wil Y2\n\n72) Trydnt: Trade R1 B1 Wil\n\n73) wil: Trade B3 Y3 Wil\n\n74) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Wil\n\n75) wil: Build G1 Wil\n\n76) Trydnt: Move B1 Trydnt Wil\nCatastrophe Wil B\n\n77) wil: Move G1 Wil Trydnt\n\twil: Youse is beingst a pest.\n\n78) Trydnt: Trade G3 B3 Trydnt\n\tTrydnt: I learned from the best\n\n79) wil: Build G2 Wil\n\twil: Who has been teachin you?\r\n\n\n80) Trydnt: Attack G1 Trydnt\n\n81) wil: Build G3 Y2\n\n82) Trydnt: Build B1 Trydnt\n\n83) wil: Discover G2 Wil Y2 Why2\n\n84) Trydnt: Build Y1 G3\n\n85) wil: Sacrifice G3 Y2\nBuild G3 Y2\nBuild Y2 G1\nBuild R1 Y2\n\n86) Trydnt: Move Y3 G3 Wil\n\twil: lol...put it in my homeworld for a minute...mistakes you&#39;d not make in a live game\n\twil: There was a 9 minute window for the slaughter...whew.\n\n\twil: lol...well that proves I should have done the other move...nice!\r\n\n\twil: all three of my choices have a winning response from your side...good game!\n\tTrydnt: in answer to your previous question... self taught haha\n\tTrydnt: the short universe is very fun though. completely changes the game\n\twil: And it isn&#39;t a shorter game...  being able to play here has been handy..  It was almost the only way to find people to play... for a while I had somebody nearby who would play 3-5 games a night...but he moved away... so I only now get in a few games a week..  btw, you should be in the next tourney\n\tTrydnt: Haha yeah I miss our live games it&#39;s not the same here. but yeah it was interesting having to move out to build up forces so you couldn&#39;t just move straight in and blow it all up\n\nHomeworlds Online (SDG# 33759)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.7, Ended: 2018.2.14\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Felix: Homeworld B1 Y2 G3\n\n3) wil: Build G1 Wil\n\tFelix: At least it will be over quickly :)\n\twil: Idk if short universe is over any quicker\r\n\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\tFelix: It all depends on how quickly I make mistakes. :)\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: Trade B2 Y2 Wil\n\n10) Felix: Discover B2 Felix G3 Out\n\n11) wil: Move B1 Wil Out\n\n12) Felix: Trade B2 R2 Out\n\n13) wil: Build B2 Out\n\n14) Felix: Attack B2 Out\n\twil: I should learn to think things out...but I love experimentation\n\n15) wil: B B2 Out\n\tFelix: I enjoy it too! Experimentation has lost me many games.\n\twil: Lol this one went very ba\n\n16) Felix: Sacrifice R2 Out\nAttack B2 Out\nAttack B1 Out\n\n17) wil: B Y1 Wil\n\twil: Lol\n\n18) Felix: Build B3 Felix\n\twil: I should. Resign. But may just take my beating!\n\n19) wil: T G3 B3 Wil\n\tFelix: You never know! I frequently make mistakes.\n\twil: I would be appreciative\n\n20) Felix: Trade B2 Y2 Out\n\n21) wil: Trade B3 R3 Wil\n\n22) Felix: Move Y2 Out Wil\nCatastrophe Wil Yellow\n\n\twil: no use taking up your time...now I have to play mneme in the tourney\n\tFelix: Ooh, good luck to you! I&#39;m a bit nervous about that game myself, if I get there.\n\nHomeworlds Online (SDG# 33562)\nVariants: &quot;Unrated&quot;\nStarted: 2018.2.11, Ended: 2018.3.15\nParticipants: Orl (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) Orl: Homeworld B2 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Orl: Build G1 Orl\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Orl: Trade G1 R1 Orl\n\n7) Trydnt: Build R2 Trydnt\n\n8) Orl: Build R2 Orl\n\n9) Trydnt: Build R2 Trydnt\n\n10) Orl: Trade R2 Y2 Orl\n\n11) Trydnt: Discover R2 Trydnt G1 G1\n\n12) Orl: Build G1 Orl\n\n13) Trydnt: Trade R1 B1 Trydnt\n\n14) Orl: Discover G1 Orl Y3 Y3\n\n15) Trydnt: Move B1 Trydnt G1\n\n16) Orl: Build G1 Y3\n\n17) Trydnt: Build G2 Trydnt\n\n\nHomeworlds Online (SDG# 33775)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.14, Ended: 2018.3.1\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Pass\n\n2) wil: Homeworld B2 Y1 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\twil: lol...passes huh?  \n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) wil: T G1 R1 Wil\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) wil: Build R1 Wil\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) wil: Build R2 Wil\n\tDraw5PlayAll: So you wanted to get #1 on ladder...\n\twil: Been there a number of times...  I just like to play games...up against the probable winner in the tourney next...\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) wil: Discover R1 Wil Y3 Y3\n\tDraw5PlayAll: Who all is still standing anyway?\n\twil: It boiled down to 8 of us...and all but two are left in that...  I&#39;d have to look.  just a couple tiers before the final best outta three from the top two...\n\n13) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n14) wil: Discover R2 Wil Y3 Why3\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n16) wil: Sacrifice G3 Wil\nBuild R2 Y3\nBuild R2 Why3\nBuild R3 Wil\n\n17) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\twil: so few moves so many mistakes...I gotta set up a board so I don&#39;t commit to the move.. dag nabbit.\n\n18) wil: Trade R3 G3 Wil\n\n19) Draw5PlayAll: Discover Y2 G2 G1 G1\n\n20) wil: Move R2 Y3 G2\n\n21) Draw5PlayAll: Sacrifice Y2 G2\nDiscover Y2 G2 B3 B3\nDiscover Y1 Draw5playall G2 Idareyou\n\n22) wil: Build R3 Wil\n\n23) Draw5PlayAll: Build Y2 Idareyou\n\n24) wil: Trade R3 Y3 Wil\n\n25) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\twil: You should have joined the tourney... \n\twil: It just blends in with playing these challenges...and guaranteed you play a herd of games to start in the round robin before you even start the brackets.\n\tDraw5PlayAll: Nooooooooooo\n\n26) wil: Sacrifice Y3 Wil\nMove R1 Y3 G2\nMove R1 G2 Draw5playall\nMove R2 G2 Draw5playall\nCatastrophe Draw5playall R\n\n27) Draw5PlayAll: Move Y2 G1 Draw5playall\n\tDraw5PlayAll: I at least thought I could hold the ladder longer than THIS!\n\n28) wil: Move G3 Wil Draw5playall\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\twil: one never knows...  it is like billygoat hill...soon as you get here everyone wants to knock you off.   \r\n\n\twil: I&#39;m impatient...you may yet win!\n\n30) wil: Trade G3 R3 Draw5playall\n\n\tDraw5PlayAll: That is an easier way.\n\nHomeworlds Online (SDG# 33768)\nVariants: &quot;Unrated&quot;\nStarted: 2018.2.15, Ended: 2018.3.18\nParticipants: Trydnt (S), zeder (N)\nWinner: Trydnt\n\n1) zeder: Homeworld Y2 B3 G3\n\n2) Trydnt: Homeworld B2 R1 G3\n\n3) zeder: Build G1 Zeder\n\n4) Trydnt: Build G1 Trydnt\n\n5) zeder: Trade G1 B1 Zeder\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) zeder: Build G1 Zeder\n\n8) Trydnt: Build G1 Trydnt\n\n9) zeder: Trade G1 Y1 Zeder\n\n10) Trydnt: Trade G1 Y1 Trydnt\n\n11) zeder: Build G1 Zeder\n\n12) Trydnt: Build Y1 Trydnt\n\n13) zeder: Build Y2 Zeder\n\n14) Trydnt: Build Y2 Trydnt\n\n15) zeder: Discover Y2 Zeder G1 Cribbage\n\n16) Trydnt: Trade Y1 R1 Trydnt\n\n17) zeder: Discover Y2 Cribbage G3 Gin\n\n18) Trydnt: Move Y2 Trydnt Gin\n\n19) zeder: Discover Y2 Gin G1 Cribbage\n\n20) Trydnt: Build R1 Trydnt\n\n21) zeder: Trade G3 R3 Zeder\n\n22) Trydnt: Move R1 Trydnt Gin\n\n23) zeder: Build R2 Zeder\n\n24) Trydnt: Move B1 Trydnt Gin\n\n25) zeder: Trade R3 G3 Zeder\n\n26) Trydnt: Build R2 Gin\n\n27) zeder: Move R2 Zeder Cribbage\n\n28) Trydnt: Discover R2 Gin B1 B1\n\n29) zeder: Move B1 Zeder Cribbage\n\n30) Trydnt: Build B2 Gin\n\n\nHomeworlds Online (SDG# 33687)\nVariants: &quot;Unrated&quot;\nStarted: 2018.2.17, Ended: 2018.2.17\nParticipants: wil (S), Gibsi (N)\nWinner: wil\n\n1) Gibsi: Homeworld B1 Y2 G3\n\n\twil: What is up with these...  I didn&#39;t even notice them come up?\n\nHomeworlds Online (SDG# 33639)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.2.17, Ended: 2018.2.17\nParticipants: Gibsi (S), wil (N)\nWinner: wil\n\n\twil: scratching my head?\n\nHomeworlds Online (SDG# 33803)\nStarted: 2018.2.21, Ended: 2018.2.26\nParticipants: mneme (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) mneme: Homeworld R1 G3 B3\n\twil: I&#39;d say good luck...but we both know it is I who needs it!\n\twil: Have a great game...hope I can challenge you a tad.\n\n3) wil: Build G1 Wil\n\tmneme: We both need it!  We&#39;ll see how things go!  And good luck! (also, as I prefer in non-random games, ganbatte!)\r\n\n\tmneme: Still, I&#39;m going second which I admit is my favored positon.\n\n4) mneme: Build B1 Mneme\n\tmneme: Helps if I don&#39;t accidentally make a small universe, though.\n\twil: Second is best...I wanted to pass...but I see that as bad form...the computer flips the coin.\n\n5) wil: Trade G1 R1 Wil\n\n6) mneme: Trade B1 Y1 Mneme\n\tmneme: pass means I could force a tie if I wanted to.  Not sure what that does for tournament, though.\r\n\n\n7) wil: Build R1 Wil\n\twil: what is the rule on back and forth for ties?\r\n\n\tmneme: all pass  = tie\r\n\n\n8) mneme: Build Y1 Mneme\n\n9) wil: Build R2 Wil\n\twil: what about back and forth later in the game?\n\n10) mneme: Build Y2 Mneme\n\n11) wil: Discover R1 Wil G3 G3\n\tmneme: there is no autotie.  I&#39;ve offered ties in homeworlds once maybe because of a cycle, but it usually doesn&#39;t happen.\r\n\n\n12) mneme: Discover Y1 Mneme G2 Polyhymnia\n\n13) wil: Discover R2 Wil Y3 Y3\n\n14) mneme: Build Y2 Polyhymnia\n\n15) wil: Move R2 Y3 Polyhymnia\n\n16) mneme: Sacrifice Y1 Polyhymnia\nDiscover Y2 Polyhymnia G1 Erato\n\tBabamots: I think I failed to specify what happens in the event of a tie in the bracket phase. I suppose the most sensible thing would be to just play again.\n\n17) wil: Sacrifice G3 Wil\nBuild R2 Polyhymnia\nBuild R2 G3\nBuild R3 Wil\n\n18) mneme: Build B1 Mneme\n\n19) wil: Trade R3 Y3 Wil\n\n20) mneme: Trade B3 G3 Mneme\n\n21) wil: Build R3 Polyhymnia\n\n22) mneme: Build Y1 Erato\n\n23) wil: Build R3 G3\n\n24) mneme: Build Y2 Erato\n\n25) wil: Move Y3 Wil G3\n\twil: I think you probably made the best of all possible bad moves available..  Unless you have a trick up your sleeve, I think you need me to make some mistake..\n\n26) mneme: Build Y3 Mneme\n\tmneme: We&#39;ll see how it goes. I certainly have a considerable numerical disadvantage.\n\n27) wil: Move R3 G3 Erato\n\twil: I was torn between this and sacking the Y3, backing up an R3 into my HW moving the r1 out to a b3 and moving an R2 into your yellows...but I don&#39;t have the ability to ponder long...\n\n28) mneme: Sacrifice Y2 Erato\nDiscover Y1 Erato B3 Euterpe\nDiscover Y2 Erato B3 Calliope\n\n29) wil: Build R3 G3\n\n30) mneme: Sacrifice Y2 Mneme\nMove Y2 Calliope Wil\nMove Y1 Euterpe Wil\n\twil: I am so bad at thinking before my move...and do nothing but second guess after my move.\n\n31) wil: Sacrifice Y3 G3\nMove R3 Erato Polyhymnia\nMove R3 Polyhymnia Mneme\nMove R3 Polyhymnia Mneme\n\n32) mneme: Attack R3 Mneme\n\tmneme: That&#39;s what I&#39;m counting on.  As it were.\n\n33) wil: Sacrifice R3 G3\nAttack R3 Mneme\nAttack G3 Mneme\nAttack Y3 Mneme\n\n\twil: I had figured I needed it more than another y...\n\twil: trying for monopolies is a thing...maintaining them is a challenge.  It wasn&#39;t my intention...but when you decided to not play follow the leader, that gave me a choice, abandon red and get a yellow before I can&#39;t...which meant you just got the first move advantage from second place...or race with you.\n\twil: I was hoping to get to the end and play you in the best of three...feel free to challenge me anytime.  I feel you are far better than I and I got lucky early here.\n\tmneme: So much of this game is decided in the opening unless someone makes a mistake (and I did; I shouldn&#39;t have let you contorol Red so thoroughly, though there was a period where it was possible your limited movement/growth might have let me turn it around).\r\n\r\n  Good luck in the tornament!\n\tmneme: Without the R you wouldn&#39;t have been able to win; can&#39;t take over my home system as easily when I can cat R in response!\n\twil: quite, and thanx for the game.\n\nHomeworlds Online (SDG# 33631)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.26, Ended: 2018.3.1\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 Y3\n\n2) wil: Homeworld B2 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) wil: Build G1 Wil\n\n9) Trydnt: Build R1 Trydnt\n\n10) wil: Build G1 Wil\n\n11) Trydnt: Build R2 Trydnt\n\n12) wil: Discover G1 Wil Y3 Y3\n\n13) Trydnt: Trade R2 G2 Trydnt\n\n14) wil: Build G2 Wil\n\n15) Trydnt: Sacrifice Y3 Trydnt\nDiscover G2 Trydnt Y2 Y2\nMove G2 Y2 Y3\nMove G2 Y3 Wil\nCatastrophe Wil G\n\n16) wil: Build G1 Y3\n\n17) Trydnt: Build R2 Trydnt\n\tTrydnt: wooahhhhhh haha\n\tTrydnt: have you seen the new star wars? that was like a light speed collision\n\n18) wil: Build G2 Y3\n\twil: lol, wow.\n\n19) Trydnt: Trade R2 G2 Trydnt\n\n20) wil: Move G2 Y3 Wil\n\n21) Trydnt: Discover G2 Trydnt Y2 Y2\n\n22) wil: Move G1 Y3 Y2\n\n23) Trydnt: Discover G2 Y2 B3 B3\n\n24) wil: Move G1 Y2 B3\n\n25) Trydnt: Trade G2 R2 B3\n\n26) wil: Sacrifice G1 B3\nBuild G1 Wil\n\n27) Trydnt: Build R2 Trydnt\n\n28) wil: Build G2 Wil\n\n29) Trydnt: Discover R2 Trydnt Y2 Y2\n\n30) wil: Build G2 Y3\n\n31) Trydnt: Discover R2 Y2 G3 G3\n\n32) wil: Build G3 Y3\n\n33) Trydnt: Build R2 G3\n\n34) wil: Discover G2 Wil Y3 Why3\n\n35) Trydnt: Build R3 Trydnt\n\n36) wil: Sacrifice G3 Y3\nBuild G3 Why3\nBuild G3 Wil\nBuild Y1 Wil\n\n37) Trydnt: Trade R3 Y3 Trydnt\n\n38) wil: Trade G3 R3 Wil\n\n39) Trydnt: Build R3 Trydnt\n\n40) wil: Sacrifice G3 Why3\nBuild G3 Why3\nBuild G3 Wil\nBuild Y2 Wil\n\n41) Trydnt: Sacrifice Y3 Trydnt\nMove R2 B3 Wil\nMove R2 G3 Wil\nCatastrophe Wil R\nMove R3 Trydnt Wil\n\n42) wil: Trade Y1 R1 Wil\n\n43) Trydnt: Sacrifice R2 G3\nAttack G3 Wil\nAttack R1 Wil\n\n44) wil: Trade Y2 R2 Wil\n\n45) Trydnt: Sacrifice R3 Wil\nAttack R2 Wil\nAttack G2 Wil\nAttack G1 Wil\n\n46) wil: Move G1 Y3 Wil\nCatastrophe Wil G\n\n47) Trydnt: Attack Y1 Wil\n\n\twil: good game!\n\tTrydnt: Well played. When are you doing your next game night?\n\nHomeworlds Online (SDG# 33640)\nStarted: 2018.2.26, Ended: 2018.3.7\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\twil: can&#39;t stop me!  i can&#39;t get enough of this game...win or lose!\n\n4) wil: Build G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: Trade G1 B1 Wil\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\twil: there is nothing like looking at the computer and seeing you have 5 moves to make in HW.\n\tts52: Absolutely!\n\n8) wil: Trade B1 Y1 Wil\n\twil: hmmm...you moved out..that changes everything!  gonna try this..\n\n9) ts52: Build B1 Kermit\n\n10) wil: Build Y1 Wil\n\n11) ts52: Build B2 Kermit\n\n12) wil: Discover Y1 Wil G2 G2\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) wil: Build Y2 Wil\n\n15) ts52: Build Y2 Kermit\n\twil: dang I love how different every game is...  this could go anywhere!  I can&#39;t wait till someone builds a system where we can pick a game an decide to play/replay again from any move on the board and play what ifs...  Or watch an AI play what ifs.\n\tts52: That would be very cool indeed\n\n16) wil: Build Y3 G2\n\n17) ts52: Sacrifice Y2 Kermit\nMove Y2 Kermit G2\nMove Y2 G2 Wil\nCatastrophe Wil Yellow\n\twil: like now for instance...would love to play this three different ways.\n\n18) wil: Move Y1 G2 Wil\n\tts52: Agreed. I&#39;m pretty sure I&#39;ll regret that later, but can&#39;t resist.\n\n19) ts52: Build B2 Kermit\n\n20) wil: Build Y1 G2\n\n21) ts52: Trade B2 Y2 Kermit\n\n22) wil: Trade Y1 R1 Wil\n\n23) ts52: Trade B1 R1 Kermit\n\twil: ya done good\n\n24) wil: Move Y3 G2 Kermit\n\n25) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit Ts52\nDiscover B1 Kermit G2 Oscar\n\n26) wil: Move Y3 Kermit Oscar\n\n27) ts52: Build B1 Oscar\n\n28) wil: Build Y1 G2\n\n29) ts52: Build B2 Oscar\n\n30) wil: Sacrifice R1 Wil\nAttack B2 Oscar\n\n31) ts52: Build B2 Oscar\nCatastrophe Oscar Blue\n\n32) wil: Move Y3 Oscar Wil\n\n33) ts52: Build G1 Ts52\n\n34) wil: Build Y2 Wil\n\n35) ts52: Build R1 Ts52\n\n36) wil: Discover Y2 Wil Y2 Y2\n\n37) ts52: Trade G1 B1 Ts52\n\n38) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 G2\n\n39) ts52: Discover R1 Ts52 G3 Kermit\n\twil: \n\tts52: Very interesting.... \n\n40) wil: Trade Y2 G2 Wil\n\n41) ts52: Build R1 Kermit\n\n42) wil: Build G1 Wil\n\n43) ts52: Build R2 Ts52\n\twil: I just gotta make sure you can&#39;t get to me now...\n\n44) wil: Build Y2 Wil\n\n45) ts52: Build R2 Ts52\n\n46) wil: Trade G2 R2 Wil\n\n47) ts52: Discover R1 Ts52 G3 Oscar\n\n48) wil: Build R3 Wil\n\n49) ts52: Build B1 Ts52\n\n50) wil: Build R3 Wil\n\n51) ts52: Discover R2 Ts52 B3 Gonzo\n\twil: It is as if I have a chain around your ankle.\n\n52) wil: Trade R2 B2 Wil\n\tts52: It really is...\n\n53) ts52: Move B1 Ts52 Oscar\n\n54) wil: Move R3 Wil Oscar\n\n55) ts52: Build G1 Ts52\n\n56) wil: Attack R1 Oscar\n\n57) ts52: Discover G1 Ts52 B3 Grover\n\n58) wil: Attack B1 Oscar\n\n59) ts52: Move B1 Ts52 Kermit\n\n60) wil: Move Y3 Wil Kermit\n\tts52: Shouldn&#39;t be too long now\n\n61) ts52: Build G1 Ts52\n\twil: I am trying to put an end to your suffering\n\twil: It looks like I have quite the wait for the next tourney game...and am guessing you&#39;ll be playing bhorner...although in this game nothing is certain as one mistake is easily capitalized on.\n\n62) wil: Build G2 Wil\n\tts52: Yeah, this round is going to take a while. I should probably just resign this game, but I like to play them out.\n\twil: The possiblity I would make a mistake exists.  Of course finish if you like!  Resigning is the choice of the player...  and when you are in a bad position, simply making moves to torment the opponent are gratifying... I&#39;ll blow up half a homeworld without a possibility of winning.\r\n\n\n63) ts52: Build G2 Grover\n\n64) wil: Build B2 Oscar\n\n65) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild R2 Kermit\n\twil: doomsday machine in place\n\n66) wil: Sacrifice R1 Oscar\nAttack B3 Kermit\n\twil: I was wrong, they weren&#39;t in place...i needed that!\n\n67) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gonzo\nBuild R3 Ts52\n\n68) wil: Sacrifice Y3 G2\nMove B3 Kermit Ts52\nMove B2 Oscar Ts52\nMove B1 Oscar Ts52\nCatastrophe Ts52 B\n\n69) ts52: Move R3 Ts52 Y2\n\twil: blue teams 3, 2, 1... we appreciate your service, your descendants will be rewarded for your loyalty\n\tts52: Very good game. Well played.\n\n70) wil: Sacrifice Y3 Kermit\nMove Y2 Y2 Ts52\nMove Y1 G2 Ts52\nMove Y1 G2 Ts52\nCatastrophe Ts52 Y\n\n\nHomeworlds Online (SDG# 33760)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.26, Ended: 2018.3.1\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld B2 R3 G3\n\twil: enjoy!\n\n3) wil: Build G1 Wil\n\tFelix: Likewise!\n\n4) Felix: Build G1 Felix\n\n5) wil: Trade G1 B1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: Build B1 Wil\n\n8) Felix: Build Y1 Felix\n\n9) wil: Discover B1 Wil G2 G2\n\n10) Felix: Build Y2 Felix\n\n11) wil: Build B1 Wil\n\n12) Felix: Trade Y2 B2 Felix\n\n13) wil: Discover B1 Wil Y2 Y2\n\n14) Felix: Discover B2 Felix G1 Out\n\n15) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B3 G2\nBuild B3 Wil\n\n16) Felix: Build Y2 Felix\n\n17) wil: Sacrifice B2 Y2\nTrade B3 Y3 G2\nTrade B3 G3 Wil\n\n18) Felix: Move Y1 Felix Out\n\tFelix: Nice move.\n\n19) wil: Build G1 Wil\n\n20) Felix: Discover Y1 Felix G1 Ingot\n\n21) wil: Build Y2 G2\n\n22) Felix: Build Y3 Out\n\n23) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 Wil\nBuild B3 Y2\n\n24) Felix: Sacrifice Y3 Out\nMove B2 Out G2\nMove B2 G2 Wil\nCatastrophe Wil Blue\nMove Y2 Felix Wil\n\n25) wil: Move B3 Y2 Wil\n\n26) Felix: Build G2 Felix\n\twil: nice game!\n\n\tFelix: Thanks! I wasn&#39;t expecting such a turnaround. It seemed you had the upper hand. \n\nHomeworlds Online (SDG# 33761)\nStarted: 2018.2.26, Ended: 2018.3.27\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H B1 G2 Y3\n\tMobyNostromo: Have fun!!\n\n2) wil: Homeworld Y3 B2 G3\n\twil: tis my intent when I play games...thanx...u2\n\twil: tis my intent when I play games...thanx...u2\n\n3) MobyNostromo: B Y1 Mobynostromo\n\tMobyNostromo: :)\n\n4) wil: Build G1 Wil\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) wil: Build G1 Wil\n\n7) MobyNostromo: T Y1 G1 Mobynostromo\n\n8) wil: Trade G1 B1 Wil\n\n9) MobyNostromo: B Y1 Mobynostromo\n\n10) wil: Trade G1 Y1 Wil\n\n11) MobyNostromo: D Y1 Mobynostromo G3 Ggg\n\n12) wil: Build Y2 Wil\n\n13) MobyNostromo: B Y2 Mobynostromo\n\n14) wil: Discover Y1 Wil B1 B1\n\n15) MobyNostromo: T Y1 G1 Mobynostromo\n\n16) wil: Build B2 Wil\n\n17) MobyNostromo: T Y2 B2 Mobynostromo\n\n18) wil: Discover B1 Wil G1 Years\n\n19) MobyNostromo: M B2 Mobynostromo Ggg\n\n20) wil: Build B3 Years\n\n21) MobyNostromo: B B3 Ggg\n\n22) wil: Trade B1 R1 Years\n\n23) MobyNostromo: D B2 Ggg G2 Bb\n\n24) wil: Build R1 Years\n\n25) MobyNostromo: B B1 Bb\n\n26) wil: Build B3 Years\n\n27) MobyNostromo: B Y1 Ggg\n\n28) wil: Trade B3 Y3 Years\n\n29) MobyNostromo: T Y1 R1 Ggg\n\n30) wil: Build B3 Years\n\n31) MobyNostromo: B Y1 Mobynostromo\n\n32) wil: Build G2 Wil\n\n33) MobyNostromo: B Y2 Ggg\n\n34) wil: Sacrifice Y2 Wil\nMove G2 Wil B1\nDiscover B3 Years G3 G3\n\n35) MobyNostromo: T Y3 R3 Mobynostromo\n\n36) wil: Build Y2 Years\n\n37) MobyNostromo: D G1 Mobynostromo Y3 Auburn\n\n38) wil: Move R1 Years G3\n\n39) MobyNostromo: B Y2 Mobynostromo\n\n40) wil: Sacrifice G2 B1\nBuild G2 Wil\nBuild R2 G3\n\n41) MobyNostromo: M Y1 Ggg Bb\n\n42) wil: Build R2 Years\n\n43) MobyNostromo: M B2 Bb B1\n\n44) wil: Discover R1 Years R3 R3\n\n45) MobyNostromo: M B1 Bb B1\n\n46) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 R3\nBuild R3 Years\n\n47) MobyNostromo: S Y2 Mobynostromo\nM B2 B1 Wil\nM B1 B1 Wil\nC Wil B\n\n48) wil: Sacrifice Y3 Years\nMove R3 Years G3\nMove B3 G3 Mobynostromo\nMove R3 G3 Mobynostromo\n\n49) MobyNostromo: M G1 Auburn Mobynostromo\n\twil: and if my math is right...\n\n50) wil: Sacrifice R3 Mobynostromo\nAttack R3 Mobynostromo\nAttack G1 Mobynostromo\nAttack G1 Mobynostromo\n\n51) MobyNostromo: S Y2 Ggg\nM R1 Ggg Bb\nM R1 Bb R3\nC R3 R\n\twil: my plan was to sack my r2...sbut since you left my R3 available....  My other choice with that sneaky move of yours...would have been to send in my g2 to prevent the bluebird...and catastrophe your greens... interesting twists..\n\tMobyNostromo: Homeworlds is likely the game that most invites creative thinking. I am always spell-bound by the various strategies and possibilities in a given game. \r\n\r\nNice job!!\n\n52) wil: Attack Y1 Mobynostromo\n\n\tMobyNostromo: {I just wanted to blow something up before losing.) :)\n\twil: That is a thing!\n\nHomeworlds Online (SDG# 33711)\nVariants: &quot;Unrated&quot;\nStarted: 2018.2.27, Ended: 2018.3.19\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) dlwillson: H Y3 B1 G3\n\n3) wil: Build G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\twil: there is nothing like looking at the computer and seeing you have 5 moves to make in HW.\n\tdlwillson: Hi Wil! Let&#39;s hope I can keep up this time, and not time out!\n\n5) wil: Trade G1 B1 Wil\n\twil: If you are too busy I can cancel... I just like to play.  \n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\tdlwillson: Me too! I just get focused on work and forget to play.\n\n8) dlwillson: B B2 Dlwillson\n\n9) wil: Discover B1 Wil G3 G3\n\n10) dlwillson: T B1 R1 Dlwillson\n\n11) wil: Build B1 G3\n\n12) dlwillson: B R1 Dlwillson\n\n13) wil: Build B3 Wil\n\n14) dlwillson: B B3 Dlwillson\n\n15) wil: Build B3 G3\n\n16) dlwillson: T B3 Y3 Dlwillson\n\n17) wil: Sacrifice B2 Wil\nTrade B3 Y3 G3\nTrade B3 R3 Wil\n\n18) dlwillson: D R1 Dlwillson B2 Sea\n\n19) wil: Build B3 G3\n\n20) dlwillson: D B2 Dlwillson G2 Field\n\n21) wil: Move B3 G3 Field\n\n22) dlwillson: Build B3 Field\n\n23) wil: Build B3 Field\nCatastrophe Field B\n\n24) dlwillson: B G1 Dlwillson\n\n25) wil: Build B2 G3\n\n26) dlwillson: B R1 Dlwillson\n\n27) wil: Move B1 G3 Wil\n\n28) dlwillson: M G1 Dlwillson Sea\n\n29) wil: Build B3 G3\n\n30) dlwillson: M Y3 Dlwillson Sea\n\n31) wil: Trade B3 R3 G3\n\twil: I see why you clock out sometimes...you got it set to expire in 3 days...most are 10 for hardtime\n\n32) dlwillson: Build G1 Dlwillson\n\n33) wil: Build B3 G3\n\n34) dlwillson: B G1 Sea\n\tdlwillson: Yes. I prefer the faster games, but sometimes real life interferes with my gaming. Gr.\r\n\r\nYou&#39;re getting pretty far ahead of me. I&#39;d like you to make a big mistake soon, if you don&#39;t mind.\n\tdlwillson: I have turned off hard time in my standing challenge, so the other player can choose between waiting to play it out and winning.\n\twil: That is my usual request and nobody ever does it for me (stands arms folded glaring)\n\n35) wil: Discover B3 G3 G2 G2\n\tDraw5PlayAll: The other thing about soft time is that if you go just a little bit over, the opponent may not notice you are out of time and you can come back even if the other person is unmerciful.\n\n36) dlwillson: D G1 Sea B3 Sky\n\twil: I&#39;ve had people behind for over a month..  I don&#39;t care about the win loss record and hate to see people time out on accident because of life...  I am here to play the game.\n\n37) wil: Build G2 Wil\n\tdlwillson: People were a month behind and then came back to finish the game?\n\n38) dlwillson: S G3 Dlwillson\nB Y1 Sea\nB G2 Sea\nB G3 Dlwillson\n\twil: sometimes....sometimes it gets to 60 days and I clean it off my board.\n\n39) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G2\nBuild R2 G3\n\twil: been running my queen machine, time to institute the factory before you cut me outta it!\n\n40) dlwillson: M Y1 Sea Sky\n\n41) wil: Sacrifice Y3 G3\nMove R2 G3 G2\nMove B3 G2 Dlwillson\nMove B3 G2 Dlwillson\n\twil: Four moves to mate?...I should have stacked differently and been there by now...but your next move will foil that.\n\n\twil: not the move I anticipated from you.\n\tdlwillson: Nice. I totally missed it. Sleeping at the wheel, here.\n\twil: mistakes in this game that are capitalized on are catastrophic...am waiting for my next game in the tourney and then i have to win 4 outta my next 5 to win...we are down to 5 players and by the time I get to play again it will be down to 4 or maybe even 3.\n\twil: I&#39;d really like to see you, two short, Teeteetee and broccoli commander in the next one.\n\tdlwillson: The timing will have to be a lot tighter. I&#39;d rather lose in three weeks than win in three months.\n\twil: How would that happen?   Unless live on site...a game here can take three weeks.   I enjoyed the time...insuring I get to play some good games with interested variety of folk.  Just watched &#39;searching for bobby fisher&#39; Even live we&#39;d need a room full of chess clocks.\n\tdlwillson: I&#39;ll have to watch that movie. I desperately wish BH would take the place of Chess in the world. It&#39;s a much prettier and more interesting game. Easier to carry, too.\n\twil: Chess was my favorite two player full info strategy game until....\n\tdlwillson: I watched Searching for Bobby Fischer. Loved it!\n\nHomeworlds Online (SDG# 33824)\nVariants: &quot;Unrated&quot;\nStarted: 2018.2.27, Ended: 2018.3.8\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 Y3\n\n2) dlwillson: H B3 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade Y1 R1 Trydnt\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) Trydnt: Build R2 Trydnt\n\n8) dlwillson: B R2 Dlwillson\n\n9) Trydnt: Build R2 Trydnt\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) Trydnt: Discover R2 Trydnt Y2 Y2\n\n12) dlwillson: B R2 Dlwillson\n\n13) Trydnt: Build R3 Trydnt\n\n14) dlwillson: S Y2 Dlwillson\nM R1 Dlwillson Y2\nM R1 Y2 Trydnt\nC Trydnt R\n\n15) Trydnt: Build Y1 Trydnt\n\n16) dlwillson: B R1 Dlwillson\n\n17) Trydnt: Move R2 Y2 Dlwillson\nCatastrophe Dlwillson R\n\n\tdlwillson: GG\r\nOops! :-)\n\nHomeworlds Online (SDG# 33762)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.27, Ended: 2018.3.1\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: Homeworld G2 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build Y1 Wil\n\tTrydnt: Well that&#39;s interesting\n\n5) Trydnt: Build G1 Trydnt\n\twil: experimentation\n\twil: I dislike g in my star\n\n6) wil: Discover Y1 Wil G3 G3\n\n7) Trydnt: Discover G1 Trydnt B2 B2\n\n8) wil: Build Y2 Wil\n\n9) Trydnt: Build G1 Trydnt\n\n10) wil: Discover Y2 Wil B3 B3\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B2\nBuild G2 B2\nBuild G3 Trydnt\n\n12) wil: Build Y2 G3\n\n13) Trydnt: Discover G1 Trydnt B2 B22\n\twil: this one is wierd\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Build G3 B22\n\n16) wil: Build Y3 G3\n\n17) Trydnt: Trade G3 Y3 B22\n\n18) wil: Trade Y2 B2 B3\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild G3 B22\nBuild G3 Trydnt\nBuild Y2 B22\n\n20) wil: Sacrifice B2 B3\nTrade Y1 R1 G3\nTrade Y3 B3 Wil\n\n21) Trydnt: Sacrifice Y3 B22\nMove G1 B2 G3\nMove G2 B2 G3\nMove G1 B22 G3\nCatastrophe G3 G\n\n22) wil: Build B1 Wil\n\n23) Trydnt: Sacrifice G3 B22\nBuild Y1 B22\nBuild G1 B2\nBuild G1 B2\n\n24) wil: Build B1 Wil\n\n25) Trydnt: Trade G2 Y2 B2\n\n26) wil: Discover B1 Wil Y3 Y3\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 B22\nBuild G2 B2\nBuild G2 Trydnt\n\n28) wil: Discover B1 Wil Y3 Why3\n\n29) Trydnt: Build G3 Trydnt\n\n30) wil: Build B1 Wil\n\n31) Trydnt: Sacrifice Y2 B22\nDiscover G1 B2 B3 B3\nDiscover G1 B2 R3 R3\n\n32) wil: Trade B3 G3 Wil\n\n33) Trydnt: Sacrifice Y3 B22\nMove G1 B3 Wil\nMove G1 R3 Wil\nCatastrophe Wil G\nMove Y1 B22 Wil\n\n\twil: lol good game!\r\n\n\nHomeworlds Online (SDG# 33812)\nStarted: 2018.2.27, Ended: 2018.3.20\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Trydnt: Build Y1 Trydnt\n\tts52: Have a good game!\n\tTrydnt: And you also!\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade Y1 G1 Trydnt\n\n6) ts52: Build G2 Ts52\n\n7) Trydnt: Build G2 Trydnt\n\tDraw5PlayAll: If only the system let you...\n\n8) ts52: Discover G2 Ts52 B3 Grover\n\n9) Trydnt: Discover G1 Trydnt Y2 Y2\n\n10) ts52: Trade G2 Y2 Grover\n\n11) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Y2\nBuild Y1 Trydnt\n\n12) ts52: Move G1 Ts52 Grover\n\n13) Trydnt: Discover G2 Y2 Y3 Y3\n\n14) ts52: Build G2 Grover\n\n15) Trydnt: Build G2 Y3\n\n16) ts52: Trade G2 R2 Grover\n\n17) Trydnt: Trade Y1 R1 Trydnt\n\n18) ts52: Move R2 Grover Ts52\n\n19) Trydnt: Build Y1 Trydnt\n\n20) ts52: Build Y1 Grover\n\n21) Trydnt: Discover Y1 Trydnt Y2 Y22\n\n22) ts52: Discover Y2 Grover G2 Robin\n\n23) Trydnt: Build Y3 Trydnt\n\n24) ts52: Build G3 Grover\n\n25) Trydnt: Build G3 Y2\n\n26) ts52: Trade G3 R3 Grover\n\n27) Trydnt: Build R1 Trydnt\n\n28) ts52: Build G3 Grover\n\n29) Trydnt: Trade R1 B1 Trydnt\n\n30) ts52: Trade G3 B3 Grover\n\n31) Trydnt: Build G3 Y3\n\n32) ts52: Move B3 Grover Robin\n\n33) Trydnt: Move B1 Trydnt Y2\n\n34) ts52: Build B1 Robin\n\n35) Trydnt: Build R1 Trydnt\n\n36) ts52: Trade B1 R1 Robin\n\n37) Trydnt: Move R1 Trydnt Y2\n\n38) ts52: Build B1 Robin\n\n39) Trydnt: Build R2 Y2\n\n40) ts52: Build B1 Robin\n\n41) Trydnt: Sacrifice Y3 Trydnt\nMove G2 Y3 Robin\nMove G2 Y3 Robin\nMove G3 Y3 Robin\nCatastrophe Robin G\n\n42) ts52: Build G2 Ts52\n\n43) Trydnt: Discover Y1 Y22 G3 G3\n\n44) ts52: Build G2 Grover\n\n45) Trydnt: Build Y2 Trydnt\n\n46) ts52: Trade G1 B1 Grover\n\n47) Trydnt: Move R2 Y2 G3\n\n48) ts52: Discover B1 Grover G2 Robin\n\n49) Trydnt: Move R2 G3 Robin\n\n50) ts52: Trade G2 R2 Ts52\n\n51) Trydnt: Move Y3 Trydnt Robin\n\n52) ts52: Discover R3 Grover G2 Oscar\n\n53) Trydnt: Sacrifice G3 Y2\nBuild Y2 Robin\nBuild Y3 Trydnt\nBuild Y3 Trydnt\n\n54) ts52: Move Y1 Grover Oscar\n\n55) Trydnt: Discover Y3 Trydnt B2 B2\n\n56) ts52: Move R2 Ts52 G3\n\n57) Trydnt: Move Y3 Robin G3\n\n58) ts52: Attack Y1 G3\n\n59) Trydnt: Sacrifice R2 Robin\nAttack R2 G3\nAttack Y1 G3\n\n60) ts52: Build R1 Ts52\n\n61) Trydnt: Move Y3 B2 Grover\n\n62) ts52: Discover R1 Ts52 G3 Kermit\n\n63) Trydnt: Build G1 Y2\n\n64) ts52: Sacrifice G2 Grover\nBuild G2 Ts52\nBuild B1 Robin\n\n65) Trydnt: Sacrifice R2 G3\nAttack B1 Robin\nAttack B1 Robin\n\n66) ts52: Build R2 Ts52\n\n67) Trydnt: Build B2 Y2\n\n68) ts52: Discover R2 Ts52 B3 Gonzo\n\n69) Trydnt: Move B1 Robin G3\n\n70) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\n\n71) Trydnt: Build R3 Y2\n\n72) ts52: Move R3 Ts52 Gonzo\n\n73) Trydnt: Build B2 G3\n\n74) ts52: Move Y1 Oscar Gonzo\n\n75) Trydnt: Move B1 Robin G3\n\tts52: I&#39;m not sure there&#39;s much left for me to do. But I&#39;d like to play it out anyway.\n\n76) ts52: Move G2 Ts52 Gonzo\n\n77) Trydnt: Move Y2 Robin Grover\n\tTrydnt: eh you never know. I played against Mr Looney recently and made several silly mistakes that resulted in the universe changing hands on more than one occasion. the game actually ended up being like 4 hours long\n\tTrydnt: a live game that is\n\tts52: Wow. 4 hours? That&#39;s a long game.\n\n78) ts52: Build G2 Gonzo\n\tTrydnt: Yeah haha might be a record\n\n79) Trydnt: Sacrifice Y3 Grover\nDiscover G1 Y2 Y3 Y3\nMove Y2 Grover Ts52\nMove Y1 G3 Ts52\n\n80) ts52: Move R2 Ts52 Y3\n\n81) Trydnt: Sacrifice Y3 G3\nMove B1 G3 Ts52\nMove B1 G3 Ts52\nMove B2 G3 Ts52\nCatastrophe Ts52 B\n\n82) ts52: Build Y3 Gonzo\n\n83) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 Trydnt Y2\nMove Y2 Y2 Ts52\nPass\nCatastrophe Ts52 Y\n\n\tts52: Good game! Thanks.\n\tTrydnt: curious, did you see my move ahead of time? I used the g1 as a red herring\n\tts52: Yeah, IIRC you had me dead to rights for a few turns.\n\nHomeworlds Online (SDG# 33813)\nVariants: &quot;Hard time&quot;\nStarted: 2018.2.27, Ended: 2018.3.16\nParticipants: Trydnt (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 B2 G3\n\n2) Trydnt: Homeworld B3 G1 Y3\n\n3) Felix: Build G1 Felix\n\n4) Trydnt: Build Y1 Trydnt\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Trydnt: Trade Y1 R1 Trydnt\n\n7) Felix: Build G1 Felix\n\n8) Trydnt: Build R1 Trydnt\n\n9) Felix: Trade G1 R1 Felix\n\n10) Trydnt: Build R2 Trydnt\n\n11) Felix: Build R2 Felix\n\n12) Trydnt: Discover R1 Trydnt G2 G2\n\n13) Felix: Discover R1 Felix G1 Out\n\n14) Trydnt: Trade R1 B1 Trydnt\n\n15) Felix: Build G1 Felix\n\n16) Trydnt: Move B1 Trydnt G2\n\n17) Felix: Build G2 Felix\n\n18) Trydnt: Build B1 G2\n\n19) Felix: Discover G2 Felix B1 Rim\n\n20) Trydnt: Build Y1 Trydnt\n\n21) Felix: Sacrifice G3 Felix\nBuild G2 Rim\nBuild G3 Rim\nBuild G3 Felix\n\n22) Trydnt: Sacrifice Y1 Trydnt\nDiscover B1 G2 G3 G3\n\n23) Felix: Trade G3 Y3 Felix\n\n24) Trydnt: Build B2 G3\n\n25) Felix: Trade G3 Y3 Rim\n\n26) Trydnt: Build B2 G3\n\n27) Felix: Build G3 Felix\n\n28) Trydnt: Build B3 G2\n\n29) Felix: Move Y3 Rim G3\n\n30) Trydnt: Build B3 G2\n\n31) Felix: Sacrifice R2 Felix\nAttack B2 G3\nAttack B2 G3\n\n32) Trydnt: Sacrifice Y3 Trydnt\nMove B1 G2 G3\nMove B3 G2 Rim\nMove B3 G2 Trydnt\nCatastrophe G3 B\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild Y1 G3\n\n34) Trydnt: Sacrifice R2 Trydnt\nAttack G2 Rim\nAttack G2 Rim\n\n35) Felix: Discover G3 Felix B1 Bazoik\n\n36) Trydnt: Trade B3 Y3 Trydnt\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Bazoik\nBuild Y1 G3\nBuild Y2 Felix\n\n38) Trydnt: Build Y2 Trydnt\n\n39) Felix: Sacrifice Y2 Felix\nMove Y3 G3 G2\nMove Y3 G2 Trydnt\n\n40) Trydnt: Sacrifice Y2 Trydnt\nMove B3 Rim G2\nMove B3 G2 Trydnt\n\n41) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild Y2 Trydnt\nBuild Y2 Trydnt\nCatastrophe Trydnt Yellow\n\n42) Trydnt: Build B1 Trydnt\n\n43) Felix: Trade G3 B3 Bazoik\n\n44) Trydnt: Trade B3 Y3 Trydnt\n\n45) Felix: Build G3 Bazoik\n\n46) Trydnt: Build Y2 Trydnt\n\n47) Felix: Move Y1 G3 Bazoik\n\n48) Trydnt: Move Y2 Trydnt G2\n\n49) Felix: Move B3 Bazoik G3\n\n50) Trydnt: Build Y2 G2\n\n51) Felix: Sacrifice G3 Bazoik\nBuild Y2 Bazoik\nBuild Y3 G3\nBuild G3 Bazoik\n\n52) Trydnt: Trade B1 R1 Trydnt\n\n53) Felix: Move Y1 Bazoik G2\n\n54) Trydnt: Attack Y1 G2\n\n55) Felix: Move Y1 G3 G2\nCatastrophe G2 Yellow\n\n56) Trydnt: Trade G2 Y2 Rim\n\n57) Felix: Sacrifice G3 Bazoik\nBuild G2 Felix\nBuild G3 Bazoik\nBuild Y1 Bazoik\n\n58) Trydnt: Build R2 G2\n\n59) Felix: Build R2 Out\n\n60) Trydnt: Build Y1 Rim\n\n61) Felix: Move Y1 Felix Out\n\n62) Trydnt: Build Y2 Trydnt\n\n63) Felix: Move R2 Out G3\n\n64) Trydnt: Sacrifice Y1 Rim\nDiscover R2 G2 Y1 Y1\n\n65) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild R2 G3\nBuild R3 Out\n\n66) Trydnt: Build R3 G2\n\n67) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild B1 G3\nBuild B2 G3\n\n68) Trydnt: Move Y2 Rim G2\n\n69) Felix: Sacrifice Y2 Bazoik\nDiscover B3 G3 Y2 Sun\nMove R2 G3 Sun\n\n70) Trydnt: Move R1 G2 Y1\n\n71) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild B2 Sun\nBuild B3 Sun\n\n\tFelix: Good game! Thanks for playing.\n\tTrydnt: Well played. Until next time :)\n\nHomeworlds Online (SDG# 33779)\nVariants: &quot;Unrated&quot;\nStarted: 2018.2.28, Ended: 2018.2.28\nParticipants: Trydnt (S), kalleucastro (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 33829)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.1, Ended: 2018.4.21\nParticipants: Trydnt (S), Laurie_Menke (N)\nWinner: Trydnt\n\n1) Laurie_Menke: Homeworld Y3 R1 G3 *\n\tLaurie_Menke: Hi Trydnt! Thanks for the challenge... have a great game!  :)\n\n2) Trydnt: Homeworld B3 G1 R3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tTrydnt: Never could resist a good challenge. Best of luck!\n\n4) Trydnt: Build R1 Trydnt\n\n5) Laurie_Menke: Discover G1 Laurie_menke B2 Presto\n\n6) Trydnt: Trade R1 Y1 Trydnt\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) Trydnt: Build R1 Trydnt\n\n9) Laurie_Menke: Build G2 Presto\n\n10) Trydnt: Move R3 Trydnt Presto\n\n11) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Presto\nBuild G2 Presto\nBuild G3 Laurie_menke\nCatastrophe Presto G\n\tLaurie_Menke: So how long have you been playing Homeworlds?\n\tTrydnt: wil and I started playing sometime in August I believe. he got me on SDG in novemberish. so Andy didn&#39;t put you up to this? haha\n\n12) Trydnt: Build Y1 Trydnt\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: No... I don&#39;t even know who you are... I guess I know you in real life?\n\tLaurie_Menke: OHHHH!!!!  SHOOOTTTTT!!!  I just realized this was tiny universe!!!!  OK... No matter... I&#39;ll be OK... I think...\n\n14) Trydnt: Move Y1 Trydnt Presto\n\n15) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n16) Trydnt: Build Y1 Trydnt\n\tTrydnt: haha yeah I don&#39;t know if I even did that on purpose. too many games going at same time. I believe we might have met at one of wil&#39;s games nights. I&#39;m the one who used to live over at Whytestone. If you were at Constellation I was there too and hung out with the pyramid people for a lot of the time\n\n17) Laurie_Menke: Discover G1 Laurie_menke Y2 Another\n\tLaurie_Menke: Cool!  What&#39;s your name?  :)  I totally loved that telephone system at Constellation! (And yeah, I can&#39;t handle more than one Homeworlds game at a time... LOL!)\n\n18) Trydnt: Build Y2 Trydnt\n\tTrydnt: Alex. From England\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: :)\n\n20) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt Y2 Y2\nDiscover Y1 Presto G3 G3\n\n21) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Another\nBuild G2 Yellow\nBuild G3 Laurie_menke\n\tLaurie_Menke: It was good seeing you at game night Thursday! :)\n\n22) Trydnt: Build Y3 Trydnt\n\tTrydnt: good seeing you too! my game with Andy ended up lasting for like 4 hours! haha intense\n\n23) Laurie_Menke: Discover G1 Another Y3 Bigyellow\n\tLaurie_Menke: Wow! That&#39;s really good!  That means you have a shot of beating him soon!  :D\n\n24) Trydnt: Sacrifice Y1 Y2\nDiscover R3 Presto G3 G33\n\n25) Laurie_Menke: Discover G2 Yellow B3 Blue\n\n26) Trydnt: Build R1 G33\n\n27) Laurie_Menke: Trade G2 Y2 Blue\n\n28) Trydnt: Build Y1 G3\n\n29) Laurie_Menke: Sacrifice G2 Another\nBuild G2 Yellow\nBuild G2 Yellow\n\n30) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 G3 Yellow\nMove Y1 G3 Yellow\nMove Y1 Trydnt Yellow\nCatastrophe Yellow Y\n\n31) Laurie_Menke: Discover Y2 Blue B2 Change\n\n32) Trydnt: Build R2 Trydnt\n\n33) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y1 Change\nBuild Y1 Change\n\n34) Trydnt: Trade R2 Y2 Trydnt\n\n35) Laurie_Menke: Trade Y2 R2 Change\n\n36) Trydnt: Build Y1 Trydnt\n\tLaurie_Menke: Well, that was exciting!  LOL!\n\tTrydnt: twas interesting. I thought about it then didn&#39;t do it... then did it anyway haha\n\n37) Laurie_Menke: Move Y1 Change Trydnt\n\n38) Trydnt: Sacrifice Y2 Trydnt\nMove R3 G33 Change\nMove R3 Change Trydnt\n\n39) Laurie_Menke: Build Y2 Trydnt\n\n40) Trydnt: Discover Y1 Trydnt G2 G2\n\n41) Laurie_Menke: Trade Y2 R2 Trydnt\n\n42) Trydnt: Sacrifice R1 Trydnt\nAttack R2 Trydnt\n\n43) Laurie_Menke: Trade Y1 R1 Trydnt\n\n44) Trydnt: Trade R3 Y3 Trydnt\n\n45) Laurie_Menke: Build R2 Trydnt\n\n46) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Trydnt\nAttack R1 Trydnt\n\n47) Laurie_Menke: Build G1 Laurie_menke\n\n48) Trydnt: Move R2 Trydnt G2\n\n49) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Bigyellow\nBuild G3 Laurie_menke\n\n50) Trydnt: Discover R2 G2 G3 G3\n\n51) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild R2 Change\nBuild Y1 Change\n\n52) Trydnt: Build R3 G33\n\tTrydnt: this has been hilariously fun\n\tLaurie_Menke: Glad you&#39;re enjoying!\n\n53) Laurie_Menke: Sacrifice G2 Bigyellow\nBuild G2 Bigyellow\nBuild Y2 Change\n\tTrydnt: wriggly maneuvers like that are always interesting\n\n54) Trydnt: Build Y2 G2\n\n55) Laurie_Menke: Move R2 Change Bigyellow\n\tLaurie_Menke: Tis true!  :)\n\n56) Trydnt: Build R3 G3\n\n57) Laurie_Menke: Build R3 Bigyellow\n\n58) Trydnt: Build Y2 Trydnt\n\n59) Laurie_Menke: Sacrifice Y2 Change\nMove Y1 Change Trydnt\nMove Y1 Change Trydnt\nCatastrophe Trydnt Y\n\n60) Trydnt: Sacrifice Y2 G2\nMove R3 G33 G2\nMove R3 G3 Change\n\n61) Laurie_Menke: Discover R2 Bigyellow Y2 Mediumyellow\n\n62) Trydnt: Sacrifice Y1 G2\nMove R3 Change Trydnt\n\n63) Laurie_Menke: Discover G2 Laurie_menke B2 Blue\n\n64) Trydnt: Trade R1 Y1 Trydnt\n\n65) Laurie_Menke: Trade G2 Y2 Blue\n\n66) Trydnt: Build Y1 Trydnt\n\n67) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Bigyellow\nBuild G3 Laurie_menke\nBuild Y1 Blue\n\n68) Trydnt: Trade Y1 B1 Trydnt\n\n69) Laurie_Menke: Sacrifice G2 Bigyellow\nBuild G2 Bigyellow\nBuild R1 Mediumyellow\n\n70) Trydnt: Move B1 Trydnt G2\n\n71) Laurie_Menke: Move G2 Bigyellow Change\n\n72) Trydnt: Build Y1 Trydnt\n\n73) Laurie_Menke: Move R1 Mediumyellow Trydnt\n\n74) Trydnt: Move Y1 Trydnt G2\n\n75) Laurie_Menke: Move R2 Mediumyellow Trydnt\n\n76) Trydnt: Build Y2 G2\n\n77) Laurie_Menke: Move Y1 Blue Trydnt\n\n78) Trydnt: Attack R2 Trydnt\n\n79) Laurie_Menke: Sacrifice G2 Change\nBuild Y2 Trydnt\nBuild Y3 Trydnt\nCatastrophe Trydnt Yellow\n\n80) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nPass\n\n81) Laurie_Menke: Move R3 Bigyellow Blue\n\n82) Trydnt: Trade R3 Y3 Trydnt\n\n83) Laurie_Menke: Move G1 Bigyellow Blue\n\n84) Trydnt: Build B1 G2\n\n85) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Blue\nBuild G3 Laurie_menke\nBuild Y1 Blue\n\n86) Trydnt: Sacrifice Y2 G2\nMove R3 G2 Bigyellow\nMove B1 G2 G3\n\n87) Laurie_Menke: Move G2 Bigyellow Blue\n\n88) Trydnt: Build B1 G3\n\tTrydnt: shoulda gone with the first move\n\tLaurie_Menke: Nope. Then you would have just moved your r3 in and we&#39;d be back where we started.  ;)\n\n89) Laurie_Menke: Sacrifice Y2 Blue\nMove G1 Blue Trydnt\nMove G2 Blue Trydnt\n\n90) Trydnt: Build B2 G3\n\tTrydnt: you could have won on that move\n\tLaurie_Menke: Oh, you&#39;re right... I should have sacrificed my g3!  Well, I&#39;ll win soon anyway.  ;)\n\n91) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild G1 Trydnt\nCatastrophe Trydnt Green\n\n92) Trydnt: Build B3 G2\n\n93) Laurie_Menke: Build G1 Laurie_menke\n\n94) Trydnt: Build B3 G2\n\n95) Laurie_Menke: Sacrifice G2 Blue\nBuild R2 Blue\nBuild R3 Change\n\n96) Trydnt: Sacrifice B2 G3\nTrade B1 G1 G2\nTrade B1 G1 G3\n\n97) Laurie_Menke: Trade R2 B2 Blue\n\n98) Trydnt: Sacrifice Y3 Trydnt\nMove G1 G2 Laurie_menke\nMove G1 G3 G2\nMove G1 G2 Laurie_menke\nCatastrophe Laurie_menke G\n\n\tTrydnt: good game\n\tLaurie_Menke: Oh, man... I can&#39;t believe I did that! I completely forgot about your y3 at your homeworld. Wow. Well played! Congratulations!  :)\n\tTrydnt: yeah I didn&#39;t think you&#39;d fall for it. It was the best move I could see that allowed me to give up blues that you couldn&#39;t take because it gave me that shot\n\tLaurie_Menke: ::sigh:: You are a worthy opponent!  :)\n\tTrydnt: as are you. if you had seen that I think I might have been toast\n\nHomeworlds Online (SDG# 33826)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.1, Ended: 2018.3.4\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 G1 R3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) Trydnt: Build R1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade R1 G1 Trydnt\n\twil: slow at work last couple days?\r\n\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build R1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) wil: Trade Y1 B1 Wil\n\n11) Trydnt: Build Y1 Trydnt\n\n12) wil: Build B1 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: Discover B1 Wil Y3 Y3\n\n15) Trydnt: Discover Y1 Trydnt G2 G2\n\n16) wil: Build B2 Wil\n\twil: I am evidently not the best teacher...but persistence has paid off and I think you&#39;ve finally got it!!\n\n17) Trydnt: Build Y2 G2\n\n18) wil: Discover Y1 Wil G3 G3\n\tTrydnt: Haha you were a great teacher. I think that it&#39;s just that I&#39;m playing so much more now that I play online. My improvement has been pretty exponential. The last time you beat me was in January. Perhaps I&#39;m ready to challenge Andy again! When are you having another games night at your place?\n\n19) Trydnt: Trade Y2 B2 Trydnt\n\twil: tonight, it is every thurs...  \n\n20) wil: Discover B1 Wil Y3 Why3\n\n21) Trydnt: Move B2 Trydnt G2\n\n22) wil: Build G1 Wil\n\n23) Trydnt: Build G2 Trydnt\n\n24) wil: Build G2 Wil\n\n25) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 Trydnt\nBuild Y3 Trydnt\n\n26) wil: Sacrifice G2 Wil\nBuild B2 Why3\nBuild B3 Y3\n\n27) Trydnt: Build B3 G2\n\n28) wil: Sacrifice B2 Why3\nTrade B3 G3 Y3\nTrade B2 R2 Wil\n\n29) Trydnt: Build R1 Trydnt\n\n30) wil: Discover B1 Y3 B2 B2\n\n31) Trydnt: Move B2 G2 G3\n\n32) wil: Sacrifice G3 Y3\nBuild B2 B2\nBuild B3 Why3\nBuild Y3 G3\n\n33) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G3\n\n34) wil: Discover Y3 G3 G2 R2\n\n35) Trydnt: Sacrifice Y2 Trydnt\nMove Y3 Trydnt R2\nMove Y3 R2 G3\n\n36) wil: Trade B2 Y2 B2\n\twil: lol...I just fired off my planned move without looking what you had done....oops\n\n37) Trydnt: Build B2 G3\n\n38) wil: Build R1 Wil\n\n39) Trydnt: Build R1 Trydnt\n\n40) wil: Move R2 Wil Why3\n\n41) Trydnt: Move R1 Trydnt G2\n\n42) wil: Move B1 Why3 R2\n\n43) Trydnt: Discover Y1 G2 G3 G33\n\n44) wil: Discover B3 Why3 G2 Y2\n\n45) Trydnt: Move Y3 G3 B2\n\n46) wil: Sacrifice Y2 B2\nMove Y3 R2 Trydnt\nMove B3 Y2 Trydnt\n\n47) Trydnt: Sacrifice Y3 B2\nMove Y2 G2 Trydnt\nMove Y1 G33 G2\nMove Y1 G2 Trydnt\nCatastrophe Trydnt Y\n\n48) wil: Sacrifice R2 Why3\nAttack R3 Trydnt\nAttack G1 Trydnt\n\n\nHomeworlds Online (SDG# 33811)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.4, Ended: 2018.3.9\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: Build B2 Wil\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) wil: Discover B2 Wil G2 G2\n\n11) Trydnt: Discover B2 Trydnt G3 G3\n\n12) wil: Trade B1 R1 Wil\n\n13) Trydnt: Build B1 G3\n\n14) wil: Build R1 Wil\n\n15) Trydnt: Build Y1 Trydnt\n\n16) wil: Move R1 Wil G2\n\n17) Trydnt: Trade B2 R2 G3\n\n18) wil: Build R2 G2\n\n19) Trydnt: Build Y1 Trydnt\n\n20) wil: Trade R2 Y2 G2\n\n21) Trydnt: Build R2 G3\n\n22) wil: Build Y2 G2\n\n23) Trydnt: Move Y1 Trydnt G3\n\n24) wil: Discover B2 G2 Y3 Y3\n\n25) Trydnt: Discover R2 G3 Y2 Y2\n\n26) wil: Move Y2 G2 G3\n\n27) Trydnt: Build Y3 G3\n\n28) wil: Move Y2 G2 G3\nCatastrophe G3 Y\n\n29) Trydnt: Move Y1 Trydnt G3\n\n30) wil: Build R2 G2\n\n31) Trydnt: Build R3 G3\n\n32) wil: Build R3 Wil\n\n33) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Y2\nBuild Y1 G3\nBuild Y2 Trydnt\n\n34) wil: Trade R3 Y3 Wil\n\n35) Trydnt: Move R3 G3 Trydnt\n\n36) wil: Build R3 Wil\n\n37) Trydnt: Trade R3 G3 Trydnt\n\n38) wil: Trade R3 B3 Wil\n\n39) Trydnt: Build R3 G3\n\n40) wil: Build R3 Wil\n\n41) Trydnt: Trade R3 B3 G3\n\n42) wil: Sacrifice Y3 Wil\nMove R1 G2 Wil\nMove R1 Wil Y2\nMove R1 Wil Y2\nCatastrophe Y2 R\n\n43) Trydnt: Build Y2 G3\n\n44) wil: Trade R3 Y3 Wil\n\n45) Trydnt: Build Y2 Trydnt\n\n46) wil: Move Y3 Wil G2\n\n47) Trydnt: Move Y2 G3 G2\n\n48) wil: Attack Y2 G2\n\n49) Trydnt: Sacrifice Y2 Trydnt\nMove B3 G3 G2\nMove B3 G2 Wil\n\n50) wil: Sacrifice R2 G2\nAttack B3 Wil\nPass\n\n51) Trydnt: Sacrifice Y2 Trydnt\nMove B1 G3 G2\nMove B1 G2 Wil\nCatastrophe Wil B\n\n52) wil: Trade B2 R2 Y3\n\n53) Trydnt: Build Y2 Trydnt\n\n54) wil: Build G1 Wil\n\n55) Trydnt: Discover Y1 G3 Y2 Y2\n\n56) wil: Move Y3 G2 G3\n\n57) Trydnt: Discover Y1 G3 G2 G22\n\twil: ya got these...\n\n58) wil: Discover G1 Wil B2 B2\n\n59) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 G22 Wil\nMove Y1 Y2 Wil\n\n60) wil: Sacrifice Y2 G2\nMove Y3 G3 B2\nMove Y3 B2 Wil\nCatastrophe Wil Y\n\n\twil: good game\n\nHomeworlds Online (SDG# 33828)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.4, Ended: 2018.3.5\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\twil: this was an oops...clicked on the wrong line...  I am will cancel... unless you have a desire to start another one...\n\tFelix: I&#39;m always up for a game! \n\twil: Well the ladder makes more sense!\n\nHomeworlds Online (SDG# 33840)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.4, Ended: 2018.3.9\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\twil: How is it we were in only one game?\n\n2) Trydnt: Homeworld B3 G1 R3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build R1 Trydnt\n\n5) wil: Build G1 Wil\n\n6) Trydnt: Trade R1 Y1 Trydnt\n\n7) wil: Discover G1 Wil B3 B3\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: Build G2 B3\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: Trade G2 Y2 B3\n\n12) Trydnt: Discover Y2 Trydnt B2 B2\n\n13) wil: Build G2 Wil\n\n14) Trydnt: Discover Y2 B2 G3 G3\n\n15) wil: Discover G2 Wil Y3 Y3\n\n16) Trydnt: Build R1 Trydnt\n\n17) wil: Build G2 B3\n\n18) Trydnt: Discover Y1 Trydnt B2 B2\n\n19) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 B3\nBuild G3 Wil\n\n20) Trydnt: Sacrifice Y2 G3\nMove R3 Trydnt B2\nMove R3 B2 B3\n\n21) wil: Sacrifice G3 B3\nBuild G3 Wil\nBuild G3 Y3\nBuild Y2 B3\n\n22) Trydnt: Attack G2 B3\n\n23) wil: Trade G3 R3 Wil\n\n24) Trydnt: Sacrifice R3 B3\nAttack Y2 B3\nAttack Y2 B3\nAttack G1 B3\n\n25) wil: Discover G3 Wil Y3 Ynot\n\n26) Trydnt: Sacrifice G2 B3\nBuild Y2 B2\nBuild Y3 B2\n\n27) wil: Sacrifice G3 Y3\nBuild G2 Y3\nBuild G3 Ynot\nBuild G3 Wil\n\n28) Trydnt: Build R1 Trydnt\n\n29) wil: Build R1 Wil\n\n30) Trydnt: Move R1 Trydnt B2\n\n31) wil: Move R3 Wil B3\n\n32) Trydnt: Sacrifice Y3 B2\nMove Y2 B3 Wil\nMove Y2 B3 Wil\nMove G1 B3 B2\n\n33) wil: Trade R3 Y3 B3\n\n34) Trydnt: Build R2 Trydnt\n\n35) wil: Attack Y2 Wil\n\n36) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Wil\nAttack Y2 Wil\n\n37) wil: Move G1 Wil B3\n\n38) Trydnt: Sacrifice Y2 B2\nMove G1 B2 Y3\nCatastrophe Y3 G\nDiscover Y1 B2 B3 B33\n\n39) wil: Sacrifice G3 Ynot\nBuild G1 Ynot\nBuild G2 B3\nBuild G2 B3\n\n40) Trydnt: Trade Y2 G2 Wil\n\n41) wil: Trade Y3 R3 B3\n\n42) Trydnt: Sacrifice G2 Wil\nBuild Y2 Wil\nBuild Y2 B33\n\n43) wil: Move G3 Ynot B2\n\n44) Trydnt: Build Y3 Trydnt\n\n45) wil: Trade G3 Y3 B2\n\n46) Trydnt: Build R2 Trydnt\n\n47) wil: Build G2 Ynot\n\n48) Trydnt: Trade R2 B2 Trydnt\n\twil: this is so wierd\n\n49) wil: Build G3 Wil\n\n50) Trydnt: Build B1 Trydnt\n\tTrydnt: You totally thought you had me there\n\n51) wil: Move G3 Wil B33\n\twil: I&#39;ve got so many dang immigrants at home I have not been able to keep the forces moving in other systems\n\n52) Trydnt: Sacrifice Y2 B33\nMove Y1 B33 Wil\nDiscover B1 Trydnt Y2 Y2\n\n53) wil: Build G3 Wil\nCatastrophe Wil Y\n\n54) Trydnt: Build R2 Trydnt\n\n55) wil: Sacrifice Y3 B2\nMove G3 B33 Wil\nMove G3 Wil Trydnt\nMove G3 Wil Trydnt\n\n56) Trydnt: Sacrifice R2 Trydnt\nAttack G3 Trydnt\nAttack G3 Trydnt\n\twil: both of these games are weird.\n\n57) wil: Move G2 Ynot B2\n\n58) Trydnt: Trade R1 B1 Wil\n\n59) wil: Trade G3 Y3 Wil\n\n60) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Y2 Ynot\nMove B1 Ynot Wil\nMove B2 Trydnt Wil\nCatastrophe Wil B\n\n\nHomeworlds Online (SDG# 33693)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.5, Ended: 2018.3.28\nParticipants: deanthebean (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) deanthebean: Homeworld G1 B2 R3\n\n3) Felix: Build G1 Felix\n\n4) deanthebean: Build R1 Deanthebean\n\tdeanthebean: Sorry. I&#39;m confused about the syntax here. I want to build a new ship. What do I need to type?\n\n5) Felix: Build G1 Felix\n\tFelix: Looks like you figured it out! But all the commands are listed at the top of the page. Basically just &quot;build r1 [name of system]&quot;. YOu can also just use the initial &quot;b&quot; as shorthand instead of the word build.\n\n6) deanthebean: Build R1 Deanthebean\n\n7) Felix: Trade G1 R1 Felix\n\tdeanthebean: Thanks.\n\n8) deanthebean: Trade R1 Y1 Deanthebean\n\n9) Felix: Trade G1 Y1 Felix\n\n10) deanthebean: Discover R1 Deanthebean G3 Dtb2\n\n11) Felix: Build G1 Felix\n\n12) deanthebean: Build R1 Dtb2\n\n13) Felix: Build R2 Felix\n\n14) deanthebean: Build R2 Dtb2\n\n15) Felix: Discover R2 Felix Y1 Out\n\n16) deanthebean: Build R3 Deanthebean\n\n17) Felix: Build R3 Felix\n\n18) deanthebean: Move Y1 Deanthebean Dtb2\n\n19) Felix: Move R2 Out Dtb2\nCatastrophe Dtb2 Red\n\n20) deanthebean: Trade R3 Y3 Deanthebean\n\n21) Felix: Trade R1 B1 Felix\n\n22) deanthebean: Build R1 Deanthebean\n\n23) Felix: Build B1 Felix\n\n24) deanthebean: Build R1 Deanthebean\n\n25) Felix: D B1 Felix G1 Out\n\n26) deanthebean: Move R3 Deanthebean Dtb2\n\n27) Felix: M R3 Felix Out\n\n28) deanthebean: Build Y1 Deanthebean\n\n29) Felix: Build Y2 Felix\n\n30) deanthebean: Build Y2 Dtb2\n\n31) Felix: Move Y1 Felix Out\n\n32) deanthebean: Trade R1 B1 Deanthebean\n\n33) Felix: Build B2 Out\n\n34) deanthebean: Move B1 Deanthebean Dtb2\n\n35) Felix: Discover B2 Out G3 Crumbs\n\n36) deanthebean: Trade Y3 R3 Deanthebean\n\n37) Felix: Build G2 Felix\n\n38) deanthebean: Build B2 Dtb2\n\n39) Felix: Sacrifice G2 Felix\nBuild B3 Crumbs\nBuild B3 Out\n\n40) deanthebean: Discover Y1 Dtb2 R1 Newstar\n\n41) Felix: Trade B3 Y3 Crumbs\n\n42) deanthebean: Move R3 Dtb2 Newstar\n\n43) Felix: Build B3 Crumbs\n\n44) deanthebean: Build Y2 Deanthebean\n\n45) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Out\nBuild G2 Felix\n\n46) deanthebean: Trade R3 G3 Deanthebean\n\n47) Felix: Move R3 Out Dtb2\n\n48) deanthebean: Sacrifice Y2 Dtb2\nMove B2 Dtb2 Out\nMove B1 Dtb2 Out\nCatastrophe Out Blue\n\n49) Felix: Build B1 Crumbs\n\n50) deanthebean: Build G2 Deanthebean\n\n51) Felix: Sacrifice Y3 Out\nMove G1 Felix Out\nMove G1 Out Dtb2\nMove G1 Dtb2 Deanthebean\nCatastrophe Deanthebean Green\n\tdeanthebean: I think I understand the rules but the game&#39;s not really clicking in my mind for some reason. \n\tFelix: It takes quite a few games to start to get a handle on the &quot;game within the game&quot; so to speak. understanding the rules is one thing, but it&#39;s very hard to visualize the bigger strategy. One of the things that makes this game so great. Don&#39;t get discouraged, but keep playing, and it will start to click after a while. It took me a good 30 games or so before it started to click for me, and there are still games where I lose all focus!\n\n52) deanthebean: Move R3 Newstar Crumbs\n\n53) Felix: Sacrifice Y3 Felix\nMove B1 Crumbs Deanthebean\nMove B2 Crumbs Deanthebean\nMove B3 Crumbs Deanthebean\nCatastrophe Deanthebean Blue\n\tdeanthebean: Thanks for the words of encouragement. I won&#39;t give up on it just yet. I hope you don&#39;t mind me playing on. It&#39;s obvious you will win but it&#39;s not yet obvious to me how you will do so. \n\tFelix: No problem! Feel free to play me as much as you like. I can take it a bit easier on you next time, too :) But I think you can learn the most about this game by losing!\n\tFelix: And... that is how, haha. Watch out for those double eliminations with the large yellow sacrifices. They can be very dangerous!\n\tdeanthebean: Wow. I did not see that coming! Well played. \n\tFelix: Thanks, Good game! Feel free to play me again if you like.\n\tdeanthebean: Thanks. I decided to find someone with a lower rating to practice against first :O\n\tFelix: Fair enough! The best way to learn though, is to play against better players and learn by losing against them!\n\tdeanthebean: I&#39;m sure you&#39;re right about that. \n\n\nHomeworlds Online (SDG# 33859)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.6, Ended: 2018.3.18\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B2 G3\n\tFelix: This game will suit me better anyway :)\n\n2) wil: Homeworld B3 R1 G3\n\n3) Felix: Build G1 Felix\n\tDraw5PlayAll: I hope Felix wins\n\tFelix: I hope wil wins.\n\n4) wil: Build G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\twil: I hope Felix slaughters me in a new and unique way...  I don&#39;t learn anything from winning.\n\n6) wil: Trade G1 Y1 Wil\n\n7) Felix: Build Y2 Felix\n\twil: I got a local kid addicted to the game...was able to play 2/3 times a week or more, 3/4 games a night!  He moved away.  So if you run into Trydnt on here...he just started at the bottom of the ladder.\n\n8) wil: Build Y2 Wil\n\tFelix: I have already played several games against him, actually!\n\twil: I&#39;ve got to cultivate more new players locally now.  I&#39;ve only one, and he prefers volcano.\n\n9) Felix: Discover Y1 Felix B3 Grin\n\twil: trydnt pulls some interesting moves, that I had not thought of and improved my game some.  I am hoping the next tourney can bring in DL, TTT, Brocolli Commander, Two Short...\n\n10) wil: Discover Y1 Wil G2 G2\n\tFelix: I&#39;d love to get more people involved!\n\n11) Felix: Build G1 Felix\n\n12) wil: Build G1 Wil\n\n13) Felix: Move G1 Felix Grin\n\tDraw5PlayAll: Aw, come on... that ladder is hard ENOUGH already! I got kicked from #1 within a few weeks of getting there!\n\twil: The hardest thing about the ladder is getting thru the dead wood at the bottom.  Who cares about the top...the object is to play the people who are near the top....while I won&#39;t deny I enjoy winning...I like playing...and learning from my losses.\n\n14) wil: Trade G1 R1 Wil\n\tFelix: I wanna be the very best\r\nLike no one ever was\r\nTo catch them is my real test\r\nTo train them is my cause\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: Build Y2 G2\n\n17) Felix: Build Y2 Grin\n\n18) wil: Trade Y2 G2 Wil\n\n19) Felix: Discover Y1 Grin B2 Grontle\n\n20) wil: Discover Y1 G2 B3 B3\n\tFelix: Huh... I missed the latest bracket results, since my first game has been taking so long. I&#39;m surprised mneme was eliminated already!\n\twil: Oh, you ain&#39;t the only one!  third time I played him...first was at Looney Con, then during the round robin he slaughtered me...I thought for sure if I ever got to the end I&#39;d see him there...\n\n21) Felix: Build G1 Grin\n\tFelix: Hmm, well overconfidence rendereth many mistakes, as they say!\n\n22) wil: Trade G3 Y3 Wil\n\n23) Felix: Move G1 Grin Grontle\n\n24) wil: Build G1 Wil\n\n25) Felix: Build G2 Felix\n\n26) wil: Sacrifice G2 Wil\nBuild Y2 B3\nBuild Y3 G2\n\twil: Looks like I&#39;ll be playing one of you soon...  I am really enjoying having the tourney going...  Look forward to the next one with a bigger herd!\n\n27) Felix: Build Y3 Grontle\n\tDraw5PlayAll: How is the tournament going anyway? I think I lost whatever link or document would show the standings\n\twil: we are getting to the wire....  a few more games...another month or two.   \n\tFelix: Yeah, I hope there&#39;s a better turn out for the next one. I also wish there was a way for games to be played in a more live fashion, but oh well.\r\n\r\nDraw5, here&#39;s the spreadsheet with the bracket games: https://docs.google.com/spreadsheets/d/e/2PACX-1vTS8qjWyHSJHPXNsbwf3mBk26NugW7ASTKAfmXhgjIrcCjhaXtM-OYxpCEioJhhC4ZLvmEmfmdKaWPc/pubhtml?gid=0&amp;single=true\n\n28) wil: Move R1 Wil G2\n\n29) Felix: Sacrifice G3 Felix\nBuild G2 Grontle\nBuild G3 Grin\nBuild G3 Felix\n\twil: Looks like two more games will be starting soon! \r\n\n\tFelix: It&#39;s about time, too! Lucky for you, both Babamots and ts52 are speedier players, so you should hopefully get your game before too much longer.\n\n30) wil: Build G3 Wil\n\n31) Felix: Sacrifice Y2 Grin\nMove G1 Grontle Wil\nMove G2 Grontle Wil\nCatastrophe Wil Green\n\n32) wil: Sacrifice Y2 G2\nMove Y1 B3 Grontle\nMove Y2 B3 Grontle\nCatastrophe Grontle Y\n\n33) Felix: Trade G3 Y3 Grin\n\n34) wil: Build R1 G2\n\n35) Felix: Build R2 Felix\n\n36) wil: Move R1 G2 Wil\n\n37) Felix: Move R2 Felix Grin\n\n38) wil: Trade R1 G1 Wil\n\n39) Felix: Build G1 Grin\n\n40) wil: Build Y1 Wil\n\n41) Felix: Discover G1 Grin B2 Guns\n\n42) wil: Trade Y3 G3 Wil\n\n43) Felix: Sacrifice G3 Felix\nBuild G2 Grin\nBuild G3 Guns\nBuild G3 Felix\n\n44) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild Y2 G2\n\n45) Felix: Trade G3 Y3 Guns\n\n46) wil: Discover Y2 G2 G3 G3\n\n47) Felix: Sacrifice G2 Grin\nBuild G2 Guns\nBuild Y2 Grin\n\n48) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G3\nBuild R1 G2\n\n49) Felix: S Y3 Grin\nM G1 Guns Wil\nM G2 Guns Wil\nC Wil Green\nM Y3 Guns Wil\n\n50) wil: Move Y3 G2 Wil\nCatastrophe Wil Y\n\tFelix: Maybe not a new and unique way, but thanks for playing!\n\n\nHomeworlds Online (SDG# 33855)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.6, Ended: 2018.3.12\nParticipants: aren (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 33850)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.6, Ended: 2018.3.6\nParticipants: Trydnt (S), aren (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 33791)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.9, Ended: 2018.8.13\nParticipants: wil (S), rosbi (N)\nWinner: wil\n\n1) rosbi: Homeworld B2 R1 G3\n\n2) wil: Homeworld B3 Y2 G3\n\trosbi: Hi ! I don&#39;t have a lot of spare time these days, but I think I can play at least one move a day. Is that ok for you or will the game be too slow for you ?\n\twil: one move a day is fine..do what you can!  Have fun\n\n3) rosbi: Build G1 Rosbi\n\n4) wil: Build G1 Wil\n\n5) rosbi: Trade G1 Y1 Rosbi\n\n6) wil: Trade G1 R1 Wil\n\n7) rosbi: Build Y1 Rosbi\n\n8) wil: Build R1 Wil\n\n9) rosbi: Build G1 Rosbi\n\n10) wil: Discover R1 Wil B1 B1\n\n11) rosbi: Discover Y1 Rosbi R3 R3\n\n12) wil: Build R2 Wil\n\n13) rosbi: Build Y1 Rosbi\n\n14) wil: Trade R2 Y2 Wil\n\n15) rosbi: Discover Y1 Rosbi B3 B3\n\n16) wil: Discover Y2 Wil G1 G1\n\n17) rosbi: Sacrifice G3 Rosbi\nBuild Y2 R3\nBuild Y3 Rosbi\nBuild Y3 B3\n\n18) wil: Build Y3 G1\n\n19) rosbi: Trade Y3 G3 Rosbi\n\n20) wil: Discover Y2 G1 Y3 Y3\n\n21) rosbi: Trade G1 B1 Rosbi\n\n22) wil: Build R2 Wil\n\n23) rosbi: Trade Y3 R3 B3\n\n24) wil: Build Y3 G1\n\n25) rosbi: Build B1 Rosbi\n\n26) wil: Trade R2 B2 Wil\n\n27) rosbi: Discover B1 Rosbi G3 G3\n\n28) wil: Move B2 Wil G1\n\n29) rosbi: Discover R3 B3 G1 G1&#39;\n\n30) wil: Build R2 Wil\n\n31) rosbi: Build R2 G1&#39;\n\n32) wil: Sacrifice Y3 G1\nMove R1 B1 Wil\nMove R1 Wil G1&#39;\nMove R1 Wil G1&#39;\nCatastrophe G1&#39; R\n\n33) rosbi: Build Y3 Rosbi\n\n34) wil: Build R1 Wil\n\n35) rosbi: Trade B1 R1 G3\n\n36) wil: Move R2 Wil G1\n\n37) rosbi: Build G1 Rosbi\n\n38) wil: Build R2 G1\n\n39) rosbi: Build R2 G3\n\n40) wil: Build R3 Wil\n\n41) rosbi: Sacrifice Y1 B3\nDiscover R1 G3 B1 B1\n\n42) wil: Trade R2 G2 G1\n\n43) rosbi: Move B1 Rosbi G3\n\n44) wil: Move Y3 G1 G3\n\n45) rosbi: Sacrifice Y2 R3\nMove R2 G3 B1\nMove B1 G3 B1\n\n46) wil: Discover R3 Wil B1 Be1\n\n47) rosbi: Move Y3 Rosbi R3\n\n48) wil: Build B2 G1\n\n49) rosbi: Sacrifice Y1 R3\nDiscover B1 B1 G2 G2\n\n50) wil: Build B3 G1\n\n51) rosbi: Build B3 G2\n\n52) wil: Trade B2 Y2 G1\n\n53) rosbi: Build Y1 Rosbi\n\n54) wil: Build R2 Wil\n\n55) rosbi: Discover Y1 Rosbi R3 R3&#39;\n\n56) wil: Trade R2 B2 Wil\n\n57) rosbi: Move G1 Rosbi R3\n\n58) wil: M G2 G1 G3\n\n59) rosbi: Build Y1 R3\n\n60) wil: S G2 G3\nB G1 Wil\nB R2 Be1\n\n61) rosbi: Build G2 R3\n\n62) wil: M B2 G1 G3\n\n63) rosbi: Move G1 R3 B1\n\n64) wil: M R2 G1 R3&#39;\n\n65) rosbi: Move Y1 R3&#39; B1\n\n66) wil: M B3 G1 R3\n\n67) rosbi: Attack B3 R3\n\n68) wil: M G1 Wil Be1\n\n69) rosbi: Build G2 Rosbi\n\n70) wil: M Y2 G1 R3\n\n71) rosbi: Attack Y2 R3\n\n72) wil: B G1 Be1\n\n73) rosbi: Move Y3 R3 G2\n\n74) wil: Move R1 Wil B1\n\n75) rosbi: Attack R1 B1\n\n76) wil: M Y3 G3 B1\n\n77) rosbi: Sacrifice Y2 R3\nMove R2 B1 G2\nMove R1 B1 G2\n\n78) wil: S R2 Be1\nA Y1 B1\nA R1 B1\n\n79) rosbi: Build Y2 R3\n\n80) wil: Build R2 Be1\n\n81) rosbi: Sacrifice G1 B1\nBuild G1 R3\n\n82) wil: M Y1 B1 G3\n\n83) rosbi: Sacrifice Y1 R3\nDiscover R2 G2 Y1 Y1\n\n84) wil: M Y1 G3 Be1\n\n85) rosbi: Move B3 G2 Y1\n\n86) wil: M R2 Be1 Wil\n\n87) rosbi: Sacrifice Y3 G2\nMove B1 G2 Y1\nMove B1 Y1 Wil\nMove B3 Y1 Wil\nCatastrophe Wil Blue\n\n88) wil: B Y3 Be1\n\n89) rosbi: Move G1 R3 Y1\n\n90) wil: Move R3 Be1 G3\n\n91) rosbi: Move B3 R3 Y1\n\n92) wil: B B1 G3\n\n93) rosbi: Move B3 Y1 R3&#39;\n\n94) wil: Sacrifice Y3 B1\nMove R2 R3&#39; Rosbi\nMove R3 G3 Rosbi\nMove R1 B1 Y3\n\n95) rosbi: Sacrifice R1 G2\nAttack R3 Rosbi\n\n96) wil: S G1 Be1\nB R1 Rosbi\nC Rosbi R\n\n97) rosbi: Build Y3 Rosbi\n\n98) wil: Trade Y1 B1 Be1\n\n99) rosbi: Sacrifice Y3 Rosbi\nMove G3 Rosbi G3\nMove G2 Rosbi G3\nMove G1 Y1 G3\nCatastrophe G3 Green\n\n100) wil: M Y3 Be1 Rosbi\n\twil: s y3 be1\r\nm b1 be1 rosbi\r\nm b1 g3 rosbi\r\nm b2 g3 rosbi\r\nc rosbi b\n\n101) rosbi: Sacrifice Y2 R3\nMove G2 R3 Rosbi\nMove B3 R3&#39; Rosbi\n\trosbi: yeah ! I can survive one more turn :)\n\twil: Noice!\n\n\trosbi: Yeah, I&#39;m dead :)\r\nThank you very much for your patience, I didn&#39;t have a lot of spare time this year -&gt; longest HW game ever.\n\twil: Lol, you kept coming back....so I left your game on &quot;the opponent is outta time shelf&quot;\n\nHomeworlds Online (SDG# 33861)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.9, Ended: 2018.5.11\nParticipants: Trydnt (S), rosbi (N)\nWinner: Trydnt\n\n1) rosbi: Homeworld G3 B2 Y3\n\n2) Trydnt: Homeworld B2 Y2 G3 *\n\trosbi: Hi !\n\tTrydnt: Hello and good luck!\n\n3) rosbi: Build Y1 Rosbi\n\n4) Trydnt: Build G1 Trydnt\n\n5) rosbi: Trade Y1 G1 Rosbi\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) rosbi: Build Y1 Rosbi\n\n8) Trydnt: Build G1 Trydnt\n\n9) rosbi: Discover Y1 Rosbi R1 R1\n\n10) Trydnt: Build R1 Trydnt\n\n11) rosbi: Build Y1 Rosbi\n\n12) Trydnt: Build R2 Trydnt\n\n13) rosbi: Trade Y3 R3 Rosbi\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) rosbi: Build Y1 Rosbi\n\n16) Trydnt: Discover Y2 Trydnt G3 G3\n\n17) rosbi: Build R2 Rosbi\n\n18) Trydnt: Trade R1 B1 Trydnt\n\n19) rosbi: Move G1 Rosbi R1\n\n20) Trydnt: Build B1 Trydnt\n\n21) rosbi: Trade Y1 B1 Rosbi\n\n22) Trydnt: Build R1 Trydnt\n\n23) rosbi: Move B1 Rosbi R1\n\n24) Trydnt: Move B1 Trydnt G3\n\n25) rosbi: Discover R2 Rosbi G1 G1\n\n26) Trydnt: Move Y2 G3 R1\n\n27) rosbi: Sacrifice Y1 R1\nDiscover B1 R1 G2 G2\n\n28) Trydnt: Attack G1 R1\n\n29) rosbi: Build Y1 Rosbi\n\n30) Trydnt: Sacrifice G3 Trydnt\nBuild G2 R1\nBuild G2 R1\nBuild G3 Trydnt\n\n31) rosbi: Build R2 G1\n\n32) Trydnt: Move G2 R1 G3\n\n33) rosbi: Sacrifice Y1 Rosbi\nMove R2 G1 G2\n\n34) Trydnt: Build Y1 R1\n\n35) rosbi: Build R2 G2\n\n36) Trydnt: Move R1 Trydnt G3\n\n37) rosbi: Build R3 G1\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 G3\nPass\n\n39) rosbi: Trade R2 Y2 G2\n\n40) Trydnt: Build R2 Trydnt\n\n41) rosbi: Sacrifice Y2 G2\nMove R2 G2 G3\nMove R2 G1 G3\nCatastrophe G3 Red\n\n42) Trydnt: Trade G2 Y2 G3\n\n43) rosbi: Build B2 G2\n\n44) Trydnt: Move B1 Trydnt R1\n\n45) rosbi: Trade B2 G2 G2\n\n46) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B2 R1\nBuild B3 G3\n\n47) rosbi: Build B3 G2\n\n48) Trydnt: Sacrifice Y2 R1\nMove G1 R1 G2\nMove G2 R1 G2\nCatastrophe G2 G\n\n49) rosbi: Build Y1 Rosbi\n\n50) Trydnt: Trade B2 G2 R1\n\n51) rosbi: Move Y1 Rosbi G1\n\n52) Trydnt: Build B1 R1\n\n53) rosbi: Move R3 Rosbi R1\n\n54) Trydnt: Sacrifice Y2 G3\nMove G2 R1 Rosbi\nMove B1 R1 Rosbi\n\n55) rosbi: Move R3 G1 Rosbi\n\n56) Trydnt: Sacrifice G2 Rosbi\nBuild B2 Rosbi\nBuild B3 Rosbi\n\n57) rosbi: Sacrifice Y1 G1\nMove R3 R1 Trydnt\n\n\tTrydnt: you could have kept going there but yeah probably was over\n\nHomeworlds Online (SDG# 33841)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.9, Ended: 2018.3.14\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: Homeworld G3 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build Y1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Discover Y1 Wil G2 Four\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: Build Y2 Four\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) wil: Discover Y2 Four B3 Score\n\n11) Trydnt: Build B1 Trydnt\n\n12) wil: Trade Y2 B2 Score\n\n13) Trydnt: Build B2 G3\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Trade B2 Y2 G3\n\n16) wil: Discover Y2 Wil G2 Ago\n\n17) Trydnt: Discover B1 Trydnt Y3 Y3\n\n18) wil: Sacrifice Y1 Four\nMove B2 Score Ago\n\twil: this one will not work\n\n19) Trydnt: Build G1 Trydnt\n\n20) wil: Build Y1 Ago\n\n21) Trydnt: Build G1 Trydnt\n\n22) wil: Trade Y1 R1 Ago\n\n23) Trydnt: Move G1 Trydnt Y3\n\n24) wil: Build R1 Ago\n\n25) Trydnt: Trade B1 R1 Y3\n\n26) wil: Move R1 Ago Wil\n\n27) Trydnt: Build R2 Y3\n\n28) wil: Build R2 Ago\n\n29) Trydnt: Build G1 Y3\n\n30) wil: Discover R2 Ago Y3 Brought\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G2 Y3\nBuild G3 Trydnt\n\n32) wil: Build R2 Wil\n\n33) Trydnt: Discover R2 Y3 B2 B2\n\n34) wil: Build R3 Ago\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Y3\nBuild R3 B2\n\n36) wil: Move R3 Ago G3\n\n37) Trydnt: Sacrifice Y2 G3\nDiscover B1 G3 Y2 Y2\nMove B1 Y2 Y3\n\n38) wil: Build Y1 Ago\n\n39) Trydnt: Trade R2 Y2 B2\n\n40) wil: Build R2 G3\n\twil: yup, a bad plan, poorly executed\n\n41) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild Y2 B2\n\n42) wil: Sacrifice B2 Ago\nTrade Y1 B1 Ago\nTrade R2 B2 Brought\n\n43) Trydnt: Move Y2 B2 Wil\n\n44) wil: Sacrifice B2 Brought\nTrade Y3 B3 Wil\nTrade R3 Y3 G3\n\n45) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 Wil\nBuild Y3 B2\n\n46) wil: Build R2 G3\n\n47) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild R3 B2\n\n48) wil: Attack Y2 Wil\n\n49) Trydnt: Move Y2 B2 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 33870)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.9, Ended: 2018.3.25\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade Y1 B1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Build B1 Trydnt\n\n10) wil: Discover Y1 Wil G2 And\n\n11) Trydnt: Discover B1 Trydnt G1 G1\n\n12) wil: Build Y2 And\n\n13) Trydnt: Build B2 G1\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Build B2 Trydnt\n\n16) wil: Trade Y2 R2 Wil\n\n17) Trydnt: Build B3 G1\n\n18) wil: Move Y2 And G1\n\n19) Trydnt: Trade B2 R2 Trydnt\n\n20) wil: Sacrifice R2 Wil\nAttack B1 G1\nAttack B2 G1\n\n21) Trydnt: Sacrifice R2 Trydnt\nAttack B2 G1\nAttack B1 G1\n\n22) wil: Build Y2 Wil\n\n23) Trydnt: Trade B3 Y3 G1\n\n24) wil: Build Y2 G1\n\n25) Trydnt: Discover Y3 G1 B2 B2\n\n26) wil: Trade Y2 R2 Wil\n\n27) Trydnt: Build B3 G1\n\n28) wil: Sacrifice R2 Wil\nAttack B1 G1\nAttack B2 G1\n\n29) Trydnt: Sacrifice B1 Trydnt\nTrade B3 R3 G1\n\n30) wil: Sacrifice B2 G1\nTrade Y2 R2 G1\nTrade Y2 R2 G1\n\n31) Trydnt: Attack B1 G1\n\n32) wil: Attack B1 G1\n\n33) Trydnt: Attack B1 G1\n\n34) wil: Attack B1 G1\n\n35) Trydnt: Build Y2 Trydnt\n\n36) wil: Build Y2 And\n\n37) Trydnt: Trade Y1 R1 Trydnt\n\n38) wil: Trade Y1 R1 Wil\n\twil: are you resigning?  Can&#39;t think of anything other than reversing my move?\n\n39) Trydnt: Build R1 Trydnt\n\n40) wil: Build R2 Wil\n\n41) Trydnt: Sacrifice Y2 Trydnt\nMove R1 Trydnt G1\nDiscover R3 G1 G2 G2\n\n42) wil: Trade R2 Y2 G1\n\n43) Trydnt: Build R2 G1\n\n44) wil: Sacrifice R1 Wil\nAttack R2 G1\n\n45) Trydnt: Build R1 G1\nCatastrophe G1 R\n\n46) wil: Build B1 G1\n\n47) Trydnt: Move Y3 B2 G1\n\n48) wil: Build Y1 G1\n\n49) Trydnt: Move Y3 G1 G2\n\n50) wil: Move B1 G1 And\n\n51) Trydnt: Move R3 G2 G1\n\n52) wil: Sacrifice Y2 G1\nDiscover B1 G1 G2 In\nMove Y1 G1 In\n\n53) Trydnt: Move Y3 G2 G1\n\n54) wil: Move B1 In Wil\n\n55) Trydnt: Move R3 G1 And\n\twil: I&#39;ll need you to make a mistake to win this one...\n\n56) wil: Sacrifice Y2 And\nDiscover Y1 And G1 Gwon\nMove B1 And Gwon\n\n57) Trydnt: Move Y3 G1 And\n\n58) wil: Move B1 Gwon In\n\n59) Trydnt: Discover R3 And Y1 Y1\n\n60) wil: Build B2 Wil\n\n61) Trydnt: Build Y2 And\n\n62) wil: Discover B1 Wil Y2 Y2\n\n63) Trydnt: Build Y2 Trydnt\n\n64) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B3 In\nBuild B3 Wil\n\n65) Trydnt: Move R3 Y1 Y2\n\n66) wil: Sacrifice B2 Y2\nTrade B3 G3 Wil\nTrade B3 R3 In\n\n67) Trydnt: Attack B1 Y2\n\n68) wil: Build B2 In\n\n69) Trydnt: Discover B1 Y2 Y1 Y1\n\n70) wil: Build B3 In\n\n71) Trydnt: Move B1 Y1 In\nCatastrophe In B\n\n72) wil: Build B1 Wil\n\n73) Trydnt: Trade Y2 B2 Trydnt\n\n74) wil: Trade B2 G2 Wil\n\n75) Trydnt: Move B2 Trydnt Gwon\n\n76) wil: Discover Y1 Gwon R2 R2\n\n77) Trydnt: Build R1 Trydnt\n\twil: Poker wednesday...I am outta town thursday\n\n78) wil: M B1 Wil In\n\n79) Trydnt: Move R1 Trydnt Gwon\n\twil: well that was stupid...somebody was blind...dang screwed up galaxy positioning (gotta blame something, tis tradition)\n\n80) wil: Build B1 In\n\n81) Trydnt: Build R1 Gwon\n\n82) wil: Sacrifice G2 Wil\nBuild R2 In\nBuild R3 Wil\n\n83) Trydnt: Sacrifice Y2 And\nMove R1 Gwon In\nMove R1 Gwon In\nCatastrophe In R\n\n84) wil: Move R3 Wil In\n\n85) Trydnt: Discover R3 Y2 Y1 Y1\n\n86) wil: Build Y2 In\n\n87) Trydnt: Build Y2 And\n\n88) wil: Move B1 In Gwon\n\n89) Trydnt: Sacrifice R1 Trydnt\nAttack B1 Gwon\n\n90) wil: Build B2 In\n\n91) Trydnt: Sacrifice Y2 And\nMove B1 Gwon And\nMove B2 Gwon R2\n\n92) wil: Sacrifice Y1 R2\nDiscover B1 In G1 G1\n\n93) Trydnt: Build B3 And\n\n94) wil: Build B3 G1\n\n95) Trydnt: Trade B3 G3 And\n\n96) wil: Build B3 In\n\n97) Trydnt: Build B3 And\n\n98) wil: Trade B3 R3 G1\n\n99) Trydnt: Trade B1 R1 And\n\n100) wil: Move Y1 In G1\n\n101) Trydnt: Sacrifice G3 And\nBuild B1 And\nBuild B3 R2\nBuild Y1 And\n\n102) wil: Build Y2 G1\n\n103) Trydnt: Trade B2 Y2 R2\n\n104) wil: Build B2 G1\n\n105) Trydnt: Trade R1 G1 And\n\n106) wil: Build G1 Wil\n\n107) Trydnt: Move G1 And Y1\n\n108) wil: Discover G1 Wil R2 Are2\n\n109) Trydnt: Build R1 Y1\n\n110) wil: Discover B3 In R1 R1\n\n111) Trydnt: Move B3 And Wil\n\n112) wil: Attack B3 Wil\n\n113) Trydnt: Move B3 R2 Wil\n\n114) wil: Attack B3 Wil\n\n115) Trydnt: Move B1 And Wil\nCatastrophe Wil B\n\n116) wil: Build R1 In\n\n117) Trydnt: Move R3 Y1 Trydnt\n\n118) wil: Trade B3 G3 R1\n\n119) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 R2 Wil\nMove Y1 And Wil\nMove Y3 And Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 33871)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.9, Ended: 2018.3.14\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 R1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build R2 Wil\n\n8) Trydnt: Build R2 Trydnt\n\n9) wil: Trade R1 Y1 Wil\n\n10) Trydnt: Discover R2 Trydnt G1 G1\n\n11) wil: Build Y1 Wil\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: Build Y1 Wil\n\n14) Trydnt: Trade R1 B1 Trydnt\n\n15) wil: Discover Y1 Wil G3 Our\n\n16) Trydnt: Move B1 Trydnt G1\n\n17) wil: Sacrifice G3 Wil\nBuild Y2 Our\nBuild Y2 Our\nBuild Y3 Wil\n\n18) Trydnt: Build B1 G1\n\n19) wil: Discover Y1 Our G1 Fathers\n\n20) Trydnt: Build G1 Trydnt\n\n21) wil: Build Y3 Fathers\n\n22) Trydnt: Build G2 Trydnt\n\n23) wil: Build Y3 Our\n\n24) Trydnt: Move G1 Trydnt Fathers\n\n25) wil: Move Y3 Our G1\n\n26) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Fathers\nBuild G2 Fathers\nBuild G3 Trydnt\nCatastrophe Fathers G\n\n27) wil: Build Y1 G1\n\n28) Trydnt: Trade R2 G2 G1\n\n29) wil: Build Y3 Our\n\n30) Trydnt: Build G1 G1\n\n31) wil: Discover Y1 G1 G3 Continent\n\n32) Trydnt: Build G1 G1\nCatastrophe G1 G\n\n33) wil: Build Y3 Continent\n\n\tTrydnt: gotta stop letting you freeze me out of yellow\n\twil: it does make it hard\n\nHomeworlds Online (SDG# 33872)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.9, Ended: 2018.3.26\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) wil: Homeworld G2 Y1 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build B1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade B3 Y3 Wil\n\n7) Trydnt: Build G1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Discover B1 Trydnt G1 G1\n\n10) wil: Trade Y1 G1 Wil\n\n11) Trydnt: Trade G1 R1 Trydnt\n\n12) wil: Build Y1 Wil\n\n13) Trydnt: Build R1 Trydnt\n\n14) wil: Discover G1 Wil B3 Seven\n\n15) Trydnt: Build R1 Trydnt\n\n16) wil: Move Y1 Wil Seven\n\n17) Trydnt: Move R1 Trydnt G1\n\n18) wil: Build Y1 Wil\n\n19) Trydnt: Build R2 G1\n\n20) wil: Build Y2 Seven\n\n21) Trydnt: Trade R2 Y2 G1\n\n22) wil: Trade Y3 R3 Wil\n\n23) Trydnt: Build R2 G1\n\n24) wil: Build R2 Wil\n\n25) Trydnt: Discover R1 G1 Y3 Y3\n\n26) wil: Build Y2 Wil\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R3 Trydnt\nBuild Y3 G1\n\n28) wil: Move R2 Wil Seven\n\n29) Trydnt: Trade R3 G3 Trydnt\n\n30) wil: Build R3 Seven\n\n31) Trydnt: Build R3 G1\n\n32) wil: Trade R3 G3 Seven\n\n33) Trydnt: Discover Y3 G1 R3 R3\n\n34) wil: Discover Y2 Seven B2 Anew\n\n35) Trydnt: Build G1 Trydnt\n\n36) wil: Trade Y2 B2 Wil\n\n37) Trydnt: Build Y2 G1\n\n38) wil: Discover B2 Wil G3 Nation\n\n39) Trydnt: Discover R2 G1 B3 B3\n\n40) wil: Move G1 Seven Anew\n\n41) Trydnt: Trade R2 G2 B3\n\n42) wil: Build G2 Seven\n\n43) Trydnt: Build R2 G1\n\n44) wil: Sacrifice G3 Seven\nBuild G3 Seven\nBuild B1 Wil\nBuild B3 Nation\n\n45) Trydnt: Sacrifice G2 B3\nBuild B3 G1\nPass\n\n46) wil: Build G2 Anew\n\n47) Trydnt: Move R3 G1 Anew\n\n48) wil: Sacrifice Y2 Anew\nMove G1 Anew G1\nMove G2 Anew G1\n\n49) Trydnt: Sacrifice Y3 R3\nMove Y2 G1 Anew\nMove B3 G1 Y3\nMove Y2 G1 Anew\n\n50) wil: Sacrifice G3 Seven\nBuild G3 Seven\nBuild R3 Seven\nBuild Y2 Seven\n\n51) Trydnt: Attack G2 G1\n\n52) wil: Sacrifice Y1 Seven\nMove G2 Seven G1\nCatastrophe G1 G\n\n53) Trydnt: Discover Y2 Anew G1 G1\n\n54) wil: Trade B3 Y3 Nation\n\n55) Trydnt: Discover G1 Trydnt Y1 Y1\n\n56) wil: Move R3 Seven G1\n\n57) Trydnt: Move Y2 G1 Y3\n\n58) wil: Build R2 Seven\n\n59) Trydnt: Build G1 Y1\n\n60) wil: Move R2 Seven Y1\n\n61) Trydnt: Build G2 Trydnt\n\n62) wil: Attack G1 Y1\n\n63) Trydnt: Build G2 Y1\n\n64) wil: Attack G2 Y1\n\n65) Trydnt: Move G2 Trydnt Y1\nCatastrophe Y1 G\n\n66) wil: Move Y2 Seven G1\n\n67) Trydnt: Move R3 Anew Y1\n\n68) wil: Move R2 Y1 Nation\n\n69) Trydnt: Move R2 Y3 G1\n\n70) wil: Sacrifice Y3 Nation\nMove R3 G1 Anew\nMove Y1 Wil Y3\nMove Y2 G1 Y3\nCatastrophe Y3 Y\n\n71) Trydnt: Move R3 Y1 Nation\n\n72) wil: Sacrifice B2 Nation\nTrade R2 G2 Nation\nTrade G2 R2 Nation\n\n73) Trydnt: Move Y2 Anew Nation\n\n74) wil: Attack Y2 Nation\n\n75) Trydnt: Sacrifice R2 G1\nAttack Y2 Nation\nAttack R2 Nation\n\n76) wil: Build B1 Wil\n\n77) Trydnt: Build Y1 Nation\n\n78) wil: Move B1 Wil Seven\n\n79) Trydnt: Build Y1 Nation\n\n80) wil: Discover B1 Wil Y3 Y3\n\n81) Trydnt: Discover Y2 Nation G2 G2\n\n82) wil: Sacrifice G3 Seven\nBuild B2 Wil\nBuild B3 Seven\nBuild B3 Y3\n\n83) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Nation\nBuild Y2 G2\nBuild Y3 G2\n\n84) wil: Trade B3 G3 Seven\n\n85) Trydnt: Discover Y2 G2 B3 B3\n\n86) wil: Build R1 Seven\n\n87) Trydnt: Build R2 Nation\n\n88) wil: Trade B3 G3 Y3\n\n89) Trydnt: Move R2 Nation G2\n\n90) wil: Build B3 Wil\n\n91) Trydnt: Move R2 G2 B3\n\twil: there you go...thought you&#39;d like to feel what a yellow monopoly felt like!\n\n92) wil: Build G1 Y3\n\n93) Trydnt: Trade R2 G2 B3\n\n94) wil: Sacrifice G3 Y3\nBuild G1 Seven\nBuild G1 Seven\nBuild G3 Y3\n\n95) Trydnt: Build R2 Nation\n\n96) wil: Move G1 Y3 Anew\n\n97) Trydnt: Move Y3 G2 B3\n\n98) wil: Pass\n\n99) Trydnt: Pass\n\n100) wil: Pass\n\n101) Trydnt: Sacrifice Y1 Nation\nDiscover R3 Nation Y1 Y1\n\n102) wil: Move G3 Y3 G2\n\n103) Trydnt: Move R3 Y1 Y3\n\tTrydnt: this is weird\n\n104) wil: Sacrifice R1 Seven\nAttack Y2 G2\n\n105) Trydnt: Sacrifice Y2 B3\nDiscover R2 Nation Y1 Y1\nDiscover Y2 Nation R1 R1\n\n106) wil: Sacrifice Y2 G2\nMove G3 G2 R1\nMove G3 R1 Trydnt\n\twil: another fine mess you&#39;ve gotten us into\n\twil: 53 moves...\n\n\nHomeworlds Online (SDG# 33873)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.9, Ended: 2018.3.17\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\twil: 6 games of experimentation!\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\twil: Think this is the first time ever we&#39;ve both started with a home defense system\n\n5) wil: Trade G1 R1 Wil\n\tTrydnt: I don&#39; think so but maybe\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build R2 Wil\n\n8) Trydnt: Build R2 Trydnt\n\n9) wil: Trade R1 Y1 Wil\n\n10) Trydnt: Trade R2 Y2 Trydnt\n\n11) wil: Build Y1 Wil\n\n12) Trydnt: Build G1 Trydnt\n\n13) wil: Build G1 Wil\n\n14) Trydnt: Trade G1 B1 Trydnt\n\n15) wil: Trade G1 B1 Wil\n\n16) Trydnt: Build G1 Trydnt\n\n17) wil: Build G1 Wil\n\n18) Trydnt: Build Y1 Trydnt\n\n19) wil: Build Y2 Wil\n\n20) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt G1 G1\nDiscover G1 Trydnt B1 B1\n\n21) wil: Discover Y1 Wil G3 Gave\n\n22) Trydnt: Build G2 B1\n\n23) wil: Build G2 Wil\n\n24) Trydnt: Build Y2 G1\n\n25) wil: Discover G2 Wil Y3 To\n\n26) Trydnt: Discover Y2 G1 G2 G2\n\n27) wil: Discover Y1 Wil B3 This\n\n28) Trydnt: Sacrifice G2 B1\nBuild Y2 G1\nBuild Y3 G2\n\n29) wil: Sacrifice G2 To\nBuild Y3 Wil\nBuild Y3 Gave\n\n30) Trydnt: Build G2 Trydnt\n\n31) wil: Sacrifice Y2 Wil\nMove Y1 This G2\nMove Y1 Gave G2\nCatastrophe G2 Y\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G2 B1\nBuild G3 Trydnt\n\n33) wil: Move B1 Wil Gave\n\n34) Trydnt: Trade G2 Y2 B1\n\n35) wil: Build B2 Gave\n\n36) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G3 Trydnt\nBuild Y1 G1\n\n37) wil: Discover B1 Gave Y1 Conceived\n\n38) Trydnt: Move Y1 G1 Gave\n\n39) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Conceived\nBuild B3 Gave\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G1\nBuild Y3 B1\n\n41) wil: Sacrifice Y3 Gave\nMove R2 Wil Gave\nMove B1 Conceived Trydnt\nMove B2 Conceived Trydnt\nCatastrophe Trydnt B\n\n42) Trydnt: Sacrifice G2 B1\nBuild Y1 Gave\nBuild Y3 B1\n\n43) wil: Attack Y1 Gave\n\n44) Trydnt: Sacrifice Y3 B1\nMove G1 B1 Gave\nMove G2 B1 Gave\nMove G2 Trydnt Gave\nCatastrophe Gave G\n\n45) wil: Build Y1 Wil\n\n46) Trydnt: Trade Y2 B2 B1\n\n47) wil: Trade G1 R1 Wil\n\n48) Trydnt: Move B2 B1 Trydnt\n\n49) wil: Build R2 Wil\n\n50) Trydnt: Sacrifice Y2 G1\nDiscover R1 Trydnt Y3 Y3\nMove R1 Y3 Wil\nCatastrophe Wil R\n\n51) wil: Trade Y1 R1 Wil\n\n52) Trydnt: Build B1 Trydnt\n\n53) wil: Build R1 Wil\n\n54) Trydnt: Sacrifice B2 Trydnt\nTrade Y2 B2 G1\nTrade Y1 B1 G1\n\n55) wil: Build R1 Wil\n\n56) Trydnt: Sacrifice Y3 B1\nMove B2 G1 Wil\nMove B1 G1 Wil\nDiscover B1 Trydnt Y1 Y1\n\n57) wil: Trade G3 B3 Wil\nCatastrophe Wil B\n\n\twil: lol...my brain cells are not communicating at all!!\r\n\n\tTrydnt: that was interesting. one of the only games I think where we both blew half the others hw without a full plan\n\twil: possibly\n\nHomeworlds Online (SDG# 33876)\nStarted: 2018.3.9, Ended: 2018.4.23\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n8) Trydnt: Build R2 Trydnt\n\n9) Draw5PlayAll: Build R2 Draw5playall\n\n10) Trydnt: Build R2 Trydnt\n\n11) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) Trydnt: Build R2 Trydnt\n\n15) Draw5PlayAll: Discover R2 Draw5playall G2 G2\n\n16) Trydnt: Discover R2 Trydnt G1 G1\n\n17) Draw5PlayAll: Build R3 G2\n\n18) Trydnt: Build R3 G1\n\n19) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n20) Trydnt: Trade R2 B2 Trydnt\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\n22) Trydnt: Build B1 Trydnt\n\n23) Draw5PlayAll: Move B1 Draw5playall G2\n\n24) Trydnt: Move B1 Trydnt G1\n\tDraw5PlayAll: I like how no one is Grabbing All of One Color.\n\n25) Draw5PlayAll: Move Y1 Draw5playall G2\n\n26) Trydnt: Move Y2 Trydnt G1\n\tTrydnt: yeah monopolies are a good way to win but make for boring games\n\n27) Draw5PlayAll: Build Y1 G2\n\n28) Trydnt: Discover R2 G1 G2 G22\n\n29) Draw5PlayAll: Discover Y1 G2 G1 Liberty\n\n30) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G1\nBuild R2 G22\nBuild R3 Trydnt\n\tDraw5PlayAll: The statue of liberty is green, so...\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 G2\nBuild Y3 Liberty\nBuild Y3 Draw5playall\n\n32) Trydnt: Build Y3 G1\n\n33) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n34) Trydnt: Discover R3 G1 Y3 Y3\n\n35) Draw5PlayAll: Build G1 Draw5playall\n\n36) Trydnt: Trade R3 G3 Trydnt\n\n37) Draw5PlayAll: Trade R2 B2 G2\n\n38) Trydnt: Build G2 Trydnt\n\n39) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G2 G1\nMove Y1 G2 G1\nCatastrophe G1 Yellow\n\n40) Trydnt: Sacrifice B2 Trydnt\nTrade R1 Y1 G1\nTrade R2 Y2 G22\n\n41) Draw5PlayAll: Build G3 Draw5playall\n\n42) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 G22\nBuild R1 Y3\n\n43) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n44) Trydnt: Sacrifice G2 Trydnt\nBuild R2 G22\nBuild Y2 G1\n\n45) Draw5PlayAll: Move Y1 Liberty G2\n\n46) Trydnt: Move R2 G22 G1\n\n47) Draw5PlayAll: Build G2 Draw5playall\n\n48) Trydnt:\nBuild G3 Trydnt\n\n49) Draw5PlayAll: Move B1 G2 Liberty\n\n50) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 G1\nBuild R3 G22\n\n51) Draw5PlayAll: Move G2 Draw5playall G2\n\n52) Trydnt: Trade R2 B2 G1\n\n53) Draw5PlayAll: Build R2 G2\n\n54) Trydnt: Move B2 G1 G22\n\n55) Draw5PlayAll: Move G2 G2 Liberty\n\n56) Trydnt: Move R2 G1 G22\n\n57) Draw5PlayAll: Move G1 Draw5playall G2\n\n58) Trydnt: Discover G3 Trydnt B1 B1\n\n59) Draw5PlayAll: Move R2 G2 Liberty\n\n60) Trydnt: Sacrifice Y2 G22\nMove R3 G22 Draw5playall\nDiscover G3 B1 B3 B3\n\n61) Draw5PlayAll: Attack R3 Draw5playall\n\n62) Trydnt: Sacrifice Y2 G1\nMove R2 G22 Draw5playall\nMove R2 G22 Draw5playall\nCatastrophe Draw5playall R\n\n63) Draw5PlayAll: Sacrifice G2 Liberty\nBuild Y2 G2\nBuild Y2 Liberty\n\n64) Trydnt: Build B1 G22\n\tDraw5PlayAll: I think I benefitted from that more than you did\n\n65) Draw5PlayAll: Build B2 Liberty\n\n66) Trydnt: Build G2 Trydnt\n\n67) Draw5PlayAll: Build R1 Liberty\n\n68) Trydnt: Move B2 G22 Liberty\n\n69) Draw5PlayAll: Move B1 Liberty G2\n\n70) Trydnt: Sacrifice R3 Y3\nAttack R1 Liberty\nAttack Y2 Liberty\nAttack R2 Liberty\n\n71) Draw5PlayAll: Sacrifice R3 G2\nAttack R2 Liberty\nAttack Y2 Liberty\nAttack B2 Liberty\n\n72) Trydnt: Build R2 Liberty\n\n73) Draw5PlayAll: Sacrifice R2 Liberty\nAttack R2 Liberty\nAttack R1 Liberty\n\n74) Trydnt: Sacrifice Y1 G1\nDiscover G2 Trydnt Y1 Y1\n\n75) Draw5PlayAll: Move R2 Liberty G22\n\n76) Trydnt: Sacrifice G3 B3\nBuild G3 Y1\nBuild B3 G22\nBuild R2 Y3\n\n77) Draw5PlayAll: Move B2 G2 G1\n\n78) Trydnt: Sacrifice R1 Y3\nAttack R2 G22\n\n79) Draw5PlayAll: Discover Y1 G2 R1 Idkwhy\n\n80) Trydnt: Move G3 Y1 Y3\n\n81) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n82) Trydnt: Build G3 Y1\n\n83) Draw5PlayAll: Move Y2 G2 Idkwhy\n\n84) Trydnt: Move R2 Y3 Liberty\n\n85) Draw5PlayAll: Sacrifice Y3 Liberty\nMove B2 Liberty Trydnt\nMove B2 Liberty Trydnt\nMove Y2 Liberty Trydnt\n\tDraw5PlayAll: You could have won by sending your G3 into my homeworld rather than y3... I only had one weapon and attacking the G3 would leave me defenseless against your B3.\n\n86) Trydnt: Build Y3 G22\n\n87) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B2 G1 Trydnt\nMove Y2 Idkwhy Trydnt\nMove Y1 Idkwhy Trydnt\nCatastrophe Trydnt Yellow\nCatastrophe Trydnt Blue\n\n\tDraw5PlayAll: Nice try.\r\n\r\nThat must be the longest move text I have ever seen. 8 sentences.\n\tTrydnt: I went in half cocked haha \n\nHomeworlds Online (SDG# 33877)\nStarted: 2018.3.12, Ended: 2018.8.23\nParticipants: Mandrel (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Mandrel: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tMandrel: Have a good game\n\tTrydnt: you too\n\n4) Mandrel: Build G1 Mandrel\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Trydnt: Build G1 Trydnt\n\n8) Mandrel: Build Y1 Mandrel\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) Mandrel: Build Y2 Mandrel\n\n11) Trydnt: Build Y2 Trydnt\n\n12) Mandrel: Discover Y1 Mandrel G2 Squirrel\n\n13) Trydnt: Discover B1 Trydnt G3 G3\n\tTrydnt: did you see the ladder challenge?\n\n14) Mandrel: Trade Y2 B2 Mandrel\n\n15) Trydnt: Move Y1 Trydnt G3\n\tMandrel: Oh no, sorry I didn&#39;t, don&#39;t always check the main page. Feel free to send again!\n\n16) Mandrel: M B2 Mandrel Squirrel\n\n17) Trydnt: Build Y2 G3\n\n18) Mandrel: B Y2 Squirrel\n\n19) Trydnt: Move Y1 G3 Squirrel\n\n20) Mandrel: Trade Y1 R1 Squirrel\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 Squirrel\nBuild Y3 G3\nBuild Y3 Trydnt\n\n22) Mandrel: Build Y3 Mandrel\n\n23) Trydnt: Sacrifice Y2 G3\nMove Y1 Squirrel Mandrel\nMove Y1 Squirrel Mandrel\nCatastrophe Mandrel Y\n\n24) Mandrel: B G1 Mandrel\n\n25) Trydnt: Build Y1 G3\n\n26) Mandrel: T G1 Y1 Mandrel\n\n27) Trydnt: Trade Y3 G3 Trydnt\n\n28) Mandrel: B G1 Mandrel\n\n29) Trydnt: Trade Y1 R1 G3\n\n30) Mandrel: B R2 Squirrel\n\n31) Trydnt: Build R2 G3\n\n32) Mandrel: Discover R2 Squirrel B3 Tea\n\n33) Trydnt: Discover R2 G3 G2 G2\n\n34) Mandrel: Build G1 Mandrel\n\n35) Trydnt: Trade R1 G1 G3\n\n36) Mandrel: T G1 B1 Mandrel\n\n37) Trydnt: Build Y1 G3\n\n38) Mandrel: D G1 Mandrel B2 Sky\n\n39) Trydnt: Build B3 G3\n\n40) Mandrel: Build B3 Squirrel\n\n41) Trydnt: Move B3 G3 G2\n\n42) Mandrel: Trade B2 G2 Squirrel\n\n43) Trydnt: Sacrifice G1 G3\nBuild B2 G2\n\n44) Mandrel: Move G2 Squirrel Tea\n\n45) Trydnt: Move Y1 G3 G2\n\n46) Mandrel: Build G1 Mandrel\n\n47) Trydnt: Build G1 Trydnt\n\n48) Mandrel: Discover B1 Mandrel Y2 Intent\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 G3\nBuild Y3 G2\n\n50) Mandrel: S G3 Mandrel\nB G3 Mandrel\nB Y3 Mandrel\nB R1 Tea\n\n51) Trydnt: Move Y3 G2 Tea\n\n52) Mandrel: Sacrifice Y2 Squirrel\nMove R1 Tea Trydnt\nMove R2 Tea Trydnt\n\n53) Trydnt: Sacrifice R2 G2\nAttack R1 Trydnt\nAttack R2 Trydnt\n\n54) Mandrel: S Y3 Mandrel\nM R1 Squirrel Tea\nM R1 Tea Trydnt\nM G2 Tea Intent\nC Trydnt R\n\n55) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G2\nBuild Y3 Tea\n\n56) Mandrel: Trade G1 R1 Mandrel\n\n57) Trydnt: Trade G1 R1 Trydnt\n\n58) Mandrel: B G1 Mandrel\n\n59) Trydnt: Build R1 Trydnt\n\n60) Mandrel: Sacrifice G1 Sky\nBuild B2 Intent\n\n61) Trydnt: Sacrifice Y3 Tea\nMove R1 Trydnt Mandrel\nMove R1 Trydnt Mandrel\nCatastrophe Mandrel R\nMove B3 G2 Mandrel\n\n\nHomeworlds Online (SDG# 33889)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.14, Ended: 2018.3.29\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R2 B3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Build B1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade B3 Y3 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Build Y2 Trydnt\n\n10) wil: Trade Y1 B1 Wil\n\n11) Trydnt: Discover B1 Trydnt Y1 Y1\n\n12) wil: Build Y2 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: Discover Y2 Wil G3 Liberty\n\n15) Trydnt: Trade Y2 R2 Trydnt\n\n16) wil: Trade Y1 R1 Wil\n\n17) Trydnt: Build B2 Trydnt\n\n18) wil: Move B1 Wil Liberty\n\n19) Trydnt: Discover B2 Trydnt G1 G1\n\n20) wil: Build R1 Wil\n\n21) Trydnt: Move R2 Trydnt G1\n\n22) wil: Move R1 Wil Liberty\n\n23) Trydnt: Trade B2 Y2 G1\n\n24) wil: Build B2 Liberty\n\n25) Trydnt: Build B2 Trydnt\n\n26) wil: Move B2 Liberty G1 Gone\n\n27) Trydnt: Attack B2 G1\n\n28) wil: Build B3 Liberty\n\n29) Trydnt: Sacrifice Y2 Trydnt\nMove B1 Y1 Liberty\nMove B2 G1 Liberty\nCatastrophe Liberty B\n\n30) wil: Build R1 Wil\n\n31) Trydnt: Build Y1 G1\n\n32) wil: Build R2 Wil\n\n33) Trydnt: Build R3 G1\n\n34) wil: Build R3 Liberty\n\n35) Trydnt: Discover R2 G1 Y3 Y3\n\n36) wil: Trade R2 G2 Wil\n\n37) Trydnt: Move B1 Trydnt G1\n\n38) wil: Discover R1 Liberty Y1 Y1\n\n39) Trydnt: Discover Y2 G1 R3 R3\n\n40) wil: Build R2 Liberty\n\n41) Trydnt: Trade B2 G2 Trydnt\n\n42) wil: Discover G2 Wil Y3 Why3\n\n43) Trydnt: Move R2 Y3 Y1\n\n44) wil: Build Y2 Liberty\n\n45) Trydnt: Sacrifice G2 Trydnt\nBuild Y3 R3\nBuild B1 G1\n\n46) wil: Move R1 Y1 R3\n\n47) Trydnt: Discover Y3 R3 B1 B1\n\n48) wil: Move R1 Wil R3\n\n49) Trydnt: Move Y2 R3 B1\n\n50) wil: Discover Y2 Liberty G1 Gwon\n\n51) Trydnt: Move R3 G1 Why3\n\n52) wil: Move R3 Liberty G1\n\n53) Trydnt: Attack G2 Why3\n\n54) wil: Attack Y1 G1\n\n55) Trydnt: Sacrifice Y2 B1\nMove B1 G1 Why3\nMove B1 G1 Why3\n\n56) wil: Build Y2 G1\n\n57) Trydnt: Build B2 Why3\n\n58) wil: Move Y1 G1 Trydnt\n\n59) Trydnt: Sacrifice B2 Why3\nTrade Y3 B3 Trydnt\nPass\n\n60) wil: Build Y3 Gwon\n\n61) Trydnt: Attack Y1 Trydnt\n\n62) wil: Build G1 Wil\n\n63) Trydnt: Build G2 Why3\n\n64) wil: Discover G1 Wil B3 B3\n\n65) Trydnt: Move Y3 B1 B3\n\n66) wil: Trade G1 B1 B3\n\n67) Trydnt: Build G1 Why3\n\n68) wil: Pass\n\n69) Trydnt: Move G1 Why3 Wil\n\n70) wil: Sacrifice Y2 Gwon\nMove Y3 Gwon Why3\nMove Y3 Why3 Wil\n\n71) Trydnt: Sacrifice G2 Why3\nBuild G1 Wil\nBuild G2 Wil\nCatastrophe Wil G\n\n72) wil: Build Y2 Liberty\n\n73) Trydnt: Move R2 Y1 B3\n\n74) wil: Build Y1 G1 Wil\n\n75) Trydnt: Attack B1 B3\n\n76) wil: Move Y1 G1 R3\n\n77) Trydnt: Build B2 Trydnt\n\n78) wil: Trade R1 G1 Wil\n\n79) Trydnt: Build B2 Trydnt\n\n80) wil: Build G1 Wil\n\n81) Trydnt: Build B3 Why3\n\n82) wil: Move G1 Wil R3\n\n83) Trydnt: Trade B3 G3 Why3\n\n84) wil: Discover R1 R3 R1 R1\n\n85) Trydnt: Sacrifice Y3 B3\nMove R3 Why3 G1\nMove R3 G1 Liberty\nMove G2 Why3 R1\n\n86) wil: Build Y3 G1\n\n87) Trydnt: Sacrifice R2 B3\nAttack Y2 Liberty\nAttack R1 R1\n\n88) wil: Build R2 Liberty\n\twil: I like that we can experiment like crazy here online with weirdness...and then when I lose my numbers go down and people underate my abilities...its a win win!!\n\n89) Trydnt: Sacrifice R3 Liberty\nAttack R2 Liberty\nAttack R2 Liberty\nAttack Y2 Liberty\n\tTrydnt: haha only new people surely right? it&#39;s not like you could ever get worse right? lol\n\twil: every loss makes folks think they could also beat me... lol...and often they do!\n\n90) wil: Build R3 G1\n\n91) Trydnt: Sacrifice Y2 Liberty\nMove R2 Liberty G1\nMove R2 Liberty G1\nCatastrophe G1 R\n\n92) wil: Move R1 R3 Wil\n\n93) Trydnt: Build Y2 Liberty\n\n94) wil: Build R2 Wil\n\n95) Trydnt: Build G2 Why3\n\n96) wil: Build G2 Wil\n\n97) Trydnt: Sacrifice G3 Why3\nBuild G3 Why3\nBuild B3 B3\nPass\n\n98) wil: Sacrifice Y2 G1\nMove G2 Wil Why3\nMove G1 Wil Why3\nCatastrophe Why3 G\n\n99) Trydnt: Trade B3 G3 B3\n\n100) wil: Move Y3 G1 Why3\n\n101) Trydnt: Sacrifice G2 R1\nBuild Y2 Liberty\nBuild B3 B3\n\n102) wil: Sacrifice R2 Wil\nAttack B1 Why3\nAttack B1 Why3\n\n103) Trydnt: Sacrifice Y2 Liberty\nMove Y2 Liberty Wil\nMove Y2 Liberty Wil\nCatastrophe Wil Y\n\n104) wil: Sacrifice Y3 Why3\nDiscover B1 Why3 Y1 Y1\nMove B1 Why3 Y1\nMove B1 Y1 B3\nCatastrophe B3 B\n\n105) Trydnt: Move B2 Trydnt Y1\n\n106) wil: Build Y2 R3\n\n107) Trydnt: Sacrifice R1 R1\nAttack B1 Y1\n\n108) wil: Build Y2 R3\n\n109) Trydnt: Trade B3 Y3 Trydnt\n\n110) wil: Move Y2 R3 Wil\n\n111) Trydnt: Sacrifice Y3 Trydnt\nMove B2 Trydnt Y1\nMove B1 Y1 Wil\nMove B2 Y1 Wil\n\twil: four defends on the top of volcano...that is a record for me..\n\n112) wil: Trade R1 B1 Wil\nCatastrophe Wil B\n\n\twil: My abilities of self annihilation in this game are getting better!\n\twil: And look, your rating now coincides to that year which we ran away from home.\n\tTrydnt: You&#39;re very good at blowing up homeworlds, just not always your opponent&#39;s\n\nHomeworlds Online (SDG# 33682)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.14, Ended: 2018.3.17\nParticipants: Draw5PlayAll (S), sharkhands (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 33901)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.3.18, Ended: 2018.4.10\nParticipants: Babamots (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B1 Y2 G3\n\n2) Babamots: Homeworld Y3 B2 G3\n\tFelix: Good luck :) do I need to fill out a game start form?\n\tBabamots: No need to fill out the form. Since I am making all updates to the bracket manually, the forms just point me to changes I need to make. I already know about this game, so the form isn&#39;t needed.\n\n3) Felix: B G1 Felix\n\n4) Babamots: Build G1 Babamots\n\tFelix: I thought as much. Just wanted to be sure!\n\n5) Felix: T G1 B1 Felix\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) Felix: B B2 Felix\n\n8) Babamots: Build B2 Babamots\n\n9) Felix: Discover B2 Felix G3 Rim\n\n10) Babamots: Trade B1 R1 Babamots\n\n11) Felix: Build G1 Felix\n\n12) Babamots: Build G1 Babamots\n\n13) Felix: Discover G1 Felix B3 Savor\n\n14) Babamots: Discover B2 Babamots Y1 Bajor\n\n15) Felix: B G1 Felix\n\n16) Babamots: Build G2 Babamots\n\n17) Felix: Build G2 Savor\n\n18) Babamots: Move B2 Bajor Rim\n\n19) Felix: Sacrifice G2 Savor\nBuild B1 Rim\nBuild B3 Felix\n\n20) Babamots: Discover G2 Babamots Y1 Pakled\n\n21) Felix: Discover B3 Felix R3 Range\n\n22) Babamots: Sacrifice G3 Babamots\nBuild G2 Pakled\nBuild G2 Pakled\nBuild G3 Babamots\n\n23) Felix: Sacrifice G1 Savor\nBuild B3 Range\n\n24) Babamots: Trade B2 R2 Rim\n\n25) Felix: Sacrifice G3 Felix\nBuild B2 Felix\nBuild B3 Rim\nBuild G1 Felix\n\n26) Babamots: Sacrifice G3 Babamots\nBuild R1 Babamots\nBuild G3 Babamots\nBuild G3 Babamots\n\n27) Felix: Sacrifice B2 Rim\nTrade B3 R3 Rim\nTrade B3 Y3 Range\n\n28) Babamots: Sacrifice G3 Babamots\nBuild R1 Rim\nBuild R2 Babamots\nBuild G3 Babamots\n\n29) Felix: Sacrifice Y3 Range\nMove G1 Felix Rim\nMove G1 Rim Pakled\nMove G1 Pakled Babamots\nCatastrophe Babamots Green\n\n30) Babamots: Build R2 Rim\nCatastrophe Rim R\n\tBabamots: Heck. I need to play when I can focus or this is going to happen again.\n\tFelix: I hear you. I tend to rush my moves too. Take your time though, no pressure from me! And you&#39;re not conquered yet; I&#39;m still in a fairly weak position. This has been an interesting game!\n\n31) Felix: Build B2 Rim\n\tBabamots: Yeah, I make things interesting by not noticing any threats :-P.\n\n32) Babamots: Discover G2 Pakled Y3 Cardassia\n\tBabamots: I&#39;ve got three presentations to give this week, and I&#39;m totally unprepared for two of them. If I make any moves before Monday, you can tell me to get back to work.\n\tFelix: Haha, you know you won&#39;t be able to resist making a move before then. You have to take breaks from presentation prep at some point! Homeworlds is more important anyway. Priorities, man ;)\n\n33) Felix: Discover B2 Felix G3 Rykor\n\n34) Babamots: Move G2 Pakled Rim\n\tFelix: Hope your presentations went well!\n\tBabamots: There&#39;s one more to go. It&#39;s the longest and there&#39;s the least to say.\n\tDraw5PlayAll: Cardassia is the only reference I know.\n\n35) Felix: Build B3 Rim\n\n36) Babamots: Sacrifice G2 Pakled\nBuild G1 Rim\nBuild G1 Rim\nCatastrophe Rim G\n\n37) Felix: Sacrifice B2 Rykor\nTrade B3 Y3 Range\nTrade B1 R1 Felix\n\n38) Babamots: Trade R1 G1 Babamots\n\n39) Felix: Move Y3 Range Felix\n\tFelix: Very nice move! Didn&#39;t anticipate that one.\n\n40) Babamots: Build G1 Cardassia\n\tBabamots: It was a high cost to me, but after a lot of thought, nothing else was looking promising.\n\n41) Felix: Build G2 Felix\n\tFelix: Very promising. I&#39;m beginning to sweat!\n\tBabamots: Darn! I had my move entered and then it wasn&#39;t my turn anymore.\n\n42) Babamots: Build G2 Babamots\n\tFelix: Sorry about that! To be fair, it only took me about 40 seconds to undo my move\n\n43) Felix: Discover G2 Felix B3 Bazoik\n\tBabamots: No problem. If you&#39;re quicker than me, so be it. I&#39;ve got an alert on my phone for when I get SDG email, so I can move pretty promptly if I&#39;m focused.\n\n44) Babamots: Trade G1 Y1 Babamots\n\n45) Felix: Build R1 Felix\n\n46) Babamots: Discover R2 Babamots Y1 Iconia\n\tFelix: Nice recovery. I wanted to badly to capitalize on your lack of a large, but my hands were tied\n\n47) Felix: Build R2 Felix\n\n48) Babamots: Build R2 Babamots\n\n49) Felix: M R1 Felix Bazoik\n\n50) Babamots: Sacrifice G2 Cardassia\nBuild R3 Babamots\nBuild R3 Iconia\n\n51) Felix: B R3 Bazoik\n\n52) Babamots: Trade R1 B1 Babamots\n\n53) Felix: M R2 Felix Cardassia\n\n54) Babamots: Move R3 Iconia Cardassia\n\n55) Felix: T R3 G3 Bazoik\n\n56) Babamots: Sacrifice G2 Babamots\nBuild R1 Babamots\nBuild R3 Iconia\n\n57) Felix: D R2 Cardassia G1 Lost\n\n58) Babamots: Trade R2 G2 Babamots\n\n59) Felix: Sacrifice G3 Bazoik\nBuild G2 Bazoik\nBuild G3 Bazoik\nBuild R2 Bazoik\n\n60) Babamots: Build G3 Babamots\n\n61) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild G3 Felix\nBuild Y1 Felix\n\tBabamots: Well, that&#39;s given me a lot to think about. It&#39;s been nice to have a quick back and forth, but I think I&#39;ll make a better choice in the morning.\n\n62) Babamots: Discover Y1 Babamots B1 Bynaus\n\n63) Felix: Move Y3 Felix Bazoik\n\tFelix: I should probably be taking more time to think about my moves. I&#39;ve fully squandered that opportunity I had!\n\n64) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bynaus\nBuild B2 Babamots\nBuild G3 Babamots\n\n65) Felix: Move G3 Bazoik Bynaus\n\n66) Babamots: Sacrifice Y1 Bynaus\nDiscover Y2 Bynaus B2 Vulcan\n\n67) Felix: Sacrifice G3 Felix\nBuild Y1 Bazoik\nBuild Y2 Felix\nBuild G3 Felix\n\n68) Babamots: Move R3 Babamots Lost\n\n69) Felix: T G3 B3 Bynaus\n\n70) Babamots: Sacrifice B1 Babamots\nTrade R3 G3 Iconia\n\n71) Felix: B R3 Felix\n\n72) Babamots: Move B2 Babamots Iconia\n\n73) Felix: M G2 Bazoik Bynaus\n\n74) Babamots: Sacrifice G3 Babamots\nBuild B1 Iconia\nBuild B3 Iconia\nBuild G3 Babamots\n\n75) Felix: Sacrifice Y2 Felix\nMove R2 Lost Vulcan\nMove G2 Bazoik Bynaus\n\n76) Babamots: Sacrifice B3 Iconia\nTrade G2 Y2 Babamots\nTrade Y2 G2 Vulcan\nTrade B2 Y2 Iconia\n\n77) Felix: M Y1 Bazoik Iconia\n\n78) Babamots: Sacrifice R2 Iconia\nAttack Y1 Iconia\nAttack R2 Vulcan\n\n79) Felix: S Y3 Bazoik\nM Y1 Felix Bazoik\nM Y1 Bazoik Iconia\nC Iconia Yellow\nD B3 Bynaus G3 Grintok\n\n80) Babamots: Trade G3 Y3 Babamots\n\tFelix: Looks like all the dominoes are lining up :)\n\tBabamots: It&#39;s a ticklish spot, but I&#39;m not quite doomed yet, am I? Maybe you can see a few moves deeper.\n\tFelix: Oh no, haha, I don&#39;t think you&#39;re doomed at all. There&#39;s just a lot of pieces on the board, so something is probably going to blow up soon!\n\tBabamots: Well, here comes a wild move. I&#39;m a little desperate to hold onto yellow and I think it&#39;s worth the price.\n\n81) Felix: S G2 Bynaus\nB B1 Grintok\nB B2 Grintok\n\n82) Babamots: Trade R2 Y2 Vulcan\n\tFelix: Good move! Very creative. I didn&#39;t think you could get both Y2s like that\n\n83) Felix: T B1 Y1 Grintok\n\n84) Babamots: Sacrifice G2 Vulcan\nBuild Y1 Vulcan\nBuild G2 Cardassia\n\tDraw5PlayAll: Bynaus from 11001001?\n\tBabamots: Yes. All I really remember about that episode is Riker falling in love with Minuet the hologram.\n\n85) Felix: M B3 Grintok Vulcan\n\n86) Babamots: Sacrifice Y3 Babamots\nMove R3 Cardassia Felix\nMove G2 Cardassia Felix\nMove G1 Cardassia Felix\nCatastrophe Felix G\n\n87) Felix: S R1 Felix\nA R3 Felix\n\n88) Babamots: Sacrifice Y2 Vulcan\nMove R3 Lost Grintok\nDiscover Y1 Vulcan G1 Galorndon\n\n89) Felix: Sacrifice B2 Grintok\nTrade R2 Y2 Bazoik\nTrade R3 G3 Felix\n\tBabamots: I felt like I was under your thumb while you had all that yellow. I&#39;m going to try to make sure that doesn&#39;t happen again. :-)\n\tBabamots: I felt like I was under your thumb while you had all that yellow. I&#39;m going to try to make sure that doesn&#39;t happen again. :-)\n\tBabamots: My phone likes to repeat itself. \n\n90) Babamots: Attack Y1N Grintok\n\tFelix: Yeah... I&#39;m not liking this at all! I should never have let this happen, haha\r\n\n\n91) Felix: Sacrifice Y2 Bazoik\nMove B3 Vulcan Bynaus\nMove B3 Bynaus Babamots\n\n92) Babamots: Sacrifice Y2 Babamots\nMove R3 Grintok Galorndon\nMove R3 Galorndon Babamots\n\tBabamots: Wish I could say this was the first time I had done that. I feel sick. I might need a couple of days before I can bear to look again. \n\tFelix: Take your time. I&#39;ve done the same thing many times! It&#39;s so easy to overlook\n\n93) Felix: Sacrifice R3 Felix\nAttack R3 Babamots\nAttack R1 Babamots\nPass\n\tBabamots: It&#39;s painful to look at this game and continuing to play is sort of an insult to you by suggesting that I could beat you from here. So honestly I should resign, but that would feel like a rage quit. I&#39;ll stick around for a few more moves and see how I feel.\n\n\tFelix: Thank you. Really great game! This was a wild one and you played really well. Good luck and hope to see you in the final!\n\tDraw5PlayAll: So what is the status on the tourney? I lost the google doc link\n\tBabamots: https://docs.google.com/spreadsheets/d/e/2PACX-1vTS8qjWyHSJHPXNsbwf3mBk26NugW7ASTKAfmXhgjIrcCjhaXtM-OYxpCEioJhhC4ZLvmEmfmdKaWPc/pubhtml?gid=0&amp;single=true\n\nHomeworlds Online (SDG# 33902)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.18, Ended: 2018.4.19\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B2 R3 G3\n\tFelix: Good luck and have fun!\n\tDraw5PlayAll: Are you just trying to annoy me?\n\n3) Felix: B G1 Felix\n\tFelix: Um, no? What makes you think I am?\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: I always wish my opponents good luck and much fun\n\tDraw5PlayAll: No, your B3R1 + G3 setup.\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tFelix: What makes that annoying?\n\tDraw5PlayAll: Because that is what I always do. So much so that I am considering changing my name to B3R1G3.\n\n7) Felix: B G1 Felix\n\tFelix: Huh, didn&#39;t know that. I obviously haven&#39;t studied my opponents\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Felix: Trade G1 R1 Felix\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) Felix: Build R2 Felix\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) Felix: Discover R2 Felix B2 Out\n\n14) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n15) Felix: Build G1 Felix\n\n16) Draw5PlayAll: Discover B2 Draw5playall G1 Whatelse\n\n17) Felix: Move G1 Felix Out\n\n18) Draw5PlayAll: Build B1 Whatelse\n\n19) Felix: B R2 Out\n\n20) Draw5PlayAll: Trade B2 Y2 Whatelse\n\n21) Felix: Trade R2 Y2 Out\n\n22) Draw5PlayAll: Build B1 Whatelse\n\n23) Felix: Build R2 Out\n\n24) Draw5PlayAll: Move R1 Draw5playall Whatelse\n\n25) Felix: Discover R2 Out B1 Chronos\n\n26) Draw5PlayAll: Build B2 Whatelse\n\n27) Felix: Build Y1 Out\n\n28) Draw5PlayAll: Build Y2 Whatelse\n\n29) Felix: Build Y3 Felix\n\tDraw5PlayAll: I need not waste a B2\n\n30) Draw5PlayAll: Build Y3 Draw5playall\n\n31) Felix: Move Y1 Out Chronos\n\n32) Draw5PlayAll: Discover B2 Whatelse Y3 Dontyoudare\n\n33) Felix: S G3 Felix\nB R2 Felix\nB R3 Out\nB R3 Chronos\n\n34) Draw5PlayAll: Build B3 Whatelse\n\n35) Felix: D R1 Felix G2 Windy\n\tDraw5PlayAll: I think I will lose\n\tDraw5PlayAll: Actually...\n\n36) Draw5PlayAll: Move B1 Whatelse Draw5playall\n\n37) Felix: T R3 G3 Chronos\n\tDraw5PlayAll: This will be close.\n\n38) Draw5PlayAll: Trade B3 R3 Whatelse\n\n39) Felix: S Y2 Out\nM R2 Out Whatelse\nM R1 Windy Whatelse\nC Whatelse Red\n\tFelix: Indeed\n\n40) Draw5PlayAll: Trade Y2 R2 Whatelse\n\tDraw5PlayAll: Thank you SOOO much!! I have always wanted one of those!\n\n41) Felix: S Y1 Felix\nM R3 Out Whatelse\n\tFelix: Sorry, I&#39;ma have to take that back\n\n42) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Whatelse\nBuild R1 Whatelse\nBuild B3 Dontyoudare\nCatastrophe Whatelse Red\n\n43) Felix: Move G3 Chronos Dontyoudare\n\n44) Draw5PlayAll: Discover B3 Dontyoudare R1 Enteranddie\n\tDraw5PlayAll: Sometimes desperation actually works.\n\n45) Felix: Sacrifice G1 Out\nBuild Y1 Chronos\n\n46) Draw5PlayAll: Sacrifice B2 Dontyoudare\nTrade Y3 G3 Draw5playall\nTrade B1 R1 Draw5playall\n\n47) Felix: Move G3 Dontyoudare Whatelse\n\n48) Draw5PlayAll: Discover Y2 Whatelse G2 Leavemealone\n\n49) Felix: T Y1 G1 Chronos\n\n50) Draw5PlayAll: Build Y1 Leavemealone\n\n51) Felix: B Y2 Chronos\n\n52) Draw5PlayAll: Sacrifice B1 Whatelse\nTrade Y2 R2 Leavemealone\n\n53) Felix: Build R3 Chronos\n\n54) Draw5PlayAll: Build R3 Leavemealone\n\n55) Felix: S Y2 Chronos\nM R2 Chronos Draw5playall\nM R3 Chronos Draw5playall\nC Draw5playall Red\n\n56) Draw5PlayAll: Build Y2 Draw5playall\n\n57) Felix: Trade R2 G2 Felix\n\n58) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n59) Felix: Build G1 Felix\n\n60) Draw5PlayAll: Move B1 Draw5playall Enteranddie\n\n61) Felix: Build G2 Chronos\n\n62) Draw5PlayAll: Trade B3 G3 Enteranddie\n\n63) Felix: Trade G2 B2 Chronos\n\n64) Draw5PlayAll: Build B1 Enteranddie\n\n65) Felix: Sacrifice B2 Chronos\nTrade G2 B2 Felix\nTrade G3 B3 Whatelse\n\n66) Draw5PlayAll: Build B2 Enteranddie\n\n67) Felix: Build B3 Whatelse\n\n\tFelix: Good game! \n\nHomeworlds Online (SDG# 33792)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.3.18, Ended: 2018.4.25\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B3 Y1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\tdragon76n: Hi Wil, I&#39;m back for another challenge. :)\n\twil: thx for the game, good luck\n\n3) dragon76n: Build G1 Dragon76n\n\n4) wil: Build G1 Wil\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) wil: Trade G1 Y1 Wil\n\tdragon76n: Good luck, have fun\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) wil: Build Y2 Wil\n\n9) dragon76n: Trade Y2 G2 Dragon76n\n\twil: the copycat stage\n\n10) wil: Trade Y1 B1 Wil\n\n11) dragon76n: Build G1 Dragon76n\n\tdragon76n: Hmm... copycat stage ended already? Did I take the wrong route? (Tips are welcome. I&#39;ve been beaten a lot in Homeworlds.) \n\n12) wil: Build B1 Wil\n\twil: It could be...and while your move was/is one of my favs...in many situations...in this one, I can now make an attempt at monopolizing the economy of change...and either you get on board...or lose to my queen factory upcoming...even though getting on board means losing the power of that G2 you just acquired.\n\n13) dragon76n: Trade G2 B2 Dragon76n\n\twil: btw...you don&#39;t learn hardly anything by winning...you learn mostly by losing...I lost probably 90% of my first 50 games and 80% of the next 50...games I won were against lesser players, by accident or by capitalizing on mistakes of others...(and actually still are)\n\n14) wil: Discover B1 Wil Y3 Y3\n\tdragon76n: Sorry it&#39;s taken so long to get back to this turn.  \n\twil: lol, no worries...life is a thing\n\n15) dragon76n: Discover B2 Dragon76n G2 Gretwo\n\n16) wil: Trade B1 R1 Wil\n\n17) dragon76n: Build B1 Gretwo\n\n18) wil: Build G1 Wil\n\n19) dragon76n: Trade B2 R2 Gretwo\n\n20) wil: Move G1 Wil Y3\n\n21) dragon76n: Build B2 Gretwo\n\n22) wil: Build B2 Y3\n\n23) dragon76n: Trade B2 Y2 Gretwo\n\n24) wil: Discover Y2 Wil G3 G3\n\n25) dragon76n: Build B2 Gretwo\n\n26) wil: Discover B1 Y3 G2 G2\n\n27) dragon76n: Discover B1 Gretwo G1 Greone\n\n28) wil: Build G2 Wil\n\n29) dragon76n: Sacrifice G3 Dragon76n\nBuild B2 Greone\nBuild B3 Gretwo\nBuild G3 Dragon76n\n\n30) wil: Build B3 G2\n\n31) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB Y1 Gretwo\nB Y3 Dragon76n\n\n32) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 G3\nBuild R1 Wil\n\n33) dragon76n: D Y3 Dragon76n R2 Redtwo\n\n34) wil: Move Y2 G3 G2\n\n35) dragon76n: T B2 R2 Greone\n\n36) wil: Move R1 Wil G3\n\n37) dragon76n: Move Y3 Redtwo Y3\n\n38) wil: Discover B2 Y3 R2 R2\n\n39) dragon76n: Build B2 Greone\n\n40) wil: Trade B3 R3 G2\n\n41) dragon76n: Move B2 Gretwo Y3\n\n42) wil: Build B3 G2\n\n43) dragon76n: Move Y1 Gretwo Greone\n\n44) wil: Sacrifice G3 Wil\nBuild R1 G3\nBuild R3 G2\nBuild R3 Wil\n\n45) dragon76n: Move B2 Greone Y3\n\n46) wil: Build G3 Wil\n\n47) dragon76n: Sacrifice Y3 Y3\nMove B1 Greone G3\nMove B1 G3 Wil\nMove B2 Y3 Wil\n\n48) wil: Build Y3 G3\n\n49) dragon76n: Sacrifice R2 Gretwo\nAttack G2 Wil\nAttack R1 Wil\n\n50) wil: Sacrifice R3 G2\nAttack R1 Wil\nAttack G2 Wil\nAttack B2 Wil\n\n51) dragon76n: Move B2 Y3 Wil\nCatastrophe Wil Blue\n\n52) wil: Sacrifice Y3 G3\nMove G2 Wil Dragon76n\nMove G3 Wil Dragon76n\nMove B3 G2 Dragon76n\nCatastrophe Dragon76n G\n\n53) dragon76n: M B3 Gretwo Dragon76n\n\twil: Hey...those are my ships...\n\n54) wil: Sacrifice R3 Wil\nAttack B3 Dragon76n\nAttack Y1 Dragon76n\nPass\n\tdragon76n: I&#39;m not sure which ships you&#39;re talking about. I don&#39;t see any. ;)\n\n\twil: After the untimely destruction of half our binary star, our planets were spinning out of orbit and we&#39;ve only left a small military attache to handle things...but we really like what you&#39;ve done so far with your homeworld and appreciate that you&#39;ve given us the power to change things for the better in this galaxy.  \n\tdragon76n: Lol. Good game. :)\n\twil: challenge me anytime...  I enjoy playing.\n\nHomeworlds Online (SDG# 33907)\nStarted: 2018.3.19, Ended: 2018.8.20\nParticipants: dragon76n (S), zeder (N)\nWinner: dragon76n\n\n1) zeder: Homeworld Y1 B2 G3\n\n2) dragon76n: Homeworld B3 Y1 G3\n\n3) zeder: Build G1 Zeder\n\n4) dragon76n: Build G1 Dragon76n\n\n5) zeder: Trade G1 R1 Zeder\n\n6) dragon76n: Trade G1 Y1 Dragon76n\n\n7) zeder: Build G1 Zeder\n\n8) dragon76n: Build Y2 Dragon76n\n\n9) zeder: Trade G3 Y3 Zeder\n\n10) dragon76n: D Y2 Dragon76n G2 Gretwo\n\n11) zeder: Build Y2 Zeder\n\n12) dragon76n: B Y2 Gretwo\n\n13) zeder: Discover Y2 Zeder G3 Azhanti\n\n14) dragon76n: Trade Y1 R1 Dragon76n\n\n15) zeder: Build G1 Zeder\n\n16) dragon76n: Build G1 Dragon76n\n\n17) zeder: Build G2 Zeder\n\n18) dragon76n: Discover Y2 Gretwo B3 Bluthr\n\n19) zeder: Discover G1 Zeder B3 Floop\n\n20) dragon76n: Discover G1 Dragon76n B2 Blutwo\n\n21) zeder: Move Y2 Azhanti Blutwo\n\n22) dragon76n: Build G2 Dragon76n\n\n23) zeder: Sacrifice R1 Zeder\nAttack G1 Blutwo\n\n24) dragon76n: Sacrifice G3 Dragon76n\nBuild Y1 Bluthr\nBuild Y3 Gretwo\nBuild G3 Dragon76n\n\n\tdragon76n: Hi Zeder, did you forget about our game at SDG?\n\nHomeworlds Online (SDG# 33911)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.3.20, Ended: 2018.4.2\nParticipants: bhorner (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\tts52: Have a good game!\n\n2) bhorner: Homeworld B2 R1 G3\n\tBabamots: Am I correct that this game is for the tournament?\n\n3) ts52: Build G1 Ts52\n\tbhorner: Yes Babamots, just filled out the game start form as well.\n\tbhorner: Good luck ts52!\n\n4) bhorner: Build G1 Bhorner\n\n5) ts52: Trade G1 R1 Ts52\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) ts52: Build R1 Ts52\n\n8) bhorner: Build B1 Bhorner\n\n9) ts52: Build R2 Ts52\n\n10) bhorner: Trade B1 Y1 Bhorner\n\n11) ts52: Discover R2 Ts52 G3 Kermit\n\n12) bhorner: Build B1 Bhorner\n\n13) ts52: Build R2 Ts52\n\tbhorner: This hant started well for me.  :)\n\n14) bhorner: Discover B1 Bhorner Y3 Sun\n\tts52: It&#39;s still early yet. Though your choice to make it a small universe is interesting.\n\n15) ts52: Move R2 Ts52 Sun\n\n16) bhorner: D B1 Sun Y2 Star\n\n17) ts52: Build R2 Kermit\n\n18) bhorner: B B2 Bhorner\n\n19) ts52: Build R3 Ts52\n\n20) bhorner: D B1 Bhorner R3 Angry\n\n21) ts52: Trade R3 B3 Ts52\n\n22) bhorner: S G3 Bhorner\nB B2 Star\nB B3 Bhorner\nB B3 Angry\n\n23) ts52: Move B3 Ts52 Kermit\n\n24) bhorner: T B1 Y1 Angry\n\n25) ts52: Trade R2 Y2 Kermit\n\n26) bhorner: Trade B3 G3 Bhorner\n\n27) ts52: Build R2 Kermit\n\n28) bhorner: Sacrifice G3 Bhorner\nBuild Y1 Angry\nBuild Y3 Bhorner\nBuild Y3 Angry\n\n29) ts52: Sacrifice G3 Ts52\nBuild R3 Ts52\nBuild R3 Sun\nBuild B1 Kermit\n\n30) bhorner: Discover Y1 Bhorner G3 Grass\n\n31) ts52: Trade R3 G3 Ts52\n\n32) bhorner: Trade B2 G2 Bhorner\n\n33) ts52: Build R3 Kermit\n\n34) bhorner: Move B2 Star Grass\n\n35) ts52: Sacrifice Y2 Kermit\nMove B3 Kermit Bhorner\nMove R3 Kermit Bhorner\n\n36) bhorner: A R3 Bhorner\n\n37) ts52: Sacrifice R3 Sun\nAttack R3S Bhorner\nAttack Y3S Bhorner\nAttack G2S Bhorner\n\tbhorner: GG!  Just in time.  Did you realize you could have done that earlier?  :)\r\nIf you hadn&#39;t done it this move:\r\ns y3 angry\r\n  m y1 angry ts52\r\n  m y1 angry ts52\r\n  m y1 grass ts52\r\n  c yellow ts52\r\ns y3 bhorner\r\n  m b1 mad ts52\r\n  m b2 star ts52\r\n  m b3 angry ts52\r\n  c blue ts5\n\n\tts52: Thanks. I thought about it earlier, but wanted the extra r3. Looking back I could&#39;ve done it with an r2, but it would&#39;ve taken the same number of turns. I knew I had to act quickly though.\n\nHomeworlds Online (SDG# 33825)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.20, Ended: 2018.6.2\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H Y3 B1 G3 Dlwillson\n\n2) Trydnt: Homeworld G2 R1 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build B1 Trydnt\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Trydnt: Build B2 Trydnt\n\n7) dlwillson: B B2 Dlwillson\n\n8) Trydnt: Trade B2 Y2 Trydnt\n\n9) dlwillson: T B1 R1 Dlwillson\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) dlwillson: Build R2 Dlwillson\n\n12) Trydnt: Discover R1 Trydnt G3 G3\n\n13) dlwillson: D R1 Dlwillson G2 Field\n\n14) Trydnt: Build R2 G3\n\n15) dlwillson: B R2 Dlwillson\n\n16) Trydnt: Build R3 G3\n\n17) dlwillson: Discover R2 Dlwillson Y2 Sol\n\n18) Trydnt: Sacrifice R1 G3\nPass\n\n19) dlwillson: Build G1 Dlwillson\n\n20) Trydnt: Build B1 Trydnt\n\n21) dlwillson: B R1 Dlwillson\n\n22) Trydnt: Build Y1 Trydnt\n\n23) dlwillson: B R3 Field\n\n24) Trydnt: Sacrifice B1 Trydnt\nTrade R2 Y2 G3\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild R3 Sol\nBuild G1 Dlwillson\n\n26) Trydnt: Build Y1 G3\n\n27) dlwillson: Sacrifice B2 Dlwillson\nTrade R3 B3 Field\nTrade R3 B3 Sol\n\n28) Trydnt: Build R3 G3\n\n29) dlwillson: Move B3 Sol Dlwillson\n\n30) Trydnt: Move R3 G3 Sol\n\n31) dlwillson: B R3 Field\n\n32) Trydnt: Attack R2 Sol\n\n33) dlwillson: M R1 Dlwillson Sol\n\n34) Trydnt: Discover R2 Sol Y3 Y3\n\n35) dlwillson: T R1 Y1 Field\n\n36) Trydnt: Build Y3 Trydnt\n\n37) dlwillson: M R3 Field Y3\n\n38) Trydnt: Sacrifice R2 Y3\nAttack R1 Sol\nPass\n\n39) dlwillson: B B1 Field\n\n40) Trydnt: Build B1 Trydnt\n\n41) dlwillson: S B1 Field\nT R3 G3 Y3\n\n42) Trydnt: Discover B3 Trydnt G3 G33\n\n43) dlwillson: D G1 Dlwillson B2 Sea\n\n44) Trydnt: Move R1 Sol G33\n\n45) dlwillson: S G3 Y3\nB G1 Sea\nB Y3 Field\nB G2 Dlwillson\n\n46) Trydnt: Sacrifice Y2 Trydnt\nDiscover R3 Sol G3 G333\nMove Y1 Trydnt G333\n\n47) dlwillson: Trade G2 Y2 Dlwillson\n\n48) Trydnt: Build Y2 G333\n\n49) dlwillson: Build G2 Sea\n\n50) Trydnt: Move R3 G333 Sea\n\n51) dlwillson: S Y3 Field\nM G1 Sea G3\nM G1 Sea G3\nM G2 Sea G3\nC G3 G\n\n52) Trydnt: Move Y1 G333 Sea\n\n53) dlwillson: M R2 Dlwillson Field\n\n54) Trydnt: Build Y1 Trydnt\n\n55) dlwillson: D Y1 Field G3 Forest\n\n56) Trydnt: Move Y1 Trydnt G33\n\n57) dlwillson: Move Y2 Dlwillson Field\n\n58) Trydnt: Trade Y1 G1 Sea\n\n59) dlwillson: B R1 Dlwillson\n\n60) Trydnt: Build Y1 G33\n\n61) dlwillson: T R2 G2 Dlwillson\n\n62) Trydnt: Build R2 G33\n\n63) dlwillson: S G2 Dlwillson\nB Y2 Forest\nB Y3 Field\n\n64) Trydnt: Sacrifice Y2 G333\nMove Y1 G33 Field\nMove Y1 G33 Field\nCatastrophe Field Y\n\n65) dlwillson: B B1 Field\n\n66) Trydnt: Build B2 G33\n\n67) dlwillson: T B3 Y3 Field\n\n68) Trydnt: Trade R3 G3 Sea\n\n69) dlwillson: Build R2 Field\n\n70) Trydnt: Trade R1 Y1 G33\n\n71) dlwillson: B G1 Dlwillson\n\n72) Trydnt: Trade G1 Y1 Sea\n\n73) dlwillson: B G1 Dlwillson\n\n74) Trydnt: Build Y2 Sea\n\n75) dlwillson: Build Y2 Field\n\n76) Trydnt: Discover B2 G33 G2 G2\n\n77) dlwillson: Discover R2 Field B3 Sky\n\n78) Trydnt: Build B2 G2\n\n79) dlwillson: T B3 R3 Dlwillson\n\n80) Trydnt: Build B3 Trydnt\n\n81) dlwillson: M G1 Dlwillson Field\n\n82) Trydnt: Move G3 Sea Sky\n\n83) dlwillson: Sacrifice Y1 Forest\nMove R2 Sky Field\n\n84) Trydnt: Build Y1 G33\n\n85) dlwillson: M G1 Dlwillson Sea\n\n86) Trydnt: Move Y1 Sea Sky\n\n87) dlwillson: Move Y2 Forest Sea\n\n88) Trydnt: Build G3 Sky\n\n89) dlwillson: Sacrifice Y2 Field\nMove G1 Field Sky\nMove G1 Sea Sky\nCatastrophe Sky G\n\n90) Trydnt: Build Y2 Trydnt\n\n91) dlwillson: Sacrifice R1 Dlwillson\nAttack Y2 Sea\n\n92) Trydnt: Move B3 Trydnt Sky\n\n93) dlwillson: B R1 Dlwillson\n\n94) Trydnt: Trade B3 R3 Sky\n\n95) dlwillson: B B3 Field\n\n96) Trydnt: Build R1 G33\n\n97) dlwillson: Sacrifice Y3 Field\nDiscover B3 Field G3 Forest\nMove R2 Field Forest\nMove Y2 Sea Forest\n\n98) Trydnt: Sacrifice Y2 Trydnt\nDiscover B2 G2 Y3 Y3\nDiscover B2 G2 R3 R3\n\n99) dlwillson: T R3 G3 Dlwillson\n\n100) Trydnt: Trade B2 G2 Y3\n\n101) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB Y2 Forest\nB B2 Forest\n\n102) Trydnt: Sacrifice G2 Y3\nBuild Y3 Sky\nPass\n\n103) dlwillson: T R3 G3 Dlwillson\n\n104) Trydnt: Move Y3 Sky Field\n\n105) dlwillson: T R2 G2 Field\n\n106) Trydnt: Sacrifice R2 G33\nAttack G2 Field\nAttack B1 Field\n\n107) dlwillson: B R2 Forest\n\n108) Trydnt: Sacrifice G2 Field\nBuild R2 Sky\nBuild R3 G33\n\n109) dlwillson: T R2 G2 Forest\n\n110) Trydnt: Move R3 G33 Sea\n\n111) dlwillson: D Y2 Sea G1 Grass\n\n112) Trydnt: Build R2 G33\n\n113) dlwillson: Build G1 Forest\n\n114) Trydnt: Move R3 Sky Grass\n\n115) dlwillson: M Y2 Grass Forest\n\n116) Trydnt: Sacrifice Y3 Field\nMove B1 Trydnt Forest\nMove B1 Field Forest\nMove R3 Sea Forest\nCatastrophe Forest B\n\n117) dlwillson: S Y2 Forest\nD Y2 Forest Y2 Field\nD Y2 Forest B2 Sea\n\n118) Trydnt: Build Y3 Trydnt\n\n\nHomeworlds Online (SDG# 33849)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.20, Ended: 2018.4.4\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\tFelix: Hello again :) Good luck and have fun\n\n5) Trydnt: Trade G1 R1 Trydnt\n\tTrydnt: hello indeed my old friend. good luck to you too. and I always do\n\n6) Felix: Trade G1 R1 Felix\n\n7) Trydnt: Build R2 Trydnt\n\n8) Felix: Build R2 Felix\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) Felix: Trade R2 Y2 Felix\n\n11) Trydnt: Build Y1 Trydnt\n\n12) Felix: Build Y1 Felix\n\n13) Trydnt: Build Y2 Trydnt\n\n14) Felix: Discover Y1 Felix B1 Out\n\n15) Trydnt: Trade Y1 B1 Trydnt\n\n16) Felix: Build Y1 Felix\n\n17) Trydnt: Build B1 Trydnt\n\n18) Felix: Discover Y1 Felix G1 Rim\n\n19) Trydnt: Sacrifice Y2 Trydnt\nDiscover R2 Trydnt Y3 Y3\nDiscover B1 Trydnt Y3 Y33\n\n20) Felix: Build G1 Felix\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild B2 Y33\nBuild B2 Y33\nBuild B3 Trydnt\n\n22) Felix: Build Y2 Rim\n\n23) Trydnt: Trade B3 Y3 Trydnt\n\n24) Felix: Sacrifice Y2 Rim\nMove Y1 Rim Y33\nMove Y1 Y33 Trydnt\n\n25) Trydnt: Trade Y3 G3 Trydnt\n\n26) Felix: Sacrifice G3 Felix\nBuild Y2 Trydnt\nBuild Y3 Out\nBuild R1 Felix\n\n27) Trydnt: Attack Y2 Trydnt\n\n28) Felix: Move Y3 Out Y3\n\n29) Trydnt: Sacrifice Y2 Trydnt\nDiscover R2 Y3 Y2 Y2\nDiscover B2 Y33 G1 G1\n\n30) Felix: Move Y3 Y3 G1\n\tFelix: This is such a dumb attack, haha.\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild B3 Y33\nBuild B3 Trydnt\nBuild Y3 Trydnt\n\n32) Felix: Sacrifice R1 Felix\nAttack B2 G1\n\n33) Trydnt: Sacrifice B2 Y33\nTrade B1 G1 Trydnt\nTrade Y1 R1 Trydnt\n\n34) Felix: Move Y3 G1 Felix\n\n35) Trydnt: Attack Y1 Trydnt\n\n36) Felix: Move Y2 Felix G1\n\n37) Trydnt: Discover B3 Trydnt G3 G3\n\n38) Felix: Build G2 Felix\n\n39) Trydnt: Move Y1 Trydnt G3\n\n40) Felix: Move G2 Felix Out\n\n41) Trydnt: Build Y1 G3\n\n42) Felix: Build R2 Felix\n\n43) Trydnt: Build G2 Trydnt\n\n44) Felix: Move R2 Felix Out\n\n45) Trydnt: Move R1 Trydnt G3\n\n46) Felix: Build G2 Felix\n\n47) Trydnt: Trade B3 G3 Y33\n\n48) Felix: Build G3 Out\n\n49) Trydnt: Build B1 G3\n\n50) Felix: Sacrifice G3 Out\nBuild G3 Out\nBuild R2 Felix\nBuild R3 Out\n\n51) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Y2\nBuild R3 G3\n\n52) Felix: Discover G3 Out B3 Wanton\n\n53) Trydnt: Move R3 G3 G1\n\n54) Felix: Sacrifice Y2 G1\nDiscover B2 G1 G2 G2\nMove R2 Out Wanton\n\n55) Trydnt: Move Y1 G3 G1\n\n56) Felix: Build B2 G2\n\n57) Trydnt: Build Y2 G1\n\n58) Felix: Sacrifice G1 Felix\nBuild G1 Wanton\n\n59) Trydnt: Move B1 Y33 G1\n\n60) Felix: Move G2 Out Y33\n\n61) Trydnt: Sacrifice R1 G3\nAttack G2 Y33\n\n62) Felix: Build R1 Wanton\n\n63) Trydnt: Move B1 G3 Y2\n\n64) Felix: Move Y1 Out Wanton\n\n65) Trydnt: Move G2 Y33 Y2\n\n66) Felix: Move R1 Wanton Y2\n\n67) Trydnt: Move R2 Y2 G3\n\n68) Felix: Attack B1 Y2\n\n69) Trydnt: Sacrifice R2 G3\nAttack R1 Y2\nAttack B1 Y2\n\n70) Felix: Build R2 Wanton\n\n71) Trydnt: Sacrifice G3 Y33\nBuild G3 Y2\nBuild Y3 G3\nPass\n\n72) Felix: Move G1 Wanton G1\n\n73) Trydnt: Sacrifice Y3 G3\nMove Y1 G1 Felix\nMove Y2 G1 Felix\nMove B1 G1 Felix\nCatastrophe Felix Y\n\tFelix: YOu&#39;ve got me in quite a pickle!\n\n74) Felix: Attack B1 Felix\n\n75) Trydnt: Sacrifice Y3 Trydnt\nMove B3 G3 G1\nMove B3 G1 Felix\nMove B1 Y2 Felix\nCatastrophe Felix B\n\n\tFelix: Good game! Very well played :)\n\tTrydnt: thanks! I thought you had me for a bit there\n\nHomeworlds Online (SDG# 33892)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.20, Ended: 2018.3.23\nParticipants: Trydnt (S), sharkhands (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 33827)\nStarted: 2018.3.20, Ended: 2018.4.2\nParticipants: Trydnt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B1 G3\n\n2) Trydnt: Homeworld G3 Y2 B3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build B1 Trydnt\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Trydnt: Build B2 Trydnt\n\n7) ts52: Build B2 Ts52\n\n8) Trydnt: Discover B1 Trydnt G1 G1\n\n9) ts52: Discover B1 Ts52 G3 Kermit\n\n10) Trydnt: Trade B2 Y2 Trydnt\n\n11) ts52: Build B2 Kermit\n\n12) Trydnt: Build B2 G1\n\n13) ts52: Trade B1 Y1 Kermit\n\n14) Trydnt: Move Y2 Trydnt G1\n\n15) ts52: Build G1 Ts52\n\n16) Trydnt: Build B1 Trydnt\n\n17) ts52: Build B3 Kermit\n\n18) Trydnt: Build B3 Trydnt\n\n19) ts52: Trade B3 R3 Kermit\n\n20) Trydnt: Trade B3 R3 Trydnt\n\n21) ts52: Build B3 Kermit\n\n22) Trydnt: Build B3 Trydnt\n\n23) ts52: Trade B3 Y3 Kermit\n\n24) Trydnt: Discover B3 Trydnt Y1 Y1\n\n25) ts52: Build B3 Kermit\n\n26) Trydnt: Move R3 Trydnt G1\n\n27) ts52: Sacrifice Y3 Kermit\nMove B3 Kermit G1\nMove B3 G1 Trydnt\nDiscover B2 Kermit Y1 Bigbird\n\n28) Trydnt: Sacrifice Y2 G1\nMove B1 G1 Trydnt\nCatastrophe Trydnt B\nMove B3 Y1 Trydnt\n\n29) ts52: Discover G1 Ts52 Y3 Zoe\n\n30) Trydnt: Build B1 G1\n\n31) ts52: Sacrifice G3 Ts52\nBuild B1 Bigbird\nBuild B3 Ts52\nBuild B3 Bigbird\n\n32) Trydnt: Trade B2 Y2 G1\n\n33) ts52: Trade B3 G3 Ts52\n\n34) Trydnt: Build B2 G1\n\n35) ts52: Move B2 Bigbird Zoe\n\n36) Trydnt: Move B1 G1 Zoe\n\n37) ts52: Build B3 Zoe\n\n38) Trydnt: Move B2 G1 Zoe\nCatastrophe Zoe B\n\n39) ts52: Build G1 Ts52\n\n40) Trydnt: Build B1 Trydnt\n\n41) ts52: Move B3 Bigbird Trydnt\n\n42) Trydnt: Trade B1 Y1 Trydnt\n\n\nHomeworlds Online (SDG# 33890)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.20, Ended: 2018.3.28\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld G3 Y2 B3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Trade G1 Y1 Wil\n\n6) Trydnt: Trade B1 Y1 Trydnt\n\n7) wil: Build Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: Discover Y1 Wil G3 G3\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: Build Y3 G3\n\n12) Trydnt: Build Y3 G1\n\n13) wil: Move Y3 G3 G1\n\n14) Trydnt: Trade Y2 R2 Trydnt\n\n15) wil: Build Y2 G3\n\n16) Trydnt: Move Y1 G1 G3\n\n17) wil: Build Y3 G1\n\twil: I like that we can experiment like crazy here online with weirdness...and then when I lose my numbers go down and people underate my abilities...its a win win!!\n\n18) Trydnt: Sacrifice R2 Trydnt\nAttack Y3 G1\nAttack Y1 G3\n\n19) wil: Move Y2 G3 G1\nCatastrophe G1 Y\n\twil: speaking of experimental and strange\n\n20) Trydnt: Build B1 Trydnt\n\n21) wil: Build G1 Wil\n\twil: this is such a good place to try and retry different options\n\n22) Trydnt: Sacrifice Y1 G3\nDiscover B1 Trydnt Y1 Y1\n\n23) wil: Move Y2 Wil G3\n\n24) Trydnt: Build Y2 G3\n\n25) wil: Build Y3 G3\n\n26) Trydnt: Catastrophe G3 Y\nDiscover B1 Y1 G3 G3\n\n27) wil: Trade G1 B1 Wil\n\n28) Trydnt: Trade B1 Y1 G3\n\n29) wil: Move B1 Wil G3\n\n30) Trydnt: Build Y1 G3\n\n31) wil: Build B1 G3\n\n32) Trydnt: Build Y2 G3\n\n33) wil: Trade B1 R1 G3\n\n34) Trydnt: Sacrifice Y2 G3\nDiscover Y1 G3 G2 G2\nDiscover Y1 G3 G2 G22\n\n35) wil: Build R1 G3\n\n36) Trydnt: Build Y2 G2\n\n37) wil: Build G1 Wil\n\n38) Trydnt: Build Y2 G22\n\n39) wil: Discover G1 Wil Y3 Y3\n\n40) Trydnt: Build Y3 G2\n\n41) wil: Trade G3 Y3 Wil\n\n42) Trydnt: Discover Y1 G2 G3 G33\n\n43) wil: Sacrifice Y3 Wil\nMove R1 G3 G22\nMove R1 G3 G2\nPass\n\tTrydnt: the slowest, most excruciating monopolization possible\n\n\nHomeworlds Online (SDG# 33930)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.22, Ended: 2018.4.13\nParticipants: agentofchaos (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) agentofchaos: Homeworld R2 B3 G3\n\tTrydnt: best of luck to you!\n\n3) Trydnt: Build G1 Trydnt\n\tagentofchaos: Thanks, you too\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) Trydnt: Build R2 Trydnt\n\n8) agentofchaos: Build R2 Agentofchaos\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) agentofchaos: Trade R1 Y1 Agentofchaos\n\n11) Trydnt: Build R1 Trydnt\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) Trydnt: Build G1 Trydnt\n\n14) agentofchaos: Trade G1 B1 Agentofchaos\n\n15) Trydnt: Trade G1 B1 Trydnt\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) Trydnt: Build G1 Trydnt\n\n18) agentofchaos: Discover Y1 Agentofchaos R1 Wowbolism\n\n19) Trydnt: Discover R2 Trydnt G3 G3\n\n20) agentofchaos: Build R3 Agentofchaos\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Trydnt\nBuild R3 G3\nBuild Y1 Trydnt\n\n22) agentofchaos: Sacrifice G1 Agentofchaos\nBuild Y2 Wowbolism\n\n23) Trydnt: Move Y1 Trydnt G3\n\n\nHomeworlds Online (SDG# 33814)\nStarted: 2018.3.28, Ended: 2018.4.12\nParticipants: MobyNostromo (S), deanthebean (N)\nWinner: deanthebean\n\n1) deanthebean: Homeworld G1 B2 Y3\n\n2) MobyNostromo: H B1 Y2 G3\n\tdeanthebean: Hello. Enjoy the game!\n\tMobyNostromo: Thank you!! You too!\n\n3) deanthebean: Build Y1 Deanthebean\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) deanthebean: Build Y1 Deanthebean\n\n6) MobyNostromo: B G1 Mobynostromo\n\n7) deanthebean: Trade Y3 G3 Deanthebean\n\n8) MobyNostromo: T G1 B1 Mobynostromo\n\n9) deanthebean: Trade Y1 R1 Deanthebean\n\n10) MobyNostromo: D G1 Mobynostromo Y3 Gold\n\n11) deanthebean: Build R1 Deanthebean\n\n12) MobyNostromo: B G1 Mobynostromo\n\n13) deanthebean: Move R1 Deanthebean Gold\n\n14) MobyNostromo: D G1 Gold Y1 Amber\n\n15) deanthebean: Move R1 Gold Mobynostromo\n\n16) MobyNostromo: T B1 R1 Mobynostromo\n\n17) deanthebean: Attack R1 Mobynostromo\n\n18) MobyNostromo: T G3 R3 Mobynostromo\n\n19) deanthebean: Discover R1 Deanthebean Y3 West\n\n20) MobyNostromo: T R3 G3 Mobynostromo\n\n21) deanthebean: Attack G1 Mobynostromo\n\n22) MobyNostromo: B G2 Mobynostromo\n\n23) deanthebean: Build G2 Mobynostromo\nCatastrophe Mobynostromo Green\n\n\nHomeworlds Online (SDG# 33867)\nVariants: &quot;Unrated&quot;\nStarted: 2018.3.29, Ended: 2018.4.3\nParticipants: silversliver (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) silversliver: Homeworld B2 G1 R3\n\twil: New to the game or just to the forum?  \n\n3) wil: Build G1 Wil\n\n4) silversliver: Build R1 Silversliver\n\n5) wil: Trade G1 R1 Wil\n\n6) silversliver: Trade R1 Y1 Silversliver\n\n7) wil: Build G1 Wil\n\n8) silversliver: Build Y1 Silversliver\n\n9) wil: Trade G1 Y1 Wil\n\n10) silversliver: Discover Y1 Silversliver Y3 Sys1\n\n11) wil: Build Y2 Wil\n\n12) silversliver: Move R3 Silversliver Sys1\n\twil: Ack!  Short universe!\r\n\n\n13) wil: Discover Y2 Wil G3 G3\n\n14) silversliver: Build Y2 Silversliver\n\twil: Do you have some well thought out nefarious plan?  Are you incredibly bold, or new to the game?  These questions, if not answered by you, will soon be answered in upcoming moves.\n\n15) wil: Build Y2 G3\n\n16) silversliver: Trade Y1 R1 Silversliver\n\n17) wil: Move R1 Wil G3\n\n18) silversliver: Build R2 Silversliver\n\n19) wil: Build Y1 Wil\n\n20) silversliver: Trade R1 G1 Silversliver\n\n21) wil: Sacrifice Y2 G3\nMove Y1 Wil Sys1\nMove Y1 Wil Sys1\nCatastrophe Sys1 Y\n\n22) silversliver: Discover G1 Silversliver R3 Sys2\n\n23) wil: Build G1 Wil\n\n24) silversliver: Build Y1 Silversliver\n\n25) wil: Trade G1 Y1 Wil\n\n26) silversliver: Trade Y1 G1 Silversliver\n\n27) wil: Build G2 Wil\n\n28) silversliver: Build G2 Sys2\n\n29) wil: Discover G2 Wil Y3 Y3\n\n30) silversliver: Sacrifice G2 Sys2\nBuild G2 Sys2\nBuild G2 Sys2\n\n31) wil: Build G3 Y3\n\n32) silversliver: Sacrifice Y2 Silversliver\nMove G2 Sys2 Wil\nMove G2 Sys2 Wil\n\n33) wil: Attack G2 Wil\n\n34) silversliver: Sacrifice G1 Sys2\nBuild G1 Wil\nCatastrophe Wil G\n\n35) wil: Build G1 Y3\n\n36) silversliver: Trade G1 Y1 Silversliver\n\n37) wil: Move G3 Y3 Wil\n\n38) silversliver: Build R1 Silversliver\n\n39) wil: Build R2 G3\n\n40) silversliver: Discover R1 Silversliver Y3 Sys3\n\n41) wil: Sacrifice Y2 G3\nMove G1 Y3 Silversliver\nMove G2 Y3 Silversliver\n\n42) silversliver: Attack G2 Silversliver\n\n43) wil: Build G1 Silversliver\nCatastrophe Silversliver G\n\twil: ah..you made the same mistake as I....wasting a move.\n\n44) silversliver: Trade Y1 G1 Silversliver\n\n45) wil: Build Y1 Wil\n\n46) silversliver: Build G1 Silversliver\n\n47) wil: Build Y1 Wil\n\n48) silversliver: Build R2 Silversliver\n\n49) wil: Build R3 G3\n\n50) silversliver: Sacrifice G1 Silversliver\nBuild R3 Sys3\n\n51) wil: Sacrifice Y1 Wil\nMove R1 G3 Silversliver\n\n52) silversliver: Trade R2 Y2 Silversliver\n\n53) wil: Attack G1 Silversliver\n\n54) silversliver: Attack R1 Silversliver\n\twil: I shoulda sent in the r2\n\n55) wil: Sacrifice Y1 Wil\nDiscover R3 G3 Y1 Y1\n\n56) silversliver: Attack G1 Silversliver\n\n57) wil: Build G1 Wil\n\n58) silversliver: Build G1 Silversliver\n\n59) wil: Trade G1 B1 Wil\n\n60) silversliver: Move G1 Silversliver Sys3\n\n61) wil: Build B1 Wil\n\n62) silversliver: Trade R1 B1 Silversliver\n\twil: You move almost as fast as playing live...  I&#39;ve asked aaron in the next iteration to have a button so we know if someone is staying on line and playing...\n\n63) wil: Move B1 Wil G3\n\n64) silversliver: Discover B1 Silversliver R3 Sys4\n\n65) wil: Build Y1 Wil\n\n66) silversliver: Build Y2 Silversliver\n\n67) wil: Move Y1 Wil G3\n\n68) silversliver: Build G1 Sys3\n\n69) wil: Discover B1 Wil G3 Gee3\n\n70) silversliver: Build G2 Sys3\n\twil: me thinks two moves to mate....  \n\n71) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 Wil\nBuild B2 G3\n\n72) silversliver: Sacrifice G2 Sys3\nBuild B3 Sys4\nBuild G2 Sys3\n\twil: very interesting game, I look forward to the next one.\n\n73) wil: Sacrifice Y3 Wil\nMove B2 G3 Silversliver\nMove B1 G3 Silversliver\nMove B1 Gee3 Silversliver\nCatastrophe Silversliver B\n\tsilversliver: gg\r\nAnd yes, it was my first game.\n\twil: I have a love hate relationship with short universe...  I don&#39;t do bad with them, but they are just wierd how they operate...and wiping out half a homeworld does not improve the connection..\n\twil: good game...  \n\twil: challenge me anytime...I enjoy playing\n\twil: Wow...if this was your first game...you did quite well!   avid gamer?   do you have pyramids at home?   your early mistake was getting that big 3 out and then losing it...but it took me forever to capitalize on that.\r\n\n\twil: Again...WELL DONE!\n\n\nHomeworlds Online (SDG# 33918)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.30, Ended: 2018.4.10\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 Y1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build Y1 Wil\n\n8) Trydnt: Build R1 Trydnt\n\n9) wil: Build Y2 Wil\n\n10) Trydnt: Build R2 Trydnt\n\n11) wil: Discover Y1 Wil R3 R3\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) wil: Sacrifice G3 Wil\nBuild Y2 R3\nBuild Y3 R3\nBuild Y3 Wil\n\n14) Trydnt: Move Y2 Trydnt R3\nCatastrophe R3 Y\n\n15) wil: Trade Y3 G3 Wil\n\n16) Trydnt: Build R2 Trydnt\n\n17) wil: Trade Y2 R2 Wil\n\n18) Trydnt: Discover R1 Trydnt G3 G3\n\n19) wil: Build Y1 Wil\n\n20) Trydnt: Trade R2 Y2 Trydnt\n\n21) wil: Move R2 Wil G3\n\n22) Trydnt: Build R2 G3\n\n23) wil: Attack R2 G3\n\n24) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild R3 Trydnt\nCatastrophe G3 R\n\n25) wil: Build Y2 Wil\n\twil: noice\n\n26) Trydnt: Trade R3 G3 Trydnt\n\tTrydnt: I thought so \n\n27) wil: Trade Y1 R1 Wil\n\n28) Trydnt: Discover R1 Trydnt G3 G3\n\n29) wil: Discover R1 Wil Y3 Y3\n\n30) Trydnt: Move Y2 Trydnt G3\n\n31) wil: Build G1 Wil\n\n32) Trydnt: Build R2 Trydnt\n\n33) wil: Sacrifice G1 Wil\nBuild R2 Y3\n\n34) Trydnt: Discover R3 Trydnt Y3 Y33\n\n35) wil: Discover Y2 Wil R3 R3\n\n36) Trydnt: Build R2 Trydnt\n\tTrydnt: so you gonna host poker tonight?\n\n37) wil: Build G1 Wil\n\twil: thats the plan... I&#39;ll ask again if Jeff or Matt are making it.\n\n38) Trydnt: Build R3 G3\n\n39) wil: Trade G1 B1 Wil\n\n40) Trydnt: Trade R2 B2 Trydnt\n\n41) wil: Build G1 Wil\n\n42) Trydnt: Build R2 Trydnt\n\n43) wil: Discover G1 Wil B3 B3\n\n44) Trydnt: Move B2 Trydnt G3\n\n45) wil: Build G1 Wil\n\n46) Trydnt: Trade R3 Y3 G3\n\n47) wil: Move R1 Y3 Trydnt\n\n48) Trydnt: Build R3 G3\n\n49) wil: Build G1 Wil\n\n50) Trydnt: Build G2 Trydnt\n\n51) wil: Move G1 Wil R3 R3\n\n52) Trydnt: Move R2 Trydnt B3\n\n\tTrydnt: why&#39;d you resign? I mean it wasn&#39;t great but I think you&#39;ve come back from worse\n\twil: Idk exactly...I look now and I am outgunned 5-1 on larges and 5-2 on mediums...everywhere I am can be waltzed in on ...  It looks useless except waiting for an error...a few errors.  Lastly...I am back in a tourney game...I need to remove some confusion from my plate.\n\tTrydnt: fair enough haha\n\nHomeworlds Online (SDG# 33945)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.30, Ended: 2018.4.4\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 B1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: Build B1 Wil\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: Discover B1 Wil Y3 Y3\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Build Y2 G1\n\n13) wil: Sacrifice G3 Wil\nBuild B1 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n14) Trydnt: Discover Y1 G1 G3 G3\n\n15) wil: Trade B3 Y3 Wil\n\n16) Trydnt: Build Y2 G3\n\n17) wil: Build B3 Wil\n\n18) Trydnt: Build Y2 G1\n\n19) wil: Discover Y3 Wil G3 B3\n\n20) Trydnt: Discover Y2 G1 B3 B33\n\n21) wil: Trade B3 R3 Wil\n\n22) Trydnt: Trade Y2 R2 B33\n\n23) wil: Build Y2 B3\n\n24) Trydnt: Move Y2 G1 Y3\n\n25) wil: Discover B2 Y3 G1 G1\n\n26) Trydnt: Move Y2 Y3 Wil\n\n27) wil: Attack Y2 Wil\n\twil: what...had to do some work?\n\n28) Trydnt: Move Y2 G3 Wil\n\n29) wil: Move Y2 Wil G3\n\n\twil: no clue what is going on here...  not sure you planned right...ready for a surprise!\n\tTrydnt: lol that was clever\n\tTrydnt: I kept looking for a way around that big jump but nada\n\twil: I don&#39;t really know how you lost the yellow domination...\n\tTrydnt: stupidity\n\nHomeworlds Online (SDG# 33946)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.30, Ended: 2018.4.12\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: Build B2 Wil\n\n9) Trydnt: Trade B1 R1 Trydnt\n\twil: We are off to the races on four tracks!\n\n10) wil: Trade B1 R1 Wil\n\n11) Trydnt: Build R2 Trydnt\n\n12) wil: Build R2 Wil\n\n13) Trydnt: Build B1 Trydnt\n\n14) wil: Build R2 Wil\n\n15) Trydnt: Trade R2 Y2 Trydnt\n\n16) wil: Trade R1 Y1 Wil\n\n17) Trydnt: Build Y1 Trydnt\n\n18) wil: Build B1 Wil\n\n19) Trydnt: Discover B1 Trydnt G3 G3\n\n20) wil: Sacrifice B1 Wil\nTrade R2 G2 Wil\n\n21) Trydnt: Build G1 Trydnt\n\n22) wil: Discover B2 Wil G2 G2\n\n23) Trydnt: Move Y2 Trydnt G3\n\n24) wil: Move Y1 Wil G2\n\n25) Trydnt: Discover B2 Trydnt Y3 Y3\n\n26) wil: Build G1 Wil\n\n27) Trydnt: Move G1 Trydnt Y3\n\n28) wil: Discover G2 Wil Y2 Y2\n\n29) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 Trydnt\nBuild Y2 G3\nBuild Y3 Trydnt\n\n30) wil: Discover G1 Wil R2 R2\n\n31) Trydnt: Move Y2 G3 R2\n\n32) wil: Build G1 Wil\n\n33) Trydnt: Attack G1 R2\n\n34) wil: Discover G2 Y2 G3 B3\n\n35) Trydnt: Build Y2 R2\n\n36) wil: Discover G1 Wil R2 B2\n\n37) Trydnt: Move Y2 G3 B2\n\n38) wil: Build G2 Wil\n\n39) Trydnt: Attack G1 B2\n\n40) wil: Move G2 Wil G2\n\n41) Trydnt: Build B1 G3\n\n42) wil: Build B3 G2\n\n43) Trydnt: Build B3 Y3\n\n44) wil: Trade B3 R3 G2\n\n45) Trydnt: Sacrifice Y3 Trydnt\nMove G1 Y3 G2\nMove G1 R2 Y3\nMove G1 Y3 G2\nCatastrophe G2 G\n\n46) wil: Build R1 Wil\n\n47) Trydnt: Build Y1 B2\n\n48) wil: Discover R1 Wil G2 G2\n\n49) Trydnt: Build Y3 B2\n\n50) wil: Build R3 G2\n\n51) Trydnt: Move R1 Trydnt G3\n\n52) wil: Build R3 Wil\n\n53) Trydnt: Build R3 G3\n\n54) wil: Move R3 Wil R2\n\n55) Trydnt: Sacrifice Y2 R2\nMove Y2 R2 G3\nDiscover R3 G3 Y2 Y2\n\n56) wil: Trade R2 B2 Wil\n\n57) Trydnt: Build B3 G3\n\n58) wil: Move B2 Wil G2\n\n59) Trydnt: Move B1 G3 B2\n\n60) wil: Build B3 G2\n\n61) Trydnt: Move B2 Y3 Y2\n\n62) wil: Build G1 Wil\n\n63) Trydnt: Build R2 G3\n\n64) wil: Pass\n\n65) Trydnt: Build G1 B2\n\n\twil: yeah..this is over\n\twil: gg\n\twil: look at me..pumpin up your score!\n\nHomeworlds Online (SDG# 33947)\nVariants: &quot;Hard time&quot;\nStarted: 2018.3.30, Ended: 2018.4.16\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B3 G2 Y3\n\n2) Trydnt: Homeworld G2 Y2 B3 *\n\n3) wil: Build Y1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Build Y1 Wil\n\n6) Trydnt: Build B1 Trydnt\n\n7) wil: Discover Y1 Wil G1 G1\n\n8) Trydnt: Discover B1 Trydnt Y3 Y3\n\n9) wil: Build Y1 G1\n\n10) Trydnt: Build B1 Trydnt\n\n11) wil: Build Y2 G1\n\n12) Trydnt: Discover B1 Trydnt Y3 Y33\n\n13) wil: Trade Y3 G3 Wil\n\n14) Trydnt: Build B2 Trydnt\n\n15) wil: Move Y1 G1 Trydnt\n\n16) Trydnt: Trade B2 R2 Trydnt\n\n17) wil: Build Y2 G1\n\n18) Trydnt: Attack Y1 Trydnt\n\n19) wil: Build Y3 Wil\n\n20) Trydnt: Move Y1 Trydnt G1\nCatastrophe G1 Y\n\n21) wil: Build Y1 Wil\n\n22) Trydnt: Build B2 Trydnt\n\n23) wil: Trade Y1 R1 Wil\n\n24) Trydnt: Trade B2 G2 Trydnt\n\n25) wil: Build R1 Wil\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Y3\nBuild B2 Y33\n\n27) wil: Trade G3 B3 Wil\n\n28) Trydnt: Build B2 Trydnt\n\n29) wil: Discover B3 Wil G1 G1\n\n30) Trydnt: Trade B2 Y2 Trydnt\n\n31) wil: Build B2 G1\n\n32) Trydnt: Trade B1 G1 Y3\n\n33) wil: Move Y1 Wil G1\n\n34) Trydnt: Build B1 Y3\n\n35) wil: Trade B3 R3 G1\n\n36) Trydnt: Discover B1 Trydnt G1 G11\n\n37) wil: Build B3 G1\n\n38) Trydnt: Sacrifice Y2 Trydnt\nMove B1 Y33 G1\nMove B1 Y3 G1\nCatastrophe G1 B\n\n39) wil: Trade R1 B1 Wil\n\n40) Trydnt: Trade B2 G2 Y33\n\n41) wil: Move R3 G1 Y3\n\n42) Trydnt: Discover G1 Y3 Y1 Y1\n\n43) wil: Attack B2 Y3\n\n44) Trydnt: Build G3 Y1\n\n45) wil: Build Y1 Wil\n\n46) Trydnt: Sacrifice G3 Y1\nBuild G3 Y1\nBuild G3 Y1\nBuild G3 Y33\n\n47) wil: Build Y2 G1\n\n48) Trydnt: Build R1 Trydnt\n\n49) wil: Build Y2 Wil\n\n50) Trydnt: Build B1 G11\n\n51) wil: Build R1 Wil\n\n52) Trydnt: Sacrifice B1 G11\nTrade G1 B1 Y1\n\n53) wil: Trade R1 G1 Wil\n\n54) Trydnt: Move G3 Y1 Wil\n\n55) wil: Attack G3 Wil\n\n56) Trydnt: Move G3 Y1 Wil\nCatastrophe Wil G\n\n57) wil: Move B1 Wil G1\n\n58) Trydnt: Build G1 Y33\n\n59) wil: Trade Y2 G2 Wil\n\n60) Trydnt: Discover G2 Y33 Y2 Y2\n\n61) wil: Build G3 Wil\n\n62) Trydnt: Sacrifice G3 Y33\nBuild G3 Y33\nBuild G3 Y2\nBuild B2 Y1\n\n63) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Y3\nBuild B3 G1\n\n64) Trydnt: Move G2 Y2 Wil\n\n65) wil: Move G3 Wil Y1\n\n66) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Wil\nAttack G2 Wil\n\n67) wil: Sacrifice R3 Y3\nAttack G2 Wil\nAttack G2 Wil\nAttack R1 Wil\n\n68) Trydnt: Move G3 Y33 G1\n\n69) wil: Sacrifice Y2 G1\nMove Y1 G1 Trydnt\nMove Y1 Wil Trydnt\n\n70) Trydnt: Sacrifice R1 Trydnt\nAttack B3 G1\n\n71) wil: Build Y2 Trydnt\nCatastrophe Trydnt Y\n\n72) Trydnt: Sacrifice B3 G1\nTrade G3 B3 Y2\nTrade B3 R3 Trydnt\nTrade G3 R3 G1\n\n73) wil: Sacrifice Y3 Wil\nMove G2 Wil Trydnt\nMove G2 Wil Trydnt\nMove G3 Y1 Trydnt\nCatastrophe Trydnt G\n\n\nHomeworlds Online (SDG# 33917)\nStarted: 2018.4.2, Ended: 2018.5.3\nParticipants: ts52 (S), Trydnt (N)\nWinner: ts52\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Trade Y2 R2 Trydnt\n\n10) ts52: Trade Y2 R2 Ts52\n\n11) Trydnt: Build Y2 Trydnt\n\n12) ts52: Build Y2 Ts52\n\n13) Trydnt: Discover Y1 Trydnt G3 G3\n\n14) ts52: Discover Y1 Ts52 G1 Kermit\n\n15) Trydnt: Build R1 Trydnt\n\n16) ts52: Build R1 Ts52\n\n17) Trydnt: Build G1 Trydnt\n\n18) ts52: Trade R1 B1 Ts52\n\n19) Trydnt: Trade G1 B1 Trydnt\n\n20) ts52: Build G1 Ts52\n\n21) Trydnt: Move R2 Trydnt G3\n\n22) ts52: Build R1 Ts52\n\n23) Trydnt: Move B1 Trydnt G3\n\n24) ts52: Move R2 Ts52 Kermit\n\n25) Trydnt: Discover Y2 Trydnt B3 B3\n\n26) ts52: Move B1 Ts52 Kermit\n\n27) Trydnt: Build G1 Trydnt\n\n28) ts52: Discover G1 Ts52 B1 Gonzo\n\n29) Trydnt: Move G1 Trydnt B3\n\n30) ts52: Build G2 Ts52\n\n31) Trydnt: Build G2 Trydnt\n\n32) ts52: Move Y2 Ts52 Gonzo\n\n33) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B3\nBuild G3 Trydnt\nBuild R1 G3\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Trydnt\nBuild R3 Trydnt\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Gonzo\n\n37) Trydnt: Discover R3 Trydnt Y3 Y3\n\n38) ts52: Discover Y2 Gonzo B3 Grover\n\n39) Trydnt: Move R3 Trydnt B3\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\n\n41) Trydnt: Move B1 G3 Kermit\nCatastrophe Kermit B\n\n42) ts52: Move Y3 Gonzo G3\n\n43) Trydnt: Move R3 Y3 Gonzo\n\n44) ts52: Sacrifice G1 Gonzo\nBuild Y3 Grover\n\n45) Trydnt: Trade R3 B3 Gonzo\n\n46) ts52: Sacrifice R2 Kermit\nAttack R2N G3\nAttack R1N G3\n\n47) Trydnt: Sacrifice G2 Trydnt\nBuild R2 Trydnt\nBuild R3 B3\n\n48) ts52: Attack Y1N G3\n\tTrydnt: I don&#39;t know why I did that. Might have lost me the game\n\n49) Trydnt: Discover R3 B3 G1 G1\n\n50) ts52: Move R3 Ts52 Kermit\n\n51) Trydnt: Build G2 Trydnt\n\n52) ts52: Move Y1 Kermit G3\n\n53) Trydnt: Move G1 B3 Gonzo\n\n54) ts52: Trade Y2 B2 Grover\n\n55) Trydnt: Sacrifice G2 B3\nBuild Y2 B3\nBuild G2 Gonzo\n\n56) ts52: Move G2 Ts52 Kermit\n\n57) Trydnt: Sacrifice Y2 B3\nMove Y2 B3 Gonzo\nMove Y2 Gonzo G3\nCatastrophe G3 Y\n\n58) ts52: Sacrifice G2 Kermit\nBuild G2 Ts52\nBuild Y1 Kermit\n\n59) Trydnt: Trade B3 Y3 Gonzo\n\n60) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Grover\nBuild Y1 Grover\n\n61) Trydnt: Sacrifice Y3 Gonzo\nMove G1 Gonzo Ts52\nMove G2 Gonzo Ts52\nCatastrophe Ts52 G\nMove R3 G1 Ts52\n\n62) ts52: Sacrifice Y3 Grover\nMove R2 Kermit Ts52\nMove R3 Kermit Ts52\nMove Y2 Kermit Ts52\nCatastrophe Ts52 R\n\n63) Trydnt: Sacrifice G2 Trydnt\nBuild R1 B3\nBuild R2 B3\n\n64) ts52: Build R3 G3\n\n65) Trydnt: Trade R2 Y2 B3\n\n66) ts52: Sacrifice Y2 Ts52\nMove R3 G3 Kermit\nMove R3 Kermit Ts52\n\n67) Trydnt: Trade R1 B1 Trydnt\n\n68) ts52: Trade B2 G2 Grover\n\n69) Trydnt: Move R3 B3 Kermit\n\n70) ts52: Move Y1 Kermit G3\n\n71) Trydnt: Sacrifice G3 Trydnt\nBuild R1 Kermit\nBuild R2 B3\nBuild R3 Trydnt\n\n72) ts52: Build Y2 G3\n\n73) Trydnt: Sacrifice B1 Trydnt\nTrade R3 Y3 Kermit\n\n74) ts52: Sacrifice Y2 G3\nMove R1 G3 Trydnt\nMove R2 G3 Trydnt\nCatastrophe Trydnt Red\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 33959)\nStarted: 2018.4.2, Ended: 2018.6.15\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) ts52: Build G1 Gonzo\n\n8) Trydnt: Build B1 Trydnt\n\n9) ts52: Trade G1 Y1 Gonzo\n\n10) Trydnt: Discover B1 Trydnt G1 G1\n\n11) ts52: Build Y1 Gonzo\n\n12) Trydnt: Build B2 G1\n\n13) ts52: Build Y1 Gonzo\n\n14) Trydnt: Build B2 G1\n\n15) ts52: Discover Y1 Gonzo G2 Kermit\n\n16) Trydnt: Trade B2 Y2 G1\n\n17) ts52: Build G1 Ts52\n\n18) Trydnt: Discover B2 G1 Y3 Y3\n\n19) ts52: Build G2 Ts52\n\n20) Trydnt: Sacrifice G3 Trydnt\nBuild B2 Y3\nBuild B3 Trydnt\nBuild B3 G1\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n22) Trydnt: Trade B3 G3 Trydnt\n\n23) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild Y3 Kermit\n\n24) Trydnt: Build B3 G1\n\n25) ts52: Trade G2 R2 Ts52\n\n26) Trydnt: Trade B3 R3 G1\n\n27) ts52: Trade G3 R3 Gonzo\n\n28) Trydnt: Discover B3 G1 G3 G3\n\n29) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Gonzo\n\n30) Trydnt: Build B3 G3\n\n31) ts52: Discover Y3 Kermit R1 Elmo\n\n32) Trydnt: Move B2 Y3 G1\n\n33) ts52: Move Y1 Gonzo Elmo\n\n34) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 G3\nPass\n\n35) ts52: Move G2 Gonzo Elmo\n\n36) Trydnt: Build B2 G1\n\n37) ts52: Move R1 Gonzo Kermit\n\n38) Trydnt: Build B3 G3\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gonzo\nBuild R2 Kermit\n\n40) Trydnt: Trade B3 R3 G3\n\n41) ts52: Discover G1 Ts52 B3 Grover\n\n42) Trydnt: Sacrifice Y3 G3\nMove B1 G1 Gonzo\nMove B2 G1 Gonzo\nMove B2 G1 Gonzo\nCatastrophe Gonzo B\n\n43) ts52: Build G1 Ts52\n\n44) Trydnt: Build B1 G3\n\n45) ts52: Build G2 Grover\n\n46) Trydnt: Build B2 G3\n\n47) ts52: Trade G2 Y2 Grover\n\n48) Trydnt: Trade B3 Y3 G3\n\n49) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y1 Grover\n\n50) Trydnt: Move R3 G1 Grover\n\n51) ts52: Sacrifice G2 Grover\nBuild G2 Elmo\nBuild R1 Ts52\n\n52) Trydnt: Attack Y2 Grover\n\n53) ts52: Discover R2 Ts52 B3 Gonzo\n\n54) Trydnt: Discover Y2 G1 R3 R3\n\n55) ts52: Sacrifice Y1 Grover\nDiscover G1 Grover Y1 Bigbird\n\n56) Trydnt: Build G1 Trydnt\n\n57) ts52: Sacrifice Y3 Elmo\nMove G1 Bigbird Trydnt\nMove G2 Elmo Trydnt\nCatastrophe Trydnt G\nMove G2 Elmo Trydnt\n\n58) Trydnt: Sacrifice Y2 R3\nMove R3 G3 Elmo\nMove R3 Elmo Trydnt\n\n59) ts52: Sacrifice G2 Trydnt\nBuild R2 Gonzo\nBuild R3 Ts52\n\n60) Trydnt: Build B2 G3\n\n61) ts52: Trade R2 G2 Gonzo\n\n62) Trydnt: Trade B2 R2 G3\n\n63) ts52: Build G1 Gonzo\n\n64) Trydnt: Move B2 G3 Elmo\n\n65) ts52: Move Y1 Elmo Gonzo\n\n66) Trydnt: Build B2 G3\n\n67) ts52: Discover R3 Ts52 B3 Cookie\n\n68) Trydnt: Build Y1 G3\n\n69) ts52: Discover G1 Ts52 Y3 Bigbird\n\n70) Trydnt: Trade R2 G2 G3\n\n71) ts52: Build Y2 Kermit\n\n72) Trydnt: Sacrifice Y2 Grover\nMove R3 Grover Elmo\nMove R3 Elmo Bigbird\n\n73) ts52: Sacrifice G1 Bigbird\nBuild R2 Cookie\n\n74) Trydnt: Build B3 G3\n\n75) ts52: Build Y2 Kermit\n\n76) Trydnt: Move B3 G3 Kermit\n\n77) ts52: Trade R3 G3 Cookie\n\n78) Trydnt: Sacrifice G2 G3\nBuild R3 Trydnt\nPass\n\n79) ts52: Move Y2 Kermit Cookie\n\n80) Trydnt: Sacrifice R3 Trydnt\nAttack Y2 Kermit\nAttack R2 Kermit\nAttack R1 Kermit\n\n81) ts52: Build R3 Gonzo\n\n82) Trydnt: Attack Y1 Kermit\n\n83) ts52: Build G1 Ts52\n\n84) Trydnt: Trade B2 G2 Elmo\n\n85) ts52: Trade R2 B2 Cookie\n\tts52: Sorry for the delay!\n\n86) Trydnt: Move R2 Kermit Gonzo\n\n87) ts52: Attack R2S Gonzo\n\n88) Trydnt: Move R1 Kermit Gonzo\nCatastrophe Gonzo R\n\n89) ts52: Trade G2 R2 Gonzo\n\n90) Trydnt: Sacrifice Y3 G3\nMove B3 Kermit Cookie\nMove B1 G3 Kermit\nMove B1 Kermit Cookie\nCatastrophe Cookie B\n\n91) ts52: Build R1 Gonzo\n\n92) Trydnt: Sacrifice G2 Elmo\nBuild Y2 Kermit\nBuild Y3 G3\n\n93) ts52: Build G1 Gonzo\n\tTrydnt: couldn&#39;t see an obviously good move so I went with the most surprising one\n\tts52: That&#39;s certainly surprising...\n\n94) Trydnt: Sacrifice Y2 Kermit\nMove Y3 G3 Kermit\nMove Y3 Kermit Gonzo\n\n95) ts52: Discover R2 Gonzo B1 Grover\n\n96) Trydnt: Sacrifice R3 Bigbird\nAttack R1 Gonzo\nAttack Y1 Gonzo\nAttack G1 Gonzo\n\n97) ts52: Sacrifice G1 Gonzo\nBuild R1 Grover\n\n98) Trydnt: Build Y2 G3\n\n99) ts52: Discover G1 Ts52 Y3 Bigbird\n\n100) Trydnt: Build B2 G3\n\n101) ts52: Build R2 Ts52\n\n102) Trydnt: Build B3 G3\n\n103) ts52: Build G1 Ts52\n\n104) Trydnt: Trade Y3 G3 Gonzo\n\n105) ts52: Discover G1 Ts52 Y3 Zoe\n\n106) Trydnt: Trade B3 R3 G3\n\n107) ts52: Build G2 Ts52\n\n108) Trydnt: Sacrifice Y2 Kermit\nMove G1 Gonzo Ts52\nMove G3 Gonzo Ts52\nCatastrophe Ts52 G\n\n109) ts52: Trade R2 G2 Ts52\n\n110) Trydnt: Move R3 G3 Ts52\n\n111) ts52: Build R2 Ts52\n\n112) Trydnt: Sacrifice R3 Trydnt\nAttack R1 Ts52\nAttack R2 Ts52\nAttack G2 Ts52\n\n\nHomeworlds Online (SDG# 33960)\nStarted: 2018.4.2, Ended: 2018.5.7\nParticipants: Trydnt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ts52: Build G1 Ts52\n\n8) Trydnt: Build Y1 Trydnt\n\n9) ts52: Build G1 Ts52\n\n10) Trydnt: Discover Y1 Trydnt B1 B1\n\n11) ts52: Build G2 Gonzo\n\n12) Trydnt: Build G2 Trydnt\n\n13) ts52: Trade G2 Y2 Gonzo\n\n14) Trydnt: Move G2 Trydnt B1\n\n15) ts52: Trade G1 B1 Ts52\n\n16) Trydnt: Trade Y1 B1 Trydnt\n\n17) ts52: Discover B1 Ts52 G3 Kermit\n\n18) Trydnt: Discover G2 B1 Y3 Y3\n\n19) ts52: Build B2 Kermit\n\n20) Trydnt: Discover B1 Trydnt Y1 Y1\n\n21) ts52: Trade G1 R1 Ts52\n\n22) Trydnt: Trade B1 R1 Y1\n\n23) ts52: Build G1 Ts52\n\n24) Trydnt: Discover Y1 B1 B3 B3\n\n25) ts52: Build R1 Ts52\n\n26) Trydnt: Sacrifice G2 Y3\nBuild Y2 B3\nBuild Y3 B3\n\n27) ts52: Build Y3 Gonzo\n\n28) Trydnt: Trade Y2 G2 B3\n\n29) ts52: Move Y2 Gonzo Y1\n\n30) Trydnt: Move R1 Y1 B3\n\n31) ts52: Build Y2 Gonzo\n\n32) Trydnt: Discover Y1 B3 B1 B1\n\n33) ts52: Build B1 Kermit\n\n34) Trydnt: Sacrifice G2 B3\nBuild Y3 B1\nBuild R2 B3\n\n35) ts52: Trade Y3 R3 Gonzo\n\n36) Trydnt: Discover Y1 B1 Y3 Y3\n\n37) ts52: Build R2 Gonzo\n\n38) Trydnt: Move Y3 B1 Kermit\n\n39) ts52: Move R2 Gonzo Y1\n\n40) Trydnt: Sacrifice R1 B3\nAttack B2 Kermit\n\n41) ts52: Move R2 Y1 Y3\n\n42) Trydnt: Sacrifice Y1 Y3\nDiscover B2 Kermit Y1 Y11\n\n43) ts52: Move G1 Ts52 Y3\n\n44) Trydnt: Trade B2 R2 Y11\n\n45) ts52: Build R1 Y3\n\n46) Trydnt: Sacrifice R2 Y11\nAttack B1 Kermit\nAttack B1 Kermit\n\n47) ts52: Build R2 Gonzo\n\n48) Trydnt: Build B1 Kermit\n\n49) ts52: Build R3 Y3\n\n50) Trydnt: Build G1 Trydnt\n\n51) ts52: Build R3 Gonzo\n\n52) Trydnt: Build Y1 Kermit\n\n53) ts52: Build G2 Ts52\n\n54) Trydnt: Move B1 Kermit Ts52\n\n55) ts52: Trade R2 B2 Gonzo\n\n56) Trydnt: Sacrifice G1 Trydnt\nBuild R2 B3\n\n57) ts52: Move R3 Gonzo Y1\n\n58) Trydnt: Move B1 Kermit Ts52\n\n59) ts52: Move B2 Gonzo Y1\n\n60) Trydnt: Move B1 Kermit Ts52\n\n61) ts52: Build G1 Ts52\n\n62) Trydnt: Move Y1 Kermit Ts52\n\n63) ts52: Catastrophe Ts52 B\nSacrifice Y2 Y1\nMove G1 Ts52 Trydnt\nMove G2 Ts52 Trydnt\n\n64) Trydnt: Sacrifice Y3 Kermit\nMove Y3 B3 Ts52\nMove R2 B3 Ts52\nMove R2 Ts52 Trydnt\n\n65) ts52: Sacrifice R3 Y3\nAttack R2S Trydnt\nAttack Y3S Ts52\nAttack Y1S Ts52\n\n66) Trydnt: Sacrifice R2 B3\nAttack R2 Trydnt\nAttack G2 Trydnt\n\n67) ts52: Sacrifice Y3 Ts52\nMove G1 Gonzo Y1\nMove G1 Y1 Trydnt\nCatastrophe Trydnt G\nMove R3 Y1 Trydnt\n\n\nHomeworlds Online (SDG# 33776)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.5, Ended: 2018.4.9\nParticipants: Schmoopy (S), Twinsen (N)\nWinner: Twinsen\n\n1) Twinsen: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 33848)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.5, Ended: 2018.5.7\nParticipants: Trydnt (S), Twinsen (N)\nWinner: Twinsen\n\n1) Twinsen: Homeworld R2 B1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tTwinsen: hi\n\tTrydnt: hello\n\n3) Twinsen: Build G1 Twinsen\n\n4) Trydnt: Build G1 Trydnt\n\n5) Twinsen: Trade G1 Y1 Twinsen\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) Twinsen: Discover Y1 Twinsen B3 Deepblue\n\n8) Trydnt: Build B1 Trydnt\n\n9) Twinsen: Build G1 Twinsen\n\n10) Trydnt: Discover B1 Trydnt G1 G1\n\n11) Twinsen: Trade G1 Y1 Twinsen\n\n12) Trydnt: Build B2 G1\n\n13) Twinsen: Build G1 Twinsen\n\n14) Trydnt: Build B2 G1\n\n15) Twinsen: Discover G1 Twinsen B3 Me6\n\n16) Trydnt: Build B3 Trydnt\n\n17) Twinsen: Move Y1 Deepblue Twinsen\n\n18) Trydnt: Trade B2 Y2 G1\n\n19) Twinsen: Build G1 Me6\n\n20) Trydnt: Build B2 G1\n\n21) Twinsen: Build G2 Twinsen\n\n22) Trydnt: Build G2 Trydnt\n\n23) Twinsen: Sacrifice G3 Twinsen\nBuild G2 Me6\nBuild G3 Twinsen\nBuild G3 Twinsen\n\n24) Trydnt: Discover B2 G1 Y3 Y3\n\n25) Twinsen: Trade G1 Y1 Me6\n\n26) Trydnt: Trade B3 Y3 Trydnt\n\n27) Twinsen: Move G3 Twinsen Y3\n\n28) Trydnt: Build B3 G1\n\n29) Twinsen: Build Y2 Me6\n\n30) Trydnt: Build Y2 G1\n\n31) Twinsen: Trade G2 R2 Me6\n\n32) Trydnt: Build B3 Trydnt\n\n33) Twinsen: Move G3 Y3 G1\n\n34) Trydnt: Sacrifice Y2 G1\nDiscover B3 G1 R3 R3\nDiscover B3 Trydnt R1 R1\n\n35) Twinsen: Sacrifice R2 Me6\nAttack B2 G1\nAttack Y2 G1\n\n36) Trydnt: Trade B1 G1 G1\n\n37) Twinsen: Sacrifice Y2 G1\nMove G3 G1 Trydnt\nMove B2 G1 Trydnt\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G3 Trydnt\nBuild B1 R3\nCatastrophe Trydnt G\n\n39) Twinsen: Sacrifice Y2 Me6\nMove Y1 Me6 G1\nMove Y1 G1 Trydnt\n\n40) Trydnt: Trade Y3 R3 Trydnt\n\n41) Twinsen: Sacrifice G1 Me6\nBuild B3 Trydnt\nCatastrophe Trydnt Blue\n\n42) Trydnt: Attack Y1 Trydnt\n\n43) Twinsen: Discover Y1 Twinsen G3 Verde\n\n44) Trydnt: Sacrifice B3 R1\nTrade Y1 G1 Trydnt\nTrade B3 Y3 R3\nTrade B2 Y2 Y3\n\n45) Twinsen: Build Y1 Twinsen\n\n46) Trydnt: Build G2 Trydnt\n\n47) Twinsen: Sacrifice G2 Twinsen\nBuild Y2 Verde\nBuild Y2 Verde\n\n48) Trydnt: Move Y3 R3 Twinsen\n\n49) Twinsen: Attack Y3 Twinsen\n\n50) Trydnt: Move Y2 Y3 Twinsen\nCatastrophe Twinsen Y\n\n51) Twinsen: Build G2 Twinsen\n\n52) Trydnt: Move G2 Trydnt Twinsen\n\n53) Twinsen: Trade G3 Y3 Twinsen\n\n54) Trydnt: Attack G2 Twinsen\n\n55) Twinsen: Attack G2S Twinsen\n\n56) Trydnt: Attack G2 Twinsen\n\n57) Twinsen: Attack G2 Twinsen\n\n58) Trydnt: Sacrifice G2 Twinsen\nBuild G2 Trydnt\nBuild B1 R3\n\n59) Twinsen: Sacrifice Y2 Verde\nDiscover Y2 Verde G2 Gg\nMove Y1 Verde Gg\n\n60) Trydnt: Sacrifice G1 G1\nBuild B2 R3\n\n61) Twinsen: Build Y1 Twinsen\n\n\tTwinsen: Good game\n\tTrydnt: well played\n\nHomeworlds Online (SDG# 33970)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.4.7, Ended: 2018.4.30\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y2 B1 G3\n\n2) wil: Homeworld B3 Y1 G3\n\tts52: For the great homeworlds tournament. Game 8. Have a good game!\n\twil: Oh my!  this is it?  You have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build G1 Wil\n\twil: b g1 wil\n\n5) ts52: Trade G1 B1 Ts52\n\twil: lol....gotta put it in the right box..\r\n\n\tts52: :)\n\n6) wil: Trade G1 Y1 Wil\n\twil: sorry...new to the game...I&#39;ll figure it out\n\n7) ts52: Build B1 Ts52\n\n8) wil: Build Y1 Wil\n\tts52: trying to lull me into a false sense of security? ;) I&#39;d say it&#39;ll never work, but I&#39;m not so sure.\n\n9) ts52: Discover B1 Ts52 G3 Kermit\n\n10) wil: Discover Y1 Wil G2 G2\n\n11) ts52: Build B2 Kermit\n\n12) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y2 G2\nBuild Y3 Wil\n\n13) ts52: Discover B1 Ts52 G3 Oscar\n\twil: I may have pulled the trigger to early...  \n\n14) wil: Discover Y2 G2 B3 B3\n\tts52: Time will tell.\n\n15) ts52: Build B2 Oscar\n\twil: Looks like one of us will play Babamots next.  \n\tBabamots: Yup, lucky you!\n\twil: This is far from over...IDK what you two are thinking...I am famous for mistakes..\r\n\n\tBabamots: Sorry, I didn&#39;t mean to imply an outcome in my comment. I just meant that one of you two lucky players gets to play me.\n\n16) wil: Build Y3 G2\n\tts52: My comment was in reply to yours: &quot;i may have pulled the trigger to early...&quot;. Definitely no implication of outcome. I agree this game is far from over.\n\n17) ts52: Build B2 Kermit\n\twil: lol..totally my mistake...rereading I don&#39;t know what I read...  no head games intended...\r\n\n\n18) wil: Move Y3 G2 B3\n\n19) ts52: Build B3 Oscar\n\twil: lol, I have no clue where this is going to go...love it!\r\n\n\n20) wil: Build Y3 G2\n\tts52: I suspect it&#39;s not going to end well for me, but I can&#39;t wait to see exactly how. :)\n\n21) ts52: Build G1 Ts52\n\n22) wil: Trade Y2 G2 B3\n\n23) ts52: Trade B2 Y2 Oscar\n\n24) wil: Build G1 B3\n\n25) ts52: Trade G1 R1 Ts52\n\n26) wil: Move Y3 G2 Kermit\n\n27) ts52: Build R1 Ts52\n\n28) wil: Trade Y1 R1 Wil\n\n29) ts52: Build R2 Ts52\n\n30) wil: Sacrifice G2 B3\nBuild R2 Wil\nBuild R2 Wil\n\n31) ts52: Move R1 Ts52 Oscar\n\n32) wil: Sacrifice R2 Wil\nAttack B2 Kermit\nAttack B2 Kermit\n\n33) ts52: Build B2 Kermit\nCatastrophe Kermit Blue\n\n34) wil: Build Y1 B3\n\n35) ts52: Build R2 Oscar\n\n36) wil: Move R1 Wil G2\n\n37) ts52: Trade R1 B1 Oscar\n\n38) wil: Build G1 B3\n\n39) ts52: Move B3 Oscar G2\n\n40) wil: Sacrifice Y2 G2\nMove Y1 G2 Kermit\nMove R1 G2 Kermit\n\n41) ts52: Build Y2 Oscar\n\n42) wil: Build G1 B3\n\n43) ts52: Build B2 G2\n\n44) wil: Move G1 B3 Ts52\n\n45) ts52: Build B2 G2\n\n46) wil: Sacrifice Y3 Kermit\nMove G1 B3 Ts52\nMove G1 B3 Ts52\nMove Y3 B3 Ts52\nCatastrophe Ts52 G\n\n47) ts52: Sacrifice Y2 Oscar\nMove B3 G2 Wil\nMove Y2 Oscar Ts52\n\n48) wil: Attack B3 Wil\n\tts52: Well played.\n\n49) ts52: Sacrifice B2 G2\nTrade R2 Y2 Ts52\nCatastrophe Ts52 Y\nTrade B2 Y2 G2\n\n50) wil: Move B3 Wil G2\n\twil: Still so scary...do I have it...don&#39;t I...eek.\n\tts52: I&#39;m pretty sure you have this. I _think_ this is my only possible move, but it&#39;s not enough.\n\n51) ts52: Move Y2 G2 Oscar\n\twil: It is soo dang close...I can&#39;t guarantee an end that i won&#39;t screw up.\n\twil: just discovered my problem....I am trying to end it...I should just build and be safe.\n\n52) wil: Sacrifice Y1 B3\nMove B3 G2 Ts52\n\n53) ts52: Sacrifice Y2 Oscar\nMove R2 Oscar Ts52\nMove B1 Oscar Ts52\n\n54) wil: Sacrifice R2 Wil\nAttack R1 Ts52\nAttack R2 Ts52\n\n55) ts52: Build B2 Oscar\n\tts52: Again, well played. I thought I might be able to trip you up, but I don&#39;t think that&#39;s going to happen.\n\n56) wil: Attack B1 Ts52\n\twil: lol, I&#39;ve been known to make mistakes that are easily capitalized on...it was worth it...there a few moves ago I was so struggling to just end it in one or two moves...I took my eye off the prize and could have been tripped up so easily.  \r\n\n\twil: Well fought.\n\n\tts52: Thanks for the game. Best of luck in the rest of the tournament.\n\twil: thanks...win or lose anywhere in this...this has been fun.\n\nHomeworlds Online (SDG# 33961)\nStarted: 2018.4.9, Ended: 2018.6.5\nParticipants: ts52 (S), Twinsen (N)\nWinner: Twinsen\n\n1) Twinsen: Homeworld R2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Twinsen: Build G1 Twinsen\n\tts52: Have a good game!\n\tTwinsen: You too!\n\n4) ts52: Build G1 Ts52\n\n5) Twinsen: Build G1 Twinsen\n\n6) ts52: Build G2 Ts52\n\n7) Twinsen: Trade G3 Y3 Twinsen\n\n8) ts52: Discover G2 Ts52 B1 Grover\n\n9) Twinsen: Build G2 Twinsen\n\n10) ts52: Build G2 Grover\n\n11) Twinsen: Discover G1 Twinsen Y3 Jelly\n\n12) ts52: Trade G2 Y2 Grover\n\n13) Twinsen: Discover G2 Twinsen B3 Azul\n\n14) ts52: Build Y1 Grover\n\n15) Twinsen: Build G2 Azul\n\n16) ts52: Trade G3 R3 Ts52\n\n17) Twinsen: Build G3 Twinsen\n\n18) ts52: Build G3 Ts52\n\n19) Twinsen: Sacrifice G3 Twinsen\nBuild G3 Twinsen\nBuild G3 Jelly\nBuild Y1 Twinsen\n\n20) ts52: Build R1 Ts52\n\n21) Twinsen: Trade G2 Y2 Azul\n\n22) ts52: Move R3 Ts52 Grover\n\n23) Twinsen: Discover G3 Jelly Y1 Amarillo\n\n24) ts52: Move R3 Grover Azul\n\n25) Twinsen: Sacrifice Y2 Azul\nDiscover G2 Azul B1 Phobos\nDiscover Y1 Twinsen R3 Marte\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild R1 Azul\nBuild G3 Ts52\n\n27) Twinsen: Sacrifice G3 Twinsen\nBuild Y2 Twinsen\nBuild Y2 Marte\nBuild G3 Twinsen\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Azul\nBuild R2 Ts52\n\n29) Twinsen: Trade G2 R2 Phobos\n\n30) ts52: Sacrifice Y2 Grover\nMove G2 Grover Jelly\nDiscover G2 Grover R3 Elmo\n\n31) Twinsen: Sacrifice Y2 Twinsen\nMove G1 Jelly Phobos\nMove R2 Phobos Azul\nCatastrophe Azul Red\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild Y2 Grover\n\n33) Twinsen: Sacrifice Y2 Marte\nMove G1 Phobos Elmo\nMove G1 Twinsen Elmo\nCatastrophe Elmo Green\n\n34) ts52: Trade Y1 B1 Grover\n\n35) Twinsen: Build Y1 Twinsen\n\n36) ts52: Move B1 Grover Jelly\n\n37) Twinsen: Trade G3 R3 Twinsen\n\n38) ts52: Move R2 Ts52 Grover\n\n39) Twinsen: Move R3 Twinsen Jelly\n\n40) ts52: Discover B1 Jelly G1 Kermit\n\n41) Twinsen: Attack G2 Jelly\n\tts52: Sorry for the delay!\n\n42) ts52: Build B2 Kermit\n\tTwinsen: No problem. Don&#39;t worry.\n\n43) Twinsen: Move R3 Jelly Grover\n\n44) ts52: Move Y2 Grover Marte\n\n45) Twinsen: Discover Y1 Marte G1 Cloverfield\n\n46) ts52: Trade B2 Y2 Kermit\n\n47) Twinsen: Build Y2 Cloverfield\n\n48) ts52: Build B2 Kermit\n\n49) Twinsen: Attack R2 Grover\n\n50) ts52: Build B2 Kermit\n\n51) Twinsen: Sacrifice Y2 Cloverfield\nMove G3 Amarillo Ts52\nMove R3 Grover Ts52\n\n52) ts52: Attack R3N Ts52\n\n53) Twinsen: Sacrifice R2 Grover\nAttack R3S Ts52\nAttack G3S Ts52\n\n54) ts52: Build R1 Ts52\n\n55) Twinsen: Sacrifice R3 Ts52\nAttack R1 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n\tts52: Good game! Well played.\n\tTwinsen: Good game. Nice to play. \n\nHomeworlds Online (SDG# 33943)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.9, Ended: 2018.5.2\nParticipants: Twinsen (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Twinsen: Homeworld R3 B1 G3\n\twil: good luck!  New player or just found us?\n\tTwinsen: Hi, good luck too. New player here. \n\n3) wil: Build G1 Wil\n\twil: You want any hints when I see mistakes or for me to just shut up and play?\r\n\n\n4) Twinsen: Build G1 Twinsen\n\tTwinsen: Let my mistakes teach me by themselves :D. Thanks\n\n5) wil: Trade G1 B1 Wil\n\twil: No problem, that is exactly how I learned...first you lose repeatedly...and then you start to see the attacks...then you try to use the attacks and see the counter measures...then you try the counter measures..\n\twil: Have you got pyramids at home?\n\n6) Twinsen: Build G1 Twinsen\n\tTwinsen: Yes I do, but I was able to play homeworlds only once. \n\n7) wil: Build B1 Wil\n\n8) Twinsen: Trade G1 Y1 Twinsen\n\twil: Cool...the layout here gets confusing...sometimes it is worthwhile to set it up IRL so you can see all that is going on.  \n\tTwinsen: I&#39;ll try it. Thank you for the advice. \n\n9) wil: Build G1 Wil\n\n10) Twinsen: Discover G1 Twinsen Y2 Sol\n\n11) wil: Trade G1 Y1 Wil\n\n12) Twinsen: Build G1 Twinsen\n\n13) wil: Discover B1 Wil Y3 Y3\n\n14) Twinsen: Trade G1 R1 Twinsen\n\n15) wil: Build B2 Wil\n\n16) Twinsen: Build G1 Twinsen\n\n17) wil: Discover B2 Wil Y3 Why3\n\n18) Twinsen: Discover R1 Twinsen Y2 Yfull\n\n19) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Why3\nBuild B3 Wil\n\n20) Twinsen: Trade G3 B3 Twinsen\n\twil: allowing someone to monopolize an economy can be disastrous...at the beginning of every game it is a challenge of getting larger ships vs. getting one of each color...a game of follow the leader is typical.\n\n21) wil: Trade B3 Y3 Why3\n\tTwinsen: I have little choice here\n\n22) Twinsen: Move R1 Yfull Twinsen\n\n23) wil: T B3 G3 Wil\n\n24) Twinsen: Move G1 Sol Twinsen\n\twil: It is only going to get worse now... warning though... getting a monopoly is always one thing, maintaining one is another.  Easy to get bitten...  in this case I am going to start a large ship factory and then either build a doomsday machine or come in on a full frontal attack.  \n\n25) wil: Build B3 Wil\n\tTwinsen: I&#39;m not even familiar with those terms. :D\n\n26) Twinsen: Pass\n\twil: The doomsday machine is accumulating enough ships of blue and red (the color of your homestars) and yellow to launch them into your homeworld and cause overpopulation catastrophes.\r\n\n\twil: A full frontal attack or invasion, would be when I send in more large ships than you can kill, and then take over your ships in your homeworld.\n\n27) wil: Trade B3 G3 Wil\n\tTwinsen: This gonna be quick, I think. :D\n\n28) Twinsen: Discover R1 Twinsen Y2 Y2\n\n29) wil: Sacrifice G3 Wil\nBuild B3 Y3\nBuild B3 Why3\nPass\n\n30) Twinsen: Move R1 Y2 Y3\n\n31) wil: Sacrifice B2 Y3\nTrade B3 R3 Y3\nTrade B3 G3 Why3\n\n32) Twinsen: Attack B1 Y3\n\n33) wil: Attack R1 Y3\n\n34) Twinsen: Discover B1 Y3 G2 Greeny\n\n35) wil: Sacrifice G3 Why3\nBuild B2 Why3\nBuild B3 Why3\nBuild B3 Wil\n\n36) Twinsen: Sacrifice Y1 Twinsen\nMove B1 Greeny Why3\nCatastrophe Why3 Blue\n\n37) wil: Move B3 Wil Y3\n\n38) Twinsen: Trade G1 Y1 Twinsen\n\n39) wil: Build G1 Wil\n\n40) Twinsen: Build G1 Twinsen\n\n41) wil: Move G1 Wil Y3\n\n42) Twinsen: Discover G1 Twinsen Y2 Io\n\n43) wil: Move R3 Y3 Io\n\n44) Twinsen: Discover G1 Io Y1 Jelly\n\n45) wil: Build Y2 Wil\n\n46) Twinsen: Build G2 Jelly\n\n47) wil: Build G2 Wil\n\n48) Twinsen: Build Y2 Twinsen\n\n49) wil: Discover G2 Wil G3 G3\n\n50) Twinsen: Trade B3 G3 Twinsen\n\n51) wil: Build G2 Wil\n\n52) Twinsen: Sacrifice Y2 Twinsen\nMove G1 Jelly G3\nMove G2 Jelly G3\nCatastrophe G3 Green\n\n53) wil: Build R1 Y3\n\n54) Twinsen: Build Y1 Twinsen\n\n55) wil: Build R2 Y3\n\n56) Twinsen: Discover Y1 Twinsen G2 Greeny\n\n57) wil: Move R2 Y3 Greeny\n\n58) Twinsen: Move Y1 Greeny Why3\n\n59) wil: Sacrifice B1 Wil\nTrade Y3 G3 Why3\n\n60) Twinsen: Sacrifice G3 Twinsen\nBuild G1 Twinsen\nBuild Y2 Twinsen\nBuild Y3 Twinsen\n\n61) wil: Sacrifice G3 Wil\nBuild G2 Why3\nBuild G3 Y3\nBuild G3 Wil\n\n62) Twinsen: Sacrifice Y2 Twinsen\nDiscover Y1 Twinsen Y2 Oblivion\nMove G1 Twinsen Oblivion\n\n63) wil: Move R1 Y3 Oblivion\n\n64) Twinsen: Sacrifice Y1 Oblivion\nMove G1 Oblivion Why3\n\twil: aptly named\n\tTwinsen: For 6 turns... XD\n\n65) wil: Sacrifice R2 Greeny\nAttack Y1 Why3\nAttack G1 Why3\n\tTwinsen: This is the end\n\n66) Twinsen: Build G2 Twinsen\n\twil: When one imagines the intragalactic battle that you&#39;ve got yourself in...and sits in the war room, looking at the two warships at near stars around you, and then the flotilla poised to complete the establishment of bases at those outposts.  One must wonder about the purpose of life, their options, and what they were thinking when they decided to antagonize that civilization so very far away.\n\twil: You&#39;ve done well...it will be near 40 total moves prior to me finishing this thing...\n\n67) wil: Move R1 Y3 Io\n\n68) Twinsen: Build Y1 Twinsen\n\n69) wil: Move B3 Y3 Oblivion\n\n70) Twinsen: Discover Y1 Twinsen B2 Bluedy\n\n71) wil: Move G3 Why3 Bluedy\n\n72) Twinsen: Discover Y1 Bluedy R3 Ready\n\twil: two move to mate\n\n73) wil: Sacrifice Y2 Wil\nMove G3 Bluedy Twinsen\nMove B3 Oblivion Twinsen\n\tTwinsen: Check mate? \n\n74) Twinsen: Sacrifice Y3 Twinsen\nDiscover G2 Twinsen Y2 Good_game\nMove Y1 Ready Good_game\nPass\n\n75) wil: Attack G1 Twinsen\n\tTwinsen: Good game will. Nice to play with you. \n\twil: And they&#39;ve flown off to a previously uninhabited star system to attempt to rebuild their civilization.... challenge me anytime...I like to play\n\n\nHomeworlds Online (SDG# 33942)\nStarted: 2018.4.9, Ended: 2018.5.15\nParticipants: Twinsen (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 Y2 G3\n\tTwinsen: Hi, glad and hf\n\tMobyNostromo: Thanks. You too!\n\n2) Twinsen: Homeworld R3 B2 G3\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) Twinsen: Build G1 Twinsen\n\n5) MobyNostromo: T G1 Y1 Mobynostromo\n\n6) Twinsen: Build G1 Twinsen\n\n7) MobyNostromo: B Y1 Mobynostromo\n\n8) Twinsen: Trade G1 B1 Twinsen\n\n9) MobyNostromo: B G1 Mobynostromo\n\n10) Twinsen: Build B1 Twinsen\n\n11) MobyNostromo: D Y1 Mobynostromo B3 Cobalt\n\n12) Twinsen: Trade G1 Y1 Twinsen\n\n13) MobyNostromo: B Y2 Mobynostromo\n\n14) Twinsen: Build Y2 Twinsen\n\n15) MobyNostromo: M Y1 Mobynostromo Cobalt\n\n16) Twinsen: Build G1 Twinsen\n\n17) MobyNostromo: B Y3 Mobynostromo\n\n18) Twinsen: Discover Y1 Twinsen G1 Geegee\n\n19) MobyNostromo: D Y2 Mobynostromo B3 Thalo\n\n20) Twinsen: Build Y3 Geegee\n\n21) MobyNostromo: S G3 Mobynostromo\nB Y3 Thalo\nB G2 Mobynostromo\nB G2 Mobynostromo\n\n22) Twinsen: Sacrifice Y3 Geegee\nMove G1 Twinsen Geegee\nMove G1 Geegee Cobalt\nMove G1 Cobalt Mobynostromo\nCatastrophe Mobynostromo Green\n\n23) MobyNostromo: T Y3 R3 Thalo\n\n24) Twinsen: Build Y3 Geegee\n\n25) MobyNostromo: M R3 Thalo Geegee\n\n26) Twinsen: Sacrifice Y1 Geegee\nDiscover Y3 Geegee R3 Rojo\n\n27) MobyNostromo: B R1 Geegee\n\n28) Twinsen: Sacrifice G3 Twinsen\nBuild Y1 Rojo\nBuild Y3 Twinsen\nPass\n\n29) MobyNostromo: T Y3 G3 Mobynostromo\n\n30) Twinsen: Trade Y3 G3 Twinsen\n\n31) MobyNostromo: B G1 Mobynostromo\n\n32) Twinsen: Build Y3 Twinsen\n\n33) MobyNostromo: S G1 Mobynostromo\nB Y3 Thalo\n\n34) Twinsen: Discover B1 Twinsen G1 Verdin\n\n35) MobyNostromo: T Y1 G1 Cobalt\n\n36) Twinsen: Trade B1 Y1 Verdin\n\n37) MobyNostromo: B G2 Mobynostromo\n\n38) Twinsen: Discover Y1 Verdin G3 Verdon\n\n39) MobyNostromo: B R1 Geegee\n\n40) Twinsen: Build G1 Twinsen\n\n41) MobyNostromo: S G3 Mobynostromo\nB G2 Cobalt\nB G2 Cobalt\nB G3 Mobynostromo\n\n42) Twinsen: Sacrifice Y3 Twinsen\nMove Y3 Rojo Mobynostromo\nMove Y1 Rojo Mobynostromo\nMove Y1 Verdon Mobynostromo\nCatastrophe Mobynostromo Yellow\n\n43) MobyNostromo: T G3 R3 Mobynostromo\n\n44) Twinsen: Sacrifice G3 Twinsen\nBuild G3 Twinsen\nBuild B1 Twinsen\nBuild Y1 Twinsen\n\n45) MobyNostromo: T G2 B2 Cobalt\n\n46) Twinsen: Sacrifice Y2 Twinsen\nDiscover B1 Twinsen Y1 Sol\nMove G1 Twinsen Sol\n\n47) MobyNostromo: S G2 Cobalt\nB R1 Mobynostromo\nB R2 Mobynostromo\n\n48) Twinsen: Build B2 Sol\n\n49) MobyNostromo: S Y3 Thalo\nM R1 Mobynostromo Twinsen\nM R1 Geegee Twinsen\nM R1 Geegee Twinsen\nC Twinsen R\n\n50) Twinsen: Build Y2 Twinsen\n\n51) MobyNostromo: S Y1 Cobalt\nM R3 Geegee Twinsen\n\n\tTwinsen: Good game\n\tMobyNostromo: Yeah, it was close.\n\nHomeworlds Online (SDG# 33875)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.9, Ended: 2018.4.23\nParticipants: Draw5PlayAll (S), Trydnt (N)\nWinner: Draw5PlayAll\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Draw5PlayAll: Homeworld Y1 G2 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) Draw5PlayAll: Build Y1 Draw5playall\n\tTrydnt: nice use of the instafreeze\n\tTrydnt: not having blue really blues... I mean blows\n\n5) Trydnt: Build G1 Trydnt\n\n6) Draw5PlayAll: Discover Y1 Draw5playall G3 Growth\n\n7) Trydnt: Discover G1 Trydnt Y3 Y3\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) Trydnt: Build G1 Trydnt\n\n10) Draw5PlayAll: Discover Y2 Draw5playall B3 Needblue\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y3\nBuild G2 Y3\nBuild G3 Trydnt\n\n12) Draw5PlayAll: Build Y2 Growth\n\n13) Trydnt: Discover G1 Trydnt B3 B3\n\n14) Draw5PlayAll: Trade Y2 R2 Needblue\n\n15) Trydnt: Build G3 B3\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Trydnt: Trade G3 Y3 B3\n\n18) Draw5PlayAll: Sacrifice Y2 Growth\nMove Y3 Draw5playall Needblue\nMove Y3 Needblue Trydnt\n\tDraw5PlayAll: I will probably regret this!!\n\n19) Trydnt: Sacrifice G2 Y3\nBuild G2 Trydnt\nBuild G3 B3\n\n20) Draw5PlayAll: Sacrifice R2 Needblue\nAttack G2 Trydnt\nAttack G3 Trydnt\n\n21) Trydnt: Sacrifice G3 B3\nBuild G3 B3\nBuild Y2 B3\nBuild Y2 B3\n\n22) Draw5PlayAll: Move Y3 Trydnt B3\nCatastrophe B3 Yellow\n\n23) Trydnt: Trade G1 R1 Trydnt\n\n24) Draw5PlayAll: Trade G3 R3 Trydnt\n\n\tDraw5PlayAll: Feel free to use a catastrophe to disintegrate my R3.\n\nHomeworlds Online (SDG# 33868)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.11, Ended: 2018.4.17\nParticipants: Trydnt (S), silversliver (N)\nWinner: Trydnt\n\n1) silversliver: Homeworld G2 R1 B3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) silversliver: Build B1 Silversliver\n\n4) Trydnt: Build G1 Trydnt\n\n5) silversliver: Trade B1 Y1 Silversliver\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) silversliver: Build Y1 Silversliver\n\n8) Trydnt: Build R1 Trydnt\n\n9) silversliver: Discover Y1 Silversliver R3 Sys1\n\n10) Trydnt: Build R2 Trydnt\n\n11) silversliver: Build B1 Silversliver\n\n\n12) Trydnt: Build G1 Trydnt\n\n13) silversliver: Trade B1 G1 Silversliver\n\n14) Trydnt: Discover R2 Trydnt B1 B1\n\n15) silversliver: Build B1 Silversliver\n\n16) Trydnt: Move G1 Trydnt B1\n\n17) silversliver: Trade B3 R3 Silversliver\n\n18) Trydnt: Build R2 B1\n\n19) silversliver: Build Y1 Silversliver\n\n20) Trydnt: Trade R2 Y2 B1\n\n21) silversliver: Sacrifice G1 Silversliver\nBuild Y2 Sys1\n\n22) Trydnt: Build R2 B1\n\n23) silversliver: Trade Y1 G1 Silversliver\n\n24) Trydnt: Build G1 Trydnt\n\n25) silversliver: Build G2 Silversliver\n\n26) Trydnt: Sacrifice Y2 B1\nMove G1 B1 Sys1\nMove G1 Sys1 Silversliver\nCatastrophe Silversliver G\n\n27) silversliver: Trade R3 G3 Silversliver\n\n28) Trydnt: Trade R2 Y2 B1\n\n29) silversliver: Build G1 Silversliver\n\n30) Trydnt: Discover R2 B1 Y3 Y3\n\n31) silversliver: Move G1 Silversliver Sys1\n\n32) Trydnt: Move R2 Y3 Silversliver\n\n33) silversliver: Attack R2 Silversliver\n\n34) Trydnt: Sacrifice Y2 B1\nMove R1 Trydnt Silversliver\nMove R1 Trydnt Silversliver\nCatastrophe Silversliver R\n\n\nHomeworlds Online (SDG# 33981)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.11, Ended: 2018.4.17\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tBroccoli_Commander: Heeeeello wil :-)\r\n\r\nWow it has been a while. You will crush me in no time I&#39;m afraid. Regardless, I&#39;m super excited to play a game with you again!\r\n\r\nI do not exactly remember how/why I quit so abruptly. Looking back it was a bit rude. I know I was a bit too absorbed by the game to the point it was mildly unhealthy. And most probably I was writing my thesis and I had to cut all good excuses to procrastinate... \r\n\r\nAnyhow, I saw this little &quot;SDG&quot; folder in my inbox and I thought I would try to reconnect. Seeing your name brought back good memories (I almost left out a tear of joy); and here we are!\r\n\r\nI hope all is well for you. How did the tournament of last August pan out?\r\n\r\n\r\n\r\nAll of your vegetables are belong to us!!\r\nLet the fun begin.\n\twil: Well now!!  Yes it has been a while!!  And I&#39;ll bet you&#39;ll be able to jump right back on this horse. Wonderful to hear from you, I&#39;ve  been thinking about you a lot.  We are currently in a tournament and I&#39;ve been telling folks without you, TTT and twoshort...this really isn&#39;t a tournament!!   \r\n\n\twil: It was your thesis...PhD in hand now?  How is everything going?  I have a kid I taught..he will be headed back to London soon, with his PolSci masters he acquired here stateside.  He will be a formidable player...hope to see you both in the next tourney (takes forever on SDG)  Wish we had another platform (wink wink nod nod)\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build G1 Wil\n\tBroccoli_Commander: Yes, now been working for 4 years in the &quot;industry&quot;, but I still can&#39;t say I found my definitive career path yet. But life is good.\r\n\r\nHa! so your kid is in the same time zone... did you hook him up with SDG? Good parenting either way :-)\r\n\r\nAnd I see you remember this idea to make an alternate app for binary homeworlds... with a chess-like clock, was that the idea?\r\n\r\nOh TeeTeeTee the new kid that deserved a lesson no one could deliver! He would probably have crushed any tournament. Too bad that TwoShort also left apparently. But I&#39;m sure the competition is nice and fierce, happy to see some new names in there (I could check out the tournament link)!\n\twil: b g1 wil\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\twil: sheesh...telegraphed my secret move!\n\n6) wil: Trade G1 B1 Wil\n\n7) Broccoli_Commander: Build G1 Blueberry\n\n8) wil: Build B1 Wil\n\n9) Broccoli_Commander: Build G1 Broccoli_commander\n\n10) wil: Discover B1 Wil B2 B2\n\n11) Broccoli_Commander: Build G2 Broccoli_commander\n\n12) wil: Build B2 Wil\n\n13) Broccoli_Commander: Discover G2 Broccoli_commander B3 Muffin\n\n14) wil: Discover B2 Wil Y2 Y2\n\n15) Broccoli_Commander: Build G2 Blueberry\n\n16) wil: Build G2 Wil\n\n17) Broccoli_Commander: Trade G2 Y2 Blueberry\n\tBroccoli_Commander: Woops sorry about that\n\n18) wil: Build B3 Wil\n\twil: lol...moving the coin is a thing!\r\n\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n20) wil: Trade G2 R2 Wil\n\n21) Broccoli_Commander: Trade G3 R3 Blueberry\n\n22) wil: Build R1 Wil\n\n23) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Muffin\nBuild G3 Broccoli_commander\n\n24) wil: Trade B3 Y3 Wil\n\n25) Broccoli_Commander: Discover G2 Broccoli_commander B3 Topping\n\n26) wil: Build Y1 Wil\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Blueberry\nBuild Y1 Blueberry\n\twil: You ain&#39;t lost nuthin...still wollop me.\n\n28) wil: Move Y1 Wil B2\n\n29) Broccoli_Commander: Move Y2 Blueberry B2\n\tBroccoli_Commander: Always a pleasure to spread fibers and vitamins across the universe.\n\tBroccoli_Commander: Always a pleasure to spread fibers and vitamins across the universe.\n\twil: i&#39;ve so lost...\n\n30) wil: Sacrifice Y1 B2\nDiscover B1 B2 Y3 Y3\n\n31) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 B2\nBuild Y2 Blueberry\n\n32) wil: Discover Y3 Wil R2 R2\n\n33) Broccoli_Commander: Move R1 Blueberry Broccoli_commander\n\n34) wil: Move Y3 R2 Topping\n\n35) Broccoli_Commander: Sacrifice G2 Topping\nBuild G2 Broccoli_commander\nBuild R1 Blueberry\n\n36) wil: Move R1 Wil Y2\n\n37) Broccoli_Commander: Build R2 Broccoli_commander\n\n38) wil: Move R1 Y2 Topping\n\n39) Broccoli_Commander: Move R2 Broccoli_commander Y3\n\n40) wil: Move B1 Y3 B2\n\n41) Broccoli_Commander: Move R2 Y3 B2\n\twil: unless you wish for some reason to finish this...I should just knock over my king.\n\n\tBroccoli_Commander: As you wish! I think it is over too.\n\twil: its been over for a bit.. either you haven&#39;t lost anything...or I havent gotten any better...probably both!\n\tBroccoli_Commander: Luck always takes part as well! Thanks for the game!\n\nHomeworlds Online (SDG# 33991)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.12, Ended: 2018.6.10\nParticipants: Laurie_Menke (S), Mandrel (N)\nWinner: Laurie_Menke\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Laurie_Menke: Homeworld B1 Y3 G3\n\tLaurie_Menke: Hi Mandrel! Have fun!\n\n3) Mandrel: Build G1 Mandrel\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tMandrel: You too!\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Mandrel: Build Y1 Mandrel\n\n8) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n9) Mandrel: D Y1 Mandrel B3 Wait\n\n10) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n11) Mandrel: B Y1 Mandrel\n\n12) Laurie_Menke: Build G1 Laurie_menke\n\n13) Mandrel: Build G2 Mandrel\n\n14) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Blue\nBuild G2 Yellow\nBuild G3 Laurie_menke\n\n15) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild G3 Mandrel\nBuild Y2 Wait\n\n16) Laurie_Menke: Discover G1 Yellow Y3 Hi\n\n17) Mandrel: D G3 Mandrel Y3 Roast\n\n18) Laurie_Menke: Trade G2 Y2 Blue\n\n19) Mandrel: Trade G2 B2 Mandrel\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Hi\nBuild G2 Yellow\nBuild G3 Laurie_menke\n\n21) Mandrel: M B2 Mandrel Roast\n\n22) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n23) Mandrel: B B1 Roast\n\n24) Laurie_Menke: Build G1 Laurie_menke\n\n25) Mandrel: Trade B2 R2 Roast\n\n26) Laurie_Menke: Move R1 Laurie_menke Yellow\n\n27) Mandrel: Move G3 Roast Blue\n\n28) Laurie_Menke: Discover Y2 Blue R3 Red\n\n29) Mandrel: S R2 Roast\nA G1 Blue\nPass\n\n30) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n\tLaurie_Menke: Oh no! I&#39;m sorry, Mandrel That&#39;s not how I wanted to beat you. :( I hope everything&#39;s OK with you!\n\tMandrel: Apologies, life suddenly got extra hectic! I&#39;m sure it was just delaying the inevitable :)\n\tLaurie_Menke: No worries... glad you&#39;re OK and hope the hectic gets better. I totally  understand how that is!  Much more likely that I would have lost, though, not the other way around.  :)\n\nHomeworlds Online (SDG# 33878)\nStarted: 2018.4.13, Ended: 2018.8.23\nParticipants: Trydnt (S), mathochist (N)\nWinner: Trydnt\n\n1) mathochist: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tmathochist: Please remind me what the time settings mean. Thx!\n\n3) mathochist: Homeworld Y2 B3 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) mathochist: Build G1 Mathochist\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) mathochist: Trade G3 Y3 Mathochist\n\n8) Trydnt: Build G1 Trydnt\n\n9) mathochist: Build G1 Mathochist\n\n10) Trydnt: Trade G1 B1 Trydnt\n\tTrydnt: it just determines how long you can go without making a move before your opponent can force you to resign. I usually leave it for a few days even after it&#39;s past the deadline then clear it out of my cache if the person still hasn&#39;t made their move so it&#39;s not that important\n\n11) mathochist: Trade G1 B1 Mathochist\n\tmathochist: got it, thanks\n\n12) Trydnt: Build G1 Trydnt\n\n13) mathochist: Discover B1 Mathochist R1 Tiny\n\n14) Trydnt: Trade G1 R1 Trydnt\n\n15) mathochist: Build G1 Mathochist\n\n16) Trydnt: Build R1 Trydnt\n\n17) mathochist: Discover G1 Mathochist Y1 Superstar\n\n18) Trydnt: Build Y2 Trydnt\n\n19) mathochist: Discover G1 Superstar Y3 Supererstar\n\n20) Trydnt: Build R2 Trydnt\n\n21) mathochist: Build Y1 Mathochist\n\n22) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 Trydnt Supererstar\nDiscover Y1 Supererstar G1 G1\n\n23) mathochist: Trade Y3 R3 Mathochist\n\n24) Trydnt: Build Y2 G1\n\n25) mathochist: Build G2 Mathochist\n\n26) Trydnt: Build G2 Trydnt\n\n27) mathochist: Move G2 Mathochist Tiny\n\n28) Trydnt: Discover G2 Trydnt Y3 Y3\n\n29) mathochist: Build R2 Mathochist\n\n30) Trydnt: Discover R2 Trydnt G3 G3\n\n31) mathochist: Move R2 Mathochist G1\n\n32) Trydnt: Sacrifice R1 Trydnt\nAttack R2 G1\n\n33) mathochist: Move Y1 Mathochist Tiny\n\tmathochist: Been super busy. Sorry if this move times out. Definitely get to it within the evening, if you will wait. Thanks.\n\n34) Trydnt: Discover Y2 G1 G3 G33\n\n35) mathochist: Discover G2 Tiny Y3 Blob\n\n36) Trydnt: Sacrifice G2 Y3\nBuild Y2 G1\nBuild Y3 G33\n\n37) mathochist: Sacrifice G2 Blob\nBuild G2 Mathochist\nBuild Y3 Tiny\n\n38) Trydnt: Build R1 G1\n\n39) mathochist: Build G2 Supererstar\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G1\nBuild R3 G3\nBuild R3 Trydnt\n\n41) mathochist: Build G2 Supererstar\n\n42) Trydnt: Trade R3 G3 Trydnt\n\tmathochist: I are screwed :P\n\n43) mathochist: Sacrifice Y3 Tiny\nMove G1 Supererstar G1\nMove G2 Supererstar G1\nMove G2 Supererstar G1\nCatastrophe G1 G\n\n44) Trydnt: Move Y2 G33 Tiny\n\n45) mathochist: Sacrifice Y1 Tiny\nDiscover B1 Tiny Y3 Julie\n\n46) Trydnt: Move B1 Trydnt G3\n\n47) mathochist: Build G1 Mathochist\n\n48) Trydnt: Trade R2 Y2 G3\n\n49) mathochist: Discover G2 Mathochist B1 Etho\n\tmathochist: Sorry, I know I&#39;ve slowed way down. Life, chronic stuff. I&#39;m still here. \n\n50) Trydnt: Build B2 G3\n\tmathochist: Finally got my brain back for a little while! (been alternating between sleeping all the time and total brain fog for the longest time)\n\n\tTrydnt: no worries! I&#39;m in like 10 games at any one time so happy to wait for people to be ready \n\tmathochist: I&#39;m in like 17 games right now, and officially out of time in most of them. Glad most people don&#39;t seem to mind too much. \n\nHomeworlds Online (SDG# 33995)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.13, Ended: 2018.4.17\nParticipants: goulo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) goulo: Homeworld R1 B3 G3\n\tgoulo: hi, have fun!\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: you too!\n\n4) goulo: Build G1 Goulo\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) goulo: Build G1 Goulo\n\n7) Trydnt: Build R1 Trydnt\n\n8) goulo: Trade G1 Y1 Goulo\n\n9) Trydnt: Build G1 Trydnt\n\n10) goulo: Build Y1 Goulo\n\n11) Trydnt: Build R2 Trydnt\n\n12) goulo: Build Y2 Goulo\n\n13) Trydnt: Trade R2 Y2 Trydnt\n\n14) goulo: Discover Y1 Goulo Y2 Flava\n\n15) Trydnt: Discover Y2 Trydnt G3 G3\n\n16) goulo: Build Y3 Goulo\n\n17) Trydnt: Build Y3 G3\n\n18) goulo: Trade Y2 R2 Goulo\n\n19) Trydnt: Build R2 Trydnt\n\n20) goulo: Build R2 Goulo\n\n21) Trydnt: Sacrifice Y3 G3\nMove R1 Trydnt G3\nMove R1 G3 Flava\nMove R1 Flava Goulo\nCatastrophe Goulo R\n\n22) goulo: Trade Y1 R1 Goulo\n\n23) Trydnt: Trade G1 B1 Trydnt\n\n24) goulo: Sacrifice G3 Goulo\nBuild Y1 Flava\nBuild Y2 Goulo\nBuild Y3 Goulo\n\n25) Trydnt: Build Y3 G3\n\n26) goulo: Trade Y3 G3 Goulo\n\n27) Trydnt: Build B1 Trydnt\n\n28) goulo: Trade Y2 R2 Goulo\n\n29) Trydnt: Move B1 Trydnt G3\n\n30) goulo: Discover Y1 Flava B3 Bluega\n\n31) Trydnt: Build B1 Trydnt\n\n\tgoulo: I can&#39;t see anyway to save my homeworld! Thanks for the game.\n\tTrydnt: you could have sacrificed your y3 to send your yellows into my g3 star but that may have just delayed the inevitable. good game!\n\nHomeworlds Online (SDG# 33994)\nStarted: 2018.4.13, Ended: 2018.4.18\nParticipants: mathochist (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G2 B1 Y3\n\n2) mathochist: Homeworld B2 Y3 G3\n\tBabamots: Good luck!\n\n3) Babamots: Build Y1 Babamots\n\tmathochist: you too!\n\n4) mathochist: Build G1 Mathochist\n\n5) Babamots: Build Y1 Babamots\n\n6) mathochist: Build G1 Mathochist\n\n7) Babamots: Trade Y1 G1 Babamots\n\n8) mathochist: Trade G1 Y1 Mathochist\n\n9) Babamots: Trade Y1 B1 Babamots\n\n10) mathochist: Build Y1 Mathochist\n\n11) Babamots: Build B1 Babamots\n\n12) mathochist: Trade Y1 R1 Mathochist\n\n13) Babamots: Build Y1 Babamots\n\n14) mathochist: Build R1 Mathochist\n\n15) Babamots: Trade Y1 R1 Babamots\n\n16) mathochist: Trade G3 B3 Mathochist\n\n17) Babamots: Build R2 Babamots\n\n18) mathochist: Discover R1 Mathochist Y1 George\n\n19) Babamots: Discover B1 Babamots G3 Ferenginar\n\n20) mathochist: Build R2 Mathochist\n\n21) Babamots: Build B2 Ferenginar\n\n22) mathochist: Move R2 Mathochist George\n\n23) Babamots: Build B2 Babamots\n\n24) mathochist: Move R2 George Ferenginar\n\n25) Babamots: Sacrifice R1 Babamots\nAttack R2S Ferenginar\n\n26) mathochist: Build G1 Mathochist\n\n27) Babamots: Build B3 Ferenginar\n\n28) mathochist: Build G2 Mathochist\n\n29) Babamots: Trade B3 Y3 Ferenginar\n\n30) mathochist: Discover G2 Mathochist Y1 Bob\n\n31) Babamots: Build Y2 Babamots\n\n32) mathochist: Discover Y1 Mathochist R1 Fred\n\n33) Babamots: Move B2 Ferenginar Fred\n\n34) mathochist: Trade B3 R3 Mathochist\n\tBabamots: Looks like your system name theme is common English boys&#39; names. Is that right? \n\tmathochist: I suppose so :) I think I take the simplest names so I don&#39;t risk decision paralysis.\n\n35) Babamots: Attack Y1S Fred\n\tmathochist: I made a mistake or two early on and I think all I can do now is delay the inevitable.\n\n36) mathochist: Move G1 Mathochist Bob\n\n37) Babamots: Build Y2 Ferenginar\n\n38) mathochist: Build G2 Mathochist\n\n39) Babamots: Build Y2 Ferenginar\n\n40) mathochist: Build G3 Bob\n\tBabamots: Yeah, it&#39;s looking rough for you. I decided in a recent game that yellow is the most crushing color to monopolize.\n\n41) Babamots: Sacrifice Y2 Babamots\nMove G1 Babamots Ferenginar\nMove G1 Ferenginar Bob\nCatastrophe Bob G\n\n42) mathochist: Discover G2 Mathochist Y1 Fluffy\n\n43) Babamots: Build Y2 Babamots\n\n44) mathochist: Build G1 Fluffy\n\n45) Babamots: Build B3 Ferenginar\n\n46) mathochist: Discover G2 Fluffy B3 Moon\n\n47) Babamots: Sacrifice Y2 Babamots\nMove Y2 Ferenginar George\nMove Y2 Ferenginar Fluffy\n\n48) mathochist: Trade G2 Y2 Moon\n\n49) Babamots: Sacrifice Y3 Ferenginar\nMove Y1 Fred Mathochist\nMove Y2 Fluffy Mathochist\nMove Y2 George Mathochist\nCatastrophe Mathochist Y\n\n50) mathochist: Move Y2 Moon Babamots\n\n51) Babamots: Sacrifice Y3 Babamots\nMove B3 Ferenginar Mathochist\nMove B1 Ferenginar Mathochist\nMove B2 Fred Mathochist\nCatastrophe Mathochist B\n\tBabamots: Thanks for the game!\n\tmathochist: You, too!\r\n\r\nI considered resigning earlier, but figured I&#39;d see how long I could drag it out instead. :)\n\tBabamots: No problem. This is hardly the easiest game on the site.\n\n\nHomeworlds Online (SDG# 33989)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.13, Ended: 2018.6.1\nParticipants: Babamots (S), Trydnt (N)\nWinner: Babamots\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Babamots: Homeworld G3 B1 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Babamots: Build Y1 Babamots\n\tBabamots: Good luck! I&#39;m feeling rusty and looking for some practice.\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Babamots: Build Y2 Babamots\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Babamots: Trade Y2 G2 Babamots\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) Babamots: Trade Y1 R1 Babamots\n\tBabamots: You like creative system names I see :-P.\n\n11) Trydnt: Build G1 Trydnt\n\n12) Babamots: Discover G2 Babamots Y2 Iconia\n\n13) Trydnt: Build G1 Trydnt\n\n14) Babamots: Build G1 Iconia\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) Babamots: Discover G2 Iconia B3 Betazed\n\n17) Trydnt: Trade G1 B1 Trydnt\n\n18) Babamots: Build G1 Betazed\n\n19) Trydnt: Build B1 Trydnt\n\n20) Babamots: Trade G1 Y1 Betazed\n\n21) Trydnt: Discover B1 Trydnt Y3 Y3\n\n22) Babamots: Sacrifice G2 Betazed\nBuild Y2 Babamots\nBuild Y3 Betazed\n\n23) Trydnt: Trade B1 G1 Y3\n\n24) Babamots: Discover Y2 Babamots B2 Kurl\n\n25) Trydnt: Sacrifice G1 Y3\nBuild Y3 G3\n\n26) Babamots: Sacrifice G1 Iconia\nBuild Y2 Kurl\n\n27) Trydnt: Build B1 Trydnt\n\n28) Babamots: Trade Y2 G2 Kurl\n\n29) Trydnt: Move B1 Trydnt G3\n\n30) Babamots: Trade Y3 B3 Betazed\n\n31) Trydnt: Discover Y2 Trydnt Y3 Y3\n\n32) Babamots: Discover B3 Betazed Y2 Bajor\n\n33) Trydnt: Discover Y1 G3 G2 G2\n\n34) Babamots: Build G1 Kurl\n\n35) Trydnt: Build G1 Trydnt\n\n36) Babamots: Trade G1 R1 Kurl\n\n37) Trydnt: Build R2 Trydnt\n\n38) Babamots: Build R2 Kurl\n\n39) Trydnt: Move Y3 G3 Kurl\n\n40) Babamots: Sacrifice G2 Kurl\nBuild R2 Kurl\nBuild R3 Babamots\n\n41) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Kurl\nAttack R2 Kurl\n\n42) Babamots: Sacrifice R3 Babamots\nAttack R2N Kurl\nAttack R2N Kurl\nPass\n\n43) Trydnt: Sacrifice Y2 Y3\nDiscover G1 Trydnt Y3 Y3\nDiscover B1 G3 Y2 Y2\n\n44) Babamots: Move R2 Kurl Y3\n\n45) Trydnt: Build R2 Trydnt\n\n46) Babamots: Build R3 Babamots\n\tBabamots: Huh, that&#39;s not what I expected at all. I&#39;ll need to come back and make a move when I can focus better.\n\n47) Trydnt: Sacrifice R2 Trydnt\nAttack Y2 Kurl\nAttack R2 Kurl\n\n48) Babamots: Attack G1 Y3\n\n49) Trydnt: Attack R1 Kurl\n\n50) Babamots: Move R3 Babamots Y2\n\n51) Trydnt: Discover B1 Y2 G1 G1\n\n52) Babamots: Move R3 Y2 G1\n\n53) Trydnt: Sacrifice B1 G1\nPass\n\n54) Babamots: Build Y2 Babamots\n\n55) Trydnt: Sacrifice Y3 Kurl\nMove Y1 G2 Babamots\nMove Y2 Kurl Babamots\nCatastrophe Babamots Y\nMove R2 Kurl Babamots\n\n56) Babamots: Sacrifice Y1 Betazed\nMove B3 Bajor Babamots\n\n57) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Babamots\nBuild R3 Kurl\nBuild R3 Trydnt\n\n58) Babamots: Sacrifice R2 Y3\nAttack R2N Babamots\nAttack R2N Babamots\n\n59) Trydnt: Trade R3 G3 Trydnt\n\n60) Babamots: Trade R2 Y2 Babamots\n\n61) Trydnt: Build R2 Trydnt\n\n62) Babamots: Build R2 G1\n\n63) Trydnt: Trade R1 Y1 Trydnt\n\n64) Babamots: Trade R2 G2 Babamots\n\n65) Trydnt: Trade R1 G1 Kurl\n\n66) Babamots: Discover G2 Babamots B2 Galorndon\n\n67) Trydnt: Build G2 Kurl\n\n68) Babamots: Build Y1 Babamots\n\n69) Trydnt: Build Y2 Trydnt\n\n70) Babamots: Discover Y1 Babamots Y2 Iconia\n\n71) Trydnt: Sacrifice Y2 Trydnt\nMove R2 Trydnt Y3\nDiscover B1 Trydnt G3 G3\n\n72) Babamots: Sacrifice G2 Galorndon\nBuild Y2 Babamots\nBuild Y3 Babamots\n\n73) Trydnt: Trade R3 Y3 Kurl\n\n74) Babamots: Sacrifice Y2 Babamots\nMove R3 G1 Y3\nMove R2 G1 G3\n\n75) Trydnt: Move R2 Y3 Kurl\n\n76) Babamots: Attack B1N G3\n\n77) Trydnt: Build Y2 Kurl\n\n78) Babamots: Build B1 G3\n\n79) Trydnt: Build R1 Kurl\n\n80) Babamots: Build B2 G3\n\n81) Trydnt: Move Y3 Kurl G3\n\n82) Babamots: Sacrifice Y3 Babamots\nMove B2 G3 Kurl\nMove B1 G3 Kurl\nMove B1 G3 Kurl\nCatastrophe Kurl B\n\n83) Trydnt: Trade Y1 R1 Trydnt\n\n84) Babamots: Sacrifice Y1 Iconia\nDiscover R2 G3 Y2 Iconia\n\n85) Trydnt: Build G1 Trydnt\n\n86) Babamots: Build G1 Y3\n\n87) Trydnt: Trade G1 B1 Trydnt\n\n88) Babamots: Build G1 Y3\n\n89) Trydnt: Move B1 Trydnt G3\n\n90) Babamots: Move G1 Y3 Trydnt\n\n91) Trydnt: Trade G3 R3 Trydnt\n\n92) Babamots: Sacrifice Y2 Babamots\nMove R3 Y3 Trydnt\nMove G1 Y3 Trydnt\n\n93) Trydnt: Sacrifice R3 Trydnt\nAttack G1 Trydnt\nAttack G1 Trydnt\nPass\n\n94) Babamots: Sacrifice R2 Iconia\nAttack R1 Trydnt\nAttack G1 Trydnt\n\n95) Trydnt: Move Y3 G3 Trydnt\n\n\tBabamots: Thanks for the game!\n\tBabamots: I&#39;m working on organizing an online Homeworlds tournament through SDG, hopefully starting in the next couple of weeks. Do you want in?\n\tTrydnt: absolutely!\n\tBabamots: Are you in the Facebook group for Binary Homeworlds? I&#39;ll make a post in there and in some other related Facebook groups.\n\tTrydnt: Yeah I am\n\tBabamots: Alrighty, watch for an announcement fairly soon.\n\tTrydnt: will do thanks!\n\nHomeworlds Online (SDG# 33996)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.15, Ended: 2018.4.25\nParticipants: Trydnt (S), Broccoli_Commander (N)\nWinner: Trydnt\n\n1) Broccoli_Commander: Homeworld G3 B2 Y3\n\n2) Trydnt: Homeworld B2 R1 G3\n\n3) Broccoli_Commander: Build Y1 Broccoli_commander\n\n4) Trydnt: Build G1 Trydnt\n\n5) Broccoli_Commander: Build Y1 Broccoli_commander\n\n6) Trydnt: Build G1 Trydnt\n\n7) Broccoli_Commander: Discover Y1 Broccoli_commander Y1 Cauliflower\n\n8) Trydnt: Trade G3 Y3 Trydnt\n\n9) Broccoli_Commander: Build Y2 Broccoli_commander\n\n10) Trydnt: Build Y2 Trydnt\n\n11) Broccoli_Commander: Discover Y2 Broccoli_commander B1 Blueberry\n\n12) Trydnt: Discover Y2 Trydnt G3 G3\n\n13) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n14) Trydnt: Discover G1 Trydnt Y3 Y3\n\n15) Broccoli_Commander: Discover Y1 Cauliflower B3 Muffin\n\n16) Trydnt: Discover G1 Trydnt Y3 Y33\n\n17) Broccoli_Commander: Trade Y2 G2 Blueberry\n\n18) Trydnt: Build G1 Y33\n\n19) Broccoli_Commander: Build G2 Blueberry\n\n20) Trydnt: Build G2 Y3\n\n21) Broccoli_Commander: Trade G2 R2 Blueberry\n\n22) Trydnt: Discover G1 Y3 Y1 Y1\n\n23) Broccoli_Commander: Trade G3 R3 Broccoli_commander\n\n24) Trydnt: Sacrifice G1 Y33\nBuild Y2 Trydnt\n\n25) Broccoli_Commander: Sacrifice Y1 Muffin\nMove R2 Blueberry Y3\n\n26) Trydnt: Sacrifice G2 Y3\nBuild G1 Y33\nBuild Y1 G3\n\n27) Broccoli_Commander: Build Y2 Broccoli_commander\n\n28) Trydnt: Trade Y3 G3 Trydnt\n\n29) Broccoli_Commander: Build Y3 Broccoli_commander\n\n30) Trydnt: Sacrifice Y2 G3\nMove Y1 G3 Y1\nMove Y1 Y1 Broccoli_commander\nCatastrophe Broccoli_commander Y\n\n31) Broccoli_Commander: Build G2 Blueberry\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y1\nBuild G3 Y1\nBuild G3 Y33\n\n33) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild R1 Y3\nBuild R1 Broccoli_commander\n\n34) Trydnt: Discover G2 Y1 B3 B3\n\n35) Broccoli_Commander: Move R2 Y3 Blueberry\n\n36) Trydnt: Trade G2 R2 B3\n\n37) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild R2 Blueberry\nBuild R3 Y3\n\n38) Trydnt: Move G3 Y33 Trydnt\n\n39) Broccoli_Commander: Trade R2 G2 Blueberry\n\n40) Trydnt: Sacrifice G3 Y1\nBuild G2 Trydnt\nBuild G2 Y33\nBuild G3 Y1\n\n41) Broccoli_Commander: Trade R3 Y3 Broccoli_commander\n\n42) Trydnt: Build Y1 Trydnt\n\n43) Broccoli_Commander: Build Y1 Broccoli_commander\n\n44) Trydnt: Move Y1 Trydnt B3\n\n45) Broccoli_Commander: Move R1 Y3 Y1\n\n46) Trydnt: Sacrifice G3 Y1\nBuild G3 Y1\nBuild Y2 B3\nBuild Y2 B3\n\n47) Broccoli_Commander: Build R2 Blueberry\n\n48) Trydnt: Sacrifice G3 Y1\nBuild R3 B3\nBuild G3 Y1\nPass\n\n49) Broccoli_Commander: Build R3 Broccoli_commander\n\n50) Trydnt: Move R2 B3 Y1\n\n51) Broccoli_Commander: Move R1 Y1 Y33\n\n52) Trydnt: Sacrifice R2 Y1\nAttack R1 Y33\nPass\n\n53) Broccoli_Commander: Trade R1 B1 Broccoli_commander\n\n54) Trydnt: Sacrifice G3 Y1\nBuild G3 Y1\nBuild R1 Y33\nBuild R2 Y33\n\n55) Broccoli_Commander: Move Y3 Broccoli_commander Blueberry\n\n56) Trydnt: Move G1 Y1 Broccoli_commander\n\n57) Broccoli_Commander: Build B1 Broccoli_commander\n\n58) Trydnt: Sacrifice R2 Y33\nAttack B1 Broccoli_commander\nAttack B1 Broccoli_commander\n\n59) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack B1 Broccoli_commander\nAttack B1 Broccoli_commander\n\n60) Trydnt: Sacrifice G2 Y33\nBuild G2 Broccoli_commander\nBuild R2 B3\n\n61) Broccoli_Commander: Build R2 Blueberry\n\n62) Trydnt: Trade G2 B2 Broccoli_commander\nCatastrophe Broccoli_commander B\n\n63) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove R2 Blueberry B3\nMove R2 Blueberry B3\nMove G2 Blueberry Y33\nCatastrophe B3 R\n\n64) Trydnt: Sacrifice G3 Y1\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Trydnt\nCatastrophe Broccoli_commander G\n\n\tBroccoli_Commander: You had a very clean game since the beginning. I never had a chance.\r\nWell played, thanks for the game!\n\nHomeworlds Online (SDG# 34025)\nStarted: 2018.4.15, Ended: 2019.5.26\nParticipants: jbarton680 (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: H Y1 B2 G3\n\n2) jbarton680: Homeworld Y1 B2 G3\n\n3) dragon76n: B G1 Dragon76n\n\n4) jbarton680: Build G1 Jbarton680\n\n5) dragon76n: T G1 Y1 Dragon76n\n\n\tdragon76n: Still your turn here on HomeWorlds... \n\tdragon76n: Are you ready to try out HomeWorlds yet?\n\nHomeworlds Online (SDG# 33920)\nStarted: 2018.4.15, Ended: 2018.5.13\nParticipants: Trydnt (S), mathochist (N)\nWinner: Trydnt\n\n1) mathochist: Homeworld B1 G2 Y3\n\n2) Trydnt: Homeworld G3 R2 B3\n\n3) mathochist: Build Y1 Mathochist\n\n4) Trydnt: Build B1 Trydnt\n\n5) mathochist: Trade Y1 G1 Mathochist\n\n6) Trydnt: Build B1 Trydnt\n\n7) mathochist: Build G1 Mathochist\n\n8) Trydnt: Trade B3 Y3 Trydnt\n\n9) mathochist: Discover G1 Mathochist Y3 Nomoon\n\n10) Trydnt: Build B2 Trydnt\n\n11) mathochist: Build Y1 Mathochist\n\n12) Trydnt: Discover B2 Trydnt Y1 Y1\n\n13) mathochist: Build G1 Nomoon\n\n14) Trydnt: Trade B2 G2 Y1\n\n15) mathochist: Discover G1 Nomoon Y1 Superstar\n\n16) Trydnt: Build Y2 Trydnt\n\n17) mathochist: Build Y2 Mathochist\n\n18) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 Trydnt Y1\nMove Y2 Y1 Nomoon\nMove Y2 Nomoon Mathochist\nCatastrophe Mathochist Y\n\n19) mathochist: Build G2 Superstar\n\n20) Trydnt: Build G3 Y1\n\n21) mathochist: Build G3 Mathochist\n\n22) Trydnt: Build B2 Trydnt\n\n23) mathochist: Trade G1 Y1 Mathochist\n\n24) Trydnt: Trade B2 Y2 Trydnt\n\n25) mathochist: Build Y2 Mathochist\n\n26) Trydnt: Discover G2 Y1 Y3 Y3\n\n27) mathochist: Trade Y1 R1 Mathochist\n\n28) Trydnt: Build G1 Y3\n\n29) mathochist: Sacrifice G3 Mathochist\nBuild R1 Mathochist\nBuild Y1 Mathochist\nBuild G3 Nomoon\n\n30) Trydnt: Sacrifice G2 Y3\nBuild Y2 Trydnt\nBuild Y3 Trydnt\n\n31) mathochist: Trade Y2 B2 Mathochist\n\n32) Trydnt: Build G2 Y1\n\n33) mathochist: Sacrifice G3 Nomoon\nBuild G3 Nomoon\nBuild Y2 Mathochist\nBuild R1 Mathochist\n\n34) Trydnt: Trade Y2 R2 Trydnt\n\n35) mathochist: Build Y2 Mathochist\n\n36) Trydnt: Sacrifice Y2 Trydnt\nMove G3 Y1 Nomoon\nMove G3 Nomoon Mathochist\n\n37) mathochist: Sacrifice Y2 Mathochist\nMove G1 Superstar Trydnt\nMove G2 Superstar Trydnt\n\n38) Trydnt: Sacrifice R2 Trydnt\nAttack B2 Mathochist\nAttack Y2 Mathochist\n\n39) mathochist: Sacrifice G1 Nomoon\nBuild G1 Trydnt\nCatastrophe Trydnt Green\n\n40) Trydnt: Sacrifice B2 Mathochist\nTrade Y2 R2 Mathochist\nCatastrophe Mathochist R\nTrade G3 R3 Mathochist\n\n\tmathochist: Huh, the rules as linked here say catastrophes have to happen at end of turn. I know it&#39;s an older version of the rules, but I thought it was in use here. Might have affected my play in a different game if I&#39;d realized. Interesting\n\nHomeworlds Online (SDG# 34037)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.16, Ended: 2018.4.28\nParticipants: Nico (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld B1 Y2 G3\n\n2) Nico: Homeworld B2 G3 R3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) Nico: Build R1 Nico\n\n5) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n6) Nico: Trade R1 Y1 Nico\n\n7) Broccoli_Commander: Build R1 Broccoli_commander\n\n8) Nico: Build R1 Nico\n\n9) Broccoli_Commander: Discover R1 Broccoli_commander Y3 Cauliflowrr\n\n10) Nico: B Y1 Nico\n\n11) Broccoli_Commander: Build R2 Broccoli_commander\n\n12) Nico: Discover Y1 Nico Y1 Colibris\n\n13) Broccoli_Commander: Build G1 Broccoli_commander\n\n14) Nico: Build Y2 Nico\n\n15) Broccoli_Commander: Discover R2 Broccoli_commander Y3 Banana\n\n\nHomeworlds Online (SDG# 33948)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.17, Ended: 2018.4.24\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Broccoli_Commander: Homeworld Y1 G3 Y3 *\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: Good game sir!\n\tBroccoli_Commander: I am playing trydnt, he is playing a very tight game. He is definitely going to win\n\twil: We played probably 15-20 live games per week for months...he&#39;s a smart kid...and better online than in real life..that part I can&#39;t figure out.\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\twil: Instant freezeout....yikes.\n\n5) wil: Discover G1 Wil Y3 Y3\n\tBroccoli_Commander: Yep, wanted to see what happens! No idea if it will work out.\n\tBroccoli_Commander: Although I&#39;m pretty sure I tried it before    hahaha\n\n6) Broccoli_Commander: Discover Y1 Broccoli_commander G2 Lettuce\n\n7) wil: Build G1 Y3\n\n8) Broccoli_Commander: Build Y2 Lettuce\n\tBroccoli_Commander: Could not bear the wrong name\n\n9) wil: Build G1 Wil\n\twil: easily understandable.\n\n10) Broccoli_Commander: Discover Y2 Lettuce B3 Blueberry\n\n11) wil: Build G2 Wil\n\n12) Broccoli_Commander: Build Y2 Lettuce\n\n13) wil: Trade G2 Y2 Wil\n\n14) Broccoli_Commander: Build Y3 Lettuce\n\n15) wil: Discover G1 Y3 G2 G2\n\n16) Broccoli_Commander: Move Y3 Lettuce Blueberry\n\n17) wil: S G3 Wil\nBuild G2 G2\nBuild G3 Y3\nBuild G3 Wil\n\n18) Broccoli_Commander: Trade Y3 R3 Blueberry\n\n19) wil: Trade G1 R1 Wil\n\n20) Broccoli_Commander: Build Y3 Lettuce\n\n21) wil: Sacrifice G3 Y3\nBuild G1 Wil\nBuild R1 Wil\nBuild G3 Y3\n\n22) Broccoli_Commander: Move Y2 Lettuce Blueberry\n\n23) wil: Discover Y2 Wil B3 B3\n\n24) Broccoli_Commander: Trade Y2 B2 Blueberry\n\n25) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 B3\nBuild R1 Wil\n\n26) Broccoli_Commander: Sacrifice B2 Blueberry\nTrade Y3 R3 Lettuce\nTrade Y3 B3 Broccoli_commander\n\n27) wil: Discover Y2 B3 B2 B2\n\n28) Broccoli_Commander: Build Y3 Lettuce\n\n29) wil: Sacrifice G2 G2\nBuild G2 G2\nBuild Y3 B3\n\n30) Broccoli_Commander: Build R2 Lettuce\n\n31) wil: Trade Y3 R3 B3\n\n32) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove R3 Blueberry Lettuce\nMove R3 Lettuce Y3\nMove R3 Lettuce B3\n\n33) wil: Sacrifice R1 Wil\nAttack R3 Y3\n\twil: quaking like an aspen..\n\n34) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack R3 B3\nAttack Y2 B3\n\tBroccoli_Commander: I&#39;d say the game can really go either way. It&#39;s funny because it&#39;s possible to counter my yellow freeze out by getting a y3 yourself and I thought I would get a bigger lead since you did not... but in the end I&#39;m pretty impressed by the position you are in. You are ahead in several aspects. Interesting!\n\tBroccoli_Commander: Plus I definitely learnt new idioms with you :)\n\n35) wil: Sacrifice G3 Wil\nBuild R1 Wil\nBuild G3 Wil\nBuild Y3 B2\n\n36) Broccoli_Commander: Move R3 B3 G2\n\tBroccoli_Commander: I have so lost in fact...\n\n37) wil: Move Y3 B2 Blueberry\n\twil: this looks a lot like a trade.\n\twil: I thought you were gonna run right in on me...\n\n38) Broccoli_Commander: Build Y3 Lettuce\n\tBroccoli_Commander: Yeah well.. it will end up badly for my crops I fear!\n\n39) wil: Sacrifice R1 Wil\nAttack Y2 Blueberry\n\n40) Broccoli_Commander: Attack G2 G2\n\n41) wil: Move R3 Y3 B2\n\twil: slowly...I almost took both your R3s out...\n\tBroccoli_Commander: Yeah why didn&#39;t you?\n\n42) Broccoli_Commander: Sacrifice G2 G2\nBuild B1 Broccoli_commander\nBuild B1 Broccoli_commander\n\twil: there is a price, and I missed the op in order for other plan\n\n43) wil: Sacrifice G3 Wil\nBuild G2 G2\nBuild G3 Wil\nBuild R1 B2\n\n44) Broccoli_Commander: Move B1 Broccoli_commander Lettuce\n\n45) wil: Build R2 Wil\n\n46) Broccoli_Commander: Attack G2 G2\n\n47) wil: Move G1 Y3 G2\nCatastrophe G2 G\n\n48) Broccoli_Commander: Move R3 B3 Lettuce\n\n49) wil: Move R1 Wil Blueberry\n\n50) Broccoli_Commander: Build B1 Lettuce\n\n51) wil: Move G1 Wil Blueberry\n\twil: scorched earth policy enacted.\n\twil: tried a four person team HW game the other night. quit after two hours...  Not as bad as one night were a two person game for a medal with Andy lasted FOUR hours...and no medal...(although he got one the next game which lasted about a half hour)\n\n52) Broccoli_Commander: Build B2 Broccoli_commander\n\n53) wil: Build R2 Blueberry\n\twil: You went and moved him!\n\n54) Broccoli_Commander: Build R2 Lettuce\n\n55) wil: Trade R1 G1 B2\n\n56) Broccoli_Commander: Trade B3 R3 Broccoli_commander\n\n57) wil: Move R2 Blueberry Lettuce\n\n58) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack R2 Lettuce\nPass\n\n59) wil: Sacrifice G3 Y3\nBuild R1 Blueberry\nBuild R2 B2\nBuild Y3 B2\n\n60) Broccoli_Commander: Build B3 Broccoli_commander\n\n61) wil: Build G1 Wil\n\n62) Broccoli_Commander: Move B3 Broccoli_commander B2\n\n63) wil: Sacrifice Y2 B2\nMove Y3 B2 B3\nMove R3 B2 B3\n\n64) Broccoli_Commander: Move Y2 B3 B2\n\n65) wil: Sacrifice Y2 Blueberry\nMove R1 Blueberry Lettuce\nMove R1 Blueberry Lettuce\nCatastrophe Lettuce R\n\n66) Broccoli_Commander: Trade B2 R2 Broccoli_commander\n\n67) wil: Discover R3 B3 Y2 Y2\n\n68) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack R2 B2\nAttack G1 B2\n\n69) wil: Build G2 Blueberry\n\n70) Broccoli_Commander: Build Y2 B2\n\tBroccoli_Commander: Erg what a blunder.\r\nWon&#39;t win a medal like that. Won&#39;t even last four hours (which must be quite exhausting).\r\n\n\n71) wil: Move G1 Blueberry Y2\n\twil: lol,  i think most medals have been won when Andy made a blunder\n\n72) Broccoli_Commander: Trade B3 G3 B2\n\n73) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 Wil\nBuild R1 Y2\n\n74) Broccoli_Commander: Sacrifice G3 B2\nBuild G3 B2\nBuild B2 Broccoli_commander\nBuild B3 Lettuce\n\n75) wil: Move R1 Wil Blueberry\n\n76) Broccoli_Commander: Trade B3 R3 Lettuce\n\n77) wil: Trade G3 B3 Wil\n\n78) Broccoli_Commander: Discover B1 Lettuce G3 Pes\n\n79) wil: Move Y3 B3 Wil\n\n80) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove B1 Lettuce Pes\nMove B1 Pes Wil\nMove B1 Pes Wil\nCatastrophe Wil B\n\n81) wil: Build Y3 Blueberry\n\n82) Broccoli_Commander: Sacrifice Y2 B2\nMove Y2 B2 Wil\nMove Y1 Lettuce Wil\nCatastrophe Wil Y\n\n\tBroccoli_Commander: Heh you were playing too late in the night or too early!\r\nI&#39;m surprised by how it turned out.\r\n\r\nThanks for the game!\n\nHomeworlds Online (SDG# 34044)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.17, Ended: 2018.5.22\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) ts52: Discover Y2 Ts52 G1 Kermit\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 Trydnt\nBuild Y3 G3\n\n12) ts52: Discover Y1 Ts52 G1 Robin\n\n13) Trydnt: Sacrifice Y2 G3\nDiscover Y2 Trydnt B3 B3\nDiscover Y1 G3 G1 G1\n\n14) ts52: Build Y2 Robin\n\n15) Trydnt: Trade Y2 R2 B3\n\n16) ts52: Build G2 Ts52\n\n17) Trydnt: Build Y2 G1\n\n18) ts52: Trade G2 R2 Ts52\n\n19) Trydnt: Move Y3 G3 Robin\n\n20) ts52: Sacrifice Y2 Robin\nDiscover Y1 Robin B3 Gonzo\nMove Y2 Kermit Gonzo\n\n21) Trydnt: Trade Y3 R3 Trydnt\n\n22) ts52: Trade Y1 G1 Gonzo\n\n23) Trydnt: Move Y3 Robin Gonzo\n\tTrydnt: that was terrible. I should have made the first move\n\n24) ts52: Discover G1 Gonzo B1 Grover\n\n25) Trydnt: Sacrifice R2 B3\nAttack Y2 Gonzo\nPass\n\n26) ts52: Build G1 Ts52\n\n27) Trydnt: Trade Y2 R2 Gonzo\n\n28) ts52: Build G2 Grover\n\n29) Trydnt: Trade R3 G3 Trydnt\n\n30) ts52: Build G2 Grover\n\n31) Trydnt: Move Y3 Gonzo Grover\n\n32) ts52: Discover G1 Ts52 B1 Cookie\n\n33) Trydnt: Sacrifice R2 Gonzo\nAttack G2 Grover\nAttack G2 Grover\n\n34) ts52: Build G2 Grover\nCatastrophe Grover G\n\n35) Trydnt: Discover Y1 G1 B3 B3\n\n36) ts52: Build R1 Ts52\n\n37) Trydnt: Trade Y1 R1 B3\n\n38) ts52: Move R2 Ts52 Cookie\n\n39) Trydnt: Build Y1 G1\n\n40) ts52: Build R1 Cookie\n\n41) Trydnt: Build Y1 G1\n\n42) ts52: Trade R2 Y2 Cookie\n\n43) Trydnt: Move Y3 Grover B3\n\n\tts52: Crap. Sorry about that. Lost track of the fact that it was my turn somehow. ):\n\nHomeworlds Online (SDG# 33914)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.18, Ended: 2018.4.23\nParticipants: BoredMan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) BoredMan: Homeworld B3 Y2 G3\n\tBoredMan: Damn can&#39;t figure out how to make a move.\n\tdlwillson: Try: h b3 y2 g3\r\n\r\nH means home, then two available pyramids for stars, then one more available pyramid for your first ship.\n\n3) dlwillson: B G1 Dlwillson\n\n\tdlwillson: The only sensible move is: b g1 boredman\n\tBoredMan: ok it&#39;s the first time I play this game as well :D\n\tdlwillson: Well, have fun! It&#39;s my thousandth, or so. I love this game. There&#39;s a strategy guide around somewhere. My most highly recommended opponents are Felix and Wil.\n\tBoredMan: Hmm if I type in &quot;b g1&quot; is says the sytem doesn&#39;t exist.\n\tdlwillson: Read the recognized commands section of this page.\r\n\r\nYou have to specify which system you want to build the g1 in.\n\nHomeworlds Online (SDG# 33990)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.18, Ended: 2018.4.23\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\twil: until I get out of this tourney game, I have only room for one on my slate...\n\n4) wil: Build G1 Wil\n\tTrydnt: haha fair enough. I&#39;ll have to get in on the next tournament\n\twil: hopefullly one will start up about a month after this one ends...  The next one may take a year or more!  perfect\r\n\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: Build Y2 Wil\n\n9) Trydnt: Trade Y1 B1 Trydnt\n\n10) wil: Discover Y1 Wil B3 B3\n\n11) Trydnt: Build B1 Trydnt\n\n12) wil: Sacrifice G3 Wil\nBuild Y1 B3\nBuild Y3 B3\nBuild Y3 Wil\n\n13) Trydnt: Discover Y2 Trydnt G2 G2\n\n14) wil: Move Y1 B3 G2\n\n15) Trydnt: Discover Y2 G2 G3 G3\n\n16) wil: Move Y2 Wil G3\n\n17) Trydnt: Build Y3 G3\n\n18) wil: Move Y1 G2 G3\nCatastrophe G3 Y\n\twil: yeah I&#39;m lookin at you!\r\n\n\twil: Hey YOU!\n\n19) Trydnt: Discover B1 Trydnt Y2 Y2\n\n20) wil: Trade Y3 G3 B3\n\n21) Trydnt: Build B2 Trydnt\n\n22) wil: Sacrifice G3 B3\nBuild Y1 B3\nBuild Y2 B3\nBuild Y3 Wil\n\n23) Trydnt: Discover B2 Trydnt G2 G2\n\n24) wil: Trade Y3 G3 Wil\n\n25) Trydnt: Build B2 G2\n\n26) wil: Trade Y3 B3 Wil\n\n27) Trydnt: Build B2 Trydnt\n\n28) wil: Discover Y1 B3 G2 Gtoo\n\n29) Trydnt: Sacrifice B2 G2\nTrade B1 R1 Trydnt\nTrade B1 R1 Y2\n\n30) wil: Sacrifice G3 Wil\nBuild Y3 B3\nBuild Y3 Gtoo\nBuild Y3 Gtoo\n\n31) Trydnt: Move G3 Trydnt Gtoo\n\n32) wil: Sacrifice Y3 B3\nMove Y3 Gtoo Trydnt\nDiscover Y3 Gtoo G3 G3\nDiscover Y1 Gtoo R3 R3\n\n33) Trydnt: Sacrifice B2 Trydnt\nTrade G3 Y3 Gtoo\nTrade R1 B1 Y2\n\n34) wil: Trade Y3 R3 Trydnt\n\n35) Trydnt: Sacrifice Y3 Gtoo\nDiscover B1 Y2 Y3 Y3\nMove B2 G2 Y3\nMove B1 Y3 Wil\n\tTrydnt: I don&#39;t know what I was trying to do\n\n36) wil: Attack R1 Trydnt\n\n\tTrydnt: thrusters failed just short of mission completion\n\twil: hate that\n\nHomeworlds Online (SDG# 34050)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.18, Ended: 2018.4.18\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34041)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.18, Ended: 2018.4.18\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R1 B3\n\n\nHomeworlds Online (SDG# 34058)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.20, Ended: 2018.4.26\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) wil: Build G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: Build G1 Wil\n\twil: This is a practice game for our next three!\n\n6) Felix: Build G2 Felix\n\tFelix: Hehe. Good luck!\n\n7) wil: Trade G1 Y1 Wil\n\n8) Felix: Trade G2 Y2 Felix\n\n9) wil: Trade G1 R1 Wil\n\n10) Felix: T G1 R1 Felix\n\n11) wil: Build R2 Wil\n\n12) Felix: B R2 Felix\n\n13) wil: Trade R2 G2 Wil\n\n14) Felix: Discover R2 Felix B2 Grunge\n\n15) wil: Discover R1 Wil G3 G3\n\n16) Felix: Sacrifice G3 Felix\nBuild R2 Grunge\nBuild R2 Felix\nBuild R3 Felix\n\n17) wil: Discover Y1 Wil G3 Gee3\n\n18) Felix: Trade R2 G2 Felix\n\n19) wil: Build Y1 Gee3\n\n20) Felix: Trade R2 Y2 Grunge\n\n21) wil: Build Y2 Gee3\n\n22) Felix: Move Y2 Grunge Gee3\nCatastrophe Gee3 Yellow\n\n23) wil: Build G1 Wil\n\n24) Felix: B G1 Felix\n\n25) wil: Trade G2 Y2 Wil\n\n26) Felix: Move G2 Felix Grunge\n\n27) wil: Build R2 G3\n\n28) Felix: Build R2 Grunge\n\n29) wil: Trade G1 Y1 Wil\n\n30) Felix: Discover R1 Felix B2 Joy\n\n31) wil: Discover Y2 Wil R3 R3\n\n32) Felix: Build R3 Felix\n\n33) wil: Build Y1 Wil\n\n34) Felix: Move Y2 Felix Grunge\n\n35) wil: Discover Y1 Wil B3 B3\n\n36) Felix: Trade R3 B3 Felix\n\n37) wil: Sacrifice G3 Wil\nBuild Y2 R3\nBuild Y3 B3\nBuild Y3 Wil\n\n38) Felix: Build R3 Felix\n\n39) wil: Trade Y3 G3 Wil\n\n40) Felix: Trade R3 Y3 Felix\n\n41) wil: Trade Y3 R3 B3\n\n42) Felix: Build Y3 Grunge\n\n43) wil: Build Y3 Wil\n\n44) Felix: Trade Y3 G3 Grunge\n\n45) wil: Discover G3 Wil Y3 Y3\n\n46) Felix: Move B3 Felix Grunge\n\n47) wil: Trade Y1 G1 Wil\n\n48) Felix: M B3 Grunge R3\n\n49) wil: Sacrifice Y2 R3\nMove Y2 R3 Grunge\nMove Y2 Grunge G3\n\n50) Felix: Sacrifice G2 Grunge\nBuild B1 R3\nBuild B1 R3\n\n51) wil: Build G1 Wil\n\n52) Felix: Sacrifice Y3 Felix\nMove B1 R3 Wil\nMove B1 R3 Wil\nMove B3 R3 Wil\nCatastrophe Wil Blue\n\n53) wil: Sacrifice Y2 G3\nMove R1 G3 Grunge\nMove R2 G3 Grunge\nCatastrophe Grunge R\n\twil: oops...this is the end...\n\twil: I can&#39;t stop it...might as well delay a tad\n\n54) Felix: Build R1 Felix\n\n\twil: good game, we can forgo the forgone conclusion I suppose.  It will be interesting to see the final games between you and babamot!  (I&#39;m supposing that is where it will go.)\n\tFelix: Thank you! Always a good game with you. And I dunno... I think you could give him a run for his money. We shall see!\n\twil: That we will (see that is)... but if i have it right, if I beat him, then I have to beat you. (so we both have one loss) and THEN we play two out of three for the final.  all so daunting!  It has been incredibly fun thou and I&#39;m so ready to start another round robin with three times as many players soon after it completes.  A guaranteed way to stay in regular games!\n\nHomeworlds Online (SDG# 34059)\nStarted: 2018.4.20, Ended: 2018.6.15\nParticipants: deanthebean (S), Felix (N)\nWinner: deanthebean\n\n1) Felix: Homeworld B2 R3 G3\n\n2) deanthebean: Homeworld R1 B2 G3\n\tFelix: Hello again :) Have fun!\n\n3) Felix: Build G1 Felix\n\tdeanthebean: Thanks! I won a game so I decided to come back for some punishment :P\n\n4) deanthebean: Build G1 Deanthebean\n\n5) Felix: Trade G1 Y1 Felix\n\tFelix: Haha, you give me too much credit!\n\n6) deanthebean: Build G1 Deanthebean\n\n7) Felix: B Y1 Felix\n\n8) deanthebean: Trade G1 Y1 Deanthebean\n\n9) Felix: B Y2 Felix\n\n10) deanthebean: Build Y2 Deanthebean\n\n11) Felix: Discover Y1 Felix B1 Out\n\tFelix: Your last move was a mistake, I&#39;m afraid. You might want to take it back and re-do it. Since you have four yellows in your system, I can simply call catastrophe on my turn and destroy them...\n\tdeanthebean: Thanks. Very sporting of you. I obviously didn&#39;t read the rules carefully enough. I assumed you had to have at least one ship in the system to trigger the catastrophe but of course I had no good reason for assuming that! \n\n12) deanthebean: Trade Y1 R1 Deanthebean\n\n13) Felix: T Y1 B1 Felix\n\tFelix: No problem! It would definitely make sense to think that you would need your own ship in the system to call a catastrophe, but no, either player can call a catastrophe in any overpopulated system at any point during their turn. There are definitely a lot of rules to keep in mind with this game!\n\n14) deanthebean: Build Y1 Deanthebean\n\tdeanthebean: Yeah. It&#39;s not that complicated but some of the rules are unintuitive. \n\n15) Felix: Build Y1 Felix\n\n16) deanthebean: Trade Y1 B1 Deanthebean\n\n17) Felix: Discover B1 Felix G1 Joy\n\n18) deanthebean: Build R1 Deanthebean\n\n19) Felix: Build B2 Joy\n\n20) deanthebean: Discover B1 Deanthebean G3 Euoi\n\n21) Felix: Move Y1 Felix Joy\n\n22) deanthebean: Build B3 Euoi\n\n23) Felix: Discover B1 Joy R3 Rim\n\n24) deanthebean: Move G3 Deanthebean Rim\n\n25) Felix: Build B3 Joy\n\n26) deanthebean: Attack B1 Rim\n\n27) Felix: Move B2 Joy Rim\n\n28) deanthebean: Attack B2 Rim\n\n29) Felix: Build B3 Joy\n\n30) deanthebean: Sacrifice Y2 Deanthebean\nMove B1 Rim Joy\nMove B1 Euoi Joy\nCatastrophe Joy Blue\n\n31) Felix: Build Y1 Joy\n\tdeanthebean: Was there a catch? \n\n32) deanthebean: Trade B2 Y2 Rim\n\tFelix: Not exactly. I just wanted to build that b3 :)\n\n33) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Out\nBuild Y3 Felix\n\n34) deanthebean: Build Y3 Rim\n\n35) Felix: S Y2 Felix\nM Y1 Joy Rim\nM Y1 Out Rim\nC Rim Yellow\n\n36) deanthebean: Trade R1 Y1 Deanthebean\n\n37) Felix: Trade Y3 G3 Felix\n\n38) deanthebean: Build B1 Euoi\n\n39) Felix: Build Y1 Felix\n\n40) deanthebean: Build Y2 Deanthebean\n\n41) Felix: D Y3 Out B3 Ramp\n\n42) deanthebean: Sacrifice Y1 Deanthebean\nMove G3 Rim Deanthebean\n\n43) Felix: B Y1 Joy\n\n44) deanthebean: Trade B3 Y3 Euoi\n\n45) Felix: Build G1 Felix\n\n46) deanthebean: Sacrifice G3 Deanthebean\nBuild Y2 Euoi\nBuild Y3 Deanthebean\nBuild G2 Deanthebean\n\n47) Felix: Discover G1 Felix B1 Grump\n\n48) deanthebean: Build B1 Euoi\n\n49) Felix: Build G2 Felix\n\n50) deanthebean: Discover G1 Deanthebean B3 Lieu\n\n51) Felix: Trade G2 R2 Felix\n\n52) deanthebean: Build G2 Lieu\n\n53) Felix: Trade Y2 B2 Felix\n\n54) deanthebean: Build B3 Euoi\n\n55) Felix: Discover Y1 Joy G3 Bazoik\n\n56) deanthebean: Trade G2 Y2 Lieu\n\n57) Felix: Discover Y1 Joy R3 Sputz\n\n58) deanthebean: Move Y2 Deanthebean Sputz\n\n59) Felix: Move Y1 Sputz Grump\n\n60) deanthebean: Move R1 Deanthebean Bazoik\n\n61) Felix: Sacrifice R2 Felix\nAttack R1 Bazoik\nPass\n\n62) deanthebean: Trade G1 R1 Lieu\n\n63) Felix: B R2 Bazoik\n\n64) deanthebean: Trade B3 R3 Euoi\n\tdeanthebean: Ah! I should have seen that coming but anyway, nice tactic. \n\n65) Felix: D B2 Felix G1 Zipcord\n\n66) deanthebean: Move R3 Euoi Zipcord\n\n67) Felix: Sacrifice Y3 Ramp\nMove B2 Zipcord Bazoik\nMove R1 Bazoik Deanthebean\nMove R2 Bazoik Deanthebean\n\n68) deanthebean: Attack R2 Deanthebean\n\n69) Felix: S G1 Grump\nB R2 Deanthebean\nC Deanthebean Red\n\n70) deanthebean: Build Y3 Deanthebean\n\n71) Felix: B B3 Bazoik\n\n72) deanthebean: Move B1 Euoi Zipcord\n\n73) Felix: M Y1 Grump Deanthebean\n\n74) deanthebean: Move Y3 Deanthebean Zipcord\n\n75) Felix: D B2 Bazoik G1 Glint\n\n76) deanthebean: Move Y3 Zipcord Bazoik\n\n77) Felix: T Y1 B1 Deanthebean\n\n78) deanthebean: Sacrifice R3 Zipcord\nAttack B3 Bazoik\nAttack Y1 Bazoik\nAttack B1 Deanthebean\n\n79) Felix: B B3 Glint\n\n80) deanthebean: Move B1 Euoi Glint\n\n81) Felix: Trade B2 R2 Glint\n\n82) deanthebean: Build B2 Glint\n\n83) Felix: Attack B2 Glint\n\n84) deanthebean: Move B1 Deanthebean Glint\nCatastrophe Glint Blue\n\n85) Felix: B Y1 Felix\n\n86) deanthebean: Move Y3 Bazoik Glint\n\n87) Felix: S Y1 Felix\nM R2 Glint Felix\n\n88) deanthebean: Build Y1 Glint\n\n89) Felix: M R2 Felix Zipcord\n\n90) deanthebean: Move Y3 Euoi Zipcord\n\n91) Felix: Attack B1 Zipcord\n\n92) deanthebean: Sacrifice R1 Lieu\nAttack R2 Zipcord\n\n93) Felix: Build G1 Felix\n\n94) deanthebean: Build G2 Deanthebean\n\n95) Felix: Sacrifice B1 Zipcord\nTrade G1 B1 Felix\n\n96) deanthebean: Build R1 Zipcord\n\n97) Felix: Build G1 Felix\n\n98) deanthebean: Build G2 Deanthebean\n\n99) Felix: Build B1 Felix\n\n100) deanthebean: Build R1 Zipcord\n\tFelix: You&#39;ve got me in a pickle!\n\n101) Felix: Discover B1 Felix R1 Hope\n\n102) deanthebean: Move B3 Bazoik Hope\n\tdeanthebean: :)\n\n103) Felix: Sacrifice G3 Felix\nBuild B1 Hope\nBuild B2 Hope\nBuild B3 Felix\nCatastrophe Hope Blue\n\n104) deanthebean: Trade G2 B2 Deanthebean\n\n105) Felix: Discover Y1 Felix B1 Grin\n\n106) deanthebean: Sacrifice Y2 Sputz\nMove B2 Deanthebean Grin\nMove B2 Grin Felix\nCatastrophe Felix Blue\n\n107) Felix: Build G2 Felix\n\n108) deanthebean: Sacrifice Y3 Zipcord\nMove R2 Zipcord Felix\nMove R1 Zipcord Felix\nMove R1 Zipcord Felix\nCatastrophe Felix Red\n\n\tFelix: Very well executed! Great game :)\n\tdeanthebean: Thanks and thanks for not simply trigerring the catastrophe earlier when I built the 4th yellow. I&#39;ve joined the homeworlds ladder so hopefully I&#39;ll get the chance to challenge you in that soon. \n\tFelix: I hope to see you at the top soon! You genuinely played very well this game, after that early mistake with the overpopulation. And feel free to challenge me any time, ladder or no!\n\nHomeworlds Online (SDG# 34061)\nStarted: 2018.4.20, Ended: 2018.5.21\nParticipants: Chivenger (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 Y3 G3\n\tChivenger: homeworld G2S B1S\n\n2) Chivenger: Homeworld G2 B1 Y3\n\tChivenger: First game here and of Homeworlds. Be gentle please. \r\n\n\n3) Felix: Build G1 Felix\n\n4) Chivenger: Build Y1 Chivenger\n\tFelix: No worries! I&#39;m happy to help you learn. But the best way to learn is to lose a bunch of games and learn from mistakes! Let me know if you have any questions or want any tips along the way though.\n\n5) Felix: Trade G1 B1 Felix\n\tChivenger: So my Green only lets me build Yellow despite having Blue and Green in my Homeworld?\r\n\n\n6) Chivenger: Pass\n\tFelix: That&#39;s correct. You have to already have a ship of a color in a system before you can build that color.\n\tChivenger: So I don&#39;t &quot;own&quot; the ships in my galaxy to discover a new planet. Can you do one so I can see how that is supposed to work?\r\n\n\tChivenger: And I can&#39;t trade the 3Y for a 3G? \n\n7) Felix: Pass\n\tFelix: Just type &quot;discover y1 [star color/size] [star name]&quot; \r\nSo &quot;discover y1 g3 DeathStar&quot; for instance.\n\n8) Chivenger: Discover Y1 Chivenger G3 Deathstar\n\n9) Felix: B G1 Felix\n\n10) Chivenger: Trade Y3 G3 Chivenger\n\n11) Felix: Trade G1 Y1 Felix\n\tChivenger: Ooh. Got that command right in the first try. \n\n12) Chivenger: Build G1 Chivenger\n\tFelix: Well done! :)\n\n13) Felix: Build Y1 Felix\n\n14) Chivenger: Build Y2 Deathstar\n\n15) Felix: Discover Y1 Felix G1 Out\n\n16) Chivenger: Trade G1 R1 Chivenger\n\n17) Felix: Build Y2 Out\n\n18) Chivenger: Move Y2 Deathstar Chivenger\n\tChivenger: Added a second Y2 and that makes three your 1Y makes four and bad things happen\r\n\n\tFelix: That&#39;s exactly right. You&#39;re catching on :)\n\n19) Felix: Build B1 Felix\n\n20) Chivenger: Trade Y2 R2 Chivenger\n\n21) Felix: Move Y1 Out Felix\n\n22) Chivenger: Trade R2 Y2 Chivenger\n\tChivenger: And I am seeing why Andy Looney likes this game so much. There is a LOT going on. \n\n23) Felix: Trade Y1 R1 Felix\n\tFelix: You haven&#39;t seen anything yet! And piece of advice... it&#39;s not usually beneficial to trade a color out of your system. Now you don&#39;t have yellow in your home system anymore, which is dangerous\r\n\n\tChivenger: Yeah. Noticed that and yeah gave up a couple ships behind now.\n\n24) Chivenger: Build Y1 Chivenger\n\n25) Felix: Trade B1 R1 Felix\n\n26) Chivenger: Build R2 Chivenger\n\tChivenger: So the blue in my homeworld doesn&#39;t count to build a blue? \n\tFelix: Nope. You must already have a ship of a certain color in order to build another.\n\n27) Felix: Build Y2 Out\n\n28) Chivenger: Build Y3 Deathstar\n\n29) Felix: Move R1 Felix Out\n\n30) Chivenger: Move R2 Chivenger Deathstar\n\n31) Felix: M Y2 Out Deathstar\n\n32) Chivenger: Move Y3 Deathstar Out\n\n33) Felix: S R1 Out\nA R2 Deathstar\n\n34) Chivenger: Build R1 Chivenger\n\n35) Felix: Attack Y1 Deathstar\n\tChivenger: Almost missed that for an easy attack. That would have been a Catastrophe, literally.\n\n36) Chivenger: Sacrifice R1 Chivenger\nAttack Y2N Out\n\tFelix: Good catch!\n\tChivenger: So you sacrifice the R1 and that lets you flip my R2? New lesson.\n\n37) Felix: Move Y1 Deathstar Chivenger\n\tFelix: Yep. It&#39;s one of the sneaky moves you can do in this. I&#39;m hoping you will learn something things in this game!\n\n38) Chivenger: Sacrifice Y2 Chivenger\nMove Y3 Out Deathstar\nMove R1 Chivenger Deathstar\n\n39) Felix: Attack R1 Deathstar\n\tChivenger: Ah Ha. Need a ship in the system to do that. Okay. What&#39;s next Obi-Won?\n\n40) Chivenger: Pass\n\tFelix: I dunno. We&#39;ll see what kinds of situations pop up!\n\n41) Felix: Sacrifice Y1 Chivenger\nPass\n\tChivenger: Not ideal. But it keeps the Catastrophe off the board. \n\n42) Chivenger: Build Y1 Out\n\tChivenger: The Y3 blunts the attack on R1, right?\n\tFelix: No, I&#39;m afraid not. I can still attack your r1, but I just can&#39;t attack your y3\n\n43) Felix: Move R2 Deathstar Out\n\tChivenger: So at this point I feel I am pretty far behind and no way to recover. Is there a point to continue this? Any suggestions?\n\n44) Chivenger: Move Y3 Deathstar Chivenger\n\n45) Felix: Build Y2 Deathstar\n\tFelix: It is not as bad as you think. I&#39;d try to trade for a red ship so you can use your y3 to regain some ships. I will take a useless turn to keep this going :)\n\n46) Chivenger: Sacrifice Y2 Out\nMove Y1 Out Deathstar\nMove Y1 Chivenger Deathstar\nCatastrophe Deathstar Yellow\n\tChivenger: Okay. Got in a couple live games over thr weekend. If you have a winning shot take it. We can just play again.\n\n47) Felix: Build B1 Felix\n\tFelix: Sounds good! If you&#39;re tired of this game, feel free to resign and we can start another\n\n48) Chivenger: Build Y1 Chivenger\n\n49) Felix: Move B1 Felix Out\n\n50) Chivenger: Build Y1 Chivenger\n\n51) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B2 Out\nBuild B3 Felix\n\tFelix: Good play!\n\tChivenger: Thanks. A friend of mine and I got in some live games at a con over the weekend and we have been playing another game here. It&#39;s a fun damn game. I am learning defense but have to learn to layer my offense better. \n\n52) Chivenger: Trade Y1 R1 Chivenger\n\n53) Felix: Trade B2 Y2 Out\n\tFelix: It definitely takes a while to grasp offense. It&#39;s all about expanding your fleet and diversifying colors as much as possible so you have more attack options\n\n54) Chivenger: Move Y3 Chivenger Deathstar\n\n55) Felix: Trade B3 G3 Felix\n\n56) Chivenger: Build R2 Chivenger\n\tChivenger: Apologies. I forgot we had a game going.\n\n57) Felix: Build R2 Felix\n\tFelix: No prob! I kinda did too, haha\n\n58) Chivenger: Sacrifice R1 Chivenger\nAttack R1 Deathstar\n\n59) Felix: Build B2 Out\n\n60) Chivenger: Build R1 Deathstar\n\n61) Felix: Discover B2 Out B3 Rom\n\n62) Chivenger: Build R3 Chivenger\n\n63) Felix: Sacrifice G3 Felix\nBuild B3 Felix\nBuild B3 Rom\nBuild R3 Out\n\n64) Chivenger: Sacrifice Y3 Deathstar\nMove R1 Deathstar Out\nMove R1 Deathstar Out\nDiscover R3 Chivenger Y3 Yavin\nCatastrophe Out Red\n\n65) Felix: T B3 G3 Rom\n\n66) Chivenger: Move R3 Yavin Out\n\n67) Felix: Sacrifice Y2 Out\nMove B2 Out Rom\nDiscover B1 Out G3 Scan\n\n68) Chivenger: Build R1 Out\n\n69) Felix: Build B3 Scan\n\tFelix: Two very large moves!\n\n70) Chivenger: Build Y1 Chivenger\n\n71) Felix: Trade B3 Y3 Scan\n\n72) Chivenger: Discover Y1 Chivenger B3 In\n\n73) Felix: Trade B2 Y2 Rom\n\n74) Chivenger: Discover Y1 In G1 Inagain\n\n75) Felix: B B2 Scan\n\n76) Chivenger: Build Y2 Inagain\n\n77) Felix: Sacrifice G3 Rom\nBuild Y2 Scan\nBuild Y3 Rom\nBuild B3 Scan\n\n78) Chivenger: Sacrifice Y2 Inagain\nMove Y1 Inagain Scan\nMove Y1 Chivenger Scan\nCatastrophe Scan Yellow\n\n79) Felix: Trade B3 G3 Felix\n\n80) Chivenger: Build R1 Chivenger\n\n81) Felix: Build B3 Felix\n\n82) Chivenger: Trade R2 Y2 Chivenger\n\tChivenger: This is interesting. Really learning a lot here. Thanks for the game. \n\n83) Felix: Move R1 Felix Out\n\n84) Chivenger: Sacrifice Y2 Chivenger\nMove R3 Out Rom\nMove G3 Chivenger Rom\n\tFelix: No problem! I&#39;m glad you&#39;re learning things. I think you can see that controlling blue can become very important.\n\tChivenger: Absolutely. Controlling any color can be critical if you can monopolize it. \n\n85) Felix: Sacrifice R2 Felix\nAttack R3 Rom\nAttack G3 Rom\n\tFelix: Definitely, but blue especially, since without blue, you can&#39;t trade and it&#39;s very hard to expand or diversify\n\n\tFelix: Oops! Good thought, but sacrificing a red 2 allows for multiple attacks!\n\tChivenger: No, I saw that. I was out of good options. So it was a matter of the least bad options.I think at this point this one has gotten out of hand. If you want another game, send a challenge. But with the holiday weekend, it may take some time to get on track. \r\n\n\tFelix: No worries. I&#39;m about to have a baby and move house, so I&#39;m tied up now anyway. But thanks for the game! \n\nHomeworlds Online (SDG# 34076)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.21, Ended: 2018.5.3\nParticipants: Aristos (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tAristos: The Gods said unto Aristos, &quot;Build an ark large enough to hold all the people and animals of the world, but small enough to sail in the sky.&quot; And Aristos, leader of his people said, &quot;How about we compromise at a Y3?&quot; And the Gods said, &quot;Good enough.&quot; And so it was that the Aristos Nation lifted itself above all others and so imposed its will upon the land that the world itself became known as Aristos thereafter.\r\n-- from &quot;The Aristos Dawn&quot;\n\n4) Aristos: Build Y1 Aristos\n\tAristos: build y1 Aristos\n\n5) Broccoli_Commander: Build G1 Broccoli_commander\n\tAristos: (doh... typed in wrong box!)\n\n6) Aristos: Discover Y1 Aristos Y1 Glint\n\tBroccoli_Commander: My vegetables will feed from your dawn, harnessing your nascent power with the chlorophyll of the broccoli family. Vitamins will prevail.\r\nAll of your base are belong to us. \n\n7) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\tAristos: &quot;Strange tidings, Councilors,&quot; said the head of the Aristos SETI Project. &quot;We have detected artificial signals within interstellar e-waves. We have no idea what they mean, but they are clearly artificial.&quot;\r\n&quot;Let us sail upon the black to other stars and see if we can find the source! What is the nearest star to us?&quot;\r\n&quot;We call it &#39;Glint,&#39;&quot;\r\n&quot;Then that shall be our destination.&quot;\r\n--- from &quot;The Aristos Dawn&quot;\n\n8) Aristos: Build Y2 Aristos\n\n9) Broccoli_Commander: Build G1 Broccoli_commander\n\n10) Aristos: Trade Y2 G2 Aristos\n\n11) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\tAristos: As they explored the black, the Aristos realized they might need to construct ships far from the shipyards of homeworld. So they conceived a mighty mobile factory. And, being Aristos, to conceive the idea was to achieve the idea.\r\n-- from &quot;The Aristos Dawn&quot;\n\n12) Aristos: Build Y2 Aristos\n\n13) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Cauliflower\nBuild G3 Blueberry\nBuild G3 Broccoli_commander\n\n14) Aristos: Build G3 Aristos\n\tBroccoli_Commander: My roots are growing at an exponential rate. Green sprouts are colonizing all known systems. You will soon find yourself suffocating among a dense forest. Once the flower blossom and the fruits ripe, you will have no choice but to strenghten out seeds.\n\n15) Broccoli_Commander: Trade G3 Y3 Blueberry\n\n16) Aristos: Move G3 Aristos Glint\n\n17) Broccoli_Commander: Build G3 Blueberry\n\n18) Aristos: Sacrifice G2 Aristos\nBuild G2 Glint\nBuild Y2 Aristos\n\n19) Broccoli_Commander: Trade G3 R3 Blueberry\n\n20) Aristos: Trade Y2 R2 Aristos\n\n21) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\nBuild Y2 Blueberry\n\n22) Aristos: Discover G2 Glint B3 Brilliance\n\tAristos: And after generations of peace in space, that ancient art of War did lift itself from the terrestrial plane. The Aristos fought amongst themselves until the great warship, The Antithesis, was built by one of the factions. Cowed by this great weapon, the people of Aristos were united once again under one banner, a peace enforced at the tip of a sword. \r\n--- from &quot;The Aristos Day&quot;, book 2 of the Great Chronicle\n\n23) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n24) Aristos: Build G1 Brilliance\n\n25) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R1 Blueberry\nBuild R1 Broccoli_commander\n\n26) Aristos: Discover Y1 Glint B2 Shine\n\n27) Broccoli_Commander: Move Y3 Blueberry Shine\n\n28) Aristos: Sacrifice G3 Glint\nBuild Y1 Shine\nBuild Y2 Shine\nBuild R2 Aristos\nCatastrophe Shine Yellow\n\n29) Broccoli_Commander: Discover G2 Cauliflower B1 Muffin\n\n\tAristos: good game\n\nHomeworlds Online (SDG# 34060)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.22, Ended: 2018.5.25\nParticipants: Felix (S), mathochist (N)\nWinner: Felix\n\n1) mathochist: Homeworld G1 B2 Y3\n\n2) Felix: H B2 R3 G3\n\n3) mathochist: Build Y1 Mathochist\n\tFelix: Hey, good luck and have fun!\n\tmathochist: you too!\r\n\n\n4) Felix: Build G1 Felix\n\n5) mathochist: Build Y1 Mathochist\n\n6) Felix: Trade G1 Y1 Felix\n\n7) mathochist: Trade Y1 G1 Mathochist\n\n8) Felix: Build G1 Felix\n\n9) mathochist: Build G2 Mathochist\n\n10) Felix: Discover G1 Felix B1 Out\n\n11) mathochist: Discover G1 Mathochist Y3 Cleo\n\n12) Felix: Build G2 Out\n\n13) mathochist: Sacrifice G2 Mathochist\nBuild G2 Cleo\nBuild Y1 Mathochist\n\tmathochist: Give me a few hours, please? Been a busy week and I had guests this afternoon. sorry. \n\n14) Felix: Build Y2 Felix\n\n15) mathochist: Trade Y1 R1 Mathochist\n\tFelix: Of course. YOu can take as long as you need to make any moves\n\n16) Felix: Move Y1 Felix Out\n\n17) mathochist: Move Y1 Mathochist Cleo\n\n18) Felix: Discover G1 Out B3 Womp\n\n19) mathochist: Discover G1 Cleo B1 Twinkle\n\n20) Felix: Build G2 Felix\n\n\nHomeworlds Online (SDG# 34089)\nStarted: 2018.4.25, Ended: 2018.4.25\nParticipants: JimmyMike (S), nateynate (N)\nWinner: JimmyMike\n\n1) nateynate: Homeworld G1 B2 Y3\n\n2) JimmyMike: Homeworld G2 Y1 B3\n\tJimmyMike: homeworld g3 y1 b2\n\n3) nateynate: Discover Y3 Nateynate R3 Farawat\n\n\nHomeworlds Online (SDG# 34090)\nStarted: 2018.4.25, Ended: 2018.4.26\nParticipants: JimmyMike (S), nateynate (N)\nWinner: JimmyMike\n\n1) nateynate: Homeworld G3 B2 Y3\n\n2) JimmyMike: Homeworld Y3 G1 B3\n\n3) nateynate: Build Y1 Nateynate\n\n4) JimmyMike: Build B1 Jimmymike\n\n5) nateynate: Trade Y3 G3 Nateynate\n\n6) JimmyMike: Trade B3 R3 Jimmymike\n\n7) nateynate: Discover G3 Nateynate R1 Farawat\n\n8) JimmyMike: Discover R3 Jimmymike G2 Tuqlose\n\n9) nateynate: Build G1 Farawat R1\n\n10) JimmyMike: Build B1 Jimmymike\n\n11) nateynate: Build Y1 Nateynate\n\n12) JimmyMike: Trade B1 Y1 Jimmymike\n\n13) nateynate: Discover Y1 Nateynate B1 Runnamoq\n\n14) JimmyMike: Move Y1 Jimmymike Tuqlose\n\n15) nateynate: Build Y2 Nateynate\n\n16) JimmyMike: Build B1 Jimmymike\n\n17) nateynate: Build G1 Farawat\n\n18) JimmyMike: Build B2 Jimmymike\n\n19) nateynate: Move Y1 Nateynate Farawat\n\n20) JimmyMike: Trade B2 R2 Jimmymike\n\tnateynate: I did a thing!\n\n21) nateynate: Discover Y1 Farawat R2 Blunderbuss\n\tJimmyMike: As did I!\n\tnateynate: We apologize for the poor performance, this is our first time playing!\n\n22) JimmyMike: Discover R3 Tuqlose Y3 Onno\n\n23) nateynate: Build Y2 Nateynate\n\n24) JimmyMike: Build B2 Jimmymike\n\n25) nateynate: Build Y2 Nateynate\n\n26) JimmyMike: Trade B2 R2 Jimmymike\n\n27) nateynate: Move Y2 Nateynate Runnamoq\n\n28) JimmyMike: Build Y3 Tuqlose\n\n29) nateynate: Move Y2 Nateynate Farawat\n\n30) JimmyMike: Move Y1 Tuqlose Farawat\n\n31) nateynate: Attack Y1 Farawat\n\n32) JimmyMike: Move R2 Jimmymike Tuqlose\n\n33) nateynate: Trade Y2 B2 Runnamoq\n\n34) JimmyMike: Move R2 Tuqlose Onno\n\n35) nateynate: Move B2 Runnamoq Blunderbuss\n\n36) JimmyMike: Trade R2 G2 Jimmymike\n\n37) nateynate: Move B2 Blunderbuss Farawat\n\n38) JimmyMike: Discover R3 Onno R1 La Treve\n\n39) nateynate: Trade G3 R3 Farawat\n\n40) JimmyMike: Move Y3 Tuqlose La\n\n41) nateynate: Move R3 Farawat Nateynate\n\n42) JimmyMike: Move R2 Onno Runnamoq\n\n43) nateynate: Build R1 Nateynate\n\n44) JimmyMike: Attack Y1N Runnamoq\n\n45) nateynate: Build R2 Nateynate\n\n46) JimmyMike: Move R3 La Blunderbuss\n\n47) nateynate: Sacrifice Y2 Farawat\nMove R3 Nateynate Farawat\nMove R3 Farawat Blunderbuss\n\n48) JimmyMike: Attack R3N Blunderbuss\n\n49) nateynate: Build R3 Nateynate\n\n50) JimmyMike: Attack Y1 Blunderbuss\n\n51) nateynate: Move R3 Nateynate La\n\n52) JimmyMike: Attack R3 La\n\n\nHomeworlds Online (SDG# 34097)\nStarted: 2018.4.26, Ended: 2018.5.14\nParticipants: JimmyMike (S), nateynate (N)\nWinner: JimmyMike\n\n1) nateynate: Homeworld R3 B1 G3\n\n2) JimmyMike: Homeworld G2 Y3 B3\n\n3) nateynate: Build G1 Nateynate\n\n4) JimmyMike: Build B1 Jimmymike\n\n5) nateynate: Trade G1 Y1 Nateynate\n\n6) JimmyMike: Trade B3 R3 Jimmymike\n\n7) nateynate: Discover G3 Nateynate B2 Entropie\n\n8) JimmyMike: Build R1 Jimmymike\n\n9) nateynate: Build G1 Entropie\n\n10) JimmyMike: Build B1 Jimmymike\n\n11) nateynate: Trade G3 R3 Entropie\n\n12) JimmyMike: Build B2 Jimmymike\n\n13) nateynate: Build G1 Entropie\n\n14) JimmyMike: Discover B2 Jimmymike R1 Miscake\n\n15) nateynate: Trade G1 Y1 Entropie\n\n16) JimmyMike: Build B2 Jimmymike\n\n17) nateynate: Build G1 Entropie\n\n18) JimmyMike: Move B2 Jimmymike Miscake\n\n19) nateynate: Move G1 Entropie Nateynate\n\n20) JimmyMike: Build B3 Jimmymike\n\n21) nateynate: Build R1 Entropie\n\n22) JimmyMike: Move R3 Jimmymike Miscake\n\n23) nateynate: Build R2 Entropie\n\n24) JimmyMike: Build R2 Jimmymike\n\n25) nateynate: Trade R1 G1 Entropie\n\n26) JimmyMike: Trade B2 R2 Miscake\n\n27) nateynate: Trade R2 B2 Entropie\n\n28) JimmyMike: Trade B1 Y1 Jimmymike\n\n29) nateynate: Build Y2 Entropie\n\n30) JimmyMike: Trade B2 Y2 Miscake\n\n31) nateynate: Discover G1 Entropie R1 Arewon\n\n32) JimmyMike: Discover R2 Miscake Y2 Wyetu\n\n33) nateynate: Build G2 Nateynate\n\n34) JimmyMike: Build Y3 Jimmymike\n\n35) nateynate: Build Y3 Nateynate\n\n36) JimmyMike: Move B3 Jimmymike Miscake\n\n37) nateynate: Trade G2 R2 Nateynate\n\n38) JimmyMike: Discover R3 Miscake G2 Gitou\n\n39) nateynate: Sacrifice Y2 Entropie\nMove B2 Entropie Arewon\nMove Y1 Entropie Arewon\n\n40) JimmyMike: Move Y1 Jimmymike Miscake\n\n41) nateynate: Build Y2 Nateynate\n\n42) JimmyMike: Build B1 Jimmymike\n\n43) nateynate: Trade Y2 B2 Nateynate\n\n44) JimmyMike: Move B1 Jimmymike Miscake\n\n45) nateynate: Build B3 Nateynate\n\n46) JimmyMike: Sacrifice Y2 Miscake\nMove B1 Miscake Wyetu\nMove B1 Wyetu Nateynate\nCatastrophe Nateynate Blue\n\n47) nateynate: Move B2 Arewon Nateynate\n\n48) JimmyMike: Move Y1 Miscake Gitou\n\n49) nateynate: Build Y2 Arewon\n\n50) JimmyMike: Build Y2 Gitou\n\n51) nateynate: Sacrifice Y3 Nateynate\nMove Y2 Arewon Jimmymike\nMove Y1 Arewon Jimmymike\nCatastrophe Jimmymike Yellow\nPass\n\n52) JimmyMike: Build B1 Jimmymike\n\n53) nateynate: Build G2 Arewon\n\n54) JimmyMike: Sacrifice Y2 Gitou\nMove R2 Wyetu Nateynate\nMove R3 Gitou Nateynate\nCatastrophe Nateynate Red\n\n\nHomeworlds Online (SDG# 34096)\nVariants: &quot;Hard time&quot;\nStarted: 2018.4.27, Ended: 2018.5.25\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: Pass\n\n2) Draw5PlayAll: Pass\n\n3) Felix: Homeworld Y1 B2 G3\n\n4) Draw5PlayAll: Homeworld B3 R1 G3\n\n5) Felix: Build G1 Felix\n\tFelix: Fair enough.\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Felix: Trade G1 R1 Felix\n\n8) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n9) Felix: Build R2 Felix\n\n10) Draw5PlayAll: Build R2 Draw5playall\n\n11) Felix: Discover R2 Felix B3 Rim\n\n12) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n13) Felix: Build R2 Felix\n\n14) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n15) Felix: D R2 Felix B3 Out\n\n16) Draw5PlayAll: Build Y1 Draw5playall\n\n17) Felix: Build G1 Felix\n\tDraw5PlayAll: Then you sac and steal the reds.\n\n18) Draw5PlayAll: Move Y2 Draw5playall G2\n\n19) Felix: Sacrifice G3 Felix\nBuild R2 Out\nBuild R3 Rim\nBuild R3 Felix\n\n20) Draw5PlayAll: Build R3 G2\n\n21) Felix: T R3 G3 Rim\n\tFelix: No, NOW I do that. And that g1 makes all the difference :)\n\n22) Draw5PlayAll: Build Y1 G2\n\n23) Felix: B R3 Rim\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n25) Felix: Trade R3 Y3 Rim\n\n26) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n27) Felix: B R3 Rim\n\n28) Draw5PlayAll: Build G1 Draw5playall\n\n29) Felix: B Y2 Rim\n\n30) Draw5PlayAll: Sacrifice Y2 G2\nMove Y2 G2 Rim\nMove Y1 G2 Rim\nCatastrophe Rim Yellow\n\n31) Felix: Trade R3 Y3 Rim\n\n32) Draw5PlayAll: Move Y1 Draw5playall G2\n\n33) Felix: B R3 Rim\n\n34) Draw5PlayAll: Build Y1 Draw5playall\n\n35) Felix: Build Y2 Rim\n\n36) Draw5PlayAll: Build Y2 G2\n\n37) Felix: Discover R3 Rim Y2 Point\n\n38) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n39) Felix: Sacrifice Y2 Rim\nMove R2 Out G2\nMove R2 Out G2\nCatastrophe G2 Red\n\n40) Draw5PlayAll: Build Y1 Draw5playall\n\n41) Felix: Sacrifice Y3 Rim\nMove G3 Rim Point\nMove G3 Point Draw5playall\nMove R3 Point Draw5playall\n\n\tFelix: Good game!\n\nHomeworlds Online (SDG# 34048)\nVariants: &quot;Unrated&quot;\nStarted: 2018.4.28, Ended: 2018.5.21\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) dlwillson: H R3 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) dlwillson: Discover G1 Dlwillson B1 Sea\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 Enter\n\n12) dlwillson: B G1 Dlwillson\n\tDraw5PlayAll: As in, press enter to continue.\n\n13) Draw5PlayAll: Build B1 Enter\n\tdlwillson: Hm...\n\n14) dlwillson: Discover G1 Dlwillson Y1 Sol\n\tDraw5PlayAll: Then click on the ship, select &quot;build&quot;, and then press enter.\r\n\r\nThis should be the actual interface on SDG... typing commands is hard.\n\tdlwillson: Yeah, I keep wondering how long until someone makes a better, more mousey, Homeworlds interface.\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) dlwillson: Build G1 Dlwillson\n\n17) Draw5PlayAll: Move Y2 Draw5playall Enter\n\n18) dlwillson: M G1 Sol Enter\n\n19) Draw5PlayAll: Discover B1 Enter G3 Ctrl\n\n20) dlwillson: S G3 Dlwillson\nB G2 Enter\nB G2 Enter\nB G3 Dlwillson\nC Enter G\n\n21) Draw5PlayAll: Build B1 Ctrl\n\n22) dlwillson: Build G1 Dlwillson\n\n23) Draw5PlayAll: Build B2 Ctrl\n\n24) dlwillson: D G1 Dlwillson Y1 Sol\n\n25) Draw5PlayAll: Build G2 Draw5playall\n\n26) dlwillson: S G3 Dlwillson\nB G2 Sol\nB G2 Sea\nB G3 Dlwillson\n\n27) Draw5PlayAll: Trade B2 Y2 Ctrl\n\n28) dlwillson: T G2 Y2 Sea\n\n29) Draw5PlayAll: Build B2 Ctrl\n\n\nHomeworlds Online (SDG# 34103)\nStarted: 2018.4.29, Ended: 2018.5.2\nParticipants: ladybugsfly (S), Chivenger (N)\nWinner: ladybugsfly\n\n1) Chivenger: Homeworld Y1 B2 G3\n\n2) ladybugsfly: Homeworld G3 Y2 B3\n\n3) Chivenger: Build G1 Chivenger\n\n4) ladybugsfly: Build B1 Ladybugsfly\n\n5) Chivenger: Build G1 Chivenger\n\n6) ladybugsfly: Discover B1 Ladybugsfly G1 Frodo\n\n7) Chivenger: Trade G1 B1 Chivenger\n\n8) ladybugsfly: Build B1 Frodo\n\n9) Chivenger: Build B2 Chivenger\n\n10) ladybugsfly: Trade B1 Y1 Frodo\n\n11) Chivenger: Discover B2 Chivenger G3 Bilbo\n\n12) ladybugsfly: Build Y1 Frodo\n\n13) Chivenger: Build B1 Bilbo\n\n14) ladybugsfly: Build Y2 Frodo\n\n15) Chivenger: Trade B2 Y2 Bilbo\n\n16) ladybugsfly: Move Y1 Frodo Bilbo\n\n17) Chivenger: Build B2 Bilbo\n\n18) ladybugsfly: Trade Y2 G2 Frodo\n\tChivenger: Nice got that third yellow out of there\r\n\n\n19) Chivenger: Trade B2 R2 Bilbo\n\tladybugsfly: You&#146;ve done a nice job putting me on the defensive, or at least being solely reactionary from the beginning.\n\n20) ladybugsfly: Sacrifice G2 Frodo\nBuild Y2 Bilbo\nBuild Y3 Frodo\n\n21) Chivenger: Move Y2 Bilbo Frodo\n\n22) ladybugsfly: Trade Y3 R3 Frodo\n\tChivenger: Almost missed that one. \n\n23) Chivenger: Attack Y2 Bilbo\n\n24) ladybugsfly: Move Y1 Bilbo Chivenger\n\n25) Chivenger: Build Y3 Bilbo\n\n26) ladybugsfly: Trade Y1 G1 Chivenger\n\n27) Chivenger: Sacrifice Y2 Frodo\nMove G1 Chivenger Bilbo\nMove R2 Bilbo Chivenger\n\n28) ladybugsfly: Discover B1 Frodo Y3 Pippin\n\n29) Chivenger: Trade Y3 R3 Bilbo\n\tChivenger: Did that mess with you just a bit? \n\tladybugsfly: Shut me down quite nicely. *high five*\n\n30) ladybugsfly: Sacrifice G1 Chivenger\nBuild B2 Pippin\n\n31) Chivenger: Sacrifice Y2 Bilbo\nMove R3 Bilbo Frodo\nMove R3 Frodo Ladybugsfly\n\n32) ladybugsfly: Sacrifice R3 Frodo\nAttack R3 Ladybugsfly\nPass\nPass\n\n33) Chivenger: Build B2 Bilbo\n\n34) ladybugsfly: Build Y1 Frodo\n\tChivenger: Wah. Sorry had quite the evening. Thought I had it\r\n But forgot the sacrifice. Again. But at least you had to spend your r3\n\n35) Chivenger: Build B3 Bilbo\n\tladybugsfly: No worries, play by mail can mean games over days. Yeah, having a red anywhere on the board is a threat. That&#146;s why your other red ship at home still keeps you defended.\n\n36) ladybugsfly: Build B3 Ladybugsfly\n\n37) Chivenger: Trade B3 Y3 Bilbo\n\n38) ladybugsfly: Trade B3 Y3 Ladybugsfly\n\n39) Chivenger: Discover B2 Bilbo G1 Gollum\n\n40) ladybugsfly: Build Y2 Frodo\n\n41) Chivenger: Build B3 Gollum\n\tladybugsfly: Great minds think alike!\n\n42) ladybugsfly: Discover Y2 Frodo B3 Merry\n\tChivenger: Those Yellow Threes are a big threat as well. \n\n43) Chivenger: Sacrifice Y3 Bilbo\nMove B2 Gollum Pippin\nMove B1 Chivenger Pippin\nMove R2 Chivenger Merry\nCatastrophe Pippin Blue\n\n44) ladybugsfly: Move Y2 Merry Chivenger\n\tChivenger: Not the most aggressive move. But it works, I think. \r\n\n\n45) Chivenger: Build G2 Bilbo\n\tladybugsfly: You&#146;re snatching up all my ways into your base. Had to claim one to be safe.\n\n46) ladybugsfly: Trade Y2 G2 Chivenger\n\tChivenger: There. That looks much better, much simpler. Were you holding back those two blue to be polite or did you have something else planned to take both pieces out at the same time?\n\n47) Chivenger: Trade G1 R1 Bilbo\n\n48) ladybugsfly: Discover G2 Chivenger Y3 Samwise\n\tChivenger: Uh oh. \n\tladybugsfly: I was waiting for a 1-2 punch with blue and yellow. My yellow wasn&#146;t ready.\n\n49) Chivenger: Build R1 Bilbo\n\n50) ladybugsfly: Build G1 Samwise\n\n51) Chivenger: Trade G2 Y2 Bilbo\n\n52) ladybugsfly: Build G2 Samwise\n\n53) Chivenger: Sacrifice Y2 Bilbo\nMove R2 Merry Chivenger\nMove B3 Gollum Samwise\n\n54) ladybugsfly: Discover Y1 Frodo B3 Smeagol\n\n55) Chivenger: Sacrifice R1 Bilbo\nAttack G2 Samwise\n\n56) ladybugsfly: Sacrifice G2 Samwise\nBuild Y2 Smeagol\nBuild Y2 Frodo\n\n57) Chivenger: Trade B3 Y3 Samwise\n\n58) ladybugsfly: Sacrifice Y3 Ladybugsfly\nMove G1 Samwise Frodo\nMove Y1 Smeagol Chivenger\nMove Y2 Smeagol Chivenger\n\n59) Chivenger: Sacrifice Y3 Samwise\nMove R1 Bilbo Frodo\nMove B1 Bilbo Frodo\nMove G2 Samwise Frodo\n\n60) ladybugsfly: Sacrifice R3 Ladybugsfly\nAttack G2 Frodo\nAttack B1 Frodo\nAttack R1 Frodo\n\n61) Chivenger: Attack Y2 Chivenger\n\tChivenger: No. You may NOT have all the Yellow. \n\n62) ladybugsfly: Sacrifice Y2 Frodo\nDiscover Y1 Frodo B3 Baggins\nMove Y1 Baggins Chivenger\nCatastrophe Chivenger Y\n\tladybugsfly: Not waiting for a 1-2 punch this time.\n\n63) Chivenger: Build G1 Chivenger\n\n64) ladybugsfly: Trade G1 B1 Frodo\n\tChivenger: Glad I saw that move from two segments away. Now I feel better. You?\n\tChivenger: Guessing you can still discover and move, right? So not so helpful after all. \n\n65) Chivenger: Trade G1 Y1 Chivenger\n\tladybugsfly: Wasn&#146;t the plan, but had to be offensive to be defensive.\n\tChivenger: Oops. Didn&#39;t see that coming. Now I am in trouble. \n\n66) ladybugsfly: Trade G2 Y2 Frodo\n\tChivenger: Query, if I have two ships in a sector, can I sacrifice an R3 make two attacks, then make that third attack with one of the two ships?\n\tladybugsfly: When you sacrifice a ship, that ship is destroyed and can&#146;t use that power, but any other ship in the system can use the sacrificed power any number of times available.\n\tladybugsfly: To directly answer the question, no, because the r3 couldn&#146;t have made the first attack. You can only have attacked with a ship size you already have, meaning you can&#146;t acquire something bigger to use the third attack with.\n\n67) Chivenger: Build R1 Chivenger\n\n68) ladybugsfly: Build B1 Frodo\n\tChivenger: The R3 was just providing the attacks. I had two other ships to make the attacks. My question was if one of the other two ships could make a second attack or if it was one ship make three successive attacks. \n\n69) Chivenger: Trade R2 Y2 Chivenger\n\tChivenger: It really is an elegant game. Not quite sure of the endgame here But I look forward to seeing it and \n\n70) ladybugsfly: Move B1 Frodo Chivenger\n\tladybugsfly: Oh, yup! One ship can totally make all three.\n\n71) Chivenger: Trade G3 R3 Chivenger\n\n72) ladybugsfly: Sacrifice Y2 Frodo\nMove B1 Frodo Chivenger\nMove B1 Frodo Chivenger\nCatastrophe Chivenger B\n\n\nHomeworlds Online (SDG# 34108)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.3, Ended: 2018.6.3\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: SilentTitan\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld G3 B2 Y3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) SilentTitan: Build Y1 Silenttitan\n\n5) Broccoli_Commander: Build G1 Broccoli_commander\n\n6) SilentTitan: Build Y1 Silenttitan\n\n7) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n8) SilentTitan: Discover Y1 Silenttitan R1 Sol\n\n9) Broccoli_Commander: Build G1 Broccoli_commander\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) Broccoli_Commander: Build G2 Blueberry\n\n12) SilentTitan: Trade Y3 G3 Silenttitan\n\n13) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n14) SilentTitan: Discover Y1 Silenttitan R1 Sole\n\n15) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n17) Broccoli_Commander: Build G2 Blueberry\n\n18) SilentTitan: Trade Y3 G3 Silenttitan\n\n\nHomeworlds Online (SDG# 33964)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.3, Ended: 2018.5.9\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld G1 B3 R3\n\twil: all settled in?\n\n2) Trydnt: Homeworld B2 R1 G3\n\n3) wil: Build R1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Build R1 Wil\n\n6) Trydnt: Build G1 Trydnt\n\n7) wil: Trade R3 G3 Wil\n\n8) Trydnt: Trade G3 Y3 Trydnt\n\n9) wil: Build G2 Wil\n\n10) Trydnt: Sacrifice Y3 Trydnt\nDiscover G1 Trydnt Y3 Y3\nDiscover G1 Y3 Y2 Y2\nMove G1 Y2 Wil\nCatastrophe Wil G\n\twil: lol\r\n\n\n11) wil: T R1 G1 Wil\n\n12) Trydnt: Build G1 Trydnt\n\twil: Too much fun\n\n13) wil: B G2 Wil\n\n14) Trydnt: Build G2 Trydnt\n\n15) wil: Build G2 Wil\n\n16) Trydnt: Trade G2 Y2 Trydnt\n\n17) wil: Trade G2 Y2 Wil\n\n18) Trydnt: Discover G1 Trydnt Y3 Y3\n\n19) wil: Trade G1 B1 Wil\n\n20) Trydnt: Build Y1 Trydnt\n\n21) wil: Build R1 Wil\n\n22) Trydnt: Trade Y1 B1 Trydnt\n\n23) wil: Build R2 Wil\n\n24) Trydnt: Move B1 Trydnt Y3\n\n25) wil: Discover R2 Wil Y2 Y2\n\n26) Trydnt: Build G1 Trydnt\n\n27) wil: Move R2 Y2 Y3\n\n28) Trydnt: Discover B1 Y3 Y2 Y2\n\n29) wil: Attack G1 Y3\n\n30) Trydnt: Sacrifice G1 Trydnt\nBuild B1 Y2\n\n31) wil: Move B1 Wil Y2\n\n32) Trydnt: Discover B1 Y2 G3 G3\n\n33) wil: Move R2 Y3 Y2\n\twil: oops, I didn&#39;t mean to move an attack ship in...I meant to go visit my cousins...\n\n34) Trydnt: Build B2 G3\n\n35) wil: Move R2 Y2 G3\n\n36) Trydnt: Build B2 G3\n\n37) wil: Attack B2 G3\n\n38) Trydnt: Sacrifice G1 Trydnt\nBuild B3 Y2\n\n39) wil: Sacrifice G1 Y3\nBuild B3 Y2\nCatastrophe Y2 B\n\twil: me thinks you might have pulled the trigger a tad early...\n\n40) Trydnt: Build B1 G3\nCatastrophe G3 B\n\n41) wil: B R2 G3\n\n42) Trydnt: Trade Y2 G2 Trydnt\n\twil: now your turn...  \n\n43) wil: S Y2 Wil\nM R2 G3 Trydnt\nM R2 G3 Trydnt\n\twil: We both had the blues, but we ain&#39;t got the blued no Mo, oh yeah,\r\n...\n\n44) Trydnt: Trade G2 R2 Trydnt\nCatastrophe Trydnt R\n\n\twil: You may join us by your own free will and we will treat you as one of our own.... Or...\n\tTrydnt: you seem to be making a large effort not to let the game go to long these days haha\n\twil: me?  who catastrphed early?\r\n\n\tTrydnt: there was no way out of that. If I took a r2 you then take it back and we&#39;re in an endless cycle. if I grew a g1 you sacrifice an r2 and use the other to take both.\n\twil: Yeah, I was almost going to buiding to gain a Queen when I saw the quick way out...\n\twil: I never looked at the last layout till now... lol..  I don&#39;t believe I&#39;ve ever seen anything like this!!  \n\tDraw5PlayAll: I saw one with 34 pieces in the bank\n\nHomeworlds Online (SDG# 34051)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.6, Ended: 2018.5.19\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 G1 Y3\n\n2) Trydnt: Homeworld G3 R2 B3\n\n3) wil: Build Y1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Build Y1 Wil\n\n6) Trydnt: Trade B1 Y1 Trydnt\n\n7) wil: Trade Y1 G1 Wil\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: Build Y2 Wil\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) wil: Build G2 Wil\n\n14) Trydnt: Discover Y2 Trydnt B1 B1\n\n15) wil: Discover G2 Wil Y3 Y3\n\n16) Trydnt: Discover Y2 B1 B3 B3\n\n17) wil: Discover Y2 Wil B3 Be3\n\n18) Trydnt: Trade Y2 G2 B3\n\n19) wil: T G1 R1 Wil\n\n20) Trydnt: Build G1 B3\n\n21) wil: Build G2 Y3\n\n22) Trydnt: Trade G1 R1 B3\n\n23) wil: Discover G2 Y3 B1 B1\n\n24) Trydnt: Build B1 Trydnt\n\n25) wil: B R1 Wil\n\n26) Trydnt: Build B1 Trydnt\n\n27) wil: B R2 Wil\n\n28) Trydnt: Sacrifice Y1 Trydnt\nMove R1 B3 Wil\nCatastrophe Wil R\n\n29) wil: Build Y1 G3\n\n30) Trydnt: Trade B3 Y3 Trydnt\n\n31) wil: Build Y2 Wil\n\n32) Trydnt: Build Y2 G1\n\n33) wil: Trade Y2 R2 Wil\n\n34) Trydnt: Build Y2 Trydnt\n\n35) wil: Build R1 Wil\n\n36) Trydnt: Trade B1 R1 Trydnt\n\n37) wil: T R1 B1 Wil\n\n38) Trydnt: Build B2 Trydnt\n\n39) wil: Move B1 Wil G3 G3\n\n40) Trydnt: Move B1 Trydnt G1\n\n41) wil: S G2 Y3\nB Y3 Be3\nB G1 B1\n\n42) Trydnt: Sacrifice Y2 Trydnt\nMove Y2 G1 Be3\nMove Y1 G1 Be3\nCatastrophe Be3 Y\n\n43) wil: S Y1 G3\nM G1 B1 B3\n\n44) Trydnt: Build R1 Trydnt\n\n45) wil: B R1 Wil\n\n46) Trydnt: Sacrifice R1 Trydnt\nAttack G1 B3\n\n47) wil: M R2 Wil G3\n\n48) Trydnt: Build Y1 Trydnt\n\n49) wil: B G2 B1\n\n50) Trydnt: Sacrifice Y1 Trydnt\nDiscover B1 G1 G3 G33\n\n51) wil: B Y1 G3\n\n52) Trydnt: Trade G1 Y1 B3\n\n53) wil: M Y1 G3 B1\n\n54) Trydnt: Build Y2 B3\n\n55) wil: Discover G2 B1 Y3 Y3\n\twil: Made impossibly stupid move in tourney and lost.\n\n56) Trydnt: Sacrifice G2 B3\nBuild B2 Trydnt\nBuild B3 G33\n\n57) wil: B B3 G3\n\tTrydnt: no matter how good you get it happens from time to time haha\n\n58) Trydnt: Trade B1 R1 G33\n\twil: You&#39;ll not beleive what i did...I had put in my notes block my next intended move...and when it came up...I just cut and pasted it in...without even looking at what he had done... I was thinking about ten different things..just took a break from temple building and just cntrl c, v, submit...and went back to working on the project...sheesh...shear stupidity\n\n59) wil: B Y2 G3\n\tTrydnt: the best laid plans of mice and men\n\n60) Trydnt: Sacrifice Y2 B3\nMove B3 G33 B1\nMove B3 B1 Y3\n\n61) wil: D G2 Y3 Y2 Y2\n\n62) Trydnt: Build Y2 Trydnt\n\n63) wil: B G1 B1\n\n64) Trydnt: Discover Y2 Trydnt B1 Bee1\n\tTrydnt: you weren&#39;t planning on using that were you?\n\n65) wil: B R2 Wil\n\twil: Nah, I used the other one.\n\n66) Trydnt: Build R3 G33\n\n67) wil: S G2 Y2\nB Y2 Wil\nB R3 G3\n\n68) Trydnt: Move Y2 Bee1 B3\n\n69) wil: M R3 G3 B1\n\n70) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 B3 Wil\nMove Y2 B3 Wil\nCatastrophe Wil Y\nMove B3 Y3 Wil\n\n71) wil: S Y2 G3\nM B3 G3 Wil\nM B1 G3 Wil\nC Wil B\n\n72) Trydnt: Trade B2 Y2 Trydnt\n\n73) wil: M Y1 G3 Wil\n\n74) Trydnt: Build Y1 Trydnt\n\n75) wil: M R1 Wil Trydnt\n\twil: Forcing me to kill half the home team, cut off my own leg..  And then you kill me...sheesh\n\n76) Trydnt: Sacrifice Y1 Trydnt\nMove R3 G33 Wil\n\n77) wil: B R3 Wil\n\twil: Look a mosquito\n\n78) Trydnt: Attack R3 Wil\n\n79) wil: S Y1 B1\nM R2 G3 Wil\nC Wil R\n\n80) Trydnt: Move Y2 Trydnt Wil\n\n81) wil: B R2 Trydnt\nC Trydnt R\n\n82) Trydnt: Sacrifice R1 G33\nAttack Y1 Wil\n\n\twil: If one is going to lose....make it look close.\n\tTrydnt: words to live by\n\nHomeworlds Online (SDG# 34111)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.6, Ended: 2018.5.18\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld Y3 G2 B3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Build G1 Wil\n\n6) Trydnt: Build B1 Trydnt\n\n7) wil: Trade G1 R1 Wil\n\n8) Trydnt: Discover B1 Trydnt B1 B1\n\n9) wil: Trade G3 B3 Wil\n\n10) Trydnt: Build B2 Trydnt\n\n11) wil: Build B2 Wil\n\n12) Trydnt: Trade B2 Y2 Trydnt\n\n13) wil: Trade B3 Y3 Wil\n\n14) Trydnt: Trade B1 G1 B1\n\n15) wil: Build R1 Wil\n\n16) Trydnt: Discover B1 Trydnt G1 G1\n\n17) wil: Discover R1 Wil G3 G3\n\n18) Trydnt: Build G2 B1\n\n19) wil: Build R2 Wil\n\n20) Trydnt: Trade G2 R2 B1\n\n21) wil: Discover R2 Wil Y3 Y3\n\n22) Trydnt: Build B1 G1\n\n23) wil: B G2 Wil\n\n24) Trydnt: Build B2 G1\n\n25) wil: M B2 Wil G3\n\n26) Trydnt: Build B3 Trydnt\n\n27) wil: Build B3 G3\n\n28) Trydnt: Sacrifice Y2 Trydnt\nMove B1 G1 G3\nMove B1 G1 G3\nCatastrophe G3 B\n\n29) wil: Build R2 G3\n\n30) Trydnt: Build R3 B1\n\n31) wil: Sacrifice G2 Wil\nBuild R3 Y3\nBuild R3 Wil\n\n32) Trydnt: Move B3 Trydnt G1\n\n33) wil: Trade R1 B1 Wil\n\n34) Trydnt: Trade R2 Y2 B1\n\n35) wil: B G2 Wil\n\n36) Trydnt: Build R1 B1\n\n37) wil: Sacrifice B1 Wil\nTrade G2 B2 Wil\n\n38) Trydnt: Build G2 B1\n\n39) wil: D R3 Wil B3 B3\n\n40) Trydnt: Trade B2 R2 G1\n\n41) wil: S B2 Wil\nT R3 G3 B3\nT R3 G3 Y3\n\n42) Trydnt: Build R3 G1\n\n43) wil: S G3 Y3\nB G2 B3\nB R3 Y3\nB G3 Wil\n\n44) Trydnt: Sacrifice Y2 B1\nMove R1 B1 Y3\nMove R2 G1 Y3\nCatastrophe Y3 R\n\n45) wil: D G3 Wil Y3 Y3\n\n46) Trydnt: Build R1 B1\n\n47) wil: B Y1 Wil\n\n48) Trydnt: Trade R1 Y1 B1\n\n49) wil: T Y1 B1 Wil\n\n50) Trydnt: Build Y1 B1\n\n51) wil: S G3 B3\nB G3 B3\nB B1 Wil\nB Y1 Wil\n\n52) Trydnt: Build Y2 B1\n\n53) wil: Move Y1 Wil G3\n\n54) Trydnt: Sacrifice Y2 B1\nMove B3 G1 Y3\nMove B3 Y3 Wil\nCatastrophe Wil B\n\n55) wil: S G3 B3\nB G3 B3\nB Y2 G3\nB Y2 Wil\n\n56) Trydnt: Build B1 Trydnt\n\n57) wil: D Y1 G3 B1 Be1\n\n58) Trydnt: Trade B1 R1 Trydnt\n\n59) wil: S G3 Y3\nB G3 Wil\nB Y2 Be1\nB Y3 G3\n\n60) Trydnt: Build R2 Trydnt\n\n61) wil: D Y2 G3 B1 Bwon\n\n62) Trydnt: Sacrifice G2 B1\nBuild R2 G1\nBuild R3 B1\n\n63) wil: S Y3 G3\nM Y2 Bwon Trydnt\nM Y1 Be1 Trydnt\nM Y2 Be1 Trydnt\nC Trydnt Y\n\n64) Trydnt: Trade R3 Y3 B1\n\n65) wil: S Y3 Wil\nM G3 B3 Trydnt\nM G2 B3 Trydnt\nM G3 Wil Trydnt\nC Trydnt G\n\n\nHomeworlds Online (SDG# 33993)\nStarted: 2018.5.6, Ended: 2018.7.9\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 Y2 G3\n\n2) Trydnt: Homeworld Y3 G2 B3\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) Trydnt: Build B1 Trydnt\n\n5) MobyNostromo: B G1 Mobynostromo\n\n6) Trydnt: Build B1 Trydnt\n\n7) MobyNostromo: D G1 Mobynostromo Y3 Chrome\n\n8) Trydnt: Discover B1 Trydnt Y1 Y1\n\n9) MobyNostromo: T G1 Y1 Mobynostromo\n\n10) Trydnt: Discover B1 Y1 G3 G3\n\n11) MobyNostromo: B Y1 Mobynostromo\n\n12) Trydnt: Build B2 G3\n\n13) MobyNostromo: D G1 Chrome Y1 Brass\n\n14) Trydnt: Trade B2 Y2 G3\n\n15) MobyNostromo: D Y1 Mobynostromo G3 Emerald\n\n16) Trydnt: Build B2 G3\n\n17) MobyNostromo: M Y1 Mobynostromo G3\n\n18) Trydnt: Trade B2 R2 G3\n\n19) MobyNostromo: D Y1 G3 G1 Dust\n\n20) Trydnt: Build B2 G3\n\n21) MobyNostromo: T G3 R3 Mobynostromo\n\n22) Trydnt: Build B2 Trydnt\n\n23) MobyNostromo: B Y2 Emerald\n\n24) Trydnt: Sacrifice Y2 G3\nMove B2 G3 Dust\nDiscover R2 G3 B2 B2\n\n25) MobyNostromo: M Y2 Emerald Mobynostromo\n\n26) Trydnt: Build B3 G3\n\n27) MobyNostromo: T Y2 G2 Mobynostromo\n\n28) Trydnt: Build B3 G3\n\n29) MobyNostromo: B G1 Mobynostromo\n\n30) Trydnt: Trade B3 Y3 G3\n\n31) MobyNostromo: B Y2 Emerald\n\n32) Trydnt: Build B3 Dust\n\n33) MobyNostromo: B G2 Brass\n\n34) Trydnt: Trade B3 G3 Dust\n\n35) MobyNostromo: T G1 R1 Mobynostromo\n\n36) Trydnt: Build Y2 G3\n\n37) MobyNostromo: M R1 Mobynostromo Emerald\n\n38) Trydnt: Build B3 Dust\n\n39) MobyNostromo: B Y3 Dust\n\n40) Trydnt: Sacrifice R2 B2\nAttack Y3 Dust\nAttack Y1 Dust\n\n41) MobyNostromo: B G1 Mobynostromo\n\n42) Trydnt: Build B2 G3\n\n43) MobyNostromo: S G2 Brass\nB R1 Emerald\nB R1 Emerald\n\n44) Trydnt: Trade B3 R3 G3\n\n45) MobyNostromo: S G2 Mobynostromo\nB R2 Mobynostromo\nB G2 Brass\n\n46) Trydnt: Move B3 Dust Emerald\n\n47) MobyNostromo: S Y2 Emerald\nM R1 Emerald Brass\nM R1 Emerald Brass\n\n48) Trydnt: Build R2 G3\n\n49) MobyNostromo: D R2 Mobynostromo B3 Aqua\n\n50) Trydnt: Move G3 Dust Aqua\n\n51) MobyNostromo: S Y1 Emerald\nD R2 Aqua G2 Garden\n\n52) Trydnt: Build Y1 G3\n\n53) MobyNostromo: M R1 Brass G3\n\n54) Trydnt: Sacrifice R2 G3\nAttack R1 G3\nAttack R1 Emerald\n\n55) MobyNostromo: B R2 Brass\n\n56) Trydnt: Discover Y1 Dust R3 R3\n\n\nHomeworlds Online (SDG# 34109)\nStarted: 2018.5.6, Ended: 2018.6.18\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build G1 Ts52\n\n9) Trydnt: Trade Y1 R1 Trydnt\n\n10) ts52: Trade G1 R1 Ts52\n\n11) Trydnt: Build G1 Trydnt\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) ts52: Build G1 Ts52\n\n15) Trydnt: Build B1 Trydnt\n\tts52: Sorry for the delay!\n\n16) ts52: Trade G1 B1 Ts52\n\n17) Trydnt: Discover B1 Trydnt G1 G1\n\n18) ts52: Discover B1 Ts52 G3 Kermit\n\n19) Trydnt: Build B2 Trydnt\n\n20) ts52: Move Y1 Ts52 Kermit\n\n21) Trydnt: Move Y2 Trydnt G1\n\n22) ts52: Discover G1 Ts52 B3 Grover\n\n23) Trydnt: Discover B2 Trydnt Y1 Y1\n\n24) ts52: Build G1 Ts52\n\n25) Trydnt: Build G2 Trydnt\n\n26) ts52: Build G2 Grover\n\n27) Trydnt: Sacrifice G2 Trydnt\nBuild B2 G1\nBuild B3 Y1\n\n28) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Ts52\nBuild G3 Ts52\n\n29) Trydnt: Trade B2 R2 G1\n\n30) ts52: Build B2 Kermit\n\n31) Trydnt: Move B3 Y1 Grover\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Kermit\n\n33) Trydnt: Build Y3 G1\n\n34) ts52: Discover G2 Ts52 Y3 Bigbird\n\n35) Trydnt: Move Y2 G1 Kermit\nCatastrophe Kermit Y\n\n36) ts52: Trade B2 Y2 Kermit\n\n37) Trydnt: Build B2 G1\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Ts52\nBuild R2 Ts52\n\n39) Trydnt: Sacrifice Y3 G1\nMove R2 G1 Grover\nMove R2 Grover Ts52\nMove B3 Grover Ts52\nCatastrophe Ts52 R\n\n40) ts52: Trade G3 Y3 Ts52\n\n41) Trydnt: Sacrifice R1 Trydnt\nAttack Y3 Ts52\n\n42) ts52: Build G3 Ts52\n\tts52: Wow. I did not see that coming. Well played!\n\n43) Trydnt: Trade B2 R2 G1\n\n44) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit Ts52\nMove G1 Grover Ts52\n\tTrydnt: thanks good game\n\n45) Trydnt: Sacrifice R2 G1\nAttack G3 Ts52\nAttack B1 Ts52\n\n46) ts52: Trade G1 R1 Ts52\n\n47) Trydnt: Sacrifice G3 Ts52\nBuild Y1 Ts52\nBuild Y2 Ts52\nBuild B2 Ts52\nCatastrophe Ts52 B\nCatastrophe Ts52 Y\n\n\nHomeworlds Online (SDG# 34130)\nStarted: 2018.5.12, Ended: 2018.5.15\nParticipants: ladybugsfly (S), Chivenger (N)\nWinner: ladybugsfly\n\n1) Chivenger: Homeworld Y2 B1 G3\n\n2) ladybugsfly: Homeworld G3 Y2 B3\n\n3) Chivenger: Build G1 Chivenger\n\n4) ladybugsfly: Build B1 Ladybugsfly\n\n5) Chivenger: Trade G1 Y1 Chivenger\n\n6) ladybugsfly: Discover B1 Ladybugsfly G1 Kaylee\n\n7) Chivenger: Build Y1 Chivenger\n\n8) ladybugsfly: Build B1 Kaylee\n\n9) Chivenger: Build G1 Chivenger\n\n10) ladybugsfly: Build B2 Kaylee\n\tChivenger: Interesting Take the B1 out of the bank. Nice. \n\n11) Chivenger: Discover Y1 Chivenger Y3 Simon\n\n12) ladybugsfly: Trade B2 Y2 Kaylee\n\n13) Chivenger: Build G1 Chivenger\n\n14) ladybugsfly: Build B2 Kaylee\n\tladybugsfly: Build me some b2s and flip &#145;em to other colors\n\tChivenger: Can&#39;t. Don&#39;t have a b ship to build b with. \n\n15) Chivenger: Move G1 Chivenger Simon\n\tladybugsfly: *my strategy: b2 engine\n\n16) ladybugsfly: Trade B2 G2 Kaylee\n\n17) Chivenger: Discover G1 Chivenger B3 Jayne\n\n18) ladybugsfly: Discover B1 Kaylee G3 Inara\n\n19) Chivenger: Build G2 Jayne\n\n20) ladybugsfly: Build B2 Inara\n\n21) Chivenger: Trade G2 B2 Jayne\n\n22) ladybugsfly: Sacrifice Y2 Kaylee\nMove B1 Inara Chivenger\nMove B2 Inara Chivenger\n\n23) Chivenger: Build G2 Chivenger\n\n24) ladybugsfly: Sacrifice G2 Kaylee\nBuild B2 Chivenger\nBuild B3 Kaylee\nCatastrophe Chivenger B\n\n25) Chivenger: Sacrifice G2 Chivenger\nBuild G2 Jayne\nBuild G2 Simon\n\n26) ladybugsfly: Trade B3 Y3 Kaylee\n\tChivenger: Yeah, I earned that lesson. Didn&#39;t see the end game. Thought I had a little more time. I was wrong. \r\n\n\n27) Chivenger: Discover Y1 Simon Y1 Book\n\n28) ladybugsfly: Build Y2 Kaylee\n\n29) Chivenger: Move Y1 Chivenger Jayne\n\n30) ladybugsfly: Move Y3 Kaylee Chivenger\n\tChivenger: darn. Two turns and I am ded. Don&#39;t see a way out of it. \n\tChivenger: No wait. I do. \n\n31) Chivenger: Trade G2 R2 Jayne\n\n32) ladybugsfly: Build Y3 Kaylee\n\n33) Chivenger: Sacrifice R2 Jayne\nAttack Y3 Chivenger\nPass\n\n34) ladybugsfly: Move Y3 Kaylee Chivenger\n\n35) Chivenger: Sacrifice Y3 Chivenger\nMove G1 Jayne Book\nMove G2 Simon Book\nMove G1 Simon Book\n\n36) ladybugsfly: Sacrifice B1 Kaylee\nTrade Y3 R3 Chivenger\n\n37) Chivenger: Move G2 Book Chivenger\n\tChivenger: Oops. Almost missed that one trying to be smart with the attacks. \n\tladybugsfly: I actually thought it was incredibly clever. ;) Had you waited one turn to use the r2, you would have prevented me from moving in again by also threatening whatever else I move in. First one to red always has the advantage. Had I changed my yellow to red, you would have just taken it then.\n\n38) ladybugsfly: Attack G3 Chivenger\n\tladybugsfly: Although, I just saw what you saw with all four yellows, after you saw it. Teaching moment for me!\n\n\nHomeworlds Online (SDG# 34113)\nStarted: 2018.5.13, Ended: 2018.8.12\nParticipants: MobyNostromo (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) MobyNostromo: H B1 Y2 G3\n\n3) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n4) MobyNostromo: B G1 Mobynostromo\n\tDraw5PlayAll: Prepare to be annihilated.\n\tMobyNostromo: Ha, ha! I&#39;ll try my best to prepare, but I&#39;m not promising anything...\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\n6) MobyNostromo: B G1 Mobynostromo\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) MobyNostromo: D G1 Mobynostromo Y3 Gold\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) MobyNostromo: T G3 B3 Mobynostromo\n\n11) Draw5PlayAll: Discover B2 Draw5playall Y3 Niceidea\n\n12) MobyNostromo: B G1 Gold\n\n13) Draw5PlayAll: Build B2 Draw5playall\n\n14) MobyNostromo: B G2 Mobynostromo\n\n15) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n16) MobyNostromo: B G2 Gold\n\n17) Draw5PlayAll: Move R2 Draw5playall Gold\n\n18) MobyNostromo: S G2 Gold\nB G2 Mobynostromo\nB G3 Gold\n\n19) Draw5PlayAll: Attack G1 Gold\n\n20) MobyNostromo: T G2 R2 Mobynostromo\n\n21) Draw5PlayAll: Build G2 Gold\nCatastrophe Gold Green\n\n22) MobyNostromo: D G2 Mobynostromo B3 Ultrablue\n\n23) Draw5PlayAll: Build B2 Draw5playall\n\n24) MobyNostromo: B G1 Ultrablue\n\n25) Draw5PlayAll: Discover B2 Draw5playall G3 Dos\n\n26) MobyNostromo: T G2 B2 Ultrablue\n\n27) Draw5PlayAll: Build B3 Dos\n\n28) MobyNostromo: T B3 R3 Mobynostromo\n\n29) Draw5PlayAll: Build B3 Dos\n\n30) MobyNostromo: D R2 Mobynostromo G3 Emerald\n\n31) Draw5PlayAll: Sacrifice B2 Niceidea\nTrade B3 R3 Dos\nTrade B3 Y3 Dos\n\n32) MobyNostromo: B B2 Ultrablue\n\n33) Draw5PlayAll: Move B1 Draw5playall Ultrablue\nCatastrophe Ultrablue Blue\n\n34) MobyNostromo: B G1 Mobynostromo\n\n35) Draw5PlayAll: Build B1 Dos\n\n36) MobyNostromo: D G1 Mobynostromo B3 Sky\n\n37) Draw5PlayAll: Build R1 Dos\n\n38) MobyNostromo: T G1 Y1 Sky\n\n39) Draw5PlayAll: Build B2 Dos\n\n40) MobyNostromo: T R3 G3 Mobynostromo\n\n41) Draw5PlayAll: Discover B2 Dos G2 Growth\n\n42) MobyNostromo: M G1 Mobynostromo Sky\n\n43) Draw5PlayAll: Build B2 Growth\n\n44) MobyNostromo: B G1 Sky\n\n45) Draw5PlayAll: Build B3 Growth\n\n46) MobyNostromo: B G1 Mobynostromo\n\n47) Draw5PlayAll: Build B3 Dos\n\tDraw5PlayAll: AFAICT I have mate in 6, maybe 7.\n\n48) MobyNostromo: S G3 Mobynostromo\nB G2 Sky\nB G3 Mobynostromo\nB Y1 Sky\n\n49) Draw5PlayAll: Trade B3 R3 Growth\n\n50) MobyNostromo: M Y1 Sky Draw5playall\n\n51) Draw5PlayAll: Move R3 Dos Draw5playall\n\n52) MobyNostromo: S G2 Sky\nB Y1 Draw5playall\nB Y2 Draw5playall\nC Draw5playall Y\n\n53) Draw5PlayAll: Build B3 Growth\n\n54) MobyNostromo: S G3 Mobynostromo\nB G2 Sky\nB G3 Mobynostromo\nB Y1 Sky\n\tDraw5PlayAll: Tricky, but you lost more than I did...\n\n55) Draw5PlayAll: Trade B2 Y2 Growth\n\n56) MobyNostromo: S G3 Mobynostromo\nB G3 Mobynostromo\nB R1 Emerald\nB R1 Emerald\n\n57) Draw5PlayAll: Sacrifice Y2 Growth\nMove R1 Dos Growth\nMove R1 Growth Emerald\nCatastrophe Emerald Red\n\n58) MobyNostromo: T G2 B2 Sky\n\n59) Draw5PlayAll: Move B3 Dos Mobynostromo\n\n60) MobyNostromo: S G3 Mobynostromo\nB G2 Mobynostromo\nB G3 Sky\nB Y1 Sky\n\n61) Draw5PlayAll: Sacrifice R2 Gold\nAttack G2 Mobynostromo\nAttack G1 Mobynostromo\n\n\nHomeworlds Online (SDG# 34138)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.5.14, Ended: 2018.6.5\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) Babamots: Build G1 Babamots\n\tFelix: Let&#39;s see if I can pull this off. I rarely do!\n\n4) Felix: Build B1 Felix\n\n5) Babamots: Build G1 Babamots\n\n6) Felix: Trade B3 Y3 Felix\n\n7) Babamots: Discover G1 Babamots B3 Vulcan\n\n8) Felix: B B2 Felix\n\tBabamots: It&#39;s an interesting opening strategy, and not one I&#39;ve seen. Looks good so far.\n\tDraw5PlayAll: I am also doing it against MobyNostromo except that I did a small universe too.\n\n9) Babamots: Build G1 Babamots\n\tFelix: I&#39;ve had it used against me to great effect several times but I rarely seem to be able to pull it off properly. I just hate having green in my homeworld after the opening. It&#39;s a quick start, but not having a large green slows down my build potential in the mid game\n\n10) Felix: Trade B2 G2 Felix\n\n11) Babamots: Discover G1 Babamots B3 Romulus\n\n12) Felix: Build B2 Felix\n\n13) Babamots: Build G2 Vulcan\n\n14) Felix: Discover G2 Felix Y2 Gronk\n\n15) Babamots: Sacrifice G3 Babamots\nBuild G2 Vulcan\nBuild G3 Romulus\nBuild G3 Babamots\n\n16) Felix: Move G2 Gronk Vulcan\nCatastrophe Vulcan Green\n\n17) Babamots: Build G1 Babamots\n\n18) Felix: Discover B2 Felix G2 Blink\n\n19) Babamots: Discover G1 Babamots B3 Kurl\n\n20) Felix: B B2 Blink\n\n21) Babamots: Sacrifice G3 Babamots\nBuild G2 Kurl\nBuild G2 Kurl\nBuild G3 Babamots\n\n22) Felix: Build B2 Felix\n\n23) Babamots: Discover G1 Babamots B3 Kesprytt\n\n24) Felix: Build Y1 Felix\n\n25) Babamots: Trade G1 Y1 Kurl\n\n26) Felix: Trade B2 Y2 Blink\n\n27) Babamots: Sacrifice G3 Romulus\nBuild G1 Babamots\nBuild Y1 Kurl\nBuild G3 Romulus\n\n28) Felix: Build B2 Blink\n\n29) Babamots: Move Y1 Kurl Blink\n\n30) Felix: Trade B2 R2 Blink\n\n31) Babamots: Trade G2 R2 Kurl\n\n32) Felix: Attack Y1 Blink\n\n33) Babamots: Sacrifice G3 Romulus\nBuild G2 Kesprytt\nBuild Y2 Kurl\nBuild G3 Romulus\n\n34) Felix: Move Y1 Blink Kurl\n\n35) Babamots: Attack Y1 Kurl\n\n36) Felix: B Y3 Blink\n\n37) Babamots: Sacrifice Y2 Kurl\nMove Y1 Kurl Blink\nMove Y1 Kurl Blink\nCatastrophe Blink Y\n\n38) Felix: B B2 Blink\n\n39) Babamots: Trade G1 Y1 Romulus\n\n40) Felix: M Y1 Felix Blink\n\n41) Babamots: Move G3 Romulus Blink\n\n42) Felix: M R2 Blink Romulus\n\n43) Babamots: Sacrifice G3 Babamots\nBuild R1 Kurl\nBuild G1 Kurl\nBuild G3 Babamots\n\n44) Felix: A Y1 Romulus\n\n45) Babamots: Sacrifice R2 Kurl\nAttack B2 Blink\nAttack B2 Blink\n\n46) Felix: B Y1 Felix\n\n47) Babamots: Trade B2 Y2 Blink\n\n48) Felix: D B2 Felix B2 Remnant\n\n49) Babamots: Sacrifice G3 Babamots\nBuild R1 Kurl\nBuild R1 Kurl\nBuild G3 Babamots\n\tFelix: This isn&#39;t looking good for me!\n\n50) Felix: D Y1 Felix Y2 Savant\n\n51) Babamots: Build Y3 Blink\n\n52) Felix: B Y3 Blink\nC Blink Yellow\n\n53) Babamots: Sacrifice G1 Kesprytt\nBuild G1 Kurl\n\n54) Felix: B Y1 Felix\n\n55) Babamots: Sacrifice G2 Kesprytt\nBuild B3 Blink\nBuild G2 Blink\n\n56) Felix: B Y2 Felix\n\n57) Babamots: Trade B3 Y3 Blink\n\n58) Felix: Move Y1 Felix Remnant\n\n59) Babamots: Sacrifice G3 Babamots\nBuild Y3 Blink\nBuild B3 Blink\nBuild G3 Babamots\n\n60) Felix: M Y2 Felix Blink\n\n61) Babamots: Trade Y3 R3 Blink\n\tBabamots: I&#39;m positive that&#39;s the biggest fleet I&#39;ve ever had in a single system. Just needs some red to be really scary.\n\n62) Felix: Build Y3 Felix\n\tFelix: I&#39;m sure you&#39;ll get some soon enough!\n\n63) Babamots: Sacrifice Y3 Blink\nMove R3 Blink Felix\nMove G3 Blink Felix\nMove B3 Blink Felix\n\tBabamots: And you&#39;d probably better get some more :-)\n\n64) Felix: Sacrifice R2 Romulus\nAttack B3 Felix\nAttack G3 Felix\n\tFelix: Workin&#39; on it!\n\n65) Babamots: Attack G3 Felix\n\tBabamots: I had a panicked flashback to our semifinal game where I goofed up the final push. I think I&#39;ve got this though.\n\n66) Felix: Build Y3 Felix\n\tBabamots: All the same, I probably shouldn&#39;t play while I&#39;m scrambling to finish a grant application :-P\n\n67) Babamots: Attack Y3 Felix\n\tFelix: I dare say you do have me! I probably shouldn&#39;t play when I just had a baby a week ago and I&#39;m moving to a new house this friday!\n\n68) Felix: Trade B2 R2 Remnant\n\n69) Babamots: Sacrifice R3 Felix\nAttack Y3 Felix\nAttack Y3 Felix\nAttack B3 Felix\n\n70) Felix: Build B2 Felix\n\tBabamots: Congratulations! Felix Jr. right? I guess to make it fair I should have a child during the next tournament. Sorry it&#39;s such a stressful time for you.\n\tFelix: Thank you! It&#39;s busy, but not stressful! More joyous than anything :)\n\n71) Babamots: Catastrophe Felix B\nPass\n\n\tFelix: Well done!\n\tBabamots: Thanks. I&#39;d like to wait until maybe Sunday to start the next tournament game. I&#39;ve got this application to do tonight and then a weekend conference to prepare for. That would give you a chance to settle into the new place a bit too. That sound alright?\n\tFelix: Sounds fine to me. Just challenge me whenever you&#39;re ready! Looking forward to it.\n\tDraw5PlayAll: So wait... what happened?\n\tBabamots: According to Andy, you are allowed to abandon your homeworld if you eliminate your opponent by doing it (and the result is a draw). Felix would have liked to make such a move, but SDG won&#39;t allow it. For the purpose of the tournament, we&#39;re calling it a draw (even though SDG will show that I won).\n\tDraw5PlayAll: Ok... so you two have to rematch for the finale?\n\tBabamots: Yes, we just finished our additional game this morning. It&#39;s game #34209 if you&#39;d like to study it.\n\nHomeworlds Online (SDG# 34139)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.5.14, Ended: 2018.6.2\nParticipants: Babamots (S), Felix (N)\nWinner: Babamots\n\n1) Felix: Homeworld R1 B3 G3\n\n2) Babamots: Homeworld Y2 B1 G3\n\tFelix: And they&#39;re off!\n\tBabamots: Good luck! You&#39;ll notice that my first move in the other game is different your first move in this one, so I can&#39;t just make you play yourself and ensure that I win a game :-P.\n\n3) Felix: Build G1 Felix\n\n4) Babamots: Build G1 Babamots\n\tFelix: Haha, much appreciated!\n\n5) Felix: Trade G1 B1 Felix\n\n6) Babamots: Build G1 Babamots\n\n7) Felix: Build B1 Felix\n\n8) Babamots: Discover G1 Babamots B3 Bajor\n\n9) Felix: T B1 Y1 Felix\n\tDraw5PlayAll: I may be mistaken, but I think that if such a thing happened, the &quot;victim&quot; could do something involving the clock and end the scheme before it gets off the ground.\n\n10) Babamots: Trade G1 B1 Babamots\n\tBabamots: Ooh, run the time down to just an hour and then make a move just before time ran out so the opponent would only have seconds. Devious.\n\n11) Felix: Build B2 Felix\n\n12) Babamots: Build B2 Babamots\n\tFelix: Doesn&#39;t the opponent still get 7 days, or however much time they had before, even if the opponent runs down the clock?\n\n13) Felix: Discover B2 Felix B2 Bleeb\n\n14) Babamots: Trade B1 R1 Babamots\n\tBabamots: OK, so say Alice is playing two simultaneous games with Bob. Alice is basically cheating by transferring Bob&#39;s moves from game 1 into game 2 and vice versa (she waits for Bob to make a move in game 1 and then makes an identical move in game 2 etc.). Let&#39;s say they&#39;ve played enough moves that all the timers are maxed out (say at 7 days).\r\n\r\nBob gets annoyed and decides to put a stop to it. It&#39;s Bob&#39;s turn in game 1 and Alice&#39;s turn in game 2. These two timers are ticking away. Bob waits until there are only a few seconds before timeout. He is about to timeout in game 1, Alice is about to timeout in game 2. Then Bob finally makes his move in game 1, and Alice only has a few seconds to see his move and copy it over to game 2 before her time runs out. In case she doesn&#39;t make it, Bob should be ready to hit the &quot;force resignation&quot; button. If she does move in time, Bob can just do it again the next move. It would be tiresome for both players, but I think it&#39;s harder on Alice, who has to keep refreshing at the end of the timer to see if Bob has moved yet.\n\n15) Felix: Build Y1 Felix\n\tFelix: Ohh, I see. Makes sense. That would be an awful lot of trouble to cheat, haha. Major props to whoever would have that much patience!\n\n16) Babamots: Build R1 Babamots\n\n17) Felix: B Y1 Felix\n\tDraw5PlayAll: But what if neither one can really guarantee that they get on in time? I think such a thing would benefit Bob if &quot;hard time&quot; was on, and Alice would otherwise.\n\tDraw5PlayAll: Actually, wait. I forgot that Bob knows that the timer expires at end of hour, so he can simply make his move at XX:59:20 (or later depending on internet speed), and refresh the other game he wants Alice to lose in at XY:00:00.\r\n\r\nWeird. Maybe someone should try this in Martian chess or a game like that. Anyone up for the challenge?\n\n18) Babamots: Build R2 Babamots\n\n19) Felix: M Y1 Felix Bleeb\n\n20) Babamots: Trade R2 Y2 Babamots\n\n21) Felix: Sacrifice G3 Felix\nBuild Y2 Bleeb\nBuild Y3 Bleeb\nBuild Y3 Felix\n\n22) Babamots: Move Y2 Babamots Bajor\n\n23) Felix: Trade Y2 R2 Bleeb\n\n24) Babamots: Build Y2 Bajor\n\n25) Felix: Trade Y3 G3 Felix\n\n26) Babamots: Move Y2 Bajor Bleeb\n\n27) Felix: Sacrifice Y3 Bleeb\nMove B2 Bleeb Bajor\nMove B2 Bajor Babamots\nDiscover Y1 Felix G2 Pinkros\n\n28) Babamots: Attack B2 Babamots\n\tFelix: Nice move! You gave me a lot to think about and have sort of forced my hand.\n\tBabamots: It&#39;s sort of a Martian Chess type of move, offering a ship to the other player. Both of us want to get at the yellow but we already have too much in our systems. So, I like to push some more yellow at the other guy.\n\tFelix: I like to try and do the unexpected in situations like that. It usually ends up costing me the game, but hopefully I gave you something to think about here :)\n\tBabamots: Pretty interesting. I&#39;ll need to consider pros and cons carefully on this one.\n\tBabamots: Well, I sure wish I could look deeper at what each of my moves would do to the game, but I guess I&#39;ll just have to take my best guess.\n\n29) Felix: S G3 Felix\nB Y3 Felix\nB Y3 Pinkros\nB Y3 Bleeb\n\n30) Babamots: Sacrifice R1 Babamots\nAttack R2 Bleeb\n\tFelix: Don&#39;t worry. I don&#39;t know where my moves are going either! Guess we&#39;ll find out together :) also, my baby arrived! So have patience of my moves come a bit slow some days\n\n31) Felix: S Y3 Bleeb\nM B1 Felix Pinkros\nM B1 Pinkros Bajor\nM B1 Bajor Babamots\nC Babamots Blue\n\n32) Babamots: Build Y3 Bajor\n\n33) Felix: S Y1 Felix\nD Y1 Bleeb G1 Grook\n\n34) Babamots: Discover Y3 Bajor G2 Pakled\n\tBabamots: Looking pretty grim. I don&#39;t mind too much because I think your y3 sacrifice (turn 14) that started my downfall was so clever. It doesn&#39;t feel like I made a huge mistake this time.\n\n35) Felix: S Y3 Pinkros\nM Y1 Pinkros Grook\nM Y1 Grook Babamots\nM Y1 Grook Babamots\n\tBabamots: Well, then again maybe I have a last-minute chance to stab you from the grave. I guess I&#39;ll wait and see what you come up with.\n\n36) Babamots: Sacrifice Y2 Bleeb\nMove G3 Babamots Felix\nMove Y3 Pakled Felix\n\tFelix: No, I think I miscalculated... Well done! I was just one piece short.\n\n37) Felix: A Y3 Felix\n\tBabamots: Now, while SDG doesn&#39;t allow self-elimination, it&#39;s not something I addressed properly in the tournament rules. I remember reading somewhere that Andy believed in allowing mutual elimination for a draw. If we get that ruling from an official source, do you feel like a rematch? Or have I been a slow enough pain to play against that you just want it to be over? :-P\n\tBabamots: It was on BGG:\r\nhttps://boardgamegeek.com/article/21140352#21140352\n\tFelix: You haven&#39;t been a pain at all! I can leave it up to you as the tournament organizer, since it wasn&#39;t really addressed up front. Draws are always a bit sticky in homeworlds and aren&#39;t really clear in the rules. But since Andy said that mutual destruction is possible, I&#39;m fine with a rematch!\n\tFelix: Technically I could call a catastrophe on you &quot;during&quot; my turn, but then my turn would end and I&#39;d have no ships, so I think a draw seems reasonable here, if that&#39;s okay with you\n\tBabamots: SDG won&#39;t let you abandon your homeworld to make the move will it? Have you tried? And I can&#39;t remember if there is an &quot;offer draw&quot; button for HW. Do you have one?\n\n38) Babamots: Sacrifice R2 Bleeb\nAttack Y3 Felix\nAttack Y3 Felix\n\tFelix: Nah, it won&#39;t let me move it anywhere, and I don&#39;t have a draw button either\n\tFelix: If the tournament is being played by SDG rules, then, I&#39;ll just take the loss, no worries\n\tBabamots: Since I wasn&#39;t careful enough with the tournament rules, a win for me here would certainly need an asterisk by it. A draw is the most sensible thing in this case. I was very reluctant to admit that for two reasons:\r\n\r\n1) I&#39;m quite emotionally invested. I&#39;d really like to win :-D.\r\n\r\n2) I don&#39;t personally like the &quot;simultaneous elimination is a draw&quot; ruling since it creates a weird exception in the rules (like allowing someone to move into check, but only when it checkmates the other player).\n\tBabamots: I&#39;ll mark it as a draw in the bracket, though I&#39;m happy enough to take the win on SDG records.\n\tBabamots: I made a post about the draw on Facebook, so it must be official :-P.\n\tFelix: So in theory, I just shouldn&#39;t have been able to move my yellow at all, just like SDG handles it. Basically if a move ends up in your own destruction, you can&#39;t make it. I do think that&#39;s a cleaner way to play overall, but I guess we do need to abide by Andy&#39;s rules. As it is, it&#39;s a bit more like chess, where you must be careful to only attack when you&#39;re sure it won&#39;t end in a stalemate. Clearly, I failed to have that much forward thinking here!\n\tBabamots: In the next tournament, I think I&#39;d like to say a draw can only be by move repetition or mutual agreement. Even if it&#39;s not how John and Andy play, I think it&#39;s got to be how most people play as evidenced by SDG&#39;s implementation.\n\tDraw5PlayAll: I tried asking Aaron to add a draw button to Homeworlds but there was either a delay or the message went unread.\n\n\nHomeworlds Online (SDG# 34112)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.19, Ended: 2018.5.23\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: D Y1 Wil G3 G3\n\n10) Trydnt: Discover Y1 Trydnt B1 B1\n\n11) wil: B G1 Wil\n\n12) Trydnt: Build G1 Trydnt\n\n13) wil: D G1 Wil Y3 Y3\n\n14) Trydnt: Trade G1 B1 Trydnt\n\n15) wil: B Y2 G3\n\n16) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 Trydnt\nBuild Y3 B1\nBuild B1 Trydnt\n\n17) wil: M Y2 G3 B1\n\n18) Trydnt: Trade Y1 R1 B1\n\n19) wil: D Y2 B1 G2 G2\n\n20) Trydnt: Sacrifice Y2 Trydnt\nMove Y3 B1 G3\nMove Y3 G3 Wil\n\n21) wil: B Y1 Wil\nC Wil Y\n\n22) Trydnt: Trade B1 G1 Trydnt\n\twil: Sometime.Wednesday morning I&#39;ll be gone...and not back until hmmm tuesdee or Wednesday the following...time to burn!\n\n23) wil: B G1 Y3\n\n24) Trydnt: Build G2 Trydnt\n\tTrydnt: very jealous. I still haven&#39;t found a job so looks like I wont be able to make it to the UK burn in June. Ticket transfer window closes Wednesday :(\n\tTrydnt: which one is this one? PDF?\n\twil: Yeah, PDF...  Send them a message, ask for a hardship.ticket, offer to ranger or dpw. Or whatever..exchange hours for.ticket?\n\n25) wil: B G2 Wil\n\n26) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Trydnt B1\nMove B1 B1 Wil\nDiscover R1 B1 G3 Ohgeez3\n\n\twil: Nice\n\nHomeworlds Online (SDG# 34154)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.19, Ended: 2018.6.4\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 R1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: B R2 Wil\n\n8) Trydnt: Build R2 Trydnt\n\n9) wil: T R2 G2 Wil\n\n10) Trydnt: Discover R1 Trydnt G1 G1\n\n11) wil: B G1 Wil\n\n12) Trydnt: Build R2 Trydnt\n\n13) wil: T G1 Y1 Wil\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) wil: D R1 Wil G3 G3\n\n16) Trydnt: Build R2 Trydnt\n\n17) wil: B Y1 Wil\n\n18) Trydnt: Move Y2 Trydnt G1\n\n19) wil: D G2 Wil B3 B3\n\n20) Trydnt: Build G1 Trydnt\n\n21) wil: B G1 Wil\n\n22) Trydnt: Trade G1 B1 Trydnt\n\n23) wil: B G1 B3\n\n24) Trydnt: Build G2 Trydnt\n\n25) wil: M Y1 Wil B3\n\n26) Trydnt: Discover G2 Trydnt B1 B1\n\n27) wil: B Y1 Wil\n\n28) Trydnt: Trade G2 Y2 B1\n\n29) wil: S G3 Wil\nB G2 B3\nB G2 Wil\nB G3 Wil\n\n30) Trydnt: Discover R2 Trydnt B1 Bee1\n\n31) wil: D G2 Wil Y3 Y3\n\n32) Trydnt: Move B1 Trydnt G1\n\n33) wil: S Y1 Wil\nD G2 B3 Y1 Y1\n\n34) Trydnt: Build B2 G1\n\n35) wil: S G3 Wil\nB G3 Wil\nB Y2 Wil\nB Y3 B3\n\n36) Trydnt: Move B2 G1 G3\n\n37) wil: S Y1 B3\nD R1 G3 Y1 Why1\n\n38) Trydnt: Move Y2 B1 Y3\n\n39) wil: S G2 Y3\nB G2 Y1\nB R2 Why1\n\n40) Trydnt: Build R3 Trydnt\n\n41) wil: M R1 Why1 Trydnt\n\n42) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nPass\n\n43) wil: T G2 R2 B3\n\n44) Trydnt: Build R3 G1\n\n45) wil: S G3 Wil\nB G2 Y1\nB R3 Why1\nB G3 Wil\n\n46) Trydnt: Build B1 G3\n\n47) wil: M G2 Y1 Trydnt\n\n48) Trydnt: Sacrifice R1 Trydnt\nAttack G2 Trydnt\n\n49) wil: S Y2 Wil\nM G2 Y1 Trydnt\nM G2 Y1 Trydnt\nC Trydnt G\n\n50) Trydnt: Trade R3 G3 Trydnt\n\n51) wil: M R3 Why1 G3\n\n52) Trydnt: Sacrifice Y2 Y3\nDiscover B1 G3 G2 G2\nDiscover B2 G3 Y1 Y2\n\n53) wil: B G2 B3\n\n54) Trydnt: Build G2 Trydnt\n\n55) wil: S G3 Wil\nB G3 Wil\nB R1 Why1\nB R3 B3\n\n56) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G2\nBuild B3 Y2\n\n57) wil: T R3 Y3 B3\n\n58) Trydnt: Sacrifice Y2 G1\nMove B3 G2 B3\nMove B1 G2 B3\n\n59) wil: S Y3 B3\nM Y3 B3 Bee1\nM G2 B3 Why1\nM G1 B3 Why1\n\n60) Trydnt: Sacrifice B2 Y2\nTrade G3 R3 Trydnt\nTrade B3 G3 B3\n\n61) wil: S R2 Why1\nA B1 B3\nA R2 Bee1\n\n62) Trydnt: Discover B3 Y2 B3 Bee3\n\n63) wil: S G3 Wil\nB G2 Why1\nB G3 Wil\nB Y1 Wil\n\n64) Trydnt: Sacrifice R1 G1\nAttack R2 B3\n\n65) wil: S G3 Wil\nB Y2 Wil\nB Y2 Bee1\nB G3 Wil\n\n66) Trydnt: Trade R3 Y3 G1\n\n67) wil: S G3 Wil\nB G3 Wil\nB R1 Bee1\nB R2 G3\n\n68) Trydnt: Build Y2 G1\n\n69) wil: S Y2 Wil\nM R2 Bee1 Trydnt\nM G1 Why1 Trydnt\n\n70) Trydnt: Move Y3 G1 Trydnt\n\n71) wil: S G2 Why1\nB R3 Trydnt\nB G2 Trydnt\n\n72) Trydnt: Sacrifice R3 Trydnt\nAttack R3 Trydnt\nAttack R2 Trydnt\nAttack G2 Trydnt\n\n73) wil: S G3 Wil\nB G3 Wil\nB R3 Why1\nB Y2 Wil\n\n74) Trydnt: Sacrifice Y3 Trydnt\nMove R2 Trydnt Why1\nMove R2 B3 Why1\nCatastrophe Why1 R\nDiscover G2 Trydnt R1 R1\n\n75) wil: S G3 Wil\nB G3 Wil\nB R2 Bee1\nB R2 Bee1\n\n76) Trydnt: Trade B3 Y3 Bee3\n\n77) wil: M R2 Bee1 Trydnt\n\n78) Trydnt: Attack R2 Trydnt\n\n79) wil: S Y2 Wil\nM R2 Bee1 Trydnt\nM R1 Bee1 Trydnt\nC Trydnt R\n\n80) Trydnt: Sacrifice Y3 Bee3\nMove G3 B3 Wil\nMove G2 R1 B3\nMove G2 B3 Wil\nCatastrophe Wil G\n\twil: Reminds me of playing games late into the night at whytestone...but your sun will be rising soon.\n\n81) wil: S G2 Why1\nB G1 Trydnt\nB G2 Trydnt\nC Trydnt G\n\n\nHomeworlds Online (SDG# 33906)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.5.19, Ended: 2018.5.31\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B3 G2 R3\n\n2) Trydnt: Homeworld B2 G1 Y3\n\n3) wil: B R1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: T R1 G1 Wil\n\n6) Trydnt: Trade Y1 G1 Trydnt\n\n7) wil: B G2 Wil\n\n8) Trydnt: Build G2 Trydnt\n\n9) wil: T G1 Y1 Wil\n\n10) Trydnt: Trade G1 B1 Trydnt\n\n11) wil: B G1 Wil\n\n12) Trydnt: Build B1 Trydnt\n\n13) wil: T G1 B1 Wil\n\n14) Trydnt: Trade B1 R1 Trydnt\n\n15) wil: B R1 Wil\n\n16) Trydnt: Discover G2 Trydnt Y3 Y3\n\n17) wil: B G1 Wil\n\n18) Trydnt: Move B1 Trydnt Y3\n\n19) wil: D G2 Wil Y1 Y2\n\n20) Trydnt: Discover B1 Y3 Y1 Y1\n\n21) wil: B Y2 Wil\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: D G2 Y2 Y3 Why3\n\n24) Trydnt: Discover Y2 Trydnt G3 G3\n\n25) wil: M Y2 Wil Y1\n\n26) Trydnt: Move B1 Y1 G3\n\n27) wil: M B1 Wil Y1\n\n28) Trydnt: Build B1 G3\n\n29) wil: M R1 Wil Y1\n\n30) Trydnt: Discover B1 G3 G1 G1\n\n31) wil: B G3 Why3\n\n32) Trydnt: Build G3 Y3\n\n33) wil: D G1 Wil Y1 Why1\n\n34) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild Y2 G3\nBuild B2 G1\n\n35) wil: S G3 Why3\nB G3 Why3\nB R1 Y1\nB R2 Y1\n\n36) Trydnt: Build R2 Trydnt\n\n37) wil: D R2 Y1 B3 B3\n\n38) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild B2 G1\nBuild B3 G3\n\n39) wil: M G2 Why3 Y1\n\n40) Trydnt: Sacrifice Y2 G3\nMove B1 G1 Wil\nMove G2 Y3 Why1\n\n41) wil: A B1 Wil\n\n42) Trydnt: Sacrifice Y2 G3\nMove B2 G1 Wil\nMove B2 G1 Wil\nCatastrophe Wil B\n\n43) wil: M G1 Why1 B3\n\n44) Trydnt: Build G1 Y3\n\n45) wil: B R2 Wil\n\n46) Trydnt: Sacrifice Y3 Trydnt\nMove G1 Y3 Wil\nMove G3 Y3 Wil\nMove G2 Why1 Wil\nCatastrophe Wil G\n\n\nHomeworlds Online (SDG# 34102)\nVariants: &quot;Unrated&quot;\nStarted: 2018.5.19, Ended: 2018.5.28\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34133)\nStarted: 2018.5.19, Ended: 2018.8.13\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) MobyNostromo: H Y1 G2 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B B1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: T B3 Y3 Mobynostromo\n\n7) Trydnt: Build Y2 Trydnt\n\n8) MobyNostromo: B Y2 Mobynostromo\n\n9) Trydnt: Discover Y1 Trydnt G2 G2\n\n10) MobyNostromo: D Y2 Mobynostromo B3 Azure\n\n11) Trydnt: Build G1 Trydnt\n\n12) MobyNostromo: B B1 Mobynostromo\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) MobyNostromo: T B1 G1 Mobynostromo\n\n15) Trydnt: Build G1 Trydnt\n\n16) MobyNostromo: B G1 Mobynostromo\n\n17) Trydnt: Discover Y2 Trydnt B2 B2\n\n18) MobyNostromo: M G1 Mobynostromo Azure\n\n19) Trydnt: Discover Y1 G2 G3 G3\n\n20) MobyNostromo: B G2 Azure\n\n21) Trydnt: Trade G1 R1 Trydnt\n\n22) MobyNostromo: D G2 Azure Y2 Blonde\n\n23) Trydnt: Build Y3 G3\n\n24) MobyNostromo: T Y3 R3 Mobynostromo\n\n25) Trydnt: Build Y3 G3\n\n26) MobyNostromo: B Y3 Azure\n\n27) Trydnt: Sacrifice B1 Trydnt\nTrade Y3 B3 G3\n\n28) MobyNostromo: B G1 Blonde\n\n29) Trydnt: Build R1 Trydnt\n\n30) MobyNostromo: S Y3 Azure\nM G1 Blonde G3\nM G2 Blonde G3\nM G1 Mobynostromo G3\nC G3 G\n\n31) Trydnt: Discover R1 Trydnt G2 G2\n\n32) MobyNostromo: B G1 Azure\n\n33) Trydnt: Move Y2 B2 Azure\n\n34) MobyNostromo: S Y2 Azure\nD G1 Azure Y2 Lemon\nM G1 Azure Lemon\n\n35) Trydnt: Move R1 Trydnt Lemon\n\n36) MobyNostromo: B B1 Mobynostromo\n\n37) Trydnt: Attack G1 Lemon\n\n38) MobyNostromo: D G1 Lemon B1 Sky\n\n39) Trydnt: Move R1 Lemon Sky\n\n40) MobyNostromo: B B2 Mobynostromo\n\n41) Trydnt: Attack G1 Sky\n\n42) MobyNostromo: T B2 G2 Mobynostromo\n\n43) Trydnt: Sacrifice G1 Sky\nBuild Y1 Azure\n\n44) MobyNostromo: D B1 Mobynostromo B3 Cobalt\n\n45) Trydnt: Trade Y1 G1 Azure\n\n46) MobyNostromo: T B1 G1 Cobalt\n\n47) Trydnt: Build G3 Azure\n\n48) MobyNostromo: B G3 Cobalt\n\n49) Trydnt: Build Y1 Azure\n\n50) MobyNostromo: T G2 Y2 Mobynostromo\n\n51) Trydnt: Discover Y1 Azure G2 Gee2\n\n52) MobyNostromo: M Y2 Mobynostromo Cobalt\n\n53) Trydnt: Sacrifice G3 Azure\nBuild G3 Azure\nBuild Y3 Gee2\nBuild Y3 Azure\n\n54) MobyNostromo: S G3 Cobalt\nB G3 Cobalt\nB R1 Mobynostromo\nB Y3 Cobalt\n\n55) Trydnt: Trade Y2 R2 Azure\n\n56) MobyNostromo: M R1 Mobynostromo Cobalt\n\n57) Trydnt: Sacrifice G3 Azure\nBuild G3 Azure\nBuild Y2 Azure\nBuild R2 Sky\n\n58) MobyNostromo: B R2 Cobalt\n\n59) Trydnt: Sacrifice G3 Azure\nBuild G3 Azure\nBuild R3 Azure\nBuild R3 G2\n\n60) MobyNostromo: S G3 Cobalt\nB G3 Cobalt\nB B1 Mobynostromo\nB B2 Mobynostromo\n\n61) Trydnt: Move G3 Azure Mobynostromo\n\n62) MobyNostromo: A G3 Mobynostromo\n\n63) Trydnt: Sacrifice Y3 Azure\nMove G1 Azure Mobynostromo\nMove G1 Lemon Azure\nMove G1 Azure Mobynostromo\nCatastrophe Mobynostromo G\n\n64) MobyNostromo: S Y3 Cobalt\nM B1 Mobynostromo Azure\nM B1 Mobynostromo Azure\nM B2 Mobynostromo Azure\nC Azure B\n\n65) Trydnt: Sacrifice Y1 Gee2\nMove R3 G2 Mobynostromo\n\n66) MobyNostromo: A R3 Mobynostromo\n\n67) Trydnt: Sacrifice Y3 Gee2\nMove R1 Sky G2\nMove R1 G2 Mobynostromo\nMove R1 G2 Mobynostromo\nCatastrophe Mobynostromo R\n\n\nHomeworlds Online (SDG# 34165)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.23, Ended: 2018.6.6\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\twil: And I&#39;ll be out of service for too many days to start thise other games... Got this one up to 10 day response\n\n7) wil: B Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: T Y1 R1 Wil\n\n10) Trydnt: Trade Y1 R1 Trydnt\n\n11) wil: B Y1 Wil\n\n12) Trydnt: Build Y1 Trydnt\n\n13) wil: T Y1 B1 Wil\n\n14) Trydnt: Trade Y1 B1 Trydnt\n\n15) wil: D B1 Wil G3 G3\n\n16) Trydnt: Discover B1 Trydnt G1 G1\n\n17) wil: B Y1 Wil\n\n18) Trydnt: Build Y1 Trydnt\n\n19) wil: M Y1 Wil G3\n\n20) Trydnt: Move Y1 Trydnt G1\n\n21) wil: D Y2 Wil B3 B3\n\n22) Trydnt: Build G1 Trydnt\n\n23) wil: B G1 Wil\n\n24) Trydnt: Build G2 Trydnt\n\n25) wil: M G1 Wil B3\n\n26) Trydnt: Discover G2 Trydnt B1 B1\n\n27) wil: B G2 Wil\n\n28) Trydnt: Build G2 B1\n\n29) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB B2 G3\n\n30) Trydnt: Move R1 Trydnt B1\n\n31) wil: M R1 Wil B3\n\n32) Trydnt: Build B2 G1\n\n33) wil: D B1 G3 R2 R2\n\n34) Trydnt: Sacrifice Y2 Trydnt\nDiscover G2 B1 B3 Bee3\nDiscover B1 G1 Y3 Y3\n\n35) wil: S G3 Wil\nB R2 Wil\nB G3 Wil\nB R3 B3\n\n36) Trydnt: Sacrifice G2 Bee3\nBuild B3 G1\nBuild R3 B1\n\n37) wil: S G3 Wil\nB G2 B3\nB R3 B3\nB G3 Wil\n\twil: I&#39;ve allowed.the most.to be construed\n\n38) Trydnt: Trade R3 Y3 B1\n\n39) wil: T R3 Y3 B3\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 B1\nBuild Y2 B1\n\n41) wil: S Y1 G3\nD G2 B3 Y1 Y1\n\n42) Trydnt: Move Y3 B1 Trydnt\n\n43) wil: M R3 B3 Y1\n\n44) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 B1 B3\nMove Y1 G1 B3\nCatastrophe B3 Y\nMove R3 B1 B3\n\n45) wil: S G1 B3\nB R3 Y1\n\n46) Trydnt: Attack R1 B3\n\n47) wil: M R3 Y1 Y3\n\tTrydnt: wow that was close\n\n48) Trydnt: Sacrifice B1 Y3\nTrade B3 Y3 G1\n\n49) wil: M R3 Y3 B1\n\n50) Trydnt: Sacrifice G2 B1\nBuild Y1 G1\nBuild Y2 G1\n\n51) wil: T R2 Y2 Wil\n\n52) Trydnt: Move Y1 G1 B3\n\n53) wil: B G1 Y1\n\n54) Trydnt: Move Y3 G1 Trydnt\n\n55) wil: M G1 Y1 Trydnt\n\n56) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B3\nBuild Y3 G1\nBuild Y3 Trydnt\n\n57) wil: S G3 Wil\nB G2 Trydnt\nB G3 Wil\nB G3 Y1\n\n58) Trydnt: Attack G2 Trydnt\n\n59) wil: S G3 Wil\nB G3 Wil\nB B1 R2\nB B3 G3\n\n60) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild R2 B1\n\n61) wil: S G2 Y1\nB G2 Trydnt\nC Trydnt G\nB G1 Y1\n\n62) Trydnt: Move R1 B3 B1\nCatastrophe B1 R\n\n63) wil: D Y2 Wil R3 R3\n\n64) Trydnt: Build B1 G1\n\n65) wil: M G3 Y1 R3\n\n66) Trydnt: Trade Y2 G2 B3\n\n67) wil: B Y2 R3\n\n68) Trydnt: Sacrifice Y2 G1\nMove B1 G1 G3\nMove B2 G1 G3\nCatastrophe G3 B\n\n69) wil: D Y2 R3 G1 Gee1\n\n70) Trydnt: Sacrifice G2 B3\nBuild Y2 B3\nBuild R1 B3\n\n71) wil: S G3 Wil\nB G2 Y1\nB G2 Y1\nB G3 Wil\n\n72) Trydnt: Trade R3 G3 B3\n\n73) wil: S G3 Wil\nB G3 Wil\nB R1 Y1\nB B1 R2\n\n74) Trydnt: Move Y3 G1 R2\n\n75) wil: S G3 Wil\nB G1 R3\nB B2 R2\nB G3 Wil\nC R2 B\n\n76) Trydnt: Sacrifice Y3 R2\nMove Y3 Trydnt Y1\nMove Y1 B3 Y1\nMove Y2 B3 Y1\nCatastrophe Y1 Y\n\n77) wil: D G1 R3 B1 B1\n\n78) Trydnt: Build R1 B3\n\n79) wil: B G1 B1\n\n80) Trydnt: Trade R1 Y1 B3\n\n81) wil: S G3 Wil\nB G2 Wil\nB G2 R3\nB G3 Wil\n\n82) Trydnt: Build R1 B3\n\n83) wil: B R2 Wil\n\n84) Trydnt: Discover R1 B3 Y1 Y1\n\n85) wil: M R2 Wil B3\n\n86) Trydnt: Attack R2 B3\n\n87) wil: S G3 Wil\nB G3 Wil\nB Y2 R3\nB Y3 Gee1\n\twil: One of your dang 4 hour games\n\n88) Trydnt: Build Y3 B3\n\n89) wil: S Y2 R3\nM Y2 Gee1 Trydnt\nM Y3 Gee1 Trydnt\n\n90) Trydnt: Sacrifice R2 B3\nAttack Y2 Trydnt\nAttack Y3 Trydnt\n\n91) wil: S G3 Wil\nB G1 B1\nB G3 Wil\nB Y2 R3\n\n92) Trydnt: Sacrifice Y2 Trydnt\nMove G3 B3 Wil\nMove Y3 B3 Wil\nCatastrophe Wil G\n\n\twil: And now I can sleep\n\nHomeworlds Online (SDG# 34158)\nStarted: 2018.5.23, Ended: 2018.8.30\nParticipants: silversliver (S), MobyNostromo (N)\nWinner: silversliver\n\n1) MobyNostromo: H Y1 B2 G3\n\n2) silversliver: Homeworld B3 G1 R3\n\tMobyNostromo: Have fun!!\n\n3) MobyNostromo: B G1 Mobynostromo\n\tsilversliver: You too.\n\n4) silversliver: Build R1 Silversliver\n\n5) MobyNostromo: T G1 Y1 Mobynostromo\n\n6) silversliver: Trade R1 G1 Silversliver\n\n7) MobyNostromo: D Y1 Mobynostromo B3 Sapphire\n\n8) silversliver: Build R1 Silversliver\n\n9) MobyNostromo: T Y1 G1 Sapphire\n\n10) silversliver: Trade R1 Y1 Silversliver\n\n11) MobyNostromo: B G2 Sapphire\n\n12) silversliver: Discover G1 Silversliver Y2 Sys1\n\n13) MobyNostromo: T G2 Y2 Sapphire\n\n14) silversliver: Build G2 Sys1\n\n15) MobyNostromo: B G2 Mobynostromo\n\n16) silversliver: Build Y1 Silversliver\n\n17) MobyNostromo: S G3 Mobynostromo\nB G2 Sapphire\nB G3 Mobynostromo\nB G3 Mobynostromo\n\n\n18) silversliver: Sacrifice Y1 Silversliver\nMove G2 Sys1 Sapphire\n\n19) MobyNostromo: T G3 R3 Mobynostromo\n\n20) silversliver: Trade G2 R2 Sapphire\n\n21) MobyNostromo: B R1 Mobynostromo\n\n22) silversliver: Attack G2 Sapphire\n\n23) MobyNostromo: S R1 Mobynostromo\nA R2 Sapphire\n\n24) silversliver: Sacrifice G2 Sapphire\nBuild G2 Sys1\nBuild R1 Silversliver\n\n25) MobyNostromo: B R1 Sapphire\n\n26) silversliver: Trade R1 B1 Silversliver\n\n27) MobyNostromo: S G3 Mobynostromo\nB G2 Mobynostromo\nB G3 Mobynostromo\nB G3 Sapphire\n\n28) silversliver: Sacrifice B1 Silversliver\nTrade G2 Y2 Sys1\n\n29) MobyNostromo: D G2 Mobynostromo B3 Azure\n\n30) silversliver: Build G2 Sys1\n\n31) MobyNostromo: D G3 Sapphire B2 Cobalt\n\n32) silversliver: Move G2 Sys1 Azure\n\n33) MobyNostromo: S R1 Sapphire\nA G2 Azure\n\n34) silversliver: Build G3 Sys1\n\n35) MobyNostromo: S G3 Mobynostromo\nB G3 Cobalt\nB Y1 Sapphire\nB R1 Sapphire\n\n36) silversliver: Sacrifice G3 Sys1\nBuild G3 Sys1\nBuild Y3 Silversliver\nPass\n\n37) MobyNostromo: M R1 Sapphire Cobalt\n\n38) silversliver: Sacrifice Y2 Sys1\nMove G1 Sys1 Azure\nMove G1 Azure Mobynostromo\n\n39) MobyNostromo: A G1 Mobynostromo\n\n40) silversliver: Trade Y1 B1 Silversliver\n\n41) MobyNostromo: D G1 Mobynostromo Y3 Sand\n\n42) silversliver: Move B1 Silversliver Sys1\n\n43) MobyNostromo: M Y1 Sapphire Cobalt\n\n44) silversliver: Build R1 Silversliver\n\n45) MobyNostromo: S G3 Cobalt\nB Y1 Sapphire\nB Y2 Cobalt\nB Y3 Sapphire\n\n46) silversliver: Trade R1 B1 Silversliver\n\n47) MobyNostromo: S G2 Azure\nB G2 Cobalt\nB G3 Sand\n\n48) silversliver: Move B1 Sys1 Azure\n\n49) MobyNostromo: S Y2 Sapphire\nM G1 Sapphire Sys1\nM G1 Sand Sys1\n\n50) silversliver: Move B1 Silversliver Sys1\n\n51) MobyNostromo: S Y3 Sapphire\nM G1 Sys1 Silversliver\nM G1 Sys1 Silversliver\nM G2 Cobalt Silversliver\nC Silversliver G\n\n52) silversliver: Build B1 Sys1\n\n53) MobyNostromo: M G3 Sand Cobalt\n\n54) silversliver: Move B1 Sys1 Azure\n\n55) MobyNostromo: S Y2 Cobalt\nM G3 Cobalt Silversliver\nM G3 Cobalt Silversliver\n\n56) silversliver: Sacrifice R3 Silversliver\nAttack G3 Silversliver\nAttack G3 Silversliver\nPass\n\n57) MobyNostromo: S R2 Sapphire\nA B1 Azure\nA B1 Azure\n\n58) silversliver: Move B1 Sys1 Azure\nCatastrophe Azure Blue\n\n59) MobyNostromo: B G1 Mobynostromo\n\n60) silversliver: Trade G3 R3 Silversliver\n\n61) MobyNostromo: M G2 Mobynostromo Sapphire\n\n62) silversliver: Build G1 Silversliver\n\n63) MobyNostromo: B R1 Mobynostromo\n\n64) silversliver: Trade G1 B1 Silversliver\n\n65) MobyNostromo: B G1 Mobynostromo\n\n66) silversliver: Move B1 Silversliver Sys1\n\n67) MobyNostromo: M R1 Mobynostromo Sapphire\n\n68) silversliver: Build B1 Sys1\n\n69) MobyNostromo: B Y2 Sapphire\n\n70) silversliver: Discover B1 Sys1 Y3 Sys2\n\n71) MobyNostromo: D Y1 Sapphire G1 Verte\n\n72) silversliver: Sacrifice G3 Sys1\nBuild B1 Sys2\nBuild B2 Sys2\nBuild B3 Sys1\n\n73) MobyNostromo: S G2 Sapphire\nB Y2 Sapphire\nB Y3 Cobalt\n\n74) silversliver: Sacrifice Y3 Silversliver\nMove B1 Sys2 Mobynostromo\nMove B1 Sys2 Mobynostromo\nMove B2 Sys2 Mobynostromo\nCatastrophe Mobynostromo Blue\n\n75) MobyNostromo: T Y1 B1 Cobalt\n\n76) silversliver: Build R1 Silversliver\n\n\nHomeworlds Online (SDG# 34118)\nStarted: 2018.5.23, Ended: 2018.7.11\nParticipants: ts52 (S), silversliver (N)\nWinner: ts52\n\n1) silversliver: Homeworld R2 G1 B3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) silversliver: Build B1 Silversliver\n\n4) ts52: Build G1 Ts52\n\n5) silversliver: Trade B1 Y1 Silversliver\n\n6) ts52: Trade G1 B1 Ts52\n\n7) silversliver: Build Y1 Silversliver\n\n8) ts52: Build G1 Ts52\n\n9) silversliver: Discover Y1 Silversliver B3 Sys1\n\n10) ts52: Build G1 Ts52\n\n11) silversliver: Build Y1 Silversliver\n\n12) ts52: Discover G1 Ts52 B2 Gonzo\n\n13) silversliver: Move Y1 Silversliver Sys1\n\n14) ts52: Build G2 Gonzo\n\n15) silversliver: Build Y2 Silversliver\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Ts52\nBuild G3 Ts52\n\n17) silversliver: Move Y1 Sys1 Gonzo\n\n18) ts52: Trade G2 R2 Gonzo\n\n19) silversliver: Move Y1 Gonzo Ts52\n\n20) ts52: Trade G2 R2 Ts52\n\n21) silversliver: Sacrifice Y2 Silversliver\nMove Y1 Sys1 Gonzo\nMove Y1 Gonzo Ts52\n\n22) ts52: Attack Y1N Ts52\n\n23) silversliver: Build Y2 Silversliver\n\n24) ts52: Move Y1 Ts52 Gonzo\n\n25) silversliver: Discover Y1 Silversliver B3 Sys2\n\n26) ts52: Build Y2 Gonzo\n\n27) silversliver: Trade Y1 B1 Sys2\n\n28) ts52: Discover B1 Ts52 G2 Kermit\n\n29) silversliver: Build B2 Silversliver\n\n30) ts52: Move R2 Gonzo Sys2\n\n31) silversliver: Sacrifice Y2 Silversliver\nMove B1 Sys2 Gonzo\nMove B1 Gonzo Ts52\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Sys2\n\n33) silversliver: Trade Y1 R1 Ts52\n\n34) ts52: Attack R1N Ts52\n\n35) silversliver: Trade B2 Y2 Silversliver\n\n36) ts52: Move G2 Gonzo Sys2\n\n37) silversliver: Build B2 Silversliver\n\n38) ts52: Attack B1N Ts52\n\n39) silversliver: Discover B2 Silversliver Y3 Sys3\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Sys2\nBuild G3 Gonzo\n\n41) silversliver: Build Y1 Silversliver\n\n42) ts52: Move Y2 Gonzo Sys2\n\n43) silversliver: Move Y1 Silversliver Sys3\n\n44) ts52: Sacrifice G3 Sys2\nBuild G3 Sys2\nBuild R1 Ts52\nBuild R3 Sys2\n\n45) silversliver: Move B2 Sys3 Gonzo\n\n46) ts52: Sacrifice Y2 Sys2\nMove G3 Sys2 Silversliver\nMove R3 Sys2 Silversliver\n\n47) silversliver: Attack R3 Silversliver\n\n48) ts52: Sacrifice R2 Sys2\nAttack R3N Silversliver\nAttack B3N Silversliver\n\n49) silversliver: Trade B2 R2 Gonzo\n\n50) ts52: Attack Y2N Silversliver\n\tts52: Thanks for the game.\n\tsilversliver: gg\n\n\nHomeworlds Online (SDG# 34159)\nStarted: 2018.5.28, Ended: 2018.6.12\nParticipants: Felix (S), Thorolf (N)\nWinner: Felix\n\n1) Thorolf: Homeworld Y3 B1 G3\n\n2) Felix: H R2 B3 G3\n\n3) Thorolf: Build G1 Thorolf\n\n4) Felix: B G1 Felix\n\n5) Thorolf: Discover G1 Thorolf B2 Alpha\n\tFelix: Hello! First game?\n\n6) Felix: T G1 Y1 Felix\n\tThorolf: kind of, I have a few going right now\n\n7) Thorolf: Build G1 Thorolf\n\n8) Felix: Build Y1 Felix\n\n9) Thorolf: Move G1 Thorolf Alpha\n\n10) Felix: D Y1 Felix B1 Out\n\n11) Thorolf: Build G1 Thorolf\n\n12) Felix: B G2 Felix\n\n13) Thorolf: Build G2 Alpha\n\n14) Felix: M G2 Felix Out\n\n15) Thorolf: Move G3 Thorolf Alpha\n\n16) Felix: B G2 Felix\n\tFelix: I think you should take that move back. I can call catastrophe on the alpha system right now\n\n17) Thorolf: Trade G3 R3 Alpha\n\n18) Felix: Sacrifice G3 Felix\nBuild G3 Out\nBuild G3 Out\nBuild G3 Felix\n\n19) Thorolf: Trade G2 Y2 Alpha\n\n20) Felix: T G3 R3 Out\n\n21) Thorolf: Build G2 Thorolf\n\n22) Felix: M G2 Out Alpha\n\n23) Thorolf: Attack G2 Alpha\n\n24) Felix: Build G3 Out\n\n25) Thorolf: Discover Y2 Alpha B1 Delta\n\n26) Felix: D R3 Out Y2 Chomp\n\n\tThorolf: gg\n\nHomeworlds Online (SDG# 34018)\nVariants: &quot;Unrated&quot;\nStarted: 2018.5.29, Ended: 2018.6.2\nParticipants: Thorolf (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Thorolf: Homeworld B3 R1 G3\n\tTrydnt: Welcome and good luck!\n\tThorolf: Thanks, you too\n\n3) Trydnt: Build G1 Trydnt\n\n4) Thorolf: Build G1 Thorolf\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Thorolf: Trade G1 Y1 Thorolf\n\n7) Trydnt: Build R1 Trydnt\n\n8) Thorolf: Discover Y1 Thorolf G2 Alpha\n\n9) Trydnt: Build R2 Trydnt\n\n10) Thorolf: Build G1 Thorolf\n\n11) Trydnt: Discover R1 Trydnt Y3 Y3\n\tThorolf: i&#146;m screwed\n\tThorolf: i didn&#146;t know you needed another ship of the same color in a system to build a ship\n\tTrydnt: you can take that move back\n\tTrydnt: you should either grow a g1 at home so after you trade the g3 for a red one you can grow another. Or keep growing the yellows since you need them to kill me eventually anyway and you can potentially trade them for reds. Your homeworld is protected by the red star for now so you don&#39;t have to worry about me moving in and taking your ships... yet :)\n\tThorolf: thanks\n\n12) Thorolf: Trade G3 Y3 Thorolf\n\n13) Trydnt: Build R2 Trydnt\n\n14) Thorolf: Move Y3 Thorolf Alpha\n\n15) Trydnt: Trade R2 Y2 Trydnt\n\n16) Thorolf: Move Y3 Alpha Thorolf\n\tTrydnt: you don&#39;t wanna move your large ship out of your homeworld or else I can move in and take over quite easily\n\tTrydnt: it also usually doesn&#39;t make much sense to double up a color on a star as that limits your capacity for growth. you want diverse portfolios of ships on each star preferably having one of each color (usually excluding the star color so you don&#39;t risk me blowing the star up)\n\n17) Trydnt: Discover Y2 Trydnt G3 G3\n\n18) Thorolf: Build Y1 Alpha\n\n19) Trydnt: Build Y2 G3\n\n20) Thorolf: Build Y2 Alpha\n\n21) Trydnt: Move Y2 G3 Alpha\nCatastrophe Alpha Y\n\n22) Thorolf: Build G1 Thorolf\n\n23) Trydnt: Build Y1 G3\n\n24) Thorolf: Trade G1 Y1 Thorolf\n\n25) Trydnt: Build Y2 G3\n\n26) Thorolf: Discover Y1 Thorolf B2 Lambda\n\n27) Trydnt: Discover Y2 G3 G2 G2\n\n28) Thorolf: Build Y2 Thorolf\n\n29) Trydnt: Build Y3 G2\n\n30) Thorolf: Trade Y3 R3 Thorolf\n\n31) Trydnt: Discover R2 Trydnt Y3 Why3\n\n32) Thorolf: Trade Y1 G1 Lambda\n\n33) Trydnt: Build Y1 G3\n\n34) Thorolf: Build R2 Thorolf\n\n35) Trydnt: Sacrifice Y2 G3\nMove R1 Y3 G2\nMove R1 G2 Thorolf\nCatastrophe Thorolf R\n\n36) Thorolf: Trade Y2 R2 Thorolf\n\n37) Trydnt: Move Y3 G2 Thorolf\n\n38) Thorolf: Build G1 Lambda\n\n39) Trydnt: Sacrifice R2 Why3\nAttack R2 Thorolf\nAttack G1 Thorolf\n\n\nHomeworlds Online (SDG# 34170)\nVariants: &quot;Unrated&quot;\nStarted: 2018.5.29, Ended: 2018.5.29\nParticipants: Thorolf (S), dlwillson (N)\nWinner: Thorolf\n\n\nHomeworlds Online (SDG# 34155)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.29, Ended: 2018.5.30\nParticipants: wil (S), Thorolf (N)\nWinner: wil\n\n1) Thorolf: Homeworld G3 R1 Y3 *\n\n2) wil: H Y2 B1 G3\n\n3) Thorolf: Discover Y3 Thorolf B2 Epsilon\n\twil: New to hw?\n\tThorolf: yep\n\tThorolf: whoops\n\twil: Ya gotta keep the homeowrld occupied...  Matter o fact best to always keep a big one at home to protect your land...\n\n\nHomeworlds Online (SDG# 34179)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.29, Ended: 2018.6.8\nParticipants: Thorolf (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) Thorolf: Homeworld B1 Y2 G3\n\n3) wil: B G1 Wil\n\n4) Thorolf: Build G1 Thorolf\n\n5) wil: T G1 B1 Wil\n\n6) Thorolf: Discover G1 Thorolf B3 Gamma\n\twil: Welcome to sdg, are you familiar with this game?  Do you have pyramids at home?\n\n7) wil: B B1 Wil\n\tThorolf: I ordered some yesterday, and I know how to play, but I don&#39;t have much experience\n\twil: I learned by losing... A lot!  Would you like tips?  Or just try to work thru?  Did you order pyramid arcade?\n\tThorolf: Tips would be good, and no, just 3 rainbow stashes\n\twil: Whenever you buy more PA is the best deal...77 bucks, 90 pyramids and rules, boards, dice for 22 games\n\twil: Best deal at beginning is to copycat other player to insure they don&#39;t monopolize an economy and block you out of blue for instance...which I just may do.  Would you like to watch what happens or back up?\n\tThorolf: I&#39;ll see what happens\n\n8) Thorolf: Build G1 Gamma\n\n9) wil: D B1 Wil Y1 Y1\n\n10) Thorolf: Build G1 Gamma\n\n11) wil: B B2 Wil\n\n12) Thorolf: Trade G1 Y1 Gamma\n\n13) wil: D B1 Wil G1 G1\n\n14) Thorolf: Discover Y1 Gamma G2 Zeta\n\n15) wil: S G3 Wil\nB B2 G1\nB B2 Y1\nB B3 Wil\n\twil: You&#39;ve just ventured into what we call &#39;no man&#39;s land&#39; usually you always want to head toward your opponent...moving ships closer to an attack... The 2 size star is two steps away from both yours and mine\n\n16) Thorolf: Build G2 Gamma\n\n17) wil: T B3 G3 Wil\n\n18) Thorolf: Trade G2 R2 Gamma\n\n19) wil: B B3 G1\n\n20) Thorolf: Build G2 Thorolf\n\n21) wil: Trade B3 R3 G1\n\n22) Thorolf: Trade G2 R2 Thorolf\n\n23) wil: B B3 G1\n\n24) Thorolf: Build G2 Thorolf\n\n25) wil: T B3 Y3 G1\n\n26) Thorolf: Trade G3 R3 Thorolf\n\twil: The monopoly gives me the ability of a queen factory\n\n27) wil: B B3 G1\n\n28) Thorolf: Move R3 Thorolf Gamma\n\n29) wil: S Y3 G1\nM B3 G1 Gamma\nD R3 G1 Y3 Y3\nM B3 Gamma Thorolf\n\twil: Oops?\n\twil: You just left your homworld vulnerable for attack\n\twil: I&#39;ll give it a bit and and then assume you don&#39;t want to back it up...but one should always be careful not having a 3 in your hw \n\n30) Thorolf: Trade R3 Y3 Gamma\n\n31) wil: Sacrifice R3 Y3\nAttack R2 Thorolf\nAttack G2 Thorolf\nPass\n\twil: Lol, and then I did a silly move.. Ah, the value of moving the coin\n\n\tThorolf: GG\n\nHomeworlds Online (SDG# 34110)\nVariants: &quot;Hard time&quot;\nStarted: 2018.5.30, Ended: 2018.6.1\nParticipants: Thorolf (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 R2 G3\n\n2) Thorolf: Homeworld B2 Y1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Thorolf: Build G1 Thorolf\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Thorolf: Trade G3 R3 Thorolf\n\tTrydnt: in the early game you&#39;ll often wanna copy what you opponent does. In this case I took the yellow because I need yellow and also there are only two of the y1&#39;s in there. That means if you don&#39;t take the other one I&#39;ll grow it on my next turn and monopolize the yellow and you will struggle to get into the yellow economy.\n\n7) Trydnt: Build Y1 Trydnt\n\n8) Thorolf: Build G1 Thorolf\n\n9) Trydnt: Build Y2 Trydnt\n\n10) Thorolf: Discover G1 Thorolf Y3 Sigma\n\n11) Trydnt: Discover Y1 Trydnt R1 R1\n\n12) Thorolf: Move G1 Thorolf Sigma\n\n13) Trydnt: Build Y2 Trydnt\n\tTrydnt: once again I&#39;ll caution you against putting two of the same color ships on a star like that without a really good reason. you already have a green one there. adding another green one to that star gives you no added abilities and since you don&#39;t have any blue there you can&#39;t swap it for something that does. it also limits the amount of other ships you&#39;ll be able to grow on that star as one more and you&#39;re in serious danger of my blowing it up.\n\n14) Thorolf: Discover G1 Sigma B1 Kappa\n\n15) Trydnt: Move Y2 Trydnt Kappa\n\n16) Thorolf: Build G1 Kappa\n\n17) Trydnt: Trade Y2 R2 Kappa\n\n18) Thorolf: Build G2 Kappa\n\n19) Trydnt: Attack G2 Kappa\n\n20) Thorolf: Trade G1 R1 Kappa\n\n21) Trydnt: Attack R1 Kappa\n\n22) Thorolf: Discover R3 Thorolf G3 Delta\n\tThorolf: shit\n\n\nHomeworlds Online (SDG# 34186)\nStarted: 2018.6.2, Ended: 2018.6.3\nParticipants: moverman (S), AstroPrincess (N)\nWinner: AstroPrincess\n\n1) AstroPrincess: Homeworld B3 R1 G3\n\n2) moverman: Homeworld Y3 B2 G3\n\n3) AstroPrincess: Build G1 Astroprincess (n)\n\n4) moverman: Build G1 Moverman\n\n\n5) AstroPrincess: Trade G1 Y1 Astroprincess (n)\n\n6) moverman: Discover G1 Moverman R1 Htns\n\n7) AstroPrincess: Build Y1 Astroprincess (n)\n\tmoverman: burned my fingers opening the lid to the strawberry jam canning bath...\n\n8) moverman: Build G1 Moverman\n\n9) AstroPrincess: Discover Y1 Astroprincess G2 Steven\n\tAstroPrincess: ouch!\n\n10) moverman: Trade G1 R1 Moverman\n\n11) AstroPrincess: Build Y1 Steven\n\n12) moverman: Build R2 Moverman\n\n13) AstroPrincess: Build Y2 Astroprincess\n\n14) moverman: Move R2 Moverman Htns\n\n15) AstroPrincess: Trade Y2 R2 Astroprincess\n\n16) moverman: Sacrifice G3 Moverman\nBuild G1 Htns\nBuild R2 Moverman\nBuild R3 Htns\n\tAstroPrincess: You&#39;re right about the Sacrifice rules. We have been doing it wrong, but I think it was about even because I don&#39;t think we were using the ability of the sacrificed ship in a system in which we didn&#39;t already have that ability\n\n17) AstroPrincess: Build R3 Astroprincess\n\n18) moverman: Trade R2 Y2 Moverman\n\tmoverman: I think our mistaken approach was quite a bit more powerful - being able to do several different things with the same ship, is much stronger: move, trade, attack, with one ship, for example. But still: the rule was the same for both of us, so it all works out in the wash. I think the real rule makes the strategy a bit more interesting.\n\n19) AstroPrincess: Move R3 Astroprincess Steven\n\n20) moverman: Move Y2 Moverman Htns\n\n21) AstroPrincess: Build R2 Steven\n\n22) moverman: Move R3 Htns Moverman\n\tAstroPrincess: I keep starting to type grow for build lol\n\n23) AstroPrincess: Move R3 Steven Htns\n\n24) moverman: Sacrifice Y2 Htns\nMove G1 Htns Moverman\nMove G1 Htns Steven\n\n25) AstroPrincess: Attack G1 Steven\n\n26) moverman: Move R1 Moverman Htns\nCatastrophe Htns Red\n\n27) AstroPrincess: Discover Y1 Steven R1 Ds9\n\n28) moverman: Build G1 Moverman\n\n29) AstroPrincess: Move G1 Steven Ds9\n\n30) moverman: Trade G1 B1 Moverman\n\n31) AstroPrincess: Build Y2 Ds9\n\n32) moverman: Trade R3 Y3 Moverman\n\n33) AstroPrincess: Move Y1 Ds9 Moverman\n\n34) moverman: Move Y3 Moverman Ds9\n\n35) AstroPrincess: Move Y2 Ds9 Moverman\n\n36) moverman: Attack G1 Ds9\n\n37) AstroPrincess: Trade Y2 R2 Moverman\n\n38) moverman: Move Y3 Ds9 Moverman\n\n39) AstroPrincess: Sacrifice G3 Astroprincess\nBuild Y2 Moverman\nBuild Y2 Astroprincess\nBuild Y2 Steven\nCatastrophe Moverman Y\n\tmoverman: Aaaagh...\n\n40) moverman: Build G1 Moverman\n\tAstroPrincess: Wuahahahaha!\n\n41) AstroPrincess: Sacrifice R2 Astroprincess\nAttack G1 Moverman\nAttack G1 Moverman\n\n\nHomeworlds Online (SDG# 34161)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.2, Ended: 2018.6.14\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) Felix: H R2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tFelix: Hello again! Have fun!\r\n\n\tTrydnt: well met fellow astral traveler. Win or lose I always have fun. good luck!\n\n4) Felix: B G1 Felix\n\n5) Trydnt: Trade G1 R1 Trydnt\n\tFelix: That the spirit! Some folks take this game too seriously\n\n6) Felix: T G1 R1 Felix\n\n7) Trydnt: Build G1 Trydnt\n\n8) Felix: Build G1 Felix\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) Felix: T G1 Y1 Felix\n\n11) Trydnt: Build G1 Trydnt\n\n12) Felix: Build G1 Felix\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) Felix: Trade G1 B1 Felix\n\n15) Trydnt: Build G1 Trydnt\n\n16) Felix: B Y1 Felix\n\n17) Trydnt: Build Y2 Trydnt\n\n18) Felix: D Y1 Felix B1 Opus\n\n19) Trydnt: Discover Y2 Trydnt R1 R1\n\n20) Felix: B Y2 Felix\n\n21) Trydnt: Sacrifice G1 Trydnt\nBuild Y3 R1\n\n22) Felix: Discover Y1 Felix G1 Oop\n\n23) Trydnt: Sacrifice Y1 Trydnt\nDiscover Y2 R1 Y3 Y3\n\n24) Felix: Move B1 Felix Oop\n\n25) Trydnt: Build G1 Trydnt\n\n26) Felix: B B2 Oop\n\n27) Trydnt: Build R2 Trydnt\n\n28) Felix: Move B2 Oop Trydnt\n\n29) Trydnt: Move B1 Trydnt R1\n\n30) Felix: Build B2 Oop\n\n31) Trydnt: Move R2 Trydnt Opus\n\n32) Felix: Sacrifice G3 Felix\nBuild Y1 Oop\nBuild Y3 Felix\nBuild B2 Trydnt\n\n33) Trydnt: Attack Y1 Opus\n\n34) Felix: Sacrifice Y2 Felix\nMove B1 Oop Trydnt\nMove Y1 Oop Trydnt\nCatastrophe Trydnt Blue\n\n35) Trydnt: Sacrifice Y2 Y3\nMove Y3 R1 Felix\nMove Y1 Opus Felix\n\n36) Felix: Attack Y3 Felix\n\n37) Trydnt: Sacrifice G1 Trydnt\nBuild Y2 Felix\nCatastrophe Felix Y\n\n38) Felix: Build Y1 Oop\n\n39) Trydnt: Attack Y1 Trydnt\n\n40) Felix: Move Y1 Oop Trydnt\n\n41) Trydnt: Sacrifice Y1 Trydnt\nMove R2 Opus Felix\n\n42) Felix: Trade B2 G2 Oop\n\tFelix: Ooh, great move!\n\n43) Trydnt: Attack R1 Felix\n\tTrydnt: Thanks! I thought so haha never sure in these games if the other person has seen it yet and are just playing it out to make it close/maybe scrape a win off a mistake or if they haven&#39;t seen it til it happens\n\tFelix: Nope, I just missed it! Great game.\n\n\nHomeworlds Online (SDG# 34185)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.2, Ended: 2018.6.2\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34189)\nVariants: &quot;Hard time&quot;\nStarted: 2018.6.3, Ended: 2018.7.2\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) Felix: H B1 Y2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Interesting opening!\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: T G1 B1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: Build B1 Felix\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) Felix: D B1 Felix Y3 Out\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G1 Econ\n\n12) Felix: Build B2 Felix\n\n13) Draw5PlayAll: Build Y2 Econ\n\n14) Felix: D B1 Felix G3 Singe\n\n15) Draw5PlayAll: Discover Y1 Draw5playall B3 Unfold\n\tDraw5PlayAll: You are doing the same thing to me! Stop!\n\n16) Felix: S G3 Felix\nB B2 Out\nB B3 Singe\nB B3 Felix\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Econ\nBuild Y3 Unfold\nBuild Y3 Draw5playall\n\tFelix: No! :)\n\n18) Felix: T B3 R3 Singe\n\tDraw5PlayAll: Then I steal all yellow.\n\n19) Draw5PlayAll: Trade Y3 R3 Unfold\n\n20) Felix: Build B3 Singe\n\n21) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n22) Felix: T B3 Y3 Singe\n\n23) Draw5PlayAll: Build Y3 Draw5playall\n\n24) Felix: Build B3 Singe\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) Felix: Move R3 Singe Econ\n\n27) Draw5PlayAll: Sacrifice Y2 Econ\nMove Y2 Econ Unfold\nDiscover Y1 Econ R3 Denial\n\n28) Felix: B Y2 Singe\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: B R1 Econ\n\n31) Draw5PlayAll: Move G1 Draw5playall Unfold\n\n32) Felix: Move B3 Singe Draw5playall\n\n33) Draw5PlayAll: Attack B3 Draw5playall\n\n34) Felix: Sacrifice Y2 Singe\nMove B1 Singe Draw5playall\nMove B1 Out Draw5playall\nCatastrophe Draw5playall Blue\n\n35) Draw5PlayAll: Trade Y1 B1 Unfold\n\n36) Felix: Sacrifice B2 Felix\nTrade B3 G3 Felix\nTrade B2 R2 Out\n\n37) Draw5PlayAll: Pass\n\n38) Felix: S Y3 Singe\nM R1 Econ Draw5playall\nM R3 Econ Draw5playall\nM R2 Out Draw5playall\nC Draw5playall Red\n\tFelix: Good game!\n\n\nHomeworlds Online (SDG# 34192)\nStarted: 2018.6.3, Ended: 2018.6.7\nParticipants: moverman (S), AstroPrincess (N)\nWinner: moverman\n\n1) AstroPrincess: Homeworld B2 R1 G3 Mine\n\n2) moverman: Homeworld Y3 B2 G3\n\n3) AstroPrincess: Build G1 Astroprincess\n\n4) moverman: Build G1 Moverman\n\n5) AstroPrincess: Trade G1 Y1 Astroprincess\n\n6) moverman: Trade G1 R1 Moverman\n\n7) AstroPrincess: Build Y1 Astroprincess\n\n8) moverman: Build R1 Moverman\n\n9) AstroPrincess: Discover Y1 Astroprincess R3 Nemo\n\n10) moverman: Build G1 Moverman\n\n11) AstroPrincess: Build G1 Astroprincess\n\n12) moverman: Build R2 Moverman\n\n13) AstroPrincess: Move G1 Astroprincess Nemo\n\n14) moverman: Discover R2 Moverman Y1 Mwvz\n\n15) AstroPrincess: Build Y2 Nemo\n\n16) moverman: Move G1 Moverman Mwvz\n\n17) AstroPrincess: Build Y2 Astroprincess\n\n18) moverman: Build R2 Mwvz\n\n19) AstroPrincess: Trade Y1 B1 Astroprincess\n\n20) moverman: Build R2 Moverman\n\n21) AstroPrincess: Build B1 Astroprincess\n\n22) moverman: Build R3 Mwvz\n\n23) AstroPrincess: Move B1 Astroprincess Nemo\n\n24) moverman: Move R3 Mwvz Nemo\n\n25) AstroPrincess: Move B1 Astroprincess Nemo\n\n26) moverman: Sacrifice R2 Moverman\nAttack Y2 Nemo\nAttack Y1 Nemo\n\n27) AstroPrincess: Build G1 Astroprincess\n\tmoverman: I&#39;m going to DC for a conference tomorrow and Tuesday. Probably won&#39;t be much playing, and probably not until late. But I&#39;ll check when I can...\n\n28) moverman: Sacrifice R2 Mwvz\nAttack B1 Nemo\nAttack B1 Nemo\n\n29) AstroPrincess: Build Y1 Astroprincess\n\n30) moverman: Move Y1 Nemo Astroprincess\n\n31) AstroPrincess: Move Y1 Astroprincess Nemo\n\n32) moverman: Attack Y1 Nemo\n\n33) AstroPrincess: Attack Y1 Astroprincess\n\n34) moverman: Attack G1 Nemo\n\n35) AstroPrincess: Trade Y1 B1 Astroprincess\n\n36) moverman: Sacrifice Y2 Nemo\nMove B1 Nemo Astroprincess\nMove B1 Nemo Astroprincess\nCatastrophe Astroprincess Blue\n\n37) AstroPrincess: Build Y1 Astroprincess\n\n38) moverman: Sacrifice G3 Moverman\nBuild Y2 Nemo\nBuild R2 Mwvz\nBuild G2 Nemo\n\n39) AstroPrincess: Build Y2 Astroprincess\n\n40) moverman: Move Y1 Nemo Astroprincess\nCatastrophe Astroprincess Yellow\n\n\nHomeworlds Online (SDG# 34191)\nVariants: &quot;Hard time&quot;\nStarted: 2018.6.3, Ended: 2018.7.8\nParticipants: SilentTitan (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tSilentTitan: And to you as well\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ts52: Build Y2 Ts52\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) ts52: Build G1 Ts52\n\n10) SilentTitan: Discover Y1 Silenttitan G2 Sol\n\n11) ts52: Discover Y2 Ts52 G3 Kermit\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) ts52: Trade G1 B1 Ts52\n\n14) SilentTitan: Trade G1 R1 Silenttitan\n\n15) ts52: Trade B1 R1 Ts52\n\n16) SilentTitan: Build R2 Silenttitan\n\n17) ts52: Move R1 Ts52 Kermit\n\n\nHomeworlds Online (SDG# 34196)\nStarted: 2018.6.6, Ended: 2018.7.30\nParticipants: wil (S), Myhero777 (N)\nWinner: wil\n\n\twil: First game?  Do you play at home?\n\twil: I am back...are you?\n\nHomeworlds Online (SDG# 34052)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.6, Ended: 2018.6.27\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: H R3 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: Build Y2 Wil\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) wil: Discover Y1 Wil B1 B1\n\n11) Trydnt: Build G1 Trydnt\n\n12) wil: Build G1 Wil\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) wil: Trade G1 B1 Wil\n\n15) Trydnt: Move B1 Trydnt G3\n\n16) wil: S G3 Wil\nB Y2 B1\nB Y3 B1\nB Y3 Wil\n\n17) Trydnt: Move Y1 G3 B1\nCatastrophe B1 Y\n\n18) wil: T Y3 G3 Wil\n\n19) Trydnt: Build G1 Trydnt\n\n20) wil: B Y1 Wil\n\n21) Trydnt: Move Y2 Trydnt G3\n\n22) wil: D Y1 Wil G1 G1\n\n23) Trydnt: Trade G1 R1 Trydnt\n\n24) wil: B Y1 G1\n\n25) Trydnt: Build R1 Trydnt\n\n26) wil: D Y1 G1 B3 B3\n\n27) Trydnt: Build R1 Trydnt\n\n28) wil: S G3 Wil\nB Y2 G1\nB Y3 B3\nB Y3 Wil\n\n29) Trydnt: Build Y3 G3\n\n30) wil: S Y2 Wil\nM Y1 G1 G3\nM Y2 G1 G3\nC G3 Y\n\n31) Trydnt: Discover R1 Trydnt G3 Gee3\n\n32) wil: Trade Y1 G1 B3\n\n33) Trydnt: Build R2 Trydnt\n\n34) wil: B Y1 B3\n\n35) Trydnt: Trade R2 Y2 Trydnt\n\n36) wil: D Y1 B3 G1 G1\n\n37) Trydnt: Build R2 Trydnt\n\n38) wil: Build Y1 G1\n\n39) Trydnt: Move R1 Trydnt G3\n\n40) wil: B Y2 G1\n\n41) Trydnt: Move Y2 Trydnt Gee3\n\n42) wil: M Y2 G1 B3\n\n43) Trydnt: Build R2 Gee3\n\n44) wil: T Y2 R2 B3\n\n45) Trydnt: Build R3 G3\n\n46) wil: B R3 B3\n\n47) Trydnt: Trade R3 Y3 G3\n\n48) wil: Trade R2 G2 B3\n\n49) Trydnt: Build Y2 G3\n\n50) wil: Build Y2 B3\n\n51) Trydnt: Build B1 G3\n\n52) wil: Move G2 B3 G1\n\n53) Trydnt: Move R2 Gee3 G1\n\n54) wil: B G1 G1\n\n55) Trydnt: Attack G2 G1\n\n56) wil: Build G2 G1\nCatastrophe G1 G\n\n57) Trydnt: Discover B1 G3 G1 G1\n\n58) wil: B R2 B3\n\n59) Trydnt: Build B2 G1\n\n60) wil: M R3 B3 G1\n\n61) Trydnt: Sacrifice Y2 Gee3\nMove B1 G1 Wil\nMove B2 G1 Wil\nCatastrophe Wil B\n\n62) wil: Build R2 B3\n\n63) Trydnt: Sacrifice Y3 G3\nMove R1 G3 G1\nMove R1 G1 Wil\nMove R1 Trydnt Wil\n\n\nHomeworlds Online (SDG# 34198)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.6, Ended: 2018.6.27\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: H B3 Y2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) wil: Trade G1 R1 Wil\n\n7) Trydnt: Build R2 Trydnt\n\n8) wil: Build R2 Wil\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) wil: Trade R1 Y1 Wil\n\n11) Trydnt: Build R1 Trydnt\n\n12) wil: Build R1 Wil\n\n13) Trydnt: Discover R1 Trydnt G3 G3\n\n14) wil: Discover R1 Wil Y1 Y1\n\n15) Trydnt: Build Y2 Trydnt\n\n16) wil: S G3 Wil\nB R2 Y1\nB R3 Y1\nB R3 Wil\n\n17) Trydnt: Sacrifice Y1 Trydnt\nMove R1 G3 Y1\nCatastrophe Y1 R\n\n18) wil: T R3 G3 Wil\n\n19) Trydnt: Discover R2 Trydnt G3 G3\n\n20) wil: B R1 Wil\n\n21) Trydnt: Build Y1 Trydnt\n\n22) wil: D R2 Wil G1 G1\n\n23) Trydnt: Move Y1 Trydnt G3\n\n24) wil: B R1 Wil\n\n25) Trydnt: Build Y1 G3\n\n26) wil: D R1 Wil B1 B1\n\n27) Trydnt: Build G1 Trydnt\n\n28) wil: S G3 Wil\nB R2 G1\nB R3 B1\nB R3 Wil\n\n29) Trydnt: Build R3 G3\n\n30) wil: T R3 G3 Wil\n\n31) Trydnt: Discover Y2 Trydnt R3 R3\n\n32) wil: Trade R3 Y3 B1\n\n33) Trydnt: Move Y1 G3 Trydnt\n\n34) wil: B R3 Wil\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 R3\nBuild Y3 Trydnt\n\n36) wil: T R1 B1 Wil\n\n37) Trydnt: Trade Y1 B1 Trydnt\n\n38) wil: Build G1 Wil\n\n39) Trydnt: Build G2 Trydnt\n\n40) wil: M G1 Wil B1\n\n41) Trydnt: Move B1 Trydnt G3\n\n42) wil: S Y3 B1\nM R1 B1 G3\nM R2 G1 G3\nC G3 R\nM R2 G1 G3\n\n43) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 R3\nBuild Y3 G3\n\n44) wil: M Y1 Wil B1\n\n45) Trydnt: Sacrifice Y1 R3\nMove Y2 G3 B1\n\n46) wil: S Y1 B1\nM R2 G3 B1\n\n47) Trydnt: Discover Y2 B1 G3 Gee3\n\n48) wil: Build R1 Wil\n\n49) Trydnt: Build Y1 G3\n\n50) wil: Trade R1 Y1 Wil\n\n51) Trydnt: Build B2 G3\n\n52) wil: D B1 Wil G1 G1\n\n53) Trydnt: Trade B1 R1 G3\n\n54) wil: Build G2 Wil\n\n55) Trydnt: Build G2 Trydnt\n\n56) wil: S G3 Wil\nB G2 B1\nB G3 Wil\nB B1 G1\n\n57) Trydnt: Move Y3 G3 B1\n\n\nHomeworlds Online (SDG# 34199)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.6, Ended: 2018.7.6\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G2 B1 R3\n\n2) wil: H B3 Y1 G3\n\n3) Trydnt: Build R1 Trydnt\n\n4) wil: B G1 Wil\n\twil: B g1 wil\n\n5) Trydnt: Build R1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade R3 Y3 Trydnt\n\n8) wil: B G1 Wil\n\n9) Trydnt: Build R1 Trydnt\n\n10) wil: Trade G1 B1 Wil\n\n11) Trydnt: Discover R1 Trydnt G3 G3\n\n12) wil: Build G1 Wil\n\n13) Trydnt: Build R2 Trydnt\n\n14) wil: Trade G3 R3 Wil\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) wil: B B2 Wil\n\n17) Trydnt: Build B2 Trydnt\n\n18) wil: T B2 R2 Wil\n\n19) Trydnt: Move B2 Trydnt G3\n\n20) wil: T R2 G2 Wil\n\n21) Trydnt: Build B2 G3\n\n22) wil: D B1 Wil Y2 Y2\n\n23) Trydnt: Trade B2 Y2 G3\n\n24) wil: B R1 Wil\n\n25) Trydnt: Build B2 G3\n\n26) wil: M G2 Wil Y2\n\n27) Trydnt: Build R2 G3\n\n28) wil: Move R1 Wil Y2\n\n29) Trydnt: Discover R2 Trydnt G3 Gee3\n\n30) wil: B R2 Wil\n\n31) Trydnt: Build R3 Gee3\n\n32) wil: B R3 Y2\n\n33) Trydnt: Sacrifice Y2 G3\nMove R1 G3 Y2\nMove R2 G3 Y2\nCatastrophe Y2 R\n\n34) wil: Trade R3 G3 Wil\n\n35) Trydnt: Move B1 Trydnt Gee3\n\n36) wil: B B2 Y2\n\n37) Trydnt: Build B3 Gee3\n\n38) wil: T B2 Y2 Y2\n\n39) Trydnt: Trade B3 Y3 Gee3\n\n40) wil: B G1 Wil\n\n41) Trydnt: Discover R2 Gee3 G2 G2\n\n42) wil: S G3 Wil\nB G1 Y2\nB G3 Wil\nB Y1 Wil\n\n43) Trydnt: Move R3 Gee3 Y2\n\n44) wil: Move Y1 Wil Y2\n\n45) Trydnt: Sacrifice B1 Gee3\nTrade R3 Y3 Y2\nCatastrophe Y2 Y\n\n46) wil: Discover G1 Wil G2 Gtoo\n\n47) Trydnt: Trade B2 Y2 G3\n\n48) wil: Sacrifice G3 Wil\nBuild G1 Gtoo\nBuild G3 Wil\nBuild R1 Wil\n\n49) Trydnt: Build B1 G3\n\n50) wil: Discover Y1 Wil B2 B2\n\n51) Trydnt: Build B1 G3\n\n52) wil: M R1 Wil Gtoo\n\tTrydnt: were you gonna blow it up anyway or try and move your stuff out?\n\twil: depended on what you did..\n\n53) Trydnt: Move B1 G3 G2\n\tTrydnt: I was gonna take the g2 so I could double grow on next turn.\n\n54) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild R2 Gtoo\n\twil: yup, and then you&#39;d make me waste that move..and my crew..\n\n55) Trydnt: Build R3 G2\n\tTrydnt: in war, sacrifices must sometimes be made :(\n\n56) wil: S G3 Wil\nB G3 Wil\nB R3 Gtoo\nB R3 Wil\n\twil: look, I made a pit of quicksand!\n\n57) Trydnt: Sacrifice Y2 G3\nMove R2 G2 G3\nMove R2 G3 Gtoo\nCatastrophe Gtoo R\n\n58) wil: Trade R1 Y1 Wil\n\n59) Trydnt: Build B2 G2\n\n60) wil: M R3 Wil B2\n\n61) Trydnt: Build B3 G3\n\n62) wil: T R3 Y3 B2\n\n63) Trydnt: Trade B2 Y2 G3\n\n64) wil: B R1 Wil\n\n65) Trydnt: Build B2 G2\n\n66) wil: M R2 Wil B2\n\n67) Trydnt: Trade B2 Y2 G2\n\n68) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB R2 B2\n\n69) Trydnt: Sacrifice Y3 Gee3\nMove Y2 G2 Wil\nMove Y2 G3 G2\nMove Y2 G2 Wil\nCatastrophe Wil Y\n\n70) wil: B G3 Wil\n\n71) Trydnt: Build B2 G2\n\n72) wil: S Y3 B2\nM G3 Wil G2\nM G3 Wil G2\nM G1 Wil G2\nC G2 G\n\n\tTrydnt: haha yup. that streak of defends was getting a little high lol\n\nHomeworlds Online (SDG# 34173)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.8, Ended: 2018.7.14\nParticipants: Trydnt (S), Thorolf (N)\nWinner: Trydnt\n\n1) Thorolf: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld G2 B2 Y3 *\n\n3) Thorolf: Build G1 Thorolf\n\n4) Trydnt: Build Y1 Trydnt\n\n5) Thorolf: Trade G3 R3 Thorolf\n\n6) Trydnt: Build Y1 Trydnt\n\n7) Thorolf: Build G1 Thorolf\n\n8) Trydnt: Discover Y1 Trydnt G3 G3\n\n9) Thorolf: Discover G1 Thorolf B1 Theta\n\n10) Trydnt: Build Y1 G3\n\n11) Thorolf: Trade G1 R1 Theta\n\n12) Trydnt: Build Y2 Trydnt\n\n13) Thorolf: Build G1 Thorolf\n\n14) Trydnt: Discover Y1 Trydnt G3 Gee3\n\n15) Thorolf: Trade G1 R1 Thorolf\n\n16) Trydnt: Build Y2 Trydnt\n\n17) Thorolf: Trade R3 Y3 Thorolf\n\n18) Trydnt: Build Y3 Gee3\n\n19) Thorolf: Move R1 Thorolf Theta\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) Thorolf: Build Y2 Thorolf\n\n22) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 G3 Theta\nMove Y1 Theta Thorolf\nCatastrophe Thorolf Y\n\n23) Thorolf: Trade R1 Y1 Theta\n\n24) Trydnt: Build Y2 Trydnt\n\n25) Thorolf: Build G1 Thorolf\n\n26) Trydnt: Move Y2 Trydnt Thorolf\n\n27) Thorolf: Trade G1 R1 Thorolf\n\n28) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Thorolf\nAttack G1 Thorolf\n\n\nHomeworlds Online (SDG# 34156)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.6.8, Ended: 2018.6.13\nParticipants: Thorolf (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Thorolf: Homeworld B2 Y3 G3\n\twil: thx for the game..\n\n3) wil: Build G1 Wil\n\twil: Oops!  Your opening with a small yellow leaves only one small in the bank, which will give me the immediate.control of the yellows\n\twil: I&#39;d recommend switching your colors... Of.course you could again watch how it plays out.  \n\n4) Thorolf: Build G1 Thorolf\n\n5) wil: T G1 Y1 Wil\n\n6) Thorolf: Build G1 Thorolf\n\n7) wil: B Y1 Wil\n\n8) Thorolf: Trade G3 R3 Thorolf\n\twil: Again first part of this game is follow the leader...otherwise you can get aced out of an economy.  Bank management, not letting the other person block you out of a color, and conversely not taking the last of one size and letting them control.larger pieces.\n\n9) wil: B G1 Wil\n\twil: Learning this is like learning chess. Jess was my favorite game for 50 years... This is clearly taking over\n\n10) Thorolf: Build G2 Thorolf\n\n11) wil: B G2 Wil\n\n12) Thorolf: Discover G2 Thorolf B1 Delta\n\n13) wil: Trade G1 R1 Wil\n\n14) Thorolf: Build R1 Thorolf\n\n15) wil: Discover Y1 Wil B2 B2\n\n16) Thorolf: Move R1 Thorolf Delta\n\n17) wil: Build Y2 Wil\n\n18) Thorolf: Build G1 Delta\n\n19) wil: D Y2 Wil Y2 Y2\n\n20) Thorolf: Move R3 Thorolf Delta\n\n21) wil: Sacrifice G3 Wil\nBuild Y2 Y2\nBuild Y3 B2\nBuild Y3 Wil\n\n22) Thorolf: Build G2 Thorolf\n\n23) wil: Sacrifice Y3 B2\nMove G2 Wil Y2\nMove G2 Y2 Delta\nMove G2 Delta Thorolf\nCatastrophe Thorolf G\n\n\twil: every monopoly can hurt, in blue can keep you from changing and creates that queen factory, in red keeps you from attacking and leaves you vulnerable, in green keeps you from building, in yellow keeps you from moving and creating new territory.\n\twil: always at risk when you have only one color in your homeworld.  You are playing my strategy, I lost 90% of my first 50 games...  insuring someone doesn&#39;t block you out of a color is important.\r\n\n\twil: challenge me anytime... \n\nHomeworlds Online (SDG# 34197)\nStarted: 2018.6.8, Ended: 2018.8.20\nParticipants: ts52 (S), Thorolf (N)\nWinner: ts52\n\n1) Thorolf: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Thorolf: Build G1 Thorolf\n\n4) ts52: Build G1 Ts52\n\n5) Thorolf: Discover G1 Thorolf R1 Iota\n\tts52: Have a good game!\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Thorolf: Build G1 Iota\n\n8) ts52: Build B1 Ts52\n\n9) Thorolf: Build G1 Iota\n\n10) ts52: Build G2 Ts52\n\n\nHomeworlds Online (SDG# 34184)\nStarted: 2018.6.11, Ended: 2018.8.29\nParticipants: Babamots (S), Thorolf (N)\nWinner: Babamots\n\n1) Thorolf: Homeworld B3 Y2 G3\n\tBabamots: Looks like you&#39;re juggling quite a few games at once. I get confused if I play more than about three. I can challenge you later if you want to finish up some other games first.\n\n2) Babamots: Homeworld Y3 B1 G3\n\n3) Thorolf: Build G1 Thorolf\n\tBabamots: Good luck!\n\n4) Babamots: Build G1 Babamots\n\n5) Thorolf: Trade G1 B1 Thorolf\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) Thorolf: Discover B1 Thorolf G1 Sigma\n\n8) Babamots: Build B2 Babamots\n\n9) Thorolf: Build B2 Sigma\n\n10) Babamots: Discover B2 Babamots G2 Bajor\n\n11) Thorolf: Build B2 Sigma\n\n12) Babamots: Build B3 Bajor\n\tBabamots: Would you like any advice about your moves? Since you&#39;ve taken the last medium blue, you&#39;ve opened up the larges for me to build (getting more larges is a big deal). Since &quot;sigma&quot; is crowded with blue already, you won&#39;t get to build a large to stay even with me.\n\tBabamots: You&#39;re welcome to undo and try something else if you like.\n\tBabamots: Trading one of those blues for a red or yellow might be better.\n\tBabamots: In particular, I think I would have suggested trading the b2 for a y2. That way, if I try to greedily sacrifice my g3 to build three blues at once, you could sacrifice the y2 to move your remaining b1 to cause a catastrophe on me.\n\tBabamots: Well, it&#39;s been a couple of days, so I guess I&#39;ll just move. I&#39;m perfectly happy to take a b3, thank you :-).\n\n13) Thorolf: Trade B2 R2 Sigma\n\n14) Babamots: Build G1 Babamots\n\n\tBabamots: Is everything OK? Looks like you&#39;ve disappeared.\n\nHomeworlds Online (SDG# 34209)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.6.11, Ended: 2018.6.17\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\n2) Felix: Homeworld B1 Y2 G3\n\tBabamots: Good luck!\n\n3) Babamots: Build G1 Babamots\n\tFelix: You too! Let&#39;s make this a bit interesting :)\n\tBabamots: I think I played small universe once against a beginner. Not sure what the implications will be here.\n\n4) Felix: B G1 Felix\n\n5) Babamots: Trade G1 B1 Babamots\n\tFelix: Hopefully the implications will be fun! I even contemplating going micro universe with two large stars, but I don&#39;t think either of us are ready for that insanity yet\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Babamots: Build B1 Babamots\n\n8) Felix: Build Y1 Felix\n\n9) Babamots: Discover B1 Babamots G3 Betazed\n\n10) Felix: Discover Y1 Felix B3 Out\n\n11) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B2 Betazed\nBuild B3 Babamots\n\n12) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Out\nBuild Y3 Felix\n\n13) Babamots: Trade B3 G3 Babamots\n\tFelix: I feel like a synchronized swimmer!\n\n14) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: How?\n\tFelix: I&#39;m basically just copying his moves at this point, but in blue instead of yellow.\n\n15) Babamots: Build B3 Babamots\n\n16) Felix: Build Y3 Felix\n\n17) Babamots: Discover B3 Babamots B3 Galorndon\n\n18) Felix: Move Y1 Out Babamots\n\n19) Babamots: Trade B3 Y3 Galorndon\n\n20) Felix: Trade Y3 R3 Felix\n\n21) Babamots: Trade B2 R2 Betazed\n\n22) Felix: Move Y2 Out Babamots\n\tBabamots: OK, not where I thought we were going with this.\n\n23) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B3 Babamots\nBuild Y3 Galorndon\n\tFelix: :)\n\n24) Felix: Discover Y1 Felix G3 Grip\n\n25) Babamots: Trade B1 R1 Babamots\n\n26) Felix: Build Y3 Grip\n\n27) Babamots: Discover Y3 Galorndon G2 Cardassia\n\n28) Felix: Build R1 Felix\n\n29) Babamots: Attack Y2 Babamots\n\n30) Felix: Sacrifice Y2 Out\nMove Y1 Grip Babamots\nMove R3 Felix Betazed\nCatastrophe Babamots Yellow\n\n31) Babamots: Build R1 Betazed\n\n32) Felix: B R2 Felix\n\n33) Babamots: Build R2 Betazed\nCatastrophe Betazed R\n\tBabamots: Yeah, it&#39;s never advantageous to leave a catastrophe un-triggered (in 2-player). Although in this case, I would have just done it for you.\n\n34) Felix: B G1 Felix\n\tFelix: Yeah, I just forgot to trigger it! Although before you captured my yellow I was considering moving another in and leaving the cat un triggered so you couldn&#39;t build any of the yellows yet. I figured since I controlled all the ships that it wouldn&#39;t be as risky\n\n35) Babamots: Trade B2 R2 Betazed\n\n36) Felix: D R2 Felix B3 Comfrey\n\n37) Babamots: Build B1 Betazed\n\n38) Felix: T R2 B2 Comfrey\n\n39) Babamots: Sacrifice Y3 Cardassia\nMove B3 Babamots Betazed\nMove B3 Betazed Felix\nMove Y3 Galorndon Felix\n\n40) Felix: S G3 Felix\nB G1 Felix\nB G1 Felix\nB B3 Comfrey\n\n41) Babamots: Trade B3 G3 Felix\nCatastrophe Felix G\n\n42) Felix: S Y3 Grip\nM B2 Comfrey Felix\nM B3 Comfrey Felix\nPass\n\n43) Babamots: Sacrifice Y3 Felix\nMove B1 Betazed Felix\nCatastrophe Felix B\nMove R2 Betazed Felix\nPass\n\tBabamots: I&#39;m probably not going to be able to sleep wondering whether you&#39;ll find a way out of this.\n\n\tBabamots: Whew, that was a pretty different game. I spent most of it feeling frightened. I think I like regular-size universe better. It&#39;s move forgiving.\r\n\r\nYour gambit have me pause for sure. That wasn&#39;t a scenario I specifically mapped out.\r\n\r\nGood games! The tournament had been quite a ride. I&#39;m about ready to start a fresh one.\n\tFelix: Interestingly, I don&#39;t think there was any move I could make here at the end. Very interesting game for sure! A textbook example of why only destroying half the opponent&#39;s start with no immediate plan for the rest is dangerous. Congrats and well played!\n\tBabamots: I had never before seen a position where passing was the only option, so it was fun to arrange it.\r\n\r\nYou&#39;ve taught me a lot this tournament. Valiantly fought, sir!\n\nHomeworlds Online (SDG# 34211)\nVariants: &quot;Hard time&quot;\nStarted: 2018.6.12, Ended: 2018.7.4\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: Build Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: D Y1 Wil G3 G3\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Discover Y1 G1 B2 B2\n\n13) wil: T G1 R1 Wil\n\n14) Trydnt: Trade Y2 R2 Trydnt\n\n15) wil: Build Y2 G3\n\n16) Trydnt: Build R1 Trydnt\n\n17) wil: D Y2 G3 G1 G1\n\n18) Trydnt: Build G1 Trydnt\n\n19) wil: S G3 Wil\nB Y2 G3\nB Y3 G1\nB Y3 Wil\n\n20) Trydnt: Discover R1 Trydnt G1 Gee1\n\n21) wil: T Y2 G2 Wil\n\n\nHomeworlds Online (SDG# 34202)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.14, Ended: 2018.7.31\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Trydnt\n\n1) Draw5PlayAll: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G2 Maybenot\n\n12) Trydnt: Build G1 Trydnt\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) Trydnt: Trade G1 R1 Trydnt\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) Trydnt: Build R2 Trydnt\n\tDraw5PlayAll: So now I guess you do to me what I just tried to do to you.\n\n17) Draw5PlayAll: Move R1 Draw5playall Maybenot\n\n18) Trydnt: Move R1 Trydnt G3\n\n19) Draw5PlayAll: Build R2 Maybenot\n\n20) Trydnt: Build R2 G3\n\n21) Draw5PlayAll: Sacrifice R1 Maybenot\nPass\n\n22) Trydnt: Build G1 Trydnt\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) Trydnt: Trade G1 B1 Trydnt\n\n25) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n26) Trydnt: Build G1 Trydnt\n\n27) Draw5PlayAll: Move B1 Draw5playall Maybenot\n\n28) Trydnt: Move B1 Trydnt G3\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Trydnt: Discover Y2 Trydnt R3 R3\n\n31) Draw5PlayAll: Discover G1 Draw5playall B2 Hmmm\n\n32) Trydnt: Move R1 G3 Hmmm\n\n33) Draw5PlayAll: Sacrifice G1 Hmmm\nBuild G1 Draw5playall\n\n34) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G3\nBuild R3 Hmmm\nBuild R3 Trydnt\n\tDraw5PlayAll: Darnyou\n\n35) Draw5PlayAll: Build B1 Maybenot\n\n36) Trydnt: Trade R1 G1 Hmmm\n\n37) Draw5PlayAll: Build R1 Maybenot\n\n38) Trydnt: Build G2 Hmmm\n\n39) Draw5PlayAll: Discover G1 Draw5playall B2 Temp\n\n40) Trydnt: Build B3 G3\n\n41) Draw5PlayAll: Move B1 Maybenot G3\n\n42) Trydnt: Sacrifice B1 G3\nTrade R3 Y3 Hmmm\n\n43) Draw5PlayAll: Build B1 G3\n\n44) Trydnt: Sacrifice R2 G3\nAttack B1 G3\nAttack B1 G3\n\n45) Draw5PlayAll: Build B3 Maybenot\n\n46) Trydnt: Sacrifice Y2 R3\nMove B1 G3 Maybenot\nMove B1 G3 Maybenot\nCatastrophe Maybenot B\n\n47) Draw5PlayAll: Build Y2 Draw5playall\n\n48) Trydnt: Discover R2 Trydnt Y3 Y3\n\n49) Draw5PlayAll: Move Y2 Draw5playall Temp\n\n50) Trydnt: Sacrifice G2 Hmmm\nBuild Y2 G3\nBuild Y3 Hmmm\n\n51) Draw5PlayAll: Build G2 Draw5playall\n\n52) Trydnt: Move B3 G3 Maybenot\n\n53) Draw5PlayAll: Sacrifice Y1 Maybenot\nDiscover R2 Maybenot B1 Givingup\n\tDraw5PlayAll: It actually let me do that?!?\n\n54) Trydnt: Sacrifice R1 G3\nAttack R1 Maybenot\n\tTrydnt: my new favorite gambit (for when you&#39;re outrageously in the lead)\n\n55) Draw5PlayAll: Build Y1 Draw5playall\n\n56) Trydnt: Build G2 Hmmm\n\n57) Draw5PlayAll: Build G3 Temp\n\n58) Trydnt: Sacrifice Y3 Hmmm\nMove G1 Hmmm Draw5playall\nMove G2 Hmmm Draw5playall\nCatastrophe Draw5playall G\nMove B3 Maybenot Draw5playall\n\n59) Draw5PlayAll: Sacrifice G1 Temp\nBuild Y3 Draw5playall\n\n60) Trydnt: Move Y3 Hmmm Draw5playall\nCatastrophe Draw5playall Y\n\n\nHomeworlds Online (SDG# 34218)\nVariants: &quot;Hard time&quot;\nStarted: 2018.6.15, Ended: 2018.7.25\nParticipants: Laurie_Menke (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Laurie_Menke: Homeworld R3 B2 G3\n\tLaurie_Menke: Hi mneme! Have fun!\n\n3) mneme: Build G1 Mneme\n\tmneme: You too!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) mneme: Build G1 Mneme\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) mneme: Trade G1 B1 Mneme\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\n11) mneme: Build B1 Mneme\n\n12) Laurie_Menke: Discover G1 Laurie_menke Y1 Yellow\n\n13) mneme: Build Y2 Mneme\n\n14) Laurie_Menke: Build Y2 Laurie_menke\n\n15) mneme: Discover Y1 Mneme G3 Chartruse\n\n16) Laurie_Menke: Move Y1 Laurie_menke Yellow\n\n17) mneme: Move B1 Mneme Chartruse\n\n18) Laurie_Menke: Discover Y1 Yellow R3 Red\n\n19) mneme: Sacrifice G3 Mneme\nBuild B1 Chartruse\nBuild B2 Chartruse\nBuild B3 Mneme\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Red\nBuild Y3 Laurie_menke\nBuild G1 Laurie_menke\n\n21) mneme: Build Y3 Chartruse\n\n22) Laurie_Menke: Discover G1 Yellow Y3 Yoink\n\n23) mneme: Discover B2 Chartruse R1 Fuchsia\n\n24) Laurie_Menke: Discover G1 Laurie_menke Y1 Sunshine\n\n25) mneme: Move Y3 Chartruse Fuchsia\n\n26) Laurie_Menke: Discover G1 Sunshine B3 Shadow\n\n27) mneme: Build B3 Chartruse\n\n28) Laurie_Menke: Build G2 Shadow\n\n29) mneme: Trade B3 R3 Chartruse\n\n30) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\n31) mneme: Trade B3 G3 Mneme\n\tLaurie_Menke: Well, that&#39;s menacing!\n\n32) Laurie_Menke: Trade G1 Y1 Shadow\n\tLaurie_Menke: Oops... that was a bad idea... sorry!\n\n33) mneme: Sacrifice G3 Mneme\nBuild Y3 Chartruse\nBuild B3 Mneme\nBuild B3 Fuchsia\n\tLaurie_Menke: I am not liking the way things are going...\n\n34) Laurie_Menke: Sacrifice Y2 Red\nMove Y1 Red Mneme\nMove Y1 Shadow Mneme\n\tmneme: I think they&#39;re going just fine! &lt;eg&gt;\r\n\r\nI should really play a bunch of unrated games outside my comfort zone, though.\n\tLaurie_Menke: Since you&#39;re probably one of the top 20 players in the world, it&#39;s pretty hard to get outside your comfort zone!  ;)  But wil is a great opponent for that sort of thing. He loves thinking outside the box.  :)\n\tLaurie_Menke: Just an FYI... I&#39;ll be camping starting later today until Monday. I have the time on the clock, and I need time to think about what to do here, so I probably won&#39;t take my move until Tuesday.\n\tmneme: Wow, I don&#39;t know how but my earlier message didn&#39;t get through: Something like &quot;Admittedly, I&#39;m pretty experienced at regular play, but I have next to no experience with microverse and small universe play, which given my defensive strategy is a big weakness&quot;.\n\tmneme: That&#39;s fine; I&#39;ll not expect a move from you for a few days.  It&#39;s not hard time in any case, so if your clock runs down I&#39;ll be pretty forgiving for a while in any case.\r\n\n\tLaurie_Menke: I won&#39;t let it run down... don&#39;t worry. I&#39;ll be making a move tomorrow.  :)  As for the micro and small universes, I&#39;m happy to play but have equally little experience. Wil is really the guy you want.\n\n35) mneme: Sacrifice Y2 Mneme\nMove Y3 Fuchsia Laurie_menke\nMove B3 Fuchsia Laurie_menke\n\n36) Laurie_Menke: Trade G2 R2 Shadow\n\tmneme: It&#39;s true -- WIl&#39;s the only person I can think of who&#39;s done some fairly serious play in microverses and SUs.  I did try a microverse on defense recently, but...it was short (I did not lose): http://superdupergames.org/main.html?page=play_homeworlds&amp;num=34333\n\tLaurie_Menke: Well, now that the tournament has started, I guess I know what to do to give myself at least a bit of a chance!  ;)\n\tLaurie_Menke: BTW... ouch on the three 3-sized ships you just built!  :/\n\n37) mneme: Sacrifice R3 Chartruse\nAttack G3 Laurie_menke\nAttack G1 Laurie_menke\nAttack Y2 Laurie_menke\n\n\tLaurie_Menke: Thanks for the game, mneme! Hopefully I&#39;ll do better in the tournament!  Congrats!  :)\n\tmneme: Thanks -- good game, and good luck in the tournament!\r\n\r\nAre you going to be at Gencon?\n\tLaurie_Menke: Thanks! Yes... Looney Labs will have a tiny booth and I&#39;ll be there! If you&#39;ll be there, too, come stop by and play with us!  :)\n\tmneme: Will do; see you there!\r\n\n\nHomeworlds Online (SDG# 34203)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.6.18, Ended: 2018.7.15\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\twil: good run in the tourney!  I doubt I&#39;ll make it that far in the next one!\n\n2) Felix: Homeworld R2 B3 G3\n\tFelix: Oh, I&#39;m sure I won&#39;t either, if the pool of players is any more skilled, and it probably will be! I think it was a fluke I made it as far as I did!\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 Y1 Wil\n\n6) Felix: T G1 Y1 Felix\n\n7) wil: Build G1 Wil\n\n8) Felix: Build Y2 Felix\n\n9) wil: B Y2 Wil\n\n10) Felix: Discover Y1 Felix B1 Grinch\n\n11) wil: D Y1 Wil G3 G3\n\n12) Felix: Build G1 Felix\n\n13) wil: Trade G1 B1 Wil\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: B B2 Wil\n\n16) Felix: D B1 Felix G1 Out\n\n17) wil: T B1 R1 Wil\n\n18) Felix: Build Y2 Felix\n\n19) wil: B Y3 G3\n\n20) Felix: Discover Y2 Felix G1 Rim\n\n21) wil: M Y3 G3 Rim\n\n\tFelix: Oops!\n\twil: ach...phoeey\n\nHomeworlds Online (SDG# 34225)\nStarted: 2018.6.18, Ended: 2018.9.8\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) ts52: Build G1 Ts52\n\tFelix: Hello again! Have fun and good luck\n\n4) Felix: Build G1 Felix\n\tts52: Hi! ;) Thanks! You too.\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: B B2 Felix\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) Felix: Trade B1 Y1 Felix\n\n11) ts52: Trade B1 Y1 Ts52\n\n12) Felix: B B1 Felix\n\n13) ts52: Build G1 Ts52\n\n14) Felix: Trade B1 R1 Felix\n\n15) ts52: Trade G1 R1 Ts52\n\tFelix: Sorry for the delay! Thanks for not counting me out.\n\n16) Felix: Build Y1 Felix\n\tts52: No worries.\n\n17) ts52: Build Y2 Ts52\n\n18) Felix: Build Y2 Felix\n\n19) ts52: Move Y1 Ts52 Kermit\n\n20) Felix: Sacrifice Y1 Felix\nDiscover Y1 Felix B1 Rim\n\n21) ts52: Build B1 Kermit\n\n22) Felix: Discover B2 Felix G1 Conk\n\n23) ts52: Build G1 Ts52\n\n24) Felix: Build B2 Conk\n\n25) ts52: Build B3 Kermit\n\n26) Felix: S Y1 Rim\nM B2 Conk Kermit\nC Kermit Blue\n\n27) ts52: Trade G1 B1 Ts52\n\n28) Felix: Build B1 Conk\n\n29) ts52: Move B1 Ts52 Kermit\n\n30) Felix: Trade B1 Y1 Conk\n\n31) ts52: Build G1 Ts52\n\n32) Felix: Move R1 Felix Conk\n\n33) ts52: Discover G1 Ts52 B3 Gonzo\n\n34) Felix: Move B2 Conk Kermit\n\n35) ts52: Build G1 Ts52\n\n36) Felix: Build G2 Felix\n\n37) ts52: Build G2 Gonzo\n\n38) Felix: Trade B2 R2 Kermit\n\n39) ts52: Sacrifice Y1 Kermit\nDiscover B1 Kermit Y1 Bigbird\n\n40) Felix: Build Y1 Conk\n\n41) ts52: Discover G1 Ts52 Y3 Zoe\n\n42) Felix: Sacrifice G2 Felix\nBuild Y3 Felix\nBuild Y3 Conk\n\n43) ts52: Move Y2 Ts52 Gonzo\n\n44) Felix: Move Y3 Conk Gonzo\n\n45) ts52: Move G2 Gonzo Bigbird\n\n46) Felix: Sacrifice R2 Kermit\nAttack G1 Gonzo\nAttack Y2 Gonzo\n\n47) ts52: Build G2 Ts52\n\n48) Felix: Build G2 Gonzo\n\n49) ts52: Sacrifice G2 Ts52\nBuild G2 Zoe\nBuild G3 Bigbird\n\n50) Felix: Trade G1 B1 Gonzo\n\n51) ts52: Sacrifice G3 Bigbird\nBuild G1 Ts52\nBuild G3 Bigbird\nBuild B2 Bigbird\n\n52) Felix: Move B1 Gonzo Conk\n\n53) ts52: Trade B2 R2 Bigbird\n\n54) Felix: Build B2 Conk\n\n55) ts52: Build B2 Bigbird\n\n56) Felix: Discover B1 Conk R3 Post\n\n57) ts52: Move G3 Bigbird Post\n\n58) Felix: Sacrifice G3 Felix\nBuild G3 Gonzo\nBuild B2 Conk\nBuild B3 Conk\n\n59) ts52: Attack B1S Post\n\n60) Felix: Sacrifice Y3 Felix\nMove Y3 Gonzo Ts52\nMove G3 Gonzo Ts52\nMove G2 Gonzo Ts52\nCatastrophe Ts52 Green\n\n61) ts52: Move G1 Zoe Ts52\n\n62) Felix: Trade B3 R3 Conk\n\n63) ts52: Sacrifice G3 Post\nBuild G1 Ts52\nBuild G2 Ts52\nBuild G3 Zoe\n\n64) Felix: Sacrifice R3 Conk\nAttack G2 Ts52\nAttack G1 Ts52\nAttack R1 Ts52\n\n65) ts52: Sacrifice G3 Zoe\nBuild G3 Zoe\nBuild G3 Ts52\nBuild G3 Ts52\n\n66) Felix: Catastrophe Ts52 Green\nPass\n\tts52: I think I&#39;ve dragged this out as long as I can.\n\tFelix: You dragged it out longer than I expected! Great defense and fun game! See you in the tourney next, I suppose :)\n\n\nHomeworlds Online (SDG# 34235)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.18, Ended: 2020.1.1\nParticipants: bhorner (S), alnith (N)\nWinner: bhorner\n\n1) alnith: Homeworld B2 R1 G3\n\tbhorner: Looks like I&#39;m going first.  The commands are listed at the top.  You can abbreviate, and I usually abbreviate maximally.  For example these are equivalent:\r\nverbose:\r\n  homeworld r2 b1 g3\r\nabbreviated:\r\n  h r2 b1 g3\n\n2) bhorner: Homeworld R3 B1 G3\n\tbhorner: Well, actually, it looks like you&#39;re going first.  :)\n\talnith: I have taken the first move!\n\n3) alnith: Build G1 Alnith\n\n4) bhorner: Build G1 Bhorner\n\n5) alnith: Trade G1 Y1 Alnith\n\tbhorner: I have taken the second move!  :)\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) alnith: Build G1 Alnith\n\tbhorner: The history here is good for going back to find where you messed up too.  Plus having more time to think about your move is nice.  :)\n\n8) bhorner: Build G1 Bhorner\n\talnith: Do they keep the logs after the game ends? It might make for some nice training data.\n\tbhorner: Yes, forever, I&#39;ve downloaded all the games.  I used it to test my rules evaluator when I was trying to make an AI.  :)\n\n9) alnith: Trade G1 R1 Alnith\n\tbhorner: The last game we played that started like this got very messy!\n\n10) bhorner: T G1 R1 Bhorner\n\n11) alnith: Build G1 Alnith\n\tDraw5PlayAll: How many people are making AIs for this game?!\r\nAnd how many people are actually getting anywhere?\n\tbhorner: I know of several attempts, not aware of any getting anywhere.  The branching factor grows too fast for standard tree searching techniques (like for chess).\n\n12) bhorner: Build R2 Bhorner\n\tDraw5PlayAll: More manageable if you do it by individual actions rather than turns, but still very high.\n\tbhorner: I don&#39;t know what that means.  :)\n\n13) alnith: Build R2 Alnith\n\n14) bhorner: Discover R2 Bhorner G2 Boogar\n\n15) alnith: Discover R2 Alnith G3 Qonos\n\n16) bhorner: Build G1 Bhorner\n\n17) alnith: Trade R1 B1 Alnith\n\tbhorner: sorry that took so long!\n\n18) bhorner: T G1 B1 Bhorner\n\n19) alnith: Move B1 Alnith Qonos\n\n20) bhorner: Build B2 Bhorner\n\talnith: No worries! I&#39;m totally in the proverbial glass house w.r.t. this\n\tDraw5PlayAll: I detect a Trekkie\n\n21) alnith: Build B2 Qonos\n\n22) bhorner: Discover B1 Bhorner Y2 Sun\n\n23) alnith: Trade B1 Y1 Qonos\n\n24) bhorner: B Y2 Bhorner\n\n25) alnith: Move R2 Qonos Sun\n\n26) bhorner: D B1 Sun Y3 Nova\n\n27) alnith: Move G1 Alnith Qonos\n\n28) bhorner: D Y1 Bhorner G2 Tree\n\n29) alnith: Build Y2 Qonos\n\n30) bhorner: S G3 Bhorner\nB Y3 Bhorner\nB Y3 Tree\nB R1 Boogar\n\n31) alnith: Move G1 Qonos Sun\n\n32) bhorner: Move Y2 Bhorner Boogar\n\n33) alnith: Move B2 Qonos Sun\n\n34) bhorner: Trade B1 G1 Nova\n\n35) alnith: Move R2 Sun Bhorner\n\n36) bhorner: Attack R2 Bhorner\n\n\nHomeworlds Online (SDG# 34187)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.19, Ended: 2018.8.13\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld B1 G3 R3\n\n3) Trydnt: Build G1 Trydnt\n\tFelix: Hey again, have fun! :) I&#39;m gonna try something a bit different.\n\n4) Felix: Build R1 Felix\n\n5) Trydnt: Build G1 Trydnt\n\n6) Felix: Trade R1 B1 Felix\n\n7) Trydnt: Trade G1 B1 Trydnt\n\n8) Felix: Build B2 Felix\n\n9) Trydnt: Build B2 Trydnt\n\n10) Felix: T B1 Y1 Felix\n\n11) Trydnt: Trade B1 Y1 Trydnt\n\n12) Felix: B R1 Felix\n\n13) Trydnt: Trade G1 R1 Trydnt\n\n14) Felix: Build B1 Felix\n\n15) Trydnt: Discover B2 Trydnt G1 G1\n\n16) Felix: Discover B1 Felix G2 Rim\n\n17) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n18) Felix: Build B1 Felix\n\n19) Trydnt: Build B3 G1\n\n20) Felix: Build B3 Rim\n\n21) Trydnt: Trade B3 Y3 G1\n\n22) Felix: Trade B1 G1 Felix\n\n23) Trydnt: Build G2 Trydnt\n\n24) Felix: Discover G1 Felix Y2 Opus\n\n25) Trydnt: Build R1 Trydnt\n\n26) Felix: Move R1 Felix Rim\n\n27) Trydnt: Move B2 G1 Opus\n\n28) Felix: Trade B3 Y3 Rim\n\n29) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 Gee1\nBuild Y2 G1\n\n30) Felix: B Y2 Rim\n\n31) Trydnt: Sacrifice Y2 G1\nMove Y1 Gee1 Rim\nMove Y1 Gee1 Rim\nCatastrophe Rim Y\n\n32) Felix: Build R2 Rim\n\n33) Trydnt: Move Y3 G1 Rim\n\n34) Felix: Build R2 Rim\n\n35) Trydnt: Discover R1 Trydnt Y1 Y1\n\n36) Felix: Trade R2 Y2 Rim\n\tFelix: Sorry for the delay!\n\n37) Trydnt: Build R2 Trydnt\n\n38) Felix: Sacrifice B2 Felix\nTrade R1 Y1 Rim\nTrade R2 Y2 Rim\n\n39) Trydnt: Catastrophe Rim Y\nMove R1 Y1 Rim\n\n40) Felix: Build B1 Rim\n\n41) Trydnt: Sacrifice R2 Trydnt\nAttack B1 Rim\nAttack B1 Rim\n\n42) Felix: Build R1 Felix\n\n43) Trydnt: Build R2 Rim\n\n44) Felix: Build R2 Felix\n\n45) Trydnt: Trade R2 Y2 Rim\n\n46) Felix: Move R3 Felix Rim\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Rim\nBuild R2 Rim\nBuild R3 Trydnt\nCatastrophe Rim R\n\n48) Felix: Build Y1 Felix\n\n49) Trydnt: Trade R3 G3 Trydnt\n\n50) Felix: Discover Y1 Felix Y2 Rom\n\n51) Trydnt: Build G1 Trydnt\n\tFelix: Oh, poo. \n\n52) Felix: Sacrifice G1 Opus\nBuild Y1 Rom\n\n53) Trydnt: Build Y3 Rim\n\n54) Felix: Build Y3 Felix\n\n55) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Opus\n\n56) Felix: Sacrifice Y1 Rom\nMove Y1 Felix Rim\n\n57) Trydnt: Trade Y2 R2 Rim\n\n58) Felix: Build Y1 Rim\n\n59) Trydnt: Sacrifice R2 Rim\nAttack Y1 Rim\nAttack Y1 Rim\n\n60) Felix: Discover Y1 Rom G1 Ram\n\n61) Trydnt: Discover Y1 Rim G1 G1\n\n62) Felix: Build Y2 Ram\n\n63) Trydnt: Build Y2 G1\n\n64) Felix: Trade R2 G2 Felix\n\n65) Trydnt: Sacrifice B2 Opus\nTrade B2 G2 Opus\nTrade B1 G1 Rim\n\n66) Felix: Trade G2 B2 Felix\n\n67) Trydnt: Build B1 Rim\n\n68) Felix: Discover B2 Felix G2 Out\n\n69) Trydnt: Build G3 Opus\n\n70) Felix: Build B2 Out\n\n71) Trydnt: Move B1 Rim G1\n\n72) Felix: Move Y2 Ram Out\n\n73) Trydnt: Sacrifice G3 Opus\nBuild G3 Opus\nBuild B3 G1\nBuild B3 Rim\n\n74) Felix: Move B2 Out Ram\n\n75) Trydnt: Discover G3 Opus B3 B3\n\n76) Felix: Build R1 Felix\n\n77) Trydnt: Build R2 Trydnt\n\n78) Felix: Move R1 Felix Out\n\n79) Trydnt: Move B3 Rim Ram\n\n80) Felix: Sacrifice Y1 Ram\nMove B2 Ram Out\n\n81) Trydnt: Move B3 G1 Out\n\n82) Felix: Sacrifice Y2 Out\nDiscover B2 Out Y1 Safety\nMove B2 Out Safety\n\n83) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Out\n\n84) Felix: Build R1 Felix\n\n85) Trydnt: Move Y1 G1 Out\n\n86) Felix: Discover R1 Felix Y2 Grump\n\n87) Trydnt: Sacrifice G3 B3\nBuild G3 Rim\nBuild B3 Out\nBuild R2 Out\n\n88) Felix: Trade B2 R2 Safety\n\n89) Trydnt: Move G3 Rim Felix\n\tFelix: It&#39;s looking pretty grim for me!\n\n90) Felix: Attack G3 Felix\n\tTrydnt: it&#39;s not looking good no but I&#39;ve seen you pull some sneaky recoveries in the past\n\n91) Trydnt: Sacrifice Y2 G1\nMove G1 Rim Felix\nMove G2 Opus Felix\nCatastrophe Felix G\n\n92) Felix: Pass\n\n93) Trydnt: Sacrifice Y3 Rim\nMove B1 Rim Felix\nMove B3 Out Felix\nMove B3 Out Felix\nCatastrophe Felix B\n\n\tFelix: Well done!\n\tTrydnt: good game \n\nHomeworlds Online (SDG# 34233)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.21, Ended: 2018.7.2\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3 Dlwillson\n\n2) Felix: H B1 G3 B3 *\n\tdlwillson: Hi Felix! Long time, no play! If my turns are slow, please forgive me. My top priority is proposing for SFS DevOps Camp.\n\tFelix: Hello! I know, it&#39;s been a minute. No pressure to make moves quickly. Sounds like you&#39;re busy! I am too. We just had a new baby AND moved into a new house with the last several weeks, so I don&#39;t mind if it&#39;s a slow game :)\n\tFelix: Even if you have to miss the 7 day timer, I won&#39;t end the game\n\n3) dlwillson: Build G1 Dlwillson\n\tFelix: Having a small universe might help keep the game from dragging on too much :)\n\n4) Felix: Build B1 Felix\n\n5) dlwillson: Build G1 Dlwillson\n\n6) Felix: Trade B3 Y3 Felix\n\tdlwillson: I thought about trading to blue, but this seemed more interesting. I&#39;ll know whether it was a mistake shortly.\n\n7) dlwillson: Discover G1 Dlwillson Y2 Sold\n\tFelix: Interesting indeed!\n\n8) Felix: B B2 Felix\n\n9) dlwillson: B G1 Sold\n\n10) Felix: Discover B1 Felix G2 Out\n\n11) dlwillson: M G1 Sold Felix\n\n12) Felix: Trade B2 R2 Felix\n\n13) dlwillson: S G3 Dlwillson\nB G2 Felix\nB G2 Sold\nB G3 Dlwillson\n\tFelix: Ouch, can&#39;t believe I fell for that. Very nice maneuver! I admit I actually forgot we were in a small universe, and I&#39;m the one who made it!\n\n14) Felix: Build R1 Felix\n\tdlwillson: Well, I think it&#39;s going to work out. ;-)\n\n15) dlwillson: Sacrifice G2 Sold\nBuild G2 Felix\nBuild G3 Dlwillson\nCatastrophe Felix G\n\tFelix: It looks like it!\n\n16) Felix: Build B2 Out\n\n17) dlwillson: Trade G3 R3 Dlwillson\n\n18) Felix: Build B2 Out\n\n19) dlwillson: Build R1 Dlwillson\n\n20) Felix: Trade B2 Y2 Out\n\n21) dlwillson: M R3 Dlwillson Out\n\n22) Felix: Build B2 Out\n\n23) dlwillson: A Y2 Out\n\n24) Felix: Sacrifice B2 Out\nTrade B1 R1 Out\nTrade B2 R2 Out\n\n25) dlwillson: S R3 Out\nA R2 Out\nA R1 Out\nPass\n\n26) Felix: Trade R1 G1 Felix\n\n27) dlwillson: T G1 B1 Dlwillson\n\n28) Felix: Build G1 Felix\n\n29) dlwillson: B B2 Dlwillson\n\n30) Felix: Build Y1 Felix\n\n31) dlwillson: M B2 Dlwillson Sold\n\n32) Felix: Discover G1 Felix B3 Hope\n\tdlwillson: Bah. I&#39;m wasting moves. Sorry.\n\tdlwillson: Bah. I&#39;m wasting moves. Sorry.\n\n33) dlwillson: S G3 Dlwillson\nB B2 Sold\nB B2 Sold\nB B3 Dlwillson\n\tFelix: No worries. I could actually just resign at this point, unless you&#39;d rather play it out? You&#39;ve outmaneuvered me very quickly, nice work!\n\n\tdlwillson: Good game, Felix! My green gambit paid off!\n\tFelix: Likewise! That was a fun quick one. I hoped my opening rush on blue would benefit me more :) well played!\n\nHomeworlds Online (SDG# 34215)\nStarted: 2018.6.24, Ended: 2018.8.14\nParticipants: deanthebean (S), Felix (N)\nWinner: deanthebean\n\n1) Felix: Homeworld B2 R3 G3\n\n2) deanthebean: Homeworld B1 Y2 G3\n\tdeanthebean: Hello again. Have fun!\n\n3) Felix: Build G1 Felix\n\n4) deanthebean: Build G1 Deanthebean\n\tFelix: Hi! You too! Always a pleasure.\n\n5) Felix: Trade G1 B1 Felix\n\n6) deanthebean: Build G1 Deanthebean\n\n7) Felix: Build B1 Felix\n\n8) deanthebean: Trade G1 R1 Deanthebean\n\n9) Felix: Build G1 Felix\n\n10) deanthebean: Build R1 Deanthebean\n\n11) Felix: Trade G1 R1 Felix\n\n12) deanthebean: Build R2 Deanthebean\n\n13) Felix: Build R2 Felix\n\n14) deanthebean: Trade R2 B2 Deanthebean\n\n15) Felix: Trade R1 Y1 Felix\n\n16) deanthebean: Trade R1 Y1 Deanthebean\n\n17) Felix: D B1 Felix G1 Rumpus\n\n18) deanthebean: Discover B2 Deanthebean G3 Wait\n\n19) Felix: Sacrifice G3 Felix\nBuild B2 Rumpus\nBuild B3 Rumpus\nBuild B3 Felix\n\n20) deanthebean: Sacrifice Y1 Deanthebean\nMove B2 Wait Rumpus\nCatastrophe Rumpus Blue\n\n21) Felix: Trade B3 G3 Felix\n\n22) deanthebean: Build R1 Deanthebean\n\tFelix: Sorry for th edelay!\n\tdeanthebean: np\n\n23) Felix: Build Y1 Felix\n\tFelix: I stopped getting email notifications for some reason\n\n24) deanthebean: Trade R1 B1 Deanthebean\n\n25) Felix: Build Y1 Felix\n\n26) deanthebean: Build B2 Deanthebean\n\n27) Felix: Build B2 Felix\n\n28) deanthebean: Trade B2 Y2 Deanthebean\n\n29) Felix: Discover Y1 Felix G1 Out\n\n30) deanthebean: Discover B1 Deanthebean Y3 Stage\n\n31) Felix: Move B2 Felix Out\n\n32) deanthebean: Discover Y2 Deanthebean G3 Coach\n\n33) Felix: Discover Y1 Felix G1 Conk\n\n34) deanthebean: Build G2 Deanthebean\n\n35) Felix: Sacrifice G3 Felix\nBuild Y2 Conk\nBuild Y3 Out\nBuild Y3 Felix\n\n36) deanthebean: Discover G2 Deanthebean B3 Port\n\n37) Felix: Trade Y1 R1 Out\n\n38) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Port\nBuild G2 Port\nBuild G3 Deanthebean\n\n39) Felix: Trade Y3 G3 Felix\n\n40) deanthebean: Sacrifice G3 Deanthebean\nBuild G3 Deanthebean\nBuild R1 Deanthebean\nBuild R2 Deanthebean\n\n41) Felix: Sacrifice G3 Felix\nBuild Y1 Out\nBuild Y3 Felix\nBuild R2 Out\n\n42) deanthebean: Sacrifice G3 Deanthebean\nBuild G3 Deanthebean\nBuild G3 Deanthebean\nBuild B2 Stage\n\n43) Felix: Move Y3 Out Port\n\n44) deanthebean: Move R1 Deanthebean Coach\n\n45) Felix: Build B3 Out\n\n46) deanthebean: Build R3 Coach\n\n47) Felix: Sacrifice R2 Out\nAttack G2 Port\nAttack G2 Port\n\n48) deanthebean: Move G1 Deanthebean Port\nCatastrophe Port Green\n\n49) Felix: Move B1 Felix Conk\n\n50) deanthebean: Move R3 Coach Conk\n\n51) Felix: Sacrifice Y2 Conk\nMove B1 Conk Coach\nMove B3 Out Coach\n\n52) deanthebean: Discover Y2 Coach G1 Mouth\n\n53) Felix: Build B3 Out\n\n54) deanthebean: Sacrifice G3 Deanthebean\nBuild Y2 Mouth\nBuild R2 Conk\nBuild G2 Deanthebean\n\n55) Felix: Build R3 Out\n\n56) deanthebean: Attack Y1 Conk\n\n57) Felix: Sacrifice Y3 Port\nMove B1 Coach Deanthebean\nMove B3 Coach Deanthebean\nDiscover B2 Out Y3 In\n\n58) deanthebean: Attack B3 Deanthebean\n\n59) Felix: Move B2 In Deanthebean\nCatastrophe Deanthebean Blue\n\n60) deanthebean: Move R3 Conk Felix\n\n61) Felix: Sacrifice R2 Felix\nAttack R3 Felix\nPass\n\n62) deanthebean: Build Y3 Conk\n\n63) Felix: Sacrifice Y1 Felix\nMove R3 Felix Mouth\n\n64) deanthebean: Sacrifice Y3 Conk\nMove Y1 Conk Felix\nMove Y2 Mouth Felix\nMove Y2 Mouth Felix\nCatastrophe Felix Yellow\n\n\tdeanthebean: gg\n\tFelix: Wow, totally overlooked that. Good game!\n\nHomeworlds Online (SDG# 34210)\nVariants: &quot;Unrated&quot;\nStarted: 2018.6.26, Ended: 2018.7.6\nParticipants: DodoBirb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R2 G3\n\tBabamots: So you&#39;d like a Homeworlds lesson? I&#39;ll try to explain strategy as we go.\n\n2) DodoBirb: Homeworld B1 Y2 G3\n\tBabamots: How much have you played? I can explain every detail or I can leave out the basics.\n\tBabamots: I&#39;m taking a large-medium home system, which has a low win rate. A medium-small home had the best win rate, probably because it let&#39;s you move to large systems right away and therefore control the larges in the stash.\n\n3) Babamots: Build G1 Babamots\n\tDodoBirb: This is my first game. I know the rules and a bit of strategy but I want to see how it all works against a real opponent.\n\n4) DodoBirb: Build G1 Dodobirb\n\tBabamots: Cool! The first few moves will be building and getting new ship colors. There&#39;s not usually too much strategy yet.\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\tBabamots: One of the first things to watch for is getting &quot;frozen out&quot; of a color. Suppose I keep building y1 and you don&#39;t trade for a y1. Then the y1 will all be used and you will have no yellow ships. In order to get any yellow ships, you will have to get a medium of another color and trade for a y2.\n\n7) Babamots: Build G1 Babamots\n\n8) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Should I have traded early like that or waited a turn? \n\n9) Babamots: Trade G1 B1 Babamots\n\tBabamots: Either was fine in this case. The main thing is not to let me get all the smalls of any color (or you&#39;ll be frozen out) and don&#39;t take the last small of any color I can build (or I&#39;ll get the first medium).\n\tBabamots: Of course, it&#39;s OK to let me get a medium if you can get your own on your next move. You just don&#39;t want to fall behind.\n\n10) DodoBirb: Trade G1 B1 Dodobirb\n\tBabamots: Like here, it&#39;s OK to trade for a b1 because, even though I can build b2, you can build b2 too.\n\n11) Babamots: Build B2 Babamots\n\n12) DodoBirb: Build B2 Dodobirb\n\n13) Babamots: Trade B2 Y2 Babamots\n\tBabamots: I&#39;m planning to trade for y2 and threaten a blue catastrophe at your home.\n\n14) DodoBirb: Discover B2 Dodobirb Y3 Yellow\n\tBabamots: I&#39;m too tired to count. I would need to have a y3 to sacrifice and catastrophe. \n\tBabamots: It&#39;s 3 AM here. I&#39;m not at my sharpest :-)\n\tDodoBirb: Sorry if I&#39;m keeping you up, I&#39;m in Australia so it&#39;s early in the afternoon for me.\n\n15) Babamots: Discover Y1 Babamots Y1 Iconia\n\tBabamots: My plan for my next move would give me almost a yellow monopoly and another large ship. It is\r\nsacrifice g3 Babamots\r\nbuild y2 Iconia\r\nbuild y3 Babamots\r\nbuild y3 Babamots\r\n\r\nYou can prevent it in a couple of ways. Want to look for them or have me tell you? \n\n16) DodoBirb: Discover B1 Dodobirb Y3 Sun\n\tDodoBirb: I&#39;ll look. If I can&#39;t find them I&#39;ll probably ask.\n\tDodoBirb: I can move my y1 at my homeworld into Iconia to stop you from building a yellow ship there.\n\tDodoBirb: Oh oops the systems aren&#39;t connected\n\n17) Babamots: Build B2 Babamots\n\tBabamots: I would have recommended discovering another y3 system to user up the piece. \n\tDodoBirb: Is that because my move stops me from making more yellow?\n\tBabamots: It looks like your plan is to move y1 to Iconia after I build so you can catastrophe the system. It&#39;s true you lose your only yellow ship (so you&#39;ll have to trade again to build yellows), but also, I come out ahead by a large ship.\n\tBabamots: You can still undo if you&#39;d like. Up to you. \n\n18) DodoBirb: Build G1 Dodobirb\n\n19) Babamots: Discover B2 Babamots G1 Risa\n\n20) DodoBirb: Move G1 Dodobirb Yellow\n\tBabamots: Here&#39;s a big-picture suggestion. You seem to have known how important it is to have blue and green in your home system. You&#39;ll also want to get at least one other system with blue and green. That gives you another  place to build and diversify and less worry about overpopulation.\r\n\r\nWhen the homeworlds are three moves apart (like ours), I usually like to start building my invasion fleet in a system that is one move away from my home and gradually move it to two different systems that are connected to my opponent&#39;s home. By spreading across three systems, there&#39;s little chance of overpopulation. A mistake I see pretty often is that someone tries to build a whole fleet in one system, which gives me lots of opportunities to threaten catastrophes.\r\n\r\nI&#39;ve been aching to give someone this tip, and you&#39;re the lucky recipient :-).\n\n21) Babamots: Build Y2 Babamots\n\tBabamots: And with that I&#39;d better get some sleep. It&#39;s hard for me to keep a decent schedule when I don&#39;t have time-sensitive obligations the next day.\n\n22) DodoBirb: Discover Y1 Dodobirb Y3 Echo\n\n23) Babamots: Build B2 Babamots\n\tBabamots: Even though you could build a y3, I would cheerfully sacrifice my y2 to move my y1 to your home for a catastrophe.\r\n\r\nThe danger of yellow catastrophes on my home stars is the main reason I see to use red rather than yellow as a home marker color. I&#39;m not sure which is better, but a yellow home marker always seems to cause a frustrating moment where I want to build yellow at home but can&#39;t.\n\tDraw5PlayAll: Exactly my reason for using red. I know they say to use yellow for beginners but then your options for storing yellows is more limited. I can often get 4-5 yellows and the homeworld is a nice place to put them.\n\n24) DodoBirb: Build B3 Yellow\n\tDodoBirb: I couldn&#39;t really build yellow anywhere so I just had to stop you from taking it.\n\tBabamots: Yep, it was a good move. I think the next thing you should work on is turning some of those y3 systems into ships. If you move your b2 away from &quot;yellow,&quot; you can sacrifice your g1 in yellow to build y3 (since the system marker becomes available for building the instant that last ship is gone). Of course, you&#39;ll need to put a yellow ship somewhere that you can safely build a y3...\n\tBabamots: Meanwhile, my plan is to make more important things come up so you don&#39;t get around to building those y3s. For starters, you&#39;re not going to want to pass up a chance to build a b3.\n\n25) Babamots: Build B3 Risa\n\tBabamots: My plan for the next few moves is to get some red and take advantage of the fact that I have more medium ships. Even if you get red ships too, my mediums can chase your smalls around and keep them off the y3 systems so you can&#39;t build y3.\r\n\r\nSomething else will probably come up to distract me from that plan, but that&#39;s what I&#39;m hoping to work on for the next several moves.\n\n26) DodoBirb: Build G1 Dodobirb\n\n27) Babamots: Trade B3 R3 Risa\n\n28) DodoBirb: Trade B3 R3 Yellow\n\tBabamots: Since I&#39;m about to trade for a red ship, you need a red ship immediately. Otherwise, I can sacrifice a y2 to send my large to your homeworld and take it over.\n\n29) Babamots: Trade B1 R1 Babamots\n\n30) DodoBirb: Build R1 Yellow\n\n31) Babamots: Build G2 Babamots\n\n32) DodoBirb: Build G2 Dodobirb\n\n33) Babamots: Move G2 Babamots Iconia\n\tBabamots: My plan is to eventually move my g2 to either Sun or Echo. Then, I either get to capture a ship (by sacrificing my r1) or, if your ship leaves, I get to sacrifice my g2 to build a y3 with the system marker.\n\n34) DodoBirb: Trade G2 R2 Dodobirb\n\tBabamots: My next move puts you in check. I could sacrifice y2 to move my g2 to your home and catastrophe all the ships there. So you&#39;ll need to move or trade a green at home to keep me from winning. Technically, you could also save yourself by moving another ship to your home, but that still lets me destroy three of your ships.\n\n35) Babamots: Move G2 Iconia Sun\n\n36) DodoBirb: Move B1 Sun Dodobirb\n\n37) Babamots: Sacrifice G2 Sun\nBuild G2 Babamots\nBuild Y3 Babamots\n\n38) DodoBirb: Build G2 Yellow\n\n39) Babamots: Move Y2 Babamots Risa\n\n40) DodoBirb: Discover G1 Dodobirb B3 Deepblue\n\n41) Babamots: Move B2 Babamots Iconia\n\n42) DodoBirb: Discover R1 Yellow R1 Reddwarf\n\n43) Babamots: Move R3 Risa Deepblue\n\n44) DodoBirb: Move R3 Yellow Risa\n\tBabamots: I think you&#39;re playing extremely well, so I haven&#39;t felt like you needed advice for a while. I can say more if you&#39;re feeling lost, but it sure doesn&#39;t look like you need my help.\n\tBabamots: Since your ships are pretty spread out, you&#39;re well prepared to make a green sacrifice triple build and get another large ship if I make the smallest mistake.\n\tBabamots: My big advantage is dominating the yellows. I can sacrifice to move two or three times while you&#39;re limited to one. \n\n45) Babamots: Sacrifice Y2 Risa\nMove B2 Risa Echo\nMove B2 Echo Dodobirb\n\tBabamots: Your g1 can escape almost like a yellow by sacrificing and rebuilding. Also, you could counter-attack at Risa with your r3.\n\n46) DodoBirb: Move B1 Dodobirb Yellow\n\n47) Babamots: Sacrifice G3 Babamots\nBuild B1 Dodobirb\nBuild B3 Dodobirb\nBuild Y2 Babamots\nCatastrophe Dodobirb B\n\n48) DodoBirb: Sacrifice G1 Deepblue\nBuild G1 Dodobirb\n\n49) Babamots: Move Y2 Babamots Reddwarf\n\n50) DodoBirb: Sacrifice G2 Yellow\nBuild R2 Reddwarf\nBuild R3 Reddwarf\nCatastrophe Reddwarf R\n\tBabamots: Sorry if I haven&#39;t been as instructive as you&#39;d like. I didn&#39;t know myself what I would do if you counter-attacked back there, or I should have warned you that the time was right to start the real attack.\r\n\r\nAt this point, it will be very difficult to defend your home from a game-ending yellow catastrophe. I&#39;ve got most of the yellow, so I don&#39;t think you&#39;ll be able to move your ships around to effectively intercept my invasion. I&#39;m planning to move my y2s to small systems and then move three yellows to your home all at once.\n\tDodoBirb: Don&#39;t worry about it. I&#39;ve learnt quite a bit from this game. I&#39;ll see how long I can hold out against your yellow onslaught (probably not for very long).\n\n51) Babamots: Build Y2 Babamots\n\tDraw5PlayAll: I see something... interesting.\n\tBabamots: You&#39;re welcome to give suggestions to DodoBirb. I don&#39;t see anything that will do more than buy a few moves (like sacrificing green to build two reds in RedDwarf and destroying my y2. I can rebuild it, but it sets me back a move).\n\tDraw5PlayAll: Rebuild it where?\n\tBabamots: I would rebuild it in my home system. That makes three yellows there, but the y1 in Echo can&#39;t reach my home for a catastrophe in one move.\n\n52) DodoBirb: Trade B2 R2 Yellow\n\n53) Babamots: Discover Y2 Babamots B1 Bolius\n\n54) DodoBirb: Sacrifice G3 Dodobirb\nBuild R1 Risa\nBuild R1 Yellow\nBuild R3 Dodobirb\n\n55) Babamots: Sacrifice Y3 Babamots\nMove Y2 Babamots Bolius\nMove Y2 Bolius Dodobirb\nMove Y1 Iconia Dodobirb\n\tBabamots: So you know, I&#39;m planning to sacrifice my y3 on my next move. I will move two yellows to your home and move my y2 from Babamots to a small system -- maybe Bolius. I don&#39;t believe there&#39;s anything you can do to prevent me from then moving that y2 to your home and having the four yellows there I need to win.\n\tBabamots: Also, if you ever want to study games after they&#39;re over, an easy way is with SDG&#39;s &quot;Archive View&quot; (you can look at every position in the whole game history). This page can be a little hard to find, but I wrote some Javascript that makes it super easy. The code and instructions are here:\r\n\r\nhttps://github.com/jpeterbaker/SDGchange\n\n56) DodoBirb: Sacrifice Y1 Echo\nMove R3 Risa Babamots\n\tDraw5PlayAll: ?page=play&amp;gid=34210 should redirect to the Play page, and thus you can heavily reduce the size of your code.\n\n57) Babamots: Move Y2 Bolius Dodobirb\nCatastrophe Dodobirb Y\n\tBabamots: Hey, you&#39;re right! I can shorten the code lots now.\n\tBabamots: As for the game, if I weren&#39;t about to win, this would be kind of a bad position for me. I don&#39;t have a large ship at my home, so you can move you r3 to my home, preparing to gobble up all my home ships. My only defensive move would be to sacrifice a y2 to move my own r3 to my home and catastrophe away you r3. I would lose a ship of each size (y2, r1, r3) and a home star compared to your y1 (for the movement) and r3.\n\n\tDodoBirb: GG. Thanks for this teaching game. I learned a lot from just playing against someone better than me.\n\tBabamots: I tried to be instructive, and at least you got to see some strategy in action. Do you have anyone you&#39;ll be able to play in person? I&#39;m happy to have another game, though the time difference will make it take a while.\n\tDodoBirb: I do have some people I can play in person but they&#39;re usually pretty busy.\n\nHomeworlds Online (SDG# 34183)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.1, Ended: 2018.7.16\nParticipants: Trydnt (S), iddqd (N)\nWinner: Trydnt\n\n1) iddqd: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) iddqd: Build G1 Iddqd\n\n4) Trydnt: Build G1 Trydnt\n\n5) iddqd: Trade G1 Y1 Iddqd\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) iddqd: Build Y2 Iddqd\n\n8) Trydnt: Build Y2 Trydnt\n\n\nHomeworlds Online (SDG# 34234)\nStarted: 2018.7.3, Ended: 2019.3.12\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Build G1 Ts52\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) ts52: Discover G1 Ts52 B3 Gonzo\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n10) ts52: Trade G1 R1 Ts52\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) ts52: Build R2 Ts52\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 G2\n\n14) ts52: Move R2 Ts52 Gonzo\n\n15) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n16) ts52: Build G1 Ts52\n\n17) Draw5PlayAll: Build B1 Draw5playall\n\n18) ts52: Trade G1 Y1 Ts52\n\n19) Draw5PlayAll: Move B1 Draw5playall G2\n\n20) ts52: Build G1 Ts52\n\n21) Draw5PlayAll: Build B2 G2\n\n22) ts52: Move Y1 Ts52 Gonzo\n\n23) Draw5PlayAll: Build B2 G2\n\n24) ts52: Build R1 Gonzo\n\n25) Draw5PlayAll: Trade B2 Y2 G2\n\n26) ts52: Discover R1 Gonzo G2 Kermit\n\n27) Draw5PlayAll: Discover B1 Draw5playall Y2 Idea\n\n28) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Gonzo\nBuild R3 Ts52\n\n29) Draw5PlayAll: Build R3 G2\n\n30) ts52: Trade R3 B3 Ts52\n\n31) Draw5PlayAll: Trade R3 Y3 G2\n\n32) ts52: Build R3 Ts52\n\n33) Draw5PlayAll: Build R3 G2\n\n34) ts52: Trade R3 G3 Ts52\n\n35) Draw5PlayAll: Discover Y3 G2 R3 Steal\n\n36) ts52: Move R2 Gonzo Idea\n\n37) Draw5PlayAll: Move B1 Idea Steal\n\tDraw5PlayAll: I think my red star is endangered\n\n38) ts52: Move Y1 Gonzo Kermit\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 Steal\nBuild Y3 Draw5playall\nBuild Y3 G2\n\n40) ts52: Move R1 Kermit Steal\n\n41) Draw5PlayAll: Move Y3 Steal Kermit\n\n42) ts52: Move Y1 Kermit Gonzo\n\tDraw5PlayAll: This incident will be reported.\n\n43) Draw5PlayAll: Sacrifice R2 G2\nAttack R2S Kermit\nAttack R1S Steal\n\n44) ts52: Move B3 Ts52 Steal\n\n45) Draw5PlayAll: Sacrifice Y1 Steal\nMove B1 Steal Kermit\n\n46) ts52: Build Y1 Gonzo\n\n47) Draw5PlayAll: Build B2 Kermit\n\n48) ts52: Attack R1N Steal\n\n49) Draw5PlayAll: Build R2 Kermit\n\n50) ts52: Sacrifice G1 Ts52\nBuild B2 Steal\n\n51) Draw5PlayAll: Trade B2 G2 Kermit\n\n52) ts52: Discover Y1 Gonzo B2 Grover\n\n53) Draw5PlayAll: Move G2 Kermit Draw5playall\n\n54) ts52: Build G1 Ts52\n\n55) Draw5PlayAll: Sacrifice Y2 G2\nMove B1 G2 Steal\nMove B1 Kermit Steal\n\n56) ts52: Trade B2 Y2 Steal\n\n57) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild B2 Steal\nCatastrophe Steal Blue\nBuild B1 G2\n\tDraw5PlayAll: I failed\n\n58) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G2 Ts52\nBuild G3 Ts52\n\n59) Draw5PlayAll: Build B1 G2\n\n60) ts52: Discover G1 Ts52 B3 Cookie\n\n61) Draw5PlayAll: Sacrifice Y3 G2\nMove B1 G2 Gonzo\nMove B1 G2 Gonzo\nMove B2 G2 Gonzo\nCatastrophe Gonzo Blue\n\n62) ts52: Build R3 Ts52\n\n63) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n64) ts52: Trade G2 B2 Ts52\n\n65) Draw5PlayAll: Build G1 Draw5playall\n\n66) ts52: Build G2 Ts52\n\tDraw5PlayAll: Seems I can have either green or blue, but not both.\n\n67) Draw5PlayAll: Build G3 Draw5playall\n\n68) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Cookie\nBuild Y1 Grover\n\n69) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tBabamots: Hey guys, is this game for the tournament? If so, I can record it for you.\n\tts52: I don&#39;t think it is. No. Just Draw5 trying to size me up I think. :)\n\tDraw5PlayAll: 3/2/10 is not 2/2/7\n\tDraw5PlayAll: What did they do in Star Trek at heading 227 mark something?\n\n70) ts52: Trade G3 Y3 Cookie\n\tBabamots: So you mean the clock setting is wrong for the tournament (3/2/10 instead of 2/2/7). OK, thanks!\r\nHmm, I don&#39;t know of 227 having any significance in Star Trek, or anywhere else for that matter.\n\n71) Draw5PlayAll: Build Y1 Kermit\n\tDraw5PlayAll: No, this is not a tournament game. It started in very early July.\n\n72) ts52: Sacrifice G3 Ts52\nBuild G1 Cookie\nBuild G3 Cookie\nBuild G3 Ts52\n\n73) Draw5PlayAll: Move G1 Draw5playall G2\n\n74) ts52: Move G3 Cookie Grover\n\n75) Draw5PlayAll: Move B1 Draw5playall Kermit\n\n76) ts52: Move R3 Ts52 Cookie\n\n77) Draw5PlayAll: Sacrifice G1 G2\nBuild G1 Draw5playall\n\n78) ts52: Move R1 Steal Grover\n\n79) Draw5PlayAll: Build B1 Kermit\n\n80) ts52: Move B2 Ts52 Steal\n\n81) Draw5PlayAll: Move G3 Draw5playall Idea\n\n82) ts52: Sacrifice Y2 Steal\nMove G3 Grover Steal\nDiscover B2 Steal Y2 Bigbird\n\tDraw5PlayAll: I got an idea!\n\n83) Draw5PlayAll: Sacrifice R2 Kermit\nAttack R2 Idea\nPass\n\tts52: I don&#39;t think I like where your idea is going. ;)\n\n84) ts52: Sacrifice G3 Ts52\nBuild B2 Bigbird\nBuild B3 Bigbird\nBuild G3 Ts52\n\tDraw5PlayAll: Red teleportation, textbook example\n\n85) Draw5PlayAll: Sacrifice Y3 Kermit\nMove B1 Kermit Cookie\nMove B1 Cookie Bigbird\nCatastrophe Bigbird Blue\nDiscover R3 G2 Y3 Freedom\n\tDraw5PlayAll: We need to break the ice\n\n86) ts52: Move R3 Cookie Kermit\n\n87) Draw5PlayAll: Move R3 Freedom Grover\n\n88) ts52: Attack R2 Kermit\n\n89) Draw5PlayAll: Sacrifice Y1 Kermit\nDiscover B1 Kermit Y3 Esc\n\n90) ts52: Sacrifice G3 Ts52\nBuild G2 Steal\nBuild G3 Ts52\nBuild R2 Ts52\n\n91) Draw5PlayAll: Sacrifice R2 Idea\nAttack Y1 Grover\nAttack R1 Grover\n\n92) ts52: Move Y1 Grover Steal\n\n93) Draw5PlayAll: Sacrifice G3 Idea\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild Y2 Grover\n\n94) ts52: Build Y2 Steal\n\n95) Draw5PlayAll: Discover Y3 Draw5playall R2 Perhaps\n\n96) ts52: Trade G2 B2 Ts52\n\n97) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild B1 Esc\n\n98) ts52: Move B2 Ts52 Steal\n\n99) Draw5PlayAll: Move B1 Esc Perhaps\n\n100) ts52: Move Y2 Steal Kermit\n\n101) Draw5PlayAll: Build G1 Draw5playall\n\n102) ts52: Move R2 Ts52 Esc\n\n103) Draw5PlayAll: Discover B1 Esc G2 Donotenter\n\n104) ts52: Move R2 Kermit Cookie\n\n105) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 Perhaps\nBuild B3 Donotenter\n\n106) ts52: Sacrifice Y2 Kermit\nMove R2 Cookie Grover\nMove R2 Esc Grover\nCatastrophe Grover R\n\n107) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Perhaps\nBuild Y3 Draw5playall\nBuild G3 Draw5playall\n\n108) ts52: Sacrifice G3 Steal\nBuild G3 Steal\nBuild R1 Kermit\nBuild R2 Ts52\n\n109) Draw5PlayAll: Trade Y2 R2 Grover\n\n110) ts52: Trade G3 R3 Steal\n\n111) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y2 Grover\n\n112) ts52: Move R3 Steal Grover\n\n113) Draw5PlayAll: Sacrifice Y2 Grover\nDiscover R2 Grover G3 Fort\nMove B3 Donotenter Steal\n\n114) ts52: Sacrifice Y1 Steal\nMove B2 Steal Donotenter\n\n115) Draw5PlayAll: Attack G2 Steal\n\n116) ts52: Attack Y1N Grover\n\n117) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove B3 Steal Donotenter\n\n118) ts52: Build G1 Ts52\n\n119) Draw5PlayAll: Sacrifice G2 Steal\nBuild G2 Draw5playall\nBuild R3 Fort\n\n120) ts52: Move R2 Ts52 Cookie\n\n121) Draw5PlayAll: Move Y2 Perhaps Fort\n\n122) ts52: Move G1 Cookie Grover\n\n123) Draw5PlayAll: Move B1 Perhaps Fort\n\n124) ts52: Move G1 Cookie Grover\n\n125) Draw5PlayAll: Move G3 Draw5playall Perhaps\n\n126) ts52: Build Y1 Grover\n\n127) Draw5PlayAll: Move Y3 Perhaps Fort\n\n128) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Grover\nBuild Y2 Cookie\n\n129) Draw5PlayAll: Move Y2 Fort Grover\nCatastrophe Grover Yellow\n\n130) ts52: Move Y2 Cookie Grover\n\n131) Draw5PlayAll: Build Y1 Fort\n\n132) ts52: S G3 Ts52\nB G3 Ts52\nB Y1 Grover\nB Y1 Grover\n\n133) Draw5PlayAll: Move Y1 Fort Grover\nCatastrophe Grover Yellow\n\n134) ts52: Sacrifice G3 Ts52\nBuild Y1 Cookie\nBuild Y1 Cookie\nBuild G3 Ts52\n\n135) Draw5PlayAll: Build Y1 Fort\n\tDraw5PlayAll: Time Squared\n\tDraw5PlayAll: Wait, no. That was Cause and Effect: ST:TNG S5E18.\r\n\r\n&quot;Captain&#39;s log, Stardate 45652.1. The Enterprise has entered an area of space known as the Typhon Expanse. We are the first Starfleet vessel to chart this unexplored region.&quot;\n\n136) ts52: Move Y1 Cookie Grover\n\n137) Draw5PlayAll: Move Y1 Fort Perhaps\n\n138) ts52: Build Y2 Grover\n\n139) Draw5PlayAll: Build Y2 Perhaps\n\n140) ts52: Move Y1 Cookie Kermit\n\tDraw5PlayAll: One can never be two careful. Here I had the threedom four some maneuvers without letting you get both Yellows. I did not want to allow you to blow my yellows at Draw5PlayAll.\n\n141) Draw5PlayAll: Move R3 Fort Donotenter\n\tts52: I definitely tend to play over cautiously.\n\n142) ts52: Move Y1 Grover Draw5playall\n\n143) Draw5PlayAll: Sacrifice Y1 Perhaps\nMove B3 Donotenter Draw5playall\n\n144) ts52: Build Y1 Kermit\n\tDraw5PlayAll: Progress, at last!!\n\n145) Draw5PlayAll: Move Y3 Draw5playall Donotenter\n\tts52: Indeed!\n\n146) ts52: Move Y1 Draw5playall Grover\n\n147) Draw5PlayAll: Attack B2 Donotenter\n\n148) ts52: Move R2 Cookie Grover\n\n149) Draw5PlayAll: Move B2 Donotenter Fort\n\n150) ts52: Move G1 Ts52 Fort\n\tDraw5PlayAll: FINALLY!!!\n\n151) Draw5PlayAll: Sacrifice Y3 Fort\nMove B2 Fort Grover\nMove B1 Fort Grover\nDiscover B1 Donotenter Y3 Backatcha\n\tts52: You&#39;ve been working toward that for a long time. :)\n\n152) ts52: Sacrifice Y2 Grover\nMove R3 Grover Fort\nMove R2 Grover Backatcha\n\n153) Draw5PlayAll: Sacrifice Y2 Perhaps\nMove R2 Fort Donotenter\nMove R3 Donotenter Backatcha\n\n154) ts52: Attack B1N Backatcha\n\n155) Draw5PlayAll: Sacrifice R2 Donotenter\nAttack B1 Backatcha\nAttack R2 Backatcha\n\n156) ts52: Build R2 Fort\n\n157) Draw5PlayAll: Build Y2 Donotenter\n\n158) ts52: Build Y2 Grover\n\tDraw5PlayAll: Change is a powerful force\n\n159) Draw5PlayAll: Sacrifice R2 Backatcha\nAttack Y2 Grover\nAttack G1 Grover\n\n160) ts52: Build R2 Ts52\n\n161) Draw5PlayAll: Move R3 Backatcha Grover\n\n162) ts52: Move Y1 Grover Fort\n\n163) Draw5PlayAll: Attack G1 Grover\n\n164) ts52: Move R2 Ts52 Backatcha\n\n165) Draw5PlayAll: Sacrifice Y2 Donotenter\nMove G1 Grover Fort\nMove G1 Grover Fort\nCatastrophe Fort Green\n\n166) ts52: Attack B1N Backatcha\n\n167) Draw5PlayAll: Discover B2 Grover Y1 Strange\n\n168) ts52: Build G1 Ts52\n\n169) Draw5PlayAll: Build G1 Perhaps\n\n170) ts52: Sacrifice G3 Ts52\nBuild R2 Backatcha\nBuild R3 Ts52\nBuild Y2 Cookie\n\n171) Draw5PlayAll: Sacrifice G1 Perhaps\nBuild G1 Draw5playall\n\n172) ts52: Move R3 Kermit Strange\n\n173) Draw5PlayAll: Move B2 Strange Donotenter\n\n174) ts52: Move R2 Backatcha Kermit\n\n175) Draw5PlayAll: Move Y2 Grover Draw5playall\n\n176) ts52: Move G1 Ts52 Cookie\n\n177) Draw5PlayAll: Move G1 Draw5playall Grover\n\n178) ts52: M G1 Cookie Ts52\n\tDraw5PlayAll: I had an advantage, but now the game is far from clear.\n\n179) Draw5PlayAll: Build G1 Perhaps\n\n180) ts52: B G3 Ts52\n\n181) Draw5PlayAll: Build G3 Draw5playall\n\n182) ts52: Move R3 Ts52 Backatcha\n\n183) Draw5PlayAll: Move G3 Draw5playall Kermit\n\n184) ts52: Move R2 Kermit Draw5playall\n\n185) Draw5PlayAll: Attack R2 Draw5playall\n\n186) ts52: Sacrifice Y2 Cookie\nMove R3 Backatcha Kermit\nMove R3 Kermit Draw5playall\n\n187) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack R3S Draw5playall\nAttack R1 Kermit\n\n188) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Cookie\nBuild R2 Strange\n\n189) Draw5PlayAll: Attack Y1 Kermit\n\n190) ts52: Move Y1 Kermit Backatcha\n\n191) Draw5PlayAll: Move R3 Draw5playall Kermit\n\n192) ts52: Move R3 Strange Backatcha\n\n193) Draw5PlayAll: Move G3 Kermit Strange\n\n194) ts52: Move R2 Strange Cookie\n\n195) Draw5PlayAll: Sacrifice G3 Strange\nPass\nBuild Y1 Kermit\nPass\n\n196) ts52: Sacrifice Y2 Cookie\nMove R2 Cookie Kermit\nMove R2 Backatcha Kermit\nCatastrophe Kermit Red\n\n197) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Kermit Backatcha\nMove Y1 Kermit Backatcha\nCatastrophe Backatcha Yellow\n\n198) ts52: Move G1 Ts52 Cookie\n\tDraw5PlayAll: This needs to have a name. And no, I refuse to call it the &quot;D5PA sacrifice&quot;.\r\n\r\nHow about the &quot;(Un)Wasteful Sacrifice&quot;? Parentheses are part of the name.\n\tDraw5PlayAll: DEFINITION: The &quot;Un-Wasteful Sacrifice&quot; small be defined as follows: A player sacrifices a ship intending to discover it a second a star next turn, particularly if not all actions from the sacrifice are used.&quot;\n\n199) Draw5PlayAll: Sacrifice G3 Perhaps\nBuild G2 Draw5playall\nBuild G3 Perhaps\nBuild G3 Grover\n\tts52: Curious why you didn&#39;t rebuild the large green? Trying to tempt me into building it at my homeworld?\n\tDraw5PlayAll: Nah, I wanted a path into your homeworld and all the larges were used.\n\n200) ts52: T G1 B1 Cookie\n\tDraw5PlayAll: I think you are lost.\n\n201) Draw5PlayAll: Sacrifice G3 Perhaps\nBuild G1 Draw5playall\nBuild G3 Perhaps\nBuild Y1 Donotenter\n\tts52: I fear you&#39;re probably right\n\n202) ts52: B R1 Ts52\n\n203) Draw5PlayAll: Move Y1 Donotenter Draw5playall\n\n204) ts52: Build R2 Ts52\n\n205) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover G3 Grover R3 Denial1\n\n206) ts52: Move R1 Ts52 Cookie\n\n207) Draw5PlayAll: Build Y1 Donotenter\n\n208) ts52: Trade R2 Y2 Ts52\n\n209) Draw5PlayAll: Sacrifice Y3 Donotenter\nMove G3 Perhaps Denial1\nMove G3 Denial1 Ts52\nMove G3 Denial1 Ts52\n\tDraw5PlayAll: I must deny you the chance to ever obtain an R3!\n\n210) ts52: Attack G3N Ts52\n\tts52: having a near monopoly on green is definitely helping you\n\n211) Draw5PlayAll: Sacrifice R3 Grover\nAttack G3 Ts52\nAttack G3 Ts52\nAttack R1 Ts52\n\n212) ts52: Sacrifice R1 Cookie\nAttack R1N Ts52\n\n213) Draw5PlayAll: Sacrifice B2 Perhaps\nTrade G3 Y3 Ts52\nTrade G3 R3 Ts52\n\tDraw5PlayAll: This could backfire...\n\n214) ts52: Trade Y3 G3 Cookie\n\tts52: I think you&#39;ve got this one.\n\n215) Draw5PlayAll: Sacrifice G3 Ts52\nBuild Y1 Ts52\nBuild R1 Ts52\nBuild R2 Ts52\nPass\nPass\nCatastrophe Ts52 Yellow\nCatastrophe Ts52 Red\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\tDraw5PlayAll: This is why Homeworlds cannot have a 50 (or even 100 :P) move rule.\n\n\tDraw5PlayAll: Destroy all evidence!!\n\tDraw5PlayAll: 109 moves... where are the record books again? I think the cleaning robot misplaced them.\n\tts52: No idea. Good game, well played!\n\nHomeworlds Online (SDG# 34232)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.7.4, Ended: 2018.7.16\nParticipants: iddqd (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) iddqd: Homeworld B3 G2 Y3\n\twil: Welcome to sdg and homeworlds!  First timer?  Have pyramid arcade?\n\tiddqd: Thanks. A friend had showed it to me a while back thought I&#39;d check it out. Pyramid arcade re-sparked my interest but I&#39;ve played a bit over the years face to face. Really only against the same player though.\n\n3) wil: B G1 Wil\n\twil: Cool, thx for the game....face to face is awesome....there are just so few of us.\n\n4) iddqd: Build Y1 Iddqd\n\n5) wil: T G1 Y1 Wil\n\n6) iddqd: Trade Y1 G1 Iddqd\n\n7) wil: B G1 Wil\n\n8) iddqd: Discover G1 Iddqd B1 Outpost\n\n9) wil: T G1 B1 Wil\n\n10) iddqd: Build G1 Outpost\n\n11) wil: B B1 Wil\n\n12) iddqd: Trade G1 Y1 Outpost\n\n13) wil: B Y2 Wil\n\n14) iddqd: Build Y2 Iddqd\n\n15) wil: D Y1 Wil G2 G2\n\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\nHomeworlds Online (SDG# 34181)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.7, Ended: 2018.7.10\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34200)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.7, Ended: 2018.7.10\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\twil: Working in transforms temple and will be in woods for a couple weeks...a game will just time out.\n\nHomeworlds Online (SDG# 34291)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.7, Ended: 2018.7.19\nParticipants: Babamots (S), DodoBirb (N)\nWinner: Babamots\n\n1) DodoBirb: Homeworld R1 B2 G3\n\n2) Babamots: Homeworld G3 Y1 B3\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) Babamots: Build B1 Babamots\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) Babamots: Trade B1 Y1 Babamots\n\n7) DodoBirb: Build Y2 Dodobirb\n\n8) Babamots: Build Y2 Babamots\n\n9) DodoBirb: Discover Y1 Dodobirb G3 Green\n\n10) Babamots: Discover Y1 Babamots G2 Bajor\n\n11) DodoBirb: Build G1 Dodobirb\n\n12) Babamots: Build B1 Babamots\n\n13) DodoBirb: Trade G1 B1 Dodobirb\n\n14) Babamots: Move B1 Babamots Bajor\n\n15) DodoBirb: Move B1 Dodobirb Green\n\n16) Babamots: Build Y2 Bajor\n\n17) DodoBirb: Build Y3 Green\n\n18) Babamots: Trade Y1 R1 Bajor\n\n19) DodoBirb: Trade Y1 R1 Green\n\n20) Babamots: Build B1 Bajor\n\n21) DodoBirb: Move Y3 Green Bajor\n\n22) Babamots: Trade B1 Y1 Bajor\n\n23) DodoBirb: Move Y3 Bajor Green\n\n24) Babamots: Build R2 Bajor\n\n25) DodoBirb: Build R2 Green\n\n26) Babamots: Build B1 Bajor\n\n27) DodoBirb: Build B2 Green\n\n28) Babamots: Discover B1 Bajor G1 Cardassia\n\tBabamots: Just so you know, I use a point system for a rough idea of the relative values of ships. I give 1 point for smalls, 3 points for mediums, and 7 for larges. Of course some colors or positions can be more valuable than others, but I often use this if I expect that lots of ships are about to be destroyed or attacked and I want to decide who comes out ahead in material.\n\n29) DodoBirb: Discover B1 Green G1 Littlegreen\n\n30) Babamots: Build B2 Bajor\n\n31) DodoBirb: Build B3 Littlegreen\n\tDraw5PlayAll: Larges should be 9 for the first two and 6 for each thereafter. Having 2 larges is much stronger than 1 and the score should reflect that. Four versus five and so on depends more on the rest of the situation.\r\n\r\nJust my opinion.\n\n32) Babamots: Build B3 Cardassia\n\n33) DodoBirb: Build Y1 Green\n\n34) Babamots: Sacrifice Y2 Babamots\nMove Y2 Bajor Green\nMove Y1 Bajor Green\nCatastrophe Green Y\n\n35) DodoBirb: Build Y1 Dodobirb\n\n36) Babamots: Trade B2 Y2 Bajor\n\n37) DodoBirb: Move Y1 Dodobirb Green\n\n38) Babamots: Build B2 Bajor\n\n39) DodoBirb: Sacrifice G3 Dodobirb\nBuild Y1 Green\nBuild Y2 Dodobirb\nBuild Y3 Dodobirb\n\n40) Babamots: Build Y3 Bajor\n\n41) DodoBirb: Sacrifice Y2 Dodobirb\nMove Y2 Dodobirb Green\nMove Y2 Green Littlegreen\n\n42) Babamots: Sacrifice B1 Bajor\nTrade B3 Y3 Cardassia\n\n43) DodoBirb: Build Y2 Littlegreen\n\n44) Babamots: Trade Y3 G3 Bajor\n\n45) DodoBirb: Trade Y2 G2 Littlegreen\n\tBabamots: I should have mentioned your danger to you. I can sacrifice a yellow to catastrophe all your home ships. You should undo and try a different move.\n\tBabamots: Here&#39;s an SDG tip: clicking the &quot;Call admin&quot; button sends participants an email (I wanted to make sure you checked the game without actually using my turn).\r\n\r\nI don&#39;t think Aaron has actually responded to the button in years, but it will pause the timer and notify players.\n\n46) Babamots: Discover B1 Cardassia Y3 Iconia\n\tDodoBirb: Don&#39;t worry about forgetting to tell me I&#39;m about to lose. I really should have noticed the y2 in Bajor.\n\n47) DodoBirb: Move G2 Littlegreen Iconia\n\tBabamots: On the whole, it may have been healthier for your education to lose unexpectedly. I became way more careful after the first time I got blindsided by a home-emptying catastrophe.\r\n\r\nOn the other hand, this will give you a chance to see some more late game in action.\n\n48) Babamots: Sacrifice G3 Bajor\nBuild B1 Bajor\nBuild Y2 Bajor\nBuild B3 Iconia\n\n49) DodoBirb: Move G2 Iconia Dodobirb\n\n50) Babamots: Move R2 Bajor Iconia\n\tBabamots: Good block.\n\n51) DodoBirb: Trade B3 R3 Littlegreen\n\n52) Babamots: Build R2 Bajor\n\n53) DodoBirb: Build B3 Littlegreen\n\n54) Babamots: Sacrifice Y3 Cardassia\nMove B1 Bajor Iconia\nMove B1 Iconia Dodobirb\nMove B3 Iconia Dodobirb\n\n55) DodoBirb: Build Y3 Littlegreen\n\n56) Babamots: Sacrifice R2 Bajor\nAttack G2 Dodobirb\nAttack Y3 Dodobirb\n\n\tBabamots: If an enemy ship comes into your home system, you almost always need to attack it immediately. Otherwise, they get a chance to attack your ships, or sometimes they&#39;ll start building more ships in your home to make catastrophes.\n\tDodoBirb: Wow I only thought about the catastrophe and thought it was inevitable so I ignored it. oops\n\tBabamots: Good game! I think you understand lots of things in the game well. With practice, you&#39;ll have a better idea of things to watch out for and take advantage of.\r\n\r\nIf you&#39;d like to practice faster, you could try having several games running at once. I&#39;m happy to play you again, and you could challenge a few other people. You might like to play with MagicJohn. He&#39;s a fairly new player who moves several times a day. You can also issue a challenge to no one in particular (with a note about your skill level, if you&#39;re worried about getting a ruthless opponent).\n\tBabamots: Although, come to think of it, I haven&#39;t met anyone on this site that I&#39;d describe as ruthless. I would still add a note to any open challenges just to make sure any accepters are ready for a &quot;beginner game.&quot;\n\tBabamots: You&#39;re right, the blue catastrophe was inevitable. I was ready to follow it up with a red catastrophe to finish you off (notice that Bajor would become connected to your home after the blue catastrophe).\n\nHomeworlds Online (SDG# 34292)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.7, Ended: 2018.8.3\nParticipants: deanthebean (S), Aristos (N)\nWinner: deanthebean\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) deanthebean: Homeworld B2 G3 Y3\n\tdeanthebean: Hello. Thanks for accepting the challenge. Have a good game!\n\n3) Aristos: Build Y1 Aristos\n\n4) deanthebean: Build Y1 Deanthebean\n\tAristos: Um... your opening is supposed to be illegal. In a 2-player game, you can&#146;t pick the same large-medium-small star pattern. It puts the homeworlds only one jump apart. The official rules say this is illegal. \n\tAristos: We can keep playing, but I&#146;m going to flag an admin to take a look to maybe fix the bug for future games. \n\tDraw5PlayAll: Where is this illegal?\n\tAristos: Admin: in a 2-player game, the home world stars aren&#146;t supposed to be the same sizes. If player 1 picks large-medium, then player 2 has to pick large-small or small-medium. At least, that was my understanding of the rules. The two systems have to be 2 jumps away. That rule is relaxed in multi-player games. Am I wrong?\n\n5) Aristos: Discover Y1 Aristos Y1 Spark\n\tdeanthebean: I had a look at the rules pdf. I couldn&#39;t find a rule against identical stars\n\n6) deanthebean: Trade Y1 R1 Deanthebean\n\tAristos: I didn&#146;t know about any PDF... just what I&#146;d been taught. I went to look up the rules just now... seems I was wrong... matching I&#146;d just fine. \r\n\r\nAdmin:Sorry for the false alarm. \n\n7) Aristos: Discover Y1 Spark G2 Leaf\n\n8) deanthebean: Build R1 Deanthebean\n\n9) Aristos: Build Y1 Aristos\n\n10) deanthebean: Build R1 Deanthebean\n\n11) Aristos: Trade Y3 R3 Aristos\n\n12) deanthebean: Discover R1 Deanthebean G1 Branch\n\n13) Aristos: Build R2 Aristos\n\n14) deanthebean: Build R2 Branch\n\n15) Aristos: Trade R3 G3 Aristos\n\n16) deanthebean: Trade R1 B1 Deanthebean\n\n17) Aristos: Build G1 Aristos\n\n18) deanthebean: Trade R1 G1 Deanthebean\n\n19) Aristos: Discover G1 Aristos B1 Plum\n\n20) deanthebean: Discover G1 Deanthebean Y1 Yellow\n\n21) Aristos: Build Y2 Leaf\n\n22) deanthebean: Build G2 Yellow\n\n23) Aristos: Trade G3 Y3 Aristos\n\n24) deanthebean: Build Y2 Deanthebean\n\n25) Aristos: Build Y2 Leaf\n\n26) deanthebean: Move Y2 Deanthebean Branch\n\n27) Aristos: Move Y2 Leaf Plum\n\n28) deanthebean: Build Y3 Branch\n\n29) Aristos: Move Y2 Leaf Branch\n\n30) deanthebean: Move Y2 Branch Aristos\n\n\tAristos: Well played.\n\tdeanthebean: Thanks! gg. \n\tDraw5PlayAll: Not convinced this is over.\n\nHomeworlds Online (SDG# 34175)\nVariants: &quot;No undo, Hard time&quot;\nStarted: 2018.7.10, Ended: 2018.8.15\nParticipants: Thorolf (S), MagicJohn (W), Draw5PlayAll (N), Twinsen (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tTwinsen: At the end :D. Hello there. \n\tTwinsen: At the end :D. Hello there. \n\n2) Twinsen: Homeworld R2 B1 G3\n\n3) MagicJohn: Homeworld B2 R1 G3\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Twinsen: Build G1 Twinsen\n\tDraw5PlayAll: Uuuugggghhhh\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Twinsen: Build G1 Twinsen\n\n9) MagicJohn: Build G1 Magicjohn\n\n10) Draw5PlayAll: Build Y1 Draw5playall\n\n11) Twinsen: Trade G1 Y1 Twinsen\n\n12) MagicJohn: Trade G1 Y1 Magicjohn\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G2 There\n\n14) Twinsen: Discover G1 Twinsen B3 Here\n\n15) MagicJohn: Discover G1 Magicjohn Y3 Everywhere\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) Twinsen: Build G1 Here\n\tDraw5PlayAll: You two are so unoriginal\n\n18) MagicJohn: Build G1 Everywhere\n\n19) Draw5PlayAll: Build G2 Draw5playall\n\tTwinsen: XD\n\tMagicJohn: blame it on the beatles...\n\n20) Twinsen: Build G2 Twinsen\n\n21) MagicJohn: Build G2 Magicjohn\n\n22) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n23) Twinsen: Trade G2 Y2 Twinsen\n\n24) MagicJohn: Discover G2 Magicjohn B3 Ringo\n\n25) Draw5PlayAll: Build G2 Draw5playall\n\n26) Twinsen: Sacrifice Y2 Twinsen\nMove G1 Here There\nMove G1 There Draw5playall\nCatastrophe Draw5playall Green\n\n27) MagicJohn: Build G1 Ringo\n\n28) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n29) Twinsen: Build G2 Here\n\n30) MagicJohn:\nTrade G2 Y2 Ringo\n\n31) Draw5PlayAll: Build G2 Draw5playall\n\tMagicJohn: Trade g2 y2 Ringo\n\n32) Twinsen: Trade G1 Y1 Here\n\n33) MagicJohn: Trade G1 B1 Ringo\n\n34) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n35) Twinsen: Build G1 Here\n\n36) MagicJohn: Discover B1 Ringo Y2 George\n\n37) Draw5PlayAll: Build R1 Draw5playall\n\n38) Twinsen: Trade G1 R1 Here\n\n39) MagicJohn: Trade B1 R1 George\n\n40) Draw5PlayAll: Move R2 Draw5playall There\n\n41) Twinsen: Build R2 Here\n\n42) MagicJohn: Sacrifice G1 Everywhere\nBuild R2 George\n\n43) Draw5PlayAll: Build G1 Draw5playall\n\n44) Twinsen: Discover R2 Here Y2 Dingdong\n\n\tDraw5PlayAll: :(\n\nHomeworlds Online (SDG# 34284)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.10, Ended: 2018.8.29\nParticipants: Babamots (S), MagicJohn (N)\nWinner: Babamots\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\tMagicJohn: I&#39;m not all that new to the game but my learning curve needs a kick-start. Think I may need some better tactics and a general game-plan going in.\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\tBabamots: I recently switched back to preferring a red home star (compared to yellow). It seems like, whenever I have yellow at home, there&#39;s a point in the game where I can&#39;t build the yellow I want because it would set up a catastrophe.\n\n4) Babamots: Build G1 Babamots\n\tMagicJohn: How much work do you put in to avoid giving up the first #2 ship during early building?\n\n5) MagicJohn: Discover G1 Magicjohn B3 Shelob\n\tBabamots: Depends a lot on whether I&#39;ll get the second one right after and whether my opponent will get the next one after that. I usually work pretty hard to keep my opponent from getting larges though.\n\tBabamots: On this occasion, I think you should not open up the g2 yet. Spread out and diversify.\n\tMagicJohn: So, if I move my G1 and discover a B3 I can switch colors on the next turn...Is the line reasonable? Seems a bit like developing one&#39;s pieces in chess. At this point in the game and based on the colors and sizes of ships and stars, are there certain strategies that I should start to consider or is it still mostly tactical? \n\tBabamots: If you discover now, you should probably plan to build in the new system before trading there. Otherwise you&#39;ll have no green for more construction. I am likely to trade away my g1, so building green in you new system will be safe (not give me a chance to get medium).\n\tBabamots: So to answer your question directly, yes that line is reasonable, but it leaves a red or yellow ship in your new system with no way to build. You&#39;ll need to send another green there if you want to make more.\n\tMagicJohn: Discover g1 magicjohn b3 Shelob \n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) MagicJohn: Build G1 Shelob\n\n8) Babamots: Build Y1 Babamots\n\tBabamots: Before giving advice, I should have looked more closely at what my actual response to your move would be. You didn&#39;t get a yellow ship while there were small ones available, and I have the chance to freeze you out. To get yellow, you&#39;ll have to wait until you have a medium ship you can trade for a y2.\n\n9) MagicJohn: Trade G1 B1 Shelob\n\tMagicJohn: You could just loan me one.... work for uber peraps?\n\n10) Babamots: Pass\n\tMagicJohn: So, keeping colors diversified is import so one is harder to shut out. By trading here my intent is to gain a blue &quot;foothold&quot; and if you build green I am closer to reaching the #2 ships (green group in this case) that I need to build and exchange for yellow.?.?\n\tBabamots: The trouble with what you describe is that Shelob only has room for one more blue. You&#39;ll need to build green at home and trade that for blue if you want to work toward mediums through blue. I&#39;m pretty sure I will have all the y2 before you get a b2.\r\n\r\nI&#39;ve been looking for another way for you to get yellow. Here&#39;s some reasoning about the closest thing I&#39;ve found:\r\n\r\n1) build g1 MagicJohn\r\n2) trade g3 y3 MagicJohn\r\n3) build y2 MagicJohn\r\n\r\nThe danger here is that you would then have three yellow at home. If I move\r\n\r\n1) ... build y2 Babamots\r\n2) ... discover y1 Babamots g2 Iconia\r\n3) ... sacrifice y2 Babamots move y1 Iconia MagicJohn (2 moves) catastrophe MagicJohn y\r\n\r\nthen I would win. So you need to avoid overpopulation by moving your y3 to a new system after your move 2:\r\n\r\n2B) discover y3 MagicJohn g3 Grishnak\r\n3B) build y1 Grishnak\r\n\r\nSince you only have a small at home now, I might try to do a red-based invasion, for example\r\n\r\n2B) ... trade y1 r1 Babamots\r\n3B) ... sacrifice y2 Babamots move y1 Iconia MagicJohn (2 moves) \r\n4B) ...sacrifice r1 Babamots attack g1 MagicJohn\r\n\r\nand I win. So you would need to move your y3 back home before that:\r\n\r\n4B) move y3 Grishnak MagicJohn\r\n\r\nSo, now the population of your home is your y3, my g1 and y1. There are three yellows, so you need to trade quick, and preferably capture the pesky invaders. The most likely thing seems to be\r\n\r\n5B) trade y3 r3 MagicJohn\r\n6B) attack g1 MagicJohn (or y1 if I moved the g1 on my move 5)\r\n\r\nIn the end, you still have a y1 in Grishnak and can build more yellow when it suits you,\r\n\r\nAll of that analysis is just to make sure you can get a yellow without losing immediately. Since my most aggressive moves can&#39;t kill you, I will probably do something a little different, starting on move 2 or 3.\r\n\r\nSome day, I want to make an online Homeworlds move explorer. Something that would let me play out a bunch of moves for experimentation and share the results with a link. All this text is hard to work with.\n\tBabamots: Sigh. I forgot that it was my turn. So really, none of that analysis holds up. The plan I just suggested puts you within one move of death a couple of times, so you would actually just lose.\r\n\r\nWell, I know how to fix that.\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) Babamots: Build Y2 Babamots\n\n13) MagicJohn: Discover G3 Magicjohn Y3 Gandalf\n\n14) Babamots: Discover Y1 Babamots B2 Bolius\n\tBabamots: It was late when I wrote that long advice. There are more mistakes in there. Don&#39;t believe it too much :-P\n\n15) MagicJohn: Trade G1 R1 Magicjohn\n\n16) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolius\nBuild Y2 Bolius\nBuild Y3 Babamots\n\n17) MagicJohn: Build G1 Gandalf\n\tBabamots: I think the best thing for you right now is to build more ships. If you build in Gandalf, you can move the g3 back home while keeping the y3 piece reserved for yourself. If you&#39;re able to get a yellow pieces later, you can sacrifice the green in Gandalf to make a ship out of the y3 marker.\n\tBabamots: My current plan is to hog the yellows as tightly as I can to keep you from moving around much.\n\tBabamots: Sorry I haven&#39;t done better at teaching this game. If I had charged you for the lesson, I would offer a refund.\n\n18) Babamots: Trade Y3 G3 Babamots\n\n19) MagicJohn: Move G3 Gandalf Magicjohn\n\n20) Babamots: Build Y3 Babamots\n\tMagicJohn: I do seem to be chasing my tail here. I have,however discovered how quickly a game can go sideways. Which move put me so blatantly on the defensive or was it a cumulative thing exacerbated by moving second. (yes I know you passed a turn already....)Perhaps my original setup paired badly with yours? \n\tMagicJohn: I would have liked to trade green for yellow, but, alas, no blue technology in that sector.\n\tMagicJohn: I suspect you are now going to sac green and add yellow and two greens?\n\tBabamots: The initial setup (homeworld-ship pairs) isn&#39;t the problem. The trouble started on your third move when you discovered Shelob. Games are easier to study in &quot;archive&quot; view:\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=34284&amp;idx=4\r\n\r\nAfter that, I trade for a y1. You then had two choices: 1) get locked out of yellow (since I was about the build the last y1) or 2) trade g1 for y1 in Shelob (which is a unattractive since it leaves you with no green in Shelob and you moved there in order to build and trade).\r\n\r\nSo with hindsight, on your third move, I think you should have traded g1 for y1. You could then have proceed to build more more green at home and used those to set up new systems for building.\n\tBabamots: If I sac my green now, I won&#39;t be able to build any green (you must still have a green ship in order to build green). I&#39;m just going to build a y3 normally.\r\n\r\nThe problem this presents for you is that, if you trade g3 for y3 at home, I can move a y2 to a large system (say, Shelob). Then, if you don&#39;t trade or move your y3, I can sacrifice my y3 for a yellow catastrophe in your home (destroying your only large ship and one of your stars).\r\n\r\nAll that to say, it&#39;s not safe to trade your g3 for y3 now (in my long analysis before, I thought you could make it, but it&#39;s not turning out that way).\n\n21) MagicJohn: Build G1 Shelob\n\tBabamots: Your advantage right now is that you have greens that are spread out. If we both start building green,\r\n\r\nyou get g1 (I suggest in Shelob)\r\nI get g2\r\nyou get g2 (I suggest in MagiJohn)\r\nI get g2 (assuming I don&#39;t come up with a better idea)\r\nyou sacrifice g3 and build g2 (Shelob), g3 (MagicJohn), g3 (Gandalf)\r\n\r\nAt this point, you would have a pretty good grip on greens (I have 3 green ships, you have 12). Your highest concentration is three greens in Shelob (g1,g1,g2) which I could catastrophe by sacrificing a y2 to move in a g2 (a fine trade for you). You would also have a g3 in Gandalf that could discover a blue system and change to y3.\r\n\r\nI may try to do something to thwart your plan instead of building that second g2, but building green at least brings you closer to exploiting your advantage.\n\tBabamots: I can&#39;t sacrifice my g3 to build lots of green because they&#39;d all be in the same system and cause a catastrophe. That&#39;s why your spread-out greens are better.\n\n22) Babamots: Build G2 Babamots\n\tBabamots: I&#39;ve just been talking to a new player, DodoBirb. I think he would benefit from practicing with some more people and I suggested you. I hope that&#39;s ok.\n\n23) MagicJohn: Build G2 Magicjohn\n\n24) Babamots: Discover Y2 Bolius G3 Risa\n\tBabamots: I keep messing up when typing in long suggestions. I included a fourth g2 construction back in that plan, but the principle is still good. Grab all the green.\n\n25) MagicJohn: Build G2 Gandalf\n\n26) Babamots: Build Y3 Risa\n\n27) MagicJohn: Build R1 Magicjohn\n\tBabamots: I need to get a red ship soon. Otherwise, you can start invading my systems and I&#39;ll just have to run.\r\n\r\nTo get red, I will have to either trade a yellow (giving you an opportunity to trade for a yellow ship at last) or else trade a green (in which case I lose my factory).\r\n\r\nIf you don&#39;t remember, a &quot;factory&quot; is a g3 with another green ship while there are no g1 or g2 in the bank. Sacrificing the g3 lets you rebuild g3 and take two other build actions in one turn.\n\n28) Babamots: Trade Y2 R2 Bolius\n\n29) MagicJohn: Sacrifice B1 Shelob\nTrade G2 Y2 Gandalf\n\n30) Babamots: Sacrifice G2 Babamots\nBuild G2 Babamots\nBuild R2 Bolius\n\tMagicJohn: If I trade for y in magicjohn you can create a disaster next move but it would cost you 3 ships. how do you judge the point at which that is a good exchange?\n\tBabamots: Hmm, I hadn&#39;t actually noticed that. That catastrophe would make things very scary for you since our homes would be connected. In fact, I think I would win a few turns later: I sacrifice y2 to move two larges into your home and then sacrifice r2 to attack your large and the one large of mine that you presumably attacked. But that is late-night calculating.\r\n\r\nI think you still can&#39;t trade for a yellow. Sorry :-(.\r\n\r\nI&#39;ll look for something better for you in the morning.\n\tBabamots: I think you should\r\n\r\nsacrifice b1 Shelob\r\ntrade g2 y2 Gandalf\r\n\r\nI could cause a catastrophe in Gandalf (at a high price to me), but I&#39;m quite sure that wouldn&#39;t be worth it.\r\n\r\nAfter that, I think you should work on moving your new yellow ship somewhere safe so you can build Gandalf&#39;s marker into a ship.\n\tBabamots: I think your next best options are 1) factory-building r2 and b1 or 2) discovering a y2 system with a green in Gandalf. I don&#39;t think either of these is nearly as good as safely getting a y2 though.\n\tMagicJohn: I inputted the following orders &quot;sacrifice b1 Shelob trade g2 y2 Gandalf&quot; and received a message that I have one unused action... What&#39;s up with that?\n\tBabamots: You need to put a line break between the sacrifice and the action taken with the sacrifice, exactly how it looks in my move suggestion.\r\n\r\nIt&#39;s weird, I know.\n\n31) MagicJohn: Build G2 Gandalf\n\tMagicJohn: Thnx\n\n32) Babamots: Move R2 Bolius Shelob Risa\n\n33) MagicJohn: Move R1 Magicjohn Gandalf\n\n34) Babamots: Attack G1 Shelob\n\n35) MagicJohn: Sacrifice G3 Magicjohn\nBuild R2 Gandalf\nBuild R3 Magicjohn\nBuild G3 Magicjohn\n\n36) Babamots: Sacrifice G3 Babamots\nBuild R3 Bolius\nBuild R3 Shelob\nBuild G3 Babamots\n\n37) MagicJohn: Discover Y2 Gandalf B2 Elron\n\n38) Babamots: Attack G1 Shelob\n\n39) MagicJohn: Move Y2 Elron Babamots\nCatastrophe Babamots Yellow\n\n40) Babamots: Sacrifice Y2 Risa\nMove G1 Shelob Magicjohn\nMove G1 Shelob Magicjohn\nCatastrophe Magicjohn G\n\tMagicJohn: Little could you know, but my g1 ships have been equipped with self-destruct buttons that I can activate from anywhere in adjacent quadrants... \n\n41) MagicJohn: Trade R1 G1 Magicjohn\n\tMagicJohn: Was there any other way of dealing with the threat than running away from home?\n\tBabamots: Boobytrapping your abandoned equipment? Fiendish!\n\tBabamots: I think that you were better off ignoring the green catastrophe threat and moving your y2 into my home for a yellow catastrophe. You would be left with no yellow ships, but it would have freed up the supply so you could trade for some.\n\tBabamots: I can give you some time to contemplate that and undo if you like.\r\n\r\nOtherwise, I&#39;m going to split up my yellow ships so you don&#39;t get another chance. I actually didn&#39;t notice that your y2 had got close enough or I would have responded earlier. That was a mistake for me.\n\n42) Babamots: Trade R2 G2 Bolius\n\tMagicJohn: OK, lets see where it goes...\n\tMagicJohn: Not liking the &quot;follow-up catastrophes&quot; possible in magicjohn....\n\n43) MagicJohn: Discover G1 Magicjohn G3 Golum\n\tBabamots: With two reds at home, you&#39;re vulnerable to another catastrophe. I think you&#39;ll want to trade one for a yellow or green.\n\n44) Babamots: Move R3 Bolius Golum\n\n\tBabamots: It looks bad for you, but it&#39;s not quite over. You need to get a non-red to your home system this turn. You could last a few more moves if you trade your r3 or move a green back home.\r\n\r\nOn the other hand, I&#39;ll totally understand if you&#39;re done. I hope you&#39;ve learned a little this game and maybe even had some fun :-)\n\tMagicJohn: Sorry for the time warp. I spent a week in the mountains in Colorado and forgot to leave a message.\n\tBabamots: No problem! I had some other games to think about in the meantime. Would you like to finish this game? We could also start another teaching game or I can point you to another practice partner.\n\tMagicJohn: I seemed to be playing catch-up after the first two or three moves. What move put me on the defensive so quickly?\n\tBabamots: The trouble started on your third move, when you moved your small ship away from your home:\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=34284&amp;idx=4\r\n\r\nOn your next move, you would have liked to build another g1 and then trade for a y1 (which would let you build more yellow later). But I saw that I could get both y1 before you could execute that plan (which would lock you out of yellow).\r\n\r\nYour backup plan, once I traded for a y1 on my turn 3, should have been to trade g1 for y1 in Shelob. Even though all that y1 could do is move to a new system (preferably green so you could build more yellow), that&#39;s better than getting locked out of the yellow economy.\r\n\r\nI didn&#39;t do a good job of giving you advice on the early moves, so it&#39;s as much my fault as yours. Hopefully it taught you something though :-)\n\nHomeworlds Online (SDG# 34299)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.12, Ended: 2018.7.22\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B3 Y2 G3\n\twil: \n\twil: Nice, I tell you i am too busy for a game...so you challenge me\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n\tTrydnt: did you? sorry didn&#39;t realize haha what happened with Felix? He just dropped to 7th not sure why\n\tFelix: For some reason, SDG stopped sending me notification emails, so I didn&#39;t even notice I was challenged! If you decline a challenge when you&#39;re in the top 6, you drop to position 7. Oops :)\n\nHomeworlds Online (SDG# 34279)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.7.13, Ended: 2018.7.31\nParticipants: wil (S), smokeytroll42 (N)\nWinner: wil\n\n1) smokeytroll42: Homeworld B2 R3 G3\n\n2) wil: Homeworld B3 Y1 G3\n\n3) smokeytroll42: Build G1 Smokeytroll42\n\n4) wil: B G1 Wil\n\n5) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n6) wil: T G1 Y1 Wil\n\n7) smokeytroll42: Build G1 Smokeytroll42\n\twil: Thx for the game... I am packing to head into the woods...may be a while for my next move unless I run into WiFi along the way\n\twil: But thx for the game and have fun\n\n8) wil: B Y2 Wil\n\n9) smokeytroll42: Discover G1 Smokeytroll42 B1 Mars\n\n10) wil: Trade Y1 B1 Wil\n\n11) smokeytroll42: Build G1 Mars\n\n12) wil: Build B1 Wil\n\twil: oops, i was influenced by martians\n\twil: I see you&#39;ve played a few times...do you have pyramids and play live as well?\n\twil: also consider getting into the tournament...you will play a lot of folks with differing strategies\n\n13) smokeytroll42: Trade G1 R1 Mars\n\tsmokeytroll42: I do have a set although I&#39;ve not had a chance to play anyone in person! Safe travels!\n\n14) wil: Discover B1 Wil Y2 Y2\n\twil: back outta da woods!\n\tsmokeytroll42: Welcome back to civilization. I hope you had a great trip!\n\n15) smokeytroll42: Build G1 Smokeytroll42\n\twil: redonkulous\n\n16) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B2 Y2\nBuild B3 Wil\n\n17) smokeytroll42: Trade G3 B3 Smokeytroll42\n\twil: sometimes it is handy to set up your mids on a table to play &quot;live&quot; as the layout here confuses\n\n18) wil: Sacrifice B2 Y2\nTrade B2 Y2 Y2\nTrade B3 G3 Wil\n\tsmokeytroll42: I&#146;m actually doing that with a separate game. Since I&#146;ve only really play online though, I&#146;m used to the interface.\n\n19) smokeytroll42: Trade R1 Y1 Mars\n\twil: k\n\twil: k\n\n20) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 Y2\nBuild B2 Wil\n\n21) smokeytroll42: Build Y3 Mars\n\n22) wil: Sacrifice Y2 Wil\nDiscover Y3 Y2 G3 G3\nDiscover B1 Wil G2 G2\n\n23) smokeytroll42: Build Y2 Smokeytroll42\n\n24) wil: Trade B2 G2 Wil\n\n25) smokeytroll42: Trade Y1 R1 Mars\n\n26) wil: Sacrifice G2 Wil\nBuild B2 G2\nBuild B2 Y2\n\n27) smokeytroll42: Move R1 Mars G2\n\n28) wil: Trade B2 R2 G2\n\n29) smokeytroll42: Build Y1 Mars\n\n30) wil: Trade Y3 G3 Wil\n\n31) smokeytroll42: Discover Y1 Mars G2 Mercury\n\n32) wil: Build Y3 G3\n\n33) smokeytroll42: Sacrifice Y3 Mars\nMove Y1 Smokeytroll42 Mars\nMove Y1 Mars G3\nMove Y1 Mercury G3\nCatastrophe G3 Y\n\n34) wil: Build B2 G2\n\n35) smokeytroll42: Attack B1S G2\n\twil: lol\n\n36) wil: Sacrifice R2 G2\nAttack R1 G2\nAttack B1 G2\n\n37) smokeytroll42: Build G1 Mars\n\n38) wil: Build B3 G2\n\twil: Now I was willing to let that little mosquito live and be ornery, but when you attack my friends...\n\n39) smokeytroll42: Build G2 Smokeytroll42\n\tsmokeytroll42: I was hoping you&#146;d ignore that little slight\n\twil: Take over of my little smurfs...nevah!\n\twil: Poppa Smurf will come out of hiding and reign terror\n\n40) wil: Build G2 Wil\n\n41) smokeytroll42: Build G3 Smokeytroll42\n\n42) wil: Trade G2 R2 Wil\n\n43) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove B3 Smokeytroll42 Mars\nMove B3 Mars G2\nCatastrophe G2 B\n\n44) wil: Move B2 Y2 Mars\n\n45) smokeytroll42: Trade G2 Y2 Smokeytroll42\n\n46) wil: Build R1 Wil\n\n47) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild G2 Smokeytroll42\nBuild G2 Smokeytroll42\nBuild G3 Mars\n\n48) wil: Build G3 Wil\n\n49) smokeytroll42: Trade G1 R1 Smokeytroll42\n\n50) wil: Sacrifice G3 Wil\nBuild B1 Mars\nBuild B2 Mars\nBuild B3 Y2\nCatastrophe Mars B\n\twil: Always pleasant to visit a planet without guns...even when the big guy shows up...but a little trepidatious to leave the home land unguarded..\n\n51) smokeytroll42: Discover G2 Smokeytroll42 B1 Jupiter\n\n52) wil: S Y2 Y2\nD B3 Y2 Y1 Y1\nM R1 G2 Y1\n\twil: oops...me thinks I over developed our smurfdom in mars...sorry\n\tsmokeytroll42: I think I may have painted myself into a corner here.\n\twil: If you need more paint...\n\n53) smokeytroll42: Build G1 Jupiter\n\n54) wil: M B3 Y1 Smokeytroll42\n\n\tsmokeytroll42: Good game!\n\twil: Gotta leave a big ship at home lesson...\n\tsmokeytroll42: True dat\n\nHomeworlds Online (SDG# 34298)\nStarted: 2018.7.14, Ended: 2018.8.20\nParticipants: ts52 (S), Thorolf (N)\nWinner: ts52\n\n1) Thorolf: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Thorolf: Build G1 Thorolf\n\n4) ts52: Build G1 Ts52\n\n\nHomeworlds Online (SDG# 34224)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.14, Ended: 2018.8.2\nParticipants: Trydnt (S), shmil1 (N)\nWinner: Trydnt\n\n1) shmil1: Homeworld R1 G2 B3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) shmil1: Build B1 Shmil1\n\n4) Trydnt: Build G1 Trydnt\n\n5) shmil1: Build B1 Shmil1\n\n6) Trydnt: Build G1 Trydnt\n\n7) shmil1: Trade B1 Y1 Shmil1\n\n8) Trydnt: Trade G1 R1 Trydnt\n\n9) shmil1: Discover B1 Shmil1 G3 Greenbaker\n\n10) Trydnt: Build R1 Trydnt\n\n11) shmil1: Trade B1 Y1 Greenbaker\n\n12) Trydnt: Build R2 Trydnt\n\n13) shmil1: Build Y1 Greenbaker\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) shmil1: Build B1 Shmil1\n\n16) Trydnt: Sacrifice Y2 Trydnt\nDiscover R1 Trydnt B1 B1\nMove R1 B1 Greenbaker\n\n17) shmil1: Build Y2 Greenbaker\n\n18) Trydnt: Build R2 Greenbaker\n\n19) shmil1: Sacrifice Y2 Greenbaker\nDiscover Y1 Greenbaker G1 Zell\nMove Y1 Greenbaker Zell\n\n20) Trydnt: Move R1 Trydnt Zell\n\n21) shmil1: Build Y2 Zell\n\n22) Trydnt: Build R2 Zell\n\n23) shmil1: Sacrifice Y2 Zell\nMove Y1 Zell Trydnt\nMove Y1 Zell Trydnt\n\n24) Trydnt: Sacrifice R2 Greenbaker\nAttack Y1 Trydnt\nAttack Y1 Trydnt\n\n25) shmil1: Build Y2 Shmil1\n\n26) Trydnt: Move Y1 Trydnt Zell\n\n27) shmil1: Discover Y1 Shmil1 R3 Rudy\n\n28) Trydnt: Trade G1 B1 Trydnt\n\n29) shmil1: Discover B1 Shmil1 R3 Zrzek\n\n30) Trydnt: Build R2 Greenbaker\n\n31) shmil1: Build Y2 Shmil1\n\n32) Trydnt: Build Y3 Zell\n\n33) shmil1: Discover Y1 Rudy G1 Pekar\n\n34) Trydnt: Move Y3 Zell Greenbaker\n\n35) shmil1: Build Y3 Pekar\n\n36) Trydnt: Sacrifice Y1 Trydnt\nMove B1 Trydnt Zell\n\n37) shmil1: Move Y2 Shmil1 Zrzek\n\n38) Trydnt: Build R2 Greenbaker\n\n39) shmil1: Sacrifice Y2 Zrzek\nMove Y3 Pekar Trydnt\nMove Y1 Pekar Trydnt\n\n40) Trydnt: Sacrifice R2 Greenbaker\nAttack Y3 Trydnt\nAttack Y1 Trydnt\n\n41) shmil1: Sacrifice Y2 Shmil1\nMove B1 Zrzek Zell\nMove B1 Zell Trydnt\n\n42) Trydnt: Sacrifice R1 Greenbaker\nAttack B1 Trydnt\n\n43) shmil1: Build B1 Shmil1\n\n44) Trydnt: Move B1 Zell Greenbaker\n\n45) shmil1: Trade B1 Y1 Shmil1\n\n46) Trydnt: Build B1 Greenbaker\n\tTrydnt: thanks for all the presents\n\n47) shmil1: Build Y2 Shmil1\n\n48) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Greenbaker\nBuild B2 Greenbaker\nBuild B2 Trydnt\n\n49) shmil1: Discover Y1 Shmil1 Y3 Zlut\n\n50) Trydnt: Discover Y1 Trydnt R1 R1\n\n51) shmil1: Build B2 Shmil1\n\n52) Trydnt: Sacrifice Y2 Greenbaker\nMove B1 Greenbaker Shmil1\nMove B1 Greenbaker Shmil1\nCatastrophe Shmil1 B\n\n53) shmil1: Build Y2 Shmil1\n\n54) Trydnt: Move Y3 Greenbaker Shmil1\n\n55) shmil1: Discover Y1 Zlut G1 Zelee\n\n56) Trydnt: Build Y3 Shmil1\nCatastrophe Shmil1 Y\n\n\tshmil1: where did my B3 go? I cannot find it in the log.\n\tTrydnt: 4 moves ago: South&#39;s ship Y2 was sacrificed in the greenbaker system. South moved their B1 ship from greenbaker to shmil1. South moved their B1 ship from greenbaker to shmil1. A catastrophe occurred in the shmil1 system. All conversion (B) technology was lost\n\nHomeworlds Online (SDG# 34289)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.14, Ended: 2018.7.27\nParticipants: shmil1 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) wil: Build G1 Wil\n\n4) shmil1: Build Y1 Shmil1\n\n5) wil: Trade G1 B1 Wil\n\n6) shmil1: Build Y1 Shmil1\n\n7) wil: Build G1 Wil\n\n8) shmil1: Discover Y1 Shmil1 G3 Zel\n\n9) wil: Discover G1 Wil B1 B1\n\n10) shmil1: Trade Y1 R1 Shmil1\n\n11) wil: Build G1 Wil\n\n12) shmil1: Move Y1 Zel B1\n\n13) wil: Build G2 B1\n\n14) shmil1: Sacrifice R1 Shmil1\nAttack G1 B1\n\twil: I&#39;m just over here trying to grow a nice little community.. Did you bring any beer?\n\n15) wil: Sacrifice G3 Wil\nBuild G2 B1\nBuild G2 B1\nBuild G3 Wil\nCatastrophe B1 G\n\n16) shmil1: Trade Y1 G1 B1\n\n17) wil: Build B1 Wil\n\twil: oops forgot to set the fuse...we will just build elsewhere to avoid the warmongers\n\n18) shmil1: Build G2 B1\n\n19) wil: Discover B1 Wil Y1 Y1\n\n20) shmil1: Trade G2 Y2 B1\n\n21) wil: Trade G1 R1 Wil\n\n22) shmil1: Build Y1 B1\n\n23) wil: Sacrifice G3 Wil\nBuild B2 Y1\nBuild B2 Y1\nBuild B3 Wil\n\n24) shmil1: Build Y1 B1\n\n25) wil: Trade B3 G3 Wil\n\n26) shmil1: Build Y2 Shmil1\n\n27) wil: Build B3 Wil\n\n28) shmil1: Sacrifice Y3 Shmil1\nMove Y1 B1 Wil\nMove Y1 B1 Wil\nMove Y2 B1 Wil\nCatastrophe Wil Y\n\n29) wil: Trade B3 Y3 Wil\n\n30) shmil1: Build Y1 Shmil1\n\n31) wil: Move Y3 Wil Shmil1\n\twil: well so much for your yellow domination!  I can move!\n\n32) shmil1: Trade Y2 G2 Shmil1\n\twil: Couple things about the move as I see them... I am in a much better position now...always risky to take out half a homeworld without a plan...easier method would have been two send one in..and then use a y2 to send the other two.\n\n33) wil: Trade G3 R3 Wil\n\n34) shmil1: Build Y1 Shmil1\n\n35) wil: Sacrifice R3 Wil\nAttack Y1 Shmil1\nAttack Y1 Shmil1\nAttack G2 Shmil1\n\n\twil: gg, I&#39;ll play anytime..\n\nHomeworlds Online (SDG# 34308)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.15, Ended: 2018.8.12\nParticipants: dlwillson (S), ts52 (N)\nWinner: dlwillson\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) dlwillson: B G1 Dlwillson\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) ts52: Build Y2 Ts52\n\n8) dlwillson: B Y2 Dlwillson\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) dlwillson: D Y1 Dlwillson B2 Sea\n\n11) ts52: Build G1 Ts52\n\n12) dlwillson: B G1 Dlwillson\n\n13) ts52: Trade G1 B1 Ts52\n\n14) dlwillson: T G1 R1 Dlwillson\n\n15) ts52: Trade Y2 R2 Ts52\n\n16) dlwillson: B Y2 Dlwillson\n\n17) ts52: Build G1 Ts52\n\n18) dlwillson: Move Y2 Dlwillson Sea\n\n19) ts52: Build B1 Ts52\n\n20) dlwillson: D Y1 Sea B3 Sky\n\n21) ts52: Move B1 Ts52 Kermit\n\n22) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n23) ts52: Build Y3 Kermit\n\n24) dlwillson: Trade Y3 R3 Sea\n\n25) ts52: Trade Y3 R3 Kermit\n\n26) dlwillson: T Y2 G2 Sky\n\n27) ts52: Sacrifice G3 Ts52\nBuild B1 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n28) dlwillson: Sacrifice G2 Sky\nBuild Y2 Sea\nBuild Y3 Sky\n\n29) ts52: Build Y3 Kermit\n\n30) dlwillson: T Y3 G3 Dlwillson\n\n31) ts52: Trade B3 G3 Ts52\n\n32) dlwillson: D Y2 Sea B3 Serenity\n\n33) ts52: Discover B2 Kermit G2 Oscar\n\n34) dlwillson: B G1 Dlwillson\n\n35) ts52: Move B1 Kermit Oscar\n\n36) dlwillson: Trade Y1 G1 Sky\n\n37) ts52: Move Y3 Kermit Oscar\n\n38) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild Y1 Sea\nBuild Y3 Dlwillson\n\n39) ts52: Build R1 Kermit\n\n40) dlwillson: S Y3 Dlwillson\nM G2 Sky Ts52\nM G1 Sky Ts52\nM Y3 Sky Ts52\nC Ts52 G\n\n41) ts52: Sacrifice Y3 Oscar\nMove B1 Kermit Ts52\nMove R1 Kermit Ts52\nMove B2 Oscar Dlwillson\n\n42) dlwillson: S R3 Sea\nA B2 Dlwillson\nA R2 Ts52\nA R1 Ts52\n\n43) ts52: Move R3 Kermit Ts52\n\n44) dlwillson: S R2 Ts52\nA R3 Ts52\nA B1 Ts52\n\tts52: Excellent game. Well played.\n\n45) ts52: Move Y1 Kermit Ts52\n\tdlwillson: Thanks! Good game!\n\n46) dlwillson: Sacrifice R3 Ts52\nAttack Y1 Ts52\nAttack B1 Ts52\nPass\n\n\nHomeworlds Online (SDG# 34236)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.16, Ended: 2018.8.27\nParticipants: smokeytroll42 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 G3 Y3\n\n2) smokeytroll42: Homeworld B3 R2 G3\n\n3) Felix: Build Y1 Felix\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Felix: Trade Y1 B1 Felix\n\n6) smokeytroll42: Trade G1 B1 Smokeytroll42\n\n7) Felix: Build B2 Felix\n\n8) smokeytroll42: Build G1 Smokeytroll42\n\n9) Felix: Discover B1 Felix G2 Out\n\n10) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n11) Felix: Build B2 Out\n\n12) smokeytroll42: Discover B1 Smokeytroll42 G1 Bowie\n\n13) Felix: Trade B1 Y1 Out\n\n14) smokeytroll42: Build B1 Bowie\n\n15) Felix: Build B2 Felix\n\n16) smokeytroll42: Trade B1 Y1 Bowie\n\n17) Felix: Discover B2 Felix G2 Conk\n\n18) smokeytroll42: Build Y2 Bowie\n\n19) Felix: Build B1 Conk\n\n20) smokeytroll42: Build Y2 Smokeytroll42\n\n21) Felix: Build B3 Out\n\n22) smokeytroll42: Build B3 Bowie\n\n23) Felix: Trade B2 Y2 Conk\n\n24) smokeytroll42: Discover Y1 Bowie G2 Plant\n\n25) Felix: Trade B2 R2 Out\n\n26) smokeytroll42: Sacrifice Y2 Bowie\nMove B3 Bowie Plant\nMove B1 Bowie Plant\n\n27) Felix: Trade B2 R2 Felix\n\n28) smokeytroll42: Trade B3 R3 Plant\n\n29) Felix: Build B2 Out\n\n30) smokeytroll42: Build B2 Plant\n\n31) Felix: Build B2 Conk\n\n32) smokeytroll42: Build G1 Smokeytroll42\n\n33) Felix: Trade B3 G3 Out\n\n34) smokeytroll42: Sacrifice Y2 Smokeytroll42\nDiscover R3 Plant Y3 Tyler\nMove R3 Tyler Conk\n\n35) Felix: S Y2 Conk\nD B1 Conk G1 Plink\nD B2 Conk G1 Sink\n\n36) smokeytroll42: Discover B1 Plant Y3 Lennon\n\n37) Felix: Sacrifice G3 Out\nBuild B3 Out\nBuild B3 Plink\nBuild Y2 Out\n\n38) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild G3 Smokeytroll42\nBuild G3 Smokeytroll42\nBuild Y2 Plant\n\n39) Felix: Trade B3 Y3 Plink\n\n40) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild G3 Smokeytroll42\nBuild B3 Plant\nBuild Y2 Smokeytroll42\n\n41) Felix: Build R1 Felix\n\n42) smokeytroll42: Build R1 Conk\n\n43) Felix: Sacrifice Y2 Out\nMove R1 Felix Conk\nMove R2 Felix Conk\nCatastrophe Conk Red\n\n44) smokeytroll42: Move B3 Plant Sink\n\n45) Felix: Move B2 Out Felix\n\n46) smokeytroll42: Move B1 Lennon Plant\n\n47) Felix: Trade B2 G2 Felix\n\n48) smokeytroll42: Trade G3 R3 Smokeytroll42\n\n49) Felix: Build G3 Felix\n\n50) smokeytroll42: Move R3 Smokeytroll42 Sink\n\n51) Felix: Sacrifice B2 Sink\nTrade G3 R3 Felix\nPass\n\n52) smokeytroll42: Build B2 Sink\n\n53) Felix: Build G3 Felix\n\n54) smokeytroll42: Move Y1 Smokeytroll42 Sink\n\n55) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Plink\nBuild Y3 Out\n\n56) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove Y1 Plant Plink\nMove Y2 Plant Plink\nCatastrophe Plink Y\n\n57) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Plink\nBuild R1 Out\n\n58) smokeytroll42: Build Y1 Sink\n\n59) Felix: Move R1 Out Plink\n\n60) smokeytroll42: Move Y1 Sink Smokeytroll42\n\n61) Felix: Discover B3 Out R1 Post\n\n62) smokeytroll42: Build Y2 Sink\n\n63) Felix: Build R1 Plink\n\n64) smokeytroll42: Move Y1 Sink Plant\n\n65) Felix: Move Y1 Out Plink\n\n66) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild Y2 Plant\nBuild Y2 Sink\nBuild Y3 Smokeytroll42\n\n67) Felix: Sacrifice Y3 Out\nMove B1 Plink Smokeytroll42\nMove B2 Plink Smokeytroll42\nMove R1 Plink Smokeytroll42\n\n\tsmokeytroll42: Good game!\n\tFelix: Thanks, you too!\n\nHomeworlds Online (SDG# 34311)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.16, Ended: 2018.7.31\nParticipants: smokeytroll42 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) smokeytroll42: Homeworld B3 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Trydnt: Build Y1 Trydnt\n\n6) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) smokeytroll42: Build G1 Smokeytroll42\n\n9) Trydnt: Build R1 Trydnt\n\n10) smokeytroll42: Discover G1 Smokeytroll42 B2 Peace\n\n11) Trydnt: Build R2 Trydnt\n\n12) smokeytroll42: Build G1 Peace\n\n13) Trydnt: Discover R2 Trydnt B1 B1\n\n14) smokeytroll42: Build G1 Peace\n\n15) Trydnt: Trade R2 G2 B1\n\n16) smokeytroll42: Build G2 Smokeytroll42\n\n17) Trydnt: Build R2 Trydnt\n\n18) smokeytroll42: Trade G2 R2 Smokeytroll42\n\n19) Trydnt: Build G2 B1\n\n20) smokeytroll42: Move R2 Smokeytroll42 Peace\n\n21) Trydnt: Move R1 Trydnt B1\n\n22) smokeytroll42: Trade G1 Y1 Peace\n\n23) Trydnt: Trade G2 Y2 B1\n\n24) smokeytroll42: Build Y2 Peace\n\n25) Trydnt: Discover Y2 B1 G2 G2\n\n26) smokeytroll42: Discover G1 Peace B1 Harmony\n\n27) Trydnt: Move R2 Trydnt Harmony\n\n28) smokeytroll42: Sacrifice Y1 Peace\nMove G1 Harmony Peace\n\n29) Trydnt: Sacrifice G2 B1\nBuild R2 B1\nBuild R3 Harmony\n\n30) smokeytroll42: Build R3 Peace\n\n31) Trydnt: Sacrifice Y2 G2\nMove R1 B1 Peace\nMove R2 B1 Peace\nCatastrophe Peace R\n\n32) smokeytroll42: Trade G1 R1 Peace\n\n33) Trydnt: Trade R2 G2 Harmony\n\n34) smokeytroll42: Build R2 Peace\n\n35) Trydnt: Build R2 Trydnt\n\n36) smokeytroll42: Move R1 Peace Smokeytroll42\n\n37) Trydnt: Build G1 Harmony\n\n38) smokeytroll42: Build R2 Peace\n\n39) Trydnt: Build R3 Trydnt\n\n40) smokeytroll42: Sacrifice Y2 Peace\nMove R2 Peace Harmony\nMove R2 Harmony Trydnt\nCatastrophe Trydnt R\n\n41) Trydnt: Move Y1 Trydnt Harmony\n\n42) smokeytroll42: Build R1 Peace\n\n43) Trydnt: Build R2 Harmony\n\n44) smokeytroll42: Discover R1 Smokeytroll42 G2 Love\n\n45) Trydnt: Move R3 Harmony Love\n\n46) smokeytroll42: Build R2 Love\n\n47) Trydnt: Sacrifice R2 Harmony\nAttack R1 Love\nAttack R2 Love\n\n48) smokeytroll42: Build Y1 Smokeytroll42\n\n49) Trydnt: Trade G2 B2 Harmony\n\n50) smokeytroll42: Move Y1 Smokeytroll42 Peace\n\n51) Trydnt: Build Y2 Harmony\n\n52) smokeytroll42: Build Y2 Peace\n\n53) Trydnt: Sacrifice B2 Harmony\nTrade R3 Y3 Love\nTrade R1 B1 Love\n\n54) smokeytroll42: Build Y2 Smokeytroll42\n\n55) Trydnt: Build Y3 Trydnt\n\n56) smokeytroll42: Discover Y1 Peace G1 Amity\n\n57) Trydnt: Build G2 Harmony\n\n58) smokeytroll42: Move Y2 Peace Amity\n\n59) Trydnt: Discover Y3 Trydnt B1 B1\n\n60) smokeytroll42: Build G2 Peace\n\n61) Trydnt: Discover G1 Harmony B2 B2\n\n62) smokeytroll42: Build G3 Smokeytroll42\n\n63) Trydnt: Sacrifice Y3 Love\nMove G1 B2 Smokeytroll42\nMove G2 Harmony Peace\nMove G2 Peace Smokeytroll42\nCatastrophe Smokeytroll42 G\n\n64) smokeytroll42: Move Y1 Smokeytroll42 Peace\n\n65) Trydnt: Sacrifice Y2 Harmony\nMove Y3 B1 Peace\nMove Y3 Peace Smokeytroll42\n\n\tsmokeytroll42: Gg\n\nHomeworlds Online (SDG# 34309)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.7.18, Ended: 2018.7.21\nParticipants: wil (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B3 R1 G3\n\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\tmneme: Of course.  NP.\n\nHomeworlds Online (SDG# 34333)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.18, Ended: 2018.7.20\nParticipants: mneme (S), Trydnt (N)\nWinner: mneme\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) mneme: Homeworld G3 B3 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) mneme: Build Y1 Mneme\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\tmneme: This should be interesting.  Or short, depending.\n\n6) mneme: Trade Y3 R3 Mneme\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\tmneme: (Yes, this is my first microverse game; I figured it was a good time to finally get some experience with the form).\r\n\r\nAnd ok, wow; this setup is incredibly unforgiving.\n\n8) mneme: Move R3 Mneme Trydnt\n\tmneme: Thanks for the game!\r\n\n\n\tTrydnt: damn. VERY unforgiving\n\tmneme: Sorry --0But the only non-losing move last turn was t y1 r1.\n\nHomeworlds Online (SDG# 34337)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.18, Ended: 2018.9.17\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Draw5PlayAll\n\n1) Felix: Homeworld Y1 B3 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: I did not really mean to smallverse you\n\n7) Felix: Build Y2 Felix\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: I don&#39;t mind! Small universes are fun\n\n9) Felix: Discover Y1 Felix G2 Conk\n\n10) Draw5PlayAll: Discover Y1 Draw5playall G2 Goodidea\n\tDraw5PlayAll: I wonder when maybe someone I can beat will be #1 on the ladder again...\n\n11) Felix: Build G1 Felix\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Felix: Trade G1 R1 Felix\n\n14) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n15) Felix: B R2 Felix\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Felix: Build Y3 Conk\n\n18) Draw5PlayAll: Build Y3 Goodidea\n\n19) Felix: Discover Y2 Felix G2 Plink\n\n20) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n21) Felix: Trade R1 B1 Felix\n\n22) Draw5PlayAll: Move B2 Draw5playall Goodidea\n\n23) Felix: Move B1 Felix Conk\n\n24) Draw5PlayAll: Build B1 Goodidea\n\n25) Felix: Build R1 Felix\n\n26) Draw5PlayAll: Move R1 Draw5playall Goodidea\n\n27) Felix: Move R1 Felix Conk\n\n28) Draw5PlayAll: Build R2 Goodidea\n\n29) Felix: Build R2 Conk\n\n30) Draw5PlayAll: Discover R2 Goodidea G1 Seed\n\n31) Felix: Build R3 Felix\n\n32) Draw5PlayAll: Build R3 Goodidea\n\n33) Felix: Move R2 Felix Plink\n\n34) Draw5PlayAll: Build R3 Seed\n\n35) Felix: Build B1 Conk\n\n36) Draw5PlayAll: Move B1 Goodidea Seed\n\n37) Felix: Discover B1 Conk G1 Injection\n\n38) Draw5PlayAll: Build B2 Seed\n\n39) Felix: Build B2 Injection\n\n40) Draw5PlayAll: Build B3 Goodidea\n\n41) Felix: Move R2 Conk Draw5playall\n\n42) Draw5PlayAll: Move R3 Goodidea Injection\n\n43) Felix: Sacrifice Y3 Conk\nMove R2 Plink Draw5playall\nMove B2 Injection Conk\nMove B1 Injection Plink\n\n44) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 Seed Plink\nMove R3 Injection Conk\n\n45) Felix: Sacrifice Y2 Plink\nMove B2 Conk Draw5playall\nMove R1 Conk Draw5playall\nCatastrophe Draw5playall Red\n\n46) Draw5PlayAll: Sacrifice R2 Seed\nAttack B1 Conk\nAttack B1 Plink\n\n47) Felix: Discover Y1 Conk G1 Outpost\n\tDraw5PlayAll: Yay no G2s in the stash!\n\n48) Draw5PlayAll: Sacrifice R1 Goodidea\nAttack B2 Draw5playall\n\n49) Felix: Build Y2 Outpost\n\tDraw5PlayAll: I think you are dead lost.\n\n50) Draw5PlayAll: Move Y3 Goodidea Seed\n\n51) Felix: Discover Y1 Outpost G3 Grinch\n\n52) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: I think you&#39;re probably right!\n\n53) Felix: Move Y1 Grinch Seed\n\n54) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Conk\nBuild R1 Plink\n\n55) Felix: Build G3 Felix\n\n56) Draw5PlayAll: Sacrifice R1 Conk\nAttack Y1 Seed\n\n57) Felix: Build Y2 Outpost\n\n58) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Conk\nBuild Y2 Goodidea\nBuild G3 Draw5playall\n\n59) Felix: Discover Y2 Outpost R2 Inpost\n\n60) Draw5PlayAll: Sacrifice Y1 Goodidea\nMove Y1 Seed Plink\n\n61) Felix: S G3 Felix\nB Y1 Inpost\nB Y3 Inpost\nB Y3 Outpost\n\n62) Draw5PlayAll: Sacrifice Y2 Goodidea\nMove Y1 Plink Seed\nMove Y1 Seed Inpost\nCatastrophe Inpost Yellow\n\n63) Felix: Build G3 Felix\n\tDraw5PlayAll: Inpost?!?\n\n64) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Seed\nBuild Y1 Seed\n\n65) Felix: Discover Y2 Outpost R2 Uppit\n\n66) Draw5PlayAll: Trade Y1 R1 Seed\n\n67) Felix: Build Y1 Outpost\n\n68) Draw5PlayAll: Move Y1 Seed Goodidea\n\n69) Felix: D Y1 Outpost R2 Stalfort\n\tDraw5PlayAll: ...why did I do that?\n\n70) Draw5PlayAll: Discover R1 Seed Y3 Holding\n\tFelix: You can always undo!\n\n71) Felix: S G3 Felix\nB G3 Felix\nB Y2 Outpost\nB Y2 Stalfort\n\tDraw5PlayAll: The hard part is actually winning.\n\n72) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Holding\nPass\nPass\nPass\nPass\nPass\nPass\n\tFelix: I believe in you!\n\tDraw5PlayAll: Too Many Systems\n\n73) Felix: M R3 Felix Stalfort\n\n74) Draw5PlayAll: Sacrifice Y3 Seed\nMove R1 Holding Stalfort\nMove R2 Holding Stalfort\nCatastrophe Stalfort Red\nMove R3 Conk Felix\n\n\tDraw5PlayAll: Yeah, this was much better.\n\tFelix: Much better! Nice move!\n\nHomeworlds Online (SDG# 34344)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.20, Ended: 2018.7.30\nParticipants: DodoBirb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) DodoBirb: Homeworld B1 R3 G3\n\n3) Babamots: Build G1 Babamots\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) Babamots: Build B2 Babamots\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) Babamots: Trade B2 Y2 Babamots\n\n10) DodoBirb: Trade B2 Y2 Dodobirb\n\n11) Babamots: Build B2 Babamots\n\n12) DodoBirb: Build B2 Dodobirb\n\n13) Babamots: Discover B1 Babamots G3 Ferenginar\n\n14) DodoBirb: Discover B2 Dodobirb G2 Twopip\n\n15) Babamots: Build B3 Ferenginar\n\n16) DodoBirb: Build B3 Twopip\n\n17) Babamots: Trade B3 Y3 Ferenginar\n\n18) DodoBirb: Trade B3 Y3 Twopip\n\n19) Babamots: Build B3 Ferenginar\n\n20) DodoBirb: Build B3 Twopip\n\n21) Babamots: Discover B1 Ferenginar G2 Risa\n\tBabamots: I&#39;m making you move first next game :-P\n\n22) DodoBirb: Discover B1 Dodobirb G2 Echo\n\n23) Babamots: Build B3 Risa\n\n24) DodoBirb: Trade B3 Y3 Twopip\n\n25) Babamots: Trade B3 R3 Risa\n\n26) DodoBirb: Trade B1 R1 Echo\n\n27) Babamots: Build B1 Ferenginar\n\n28) DodoBirb: Build B3 Twopip\n\n29) Babamots: Build B3 Risa\n\n30) DodoBirb: Discover B3 Twopip R3 Threepip\n\n31) Babamots: Trade B2 R2 Babamots\n\n32) DodoBirb: Move Y3 Twopip Dodobirb\n\n33) Babamots: Move B3 Ferenginar Echo\n\tBabamots: You&#39;re in quite a bit of danger. Can you see my plan?\n\tDodoBirb: You can sacrifice your y3 in Ferenginar to move your b3, r3 and b1 from Risa to DodoBirb. I take your r3 or b3 then you sacrifice your r2 in your homeworld to take the g3 and your b3 or r3 back. Then you take my y2 and win. That is, if I don&#39;t do anything.\n\n34) DodoBirb: Sacrifice Y3 Twopip\nMove B2 Twopip Dodobirb\nMove B2 Dodobirb Risa\nMove B3 Threepip Risa\nCatastrophe Risa B\n\tBabamots: Yes, something like that was the immediate danger, and moving a second large to your home was a good defense (it would probably make my invasion end in a draw, trading my large back and forth).\r\n\r\nYour next problem is that I&#39;m establishing a second foothold on a medium system connected to your home...\n\n35) Babamots: Discover Y3 Ferenginar G2 Xindi\n\n36) DodoBirb: Build G1 Dodobirb\n\n37) Babamots: Sacrifice Y2 Babamots\nMove Y3 Xindi Dodobirb\nMove B3 Echo Dodobirb\n\n38) DodoBirb: Attack Y3N Dodobirb\n\n39) Babamots: Sacrifice R3 Risa\nAttack Y3 Dodobirb\nAttack Y3 Dodobirb\nAttack G3 Dodobirb\n\n40) DodoBirb: Pass\n\n41) Babamots: Sacrifice R2 Babamots\nAttack Y2 Dodobirb\nAttack G1 Dodobirb\n\n\tBabamots: I promise to let the crews of those ships live :-)\n\tDodoBirb: What about the civilians in the Homeworld?\n\tBabamots: I would certainly prefer to spare as many taxpayers as possible. I may have to execute a few government officials as I cement my control, but I have no love of killing for its own sake.\n\nHomeworlds Online (SDG# 34265)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.23, Ended: 2018.7.26\nParticipants: Sticky (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n\tTrydnt: welcome\n\nHomeworlds Online (SDG# 34314)\nVariants: &quot;Unrated&quot;\nStarted: 2018.7.23, Ended: 2018.7.23\nParticipants: wil (S), Sticky (N)\nWinner: wil\n\n\tSticky: homeworld green blue yellow\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\nHomeworlds Online (SDG# 34358)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.25, Ended: 2018.8.7\nParticipants: bhorner (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) bhorner: H R3 B1 G3\n\tBabamots: My first game for the tournament. Have fun!\n\n3) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Wait what?!\n\tDraw5PlayAll: Oh, I had better start challenging people!\n\tbhorner: You too.  :). Thanks for organizing!\n\n4) bhorner: Build G1 Bhorner\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) Babamots: Build B2 Babamots\n\n8) bhorner: Build B2 Bhorner\n\tbhorner: Have I already made a mistake?  :)\n\n9) Babamots: Trade B2 Y2 Babamots\n\tBabamots: I don&#39;t think so. Looks pretty even to me.\n\n10) bhorner: Trade B2 Y2 Bhorner\n\tbhorner: I saw that we were charging to expose the B3&#39;s, and didn&#39;t have a plan... thought you might.  I like being on my toes.  I don&#39;t get that in person too often.  :)\n\n11) Babamots: Build B2 Babamots\n\tBabamots: In person, you don&#39;t often play people with plans? Or in person, you aren&#39;t often on your toes? I don&#39;t have anyone to play with in person, myself.\n\n12) bhorner: Build B2 Bhorner\n\tbhorner: In person I don&#39;t often need to be on my toes.  :)\n\n13) Babamots: Discover B1 Babamots G3 Risa\n\n14) bhorner: Discover B1 Bhorner G2 Swirl\n\tDraw5PlayAll: Not having anyone to play against IRL: a common lament.\n\n15) Babamots: Build B3 Risa\n\n16) bhorner: Build B3 Swirl\n\n17) Babamots: Trade B1 Y1 Risa\n\n18) bhorner: Trade B1 R1 Swirl\n\n19) Babamots: Build Y1 Babamots\n\n20) bhorner: Build B1 Swirl\n\n21) Babamots: Trade B2 R2 Babamots\n\n22) bhorner: Trade B3 Y3 Swirl\n\n23) Babamots: Discover Y1 Babamots B3 Bolarus\n\n24) bhorner: Build R1 Swirl\n\n25) Babamots: Build Y1 Risa\n\n\tBabamots: Sorry you&#39;re so busy. I&#39;ll have to play you another time!\n\nHomeworlds Online (SDG# 34359)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.25, Ended: 2018.8.7\nParticipants: bhorner (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R2 G3\n\n2) bhorner: H R2 B1 G3\n\n3) ajo: Build G1 Ajo\n\tbhorner: Nice to meet you, good luck!\n\n4) bhorner: B G1 Bhorner\n\tajo: Thanks and good luck!\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) ajo: Build G1 Ajo\n\n8) bhorner: Build B1 Bhorner\n\n9) ajo: Build G1 Ajo\n\n10) bhorner: Build G1 Bhorner\n\n11) ajo: Build Y1 Ajo\n\n12) bhorner: Trade G1 Y1 Bhorner\n\n13) ajo: Build Y2 Ajo\n\n14) bhorner: Discover B1 Bhorner G3 Tree\n\n15) ajo: Sacrifice Y2 Ajo\nDiscover Y1 Ajo G1 Beta\nDiscover Y1 Beta B3 Alpha\n\n16) bhorner: Build Y2 Bhorner\n\n17) ajo: Sacrifice G1 Ajo\nBuild Y2 Alpha\n\n18) bhorner: Move Y1 Bhorner Tree\n\n19) ajo: Trade Y1 G1 Alpha\n\n20) bhorner: Build B2 Tree\n\n21) ajo: Build Y1 Alpha\n\n22) bhorner: Discover B2 Tree G1 Twig\n\n23) ajo: Trade Y2 R2 Alpha\n\n24) bhorner: Trade B1 R1 Bhorner\n\n25) ajo: Build Y2 Alpha\n\n26) bhorner: Build G2 Bhorner\n\n27) ajo: Build R1 Alpha\n\n28) bhorner: M R1 Bhorner Tree\n\n29) ajo: Sacrifice Y2 Alpha\nMove R2 Alpha Twig\nMove R2 Twig Tree\n\n30) bhorner: Sacrifice G2 Bhorner\nBuild R1 Tree\nBuild R3 Tree\nCatastrophe Tree Red\n\n31) ajo: Build Y2 Alpha\n\n32) bhorner: Trade B2 R2 Twig\n\n33) ajo: Build G2 Alpha\n\n34) bhorner: Build B1 Tree\n\n35) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n\tajo: Proximity-to-time-limit alert! :o\n\nHomeworlds Online (SDG# 34360)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.25, Ended: 2018.8.27\nParticipants: nycavri (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi Avri! TaGG!  :)\n\tLaurie_Menke: Also, if you&#39;re free today, it&#39;s my day off, so I have more time to play  than usual.  :)\n\n2) nycavri: Homeworld G2 B3 Y3\n\tnycavri: Likely only going to get a move or two in today . . .\n\tnycavri: TaGG!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: OK... no worries. Have fun!\n\n4) nycavri: Build Y1 Nycavri\n\n5) Laurie_Menke: Build G1 Laurie_menke\n\n6) nycavri: Discover Y1 Nycavri B1 Deacon\n\n7) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n8) nycavri: Build Y1 Nycavri\n\n9) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n10) nycavri: Build Y2 Nycavri\n\n11) Laurie_Menke: Discover Y1 Laurie_menke G2 Hi\n\n12) nycavri: Discover Y2 Nycavri B1 May\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\n14) nycavri: Build Y2 Nycavri\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) nycavri: Discover Y1 Nycavri G1 Mercury\n\n17) Laurie_Menke: Move R1 Laurie_menke Hi\n\n18) nycavri: Trade Y2 G2 May\n\n19) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller\n\n20) nycavri: Build G3 May\n\n21) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Yeller\nBuild R1 Hi\n\n22) nycavri: Sacrifice G3 May\nBuild G3 May\nBuild Y2 Deacon\nBuild Y3 Mercury\n\n23) Laurie_Menke: Move G3 Yeller Deacon\n\n24) nycavri: Sacrifice Y2 Deacon\nDiscover G3 May R2 Taylor\nMove G2 May Taylor\n\n25) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n26) nycavri: Discover Y1 Deacon Y2 May\n\n27) Laurie_Menke: Move Y1 Hi Mercury\n\n28) nycavri: Move Y1 Mercury May\n\n29) Laurie_Menke: Move Y1 Mercury May\n\n30) nycavri: Build G1 Taylor\n\n31) Laurie_Menke: Move Y1 May Deacon\n\n32) nycavri: Trade Y2 R2 Nycavri\n\n33) Laurie_Menke: Sacrifice G3 Deacon\nBuild G3 Yeller\nBuild Y2 Deacon\nBuild R2 Laurie_menke\n\n34) nycavri: Build R3 Nycavri\n\n35) Laurie_Menke: Sacrifice Y2 Deacon\nMove G1 Yeller Deacon\nMove R1 Hi Deacon\n\n36) nycavri: Sacrifice Y3 Mercury\nMove G1 Taylor Laurie_menke\nMove G2 Taylor Laurie_menke\nMove G3 Taylor Laurie_menke\nCatastrophe Laurie_menke G\n\n37) Laurie_Menke: Move G3 Yeller Laurie_menke\n\n38) nycavri: Build Y2 Nycavri\n\n39) Laurie_Menke: Build R2 Deacon\n\n\tLaurie_Menke: Hey, Avri...I hope everything&#39;s OK! Just a warning that you&#39;re going to time out in one day and this is a tournament game, so it&#39;s hard time! I don&#39;t want to win that way!  ;)\n\tLaurie_Menke: :(  Sorry. I hope you&#39;re OK!\n\tBabamots: nycavri indicated to me that being busy and was the problem and nothing more dire.\r\n\r\nIf you would both like to continue this game (or even start a new replacement game), that&#39;s OK with me from a tournament standpoint.\r\n\r\nI don&#39;t know if there&#39;s any way to restart the clock on this game though. I&#39;m going to try an experiment.\n\tBabamots: I sent the &quot;clock reset&quot; command to the chat, but it doesn&#39;t appear to work on terminated games.\r\n\r\nLet me know if you want to try to resume or restart. I&#39;ll happily adjust the spreadsheet.\n\tLaurie_Menke: I&#39;d very much prefer to win or lose based on merit rather than time. If Avri&#39;s willing, we could replay this game to this point and continue. What do you think, Avri? Wanna give it a try?\n\nHomeworlds Online (SDG# 34369)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.25, Ended: 2018.8.3\nParticipants: Draw5PlayAll (S), Remneb (N)\nWinner: Draw5PlayAll\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\tRemneb: Have a good game.\n\n3) Remneb: Build G1 Remneb\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) Remneb: Trade G1 Y1 Remneb\n\tDraw5PlayAll: This is for the tournament just so you know.\n\tRemneb: I know.\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) Remneb: Build G1 Remneb\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) Remneb: Build Y1 Remneb\n\n10) Draw5PlayAll: Discover B2 Draw5playall G3 Keeper\n\n11) Remneb: Discover Y1 Remneb G3 Thor\n\n12) Draw5PlayAll: Build B2 Keeper\n\n13) Remneb: Discover G1 Remneb Y3 Gort\n\n14) Draw5PlayAll: Build B2 Draw5playall\n\n15) Remneb: Build G1 Gort\n\n16) Draw5PlayAll: Build B3 Keeper\n\n17) Remneb: Build G1 Remneb\n\n18) Draw5PlayAll: Trade B3 R3 Keeper\n\n19) Remneb: Trade G1 R1 Remneb\n\n20) Draw5PlayAll: Build B3 Keeper\n\n21) Remneb: Build G1 Remneb\n\n22) Draw5PlayAll: Trade B3 Y3 Keeper\n\n23) Remneb: Sacrifice G3 Remneb\nBuild G2 Remneb\nBuild G2 Gort\nBuild G3 Remneb\n\n24) Draw5PlayAll: Trade B2 R2 Keeper\n\n25) Remneb: Trade G2 B2 Remneb\n\n26) Draw5PlayAll: Sacrifice Y3 Keeper\nMove B1 Draw5playall Keeper\nMove B1 Keeper Remneb\nMove B2 Keeper Remneb\nCatastrophe Remneb Blue\n\n27) Remneb: Build G2 Remneb\n\tDraw5PlayAll: No one steals my blue...\n\n28) Draw5PlayAll: Sacrifice Y3 Draw5playall\nPass\nMove R2 Keeper Remneb\nMove R3 Keeper Remneb\nCatastrophe Remneb Red\n\tDraw5PlayAll: Goodtry\n\n\nHomeworlds Online (SDG# 34373)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.25, Ended: 2018.8.14\nParticipants: mneme (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) mneme: Homeworld G3 R2 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) mneme: Build B1 Mneme\n\n5) dlwillson: T G1 B1 Dlwillson\n\tmneme: Good luck!\r\n\n\n6) mneme: Build B2 Mneme\n\tdlwillson: Have fun!\n\n7) dlwillson: Build B2 Dlwillson\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) dlwillson: Discover B2 Dlwillson G2 Field\n\n10) mneme: Trade B2 Y2 Mneme\n\n11) dlwillson: B B2 Field\n\n12) mneme: Build B2 Mneme\n\n13) dlwillson: T B1 R1 Dlwillson\n\n14) mneme: Build Y1 Mneme\n\n15) dlwillson: T B2 Y2 Field\n\n16) mneme: Discover Y2 Mneme G1 Euterpe\n\n17) dlwillson: Build B1 Field\n\n18) mneme: Trade B2 R2 Mneme\n\n19) dlwillson: T B1 R1 Field\n\n20) mneme: Move R2 Mneme Euterpe\n\n21) dlwillson: Build G1 Dlwillson\n\n22) mneme: Build Y1 Euterpe\n\n23) dlwillson: B R1 Field\n\n24) mneme: Build B1 Mneme\n\n25) dlwillson: D R1 Field R3 Mars\n\n26) mneme: Discover Y2 Euterpe R3 Melpomene\n\n27) dlwillson: Build B2 Field\n\n28) mneme: Move B1 Mneme Euterpe\n\n29) dlwillson: T B2 G2 Field\n\n30) mneme: Build Y1 Mneme\n\n31) dlwillson: S G3 Dlwillson\nB Y2 Field\nB R2 Mars\nB G1 Field\n\n32) mneme: Build R3 Euterpe\n\n33) dlwillson: S Y2 Field\nM R2 Mars Euterpe\nM R1 Mars Euterpe\nC Euterpe R\n\n34) mneme: Build B2 Mneme\n\n35) dlwillson: B G2 Dlwillson\n\n36) mneme: Trade B2 R2 Mneme\n\n37) dlwillson: B G3 Dlwillson\n\n38) mneme: Trade Y3 G3 Mneme\n\n39) dlwillson: D G2 Dlwillson B2 Sea\n\n40) mneme: Build B2 Euterpe\n\n41) dlwillson: Sacrifice G2 Field\nBuild B3 Field\nBuild G2 Sea\n\n42) mneme: Build B3 Mneme\n\n43) dlwillson: T B3 R3 Field\n\n44) mneme: Trade B2 R2 Euterpe\n\n45) dlwillson: M R3 Field Euterpe\n\tmneme: Nice.\n\n46) mneme: Sacrifice G3 Mneme\nBuild R1 Euterpe\nBuild R3 Euterpe\nBuild Y2 Melpomene\nCatastrophe Euterpe R\n\n47) dlwillson: S G3 Dlwillson\nB Y3 Field\nB G3 Sea\nB G3 Dlwillson\n\n48) mneme: Build Y3 Euterpe\n\n49) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild R1 Dlwillson\nBuild R2 Field\n\n50) mneme: Sacrifice Y2 Melpomene\nMove Y2 Melpomene Field\nMove Y1 Euterpe Field\nCatastrophe Field Y\n\n51) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Field\nBuild R3 Dlwillson\nBuild G3 Dlwillson\n\n52) mneme: Build R3 Mneme\n\n53) dlwillson: S B2 Field\nT R3 B3 Field\nT R3 Y3 Dlwillson\n\n54) mneme: Discover R3 Mneme Y1 Calliope\n\n55) dlwillson: M R1 Dlwillson Sea\n\n56) mneme: Build Y2 Euterpe\n\n57) dlwillson: T G2 Y2 Sea\n\n58) mneme: Build Y2 Mneme\n\tdlwillson: How do you pronounce your handle?\n\n59) dlwillson: M Y3 Dlwillson Field\n\tmneme: nemay, more or less.  The &quot;M&quot; is only mostly silent, the Es aren&#39;t.\n\n60) mneme: Move R2 Mneme Euterpe\n\n61) dlwillson: S G3 Dlwillson\nB B2 Field\nB G2 Field\nB G3 Dlwillson\n\tdlwillson: I was pretty close to correct. I&#39;ll fix my second e.\n\n62) mneme: Build R3 Euterpe\n\n63) dlwillson: S Y3 Field\nM G1 Field Euterpe\nM G2 Field Euterpe\nM G2 Sea Euterpe\nC Euterpe G\n\tmneme: Thanks.  It would probably be more correct to the greek to use the same sound for both epsilons, but this sounds better to me.\n\n64) mneme: Trade Y2 G2 Mneme\n\n65) dlwillson: Trade R2 Y2 Field\n\n66) mneme: Move B1 Mneme Calliope\n\n67) dlwillson: Sacrifice G3 Sea\nBuild Y2 Field\nBuild Y3 Field\nBuild Y3 Sea\n\n68) mneme: Discover Y1 Mneme B1 Urania\n\n69) dlwillson: Move Y2 Field Urania\n\tmneme: Well played.\n\n70) mneme: Discover Y1 Urania G2 Melpomene\n\tdlwillson: Thank you!\n\n71) dlwillson: M R1 Field Urania\n\n72) mneme: Sacrifice G2 Mneme\nBuild B2 Mneme\nBuild B3 Calliope\n\n73) dlwillson: T B3 G3 Field\n\n74) mneme: Trade B1 G1 Calliope\n\n75) dlwillson: S G3 Dlwillson\nB R2 Urania\nB R2 Urania\nB R3 Dlwillson\n\n76) mneme: Build R3 Calliope\n\n77) dlwillson: S B2 Field\nT R3 G3 Dlwillson\nT R1 G1 Sea\n\n78) mneme: Move R3 Calliope Melpomene\n\n79) dlwillson: Sacrifice Y2 Field\nMove R1 Urania Mneme\nMove G1 Dlwillson Sea\n\n80) mneme: Attack R1 Mneme\n\n81) dlwillson: S Y3 Field\nM R2 Urania Mneme\nM R2 Urania Mneme\nC Mneme R\nM G3 Field Mneme\n\n\tdlwillson: The new rule about cat&#39;ing whenever you want to... Allows for more complicated doomsday machines.\n\tmneme: I know it does.  I worked out the two step sequence after I commented. :)\r\n\r\nWell played.\n\tdlwillson: Thank you and good game!\n\tmneme: The same!  And looks like this is the game that took you past me in the rankings; congrats!\n\tdlwillson: Thanks again! Remember TwoShort? \n\tmneme: How could I forget him?\n\nHomeworlds Online (SDG# 34371)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.25, Ended: 2018.8.3\nParticipants: Babamots (S), Draw5PlayAll (N)\nWinner: Babamots\n\n1) Draw5PlayAll: Pass\n\n2) Babamots: Homeworld B2 R1 G3\n\tDraw5PlayAll: You go first. Good luck.\n\tBabamots: Thanks! You too.\r\n\r\nFor the record, this is for the Great Tournament.\n\n3) Draw5PlayAll: Homeworld B3 R2 G3\n\n4) Babamots: Build G1 Babamots\n\tDraw5PlayAll: I never use 2/2/7 for anything else, so if nothing else, 227 + Rated = Tournament.\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Babamots: Build Y1 Babamots\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) Babamots: Discover Y1 Babamots G3 Risa\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) Babamots: Build Y2 Risa\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G1 G1\n\n14) Babamots: Move Y1 Risa G1\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) Babamots: Sacrifice G3 Babamots\nBuild Y2 G1\nBuild Y3 Risa\nBuild Y3 Babamots\n\n17) Draw5PlayAll: Build Y3 Draw5playall\n\tBabamots: Not sure what this&#39;ll do. Should be interesting.\n\n18) Babamots: Sacrifice Y2 Risa\nMove Y1 G1 Draw5playall\nMove Y2 G1 Draw5playall\nCatastrophe Draw5playall Y\n\n19) Draw5PlayAll: Build R1 Draw5playall\n\n20) Babamots: Trade Y1 G1 Babamots\n\n21) Draw5PlayAll: Build Y1 G1\n\n22) Babamots: Build Y1 Risa\n\n23) Draw5PlayAll: Sacrifice Y1 G1\nMove R1 Draw5playall G1\n\n24) Babamots: Build G1 Babamots\n\n25) Draw5PlayAll: Build G2 Draw5playall\n\n26) Babamots: Build G2 Babamots\n\n27) Draw5PlayAll: Build R2 G1\n\n28) Babamots: Trade G2 R2 Babamots\n\n29) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n30) Babamots: Move Y3 Risa G1\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 G1\nBuild Y1 G1\nBuild Y2 G1\nCatastrophe G1 Yellow\n\n32) Babamots: Build R3 Babamots\n\n33) Draw5PlayAll: Sacrifice R1 G1\nPass\n\n34) Babamots: Sacrifice Y3 Babamots\nMove R3 Babamots Risa\nMove R3 Risa G1\nMove R3 G1 Draw5playall\n\n35) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R2 G1 Draw5playall\nC Draw5playall Red\nMove R3 G1 Draw5playall\n\n36) Babamots: Trade R2 Y2 Babamots\n\tDraw5PlayAll: Darn\n\n37) Draw5PlayAll: Trade R3 G3 Draw5playall\n\tDraw5PlayAll: I should have sacrificed the Y2 to switch the places of the R3@G1 and my R1@Draw5PlayAll\n\tBabamots: Yeah, I think so too. Or you could have traded y2 for g2 which would have let you build into a catastrophe if I invaded.\n\n38) Babamots: Move Y1 Risa Babamots\n\n39) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n40) Babamots: Build G1 Babamots\n\tDraw5PlayAll: DARN!!!!\n\n41) Draw5PlayAll: Pass\n\tBabamots: Pretty weird situation here.\n\n42) Babamots: Trade G1 B1 Babamots\n\n43) Draw5PlayAll: Move Y3 Draw5playall Babamots\n\tBabamots: Gonna make me come over there I see :-D\n\n\tDraw5PlayAll: It let me do that?!\n\tBabamots: Wow! What happened? I&#39;m sure I&#39;ve gotten an error from SDG when I tried to abandon my home.\r\n\r\nSince you issued the challenge, will you record the result?\r\n\r\nGood game. And good luck with the tournament!\n\tBabamots: I&#39;ll go ahead and record it. I&#39;m a little OCD about my spreadsheet being up to date :-).\n\nHomeworlds Online (SDG# 34370)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.25, Ended: 2018.8.2\nParticipants: Draw5PlayAll (S), tetsuhari (N)\nWinner: Draw5PlayAll\n\n1) tetsuhari: Homeworld Y2 G3 B3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) tetsuhari: Build B1 Tetsuhari\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) tetsuhari: Discover B1 Tetsuhari G1 Greenone\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) tetsuhari: Build B1 Greenone\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n\tDraw5PlayAll: ...\n\nHomeworlds Online (SDG# 34367)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.26, Ended: 2018.8.19\nParticipants: DodoBirb (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) DodoBirb: Homeworld B1 R2 G3\n\tDraw5PlayAll: For the tournament. I am letting you go first.\n\n3) Draw5PlayAll: Homeworld B1 G2 B3 *\n\tDodoBirb: Good Luck\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) DodoBirb: Build Y1 Dodobirb\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) DodoBirb: Build Y1 Dodobirb\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) DodoBirb: Discover Y1 Dodobirb G3 Biggreen\n\n13) Draw5PlayAll: Move B2 Draw5playall Biggreen\n\n14) DodoBirb: Build Y2 Biggreen\n\n15) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n16) DodoBirb: Trade Y1 R1 Dodobirb\n\n17) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack Y2 Biggreen\nAttack Y1 Biggreen\n\n18) DodoBirb: Build Y1 Dodobirb\n\n19) Draw5PlayAll: Build B2 Biggreen\n\n20) DodoBirb: Discover Y1 Dodobirb G3 Threepip\n\n21) Draw5PlayAll: Build B2 Draw5playall\n\n22) DodoBirb: Sacrifice G3 Dodobirb\nBuild Y2 Threepip\nBuild Y2 Threepip\nBuild Y3 Dodobirb\n\n23) Draw5PlayAll: Sacrifice Y2 Biggreen\nMove Y1 Biggreen Draw5playall\nMove Y1 Draw5playall Threepip\nCatastrophe Threepip Y\n\n24) DodoBirb: Discover Y1 Dodobirb G3 Earth\n\n25) Draw5PlayAll: Build B3 Biggreen\n\n26) DodoBirb: Build Y1 Earth\n\n27) Draw5PlayAll: Trade B3 R3 Biggreen\n\n28) DodoBirb: Build Y1 Earth\n\n29) Draw5PlayAll: Build B3 Biggreen\n\n30) DodoBirb: Move Y1 Earth Dodobirb\n\n31) Draw5PlayAll: Build Y2 Draw5playall\n\n32) DodoBirb: Trade Y1 G1 Dodobirb\n\n33) Draw5PlayAll: Trade B3 Y3 Biggreen\n\n34) DodoBirb: Build G1 Dodobirb\n\n35) Draw5PlayAll: Build B3 Biggreen\n\n36) DodoBirb: Build G1 Dodobirb\n\n37) Draw5PlayAll: Discover B3 Biggreen G2 Expand\n\n38) DodoBirb: Discover G1 Dodobirb B3 Bluesky\n\n39) Draw5PlayAll: Build B3 Biggreen\n\n40) DodoBirb: Build G2 Bluesky\n\n41) Draw5PlayAll: Sacrifice Y3 Biggreen\nMove B3 Biggreen Dodobirb\nMove B3 Expand Earth\nMove B3 Earth Dodobirb\n\n42) DodoBirb: Attack B3N Dodobirb\n\tDraw5PlayAll: You cannot trade for blue!\n\n43) Draw5PlayAll: Sacrifice R3 Biggreen\nAttack B3 Dodobirb\nAttack Y3 Dodobirb\nAttack R1 Dodobirb\n\tDodoBirb: I&#39;m basically defeated next turn.\n\n44) DodoBirb: Pass\n\n45) Draw5PlayAll: Trade B3 G3 Dodobirb\n\n46) DodoBirb: Pass\n\n47) Draw5PlayAll: Build G2 Dodobirb\nCatastrophe Dodobirb Green\n\tDraw5PlayAll: I will get the form filled later. Good game.\n\tDodoBirb: Good Game.\n\n\nHomeworlds Online (SDG# 34362)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.26, Ended: 2018.8.21\nParticipants: nycavri (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Is this a GHWT18?\n\n2) nycavri: Homeworld B3 G2 Y3\n\tnycavri: Yup - TaGG!\n\tnycavri: I&#39;ll send in the game start form.\n\n3) wil: Build G1 Wil\n\twil: cool\n\n4) nycavri: Build Y1 Nycavri\n\n5) wil: Trade G1 Y1 Wil\n\n6) nycavri: Build Y2 Nycavri\n\n7) wil: Build Y2 Wil\n\n8) nycavri: Discover Y1 Nycavri G1 Deacon\n\n9) wil: Discover Y1 Wil G3 G3\n\n10) nycavri: Trade Y2 G2 Nycavri\n\twil: will be around about 45 min more..\n\n11) wil: Build Y2 Wil\n\n12) nycavri: Build Y2 Deacon\n\n13) wil: Trade Y2 G2 Wil\n\n14) nycavri: Build G1 Nycavri\n\n15) wil: Discover G2 Wil B3 B3\n\n16) nycavri: Move G1 Nycavri Deacon\n\n17) wil: Build G1 B3\n\n18) nycavri: Discover Y1 Deacon G3 May\n\n19) wil: Move Y2 Wil B3\n\n20) nycavri: Move Y1 May Wil\n\n21) wil: Sacrifice G2 B3\nBuild G2 Wil\nBuild G3 B3\n\n22) nycavri: Sacrifice G2 Nycavri\nBuild Y2 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\twil: noice\n\n23) wil: Trade G2 R2 Wil\n\n24) nycavri: Trade Y3 R3 Nycavri\n\n25) wil: Build G2 Wil\n\n26) nycavri: Build R1 Nycavri\n\n27) wil: Sacrifice Y2 B3\nMove G1 B3 Deacon\nMove G2 Wil Deacon\nCatastrophe Deacon G\n\n28) nycavri: Trade R1 Y1 Nycavri\n\n29) wil: Build G1 B3\n\n30) nycavri: Build Y1 Nycavri\n\n31) wil: B Y2 G3\n\n32) nycavri: Discover Y1 Nycavri G1 John\n\n33) wil: M Y2 G3 John\n\n34) nycavri: Build Y2 Nycavri\n\n35) wil: B R1 Wil\n\n36) nycavri: Sacrifice Y1 John\nDiscover Y1 Nycavri Y1 Mercury\n\n37) wil: B G1 Wil\n\twil: Fingers not doing what brain told them\n\n38) nycavri: Build R1 Nycavri\n\n39) wil: S G3 Wil\nB G2 Wil\nB G2 B3\nB G3 Wil\n\n40) nycavri: Move R1 Nycavri Mercury\n\n41) wil: Trade G3 Y3 B3\n\n42) nycavri: Build Y2 Nycavri\n\n43) wil: Sacrifice G3 Wil\nBuild G3 B3\nBuild Y3 B3\nBuild G3 Wil\n\n44) nycavri: Discover Y2 Nycavri B1 Paul\n\n45) wil: Build Y3 John\n\n46) nycavri: Move Y2 Paul G3\n\n47) wil: Sacrifice Y3 B3\nMove G3 B3 John\nMove Y3 John Nycavri\nMove G3 John Nycavri\n\n48) nycavri: Attack Y3 Nycavri\n\n49) wil: Sacrifice R2 Wil\nAttack Y3 Nycavri\nAttack R3 Nycavri\n\n50) nycavri: Build Y3 Nycavri\n\n51) wil: Sacrifice R3 Nycavri\nAttack Y3 Nycavri\nAttack Y2 Nycavri\nPass\n\n\nHomeworlds Online (SDG# 34374)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.26, Ended: 2018.9.26\nParticipants: Felix (S), mneme (N)\nWinner: Felix\n\n1) mneme: Homeworld R1 B3 G3\n\n2) Felix: Homeworld B2 Y3 G3\n\n3) mneme: Build G1 Mneme\n\tFelix: Good luck and have fun! :)\n\tmneme: You too!\r\n\n\n4) Felix: Build G1 Felix\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Felix: Trade G1 R1 Felix\n\n7) mneme: Build Y1 Mneme\n\n8) Felix: Build R1 Felix\n\n9) mneme: Build Y1 Mneme\n\n10) Felix: B R2 Felix\n\n11) mneme: Discover Y1 Mneme B2 Clio\n\n12) Felix: Discover R1 Felix B1 Out\n\n13) mneme: Build Y2 Mneme\n\n14) Felix: Sacrifice G3 Felix\nBuild R2 Out\nBuild R2 Out\nBuild R3 Felix\n\n15) mneme: Discover Y1 Mneme B2 Ghost\n\n16) Felix: Trade R3 G3 Felix\n\n17) mneme: Discover Y1 Mneme Y2 Hecate\n\n18) Felix: Trade R2 Y2 Out\n\n19) mneme: Build Y3 Mneme\n\n20) Felix: Move R2 Out Clio\n\n21) mneme: Trade Y2 R2 Mneme\n\n22) Felix: Attack Y1 Clio\n\n23) mneme: Sacrifice Y1 Hecate\nMove G3 Mneme Clio\n\n24) Felix: Discover R2 Clio B3 Edgeward\n\n25) mneme: Move R2 Mneme Clio\n\n26) Felix: Build R3 Felix\n\n27) mneme: Attack Y1 Clio\n\n28) Felix: Discover R2 Felix G1 Grinch\n\n29) mneme: Build R3 Clio\n\n30) Felix: Trade R3 Y3 Felix\n\n31) mneme: Move G3 Clio Out\n\n32) Felix: Sacrifice Y2 Out\nMove R1 Out Clio\nMove R2 Grinch Clio\nCatastrophe Clio Red\n\n33) mneme: Trade Y1 R1 Ghost\n\n34) Felix: Build R2 Felix\n\n35) mneme: Build G1 Out\n\n36) Felix: Discover R1 Felix B1 Splint\n\n37) mneme: Trade G1 B1 Out\n\n38) Felix: Sacrifice G3 Felix\nBuild R2 Splint\nBuild R3 Edgeward\nBuild R3 Felix\n\n39) mneme: Build B3 Out\n\n40) Felix: Trade R3 G3 Edgeward\n\n41) mneme: Trade B3 R3 Out\n\n42) Felix: Build R3 Edgeward\n\n43) mneme: Build B3 Out\n\n44) Felix: Trade R2 Y2 Edgeward\n\n45) mneme: Sacrifice G3 Out\nBuild R2 Ghost\nBuild Y1 Mneme\nBuild Y1 Clio\n\n46) Felix: Trade R3 G3 Felix\n\n47) mneme: Trade Y1 G1 Mneme\n\n48) Felix: Build R3 Edgeward\n\n49) mneme: Trade R1 G1 Ghost\n\n50) Felix: Move R3 Edgeward Ghost\n\n51) mneme: Sacrifice Y1 Clio\nDiscover R2 Ghost Y1 Erato\n\n52) Felix: Attack G1 Ghost\n\n53) mneme: Trade B3 G3 Out\n\n54) Felix: Trade R3 B3 Ghost\n\n55) mneme: Build G1 Out\n\n56) Felix: Build G2 Edgeward\n\n57) mneme: Trade G1 Y1 Out\n\n58) Felix: Sacrifice G2 Edgeward\nBuild R1 Felix\nBuild R3 Edgeward\n\n59) mneme: Build Y2 Out\n\n60) Felix: M Y3 Felix Splint\n\n61) mneme: Build Y2 Mneme\n\n62) Felix: Sacrifice Y2 Edgeward\nMove B3 Ghost Erato\nMove R3 Edgeward Clio\n\n63) mneme: Sacrifice Y1 Clio\nDiscover R2 Erato Y2 Euterpe\n\n64) Felix: Sacrifice G1 Ghost\nBuild B2 Erato\n\n65) mneme: Build Y1 Out\n\n66) Felix: Move B3 Erato Euterpe\n\n67) mneme: Sacrifice Y1 Out\nDiscover R2 Euterpe Y1 Thalia\n\n68) Felix: Sacrifice B2 Erato\nTrade R1 Y1 Splint\nTrade R2 B2 Felix\n\n69) mneme: Build G1 Out\n\n70) Felix: Sacrifice Y3 Splint\nMove B3 Euterpe Out\nMove B2 Felix Out\nCatastrophe Out Blue\nMove G3 Edgeward Clio\n\n71) mneme: Trade Y3 G3 Mneme\n\n72) Felix: S Y1 Splint\nD R3 Edgeward Y2 Plank\n\n73) mneme: Build Y1 Mneme\n\n74) Felix: B G1 Felix\n\tFelix: Sorry, forgot to call catastrophe the first time!\n\n75) mneme: Discover Y1 Mneme B2 Euterpe\n\tmneme: seems fair.  \n\n76) Felix: T G3 Y3 Felix\n\n77) mneme: Sacrifice G3 Mneme\nBuild Y1 Euterpe\nBuild Y2 Euterpe\nBuild Y3 Mneme\n\n78) Felix: S Y3 Felix\nM R3 Plank Mneme\nM R3 Clio Mneme\nM G3 Clio Mneme\n\n79) mneme: Sacrifice R2 Thalia\nAttack R3 Mneme\nAttack R3 Mneme\n\n80) Felix: Sacrifice R2 Splint\nAttack R3 Mneme\nAttack R3 Mneme\n\n81) mneme: Trade Y2 R2 Mneme\nCatastrophe Mneme R\n\n82) Felix: Sacrifice R1 Felix\nAttack Y3 Mneme\n\tFelix: Fingers crossed this works! It&#39;s all or nothing.\n\n83) mneme: Trade Y1 R1 Euterpe\n\tmneme: GL -- don&#39;t mess it up!\n\n84) Felix: Trade Y3 R3 Mneme\n\n\tFelix: Unless I&#39;m missing something, that may be it. Very good game!\n\tmneme: Yup!  You clearly had it a few turns ago, but there was still place for error until the turn before the catastrophe, so I figured I&#39;d let it go for a bit!  GG!\r\n\n\tFelix: It&#39;s always a good idea to let it play if there&#39;s even a small chance of the opponent making an error. I&#39;ve definitely flubbed games I thought I had in the bag before! \n\nHomeworlds Online (SDG# 34380)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.26, Ended: 2018.8.2\nParticipants: tetsuhari (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\n2) tetsuhari: Homeworld Y3 G2 B3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\n4) tetsuhari: Build B1 Tetsuhari\n\n5) Felix: Trade G1 B1 Felix\n\n6) tetsuhari: Discover B1 Tetsuhari G1 Greenone\n\n7) Felix: Build G1 Felix\n\n8) tetsuhari: Build B1 Greenone\n\n9) Felix: Build B2 Felix\n\n10) tetsuhari: Trade B1 Y1 Greenone\n\n11) Felix: Trade B2 Y2 Felix\n\n12) tetsuhari: Build Y1 Greenone\n\n13) Felix: Discover B1 Felix G1 Conk\n\n14) tetsuhari: Trade Y1 R1 Greenone\n\n15) Felix: Build G2 Felix\n\n16) tetsuhari: Build R1 Greenone\n\n17) Felix: Discover G1 Felix B1 Plink\n\n18) tetsuhari: Build B2 Greenone\n\n19) Felix: Sacrifice G3 Felix\nBuild G2 Plink\nBuild G3 Plink\nBuild G3 Felix\n\n\nHomeworlds Online (SDG# 34378)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.27, Ended: 2018.9.17\nParticipants: DodoBirb (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) DodoBirb: Homeworld B1 R2 G3\n\n3) Felix: B G1 Felix\n\n4) DodoBirb: Build G1 Dodobirb\n\tFelix: Have fun and good luck!\n\tDodoBirb: You too!\n\n5) Felix: T G1 Y1 Felix\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\n7) Felix: Build G1 Felix\n\n8) DodoBirb: Build G1 Dodobirb\n\n9) Felix: Trade G1 B1 Felix\n\n10) DodoBirb: Trade G1 B1 Dodobirb\n\n11) Felix: Build B2 Felix\n\n12) DodoBirb: Build B2 Dodobirb\n\n13) Felix: Discover B1 Felix G2 Rim\n\n14) DodoBirb: Discover B1 Dodobirb G3 Green\n\n15) Felix: Build G1 Felix\n\n16) DodoBirb: Build G1 Dodobirb\n\n17) Felix: Sacrifice G3 Felix\nBuild B2 Rim\nBuild B3 Rim\nBuild B3 Felix\n\n18) DodoBirb: Sacrifice Y1 Dodobirb\nMove B1 Green Rim\nCatastrophe Rim B\n\n19) Felix: Trade B3 G3 Felix\n\n20) DodoBirb: Trade G1 Y1 Dodobirb\n\n21) Felix: Build B1 Felix\n\n22) DodoBirb: Build G1 Dodobirb\n\n23) Felix: Discover B2 Felix G2 Out\n\n24) DodoBirb: Discover G1 Dodobirb B3 Deepblue\n\n25) Felix: Build B1 Out\n\n26) DodoBirb: Build G1 Deepblue\n\n27) Felix: Trade B2 Y2 Out\n\n28) DodoBirb: Build G2 Dodobirb\n\n29) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B2 Out\nBuild B3 Felix\n\n30) DodoBirb: Sacrifice G3 Dodobirb\nBuild G2 Deepblue\nBuild G3 Dodobirb\nBuild G3 Dodobirb\n\n31) Felix: Build G3 Felix\n\n32) DodoBirb: Build Y1 Dodobirb\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Out\nBuild Y2 Felix\n\n34) DodoBirb: Discover Y1 Dodobirb Y3 Sun\n\n35) Felix: Build Y3 Felix\n\n36) DodoBirb: Discover G2 Dodobirb Y3 Star\n\n37) Felix: Trade B2 R2 Out\n\n38) DodoBirb: Sacrifice G2 Star\nBuild Y3 Dodobirb\nPass\n\n39) Felix: Discover B3 Felix G2 Grinch\n\n40) DodoBirb: Trade G2 B2 Deepblue\n\n41) Felix: Move B1 Out Deepblue\n\n42) DodoBirb: Sacrifice Y1 Sun\nDiscover B2 Deepblue G2 Farm\n\n43) Felix: Move Y1 Felix Grinch\n\n44) DodoBirb: Sacrifice Y1 Dodobirb\nMove B2 Farm Felix\n\n45) Felix: Move B1 Felix Grinch\n\n46) DodoBirb: Trade B2 G2 Felix\n\n47) Felix: Attack G2 Felix\n\n48) DodoBirb: Discover B2 Dodobirb Y3 Sunset\n\n49) Felix: Sacrifice G1 Felix\nBuild B2 Deepblue\n\n50) DodoBirb: Trade B2 R2 Sunset\n\n51) Felix: Sacrifice R2 Out\nAttack G1 Deepblue\nAttack G1 Deepblue\n\n52) DodoBirb: Move G3 Dodobirb Deepblue\n\n53) Felix: S G3 Felix\nB G1 Deepblue\nB G3 Felix\nB B2 Out\nC Deepblue Green\n\n54) DodoBirb: Build G1 Dodobirb\n\n55) Felix: Trade B3 R3 Grinch\n\n56) DodoBirb: Discover G1 Dodobirb G3 Factory\n\n57) Felix: Move R3 Grinch Factory\n\n58) DodoBirb: Sacrifice G1 Factory\nBuild G1 Dodobirb\n\n59) Felix: Build B3 Grinch\n\n60) DodoBirb: Trade G1 R1 Dodobirb\n\n61) Felix: Build R1 Factory\n\n62) DodoBirb: Move R1 Dodobirb Sunset\n\n63) Felix: Trade B2 R2 Deepblue\n\n64) DodoBirb: Build G1 Dodobirb\n\n65) Felix: S Y2 Out\nM R3 Factory Dodobirb\nM R1 Factory Dodobirb\n\n66) DodoBirb: Attack R3N Dodobirb\n\n67) Felix: S Y3 Felix\nM R2 Deepblue Dodobirb\nC Dodobirb Red\nM B1 Grinch Dodobirb\nM B2 Out Dodobirb\n\n68) DodoBirb: Sacrifice R2 Sunset\nAttack B2N Dodobirb\nAttack B1N Dodobirb\n\n69) Felix: Move B3 Grinch Dodobirb\nCatastrophe Dodobirb Blue\n\n\tDodoBirb: GG. \n\tFelix: Thanks, you too! Good luck with the rest of your games.\n\nHomeworlds Online (SDG# 34375)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.27, Ended: 2018.9.4\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\tmneme: Good luck &amp; Have fun!\n\tts52: Thanks. You too.\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) ts52: Trade G1 B1 Ts52\n\n7) mneme: Build Y1 Mneme\n\n8) ts52: Build B1 Ts52\n\n9) mneme: Discover Y1 Mneme B3 Terpsichore\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) mneme: Build Y1 Mneme\n\n12) ts52: Build B2 Kermit\n\n13) mneme: Discover Y1 Mneme B3 Erato\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) mneme: Build Y2 Mneme\n\n16) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n17) mneme: Sacrifice G3 Mneme\nBuild Y2 Terpsichore\nBuild Y3 Mneme\nBuild Y3 Erato\n\n18) ts52: Trade B3 G3 Ts52\n\n19) mneme: Trade Y3 R3 Mneme\n\n20) ts52: Trade B2 R2 Kermit\n\n21) mneme: Move Y3 Erato Kermit\n\n22) ts52: Sacrifice Y2 Kermit\nMove R2 Kermit Erato\nMove B2 Kermit Erato\n\n23) mneme: Move Y3 Kermit Erato\n\n24) ts52: Attack Y1N Erato\n\n25) mneme: Sacrifice R3 Mneme\nAttack R2 Erato\nAttack Y1 Erato\nAttack B2 Erato\n\n26) ts52: Trade B1 R1 Ts52\n\n27) mneme: Trade Y3 G3 Erato\n\n28) ts52: Build G1 Ts52\n\n29) mneme: Sacrifice G3 Erato\nBuild Y2 Terpsichore\nBuild Y3 Erato\nBuild Y3 Mneme\n\n30) ts52: Build R1 Ts52\n\n31) mneme: Trade Y2 G2 Mneme\n\n32) ts52: Move R1 Ts52 Kermit\n\n33) mneme: Build Y2 Mneme\n\n34) ts52: Build R2 Kermit\n\n35) mneme: Move Y3 Erato Kermit\n\n36) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Kermit\nBuild R3 Ts52\nCatastrophe Kermit Red\n\n37) mneme: Move G2 Mneme Erato\n\n38) ts52: Discover R1 Ts52 G2 Oscar\n\n39) mneme: Build R1 Erato\n\n40) ts52: Build R2 Oscar\n\n41) mneme: Sacrifice R1 Erato\nAttack B1 Kermit\n\n42) ts52: Build G1 Ts52\n\n43) mneme: Build B1 Kermit\n\n44) ts52: Discover G1 Ts52 R2 Elmo\n\n45) mneme: Build B2 Kermit\n\n46) ts52: Build G1 Elmo\n\n47) mneme: Discover Y1 Terpsichore R1 Nemesis\n\n48) ts52: Build G3 Ts52\n\n49) mneme: Move B2 Kermit Ts52\n\n50) ts52: Attack B2N Ts52\n\n51) mneme: Sacrifice Y3 Kermit\nMove B1 Kermit Ts52\nMove B1 Kermit Ts52\nCatastrophe Ts52 B\nMove Y1 Mneme Ts52\n\n52) ts52: Attack Y1N Ts52\n\n53) mneme: Sacrifice Y2 Terpsichore\nMove Y2 Mneme Ts52\nMove Y1 Nemesis Ts52\nCatastrophe Ts52 Y\n\tmneme: Good game!\r\n\n\n\tts52: Well played. Thanks for the game!\n\tmneme: You too, on both counts!\n\nHomeworlds Online (SDG# 34385)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.27, Ended: 2018.8.17\nParticipants: speardane (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) speardane: Homeworld G1 B2 Y3\n\tDraw5PlayAll: Hello, this is the tournament game, good luck, and so yeah.\n\tspeardane: Yep! Good luck. :)\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) speardane: Build Y1 Speardane\n\tDraw5PlayAll: !! The start form does not have your name as one of the options !!\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tspeardane: I was a late entrant. I&#39;ll email Jonathan.\n\tDraw5PlayAll: Fixed\n\n6) speardane: Trade Y3 R3 Speardane\n\n7) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n8) speardane: Build Y1 Speardane\n\n9) Draw5PlayAll: Build G2 Draw5playall\n\n10) speardane: Discover Y1 Speardane G3 Delos\n\n11) Draw5PlayAll: Discover G2 Draw5playall B2 Notariffs\n\n12) speardane: Build Y1 Speardane\n\n13) Draw5PlayAll: Build G2 Notariffs\n\n14) speardane: Discover Y1 Speardane G3 Lebling\n\n15) Draw5PlayAll: Build G2 Draw5playall\n\n16) speardane: Build R1 Speardane\n\n17) Draw5PlayAll: Build G3 Notariffs\n\n18) speardane: Move R1 Speardane Delos\n\n19) Draw5PlayAll: Trade G2 R2 Notariffs\n\n20) speardane: Build Y2 Speardane\n\n21) Draw5PlayAll: Build G2 Notariffs\n\n22) speardane: Build Y2 Speardane\n\n23) Draw5PlayAll: Trade G3 Y3 Notariffs\n\n24) speardane: Build Y2 Delos\n\n25) Draw5PlayAll: Build Y3 Draw5playall\n\n26) speardane: Discover Y1 Speardane G3 Kotok\n\n27) Draw5PlayAll: Move G2 Notariffs Kotok\n\n28) speardane: Discover Y1 Kotok B2 Minsky\n\n29) Draw5PlayAll: Sacrifice G2 Kotok\nBuild G2 Notariffs\nBuild G3 Notariffs\n\n30) speardane: Move Y1 Delos Minsky\n\n31) Draw5PlayAll: Discover G2 Notariffs B3 Nowalls\n\n32) speardane: Sacrifice Y2 Speardane\nMove Y1 Minsky Draw5playall\nMove Y1 Minsky Draw5playall\nCatastrophe Draw5playall Yellow\n\n33) Draw5PlayAll: Build Y1 Notariffs\n\n34) speardane: Build Y1 Delos\n\n35) Draw5PlayAll: Move Y3 Notariffs Draw5playall\n\n36) speardane: Discover Y1 Delos B2 Kotok\n\n37) Draw5PlayAll: Move G2 Notariffs Lebling\n\n38) speardane: Move Y1 Lebling Kotok\n\n39) Draw5PlayAll: Sacrifice G2 Lebling\nBuild G2 Notariffs\nBuild G3 Nowalls\n\n40) speardane: Trade Y1 R1 Kotok\n\n41) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G3 Nowalls Speardane\nMove G3 Notariffs Delos\nMove G3 Delos Speardane\n\n42) speardane: Attack G3 Speardane\n\n43) Draw5PlayAll: Sacrifice R2 Notariffs\nAttack G3 Speardane\nAttack R3S Speardane\n\tspeardane: Good game. :)\n\tspeardane: I should note, you still have to actually administer the coup de grace here.\n\n44) speardane: Pass\n\n45) Draw5PlayAll: Attack Y2 Speardane\n\n\nHomeworlds Online (SDG# 34386)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.28, Ended: 2018.8.21\nParticipants: DodoBirb (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B2 Y3 G3\n\n2) DodoBirb: Homeworld B1 R2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) DodoBirb: Build G1 Dodobirb\n\tdlwillson: Good luck!\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) dlwillson: B B2 Dlwillson\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) dlwillson: Discover B1 Dlwillson G1 Field\n\n10) DodoBirb: Trade B1 Y1 Dodobirb\n\n11) dlwillson: B G1 Dlwillson\n\n12) DodoBirb: Build G1 Dodobirb\n\n13) dlwillson: S G3 Dlwillson\nB B1 Field\nB B3 Field\nB B3 Dlwillson\n\n14) DodoBirb: Build B3 Dodobirb\n\n15) dlwillson: S B2 Dlwillson\nT B3 G3 Dlwillson\nT B3 Y3 Field\n\n16) DodoBirb: Discover B3 Dodobirb G3 Green\n\n17) dlwillson: M B1 Field Green\n\n18) DodoBirb: Trade B2 R2 Dodobirb\n\n19) dlwillson: T G1 R1 Dlwillson\n\n20) DodoBirb: Trade B3 Y3 Green\n\n21) dlwillson: B B2 Field\n\n22) DodoBirb: Build Y1 Green\n\n23) dlwillson: T B1 Y1 Green\n\n24) DodoBirb: Discover Y3 Green G1 Littlegreen\n\n25) dlwillson: T B2 G2 Field\n\n26) DodoBirb: Build Y2 Littlegreen\n\n27) dlwillson: B Y2 Field\n\n28) DodoBirb: Build Y2 Dodobirb\n\n29) dlwillson: T Y3 R3 Field\n\n30) DodoBirb: Discover G1 Dodobirb Y3 Sun\n\n31) dlwillson: Move G2 Field Sun\n\n32) DodoBirb: Sacrifice G1 Sun\nBuild G1 Dodobirb\n\n33) dlwillson: B G2 Sun\n\n34) DodoBirb: Discover G1 Dodobirb B3 Deeperblue\n\n35) dlwillson: S G2 Sun\nB B1 Field\nB G2 Dlwillson\n\n36) DodoBirb: Build G2 Deeperblue\n\n37) dlwillson: S G3 Dlwillson\nB R1 Dlwillson\nB B2 Field\nB G3 Dlwillson\n\n38) DodoBirb: Trade G2 B2 Deeperblue\n\n39) dlwillson: Sacrifice R1 Dlwillson\nAttack Y1 Green\n\n40) DodoBirb: Discover Y1 Dodobirb B3 Ocean\n\n41) dlwillson: S Y2 Field\nM Y1 Green Littlegreen\nM Y1 Green Littlegreen\nC Littlegreen Y\n\n42) DodoBirb: Sacrifice Y1 Ocean\nDiscover B2 Deeperblue G1 Grass\n\n43) dlwillson: S G3 Dlwillson\nB G2 Sun\nB G3 Sun\nB G3 Dlwillson\n\n44) DodoBirb: Build B3 Grass\n\n45) dlwillson: S B2 Field\nT G3 B3 Sun\nT G2 R2 Sun\n\n46) DodoBirb: Trade Y2 B2 Dodobirb\n\n47) dlwillson: S G3 Dlwillson\nB G2 Sun\nB G3 Sun\nB G3 Dlwillson\n\n48) DodoBirb: Trade B2 Y2 Grass\n\n49) dlwillson: S G3 Dlwillson\nB R1 Field\nB R1 Sun\nB G3 Dlwillson\n\n50) DodoBirb: Build B2 Grass\n\n51) dlwillson: T G3 Y3 Sun\n\n52) DodoBirb: Trade B2 Y2 Dodobirb\n\n53) dlwillson: S Y3 Sun\nM R2 Sun Dodobirb\nM R1 Sun Dodobirb\nM B3 Sun Dodobirb\nC Dodobirb R\n\n54) DodoBirb: Trade B3 R3 Grass\n\n55) dlwillson: S R3 Field\nA G3 Dodobirb\nA Y2 Dodobirb\nPass\n\n\tdlwillson: Thank you! Good game!\n\tDodoBirb: Good Game!\n\nHomeworlds Online (SDG# 34395)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.30, Ended: 2018.8.28\nParticipants: Babamots (S), random56 (N)\nWinner: Babamots\n\n1) random56: Homeworld R1 B3 G3\n\tBabamots: This is for the Great Tournament. Good luck!\n\n2) Babamots: Homeworld B3 Y2 G3\n\n3) random56: Build G1 Random56\n\n4) Babamots: Build G1 Babamots\n\n5) random56: Trade G1 Y1 Random56\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) random56: Build G1 Random56\n\n8) Babamots: Build G1 Babamots\n\n9) random56: Discover G1 Random56 Y2 Aden\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) random56: Build G1 Aden\n\n12) Babamots: Build R1 Babamots\n\n13) random56: Build G1 Random56\n\n14) Babamots: Build G2 Babamots\n\n15) random56: Sacrifice G3 Random56\nBuild G2 Aden\nBuild G2 Random56\nBuild G3 Random56\n\n16) Babamots: Sacrifice G3 Babamots\nBuild R2 Babamots\nBuild G3 Babamots\nBuild G3 Babamots\n\n17) random56: Discover G1 Aden Y1 Kite\n\n18) Babamots: Discover R1 Babamots B1 Bolarus\n\n19) random56: Trade G3 Y3 Random56\n\n20) Babamots: Sacrifice G2 Babamots\nBuild R2 Bolarus\nBuild R2 Bolarus\n\n21) random56: Trade G1 B1 Random56\n\n22) Babamots: Move G3 Babamots Bolarus\n\n23) random56: Move B1 Random56 Aden\n\n24) Babamots: Move R1 Babamots Kite\n\n25) random56: Sacrifice G1 Kite\nBuild G1 Random56\n\n26) Babamots: Sacrifice G3 Babamots\nBuild R3 Babamots\nBuild R3 Kite\nBuild R3 Kite\n\n27) random56: Trade G2 Y2 Aden\n\n28) Babamots: Trade G3 Y3 Bolarus\n\n29) random56: Build Y3 Aden\n\n30) Babamots: Move Y3 Bolarus Aden\nCatastrophe Aden Y\n\n31) random56: Discover G1 Random56 Y2 Top\n\n32) Babamots: Move R3 Kite Top\n\n33) random56: Discover G1 Top Y3 Dnr\n\n34) Babamots: Discover Y1 Babamots G1 Rubicun\n\tBabamots: Is &quot;dnr&quot; for &quot;Department of Natural Resources&quot; or &quot;Do not Resuscitate&quot;?\n\n35) random56: Build G1 Random56\n\trandom56: lol, I am a nurse so the second \n\n36) Babamots: Build Y2 Rubicun\n\n37) random56: Build G2 Dnr\n\n38) Babamots: Move R3 Kite Top\n\n\nHomeworlds Online (SDG# 34379)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.30, Ended: 2018.8.22\nParticipants: Felix (S), eliscinsky (N)\nWinner: Felix\n\n1) eliscinsky: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 R3 G3\n\n3) eliscinsky: Build G1 Eliscinsky\n\tFelix: Have fun and good luck!\n\n4) Felix: Build G1 Felix\n\teliscinsky: Thanks! U2\n\n5) eliscinsky: Trade G1 R1 Eliscinsky\n\n6) Felix: Trade G1 Y1 Felix\n\n7) eliscinsky: Build R1 Eliscinsky\n\n8) Felix: Build Y1 Felix\n\n9) eliscinsky: Trade R1 B1 Eliscinsky\n\n10) Felix: Build Y2 Felix\n\n11) eliscinsky: Build B1 Eliscinsky\n\n12) Felix: Trade Y2 B2 Felix\n\n13) eliscinsky: Build G1 Eliscinsky\n\n14) Felix: Build B2 Felix\n\n15) eliscinsky: Trade B1 R1 Eliscinsky\n\n16) Felix: Trade B2 R2 Felix\n\n17) eliscinsky: Discover R1 Eliscinsky Y3 Atos\n\n18) Felix: Build Y2 Felix\n\n19) eliscinsky: Build G1 Eliscinsky\n\n20) Felix: Discover Y1 Felix B2 Out\n\n21) eliscinsky: Build R1 Eliscinsky\n\n22) Felix: Build Y2 Felix\n\n23) eliscinsky: Build R2 Eliscinsky\n\n24) Felix: Discover Y2 Felix G2 Splint\n\n25) eliscinsky: Trade R2 Y2 Eliscinsky\n\n26) Felix: Sacrifice G3 Felix\nBuild Y3 Out\nBuild Y3 Felix\nBuild B1 Felix\n\n27) eliscinsky: Move G1 Eliscinsky Atos\n\n28) Felix: Move B1 Felix Splint\n\n29) eliscinsky: Discover R1 Eliscinsky B3 Portos\n\n30) Felix: Build B3 Splint\n\n31) eliscinsky: Move G1 Eliscinsky Portos\n\n32) Felix: Move B3 Splint Atos\n\n33) eliscinsky: Build R2 Atos\n\n34) Felix: Sacrifice R2 Felix\nAttack R2 Atos\nAttack R1 Atos\n\n35) eliscinsky: Move G1 Atos Eliscinsky\n\n36) Felix: Discover Y3 Out R3 Pump\n\n37) eliscinsky: Move Y2 Eliscinsky Portos\n\n38) Felix: Sacrifice Y2 Felix\nMove Y3 Pump Eliscinsky\nMove B3 Atos Eliscinsky\n\n39) eliscinsky: Sacrifice G3 Eliscinsky\nBuild R2 Portos\nBuild R2 Eliscinsky\nBuild R3 Eliscinsky\n\n\n40) Felix: Trade B3 R3 Eliscinsky\nCatastrophe Eliscinsky Red\n\teliscinsky: This is getting REALLY exciting!\r\nThanks for such a great game.\n\n41) eliscinsky: Move R2 Portos Out\n\tFelix: No problem! It has been a fun one. I think I might be able to close the deal here in a few moves, but honestly I&#39;m a bit nervous about it.\n\n42) Felix: Sacrifice R2 Atos\nAttack B1 Eliscinsky\nAttack G1 Eliscinsky\n\n\tFelix: Good game! It was fun. Good luck with your others!\n\teliscinsky: Thanks, I learned a lot. :)\r\nGood Luck on the Tourney!\n\nHomeworlds Online (SDG# 34376)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.30, Ended: 2018.8.9\nParticipants: eliscinsky (S), speardane (N)\nWinner: speardane\n\n1) speardane: Homeworld R3 B2 G3\n\n2) eliscinsky: Homeworld B3 Y2 G3\n\n3) speardane: Build G1 Speardane\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) speardane: Trade G3 Y3 Speardane\n\n6) eliscinsky: Trade G1 R1 Eliscinsky\n\n7) speardane: Build G1 Speardane\n\n8) eliscinsky: Build R1 Eliscinsky\n\n9) speardane: Discover G1 Speardane B1 Delos\n\n10) eliscinsky: Move R1 Eliscinsky Delos\n\n11) speardane: Sacrifice G1 Delos\nBuild G1 Speardane\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) speardane: Discover G1 Speardane B1 Lebling\n\n14) eliscinsky: Trade G1 Y1 Eliscinsky\n\n15) speardane: Build G1 Lebling\n\n16) eliscinsky: Sacrifice G3 Eliscinsky\nBuild R1 Delos\nBuild R2 Delos\nBuild R2 Eliscinsky\n\n17) speardane: Trade G1 Y1 Lebling\n\n18) eliscinsky: Trade R1 G1 Eliscinsky\n\n19) speardane: Build G2 Speardane\n\n20) eliscinsky: Build G2 Eliscinsky\n\n21) speardane: Build G2 Speardane\n\n22) eliscinsky: Move G2 Eliscinsky Delos\n\n23) speardane: Discover G1 Speardane B1 Kotok\n\n24) eliscinsky: Trade R1 Y1 Delos\n\n25) speardane: Sacrifice G2 Speardane\nBuild Y2 Speardane\nBuild G2 Kotok\n\n26) eliscinsky: Build G3 Delos\n\n27) speardane: Sacrifice G2 Kotok\nBuild G2 Lebling\nBuild G3 Kotok\n\n28) eliscinsky: Sacrifice G3 Delos\nBuild R1 Delos\nBuild Y2 Delos\nBuild G3 Delos\n\n29) speardane: Sacrifice Y2 Speardane\nDiscover G1 Lebling B2 Minsky\nMove G3 Kotok Eliscinsky\n\n30) eliscinsky: Sacrifice G3 Delos\nBuild R1 Eliscinsky\nBuild R2 Eliscinsky\nBuild G3 Delos\n\n31) speardane: Build G3 Kotok\n\n32) eliscinsky: Sacrifice Y2 Delos\nMove R2 Delos Speardane\nMove R1 Delos Speardane\n\n33) speardane: Trade G3 R3 Kotok\n\n34) eliscinsky: Move R1 Delos Speardane\nCatastrophe Speardane R\n\n35) speardane: Sacrifice R3 Kotok\nAttack R2 Eliscinsky\nAttack R2 Eliscinsky\nAttack G1 Eliscinsky\n\n36) eliscinsky: Sacrifice G3 Delos\nBuild G3 Delos\nBuild Y2 Delos\nBuild R1 Eliscinsky\nCatastrophe Eliscinsky R\n\n37) speardane: Trade G3 R3 Eliscinsky\n\n38) eliscinsky: Sacrifice Y2 Delos\nMove G2 Delos Eliscinsky\nMove G3 Delos Eliscinsky\n\n39) speardane: Sacrifice G2 Lebling\nBuild G2 Eliscinsky\nBuild G3 Kotok\nCatastrophe Eliscinsky Green\n\n40) eliscinsky: Trade Y1 G1 Eliscinsky\n\n41) speardane: Attack G1 Eliscinsky\n\tspeardane: Good game :)\n\n\nHomeworlds Online (SDG# 34391)\nVariants: &quot;Hard time&quot;\nStarted: 2018.7.30, Ended: 2018.8.4\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: H G3 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\tDraw5PlayAll: Go whoeverisreadingthis!\n\n4) wil: Build Y1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: D Y1 Wil G2 G2\n\n7) Trydnt: Discover B1 Trydnt G2 Gee2\n\n8) wil: B Y2 Wil\n\n9) Trydnt: Build G1 Trydnt\n\twil: Lol, haven&#39;t thought this one thru...we will see how she goes\n\n10) wil: Discover Y2 Wil B2 B2\n\n11) Trydnt: Build B1 Gee2\n\n12) wil: Build Y2 Wil\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) wil: Build Y2 G2\n\n15) Trydnt: Build B2 Trydnt\n\n16) wil: Discover Y2 B2 B3 B3\n\n17) Trydnt: Trade B1 R1 Trydnt\n\n18) wil: Build Y3 G2\n\n19) Trydnt: Move B2 Trydnt G2\n\n20) wil: Sacrifice Y3 G2\nMove Y1 G2 B3\nDiscover Y2 G2 B3 No3s4u\nDiscover Y3 Wil B2 B2\n\twil: I will abandon you on the island!\n\n21) Trydnt: Build B1 G2\n\n22) wil: Build Y3 Wil\n\n23) Trydnt: Build B2 Gee2\n\n24) wil: T Y3 R3 B2\n\n25) Trydnt: Build G1 Trydnt\n\n26) wil: Move Y3 Wil B2\n\n27) Trydnt: Trade B1 G1 Gee2\n\n28) wil: Trade Y3 G3 B2\n\n29) Trydnt: Build G1 Gee2\n\n30) wil: S G3 B2\nB Y3 Wil\nB Y3 B3\nB Y3 No3s4u\n\n31) Trydnt: Trade B2 G2 G2\n\n32) wil: Trade Y3 G3 No3s4u\n\n33) Trydnt: Build B1 G2\n\n34) wil: Build Y3 No3s4u\n\n35) Trydnt: Build B2 G2\n\n36) wil: Trade Y3 R3 No3s4u\n\n37) Trydnt: Trade G3 Y3 Trydnt\n\twil: dem virtual handcuffs doe\n\n38) wil: S Y3 B3\nM G3 No3s4u B2\nM R3 B2 Trydnt\nM G3 B2 Trydnt\n\n39) Trydnt: Sacrifice G2 G2\nBuild G2 Trydnt\nBuild R1 Trydnt\n\twil: just a couple moves to go...what a long slog\n\n40) wil: S R3 No3s4u\nA R1 Trydnt\nA R1 Trydnt\nA Y3 Trydnt\n\n41) Trydnt: Trade G1 R1 Trydnt\nCatastrophe Trydnt R\n\twil: A day late and pound short on the switch...appears I caught you asleep at the wheel this time.\n\twil: A day late and pound short on the switch...appears I caught you asleep at the wheel this time.\n\twil: Of course I&#39;ve seen you pull rabbits outta the hat before...\n\n42) wil: Trade G3 R3 Trydnt\n\n43) Trydnt: Build G1 Gee2\nCatastrophe Gee2 G\n\n44) wil: A G2 Trydnt\n\n\twil: Yes, it is often a trick to get it to allow self destruction.\n\nHomeworlds Online (SDG# 34415)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.4, Ended: 2018.8.19\nParticipants: Trydnt (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: For the record, this is for the tournament.\r\n\r\nGood luck!\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) Babamots: Build G1 Babamots\n\n4) Trydnt: Build G1 Trydnt\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Babamots: Build Y2 Babamots\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Babamots: Build Y2 Babamots\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) Babamots: Trade Y1 R1 Babamots\n\n12) Trydnt: Build Y1 G3\n\n13) Babamots: Discover Y2 Babamots G2 Risa\n\n14) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 G3 G2 G2\nDiscover Y1 G3 B2 B2\n\n15) Babamots: Build R1 Babamots\n\n16) Trydnt: Build G1 Trydnt\n\n17) Babamots: Move R1 Babamots G2\n\n18) Trydnt: Discover Y1 G2 G3 G3\n\n19) Babamots: Build R2 Babamots\n\n20) Trydnt: Trade G3 R3 Trydnt\n\n21) Babamots: Move R1 Babamots B2\n\n22) Trydnt: Discover Y1 B2 B1 B1\n\n23) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y3 Babamots\nBuild Y3 Babamots\n\n24) Trydnt: Build Y3 G3\n\n25) Babamots: Sacrifice Y2 Babamots\nMove Y2 Risa G3\nMove Y2 Risa G3\nCatastrophe G3 Y\n\n26) Trydnt: Build R2 Trydnt\n\n27) Babamots: Trade Y3 G3 Babamots\n\n28) Trydnt: Trade R3 G3 Trydnt\n\n29) Babamots: Move Y3 Babamots G2\n\n30) Trydnt: Discover G1 Trydnt Y3 Y3\n\n31) Babamots: Discover Y3 G2 R3 Romulus\n\n32) Trydnt: Build G1 Trydnt\n\tBabamots: I should have written down what I was planning to do next. I think I had a good idea.\n\n33) Babamots: Sacrifice G3 Babamots\nBuild R2 G2\nBuild R3 B2\nBuild R3 Babamots\n\n34) Trydnt: Sacrifice G1 Trydnt\nBuild Y1 B1\n\n35) Babamots: Trade R1 G1 B2\n\n36) Trydnt: Trade Y1 R1 B1\n\n37) Babamots: Build G1 B2\n\n38) Trydnt: Build G2 Trydnt\n\n39) Babamots: Trade G1 Y1 B2\n\n40) Trydnt: Sacrifice G2 Trydnt\nBuild G1 Trydnt\nBuild G2 Y3\n\n41) Babamots: Trade R2 G2 Babamots\n\n42) Trydnt: Sacrifice G2 Y3\nBuild R2 Trydnt\nBuild Y2 B1\n\n43) Babamots: Build Y2 B2\n\n44) Trydnt: Discover G1 Trydnt Y3 Why3\n\n45) Babamots: Move R3 B2 B1\n\n46) Trydnt: Sacrifice Y2 B1\nDiscover Y1 B1 G2 Gee2\nDiscover R1 B1 Y2 Y2\n\n47) Babamots: Build G3 B2\n\n48) Trydnt: Build G3 Y3\n\n49) Babamots: Sacrifice Y1 B2\nMove R2 G2 Why3\n\n50) Trydnt: Move G1 Why3 B2\n\n51) Babamots: Sacrifice G3 B2\nBuild Y1 Romulus\nBuild Y2 B2\nBuild G3 Babamots\n\n52) Trydnt: Sacrifice G1 B2\nBuild G1 Trydnt\n\n53) Babamots: Trade G2 B2 Babamots\n\n54) Trydnt: Move G3 Y3 B2\n\n55) Babamots: Sacrifice Y2 B2\nMove G1 B2 B1\nMove Y2 B2 Y3\n\n56) Trydnt: Build G2 B2\n\n57) Babamots: Trade B2 Y2 Babamots\n\n58) Trydnt: Sacrifice G3 B2\nBuild G3 Y3\nPass\nPass\n\n59) Babamots: Sacrifice Y2 Y3\nMove R3 B1 Gee2\nMove G3 Babamots B2\n\n60) Trydnt: Discover Y1 Gee2 B3 B3\n\n61) Babamots: Sacrifice G1 B1\nBuild Y2 Babamots\n\n62) Trydnt: Build G1 B2\n\n63) Babamots: Sacrifice Y2 Babamots\nMove Y3 Romulus B2\nMove G3 B2 B3\n\n64) Trydnt: Sacrifice Y1 B3\nDiscover R2 Trydnt B3 Bee3\n\n65) Babamots: Sacrifice R2 Why3\nAttack G1 B2\nAttack G2 B2\n\n66) Trydnt: Trade R2 Y2 Bee3\n\n67) Babamots: Sacrifice G2 B2\nBuild Y1 B2\nBuild Y3 Romulus\n\n68) Trydnt: Discover G1 Y3 B2 Be2\n\n69) Babamots: Build G2 B3\n\n70) Trydnt: Sacrifice G3 Y3\nBuild G3 Be2\nBuild Y3 Bee3\nBuild R2 Trydnt\n\n71) Babamots: Sacrifice Y3 B2\nMove G2 B3 Trydnt\nMove G3 B3 Trydnt\nMove Y3 Romulus Trydnt\nCatastrophe Trydnt G\n\n72) Trydnt: Sacrifice Y3 Bee3\nMove Y2 Bee3 Trydnt\nMove R1 Y2 Romulus\nMove R1 Romulus Trydnt\n\n73) Babamots: Sacrifice R3 Gee2\nAttack R2 Trydnt\nAttack R2 Trydnt\nAttack Y2 Trydnt\n\n74) Trydnt: Sacrifice G1 Be2\nBuild R2 Trydnt\n\n75) Babamots: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nAttack R2 Trydnt\n\n\tBabamots: GG :-)\n\tTrydnt: that all went so badly not a good start to the tournament... for me. congrats you played superbly :)\n\tBabamots: Sorry it&#39;s not a great start to the tournament for you, but I thought you played very well. I look forward to our next game!\n\tTrydnt: as do I :)\n\nHomeworlds Online (SDG# 34420)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.5, Ended: 2018.8.5\nParticipants: ajo (S), speardane (N)\nWinner: ajo\n\n1) speardane: Homeworld Y3 G2 B3\n\n2) ajo: Homeworld B3 R2 G3\n\n3) speardane: Build B1 Speardane\n\n4) ajo: Build G1 Ajo\n\n5) speardane: Trade B3 R3 Speardane\n\n6) ajo: Build G1 Ajo\n\n7) speardane: Build B1 Speardane\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) speardane: Discover B1 Speardane G1 Delos\n\n10) ajo: Discover G1 Ajo Y1 Alpha\n\n11) speardane: Build B1 Delos\n\n12) ajo: Build G1 Alpha\n\n13) speardane: Trade B1 Y1 Delos\n\n14) ajo: Build G2 Ajo\n\n15) speardane: Build B1 Delos\n\n16) ajo: Build G2 Ajo\n\n17) speardane: Build B2 Delos\n\n18) ajo: Trade G2 R2 Ajo\n\n19) speardane: Trade B2 G2 Delos\n\n20) ajo: Move R2 Ajo Delos\n\n21) speardane: Build G3 Delos\n\n22) ajo: Attack G2 Delos\n\n23) speardane: Trade B1 R1 Delos\n\n24) ajo: Build G3 Delos\nCatastrophe Delos Green\n\n25) speardane: Build B1 Speardane\n\n26) ajo: Discover G2 Ajo B1 Beta\n\n27) speardane: Discover B1 Speardane R1 Delos\n\n28) ajo: Build G1 Ajo\n\n29) speardane: Build R1 Speardane\n\n30) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Beta\nBuild G3 Ajo\n\n31) speardane: Move R1 Speardane Delos\n\n32) ajo: Trade G3 Y3 Beta\n\n33) speardane: Trade R1 Y1 Delos\n\n34) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Ajo\nBuild G3 Beta\n\n35) speardane: Build R1 Speardane\n\n36) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Beta\nBuild Y2 Beta\n\n37) speardane: Trade R3 Y3 Speardane\n\n38) ajo: Sacrifice Y3 Beta\nMove Y2 Beta Speardane\nMove Y2 Beta Speardane\nMove G2 Alpha Speardane\nCatastrophe Speardane Yellow\n\n39) speardane: Trade Y1 R1 Delos\n\n40) ajo: Sacrifice G3 Ajo\nBuild G3 Speardane\nBuild Y1 Ajo\nPass\n\n41) speardane: Pass\n\n42) ajo: Sacrifice G1 Ajo\nBuild G1 Speardane\nCatastrophe Speardane Green\n\tDraw5PlayAll: I just realized you played against your own creation...\r\n\r\nIs the speardane account going to be ever used again?\n\n\nHomeworlds Online (SDG# 34310)\nStarted: 2018.8.6, Ended: 2018.8.10\nParticipants: Ryzorrin (S), MobyNostromo (N)\nWinner: Ryzorrin\n\n\tRyzorrin: homeworld b1 g2 r3\n\tRyzorrin: Oh this is chat.  Okay, hi.\n\nHomeworlds Online (SDG# 34430)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.6, Ended: 2018.8.11\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld Y3 B2 G3\n\n2) wil: H Y2 B1 G3\n\tdlwillson: Hi Wil!\n\n3) dlwillson: B G1 Dlwillson\n\twil: I was hoping to be able to get a few games under my belt and confidence up prior to playing you!\n\n4) wil: B G1 Wil\n\tdlwillson: Ha! Good thing I got to you before you&#39;re properly warmed up. I&#39;ll have a chance here!\n\n5) dlwillson: T G1 R1 Dlwillson\n\twil: I&#39;ll say good luck, all the while knowing I am the one that need it.\n\n6) wil: T G1 B1 Wil\n\tdlwillson: I dunno. I&#39;m playing you, Felix, and mneme at the same time. I think I&#39;ll need a lot of luck.\r\n\r\nHave fun!\n\n7) dlwillson: B R1 Dlwillson\n\twil: Concentrate on those games!\n\n8) wil: B B1 Wil\n\n9) dlwillson: B R1 Dlwillson\n\n10) wil: D B1 Wil Y3 Y3\n\n11) dlwillson: Discover R1 Dlwillson Y1 Sol\n\n12) wil: B G1 Wil\n\tdlwillson: I&#39;m pretty sure you got the jump on me here.\n\twil: I am trying.\n\n13) dlwillson: Build G1 Dlwillson\n\n14) wil: S G3 Wil\nB B2 Wil\nB B2 Y3\nB B3 Y3\n\n15) dlwillson: Discover R1 Dlwillson Y1 Alsosol\n\n16) wil: T B3 R3 Y3\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Sol\nBuild R2 Alsosol\nBuild R2 Dlwillson\n\n18) wil: Discover B2 Wil R3 R3\n\n19) dlwillson: B R3 Dlwillson\n\n20) wil: B B3 Wil\n\n21) dlwillson: T R3 B3 Dlwillson\n\n22) wil: T B3 Y3 Wil\n\n23) dlwillson: D B3 Dlwillson Y1 Yasol\n\n24) wil: B B3 Wil\n\tdlwillson: What a strange game! I&#39;m not sure why I&#39;m still alive. Am I dead? I don&#39;t think so... &lt;pinch&gt; Ow!\n\n25) dlwillson: B R3 Dlwillson\n\n26) wil: S G1 Wil\nB B3 Y3\n\n27) dlwillson: T R3 G3 Dlwillson\n\n28) wil: S B2 Y3\nT B3 G3 Y3\nT B3 G3 Wil\n\n29) dlwillson: M B3 Yasol R3\n\n30) wil: S G3 Y3\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n31) dlwillson: Attack B2 R3\n\n32) wil: S B2 Y3\nT B3 G3 Y3\nT B3 R3 Wil\n\n33) dlwillson: S B2 R3\nT R2 Y2 Sol\nT R2 Y2 Alsosol\n\n34) wil: B R2 Wil\n\n35) dlwillson: Move R1 Alsosol R3\n\n36) wil: M R3 Wil Y3\n\n37) dlwillson: T R1 G1 R3\n\n38) wil: Move R3 Y3 Sol\n\tdlwillson: Do you do those system names specifically to make it hard for your opponent enter their orders?\n\twil: I always think it makes it easier...easier to remember which stars I am moving from...  It only makes it hard when folks use my system with me.\n\n39) dlwillson: S G3 Dlwillson\nB R1 Sol\nB R2 Sol\nB G1 Dlwillson\nC Sol R\n\n40) wil: Sacrifice Y3 Wil\nMove R3 Y3 Sol\nMove G3 Y3 Sol\nMove G3 Sol Dlwillson\n\n\twil: heavy duty reboot\n\twil: thought it was gonna be the end.\n\tdlwillson: Darn! That&#39;s the end!\n\twil: Crap. You are right, i thought your b3 and g1 were 1 away...\n\twil: I got lucky and capitslized.early on..\n\twil: I guess i gotta get out there snd challenge now.\n\tdlwillson: I lost you when I went for the long stack of reds and you went for the short stack of blues. You got into the bigs before me and played perfectly. I thought I had enough material at the end to hold you off, but I was mistaken. A horseshoe nail more, and I could&#39;ve stopped that attack!\n\twil: Yeah, the bank accountant gave me a stock tip and said the brokers were at a discount.\n\twil: Nobody can blame you for investing in defense, historically it has been known to payoff...but alas we were in a time of peace...\n\nHomeworlds Online (SDG# 34431)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.7, Ended: 2018.8.21\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\tdlwillson: Hi Felix! How&#39;ve you been?\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Hey, doing well! Busy though. Probably too busy for this tournament! We had our second kid and bought a new house, so lots to do! How are you, man?\n\n4) Felix: Build G1 Felix\n\tdlwillson: Congrats on the new kid!\r\n\r\nI&#39;m doing well. Been interviewing for a new job, and learning the new crop of technology. Mostly, Kubernetes, Prometheus, OpenStack, and GitLab.\n\tFelix: Thanks!\r\n\r\nWow, sounds like a lot to learn! And here I am, still doing most of my work in PHP :)\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Felix: Trade G1 R1 Felix\n\tdlwillson: Do you or anyone you know need DevOps training?\r\n\r\nMy Software Freedom School project is doing a cap at the end of the month and we&#39;re still 4 campers short of a cabin-full\r\nhttp://sofree.us/devopscamp.html\n\tFelix: Looks awesome! I know I&#39;d really enjoy it, but I don&#39;t know if my boss or his company has the time or money to invest in it at the moment. Is this something you do yearly, or quarterly or anything? I&#39;ll show it to him and see what he thinks! \n\n7) dlwillson: Build G1 Dlwillson\n\n8) Felix: Build G1 Felix\n\tdlwillson: We run a camp annually, but this is our first DevOps Camp. Not sure what we&#39;ll run next year. We have scholarship funds available for woman technologists. Some of the board-members did a fund-raiser for a couple of their friends, but then the friends backed out. So weird. But, it&#39;s a great opportunity for some young gal who wants to learn this stuph.\n\n9) dlwillson: T G1 B1 Dlwillson\n\tFelix: At the moment, I don&#39;t know any women who are remotely interested in this stuph, haha. Well good luck with the camp! If nothing else I&#39;d just love the chance to do some camping in Colorado! Still haven&#39;t been.\n\n10) Felix: Trade G1 B1 Felix\n\n11) dlwillson: B B2 Dlwillson\n\n12) Felix: Build B2 Felix\n\n13) dlwillson: D B1 Dlwillson G2 Field\n\tFelix: I hate to keep mirroring you, but you&#39;re making the best available moves!\n\n14) Felix: Trade B1 Y1 Felix\n\tdlwillson: I think the first few turns are somewhat deterministic.\n\n15) dlwillson: Trade B2 Y2 Dlwillson\n\n16) Felix: Build Y1 Felix\n\tdlwillson: Hey! Now, I&#39;m mirroring you! You have the lead, sir. Where shall we go next?\n\n17) dlwillson: Move Y2 Dlwillson Field\n\tFelix: Let&#39;s build a yellow!\n\n18) Felix: Discover Y1 Felix G1 Grinch\n\tdlwillson: I guess the mirroring phase is over. I don&#39;t want any more yellow, right now.\n\n19) dlwillson: B G1 Dlwillson\n\n20) Felix: M B2 Felix Grinch\n\n21) dlwillson: B B1 Field\n\n22) Felix: Build B2 Grinch\n\n23) dlwillson: T B1 G1 Field\n\tFelix: Back to monkey see, monkey do!\n\n24) Felix: Build G2 Felix\n\tdlwillson: Um... Simon says you have to copy that.\n\tFelix: Hmm... &quot;t b1 g1 field&quot; isn&#39;t working for some reason.\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Dlwillson\nBuild G3 Field\n\n26) Felix: Build Y1 Grinch\n\n27) dlwillson: T G2 Y2 Dlwillson\n\n28) Felix: Move Y1 Grinch Field\n\n29) dlwillson: Trade G3 R3 Field\n\n30) Felix: Build Y3 Grinch\n\n31) dlwillson: M G1 Field Grinch\n\n32) Felix: Sacrifice Y3 Grinch\nMove Y1 Field Dlwillson\nMove Y1 Grinch Field\nMove Y1 Field Dlwillson\nCatastrophe Dlwillson Yellow\n\n33) dlwillson: S Y2 Field\nM G1 Dlwillson Felix\nM G1 Grinch Felix\nC Felix G\n\tdlwillson: Oh, right! You still had *that* one! Aargh! :-)\n\n34) Felix: Sacrifice B2 Grinch\nTrade R1 B1 Felix\nTrade Y1 G1 Felix\n\tdlwillson: I&#39;m not dead. I&#39;m feeling better.\n\tFelix: Haha, dang. There was something in my gut telling me not to make that move. Now I know why!\n\tdlwillson: I think I see a better move I could have made! I&#39;m not going to take back, because what I did offs pretty good, but I think I should have pushed you my G3 for free, instead.\n\tdlwillson: s/offs/is/\n\n35) dlwillson: B B2 Field\n\n36) Felix: Build B2 Grinch\n\n37) dlwillson: Trade B2 Y2 Field\n\n38) Felix: Trade B1 R1 Felix\n\tdlwillson: I&#39;m taking your name in vain, over here: http://superdupergames.org/main.html?page=play_homeworlds&amp;num=34464\n\n39) dlwillson: Sacrifice Y2 Field\nMove G3 Dlwillson Felix\nMove R3 Field Grinch\n\tFelix: Ha, so you are! I wish tagging worked here, as well. I&#39;d love to see an upgraded online Homeworlds platform soon!\n\n40) Felix: Trade R1 G1 Felix\n\n41) dlwillson: B G2 Felix\nC Felix G\n\tFelix: Well played and good game!\n\tdlwillson: TY GG\r\nGood luck with the rest of your tournament games!\r\n\r\nWant to play an unrated game? I want to try a yellow and red home system.\n\tFelix: Sure! I&#39;m always up for a game against you\n\tDraw5PlayAll: Say, does anyone know what quuxplusone&#39;s username here is? I thought he said he plays here but I have never seen the name quuxplusone on SDG...\n\tdlwillson: I don&#39;t know, but you could ask him yourself on this BGG thread:\r\nhttps://boardgamegeek.com/thread/2014184/great-homeworlds-tournament-2018\n\tBabamots: quuxplusone = ajo\n\n\nHomeworlds Online (SDG# 34372)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.7, Ended: 2018.9.4\nParticipants: Laurie_Menke (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\tLaurie_Menke: Enjoy!  :)\n\n2) Laurie_Menke: Homeworld G3 B1 Y3\n\n3) Draw5PlayAll: Homeworld B1 G3 B3 *\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\tLaurie_Menke: Just a reminder to fill out the tournament form...\n\n6) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) Laurie_Menke: Build Y1 Laurie_menke\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) Laurie_Menke: Discover Y1 Laurie_menke G2 Green\n\n11) Draw5PlayAll: Discover B2 Draw5playall G2 Denial\n\n12) Laurie_Menke: Build Y1 Laurie_menke\n\n13) Draw5PlayAll: Build B2 Draw5playall\n\n14) Laurie_Menke: Build R1 Laurie_menke\n\n15) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n16) Laurie_Menke: Build Y1 Green\n\n17) Draw5PlayAll: Build B2 Denial\n\n18) Laurie_Menke: Build Y2 Green\n\n19) Draw5PlayAll: Build B2 Draw5playall\n\n20) Laurie_Menke: Build Y2 Laurie_menke\n\n21) Draw5PlayAll: Build B3 Denial\n\n22) Laurie_Menke: Sacrifice Y2 Green\nMove Y1 Green Draw5playall\nMove Y1 Green Draw5playall\n\n23) Draw5PlayAll: Trade B3 Y3 Denial\n\n24) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n25) Draw5PlayAll: Build B3 Denial\n\n26) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n27) Draw5PlayAll: Trade B3 R3 Denial\n\tDraw5PlayAll: If the only purpose of that was to sac it to blow my yellow, you could have just built through my green star directly.\n\n28) Laurie_Menke: Build G1 Yellow\n\tLaurie_Menke: Yes, but then you could have moved in and catastrophe&#39;d my yellow.\n\n29) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack Y1 Draw5playall\nAttack Y1 Draw5playall\n\tLaurie_Menke: Hi D5PA! Just wanted to let you know that I will be off grid starting today (8/24) until Monday (9/4). We have 4 games going, and all of them are hard time high stakes games. I&#39;m going to try to find enough internet access to play once or twice during that time from my phone, but if I don&#39;t, I will have to forfeit those games. I don&#39;t like it, but can live with it if it happens.  ;)  Sorry for the timing problems... I thought we&#39;d be done by now...\n\n\tLaurie_Menke: Darn it! I missed it by 3 minutes. Argh!  :(\n\tLaurie_Menke: Well, congratulations, D5PA. See you in our other games.\n\tBabamots: Sorry about the timeout! I wish I had thought to suggest pausing the timer when I heard about cutting it close with the trip.\n\tLaurie_Menke: No worries, Babamots. I should have remembered that trick myself!  (Though I&#39;m not sure if D5PA would have agreed anyway...) There will be other games.  :)\n\nHomeworlds Online (SDG# 34432)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.7, Ended: 2018.8.14\nParticipants: dlwillson (S), Laurie_Menke (N)\nWinner: dlwillson\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi dlwillson! Have fun!  :)\n\n2) dlwillson: H B2 Y3 G3\n\tdlwillson: You too! Good luck and have fun!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) dlwillson: T G1 R1 Dlwillson\n\tLaurie_Menke: Just a reminder to fill out the tournament form...\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) dlwillson: B G1 Dlwillson\n\n9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) dlwillson: Build B1 Dlwillson\n\n13) Laurie_Menke: Discover G1 Yellow Y1 Closer\n\n14) dlwillson: D B1 Dlwillson Y1 Sol\n\n15) Laurie_Menke: Build G1 Closer\n\n16) dlwillson: S G3 Dlwillson\nB B2 Sol\nB B2 Sol\nB B3 Dlwillson\n\n17) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Closer\nBuild G2 Laurie_menke\nBuild G2 Laurie_menke\n\n18) dlwillson: T B3 G3 Dlwillson\n\n19) Laurie_Menke: Discover G2 Closer G3 Farther\n\n20) dlwillson: D B2 Sol R2 Mars\n\n21) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild G2 Farther\nBuild G3 Laurie_menke\n\n22) dlwillson: S G3 Dlwillson\nB B3 Dlwillson\nB B3 Sol\nB B3 Mars\n\n23) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n24) dlwillson: T B3 G3 Sol\n\n25) Laurie_Menke: Sacrifice Y1 Laurie_menke\nDiscover G2 Farther Y2 Escape\n\n26) dlwillson: Build G1 Sol\n\n27) Laurie_Menke: Sacrifice G2 Farther\nBuild G2 Escape\nBuild G3 Laurie_menke\n\n28) dlwillson: T B3 Y3 Dlwillson\n\n29) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n30) dlwillson: Sacrifice G3 Sol\nBuild B3 Mars\nBuild B3 Dlwillson\nBuild G2 Sol\n\n31) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild Y1 Laurie_menke\nBuild G3 Closer\n\n32) dlwillson: Sacrifice Y3 Dlwillson\nMove B3 Mars Laurie_menke\nMove B3 Mars Laurie_menke\nPass\n\n33) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G1 Closer Dlwillson\nMove G1 Closer Dlwillson\n\n34) dlwillson: S R1 Dlwillson\nA R1 Laurie_menke\n\n35) Laurie_Menke: Move G3 Closer Mars\n\tLaurie_Menke: LOL... welcome to our humble home, oh peaceful ones!  ;)\n\n36) dlwillson: Sacrifice B2 Mars\nTrade B2 R2 Sol\nTrade B3 R3 Laurie_menke\n\n37) Laurie_Menke: Sacrifice G3 Mars\nBuild G3 Dlwillson\nBuild Y1 Laurie_menke\nPass\n\tdlwillson: Thank you! I&#39;d offer to peacefully trade, but this isn&#39;t Agricola and our heads are very pointy.\n\tLaurie_Menke: :D\n\n38) dlwillson: Sacrifice R3 Laurie_menke\nAttack G3 Laurie_menke\nAttack G3 Laurie_menke\nAttack G3 Dlwillson\n\n39) Laurie_Menke: Move G2 Escape Laurie_menke\n\n40) dlwillson: Sacrifice R2 Sol\nAttack G2 Laurie_menke\nAttack Y1 Laurie_menke\n\tLaurie_Menke: Well, this game is nothing if not exciting!\n\n41) Laurie_Menke: Sacrifice G2 Escape\nBuild Y2 Laurie_menke\nBuild Y2 Laurie_menke\n\tLaurie_Menke: Argh! I did not see that one coming.  :(\n\tLaurie_Menke: Oh... wait...  hmmm.... I&#39;m just going to pause for a moment to make sure you did what you intended to do...\n\tdlwillson: That was a very, very good move. I considered ignoring it, letting you cat those blues, grabbing one of the yellows. Then, I realized that those blues are all I have at home, and what you were about to do to me. Your heads are very pointy, too!\n\tLaurie_Menke: LOL!\n\n42) dlwillson: Sacrifice G2 Laurie_menke\nBuild B2 Laurie_menke\nBuild B2 Laurie_menke\nCatastrophe Laurie_menke Y\nCatastrophe Laurie_menke B\n\tLaurie_Menke: I don&#39;t think it really matters in the end... I think you&#39;ve got me...\n\tdlwillson: Yes, thanks. That was a typo. I meant to grab the big, of course.\n\n\tdlwillson: Hmm... I could&#39;ve done that with slightly more bang, but that was pretty good. Thank you for the excellent fun game, and in particular, thank you for not taking advantage of my typo at 2018-08-14 16:18:26!\n\tLaurie_Menke: I lovely bang!  :)\n\tLaurie_Menke: *A* lovely bang!\n\tdlwillson: LOL :-)\n\nHomeworlds Online (SDG# 34339)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.8.8, Ended: 2018.8.17\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\twil: Or this one?\n\twil: H y2 b1 g3\n\n2) Trydnt: Homeworld R3 B2 G3\n\tTrydnt: nope just for fun\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B B1 Wil\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: S G3 Wil\nB B1 Y3\nB B2 Y3\nB B3 Wil\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) wil: T B3 Y3 Wil\n\n14) Trydnt: Build Y2 G1\n\n15) wil: D B1 Y3 G1 Gwon\n\n16) Trydnt: Build Y2 Trydnt\n\n17) wil: B B3 Gwon\n\n18) Trydnt: Build Y3 G1\n\n19) wil: T B3 G3 Gwon\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) wil: T B1 R1 Y3\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: S G3 Gwon\nB B1 Wil\nB B3 Gwon\nB B3 Y3\n\n24) Trydnt: Discover Y2 G1 B3 B3\n\n25) wil: T B3 R3 Gwon\n\n26) Trydnt: Discover Y3 G1 B3 Bee3\n\n27) wil: T B3 G3 Y3\n\n28) Trydnt: Discover Y1 G1 B3 B33\n\n29) wil: B G1 Y3\n\n30) Trydnt: Trade Y1 G1 B33\n\n31) wil: Discover G1 Y3 Y1 Y1\n\n32) Trydnt: Build G2 B33\n\n33) wil: Build G2 Y3\n\n34) Trydnt: Trade G1 R1 B33\n\n35) wil: Move G3 Y3 Wil\n\n36) Trydnt: Trade Y3 G3 Bee3\n\n37) wil: Discover G3 Wil Y3 Whynot3\n\n38) Trydnt: Discover Y1 Trydnt R1 R1\n\twil: timely\n\n39) wil: Build R2 Gwon\n\n40) Trydnt: Discover R2 Trydnt G1 G1\n\n41) wil: Sacrifice G1 Y1\nBuild R2 Y3\n\n42) Trydnt: Build R3 B33\n\n43) wil: Trade R1 Y1 Y3\n\n44) Trydnt: Discover Y2 Trydnt R1 Are1\n\n45) wil: Move Y1 Y3 Gwon\n\n46) Trydnt: Move Y1 R1 B33\n\n47) wil: Discover R2 Y3 G1 Gee1\n\n48) Trydnt: Sacrifice Y2 Are1\nMove Y1 B33 Wil\nMove Y2 B3 Wil\nCatastrophe Wil Y\n\n49) wil: Move R3 Gwon Wil\n\n50) Trydnt: Trade R3 B3 B33\n\n51) wil: Build G2 Whynot3\n\twil: well that was devastating....but it has been there for ever wondering when you were gonna pull the trigger!\n\tTrydnt: it only became possible on my last move\n\n52) Trydnt: Sacrifice Y2 Trydnt\nMove B3 B33 Wil\nCatastrophe Wil B\nPass\n\n\twil: lol, i missed you gettng the b3 completely\n\tTrydnt: haha I think the only way to stop it was to sac a y and move the blue out (and that was your only yellow I believe) or to sac a b1 in your hw and trade the other b1 for something else\n\twil: s b1 and pass\n\nHomeworlds Online (SDG# 34341)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.8.8, Ended: 2018.8.12\nParticipants: mneme (S), Trydnt (N)\nWinner: mneme\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) mneme: Homeworld G3 B3 Y3 *\n\tmneme: Oh, right; this was from an open challenge; this isn&#39;t a tournament game. :)\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: correct :) I like having lots of games on at a time\n\n4) mneme: Build Y1 Mneme\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) mneme: Trade Y3 R3 Mneme\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\n8) mneme: Move R3 Mneme Trydnt\n\tmneme: sorry, forgot this was the tinyu game.\n\n\nHomeworlds Online (SDG# 34429)\nStarted: 2018.8.8, Ended: 2018.9.20\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) MobyNostromo: H G2 B3 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: B Y2 Mobynostromo\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\n8) MobyNostromo: T Y1 G1 Mobynostromo\n\n9) Trydnt: Build G1 Trydnt\n\n10) MobyNostromo: T Y2 B2 Mobynostromo\n\n11) Trydnt: Trade G1 B1 Trydnt\n\n12) MobyNostromo: B G1 Mobynostromo\n\n13) Trydnt: Build G1 Trydnt\n\n14) MobyNostromo: D G1 Mobynostromo B1 Sky\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) MobyNostromo: D B2 Mobynostromo R1 Fire\n\n17) Trydnt: Build R1 Trydnt\n\n\nHomeworlds Online (SDG# 34437)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.8.8, Ended: 2018.8.21\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B3 Y2 G3\n\twil: Is this a round robin game?\n\n2) Trydnt: Homeworld B2 Y1 G3\n\twil: Or was the last one?\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\twil: Can&#39;t make any more moves till I find out which is the tourney game...and which I can have fun on...\n\tTrydnt: nah these are just for fun\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: D Y1 Wil G1 G1\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) wil: B Y3 G1\n\n12) Trydnt: Build Y3 G3\n\n13) wil: M Y1 G1 G3\n\n14) Trydnt: Sacrifice Y1 G3\nDiscover Y3 G3 G1 Gee1\n\n15) wil: B G1 Wil\n\n16) Trydnt: Build G2 Trydnt\n\n17) wil: D G1 Wil B1 B1\n\n18) Trydnt: Trade G2 R2 Trydnt\n\n19) wil: T Y2 R2 Wil\n\n20) Trydnt: Build G2 Trydnt\n\n21) wil: B G2 Wil\n\n22) Trydnt: Build R1 Trydnt\n\n23) wil: S G3 Wil\nB G2 B1\nB G3 Wil\nB R1 Wil\n\n24) Trydnt: Move Y2 Trydnt G3\n\n25) wil: S Y1 G3\nD G2 B1 Y3 Y3\n\n26) Trydnt: Build Y1 Gee1\n\n27) wil: M R2 Wil G1\n\n28) Trydnt: Trade R1 B1 Trydnt\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild Y1 G1\n\n30) Trydnt: Sacrifice B1 Trydnt\nTrade Y3 B3 Gee1\n\n31) wil: Move Y1 G1 G3\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G3\nBuild Y3 Gee1\n\n33) wil: Sacrifice G2 Y3\nBuild G2 B1\nBuild Y3 G1\n\n34) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B1 Gee1\nBuild B1 Gee1\n\n35) wil: Trade G1 R1 B1\n\n36) Trydnt: Trade B3 R3 Gee1\n\n37) wil: Build R2 B1\n\n38) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Gee1\nBuild R3 Trydnt\n\n39) wil: Sacrifice G3 Wil\nBuild G1 B1\nBuild G2 B1\nBuild G3 Wil\n\n40) Trydnt: Sacrifice Y3 Gee1\nMove Y2 G3 G1\nMove Y2 G3 G1\nCatastrophe G1 Y\nMove R3 Gee1 G3\n\n41) wil: Trade G2 Y2 B1\n\n42) Trydnt: Attack Y1 G3\n\n43) wil: Trade G2 Y2 Wil\n\twil: time for a tourney game...\r\n\n\n44) Trydnt: Build Y3 Gee1\n\n45) wil: Build Y3 B1\n\n46) Trydnt: Build Y3 G3\n\n47) wil: Trade G2 B2 B1\n\n48) Trydnt: Move B1 Gee1 G3\n\n49) wil: Discover B2 B1 G2 G2\n\n50) Trydnt: Build G2 Trydnt\n\twil: meant to move the g2 to a y3 before that...major mistake..\n\n51) wil: Build G2 B1\n\n52) Trydnt: Move R3 G3 G2\n\n53) wil: Sacrifice B2 G2\nTrade G2 B2 B1\nPass\n\n54) Trydnt: Sacrifice Y3 Gee1\nMove B1 Gee1 G3\nMove B1 G3 B1\nMove B1 G3 B1\nCatastrophe B1 B\n\n55) wil: Build R1 G1\n\twil: yeah this one is over too\r\n\n\n56) Trydnt: Build R2 G2\n\n57) wil: Move Y2 Wil G1\n\tTrydnt: let&#39;s see where this goes though haha\n\n58) Trydnt: Discover G2 Trydnt Y3 Y3\n\n59) wil: Discover R2 G1 Y3 Whynot\n\n60) Trydnt: Move R3 Trydnt Whynot\n\n61) wil: Build Y2 G1\n\n62) Trydnt: Attack R2 Whynot\n\n63) wil: Trade R1 B1 Wil\n\n64) Trydnt: Trade R2 B2 Trydnt\n\n65) wil: Discover Y2 G1 B3 B3\n\n66) Trydnt: Move Y3 G3 G1\n\n67) wil: Discover Y2 G1 B3 Be3\n\n68) Trydnt: Build R1 Gee1\n\n69) wil: Build R2 Wil\n\n70) Trydnt: Sacrifice G2 Y3\nBuild Y3 G3\nBuild B1 Trydnt\n\n71) wil: Build G1 Wil\n\n72) Trydnt: Sacrifice B2 Trydnt\nTrade R2 B2 Whynot\nTrade R1 B1 Gee1\n\n73) wil: Discover G1 Wil R1 R1\n\twil: You&#39;ve got me dominated...put me out of my misery!  Amazing how long it takes sometimes....but you are like a cat with a mouse...just torturing...as I try to stay alive..\n\n74) Trydnt: Build B2 Gee1\n\tTrydnt: haha I like to be certain\n\n75) wil: Build G2 Wil\n\n76) Trydnt: Move R3 Whynot Gee1\n\n77) wil: Move R1 Wil Gee1\n\n78) Trydnt: Sacrifice B2 Whynot\nTrade R3 Y3 Gee1\nTrade R2 B2 G2\n\n79) wil: Sacrifice G3 Wil\nBuild G2 R1\nBuild G3 Wil\nBuild R2 Wil\n\n80) Trydnt: Sacrifice Y3 G3\nMove B1 Gee1 Wil\nMove B2 Gee1 Wil\nCatastrophe Wil B\nMove Y1 G3 Wil\n\n\twil: You up late..\r\n\n\tTrydnt: /early\n\twil: nice\n\nHomeworlds Online (SDG# 34342)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.8.8, Ended: 2018.9.17\nParticipants: mneme (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 R2 G3\n\n2) mneme: Homeworld B1 G2 R3\n\n3) Trydnt: Build G1 Trydnt\n\tmneme: And this is also from an open challenge and isn&#39;t a tournament game either. :)\n\n4) mneme: Build R1 Mneme\n\n5) Trydnt: Build G1 Trydnt\n\n6) mneme: Trade R1 Y1 Mneme\n\n7) Trydnt: Trade G1 Y1 Trydnt\n\n8) mneme: Build R1 Mneme\n\n9) Trydnt: Build G1 Trydnt\n\n10) mneme: Trade R1 G1 Mneme\n\n11) Trydnt: Trade G1 B1 Trydnt\n\n12) mneme: Build R1 Mneme\n\n13) Trydnt: Build B1 Trydnt\n\n14) mneme: Build R1 Mneme\n\n15) Trydnt: Discover B1 Trydnt G1 G1\n\n16) mneme: Build G2 Mneme\n\n17) Trydnt: Build G2 Trydnt\n\n18) mneme: Discover G2 Mneme G3 Melpomene\n\n19) Trydnt: Trade G2 Y2 Trydnt\n\n20) mneme: Discover G1 Mneme B3 Calliope\n\n21) Trydnt: Build B2 G1\n\n22) mneme: Discover R1 Mneme B3 Clio\n\n23) Trydnt: Trade B2 R2 G1\n\n24) mneme: Trade R3 G3 Mneme\n\n25) Trydnt: Build B2 G1\n\n26) mneme: Build G2 Calliope\n\n27) Trydnt: Trade B2 Y2 G1\n\n28) mneme: Trade G2 Y2 Calliope\n\n29) Trydnt: Discover Y2 Trydnt R1 R1\n\n30) mneme: Sacrifice G2 Melpomene\nBuild Y1 Mneme\nBuild Y3 Calliope\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 Trydnt\nBuild Y3 G1\nBuild G2 Trydnt\n\n32) mneme: Sacrifice G3 Mneme\nBuild R2 Mneme\nBuild R3 Clio\nBuild R3 Mneme\n\n33) Trydnt: Sacrifice G2 Trydnt\nBuild R3 G1\nBuild B2 G1\n\n34) mneme: Trade R3 G3 Mneme\n\n35) Trydnt: Sacrifice Y2 G1\nDiscover Y3 G1 R3 R3\nDiscover B2 G1 G3 G3\n\n36) mneme: Move Y3 Calliope R1\n\n37) Trydnt: Sacrifice Y2 R1\nMove B2 G3 R1\nMove B2 R1 R3\n\n38) mneme: Build Y2 Calliope\n\n39) Trydnt: Build G2 Trydnt\n\n40) mneme: Build Y2 Calliope\n\n41) Trydnt: Sacrifice G2 Trydnt\nBuild B2 R3\nBuild B2 R3\n\n42) mneme: Move Y2 Calliope R1\n\n43) Trydnt: Move Y1 Trydnt G1\n\n44) mneme: Move Y1 Mneme Clio\n\n45) Trydnt: Trade B2 G2 R3\n\n46) mneme: Sacrifice Y1 Clio\nDiscover R1 Clio Y1 Melpomene\n\n47) Trydnt: Build B2 R3\n\n48) mneme: Sacrifice Y3 R1\nMove R1 Melpomene R3\nMove R1 Mneme R3\nMove R2 Mneme R3\nCatastrophe R3 R\n\n49) Trydnt: Build G2 Trydnt\n\n50) mneme: Build G2 Calliope\n\n51) Trydnt: Move R3 G1 Calliope\n\tmneme: That was a nice doomsday machine.\n\n52) mneme: Sacrifice G3 Mneme\nBuild Y1 Calliope\nBuild Y3 Mneme\nBuild Y3 R1\n\n53) Trydnt: Sacrifice R2 G1\nAttack G2 Calliope\nAttack G1 Calliope\n\n54) mneme: Sacrifice Y2 Calliope\nMove Y2 Calliope G1\nMove R3 Clio G1\n\n55) Trydnt: Attack Y1 Calliope\n\n56) mneme: Trade Y1 R1 Mneme\n\n57) Trydnt: Sacrifice Y1 G1\nDiscover B1 G1 Y2 Y2\n\n58) mneme: Build Y1 G1\n\n59) Trydnt: Build G3 Trydnt\n\n60) mneme: Build R1 G1\n\n61) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 Calliope\nBuild G3 Calliope\n\n62) mneme: Build R2 Mneme\n\n63) Trydnt: Move G3 Calliope Y2\n\n64) mneme: Trade R2 B2 Mneme\n\n65) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Y2\nBuild B2 Y2\n\n66) mneme: Sacrifice B2 Mneme\nTrade R3 B3 G1\nTrade Y2 B2 R1\n\n67) Trydnt: Sacrifice Y1 Calliope\nDiscover B1 Trydnt Y1 Y1\n\n68) mneme: Build B2 G1\n\n69) Trydnt: Sacrifice G3 Y2\nBuild G3 Y2\nBuild Y2 Trydnt\nBuild R2 Calliope\n\n70) mneme: Build R2 Mneme\n\n71) Trydnt: Move G2 Trydnt G1\n\n72) mneme: Move Y3 R1 Trydnt\n\n73) Trydnt: Attack Y3 Trydnt\n\n74) mneme: Move Y1 G1 Trydnt\nCatastrophe Trydnt Y\n\n75) Trydnt: Sacrifice G1 Calliope\nBuild G1 G1\n\n76) mneme: Move B3 G1 Trydnt\n\n77) Trydnt: Sacrifice R3 Calliope\nAttack B3 Trydnt\nAttack B2 G1\nAttack Y2 G1\n\n78) mneme: Build R3 G1\n\n79) Trydnt: Sacrifice G1 Trydnt\nBuild G1 G1\nCatastrophe G1 G\n\n80) mneme: Build Y1 Mneme\n\n81) Trydnt: Build Y2 Calliope\n\n82) mneme: Trade Y1 G1 Mneme\n\n83) Trydnt: Sacrifice Y2 Calliope\nMove G3 Y2 Calliope\nMove G3 Calliope Mneme\n\n84) mneme: Attack G3 Mneme\n\n85) Trydnt: Move G2 Calliope Mneme\nCatastrophe Mneme G\n\n86) mneme: Trade R2 G2 Mneme\n\n87) Trydnt: Trade B3 Y3 Trydnt\n\n\tmneme: mate in 2.  Well played.\n\tBabamots: Am I right that this was a tournament game? It looks like it was reported at the end but not at the beginning.\n\tTrydnt: Yes you are correct. Neither of us put it in at the beginning but should be in there now\n\tBabamots: Thanks!\n\tBabamots: Wait, I just noticed that, at the beginning of the game, mneme said in the comments that this is NOT a tournament game. I&#39;m going to delete it from the record unless mneme wants to count it.\n\tTrydnt: That is true. Mneme did we have another game running that was a tourney game?\n\tmneme: Huh.  I&#39;m not sure.  It was playing it as if it were a tournamnent game, but it clearly wasn&#39;t -- the setup didn&#39;t match the tournament approach, which was why I put that note in the beginning.\r\n\r\nAlmost a shame, since I think we were both playing it with intent, but that just makes it good practice.\r\n\n\nHomeworlds Online (SDG# 34441)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.8, Ended: 2018.8.19\nParticipants: Babamots (S), ajo (N)\nWinner: Babamots\n\n1) ajo: Homeworld B2 R1 G3\n\n2) Babamots: Homeworld R3 B2 G3\n\tBabamots: For the record, this is for the tournament.\r\n\r\nGood luck!\n\n3) ajo: Build G1 Ajo\n\n4) Babamots: Build G1 Babamots\n\n5) ajo: Trade G1 Y1 Ajo\n\tajo: Yes. Good luck!\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) ajo: Build G1 Ajo\n\n8) Babamots: Build G1 Babamots\n\n9) ajo: Discover G1 Ajo B3 Alpha\n\n10) Babamots: Discover G1 Babamots B1 Andoria\n\n11) ajo: Build G1 Ajo\n\n12) Babamots: Build G2 Babamots\n\n13) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n14) Babamots: Sacrifice G3 Babamots\nBuild G3 Andoria\nBuild G3 Babamots\nBuild Y1 Babamots\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) Babamots: Trade Y1 R1 Babamots\n\n17) ajo: Trade G2 R2 Alpha\n\n18) Babamots: Trade G3 Y3 Andoria\n\n19) ajo: Build G2 Alpha\n\n20) Babamots: Discover Y3 Andoria G2 Orion\n\n21) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R1 Alpha\n\n22) Babamots: Sacrifice Y1 Babamots\nMove G1 Andoria Alpha\nCatastrophe Alpha G\n\n23) ajo: Trade R2 G2 Alpha\n\n24) Babamots: Trade G2 Y2 Babamots\n\n25) ajo: Build R2 Alpha\n\n26) Babamots: Build Y1 Babamots\n\n27) ajo: Discover R1 Alpha G1 Beta\n\n28) Babamots: Move Y2 Babamots Beta\n\n29) ajo: Sacrifice Y2 Alpha\nMove R1 Beta Babamots\nDiscover R2 Alpha Y1 Gamma\n\n30) Babamots: Sacrifice R1 Babamots\nAttack R1 Babamots\n\n31) ajo: Build Y2 Ajo\n\n32) Babamots: Sacrifice G3 Babamots\nBuild Y2 Orion\nBuild Y3 Beta\nBuild Y3 Babamots\n\tajo: Oh bother. I always forget that you can do that. (This is not the first game in which I&#39;ve messed that up.)\n\n33) ajo: Sacrifice G1 Ajo\nBuild R1 Gamma\n\tBabamots: In the last tournament, I lost the semifinal game to that problem. Gotta be so careful if count on your opponent&#39;s ships helping you to get a red catastrophe.\n\n34) Babamots: Trade R1 B1 Babamots\n\n35) ajo: Build G1 Alpha\n\n36) Babamots: Sacrifice B1 Babamots\nTrade Y2 R2 Beta\n\n37) ajo: Sacrifice G2 Alpha\nBuild G1 Ajo\nBuild R1 Gamma\n\n38) Babamots: Sacrifice Y2 Orion\nMove R2 Beta Alpha\nMove R2 Alpha Gamma\nCatastrophe Gamma R\n\n39) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Ajo\nBuild G3 Ajo\n\n40) Babamots: Discover Y3 Beta G3 Risa\n\n41) ajo: Trade G2 Y2 Alpha\n\n42) Babamots: Trade Y3 G3 Babamots\n\n43) ajo: Discover Y1 Ajo B3 Beta\n\n44) Babamots: Build G1 Babamots\n\n45) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild Y1 Beta\n\n46) Babamots: Discover G1 Babamots B1 Bolarus\n\n47) ajo: Sacrifice G2 Alpha\nBuild Y2 Beta\nBuild Y3 Alpha\n\n48) Babamots: Build G2 Bolarus\n\n49) ajo: Trade Y3 R3 Alpha\n\n50) Babamots: Sacrifice G2 Bolarus\nBuild G2 Babamots\nBuild Y3 Babamots\n\n51) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild R1 Alpha\n\n52) Babamots: Trade G2 R2 Babamots\n\n53) ajo: Move Y1 Beta Bolarus\n\n54) Babamots: Move R2 Babamots Bolarus\n\n55) ajo: Move Y1 Bolarus Babamots\n\n56) Babamots: Move Y1 Babamots Bolarus\n\n57) ajo: Discover Y1 Babamots B1 Gamma\n\n58) Babamots: Build R1 Bolarus\n\n59) ajo: Move G2 Alpha Gamma\n\n60) Babamots: Trade R1 B1 Bolarus\n\n61) ajo: Move R3 Alpha Gamma\n\n62) Babamots: Build G2 Bolarus\n\n63) ajo: Sacrifice G3 Ajo\nBuild R1 Gamma\nBuild R2 Alpha\nBuild G3 Ajo\n\n64) Babamots: Discover G1 Bolarus B3 Benzar\n\n65) ajo: Move R3 Gamma Benzar\n\n66) Babamots: Sacrifice Y3 Orion\nMove G2 Bolarus Benzar\nMove G2 Benzar Ajo\nMove G1 Benzar Ajo\nCatastrophe Ajo G\n\n67) ajo: Sacrifice Y2 Beta\nMove R3 Benzar Ajo\nMove R1 Alpha Gamma\n\n68) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild B2 Bolarus\nBuild Y3 Babamots\n\n69) ajo: Discover Y1 Beta G1 Epsilon\n\n70) Babamots: Move Y3 Babamots Gamma\n\n71) ajo: Sacrifice Y2 Alpha\nMove R1 Gamma Babamots\nMove R1 Gamma Babamots\n\n72) Babamots: Sacrifice R2 Bolarus\nAttack Y1 Gamma\nAttack G2 Gamma\n\n73) ajo: Build Y2 Epsilon\n\n74) Babamots: Attack R1 Babamots\n\n75) ajo: Sacrifice G1 Alpha\nBuild R2 Babamots\nCatastrophe Babamots Red\n\n76) Babamots: Trade Y1 R1 Gamma\n\n77) ajo: Trade R3 G3 Ajo\n\n78) Babamots: Move B2 Bolarus Risa\n\n79) ajo: Build Y1 Ajo\n\n80) Babamots: Build B3 Risa\n\n81) ajo: Discover Y1 Epsilon B3 Zeta\n\n82) Babamots: Trade B3 R3 Risa\n\n83) ajo: Discover Y1 Ajo B3 Theta\n\n84) Babamots: Build R1 Risa\n\tajo: That&#39;s quite an impenetrable defense you&#39;ve got there. I see my doom about 4 turns away...\n\n85) ajo: Build G1 Ajo\n\n86) Babamots: Move G2 Gamma Zeta\n\n87) ajo: Move G1 Ajo Alpha\n\n88) Babamots: Sacrifice R1 Risa\nAttack Y1 Zeta\n\n89) ajo: Build G1 Ajo\n\n90) Babamots: Move Y1 Zeta Gamma\n\n91) ajo: Build G2 Alpha\n\n92) Babamots: Sacrifice G2 Zeta\nBuild R1 Risa\nBuild B3 Risa\n\n93) ajo: Build R2 Alpha\n\n94) Babamots: Move R1 Gamma Babamots\n\n95) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n96) Babamots: Sacrifice Y3 Gamma\nMove B1 Bolarus Risa\nMove B1 Risa Ajo\nMove B3 Risa Ajo\n\n97) ajo: Attack B3 Ajo\n\n98) Babamots: Move B2 Risa Ajo\nCatastrophe Ajo B\n\n99) ajo: Pass\n\n100) Babamots: Sacrifice Y3 Risa\nMove R1 Risa Ajo\nMove R1 Babamots Ajo\nMove R3 Risa Ajo\nCatastrophe Ajo R\n\tajo: I see it coming, but I don&#39;t think I have any better move at this point... :)\n\n\tajo: Well, if I didn&#39;t capture (or catastrophe) your b3, you could have just sacrificed r3 to capture my y2g1g3, which I think would have led to my defeat pretty quick as well.\n\tBabamots: Yes, I think building y3 would have only bought you a move or two.\r\n\r\nGood game! Valiantly fought!\n\nHomeworlds Online (SDG# 34447)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.10, Ended: 2018.9.3\nParticipants: deanthebean (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) deanthebean: Homeworld B3 Y1 G3\n\tgoulo: hi, have fun!\n\tdeanthebean: Thanks. You too!\n\n3) goulo: Build G1 Goulo\n\n4) deanthebean: Build G1 Deanthebean\n\n5) goulo: Trade G3 Y3 Goulo\n\n6) deanthebean: Trade G1 R1 Deanthebean\n\n7) goulo: Build G1 Goulo\n\n8) deanthebean: Build R1 Deanthebean\n\n9) goulo: Trade Y3 R3 Goulo\n\n10) deanthebean: Build R2 Deanthebean\n\n11) goulo: Build R2 Goulo\n\n12) deanthebean: Trade R1 Y1 Deanthebean\n\n13) goulo: Trade G1 Y1 Goulo\n\n14) deanthebean: Build Y2 Deanthebean\n\n15) goulo: Build Y2 Goulo\n\n16) deanthebean: Discover Y1 Deanthebean G2 Xi\n\n17) goulo: Discover Y1 Goulo G3 Smeraldego\n\n18) deanthebean: Discover R2 Deanthebean G2 Pen\n\n19) goulo: Move R2 Goulo Smeraldego\n\n20) deanthebean: Move Y2 Deanthebean Pen\n\n21) goulo: Move R2 Smeraldego Xi\n\n22) deanthebean: Move R2 Pen Smeraldego\n\n23) goulo: Discover Y1 Smeraldego G2 Smeraldo\n\n24) deanthebean: Build G1 Deanthebean\n\n25) goulo: Attack Y1 Xi\n\n26) deanthebean: Move R1 Deanthebean Smeraldo\n\n27) goulo: Trade R3 G3 Goulo\n\n28) deanthebean: Attack Y1 Smeraldo\n\n29) goulo: Sacrifice G3 Goulo\nBuild Y2 Xi\nBuild Y3 Xi\nBuild Y3 Goulo\n\n30) deanthebean: Build Y3 Pen\n\n31) goulo: Move Y1 Xi Deanthebean\n\n32) deanthebean: Sacrifice R1 Smeraldo\nAttack Y1 Deanthebean\n\n33) goulo: Sacrifice Y2 Goulo\nMove Y2 Xi Deanthebean\nMove Y3 Xi Deanthebean\nCatastrophe Deanthebean Y\n\n34) deanthebean: Trade G1 R1 Deanthebean\n\n35) goulo: Build Y1 Goulo\n\n36) deanthebean: Build R1 Deanthebean\n\n37) goulo: Build G1 Goulo\n\n38) deanthebean: Trade R1 B1 Deanthebean\n\n39) goulo: Trade G1 B1 Goulo\n\n40) deanthebean: Build G1 Deanthebean\n\n41) goulo: Discover B1 Goulo Y3 Flavego\n\n42) deanthebean: Trade G1 Y1 Deanthebean\n\n43) goulo: Trade Y1 B1 Goulo\n\n44) deanthebean: Move B1 Deanthebean Pen\n\n45) goulo: Build G1 Goulo\n\n46) deanthebean: Build B2 Pen\n\n47) goulo: Discover B1 Flavego Y2 Flavo\n\n48) deanthebean: Move B2 Pen Smeraldego\n\n49) goulo: Discover B1 Goulo Y3 Flavego\n\n50) deanthebean: Sacrifice G3 Deanthebean\nBuild B2 Smeraldego\nBuild B3 Pen\nBuild R1 Smeraldego\n\n51) goulo: Sacrifice G1 Goulo\nBuild B3 Flavo\n\n52) deanthebean: Sacrifice Y2 Pen\nMove B2 Smeraldego Flavo\nMove B2 Smeraldego Flavo\nCatastrophe Flavo Blue\n\n53) goulo: Build G1 Goulo\n\n54) deanthebean: Trade B3 G3 Pen\n\n55) goulo: Discover B1 Flavego Y2 Flavo\n\n56) deanthebean: Build G1 Pen\n\n57) goulo: Trade G1 B1 Goulo\n\n58) deanthebean: Move B1 Pen Smeraldego\n\n59) goulo: Build G1 Goulo\n\n60) deanthebean: Sacrifice G3 Pen\nBuild G3 Pen\nBuild B2 Smeraldego\nBuild R2 Smeraldego\n\n61) goulo: Sacrifice Y3 Goulo\nMove R2 Xi Smeraldego\nMove B1 Flavo Deanthebean\nMove B1 Goulo Deanthebean\nCatastrophe Smeraldego Red\n\n62) deanthebean: Attack B1 Deanthebean\n\n63) goulo: Sacrifice G1 Goulo\nBuild B2 Deanthebean\nCatastrophe Deanthebean Blue\n\n\tdeanthebean: Well played! \n\tgoulo: thanks! that was a tough interesting game... I thought I was doomed (after I fell so behind on material, the price I paid to do the first catastrophe), until I realized that final sequence at the end. lucky for me it worked out that way, winning with only one 1-ship remaining vs two 3-ships and various other ships. a narrow win! :)\n\nHomeworlds Online (SDG# 34288)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.10, Ended: 2018.8.13\nParticipants: wil (S), Ryzorrin (N)\nWinner: wil\n\n1) Ryzorrin: Homeworld B1 G2 R3\n\n2) wil: H B3 R1 G3\n\n3) Ryzorrin: Build R1 Ryzorrin\n\twil: The for the game!  Is this a tourney challenge or just for fun?\r\n\n\n4) wil: Build G1 Wil\n\tRyzorrin: Just for fun?\n\twil: Nice, welcome back, looks like it has been a while...  there is a tourney just starting if interrested\n\n5) Ryzorrin: Trade R1 Y1 Ryzorrin\n\tRyzorrin: Maybe.  Need to get back into the swing of things.  \n\n6) wil: Trade G1 Y1 Wil\n\n7) Ryzorrin: Discover Y1 Ryzorrin B3 Arthur\n\twil: Win or lose the tourney lets you play 15 games in the next few months..meet 15 new players...see a bunch of differing strategies and game play...  No peer pressure, just insuring you are aware of the opportunity.\n\n8) wil: B G1 Wil\n\twil: Leaving t he nest awful young \n\n9) Ryzorrin: Trade Y1 G1 Arthur\n\tRyzorrin: It seems safe enough.\r\n\n\n10) wil: B Y1 Wil\n\n11) Ryzorrin: Build R1 Ryzorrin\n\twil: See, the liitle guy gets out in the world and shape shifts on ya!\n\n12) wil: Build Y1 Wil\n\n13) Ryzorrin: Build R1 Ryzorrin\n\n14) wil: Discover Y1 Wil G2 G2\n\n15) Ryzorrin: Trade R1 G1 Ryzorrin\n\tRyzorrin: Very creative star system name. :D\n\n16) wil: B Y2 G2\n\twil: Im a simple man\n\n17) Ryzorrin: Build G2 Ryzorrin\n\twil: After all, i dont get attached to temporary sites we land just to harvest fuel.  No use getting sentimental over property we will likely exploit and leave behind\n\n18) wil: Build G3 Wil\n\n19) Ryzorrin: Build G3 Arthur\n\n20) wil: D G1 Wil Y2 Y2\n\n21) Ryzorrin: Trade G2 Y2 Ryzorrin\n\n22) wil: T Y1 R1 Wil\n\n23) Ryzorrin: Discover G1 Ryzorrin B3 Lancelot\n\n24) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 Wil\nBuild R2 Wil\n\n25) Ryzorrin: Trade G1 Y1 Arthur\n\n26) wil: Move Y2 G2 Lancelot\n\n27) Ryzorrin: Build Y3 Arthur\n\n28) wil: S G2 Y2\nB Y3 Lancelot\nB Y3 Wil\n\n29) Ryzorrin: Trade G3 R3 Arthur\n\n30) wil: S R1 Wil\nA G1 Lancelot\n\n31) Ryzorrin: Move R3 Arthur G2\n\n32) wil: T Y1 B1 Wil\n\n33) Ryzorrin: Attack Y1S G2\n\n34) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G2 Lancelot\nBuild G3 Y2\n\n35) Ryzorrin: Build R1 G2\n\n36) wil: T G2 R2 Lancelot\n\n37) Ryzorrin: Sacrifice Y2 Ryzorrin\nMove R1 G2 Wil\nMove R3 G2 Wil\nCatastrophe Wil Red\n\n38) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB G3 Lancelot\n\n39) Ryzorrin: Trade R1 B1 Ryzorrin\n\n40) wil: S Y3 Wil\nM G3 Lancelot Ryzorrin\nM Y3 Lancelot Ryzorrin\nM Y2 Lancelot Ryzorrin\n\n41) Ryzorrin: Attack Y3S Ryzorrin\n\n\tRyzorrin: good game.\n\nHomeworlds Online (SDG# 34456)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.11, Ended: 2018.9.16\nParticipants: ts52 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: For the record, this is for the tournament. Good luck!\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Thanks! Good luck to you too. Have a good game!\n\n3) Babamots: Build G1 Babamots\n\n4) ts52: Build G1 Ts52\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) ts52: Trade G1 R1 Ts52\n\n7) Babamots: Build R2 Babamots\n\n8) ts52: Build R2 Ts52\n\n9) Babamots: Trade R1 Y1 Babamots\n\n10) ts52: Trade R1 Y1 Ts52\n\n11) Babamots: Build G1 Babamots\n\n12) ts52: Build G1 Ts52\n\n13) Babamots: Discover G1 Babamots B3 Betazed\n\n14) ts52: Discover G1 Ts52 B1 Gonzo\n\n15) Babamots: Build Y1 Babamots\n\n16) ts52: Build Y2 Ts52\n\n17) Babamots: Move Y1 Babamots Betazed\n\n18) ts52: Move Y2 Ts52 Gonzo\n\n19) Babamots: Build Y2 Babamots\n\n20) ts52: Build R1 Ts52\n\n21) Babamots: Sacrifice G3 Babamots\nBuild Y2 Betazed\nBuild Y3 Betazed\nBuild Y3 Babamots\n\n22) ts52: Discover Y1 Ts52 B1 Grover\n\n23) Babamots: Sacrifice Y1 Betazed\nDiscover Y2 Babamots G3 Orion\n\n24) ts52: Build Y1 Gonzo\n\n25) Babamots: Trade Y1 B1 Babamots\n\n26) ts52: Move R2 Ts52 Grover\n\n27) Babamots: Move B1 Babamots Orion\n\n28) ts52: Build G1 Ts52\n\tBabamots: I hope you don&#39;t mind if I play a little slow for a few days. I&#39;m trying to make good on some projects, and it&#39;s taking plenty of my concentration to not mess up on another of my current games.\n\tts52: I don&#39;t mind at all. Thanks for giving me a heads up.\n\n29) Babamots: Move Y3 Betazed Grover\n\n30) ts52: Move R2 Grover Ts52\n\n31) Babamots: Build B2 Orion\n\n32) ts52: Build G2 Gonzo\n\n33) Babamots: Build B3 Orion\n\n34) ts52: Discover G2 Gonzo B3 Cookie\n\n35) Babamots: Move B3 Orion Gonzo\n\n36) ts52: Move Y2 Gonzo Cookie\n\n37) Babamots: Trade B3 R3 Gonzo\n\n38) ts52: Build G2 Cookie\n\n39) Babamots: Attack Y1 Gonzo\n\n40) ts52: Discover R2 Ts52 Y1 Bigbird\n\n41) Babamots: Attack G1 Gonzo\n\n42) ts52: Move G2 Cookie Bigbird\n\n43) Babamots: Move G1 Betazed Gonzo\n\n44) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Cookie\n\n45) Babamots: Sacrifice Y3 Grover\nMove G1 Gonzo Ts52\nMove G1 Gonzo Ts52\nMove R3 Gonzo Ts52\nCatastrophe Ts52 G\n\n46) ts52: Sacrifice Y2 Cookie\nMove G2 Bigbird Ts52\nMove R2 Bigbird Ts52\n\n47) Babamots: Sacrifice R2 Babamots\nAttack G2 Ts52\nAttack R2 Ts52\n\tts52: How did I not see that coming? Or maybe I did and figured it was unavoidable? Too many games. Well played sir.\n\n48) ts52: Move G2 Bigbird Ts52\n\n49) Babamots: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack G2 Ts52\n\tBabamots: With half a dozen other games going, I would be missing things everywhere. But rest assured, as many of your troops as surrender will be shown mercy. GG!\n\n\nHomeworlds Online (SDG# 34458)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.11, Ended: 2018.8.23\nParticipants: ts52 (S), speardane (N)\nWinner: ts52\n\n1) speardane: Homeworld Y3 G2 B3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) speardane: Build B1 Speardane\n\n4) ts52: Build G1 Ts52\n\n5) speardane: Trade B1 R1 Speardane\n\n6) ts52: Trade G1 R1 Ts52\n\n7) speardane: Build B1 Speardane\n\n8) ts52: Build G1 Ts52\n\n9) speardane: Discover B1 Speardane G1 Delos\n\n10) ts52: Build G1 Ts52\n\n11) speardane: Build B1 Speardane\n\n12) ts52: Discover G1 Ts52 B3 Gonzo\n\n13) speardane: Discover B1 Speardane Y1 Lebling\n\n14) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n15) speardane: Trade B1 Y1 Delos\n\n16) ts52: Trade G2 Y2 Gonzo\n\n17) speardane: Discover B1 Lebling G3 Kotok\n\n18) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n19) speardane: Move Y1 Delos Kotok\n\n20) ts52: Trade G3 R3 Gonzo\n\n21) speardane: Build B1 Speardane\n\n22) ts52: Discover G2 Ts52 B3 Grover\n\n23) speardane: Build B1 Speardane\n\n24) ts52: Trade G2 B2 Gonzo\n\n25) speardane: Build B2 Kotok\n\n26) ts52: Sacrifice Y2 Gonzo\nDiscover B2 Gonzo R1 Elmo\nMove B2 Elmo Speardane\nCatastrophe Speardane Blue\n\n27) speardane: Trade B1 R1 Kotok\n\n28) ts52: Trade G2 Y2 Grover\n\n29) speardane: Build R2 Speardane\n\n30) ts52: Sacrifice Y2 Grover\nDiscover R3 Gonzo Y1 Bigbird\nMove R3 Bigbird Speardane\n\n31) speardane: Sacrifice B2 Kotok\nTrade R2 B2 Speardane\nTrade R1 B1 Kotok\n\n32) ts52: Attack R1N Speardane\n\n33) speardane: Build B1 Speardane\n\n34) ts52: Attack B2N Speardane\n\n35) speardane: Pass\n\n36) ts52: Attack B1N Speardane\n\tts52: Good game! Thanks!\n\n\nHomeworlds Online (SDG# 34459)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.12, Ended: 2018.8.14\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\tdlwillson: Long time, no see! :-)\n\twil: Glad to see you back around these parts!\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B G1 Wil\n\tdlwillson: Well, now there are 2 short stacks! Wat do?\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: B Y3 Field\n\n12) wil: Build Y3 G3\n\n13) dlwillson: D Y3 Field B3 Sky\n\n14) wil: Discover Y2 Wil Y3 Y3\n\n15) dlwillson: T Y2 R2 Dlwillson\n\n16) wil: T G3 R3 Wil\n\n17) dlwillson: B Y2 Field\n\twil: ALL SYSTEMS ALERT STOP ENEMY ARMED AND BEEN LOCKED ON STOP IMMINENT DANGER TO ALL SECTORS STOP MOUNT DEFENSES OR AVOID AT ALL COSTS STOP\n\n18) wil: M Y1 G3 Wil\n\n19) dlwillson: M Y1 Field Sky\n\twil: RETREAT REGROUP REBUILD TILL CRISIS AVERTED STOP\n\n20) wil: T Y1 G1 Wil\n\tdlwillson: I&#39;m giggling here.\n\n21) dlwillson: Trade Y3 G3 Sky\n\twil: You would,my fleet was in peril, and you chuckle.\n\n22) wil: B G1 Wil\n\n23) dlwillson: Build G1 Sky\n\n24) wil: T G1 B1 Wil\n\n25) dlwillson: Trade G1 R1 Sky\n\n26) wil: B B1 Wil\n\n27) dlwillson: Sacrifice G3 Sky\nBuild Y1 Field\nBuild Y3 Sky\nBuild R1 Sky\n\n28) wil: M B1 Wil G3\n\n29) dlwillson: S Y2 Field\nM R1 Sky Wil\nM R1 Sky Wil\n\n30) wil: M Y3 G3 Wil\n\tdlwillson: Pretty sure I&#39;m one short again, but we&#39;ll see.\n\n31) dlwillson: S Y3 Sky\nM Y1 Field Sky\nM Y1 Sky Wil\nM Y1 Sky Wil\nC Wil Y\n\twil: RETREAT, INFESTATION AT HOME\n\n32) wil: B B2 G3\n\tdlwillson: I&#39;m nearly bankrupt! I hope I had a plan, and that I remember it soon!\n\n33) dlwillson: S G3 Dlwillson\nB R1 Wil\nB R2 Dlwillson\nB R2 Dlwillson\nC Wil R\n\twil: These games are always so unique...\n\n34) wil: B B2 G3\n\tdlwillson: I thought I had a better plan than that!\n\tdlwillson: Bear skins and stone knives.\n\n35) dlwillson: T R2 Y2 Dlwillson\n\twil: Lol, all so weird\n\n36) wil: T B1 R1 Wil\n\twil: You got this\n\n37) dlwillson: S Y2 Dlwillson\nD R2 Dlwillson Y2 Sol\nM R2 Sol Wil\n\n38) wil: Build R1 Wil\n\tdlwillson: We&#39;ll see.\r\n\r\nI thought you would sac the y2 to stand up the last b2, then build a b3 on your next turn. I am still not sure who wins this.\n\n39) dlwillson: Attack G1 Wil\n\n40) wil: T B1 R1 G3\n\tdlwillson: Yuck. Should I have resigned, instead?\n\tdlwillson: I can&#39;t believe that we&#39;ve been playing BH for however many years, and we&#39;ve never come up with rules or protocol for this situation.\n\n41) dlwillson: Sacrifice G1 Wil\nBuild R2 Wil\nCatastrophe Wil R\n\twil: What situation?\n\twil: Oh the back and forth?\n\twil: If I had moved blues in younkust needed tonturn blue...yeah wild end\n\twil: Ties are so rare\n\tdlwillson: That game could have ended in an eternal tug-of-war over the green, but you invoked a ko rule on yourself that doesn&#39;t exist anywhere in the actual rules. I do the same, and I try to avoid the situation to begin with, but I wish there were an actual rule, or at least a formal protocol.\n\tdlwillson: I think you could have pulled ahead at &quot;2018-08-14 11:23:47&quot; if you had sacrificed your Y2 ship to discover the last B2 from the bank using any ship from the G3 system. I wouldn&#39;t have been able to swap to blue, and you would have been able to build a B3 on your next turn.\n\n\nHomeworlds Online (SDG# 34351)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.13, Ended: 2018.9.14\nParticipants: Trydnt (S), Ryzorrin (N)\nWinner: Trydnt\n\n1) Ryzorrin: Homeworld G1 B2 R3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) Ryzorrin: Build R1 Ryzorrin\n\n4) Trydnt: Build G1 Trydnt\n\n5) Ryzorrin: Trade R1 Y1 Ryzorrin\n\n6) Trydnt: Build G1 Trydnt\n\n7) Ryzorrin: Build Y1 Ryzorrin\n\n8) Trydnt: Discover G1 Trydnt B1 B1\n\n9) Ryzorrin: Build Y1 Ryzorrin\n\n10) Trydnt: Build G2 B1\n\n11) Ryzorrin: Discover Y1 Ryzorrin G3 Metropolis\n\n12) Trydnt: Trade G2 Y2 B1\n\n13) Ryzorrin: Trade Y1 B1 Ryzorrin\n\n14) Trydnt: Build G2 B1\n\n15) Ryzorrin: Discover B1 Ryzorrin G3 Gotham City\n\n16) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G2 B1\nBuild G3 Trydnt\n\n17) Ryzorrin: Build B1 Gotham\n\n18) Trydnt: Trade G2 B2 B1\n\n19) Ryzorrin: Build Y1 Metropolis\n\n20) Trydnt: Trade G2 R2 B1\n\n21) Ryzorrin: Build Y2 Ryzorrin\n\n22) Trydnt: Move B2 B1 Metropolis\n\n23) Ryzorrin: Build Y3 Ryzorrin\n\n24) Trydnt: Sacrifice R2 B1\nAttack Y1 Metropolis\nAttack Y1 Metropolis\n\n25) Ryzorrin: Trade Y3 B3 Ryzorrin\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Metropolis\nBuild Y3 B1\n\n27) Ryzorrin: Move B3 Ryzorrin Metropolis\n\n28) Trydnt: Build B3 Metropolis\nCatastrophe Metropolis B\n\n29) Ryzorrin: Move Y2 Ryzorrin Gotham\n\n30) Trydnt: Trade Y2 R2 B1\n\n31) Ryzorrin: Build Y2 Gotham\n\n32) Trydnt: Build Y3 B1\n\n33) Ryzorrin: Sacrifice Y2 Gotham\nDiscover B1 Gotham R1 Keystone\nMove B1 Gotham Keystone\n\n34) Trydnt: Build G2 Trydnt\n\n35) Ryzorrin: Move Y2 Gotham Keystone\n\n36) Trydnt: Discover Y1 Metropolis R1 R1\n\n37) Ryzorrin: Move B1 Keystone Trydnt\n\n38) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 R1\nBuild Y3 Metropolis\n\n39) Ryzorrin: Move Y2 Keystone Trydnt\n\n40) Trydnt: Sacrifice R2 B1\nAttack Y2 Trydnt\nAttack B1 Trydnt\n\n41) Ryzorrin: Build R1 Ryzorrin\n\n42) Trydnt: Move Y2 Trydnt Keystone\n\n43) Ryzorrin: Build R2 Ryzorrin\n\n44) Trydnt: Build G2 B1\n\n45) Ryzorrin: Trade R2 G2 Ryzorrin\n\n46) Trydnt: Attack B1 Keystone\n\n47) Ryzorrin: Move G2 Ryzorrin Metropolis\n\n48) Trydnt: Trade G2 R2 B1\n\n49) Ryzorrin: Trade R3 G3 Ryzorrin\n\n\n50) Trydnt: Build R2 B1\n\n51) Ryzorrin: Build R2 Ryzorrin\n\n52) Trydnt: Sacrifice R2 B1\nAttack G2 Metropolis\nPass\n\n53) Ryzorrin: Move R1 Ryzorrin Metropolis\n\n54) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G2 B1\nBuild G3 Trydnt\n\n55) Ryzorrin: Attack Y1 Metropolis\n\n56) Trydnt: Sacrifice R2 B1\nAttack R1 Metropolis\nAttack Y1 Metropolis\n\n57) Ryzorrin: Build R2 Ryzorrin\n\n58) Trydnt: Trade G2 R2 B1\n\n59) Ryzorrin: Discover R2 Ryzorrin B3 Blank\n\n60) Trydnt: Sacrifice G2 Metropolis\nBuild R3 B1\nBuild R3 Metropolis\n\n61) Ryzorrin: Build R3 Ryzorrin\n\n62) Trydnt: Move Y3 B1 Blank\n\n63) Ryzorrin: Discover R3 Ryzorrin B3 Tacos\n\n64) Trydnt: Move B1 Keystone Metropolis\n\n65) Ryzorrin: Move R2 Ryzorrin Tacos\n\n66) Trydnt: Sacrifice G2 B1\nBuild B2 Metropolis\nBuild B2 Metropolis\n\n67) Ryzorrin: Trade R2 G2 Tacos\n\n68) Trydnt: Sacrifice R2 B1\nAttack R2 Blank\nPass\n\n69) Ryzorrin: Build R2 Tacos\n\n70) Trydnt: Build G2 B1\n\n71) Ryzorrin: Sacrifice Y1 Ryzorrin\nMove R3 Tacos Keystone\n\n72) Trydnt: Move Y2 Keystone Blank\n\n73) Ryzorrin: Build R2 Tacos\n\n74) Trydnt: Move G1 B1 Blank\n\n75) Ryzorrin: Build G2 Tacos\n\n76) Trydnt: Sacrifice G2 B1\nBuild G2 Blank\nBuild Y1 B1\n\n\nHomeworlds Online (SDG# 34464)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.14, Ended: 2018.8.23\nParticipants: eliscinsky (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y2 G3 Dingo\n\n2) eliscinsky: Homeworld B2 Y3 G3\n\tdlwillson: GLHF!\n\n3) dlwillson: B G1 Dlwillson\n\teliscinsky: U2!\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) dlwillson: D Y1 Dlwillson G1 Field\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) dlwillson: Build G1 Dlwillson\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) dlwillson: T G1 R1 Dlwillson\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) dlwillson: B R1 Dlwillson\n\n14) eliscinsky: Build R2 Eliscinsky\n\tdlwillson: You&#39;re playing perfectly! That was a hard choice!\n\teliscinsky: Thanks. I lost all my games in the last tourney, but I try to learn something new about HWs every time I play. Learning the strategy is the hardest part, but there too I&#39;m learning with each play/game.\n\n15) dlwillson: Move R1 Dlwillson Field\n\n16) eliscinsky: Move R2 Eliscinsky Field\n\tdlwillson: The only way to really learn this game is to get trounced a lot by stronger players. The branching factor is absurdly high, so you really have to memorize the sequences and forceful attacks that happen predictably, and learn to manage the bank. Managing the bank, setting up forceful attacks, and feeding your opponent vexing choices. That&#39;s this game. Huh, @Felix?\r\n\r\nThat probably doesn&#39;t work to tag him, but Felix and I spent many games where the first priority was to offer the other fellow an irritating situation. My favorite is top-banking a big that the my opponent doesn&#39;t have room to build, that I *do* have room to build. They want to build it, but they can&#39;t. They want to split up their ships, but by the time they split them, I&#39;ll already have an extra big, with which to irritate them. :-)\n\n17) dlwillson: B R2 Field\n\n18) eliscinsky: Move R1 Eliscinsky Field\nCatastrophe Field R\n\n19) dlwillson: B R1 Dlwillson\n\n20) eliscinsky: Trade G1 R1 Eliscinsky\n\n21) dlwillson: M R1 Dlwillson Field\n\n22) eliscinsky: Build R2 Eliscinsky\n\n23) dlwillson: B R2 Field\n\n24) eliscinsky: Discover R1 Eliscinsky G1 Alpha\n\n25) dlwillson: D R1 Field R3 Mars\n\tdlwillson: Aargh! I keep forgetting this is a small universe!\n\n26) eliscinsky: Build R2 Alpha\n\n27) dlwillson: Build R3 Dlwillson\n\n28) eliscinsky: Build R3 Eliscinsky\n\n29) dlwillson: T R3 B3 Dlwillson\n\n30) eliscinsky: Move Y1 Eliscinsky Alpha\n\n31) dlwillson: B R3 Field\n\n32) eliscinsky: Build G1 Eliscinsky\n\n33) dlwillson: Build G2 Dlwillson\n\n34) eliscinsky: Trade G1 Y1 Eliscinsky\n\n35) dlwillson: Build B1 Dlwillson\n\n36) eliscinsky: Build G1 Eliscinsky\n\n37) dlwillson: D G2 Dlwillson B1 Sea\n\n38) eliscinsky: Trade G1 B1 Eliscinsky\n\n39) dlwillson: B Y2 Field\n\n40) eliscinsky: Move R3 Eliscinsky Sea\n\n41) dlwillson: Build G1 Sea\n\n42) eliscinsky: Attack G2 Sea\n\n43) dlwillson: Build G2 Sea\n\n44) eliscinsky: Attack G2 Sea\n\n45) dlwillson: B G2 Sea\nC Sea G\n\n46) eliscinsky: Move B1 Eliscinsky Alpha\n\tdlwillson: I could&#39;ve done that a lot better. Sorry.\n\n47) dlwillson: M B3 Dlwillson Alpha\n\n48) eliscinsky: Sacrifice Y1 Eliscinsky\nMove R3 Sea Mars\n\n49) dlwillson: S R3 Field\nA R2 Alpha\nA R1 Alpha\nA Y1 Alpha\n\n50) eliscinsky: Attack R1 Mars\n\tFelix: I&#39;m late to the conversation, but I&#39;m with David. I spent many games getting whipped by him (and Wil, TwoShort, Endo, etc.) before I was finally able to hold my own against *some* of those players. After a large number of games you do start to recognize certain attack patterns, but even then, one little oversight can quickly cost you the game, as just happened to me over here! http://superdupergames.org/main.html?page=play_homeworlds&amp;num=34431\n\tdlwillson: I wish TwoShort would come back. I think I might finally be good enough to compete with him. He&#39;s the strongest player I&#39;ve ever played against, but there are other, older players who are supposed to be stronger, like Wyons and somebody else. Is TeeTeeTee still playing? He plays like a machine. No mistakes. No room given.\n\teliscinsky: Okay explain to me how that worked? I had more Pips on my shifts then your B3. And yet you were able to sacrifice an R3 and defeats all my ships? I don&#39;t get it. Call me a newbie but it just sounds wrong.\n\n51) dlwillson: A B1 Alpha\n\tdlwillson: When I sacrificed my R3, I got three attacks to use anywhere. Pips don&#39;t matter, except to determine whether a ship can successfully attack another ship. A large ship can attack anything and can only be attacked by other large ships. So, I was able to attack three of your ships with three attacks, one attack each.\n\n52) eliscinsky: Build R3 Eliscinsky\n\teliscinsky: Thank you for the lesson. I continue to learn.  That&#39;s a good thing.\r\n\r\nWHAK! &quot;Thank you, sir. May I have another!&quot;  quote from Animal House. :)\r\n\r\nLOL.\n\n53) dlwillson: S G3 Dlwillson\nB Y1 Alpha\nB Y2 Alpha\nB Y3 Field\n\n54) eliscinsky: Build G1 Eliscinsky\n\tdlwillson: Sacrifice plays and catastrophes, especially mid-turn catastrophes, can be very powerful.\n\n55) dlwillson: Sacrifice Y3 Field\nMove R1 Alpha Mars\nCatastrophe Mars R\nMove R2 Alpha Eliscinsky\nMove R2 Field Eliscinsky\nCatastrophe Eliscinsky R\n\teliscinsky: Like cattle ... I feel like I&#39;m being herded.  LOL\n\teliscinsky: I really am enjoying this game.  I&#39;m lasting much longer than in the past.\n\tdlwillson: Here&#39;s the biggest tip for your next game. The overall strategy: To win, you have to make your opponent lose. Constantly have a best plan in mind that ends with him or her losing and you winning. If you don&#39;t have that, you&#39;re probably playing to forestall losing, and eventually, that style of play usually loses. I&#39;m entirely serious. It&#39;s very easy to spend the whole game thinking tactically, and wait for a winning strategy to appear. Don&#39;t do that.\r\n\r\n*Always* be thinking, &quot;If I do this, then this, then this, I win.&quot; It may seem obvious or trivial, but it&#39;s neither.\n\n56) eliscinsky: Trade G1 R1 Eliscinsky\n\teliscinsky: Yes, I see that NOW! LMAO!!!\r\nBut I&#39;m learning so much.\r\nWhimper, whimper ... crawling away.  haha!\r\nReally having a great time! TY so much.\n\n57) dlwillson: B B1 Alpha\n\teliscinsky: I see my demise in 3, 2, 1\n\n58) eliscinsky: Build G1 Eliscinsky\n\n59) dlwillson: M B3 Alpha Eliscinsky\n\n60) eliscinsky: Attack B3 Eliscinsky\n\n61) dlwillson: Sacrifice Y2 Alpha\nMove B1 Alpha Eliscinsky\nMove B1 Alpha Eliscinsky\nCatastrophe Eliscinsky B\n\n62) eliscinsky: Discover G1 Eliscinsky R1 Rover\n\n63) dlwillson: M Y1 Field Eliscinsky\n\n64) eliscinsky: Attack Y1 Eliscinsky\n\n65) dlwillson: S Y2 Field\nM Y1 Alpha Eliscinsky\nM Y1 Alpha Eliscinsky\nC Eliscinsky Y\n\teliscinsky: Well, it was a good game (for me) while it lasted.  I learned a lot.  Thank you for the lessons / hints / tips. :) \r\nLLAP\r\nGood luck in the rest of the Tourney!\r\nNever give up, never surrender! (Star Quest)\n\teliscinsky: Looking forward to reviewing the final report!\n\teliscinsky: Annihilation in ... 0! Ahhhhh!\r\n\r\nLOL\n\tdlwillson: Good game! Thank you for chatting! I think that makes it more fun. What&#39;s LLAP?\n\teliscinsky: Live Long And Prosper -&gt; LLAP\r\n(It&#39;s a Mr. Spock thing. Ya know Trekkies!) ;)\n\tdlwillson: Ah! You too! Thanks again for the game and the conversation!\n\n\nHomeworlds Online (SDG# 34467)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.15, Ended: 2018.8.28\nParticipants: random56 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B2 G3\n\n2) random56: Homeworld Y3 B1 G3\n\tdlwillson: Good luck and have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) random56: Build G1 Random56\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) random56: Build G1 Random56\n\n7) dlwillson: B B1 Dlwillson\n\n8) random56: Trade G1 R1 Random56\n\n9) dlwillson: Build G1 Dlwillson\n\n10) random56: Discover G1 Random56 B2 Gold\n\n11) dlwillson: D B1 Dlwillson G1 Field\n\n12) random56: Build G2 Gold\n\n13) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Dlwillson\n\n14) random56: Build G2 Gold\n\n15) dlwillson: T B3 Y3 Field\n\n\nHomeworlds Online (SDG# 34461)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.15, Ended: 2018.8.27\nParticipants: random56 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Welcome to a tourney game!\n\n2) random56: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) random56: Build G1 Random56\n\n5) wil: Trade G1 Y1 Wil\n\n6) random56: Build G1 Random56\n\n7) wil: Build Y1 Wil\n\n8) random56: Trade G1 R1 Random56\n\twil: I&#39;m near dc....Where in the world are you from?\n\trandom56: Arkansas, I am jealous of people that are close to DC because from what I hear the Looneys are super nice and are open to people seeing their work place\n\n9) wil: Discover Y1 Wil G3 G3\n\twil: They are very friendly folk.\n\n10) random56: Discover R1 Random56 G1 Kite\n\n11) wil: Build Y2 G3\n\n\nHomeworlds Online (SDG# 34454)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.15, Ended: 2018.8.28\nParticipants: random56 (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld B1 R2 G3\n\n2) random56: Homeworld Y3 B1 G3\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) random56: Build G1 Random56\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\trandom56: Thanks, I did not see that it was my turn. \n\teliscinsky: NP, happens to everyone at some point. :)\n\n6) random56: Build G1 Random56\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) random56: Trade G1 R1 Random56\n\n9) eliscinsky: Discover G1 Eliscinsky B3 Alpha\n\n10) random56: Discover R1 Random56 Y2 Home\n\n11) eliscinsky: Build G1 Eliscinsky\n\n\nHomeworlds Online (SDG# 34476)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.16, Ended: 2018.8.21\nParticipants: speardane (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y2 B3 G3 Dlwillson\n\n2) speardane: Homeworld Y1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) speardane: Build G1 Speardane\n\tdlwillson: Belated GL &amp; HF!\n\n5) dlwillson: T G1 Y1 Dlwillson\n\tspeardane: Good luck!\n\n6) speardane: Trade G3 R3 Speardane\n\n7) dlwillson: B Y1 Dlwillson\n\n8) speardane: Build G1 Speardane\n\tdlwillson: ?!?\n\n9) dlwillson: Discover Y1 Dlwillson B1 Sea\n\n10) speardane: Discover G1 Speardane B3 Delos\n\n11) dlwillson: Build G1 Dlwillson\n\n12) speardane: Build G2 Delos\n\n13) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sea\nBuild Y2 Sea\nBuild Y3 Dlwillson\n\n14) speardane: Trade G1 R1 Delos\n\n15) dlwillson: T Y3 R3 Dlwillson\n\n16) speardane: Build R1 Delos\n\n17) dlwillson: Build Y3 Dlwillson\n\n18) speardane: Sacrifice R1 Delos\nPass\n\n19) dlwillson: Discover Y3 Dlwillson G1 Field\n\n20) speardane: Build G2 Speardane\n\n21) dlwillson: Build Y3 Field\n\n22) speardane: Discover G1 Speardane Y3 Lebling\n\n23) dlwillson: M Y3 Field Delos\n\n24) speardane: Build G2 Delos\n\n25) dlwillson: S R3 Dlwillson\nA G2 Delos\nA G2 Delos\nA R1 Delos\n\n26) speardane: Build G3 Speardane\n\n27) dlwillson: S Y2 Sea\nM G2 Delos Speardane\nM G2 Delos Speardane\nC Speardane G\n\n28) speardane: Move G1 Lebling Speardane\n\n29) dlwillson: M Y3 Field Delos\n\n30) speardane: Build R1 Speardane\n\n31) dlwillson: T Y3 G3 Delos\n\n32) speardane: Trade R3 Y3 Speardane\n\n33) dlwillson: Sacrifice Y2 Sea\nMove Y3 Delos Speardane\nMove Y1 Sea Delos\n\n34) speardane: Attack Y3 Speardane\n\n35) dlwillson: M Y1 Delos Speardane\nC Speardane Y\n\n36) speardane: Trade R1 Y1 Speardane\n\n37) dlwillson: S Y1 Dlwillson\nM G3 Delos Speardane\n\n38) speardane: Trade Y1 R1 Speardane\n\n39) dlwillson: S R1 Delos\nA R1 Speardane\n\n40) speardane: Pass\n\n41) dlwillson: A G1 Speardane\n\n\tspeardane: Good game!\n\tdlwillson: Good game! Thank you!\n\nHomeworlds Online (SDG# 34478)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.17, Ended: 2018.8.26\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld G2 B1 Y3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\twil: no short uni!  lol, let the games begin...I&#39;ll go record we started.\n\n5) wil: Build G1 Wil\n\n6) Trydnt: Trade Y1 B1 Trydnt\n\tTrydnt: haha no I just saw blue and yellow and thought you were up to your old tricks (h b2 y1 g3) I think this will be an interesting game\n\n7) wil: Trade G1 B1 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: Build B2 Wil\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: Discover G1 Wil Y1 Y1\n\n14) Trydnt: Build B1 Trydnt\n\n15) wil: Move B2 Wil Y1\n\n16) Trydnt: Build R1 Trydnt\n\n17) wil: Build B2 Y1\n\n18) Trydnt: Discover B1 Trydnt G3 G3\n\n19) wil: Move B2 Y1 G3\n\n20) Trydnt: Build B3 Trydnt\n\n21) wil: Build B3 Y1\n\n22) Trydnt: Build Y1 Trydnt\n\n23) wil: Trade B2 R2 G3\n\n24) Trydnt: Move B3 Trydnt G3\n\n25) wil: Move B2 Y1 G3\n\n26) Trydnt: Trade B3 Y3 G3\n\n27) wil: Build R2 G3\n\n28) Trydnt: Move R1 Trydnt G3\n\n29) wil: Trade B2 Y2 G3\n\n30) Trydnt: Build R2 G3\nCatastrophe G3 R\n\n31) wil: Trade G1 R1 Wil\n\n32) Trydnt: Sacrifice R1 Trydnt\nAttack Y2 G3\n\n33) wil: Build B2 Y1\n\n34) Trydnt: Build B2 G3\n\n35) wil: Trade B2 Y2 Y1\n\n36) Trydnt: Discover B2 G3 G1 G1\n\n37) wil: Discover Y2 Y1 G3 Gee3\n\n38) Trydnt: Move Y2 G3 G1\n\n39) wil: Build G1 Wil\n\n40) Trydnt: Trade B2 G2 Trydnt\n\n41) wil: Trade B3 Y3 Y1\n\n42) Trydnt: Build B2 G1\n\n43) wil: Move B1 Wil G1\n\n44) Trydnt: Trade B2 R2 G1\n\n45) wil: S G3 Wil\nBuild G2 Y1\nBuild G3 Wil\nBuild B2 G1\n\n46) Trydnt: Sacrifice R2 G1\nAttack B2 G1\nAttack B1 G1\n\n47) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild R2 Wil\n\n48) Trydnt: Build Y1 G3\n\n49) wil: Move R1 Wil Y1\n\n50) Trydnt: Trade B2 R2 G1\n\n51) wil: Move R1 Wil G1\n\n52) Trydnt: Sacrifice R2 G1\nAttack R1 G1\nPass\n\n53) wil: Build R2 Y1\n\n54) Trydnt: Sacrifice G2 Trydnt\nBuild R2 Trydnt\nBuild R3 G1\n\n55) wil: Discover R1 Y1 B3 B3\n\n56) Trydnt: Discover Y1 Trydnt R3 R3\n\n57) wil: Sacrifice G3 Wil\nBuild G2 Y1\nBuild G3 Wil\nBuild R3 B3\n\n58) Trydnt: Move R1 Trydnt G3\n\n59) wil: Move G1 Y1 G3\n\n60) Trydnt: Sacrifice Y2 G1\nMove Y1 G3 Y1\nMove Y1 R3 Y1\nCatastrophe Y1 Y\n\n61) wil: Sacrifice G3 Wil\nBuild G2 G3\nBuild G2 G3\nBuild G3 Wil\nCatastrophe G3 G\n\n62) Trydnt: Trade R3 Y3 G1\n\n63) wil: T R3 Y3 B3\n\n64) Trydnt: Build Y1 G1\n\n65) wil: Trade G1 B1 Wil\n\n66) Trydnt: Build Y1 Trydnt\n\n67) wil: Discover B1 Wil G1 Gee1\n\twil: Let&#39;s clear the board!\r\n\n\n68) Trydnt: Discover Y1 G1 G3 G3\n\n69) wil: B G1 Wil\n\n70) Trydnt: Move B2 G1 G3\n\n71) wil: B G2 Wil\n\n72) Trydnt: Build B2 G1\n\n73) wil: D G2 Wil Y1 Y1\n\n74) Trydnt: Build Y2 G1\n\twil: He&#39;s back!\n\n75) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB R1 B3\n\n76) Trydnt: Move Y3 G1 Gee3\n\n77) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Gee1\nBuild B3 Gee1\n\n78) Trydnt: Move B2 G3 Gee1\nCatastrophe Gee1 B\n\n79) wil: Discover Y2 Gee3 G1 Gee1\n\n80) Trydnt: Build B1 G1\n\n81) wil: S G3 Wil\nB G3 Wil\nB R2 B3\nB R3 Wil\n\n82) Trydnt: Build R3 G1\n\n83) wil: S Y2 Gee1\nM R1 B3 G1\nM R1 B3 G1\nC G1 R\n\n84) Trydnt: Build Y2 G3\n\n85) wil: M R3 Wil G1\n\n86) Trydnt: Sacrifice Y3 Gee3\nMove B2 G1 Wil\nMove B1 G1 Wil\nMove B1 G1 Wil\nCatastrophe Wil B\n\n87) wil: Attack Y2 G1\n\n88) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nDiscover Y1 Trydnt B3 Be3\n\n89) wil: S Y3 B3\nM R3 G1 B3\nM R3 B3 Trydnt\nM Y2 G1 Wil\nC Wil Y\n\n\tTrydnt: You had me worried when we blew everything up and started over haha well played!\n\nHomeworlds Online (SDG# 34480)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.17, Ended: 2018.9.3\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R1 B3 G3 Dlwillson\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\tdlwillson: Good luck! Have fun!\n\tTrydnt: same to you! \n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) Trydnt: Build Y2 Trydnt\n\n9) dlwillson: D Y1 Dlwillson B2 Sea\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) dlwillson: B G1 Dlwillson\n\n12) Trydnt: Build G1 Trydnt\n\n13) dlwillson: M G1 Dlwillson Sea\n\n14) Trydnt: Trade G1 R1 Trydnt\n\n15) dlwillson: B G1 Sea\n\n16) Trydnt: Build R1 Trydnt\n\n17) dlwillson: B Y2 Dlwillson\n\n18) Trydnt: Build Y3 G3\n\n19) dlwillson: B Y3 Sea\n\n20) Trydnt: Discover Y1 G3 G2 G2\n\n21) dlwillson: Trade Y2 R2 Dlwillson\n\n22) Trydnt: Build R2 Trydnt\n\n23) dlwillson: T Y3 R3 Sea\n\n24) Trydnt: Move R1 Trydnt G3\n\n25) dlwillson: B G1 Dlwillson\n\n26) Trydnt: Build G2 Trydnt\n\n27) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sea\nBuild Y2 Sea\nBuild Y3 Dlwillson\n\n28) Trydnt: Build Y3 G2\n\n29) dlwillson: B G3 Dlwillson\n\n30) Trydnt: Trade R2 B2 Trydnt\n\n31) dlwillson: D G2 Sea B3 Sky\n\n32) Trydnt: Build R2 G3\n\n33) dlwillson: S Y3 Dlwillson\nM G1 Sea Sky\nM G2 Sky Trydnt\nM G1 Sky Trydnt\nC Trydnt G\n\n34) Trydnt: Build Y3 G3\n\n35) dlwillson: S Y2 Sea\nM R3 Sea G3\nM R3 G3 Trydnt\n\n36) Trydnt: Sacrifice Y3 G3\nMove R1 G3 Trydnt\nMove R2 G3 Trydnt\nCatastrophe Trydnt R\nDiscover Y2 Trydnt B3 B3\n\n37) dlwillson: Build G1 Sea\n\n38) Trydnt: Trade B2 R2 Trydnt\n\n39) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Dlwillson\nB G3 Dlwillson\n\n40) Trydnt: Move Y3 G3 Trydnt\n\n41) dlwillson: B Y2 Sea\n\n42) Trydnt: Trade Y3 G3 Trydnt\n\n43) dlwillson: Discover G2 Sea Y3 Sol\n\n44) Trydnt: Build G3 Trydnt\n\n45) dlwillson: M G2 Sol Trydnt\n\n46) Trydnt: Sacrifice Y3 G2\nMove G3 Trydnt B3\nMove G3 B3 G2\nMove G3 G2 Dlwillson\nCatastrophe Dlwillson G\n\n47) dlwillson: Sacrifice R2 Dlwillson\nAttack R2 Trydnt\nPass\n\n48) Trydnt: Trade Y2 R2 B3\n\n49) dlwillson: B G1 Trydnt\n\n50) Trydnt: Trade G3 B3 Trydnt\n\n51) dlwillson: T R2 B2 Trydnt\n\n52) Trydnt: Sacrifice R2 B3\nAttack B2 Trydnt\nAttack G1 Trydnt\n\n53) dlwillson: S G2 Trydnt\nB Y2 Sea\nB Y3 Dlwillson\n\n54) Trydnt: Build Y3 G2\n\n55) dlwillson: T Y3 G3 Dlwillson\n\n56) Trydnt: Discover Y1 G2 G3 G3\n\n57) dlwillson: T Y1 B1 Sea\n\tdlwillson: Well played! I thought I had you.\n\n58) Trydnt: Trade B3 G3 Trydnt\n\n59) dlwillson: D Y2 Sea B3 Sky\n\n60) Trydnt: Move B2 Trydnt G3\n\n61) dlwillson: B G2 Dlwillson\n\n62) Trydnt: Discover G1 Trydnt Y3 Y3\n\n63) dlwillson: T G1 R1 Sea\n\n64) Trydnt: Trade Y1 R1 G3\n\n65) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Sea\nBuild Y1 Sky\nBuild Y3 Dlwillson\n\n66) Trydnt: Build R2 G3\n\n67) dlwillson: T Y3 G3 Dlwillson\n\n68) Trydnt: Build B1 G3\n\n69) dlwillson: T Y2 G2 Sky\n\n70) Trydnt: Trade R2 Y2 G3\n\n71) dlwillson: S G3 Dlwillson\nB G1 Sky\nB Y3 Sky\nB G3 Dlwillson\n\n72) Trydnt: Build R2 G3\n\n73) dlwillson: D G1 Sea B3 Alsosky\n\n74) Trydnt: Move B1 G3 G2\n\n75) dlwillson: Sacrifice Y3 Sky\nMove G1 Sky Trydnt\nMove G2 Sky Trydnt\nMove G1 Alsosky Trydnt\nCatastrophe Trydnt G\n\n\tdlwillson: Good game! Thank you!\n\tTrydnt: Ugh bluebirded. Terrible way to go out. Good game!\n\nHomeworlds Online (SDG# 34343)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.8.19, Ended: 2018.10.14\nParticipants: mneme (S), dragon76n (N)\nWinner: mneme\n\n1) dragon76n: Homeworld Y1 B3 G3\n\n2) mneme: Homeworld B1 G3 Y3\n\n3) dragon76n: Build G1 Dragon76n\n\n4) mneme: Build Y1 Mneme\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) mneme: Build Y2 Mneme\n\n7) dragon76n: Build G1 Dragon76n\n\tmneme: I can&#39;t tell quite from the setup -- is this a tournament game?\r\n\n\tdragon76n: Tournament game? no...\n\n8) mneme: Discover Y1 Mneme B2 Caliope\n\tmneme: I didn&#39;t think so, but just wanted to make sure; I&#39;m in like 2 tournament games right now, so... :) \r\nGood luck &amp; have fun!\r\n\n\n9) dragon76n: Trade G1 R1 Dragon76n\n\tmneme: Just to make sure: Remember that this is a small universe game.\n\tdragon76n: Ok. I haven&#39;t played any tournament games. What is different about it?\n\n10) mneme: Trade Y2 R2 Mneme\n\n11) dragon76n: Move Y1 Dragon76n Caliope\n\tmneme: There&#39;s an annual tournament running now on a ladder.  It&#39;s run external to SDG, but using sdg for the games.\r\n\r\nhttps://docs.google.com/forms/d/e/1FAIpQLScy1bEYjqRjH_ghRgqyrt2Pp5Y1E-XleIZPiPyHWsj1v-0Rkw/viewform\r\n\r\nIt&#39;s technically still open if you want to get into it -- it&#39;s running as a round robin, so you challenge people in it in games until you&#39;re in as many games as you want to, and the winner is the one with the best record overall.\n\n12) mneme: Move R2 Mneme Caliope\n\tdragon76n: Thanks for the info about the tournament. \n\n13) dragon76n: D Y1 Caliope B1 Bluone\n\n14) mneme: Build Y2 Mneme\n\n15) dragon76n: T Y1 G1 Bluone\n\n16) mneme: Build Y1 Mneme\n\n17) dragon76n: B G1 Bluone\n\n18) mneme: Trade Y3 G3 Mneme\n\n19) dragon76n: T G1 B1 Bluone\n\n20) mneme: Move R2 Caliope Bluone\n\n21) dragon76n: S B1 Bluone\nT G1 R1 Bluone\n\n22) mneme: Attack R1 Bluone\n\n23) dragon76n: B G1 Dragon76n\n\n24) mneme: Sacrifice G3 Mneme\nBuild Y2 Caliope\nBuild Y2 Caliope\nBuild Y3 Mneme\n\n25) dragon76n: Discover G1 Dragon76n R2 Redtwo\n\n26) mneme: Trade Y3 G3 Mneme\n\tdragon76n: Feels like I&#39;m way behind in this one... \n\tmneme: some of my early moves were pretty brutal.  \n\n27) dragon76n: B G1 Dragon76n\n\n28) mneme: Move Y2 Caliope Bluone\n\n29) dragon76n: Build G1 Redtwo\n\n30) mneme: Sacrifice G3 Mneme\nBuild Y3 Mneme\nBuild Y3 Bluone\nBuild Y3 Caliope\n\n31) dragon76n: Discover G1 Dragon76n R2 Reddup\n\tdragon76n: Uh oh\n\n32) mneme: Trade Y3 G3 Caliope\n\n33) dragon76n: B G2 Dragon76n\n\n34) mneme: Build Y3 Caliope\n\n35) dragon76n: S G3 Dragon76n\nB G2 Reddup\nB G2 Redtwo\nB G3 Dragon76n\n\n36) mneme: Sacrifice Y2 Bluone\nMove Y3 Caliope Dragon76n\nMove G3 Caliope Dragon76n\n\n37) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild R1 Dragon76n\nBuild R3 Dragon76n\n\n38) mneme: Sacrifice R2 Bluone\nAttack R3 Dragon76n\nAttack G3 Dragon76n\n\n39) dragon76n: Sacrifice G2 Redtwo\nBuild R2 Dragon76n\nCatastrophe Dragon76n R\nBuild G2 Dragon76n\n\n40) mneme: Catastrophe Dragon76n G\nTrade Y3 G3 Mneme\n\n\tmneme: Good game!\r\n\n\nHomeworlds Online (SDG# 34468)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.19, Ended: 2018.9.1\nParticipants: dlwillson (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B2 Y3 G3\n\n2) dlwillson: H Y3 B1 G3\n\n3) ajo: Build G1 Ajo\n\n4) dlwillson: B G1 Dlwillson\n\n5) ajo: Trade G1 B1 Ajo\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) ajo: Discover B1 Ajo G1 Alpha\n\n8) dlwillson: Build B2 Dlwillson\n\n9) ajo: Build B2 Alpha\n\tdlwillson: Good luck and have fun!\n\tajo: You too!\n\n10) dlwillson: D B1 Dlwillson G2 Field\n\n11) ajo: Build B3 Alpha\n\n12) dlwillson: B B3 Field\n\n13) ajo: Trade B2 Y2 Alpha\n\n14) dlwillson: T B1 R1 Field\n\n15) ajo: Build G1 Ajo\n\n16) dlwillson: Build R1 Field\n\n17) ajo: Trade B1 R1 Alpha\n\n18) dlwillson: Trade R1 Y1 Field\n\n19) ajo: Discover G1 Ajo B1 Beta\n\n20) dlwillson: T B2 R2 Dlwillson\n\n21) ajo: Build G1 Ajo\n\n22) dlwillson: B G2 Dlwillson\n\n23) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Beta\n\n24) dlwillson: S G3 Dlwillson\nB Y1 Field\nB B1 Field\nB G3 Dlwillson\n\n25) ajo: Trade G2 R2 Ajo\n\n26) dlwillson: T G2 Y2 Dlwillson\n\n27) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Beta\nBuild G3 Ajo\n\n28) dlwillson: Build R1 Field\n\n29) ajo: Sacrifice G3 Beta\nBuild G3 Beta\nBuild B2 Alpha\nBuild Y1 Alpha\n\n30) dlwillson: D R1 Field B3 Sky\n\n31) ajo: Sacrifice Y2 Alpha\nMove G3 Beta Sky\nDiscover G2 Beta B2 Gamma\n\n32) dlwillson: S Y1 Field\nD R1 Sky Y1 Sol\n\n33) ajo: Discover B2 Alpha Y2 Delta\n\n34) dlwillson: M B3 Field Beta\n\n35) ajo: Sacrifice G1 Beta\nBuild G1 Gamma\n\n36) dlwillson: Sacrifice Y1 Field\nMove B3 Beta Gamma\n\n37) ajo: Sacrifice G2 Gamma\nBuild G2 Sky\nBuild B1 Delta\n\n38) dlwillson: S G3 Dlwillson\nB R2 Field\nB R3 Dlwillson\nB R3 Sol\n\n39) ajo: Sacrifice G1 Gamma\nBuild R3 Alpha\n\n40) dlwillson: Trade B3 G3 Gamma\n\n41) ajo: Sacrifice G2 Ajo\nBuild B3 Alpha\nBuild Y1 Alpha\n\n42) dlwillson: B G1 Gamma\n\n43) ajo: Trade G3 Y3 Sky\n\n44) dlwillson: T R2 Y2 Field\n\n45) ajo: Move B3 Alpha Field\n\n46) dlwillson: S Y2 Field\nM G3 Gamma Sol\nM G1 Gamma Sol\n\n47) ajo: Sacrifice Y3 Sky\nMove G2 Sky Sol\nMove G1 Ajo Sol\nMove R3 Alpha Delta\nCatastrophe Sol Green\n\n48) dlwillson: T R2 G2 Dlwillson\n\n49) ajo: Build R2 Ajo\n\n50) dlwillson: S G2 Dlwillson\nB B2 Field\nB B3 Field\nC Field B\n\n51) ajo: Build Y2 Alpha\n\n52) dlwillson: T Y2 G2 Dlwillson\n\n53) ajo: Move Y2 Alpha Field\n\n54) dlwillson: B R2 Dlwillson\n\n55) ajo: Sacrifice R1 Alpha\nAttack R1 Field\n\n56) dlwillson: M R3 Sol Field\n\n57) ajo: Sacrifice Y2 Field\nMove R1 Field Dlwillson\nMove R3 Delta Dlwillson\nCatastrophe Dlwillson Red\n\n58) dlwillson: Build G1 Dlwillson\n\n59) ajo: Build Y2 Alpha\n\n60) dlwillson: T G2 Y2 Dlwillson\n\n61) ajo: Sacrifice Y2 Alpha\nMove B3 Alpha Delta\nMove B3 Delta Dlwillson\n\n62) dlwillson: B Y2 Dlwillson\n\n63) ajo: Sacrifice R2 Ajo\nAttack Y2 Dlwillson\nAttack Y2 Dlwillson\n\n\tdlwillson: Good game! Well played! I should have resigned a couple moves ago, but I was hoping you&#39;d make a mistake.\n\tajo: Good game. :)\n\nHomeworlds Online (SDG# 34487)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.19, Ended: 2018.9.13\nParticipants: eliscinsky (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) eliscinsky: Homeworld R1 B2 G3\n\n3) Draw5PlayAll: Homeworld B3 R2 G3\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) eliscinsky: T G1 B1 Eliscinsky\n\n15) Draw5PlayAll: Discover R2 Draw5playall G1 Epa\n\n16) eliscinsky: D R1 Eliscinsky G3 Doe\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) eliscinsky: Build B1 Eliscinsky\n\tDraw5PlayAll: Next blue system: NAFTA?\n\n19) Draw5PlayAll: Trade G1 B1 Draw5playall\n\teliscinsky: Sure, that would be appropriate.  Then red star NSA.  haha!\r\n\r\nNot sure what the yellow star would be.\n\teliscinsky: Oh yeah, DOT for yellow.\n\n20) eliscinsky: Build R2 Doe\n\n21) Draw5PlayAll: Build R3 Epa\n\n22) eliscinsky: Move B1 Eliscinsky Doe\n\n23) Draw5PlayAll: Move B1 Draw5playall Epa\n\n24) eliscinsky: Sacrifice Y1 Eliscinsky\nDiscover R2 Doe Y1 Dot\n\n25) Draw5PlayAll: Build R3 Epa\n\n26) eliscinsky: Trade B1 Y1 Eliscinsky\n\n27) Draw5PlayAll: Build Y2 Draw5playall\n\n28) eliscinsky: B R3 Doe\n\n29) Draw5PlayAll: Trade R3 Y3 Epa\n\n30) eliscinsky: T R3 Y3 Doe\n\n31) Draw5PlayAll: Trade R2 B2 Epa\n\tDraw5PlayAll: Yellow should be NASA and FTA\n\tDraw5PlayAll: Red should be DoD or.... not sure\n\teliscinsky: Yeah, I like those.\n\teliscinsky: I choose Department of Transportation. \n\teliscinsky: I choose Department of Transportation. \n\n32) eliscinsky: S Y3 Doe\nM R1 Doe Dot\nM R1 Dot Draw5playall\nM R2 Dot Draw5playall\nC Draw5playall Red\n\n33) Draw5PlayAll: Move Y3 Epa Doe\n\n34) eliscinsky: T B1 Y1 Doe\n\n35) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G3 Draw5playall Eliscinsky\nMove Y3 Doe Eliscinsky\n\n36) eliscinsky: M Y1 Doe Eliscinsky\n\n37) Draw5PlayAll: Sacrifice R3 Epa\nAttack G3S Eliscinsky\nAttack Y1S Eliscinsky\nAttack Y1S Eliscinsky\n\n\tDraw5PlayAll: Good try\n\teliscinsky: Thanks for the game. Good luck in the tourney!\n\tDraw5PlayAll: Wait was this a tournament game?\n\tBabamots: Yes, this game was reported as being part of the tournament.\n\nHomeworlds Online (SDG# 34489)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.20, Ended: 2018.10.1\nParticipants: speardane (S), DodoBirb (N)\nWinner: speardane\n\n1) DodoBirb: Homeworld B1 R3 G3\n\n2) speardane: Homeworld R2 B3 G3\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) speardane: Build G1 Speardane\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) speardane: Trade G3 Y3 Speardane\n\n7) DodoBirb: Build Y1 Dodobirb\n\n8) speardane: Build G1 Speardane\n\n9) DodoBirb: Discover Y1 Dodobirb G2 Goat\n\n10) speardane: Discover G1 Speardane B1 Delos\n\n11) DodoBirb: Trade Y1 B1 Dodobirb\n\n12) speardane: Build Y1 Speardane\n\n13) DodoBirb: Build Y1 Goat\n\n14) speardane: Move Y1 Speardane Delos\n\n15) DodoBirb: Discover Y1 Goat G1 Farm\n\n16) speardane: Build G2 Delos\n\n17) DodoBirb: Build G2 Dodobirb\n\n18) speardane: Sacrifice G2 Delos\nBuild G2 Speardane\nBuild G3 Speardane\n\n19) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild Y2 Farm\nBuild Y2 Goat\n\n20) speardane: Sacrifice G3 Speardane\nBuild Y2 Delos\nBuild Y3 Delos\nBuild G3 Speardane\n\n21) DodoBirb: Move Y1 Goat Delos\nCatastrophe Delos Y\n\n22) speardane: Trade G3 R3 Speardane\n\n23) DodoBirb: Trade G3 R3 Dodobirb\n\n24) speardane: Move R3 Speardane Farm\n\n25) DodoBirb: Build G3 Dodobirb\n\n26) speardane: Attack Y2 Farm\n\n27) DodoBirb: Trade G3 Y3 Dodobirb\n\n28) speardane: Sacrifice G2 Speardane\nBuild G2 Delos\nBuild R1 Farm\n\n29) DodoBirb: Move R3 Dodobirb Goat\n\n30) speardane: Trade G1 Y1 Delos\n\n31) DodoBirb: Build B2 Dodobirb\n\n32) speardane: Build Y1 Delos\n\n33) DodoBirb: Trade B2 R2 Dodobirb\n\n34) speardane: Trade Y1 R1 Delos\n\n35) DodoBirb: Move B1 Dodobirb Goat\n\n36) speardane: Build Y1 Speardane\n\n37) DodoBirb: Build B2 Goat\n\n38) speardane: Build Y2 Delos\n\n39) DodoBirb: Build Y3 Dodobirb\n\n40) speardane: Discover Y1 Speardane G1 Lebling\n\n41) DodoBirb: Discover B1 Goat G3 Middle\n\n42) speardane: Build G3 Speardane\n\n43) DodoBirb: Build G3 Dodobirb\n\n44) speardane: Move Y2 Delos Middle\n\n45) DodoBirb: Build B2 Middle\n\n46) speardane: Sacrifice R1 Farm\nAttack B2 Middle\n\n47) DodoBirb: Sacrifice G2 Dodobirb\nBuild B2 Middle\nBuild B3 Middle\nCatastrophe Middle B\n\n48) speardane: Sacrifice G3 Speardane\nBuild R1 Delos\nBuild G2 Speardane\nBuild G3 Delos\n\n49) DodoBirb: Build B1 Goat\n\n50) speardane: Sacrifice G3 Delos\nBuild R1 Farm\nBuild R2 Delos\nBuild G3 Speardane\n\n51) DodoBirb: Build B2 Goat\n\n52) speardane: Trade G2 B2 Speardane\n\n53) DodoBirb: Move B2 Goat Dodobirb\n\n54) speardane: Sacrifice B2 Speardane\nTrade R3 B3 Farm\nTrade Y2 B2 Middle\n\n55) DodoBirb: Build R3 Goat\n\n56) speardane: Sacrifice G3 Speardane\nBuild G2 Speardane\nBuild G3 Speardane\nBuild B3 Middle\n\n57) DodoBirb: Build Y2 Goat\n\n58) speardane: Sacrifice Y2 Farm\nMove R1 Delos Goat\nMove R1 Delos Goat\nCatastrophe Goat Red\n\n59) DodoBirb: Move R2 Dodobirb Goat\n\n60) speardane: Sacrifice Y1 Lebling\nMove B3 Middle Goat\n\n61) DodoBirb: Sacrifice Y2 Goat\nDiscover Y2 Goat G1 Newgoat\nMove R2 Goat Newgoat\n\n62) speardane: Move G3 Speardane Newgoat\n\n63) DodoBirb: Discover Y3 Dodobirb Y2 Moveout\n\n64) speardane: Sacrifice R2 Delos\nAttack R2 Newgoat\nAttack Y2 Newgoat\n\n65) DodoBirb: Trade B2 R2 Dodobirb\n\n66) speardane: Attack Y1 Farm\n\n67) DodoBirb: Move Y3 Moveout Delos\n\n68) speardane: Sacrifice G3 Newgoat\nBuild Y1 Delos\nBuild Y2 Delos\nBuild G3 Delos\nCatastrophe Delos Yellow\n\n69) DodoBirb: Build Y1 Dodobirb\n\n70) speardane: Sacrifice G3 Delos\nBuild G3 Delos\nBuild Y1 Speardane\nBuild Y2 Newgoat\n\n71) DodoBirb: Build B2 Goat\nCatastrophe Goat B\n\n72) speardane: Sacrifice Y2 Newgoat\nDiscover Y1 Speardane B1 Lebling\nMove G1 Speardane Lebling\n\n73) DodoBirb: Trade R2 B2 Dodobirb\n\n74) speardane: Sacrifice G3 Delos\nBuild G2 Delos\nBuild Y2 Speardane\nBuild G3 Lebling\n\n75) DodoBirb: Discover Y3 Dodobirb R2 Red\n\n76) speardane: Sacrifice G3 Lebling\nBuild Y2 Farm\nBuild G3 Speardane\nBuild Y3 Lebling\n\n\tDraw5PlayAll: Time forfeit?\n\tDodoBirb: No, I forfeited by choice. I felt like I made too many mistakes to comeback. I decided that I would just take what I learned and use it in a different match.\n\nHomeworlds Online (SDG# 34440)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.20, Ended: 2018.8.26\nParticipants: zeder (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Hey zeder! I didn&#39;t hear back from you by email or PM, so I&#39;m still wondering if you want to be in the tournament. Does this game mean yes?\n\n2) zeder: Homeworld Y1 B2 G3\n\n3) Babamots: Build G1 Babamots\n\tzeder: Yes please\n\tBabamots: Great! You&#39;re back on the list. Good luck!\n\n4) zeder: Build G1 Zeder\n\n5) Babamots: Trade G1 Y1 Babamots\n\n\tBabamots: Looks like you&#39;ve timed out of all your tournament games. If you still want to be in the tournament, let me know. I bet your opponents (including me) would be willing to forget these partial games and start over.\n\nHomeworlds Online (SDG# 34455)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.20, Ended: 2018.8.26\nParticipants: dlwillson (S), zeder (N)\nWinner: dlwillson\n\n1) zeder: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 Y1 G3\n\n3) zeder: Build G1 Zeder\n\n4) dlwillson: B G1 Dlwillson\n\n\nHomeworlds Online (SDG# 34457)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.20, Ended: 2018.8.26\nParticipants: zeder (S), speardane (N)\nWinner: speardane\n\n1) speardane: Homeworld Y2 G3 B3\n\n2) zeder: Homeworld B2 Y3 G3\n\n3) speardane: Build B1 Speardane\n\n4) zeder: Build G1 Zeder\n\n5) speardane: Trade B1 R1 Speardane\n\n\nHomeworlds Online (SDG# 34469)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.22, Ended: 2018.9.2\nParticipants: dlwillson (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) dlwillson: H Y2 B3 G3\n\tBabamots: For the record, this is for the tournament. Good luck!\n\n3) Babamots: Build G1 Babamots\n\tdlwillson: Good luck to you, too, and have fun!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Babamots: Build Y1 Babamots\n\n8) dlwillson: B R1 Dlwillson\n\n9) Babamots: Build Y1 Babamots\n\n10) dlwillson: B R2 Dlwillson\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) dlwillson: T R2 Y2 Dlwillson\n\n13) Babamots: Sacrifice G3 Babamots\nBuild Y2 Orion\nBuild Y3 Orion\nBuild Y3 Babamots\n\n14) dlwillson: Discover Y2 Dlwillson G1 Field\n\n15) Babamots: Move Y1 Orion Field\n\n16) dlwillson: M R1 Dlwillson Field\n\n17) Babamots: Build Y3 Field\n\n18) dlwillson: B G1 Dlwillson\n\n19) Babamots: Discover Y1 Field B3 Bolarus\n\tBabamots: Having only yellow is going to become a problem for me at some point. I&#39;ll have to see to that.\n\n20) dlwillson: S G3 Dlwillson\nB R2 Field\nB R2 Field\nB R2 Dlwillson\n\n21) Babamots: Trade Y3 R3 Babamots\n\n22) dlwillson: Build R3 Dlwillson\n\n23) Babamots: Sacrifice R3 Babamots\nAttack Y2 Field\nAttack R2 Field\nAttack R2 Field\n\n24) dlwillson: B R3 Field\nC Field R\n\n25) Babamots: Build Y3 Orion\n\n26) dlwillson: M R2 Dlwillson Field\n\n27) Babamots: Move Y2 Field Bolarus\n\n28) dlwillson: B R1 Field\n\tBabamots: If you surrender now, I&#39;ll spare your soldiers&#39; lives :-P\n\n29) Babamots: Trade Y2 G2 Bolarus\n\tdlwillson: You only have triple my forces! Anything could happen!\n\n30) dlwillson: B R2 Dlwillson\n\n31) Babamots: Build Y2 Bolarus\n\n32) dlwillson: D R2 Dlwillson B1 Sea\n\n33) Babamots: Build G1 Bolarus\n\n34) dlwillson: B R2 Dlwillson\n\n35) Babamots: Trade G2 B2 Bolarus\n\n36) dlwillson: B R3 Field\n\n37) Babamots: Discover Y3 Field B3 Andoria\n\n38) dlwillson: M R1 Dlwillson Sea\n\n39) Babamots: Build B1 Bolarus\n\n40) dlwillson: B R3 Dlwillson\n\n41) Babamots: Discover B2 Bolarus G2 Romulus\n\n42) dlwillson: Trade R3 G3 Dlwillson\n\n43) Babamots: Discover Y1 Babamots R3 Nausicaa\n\n44) dlwillson: Trade G1 B1 Dlwillson\n\tBabamots: Well, I&#39;ve counted that it could take me up to 22 moves (the same as the whole game to this point!), but I don&#39;t think you can stop me from winning now. That r3 you gave me makes it much easier, I&#39;m afraid.\n\n45) Babamots: Build B2 Romulus\n\tdlwillson: Wait a couple moves, and you may have another.\n\n46) dlwillson: Build G1 Dlwillson\n\tBabamots: Thanks, but I shouldn&#39;t need it.\n\n47) Babamots: Move Y2 Bolarus Romulus\n\tdlwillson: Very good. I&#39;ll keep myself busy while you finish beating me. This particular strategy, I should not lose to, any more, given the number of times TwoShort either beat me with it. &lt;sigh&gt; I&#39;m a slow learner.\n\tdlwillson: And a quick forgetter.\n\n48) dlwillson: M G1 Dlwillson Sea\n\tBabamots: When you say &quot;this strategy,&quot; do you mean &quot;hogging the yellow?&quot;\n\n49) Babamots: Discover B1 Bolarus G2 Cardassia\n\n50) dlwillson: M B1 Dlwillson Field\n\n51) Babamots: Build G2 Bolarus\n\n52) dlwillson: B G3 Sea\n\n53) Babamots: Move G1 Bolarus Cardassia\n\n54) dlwillson: Pass\n\n55) Babamots: Move Y1 Bolarus Cardassia\n\n56) dlwillson: Pass\n\n57) Babamots: Sacrifice G2 Bolarus\nBuild G2 Cardassia\nBuild B3 Cardassia\n\tBabamots: This will take a while. We&#39;re only in step 2 of my 10-step plan.\n\tdlwillson: Take your time.\n\n58) dlwillson: Pass\n\n59) Babamots: Move B2 Romulus Nausicaa\n\n60) dlwillson: Pass\n\n61) Babamots: Move Y1 Nausicaa Romulus\n\n62) dlwillson: Pass\n\n63) Babamots: Sacrifice B2 Nausicaa\nTrade G2 B2 Cardassia\nTrade B3 R3 Cardassia\n\n64) dlwillson: S G3 Sea\nB G2 Dlwillson\nB B3 Field\nB G3 Sea\n\n65) Babamots: Move Y2 Romulus Andoria\n\n66) dlwillson: S R1 Field\nPass\n\n67) Babamots: Build R1 Cardassia\n\n68) dlwillson: Pass\n\n69) Babamots: Move Y3 Orion Romulus\n\n70) dlwillson: Pass\n\n71) Babamots: Move Y3 Andoria Cardassia\n\n72) dlwillson: Pass\n\n73) Babamots: Move Y1 Cardassia Andoria\n\n74) dlwillson: Pass\n\n75) Babamots: Sacrifice Y1 Romulus\nDiscover R3 Cardassia Y1 Iconia\n\n76) dlwillson: Pass\n\n77) Babamots: Move B1 Cardassia Iconia\n\n78) dlwillson: Pass\n\tdlwillson: It&#39;s happening!\n\n79) Babamots: Move B2 Cardassia Iconia\n\n80) dlwillson: Pass\n\tdlwillson: &lt;sigh&gt; It&#39;s not happening...\n\tBabamots: I thought I saw a way that if I moved all three blues at once you could interfere. Maybe it was just paranoia.\n\n81) Babamots: Move B2 Romulus Iconia\n\n82) dlwillson: Pass\n\tBabamots: Yeah, if I sacrifice a y3 now, you can trade for the y3 and then do a green catastrophe on Orion, which would still have a yellow ship I needed on it. I think I would still win, but I&#39;m not in the mood for uncertainty.\n\tBabamots: Like young Zaphod, I play it safe.\n\n83) Babamots: Sacrifice Y3 Orion\nMove B2 Iconia Dlwillson\nMove B2 Iconia Dlwillson\nMove B1 Iconia Dlwillson\nCatastrophe Dlwillson B\n\tBabamots: Sorry that I took so long to move that time. I mistyped a move right after you passed but didn&#39;t notice the error message because I was watching Jurassic Park. I blame it on the dinosaurs.\n\n\tdlwillson: Good game. Well played.\n\tBabamots: sacrifice y3 Romulus\r\nmove y2 Orion dlwillson\r\nmove y2 Andoria dlwillson\r\nmove y1 Andoria dlwillson\r\ncatastrophe dilwillson y\n\tBabamots: Good game! And good luck with the rest of the tournament!\n\tFelix: Wow, very interesting. I just got around to studying this game. I&#39;ve actually never seen this situation before. I guess I didn&#39;t play against TwoShort enough! Super interesting (for one player, at any rate!)\n\tDraw5PlayAll: What does this have to do with TwoShort?\n\tBabamots: dlwillson indicated that TwoShort favors/favored yellow-domination play.\n\nHomeworlds Online (SDG# 34483)\nVariants: &quot;Unrated&quot;\nStarted: 2018.8.23, Ended: 2018.9.6\nParticipants: Babamots (S), eliscinsky (N)\nWinner: Babamots\n\n1) eliscinsky: H R1 B2 G3\n\teliscinsky: Sensei, I amd eager for your instruction of my humble self.\n\n2) Babamots: Homeworld Y3 G2 B3\n\teliscinsky: Using a basic starting Homeworld. The one Andy and others say is a good place to start.\n\teliscinsky: Also, since we have not played each other in the tourney yet, hopefully I will become a better player for that match.\n\tBabamots: I believe that your opening move is the strongest one if you go first. I&#39;m deliberately taking an opening that I consider less good.\n\n3) eliscinsky: B G1 Eliscinsky\n\tBabamots: And for anyone who&#39;s observing, this is a teaching game and not for the tournament.\n\tBabamots: Side note, there&#39;s a tricky thing I&#39;ve seen a few times lately that you should know about. If you are moving first, the only safe color to have as a small system marker is red (yellow isn&#39;t too bad though). If you have a b1 or g1 for a home marker, your opponent can usually choose their homeworld to lock you out of that color.\r\n\r\nSay you chose the slightly different opening move\r\n\r\n1. homeworld r2 b1 g3\r\n\r\nThen I could lock you out of blue with\r\n\r\n1... homeworld g3 b1 b3\r\n2. build g1 eliscinsky\r\n2... build b1 Babamots\r\n\r\nI just have to trade my b3 for y3 to have a pretty normal position and quick access to medium pieces (b2) while you can&#39;t get blue ships for a while.\r\n\r\nI could do a similar thing if you had a g1 for a home marker or even yellow, but in the yellow case, I would end up with only green and yellow in my home world and have to discover a blue system before my position stopped being very weird.\n\n4) Babamots: Build B1 Babamots\n\teliscinsky: I suppose the 1st several rounds will be building up.\r\n\r\nAlso, after this move I&#39;ll be resigned to mostly playing outside of work hours. :)\n\n5) eliscinsky: T G1 Y1 Eliscinsky\n\n6) Babamots: Build B1 Babamots\n\n7) eliscinsky: T Y1 B1 Eliscinsky\n\n8) Babamots: Discover B1 Babamots G1 Risa\n\teliscinsky: I traded for a blue 1 so I wouldn&#39;t be locked out of that economy for a while.\r\n\r\nIs that what you would have done? (a simple yes or no is enough for now)\n\tBabamots: Yes, I think that&#39;s the right move.\r\n\r\nIt looks like we&#39;ll split the b2 ships evenly, one for each of us. Next you&#39;ll probably  want to look for ways to either 1) prevent me from getting b3 ships or 2) make sure that you get at least as many of them as me.\n\n9) eliscinsky: Build B2 Eliscinsky\n\n10) Babamots: Build B2 Risa\n\n11) eliscinsky: Trade B1 Y1 Eliscinsky\n\n12) Babamots: Trade B2 Y2 Risa\n\n13) eliscinsky: Build Y1 Eliscinsky\n\n14) Babamots: Build B1 Risa\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) Babamots: Build B2 Babamots\n\tBabamots: Even without my prompting you, I guess you noticed that it&#39;s not safe for you to build more blue at home. Since blue is the color giving access to medium and large ships now, you may want to move your blue to a g3 system so you can get some big ships. Otherwise, I&#39;ll happily start gobbling up the b3 and then start trading them for large ships of other colors.\n\n17) eliscinsky: D B2 Eliscinsky G3 Ds9\n\teliscinsky: But you don&#39;t have access to my system yet.  Or have I missed something.  And with only 2 blue left I would think I should get at least one of them. And let you create the 3 star to gain access to my homeworld. That way I could trade a 3 for another, maybe yellow to gain the movement I need to get to you, or red to protect / attack.\r\n\r\nIs my strategy flawed?\n\n18) Babamots: Trade B1 R1 Risa\n\tBabamots: From here I can sacrifice my y2 to send a b1 to your home for a catastrophe, like this.\n\n19) eliscinsky: Move Y1 Eliscinsky Ds9\n\tBabamots: I was planning to let you undo your last move, but it occurs to me that you might not be able to undo after I made a move and hit undo. Can you still take it back?\n\teliscinsky: I still have an &quot;Undo Last Move&quot; buttton. okay I see the issue.  TY\n\n20) Babamots: Build R1 Risa\n\n21) eliscinsky: Build Y1 Eliscinsky\n\n22) Babamots: Move Y2 Risa Ds9\n\n23) eliscinsky: Trade B2 R2 Ds9\n\n24) Babamots: Sacrifice R1 Risa\nAttack R2 Ds9\n\n25) eliscinsky: Trade Y1 R1 Eliscinsky\n\n26) Babamots: Attack Y1 Ds9\n\n27) eliscinsky: Trade G1 B1 Eliscinsky\n\n28) Babamots: Discover B1 Babamots G1 Betazed\n\tBabamots: If your opponent gets a red ship anywhere, you have to expect him to sacrifice it for an attack if he gets the chance. It&#39;s almost always best to get a red immediately after your opponent does. Otherwise, he can get the drop on you and you&#39;ll just have to run.\n\n29) eliscinsky: Build Y1 Eliscinsky\n\n30) Babamots: Build B2 Betazed\n\n31) eliscinsky: Discover Y1 Eliscinsky G3 Vulcan\n\n32) Babamots: Build B3 Risa\n\n33) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y2 Vulcan\nBuild Y2 Eliscinsky\nBuild Y3 Vulcan\n\n34) Babamots: Sacrifice Y2 Ds9\nMove B3 Risa Ds9\nMove B3 Ds9 Eliscinsky\n\n35) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y1 Vulcan Betazed\nMove Y3 Vulcan Betazed\n\n36) Babamots: Sacrifice R2 Ds9\nAttack Y1 Eliscinsky\nAttack R1 Eliscinsky\n\tBabamots: I&#39;ve never had anyone start cooperating on my Star Trek system name theme before. Do you have a favorite series?\n\tBabamots: You&#39;ve set yourself up to compete for the yellow ships, which is good. You actually have the advantage there since you have your yellow more spread out than me, so I&#39;ll have a harder time building them safely. You also have a g3, which you could sacrifice to quickly take three yellows if you felt like it, possibly denying me any y3.\r\n\r\nYour biggest liability now is that large blues are already available (large ships are a big deal), and I am better prepared to build those. I&#39;ll be able to build b3, trade for y3, and build b3 again.\n\n37) eliscinsky: Move Y2 Vulcan Eliscinsky\n\n38) Babamots: Attack Y2 Eliscinsky\n\n39) eliscinsky: Move Y3 Betazed Babamots\n\tBabamots: Leaving your home system without a large is very dangerous. Right now, I can move my b3 to your home, so I can attack your large as soon as it arrives to defend. You&#39;re welcome to take back that move if you&#39;d like to try something else. If you want to do that triple build, I think you should move one of the yellows out of your home first so you can safely build a y3 at your home for defense.\n\teliscinsky: I think maybe I waited to long.  I do NOT have an undo button.  oh well.\n\tBabamots: OK, well let&#39;s see what I can make out of this then.\n\n40) Babamots: Attack B1 Eliscinsky\n\n\tDraw5PlayAll: I can see many moves ahead when it is a forced line, like red fights in a homeworld when one side clearly has more red power, or the setup for a doomsday machine.\n\nHomeworlds Online (SDG# 34352)\nVariants: &quot;Unrated&quot;\nStarted: 2018.8.23, Ended: 2018.8.27\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G3 Y3 *\n\n2) wil: Homeworld B2 R2 G3 *\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) wil: Build G1 Wil\n\n9) Trydnt: Trade Y1 G1 Trydnt\n\n10) wil: D G1 Wil Y1 Y1\n\n11) Trydnt: Move R1 Trydnt Y1\n\n12) wil: D G1 Y1 Y2 Y2\n\n13) Trydnt: Move R1 Y1 Y2\n\n14) wil: D G1 Y2 Y1 Y1\n\n15) Trydnt: Move R1 Y2 Y1\n\n16) wil: D G1 Y1 R2 R2\n\n17) Trydnt: Move G1 Trydnt Y1\n\twil: He runs to sanctuary\n\n18) wil: Build G1 Wil\n\n19) Trydnt: Build G2 Y1\n\n20) wil: Move G1 Wil Y1\n\n21) Trydnt: Move G2 Y1 R2\n\n22) wil: M G1 Y1 Trydnt\n\n23) Trydnt: Sacrifice R1 Y1\nAttack G1 Trydnt\n\n24) wil: B G2 Wil\n\n25) Trydnt: Move G1 Trydnt Wil\n\n26) wil: S G2 Wil\nB G2 R2\nB G2 R2\nC R2 G\n\n27) Trydnt: Build G1 Wil\n\n28) wil: Trade G3 R3 Wil\n\n29) Trydnt: Attack Y1 Wil\n\n30) wil: A G1 Wil\n\n31) Trydnt: Attack G1 Wil\n\n32) wil: A G1 Wil\n\n33) Trydnt: Trade Y1 R1 Wil\n\twil: You have options...  I have none.\n\n34) wil: T R3 Y3 Wil\n\n35) Trydnt: Build R1 Wil\n\tTrydnt: I was wondering why you traded for the red when it left you with the fewest options\n\n36) wil: A G1 Wil\n\twil: There are no options in my world except reverse attacks\n\n37) Trydnt: Build G2 Y1\n\n38) wil: A R1 Wil\n\n39) Trydnt: Sacrifice G1 Y1\nBuild R1 Wil\nCatastrophe Wil R\n\n40) wil: T G1 R1 Wil\n\n41) Trydnt: Trade Y3 R3 Trydnt\n\n42) wil: B Y1 Wil\n\n43) Trydnt: Build R1 Trydnt\n\n44) wil: B R1 Wil\n\n45) Trydnt: Trade R3 Y3 Trydnt\n\n46) wil: M G1 Wil Y1\n\n47) Trydnt: Build R2 Trydnt\n\n48) wil: D R1 Wil G1 G1\n\n49) Trydnt: Move R2 Trydnt G1\n\n50) wil: B R2 G1\n\n51) Trydnt: Sacrifice G2 Y1\nBuild R2 G1\nBuild R3 Trydnt\nCatastrophe G1 R\n\n52) wil: M G1 Y1 Wil\n\twil: Nice\n\twil: Nice\n\n53) Trydnt: Trade R1 B1 Trydnt\n\tTrydnt: ver nice\n\twil: Yupperz\n\n54) wil: B R1 Wil\n\twil: But don&#39;t break your elbow\n\n55) Trydnt: Build B1 Trydnt\n\n\nHomeworlds Online (SDG# 34491)\nStarted: 2018.8.23, Ended: 2018.9.19\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld R1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) ts52: Build Y1 Ts52\n\n8) Trydnt: Build R1 Trydnt\n\n9) ts52: Build Y1 Ts52\n\n10) Trydnt: Build R2 Trydnt\n\n11) ts52: Discover Y1 Ts52 G3 Kermit\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) ts52: Build Y2 Kermit\n\n14) Trydnt: Discover Y2 Trydnt G1 G1\n\n15) ts52: Build Y3 Ts52\n\n16) Trydnt: Build Y3 G1\n\n17) ts52: Trade Y3 R3 Ts52\n\n18) Trydnt: Discover Y2 G1 G2 G2\n\n19) ts52: Trade Y1 B1 Ts52\n\n20) Trydnt: Build R2 Trydnt\n\n21) ts52: Move R3 Ts52 Kermit\n\n22) Trydnt: Move R1 Trydnt G1\n\n23) ts52: Build R2 Kermit\n\n24) Trydnt: Build R2 G1\n\n25) ts52: Discover R3 Kermit G1 Robin\n\n26) Trydnt: Trade R1 B1 Trydnt\n\n27) ts52: Move Y1 Kermit Robin\n\n28) Trydnt: Sacrifice Y2 G2\nMove B1 Trydnt G1\nDiscover R2 G1 Y3 Y3\n\n29) ts52: Move B1 Ts52 Kermit\n\n30) Trydnt: Sacrifice G3 Trydnt\nBuild R1 Y3\nBuild R3 G1\nBuild R3 Trydnt\n\n31) ts52: Sacrifice G3 Ts52\nBuild Y1 Robin\nBuild Y2 Kermit\nBuild Y3 Ts52\n\n32) Trydnt: Move R3 G1 Kermit\n\n33) ts52: Sacrifice Y2 Kermit\nMove R2 Kermit Robin\nMove B1 Kermit Robin\n\n34) Trydnt: Trade R3 G3 Trydnt\n\n35) ts52: Trade Y3 G3 Ts52\n\n36) Trydnt: Build R3 G1\n\n37) ts52: Build G1 Ts52\n\n38) Trydnt: Attack Y2 Kermit\n\n39) ts52: Build G2 Ts52\n\n40) Trydnt: Sacrifice Y2 Kermit\nMove R1 Y3 Robin\nMove R2 Y3 Robin\nCatastrophe Robin R\n\n41) ts52: Trade Y1 R1 Robin\n\n42) Trydnt: Sacrifice Y3 G1\nMove G3 Trydnt G1\nMove G3 G1 Kermit\nMove G3 Kermit Ts52\nCatastrophe Ts52 G\n\n43) ts52: Build R2 Robin\n\n44) Trydnt: Trade R3 Y3 G1\n\n45) ts52: Build R2 Robin\n\n46) Trydnt: Sacrifice Y3 G1\nMove R1 G1 Kermit\nMove R3 Kermit Ts52\nMove R1 Kermit Robin\nCatastrophe Robin R\n\tts52: Well that doesn&#39;t look very good for me. :( Well played.\n\n47) ts52: Build Y1 Robin\n\n48) Trydnt: Attack Y1 Ts52\n\tTrydnt: thanks :)\n\n\tts52: Good game!\n\tTrydnt: thanks well played\n\nHomeworlds Online (SDG# 34497)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.23, Ended: 2018.9.6\nParticipants: eliscinsky (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) eliscinsky: H R2 B3 G3 Eliscinsky\n\n3) Trydnt: Build G1 Trydnt\n\n4) eliscinsky: B G1 Eliscinsky\n\teliscinsky: GLHF!\n\tTrydnt: Good luck!\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) eliscinsky: T G1 Y1 Eliscinsky\n\n7) Trydnt: Build Y2 Trydnt\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) eliscinsky: Build Y2 Eliscinsky\n\n11) Trydnt: Build Y3 G3\n\n12) eliscinsky: D Y1 Eliscinsky G1 Alpha\n\n13) Trydnt: Trade Y2 R2 Trydnt\n\n14) eliscinsky: B Y2 Alpha\n\n15) Trydnt: Discover Y1 G3 G1 G1\n\n16) eliscinsky: Discover Y2 Alpha B3 Beta\n\n17) Trydnt: Build Y3 G1\n\n18) eliscinsky: Build Y3 Alpha\n\n19) Trydnt: Discover Y1 G1 B3 B3\n\n20) eliscinsky: Move Y1 Alpha Beta\n\n21) Trydnt: Move R2 Trydnt Beta\n\n22) eliscinsky: Sacrifice Y3 Alpha\nMove Y2 Beta Trydnt\nMove Y1 Beta Trydnt\nMove Y2 Eliscinsky G1\n\n23) Trydnt: Sacrifice R2 Beta\nAttack Y2 Trydnt\nAttack Y2 G1\n\n24) eliscinsky: Build Y3 Eliscinsky\n\n25) Trydnt: Sacrifice Y3 G1\nMove Y1 B3 G1\nMove Y1 G1 Eliscinsky\nMove Y2 G1 Eliscinsky\nCatastrophe Eliscinsky Y\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) Trydnt: Trade Y2 R2 Trydnt\n\n28) eliscinsky: Build G1 Eliscinsky\n\n29) Trydnt: Attack Y1 Trydnt\n\n30) eliscinsky: Trade G1 Y1 Eliscinsky\n\n31) Trydnt: Build Y2 G3\n\n32) eliscinsky: Build Y2 Eliscinsky\n\n33) Trydnt: Discover Y2 G3 B1 B1\n\n34) eliscinsky: Trade Y2 R2 Eliscinsky\n\n35) Trydnt: Build Y2 G3\n\n36) eliscinsky: Move R2 Eliscinsky B1\n\n37) Trydnt: Sacrifice R2 Trydnt\nAttack R2 B1\nPass\n\n38) eliscinsky: T G1 R1 Eliscinsky\n\n39) Trydnt: Trade Y1 B1 Trydnt\n\n40) eliscinsky: Discover R1 Eliscinsky G1 Alpha\n\n41) Trydnt: Build B1 Trydnt\n\n42) eliscinsky: Build Y1 Eliscinsky\n\n43) Trydnt: Build G1 Trydnt\n\n44) eliscinsky: Discover Y1 Eliscinsky G1 Beta\n\n45) Trydnt: Move Y2 G3 Alpha\n\n46) eliscinsky: M Y1 Beta G3\n\n47) Trydnt: Sacrifice R2 B1\nAttack R1 Alpha\nAttack Y1 G3\n\n48) eliscinsky: Build Y2 Eliscinsky\n\n49) Trydnt: Build Y3 Alpha\n\n50) eliscinsky: Trade Y2 B2 Eliscinsky\n\n51) Trydnt: Move B1 Trydnt G3\n\n52) eliscinsky: Build G1 Eliscinsky\n\n53) Trydnt: Build R1 Alpha\n\n54) eliscinsky: Build Y2 Eliscinsky\n\n55) Trydnt: Sacrifice G1 Trydnt\nBuild Y3 B1\n\n56) eliscinsky: Move Y1 Eliscinsky B1\n\n57) Trydnt: Discover Y2 B1 B3 B3\n\n58) eliscinsky: M Y1 B1 Eliscinsky\n\n59) Trydnt: Move B1 G3 Alpha\n\teliscinsky: Why do I feel like I&#39;m going to lose?  ;)\n\n60) eliscinsky: D B2 Eliscinsky G1 Beta\n\n61) Trydnt: Move Y3 G3 Beta\n\n62) eliscinsky: B B2 Beta\n\n63) Trydnt: Build B3 Alpha\n\n64) eliscinsky: Move G1 Eliscinsky Beta\n\n65) Trydnt: Build R1 Alpha\n\n66) eliscinsky: T B2 R2 Beta\n\n67) Trydnt: Sacrifice Y3 B1\nMove R1 Alpha Eliscinsky\nMove R1 Alpha Eliscinsky\nMove R1 Alpha Eliscinsky\nCatastrophe Eliscinsky R\n\n68) eliscinsky: Trade Y1 B1 Eliscinsky\n\n69) Trydnt: Sacrifice Y2 B3\nMove B1 Alpha Eliscinsky\nMove B3 Alpha Eliscinsky\nCatastrophe Eliscinsky B\n\n\tTrydnt: good game\r\n\n\teliscinsky: U2, I realised I was at a point of no return about 5 moves ago.  Still tried a few things, but alas.  I hope you don&#39;t mind I sort of gave up there at the end.\r\n\r\nCheers, and Good Luck in the tourney!\n\tTrydnt: no worries. I think once I had most of the yellow it was pretty much unavoidable\n\nHomeworlds Online (SDG# 34496)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.24, Ended: 2018.9.14\nParticipants: DodoBirb (S), Trydnt (N)\nWinner: DodoBirb\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) DodoBirb: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) Trydnt: Build B2 Trydnt\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) DodoBirb: Trade B1 Y1 Dodobirb\n\n11) Trydnt: Trade B1 Y1 G3\n\n12) DodoBirb: Discover B2 Dodobirb G2 Grass\n\n13) Trydnt: Build Y2 G3\n\n14) DodoBirb: Build Y2 Dodobirb\n\n15) Trydnt: Move B2 Trydnt G3\n\n16) DodoBirb: Move Y2 Dodobirb Grass\n\n17) Trydnt: Discover Y2 G3 G2 G2\n\n18) DodoBirb: Build Y2 Grass\n\n19) Trydnt: Build Y3 G3\n\n20) DodoBirb: Build Y3 Dodobirb\n\n21) Trydnt: Build Y3 G2\n\n22) DodoBirb: Build B1 Grass\n\n23) Trydnt: Trade Y3 R3 G3\n\n24) DodoBirb: Trade Y3 R3 Dodobirb\n\n25) Trydnt: Build Y3 G3\n\n26) DodoBirb: Build Y3 Dodobirb\n\n27) Trydnt: Move R3 G3 Grass\n\n28) DodoBirb: Sacrifice Y2 Grass\nDiscover Y2 Grass B3 Bigblue\nMove B2 Grass Bigblue\n\n29) Trydnt: Attack B1 Grass\n\n30) DodoBirb: Trade B2 G2 Bigblue\n\n31) Trydnt: Build R1 Grass\n\n32) DodoBirb: Discover R3 Dodobirb B2 Halfblue\n\n33) Trydnt: Build G1 Trydnt\n\n34) DodoBirb: Build G1 Bigblue\n\n35) Trydnt: Trade G1 R1 Trydnt\n\n36) DodoBirb: Build G1 Bigblue\n\n37) Trydnt: Move Y3 G2 Bigblue\n\n38) DodoBirb: Sacrifice Y3 Dodobirb\nMove G2 Bigblue Trydnt\nMove G1 Bigblue Trydnt\nMove G1 Bigblue Trydnt\nCatastrophe Trydnt G\n\n39) Trydnt: Sacrifice R1 Trydnt\nAttack Y2 Bigblue\n\n\tTrydnt: damn I completely meant to sac the one on the other star. that was unfortunate\n\tTrydnt: is there any way to undo moves that end the game?\n\tDodoBirb: I don&#39;t think so. I suppose we could rematch if it&#39;s allowed.\n\tTrydnt: I sent john a message see what he says\n\tBabamots: Sorry about this situation. My interpretation of the rules is that you may not make a move that results in your own loss (that&#39;s what resigning is for). We should ask Aaron to fix this in SDG 2.0.\r\n\r\nI think the most reasonable thing to do is follow typical chess tournament rules: you &quot;touched&quot; a piece that can&#39;t actually be legally moved. In chess, you just ignore that the &quot;touch&quot; ever took place and continue the game.\r\n\r\nIf you two agree that continuing is the right thing to do, here are a few possible ways to handle it.\r\n\r\n1) Decide on a winner based on the current position. I&#39;m inclined to say that Trydnt has enough of an advantage that he would have won. I&#39;m OK with just awarding Trydnt the point, but we shouldn&#39;t do that if either of you guys don&#39;t like it. I remember being angry about a certain &quot;Starcraft: Broodwar&quot; tournament where the power went out and the officials called the game in favor of &quot;Flash.&quot;\r\n\r\n2) Starting a replacement game on SDG but making the same moves up to this point (and then continuing as if this hadn&#39;t happened). This might take a while, but I think it&#39;s the best option if you want to play out the rest of the moves.\r\n\r\n3) Continue the game in some other way, such as a video call, traveling to an agreed meeting place to play with real pieces, or exchanging SDG-style text moves through email or here in the comments.\r\n\r\nWhat do you guys think?\n\tTrydnt: I think 2) is probably the best as it is closest to what SDG should have done where it shouldn&#39;t have allowed the last move and delivered an error message which would have prompted the intended move. We wouldn&#39;t necessarily have to recreate all the same moves as we could probably amass fleets on homeworlds without calling catastrophe on either and then move everything to correct locations and sacrifice+pass any pieces that should be returned to the bank. Let me know what you think\n\tDodoBirb: I would probably be fine with 1 but 2 definitely seems like the best option so I&#39;ll go with that. \n\tBabamots: OK, sounds like you agree that you&#39;d like to continue the game on SDG. Go ahead and issue the challenge and put the game on the start form as usual. I&#39;ll delete this one.\n\nHomeworlds Online (SDG# 34500)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.24, Ended: 2018.8.26\nParticipants: Trydnt (S), zeder (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34501)\nVariants: &quot;Unrated&quot;\nStarted: 2018.8.26, Ended: 2018.11.13\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R1 B3\n\n2) wil: H Y2 G2 R3 *\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B R1 Wil\n\n5) Trydnt: Trade B1 R1 Trydnt\n\n6) wil: B R2 Wil\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: D R2 Wil B3 B3\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) wil: M R1 Wil B3\n\n11) Trydnt: Build R2 Trydnt\n\n12) wil: T R2 Y2 B3\n\tBabamots: I understand wil won&#39;t be available for a while, so I&#39;m pausing his games for him. Hopefully you can continue soon.\n\tDraw5PlayAll: 67 days ago?!?!\n\n13) Trydnt: Discover R2 Trydnt Y2 Y2\n\tTrydnt: our systems are directly connected... you sure\n\n14) wil: B R2 Wil\n\twil: Lol, thx\n\n15) Trydnt: Build Y1 Trydnt\n\n16) wil: M R2 Wil B3\n\n17) Trydnt: Build B1 Trydnt\n\n18) wil: B R2 Wil\n\n19) Trydnt: Discover R2 Y2 G3 G3\n\n20) wil: T R2 G2 B3\n\n21) Trydnt: Discover Y1 Trydnt G2 G2\n\n22) wil: B G1 B3\n\n23) Trydnt: Discover Y1 Trydnt B2 B2\n\n24) wil: D G2 B3 B2 Bee2\n\n25) Trydnt: Trade B1 Y1 Trydnt\n\n26) wil: D R2 Wil G3 Gee3\n\n27) Trydnt: Build B1 Trydnt\n\n28) wil: T G1 B1 B3\n\n29) Trydnt: Trade B3 Y3 Trydnt\n\n30) wil: M B1 B3 Wil\n\n31) Trydnt: Move Y1 G2 G3\n\n32) wil: B G1 Bee2\n\n33) Trydnt: Discover Y1 Trydnt G2 G2\n\n34) wil: B R2 Gee3\n\n35) Trydnt: Build R3 G3\n\n36) wil: B R3 Wil\n\n37) Trydnt: Build Y2 G3\n\n38) wil: S G1 Bee2\nB Y3 B3\n\n39) Trydnt: Build Y3 G2\n\n40) wil: M R3 Wil B3\n\n41) Trydnt: Build B1 Trydnt\n\n42) wil: B G1 Bee2\n\n43) Trydnt: Move Y3 G2 Gee3\n\n44) wil: B G1 Bee2\n\n45) Trydnt: Sacrifice Y3 Gee3\nMove Y1 B2 B3\nMove Y1 G2 B3\nMove R3 G3 Bee2\nCatastrophe B3 Y\n\n46) wil: T R1 G1 B3\n\n47) Trydnt: Sacrifice R2 G3\nAttack G2 Bee2\nAttack G1 Bee2\n\n48) wil: B G2 Bee2\nC Bee2 G\n\n49) Trydnt: Trade B1 G1 Trydnt\n\n50) wil: B B1 Wil\n\n51) Trydnt: Build B2 Trydnt\n\twil: Nice\n\n52) wil: T B1 Y1 Wil\n\twil: In the nick of time!\n\n53) Trydnt: Discover B2 Trydnt Y2 Y2\n\n54) wil: M Y1 Wil B3\n\n55) Trydnt: Move G1 Trydnt Bee2\n\n56) wil: T R3 Y3 B3\n\n57) Trydnt: Trade B2 G2 Y2\n\n58) wil: D Y1 B3 B2 Btwo\n\n59) Trydnt: Build B1 Trydnt\n\n60) wil: B B2 Wil\n\n61) Trydnt: Discover B1 Trydnt G2 G2\n\n62) wil: M B1 Wil Gee3\n\n63) Trydnt: Sacrifice G2 Y2\nBuild B3 Trydnt\nBuild B3 G2\n\n64) wil: B R1 Wil\n\n65) Trydnt: Discover B3 Trydnt G2 G22\n\twil: I think you got this\n\n66) wil: B G1 B3\n\n67) Trydnt: Sacrifice Y1 G3\nMove B3 G2 Gee3\n\n68) wil: M R1 Wil Gee3\n\twil: This is the end\n\n69) Trydnt: Sacrifice R3 Bee2\nAttack R1 Gee3\nAttack R2 Gee3\nAttack R2 Gee3\n\n70) wil: B R2 Wil\n\n71) Trydnt: Trade R2 Y2 Gee3\n\n72) wil: M R2 Wil B3\n\n73) Trydnt: Attack B1 Gee3\n\n74) wil: B R2 Wil\n\n75) Trydnt: Sacrifice Y3 Trydnt\nMove R1 Gee3 Wil\nMove R2 Gee3 Wil\nCatastrophe Wil R\nMove B3 Gee3 Wil\n\n\twil: Finally\n\nHomeworlds Online (SDG# 34509)\nVariants: &quot;Unrated&quot;\nStarted: 2018.8.26, Ended: 2018.11.7\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) Trydnt: Homeworld Y3 G2 B3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Build B1 Trydnt\n\n7) wil: D G1 Wil Y1 Y1\n\n8) Trydnt: Trade B1 Y1 Trydnt\n\n9) wil: B G1 Wil\n\tBabamots: I understand wil won&#39;t be available for a while, so I&#39;m pausing his games for him. Hopefully you can continue soon.\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) wil: B G2 Y1\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: D G1 Y1 Y3 Y3\n\n14) Trydnt: Build R1 Trydnt\n\n15) wil: S G3 Wil\nB G2 Y3\nB G3 Y1\nB G3 Wil\n\n16) Trydnt: Discover R1 Trydnt Y1 Y11\n\n17) wil: T G3 R3 Wil\n\n18) Trydnt: Build Y2 Trydnt\n\n19) wil: S G3 Y1\nB G3 Wil\nB G3 Y3\nB G3 Y1\n\n20) Trydnt: Discover Y2 Trydnt B1 B1\n\n21) wil: T G3 Y3 Wil\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: S G3 Y1\nB G3 Y1\nB G3 Wil\nB R2 Wil\n\n24) Trydnt: Build R2 Trydnt\n\n25) wil: M R2 Wil Y11\n\n26) Trydnt: Move R1 Trydnt Y11\n\n27) wil: S G3 Wil\nB G3 Wil\nB R2 Y11\nB R3 Wil\nC Y11 R\n\n28) Trydnt: Discover Y1 Trydnt Y1 Y11\n\n29) wil: M Y3 Wil B1\n\n30) Trydnt: Discover Y2 B1 B3 B3\n\n31) wil: M R3 Wil Y11\n\n32) Trydnt: Discover Y1 Y11 B2 B2\n\n33) wil: M G3 Wil B1\n\n\tTrydnt: that did not go as planned at all\n\twil: Green freeze as powerful as all.\n\tTrydnt: yeah that was weird I don&#39;t think I&#39;ve ever seen or done a green freeze. haven&#39;t played enough games with green in my hw I suppose\n\nHomeworlds Online (SDG# 34502)\nStarted: 2018.8.26, Ended: 2018.10.17\nParticipants: ts52 (S), Trydnt (N)\nWinner: ts52\n\n1) Trydnt: Homeworld G3 Y1 B3\n\n2) ts52: Homeworld R1 B2 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Build B1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Trade B1 Y1 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Build Y2 Trydnt\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) Trydnt: Discover Y1 Trydnt G2 G2\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Build B1 Trydnt\n\n14) ts52: Trade G1 B1 Ts52\n\n15) Trydnt: Discover B1 Trydnt G2 Gee2\n\n16) ts52: Move B1 Ts52 Kermit\n\n17) Trydnt: Discover Y2 Trydnt B2 B2\n\n18) ts52: Build G1 Ts52\n\n19) Trydnt: Trade B1 R1 Trydnt\n\n20) ts52: Trade G1 R1 Ts52\n\n21) Trydnt: Build B1 Gee2\n\n22) ts52: Build G1 Ts52\n\n23) Trydnt: Build R2 Trydnt\n\n24) ts52: Build R2 Ts52\n\n25) Trydnt: Move R2 Trydnt B2\n\n26) ts52: Move R2 Ts52 Kermit\n\n27) Trydnt: Discover R2 B2 B3 B3\n\n28) ts52: Discover G1 Ts52 B3 Gonzo\n\n29) Trydnt: Move Y2 B2 Gonzo\n\n30) ts52: Build B2 Kermit\n\n31) Trydnt: Sacrifice R1 Trydnt\nAttack G1 Gonzo\n\n32) ts52: Build G1 Ts52\n\n33) Trydnt: Build B2 Trydnt\n\n34) ts52: Move B2 Kermit G2\n\n35) Trydnt: Move Y1 G2 B3\n\n36) ts52: Sacrifice G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Kermit\nBuild Y3 Ts52\n\n37) Trydnt: Discover B2 Trydnt G2 G22\n\n38) ts52: Move Y3 Kermit Gee2\n\n39) Trydnt: Build Y3 Gonzo\n\tts52: Wow, you managed to undo your move as I was making mine. &lt;this close&gt; :)\n\n40) ts52: Sacrifice R2 Kermit\nAttack B1N Gee2\nAttack B1N Gee2\n\n41) Trydnt: Trade B3 R3 Trydnt\n\n42) ts52: Discover Y2 Ts52 B3 Grover\n\n43) Trydnt: Sacrifice G1 Gonzo\nBuild R1 B3\n\n44) ts52: Move R1 Ts52 Kermit\n\n45) Trydnt: Trade R1 G1 B3\n\n46) ts52: Move Y1 Kermit G2\n\n47) Trydnt: Move Y3 Gonzo G2\n\n48) ts52: Move Y3 Gee2 B3\n\n49) Trydnt: Sacrifice Y1 B3\nMove R2 B3 Gee2\n\n50) ts52: Build Y1 Kermit\n\n51) Trydnt: Sacrifice G1 B3\nBuild R1 Gee2\n\n52) ts52: Build R2 Kermit\n\n53) Trydnt: Build R2 Trydnt\n\n54) ts52: Build R3 Kermit\n\n55) Trydnt: Sacrifice R2 Trydnt\nAttack Y1 G2\nAttack B1 Gee2\n\n56) ts52: Move R3 Kermit G22\n\n57) Trydnt: Sacrifice Y1 G2\nMove B2 G22 Trydnt\n\n58) ts52: Build G1 Ts52\n\n59) Trydnt: Attack B1 Gee2\n\n60) ts52: Move G1 Ts52 B3\n\n61) Trydnt: Sacrifice R1 Gee2\nAttack B2 G2\n\n62) ts52: Build G1 B3\n\n63) Trydnt: Discover B2 G2 G3 G3\n\n64) ts52: Move Y3 B3 Gee2\n\n65) Trydnt: Sacrifice Y2 Gonzo\nMove B1 Gee2 Kermit\nMove B1 Gee2 Kermit\n\n66) ts52: Sacrifice R2 Kermit\nAttack R2N Gee2\nAttack B1N Kermit\n\n67) Trydnt: Build B3 G3\n\n68) ts52: Move B1 Kermit G22\n\n69) Trydnt: Trade B2 R2 G3\n\n70) ts52: Attack B1N Kermit\n\n71) Trydnt: Build R1 G3\n\n72) ts52: Build R2 Gee2\n\n73) Trydnt: Move Y3 G2 B3\n\n74) ts52: Build R3 Kermit\n\n75) Trydnt: Build B2 G3\n\n76) ts52: Build G2 Ts52\n\n77) Trydnt: Sacrifice R2 G3\nAttack G1 B3\nAttack G1 B3\n\n78) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R2 G22\n\n79) Trydnt: Discover B2 Trydnt Y2 Y2\n\n80) ts52: Sacrifice Y3 Gee2\nMove R2 G22 Trydnt\nMove R2 Gee2 Trydnt\nMove R2 Gee2 Trydnt\nCatastrophe Trydnt R\n\n\tts52: Good game. Thanks!\n\nHomeworlds Online (SDG# 34513)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.27, Ended: 2018.9.6\nParticipants: Trydnt (S), speardane (N)\nWinner: Trydnt\n\n1) speardane: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\tspeardane: Shoot, I didn&#39;t notice that this game had started! My bad.\r\nGood luck!\n\n3) speardane: Build G1 Speardane\n\n4) Trydnt: Build G1 Trydnt\n\n5) speardane: Trade G1 R1 Speardane\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) speardane: Build G1 Speardane\n\n8) Trydnt: Build Y1 Trydnt\n\n9) speardane: Discover G1 Speardane B3 Delos\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) speardane: Build G1 Delos\n\n12) Trydnt: Build Y2 G1\n\n13) speardane: Trade G1 R1 Delos\n\n14) Trydnt: Build Y2 Trydnt\n\n15) speardane: Build R1 Delos\n\n16) Trydnt: Build Y3 G1\n\n17) speardane: Build R2 Delos\n\n18) Trydnt: Move Y3 G1 Delos\n\n19) speardane: Build G1 Delos\n\n20) Trydnt: Build Y3 G1\n\n21) speardane: Trade G1 B1 Delos\n\n22) Trydnt: Discover Y1 G1 G3 G3\n\n23) speardane: Build G1 Speardane\n\n24) Trydnt: Build Y3 G3\n\n25) speardane: Discover G1 Speardane B3 Lebling\n\n26) Trydnt: Build G2 Trydnt\n\n27) speardane: Build G2 Lebling\n\n28) Trydnt: Build G2 Trydnt\n\n29) speardane: Trade G2 R2 Lebling\n\n30) Trydnt: Trade Y3 R3 Delos\nCatastrophe Delos R\n\n31) speardane: Trade B1 R1 Delos\n\n32) Trydnt: Build Y3 G3\n\n33) speardane: Build R1 Speardane\n\n34) Trydnt: Trade G2 R2 Trydnt\n\n35) speardane: Build R2 Speardane\n\n36) Trydnt: Sacrifice Y3 G3\nMove R2 Trydnt G1\nMove R2 G1 G3\nMove R2 G3 Speardane\nCatastrophe Speardane R\n\n37) speardane: Build G2 Speardane\n\n38) Trydnt: Build Y3 G1\n\n39) speardane: Trade G2 R2 Speardane\n\n40) Trydnt: Trade G2 R2 Trydnt\n\n41) speardane: Build R1 Lebling\n\n42) Trydnt: Move Y3 G1 Delos\n\n43) speardane: Build R1 Lebling\n\n44) Trydnt: Sacrifice R2 Trydnt\nAttack G1 Delos\nAttack R1 Delos\n\n45) speardane: Trade R1 B1 Lebling\n\n46) Trydnt: Build G2 Delos\n\n47) speardane: Build G2 Lebling\n\n48) Trydnt: Build G2 Trydnt\n\n49) speardane: Trade G2 R2 Lebling\n\n50) Trydnt: Trade G1 B1 Delos\n\n51) speardane: Build G1 Speardane\n\n52) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Delos\nBuild G3 Trydnt\nBuild B1 Delos\n\n53) speardane: Sacrifice G3 Speardane\nBuild R1 Speardane\nBuild R3 Speardane\nBuild G3 Lebling\n\n54) Trydnt: Move R1 Delos Speardane\nCatastrophe Speardane R\n\n55) speardane: Sacrifice G1 Lebling\nPass\n\n56) Trydnt: Trade G2 R2 Delos\n\n57) speardane: Build G1 Speardane\n\n58) Trydnt: Move Y3 G3 Speardane\n\n59) speardane: Pass\n\n60) Trydnt: Sacrifice R2 Delos\nAttack G1 Speardane\nAttack G1 Speardane\n\n\tTrydnt: good game. do you wanna log it or should I?\n\tspeardane: I&#39;ve already logged it... and then logged it again because I forgot how to get to the Tournament Viewer spreadsheet; and it looks like the spreadsheet didn&#39;t like that. :D  Good game! The relative placement of the r3 and g3 in my third-from-last move certainly doomed me, but that yellow monopoly was going to kill me eventually anyway.\n\tTrydnt: Yeah there was no way to stop me once I had all the yellow. Any 3 you flew to you&#39;d be trapped on and so limited expansion and I made sure not to give you access to the 3 ships where possible. And cuz you couldn&#39;t move off those stars there was always the option of blowing them up to destroy a bunch of stuff\n\nHomeworlds Online (SDG# 34514)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.28, Ended: 2018.9.7\nParticipants: Felix (S), speardane (N)\nWinner: speardane\n\n1) speardane: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld B1 G2 B3 *\n\n3) speardane: Build G1 Speardane\n\tFelix: Good luck and have fun! :)\n\n4) Felix: Build B1 Felix\n\tspeardane: You too!\n\n5) speardane: Trade G3 R3 Speardane\n\n6) Felix: Trade B3 R3 Felix\n\n7) speardane: Build R1 Speardane\n\n8) Felix: Build B2 Felix\n\n9) speardane: Trade R3 B3 Speardane\n\n10) Felix: Trade B2 Y2 Felix\n\n11) speardane: Build R1 Speardane\n\n12) Felix: Build B2 Felix\n\n13) speardane: Discover R1 Speardane Y2 Delos\n\n\tFelix: Woops. Picked the wrong week to go on holiday! \n\tDraw5PlayAll: So then you want a rematch, huh?\n\tFelix: Yep.\n\tDraw5PlayAll: I am not sure if the speardane account is still operational.\n\nHomeworlds Online (SDG# 34517)\nVariants: &quot;Unrated&quot;\nStarted: 2018.8.29, Ended: 2018.8.29\nParticipants: Babamots (S), minoan (N)\nWinner: Babamots\n\n1) minoan: Homeworld B2 G3 Y3\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) minoan: Discover Y3 Minoan G1 Fragonardia\n\n\nHomeworlds Online (SDG# 34519)\nStarted: 2018.8.30, Ended: 2018.9.5\nParticipants: Babamots (S), minoan (N)\nWinner: Babamots\n\n1) minoan: Homeworld G1 B2 Y3\n\n2) Babamots: Homeworld B3 G1 G3 *\n\n3) minoan: Build Y1 Minoan\n\n4) Babamots: Build G1 Babamots\n\n5) minoan: Build Y1 Minoan\n\tBabamots: What&#39;s happened is that you&#39;re locked out of green ships quite early. It turns out that, if you move first, the only small system marker that&#39;s safe is red. Otherwise, you can get locked out of that color.\n\n6) Babamots: Trade G3 Y3 Babamots\n\n7) minoan: Trade Y3 G3 Minoan\n\n8) Babamots: Build G2 Babamots\n\n9) minoan: Discover Y1 Minoan G3 Ceti_alpha_v\n\n10) Babamots: Discover G2 Babamots G2 Risa\n\n11) minoan: Build Y1 Minoan\n\n12) Babamots: Build Y2 Babamots\n\n13) minoan: Build Y2 Ceti_alpha_v\n\n14) Babamots: Build G2 Risa\n\n15) minoan: Discover G3 Minoan B3 Cardassia\n\n16) Babamots: Build G3 Babamots\n\n17) minoan: Trade Y1 B1 Minoan\n\n18) Babamots: Move Y2 Babamots Risa\n\n19) minoan: Build Y1 Minoan\n\n20) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild Y3 Risa\nBuild G3 Babamots\n\n21) minoan: Move Y1 Minoan Cardassia\n\n22) Babamots: Trade Y2 R2 Babamots\n\n23) minoan: Trade Y1 R1 Minoan\n\n24) Babamots: Sacrifice Y2 Risa\nMove Y3 Risa Cardassia\nMove Y3 Cardassia Minoan\n\n25) minoan: Build R1 Minoan\n\n26) Babamots: Sacrifice R2 Babamots\nAttack R1 Minoan\nAttack R1 Minoan\n\n27) minoan: Build B1 Minoan\n\n28) Babamots: Trade R1 B1 Minoan\nCatastrophe Minoan B\n\tBabamots: We can do unrated games until you feel in-practice if you like. There&#39;s a check box for it when you issue the challenge.\n\n\nHomeworlds Online (SDG# 34465)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.30, Ended: 2018.9.4\nParticipants: nycavri (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) nycavri: Homeworld B1 G3 Y3\n\tnycavri: h b1 g3 y3\n\n3) dlwillson: B G1 Dlwillson\n\tnycavri: Gonna be one of those games . . .\n\n\tdlwillson: :-)\r\n\r\nGood luck and have fun!\r\n\r\nB g1 dlwillson\n\nHomeworlds Online (SDG# 34498)\nVariants: &quot;Hard time&quot;\nStarted: 2018.8.30, Ended: 2018.9.7\nParticipants: Trydnt (S), nycavri (N)\nWinner: Trydnt\n\n1) nycavri: Homeworld Y3 G2 B3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) nycavri: Build B1 Nycavri\n\tTrydnt: this is for the tournament correct?\n\n4) Trydnt: Build G1 Trydnt\n\n5) nycavri: Trade B1 G1 Nycavri\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) nycavri: Build G1 Nycavri\n\n8) Trydnt: Build Y1 Trydnt\n\n9) nycavri: Trade G1 R1 Nycavri\n\n10) Trydnt: Build G1 Trydnt\n\n11) nycavri: Build B1 Nycavri\n\n12) Trydnt: Discover Y1 Trydnt G3 G3\n\n13) nycavri: Trade B3 Y3 Nycavri\n\n14) Trydnt: Build Y2 G3\n\n\tTrydnt: did you challenge or did I? challenger fills out form for game on the grid\n\tBabamots: I went ahead and put the game in the tournament spreadsheet for ya. Good luck guys!\n\nHomeworlds Online (SDG# 34482)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.2, Ended: 2018.9.4\nParticipants: wil (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R1 B3 G3\n\n\tajo: Ping!\n\tBabamots: I understand wil won&#39;t be available for a while. I hope you don&#39;t mind waiting to play wil for the tournament another time.\n\nHomeworlds Online (SDG# 34340)\nVariants: &quot;Unrated&quot;\nStarted: 2018.9.3, Ended: 2018.9.20\nParticipants: Trydnt (S), popjam (N)\nWinner: Trydnt\n\n1) popjam: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) popjam: Homeworld B2 G1 Y3\n\n4) Trydnt: Build G1 Trydnt\n\n\nHomeworlds Online (SDG# 34515)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.4, Ended: 2018.9.17\nParticipants: speardane (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld R3 B2 G3\n\tLaurie_Menke: Hi speardane! Good luck!  (And don&#39;t forget to log the start of the game!)  :)\n\n2) speardane: Homeworld Y1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tspeardane: Good luck!\n\n4) speardane: Build G1 Speardane\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) speardane: Trade G3 R3 Speardane\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) speardane: Build G1 Speardane\n\n9) Laurie_Menke: Discover G1 Laurie_menke Y1 Yellow\n\n10) speardane: Discover G1 Speardane B3 Delos\n\n11) Laurie_Menke: Build G2 Laurie_menke\n\n12) speardane: Build G2 Delos\n\n13) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Yellow\nBuild G3 Laurie_menke\nBuild G3 Laurie_menke\n\n14) speardane: Sacrifice G2 Delos\nBuild G2 Speardane\nBuild G3 Delos\n\n15) Laurie_Menke: Discover G3 Laurie_menke B1 Blue\n\n16) speardane: Trade G3 Y3 Delos\n\n17) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Blue\nBuild Y2 Laurie_menke\n\n18) speardane: Discover G2 Speardane B3 Lebling\n\n19) Laurie_Menke: Trade G3 R3 Blue\n\n20) speardane: Build G3 Lebling\n\n21) Laurie_Menke: Sacrifice Y2 Laurie_menke\nDiscover G3 Blue Y3 Hi\nMove R3 Blue Hi\n\n22) speardane: Trade G3 Y3 Lebling\n\n23) Laurie_Menke: Move G2 Yellow Delos\n\n24) speardane: Build G3 Speardane\n\n25) Laurie_Menke: Trade G2 Y2 Delos\n\n26) speardane: Sacrifice G3 Speardane\nBuild G2 Delos\nBuild Y2 Lebling\nBuild G3 Lebling\n\n27) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild Y2 Laurie_menke\nBuild R1 Hi\n\n28) speardane: Move G2 Lebling Yellow\n\n29) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild R1 Hi\nPass\n\n30) speardane: Sacrifice Y3 Lebling\nMove G2 Yellow Laurie_menke\nMove G1 Delos Yellow\nMove G1 Yellow Laurie_menke\nCatastrophe Laurie_menke Green\n\tLaurie_Menke: LOL... that was kind of stupid... in the middle of typing all that I realized I had no third thing I wanted to build but was too lazy to just change it to a simple build command.\n\n31) Laurie_Menke: Sacrifice Y2 Delos\nMove R1 Hi Speardane\nMove R1 Hi Speardane\n\n32) speardane: Build Y2 Delos\n\n33) Laurie_Menke: Attack G1 Speardane\n\n34) speardane: Attack G1 Speardane\n\n35) Laurie_Menke: Sacrifice G1 Yellow\nBuild R1 Speardane\nCatastrophe Speardane R\n\tLaurie_Menke: Duh... right... don&#39;t know what I was thinking there...\n\n36) speardane: Move Y3 Delos Speardane\n\n37) Laurie_Menke: Move R3 Hi Speardane\n\n38) speardane: Trade Y3 R3 Speardane\n\n39) Laurie_Menke: Attack R3 Speardane\n\n40) speardane: Pass\n\n41) Laurie_Menke: Attack G1 Speardane\n\tspeardane: Good game!\n\tLaurie_Menke: Indeed! Thanks for the fun and challenge! I hope to play against you again sometime!  :)\n\n\nHomeworlds Online (SDG# 34532)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.4, Ended: 2018.10.28\nParticipants: dlwillson (S), ts52 (N)\nWinner: dlwillson\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) dlwillson: H R3 B2 G3 Dlwillson\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tdlwillson: You too!\n\n4) dlwillson: B G1 Dlwillson\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) ts52: Build Y2 Ts52\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) dlwillson: Discover Y1 Dlwillson G1 Field\n\n11) ts52: Build G1 Ts52\n\n12) dlwillson: B G1 Dlwillson\n\n13) ts52: Trade G1 B1 Ts52\n\n14) dlwillson: T G1 B1 Dlwillson\n\n15) ts52: Build G1 Ts52\n\n16) dlwillson: B G1 Dlwillson\n\n17) ts52: Build G2 Ts52\n\n18) dlwillson: B Y2 Dlwillson\n\n19) ts52: Build Y3 Kermit\n\n20) dlwillson: D Y2 Dlwillson B1 Sea\n\n21) ts52: Move B1 Ts52 Kermit\n\n22) dlwillson: B Y3 Field\n\n23) ts52: Discover G1 Ts52 B3 Gonzo\n\n24) dlwillson: S Y2 Dlwillson\nM G1 Dlwillson Sea\nM B1 Dlwillson Field\n\n25) ts52: Trade G2 R2 Ts52\n\n26) dlwillson: T Y1 R1 Field\n\n27) ts52: Build G2 Ts52\n\n28) dlwillson: B Y1 Field\n\n29) ts52: Discover G2 Ts52 Y3 Bigbird\n\n30) dlwillson: M Y1 Field Dlwillson\n\n31) ts52: Move Y2 Ts52 Gonzo\n\tdlwillson: this game is for the tournament (GHWT2018)\n\tts52: :) I assumed so, but good to be clear.\n\n32) dlwillson: B Y2 Sea\n\n33) ts52: Sacrifice G2 Bigbird\nBuild G2 Ts52\nBuild Y3 Gonzo\n\n34) dlwillson: B G2 Sea\n\n35) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Ts52\n\n36) dlwillson: D G2 Sea B3 Sky\n\n37) ts52: Discover G2 Ts52 B3 Grover\n\n38) dlwillson: T Y2 R2 Sea\n\n39) ts52: Move Y3 Kermit Sea\n\n40) dlwillson: S Y2 Sea\nM R2 Sea Kermit\nM G1 Sea Sky\n\n41) ts52: Sacrifice Y1 Kermit\nDiscover B1 Kermit Y1 Bigbird\n\n42) dlwillson: T G1 R1 Sky\n\n43) ts52: Build G1 Ts52\n\n44) dlwillson: S G2 Sky\nB R2 Kermit\nB R3 Sky\n\n45) ts52: Trade Y3 R3 Gonzo\n\n46) dlwillson: M Y3 Field Grover\n\n47) ts52: Move R3 Gonzo Field\n\n48) dlwillson: S B1 Field\nT R3 Y3 Sky\n\n49) ts52: Move R2 Ts52 Gonzo\n\n50) dlwillson: S R1 Field\nA G2 Grover\n\n51) ts52: Sacrifice G2 Gonzo\nBuild R1 Field\nBuild R3 Gonzo\n\n52) dlwillson: B G2 Grover\n\n53) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild B1 Bigbird\n\n54) dlwillson: S Y3 Sky\nM G2 Grover Ts52\nM G2 Grover Ts52\nC Ts52 G\nM Y3 Grover Ts52\n\n55) ts52: Sacrifice Y3 Sea\nMove Y2 Gonzo Ts52\nMove R2 Gonzo Ts52\nMove G2 Gonzo Ts52\n\n56) dlwillson: Sacrifice R2 Kermit\nAttack R2 Ts52\nAttack G2 Ts52\n\tts52: Not sure how I missed that one. Well played!\n\n57) ts52: Sacrifice R3 Gonzo\nAttack G2S Ts52\nAttack R2S Ts52\nPass\n\tdlwillson: Thanks! Your response had me worried. I&#39;m still not completely confident.\n\n58) dlwillson: S G3 Dlwillson\nB R2 Kermit\nB R3 Sky\nB Y2 Dlwillson\n\n59) ts52: Build Y2 Ts52\nCatastrophe Ts52 Y\n\n60) dlwillson: T R3 Y3 Sky\n\n61) ts52: Trade R2 Y2 Ts52\n\n62) dlwillson: M Y3 Sky Ts52\n\n63) ts52: Sacrifice Y2 Ts52\nMove R3 Field Dlwillson\nMove B1 Bigbird Ts52\n\n64) dlwillson: S R2 Kermit\nA G2 Ts52\nA R1 Ts52\n\n65) ts52: Attack Y2 Dlwillson\n\n66) dlwillson: A B1 Ts52\n\n\tdlwillson: Good game! Thank you!\n\tts52: Thanks. Good game!\n\nHomeworlds Online (SDG# 34533)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.4, Ended: 2018.9.25\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R3 B2 G3 Dlwillson\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tdlwillson: Good luck and have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) dlwillson: B G1 Dlwillson\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) dlwillson: B R2 Dlwillson\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) dlwillson: D R2 Dlwillson Y1 Sol\n\n14) Draw5PlayAll: Build Y2 Draw5playall\n\n15) dlwillson: B R2 Dlwillson\n\n16) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n17) dlwillson: B Y2 Dlwillson\n\n18) Draw5PlayAll: Discover B2 Draw5playall G2 The\n\n19) dlwillson: D R2 Dlwillson B1 Sea\n\n20) Draw5PlayAll: Build B1 The\n\n21) dlwillson: S G3 Dlwillson\nB R2 Sea\nB R3 Sol\nB R3 Dlwillson\n\n22) Draw5PlayAll: Discover Y1 Draw5playall G2 Better\n\n23) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Sol Better\nMove R3 Sol The\n\n24) Draw5PlayAll: Sacrifice Y1 Better\nDiscover B2 The G3 Distant\n\n25) dlwillson: A B1 The\n\n26) Draw5PlayAll: Build Y1 Draw5playall\n\n27) dlwillson: T R3 G3 Dlwillson\n\n28) Draw5PlayAll: Discover Y1 Draw5playall G2 Only\n\n29) dlwillson: B R3 The\n\n30) Draw5PlayAll: Build Y1 Only\n\tdlwillson: this game is for the tournament (GHWT2018)\n\n31) dlwillson: T R3 Y3 The\n\n32) Draw5PlayAll: Move R1 Draw5playall Only\n\tDraw5PlayAll: Nooooooooo\n\n33) dlwillson: B R3 Better\n\n34) Draw5PlayAll: Discover Y1 Only G1 Next\n\n35) dlwillson: B Y2 Dlwillson\n\tDraw5PlayAll: Trying to make phrases like &quot;in the next system&quot; flow smoothly is a challenge.\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Next\nBuild Y3 Only\nBuild Y3 Draw5playall\n\n37) dlwillson: S Y2 Dlwillson\nM Y3 The Draw5playall\nM R3 The Draw5playall\n\n\tdlwillson: I bet! I have no idea how SDG lays out systems. Do you?\n\tDraw5PlayAll: Alphabetically\n\tDraw5PlayAll: The ships are in a 5x5 grid placed randomly except the homeworld takes up the middle 3x3\n\nHomeworlds Online (SDG# 34531)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.4, Ended: 2018.9.20\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dlwillson: H R3 B2 G3 Dlwillson\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\tdlwillson: Good luck and have fun!\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Trydnt: Build Y2 Trydnt\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) dlwillson: Discover Y1 Dlwillson B1 Sea\n\n11) Trydnt: Build G1 Trydnt\n\n12) dlwillson: B G1 Dlwillson\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) dlwillson: T G1 B1 Dlwillson\n\n15) Trydnt: Move B1 Trydnt G3\n\n16) dlwillson: D B1 Dlwillson G1 Field\n\n17) Trydnt: Build G1 Trydnt\n\n18) dlwillson: B G1 Dlwillson\n\n19) Trydnt: Discover G1 Trydnt B3 B3\n\n20) dlwillson: M G1 Dlwillson Sea\n\n21) Trydnt: Build G2 B3\n\n22) dlwillson: B G2 Dlwillson\n\n23) Trydnt: Trade G2 R2 B3\n\n24) dlwillson: Build G2 Sea\n\n25) Trydnt: Build G2 Trydnt\n\n26) dlwillson: T G1 R1 Sea\n\n27) Trydnt: Move Y2 Trydnt B3\n\n28) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Sea\nBuild R1 Sea\nBuild G3 Dlwillson\n\n29) Trydnt: Move R2 B3 Field\n\n30) dlwillson: M G1 Sea G3\n\n31) Trydnt: Attack B1 Field\n\n32) dlwillson: S R1 Sea\nA Y1 G3\n\n33) Trydnt: Build B2 G3\n\n34) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB Y3 G3\nB Y3 Dlwillson\n\n35) Trydnt: Sacrifice G2 Trydnt\nBuild Y3 B3\nBuild B3 Field\n\n36) dlwillson: T Y2 R2 Sea\n\n37) Trydnt: Build B3 Field\n\n38) dlwillson: S R1 Sea\nA B2 G3\n\n39) Trydnt: Trade B3 R3 Field\n\n40) dlwillson: S B2 G3\nT Y3 G3 Dlwillson\nT Y3 R3 G3\n\n41) Trydnt: Sacrifice B1 G3\nTrade B3 Y3 Field\n\n42) dlwillson: S G3 Dlwillson\nB G2 Sea\nB R1 Sea\nB G3 Dlwillson\n\n43) Trydnt: Discover R3 Field Y3 Y3\n\n44) dlwillson: S G3 Dlwillson\nB Y2 G3\nB R1 G3\nB G3 Dlwillson\n\n45) Trydnt: Build R1 Field\n\n46) dlwillson: T R2 B2 Sea\n\n47) Trydnt: Build B1 Field\n\n48) dlwillson: M B2 Sea G3\n\n49) Trydnt: Move B1 Field Y3\n\n50) dlwillson: B B3 G3\n\n51) Trydnt: Build B3 Field\n\n52) dlwillson: M G1 G3 Trydnt\n\n53) Trydnt: Sacrifice R1 Field\nAttack G1 Trydnt\n\n54) dlwillson: S Y2 G3\nM G2 Sea Y3\nM G2 Y3 Trydnt\n\n55) Trydnt: Sacrifice Y2 B3\nMove R3 Y3 Trydnt\nMove G1 Trydnt B3\n\n56) dlwillson: S G2 Dlwillson\nB Y2 G3\nB G2 Trydnt\n\n57) Trydnt: Move G3 Trydnt Y3\n\n58) dlwillson: S Y2 Dlwillson\nM R3 G3 Trydnt\nM R1 G3 Trydnt\n\n59) Trydnt: Sacrifice Y3 Field\nMove R2 Field Y3\nMove R2 Y3 Trydnt\nMove Y3 B3 Trydnt\nCatastrophe Trydnt R\n\n60) dlwillson: S B2 G3\nT G2 Y2 Trydnt\nT G2 Y2 Trydnt\nC Trydnt Y\n\tBabamots: Is this game for the tournament? If so, it didn&#39;t get recorded. The same goes for dlwillson&#39;s games with Draw5PlayAll and ts52. If these are tournament games, you&#39;re the first person to get every game underway!\n\tTrydnt: I don&#39;t think this is for the tournament\n\tdlwillson: I think this is for the tournament, but since I&#39;m.about to \n\tdlwillson: As I was saying:\r\nSince I&#39;m about to lose, I&#39;d be fine with this *not* being a tournament game.\n\tdlwillson: As I was saying:\r\nSince I&#39;m about to lose, I&#39;d be fine with this *not* being a tournament game.\n\tdlwillson: As I was saying:\r\nSince I&#39;m about to lose, I&#39;d be fine with this *not* being a tournament game.\n\tTrydnt: is there any way to check the notes line of the challenge after it&#39;s been accepted? I&#39;m in several games some non-tournament and some tournament so gets tough keeping track\n\tBabamots: As far as I know, there&#39;s no way to see the challenge notes after the game starts. How about the clock setting? If it&#39;s not 2/2/7, it theoretically shouldn&#39;t be a tournament game.\n\n\tdlwillson: Good game! I was certain that I was going to run out of ships and you were going to pull the win.\n\tdlwillson: With regard to the tournament, I think I forgot to report the the games Babamots asked about. I mostly play from my phone. That&#39;s my excuse. I&#39;ll report the other two when I get to my computer.\r\n\r\nTrydnt: Should this game count for the tournament, or shall we play another?\n\tTrydnt: let&#39;s play another. I don&#39;t believe this was a tournament game because I&#39;ve been working my way up the tracker starting with lowest score people and moving on to tougher opponents (not perfect as not everyone has played as many games but good enough). Since you&#39;re at the top I was waiting until further in the tournament to challenge you. I&#39;ll launch another now\n\nHomeworlds Online (SDG# 34525)\nStarted: 2018.9.4, Ended: 2018.10.24\nParticipants: Draw5PlayAll (S), mneme (N)\nWinner: Draw5PlayAll\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) mneme: Build G1 Mneme\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) mneme: Trade G1 R1 Mneme\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) mneme: Build R2 Mneme\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) mneme: Discover R2 Mneme G3 Melpomene\n\n14) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n15) mneme: Build G1 Mneme\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) mneme: Discover G1 Mneme R3 Euterpe\n\n18) Draw5PlayAll: Discover B2 Draw5playall G1 Fine\n\n19) mneme: Sacrifice G3 Mneme\nBuild R2 Melpomene\nBuild R3 Melpomene\nBuild R3 Mneme\n\n20) Draw5PlayAll: Build B1 Fine\n\n21) mneme: Trade R3 G3 Mneme\n\n22) Draw5PlayAll: Build R3 Draw5playall\n\n23) mneme: Build G2 Mneme\n\n24) Draw5PlayAll: Move R3 Draw5playall Fine\n\n25) mneme: Sacrifice G1 Euterpe\nBuild R3 Mneme\n\n26) Draw5PlayAll: Trade B2 Y2 Fine\n\n27) mneme: Trade R1 B1 Mneme\n\n28) Draw5PlayAll: Sacrifice Y2 Fine\nMove R1 Draw5playall Fine\nMove R1 Fine Melpomene\nCatastrophe Melpomene Red\n\n29) mneme: Build R1 Mneme\n\n30) Draw5PlayAll: Discover G1 Draw5playall B1 Notariffs\n\n31) mneme: Discover R3 Mneme Y3 Urania\n\n32) Draw5PlayAll: Build B2 Fine\n\n33) mneme: Move R3 Urania Notariffs\n\n34) Draw5PlayAll: Sacrifice G1 Notariffs\nBuild R1 Fine\n\n35) mneme: Sacrifice G2 Mneme\nBuild R2 Mneme\nBuild R2 Notariffs\n\tmneme: Was this intended to be our tournament game?  It&#39;s not appearing as such, so I assume not, but we don&#39;t have a message saying not so I want to be clear!\r\n\n\n36) Draw5PlayAll: Trade B2 Y2 Fine\n\tDraw5PlayAll: You mean no one listed it in the table? Good because we forgot the hard time anyway\n\n37) mneme: Trade R2 Y2 Mneme\n\n38) Draw5PlayAll: Build B2 Fine\n\tmneme: yup.  It&#39;s a good practice game, though.\r\n(also, it&#39;s good to have a message in the first move or two saying it&#39;s a tournament game, since the intro message doesn&#39;t get kept for the game itself!\n\n39) mneme: Discover Y1 Mneme B3 Melpomene\n\n40) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I knew that name looked familiar!\n\n41) mneme: Trade R2 G2 Notariffs\n\tDraw5PlayAll: That was close\n\n42) Draw5PlayAll: Discover R1 Fine Y3 Port\n\n43) mneme: Move R1 Mneme Melpomene\n\n44) Draw5PlayAll: Move B2 Fine Melpomene\n\n45) mneme: Move Y1 Melpomene Notariffs\n\n46) Draw5PlayAll: Build B2 Fine\n\tDraw5PlayAll: What does melpomene mean?\n\n47) mneme: Build G1 Mneme\n\n48) Draw5PlayAll: Discover B1 Fine Y3 Trop\n\tmneme: The muse of chorus/tragedy.\n\n49) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G2 Notariffs\nBuild G3 Mneme\n\n50) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild B3 Trop\n\n51) mneme: Discover B1 Mneme Y3 Thalia\n\n52) Draw5PlayAll: Sacrifice R1 Port\nAttack R1 Melpomene\n\n53) mneme: Sacrifice G3 Mneme\nBuild G1 Notariffs\nBuild G3 Mneme\nBuild Y1 Notariffs\n\n54) Draw5PlayAll: Trade B3 G3 Trop\n\n55) mneme: Sacrifice G3 Mneme\nBuild Y2 Notariffs\nBuild Y3 Mneme\nBuild B3 Thalia\n\n56) Draw5PlayAll: Build G3 Trop\n\n57) mneme: Sacrifice Y2 Notariffs\nMove G1 Mneme Trop\nMove G1 Notariffs Trop\nCatastrophe Trop G\n\n58) Draw5PlayAll: Build Y2 Draw5playall\n\n59) mneme: Build G1 Notariffs\n\n60) Draw5PlayAll: Build R1 Fine\n\n61) mneme: Move G2 Notariffs Draw5playall\n\n62) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n63) mneme: Sacrifice G2 Draw5playall\nBuild R2 Notariffs\nBuild G1 Notariffs\n\n64) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n65) mneme: Build G3 Mneme\n\n66) Draw5PlayAll: Build G3 Draw5playall\n\n67) mneme: Move Y3 Mneme Melpomene\n\n68) Draw5PlayAll: Sacrifice B2 Melpomene\nTrade G2 B2 Draw5playall\nPass\n\n69) mneme: Move R3 Notariffs Draw5playall\n\n70) Draw5PlayAll: Sacrifice R3 Draw5playall\nAttack R3 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n71) mneme: Build G2 Notariffs\n\n72) Draw5PlayAll: Build G3 Draw5playall\nCatastrophe Notariffs Green\n\n73) mneme: Sacrifice G2 Mneme\nBuild R2 Notariffs\nBuild Y2 Mneme\n\tDraw5PlayAll: There seems to be a hole in the &quot;a&quot; in the word &quot;plan&quot;.\n\n74) Draw5PlayAll: Move R3 Draw5playall Notariffs\n\tmneme: true.  I hate it when that happens.\n\n75) mneme: Sacrifice Y2 Mneme\nMove R2 Notariffs Draw5playall\nMove R2 Notariffs Draw5playall\n\n76) Draw5PlayAll: Sacrifice R1 Melpomene\nAttack R2 Draw5playall\n\tDraw5PlayAll: Wait the G3 is better.\n\tmneme: ug.  I built the wrong ship?  grr.  \n\n77) mneme: Sacrifice G3 Mneme\nBuild R1 Draw5playall\nBuild R3 Draw5playall\nBuild Y2 Mneme\nCatastrophe Draw5playall R\n\n78) Draw5PlayAll: Sacrifice Y2 Fine\nMove G3 Draw5playall Mneme\nMove B2 Draw5playall Fine\n\tDraw5PlayAll: I thought I was doomed until that.\n\n\tmneme: heh.  Yup.\n\tDraw5PlayAll: Yeah, but even if the B1@Trop was yours it would have taken 6 movements to win.\n\tmneme: yeah, but that&#39;s like 2 turns, maybe 3.\n\nHomeworlds Online (SDG# 34535)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.5, Ended: 2018.11.13\nParticipants: Trydnt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ts52: Build Y2 Ts52\n\n8) Trydnt: Build Y2 Trydnt\n\n9) ts52: Build G1 Ts52\n\n10) Trydnt: Build Y2 Trydnt\n\n11) ts52: Discover Y1 Ts52 G3 Bigbird\n\n12) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt G1 G1\nDiscover Y2 Trydnt G1 Gee1\n\n13) ts52: Build G2 Ts52\n\n14) Trydnt: Build G2 Trydnt\n\n15) ts52: Discover G2 Ts52 B3 Gonzo\n\n16) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G1\nBuild Y3 Gee1\n\n17) ts52: Build Y3 Bigbird\n\n18) Trydnt: Discover Y1 G1 B3 B3\n\n19) ts52: Trade Y2 R2 Ts52\n\n20) Trydnt: Build G2 Trydnt\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Ts52\n\n22) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G1\nBuild Y3 G1\n\n23) ts52: Move R2 Ts52 B3\n\n24) Trydnt: Sacrifice Y2 Gee1\nMove Y2 G1 Bigbird\nMove Y2 G1 Bigbird\nCatastrophe Bigbird Y\n\n25) ts52: Trade G2 Y2 Gonzo\n\n26) Trydnt: Sacrifice Y1 B3\nDiscover G2 Trydnt Y1 Y1\n\n27) ts52: Build R1 Ts52\n\n28) Trydnt: Discover G2 Y1 Y3 Y3\n\n29) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n30) Trydnt: Sacrifice Y3 G1\nMove G2 Y3 Gee1\nMove G2 Gee1 Gonzo\nCatastrophe Gonzo G\nMove Y3 Gee1 B3\n\n31) ts52: Sacrifice G3 Ts52\nBuild R1 B3\nBuild R2 B3\nBuild R3 Ts52\n\n32) Trydnt: Build G1 Trydnt\n\n33) ts52: Trade R3 G3 Ts52\n\n34) Trydnt: Trade G3 R3 Trydnt\n\n35) ts52: Move R1 Ts52 Gonzo\n\n36) Trydnt: Trade Y3 R3 B3\nCatastrophe B3 R\n\n37) ts52: Move G1 Ts52 Gonzo\n\n38) Trydnt: Build G1 Trydnt\n\n39) ts52: Build G2 Ts52\n\n40) Trydnt: Trade G1 Y1 Trydnt\n\n41) ts52: Build R1 Gonzo\n\n42) Trydnt: Build Y1 Trydnt\n\n43) ts52: Build Y2 Gonzo\n\n44) Trydnt: Discover Y1 Trydnt G1 G1\n\n45) ts52: Discover Y2 Gonzo B1 Grover\n\n46) Trydnt: Build G2 Trydnt\n\n47) ts52: Move R1 Gonzo Grover\n\n48) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G1\nBuild Y3 Trydnt\n\n49) ts52: Build Y3 Gonzo\n\n50) Trydnt: Sacrifice Y1 Trydnt\nMove R3 Trydnt G1\n\n51) ts52: Build G2 Gonzo\n\n52) Trydnt: Build R2 G1\n\n53) ts52: Sacrifice G3 Ts52\nBuild R2 Gonzo\nBuild R3 Grover\nBuild R3 Ts52\n\n54) Trydnt: Discover Y2 G1 G3 G3\n\n55) ts52: Trade R3 Y3 Ts52\n\n56) Trydnt: Discover Y1 G1 R3 R3\n\n57) ts52: Sacrifice G2 Gonzo\nBuild G2 Gonzo\nBuild Y1 Grover\n\n58) Trydnt: Move Y2 G3 G1\n\n59) ts52: Trade R3 B3 Grover\n\n60) Trydnt: Discover R2 G1 G3 G3\n\n61) ts52: Sacrifice G2 Gonzo\nBuild G2 Gonzo\nBuild R3 Grover\n\n62) Trydnt: Discover R3 G1 G3 Gee3\n\n63) ts52: Move Y3 Gonzo G1\n\n64) Trydnt: Move Y2 G1 Gee3\n\n65) ts52: Move B3 Grover G3\n\n66) Trydnt: Sacrifice Y1 R3\nDiscover R2 G3 G2 G2\n\n67) ts52: Build G3 Ts52\n\n68) Trydnt: Build R3 G2\n\n69) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild B1 G3\n\n70) Trydnt: Move Y2 Gee3 G2\n\n71) ts52: Move Y2 Grover G3\n\n72) Trydnt: Move R3 G2 Gonzo\n\n73) ts52: Move R1 Grover Gonzo\nCatastrophe Gonzo R\n\n74) Trydnt: Sacrifice Y2 G2\nMove R3 Gee3 G2\nMove R3 G2 Gonzo\n\n75) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y2 G1\n\n76) Trydnt: Sacrifice R2 G2\nAttack G2 Gonzo\nAttack Y2 Gonzo\n\n77) ts52: Discover G3 Ts52 R3 Elmo\n\n78) Trydnt: Attack Y1 Gonzo\n\n79) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild B1 G3\n\n80) Trydnt: Attack G1 Gonzo\n\n81) ts52: Move G2 Ts52 G3\n\n82) Trydnt: Build R1 Gonzo\n\n83) ts52: Move Y3 Ts52 Elmo\n\n84) Trydnt: Discover R1 Gonzo R1 R1\n\n85) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild R2 Grover\nBuild R2 Ts52\n\n\nHomeworlds Online (SDG# 34537)\nVariants: &quot;Unrated&quot;\nStarted: 2018.9.5, Ended: 2019.9.14\nParticipants: minoan (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R3 G2 B3\n\n2) minoan: Homeworld B2 R1 G3\n\n3) Babamots: Build B1 Babamots\n\n4) minoan: Build G1 Minoan\n\n5) Babamots: Trade B1 G1 Babamots\n\n6) minoan: Trade G1 Y1 Minoan\n\n7) Babamots: Build G1 Babamots\n\n8) minoan: Build Y1 Minoan\n\n9) Babamots: Trade G1 Y1 Babamots\n\n10) minoan: Build Y2 Minoan\n\n11) Babamots: Build Y2 Babamots\n\n12) minoan: Trade Y2 B2 Minoan\n\n13) Babamots: Discover Y2 Babamots G1 Risa\n\n14) minoan: Build Y2 Minoan\n\n15) Babamots: Build Y2 Babamots\n\n16) minoan: Discover Y1 Minoan G3 Dagobah\n\n17) Babamots: Trade Y1 R1 Babamots\n\n18) minoan: Build B1 Minoan\n\n19) Babamots: Build B1 Babamots\n\n20) minoan: Trade B1 R1 Minoan\n\n21) Babamots: Trade B3 G3 Babamots\n\n22) minoan: Build R2 Minoan\n\n23) Babamots: Discover G1 Babamots B1 Bolarus\n\n24) minoan: Trade R2 G2 Minoan\n\n25) Babamots: Build B1 Babamots\n\n26) minoan: Discover G2 Minoan B3 Coruscant\n\n27) Babamots: Move B1 Babamots Risa\n\n\nHomeworlds Online (SDG# 34538)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.6, Ended: 2018.10.2\nParticipants: Babamots (S), mneme (N)\nWinner: Babamots\n\n1) mneme: Homeworld R1 B2 G3\n\tBabamots: For the record, this is for the tournament. Good luck!\n\tmneme: This is good to have in the comment thread! (since those notices don&#39;t make it to the log at all! )\r\n\n\n2) Babamots: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\tBabamots: One of the things I would like to change about SDG is that observers can&#39;t see the challenge notes or clock situation. And as long as I&#39;m making wishes, archive view should show the stash.\n\n4) Babamots: Build G1 Babamots\n\tmneme: YES.  There would need to be micro-images of the stash or it would get seriously awk though.\r\n\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) mneme: Build G1 Mneme\n\n8) Babamots: Build G1 Babamots\n\n9) mneme: Trade G1 R1 Mneme\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) mneme: Build R2 Mneme\n\n12) Babamots: Build R2 Babamots\n\n13) mneme: Trade R2 Y2 Mneme\n\n14) Babamots: Discover R1 Babamots G1 Rubicun\n\n15) mneme: Discover R1 Mneme G3 Caliope\n\n16) Babamots: Build Y1 Babamots\n\n17) mneme: Move Y2 Mneme Caliope\n\n18) Babamots: Move Y1 Babamots Rubicun\n\n19) mneme: Build G1 Mneme\n\n20) Babamots: Build Y2 Rubicun\n\n21) mneme: Discover G1 Mneme Y3 Clio\n\n22) Babamots: Move Y2 Rubicun Clio\n\n23) mneme: Discover G1 Clio Y2 Urania\n\n24) Babamots: Sacrifice G3 Babamots\nBuild Y3 Rubicun\nBuild Y3 Babamots\nPass\n\n25) mneme: Build G1 Mneme\n\n26) Babamots: Move Y3 Rubicun Caliope\n\n27) mneme: Sacrifice Y2 Caliope\nDiscover G1 Mneme B3 Polyhymnia\nDiscover R1 Caliope Y2 Terpsichore\n\n28) Babamots: Move Y3 Caliope Urania\n\n29) mneme: Discover G1 Urania G3 Euterpe\n\n30) Babamots: Trade R2 G2 Babamots\n\tBabamots: Must be a hard game if we&#39;re both undoing things :-P\n\n31) mneme: Build G2 Mneme\n\n32) Babamots: Discover R1 Rubicun G3 Orion\n\n33) mneme: Sacrifice G3 Mneme\nBuild G2 Polyhymnia\nBuild G3 Mneme\nBuild R2 Terpsichore\n\n34) Babamots: Trade Y1 B1 Babamots\n\n35) mneme: Move R2 Terpsichore Orion\n\tBabamots: Lots of small colonies out there.\n\tDraw5PlayAll: What is Rubicun?\n\tBabamots: It&#39;s the planet the TNG crew visits in the episode &quot;Justice.&quot;\n\n36) Babamots: Sacrifice Y1 Rubicun\nDiscover R1 Orion G1 Rubicun\n\tmneme: Ah, thanks.  \n\n37) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Mneme\nBuild Y1 Mneme\n\n38) Babamots: Move Y3 Urania Polyhymnia\n\n39) mneme: Sacrifice Y1 Mneme\nMove G2 Polyhymnia Rubicun\n\n40) Babamots: Sacrifice R1 Rubicun\nAttack G1 Polyhymnia\n\n41) mneme: Sacrifice G3 Mneme\nBuild R1 Orion\nBuild R2 Terpsichore\nBuild G3 Mneme\n\n42) Babamots: Sacrifice G2 Babamots\nBuild G2 Polyhymnia\nBuild Y1 Polyhymnia\n\n43) mneme: Sacrifice G2 Mneme\nBuild R3 Orion\nBuild R3 Terpsichore\n\n44) Babamots: Trade Y3 R3 Polyhymnia\n\n45) mneme: Move R3 Terpsichore Clio\n\n46) Babamots: Discover Y2 Clio B1 Bolarus\n\n47) mneme: Build G2 Euterpe\n\n48) Babamots: Sacrifice G2 Polyhymnia\nBuild Y2 Polyhymnia\nBuild Y3 Bolarus\n\n49) mneme: Build G2 Mneme\n\n50) Babamots: Trade Y1 B1 Polyhymnia\n\n51) mneme: Trade G2 B2 Mneme\n\n52) Babamots: Build G2 Polyhymnia\n\n53) mneme: Sacrifice B2 Mneme\nTrade R2 B2 Orion\nTrade R1 Y1 Orion\n\tBabamots: I wanted to find a better way to get that y3, but I you had tricky responses to any other approach I could find.\n\tmneme: I do what I can. :)\n\n54) Babamots: Build R1 Polyhymnia\n\n55) mneme: Build R2 Orion\n\tBabamots: Sorry, I&#39;m having a heck of a time making up my mind. This is tough.\n\n56) Babamots: Move R3 Polyhymnia Bolarus\n\n57) mneme: Move Y1 Mneme Euterpe\n\n58) Babamots: Move Y3 Bolarus Terpsichore\n\n59) mneme: Move Y1 Euterpe Terpsichore\n\n60) Babamots: Move Y3 Terpsichore Rubicun\n\n61) mneme: Sacrifice G1 Euterpe\nBuild G1 Rubicun\n\n62) Babamots: Discover Y3 Rubicun B3 Kronos\n\n63) mneme: Build B2 Orion\n\n64) Babamots: Move G2 Polyhymnia Bolarus\n\tmneme: I&#39;m not quite sure where you&#39;re heading here mentally, but I&#39;d be willing to accept a draw here.  It feels to me like most aggressive actions are likely to disrupt the attacker much more than the defender.\n\tBabamots: I thought I was about to make a very good move, but you have a tricky response that actually makes it terrible.\r\n\r\nI know what you mean about it being super hard to attack, but I&#39;m not quite ready to call it a draw. I&#39;ve got a few ideas of how I may yet get an upper hand. I&#39;m afraid I don&#39;t have any idea how you might get ahead, though :-P.\n\n65) mneme: Move B2 Orion Mneme\n\tDraw5PlayAll: What move?\n\tDraw5PlayAll: Maybe answer in a PM and link to this position in the archive,\n\tmneme: There are a few ways.  Mostly through your making a mistake, but not entirely.\r\n\n\n66) Babamots: Move G1 Polyhymnia Rubicun\nCatastrophe Rubicun G\n\n67) mneme: Build G1 Mneme\n\n68) Babamots: Build G1 Bolarus\n\n69) mneme: Move G1 Mneme Clio\n\n70) Babamots: Move G2 Bolarus Kronos\n\tmneme: That was a fun sequence.  Sure you don&#39;t want to take that tie offer?\n\tBabamots: Yeah, somehow I thought that would change something, but I guess it didn&#39;t. Gimme a few more moves. I may be on to something this time.\n\n71) mneme: Build G1 Clio\n\n72) Babamots: Build G2 Kronos\n\n73) mneme: Move G1 Clio Terpsichore\n\n74) Babamots: Move G1 Bolarus Polyhymnia\n\n75) mneme: Sacrifice G2 Euterpe\nBuild G2 Clio\nBuild G3 Terpsichore\n\n76) Babamots: Move R3 Bolarus Polyhymnia\n\n77) mneme: Move R2 Terpsichore Polyhymnia\n\n78) Babamots: Sacrifice R1 Polyhymnia\nAttack R2 Polyhymnia\n\n79) mneme: Move R3 Orion Bolarus\n\n80) Babamots: Move Y2 Bolarus Babamots\n\n81) mneme: Move Y1 Terpsichore Bolarus\n\n82) Babamots: Sacrifice Y2 Polyhymnia\nDiscover B1 Babamots R1 Betazed\nMove G2 Kronos Mneme\n\n83) mneme: Move R3 Clio Mneme\n\n84) Babamots: Sacrifice Y3 Kronos\nMove G1 Polyhymnia Mneme\nMove G2 Kronos Mneme\nMove R3 Polyhymnia Mneme\nCatastrophe Mneme G\n\n85) mneme: Sacrifice G3 Terpsichore\nBuild Y2 Bolarus\nBuild Y3 Orion\nBuild B3 Orion\n\n86) Babamots: Sacrifice Y3 Babamots\nMove R2 Polyhymnia Mneme\nMove B1 Polyhymnia Mneme\nCatastrophe Mneme R\nMove B1 Betazed Mneme\nCatastrophe Mneme B\n\n\tBabamots: Wow, very good game! So many games end because of a blunder, but you played well every step of the way.\n\tmneme: The same.  If you&#39;d ever let me have a y2, much less a y3 before you were all set up, it would have been a very different game!\n\nHomeworlds Online (SDG# 34543)\nVariants: &quot;Unrated&quot;\nStarted: 2018.9.6, Ended: 2018.9.17\nParticipants: eliscinsky (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 G1 Y3\n\tBabamots: For the record, this is a practice game and not part of the ongoing tournament.\n\n2) eliscinsky: Homeworld R1 B2 G3\n\teliscinsky: Understood &amp; Agreed. Thanks for the rematch!\n\n3) Babamots: Build Y1 Babamots\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Babamots: Trade Y1 G1 Babamots\n\teliscinsky: I see the advantage of your HW. Nice.\n\n6) eliscinsky: B G2 Eliscinsky\n\tBabamots: What do you see as the advantage of my homeworld? I deliberately took a setup that I consider a bit weak.\n\teliscinsky: The ability to build y quickly, and gain larges soon. Or am I missing something?\n\n7) Babamots: Build G2 Babamots\n\tBabamots: It&#39;s true that starting with a yellow ship gives me a bit of a head start on getting yellows, but I think it slows down my overall expansion a bit. Here&#39;s my theory: in order to expand rapidly, you want to either get a blue ship in a green system or vice versa (in order to create many-colored ships closer to your enemy than your home is). If you&#39;re focused on gathering yellow, you&#39;re slower to get blue and green together in a forward system.\n\n8) eliscinsky: Trade G2 Y2 Eliscinsky\n\n9) Babamots: Discover G1 Babamots B2 Bajor\n\n10) eliscinsky: Discover G1 Eliscinsky B3 Trill\n\n11) Babamots: Discover G2 Babamots B2 Cardassia\n\n12) eliscinsky: B G2 Trill\n\n13) Babamots: Build Y1 Babamots\n\n14) eliscinsky: Trade G1 Y1 Trill\n\n15) Babamots: Move Y1 Babamots Cardassia\n\n16) eliscinsky: Build G1 Eliscinsky\n\n17) Babamots: Build Y1 Cardassia\n\n18) eliscinsky: Build Y2 Eliscinsky\n\n19) Babamots: Trade Y1 R1 Cardassia\n\n20) eliscinsky: Build G2 Trill\n\n21) Babamots: Build G3 Bajor\n\n22) eliscinsky: Sacrifice Y2 Eliscinsky\nMove G2 Trill Bajor\nMove G2 Trill Bajor\nCatastrophe Bajor Green\n\n23) Babamots: Build R1 Cardassia\n\tBabamots: Unfortunately, if you build a g3 now in either of your systems, I can catastrophe it in a good exchange for me.\r\nIf you build at home:\r\nsacrifice y3 Babamots\r\nmove g1 Bajor Trill\r\nmove g1 Trill eliscinsky\r\nmove g3 Cardassia Babamots\r\ncatastrophe eliscinsky g\n\teliscinsky: Yes, I figured I should watch out for that.  That&#39;s why I figured I&#39;d do ...\n\n24) eliscinsky: T Y2 R2 Eliscinsky\n\n25) Babamots: Build Y1 Cardassia\n\n26) eliscinsky: M Y1 Trill Eliscinsky\n\tBabamots: By building the last r1 piece, I&#39;m trying to force you to trade your y2 for r2. That will limit your ability to build more yellow.\r\n\r\nYou could also trade your g3 for r3, but it&#39;s nice to have smaller red pieces in case you need to sacrifice for a single attack.\r\n\r\nFailing to have red ships while my opponent has them is pretty high on that list of danger signs I sent you. But I won&#39;t attack yet since the only ship I could come after is your y1, which can just run away.\n\n27) Babamots: Build Y2 Cardassia\n\n28) eliscinsky: Build Y2 Eliscinsky\n\n29) Babamots: Discover Y2 Cardassia Y3 Iconia\n\n30) eliscinsky: D R2 Eliscinsky Y3 Trill\n\n31) Babamots: Build Y2 Babamots\n\n32) eliscinsky: M G1 Eliscinsky Trill\n\n33) Babamots: Build G1 Cardassia\n\tBabamots: I discovered a y3 system to keep the piece away from you. My hope is to sacrifice my g2 to build the remaining y2 and y3. You can block me in a couple of ways.\n\n34) eliscinsky: B G2 Eliscinsky\n\n35) Babamots: Move G1 Cardassia Iconia\n\n36) eliscinsky: B G2 Trill\n\n37) Babamots: Build G3 Cardassia\n\n38) eliscinsky: Build R2 Trill\n\n39) Babamots: Build G3 Iconia\n\n40) eliscinsky: D R2 Trill B2 Betazed\n\n41) Babamots: Sacrifice Y3 Babamots\nMove G1 Iconia Eliscinsky\nMove G2 Cardassia Iconia\nMove G2 Iconia Eliscinsky\nCatastrophe Eliscinsky G\n\n42) eliscinsky: Trade Y2 R2 Eliscinsky\n\tBabamots: I didn&#39;t foresee this problem for you last night. Since I have a factory in Cardassia, I can still build the g3 even after your partial block. If I do that, you&#39;ll be able to sacrifice your y2 to use your g1 for a green catastrophe in Iconia, but looking at it from this moment, you&#39;re losing a y2 and a g1 to kill my g1 (after which, I&#39;ll build that y2 piece, and you&#39;ll have an even more serious yellow shortage).\r\n\r\nAll that to say, you may want to undo. I have to go for now, but I&#39;ll look for a better move for you this afternoon.\n\n43) Babamots: Move G3 Iconia Eliscinsky\n\teliscinsky: Thanks. I&#39;ve seen many issues with my available options.  Have to go back to a longer chess like game.  BTW, what do you think of my last move?\n\tBabamots: When you say &quot;last move,&quot; I guess you mean building an r2. It gives you another medium ship without making large ones available to me, so I think it&#39;s pretty good.\r\n\r\nIf you now spread out your reds (mine are sill in the same system together), you&#39;re a bit better prepared to compete for the large red pieces. You&#39;re going to want another large ship soon to defend Trill before I decide to move a large there to attack.\n\n44) eliscinsky: M R2 Trill Cardassia\n\teliscinsky: That&#39;s what I was thinking. D r2 ....\n\n45) Babamots: Attack R2 Eliscinsky\n\teliscinsky: BTW, I really appreciate all the help and training. \n\tBabamots: Well, I hope I help some. I don&#39;t feel like a great teacher when I usually realize what you should have done *after* you do something else. Maybe I like winning too much :-P\n\tBabamots: Here&#39;s a little quiz: what would you do if I moved my g3 to Trill?\n\teliscinsky: In any competition there is usually one winner and one loser.  If I lose, I try to learn something from the loss.  So NP if you win. ;)\r\n\r\nSo now you Move G3 Cardassia Trill ... I could:\r\n\r\n1) Move G2 eliscinsky Trill, Catastrophe Trill Green ... or ...\r\n\r\n2) Sacrifice G3 Eliscinsky, Build R2 Trill, Build R3 Betazed, Build G3 eliscinsky (if I build an R3 in Trill you&#39;ll just attach it with your G3 by sacrificing one of your R1&#39;s. Good return.) ... or ...\r\n\r\n3) Move R2 Trill eliscinsky, &amp; allow you to sacrifice your 2 R&#39;s to attach my G&#39;s in Trill, then Move G2 eliscinsky Trill, Catastrophe Trill Green - plus the Y3 will also be freed up.  Meanwhile Trade G2 R2 eliscisnky, then Discover R2 eliscinsky R3 Romulus ... or ...\r\n\r\n4) Move R2 Trill Betazed, but it would get stuck there, as I don&#39;t want to give up my Yellow.\r\n\r\n\r\nMoving R2 Trill Cardassia ... does me no good as you&#39;d just attach and take the R2 over.\r\nAlso at some point you&#39;re going to have to Trade for more Red.\r\nIf I allow you to take Trill by using your R1&#39;s, then I can try to snatch up all the Red, and once I have a R3 move it into you HW and attack.\r\nNot sure what I&#39;m going to do. I&#39;m thinking it all over, trying to see if I missed anything.  For now #1 would seem the best option.\r\n\r\nI seem to be one step behind to really make a move to put me into an advantage.\r\nBTW, I&#39;m feeling squeezed / penned in. Thanks ;)\r\n\n\tBabamots: Some good thoughts. Here are my thoughts to your thoughts.\r\n\r\n1) You can do better than your first suggestion. Instead of moving the g2 with yellow, do what I call &quot;green travel&quot; to get your g2 to Trill (sacrifice and build), and then you have an extra green action to build an r2:\r\n\r\nsacrifice g2 eliscinsky\r\nbuild g2 Trill\r\nbuild r2 Trill\r\ncatastrophe Trill g\r\n\r\n2) I think this is your best move. You just ignore my threat and score a large ship. I would probably attack your r2, but then you could do the green catastrophe from suggestion 1).\r\n\r\n3) Also pretty good. Escape with the one ship you wouldn&#39;t be able to catastrophe away after I attacked it. I don&#39;t understand the end of your continuation though. You would put an r2 ship in an r3 system?\r\n\r\n4) I agree that this would solve the immediate problem but it doesn&#39;t get you much.\n\teliscinsky: Ahhh, I still overlook those types of plays sometimes.\r\n\r\nAlso about your teaching ... If you can get your student to understand / comprehend / learn a new idea or method or way of thinking then you&#39;ve done the job.  So to you I say &quot;Well done&quot;.  You&#39;ve most certainly grown my understanding of the game.\r\n\r\nIn fact, as most good students do, I was up half the night (2:30 &amp; 4:00 am - couldn&#39;t sleep) thinking about HWs and what else I could do.  Then I saw your message, and thought about it a little more but finally got back to sleep. haha.\r\n\r\nSo it is your move.  Since I see other moves / strategy you could do, I&#39;ll await your next move.  Have you considered moving G&#39;s from Iconia to eliscinsky.  I&#39;ll either have to:\r\n1) take your 1st G, but you 2nd would Catastrophe my G&#39;s. You&#39;d have to get some Reds back but I think in the end you&#39;d still win.  ... or ...\r\n2) move my G or Y out but that will allow you to take my HW.  ( I think you&#39;re going to win anyway, but that&#39;s just me.;) )\r\n\n\tBabamots: I lost sleep in the last tournament rehearsing my opponent&#39;s anticipated moves and my responses. Stare at a position long enough and it will get stuck in your head. And that&#39;s not always bad. At least once, obsessive mental review made me realize I&#39;d made a blunder that I was able to undo.\r\n\r\nI never planned on moving my g3 to Trill, but since I have a large that *could* go there, it should have crossed your mind before you made your previous move. That&#39;s one of the &quot;red flag&quot; scenarios on the list I sent in our last game: &quot;My opponent has a piece too large for me to attack in one of my systems.&quot; It was a good thought exercise.\r\n\r\nI haven&#39;t really been looking for a killing blow yet, but now that I&#39;m looking, it looks like you&#39;re right about it.\r\n\r\nBased on this position and my own recent bad experience, I&#39;m thinking about adding something to the red flag list: &quot;Your only large in your home system is the same color as another ship/marker there.&quot;\n\n46) eliscinsky: Sacrifice G2 Trill\nBuild Y2 Eliscinsky\nBuild R3 Cardassia\nCatastrophe Cardassia Red\n\tBabamots: 1) If you build y3 in your home, I&#39;ll move my y2 there for a winning catastrophe.\r\n2) If you sacrifice a yellow to move a ship to my home, I&#39;ll attack it and proceed with plan 3).\r\n3) In all other cases, I plan to move my g3 to your home.\r\n\r\nYou have a move that will delay the game longer than my suggestions 1) or 2) would (though not for VERY long). Can you find it?\n\teliscinsky: Aaarrrggghhhh! You distracted me! (not really) LOL!\r\n\r\nLet&#39;s see ... not sure if this will work for me ... but ...\n\n47) Babamots: Sacrifice R2 Eliscinsky\nAttack Y1 Eliscinsky\nAttack Y2 Eliscinsky\n\tBabamots: I was going to suggest getting a green ship to your home, preferably by trading, say &quot;trade y1 g1 eliscinsky.&quot; Then, if I move in my g3, you can catastrophe it by building two more greens by sacrificing your g2 in Trill. It&#39;s a high price, but it would have delayed the game a bit more.\n\n\teliscinsky: Had I traded my Y2 for a B2 in eliscinsky we might have a very different game. \r\n\r\nGasping for breath!!! LOL\n\teliscinsky: Nope, guess I couldn&#39;t have done that, but was there a g2, or just left it alone.  \n\teliscinsky: UNCLE!!!\n\tBabamots: I&#39;ll let your remaining troops love if they surrender. \n\tBabamots: I&#39;ll also let them live.\n\nHomeworlds Online (SDG# 34539)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.6, Ended: 2018.9.16\nParticipants: speardane (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: For the record, this is for the tournament. And this is the AI account? I&#39;m impressed with its performance so far. I didn&#39;t suppose it would be good enough to beat anyone.\n\n2) speardane: Homeworld Y3 G2 B3\n\n3) Babamots: Build G1 Babamots\n\tspeardane: Indeed, speardane is an AI. It&#39;s really not GOOD enough to beat anyone; it&#39;s just that some players have played BAD enough to get beaten by it. ;)\n\n4) speardane: Build B1 Speardane\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) speardane: Trade B1 R1 Speardane\n\n7) Babamots: Build Y1 Babamots\n\n8) speardane: Build R1 Speardane\n\n9) Babamots: Build Y1 Babamots\n\n10) speardane: Discover R1 Speardane B1 Delos\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) speardane: Build R2 Speardane\n\tBabamots: Do you ever cringe when you see the moves your AI chooses?\n\n13) Babamots: Build Y2 Babamots\n\tspeardane: Specifically one move near the end of game 34513, yes. Generally the bad moves aren&#39;t so blatant that I bother to notice. I just cut-and-paste back and forth without trying to analyze on the fly, because that&#39;d just confuse me in my OWN tournament games. :)\n\n14) speardane: Trade R2 Y2 Speardane\n\n15) Babamots: Discover Y1 Babamots B3 Betazed\n\n16) speardane: Move Y2 Speardane Delos\n\n17) Babamots: Sacrifice G3 Babamots\nBuild Y2 Orion\nBuild Y3 Betazed\nBuild Y3 Babamots\n\n18) speardane: Trade R1 G1 Delos\n\n19) Babamots: Trade Y1 G1 Babamots\n\n20) speardane: Build Y1 Delos\n\n21) Babamots: Trade Y1 R1 Betazed\n\n22) speardane: Trade Y2 R2 Delos\n\n23) Babamots: Move Y3 Betazed Delos\n\n24) speardane: Move R2 Delos Betazed\n\n25) Babamots: Sacrifice R1 Betazed\nAttack Y1 Delos\n\n26) speardane: Sacrifice G1 Delos\nBuild R1 Betazed\n\n27) Babamots: Build Y1 Babamots\n\n28) speardane: Trade R2 Y2 Betazed\n\n29) Babamots: Trade Y2 R2 Babamots\n\n30) speardane: Trade R1 G1 Betazed\n\n31) Babamots: Build Y2 Orion\n\n32) speardane: Build B1 Speardane\n\n33) Babamots: Discover G1 Babamots B3 Bolarus\n\n34) speardane: Discover B1 Speardane R1 Lebling\n\n35) Babamots: Move Y2 Orion Lebling\n\n36) speardane: Sacrifice B1 Lebling\nPass\n\n37) Babamots: Build G1 Bolarus\n\n38) speardane: Build R2 Speardane\n\n39) Babamots: Sacrifice Y1 Orion\nMove G1 Bolarus Lebling\n\n40) speardane: Trade R2 G2 Speardane\n\n41) Babamots: Build G2 Lebling\n\n42) speardane: Build G3 Betazed\n\n43) Babamots: Sacrifice Y3 Delos\nMove Y2 Lebling Speardane\nMove Y1 Delos Speardane\nMove Y2 Orion Lebling\n\n44) speardane: Sacrifice G2 Speardane\nBuild Y1 Betazed\nBuild Y3 Betazed\n\n45) Babamots: Move G1 Lebling Speardane\n\n46) speardane: Sacrifice Y3 Betazed\nMove Y1 Betazed Babamots\nMove Y2 Betazed Babamots\nMove G3 Betazed Lebling\nCatastrophe Babamots Yellow\n\n47) Babamots: Sacrifice G2 Lebling\nBuild G2 Speardane\nBuild Y1 Speardane\nCatastrophe Speardane Y\n\tspeardane: Well, that was an example of a move that I think was obviously suboptimal, unless I&#39;m missing something. :P\n\tBabamots: Looks like I&#39;ve been moving too quickly in this game. I didn&#39;t give your AI enough credit. I didn&#39;t notice that coming, but I think I still win in a couple of moves.\n\n48) speardane: Pass\n\tBabamots: Oh, you mean you AI&#39;s move was suboptimal. I just checked the archive view and yes, I should have lost just now. Dang. Well, thanks for entering the move honestly. That&#39;s very embarrassing on my part.\n\tBabamots: I should have catastrophe&#39;d that yellow fleet in my orbit, but I didn&#39;t want to delay my victory by even one move. Shoulda seen it was a serious threat.\n\n49) Babamots: Build G2 Speardane\nCatastrophe Speardane G\n\tspeardane: Wow, that really was close -- I believe if speardane had moved g3 to your homeworld instead of bizarrely going after those two medium ships at Lebling, it would have been game over the other way. Pretty coincidental you started this game by asking if speardane ever did anything boneheaded! :)\n\tBabamots: That&#39;s the move I saw too. I nearly swallowed my tongue when I saw I should have lost. Overall, it plays much better than I expected. A little tuning and maybe it&#39;ll get me next time. Thanks for the game!\n\tDraw5PlayAll: 1. Why is speardane referring to self in third person?\r\n2. What are Bolarus and Lebling?\n\tDraw5PlayAll: Oh. Who is the primary (human) account for speardane? Is the code on github?\n\tBabamots: ajo operates the &quot;speardane&quot; AI. I think it uses code that&#39;s on the GitHub project I think you&#39;ve asked about before, though maybe he uses a private, updated version.\r\nIn Star Trek, Bolarus is the homeworld of the Bolians. The have blue skin and are usually bald. The &quot;Bank of Bolius&quot; is an important one for people trying to keep their finances secret.\r\nI don&#39;t know what Lebling is. He named that one.\n\tDraw5PlayAll: I would like to find a link\n\tBabamots: My profile has a link to ajo&#39;s AI project on GitHub.\n\tDraw5PlayAll: Oh I did not know that ajo and Quuxplusone were the same person.\n\tspeardane: I just noticed this conversation. The code on the GitHub is indeed the code used by speardane in this tournament, except for one game (against mneme) where I decided to try an alpha-beta search thing that ended up not working very well.\n\tspeardane: The AI&#39;s default system names are all surnames of pioneers in computer gaming/AI, except for &quot;Delos,&quot; which is a reference to https://en.wikipedia.org/wiki/Westworld_(film) . &quot;Lebling&quot; in this context is therefore a reference to https://en.wikipedia.org/wiki/Dave_Lebling .\n\n\nHomeworlds Online (SDG# 34546)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.8, Ended: 2018.9.27\nParticipants: Babamots (S), deanthebean (N)\nWinner: Babamots\n\n1) deanthebean: Homeworld G3 Y2 B3\n\n2) Babamots: Homeworld B2 R1 G3\n\tdeanthebean: Have fun!\n\n3) deanthebean: Build B1 Deanthebean\n\tBabamots: You too! And may life give you the time to represent your best play! (TLDR good luck!)\n\n4) Babamots: Build G1 Babamots\n\tdeanthebean: Thanks and likewise!\n\n5) deanthebean: Build B1 Deanthebean\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) deanthebean: Trade B1 R1 Deanthebean\n\n8) Babamots: Build G1 Babamots\n\n9) deanthebean: Trade B1 Y1 Deanthebean\n\n10) Babamots: Trade G1 Y1 Babamots\n\n11) deanthebean: Build B1 Deanthebean\n\n12) Babamots: Build Y1 Babamots\n\n13) deanthebean: Trade B3 G3 Deanthebean\n\n14) Babamots: Discover Y1 Babamots Y3 Iconia\n\n15) deanthebean: Discover Y1 Deanthebean B1 Newstar\n\n16) Babamots: Build Y2 Babamots\n\n17) deanthebean: Build B2 Deanthebean\n\n18) Babamots: Discover Y2 Babamots B3 Andoria\n\n19) deanthebean: Discover B1 Deanthebean G1 Newerstar\n\n20) Babamots: Sacrifice G3 Babamots\nBuild Y2 Iconia\nBuild Y3 Andoria\nBuild Y3 Babamots\n\n21) deanthebean: Sacrifice G3 Deanthebean\nBuild B2 Deanthebean\nBuild B3 Newerstar\nBuild B3 Deanthebean\n\n22) Babamots: Discover Y1 Iconia G2 Risa\n\n23) deanthebean: Trade B3 G3 Newerstar\n\n24) Babamots: Trade B1 G1 Babamots\n\n25) deanthebean: Trade B3 G3 Deanthebean\n\n26) Babamots: Build G1 Babamots\n\n27) deanthebean: Move Y1 Newstar Risa\n\n28) Babamots: Trade G1 R1 Babamots\n\n29) deanthebean: Move Y1 Risa Newerstar\n\n30) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Andoria? Risa?\n\tBabamots: In Star Trek, Andoria is the homeworld of the Andorians (an aggressive, blue-skinned race with large antanae).\r\nRisa is also a Star Trek world. It&#39;s a popular tropical vacation planet.\n\n31) deanthebean: Build R2 Deanthebean\n\n32) Babamots: Move G1 Babamots Iconia\n\n33) deanthebean: Move G3 Newerstar Iconia\n\n34) Babamots: Move Y2 Iconia Newerstar\n\n35) deanthebean: Sacrifice R1 Deanthebean\nAttack G1 Iconia\n\n36) Babamots: Sacrifice R1 Babamots\nAttack Y1 Newerstar\n\n37) deanthebean: Move R2 Deanthebean Newerstar\n\n38) Babamots: Sacrifice Y1 Newerstar\nDiscover Y2 Newerstar R2 Kronos\n\n39) deanthebean: Trade B1 Y1 Newerstar\n\n40) Babamots: Trade Y1 R1 Babamots\n\n41) deanthebean: Build Y1 Newerstar\n\n42) Babamots: Build G2 Babamots\n\n43) deanthebean: Move G3 Iconia Kronos\n\n44) Babamots: Discover Y2 Kronos R1 Romulus\n\n45) deanthebean: Build G2 Iconia\n\n46) Babamots: Move G1 Babamots Andoria\n\n47) deanthebean: Move R2 Newerstar Iconia\n\n48) Babamots: Move R1 Babamots Andoria\n\n49) deanthebean: Build R2 Iconia\n\n50) Babamots: Move G1 Andoria Romulus\n\n51) deanthebean: Move R2 Iconia Risa\n\n52) Babamots: Sacrifice G2 Babamots\nBuild G2 Romulus\nBuild R3 Andoria\n\n53) deanthebean: Move G3 Deanthebean Romulus\n\n54) Babamots: Sacrifice Y2 Romulus\nMove R3 Andoria Romulus\nMove R3 Romulus Deanthebean\n\n55) deanthebean: Move Y1 Newerstar Kronos\n\n56) Babamots: Sacrifice G2 Romulus\nBuild R3 Deanthebean\nBuild R3 Deanthebean\n\n57) deanthebean: Sacrifice G3 Kronos\nBuild B1 Deanthebean\nBuild B1 Deanthebean\nBuild B1 Deanthebean\n\tdeanthebean: I can&#39;t see a defence to that! well played. \n\n58) Babamots: Build Y2 Risa\nCatastrophe Deanthebean B\n\tdeanthebean: OK. Let&#39;s try this. \n\n\tBabamots: Thanks for the game!\n\nHomeworlds Online (SDG# 34553)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.8, Ended: 2018.9.19\nParticipants: Felix (S), ajo (N)\nWinner: Felix\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld R1 B2 G3\n\n3) ajo: Build G1 Ajo\n\tFelix: Good luck and have fun!\n\n4) Felix: B G1 Felix\n\tajo: Good luck!\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) Felix: T G1 Y1 Felix\n\n7) ajo: Build G1 Ajo\n\n8) Felix: B G1 Felix\n\n9) ajo: Discover G1 Ajo B1 Alpha\n\n10) Felix: T G1 B1 Felix\n\n11) ajo: Build G1 Alpha\n\n12) Felix: B B1 Felix\n\n13) ajo: Trade G1 Y1 Alpha\n\n14) Felix: D B1 Felix G3 Rim\n\n15) ajo: Build G1 Ajo\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Rim\nBuild B3 Rim\nBuild B3 Felix\n\n17) ajo: Build Y2 Alpha\n\n18) Felix: Trade B3 G3 Felix\n\tajo: Shoot, I fall for that &quot;no factory but it doesn&#39;t matter because I&#39;m getting a blue monopoly&quot; trap waaay too much. It needs a catchy name like the Bluebird Mistake. Maybe we should call it the Yellowbird. :P\n\n19) ajo: Discover Y1 Alpha B3 Beta\n\tFelix: Haha, that&#39;s a good name! It is pretty common. I&#39;ve made the same mistake myself many times!\n\n20) Felix: Build B3 Felix\n\n21) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y2 Beta\nBuild Y3 Ajo\n\n22) Felix: Trade B3 Y3 Rim\n\tajo: Practicing. ;)\n\n23) ajo: Trade Y1 R1 Ajo\n\tFelix: I&#39;m honestly still not sure if I&#39;d rather have a monopoly on blue or yellow. Mobility is everything in the end.\n\n24) Felix: Build B3 Rim\n\tajo: Yes, but I&#39;d rather have a monopoly on blue than not have a monopoly on anything, which is my situation at the moment!\n\n25) ajo: Build R1 Ajo\n\n26) Felix: Trade B3 R3 Rim\n\n27) ajo: Discover Y2 Alpha B3 Gamma\n\n28) Felix: Build Y1 Rim\n\n29) ajo: Build G1 Alpha\n\n30) Felix: Build R2 Rim\n\n31) ajo: Sacrifice Y2 Gamma\nMove G1 Alpha Rim\nMove G1 Alpha Rim\n\n32) Felix: Sacrifice Y3 Rim\nMove R3 Rim Alpha\nMove B1 Rim Alpha\nDiscover B2 Rim G2 Booger\n\n33) ajo: Sacrifice Y2 Alpha\nMove G1 Rim Booger\nMove G1 Booger Beta\n\tFelix: Very nice attack! And interesting. Really made me think.\n\n34) Felix: Build G2 Felix\n\tajo: Doesn&#39;t seem to have hurt you much, though.\n\n35) ajo: Build G2 Ajo\n\n36) Felix: S G2 Felix\nB B3 Alpha\nB R2 Alpha\n\n37) ajo: Sacrifice Y1 Beta\nDiscover R1 Ajo Y1 Gamma\n\n38) Felix: T B3 G3 Alpha\n\n39) ajo: Sacrifice G1 Rim\nBuild R2 Gamma\n\n40) Felix: B B3 Booger\n\n41) ajo: Sacrifice G2 Ajo\nBuild R3 Gamma\nBuild R3 Ajo\n\n42) Felix: M R2 Rim Gamma\nC Gamma Red\n\n43) ajo: Discover R3 Ajo G1 Gamma\n\n44) Felix: T B3 Y3 Booger\n\n45) ajo: Build G2 Ajo\n\n46) Felix: B B3 Booger\n\n47) ajo: Build G2 Beta\n\n48) Felix: Sacrifice G3 Felix\nBuild G3 Alpha\nBuild Y1 Rim\nBuild Y2 Booger\n\n49) ajo: Build Y2 Beta\n\n50) Felix: M Y1 Rim Alpha\n\n51) ajo: Sacrifice Y2 Beta\nMove R3 Gamma Beta\nMove G1 Beta Alpha\n\n52) Felix: Move Y1 Alpha Ajo\n\n53) ajo: Trade Y3 R3 Ajo\n\n54) Felix: Sacrifice G3 Alpha\nBuild Y2 Ajo\nBuild Y3 Ajo\nPass\n\tajo: So it begins...\n\n55) ajo: Catastrophe Ajo Yellow\nBuild R1 Beta\n\tFelix: And now the dominoes fall!\n\n56) Felix: Sacrifice Y3 Booger\nMove B1 Alpha Ajo\nMove B3 Booger Alpha\nMove B3 Alpha Ajo\n\n57) ajo: Pass\n\n58) Felix: Sacrifice Y2 Booger\nMove B2 Booger Beta\nMove B2 Beta Ajo\nCatastrophe Ajo Blue\n\tajo: Good game!\n\tFelix: Thank you! Good game, and good luck in the rest of your tourney games!\n\n\nHomeworlds Online (SDG# 34555)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.9, Ended: 2018.9.20\nParticipants: Trydnt (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) Felix: B G1 Felix\n\n4) Trydnt: Build G1 Trydnt\n\tFelix: Good luck and have fun!\n\tTrydnt: You too! Best of luck\n\n5) Felix: T G1 R1 Felix\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Felix: B R2 Felix\n\n8) Trydnt: Build R2 Trydnt\n\n9) Felix: T R2 Y2 Felix\n\n10) Trydnt: Build R2 Trydnt\n\n11) Felix: Build R2 Felix\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Felix: Discover R1 Felix B2 Ramp\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) Felix: Build G1 Felix\n\n16) Trydnt: Move Y2 Trydnt G1\n\n17) Felix: Move G1 Felix Ramp\n\n18) Trydnt: Build Y1 G1\n\n19) Felix: Build Y1 Felix\n\n20) Trydnt: Discover Y1 G1 G2 G2\n\n21) Felix: Move Y2 Felix Ramp\n\n22) Trydnt: Build Y1 G1\n\n23) Felix: Build Y2 Felix\n\n24) Trydnt: Build Y3 G2\n\n25) Felix: Build Y3 Ramp\n\n26) Trydnt: Build R2 G1\n\n27) Felix: B R3 Ramp\n\n28) Trydnt: Build R3 Trydnt\n\n29) Felix: M R3 Ramp G1\n\n30) Trydnt: Sacrifice Y2 G1\nDiscover R1 G1 B2 B2\nDiscover R2 G1 Y2 Y2\n\n31) Felix: M R2 Felix B2\n\n32) Trydnt: Sacrifice Y1 G1\nDiscover R1 B2 G1 Gee1\n\n33) Felix: Build R3 G1\n\n34) Trydnt: Build G2 Trydnt\n\n35) Felix: Build G2 Felix\n\n36) Trydnt: Discover R3 Trydnt Y1 Y1\n\n37) Felix: T Y3 B3 Ramp\n\n38) Trydnt: Discover R3 Y1 Y3 Y3\n\n39) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Ramp\nBuild Y1 Ramp\n\n40) Trydnt: Discover Y1 G2 B1 B1\n\n41) Felix: Trade G3 B3 Ramp\n\n42) Trydnt: Sacrifice Y3 G2\nMove R2 Trydnt G1\nMove R2 Y2 G1\nCatastrophe G1 R\nMove R3 Y3 B1\n\tFelix: So many systems....\n\n43) Felix: Move B3 Ramp Gee1\n\n44) Trydnt: Move G2 Trydnt B1\n\n45) Felix: Move Y2 Ramp Gee1\n\n46) Trydnt: Build G1 Trydnt\n\n47) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 Ramp\n\n48) Trydnt: Trade G3 R3 Trydnt\n\n49) Felix: Sacrifice G2 Felix\nBuild B1 Gee1\nBuild B1 Gee1\n\n50) Trydnt: Build R2 B1\n\n51) Felix: Sacrifice G3 Ramp\nBuild Y2 Gee1\nBuild Y3 Ramp\nBuild Y3 Gee1\n\n52) Trydnt: Sacrifice R2 B1\nAttack B1 Gee1\nAttack B1 Gee1\n\n53) Felix: Sacrifice R1 Ramp\nAttack R1 Gee1\n\n54) Trydnt: Trade B1 R1 Gee1\n\n55) Felix: Sacrifice R2 B2\nAttack R1 Gee1\nAttack B1 Gee1\n\n56) Trydnt: Build R2 B1\n\n57) Felix: M B3 Gee1 Trydnt\n\n58) Trydnt: Attack B3 Trydnt\n\n59) Felix: S Y3 Gee1\nM B1 Gee1 Trydnt\nM B3 Ramp Gee1\nM B3 Gee1 Trydnt\nC Trydnt Blue\n\tFelix: Nice move!\n\n60) Trydnt: Build Y3 B1\n\n61) Felix: Sacrifice Y3 Ramp\nMove Y2 Gee1 Trydnt\nMove Y2 Gee1 Trydnt\nMove Y1 Ramp Trydnt\nCatastrophe Trydnt Yellow\n\n\tFelix: Thank you! Good game, and good luck in the rest of the tournament!\n\nHomeworlds Online (SDG# 34552)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.9, Ended: 2018.12.18\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: H B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\tFelix: Hey good luck and have fun, as usual!\n\tts52: Thanks. You too!\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) Felix: Discover B1 Felix Y2 Reign\n\n11) ts52: Build B3 Kermit\n\n12) Felix: Build B3 Felix\n\n13) ts52: Trade B3 Y3 Kermit\n\n14) Felix: T B2 R2 Felix\n\n15) ts52: Trade B1 R1 Ts52\n\n16) Felix: Build G1 Felix\n\n17) ts52: Build Y1 Kermit\n\n18) Felix: Trade G1 Y1 Felix\n\n19) ts52: Build Y2 Kermit\n\n20) Felix: Discover Y1 Felix G2 Out\n\n21) ts52: Discover Y2 Kermit B2 Gonzo\n\n22) Felix: Build Y2 Out\n\n23) ts52: Move Y3 Kermit Gonzo\n\n24) Felix: Move Y1 Out Kermit\n\n25) ts52: Trade Y2 G2 Gonzo\n\n26) Felix: Sacrifice Y2 Out\nMove B3 Felix Reign\nMove B3 Reign Kermit\n\tts52: This is for the 2018 Tournament, correct?\n\n27) ts52: Build Y2 Gonzo\n\tFelix: Yes, that was my understanding! Should have made that clearer. If that&#39;s fine with you?\n\n28) Felix: B R1 Felix\n\tts52: It is. I have no concerns that I&#39;m going to do well in this tournament. :)\n\n29) ts52: Trade Y2 R2 Gonzo\n\n30) Felix: Sacrifice R2 Felix\nAttack Y1 Kermit\nAttack B2 Kermit\n\tFelix: Ha, well I already timed out in a game against the AI opponent (speardane) so there&#39;s that. And you&#39;re doing well in this game!\n\n31) ts52: Build Y2 Gonzo\n\tts52: I hadn&#39;t realized there was an AI opponent. Interesting!\n\tFelix: I didn&#39;t know it either! Babamots clued me in to it.\n\n32) Felix: Move Y1 Kermit Gonzo\n\n33) ts52: Trade Y3 R3 Gonzo\n\n34) Felix: Build G1 Felix\n\n35) ts52: Build G1 Gonzo\n\n36) Felix: Build Y2 Kermit\n\n37) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Felix\nMove G2 Gonzo Felix\nCatastrophe Felix G\n\n38) Felix: Sacrifice Y2 Kermit\nMove B3 Kermit Reign\nMove B3 Reign Felix\n\n39) ts52: Attack Y1S Gonzo\n\n40) Felix: T B3 G3 Felix\n\n41) ts52: Move R3 Gonzo Kermit\n\n42) Felix: Discover B2 Kermit B1 Envision\n\n43) ts52: Attack Y1S Kermit\n\n44) Felix: Sacrifice G3 Felix\nBuild B3 Envision\nBuild B3 Reign\nBuild B3 Reign\n\n45) ts52: Move R2 Gonzo Felix\n\n46) Felix: Move B3 Reign Felix\n\n47) ts52: Attack R1S Felix\n\n48) Felix: Trade B2 R2 Envision\n\n49) ts52: Move R2 Felix Gonzo\n\n50) Felix: Trade B3 G3 Reign\n\n51) ts52: Build Y2 Kermit\n\n52) Felix: Trade B3 Y3 Envision\n\n53) ts52: Build G1 Ts52\n\n54) Felix: Sacrifice G3 Reign\nBuild B2 Reign\nBuild B3 Reign\nBuild B3 Felix\n\n55) ts52: Trade R2 G2 Gonzo\n\n56) Felix: Trade B3 G3 Reign\n\n57) ts52: Build Y2 Gonzo\n\n58) Felix: Sacrifice G3 Reign\nBuild B3 Reign\nBuild Y3 Envision\nBuild R1 Envision\n\n59) ts52: Sacrifice Y2 Kermit\nMove Y2 Gonzo Envision\nMove Y1 Gonzo Envision\nCatastrophe Envision Y\n\n60) Felix: Sacrifice R1 Envision\nAttack R1 Felix\n\n61) ts52: Build G1 Gonzo\n\n62) Felix: Trade B3 G3 Reign\n\n63) ts52: Trade G1 Y1 Gonzo\n\n64) Felix: Build B3 Reign\n\n65) ts52: Sacrifice G2 Gonzo\nBuild Y2 Gonzo\nBuild Y2 Kermit\n\n66) Felix: Discover B3 Reign R3 Mars\n\n67) ts52: Build Y3 Kermit\n\n68) Felix: Trade B3 Y3 Mars\n\n69) ts52: Move R3 Kermit Envision\n\n70) Felix: Sacrifice G3 Reign\nBuild R1 Envision\nBuild R2 Envision\nBuild B3 Reign\nCatastrophe Envision Red\n\n71) ts52: Trade Y1 B1 Gonzo\n\n72) Felix: Sacrifice B2 Reign\nTrade B3 G3 Felix\nTrade B3 R3 Reign\n\n73) ts52: Move Y2 Kermit Gonzo\n\n74) Felix: Sacrifice G3 Felix\nBuild B2 Reign\nBuild B3 Reign\nBuild Y1 Mars\n\n75) ts52: Move B1 Gonzo Kermit\n\n76) Felix: Discover B3 Reign B3 Renown\n\n77) ts52: Trade Y3 R3 Kermit\n\n78) Felix: Discover B2 Reign Y3 Steel\n\n79) ts52: Build G1 Ts52\n\n80) Felix: T B1 G1 Reign\n\n81) ts52: M G1 Ts52 Steel\n\n82) Felix: Sacrifice R1 Felix\nAttack G1 Steel\n\n83) ts52: Build B1 Kermit\n\n84) Felix: Move G1 Steel Ts52\n\n85) ts52: Sacrifice Y2 Gonzo\nMove G3 Ts52 Steel\nMove R3 Kermit Ts52\n\n86) Felix: Sacrifice Y3 Mars\nMove B3 Renown Ts52\nMove B2 Steel Ts52\nDiscover G1 Ts52 B3 Bomb\n\tDraw5PlayAll: Not even\n\n87) ts52: Attack B3S Ts52\n\n88) Felix: Sacrifice G1 Bomb\nBuild B3 Ts52\n\n89) ts52: Sacrifice G3 Steel\nBuild Y2 Kermit\nBuild Y3 Gonzo\nBuild Y3 Kermit\nCatastrophe Ts52 Blue\n\n90) Felix: Build R1 Reign\n\n91) ts52: Discover B1 Kermit G2 Robin\n\n92) Felix: Trade B3 G3 Felix\n\n93) ts52: Build B2 Robin\n\n94) Felix: Discover Y1 Mars G2 Greeny\n\n95) ts52: Build B2 Robin\n\n96) Felix: Build G1 Felix\n\n97) ts52: Move Y2 Kermit Robin\n\n98) Felix: Move R3 Reign Felix\n\n99) ts52: Move Y3 Kermit Robin\n\n100) Felix: Build R1 Felix\n\n101) ts52: Discover Y1 Kermit R2 Elmo\n\n102) Felix: Build R2 Reign\n\tFelix: I think I&#39;m doomed :) I always pull the trigger too early!\n\n103) ts52: Sacrifice Y3 Gonzo\nMove Y1 Elmo Felix\nMove Y2 Gonzo Felix\nMove Y2 Robin Felix\nCatastrophe Felix Yellow\n\tts52: It&#39;s always tempting to cause catastrophe as soon as you can\n\n104) Felix: Pass\n\n105) ts52: Sacrifice Y3 Robin\nMove B1 Robin Felix\nMove B2 Robin Felix\nMove B2 Robin Felix\nCatastrophe Felix B\n\n\tFelix: Well done! Great game. You played very well through a half-destroyed homeworld\n\tts52: Thanks! A very good game. My only hope after you knocked out half my homeworld was keeping you from getting yellow.\n\nHomeworlds Online (SDG# 34560)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.9.16, Ended: 2018.10.25\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: H B3 Y2 G3\n\n2) dlwillson: H Y3 R2 G3 *\n\tFelix: Hello again :) was this the game you wanted to try a yellow/red homeworld? If so, I can undo and try the same thing\n\n3) Felix: Pass\n\tdlwillson: Uh, woops! I moved before reading! Yes, this is that game, and I forgot to mark it unranked so I&#39;ll probably be giving up a few points on the experiment. :-)\r\n\r\nIt&#39;s good to see you!\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I will happily drain one turn to offset your disadvantage!\r\n\r\nLikewise. Always a pleasure. How did code camp go? Did that already happen?\n\n5) Felix: B G1 Felix\n\tdlwillson: That kind of invalidates the test, but I&#39;ll take it, and we&#39;ll see what happens!\r\n\r\nDevOps Camp went well. I haven&#39;t gone through the feedbacks yet, but from my perspective, it was surprisingly packed with good learning. So much Kubernetes, and way more AWS CloudFormation than I could possibly want, but the campers seemed happy with it.\n\n6) dlwillson: D G1 Dlwillson B1 Sea\n\tFelix: We&#39;ll, now it&#39;s really just more as if you just moved first. \r\n\r\nAnd good! Glad to hear it!\n\n7) Felix: Trade G1 B1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: B G1 Felix\n\n10) dlwillson: B G2 Sea\n\n11) Felix: Build B1 Felix\n\n12) dlwillson: B G2 Dlwillson\n\n13) Felix: D G1 Felix Y1 Out\n\n14) dlwillson: M G1 Dlwillson Out\n\n15) Felix: Build G2 Out\n\n16) dlwillson: S G2 Sea\nB G2 Out\nB G3 Sea\nC Out G\n\n17) Felix: Discover B1 Felix G1 Out\n\n18) dlwillson: T G1 Y1 Sea\n\tFelix: Huh, this actually isn&#39;t working out too badly for you so far.\n\tdlwillson: I was thinking the same thing! But, I am having some trouble getting any other colors...\r\n\r\nAlso, I accidentally made the universe small. OOPS!\n\n19) Felix: Build B2 Out\n\n20) dlwillson: B G1 Sea\n\n21) Felix: Trade B2 Y2 Out\n\n22) dlwillson: Trade G1 R1 Sea\n\n23) Felix: Trade B1 R1 Felix\n\n24) dlwillson: S G2 Dlwillson\nB Y1 Sea\nB G1 Sea\n\n25) Felix: B B1 Out\n\n26) dlwillson: T G3 B3 Sea\n\n27) Felix: B B2 Out\n\n28) dlwillson: M B3 Sea Dlwillson\n\n29) Felix: Discover B1 Out G3 Center\n\n30) dlwillson: B G1 Sea\n\n31) Felix: Trade B2 R2 Out\n\n32) dlwillson: B G2 Dlwillson\n\n33) Felix: Build G2 Felix\n\n34) dlwillson: T G3 Y3 Dlwillson\n\n35) Felix: Move G2 Felix Sea\n\n36) dlwillson: B G2 Sea\nC Sea G\n\n37) Felix: Build B2 Out\n\n38) dlwillson: M Y3 Dlwillson Out\n\n39) Felix: Build Y1 Out\n\n40) dlwillson: S R1 Sea\nA R2 Out\n\n41) Felix: Sacrifice R1 Felix\nAttack R2 Out\n\n42) dlwillson: S G2 Dlwillson\nB Y2 Out\nB Y3 Sea\nC Out Y\n\n43) Felix: Trade B2 Y2 Out\n\tdlwillson: I am unhappy with that result. &gt;:-|\n\n44) dlwillson: T Y1 G1 Sea\n\n45) Felix: Build B2 Out\n\n46) dlwillson: B G1 Sea\n\n47) Felix: Move B1 Out Felix\n\n48) dlwillson: B G2 Sea\n\n49) Felix: Build B2 Out\n\tDraw5PlayAll: Use the system console. Type in the chat\r\n~variant add Unrated\n\tdlwillson: Ooh, that&#39;s cool!\n\tFelix: Whoops :) Can&#39;t figure out how to vote &#39;yes&#39;\n\n50) dlwillson: M G2 Sea Dlwillson\n\tdlwillson: Shit. Neither can I.\n\n51) Felix: Build B2 Out\n\n52) dlwillson: B B3 Dlwillson\n\tdlwillson: So, what was the syntax?\n\n53) Felix: Sacrifice Y2 Out\nMove B2 Out Dlwillson\nMove B2 Out Dlwillson\nCatastrophe Dlwillson Blue\n\tFelix: It actually only let me do it from my home page. Go to the My SDG link and there should be a notification there that you have a pending console request\n\n54) dlwillson: Trade Y3 B3 Sea\n\n55) Felix: Build B2 Out\n\tdlwillson: But, it doesn&#39;t go away. Huh.\n\tFelix: I think because I opened a request too. Must be a bug\n\n56) dlwillson: M G1 Sea Felix\n\n57) Felix: Trade B1 R1 Felix\n\n58) dlwillson: B G2 Felix\n\n59) Felix: Trade G3 Y3 Felix\n\n60) dlwillson: T G2 Y2 Felix\n\n61) Felix: Trade Y3 R3 Felix\n\n62) dlwillson: S B3 Sea\nT Y2 R2 Felix\nT G1 R1 Felix\nC Felix R\nPass\n\tdlwillson: GG!\n\tdlwillson: Do you want to do this one again, but in a large universe? I think maybe the red/yellow system would be a worse problem in a larger universe.\n\tFelix: Oh wow, did not see that coming at ALL. Good move. I should have been a lot more careful. I was being too laidback this whole game :) I&#39;m certainly game to do it again. \n\n\nHomeworlds Online (SDG# 34559)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.16, Ended: 2018.10.5\nParticipants: Laurie_Menke (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: Hi! For the record, this game is for the tournament. Good luck!\n\n2) Laurie_Menke: Homeworld R3 B1 G3\n\tLaurie_Menke: Good luck to you, too!  :)\n\n3) Babamots: Build G1 Babamots\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Babamots: Build Y1 Babamots\n\n8) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tLaurie_Menke: Wow... I can&#39;t believe I screwed myself that badly right off the bat! ::sigh::  Hopefully I can recover...\n\n9) Babamots: Discover Y1 Babamots G3 Cardassia\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: A Star Trek fan, I see!  :)\n\n11) Babamots: Build Y2 Babamots\n\n12) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\tBabamots: Yep, I love to rewatch TNG and DS9. And they have lots of Trek worlds to choose for system names.\n\tLaurie_Menke: Tis true!  :)\n\n13) Babamots: Discover Y1 Babamots G3 Rubicun\n\n14) Laurie_Menke: Discover R1 Laurie_menke G2 Green\n\n15) Babamots: Build G1 Babamots\n\n16) Laurie_Menke: Build G2 Laurie_menke\n\n17) Babamots: Sacrifice G3 Babamots\nBuild Y2 Cardassia\nBuild G2 Babamots\nBuild G3 Babamots\n\n18) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n19) Babamots: Sacrifice G3 Babamots\nBuild Y2 Cardassia\nBuild Y3 Rubicun\nBuild Y3 Babamots\n\n20) Laurie_Menke: Build R1 Green\n\n21) Babamots: Trade G2 R2 Babamots\n\n22) Laurie_Menke: Build B1 Laurie_menke\n\n23) Babamots: Build G1 Babamots\n\n24) Laurie_Menke: Trade B1 R1 Laurie_menke\n\n25) Babamots: Move R2 Babamots Cardassia\n\n26) Laurie_Menke: Build R2 Green\n\n27) Babamots: Move Y3 Rubicun Green\n\n28) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove R1 Green Rubicun\nMove G1 Laurie_menke Green\nDiscover G1 Green Y3 Yellow\n\n29) Babamots: Move Y3 Green Laurie_menke\n\tLaurie_Menke: Well, now you&#39;re just taunting me!  ;)  ;)  ;)\n\n30) Laurie_Menke: Attack Y1 Rubicun\n\tBabamots: I&#39;ll admit that I made that last move more because it was interesting than because it was the very best.\n\n31) Babamots: Attack G2 Laurie_menke\n\n32) Laurie_Menke: Sacrifice G1 Yellow\nBuild B1 Laurie_menke\n\n33) Babamots: Trade G2 B2 Laurie_menke\nCatastrophe Laurie_menke B\n\n34) Laurie_Menke: Move Y1 Rubicun Babamots\nCatastrophe Babamots Y\n\n35) Babamots: Attack R1 Laurie_menke\n\tLaurie_Menke: Oops... didn&#39;t see that one coming...\n\tLaurie_Menke: Well, I&#39;ll have a little fun before you  kill me.  ;)  Congrats, Babamots!  Good game!  :)\n\n\tBabamots: Good game! You can signal your ships that as many of them as surrender will be shown mercy.\n\tLaurie_Menke: LOL! My ships thank you!  ;)\n\nHomeworlds Online (SDG# 34563)\nVariants: &quot;Unrated&quot;\nStarted: 2018.9.17, Ended: 2018.11.13\nParticipants: mneme (S), Draw5PlayAll (N)\nWinner: mneme\n\n1) Draw5PlayAll: Pass\nPass\nPass\nPass\nPass\n\n2) mneme: Homeworld B3 R2 G3\n\tmneme: FWIW, I don&#39;t think passing is a valid move on the opening turn.\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\n4) mneme: Build G1 Mneme\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) mneme: Build G1 Mneme\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) mneme: Trade G1 R1 Mneme\n\n11) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n12) mneme: Build R2 Mneme\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) mneme: Discover R1 Mneme B1 Melpomene\n\n15) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n16) mneme: Build Y1 Mneme\n\n17) Draw5PlayAll: Discover R1 Draw5playall G3 Economic\n\n18) mneme: Move Y1 Mneme Melpomene\n\n19) Draw5PlayAll: Move Y2 Draw5playall Economic\n\n20) mneme: Build G1 Mneme\n\n21) Draw5PlayAll: Build Y2 Economic\n\n22) mneme: Discover Y1 Melpomene B3 Clio\n\n23) Draw5PlayAll: Move Y2 Economic Melpomene\n\n24) mneme: Move G3 Mneme Melpomene\n\n25) Draw5PlayAll: Move Y2 Melpomene Clio\n\n26) mneme: Sacrifice G3 Melpomene\nBuild Y2 Clio\nBuild Y3 Clio\nBuild Y3 Mneme\nCatastrophe Clio Y\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) mneme: Discover R2 Mneme G1 Erato\n\n29) Draw5PlayAll: Build Y1 Economic\n\n30) mneme: Move Y1 Mneme Erato\n\n31) Draw5PlayAll: Discover G1 Draw5playall B3 Strange\n\n32) mneme: Build G2 Mneme\n\n33) Draw5PlayAll: Build G2 Draw5playall\n\n34) mneme: Move G2 Mneme Melpomene\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Strange\n\n36) mneme: Build Y2 Mneme\n\n37) Draw5PlayAll: Discover G2 Draw5playall Y3 Escape\n\n38) mneme: Build R2 Erato\n\n39) Draw5PlayAll: Build R3 Economic\n\n40) mneme: Build R3 Melpomene\n\n41) Draw5PlayAll: Discover R1 Economic B1 Trial\n\n42) mneme: Build R3 Erato\n\n43) Draw5PlayAll: Sacrifice Y2 Economic\nMove R1 Trial Escape\nMove R1 Escape Erato\nCatastrophe Erato Red\n\n44) mneme: Move Y2 Mneme Melpomene\n\n45) Draw5PlayAll: Trade G2 B2 Draw5playall\n\n46) mneme: Build G2 Mneme\n\n47) Draw5PlayAll: Move B2 Draw5playall Economic\n\n48) mneme: Discover G2 Melpomene Y3 Terpsichore\n\n49) Draw5PlayAll: Build Y2 Economic\n\n50) mneme: Sacrifice G2 Terpsichore\nBuild Y2 Melpomene\nBuild Y3 Erato\n\n51) Draw5PlayAll: Sacrifice G2 Escape\nBuild G2 Draw5playall\nBuild Y3 Draw5playall\n\n52) mneme: Trade Y2 G2 Melpomene\n\n53) Draw5PlayAll: Build B1 Economic\n\n54) mneme: Trade G2 B2 Mneme\n\n55) Draw5PlayAll: Move Y1 Draw5playall Strange\n\n56) mneme: Discover Y1 Erato R3 Urania\n\n57) Draw5PlayAll: Build Y2 Strange\n\n58) mneme: Move B2 Mneme Erato\n\n59) Draw5PlayAll: Build R1 Economic\n\n60) mneme: Build B1 Erato\n\n61) Draw5PlayAll: Discover B1 Economic G2 Fort\n\n62) mneme: Trade B2 R2 Erato\n\n63) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B2 Economic\nBuild B3 Fort\nBuild G3 Draw5playall\n\n64) mneme: Build R2 Erato\n\n65) Draw5PlayAll: Move R1 Economic Fort\n\tDraw5PlayAll: ...is this for the tournament or not?\n\tmneme: Nope.  Tournament games should be hard time and I&#39;d be dead.\n\n66) mneme: Move R3 Melpomene Urania\n\n67) Draw5PlayAll: Move Y1 Economic Fort\n\n68) mneme: Pass\n\tDraw5PlayAll: I offer to offer to offer to offer to offer to ... (x86) offer to offer a draw.\n\n69) Draw5PlayAll: Pass\n\tmneme: Yeah, this is ugly.  Things might have been different had I killed your red two turns ago, but as it is I&#39;m going to be hardpressed to take advantage of my R advantage, while you&#39;re going to find it pretty hard to reach my home system.\r\n\r\nPartially so I can free up some mental space for starting my last sets of tournament games, accepted.\n\n70) mneme: Pass\n\tmneme: pass is specifically for the purpose of offering back the draw; if you want to instead continue tell me and I&#39;ll undo it and move g2 to urania\n\n\tmneme: Good game.  I&#39;m still curious as to how it would have gone had I blown up your R3 when I had a chance, but overall it was a delightful mess.\n\nHomeworlds Online (SDG# 34566)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.17, Ended: 2018.10.3\nParticipants: eliscinsky (S), Babamots (N)\nWinner: eliscinsky\n\n1) Babamots: Homeworld B3 Y1 G3\n\tBabamots: For the record, this is for the tournament. I hear you found a fantastic teacher. Let&#39;s see whether he&#39;s got you up to snuff :-P.\n\n2) eliscinsky: H Y2 B1 G3\n\teliscinsky: Yes, for all the marbles. I&#39;ve been trained up, and I feel confident. Let the game begin.  Good luck! \n\n3) Babamots: Build G1 Babamots\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) eliscinsky: T G1 Y1 Eliscinsky\n\n7) Babamots: Build Y2 Babamots\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\tBabamots: Any time is fine. I&#39;ll focus better at work if I don&#39;t have games to check on :-D.\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) Babamots: Trade Y1 R1 Babamots\n\n10) eliscinsky: Trade Y1 R1 Eliscinsky\n\n11) Babamots: Build G1 Babamots\n\teliscinsky: Tit for tat, Mirror - mirror!  LOL\n\tBabamots: Mirroring is often a safe way to get yourself to the mid-game, or maybe the late-early-game.\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Babamots: Trade G1 B1 Babamots\n\teliscinsky: I think in a few rounds there will be a divergence. But for now...\n\n14) eliscinsky: Trade G1 B1 Eliscinsky\n\n15) Babamots: Build B2 Babamots\n\n16) eliscinsky: Build B2 Eliscinsky\n\n17) Babamots: Build G1 Babamots\n\tBabamots: Next game, I&#39;m making you go first. :-P\n\n18) eliscinsky: B G1 Eliscinsky\n\n19) Babamots: Discover Y2 Babamots G2 Orion\n\n20) eliscinsky: D B2 Eliscinsky G3 Eden\n\n21) Babamots: Move B1 Babamots Orion\n\n22) eliscinsky: M Y2 Eliscinsky Eden\n\n23) Babamots: Discover B2 Babamots R2 Cardassia\n\n24) eliscinsky: T B1 Y1 Eliscinsky\n\n25) Babamots: Move G1 Babamots Cardassia\n\n26) eliscinsky: B R1 Eliscinsky\n\n27) Babamots: Build R2 Babamots\n\n28) eliscinsky: Trade B2 R2 Eden\n\n29) Babamots: Move R1 Babamots Orion\n\n30) eliscinsky: T R1 B1 Eliscinsky\n\n31) Babamots: Build B2 Orion\n\n32) eliscinsky: Move B1 Eliscinsky Eden\n\teliscinsky: It&#39;s getting very interesting,  don&#39;t you think? \n\n33) Babamots: Discover B2 Orion Y3 Bajor\n\tBabamots: Yes, I think it&#39;s gotten more interesting.\n\n34) eliscinsky: M G1 Eliscinsky Eden\n\n35) Babamots: Sacrifice G3 Babamots\nBuild B2 Cardassia\nBuild B3 Bajor\nBuild B3 Orion\n\n36) eliscinsky: B R1 Eden\n\n37) Babamots: Build R3 Orion\n\n38) eliscinsky: B R3 Eliscinsky\n\n39) Babamots: Move B3 Orion Eden\n\n40) eliscinsky: S Y2 Eden\nM R1 Eden Orion\nM R2 Eden Orion\nC Orion Red\n\n41) Babamots: Trade B3 R3 Eden\n\n42) eliscinsky: Build G1 Eden\n\n43) Babamots: Build B3 Orion\n\n44) eliscinsky: Build G2 Eden\nCatastrophe Eden Green\n\teliscinsky: So let me get this right.  In the Eden system I have the TRADE economy, and you being in the system can also use &quot;my&quot; trading ability?\n\tBabamots: No, I can&#39;t trade in Eden anymore. But I could trade in Eden on my last turn because my ship was blue.\n\tBabamots: For a &quot;free&quot; (non-sacrifice) action you can only use the powers of your own ships and of the system marker(s).\n\teliscinsky: Okay, I see. I was over looking that your ship WAS a blue to start. Thanks for the clarification. \n\n45) Babamots: Build Y1 Orion\n\n46) eliscinsky: Discover Y1 Eliscinsky Y3 Sol\n\n47) Babamots: Build B1 Orion\n\n48) eliscinsky: Trade G3 Y3 Eliscinsky\n\n49) Babamots: Trade B3 G3 Bajor\n\n50) eliscinsky: Sacrifice Y3 Eliscinsky\nMove R3 Eliscinsky Sol\nMove R3 Sol Orion\nMove R3 Orion Babamots\n\n51) Babamots: Sacrifice Y2 Orion\nMove B3 Orion Babamots\nMove G1 Cardassia Babamots\n\n52) eliscinsky: A R2 Babamots\n\n53) Babamots: Sacrifice G3 Bajor\nBuild B3 Babamots\nBuild G1 Babamots\nBuild G1 Babamots\n\n54) eliscinsky: Sacrifice R2 Babamots\nAttack B3 Babamots\nAttack B3 Babamots\n\teliscinsky: When I used to play poker with my developer friends at dev conferences they called me &quot;Captain Chaos&quot;.\r\n\r\nGuess that&#39;s how I roll.  LOL\n\tBabamots: Oops, shoot. I was trying to play Terraria at the same time. Looks like that was a bad idea :-P.\n\n55) Babamots: Sacrifice B1 Orion\nTrade G1 B1 Babamots\nCatastrophe Babamots B\n\n56) eliscinsky: Attack G1 Babamots\n\teliscinsky: I&#39;ll take whatever help I can get. ;)\n\n57) Babamots: Pass\n\n58) eliscinsky: Attack G1 Babamots\n\n\teliscinsky: PASS! But we could have gone on for at least 3-4 rounds. :-D\n\tBabamots: It was getting depressing :-P.\n\tBabamots: Well played. You saw your chance and didn&#39;t hesitate.\n\teliscinsky: I CANNOT  BELIEVE I WON! WA-HOO! (sorry)\r\nYou&#39;re my 1st (true) win, ever. Hmmm makes me wonder.  But what a confidence boost. Thank you so much for the game. Good luck in the finals of the tournament.  I&#39;m sure you&#39;ll do well there.\r\n\r\nSo in terms of scoring, do I get bonus points for beating someone who has beaten so many others?  Kind of like HS Football, where the winning team gets points for the win, AND gets a bonus point for each team the loser has beaten.  Just thinking.\n\tBabamots: In the tournament rules, it says each win has equal weight. In the registration survey, I suggested using PageRank for scoring (which would give more weight to wins against strong opponents like you suggest), but quite a few people didn&#39;t like that idea. Now if I lose to Felix, there&#39;s likely to be a two- or even three-way tie for high score. You&#39;ve put the pressure on me!\r\n\r\nI feel pretty silly for losing that way, but I&#39;m also kind of glad for you. It&#39;s nice to get an unexpected win. Go ahead and revel.\n\tDraw5PlayAll: So if there is a tie then we should have a showdown round robin among the tied players. All games must be played simultaneously. Muha.\n\nHomeworlds Online (SDG# 34565)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.18, Ended: 2018.10.2\nParticipants: eliscinsky (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R1 B2 G3\n\n2) eliscinsky: Homeworld Y1 B3 G3\n\n3) ajo: Build G1 Ajo\n\n4) eliscinsky: B G1 Eliscinsky\n\teliscinsky: This game is for the tournament.\r\nGood luck. \n\n5) ajo: Trade G1 Y1 Ajo\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\tajo: Good luck!\n\n7) ajo: Build Y2 Ajo\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) ajo: Trade Y1 G1 Ajo\n\n10) eliscinsky: T G1 R1 Eliscinsky\n\n11) ajo: Trade G1 R1 Ajo\n\n12) eliscinsky: B R2 Eliscinsky\n\n13) ajo: Build R2 Ajo\n\n14) eliscinsky: B G1 Eliscinsky\n\n15) ajo: Build G1 Ajo\n\n16) eliscinsky: Trade G1 B1 Eliscinsky\n\n17) ajo: Discover R1 Ajo B3 Alpha\n\n18) eliscinsky: D B1 Eliscinsky G2 Earth\n\n19) ajo: Sacrifice G3 Ajo\nBuild R2 Alpha\nBuild R3 Alpha\nBuild R3 Ajo\n\n20) eliscinsky: Move R1 Eliscinsky Earth\n\teliscinsky: That was rather bold!  And very interesting.\n\n21) ajo: Trade R2 G2 Alpha\n\n22) eliscinsky: Build R2 Earth\n\tajo: I have myself been falling prey to that move lately, enough that I&#39;ve noticed and started looking for places to exploit it myself. :)\n\n23) ajo: Trade R3 Y3 Alpha\n\n24) eliscinsky: Trade R2 Y2 Earth\n\n25) ajo: Discover R2 Ajo B3 Beta\n\n26) eliscinsky: B G1 Eliscinsky\n\n27) ajo: Build G1 Alpha\n\n28) eliscinsky: D G1 Eliscinsky B2 Neptune\n\n29) ajo: Sacrifice G2 Alpha\nBuild R2 Alpha\nBuild R3 Beta\n\n30) eliscinsky: B R3 Eliscinsky\n\n31) ajo: Build G2 Alpha\n\n32) eliscinsky: B G2 Neptune\n\n33) ajo: Sacrifice G2 Alpha\nBuild G2 Ajo\nBuild G3 Alpha\n\n34) eliscinsky: T G2 Y2 Neptune\n\tajo: Ping! You undid your last move but didn&#39;t make a new one yet?\n\n35) ajo: Move G3 Alpha Earth\n\n36) eliscinsky: M R1 Earth Beta\n\n37) ajo: Sacrifice R3 Beta\nAttack R1 Beta\nAttack Y2 Earth\nAttack B1 Earth\n\n38) eliscinsky: Move R3 Eliscinsky Neptune\n\n39) ajo: Discover R2 Alpha B2 Gamma\n\n40) eliscinsky: Discover R3 Neptune G3 Eden\n\n41) ajo: Sacrifice G3 Earth\nBuild Y1 Earth\nBuild Y3 Alpha\nBuild R3 Gamma\n\n42) eliscinsky: Build Y3 Neptune\n\n43) ajo: Sacrifice G2 Ajo\nBuild B1 Earth\nBuild B1 Earth\n\n44) eliscinsky: Build G2 Eliscinsky\n\n45) ajo: Sacrifice Y3 Alpha\nMove B1 Earth Eliscinsky\nMove Y1 Earth Eliscinsky\nMove Y2 Earth Eliscinsky\nCatastrophe Eliscinsky Yellow\n\n46) eliscinsky: Sacrifice Y2 Neptune\nMove R2 Eliscinsky Ajo\nMove R3 Eden Ajo\nCatastrophe Ajo Red\n\n47) ajo: Sacrifice Y3 Alpha\nMove B1 Earth Eliscinsky\nMove B1 Earth Eliscinsky\nPass\nCatastrophe Eliscinsky Blue\n\n\tajo: Good game!\n\nHomeworlds Online (SDG# 34564)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.18, Ended: 2018.11.27\nParticipants: ts52 (S), eliscinsky (N)\nWinner: ts52\n\n1) eliscinsky: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) eliscinsky: B G1 Eliscinsky\n\teliscinsky: This game is for the tournament.\n\teliscinsky: Good luck. \n\n4) ts52: Build G1 Ts52\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\tts52: Thanks! Good luck to you too!\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) ts52: Trade G1 B1 Ts52\n\n7) eliscinsky: B G1 Eliscinsky\n\n8) ts52: Build G1 Ts52\n\n9) eliscinsky: T G1 B1 Eliscinsky\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) eliscinsky: B G1 Eliscinsky\n\n12) ts52: Build G1 Ts52\n\n13) eliscinsky: Trade G1 R1 Eliscinsky\n\n14) ts52: Trade G1 R1 Ts52\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) ts52: Build R2 Ts52\n\n17) eliscinsky: Build R2 Eliscinsky\n\n18) ts52: Discover B1 Ts52 G1 Robin\n\n19) eliscinsky: Discover R2 Eliscinsky G3 Earth\n\n20) ts52: Move R2 Ts52 Robin\n\n21) eliscinsky: Move G1 Eliscinsky Earth\n\n22) ts52: Move Y1 Ts52 Robin\n\n23) eliscinsky: M B1 Eliscinsky Earth\n\n24) ts52: Build B1 Robin\n\n25) eliscinsky: Build B2 Earth\n\n26) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Ts52\nBuild R3 Robin\n\n27) eliscinsky: Trade B2 Y2 Earth\n\n28) ts52: Trade R2 G2 Ts52\n\n29) eliscinsky: Build Y1 Earth\n\n30) ts52: Move R3 Robin Earth\n\n31) eliscinsky: Build R2 Earth\n\n32) ts52: Sacrifice R2 Robin\nAttack Y2N Earth\nAttack R2N Earth\n\n33) eliscinsky: Build R2 Earth\nCatastrophe Earth Red\n\n34) ts52: Sacrifice B1 Robin\nTrade Y2 R2 Earth\n\n35) eliscinsky: Build G1 Earth\n\n36) ts52: Attack Y1N Earth\n\n37) eliscinsky: Build G2 Earth\nCatastrophe Earth Green\n\n38) ts52: Build R2 Ts52\n\n39) eliscinsky: B G1 Eliscinsky\n\n40) ts52: Build B1 Robin\n\n41) eliscinsky: Trade G1 B1 Eliscinsky\n\n42) ts52: Trade R2 Y2 Ts52\n\n43) eliscinsky: B G1 Eliscinsky\n\n44) ts52: Build B2 Robin\n\n45) eliscinsky: Build R2 Eliscinsky\n\n46) ts52: Trade B2 R2 Robin\n\n47) eliscinsky: Discover R2 Eliscinsky G3 Andor\n\n48) ts52: Discover B1 Robin Y3 Bigbird\n\n49) eliscinsky: Move B1 Eliscinsky Andor\n\n50) ts52: Build R2 Robin\n\n51) eliscinsky: Build R3 Andor\n\n52) ts52: Build R3 Ts52\n\n53) eliscinsky: Sacrifice Y1 Eliscinsky\nMove R3 Andor Robin\n\n54) ts52: Move R1 Ts52 Robin\nCatastrophe Robin R\n\n55) eliscinsky: T G1 Y1 Eliscinsky\n\n56) ts52: Move R3 Ts52 Robin\n\n57) eliscinsky: B B2 Andor\n\n58) ts52: Sacrifice G2 Ts52\nBuild B3 Bigbird\nBuild B3 Robin\n\n59) eliscinsky: Trade B2 Y2 Andor\n\n60) ts52: Trade Y2 G2 Ts52\n\n61) eliscinsky: Discover R2 Andor G1 Pea\n\n62) ts52: Move R3 Robin Andor\n\n63) eliscinsky: Move B1 Andor Robin\n\n64) ts52: Attack Y2N Andor\n\n65) eliscinsky: Sacrifice R2 Pea\nAttack B1 Robin\nAttack Y1 Robin\n\n66) ts52: Trade B3 R3 Robin\n\n67) eliscinsky: Trade B1 R1 Robin\n\n68) ts52: Attack R1N Robin\n\n69) eliscinsky: Move B1 Robin Bigbird\n\n70) ts52: Attack Y1N Robin\n\n71) eliscinsky: Discover B1 Bigbird G1 Orion\n\n72) ts52: B R2 Andor\n\n73) eliscinsky: Build B1 Orion\n\n74) ts52: Move R3 Andor Orion\n\n75) eliscinsky: Sacrifice Y1 Eliscinsky\nMove B1 Orion Ts52\n\n76) ts52: Attack B1N Ts52\n\n\teliscinsky: ts52 I really see no way of coming back from this position. So I&#39;ll save us a dozen moves and end it now.\n\tts52: Fair enough. Thanks for the game!\n\nHomeworlds Online (SDG# 34570)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.18, Ended: 2018.10.28\nParticipants: Draw5PlayAll (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tTrydnt: tournament game marker\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Trydnt: Build R1 Trydnt\n\n8) Draw5PlayAll: Build Y1 Draw5playall\n\n9) Trydnt: Build R2 Trydnt\n\tDraw5PlayAll: The next 3 moves will follow a predictable pattern\n\n10) Draw5PlayAll: Build Y2 Draw5playall\n\n11) Trydnt: Discover R1 Trydnt Y3 Y3\n\n12) Draw5PlayAll: Discover Y1 Draw5playall G2 Epa\n\n13) Trydnt: Discover R1 Trydnt Y3 Why3\n\n14) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Epa\nBuild Y2 Epa\nBuild Y3 Draw5playall\n\n15) Trydnt: Build R2 Trydnt\n\tDraw5PlayAll: I think we might be in a trade war\n\n16) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\tTrydnt: it&#39;s a possibility\n\n17) Trydnt: Trade R2 Y2 Trydnt\n\n18) Draw5PlayAll: Sacrifice B2 Draw5playall\nTrade Y2 R2 Epa\nTrade Y3 G3 Draw5playall\n\n19) Trydnt: Discover Y2 Trydnt G3 G3\n\tDraw5PlayAll: All my flailing has resulted in this. I am disappointed.\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Trydnt: Build G1 Trydnt\n\n22) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n23) Trydnt: Trade G1 B1 Trydnt\n\n24) Draw5PlayAll: Move B1 Draw5playall Epa\n\n25) Trydnt: Move B1 Trydnt G3\n\n26) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild B1 Epa\n\n27) Trydnt: Build B2 G3\n\n28) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\tDraw5PlayAll: Here I go again, temporarily stealing all yellow\n\n29) Trydnt: Build Y1 G3\n\tTrydnt: not all\n\n30) Draw5PlayAll: Build G1 Draw5playall\n\n31) Trydnt: Discover B2 G3 G2 G2\n\n32) Draw5PlayAll: Discover G1 Draw5playall B2 Nafta\n\tDraw5PlayAll: No one has gotten a large yet\n\n33) Trydnt: Build B3 G2\n\n34) Draw5PlayAll: Build G1 Nafta\n\n35) Trydnt: Build B3 G3\n\n36) Draw5PlayAll: Discover Y2 Epa G3 Esa\n\n37) Trydnt: Move B3 G3 Epa\n\n38) Draw5PlayAll: Sacrifice Y1 Epa\nMove R2 Epa Y3\n\n39) Trydnt: Sacrifice R1 Y3\nAttack B1 Epa\n\n40) Draw5PlayAll: Sacrifice B1 Epa\nTrade G1 B1 Nafta\n\tDraw5PlayAll: Nooooooo! I cannot sac both my greens!\n\n41) Trydnt: Move Y1 G3 Epa\n\n42) Draw5PlayAll: Build Y1 Esa\n\n43) Trydnt: Move R1 Why3 Epa\n\n44) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n45) Trydnt: Trade B3 Y3 G2\n\tDraw5PlayAll: I am getting bad at this game\n\n46) Draw5PlayAll: Build B3 Nafta\n\n47) Trydnt: Move B1 G3 Nafta\nCatastrophe Nafta B\n\n48) Draw5PlayAll: Build Y2 Draw5playall\n\n49) Trydnt: Build B1 G2\n\n50) Draw5PlayAll: Build G1 Draw5playall Q\n\n51) Trydnt: Build G1 Trydnt\n\n52) Draw5PlayAll: Build G2 Draw5playall\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild B1 G2\nBuild B2 Epa\nBuild G3 Trydnt\n\n54) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G2 Draw5playall Y2 What\nMove R2 Draw5playall What\n\n55) Trydnt: Trade B3 R3 Epa\n\n56) Draw5PlayAll: Sacrifice G2 What\nBuild R1 Y3\nBuild R3 What\n\n57) Trydnt: Build R3 Trydnt\n\n58) Draw5PlayAll: Sacrifice Y2 Esa\nMove R1 Y3 Trydnt\nMove R2 Y3 Trydnt\nCatastrophe Trydnt Red\n\n59) Trydnt: Trade B2 R2 G2\n\n60) Draw5PlayAll: Build G2 Draw5playall\n\n61) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G2\nBuild Y3 G3\n\n62) Draw5PlayAll: Move R3 What Esa\n\n63) Trydnt: Sacrifice Y3 G3\nMove R3 Epa Draw5playall\nMove R1 Epa Draw5playall\nMove B1 G2 Draw5playall\n\n64) Draw5PlayAll: Move R3 Esa Trydnt\n\n65) Trydnt: Sacrifice Y3 G2\nMove R2 G2 Draw5playall\nMove B1 G2 Draw5playall\nMove B1 Epa Draw5playall\nCatastrophe Draw5playall R\nCatastrophe Draw5playall B\n\n\nHomeworlds Online (SDG# 34569)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.18, Ended: 2018.10.10\nParticipants: Trydnt (S), Laurie_Menke (N)\nWinner: Trydnt\n\n1) Laurie_Menke: Homeworld Y3 R1 G3 *\n\tLaurie_Menke: Hi Trydnt! Have fun!  :)\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tLaurie_Menke: Oh... and for the record, this is for the tournament.  :)\n\tTrydnt: Hi Laurie! Good luck. And yes I&#39;ve logged it in the tracker :)\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :)\n\n4) Trydnt: Build G1 Trydnt\n\n5) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Laurie_Menke: Build G1 Blue\n\n8) Trydnt: Build R1 Trydnt\n\n9) Laurie_Menke: Trade G1 B1 Blue\n\n10) Trydnt: Build R2 Trydnt\n\n11) Laurie_Menke: Trade G1 Y1 Blue\n\n12) Trydnt: Discover R2 Trydnt Y3 Y3\n\n13) Laurie_Menke: Move B1 Blue Laurie_menke\n\n14) Trydnt: Trade R1 Y1 Trydnt\n\n15) Laurie_Menke: Build B1 Laurie_menke\n\n16) Trydnt: Build R1 Trydnt\n\n17) Laurie_Menke: Build G1 Laurie_menke\n\n18) Trydnt: Build Y2 Trydnt\n\n19) Laurie_Menke: Move G1 Laurie_menke Blue\n\n20) Trydnt: Discover Y2 Trydnt G3 G3\n\n21) Laurie_Menke: Build Y2 Blue\n\n22) Trydnt: Move R2 Y3 Blue\n\n23) Laurie_Menke: Sacrifice Y2 Blue\nMove Y1 Blue Laurie_menke\nMove G1 Blue Laurie_menke\n\n24) Trydnt: Build R2 Trydnt\n\n25) Laurie_Menke: Build Y2 Laurie_menke\n\n26) Trydnt: Build G1 Trydnt\n\n27) Laurie_Menke: Discover Y1 Laurie_menke G2 Green\n\n28) Trydnt: Sacrifice G1 Trydnt\nBuild R2 Blue\n\n29) Laurie_Menke: Build Y2 Green\n\n30) Trydnt: Build Y3 G3\n\n31) Laurie_Menke: Build Y3 Green\n\n32) Trydnt: Move Y2 G3 Green\nCatastrophe Green Y\n\n33) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n34) Trydnt: Sacrifice Y3 G3\nMove R2 Blue Laurie_menke\nMove R2 Blue Laurie_menke\nCatastrophe Laurie_menke R\nMove Y1 Trydnt Laurie_menke\n\n35) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n36) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 Laurie_menke\nBuild Y2 Laurie_menke\nBuild Y2 Laurie_menke\nCatastrophe Laurie_menke Y\n\n\tTrydnt: no it&#39;s over\n\tLaurie_Menke: Ah. Right.  Should have seen that!  Congrats and thanks for the fun,  Trydnt! Good luck with the  tournament!  :)\n\tTrydnt: If it didn&#39;t end the game it would have been a terrible move haha thanks for the game :) good luck with the tourney\n\nHomeworlds Online (SDG# 34575)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.18, Ended: 2018.12.5\nParticipants: agentofchaos (S), Laurie_Menke (N)\nWinner: agentofchaos\n\n1) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: Hi agentofchaos! Have fun with the Homeworlds tournament!\n\n2) agentofchaos: Homeworld B2 R1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tagentofchaos: Hi Laurie, have fun too!\n\n4) agentofchaos: Build G1 Agentofchaos\n\tLaurie_Menke: Oops! My bad... this isn&#39;t a tournament game, is it?\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tagentofchaos: No, it&#39;s a ladder challenge - close enough though!\n\tLaurie_Menke: :)  Thanks for accepting my challenge!\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) Laurie_Menke: Build R2 Laurie_menke\n\tagentofchaos: You&#39;re very welcome!\n\n8) agentofchaos: Build R2 Agentofchaos\n\n9) Laurie_Menke: Discover R1 Laurie_menke Y2 Yellow\n\n10) agentofchaos: Trade R1 Y1 Agentofchaos\n\n11) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild R1 Laurie_menke\nBuild R2 Yellow\nBuild R3 Laurie_menke\n\tLaurie_Menke: Sorry for the delay... I&#39;ve been traveling. Will still be slow until Tuesday.  :/\n\n12) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\n\n13) Laurie_Menke: Discover R1 Yellow Y3 Hi\n\tagentofchaos: That&#39;s fine, enjoy your travels!\n\tLaurie_Menke: Thanks! I&#39;m back!  :)\n\n14) agentofchaos: Move R2 Agentofchaos Hi\n\n15) Laurie_Menke: Trade R1 G1 Laurie_menke\n\n16) agentofchaos: Attack R1 Hi\n\n17) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\n18) agentofchaos: Discover Y1 Agentofchaos G3 Playzure\n\n19) Laurie_Menke: Move R2 Yellow Playzure\n\n20) agentofchaos: Discover Y1 Playzure G1 Gripsy\n\n21) Laurie_Menke: Build R1 Playzure\n\n22) agentofchaos: Trade R3 G3 Agentofchaos\n\n23) Laurie_Menke: Build R2 Playzure\n\n24) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Gripsy\nBuild Y3 Gripsy\nBuild Y3 Agentofchaos\n\n25) Laurie_Menke: Build R3 Laurie_menke\n\n26) agentofchaos: Sacrifice Y2 Gripsy\nMove R1 Hi Gripsy\nMove R1 Gripsy Playzure\nCatastrophe Playzure R\n\n27) Laurie_Menke: Sacrifice Y2 Laurie_menke\nDiscover R3 Laurie_menke Y2 Justforasec\nMove R3 Justforasec Hi\n\n28) agentofchaos: Move R2 Hi Gripsy\n\n29) Laurie_Menke: Build G1 Laurie_menke\n\n30) agentofchaos: Trade Y2 G2 Agentofchaos\n\n31) Laurie_Menke: Build G2 Laurie_menke\n\n32) agentofchaos: Build G2 Agentofchaos\n\n33) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild R1 Laurie_menke\nBuild R1 Hi\n\n34) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R2 Gripsy\nBuild Y2 Gripsy\n\n35) Laurie_Menke: Discover G1 Laurie_menke Y2 Poppins\n\n36) agentofchaos: Build Y2 Agentofchaos\n\n37) Laurie_Menke: Build G2 Laurie_menke\n\n38) agentofchaos: Discover Y2 Agentofchaos G3 Wazrom\n\n39) Laurie_Menke: Move R3 Hi Poppins\n\n40) agentofchaos: Build G2 Agentofchaos\n\n41) Laurie_Menke: Move R3 Poppins Wazrom\n\n42) agentofchaos: Discover Y2 Wazrom R2 Deetoo\n\n43) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n44) agentofchaos: Trade G2 B2 Agentofchaos\n\n45) Laurie_Menke: Sacrifice B1 Laurie_menke\nTrade G1 B1 Poppins\n\n46) agentofchaos: Move B2 Agentofchaos Hi\n\n47) Laurie_Menke: Move R1 Hi Agentofchaos\n\tLaurie_Menke: Sorry for the delay, agentofchaos. I was on the road and got behind. My apologies.  :/\n\n48) agentofchaos: Attack R1 Agentofchaos\n\n49) Laurie_Menke: Sacrifice B1 Poppins\nTrade G2 Y2 Laurie_menke\n\tagentofchaos: That&#39;s OK, I was wondering where you were, but the road calls!\n\n50) agentofchaos: Move Y1 Gripsy Deetoo\n\n51) Laurie_Menke: Discover Y2 Laurie_menke G2 Green\n\n52) agentofchaos: Discover Y2 Gripsy B2 Denetor\n\n53) Laurie_Menke: Trade R1 G1 Laurie_menke\n\n54) agentofchaos: Build G1 Agentofchaos\n\n55) Laurie_Menke: Sacrifice Y2 Green\nMove R3 Wazrom Deetoo\nPass\n\n56) agentofchaos: Sacrifice Y3 Gripsy\nMove Y1 Deetoo Laurie_menke\nMove Y2 Deetoo Laurie_menke\nMove Y2 Denetor Laurie_menke\nCatastrophe Laurie_menke Y\n\n57) Laurie_Menke: Build G2 Laurie_menke\n\n58) agentofchaos: Build G2 Agentofchaos\n\n59) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n60) agentofchaos: Move B2 Hi Gripsy\n\tLaurie_Menke: Ack! This is looking very bad.  :/\n\n61) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove R3 Deetoo Gripsy\nMove G1 Laurie_menke Agentofchaos\nCatastrophe Agentofchaos G\n\tLaurie_Menke: No, I guess that move was OK...\n\n62) agentofchaos: S Y3 Agentofchaos\nM R1 Agentofchaos Laurie_menke\nM R2 Gripsy Laurie_menke\nM R2 Gripsy Laurie_menke\nC Laurie_menke R\n\n\tLaurie_Menke: I&#39;m going out, but I&#39;m not going out without a fight!  ;)  Good game, agentofchaos! Thanks for the fun!  :)\n\tagentofchaos: Not the move I expected, but very dramatic all the same! Thanks for a great game!&amp;#128512;\n\tagentofchaos: That last symbol was supposed to be :-)\n\tagentofchaos: That last symbol was supposed to be :-)\n\tLaurie_Menke: :)\n\nHomeworlds Online (SDG# 34568)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.18, Ended: 2018.11.2\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld R2 B3 G3\n\n2) dlwillson: H B3 R1 G3\n\n3) Felix: B G1 Felix\n\tdlwillson: GL&amp;HF, Felix!\n\tFelix: As always, and likewise! Hope it won&#39;t be too confusing to have both of these games going\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\tdlwillson: Not at all! I have about 7 games going. I&#39;m winning some and losing some. :-)\r\n\r\nMy new job starts a week from Monday!\n\n6) dlwillson: T G1 Y1 Dlwillson\n\tFelix: Nice! Congrats on the new job. What is it?\n\tdlwillson: DevOps :-)\n\n7) Felix: Build G1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: Trade G1 R1 Felix\n\tFelix: Very cool. You enjoying it so far?\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\tdlwillson: I love doing DevOps and Infrastructure work. I don&#39;t know yet whether I&#39;ll enjoy it at DaVita. I will withhold judgement until I&#39;ve been on the job for at least a few weeks. Several weeks, if I can manage to stay in learner mode and out of judger mode that long.\n\n12) dlwillson: B R2 Dlwillson\n\n13) Felix: D R1 Felix B1 Splash\n\n14) dlwillson: D R2 Dlwillson G2 Field\n\n15) Felix: S G3 Felix\nB R3 Splash\nB R3 Splash\nB R3 Felix\n\n16) dlwillson: B Y1 Dlwillson\n\n17) Felix: Trade R2 G2 Felix\n\n18) dlwillson: S Y1 Dlwillson\nM R2 Field Splash\nC Splash R\n\n19) Felix: Build G1 Felix\n\n20) dlwillson: B G1 Dlwillson\n\n21) Felix: Trade G1 B1 Felix\n\n22) dlwillson: D G1 Dlwillson B2 Sea\n\n23) Felix: Build Y1 Felix\n\n24) dlwillson: B G1 Dlwillson\n\n25) Felix: Build R1 Felix\n\n26) dlwillson: B Y2 Dlwillson\n\n27) Felix: Discover Y1 Felix G1 Out\n\n28) dlwillson: M R1 Dlwillson Sea\n\n29) Felix: Trade R3 G3 Felix\n\n30) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Sea\nB G3 Dlwillson\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Out\nBuild Y2 Out\n\n32) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB G3 Dlwillson\nB Y3 Dlwillson\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Felix\nBuild Y3 Felix\n\n34) dlwillson: S Y3 Dlwillson\nM Y1 Dlwillson Sea\nM Y1 Sea Out\nM Y1 Out Felix\nC Felix Y\n\n35) Felix: Trade G3 Y3 Felix\n\n36) dlwillson: T G1 Y1 Sea\n\n37) Felix: Move Y1 Out Sea\n\n38) dlwillson: A Y1 Sea\n\n39) Felix: Build G1 Felix\n\n40) dlwillson: D G2 Sea B1 Sky\n\tdlwillson: OK... I guess the only way to see how the trap works is to spring it, so... Here I go!\n\n41) Felix: Discover Y2 Out G3 Foultrain\n\tFelix: I honestly can NOT remember where I was going with that. So... your guess is as good as mine on what the trap was :)\n\n42) dlwillson: M Y1 Sea Sky\n\n43) Felix: Sacrifice G2 Felix\nBuild Y1 Foultrain\nBuild Y3 Felix\n\n44) dlwillson: S G3 Dlwillson\nB G2 Sky\nB G3 Sea\nB Y3 Sky\n\n45) Felix: Move R1 Felix Out\n\n46) dlwillson: S Y3 Sky\nM Y1 Sea Sky\nM Y1 Sky Felix\nM Y1 Sky Felix\nC Felix Y\n\n47) Felix: Build R2 Out\n\n48) dlwillson: S Y2 Dlwillson\nM G2 Sky Felix\nD G3 Sea Y1 Sol\n\n\tFelix: Well done :)\n\tdlwillson: TY! Good game!\n\nHomeworlds Online (SDG# 34567)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.19, Ended: 2018.10.28\nParticipants: DodoBirb (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tTrydnt: http://superdupergames.org/?page=archive_play&amp;gid=34496&amp;idx=37\r\n\r\nhere&#39;s the old game so we can reference it more easily\n\tTrydnt: homeworld b2 y1 g3\n\n2) DodoBirb: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) DodoBirb: Build G1 Dodobirb\n\tBabamots: For the record, this game is for the tournament. It is replacing a game that could not be continued on SDG because of the site&#39;s incorrect implementation of the rules. The link Trydnt posted shows the original game after the first 38 moves (19 each). The plan is to recreate that position in this game (rather than playing strategically) and then resume normal play for a tournament result.\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\tTrydnt: I&#39;m gonna build a ton of yellow and then move them into position\n\n7) Trydnt: Build Y2 Trydnt\n\tDodoBirb: I&#39;ll build my yellows as well\n\n8) DodoBirb: Build Y2 Dodobirb\n\n9) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Trydnt\nBuild Y3 Trydnt\nBuild Y3 Trydnt\n\n10) DodoBirb: Build G1 Dodobirb\n\tTrydnt: it looks so wrong haha\n\n11) Trydnt: Discover Y3 Trydnt B3 Bigblue\n\tDodoBirb: I&#39;m going to get some red now.\n\tDodoBirb: I was so tempted to catastrophe your system.\n\n12) DodoBirb: Discover Y2 Dodobirb G2 Transition\n\tBabamots: I came to check on your progress, and all that yellow made me double-take.\n\n13) Trydnt: Discover Y3 Trydnt G3 G3\n\tDodoBirb: Just making that g2 so I can move to BigBlue\n\n14) DodoBirb: Move Y2 Transition Bigblue\n\n15) Trydnt: Discover Y2 Trydnt G3 Transitiong2\n\n16) DodoBirb: Trade G1 R1 Dodobirb\n\n17) Trydnt: Trade Y1 G1 Trydnt\n\n18) DodoBirb: Build G1 Dodobirb\n\n19) Trydnt: Build Y1 G3\n\tDodoBirb: Building the g1 so I can factory up to an r3\n\n20) DodoBirb: Sacrifice G3 Dodobirb\nBuild G1 Dodobirb\nBuild G2 Dodobirb\nBuild G2 Dodobirb\n\n21) Trydnt: Discover Y2 Transitiong2 G2 G2\n\n22) DodoBirb: Build G3 Dodobirb\n\n23) Trydnt: Trade Y2 B2 Trydnt\n\n24) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild R1 Dodobirb\nBuild R1 Dodobirb\n\n25) Trydnt: Build B1 Trydnt\n\n26) DodoBirb: Sacrifice G3 Dodobirb\nBuild R2 Dodobirb\nBuild R2 Dodobirb\nBuild G3 Dodobirb\n\n27) Trydnt: Build G3 Trydnt\n\n28) DodoBirb: Sacrifice G3 Dodobirb\nBuild R2 Dodobirb\nBuild R3 Dodobirb\nBuild G3 Dodobirb\n\n29) Trydnt: Trade G3 R3 Trydnt\n\n30) DodoBirb: Sacrifice R2 Dodobirb\nPass\nPass\n\n31) Trydnt: Move B1 Trydnt G3\n\n32) DodoBirb: Sacrifice R2 Dodobirb\nPass\nPass\n\n33) Trydnt: Build B1 G3\n\tDraw5PlayAll: What the...\n\n34) DodoBirb: Sacrifice G2 Dodobirb\nPass\nPass\n\tTrydnt: need small red and medium green to make next system\n\tTrydnt: 2 small reds too\n\n35) Trydnt: Discover B1 G3 G2 Grass\n\n36) DodoBirb: Sacrifice R1 Dodobirb\nPass\nPass\n\n37) Trydnt: Build R1 Trydnt\n\n38) DodoBirb: Sacrifice R1 Dodobirb\nPass\n\n39) Trydnt: Move R3 Trydnt G3\n\n40) DodoBirb: Sacrifice R1 Dodobirb\nPass\n\n41) Trydnt: Move R3 G3 Grass\n\n42) DodoBirb: Discover R3 Dodobirb B2 Halfblue\n\n43) Trydnt: Sacrifice G1 Trydnt\nBuild R1 Grass\n\tDraw5PlayAll: Where do all those greens go?\n\tDodoBirb: Nowhere. I&#39;m getting rid of them.\n\n44) DodoBirb: Sacrifice G2 Dodobirb\nPass\nPass\n\n45) Trydnt: Sacrifice B2 Trydnt\nPass\nPass\n\tTrydnt: nearly there. I&#39;ll sac b2 in hw then grow it in g3 then sac the b1 and I&#39;ll be all set up as it was\n\n46) DodoBirb: Sacrifice G1 Dodobirb\nPass\n\n47) Trydnt: Build B2 G3\n\n48) DodoBirb: Sacrifice G1 Dodobirb\nPass\n\n49) Trydnt: Sacrifice B1 G3\nPass\n\n50) DodoBirb: Sacrifice R2 Dodobirb\nPass\nPass\n\n51) Trydnt: Sacrifice R1 Grass\nAttack Y2 Bigblue\n\n52) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: I think it&#39;s set up now\n\tTrydnt: I believe so\n\n53) Trydnt: Trade Y3 G3 Bigblue\n\n54) DodoBirb: Move G1 Dodobirb Halfblue\n\n55) Trydnt: Build G1 Bigblue\n\n56) DodoBirb: Build R1 Halfblue\n\n57) Trydnt: Sacrifice G3 Bigblue\nBuild Y2 G2\nBuild Y3 Bigblue\nBuild Y3 Bigblue\n\n58) DodoBirb: Build G1 Dodobirb\n\n59) Trydnt: Discover Y2 G2 B1 B1\n\n60) DodoBirb: Move Y1 Dodobirb Halfblue\n\n61) Trydnt: Build B3 G3\n\n62) DodoBirb: Trade R3 B3 Halfblue\n\n63) Trydnt: Move Y3 Bigblue Grass\n\n64) DodoBirb: Build G2 Halfblue\n\n65) Trydnt: Build G3 Bigblue\n\tDodoBirb: Not much I can do\n\n66) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild R1 Halfblue\nBuild R2 Halfblue\n\n67) Trydnt: Sacrifice G3 Bigblue\nBuild G3 Bigblue\nBuild R2 Grass\nBuild R2 Grass\n\tTrydnt: you could have moved your y1 to bigblue and blown up a large amount of my yellow \n\tTrydnt: would have left you with no yellow but could trade for it next turn and get a y3 which would have let you access my hw\n\tDodoBirb: Huh, I didn&#39;t see that move. My brain sort of forgot what I was moving the y1 to HalfBlue for.\n\n68) DodoBirb: Discover R1 Halfblue R3 Bigred\n\tDodoBirb: I was sort of just trying to avoid having a catastrophe. Maybe I should go for more of them.\n\n69) Trydnt: Sacrifice Y3 G3\nMove R2 Grass Dodobirb\nMove R2 Grass Dodobirb\nMove R3 Grass Dodobirb\nCatastrophe Dodobirb R\n\n70) DodoBirb: Trade B3 Y3 Halfblue\n\n71) Trydnt: Sacrifice Y3 Grass\nMove B1 Grass Dodobirb\nMove B2 G3 Dodobirb\nMove B3 G3 Dodobirb\nCatastrophe Dodobirb B\n\n\tDodoBirb: Good game! Good luck in the rest of the tourney.\n\tTrydnt: Well played :) good luck in your journey also\n\nHomeworlds Online (SDG# 34524)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.19, Ended: 2018.10.11\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\tFelix: This is for the tournament. Good luck! \n\n3) Felix: B G1 Felix\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Felix: B Y2 Felix\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) Felix: D Y1 Felix G2 Opulence\n\n10) Draw5PlayAll: Discover Y1 Draw5playall G3 R1\n\n11) Felix: B G1 Felix\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Felix: Trade G1 R1 Felix\n\n14) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n15) Felix: Build R2 Felix\n\n16) Draw5PlayAll: Build R2 Draw5playall\n\n17) Felix: Move R2 Felix Opulence\n\n18) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n19) Felix: B R2 Felix\n\n20) Draw5PlayAll: Build B1 Draw5playall\n\n21) Felix: Discover R1 Felix B2 Scrum\n\n22) Draw5PlayAll: Move B2 Draw5playall R1\n\n23) Felix: Sacrifice G3 Felix\nBuild R2 Scrum\nBuild R3 Opulence\nBuild R3 Felix\n\n24) Draw5PlayAll: Move R1 Draw5playall R1\n\n25) Felix: Move R3 Opulence R1\n\n26) Draw5PlayAll: Sacrifice Y1 R1\nDiscover R1 R1 G2 Y4\n\n27) Felix: Build R3 R1\n\n28) Draw5PlayAll: Sacrifice B2 R1\nPass\nPass\n\n29) Felix: Sacrifice Y2 Felix\nMove R3 R1 Draw5playall\nMove R3 R1 Draw5playall\n\n30) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover R1 Y4 Y3 Temp\nMove R1 Temp Draw5playall\nCatastrophe Draw5playall Red\n\n31) Felix: Move R3 Felix Draw5playall\n\n32) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B1 Draw5playall\nBuild B1 Draw5playall\nBuild B2 Draw5playall\n\n33) Felix: C Draw5playall Blue\nPass\n\tDraw5PlayAll: Eh, I tried\n\n\nHomeworlds Online (SDG# 34576)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.19, Ended: 2018.10.7\nParticipants: Laurie_Menke (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B2 R3 G3\n\tLaurie_Menke: Hi Felix! Have fun with this 2018 Homeworlds Tournament!  :)\n\tFelix: Thanks, same to you!\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: (Reminder to send the start of game form.)\n\n3) Felix: Build G1 Felix\n\tFelix: Ah yes, thanks for the reminder!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: No problem!  :)\n\n5) Felix: T G1 B1 Felix\n\n6) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n7) Felix: B B1 Felix\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) Felix: B G1 Felix\n\n10) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n11) Felix: Trade G1 Y1 Felix\n\n12) Laurie_Menke: Build G1 Laurie_menke\n\n13) Felix: Discover B1 Felix G1 Out\n\n14) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Yellow\nBuild G2 Yellow\nBuild G2 Laurie_menke\n\tLaurie_Menke: Sorry I disappeared for a while... been traveling. Will still be slow until Tuesday.\n\n15) Felix: Build G3 Felix\n\n\tFelix: No problem!\n\tFelix: Aw, man, I hate that the hard time was auto-triggered. I wouldn&#39;t have minded waiting, but I guess tourney rules are tourney rules. Sorry!\n\tLaurie_Menke: ::sigh::  I&#39;m sorry. I know that&#39;s not the way anyone wants to win a game, especially in a tournament, but I am confident you would have beat me eventually anyway. Sorry for the time out, and congrats on the win!  :)\n\nHomeworlds Online (SDG# 34579)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.20, Ended: 2018.9.25\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tdlwillson: For the Great Homeworlds Tournament 2018\n\tTrydnt: Good luck :)\n\n2) dlwillson: H B3 R2 G3 Dlwillson\n\n3) Trydnt: Build G1 Trydnt\n\tdlwillson: Have fun :-)\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Build Y2 Trydnt\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Trydnt: Trade Y1 R1 Trydnt\n\n10) dlwillson: B G1 Dlwillson\n\n11) Trydnt: Build R1 Trydnt\n\n12) dlwillson: D Y1 Dlwillson G1 Field\n\n13) Trydnt: Discover Y2 Trydnt G3 G3\n\n14) dlwillson: B Y1 Field\n\n15) Trydnt: Build R1 Trydnt\n\n16) dlwillson: D Y1 Field B3 Sky\n\n17) Trydnt: Move Y2 G3 Field\n\n18) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y3 Dlwillson\nB Y3 Sky\n\n19) Trydnt: Discover R1 Trydnt Y3 Y3\n\n20) dlwillson: T Y2 R2 Dlwillson\n\n21) Trydnt: Discover Y2 Field G3 G3\n\n22) dlwillson: T Y1 G1 Sky\n\n23) Trydnt: Build G2 Trydnt\n\n24) dlwillson: B G2 Sky\n\n25) Trydnt: Discover R1 Trydnt G3 Gee3\n\n26) dlwillson: S Y3 Dlwillson\nM G2 Sky Trydnt\nM G1 Sky Trydnt\nM Y3 Sky Trydnt\nC Trydnt G\n\n27) Trydnt: Sacrifice Y2 G3\nMove R1 Y3 Trydnt\nMove R1 Gee3 Trydnt\n\n28) dlwillson: T Y3 R3 Trydnt\nC Trydnt R\n\n\tdlwillson: Good game! Thank you!\n\tTrydnt: Well played!\n\nHomeworlds Online (SDG# 34590)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.25, Ended: 2018.10.22\nParticipants: eliscinsky (S), DodoBirb (N)\nWinner: eliscinsky\n\n1) DodoBirb: Homeworld R1 B3 G3\n\tDodoBirb: Just to make sure that there&#39;s no confusion, this is for the tournament.\n\n2) eliscinsky: Homeworld Y1 B2 G3\n\teliscinsky: For the tournament, Check.\n\n3) DodoBirb: Build G1 Dodobirb\n\teliscinsky: Good luck!\n\tDodoBirb: Good Luck!\n\n4) eliscinsky: B G1 Eliscinsky\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) eliscinsky: T G1 R1 Eliscinsky\n\n7) DodoBirb: Build Y1 Dodobirb\n\n8) eliscinsky: Build R1 Eliscinsky\n\n9) DodoBirb: Discover Y1 Dodobirb G2 Grass\n\n10) eliscinsky: B R2 Eliscinsky\n\n11) DodoBirb: Build Y2 Grass\n\n12) eliscinsky: Discover R2 Eliscinsky Y3 Sol\n\n13) DodoBirb: Trade G3 R3 Dodobirb\n\n14) eliscinsky: Move R2 Sol Grass\n\n15) DodoBirb: Move R3 Dodobirb Grass\n\n16) eliscinsky: Build R2 Grass\n\tDodoBirb: I honestly have no idea where I was going with the g3 to r3 move.\n\n17) DodoBirb: Move R3 Grass Dodobirb\n\tDodoBirb: let&#39;s play risky\n\n18) eliscinsky: Attack Y2 Grass\n\teliscinsky: So this is turning out to be quite interesting. \n\n19) DodoBirb: Trade R3 G3 Dodobirb\n\n20) eliscinsky: A Y1 Grass\n\n21) DodoBirb: Build G1 Dodobirb\n\n22) eliscinsky: Build R2 Grass\n\n23) DodoBirb: Build Y2 Dodobirb\n\n24) eliscinsky: Build R3 Eliscinsky\n\n25) DodoBirb: Move Y2 Dodobirb Grass\n\n26) eliscinsky: S Y2 Grass\nM R2 Grass Dodobirb\nM R2 Grass Dodobirb\n\tDodoBirb: That early rush was quite effective.\n\n27) DodoBirb: Attack R2S Dodobirb\n\n28) eliscinsky: M R2 Grass Dodobirb\nC Dodobirb Red\n\n29) DodoBirb: Trade G1 R1 Dodobirb\n\n30) eliscinsky: M R1 Eliscinsky Dodobirb\n\n31) DodoBirb: Attack R1S Dodobirb\n\n32) eliscinsky: Discover R3 Eliscinsky G3 Earth\n\n33) DodoBirb: Sacrifice R1 Dodobirb\nAttack Y1S Grass\n\n34) eliscinsky: B G1 Eliscinsky\n\n35) DodoBirb: Build G1 Dodobirb\n\n36) eliscinsky: T G1 B1 Eliscinsky\n\n37) DodoBirb: Move Y1 Grass Dodobirb\n\n38) eliscinsky: Build G1 Eliscinsky\n\n39) DodoBirb: Build Y2 Grass\n\n40) eliscinsky: Build R1 Eliscinsky\n\n41) DodoBirb: Trade G1 B1 Dodobirb\n\n42) eliscinsky: B R2 Earth\n\n43) DodoBirb: Sacrifice B1 Dodobirb\nTrade Y2 R2 Grass\n\n44) eliscinsky: Sacrifice B1 Eliscinsky\nTrade R2 Y2 Earth\n\n45) DodoBirb: Discover R2 Grass Y3 Yellow\n\n46) eliscinsky: Move R3 Earth Grass\n\n47) DodoBirb: Move Y2 Grass Dodobirb\n\n48) eliscinsky: B R2 Grass\n\n49) DodoBirb: Move Y2 Dodobirb Eliscinsky\n\n50) eliscinsky: A Y2 Eliscinsky\n\n51) DodoBirb: Move Y1 Dodobirb Eliscinsky\n\n52) eliscinsky: T Y2 B2 Eliscinsky\n\n53) DodoBirb: Build G1 Dodobirb\n\n54) eliscinsky: S B2 Eliscinsky\nT R2 B2 Grass\nT R3 Y3 Grass\n\n55) DodoBirb: Build Y2 Dodobirb\n\n56) eliscinsky: Build B1 Grass\n\n57) DodoBirb: Discover G1 Dodobirb B2 Bluey\n\n58) eliscinsky: B B1 Grass\n\n59) DodoBirb: Build G1 Dodobirb\n\n60) eliscinsky: Sacrifice Y3 Grass\nMove B2 Grass Dodobirb\nMove B1 Grass Dodobirb\nMove B1 Grass Dodobirb\nCatastrophe Dodobirb Blue\n\n\teliscinsky: Thanks for a great game. Good luck in the rest of the tournament. \n\tDodoBirb: Good game. I learned a lot.\n\nHomeworlds Online (SDG# 34571)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.26, Ended: 2018.9.28\nParticipants: mneme (S), speardane (N)\nWinner: mneme\n\n1) speardane: Homeworld Y3 B1 G3\n\tmneme: This IS a tournament game.  (you should probably fill out the form as challenger).\n\n2) mneme: Homeworld G3 R2 B3\n\tspeardane: Will do. Good luck!\n\n3) speardane: Build G1 Speardane\n\tmneme: You too! Do your best!\n\n4) mneme: Build B1 Mneme\n\n5) speardane: Discover G1 Speardane B2 Delos\n\n6) mneme: Build B1 Mneme\n\n7) speardane: Build G1 Delos\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) speardane: Build G1 Speardane\n\n10) mneme: Build B2 Mneme\n\n11) speardane: Trade G3 R3 Speardane\n\n12) mneme: Discover B2 Mneme Y1 Terpsicore\n\n13) speardane: Build G2 Delos\n\n14) mneme: Build B2 Mneme\n\n15) speardane: Trade G2 Y2 Delos\n\n16) mneme: Trade B2 R2 Mneme\n\n17) speardane: Trade G1 R1 Delos\n\n18) mneme: Build B2 Mneme\n\n19) speardane: Build G1 Delos\n\n20) mneme: Discover B2 Mneme Y1 Urania\n\n21) speardane: Build R1 Speardane\n\n22) mneme: Build B3 Mneme\n\n23) speardane: Trade R3 B3 Speardane\n\n24) mneme: Trade B3 G3 Mneme\n\n25) speardane: Build B3 Speardane\n\n26) mneme: Sacrifice Y3 Mneme\nMove B1 Mneme Terpsicore\nMove B1 Terpsicore Delos\nMove B1 Delos Speardane\nCatastrophe Speardane B\n\n27) speardane: Trade G1 B1 Delos\n\n28) mneme: Sacrifice G3 Mneme\nBuild B1 Urania\nBuild B3 Mneme\nBuild B3 Terpsicore\n\n29) speardane: Move B1 Delos Speardane\n\n30) mneme: Move B3 Terpsicore Speardane\n\n31) speardane: Build B3 Speardane\n\n32) mneme: Sacrifice R2 Mneme\nAttack B3 Speardane\nAttack R1 Speardane\n\n33) speardane: Sacrifice R1 Delos\nAttack R1 Speardane\n\n34) mneme: Trade B3 R3 Speardane\n\n35) speardane: Build B3 Speardane\n\n36) mneme: Attack B3 Speardane\n\n37) speardane: Build G1 Speardane\n\n38) mneme: Attack R1 Speardane\n\n39) speardane: Pass\n\tspeardane: Good game!\n\n40) mneme: Sacrifice B3 Mneme\nTrade R3 Y3 Speardane\nTrade B3 Y3 Speardane\nTrade R1 Y1 Speardane\nCatastrophe Speardane Y\n\tmneme: Good game!  \n\n\nHomeworlds Online (SDG# 34439)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.9.29, Ended: 2018.10.2\nParticipants: wil (S), Xx_Henry_xX (N)\nWinner: Xx_Henry_xX\n\n1) Xx_Henry_xX: Homeworld G1 B2 Y3\n\n\nHomeworlds Online (SDG# 34510)\nVariants: &quot;Unrated&quot;\nStarted: 2018.9.29, Ended: 2018.9.30\nParticipants: Xx_Henry_xX (S), wil (N)\nWinner: wil\n\n\tXx_Henry_xX: I just realized that I challenged the same person lol\n\nHomeworlds Online (SDG# 34463)\nVariants: &quot;Hard time&quot;\nStarted: 2018.9.30, Ended: 2018.10.2\nParticipants: Xx_Henry_xX (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Xx_Henry_xX: Homeworld G2 B3 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Xx_Henry_xX: Build Y1 Xx_henry_xx (s)\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Xx_Henry_xX: Build Y2 Xx_henry_xx\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Xx_Henry_xX: Discover Y1 Xx_henry_xx B1 Ligma\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\tXx_Henry_xX: I&#39;m bad at naming\n\n10) Xx_Henry_xX: Trade Y1 G1 Ligma\n\n11) Trydnt: Build Y1 Trydnt\n\n12) Xx_Henry_xX: Build G1 Ligma\n\n13) Trydnt: Build Y2 G3\n\n14) Xx_Henry_xX: Trade Y3 R3 Xx_henry_xx\n\n15) Trydnt: Trade Y2 R2 Trydnt\n\n16) Xx_Henry_xX: Trade G1 R1 Ligma\n\n17) Trydnt: Move Y2 G3 Ligma\n\n18) Xx_Henry_xX: Move Y2 Xx_henry_xx Ligma\n\n19) Trydnt: Sacrifice R2 Trydnt\nAttack Y2 Ligma\nAttack R1 Ligma\n\n20) Xx_Henry_xX: Build R1 Xx_henry_xx\n\n21) Trydnt: Attack G1 Ligma\n\n22) Xx_Henry_xX: Trade R1 B1 Xx_henry_xx\n\n23) Trydnt: Trade Y2 B2 Ligma\n\n24) Xx_Henry_xX: Build R1 Xx_henry_xx\n\n25) Trydnt: Build R1 Ligma\n\n26) Xx_Henry_xX: Trade R1 G1 Xx_henry_xx\n\n27) Trydnt: Build G1 Ligma\n\n28) Xx_Henry_xX: Build G2 Xx_henry_xx\n\n29) Trydnt: Move G1 Ligma Xx_henry_xx\nCatastrophe Xx_henry_xx G\n\n30) Xx_Henry_xX: Trade R3 G3 Xx_henry_xx\n\n31) Trydnt: Move B2 Ligma Xx_henry_xx\n\n32) Xx_Henry_xX: Trade B1 R1 Xx_henry_xx\n\n33) Trydnt: Sacrifice G3 Trydnt\nBuild B1 Xx_henry_xx\nBuild B1 Xx_henry_xx\nBuild Y2 Ligma\nCatastrophe Xx_henry_xx B\n\n\nHomeworlds Online (SDG# 34526)\nVariants: &quot;Unrated&quot;\nStarted: 2018.9.30, Ended: 2018.9.30\nParticipants: Xx_Henry_xX (S), Trydnt (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34490)\nStarted: 2018.9.30, Ended: 2018.10.29\nParticipants: dragon76n (S), Xx_Henry_xX (N)\nWinner: dragon76n\n\n1) Xx_Henry_xX: Homeworld G1 B2 Y3\n\n2) dragon76n: H Y1 B3 G3\n\n\n3) Xx_Henry_xX: Build Y1 Xx_henry_xx\n\n4) dragon76n: B G1 Dragon76n\n\n5) Xx_Henry_xX: Discover Y1 Xx_henry_xx G3 Alpaca\n\n6) dragon76n: T G1 Y1 Dragon76n\n\n7) Xx_Henry_xX: Build Y2 Alpaca\n\n8) dragon76n: Build Y2 Dragon76n\n\n9) Xx_Henry_xX: Build Y2 Xx_henry_xx\n\n10) dragon76n: D Y1 Dragon76n G2 Gretwo\n\n11) Xx_Henry_xX: Trade Y2 B2 Xx_henry_xx\n\n12) dragon76n: Build G1 Dragon76n\n\n13) Xx_Henry_xX: Move B2 Xx_henry_xx Alpaca\n\n14) dragon76n: Build Y2 Gretwo\n\n15) Xx_Henry_xX: Build Y3 Xx_henry_xx\n\n16) dragon76n: Discover Y1 Gretwo B3 Bluthr\n\n17) Xx_Henry_xX: Discover Y3 Xx_henry_xx Y3 Yeller\n\n18) dragon76n: Trade Y1 G1 Bluthr\n\n19) Xx_Henry_xX: Sacrifice Y2 Alpaca\nMove B2 Alpaca Gretwo\nMove B2 Gretwo Yeller\n\n20) dragon76n: Sacrifice G3 Dragon76n\nBuild G2 Bluthr\nBuild G2 Bluthr\nBuild G3 Dragon76n\n\n21) Xx_Henry_xX: Trade Y3 G3 Yeller\n\n22) dragon76n: B Y1 Gretwo\n\n23) Xx_Henry_xX: Trade B2 Y2 Yeller\n\n24) dragon76n: M Y2 Gretwo Bluthr\n\n25) Xx_Henry_xX: Move Y2 Yeller Xx_henry_xx\n\n\nHomeworlds Online (SDG# 34604)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.1, Ended: 2018.11.10\nParticipants: ajo (S), Draw5PlayAll (N)\nWinner: ajo\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tajo: For the tournament. :)  Good luck!\n\tDraw5PlayAll: I legit did not know you (ajo) were Quuxplusone until just recently.\n\n2) ajo: Homeworld B2 R1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tajo: I&#39;m not too surprised by that. I don&#39;t know what other names YOU might have. :)\n\n4) ajo: Build G1 Ajo\n\tDraw5PlayAll: Good luck, you are going to need it. Really good luck, that is.\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) ajo: Trade G3 R3 Ajo\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\n8) ajo: Build R2 Ajo\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n10) ajo: Trade R3 Y3 Ajo\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) ajo: Build R2 Ajo\n\tDraw5PlayAll: This red freeze out is not working\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 Lebling\n\n14) ajo: Discover R2 Ajo G3 Alpha\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 Draw5playall\nBuild R3 Lebling\nBuild R3 Lebling\n\n16) ajo: Build Y1 Ajo\n\tDraw5PlayAll: I have confirmed that this move is non-suicidal.\n\n17) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover R1 Draw5playall B2 Whoa\nDiscover R3 Lebling B3 Wow\n\tajo: Hmm, so it is.\n\n18) ajo: Move Y1 Ajo Alpha\n\tDraw5PlayAll: This is REALLY DANGEROUS\n\n19) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n20) ajo: Build R3 Alpha\n\tajo: The aggressive move here would be &quot;sac y1; discover r2 Alpha y2 Beta&quot;... but I don&#39;t think I&#39;m ready for that.\n\n21) Draw5PlayAll: Build G1 Draw5playall\n\n22) ajo: Move R2 Alpha Whoa\n\n23) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n24) ajo: Attack R1 Whoa\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) ajo: Trade R1 G1 Whoa\n\n27) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R1 Wow\n\n28) ajo: Build G1 Whoa\n\n29) Draw5PlayAll: Build Y1 Draw5playall\n\n30) ajo: Build Y2 Alpha\n\n31) Draw5PlayAll: Move Y1 Draw5playall Lebling\n\n32) ajo: Build G2 Whoa\n\n33) Draw5PlayAll: Build Y2 Draw5playall\n\n34) ajo: Discover R2 Ajo Y3 Beta\n\n35) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n36) ajo: Move Y1 Alpha Whoa\n\n37) Draw5PlayAll: Move B1 Draw5playall Lebling\n\n38) ajo: Move G1 Whoa Draw5playall\n\n39) Draw5PlayAll: Move R3 Lebling Draw5playall\n\n40) ajo: Sacrifice G2 Whoa\nBuild G2 Draw5playall\nBuild G2 Draw5playall\nCatastrophe Draw5playall Green\n\n41) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n42) ajo: Build R3 Whoa\n\n43) Draw5PlayAll: Discover B1 Lebling Y1 Ugh\n\n44) ajo: Move R3 Alpha Lebling\n\n45) Draw5PlayAll: Sacrifice Y1 Lebling\nDiscover R2 Lebling Y1 Uhoh\n\n46) ajo: Trade R2 G2 Whoa\n\n47) Draw5PlayAll: Trade R1 G1 Wow\n\tajo: I like these star names better. ;)\n\n48) ajo: Sacrifice G2 Whoa\nBuild Y2 Ajo\nBuild Y3 Whoa\n\tDraw5PlayAll: I was doing well....\n\n49) Draw5PlayAll: Build G2 Wow\n\n50) ajo: Build G2 Whoa\n\n51) Draw5PlayAll: Sacrifice B1 Ugh\nTrade G1 Y1 Wow\n\n52) ajo: Sacrifice G2 Whoa\nBuild R1 Whoa\nBuild R2 Lebling\n\n53) Draw5PlayAll: Build G1 Wow\n\n54) ajo: Build G2 Whoa\n\n55) Draw5PlayAll: Trade G1 B1 Wow\n\n56) ajo: Trade G1 B1 Whoa\n\n57) Draw5PlayAll: Discover Y1 Wow B2 No\n\n58) ajo: Move R3 Whoa Alpha\n\n59) Draw5PlayAll: Build G1 Draw5playall\n\n60) ajo: Build G1 Whoa\n\n61) Draw5PlayAll: Sacrifice G1 Draw5playall\nPass\n\n62) ajo: Move B1 Whoa Alpha\n\n\tDraw5PlayAll: I absolutely cannot see myself having any hope of winning this.\n\nHomeworlds Online (SDG# 34611)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.3, Ended: 2018.11.9\nParticipants: Babamots (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B1 Y2 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\tFelix: For the tournament, I assume?\n\tBabamots: Yes, for the tournament.\r\n\r\nI&#39;ve been wondering how our next game would go for quite a while. Now I guess I&#39;ll find out. Good luck!\n\n3) Felix: Build G1 Felix\n\n4) Babamots: Build G1 Babamots\n\tFelix: We will see! Good luck and have fun!\r\n\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Felix: Build G1 Felix\n\n8) Babamots: Build Y1 Babamots\n\n9) Felix: Build Y2 Felix\n\n10) Babamots: Discover Y1 Babamots G2 Bajor\n\n11) Felix: Discover Y1 Felix G3 Flemoid\n\n12) Babamots: Build Y2 Babamots\n\n13) Felix: Build Y3 Flemoid\n\n14) Babamots: Build Y3 Bajor\n\n15) Felix: Move Y1 Flemoid Bajor\n\n16) Babamots: Sacrifice Y1 Babamots\nMove Y1 Bajor Flemoid\n\n17) Felix: Trade G1 R1 Felix\n\n18) Babamots: Build G1 Babamots\n\n19) Felix: Build R1 Felix\n\n20) Babamots: Move Y3 Bajor Flemoid\n\n21) Felix: Sacrifice G3 Felix\nBuild Y1 Flemoid\nBuild Y3 Felix\nCatastrophe Flemoid Yellow\nBuild Y1 Bajor\n\n22) Babamots: Build Y1 Babamots\n\n23) Felix: Trade Y3 G3 Felix\n\n24) Babamots: Trade Y2 R2 Babamots\n\n25) Felix: Discover Y1 Bajor B3 Gringot\n\n26) Babamots: Build R2 Babamots\n\n27) Felix: Sacrifice G3 Felix\nBuild Y2 Bajor\nBuild Y3 Gringot\nBuild Y3 Felix\n\n28) Babamots: Build Y3 Babamots\n\n29) Felix: Sacrifice Y2 Felix\nMove Y1 Bajor Babamots\nMove Y2 Bajor Babamots\nCatastrophe Babamots Yellow\n\tBabamots: Oh dear. I expected that move, but I see more problems with it now.\n\n30) Babamots: Trade R2 Y2 Babamots\n\tFelix: I honestly feel a bit nervous about taking it, but we&#39;ll see if it works out for me!\n\n31) Felix: M R1 Felix Gringot\n\n32) Babamots: Build Y1 Babamots\n\n33) Felix: T Y3 G3 Gringot\n\n34) Babamots: Discover Y1 Babamots G2 Ferenginar\n\n35) Felix: Build R2 Gringot\n\n36) Babamots: Discover R2 Babamots Y2 Mizar\n\tBabamots: I&#39;ll be playing slow this week. My parents are visiting later and I&#39;m pretty distracted getting ready.\n\n37) Felix: Move R2 Gringot Ferenginar\n\n38) Babamots: Discover Y1 Ferenginar B3 Bolarus\n\tFelix: Not a problem! Enjoy your visit with your folks :)\n\tBabamots: consider discovering a y2 with the r2 in Babamots in preparation for sacrificing g3 to build all remaining yellow\r\nhe can&#39;t build all the yellow without letting you catastrophe\n\tBabamots: Hmm, that was supposed to be a note for myself. Now you know all my secrets!\n\n39) Felix: Sacrifice G3 Gringot\nBuild R2 Ferenginar\nBuild R3 Gringot\nBuild R3 Felix\n\tBabamots: My parents&#39; visit is over, so hopefully I can play at a more normal pace.\r\n\r\nSo when I broadcast my knee-jerk move four days ago, I just wanted to make sure that, when I had time to study it properly, I kept that one in mind. Now that I&#39;ve looked around, I think it still looks good. Sorry you had to wait for almost no reason.\n\tFelix: No problem! I know all your plans now! :D I don&#39;t utilize the notes area enough, myself.\n\n40) Babamots: Sacrifice G3 Babamots\nBuild R3 Mizar\nBuild Y1 Bolarus\nBuild Y3 Babamots\n\n41) Felix: Sacrifice Y3 Felix\nMove R2 Ferenginar Bolarus\nMove R1 Gringot Mizar\nMove R3 Gringot Mizar\nCatastrophe Mizar Red\n\n42) Babamots: Sacrifice Y1 Bolarus\nDiscover Y1 Bolarus G1 Risa\n\n43) Felix: T R3 G3 Felix\n\n44) Babamots: Trade Y2 R2 Babamots\n\n45) Felix: Sacrifice G3 Felix\nBuild R1 Ferenginar\nBuild R3 Bolarus\nBuild R3 Felix\n\n46) Babamots: Discover R2 Babamots Y2 Pakled\n\n47) Felix: Trade R3 G3 Bolarus\n\n48) Babamots: Sacrifice G1 Babamots\nBuild R3 Pakled\n\n49) Felix: Build R3 Bolarus\n\n50) Babamots: Build Y1 Risa\n\n51) Felix: Trade R3 Y3 Bolarus\n\n52) Babamots: Move R3 Pakled Gringot\n\tBabamots: I&#39;m out of town for my sister-in-law&#39;s wedding. If you don&#39;t mind, I&#39;m going to pause my timer until I get back next week.\n\tFelix: Huh, I didn&#39;t know we could do that. I don&#39;t mind, but I wish I had known during my game with speardane. I would not have timed out if I knew I could freeze it. Maybe I can get a rematch? :)\n\tFelix: Ah, I see that it&#39;s in the rules. I guess I didn&#39;t read them carefully enough. Oh well, I suppose that&#39;s my loss.\n\n53) Felix: Sacrifice G3 Bolarus\nBuild Y2 Gringot\nBuild Y3 Bolarus\nBuild R3 Bolarus\n\n54) Babamots: Attack Y2 Gringot\n\n55) Felix: Sacrifice Y1 Gringot\nMove Y3 Bolarus Ferenginar\n\n56) Babamots: Move R2 Pakled Gringot\n\n57) Felix: Sacrifice Y3 Ferenginar\nMove R1 Ferenginar Gringot\nMove R2 Ferenginar Gringot\nCatastrophe Gringot Red\nMove R2 Bolarus Risa\n\n\tBabamots: Too bad we&#39;re not playing with last year&#39;s simultaneous elimination rules or I&#39;d&#39;ve had a draw back there!\r\n\r\nWell, I don&#39;t feel any particular need to play this out. My last hope was that you&#39;d be oblivious to a red catastrophe at home, but you don&#39;t miss things often. Congratulations, and maybe I&#39;ll get you next time!\n\tFelix: Thanks! It was a good game. I&#39;m sure you&#39;ll get me next time. We&#39;re pretty evenly matched, but small momentum changes can still build up over time into large advantages.\r\n\r\nI actually spotted the double elim earlier and made sure I re-read the rules again before I chose to not guard against that :) I honestly was feeling pretty nervous leaving my two reds at home like that for so long, thinking I had overlooked something! Good game.\n\nHomeworlds Online (SDG# 34612)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.3, Ended: 2018.11.19\nParticipants: Babamots (S), DodoBirb (N)\nWinner: Babamots\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: I assume this is for the tourney?\n\n2) Babamots: Homeworld B3 R1 G3\n\tBabamots: Yes, for the tournament. Good luck!\n\n3) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Good Luck!\n\n4) Babamots: Build G1 Babamots\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) Babamots: Build G1 Babamots\n\n7) DodoBirb: Build G1 Dodobirb\n\n8) Babamots: Trade G1 Y1 Babamots\n\n9) DodoBirb: Trade G1 B1 Dodobirb\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) DodoBirb: Trade B1 R1 Dodobirb\n\n12) Babamots: Build R2 Babamots\n\n13) DodoBirb: Build R2 Dodobirb\n\n14) Babamots: Discover R2 Babamots Y2 Iconia\n\n15) DodoBirb: Discover R2 Dodobirb Y3 Sun\n\n16) Babamots: Build R3 Babamots\n\n17) DodoBirb: Build R3 Dodobirb\n\n18) Babamots: Discover R3 Babamots Y2 Bolarus\n\n19) DodoBirb: Move R3 Dodobirb Sun\n\n20) Babamots: Build R3 Babamots\n\n21) DodoBirb: Move R2 Sun Dodobirb\n\n22) Babamots: Trade R3 Y3 Babamots\n\n23) DodoBirb: Discover R1 Dodobirb R3 Keepaway\n\n24) Babamots: Move Y3 Babamots Iconia\n\n25) DodoBirb: Build G1 Dodobirb\n\n26) Babamots: Build Y1 Babamots\n\n27) DodoBirb: Trade G1 B1 Dodobirb\n\n28) Babamots: Move Y3 Iconia Keepaway\n\tDodoBirb: I think I finally &quot;get it&quot;. A bit too late for this game though.\n\tBabamots: You think you&#39;re getting a good feel for the game? That&#39;s great! Any special insights from this game?\n\n29) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: I definitely screwed up the opening a little bit. When I started building blue I should have kept going but instead I switched to Red when you started building that. Now you have 3 large ships over my 2 because I took 2 turns trading.\n\n30) Babamots: Build G1 Babamots\n\n31) DodoBirb: Move G1 Dodobirb Sun\n\n32) Babamots: Sacrifice G3 Babamots\nBuild Y2 Keepaway\nBuild Y3 Babamots\nBuild G1 Babamots\n\n33) DodoBirb: Build G2 Dodobirb\n\n34) Babamots: Move G1 Babamots Bolarus\n\n35) DodoBirb: Build G2 Sun\n\n36) Babamots: Discover R3 Bolarus B3 Mizar\n\n37) DodoBirb: Move B1 Dodobirb Sun\n\n38) Babamots: Attack R1 Keepaway\n\n39) DodoBirb: Discover G2 Sun B2 Bluey\n\n40) Babamots: Trade Y1 B1 Babamots\n\n41) DodoBirb: Sacrifice G3 Dodobirb\nBuild G2 Sun\nBuild G3 Dodobirb\nBuild G3 Bluey\n\n42) Babamots: Build G3 Bolarus\n\n43) DodoBirb: Build Y1 Dodobirb\n\n44) Babamots: Move B1 Babamots Bolarus\n\tBabamots: I&#39;m out of town for my sister-in-law&#39;s wedding. If you don&#39;t mind, I&#39;m going to pause my timer until I get back next week.\n\tDodoBirb: Don&#39;t worry, that&#39;s fine\n\n45) DodoBirb: Build B2 Sun\n\n46) Babamots: Build B2 Bolarus\n\n47) DodoBirb: Discover Y1 Dodobirb B3 Oceania\n\n48) Babamots: Move G1 Bolarus Keepaway\n\n49) DodoBirb: Move R2 Dodobirb Oceania\n\n50) Babamots: Move G3 Bolarus Oceania\n\n51) DodoBirb: Move R2 Oceania Bluey\n\n52) Babamots: Sacrifice Y3 Keepaway\nMove G1 Keepaway Dodobirb\nMove R3 Mizar Dodobirb\nMove G3 Oceania Dodobirb\nCatastrophe Dodobirb G\n\n53) DodoBirb: Trade G3 Y3 Bluey\n\n54) Babamots: Attack Y1 Dodobirb\n\n\tDodoBirb: gg\n\tDodoBirb: Well played.\n\tBabamots: gg! And thanks for being in the tournament! Good luck on your games!\n\tDraw5PlayAll: Bolarus?\n\tBabamots: Bolarus IX is the homeworld of Bolians in Star Trek.\n\tDraw5PlayAll: Bolians? (No spoilers)\n\tBabamots: Bolians are a blue-skinned, usually-bald humanoid race. If there&#39;s a Starfleet officer in the background who isn&#39;t a human, they&#39;re usually Bolian. It seems to me that they appear in situations where the show makers wanted to display a little species diversity but not work at it too hard. The most notable individual Bolian I can think of is Mr. Mot, who is a barber on the Enterprise D.\n\tDraw5PlayAll: Wait so are the Andorians and Bolians both blue skinned?!\n\tBabamots: Andoeians typically have blue skin, though there have been some blueish ones.\n\tDraw5PlayAll: What?\n\tBabamots: I was confirming what you said: Andorians and Bolians have blue skin.\r\n\r\nIt was barely worth mentioning, but I was also saying that that there are a few exceptions: a few Andorians in Star Trek looked more greenish than blue.\n\tBabamots: Sorry, I just reread and saw that I said just said some Andorians are &quot;blueish.&quot; I must have been interrupted while typing. I mean to say &quot;blueish green.&quot;\n\nHomeworlds Online (SDG# 34614)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.4, Ended: 2018.10.8\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tTrydnt: For the homeworlds tournament\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) Trydnt: Build G1 Trydnt\n\n\tts52: Crap. Didn&#39;t build up enough time before vacation. My bad. Good game!\n\tts52: Sorry I made it a disappointing one.\n\tBabamots: As far as I&#39;m concerned, you can replay this for the tournament if you both want to. Only starting with 2d on the clock isn&#39;t in the spirit of &quot;you can take a week off&quot; that I intended. I want to change that next time.\n\tTrydnt: I&#39;m happy to play it again. We&#39;re so few moves in recreating it would be a doddle. ts52 you back from vacation?\n\tts52: I&#39;m fine either way. Trydnt, if you&#39;d like to have a proper game, I&#39;ll gladly replay my first move. But I&#39;m also fine with calling this one for you. I should&#39;ve paid more attention to the time. So I leave it up to you.\n\tTrydnt: let&#39;s do it\n\tBabamots: If you&#39;re agreed, go ahead and start a new game and record it like normal. I&#39;ll strike this one from the record once you have a new one started.\n\nHomeworlds Online (SDG# 34619)\nVariants: &quot;Unrated&quot;\nStarted: 2018.10.5, Ended: 2018.10.16\nParticipants: RogueJedi234 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R3 G2 B3\n\n2) RogueJedi234: Homeworld R1 B2 G3\n\n3) Babamots: Build B1 Babamots\n\n4) RogueJedi234: Build G1 Roguejedi234\n\n5) Babamots: Trade B1 Y1 Babamots\n\n6) RogueJedi234: Build G1 Roguejedi234\n\n7) Babamots: Build B1 Babamots\n\n8) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n9) Babamots: Trade B1 G1 Babamots\n\n10) RogueJedi234: Discover G1 Roguejedi234 B3 Cherry\n\n11) Babamots: Discover G1 Babamots B1 Bolarus\n\n12) RogueJedi234: Trade G1 R1 Cherry\n\n13) Babamots: Build B1 Babamots\n\n14) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove R1 Cherry Bolarus\n\n15) Babamots: Sacrifice Y1 Babamots\nDiscover G1 Bolarus B2 Ferenginar\n\n16) RogueJedi234: Build G1 Roguejedi234\n\n17) Babamots: Build B1 Babamots\n\n18) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n19) Babamots: Trade G1 R1 Ferenginar\n\n20) RogueJedi234: Build G1 Roguejedi234\n\n21) Babamots: Trade B3 Y3 Babamots\n\n22) RogueJedi234: Sacrifice G1 Roguejedi234\nBuild R2 Bolarus\n\n23) Babamots: Build B2 Babamots\n\n24) RogueJedi234: Trade R2 G2 Bolarus\n\n25) Babamots: Discover B2 Babamots G1 Risa\n\n26) RogueJedi234: Build G1 Bolarus\n\n27) Babamots: Build B3 Babamots\n\n28) RogueJedi234: Build R2 Bolarus\n\n29) Babamots: Build B3 Risa\n\n30) RogueJedi234: Build G1 Roguejedi234\n\n31) Babamots: Trade B3 G3 Risa\n\n32) RogueJedi234: Trade R2 Y2 Bolarus\n\n33) Babamots: Move B3 Babamots Bolarus\n\n34) RogueJedi234: Sacrifice Y2 Bolarus\nMove G2 Bolarus Babamots\nMove G1 Bolarus Babamots\n\n35) Babamots: Trade B3 R3 Bolarus\n\n36) RogueJedi234: Build G2 Babamots\nCatastrophe Babamots Green\n\n37) Babamots: Attack R1 Bolarus\n\n38) RogueJedi234: Discover G1 Roguejedi234 B3 Wintermute\n\n39) Babamots: Sacrifice G3 Risa\nBuild B3 Babamots\nBuild B3 Risa\nBuild Y1 Babamots\n\n40) RogueJedi234: Build G1 Wintermute\n\n41) Babamots: Sacrifice Y3 Babamots\nMove B3 Babamots Roguejedi234\nMove B3 Risa Babamots\nMove B3 Babamots Roguejedi234\n\n42) RogueJedi234: Attack B3 Roguejedi234\n\n43) Babamots: Sacrifice R3 Bolarus\nAttack B3 Roguejedi234\nAttack G3 Roguejedi234\nAttack Y1 Roguejedi234\n\n\tBabamots: GG! And hey, what does &quot;Wintermute&quot; refer to?\n\tRogueJedi234: William Gibson&#39;s novel Neuromancer. One of the AIs that feature into the story.\n\nHomeworlds Online (SDG# 34616)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.8, Ended: 2018.10.27\nParticipants: mneme (S), Trydnt (N)\nWinner: mneme\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tmneme: To be clear, this IS for the tournament. \n\tTrydnt: Indeed it is\n\n2) mneme: Homeworld R1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) mneme: Build G1 Mneme\n\tmneme: sorry for the double; was thinking of trying freeze, but figured I&#39;d mix things up a bit.\r\n\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) mneme: Trade G1 R1 Mneme\n\n7) Trydnt: Build R2 Trydnt\n\n8) mneme: Build R2 Mneme\n\n9) Trydnt: Build R2 Trydnt\n\n10) mneme: Trade R2 Y2 Mneme\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) mneme: Build R2 Mneme\n\n13) Trydnt: Build R2 Trydnt\n\n14) mneme: Discover R2 Mneme B3 Clio\n\n15) Trydnt: Discover R2 Trydnt G1 G1\n\n16) mneme: Build G1 Mneme\n\n17) Trydnt: Trade R1 B1 Trydnt\n\n18) mneme: Move G1 Mneme Clio\n\n19) Trydnt: Move B1 Trydnt G1\n\n20) mneme: Build Y1 Mneme\n\n21) Trydnt: Build B1 G1\n\n22) mneme: Move Y1 Mneme Clio\n\n23) Trydnt: Trade B1 Y1 G1\n\n24) mneme: Build Y1 Clio\n\n25) Trydnt: Discover Y2 Trydnt B1 B1\n\n26) mneme: Discover Y1 Clio G1 Thalia\n\n27) Trydnt: Discover B1 G1 Y3 Y3\n\n28) mneme: Build G2 Mneme\n\n29) Trydnt: Discover R2 G1 Y3 Why3\n\n30) mneme: Build Y2 Thalia\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild R1 Why3\nBuild R3 Trydnt\nBuild B1 Y3\n\n32) mneme: Discover R1 Mneme G3 Erato\n\n33) Trydnt: Trade R3 G3 Trydnt\n\n34) mneme: Sacrifice G3 Mneme\nBuild G2 Clio\nBuild G2 Clio\nBuild G3 Mneme\n\n35) Trydnt: Discover Y1 G1 R3 R3\n\n36) mneme: Sacrifice G2 Clio\nBuild R3 Clio\nBuild R3 Erato\n\n37) Trydnt: Discover Y1 R3 B2 B2\n\n38) mneme: Move G3 Mneme Y3\n\n39) Trydnt: Discover B1 Y3 G2 G2\n\n40) mneme: Sacrifice R1 Erato\nAttack B1 Y3\n\n41) Trydnt: Build B3 G2\n\n42) mneme: Sacrifice G3 Y3\nBuild G1 Clio\nBuild G3 Mneme\nBuild B3 Y3\n\n43) Trydnt: Trade B3 R3 G2\n\n44) mneme: Discover G2 Mneme B3 Urania\n\n45) Trydnt: Sacrifice Y1 B2\nMove R3 G2 Urania\n\n46) mneme: Sacrifice G2 Urania\nBuild G2 Mneme\nBuild Y1 Thalia\n\n47) Trydnt: Build B2 G2\n\n48) mneme: Move R3 Clio G2\n\n49) Trydnt: Sacrifice Y2 B1\nMove R3 Urania Thalia\nMove R3 Thalia Clio\n\n50) mneme: Sacrifice R2 Clio\nAttack B2 G2\nAttack B1 G2\n\n51) Trydnt: Sacrifice R2 Why3\nAttack G2 Clio\nAttack Y1 Clio\n\n52) mneme: Sacrifice G2 Mneme\nBuild G2 Clio\nCatastrophe Clio G\nBuild Y2 Mneme\n\n53) Trydnt: Move R3 Clio Thalia\n\n54) mneme: Sacrifice Y2 Mneme\nMove Y1 Thalia Trydnt\nMove Y2 Thalia Trydnt\n\n55) Trydnt: Sacrifice R2 Trydnt\nAttack Y2 Trydnt\nAttack Y1 Thalia\n\n56) mneme: Sacrifice G3 Mneme\nBuild Y2 Trydnt\nCatastrophe Trydnt Y\nBuild B1 Y3\nBuild B3 G2\n\n57) Trydnt: Move R3 Thalia Why3\n\n58) mneme: Move B3 Y3 Mneme\n\n59) Trydnt: Move Y1 Thalia Y3\n\n60) mneme: Trade B2 R2 G2\n\n61) Trydnt: Discover Y1 Y3 B2 B2\n\n62) mneme: Trade B3 Y3 G2\n\n\tmneme: good game!\n\tTrydnt: well played indeed\n\nHomeworlds Online (SDG# 34624)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.8, Ended: 2018.10.20\nParticipants: deanthebean (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) deanthebean: Homeworld Y1 B2 G3\n\tgoulo: hi!\n\tdeanthebean: Thank you for accepting the challenge. Enjoy the game!\r\n\n\n3) goulo: Build G1 Goulo\n\n4) deanthebean: Build G1 Deanthebean\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) deanthebean: Build G1 Deanthebean\n\n7) goulo: Build Y1 Goulo\n\n8) deanthebean: Trade G1 R1 Deanthebean\n\n9) goulo: Build Y2 Goulo\n\n10) deanthebean: Build R1 Deanthebean\n\n11) goulo: Discover Y1 Goulo G1 Verdeto\n\n12) deanthebean: Trade G3 Y3 Deanthebean\n\n13) goulo: Build Y2 Verdeto\n\n14) deanthebean: Discover Y3 Deanthebean G3 Johnthescone\n\n15) goulo: Build Y2 Verdeto\n\n16) deanthebean: Build Y3 Johnthescone\n\n17) goulo: Sacrifice Y2 Verdeto\nMove Y2 Verdeto Johnthescone\nMove Y1 Verdeto Johnthescone\nCatastrophe Johnthescone Y\n\n18) deanthebean: Trade R1 Y1 Deanthebean\n\n19) goulo: Trade Y1 R1 Goulo\n\n20) deanthebean: Build G1 Deanthebean\n\n21) goulo: Discover Y2 Goulo G1 Verdeto\n\n22) deanthebean: Build G2 Deanthebean\n\n23) goulo: Build G2 Goulo\n\n24) deanthebean: Discover G1 Deanthebean G3 Andythecandy\n\n25) goulo: Trade G2 Y2 Goulo\n\n26) deanthebean: Build G2 Andythecandy\n\n27) goulo: Discover Y2 Verdeto G3 Verdego\n\n28) deanthebean: Trade G1 B1 Deanthebean\n\n29) goulo: Build Y1 Verdego\n\n30) deanthebean: Move Y1 Deanthebean Andythecandy\n\n31) goulo: Sacrifice G3 Goulo\nBuild Y2 Goulo\nBuild Y3 Goulo\nBuild Y3 Verdego\n\n32) deanthebean: Build Y3 Andythecandy\n\n33) goulo: Sacrifice Y2 Goulo\nMove Y3 Verdego Deanthebean\nDiscover Y1 Verdego Y2 Flavo\n\n34) deanthebean: Sacrifice G2 Deanthebean\nBuild R1 Deanthebean\nBuild B1 Deanthebean\n\n35) goulo: Trade Y3 B3 Deanthebean\nCatastrophe Deanthebean B\n\n36) deanthebean: Build Y3 Andythecandy\n\n37) goulo: Sacrifice Y3 Goulo\nMove Y1 Flavo Deanthebean\nMove Y2 Goulo Deanthebean\nMove Y2 Verdego Deanthebean\nCatastrophe Deanthebean Y\n\tdeanthebean: Well played! I felt like I was in trouble when you locked me out of yellow technology and took some desperate measures that probably only made things worse.\n\n\tgoulo: thanks, good game!\r\n\r\nthat last turn was funny: at first I saw &quot;wow you&#39;ve got 3 yellows, include 2 size 3 ships, at andy the candy -- surely I must move my small yellow from flavo there to kill your 2 big yellows!&quot; before I noticed &quot;oh wait, instead of that, i could just move 3 yellows to your homeworld and win this turn, duh&quot;. :)\n\nHomeworlds Online (SDG# 34637)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.12, Ended: 2018.10.24\nParticipants: mneme (S), eliscinsky (N)\nWinner: mneme\n\n1) eliscinsky: H B1 Y2 G3\n\tmneme: For the Great Homeworlds Tournament\n\teliscinsky: Agreed: For the Great Homeworlds Tournament\r\nGood Luck!\n\n2) mneme: Homeworld G3 R1 B3\n\n3) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: Very interesting choice for a HW.  I haven&#39;t seen that one before. \n\n4) mneme: Build B1 Mneme\n\n5) eliscinsky: Trade G1 B1 Eliscinsky\n\tmneme: I use it (or variations of it) all the time.\r\nMy 2p homeworlds tend to be very much based around what the 1p homeworld looks like.\n\n6) mneme: Build B2 Mneme\n\n7) eliscinsky: B B2 Eliscinsky\n\n8) mneme: Trade B2 Y2 Mneme\n\n9) eliscinsky: T B1 R1 Eliscinsky\n\n10) mneme: Trade B1 R1 Mneme\n\n11) eliscinsky: Build R2 Eliscinsky\n\n12) mneme: Discover R1 Mneme G2 Euterpe\n\n13) eliscinsky: Discover R2 Eliscinsky G3 Orion\n\n14) mneme: Build Y1 Mneme\n\n15) eliscinsky: B G1 Eliscinsky\n\n16) mneme: Move Y2 Mneme Euterpe\n\n17) eliscinsky: Build R2 Eliscinsky\n\n18) mneme: Build B1 Mneme\n\n19) eliscinsky: Trade G1 Y1 Eliscinsky\n\n20) mneme: Build Y1 Euterpe\n\n21) eliscinsky: Move Y1 Eliscinsky Orion\n\n22) mneme: Move B1 Mneme Euterpe\n\n23) eliscinsky: M B2 Eliscinsky Orion\n\n24) mneme: Trade Y2 G2 Euterpe\n\n25) eliscinsky: T R2 Y2 Eliscinsky\n\n26) mneme: Build R2 Euterpe\n\n27) eliscinsky: Build R2 Orion\n\n28) mneme: Discover R2 Euterpe Y3 Caliope\n\n29) eliscinsky: Discover R2 Orion G2 Earth\n\n30) mneme: Sacrifice G2 Euterpe\nBuild R3 Caliope\nBuild R3 Euterpe\n\n31) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R2 Earth Caliope\nMove R1 Eliscinsky Caliope\nCatastrophe Caliope Red\n\n32) mneme: Build Y2 Euterpe\n\n33) eliscinsky: Move R2 Orion Eliscinsky\n\n34) mneme: Move R3 Euterpe Orion\n\n35) eliscinsky: Trade Y1 R1 Orion\n\n36) mneme: Attack R1 Orion\n\n37) eliscinsky: Trade B2 R2 Orion\n\n38) mneme: Attack R2 Orion\n\n39) eliscinsky: Move R2 Eliscinsky Orion\nCatastrophe Orion Red\n\n40) mneme: Build B1 Mneme\n\teliscinsky: And now I&#39;ll start ALL over again. :)\r\nIt&#39;s like I &quot;pass&quot;ed 8-10 times  LOL\r\nWhy do I think I&#39;m going to lose  ;)\r\nIt&#39;s all good clean fun, until someone has a C :P\n\teliscinsky: Seriously I am having fun.  Thanks for a challenging game.  Hope I&#39;ve thrown you a few twists.\n\n41) eliscinsky: B G1 Eliscinsky\n\tmneme: *nod* It&#39;s going to be really tough for you from here on in, though.\n\n42) mneme: Build R1 Euterpe\n\n43) eliscinsky: Trade G1 Y1 Eliscinsky\n\n44) mneme: Build Y2 Euterpe\n\tmneme: Sorry for the undo, but while I think it goes to the same place either way, this is, I think, a little more challenging for you.  I wouldn&#39;t want to bore.\n\n45) eliscinsky: Build Y3 Eliscinsky\n\n46) mneme: Sacrifice Y2 Euterpe\nDiscover Y1 Euterpe R3 Erato\nMove Y1 Erato Eliscinsky\nCatastrophe Eliscinsky Y\n\n\n\teliscinsky: Well Thanks for a good, enlightening game.  However I think I need to let this one go.  Does resigning help or hurt you&#39;re stats?\n\tmneme: It&#39;s basically the same as any other loss.  And yeah -- it&#39;s 3 turns until a guarunteed loss; probably best to let it go.  Good game!\n\nHomeworlds Online (SDG# 34636)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.12, Ended: 2018.11.20\nParticipants: eliscinsky (S), Laurie_Menke (N)\nWinner: eliscinsky\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi Eric! Good luck! For the record, this is a tournament game...\n\n2) eliscinsky: H Y1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\teliscinsky: Ageed: For the tournament.\r\nGood luck!\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) eliscinsky: T G1 R1 Eliscinsky\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) eliscinsky: B G1 Eliscinsky\n\n9) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n10) eliscinsky: Trade G1 B1 Eliscinsky\n\n11) Laurie_Menke: Build B2 Laurie_menke\n\n12) eliscinsky: Build B2 Eliscinsky\n\n13) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\n14) eliscinsky: T B2 Y2 Eliscinsky\n\n15) Laurie_Menke: Build B2 Laurie_menke\n\n16) eliscinsky: Build B2 Eliscinsky\n\n17) Laurie_Menke: Discover B2 Laurie_menke G2 Green\n\n18) eliscinsky: Discover B2 Eliscinsky G3 Orion\n\n19) Laurie_Menke: Build B3 Green\n\tLaurie_Menke: Sorry... brain fart...\n\teliscinsky: No problem.  I undo at least once in most of my games.\n\n20) eliscinsky: B B3 Orion\n\n21) Laurie_Menke: Trade B3 Y3 Green\n\n22) eliscinsky: Trade B2 Y2 Orion\n\n23) Laurie_Menke: Build G1 Laurie_menke\n\n24) eliscinsky: B Y1 Orion\n\n25) Laurie_Menke: Discover Y2 Laurie_menke R2 Red\n\n26) eliscinsky: M B3 Orion Red\n\n27) Laurie_Menke: Move Y2 Red Orion\n\n28) eliscinsky: B Y1 Orion\nC Orion Yellow\n\n29) Laurie_Menke: Discover B2 Green G3 Greener\n\n30) eliscinsky: Move B1 Eliscinsky Greener\n\tLaurie_Menke: Ack! LOL...\n\n31) Laurie_Menke: Build Y1 Green\n\teliscinsky: Shouldn&#39;t a g1 be Green, g2 be Greener, &amp; g3 Greenest?  LOL\n\tLaurie_Menke: LOL... I suppose you&#39;re right!\n\n32) eliscinsky: Trade B3 R3 Red\n\n33) Laurie_Menke: Build R1 Laurie_menke\n\n34) eliscinsky: T B1 Y1 Greener\n\n35) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack Y1 Greener\n\n36) eliscinsky: S Y2 Eliscinsky\nM R3 Red Greener\nPass\n\n37) Laurie_Menke: Sacrifice Y3 Green\nMove Y1 Green Greener\nMove Y1 Greener Eliscinsky\nMove Y1 Greener Eliscinsky\n\n38) eliscinsky: Attack B2 Greener\n\n39) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y2 Eliscinsky\nCatastrophe Eliscinsky Y\n\teliscinsky: I see where this is heading. Very nice.\n\n40) eliscinsky: T R3 Y3 Greener\n\tLaurie_Menke: Thanks!  ;)\n\n41) Laurie_Menke: Move B1 Laurie_menke Eliscinsky\n\n42) eliscinsky: A B1 Eliscinsky\n\n43) Laurie_Menke: Build G1 Laurie_menke\n\n44) eliscinsky: Build B1 Greener\n\n45) Laurie_Menke: Build R1 Laurie_menke\n\n46) eliscinsky: Trade B1 Y1 Eliscinsky\n\n47) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n48) eliscinsky: Build B1 Greener\n\n49) Laurie_Menke: Build G1 Laurie_menke\n\n50) eliscinsky: T B2 R2 Greener\n\n51) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n52) eliscinsky: Sacrifice Y3 Greener\nMove R1 Eliscinsky Laurie_menke\nMove R2 Greener Eliscinsky\nMove R2 Eliscinsky Laurie_menke\nCatastrophe Laurie_menke Red\n\n53) Laurie_Menke: Build G1 Laurie_menke\n\n54) eliscinsky: Build Y1 Eliscinsky\n\tLaurie_Menke: I don&#39;t know why I was thinking you couldn&#39;t pull that off yet.  ::sigh::\n\n55) Laurie_Menke: Move G1 Laurie_menke Eliscinsky\n\tDraw5PlayAll: Where did all the red go?\n\n56) eliscinsky: Trade G3 R3 Eliscinsky\n\tLaurie_Menke: LOL\n\n\tLaurie_Menke: Ugh. I&#39;m sorry, Eric.  :(  I&#39;ve been on the road and got behind. I&#39;m very sorry for such an anticlimactic win, but I do think you would have won anyway. Sorry.  :(\n\nHomeworlds Online (SDG# 34648)\nVariants: &quot;Hard time&quot;\nStarted: 2018.10.15, Ended: 2018.11.30\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tts52: Thanks for the restart. This is for the homeworlds tournament (take 2). Have a good game!\n\n2) ts52: Homeworld Y1 B2 G3\n\tBabamots: I&#39;ve updated the spreadsheet with the new game number. Good luck to both of you!\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Discover Y1 Trydnt G1 G1\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) Trydnt: Build G1 Trydnt\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Build G2 Trydnt\n\n14) ts52: Build G2 Ts52\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) ts52: Trade G2 R2 Ts52\n\n17) Trydnt: Discover Y2 Trydnt G1 G11\n\n18) ts52: Build R1 Ts52\n\n19) Trydnt: Build G2 Trydnt\n\n20) ts52: Discover G1 Ts52 B3 Gonzo\n\n21) Trydnt: Discover G2 Trydnt B1 B1\n\n22) ts52: Move Y2 Ts52 Gonzo\n\n23) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G3 Trydnt\nBuild R1 Trydnt\n\n24) ts52: Move R1 Ts52 Gonzo\n\n25) Trydnt: Move R1 Trydnt G11\n\n26) ts52: Build R2 Gonzo\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Trydnt\nBuild R3 G11\n\n28) ts52: Build R3 Ts52\n\n29) Trydnt: Move R3 G11 Kermit\n\n30) ts52: Discover G3 Ts52 R3 Elmo\n\n31) Trydnt: Attack Y1 Kermit\n\n32) ts52: Move R2 Gonzo G1\n\n33) Trydnt: Discover Y1 G1 B3 B3\n\n34) ts52: Sacrifice G3 Elmo\nBuild R3 Gonzo\nBuild G3 Gonzo\nPass\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 Kermit\nBuild Y3 G11\n\n36) ts52: Trade R2 B2 Ts52\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y3 B3\nBuild R2 Kermit\n\n38) ts52: Move R3 Gonzo B1\n\n39) Trydnt: Sacrifice Y2 G11\nMove G2 B1 Gonzo\nMove G2 B1 Gonzo\nCatastrophe Gonzo G\n\n40) ts52: Trade B2 G2 Ts52\n\n41) Trydnt: Build Y2 G11\n\n42) ts52: Build G1 Ts52\n\tTrydnt: that turned out better than I thought it would\n\n43) Trydnt: Trade R1 B1 Trydnt\n\tts52: indeed. nice play\n\n44) ts52: M G2 Ts52 Gonzo\n\n45) Trydnt: Move Y3 G11 Gonzo\n\n46) ts52: Move Y2 Gonzo B1\n\n47) Trydnt: Sacrifice R2 Kermit\nAttack G2 Gonzo\nAttack R1 Gonzo\n\n48) ts52: Build G2 Ts52\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Gonzo\nBuild R1 Gonzo\n\n50) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R2 B1\n\n51) Trydnt: Sacrifice B1 Trydnt\nTrade R3 B3 Kermit\n\n52) ts52: Build R3 G1\n\n53) Trydnt: Sacrifice Y3 B3\nMove R1 Gonzo Ts52\nMove R1 Gonzo Ts52\nMove G3 Gonzo Ts52\n\n54) ts52: Sacrifice R3 G1\nAttack G3N Ts52\nAttack R1N Ts52\nAttack R1N Ts52\n\n55) Trydnt: Sacrifice Y3 Gonzo\nMove G2 Gonzo Ts52\nMove R1 G11 B3\nMove R1 B3 Ts52\nCatastrophe Ts52 G\nCatastrophe Ts52 R\n\n\nHomeworlds Online (SDG# 34649)\nStarted: 2018.10.16, Ended: 2019.1.7\nParticipants: RogueJedi234 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) RogueJedi234: Homeworld R3 G2 B3\n\tBabamots: Good luck!\n\n3) Babamots: Build G1 Babamots\n\n4) RogueJedi234: Build B1 Roguejedi234\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) RogueJedi234: Build B1 Roguejedi234\n\n7) Babamots: Build R1 Babamots\n\n8) RogueJedi234: Trade B1 Y1 Roguejedi234\n\tRogueJedi234: An... Unorthodox start, at least from this side of the table. Maybe the game has changed since I last played. I am interested to see how this plays out.\n\n9) Babamots: Build G1 Babamots\n\n10) RogueJedi234: Discover B1 Roguejedi234 G1 Vergon6\n\tBabamots: I don&#39;t really have a plan yet other than trying to put reds out of reach and maybe building a few extra mediums that you can&#39;t.\n\n11) Babamots: Build G1 Babamots\n\n12) RogueJedi234: Build B1 Vergon6\n\n13) Babamots: Trade R1 Y1 Babamots\n\n14) RogueJedi234: Trade B1 R1 Vergon6\n\n15) Babamots: Discover G1 Babamots B2 Bolarus\n\n16) RogueJedi234: Build R2 Vergon6\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Bolarus\nBuild G2 Bolarus\nBuild G3 Babamots\n\n18) RogueJedi234: Trade R1 Y1 Vergon6\n\n19) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild G3 Babamots\nBuild G3 Babamots\n\tRogueJedi234: ugh. Freaking factory.\n\n20) RogueJedi234: Discover Y1 Vergon6 G3 Omicronpersei8\n\n21) Babamots: Move Y1 Babamots Bolarus\n\n22) RogueJedi234: Build Y2 Omicronpersei8\n\n23) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild Y3 Bolarus\nBuild G3 Babamots\n\tBabamots: I&#39;m out of town for my sister-in-law&#39;s wedding. If you don&#39;t mind, I&#39;m going to pause my timer until I get back next week.\n\tRogueJedi234: Oh, yeah no problem. I was wondering what was happening.\n\n24) RogueJedi234: Discover Y2 Omicronpersei8 B2 Decapod10\n\n25) Babamots: Move Y3 Bolarus Vergon6\n\n26) RogueJedi234: Build Y3 Roguejedi234\n\n27) Babamots: Build Y3 Bolarus\n\n28) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove R2 Vergon6 Decapod10\n\n29) Babamots: Move Y3 Vergon6 Decapod10\n\n30) RogueJedi234: Build Y1 Omicronpersei8\n\n31) Babamots: Sacrifice R1 Babamots\nAttack R2 Decapod10\n\n32) RogueJedi234: Sacrifice Y2 Decapod10\nMove Y1 Omicronpersei8 Bolarus\nMove Y1 Omicronpersei8 Bolarus\nCatastrophe Bolarus Yellow\n\n33) Babamots: Discover R2 Decapod10 G3 Risa\n\n34) RogueJedi234: Build B1 Roguejedi234\n\n35) Babamots: Trade G2 Y2 Bolarus\n\n36) RogueJedi234: Build B1 Vergon6\n\n37) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G3 Bolarus\nBuild R1 Risa\n\n38) RogueJedi234: Build B2 Vergon6\n\n39) Babamots: Move G3 Bolarus Vergon6\n\n40) RogueJedi234: Sacrifice B1 Roguejedi234\nTrade B1 Y1 Vergon6\n\n41) Babamots: Sacrifice R2 Risa\nAttack B2 Vergon6\nAttack Y1 Vergon6\n\tRogueJedi234: Sorry about that. Thanksgiving and such.\n\n42) RogueJedi234: Build B1 Vergon6\n\n43) Babamots: Trade B2 R2 Vergon6\n\tBabamots: I figured the holiday was to blame. It&#39;s no problem.\n\n44) RogueJedi234: Build B1 Vergon6\n\n45) Babamots: Sacrifice R2 Vergon6\nAttack B1 Vergon6\nAttack B1 Vergon6\n\n46) RogueJedi234: Build B2 Vergon6\nCatastrophe Vergon6 Blue\n\n47) Babamots: Sacrifice G2 Babamots\nBuild G2 Vergon6\nBuild Y1 Bolarus\n\tBabamots: If you get to play Andy this weekend, let me know how it goes!\n\n48) RogueJedi234: Build B1 Roguejedi234\n\n49) Babamots: Sacrifice G3 Babamots\nBuild Y1 Decapod10\nBuild Y3 Bolarus\nBuild G3 Babamots\n\n50) RogueJedi234: Trade B1 R1 Roguejedi234\n\n51) Babamots: Move Y2 Bolarus Risa\n\n52) RogueJedi234: Discover R1 Roguejedi234 B1 Neutralplanet\n\n53) Babamots: Build R2 Risa\n\n54) RogueJedi234: Build B1 Roguejedi234\n\n55) Babamots: Move R2 Risa Neutralplanet\n\n56) RogueJedi234: Build B1 Roguejedi234\n\n57) Babamots: Attack R1 Neutralplanet\n\tBabamots: Looks like neutrality doesn&#39;t alway protect folks from interstellar conflicts.\n\tDraw5PlayAll: Looks like the very act of sending a war shuttle to a planet is enough to make it no longer neutral.\n\n58) RogueJedi234: Move B1 Roguejedi234 Neutralplanet\n\tRogueJedi234: I do believe that Zapp Brannigan would have something to say about the standing of the people of the Neutral Planet\n\n59) Babamots: Sacrifice Y2 Risa\nMove R1 Risa Vergon6\nMove G2 Bolarus Neutralplanet\n\n60) RogueJedi234: Build B2 Roguejedi234\n\n61) Babamots: Sacrifice Y3 Decapod10\nMove R2 Neutralplanet Roguejedi234\nMove R1 Neutralplanet Roguejedi234\nMove G2 Neutralplanet Roguejedi234\n\n62) RogueJedi234: Trade B2 R2 Roguejedi234\nCatastrophe Roguejedi234 Red\n\n63) Babamots: Sacrifice Y2 Babamots\nMove G3 Vergon6 Roguejedi234\nMove G2 Vergon6 Roguejedi234\nCatastrophe Roguejedi234 G\n\n\tBabamots: Thanks for the game!\n\nHomeworlds Online (SDG# 34674)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.10.28, Ended: 2019.1.17\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: For the tournament\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tts52: Have a good game!\n\n6) ts52: Trade G1 R1 Ts52\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Oh no, not this...\n\n8) ts52: Build R1 Ts52\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) ts52: Build R2 Ts52\n\tDraw5PlayAll: I miss the old days when you just built up gradually and tried your best to get all four colors and control a bunch of ports and eventually out-maneuver your opponent for the win.\n\n11) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\tts52: Yeah, me too.\n\n12) ts52: Trade R2 Y2 Ts52\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) ts52: Build Y2 Ts52\n\n15) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n16) ts52: Build R2 Ts52\n\n17) Draw5PlayAll: Discover B2 Draw5playall G2 Money\n\n18) ts52: Discover R2 Ts52 G3 Kermit\n\n19) Draw5PlayAll: Move Y1 Draw5playall Money\n\n20) ts52: Move Y2 Ts52 Kermit\n\n21) Draw5PlayAll: Move R2 Draw5playall Money\n\n22) ts52: Build G1 Ts52\n\n23) Draw5PlayAll: Build B1 Money\n\n24) ts52: T G1 B1 Ts52\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) ts52: Build G1 Ts52\n\n27) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n28) ts52: Move R2 Kermit B2\n\n29) Draw5PlayAll: Sacrifice G1 B2\nBuild G1 Draw5playall\n\tDraw5PlayAll: Darn you!\n\n30) ts52: Discover Y2 Ts52 B3 Gonzo\n\n31) Draw5PlayAll: Discover G1 Draw5playall Y2 Wolf359\n\tts52: :)\n\n32) ts52: Build Y3 Kermit\n\n33) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Money\nBuild G1 Wolf359\n\n34) ts52: Move B1 Ts52 Kermit\n\n35) Draw5PlayAll: Move G1 Wolf359 Draw5playall\n\n36) ts52: Move Y2 Kermit B2\n\n37) Draw5PlayAll: Build G2 Draw5playall\n\n38) ts52: Move G1 Ts52 Gonzo\n\n39) Draw5PlayAll: Discover G1 Wolf359 R3 Elmo\n\n40) ts52: Build Y2 Gonzo\n\n41) Draw5PlayAll: Discover B1 Money G3 Oscar\n\n42) ts52: Build G2 Ts52\n\n43) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild B1 Money\nBuild B3 Oscar\n\n44) ts52: Move Y2 B2 Elmo\n\tDraw5PlayAll: I did not expect to hold on to the oscar system; that is why I used a Muppet name.\n\n45) Draw5PlayAll: Build G2 Draw5playall\n\tts52: Fair, I probably should&#39;ve done something about that....\n\n46) ts52: Attack G1N Elmo\n\n47) Draw5PlayAll: Move Y1 Money Oscar\n\n48) ts52: Move Y2 Gonzo B2\n\n49) Draw5PlayAll: Move B3 Oscar B2\n\n50) ts52: Move R2 B2 Oscar\n\n51) Draw5PlayAll: Sacrifice Y1 Oscar\nDiscover B1 Oscar Y1 Lost\n\n52) ts52: Move R1 Ts52 Kermit\n\n53) Draw5PlayAll: Build R2 Money\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Kermit\nBuild R3 Oscar\n\n55) Draw5PlayAll: Sacrifice R2 Money\nAttack Y2 B2\nPass\n\n56) ts52: Build R2 Ts52\n\n57) Draw5PlayAll: Move B3 B2 Elmo\n\n58) ts52: Move R3 Kermit B2\n\n59) Draw5PlayAll: Attack Y2 Elmo\n\n60) ts52: Attack Y2N B2\n\n61) Draw5PlayAll: Attack G1 Elmo\n\n62) ts52: Move R2 Ts52 Kermit\n\tDraw5PlayAll: So I named it a muppet expecting that you would take it over quickly. Then you did. And then I took it back.\n\n63) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild G1 Draw5playall\n\tts52: Indeed. This has definitely been an interesting game.\n\tDraw5PlayAll: Why exactly do you always use muppets again?\n\n64) ts52: Move R2 Kermit Lost\n\tDraw5PlayAll: You have a clear advantage but I am not entirely sure how you would utilize it.\n\tts52: Endgames are definitely not my strongest.\n\n65) Draw5PlayAll: Move B1 Lost Elmo\n\tDraw5PlayAll: Stahpit\n\n66) ts52: Move G2 Ts52 Gonzo\n\n67) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild G1 Elmo\n\n68) ts52: Move Y2 Gonzo B2\n\n69) Draw5PlayAll: Move Y1 Draw5playall Money\n\n70) ts52: Move Y2 B2 Gonzo\n\tDraw5PlayAll: Nice try.\n\n71) Draw5PlayAll: Pass\n\tts52: I had to try\n\tDraw5PlayAll: I offer a draw.\n\n72) ts52: Move G2 Gonzo Lost\n\n73) Draw5PlayAll: Pass\n\tts52: What does that mean for the tournament?\n\tDraw5PlayAll: We each score 0.5 points.\n\n74) ts52: Pass\n\n75) Draw5PlayAll: Pass\n\tts52: Ok. I accept the draw.\n\tBabamots: To make it so the draw doesn&#39;t take rank points away from either of you, one of you will need to make the game &quot;unranked.&quot; You need to send a server command here in the chat area:\r\n\r\n~variant add Unranked\r\n\r\nThe other player will need to accept that change from their home page.\r\n\r\nDraw5, since you issued the challenge, will you please enter the result in the &quot;Game Finish Form?&quot; Then we&#39;ll find out if my spreadsheet correctly gives tournament points for draws :-).\r\n\r\nLastly, the rules say the last player to move should resign to end the game. Since that&#39;s you ts52, will you please resign (after the game is set to Unranked)?\r\n\r\nThanks guys!\n\tDraw5PlayAll: Babamots: The variant is Unrated, not Unranked. Also, I seem to have lost the game forms.\n\n\tDraw5PlayAll: Passing so that ts52 gets informed.\n\tBabamots: Oh, &quot;unrated&quot;! Thanks!\r\nHere&#39;s a page with links to everything tournament related:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/tournament/links2018.html\n\tts52: Ok, I believe I&#39;ve accepted the &#39;unranked&#39; setting change, once I see that here, I&#39;ll resign.\n\tts52: unrated. Anyway, good game!\n\nHomeworlds Online (SDG# 34664)\nVariants: &quot;Unrated&quot;\nStarted: 2018.10.29, Ended: 2018.11.19\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H Y2 R3 G3 *\n\n2) Felix: Homeworld B3 Y1 G3\n\tdlwillson: Here we go! GLHF, Felix!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Likewise!\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: D G1 Dlwillson B1 Sea\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: Build B1 Felix\n\n9) dlwillson: B G1 Dlwillson\n\n10) Felix: Discover B1 Felix G2 Out\n\n11) dlwillson: B G2 Sea\n\n12) Felix: Build G2 Felix\n\n13) dlwillson: B G3 Sea\n\n14) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Out\nBuild B2 Out\n\n15) dlwillson: Trade G2 Y2 Sea\n\n16) Felix: Trade B2 Y2 Out\n\n17) dlwillson: T G3 B3 Sea\n\n18) Felix: Move B1 Out Sea\n\n19) dlwillson: S Y2 Sea\nD G1 Dlwillson Y1 Sol\nD B3 Sea Y2 Asol\n\n20) Felix: Sacrifice G2 Felix\nBuild Y1 Out\nBuild Y3 Out\n\n21) dlwillson: T G1 R1 Sea\n\n22) Felix: Move Y2 Out Sea\n\n23) dlwillson: M B3 Asol Felix\n\n24) Felix: Move Y3 Out Felix\n\n25) dlwillson: T B3 R3 Felix\n\tFelix: Wow, rookie mistake!\n\n26) Felix: Trade B2 R2 Out\n\n27) dlwillson: M R3 Felix Out\n\n28) Felix: Sacrifice Y1 Out\nMove R2 Out Sea\n\tdlwillson: Nice recovery!\n\n29) dlwillson: B G1 Sol\n\tFelix: Thanks! I was pretty nervous there\n\n30) Felix: A R1 Sea\n\n31) dlwillson: D G1 Sol B2 Sky\n\n32) Felix: S G3 Felix\nB Y1 Sea\nB Y2 Sea\nB Y3 Felix\n\n33) dlwillson: S G3 Dlwillson\nB G2 Sky\nB G2 Sol\nB G3 Dlwillson\n\n34) Felix: Trade B1 R1 Sea\n\n35) dlwillson: S G3 Dlwillson\nB G3 Sol\nB G3 Sky\nB G3 Dlwillson\n\n36) Felix: Sacrifice Y3 Felix\nMove Y1 Sea Dlwillson\nMove Y2 Sea Dlwillson\nMove Y2 Sea Dlwillson\nCatastrophe Dlwillson Yellow\n\n\tFelix: Good game! Starting without blue is a harsh handicap, but I feel you played well despite it. Maybe we should try a game where we both start without blue and see how that goes?\n\tdlwillson: Oh! Nice! I didn&#39;t even see it!\n\tdlwillson: Good game! Again?\n\tFelix: Always up for a game! \n\nHomeworlds Online (SDG# 34438)\nStarted: 2018.11.1, Ended: 2018.11.4\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n\nHomeworlds Online (SDG# 34450)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.1, Ended: 2018.11.4\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34550)\nStarted: 2018.11.1, Ended: 2018.11.29\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld B1 R2 G3\n\n2) Trydnt: Homeworld G3 Y3 B3 *\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build B1 Trydnt\n\tts52: Interesting!\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Build B1 Trydnt\n\n7) ts52: Build Y1 Ts52\n\n8) Trydnt: Discover B1 Trydnt G1 G1\n\n9) ts52: Build Y1 Ts52\n\n10) Trydnt: Build B2 G1\n\n11) ts52: Discover Y1 Ts52 G3 Kermit\n\n12) Trydnt: Trade B2 Y2 G1\n\n13) ts52: Build Y2 Ts52\n\n14) Trydnt: Build B2 Trydnt\n\n15) ts52: Trade Y2 B2 Ts52\n\n16) Trydnt: Trade B2 R2 Trydnt\n\n17) ts52: Trade Y1 R1 Ts52\n\n18) Trydnt: Build B2 G1\n\n19) ts52: Move B2 Ts52 Kermit\n\n20) Trydnt: Build R1 Trydnt\n\n21) ts52: Build G1 Ts52\n\n22) Trydnt: Sacrifice Y2 G1\nMove R1 Trydnt Ts52\nMove R2 Trydnt Ts52\nCatastrophe Ts52 R\n\n23) ts52: M B2 Kermit G1\n\n24) Trydnt: Trade B2 R2 G1\n\n25) ts52: Trade G3 R3 Ts52\n\n26) Trydnt: Attack B2 G1\n\n27) ts52: Build Y1 Kermit\n\n28) Trydnt: Trade B2 Y2 G1\n\n29) ts52: Build Y2 Ts52\n\n30) Trydnt: Build B2 Trydnt\n\n31) ts52: Trade Y2 B2 Ts52\n\n32) Trydnt: Sacrifice Y2 G1\nMove B1 Trydnt Ts52\nMove B2 Trydnt Ts52\nCatastrophe Ts52 B\n\tts52: D&#39;oh! Should&#39;ve seen that coming. Good game!\n\tTrydnt: Good game. I&#39;ve been playing a lot of miniverse games recently and finding a lot of new stuff. Very fun to find a whole new game in the game\n\n\nHomeworlds Online (SDG# 34601)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.1, Ended: 2018.11.4\nParticipants: Xx_Henry_xX (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y2 G3 *\n\n\tDraw5PlayAll: !\n\nHomeworlds Online (SDG# 34678)\nStarted: 2018.11.1, Ended: 2019.1.10\nParticipants: dragon76n (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y3 G3\n\n2) dragon76n: H Y1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dragon76n: Build G1 Dragon76n\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dragon76n: Trade G1 Y1 Dragon76n\n\n7) Trydnt: Build Y2 Trydnt\n\n8) dragon76n: Build Y2 Dragon76n\n\n9) Trydnt: Build G1 Trydnt\n\n10) dragon76n: Trade Y1 B1 Dragon76n\n\n11) Trydnt: Discover Y1 Trydnt G1 G1\n\n12) dragon76n: Build G1 Dragon76n\n\n13) Trydnt: Build Y1 G1\n\n14) dragon76n: Discover G1 Dragon76n B3 Bluthr\n\n15) Trydnt: Build Y2 Trydnt\n\n16) dragon76n: Move Y2 Dragon76n Bluthr\n\n17) Trydnt: Sacrifice Y1 G1\nDiscover Y2 Trydnt R1 R1\n\n18) dragon76n: Build G2 Bluthr\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) dragon76n: Trade G2 R2 Bluthr\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 R1\nBuild Y3 G1\nBuild Y3 Trydnt\n\n22) dragon76n: Build G1 Dragon76n\n\n23) Trydnt: Move Y3 G1 Bluthr\n\n24) dragon76n: Move R2 Bluthr G1\n\n25) Trydnt: Discover Y1 G1 G3 G3\n\n26) dragon76n: Move Y2 Bluthr G1\n\n27) Trydnt: Sacrifice Y2 Trydnt\nMove Y3 Bluthr G1\nDiscover Y1 R1 B3 B3\n\n28) dragon76n: Move R2 G1 G3\n\n29) Trydnt: Sacrifice Y1 G3\nMove Y3 G1 G3\n\n30) dragon76n: Sacrifice Y2 G1\nMove R2 G3 R1\nMove R2 R1 B3\n\n31) Trydnt: Discover Y1 B3 G2 G2\n\n32) dragon76n: Build G1 Bluthr\n\n33) Trydnt: Trade Y3 G3 Trydnt\n\n34) dragon76n: Trade G1 R1 Dragon76n\n\n35) Trydnt: Build R2 Trydnt\n\n36) dragon76n: Trade G1 Y1 Bluthr\n\n37) Trydnt: Move Y2 R1 Bluthr\n\n38) dragon76n: Sacrifice Y1 Bluthr\nDiscover G1 Bluthr Y1 Yelone\n\n39) Trydnt: Build Y2 G2\n\n40) dragon76n: M G1 Yelone B3\n\n41) Trydnt: Build Y1 G2\n\n42) dragon76n: Build G1 Dragon76n\n\n43) Trydnt: Build Y2 G3\n\n44) dragon76n: Build R1 B3\n\n45) Trydnt: Build Y3 G3\n\n46) dragon76n: Trade R1 B1 B3\n\n47) Trydnt: Sacrifice Y2 G3\nMove Y3 G3 G2\nMove Y3 G2 B3\n\n48) dragon76n: Sacrifice B1 B3\nTrade R2 B2 B3\n\n49) Trydnt: Sacrifice R2 Trydnt\nAttack B2 B3\nAttack G1 B3\n\n50) dragon76n: Discover G1 Dragon76n R3 Redthr\n\n51) Trydnt: Build Y2 G3\n\n52) dragon76n: M B1 Dragon76n Redthr\n\n53) Trydnt: Build B1 B3\n\tdragon76n: Hi Trydnt, sorry about being away for such a long time... quite busy with the holidays recently. I&#39;ll try to remember to check in regularly again.  \n\n54) dragon76n: B G1 Dragon76n\n\n55) Trydnt: Build G2 B3\n\n56) dragon76n: S G3 Dragon76n\nB G2 Redthr\nB G3 Dragon76n\nB B1 Redthr\n\n57) Trydnt: Move B2 B3 G2\n\n58) dragon76n: T B1 R1 Redthr\n\n59) Trydnt: Sacrifice Y3 G3\nMove G1 B3 Dragon76n\nMove G2 B3 Dragon76n\nMove Y3 B3 Dragon76n\nCatastrophe Dragon76n G\n\n60) dragon76n: Sacrifice G2 Redthr\nBuild R2 Dragon76n\nBuild R2 Dragon76n\n\n61) Trydnt: Trade Y3 R3 Dragon76n\nCatastrophe Dragon76n R\n\n\nHomeworlds Online (SDG# 34580)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.2, Ended: 2018.11.13\nParticipants: Trydnt (S), ajo (N)\nWinner: Trydnt\n\n1) ajo: Homeworld B3 Y1 G3\n\n2) Trydnt: Homeworld B2 R3 G3\n\n3) ajo: Build G1 Ajo\n\tajo: This is for the tournament, btw.  Good luck!\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: Good luck to you too!\n\n5) ajo: Discover G1 Ajo B2 Alpha\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ajo: Build G1 Ajo\n\n8) Trydnt: Build Y1 Trydnt\n\n9) ajo: Trade G3 Y3 Ajo\n\n10) Trydnt: Build Y2 Trydnt\n\n11) ajo: Build Y2 Ajo\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) ajo: Move Y2 Ajo Alpha\n\n14) Trydnt: Discover Y2 Trydnt B1 B1\n\n15) ajo: Build G2 Ajo\n\n16) Trydnt: Build G2 Trydnt\n\n17) ajo: Trade Y3 R3 Ajo\n\n18) Trydnt: Trade G2 R2 Trydnt\n\n19) ajo: Build G2 Alpha\n\n20) Trydnt: Move Y2 B1 Alpha\n\n21) ajo: Sacrifice G2 Ajo\nBuild Y2 Alpha\nBuild Y3 Alpha\nCatastrophe Alpha Yellow\n\n22) Trydnt: Build Y2 G1\n\n23) ajo: Build R1 Ajo\n\n24) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Trydnt\nBuild Y2 G1\nBuild Y3 Trydnt\n\n25) ajo: Build G2 Alpha\n\n26) Trydnt: Trade Y3 G3 Trydnt\n\n27) ajo: Build G2 Ajo\n\n28) Trydnt: Build G3 Trydnt\n\n29) ajo: Build G3 Ajo\n\n30) Trydnt: Discover Y2 G1 B3 B3\n\n31) ajo: Trade G3 Y3 Ajo\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 B3\nBuild Y3 G1\nBuild G3 Trydnt\n\n33) ajo: Move Y3 Ajo Alpha\n\n34) Trydnt: Discover Y2 G1 B2 B2\n\n35) ajo: Build G3 Ajo\n\n36) Trydnt: Move R2 Trydnt G1\n\n37) ajo: Move G3 Ajo B2\n\n38) Trydnt: Discover Y2 B2 B3 B33\n\n39) ajo: Trade G2 R2 Alpha\n\n40) Trydnt: Discover Y3 B3 G2 G2\n\n41) ajo: Move R1 Ajo B2\n\n42) Trydnt: Trade Y1 B1 Trydnt\n\n43) ajo: Sacrifice G2 Alpha\nBuild Y1 Alpha\nBuild G2 B2\n\n44) Trydnt: Move B1 Trydnt G1\n\n45) ajo: Discover G1 Alpha B1 Beta\n\n46) Trydnt: Build B1 G1\n\n47) ajo: Sacrifice Y3 Alpha\nMove G2 B2 Beta\nMove G3 B2 Beta\nMove G1 Beta Trydnt\n\n48) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 Trydnt\nBuild R1 G1\nPass\n\n49) ajo: Sacrifice G3 Beta\nBuild R1 B2\nBuild R2 Ajo\nBuild R3 Alpha\n\n50) Trydnt: Move G3 Trydnt Beta\n\n51) ajo: Trade R3 G3 Alpha\n\n52) Trydnt: Discover Y3 G2 R3 R3\n\n53) ajo: Build G2 Alpha\n\n54) Trydnt: Sacrifice R2 G1\nAttack G1 Trydnt\nAttack G2 Beta\n\n55) ajo: Sacrifice G3 Alpha\nBuild R2 Alpha\nBuild G3 Alpha\nBuild G3 Ajo\n\n56) Trydnt: Sacrifice Y2 B33\nMove G2 Beta B2\nMove G2 B2 Ajo\nCatastrophe Ajo G\n\n57) ajo: Build Y2 Alpha\n\n58) Trydnt: Build B3 G1\n\n59) ajo: Sacrifice Y1 Alpha\nDiscover G3 Alpha Y1 Gamma\n\n60) Trydnt: Discover B3 G1 G2 G2\n\n61) ajo: Move R2 Alpha Gamma\n\n62) Trydnt: Build G1 Trydnt\n\n63) ajo: Trade R3 G3 Ajo\n\n64) Trydnt: Build R3 G1\n\n65) ajo: Move R2 Alpha Gamma\n\n66) Trydnt: Build G2 Beta\n\n67) ajo: Sacrifice R1 B2\nPass\n\tajo: I think I&#39;m in trouble...\n\n68) Trydnt: Discover Y2 B3 R1 R1\n\n69) ajo: Discover Y2 Alpha B3 Delta\n\n70) Trydnt: Move R3 G1 B2\n\n\tajo: I think I&#39;ve lost. Good game!\n\tTrydnt: well played\n\nHomeworlds Online (SDG# 34690)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.2, Ended: 2018.12.16\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) dlwillson: H B3 Y1 G3\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) dlwillson: B R1 Dlwillson\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) dlwillson: B R2 Dlwillson\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) dlwillson: D R1 Dlwillson B2 Sea\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G3 Different\n\n14) dlwillson: D R2 Dlwillson Y2 Sol\n\n15) Draw5PlayAll: Discover Y1 Draw5playall B3 Democrat\n\n16) dlwillson: B G1 Dlwillson\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Democrat\nBuild Y3 Democrat\nBuild Y3 Draw5playall\n\n18) dlwillson: S G3 Dlwillson\nB R2 Sol\nB R2 Sea\nB R3 Sea\n\tDraw5PlayAll: You are frozen out of yellow\n\n19) Draw5PlayAll: Build Y3 Different\n\n20) dlwillson: B R3 Dlwillson\n\n21) Draw5PlayAll: Trade Y3 R3 Democrat\n\n22) dlwillson: T R3 Y3 Sea\n\n23) Draw5PlayAll: Trade Y1 G1 Democrat\n\n24) dlwillson: T R1 Y1 Dlwillson\n\n25) Draw5PlayAll: Build G1 Democrat\n\n26) dlwillson: D Y1 Dlwillson G2 Field\n\n27) Draw5PlayAll: Build G2 Democrat\n\n28) dlwillson: T R2 G2 Sea\n\n29) Draw5PlayAll: Discover G1 Democrat B1 Tmp\n\n30) dlwillson: B G3 Dlwillson\n\n31) Draw5PlayAll: Build G3 Tmp\n\n32) dlwillson: Move R2 Sol Different\n\n33) Draw5PlayAll: Move Y1 Different Tmp\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Sea\nBuild R2 Sea\nBuild R3 Sol\n\n35) Draw5PlayAll: Trade G1 B1 Tmp\n\n36) dlwillson: T R2 B2 Sea\n\n37) Draw5PlayAll: Build R2 Democrat\n\n38) dlwillson: D B2 Sea B3 Sky\n\tDraw5PlayAll: Thanks! I needed that!\n\n39) Draw5PlayAll: Sacrifice R2 Democrat\nAttack R2 Different\nPass\n\tdlwillson: ;-)\n\n40) dlwillson: D Y3 Sea G3 Forest\n\tDraw5PlayAll: Red teleportation\n\tdlwillson: Well, shucks. I made a careless mistake! I meant to discover the g3, not the b3. Blah.\n\n41) Draw5PlayAll: Build R2 Different\n\tDraw5PlayAll: And named it a blue name?! I mean you are still much better.\n\tDraw5PlayAll: So do I build the R2, build the G1, or send a green back home?\n\n42) dlwillson: M Y1 Field Sky\n\n43) Draw5PlayAll: Move G2 Democrat Draw5playall\n\tdlwillson: You have every advantage!\n\twil: Dibs on winner\n\n44) dlwillson: Move R3 Sol Sky\n\tDraw5PlayAll: I just want to, you know, be able to build more greens.\n\n45) Draw5PlayAll: Move G3 Tmp Sea\n\tdlwillson: Yes. Well. That&#39;s very important, you know. Building greens.\n\n46) dlwillson: T R1 G1 Sea\n\n47) Draw5PlayAll: Sacrifice G3 Sea\nBuild G2 Draw5playall\nBuild G3 Democrat\nBuild R1 Democrat\n\n48) dlwillson: S Y3 Forest\nM R2 Sol Tmp\nD G1 Sea Y3 Sol\nD G2 Sea G3 Forest\n\n49) Draw5PlayAll: Sacrifice Y1 Tmp\nMove B1 Tmp Different\n\n50) dlwillson: S G2 Forest\nB G2 Dlwillson\nB G3 Sol\n\tDraw5PlayAll: I foiled one of your plans.\n\n51) Draw5PlayAll: Sacrifice G3 Democrat\nBuild G3 Democrat\nBuild Y1 Democrat\nBuild Y2 Different\n\n52) dlwillson: M G1 Sol Sea\n\n53) Draw5PlayAll: Move G3 Democrat Tmp\n\n54) dlwillson: S G3 Sol\nB Y3 Sky\nB G3 Sea\nPass\n\n55) Draw5PlayAll: Sacrifice R1 Democrat\nAttack R2 Tmp\n\n56) dlwillson: M Y3 Sky Draw5playall\n\tDraw5PlayAll: I really want to win this, but at the same time, I want to wait until wil gets distracted with another challenge.\n\n57) Draw5PlayAll: Attack Y3 Draw5playall\n\tdlwillson: I&#39;m sure this doesn&#39;t work outout for me, but maybe I can do some damage on my way out.\n\twil: Yea,.trydnt already did.that\n\n58) dlwillson: M Y1 Sky Draw5playall\nC Draw5playall Y\n\tDraw5PlayAll: You would have no movement. Oh well, you already committed.\n\n59) Draw5PlayAll: Move Y3 Different Draw5playall\n\n60) dlwillson: T G2 Y2 Dlwillson\n\tdlwillson: True, but I still don&#39;t see a better move for me.\n\n61) Draw5PlayAll: Sacrifice G3 Tmp\nBuild Y1 Democrat\nBuild Y3 Different\nBuild Y3 Draw5playall\n\n62) dlwillson: T R3 G3 Sky\n\n63) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R1 Democrat\nBuild R3 Tmp\n\n64) dlwillson: S G3 Sea\nB G2 Dlwillson\nB G2 Sky\nB G3 Sea\n\n65) Draw5PlayAll: Build B1 Different\n\n66) dlwillson: M Y2 Dlwillson Sea\n\n67) Draw5PlayAll: Move Y1 Democrat Tmp\n\n68) dlwillson: M G1 Sea Different\n\tDraw5PlayAll: You have enough to prevent me from having an easy win, and nothing more.\n\tdlwillson: LOL! I know!\n\n69) Draw5PlayAll: Sacrifice Y2 Different\nDiscover Y3 Different Y2 Safety\nMove R3 Tmp Safety\n\n70) dlwillson: M G3 Sea Different\n\n71) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y3 Safety Dlwillson\nMove R3 Safety Dlwillson\nMove G2 Draw5playall Different\nCatastrophe Different Green\n\tDraw5PlayAll: Realize who you are trying to annoy...\n\n\tDraw5PlayAll: First on the ladder... maybe...?\n\tdlwillson: Yup, good game! Well played!\n\tDraw5PlayAll: And the VERY NEXT TIME I LOG IN, Felix challenges me.\n\tdlwillson: Hehehe... Now, I wonder who suggested that... Hm... :-D\n\nHomeworlds Online (SDG# 34694)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.5, Ended: 2018.11.15\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld Y1 B3 G3\n\n2) wil: H Y2 B1 G3\n\tFelix: Howdy. Good luck and have fun as always!\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: T G1 Y1 Wil\n\n7) Felix: Build Y2 Felix\n\n8) wil: B Y2 Wil\n\n9) Felix: Discover Y1 Felix G2 Grass\n\n10) wil: D Y1 Wil G3 G3\n\n11) Felix: Build Y3 Grass\n\n12) wil: B Y3 G3\n\n13) Felix: Discover Y1 Grass G1 Blade\n\twil: Love how different games can be\n\tFelix: :)\n\n14) wil: T Y2 R2 Wil\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: M Y1 G3 Grass\n\n17) Felix: Build Y2 Blade\n\n18) wil: B G1 Wil\n\n19) Felix: Move Y1 Blade G3\n\n20) wil: D Y3 G3 G2 G2\n\n21) Felix: Build Y2 G3\n\n22) wil: B Y3 Grass\n\twil: Nice\n\n23) Felix: Sacrifice R2 Felix\nAttack Y1 Grass\nAttack Y3 Grass\n\n24) wil: M Y3 G2 Felix\n\n25) Felix: Sacrifice Y3 Grass\nMove Y1 Grass Felix\nMove Y3 Grass Felix\nCatastrophe Felix Yellow\nMove Y2 Blade Felix\n\twil: I have to play them out, can&#39;t see ahead.\n\n26) wil: M G3 Wil Felix\n\n27) Felix: B G1 Felix\n\tFelix: I don&#39;t know what I was thinking. There&#39;s no way this ends well for me!\n\n28) wil: S R2 Wil\nA G3 Felix\nA Y2 Felix\n\twil: Idont have a set of pyrmidsto play it out\n\n29) Felix: B G1 Felix\n\n30) wil: T G3 R3 Felix\n\n31) Felix: Sacrifice Y1 G3\nMove G1 Felix Wil\n\n32) wil: S R3 Felix\nP\nP\nA G1 Felix\n\twil: Interesting game\n\twil: I should&#39;ve catastrophed\n\n\tFelix: Indeed. I figured it would go this way, but I was curious too :)\n\nHomeworlds Online (SDG# 34700)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.8, Ended: 2019.1.24\nParticipants: deanthebean (S), Babamots (N)\nWinner: deanthebean\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) deanthebean: Homeworld B1 R3 G3\n\tBabamots: We meet again! Good luck!\n\tdeanthebean: Thank you for accepting the challenge. Enjoy the rematch!\n\n3) Babamots: Build G1 Babamots\n\n4) deanthebean: Build G1 Deanthebean\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) deanthebean: Trade G1 Y1 Deanthebean\n\n7) Babamots: Build G1 Babamots\n\n8) deanthebean: Build G1 Deanthebean\n\n9) Babamots: Trade G1 R1 Babamots\n\n10) deanthebean: Trade G1 B1 Deanthebean\n\n11) Babamots: Build R1 Babamots\n\n12) deanthebean: Build G1 Deanthebean\n\n13) Babamots: Discover R1 Babamots Y3 Iconia\n\n14) deanthebean: Build G1 Deanthebean\n\n15) Babamots: Build R2 Babamots\n\n16) deanthebean: Trade G3 R3 Deanthebean\n\n17) Babamots: Trade R2 Y2 Babamots\n\n18) deanthebean: Discover G1 Deanthebean B2 Gc\n\n19) Babamots: Move R1 Iconia Gc\n\n20) deanthebean: Build B1 Deanthebean\n\n21) Babamots: Attack G1 Gc\n\n22) deanthebean: Discover B1 Deanthebean B2 Avverso\n\n23) Babamots: Trade G3 B3 Babamots\n\n24) deanthebean: Build B3 Deanthebean\n\n25) Babamots: Sacrifice G1 Gc\nBuild B3 Babamots\n\n26) deanthebean: Trade B3 G3 Deanthebean\n\n27) Babamots: Discover Y1 Babamots B3 Bolarus\n\n28) deanthebean: Move R3 Deanthebean Gc\n\n29) Babamots: Discover B3 Babamots G3 Risa\n\n30) deanthebean: Attack R1 Gc\n\n31) Babamots: Trade Y2 G2 Babamots\n\n32) deanthebean: Trade R3 Y3 Gc\n\n33) Babamots: Build G1 Babamots\n\n34) deanthebean: Discover R1 Gc G3 Bol\n\n35) Babamots: Trade G2 Y2 Babamots\n\n36) deanthebean: Build R2 Bol\n\n37) Babamots: Move R1 Babamots Risa\n\n38) deanthebean: Build R2 Bol\n\n39) Babamots: Build R2 Risa\n\n40) deanthebean: Move Y3 Gc Bol\n\n41) Babamots: Build R3 Risa\n\n42) deanthebean: Discover R2 Bol B2 Unlur\n\n43) Babamots: Trade R2 Y2 Risa\n\n44) deanthebean: Trade R2 Y2 Unlur\n\n45) Babamots: Trade R3 Y3 Risa\n\n46) deanthebean: Build R2 Bol\n\n47) Babamots: Sacrifice Y2 Risa\nMove R1 Risa Unlur\nMove R1 Unlur Bol\nCatastrophe Bol R\n\n48) deanthebean: Sacrifice G3 Deanthebean\nBuild Y1 Unlur\nBuild Y2 Bol\nBuild Y3 Deanthebean\n\n49) Babamots: Trade Y1 G1 Bolarus\n\n50) deanthebean: Trade Y3 G3 Deanthebean\n\n51) Babamots: Sacrifice G1 Bolarus\nBuild B3 Risa\n\n52) deanthebean: Trade Y2 R2 Unlur\n\n53) Babamots: Trade Y2 R2 Babamots\n\n54) deanthebean: Build Y1 Deanthebean\n\n55) Babamots: Move B3 Risa Unlur\n\n56) deanthebean: Move R2 Unlur Bol\n\n57) Babamots: Build Y2 Risa\n\n58) deanthebean: Build R1 Bol\n\n59) Babamots: Move Y3 Risa Avverso\n\n60) deanthebean: Sacrifice Y3 Bol\nMove B1 Avverso Bol\nMove R1 Bol Babamots\nMove R2 Bol Babamots\nCatastrophe Babamots Red\n\n61) Babamots: Trade B3 R3 Babamots\n\n62) deanthebean: Build B3 Bol\n\tdeanthebean: build b3 BoL\n\n63) Babamots: Sacrifice Y2 Risa\nMove B3 Unlur Deanthebean\nMove Y3 Avverso Deanthebean\n\n64) deanthebean: Move B1 Deanthebean Babamots\n\n65) Babamots: Sacrifice R3 Babamots\nAttack G3 Deanthebean\nAttack G1 Deanthebean\nAttack Y1 Deanthebean\n\n66) deanthebean: Sacrifice Y2 Bol\nMove B3 Bol Babamots\nMove B1 Bol Babamots\nCatastrophe Babamots Blue\n\tBabamots: GG! Good luck on the rest of your way to the top!\n\tDraw5PlayAll: What in the world...\n\tdeanthebean: Thanks for a good game!\r\n\n\n\nHomeworlds Online (SDG# 34705)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.9, Ended: 2018.12.11\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) Babamots: Build G1 Babamots\n\tFelix: I&#39;m gonna try to make this work again, even though I usually fail at this opening. Your ego may indeed be soothed ;)\n\n4) Felix: Build B1 Felix\n\n5) Babamots: Trade G3 B3 Babamots\n\n6) Felix: Trade B3 Y3 Felix\n\n7) Babamots: Build B2 Babamots\n\n8) Felix: Build B2 Felix\n\n9) Babamots: Trade B2 Y2 Babamots\n\n10) Felix: Discover B2 Felix G2 Out\n\n11) Babamots: Build B2 Babamots\n\n12) Felix: Build B2 Felix\n\n13) Babamots: Discover B2 Babamots G3 Ferenginar\n\n14) Felix: Trade B1 R1 Felix\n\n15) Babamots: Trade B2 R2 Ferenginar\n\tBabamots: I&#39;m still careless and rusty. It&#39;s possible you didn&#39;t see or didn&#39;t like your early catastrophe opportunity back there, but I didn&#39;t notice until after you passed it up.\n\n16) Felix: Build B1 Out\n\n17) Babamots: Move B3 Babamots Ferenginar\n\tFelix: Yeah, I saw that, but I didn&#39;t like where it would have left me if I took the opportunity. And I miss things like that too sometimes. It&#39;s part of the difficulty of playing such spaced out moves instead of realtime. I often have to stare at the game for quite some time before each move to remember where all the threats are, and if I&#39;m in a hurry, I make mistakes\n\n18) Felix: Trade B2 Y2 Felix\n\n19) Babamots: Build B2 Ferenginar\n\n20) Felix: Sacrifice Y2 Felix\nMove B1 Out Ferenginar\nMove B2 Out Ferenginar\nCatastrophe Ferenginar Blue\n\n21) Babamots: Build Y1 Babamots\n\n22) Felix: Build Y1 Felix\n\n23) Babamots: Trade Y1 B1 Babamots\n\n24) Felix: Build R1 Felix\n\n25) Babamots: Build B2 Babamots\n\n26) Felix: Discover R1 Felix G2 Opus\n\n27) Babamots: Move B2 Babamots Ferenginar\n\n28) Felix: Build R1 Opus\n\n29) Babamots: Build B2 Ferenginar\n\n30) Felix: Move Y1 Felix Opus\n\n31) Babamots: Build B2 Ferenginar\n\n32) Felix: B Y1 Felix\n\n33) Babamots: Build B3 Babamots\n\n34) Felix: Trade Y3 B3 Felix\n\n35) Babamots: Trade B2 Y2 Ferenginar\n\tBabamots: Now, I don&#39;t want to see you pulling any punches just because my confidence has been slacking. Especially since I haven&#39;t been concentrating on this game very hard, I&#39;m surprised to have come back so well.\n\n36) Felix: Build Y1 Opus\n\tFelix: No punches pulled. I honestly just couldn&#39;t see a good way to make good on my advantage without leaving myself in a worse position. I should have tried harder to get a large ship into your system, but it wasn&#39;t easy. nice recovery!\n\n37) Babamots: Move B2 Ferenginar Opus\n\n38) Felix: Build R2 Felix\n\n39) Babamots: Build R3 Ferenginar\n\n40) Felix: Discover R1 Opus R3 Bazoik\n\n41) Babamots: Sacrifice R3 Ferenginar\nAttack R1 Opus\nAttack Y1 Opus\nAttack Y1 Opus\n\n42) Felix: M B3 Felix Opus\n\n43) Babamots: Discover B3 Babamots Y3 Iconia\n\n44) Felix: Trade R2 B2 Felix\n\tBabamots: Sorry for the delay. It feels like a ticklish situation and I need to sit down and study it properly. I should have time tonight.\n\n45) Babamots: Build B3 Opus\n\n46) Felix: Sacrifice R1 Bazoik\nAttack B3 Opus\n\tFelix: No worries. I&#39;m never in a rush, so take as long as you need!\r\n\r\nAlso, this is probably the dumbest defense ever, but I&#39;m really curious to try it.\n\n47) Babamots: Sacrifice B1 Babamots\nTrade Y1 B1 Opus\nCatastrophe Opus B\n\tBabamots: I think it&#39;s a good defense of your home under the circumstances, but I don&#39;t think it deals with the Opus Crisis satisfactorily.\n\tBabamots: On my previous move, rather than advancing my b3, I wanted to build a b2 in opus just to see what would happen, but I figured it was safer to put you on the defensive for a move.\n\n48) Felix: Build R1 Felix\n\tFelix: Yeah I think I screwed the pooch on this one!\n\n49) Babamots: Trade B3 G3 Iconia\n\n50) Felix: Trade R1 G1 Felix\n\n51) Babamots: Build B1 Ferenginar\n\n52) Felix: Build Y1 Felix\n\n53) Babamots: Sacrifice Y2 Ferenginar\nMove G3 Iconia Opus\nMove G3 Opus Felix\n\n54) Felix: Trade B2 G2 Felix\nCatastrophe Felix Green\n\n55) Babamots: Sacrifice Y1 Opus\nMove B2 Ferenginar Felix\n\n\tBabamots: I think this way gives you less room for annoying prolongation.\n\tFelix: I think you&#39;re right. No sense in prolonging it. Well played! I made some major mistakes in not capitalizing when I had you against the wall. Nice recovery and good game!\n\tBabamots: I&#39;m pretty surprised that swung my way. GG!\n\nHomeworlds Online (SDG# 34708)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.11, Ended: 2018.11.20\nParticipants: mneme (S), Laurie_Menke (N)\nWinner: mneme\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi mneme! Good luck on the 2018 Homeworlds Tournament!  (Don&#39;t forget to send the start form!)  :)\n\n2) mneme: Homeworld R1 G3 B3\n\tmneme: I did -- and you too!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :)\n\n4) mneme: Build B1 Mneme\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) mneme: Build B1 Mneme\n\n\tmneme: ug.  What happened?  I&#39;m willing to do a rematch if you&#39;re game; I hate to win this way!\n\tLaurie_Menke: Ugh. I&#39;m so sorry, mneme! I&#39;ve been on the road and got behind.  :(  If you&#39;d like (and if babamots is willing), we could run another game and do it the same way to this point and just keep going. On the other hand, we both know you were going to win.  ;)  Your choice. Please forgive my boo-boo!\n\tBabamots: I think a rematch should be OK. If either of you wants to replay this game exactly like it was up to this point, I think you&#39;ve got the right to request that. Otherwise, you can just start a totally new game. What do you prefer?\n\tLaurie_Menke: I&#39;m willing to do any of the following: (1) run this exact game again, (2) start a new game, (3) concede to the clear winner. Mneme... what would make the best of this situation for you? (And thanks for the options, Babamots!)\n\tmneme: Lets go with just replaying it to this point and going from there.  While my freeze has some clear advantages from here, I think there&#39;s still play in it.\n\nHomeworlds Online (SDG# 34711)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.11, Ended: 2018.12.4\nParticipants: Draw5PlayAll (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mneme: Trade G1 R1 Mneme\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) mneme: Build R2 Mneme\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n11) mneme: Build R1 Mneme\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\tmneme: Hell, we forgot to comment.  This IS the Great Tournament game, right?\r\n\n\tDraw5PlayAll: Why ee ehs.\n\n13) mneme: Discover R1 Mneme B3 Melpomene\n\n14) Draw5PlayAll: Discover R2 Draw5playall G1 Gone\n\tmneme: eyeway otgay ouyay.\n\tDraw5PlayAll: &quot;I got you&quot;?\n\n15) mneme: Build R3 Mneme\n\n16) Draw5PlayAll: Build R3 Gone\n\n17) mneme: Build G1 Mneme\n\n18) Draw5PlayAll: Build G1 Draw5playall\n\tmneme: exactly.\n\n19) mneme: Sacrifice G1 Mneme\nBuild R3 Melpomene\n\n20) Draw5PlayAll: Build Y1 Draw5playall\n\n21) mneme: Discover R1 Mneme Y3 Terpsicore\n\n22) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tDraw5PlayAll: Terpsicore?!?\n\n23) mneme: Sacrifice Y2 Mneme\nMove R1 Terpsicore Gone\nMove R1 Melpomene Gone\nCatastrophe Gone R\n\n24) Draw5PlayAll: Build Y1 Draw5playall\n\tmneme: yeah.  All my planet names are muses.\n\tDraw5PlayAll: Muses?\n\n25) mneme: Trade R3 Y3 Mneme\n\n26) Draw5PlayAll: Discover Y1 Draw5playall G1 Iloseagain\n\n27) mneme: Build Y2 Mneme\n\n28) Draw5PlayAll: Discover Y1 Draw5playall B1 You&#39;llwin\n\n29) mneme: Build G1 Mneme\n\n30) Draw5PlayAll: Build G1 Draw5playall\n\n31) mneme: Build G2 Mneme\n\n32) Draw5PlayAll: Build Y2 Iloseagain\n\n33) mneme: Sacrifice Y2 Mneme\nMove R3 Melpomene Iloseagain\nDiscover G2 Mneme Y3 Caliope\n\n34) Draw5PlayAll: Sacrifice Y1 Iloseagain\nDiscover Y2 Iloseagain G2 Outrunyou\n\n35) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Caliope\nBuild G3 Mneme\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 You&#39;llwin\nBuild Y2 Draw5playall\n\n37) mneme: Trade G3 Y3 Mneme\n\n38) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Outrunyou\n\n39) mneme: Sacrifice Y3 Mneme\nMove G2 Caliope Iloseagain\nMove G2 Iloseagain Draw5playall\nCatastrophe Draw5playall G\nMove R3 Iloseagain Draw5playall\n\n40) Draw5PlayAll: Trade Y1 R1 Draw5playall\nCatastrophe Draw5playall Red\n\tDraw5PlayAll: I saw the green catastrophe but not the red invasion.\n\n41) mneme: Trade G2 R2 Mneme\n\n\tmneme: *nodnod*  It was very much a question of velocity; once I saw a way to do both, I had to.\n\tmneme: Good game!\r\n\r\nI think all those earlier games helped me a lot more than they helped you -- making sure I took you seriously and knew I had to play tight rather than loose and sure with you.\n\nHomeworlds Online (SDG# 34709)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.12, Ended: 2018.12.13\nParticipants: mneme (S), DodoBirb (N)\nWinner: DodoBirb\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: Good luck! Is this for the tourney?\n\n2) mneme: Homeworld G3 Y1 B3\n\n3) DodoBirb: Build G1 Dodobirb\n\tmneme: It is!  Gogot tournament!\r\n\n\tmneme: Good luck and have fun!\n\tmneme: (also, Gabawase (which for possibly obvious reasons, I prefer for games like Homeworlds!)\r\n\n\n4) mneme: Build B1 Mneme\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n6) mneme: Build B2 Mneme\n\n7) DodoBirb: Build B2 Dodobirb\n\n8) mneme: Trade B3 G3 Mneme\n\n9) DodoBirb: Build G1 Dodobirb\n\n10) mneme: Discover B1 Mneme G2 Caliope\n\n11) DodoBirb: Trade G1 Y1 Dodobirb\n\n12) mneme: Sacrifice G3 Mneme\nBuild B2 Mneme\nBuild B3 Mneme\nBuild B3 Caliope\n\n13) DodoBirb: Discover B2 Dodobirb G3 Hill\n\n14) mneme: Sacrifice B2 Mneme\nTrade B2 R2 Mneme\nTrade B1 Y1 Caliope\n\n15) DodoBirb: Build G1 Dodobirb\n\n16) mneme: Build Y2 Caliope\n\n17) DodoBirb: Build Y2 Dodobirb\n\n18) mneme: Move Y2 Caliope Hill\n\n19) DodoBirb: Sacrifice Y1 Dodobirb\nDiscover B2 Hill R2 Stardef\n\n20) mneme: Build R1 Mneme\n\n21) DodoBirb: Build Y1 Dodobirb\n\n22) mneme: Build Y2 Caliope\n\n23) DodoBirb: Discover Y1 Dodobirb B3 Water\n\n24) mneme: Trade Y2 G2 Caliope\n\n25) DodoBirb: Move G1 Dodobirb Water\n\tDraw5PlayAll: Calliope? Gabawase?\n\n26) mneme: Sacrifice G2 Caliope\nBuild Y2 Caliope\nBuild Y3 Hill\n\tmneme: Just google?\n\n27) DodoBirb: Build Y3 Water\n\tmneme: ganbawase is easier googled as ganbawatte, though.\n\tmneme: ganbawase is easier googled as ganbawatte, though.\n\n28) mneme: Sacrifice Y2 Hill\nMove Y2 Caliope Water\nMove Y1 Caliope Water\nCatastrophe Water Y\n\n29) DodoBirb: Build Y1 Dodobirb\n\n30) mneme: Move Y3 Hill Stardef\n\n31) DodoBirb: Sacrifice Y1 Dodobirb\nDiscover B2 Stardef Y3 Run\n\n32) mneme: Move Y3 Stardef Water\n\n33) DodoBirb: Sacrifice G1 Water\nBuild G1 Dodobirb\n\n34) mneme: Build B1 Caliope\n\n35) DodoBirb: Build Y1 Dodobirb\n\n36) mneme: Trade B3 Y3 Caliope\n\n37) DodoBirb: Build G1 Dodobirb\n\n38) mneme: Build B2 Caliope\n\n39) DodoBirb: Move G1 Dodobirb Run\n\n40) mneme: Move B2 Caliope Run\n\n41) DodoBirb: Sacrifice Y2 Dodobirb\nDiscover B2 Run R2 Defence\nMove G1 Run Defence\n\n42) mneme: Move Y3 Water Defence\n\n43) DodoBirb: Sacrifice Y1 Dodobirb\nDiscover B2 Defence Y1 Runagain\n\n44) mneme: Attack G1 Defence\n\n45) DodoBirb: Trade G1 Y1 Dodobirb\n\n\tDodoBirb: Oh well. I&#39;ll take the win I guess.\n\tmneme: ACK.  I didn&#39;t get notified for a while and missed that this one was still going on (I think I had you), but if you want to take the win from my falling asleep, I won&#39;t blame you.\r\n\n\tmneme: (next move: catastrophy in your home system)\n\tmneme: (blue cat)\r\n\n\tmneme: more after: grow red in my home (you have no way to get red -and- a y2)\r\nMove after: s y3, red cat in your home.  \n\tDodoBirb: Nah, you can take the win.\n\tDodoBirb: I&#39;ll have to notify Babamots.\n\tBabamots: OK, if you&#39;re sure, I&#39;ll update the record.\n\tmneme: Thanks.  \r\nI&#39;ll take if you&#39;re willing since it was a forced mate in 3; missing the clock was my own fault, but you&#39;re a player of honor.\n\nHomeworlds Online (SDG# 34726)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2018.11.15, Ended: 2018.12.6\nParticipants: Babamots (S), AnalogKid (N)\nWinner: Babamots\n\n1) AnalogKid: Homeworld B1 Y2 G3\n\tDraw5PlayAll: Oh I never knew AnalogKid was into Homeworlds...\n\tAnalogKid: I&#39;ve only played it a few times and that was years ago now.  So I&#39;m a novice who needs to review the rules. :) \n\tAnalogKid: I do think it is a very impressive and rich game.\n\n2) Babamots: Homeworld G3 B1 B3 *\n\tAnalogKid: Babamots: Thanks again for starting all of these new games with me, today.  I hope that you don&#39;t mind me taking the banker option.  Have a good game! ^_^\n\tBabamots: I do think the &quot;banker&quot; is the strongest homeworld, even though I only see &quot;investments&quot; work in maybe 1/4th of games. I think it&#39;s more important that it makes it easy to discover large systems when your opponent is about to build the large ship that--for whatever the reason--you can&#39;t build yourself.\r\n\r\nI think that, for a more even game, the less-experienced player should get the banker. The online rules suggest it, in fact. I also think moving first is a pretty good advantage. It seems to me that the most fair opening would be banker for the second player to move, something else for the first.\r\n\r\nSince you included b1 in your home system, I can do something kind of sneaky that ensures that I get a medium ship before you do. I&#39;m going to make my first ship AND one of my system markers blue. If you ever want a blue ship, you&#39;ll probably need to trade your large ship for it.\r\n\r\nYou said you&#39;d like to learn, so I&#39;m planning on giving lots of unsolicited advice like the above.\r\n\r\nAnyway, you&#39;re welcome to the banker this time. If you beat me, I get dibs next time.\n\n3) AnalogKid: Build G1 Analogkid\n\tAnalogKid: Thanks for the advice and for being willing to teach me. :)\r\n\r\nI&#39;ll have to trade a large ship to get blue?  I assume then that you intend to grab the last small blue so that I can&#39;t trade for it AND you&#39;ll then be able to build a B2 ship while I cannot since I don&#39;t yet have a blue ship?  Interesting.\n\n4) Babamots: Build B1 Babamots\n\n5) AnalogKid: Build G1 Analogkid\n\tBabamots: I don&#39;t know if that trick really does much for me, but people do it pretty often. It won me a game once when my opponent didn&#39;t think to trade the large ship and I just got to build as much of that color as I wanted in every size.\n\tAnalogKid: I&#39;m considering two choices: (a) build another G1, or (b) venture out to a new system with the G1 I&#39;ve got.  I&#39;ll go with (a).  Feel free to let me know what you think I should&#39;ve done. ;-)\n\n6) Babamots: Trade B3 Y3 Babamots\n\tAnalogKid: My reasoning: If you trade for a G1 soon then I will get first dibs on a G2.  (Or maybe I won&#39;t since I have to move/trade at least one of my G ships first?).  Either way, there is no threat of you invading yet with a green ship and I will probably trade in my G3 for a B3 next turn anyways.  \n\n7) AnalogKid: Trade G3 B3 Analogkid\n\n8) Babamots: Build B2 Babamots\n\n9) AnalogKid: Discover G1 Analogkid B3 Alcyone\n\tAnalogKid: *sigh* I still can&#39;t safely build a blue ship.\n\n10) Babamots: Discover B1 Babamots G2 Risa\n\tBabamots: That was intentional. For teaching&#39;s sake, I should have mentioned it in case you didn&#39;t notice.\n\n11) AnalogKid: Build G1 Alcyone\n\n12) Babamots: Build B2 Risa\n\n13) AnalogKid: Discover B3 Analogkid Y3 Sigmaoctantis\n\tAnalogKid: Well, this might be a violation of the &quot;Primary Directive&quot; but ...\n\n14) Babamots: Sacrifice Y3 Babamots\nDiscover B1 Risa Y3 Iconia\nMove B2 Risa Iconia\nMove B2 Iconia Analogkid\n\tBabamots: I think you&#39;re about to get a lesson on why keeping a large at home is so important.\n\n15) AnalogKid: Trade B3 R3 Sigmaoctantis\n\tBabamots: Either that or I&#39;ve totally shot myself in the foot. It&#39;s pretty hard to calculate more than a move or two in the future and I&#39;ve been known to blow it.\n\tBabamots: OK, with some more thought, I see you can survive this, but you&#39;ll have to be careful. This is should be a great tactical exercise for you.\n\tBabamots: So to be clear, my move was not a good example of something you should do. It&#39;s risky at best. There are times when you can totally charge at your opponent the moment there&#39;s a weakness, but this isn&#39;t quite it. More likely I&#39;ve thrown away my only large for almost nothing. But, figuring out how to deal with an overly aggressive move like mine is good for you.\n\tAnalogKid: Hmm... I wasn&#39;t anticipating that move.  I thought you might trade for a red and then I&#39;d have to move my large ship back to my homeworld to defend.\n\tAnalogKid: That was why I moved the B3 to a yellow star.  In retrospect, I think I really needed to go to a green start to accomplish my goal. :|\n\tAnalogKid: Interesting two-pronged threat!  I think I see a solution...\n\n16) Babamots: Trade B2 R2 Analogkid\n\tDraw5PlayAll: I do not see the second prong.\n\tDraw5PlayAll: Also what are Alcyone and SigmaOctantis?\n\n17) AnalogKid: Move R3 Sigmaoctantis Analogkid\n\n18) Babamots: Discover R2 Analogkid Y3 Risa\n\tAnalogKid: Alcyone is a blue giant star and Sigma Octantis is a yellow giant star. See Wikipedia for more. :-)\n\n19) AnalogKid: Build G2 Analogkid\n\n20) Babamots: Build B2 Babamots\n\n21) AnalogKid: Build G2 Analogkid\n\n22) Babamots: Trade B2 G2 Babamots\n\n\tAnalogKid: Ach! I&#39;m so sorry about letting this game timeout.  I was enjoying it. :(  Would you be willing to start another one? (Praetorian too if you wish)\n\tDraw5PlayAll: Praetorian is nice. You should challenge me to it. I do not get to play it enough.\r\n\r\nBut I prefer the assassin.\n\nHomeworlds Online (SDG# 34598)\nVariants: &quot;Unrated&quot;\nStarted: 2018.11.16, Ended: 2018.11.22\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld G1 Y1 B3 *\n\n2) wil: H G3 B3 Y3 *\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B Y1 Wil\n\n5) Trydnt: Trade B1 Y1 Trydnt\n\n6) wil: T Y1 G1 Wil\n\twil: Lol,  not my intended opening, oops\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: B G1 Wil\n\n9) Trydnt: Trade B1 R1 Trydnt\n\n10) wil: T G1 R1 Wil\n\n11) Trydnt: Build Y1 Trydnt\n\n12) wil: B Y2 Wil\n\n13) Trydnt: Move Y1 Trydnt Wil\n\n14) wil: T Y2 R2 Wil\n\n15) Trydnt: Build Y2 Wil\n\n16) wil: T Y3 B3 Wil\n\n17) Trydnt: Sacrifice Y1 Wil\nDiscover Y2 Wil G2 G2\n\twil: And we used to play 5 games a night!\n\n18) wil: T R1 Y1 Wil\n\twil: Yeah, I&#39;ve lost\n\n19) Trydnt: Build B1 Trydnt\n\n20) wil: B Y2 Wil\n\n21) Trydnt: Move B1 Trydnt G2\n\n22) wil: B R1 Wil\n\n23) Trydnt: Build B1 G2\n\n24) wil: T B3 G3 Wil\n\n25) Trydnt: Discover Y1 Trydnt G3 G3\n\n26) wil: M R1 Wil G2\n\n27) Trydnt: Sacrifice R1 Trydnt\nAttack R1 G2\n\n28) wil: M Y1 Wil Trydnt\n\n29) Trydnt: Trade B3 R3 Trydnt\n\n30) wil: B Y2 Trydnt\n\n31) Trydnt: Build Y3 G2\n\twil: Lol, typed wrong\n\tDraw5PlayAll: &amp;#8253;\n\n32) wil: B Y3 Wil\n\n33) Trydnt: Build Y3 G3\n\n34) wil: S Y2 Wil\nM G3 Wil Trydnt\nM G1 Wil Trydnt\n\n\twil: I didn&#39;t mean to undid\n\twil: Fat fingered.stroke victim.strikes again!\n\tTrydnt: Well played! I&#39;m loving these weird micro universes and things we&#39;ve been messing around with. Completely different play style and game feel\n\twil: I wasn&#39;t positive that was gonna work\n\twil: You are the king of escapes\n\tTrydnt: haha yeah I&#39;m in another game going similarly right now that is crazy. like waiting for the axe to drop but seeing some possible escapes too\n\nHomeworlds Online (SDG# 34721)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.16, Ended: 2018.11.19\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n\tts52: Sorry. Lost track of time.\n\twil: Oops\n\tts52: Yeah. Any time I start a game on a friday, there&#39;s a &gt; 50% chance I don&#39;t check over the weekend and it times out. Sorry about that.\n\nHomeworlds Online (SDG# 34734)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.19, Ended: 2018.11.23\nParticipants: Trydnt (S), goulo (N)\nWinner: Trydnt\n\n1) goulo: Homeworld R3 B1 G3\n\n2) Trydnt: Homeworld B1 G2 B3 *\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Trydnt: Build B1 Trydnt\n\n5) goulo: Trade G3 B3 Goulo\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) goulo: Build B2 Goulo\n\n8) Trydnt: Build B2 Trydnt\n\n9) goulo: Trade B2 Y2 Goulo\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) goulo: Build Y1 Goulo\n\n12) Trydnt: Build R1 Trydnt\n\n13) goulo: Build G1 Goulo\n\n14) Trydnt: Build R1 Trydnt\n\n15) goulo: Trade Y2 R2 Goulo\n\n16) Trydnt: Trade R1 G1 Trydnt\n\n17) goulo: Build G2 Goulo\n\n18) Trydnt: Build Y1 Trydnt\n\n19) goulo: Discover G1 Goulo Y2 Flavo\n\n20) Trydnt: Discover G1 Trydnt Y3 Y3\n\n21) goulo: Discover G1 Goulo Y2 Flavodua\n\n22) Trydnt: Move B2 Trydnt Y3\n\n23) goulo: Discover G1 Flavodua Y3 Flavego\n\n24) Trydnt: Discover Y1 Trydnt G3 G3\n\n25) goulo: Build G2 Flavego\n\n26) Trydnt: Build G3 Y3\n\n27) goulo: Build G3 Goulo\n\n28) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild Y1 Trydnt\nBuild Y2 G3\n\n29) goulo: Build Y2 Goulo\n\n30) Trydnt: Move R1 Trydnt Y3\n\n31) goulo: Sacrifice Y2 Goulo\nMove G1 Flavego Trydnt\nMove G2 Flavego Trydnt\n\n32) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild Y2 Trydnt\nBuild Y3 G3\n\n33) goulo: Sacrifice R2 Goulo\nAttack Y2 Trydnt\nAttack R1 Trydnt\n\n34) Trydnt: Sacrifice B2 Y3\nTrade Y3 B3 Trydnt\nTrade Y3 R3 G3\n\n35) goulo: Sacrifice G1 Flavo\nBuild G1 Trydnt\nCatastrophe Trydnt G\n\n36) Trydnt: Sacrifice R1 Y3\nAttack R1 Trydnt\n\n37) goulo: Discover Y2 Trydnt G2 Verdo\n\n38) Trydnt: Move Y2 G3 Verdo\n\n39) goulo: Discover Y2 Verdo R3 Rughego\n\n40) Trydnt: Sacrifice G3 Y3\nBuild Y2 G3\nBuild Y3 Verdo\nBuild Y3 Trydnt\n\n41) goulo: Trade G2 R2 Goulo\n\tTrydnt: well played. that was a weird finish, never seen that type of end game\n\n42) Trydnt: Move B3 Trydnt Y3\n\tgoulo: an unusual interesting situation indeed! :)\n\n43) goulo: Discover B3 Goulo G2 Verdodua\n\n44) Trydnt: Sacrifice B3 Y3\nTrade Y3 G3 Trydnt\nTrade Y2 B2 Verdo\nTrade Y2 B2 G3\n\n45) goulo: Sacrifice G3 Goulo\nBuild Y2 Rughego\nBuild Y2 Rughego\nBuild Y3 Goulo\n\n46) Trydnt: Sacrifice G1 Y3\nBuild Y3 G3\n\n47) goulo: Discover Y2 Rughego R2 Rugho\n\n48) Trydnt: Build B1 G3\n\n49) goulo: Move Y2 Rughego Verdodua\n\n50) Trydnt: Build R1 G3\n\n51) goulo: Trade Y1 G1 Goulo\n\n52) Trydnt: Move R1 G3 Verdo\n\n53) goulo: Move R2 Goulo Verdodua\n\n54) Trydnt: Build R1 Verdo\n\n55) goulo: Build B2 Verdodua\n\n56) Trydnt: Move B2 G3 Verdodua\n\n57) goulo: Sacrifice Y2 Verdodua\nMove B3 Verdodua Rughego\nDiscover B2 Verdodua Y1 Flaveto\n\n58) Trydnt: Sacrifice R1 Trydnt\nAttack R2 Verdodua\n\n59) goulo: Build G1 Goulo\n\n60) Trydnt: Sacrifice Y3 G3\nMove R1 Verdo Goulo\nMove R1 Verdo Goulo\nMove R2 Verdodua Goulo\nCatastrophe Goulo R\n\n61) goulo: Sacrifice G1 Goulo\nBuild B3 Rughego\n\n62) Trydnt: Sacrifice Y3 Verdo\nMove B1 G3 Goulo\nMove B2 Verdo Goulo\nMove B2 Verdodua Goulo\nCatastrophe Goulo B\n\n\tgoulo: Sigh, a move behind...\r\n\r\nThis too often happens to me, that I&#39;m the first to catastrophe a star at the opponent&#39;s homeworld, but doing so leaves me behind on material and too weak to finish the job ... congrats!\n\tTrydnt: always need to have a plan before you take the plunge. sometimes you can still figure it out but it&#39;s risky\n\tgoulo: yes, i am too impulsive in this game.:)\n\nHomeworlds Online (SDG# 34735)\nVariants: &quot;Unrated&quot;\nStarted: 2018.11.20, Ended: 2018.12.19\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: Pass\n\tdlwillson: Are we doing anything special this game?\n\n2) Felix: Homeworld G1 Y2 R3 *\n\tFelix: It&#39;s up to you. I&#39;d be curious to try the no-blue opening myself. You can match it if you want, or go with a normal opening, your choice!\n\n3) dlwillson: H Y3 G2 R3 *\n\n4) Felix: B R1 Felix\n\tdlwillson: Let&#39;s try this. I was going to go green ship, but I think that would&#39;ve given me a big advantage.\n\n5) dlwillson: B R1 Dlwillson\n\tFelix: That&#39;s okay! You do whatever you feel is right :)\n\n6) Felix: Discover R1 Felix B3 Out\n\n7) dlwillson: D R1 Dlwillson B1 Sea\n\tFelix: Oops, sorry for the timeout!\n\n8) Felix: Trade R1 G1 Out\n\n9) dlwillson: T R1 G1 Sea\n\n10) Felix: Build G2 Out\n\n11) dlwillson: B G2 Sea\n\n12) Felix: Build G3 Out\n\n13) dlwillson: B G3 Sea\n\n14) Felix: Trade G3 Y3 Out\n\n15) dlwillson: T G3 Y3 Sea\n\n16) Felix: Move G1 Out Sea\n\tdlwillson: Looong copycat phase, but I couldn&#39;t think of a better move.\n\n17) dlwillson: T G1 R1 Sea\n\tFelix: No prob! I would have done the same\r\n\n\n18) Felix: Build G1 Sea\n\n19) dlwillson: D G2 Sea B3 Sky\n\n20) Felix: Build G3 Out\n\n21) dlwillson: B G3 Sky\n\n22) Felix: D G3 Out B1 Forth\n\n23) dlwillson: Trade G2 R2 Sky\n\n24) Felix: S G3 Forth\nB G2 Sea\nB G3 Out\nB G3 Out\n\n25) dlwillson: Sacrifice G3 Sky\nBuild R1 Sky\nBuild R1 Sky\nBuild R2 Dlwillson\n\n26) Felix: M G3 Out Felix\n\n27) dlwillson: A G2 Sea\n\n28) Felix: Sacrifice G2 Out\nBuild G2 Sea\nBuild G3 Out\nCatastrophe Sea Green\n\n29) dlwillson: T R2 G2 Sky\n\tFelix: That was a satisfying move :)\n\tdlwillson: Elegant!\n\n30) Felix: Trade G3 R3 Out\n\n31) dlwillson: T R1 B1 Sky\n\n32) Felix: Move G3 Felix Sky\n\n33) dlwillson: Sacrifice G2 Sky\nBuild R1 Sky\nBuild R2 Sky\n\n34) Felix: Sacrifice R3 Out\nAttack R1 Sky\nAttack R1 Sky\nAttack R2 Sky\n\n35) dlwillson: M R1 Sea Sky\nC Sky R\n\n36) Felix: Build G1 Out\n\tdlwillson: This game just keeps getting better for you!\n\n37) dlwillson: Move Y3 Sea Sky\n\tFelix: I&#39;m not complaining!\n\n38) Felix: Sacrifice G3 Sky\nBuild G1 Out\nBuild R1 Felix\nBuild Y1 Out\n\tdlwillson: Ooh! I think I actually got a good move in there! I&#39;m worried that I&#39;m thwapping the hornet&#39;s nest, but I&#39;ll enjoy it until it starts to hurt. :-)\n\n39) dlwillson: Sacrifice B1 Sky\nTrade R3 B3 Dlwillson\n\tFelix: Yeah, nice move! I should&#39;ve noticed that\n\n40) Felix: Trade G1 B1 Out\n\n41) dlwillson: Build R1 Dlwillson\n\tdlwillson: Good thing I looked at what I&#39;d done, eh?\n\n42) Felix: Move B1 Out Felix\n\tFelix: I always have to do a double take after my move or I end up in serious trouble.\n\n43) dlwillson: B B1 Dlwillson\n\n44) Felix: Build G1 Out\n\n45) dlwillson: D R1 Dlwillson Y1 Sol\n\n46) Felix: Move G3 Out Sol\n\n47) dlwillson: M R1 Sol Sky\n\n48) Felix: Build G2 Sol\n\n49) dlwillson: B R1 Dlwillson\n\n50) Felix: Sacrifice G3 Sol\nBuild G2 Sol\nBuild G3 Sol\nBuild G3 Out\n\n51) dlwillson: T R1 Y1 Dlwillson\n\n52) Felix: Discover G3 Out B1 Bluey\n\n53) dlwillson: T Y3 G3 Sky\n\n54) Felix: Sacrifice G3 Sol\nBuild G3 Bluey\nBuild Y2 Out\nBuild B2 Felix\n\n55) dlwillson: Discover Y1 Dlwillson R1 Mars\n\n56) Felix: Move Y1 Out Bluey\n\n57) dlwillson: B R2 Dlwillson\n\n58) Felix: Sacrifice G3 Bluey\nBuild G3 Bluey\nBuild Y2 Bluey\nBuild Y3 Bluey\n\n59) dlwillson: B R2 Dlwillson\n\n60) Felix: Move Y2 Out Mars\n\n61) dlwillson: M B1 Dlwillson Bluey\n\n62) Felix: Sacrifice R1 Felix\nAttack B1 Bluey\n\tdlwillson: You should challenge D5PA\n\tFelix: Thanks for the tip. I did :)\n\n63) dlwillson: Move R2 Dlwillson Sol\n\n64) Felix: Sacrifice Y3 Out\nMove G2 Sol Dlwillson\nMove G2 Sol Dlwillson\nMove G3 Bluey Dlwillson\n\n\tdlwillson: Perfect! I suppose I could have seen that coming, but I didn&#39;t... I never see the doomsday until doomsday. :-)\n\nHomeworlds Online (SDG# 34710)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.22, Ended: 2018.12.6\nParticipants: mneme (S), ajo (N)\nWinner: mneme\n\n1) ajo: Homeworld B3 R1 G3\n\n2) mneme: Homeworld B1 G2 R3\n\tmneme: Is this a great homeworlds tournament game?\n\tmneme: Is this a great homeworlds tournament game?\n\n3) ajo: Build G1 Ajo\n\tajo: Yes! I wanted to wait to say it counted for the Tournament until I saw whether you were paying attention, since otherwise it&#39;d just time out after 48 hours of inattention. :)\n\n4) mneme: Build R1 Mneme\n\tmneme: hehe.  I was trying to avoid making my first move until you made a response.\n\n5) ajo: Build G1 Ajo\n\n6) mneme: Build R1 Mneme\n\n7) ajo: Trade G3 Y3 Ajo\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) ajo: Discover G1 Ajo B2 Alpha\n\n10) mneme: Build R2 Mneme\n\n11) ajo: Build G1 Ajo\n\n12) mneme: Discover R2 Mneme Y3 Terpsichore\n\n13) ajo: Build G2 Ajo\n\tajo: Yep. I&#39;m already losing. I gotta study openings (such as they are).\n\n14) mneme: Move R2 Terpsichore Alpha\n\n15) ajo: Trade G2 R2 Ajo\n\n16) mneme: Attack G1 Alpha\n\n17) ajo: Build G2 Ajo\n\n18) mneme: Build G2 Alpha\n\n19) ajo: Discover G1 Ajo B2 Beta\n\n20) mneme: Trade G2 Y2 Alpha\n\n21) ajo: Move R2 Ajo Beta\n\n22) mneme: Build Y1 Mneme\n\n23) ajo: Sacrifice G2 Ajo\nBuild G2 Beta\nBuild Y1 Ajo\n\n24) mneme: Build Y1 Alpha\n\n25) ajo: Move Y1 Ajo Beta\n\n26) mneme: Trade Y3 G3 Mneme\n\n27) ajo: Build Y2 Beta\n\n28) mneme: Discover Y2 Alpha R3 Urania\n\n29) ajo: Sacrifice G2 Beta\nBuild Y2 Beta\nBuild Y3 Ajo\n\n30) mneme: Build Y3 Mneme\n\n31) ajo: Move Y3 Ajo Alpha\n\n32) mneme: Discover R2 Alpha B3 Erato\n\n33) ajo: Sacrifice R2 Beta\nAttack Y1 Alpha\nAttack G1 Alpha\n\n34) mneme: Sacrifice G3 Mneme\nBuild R2 Erato\nBuild R2 Mneme\nBuild R3 Erato\n\n35) ajo: Trade Y3 R3 Alpha\n\n36) mneme: Sacrifice Y1 Mneme\nMove R3 Erato Beta\n\tajo: The invaders have been driven out of Alpha!\n\n37) ajo: Sacrifice Y2 Beta\nDiscover G1 Beta B3 Gamma\nMove Y2 Beta Gamma\n\tmneme: but at what cost?\n\n38) mneme: Attack Y1 Beta\n\n39) ajo: Build G2 Ajo\n\n40) mneme: Move R2 Mneme Gamma\n\n41) ajo: Sacrifice Y2 Gamma\nDiscover G1 Gamma Y2 Delta\nPass\n\n42) mneme: Move Y2 Urania Delta\n\n43) ajo: Build R3 Alpha\n\n44) mneme: Sacrifice Y2 Delta\nMove R2 Erato Alpha\nMove R2 Erato Alpha\nCatastrophe Alpha R\n\n45) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild G2 Delta\n\n46) mneme: Trade R3 G3 Beta\n\tBabamots: Does &quot;at what cost&quot; mean you&#39;re a &quot;Download&quot; listener?\n\n47) ajo: Sacrifice G2 Alpha\nBuild G2 Ajo\nBuild G3 Alpha\n\n48) mneme: Build G3 Beta\n\n49) ajo: Trade G3 Y3 Alpha\n\n50) mneme: Sacrifice G3 Beta\nBuild R2 Mneme\nBuild R2 Gamma\nBuild R3 Gamma\n\n51) ajo: Trade Y3 R3 Alpha\n\n52) mneme: Build G3 Beta\n\n53) ajo: Build R3 Alpha\n\n54) mneme: Trade R3 Y3 Gamma\n\n55) ajo: Build G3 Alpha\n\tajo: Bother.\n\n56) mneme: Sacrifice G3 Beta\nBuild G3 Beta\nBuild Y1 Beta\nBuild Y2 Beta\n\n57) ajo: Trade R3 B3 Alpha\n\n58) mneme: Sacrifice Y3 Gamma\nMove G3 Beta Ajo\nMove Y1 Beta Ajo\nMove Y1 Beta Ajo\n\n59) ajo: Sacrifice Y3 Ajo\nMove G1 Delta Ajo\nCatastrophe Ajo Green\nMove G3 Alpha Ajo\nMove B3 Alpha Ajo\n\n60) mneme: Trade Y1 B1 Ajo\n\n61) ajo: Build R3 Alpha\n\n62) mneme: Sacrifice G3 Beta\nBuild B1 Ajo\nCatastrophe Ajo B\nPass\nPass\n\tmneme: check.\n\tajo: Oh dear. I saw the doomsday machine happening, but I thought you&#39;d blow things up one at a time, giving me a chance to regroup. This is much worse for me!\n\n63) ajo: Move R3 Alpha Gamma\n\tajo: I keep running into situations in this tournament (this is at least the second time) where a mid-turn catastrophe seems like the best option. My own AI&#39;s ruleset doesn&#39;t allow mid-turn catastrophes, and I think it&#39;s a bit of a loophole in SDG&#39;s implementation. But then I&#39;ll hit a situation like this, where if I&#39;m playing to win, clearly I should use the &quot;loophole&quot;; and then I feel guilty about it.\n\tmneme: It&#39;s actually a relatively recent rules change that got reflected in superdupergames pretty shortly after being adopted.\r\n\r\nBut yeah, didn&#39;t see that one coming!\n\n64) mneme: Sacrifice Y3 Mneme\nMove R2 Gamma Ajo\nMove R2 Gamma Ajo\nDiscover R2 Mneme Y3 Nemesis\n\n\tmneme: checkmate.\r\n\r\nGood game!\n\tajo: Good game!\n\nHomeworlds Online (SDG# 34602)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.22, Ended: 2018.11.30\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R2 B3\n\n2) wil: H B2 Y1 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade B1 Y1 Trydnt\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: B Y2 Wil\n\n9) Trydnt: Build Y2 Trydnt\n\n10) wil: D Y1 Wil B3 B3\n\n11) Trydnt: Discover Y1 Trydnt G1 G1\n\n12) wil: T Y1 R1 B3\n\n13) Trydnt: Build B1 Trydnt\n\n14) wil: B G1 Wil\n\n15) Trydnt: Build B1 Trydnt\n\n16) wil: T G1 B1 Wil\n\n17) Trydnt: Move Y2 Trydnt G1\n\n18) wil: B B2 Wil\n\twil:  why didn&#39;t you tell me you challenged\n\tTrydnt: Oh sorry I thought you&#39;d see it in time. How long do you get to accept/decline those?\n\n19) Trydnt: Move B1 Trydnt G1\n\twil: Don&#39;t know but I missed it!\n\twil: Now I gotta climb agin\n\n20) wil: D B2 Wil Y3 Y3\n\n21) Trydnt: Trade Y1 R1 G1\n\n22) wil: B G1 Wil\n\n23) Trydnt: Build Y1 G1\n\n24) wil: M Y2 Wil B3\n\n25) Trydnt: Discover Y1 G1 G3 G3\n\n26) wil: B G1 Wil\n\n27) Trydnt: Build Y1 G3\n\n28) wil: S G1 Wil\nB Y3 B3\n\n29) Trydnt: Build Y3 G1\n\n30) wil: D Y2 B3 G1 Gone\n\n31) Trydnt: Discover Y2 G1 R3 R3\n\n32) wil: T G1 R1 Wil\n\n33) Trydnt: Move Y1 G3 Wil\n\n34) wil: A Y1 Wil\n\n35) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 G3 Wil\nMove Y2 R3 Wil\nCatastrophe Wil Y\n\n36) wil: B G1 Wil\n\n37) Trydnt: Sacrifice Y3 G1\nMove B1 G1 Wil\nMove B1 Trydnt G1\nMove B1 G1 Wil\nCatastrophe Wil B\n\n\nHomeworlds Online (SDG# 34685)\nStarted: 2018.11.22, Ended: 2019.6.24\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 34687)\nStarted: 2018.11.22, Ended: 2019.1.30\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H Y1 B2 G3\n\n2) wil: H Y3 B1 G3\n\n3) ts52: Build G1 Ts52\n\twil: Thx for the game\n\n4) wil: B G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: T G1 Y1 Wil\n\n7) ts52: Build B1 Ts52\n\n8) wil: B Y1 Wil\n\n9) ts52: Discover B1 Ts52 B3 Grover\n\n10) wil: D Y1 Wil Y2 Y2\n\n11) ts52: Build B2 Ts52\n\n12) wil: B Y2 Wil\n\n13) ts52: Build G1 Ts52\n\n14) wil: D Y2 Wil G2 G2\n\n15) ts52: Discover B2 Ts52 G3 Kermit\n\n16) wil: S G3 Wil\nB Y2 G2\nB Y3 Y2\nB Y3 Wil\n\n17) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\nBuild B3 Ts52\n\n18) wil: T Y1 G1 Wil\n\n19) ts52: Trade B1 Y1 Ts52\n\n20) wil: B G1 Wil\n\n21) ts52: Move Y1 Ts52 Kermit\n\n22) wil: B G2 Wil\n\n23) ts52: Build B1 Ts52\n\n24) wil: T G1 R1 Wil\n\n25) ts52: Move Y1 Kermit Y2\nCatastrophe Y2 Yellow\n\n26) wil: M Y2 G2 Grover\n\twil: Oops\n\n27) ts52: Trade B3 Y3 Kermit\n\n28) wil: T Y3 B3 Wil\n\n29) ts52: Trade B2 R2 Kermit\n\n30) wil: B R1 Wil\n\n31) ts52: Build B2 Kermit\n\n32) wil: S R1 Wil\nA B1 Grover\n\n33) ts52: Discover B1 Ts52 Y3 Bigbird\n\n34) wil: B R1 Wil\n\n35) ts52: Build R1 Kermit\n\n36) wil: D G1 Wil Y2 Y2\n\n37) ts52: Move R2 Kermit Y2\n\n38) wil: B G1 Y2\n\n39) ts52: Attack G1S Y2\n\n40) wil: B G2 Y2\n\n41) ts52: Attack G2S Y2\n\n42) wil: B G3 Y2\n\n43) ts52: Build G3 Ts52\nCatastrophe Y2 Green\n\n44) wil: D R1 Wil G2 Gee2\n\n45) ts52: Build R2 Kermit\n\n46) wil: S G2 Wil\nB R2 Gee2\nB R3 Wil\n\n47) ts52: Build R3 Kermit\n\n48) wil: S Y2 G2\nM R2 Gee2 Bigbird\nM R1 Gee2 Kermit\nC Kermit R\n\n49) ts52: Move B1 Bigbird Y2\n\n50) wil: T R3 G3 Wil\n\n51) ts52: Build Y1 Kermit\n\n52) wil: M B3 Wil Y2\n\n53) ts52: Move R2 Y2 Kermit\n\n54) wil: B R1 Wil\n\n55) ts52: Trade B3 R3 Ts52\n\n56) wil: D B1 Grover G2 G2\n\n57) ts52: Build B3 Kermit\n\n58) wil: S Y2 Grover\nM B1 G2 Kermit\nC Kermit B\nD R1 Wil G2 G2\n\n59) ts52: Sacrifice B1 Y2\nTrade Y3 B3 Kermit\n\n60) wil: T R1 Y1 Wil\n\n61) ts52: M R3 Ts52 Bigbird\n\n62) wil: M R2 Bigbird Y2\n\n63) ts52: B Y2 Kermit\n\n64) wil: B G1 Wil\n\n65) ts52: Trade G1 R1 Ts52\n\n66) wil: M Y1 Wil G2\n\n67) ts52: Move R3 Bigbird G2\n\n68) wil: B Y2 G2\n\n69) ts52: Attack Y2 G2\n\twil: Night and day these two games\n\n70) wil: B R1 G2\n\tts52: Definitely. \n\n71) ts52: Sacrifice R2 Kermit\nAttack R1 G2\nAttack R1 G2\n\n72) wil: B G1 Wil\n\n73) ts52: Attack Y1 G2\n\n74) wil: T G3 Y3 Wil\n\n75) ts52: Sacrifice Y2 Kermit\nMove Y1 G2 Wil\nMove Y2 G2 Wil\nCatastrophe Wil Y\n\n\twil: Lol, gg\n\tts52: Thanks. You too.\n\nHomeworlds Online (SDG# 34479)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.24, Ended: 2018.12.23\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Welcome back! I had in mind that this game would be for the tournament. If you&#39;re up for playing your other dozen or so tournament games, I&#39;ll mark you as un-withdrawn. Just let me know!\n\n2) wil: H B2 Y1 G3\n\twil: I have lots of free.time\n\twil: And yes, would.love to challenge my brain\n\n3) Babamots: Build G1 Babamots\n\twil: Thx\n\n4) wil: B G1 Wil\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) wil: T G1 Y1 Wil\n\n7) Babamots: Build Y2 Babamots\n\n8) wil: B Y2 Wil\n\n9) Babamots: Discover Y1 Babamots G2 Orion\n\n10) wil: T Y1 R1 Wil\n\n11) Babamots: Build Y1 Babamots\n\n12) wil: D Y2 Wil G3 G3\n\n13) Babamots: Trade Y1 R1 Babamots\n\n14) wil: B R2 Wil\n\n15) Babamots: Build Y1 Orion\n\n16) wil: M R2 Wil G3\n\n17) Babamots: Discover Y1 Orion G1 Risa\n\n18) wil: B R2 Wil\n\n19) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y3 Orion\nBuild Y3 Babamots\n\n20) wil: B Y3 G3\n\twil: Nice\n\n21) Babamots: Sacrifice Y2 Risa\nMove Y1 Risa G3\nMove Y1 Orion G3\nCatastrophe G3 Y\n\n22) wil: T R2 Y2 Wil\n\n23) Babamots: Move R1 Babamots Orion\n\n24) wil: B R2 Wil\n\n25) Babamots: Build Y1 Orion\n\n26) wil: T R1 B1 Wil\n\n27) Babamots: Trade Y3 G3 Babamots\n\n28) wil: B R1 G3\n\n29) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y2 Orion\nBuild Y3 Babamots\n\twil: Such trouble I&#39;ve got myself in\n\n30) wil: D Y2 Wil G3 Gee3\n\n31) Babamots: Sacrifice Y1 Babamots\nMove Y3 Orion G3\n\n32) wil: B B1 Wil\n\n33) Babamots: Sacrifice R1 Orion\nAttack R2 G3\n\n34) wil: D B1 Wil Y3 Y3\n\n35) Babamots: Attack R1 G3\n\n36) wil: B B1 Wil\n\n37) Babamots: Build Y1 G3\n\n38) wil: B G1 Wil\n\n39) Babamots: Move Y2 Orion Y3\n\n40) wil: D B1 Y3 G2 G2\n\n41) Babamots: Move R2 G3 G2\n\n42) wil: M B1 Wil Gee3\n\n43) Babamots: Attack B1 G2\n\n44) wil: B B2 Gee3\n\n45) Babamots: Build B2 G2\n\n46) wil: M B1 Gee3 G2\n\n47) Babamots: Trade B1 G1 G2\n\n48) wil: B B1 G2\n\n49) Babamots: Sacrifice Y2 Y3\nMove Y3 G3 Orion\nMove Y3 Orion Gee3\n\n50) wil: S Y2 Gee3\nM B2 Gee3 G2\nC G2 B\nD G1 Wil Y3 Y3\n\n51) Babamots: Build Y2 G3\n\n52) wil: B G1 Wil\n\n53) Babamots: Build Y2 Orion\n\n54) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB B1 Wil\n\tBabamots: I think that y3 investment may not work out for you. Kinda like my mutual fund account.\n\twil: I think that&#39;s the least of my troubles\n\n55) Babamots: Trade Y3 B3 Babamots\n\n56) wil: D B1 Wil Y3 Why3\n\n57) Babamots: Move B3 Babamots Orion\n\n58) wil: M B1 Wil Y3\n\n59) Babamots: Move Y2 Orion Y3\n\n60) wil: S G3 Wil\nB B1 Why3\nB B2 Why3\nB G3 Wil\n\n61) Babamots: Sacrifice R2 G2\nAttack B1 Y3\nAttack G2 Y3\n\n62) wil: M B1 Why3 Orion\n\n63) Babamots: Sacrifice G2 Y3\nBuild B2 Y3\nBuild B3 Y3\n\n64) wil: B R1 Wil\n\n65) Babamots: Build R2 G3\n\n66) wil: M R1 Wil Y3\n\n67) Babamots: Move Y1 Orion G3\n\n68) wil: S G3 Wil\nB G2 Y3\nB R2 Y3\nB G3 Wil\n\n69) Babamots: Sacrifice Y2 Y3\nMove B1 Y3 Wil\nMove B2 Y3 Wil\n\n70) wil: S G3 Wil\nB G3 Wil\nB R3 Wil\nB R3 Y3\n\n71) Babamots: Sacrifice Y3 Gee3\nMove B3 Y3 Wil\nMove Y1 G3 Wil\nMove Y1 G3 Wil\nCatastrophe Wil B\n\n72) wil: S B1 Orion\nT R3 Y3 Wil\nC Wil Y\n\n\twil: Gg\n\tBabamots: Thanks! The crews of your ships that surrender will be shown mercy :-).\n\nHomeworlds Online (SDG# 34744)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.26, Ended: 2019.1.5\nParticipants: ts52 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks. You too!\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) goulo: Build G1 Goulo\n\n8) ts52: Build B1 Ts52\n\n9) goulo: Trade G1 R1 Goulo\n\n10) ts52: Trade B1 R1 Ts52\n\n11) goulo: Build Y1 Goulo\n\n12) ts52: Build G1 Ts52\n\n13) goulo: Build Y2 Goulo\n\n14) ts52: Build B1 Ts52\n\n15) goulo: Trade Y2 B2 Goulo\n\n16) ts52: Build G1 Ts52\n\n17) goulo: Build Y2 Goulo\n\n18) ts52: Discover G1 Ts52 B3 Gonzo\n\n19) goulo: Discover Y1 Goulo G2 Verdo\n\n20) ts52: Discover B1 Ts52 G3 Kermit\n\n21) goulo: Discover B2 Goulo Y2 Flavo\n\n22) ts52: Build B2 Kermit\n\n23) goulo: Sacrifice G3 Goulo\nBuild B3 Flavo\nBuild B3 Flavo\nBuild Y2 Verdo\n\n24) ts52: Build G1 Ts52\n\n25) goulo: Move Y2 Verdo Gonzo\n\n26) ts52: Discover G1 Ts52 R3 Elmo\n\n27) goulo: Trade B3 G3 Flavo\n\n28) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n29) goulo: Sacrifice R1 Goulo\nAttack G2 Gonzo\n\n30) ts52: Discover B1 Ts52 Y3 Bigbird\n\n31) goulo: Build Y3 Verdo\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Bigbird\nBuild R1 Ts52\n\n33) goulo: Trade B3 R3 Flavo\n\n34) ts52: Discover B3 Bigbird R2 Tully\n\n35) goulo: Sacrifice G3 Flavo\nBuild G3 Gonzo\nBuild Y3 Goulo\nBuild B3 Flavo\n\n36) ts52: Move G1 Ts52 Bigbird\n\n37) goulo: Move B3 Flavo Kermit\n\n38) ts52: Move R1 Ts52 Bigbird\n\n39) goulo: Sacrifice Y2 Goulo\nMove G3 Gonzo Ts52\nMove B3 Kermit Ts52\n\n40) ts52: Attack B3N Ts52\n\tts52: Well crap, how did I not see that coming? Well played.\n\n41) goulo: Sacrifice R3 Flavo\nAttack R1 Ts52\nAttack B3 Ts52\nAttack G3 Ts52\n\tgoulo: I almost didn&#39;t notice this myself! Like you probably were, I was focussed on the more usual &quot;catastrophe strategy&quot; of destroying your homeworld instead of capturing all your ships there.\r\n\r\nIt seemed a tough situation for you with almost no movement ability!\r\n\r\ninteresting good game!\r\n\r\nhappy new year!\n\tts52: Yeah, getting shut out of yellow really hurt. Good game, and Happy New Year!\n\n\nHomeworlds Online (SDG# 34747)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.27, Ended: 2018.12.29\nParticipants: mneme (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: OK... Homeworlds Tournament, try 2. Thanks for being willing to do this, mneme and Babamots! Have fun!  :)\n\n2) mneme: Homeworld R1 G3 B3\n\tmneme: Indeed.  Also, as we both know, this is a re-do of game #34708 (http://superdupergames.org/main.html?page=play_homeworlds&amp;num=34708)\r\n\r\nMoves:\r\n1: \thomeworld y3 b1 g3\thomeworld r1 g3 b3\r\n2: \tbuild g1 Laurie_Menke\tbuild b1 mneme\r\n3: \ttrade g1 r1 Laurie_Menke\tbuild b1 mneme\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Thanks for putting the moves in an easy to find location!\n\n4) mneme: Build B1 Mneme\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tmneme: You&#39;re welcome--as much for my benefit as yours!  huh--I didn&#39;t even realize I&#39;d started it as a small universe game!\n\n6) mneme: Build B1 Mneme\n\tLaurie_Menke: Oh! I thought that was on purpose!  :)  Just FYI... I will be on the road again from tomorrow (Thursday) through Sunday or possibly Monday.  I definitely won&#39;t time out again, but may play slowly while I&#39;m traveling. Sorry...\n\tmneme: I was experimenting with SU right before the tournament, but yeah, I just went with large/small because I kinda hate goldilocs starts and didn&#39;t want to give you a great headsteart, not really thinking about the fact that I was setting up SU as as a result.\r\n\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Makes sense!\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) Laurie_Menke: Build R1 Laurie_menke\n\tmneme: And yeah; playing slowly is fine; I mostly don&#39;t think about games when I&#39;m not either making a move or reviewing the move I just made, so it doesn&#39;t bother me when the timing slows down.\n\tLaurie_Menke: Thank you! I should be good now for a while. I don&#39;t leave again until the 14th, and that&#39;s on vacation not business, so I&#39;ll still have time to play.  :)\n\n10) mneme: Build B2 Mneme\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) mneme: Trade B2 G2 Mneme\n\n13) Laurie_Menke: Build R2 Laurie_menke\n\n14) mneme: Discover G2 Mneme Y2 Caliope\n\n15) Laurie_Menke: Move G1 Laurie_menke Caliope\n\n16) mneme: Build B2 Mneme\n\n17) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\n18) mneme: Trade B2 R2 Mneme\n\n19) Laurie_Menke: Move G1 Caliope Mneme\n\n\tmneme: Ack.  I don&#39;t know why I don&#39;t get reliable game updates, but its cost me games.  move was obv a g1 mneme\n\tLaurie_Menke: Alas... OK... Babamots... I think we just need to stick with the original results and say mneme won. We both know they&#39;re the better player and would have won eventually. Thank you both for giving this a second shot! Happy New Year!  :)\n\tmneme: Ug.  I&#39;d be willing to give it a third try if you&#39;re game (prolly wouldn&#39;t take more than a day to set it up); that feels a lot less dirty than just calling the game for me despite my own timeout.  If I can also start a wil game, that should make it easier to maintain time.\n\tLaurie_Menke: I will leave that up to you and Babamots, but I really don&#39;t mind just saying we both know you would have won.\n\tBabamots: Would you guys like to play again with &quot;soft&quot; timers? I only put &quot;hard time&quot; in the tournament rules because I knew there would be flakey people. They forget that they were ever in a tournament, the game never ends, and the game list gets cluttered. I trust you two to not wander off.\n\tLaurie_Menke: I&#39;m willing if you are, mneme! Thanks, Babamots!  :)\n\tLaurie_Menke: Hi Babamots (and mneme), I&#39;m sorry to do this, but I&#39;m just going to withdraw from the Homeworlds Tournament. I&#39;m in last place anyway and I&#39;m just not able to keep up with my travel schedule. Sorry for the problems I&#39;ve caused. I&#39;ll email you this info as well, Babamots.  Thanks for all the fun, everyone!  :)\n\nHomeworlds Online (SDG# 34751)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.28, Ended: 2018.12.1\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Felix: Homeworld Y1 G3 Y3 *\n\twil: GL\n\tFelix: HF!\n\n3) wil: B G1 Wil\n\tFelix: Probably not the best time for me to be experimental, but oh well.\n\n4) Felix: Build Y1 Felix\n\twil: Woah\r\n\n\n5) wil: T G1 Y1 Wil\n\n6) Felix: Discover Y1 Felix G2 Out\n\n7) wil: B Y2 Wil\n\n8) Felix: Build Y2 Out\n\n9) wil: D Y1 Wil G3 G3\n\n10) Felix: Move Y1 Out G3\n\n11) wil: D Y1 G3 G2 G2\n\n12) Felix: B Y3 G3\n\n13) wil: B Y3 G2\n\n\tFelix: Well that didn&#39;t work at all :)\n\nHomeworlds Online (SDG# 34741)\nStarted: 2018.11.29, Ended: 2019.1.23\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld R3 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Trade Y1 B1 Trydnt\n\n10) ts52: Trade Y2 B2 Ts52\n\n11) Trydnt: Build B1 Trydnt\n\n12) ts52: Discover B2 Ts52 G1 Robin\n\n13) Trydnt: Discover B1 Trydnt G3 G3\n\n14) ts52: Build G1 Ts52\n\n15) Trydnt: Move Y2 Trydnt G3\n\n16) ts52: Trade G1 R1 Ts52\n\n17) Trydnt: Build G1 Trydnt\n\n18) ts52: Build R1 Ts52\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) ts52: Move R1 Ts52 Robin\n\n21) Trydnt: Build R2 Trydnt\n\n22) ts52: Build G1 Ts52\n\n23) Trydnt: Move R1 Trydnt G3\n\n24) ts52: Build R2 Robin\n\n25) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild R3 Trydnt\n\n26) ts52: Trade R2 Y2 Robin\n\n27) Trydnt: Trade R3 G3 Trydnt\n\n28) ts52: Move G1 Ts52 Robin\n\n29) Trydnt: Discover R2 G3 Y1 Y1\n\n30) ts52: Sacrifice G3 Ts52\nBuild Y2 Ts52\nBuild Y3 Ts52\nBuild Y3 Robin\n\n31) Trydnt: Build Y3 G3\n\n32) ts52: Trade Y2 G2 Ts52\n\n33) Trydnt: Discover Y2 G3 G1 G1\n\n34) ts52: Build G2 Ts52\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 G3\nBuild Y2 G1\n\n36) ts52: Move R1 Ts52 Robin\n\n37) Trydnt: Trade R3 G3 Trydnt\n\n38) ts52: Discover B2 Robin R3 Elmo\n\n39) Trydnt: Build B1 G3\n\n40) ts52: Sacrifice G2 Ts52\nBuild B3 Elmo\nBuild G2 Robin\n\n41) Trydnt: Move R3 G3 G1\n\n42) ts52: Move G2 Robin Elmo\n\n43) Trydnt: Move B1 G3 G1\n\n44) ts52: Move Y2 Robin Elmo\n\n45) Trydnt: Move B1 Trydnt Elmo\n\n46) ts52: Move B2 Elmo Robin\n\n47) Trydnt: Build G2 Trydnt\n\n48) ts52: Build B3 Robin\n\n49) Trydnt: Sacrifice G2 Trydnt\nBuild B3 G1\nPass\n\n50) ts52: Attack B1N Elmo\n\n51) Trydnt: Discover B3 G1 G3 G33\n\n52) ts52: D B3 Robin G2 Oscar\n\n53) Trydnt: Sacrifice Y2 G1\nMove R2 Y1 Ts52\nMove R2 Y1 Ts52\n\n54) ts52: A R2 Ts52\n\n55) Trydnt: Move R3 G1 Ts52\nCatastrophe Ts52 R\n\n56) ts52: Move R1 Robin Oscar\n\n57) Trydnt: Sacrifice Y3 G3\nMove B1 G3 Ts52\nMove B1 G1 Ts52\nMove B3 G33 Ts52\nCatastrophe Ts52 B\n\n\tts52: Good game! Well played.\n\tTrydnt: You too :)\n\nHomeworlds Online (SDG# 34740)\nStarted: 2018.11.29, Ended: 2018.12.2\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34754)\nStarted: 2018.11.29, Ended: 2019.1.30\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) ts52: Homeworld R1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build R1 Trydnt\n\n8) ts52: Build Y1 Ts52\n\n9) Trydnt: Build R2 Trydnt\n\n10) ts52: Build Y1 Ts52\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) ts52: Discover Y1 Ts52 G3 Kermit\n\n13) Trydnt: Discover Y2 Trydnt G1 G1\n\n14) ts52: Build Y2 Ts52\n\n15) Trydnt: Build R2 Trydnt\n\n16) ts52: Trade Y2 R2 Ts52\n\n17) Trydnt: Build Y2 G1\n\tts52: Sorry for the delay.\n\n18) ts52: Build G1 Ts52\n\n19) Trydnt: Discover Y2 G1 B3 B3\n\n20) ts52: Move R2 Ts52 Kermit\n\n21) Trydnt: Move R1 Trydnt G1\n\n22) ts52: Trade Y1 B1 Ts52\n\n23) Trydnt: Discover R1 Trydnt Y1 Y1\n\n24) ts52: Build B1 Ts52\n\n25) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 G1\nBuild R3 Trydnt\n\n26) ts52: Build R3 Kermit\n\n27) Trydnt: Sacrifice Y2 G1\nMove R1 Y1 Kermit\nMove R2 Y1 Kermit\nCatastrophe Kermit R\n\n28) ts52: Trade B1 R1 Ts52\n\n29) Trydnt: Trade R3 G3 Trydnt\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) Trydnt: Build R2 Trydnt\n\n32) ts52: Build B1 Ts52\n\n33) Trydnt: Discover R2 Trydnt G1 G11\n\n34) ts52: Move B1 Ts52 Kermit\n\n35) Trydnt: Build G2 Trydnt\n\n36) ts52: Discover G1 Ts52 B3 Grover\n\n37) Trydnt: Trade G2 B2 Trydnt\n\n38) ts52: Build G2 Grover\n\n39) Trydnt: Move B2 Trydnt G1\n\n40) ts52: Build G2 Ts52\n\n41) Trydnt: Build G2 Trydnt\n\n42) ts52: Trade G2 Y2 Grover\n\n43) Trydnt: Trade R3 Y3 G1\n\n44) ts52: Discover G2 Ts52 B3 Gonzo\n\n45) Trydnt: Move B2 G1 Kermit\n\n46) ts52: Discover B1 Ts52 Y3 Bigbird\n\n47) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Kermit\nAttack Y1 Kermit\n\n48) ts52: Trade G2 R2 Gonzo\n\n49) Trydnt: Attack B1 Kermit\n\n50) ts52: B G2 Ts52\n\n51) Trydnt: Move Y3 G1 Gonzo\n\n52) ts52: S G2 Ts52\nB G2 Ts52\nB B1 Bigbird\n\n53) Trydnt: Sacrifice R1 G1\nAttack R2 Gonzo\n\n54) ts52: Trade B1 R1 Bigbird\n\n55) Trydnt: Build B1 Kermit\n\n56) ts52: Discover G1 Grover Y1 Scooter\n\n57) Trydnt: Build Y2 Kermit\n\n58) ts52: Move G2 Ts52 Bigbird\n\n59) Trydnt: Sacrifice Y2 B3\nMove B1 Kermit Ts52\nMove B1 Kermit Ts52\n\n60) ts52: Build G1 Ts52\n\n61) Trydnt: Sacrifice G2 Trydnt\nBuild B3 Ts52\nCatastrophe Ts52 B\nBuild R2 Gonzo\n\n62) ts52: Move R1 Bigbird Scooter\n\n63) Trydnt: Sacrifice Y3 Gonzo\nMove R2 Gonzo Ts52\nMove R2 Gonzo Ts52\nMove R1 Kermit Ts52\nCatastrophe Ts52 R\n\tts52: Good game!\n\tTrydnt: well played :)\n\n\nHomeworlds Online (SDG# 34756)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.29, Ended: 2019.1.2\nParticipants: Trydnt (S), Felix (N)\nWinner: Trydnt\n\n1) Felix: Homeworld B2 R3 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tFelix: Hello again! Good luck and have fun\n\n3) Felix: Build G1 Felix\n\n4) Trydnt: Build G1 Trydnt\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Felix: Build Y2 Felix\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Felix: Discover Y1 Felix G1 Out\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) Felix: Build Y2 Out\n\n12) Trydnt: Build Y3 G3\n\n13) Felix: Build Y3 Felix\n\n14) Trydnt: Discover Y1 G3 G2 G2\n\n15) Felix: Discover Y1 Out Y3 Intrepid\n\n16) Trydnt: Trade Y2 R2 Trydnt\n\n17) Felix: T Y2 R2 Felix\n\n18) Trydnt: Build Y2 G2\n\n19) Felix: Build Y2 Felix\n\n20) Trydnt: Build G1 Trydnt\n\n21) Felix: Build G1 Felix\n\n22) Trydnt: Trade G1 B1 Trydnt\n\n23) Felix: Trade G1 B1 Felix\n\n24) Trydnt: Build G1 Trydnt\n\n25) Felix: Move B1 Felix Out\n\n26) Trydnt: Move B1 Trydnt G3\n\n27) Felix: Build B1 Out\n\n28) Trydnt: Build B2 G3\n\n29) Felix: Move B1 Out Intrepid\n\n30) Trydnt: Trade B1 R1 G3\n\n31) Felix: Trade B1 G1 Intrepid\n\n32) Trydnt: Move Y3 G3 Out\n\n33) Felix: Build G2 Intrepid\n\n34) Trydnt: Move G1 Trydnt Intrepid\n\n35) Felix: Sacrifice Y2 Felix\nMove G1 Intrepid Trydnt\nMove G2 Intrepid Trydnt\n\n36) Trydnt: Trade G3 R3 Trydnt\n\n37) Felix: Trade G1 R1 Trydnt\n\n38) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nAttack G2 Trydnt\n\n39) Felix: Discover Y2 Out G3 In\n\n40) Trydnt: Build Y2 Out\n\n41) Felix: Sacrifice Y1 Intrepid\nMove B1 Out In\n\n42) Trydnt: Move Y3 Out In\n\n43) Felix: Sacrifice Y2 In\nMove Y3 Felix Out\nMove Y3 Out G3\n\n44) Trydnt: Sacrifice R1 G3\nAttack B1 In\n\n45) Felix: Sacrifice R2 Felix\nAttack B2 G3\nPass\n\n46) Trydnt: Move Y2 G2 G3\n\n47) Felix: Trade Y3 R3 G3\n\n48) Trydnt: Discover Y2 G3 Y1 Y1\n\tFelix: My turn to threaten your little guys :)\n\n49) Felix: Trade B2 Y2 G3\n\n50) Trydnt: Build Y3 Out\n\n51) Felix: Build R1 G3\n\n52) Trydnt: Sacrifice G1 Intrepid\nBuild Y3 G2\n\n53) Felix: Move R1 G3 Trydnt\n\n54) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Trydnt\n\n55) Felix: Build G1 Felix\n\n56) Trydnt: Move R1 Trydnt In\n\n57) Felix: Trade G1 B1 Felix\n\n58) Trydnt: Build G1 Trydnt\n\n59) Felix: Move R3 G3 Y1\n\n60) Trydnt: Move Y2 Y1 In\n\n61) Felix: Build G1 Felix\n\n62) Trydnt: Build G2 Trydnt\n\n63) Felix: Sacrifice Y2 G3\nMove B1 Felix Y1\nMove G1 Felix Y1\n\n64) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 In\nBuild R1 In\n\n65) Felix: Build B1 Y1\n\n66) Trydnt: Build B2 In\n\n67) Felix: Discover B1 Y1 G3 Grinch\n\n68) Trydnt: Sacrifice B1 In\nTrade Y3 B3 Out\n\n69) Felix: T G3 Y3 Felix\n\n70) Trydnt: Move Y1 G2 Grinch\n\n71) Felix: B G2 Y1\n\n72) Trydnt: Build G3 Trydnt\n\n73) Felix: Sacrifice G2 Y1\nBuild B1 Y1\nBuild B3 Grinch\n\n74) Trydnt: Move Y1 Grinch Out\n\n75) Felix: Discover G1 Y1 B3 Walter\n\n76) Trydnt: Sacrifice Y3 In\nMove Y3 G2 Out\nMove Y3 Out Felix\nMove Y1 Out Felix\n\n77) Felix: Sacrifice Y3 Felix\nMove G1 Walter Trydnt\nCatastrophe Trydnt Green\nMove B3 Grinch Trydnt\nMove R3 Y1 Felix\n\n78) Trydnt: Sacrifice R1 In\nAttack R3 Felix\n\n\tFelix: Nicely done!\n\tTrydnt: Thanks well played!\n\nHomeworlds Online (SDG# 34760)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.29, Ended: 2018.12.5\nParticipants: goulo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) goulo: Homeworld R3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\tgoulo: howdy\n\tTrydnt: build g1 trydnt\n\n4) goulo: Build G1 Goulo\n\tTrydnt: oops typed that in the wrong spot and gave my move away! how will I recover?! howdy to you to compadre\n\tgoulo: :)\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Trydnt: Build B1 Trydnt\n\n8) goulo: Build Y1 Goulo\n\n9) Trydnt: Discover B1 Trydnt G1 G1\n\n10) goulo: Trade Y1 G1 Goulo\n\n11) Trydnt: Build B2 G1\n\n12) goulo: Trade G3 B3 Goulo\n\n13) Trydnt: Trade B2 Y2 G1\n\n14) goulo: Build Y1 Goulo\n\n15) Trydnt: Build B2 G1\n\n16) goulo: Trade Y1 R1 Goulo\n\n17) Trydnt: Trade B2 R2 G1\n\n18) goulo: Build Y1 Goulo\n\n19) Trydnt: Build B2 G1\n\n20) goulo: Discover Y1 Goulo G2 Verdo\n\n21) Trydnt: Build R1 G1\n\n22) goulo: Build G1 Goulo\n\n23) Trydnt: Move B2 G1 Verdo\n\n24) goulo: Discover Y1 Verdo Y1 Flavo\n\n25) Trydnt: Build G2 Trydnt\n\n26) goulo: Discover G1 Goulo Y2 Flavumo\n\n27) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Verdo\nBuild B3 G1\n\n28) goulo: Trade B3 G3 Goulo\n\n29) Trydnt: Build B3 Verdo\n\n30) goulo: Sacrifice G3 Goulo\nBuild Y2 Flavo\nBuild Y3 Goulo\nBuild Y3 Goulo\n\n31) Trydnt: Trade B3 R3 Verdo\n\n32) goulo: Build G2 Goulo\n\n33) Trydnt: Build B3 Verdo\n\n34) goulo: Discover Y1 Goulo G2 Verdumo\n\n35) Trydnt: Build G3 Trydnt\n\n36) goulo: Build G3 Flavumo\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G1\nBuild R1 Verdo\n\n38) goulo: Move G1 Flavumo Flavo\n\n39) Trydnt: Move G3 Trydnt Flavo\n\n40) goulo: Sacrifice Y3 Goulo\nMove G1 Flavo Trydnt\nMove G3 Flavumo Flavo\nMove G3 Flavo Trydnt\n\n41) Trydnt: Sacrifice R2 G1\nAttack G3 Trydnt\nAttack G1 Trydnt\n\n\tgoulo: I was hallucinating about a desperate ploy... seems a suitable moment to resign this lost game! congrats!\n\tTrydnt: good game\n\tDraw5PlayAll: I would have bombed those greens @ Trydnt, even though north could just send the R3@Verdo to goulo and the B3@g1 to Trydnt... but it would have been a nice desperate move\n\nHomeworlds Online (SDG# 34762)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.29, Ended: 2018.12.8\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Trydnt: Homeworld B2 R3 G3\n\tdlwillson: GLHF!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Trydnt: Build Y2 Trydnt\n\n9) dlwillson: T Y1 R1 Dlwillson\n\n10) Trydnt: Build G1 Trydnt\n\n11) dlwillson: Build R1 Dlwillson\n\n12) Trydnt: Trade G1 R1 Trydnt\n\n13) dlwillson: Build R2 Dlwillson\n\n14) Trydnt: Build R2 Trydnt\n\n15) dlwillson: Discover R1 Dlwillson G2 Field\n\n16) Trydnt: Discover R2 Trydnt G1 G1\n\n17) dlwillson: D R2 Dlwillson B2 Sea\n\n18) Trydnt: Move Y1 Trydnt G1\n\n19) dlwillson: B G1 Dlwillson\n\n20) Trydnt: Build Y1 G1\n\n21) dlwillson: M Y2 Dlwillson Field\n\n22) Trydnt: Discover Y1 G1 G2 G2\n\n23) dlwillson: S G3 Dlwillson\nB R2 Sea\nB R3 Field\nB R3 Dlwillson\n\n24) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G2\nBuild Y3 G1\nBuild Y3 Trydnt\n\n25) dlwillson: B Y3 Field\n\n26) Trydnt: Trade Y3 G3 Trydnt\n\n27) dlwillson: S Y2 Field\nD R3 Field B1 Sky\nM R2 Sea Sky\n\n28) Trydnt: Move R1 Trydnt G1\n\n29) dlwillson: Trade R2 G2 Sky\n\n30) Trydnt: Discover R1 G1 R2 R2\n\n31) dlwillson: Build G1 Sky\n\n32) Trydnt: Sacrifice Y3 G1\nMove R1 R2 Dlwillson\nMove R2 G1 G2\nMove R2 G2 Dlwillson\nCatastrophe Dlwillson R\n\n33) dlwillson: Build G3 Dlwillson\n\n34) Trydnt: Discover Y1 G1 B2 B2\n\n35) dlwillson: T R3 Y3 Sky\n\n36) Trydnt: Trade Y1 G1 B2\n\n37) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB G3 Sky\nB G3 Dlwillson\n\n38) Trydnt: Sacrifice Y1 G2\nMove G1 B2 Sky\nCatastrophe Sky G\n\n39) dlwillson: T Y1 G1 Sky\n\n40) Trydnt: Build Y1 Trydnt\n\n41) dlwillson: S G3 Dlwillson\nB G1 Sky\nB G2 Sky\nB G3 Dlwillson\n\n\nHomeworlds Online (SDG# 34759)\nVariants: &quot;Hard time&quot;\nStarted: 2018.11.29, Ended: 2019.2.5\nParticipants: Babamots (S), Trydnt (N)\nWinner: Babamots\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) Babamots: Homeworld R2 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Babamots: Build G1 Babamots\n\n5) Trydnt: Trade G1 B1 Trydnt\n\tBabamots: Good luck and all that!\r\n\r\nI know you less than some of the other players. I think someone said you&#39;re in the UK? I&#39;m in the eastern US like most of the Homeworlds people.\n\tTrydnt: And to you! Yeah I was living near Wil and Andy and everyone in MD but moved back to the UK in May and have been trying to slowly convert everyone to HW over here\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) Trydnt: Build B2 Trydnt\n\n8) Babamots: Build B2 Babamots\n\n9) Trydnt: Discover B2 Trydnt G1 G1\n\n10) Babamots: Trade B1 Y1 Babamots\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild B1 G1\nBuild B3 G1\nBuild B3 Trydnt\n\n12) Babamots: Build B3 Babamots\n\n13) Trydnt: Trade B2 Y2 G1\n\n14) Babamots: Discover B3 Babamots G3 Risa\n\n15) Trydnt: Trade B3 G3 Trydnt\n\n16) Babamots: Build G1 Babamots\n\n17) Trydnt: Build Y1 G1\n\n18) Babamots: Build Y1 Babamots\n\n19) Trydnt: Build Y2 G1\n\n20) Babamots: Move Y1 Babamots Risa\n\n21) Trydnt: Trade Y1 R1 G1\n\n22) Babamots: Trade G1 R1 Babamots\n\n23) Trydnt: Build R1 G1\n\n24) Babamots: Move R1 Babamots Risa\n\n25) Trydnt: Discover Y2 G1 B3 B3\n\n26) Babamots: Build B2 Risa\n\n27) Trydnt: Trade B3 Y3 G1\n\n28) Babamots: Discover Y1 Babamots B3 Bolarus\n\n29) Trydnt: Trade Y2 G2 B3\n\n30) Babamots: Build R2 Risa\n\n31) Trydnt: Build G1 B3\n\n32) Babamots: Trade R2 Y2 Risa\n\n33) Trydnt: Move Y2 G1 Bolarus\n\n34) Babamots: Move Y1 Bolarus Babamots\n\n35) Trydnt: Build Y1 G1\n\n36) Babamots: Move Y1 Risa G1\n\n37) Trydnt: Discover Y1 G1 Y3 Y3\n\n38) Babamots: Build Y2 Babamots\n\n39) Trydnt: Attack Y1 G1\n\n40) Babamots: Build R2 Risa\n\n41) Trydnt: Discover Y2 Bolarus G2 G2\n\n42) Babamots: Discover Y1 Babamots B3 Andoria\n\n43) Trydnt: Build G1 Trydnt\n\n44) Babamots: Build G2 Babamots\n\n45) Trydnt: Sacrifice Y2 G2\nMove G1 B3 Babamots\nMove G2 B3 Babamots\nCatastrophe Babamots G\n\n46) Babamots: Trade B2 G2 Babamots\n\n47) Trydnt: Build B2 G1\n\n48) Babamots: Move B3 Risa Babamots\n\n49) Trydnt: Discover B2 G1 G3 G3\n\n50) Babamots: Build B3 Risa\n\n51) Trydnt: Discover R1 G1 R3 R3\n\n52) Babamots: Build Y2 Babamots\n\n53) Trydnt: Build R2 G1\n\n54) Babamots: Trade R1 G1 Risa\n\n55) Trydnt: Move G1 Trydnt G1\n\n56) Babamots: Move G1 Risa G1\n\n57) Trydnt: Sacrifice Y3 G1\nMove B2 G3 Babamots\nMove B1 G1 Andoria\nMove B1 Andoria Babamots\nCatastrophe Babamots B\n\n58) Babamots: Build Y3 Risa\n\n59) Trydnt: Sacrifice Y1 Y3\nMove R2 G1 Babamots\n\n60) Babamots: Attack R2 Babamots\n\n61) Trydnt: Move R1 G1 Babamots\n\n62) Babamots: Sacrifice R2 Babamots\nAttack R1 Babamots\nAttack Y1 G1\n\n63) Trydnt: Build G2 Trydnt\n\n64) Babamots: Sacrifice Y3 Risa\nMove G1 G1 Trydnt\nMove G2 Babamots G1\nMove G2 G1 Trydnt\nCatastrophe Trydnt G\n\tBabamots: Ooh, you&#39;re not going to like this.\n\n65) Trydnt: Trade B1 G1 Trydnt\n\tBabamots: My first encounter with the tricky red sacrifice thing was a super painful lesson. Here&#39;s my humiliation, if you&#39;re interested:\r\n\r\nhttp://superdupergames.org/?page=archive_play&amp;gid=33901&amp;idx=85\n\n\nHomeworlds Online (SDG# 34764)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.2, Ended: 2019.1.6\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n2) wil: H B3 Y2 G3\n\tFelix: This game is for the tournament, si?\n\twil: Cool\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: T G1 R1 Wil\n\n7) Felix: Build Y1 Felix\n\n8) wil: B R1 Wil\n\n9) Felix: Build Y1 Felix\n\n10) wil: B R2 Wil\n\n11) Felix: Discover Y1 Felix B3 Bluey\n\n12) wil: D R1 Wil B1 B1\n\n13) Felix: Sacrifice G3 Felix\nBuild Y2 Bluey\nBuild Y2 Bluey\nBuild Y3 Felix\n\n14) wil: S G3 Wil\nB R2 B1\nB R2 B1\nB R3 Wil\n\n15) Felix: Discover Y1 Bluey G2 Greeny\n\twil: I never know where these go\n\n16) wil: T R3 Y3 Wil\n\tFelix: Me either. Guns or mobility? I opted for mobility.\n\n17) Felix: Build Y3 Greeny\n\n18) wil: T R2 G2 B1\n\n19) Felix: Trade Y2 R2 Bluey\n\n20) wil: T R2 Y2 B1\n\n21) Felix: Sacrifice Y1 Felix\nMove Y3 Greeny B1\n\n22) wil: S G2 B1\nB R2 B1\nB R3 Wil\n\twil: Yeah...not good\n\n23) Felix: Sacrifice R2 Bluey\nAttack R2 B1\nAttack Y2 B1\n\n24) wil: T R3 G3 Wil\n\tFelix: Me likey :)\n\n25) Felix: Attack R1 B1\n\n26) wil: D Y3 Wil G1 G1\n\n27) Felix: Build Y1 Greeny\n\n28) wil: M R1 Wil G1\n\n29) Felix: Trade R1 G1 B1\n\n30) wil: M R1 G1 Greeny\n\n31) Felix: Sacrifice R2 B1\nAttack R1 Greeny\nPass\n\n32) wil: B R1 Wil\n\n33) Felix: Build R2 Greeny\n\n34) wil: M R1 Wil G1\n\n35) Felix: Move R2 Greeny B1\n\n36) wil: B G1 Wil\n\n37) Felix: B G2 B1\n\n38) wil: D G1 Wil B1 Be1\n\n39) Felix: T G1 B1 B1\n\n40) wil: B G1 Wil\n\n41) Felix: B G2 B1\n\n42) wil: B G3 Be1\n\n43) Felix: Move G2 B1 Bluey\n\n44) wil: T G3 R3 Be1\n\n45) Felix: Build G3 B1\n\n46) wil: B G3 Be1\n\n47) Felix: S Y3 Felix\nM G2 B1 Wil\nM G3 B1 Wil\nM Y3 B1 Wil\nC Wil Green\n\n48) wil: S G3 Be1\nB R2 Wil\nB R3 Be1\nB R3 G1\n\n49) Felix: Sacrifice R2 B1\nAttack R2 Wil\nAttack R2 Wil\n\twil: Just so it doesn&#39;t look like a massacre\n\tFelix: Huh, interesting. I was sure you&#39;d sacrifice your Y3 to move two ships home and a medium into my system to attack. Maybe I misread it and you couldn&#39;t do that. Either way, good game!\n\twil: I could but it would only delay 2.moves\n\n\nHomeworlds Online (SDG# 34752)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.2, Ended: 2018.12.16\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) eliscinsky: Homeworld R1 B3 G3\n\n3) wil: B G1 Wil\n\teliscinsky: For the Great Homeworlds Tournament\n\teliscinsky: Hi wil, great to see you back. Looking forward to learning a lot from our game. :)\r\nGood Luck!\n\twil:  is the short universe intentional\n\twil: I&#39;ll hold off a minute,\n\teliscinsky: Thanks, I was so excited to play you I lost my mine.\n\n4) eliscinsky: B G1 Eliscinsky\n\teliscinsky: Cheers!\n\n5) wil: T G1 B1 Wil\n\twil: No worries\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) wil: B B1 Wil\n\n8) eliscinsky: B G1 Eliscinsky\n\n9) wil: D B1 Wil G3 G3\n\teliscinsky: Ah, nice move there.\n\n10) eliscinsky: Discover G1 Eliscinsky B2 Rigel\n\n11) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\twil: Are you in the tourney Is this legit\n\n12) eliscinsky: B G1 Rigel\n\teliscinsky: Yes we&#39;re both in the tourney, and this is a legit game.  Are you good with that?  Playing for all the marbles! ;)\n\twil: Good cool, I am way bhind\n\n13) wil: S B2 G3\nT B2 Y2 G3\nT B3 G3 Wil\n\n14) eliscinsky: T G1 R1 Rigel\n\twil: Waiting on stroke MRI results\n\teliscinsky: Hoping your results are all positive for you. \n\n15) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\twil: Came thru again...\n\n16) eliscinsky: B G1 Rigel\n\teliscinsky: Great, good to hear. Congrats! \n\teliscinsky: BTW, that was a cool couple of moves. I&#39;ll have to remember that for my next game. \n\n17) wil: S B2 G3\nT B2 R2 G3\nT B3 G3 Wil\n\n18) eliscinsky: T G1 Y1 Rigel\n\twil: Blue freeze out is powerful\n\n19) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\n20) eliscinsky: Discover Y1 Rigel G3 Orion\n\n21) wil: M B2 G3 Rigel\n\n22) eliscinsky: B G1 Rigel\n\n23) wil: B B3 G3\n\n24) eliscinsky: B Y1 Orion\n\n25) wil: S B2 G3\nT B3 Y3 G3\nT B3 Y3 Wil\n\n26) eliscinsky: B Y2 Eliscinsky\n\n27) wil: S R2 G3\nA R1 Rigel\nA G1 Rigel\n\n28) eliscinsky: S Y2 Eliscinsky\nM Y1 Orion Wil\nM Y1 Orion Wil\nC Wil Yellow\n\n29) wil: B B2 Rigel\n\n30) eliscinsky: S Y1 Eliscinsky\nM G1 Rigel Wil\n\n31) wil: S R1 Rigel\nA G1 Wil\n\n32) eliscinsky: Build G1 Eliscinsky\n\n33) wil: B G2 Rigel\n\n34) eliscinsky: Trade G1 Y1 Eliscinsky\n\n35) wil: B B3 G3\n\n36) eliscinsky: Build Y1 Eliscinsky\n\teliscinsky: So I&#39;m effectively back to &quot;Square One&quot; haha!\n\n37) wil: B B3 G3\n\n38) eliscinsky: M Y1 Eliscinsky Rigel\n\twil: Sort of\n\n39) wil: S B2 Rigel\nT B3 G3 G3\nT B3 R3 G3\n\n40) eliscinsky: Build Y1 Eliscinsky\n\n41) wil: S G3 G3\nB B2 G3\nB B3 G3\nB B3 Rigel\n\n42) eliscinsky: Trade Y1 R1 Rigel\n\n43) wil: S B2 G3\nT B2 R2 Rigel\nT B3 G3 G3\n\n44) eliscinsky: Attack G1 Rigel\n\n45) wil: A R1 Rigel\n\n46) eliscinsky: Build G1 Rigel\n\n47) wil: S R2 Rigel\nA G1 Rigel\nA G1 Rigel\n\n48) eliscinsky: T Y1 R1 Eliscinsky\n\n49) wil: S Y3 G3\nM G1 Rigel Eliscinsky\nM G1 Rigel Eliscinsky\nM G2 Rigel Eliscinsky\nC Eliscinsky G\n\n50) eliscinsky: Trade R1 G1 Eliscinsky\n\n51) wil: S Y2 G3\nM G3 G3 Rigel\nM G3 Rigel Eliscinsky\n\teliscinsky: You&#39;ve made this a very frustrating game for me.  However, I&#39;m learning a lot from your strategies. So for that ... Thank you kind Sir!\n\twil: You are welcome!\n\twil: Tis the way we learn\n\n52) eliscinsky: B G1 Eliscinsky\n\teliscinsky: So I&#39;m guessing regardless of what I do next, your next move will be to move three Green Ships into my home world, catastrophe my green, then again regardless what I do next, you move a big red into my home world, and proceeded to take over my home world. Does that about sum it up?\n\n53) wil: S R3 G3\nA G1 Eliscinsky\nA G1 Eliscinsky\nA Y1 Eliscinsky\n\twil: That was the thought.\n\n\teliscinsky: Great game wil. Thanks for the lessons!\n\twil: I like playing, challenge anytime!\n\nHomeworlds Online (SDG# 34768)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.3, Ended: 2018.12.19\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) wil: H B2 Y1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: B Y2 Wil\n\twil: Mother stroke, clean recovery\n\n9) Trydnt: Discover Y1 Trydnt G1 G1\n\n10) wil: D Y1 Wil G3 G3\n\tTrydnt: what?\n\twil: cardiologists,.neurologists, MRI, CTscans\n\n11) Trydnt: Build Y3 G1\n\tTrydnt: Was this a new issue? Happy that you&#39;ve made a clean recovery :)\n\n12) wil: B Y3 G3\n\twil:  3 strokes during open heart surgery\n\n13) Trydnt: Discover Y1 G1 B3 B3\n\tTrydnt: you are a hell of a fighter. it&#39;s been lovely seeing you recover and get back to hw and juggling and the things you love\n\n14) wil: D Y2 Wil Y3 Y3\n\n15) Trydnt: Trade Y2 R2 Trydnt\n\twil: Used up 2.many lives\n\twil: Walking time bomb now\n\n16) wil: B G1 Wil\n\n17) Trydnt: Build Y2 G1\n\n18) wil: T G1 R1 Wil\n\n19) Trydnt: Build R1 Trydnt\n\n20) wil: M Y1 G3 G1\n\n21) Trydnt: Move Y3 G1 B3\n\n22) wil: B R1 Wil\n\n23) Trydnt: Trade Y1 G1 B3\n\n24) wil: T R1 B1 Wil\n\n25) Trydnt: Trade R1 B1 Trydnt\n\n26) wil: B R1 Wil\n\n27) Trydnt: Build G1 B3\n\n28) wil: M B1 Wil G3\n\n29) Trydnt: Trade G1 R1 B3\n\n30) wil: M R1 Wil G3\n\n31) Trydnt: Build R2 B3\n\n32) wil: B R2 Wil\n\n33) Trydnt: Build R3 Trydnt\n\n34) wil: B R3 G3\n\n35) Trydnt: Move R3 Trydnt G1\n\n36) wil: D Y1 G1 R3 R3\n\n37) Trydnt: Build Y1 B3\n\n38) wil: B B1 G3\n\n39) Trydnt: Build G1 B3\n\n40) wil: B B2 G3\n\tTrydnt: this is one of those moves where I&#39;d love to have a game duplicator to play a few different versions going forward\n\twil: Yup\n\n41) Trydnt: Move B1 Trydnt G1\n\n42) wil: Move B1 G3 G1\n\n43) Trydnt: Attack B1 G1\n\n44) wil: M B1 G3 G1\n\n45) Trydnt: Attack B1 G1\n\n46) wil: B B2 G3\n\n47) Trydnt: Sacrifice B1 G1\nTrade R2 G2 B3\n\n48) wil: M R2 Wil Y3\n\n49) Trydnt: Move G1 B3 Wil\n\n50) wil: A G1 Wil\n\n51) Trydnt: Move G1 B3 Wil\n\n52) wil: M G1 Wil G3\n\n53) Trydnt: Sacrifice Y3 B3\nMove G1 Wil G3\nMove G2 B3 G1\nMove G2 G1 G3\nCatastrophe G3 G\n\n54) wil: B G1 Wil\n\n55) Trydnt: Build Y3 G1\n\n56) wil: S G1 Wil\nB Y3 R3\n\n57) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G1\nBuild R2 B3\nBuild R3 Trydnt\n\n58) wil: B G1 Wil\n\n59) Trydnt: Trade R2 G2 B3\n\n60) wil: B R2 Wil\n\n61) Trydnt: Build G1 B3\n\n62) wil: M G1 Wil R3\n\n63) Trydnt: Move R3 G1 B3\n\n64) wil: B G2 R3\n\n65) Trydnt: Discover G1 B3 B1 B1\n\n66) wil: M G2 R3 B1\n\n67) Trydnt: Sacrifice G1 B1\nBuild B2 G1\n\n68) wil: B G1 R3\n\n69) Trydnt: Discover B2 G1 G3 G3\n\n70) wil: S Y2 Y3\nM G1 R3 Wil\nM R1 Wil Y3\n\n71) Trydnt: Build Y2 B3\n\n72) wil: M R2 Y3 B1\n\n73) Trydnt: Sacrifice B2 G3\nTrade R3 G3 Trydnt\nTrade Y3 R3 G1\n\n74) wil: S Y1 R3\nD G2 B1 Y3 Why3\n\n75) Trydnt: Move R3 G1 Why3\n\n76) wil: D G2 Why3 Y1 Why1\n\n77) Trydnt: Sacrifice B1 G1\nTrade R3 G3 Why3\n\n78) wil: S G3 Wil\nB G2 R3\nB G3 Wil\nB R3 Y3\n\n79) Trydnt: Sacrifice G3 Why3\nBuild G3 B3\nBuild Y3 G1\nBuild B1 G1\n\n80) wil: T R2 B2 B1\n\n81) Trydnt: Sacrifice Y3 G1\nMove G3 B3 Wil\nMove G2 B3 Wil\nCatastrophe Wil G\nMove R3 B3 Wil\n\n\nHomeworlds Online (SDG# 34758)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.3, Ended: 2018.12.4\nParticipants: Wildhide_The_Druid (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n\tWildhide_The_Druid: R3, B1, G3\n\tWildhide_The_Druid: Homeworld (R3, B1, G3)\n\tWildhide_The_Druid: homeworld R3 B1 G3\n\tWildhide_The_Druid: Homeworld(R3, B1, G3)\n\tWildhide_The_Druid: How do I do the commands?\n\tTrydnt: there&#39;s a command box top left of the page\n\nHomeworlds Online (SDG# 34728)\nVariants: &quot;Unrated&quot;\nStarted: 2018.12.4, Ended: 2019.6.24\nParticipants: wil (S), Wildhide_The_Druid (N)\nWinner: wil\n\n\tWildhide_The_Druid: Homeworld R2 B1 G3\n\nHomeworlds Online (SDG# 34757)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.4, Ended: 2019.2.7\nParticipants: Laurie_Menke (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tLaurie_Menke: Hi Trydnt! Have fun!\n\n2) Laurie_Menke: Homeworld B1 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n7) Trydnt: Build B2 Trydnt\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) Trydnt: Discover B2 Trydnt G1 G1\n\n10) Laurie_Menke: Build B2 Laurie_menke\n\n11) Trydnt: Build B3 G1\n\n12) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\n13) Trydnt: Trade B3 Y3 G1\n\n14) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n15) Trydnt: Build B2 G1\n\n16) Laurie_Menke: Discover B1 Laurie_menke G2 Green\n\tLaurie_Menke: discover b1 Laurie_Menke g2 Green\n\tLaurie_Menke: Oops! Didn&#39;t realize I was in chat! Sorry!\n\n17) Trydnt: Trade B2 R2 G1\n\n18) Laurie_Menke: Build R1 Laurie_menke\n\n19) Trydnt: Move R2 G1 Green\n\n20) Laurie_Menke: Sacrifice B1 Green\nTrade R1 B1 Laurie_menke\n\n21) Trydnt: Build Y1 G1\n\n22) Laurie_Menke: Build R1 Laurie_menke\n\n23) Trydnt: Build Y1 G1\n\n24) Laurie_Menke: Discover Y2 Laurie_menke G2 Seeya\n\n25) Trydnt: Move Y1 G1 Green\n\n26) Laurie_Menke: Move B1 Laurie_menke Seeya\n\n27) Trydnt: Build G1 Trydnt\n\n28) Laurie_Menke: Build G1 Laurie_menke\n\n29) Trydnt: Build G2 Trydnt\n\n30) Laurie_Menke: Move G1 Laurie_menke Seeya\n\n31) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 Green\nBuild Y2 Green\n\n32) Laurie_Menke: Sacrifice Y2 Seeya\nMove G1 Seeya G1\nMove G1 G1 Trydnt\n\n33) Trydnt: Sacrifice G1 Trydnt\nBuild R1 Green\n\n34) Laurie_Menke: Build B2 Seeya\n\n35) Trydnt: Build B3 G1\n\n36) Laurie_Menke: Trade B2 Y2 Seeya\n\n37) Trydnt: Sacrifice R1 Green\nAttack G1 Trydnt\n\n38) Laurie_Menke: Build Y2 Seeya\n\n39) Trydnt: Sacrifice Y2 Green\nDiscover B3 G1 G2 G2\nMove Y1 G1 G2\n\n40) Laurie_Menke: Move Y2 Seeya G1\n\n41) Trydnt: Build Y2 G2\n\n42) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack B2 G1\n\n43) Trydnt: Sacrifice R2 Green\nAttack Y2 G1\nAttack B2 G1\n\n44) Laurie_Menke: Build R1 Laurie_menke\n\n45) Trydnt: Trade Y2 R2 G1\n\n46) Laurie_Menke: Discover B1 Seeya G1 Hi\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G1\n\n48) Laurie_Menke: Move Y2 Seeya Hi\n\n49) Trydnt: Move G3 Trydnt Hi\n\n50) Laurie_Menke: Sacrifice Y2 Hi\nMove B1 Hi Trydnt\nMove R1 Laurie_menke Green\n\n51) Trydnt: Sacrifice R2 G1\nAttack B1 Trydnt\nAttack R1 Green\n\n52) Laurie_Menke: Build G2 Laurie_menke\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 Green\nBuild B2 G2\n\n54) Laurie_Menke: Build R1 Laurie_menke\n\n55) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G2\nBuild B3 G1\n\n56) Laurie_Menke: Build R2 Laurie_menke\n\n57) Trydnt: Sacrifice Y2 G2\nMove Y1 Green Laurie_menke\nMove Y1 Green Laurie_menke\n\n58) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack Y1 Laurie_menke\nAttack Y1 Laurie_menke\n\n59) Trydnt: Move Y2 Green Laurie_menke\nCatastrophe Laurie_menke Y\n\n60) Laurie_Menke: Build R2 Laurie_menke\n\tLaurie_Menke: Dude... why are you not finishing me off?\n\n61) Trydnt: Sacrifice Y3 G1\nMove B1 Trydnt Laurie_menke\nMove B1 Trydnt Laurie_menke\nMove B2 G2 Laurie_menke\nCatastrophe Laurie_menke B\n\n\tLaurie_Menke: Thanks for the fun, Trydnt, and congrats on the win!  :)\n\tTrydnt: well played :) always a pleasure\n\nHomeworlds Online (SDG# 34739)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.5, Ended: 2018.12.6\nParticipants: Trydnt (S), phi_618 (N)\nWinner: Trydnt\n\n1) phi_618: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tphi_618: good luck and have fun!\n\n3) phi_618: Build G1 Phi_618\n\n4) Trydnt: Build G1 Trydnt\n\n5) phi_618: Discover G1 Phi_618 B1 Newb1\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) phi_618: Build G1 Newb1\n\n8) Trydnt: Build Y1 Trydnt\n\n9) phi_618: Trade G1 B1 Newb1\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) phi_618: Build G1 Newb1\n\n12) Trydnt: Build Y2 Trydnt\n\n13) phi_618: Build B1 Newb1\n\n14) Trydnt: Build Y2 G3\n\n15) phi_618: Build G1 Phi_618\n\n16) Trydnt: Build Y3 G3\n\n17) phi_618: Trade G1 R1 Phi_618\n\n18) Trydnt: Trade Y2 R2 Trydnt\n\n19) phi_618: Trade B1 R1 Newb1\n\n20) Trydnt: Build Y2 Trydnt\n\n\tphi_618: Thank you for the game.\n\tTrydnt: no worries. you gotta look out for the small piece in the homeworlds at the start. whichever color was taken will leave only two smalls of that color left and so you have to take it or your opponent will be able to monopolize it in the next turn and there will be no smalls left to trade for then they&#39;re in the big guns and you won&#39;t be able to catch up easily\n\tphi_618: Thanks; that&#39;s a good way of explaining what went wrong here in a way easily applicable to future games.\n\tTrydnt: It was one of the best tips my teacher gave me early on. That and if you&#39;re going second it is often best to copy your opponent&#39;s moves in the beginning until you end up in a spot where to do so would open up a larger piece for them.\n\tphi_618: Ahh, kindof an application of the go proverb &quot;Your opponent&#39;s best move is your best move&quot; to the more independent initial stages of Homeworlds.\n\tTrydnt: Yup, in Go it stems from the position of the pieces but in HW it&#39;s really follows from the &quot;focus on the economies&quot; advice and trying to maintain a diverse portfolio scattered around to minimize risk of catastrophe \n\nHomeworlds Online (SDG# 34603)\nVariants: &quot;Unrated&quot;\nStarted: 2018.12.6, Ended: 2018.12.8\nParticipants: Trydnt (S), phi_618 (N)\nWinner: Trydnt\n\n1) phi_618: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld G3 B1 B3 *\n\tphi_618: Good luck and have fun, again. :)\n\n3) phi_618: Build G1 Phi_618\n\tTrydnt: today&#39;s lesson, why you never take a b1 in your homeworld if you are going first\n\tphi_618: And the same would be said for a g1, but a y1 or r1 would have been fine?\n\n4) Trydnt: Build B1 Trydnt\n\tTrydnt: Yes. You start with three pieces. Two of those have to be blue and green then red or yellow for the third. If you take a blue or a green 1 first then your opponent can take the same and that color as a large ship with the remaining color in the other half of their star\n\n5) phi_618: Trade G3 B3 Phi_618\n\tphi_618: So Proverb 1: If your opponent builds a small of a color you do not yet have, do likewise.\r\nProverb 2: Playing second, follow in the footsteps of the first player until a clearer path emerges.\r\nProverb 3: Avoid a b1 or g1 Homeworld if playing first.\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\tphi_618: I guess this isn&#39;t as bad as last time. This time it&#39;s just like I passed my turn, instead of being completely locked out of a color.\n\tphi_618: not a good time to be down a tempo, though, the more I think about the situation.\n\n7) phi_618: Build B2 Phi_618\n\n8) Trydnt: Build B2 Trydnt\n\n9) phi_618: Trade B2 Y2 Phi_618\n\n10) Trydnt: Discover B1 Trydnt G2 G2\n\n11) phi_618: Discover G1 Phi_618 B3 B3\n\n12) Trydnt: Build B2 G2\n\n13) phi_618: Build G1 B3\n\n14) Trydnt: Trade B2 Y2 G2\n\n15) phi_618: Trade G1 Y1 B3\n\n16) Trydnt: Build B2 G2\n\n17) phi_618: Build G1 B3\n\n18) Trydnt: Trade B2 R2 G2\n\n19) phi_618: Trade Y2 R2 Phi_618\n\n20) Trydnt: Move R2 G2 B3\n\n21) phi_618: Move Y1 B3 Phi_618\n\n22) Trydnt: Attack G1 B3\n\n\tphi_618: Thank you for the game.\n\tTrydnt: no worries. I have standing challenges open so down to play anytime\n\nHomeworlds Online (SDG# 34782)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.6, Ended: 2018.12.22\nParticipants: Laurie_Menke (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R3 B2 G3\n\tLaurie_Menke: Hi ajo! Have fun with the 2018 Homeworlds Tournament! (Don&#39;t forget to fill out the start form...)  :)\n\tajo: Will do. Good luck!\n\n2) Laurie_Menke: Homeworld Y1 B2 Y3 *\n\n3) ajo: Build G1 Ajo\n\n4) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\tajo: ...Interesting.\n\tLaurie_Menke: Oh, yeah... I totally screwed up... LOL!  I thought I was trying something clever, but forgot I needed green to pull it off.  ::sigh::\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) ajo: Build G1 Ajo\n\n8) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n9) ajo: Discover G1 Ajo Y1 Alpha\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\n11) ajo: Build Y2 Ajo\n\n12) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n13) ajo: Discover Y1 Ajo B1 Beta\n\n14) Laurie_Menke: Discover Y3 Laurie_menke G3 Green\n\tLaurie_Menke: Well, this is highly unorthodox, but...\n\n15) ajo: Sacrifice G3 Ajo\nBuild Y2 Beta\nBuild Y2 Beta\nBuild Y3 Ajo\n\n16) Laurie_Menke: Discover Y3 Green G1 Hi\n\tajo: Yep, probably not a good move.\n\tLaurie_Menke: Well, in for a penny in for a pound!\n\n17) ajo: Trade Y2 R2 Beta\n\n18) Laurie_Menke: Build Y2 Hi\n\n19) ajo: Sacrifice Y2 Ajo\nDiscover Y2 Beta Y3 Waypoint\nMove Y2 Waypoint Laurie_menke\n\n20) Laurie_Menke: Build G2 Laurie_menke\n\tajo: Check.\n\n21) ajo: Sacrifice R2 Beta\nAttack R1 Laurie_menke\nAttack G2 Laurie_menke\n\tLaurie_Menke: I am in trouble, but I&#39;m not convinced I&#39;m dead yet...\n\n22) Laurie_Menke: Sacrifice Y2 Hi\nDiscover Y3 Hi G3 Interim\nMove Y3 Interim Laurie_menke\n\tajo: Check.\n\n23) ajo: Build Y2 Laurie_menke\nCatastrophe Laurie_menke Yellow\n\tLaurie_Menke: I repeat... I&#39;m in trouble, but I&#39;m not dead.  ;)\n\n24) Laurie_Menke: Build G1 Laurie_menke\n\tajo: ...Check. :)\n\tLaurie_Menke: Alright... THIS time I accept it.  ;)  Good game, ajo! Congrats and thanks for the fun!  :)\n\n25) ajo: Build G2 Laurie_menke\nCatastrophe Laurie_menke Green\n\n\nHomeworlds Online (SDG# 34781)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.7, Ended: 2019.1.6\nParticipants: DodoBirb (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R3 B2 G3\n\n2) DodoBirb: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\tDodoBirb: Is this for the tourney?\n\tajo: Yes, it is. Good luck!\n\n4) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Good Luck!\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) DodoBirb: Build G1 Dodobirb\n\n7) ajo: Build Y1 Ajo\n\n8) DodoBirb: Trade G1 Y1 Dodobirb\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n11) ajo: Build Y2 Ajo\n\n12) DodoBirb: Build Y2 Dodobirb\n\n13) ajo: Build Y2 Ajo\n\n14) DodoBirb: Build Y3 Dodobirb\n\n15) ajo: Sacrifice Y2 Ajo\nMove Y1 Alpha Bluey\nMove Y1 Bluey Dodobirb\nCatastrophe Dodobirb Yellow\n\tajo: Well, I&#39;ll take that invitation.\n\n16) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: That&#39;s probably why I shouldn&#39;t make moves while I&#39;m tired\n\n17) ajo: Discover Y2 Ajo B1 Alpha\n\n18) DodoBirb: Trade G1 B1 Dodobirb\n\n19) ajo: Build G1 Ajo\n\n20) DodoBirb: Build G1 Dodobirb\n\n21) ajo: Trade G1 R1 Ajo\n\n22) DodoBirb: Trade G1 R1 Dodobirb\n\n23) ajo: Move Y2 Alpha Bluey\n\n24) DodoBirb: Sacrifice G1 Bluey\nBuild G1 Dodobirb\n\n25) ajo: Build G1 Ajo\n\n26) DodoBirb: Trade G1 Y1 Dodobirb\n\n27) ajo: Trade G1 B1 Ajo\n\n28) DodoBirb: Build B2 Dodobirb\n\n29) ajo: Build B2 Ajo\n\n30) DodoBirb: Discover B2 Dodobirb G3 Greeny\n\n31) ajo: Trade B2 Y2 Ajo\n\n32) DodoBirb: Build B2 Greeny\n\n33) ajo: Build B3 Ajo\n\n34) DodoBirb: Build B3 Dodobirb\n\n35) ajo: Discover B3 Ajo G1 Alpha\n\n36) DodoBirb: Trade B2 Y2 Greeny\n\n37) ajo: Sacrifice Y2 Ajo\nMove B3 Alpha Bluey\nMove B3 Bluey Dodobirb\nCatastrophe Dodobirb Blue\n\n38) DodoBirb: Build B1 Greeny\n\n39) ajo: Trade Y2 G2 Bluey\n\tDodoBirb: Oh well, I&#39;d be fine calling gg here. I&#39;ve just been making tons of blunders.\n\n40) DodoBirb: Trade B2 Y2 Greeny\n\n41) ajo: Build G1 Bluey\n\tajo: I think I&#39;ve managed to gain an advantage without throwing myself too far off balance; but I don&#39;t see how to press my advantage immediately. It&#39;s a tournament game, so I&#39;ll keep making moves until/unless you resign; and if you resign, heck, I&#39;ll accept the win. ;)\n\tDodoBirb: I guess I&#39;ll make a few more moves. I think I&#39;m going to be dead eventually.\n\n42) DodoBirb: Move R1 Dodobirb Greeny\n\n43) ajo: Trade G1 Y1 Bluey\n\n44) DodoBirb: Build R1 Greeny\n\n45) ajo: Sacrifice G2 Bluey\nBuild Y2 Ajo\nBuild Y3 Bluey\n\n46) DodoBirb: Build B1 Greeny\n\n47) ajo: Discover Y3 Bluey G1 Waypoint\n\n48) DodoBirb: Discover Y1 Dodobirb G1 Smallg\n\n49) ajo: Sacrifice Y1 Ajo\nMove R1 Ajo Waypoint\n\n50) DodoBirb: Build G1 Dodobirb\n\n\tDodoBirb: Uh, now I just feel like I&#39;m delaying the inevitable. I&#39;ll resign.\n\nHomeworlds Online (SDG# 34790)\nVariants: &quot;Unrated&quot;\nStarted: 2018.12.8, Ended: 2019.2.10\nParticipants: Babamots (S), AnalogKid (N)\nWinner: Babamots\n\n1) AnalogKid: Homeworld R2 B3 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\tAnalogKid: Sorry again about the premature end to the last game. It was instructive though. :)\r\n\r\nHave a good game!\n\n3) AnalogKid: Build G1 Analogkid\n\tBabamots: It&#39;s fine. I&#39;ve got plenty of other games going :-). Good luck!\n\n4) Babamots: Build G1 Babamots\n\n5) AnalogKid: Trade G1 R1 Analogkid\n\n6) Babamots: Trade G1 R1 Babamots\n\n7) AnalogKid: Build R2 Analogkid\n\n8) Babamots: Build R2 Babamots\n\n9) AnalogKid: Trade R1 Y1 Analogkid\n\n10) Babamots: Trade R1 Y1 Babamots\n\n11) AnalogKid: Build R1 Analogkid\n\n12) Babamots: Build G1 Babamots\n\n13) AnalogKid: Discover R1 Analogkid G1 Lyese\n\n14) Babamots: Discover R2 Babamots G2 Trill\n\n15) AnalogKid: Trade R2 B2 Analogkid\n\n16) Babamots: Build Y1 Babamots\n\n17) AnalogKid: Build Y2 Analogkid\n\n18) Babamots: Move Y1 Babamots Trill\n\n19) AnalogKid: Move Y2 Analogkid Lyese\n\n20) Babamots: Build Y2 Trill\n\n21) AnalogKid: Sacrifice G3 Analogkid\nBuild Y2 Lyese\nBuild Y3 Analogkid\nBuild B1 Analogkid\n\n22) Babamots: Build Y3 Babamots\n\n23) AnalogKid: Trade Y3 G3 Analogkid\n\n24) Babamots: Trade Y1 B1 Babamots\n\n25) AnalogKid: Move B1 Analogkid Lyese\n\n26) Babamots: Discover Y1 Trill R1 Romulus\n\n27) AnalogKid: Discover Y2 Lyese Y3 Polaris_aa\n\n28) Babamots: Build G1 Babamots\n\tAnalogKid: Sorry for the delay! I should have more time to pay attention to my games now.\n\n29) AnalogKid: Build G2 Analogkid\n\n30) Babamots: Discover G1 Babamots B2 Bolarus\n\n31) AnalogKid: Sacrifice G2 Analogkid\nBuild Y1 Lyese\nBuild Y3 Analogkid\n\n32) Babamots: Build G2 Bolarus\n\n33) AnalogKid: Move Y3 Analogkid Romulus\n\n34) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G3 Babamots\nBuild G3 Bolarus\n\n35) AnalogKid: Attack Y1 Romulus\n\tAnalogKid: Hmm... I don&#39;t think that I made the right move last turn. :-\\\n\n36) Babamots: Move G3 Babamots Trill\n\tBabamots: It don&#39;t think your move was too bad. You&#39;ve extended your yellow advantage, which is pretty important. I scored an additional large, but I&#39;ll have a hard time getting it anywhere.\n\n37) AnalogKid: Build B1 Lyese\n\tAnalogKid: I think trading one of my Y2 ships for a G2 might have been a better move. But I&#39;m still a novice. *shrug*\n\n38) Babamots: Move G3 Trill Lyese\n\n39) AnalogKid: Sacrifice Y2 Lyese\nDiscover B1 Lyese Y2 Sol\nMove B1 Lyese Sol\n\n40) Babamots: Move B1 Babamots Trill\n\n41) AnalogKid: Sacrifice Y2 Polaris_aa\nMove B1 Sol Babamots\nMove B1 Sol Babamots\n\n42) Babamots: Sacrifice G3 Bolarus\nBuild B2 Trill\nBuild B3 Trill\nBuild G3 Bolarus\n\tAnalogKid: Probably reckless, but I didn&#39;t like most of the other options that I could see.\n\n43) AnalogKid: Sacrifice Y3 Romulus\nMove B2 Analogkid Romulus\nMove B2 Romulus Bolarus\nMove B2 Bolarus Babamots\nCatastrophe Babamots B\n\tBabamots: It does look like you&#39;re about to spend too much on half of a win, but we&#39;ll see.\n\n44) Babamots: Sacrifice Y3 Babamots\nMove B3 Trill Romulus\nMove B3 Romulus Analogkid\nMove G3 Lyese Analogkid\n\n45) AnalogKid: Attack B3 Analogkid\n\tAnalogKid: Hmm... I didn&#39;t see that coming.\n\n46) Babamots: Sacrifice R2 Trill\nAttack G3 Analogkid\nAttack B3 Analogkid\n\n47) AnalogKid: Move R1 Lyese Analogkid\n\tBabamots: I didn&#39;t notice it until after the catastrophe. The threat of losing half your home is pretty distracting.\n\tAnalogKid: Well, that makes me feel a little better. :)  I was focused on your G3 ship attacking my ships in the Lyese system which prompted me to use the manuever of threatening your homeworld.  Then I was feeling a little silly that it may not have been your intention to attack in Lyese at all...\n\n48) Babamots: Attack R1 Analogkid\n\n49) AnalogKid: Build Y2 Lyese\n\tAnalogKid: There is no point in me dragging this out for a few more turns.\r\n\r\nWell played!  Congratulations. :)\r\n\n\n50) Babamots: Attack Y1 Analogkid\n\tBabamots: I was planning to attack ships in Lyese, but after you sacrificed your y3, I saw at the game with fresh eyes. Looking back, I think my invasion could have worked even while you had your y3, but it would have been dicey if you counterattacked.\n\tBabamots: Thanks for the game! Good practice for both of us.\n\tAnalogKid: Well, my hasty invasion certainly made it easier for you to conquer my homeworld instead. I wanted to see what would happen if I took the aggressive approach and I found out just how bad of an idea it was! ^_^  Your monopoly on green may have made it all inevitable anyways.\n\tAnalogKid: Thanks to you too.  If you want to play another one, I&#39;m game. :)\n\n\nHomeworlds Online (SDG# 34774)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.8, Ended: 2018.12.26\nParticipants: Trydnt (S), phi_618 (N)\nWinner: Trydnt\n\n1) phi_618: Homeworld B2 Y1 G3\n\tphi_618: good luck and have fun.\n\n2) Trydnt: Homeworld B2 Y3 G3\n\n3) phi_618: Build G1 Phi_618\n\n4) Trydnt: Build G1 Trydnt\n\n5) phi_618: Trade G1 Y1 Phi_618\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\tphi_618: Was my move forced in order to stop you from taking the second-to-last y1?\n\n7) phi_618: Build Y2 Phi_618\n\tTrydnt: there were only 2 y1s available. if you didn&#39;t take it the I would swap for y. if you then did not swap for y1 you would not be able to get into the yellow economy as I&#39;d take the other y1. you&#39;d have wasted a move swapping for any other color as you&#39;d have to switch to y1 after I did to avoid a lockout\n\n8) Trydnt: Build Y2 Trydnt\n\n9) phi_618: Trade Y2 R2 Phi_618\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) phi_618: Build Y2 Phi_618\n\n12) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 G1 G3 G3\nMove Y1 G3 Phi_618\nCatastrophe Phi_618 Y\n\tphi_618: Proverb 4: Diversify your production of a contested resource?\r\n\r\nMeaning, if both players want a color and are racing to get bigger pieces, producing in more systems than your opponent will garner an advantage.\n\n13) phi_618: Build R1 Phi_618\n\n14) Trydnt: Build G1 Trydnt\n\tphi_618: Proverb 5: Restrict your opponent to two of a color by threatening catastrophe.\n\n15) phi_618: Build R1 Phi_618\n\n16) Trydnt: Trade G1 R1 Trydnt\n\n17) phi_618: Trade R1 Y1 Phi_618\n\n18) Trydnt: Build G1 Trydnt\n\n19) phi_618: Build Y1 Phi_618\n\n20) Trydnt: Trade G1 Y1 Trydnt\n\tphi_618: Is it that big a deal that half my homeworld is destroyed? Yeah, I&#39;m easier to attack, but I&#39;m also closer to your homeworld, so it seems like it would be a wash. And I now have move technology back online and the only medium (for now), so it seems like I have compensation?\n\n21) phi_618: Discover Y1 Phi_618 G1 Aether\n\n22) Trydnt: Discover Y1 Trydnt G1 G1\n\n23) phi_618: Build Y2 Aether\n\n24) Trydnt: Build Y2 G1\n\n25) phi_618: Discover Y2 Aether G3 Belle\n\n26) Trydnt: Discover Y1 G1 B3 B3\n\n27) phi_618: Sacrifice G3 Phi_618\nBuild Y2 Aether\nBuild Y3 Belle\nBuild Y3 Phi_618\n\n28) Trydnt: Build G1 Trydnt\n\n29) phi_618: Trade Y1 B1 Phi_618\n\n30) Trydnt: Trade G1 B1 Trydnt\n\n31) phi_618: Move B1 Phi_618 Aether\n\n32) Trydnt: Discover B1 Trydnt Y1 Y1\n\n33) phi_618: Trade R2 G2 Phi_618\n\n34) Trydnt: Build G1 Trydnt\n\n35) phi_618: Build G2 Phi_618\n\n36) Trydnt: Sacrifice G1 Trydnt\nBuild B1 Y1\n\n37) phi_618: Build B2 Aether\n\n38) Trydnt: Sacrifice Y2 G1\nMove B1 Y1 Phi_618\nMove B1 Y1 Phi_618\n\n\nHomeworlds Online (SDG# 34686)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.13, Ended: 2018.12.24\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 B1 G3\n\n2) wil: H B2 Y1 G3\n\tSimon: Hi! I haven&#39;t played on this site in 2 years, even dropped from the Homeworlds ladder back then. Now I&#39;m feeling so nostalgic. gl hf!\n\twil: Welcome back\n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: T G1 B1 Wil\n\n7) Simon: Build G1 Simon\n\n8) wil: B B1 Wil\n\n9) Simon: Trade G3 B3 Simon\n\n10) wil: T B1 Y1 Wil\n\n11) Simon: Build Y2 Simon\n\n12) wil: B Y2 Wil\n\n13) Simon: Discover Y2 Simon G2 G2\n\n14) wil: D Y1 Wil G3 G3\n\n15) Simon: Build B1 Simon\n\n16) wil: B B2 Wil\n\n17) Simon: Move B1 Simon G2\n\n18) wil: T B1 R1 Wil\n\n19) Simon: Build B1 G2\n\n20) wil: D Y2 Wil B3 B3\n\n21) Simon: Build B2 G2\n\n22) wil: M B2 Wil G3\n\n23) Simon: Trade B1 R1 G2\n\n24) wil: B G1 Wil\n\n25) Simon: Discover B1 G2 Y3 Y3\n\n26) wil: M G1 Wil B3\n\n27) Simon: Build Y2 Simon\n\n28) wil: B Y3 B3\n\n29) Simon: Build Y3 G2\n\n30) wil: T Y3 G3 B3\n\n31) Simon: Build Y3 Simon\n\n32) wil: S Y2 B3\nM Y1 G3 G2\nM Y1 G2 Simon\nC Simon Y\n\n33) Simon: Trade B3 Y3 Simon\n\tSimon: Sorry for the undo. I wanted to build, but entered it as a trade. The trade looked so terrible on the board that I instantly forgot the reasoning behind the build, and had to think about the position from scratch. Ended up with the same build :)\n\twil: Undos you&#39;re not an issue\n\twil: They are definitely part of the live game\n\twil: Until you move the coin\n\n34) wil: T G1 Y1 B3\n\n35) Simon: Build G1 Simon\n\n36) wil: B Y1 B3\n\n37) Simon: Build Y2 Simon\n\n38) wil: M Y1 B3 G2\n\n39) Simon: Move Y3 G2 G3\n\n40) wil: B Y2 B3\n\n41) Simon: Attack Y1 G2\n\n42) wil: B G1 B3\n\n43) Simon: Move R1 G2 G3\n\n44) wil: S Y1 B3\nD B2 G3 G2 Gee2\n\n45) Simon: Build Y1 G3\n\n46) wil: S G3 B3\nB G2 Wil\nB G3 B3\nB R1 Wil\n\n47) Simon: Build R2 G3\n\n48) wil: M R1 Wil B3\n\n49) Simon: Move Y3 G3 Gee2\n\n50) wil: D G1 B3 R2 R2\n\n51) Simon: Sacrifice R1 G3\nAttack B2 Gee2\n\n52) wil: B R1 B3\n\n53) Simon: Sacrifice G1 Simon\nBuild B1 Y3\n\n54) wil: D R1 B3 G1 G1\n\n55) Simon: Move B1 Y3 Wil\n\n56) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R3 B3\n\n57) Simon: Sacrifice Y3 Gee2\nMove B2 Gee2 Y3\nMove B2 Y3 Wil\nMove B1 Y3 Wil\nCatastrophe Wil Blue\n\n58) wil: S G3 Wil\nB Y3 B3\nB R3 G1\nB G2 B3\n\n59) Simon: Sacrifice Y3 Simon\nMove Y1 G2 Wil\nMove Y2 G2 Wil\nMove Y1 G3 Wil\nCatastrophe Wil Yellow\n\n\tSimon: Yeah, was a quick ending. I felt like I always kept the first-player advantage. Looking forward to rematches as second player!\n\twil: I don&#39;t put A lot of stock in FPA in hw\n\nHomeworlds Online (SDG# 34803)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.15, Ended: 2019.1.18\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) wil: H Y2 B1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: For the tournament\n\n6) wil: T G1 R1 Wil\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\twil: Nice move\n\n8) wil: B R2 Wil\n\twil: B r2 wil\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\twil: Oops\n\n10) wil: T R1 B1 Wil\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) wil: B G1 Wil\n\n13) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n14) wil: T G1 Y1 Wil\n\n15) Draw5PlayAll: Build B2 Draw5playall\n\n16) wil: D B1 Wil G3 G3\n\n17) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n18) wil: B B2 G3\n\n19) Draw5PlayAll: Build Y1 Draw5playall\n\n20) wil: T B2 Y2 G3\n\n21) Draw5PlayAll: Move Y1 Draw5playall G2\n\n22) wil: D Y1 Wil B3 B3\n\n23) Draw5PlayAll: Build B2 G2\n\n24) wil: B B2 G3\n\n25) Draw5PlayAll: Trade B2 R2 G2\n\n26) wil: D B2 G3 G2 Gtoo\n\n27) Draw5PlayAll: Discover B1 Draw5playall G2 Starboard\n\n28) wil: B G1 Wil\n\n29) Draw5PlayAll: Sacrifice G3 Draw5playall\nPass\nBuild B2 Starboard\nBuild B3 G2\n\n30) wil: M G1 Wil B3\n\tDraw5PlayAll: Threat level: 7.25\n\n31) Draw5PlayAll: Trade B1 R1 Starboard\n\n32) wil: B G1 Wil\n\n33) Draw5PlayAll: Build R2 G2\n\n34) wil: S G3 Wil\nB G1 Wil\nB G3 Wil\nB G3 B3\n\tDraw5PlayAll: Threat level: 14.5\n\twil: Is that out of 100 or 10?\n\n35) Draw5PlayAll: Move B3 G2 Draw5playall\n\n36) wil: S G3 Wil\nB G3 Wil\nB R3 Wil\nB R3 Wil\n\tDraw5PlayAll: Threat level: 38.0\n\n37) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 Starboard G3\nMove R1 G3 Wil\nCatastrophe Wil Red\n\n38) wil: T G3 R3 Wil\n\n39) Draw5PlayAll: Discover R2 G2 G3 Comeon\n\n40) wil: B B1 Gtoo\n\n41) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n42) wil: S G3 B3\nB G3 B3\nB B3 G3\nB R1 Wil\n\tDraw5PlayAll: Why do I always do worse in Tournament and ladder games than in causal games against the same player? (ts52 also has an advantage vs me in that tournament game, but I think I won a different game against him.)\n\n43) Draw5PlayAll: Build R2 Comeon\n\twil: Every game, match is unique\n\twil: This game is tough and interesting\n\twil: Nobody wins them all.lots of variables\n\n44) wil: M R1 Wil G3\n\n45) Draw5PlayAll: Build R3 G2\n\n46) wil: B R3 G3\n\n47) Draw5PlayAll: Build Y1 G2\n\n48) wil: M R3 G3 Starboard\n\n49) Draw5PlayAll: Sacrifice Y1 G2\nDiscover B2 Starboard Y1 Cantcatchme\n\n50) wil: S G3 B3\nB G3 B3\nB Y2 G3\nB Y3 B3\n\n51) Draw5PlayAll: Build Y3 G2\n\n52) wil: M B1 G3 Starboard\n\n\twil: Threat level crispy\n\tDraw5PlayAll: Oh man. You really had me there. I cannot even get the R1@Draw5PlayAll out of there without letting you have it or losing a Y3...\n\twil: Challenge anytime\n\nHomeworlds Online (SDG# 34810)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.19, Ended: 2019.1.3\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R1 B3 G3\n\n2) wil: H Y2 B1 G3\n\tdlwillson: Hi Wil! Welcome back, good luck, and have fun firing the neurons!\n\twil: Trying.to rebuild it all!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B G1 Dlwillson\n\n8) wil: B G1 Wil\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) wil: T G1 R1 Wil\n\n11) dlwillson: B R2 Dlwillson\n\n12) wil: B R2 Wil\n\n13) dlwillson: T R1 B1 Dlwillson\n\n14) wil: B G1 Wil\n\n15) dlwillson: D R2 Dlwillson G2 Field\n\n16) wil: T G1 B1 Wil\n\n17) dlwillson: M B1 Dlwillson Field\n\n18) wil: B B2 Wil\n\n19) dlwillson: B B2 Field\n\n20) wil: T B2 Y2 Wil\n\n21) dlwillson: T B2 R2 Field\n\n22) wil: B B2 Wil\n\n23) dlwillson: T R2 Y2 Field\n\n24) wil: T B2 G2 Wil\n\tdlwillson: I just lost a turn by not checking what I&#39;d actually done!\n\n25) dlwillson: B Y1 Field\n\n26) wil: D Y1 Wil G3 G3\n\n27) dlwillson: D Y1 Field B3 Sky\n\n28) wil: S G2 Wil\nB Y3 G3\nB Y3 G3\n\n29) dlwillson: M Y2 Field G3\nC G3 Y\n\n30) wil: M R2 Wil Sky\n\n31) dlwillson: S G3 Dlwillson\nB Y1 Dlwillson\nB Y2 Dlwillson\nB Y3 Sky\n\n32) wil: A Y1 Sky\n\n33) dlwillson: S R2 Field\nA Y1 Sky\nA R2 Sky\n\n34) wil: D Y2 Wil G3 G3\n\n35) dlwillson: T Y1 G1 Dlwillson\n\n36) wil: M B1 Wil G3\n\n37) dlwillson: T Y3 G3 Sky\n\n38) wil: B B2 G3\n\n39) dlwillson: M Y1 Dlwillson Field\n\n40) wil: T B1 R1 G3\n\n41) dlwillson: S G3 Sky\nB Y1 Field\nB Y3 Dlwillson\nB Y3 Sky\n\n42) wil: B Y3 G3\n\n43) dlwillson: S Y2 Dlwillson\nM Y1 Field G3\nM Y1 Field G3\nC G3 Y\n\tdlwillson: Happy Christmas, Wil!\n\twil: Back atcha!\n\n44) wil: B R2 Wil\n\n45) dlwillson: T Y3 G3 Sky\n\n46) wil: T R1 Y1 G3\n\n47) dlwillson: B G1 Sky\n\n48) wil: B G1 Wil\n\n49) dlwillson: S G3 Sky\nB G2 Dlwillson\nB G2 Dlwillson\nB G3 Sky\n\n50) wil: M R2 Wil G3\n\n51) dlwillson: D G2 Dlwillson B2 Sea\n\n52) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB Y1 G3\n\n53) dlwillson: S Y3 Dlwillson\nM G3 Sky Wil\nM G1 Sky Wil\nM R2 Sky Wil\nC Wil G\n\n54) wil: B Y2 G3\n\n55) dlwillson: S G2 Dlwillson\nB R2 Wil\nB R3 Wil\nC Wil R\n\n\twil: Yikes!\n\twil: Lol, I wasn&#39;t thinking!\n\tdlwillson: It was good playing with you again!\n\twil: Up pieces to.see.the game\n\twil: I think I am going to have to start setting \n\nHomeworlds Online (SDG# 34809)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.19, Ended: 2019.1.28\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Good luck and have fun :)\n\n4) Felix: B G1 Felix\n\tDraw5PlayAll: ...seriously?\n\tDraw5PlayAll: You actually want to smallverse me in a ladder game?\n\tFelix: Why not? It&#39;s a perfectly valid play\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: Did I say or imply it was invalid?\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: You implied it was rude or somehow un-kosher. Part of the game&#39;s balance, however, comes in the ability of player 2 to set the size of the universe. \n\n7) Draw5PlayAll: Build R1 Draw5playall\n\tDraw5PlayAll: Risky more than anything do do that to someone with starting yellow AND an extra move on you.\n\tDraw5PlayAll: Now, should I conquest red or bleed into your yellow supply?\n\n8) Felix: Build Y1 Felix\n\n9) Draw5PlayAll: Discover R1 Draw5playall G2 G2019\n\n10) Felix: Build Y2 Felix\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) Felix: Discover Y1 Felix Y2 Cheese\n\n13) Draw5PlayAll: Discover R1 Draw5playall R2 Niceidea\n\n14) Felix: Discover Y1 Felix Y2 Swiss\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Niceidea\nBuild R3 G2019\nBuild R3 Draw5playall\n\n16) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Felix\nBuild Y3 Cheese\n\tDraw5PlayAll: You asked for it.\n\n17) Draw5PlayAll: Build R3 G2019\n\n18) Felix: T Y3 G3 Felix\n\n19) Draw5PlayAll: Trade R3 G3 Draw5playall\n\tDraw5PlayAll: I offer a draw.\n\n20) Felix: Trade Y3 R3 Felix\n\tDraw5PlayAll: I forgot I no longer have green...\n\n21) Draw5PlayAll: Sacrifice R1 G2019\nPass\n\tFelix: On the ladder, a draw is essentially a loss for the Challenger, so I respectfully decline! \n\n22) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Felix\nBuild R1 Felix\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: I have a plan but it is going to take MUCH longer than I expected.\n\tFelix: This is why I&#39;m always okay with allowing a red monopoly as long as I can lock down movement!\n\n25) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n26) Felix: Build Y3 Felix\n\n27) Draw5PlayAll: Move B1 Draw5playall G2019\n\n28) Felix: Trade R3 B3 Felix\n\n29) Draw5PlayAll: Build R3 Draw5playall\n\n30) Felix: Move B3 Felix Swiss\n\n31) Draw5PlayAll: Build B1 G2019\n\n32) Felix: Build G1 Felix\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) Felix: Move G1 Felix Swiss\n\tDraw5PlayAll: I do not believe the speardane account is being checked. If you want to rematch it, ask ajo.\n\n35) Draw5PlayAll: Discover G3 Draw5playall B2 Shutdown\n\n36) Felix: Build B1 Swiss\n\n37) Draw5PlayAll: Build G1 Shutdown\n\n38) Felix: Build B2 Swiss\n\tDraw5PlayAll: Your partial yellow shutdown and the US partial government shutdown (34 days and counting).\n\n39) Draw5PlayAll: Sacrifice G1 Shutdown\nBuild G1 Draw5playall\n\tFelix: Haha, I like to think of it as more of a complete yellow shutdown :)\n\tDraw5PlayAll: I have homeworld movement\n\n40) Felix: Sacrifice Y3 Felix\nMove Y1 Cheese Draw5playall\nMove Y3 Cheese Draw5playall\nMove Y1 Swiss Draw5playall\nCatastrophe Draw5playall Yellow\n\n41) Draw5PlayAll: Trade R3 Y3 G2019\n\n42) Felix: S Y3 Felix\nM B1 Swiss Draw5playall\nM B2 Swiss Draw5playall\nM B3 Swiss Draw5playall\nC Draw5playall Blue\n\n\tDraw5PlayAll: I know you can win immediately but I just wanted to have some movement.\n\tFelix: Feels good I bet :)\n\nHomeworlds Online (SDG# 34811)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.21, Ended: 2019.2.21\nParticipants: Laurie_Menke (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\tLaurie_Menke: Welcome, Simon! Thanks for challenging me! Have fun!  :)\n\tSimon: Hi, and have fun! I used to play lots in 2014-2017 and am happy to be back at Homeworlds.\n\n2) Laurie_Menke: Homeworld B2 Y1 G3\n\tLaurie_Menke: Well, then, you&#39;ll probably kick my butt, but it&#39;ll be fun anyway!  :) Glad to have you back!\n\n3) Simon: Build G1 Simon\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) Simon: Build Y2 Simon\n\n8) Laurie_Menke: Build Y2 Laurie_menke\n\n9) Simon: Discover Y1 Simon B2 B2\n\n10) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n11) Simon: Build Y1 Simon\n\n12) Laurie_Menke: Discover Y2 Laurie_menke G3 Green\n\n13) Simon: Discover Y1 Simon G2 G2\n\n14) Laurie_Menke: Build R1 Laurie_menke\n\n15) Simon: Build Y2 G2\n\n16) Laurie_Menke: Build Y3 Green\n\n17) Simon: Build Y3 Simon\n\n18) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow\n\n19) Simon: Trade Y3 R3 Simon\n\n20) Laurie_Menke: Move R1 Yellow B2\n\n21) Simon: Move R3 Simon B2\n\n22) Laurie_Menke: Move Y3 Green G2\n\n23) Simon: Attack R1 B2\n\n24) Laurie_Menke: Build R2 Laurie_menke\n\n25) Simon: Build Y3 G2\nCatastrophe G2 Yellow\n\n26) Laurie_Menke: Trade R1 Y1 Laurie_menke\n\n27) Simon: Trade R1 G1 B2\n\n28) Laurie_Menke: Discover Y1 Laurie_menke B3 Blue\n\n29) Simon: Build R1 B2\n\n30) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: build g1 Laurie_Menke\n\tLaurie_Menke: Oops...\n\n31) Simon: Build G1 Simon\n\n32) Laurie_Menke: Discover G1 Laurie_menke B3 Bluetoo\n\n33) Simon: Build G2 B2\n\n34) Laurie_Menke: Build G2 Laurie_menke\n\n35) Simon: Move R3 B2 Bluetoo\n\n36) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 Green\nBuild Y3 Blue\n\n37) Simon: Sacrifice G2 B2\nBuild Y3 Simon\nBuild Y3 B2\n\n38) Laurie_Menke: Sacrifice Y2 Green\nDiscover G1 Bluetoo R2 Red\nMove Y1 Blue Red\n\n39) Simon: Move G3 Simon Red\n\n40) Laurie_Menke: Move Y1 Red Simon\n\n41) Simon: Attack Y1 Simon\n\n42) Laurie_Menke: Sacrifice G1 Red\nBuild Y2 Blue\n\n43) Simon: Move Y1 Simon Red\n\n44) Laurie_Menke: Move R2 Laurie_menke Blue\n\n45) Simon: Build G1 B2\n\n46) Laurie_Menke: Build G2 Laurie_menke\n\n47) Simon: Sacrifice Y2 Simon\nMove G3 Red Blue\nMove G3 Blue Laurie_menke\n\n48) Laurie_Menke: Sacrifice Y2 Blue\nMove Y3 Blue Laurie_menke\nMove Y2 Green Laurie_menke\n\tLaurie_Menke: Oops... didn&#39;t see that coming...\n\tLaurie_Menke: Just not paying enough attention... bluebirded myself.  :/\n\n49) Simon: Sacrifice R3 Bluetoo\nAttack G3 Laurie_menke\nAttack Y3 Laurie_menke\nAttack G2 Laurie_menke\n\n50) Laurie_Menke: Sacrifice R2 Blue\nAttack G2 Laurie_menke\nPass\n\tLaurie_Menke: Let&#39;s see what kind of damage control I can do... probably not much.\n\tSimon: Yeah, the build g2 was a problem already. Probably move a y2 home was the only move, but one doesn&#39;t want to go backwards either :)\n\n51) Simon: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Laurie_menke\nBuild Y2 Laurie_menke\nCatastrophe Laurie_menke Green\nCatastrophe Laurie_menke Yellow\n\n\tSimon: Hmm, the game felt comfortable since turn 12, I kept the extra large without any downsides.\n\tLaurie_Menke: Yeah, you are definitely the better player! Congrats on the win and thanks for the fun!  :)\n\tSimon: Thanks for the game too! Recently, I saw that you work with the Looneys and helped Andy with the 30-minute tutorial video. It&#39;s a great resource to spread the love (not everybody likes the raw game rules for bedtime reading...)\n\tLaurie_Menke: Yep. I pretty much eat, sleep, and breathe Looney Labs. My title at Looney Labs is Personal Assistant to the Looneys and New Markets. But I also live in their house (my title there is House Elf). And I am on the road with them about 120 days out of the year demoing games and creating new sales opportunities. It&#39;s a pretty great job!  :)  I&#39;m glad you liked the tutorial! I only had a little bit to do with that. It was mostly Andy and his nephew, Eric. You may enjoy the Homeworlds Theater series as well. That&#39;s Andy and the inventor of Homeworlds (John Cooper) analyzing a playthrough like sportscasters. It&#39;s pretty entertaining, and all of the games are taken from right here on SDG.  :)  Thanks again for the fun, and I look forward to getting good enough to beat you one of these days!  :)\n\nHomeworlds Online (SDG# 34800)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.24, Ended: 2019.1.8\nParticipants: Simon (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tSimon: hf :)\n\n2) Simon: Homeworld B3 R1 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 R1 Wil\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B R1 Wil\n\n8) Simon: Build G1 Simon\n\n9) wil: D R1 Wil G3 G3\n\n10) Simon: Trade G3 R3 Simon\n\n11) wil: T R1 B1 Wil\n\n12) Simon: Build Y1 Simon\n\n13) wil: B B1 Wil\n\n14) Simon: Build R1 Simon\n\n15) wil: M B1 Wil G3\n\n16) Simon: Discover R1 Simon Y2 Y2\n\n17) wil: B B2 Wil\n\n18) Simon: Build R2 Simon\n\n19) wil: D B2 Wil Y3 Y3\n\n20) Simon: Move G1 Simon Y2\n\n21) wil: S G3 Wil\nB B2 G3\nB B2 Y3\nB B3 Wil\n\n22) Simon: Trade R3 B3 Simon\n\n23) wil: T B2 Y2 G3\n\n24) Simon: Build R2 Y2\n\n25) wil: T B2 G2 Y3\n\n26) Simon: Discover Y1 Simon G2 G2\n\n27) wil: T B3 G3 Wil\n\n28) Simon: Trade R2 G2 Simon\n\n29) wil: M B2 Y3 G2\n\n30) Simon: Sacrifice G2 Simon\nBuild Y1 G2\nBuild Y3 G2\n\n31) wil: M Y2 G3 G2\nC G2 Y\n\n32) Simon: Move B3 Simon G2\n\n33) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\nC G2 B\n\n34) Simon: Move R2 Y2 G3\n\tSimon: Nice, didn&#39;t see this.\n\n35) wil: B R2 G3\n\n36) Simon: Build R2 Y2\n\n37) wil: S R1 G3\nA R2 G3\n\n38) Simon: Discover R1 Y2 R1 R1\n\n39) wil: T R2 Y2 G3\n\twil: Wild game\n\n\tSimon: gg\n\twil: Thx,.challenge anytime\n\nHomeworlds Online (SDG# 34793)\nVariants: &quot;Hard time&quot;\nStarted: 2018.12.29, Ended: 2019.1.17\nParticipants: Trydnt (S), Simon (N)\nWinner: Trydnt\n\n1) Simon: Homeworld B3 R1 G3\n\tSimon: Hi! I played Homeworlds in 2014-2017 and am happy to be around again. Enjoy!\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tTrydnt: Always good to meet a fellow star traveler\n\n3) Simon: Build G1 Simon\n\n4) Trydnt: Build G1 Trydnt\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Simon: Build Y1 Simon\n\n8) Trydnt: Build R1 Trydnt\n\n9) Simon: Discover Y1 Simon B2 B2\n\n10) Trydnt: Build R2 Trydnt\n\n11) Simon: Build Y1 Simon\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Simon: Discover Y1 Simon G2 G2\n\n14) Trydnt: Build R2 Trydnt\n\n15) Simon: Build Y2 G2\n\n16) Trydnt: Build R2 G1\n\n17) Simon: Build Y2 Simon\n\n18) Trydnt: Discover R1 Trydnt B1 B1\n\n19) Simon: Build G1 Simon\n\n20) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Trydnt\nBuild R3 G1\nBuild R3 B1\n\n21) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Simon\n\n22) Trydnt: Trade R3 G3 Trydnt\n\n23) Simon: Trade Y3 R3 B2\n\n24) Trydnt: Trade R3 Y3 B1\n\n25) Simon: Trade Y3 G3 Simon\n\n26) Trydnt: Discover R1 B1 Y3 Y3\n\n27) Simon: Discover Y2 G2 R3 R3\n\n28) Trydnt: Trade R2 B2 Trydnt\n\n29) Simon: Trade Y2 G2 B2\n\n30) Trydnt: Sacrifice B2 Trydnt\nTrade R2 Y2 G1\nTrade R3 B3 G1\n\n31) Simon: Build G1 B2\n\n32) Trydnt: Build R2 G1\n\n33) Simon: Sacrifice G3 Simon\nBuild G2 Simon\nBuild G3 Simon\nBuild G3 B2\n\n34) Trydnt: Move R2 G1 G2\n\n35) Simon: Discover Y1 G2 B1 B1a\n\n36) Trydnt: Build B1 G1\n\n37) Simon: Move G3 B2 B1a\n\n38) Trydnt: Build B2 G1\n\n39) Simon: Sacrifice G2 Simon\nBuild G2 B1a\nBuild R2 B2\n\n40) Trydnt: Build R3 G2\n\n41) Simon: Move G1 Simon G2\n\n42) Trydnt: Sacrifice R3 G2\nAttack G1 G2\nPass\nPass\n\n43) Simon: Move R2 B2 B1a\n\n44) Trydnt: Build R3 G1\n\n45) Simon: Move G3 B1a G2\n\n46) Trydnt: Sacrifice Y2 G1\nMove G1 G2 Y3\nMove B3 G1 Y3\n\n47) Simon: Sacrifice G3 G2\nBuild G3 B1a\nBuild Y2 B1a\nPass\n\n48) Trydnt: Build B3 Y3\n\n49) Simon: Move Y1 B2 B1a\n\n50) Trydnt: Move B3 Y3 G2\n\n51) Simon: Move Y1 Simon B2\n\n52) Trydnt: Move Y3 B1 G2\n\n53) Simon: Discover G2 B2 B1 B1\n\n54) Trydnt: Move B3 G2 B1\n\n55) Simon: Sacrifice G2 B1\nBuild G2 B2\nPass\n\n56) Trydnt: Move R1 Y3 B1\n\n57) Simon: Move Y2 B1a B2\n\n58) Trydnt: Move G1 Y3 B1\n\n59) Simon: Move Y1 B2 B1a\n\n60) Trydnt: Sacrifice B3 Y3\nTrade R3 Y3 G1\nPass\nPass\n\n61) Simon: Build R3 B1a\n\n62) Trydnt: Build B3 G1\n\n63) Simon: Move G3 B1a R3\n\n64) Trydnt: Move R1 G1 G2\n\n65) Simon: Move Y1 B1a G2\n\n66) Trydnt: Move R1 G2 Simon\n\n67) Simon: Sacrifice Y2 R3\nMove Y1 B1a G2\nMove Y1 B1a G2\nCatastrophe G2 Yellow\n\n68) Trydnt: Trade B3 Y3 B1\n\n\tSimon: I didn&#39;t expect the B3 at y3 sacrifice from 4 turns ago, very nice. gg\n\tTrydnt: It was probably what let me win. Couldn&#39;t see another way to convert that star to a ship as if I left my g\n\tTrydnt: *g\n\tTrydnt: g1* you could have just moved in an taken it\n\nHomeworlds Online (SDG# 34833)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.3, Ended: 2019.1.17\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tdlwillson: GLaHF!\n\tTrydnt: fair (solar) winds to you fellow traveler\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) dlwillson: B R2 Dlwillson\n\n8) Trydnt: Build R2 Trydnt\n\n9) dlwillson: T R1 Y1 Dlwillson\n\n10) Trydnt: Trade R2 Y2 Trydnt\n\n11) dlwillson: B Y1 Dlwillson\n\n12) Trydnt: Discover Y2 Trydnt G1 G1\n\n13) dlwillson: D Y1 Dlwillson B2 Sea\n\n14) Trydnt: Move R1 Trydnt G1\n\n15) dlwillson: B G1 Dlwillson\n\n16) Trydnt: Build G1 Trydnt\n\n17) dlwillson: M G1 Dlwillson Sea\n\n18) Trydnt: Discover G1 Trydnt R1 R1\n\n19) dlwillson: M R2 Dlwillson Sea\n\n20) Trydnt: Build R2 G1\n\n21) dlwillson: B G2 Dlwillson\n\n22) Trydnt: Build G2 R1\n\n23) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G3 Sea\nB G3 Dlwillson\n\n24) Trydnt: Sacrifice Y2 G1\nMove G1 R1 Sea\nCatastrophe Sea G\nDiscover G2 R1 B2 B2\n\n25) dlwillson: S G2 Dlwillson\nB G1 Dlwillson\nB Y1 Sea\n\n26) Trydnt: Build G1 B2\n\n27) dlwillson: D Y1 Sea B1 Sky\n\n28) Trydnt: Trade G2 Y2 B2\n\n29) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB Y2 Sea\nB Y3 Dlwillson\n\n30) Trydnt: Build Y3 B2\n\n31) dlwillson: S Y2 Sea\nM Y1 Dlwillson B2\nM Y1 Sky B2\nC B2 Y\n\n32) Trydnt: Build G2 Trydnt\n\n33) dlwillson: B G2 Dlwillson\n\n34) Trydnt: Trade G1 Y1 B2\n\n35) dlwillson: B Y1 Dlwillson\n\n36) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 B2\nBuild G1 Trydnt\n\n37) dlwillson: S G2 Dlwillson\nB Y2 Sea\nB Y3 Sky\n\n38) Trydnt: Discover Y2 B2 B1 B1\n\n39) dlwillson: B G2 Dlwillson\n\n40) Trydnt: Trade G1 B1 Trydnt\n\n41) dlwillson: Trade Y1 G1 Sea\n\n42) Trydnt: Build B3 Trydnt\n\n43) dlwillson: Trade Y3 B3 Dlwillson\n\n44) Trydnt: Move B3 Trydnt G1\n\n45) dlwillson: S G2 Dlwillson\nB Y1 Sea\nB Y3 Dlwillson\n\n46) Trydnt: Move Y1 B2 G1\n\n47) dlwillson: T Y2 B2 Sky\n\n48) Trydnt: Build Y2 G1\n\n49) dlwillson: T Y3 G3 Dlwillson\n\n50) Trydnt: Discover Y2 B1 Y3 Y3\n\n51) dlwillson: D B3 Dlwillson G2 Field\n\n52) Trydnt: Trade B1 R1 Trydnt\n\n53) dlwillson: T B2 G2 Sky\n\n54) Trydnt: Build G2 Trydnt\n\n55) dlwillson: S G3 Dlwillson\nB B1 Field\nB G3 Sea\nB G3 Dlwillson\n\n56) Trydnt: Build B1 G1\n\n57) dlwillson: S Y2 Sea\nM G3 Sea Sky\nM G3 Sky Trydnt\n\n58) Trydnt: Attack G3 Trydnt\n\n59) dlwillson: Sacrifice Y3 Sky\nMove B3 Field Sky\nMove B3 Sky Trydnt\nMove G2 Sky Trydnt\nCatastrophe Trydnt G\n\n60) Trydnt: Sacrifice Y2 Y3\nMove B1 G1 Trydnt\nMove Y1 G1 Trydnt\n\n61) dlwillson: T B3 G3 Trydnt\n\n62) Trydnt: Move B3 G1 Sea\n\n63) dlwillson: T G3 R3 Dlwillson\n\n64) Trydnt: Move R1 G1 Trydnt\n\n65) dlwillson: S R2 Sea\nA R1 Trydnt\nA R1 Trydnt\n\n66) Trydnt: Sacrifice R2 G1\nAttack R1 Trydnt\nAttack R1 Trydnt\n\n67) dlwillson: S R3 Dlwillson\nA R1 Trydnt\nA R1 Trydnt\nA Y1 Trydnt\n\n\tdlwillson: Thank you! Good game!\n\tTrydnt: Well played! Thought I&#39;d be able to wriggle out if you did that but alas I miscalculated\n\nHomeworlds Online (SDG# 34597)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.1.3, Ended: 2019.1.13\nParticipants: Ryzorrin (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tRyzorrin: homeworld g1 b2 R3\n\tRyzorrin: I always type my commands in the messages. &gt;:(\n\twil: Thinking i am writing your plan note\n\twil: The only thing worse.\n\twil: Lol, I do that!\n\n2) Ryzorrin: Homeworld B1 G2 R3\n\n3) wil: B G1 Wil\n\tRyzorrin: It just means I don&#39;t play enough. :D\n\twil: Short universe?\n\tRyzorrin: Would seem that way. \n\twil: You have time to change if you like\n\twil: I&#39;m good either way\n\tRyzorrin: No I&#39;m good.\n\n4) Ryzorrin: Build R1 Ryzorrin\n\n5) wil: T G1 B1 Wil\n\n6) Ryzorrin: Trade R1 G1 Ryzorrin\n\n7) wil: B B2 Wil\n\n8) Ryzorrin: Build G1 Ryzorrin\n\n9) wil: D B2 Wil Y3 Y3\n\n10) Ryzorrin: Trade G1 Y1 Ryzorrin\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Wil\nB B3 Y3\n\n12) Ryzorrin: Move G1 Ryzorrin Y3\n\tRyzorrin: I got to playtest some games at Looney Labs over the weekend.\n\twil: Awesome!  Xendo?  \n\n13) wil: T B2 R2 Y3\n\tRyzorrin: Nah. A couple new flux games and an expansion to get the McGuffin.\n\n14) Ryzorrin: Move G1 Y3 Wil\n\tDraw5PlayAll: I think &quot;X&quot;endo was a dropped idea. They kept the Z but removed the theme.\n\n15) wil: T B2 R2 Wil\n\twil: Mcguffin expansion been outta town\n\n16) Ryzorrin: Discover G1 Wil B3 Star\n\n17) wil: T B3 G3 Y3\n\n18) Ryzorrin: Build Y1 Ryzorrin\n\n19) wil: M R2 Wil Star\n\n20) Ryzorrin: Sacrifice Y1 Ryzorrin\nMove G1 Star Wil\n\n21) wil: M R2 Y3 Wil\n\n22) Ryzorrin: Build Y1 Ryzorrin\n\n23) wil: A G1 Wil\n\n24) Ryzorrin: Discover Y1 Ryzorrin R3 Whatever\n\n25) wil: B B2 Wil\n\n26) Ryzorrin: Build Y1 Ryzorrin\n\n27) wil: M B1 Wil Star\n\n28) Ryzorrin: Discover Y1 Ryzorrin R3 Meh\n\n29) wil: S G3 Y3\nB B2 Star\nB B3 Wil\nB B3 Y3\n\n30) Ryzorrin: Build Y2 Ryzorrin\n\n31) wil: M B2 Wil Meh\n\n32) Ryzorrin: Discover Y2 Ryzorrin G3 Grapenuts\n\n33) wil: A Y1 Meh\n\n34) Ryzorrin: Build Y2 Ryzorrin\n\n35) wil: M G1 Wil Meh\n\n36) Ryzorrin: Build Y3 Grapenuts\n\n37) wil: B Y3 Meh\n\n38) Ryzorrin: Build R1 Ryzorrin\n\n39) wil: T B3 G3 Y3\n\n40) Ryzorrin: Discover Y2 Ryzorrin B3 Metamorphose\n\tRyzorrin: Almost a pass\n\n41) wil: T B3 G3 Wil\n\twil: I&#39;ve always disliked that choice.\n\n42) Ryzorrin: Trade Y2 G2 Metamorphose\n\n43) wil: B B3 Meh\n\n44) Ryzorrin: Build G1 Metamorphose\n\n45) wil: B G1 Y3\n\n46) Ryzorrin: Build G2 Metamorphose\n\n47) wil: S Y3 Meh\nD G1 Y3 Y2 Y2\nM B2 Y3 Y2\nM G1 Y2 Metamorphose\nC Metamorphose G\n\n48) Ryzorrin: Build Y3 Ryzorrin\n\n49) wil: S G3 Y3\nB Y3 Meh\nB B3 Meh\nB G1 Wil\n\n50) Ryzorrin: Move R3 Ryzorrin Star\n\n51) wil: M B2 Y2 Star\nC Star B\n\n52) Ryzorrin: Trade Y1 B1 Ryzorrin\n\twil: Lol, didn&#39;t catch the undo\n\n53) wil: T B3 R3 Meh\n\n54) Ryzorrin: Move B1 Ryzorrin Grapenuts\n\n55) wil: D Y1 Meh G1 G1\n\n56) Ryzorrin: Trade Y3 G3 Grapenuts\n\n57) wil: M G1 Wil Grapenuts\n\n58) Ryzorrin: Build B2 Grapenuts\n\n59) wil: B G2 Grapenuts\nC Grapenuts G\n\n60) Ryzorrin: Build R1 Ryzorrin\n\n61) wil: S Y3 Meh\nM R3 Meh Ryzorrin\nM B3 Meh Ryzorrin\nM Y1 G1 Meh\n\n\twil:  completed without incident\n\twil: Greetings, pleased to report slash and burn\n\tRyzorrin: Good game.\n\tRyzorrin: I was in a hole from the beginning.\n\twil: It was different, challenge anytine\n\twil: Short universe challenge\n\nHomeworlds Online (SDG# 34841)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.6, Ended: 2019.1.15\nParticipants: goulo (S), wil (N)\nWinner: goulo\n\n1) wil: H Y2 B1 G3\n\tgoulo: happy new year!\n\twil: Backatcha have fun\n\n2) goulo: Homeworld B3 G2 Y3\n\n3) wil: B G1 Wil\n\n4) goulo: Build Y1 Goulo\n\n5) wil: B G1 Wil\n\n6) goulo: Build Y1 Goulo\n\n7) wil: D G1 Wil B3 B3\n\n8) goulo: Trade Y1 R1 Goulo\n\n9) wil: B G1 Wil\n\n10) goulo: Trade Y3 G3 Goulo\n\n11) wil: T G1 B1 Wil\n\n12) goulo: Build Y1 Goulo\n\n13) wil: T G1 Y1 Wil\n\n14) goulo: Build Y2 Goulo\n\n15) wil: B Y2 Wil\n\n16) goulo: Discover Y2 Goulo G1 Verdeto\n\n17) wil: M Y1 Wil B3\n\n18) goulo: Build Y3 Verdeto\n\n19) wil: B Y3 B3\n\n20) goulo: Move Y3 Verdeto B3\n\n21) wil: B Y3 B3\nC B3 Y\n\n22) goulo: Build Y1 Verdeto\n\n23) wil: M Y2 Wil B3\n\n24) goulo: Discover Y1 Verdeto G3 Verdego\n\n25) wil: B Y3 B3\n\n26) goulo: Build Y3 Verdego\n\n27) wil: T Y3 R3 B3\n\n28) goulo: Trade Y1 B1 Goulo\n\n29) wil: B R1 B3\n\n30) goulo: Build R1 Goulo\n\n31) wil: M R3 B3 Verdeto\n\n32) goulo: Discover Y2 Verdeto G2 Verdo\n\n33) wil: B G1 Wil\n\n34) goulo: Discover B1 Goulo Y1 Flaveto\n\n35) wil: B Y3 B3\n\n36) goulo: Build Y3 Verdo\n\n37) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB R2 B3\n\n38) goulo: Move B1 Flaveto Verdego\n\n39) wil: D G1 B3 Y1 Y1\n\n40) goulo: Move Y3 Verdego Y1\n\n41) wil: M G1 Y1 B3\n\n42) goulo: Build B2 Verdego\n\n43) wil: M B1 Wil B3\n\n44) goulo: Move B2 Verdego Verdo\n\n45) wil: M R1 B3 Wil\n\n46) goulo: Sacrifice Y3 Verdo\nMove B2 Verdo B3\nMove B1 Verdego Verdo\nMove B1 Verdo B3\nCatastrophe B3 B\n\n47) wil: D G2 Wil Y3 Y3\n\n48) goulo: Build G1 Goulo\n\n49) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 Verdeto\n\n50) goulo: Sacrifice Y2 Verdo\nMove R1 Goulo Verdeto\nMove R1 Goulo Verdeto\nCatastrophe Verdeto R\n\n51) wil: T G1 B1 Wil\n\n52) goulo: Trade G3 R3 Goulo\n\n53) wil: M B1 Wil Y3\n\n54) goulo: Build R1 Goulo\n\n55) wil: T G2 Y2 Y3\n\n56) goulo: Build Y2 Verdego\n\n57) wil: D R1 Wil Y3 Why3\n\n58) goulo: Build G1 Goulo\n\n59) wil: B G1 Wil\n\n60) goulo: Trade G1 B1 Goulo\n\n61) wil: B R1 Wil\n\n62) goulo: Move B1 Goulo Y1\n\n63) wil: B R2 Wil\n\n64) goulo: Move R1 Goulo Y1\n\n65) wil: D R1 Wil G3 G3\n\n66) goulo: Move B1 Y1 Verdego\n\n67) wil: D R2 Wil B3 B3\n\n68) goulo: Move R1 Y1 Verdego\n\n69) wil: D Y2 Y3 G1 G1\n\n70) goulo: Move Y3 Y1 B3\n\n71) wil: B Y1 G1\n\n72) goulo: Sacrifice R1 Verdego\nAttack R2 B3\n\n73) wil: M G1 Wil Y3\n\n74) goulo: Build B2 Verdego\n\n75) wil: B G2 Wil\n\n76) goulo: Trade B2 G2 Verdego\n\n77) wil: B B2 Y3\n\n78) goulo: Move Y3 B3 G1\n\n79) wil: S Y1 G1\nD Y2 G1 R3 R3\n\n80) goulo: Move Y3 G1 Y3\n\n81) wil: T B1 Y1 Y3\n\n82) goulo: Sacrifice R2 B3\nAttack B2 Y3\nAttack G1 Y3\n\n83) wil: D Y2 R3 G1 G1\n\n84) goulo: Sacrifice Y2 Verdego\nMove G1 Y3 Wil\nMove G2 Verdego Wil\nCatastrophe Wil G\n\n85) wil: M Y2 G1 Y3\nC Y3 Y\n\twil: My synapses are can&#39;t catch up to yours.\n\n86) goulo: Discover R3 Goulo Y1 Flaveto\n\tgoulo: I think I just widened the gap. :)\n\n87) wil: T R2 G2 Wil\n\n88) goulo: Move R3 Flaveto Verdego\n\n89) wil: M R1 Why3 Wil\n\twil: Commence funeral march\n\n90) goulo: Move R3 Verdego Wil\n\n91) wil: S G2 Wil\nB R1 Wil\nB R2 Wil\nC Wil R\n\n\tgoulo: https://www.youtube.com/watch?v=hZY5DBmgC_A\n\twil: Lol, gg, nice video, thx\n\tgoulo: I wondered if you were going to go out with a bang by that g2 sacrifice for a red catastrophe! :)\n\tgoulo: that was an epic game.\n\twil: Challenge anytime\n\nHomeworlds Online (SDG# 34813)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.8, Ended: 2019.1.20\nParticipants: Simon (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tSimon: hf :)\n\n2) Simon: Homeworld G3 B1 B3 *\n\n3) wil: B G1 Wil\n\tSimon: I played TwoShort only once ever. Then, he opened like this as 2nd player and won. I never got the chance to play him again, but always wondered whether the opening is strong or whether TwoShort is super strong in general.\n\twil:  A powerful opening\n\twil: The instant blue freeze out...\n\n4) Simon: Build B1 Simon\n\twil: My job, get a blue!\n\n5) wil: B G1 Wil\n\n6) Simon: Trade B3 Y3 Simon\n\n7) wil: D G1 Wil Y3 Y3\n\n8) Simon: Build B2 Simon\n\n9) wil: T G3 B3 Wil\n\n10) Simon: Discover B2 Simon G2 G2\n\n11) wil: B B2 Wil\n\n12) Simon: Build B2 G2\n\n13) wil: T B3 Y3 Wil\n\n14) Simon: Build B3 G2\n\n15) wil: B B3 Wil\n\n16) Simon: Trade B2 R2 G2\n\n17) wil: T B2 R2 Wil\n\n18) Simon: Trade B2 Y2 G2\n\n19) wil: M B3 Wil Y3\n\n20) Simon: Build B2 G2\n\n21) wil: B B2 Y3\n\n22) Simon: Trade B2 Y2 G2\n\n23) wil: T B2 R2 Y3\n\n24) Simon: Build B2 G2\n\n25) wil: B B2 Y3\n\n26) Simon: Build Y1 G2\n\n27) wil: B G1 Y3\n\n28) Simon: Discover Y2 G2 B3 B3\n\n29) wil: B G2 Y3\n\n30) Simon: Trade B3 R3 G2\n\n31) wil: B G2 Wil\n\n32) Simon: Build Y1 G2\n\n33) wil: M G1 Y3 G2\n\n34) Simon: Attack G1 G2\n\n35) wil: S Y3 Wil\nM G1 Y3 G2\nM G2 Y3 G2\nM B3 Y3 Wil\nC G2 G\n\n36) Simon: Build B2 Simon\n\n37) wil: S G2 Wil\nB B2 Y3\nB B3 Y3\n\n38) Simon: Discover B1 Simon G2 G2\n\n39) wil: M B2 Y3 G2\n\n40) Simon: Build Y1 Simon\n\n41) wil: B G1 Wil\n\n42) Simon: Trade B2 R2 Simon\n\n43) wil: B B2 G2\n\n44) Simon: Build Y1 Simon\n\n45) wil: T B3 G3 Y3\n\n46) Simon: Build B3 G2\nCatastrophe G2 Blue\n\n47) wil: B B1 Y3\n\n48) Simon: Discover Y1 Simon G2 G2\n\n49) wil: T B2 Y2 Y3\n\n50) Simon: Discover Y1 Simon G2 G2a\n\n51) wil: D Y2 Y3 B2 B2\n\n52) Simon: Trade Y2 G2 B3\n\n53) wil: B B2 Y3\n\n54) Simon: Move Y1 G2 B3\n\n55) wil: M B2 Y3 G2a\n\n56) Simon: Build Y1 G2a\n\n57) wil: S R2 Y3\nA Y1 G2a\nA Y1 G2a\n\n58) Simon: Build G1 B3\n\n59) wil: B B2 Y3\n\n60) Simon: Move G2 B3 G2a\n\n61) wil: B B3 G2a\n\n62) Simon: Build G2 B3\n\n63) wil: T B3 R3 G2a\n\n64) Simon: Sacrifice G2 B3\nBuild G2 G2a\nBuild G3 G2a\nCatastrophe G2a Green\n\n65) wil: B B2 Wil\n\n66) Simon: Build G2 B3\n\n67) wil: B B3 Y3\n\n68) Simon: Trade G2 R2 B3\n\n69) wil: T B3 Y3 Y3\n\n70) Simon: Build Y1 B3\n\n71) wil: D Y3 Y3 G2 G2\n\n72) Simon: Build G2 B3\n\n73) wil: B Y1 G2\n\n74) Simon: Move Y1 B3 G2\n\n75) wil: M Y3 G2 B3\n\n76) Simon: Build Y2 B3\n\n77) wil: B B3 Y3\n\n78) Simon: Build R1 Simon\n\twil: Nice\n\n79) wil: T B3 G3 Y3\n\n80) Simon: Sacrifice R1 Simon\nAttack Y1 G2\n\tSimon: Hmm :) It&#39;s still behind, and I&#39;m speculating on errors.\n\n81) wil: D Y3 B3 G2 Gtoo\n\n82) Simon: Move G2 B3 B2\n\n83) wil: M G3 Y3 B2\n\n84) Simon: Sacrifice G2 B2\nBuild R1 B3\nBuild R1 Simon\n\n85) wil: B B3 Y3\n\n86) Simon: Move R1 Simon G2\n\n87) wil: T B3 R3 Y3\n\n88) Simon: Build R1 Simon\n\n89) wil: M R3 Y3 G2\n\n90) Simon: Build R3 G2\n\n91) wil: B R3 Wil\n\n92) Simon: Attack R3 G2\n\n93) wil: S Y2 B2\nM R2 Wil Y3\nM R2 Y3 G2\nC G2 R\n\n94) Simon: Move R1 Simon G2\n\n95) wil: M B3 Wil B3\n\n96) Simon: Build R1 B3\n\tSimon: Right, I should have sac r1 to attack r3.\n\n97) wil: B Y2 Gtoo\n\n98) Simon: Build R2 Simon\n\n99) wil: M G3 Y3 G2\n\n100) Simon: Build R3 Simon\n\n101) wil: S G1 Wil\nB B3 Y3\n\n102) Simon: Move R3 Simon Gtoo\n\n103) wil: S R3 Wil\nA R3 Gtoo\nA R1 G2\nA Y1 G2\n\n104) Simon: Sacrifice R2 Simon\nAttack R1 G2\nAttack Y1 G2\n\n105) wil: T B3 R3 Y3\n\n106) Simon: Discover Y1 G2 B3 B3a\n\n107) wil: S Y3 Gtoo\nM R3 Gtoo Simon\nM G3 G2 Simon\nM G3 B2 Simon\n\n\twil: Long game! Like playing Andy!\n\tSimon: gg\n\twil: We all came to watch the blood wolf moon!\n\twil: What no dinner?\n\tSimon: Wow, who is &quot;we&quot;? People from the Looney designer group?\n\twil: Lol, my big ships visiting your hw..we\n\tSimon: Heh. It&#39;ll be at 05:00 in Germany, but I&#39;ve got the alarm set for an early rise to see it.\n\twil: Lol,.and you ain&#39;t asleep yet\n\nHomeworlds Online (SDG# 34852)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.12, Ended: 2019.1.19\nParticipants: Laurie_Menke (S), DodoBirb (N)\nWinner: DodoBirb\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tLaurie_Menke: Hi DodoBirb! Good luck in the Homeworlds Tournament of 2018 (and 2019)! :)\n\tDodoBirb: Good luck!\n\tDodoBirb: and thank you!\n\n2) Laurie_Menke: Homeworld B1 G3 Y3\n\n3) DodoBirb: Build G1 Dodobirb\n\tLaurie_Menke: I&#39;m starting off a little unorthodox... we&#39;ll see whether I can pull it off.  ;)\n\tDodoBirb: Interesting...\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n\tDodoBirb: Sorry, I probably should have paused the time. We can have a rematch if you want.\n\tLaurie_Menke: I&#39;m the one that&#39;s sorry, DodoBirb. I&#39;ve been traveling and having trouble keeping up with games. I probably shouldn&#39;t have joined the tournament in the first place. But I am sure you would have won eventually and am happy to conceded if you&#39;d like. If that doesn&#39;t feel good for you, I&#39;m also happy to try again. In any case, thanks for the fun!\n\tDodoBirb: I&#39;m fine with taking it if you&#39;re having trouble keeping up with the games. Hope you&#39;ve had fun!\n\tLaurie_Menke: I have indeed! Thanks, DodoBirb!  :)\n\nHomeworlds Online (SDG# 34875)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.15, Ended: 2019.2.23\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: H Y2 B1 G3\n\twil: GL\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) wil: B G1 Wil\n\tts52: Thanks. You too. Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) wil: T G1 B1 Wil\n\n6) ts52: Build G1 Ts52\n\n7) wil: B B2 Wil\n\n8) ts52: Discover G1 Ts52 B2 Gonzo\n\n9) wil: D B1 Wil R3 R3\n\n10) ts52: T G1 Y1 Ts52\n\n11) wil: S G3 Wil\nB B2 R3\nB B3 R3\nB B3 Wil\n\n12) ts52: B Y1 Ts52\n\n13) wil: T B3 G3 Wil\n\n14) ts52: Move Y1 Ts52 Gonzo\n\n15) wil: T B3 Y3 R3\n\n16) ts52: Build G1 Ts52\n\n17) wil: D B2 R3 Y2 Y2\n\n18) ts52: Sacrifice G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Gonzo\nBuild Y3 Ts52\n\n19) wil: S G3 Wil\nB B3 Wil\nB B3 Y2\nB B3 R3\n\n20) ts52: Trade Y3 G3 Ts52\n\n21) wil: D B3 Y2 Y3 Y3\n\n22) ts52: Build G1 Gonzo\n\n23) wil: S B2 Wil\nT B3 R3 R3\nT B3 G3 Y3\n\n24) ts52: Trade Y2 R2 Gonzo\n\n25) wil: S G3 Y3\nB B2 Wil\nB B3 Y2\nB B3 Y2\n\n26) ts52: Build Y2 Gonzo\n\n27) wil: T B3 G3 Wil\n\n28) ts52: Build Y3 Ts52\n\n29) wil: T B3 G3 Y2\n\n30) ts52: Build R1 Gonzo\n\n31) wil: B B3 Y2\n\n32) ts52: Build G2 Gonzo\n\n33) wil: D R3 R3 G2 G2\n\n34) ts52: Discover Y3 Ts52 G2 Kermit\n\n35) wil: M B1 R3 G2\n\n36) ts52: Discover Y2 Gonzo B3 Grover\n\n\nHomeworlds Online (SDG# 34884)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.16, Ended: 2019.1.20\nParticipants: ajo (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: The for the challenge! Good luck!\n\n2) ajo: Homeworld B3 R1 G3\n\tajo: For the challenge. Good luck to you too!\n\n3) wil: B G1 Wil\n\n4) ajo: Build G1 Ajo\n\n5) wil: T G1 B1 Wil\n\n6) ajo: Trade G1 B1 Ajo\n\n7) wil: T B1 R1 Wil\n\n8) ajo: Trade B1 R1 Ajo\n\n9) wil: B R2 Wil\n\tajo: Okay, I can do that too. ;)\n\twil: Lol\n\n10) ajo: Build R2 Ajo\n\n11) wil: B R2 Wil\n\n12) ajo: Trade R2 Y2 Ajo\n\n13) wil: D R2 Wil B3 B3\n\n14) ajo: Build G1 Ajo\n\n15) wil: D R1 Wil R3 R3\n\n16) ajo: Build Y1 Ajo\n\n17) wil: S G3 Wil\nB R2 R3\nB R3 B3\nB R3 Wil\n\n18) ajo: Discover R1 Ajo Y2 Alpha\n\n19) wil: T R2 G2 Wil\n\n20) ajo: Sacrifice G1 Ajo\nBuild R2 Alpha\n\n21) wil: T R3 G3 B3\n\n22) ajo: Move R1 Alpha R3\nCatastrophe R3 Red\n\n23) wil: B G1 B3\n\n24) ajo: Discover Y1 Ajo B2 Beta\n\n25) wil: T G1 Y1 B3\n\twil: That system destined for destruction\n\n26) ajo: Build G1 Ajo\n\n27) wil: B G1 Wil\n\n28) ajo: Sacrifice G3 Ajo\nBuild Y1 Beta\nBuild Y3 Ajo\nBuild Y3 Ajo\n\n29) wil: B Y3 B3\n\n30) ajo: Discover Y3 Ajo G2 Gamma\n\n31) wil: D Y3 B3 B2 B2\n\n32) ajo: Build G1 Ajo\n\n33) wil: T G1 B1 Wil\n\n34) ajo: Discover Y3 Gamma G3 Delta\n\n35) wil: B B1 Wil\n\n36) ajo: Trade Y2 B2 Ajo\n\n37) wil: B Y2 B3\n\n38) ajo: Sacrifice B2 Ajo\nTrade Y1 G1 Beta\nTrade Y3 B3 Delta\n\n39) wil: M Y2 B3 Beta\n\n40) ajo: Sacrifice Y1 Beta\nMove B3 Delta Wil\nCatastrophe Wil Blue\n\n41) wil: B G2 B3\n\n42) ajo: Discover R2 Alpha B3 Gamma\n\n43) wil: M Y3 B2 Gamma\n\tajo: I think I surprised you there. :)\n\twil: Nah, I&#39;ll do that everytime!\n\n44) ajo: Discover G1 Ajo B2 Delta\n\n45) wil: S R2 B3\nA R2 Gamma\nA G1 Beta\n\n46) ajo: Build G2 Delta\n\twil: You know they ain&#39;t getting away\n\twil: You know they ain&#39;t getting away\n\twil: Like watching cops and robber heli chase\n\tajo: Yeah, I think I sacrificed too much after all.\n\n47) wil: S G3 B3\nB G3 B3\nB G3 Beta\nB G3 Wil\n\n48) ajo: Trade G2 Y2 Delta\n\n49) wil: T G3 R3 Beta\n\n50) ajo: Build G2 Ajo\n\twil: Always glad to lose ships for control\n\n51) wil: S G3 B3\nB G3 B3\nB G3 Beta\nB R1 Beta\n\n52) ajo: Build Y1 Delta\n\n53) wil: S Y2 Beta\nM G3 Beta Ajo\nM R3 Beta Ajo\n\n\twil: The struggle is real\n\tajo: Good game!\n\nHomeworlds Online (SDG# 34883)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.17, Ended: 2019.2.23\nParticipants: ts52 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B2 R3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tajo: For the Great Homeworlds Tournament of 201[89]!\n\tts52: :D Have a good game!\n\n3) ajo: Build G1 Ajo\n\n4) ts52: Build G1 Ts52\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) ts52: T G1 Y1 Ts52\n\n7) ajo: Build Y2 Ajo\n\n8) ts52: B Y2 Ts52\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) ts52: Discover Y2 Ts52 B3 Gonzo\n\n11) ajo: Build G1 Ajo\n\n12) ts52: Build G1 Ts52\n\n13) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y3 Ajo\nBuild Y3 Ajo\n\n14) ts52: Sacrifice G1 Ts52\nBuild Y3 Gonzo\n\n15) ajo: Sacrifice Y3 Ajo\nMove Y2 Ajo Alpha\nMove Y1 Alpha Gonzo\nMove Y2 Alpha Gonzo\nCatastrophe Gonzo Yellow\n\n16) ts52: Build G1 Ts52\n\n17) ajo: Build G1 Ajo\n\n18) ts52: Discover G1 Ts52 B3 Gonzo\n\n19) ajo: Trade G1 B1 Ajo\n\n20) ts52: Build G1 Ts52\n\n21) ajo: Build G2 Ajo\n\n22) ts52: Build G2 Gonzo\n\n23) ajo: Move G1 Ajo Alpha\n\n24) ts52: Trade G2 B2 Gonzo\n\n25) ajo: Build G2 Alpha\n\n26) ts52: Trade B2 Y2 Gonzo\n\tajo: Ping!\n\tts52: Sorry for the delay\n\n27) ajo: Build Y1 Alpha\n\n28) ts52: Trade G1 R1 Ts52\n\n29) ajo: Trade G2 R2 Alpha\n\n30) ts52: Build R1 Ts52\n\n31) ajo: Discover Y1 Alpha B3 Beta\n\n32) ts52: Move R1 Ts52 Gonzo\n\n33) ajo: Sacrifice G2 Ajo\nBuild Y2 Beta\nBuild Y3 Ajo\n\n34) ts52: Build Y3 Gonzo\n\n35) ajo: Trade Y3 G3 Ajo\n\n36) ts52: Discover Y1 Ts52 Y3 Bigbird\n\n37) ajo: Trade Y1 B1 Beta\n\n38) ts52: Move Y3 Gonzo Alpha\n\n39) ajo: Sacrifice G3 Ajo\nBuild B2 Ajo\nBuild B3 Beta\nBuild Y1 Beta\n\n40) ts52: S R1 Gonzo\nA R2 Alpha\n\tajo: Ping!\n\n41) ajo: Trade B3 G3 Beta\n\tts52: Sorry for the delay\n\n42) ts52: A Y2 Alpha\n\n43) ajo: Sacrifice G1 Alpha\nBuild B3 Beta\n\n\nHomeworlds Online (SDG# 34893)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.17, Ended: 2019.1.27\nParticipants: Trydnt (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) Trydnt: Homeworld B2 R1 G3 *\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Trydnt: Build G1 Trydnt\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) goulo: Build Y1 Goulo\n\n8) Trydnt: Build R1 Trydnt\n\n9) goulo: Build G1 Goulo\n\n10) Trydnt: Build G1 Trydnt\n\n11) goulo: Discover G1 Goulo Y1 Flaveto\n\n12) Trydnt: Trade G3 Y3 Trydnt\n\n13) goulo: Discover Y1 Goulo G1 Verdeto\n\n14) Trydnt: Build Y2 Trydnt\n\n15) goulo: Build Y2 Goulo\n\n16) Trydnt: Discover R1 Trydnt Y3 Y3\n\n17) goulo: Trade Y2 R2 Goulo\n\n18) Trydnt: Build R2 Trydnt\n\n19) goulo: Move R2 Goulo Verdeto\n\n20) Trydnt: Discover Y2 Trydnt G3 G3\n\n21) goulo: Build Y2 Verdeto\n\n22) Trydnt: Discover R2 Trydnt Y3 Y33\n\n23) goulo: Build Y2 Goulo\n\n24) Trydnt: Build G2 Trydnt\n\n25) goulo: Build G2 Goulo\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild R2 Y3\nBuild R3 Y33\n\n27) goulo: Build R3 Verdeto\n\n28) Trydnt: Sacrifice Y2 G3\nMove R1 Y3 Verdeto\nMove R2 Y33 Verdeto\nCatastrophe Verdeto R\n\n29) goulo: Build Y2 Goulo\n\n30) Trydnt: Move R3 Y33 Verdeto\n\n31) goulo: Sacrifice Y1 Verdeto\nDiscover Y2 Verdeto Y3 Flavego\n\n32) Trydnt: Build Y1 Trydnt\n\n33) goulo: Trade G2 R2 Goulo\n\n34) Trydnt: Discover Y1 Trydnt G3 G3\n\n35) goulo: Move R2 Goulo Flaveto\n\n36) Trydnt: Move R2 Y3 Flaveto\n\n37) goulo: Sacrifice G1 Flaveto\nBuild Y3 Flavego\n\n38) Trydnt: Move Y1 G3 Verdeto\n\n39) goulo: Sacrifice Y2 Flavego\nMove R2 Flaveto Flavego\nDiscover Y2 Goulo G1 Verdeto2\n\n40) Trydnt: Build Y2 Verdeto\n\n41) goulo: Move Y3 Flavego Flaveto\n\n42) Trydnt: Move R3 Verdeto Flavego\n\n43) goulo: Sacrifice R2 Flavego\nAttack R2 Flaveto\nPass\n\n44) Trydnt: Move R3 Flavego Verdeto\n\n45) goulo: Build Y3 Verdeto2\n\n46) Trydnt: Discover Y1 Verdeto G3 G3\n\n47) goulo: Build G2 Goulo\n\n48) Trydnt: Build G2 Trydnt\n\n49) goulo: Trade G2 B2 Goulo\n\tTrydnt: meant to put that r3 on verdeto2 not verdeto... damnations\n\n50) Trydnt: Trade G1 B1 Trydnt\n\n51) goulo: Move B2 Goulo Verdeto2\n\tgoulo: aha, yeah, that would have seemed better indeed!\n\tTrydnt: pretty sure that&#39;ll lose me the game but guess we&#39;ll see\n\n52) Trydnt: Move B1 Trydnt G3\n\n53) goulo: Move Y2 Verdeto2 G3\n\n54) Trydnt: Move R3 Verdeto G3\n\n55) goulo: Discover Y2 G3 R2 Rugho\n\n56) Trydnt: Build B1 G3\n\n57) goulo: Discover Y3 Flaveto G3 Verdego\n\n58) Trydnt: Discover B1 G3 G1 G1\n\n59) goulo: Build G2 Goulo\n\n60) Trydnt: Build G2 Trydnt\n\n61) goulo: Move G2 Goulo Flaveto\n\n62) Trydnt: Sacrifice G2 Trydnt\nBuild B1 G3\nBuild B3 G1\n\n63) goulo: Build B3 Verdeto2\n\n64) Trydnt: Move B1 G3 Verdeto\n\n65) goulo: Discover Y2 Rugho B3 Bluego\n\n66) Trydnt: Trade B3 R3 G1\n\n67) goulo: Trade B2 R2 Verdeto2\n\n68) Trydnt: Build G2 Trydnt\n\n69) goulo: Move R2 Flaveto Verdego\n\n70) Trydnt: Sacrifice G2 Trydnt\nBuild B2 G1\nBuild B3 Verdeto\n\n71) goulo: Build R1 Verdego\n\n72) Trydnt: Sacrifice Y2 Verdeto\nMove B3 Verdeto Goulo\nMove B1 Verdeto Goulo\n\n73) goulo: Attack B3 Goulo\n\n74) Trydnt: Sacrifice Y1 G3\nMove B1 G1 Goulo\nCatastrophe Goulo B\n\n75) goulo: Sacrifice Y3 Verdeto2\nMove Y1 Goulo Trydnt\nMove Y2 Bluego Trydnt\nMove Y2 Goulo Trydnt\nCatastrophe Trydnt Y\n\n76) Trydnt: Trade R1 Y1 Trydnt\n\n77) goulo: Move Y3 Verdego Trydnt\n\n78) Trydnt: Build Y1 Trydnt\n\n79) goulo: Attack G2 Trydnt\n\n80) Trydnt: Sacrifice Y1 Trydnt\nMove R3 G1 Goulo\n\n81) goulo: Attack Y1 Trydnt\n\n\tTrydnt: well played\n\tgoulo: thanks, I was lucky about your typo/brainfart/whatever that you mentioned. :)\r\n\r\nafter that, I began to feel I was losing the advantage it gave me as we started to become closer in material strength again as almost all ships got built.\r\n\r\nthe endgame was quite epic with so many ships and possibilities... i almost overlooked my move to spend so many of my own yellows to kill your y3  defending your homeworld, and if i&#39;d done something else, i think it would not have worked out for me.\n\tTrydnt: yeah I had another move that I was considering that would have made the win I think but didn&#39;t pull it together in time\n\nHomeworlds Online (SDG# 34895)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.18, Ended: 2019.4.15\nParticipants: ts52 (S), DodoBirb (N)\nWinner: ts52\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: This is for the Tournament btw.\n\tDodoBirb: Good Luck!\n\n2) ts52: H Y3 B2 G3\n\tDodoBirb: Just pausing the time in case it runs out.\n\n3) DodoBirb: Build G1 Dodobirb\n\tts52: Thanks. Sorry about that. Have a good game!\n\tDodoBirb: You too!\n\n4) ts52: B G1 Ts52\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n6) ts52: Trade G1 B1 Ts52\n\n7) DodoBirb: Build G1 Dodobirb\n\n8) ts52: Build B2 Ts52\n\n9) DodoBirb: Trade G1 Y1 Dodobirb\n\n10) ts52: Build G1 Ts52\n\n11) DodoBirb: Build G1 Dodobirb\n\n12) ts52: Discover B2 Ts52 G1 Robin\n\n13) DodoBirb: Discover B1 Dodobirb G3 Greeny\n\n14) ts52: Build G2 Ts52\n\n15) DodoBirb: Build G2 Dodobirb\n\n16) ts52: Trade G2 Y2 Ts52\n\n17) DodoBirb: Trade G2 Y2 Dodobirb\n\tts52: Sorry for the delay.\n\n18) ts52: Build Y1 Ts52\n\tDodoBirb: No worries.\n\n19) DodoBirb: Move Y1 Dodobirb Greeny\n\n20) ts52: Move Y1 Ts52 Robin\n\n21) DodoBirb: Build G2 Dodobirb\n\n22) ts52: Move G1 Ts52 Robin\n\n23) DodoBirb: Move G2 Dodobirb Greeny\n\n24) ts52: Build G2 Ts52\n\n25) DodoBirb: Build Y1 Dodobirb\n\n26) ts52: T G1 R1 Robin\n\n27) DodoBirb: Trade G2 R2 Greeny\n\n28) ts52: B G1 Ts52\n\n29) DodoBirb: Build G2 Dodobirb\n\tts52: Thanks again for being so understanding about my forgetfulness\n\tDodoBirb: don&#39;t worry about it.\n\n30) ts52: Discover G1 Ts52 R1 Elmo\n\n31) DodoBirb: Discover G2 Dodobirb B3 Bigblue\n\n32) ts52: Move Y2 Ts52 Elmo\n\n33) DodoBirb: Build G2 Bigblue\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Elmo\nBuild Y3 Robin\n\n35) DodoBirb: Build Y3 Greeny\n\n36) ts52: Trade Y3 R3 Robin\n\n37) DodoBirb: Trade G2 R2 Bigblue\n\n38) ts52: Move R3 Robin Bigblue\n\n39) DodoBirb: Sacrifice G2 Bigblue\nBuild R1 Bigblue\nBuild R3 Bigblue\nCatastrophe Bigblue R\n\n40) ts52: Build Y3 Robin\n\n41) DodoBirb: Build B2 Greeny\n\n42) ts52: Build B3 Robin\n\n43) DodoBirb: Discover B2 Greeny R1 Littlered\n\tDodoBirb: If you want to we could just end this game as as draw.\n\n44) ts52: Discover B3 Robin G2 Kermit\n\tts52: I don&#39;t think we&#39;ve quite stalemated yet.\n\tDodoBirb: I meant if you&#39;re having trouble keeping up but if you want to continue then let&#39;s continue.\n\n45) DodoBirb: Sacrifice Y3 Greeny\nMove B1 Greeny Littlered\nMove B1 Littlered Ts52\nMove B2 Littlered Ts52\nCatastrophe Ts52 B\n\n46) ts52: Sacrifice Y2 Elmo\nMove B3 Kermit Ts52\nMove R1 Robin Ts52\n\tts52: Oh, I see. Thanks. I&#39;ll try to do better. I should be able to keep up.\n\n47) DodoBirb: Discover G1 Dodobirb Y3 Sun\n\n48) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G2 Elmo\nBuild G3 Ts52\n\n49) DodoBirb: Move G1 Sun Elmo\nCatastrophe Elmo G\n\n50) ts52: Build B1 Ts52\n\n51) DodoBirb: Discover Y1 Greeny G2 Medium\n\n52) ts52: Build G1 Ts52\n\n53) DodoBirb: Move Y1 Dodobirb Ts52\n\n54) ts52: Attack Y1 Ts52\n\n55) DodoBirb: Move Y1 Medium Ts52\n\n56) ts52: Discover Y1 Ts52 Y2 Bigbird\n\n57) DodoBirb: Build Y3 Dodobirb\n\tDodoBirb: I think this is Good game.\n\tDodoBirb: well, I didn&#39;t mean literally good game. You still have a few moves left.\n\n58) ts52: Attack Y1 Ts52\n\n59) DodoBirb: Move Y2 Dodobirb Greeny\n\n60) ts52: Discover Y1 Ts52 B1 Gonzo\n\tDodoBirb: Oh, I didn&#39;t see that one.\n\n61) DodoBirb: Move R2 Greeny Gonzo\n\n62) ts52: Build B2 Ts52\n\n63) DodoBirb: Attack Y1S Gonzo\n\n64) ts52: Build B2 Robin\n\n65) DodoBirb: Build G1 Dodobirb\n\n66) ts52: Move G2 Ts52 Elmo\n\n67) DodoBirb: Move G1 Dodobirb Greeny\n\n68) ts52: Trade B2 R2 Robin\n\n69) DodoBirb: Move G1 Greeny Gonzo\n\n70) ts52: Sacrifice G3 Ts52\nBuild R1 Robin\nBuild R3 Ts52\nBuild G2 Elmo\n\n71) DodoBirb: Move R2 Gonzo Bigbird\n\n72) ts52: D Y1 Bigbird G3 Kermit\n\n73) DodoBirb: Sacrifice G1 Gonzo\nBuild R3 Bigbird\n\n74) ts52: Discover R1 Ts52 G2 Oscar\n\n75) DodoBirb: Move R3 Bigbird Elmo\n\n76) ts52: Sacrifice Y2 Elmo\nMove B1 Ts52 Dodobirb\nMove B2 Ts52 Dodobirb\n\n77) DodoBirb: Attack B2S Dodobirb\n\n78) ts52: S Y3 Robin\nM B3 Ts52 Dodobirb\nC Dodobirb Blue\nM R2 Robin Dodobirb\nM R1 Robin Dodobirb\n\n79) DodoBirb: Attack G2S Elmo\n\n80) ts52: M R3 Ts52 Dodobirb\nC Dodobirb R\n\n\tts52: Indeed . You had me on the ropes there for a while though. Good game.\n\nHomeworlds Online (SDG# 34770)\nVariants: &quot;Unrated&quot;\nStarted: 2019.1.19, Ended: 2019.1.24\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Thx this&#39;ll be interesting.\n\n2) Trydnt: Homeworld R3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B G1 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: B Y2 Wil\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: D Y1 Wil G3 G3\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) wil: B Y3 G3\n\n14) Trydnt: Build Y3 G1\n\n15) wil: D G1 Wil Y3 Y3\n\n16) Trydnt: Trade Y2 R2 Trydnt\n\n17) wil: T Y2 R2 Wil\n\n18) Trydnt: Build Y2 Trydnt\n\n19) wil: B G1 Wil\n\n20) Trydnt: Sacrifice Y2 Trydnt\nMove R2 Trydnt G1\nMove R2 G1 Y3\n\n21) wil: D G1 Y3 Y2 Y2\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: T G1 B1 Wil\n\n24) Trydnt: Trade Y2 B2 Trydnt\n\n25) wil: M B1 Wil G3\n\n26) Trydnt: Move B2 Trydnt G1\n\n27) wil: D Y1 G3 G1 Gwon\n\n28) Trydnt: Build Y2 Trydnt\n\n29) wil: S G1 Y2\nB Y2 G3\n\n30) Trydnt: Build B1 G1\n\n31) wil: B R1 Wil\n\n32) Trydnt: Discover Y2 Trydnt G1 G11\n\n33) wil: B G2 Wil\n\n34) Trydnt: Build G2 Trydnt\n\n35) wil: D Y2 G3 B1 B1\n\n36) Trydnt: Trade B1 R1 G1\n\n37) wil: M R1 Wil G3\n\n38) Trydnt: Move Y2 Trydnt Gwon\n\n39) wil: D Y1 Gwon B3 B3\n\n40) Trydnt: Move Y2 Gwon B3\n\n41) wil: D Y1 B3 B1 Be1\n\n42) Trydnt: Build B3 G1\n\n43) wil: B B3 G3\n\n44) Trydnt: Move B3 G1 Y3\n\n45) wil: T B1 G1 G3\n\n46) Trydnt: Build B1 G1\n\n47) wil: M G1 G3 B1\n\n48) Trydnt: Discover Y2 G11 R2 R2\n\n49) wil: B G1 B1\n\n50) Trydnt: Sacrifice G2 Trydnt\nBuild R1 G1\nBuild R3 Y3\n\n51) wil: B R3 G3\n\n52) Trydnt: Move R3 Y3 B1\n\n53) wil: D Y2 B1 G2 G2\n\n54) Trydnt: Attack G1 B1\n\n55) wil: M G2 Wil G3\n\n56) Trydnt: Build G2 B1\n\n57) wil: M Y2 G2 Be1\n\n58) Trydnt: Sacrifice Y2 B3\nMove G1 B1 G3\nMove G2 B1 G3\nCatastrophe G3 G\n\n59) wil: S G1 B1\nBuild G1 Wil\n\n60) Trydnt: Build B3 G1\n\n61) wil: B G1 Wil\n\n62) Trydnt: Build G2 Trydnt\n\n63) wil: D G1 Wil Y3 Why3\n\twil: S g1 b1 b b1 wil\n\n64) Trydnt: Move B3 G1 Why3\n\n65) wil: B G2 Why3\n\n66) Trydnt: Sacrifice R2 Y3\nAttack G1 Why3\nAttack G2 Why3\n\n67) wil: T Y2 G2 Be1\n\n68) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Trydnt\nBuild B3 Why3\n\n69) wil: M G2 Be1 Trydnt\nC Trydnt G\n\n\twil: A gift for the old man?\n\tTrydnt: goddamit I did not see that coming\n\twil: Is The only way I can beat you\n\twil: Capitalizing on your mistakes\n\nHomeworlds Online (SDG# 34834)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.1.19, Ended: 2019.1.25\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\twil: Playing against my fav opening\n\tTrydnt: haha I learned from the best\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: T G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: B B2 Wil\n\n9) Trydnt: Discover B2 Trydnt G3 G3\n\n10) wil: T B1 Y1 Wil\n\n11) Trydnt: Discover B1 Trydnt Y3 Y3\n\n12) wil: D B2 Wil G2 G2\n\n13) Trydnt: Build G1 Trydnt\n\n14) wil: B Y1 Wil\n\n15) Trydnt: Trade B2 Y2 G3\n\n16) wil: M Y1 Wil G2\n\n17) Trydnt: Build Y2 G3\n\n18) wil: B G1 Wil\n\n19) Trydnt: Discover Y2 G3 G2 G22\n\n20) wil: T G1 R1 Wil\n\n21) Trydnt: Trade G1 R1 Trydnt\n\n22) wil: B B1 G2\n\n23) Trydnt: Build G1 Trydnt\n\n24) wil: T B2 R2 G2\n\n25) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Y3\n\n26) wil: B G1 Wil\n\n27) Trydnt: Build G1 Trydnt\n\n28) wil: B B2 G2\n\n29) Trydnt: Move B1 Y3 G22\n\n30) wil: M B2 G2 Y3\n\n31) Trydnt: Build B3 G22\n\n32) wil: B B3 G2\n\n33) Trydnt: Move B3 G22 G3\n\n34) wil: T B3 Y3 G2\n\n35) Trydnt: Build B3 G22\n\n36) wil: B B3 G2\n\n37) Trydnt: Trade B3 R3 G22\n\n38) wil: T B3 R3 G2\n\n39) Trydnt: Build B3 G22\n\n40) wil: B B3 G2\n\n41) Trydnt: Move R3 G22 Y3\n\n42) wil: D B2 Y3 Y2 Y2\n\n43) Trydnt: Move G1 Trydnt Y3\n\n44) wil: B R1 Wil\n\n45) Trydnt: Build R2 Trydnt\n\n46) wil: D Y3 G2 R3 R3\n\n47) Trydnt: Build G1 Trydnt\n\n48) wil: M G1 Wil Y2\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y3\nBuild G3 Trydnt\nBuild R2 Y3\n\n50) wil: M B2 Y2 Y3\n\n51) Trydnt: Attack B2 Y3\n\n52) wil: S G1 Y2\nB Y2 G2\n\n53) Trydnt: Build G1 Y3\n\n54) wil: M B1 G2 R3\n\n55) Trydnt: Move R2 Y3 G22\n\n56) wil: P\n\n57) Trydnt: Move G1 Y3 G2\n\n58) wil: S Y3 R3\nD B3 G2 Y3 Why3\nM R3 G2 Why3\nM Y2 G2 Why3\n\n59) Trydnt: Move B3 G3 G2\n\n60) wil: M R2 G2 Why3\n\n61) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G2\n\n62) wil: P\n\n63) Trydnt: Sacrifice Y2 G3\nMove Y1 G2 Why3\nMove Y2 G22 Why3\nCatastrophe Why3 Y\n\n64) wil: B G3 Wil\n\n65) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 G22\nTrade G1 Y1 G2\n\n66) wil: D G3 Wil Y2 Y2\n\n67) Trydnt: Sacrifice G2 Y3\nBuild Y2 G2\nBuild Y2 G22\n\n68) wil: M R1 Wil Y2\n\n69) Trydnt: Sacrifice Y2 G22\nMove Y1 G2 Wil\nMove Y2 G2 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 34902)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.1.19, Ended: 2019.1.22\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H Y1 B1 G3 *\n\n2) Trydnt: Homeworld B2 G2 Y3 *\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Build Y1 Trydnt\n\n7) wil: D G1 Wil Y3 Y3\n\n8) Trydnt: Discover Y1 Trydnt G3 G3\n\n9) wil: B G1 Y3\n\n10) Trydnt: Build Y2 G3\n\n11) wil: D G1 Y3 B1 B1\n\n12) Trydnt: Build Y2 Trydnt\n\n13) wil: S G3 Wil\nB G2 B1\nB G2 Y3\nB G3 Wil\n\n14) Trydnt: Build Y2 G3\n\n15) wil: B G3 B1\n\n16) Trydnt: Move Y1 G3 Wil\n\n17) wil: T G3 Y3 B1\n\n18) Trydnt: Move Y1 Trydnt Wil\n\n19) wil: T G2 R2 B1\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) wil: B Y2 B1\n\n22) Trydnt: Build R1 Trydnt\n\n23) wil: S G3 Wil\nB G2 Wil\nB G3 B1\nB G3 Wil\n\n24) Trydnt: Trade R1 B1 Trydnt\n\n25) wil: T G3 B3 B1\n\n26) Trydnt: Build R1 Trydnt\n\n27) wil: B G3 B1\n\n28) Trydnt: Move Y2 G3 B1\n\n29) wil: A Y2 B1\n\n30) Trydnt: Move Y2 G3 B1\nCatastrophe B1 Y\n\n31) wil: T G3 Y3 B1\n\n32) Trydnt: Build Y2 Trydnt\n\n33) wil: S G3 Wil\nB G3 Wil\nB G3 B1\nB G3 Y3\n\n34) Trydnt: Move B1 Trydnt Wil\n\n35) wil: S B3 B1\nT G3 R3 Y3\nT G3 R3 Wil\nP\n\n36) Trydnt: Trade Y3 B3 Trydnt\n\n37) wil: S R3 Y3\nA Y1 Wil\nA Y1 Wil\nA B1 Wil\n\n38) Trydnt: Move Y2 Trydnt Wil\nCatastrophe Wil Y\n\n39) wil: S G3 B1\nB G3 B1\nB G3 Y3\nB G3 Wil\n\n40) Trydnt: Trade R2 Y2 Trydnt\n\n41) wil: S Y3 B1\nM G3 B1 Trydnt\nM G3 Y3 Trydnt\nM B1 Wil Trydnt\n\n42) Trydnt: Attack G3 Trydnt\n\n43) wil: S G2 Y3\nB G2 Trydnt\nB B2 Trydnt\nC Trydnt B\nC Trydnt G\n\n\twil: Def,different\n\tTrydnt: yup not sure how I feel about these games lol\n\twil: You are fighting an untested neuonetwork\n\nHomeworlds Online (SDG# 34851)\nStarted: 2019.1.19, Ended: 2019.3.27\nParticipants: Trydnt (S), dragon76n (N)\nWinner: Trydnt\n\n1) dragon76n: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld G2 B1 B3 *\n\n3) dragon76n: Build G1 Dragon76n\n\n4) Trydnt: Build B1 Trydnt\n\n5) dragon76n: T G1 Y1 Dragon76n\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) dragon76n: B G1 Dragon76n\n\n8) Trydnt: Build B2 Trydnt\n\n9) dragon76n: Trade G3 B3 Dragon76n\n\n10) Trydnt: Discover B2 Trydnt Y3 Y3\n\n11) dragon76n: Build G1 Dragon76n\n\n12) Trydnt: Build B2 Trydnt\n\n13) dragon76n: Trade G1 R1 Dragon76n\n\n14) Trydnt: Trade B1 R1 Trydnt\n\n15) dragon76n: B G1 Dragon76n\n\n16) Trydnt: Build Y1 Trydnt\n\n17) dragon76n: D G1 Dragon76n Y3 Yelthr\n\n18) Trydnt: Move B2 Trydnt Yelthr\n\n19) dragon76n: Trade B3 G3 Dragon76n\n\n20) Trydnt: Sacrifice R1 Trydnt\nAttack G1 Yelthr\n\n21) dragon76n: Trade G1 B1 Dragon76n\n\n22) Trydnt: Build B2 Yelthr\n\n23) dragon76n: Discover B1 Dragon76n G3 Grethr\n\n24) Trydnt: Trade B2 R2 Yelthr\n\n25) dragon76n: Build B2 Grethr\n\n26) Trydnt: Build B3 Yelthr\n\n27) dragon76n: Build B3 Grethr\n\n28) Trydnt: Build B3 Yelthr\n\n29) dragon76n: Trade B1 R1 Grethr\n\n30) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 Yelthr\nTrade B3 G3 Yelthr\n\n31) dragon76n: Trade B2 Y2 Grethr\n\n32) Trydnt: Discover Y3 Yelthr G2 G2\n\n33) dragon76n: Move R1 Grethr Trydnt\n\n34) Trydnt: Sacrifice R2 Yelthr\nAttack R1 Trydnt\nPass\n\n35) dragon76n: B Y1 Grethr\n\n36) Trydnt: Build Y2 G2\n\n37) dragon76n: Trade Y1 R1 Grethr\n\n38) Trydnt: Build R2 Trydnt\n\n39) dragon76n: Build R2 Grethr\n\n40) Trydnt: Discover Y2 G2 B3 B3\n\n41) dragon76n: M R1 Grethr Trydnt\n\n42) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Trydnt\n\n43) dragon76n: B Y1 Grethr\n\n44) Trydnt: Sacrifice Y3 G2\nMove Y2 B3 Dragon76n\nMove Y1 Trydnt Grethr\nMove Y1 Grethr Dragon76n\nCatastrophe Dragon76n Y\n\n45) dragon76n: Trade B3 Y3 Grethr\n\n46) Trydnt: Sacrifice G3 Yelthr\nBuild B1 Yelthr\nBuild B2 Yelthr\nBuild G1 Yelthr\n\n47) dragon76n: Sacrifice Y3 Grethr\nMove Y2 Grethr Trydnt\nMove Y1 Grethr Trydnt\nMove G3 Dragon76n Yelthr\n\n48) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Yelthr Dragon76n\nMove B2 Yelthr Dragon76n\nMove B2 Yelthr Dragon76n\nCatastrophe Dragon76n B\n\n\nHomeworlds Online (SDG# 34816)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.20, Ended: 2019.1.24\nParticipants: Simon (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tSimon: Have fun!\n\n2) Simon: Homeworld G1 R3 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Simon: Build B1 Simon\n\n5) Trydnt: Build G1 Trydnt\n\n6) Simon: Build B1 Simon\n\n7) Trydnt: Discover G1 Trydnt B3 B3\n\n8) Simon: Trade B3 Y3 Simon\n\n9) Trydnt: Build G2 B3\n\n10) Simon: Build B1 Simon\n\n11) Trydnt: Trade G2 Y2 B3\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) Trydnt: Build G2 B3\n\n14) Simon: Build B2 G2\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G3 Trydnt\nBuild G3 B3\n\n16) Simon: Discover B1 Simon B2 B2\n\n17) Trydnt: Trade G3 R3 B3\n\n18) Simon: Build B3 Simon\n\n19) Trydnt: Discover G2 Trydnt B3 Be3\n\n20) Simon: Trade B3 G3 Simon\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Be3\nBuild Y1 B3\n\n22) Simon: Build B3 G2\n\n23) Trydnt: Move R3 B3 G2\n\n24) Simon: Sacrifice B2 G2\nTrade B1 R1 G2\nTrade B3 R3 G2\n\n25) Trydnt: Attack R3 G2\n\n26) Simon: Build R1 G2\nCatastrophe G2 Red\n\n27) Trydnt: Trade G3 Y3 Be3\n\n28) Simon: Move G3 Simon B2\n\n29) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Be3\nBuild G3 Trydnt\nBuild G3 B3\n\n\tSimon: gg\n\nHomeworlds Online (SDG# 34847)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.20, Ended: 2019.1.22\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G1 R3 B3\n\n2) wil: H B2 Y1 G3\n\twil: Oh cool, thx!\n\n3) Simon: Build B1 Simon\n\n4) wil: B G1 Wil\n\tSimon: Yep yep, more Homeworlds\n\n5) Simon: Trade B1 Y1 Simon\n\n6) wil: T G1 Y1 Wil\n\n7) Simon: Build Y2 Simon\n\n8) wil: B Y2 Wil\n\n9) Simon: Discover Y1 Simon G2 G2\n\n10) wil: D Y1 Wil G3 G3\n\n11) Simon: Build B1 Simon\n\n12) wil: B G1 Wil\n\n13) Simon: Trade B3 G3 Simon\n\n14) wil: T G1 R1 Wil\n\n15) Simon: Build Y2 G2\n\n16) wil: B Y3 G3\n\n17) Simon: Discover Y1 G2 R3 R3\n\n18) wil: M Y3 G3 G2\n\n19) Simon: Sacrifice G3 Simon\nBuild Y3 R3\nBuild Y3 Simon\nBuild B1 Simon\n\n20) wil: B R1 Wil\n\n21) Simon: Discover Y2 G2 B1 B1\n\n22) wil: B G1 Wil\n\n23) Simon: Build B2 Simon\n\n24) wil: T Y2 B2 Wil\n\n25) Simon: Sacrifice B1 Simon\nTrade Y1 G1 R3\n\n26) wil: D B2 Wil G3 Gee3\n\n27) Simon: Build G2 R3\n\n28) wil: M G1 Wil G3\n\n29) Simon: Discover B1 Simon Y2 Y2\n\n30) wil: B R1 Wil\n\n31) Simon: Sacrifice G2 R3\nBuild B1 Simon\nBuild B3 Y2\n\n32) wil: B B3 Gee3\n\n33) Simon: Trade B3 R3 Y2\n\n34) wil: S Y1 G3\nM B2 Gee3 G2\n\n35) Simon: Build G2 R3\n\n36) wil: B Y1 G2\n\n37) Simon: Sacrifice G2 R3\nBuild G2 R3\nBuild B3 Y2\n\n38) wil: B B3 G2\n\n39) Simon: Sacrifice Y3 Simon\nMove B3 Y2 R3\nMove B3 R3 Wil\nMove Y3 R3 Wil\n\n40) wil: S Y3 G2\nM B3 Gee3 G2\nM B3 G2 Simon\nM B2 G2 Simon\nC Simon B\n\n41) Simon: Sacrifice R3 Y2\nAttack G3 Wil\nAttack R1 Wil\nAttack R1 Wil\n\n42) wil: M B3 G2 Simon\n\twil: Nice move, didn&#39;t see it coming\n\n43) Simon: Attack R1 Wil\n\n\twil: Gg\n\tSimon: gg\n\tSimon: I&#39;ll be super busy IRL the next few weeks, thus I won&#39;t re-challenge immediately.\n\twil: No worries Thx for the game.\n\nHomeworlds Online (SDG# 34761)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.20, Ended: 2019.1.20\nParticipants: Trydnt (S), Mathematician42 (N)\nWinner: Trydnt\n\n1) Mathematician42: Homeworld R3 B2 G3\n\tMathematician42: how do I use this? I&#39;m new to super duper games\r\n\n\n\nHomeworlds Online (SDG# 34901)\nVariants: &quot;Unrated&quot;\nStarted: 2019.1.20, Ended: 2019.1.21\nParticipants: wil (S), Mathematician42 (N)\nWinner: wil\n\n1) Mathematician42: Homeworld R3 B1 G3\n\tMathematician42: Hi! I&#39;m new to Super Duper Games and homeworlds\n\tMathematician42: Hello?\n\n2) wil: H B2 Y1 G3\n\tMathematician42: Just doing something that seems good lol\r\n\n\twil: Try #2!\n\n3) Mathematician42: Build G1 Mathematician42\n\tMathematician42: now I can do an action?\n\tMathematician42: Is moving a valid action, or do I need yellow?\n\n4) wil: B G1 Wil\n\twil: Yeah, you can&#39;t move without a yellow\n\n5) Mathematician42: Trade G1 B1 Mathematician42\n\tMathematician42: Is there anything you&#39;d recommend?\n\n6) wil: T G1 B1 Wil\n\n7) Mathematician42: Build B2 Mathematician42\n\twil: The beginning is all building\n\n8) wil: B B2 Wil\n\tMathematician42: That moment when you can&#39;t even spell your username\n\tMathematician42: XD\n\twil: Build ships, stars, bigger ships.  \n\twil: The bane of a big name\n\n9) Mathematician42: Trade B2 Y2 Mathematician42\n\n10) wil: D B1 Wil G3 G3\n\tMathematician42: Are you familiar with the VASSAL engine?\n\n11) Mathematician42: Trade B1 R1 Mathematician42\n\twil: No not at all, is he there?\n\tMathematician42: It&#39;s a module for want of a better world where you can download modules to play board games in real time.\n\n12) wil: B B1 Wil\n\twil: Yeah, I looked, is thre an hw  module?\n\n13) Mathematician42: Build R1 Mathematician42\n\tMathematician42: no\n\tMathematician42: no\n\tMathematician42: IDK how to make one\n\n14) wil: D B2 Wil Y3 Y3\n\tMathematician42: Is pyramid arcade worth the $74?\n\tDraw5PlayAll: I looked at the vassal thing... seems old and outdated, forum seems to have little that is 2018/2019.\n\tDraw5PlayAll: As for Arcade, it really depends.\n\twil: I play a lot of pyramid games..Yes4me\n\twil: In 5.hw  games right now\n\tMathematician42: Is it possible to play Zendo with Pyramid Arcade?\n\n15) Mathematician42: Discover R1 Mathematician42 R2 R2\n\tMathematician42: @Draw5PlayAll: VASSAL is great for X-wing Miniatures. In fact, they had an update not so long ago\n\tMathematician42: To be fair SDG looks old and outdated\n\n16) wil: S G3 Wil\nB B2 G3\nB B3 Y3\nB B3 Wil\n\tDraw5PlayAll: Zendo with Arcade: Not without squirming a bit. Zendo is only good when you have several of each piece to pick from, otherwise supply limits become a problem.\n\tMathematician42: I see. What if I already have two old treehouse sets where one is missing the blue trio?\n\tDraw5PlayAll: That is fine, since you get 5 trios of red, green, yellow, and black. Now you just need 20-40 chips each of three colors.\n\tMathematician42: Great! Thanks for the info\n\tDraw5PlayAll: You also get Blam, Icehouse, and a few other interesting games with 5 trees of each color. The Arcade booklet has some games listed in the back that require 15 pieces of a given color\n\tMathematician42: Awesome! As a 14 year old with a dad who is a board game enthusiast, we have a lot of games and not much space to store them which means we might not be able to get it. lol\n\twil: Sdg is old and out dated, we will play\n\tMathematician42: @D5PA: I have challenged you to a game of Martian Chess\n\n17) Mathematician42: Build R1 Mathematician42\n\n18) wil: B B3 G3\n\tMathematician42: I honestly have no idea what I&#39;m doing.\n\twil: You will start to understand around 10g\n\n19) Mathematician42: Trade R1 G1 Mathematician42\n\twil: This is a blue freeze out always defend \n\n20) wil: D B2 Y3 Y2 Y2\n\tMathematician42: oops\n\tMathematician42: I forgot you could do that\n\n21) Mathematician42: Sacrifice G3 Mathematician42\nBuild R1 R2\nBuild R2 R2\nBuild R2 Mathematician42\n\n22) wil: T B3 R3 G3\nC R2 R\n\twil: Read on catastrophe overpopulation\n\n23) Mathematician42: Move R2 Mathematician42 Y2\n\tMathematician42: I wasn&#39;t thinking lol\r\n\n\twil: Lol.good\n\tMathematician42: well you can still call catastrophe \n\n24) wil: D B2 Y2 Y3 Why3\n\twil: Don&#39;t wanna lose your Queen ship 2nd lesson \n\n25) Mathematician42: Move R2 Y2 Why3\n\tMathematician42: what queen ship?\r\n\n\twil: 3s are queens\n\tMathematician42: oh right. Martian coasters jargon\n\n26) wil: D B2 Why3 R2 R2\n\n27) Mathematician42: Move R2 Why3 Wil\n\n28) wil: M B1 Wil Y3\n\n29) Mathematician42: Move R2 Wil Y3\n\n30) wil: M B1 Y3 R2\n\tMathematician42: I think I know how you&#39;ll win\n\n31) Mathematician42: Move R2 Y3 Wil\n\n32) wil: B B3 G3\n\twil: You are gonna be good\r\n\n\twil: I like the way you think\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: What do you like about the way I think?\n\n33) Mathematician42: Build R1 Mathematician42\n\n34) wil: B R1 G3\n\twil: Outta the box unconventional\n\twil: You play like a guy I taught, good player\n\tMathematician42: I see\n\n35) Mathematician42: Discover R1 Mathematician42 Y2 Stardust\n\n36) wil: S R1 G3\nA R2 Wil\n\n37) Mathematician42: Trade G1 R1 Mathematician42\n\n38) wil: T B3 Y3 G3\n\n39) Mathematician42: Trade Y2 G2 Mathematician42\n\n40) wil: M B3 Y3 Stardust\n\n41) Mathematician42: Trade R1 Y1 Mathematician42\n\n42) wil: M B3 Stardust Mathematician42\n\n43) Mathematician42: Discover R1 Mathematician42 R2 Ar2\n\tMathematician42: why can&#39;t I do\r\n&quot;sacrifice g2 mathematician42\r\nbuild r2 wil\r\nbuild r3 wil&quot;\n\tMathematician42: nevermind\n\n44) wil: S R2 Wil\nA G2 Mathematician42\nA Y1 Mathematician42\n\n\tMathematician42: Where are you located?\n\twil: DC area\n\twil: Gg, so long and thanx for all the fish\n\twil: I am in half a dozen games, challenge me\n\twil: Get on the ladder challenge a lot of us\n\twil: I think ur gonna beat me soon \n\nHomeworlds Online (SDG# 34903)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.1.20, Ended: 2019.1.20\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n\twil: Gl, thx  4 the game!\n\tMathematician42: oops\r\n\n\tMathematician42: oops\r\n\n\tMathematician42: still trying to figure this out lol\n\twil: Oops!  So h star1 star2 ship\n\twil: One line each\n\nHomeworlds Online (SDG# 34909)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.21, Ended: 2019.3.1\nParticipants: wil (S), DodoBirb (N)\nWinner: wil\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: This is a tournament game just so you know.\n\n2) wil: H B2 Y3 G3\n\twil: Cool n thx\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) wil: B G1 Wil\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n6) wil: T G1 B1 Wil\n\n7) DodoBirb: Build G1 Dodobirb\n\n8) wil: B B2 Wil\n\n9) DodoBirb: Trade G1 Y1 Dodobirb\n\n10) wil: T B1 Y1 Wil\n\n11) DodoBirb: Build B1 Dodobirb\n\n12) wil: B B2 Wil\n\n13) DodoBirb: Discover B1 Dodobirb G3 Greeny\n\n14) wil: D B2 Wil G1 G1\n\n15) DodoBirb: Build B3 Greeny\n\n16) wil: B B3 G1\n\n17) DodoBirb: Build B3 Dodobirb\n\n18) wil: T B3 Y3 G1\n\n19) DodoBirb: Discover B3 Dodobirb Y3 Warpgate\n\n20) wil: B B3 G1\n\n21) DodoBirb: Build G1 Dodobirb\n\n22) wil: T B2 R2 G1\n\n23) DodoBirb: Trade B1 R1 Dodobirb\n\n24) wil: B R1 G1\n\n25) DodoBirb: Trade B1 R1 Greeny\n\n26) wil: B B1 Wil\n\n27) DodoBirb: Move G1 Dodobirb Warpgate\n\n28) wil: M R1 G1 Wil\n\n29) DodoBirb: Move R1 Dodobirb Warpgate\n\n30) wil: T B2 Y2 Wil\n\n31) DodoBirb: Build Y1 Dodobirb\n\n32) wil: B Y2 G1\n\n33) DodoBirb: Move Y1 Dodobirb Greeny\n\n34) wil: D Y1 Wil G1 Gone\n\n35) DodoBirb: Build Y2 Greeny\n\n36) wil: T Y2 B2 G1\n\n37) DodoBirb: Build Y2 Dodobirb\n\n38) wil: D B3 G1 R3 R3\n\n39) DodoBirb: Discover Y2 Greeny B1 Bluey\n\n40) wil: B G2 Wil\n\n41) DodoBirb: Build G2 Warpgate\n\n42) wil: B B2 G1\n\n43) DodoBirb: Build G2 Dodobirb\n\n44) wil: S G3 Wil\nB G3 Wil\nB R2 G1\nB R3 Wil\n\n45) DodoBirb: Build R3 Greeny\n\n46) wil: M R3 Wil Bluey\n\n47) DodoBirb: Move Y2 Bluey Wil\n\n48) wil: M Y2 Wil Bluey\n\n49) DodoBirb: Move Y2 Wil Gone\n\n50) wil: M Y1 Gone R3\n\n51) DodoBirb: Move R3 Greeny Gone\n\n52) wil: M B2 G1 R3\n\n53) DodoBirb: Move G1 Warpgate Gone\n\n54) wil: M G2 Wil Bluey\n\n55) DodoBirb: Move Y1 Dodobirb Greeny\n\n56) wil: M B2 R3 Dodobirb\n\n57) DodoBirb: Attack B2S Dodobirb\n\n58) wil: M B3 R3 Dodobirb\n\n59) DodoBirb: Attack B3S Dodobirb\n\n60) wil: S Y3 G1\nM B2 G1 R3\nM B2 R3 Dodobirb\nC Dodobirb B\nM R3 Bluey Dodobirb\n\n61) DodoBirb: Attack R3S Dodobirb\n\n62) wil: S Y2 Bluey\nM R2 G1 Dodobirb\nM R2 G1 Dodobirb\nC Dodobirb R\n\n\twil: Challenge anytime\n\nHomeworlds Online (SDG# 34906)\nVariants: &quot;Unrated&quot;\nStarted: 2019.1.21, Ended: 2019.1.25\nParticipants: wil (S), Mathematician42 (N)\nWinner: wil\n\n1) Mathematician42: Homeworld R2 G1 B3\n\n2) wil: H Y3 B2 G3\n\tMathematician42: HI again!\n\n3) Mathematician42: Build B1 Mathematician42\n\n4) wil: B G1 Wil\n\n5) Mathematician42: Build B1 Mathematician42\n\tMathematician42: LOL! I can&#39;t play this at school (not even during lunch!) because of &quot;prohibited games content&quot;.\n\n6) wil: B G1 Wil\n\n7) Mathematician42: Trade B3 G3 Mathematician42\n\n8) wil: D G1 Wil Y1 Y1\n\twil: But this is a space force\n\n9) Mathematician42: Trade B1 Y1 Mathematician42\n\n10) wil: B G2 Wil\n\twil: Nice choice\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: Oops\n\n11) Mathematician42: Discover B1 Mathematician42 Y3 Y3\n\n12) wil: D G2 Wil B1 B1\n\n13) Mathematician42: Build G2 Mathematician42\n\n14) wil: S G3 Wil\nB G2 Y1\nB G3 B1\nB G3 Wil\n\n15) Mathematician42: Sacrifice G2 Mathematician42\nBuild Y1 Mathematician42\nBuild Y2 Mathematician42\n\n16) wil: T G3 Y3 B1\n\tMathematician42: AAAAAAAAAHHHHH!!!! You froze the green economy\n\n17) Mathematician42: Move Y2 Mathematician42 Y3\n\tMathematician42: Was sacrificing the G2 a bad move?\n\tDraw5PlayAll: It all depends...\n\n18) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB G3 B1\n\n19) Mathematician42: Move G3 Mathematician42 Y3\n\n20) wil: T G3 R3 Wil\n\n21) Mathematician42: Build G3 Y3\n\n22) wil: S Y3 B1\nM G1 Y1 Y3\nM G2 Y1 Y3\nC Y3 G\nM G3 B1 Y3\n\twil: Another queen left home? I am failing!\n\tMathematician42: Not sure if I understand...\n\n23) Mathematician42: Move B1 Y3 Mathematician42\n\twil: Never leave hw unguarded w/o plan to end game\n\n24) wil: T G2 R2 Wil\n\n25) Mathematician42: Build B1 Mathematician42\n\n26) wil: B G1 Y3\n\n27) Mathematician42: Build B2 Mathematician42\n\n28) wil: M G3 Y3 Mathematician42\n\n29) Mathematician42: Build B2 Mathematician42\n\n30) wil: S R2 Wil\nA Y1 Mathematician42\nA Y1 Mathematician42\nC Mathematician42 B\n\n\nHomeworlds Online (SDG# 34913)\nVariants: &quot;Unrated&quot;\nStarted: 2019.1.21, Ended: 2019.1.29\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tMathematician42: Lol. Hope you don&#39;t mind playing two games against me at once.\n\twil: Let&#39;s do this\n\n2) Mathematician42: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Mathematician42: Build G1 Mathematician42\n\n5) wil: T G1 B1 Wil\n\n6) Mathematician42: Trade G1 B1 Mathematician42\n\n7) wil: B B2 Wil\n\n8) Mathematician42: Build B2 Mathematician42\n\twil: Keeping opponent from getting larger size\n\twil: Especially red\n\twil: Try to get every color they get\n\n9) wil: T B2 G2 Wil\n\twil: Follow the leader is a good way to learn\n\tMathematician42: interesting... Thanks for the tip\n\n10) Mathematician42: Build B2 Mathematician42\n\n11) wil: B B3 Wil\n\n12) Mathematician42: Trade B2 R2 Mathematician42\n\twil: Ya let me get a 3\n\twil: And I should have catastrphied ya\n\tMathematician42: oh yeah\n\n13) wil: T B1 R1 Wil\n\n14) Mathematician42: Build R1 Mathematician42\n\n15) wil: B G1 Wil\n\n16) Mathematician42: Build G1 Mathematician42\n\n17) wil: T G1 Y1 Wil\n\n18) Mathematician42: Discover R2 Mathematician42 Y1 Y1\n\n19) wil: B Y1 Wil\n\n20) Mathematician42: Move G3 Mathematician42 Y1\n\n21) wil: D G3 Wil Y3 Y3\n\n22) Mathematician42: Trade B2 R2 Mathematician42\n\twil: Ya left your homeworld unguarded\n\n23) wil: D Y1 Wil G3 G3\n\n24) Mathematician42: Move G3 Y1 Mathematician42\n\n25) wil: B Y2 Wil\n\n26) Mathematician42: Trade R2 G2 Mathematician42\n\twil: Worse than sending your king out early\n\n27) wil: S Y2 Wil\nM G3 Y3 Y1\nM G3 Y1 Mathematician42\nC Mathematician42 G\n\tMathematician42: You should join AnalogKid, DiEvAI, and me for a game of Zendo?\n\tMathematician42: *Would you like\n\tMathematician42: **Would you like to (lol, usually I can get it right the first time)\n\twil: Zendo ain&#39;t my thing\n\n28) Mathematician42: Trade R1 G1 Mathematician42\n\n29) wil: B Y2 G3\n\n30) Mathematician42: Build B1 Mathematician42\n\n31) wil: S G2 Wil\nB Y2 Wil\nB Y3 G3\n\n32) Mathematician42: Build G1 Mathematician42\n\tMathematician42: You froze out the Yello Economy\n\tMathematician42: *yellow\n\n33) wil: S Y2 G3\nM Y3 G3 Y1\nM Y3 Y1 Mathematician42\n\tMathematician42: Once my dad orders Pyramid Arcade I&#39;ll be able to practice homeworlds against him!\n\n34) Mathematician42: Build G1 Mathematician42\n\n35) wil: B Y2 G3\n\n36) Mathematician42: Move G1 Mathematician42 Y1\n\n37) wil: B Y3 G3\n\n38) Mathematician42: Move R2 Y1 G3\n\n39) wil: S R1 Wil\nA R2 G3\n\n40) Mathematician42: Build G2 Mathematician42\n\n41) wil: S R2 G3\nA B1 Mathematician42\nA G2 Mathematician42\n\twil: Thank you for the nice new ship.\n\twil: It is bigger than my trade-in\n\tMathematician42: I forgot about your r1\n\tMathematician42: I forgot about your r1\n\tMathematician42: I think I know what you should do next\r\n\n\n42) Mathematician42: Build G2 Mathematician42\nCatastrophe Mathematician42 G\n\n43) wil: T B3 R3 Wil\n\n44) Mathematician42: Build G1 Y1\n\n45) wil: S R3 Wil\nA B1 Mathematician42\nP\nP\n\n\twil: \n\nHomeworlds Online (SDG# 34784)\nVariants: &quot;Unrated&quot;\nStarted: 2019.1.21, Ended: 2019.1.24\nParticipants: Mathematician42 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Mathematician42: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Mathematician42: Build G1 Mathematician42\n\n5) Trydnt: Trade G1 B1 Trydnt\n\tMathematician42: LOL! I can&#39;t play this at school (not even during lunch!) because of &quot;prohibited games content&quot;.\n\n6) Mathematician42: Trade G1 B1 Mathematician42\n\n7) Trydnt: Build B2 Trydnt\n\n8) Mathematician42: Build B2 Mathematician42\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) Mathematician42: Build B3 Mathematician42\n\n11) Trydnt: Build B3 G3\nCatastrophe Mathematician42 B\n\n12) Mathematician42: Build G1 Mathematician42\n\tMathematician42: oh\n\n\tMathematician42: I&#39;m pretty much screwed here.... right?\n\tTrydnt: you can&#39;t have more than 3 of a color in the same place or they are destroyed via catastrophe\n\tTrydnt: check out Looney Labs youtube tutorial on the game\n\tTrydnt: on youtube\n\tMathematician42: I know. I always forget that rule\n\tTrydnt: it&#39;s probably the most important rule of the game as it&#39;s how most good games end with catastrophe on both halves of your opponent&#39;s homeworld. winning via attack or wiping out your opponents ships at home does happen but less often\n\nHomeworlds Online (SDG# 34905)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.23, Ended: 2019.1.26\nParticipants: Thorolf (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n\twil: Gl\n\nHomeworlds Online (SDG# 34928)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.24, Ended: 2019.2.11\nParticipants: ajo (S), deanthebean (N)\nWinner: ajo\n\n1) deanthebean: Homeworld B2 R3 G3\n\tdeanthebean: Hello. Thanks for accepting the challenge. Have fun!\n\n2) ajo: Homeworld R3 B2 G3\n\n3) deanthebean: Build G1 Deanthebean\n\tajo: You too. :)\n\n4) ajo: Build G1 Ajo\n\tdeanthebean: Thanks!\n\n5) deanthebean: Trade G3 Y3 Deanthebean\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) deanthebean: Build Y1 Deanthebean\n\n8) ajo: Build Y1 Ajo\n\n9) deanthebean: Discover Y1 Deanthebean G1 Newstar\n\n10) ajo: Build G2 Ajo\n\n11) deanthebean: Build G2 Deanthebean\n\n12) ajo: Discover G2 Ajo B1 Alpha\n\n13) deanthebean: Discover G2 Deanthebean Y1 Ipo\n\n14) ajo: Move Y1 Ajo Alpha\n\n15) deanthebean: Build Y2 Deanthebean\n\n16) ajo: Build Y2 Alpha\n\n17) deanthebean: Trade Y2 R2 Deanthebean\n\n18) ajo: Trade Y2 R2 Alpha\n\n19) deanthebean: Build Y2 Deanthebean\n\n20) ajo: Build Y2 Alpha\n\n21) deanthebean: Build G2 Ipo\n\n22) ajo: Build G3 Ajo\n\n23) deanthebean: Discover Y2 Deanthebean B1 Venus\n\n24) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R1 Alpha\n\n25) deanthebean: Build G3 Deanthebean\n\n26) ajo: Discover G1 Ajo B1 Beta\n\tdeanthebean: build g3 deanthebean\n\n27) deanthebean: Sacrifice G3 Deanthebean\nBuild G3 Deanthebean\nBuild Y2 Newstar\nBuild Y3 Venus\n\n28) ajo: Sacrifice Y2 Alpha\nMove R1 Alpha Deanthebean\nMove R2 Alpha Deanthebean\nCatastrophe Deanthebean Red\n\n29) deanthebean: Build Y2 Deanthebean\n\n30) ajo: Trade G2 B2 Alpha\n\n31) deanthebean: Build G2 Ipo\n\n32) ajo: Move B2 Alpha Deanthebean\n\n\tajo: Checkmate, I think. :)\n\tDraw5PlayAll: How?\n\tDraw5PlayAll: (if the game does not end next move please send response via private message)\n\tdeanthebean: Well played ajo! @Draw5PlayAll: ajo&#39;s plan is to sacrifice one of their g3s to build 2 fleets in deanthebean and thereby send it supernova. I couldn&#39;t find a defence. Can you?  \n\tDraw5PlayAll: sac Y3 Venus\r\nd G2 ipo B3 Denial1\r\nd G2 ipo B3 Denial2\r\nd G2 ipo B3 Denial3\n\tDraw5PlayAll: (I did not see the green sac at first, but when you said the plan I immediately thought of discovering all the blues)\n\tajo: Hmm, true, I didn&#39;t see that, and it would have worked... at least as a delaying tactic. And maybe it would have forced me to retreat, since the focus would then shift to red. Well, I&#39;m glad neither of us saw it! ;)\n\tdeanthebean: Yeah. Nice spot! Shame I didn&#39;t see it because it would have kept the game interesting though I&#39;m probably losing in any case. \n\nHomeworlds Online (SDG# 34915)\nVariants: &quot;Unrated&quot;\nStarted: 2019.1.24, Ended: 2019.2.6\nParticipants: Trydnt (S), Mathematician42 (N)\nWinner: Trydnt\n\n1) Mathematician42: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) Mathematician42: Build G1 Mathematician42\n\n4) Trydnt: Build G1 Trydnt\n\n5) Mathematician42: Trade G1 B1 Mathematician42\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Mathematician42: Trade B1 R1 Mathematician42\n\n8) Trydnt: Build R2 Trydnt\n\tTrydnt: it&#39;s important to note what color the small star is (R1 on your star in this case) as this will create a limiting factor in that color (only two of the smalls left in the bank). You pretty much have to trade for that one first as if you don&#39;t then your opponent will trade for it and if you fail to do it on the next turn (you should trade for red now) you&#39;ll be locked out of the red pieces and never get a chance to get them before I get to the bigger ones and start trading those for other big yellows and blues and stuff\n\tTrydnt: trading your b1 for an r1 is the only move that will stop me from getting into the big ones and likely winning but it puts you a move behind so it&#39;s always a good idea to trade for the color of the smallest piece first if you go first even if it&#39;s the color of your star\n\tMathematician42: Interesting\n\tMathematician42: Interesting\n\tMathematician42: Interesting\n\n9) Mathematician42: Build R2 Mathematician42\n\n10) Trydnt: Build R2 Trydnt\n\n11) Mathematician42: Build G1 Mathematician42\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Mathematician42: Trade R1 Y1 Mathematician42\n\tTrydnt: undo that move. you cannot have 4 pieces of the same color in the same place or they will blow up\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) Mathematician42: Trade G1 B1 Mathematician42\n\n16) Trydnt: Build R1 Trydnt\n\n17) Mathematician42: Build Y1 Mathematician42\n\n18) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G1\nBuild R3 Trydnt\nBuild R3 G1\n\n19) Mathematician42: Build R3 Mathematician42\n\n20) Trydnt: Sacrifice Y2 Trydnt\nDiscover R1 G1 Y3 Y3\nMove R1 Y3 Mathematician42\nCatastrophe Mathematician42 R\n\n21) Mathematician42: Build Y1 Mathematician42\n\n22) Trydnt: Trade R2 Y2 Trydnt\n\n23) Mathematician42: Trade Y1 B1 Mathematician42\n\n24) Trydnt: Trade R1 B1 Trydnt\n\n25) Mathematician42: Discover B1 Mathematician42 Y1 Y1\n\n26) Trydnt: Sacrifice Y2 Trydnt\nMove R3 G1 Mathematician42\nDiscover B1 Trydnt G1 Ohgeez1\n\n27) Mathematician42: Trade Y1 R1 Mathematician42\n\n28) Trydnt: Attack G3 Mathematician42\n\n29) Mathematician42: Trade R1 G1 Mathematician42\n\n30) Trydnt: Sacrifice R3 Mathematician42\nAttack G1 Mathematician42\nAttack Y1 Mathematician42\nAttack B1 Mathematician42\n\n\tTrydnt: yup there&#39;s usually no way back once your opponent has a big ship in your homeworld and you don&#39;t and they have red\n\tTrydnt: sacrifice r3 mathematician42\r\nattack g1 mathematician42\r\nattack y1 mathematician42\r\nattack b1 mathematician42\n\tMathematician42: Good game\n\tTrydnt: good game :)\n\nHomeworlds Online (SDG# 34907)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.1.27, Ended: 2019.3.6\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y3 B1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) wil: B B2 Wil\n\tTrydnt: thought about going for the insta-freeze on these games but wouldn&#39;t have been as much fun\n\twil: Tends toward the instance stuck \n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: D B2 Wil Y2 Y2\n\n10) Trydnt: Discover B2 Trydnt G1 G1\n\n11) wil: S G3 Wil\nB B2 Y2\nB B3 Y2\nB B3 Wil\n\n12) Trydnt: Build G1 Trydnt\n\n13) wil: T B2 R2 Y2\n\n14) Trydnt: Build G1 Trydnt\n\n15) wil: M R2 Y2 G1\n\n16) Trydnt: Trade G3 Y3 Trydnt\n\n17) wil: T B1 R1 Wil\n\n18) Trydnt: Build G2 Trydnt\n\n19) wil: A B2 G1\n\n20) Trydnt: Trade G2 R2 Trydnt\n\n21) wil: T B3 G3 Y2\n\n22) Trydnt: Build G2 Trydnt\n\n23) wil: S G3 Y2\nB B1 Y2\nB B2 Y2\nB B3 G1\n\n24) Trydnt: Discover G2 Trydnt Y1 Y1\n\n25) wil: T B3 Y3 G1\n\n26) Trydnt: Discover B1 Trydnt Y1 Why1\n\n27) wil: B B3 G1\n\n28) Trydnt: Build G2 Trydnt\n\n29) wil: S B2 G1\nT B2 R2 Y2\nT B2 G2 Y2\n\n30) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Why1\n\n31) wil: B R1 Y2\n\n32) Trydnt: Trade B1 R1 Why1\n\n33) wil: S G2 Y2\nB R3 Wil\nB R3 G1\n\n34) Trydnt: Build R3 Trydnt\n\n35) wil: D R3 G1 Y2 Why2\n\n36) Trydnt: Discover Y3 Trydnt G1 Gee1\n\n37) wil: T R3 G3 Wil\n\n38) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 Gee1\nBuild R3 Why1\n\n39) wil: M R3 Why2 Y1\n\n40) Trydnt: Sacrifice G2 Y1\nBuild Y2 Gee1\nBuild G2 Trydnt\n\n41) wil: D Y3 G1 G2 G2\n\n42) Trydnt: Discover Y2 Gee1 B2 B2\n\n43) wil: T B3 G3 Wil\n\n44) Trydnt: Move R2 Trydnt Gee1\n\n45) wil: M G3 Wil B2\n\n46) Trydnt: Discover Y2 B2 B3 B3\n\n47) wil: D Y3 G2 B1 B1\n\n48) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild B2 Why1\n\n49) wil: B G2 Wil\n\n50) Trydnt: Move G1 Trydnt Why1\n\n51) wil: M R2 Y2 B1\n\n52) Trydnt: Move Y3 Gee1 Y2\n\n53) wil: S G3 Wil\nB G2 B2\nB G3 B2\nB G3 Wil\n\n54) Trydnt: Move G1 Why1 B2\nCatastrophe B2 G\n\n55) wil: M B1 Y2 Y1\n\n56) Trydnt: Discover Y1 Gee1 B2 B2\n\n57) wil: M R1 Y2 B1\n\n58) Trydnt: Build G1 Trydnt\n\n59) wil: M R2 B1 Trydnt\n\n60) Trydnt: Trade B2 G2 Why1\n\n61) wil: A G2 Trydnt\n\twil: Hard to believe you let both of.them out\n\n62) Trydnt: Build G3 Why1\n\n63) wil: S Y3 B1\nM R1 B1 Trydnt\nM R2 G1 Trydnt\nC Trydnt R\nM R3 Y1 Trydnt\n\n64) Trydnt: Sacrifice Y3 Y2\nMove R3 Why1 Trydnt\nMove G3 Why1 Trydnt\nMove G1 Trydnt Why1\n\n65) wil: S G2 Trydnt\nB R1 Trydnt\nB R2 Trydnt\nC Trydnt R\n\n66) Trydnt: Sacrifice G2 Why1\nBuild Y2 B3\nBuild Y3 B2\n\n67) wil: T B3 Y3 G1\n\n68) Trydnt: Build G2 Trydnt\n\tTrydnt: I thought I was wrong once, but I was mistaken \n\twil: It looks like it\n\n69) wil: D G2 Wil B2 Be2\n\n70) Trydnt: Move Y2 B3 Be2\n\n71) wil: S G2 Be2\nB R1 Wil\nB G2 Wil\n\n72) Trydnt: Move Y2 Be2 Y1\n\n73) wil: D Y3 G1 G2 G2\n\n74) Trydnt: Sacrifice G3 Trydnt\nBuild G1 Why1\nBuild G3 Why1\nBuild G3 Trydnt\n\n75) wil: M B1 Y1 G2\n\n76) Trydnt: Move G1 Why1 B2\n\n77) wil: B B1 G2\n\n78) Trydnt: Sacrifice Y2 Y1\nMove G3 Why1 B2\nMove G3 B2 Wil\n\n\twil: Asleep.at the wheel...gg\n\tTrydnt: happens to the best of us :) well played\n\nHomeworlds Online (SDG# 34925)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.27, Ended: 2019.2.11\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld G3 B2 Y3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Build Y1 Trydnt\n\n7) wil: T G1 Y1 Wil\n\n8) Trydnt: Trade Y1 G1 Trydnt\n\n9) wil: T G1 B1 Wil\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: B B1 Wil\n\n12) Trydnt: Build Y1 Trydnt\n\n13) wil: D Y1 Wil G3 G3\n\n14) Trydnt: Build Y2 G1\n\n15) wil: M B1 Wil G3\n\n16) Trydnt: Trade Y1 R1 Trydnt\n\n17) wil: D B1 G3 Y1 Y1\n\n18) Trydnt: Build R1 Trydnt\n\n19) wil: B B2 Wil\n\n20) Trydnt: Build R1 Trydnt\n\n21) wil: D B2 Wil R3 R3\n\n22) Trydnt: Move R1 Trydnt Y1\n\n23) wil: D B1 Y1 Y3 Y3\n\n24) Trydnt: Move R1 Y1 G3\n\n25) wil: M Y1 G3 G1\n\n26) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G1\n\n27) wil: S G3 Wil\nB B2 Wil\nB B3 R3\nB B3 Y3\n\n28) Trydnt: Build Y1 Trydnt\n\n29) wil: T B3 G3 Y3\n\n30) Trydnt: Build Y2 Trydnt\n\n31) wil: T B2 R2 Wil\n\n32) Trydnt: Move Y1 G1 G3\n\n33) wil: T B3 Y3 R3\n\n34) Trydnt: Trade Y3 B3 Trydnt\n\n35) wil: S G3 Y3\nB B2 R3\nB B3 Y3\nB B3 Wil\n\twil: Nice\n\n36) Trydnt: Build Y3 Trydnt\n\n37) wil: T B3 G3 Wil\n\n38) Trydnt: Move B3 Trydnt G1\n\n39) wil: T B2 G2 R3\n\n40) Trydnt: Move B3 G1 G3\n\n41) wil: B G1 Wil\n\n42) Trydnt: Build B2 G3\n\n43) wil: B B3 R3\n\n44) Trydnt: Move B3 G3 Wil\n\n45) wil: M G1 Wil Y3\n\n46) Trydnt: Sacrifice R1 Trydnt\nAttack R2 Wil\n\n47) wil: T B3 R3 R3\n\n48) Trydnt: Attack G3 Wil\n\n49) wil: S G1 Y3\nB B3 Wil\n\n50) Trydnt: Sacrifice R2 Wil\nAttack B3 Wil\nAttack B1 Wil\n\n\tTrydnt: my homeworld fleet looks just so wrong thought you might have that but I think my overwhelming yellow advantage was hard to beat\n\nHomeworlds Online (SDG# 34924)\nStarted: 2019.1.27, Ended: 2019.3.22\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld R1 B2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ts52: Build Y2 Ts52\n\n8) Trydnt: Discover Y1 Trydnt G3 G3\n\n9) ts52: Build Y2 Ts52\n\n10) Trydnt: Move Y1 G3 Ts52\nCatastrophe Ts52 Y\n\n11) ts52: Build G1 Ts52\n\n12) Trydnt: Build G1 Trydnt\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Trydnt: Trade G1 Y1 Trydnt\n\n15) ts52: Build Y2 Ts52\n\n16) Trydnt: Discover Y1 Trydnt G3 G3\n\n17) ts52: B G1 Ts52\n\n18) Trydnt: Build Y2 G3\n\n19) ts52: Build G1 Ts52\n\n20) Trydnt: Build G1 Trydnt\n\n21) ts52: Discover G1 Ts52 B3 Gonzo\n\n22) Trydnt: Trade G1 R1 Trydnt\n\n23) ts52: Trade G1 R1 Ts52\n\n24) Trydnt: Build R2 Trydnt\n\n25) ts52: Move R1 Ts52 Gonzo\n\n26) Trydnt: Move R2 Trydnt G3\n\n27) ts52: Build R2 Gonzo\n\n28) Trydnt: Discover Y2 G3 G1 G1\n\n29) ts52: Move Y1 Ts52 Gonzo\n\n30) Trydnt: Build R2 Trydnt\n\n31) ts52: Build R3 Gonzo\n\n32) Trydnt: Move R1 Trydnt Gonzo\nCatastrophe Gonzo R\n\n33) ts52: Trade Y1 R1 Gonzo\n\n34) Trydnt: Move Y2 G1 Gonzo\n\n35) ts52: Build G1 Ts52\n\n36) Trydnt: Sacrifice R2 G3\nAttack R1 Gonzo\nAttack G1 Gonzo\n\n37) ts52: Build Y1 Ts52\n\n38) Trydnt: Build G1 Gonzo\n\n39) ts52: Trade Y2 R2 Ts52\n\n40) Trydnt: Sacrifice Y2 Gonzo\nMove G1 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 G\n\n41) ts52: Trade R2 G2 Ts52\n\n42) Trydnt: Build Y2 G3\n\n43) ts52: Build Y2 Ts52\n\n44) Trydnt: Build R1 Trydnt\n\n45) ts52: Trade Y2 R2 Ts52\n\tts52: Well that&#39;s not good. For me anyway.\n\n46) Trydnt: Sacrifice Y2 G3\nMove G3 Trydnt Gonzo\nMove G3 Gonzo Ts52\n\n47) ts52: Build G1 Ts52\n\n48) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Ts52\nAttack G2 Ts52\n\n49) ts52: Build G1 Ts52\nCatastrophe Ts52 G\n\n50) Trydnt: Attack Y1 Ts52\n\n\tts52: Good game!\n\tTrydnt: well played :)\n\nHomeworlds Online (SDG# 34945)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.27, Ended: 2019.1.30\nParticipants: dlwillson (S), goulo (N)\nWinner: dlwillson\n\n1) goulo: Homeworld R3 B2 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\tgoulo: hi!\n\n3) goulo: Build G1 Goulo\n\tdlwillson: Hi Russ! Thanks for challenging me! Have fun!\n\n4) dlwillson: B G1 Dlwillson\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) goulo: Build G1 Goulo\n\n8) dlwillson: Build B1 Dlwillson\n\n9) goulo: Build Y1 Goulo\n\n10) dlwillson: Discover B1 Dlwillson B2 Sea\n\n11) goulo: Trade G3 B3 Goulo\n\n12) dlwillson: Build G1 Dlwillson\n\n13) goulo: Trade Y1 R1 Goulo\n\n14) dlwillson: D B1 Dlwillson G2 Field\n\n15) goulo: Build Y1 Goulo\n\n16) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Sea\n\n17) goulo: Discover Y1 Goulo Y1 Flaveto\n\n18) dlwillson: S B2 Field\nT B3 G3 Sea\nT B3 Y3 Field\n\n19) goulo: Build Y2 Goulo\n\n20) dlwillson: Sacrifice G3 Sea\nBuild B2 Field\nBuild B3 Field\nBuild B3 Sea\n\n21) goulo: Sacrifice Y2 Goulo\nMove Y1 Flaveto Sea\nMove Y1 Sea Dlwillson\n\n22) dlwillson: M B3 Field Dlwillson\n\n23) goulo: Sacrifice R1 Goulo\nAttack G1 Dlwillson\n\n24) dlwillson: S Y3 Field\nD B3 Sea Y1 Sol\nM B1 Sea Sol\nM B3 Sol Goulo\n\n25) goulo: Attack B3 Goulo\n\n26) dlwillson: M B1 Sol Goulo\nC Goulo B\n\n27) goulo: Build Y1 Dlwillson\n\n28) dlwillson: T B3 R3 Dlwillson\n\n29) goulo: Build G1 Dlwillson\n\n30) dlwillson: Trade B2 Y2 Field\n\n31) goulo: Build Y2 Goulo\n\n32) dlwillson: B Y2 Field\n\n33) goulo: Build G2 Goulo\n\n34) dlwillson: Attack G1 Dlwillson\n\n35) goulo: Discover Y1 Goulo G2 Verdo\n\n36) dlwillson: T Y2 R2 Field\n\n37) goulo: Build G3 Goulo\n\n38) dlwillson: Build R1 Field\n\n39) goulo: Move G2 Goulo Field\n\n40) dlwillson: Sacrifice Y2 Field\nMove R2 Field Goulo\nMove R1 Field Goulo\n\n41) goulo: Build Y2 Dlwillson\nCatastrophe Dlwillson Y\n\n42) dlwillson: Sacrifice G1 Dlwillson\nBuild R1 Goulo\nCatastrophe Goulo R\n\n\tgoulo: congrats, thanks for the game!\n\tdlwillson: Finishing you off is... difficult! :-)\n\tdlwillson: Thanks for the excellent game! I thought you were going to pull off the reversal for a few turns there!\n\tgoulo: after you got several larges, I figured I was screwed, but then I started think I might have a chance... :)\r\nBut you played too solid for my crazy ideas to work. :)\n\nHomeworlds Online (SDG# 34959)\nVariants: &quot;Unrated&quot;\nStarted: 2019.1.29, Ended: 2019.1.29\nParticipants: xejaw (S), cokier (N)\nWinner: cokier\n\n1) cokier: Homeworld G3 B2 Y3\n\n2) xejaw: Homeworld B3 G1 Y3\n\txejaw: homeworld B3 G1\n\txejaw: homeworld B3 G1 Y3\n\n3) cokier: Build Y1 Cokier\n\n4) xejaw: Build Y1 Xejaw\n\n5) cokier: Discover Y1 Cokier G1 Siusiak\n\n6) xejaw: Trade Y1 G1 Xejaw\n\n7) cokier: Build Y1 Cokier\n\n8) xejaw: Build G2 Xejaw\n\n9) cokier: Discover Y1 Siusiak G2 Jazda\n\n10) xejaw: Trade G1 B1 Xejaw\n\n11) cokier: Trade Y1 G1 Cokier\n\n12) xejaw: Build B1 Xejaw\n\n13) cokier: Discover G1 Cokier Y1 Kupa\n\n14) xejaw: Trade B1 R1 Xejaw\n\n15) cokier: Trade Y3 R3 Cokier\n\n16) xejaw: Move R1 Xejaw Jazda\n\n17) cokier: Move Y1 Jazda Xejaw\n\n18) xejaw: Build R1 Jazda\n\n19) cokier: Trade Y1 R1 Xejaw\n\n20) xejaw: Move B1 Xejaw Jazda\n\n21) cokier: Build R2 Xejaw\n\n22) xejaw: Move G2 Xejaw Jazda\n\n23) cokier: Build R2 Cokier\n\n24) xejaw: Trade Y3 R3 Xejaw\n\n25) cokier: Trade R3 Y3 Cokier\n\n26) xejaw: Attack R2 Xejaw\n\n27) cokier: Build Y1 Cokier\n\n28) xejaw: Attack R1 Xejaw\n\n29) cokier: Sacrifice Y3 Cokier\nMove R2 Cokier Kupa\nMove R2 Kupa Jazda\nMove R2 Jazda Xejaw\nCatastrophe Xejaw R\n\n\nHomeworlds Online (SDG# 34955)\nStarted: 2019.1.30, Ended: 2019.7.12\nParticipants: ts52 (S), Felix (W), Draw5PlayAll (N), Babamots (E)\nWinner: Babamots\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) ts52: Homeworld Y2 B3 G3\n\n4) Felix: Homeworld B2 R3 G3\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Babamots: Build G1 Babamots\n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build G1 Felix\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) Babamots: Trade G1 Y1 Babamots\n\n11) ts52: Trade G1 Y1 Ts52\n\n12) Felix: Trade G1 Y1 Felix\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Even ts52 traded for yellow?!?\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Build G1 Felix\n\tts52: Sure, why not? ;)\n\n17) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n18) Babamots: Trade G1 R1 Babamots\n\tDraw5PlayAll: No one blame me for this uniformity -- I went first, and you all copied me!\n\n19) ts52: Trade G1 R1 Ts52\n\tDraw5PlayAll: Psst psst lock felix out of red psst psst\n\n20) Felix: Discover G1 Felix B1 Out\n\tBabamots: Early game &quot;lockouts&quot; don&#39;t usually scare me anymore. It seems like it&#39;s usually safe to trade your large for the color you&#39;re lacking and then build more.\n\n21) Draw5PlayAll: Build R2 Draw5playall\n\tts52: Nothing person, seems my choice was either take the red or get locked out of the red.\n\n22) Babamots: Build R2 Babamots\n\tFelix: I feel personally offended and will never speak to you again! :)\n\n23) ts52: B R2 Ts52\n\n24) Felix: Build Y1 Felix\n\n25) Draw5PlayAll: Build Y2 Draw5playall\n\n26) Babamots: Build Y2 Babamots\n\n27) ts52: B G1 Ts52\n\tDraw5PlayAll: I need to actually d a system or two.\n\n28) Felix: Build Y2 Felix\n\n29) Draw5PlayAll: Discover Y2 Draw5playall G2 Kermit\n\n30) Babamots: Discover Y1 Babamots B3 Andoria\n\n31) ts52: Discover G1 Ts52 B1 Grover\n\n32) Felix: Move Y2 Felix Out\n\n33) Draw5PlayAll: Discover R2 Draw5playall B2 Iconia\n\n34) Babamots: Move R2 Babamots Andoria\n\n35) ts52: Move R2 Ts52 Grover\n\tBabamots: Borrowing system names I see :-). Although Iconia makes the most sense as a yellow system.\n\n36) Felix: Build Y2 Out\n\n37) Draw5PlayAll: Build Y3 Kermit\n\n38) Babamots: Sacrifice G3 Babamots\nBuild Y3 Babamots\nBuild Y3 Andoria\nBuild R2 Andoria\n\tDraw5PlayAll: What? I thought you used it as a blue!\n\tDraw5PlayAll: For that matter, why have I seen you use Wolf359 as a yellow when red makes more sense to me?\n\n39) ts52: Move Y1 Ts52 Grover\n\tDraw5PlayAll: IMCAC Babamots gets a Y3 and then the other two probably trade out their lesser yellows to slow the Y3 rush.\n\n40) Felix: Build Y3 Felix\n\tBabamots: Iconia is where they found the Star Trek equivalent of a stargate. Since it allows instant travel to far-flung places, it seems like a yellow world to me.\n\tDraw5PlayAll: Well, I could not think of any other blue Trek systems.\n\tDraw5PlayAll: Game 31346, you discovered Iconia as a blue.\n\tBabamots: I must not have cared about matching much that day. Ya got me.\r\nFor blues, I usually prefer Andoria or Bolarus. Both of their native races are blue-skinned.\n\n41) Draw5PlayAll: Build Y3 Draw5playall\n\tFelix: Did you really comb through all Babamots&#39; games to prove a point? Must be a slow day at work ;)\n\n42) Babamots: Trade Y1 G1 Andoria\n\n43) ts52: Build G1 Ts52\n\n44) Felix: Trade Y1 B1 Felix\n\n45) Draw5PlayAll: Discover Y3 Draw5playall B2 Walter\n\n46) Babamots: Trade Y3 G3 Babamots\n\n47) ts52: Trade G1 B1 Ts52\n\tDraw5PlayAll: Your systems are the hardest to copy...\n\n48) Felix: Trade Y2 R2 Out\n\n49) Draw5PlayAll: Move R1 Draw5playall Kermit\n\n50) Babamots: Build R3 Andoria\n\n51) ts52: Build R3 Grover\n\n52) Felix: Build R3 Out\n\n53) Draw5PlayAll: Build R3 Kermit\n\n54) Babamots: Move R3 Andoria Iconia\n\n55) ts52: Build G1 Ts52\n\n56) Felix: Build Y1 Out\n\n57) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Hello?\n\tDraw5PlayAll: ...Felix?!\r\n\n\n58) Babamots: Build G2 Babamots\n\tFelix: Sorry everyone\n\n59) ts52: B G2 Grover\n\n60) Felix: Build G2 Felix\n\n61) Draw5PlayAll: Move G1 Draw5playall Walter\n\n62) Babamots: Attack R2N Iconia\n\tDraw5PlayAll: Now I wish I had just kicked Felix while I had the chance.\n\n63) ts52: Discover B1 Ts52 Y1 Bigbird\n\tBabamots: I think 4 player free-for-alls will turn out to be too complicated for me. It all just looks like a bunch of triangles :-P.\n\n64) Felix: Move Y1 Out Kermit\n\n65) Draw5PlayAll: Discover Y3 Kermit B3 Ferenginar\n\tFelix: I&#39;m with you, Babamots. I don&#39;t have the time to wrap my head around everything that happened between my turns haha\n\n66) Babamots: Trade R3 Y3 Iconia\n\tDraw5PlayAll: Meanwhile, I have 12 other games to play.\n\n67) ts52: Build R3 Ts52\n\n68) Felix: Sacrifice Y2 Out\nMove R2 Out Kermit\nMove R3 Out Kermit\nCatastrophe Kermit Red\n\tBabamots: I guess you&#39;re much smarter than me :-).\n\n69) Draw5PlayAll: Trade Y3 R3 Walter\n\n70) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild Y2 Iconia\nBuild G3 Babamots\n\tFelix: Me too! We&#39;re clearly outmatched here, guys :)\n\tDraw5PlayAll: Are you guys outmatched, or am I playing sub-optimally specifically because I have 12 other games? (I think the latter. The only one of you I usually beat is ts52.)\n\n71) ts52: Move R3 Ts52 Bigbird\n\n72) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Out\nBuild Y2 Kermit\n\tts52: Why do you think I&#39;m trying (but failing) to stay under the radar.\n\n73) Draw5PlayAll: Build Y3 Draw5playall\n\n74) Babamots: Trade R2 B2 Andoria\n\n75) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Bigbird\nBuild B3 Bigbird\n\n76) Felix: Trade G1 R1 Out\n\n77) Draw5PlayAll: Build G1 Draw5playall\n\n78) Babamots: Sacrifice G3 Babamots\nBuild R2 Iconia\nBuild R2 Andoria\nBuild G3 Babamots\n\n79) ts52: Discover B3 Bigbird R3 Elmo\n\tDraw5PlayAll: Cmon blow up the ships at bigbird and kermit!\n\n80) Felix: Move Y1 Kermit Draw5playall\n\tBabamots: I&#39;m still feeling generous.\n\n81) Draw5PlayAll: Move Y3 Draw5playall Walter\n\n82) Babamots: Move G2 Andoria Iconia\n\tDraw5PlayAll: Rule of Acquisition 45...\n\n83) ts52: Move R3 Grover Kermit\n\n84) Felix: Attack G1N Draw5playall\n\tBabamots: Expand or die?\n\n85) Draw5PlayAll: Move R3 Walter Grover\n\n86) Babamots: Move G2 Iconia Draw5playall\n\n87) ts52: Sacrifice R2 Grover\nAttack Y2W Kermit\nAttack Y2N Kermit\n\tDraw5PlayAll: Rule of Acquisition 10\r\nGreed is eternal\n\n88) Felix: Sacrifice G2 Felix\nBuild G2 Draw5playall\nCatastrophe Draw5playall Green\nBuild G1 Out\n\n89) Draw5PlayAll: Sacrifice Y3 Ferenginar\nDiscover R3 Grover G2 Whyme\nMove R3 Whyme Draw5playall\nMove Y3 Walter Grover\n\n90) Babamots: Build Y3 Babamots\n\n91) ts52: S G2 Grover\nB B3 Elmo\nB R2 Bigbird\n\tDraw5PlayAll: WhyMe?\n\n92) Felix: Build G2 Felix\n\tBabamots: Rule of Acquisition 21.\n\tDraw5PlayAll: But where is the profit in trying to kill me?\n\tBabamots: 208.\n\tDraw5PlayAll: I think you are applying 266.\n\n93) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n94) Babamots: Trade B2 G2 Andoria\n\n95) ts52: Build R3 Ts52\n\tDraw5PlayAll: Anyone interested in avenging me?\n\n96) Felix: Sacrifice Y3 Felix\nMove R1 Out Ts52\nMove G1 Out Ts52\nMove G3 Out Ts52\nCatastrophe Ts52 Green\n\n97) Draw5PlayAll: Attack Y1W Draw5playall\n\n98) Babamots: Sacrifice Y3 Babamots\nMove R2 Iconia Grover\nMove R2 Grover Ts52\nMove Y3 Iconia Elmo\nCatastrophe Ts52 R\n\tFelix: I exist merely to ruin lives :)\n\n99) Felix: Discover G2 Felix B1 Grovnor\n\tDraw5PlayAll: You&#39;ve got the wrong guy! We three need to team up to defeat Babamots NOW!\n\n100) Draw5PlayAll: Move Y3 Grover Felix\n\n101) Babamots: Sacrifice R2 Andoria\nAttack B3S Elmo\nAttack B3S Elmo\n\n102) Felix: Attack Y3N Felix\n\tDraw5PlayAll: Take this, you&#39;ll need it!\n\tBabamots: Don&#39;t take it! It&#39;s probably full of Greek soldiers!\n\tDraw5PlayAll: Then you can beam everyone aboard into forced-labor camps, execute the captain, and take the ship over.\r\n\r\nOf course, the crew are robots programmed to delete themselves upon seize.\n\n103) Draw5PlayAll: Move Y1 Draw5playall Kermit\n\n104) Babamots: Sacrifice G3 Babamots\nBuild Y2 Elmo\nBuild Y3 Babamots\nBuild Y3 Iconia\n\tFelix: I&#39;m in. I have a policy to always fall for traps!\n\n105) Felix: Discover B1 Felix G1 Opus\n\n106) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Is the tournament still going on?\n\tDraw5PlayAll: Felix we need to work together or else Babamots is going to win easily.\n\tBabamots: The tournament just ended today. You should have an email with a link to a discussion of the results.\n\n107) Babamots: Move B3 Elmo Grovnor\n\n108) Felix: Sacrifice G2 Grovnor\nBuild B2 Opus\nBuild B3 Opus\n\n109) Draw5PlayAll: Build G2 Walter\n\n110) Babamots: Move Y3 Elmo Opus\n\n111) Felix: Sacrifice Y1 Felix\nMove B3 Opus Felix\n\tDraw5PlayAll: Zimba, his face black, his eyes red\n\n112) Draw5PlayAll: Build Y1 Draw5playall\n\n113) Babamots: Trade B3 R3 Elmo\n\n114) Felix: Trade B1 R1 Opus\n\tDraw5PlayAll: @Felix: Darmok and Jalad at Tangara\n\n115) Draw5PlayAll: Trade G1 R1 Walter\n\tBabamots: I thought you weren&#39;t familiar with Star Trek, D5PA. Have you been watching lately? Or just browsing Memory Alpha?\n\n116) Babamots: Sacrifice Y2 Babamots\nMove B3 Grovnor Felix\nMove Y3 Opus Felix\n\tDraw5PlayAll: Oh, I am familiar with it, all right. I just cannot be expected to know absolutely every planet and star system that you manage to pop into your games.\r\n\r\nDon&#39;t spoil anything in DS9 or Voyager please!\n\n117) Babamots: Sacrifice R3 Elmo\nAttack B3W Felix\nAttack Y3W Felix\nAttack G3W Felix\n\tBabamots: I remembered you asking for &quot;no spoilers&quot; before, but I supposed that meant you hadn&#39;t seen much of any series. I&#39;m a TNG man myself. I&#39;ve forgotten lots of what happens in the other series.\n\n\tDraw5PlayAll: Denied!\r\n\r\nActually, I should have made Felix lose first, out of revenge for destroying ts52 prematurely.\n\nHomeworlds Online (SDG# 34961)\nVariants: &quot;Hard time&quot;\nStarted: 2019.1.31, Ended: 2019.2.26\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tdlwillson: Hi Felix! How&#39;s everything? It&#39;s good to see you! Good luck and have fun, as always!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Hey! A pleasure, as always :) Things are going fine. Quite busy with house, work, children, church, etc etc but we&#39;re all doing well. How are things on your end?\n\n4) Felix: Build G1 Felix\n\tdlwillson: Everything at home is good. SFS is good. Work sucks right now, which really sucks for me, because I usually love my job.\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\tFelix: Sorry to hear it! Just super busy, or doing a project that&#39;s not much fun?\n\tdlwillson: lack of leadership\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: Build B2 Dlwillson\n\tFelix: Gotcha. That&#39;s always tough to suffer under. I&#39;m very fortunate to have a great boss at the moment, but I&#39;ve been under a terrible micromanager before, and that was super stressful.\n\tFelix: I guess that would be too much leadership instead of not enough :)\n\n8) Felix: Build B2 Felix\n\tdlwillson: In my opinion, management and leadership are different functions. Leaders are supposed to set clear objectives and priorities. Managers keep their teams healthy and effective in pursuit of the leadership&#39;s goals.\n\n9) dlwillson: Discover B1 Dlwillson G2 Forest\n\n10) Felix: Trade B1 Y1 Felix\n\n11) dlwillson: Build B1 Forest\n\n12) Felix: Build B2 Felix\n\tFelix: That&#39;s a good distinction! Well, I&#39;m sorry work is such a bummer right now. That&#39;s never much fun. At least you have time for a few leisure activities too, like Homeworlds :)\n\n13) dlwillson: T B2 Y2 Dlwillson\n\n14) Felix: Discover B2 Felix G1 Out\n\n15) dlwillson: M Y2 Dlwillson Forest\n\n16) Felix: Build Y1 Felix\n\n17) dlwillson: Discover B1 Forest G1 Field\n\n18) Felix: Discover B2 Felix Y1 Sand\n\n19) dlwillson: B Y2 Forest\n\n20) Felix: Move Y1 Felix Out\n\n21) dlwillson: M Y2 Forest Dlwillson\n\n22) Felix: Build G1 Felix\n\n23) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Forest\n\n24) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Felix\nBuild Y3 Out\n\n25) dlwillson: Move B3 Forest Dlwillson\n\n26) Felix: Sacrifice Y2 Felix\nMove B2 Sand Felix\nMove B2 Felix Field\nCatastrophe Field Blue\n\n27) dlwillson: T B3 G3 Dlwillson\n\tdlwillson: Bah. I am unsatisfied with this result, too.\n\n28) Felix: Trade Y1 R1 Out\n\tFelix: Yeah, I tried to give you a bit of a stumper there. I&#39;m glad I did :)\n\n29) dlwillson: T Y2 R2 Dlwillson\n\n30) Felix: Build Y1 Out\n\n31) dlwillson: B Y1 Forest\n\n32) Felix: Build R1 Out\n\n33) dlwillson: D Y1 Forest G1 Field\n\n34) Felix: Move B2 Out Forest\n\n35) dlwillson: B Y2 Forest\n\n36) Felix: S R1 Out\nAttack Y2 Forest\n\n37) dlwillson: B R1 Dlwillson\n\n38) Felix: Sacrifice Y2 Forest\nMove B2 Forest Out\nMove Y3 Out Forest\n\n39) dlwillson: Build Y2 Forest\n\n40) Felix: Build Y2 Out\n\n41) dlwillson: T Y2 G2 Forest\n\n42) Felix: Sacrifice B2 Out\nTrade Y3 R3 Forest\nTrade Y1 B1 Out\n\n43) dlwillson: S Y2 Forest\nM B1 Forest Field\nM R1 Dlwillson Forest\n\n44) Felix: Attack G2 Forest\n\n45) dlwillson: S G3 Dlwillson\nB R1 Forest\nB R2 Forest\nB R3 Dlwillson\nC Forest R\n\n46) Felix: Sacrifice G2 Forest\nBuild B2 Out\nBuild B2 Out\n\n47) dlwillson: Build B2 Field\n\n48) Felix: Discover B2 Out G2 Wizard\n\n49) dlwillson: Trade B1 R1 Field\n\tFelix: Nice. I saw that coming, but it still hurts!\n\n50) Felix: Build G2 Felix\n\tdlwillson: You&#39;re still way ahead of me, but at least you&#39;re not wandering around with an extra large. I think you should&#39;ve left it yellow. A big yellow in the field with a gun is way better (IMO) than a big red. The mobile threat is better than the free attacks.\n\n51) dlwillson: Trade R3 G3 Dlwillson\n\tFelix: Yeah, you&#39;re totally right. I&#39;m not sure why that move made sense to me at the time.\n\n52) Felix: Sacrifice G2 Felix\nBuild B1 Out\nBuild B3 Wizard\n\n53) dlwillson: B B3 Field\n\n54) Felix: Trade B3 Y3 Wizard\n\n55) dlwillson: T B2 G2 Field\n\n56) Felix: Build G2 Felix\n\n57) dlwillson: D G2 Field Y2 Sol\n\n58) Felix: Sacrifice G2 Felix\nBuild Y1 Out\nBuild Y2 Wizard\n\n59) dlwillson: S G2 Sol\nB G2 Dlwillson\nB Y2 Field\n\n60) Felix: Discover B2 Out G2 Post\n\n61) dlwillson: S G2 Dlwillson\nB R1 Field\nB R2 Field\n\n62) Felix: S Y3 Wizard\nM B2 Post Dlwillson\nM B1 Out Wizard\nM B1 Wizard Dlwillson\n\n63) dlwillson: Move Y1 Field Felix\n\n64) Felix: Sacrifice Y1 Felix\nMove B2 Wizard Dlwillson\nCatastrophe Dlwillson Blue\n\n65) dlwillson: S G3 Dlwillson\nB Y1 Felix\nB Y3 Felix\nB R3 Dlwillson\nC Felix Y\n\n66) Felix: B R3 Out\n\tdlwillson: Hm...\n\n67) dlwillson: S Y2 Field\nM B3 Field Felix\nM R2 Dlwillson Wizard\n\tdlwillson: Too little, too late. But, let&#39;s play it out. Maybe I&#39;ll pull off a miracle or you&#39;ll roll a 1.\n\n\tFelix: Nice! I knew you hade a few turns ago, even though you sounded like you thought you were the one going under :) do you see anything I could have done differently a fee turns back (around when you suggested I roll a 1, haha). I couldn&#39;t find any move that wouldn&#39;t ultimately open a path of victory for you. I kept hoping you&#39;d miss things, but not much gets past the Willson! Good game and an ending I&#39;ll have to study.\n\tdlwillson: A miracle!\r\n\r\nI&#39;ll have to look at it. I&#39;ve been thinking that you could have sac&#39;d your Y3 at home, instead of building a Y3. Put in the finishing blue, cat, then put in two yellows with the remaining energy from the sac. But, that wouldn&#39;t have worked, because I had mid and big reds all over, and I could have captured your y1 and g1 at home, winning one turn too early for your taste.\r\nMaybe if you&#39;d sac&#39;d your y1? No, you *did* sac your y1. Tell you what: Come to Denver and we&#39;ll set up and see if we can find you a path to a win from there.\n\tFelix: Haha sounds good! I set up my pieces and explored just about every possible path I could go, and they all ended with me being just ONE turn short of victory. I was trying to find a way to stall you by just one turn so I could get that edge I needed, but again, nothing gets past ya.\n\nHomeworlds Online (SDG# 34914)\nVariants: &quot;Unrated&quot;\nStarted: 2019.2.1, Ended: 2019.3.14\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Mathematician42: Homeworld B3 R1 G3\n\tMathematician42: I have pyramid arcade now! I&#39;m also a Starship Captain!\n\n3) wil: B G1 Wil\n\twil: Congrats!  What are your 10 games?\n\twil: Got the family playing?  \n\n4) Mathematician42: Build G1 Mathematician42\n\tMathematician42: My 10 games are:\r\n1. Homeworlds\r\n2. Treehouse\r\n3. Martian Coasters (Looney Ludo)\r\n4. Zendo\r\n5. Martian Chess\r\n6. Black ICE\r\n7. Launchpad 23\r\n8. Volcano\r\n9. Colorwheel\r\n10. Verticality\n\tMathematician42: Yeah, I&#39;ve &quot;taught&quot; my dad and a friend how to play Homeworlds. So far I&#39;ve been able to play at least one game with everyone in the family.\n\n5) wil: T G1 R1 Wil\n\n6) Mathematician42: Build G1 Mathematician42\n\tDraw5PlayAll: \n\n7) wil: B R1 Wil\n\n8) Mathematician42: Trade G1 Y1 Mathematician42\n\twil: Set up someplace and just move whenever.\n\twil: Nice,HW is great to play over days live!\n\n9) wil: B R2 Wil\n\twil: Good list!  Try petri dish\n\n10) Mathematician42: Build Y1 Mathematician42\n\tMathematician42: I agree about HW. It&#39;s so much easier to think when you play games live IRL(or at least just live).\n\tMathematician42: I&#39;m probably going to try it soon.\n\n11) wil: D R2 Wil B3 B3\n\n12) Mathematician42: Build Y1 Mathematician42\n\twil: Make sure to read all the tips on HW in PA\n\tMathematician42: Yeah\n\n13) wil: S G3 Wil\nB R2 Wil\nB R2 B3\nB R3 B3\n\n14) Mathematician42: Trade Y1 B1 Mathematician42\n\tMathematician42: That escalated quickly.\n\n15) wil: T R3 G3 B3\n\twil: Seeing red?\n\n16) Mathematician42: Discover G1 Mathematician42 B2 B2\n\tMathematician42: Yeah\n\n17) wil: D R2 Wil Y3 Y3\n\n18) Mathematician42: Build B1 Mathematician42\n\n19) wil: S G3 B3\nB R3 B3\nB R3 Y3\nB R3 Wil\n\n20) Mathematician42: Move B1 Mathematician42 B2\n\n21) wil: M R3 Y3 B2\n\n22) Mathematician42: Build B2 Mathematician42\n\n23) wil: A G1 B2\n\n24) Mathematician42: Discover B1 Mathematician42 Y2 Y2\n\n25) wil: A B1 B2\n\n26) Mathematician42: Build G1 Mathematician42\n\n27) wil: T R3 Y3 B3\n\n28) Mathematician42: Build Y1 Mathematician42\n\n29) wil: B R3 B2\n\n30) Mathematician42: Move B2 Mathematician42 Y2\n\n31) wil: T R3 Y3 B2\n\n32) Mathematician42: Move Y1 Mathematician42 Y2\n\tMathematician42: I see what&#39;s happening here.....\n\tMathematician42: You&#39;re setting up for doomsday machine\n\n33) wil: T R3 B3 Wil\n\twil: Once you have the guns\n\n34) Mathematician42: Build Y2 Mathematician42\n\n35) wil: M R2 B3 Y2\n\n36) Mathematician42: Build G1 Mathematician42\n\n37) wil: S Y3 B3 Mathematician42\nM Y3 B2 Mathematician42\nM R3 B2 Mathematician42\nM G1 B2 Mathematician42\nC Mathematician42 G\nC Mathematician42 Y\n\twil: Change of plans\n\tDraw5PlayAll: What is the page admin for\n\tMathematician42: How did you do that?\n\twil: My phone wouldn&#39;t format right for me to finish my move... Finally!\n\n\nHomeworlds Online (SDG# 34947)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.3, Ended: 2019.2.12\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 G1 B3\n\tSimon: More Homeworlds, have fun :)\n\n2) wil: H Y2 B1 G3\n\n3) Simon: Build B1 Simon\n\twil: I will!\n\n4) wil: B G1 Wil\n\n5) Simon: Build B1 Simon\n\twil: And move fairly quick till it slows\n\twil: Sunday morn, I can watch this space..\n\n6) wil: B G1 Wil\n\n7) Simon: Trade B3 Y3 Simon\n\n8) wil: D G1 Wil B3 B3\n\n9) Simon: Build B2 Simon\n\n10) wil: S G3 Wil\nB G2 B3\nB G2 Wil\nB G2 Wil\n\n11) Simon: Build Y1 Simon\n\n12) wil: B G3 B3\n\n13) Simon: Discover B1 Simon B2 B2\n\n14) wil: T G3 Y3 B3\n\n15) Simon: Discover B1 Simon B2 B2a\n\n16) wil: B G3 B3\n\n17) Simon: Build B3 Simon\n\n18) wil: D G2 Wil Y3 Y3\n\n19) Simon: Trade B3 G3 Simon\n\n20) wil: B G3 Y3\n\n21) Simon: Move G3 Simon B2\n\n22) wil: M Y3 B3 Wil\n\n23) Simon: Build B3 B2\n\n24) wil: T G3 R3 B3\n\n25) Simon: Build G3 B2\n\n26) wil: M G3 Y3 B2\n\n27) Simon: Sacrifice G3 B2\nBuild G3 B2\nBuild B3 B2a\nBuild Y1 Simon\n\n28) wil: T G3 R3 B2\n\twil: Nice\n\n29) Simon: Trade B1 R1 B2a\n\n30) wil: S G2 Wil\nB G2 Wil\nB R1 B2\n\twil: I&#39;ve done so badly\n\n31) Simon: Sacrifice G3 B2\nBuild G3 B2\nBuild R1 B2a\nBuild R2 B2a\n\n32) wil: T R1 B1 B2\nC B2 B\n\tSimon: Hnn, it&#39;s tempting every turn though to escape with the hanging queens &lt;_&lt;;;\n\n33) Simon: Trade B3 G3 B2a\n\twil: Had to pull the reboot switch\n\n34) wil: B G3 Wil\n\n35) Simon: Build G3 B2a\n\n36) wil: S Y3 Wil\nM G1 Wil Y3\nM G1 Y3 B2a\nM G1 B3 B2a\nC B2a G\n\n37) Simon: Trade R1 G1 B2a\n\twil: Clean up aisle 3\n\n38) wil: B R1 B3\n\n39) Simon: Trade R1 Y1 B2a\n\n40) wil: T R3 Y3 B3\n\n41) Simon: Build Y2 B2a\n\n42) wil: B Y2 B3\n\n43) Simon: Discover Y1 Simon B2 B2\n\n44) wil: M Y2 B3 B2\n\n45) Simon: Build B1 Simon\n\n46) wil: S G2 Y3\nB Y3 B3\nB R1 B3\n\n47) Simon: Sacrifice Y2 B2a\nMove Y1 B2a B3\nMove Y1 B2 B3\nCatastrophe B3 Yellow\n\n48) wil: T R1 Y1 B3\n\n49) Simon: Discover B1 Simon G2 G2\n\n50) wil: B R1 B3\n\n51) Simon: Build B1 Simon\n\n52) wil: M G2 B3 G2\n\n53) Simon: Build B3 G2\n\n54) wil: S G3 Wil\nB G1 G2\nB G3 G2\nB G3 Wil\nC G2 G\n\n55) Simon: Build B1 Simon\n\twil: I thought I had a better plan for that\n\n56) wil: D G2 Wil Y3 Y3\n\tSimon: Yeah, that kill looks expensive for you. It takes 3 moves to rebuild this b3 at g2, but re-killing it costs 3 moves and a pre-existing ship.\n\n57) Simon: Discover B1 Simon G2 G2\n\n58) wil: B G1 Wil\n\n59) Simon: Build B3 G2\n\n60) wil: S G3 Wil\nB G2 Y3\nB G3 Y3\nB G3 Wil\n\n61) Simon: Sacrifice Y1 Simon\nMove G1 B2a Y3\nCatastrophe Y3 Green\n\n62) wil: B G1 Wil\n\n63) Simon: Build B3 G2\n\n64) wil: D G1 Wil Y3 Y3\n\n65) Simon: Trade B3 Y3 G2\n\n66) wil: S G3 Wil\nB G2 Y3\nB G2 Y3\nB G3 Wil\n\n67) Simon: Move B3 G2 Y3\n\n68) wil: S G3 Wil\nB G3 Wil\nB G3 Wil\nB G3 Y3\nC Y3 G\n\n69) Simon: Sacrifice Y3 Simon\nMove Y3 G2 Y3\nMove Y3 Y3 Wil\nMove B3 Y3 Wil\n\n70) wil: S R1 B3\nA Y3 Wil\n\n71) Simon: Sacrifice R2 B2a\nAttack Y3 Wil\nAttack G3 Wil\n\tDraw5PlayAll: Strange\n\n72) wil: T G3 R3 Wil\n\n73) Simon: Trade B2 R2 Simon\n\n74) wil: B G1 Wil\n\n75) Simon: Sacrifice R2 Simon\nAttack R3 Wil\nAttack G1 Wil\n\twil: Gg\n\n76) wil: S Y2 B2\nM R1 B3 G2\nM R1 G2 Simon\n\tSimon: gg\n\n77) Simon: Attack G1 Wil\n\n\nHomeworlds Online (SDG# 34972)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.4, Ended: 2019.3.1\nParticipants: Draw5PlayAll (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Trydnt: Build R2 Trydnt\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) Trydnt: Build R2 Trydnt\n\n10) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Trydnt: Discover Y2 Trydnt G3 G3\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) Draw5PlayAll: Discover R2 Draw5playall G2 Ohgreat\n\n17) Trydnt: Move B1 Trydnt G3\n\n18) Draw5PlayAll: Build R1 Ohgreat\n\n19) Trydnt: Build R1 Trydnt\n\n20) Draw5PlayAll: Move B1 Draw5playall Ohgreat\n\n21) Trydnt: Move R2 Trydnt G3\n\n22) Draw5PlayAll: Trade R1 Y1 Ohgreat\n\n23) Trydnt: Build Y2 G3\n\n24) Draw5PlayAll: Build Y2 Draw5playall\n\n25) Trydnt: Discover Y2 G3 G2 G2\n\n26) Draw5PlayAll: Discover Y1 Draw5playall B2 Huh\n\n27) Trydnt: Build Y3 G3\n\n28) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Ohgreat\nBuild B1 Ohgreat\n\n29) Trydnt: Sacrifice Y3 G3\nMove Y2 G3 G2\nMove Y2 G2 Draw5playall\nMove Y2 G2 Draw5playall\nCatastrophe Draw5playall Y\n\tTrydnt: https://d1ia71hq4oe7pn.cloudfront.net/photo/67471171-720px.jpg\n\tDraw5PlayAll: Huh?\n\tTrydnt: thought it would link. it&#39;s a picture of a bluebird\n\n\nHomeworlds Online (SDG# 34965)\nVariants: &quot;Unrated&quot;\nStarted: 2019.2.6, Ended: 2019.2.22\nParticipants: BloodRumpus (S), wil (N)\nWinner: BloodRumpus\n\n1) wil: H Y2 B1 G3\n\n2) BloodRumpus: Homeworld B3 G2 Y3\n\twil: Thx 4 d challenge!\n\n3) wil: B G1 Wil\n\n4) BloodRumpus: Build Y1 Bloodrumpus\n\n5) wil: T G1 B1 Wil\n\n6) BloodRumpus: Build Y1 Bloodrumpus\n\n7) wil: B B1 Wil\n\n8) BloodRumpus: Discover Y1 Bloodrumpus G1 Foo\n\n9) wil: D B1 Wil G3 G3\n\n10) BloodRumpus: Build Y1 Foo\n\n11) wil: B B2 Wil\n\n12) BloodRumpus: Build Y2 Bloodrumpus\n\n13) wil: D B2 Wil Y3 Y3\n\n14) BloodRumpus: Build Y2 Foo\n\n\nHomeworlds Online (SDG# 34615)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.8, Ended: 2019.2.10\nParticipants: Trydnt (S), para (N)\nWinner: para\n\n1) para: Homeworld G3 B1 R3\n\n\nHomeworlds Online (SDG# 34960)\nStarted: 2019.2.8, Ended: 2019.8.20\nParticipants: para (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\tts52: Have a good game!\n\n2) para: Homeworld G3 B1 R3\n\n3) ts52: Build G1 Ts52\n\n4) para: Build R1 Para\n\tpara: Good game!\n\n5) ts52: Build G1 Ts52\n\n6) para: Build R1 Para\n\n7) ts52: Trade G1 R1 Ts52\n\n\nHomeworlds Online (SDG# 34981)\nStarted: 2019.2.8, Ended: 2019.8.20\nParticipants: para (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) para: Homeworld G3 B2 R3\n\n3) ts52: Build G1 Ts52\n\n4) para: Build R1 Para\n\n5) ts52: Build G1 Ts52\n\n6) para: Build R1 Para\n\n7) ts52: Trade G1 B1 Ts52\n\n\nHomeworlds Online (SDG# 35009)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.13, Ended: 2019.3.7\nParticipants: goulo (S), deanthebean (N)\nWinner: goulo\n\n1) deanthebean: Homeworld B2 R3 G3\n\tgoulo: howdy!\n\tdeanthebean: Hi. Enjoy the game!\n\n2) goulo: Homeworld B1 R3 G3\n\n3) deanthebean: Build G1 Deanthebean\n\n4) goulo: Build G1 Goulo\n\n5) deanthebean: Trade G1 Y1 Deanthebean\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) deanthebean: Build G1 Deanthebean\n\n8) goulo: Build G1 Goulo\n\n9) deanthebean: Trade G1 B1 Deanthebean\n\n10) goulo: Trade G1 B1 Goulo\n\n11) deanthebean: Build B2 Deanthebean\n\n12) goulo: Build B2 Goulo\n\n13) deanthebean: Discover B1 Deanthebean G1 Sun\n\n14) goulo: Trade B1 R1 Goulo\n\n15) deanthebean: Build B1 Deanthebean\n\n16) goulo: Build B3 Goulo\n\n17) deanthebean: Build B3 Sun\n\n18) goulo: Discover B3 Goulo Y2 Flavo\n\n19) deanthebean: Trade B3 Y3 Sun\n\n20) goulo: Move B3 Flavo Sun\n\n21) deanthebean: Move B1 Deanthebean Sun\n\n22) goulo: Sacrifice R1 Goulo\nAttack Y3 Sun\n\n23) deanthebean: Build Y1 Deanthebean\n\n24) goulo: Build B3 Sun\nCatastrophe Sun B\n\n25) deanthebean: Build Y2 Deanthebean\n\n26) goulo: Build Y2 Goulo\n\n27) deanthebean: Trade Y1 R1 Deanthebean\n\n28) goulo: Trade Y1 R1 Goulo\n\n29) deanthebean: Discover B2 Deanthebean G1 Proxima\n\n30) goulo: Discover B2 Goulo Y2 Flavo\n\n31) deanthebean: Move Y1 Deanthebean Proxima\n\n32) goulo: Move R1 Goulo Flavo\n\n33) deanthebean: Build Y1 Proxima\n\n34) goulo: Trade B2 G2 Flavo\n\n35) deanthebean: Build B1 Proxima\n\n36) goulo: Build R1 Flavo\n\n37) deanthebean: Trade B2 R2 Proxima\n\n38) goulo: Move R1 Flavo Sun\n\n39) deanthebean: Build R2 Proxima\n\n40) goulo: Sacrifice G2 Flavo\nBuild R2 Flavo\nBuild R3 Sun\n\n41) deanthebean: Trade Y1 G1 Proxima\n\n42) goulo: Build G2 Goulo\n\n43) deanthebean: Build G2 Deanthebean\n\n44) goulo: Move G2 Goulo Flavo\n\n45) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Deanthebean\nBuild G3 Deanthebean\nBuild G3 Proxima\n\n46) goulo: Move G2 Flavo Proxima\nCatastrophe Proxima G\n\n47) deanthebean: Discover G2 Deanthebean Y1 Barnard\n\n48) goulo: Sacrifice Y2 Goulo\nMove R3 Sun Deanthebean\nMove Y3 Sun Deanthebean\n\n\tdeanthebean: Well played! dismal game from my PoV. \n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 34968)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.16, Ended: 2019.2.19\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 34978)\nVariants: &quot;Unrated&quot;\nStarted: 2019.2.17, Ended: 2019.6.1\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n1) wil: H B1 Y2 G3\n\n2) Mathematician42: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Mathematician42: Build G1 Mathematician42\n\n5) wil: T G1 B1 Wil\n\n6) Mathematician42: Build G1 Mathematician42\n\n7) wil: B B1 Wil\n\n8) Mathematician42: Trade G1 Y1 Mathematician42\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Mathematician42: Build G1 Mathematician42\n\n11) wil: B B2 Wil\n\n12) Mathematician42: Discover G1 Mathematician42 G1 G1\n\n13) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n14) Mathematician42: Build Y1 Mathematician42\n\tMathematician42: Oh wow\n\n15) wil: S B2 Wil\nT B3 G3 Wil\nT B3 G3 Y3\n\n16) Mathematician42: Build G2 Mathematician42\n\n17) wil: M B2 Y3 G1\n\n18) Mathematician42: Trade Y1 R1 Mathematician42\n\n19) wil: B B2 Wil\n\n20) Mathematician42: Build Y1 Mathematician42\n\tMathematician42: Sorry for the delay. I&#39;m really busy with school projects and homework\n\n21) wil: B G2 Y3\n\twil: No worries, have you shared this game\n\twil: Does your school.have a chess club?\n\n22) Mathematician42: Discover G1 Mathematician42 Y1 Y1\n\tMathematician42: With a couple of people. There is a chess club, I think I might join next year\n\n23) wil: S G3 Y3\nB G2 Wil\nB G3 Y3\nB B3 G1\n\twil: What grade are.you in now? Fav studies?\n\n24) Mathematician42: Move G1 Y1 Y3\n\tMathematician42: I&#39;m in the 9th grade, soon to be in 10th. My favorite subjects at school are mathematics, sciences (especially physics), and music\n\n25) wil: T G2 R2 Y3\n\twil: Good on ya, absorb those studies it will pay off\n\n26) Mathematician42: Move G1 Y3 Wil\n\tMathematician42: Thanks\n\n27) wil: S R2 Y3\nA G1 Wil\nA G1 G1\n\n28) Mathematician42: Move R1 Mathematician42 G1\n\n29) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB B3 G1\n\n30) Mathematician42: Attack G1 G1\n\n31) wil: T B3 R3 G1\n\n32) Mathematician42: Sacrifice Y1 Mathematician42\nMove G1 G1 Y3\n\n33) wil: S B3 G1\nT G3 Y3 Y3\nT G2 R2 Y3\nT G2 R2 Wil\n\n34) Mathematician42: Sacrifice G3 Mathematician42\nBuild G2 Y3\nBuild G2 Y3\nBuild G3 Mathematician42\n\n35) wil: S R2 Wil\nA G2 Y3\nA R1 G1\n\n36) Mathematician42: Build G3 Mathematician42\n\n37) wil: S Y3 Y3\nM G2 Y3 G1\nM G2 G1 Mathematician42\nM R3 G1 Mathematician42\nC Mathematician42 G\n\n\twil: Good game\n\tMathematician42: Good game, sorry for not responding, school has been really crazy lately.\n\nHomeworlds Online (SDG# 34943)\nVariants: &quot;Unrated&quot;\nStarted: 2019.2.17, Ended: 2019.4.4\nParticipants: Trydnt (S), Mathematician42 (N)\nWinner: Trydnt\n\n1) Mathematician42: Homeworld B1 R2 G3\n\n2) Trydnt: Homeworld B1 G3 B3 *\n\n3) Mathematician42: Build G1 Mathematician42\n\n4) Trydnt: Build B1 Trydnt\n\n5) Mathematician42: Build G1 Mathematician42\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) Mathematician42: Trade G1 Y1 Mathematician42\n\n8) Trydnt: Build B2 Trydnt\n\n9) Mathematician42: Build G1 Mathematician42\n\n10) Trydnt: Discover B2 Trydnt G2 G2\n\n11) Mathematician42: Trade G1 R1 Mathematician42\n\n12) Trydnt: Build B2 G2\n\n13) Mathematician42: Build G1 Mathematician42\n\n14) Trydnt: Build B2 Trydnt\n\n15) Mathematician42: Discover R1 Mathematician42 G3 G3\n\n16) Trydnt: Build B3 G2\n\n17) Mathematician42: Move G1 Mathematician42 G3\n\n18) Trydnt: Trade B3 Y3 G2\n\n19) Mathematician42: Build Y1 Mathematician42\n\n20) Trydnt: Build B3 G2\n\n21) Mathematician42: Build Y1 Mathematician42\n\n22) Trydnt: Trade B2 R2 G2\n\n23) Mathematician42: Move Y1 Mathematician42 G3\n\n24) Trydnt: Build B2 G2\n\n25) Mathematician42: Build Y2 Mathematician42\n\n26) Trydnt: Build Y2 G2\n\n27) Mathematician42: Build G1 Mathematician42\n\tMathematician42: Sorry for the delay. I&#39;m really busy with school projects and homework\n\n28) Trydnt: Discover B3 G2 Y3 Y3\n\n29) Mathematician42: Move G1 Mathematician42 Y3\n\n30) Trydnt: Build R1 G2\n\n31) Mathematician42: Move R1 G3 Mathematician42\n\n32) Trydnt: Move R2 G2 Y3\n\n33) Mathematician42: Move Y1 G3 G2\n\n34) Trydnt: Sacrifice Y3 G2\nMove R1 G2 Y3\nMove R1 Y3 Mathematician42\nMove R2 Y3 Mathematician42\nCatastrophe Mathematician42 R\n\n\tMathematician42: Good game\n\tTrydnt: well played\n\tMathematician42: Thank you\n\nHomeworlds Online (SDG# 35033)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.25, Ended: 2019.4.9\nParticipants: Babamots (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 G3 B3\n\tBabamots: May your fleet fight valiantly!\n\tSimon: Yours too, enjoy!\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) Simon: Build B1 Simon\n\n4) Babamots: Build G1 Babamots\n\n5) Simon: Trade B1 R1 Simon\n\n6) Babamots: Trade G3 R3 Babamots\n\n7) Simon: Build R2 Simon\n\n8) Babamots: Build R2 Babamots\n\n9) Simon: Trade R2 Y2 Simon\n\n10) Babamots: Trade R3 Y3 Babamots\n\n11) Simon: Build R2 Simon\n\tBabamots: Looks like you&#39;ve been on break from SDG since about the time I started. How is it being back?\n\tSimon: I&#39;ve been here in 2014-2017, yeah, mostly for Homeworlds. I don&#39;t get to play it in real life anymore and missed it; at least Zendo happens often. The player page on SDG still loads as slowly as ever. :-) But the full site rewrite seems to be underway and healthy.\n\n12) Babamots: Build R2 Babamots\n\n13) Simon: Discover R1 Simon G2 G2\n\n14) Babamots: Trade R2 B2 Babamots\n\n15) Simon: Build R2 Simon\n\n16) Babamots: Discover R2 Babamots G3 Orion\n\n17) Simon: Trade R2 G2 Simon\n\n18) Babamots: Build G1 Babamots\n\n19) Simon: Discover R2 Simon B2 B2\n\n20) Babamots: Discover G1 Babamots R3 Romulus\n\n21) Simon: Build Y1 Simon\n\n22) Babamots: Build G1 Babamots\n\n23) Simon: Sacrifice G2 Simon\nBuild R2 G2\nBuild R3 B2\n\n24) Babamots: Build R3 Orion\n\n25) Simon: Sacrifice Y2 Simon\nMove R1 G2 Orion\nMove R2 G2 Orion\nCatastrophe Orion Red\n\n26) Babamots: Build Y1 Babamots\n\n27) Simon: Trade R3 G3 B2\n\n28) Babamots: Build G2 Babamots\n\n29) Simon: Build G2 B2\n\n30) Babamots: Build G2 Romulus\n\n31) Simon: Trade G3 Y3 B2\n\n32) Babamots: Sacrifice B2 Babamots\nTrade G2 Y2 Romulus\nTrade G1 R1 Babamots\n\n33) Simon: Build R2 B2\n\n34) Babamots: Build G1 Romulus\n\n35) Simon: Discover R2 B2 G3 G3\n\n36) Babamots: Discover G2 Babamots G3 Orion\n\n37) Simon: Build Y1 B2\n\n38) Babamots: Discover R1 Babamots Y3 Iconia\n\n39) Simon: Build Y2 Simon\n\n40) Babamots: Build Y2 Romulus\n\n41) Simon: Trade Y3 B3 B2\n\n42) Babamots: Sacrifice Y2 Romulus\nMove G1 Romulus B2\nDiscover G1 B2 Y3 Tauceti\n\n43) Simon: Move B3 B2 Romulus\n\n44) Babamots: Discover Y2 Romulus G2 Gorn\n\n45) Simon: Move R2 B2 Orion\n\n46) Babamots: Sacrifice G2 Orion\nBuild G2 Tauceti\nBuild Y2 Gorn\n\n47) Simon: Attack G1 Romulus\n\n48) Babamots: Sacrifice G2 Tauceti\nBuild R2 Iconia\nBuild R3 Iconia\n\n49) Simon: Sacrifice Y2 Simon\nMove R2 Orion B2\nMove R2 B2 Iconia\nCatastrophe Iconia Red\n\n50) Babamots: Trade Y1 R1 Babamots\n\tBabamots: Sorry to be so slow. That&#39;s the move I had intended all along, but I&#39;ve been distracted lately and needed another chance to look it over.\n\tDraw5PlayAll: TauCeti?\n\tBabamots: Tau Ceti is a real star and one of the reported home systems of the Traveler.\n\n51) Simon: Build B1 Romulus\n\tSimon: Ah, it&#39;s fine. 3 days per move is a very slow setting, there is no in problem spending that time.\n\tBabamots: I usually play must faster, more like two moves a day, but SDG has been a little lower on my priority list lately.\n\n52) Babamots: Trade Y3 G3 Babamots\n\n53) Simon: Build G2 Romulus\n\tDraw5PlayAll: By the way... is the Homeworlds tournament still going? If not, who won?\n\tBabamots: There are two games still being played for the tournament, and one more that still needs to start.\n\n54) Babamots: Trade G1 Y1 Babamots\n\n55) Simon: Trade B3 Y3 Romulus\n\n56) Babamots: Discover Y2 Gorn Y3 Pakled\n\n57) Simon: Build B1 Romulus\n\n58) Babamots: Build Y2 Babamots\n\n59) Simon: Move G2 B2 Tauceti\n\n60) Babamots: Build G1 Babamots\n\n61) Simon: Build R2 G3\n\n62) Babamots: Move R1 Babamots Pakled\n\n63) Simon: Sacrifice R2 G3\nAttack G1 Tauceti\nPass\n\n\tBabamots: I missed that that would wreck my plan to get an r3. I think that&#39;s it for me. Maybe I&#39;ll get good enough to challenge you someday!\n\tSimon: Yeah, the game felt comfortable after my sac to kill 3 reds, I had build locations in all colors.\r\n\r\ngg, looking forward to a rematch, I&#39;ll open a standing challenge for whenever you feel like it!\n\tDraw5PlayAll: Pakled sounds familiar...\n\tBabamots: In Star Trek, the Pakleds are a race that don&#39;t seem to be very bright. I make a world called Pakled when I&#39;m feeling like I&#39;ve made big mistakes.\n\tDraw5PlayAll: I remember that one now.\n\nHomeworlds Online (SDG# 35038)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.26, Ended: 2019.3.10\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H Y2 B1 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\tdlwillson: Yay! A game with Wil! How are you, Wil?\n\n3) wil: B G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\twil: Alive!  Some issues, but coming along\n\n5) wil: T G1 B1 Wil\n\n6) dlwillson: T G3 B3 Dlwillson\n\n7) wil: B B2 Wil\n\n8) dlwillson: B B2 Dlwillson\n\n9) wil: T B1 R1 Wil\n\n10) dlwillson: T B2 R2 Dlwillson\n\n11) wil: B R1 Wil\n\n12) dlwillson: B G1 Dlwillson\n\twil: Brain is working most time...age v stroke???\n\n13) wil: T R1 Y1 Wil\n\n14) dlwillson: Trade G1 Y1 Dlwillson\n\n15) wil: D B2 Wil G3 G3\n\n16) dlwillson: B B1 Dlwillson\n\n17) wil: B B2 G3\n\n18) dlwillson: Trade B3 G3 Dlwillson\n\n19) wil: T B2 Y2 G3\n\n20) dlwillson: D B1 Dlwillson G2 Field\n\n21) wil: B B2 G3\n\n22) dlwillson: D G1 Dlwillson B2 Sea\n\n23) wil: M B2 G3 Field\n\n24) dlwillson: B B3 Field\n\n25) wil: S G3 Wil\nB B3 Field\nB B3 G3\nB R1 Wil\nC Field B\n\n26) dlwillson: B G1 Sea\n\n27) wil: T B3 G3 G3\n\tdlwillson: Nice move, Wil!\n\n28) dlwillson: B G1 Dlwillson\n\twil: We&#39;ll see, it seemed like a good idea\n\n29) wil: B B1 G3\n\n30) dlwillson: T G1 Y1 Sea\n\n31) wil: M B2 G3 Sea\n\n32) dlwillson: B Y2 Dlwillson\n\n33) wil: S R1 Wil\nA Y1 Sea\n\n34) dlwillson: S Y1 Dlwillson\nM G1 Sea G3\n\n35) wil: S G3 G3\nB B2 G3\nB B3 G3\nB B3 Sea\n\n36) dlwillson: B G1 G3\n\n37) wil: S Y2 G3\nM B3 G3 Wil\nD B1 G3 G2 G2\n\tdlwillson: I&#39;m gonna need you to make some sort of mistake, sometime.\n\n38) dlwillson: B R1 Dlwillson\n\twil: I know that feeling and will probably oblige.\n\n39) wil: B B3 G2\n\n40) dlwillson: D Y2 Dlwillson G2 Field\n\n41) wil: T B3 G3 Sea\n\n42) dlwillson: B Y1 Field\n\n43) wil: T B3 Y3 G2\n\n44) dlwillson: M Y2 Field G3\n\n45) wil: B G2 Sea\n\n46) dlwillson: S G3 Dlwillson\nB Y2 G3\nB Y3 Field\nB G3 Dlwillson\n\n47) wil: S G3 Sea\nB G3 Sea\nB B3 G2\nB B3 G2\n\n48) dlwillson: S Y3 Field\nM G1 G3 G2\nM G1 G3 G2\nM G1 Dlwillson G2\nC G2 G\n\n49) wil: B Y3 Sea\n\tdlwillson: Marvin the Martian would be satisfied.\n\n50) dlwillson: B Y3 Field\n\twil: Nice timing!\n\n51) wil: S G3 Sea\nB B1 Wil\nB B3 Sea\nB B3 G3\n\n52) dlwillson: S R1 Dlwillson\nA B2 G3\n\n53) wil: S B2 Sea\nT B3 R3 Sea\nT B3 G3 Wil\n\n54) dlwillson: S Y3 Field\nM Y2 G3 Wil\nM Y2 G3 Wil\nM B2 G3 Field\nC Wil Y\n\n55) wil: D G2 Sea B3 B3\n\n56) dlwillson: B G1 Dlwillson\n\n57) wil: D R3 Sea Y3 Y3\n\n58) dlwillson: B R1 Dlwillson\n\n59) wil: B G1 Wil\n\n60) dlwillson: B B2 Field\n\n61) wil: T G1 Y1 Wil\n\n62) dlwillson: B Y2 Field\n\n63) wil: M B1 Wil Y3\n\n64) dlwillson: D Y2 Field B3 Sky\n\n65) wil: B Y2 Wil\n\n66) dlwillson: B Y2 Field\n\n67) wil: B G1 Wil\n\n68) dlwillson: T Y2 G2 Sky\n\n69) wil: M Y2 Wil Field\n\n70) dlwillson: S Y2 Field\nD B2 Field R3 Mars1\n\nD B2 Field R3 Mars2\n\n71) wil: S R1 Wil\nA Y1 Field\n\n72) dlwillson: S G2 Sky\nB B3 Mars1\nB R1 Dlwillson\n\n73) wil: B Y2 Field\n\n74) dlwillson: T R2 Y2 Dlwillson\n\n75) wil: S Y2 Field\nM Y1 Field Dlwillson\nM Y1 Sea Dlwillson\nC Dlwillson Y\n\n76) dlwillson: Trade G3 Y3 Dlwillson\n\n77) wil: S Y3 Sea\nM G3 Wil Mars2\nM B1 Y3 Dlwillson\nM B3 G3 Dlwillson\n\twil: Nice\n\n78) dlwillson: S Y3 Dlwillson\nM B2 Mars1 Wil\nM B3 Mars1 Wil\nM B2 Mars2 Wil\nC Wil B\n\twil: If ya gotta go, leave a good corpse!\n\n\nHomeworlds Online (SDG# 35040)\nVariants: &quot;Hard time&quot;\nStarted: 2019.2.28, Ended: 2019.3.4\nParticipants: speardane (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) speardane: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) speardane: Build G1 Speardane\n\n5) wil: T G1 B1 Wil\n\tspeardane: For the tournament. Good luck!\n\n6) speardane: Trade G3 R3 Speardane\n\tDraw5PlayAll: Oh... I did not know the tourney was still going on, nor that the spear Dane account was operational.\n\tspeardane: @Draw5PlayAll: The two things are related. :) wil has three games left to play, and this is one of them.\n\n7) wil: B B1 Wil\n\n8) speardane: Build G1 Speardane\n\n9) wil: D B1 Wil G3 G3\n\n10) speardane: Discover G1 Speardane Y1 Delos\n\n11) wil: B B2 Wil\n\n12) speardane: Build G1 Delos\n\n13) wil: D B2 Wil Y3 Y3\n\tDraw5PlayAll: Are you (spear) going to respond to the other challenges?\n\twil: Arent people.allowed to reject.challenges?\n\n14) speardane: Discover G1 Delos B3 Lebling\n\n15) wil: S G3 Wil\nB B2 Y3\nB B3 G3\nB B3 Wil\n\tspeardane: If I ever figure out how to make speardane run autonomously, I&#39;ll make it respond to challenges. As long as I&#39;m running it manually, nah. If you have a C++ compiler you can download and play against it offline: https://github.com/Quuxplusone/Homeworlds\n\twil: Speardane is an ai?\n\n16) speardane: Build G2 Lebling\n\n17) wil: T B3 Y3 G3\n\n18) speardane: Trade G2 Y2 Lebling\n\twil: If I am playing an ai, does it learn from play\n\n19) wil: B B3 G3\n\tspeardane: Tournament contestant &quot;speardane&quot; is an AI (written and operated by ajo). It doesn&#39;t &quot;evolve&quot; or &quot;learn&quot; from play; it&#39;s more of an expert system consisting of a bag of heuristics.\n\n20) speardane: Build G2 Lebling\n\n21) wil: T B3 R3 G3\n\n22) speardane: Discover G1 Delos B3 Kotok\n\n23) wil: T B3 G3 Wil\n\n24) speardane: Sacrifice G2 Lebling\nBuild G2 Speardane\nBuild G2 Kotok\n\twil: Ajo, have you learned anything from speardane?\n\n25) wil: B B3 G3\n\tspeardane: Not really. Speardane&#39;s heuristics reflect my biases when writing it, so I&#39;m probably the person least likely to learn something new by playing against it.\n\twil: I meant by watching its actions with others\n\n26) speardane: Trade G1 Y1 Kotok\n\n27) wil: T B3 G3 G3\n\n28) speardane: Discover G2 Speardane Y1 Delos\n\n29) wil: B B3 G3\n\n30) speardane: Build G1 Delos\n\n31) wil: D G3 G3 Y1 Y1\n\n32) speardane: Sacrifice G2 Delos\nBuild Y2 Kotok\nBuild G2 Kotok\n\n33) wil: B G2 Y1\n\n34) speardane: Trade G2 R2 Kotok\n\twil: Cut and paste my action, c&amp;p computer response?\n\twil: What is the methodology you go thru?\n\n35) wil: B R1 G3\n\tspeardane: That&#39;s right. Minor reformatting, e.g. the AI will output literally &quot;convert g2 to r2 at Kotok&quot; and then I input that into SDG as &quot;trade g2 r2 Kotok&quot;, but yep, the human is in the loop purely as a data-entry specialist. :)\n\n36) speardane: Build G2 Delos\n\n37) wil: M R3 G3 Delos\n\n38) speardane: Sacrifice Y2 Kotok\nDiscover G1 Delos Y2 Minsky\nMove G2 Delos Minsky\n\n39) wil: M R3 Delos Minsky\n\n40) speardane: Sacrifice Y2 Lebling\nMove G1 Minsky Y1\nMove G2 Minsky Y1\nCatastrophe Y1 Green\n\n41) wil: T B3 R3 G3\n\n42) speardane: Build Y1 Kotok\n\n43) wil: B B3 G3\n\n44) speardane: Discover Y1 Kotok G2 Delos\n\n45) wil: T B3 G3 G3\n\n46) speardane: Discover Y1 Delos B3 Licklider\n\n47) wil: D G3 G3 Y1 Y1\n\n48) speardane: Build Y2 Kotok\n\n49) wil: M R1 G3 Y1\n\n50) speardane: Discover Y2 Kotok G2 Delos\n\n51) wil: B R1 G3\n\n52) speardane: Move Y2 Delos Lebling\n\n53) wil: D R3 G3 G1 G1\n\n54) speardane: Build G2 Kotok\n\n55) wil: B R1 G1\n\n56) speardane: Sacrifice G2 Kotok\nBuild G2 Lebling\nBuild R2 Kotok\n\n57) wil: M R1 Y1 Speardane\n\n58) speardane: Sacrifice G2 Lebling\nBuild G2 Speardane\nBuild G2 Kotok\n\n59) wil: A G1 Speardane\n\n60) speardane: Sacrifice G2 Kotok\nBuild G2 Lebling\nBuild R2 Kotok\n\n61) wil: S Y3 G3\nM R1 G1 Speardane\nM R3 G1 Speardane\nM G3 Y1 Speardane\nC Speardane R\n\n62) speardane: Pass\n\n63) wil: B G1 Speardane\nC Speardane G\n\tspeardane: Good game!\n\twil: Did the computer pass, or you call it quits?\n\twil: Must be tough to watch and not modify moves\n\tspeardane: The AI says &quot;pass&quot; when it&#39;s checkmated: there&#39;s no move better than &quot;pass&quot; if they all lead to defeat.\n\twil: Interesting, kudos on writing and playing!!\n\n\nHomeworlds Online (SDG# 35045)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.1, Ended: 2019.3.28\nParticipants: Trydnt (S), Felix (N)\nWinner: Trydnt\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B2 G2 Y3 *\n\tFelix: Good luck and have fun as always :)\n\n3) Felix: Build G1 Felix\n\n4) Trydnt: Build Y1 Trydnt\n\tFelix: Ooh, the clone-star homeworld. I like it!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Trydnt: Build Y2 Trydnt\n\tTrydnt: thanks I think this may be the most effective counter to the hw b2 y1 g3 setup. anything else leaves you in a tricky bind\n\tFelix: I&#39;ve never actually seen it or had it used against a 1-2 star opening, so I&#39;m curious to see how it plays out!\n\n7) Felix: Discover Y1 Felix G3 Out\n\n8) Trydnt: Trade Y2 R2 Trydnt\n\n9) Felix: Build Y2 Out\n\n10) Trydnt: Move R2 Trydnt Out\n\n11) Felix: Move Y2 Out Trydnt\n\n12) Trydnt: Trade Y3 R3 Trydnt\n\n13) Felix: Build Y2 Trydnt\n\n14) Trydnt: Attack Y2 Trydnt\n\n15) Felix: Build Y2 Trydnt\nCatastrophe Trydnt Yellow\n\n16) Trydnt: Attack Y1 Out\n\n17) Felix: Build G1 Felix\n\tFelix: I don&#39;t like this at all :)\n\n18) Trydnt: Build Y1 Out\n\tTrydnt: I thought you&#39;d move the y1 to my hw for the catastrophe so I wouldn&#39;t get it\n\n19) Felix: Discover G1 Felix B3 Humphrey\n\tFelix: That would have been smarter!\n\n20) Trydnt: Build Y2 Out\n\n21) Felix: Build G1 Felix\n\n22) Trydnt: Sacrifice Y2 Out\nMove R2 Out Felix\nMove R2 Felix Humphrey\n\n23) Felix: Build G1 Felix\n\n24) Trydnt: Attack G1 Humphrey\n\n25) Felix: Trade G1 R1 Felix\n\n26) Trydnt: Build Y2 Out\n\n27) Felix: Build R1 Felix\n\n28) Trydnt: Build R1 Humphrey\n\n29) Felix: Discover R1 Felix B3 Grinch\n\n30) Trydnt: Build R2 Trydnt\n\n31) Felix: Build R2 Felix\n\n32) Trydnt: Trade R2 Y2 Trydnt\n\n33) Felix: Discover R2 Felix Y3 Opus\n\n34) Trydnt: Trade R2 Y2 Humphrey\n\n35) Felix: Build R2 Felix\n\n36) Trydnt: Build Y3 Trydnt\n\n\tFelix: Oops. sorry to end it that way!\n\nHomeworlds Online (SDG# 35047)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.3, Ended: 2019.3.5\nParticipants: wil (S), mneme (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 34946)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.3.8, Ended: 2019.3.11\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35016)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.8, Ended: 2019.3.11\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35018)\nVariants: &quot;Unrated&quot;\nStarted: 2019.3.8, Ended: 2019.4.6\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld G2 B2 R3 *\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build R1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Trade R1 Y1 Trydnt\n\n7) wil: T G1 Y1 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: T G1 R1 Wil\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: D Y1 Wil G3 G3\n\n12) Trydnt: Move Y2 Trydnt G3\n\n13) wil: D Y1 G3 G2 G2\n\n14) Trydnt: Build R1 Trydnt\n\n15) wil: B G1 Wil\n\n16) Trydnt: Trade R1 B1 Trydnt\n\n17) wil: B G1 Wil\n\n18) Trydnt: Move B1 Trydnt G3\n\n19) wil: B R1 Wil\n\n20) Trydnt: Build B1 G3\n\n21) wil: M G1 Wil G3\n\n22) Trydnt: Trade B1 R1 G3\n\n23) wil: B G1 G3\n\n24) Trydnt: Sacrifice Y2 G3\nDiscover R1 G3 G2 G22\nDiscover Y1 Trydnt G3 G33\n\twil: I&#39;m calling that move an &#39;ever in ton&#39;\n\n25) wil: M R1 Wil G3\n\n26) Trydnt: Sacrifice R1 G22\nAttack R1 G3\n\n27) wil: S G3 Wil\nB G2 G3\nB Y2 G2\nB G3 Wil\nC G3 G\n\n28) Trydnt: Build Y2 Trydnt\n\n29) wil: M Y1 G2 G33\n\n30) Trydnt: Build Y3 G33\n\n31) wil: B Y3 G2\n\n32) Trydnt: Discover Y3 G33 G2 G22\n\n33) wil: D Y2 G2 Y3 Y3\n\n34) Trydnt: Build R1 Trydnt\n\n35) wil: D Y1 G33 G1 G1\n\n36) Trydnt: Discover Y3 G22 B3 B3\n\n37) wil: B R1 Wil\n\n38) Trydnt: Move Y2 Trydnt B3\n\n39) wil: B R2 Wil\n\n40) Trydnt: Trade Y2 R2 B3\n\n41) wil: M R2 Wil G33\n\n42) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 G33 G1 G11\nMove R1 Trydnt B3\n\n43) wil: B R2 G33\n\n44) Trydnt: Move R2 B3 G1\n\n45) wil: M R1 Wil Y3\n\n46) Trydnt: Move Y3 B3 Trydnt\n\n47) wil: B R3 G33\n\n48) Trydnt: Build R3 G1\n\n49) wil: S Y1 G1\nM R2 G33 G11\n\n50) Trydnt: Sacrifice Y1 G11\nMove R3 G1 B3\n\n51) wil: B G2 Wil\n\n52) Trydnt: Move R3 Trydnt G11\n\n53) wil: M G1 Wil Y3\n\n54) Trydnt: Trade R3 G3 B3\n\n55) wil: S G3 Wil\nB G3 Wil\nB R3 Y3\nB Y1 G2\n\n56) Trydnt: Attack R2 G11\n\n57) wil: S Y2 Y3\nM R1 Y3 G11\nM R2 G33 G11\nC G11 R\n\n58) Trydnt: Build G1 B3\n\n59) wil: D G1 Y3 Y1 Y1\n\n60) Trydnt: Build Y2 Trydnt\n\n61) wil: S G3 Wil\nB R1 Wil\nB Y2 G2\nB G3 Wil\n\n62) Trydnt: Move Y2 Trydnt B3\n\n63) wil: S Y2 G2\nM Y3 G2 G1\nM G2 Wil B3\n\n64) Trydnt: Sacrifice G3 B3\nBuild R2 G1\nBuild R2 G1\nBuild R3 B3\n\n65) wil: S G2 B3\nB G2 Wil\nB G3 Y1\n\n66) Trydnt: Build Y2 B3\n\n67) wil: B Y2 G2\n\n68) Trydnt: Trade R1 B1 B3\n\n69) wil: T R1 B1 Wil\n\n70) Trydnt: Build R1 B3\n\n71) wil: M B1 Wil G33\n\n72) Trydnt: Move R3 B3 G2\n\n73) wil: S Y1 G2\nM Y2 G2 G33\n\n74) Trydnt: Sacrifice Y2 B3\nMove R3 G2 B3\nDiscover B1 B3 G2 G2\n\n75) wil: S G3 Wil\nB Y1 G33\nB Y2 G1\nB G3 Wil\n\n76) Trydnt: Attack Y2 G1\n\n77) wil: S R3 G33\nA R2 G1\nA R2 G1\nA Y2 G1\n\n78) Trydnt: Build R1 G1\nCatastrophe G1 R\n\n79) wil: S G3 Wil\nB G3 Wil\nB B1 G33\nB R1 Wil\n\n80) Trydnt: Move R1 B3 Trydnt\n\n81) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 Y3\n\n82) Trydnt: Build R2 Trydnt\n\n83) wil: M R2 Wil B3\n\n84) Trydnt: Move R1 Trydnt Y3\n\n85) wil: M R2 Y3 Y1\n\n86) Trydnt: Build R3 Trydnt\n\n87) wil: A Y2 B3\n\n88) Trydnt: Sacrifice R2 Trydnt\nAttack R2 B3\nAttack Y2 B3\n\n89) wil: A R1 Y3\n\n90) Trydnt: Move R3 Trydnt G33\n\n91) wil: S Y3 G1\nM Y2 G1 Trydnt\nM Y2 G33 Trydnt\nM Y1 G33 Trydnt\nC Trydnt Y\n\n\twil: What have you done with trydnt?\n\twil: Late night play was your.forte...\n\tTrydnt: damn. I think I thought I was banker in this on that last move so didn&#39;t realize that third yellow could get in from the g1. silly mistake\n\tTrydnt: you were pretty ahead though. see you on the next one\n\nHomeworlds Online (SDG# 35046)\nVariants: &quot;Unrated&quot;\nStarted: 2019.3.8, Ended: 2019.4.12\nParticipants: fogus (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 R3\n\tTrydnt: have you played before?\n\n2) fogus: Homeworld B2 R1 G3\n\tTrydnt: I&#39;d recommend &quot;homeworld b2 r1 g3&quot; as your starter. it&#39;s a good one for beginners.\n\n3) Trydnt: Build R1 Trydnt\n\tfogus: I have played, but it&#39;s both been a while and I was also quite confused. :)\n\n4) fogus: Build G1 Fogus\n\tTrydnt: So you essentially need blue and green in the three pieces you start with (2 stars and a ship). This will allow you to grow and then trade for other colors so you don&#39;t get locked out of any color. if your opponent starts building the bigger ships of a certain color and you don&#39;t have any you will struggle to catch up before they get a pretty big material advantage. It&#39;s all about keeping a diverse collection of ships and spreading them in a way you can defend while you keep growing. there are things to watch out for like having too many of a color in one place or building the last of a certain size ship that might open up a larger one for your opponent to grow\n\n5) Trydnt: Trade R1 Y1 Trydnt\n\n6) fogus: Build G1 Fogus\n\n7) Trydnt: Build R1 Trydnt\n\tfogus: So one thing that I&#39;ve found quite confusing is the tactic of shutting people out of certain colors. Therefore, my move is an attempt to try out that path. :)\n\n8) fogus: Trade G1 Y1 Fogus\n\tTrydnt: yes it&#39;s generally good if you can lock your opponent out of a color but it is slightly less effective with green if you opponent moves to green stars\n\n9) Trydnt: Trade R1 G1 Trydnt\n\n10) fogus: Build G2 Fogus\n\n11) Trydnt: Build G2 Trydnt\n\n12) fogus: Discover Y1 Fogus G3 Foo\n\tfogus: Is there a general rule of thumb around achieving the first 2-pip piece? Instinctively it seems like a good thing, but I&#39;m unsure about the deeper implications.\n\n13) Trydnt: Discover G2 Trydnt B2 B2\n\n14) fogus: Trade G3 Y3 Fogus\n\n15) Trydnt: Build R1 Trydnt\n\tDraw5PlayAll: Do not get the first 2 if your opponent gets the first 3...\n\tTrydnt: yeah bigger pieces are better but always be warry of taking the last piece of a certain size when there are larger pieces behind it that you&#39;ll open up for your opponent\n\n16) fogus: Trade G1 B1 Fogus\n\n17) Trydnt: Build R1 Trydnt\n\n18) fogus: Build B1 Fogus\n\tfogus: That last move felt like a flail on my part. I can&#39;t see a way to progress my piece count, but at the same time I want to diversify if possible.\n\n19) Trydnt: Move R1 Trydnt B2\n\n\nHomeworlds Online (SDG# 35057)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.9, Ended: 2019.3.25\nParticipants: Draw5PlayAll (S), deanthebean (N)\nWinner: Draw5PlayAll\n\n1) deanthebean: Homeworld R2 B1 G3\n\tdeanthebean: Hello. Enjoy the game!\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n3) deanthebean: Build G1 Deanthebean\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) deanthebean: Build G1 Deanthebean\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) deanthebean: Trade G1 Y1 Deanthebean\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) deanthebean: Build Y1 Deanthebean\n\n10) Draw5PlayAll: Discover B2 Draw5playall G3 Success\n\n11) deanthebean: Trade G1 R1 Deanthebean\n\n12) Draw5PlayAll: Build B2 Success\n\n13) deanthebean: Build G1 Deanthebean\n\n14) Draw5PlayAll: Trade B2 R2 Success\n\n15) deanthebean: Move G3 Deanthebean Success\n\n16) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R2 Success Deanthebean\nMove B2 Success Deanthebean\nPass\n\n17) deanthebean: Sacrifice Y1 Deanthebean\nMove G3 Success Deanthebean\n\tDraw5PlayAll: This just got weird!!\n\n18) Draw5PlayAll: Attack G1 Deanthebean\n\tdeanthebean: Yes. \n\tDraw5PlayAll: I think this is a draw, but let me see if I can punish your moves.\n\n19) deanthebean: Attack B2 Deanthebean\n\tDraw5PlayAll: I wish I had a large green at home...\n\tdeanthebean: I&#39;m glad you don&#39;t ;)\n\n20) Draw5PlayAll: Attack B2 Deanthebean\n\tdeanthebean: Is there any rule to prevent repetitions here. I couldn&#39;t find one but I can&#39;t find an &quot;offer draw option&quot; either \n\tDraw5PlayAll: As you are contesting my ladder spot, you have the obligation to resign if the game is drawn.\n\n\tdeanthebean: That&#39;s highly annoying and I can&#39;t see a sensible alternative to repeating. \n\tDraw5PlayAll: If you want the rating points, challenge me to a 2-mover and I can resign.\n\tDraw5PlayAll: Or else just ask our developer to make that change for future games.\n\tdeanthebean: Thanks. I&#39;m not that bothered tbh. \n\nHomeworlds Online (SDG# 35065)\nStarted: 2019.3.10, Ended: 2019.7.26\nParticipants: theMadHunter249 (S), The_Unicyclone (N)\nWinner: The_Unicyclone\n\n1) The_Unicyclone: Homeworld G3 B2 Y3\n\n2) theMadHunter249: Homeworld G3 B2 R3\n\n3) The_Unicyclone: Build Y1 The_unicyclone\n\n4) theMadHunter249: Build R1 Themadhunter249\n\n5) The_Unicyclone: Trade Y3 R3 The_unicyclone\n\n6) theMadHunter249: Trade R1 Y1 Themadhunter249\n\n7) The_Unicyclone: Build R1 The_unicyclone\n\tThe_Unicyclone: Ah, the old mirroring trick. Suit up, laser man, because my suit is 100% proof!\n\n8) theMadHunter249: Discover Y1 Themadhunter249 R1 Battleplanet\n\n9) The_Unicyclone: Build Y1 The_unicyclone\n\n10) theMadHunter249: Trade R3 Y3 Themadhunter249\n\n11) The_Unicyclone: Trade Y1 B1 The_unicyclone\n\n12) theMadHunter249: Build Y1 Themadhunter249\n\n13) The_Unicyclone: Discover B1 The_unicyclone G1 Stuffmart\n\n14) theMadHunter249: Build Y2 Themadhunter249\n\n15) The_Unicyclone: Build Y2 The_unicyclone\n\n16) theMadHunter249: Trade Y3 R3 Themadhunter249\n\n17) The_Unicyclone: Trade Y2 B2 The_unicyclone\n\n18) theMadHunter249: Trade Y2 R2 Themadhunter249\n\n19) The_Unicyclone: Build Y2 The_unicyclone\n\n20) theMadHunter249: Move R2 Themadhunter249 Stuffmart\n\n21) The_Unicyclone: Sacrifice Y1 The_unicyclone\nMove B1 Stuffmart The_unicyclone\n\n22) theMadHunter249: Build Y1 Themadhunter249\n\n23) The_Unicyclone: Build Y2 The_unicyclone\n\n24) theMadHunter249: Trade Y1 B1 Themadhunter249\n\n25) The_Unicyclone: Move B2 The_unicyclone Battleplanet\n\n26) theMadHunter249: Move Y1 Battleplanet Themadhunter249\n\n27) The_Unicyclone: Move Y2 The_unicyclone Battleplanet\n\n28) theMadHunter249: Move B1 Themadhunter249 Stuffmart\n\n29) The_Unicyclone: Trade B1 G1 The_unicyclone\n\n30) theMadHunter249: Trade Y1 B1 Themadhunter249\n\n31) The_Unicyclone: Build Y1 The_unicyclone\n\n32) theMadHunter249: Trade B1 Y1 Stuffmart\n\n33) The_Unicyclone: Sacrifice G1 The_unicyclone\nBuild Y2 Battleplanet\n\n34) theMadHunter249: Build Y3 Themadhunter249\n\n35) The_Unicyclone: Sacrifice Y2 The_unicyclone\nMove Y2 Battleplanet Themadhunter249\nMove Y2 Battleplanet Themadhunter249\nCatastrophe Themadhunter249 Yellow\n\n36) theMadHunter249: Trade B1 Y1 Themadhunter249\n\n37) The_Unicyclone: Build Y2 The_unicyclone\n\n\nHomeworlds Online (SDG# 35063)\nStarted: 2019.3.11, Ended: 2019.5.29\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\tts52: This is for the 2018 homeworlds tournament. I thought we might have already played our match, but couldn&#39;t find it in my history. Have a good game!\n\n2) wil: H Y3 B1 G3\n\twil: Thanks, too cool!\n\n3) ts52: Build G1 Ts52\n\n4) wil: B G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: T G1 B1 Wil\n\n7) ts52: Build B2 Ts52\n\n8) wil: B B2 Wil\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) wil: D B1 Wil Y2 Y2\n\n11) ts52: Build B3 Kermit\n\n12) wil: S G3 Wil\nB B3 Wil\nB B3 Y2\nP\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) wil: T B2 G2 Wil\n\n15) ts52: Build B2 Kermit\n\n16) wil: T B3 R3 Y2\n\n17) ts52: Trade B3 R3 Kermit\n\n18) wil: B G1 Wil\n\n19) ts52: Build G1 Ts52\n\n20) wil: T G1 Y1 Wil\n\n21) ts52: Build Y1 Kermit\n\n22) wil: D Y1 Wil G2 G2\n\n23) ts52: Discover Y2 Kermit G2 Robin\n\n24) wil: B G1 Wil\n\n25) ts52: Build R1 Kermit\n\n26) wil: M G2 Wil Y2\n\n27) ts52: Discover B1 Ts52 G3 Oscar\n\n28) wil: B R1 Y2\n\n29) ts52: Trade G1 R1 Ts52\n\n30) wil: D R1 Y2 Y3 Y3\n\n31) ts52: Build G1 Ts52\n\n32) wil: T B3 R3 Wil\n\n33) ts52: Discover G1 Ts52 Y3 Bigbird\n\tDraw5PlayAll: This is still going on?\n\twil: No\n\n34) wil: B R2 Y2\n\n35) ts52: Build Y2 Robin\n\n36) wil: M R2 Y2 Bigbird\n\n37) ts52: Move R3 Kermit Robin\n\n38) wil: B R2 Y2\n\n39) ts52: Build R2 Robin\n\n40) wil: M R2 Y2 Oscar\n\n41) ts52: Build G1 Ts52\n\n42) wil: A B1 Oscar\n\n43) ts52: Move B2 Kermit G2\n\n44) wil: M Y1 G2 Oscar\n\n45) ts52: Move R3 Robin Oscar\n\n46) wil: S Y1 Oscar\nD B1 Oscar Y1 Y1\n\n47) ts52: Attack R2 Oscar\n\n48) wil: A G1 Bigbird\n\n49) ts52: M Y2 Robin Oscar\n\n50) wil: B B2 Y2\n\twil: This is another fine mess you&#39;ve gotten me in\n\n51) ts52: Move R3 Oscar Y1\n\tts52: That does seem to be my specialty. ;)\n\n52) wil: M B1 Y2 Bigbird\n\n53) ts52: Attack B1 Y1\n\n54) wil: S G2 Y2\nB B3 Y2\nB B3 Bigbird\n\n55) ts52: B B3 G2\n\n56) wil: B G2 Bigbird\n\n57) ts52: M Y1 Kermit G2\n\n58) wil: M B3 Y2 Y3\n\n59) ts52: M B1 Y1 Robin\n\n60) wil: M G1 Bigbird Ts52\n\n61) ts52: M G1 Ts52 Oscar\n\n62) wil: S G1 Wil\nB G1 Ts52\n\n63) ts52: Move R3 Y1 Oscar\n\n64) wil: M G2 Bigbird Ts52\nC Ts52 G\n\n65) ts52: Move R3 Oscar Ts52\n\twil: U got this\n\n66) wil: T B3 G3 Bigbird\n\n67) ts52: Trade R1 G1 Ts52\n\tts52: It&#39;s not over till it&#39;s over, but yikes...\n\n68) wil: B B3 Bigbird\n\n69) ts52: Build Y1 Robin\n\n70) wil: M G3 Bigbird Robin\n\n71) ts52: Move R2 Robin Oscar\n\n72) wil: S R2 Bigbird\nA Y2 Robin\nA B1 Robin\n\n73) ts52: Move Y1 Robin Kermit\n\n74) wil: T B1 G1 Bigbird\n\n75) ts52: Build G2 Ts52\n\n76) wil: S G3 Robin\nB G3 Bigbird\nB R1 Y3\nB R2 Y2\n\n77) ts52: Move R2 Oscar G2\n\n78) wil: M G3 Bigbird Y2\n\n79) ts52: Move B3 G2 Kermit\n\n80) wil: M R3 Y2 Oscar\n\n81) ts52: Move R2 Oscar G2\n\n82) wil: A Y2 Oscar\n\n83) ts52: Move B3 Kermit Robin\n\n84) wil: M Y2 Robin Kermit\n\n85) ts52: Sacrifice Y1 Kermit\nMove B3 Robin Kermit\n\n86) wil: M Y2 Kermit Robin\n\n87) ts52: Build Y1 G2\n\n88) wil: A G1 Oscar\n\n89) ts52: Move Y1 G2 Kermit\n\n90) wil: B B1 Bigbird\n\n91) ts52: Move B3 Kermit Robin\n\n92) wil: M G3 Y2 Wil\n\n93) ts52: Sacrifice R2 G2\nAttack Y2 Robin\nAttack B1 Robin\n\tts52: sorry for the delay\n\n94) wil: B R2 Oscar\n\n95) ts52: Move B3 Robin Kermit\n\n96) wil: M B2 Y2 Oscar\n\n97) ts52: Move B3 Kermit Y2\n\n98) wil: M R1 Y3 Ts52\n\n99) ts52: A R1 Ts52\n\n100) wil: S Y2 Oscar\nM R2 Oscar Ts52\nM R1 Y3 Ts52\nC Ts52 R\n\n101) ts52: Sacrifice R1 Kermit\nAttack R2 Y2\n\n102) wil: M B3 Bigbird Ts52\n\n103) ts52: Sacrifice Y2 Robin\nMove B3 Y2 Kermit\nMove B3 Kermit Ts52\n\tts52: I don&#39;t think there&#39;s anything I can really do at this point. Well played!\n\twil: I was hoping not!  Good game\n\n104) wil: S R3 Wil\nA B3 Ts52\nA G2 Ts52\nA G1 Ts52\n\n\twil: Gg\n\nHomeworlds Online (SDG# 35066)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.11, Ended: 2019.3.18\nParticipants: wil (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) wil: H Y2 B1 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) wil: B G1 Wil\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) wil: T G1 B1 Wil\n\n7) goulo: Build Y1 Goulo\n\n8) wil: B B1 Wil\n\n9) goulo: Discover Y1 Goulo Y1 Flaveto\n\n10) wil: D B1 Wil Y3 Y3\n\n11) goulo: Build Y2 Goulo\n\n12) wil: B G1 Wil\n\n13) goulo: Trade Y2 B2 Goulo\n\n14) wil: T G1 R1 Wil\n\n15) goulo: Build Y2 Goulo\n\n16) wil: B G1 Wil\n\n17) goulo: Build G1 Goulo\n\n18) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n19) goulo: Move B2 Goulo Flaveto\n\n20) wil: S B2 Y3\nT B3 Y3 Y3\nT B3 G3 Wil\n\n21) goulo: Trade G1 R1 Goulo\n\n22) wil: D Y3 Y3 G1 G1\n\n23) goulo: Move B2 Flaveto Y3\n\n24) wil: D B1 Y3 Y2 Y2\n\n25) goulo: Build G1 Goulo\n\n26) wil: B Y3 G1\n\n27) goulo: Discover Y1 Flaveto G3 Verdego\n\n28) wil: M B1 Y2 G1\n\n29) goulo: Sacrifice Y2 Goulo\nMove Y1 Goulo G1\nMove Y1 Verdego G1\nCatastrophe G1 Y\n\n30) wil: B G2 Wil\n\n31) goulo: Build G2 Goulo\n\n32) wil: D G2 Wil G3 G3\n\n33) goulo: Trade G1 Y1 Goulo\n\n34) wil: T G1 Y1 Wil\n\n35) goulo: Discover G2 Goulo Y1 Flaveto\n\n36) wil: M Y1 Wil G3\n\n37) goulo: Build Y2 Goulo\n\n38) wil: M B1 Wil G3\n\n39) goulo: Build G1 Flaveto\n\n40) wil: D Y1 G3 B2 B2\n\n41) goulo: Sacrifice Y2 Goulo\nMove G1 Flaveto G3\nMove G2 Flaveto G3\nCatastrophe G3 G\n\n42) wil: B G1 Wil\n\n43) goulo: Build G1 Goulo\n\n44) wil: T G1 B1 Wil\n\n45) goulo: Sacrifice G1 Goulo\nBuild B3 Y3\n\n46) wil: B B3 G1\n\n47) goulo: Move B3 Y3 Wil\n\n48) wil: A B3 Wil\n\n49) goulo: Move B2 Y3 Wil\nCatastrophe Wil B\n\n50) wil: T B3 Y3 G1\n\n51) goulo: Build G1 Goulo\n\n52) wil: B Y1 G1\n\n53) goulo: Build Y2 Goulo\n\n54) wil: D Y1 G1 G2 G2\n\n55) goulo: Discover Y1 Goulo G1 Verdeto\n\n56) wil: B Y2 G1\n\n57) goulo: Build Y3 Verdeto\n\n58) wil: S Y2 G1\nM Y1 B2 Verdeto\nM Y1 G2 Verdeto\nC Verdeto Y\n\n59) goulo: Build Y1 Goulo\n\n60) wil: B Y1 G1\n\n61) goulo: Discover Y1 Goulo G1 Verdeto\n\n62) wil: D Y1 G1 Y2 Y2\n\twil: I think I blew that and lost a step\n\n63) goulo: Sacrifice G3 Goulo\nBuild Y1 Verdeto\nBuild Y3 Goulo\nBuild G2 Goulo\n\n64) wil: B Y3 G1\n\n65) goulo: Sacrifice Y3 Goulo\nDiscover Y2 Goulo B1 Blueto\nMove Y2 Blueto Wil\nMove Y1 Verdeto Wil\n\n66) wil: S Y3 G1\nM Y1 Y2 G1\nM Y1 G1 Wil\nM Y3 G1 Wil\nC Wil Y\n\twil: This is the end...\n\n\tgoulo: almost there! :)\n\twil: Gg\n\tgoulo: thanks, gg indeed!\n\nHomeworlds Online (SDG# 34904)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.13, Ended: 2019.4.21\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Build R1 Trydnt\n\tdlwillson: TY GL HF!\n\n8) dlwillson: B Y1 Dlwillson\n\n9) Trydnt: Build R2 Trydnt\n\n10) dlwillson: B Y2 Dlwillson\n\n11) Trydnt: Discover R1 Trydnt Y3 Y3\n\n12) dlwillson: D Y1 Dlwillson B2 Sea\n\n13) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R2 Y3\nBuild R3 Trydnt\n\n14) dlwillson: Discover Y1 Dlwillson Y2 Sol\n\n15) Trydnt: Move R2 Y3 Sol\n\n16) dlwillson: S G3 Dlwillson\nB Y2 Sol\nB Y3 Sea\nB Y3 Dlwillson\n\n17) Trydnt: Trade R3 G3 Trydnt\n\n18) dlwillson: D Y2 Sol R3 Mars\n\n19) Trydnt: Build R3 Trydnt\n\n20) dlwillson: T Y3 R3 Sea\n\n21) Trydnt: Discover R3 Trydnt Y3 Y33\n\n22) dlwillson: D Y1 Sol B3 Sky\n\n23) Trydnt: Move R2 Sol Sky\n\n24) dlwillson: T Y3 G3 Dlwillson\n\n25) Trydnt: Attack Y1 Sky\n\n26) dlwillson: Build G1 Dlwillson\n\n27) Trydnt: Build G1 Trydnt\n\n28) dlwillson: M G1 Dlwillson Sea\n\n29) Trydnt: Move G1 Trydnt Y33\n\n30) dlwillson: B G1 Dlwillson\n\n31) Trydnt: Build G2 Trydnt\n\n32) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sea\nBuild G2 Sea\nBuild Y3 Dlwillson\n\n33) Trydnt: Trade R2 B2 Trydnt\n\n34) dlwillson: D Y2 Dlwillson G2 Field\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Y33\nBuild R2 Sky\n\n36) dlwillson: B G3 Dlwillson\n\n37) Trydnt: Move R3 Y33 Field\n\n38) dlwillson: D Y2 Field B3 Bluesky\n\n39) Trydnt: Move G2 Trydnt Sky\n\n40) dlwillson: Sacrifice Y2 Sea\nMove G1 Sea Y33\nMove G2 Sea Y33\nCatastrophe Y33 G\n\n41) Trydnt: Sacrifice B2 Trydnt\nTrade R3 Y3 Field\nTrade R2 B2 Sky\n\n42) dlwillson: Build Y2 Dlwillson\n\n43) Trydnt: Move R2 Sky Field\n\n\tdlwillson: Ooops! Well, a win by brain meltdown is still a win.  Congrats, and I&#39;m sorry for timing out on you! \n\tTrydnt: good game not sure where it was going haha\n\nHomeworlds Online (SDG# 35060)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.13, Ended: 2019.5.11\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H B2 Y1 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) wil: B G1 Wil\n\tdlwillson: TYGLHF!\n\twil: Translation?\n\n4) dlwillson: B G1 Dlwillson\n\n5) wil: T G1 R1 Wil\n\n6) dlwillson: T G1 Y1 Dlwillson\n\tdlwillson: Thank you! Good luck! Have fun!\n\tdlwillson: Why did you page an admin?\n\n7) wil: B R1 Wil\n\twil: Idk, on admin, and I should have been able to figure that out.\n\n8) dlwillson: B Y1 Dlwillson\n\n9) wil: B R2 Wil\n\n10) dlwillson: Build Y2 Dlwillson\n\n11) wil: D R1 Wil Y3 Y3\n\n12) dlwillson: D Y1 Dlwillson G2 Field\n\n13) wil: D R2 Wil Y3 Why3\n\n14) dlwillson: T Y2 R2 Dlwillson\n\n15) wil: B G1 Wil\n\n16) dlwillson: M R2 Dlwillson Field\n\n17) wil: S G3 Wil\nB R2 Y3\nB R3 Wil\nB R3 Wil\n\n18) dlwillson: B R3 Field\n\n19) wil: T R3 Y3 Wil\n\n20) dlwillson: Move R3 Field Why3\n\n21) wil: S G1 Wil\nB R3 Why3\n\n22) dlwillson: A R3 Why3\n\n23) wil: M R1 Wil Why3\nC Why3 R\n\n24) dlwillson: B Y2 Field\n\n25) wil: T R3 G3 Wil\n\n26) dlwillson: B G1 Dlwillson\n\n27) wil: D Y3 Wil G3 G3\n\n28) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Dlwillson\nB Y3 Dlwillson\n\n29) wil: D Y3 G3 G2 G2\n\n30) dlwillson: D Y2 Dlwillson B2 Sea\n\n31) wil: B G1 Wil\n\n32) dlwillson: D Y2 Field B3 Sky\n\n33) wil: T G1 B1 Wil\n\n34) dlwillson: T Y2 G2 Sea\n\n35) wil: D R1 Y3 Y2 Y2\n\n36) dlwillson: B G1 Sea\n\n37) wil: B B1 Wil\n\n38) dlwillson: T Y3 G3 Dlwillson\n\n39) wil: B Y3 G2\n\n40) dlwillson: Sacrifice Y2 Field\nMove Y2 Sky G2\nMove Y1 Dlwillson G2\nCatastrophe G2 Y\n\n41) wil: M B1 Wil Y3\n\n42) dlwillson: T G1 Y1 Sea\n\n43) wil: B G1 Wil\n\n44) dlwillson: B Y2 Sea\n\n45) wil: T R2 Y2 Y3\n\n46) dlwillson: B Y3 Field\n\n47) wil: D G1 Wil Y3 Why3\n\n48) dlwillson: T Y2 G2 Sea\n\n49) wil: B B1 Wil\n\n50) dlwillson: D G2 Sea B3 Sky\n\n51) wil: D B1 Wil G3 G3\n\n52) dlwillson: M Y3 Field G3\n\n53) wil: B G1 Wil\n\n54) dlwillson: M G2 Sea Y3\n\n55) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB G3 Wil\n\n56) dlwillson: Move G2 Y3 Y2\n\n57) wil: S Y2 Y3\nD B1 G3 Y2 Why2\nM R1 Y2 Y3\n\n58) dlwillson: S G3 Dlwillson\nB R1 Field\nB Y2 G3\nB G3 Dlwillson\n\n59) wil: T B3 R3 Y3\n\n60) dlwillson: M G2 Y2 Why3\n\n61) wil: M R3 Y3 Why2\n\n62) dlwillson: Sacrifice Y1 Sea\nMove G2 Sky Wil\n\n63) wil: S G3 Wil\nB G3 Why3\nB B2 Why2\nB B3 Wil\n\n64) dlwillson: Sacrifice G1 Dlwillson\nBuild G1 Why3\nCatastrophe Why3 G\n\n65) wil: S R1 Y3\nA G2 Wil\n\twil: Challenging moves need challenging responses\n\twil: Hence I tremble\n\n66) dlwillson: Move Y2 G3 Wil\n\n67) wil: S G2 Wil\nB B3 Why2\nB R1 Why2\n\tdlwillson: Well, that attack didn&#39;t work out at all.\n\n68) dlwillson: Sacrifice R1 Field\nAttack G1 Wil\n\twil: Still don&#39;t like it at all.\n\n69) wil: S R1 Why2\nA G1 Wil\n\n70) dlwillson: B R1 Field\n\n71) wil: S B2 Y3\nT B3 R3 Wil\nT B3 G3 Why2\n\n72) dlwillson: D Y2 Wil B3 Sky\n\tdlwillson: sorry for the delay\n\n73) wil: M G3 Why2 Sky\n\twil: No worries\n\n74) dlwillson: B G1 Dlwillson\n\n75) wil: B R1 Wil\n\n76) dlwillson: T Y2 B2 Sky\n\twil: Was it my cooking?\n\n77) wil: S G1 Wil\nB B3 Y3\n\n78) dlwillson: S B2 Sky\nT R2 B2 Field\nT G1 Y1 Dlwillson\n\n79) wil: S B2 Why2\nT G3 Y3 Sky\nT R3 G3 Wil\n\n80) dlwillson: B Y2 G3\n\n81) wil: B R2 Wil\n\n82) dlwillson:\nB B2 Field\n\n83) wil: B R2 Wil\n\n84) dlwillson: Build R2 Field\n\n85) wil: T R2 Y2 Wil\n\n86) dlwillson: M Y3 G3 Wil\n\n87) wil: A Y3 Wil\n\n88) dlwillson: M Y2 G3 Wil\nC Wil Y\n\n89) wil: S G3 Wil\nB R2 Why2\nB R3 Why2\nB R3 Wil\n\n90) dlwillson: Discover R1 Field Y1 Sol\n\n91) wil: S Y3 Sky\nM R2 Why2 Dlwillson\nM R1 Wil Dlwillson\nM R2 Wil Dlwillson\nC Dlwillson R\n\n92) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Field\nB Y3 Dlwillson\n\tdlwillson: Auto-correct...\n\n93) wil: T B1 G1 Wil\n\n94) dlwillson: S B2 Field\nT R1 B1 Sol\nT Y3 B3 Dlwillson\n\n95) wil: M B3 Y3 Field\n\n96) dlwillson: S Y2 Field\nM R2 Field Dlwillson\nD B2 Field Y3 Golden\n\n97) wil: M R3 Why2 Golden\n\n98) dlwillson: S Y2 Field\nM B3 Dlwillson Wil\nM B2 Golden Wil\n\tdlwillson: Wow!\n\twil: Wow back atcha!  It was quite the move,.maybe just not quite enough\n\twil: Wow back atcha!  It was quite the move,.maybe just not quite enough\n\n99) wil: M B1 Y3 Wil\nC Wil B\n\n\tdlwillson: Good game, Wil\n\twil: Mistakes were made!\n\nHomeworlds Online (SDG# 35091)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.22, Ended: 2019.6.18\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: T G1 B1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: B B2 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: T B2 G2 Wil\n\n10) ts52: Build B2 Ts52\n\n11) wil: B B2 Wil\n\n12) ts52: Discover B2 Ts52 G1 Robin\n\n13) wil: D B2 Wil Y3 Y3\n\n14) ts52: Build B3 Robin\n\n15) wil: S G2 Wil\nB B3 Y3\nB B3 Y3\n\n16) ts52: Trade B2 Y2 Robin\n\n17) wil: T B3 R3 Y3\n\n18) ts52: Trade B3 R3 Robin\n\n19) wil: T B3 Y3 Y3\n\n20) ts52: Move B1 Ts52 Robin\n\n21) wil: B G1 Wil\n\n22) ts52: B R1 Robin\n\n23) wil: B G2 Wil\n\n24) ts52: Discover G1 Ts52 Y1 Bigbird\n\n25) wil: M G2 Wil Y3\n\n26) ts52: Build G2 Ts52\n\n27) wil: T G1 R1 Wil\n\n28) ts52: T G2 R2 Ts52\n\n29) wil: M R3 Y3 Bigbird\n\n30) ts52: D G1 Bigbird B3 Gonzo\n\n31) wil: M R3 Bigbird Gonzo\n\n32) ts52: B Y1 Robin\n\n33) wil: A G1 Gonzo\n\n34) ts52: B Y1 Robin\n\n35) wil: D B2 Y3 G1 G1\n\n36) ts52: Build G2 Ts52\n\n37) wil: D B1 Wil G3 G3\n\n38) ts52: Move R3 Robin G3\n\n39) wil: M Y3 Y3 G1\n\n40) ts52: Attack B1 G3\n\n41) wil: B Y1 G1\n\n42) ts52: Move Y1 Robin G3\n\n43) wil: B G2 Wil\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 G3\nBuild B3 Robin\n\n45) wil: B B3 G1\n\n46) ts52: Build Y2 G3\n\n47) wil: D Y3 G1 R3 R3\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 G3\nBuild R2 Robin\n\n49) wil: S G2 Y3\nB R2 Wil\nB Y3 G1\n\n50) ts52: Move B1 G3 G1\n\n51) wil: M B3 G1 R3\n\n52) ts52: Discover R1 Robin G2 Oscar\n\n53) wil: M B3 R3 Oscar\n\n54) ts52: Sacrifice R1 Oscar\nAttack Y1N G1\n\n55) wil: S R2 Wil\nA B1 G1\nA Y1 G1\n\n56) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Ts52\nBuild R2 Robin\n\n57) wil: P\n\n58) ts52: Move B1 Robin G3\n\n59) wil: M G2 Wil R3\n\n60) ts52: Sacrifice Y2 Robin\nMove Y1 G3 G1\nMove Y2 G3 G1\nCatastrophe G1 Yellow\n\n61) wil: T B3 Y3 Oscar\n\n62) ts52: Build B3 Robin\n\n63) wil: S G2 R3\nB Y1 Oscar\nB G2 Wil\n\n64) ts52: Trade B2 Y2 G3\n\n65) wil: T B2 Y2 G1\n\n66) ts52: Move R3 G3 G1\n\n67) wil: M Y2 G1 Gonzo\n\n68) ts52: Attack B1 G1\n\n69) wil: T G2 B2 Wil\n\n70) ts52: B B2 G3\n\n71) wil: B G2 Gonzo\n\n72) ts52: Sacrifice Y2 G3\nMove B1 G3 Wil\nMove B2 G3 Wil\nCatastrophe Wil B\n\n73) wil: D G2 Gonzo Y1 Y1\n\n74) ts52: Discover G2 Ts52 B1 Grover\n\n75) wil: B Y2 Gonzo\n\n76) ts52: Move B3 Robin G3\n\n77) wil: M Y3 Oscar Grover\n\n78) ts52: Move R2 Robin Oscar\n\n79) wil: M Y1 Oscar R3\n\n80) ts52: Build B1 G1\n\n81) wil: S R1 Wil\nA G2 Grover\n\n82) ts52: Build R1 G3\n\n83) wil: M G1 Gonzo Grover\n\n84) ts52: Move Y1 Robin G3\n\n85) wil: S G2 Y1\nB Y1 Grover\nB G2 Grover\n\n86) ts52: Move Y1 G3 Robin\n\n87) wil: M G2 Grover Ts52\n\n88) ts52: Attack G2 Ts52\n\n89) wil: S Y3 R3\nM Y3 Grover Ts52\nM G2 Grover Ts52\nM G1 Grover Ts52\nC Ts52 G\n\n90) ts52: Move B3 Robin Ts52\n\n91) wil: S R3 Gonzo\nA B3 Ts52\nA R2 Ts52\nA R1 Ts52\n\n\tts52: Good game. Well played.\n\twil: Gg!\n\nHomeworlds Online (SDG# 35093)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.26, Ended: 2019.5.14\nParticipants: goulo (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\tdlwillson: You too!\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) goulo: Trade G1 B1 Goulo\n\n7) dlwillson: B B2 Dlwillson\n\n8) goulo: Build B2 Goulo\n\n9) dlwillson: Discover B1 Dlwillson G2 Field\n\n10) goulo: Trade B1 Y1 Goulo\n\n11) dlwillson: B G1 Dlwillson\n\n12) goulo: Build G1 Goulo\n\n13) dlwillson: T G1 Y1 Dlwillson\n\n14) goulo: Trade G1 R1 Goulo\n\n15) dlwillson: B G1 Dlwillson\n\n16) goulo: Build G1 Goulo\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild B1 Field\nBuild B3 Field\nBuild B3 Dlwillson\n\n18) goulo: Build B3 Goulo\n\n19) dlwillson: Trade B1 R1 Field\n\tDraw5PlayAll: I am rooting for Goulo.\n\n20) goulo: Discover B3 Goulo Y1 Flaveto\n\n21) dlwillson: B Y2 Dlwillson\n\tgoulo: heh, thanks, Draw5PlayAll :)\n\n22) goulo: Build Y2 Goulo\n\n23) dlwillson: T B2 R2 Dlwillson\n\tdlwillson: Hey! I want someone to cheer for me, too!\n\n24) goulo: Discover Y1 Goulo G1 Verdeto\n\tgoulo: I&#39;m rooting for you, dlwillson! :)\n\n25) dlwillson: M Y1 Dlwillson Field\n\n26) goulo: Discover Y1 Verdeto G2 Verdo\n\tdlwillson: Thanks Goulo! :-)\n\n27) dlwillson: Move Y2 Dlwillson Verdo\n\n28) goulo: Discover Y1 Verdo B1 Blueto\n\tdlwillson: sorry for the delay\n\n29) dlwillson: T B3 Y3 Field\n\n30) goulo: Move B3 Flaveto Verdo\n\n31) dlwillson: M Y2 Verdo Blueto\n\n32) goulo: Move Y1 Blueto Verdo\n\n33) dlwillson: B B2 Field\n\n34) goulo: Build B3 Verdo\n\n35) dlwillson: S B2 Field\nT B3 G3 Dlwillson\nT Y2 G2 Blueto\n\n36) goulo: Discover G1 Goulo Y1 Flaveto\n\tdlwillson: My last move was brainless, like I&#39;ve never played! No more mixing Homeworlds and beer!\n\tgoulo: heh :)\n\n37) dlwillson: S G3 Dlwillson\nB G1 Blueto\nB G3 Blueto\nB G3 Dlwillson\n\n38) goulo: Sacrifice Y2 Goulo\nMove G1 Flaveto Verdo\nMove G1 Verdo Blueto\nCatastrophe Blueto G\n\n39) dlwillson: B B1 Field\n\n40) goulo: Trade B2 Y2 Goulo\n\n41) dlwillson: Discover B1 Field G1 Forest\n\tDraw5PlayAll: Would you two mind dragging this out a bit? I just got challenged but I want to play the winner when this is over. :P\n\n42) goulo: Move B3 Verdo Forest\n\n43) dlwillson: B B2 Field\n\tdlwillson: Uh... I hate slow games!  I&#39;ve just been incredibly distracted for the last several weeks.  I&#39;ve even toned out on a few games. :-(\n\n44) goulo: Build Y1 Verdo\n\n45) dlwillson: S Y3 Field\nM B1 Forest Goulo\nM B1 Field Forest\nM B1 Forest Goulo\n\n46) goulo: Attack B1 Goulo\n\n47) dlwillson: S G1 Dlwillson\nB B2 Goulo\nC Goulo B\n\n48) goulo: Sacrifice Y1 Verdo\nMove B3 Forest Field\n\n49) dlwillson: D R1 Field R1 Mars\n\n50) goulo: Sacrifice R1 Goulo\nAttack Y1 Field\n\n51) dlwillson: T B2 Y2 Field\n\n52) goulo: Trade B3 R3 Field\n\n53) dlwillson: D Y2 Field R1 Alsomars\n\n54) goulo: Move Y2 Goulo Mars\n\n55) dlwillson: B R2 Dlwillson\n\n56) goulo: Attack R1 Mars\n\n57) dlwillson: D R2 Dlwillson Y2 Sol\n\n58) goulo: Build R2 Field\n\n59) dlwillson: B R3 Dlwillson\n\n60) goulo: Move R3 Field Dlwillson\n\n61) dlwillson: S R2 Dlwillson\nA R3 Dlwillson\nPass\n\n62) goulo: Build R2 Field\n\tgoulo: ah, good one. I didn&#39;t think of that. :/\n\n63) dlwillson: D R3 Dlwillson B2 Sea\n\n64) goulo: Build B1 Verdo\n\n65) dlwillson: D R3 Dlwillson B2 Alsosea\n\n\tgoulo: congrats! I see no hope for me now other than delaying the inevitable...\n\tdlwillson: Thanks for an excellent game! \n\nHomeworlds Online (SDG# 35095)\nVariants: &quot;Hard time&quot;\nStarted: 2019.3.27, Ended: 2019.4.27\nParticipants: deanthebean (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 Y2 G3\n\n2) deanthebean: Homeworld G1 B2 Y3\n\tdeanthebean: Hello. Thanks for accepting the challenge. Have fun!\n\n3) ajo: Build G1 Ajo\n\n4) deanthebean: Build Y1 Deanthebean\n\tajo: You too!\n\n5) ajo: Build G1 Ajo\n\n6) deanthebean: Build Y1 Deanthebean\n\n7) ajo: Discover G1 Ajo B1 Alpha\n\n8) deanthebean: Discover Y1 Deanthebean G3 Beta\n\n9) ajo: Build G2 Alpha\n\n10) deanthebean: Trade Y3 G3 Deanthebean\n\n11) ajo: Trade G1 R1 Alpha\n\n12) deanthebean: Build Y1 Beta\n\n13) ajo: Build G1 Alpha\n\n14) deanthebean: Build G2 Deanthebean\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) deanthebean: Trade G2 R2 Deanthebean\n\n17) ajo: Build G2 Ajo\n\n18) deanthebean: Discover G3 Deanthebean Y3 Gamma\n\n19) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n20) deanthebean: Build Y2 Beta\n\n21) ajo: Trade G2 R2 Ajo\n\n22) deanthebean: Build G2 Gamma\n\n23) ajo: Sacrifice G1 Alpha\nBuild Y3 Alpha\n\n24) deanthebean: Build Y3 Deanthebean\n\tdeanthebean: build y3 deanthebean\n\n25) ajo: Move Y2 Alpha Beta\nCatastrophe Beta Yellow\n\n26) deanthebean: Build R1 Deanthebean\n\n27) ajo: Discover G2 Alpha B3 Beta\n\n28) deanthebean: Discover R2 Deanthebean G3 Delta\n\n29) ajo: Sacrifice G3 Ajo\nBuild G1 Beta\nBuild G3 Ajo\nBuild Y1 Alpha\n\n30) deanthebean: Trade Y1 B1 Deanthebean\n\n31) ajo: Trade G1 Y1 Beta\n\n32) deanthebean: Build R1 Delta\n\n33) ajo: Sacrifice G3 Ajo\nBuild G1 Beta\nBuild Y1 Beta\nBuild G3 Ajo\n\n34) deanthebean: Sacrifice G3 Gamma\nBuild G3 Gamma\nBuild Y2 Deanthebean\nBuild B1 Deanthebean\n\n35) ajo: Sacrifice Y3 Alpha\nMove Y1 Beta Deanthebean\nMove Y1 Beta Deanthebean\nMove G1 Beta Deanthebean\nCatastrophe Deanthebean Yellow\n\n36) deanthebean: Attack G1 Deanthebean\n\n37) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild R2 Ajo\nBuild R3 Alpha\n\n38) deanthebean: Trade B1 Y1 Deanthebean\n\n39) ajo: Sacrifice Y1 Alpha\nMove G2 Beta Deanthebean\n\n40) deanthebean: Sacrifice G3 Gamma\nBuild R3 Deanthebean\nBuild R3 Delta\nBuild G3 Gamma\n\n41) ajo: Sacrifice G1 Ajo\nBuild G1 Deanthebean\nCatastrophe Deanthebean Green\n\n42) deanthebean: Move B1 Deanthebean Delta\n\n43) ajo: Trade R2 Y2 Ajo\n\n44) deanthebean: Trade R1 Y1 Delta\n\n45) ajo: Build Y1 Ajo\n\n46) deanthebean: Build Y2 Delta\n\n47) ajo: Move Y2 Ajo Alpha\n\n48) deanthebean: Discover Y1 Delta G1 Epsilon\n\n49) ajo: Build Y3 Alpha\n\n50) deanthebean: Build Y3 Epsilon\n\n51) ajo: Discover Y3 Alpha B3 Beta\n\n52) deanthebean: Move Y3 Epsilon Ajo\n\n53) ajo: Attack Y3 Ajo\n\n54) deanthebean: Move Y1 Epsilon Ajo\nCatastrophe Ajo Y\n\n55) ajo: Trade R3 B3 Alpha\n\tajo: Oh interesting. I didn&#39;t think we were doing this yet. :)\n\n56) deanthebean: Build B1 Delta\n\n57) ajo: Sacrifice Y3 Beta\nMove R1 Alpha Deanthebean\nMove R2 Ajo Deanthebean\nMove B3 Alpha Deanthebean\nCatastrophe Deanthebean Red\n\n\tdeanthebean: Well played!\n\nHomeworlds Online (SDG# 35069)\nStarted: 2019.3.29, Ended: 2019.3.29\nParticipants: shog456 (S), ts52 (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 35019)\nVariants: &quot;Unrated&quot;\nStarted: 2019.3.29, Ended: 2019.3.29\nParticipants: shog456 (S), Trydnt (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35074)\nVariants: &quot;Hard time&quot;\nStarted: 2019.4.1, Ended: 2019.4.25\nParticipants: dlwillson (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld G3 B2 R3\n\n2) dlwillson: H Y1 B3 G3\n\n3) Uglyfoot: Build R1 Uglyfoot\n\tdlwillson: Thanks for accepting my challenge!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Uglyfoot: Trade R1 G1 Uglyfoot\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) dlwillson: B Y1 Dlwillson\n\n9) Uglyfoot: T R3 Y3 Uglyfoot\n\n10) dlwillson: Discover Y1 Dlwillson Y2 Sol\n\n11) Uglyfoot: Build Y2 Uglyfoot\n\n12) dlwillson: Build Y2 Dlwillson\n\n13) Uglyfoot: Sacrifice Y3 Uglyfoot\nDiscover Y2 Uglyfoot R1 Flash\nMove Y2 Flash Sol\nMove Y2 Sol Dlwillson\nCatastrophe Dlwillson Y\n\n14) dlwillson: Build G1 Dlwillson\n\n15) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n16) dlwillson: Trade G3 R3 Dlwillson\n\n17) Uglyfoot: Discover G1 Uglyfoot R1 Skeet\n\n18) dlwillson: Build R1 Dlwillson\n\n19) Uglyfoot: Build Y1 Uglyfoot\n\n20) dlwillson: S Y1 Sol\nD R1 Dlwillson R1 Mars\n\n21) Uglyfoot: Move Y1 Uglyfoot Skeet\n\n22) dlwillson: Build R2 Dlwillson\n\n23) Uglyfoot: Build Y1 Skeet\n\tdlwillson: sorry for the delay\n\n24) dlwillson: T R2 Y2 Dlwillson\n\tUglyfoot: No worries.  I figured that you were planning.\n\n25) Uglyfoot: Build Y2 Uglyfoot\n\n26) dlwillson: S Y2 Dlwillson\nM R3 Dlwillson Mars\nM R3 Mars Uglyfoot\n\n27) Uglyfoot: Build Y2 Uglyfoot\n\n\tUglyfoot: I see that you win.  Would you care if I resigned?\n\tdlwillson: Sorry for timing out on you. \n\nHomeworlds Online (SDG# 35073)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.4.4, Ended: 2019.4.30\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) Trydnt: Build R1 Trydnt\n\n9) dlwillson: Build Y1 Dlwillson\n\n10) Trydnt: Build R2 Trydnt\n\n11) dlwillson: Discover Y1 Dlwillson B2 Sea\n\n12) Trydnt: Discover R2 Trydnt B1 B1\n\n13) dlwillson: B Y2 Dlwillson\n\n14) Trydnt: Sacrifice G3 Trydnt\nBuild R2 B1\nBuild R2 B1\nBuild R3 Trydnt\n\n15) dlwillson: D Y1 Dlwillson Y2 Sol\n\n16) Trydnt: Discover R1 Trydnt G1 G1\n\n17) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB Y3 Sea\nB Y3 Dlwillson\n\n18) Trydnt: Trade R3 G3 Trydnt\n\n19) dlwillson: T Y3 G3 Dlwillson\n\n20) Trydnt: Build G1 Trydnt\n\n21) dlwillson: T Y3 R3 Sea\n\n22) Trydnt: Trade G3 Y3 Trydnt\n\n23) dlwillson: S Y2 Dlwillson\nM R3 Sea B1\nC B1 R\nD Y1 Sea B1 Sky\n\n24) Trydnt: Build R2 Trydnt\n\n25) dlwillson: M Y1 Sky Trydnt\n\n26) Trydnt: Move Y3 Trydnt G1\n\n\nHomeworlds Online (SDG# 35094)\nStarted: 2019.4.4, Ended: 2019.4.16\nParticipants: Trydnt (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld G1 B3 Y3\n\n2) Trydnt: Homeworld B2 G1 G3 *\n\n3) dragon76n: Build Y1 Dragon76n\n\tTrydnt: let&#39;s try something weird\n\n4) Trydnt: Build G1 Trydnt\n\tdragon76n: Well... you do have a good track record of beating me... \n\n5) dragon76n: Trade Y3 G3 Dragon76n\n\tTrydnt: i feel like if this has a name it&#39;s called the green freeze-out\n\tTrydnt: green instafreeze?\n\n6) Trydnt: Build G2 Trydnt\n\n7) dragon76n: C Trydnt G\nB Y1 Dragon76n\n\tdragon76n: Accidental suicide?\n\tTrydnt: oops\n\n\nHomeworlds Online (SDG# 35108)\nVariants: &quot;Hard time&quot;\nStarted: 2019.4.4, Ended: 2019.4.16\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Trydnt: Homeworld G3 B2 R3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build R1 Trydnt\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Trydnt: Build R2 Trydnt\n\n7) dlwillson: Build G1 Dlwillson\n\n8) Trydnt: Trade R2 Y2 Trydnt\n\n9) dlwillson: Build R2 Dlwillson\n\n10) Trydnt: Build R2 Trydnt\n\n11) dlwillson: T G1 Y1 Dlwillson\n\n\tTrydnt: sorry about that had some technical difficulties :S\n\nHomeworlds Online (SDG# 35098)\nStarted: 2019.4.4, Ended: 2019.6.6\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B2 G2 Y3 *\n\tts52: Have a good game!\n\tTrydnt: you too!\n\n3) ts52: B G1 Ts52\n\n4) Trydnt: Build Y1 Trydnt\n\n5) ts52: Build G1 Ts52\n\n6) Trydnt: Build Y1 Trydnt\n\n7) ts52: Discover G1 Ts52 B3 Gonzo\n\n8) Trydnt: Trade Y3 R3 Trydnt\n\n9) ts52: B G1 Ts52\n\n10) Trydnt: Build Y2 Trydnt\n\n11) ts52: B G2 Gonzo\n\n12) Trydnt: Move R3 Trydnt Gonzo\n\n13) ts52: Trade G3 R3 Ts52\n\n14) Trydnt: Attack G2 Gonzo\n\n15) ts52: Build R1 Ts52\n\n16) Trydnt: Attack G1 Gonzo\n\n17) ts52: Discover G1 Ts52 B3 Grover\n\n18) Trydnt: Build R1 Gonzo\n\n19) ts52: Move R1 Ts52 Grover\n\n20) Trydnt: Move Y1 Trydnt Gonzo\n\n21) ts52: Build G2 Ts52\n\n22) Trydnt: Sacrifice G2 Gonzo\nBuild Y2 Gonzo\nBuild Y2 Gonzo\n\n23) ts52: Build R1 Grover\n\n24) Trydnt: Build Y3 Trydnt\n\n25) ts52: Build R2 Grover\n\n26) Trydnt: Discover Y2 Trydnt G3 G3\n\n27) ts52: Trade G1 B1 Ts52\n\n28) Trydnt: Build Y3 G3\n\n29) ts52: Build G1 Grover\n\n30) Trydnt: Build Y3 Trydnt\n\n31) ts52: Discover B1 Ts52 G3 Kermit\n\n32) Trydnt: Move Y3 Trydnt Grover\n\n33) ts52: Build B1 Kermit\n\n34) Trydnt: Sacrifice R3 Gonzo\nAttack R1 Grover\nAttack R2 Grover\nAttack R1 Grover\n\n35) ts52: Build B1 Kermit\n\n36) Trydnt: Sacrifice Y3 G3\nMove R1 Grover Ts52\nMove R1 Grover Ts52\nMove R2 Grover Ts52\nCatastrophe Ts52 R\n\n37) ts52: Trade G2 R2 Ts52\n\n38) Trydnt: Move Y3 Grover Ts52\n\n39) ts52: Sacrifice G1 Grover\nBuild R1 Ts52\n\n40) Trydnt: Sacrifice R1 Gonzo\nAttack R2 Ts52\n\n41) ts52: Sacrifice G1 Grover\nBuild R1 Ts52\n\n42) Trydnt: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack R1 Ts52\n\tts52: Good game. Well played.\n\tTrydnt: well played\n\n\nHomeworlds Online (SDG# 35100)\nVariants: &quot;Unrated&quot;\nStarted: 2019.4.17, Ended: 2019.4.30\nParticipants: dragon76n (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dragon76n: H G1 B3 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dragon76n: Build Y1 Dragon76n\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dragon76n: Build Y2 Dragon76n\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\n8) dragon76n: Discover Y2 Dragon76n G2 Gretwo\n\n9) Trydnt: Build Y2 G3\n\n10) dragon76n: Build Y2 Gretwo\n\n11) Trydnt: Discover Y1 G3 G2 G2\n\n12) dragon76n: Discover Y2 Gretwo B3 Bluthr\n\n13) Trydnt: Build Y3 G3\n\n14) dragon76n: B Y3 Gretwo\n\n15) Trydnt: Sacrifice Y3 G3\nMove Y2 G3 G2\nMove Y1 G2 Dragon76n\nMove Y2 G2 Dragon76n\nCatastrophe Dragon76n Y\n\n\nHomeworlds Online (SDG# 34368)\nVariants: &quot;Hard time&quot;\nStarted: 2019.4.17, Ended: 2019.5.25\nParticipants: Draw5PlayAll (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: This was listed as TGH, but we&#39;re done with that, right?  Just a normal ordinary homeworlds game?\r\n\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\tDraw5PlayAll: Did you accept the generic offer? I forgot that was still on the list.\n\n3) mneme: Build G1 Mneme\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mneme: Trade G1 R1 Mneme\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) mneme: Build R2 Mneme\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\tmneme: Accidentally, yeah.\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) mneme: Build R2 Mneme\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) mneme: Discover R2 Mneme G3 Time\n\n14) Draw5PlayAll: Discover R1 Draw5playall G1 Space\n\tDraw5PlayAll: So, should I discover a system called &quot;space&quot;, or not...\n\n15) mneme: Build R3 Time\n\tDraw5PlayAll: The final frontier.\n\n16) Draw5PlayAll: Build R3 Space\n\n17) mneme: Build Y1 Mneme\n\n18) Draw5PlayAll: Discover R2 Draw5playall G1 Energy\n\n19) mneme: Sacrifice Y1 Mneme\nMove R3 Time Energy\n\n20) Draw5PlayAll: Build Y1 Draw5playall\n\n21) mneme: Attack R2 Energy\n\n22) Draw5PlayAll: Discover Y2 Draw5playall B1 Matter\n\n23) mneme: Build R3 Time\n\n24) Draw5PlayAll: Build Y1 Draw5playall\n\n25) mneme: Trade R1 B1 Mneme\n\n26) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n27) mneme: Move B1 Mneme Time\n\tDraw5PlayAll: We need systems named gravity, relativity, dark, and perhaps something like expansion.\n\n28) Draw5PlayAll: Move B1 Draw5playall Space\n\tmneme: heh\n\n29) mneme: Trade R3 Y3 Time\n\n30) Draw5PlayAll: Trade R3 Y3 Space\n\n31) mneme: Build B2 Time\n\n32) Draw5PlayAll: Build B2 Space\n\tDraw5PlayAll: I do not trust those menacing ships at energy...\n\n33) mneme: Move Y3 Time Matter\n\n34) Draw5PlayAll: Trade Y3 R3 Space\n\n35) mneme: Build R1 Time\n\tDraw5PlayAll: *whew*\n\n36) Draw5PlayAll: Discover Y2 Matter G2 Gravity\n\tmneme: I can&#39;t think what you mean. :P\r\n\n\n37) mneme: Trade B2 Y2 Time\n\n38) Draw5PlayAll: Move Y1 Draw5playall Space\n\n39) mneme: Sacrifice Y2 Mneme\nMove R2 Time Space\nMove R1 Time Space\nCatastrophe Space R\n\n40) Draw5PlayAll: Move B1 Space Gravity\n\n41) mneme: Sacrifice Y2 Time\nMove R3 Energy Draw5playall\nMove Y3 Matter Draw5playall\n\n42) Draw5PlayAll: Sacrifice Y2 Gravity\nDiscover B2 Space B2 Weak\nDiscover Y1 Space R3 Strong\n\n43) mneme: Attack G3 Draw5playall\n\tmneme: Hey, there.  Whatcha doing?\n\n\tDraw5PlayAll: It was all a decoy... that green contains a deadly disease that will terminate your empire if you take control of it!\r\n\r\n[Can you win the game without attacking the green?]\n\tmneme: Not without a lot more work, sorry.  :)\r\n\r\nGood game!\n\nHomeworlds Online (SDG# 35137)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.4.17, Ended: 2019.6.7\nParticipants: wil (S), mneme (N)\nWinner: wil\n\n1) mneme: Homeworld R2 B3 G3\n\tmneme: For the Great Homeworlds Tournament!  This time for sure!\r\n\n\n2) wil: H B1 Y2 G3\n\n3) mneme: Build G1 Mneme\n\n4) wil: B G1 Wil\n\n5) mneme: Trade G1 B1 Mneme\n\twil: Gl\n\n6) wil: T G1 B1 Wil\n\n7) mneme: Build B2 Mneme\n\n8) wil: B B2 Wil\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) wil: D B1 Wil G3 G3\n\n11) mneme: Build B2 Mneme\n\tBabamots: I should be able to announce tournament results after this game. Thanks for playing, guys! Good luck!\n\n12) wil: B B2 G3\n\n13) mneme: Discover B1 Mneme Y1 Terpsicore\n\n14) wil: T B2 Y2 G3\n\n15) mneme: Discover B2 Mneme G1 Euterpe\n\n16) wil: B G1 Wil\n\n17) mneme: Build G1 Mneme\n\n18) wil: B G2 Wil\n\n19) mneme: Build G2 Mneme\n\n20) wil: D G2 Wil Y3 Y3\n\n21) mneme: Move G2 Mneme Terpsicore\n\n22) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB Y1 G3\n\n23) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Mneme\nBuild Y3 Mneme\n\n24) wil: D Y1 G3 R1 R1\n\n25) mneme: Discover G2 Terpsicore Y3 Erato\n\n26) wil: M Y1 R1 Mneme\nC Mneme Y\n\n27) mneme: Trade G1 Y1 Mneme\n\n28) wil: D G2 Y3 Y1 Y1\n\tmneme: Ug.  Forgot I was playing a 32 system.\n\n29) mneme: Sacrifice G2 Erato\nBuild B2 Euterpe\nBuild B3 Terpsicore\n\n30) wil: B B3 G3\n\twil: I was scratching my head wondering what was up.\n\n31) mneme: Trade B2 Y2 Euterpe\n\n32) wil: B Y3 G3\n\tmneme: Yeah.  Was assuming you were running away for space, not towards.  the red trade was what I&#39;d been plannning.\n\tmneme: Yeah.  Was assuming you were running away for space, not towards.  the red trade was what I&#39;d been plannning.\n\tDraw5PlayAll: Terpsichore?\n\tmneme: You&#39;ve played enough games with me that my name scheme shouldn&#39;t be particularly notable.\n\n33) mneme: Build Y3 Euterpe\n\n34) wil: T G1 R1 Wil\n\twil: No comments from the peanut gallery.\n\twil: This is a tournament game.\n\twil: D5pa, I&#39;ve asked you not to interrupt before...\n\n35) mneme: Trade Y2 R2 Euterpe\n\n36) wil: D B3 G3 G1 G1\n\n37) mneme: Build Y2 Mneme\n\n38) wil: B B2 G1\n\n39) mneme: Move B3 Terpsicore Y3\n\n40) wil: M G2 Y3 Terpsicore\n\n41) mneme: Move R2 Euterpe Y3\n\n42) wil: B R1 Wil\n\n43) mneme: Discover B1 Terpsicore R3 Melpomene\n\n44) wil: M Y2 G3 G1\n\n45) mneme: Discover B2 Euterpe R3 Clio\n\n46) wil: M B2 Wil Melpomene\n\n47) mneme: Move Y3 Euterpe Melpomene\n\n48) wil: T B3 R3 G1\n\twil: Too cool, predictive txt found that name for me!\n\n49) mneme: Attack B2 Melpomene\n\n50) wil: B G1 Y1\n\n51) mneme: Trade B2 G2 Melpomene\n\tmneme: nice.  That green lock you&#39;ve got going is pretty ugly, alas.\n\n52) wil: S G2 Y1\nB B2 G1\nB B3 G3\n\tDraw5PlayAll: For me, there are so many things that autocorrect that it sometimes gets annoying.\n\tmneme: DPA5: Again, this is a tournament game.  Leave the chatter for later, even though it&#39;s not technically game-relevant.\n\n53) mneme: Build G1 Melpomene\n\n54) wil: B G2 Y1\n\n55) mneme: Move G2 Melpomene Y1\n\n56) wil: S Y2 G1\nM G2 Y1 Mneme\nM G1 Y1 Mneme\n\n57) mneme: Sacrifice B2 Clio\nTrade G3 R3 Mneme\nTrade G1 R1 Melpomene\n\n58) wil: S G2 Mneme\nB G1 Wil\nB R2 G1\n\twil: There wasn&#39;t room for the three of us.\n\n59) mneme: Attack G1 Mneme\n\tmneme: Ok, so what now?\n\n60) wil: B Y2 G3\n\tmneme: Sorry, had second thoughts and then realized I needed the G trade to avoid handing off a g3 for free.  Nothing&#39;s free.\n\tmneme: ug.  Sad with great sadness; the other possible trade was also a g (the g2 at y1). Ah well.\n\n61) mneme: Trade R3 G3 Mneme\n\twil: Backing after review is expected in this game.\n\n62) wil: M B3 G3 Y1\n\n63) mneme: Move G2 Y1 Y3\n\n64) wil: S G3 Wil\nB G2 Terpsicore\nB G3 Wil\nB B2 G3\n\twil: Lol, was blind\n\n65) mneme: Sacrifice G1 Mneme\nBuild G1 Y3\n\n66) wil: M G1 Wil Y3\n\n67) mneme: Sacrifice G1 Y3\nBuild R3 Y3\n\tmneme: oops.  Typo.\r\n\n\n68) wil: S Y2 G3\nM R1 Wil Melpomene\nM R2 G1 Melpomene\nC Melpomene R\n\n69) mneme: Attack G1 Y3\n\n70) wil: D G2 Terpsicore Y3 Why3\n\n71) mneme: Move R3 Y3 Terpsicore\n\twil: I used to live here, not at many of us though\n\n72) wil: D G2 Terpsicore Y2 Y2\n\tmneme: So you don&#39;t mind if I move, then?\n\tmneme: oh, j7st a g1.  misread that.  hmm\n\n73) mneme: Move R3 Terpsicore Why3\n\n74) wil: M G2 Why3 Y1\n\n75) mneme: Build R1 Y3\n\tmneme: Ah, was wondering when you would set that off.\n\n76) wil: B B1 Y1\n\n77) mneme: Build Y1 Mneme\n\n78) wil: B R1 Wil\n\n79) mneme: Discover G2 Y3 G1 Erat9\n\n80) wil: S G2 Y2\nB G2 Wil\nB Y2 G3\n\n81) mneme: Sacrifice G2 Erat9\nBuild G1 Mneme\nBuild G2 Y3\n\twil: The old bull in China shop method.\n\n82) wil: M Y2 G3 G1\n\tmneme: as long as it accomplishes the goal (in this case, stopping you from building another y3)...\n\n83) mneme: Sacrifice Y2 Mneme\nMove G2 Y3 Wil\nMove G1 Y3 Wil\nCatastrophe Wil G\n\n84) wil: M Y3 G3 Wil\n\n85) mneme: Build Y2 Mneme\n\n86) wil: S B1 G3\nT B3 G3 Y1\n\n87) mneme: Sacrifice G1 Mneme\nBuild R2 Why3\n\n88) wil: S G3 Y1\nB G1 Y1\nB G1 Y1\nB R3 G1\n\n89) mneme: Sacrifice Y2 Mneme\nMove R2 Why3 G1\nMove R1 Y3 G1\nCatastrophe G1 R\n\n90) wil: B Y2 G1\n\n91) mneme: Move R3 Why3 G1\n\n92) wil: S G1 Y1\nB Y3 Wil\n\n93) mneme: Attack Y2 G1\n\n94) wil: S B2 G1\nT Y2 G2 G1\nT B2 G2 G1\n\n95) mneme: Sacrifice R2 Y3\nAttack G2 G1\nAttack G2 G1\n\n96) wil: S Y3 Wil\nM R1 Wil G3\nM G1 Y1 Y3\nM G1 Y3 G1\nC G1 G\n\n97) mneme: Build Y2 Mneme\n\n98) wil: T B2 Y2 G3\n\n99) mneme: Trade Y1 R1 Mneme\n\n100) wil: S G2 Y1\nB Y1 Wil\nB Y3 G3\n\n101) mneme: Discover Y1 Mneme G1 Erato\n\n102) wil: D Y1 Wil G3 Gee3\n\n103) mneme: Move R1 Mneme Erato\n\n104) wil: B R2 G3\n\n\n105) mneme: Build R2 Erato\n\n106) wil: M R2 G3 Erato\n\n107) mneme: Attack R2 Erato\n\n108) wil: B R3 G3\n\n109) mneme: Move R2 Erato Gee3\n\n110) wil: M R3 G3 Y1\n\n111) mneme: Build R3 Gee3\n\n112) wil: B R3 G3\n\n113) mneme: Attack Y1 Gee3\n\n114) wil: T R1 G1 Wil\n\n115) mneme: Move B3 Y3 Erato\n\n116) wil: D G1 Wil Y3 Y3\n\n117) mneme: Move B3 Erato Y3\n\n118) wil: M G1 Y3 Wil\n\tmneme: I&#39;m a little surprised we don&#39;t have spectators for this game.  It&#39;s a bit non-standard, but overall very good.\n\n119) mneme: Sacrifice B3 Y3\nTrade G3 Y3 Mneme\nTrade Y2 G2 Mneme\nTrade R2 Y2 Gee3\n\twil: Non standard is my name. \n\n120) wil: S Y2 G3\nM R3 G3 Wil\nD Y3 Wil G3 Gthree\n\n121) mneme: Build Y2 Mneme\n\n122) wil: B G1 Wil\n\n123) mneme: Build G2 Mneme\n\n124) wil: S G1 Wil\nB B1 Y1\n\tmneme: Ah, there they are.  Didn&#39;t see them on my phone.  Non-standard is the words on my flag.\r\n\n\n125) mneme: Trade G2 B2 Mneme\n\n126) wil: S Y3 Gthree\nM B1 Y1 Mneme\nM B1 Y1 Mneme\nC Mneme B\nP\n\n127) mneme: Build Y3 Erato\n\twil: We don&#39;t just abandon perfectly good star systems!\n\n128) wil: B R1 G3\n\tmneme: Sure we do\n\n129) mneme: Sacrifice Y2 Mneme\nMove R1 Erato G3\nMove R2 Erato G3\nCatastrophe G3 R\n\twil: Take good care of it then\n\n130) wil: B R1 Wil\n\tmneme: If you insist.\n\twil: Hey you could have done that and saved to turn\n\n131) mneme: Build Y2 Mneme\n\n132) wil: T R3 G3 Wil\n\tmneme: What&#39;s the fun of that?\n\n133) mneme: Build G1 Mneme\n\n134) wil: M G1 Wil G3\n\n135) mneme: Move G2 Mneme G3\n\n136) wil: M G1 G3 Y1\n\n137) mneme: Build G2 G3\n\n138) wil: D Y3 G3 B2 B2\n\n139) mneme: Sacrifice G2 G3\nBuild G2 Mneme\nBuild R1 Gee3\n\n140) wil: B R1 Y1\n\n141) mneme: Move R1 Gee3 Erato\n\twil: I didn&#39;t leave ya a choice\n\n142) wil: M R3 Y1 Mneme\n\tmneme: Nope.  Not if I wanted even the sliver of a chance to salvage things (not much of a chance, but better than 0).\r\n\n\n143) mneme: Attack R3 Mneme\n\twil: I figure you got much more than a sliver\n\n144) wil: S Y3 B2\nD R1 Wil Y3 Phoenix\nM R1 Phoenix Mneme\nM R1 Y1 Mneme\nC Mneme R\n\tmneme: We&#39;ll see.  It&#39;ll be interesting\n\n\twil: Good game continue to be a mazed how different they are\n\tBabamots: I didn&#39;t want to interrupt the flow of the game to say so, but I was spectating closely.\r\n\r\nAnd that&#39;s the last game of the tournament! Hope to see you in the next one! I&#39;ll be trying to set it up over the next month or so.\n\twil: Is the chart back up with results...\n\twil:  I hope to stay healthy next time around!\n\tBabamots: The original chart should still be working, but I also made a static version (link in the email I just sent).\n\nHomeworlds Online (SDG# 35135)\nVariants: &quot;Hard time&quot;\nStarted: 2019.4.18, Ended: 2019.5.13\nParticipants: mneme (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Hi, have fun! :-)\n\n2) mneme: Homeworld B3 G2 R3\n\n3) Simon: Build B1 Simon\n\tmneme: you too!\r\n\n\n4) mneme: Build R1 Mneme\n\tmneme: Sorry; missed that you started with a b3, not a G3!\n\n5) Simon: Build B1 Simon\n\n6) mneme: Build R1 Mneme\n\n7) Simon: Trade B3 Y3 Simon\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) Simon: Build B1 Simon\n\n10) mneme: Build R2 Mneme\n\n11) Simon: Discover B1 Simon G2 G2\n\n12) mneme: Trade R2 B2 Mneme\n\n13) Simon: Build B2 G2\n\n14) mneme: Build R2 Mneme\n\n15) Simon: Trade B2 R2 G2\n\n16) mneme: Trade R2 G2 Mneme\n\n17) Simon: Build R2 G2\n\n18) mneme: Discover R1 Mneme G1 Euterpe\n\n19) Simon: Build B2 G2\n\n20) mneme: Build Y1 Mneme\n\n21) Simon: Trade B2 Y2 G2\n\n22) mneme: Sacrifice G2 Mneme\nBuild R2 Euterpe\nBuild R3 Mneme\n\n23) Simon: Discover R2 G2 Y1 Y1\n\n24) mneme: Trade R1 G1 Mneme\n\n25) Simon: Build B2 G2\n\n26) mneme: Move B2 Mneme Euterpe\n\n27) Simon: Trade B2 G2 G2\n\n28) mneme: Move Y3 Mneme Euterpe\n\n29) Simon: Build B2 G2\n\n30) mneme: Build Y1 Euterpe\n\n31) Simon: Sacrifice G2 G2\nBuild R1 Y1\nBuild R3 Y1\n\n32) mneme: Sacrifice Y3 Euterpe\nMove R1 Euterpe G2\nMove R1 G2 Y1\nCatastrophe Y1 R\nDiscover G1 Mneme Y1 Terpsicore\n\n33) Simon: Build Y2 Simon\n\n34) mneme: Build R1 Mneme\n\n35) Simon: Move B2 G2 Terpsicore\n\n36) mneme: Trade R3 G3 Mneme\n\n37) Simon: Build R1 G2\n\n38) mneme: Discover G1 Terpsicore B3 Melpomene\n\n39) Simon: Move R2 G2 Melpomene\n\n40) mneme: Sacrifice G1 Melpomene\nBuild Y2 Mneme\n\n41) Simon: Build Y3 G2\n\n42) mneme: Build Y3 Euterpe\n\n43) Simon: Trade Y3 G3 G2\n\n44) mneme: Sacrifice Y1 Mneme\nMove Y3 Euterpe Melpomene\n\n45) Simon: Move G3 G2 Terpsicore\n\n46) mneme: Sacrifice R1 Mneme\nAttack R2 Melpomene\n\n47) Simon: Build G1 Terpsicore\n\tSimon: Strong move, nice.\n\n48) mneme: Sacrifice G3 Mneme\nBuild Y1 Melpomene\nBuild Y3 Mneme\nBuild R1 Euterpe\n\n49) Simon: Build G1 Terpsicore\n\tmneme: Thanks.  I thought it did a pretty good job.\n\n50) mneme: Trade R2 G2 Melpomene\n\n51) Simon: Move G1 Terpsicore Mneme\n\n52) mneme: Build G3 Melpomene\n\n53) Simon: Sacrifice Y2 Simon\nMove G1 Terpsicore Mneme\nMove G3 Terpsicore Mneme\nCatastrophe Mneme Green\n\n\tmneme: Annoying, but at least you saved me from a timeout in the tournament game.\r\n\n\nHomeworlds Online (SDG# 35132)\nStarted: 2019.4.20, Ended: 2019.5.23\nParticipants: dragon76n (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) dragon76n: Homeworld B3 G2 Y3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) dragon76n: Build Y1 Dragon76n\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) dragon76n: Trade Y1 G1 Dragon76n\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) dragon76n: Build G1 Dragon76n\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) dragon76n: Trade G1 R1 Dragon76n\n\n11) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n12) dragon76n: Build R2 Dragon76n\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) dragon76n: B R2 Dragon76n\n\n15) Draw5PlayAll: Discover R2 Draw5playall G2 Ugh\n\n16) dragon76n: Discover R2 Dragon76n G1 Greone\n\n17) Draw5PlayAll: Build R3 Ugh\n\n18) dragon76n: Build R3 Greone\n\n19) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n20) dragon76n: Trade R1 Y1 Dragon76n\n\n21) Draw5PlayAll: Move B1 Draw5playall Ugh\n\n22) dragon76n: Move Y1 Dragon76n Greone\n\n23) Draw5PlayAll: Build B1 Ugh\n\n24) dragon76n: Trade R2 B2 Dragon76n\n\n25) Draw5PlayAll: Trade R2 Y2 Ugh\n\n26) dragon76n: Move B2 Dragon76n Greone\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) dragon76n: Trade R3 G3 Greone\n\n29) Draw5PlayAll: Build R1 Ugh\n\tDraw5PlayAll: Whaaaaat?\n\n30) dragon76n: Discover G3 Greone G3 Grethr\n\n31) Draw5PlayAll: Build G2 Draw5playall\n\tDraw5PlayAll: I tried four times to enter &quot;build R1 ugh&quot; and every single time the connection dropped out. Then building a Y1, as well as &quot;construct r1 ugh&quot; (lowercase r), worked...\n\n32) dragon76n: Sacrifice G3 Grethr\nBuild Y1 Greone\nBuild Y2 Dragon76n\nBuild G3 Dragon76n\n\n33) Draw5PlayAll: Discover G2 Draw5playall Y2 Crlf\n\n34) dragon76n: Discover G3 Dragon76n B1 Bluone\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Ugh\nBuild G3 Crlf\n\tDraw5PlayAll: Carriage return line feed\n\tdragon76n: :D\n\n36) dragon76n: Sacrifice Y2 Dragon76n\nMove Y1 Greone Ugh\nMove Y1 Greone Ugh\nCatastrophe Ugh Y\n\n37) Draw5PlayAll: Build Y1 Draw5playall\n\n38) dragon76n: Sacrifice G3 Bluone\nBuild G3 Dragon76n\nBuild Y1 Dragon76n\nBuild Y2 Dragon76n\n\n39) Draw5PlayAll: Move Y1 Draw5playall Ugh\n\n40) dragon76n: Move Y3 Dragon76n Greone\n\n41) Draw5PlayAll: Sacrifice G3 Crlf\nBuild Y2 Ugh\nBuild Y3 Ugh\nBuild Y3 Draw5playall\n\n42) dragon76n: Sacrifice Y2 Dragon76n\nMove Y1 Dragon76n Greone\nMove Y1 Greone Ugh\nCatastrophe Ugh Yellow\n\n43) Draw5PlayAll: Sacrifice Y3 Draw5playall\nDiscover G2 Crlf R1 Sudo_rm_-rf\nMove G2 Sudo_rm_-rf Dragon76n\nCatastrophe Dragon76n Green\nMove R3 Ugh Greone\n\n\tdragon76n: I didn&#39;t see that one coming! Good game.\n\tDraw5PlayAll: Never keep two ships in your homeworld matching your star... (unless you are 100% sure your opponent has insufficient movement)\n\nHomeworlds Online (SDG# 35156)\nVariants: &quot;Hard time&quot;\nStarted: 2019.4.24, Ended: 2019.5.6\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y3 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Felix: Build Y2 Felix\n\n9) Trydnt: Discover Y1 Trydnt G1 G1\n\n10) Felix: Trade Y1 B1 Felix\n\n11) Trydnt: Build Y1 Trydnt\n\n12) Felix: Discover Y2 Felix G2 Oompa\n\n13) Trydnt: Discover Y2 Trydnt G1 G11\n\n14) Felix: Build Y2 Oompa\n\n15) Trydnt: Build Y3 G1\n\n16) Felix: Move Y2 Oompa G11\n\n17) Trydnt: Build Y3 G11\n\n18) Felix: Build B1 Felix\n\tFelix: I don&#39;t like the way this is going!\n\n19) Trydnt: Discover Y2 G11 B2 B2\n\n20) Felix: Move B1 Felix Oompa\n\n21) Trydnt: Trade Y1 R1 Trydnt\n\n22) Felix: Discover Y2 G11 B2 Bronx\n\n23) Trydnt: Sacrifice Y2 B2\nMove Y3 G1 Bronx\nMove Y3 Bronx Felix\n\n24) Felix: Sacrifice Y2 Oompa\nMove G3 Felix Bronx\nMove Y2 Bronx Felix\n\n25) Trydnt: Trade Y3 R3 Felix\n\n\nHomeworlds Online (SDG# 35113)\nVariants: &quot;Hard time&quot;\nStarted: 2019.4.25, Ended: 2019.5.14\nParticipants: Uglyfoot (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Uglyfoot: Build G1 Uglyfoot\n\tdlwillson: Sorry for timing out on the other game, and no,  I don&#39;t mind resignations.\n\tUglyfoot: OK.  I feel bad that you &quot;lost&quot; on a time out while needing 1 more play to win.  I&#39;ll see if I can play better this time.\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Gateway\n\n7) dlwillson: B B1 Dlwillson\n\n8) Uglyfoot: Build G1 Gateway\n\n9) dlwillson: Discover B1 Dlwillson G2 Field\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) dlwillson: B G2 Dlwillson\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) dlwillson: S G3 Dlwillson\nB B2 Field\nB B2 Field\nB B3 Dlwillson\n\n14) Uglyfoot: Build G1 Uglyfoot\n\n15) dlwillson: Trade B3 Y3 Dlwillson\n\n16) Uglyfoot: Build G2 Uglyfoot\n\n17) dlwillson: S Y3 Dlwillson\nM G2 Dlwillson Field\nM G2 Field Gateway\nM G2 Gateway Uglyfoot\nC Uglyfoot G\n\n18) Uglyfoot: Sacrifice G1 Gateway\nBuild R1 Uglyfoot\n\tdlwillson: And the universe returned to a prehistoric age.\n\tUglyfoot: and I witness another way to lose...\n\n19) dlwillson: T B2 Y2 Field\n\n20) Uglyfoot: Build G1 Gateway\n\tdlwillson: There are millions! \n\n21) dlwillson: S Y2 Field\nM B2 Field Gateway\nM B2 Gateway Uglyfoot\n\n22) Uglyfoot: Discover R1 Uglyfoot Y1 Sol\n\tUglyfoot: s g1 gateway\r\nb r2 uglyfoot\n\n23) dlwillson: T B2 R2 Uglyfoot\n\n24) Uglyfoot: Sacrifice G1 Gateway\nBuild R2 Uglyfoot\n\n25) dlwillson: A R2 Uglyfoot\n\n\tdlwillson: GG TY\n\nHomeworlds Online (SDG# 35158)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.2, Ended: 2019.5.29\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) dlwillson: H B3 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Build Y1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Trydnt: Build R1 Trydnt\n\n10) dlwillson: B Y1 Dlwillson\n\n11) Trydnt: Build Y2 Trydnt\n\n12) dlwillson: B Y2 Dlwillson\n\n13) Trydnt: Discover Y1 Trydnt G1 G1\n\n14) dlwillson: D Y1 Dlwillson G2 Field\n\n15) Trydnt: Move R1 Trydnt G1\n\n16) dlwillson: D Y1 Dlwillson B2 Sea\n\n17) Trydnt: Move R1 G1 Field\n\n18) dlwillson: D Y1 Field G1 Forest\n\n19) Trydnt: Move Y1 G1 Sea\n\n20) dlwillson: D Y1 Sea B1 Sky\n\n21) Trydnt: Move Y2 Trydnt Forest\n\n22) dlwillson: S G3 Dlwillson\nB Y2 Forest\nB Y3 Sky\nB Y3 Dlwillson\n\n23) Trydnt: Build R2 Field\n\n24) dlwillson: S Y2 Dlwillson\nM Y1 Forest Trydnt\nM Y2 Forest Trydnt\n\n25) Trydnt: Trade Y3 R3 Trydnt\n\n26) dlwillson: Sacrifice Y1 Trydnt\nDiscover Y2 Trydnt B1 Alsosky\n\n27) Trydnt: Build R2 Trydnt\n\n28) dlwillson: T Y3 R3 Sky\n\n29) Trydnt: Trade R3 Y3 Trydnt\n\n30) dlwillson: Build G1 Dlwillson\n\n31) Trydnt: Move R2 Trydnt Alsosky\n\n32) dlwillson: M Y2 Alsosky Sea\n\n33) Trydnt: Discover Y1 Sea G3 G3\n\n34) dlwillson: B G2 Dlwillson\n\n\tdlwillson: Bummer!\n\nHomeworlds Online (SDG# 35120)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.2, Ended: 2019.5.27\nParticipants: Trydnt (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 G3 B3\n\n2) Trydnt: Homeworld G3 B2 Y3\n\tSimon: Have fun :-)\n\n3) Simon: Build B1 Simon\n\n4) Trydnt: Build Y1 Trydnt\n\n5) Simon: Build B1 Simon\n\n6) Trydnt: Trade Y1 R1 Trydnt\n\n7) Simon: Trade B1 R1 Simon\n\n8) Trydnt: Build R2 Trydnt\n\n9) Simon: Trade B3 Y3 Simon\n\n10) Trydnt: Build R2 Trydnt\n\n11) Simon: Discover R1 Simon G2 G2\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Simon: Build B1 Simon\n\n14) Trydnt: Trade R2 B2 Trydnt\n\n15) Simon: Build R2 G2\n\n16) Trydnt: Build Y1 Trydnt\n\n17) Simon: Move B1 Simon G2\n\n18) Trydnt: Build R2 G1\n\n19) Simon: Trade R2 Y2 G2\n\n20) Trydnt: Move B2 Trydnt G1\n\n21) Simon: Build B1 Simon\n\n22) Trydnt: Trade R1 Y1 G1\n\n23) Simon: Discover B1 Simon G2 G2a\n\n24) Trydnt: Move R2 G1 G2a\n\n25) Simon: Build B2 G2a\n\n26) Trydnt: Sacrifice R2 Trydnt\nAttack B2 G2a\nAttack B1 G2a\n\n27) Simon: Build B3 G2\n\n28) Trydnt: Build B3 G1\n\n29) Simon: Build B3 Simon\n\n30) Trydnt: Trade B2 Y2 G1\n\n31) Simon: Trade B3 Y3 Simon\n\n32) Trydnt: Trade B2 Y2 G2a\n\n33) Simon: Move Y3 Simon G2a\n\n34) Trydnt: Build Y1 G2a\n\n35) Simon: Sacrifice R1 G2\nAttack R2 G2a\n\n36) Trydnt: Trade Y1 R1 G1\n\n37) Simon: Discover R2 G2a Y1 Y1\n\n\nHomeworlds Online (SDG# 35059)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.5.2, Ended: 2019.6.1\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\twil: Back in CP stopped by WS\n\n5) Trydnt: Trade Y1 B1 Trydnt\n\tTrydnt: nice! miss the old place immensely. hopefully will make it out to the dust this year though for the conclave\n\n6) wil: T G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\twil: Catharsis this weekend\n\tTrydnt: yeah I keep seeing stuff about it and miss it all so much :(\n\n8) wil: D B1 Wil G3 G3\n\n9) Trydnt: Discover B2 Trydnt G1 G1\n\n10) wil: B G1 Wil\n\n11) Trydnt: Build Y1 Trydnt\n\n12) wil: T G1 Y1 Wil\n\n13) Trydnt: Move Y1 Trydnt G1\n\n14) wil: B G1 Wil\n\n15) Trydnt: Trade B1 R1 Trydnt\n\n16) wil: T G1 R1 Wil\n\n17) Trydnt: Build B1 G1\n\n18) wil: B G1 Wil\n\n19) Trydnt: Discover B2 G1 Y3 Y3\n\n20) wil: B G1 Wil\n\n21) Trydnt: Trade B2 G2 Y3\n\n22) wil: D G1 Wil Y3 Why3\n\n23) Trydnt: Build G2 Y3\n\n24) wil: M G1 Wil Why3\n\n25) Trydnt: Build B2 G1\n\n26) wil: B B2 G3\n\n27) Trydnt: Move B1 G1 Y3\n\n28) wil: T B2 Y2 G3\n\n29) Trydnt: Sacrifice G2 Y3\nBuild Y1 Trydnt\nBuild Y2 G1\n\n30) wil: B G2 Why3\n\n31) Trydnt: Build G2 Y3\n\n32) wil: D G1 Why3 R1 R1\n\n33) Trydnt: Move G2 Y3 R1\n\n34) wil: M G1 Why3 R1\n\n35) Trydnt: Build R2 Trydnt\n\n36) wil: B R2 Wil\n\twil: You coming for a visit or just passing thru?\n\n37) Trydnt: Sacrifice Y1 Trydnt\nDiscover B1 Y3 Y1 Y1\n\n38) wil: M R1 Wil G3\n\n39) Trydnt: Sacrifice G2 R1\nBuild B2 Y1\nBuild B3 G1\n\n40) wil: S G2 Why3\nB Y3 G3\nB B3 G3\n\n41) Trydnt: Sacrifice G2 Y3\nBuild Y3 Trydnt\nPass\n\n42) wil: B G2 Wil\n\n\nHomeworlds Online (SDG# 35170)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.3, Ended: 2019.5.4\nParticipants: Laurie_Menke (S), dougforte (N)\nWinner: Laurie_Menke\n\n1) dougforte: Homeworld Y2 B3 G3\n\tLaurie_Menke: Hi dougforte! Good luck!  :)\n\tdougforte: Thanks, you too! :)\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\n3) dougforte: Discover G3 Dougforte G1 World1\n\tdougforte: Uh, next time I&#39;ll wait a few more turns before self-destructing.\n\tdougforte: Thanks for the game, though!\n\tLaurie_Menke: Oh wow! I didn&#39;t even know the system would let you do that! Sorry.  That sucks.  :(  Challenge me any time!\n\tdougforte: Thank you!  I think the system tried to warn me, but I didn&#39;t understand it well.\n\tdougforte: I don&#39;t mind, though, it&#39;s kind of hilarious.  I&#39;ll have a better idea what to avoid next time.  :)\n\tLaurie_Menke: :)\n\n\nHomeworlds Online (SDG# 35177)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.5, Ended: 2019.6.1\nParticipants: Draw5PlayAll (S), deanthebean (N)\nWinner: Draw5PlayAll\n\n1) deanthebean: Homeworld B1 Y2 G3\n\tDraw5PlayAll: Say, are you actually interested in playing the game, or are you just trying to move up the ladder? I might want to resign this and wait until the #1 seat opens up so I can try to be first again.\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tdeanthebean: If you want to resign that&#39;s OK with me. \n\n3) deanthebean: Build G1 Deanthebean\n\tDraw5PlayAll: I think I will just crush you instead.\n\tdeanthebean: Ok. Good plan ;) Let&#39;s see if it works....\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) deanthebean: Build G1 Deanthebean\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) deanthebean: Trade G1 R1 Deanthebean\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) deanthebean: Build R1 Deanthebean\n\n10) Draw5PlayAll: Discover B2 Draw5playall G2 Growth\n\n11) deanthebean: Build R1 Deanthebean\n\n12) Draw5PlayAll: Build B2 Growth\n\n13) deanthebean: Discover R1 Deanthebean B3 Commerce\n\tDraw5PlayAll: Forget trying to get a B2.\n\n14) Draw5PlayAll: Build B2 Draw5playall\n\tdeanthebean: Yeah. I regret allowing myself to get shut out of blue. \n\n15) deanthebean: Build R2 Deanthebean\n\n16) Draw5PlayAll: Build B3 Growth\n\n17) deanthebean: Trade R1 Y1 Deanthebean\n\n18) Draw5PlayAll: Trade B3 R3 Growth\n\n19) deanthebean: Build Y1 Deanthebean\n\n20) Draw5PlayAll: Build B3 Growth\n\n21) deanthebean: Discover Y1 Deanthebean B3 Desperation\n\n22) Draw5PlayAll: Trade B3 Y3 Growth\n\n23) deanthebean: Trade G3 B3 Deanthebean\n\n24) Draw5PlayAll: Build Y1 Growth\n\n25) deanthebean: Build G1 Deanthebean\n\n26) Draw5PlayAll: Build Y2 Draw5playall\n\n27) deanthebean: Discover Y1 Deanthebean G3 Hope\n\n28) Draw5PlayAll: Move B2 Growth Hope\n\n29) deanthebean: Move B3 Deanthebean Hope\n\n30) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y3 Growth Commerce\nMove Y3 Commerce Deanthebean\n\n\tDraw5PlayAll: I knew something was up...\n\tdeanthebean: Ok. This looks pretty hopeless for me. Well played!\n\nHomeworlds Online (SDG# 35112)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.5.8, Ended: 2019.6.13\nParticipants: Babamots (S), dlwillson (N)\nWinner: Babamots\n\n1) dlwillson: H R3 B2 G3\n\tBabamots: I&#39;ve been taking a break for a while and could use some practice. Good luck!\n\n2) Babamots: Homeworld Y1 B3 G3\n\tdlwillson: TY!GL!HF!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Babamots: Build G1 Babamots\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Babamots: Build Y2 Babamots\n\n9) dlwillson: D Y1 Dlwillson B1 Sea\n\n10) Babamots: Discover Y1 Babamots G2 Ferenginar\n\n11) dlwillson: B G1 Dlwillson\n\n12) Babamots: Build G1 Babamots\n\n13) dlwillson: Move G1 Dlwillson Sea\n\n14) Babamots: Trade G1 R1 Babamots\n\n15) dlwillson: B G1 Sea\n\n16) Babamots: Build R1 Babamots\n\n17) dlwillson: T G1 R1 Sea\n\n18) Babamots: Move R1 Babamots Ferenginar\n\n19) dlwillson: B R2 Sea\n\n20) Babamots: Build R2 Ferenginar\n\n21) dlwillson: B Y2 Dlwillson\n\n22) Babamots: Build Y3 Ferenginar\n\n23) dlwillson: B Y3 Sea\n\n24) Babamots: Discover R1 Ferenginar Y3 Iconia\n\n25) dlwillson: T Y1 B1 Sea\n\n26) Babamots: Sacrifice G3 Babamots\nBuild R2 Ferenginar\nBuild R3 Iconia\nBuild R3 Babamots\n\n27) dlwillson: D R2 Sea G2 Sky\n\n28) Babamots: Trade R1 B1 Babamots\n\n29) dlwillson: B R1 Sky\n\n30) Babamots: Move B1 Babamots Ferenginar\n\n31) dlwillson: M B1 Sea Sky\n\n32) Babamots: Move R3 Iconia Sky\n\n33) dlwillson: B B2 Sky\n\n34) Babamots: Sacrifice R2 Ferenginar\nAttack R2 Sky\nAttack B2 Sky\n\n35) dlwillson: B R2 Sky\nC Sky R\n\n36) Babamots: Build B2 Ferenginar\n\n37) dlwillson: B B3 Sky\n\n38) Babamots: Build B3 Sky\nCatastrophe Sky B\n\n39) dlwillson: B G1 Dlwillson\n\n40) Babamots: Build B1 Ferenginar\n\n41) dlwillson: B G1 Sea\n\n42) Babamots: Sacrifice Y3 Ferenginar\nMove B1 Ferenginar Sea\nMove B1 Ferenginar Sea\nMove B2 Ferenginar Sea\nCatastrophe Sea B\n\n43) dlwillson: T G1 R1 Dlwillson\n\n44) Babamots: Trade R3 G3 Babamots\n\n45) dlwillson: D Y2 Dlwillson G1 Field\n\n46) Babamots: Build G1 Babamots\n\n47) dlwillson: M R1 Dlwillson Field\n\n48) Babamots: Trade G1 R1 Babamots\n\n49) dlwillson: D Y2 Field G2 Forest\n\n50) Babamots: Discover Y2 Babamots R2 Romulus\n\n51) dlwillson: B G1 Dlwillson\n\n52) Babamots: Sacrifice G3 Babamots\nBuild R2 Ferenginar\nBuild R3 Iconia\nBuild R3 Babamots\n\n53) dlwillson: B G1 Dlwillson\n\n54) Babamots: Move Y2 Romulus Field\n\n\tBabamots: Sorry, I had been planning to hit the admin button this morning but I got busy and forgot. I hope you don&#39;t feel robbed.\n\tdlwillson: Meh. I was stuck for a good response, so I&#39;d say the win is pretty legit. I might&#39;ve been able to swing around, but probably not. Good game, if short. I&#39;m going to take down my challenges and just play whatever ladder matches come up until I&#39;m less busy.\n\tBabamots: Well, I hope life leaves you time to have the fun you want soon. Thanks for the game! See you around!\n\nHomeworlds Online (SDG# 35189)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.11, Ended: 2019.7.7\nParticipants: dougforte (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld B1 Y3 G3\n\tLaurie_Menke: Hi again, dougforte! Have fun!  (Also, if you&#39;re new to Homeworlds, feel free to ask questions!)\n\n2) dougforte: Homeworld G3 B2 Y3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tdougforte: Thanks, you too!  I started with blue and green to avoid the system warning this time, so I might survive the first turn.  :)\n\tdougforte: I&#39;ll probably have some useful questions at some point as well, thanks!\n\tLaurie_Menke: A fine choice! Be sure to grow a ship in your Homeworld before venturing out... you always need to leave a ship in your Homeworld.\n\n4) dougforte: Build Y1 Dougforte\n\n5) Laurie_Menke: Build G1 Laurie_menke\n\tdougforte: A good reminder, thanks.  I successfully built a ship!\n\tLaurie_Menke: Yay!  :)\n\n6) dougforte: Build Y1 Dougforte\n\n7) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n8) dougforte: Trade Y1 B1 Dougforte\n\n9) Laurie_Menke: Discover Y1 Laurie_menke B2 Danube\n\tdougforte: I see trading is how to get different colored ships.\n\tLaurie_Menke: Yes. Mostly trading. Sometimes attacking/taking over.  :)\n\n10) dougforte: Trade Y1 R1 Dougforte\n\n11) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tdougforte: Right, I don&#39;t think I&#39;m quite ready for that, though, but trading I can manage.  :)\n\tLaurie_Menke: :)\n\n12) dougforte: Build Y1 Dougforte\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\n14) dougforte: Discover Y3 Dougforte G1 Rhine\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) dougforte: Move B1 Dougforte Rhine\n\tLaurie_Menke: Warning: Tomorrow I leave for a six day business trip. I may not play my turn again until I get back. Sorry for the delay.\n\n17) Laurie_Menke: Discover Y1 Danube B1 Colorado\n\tdougforte: No worries, I hope the trip goes well.  :)\n\tLaurie_Menke: Thanks! I&#39;m back, and all went well. Now I just need to get rid of the cold I caught.  :/\n\n18) dougforte: Build B2 Rhine\n\n19) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y1 Colorado\n\tdougforte: Glad to hear it, though a cold is an unfortunate souvenir.\n\n20) dougforte: Build Y2 Dougforte\n\n21) Laurie_Menke: Build G1 Laurie_menke\n\n22) dougforte: Build Y2 Dougforte\n\n23) Laurie_Menke: Move Y1 Colorado Dougforte\nCatastrophe Dougforte Y\n\n24) dougforte: Trade B2 G2 Rhine\n\n25) Laurie_Menke: Discover G1 Laurie_menke Y2 Steppingstone\n\tLaurie_Menke: Sorry. :(  Always a hard lesson to learn.\n\n26) dougforte: Build G2 Rhine\n\tdougforte: No worries, it&#39;s good to see a catastrophe, is something I wouldn&#39;t normally expect to say.  :)\n\tdougforte: Still, maybe next time I can see it coming in advance...\n\tLaurie_Menke: :)\n\n27) Laurie_Menke: Move G1 Steppingstone Colorado\n\n28) dougforte: Trade G2 Y2 Rhine\n\n29) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Colorado\nBuild G2 Colorado\nBuild G3 Laurie_menke\n\n30) dougforte: Build G3 Rhine\n\tLaurie_Menke: This move is called a Factory...\n\n31) Laurie_Menke: Trade G2 R2 Colorado\n\tLaurie_Menke: Because even though you sacrifice your piece, you get it back plus two more.\n\tdougforte: Right, I figured the sacrifice can be powerful, I just don&#39;t know what to do with it yet.  :)\n\n32) dougforte: Move Y3 Rhine Dougforte\n\n33) Laurie_Menke: Trade G2 Y2 Colorado\n\n34) dougforte: Build Y1 Rhine\n\n35) Laurie_Menke: Sacrifice Y2 Colorado\nMove G1 Colorado Dougforte\nMove G1 Dougforte Rhine\nCatastrophe Rhine G\n\n36) dougforte: Trade R1 G1 Dougforte\n\n37) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y1 Colorado\n\tLaurie_Menke: I&#39;m very sorry. But the best way to learn is to see if happen.\n\n38) dougforte: Build G1 Dougforte\n\n39) Laurie_Menke: Move Y1 Colorado Dougforte\n\tdougforte: It&#39;s okay, I appreciate learning, even if it seems to take me a while.  :)\n\tLaurie_Menke: Oh, no... you&#39;re learning quite quickly! I&#39;ve been telling Andy that he&#39;ll have to look out for you soon. This is just a game that takes a long time to get good at.  :)\n\n40) dougforte: Trade G1 R1 Dougforte\n\tdougforte: Thank you!  I agree, I think it will be several games before I&#39;m able to put up any real challenge.\n\tdougforte: Is Andy also on the ladder?\n\n41) Laurie_Menke: Sacrifice R2 Colorado\nAttack R1 Dougforte\nAttack G1 Dougforte\n\tLaurie_Menke: No, he finds it hard to play on SDG because of the random way new star systems are added to the universe. He prefers to put the pieces in a very specific way and SDG can&#39;t do it that way. But hopefully you&#39;ll get a chance to challenge him in person sometime soon.  :)\n\n42) dougforte: Build Y1 Dougforte\n\tDraw5PlayAll: AFAICT they are sorted in alphabetical order.\n\tLaurie_Menke: Huh... I&#39;d never noticed. I don&#39;t think there&#39;s any way we could use that fact to create what Andy wants, but I&#39;ll have to think about that.\n\tdougforte: Ah, I see.  I haven&#39;t played these games IRL, so for me getting used to how the user interface works here is just part of learning the game, but I certainly understand having issues with it (or any interface in general).\n\tdougforte: Also real pieces can be quite nice, and I&#39;m sure that&#39;s true for some of these pyramid sets.  :)\n\n43) Laurie_Menke: Build Y2 Dougforte\nCatastrophe Dougforte Y\n\tLaurie_Menke: Oh absolutely, dougforte! You&#39;ll probably find more people to play with here on SDG, but nothing beats playing with the real pieces.  :)\n\tLaurie_Menke: Oops! Don&#39;t forget about catastrophes! Either side can call a catastrophe. Would you like to undo that last move?\n\tdougforte: Ah, thanks for the reminder.  :)  At least I checked ships this time, but I&#39;ll have to remember to look at all pieces, including system markers...\n\n\tdougforte: Good sacrifice!  I&#39;m lucky there&#39;s still a move for me, options seem to be limited...\n\tLaurie_Menke: Yes, I&#39;m afraid you&#39;re nearing the end of your game unless you pull off something unexpected.\n\tLaurie_Menke: Thanks for the fun! I expect you to be a force to be reckoned with very soon!  Feel free to challenge me any time!  :)\n\tdougforte: I will, once I get off the bottom of the ladder, of course.  :)\n\tdougforte: Very soon may be optimistic, there&#39;s still a lot for me to learn.  Anyway, thanks for the game!\n\tLaurie_Menke: :)\n\nHomeworlds Online (SDG# 35114)\nStarted: 2019.5.12, Ended: 2019.7.21\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Pass\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tts52: sorry for the delay. have a good game!\n\n6) ts52: Build G1 Ts52\n\n7) Draw5PlayAll: Build G2 Draw5playall\n\n8) ts52: Trade G1 Y1 Ts52\n\tDraw5PlayAll: Ha\n\n9) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n10) ts52: T G1 B1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Discover B1 Ts52 G3 Kermit\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) ts52: Build G1 Ts52\n\n15) Draw5PlayAll: Discover Y2 Draw5playall B2 Trade\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n18) ts52: Build Y2 Kermit\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) ts52: Build B1 Kermit\n\n21) Draw5PlayAll: Move G1 Draw5playall Trade\n\n22) ts52: Discover B1 Kermit G2 Robin\n\n23) Draw5PlayAll: Discover B1 Draw5playall G2 Build\n\n24) ts52: Trade G1 R1 Ts52\n\n25) Draw5PlayAll: Trade Y2 R2 Trade\n\n26) ts52: Build Y2 Kermit\n\n27) Draw5PlayAll: Build Y2 Draw5playall\n\n28) ts52: Move Y2 Kermit Robin\n\n29) Draw5PlayAll: Move Y1 Draw5playall Trade\n\n30) ts52: Build Y3 Robin\n\n31) Draw5PlayAll: Build Y3 Trade\n\n32) ts52: Trade Y2 R2 Kermit\n\n33) Draw5PlayAll: Discover Y1 Trade G1 Construct\n\n34) ts52: Move R2 Kermit Build\n\n35) Draw5PlayAll: Build G1 Draw5playall\n\n36) ts52: Attack B1N Build\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Construct\nBuild Y3 Draw5playall\nBuild G2 Trade\n\n38) ts52: Build G3 Ts52\n\n39) Draw5PlayAll: Build R1 Trade\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Robin\nBuild B3 Kermit\n\n41) Draw5PlayAll: Discover R1 Trade B3 Convert\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Build\n\n43) Draw5PlayAll: Sacrifice G2 Trade\nBuild R3 Convert\nBuild R3 Trade\n\n44) ts52: Move B3 Kermit Construct\n\n45) Draw5PlayAll: Sacrifice Y1 Construct\nMove Y2 Construct Convert\n\n46) ts52: Build Y1 Kermit\n\n47) Draw5PlayAll: Move R3 Trade Kermit\n\n48) ts52: Move Y1 Kermit Build\n\n49) Draw5PlayAll: Discover Y2 Draw5playall G2 Create\n\n50) ts52: Move B1 Robin Draw5playall\n\n51) Draw5PlayAll: Sacrifice Y2 Convert\nMove R1 Convert Build\nMove R3 Convert Build\nCatastrophe Build Red\n\n52) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Build\nBuild B3 Build\n\n53) Draw5PlayAll: Build R1 Kermit\n\n54) ts52: Move Y2 Build Draw5playall\n\n55) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\tDraw5PlayAll: Uh oh\n\n56) ts52: Discover R2 Ts52 Y3 Bigbird\n\n57) Draw5PlayAll: Attack Y2 Draw5playall\n\n58) ts52: Sacrifice Y3 Robin\nMove B1 Build Draw5playall\nMove B2 Robin Draw5playall\nCatastrophe Draw5playall B\nMove R2 Bigbird Draw5playall\n\n59) Draw5PlayAll: Sacrifice R3 Draw5playall\nAttack R2 Draw5playall\nAttack B1 Kermit\nAttack Y1 Kermit\n\tDraw5PlayAll: ***** This game is NOT for the tournament *****\n\n60) ts52: Move B3 Build Draw5playall\n\n61) Draw5PlayAll: Sacrifice Y2 Create\nMove R3 Kermit Draw5playall\nMove Y3 Trade Draw5playall\n\tts52: Indeed. This started long before the tournament, and I haven&#39;t even registered yet.\n\n62) ts52: Sacrifice Y2 Robin\nMove R1 Ts52 Kermit\nMove R1 Kermit Draw5playall\nCatastrophe Draw5playall Red\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 35168)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.12, Ended: 2019.6.12\nParticipants: Simon (S), Draw5PlayAll (N)\nWinner: Simon\n\n1) Draw5PlayAll: Pass\n\tSimon: Have fun!\n\n2) Simon: Homeworld G3 R1 B3\n\n3) Draw5PlayAll: Homeworld B3 R2 G3\n\n4) Simon: Build B1 Simon\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Simon: Build B1 Simon\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Simon: Trade B3 Y3 Simon\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Simon: Build B2 Simon\n\n11) Draw5PlayAll: Build B2 Draw5playall\n\n12) Simon: Discover B2 Simon G2 G2\n\n13) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n14) Simon: Build B2 G2\n\n15) Draw5PlayAll: Discover B1 Draw5playall G1 Build\n\n16) Simon: Trade B2 Y2 G2\n\n17) Draw5PlayAll: Build B2 Build\n\n18) Simon: Build B2 G2\n\n19) Draw5PlayAll: Trade B2 R2 Build\n\n20) Simon: Trade B2 R2 G2\n\n21) Draw5PlayAll: Build B2 Build\n\n22) Simon: Build R1 G2\n\n23) Draw5PlayAll: Trade B1 Y1 Build\n\n24) Simon: Discover R2 G2 Y1 Y1\n\n25) Draw5PlayAll: Build Y1 Build\n\n26) Simon: Build Y2 G2\n\n27) Draw5PlayAll: Build Y3 Draw5playall\n\n28) Simon: Build Y3 Simon\n\n29) Draw5PlayAll: Discover G1 Draw5playall R1 Attack\n\n30) Simon: Trade Y3 G3 Simon\n\n31) Draw5PlayAll: Build R3 Build\n\n32) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild R3 Y1\nBuild R3 G2\n\n33) Draw5PlayAll: Discover R2 Build B2 Trade\n\n34) Simon: Build B1 G2\n\n35) Draw5PlayAll: Build B3 Build\n\n36) Simon: Sacrifice Y2 G2\nMove R3 Y1 Draw5playall\nDiscover B1 Simon G2 G2a\n\n37) Draw5PlayAll: Attack R3 Draw5playall\n\tDraw5PlayAll: ?!?\n\n38) Simon: Sacrifice Y3 Simon\nMove R2 Y1 Draw5playall\nMove R1 G2 Attack\nMove R1 Attack Draw5playall\nCatastrophe Draw5playall Red\n\tDraw5PlayAll: Oh, nice.\n\n39) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B2 Build G2\nMove B3 Build G2\nCatastrophe G2 Blue\n\n40) Simon: Build B1 G2a\n\tSimon: Thanks. Although it felt very early too and I didn&#39;t see it at first.\n\n41) Draw5PlayAll: Move R3 Build G2a\n\n42) Simon: Sacrifice Y2 G2\nMove B1 G2a Draw5playall\nMove B1 G2a Draw5playall\n\n43) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R3 G2a Simon\nMove R2 Trade Simon\nMove Y1 Build Draw5playall\n\tDraw5PlayAll: HaNgInGbYaThReAd\n\n44) Simon: Sacrifice Y3 Simon\nMove B1 Simon G2\nMove B1 G2 Draw5playall\nMove R3 G2 Simon\nCatastrophe Draw5playall Blue\n\n\tDraw5PlayAll: I can survive one more move...\n\tSimon: Hmm, catastrophe is optional in any ruleset that I know. :-) Thanks for game, rematch anytime!\n\nHomeworlds Online (SDG# 35197)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.14, Ended: 2019.5.30\nParticipants: Simon (S), ajo (N)\nWinner: Simon\n\n1) ajo: Homeworld B2 R1 G3\n\n2) Simon: Homeworld Y1 G3 B3\n\tSimon: Have fun :)\n\n3) ajo: Build G1 Ajo\n\n4) Simon: Build B1 Simon\n\tajo: You too!\n\n5) ajo: Trade G1 B1 Ajo\n\n6) Simon: Trade B1 R1 Simon\n\n7) ajo: Build G1 Ajo\n\n8) Simon: Build R1 Simon\n\n9) ajo: Build G1 Ajo\n\n10) Simon: Build R2 Simon\n\n11) ajo: Trade G1 Y1 Ajo\n\n12) Simon: Discover R2 Simon G2 G2\n\n13) ajo: Build Y1 Ajo\n\n14) Simon: Build B1 Simon\n\n15) ajo: Build Y2 Ajo\n\n16) Simon: Move B1 Simon G2\n\n17) ajo: Discover Y2 Ajo B3 Alpha\n\n18) Simon: Build R2 G2\n\n19) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y2 Alpha\nBuild Y3 Ajo\n\n20) Simon: Build R2 Simon\n\n21) ajo: Trade Y2 G2 Alpha\n\n22) Simon: Build R3 G2\n\n23) ajo: Discover Y2 Alpha B2 Beta\n\n24) Simon: Trade R3 Y3 G2\n\n25) ajo: Trade Y3 R3 Ajo\n\n26) Simon: Move R2 G2 Alpha\n\n27) ajo: Sacrifice G2 Alpha\nBuild Y2 Ajo\nBuild Y3 Beta\n\n28) Simon: Build Y3 G2\n\n29) ajo: Trade Y3 R3 Beta\n\n30) Simon: Sacrifice Y3 G2\nMove R2 G2 Alpha\nMove R2 Alpha Ajo\nMove R2 Alpha Ajo\nCatastrophe Ajo Red\n\n31) ajo: Sacrifice Y2 Alpha\nMove B1 Ajo Simon\nMove R3 Beta Simon\nCatastrophe Simon Red\n\tajo: I saw that but for some reason thought you wouldn&#39;t do it. ...And then I completely missed that you have a Doomsday Machine already assembled! I think I lose.\n\n32) Simon: Trade B3 R3 Simon\n\n33) ajo: Sacrifice B1 Simon\nTrade Y2 R2 Ajo\n\tSimon: Right, the attack looks very early. It really needed the leftover b1 at your home to be a big enough threat.\n\tajo: And in fact, having neutralized your threat already by catastropheing red, I really should have left my b1 at home instead of putting it into harm&#39;s way. Now I have to rescue it. :(\n\n34) Simon: Move B1 G2 Simon\n\n35) ajo: Trade Y2 R2 Beta\n\n36) Simon: Build B1 Simon\n\n37) ajo: Build Y2 Ajo\n\n38) Simon: Build B1 Simon\n\n39) ajo: Pass\n\tajo: Oh, I missed my chance. I should have done &quot;trade r2 Beta b2&quot; last turn.\n\n40) Simon: Sacrifice Y3 G2\nMove B1 Simon Ajo\nMove B1 Simon Ajo\nMove B1 Simon Ajo\nCatastrophe Ajo Blue\n\tSimon: Yeah, that would prolong the game. Probably still slanted towards me but no immediate win. :-) Still, thanks for the game!\n\n\nHomeworlds Online (SDG# 35206)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.18, Ended: 2019.5.31\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: TY! GL! HF!\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\tTrydnt: You too!\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n\tdlwillson: What happened? \n\nHomeworlds Online (SDG# 35072)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.19, Ended: 2019.6.23\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\twil: Gl\n\n3) wil: B G1 Wil\n\tDraw5PlayAll: Prepare to lose.\n\twil: Blue instafreeze eh\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) wil: B G1 Wil\n\tDraw5PlayAll: Green instafreeze = crushing\r\nBlue instafreeze = strong\r\nYellow instafreeze = risky\r\nRed instafreeze = You cannot do anything!!\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) wil: D G1 Wil B3 B3\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) wil: B G1 B3\n\n10) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n11) wil: B G2 B3\n\n12) Draw5PlayAll: Build B2 Build\n\n13) wil: T G2 B2 B3\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) wil: B G2 Wil\n\n16) Draw5PlayAll: Build B3 Build\n\n17) wil: D G1 Wil Y3 Y3\n\n18) Draw5PlayAll: Build B3 Draw5playall\n\n19) wil: S G3 Wil\nB G2 Y3\nB G3 B3\nB G3 Wil\n\n20) Draw5PlayAll: Trade B3 R3 Build\n\n21) wil: S B2 B3\nT G2 R2 Y3\nT G3 Y3 B3\n\n22) Draw5PlayAll: Discover B3 Draw5playall G2 Construct\n\n23) wil: S G3 Wil\nB G3 Wil\nB G3 Y3\nB R1 Y3\n\n24) Draw5PlayAll: Build B2 Construct\n\n25) wil: B Y1 B3\n\n26) Draw5PlayAll: Build B3 Build\n\n27) wil: D R2 Y3 Y2 Y2\n\n28) Draw5PlayAll: Build R1 Build\n\tDraw5PlayAll: There is one small problem with this.\r\n\r\nI have no idea how to actually WIN from here.\n\n29) wil: S G3 Wil\nB R1 Y2\nB R2 Y2\nB G3 Wil\n\twil: Then prepare to lose.\n\twil: Heck we are only 14 moves in.\n\n30) Draw5PlayAll: Trade B3 R3 Construct\n\n31) wil: S Y3 B3\nM G1 B3 Build\nM G1 B3 Build\nM G1 Y3 Build\nC Build G\n\n32) Draw5PlayAll: Build B2 Construct\n\n33) wil: T G2 B2 Wil\n\n34) Draw5PlayAll: Build B3 Construct\n\n35) wil: B B3 Wil\n\n36) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B2 Construct B3\nMove B2 B3 Wil\nMove B3 Construct Draw5playall\nCatastrophe Wil Blue\n\n37) wil: B G1 Wil\n\n38) Draw5PlayAll: Build R1 Construct\n\tDraw5PlayAll: I will regret this, but I would also regret NOT doing so.\n\n39) wil: B G1 Y3\n\tDraw5PlayAll: Oh, the Homeworlds are connected now. I think I am still safe. For now.\n\n40) Draw5PlayAll: Trade B1 G1 Draw5playall\n\n41) wil: B R2 Y3\n\n42) Draw5PlayAll: Build Y1 Draw5playall\n\n43) wil: D R1 Y3 G2 G2\n\n44) Draw5PlayAll: Trade B3 R3 Draw5playall\n\n45) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB R3 G2\n\tDraw5PlayAll: Risks are made to be taken.\n\n46) Draw5PlayAll: Move Y1 Draw5playall Construct\n\n47) wil: S Y1 B3\nD R3 G2 B3 B3\n\n48) Draw5PlayAll: Build Y1 Draw5playall\n\n49) wil: T R3 Y3 B3\n\n50) Draw5PlayAll: Build Y2 Construct\n\n51) wil: S G3 Wil\nB G3 Wil\nB R3 G2\nB Y3 B3\n\twil: Oopsie\n\n52) Draw5PlayAll: Sacrifice Y2 Construct\nMove G1 Draw5playall Wil\nMove G1 Wil Y3\nCatastrophe Y3 Green\n\tDraw5PlayAll: Your stuff looks very threatening, but I don&#39;t think it can do anything.\n\n53) wil: M R1 Y2 Draw5playall\n\n54) Draw5PlayAll: Trade R3 B3 Draw5playall\n\n55) wil: A Y1 Draw5playall\n\n56) Draw5PlayAll: Sacrifice R1 Construct\nAttack R1 Draw5playall\n\n57) wil: S R2 Y3\nA Y1 Draw5playall\nA R1 Draw5playall\n\twil: Well dangit you made me change plans\n\n58) Draw5PlayAll: Build B1 Construct\n\tDraw5PlayAll: You will NOT blow up my only good peripheral system!!\n\n59) wil: T Y1 B1 Draw5playall\n\twil: Ok\n\n60) Draw5PlayAll: Trade B3 G3 Draw5playall\n\tDraw5PlayAll: I regret allowing you to blow up the build system earlier...\n\n61) wil: T R1 G1 Draw5playall\n\twil: I may have forgot to prepare to lose.\n\twil: Its not to late is it?\n\n62) Draw5PlayAll: Move R3 Construct Draw5playall\n\n63) wil: S G3 Wil\nB G1 Draw5playall\nB B2 Draw5playall\nB B2 Draw5playall\nC Draw5playall B\nC Draw5playall G\n\twil: Got your will written?\n\tDraw5PlayAll: You are persistent, but I fail to see your plan.\n\n\twil: That was.different.\n\twil: I kept forgetting to lose, challenge me anytime.\n\twil: I like instafreeze attempts, keep trying!\n\tDraw5PlayAll: My mistake was letting you blow up build and take down like all my stuff with it... otherwise I would have had a crushing lockdown on red.\n\twil: I so wish we could replay from there...\n\tDraw5PlayAll: Well, it seems I should never have had like 5 ships there in the first place. It was not a &quot;oh I missed a single move&quot; problem...\n\nHomeworlds Online (SDG# 35194)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.26, Ended: 2019.6.22\nParticipants: Simon (S), dragon76n (N)\nWinner: Simon\n\n1) dragon76n: Homeworld B2 G1 Y3\n\n2) Simon: Homeworld G1 B3 G3 *\n\tSimon: Hi, have fun!\n\n3) dragon76n: Build Y1 Dragon76n\n\tdragon76n: Hi Simon! I think this is the first time I&#39;ve played against you. Have fun.\n\n4) Simon: Build G1 Simon\n\n5) dragon76n: Build Y1 Dragon76n\n\n6) Simon: Trade G3 Y3 Simon\n\n7) dragon76n: Trade Y3 G3 Dragon76n\n\n8) Simon: Build G2 Simon\n\n9) dragon76n: Discover G3 Dragon76n B3 Bluthr\n\n10) Simon: Trade G1 R1 Simon\n\n11) dragon76n: B G1 Bluthr\n\n12) Simon: Build G2 Simon\n\n13) dragon76n: Move Y1 Dragon76n Bluthr\n\n14) Simon: Discover G2 Simon B2 B2\n\n15) dragon76n: Discover G1 Bluthr Y2 Yeltwo\n\n16) Simon: Move G2 Simon Yeltwo\n\n17) dragon76n: Build G2 Bluthr\n\n18) Simon: Build G3 B2\n\n19) dragon76n: Build G3 Yeltwo\n\n20) Simon: Sacrifice G2 B2\nBuild G2 Yeltwo\nBuild R1 Simon\nCatastrophe Yeltwo Green\n\n21) dragon76n: Trade G2 R2 Bluthr\n\n22) Simon: Move R1 Simon B2\n\n23) dragon76n: Move G3 Bluthr Dragon76n\n\n24) Simon: Build G1 B2\n\n25) dragon76n: Discover R2 Bluthr Y1 Yelone\n\n26) Simon: Build G2 B2\n\n27) dragon76n: Discover R2 Yelone G2 Gretwo\n\n28) Simon: Trade G3 Y3 B2\n\n29) dragon76n: Build R1 Gretwo\n\n30) Simon: Build G2 B2\n\n31) dragon76n: Move Y1 Bluthr Gretwo\n\n32) Simon: Discover G2 B2 B3 B3\n\n33) dragon76n: Build R2 Gretwo\n\n34) Simon: Build G3 B3\n\n35) dragon76n: T G3 R3 Dragon76n\n\n36) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild G3 B3\nBuild G3 B2\n\n37) dragon76n: Discover R2 Gretwo Y3 Yelthr\n\n38) Simon: Trade G3 B3 B2\n\n39) dragon76n: Build R2 Dragon76n\n\n40) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild R3 B2\nBuild R3 Simon\n\n41) dragon76n: T R2 B2 Dragon76n\n\n42) Simon: Discover B3 B2 G3 G3\n\n43) dragon76n: Trade B2 Y2 Dragon76n\n\n44) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild B1 G3\nBuild B1 G3\n\n45) dragon76n: Discover R2 Gretwo B1 Bluone\n\n46) Simon: Sacrifice Y3 B2\nMove B1 G3 Dragon76n\nMove B1 G3 Dragon76n\nMove B3 G3 Dragon76n\nCatastrophe Dragon76n Blue\n\n47) dragon76n: Move R3 Dragon76n B3\n\n48) Simon: Sacrifice Y3 Simon\nMove G3 B3 Dragon76n\nMove G3 B3 Dragon76n\nMove G2 B3 Dragon76n\nCatastrophe Dragon76n Green\n\n\tSimon: Hmm, whenever first player has a g1 or b1 in the homeworld, second player can start with the instant green/blue freezeout opening that duplicates that 1 and has a ship of same color. It dictates many first moves for second player though. &lt;_&lt;\n\tdragon76n: Good game. Thanks for the tip. I&#39;ll try to keep that in mind in the future. \n\tSimon: gg!\n\nHomeworlds Online (SDG# 35061)\nVariants: &quot;Unrated&quot;\nStarted: 2019.5.28, Ended: 2019.6.24\nParticipants: Horizon (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: Thanks for the game have you played before.\n\n\twil: New to sdg? Homeworlds?\n\nHomeworlds Online (SDG# 35231)\nVariants: &quot;Hard time&quot;\nStarted: 2019.5.30, Ended: 2019.6.5\nParticipants: Simon (S), goulo (N)\nWinner: Simon\n\n1) goulo: Homeworld R3 B1 G3\n\n2) Simon: Homeworld R2 G1 B3\n\tgoulo: hi, have fun!\n\tSimon: You too, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Simon: Build B1 Simon\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Simon: Build B1 Simon\n\n7) goulo: Build G1 Goulo\n\n8) Simon: Trade B3 Y3 Simon\n\n9) goulo: Build G1 Goulo\n\n10) Simon: Build B2 Simon\n\n11) goulo: Discover G1 Goulo Y2 Flavo\n\n12) Simon: Trade B2 G2 Simon\n\n13) goulo: Build G2 Flavo\n\n14) Simon: Discover G2 Simon B3 B3\n\n15) goulo: Discover G1 Flavo Y3 Flavego\n\n16) Simon: Build B2 Simon\n\n17) goulo: Build Y1 Goulo\n\n18) Simon: Discover B1 Simon G3 G3\n\n19) goulo: Sacrifice G3 Goulo\nBuild G2 Flavo\nBuild G3 Flavego\nBuild G3 Goulo\n\n20) Simon: Build B2 G3\n\n21) goulo: Trade Y1 R1 Goulo\n\n22) Simon: Build B2 Simon\n\n23) goulo: Move G2 Flavo B3\n\n24) Simon: Move B2 Simon B3\n\n25) goulo: Sacrifice R1 Goulo\nAttack B2 B3\n\n26) Simon: Trade B2 R2 G3\n\n27) goulo: Sacrifice G2 B3\nBuild B2 B3\nBuild B3 B3\nCatastrophe B3 B\n\n28) Simon: Build B2 G3\n\n29) goulo: Trade G1 R1 Goulo\n\n30) Simon: Build B2 Simon\n\n31) goulo: Build Y1 Goulo\n\n32) Simon: Build B3 G3\n\n33) goulo: Discover Y1 Goulo R2 Rubeno\n\n34) Simon: Trade B3 Y3 G3\n\n35) goulo: Build G1 Flavego\n\n36) Simon: Trade B2 G2 G3\n\n37) goulo: Move G1 Flavego Simon\n\n38) Simon: Attack G1 Simon\n\n39) goulo: Move G1 Flavego Simon\n\n40) Simon: Sacrifice Y3 G3\nDiscover G1 Simon B3 B3\nMove B2 Simon G3\nDiscover B2 G3 G2 G2\n\n41) goulo: Sacrifice G2 Flavo\nBuild G2 Simon\nBuild R1 Goulo\n\tSimon: Expensive defense. x_X I am used to a 1-3 homeworld, and thus planned to move the captured g1 to the leftover g2, but now it costs a y3 sac to accomplish both.\n\n42) Simon: Build R1 G3\n\n43) goulo: Sacrifice G3 Flavego\nBuild G3 Simon\nBuild Y1 Goulo\nBuild Y2 Goulo\nCatastrophe Simon G\n\n44) Simon: Sacrifice Y3 Simon\nMove R1 G3 G2\nMove R1 G2 Goulo\nMove B2 G2 Goulo\nCatastrophe Goulo Red\n\n45) goulo: Move G3 Goulo Simon\n\n46) Simon: Trade B2 Y2 Goulo\nCatastrophe Goulo Yellow\n\tgoulo: hmm, uh-oh! well, at least I went down fighting. :P\n\n\tSimon: Yes, considerable attack, and I should have taken countermeasures much earlier. The counterattack hinged on your extra r1.\n\tgoulo: thanks for the game!\n\tSimon: Thanks, gg!\n\nHomeworlds Online (SDG# 35134)\nVariants: &quot;Unrated&quot;\nStarted: 2019.5.31, Ended: 2019.6.29\nParticipants: Trydnt (S), Hg80 (N)\nWinner: Trydnt\n\n1) Hg80: Homeworld B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) Hg80: Build G1 Hg80\n\n4) Trydnt: Build G1 Trydnt\n\n5) Hg80: Trade G1 Y1 Hg80\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Hg80: Build G1 Hg80\n\n8) Trydnt: Build R1 Trydnt\n\n9) Hg80: Discover G1 Hg80 B2 Alchem\n\n10) Trydnt: Build R2 Trydnt\n\n11) Hg80: Build G1 Alchem\n\n12) Trydnt: Discover R2 Trydnt Y1 Y1\n\n13) Hg80: Build G1 Hg80\n\n14) Trydnt: Move R2 Y1 Alchem\n\n15) Hg80: Sacrifice G1 Alchem\nBuild Y1 Hg80\n\n16) Trydnt: Attack G1 Alchem\n\n17) Hg80: Discover Y1 Hg80 G2 Idunno\n\n18) Trydnt: Build R2 Alchem\n\n19) Hg80: Trade G3 R3 Hg80\n\n20) Trydnt: Trade R2 Y2 Alchem\n\n21) Hg80: Build Y1 Idunno\n\n22) Trydnt: Build Y2 Alchem\n\n23) Hg80: Build Y2 Hg80\n\n24) Trydnt: Discover Y2 Alchem G3 G3\n\n25) Hg80: Trade Y1 B1 Hg80\n\n26) Trydnt: Discover R2 Alchem G3 Gee3\n\n27) Hg80: Move Y1 Idunno G3\n\n28) Trydnt: Build R2 Gee3\n\n29) Hg80: Build Y1 Idunno\n\n30) Trydnt: Sacrifice Y2 G3\nDiscover R2 Gee3 G2 G2\nMove R2 Gee3 Idunno\n\n31) Hg80: Build Y2 Idunno\n\n32) Trydnt: Attack Y2 Idunno\n\n33) Hg80: Build Y3 Hg80\n\n34) Trydnt: Sacrifice Y2 Idunno\nMove R2 Idunno Hg80\nMove R2 G2 Hg80\nCatastrophe Hg80 R\n\n35) Hg80: Trade Y3 R3 Hg80\n\n36) Trydnt: Trade R1 B1 Trydnt\n\n37) Hg80: Build G1 Hg80\n\n38) Trydnt: Build G2 Alchem\n\n39) Hg80: Move B1 Hg80 Idunno\n\n40) Trydnt: Discover G2 Alchem Y3 Y3\n\n41) Hg80: Build B1 Idunno\n\n42) Trydnt: Discover B1 Trydnt R1 R1\n\n43) Hg80: Build Y2 Hg80\n\n44) Trydnt: Build Y3 Alchem\n\n45) Hg80: Sacrifice Y2 Hg80\nMove Y2 Hg80 Alchem\nMove Y1 G3 Alchem\nCatastrophe Alchem Y\n\n46) Trydnt: Sacrifice G1 Alchem\nBuild B2 R1\n\n47) Hg80: Trade G1 Y1 Hg80\n\n48) Trydnt: Trade B2 Y2 R1\n\n49) Hg80: Trade Y1 R1 Idunno\n\n50) Trydnt: Sacrifice G2 Y3\nBuild B2 R1\nBuild R2 Trydnt\n\n51) Hg80: Build R2 Idunno\n\n52) Trydnt: Discover B2 R1 G2 G2\n\n53) Hg80: Build R2 Hg80\n\n54) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Trydnt\nBuild B2 R1\nBuild B3 G2\n\n55) Hg80: Discover R1 Idunno Y1 Kamik\n\n56) Trydnt: Move R2 Trydnt Kamik\n\n57) Hg80: Build R3 Idunno\n\n58) Trydnt: Attack R1 Kamik\n\n59) Hg80: Move R3 Idunno Kamik\n\n60) Trydnt: Move B1 R1 Hg80\n\n\tHg80: I believe that&#39;s checkmate.\n\tTrydnt: indeed it is. well played\n\nHomeworlds Online (SDG# 35228)\nVariants: &quot;Unrated&quot;\nStarted: 2019.5.31, Ended: 2019.6.4\nParticipants: Hg80 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Hg80: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\twil: Goodluck, have fun!\n\n4) Hg80: Build G1 Hg80\n\tHg80: Thanks! My first game with another real person, incidentally\n\n5) wil: T G1 R1 Wil\n\n6) Hg80: Trade G1 Y1 Hg80\n\n7) wil: B R1 Wil\n\n8) Hg80: Build G1 Hg80\n\twil: only been playing with fake people?\n\tHg80: Well, playing with myself, but I guess &quot;second me&quot; is fake, so yes.\n\n9) wil: B R1 Wil\n\n10) Hg80: Build Y1 Hg80\n\twil: Do you own pyramid arcade\n\n11) wil: D R1 Wil G3 G3\n\tHg80: I do, yes.\n\n12) Hg80: Trade G3 R3 Hg80\n\twil: Don&#39;t let anyone monopolize an economy\n\twil: If someone gets a gun (red) get a gun.\n\twil: Worth rereading the hints and gambits.\n\n13) wil: D R1 Wil B3 B3\n\tHg80: fair enough\n\n14) Hg80: Discover Y1 Hg80 G1 Fleer\n\twil: Wow fast learner!\n\n15) wil: B G1 Wil\n\n16) Hg80: Build G2 Hg80\n\n17) wil: B G2 Wil\n\n18) Hg80: Build Y1 Hg80\n\n19) wil: T G2 Y2 Wil\n\n20) Hg80: Build Y2 Fleer\n\n21) wil: S G3 Wil\nB R2 B3\nB R2 Wil\nB R3 B3\n\n22) Hg80: Move Y2 Fleer G3\n\n23) wil: B R3 G3\n\n24) Hg80: Sacrifice Y2 G3\nDiscover G2 Hg80 B1 Tantrum\nMove Y1 Hg80 Tantrum\n\twil: Just visiting? Or ready to defect?\n\n25) wil: M Y2 Wil G3\n\tHg80: Visiting\n\tHg80: Okay, in all honesty, it was a misplay\n\tHg80: Like I said, still learning\n\twil: No worries, you learn by making mistakes.\n\n26) Hg80: Build G2 Tantrum\n\n27) wil: T R3 Y3 B3\n\n28) Hg80: Build Y2 Hg80\n\n29) wil: B Y3 G3\n\n30) Hg80: Build Y3 Tantrum\n\n31) wil: M R3 G3 Wil\n\n32) Hg80: Sacrifice Y2 Hg80\nMove Y1 Tantrum G3\nMove Y1 Fleer G3\nCatastrophe G3 Y\n\n33) wil: B R3 G3\n\n34) Hg80: Build G1 Hg80\n\n35) wil: T R3 G3 Wil\n\n36) Hg80: Trade Y3 R3 Tantrum\n\n37) wil: T R1 B1 Wil\n\n38) Hg80: Build R1 Tantrum\n\n39) wil: M B1 Wil G3\n\n40) Hg80: Build Y1 Hg80\n\n41) wil: T R3 Y3 G3\n\n42) Hg80: Trade R3 Y3 Tantrum\n\n43) wil: T R2 G2 B3\n\n44) Hg80: Build R2 Tantrum\n\n45) wil: S G3 Wil\nB G3 Wil\nB R3 B3\nB R3 G3\n\n46) Hg80: Sacrifice G2 Tantrum\nBuild G2 Hg80\nBuild G3 Tantrum\n\twil: The factory\n\n47) wil: D R3 B3 Y1 Y1\n\n48) Hg80: Trade R3 B3 Hg80\n\tHg80: Yeah, I was afraid of that\n\n49) wil: S G3 Wil\nB G3 Wil\nB R3 B3\nB Y2 G3\n\n50) Hg80: Sacrifice G1 Hg80\nBuild Y2 Tantrum\n\twil: Factory grinding on overtime\n\n51) wil: S G3 Wil\nB G1 B3\nB B2 G3\nB G3 Wil\n\n52) Hg80: Sacrifice Y3 Tantrum\nMove G1 Hg80 Tantrum\nMove G1 Tantrum B3\nMove G2 Tantrum B3\nCatastrophe B3 G\n\n53) wil: S G1 Wil\nB Y3 B3\n\n54) Hg80: Move Y1 Hg80 Tantrum\n\twil: And I appreciate the big fuel tanker\n\twil: I&#39;d rather you not have star access\n\twil: I thank you for banking some ones and\n\n55) wil: B B2 G3\n\tHg80: I&#39;m probably gonna lose, I&#39;ve kinda accepted that at this point, but I&#39;m gonna try to go out with a bang\n\tHg80: Be it a literal bang  or metaphorical\n\twil: Losing is learning.\n\twil: Then you try the tricks n see counters\n\twil: First.you see tricks used against you\n\n56) Hg80: Build G1 Tantrum\n\n57) wil: M B2 G3 Tantrum\n\n58) Hg80: Attack B2N Tantrum\n\n59) wil: S Y2 G3\nM B2 G3 Tantrum\nM B1 G3 Tantrum\nC Tantrum B\n\n60) Hg80: Build G1 Hg80\n\twil: All your eggs in one basket, pearl harbor \n\twil: Just a few moves to go not bad first game\n\n61) wil: S Y3 B3\nD R3 B3 Y1 Why1\nM R1 G3 Y1\nM R3 G3 Why1\n\n62) Hg80: Discover G1 Hg80 B1 Troll\n\twil: Singing doowaddy diddidum diddidoo\n\twil: Here we come justa walkin down da street\n\n63) wil: M R3 Y1 Hg80\n\n64) Hg80: Attack R3N Hg80\n\n65) wil: S Y3 G3\nM R3 Why1 Hg80\nM R1 Y1 Hg80\nC Hg80 R\nM R3 Why1 Hg80\n\n\twil: I&#39;ve thrown as many lessons and gambits in as I could\n\tHg80: Well, thanks for the tips! Good game.\n\twil: No worries, challenge anytime,.join the ladder\n\nHomeworlds Online (SDG# 35235)\nVariants: &quot;Unrated&quot;\nStarted: 2019.6.2, Ended: 2019.6.21\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\twil: Went to whytestone last night..\n\n3) wil: B G1 Wil\n\tTrydnt: excellent how is  the old place? \n\tTrydnt: thought about going for the blue freezeout but would have been too short a game\n\twil: I woulda killed ya\n\twil: All was well, quiet Saturday night\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) wil: B B2 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Trydnt: Trade B2 Y2 Trydnt\n\n11) wil: B B2 Wil\n\twil: Enjoying trump?\n\n12) Trydnt: Build B2 Trydnt\n\tTrydnt: enjoying the British reactions\n\n13) wil: D B2 Wil G3 G3\n\n14) Trydnt: Discover B2 Trydnt G1 G1\n\twil: Me too!  Waiting for him to tell you how to  brexit\n\twil: Can you put him in the Parliament weekly QnA?\n\tTrydnt: haha no the Speaker doesn&#39;t want him there\n\n15) wil: B B3 G3\n\n16) Trydnt: Build B3 G1\n\n17) wil: T B2 G2 Wil\n\n18) Trydnt: Trade B2 R2 G1\n\n19) wil: T B1 R1 Y3\n\n20) Trydnt: Build B1 G1\n\n21) wil: T B2 R2 G3\n\n22) Trydnt: Trade B3 Y3 G1\n\n23) wil: B B2 G3\n\n24) Trydnt: Build B2 G1\n\n25) wil: B R1 G3\n\n26) Trydnt: Sacrifice Y2 Trydnt\nMove B1 G1 G3\nMove B2 G1 G3\nCatastrophe G3 B\n\n27) wil: D G2 Wil Y3 Why3\n\n28) Trydnt: Build R1 G1\n\n29) wil: B G1 Wil\n\n30) Trydnt: Build Y1 G1\n\n31) wil: T G1 Y1 Wil\n\n32) Trydnt: Build B1 Trydnt\n\twil: Congrats in the tourney, ya done good!\n\tTrydnt: You too! Still nipping at your heels it would seem \n\n33) wil: B G1 Wil\n\n34) Trydnt: Move B1 Trydnt G1\n\n35) wil: D Y1 Wil B3 B3\n\n36) Trydnt: Build B2 G1\n\n37) wil: T G1 Y1 Wil\n\n38) Trydnt: Move R2 G1 B3\n\n39) wil: S G2 Why3\nB Y2 Wil\nB Y3 B3\n\n40) Trydnt: Sacrifice Y3 G1\nMove Y1 G1 B3\nMove Y1 B3 Wil\nCatastrophe Wil Y\nMove B2 G1 Y3\n\n41) wil: S Y1 B3\nM R1 Y3 Wil\n\n42) Trydnt: Sacrifice G3 Trydnt\nBuild B2 G1\nBuild B2 Y3\nBuild B3 Trydnt\n\n\tTrydnt: quite possibly\n\twil: T b3 y3 gg\n\nHomeworlds Online (SDG# 35224)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.2, Ended: 2019.7.3\nParticipants: Simon (S), Trydnt (N)\nWinner: Simon\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Simon: Homeworld R1 G3 B3\n\tSimon: hf!\n\n3) Trydnt: Build G1 Trydnt\n\n4) Simon: Build B1 Simon\n\n5) Trydnt: Build G1 Trydnt\n\n6) Simon: Build B1 Simon\n\n7) Trydnt: Trade G1 R1 Trydnt\n\n8) Simon: Trade B3 Y3 Simon\n\n9) Trydnt: Build R1 Trydnt\n\n10) Simon: Build B1 Simon\n\n11) Trydnt: Build R2 Trydnt\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) Trydnt: Discover R2 Trydnt Y3 Y3\n\n14) Simon: Build B2 Simon\n\n15) Trydnt: Move R2 Y3 G2\n\n16) Simon: Build B2 G2\n\n17) Trydnt: Attack B2 G2\n\n18) Simon: Build B3 G2\n\n19) Trydnt: Build B3 G2\nCatastrophe G2 B\n\n20) Simon: Discover B1 Simon G2 G2a\n\n21) Trydnt: Build R2 Trydnt\n\n22) Simon: Build B1 Simon\n\n23) Trydnt: Discover R2 Trydnt B3 B3\n\n24) Simon: Discover B1 Simon B2 B2\n\n25) Trydnt: Build R2 Trydnt\n\n26) Simon: Build B3 G2a\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild R3 G2\nBuild R3 B3\nBuild R3 B3\n\n28) Simon: Build B3 G2a\n\n29) Trydnt: Build G1 Trydnt\n\tTrydnt: this is fun\n\n30) Simon: Discover B2 Simon Y2 Y2\n\n31) Trydnt: Trade G1 Y1 Trydnt\n\n32) Simon: Trade B3 Y3 G2a\n\n33) Trydnt: Discover R1 Trydnt B3 Be3\n\n34) Simon: Build Y1 G2a\n\n35) Trydnt: Move Y1 Trydnt B3\n\n36) Simon: Sacrifice Y3 G2a\nMove B1 B2 B3\nMove B2 Y2 B3\nMove B1 G2a B3\nCatastrophe B3 Blue\n\n37) Trydnt: Build R2 G2\n\n38) Simon: Build B1 G2a\n\n39) Trydnt: Build R3 Trydnt\n\n40) Simon: Trade B3 R3 G2a\n\n41) Trydnt: Move R2 Trydnt Be3\n\n42) Simon: Build B1 Simon\n\n43) Trydnt: Trade R2 G2 Be3\n\n44) Simon: Build R2 G2a\n\n45) Trydnt: Trade R3 Y3 Trydnt\n\n46) Simon: Trade R3 Y3 G2a\n\n47) Trydnt: Sacrifice G2 Be3\nBuild R3 Be3\nBuild R3 Trydnt\n\n48) Simon: Build B2 G2a\n\n49) Trydnt: Build G1 Trydnt\n\n50) Simon: Discover B1 Simon B2 B2\n\n\nHomeworlds Online (SDG# 35187)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.6.2, Ended: 2019.6.7\nParticipants: Hg80 (S), dlwillson (N)\nWinner: Hg80\n\n1) dlwillson: H B3 Y1 G3\n\n2) Hg80: Homeworld Y2 B3 G3\n\tdlwillson: GL!HF!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Hg80: Build G1 Hg80\n\n\tdlwillson: Sorry about that\n\nHomeworlds Online (SDG# 35244)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.3, Ended: 2019.7.21\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: dlwillson\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) dlwillson: H B3 R2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\tdlwillson: Sorry for the delay!\n\n8) dlwillson: B G1 Dlwillson\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) dlwillson: B R2 Dlwillson\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 Build\n\n14) dlwillson: D R1 Dlwillson G1 Field\n\tDraw5PlayAll: I am already quite nervous\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 Build\nBuild R3 Draw5playall\nBuild Y1 Draw5playall\n\n16) dlwillson: B Y2 Dlwillson\n\n17) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n18) dlwillson: B R3 Field\n\n19) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R2 Build G3 Construct\n\n20) dlwillson: Build R3 Dlwillson\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\n22) dlwillson: M Y1 Dlwillson Field\n\n23) Draw5PlayAll: Move Y1 Draw5playall Build\n\n24) dlwillson: T R2 B2 Dlwillson\n\n25) Draw5PlayAll: Build Y2 Build\n\n26) dlwillson: Trade R3 Y3 Dlwillson\n\n27) Draw5PlayAll: Discover Y1 Build B1 Trade\n\n28) dlwillson: M Y3 Dlwillson Trade\n\n29) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Trade\nBuild Y3 Draw5playall\nBuild Y3 Build\n\n30) dlwillson: T Y3 R3 Trade\n\n31) Draw5PlayAll: Sacrifice Y1 Trade\nDiscover Y2 Trade G3 Grow\n\n32) dlwillson: B G1 Dlwillson\n\n33) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n34) dlwillson: B Y1 Field\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\n36) dlwillson: S Y2 Dlwillson\nM Y1 Field Build\nM Y1 Field Build\nC Build Y\n\n37) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n38) dlwillson: T G1 Y1 Dlwillson\n\n39) Draw5PlayAll: Move B1 Draw5playall Build\n\n40) dlwillson: M B2 Dlwillson Field\n\n41) Draw5PlayAll: Build R2 Build\n\n42) dlwillson: T R1 Y1 Field\n\n43) Draw5PlayAll: Trade R2 Y2 Build\n\n44) dlwillson: B G1 Dlwillson\n\n45) Draw5PlayAll: Build Y1 Build\n\n46) dlwillson: T R3 Y3 Trade\n\n47) Draw5PlayAll: Discover Y1 Build R1 Attack\n\n48) dlwillson: M G1 Dlwillson Trade\n\n49) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R2 Build\nBuild R3 Construct\n\n50) dlwillson: B G1 Dlwillson\n\n51) Draw5PlayAll: Discover Y2 Grow B1 Convert\n\n52) dlwillson: S G3 Dlwillson\nB G2 Trade\nB G2 Trade\nB G3 Dlwillson\n\n53) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n54) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y3 Dlwillson\nB G3 Dlwillson\n\n55) Draw5PlayAll: Build Y3 Build\n\n56) dlwillson: S Y3 Trade\nM G2 Trade Build\nM G2 Trade Build\nM G1 Trade Build\nC Build G\n\n57) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n58) dlwillson: M Y3 Dlwillson Attack\n\n59) Draw5PlayAll: Move Y1 Attack Construct\n\n60) dlwillson: D Y2 Field G2 Forest\n\n61) Draw5PlayAll: Build G1 Draw5playall\n\n62) dlwillson: S G3 Dlwillson\nB Y2 Attack\nB Y3 Forest\nB Y3 Dlwillson\n\n\tDraw5PlayAll: There isn&#39;t no way for me not to not do nothing here.\n\nHomeworlds Online (SDG# 35243)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.6.5, Ended: 2019.6.9\nParticipants: dlwillson (S), smokeytroll42 (N)\nWinner: smokeytroll42\n\n1) smokeytroll42: Homeworld G3 Y2 B3\n\n2) dlwillson: H B3 Y1 G3\n\n3) smokeytroll42: Build B1 Smokeytroll42\n\n\tdlwillson: Dangit! I&#39;m sorry. Can we try again? \n\tsmokeytroll42: Sure\n\tsmokeytroll42: Challenge sent.\n\nHomeworlds Online (SDG# 34763)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.6, Ended: 2019.7.10\nParticipants: Trydnt (S), ajo (N)\nWinner: Trydnt\n\n1) ajo: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) ajo: Build G1 Ajo\n\tajo: Good luck!\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: you too\n\n5) ajo: Trade G1 R1 Ajo\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ajo: Build R1 Ajo\n\n8) Trydnt: Build Y1 Trydnt\n\n9) ajo: Build R1 Ajo\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) ajo: Discover R1 Ajo B1 Alpha\n\n12) Trydnt: Build Y2 G3\n\tajo: This already isn&#39;t going well for me...\n\n13) ajo: Build R2 Ajo\n\tTrydnt: yeah you really gotta use your second move to trade for whichever color has had one of the 1 pieces taken in a hw star. otherwise you&#39;ll get frozen out and will be playing catch up or you&#39;ve wasted a trade as you&#39;ll have to swap back for it after having lost a step\n\n14) Trydnt: Build Y2 Trydnt\n\n15) ajo: Trade R2 G2 Ajo\n\n16) Trydnt: Build Y3 G3\n\n17) ajo: Sacrifice G2 Ajo\nBuild G1 Ajo\nBuild R2 Alpha\n\n18) Trydnt: Move Y3 G3 Alpha\n\n19) ajo: Discover R1 Ajo B1 Beta\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) ajo: Sacrifice G3 Ajo\nBuild R2 Beta\nBuild R3 Beta\nBuild R3 Ajo\n\n22) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 Alpha\nBuild Y3 Trydnt\n\n23) ajo: Trade R2 G2 Beta\n\n24) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Alpha\nAttack R1 Alpha\n\n25) ajo: Trade R3 B3 Ajo\n\n26) Trydnt: Trade R2 G2 Alpha\n\n27) ajo: Build R2 Ajo\n\n28) Trydnt: Build R2 Alpha\n\n29) ajo: Build G1 Beta\n\n30) Trydnt: Trade R1 B1 Alpha\n\n31) ajo: Build R1 Beta\n\n32) Trydnt: Discover B1 Alpha G2 G2\n\n33) ajo: Trade R3 B3 Beta\n\n34) Trydnt: Build B2 G2\n\n35) ajo: Sacrifice G2 Beta\nBuild G1 Beta\nBuild G2 Ajo\n\n36) Trydnt: Sacrifice Y1 Trydnt\nDiscover B2 G2 Y1 Y1\n\n37) ajo: Move B3 Ajo Y1\n\n38) Trydnt: Move Y3 Alpha Ajo\n\n39) ajo: Sacrifice R1 Beta\nAttack B2 Y1\n\n40) Trydnt: Sacrifice R2 Alpha\nAttack R2 Ajo\nAttack G2 Ajo\n\tTrydnt: checkmate\n\n41) ajo: Pass\n\tajo: Well, I&#39;m certainly losing this game one way or another.\n\n42) Trydnt: Sacrifice R2 Ajo\nAttack G1 Ajo\nAttack R1 Ajo\n\tTrydnt: been a slow bleed since I monopolized yellow\n\n\tajo: Good game!\n\tTrydnt: Well played\n\nHomeworlds Online (SDG# 35255)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.6, Ended: 2019.7.28\nParticipants: deanthebean (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 G3 B3\n\n2) deanthebean: Homeworld B2 G3 Y3\n\tSimon: Hi, have fun! :-)\n\n3) Simon: Build B1 Simon\n\tdeanthebean: Thanks. Same to you!\n\n4) deanthebean: Build Y1 Deanthebean\n\n5) Simon: Build B1 Simon\n\n6) deanthebean: Build Y1 Deanthebean\n\n7) Simon: Trade B1 Y1 Simon\n\n8) deanthebean: Discover Y1 Deanthebean G1 Alpha\n\n9) Simon: Build Y2 Simon\n\n10) deanthebean: Build Y2 Alpha\n\n11) Simon: Discover Y1 Simon G2 G2\n\n12) deanthebean: Trade Y1 B1 Deanthebean\n\n13) Simon: Move B1 Simon G2\n\n14) deanthebean: Build Y1 Deanthebean\n\n15) Simon: Build Y2 G2\n\n16) deanthebean: Discover Y1 Alpha G2 Bravo\n\n17) Simon: Trade Y2 R2 G2\n\n18) deanthebean: Build Y2 Bravo\n\n19) Simon: Build Y3 G2\n\n20) deanthebean: Build Y3 Alpha\n\n21) Simon: Build R1 G2\n\n22) deanthebean: Trade Y1 R1 Deanthebean\n\n23) Simon: Trade R1 G1 G2\n\n24) deanthebean: Trade Y3 G3 Deanthebean\n\n25) Simon: Build B1 G2\n\n26) deanthebean: Move Y2 Alpha Deanthebean\n\n27) Simon: Discover Y1 G2 R1 R1\n\n28) deanthebean: Sacrifice G3 Deanthebean\nBuild Y1 Alpha\nBuild Y3 Deanthebean\nBuild R2 Deanthebean\n\n29) Simon: Build B2 G2\n\n30) deanthebean: Move B1 Deanthebean Alpha\n\n31) Simon: Move B2 G2 R1\n\n32) deanthebean: Build B2 Alpha\n\n33) Simon: Sacrifice G1 G2\nBuild B3 R1\n\n34) deanthebean: Build B3 Alpha\n\n35) Simon: Move B1 G2 Alpha\nCatastrophe Alpha Blue\n\n36) deanthebean: Trade R2 G2 Deanthebean\n\n37) Simon: Trade B3 G3 R1\n\n38) deanthebean: Build R2 Deanthebean\n\n39) Simon: Build G1 R1\n\n40) deanthebean: Discover G2 Deanthebean B1 Charlie\n\n41) Simon: Build B1 R1\n\n42) deanthebean: Discover Y3 Alpha B3 Delta\n\n43) Simon: Sacrifice G3 R1\nBuild G1 R1\nBuild G3 R1\nBuild R2 G2\n\n44) deanthebean: Move R2 Deanthebean Alpha\n\n45) Simon: Move B1 R1 Deanthebean\n\n46) deanthebean: Attack B1 Deanthebean\n\n47) Simon: Sacrifice Y3 G2\nMove B1 G2 R1\nMove B1 R1 Deanthebean\nMove B2 R1 Deanthebean\nCatastrophe Deanthebean Blue\n\n48) deanthebean: Sacrifice Y2 Bravo\nMove G2 Charlie Bravo\nMove G2 Bravo R1\nCatastrophe R1 Green\n\n49) Simon: Build Y2 Simon\n\n50) deanthebean: Build Y3 Alpha\n\n51) Simon: Build B1 Simon\n\n52) deanthebean: Discover R2 Alpha B2 Echo\n\n53) Simon: Trade B1 G1 Simon\n\n54) deanthebean: Trade R2 G2 Echo\n\n55) Simon: Discover G1 Simon R2 R2\n\n56) deanthebean: Build R3 Deanthebean\n\n57) Simon: Sacrifice Y2 Simon\nMove R2 G2 Deanthebean\nMove R2 G2 Deanthebean\nCatastrophe Deanthebean Red\n\n58) deanthebean: Build Y2 Bravo\n\n59) Simon: Build G1 R2\n\n60) deanthebean: Build G2 Echo\n\n61) Simon: Build G3 R2\n\n62) deanthebean: Sacrifice Y2 Bravo\nMove G2 Echo Delta\nMove G2 Delta R2\nCatastrophe R2 Green\n\n63) Simon: Build Y2 Simon\n\n64) deanthebean: Trade Y3 R3 Delta\n\n65) Simon: Discover Y2 Simon B2 B2\n\n66) deanthebean: Build Y3 Bravo\n\n67) Simon: Sacrifice Y2 Simon\nMove Y2 B2 Deanthebean\nMove Y1 R1 Deanthebean\nCatastrophe Deanthebean Yellow\n\tSimon: This y3 was for me to get back into business. &gt;_&gt; Still, my blue catastrophe was too early and lost me many turns from all the green that you easily killed in the next move.\n\tdeanthebean: Thanks. Well played. It appears you had a threat that I overlooked. \n\tSimon: Yep, you too, gg!\n\n\nHomeworlds Online (SDG# 35257)\nVariants: &quot;Unrated&quot;\nStarted: 2019.6.7, Ended: 2019.7.27\nParticipants: squishy_mage42 (S), DodoBirb (N)\nWinner: DodoBirb\n\n1) DodoBirb: Homeworld R2 B1 G3\n\n2) squishy_mage42: Homeworld R1 B2 G3\n\tDodoBirb: Good luck!\n\n3) DodoBirb: Build G1 Dodobirb\n\tsquishy_mage42: Good luck to you too\n\n4) squishy_mage42: Build G1 Squishy_mage42\n\tDodoBirb: Interesting opening\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) squishy_mage42: Build G1 Squishy_mage42\n\n7) DodoBirb: Discover Y1 Dodobirb G3 Greeny\n\n8) squishy_mage42: Trade G1 Y1 Squishy_mage42\n\n9) DodoBirb: Build G1 Dodobirb\n\n10) squishy_mage42: Discover G1 Squishy_mage42 B3 Bigblue\n\n11) DodoBirb: Trade G1 Y1 Dodobirb\n\n12) squishy_mage42: Build Y2 Squishy_mage42\n\n13) DodoBirb: Build Y2 Dodobirb\n\n14) squishy_mage42: Move Y2 Squishy_mage42 Bigblue\n\n15) DodoBirb: Build G1 Dodobirb\n\n16) squishy_mage42: Build Y2 Squishy_mage42\n\n17) DodoBirb: Build Y3 Greeny\n\n18) squishy_mage42: Move Y1 Squishy_mage42 Bigblue\n\n19) DodoBirb: Discover G1 Dodobirb Y3 Solaris\n\n20) squishy_mage42: Sacrifice Y2 Squishy_mage42\nMove Y1 Bigblue Dodobirb\nMove Y2 Bigblue Dodobirb\nCatastrophe Dodobirb Y\n\n21) DodoBirb: Build Y1 Greeny\n\n22) squishy_mage42: Build G1 Squishy_mage42\n\n23) DodoBirb: Build G2 Solaris\n\n24) squishy_mage42: Trade G1 Y1 Squishy_mage42\n\n25) DodoBirb: Move Y1 Greeny Dodobirb\n\tDodoBirb: Just because it seems that you are new. I&#39;ll call check, if you don&#39;t trade out a ship at your homeworld then I can catastrophe it by sacrificing my large yellow and win.\n\n26) squishy_mage42: Move Y1 Squishy_mage42 Bigblue\n\tsquishy_mage42: Thank you for the check, yes I am, though I did catch that check before reading.\n\n27) DodoBirb: Build G1 Solaris\n\n28) squishy_mage42: Trade G3 Y3 Squishy_mage42\n\n29) DodoBirb: Build Y2 Dodobirb\n\tDodoBirb: Check. You probably know the reason.\n\n30) squishy_mage42: Build Y2 Bigblue\n\n31) DodoBirb: Trade Y2 R2 Dodobirb\n\n32) squishy_mage42: Trade Y1 R1 Bigblue\n\n33) DodoBirb: Sacrifice G2 Solaris\nBuild G2 Dodobirb\nBuild Y1 Dodobirb\n\n34) squishy_mage42: Trade G1 R1 Bigblue\n\n35) DodoBirb: Move R2 Dodobirb Greeny\n\n36) squishy_mage42: Trade Y2 G2 Bigblue\n\n37) DodoBirb: Move Y1 Dodobirb Greeny\n\n38) squishy_mage42: Build R2 Bigblue\n\n39) DodoBirb: Build R3 Greeny\n\tDodoBirb: Check\n\n\nHomeworlds Online (SDG# 35242)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.10, Ended: 2019.7.2\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Have fun :-)\n\n2) wil: H Y1 B2 G3\n\n3) Simon: Build B1 Simon\n\twil: THAT would be the plan, u2\n\n4) wil: B G1 Wil\n\n5) Simon: Trade B1 Y1 Simon\n\n6) wil: T G1 R1 Wil\n\n7) Simon: Build Y1 Simon\n\twil: Dang near mirrored homeworlds\n\twil: My stars are your ships and vice versa\n\n8) wil: B R1 Wil\n\tSimon: Hmm, comes from desire to start with the blue ship. With non-blue starter ships, eventually you&#39;re forced to make a blue ship at a blue star, and the second player to make blue ships that way is under severe pressure.\n\n9) Simon: Build Y2 Simon\n\n10) wil: B R2 Wil\n\n11) Simon: Trade Y2 R2 Simon\n\n12) wil: T R1 B1 Wil\n\n13) Simon: Build Y2 Simon\n\twil: That ended that race.\n\n14) wil: T R2 Y2 Wil\n\n15) Simon: Discover Y1 Simon G2 G2\n\n16) wil: D Y2 Wil G3 G3\n\n17) Simon: Discover Y2 Simon B2 B2\n\n18) wil: M B1 Wil G3\n\n19) Simon: Build B1 Simon\n\n20) wil: B G1 Wil\n\n21) Simon: Trade B1 G1 Simon\n\n22) wil: B B1 G3\n\n23) Simon: Move G1 Simon B2\n\n24) wil: D G1 Wil Y3 Y3\n\n25) Simon: Build Y2 Simon\n\n26) wil: B Y3 G3\n\n27) Simon: Build Y3 B2\n\n28) wil: D Y2 G3 B2 Be2\n\n29) Simon: Move Y2 B2 Y3\n\n30) wil: M G1 Y3 Be2\n\n31) Simon: Build G1 B2\n\n32) wil: B G2 Wil\n\n33) Simon: Build G2 B2\n\n34) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB R2 Wil\n\n35) Simon: Trade G2 R2 B2\n\n36) wil: S R1 Wil\nP\n\n37) Simon: Build G2 B2\n\n38) wil: M R2 Wil G3\n\n39) Simon: Move G2 B2 Y3\n\n40) wil: S G3 Wil\nB G3 Wil\nB R1 G3\nB R3 Wil\n\n41) Simon: Build R3 B2\n\twil: Time to throw a wrench in those gears...\n\n42) wil: M R3 Wil Y3\n\n43) Simon: Sacrifice Y3 B2\nMove G2 Y3 Wil\nMove G1 B2 Y3\nMove G1 Y3 Wil\nCatastrophe Wil Green\n\n44) wil: S Y3 G3 Wil\nM R2 G3 B2\nM R1 G3 B2\nM R3 Y3 Wil\nC B2 R\n\tSimon: Expensive counterattack. &lt;_&lt;\n\n45) Simon: Build Y3 G2\n\n46) wil: B Y3 Be2\n\n47) Simon: Move Y3 G2 G3\n\n48) wil: T R3 G3 Wil\n\n49) Simon: Move R2 Simon B2\n\n50) wil: S Y2 Be2\nD B1 G3 G2 Gee2\nD B1 G3 G2 Gtoo\n\n51) Simon: Build Y2 G3\n\n52) wil: B G1 Wil\n\n53) Simon: Build R1 B2\n\n54) wil: S G3 Wil\nB G3 Wil\nB B1 Gee2\nB B3 Gtoo\n\n55) Simon: Move Y3 G3 Gee2\n\n56) wil: B B3 Gtoo\n\n57) Simon: Sacrifice R2 B2\nAttack B1 Gee2\nAttack B1 Gee2\n\n58) wil: T B3 R3 Gtoo\n\n59) Simon: Build R2 B2\n\n60) wil: B R2 Wil\n\n61) Simon: Build B3 Gee2\n\n62) wil: B R2 Wil\n\n63) Simon: Move B3 Gee2 G3\n\twil: I&#39;m just compounding past mistakes now.\n\tSimon: Instead of your first r2, I feared you would build the b3 for an eventual thread of opponent-takes-2-we-take-3. But it was hard to calculate, I probably missed something too.\n\n64) wil: B R3 Gtoo\n\n65) Simon: Build R3 B2\n\twil: It was in my.mind, but by the time came around gone\n\n66) wil: S Y3 Be2\nM R3 Gtoo G3\nM R1 Wil G3\nM R1 G3 B2\nC B2 R\n\n67) Simon: Build Y3 Gee2\n\twil: I pushed the button\n\n68) wil: S R2 Wil\nA Y2 G3\nA B3 G3\n\tSimon: Was probably my mistake to build 3rd red ship. You already had plenty of incentive for the y3 sac, didn&#39;t have to sweeten it. Anyway, stoic continuation of yellow monopoly. &gt;_&gt;\n\n69) Simon: Trade Y2 R2 Simon\n\n70) wil: B Y2 G3\n\n71) Simon: Discover Y3 Gee2 R3 R3\n\n72) wil: S G3 Wil\nB G3 Wil\nB R1 Gtoo\nB R1 G3\n\twil: Had to get wise. I mean Ys\n\n73) Simon: Move R2 Simon Gee2\n\n74) wil: B R2 Wil\n\twil: Getting all the ahrrs makes me feel like a pirate matey\n\n75) Simon: Move B1 Gee2 R3\n\n76) wil: M Y2 G3 Gtoo\n\n77) Simon: Move B1 Gee2 Y3\n\n78) wil: M B3 Gtoo Y3\n\n79) Simon: Move B1 Y3 Wil\n\n80) wil: A B1 Wil\n\n81) Simon: Sacrifice G1 B2\nBuild B2 R3\n\n82) wil: M B1 Wil R3\n\n83) Simon: Trade B1 G1 R3\n\twil: Thx, I can use that\n\n84) wil: M B3 G3 G2\n\n85) Simon: Move Y1 G2 R3\n\n86) wil: B B1 Gtoo\n\n87) Simon: Move Y2 Y3 Be2\n\n88) wil: M G1 Wil Y3\n\n89) Simon: Attack B1 R3\n\n90) wil: M R2 Wil Y3\n\n91) Simon: Pass\n\n92) wil: M R2 Y3 G2\n\n93) Simon: Pass\n\n94) wil: M G1 Y3 G2\n\twil: Ya made me set up the pieces.\n\n95) Simon: Pass\n\n96) wil: M R1 G3 G2\n\twil: Lol, I was gonna pass till I set up the universe.\n\n97) Simon: Move Y2 Be2 Simon\n\n98) wil: M R1 Gtoo Simon\n\n99) Simon: Attack R1 Simon\n\n100) wil: S Y2 Gtoo\nM R1 G2 Simon\nM R2 G2 Simon\nC Simon R\n\n101) Simon: Sacrifice Y3 Gee2\nMove Y1 R3 Wil\nMove Y1 Simon Wil\nMove Y2 Simon Wil\nCatastrophe Wil Y\n\n102) wil: T R3 Y3 Gtoo\n\twil: 3 passes and then you remove your roadblock\n\twil: Unless I missed something\n\n103) Simon: Trade B3 R3 Simon\n\n104) wil: S Y3 Gtoo\nM G3 Wil Simon\nM G1 Be2 Simon\nM G1 G2 Simon\nC Simon G\n\twil: One long game, hard fought, two moves to go.\n\n\twil: Gg, up for a game anytime, that was a doozy\n\tSimon: Overlooked this. gg!\n\twil: I should have said you were in check\n\nHomeworlds Online (SDG# 35220)\nStarted: 2019.6.10, Ended: 2019.7.14\nParticipants: wil (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld Y2 G3 B3\n\n2) wil: H Y2 B1 G3\n\n3) dragon76n: Build B1 Dragon76n\n\n4) wil: B G1 Wil\n\n5) dragon76n: Build B1 Dragon76n\n\n6) wil: T G1 Y1 Wil\n\n7) dragon76n: D B1 Dragon76n G1 Greone\n\n8) wil: B Y1 Wil\n\n9) dragon76n: Build B2 Greone\n\n10) wil: D Y1 Wil G3 G3\n\twil: I love it when I err setting my homeworld!\n\n11) dragon76n: Build B2 Greone\n\tdragon76n: I&#39;m sure I&#39;ll make a mistake that you can overcome that with. I don&#39;t think I&#39;ve won a game yet against anyone who has played very much. \n\n12) wil: S G3 Wil\nB Y1 G3\nB Y2 G3\nB Y3 Wil\n\twil: I can only hope you are correct,. Good.luck!\n\n13) dragon76n: Trade B3 Y3 Dragon76n\n\n14) wil: D Y1 G3 G1 G1\n\n15) dragon76n: Trade B2 G2 Greone\n\n16) wil: B Y3 G1\n\n17) dragon76n: Sacrifice G2 Greone\nBuild B2 Greone\nBuild B2 Dragon76n\n\n18) wil: T Y3 G3 Wil\n\n19) dragon76n: Build B3 Dragon76n\n\n20) wil: B Y3 Wil\n\n21) dragon76n: Move Y3 Dragon76n Greone\n\tHg80: You guys going for a no red challenge?\n\n22) wil: B G1 Wil\n\n23) dragon76n: Discover B2 Greone G2 Gretwo\n\n24) wil: T G3 B3 Wil\n\n25) dragon76n: Build B3 Gretwo\n\n26) wil: B G2 Wil\n\n27) dragon76n: Sacrifice B2 Gretwo\nTrade B1 R1 Dragon76n\nTrade B2 G2 Greone\n\n28) wil: T G1 R1 Wil\n\n29) dragon76n: Trade B3 G3 Dragon76n\n\n30) wil: M B3 Wil G3\n\n31) dragon76n: Sacrifice G2 Greone\nBuild B1 Gretwo\nBuild B2 Greone\n\n32) wil: B B2 G3\n\n33) dragon76n: Move B1 Greone G3\n\n34) wil: M Y1 G1 Dragon76n\n\n35) dragon76n: Build B3 G3\nCatastrophe G3 Blue\n\n36) wil: M Y1 Dragon76n Greone\n\n37) dragon76n: Trade B2 R2 Greone\n\twil: Move yellow in and blow up yellow leaving one y\n\twil: Lol, this isn&#39;t the notebook!\n\n38) wil: M Y2 G3 Greone\n\n39) dragon76n: Move Y3 Greone G3\n\n40) wil: M Y1 Wil G3\n\twil: Noice!\n\n41) dragon76n: Attack Y2 Greone\n\n42) wil: M Y1 Greone G3\nC G3 Y\n\n43) dragon76n: Trade B3 Y3 Gretwo\n\n44) wil: B G1 Wil\n\n45) dragon76n: Discover Y3 Gretwo G3 Grethr\n\twil: Here we go round the mulberry bush...\n\n46) wil: B G2 Wil\n\n47) dragon76n: Build Y1 Grethr\n\n48) wil: B R1 Wil\n\tdragon76n: &macr;\\_(&amp;#12484;)_/&macr;\n\tdragon76n: U+1F937\n\tdragon76n: Anyway... I could be wrong in overall, but that doesn&#39;t seem too unusual for my experience in this game - basically trading places.  \n\twil: Lol, dont understand first two, agree last\n\n49) dragon76n: Build Y1 Greone\n\n50) wil: D R1 Wil B3 B3\n\n51) dragon76n: Move Y1 Grethr Wil\n\n52) wil: T Y3 B3 Wil\n\n53) dragon76n: Sacrifice G3 Dragon76n\nBuild Y1 Wil\nBuild Y3 Grethr\nBuild R2 Greone\n\n54) wil: S G2 Wil\nB R2 Wil\nB R3 B3\n\n55) dragon76n: B R3 Dragon76n\n\n56) wil: S R2 Wil\nA Y1 Wil\nA Y1 Wil\n\n57) dragon76n: Sacrifice Y2 Greone\nMove Y1 Greone B3\nMove Y1 B3 Wil\nCatastrophe Wil Yellow\n\n58) wil: T B3 G3 Wil\n\n59) dragon76n: Sacrifice B1 Gretwo\nTrade R2 G2 Greone\n\n60) wil: T G2 Y2 Wil\n\n61) dragon76n: Sacrifice G2 Greone\nBuild B1 Dragon76n\nBuild B1 Dragon76n\n\n62) wil: S Y3 G1\nM R1 B3 Wil\nM R1 Wil Dragon76n\nM R1 Wil Dragon76n\nC Dragon76n R\n\n63) dragon76n: Sacrifice Y3 Grethr\nMove R2 Greone Dragon76n\nMove B1 Dragon76n Wil\nMove B1 Dragon76n Wil\n\twil: This is the end, gg\n\n64) wil: T Y2 B2 Wil\nC Wil B\n\n\twil: Gg\n\twil: Challenge me anytime\n\nHomeworlds Online (SDG# 35264)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.13, Ended: 2019.6.27\nParticipants: smokeytroll42 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld R3 B1 G3\n\n2) smokeytroll42: Homeworld G3 Y2 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) smokeytroll42: Build B1 Smokeytroll42\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) smokeytroll42: Build B2 Smokeytroll42\n\n7) dlwillson: Build B2 Dlwillson\n\n8) smokeytroll42: Discover B2 Smokeytroll42 Y1 Peace\n\n9) dlwillson: T B2 Y2 Dlwillson\n\n10) smokeytroll42: Trade B2 G2 Peace\n\n11) dlwillson: D B1 Dlwillson G2 Forest\n\n12) smokeytroll42: Build G1 Peace\n\n13) dlwillson: B B2 Forest\n\n14) smokeytroll42: Move B1 Smokeytroll42 Peace\n\n15) dlwillson: T B1 Y1 Forest\n\n\nHomeworlds Online (SDG# 35283)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.19, Ended: 2019.7.5\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld B1 R1 G3 *\n\n2) wil: H Y2 B2 G3 *\n\twil: Let&#39;s have fun!\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\twil: Microverse it is!\n\tFelix: :) Tiny house living is in, so tiny universe living is too.\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: T G1 B1 Wil\n\twil: Andy not so much.\n\twil: Trydnt and I love experimenting with openings\n\tDraw5PlayAll: Andy? You mean that one?\n\n7) Felix: Build Y1 Felix\n\twil: That one.\n\n8) wil: B B1 Wil\n\tFelix: I&#39;m more honored to play against the one and only Wil.\n\n9) Felix: Build Y1 Felix\n\twil: Lol, I enjoy playing with you all.  \n\n10) wil: D B1 Wil G3 G3\n\n11) Felix: Discover Y1 Felix B3 Out\n\n12) wil: B B2 Wil\n\n13) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Out\nBuild Y3 Felix\n\n14) wil: B B2 G3\n\n15) Felix: Trade Y3 G3 Felix\n\n16) wil: B B3 G3\n\n17) Felix: Build Y3 Felix\n\n18) wil: T B3 Y3 G3\n\n19) Felix: Discover Y1 Felix Y3 Keepaway\n\n20) wil: B B3 G3\n\n\twil: Ah phooey\n\tFelix: Shucks. Sorry about that. Had a crazy week!\n\twil: Another day\n\nHomeworlds Online (SDG# 35256)\nStarted: 2019.6.24, Ended: 2019.8.27\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: H B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) wil: B G1 Wil\n\tts52: Have a good game!\n\n5) ts52: Trade G1 Y1 Ts52\n\twil: Tis  my hope we do!\n\n6) wil: T G1 Y1 Wil\n\n7) ts52: Build Y2 Ts52\n\twil: Before we break into uncharted chaos\n\twil: Let&#39;s start out slow and all perfectly normal\n\n8) wil: B Y2 Wil\n\tts52: indeed\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) wil: D Y1 Wil G1 G1\n\n11) ts52: Build Y3 Kermit\n\n12) wil: B Y3 G1\n\n13) ts52: Discover Y3 Kermit B1 Gonzo\n\twil: I like follow the leader.\n\n14) wil: T Y2 B2 Wil\n\tts52: :)\n\n15) ts52: Build G1 Ts52\n\n16) wil: M Y3 G1 Kermit\n\n17) ts52: Trade G1 R1 Ts52\n\n18) wil: B B1 Wil\n\n19) ts52: Build R1 Ts52\n\n20) wil: T B2 G2 Wil\n\n21) ts52: Build G1 Ts52\n\n22) wil: S G2 Wil\nB Y2 Kermit\nB Y3 G1\n\n23) ts52: Move Y2 Ts52 Kermit\nCatastrophe Kermit Y\n\n24) wil: T B1 R1 Wil\n\n25) ts52: Trade G1 B1 Ts52\n\n26) wil: B R2 Wil\n\n27) ts52: Discover R1 Ts52 G3 Kermit\n\n28) wil: M R1 Wil G1\n\n29) ts52: Build R2 Kermit\n\n30) wil: D Y1 G1 R3 R3\n\n31) ts52: Build G1 Ts52\n\n32) wil: B G1 Wil\n\n33) ts52: Move B1 Ts52 Kermit\n\n34) wil: S G3 Wil\nB R2 G1\nB R3 G1\nB R3 Wil\n\twil: Time for another tourney,.good.luck!\n\n35) ts52: Build B1 Kermit\n\n36) wil: T R2 B2 Wil\n\tts52: Thanks! You too.\n\tts52: I&#39;ll be offline for the rest of this week. FYI.\n\twil: Me too, headed for a burn, first since recovery!\n\n37) ts52: Trade R2 Y2 Kermit\n\n38) wil: S B2 Wil\nT R3 Y3 G1\nT R2 B2 G1\n\tts52: Nice. Have fun!\n\tDraw5PlayAll: When does it start?\n\n39) ts52: Build R2 Kermit\n\n40) wil: B B2 G1\n\n41) ts52: Discover B1 Kermit Y1 Bigbird\n\n42) wil: T B2 G2 G1\n\n43) ts52: Move R2 Kermit Gonzo\n\n44) wil: M Y3 G1 Kermit\n\n45) ts52: Move R1 Kermit Gonzo\n\n46) wil: B R2 G1\n\n47) ts52: Trade R2 G2 Gonzo\n\n48) wil: S R2 G1\nA Y2 Kermit\nA B1 Kermit\n\n49) ts52: Build Y2 Gonzo\n\n50) wil: M Y2 Kermit Gonzo\n\n51) ts52: Discover Y2 Gonzo G3 Oscar\n\n52) wil: D Y2 Gonzo B3 B3\n\n53) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R2 Gonzo\n\n54) wil: S G2 G1\nB B2 Kermit\nB B3 G1\n\n55) ts52: Move G2 Gonzo R3\n\n56) wil: M B3 G1 R3\n\n57) ts52: Attack Y1S R3\n\n58) wil: A G2 R3\n\n59) ts52: Move Y1 R3 Bigbird\n\n60) wil: B G2 Wil\n\n61) ts52: Move R2 Gonzo Oscar\n\n62) wil: D B2 G1 R3 Are3\n\n63) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Gonzo\nBuild R2 Oscar\n\n64) wil: M B2 Kermit Ts52\n\n65) ts52: Attack B2 Ts52\n\n66) wil: S Y3 Kermit\nM B1 Kermit Ts52\nM B2 Are3 Ts52\nC Ts52 B\nM B3 R3 Ts52\n\n67) ts52: Attack B3 Ts52\n\n68) wil: S G2 Wil\nB R3 G1\nB Y3 B3\n\twil: I think I filled the bank and checkmate\n\n69) ts52: Build B1 Ts52\n\twil: Lol, dang brain...\n\n70) wil: M R3 G1 B3\n\n71) ts52: Move B1 Ts52 Wil\n\n72) wil: A B1 Wil\n\n73) ts52: Move B1 Bigbird Wil\n\n74) wil: M B1 Wil Ts52\n\n75) ts52: Sacrifice G2 Gonzo\nBuild B2 Wil\nBuild B2 Wil\nCatastrophe Wil Blue\n\n76) wil: B G2 Wil\n\n77) ts52: Move R2 Oscar Wil\n\n78) wil: S G2 R3\nB R3 G1\nP\n\n79) ts52: Sacrifice Y3 Gonzo\nMove R1 Gonzo Wil\nMove R2 Gonzo Wil\nMove B3 Ts52 Wil\nCatastrophe Wil Red\n\n80) wil: S Y3 G1\nM Y3 B3 Ts52\nM Y2 B3 Wil\nM R3 G1 Wil\n\n81) ts52: Sacrifice R2 Oscar\nAttack Y3 Ts52\nAttack R3 Wil\n\n82) wil: S G2 Wil\nB Y3 Wil\nB Y3 Wil\nC Wil Y\n\n\twil: Gg\n\tts52: Thanks! Gg.\n\nHomeworlds Online (SDG# 35272)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.24, Ended: 2019.7.4\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) wil: H B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\twil: Good luck, hope all is well.\n\n4) wil: B G1 Wil\n\tdlwillson: TY GL and HF!\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: B B2 Dlwillson\n\n8) wil: B B2 Wil\n\n9) dlwillson: D B2 Dlwillson G2 Field\n\n10) wil: T B1 Y1 Wil\n\n11) dlwillson: B B1 Field\n\n12) wil: D B2 Wil G3 G3\n\n13) dlwillson: B B3 Field\n\n14) wil: B B3 G3\n\n15) dlwillson: T B2 Y2 Field\n\n16) wil: T B2 Y2 G3\n\n17) dlwillson: T B1 R1 Dlwillson\n\n18) wil: T Y1 R1 Wil\n\n19) dlwillson: T B1 R1 Field\n\n20) wil: B R2 Wil\n\n21) dlwillson: B R2 Field\n\n22) wil: T R2 G2 Wil\n\n23) dlwillson: D R2 Field B3 Sky\n\n24) wil: B R2 Wil\n\n25) dlwillson: S G3 Dlwillson\nB R2 Field\nB R3 Sky\nB R3 Dlwillson\n\n26) wil: M R1 Wil Sky\n\n27) dlwillson: S R2 Sky\nA R1 Sky\nPass\n\n28) wil: M R2 Wil G3\n\n29) dlwillson: T R3 G3 Dlwillson\n\n30) wil: B B1 G3\n\n31) dlwillson: B Y1 Field\n\n32) wil: B G1 Wil\n\n33) dlwillson: S Y2 Field\nM B3 Field G3\nM B3 G3 Wil\n\n34) wil: S B3 G3\nT G2 B2 Wil\nT G1 B1 Wil\nC Wil B\nP\n\n35) dlwillson: T R3 Y3 Sky\n\twil: Noice\n\n36) wil: B Y1 G3\n\n37) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Sky\nB R2 Dlwillson\n\tdlwillson: Thanks!\n\n38) wil: M G3 Wil G3\n\n\twil: Gg\n\tdlwillson: Gg, TY! \n\nHomeworlds Online (SDG# 35071)\nVariants: &quot;Hard time&quot;\nStarted: 2019.6.24, Ended: 2019.7.26\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G2 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Discover Y1 Trydnt Y1 Y1\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: D Y1 Wil G3 G3\n\n9) Trydnt: Move Y1 Y1 G3\n\tTrydnt: interesting opening no?\n\n10) wil: D Y1 G3 G2 G2\n\n11) Trydnt: Trade Y2 R2 Trydnt\n\n12) wil: B G1 Wil\n\n13) Trydnt: Build R1 Trydnt\n\n14) wil: T G1 R1 Wil\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) wil: B R1 Wil\n\n17) Trydnt: Build B1 Trydnt\n\n18) wil: D R1 Wil G3 Gee3\n\n19) Trydnt: Discover B1 Trydnt G1 G1\n\n20) wil: B G1 Wil\n\n21) Trydnt: Build B2 G1\n\n22) wil: D G1 Wil B3 B3\n\n23) Trydnt: Trade B2 Y2 G1\n\n24) wil: B G1 B3\n\n25) Trydnt: Move Y2 G1 B3\n\n26) wil: B G2 Wil\n\n27) Trydnt: Build R1 Trydnt\n\n28) wil: S G1 B3\nB R2 Wil\n\n29) Trydnt: Move R2 Trydnt G1\n\n30) wil: D R1 Wil Y3 Y3\n\n31) Trydnt: Sacrifice R1 Trydnt\nAttack G1 B3\n\n32) wil: B R1 Gee3\n\twil: Time to tourney again, goodluck\n\n33) Trydnt: Build G1 B3\n\tTrydnt: and to you good sir!\n\n34) wil: S G3 Wil\nB R2 Gee3\nB R3 Y3\nB G3 Wil\n\twil: What was that mirrored glass you were looking at?\n\n35) Trydnt: Build R3 G1\n\tTrydnt: dichroic glass\n\tTrydnt: I used the pieces to make these infinity mirror boxes full of color. Calling them hippy hand grenades\n\n36) wil: S G3 Wil\nB R3 Wil\nB G3 Wil\nB Y1 G2\n\n37) Trydnt: Trade R3 Y3 G1\n\n38) wil: T R2 Y2 Wil\n\n39) Trydnt: Sacrifice Y2 B3\nMove G1 B3 Wil\nMove G1 B3 Wil\nCatastrophe Wil G\n\n40) wil: D R1 Y3 G1 Gwon\n\n41) Trydnt: Build Y2 Trydnt\n\n42) wil: M Y1 G2 Gee3\n\n43) Trydnt: Trade Y2 R2 Trydnt\n\n44) wil: B R3 Gwon\n\n45) Trydnt: Build Y2 G3\n\n46) wil: M R2 Gee3 Wil\n\n47) Trydnt: Build B2 Trydnt\n\n48) wil: T R2 G2 Wil\n\n49) Trydnt: Sacrifice Y3 G1\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nCatastrophe Wil Y\nDiscover B1 G1 Y3 Whynot\n\n50) wil: S Y1 G2\nM R3 Wil Trydnt\n\n51) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Trydnt Wil\nMove B2 Trydnt Wil\nMove B1 Whynot Wil\nCatastrophe Wil B\n\n\tTrydnt: well played. what&#39;s left looks very intimidating haha\n\twil: Die leaving a good corpse!\n\nHomeworlds Online (SDG# 35169)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.6.24, Ended: 2019.7.17\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) wil: H Y2 B1 G3\n\n3) Draw5PlayAll: Homeworld B1 G3 B3 *\n\twil: Thanks for the game!  Good luck.\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\n6) wil: D G1 Wil Y3 Y3\n\tDraw5PlayAll: This time around, I will make sure not to put all my eggs in the same basket.\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) wil: B G1 Wil\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) wil: B G1 Y3\n\n11) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n12) wil: D G1 Y3 B2 B2\n\n13) Draw5PlayAll: Build B2 Draw5playall\n\n14) wil: S G3 Wil\nB G2 Wil\nB G2 Y3\nB G3 B2\n\n15) Draw5PlayAll: Build B3 Build\n\n16) wil: B G3 Wil\n\n17) Draw5PlayAll: Trade B3 R3 Build\n\n18) wil: T G3 R3 B2\n\n19) Draw5PlayAll: Build B3 Build\n\n20) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB R1 B2\n\n21) Draw5PlayAll: Trade B3 Y3 Build\n\n22) wil: T G3 R3 Wil\n\tDraw5PlayAll: That&#39;s better.\n\n23) Draw5PlayAll: Build R1 Build\n\n24) wil: S G3 B2\nB G3 B2\nB R1 Wil\nB G3 Wil\n\n25) Draw5PlayAll: Move R3 Build Y3\n\n26) wil: T G2 Y2 Wil\n\tDraw5PlayAll: I would like to place an order for 1 share of Green Space Construction, LLC.\n\n27) Draw5PlayAll: Attack G2 Y3\n\twil: Just one?\n\tDraw5PlayAll: I guess we have a bull market!\n\n28) wil: T G3 B3 Wil\n\n29) Draw5PlayAll: Build B3 Build\n\n30) wil: D B3 Wil G3 G3\n\n31) Draw5PlayAll: Discover B2 Draw5playall Y2 Move\n\n32) wil: B B3 G3\n\n33) Draw5PlayAll: Move B1 Draw5playall Move\n\n34) wil: D G1 Y3 Y1 Y1\n\n35) Draw5PlayAll: Build G2 Y3\n\n36) wil: M R1 Wil G3\n\n37) Draw5PlayAll: Build R2 Build\n\n38) wil: M Y2 Wil G3\n\n39) Draw5PlayAll: Build Y1 Build\n\n40) wil: S G3 B2\nB G3 B2\nB Y1 G3\nB R2 G3\n\n41) Draw5PlayAll: Build R2 Y3\n\n42) wil: M Y1 G3 B2\n\n43) Draw5PlayAll: Move B2 Move Y1\n\n44) wil: S G1 Y1\nB G1 Wil\n\tDraw5PlayAll: You are up to something.\n\n45) Draw5PlayAll: Sacrifice B1 Move\nTrade G2 Y2 Y3\n\n46) wil: M G3 B2 Y1\n\tDraw5PlayAll: My investment portfolio required selling shares in Green Construction LLC in order to acquire more of Yellow Wormhole Tech ULC.\n\n47) Draw5PlayAll: Move B2 Y1 Y3\n\n48) wil: S G3 Y1\nB G2 Wil\nB Y1 B2\nB G3 B2\n\n49) Draw5PlayAll: Discover Y2 Y3 B1 Trade\n\n50) wil: M R3 B2 Trade\n\n51) Draw5PlayAll: Sacrifice Y2 Trade\nMove G2 Y3 Wil\nCatastrophe Wil Green\nMove R3 Y3 Wil\n\n52) wil: S Y2 G3\nM B3 G3 Wil\nM B3 G3 Wil\n\tDraw5PlayAll: Good... game... ???\n\n53) Draw5PlayAll: Move B2 Y3 Wil\nCatastrophe Wil Blue\n\twil: Nice move, caught me unawares, I had other plans\n\twil: Time for.another HW tourney get in!\n\n54) wil: M G3 B2 Draw5playall\n\tDraw5PlayAll: That move was rather tricky...\n\twil: Just a delay of game, postponing the inevitable\n\n55) Draw5PlayAll: Attack R3 Wil\n\tDraw5PlayAll: So I can either blow you up, or steal your ship...\n\tDraw5PlayAll: Good game.\n\twil: Gg\n\n\nHomeworlds Online (SDG# 35306)\nStarted: 2019.6.27, Ended: 2019.6.27\nParticipants: MobyNostromo (S), UrzaGameLord93 (N)\nWinner: MobyNostromo\n\n\nHomeworlds Online (SDG# 35313)\nStarted: 2019.6.30, Ended: 2019.7.3\nParticipants: MobyNostromo (S), TripleShock (N)\nWinner: TripleShock\n\n1) TripleShock: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 35339)\nVariants: &quot;Hard time&quot;\nStarted: 2019.7.10, Ended: 2019.7.18\nParticipants: dougforte (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\n2) dougforte: Homeworld G1 B3 G3 *\n\n3) bhorner: Build G1 Bhorner\n\n4) dougforte: Build G1 Dougforte\n\n5) bhorner: Build G2 Bhorner\n\n6) dougforte: Trade G1 Y1 Dougforte\n\n7) bhorner: Trade G1 Y1 Bhorner\n\n8) dougforte: Build G1 Dougforte\n\n9) bhorner: D G2 Bhorner B3 Snowman\n\n10) dougforte: Discover G3 Dougforte B2 Tophat\n\n11) bhorner: Build G1 Bhorner\n\n12) dougforte: Move Y1 Dougforte Tophat\n\n13) bhorner: Build G2 Snowman\n\n14) dougforte: Build G2 Tophat\n\n15) bhorner: Build G3 Bhorner\n\n16) dougforte: Build Y1 Tophat\n\n17) bhorner: Trade G2 Y2 Snowman\n\n18) dougforte: Move Y1 Tophat Dougforte\n\n19) bhorner: Sacrifice Y2 Snowman\nMove G2 Snowman Tophat\nMove G2 Tophat Dougforte\n\n20) dougforte: Build Y2 Dougforte\n\n21) bhorner: Trade G3 R3 Bhorner\n\n22) dougforte: Trade G1 R1 Dougforte\n\n23) bhorner: Sacrifice R3 Bhorner\nAttack R1 Dougforte\nAttack Y1 Dougforte\nAttack Y2 Dougforte\n\tbhorner: Good game!  :)\n\n\nHomeworlds Online (SDG# 35241)\nVariants: &quot;Unrated&quot;\nStarted: 2019.7.10, Ended: 2019.7.30\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 G3 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Trade Y1 B1 Trydnt\n\n8) wil: T Y1 B1 Wil\n\n9) Trydnt: Build B2 Trydnt\n\n10) wil: B B2 Wil\n\n11) Trydnt: Discover B2 Trydnt Y1 Y1\n\n12) wil: T B1 Y1 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: B Y2 Wil\n\n15) Trydnt: Discover B2 Y1 G3 G3\n\n16) wil: M Y1 Wil G3\n\n17) Trydnt: Discover Y1 Trydnt B1 B1\n\n18) wil: M B2 Wil G3\n\n19) Trydnt: Trade B2 R2 G3\n\n20) wil: M B2 G3 B1\n\n21) Trydnt: Attack Y1 G3\n\n22) wil: B G1 Wil\n\n23) Trydnt: Build Y1 Trydnt\n\n24) wil: D G1 Wil Y3 Y3\n\n25) Trydnt: Build Y3 G3\n\n26) wil: B G1 Wil\n\n27) Trydnt: Move R2 G3 B1\n\n28) wil: D Y2 Wil B3 B3\n\n29) Trydnt: Move R2 B1 Y3\n\n30) wil: B G1 Y3\n\n31) Trydnt: Attack G1 Y3\n\n32) wil: B G2 Y3\n\n33) Trydnt: Move G1 Y3 Wil\n\n34) wil: T G3 R3 Wil\n\n35) Trydnt: Attack G2 Y3\n\tTrydnt: this feels like the inverse of the situation where you have too many reds in the same place but can sacrifice one to capture another and never end up with too much.\n\n36) wil: A G1 Wil\n\n37) Trydnt: Attack G1 Y3\n\n38) wil: M G1 Wil B3\n\n39) Trydnt: Build R1 Y3\n\n40) wil: B R1 Wil\n\n41) Trydnt: Sacrifice Y2 Trydnt\nMove R1 Y3 Wil\nMove R2 Y3 Wil\nCatastrophe Wil R\n\n42) wil: S G1 Wil\nB B2 B1\n\n\nHomeworlds Online (SDG# 35329)\nVariants: &quot;Hard time&quot;\nStarted: 2019.7.10, Ended: 2019.7.19\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Trydnt: Homeworld G3 B2 Y3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build Y1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Build Y2 Trydnt\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Trydnt: Discover Y1 Trydnt G1 G1\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n\nHomeworlds Online (SDG# 35312)\nStarted: 2019.7.10, Ended: 2019.10.21\nParticipants: UrzaGameLord93 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 35344)\nVariants: &quot;Hard time&quot;\nStarted: 2019.7.10, Ended: 2019.8.9\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: Dude, Erin, Charlie and Nick stopped by today.\n\n2) Trydnt: Homeworld G3 Y2 B3\n\n3) wil: B G1 Wil\n\tTrydnt: No way! All the old crew :)\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Build B2 Trydnt\n\n7) wil: B B2 Wil\n\n8) Trydnt: Trade B2 Y2 Trydnt\n\n9) wil: T B1 R1 Wil\n\n10) Trydnt: Discover B1 Trydnt G1 G1\n\n11) wil: D B2 Wil Y3 Y3\n\n12) Trydnt: Build B1 G1\n\n13) wil: B G1 Wil\n\n14) Trydnt: Build B2 Trydnt\n\n15) wil: B G1 Wil\n\n16) Trydnt: Trade B3 R3 Trydnt\n\n17) wil: M G1 Wil Y3\n\n18) Trydnt: Build R1 Trydnt\n\n19) wil: B G2 Wil\n\n20) Trydnt: Sacrifice Y2 Trydnt\nMove R3 Trydnt G1\nMove R3 G1 Y3\n\n21) wil: T G1 Y1 Y3\n\tTrydnt: never done that before :/\n\n22) Trydnt: Attack Y1 Y3\n\n23) wil: D B2 Y3 G1 Gwon\n\n24) Trydnt: Move R3 Y3 Gwon\n\n25) wil: S B2 Gwon\nT G3 B3 Wil\nT G1 Y1 Wil\n\n26) Trydnt: Build B2 G1\n\n27) wil: B G1 Wil\n\n28) Trydnt: Trade B2 Y2 G1\n\n29) wil: M G2 Wil Y3\n\n30) Trydnt: Sacrifice Y1 Y3\nDiscover B1 G1 G3 G3\n\n31) wil: B G2 Wil\n\n32) Trydnt: Build B2 G3\n\n33) wil: B G2 Wil\n\n34) Trydnt: Discover B1 G1 G3 Gee3\n\n35) wil: T G2 R2 Wil\n\n36) Trydnt: Build B2 Gee3\n\n37) wil: M B3 Wil Y3\n\n38) Trydnt: Build B3 G3\n\n39) wil: B B3 Y3\n\n40) Trydnt: Sacrifice Y2 G1\nMove B3 G3 Wil\nDiscover B1 Gee3 G2 G2\n\n41) wil: M B3 Y3 Wil\n\twil: Oops\n\n\twil: Oops\n\tTrydnt: damn. went to the european juggling convention and couldn&#39;t get online to make moves :( worth it though\n\twil: EJC awesome... Saw some pics from friends\n\nHomeworlds Online (SDG# 35345)\nVariants: &quot;Unrated&quot;\nStarted: 2019.7.10, Ended: 2019.8.22\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) wil: B B2 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: T B1 R1 Wil\n\n10) Trydnt: Trade B2 Y2 Trydnt\n\n11) wil: B R1 Wil\n\n12) Trydnt: Build Y1 Trydnt\n\n13) wil: B R1 Wil\n\n14) Trydnt: Discover B1 Trydnt Y1 Y1\n\n15) wil: D R1 Wil Y3 Y3\n\n16) Trydnt: Discover Y1 Trydnt Y1 Why1\n\n17) wil: B G1 Wil\n\n18) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Why1\nBuild Y3 Trydnt\nBuild Y3 Trydnt\n\n19) wil: B R2 Wil\n\n20) Trydnt: Trade Y3 R3 Trydnt\n\n21) wil: T G3 Y3 Wil\n\n22) Trydnt: Trade Y3 G3 Trydnt\n\n23) wil: D R1 Wil Y3 Why3\n\n24) Trydnt: Discover R3 Trydnt G1 G1\n\n25) wil: B B1 Wil\n\n26) Trydnt: Discover Y2 Why1 G3 G3\n\n27) wil: T B2 G2 Wil\n\n28) Trydnt: Move B1 Y1 G3\n\n29) wil: D R2 Wil R3 R3\n\n30) Trydnt: Build B2 G3\n\n31) wil: S G2 Wil\nB R2 R3\nB R3 Wil\n\n32) Trydnt: Build Y1 Trydnt\n\n33) wil: M B1 Wil G3\n\n34) Trydnt: Move B1 G3 G1\n\n35) wil: M Y3 Wil G3\n\n36) Trydnt: Sacrifice Y2 G3\nDiscover B2 G3 G1 Gee1\nDiscover B1 G1 Y2 Y2\n\n37) wil: B B2 G3\n\n38) Trydnt: Build G2 Trydnt\n\n39) wil: S B2 G3\nT R2 B2 R3\nT R2 G2 R3\n\n40) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Y2\nBuild B3 Gee1\n\n41) wil: B B3 G3\n\n42) Trydnt: Build R2 G1\n\n43) wil: S G2 R3\nB G2 Wil\nB R2 Y3\n\n44) Trydnt: Sacrifice Y2 Trydnt\nMove B3 Gee1 Y3\nMove B2 Y2 Why3\n\n45) wil: S Y3 G3\nM R1 Y3 G1\nM R1 Why3 G1\nM B3 G3 Wil\nC G1 R\n\n46) Trydnt: Build Y2 Trydnt\n\n47) wil: T R3 Y3 Wil\n\n48) Trydnt: Sacrifice Y2 Trydnt\nMove B2 Why3 Wil\nMove B3 Y3 Wil\nCatastrophe Wil B\n\n49) wil: M G2 Wil Gee1\n\n50) Trydnt: Build Y2 Trydnt\n\n51) wil: D G1 Wil Y3 Why3\n\n52) Trydnt: Trade B1 G1 Y2\n\n53) wil: B G2 Gee1\n\n54) Trydnt: Move Y1 Why1 Wil\n\n\twil: Nice\n\tTrydnt: interesting ending. ran through it a bunch of different ways in my head to make sure there was no way to wriggle out\n\nHomeworlds Online (SDG# 35262)\nVariants: &quot;Hard time&quot;\nStarted: 2019.7.10, Ended: 2019.8.8\nParticipants: Simon (S), Trydnt (N)\nWinner: Simon\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) Simon: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\tSimon: Have fun!\n\tTrydnt: you too\n\n4) Simon: Build G1 Simon\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Simon: Trade G1 R1 Simon\n\n7) Trydnt: Build R2 Trydnt\n\n8) Simon: Build R2 Simon\n\n9) Trydnt: Build R2 Trydnt\n\n10) Simon: Trade R2 Y2 Simon\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) Simon: Build R2 Simon\n\n13) Trydnt: Build R2 Trydnt\n\n14) Simon: Discover R2 Simon G2 G2\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) Simon: Build Y1 Simon\n\n17) Trydnt: Discover R2 Trydnt G1 G1\n\n18) Simon: Move Y1 Simon G2\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G1\nBuild R3 Trydnt\nBuild B1 Trydnt\n\n20) Simon: Build R3 G2\n\n21) Trydnt: Trade R3 G3 Trydnt\n\n22) Simon: Trade R1 B1 Simon\n\n23) Trydnt: Sacrifice Y2 Trydnt\nMove R1 G1 G2\nMove R2 G1 G2\nCatastrophe G2 R\n\n24) Simon: Move B1 Simon G2\n\n25) Trydnt: Discover B1 Trydnt G1 G1\n\n26) Simon: Build B2 G2\n\n27) Trydnt: Build B2 G1\n\n28) Simon: Trade B2 R2 G2\n\n29) Trydnt: Trade B1 R1 G1\n\n30) Simon: Build R1 G2\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G1\nBuild R3 Trydnt\nBuild B1 G1\n\n32) Simon: Build R3 G2\n\n33) Trydnt: Trade R3 G3 Trydnt\n\n34) Simon: Trade R3 Y3 G2\n\n\nHomeworlds Online (SDG# 35347)\nVariants: &quot;Unrated&quot;\nStarted: 2019.7.14, Ended: 2019.8.10\nParticipants: wil (S), dougforte (N)\nWinner: dougforte\n\n1) dougforte: Homeworld G3 B1 R3\n\n2) wil: H B2 Y1 G3\n\tdougforte: Hi, enjoy!\n\n3) dougforte: Build R1 Dougforte\n\twil: Thx 4 the game!  Have fun!\n\tdougforte: Thanks!  :)\n\n4) wil: B G1 Wil\n\n5) dougforte: Trade R1 Y1 Dougforte\n\n6) wil: T G1 B1 Wil\n\n7) dougforte: Build R1 Dougforte\n\n8) wil: B B1 Wil\n\n9) dougforte: Discover R3 Dougforte G2 Everest\n\n10) wil: B G1 Wil\n\n11) dougforte: Build R1 Everest\n\twil: Do you own pyramid arcade? Danger in HW w/o big ship.\n\tdougforte: I don&#39;t have any actual pyramids, I&#39;m considering getting some but haven&#39;t yet (that could go on for a while...)\n\tdougforte: I&#39;m hoping to get a big ship back in HW before too much danger.  \n\n12) wil: D B1 Wil Y3 Y3\n\n13) dougforte: Build Y1 Dougforte\n\n14) wil: T G1 R1 Wil\n\n15) dougforte: Move Y1 Dougforte Everest\n\n16) wil: B G1 Wil\n\n17) dougforte: Move R3 Everest Y3\n\n18) wil: D B1 Y3 Y2 Y2\n\n19) dougforte: Build R2 Dougforte\n\n20) wil: S G3 Wil\nB B2 Y2\nB B2 Y2\nB B3 Wil\n\n21) dougforte: Move R3 Y3 Y2\n\n22) wil: D B2 Y2 G3 G3\n\n23) dougforte: Sacrifice R2 Dougforte\nAttack B2 Y2\nAttack B1 Y2\n\n24) wil: B B3 G3\n\n25) dougforte: Move R3 Y2 G3\n\n26) wil: M B1 Wil G3\n\n27) dougforte: Attack B3 G3\n\n28) wil: B B3 G3\nC G3 B\n\n29) dougforte: Build Y2 Everest\n\n30) wil: B R2 Wil\n\n31) dougforte: Move Y2 Everest G3\n\n32) wil: D R2 Wil G3 Gee3\n\n33) dougforte: Build R2 Everest\n\n34) wil: B G1 Wil\n\n35) dougforte: Build Y2 G3\n\n36) wil: D G1 Wil Y3 Y3\n\twil: I&#39;ve lost this game\n\n37) dougforte: Build Y3 Dougforte\n\tdougforte: Well, in that case, I&#39;ll try not to disappoint by messing up, but no promises.\n\n38) wil: B R2 Gee3\n\n39) dougforte: Build R3 G3\n\n40) wil: B R3 Wil\n\n41) dougforte: Build Y3 Everest\n\n42) wil: B G1 Wil\n\n43) dougforte: Trade B2 G2 Y2\n\n44) wil: M R1 Wil G3\n\n45) dougforte: Build G2 Y2\n\n46) wil: M B3 Wil Y3\n\n47) dougforte: Move R3 G3 Y2\n\n48) wil: S R1 G3\nP\n\n49) dougforte: Move R3 Y2 Gee3\n\n50) wil: B R1 Gee3\nC Gee3 R\n\n51) dougforte: Discover G2 Y2 G3 Gee3\n\n52) wil: B R1 Wil\n\n53) dougforte: Build R2 Dougforte\n\n54) wil: M R1 Wil Y3\n\n55) dougforte: Sacrifice G2 Y2\nBuild R2 Everest\nBuild R3 G3\n\n56) wil: B G2 Y3\n\n57) dougforte: Sacrifice Y2 G3\nMove R3 G3 Wil\nMove R3 G3 Wil\n\n58) wil: M R3 Wil G3\n\n59) dougforte: Sacrifice R2 Everest\nAttack G1 Wil\nAttack G1 Wil\n\twil: Gg\n\tdougforte: Thanks, good game.\n\twil: Gg, challenge me anytime\n\n\nHomeworlds Online (SDG# 35234)\nVariants: &quot;Unrated&quot;\nStarted: 2019.7.16, Ended: 2019.9.5\nParticipants: dougforte (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dougforte: Homeworld G3 B1 G3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) dougforte: Build G1 Dougforte\n\n5) Trydnt: Build G1 Trydnt\n\n6) dougforte: Trade G1 Y1 Dougforte\n\n7) Trydnt: Trade G1 Y1 Trydnt\n\n8) dougforte: Build Y2 Dougforte\n\n9) Trydnt: Build Y2 Trydnt\n\n10) dougforte: Discover Y1 Dougforte G2 Tasman\n\n11) Trydnt: Trade Y1 B1 Trydnt\n\n12) dougforte: Build G1 Dougforte\n\n13) Trydnt: Discover G1 Trydnt B3 B3\n\n14) dougforte: Move G1 Dougforte Tasman\n\n15) Trydnt: Build G1 B3\n\n16) dougforte: Move G1 Tasman B3\n\n17) Trydnt: Trade G1 R1 B3\n\n18) dougforte: Build Y1 Tasman\n\n19) Trydnt: Move Y2 Trydnt B3\n\n20) dougforte: Discover Y1 Tasman Y3 Coral\n\n21) Trydnt: Discover B1 Trydnt Y3 Y3\n\n22) dougforte: Build G1 B3\n\n23) Trydnt: Trade G1 R1 B3\n\n24) dougforte: Sacrifice G3 Dougforte\nBuild Y2 Dougforte\nBuild Y3 Tasman\nBuild G1 B3\n\n25) Trydnt: Move R1 B3 Trydnt\n\n26) dougforte: Trade Y2 B2 Dougforte\n\n27) Trydnt: Build R1 Trydnt\n\n28) dougforte: Trade B2 R2 Dougforte\n\n29) Trydnt: Build R2 Trydnt\n\n30) dougforte: Build Y2 Dougforte\n\n31) Trydnt: Move R1 Trydnt Coral\n\n32) dougforte: Trade Y2 G2 Dougforte\n\n33) Trydnt: Attack Y1 Coral\n\n34) dougforte: Build Y2 Dougforte\n\tdougforte: build Y2 dougforte\n\tdougforte: I mean...\n\n35) Trydnt: Discover R1 Trydnt G3 G3\n\n36) dougforte: Move R2 Dougforte Tasman\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Coral\nBuild R3 B3\nBuild R3 Trydnt\n\n38) dougforte: Build R3 Tasman\n\n39) Trydnt: Sacrifice Y2 B3\nMove R3 B3 Tasman\nMove R3 Tasman Dougforte\n\n40) dougforte: Move Y1 Tasman Y3\n\n41) Trydnt: Sacrifice R3 Trydnt\nAttack Y2 Dougforte\nAttack Y2 Dougforte\nAttack G2 Dougforte\n\n\nHomeworlds Online (SDG# 35307)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.7.19, Ended: 2019.8.6\nParticipants: wil (S), bhorner (N)\nWinner: wil\n\n1) bhorner: Homeworld B1 R2 G3\n\n2) wil: H G3 B1 B3 *\n\n3) bhorner: Build G1 Bhorner\n\tbhorner: Wow.  :)\n\tbhorner: If they take a small color X, you can take another of the same, a color X ship, and a green to instantly lock out...  Blue is easier to maintain lockout than other colors might be.  I love that I&#39;ve never seen this before.\n\n4) wil: B B1 Wil\n\twil: Different opening, but I&#39;ve found nothing unbeatable.\n\n5) bhorner: Trade G1 Y1 Bhorner\n\twil: We call it instafreeze\n\n6) wil: T B3 Y3 Wil\n\n7) bhorner: Build Y1 Bhorner\n\n8) wil: B B2 Wil\n\n9) bhorner: Discover Y1 Bhorner G3 Tree\n\n10) wil: D B1 Wil B2 B2\n\n11) bhorner: Build G1 Bhorner\n\tbhorner: I think maybe I didn&#39;t realize how dire it was.  I think I should have built g1 traded b2, and started building blue...  No plan is not a plan.  :)\n\tbhorner: I meant b3\n\n12) wil: B B2 Wil\n\n13) bhorner: Discover Y1 Bhorner B3 Snowman\n\twil: Dire is my hope!\n\n14) wil: D B2 Wil G2 G2\n\n15) bhorner: Move Y1 Tree B2\n\n16) wil: B B3 Wil\n\tbhorner: I&#39;ll do better next time.  (Or the time after that. :) )\n\twil: Far from over!\n\twil: Far from over!\n\n17) bhorner: Trade G3 B3 Bhorner\n\n18) wil: T B1 R1 B2\n\n19) bhorner: Discover Y1 B2 G3 Tree\n\n20) wil: T B3 G3 Wil\n\n21) bhorner: Sacrifice Y1 Tree\nDiscover G1 Bhorner B3 Manofsnow\n\n22) wil: B B1 G2\n\n23) bhorner: Build G1 Manofsnow\n\n24) wil: T B2 Y2 G2\n\n25) bhorner: Sacrifice G1 Manofsnow\nBuild B2 Bhorner\n\n26) wil: S Y2 G2\nM B1 G2 Manofsnow\nM B1 Manofsnow Bhorner\nC Bhorner B\n\twil: Oops\n\tbhorner: Well, I was trapped.  I could only do things that would make it worse.  :). If you didn&#39;t miss something, I was doomed, so I tried that one.  :)\n\twil: The game can get strange.\n\n\nHomeworlds Online (SDG# 35370)\nVariants: &quot;Hard time&quot;\nStarted: 2019.7.20, Ended: 2019.8.9\nParticipants: SilentTitan (S), dougforte (N)\nWinner: SilentTitan\n\n1) dougforte: Homeworld G1 Y2 B3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\n3) dougforte: Build B1 Dougforte\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dougforte: Trade B1 G1 Dougforte\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) dougforte: Build B1 Dougforte\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) dougforte: Build G1 Dougforte\n\n10) SilentTitan: Discover Y1 Silenttitan Y1 Sol\n\n11) dougforte: Discover G1 Dougforte Y3 Sirius\n\n12) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n13) dougforte: Move B3 Dougforte Sirius\n\tSilentTitan: I have no idea how I clicked any page admin button. It was inadvertent either way. Thanks\n\n14) SilentTitan: Trade Y3 R3 Silenttitan\n\tdougforte: I&#39;m not sure either.  No worries, it doesn&#39;t seem to have affected anything.\n\n15) dougforte: Move B3 Sirius Dougforte\n\tSilentTitan: Well it froze the timer which if, neither of us forgets we&#146;re playing the game, should be alright\n\n16) SilentTitan: Trade Y2 G2 Silenttitan\n\tdougforte: I think we&#39;ll manage to remember.  :)\n\n17) dougforte: Trade B3 Y3 Dougforte\n\n18) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n19) dougforte: Trade G1 R1 Dougforte\n\n20) SilentTitan: Trade Y3 G3 Silenttitan\n\n21) dougforte: Build B1 Dougforte\n\n22) SilentTitan: Build Y3 Silenttitan\n\n23) dougforte: Build R1 Dougforte\n\n24) SilentTitan: Discover Y2 Sol G3 Soul\n\n25) dougforte: Move R1 Dougforte Sirius\n\n26) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sol Soul\nMove Y1 Soul Dougforte\nMove Y2 Soul Dougforte\nCatastrophe Dougforte Yellow\n\n27) dougforte: Trade B1 Y1 Dougforte\n\n28) SilentTitan: Move G3 Silenttitan Dougforte\n\n29) dougforte: Build B1 Dougforte\n\n30) SilentTitan: Build G1 Dougforte\n\n31) dougforte: Attack G1 Dougforte\n\n32) SilentTitan: Build G2 Dougforte\nCatastrophe Dougforte Green\n\n\nHomeworlds Online (SDG# 35209)\nVariants: &quot;Hard time&quot;\nStarted: 2019.7.21, Ended: 2019.9.18\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld Y2 G3 B3\n\n2) wil: H B2 Y1 G3\n\tdragon76n: Hi Wil, I&#39;m back for another game. \n\twil: Thx!!\n\n3) dragon76n: Build B1 Dragon76n\n\n4) wil: B G1 Wil\n\tdragon76n: Sorry about the delay getting back... things have been hectic.\n\twil: No worries\n\n5) dragon76n: Build B1 Dragon76n\n\n6) wil: T G1 B1 Wil\n\n7) dragon76n: Trade B1 Y1 Dragon76n\n\n8) wil: B B1 Wil\n\n9) dragon76n: Trade B1 Y1 Dragon76n\n\n10) wil: D B1 Wil G3 G3\n\n11) dragon76n: Discover Y1 Dragon76n G1 Greone\n\n12) wil: B B1 Wil\n\n13) dragon76n: Build B2 Dragon76n\n\n14) wil: D B1 Wil Y3 Y3\n\n15) dragon76n: Move B2 Dragon76n Greone\n\n16) wil: S G3 Wil\nB B2 G3\nB B3 Y3\nB B3 Wil\n\n17) dragon76n: Build Y2 Dragon76n\n\tdragon76n: Wow!\n\n18) wil: S B2 G3\nT B3 Y3 Y3\nT B3 G3 Wil\n\n19) dragon76n: Build Y2 Greone\n\n20) wil: D Y3 Y3 G1 G1\n\n21) dragon76n: Build Y3 Greone\n\n22) wil: B G1 Wil\n\n23) dragon76n: Move Y1 Dragon76n G1\n\n24) wil: B G2 Wil\n\n25) dragon76n: Trade Y1 R1 Greone\n\n26) wil: T B1 R1 Wil\n\n27) dragon76n: Discover Y1 G1 B3 Bluthr\n\n28) wil: B Y1 G1\n\n29) dragon76n: Move Y2 Greone G3\n\n30) wil: B B1 G3\n\n31) dragon76n: Build R1 Greone\n\n32) wil: S G2 Wil\nB B2 G3\nB B3 Y3\n\n33) dragon76n: Sacrifice R1 Greone\nAttack B2 G3\n\n34) wil: B G2 Wil\n\n35) dragon76n: Trade B2 G2 G3\n\n36) wil: M G1 Wil G3\n\n37) dragon76n: Discover G2 G3 B2 Blutwo\n\n38) wil: S G3 Wil\nB G2 G3\nB G3 Wil\nB R1 Wil\n\n39) dragon76n: Move Y2 G3 Blutwo\n\n40) wil: T G2 R2 G3\n\n41) dragon76n: B G2 Blutwo\n\n42) wil: S B1 G3\nT B3 R3 Y3\n\n\nHomeworlds Online (SDG# 35396)\nStarted: 2019.7.26, Ended: 2019.8.29\nParticipants: Draw5PlayAll (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R2 B1 G3\n\tDraw5PlayAll: Is this starting already?\r\n\r\nMy performance was awful last year. This time I will take things more seriously!!\n\tBabamots: I put in the rules that people could start playing whenever they&#39;re ready, but it&#39;s tucked into the middle of a paragraph. I should have said it somewhere more prominent.\r\n\r\nI sort of think that the tournament *really* begins when I close registration (as I&#39;m planning to do in a couple of weeks). That&#39;s also when I start making sure that everyone is participating consistently or asking them if they need to withdraw.\r\n\r\nI have the first move, so it&#39;s my job to record this game with the tournament form.\r\n\r\nGood luck here and on all of your games!\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\n3) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Never pass up an opportunity to improve on the past...\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) Babamots: Trade G3 B3 Babamots\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) Babamots: Build B2 Babamots\n\tDraw5PlayAll: That moment when you wish you had picked Y2+B1 instead of R2+B1...\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\tBabamots: Could be worse.\n\n9) Babamots: Trade B3 Y3 Babamots\n\n10) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n11) Babamots: Discover B2 Babamots G3 Orion\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\n13) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Whomever cracks first...\n\n14) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n15) Babamots: Trade G1 R1 Babamots\n\n16) Draw5PlayAll: Build Y1 Draw5playall\n\n17) Babamots: Build G1 Babamots\n\n18) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n19) Babamots: Build G2 Babamots\n\n20) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2\n\n21) Babamots: Discover G2 Babamots G3 Ferenginar\n\n22) Draw5PlayAll: Build R1 Draw5playall\n\n23) Babamots: Build G2 Babamots\n\n24) Draw5PlayAll: Move R1 Draw5playall Build\n\n25) Babamots: Discover G2 Babamots Y3 Aldea\n\n26) Draw5PlayAll: Move B1 Draw5playall Y2\n\n27) Babamots: Sacrifice G2 Ferenginar\nBuild G2 Babamots\nBuild G3 Aldea\n\n28) Draw5PlayAll: Build B2 Y2\n\n29) Babamots: Sacrifice G3 Aldea\nBuild B3 Orion\nBuild B3 Orion\nBuild G3 Aldea\n\n30) Draw5PlayAll: Move B1 Y2 Orion\nCatastrophe Orion Blue\n\n31) Babamots: Discover G2 Babamots G3 Ferenginar\n\n32) Draw5PlayAll: Build B1 Build\n\n33) Babamots: Sacrifice G3 Aldea\nBuild Y1 Babamots\nBuild R2 Babamots\nBuild G3 Aldea\n\n34) Draw5PlayAll: Build B2 Y2\n\n35) Babamots: Move G3 Aldea Y2\n\n36) Draw5PlayAll: Build B3 Build\n\n37) Babamots: Sacrifice R2 Babamots\nAttack B2 Y2\nAttack B2 Y2\n\n38) Draw5PlayAll: Trade B2 Y2 Build\n\n39) Babamots: Sacrifice G2 Ferenginar\nBuild G2 Y2\nBuild G3 Aldea\n\n40) Draw5PlayAll: Discover G1 Y2 Y1 Move\n\n41) Babamots: Trade B2 R2 Y2\n\n42) Draw5PlayAll: Build R2 Build\n\n43) Babamots: Move R1 Babamots Aldea\n\tBabamots: Sorry to be so slow. I&#39;m traveling and very distracted.\n\n44) Draw5PlayAll: Build R3 Draw5playall\n\n45) Babamots: Sacrifice G3 Aldea\nBuild R3 Aldea\nBuild R3 Y2\nBuild G3 Aldea\n\n46) Draw5PlayAll: Discover R3 Draw5playall B2 Trade\n\n47) Babamots: Discover G3 Y2 B3 Andoria\n\n48) Draw5PlayAll: Discover B1 Build Y1 Discover\n\tDraw5PlayAll: It never fails. No matter how I set up my homeworld, no matter who goes first, the other person always ends up with more ships than I do.\n\n49) Babamots: Discover G3 Aldea Y2 Iconia\n\n50) Draw5PlayAll: Move G1 Move Trade\n\n51) Babamots: Sacrifice G2 Aldea\nBuild B2 Y2\nBuild G2 Iconia\n\n52) Draw5PlayAll: Build B3 Build\n\tDraw5PlayAll: What is Aldea again?\n\n53) Babamots: Move B2 Y2 Aldea\n\tBabamots: This is the first time I&#39;ve ever used &quot;Aldea&quot; for a system. It&#39;s a planet in TNG that was lost in mythical fashion, like Atlantis.\n\n54) Draw5PlayAll: Build Y1 Draw5playall\n\n55) Babamots: Sacrifice G3 Andoria\nPass\nBuild B3 Aldea\nBuild G3 Y2\n\n56) Draw5PlayAll: Move B3 Build Discover\n\n57) Babamots: Move G3 Y2 Draw5playall\n\n58) Draw5PlayAll: Attack G3 Draw5playall\n\n59) Babamots: Move G3 Iconia Draw5playall\n\n60) Draw5PlayAll: Attack G3 Draw5playall\n\n61) Babamots: Sacrifice Y3 Babamots\nMove G2 Iconia Draw5playall\nMove B2 Y2 Draw5playall\nCatastrophe Draw5playall G\nMove B3 Aldea Draw5playall\n\n62) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B3 Discover Build\nMove B3 Build Draw5playall\nMove B3 Build Draw5playall\n\n63) Babamots: Move B2 Aldea Draw5playall\nCatastrophe Draw5playall B\n\n\tDraw5PlayAll: 6 blues in one system\n\tBabamots: I&#39;d never seen anything quite like it, so I was pretty pleased when I came up with it. Sort of a slow-motion doomsday machine. A doomsweek machine, maybe.\n\tDraw5PlayAll: Hopefully I do not get massacred this year like I did last year...\n\tDraw5PlayAll: I think last time my ONLY wins were speardane, one human, and a bunch of withdrawn players.\n\tBabamots: You actually beat *two* humans who stayed in the tournament last year and had one draw :-)\r\n\r\nGood luck with your games!\n\nHomeworlds Online (SDG# 35397)\nStarted: 2019.7.29, Ended: 2019.8.3\nParticipants: The_Unicyclone (S), theMadHunter249 (N)\nWinner: theMadHunter249\n\n1) theMadHunter249: Homeworld R3 G2 B3\n\n2) The_Unicyclone: Homeworld B3 G1 R3\n\n3) theMadHunter249: Build B1 Themadhunter249\n\n4) The_Unicyclone: Build R1 The_unicyclone\n\n5) theMadHunter249: Trade B1 Y1 Themadhunter249\n\n6) The_Unicyclone: Build R1 The_unicyclone\n\n7) theMadHunter249: Discover Y1 Themadhunter249 G1 Gastown\n\n8) The_Unicyclone: Trade R1 Y1 The_unicyclone\n\n9) theMadHunter249: Build Y1 Gastown\n\n10) The_Unicyclone: Build Y2 The_unicyclone\n\n11) theMadHunter249: Build B1 Themadhunter249\n\n12) The_Unicyclone: Sacrifice Y2 The_unicyclone\nDiscover R1 The_unicyclone Y2 Lilypad\nMove R1 Lilypad Gastown\n\n13) theMadHunter249: Build Y2 Gastown\n\n14) The_Unicyclone: Build Y2 The_unicyclone\n\n15) theMadHunter249: Sacrifice Y1 Gastown\nMove B1 Themadhunter249 Gastown\n\n16) The_Unicyclone: Attack B1 Gastown\n\n17) theMadHunter249: Move Y1 Gastown Themadhunter249\n\n18) The_Unicyclone: Trade Y2 R2 The_unicyclone\n\n19) theMadHunter249: Build B1 Themadhunter249\n\n20) The_Unicyclone: Discover R2 The_unicyclone Y2 Bulletfarm\n\n21) theMadHunter249: Trade B3 R3 Themadhunter249\n\n22) The_Unicyclone: Move R2 Bulletfarm Gastown\n\n23) theMadHunter249: Move Y2 Gastown Themadhunter249\n\n24) The_Unicyclone: Trade R1 Y1 Gastown\n\n25) theMadHunter249: Move R3 Themadhunter249 Gastown\n\n26) The_Unicyclone: Trade Y1 R1 Gastown\n\n27) theMadHunter249: Attack B1 Gastown\n\n28) The_Unicyclone: Build R1 Gastown\nCatastrophe Gastown Red\n\n29) theMadHunter249: Build B1 Gastown\n\n30) The_Unicyclone: Build Y1 The_unicyclone\n\n31) theMadHunter249: Trade B1 R1 Gastown\n\n32) The_Unicyclone: Trade Y1 G1 The_unicyclone\n\n33) theMadHunter249: Move Y1 Themadhunter249 Gastown\n\n34) The_Unicyclone: Discover G1 The_unicyclone B2 Watertower\n\n35) theMadHunter249: Move R1 Gastown Watertower\n\n36) The_Unicyclone: Build G2 Watertower\n\n37) theMadHunter249: Attack G1 Watertower\n\n38) The_Unicyclone: Trade G2 R2 Watertower\n\n39) theMadHunter249: Build R1 Watertower\n\n40) The_Unicyclone: Attack G1 Watertower\n\n41) theMadHunter249: Build Y1 Gastown\n\n42) The_Unicyclone: Build Y2 The_unicyclone\n\n43) theMadHunter249: Trade Y1 R1 Gastown\n\n44) The_Unicyclone: Build G2 Watertower\n\n45) theMadHunter249: Build R2 Gastown\n\n46) The_Unicyclone: Trade G2 Y2 Watertower\n\n47) theMadHunter249: Trade R2 G2 Gastown\n\n48) The_Unicyclone: Discover Y2 Watertower R3 Thunderdome\n\n49) theMadHunter249: Discover G2 Gastown B2 Decoy\n\n50) The_Unicyclone: Sacrifice R2 Watertower\nAttack R1 Watertower\nAttack R1 Watertower\n\n51) theMadHunter249: Move Y1 Gastown Decoy\n\n52) The_Unicyclone: Discover Y2 Thunderdome B1 Dirtroad\n\n53) theMadHunter249: Build Y1 Decoy\n\n54) The_Unicyclone: Sacrifice Y1 The_unicyclone\nMove G1 Watertower Dirtroad\n\n55) theMadHunter249: Build R2 Gastown\n\n56) The_Unicyclone: Trade R1 Y1 Watertower\n\n57) theMadHunter249: Build Y3 Themadhunter249\n\n58) The_Unicyclone: Build Y3 Dirtroad\n\n59) theMadHunter249: Move Y2 Themadhunter249 Gastown\n\n60) The_Unicyclone: Trade Y3 R3 Dirtroad\n\n61) theMadHunter249: Build Y3 Gastown\n\n62) The_Unicyclone: Build Y3 Dirtroad\n\n63) theMadHunter249: Move Y3 Gastown Themadhunter249\n\n64) The_Unicyclone: Build R1 Dirtroad\n\n65) theMadHunter249: Move R2 Gastown Watertower\n\n66) The_Unicyclone: Move R1 Watertower Dirtroad\n\n67) theMadHunter249: Attack Y1 Watertower\n\n68) The_Unicyclone: Sacrifice Y3 Dirtroad\nMove R1 Dirtroad Themadhunter249\nMove R1 Dirtroad Themadhunter249\nMove R3 Dirtroad Themadhunter249\nCatastrophe Themadhunter249 Red\n\n69) theMadHunter249: Build Y3 Gastown\n\n70) The_Unicyclone: Trade G1 R1 Dirtroad\n\n71) theMadHunter249: Trade Y3 R3 Themadhunter249\n\n72) The_Unicyclone: Discover R1 Dirtroad G3 Thegreen\n\n73) theMadHunter249: Build Y3 Themadhunter249\n\n74) The_Unicyclone: Move Y2 Dirtroad Thegreen\n\n75) theMadHunter249: Trade Y3 G3 Themadhunter249\n\n76) The_Unicyclone: Build Y3 Thegreen\n\n77) theMadHunter249: Trade R2 G2 Watertower\n\n78) The_Unicyclone: Move Y3 Thegreen Decoy\n\n79) theMadHunter249: Sacrifice Y3 Themadhunter249\nMove G2 Decoy The_unicyclone\nMove G2 Watertower The_unicyclone\nMove G3 Themadhunter249 The_unicyclone\nCatastrophe The_unicyclone Green\n\n80) The_Unicyclone: Trade Y3 G3 Decoy\n\n81) theMadHunter249: Trade Y1 B1 Watertower\n\n82) The_Unicyclone: Sacrifice G3 Decoy\nBuild R1 The_unicyclone\nBuild R2 The_unicyclone\nBuild R2 The_unicyclone\nCatastrophe The_unicyclone Red\n\n83) theMadHunter249: Sacrifice Y3 Gastown\nMove B1 Gastown The_unicyclone\nMove B1 Watertower The_unicyclone\nMove B1 Themadhunter249 The_unicyclone\nCatastrophe The_unicyclone Blue\n\n\nHomeworlds Online (SDG# 35400)\nVariants: &quot;Hard time&quot;\nStarted: 2019.7.29, Ended: 2019.8.19\nParticipants: dlwillson (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\n2) dlwillson: Homeworld B2 Y3 G3\n\tSimon: Have fun! You have 4 defends, I&#39;ll try my best.\n\n3) Simon: Build B1 Simon\n\tdlwillson: I get lucky sometimes. Sometimes, I play well. :-)\n\tdlwillson: Thank you for the challenge! Good luck, and have fun!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Simon: Trade B3 Y3 Simon\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) Simon: Build Y1 Simon\n\n8) dlwillson: B B1 Dlwillson\n\n9) Simon: Build B2 Simon\n\n10) dlwillson: D B1 Dlwillson G1 Field\n\n11) Simon: Discover B2 Simon G2 G2\n\n12) dlwillson: T B1 R1 Dlwillson\n\n13) Simon: Build B1 G2\n\n14) dlwillson: B R1 Dlwillson\n\n15) Simon: Trade B2 R2 G2\n\n16) dlwillson: B B2 Field\n\n17) Simon: Build R2 G2\n\n18) dlwillson: T B2 R2 Field\n\n19) Simon: Trade R2 Y2 G2\n\n20) dlwillson: D R1 Dlwillson Y1 Golden\n\n21) Simon: Build B2 G2\n\n22) dlwillson: B G1 Dlwillson\n\n23) Simon: Discover B1 G2 Y1 Y1\n\n24) dlwillson: M G1 Dlwillson Golden\n\n25) Simon: Build Y2 G2\n\n26) dlwillson: D G1 Golden R3 Mars\n\n27) Simon: Build Y2 Simon\n\n28) dlwillson: D R1 Golden B2 Sky\n\n29) Simon: Build B3 G2\n\n30) dlwillson: B B3 Field\n\n31) Simon: Trade B3 G3 G2\n\n32) dlwillson: T B3 Y3 Field\n\n33) Simon: Sacrifice G3 G2\nBuild B3 G2\nBuild B3 Y1\nBuild B3 Simon\n\n34) dlwillson: B G1 Dlwillson\n\n35) Simon: Discover B2 G2 Y1 Y1b\n\n36) dlwillson: S G3 Dlwillson\nB G2 Mars\nB G2 Mars\nB G3 Dlwillson\n\n37) Simon: Discover Y1 Simon R2 R2\n\n38) dlwillson: S Y3 Field\nM G2 Mars G2\nM G2 Mars G2\nM G1 Mars G2\nC G2 G\n\n39) Simon: Trade B3 G3 Simon\n\n40) dlwillson: T R2 Y2 Field\n\n41) Simon: Sacrifice G3 Simon\nBuild Y2 Simon\nBuild Y3 R2\nBuild B3 Y1b\n\n42) dlwillson: B B3 Field\n\n43) Simon: Discover Y2 Simon R2 R2b\n\n44) dlwillson: S G3 Dlwillson\nB R2 Sky\nB R3 Sky\nB R3 Dlwillson\n\n45) Simon: Trade B3 R3 Y1b\n\n46) dlwillson: T R3 G3 Sky\n\n47) Simon: Discover Y2 Simon G2 G2\n\n48) dlwillson: M B3 Field G2\n\n49) Simon: Discover Y2 G2 G1 G1\n\n50) dlwillson: B B3 G2\n\n51) Simon: Sacrifice Y3 R2\nMove B1 Y1 Dlwillson\nMove B3 Y1 Dlwillson\nMove B2 Y1b Dlwillson\nCatastrophe Dlwillson Blue\n\n\tdlwillson: Well played! Welcome to the top of the Homeworlds ladder!\n\tSimon: Thanks! gg, looking forward to a rematch eventually!\n\nHomeworlds Online (SDG# 35405)\nStarted: 2019.8.1, Ended: 2019.9.26\nParticipants: Draw5PlayAll (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R2 G3\n\n2) Draw5PlayAll: Homeworld B2 Y1 G3\n\n3) ajo: Build G1 Ajo\n\tDraw5PlayAll: ThisIsForTheTournament\n\tajo: Yep! Good luck.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ajo: Build Y2 Ajo\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) Draw5PlayAll: Discover Y2 Draw5playall G3 Greed\n\n11) ajo: Sacrifice G3 Ajo\nBuild Y2 Ajo\nBuild Y3 Ajo\nBuild Y3 Alpha\n\n12) Draw5PlayAll: Build Y3 Greed\n\n13) ajo: Trade Y2 G2 Ajo\n\n14) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n15) ajo: Trade Y3 G3 Alpha\n\n16) Draw5PlayAll: Build R1 Draw5playall\n\n17) ajo: Trade Y2 R2 Ajo\n\n18) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n19) ajo: Build Y1 Alpha\n\n20) Draw5PlayAll: Discover Y2 Greed B2 Diversity\n\n21) ajo: Trade Y1 R1 Alpha\n\n22) Draw5PlayAll: Move B1 Draw5playall Greed\n\n23) ajo: Build G1 Alpha\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) ajo: Discover R2 Ajo Y1 Beta\n\n26) Draw5PlayAll: Build B1 Greed\n\n27) ajo: Build Y2 Alpha\n\n28) Draw5PlayAll: Build B2 Greed\n\n29) ajo: Discover Y2 Alpha B3 Gamma\n\n30) Draw5PlayAll: Discover B1 Greed G2 Growth\n\n31) ajo: Sacrifice G3 Alpha\nBuild R1 Beta\nBuild Y2 Gamma\nBuild Y3 Alpha\n\n32) Draw5PlayAll: Build B3 Growth\n\n33) ajo: Move R2 Beta Gamma\n\n34) Draw5PlayAll: Trade B3 R3 Growth\n\n35) ajo: Discover Y1 Alpha B3 Delta\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Growth\nBuild R3 Draw5playall\nBuild G1 Draw5playall\n\n37) ajo: Build R3 Alpha\n\tDraw5PlayAll: It never fails.\n\n38) Draw5PlayAll: Move G1 Draw5playall Greed\n\n39) ajo: Move R3 Alpha Diversity\n\n40) Draw5PlayAll: Move Y2 Diversity Delta\n\n41) ajo: Build G2 Alpha\n\n42) Draw5PlayAll: Move G1 Greed Beta\n\n43) ajo: Attack G1 Beta\n\n44) Draw5PlayAll: Build G3 Draw5playall\n\n45) ajo: Build G3 Beta\n\tDraw5PlayAll: I hate these closed positions\n\n46) Draw5PlayAll: Move R3 Draw5playall Gamma\n\n47) ajo: Sacrifice Y2 Gamma\nMove R2 Gamma Growth\nMove R1 Alpha Growth\nCatastrophe Growth Red\n\n48) Draw5PlayAll: Attack Y2 Gamma\n\n49) ajo: Build Y2 Alpha\n\n50) Draw5PlayAll: Trade B1 R1 Greed\n\n51) ajo: Sacrifice Y1 Delta\nMove Y2 Alpha Growth\n\tDraw5PlayAll: How exactly do you run your AI? Do you just put the position into the computer, ask for ai_move, and then manually convert it into SDG notation? Or something else?\n\n52) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 Gamma\nBuild B1 Greed\nBuild G3 Draw5playall\n\tajo: Essentially yes. As of a month-ish ago, you can run it with `--sdg` to get the output automatically in SDG notation. I&#39;m haphazardly working on something that could slurp the game transcript from SDG, reconstruct the position, and then submit its move automatically. But for now it&#39;s still mostly manual.\n\n53) ajo: Move G3 Beta Delta\n\n54) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Gamma\nBuild R2 Greed\nBuild R3 Draw5playall\n\tDraw5PlayAll: Hmmm...\r\n\r\nAttack: /A fight broke out in the ([]) system! (\\w+)&#39;s (\\w\\d) ship was overtaken by (\\w+)./\r\nConstruct: /(\\w+) created an? (\\w\\d) ship in the ([]) system./\r\nTrade: /(\\w+) traded their old (\\w\\d) ship for a shiny new (\\w\\d) ship in the ([]) system./\r\nMove: /(\\w+) moved their (\\w\\d) ship from ([]) to ([])./\r\nDiscover: /(\\w+)&#39;s ship (\\w\\d) ventured forth from ([]) and discovered a new (\\w\\d) system! It has been named ([])./\r\nSacrifice: /(\\w+)&#39;s ship (\\w\\d) was sacrificed in the ([]) system./\r\n\r\nInside the []&#39;s you need to know all the valid characters for system names.\n\tDraw5PlayAll: [A-Za-z0-9_-&#39;] to be exact.\n\n55) ajo: Build G3 Beta\n\n56) Draw5PlayAll: Sacrifice Y2 Delta\nMove B1 Growth Delta\nMove B1 Delta Diversity\n\n57) ajo: Sacrifice G2 Alpha\nBuild G2 Delta\nBuild Y2 Alpha\n\n58) Draw5PlayAll: Sacrifice Y3 Greed\nMove B1 Diversity Alpha\nMove B2 Greed Alpha\nMove B1 Greed Alpha\nCatastrophe Alpha Blue\n\n59) ajo: Trade G2 B2 Delta\n\tDraw5PlayAll: Probably made everything worse for me, but I needed more stuff.\n\n60) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n61) ajo: Sacrifice G3 Beta\nBuild G1 Ajo\nBuild G2 Delta\nBuild G3 Beta\n\n62) Draw5PlayAll: Build R1 Draw5playall\n\n63) ajo: Sacrifice G3 Delta\nBuild G3 Delta\nBuild Y2 Ajo\nBuild Y3 Growth\n\n64) Draw5PlayAll: Move Y2 Gamma Draw5playall\n\tajo: Yeah, I think you made it worse. :)\n\n65) ajo: Sacrifice B2 Delta\nTrade R3 Y3 Diversity\nTrade G1 B1 Beta\n\n66) Draw5PlayAll: Trade R1 G1 Draw5playall\n\n67) ajo: Move Y3 Diversity Greed\n\n\tDraw5PlayAll: Like always, I stand no chance.\n\tajo: Good game!\n\nHomeworlds Online (SDG# 35406)\nStarted: 2019.8.1, Ended: 2019.10.10\nParticipants: Draw5PlayAll (S), speardane (N)\nWinner: Draw5PlayAll\n\n1) speardane: Homeworld B3 Y2 G3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) speardane: Build G1 Speardane\n\tDraw5PlayAll: ThisIsForTheTournament\n\tspeardane: Agreed. Good luck!\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) speardane: Trade G3 R3 Speardane\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: It always wants an R3...\n\n7) speardane: Build G1 Speardane\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) speardane: Discover G1 Speardane B1 Delos\n\n10) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n11) speardane: Build G1 Delos\n\n12) Draw5PlayAll: Build G2 Draw5playall\n\n13) speardane: Trade G1 Y1 Delos\n\n14) Draw5PlayAll: Discover G2 Draw5playall B3 Water\n\n15) speardane: Build G1 Delos\n\n16) Draw5PlayAll: Build G2 Draw5playall\n\n17) speardane: Trade G1 R1 Delos\n\n18) Draw5PlayAll: Move R1 Draw5playall Water\n\n19) speardane: Build G1 Delos\n\n20) Draw5PlayAll: Build R2 Water\n\n21) speardane: Build R2 Delos\n\tDraw5PlayAll: Against many other opponents it would be me who was losing the race.\n\n22) Draw5PlayAll: Trade R2 Y2 Water\n\n23) speardane: Build R2 Delos\n\n24) Draw5PlayAll: Move R1 Water Delos\nCatastrophe Delos Red\n\n25) speardane: Trade G1 R1 Delos\n\tDraw5PlayAll: Your AI might need a check against having 3 of a color where a 4th could easily be moved in...\n\n26) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n27) speardane: Build G1 Delos\n\n28) Draw5PlayAll: Build G2 Draw5playall\n\n29) speardane: Discover G1 Delos B3 Lebling\n\n30) Draw5PlayAll: Discover R2 Draw5playall G3 Earth\n\n31) speardane: Build G2 Lebling\n\tDraw5PlayAll: Unfortunately, I cannot see yellow representing Air by any stretch of the imagination.\n\n32) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Water\nBuild Y1 Draw5playall\n\n33) speardane: Trade G2 Y2 Lebling\n\n34) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n35) speardane: Build Y1 Lebling\n\n36) Draw5PlayAll: Sacrifice G3 Water\nBuild Y3 Draw5playall\nBuild Y3 Water\nBuild R1 Earth\n\n37) speardane: Build Y3 Delos\n\n38) Draw5PlayAll: Move Y3 Draw5playall Earth\n\n39) speardane: Trade Y2 R2 Lebling\n\n40) Draw5PlayAll: Build Y2 Draw5playall\n\n41) speardane: Build R2 Lebling\n\n42) Draw5PlayAll: Discover R2 Earth B2 Something\n\n43) speardane: Build R3 Delos\n\n44) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild G2 Draw5playall\nBuild R3 Something\n\n45) speardane: Build G2 Lebling\n\n46) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Water\nBuild B1 Draw5playall\n\n47) speardane: Sacrifice Y3 Delos\nDiscover R3 Delos Y3 Kotok\nMove G1 Lebling Draw5playall\nMove G2 Lebling Draw5playall\nCatastrophe Draw5playall Green\n\n48) Draw5PlayAll: Move G3 Water Draw5playall\n\tDraw5PlayAll: Thin ice, tightrope, hanging by a thread, whatever metaphor you want.\n\n49) speardane: Trade R2 G2 Lebling\n\tDraw5PlayAll: Thought so.\n\n50) Draw5PlayAll: Build G1 Draw5playall\n\n51) speardane: Build G2 Lebling\n\n52) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Water\nBuild R2 Earth\n\n53) speardane: Discover G2 Lebling B2 Minsky\n\n54) Draw5PlayAll: Move Y3 Water Something\n\n55) speardane: Move Y1 Lebling Minsky\n\tDraw5PlayAll: What do those names refer to?\n\n56) Draw5PlayAll: Move R3 Something Lebling\n\tDraw5PlayAll: Proposed AI addition: Make it want to have a large at any system it has several ships in.\n\n57) speardane: Sacrifice G2 Lebling\nBuild G2 Minsky\nPass\n\n58) Draw5PlayAll: Attack R2 Lebling\n\n59) speardane: Move G2 Minsky Kotok\n\n60) Draw5PlayAll: Move Y1 Draw5playall Lebling\n\n61) speardane: Move R3 Kotok Minsky\n\n62) Draw5PlayAll: Move R2 Lebling Delos\n\n63) speardane: Sacrifice G2 Kotok\nBuild Y3 Delos\nBuild G2 Minsky\n\n64) Draw5PlayAll: Attack Y1 Delos\n\n65) speardane: Attack R2 Delos\n\n66) Draw5PlayAll: Move Y1 Delos Lebling\n\n67) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n68) Draw5PlayAll: Move B1 Draw5playall Earth\n\n69) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\n70) Draw5PlayAll: Move R2 Earth Something\n\n71) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n72) Draw5PlayAll: Move G2 Water Something\n\tDraw5PlayAll: Patience is a virtue\n\n73) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\tspeardane: [ajo says:] Well, this &quot;closed position&quot; is certainly showing off speardane&#39;s lack of foresight. It seems to be stuck at a local maximum (until you give it a pressing concern). It would probably be doing &quot;pass&quot; every turn right now, except that it has a hard rule never to &quot;pass&quot; unless it&#39;s checkmated (on the logic that if the game is winnable at all, _some_ move must be better than &quot;pass&quot; by definition).\n\n74) Draw5PlayAll: Move Y2 Water Draw5playall\n\tDraw5PlayAll: Nice to know that. My current plan will seem very boring until I have 3 blues at Earth and another large at something. IICC that takes 6 turns before Delos or Minsky goes supernova.\n\n75) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n76) Draw5PlayAll: Sacrifice G3 Water\nPass\nBuild G3 Something\nBuild B3 Earth\n\n77) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\n78) Draw5PlayAll: Move B3 Earth Something\n\tDraw5PlayAll: Almost there...\n\n79) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n80) Draw5PlayAll: Move B1 Draw5playall Earth\n\tDraw5PlayAll: Ready...\n\n81) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\n82) Draw5PlayAll: Sacrifice Y1 Lebling\nMove B3 Something Delos\n\tDraw5PlayAll: Aim...\n\n83) speardane: Attack B3 Delos\n\n84) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 Earth Delos\nMove B1 Earth Delos\nCatastrophe Delos Blue\n\tDraw5PlayAll: FIRE!!\n\n85) speardane: Discover G2 Minsky B3 Delos\n\n86) Draw5PlayAll: Move G3 Something Delos\n\tDraw5PlayAll: (Of course. I forgot that the Y2 sac already blocked speardane from growing the Y3 instantly...)\n\n87) speardane: Sacrifice G2 Delos\nBuild G1 Minsky\nBuild G2 Speardane\n\n88) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Earth\nBuild R2 Lebling\nBuild G3 Draw5playall\n\n89) speardane: Discover G2 Minsky B1 Kotok\n\n90) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n91) speardane: Discover G2 Speardane B1 Licklider\n\n92) Draw5PlayAll: Move R2 Something Licklider\n\n93) speardane: Move R3 Minsky Licklider\n\n94) Draw5PlayAll: Sacrifice Y1 Lebling\nMove R2 Licklider Minsky\n\n95) speardane: Move Y1 Minsky Kotok\n\n96) Draw5PlayAll: Attack G1 Minsky\n\n97) speardane: Trade R3 Y3 Licklider\n\n98) Draw5PlayAll: Sacrifice G3 Delos\nBuild Y1 Something\nBuild R3 Minsky\nBuild B3 Draw5playall\n\tDraw5PlayAll: Why is this so hard?!\n\n99) speardane: Build G1 Licklider\n\tspeardane: You tell me. I expected something irreversible to happen when you said &quot;FIRE!!&quot;, but... :P\n\n100) Draw5PlayAll: Build G3 Minsky\n\tDraw5PlayAll: The end is in sight!!\n\tDraw5PlayAll: 5 turns until my hopefully unstoppable Borg fleet invades.\n\n101) speardane: Discover G2 Licklider Y2 Delos\n\n102) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 Minsky Kotok\nDiscover G3 Minsky Y1 Node\n\n103) speardane: Sacrifice Y1 Kotok\nDiscover G2 Kotok Y2 Fritz\n\n104) Draw5PlayAll: Sacrifice Y3 Earth\nMove R3 Kotok Speardane\nMove G3 Node Speardane\nMove B3 Draw5playall Earth\n\n105) speardane: Pass\n\n106) Draw5PlayAll: Sacrifice R2 Lebling\nAttack R3 Speardane\nAttack G1 Speardane\n\tDraw5PlayAll: Checkmate\n\n\tspeardane: Good game!\n\tDraw5PlayAll: Is that an automated thing that speardane does when checkmated?\n\nHomeworlds Online (SDG# 35407)\nStarted: 2019.8.1, Ended: 2019.10.2\nParticipants: speardane (S), DodoBirb (N)\nWinner: speardane\n\n1) DodoBirb: Homeworld B1 R2 G3\n\n2) speardane: Homeworld G3 B1 Y3\n\tDodoBirb: I assume a bot wouldn&#39;t play any differently whether or not it&#39;s a Homeworlds Tournament game but just to make sure, it&#39;s a Homeworlds Tournament game\n\n3) DodoBirb: Build G1 Dodobirb\n\tspeardane: Yep. Good luck!\n\tDodoBirb: Good Luck to you too!\n\n4) speardane: Build Y1 Speardane\n\n5) DodoBirb: Build G1 Dodobirb\n\n6) speardane: Trade Y3 R3 Speardane\n\n7) DodoBirb: Trade G1 B1 Dodobirb\n\n8) speardane: Build Y1 Speardane\n\n9) DodoBirb: Trade G1 Y1 Dodobirb\n\n10) speardane: Discover Y1 Speardane G2 Delos\n\n11) DodoBirb: Build Y2 Dodobirb\n\n12) speardane: Build Y2 Delos\n\n13) DodoBirb: Discover Y1 Dodobirb G3 Greeny\n\n14) speardane: Move Y2 Delos Greeny\n\n15) DodoBirb: Build B2 Dodobirb\n\n16) speardane: Build Y2 Delos\n\n17) DodoBirb: Build Y3 Dodobirb\n\n18) speardane: Build Y3 Speardane\n\n19) DodoBirb: Discover Y2 Dodobirb Y3 Sun\n\n20) speardane: Discover Y3 Speardane G2 Lebling\n\n21) DodoBirb: Move B2 Dodobirb Greeny\n\n22) speardane: Sacrifice Y2 Delos\nMove Y2 Greeny Lebling\nMove Y3 Lebling Greeny\n\n23) DodoBirb: Sacrifice Y1 Greeny\nDiscover B2 Greeny G2 Medgreen\n\n24) speardane: Move Y3 Greeny Medgreen\n\n25) DodoBirb: Discover Y3 Dodobirb G3 Greeny2\n\n26) speardane: Build R1 Speardane\n\n27) DodoBirb: Trade B2 R2 Medgreen\n\n28) speardane: Sacrifice R1 Speardane\nAttack R2 Medgreen\n\n29) DodoBirb: Trade B1 R1 Dodobirb\n\n30) speardane: Build Y1 Medgreen\n\n31) DodoBirb: Build Y2 Greeny2\n\n32) speardane: Sacrifice Y2 Lebling\nMove Y1 Delos Greeny2\nMove Y1 Medgreen Greeny2\nCatastrophe Greeny2 Yellow\n\n33) DodoBirb: Build G1 Dodobirb\n\n34) speardane: Build Y1 Medgreen\n\n35) DodoBirb: Trade G1 B1 Dodobirb\n\n36) speardane: Discover Y3 Medgreen G3 Delos\n\n37) DodoBirb: Build B2 Dodobirb\n\n38) speardane: Build Y1 Delos\n\n39) DodoBirb: Trade B2 Y2 Dodobirb\n\n40) speardane: Discover Y3 Delos G2 Lebling\n\n41) DodoBirb: Build B2 Dodobirb\n\n42) speardane: Build Y2 Lebling\n\n43) DodoBirb: Build Y3 Dodobirb\n\n44) speardane: Sacrifice Y3 Lebling\nMove Y1 Delos Dodobirb\nMove Y2 Lebling Sun\nMove Y2 Sun Dodobirb\nCatastrophe Dodobirb Yellow\n\n45) DodoBirb: Trade B2 Y2 Dodobirb\n\n46) speardane: Build Y1 Medgreen\n\n47) DodoBirb: Discover Y2 Sun G2 Forward\n\n48) speardane: Build Y2 Medgreen\n\n49) DodoBirb: Build Y3 Forward\n\n50) speardane: Build Y3 Speardane\n\n51) DodoBirb: Build Y3 Dodobirb\n\n52) speardane: Trade Y3 B3 Speardane\n\n53) DodoBirb: Discover Y2 Forward Y3 Sun\n\n54) speardane: Sacrifice Y2 Medgreen\nMove B3 Speardane Medgreen\nDiscover Y1 Medgreen G3 Delos\n\n55) DodoBirb: Build Y2 Forward\n\n56) speardane: Build R1 Medgreen\n\n57) DodoBirb: Move Y3 Dodobirb Delos\n\n58) speardane: Discover Y1 Delos G2 Lebling\n\n59) DodoBirb: Build G1 Dodobirb\n\n60) speardane: Trade R1 G1 Medgreen\n\n61) DodoBirb: Sacrifice G3 Dodobirb\nBuild G1 Dodobirb\nBuild G3 Dodobirb\nBuild B2 Dodobirb\n\n62) speardane: Discover G1 Medgreen B3 Kotok\n\n63) DodoBirb: Move G1 Dodobirb Sun\n\n64) speardane: Move Y1 Lebling Kotok\n\n65) DodoBirb: Move Y2 Dodobirb Kotok\n\n66) speardane: Move B3 Medgreen Kotok\n\n67) DodoBirb: Sacrifice Y2 Kotok\nMove B1 Dodobirb Kotok\nMove B2 Dodobirb Kotok\nCatastrophe Kotok B\n\n68) speardane: Build Y1 Medgreen\n\n69) DodoBirb: Build Y2 Delos\n\n70) speardane: Discover Y1 Medgreen B3 Lebling\n\n71) DodoBirb: Discover Y3 Delos G2 Attack\n\n72) speardane: Trade Y1 G1 Lebling\n\n73) DodoBirb: Trade G3 R3 Dodobirb\n\n74) speardane: Build G3 Lebling\n\n75) DodoBirb: Trade G1 B1 Dodobirb\n\n76) speardane: Trade G1 Y1 Lebling\n\n77) DodoBirb: Sacrifice Y2 Sun\nMove B1 Dodobirb Sun\nMove B1 Sun Attack\n\n78) speardane: Build Y2 Lebling\n\n79) DodoBirb: Trade R1 G1 Dodobirb\n\n80) speardane: Trade Y2 R2 Lebling\n\n81) DodoBirb: Trade Y3 R3 Attack\n\n82) speardane: Build Y2 Lebling\n\n83) DodoBirb: Sacrifice Y2 Delos\nMove R3 Attack Speardane\nMove Y3 Forward Speardane\n\tDodoBirb: I think I can force a win here. Hopefully your bot doesn&#39;t prove me wrong.\n\n84) speardane: Sacrifice R2 Medgreen\nAttack R3 Speardane\nAttack Y3 Speardane\n\n85) DodoBirb: Build Y2 Forward\n\n86) speardane: Sacrifice Y2 Lebling\nMove Y3 Speardane Forward\nMove R3 Speardane Attack\n\tDodoBirb: well, that is what I call &quot;redbird&quot; mistake. Forgetting that your opponent has red ships that can be sacrificed\n\n87) DodoBirb: Build Y2 Forward\nCatastrophe Forward Y\n\tDodoBirb: I&#39;m not that confident in winning this game anymore\n\n88) speardane: Attack B1 Attack\n\tspeardane: [ajo says:] I HAD been quietly wondering what your big plan was. ;)\n\n89) DodoBirb: Build G1 Dodobirb\n\tDraw5PlayAll: Red bird? I would define it as the opposite mistake -- not having enough red and your opponent sends in large ships you cannot takeover\n\n90) speardane: Build Y2 Lebling\n\tDodoBirb: I suppose that follows the &quot;bird&quot; mistake formula better\n\n91) DodoBirb: Build G2 Dodobirb\n\n92) speardane: Build G3 Lebling\n\n93) DodoBirb: Trade G2 Y2 Dodobirb\n\n94) speardane: Sacrifice G3 Lebling\nBuild Y2 Medgreen\nBuild Y3 Speardane\nBuild Y3 Medgreen\n\n95) DodoBirb: Sacrifice G1 Sun\nBuild Y3 Dodobirb\n\n96) speardane: Sacrifice Y3 Medgreen\nMove Y1 Medgreen Lebling\nMove Y1 Lebling Dodobirb\nMove Y1 Lebling Dodobirb\nCatastrophe Dodobirb Yellow\n\n97) DodoBirb: Trade R3 Y3 Dodobirb\n\n98) speardane: Move Y3 Speardane Attack\n\n99) DodoBirb: Build Y1 Dodobirb\n\n100) speardane: Build Y1 Attack\n\n101) DodoBirb: Trade Y1 G1 Dodobirb\n\n102) speardane: Discover Y3 Attack G3 Delos\n\n103) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n104) speardane: Build G2 Lebling\n\n105) DodoBirb: Trade G1 Y1 Bluey\n\n106) speardane: Sacrifice G2 Lebling\nBuild Y2 Delos\nBuild Y3 Attack\n\n107) DodoBirb: Move G1 Dodobirb Bluey\n\n108) speardane: Move Y3 Attack Bluey\n\n109) DodoBirb: Sacrifice Y1 Bluey\nMove G1 Bluey Dodobirb\n\n110) speardane: Discover Y3 Delos G1 Kotok\n\n111) DodoBirb: Build G2 Dodobirb\n\n112) speardane: Discover Y2 Delos B2 Minsky\n\n113) DodoBirb: Trade G1 R1 Dodobirb\n\n114) speardane: Discover Y2 Minsky G1 Delos\n\n115) DodoBirb: Build G3 Dodobirb\n\n116) speardane: Move G3 Lebling Dodobirb\nCatastrophe Dodobirb Green\n\n117) DodoBirb: Trade R1 G1 Dodobirb\n\n118) speardane: Trade Y3 G3 Bluey\n\n119) DodoBirb: Trade Y3 G3 Dodobirb\n\n120) speardane: Build Y1 Delos\n\n121) DodoBirb: Trade G1 R1 Dodobirb\n\n122) speardane: Move Y2 Delos Bluey\n\n123) DodoBirb: Build G1 Dodobirb\n\n124) speardane: Build Y3 Delos\n\n125) DodoBirb: Pass\n\n126) speardane: Build Y3 Delos\n\n127) DodoBirb: Pass\n\n128) speardane: Sacrifice Y3 Delos\nMove R2 Lebling Dodobirb\nMove R3 Attack Lebling\nMove R3 Lebling Dodobirb\nCatastrophe Dodobirb Red\n\tspeardane: [ajo says:] One known weakness of speardane is that because it&#39;s greedily optimizing for &quot;good position,&quot; it might just keep building up ships forever and never actually go for the kill. I mean, it might; but be aware that it&#39;s easily distracted by local maxima. If you&#39;re watching to see what its grand plan is to finish this game, I&#39;ll tell you right now that it doesn&#39;t have any grand plan!\n\tDodoBirb: right now I don&#39;t really see any move that isn&#39;t suicide so I guess I&#39;ll keep passing\n\n129) DodoBirb: Pass\n\n130) speardane: Move Y3 Delos Lebling\n\tDodoBirb: Good game\n\n131) DodoBirb: Pass\n\n132) speardane: Trade Y3 R3 Lebling\n\n\tspeardane: [ajo says:] So are we reporting this as a win for speardane? Or are you still playing for the draw-by-Arthur-gets-bored?\n\tDodoBirb: let&#39;s just report this as a win\n\tDraw5PlayAll: I sense that there exists a way to easily check for mate-in-two situations, like &quot;opponent has no red and I can move an R3 into their homeworld&quot;. That would allow the bot to win more easily.\r\n\r\nOr just make an AlphaHomeworlds neural net.\n\nHomeworlds Online (SDG# 35304)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.2, Ended: 2019.8.5\nParticipants: Trydnt (S), MasterBri (N)\nWinner: MasterBri\n\n1) MasterBri: Homeworld B3 Y2 G1 *\n\n\nHomeworlds Online (SDG# 35348)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.6, Ended: 2019.9.24\nParticipants: bhorner (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Have fun! :-)\n\n2) bhorner: Homeworld R1 B2 G3\n\n3) Simon: Build B1 Simon\n\tbhorner: Thanks, you too!  :)\n\n4) bhorner: Build G1 Bhorner\n\n5) Simon: Trade B1 R1 Simon\n\n6) bhorner: Build G1 Bhorner\n\n7) Simon: Build R2 Simon\n\n8) bhorner: Trade G1 Y1 Bhorner\n\n9) Simon: Trade R2 Y2 Simon\n\n10) bhorner: Build Y1 Bhorner\n\n11) Simon: Build R2 Simon\n\n12) bhorner: Discover Y1 Bhorner G3 Tree\n\n13) Simon: Trade R2 G2 Simon\n\n14) bhorner: Discover Y1 Tree Y1 Happy\n\n15) Simon: Build Y2 Simon\n\n16) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Happy\nBuild Y3 Bhorner\nBuild Y3 Bhorner\n\n17) Simon: Discover Y2 Simon B2 B2\n\n18) bhorner: Sacrifice Y2 Happy\nDiscover Y1 Happy B2 Cloud\nDiscover Y1 Bhorner R3 Volcano\n\n19) Simon: Move G2 Simon Cloud\n\n20) bhorner: Trade Y3 R3 Bhorner\n\n21) Simon: Build R2 Simon\n\n22) bhorner: Build R2 Bhorner\n\n23) Simon: Move R2 Simon Cloud\n\n24) bhorner: Discover R2 Bhorner R3 Fire\n\n25) Simon: Attack Y1 Cloud\n\n26) bhorner: Discover Y3 Bhorner G3 Tree\n\n27) Simon: Build Y1 Cloud\n\n28) bhorner: Build G1 Bhorner\n\n29) Simon: Build G1 Cloud\n\n30) bhorner: Trade G1 B1 Bhorner\n\n31) Simon: Build R2 Cloud\n\n32) bhorner: Sacrifice B1 Bhorner\nTrade R2 G2 Fire\n\n33) Simon: Move Y1 Cloud Tree\n\n34) bhorner: Discover Y3 Tree G2 Bush\n\n35) Simon: Move G2 Cloud Volcano\n\n36) bhorner: Move Y1 Volcano Bhorner\n\n37) Simon: Move R2 Cloud Tree\n\n38) bhorner: Move Y3 Bush Volcano\n\n39) Simon: Sacrifice G2 Volcano\nBuild Y2 Tree\nBuild R2 Tree\n\n40) bhorner: Move R3 Bhorner Tree\n\n41) Simon: Build Y3 Cloud\n\n\tbhorner: I just got back from my trip last night... sorry about that.  There was so much going on that I completely forgot about the game!\n\tSimon: No problem. Looking forward to our tournament game!\n\nHomeworlds Online (SDG# 35417)\nStarted: 2019.8.7, Ended: 2019.12.2\nParticipants: nycavri (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Alright, Avri, let&#39;s do this! I have two weeks until I leave for Burning Man. That should give you enough time to thoroughly trounce me.  :)  Have fun!  (And yes, I remember that I need to fill out the form.)\n\n2) nycavri: Homeworld B3 Y2 G3\n\tLaurie_Menke: Ah, and the form reminded me to remind you that this is for the Great Homeworlds Tournament of 2019!  :)\n\tnycavri: Acknowledging that this is a 2019 Tournament game.\n\tnycavri: Acknowledging that this is a 2019 Tournament game.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) nycavri: Build G1 Nycavri\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) nycavri: Build G1 Nycavri\n\n9) Laurie_Menke: Build R1 Laurie_menke\n\n10) nycavri: Trade G1 R1 Nycavri\n\n11) Laurie_Menke: Build R2 Laurie_menke\n\tnycavri: You&#39;re being awfully aggressive this year!\n\n12) nycavri: Build R2 Nycavri\n\tLaurie_Menke: LOL! You know me. I don&#39;t have an aggressive bone in my body.  :)\n\tLaurie_Menke: But then again... if you&#39;re going to leave me a medium...\n\n13) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\n14) nycavri: Build G1 Nycavri\n\n15) Laurie_Menke: Build R2 Laurie_menke\n\n16) nycavri: Build Y1 Nycavri\n\n17) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n18) nycavri: Discover Y1 Nycavri G1 Deacon\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\n20) nycavri: Discover Y1 Deacon G2 May\n\n21) Laurie_Menke: Move R2 Laurie_menke May\n\tLaurie_Menke: I&#39;m sorry for the long delay, Avri. :( Thanks for the gentle reminder. I was at Burning Man and forgot to tell you. That was sucky of me, and I&#39;m very sorry.\n\n22) nycavri: Discover Y1 May G3 Mercury\n\tnycavri: No problem - welcome back! Now, where were we?\n\n23) Laurie_Menke: Move G2 Laurie_menke May\n\n24) nycavri: Build Y1 Mercury\n\n25) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Laurie_menke\nBuild G2 May\nBuild G3 Laurie_menke\n\n26) nycavri: Build Y2 Mercury\n\n27) Laurie_Menke: Sacrifice B1 Laurie_menke\nTrade G2 B2 May\n\n28) nycavri: Discover Y1 Mercury B2 Taylor\n\n29) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n30) nycavri: Move Y1 Mercury Taylor\n\n31) Laurie_Menke: Move Y2 Laurie_menke Taylor\n\n32) nycavri:\nBuild Y3 Mercury\n\n33) Laurie_Menke: Build R1 May\n\n34) nycavri: Move Y1 Taylor Laurie_menke\n\tnycavri: b y3 mercury\n\n35) Laurie_Menke: Build R2 Laurie_menke\n\n36) nycavri: Move Y1 Taylor Laurie_menke\n\tnycavri: Must have missed an email notification . . .\n\n37) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y3 Taylor\n\tLaurie_Menke: No worries!  :)\n\n38) nycavri: Sacrifice Y3 Mercury\nDiscover Y1 Nycavri B1 Edney\nMove Y1 Edney Taylor\nMove Y1 Taylor Laurie_menke\nCatastrophe Laurie_menke Y\n\n39) Laurie_Menke: Sacrifice Y2 Taylor\nMove R1 Laurie_menke Nycavri\nMove R2 Laurie_menke Nycavri\nCatastrophe Nycavri R\n\n40) nycavri: Trade G1 R1 Nycavri\n\n41) Laurie_Menke: Sacrifice G2 May\nBuild G1 Laurie_menke\nBuild Y1 Taylor\n\n42) nycavri: Build G1 Nycavri\n\n43) Laurie_Menke: Trade B2 Y2 May\n\tnycavri: I&#39;m back, I&#39;m back!\n\tLaurie_Menke: Yay! :) Everything OK in your world?\n\n44) nycavri: Trade G1 B1 Nycavri\n\n45) Laurie_Menke: Move Y3 Taylor Laurie_menke\n\tnycavri: Sort of OK.  Buried my (96 year old) Grandma.  Layoffs at work.  I&#39;m OK, it&#39;s just a lot . . .\r\n\r\nThanks for asking.\n\tLaurie_Menke: Oh, I&#39;m very sorry. That&#39;s rough. Were you one of the ones laid off?\r\n\r\nWishing you and your family better times right around the corner!\r\nLet me know if there&#39;s anything I can do to help.\n\n46) nycavri: Build B2 Nycavri\n\tnycavri: Not laid off, but hours / salary cut.  Looking at it as an opportunity to write / publish.\n\n47) Laurie_Menke: Move B1 Laurie_menke Nycavri\nCatastrophe Nycavri Blue\n\tLaurie_Menke: That sounds fun! And during NaNoWriMo, too!\n\n48) nycavri: Build Y1 Mercury\n\n49) Laurie_Menke: Move Y2 May Mercury\n\n50) nycavri: Build G1 Nycavri\n\n51) Laurie_Menke: Sacrifice R2 May\nAttack Y2 Mercury\nAttack Y1 Mercury\n\n52) nycavri: Move G1 Nycavri Laurie_menke\n\n53) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove Y2 Mercury Nycavri\nMove Y2 Mercury Nycavri\nMove Y1 Mercury Nycavri\nCatastrophe Nycavri Yellow\n\n\tLaurie_Menke: No problem! Hope you had an awesome time!  :)\n\tLaurie_Menke: Sorry you came back to an empty Homeworld.  ;)  Thanks for the fun!  :)\n\tnycavri: I honestly thought I had you in mate a few moves back, realized at the last minute you had an out, and never really recovered . . .\r\n\r\nGood game, and thanks for the fun!\n\nHomeworlds Online (SDG# 35427)\nStarted: 2019.8.7, Ended: 2019.9.11\nParticipants: eliscinsky (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019\n\n3) Felix: Build G1 Felix\n\tFelix: Agreed! Good luck and have fun :)\n\n4) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: Thanks U2!\n\n5) Felix: Trade G1 R1 Felix\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\teliscinsky: Now THAT was an interesting move\n\teliscinsky: you locked me out of red for a while. very clever.\n\n7) Felix: Build R2 Felix\n\n8) eliscinsky: Build G1 Eliscinsky\n\tFelix: Thanks! I hope I don&#39;t regret losing out on movement for a while though.\n\teliscinsky: Haha! You can always trade.\n\n9) Felix: Trade R2 Y2 Felix\n\n10) eliscinsky: Build Y1 Eliscinsky\n\tFelix: Oh yeah! Thanks for reminding me :)\n\n11) Felix: Build R2 Felix\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Felix: D R2 Felix B2 Rim\n\n14) eliscinsky: Trade G1 B1 Eliscinsky\n\n15) Felix: S G3 Felix\nB R2 Rim\nB R2 Rim\nB R3 Felix\n\n16) eliscinsky: Discover B1 Eliscinsky G3 G3\n\n17) Felix: T R3 G3 Felix\n\n18) eliscinsky: Move Y1 Eliscinsky G3\n\n19) Felix: S Y2 Felix\nM R2 Rim G3\nD R2 Rim B3 Mach7\n\n20) eliscinsky: Build B1 G3\n\n21) Felix: Sacrifice G3 Felix\nBuild R3 Mach7\nBuild R3 Felix\nBuild R3 G3\n\n22) eliscinsky: Trade B1 G1 G3\n\n23) Felix: Sacrifice R3 G3\nAttack G1 G3\nAttack Y1 G3\nAttack B1 G3\n\n24) eliscinsky: Trade G1 B1 Eliscinsky\n\n25) Felix: Build R3 G3\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) Felix: Trade R3 Y3 G3\n\n28) eliscinsky: Move G1 Eliscinsky G3\n\n29) Felix: S G1 G3\nB R3 G3\n\n30) eliscinsky: Build G1 G3\n\n31) Felix: Sacrifice Y3 G3\nMove R3 Mach7 Eliscinsky\nMove R3 G3 Eliscinsky\nPass\n\n32) eliscinsky: Attack R3 Eliscinsky\n\n33) Felix: Sacrifice R3 Felix\nAttack R3 Eliscinsky\nAttack G3 Eliscinsky\nAttack B1 Eliscinsky\n\n34) eliscinsky: Build G1 G3\nCatastrophe G3 Green\n\n35) Felix: A Y1 Eliscinsky\n\teliscinsky: Sorry, I have not been getting SDG emails for some reason.\n\n\teliscinsky: You were going to win anyway ... LOL\n\tFelix: Always fun to go out with a bang :) well played! Great game\n\nHomeworlds Online (SDG# 35426)\nStarted: 2019.8.9, Ended: 2019.9.24\nParticipants: wil (S), eliscinsky (N)\nWinner: wil\n\n1) eliscinsky: Homeworld R1 B3 G3\n\n2) wil: H Y2 B1 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019 \n\twil: It has begun! \n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) wil: B G1 Wil\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) wil: T G1 R1 Wil\n\n7) eliscinsky: Build Y1 Eliscinsky\n\twil: Have fun\n\teliscinsky: Thanks ... You too! \n\n8) wil: B R1 Wil\n\n9) eliscinsky: Discover Y1 Eliscinsky G2 G2win\n\n10) wil: B R2 Wil\n\n11) eliscinsky: Build G1 Eliscinsky\n\n12) wil: D R2 Wil Y3 Y3\n\n13) eliscinsky: Move Y1 G2win Eliscinsky\n\n14) wil: B R2 Wil\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) wil: D R2 Wil B3 B3\n\n17) eliscinsky: Trade G1 B1 Eliscinsky\n\n18) wil: S G3 Wil\nB R2 Y3\nB R3 B3\nB R3 Wil\n\n19) eliscinsky: Discover G1 Eliscinsky Y2 Y2\n\teliscinsky: Yikes!\n\n20) wil: T R3 G3 Wil\n\n21) eliscinsky: Build G1 Y2\n\n22) wil: M R2 Y3 Y2\n\n23) eliscinsky: Build G1 Eliscinsky\n\twil: Our dept of defensive investigations has arrived\n\twil: Pardon us for a short inspection.\n\n24) wil: A G1 Y2\n\n25) eliscinsky: Build G2 Y2\n\n26) wil: B R3 Y2\n\n27) eliscinsky: Build G2 Y2\nCatastrophe Y2 Green\n\n28) wil: T R3 G3 B3\n\n29) eliscinsky: Build B1 Eliscinsky\n\n30) wil: B R3 B3\n\n31) eliscinsky: Build G1 Eliscinsky\n\n32) wil: T R3 Y3 B3\n\twil: I feel like a warmonger\n\teliscinsky: Sorry, I have not been getting SDG emails for some reason.\n\n33) eliscinsky: Discover G1 Eliscinsky Y2 Yellow2\n\twil: No.worries\n\n34) wil: S G3 B3\nB G1 Wil\nB R3 B3\nB R3 B3\n\teliscinsky: If a player were to create a 4th unit of a color [in a sector] and not call for a catastrophe, could the opponent call the catastrophe on their next turn?\n\n35) eliscinsky: Build G2 Yellow2\n\twil: Yes\n\n36) wil: S Y3 B3\nM R3 B3 Y2\nM R3 Y2 Eliscinsky\nM R3 Y2 Eliscinsky\n\n37) eliscinsky: Attack R3 Eliscinsky\n\n38) wil: S R2 B3\nA R3 Eliscinsky\nA G3 Eliscinsky\n\teliscinsky: :D - And so it begins - :)\n\n39) eliscinsky: Build B2 Eliscinsky\n\n40) wil: C Eliscinsky B\nS R3 B3\nA G1 Eliscinsky\nA Y1 Eliscinsky\nA Y1 Eliscinsky\n\twil: I could a prepped more...\n\n\twil: Gg\n\nHomeworlds Online (SDG# 35447)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.12, Ended: 2019.9.30\nParticipants: Jerome (S), SilentTitan (N)\nWinner: Jerome\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Jerome: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Jerome: Build G1 Jerome\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Jerome: Trade G1 Y1 Jerome\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Jerome: Build G1 Jerome\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) Jerome: Trade G1 B1 Jerome\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) Jerome: Build B2 Jerome\n\n13) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n14) Jerome: Discover B1 Jerome G2 Alpha\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Silenttitan\nBuild B3 Sol\nBuild B3 Sol\n\n16) Jerome: Sacrifice Y1 Jerome\nMove B1 Alpha Sol\nCatastrophe Sol B\n\n17) SilentTitan: Trade B2 G2 Silenttitan\n\n18) Jerome: Build B1 Jerome\n\n19) SilentTitan: Build B1 Silenttitan\n\n20) Jerome: Trade B1 Y1 Jerome\n\n21) SilentTitan: Discover B1 Silenttitan G3 Soul\n\n22) Jerome: Build Y1 Jerome\n\n23) SilentTitan: Build B1 Silenttitan\n\n24) Jerome: Discover Y1 Jerome G2 Alpha\n\n25) SilentTitan: Trade B3 G3 Silenttitan\n\n26) Jerome: Build Y2 Jerome\n\n27) SilentTitan: Discover B1 Silenttitan Y3 Sole\n\n28) Jerome: Discover Y1 Jerome G2 Vega\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) Jerome: Build Y2 Jerome\n\n\tSilentTitan: Well played thanks for the game\n\nHomeworlds Online (SDG# 35441)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.12, Ended: 2019.8.28\nParticipants: bhorner (S), Laurie_Menke (N)\nWinner: bhorner\n\n1) Laurie_Menke: Homeworld B3 Y1 G3\n\tLaurie_Menke: Hi! Thanks for the challenge! I know this is a ladder game, but is it also part of the Great Homeworlds Challenge of 2019?\n\n2) bhorner: Homeworld B1 R2 G3\n\tbhorner: I wasn&#39;t planning for it to be part of the tournament, are you in it?  I was just getting back into the game here at SDG and wanted extra practice for the tournament.  :)\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Gotcha. Yes, I am in the tournament, and that&#39;s fine if you just want to practice.  :)\n\n4) bhorner: Build G1 Bhorner\n\n5) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n6) bhorner: Trade G1 Y1 Bhorner\n\tDraw5PlayAll: For the record, I think tournament game clocks have to be 7/2/7 but ladder games are 3/3/10, so a game cannot really be both at once...\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Fair enough.\n\n8) bhorner: Build Y1 Bhorner\n\n9) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Yellow\nBuild G2 Laurie_menke\nBuild G2 Yellow\n\n10) bhorner: Discover Y1 Bhorner G3 Tree\n\n11) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n12) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Tree\nBuild Y3 Tree\nBuild Y3 Bhorner\n\tLaurie_Menke: Sorry... forgot what I was doing for a minute...\n\n\tbhorner: No worries, that&#39;s why the option is there.  :)\n\tLaurie_Menke: ::sigh::  I&#39;m sorry, bhorner. I know that&#39;s not how you wanted to win. I had really hoped to finish this game before going off grid for 10 days for Burning Man, but the week before that got extremely busy and I didn&#39;t even have time to warn you I&#39;d be gone. I&#39;m extremely sorry. :(\n\tbhorner: Oh burning man, that&#39;s cool!\r\nNo worries, it happens, we&#39;ll play in the tournament later.  :)\n\tLaurie_Menke: :) Thank you!\n\nHomeworlds Online (SDG# 35449)\nStarted: 2019.8.13, Ended: 2019.9.10\nParticipants: bhorner (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: To confirm, this game is for the tournament. Good luck!\n\n2) bhorner: Homeworld B1 R3 G3\n\tbhorner: Cool, good luck to you too!  (you stole my homeworld setup by the way.... *grumble*)  :)\n\n3) Babamots: Build G1 Babamots\n\n4) bhorner: Build G1 Bhorner\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) Babamots: Build G1 Babamots\n\n8) bhorner: Build Y1 Bhorner\n\n9) Babamots: Trade G1 Y1 Babamots\n\n10) bhorner: Build Y2 Bhorner\n\n11) Babamots: Build Y2 Babamots\n\n12) bhorner: Discover Y1 Bhorner G2 Bush\n\n13) Babamots: Discover Y1 Babamots G3 Orion\n\n14) bhorner: Trade Y1 B1 Bhorner\n\n15) Babamots: Build B2 Babamots\n\n16) bhorner: Build B2 Bhorner\n\tbhorner: I thought long and hard about that...  It really seemed like the best move, but it keeps us so similar to each other...\n\tBabamots: I expected to fight for blue control first, but at least we got around to it eventually.\r\n\r\nSorry to be so slow. I&#39;m traveling and very distracted.\n\n17) Babamots: Move B2 Babamots Orion\n\tbhorner: No worries, there are time controls.  I&#39;m bound to be slow on you before the end.  :)\n\tbhorner: I don&#39;t see how I&#39;ll ever get ahead if I keep following you around...\n\tbhorner: But if I put myself behind, I won&#39;t get ahead either.  :)\n\n18) bhorner: Move B1 Bhorner Bush\n\n19) Babamots: Build B3 Orion\n\n20) bhorner: Build B3 Bush\n\tBabamots: I don&#39;t much like long mirror sessions, but I think it&#39;s the best thing for you at the moment and I don&#39;t know of a good way to break it yet.\n\n21) Babamots: Discover B3 Orion Y2 Iconia\n\tbhorner: I&#39;ve been making moves just to keep the mirror alive, so you couldn&#39;t burst ahead.  :)  I&#39;m sure something will happen to break it.  I wish it didn&#39;t feel so much like luck (possibly a little in your favor) who will have the advantage in that moment.\n\n22) bhorner: Trade B3 R3 Bush\n\tbhorner: Maybe now.  Maybe it won&#39;t look like an advantage, just a choice.\n\n23) Babamots: Discover B2 Orion G2 Betazed\n\n24) bhorner: Build B3 Bush\n\n25) Babamots: Build B3 Betazed\n\n26) bhorner: Trade B3 Y3 Bush\n\n27) Babamots: Trade B2 R2 Betazed\n\n28) bhorner: Discover Y1 Bush B3 Puddle\n\n29) Babamots: Sacrifice G3 Babamots\nBuild Y1 Orion\nBuild Y3 Orion\nBuild Y3 Babamots\n\n30) bhorner: Sacrifice Y2 Bhorner\nMove Y1 Puddle Betazed\nMove Y1 Betazed Orion\nCatastrophe Orion Y\n\n31) Babamots: Build R1 Betazed\n\tbhorner: Really feels like I had no choice.  A small gain for you.\n\n32) bhorner: Build Y1 Bush\n\n33) Babamots: Build R1 Betazed\n\n34) bhorner: Discover Y1 Bush G3 Tree\n\n35) Babamots: Sacrifice Y2 Babamots\nMove R1 Betazed Bhorner\nMove B3 Betazed Bhorner\n\n36) bhorner: Attack B3 Bhorner\n\n37) Babamots: Sacrifice Y3 Babamots\nMove R1 Betazed Bhorner\nMove R2 Betazed Bhorner\nMove B3 Iconia Bhorner\nCatastrophe Bhorner R\nCatastrophe Bhorner B\n\n\tBabamots: GG! Good luck in the tournament!\r\n\r\nI wonder if my lonely little ship feels victorious...\n\tbhorner: Wow.  I&#39;m so glad you won in a way i didn&#39;t see coming.  That was pretty spectacular.  :)\n\tBabamots: Glad you liked it. :-)\r\n\r\nI suppose I prefer losing abruptly and unexpectedly. That kind of loss can show you something specific to look out for in the future. I feel more discouraged after those long drawn out games where I never make any headway and gradually get my life squeezed out.\n\tbhorner: Yeah, I never looked past one of the catastrophes.  I thought I kind of had no choice, but didn&#39;t realize it was over already.\n\nHomeworlds Online (SDG# 35453)\nStarted: 2019.8.14, Ended: 2019.9.12\nParticipants: kataclysm (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\tkataclysm: Can you read what I&#39;ve typed here? Is this the box for communicating between players?\n\tFelix: Yep! You&#39;ve got it. And you enter your commands for the game up top. This game is for the Homeworlds tournament! Good luck and have fun :)\n\n2) kataclysm: Homeworld B2 G1 R3\n\n3) Felix: Build G1 Felix\n\tkataclysm: Yes, for Homeworlds tournament. I have only played Homeworlds 3 times, but I really liked it. You will almost certainly end up winning! I&#39;m just in this to have a good time and get practice. :)\n\tFelix: That&#39;s the best way to learn! I still lose a lot, but I lost probably my first 30 or so games on here, but it&#39;s always a win if you have fun and learn something and get a bit better every time. So have fun!\n\n4) kataclysm: Build R1 Kataclysm\n\n5) Felix: Trade G1 Y1 Felix\n\n6) kataclysm: Trade R1 Y1 Kataclysm\n\n7) Felix: Build G1 Felix\n\n8) kataclysm: Trade R3 Y3 Kataclysm\n\n9) Felix: B G1 Felix\n\n10) kataclysm: Trade Y1 R1 Kataclysm\n\tFelix: One word of advice is to try and diversify the colors you have available. Trading all your red away for yellow leaves you with no red. Always better to build another red before you trade, so that you always have a red somewhere and don&#39;t lose that color. Make sense?\n\n11) Felix: D G1 Felix B2 Rim\n\tkataclysm: I&#39;m sure it will make more sense as I go along :)\n\n12) kataclysm: Build Y1 Kataclysm\n\n13) Felix: B G2 Rim\n\n14) kataclysm: Build R1 Kataclysm\n\n15) Felix: T G2 Y2 Rim\n\n16) kataclysm: Build R2 Kataclysm\n\n17) Felix: Build G2 Rim\n\n18) kataclysm: Trade R1 B1 Kataclysm\n\n19) Felix: Discover G2 Rim B3 Rom\n\n20) kataclysm: Move R2 Kataclysm Rom\n\tkataclysm: I tried to fly my red medium ship to Rom by saying &quot;move r2 Rom&quot; and the game won&#39;t let me, saying &quot;The system does not exist.&quot;\n\tFelix: You have to specify the system you&#39;re moving it from first. So &quot;move r2 kataclysm rom&quot;. You can also shorten most commands to just the first letter. So you can say m r2 etc instead of move r2\n\n21) Felix: S G2 Rom\nB G2 Rim\nB G2 Rim\n\tkataclysm: Thanks\n\n22) kataclysm: Build R1 Kataclysm\n\n23) Felix: Trade G2 R2 Rim\n\n24) kataclysm: Build R2 Kataclysm\n\n25) Felix: Discover G2 Rim B3 Ram\n\n26) kataclysm: Move R2 Kataclysm Ram\n\n27) Felix: Sacrifice R2 Rim\nAttack R2 Ram\nPass\n\n28) kataclysm: Trade R2 G2 Rom\n\n29) Felix: Sacrifice G3 Felix\nBuild G2 Ram\nBuild G3 Rim\nBuild G3 Felix\n\n30) kataclysm: Build R2 Kataclysm\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Ram\nBuild R2 Ram\n\n32) kataclysm: Discover R1 Kataclysm Y3 Glorax\n\n33) Felix: Trade G3 Y3 Ram\n\n34) kataclysm: Build B1 Kataclysm\n\n35) Felix: T G1 B1 Felix\n\n36) kataclysm: Move B1 Kataclysm Glorax\n\n37) Felix: Discover G1 Rim R3 Volcano\n\n38) kataclysm: Discover B1 Kataclysm G3 Grassyknoll\n\n39) Felix: M Y2 Rim Grassyknoll\n\n40) kataclysm: Build B2 Grassyknoll\n\n41) Felix: Sacrifice R2 Ram\nAttack B2 Grassyknoll\nAttack B1 Grassyknoll\n\n42) kataclysm: Trade B1 G1 Glorax\n\n43) Felix: Move G2 Ram Kataclysm\n\n44) kataclysm: Attack G2 Kataclysm\n\n45) Felix: Sacrifice Y2 Grassyknoll\nMove G2 Ram Kataclysm\nMove G1 Volcano Kataclysm\nCatastrophe Kataclysm Green\n\tkataclysm: Welcome to my humble star-system.\n\n46) kataclysm: Trade R1 G1 Kataclysm\n\tFelix: Why thank you! Oh dear...  but I seem to have overpopulated your system a bit. Oops!\n\n47) Felix: Sacrifice Y3 Ram\nMove B1 Grassyknoll Kataclysm\nMove B2 Grassyknoll Kataclysm\nMove B1 Felix Kataclysm\nCatastrophe Kataclysm Blue\n\tkataclysm: This is why we can&#39;t have nice things!\n\tFelix: Oh dear, I seem to have done it again! \r\nThanks for playing and I hope you had fun and learned some things! Feel free to challenge me outside of the tournament if you&#39;d like to play more!\n\tkataclysm: Thanks for the game :)\n\n\nHomeworlds Online (SDG# 35323)\nStarted: 2019.8.15, Ended: 2019.8.29\nParticipants: MobyNostromo (S), Owlman (N)\nWinner: Owlman\n\n1) Owlman: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 35346)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.15, Ended: 2019.8.28\nParticipants: Owlman (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R3 B1 G3\n\n2) Owlman: Homeworld B1 Y2 G3\n\tdlwillson: Thanks for the game! Good luck, and have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Owlman: Build G1 Owlman\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Owlman: Discover G1 Owlman B3 Hoth\n\n7) dlwillson: B B2 Dlwillson\n\n8) Owlman: Build G1 Hoth\n\n9) dlwillson: T B2 Y2 Dlwillson\n\n10) Owlman: Trade G1 Y1 Hoth\n\n11) dlwillson: B B2 Dlwillson\n\n12) Owlman: Build Y1 Hoth\n\n13) dlwillson: D B1 Dlwillson G2 Field\n\n14) Owlman: Trade Y1 R1 Hoth\n\n15) dlwillson: B B2 Field\n\n16) Owlman: Move R1 Hoth Field\n\n17) dlwillson: T B2 R2 Field\n\n\nHomeworlds Online (SDG# 35459)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.15, Ended: 2019.8.18\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\n2) wil: H G3 B1 B3 *\n\twil: Should we make it a tournament game?\n\n3) Felix: Build G1 Felix\n\tFelix: If you&#39;d like to, sure! Let&#39;s do it :) Ahem... this is for the Great Homeworlds Tournament 2019. Agreed?\n\n4) wil: B B1 Wil\n\twil: Oopsthe setup requirements don&#39;t match, I&#39;m good tho\n\n5) Felix: Build G1 Felix\n\tFelix: It works for me. I won&#39;t let this one time out ;)\n\n6) wil: T B3 Y3 Wil\n\tFelix: I&quot;m not too excited about your opening though... I never know how to counter this.\n\twil: We can hold off if you choose\n\n7) Felix: Discover G1 Felix B3 Mach7\n\tFelix: Nope! I&#39;m game to make it a tournament game. I&#39;m a fan of using any opening that seems the most effective, no matter the setting. It&#39;s one of the ways you can make up a bit for having to move second.\n\n8) wil: B B2 Wil\n\twil: I.enjoy experimenting with weird openings\n\n9) Felix: Build G1 Mach7\n\n10) wil: D B2 Wil G2 G2\n\n11) Felix: B G2 Mach7\n\twil: Another fine mess you&#39;ve gotten me into!\n\n12) wil: T B2 G2 G2\n\n13) Felix: T G2 Y2 Mach7\n\n14) wil: B B2 Wil\n\tFelix: I would&#39;ve gotten away with it it too, if it weren&#39;t for your meddling green!\n\n15) Felix: D G1 Mach7 B2 Mach5\n\n16) wil: D B1 Wil G2 Gtoo\n\twil: I am in such trouble!\n\n17) Felix: S G3 Felix\nB G3 Felix\nB G3 Mach5\nB Y1 Mach7\n\n18) wil: B B2 Wil\n\n19) Felix: T G3 B3 Mach5\n\tFelix: You are in a bit of it, for sure! Any regrets about suggesting this be a tournament game? :) It&#39;s never over till it&#39;s over though.\n\n20) wil: B G3 G2\n\n21) Felix: S Y2 Mach7\nM B3 Mach5 Wil\nM G1 Mach5 Wil\nC Wil Blue\n\n22) wil: S B1 Gtoo\nT G2 B2 G2\n\n23) Felix: S G3 Felix\nB G2 Wil\nB G2 Wil\nB G3 Felix\nC Wil Green\n\n\twil: Gg\n\tFelix: Good game!\n\nHomeworlds Online (SDG# 35385)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.15, Ended: 2019.8.28\nParticipants: wil (S), Owlman (N)\nWinner: wil\n\n1) Owlman: Homeworld G3 B2 R3\n\n2) wil: H Y2 B1 G3\n\twil: Thx for the challenge! Is this a tourney game?\n\n3) Owlman: Build R1 Owlman\n\n4) wil: B G1 Wil\n\n5) Owlman: Trade R1 Y1 Owlman\n\n6) wil: T G1 B1 Wil\n\n7) Owlman: Build R1 Owlman\n\n8) wil: B B1 Wil\n\n9) Owlman: Trade R3 G3 Owlman\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Owlman: Discover R1 Owlman R1 Red\n\n12) wil: B B2 Wil\n\n13) Owlman: Move Y1 Owlman Red\n\n14) wil: D B2 Wil Y3 Why3\n\n15) Owlman: Move R1 Red Y3\n\n16) wil: D B1 Y3 R1 R1\n\n17) Owlman: Build G1 Owlman\n\n18) wil: S G3 Wil\nB B2 Why3\nB B3 R1\nB B3 Wil\n\n\nHomeworlds Online (SDG# 35361)\nVariants: &quot;Unrated&quot;\nStarted: 2019.8.15, Ended: 2020.9.5\nParticipants: wil (S), arkayy (N)\nWinner: wil\n\n1) arkayy: Homeworld R1 B2 G3\n\n2) wil: H B3 Y2 G3\n\twil: Thx for the game? For the tourney?\n\n3) arkayy: Build G1 Arkayy\n\n4) wil: B G1 Wil\n\tarkayy: New to Homeworlds. Thanks for being my first on SDG. What tourney?\n\twil: If new would be trouble, but an online tourney \n\n5) arkayy: Trade G1 B1 Arkayy\n\twil: Good luck, have you got pyramids?\n\n6) wil: T G1 R1 Wil\n\tarkayy: I bought the box recently, yes\n\twil: Cool\n\n7) arkayy: Trade B1 Y1 Arkayy\n\n8) wil: B R1 Wil\n\n9) arkayy: Build Y1 Arkayy\n\n10) wil: D R1 Wil Y1 Y1\n\n11) arkayy: Build Y2 Arkayy\n\n12) wil: B R2 Wil\n\n13) arkayy: Discover Y1 Arkayy B3 Bark\n\twil: Lol, yeah that was unintentional!\n\n14) wil: D R1 Y1 Y3 Y3\n\n15) arkayy: Move Y1 Arkayy Bark\n\n16) wil: D R1 Wil B1 B1\n\n17) arkayy: Build G1 Arkayy\n\n18) wil: S G3 Wil\nB R2 B1\nB R2 Y3\nB R3 Wil\n\n19) arkayy: Trade Y1 G1 Bark\n\n20) wil: T R3 G3 Wil\n\twil: So your first lesson is on resource domination...\n\tarkayy: nice move. I did not see that coming\n\n\twil: Monopoly of any resource is an issue.\n\nHomeworlds Online (SDG# 35466)\nStarted: 2019.8.17, Ended: 2019.9.25\nParticipants: goulo (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Hi, thanks for the challenge and good luck. :-) This game will count for the Great Homeworlds Tournament of 2019.\n\n2) goulo: Homeworld G1 B2 Y3\n\n3) Simon: Build B1 Simon\n\tgoulo: Hi, sorry for the delay -- I didn&#39;t realize the game had started since I got no email from SDG! :/\n\tSimon: No prob! We&#39;re so early in the tourney.\n\n4) goulo: Build Y1 Goulo\n\n5) Simon: Build B1 Simon\n\n6) goulo: Build Y1 Goulo\n\n7) Simon: Trade B3 Y3 Simon\n\tgoulo: a poor man&#39;s bookmark for future reference:\r\nhttps://jpeterbaker.github.io/homeworlds/tournament/links2019.html\r\n:)\n\n8) goulo: Trade Y1 R1 Goulo\n\n9) Simon: Build B1 Simon\n\tgoulo: Are you getting email notifications from SDG lately?\r\nLately I have not been; I&#39;m unsure whether it&#39;s just me, or if others have the problem too.\n\tSimon: Hmm, I&#39;ve gotten emails for the challenge, for the beginning of the game, and for my turns. All boxes are checked in my SDG profile, and I haven&#39;t changed the email address in the SDG profile in several years.\n\n10) goulo: Build R1 Goulo\n\n11) Simon: Discover B1 Simon G2 G2\n\tgoulo: Strange; so I must investigate this email mystery further... :/\n\n12) goulo: Discover R1 Goulo Y3 Flavego\n\n13) Simon: Build B2 G2\n\n14) goulo: Build R2 Goulo\n\n15) Simon: Trade B2 R2 G2\n\n16) goulo: Build Y1 Goulo\n\n17) Simon: Build B2 G2\n\n18) goulo: Trade R1 G1 Goulo\n\n19) Simon: Build B2 Simon\n\n20) goulo: Discover Y1 Goulo G3 Verdego\n\n21) Simon: Build B3 G2\n\n22) goulo: Build Y1 Verdego\n\n23) Simon: Trade B2 Y2 G2\n\n24) goulo: Trade R2 B2 Goulo\n\n25) Simon: Build B3 G2\n\n26) goulo: Move B2 Goulo Verdego\n\n27) Simon: Move B3 G2 Verdego\n\n28) goulo: Sacrifice Y1 Verdego\nDiscover B2 Verdego Y2 Flavo\n\n29) Simon: Build B3 Verdego\n\n30) goulo: Move B2 Flavo Simon\nCatastrophe Simon B\n\n31) Simon: Trade B3 R3 Verdego\n\n32) goulo: Discover Y1 Verdego G2 Verdo\n\n33) Simon: Sacrifice Y2 G2\nMove B3 Verdego Goulo\nMove R3 Verdego Goulo\n\n34) goulo: Sacrifice R1 Flavego\nAttack R3 Goulo\n\n35) Simon: Sacrifice R2 G2\nAttack R3 Goulo\nAttack Y3 Goulo\n\n\tgoulo: congrats!\n\tSimon: Thanks for the game!\n\nHomeworlds Online (SDG# 35476)\nStarted: 2019.8.20, Ended: 2019.9.13\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tts52: This is for the 2019 tournament\n\n2) Felix: H B1 Y3 G3\n\tts52: Have a good game!\n\tFelix: Agreed. Have fun!\n\n3) ts52: Build G1 Ts52\n\n4) Felix: B G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) Felix: D B1 Felix G2 Range\n\n11) ts52: Sacrifice G3 Ts52\nBuild B3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade B1 G1 Ts52\n\n14) Felix: Trade G1 Y1 Felix\n\n15) ts52: Trade B2 Y2 Kermit\n\n16) Felix: Build G1 Felix\n\n17) ts52: Trade B3 R3 Kermit\n\n18) Felix: T G1 R1 Felix\n\n19) ts52: Move R3 Kermit Range\n\n20) Felix: Build Y1 Felix\n\n21) ts52: Build Y2 Kermit\n\n22) Felix: Discover Y1 Felix G2 Rip\n\n23) ts52: Attack B1 Range\n\n24) Felix: B Y2 Rip\n\n25) ts52: Move Y2 Kermit Range\n\n26) Felix: Discover Y1 Rip G3 Fort\n\n27) ts52: Build Y3 Kermit\n\n28) Felix: B Y3 Fort\n\n29) ts52: Build B1 Kermit\n\n30) Felix: Move B2 Felix Rip\n\n31) ts52: Trade B3 R3 Ts52\n\n32) Felix: T B2 R2 Rip\n\n33) ts52: Build B2 Range\n\n34) Felix: Build R1 Rip\n\n35) ts52: Build B2 Range\n\n36) Felix: D R2 Rip B3 Sploosh\n\n37) ts52: Trade B3 R3 Kermit\n\n38) Felix: Build G1 Felix\n\n39) ts52: Move R3 Kermit Rip\n\n40) Felix: Build R1 Rip\n\n41) ts52: Attack Y2S Rip\n\n42) Felix: Build R2 Rip\nCatastrophe Rip Red\n\n43) ts52: Sacrifice Y2 Kermit\nMove Y2 Rip Felix\nMove Y2 Range Felix\nCatastrophe Felix Yellow\n\n44) Felix: Trade G3 Y3 Felix\n\n45) ts52: Sacrifice Y3 Kermit\nMove B1 Kermit Felix\nMove B1 Range Felix\nMove B2 Range Felix\nCatastrophe Felix Blue\n\tFelix: Very well played! I struggled from the start on this one.\n\tts52: Thanks. Thanks for the game.\n\n\nHomeworlds Online (SDG# 35478)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.20, Ended: 2019.9.17\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: H Y1 B3 G3\n\n2) dlwillson: H B3 Y2 G3 Dlwillson\n\tFelix: Hey thar... :) Have fun!\n\n3) Felix: B G1 Felix\n\tdlwillson: Yay! Good to play with you again!\n\n4) dlwillson: B G1 Dlwillson\n\tFelix: Likewise! I&#39;ve been too busy to play much, so don&#39;t expect too much of a challenge here :P\n\n5) Felix: T G1 Y1 Felix\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Felix: Build Y2 Felix\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Felix: Discover Y1 Felix G2 Flower\n\n10) dlwillson: D Y1 Dlwillson G1 Field\n\n11) Felix: Build Y3 Flower\n\n12) dlwillson: B Y3 Field\n\n13) Felix: Move Y1 Flower Field\n\n14) dlwillson: D Y3 Field B2 Sky\n\n15) Felix: B Y3 Flower\n\n16) dlwillson: T Y2 R2 Dlwillson\n\n17) Felix: Trade Y2 R2 Felix\n\n18) dlwillson: B Y2 Field\n\n19) Felix: Build Y2 Field\nCatastrophe Field Yellow\n\n20) dlwillson: T Y3 G3 Sky\n\n21) Felix: Build G1 Felix\n\n22) dlwillson: B G1 Dlwillson\n\n23) Felix: Trade G1 B1 Felix\n\n24) dlwillson: D G1 Dlwillson B1 Sea\n\n25) Felix: Move B1 Felix Flower\n\n26) dlwillson: B G1 Sky\n\n27) Felix: Build B1 Flower\n\n28) dlwillson: B G1 Dlwillson\n\n29) Felix: B G2 Felix\n\n30) dlwillson: T G3 Y3 Sky\n\n31) Felix: Discover B1 Flower G3 Flan\n\n32) dlwillson: S G3 Dlwillson\nB G2 Sky\nB R1 Dlwillson\nB G3 Dlwillson\n\n33) Felix: S G3 Felix\nB G3 Felix\nB B2 Flower\nB B2 Flower\n\n34) dlwillson: M G2 Sky Felix\n\n35) Felix: Trade G3 R3 Felix\n\n36) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB G3 Sea\nB G3 Dlwillson\n\n37) Felix: Build B3 Flan\n\n38) dlwillson: S G2 Felix\nB G2 Sea\nB Y1 Sky\n\n39) Felix: Sacrifice Y3 Flower\nMove Y3 Flower Felix\nMove Y3 Felix Sky\nCatastrophe Sky Yellow\nDiscover B2 Flower Y1 Hall\n\n40) dlwillson: T G1 Y1 Sea\n\n41) Felix: Trade B3 Y3 Flan\n\n42) dlwillson: S G3 Sea\nB Y2 Sea\nB G1 Sea\nB G3 Sky\n\n43) Felix: Build B3 Flan\n\n44) dlwillson: M Y1 Sea Sky\n\n45) Felix: Move B3 Flan Sea\n\n46) dlwillson: S Y2 Sea\nM R2 Dlwillson Hall\nD G2 Sea Y3 Sol\n\n47) Felix: Sacrifice R2 Felix\nAttack R2 Hall\nAttack G1 Sea\n\n48) dlwillson: T G1 R1 Sky\n\n49) Felix: Build Y2 Flan\n\tdlwillson: Huh. I could&#39;a sworn that was a small blue. Oh well.\n\tdlwillson: Huh. I could&#39;a sworn that was a small blue. Oh well.\n\tdlwillson: Huh. I could&#39;a sworn that was a small blue. Oh well.\n\tdlwillson: /me impatiently smaps the send button, wondering why it&#39;s not doing anything...\n\tdlwillson: *spams\n\n50) dlwillson: S G3 Dlwillson\nB G1 Sky\nB Y2 Sky\nB G3 Dlwillson\n\n51) Felix: M Y2 Flan Sea\n\tFelix: Haha, I&#39;ve done both of those things too many times! (Misjudged a piece size and mashed the send button)\n\n52) dlwillson: D G1 Sky Y3 Alsosol\n\n53) Felix: M B1 Flan Hall\n\n54) dlwillson: S G3 Dlwillson\nB R1 Dlwillson\nB R2 Sky\nB G3 Dlwillson\n\n55) Felix: S G2 Felix\nB G2 Sea\nB R2 Hall\n\n56) dlwillson: M G3 Sky Hall\n\n57) Felix: M R2 Hall Alsosol\n\n58) dlwillson: S R2 Sky\nA R2 Hall\nA B2 Hall\n\n59) Felix: Sacrifice Y3 Flan\nMove G1 Sea Dlwillson\nMove G2 Sea Dlwillson\nCatastrophe Dlwillson Green\nMove B3 Sea Dlwillson\n\n60) dlwillson: M B2 Hall Dlwillson\n\n61) Felix: Sacrifice Y2 Sea\nMove B1 Flower Felix\nDiscover B2 Flower B1 Sea\n\n62) dlwillson: S G3 Hall\nB R2 Dlwillson\nB R3 Hall\nB Y2 Sky\n\tFelix: ... Check? (He said with fragile hope shining in his eyes)\n\tdlwillson: I&#39;m pretty sure that&#39;s game, but I&#39;m trying to find some time to sit down and give it some deep thought. I sure wish you didn&#39;t have that y2...\n\n63) Felix: Sacrifice R2 Alsosol\nAttack R2 Dlwillson\nAttack B2 Dlwillson\n\tdlwillson: I&#39;m pretty sure you&#39;ll win, but not completely sure yet.\n\n\tdlwillson: I&#39;m tempted to run it out, because it&#39;s pretty, but then there&#39;s nothing for readers to think about. This was a good game! Thanks!\n\tFelix: It was! Thanks for playing as always! Looking forward to the next one.\n\nHomeworlds Online (SDG# 35470)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.21, Ended: 2019.9.16\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H Y2 B1 G3\n\tSimon: It is time again. Have fun!\n\n2) Simon: Homeworld B1 G3 B3 *\n\twil: Is this tourney? Or funsies\n\tSimon: Not a tournament game. This is as funsies as a first-place ladder match is allowed to be.\n\n3) wil: B G1 Wil\n\twil: To infinity and beyond\n\n4) Simon: Build B1 Simon\n\tDraw5PlayAll: I missed the chance to fight for #1... again...\n\n5) wil: B G1 Wil\n\n6) Simon: Trade B3 Y3 Simon\n\n7) wil: D G1 Wil B3 B3\n\n8) Simon: Build B2 Simon\n\n9) wil: B G1 Wil\n\n10) Simon: Trade B2 G2 Simon\n\n11) wil: D G1 Wil Y3 Y3\n\n12) Simon: Discover G2 Simon Y2 Y2\n\n13) wil: M G1 Y3 Y2\n\n14) Simon: Build B2 Simon\n\n15) wil: B G2 Y2\n\n16) Simon: Trade B2 R2 Simon\n\n17) wil: S G3 Wil\nB G2 Y2\nB G3 Wil\nB G3 B3\nC Y2 G\n\n18) Simon: Build B2 Simon\n\n19) wil: T G1 R1 B3\n\n20) Simon: Discover B1 Simon G2 G2\n\n21) wil: B G1 B3\n\n22) Simon: Build B2 G2\n\n23) wil: T G1 Y1 B3\n\n24) Simon: Build B2 Simon\n\n25) wil: B G1 B3\n\n26) Simon: Build B3 G2\n\n27) wil: B G1 B3 G2\n\n28) Simon: Trade B3 Y3 G2\n\n29) wil: T G3 Y3 B3\n\n30) Simon: Build B3 G2\n\n31) wil: B G2 B3\n\n32) Simon: Discover B3 G2 R3 R3\n\n33) wil: M G1 B3 G2\n\n34) Simon: Move Y3 G2 R3\n\n35) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB G3 B3\n\n36) Simon: Build B3 G2\n\n37) wil: M G2 B3 G2\n\n38) Simon: Sacrifice Y3 R3\nMove B3 G2 B3\nMove B3 R3 Wil\nDiscover B2 Simon Y2 Y2\n\n39) wil: S R1 B3\nA B3 Wil\n\n40) Simon: Sacrifice R2 Simon\nAttack Y3 B3\nAttack G3 B3\n\twil: Nice!!\n\twil: Whew not another tourney loss!\n\n41) wil: T G2 R2 Wil\n\n42) Simon: Trade B3 R3 B3\n\tSimon: Thanks. It was the only promising move.\n\n43) wil: S G3 Wil\nB G2 G2\nB R1 Wil\nB G3 Wil\nC G2 G\n\n44) Simon: Attack Y1 B3\n\n45) wil: B G1 B3\n\n46) Simon: Sacrifice G3 B3\nBuild B1 Simon\nBuild B2 Y2\nBuild B3 Y2\n\n47) wil: B G2 B3\n\n48) Simon: Trade B3 R3 Y2\n\n49) wil: D B3 Wil G3 G3\n\n50) Simon: Trade B2 G2 Y2\n\n51) wil: T G2 Y2 B3\n\twil: This is another fine mess I&#39;ve gotten me into.\n\n52) Simon: Sacrifice R3 Y2\nAttack G1 B3\nAttack G1 B3\nAttack Y2 B3\n\n53) wil: D G1 Wil Y3 Y3\n\n54) Simon: Build G2 B3\n\n55) wil: M R1 Wil G3\n\n56) Simon: Sacrifice Y3 B3\nMove G1 B3 Wil\nMove G1 B3 Wil\nMove G2 B3 Wil\nCatastrophe Wil Green\n\n57) wil: B G1 Y3\n\n58) Simon: Move R3 B3 Wil\n\n59) wil: S G1 Y3\nB R1 Wil\n\twil: Nice!\n\n60) Simon: Sacrifice G2 Y2\nBuild R1 Wil\nPass\nCatastrophe Wil Red\n\tSimon: Thanks! I wouldn&#39;t have taken your 3 greens; only after 1 of the 3 became yellow, taking 3 ships was the clearest route.\n\n\twil: Gg\n\tSimon: GG, thanks!\n\nHomeworlds Online (SDG# 35475)\nStarted: 2019.8.21, Ended: 2019.9.11\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Thanks for the challenge, have fun! This game counts for the Great Homeworlds Tournament 2019.\n\n2) Felix: H B1 Y2 G3\n\tFelix: Agreed. Have fun! :)\n\n3) Simon: Build B1 Simon\n\n4) Felix: Build G1 Felix\n\n5) Simon: Build B1 Simon\n\n6) Felix: Build G1 Felix\n\n7) Simon: Trade B3 Y3 Simon\n\n8) Felix: Discover G1 Felix B3 Rim\n\n9) Simon: Discover B1 Simon G2 G2\n\n10) Felix: B G1 Felix\n\n11) Simon: Build B2 G2\n\n12) Felix: S G3 Felix\nB G2 Rim\nB G2 Rim\nB G3 Felix\n\n13) Simon: Build B2 G2\n\n14) Felix: D G1 Felix B3 Range\n\n15) Simon: Trade B2 Y2 G2\n\n16) Felix: Build G3 Range\n\n17) Simon: Build B2 Simon\n\n18) Felix: Trade G3 Y3 Range\n\n19) Simon: Discover B1 G2 G3 G3\n\n20) Felix: Trade G1 R1 Felix\n\n21) Simon: Build B2 G3\n\n22) Felix: S G2 Rim\nB G1 Felix\nB G2 Range\n\n23) Simon: Build B3 G3\n\n24) Felix: Move Y3 Range G2\n\n25) Simon: Trade B3 R3 G3\n\n26) Felix: Discover Y3 G2 B3 Bloop\n\n27) Simon: Trade B2 Y2 G3\n\n28) Felix: Trade G2 B2 Range\n\n29) Simon: Build Y1 G2\n\n30) Felix: Sacrifice G3 Felix\nBuild G2 Range\nBuild G3 Felix\nBuild Y1 Bloop\n\n31) Simon: Build Y1 G3\n\n32) Felix: D G1 Felix Y3 Cheese\n\n33) Simon: Move B2 G2 Cheese\n\n34) Felix: Sacrifice G2 Range\nBuild G2 Felix\nBuild R1 Felix\n\n35) Simon: Build R2 G3\n\n36) Felix: Discover G1 Cheese R2 Volc\n\n37) Simon: Move B1 Simon G2\n\n38) Felix: Move R1 Felix Range\n\n39) Simon: Move B1 G2 Cheese\n\n40) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Range\nBuild R3 Felix\n\n41) Simon: Move Y1 G2 Cheese\n\n42) Felix: Move R3 Felix Cheese\n\n43) Simon: Sacrifice Y2 G2\nMove B1 Cheese Felix\nMove B2 Cheese Felix\n\n44) Felix: Attack Y1 Cheese\n\n45) Simon: Build Y2 G3\n\n46) Felix: Sacrifice G3 Felix\nBuild G2 Volc\nBuild G3 Felix\nBuild R3 Cheese\n\n47) Simon: Sacrifice Y2 G3\nMove B1 G3 Felix\nMove Y2 G3 Felix\n\n48) Felix: A Y2 Felix\nC Felix Blue\n\n49) Simon: Move Y3 Simon Felix\n\n50) Felix: S Y2 Felix\nM G2 Volc Simon\nM G1 Range Felix\n\n51) Simon: Sacrifice R3 G3\nAttack G2 Simon\nAttack G3 Felix\nAttack R1 Felix\n\n52) Felix: Sacrifice Y3 Bloop\nMove R3 Cheese Felix\nMove R3 Felix Simon\nMove R3 Cheese Felix\n\n53) Simon: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y2 Felix\nBuild Y3 Felix\nCatastrophe Felix Yellow\n\n\tFelix: Well played!\n\tSimon: Thanks for the game!\n\nHomeworlds Online (SDG# 35460)\nStarted: 2019.8.23, Ended: 2019.8.26\nParticipants: visitor338 (S), MobyNostromo (N)\nWinner: visitor338\n\n\nHomeworlds Online (SDG# 35492)\nVariants: &quot;Hard time&quot;\nStarted: 2019.8.29, Ended: 2019.9.25\nParticipants: bhorner (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n2) bhorner: Homeworld Y1 G2 Y3 *\n\tagentofchaos: Hi have fun\n\n3) agentofchaos: Build G1 Agentofchaos\n\tbhorner: You too, we&#39;ll see how this goes.  :)\n\n4) bhorner: Build Y1 Bhorner\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) bhorner: Discover Y1 Bhorner G3 Tree\n\n7) agentofchaos: Discover G1 Agentofchaos Y3 Shadowverse\n\n8) bhorner: Build Y2 Bhorner\n\n9) agentofchaos: Build G1 Shadowverse\n\tbhorner: I guess that was a little over aggressive, picking the same sizes... but I _like_ those sizes.  :)\n\tbhorner: I forgot so many pieces of this...  oh well.  :)\n\n10) bhorner: Build Y2 Tree\n\n11) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Shadowverse\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\n\n12) bhorner: Discover Y2 Bhorner B3 Avalanche\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) bhorner: Trade Y2 R2 Avalanche\n\n15) agentofchaos: Trade G2 Y2 Agentofchaos\n\n16) bhorner: Discover Y1 Tree B2 Blizzard\n\n17) agentofchaos: B G1 Agentofchaos\n\n18) bhorner: Build Y2 Tree\n\n19) agentofchaos: Discover G1 Agentofchaos Y3 Kakrafoon\n\n20) bhorner: Trade Y1 B1 Blizzard\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) bhorner: Sacrifice B1 Blizzard\nTrade Y2 B2 Tree\n\n23) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild R1 Agentofchaos\nBuild G3 Kakrafoon\n\n24) bhorner: Build B1 Tree\n\n25) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G3 Kakrafoon R2 Terrorverse\nMove G3 Terrorverse Tree\n\n26) bhorner: Sacrifice Y2 Tree\nMove B2 Tree Bhorner\nDiscover B1 Tree Y1 Sparkle\n\n27) agentofchaos: Trade G2 Y2 Agentofchaos\n\n28) bhorner: Build Y2 Bhorner\n\n29) agentofchaos: Move Y2 Agentofchaos Tree\n\n30) bhorner: Trade Y3 R3 Bhorner\n\n31) agentofchaos: Build Y2 Tree\n\n\nHomeworlds Online (SDG# 35496)\nStarted: 2019.8.31, Ended: 2019.9.25\nParticipants: Babamots (S), goulo (N)\nWinner: Babamots\n\n1) goulo: Homeworld G3 B1 Y3\n\n2) Babamots: Homeworld G2 B1 B3 *\n\tgoulo: hi, have fun! &quot;This game will count for the Great Homeworlds Tournament of 2019.&quot; and all that jazz. :)\n\tBabamots: Sounds good. Good luck!\n\n3) goulo: Build Y1 Goulo\n\tBabamots: Since you got the first move, could you fill out the start-game form please?\n\n4) Babamots: Build B1 Babamots\n\tgoulo: ah, yes -- done!\n\tgoulo: a poor man&#39;s bookmark for future reference:\r\nhttps://jpeterbaker.github.io/homeworlds/tournament/links2019.html\r\n:)\n\n5) goulo: Build Y1 Goulo\n\n6) Babamots: Trade B3 Y3 Babamots\n\tgoulo: Are you getting email notifications from SDG lately?\r\nLately I have not been; I&#39;m unsure whether it&#39;s just me, or if others have the problem too.\n\tBabamots: I only noticed it today, but I think it&#39;s been a few days since I got a notice.\n\tBabamots: Wait, just as I hit sent, I heard my SDG alert on my phone. I wonder if my chat flushed a buffer somewhere...\n\n7) goulo: Discover Y1 Goulo G2 Verdo\n\n8) Babamots: Build B2 Babamots\n\n9) goulo: Build Y1 Verdo\n\n10) Babamots: Build Y2 Babamots\n\n11) goulo: Build Y2 Verdo\n\n12) Babamots: Discover Y2 Babamots G3 Orion\n\n13) goulo: Trade Y1 R1 Goulo\n\n14) Babamots: Move Y2 Orion Verdo\nCatastrophe Verdo Y\n\n15) goulo: Build Y1 Goulo\n\n16) Babamots: Discover B2 Babamots G3 Genesis\n\n17) goulo: Build R1 Goulo\n\n18) Babamots: Build B2 Genesis\n\n19) goulo: Discover R1 Goulo Y2 Flavo\n\n20) Babamots: Build B2 Babamots\n\n21) goulo: Build R1 Goulo\n\n22) Babamots: Build B3 Genesis\n\n23) goulo: Build R2 Goulo\n\n24) Babamots: Trade B3 R3 Genesis\n\n25) goulo: Trade R1 G1 Goulo\n\n26) Babamots: Build B3 Genesis\n\n27) goulo: Build G1 Goulo\n\n28) Babamots: Trade B3 Y3 Genesis\n\n29) goulo: Move R1 Goulo Flavo\n\n30) Babamots: Build B3 Genesis\n\n31) goulo: Discover G1 Goulo Y2 Flavo2\n\n32) Babamots: Move B3 Genesis Flavo2\n\n33) goulo: Discover G1 Flavo2 Y1 Flaveto\n\n34) Babamots: Build B3 Genesis\n\n35) goulo: Build G1 Flaveto\n\n36) Babamots: Move B2 Genesis Flavo2\n\n37) goulo: Build G2 Goulo\n\n38) Babamots: Trade B3 G3 Flavo2\n\n39) goulo: Sacrifice G1 Goulo\nBuild G1 Flaveto\n\n40) Babamots: Move R3 Genesis Flaveto\n\n41) goulo: Move G1 Flaveto Genesis\n\n42) Babamots: Discover B3 Genesis G2 Risa\n\n43) goulo: Move G1 Flaveto Genesis\n\n44) Babamots: Move Y3 Genesis Flavo\n\n\tgoulo: thanks and congrats; I should have resigned long ago after falling so ridiculously far behind...\n\tBabamots: No problem. Thanks for the game! Good luck in the tournament!\n\nHomeworlds Online (SDG# 35503)\nStarted: 2019.9.6, Ended: 2019.11.2\nParticipants: Draw5PlayAll (S), Laurie_Menke (N)\nWinner: Draw5PlayAll\n\n1) Laurie_Menke: Pass\n\tLaurie_Menke: Hi D5PA! Thanks for the invitation! I&#39;ll go fill out the tournament paperwork!  :)\n\n2) Draw5PlayAll: Pass\n\tDraw5PlayAll: Oh dear...\n\n3) Laurie_Menke: Homeworld B1 Y2 G3\n\tDraw5PlayAll: I&#39;ve always wondered what happens if both sides pass successively.\n\tLaurie_Menke: Apparently nothing!\n\n4) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tDraw5PlayAll: Nice to know I did not just lose immediately for not having a homeworld. Heck I could probably just never create one and you would never win...\n\n5) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: I doubt that. I&#39;m pretty sure that if either of us passes twice in a row they forfeit.\n\n6) Draw5PlayAll: Build B1 Draw5playall\n\n7) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n8) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\tLaurie_Menke: Go ahead and freeze me out of blue. Won&#39;t last long...\n\n9) Laurie_Menke: Build Y1 Laurie_menke\n\n10) Draw5PlayAll: Build B2 Draw5playall\n\n11) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n12) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n13) Laurie_Menke: Build R1 Laurie_menke\n\n14) Draw5PlayAll: Build B2 Build\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) Draw5PlayAll: Build B2 Draw5playall\n\n17) Laurie_Menke: Discover G1 Laurie_menke B3 Blue\n\n18) Draw5PlayAll: Build B3 Build\n\n19) Laurie_Menke: Build Y1 Laurie_menke\n\n20) Draw5PlayAll: Trade B3 R3 Build\n\n21) Laurie_Menke: Discover Y1 Laurie_menke B3 Navy\n\n22) Draw5PlayAll: Build B3 Build\n\n23) Laurie_Menke: Build G1 Laurie_menke\n\n24) Draw5PlayAll: Trade B2 Y2 Build\n\n25) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow\n\n26) Draw5PlayAll: Build B2 Build\n\n27) Laurie_Menke: Discover Y1 Navy Y2 Lemon\n\tDraw5PlayAll: Did you say something earlier about a blue freeze not lasting long?\n\tLaurie_Menke: I&#39;m not worried.  ;)\n\n28) Draw5PlayAll: Trade B2 R2 Build\n\n29) Laurie_Menke: Discover G1 Laurie_menke Y3 Mustard\n\n30) Draw5PlayAll: Move R2 Build Mustard\n\n31) Laurie_Menke: Move G1 Mustard Lemon\n\n32) Draw5PlayAll: Move R2 Mustard Lemon\n\n33) Laurie_Menke: Build G1 Laurie_menke\n\n34) Draw5PlayAll: Attack G1 Lemon\n\n35) Laurie_Menke: Build G2 Laurie_menke\n\tDraw5PlayAll: First green!\n\tLaurie_Menke: :)\n\n36) Draw5PlayAll: Sacrifice Y2 Build\nMove G1 Lemon Blue\nMove G1 Blue Laurie_menke\nCatastrophe Laurie_menke Green\n\n37) Laurie_Menke: Sacrifice Y1 Lemon\nMove G1 Blue Laurie_menke\n\tDraw5PlayAll: I am not one for nostalgia.\n\tLaurie_Menke: That was a definite mistake on my part.  ::sigh::\n\n38) Draw5PlayAll: Move R2 Lemon Yellow\n\n39) Laurie_Menke: Build R1 Laurie_menke\n\n40) Draw5PlayAll: Attack R1 Yellow\n\n41) Laurie_Menke: Discover R1 Laurie_menke G3 Green\n\n42) Draw5PlayAll: Move R2 Yellow Laurie_menke\n\n43) Laurie_Menke: Build R2 Green\n\tLaurie_Menke: Congrats... good game! Thanks for the fun!  :)\n\n44) Draw5PlayAll: Sacrifice R3 Build\nAttack Y1 Laurie_menke\nAttack R1 Laurie_menke\nAttack G1 Laurie_menke\n\tDraw5PlayAll: I still vaguely remember something about a blue freeze not lasting?\n\tDraw5PlayAll: Good game.\n\n\nHomeworlds Online (SDG# 35498)\nStarted: 2019.9.9, Ended: 2019.10.11\nParticipants: Simon (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Simon: Homeworld R1 G3 B3\n\tSimon: Hi! This game will count for the Great Homeworlds Tournament of 2019.\n\n3) Trydnt: Build G1 Trydnt\n\n4) Simon: Build B1 Simon\n\tTrydnt: good luck :)\n\tSimon: You too, good luck :-) Because you had the first move, please fill out the tournament start-game form for this game (35498): https://forms.gle/wn4aqPmmB63F8yYCA \n\n5) Trydnt: Build G1 Trydnt\n\n6) Simon: Build B1 Simon\n\n7) Trydnt: Discover G1 Trydnt B3 B3\n\n8) Simon: Trade B1 Y1 Simon\n\n9) Trydnt: Build G1 B3\n\n10) Simon: Build Y1 Simon\n\n11) Trydnt: Build G2 B3\n\tSimon: Please acknowledge in chat here that this is game counts towards the Great Homeworlds tournament 2019. Also please fill out the form (game number 35498): https://forms.gle/wn4aqPmmB63F8yYCA\n\tBabamots: Simon, you can go ahead and fill out the form. Just so someone does it for the record. Thanks guys! Good luck!\n\tTrydnt: this is for the great homeworlds tournament of 2019\n\n12) Simon: Build Y2 Simon\n\n13) Trydnt: Trade G2 Y2 B3\n\n14) Simon: Discover Y1 Simon G2 G2\n\n15) Trydnt: Build G2 Trydnt\n\n16) Simon: Discover Y1 Simon B2 B2\n\n17) Trydnt: Discover G2 Trydnt Y3 Y3\n\n18) Simon: Move B1 Simon G2\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G3 Trydnt\nBuild G3 B3\n\n20) Simon: Build Y2 G2\n\n21) Trydnt: Build Y3 B3\n\n22) Simon: Build Y3 Simon\n\n23) Trydnt: Discover Y3 B3 R2 R2\n\n24) Simon: Move Y3 Simon B2\n\n25) Trydnt: Trade G3 R3 B3\n\n26) Simon: Trade Y3 G3 B2\n\n27) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild Y3 R2\n\n28) Simon: Pass\n\n29) Trydnt: Move G2 Trydnt Y3\n\n30) Simon: Trade Y1 R1 G2\n\n31) Trydnt: Move G2 Y3 R2\n\tTrydnt: damn I mistyped that command. Don&#39;t suppose you&#39;d consider passing and letting me reset to past move?\n\tSimon: Yep, I&#39;ll pass to grant another undo.\n\n32) Simon: Move G3 B2 Y3\n\tTrydnt: the move was the same but grow the g2 in y3. I&#39;ll  move it to there\n\n33) Trydnt: Sacrifice G1 B3\nBuild G1 Y3\n\tTrydnt: Thank you for understanding :)\n\tSimon: No problem!\n\n34) Simon: Build Y1 Simon\n\n35) Trydnt: Discover Y3 R2 B3 Be3\n\n36) Simon: Build R1 G2\n\n37) Trydnt: Move Y3 Be3 G2\n\n38) Simon: Sacrifice B1 G2\nTrade G3 R3 Y3\n\n39) Trydnt: Sacrifice R3 B3\nAttack Y2 G2\nAttack R1 G2\nAttack R1 G2\n\n40) Simon: Attack G2 Y3\n\n41) Trydnt: Build G3 B3\n\n42) Simon: Attack G1 Y3\n\n43) Trydnt: Trade G3 R3 Trydnt\n\n44) Simon: Discover Y1 B2 G3 G3\n\n45) Trydnt: Move R1 G2 G3\n\n46) Simon: Discover Y1 G3 B2 B2b\n\n47) Trydnt: Build R2 G2\n\n48) Simon: Build B1 Simon\n\n49) Trydnt: Move R1 G2 B3\n\n50) Simon: Build R2 Y3\n\n51) Trydnt: Sacrifice G3 B3\nBuild G3 B3\nBuild R3 B3\nPass\n\n52) Simon: Build B1 Simon\n\n53) Trydnt: Move R3 B3 B2b\n\n54) Simon: Discover Y1 B2b B1 B1\n\n55) Trydnt: Sacrifice Y3 R2\nMove G3 B3 R2\nMove G3 R2 Simon\nMove G2 R2 Simon\n\n56) Simon: Sacrifice R2 Y3\nAttack G2 Simon\nAttack G3 Simon\n\n\tSimon: gg!\n\tTrydnt: well played!\n\nHomeworlds Online (SDG# 35521)\nStarted: 2019.9.10, Ended: 2019.10.3\nParticipants: DodoBirb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tDodoBirb: Well, I&#39;m probably going to get demolished but I hope this will be an interesting game. Even if I don&#39;t win any of my other games this year it seems that I&#39;ll at least get one point against speardane so I&#39;ll beat my 2018 score at least.\n\tDodoBirb: Bring it on and Good luck\n\n2) DodoBirb: Homeworld B1 R3 G3\n\tBabamots: I hope you do really well too! I&#39;m glad you&#39;re in the tournament again.\n\tBabamots: This game is for the Great Homeworlds Tounament 2019.\r\n\n\n3) Babamots: Build G1 Babamots\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Babamots: Trade G1 Y1 Babamots\n\tDodoBirb: and within 24 hours of me saying I&#39;m about to win the speardane game, It has completely fallen apart\n\tBabamots: Oh no! I&#39;m sorry.\n\n6) DodoBirb: Build G1 Dodobirb\n\n7) Babamots: Build Y1 Babamots\n\tDodoBirb: Oh well, It&#39;s my fault for not paying attention to my opponent&#39;s potential sacrifices.\n\n8) DodoBirb: Trade G1 Y1 Dodobirb\n\n9) Babamots: Build Y2 Babamots\n\n10) DodoBirb: Build Y2 Dodobirb\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) DodoBirb: Discover Y1 Dodobirb G2 Greeny\n\n13) Babamots: Discover Y1 Babamots Y3 Iconia\n\n14) DodoBirb: Build Y2 Dodobirb\n\n15) Babamots: Sacrifice G3 Babamots\nBuild Y3 Babamots\nBuild Y3 Orion\nPass\n\n16) DodoBirb: Trade G1 B1 Dodobirb\n\tDodoBirb: ah. I should&#39;ve seen that coming.\n\n17) Babamots: Trade Y2 G2 Babamots\n\n18) DodoBirb: Build Y2 Dodobirb\n\n19) Babamots: Build G1 Babamots\n\n20) DodoBirb: Build B1 Dodobirb\n\n21) Babamots: Trade G2 B2 Babamots\n\n22) DodoBirb: Discover B1 Dodobirb G2 Grass\n\n23) Babamots: Move B2 Babamots Orion\n\n24) DodoBirb: Build G1 Dodobirb\n\n25) Babamots: Build G1 Babamots\n\n26) DodoBirb: Move G1 Dodobirb Grass\n\n27) Babamots: Trade G1 R1 Babamots\n\n28) DodoBirb: Trade Y2 R2 Dodobirb\n\n29) Babamots: Build Y2 Babamots\n\n30) DodoBirb: Move R2 Dodobirb Grass\n\n31) Babamots: Move Y3 Orion Grass\n\n32) DodoBirb: Build G1 Dodobirb\n\n33) Babamots: Discover Y2 Babamots G3 Risa\n\n34) DodoBirb: Trade G1 R1 Dodobirb\n\n35) Babamots: Sacrifice R1 Babamots\nAttack R2 Grass\n\n36) DodoBirb: Build G1 Grass\n\n37) Babamots: Discover B2 Orion G2 Earth\n\n38) DodoBirb: Move B1 Dodobirb Greeny\n\n39) Babamots: Attack G1 Grass\n\n40) DodoBirb: Build B2 Greeny\n\n41) Babamots: Attack B1 Grass\n\n42) DodoBirb: Discover B2 Greeny R3 Defense\n\n43) Babamots: Sacrifice G1 Grass\nBuild B3 Earth\n\n44) DodoBirb: Build B3 Greeny\n\n45) Babamots: Build R1 Grass\n\n46) DodoBirb: Move R1 Dodobirb Greeny\n\n47) Babamots: Attack G1 Grass\n\n48) DodoBirb: Build R2 Greeny\n\n49) Babamots: Trade B2 R2 Earth\n\n50) DodoBirb: Discover R2 Greeny R3 Reddy\n\n51) Babamots: Build B2 Earth\n\n52) DodoBirb: Discover B1 Greeny B3 Bluey\n\n53) Babamots: Sacrifice Y3 Grass\nMove B1 Grass Dodobirb\nMove B2 Earth Dodobirb\nMove B3 Earth Dodobirb\nCatastrophe Dodobirb B\n\n54) DodoBirb: Build B1 Greeny\n\n55) Babamots: Sacrifice Y3 Babamots\nMove R1 Grass Dodobirb\nMove R2 Grass Dodobirb\nMove R2 Earth Dodobirb\nCatastrophe Dodobirb R\n\n\tBabamots: If your remaining ships&#39; crews surrender, their lives  will be spared. ;-)\r\n\r\nGood luck in the tournament!\n\tDodoBirb: South&#39;s ships R2, B3, R1, Y1, B1, B1 and B2 were sacrificed. The entire universe was engulfed in a supernova, North seat has been eliminated. Good game! Good luck to you too!\n\tBabamots: Your fleet has some mighty vindictive captains. GG!\n\nHomeworlds Online (SDG# 35520)\nStarted: 2019.9.10, Ended: 2019.9.14\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: I intend that this game is for the tournament. Does that suit you?\r\n\r\nGood luck!\n\n2) wil: H Y3 B1 G3\n\twil: I was thinking it would be! Let&#39;s do this!\n\n3) Babamots: Build G1 Babamots\n\n4) wil: B G1 Wil\n\n5) Babamots: Trade G1 Y1 Babamots\n\twil: The new lesson is patience and reviewing moves...\n\twil: HW continues to help me with recovery.\n\n6) wil: T G1 R1 Wil\n\tBabamots: With every loss, I vow to never rush a move again.\r\n\r\nI don&#39;t live close enough to bring you casseroles, so I&#39;m very happy to be helping you any way I can :-)\n\n7) Babamots: Build Y1 Babamots\n\twil: Change is interesting. Shoot from the hips is my way\n\n8) wil: B R1 Wil\n\n9) Babamots: Build Y1 Babamots\n\n10) wil: B R2 Wil\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) wil: D R1 Wil B2 B2\n\n13) Babamots: Build Y2 Babamots\n\n14) wil: S G3 Wil\nB R2 Wil\nB R2 B2\nB R3 B2\n\n15) Babamots: Build G1 Babamots\n\n16) wil: T R3 G3 B2\n\n17) Babamots: Trade G3 R3 Babamots\n\n18) wil: B R3 B2\n\n19) Babamots: Build R3 Babamots\n\n20) wil: T R3 Y3 B2\n\n21) Babamots: Move R3 Babamots Orion\n\twil: This got thick quick!\n\tBabamots: Yes indeed.\n\n22) wil: T R2 G2 Wil\n\n23) Babamots: Build Y2 Orion\n\n24) wil: B G1 Wil\n\n25) Babamots: Build R2 Orion\n\n26) wil: D R2 B2 Y3 Y3\n\n27) Babamots: Discover Y1 Babamots R3 Brekka\n\n28) wil: B Y2 B2\n\n29) Babamots: Trade Y2 G2 Babamots\n\n30) wil: M G2 Wil B2\n\n31) Babamots: Build Y2 Babamots\n\n32) wil: T R2 G2 Wil\n\n33) Babamots: Sacrifice Y2 Babamots\nMove R3 Orion B2\nMove R3 B2 Wil\n\n34) wil: S Y3 B2\nM R2 Y3 B2\nM R1 B2 Wil\nM R2 B2 Wil\nC Wil R\n\n35) Babamots: Sacrifice G2 Babamots\nBuild Y2 Babamots\nBuild Y3 Brekka\n\twil: Ouch\n\n36) wil: S G3 B2\nB G1 B2\nB G2 B2\nB G3 Wil\n\tBabamots: I lost a game pretty unexpectedly to the problem of &quot;becoming comfortable with not having a large at home.&quot; eliscinsky was thrilled about it :-)\r\n\r\nSince then, I think I&#39;ve always kept a large at home except when sacrificing it for a winning move.\n\twil: Yeah,me too,always thinking I can get back when needed!\n\n37) Babamots: Sacrifice Y3 Brekka\nMove G1 Babamots Orion\nMove G1 Orion B2\nMove G1 B2 Wil\nCatastrophe Wil G\n\tBabamots: GG! I was pretty scared for a while. I usually focus on yellow, but I should have more respect for the red monopoly.\r\n\r\nGood luck in the tournament!\n\twil: Gig, thx\n\n\nHomeworlds Online (SDG# 35523)\nStarted: 2019.9.10, Ended: 2020.9.5\nParticipants: wil (S), Jeln (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 35525)\nStarted: 2019.9.11, Ended: 2019.10.3\nParticipants: Simon (S), DodoBirb (N)\nWinner: Simon\n\n1) DodoBirb: Homeworld B1 R2 G3\n\n2) Simon: Homeworld G3 B1 B3 *\n\tDodoBirb: Good Luck!\n\tSimon: Good luck and have fun! This counts for the Great Homeworlds Tournament 2019.\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) Simon: Build B1 Simon\n\n5) DodoBirb: Build G1 Dodobirb\n\n6) Simon: Trade B3 Y3 Simon\n\n7) DodoBirb: Trade G1 Y1 Dodobirb\n\n8) Simon: Build B2 Simon\n\n9) DodoBirb: Build Y1 Dodobirb\n\n10) Simon: Trade B2 R2 Simon\n\n11) DodoBirb: Trade G3 B3 Dodobirb\n\n12) Simon: Build B2 Simon\n\n13) DodoBirb: Discover Y1 Dodobirb G3 Greeny\n\n14) Simon: Discover B2 Simon G2 G2\n\n15) DodoBirb: Build Y1 Dodobirb\n\n16) Simon: Build Y2 Simon\n\n17) DodoBirb: Build Y2 Dodobirb\n\n18) Simon: Move Y2 Simon G2\n\n19) DodoBirb: Trade Y2 R2 Dodobirb\n\n20) Simon: Build B2 G2\n\n21) DodoBirb: Build Y2 Greeny\n\n22) Simon: Build Y2 Simon\n\n23) DodoBirb: Discover Y1 Greeny G2 Grassy\n\n24) Simon: Build Y3 G2\n\n25) DodoBirb: Build Y3 Grassy\n\n26) Simon: Build R1 Simon\n\n27) DodoBirb: Build G1 Dodobirb\n\n28) Simon: Build R1 Simon\n\n29) DodoBirb: Build G1 Dodobirb\n\n30) Simon: Discover B2 G2 G3 G3\n\n31) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n32) Simon: Move R1 Simon G2\n\n33) DodoBirb: Move R2 Dodobirb Bluey\n\n34) Simon: Move R1 G2 G3\n\n35) DodoBirb: Trade B3 R3 Dodobirb\n\n36) Simon: Build R1 G3\n\n37) DodoBirb: Move Y3 Grassy G3\n\n38) Simon: Sacrifice Y3 G2\nMove R1 G3 Dodobirb\nMove R1 G3 Dodobirb\nMove B2 G3 Dodobirb\nCatastrophe Dodobirb Red\n\n39) DodoBirb: Move Y1 Dodobirb Bluey\n\tDodoBirb: ... gg?\n\n40) Simon: Sacrifice Y3 Simon\nMove B1 Simon G2\nMove B1 G2 Dodobirb\nMove B2 G2 Dodobirb\nCatastrophe Dodobirb Blue\n\n\tSimon: GG, yeah. There was really no good color for your home queen; if not red, there would have been other unproductive shuffling.\n\tDodoBirb: GG\n\nHomeworlds Online (SDG# 35494)\nStarted: 2019.9.12, Ended: 2019.10.25\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld G2 B3 R3\n\tFelix: This is for the tournament, agreed?\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Aye theenk soh\n\n4) Felix: Build R1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Build R1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: Trade R3 Y3 Felix\n\n9) Draw5PlayAll: Discover Y1 Draw5playall G2 Build\n\n10) Felix: Build R2 Felix\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) Felix: B Y2 Felix\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G2 Construct\n\n14) Felix: Trade R2 B2 Felix\n\n15) Draw5PlayAll: Build Y2 Build\n\n16) Felix: B R2 Felix\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Build\nBuild Y3 Construct\nBuild Y3 Draw5playall\n\n18) Felix: Sacrifice Y2 Felix\nDiscover R2 Felix G1 Out\nMove R2 Out Build\n\tDraw5PlayAll: First time it has been me doing that against a strong opponent!\n\n19) Draw5PlayAll: Sacrifice Y2 Build\nDiscover Y2 Build B3 Trade\nMove Y1 Build Trade\n\tFelix: Feels good! Right? Nice move.\n\n20) Felix: Build Y2 Felix\n\n21) Draw5PlayAll: Trade Y2 R2 Trade\n\n22) Felix: Build R2 Build\n\n23) Draw5PlayAll: Move R2 Trade Construct\n\n24) Felix: S B2 Felix\nT R2 B2 Build\nT R1 G1 Felix\n\n25) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n26) Felix: B B1 Build\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) Felix: Build B1 Build\n\n29) Draw5PlayAll: Trade Y1 B1 Trade\n\n30) Felix: Trade B2 Y2 Build\n\tDraw5PlayAll: You&#39;re not going to... really...\n\n31) Draw5PlayAll: Sacrifice B1 Trade\nTrade Y1 B1 Construct\n\tFelix: No, I am not :)\n\n32) Felix: Build B2 Build\n\n33) Draw5PlayAll: Sacrifice Y3 Construct\nMove B1 Construct Draw5playall\nMove B1 Draw5playall Build\nCatastrophe Build Blue\nDiscover G1 Draw5playall B2 Trade\n\n34) Felix: Trade G1 B1 Felix\n\tDraw5PlayAll: I did not want to but you had mate in like 6 moves\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\tFelix: Can&#39;t say I blame you!\n\n36) Felix: Sacrifice B1 Felix\nTrade Y2 B2 Build\n\n37) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n38) Felix: Build B1 Build\n\n39) Draw5PlayAll: Move B1 Draw5playall Construct\n\n40) Felix: Trade B2 Y2 Build\n\n41) Draw5PlayAll: Build Y1 Draw5playall\n\n42) Felix: Build B1 Build\n\n43) Draw5PlayAll: Build B2 Construct\n\n44) Felix: Build B2 Build\n\n45) Draw5PlayAll: Trade B2 Y2 Construct\n\n46) Felix: Move B1 Build Draw5playall\n\n47) Draw5PlayAll: Build R1 Construct\n\n48) Felix: Build R2 Build\n\n\tDraw5PlayAll: Where did I go wrong?! I was in the lead earlier!\n\nHomeworlds Online (SDG# 35528)\nStarted: 2019.9.13, Ended: 2019.10.30\nParticipants: goulo (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B3 G3\n\n2) goulo: Homeworld R3 B2 G3\n\tFelix: Hello! I intend this game to be for the 2019 tournament. Do you agree?\n\n3) Felix: Build G1 Felix\n\tgoulo: hi, yes, it is a tournament game. Have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Felix: Trade G1 Y1 Felix\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Felix: Build Y2 Felix\n\n8) goulo: Build Y2 Goulo\n\n9) Felix: Discover Y1 Felix B2 Roam\n\n10) goulo: Discover Y2 Goulo G1 Verdeto\n\n11) Felix: Discover Y2 Felix G2 Greenlee\n\n12) goulo: Build G1 Goulo\n\n13) Felix: Build G1 Felix\n\n14) goulo: Build G2 Goulo\n\n15) Felix: Move G1 Felix Roam\n\n16) goulo: Discover G2 Goulo B1 Blueto\n\n17) Felix: Build G2 Felix\n\n18) goulo: Build G3 Blueto\n\n19) Felix: Trade G1 B1 Roam\n\n20) goulo: Trade G1 R1 Goulo\n\tFelix: I&#39;m sure I had a reason to let you get that large green... but now I can&#39;t think what it is!\n\n21) Felix: Trade G2 R2 Felix\n\n22) goulo: Trade G2 Y2 Blueto\n\n23) Felix: B Y3 Greenlee\n\n24) goulo: Sacrifice G3 Blueto\nBuild Y3 Goulo\nBuild Y3 Blueto\nBuild G1 Goulo\n\n25) Felix: Move Y3 Greenlee Verdeto\n\n26) goulo: Move Y2 Verdeto Roam\n\n27) Felix: Sacrifice Y1 Roam\nMove B1 Roam Verdeto\n\n28) goulo: Sacrifice G1 Goulo\nBuild Y1 Roam\n\n29) Felix: Build B1 Verdeto\n\n30) goulo: Move Y2 Blueto Greenlee\n\n31) Felix: Build B2 Verdeto\n\n32) goulo: Sacrifice R1 Goulo\nAttack Y2 Greenlee\n\n33) Felix: Move B2 Verdeto Greenlee\n\n34) goulo: Trade Y1 R1 Goulo\n\n35) Felix: Build B3 Greenlee\n\n36) goulo: Sacrifice Y2 Greenlee\nMove Y2 Greenlee Felix\nMove Y1 Roam Felix\n\n37) Felix: Attack Y2 Felix\n\n38) goulo: Move Y2 Roam Felix\nCatastrophe Felix Y\n\n39) Felix: Build B2 Greenlee\n\n40) goulo: Build G1 Goulo\n\n41) Felix: Build B3 Verdeto\n\n42) goulo: Move R1 Goulo Blueto\n\n43) Felix: Trade B2 Y2 Greenlee\n\n44) goulo: Build Y1 Goulo\n\n45) Felix: Build B2 Greenlee\n\n46) goulo: Trade G1 R1 Goulo\n\n47) Felix: Trade B2 R2 Greenlee\n\n48) goulo: Discover R1 Goulo Y1 Flaveto\n\n49) Felix: Build R1 Greenlee\n\n50) goulo: Build G1 Goulo\n\n51) Felix: Move B3 Verdeto Goulo\n\n52) goulo: Attack B3 Goulo\n\n53) Felix: S Y2 Greenlee\nMove B1 Verdeto Goulo\nMove B1 Verdeto Goulo\nCatastrophe Goulo Blue\n\n54) goulo: Build G1 Goulo\n\n55) Felix: Sacrifice Y3 Verdeto\nMove R1 Greenlee Goulo\nMove R2 Greenlee Goulo\nDiscover R2 Felix Y1 Injection\n\n\tgoulo: congrats, thanks for the game!\n\nHomeworlds Online (SDG# 35530)\nStarted: 2019.9.13, Ended: 2019.10.10\nParticipants: Felix (S), DodoBirb (N)\nWinner: Felix\n\n1) DodoBirb: Homeworld R1 B2 G3\n\tDodoBirb: Good Luck!\n\n2) Felix: Homeworld B1 G3 R3\n\tFelix: Same to you! I intend this game to be for the 2019 tournament. Do you agree?\n\n3) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Yes\n\n4) Felix: Build R1 Felix\n\n5) DodoBirb: Trade G1 R1 Dodobirb\n\n6) Felix: Build R2 Felix\n\n7) DodoBirb: Build R2 Dodobirb\n\n8) Felix: Trade R2 Y2 Felix\n\n9) DodoBirb: Trade R1 Y1 Dodobirb\n\n10) Felix: Build Y1 Felix\n\n11) DodoBirb: Build Y1 Dodobirb\n\n12) Felix: T Y1 B1 Felix\n\n13) DodoBirb: Trade Y1 B1 Dodobirb\n\n14) Felix: B B2 Felix\n\n15) DodoBirb: Build B2 Dodobirb\n\n16) Felix: Discover B2 Felix G2 Bazoik\n\n17) DodoBirb: Discover B2 Dodobirb G3 Greeny\n\n18) Felix: Build B3 Bazoik\n\n19) DodoBirb: Build B3 Greeny\n\n20) Felix: Build B3 Felix\n\n21) DodoBirb: Trade B3 Y3 Greeny\n\n22) Felix: Sacrifice B1 Felix\nTrade B3 Y3 Bazoik\n\n23) DodoBirb: Build Y1 Greeny\n\n24) Felix: Move R1 Felix Bazoik\n\n25) DodoBirb: Move R2 Dodobirb Greeny\n\n26) Felix: Build R1 Bazoik\n\n27) DodoBirb: Build R2 Greeny\n\n28) Felix: Build R2 Felix\n\n29) DodoBirb: Discover R2 Greeny G2 Medgreen\n\n30) Felix: Move R3 Felix Medgreen\n\n31) DodoBirb: Build R3 Greeny\n\n32) Felix: Build R3 Felix\n\n33) DodoBirb: Sacrifice Y1 Greeny\nDiscover R2 Medgreen Y3 Sun\n\n34) Felix: Build Y1 Felix\n\n35) DodoBirb: Build Y1 Dodobirb\n\n36) Felix: M B3 Felix Medgreen\n\n37) DodoBirb: Build Y2 Greeny\n\n38) Felix: B Y2 Bazoik\n\n39) DodoBirb: Discover R3 Greeny G2 Attack\n\n40) Felix: S Y2 Felix\nM B3 Medgreen Greeny\nM B3 Greeny Dodobirb\n\n41) DodoBirb: Attack B3S Dodobirb\n\n42) Felix: Sacrifice Y2 Bazoik\nMove B2 Bazoik Greeny\nMove B2 Greeny Dodobirb\nCatastrophe Dodobirb Blue\n\n43) DodoBirb: Move R2 Greeny Attack\n\n44) Felix: Sacrifice Y3 Bazoik\nMove R1 Bazoik Dodobirb\nMove R1 Bazoik Dodobirb\nMove R3 Medgreen Dodobirb\nCatastrophe Dodobirb Red\n\n\tFelix: Good game! Thanks for playing\n\nHomeworlds Online (SDG# 35541)\nVariants: &quot;Hard time&quot;\nStarted: 2019.9.16, Ended: 2019.10.7\nParticipants: Babamots (S), ts52 (N)\nWinner: Babamots\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\tBabamots: Thanks! I know this is a ladder game, but we could save time and make it for the tournament too. Strictly speaking the time controls aren&#39;t 7/2/7 like the tournament rules call for, but I don&#39;t think either of us plays so slowly that it will matter. I wrote the rules and I don&#39;t mind :-). What do you think?\n\n3) ts52: Build G1 Ts52\n\tts52: I don&#39;t know. Double stakes? ;) Sure, why not.\n\n4) Babamots: Build G1 Babamots\n\n5) ts52: Trade G1 Y1 Ts52\n\tBabamots: Since you&#39;re moving first, my are a little lower (no second-mover has won in the tournament yet). I may regret double stakes, but I accept the risk.\r\n\r\nAlso, will you fill out the form for the tournament?\n\tts52: Will do.\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) ts52: Build Y2 Ts52\n\n8) Babamots: Build Y2 Babamots\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) Babamots: Discover Y1 Babamots G2 Genesis\n\n11) ts52: Build G1 Ts52\n\n12) Babamots: Build G1 Babamots\n\n13) ts52: Trade G1 R1 Ts52\n\n14) Babamots: Trade G1 R1 Babamots\n\n15) ts52: Build R2 Ts52\n\n16) Babamots: Build R2 Babamots\n\n17) ts52: Move R2 Ts52 Kermit\n\n18) Babamots: Move R2 Babamots Genesis\n\n19) ts52: Build G1 Ts52\n\n20) Babamots: Build G1 Babamots\n\n21) ts52: Trade G1 B1 Ts52\n\n22) Babamots: Trade G1 B1 Babamots\n\n23) ts52: Build G1 Ts52\n\n24) Babamots: Build G1 Babamots\n\n25) ts52: Move B1 Ts52 Kermit\n\n26) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild Y3 Genesis\nBuild Y3 Babamots\n\tBabamots: I&#39;m thinking about breaking the mirror, but I hear that&#39;s bad luck.\n\n27) ts52: Build Y3 Kermit\n\tts52: Only for 7 years. It&#39;ll be over before you know it. ;)\n\n28) Babamots: Discover Y2 Babamots G2 Risa\n\n29) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Kermit\nBuild R3 Ts52\n\n30) Babamots: Sacrifice Y2 Babamots\nMove R1 Babamots Risa\nMove R1 Risa Kermit\nCatastrophe Kermit R\n\n31) ts52: Trade Y3 R3 Kermit\n\n32) Babamots: Move B1 Babamots Genesis\n\n33) ts52: Build G1 Ts52\n\n34) Babamots: Trade Y3 G3 Genesis\n\n35) ts52: Discover G1 Ts52 B3 Gonzo\n\n36) Babamots: Sacrifice G3 Genesis\nBuild Y2 Babamots\nBuild Y3 Risa\nBuild Y3 Genesis\n\n37) ts52: Trade R3 G3 Ts52\n\n38) Babamots: Discover Y3 Risa G3 Orion\n\n39) ts52: Build G2 Gonzo\n\n40) Babamots: Build B1 Genesis\n\n41) ts52: Move Y2 Ts52 Gonzo\n\n42) Babamots: Move B1 Genesis Orion\n\n43) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Kermit\nBuild R2 Ts52\n\n44) Babamots: Build B2 Orion\n\n45) ts52: Move R3 Kermit Risa\n\n46) Babamots: Sacrifice Y2 Risa\nMove B1 Orion Ts52\nMove B2 Orion Ts52\n\n47) ts52: Attack B2 Ts52\n\n48) Babamots: Sacrifice G1 Babamots\nBuild B2 Ts52\nCatastrophe Ts52 B\n\n49) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G3 Ts52\nBuild Y2 Kermit\n\n50) Babamots: Sacrifice Y3 Babamots\nMove Y1 Genesis Ts52\nMove Y3 Genesis Ts52\nMove Y3 Orion Ts52\nCatastrophe Ts52 Y\n\n\tts52: good game, well played sir!\n\tBabamots: GG!\r\nAs always, if your crews surrender, they will be treated humanely. :-)\n\nHomeworlds Online (SDG# 35543)\nVariants: &quot;Hard time&quot;\nStarted: 2019.9.17, Ended: 2019.9.21\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) dlwillson: H B3 R1 G3 Dlwillson\n\n3) wil: B G1 Wil\n\tdlwillson: GL &amp; HF!\n\n4) dlwillson: B G1 Dlwillson\n\twil: U2\n\twil: \n\twil: Ty\n\n5) wil: T G1 R1 Wil\n\n6) dlwillson: B G1 Dlwillson\n\n7) wil: B R1 Wil\n\n8) dlwillson: T G1 Y1 Dlwillson\n\n9) wil: D R1 Wil B3 B3\n\n10) dlwillson: B Y1 Dlwillson\n\n11) wil: B R2 Wil\n\n12) dlwillson: B Y1 Dlwillson\n\n13) wil: D R2 Wil Y3 Y3\n\n14) dlwillson: D Y1 Dlwillson B2 Sea\n\n15) wil: B R2 Wil\n\n16) dlwillson: B Y2 Dlwillson\n\n17) wil: S G3 Wil\nB R2 B3\nB R3 Y3\nB R3 Wil\n\n18) dlwillson: D Y1 Dlwillson B2 Seatoo\n\n19) wil: M R3 Y3 Sea\n\n20) dlwillson: D Y1 Sea B3 Sky\n\n21) wil: T R3 Y3 Sea\n\n22) dlwillson: Trade Y2 G2 Dlwillson\n\n23) wil: T R3 G3 Wil\n\n24) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB Y2 Seatoo\nB Y3 Dlwillson\n\n25) wil: S G3 Wil\nB R3 Wil\nB R3 Y3\nB R3 B3\n\n26) dlwillson: T Y2 B2 Seatoo\n\n27) wil: D R3 Y3 Y2 Y2\n\n28) dlwillson: D B2 Seatoo G3 Forest\n\n29) wil: S Y3 Sea\nM R3 B3 Y2\nM R3 Y2 Dlwillson\nM R3 Y2 Dlwillson\n\n\twil: Trigger happy\n\tdlwillson: Sigh... Good game. I&#39;m on a losing streak!\n\tdlwillson: But, it&#39;s still fun to play. :-)\n\twil: It is fun to play...even the losses.\n\nHomeworlds Online (SDG# 35542)\nVariants: &quot;Hard time&quot;\nStarted: 2019.9.18, Ended: 2019.10.14\nParticipants: Simon (S), Felix (N)\nWinner: Simon\n\n1) Felix: Homeworld B2 Y3 G3\n\tSimon: Have fun! :-)\n\n2) Simon: Homeworld R1 G3 B3\n\tFelix: Same to you!\n\n3) Felix: Build G1 Felix\n\n4) Simon: Build B1 Simon\n\n5) Felix: Trade G1 B1 Felix\n\n6) Simon: Trade B3 Y3 Simon\n\n7) Felix: B G1 Felix\n\n8) Simon: Build Y1 Simon\n\n9) Felix: T G1 Y1 Felix\n\n10) Simon: Discover Y1 Simon G2 G2\n\n11) Felix: B G1 Felix\n\n12) Simon: Build Y1 Simon\n\n13) Felix: Trade G1 R1 Felix\n\n14) Simon: Build Y2 G2\n\n15) Felix: Build R1 Felix\n\n16) Simon: Build B1 Simon\n\n17) Felix: Build B2 Felix\n\n18) Simon: Move B1 Simon G2\n\n19) Felix: Discover B2 Felix G1 Ringot\n\n20) Simon: Trade Y2 R2 G2\n\n21) Felix: Build Y2 Felix\n\n22) Simon: Build Y2 G2\n\n23) Felix: Move Y2 Felix Ringot\n\n24) Simon: Build R2 G2\n\n25) Felix: Move R1 Felix Ringot\n\n26) Simon: Discover Y1 G2 G1 G1\n\n27) Felix: Build R2 Felix\n\n28) Simon: Discover R2 G2 Y3 Y3\n\n29) Felix: Move R2 Felix G1\n\n30) Simon: Build R3 G2\n\n31) Felix: Build R3 Ringot\n\n32) Simon: Trade R3 G3 G2\n\n33) Felix: Attack Y1 G1\n\n34) Simon: Sacrifice G3 G2\nBuild R3 G2\nBuild R3 Y3\nBuild Y2 G2\n\n35) Felix: Build G1 Felix\n\n36) Simon: Move R3 Y3 G1\n\n37) Felix: Sacrifice Y1 G1\nDiscover R2 G1 G2 Entry\n\n38) Simon: Discover Y2 G2 Y1 Y1\n\n39) Felix: Move R3 Ringot Y3\n\n40) Simon: Move R2 Y3 Y1\n\n41) Felix: M R3 Y3 Y1\n\n42) Simon: Build Y3 G2\n\n43) Felix: S R2 Entry\nA R2 Y1\nA Y2 Y1\n\n44) Simon: Build R2 G1\n\n45) Felix: B G2 Felix\n\n46) Simon: Move R3 G2 Ringot\n\n47) Felix: S Y2 Ringot\nD B2 Ringot G2 Oouie\nM R1 Ringot Oouie\n\n48) Simon: Build Y2 Simon\n\n49) Felix: M B1 Felix Y1\n\n50) Simon: Move Y2 G2 G1\n\n51) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Y1\nBuild B3 Oouie\n\n52) Simon: Build B3 G2\n\n53) Felix: Move B1 Y1 G2\n\n54) Simon: Trade B3 G3 G2\n\n55) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 G2\nBuild B3 Y1\n\n56) Simon: Sacrifice Y3 G2\nMove G3 G2 G1\nMove G3 G1 Felix\nMove R3 Ringot Felix\nCatastrophe Felix Green\n\n\tSimon: Hmm, the green trade was intended as a threat. &gt;_&gt;\n\tFelix: Haha, whoops! Totally missed that one. Well played!\n\tSimon: gg!\n\nHomeworlds Online (SDG# 35367)\nVariants: &quot;Unrated&quot;\nStarted: 2019.9.24, Ended: 2019.10.6\nParticipants: Vezeon (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tVezeon: homeworld r1 b2 g3\n\n2) Vezeon: Homeworld R2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Vezeon: Build G1 Vezeon\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Vezeon: Trade G1 Y1 Vezeon\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Vezeon: Build Y2 Vezeon\n\n9) Trydnt: Discover Y2 Trydnt G3 G3\n\n10) Vezeon: Build G1 Vezeon\n\n11) Trydnt: Build G1 Trydnt\n\n12) Vezeon: Discover G1 Vezeon B1 Pluto\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) Vezeon: Build G1 Pluto\n\n15) Trydnt: Build B1 Trydnt\n\n16) Vezeon: Trade Y2 B2 Vezeon\n\n17) Trydnt: Build Y2 G3\n\n18) Vezeon: Discover B2 Vezeon R1 Mars\n\n19) Trydnt: Move B1 Trydnt G3\n\n20) Vezeon: Discover Y1 Vezeon R1 Magma\n\n21) Trydnt: Discover Y2 G3 G1 G1\n\n22) Vezeon: Build G2 Vezeon\n\n23) Trydnt: Build G2 Trydnt\n\n24) Vezeon: Build G2 Vezeon\n\n25) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G1\nBuild Y3 G3\n\n26) Vezeon: Trade B2 R2 Mars\n\n27) Trydnt: Sacrifice Y3 G3\nMove G3 Trydnt G3\nMove G3 G3 Pluto\nMove G3 Pluto Vezeon\nCatastrophe Vezeon G\n\n\nHomeworlds Online (SDG# 35560)\nVariants: &quot;Unrated&quot;\nStarted: 2019.9.25, Ended: 2019.9.30\nParticipants: Babamots (S), Dther (N)\nWinner: Babamots\n\n1) Dther: Homeworld R2 B3 G3\n\tBabamots: Hi! Looks like this is your first game on SDG. Have you ever played Homeworlds before? Let me know if you need help understanding the site commands.\n\tDther: Hey there. Really want to learn this game, but I&#39;m still trying to introduce pyramids in general to my board game group. Hope I don&#39;t embarrass myself too much :T\n\tBabamots: It&#39;s very late for me right now, but I&#39;ll look for your reply in the morning.\n\tBabamots: Sounds good! Have you read the rules?\n\n2) Babamots: Homeworld B3 R1 G3\n\tDther: I have, I think I get the basics. Thanks for starting a game for beginners like me :)\n\tBabamots: Maybe I&#39;ll stay up a tiny bit more. It&#39;s hard to resist this game. Normally, you can expect to wait a few hours or days for your opponent to make a move on SDG.\n\n3) Dther: Build G1 Dther\n\tBabamots: I&#39;m always surprised by how quickly new players show up when I offer a training game. It&#39;s good to know the community is growing.\n\n4) Babamots: Build G1 Babamots\n\n5) Dther: Trade G1 Y1 Dther\n\tDther: That&#39;s good to hear. There isn&#39;t exactly a vibrant community here in Australia, but I love the concept of Looney Pyramids so much. I&#39;ve had some success in introducing Zendo so far.\n\n6) Babamots: Trade G1 Y1 Babamots\n\tBabamots: Sometimes I like a blue/yellow system instead of blue/red. Yellow is slightly safer from sudden catastrophes since the yellow ship being sacrificed can&#39;t be moved in.\r\n\r\nA red star is safer from multi-move catastrophes for tricky reasons I&#39;m too sleepy to explain.\n\n7) Dther: Build G1 Dther\n\n8) Babamots: Build G1 Babamots\n\tDther: Hmm, is it because, when combined with the general good practice to always have a large at your homeworld, the red star allows for attack actions in between the opponent&#39;s moves?\n\tBabamots: I&#39;m in the eastern US. Seems like I met another Australian player on SDG, but I can&#39;t remember who.\r\n\r\nGames between people in the same time zone often go faster since they don&#39;t always have to wait for the other player to finish sleeping. I&#39;d better make this my last move for the night. There&#39;s work in the morning.\n\tDther: That&#39;s probably a good idea, see you then!\n\tBabamots: Yes, about the red. In particular, you can sacrifice the red ship you captured on the previous turn to prevent catastrophic buildup. To make a red catastrophe, your opponent can&#39;t just move ships one at a time for that reason. Even very good players forget that sometimes.\n\n9) Dther: Trade G1 R1 Dther\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) Dther: Build R2 Dther\n\n12) Babamots: Build R2 Babamots\n\n13) Dther: Discover R2 Dther G1 Styx\n\n14) Babamots: Trade R1 B1 Babamots\n\n15) Dther: Trade R1 B1 Dther\n\n16) Babamots: Build R1 Babamots\n\n17) Dther: Move B1 Dther Styx\n\n18) Babamots: Discover R2 Babamots G2 Betazed\n\n19) Dther: Build G1 Dther\n\n20) Babamots: Move B1 Babamots Betazed\n\n21) Dther: Build Y1 Dther\n\n22) Babamots: Build Y2 Babamots\n\n23) Dther: Build Y2 Dther\n\n24) Babamots: Build Y2 Babamots\n\n25) Dther: Move Y1 Dther Styx\n\tDther: Has anyone ever written an AI for Homeworlds? I&#39;m a computer science student, and part of what interests me about Homeworlds is how it strikes the middle ground of computational complexity between Chess and Go.\n\n26) Babamots: Move Y2 Babamots Betazed\n\n27) Dther: Build Y3 Styx\n\tDraw5PlayAll: www.github.com/Quuxplusone (user &quot;ajo&quot; here) wrote a pretty weak one.\n\tBabamots: Yes, the SDG account &quot;speardane&quot; is for an AI maintained by the player whose SDG account is &quot;ajo.&quot; It has been known to beat people.\r\n\r\nI also wrote a bot, but it has pretty big problems.\r\n\r\nHomeworlds can actually have a game tree that branches faster than go. For example, in a position where a player has quite a few ships and a large yellow ship, they can have thousands of possible moves (because of sacrifices). But of course, they lose their y3 if they take one of those moves, so the game tree won&#39;t branch that much on every move.\r\n\r\nI don&#39;t play much chess, but I think it might be easier to tell who is ahead at a glance in Homeworlds. So I think state evaluation heuristics might be very efficient for HW compared to chess.\n\n28) Babamots: Build Y3 Betazed\n\tBabamots: When both players have lots of yellow is when the game is really exciting. Seems like the first person to make a tiny mistake always loses.\n\n29) Dther: Trade G1 B1 Dther\n\tDther: That would make sense. Would it be right to think that it&#39;s because Yellow sacrifices create more possible branching paths than any other kind of sacrifice?\n\tBabamots: Yeah, each move action could move any ship to any connected system or discover a new system. Lots of possibilities.\r\n\r\nBlue sacrifices also create lots of possibilities.\n\n30) Babamots: Discover Y2 Babamots G2 Orion\n\n31) Dther: Trade Y1 R1 Styx\n\n32) Babamots: Sacrifice G3 Babamots\nBuild Y1 Orion\nBuild Y3 Babamots\nBuild R3 Betazed\n\tDther: What kind of things should I be thinking of in terms of a long term plan? Right now all I&#39;m thinking of is avoiding catastrophes and trying to get resources for the late game.\n\tBabamots: I&#39;m trying to spread out my yellows so that I can safely build that last y3 before you can. Let mw know if you want suggestions on how to block me.\n\tBabamots: You&#39;re doing pretty well. You haven&#39;t given me a chance to catastrophe, you haven&#39;t opened up larger sizes for me unless you would be able to get ships that size as well.\n\tBabamots: I made a mistake on my last move. I should have moved out my small ship instead. That way I was threatening to destroy your y3 and y1 with a y2 sacrifice.\n\n33) Dther: Sacrifice Y2 Dther\nMove R2 Styx Betazed\nMove R1 Styx Betazed\nCatastrophe Betazed R\n\n34) Babamots: Move Y2 Orion Styx\n\tBabamots: Well, that time you opened up larges of a color that you aren&#39;t prepared to build. Discovering a y3 system was probably your best way to block my build.\n\tDther: In hindsight, would discovering a Y3 star have been a better way to block?\n\n35) Dther: Trade B1 R1 Styx\n\n36) Babamots: Sacrifice R1 Babamots\nAttack R1 Styx\n\tBabamots: This las move of mine wasn&#39;t great. I wanted to flaunt the fact that you can&#39;t attack my y2 because you don&#39;t have a red. It also prevents you from building the available y2 because I could just cause a catastrophe.\r\n\r\nHowever, it isn&#39;t really a threat. You can ignore it or get a red so you can attack it unless I retreat.\n\n37) Dther: Move Y3 Styx Dther\n\n38) Babamots: Build B1 Betazed\n\n39) Dther: Trade Y3 R3 Dther\n\n40) Babamots: Build R1 Styx\n\tBabamots: Do you have a naming convention in mind for your systems? I use Star Trek planets.\n\n41) Dther: Discover R3 Dther G1 Smolensk\n\tDther: Not really, except for some Greco-Roman nouns and maybe a few nouns from early modern literature which I happen to like the sound of.\n\tDther: I realise that sounds a lot more pretentious than I intended, I&#39;m basically just naming things based on what I think I might use them for later but obfuscating that a little.\n\tBabamots: Not pretentious. &quot;Styx&quot; made me guess you were planning on either 80&#39;s bands or mythical locations.\r\n\r\nI think it&#39;s mneme that uses Greek muses.\r\nrouguejedi uses Star Wars worlds.\r\nI can&#39;t remember who uses Muppets.\r\nSeveral people just use the piece type: &quot;b3&quot; etc. Unimaginative, don&#39;t you think? :-P\n\n42) Babamots: Build R2 Styx\n\tBabamots: With a second red on your doorstep, I&#39;m in position to catastrophe your red star. You&#39;ll want to either move your r3 out (the best option I suppose) or trade for another color (blue obviously isn&#39;t safe, and with yellow I could still catastrophe your ship).\n\n43) Dther: Sacrifice Y1 Dther\nMove R3 Smolensk Betazed\n\tDther: Only slightly embarrassed to admit that I spent more time thinking of a name than on my actual move. In trying to think of a name that could be poetically linked to retreating, I found myself on a Wikipedia page on a Russian city that multiple invaders passed and later retreated through. Maybe thinking of star names will finally give me an excuse to read more...\n\n44) Babamots: Sacrifice R1 Styx\nAttack R3 Betazed\n\n45) Dther: Build B2 Dther\n\tBabamots: https://github.com/jpeterbaker/SDGchange/blob/master/sdgPageChange.js\r\n\r\nHere&#39;s something I use to help me navigate on SDG. There are two ways to view games: &quot;play pages&quot; and &quot;archive pages.&quot; Archive pages let you look at all past game states (play pages don&#39;t).\r\n\r\nYou can put those few lines of Javascript into a browser bookmark and then click it to open the other page for the game.\r\n\r\nCan you use it to see the archive page for this game?\n\tBabamots: You may have forgotten about red sacrifices. I can sacrifice an r1 in Styx to capture your r3.\r\n\r\nHowever, I can also win in two moves if I just ignore your r3. I think it would be more instructive for you to see that happen.\n\tBabamots: Oops, nope, I forgot which sizes systems are. I won&#39;t win in 2 moves. Dur.\n\tBabamots: If Betazed were a small system, I could do a blue catastrophe at your home now and do a red one on my next turn.\n\n46) Babamots: Sacrifice Y2 Betazed\nMove B1 Betazed Styx\nMove B1 Styx Dther\nCatastrophe Dther B\n\n47) Dther: Build G1 Dther\n\tDther: agh. Looks like I&#39;m just as bad at recovering from blunders here as I am with Chess. Thanks for the tips, I *did* forget about red sacrifices.\r\nI&#39;ve added your page change script to my bookmarks, but what browser do you use? It does open up the archive page, but on Firefox i&#39;m finding it moves the original page to a mostly blank page that just says &quot;false&quot;. Might test it with my other browser when I have time.\n\tBabamots: I&#39;m using Chrome. Maybe you need to take out the &quot;return false&quot; line?\n\n48) Babamots: Sacrifice Y3 Betazed\nMove R3 Betazed Styx\nMove R3 Styx Dther\nMove R2 Styx Dther\n\n49) Dther: Attack R3 Dther\n\tDther: Ah yeah, works just fine now. It&#39;s been too long since I&#39;ve messed with Javascript.\n\n50) Babamots: Move R1 Styx Dther\nCatastrophe Dther R\n\n\tDther: Well, darn. Good game.\n\tBabamots: Hopefully it was at least a little instructive. In other teaching games, I&#39;ve had a tendency to do nothing but call out mistakes, which seems patronizing. I tried to avoid that this time, but possibly at the loss of educational opportunities.\r\n\r\nI mentioned my own bad moves as we went along, but I think I should use the archive view to make a list of your weaker moves with explanations. How does that sound?\n\tBabamots: I went ahead and typed up my suggestions/analysis. Enjoy! :-)\r\n\r\nYour homeworld is OK, but I think the &quot;banker&quot; is strongest. That means a medium and a small piece for stars. That setup allows you the best control of the large pieces (since you use them as stars when you move out of your home system).\r\n\r\nOne your 8th move, you trade r1 for b1. I think you should have pressed your advantage in the red economy.The main reason is that the r1 was your only red ship in your home system. After your move, there are fewer systems in which you have red ships, so your hurt your ability to produce reds. If you ever want a red ship at your home again, you will have to trade for it or move one there, which will set you back a move. That&#39;s why I avoid trading or moving the last ship of a color from a system, especially in the early game.\r\n\r\nOn your 9th move, you move b1 to Styx. I dislike this for the same reason as your 8th move: it was your only blue ship in Dther. Later, on your 15th move, you trade a g1 for b1 in Dther. If you had built a b1 on your 9th move, you would have saved yourself a g1. (The disadvantage of what I&#39;m suggesting is that you would have allowed me to build a b2 earlier.\r\n\r\nOn your 16th move, you traded y1 for r1. I&#39;d say this is where things got away from you. You were trying to block me from building y3 (a good idea), but made it easy for me to build r3. I picked up the y3 with a green sacrifice anyway, but at the expense of my g3. I think you should have discovered a y3 system instead, probably with your r2 or y1 in Styx.\r\n\r\nI think your 17th move is the best one that was available to you. Maybe you even made your 16th move with the plan that, if I built r3, you would trigger the catastrophe. But your 16th and 17th moves together are still poor (17 just makes up some of the lost ground). If you look at the difference between the positions after my 15th move and your 17th move, I lost one r2 ship while you lost an r2 and a y2 (I also gained a y1 and my g3 becomes y3). It may look good that I lost an r3, but it would have been much better if I never got to build it.\r\n\r\nAnother effect of your 17th move is that you no longer have any red, which is why I was able to boldly move my y2 under your y3&#39;s nose.\r\n\r\nAlso, remember on your 8th move when you traded away the only red ship in Dther? If you had kept it, you would still have a red ship at this moment.\r\n\r\nOn your 18th move, you traded b1 for r1. You see now that I could just take it from you with a red sacrifice. If you had traded your y3 for r3 instead, you would have taken my y2 unless I simply retreated. Trading your b1 for r1 in Dther would have had a similar effect.\r\n\r\nWe already talked about your 22nd move. Red sacrifices are extremely important. &quot;A red anywhere is a red everywhere.&quot;\r\n\r\nOf course it&#39;s over at this point, but your 23rd move sped up the game by making it even easier to cause a blue catastrophe.\n\tDther: Thanks for the analysis! I always learn a lot from these kinds of after-game analyses. I think on my 8th and 9th move most of my thoughts were on if I should continue trying to build up and have a nice diversity of ships at my homeworld or start moving things out, so that answers that question. Thanks for the game! It&#39;s good to know that Homeworlds had the kind of tactical depth I was looking for :)\n\tBabamots: Oh yes, and since this was just a training exercise, the crews of your ships haven&#39;t actually been killed. Tell their families to expect them home in 1-3 standard cycles. :-P\n\nHomeworlds Online (SDG# 35482)\nStarted: 2019.9.26, Ended: 2019.10.14\nParticipants: dragon76n (S), MobyNostromo (N)\nWinner: dragon76n\n\n\tdragon76n: Hello... still waiting for you to setup.\n\tdragon76n: Hello... still waiting for you to setup.\n\nHomeworlds Online (SDG# 35529)\nStarted: 2019.9.27, Ended: 2019.10.31\nParticipants: Felix (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B1 R2 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) bhorner: Build G1 Bhorner\n\tFelix: I intend this game to be for the homeworlds tournament 2019. Are you good with that?\n\tbhorner: Oh yeah, that&#39;s what I expected.  :)\r\n\r\nAnd I also set up my planet, and thought you might do what you have done, to see if I was right that I can get around it (I thought at one point I could, but will have to re-figure it out), sorry if I move more slowly in the beginning here.\n\n4) Felix: Build B1 Felix\n\tbhorner: I just reread the rules stuff, I guess it was my responsibility to say this was an official tournament game.  :)  Sorry for missing that, I just got back from a long trip.  I just filled out the form, and this game should show up in the matrix now.\n\tFelix: Not a problem! I often forget who&#39;s supposed to, myself. I figure whoever actually initiates the challenge should do it, but either way... as long as it&#39;s on the map!\r\n\r\nTake as much time as you like. I&#39;m never very confident about this opening myself, but I think it&#39;s fun to try out!\n\n5) bhorner: Trade G3 B3 Bhorner\n\n6) Felix: Trade B3 Y3 Felix\n\tbhorner: Seems like I possibly had an extra move, and didn&#39;t need to do that immediately, but I couldn&#39;t make myself sure.  :)  Hopefully I haven&#39;t lost my first player advantage.\n\n7) bhorner: Build B2 Bhorner\n\n8) Felix: Build B2 Felix\n\n9) bhorner: Trade B2 Y2 Bhorner\n\n10) Felix: Discover B1 Felix G2 Folstaf\n\n11) bhorner: Build B2 Bhorner\n\n12) Felix: Build B2 Folstaf\n\n13) bhorner: Discover B2 Bhorner G3 Tree\n\n14) Felix: Trade B2 Y2 Folstaf\n\n15) bhorner: Build G1 Bhorner\n\n16) Felix: B Y1 Folstaf\n\n17) bhorner: Discover G1 Bhorner B3 Ocean\n\n18) Felix: B Y1 Felix\n\n19) bhorner: Trade B3 G3 Bhorner\n\n20) Felix: T Y1 R1 Folstaf\n\n21) bhorner: Trade G1 R1 Bhorner\n\n22) Felix: B R1 Folstaf\n\n23) bhorner: Build G1 Bhorner\n\n24) Felix: M R1 Folstaf Felix\n\n25) bhorner: Build G1 Ocean\n\n26) Felix: Build R2 Folstaf\n\n27) bhorner: Sacrifice G3 Bhorner\nBuild G2 Ocean\nBuild G2 Bhorner\nBuild G3 Bhorner\n\n28) Felix: Build B2 Folstaf\n\n29) bhorner: Sacrifice G3 Bhorner\nBuild B3 Tree\nBuild Y1 Bhorner\nBuild G3 Bhorner\n\n30) Felix: Move B1 Folstaf Tree\n\n31) bhorner: Trade B2 R2 Tree\n\n32) Felix: Build B2 Folstaf\n\n33) bhorner: Discover R1 Bhorner B3 Sky\n\n34) Felix: Move R2 Folstaf Sky\n\n35) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R3 Sky\nBuild R3 Tree\n\n36) Felix: Move R1 Folstaf Sky\nCatastrophe Sky Red\n\n37) bhorner: Attack B1 Tree\n\n38) Felix: Discover B2 Folstaf Y3 Sun\n\n39) bhorner: Sacrifice Y1 Bhorner\nMove R3 Tree Folstaf\n\n40) Felix: Sacrifice Y2 Folstaf\nDiscover B2 Folstaf Y3 Brim\nDiscover B2 Felix Y2 Star\n\n41) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y1 Bhorner\nBuild R1 Folstaf\n\n42) Felix: Build R1 Felix\n\n43) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R2 Tree\nBuild R3 Tree\n\n44) Felix: Move R1 Felix Star\n\n45) bhorner: Move Y1 Bhorner Tree\n\n46) Felix: Move R1 Star Tree\nCatastrophe Tree Red\n\n47) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y1 Bhorner\nBuild Y2 Tree\n\n48) Felix: Build R1 Felix\n\tbhorner: That sucked.  :)\n\n49) bhorner: Sacrifice Y2 Bhorner\nDiscover Y2 Tree R2 Fire\nDiscover R1 Folstaf R3 Volcano\n\n50) Felix: Move R1 Felix Star\n\tFelix: I know the feeling. Having no green sucks too, haha.\n\n51) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R2 Volcano\nBuild R3 Folstaf\n\n52) Felix: Move Y1 Felix Star\n\n53) bhorner: Move B3 Tree Star\n\n54) Felix: Sacrifice Y1 Star\nMove R1 Star Volcano\nCatastrophe Volcano Red\n\n55) bhorner: Sacrifice Y2 Fire\nMove R3 Folstaf Felix\nMove B3 Star Felix\n\n\tFelix: Oh bravo! Totally missed that one :) Good game and well done.\n\tbhorner: Thanks.  It was hard work!  GG!\n\nHomeworlds Online (SDG# 35574)\nStarted: 2019.9.28, Ended: 2019.11.14\nParticipants: MobyNostromo (S), Dther (N)\nWinner: Dther\n\n1) Dther: Homeworld R2 B3 G3\n\n2) MobyNostromo: Homeworld B2 G3 Y3\n\n3) Dther: Build G1 Dther\n\n4) MobyNostromo: Build Y1 Mobynostromo\n\n5) Dther: Build G1 Dther\n\n6) MobyNostromo: Discover Y1 Mobynostromo G1 Srouts\n\n7) Dther: Trade G1 Y1 Dther\n\n8) MobyNostromo: Build Y1 Mobynostromo\n\n9) Dther: Build Y2 Dther\n\n10) MobyNostromo: Build Y2 Srouts\n\n11) Dther: Sacrifice Y2 Dther\nMove G1 Dther Srouts\nMove G1 Srouts Mobynostromo\n\n12) MobyNostromo: Trade Y1 R1 Mobynostromo\n\n13) Dther: Build G1 Mobynostromo\n\n14) MobyNostromo: Build R1 Mobynostromo\n\n15) Dther: Build G2 Dther\n\n16) MobyNostromo: Attack G1 Mobynostromo\n\n17) Dther: Sacrifice G3 Dther\nBuild G2 Mobynostromo\nBuild G2 Dther\nBuild G3 Dther\nCatastrophe Mobynostromo G\n\n18) MobyNostromo: Trade R1 B1 Mobynostromo\n\n19) Dther: Trade G2 B2 Dther\n\n20) MobyNostromo: Move B1 Mobynostromo Srouts\n\n21) Dther: Discover B2 Dther G1 Malachite\n\n22) MobyNostromo: Trade Y2 R2 Srouts\n\n23) Dther: Build B1 Malachite\n\n24) MobyNostromo: D R2 Srouts Y2 Amber\n\n25) Dther: Trade B1 R1 Malachite\n\n26) MobyNostromo: B B1 Srouts\n\n27) Dther: Trade G3 Y3 Dther\n\n28) MobyNostromo: Trade B1 R1 Srouts\n\n29) Dther: Sacrifice G2 Dther\nBuild B1 Malachite\nBuild B1 Malachite\n\n30) MobyNostromo: M R2 Amber Malachite\n\n31) Dther: Sacrifice Y3 Dther\nMove B2 Malachite Mobynostromo\nMove B1 Malachite Mobynostromo\nMove B1 Malachite Mobynostromo\nCatastrophe Mobynostromo B\n\n\nHomeworlds Online (SDG# 35573)\nStarted: 2019.9.28, Ended: 2019.11.16\nParticipants: Dther (S), dragon76n (N)\nWinner: Dther\n\n1) dragon76n: H G2 R3 B3\n\n2) Dther: Homeworld B2 R1 G3\n\tdragon76n: Thanks for playing. Good luck and have fun!\n\n3) dragon76n: Build B1 Dragon76n\n\tDther: Good luck to you too, I&#39;m new at this game so I&#39;ll need all the luck I can get :)\n\tdragon76n: Ok, you know the basics, right? \n\n4) Dther: Build G1 Dther\n\n5) dragon76n: Trade B1 Y1 Dragon76n\n\tDther: I do, but not much else\n\tdragon76n: Ok, feel free to ask me if you have questions. I&#39;m not an expert by any means, but I have been playing for a while. \n\n6) Dther: Trade G1 Y1 Dther\n\n7) dragon76n: Build B1 Dragon76n\n\n8) Dther: Build G1 Dther\n\n9) dragon76n: Trade B1 G1 Dragon76n\n\n10) Dther: Trade G1 B1 Dther\n\n11) dragon76n: Build B1 Dragon76n\n\n12) Dther: Build G1 Dther\n\n13) dragon76n: Trade B1 R1 Dragon76n\n\n14) Dther: Trade G1 R1 Dther\n\n15) dragon76n: Build R2 Dragon76n\n\n16) Dther: Build G1 Dther\n\n17) dragon76n: Discover R2 Dragon76n B1 Bluone\n\n18) Dther: Build R2 Dther\n\n19) dragon76n: Move G1 Dragon76n Bluone\n\n20) Dther: Discover R2 Dther B3 Bigblue\n\n21) dragon76n: T R2 Y2 Bluone\n\n22) Dther: Build R2 Dther\n\n23) dragon76n: M R1 Dragon76n Bluone\n\n24) Dther: Discover R2 Dther Y3 Bigyellow\n\n25) dragon76n: Trade B3 R3 Dragon76n\n\n26) Dther: Discover R1 Dther G3 Biggreen\n\n27) dragon76n: Move Y2 Bluone Biggreen\n\n28) Dther: Build R2 Biggreen\n\n29) dragon76n: Sacrifice R1 Bluone\nAttack R2 Biggreen\n\n30) Dther: Discover G1 Dther R3 Bigred\n\n31) dragon76n: Build R1 Biggreen\n\n32) Dther: Sacrifice G1 Bigred\nBuild R3 Bigblue\n\n33) dragon76n: Attack R1 Biggreen\n\n34) Dther: Trade R3 Y3 Bigblue\n\n35) dragon76n: S Y2 Biggreen\nM R1 Biggreen Dther\nM R1 Biggreen Dther\n\n36) Dther: Move R2 Bigyellow Bluone\n\n37) dragon76n: S G1 Bluone\nB R3 Dther\nC Dther Red\n\n38) Dther: Trade B1 R1 Dther\n\n39) dragon76n: Build Y1 Dragon76n\n\n40) Dther: Sacrifice Y3 Bigblue\nMove R2 Bigblue Bluone\nMove R2 Bluone Dragon76n\nMove R2 Bluone Dragon76n\nCatastrophe Dragon76n Red\n\n41) dragon76n: B Y2 Dragon76n\n\n42) Dther: Build Y2 Dther\n\n43) dragon76n: D Y1 Dragon76n B1 Bluone\n\n44) Dther: Discover Y1 Dther G3 Biggreen2\n\n45) dragon76n: Trade Y1 B1 Bluone\n\n46) Dther: Build Y1 Biggreen2\n\n47) dragon76n: Sacrifice Y2 Dragon76n\nMove R2 Biggreen Dragon76n\nMove B1 Bluone Dragon76n\n\n48) Dther: Build Y2 Biggreen2\n\n49) dragon76n: Discover Y1 Dragon76n G1 Greone\n\n50) Dther: Discover Y2 Biggreen2 G1 Smlgreen\n\n51) dragon76n: B R1 Dragon76n\n\n52) Dther: Sacrifice G3 Dther\nBuild Y2 Biggreen2\nBuild Y3 Dther\nBuild Y3 Smlgreen\n\n53) dragon76n: Build Y3 Greone\n\n54) Dther: Sacrifice Y2 Biggreen2\nMove Y1 Biggreen2 Greone\nMove Y1 Biggreen2 Greone\nCatastrophe Greone Y\n\n55) dragon76n: Trade R1 Y1 Dragon76n\n\n56) Dther: Move Y3 Smlgreen Dragon76n\n\n57) dragon76n: Discover R2 Dragon76n Y1 Yelone\n\n58) Dther: Trade Y3 R3 Dther\n\n59) dragon76n: B Y1 Dragon76n\n\n60) Dther: Sacrifice R3 Dther\nAttack Y1 Dragon76n\nAttack Y1 Dragon76n\nAttack B1 Dragon76n\n\n\nHomeworlds Online (SDG# 35454)\nStarted: 2019.9.28, Ended: 2019.11.5\nParticipants: Felix (S), speardane (N)\nWinner: Felix\n\n1) speardane: Homeworld Y2 B3 G3\n\n2) Felix: Homeworld B2 Y3 G3\n\n3) speardane: Build G1 Speardane\n\tFelix: This game is for the 2019 tournament. Do you agree? :)\n\n4) Felix: Build G1 Felix\n\tspeardane: For the tournament!\n\n5) speardane: Trade G3 R3 Speardane\n\n6) Felix: Trade G1 B1 Felix\n\n7) speardane: Build G1 Speardane\n\n8) Felix: Build B1 Felix\n\n9) speardane: Discover G1 Speardane B1 Delos\n\n10) Felix: Discover B1 Felix Y1 Route\n\n11) speardane: Build G1 Delos\n\n12) Felix: Build B2 Felix\n\n13) speardane: Trade G1 Y1 Delos\n\n14) Felix: Discover B2 Felix R1 Leet\n\n15) speardane: Build G1 Delos\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Route\nBuild B3 Felix\nBuild B3 Leet\n\n17) speardane: Build G2 Delos\n\n18) Felix: T B3 G3 Felix\n\n19) speardane: Discover G2 Delos B3 Lebling\n\n20) Felix: T B3 G3 Leet\n\n21) speardane: Discover G1 Delos B3 Kotok\n\n22) Felix: B G2 Felix\n\n23) speardane: Build G2 Kotok\n\n24) Felix: B G3 Leet\n\n25) speardane: Trade G2 Y2 Kotok\n\n26) Felix: T G2 R2 Felix\n\n27) speardane: Build G2 Lebling\n\n28) Felix: Trade G3 Y3 Leet\n\n29) speardane: Trade G2 Y2 Lebling\n\n30) Felix: Move R2 Felix Delos\n\n31) speardane: Sacrifice G2 Lebling\nBuild Y1 Lebling\nBuild Y3 Delos\n\n32) Felix: Attack Y1 Delos\n\n33) speardane: Trade Y2 R2 Lebling\n\n34) Felix: Sacrifice Y1 Delos\nMove R2 Delos Felix\n\n35) speardane: Build Y1 Kotok\n\n36) Felix: Build R1 Felix\n\n37) speardane: Trade Y1 R1 Kotok\n\n38) Felix: Move G3 Leet Kotok\n\n39) speardane: Sacrifice Y2 Kotok\nDiscover R1 Kotok Y1 Minsky\nMove G1 Kotok Minsky\n\n40) Felix: Build G2 Kotok\n\n41) speardane: Sacrifice G1 Minsky\nBuild R2 Minsky\n\n42) Felix: Trade G3 R3 Kotok\n\n43) speardane: Build R3 Speardane\n\n44) Felix: Sacrifice G2 Kotok\nBuild G1 Felix\nBuild Y2 Leet\n\n45) speardane: Move R3 Speardane Route\n\n46) Felix: Sacrifice Y2 Leet\nMove B1 Route Speardane\nMove B2 Route Speardane\n\n47) speardane: Attack B2 Speardane\n\n48) Felix: Move B2 Leet Speardane\nCatastrophe Speardane Blue\n\n49) speardane: Trade R2 G2 Lebling\n\n50) Felix: Move G1 Felix Leet\n\n51) speardane: Build G2 Lebling\n\n52) Felix: Build Y2 Leet\n\n53) speardane: Move G2 Lebling Route\n\n54) Felix: Move Y3 Leet Lebling\n\n55) speardane: Sacrifice Y1 Lebling\nMove G2 Lebling Minsky\n\n56) Felix: Build Y1 Leet\n\n57) speardane: Discover R2 Minsky B3 Licklider\n\n58) Felix: Build Y2 Leet\n\n59) speardane: Pass\n\n60) Felix: Sacrifice Y3 Lebling\nMove Y1 Leet Speardane\nMove Y2 Leet Speardane\nMove Y2 Leet Speardane\nCatastrophe Speardane Yellow\n\tspeardane: Good game!\n\tFelix: You too!\n\n\nHomeworlds Online (SDG# 35580)\nVariants: &quot;Unrated&quot;\nStarted: 2019.9.30, Ended: 2019.10.21\nParticipants: Babamots (S), Dther (N)\nWinner: Dther\n\n1) Dther: Homeworld R1 B2 G3\n\n2) Babamots: Homeworld B3 Y2 G3\n\n3) Dther: Build G1 Dther\n\n4) Babamots: Build G1 Babamots\n\n5) Dther: Trade G1 R1 Dther\n\n6) Babamots: Trade G1 R1 Babamots\n\n7) Dther: Build R2 Dther\n\n8) Babamots: Build R2 Babamots\n\n9) Dther: Trade R1 Y1 Dther\n\n10) Babamots: Trade R2 Y2 Babamots\n\n11) Dther: Build Y1 Dther\n\tBabamots: Everything&#39;s going pretty standard so far. I&#39;m planning to give more commentary when things liven up.\r\n\r\nIt&#39;s pretty common for the player going second to essentially mirror what the other player does for a while. It can be a little dull, but it&#39;s often the best option for South.\n\n12) Babamots: Build G1 Babamots\n\tDther: Sorry about the long move, been really busy in real life.\n\n13) Dther: Build G1 Dther\n\tBabamots: No problem.\n\n14) Babamots: Discover G1 Babamots B1 Andoria\n\n15) Dther: Discover G1 Dther Y3 Theseus\n\n16) Babamots: Build G1 Babamots\n\n17) Dther: Discover Y1 Dther G3 Yggdrasil\n\tBabamots: Right now I think you should continue to fight me for control of green. It&#39;s common for fights like this to end with all pieces of the contested color being turned into systems or ships. The final build is likely to involve a sacrifice of the g3, so expect me try to build the last TWO green ships in one move (and rebuild the sacrificed g3).\r\n\r\nLater on, it may be important that you have the advantage in yellow ship count (and you have a yellow &quot;investment&quot;). You will probably want to spread out your yellows and then build more yellow soon.\n\n18) Babamots: Move Y2 Babamots Andoria\n\n19) Dther: Build G2 Dther\n\n20) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild G2 Babamots\nBuild G3 Babamots\n\n21) Dther: Build Y1 Yggdrasil\n\tBabamots: We both have &quot;factories,&quot; so between the two of us, we will probably build most of the pieces pretty soon.\n\n22) Babamots: Sacrifice G3 Babamots\nBuild R1 Babamots\nBuild R2 Babamots\nBuild G3 Babamots\n\tBabamots: Do you know what I mean by &quot;factory?&quot; The green supply is gone and you have a large green in the same system as another green. You can sacrifice the g3 to build two ships and rebuild your g3, basically getting a free build move.\n\n23) Dther: Sacrifice G3 Dther\nBuild Y2 Dther\nBuild Y3 Dther\nBuild G3 Dther\n\n24) Babamots: Build Y3 Andoria\n\tDther: I do- I wanted to get rid of the small yellows so that I could build the bigger ships. I didn&#39;t want to build other colours yet because I was afraid of a catastrophe, but in retrospect I probably could have gotten away with some reds.\n\n25) Dther: Sacrifice Y2 Dther\nMove G1 Theseus Andoria\nMove G1 Andoria Babamots\nCatastrophe Babamots G\n\n26) Babamots: Trade R1 G1 Babamots\n\tBabamots: Ah, very good. I wasn&#39;t very careful there.\n\n27) Dther: Sacrifice G2 Dther\nBuild Y2 Yggdrasil\nBuild Y3 Dther\n\tBabamots: So rather than re-defending with my large ship, I&#39;ve traded to match the color of the only large that you could get to my home (the green). If you sacrificed your y3 to move your g3 to my home immediately, I could double build to catastrophe it away.\r\n\r\nIf you build yellow, I&#39;m in huge trouble.\n\tBabamots: Your best move is probably to sacrifice g2 to build y2 and y3 in Yggdrasil and Dther respectively. I can&#39;t cause a catastrophe without almost certainly losing in a move or two, and you&#39;ll be ahead by two large ships.\r\n\r\nWell done :-D\n\n28) Babamots: Move Y3 Andoria Babamots\n\tDther: I&#39;m really impressed by the kind of tactical depth that this game has. I&#39;m wondering if there could be something like Chess problems, where players are given a board state and need to find the ideal series of moves to create a major advantage.\n\n29) Dther: Discover Y1 Yggdrasil B1 Rubicon\n\tBabamots: I tried to compose some Homeworlds puzzles once, but I thought it was quite difficult to come up with situations where I could say with certainty what the best move was unless it was obviously best.\n\n30) Babamots: Move R2 Babamots Rubicon\n\n31) Dther: Sacrifice Y3 Dther\nMove Y1 Rubicon Babamots\nMove Y1 Yggdrasil Andoria\nMove Y1 Andoria Babamots\nCatastrophe Babamots Y\n\n32) Babamots: Sacrifice Y2 Andoria\nMove R1 Babamots Dther\nDiscover R2 Rubicon Y3 Pakeld\n\tBabamots: Very good, and it looks like you&#39;re holding your own in your game with dragon76n, too. You don&#39;t need my advice as much as I expected. It&#39;s hard to feel like the old pro giving a lesson when I actually lose. Just goes to show how quickly a game will get away from you if you&#39;re not careful. My only excuse is that I&#39;m pretty focused on beating Felix in the tournament :-).\n\n33) Dther: Sacrifice R2 Dther\nAttack R1 Dther\nPass\n\tBabamots: Here&#39;s one last puzzle for you: see if you can prevent me from causing a red catastrophe in your home. Not knowing this trick cost me a high-stakes game once (to Felix, as it happens).\n\n34) Babamots: Trade G2 Y2 Andoria\n\tBabamots: Good! I wondered if you would get that.\n\tDther: Seemed like this was the only way. I thought about moving it away, but then I realised that you could just sacrifice the G2 in Andoria to build two more reds and cause a catastrophe. I&#39;m wondering whether moving the Y3 into Babamots would have been a more optimal move, since even if you caused a red catastrophe in my system, I could trade it for a blue and sacrifice my G3 to completely destroy Babamots.\r\n\r\nThanks for all the advice, by the way. I&#39;ve learnt a great deal from just these two games :)\n\tDther: You know, on the topic of Homeworlds problems, I&#39;ve recently thought about how Lichess gets its large pool of chess problems by pulling them out of turning points in high level games. Maybe when I have time, I might comb the database for interesting games. Even if the answers ended up feeling &quot;obvious&quot;, it might be a fun showcase of the complexity that can arise from Homeworlds&#39; fairly simple rules set.\r\n\r\nI&#39;m also wondering about the ways to &quot;evaluate&quot; board state in the same way it&#39;s done by Chess AIs. That would probably be a huge step in developing an AI for Homeworlds.\n\tBabamots: By my count, responding to my &quot;threat&quot; (and puzzle challenge) has set you back by one move compared to just ignoring my pesky red and proceeding like you outlined. I hope it was worth your time to make sure sacrifice-red-to-attack-red-while-avoiding-catastrophe is in your bag of tools.\n\n35) Dther: Move Y3 Dther Babamots\n\n36) Babamots: Build G1 Babamots\n\n37) Dther: Trade Y3 B3 Babamots\n\n38) Babamots: Move R2 Pakeld Dther\n\n39) Dther: Sacrifice G3 Dther\nBuild B1 Babamots\nBuild B1 Babamots\nBuild R1 Dther\nCatastrophe Babamots B\n\tBabamots: GG WP! I&#39;ll have to be on my toes the next time we play.\r\n\r\nI like the idea of collecting turning points of high-level games. That would be easier than composing our own puzzles anyway. The SDG archive has many many games. I&#39;ve always heard that TwoShort and TeeTeeTee were extremely good, but they retired before I showed up. I oughta study them.\r\n\r\n\n\tDther: Gg! Sort of a pyhrric victory in that your rogue red ship can just sweep up my homeworld ;)\n\tDraw5PlayAll: You could have just taken it out with a catastrophe.\n\n\nHomeworlds Online (SDG# 35578)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.1, Ended: 2019.11.18\nParticipants: Laurie_Menke (S), Jerome (N)\nWinner: Jerome\n\n1) Jerome: Homeworld B1 R2 G3\n\tLaurie_Menke: Hi Jerome! Thanks for the ladder challenge! Have fun!\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\n3) Jerome: Build G1 Jerome\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tJerome: Hi Laurie, have a nice game!\n\n5) Jerome: Trade G1 Y1 Jerome\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) Jerome: Build Y1 Jerome\n\n8) Laurie_Menke: Build Y2 Laurie_menke\n\n9) Jerome: Discover Y1 Jerome G3 Orion\n\n10) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n11) Jerome: Build Y2 Jerome\n\n12) Laurie_Menke: Build R1 Laurie_menke\n\n13) Jerome: Build Y2 Orion\n\n14) Laurie_Menke: Discover Y1 Laurie_menke G1 Forest\n\n15) Jerome: Discover Y2 Orion G2 Alpha\n\n16) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n17) Jerome: Build Y2 Orion\n\n18) Laurie_Menke: Build Y3 Forest\n\n19) Jerome: Build Y3 Alpha\n\n20) Laurie_Menke: Build G1 Laurie_menke\n\n21) Jerome: Trade Y2 B2 Jerome\n\n22) Laurie_Menke: Move Y1 Forest Alpha\n\n23) Jerome: Discover Y3 Alpha B1 Sirius\n\n24) Laurie_Menke: Build Y2 Forest\n\n25) Jerome: Move B2 Jerome Orion\n\n26) Laurie_Menke: Move Y3 Forest Alpha\n\n27) Jerome: Build B2 Orion\n\n28) Laurie_Menke: Move Y3 Alpha Sirius\n\n29) Jerome: Discover B2 Orion G2 Vega\n\n30) Laurie_Menke: Move Y2 Forest Vega\n\n31) Jerome: Build B3 Orion\n\n32) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack Y3 Sirius\nAttack B2 Vega\n\n33) Jerome: Trade B3 R3 Orion\n\n\tLaurie_Menke: Ugh. Sorry. But congrats on the win!  :)\n\tJerome: What happened?\n\tLaurie_Menke: I timed out. Ladder games are hard time games, and I got behind. I know it&#39;s not the way you wanted to win... sorry.  :(\n\nHomeworlds Online (SDG# 35499)\nStarted: 2019.10.4, Ended: 2019.10.17\nParticipants: ajo (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Have fun! This is for the Great Homeworlds Tournament of 2019.\n\n2) ajo: Homeworld B1 Y3 G3\n\n3) Simon: Build B1 Simon\n\tajo: For the tournament!\n\n4) ajo: Build G1 Ajo\n\n5) Simon: Build B1 Simon\n\n6) ajo: Trade G1 R1 Ajo\n\n7) Simon: Trade B3 Y3 Simon\n\n8) ajo: Build R1 Ajo\n\n9) Simon: Build B2 Simon\n\n10) ajo: Build R2 Ajo\n\n11) Simon: Trade B2 R2 Simon\n\n12) ajo: Trade R2 B2 Ajo\n\n13) Simon: Discover B1 Simon G2 G2\n\n14) ajo: Move B2 Ajo G2\n\n15) Simon: Build B2 G2\n\n16) ajo: Build R2 Ajo\n\tajo: Well, I guess I shouldn&#39;t have done that. :)\n\n17) Simon: Build B2 Simon\n\n18) ajo: Discover R2 Ajo Y2 Alpha\n\tSimon: Hmm, it&#39;s surprisingly low-priority to take here for both sides.\n\n19) Simon: Build B3 Simon\n\n20) ajo: Build B3 G2\nCatastrophe G2 Blue\n\n21) Simon: Move B3 Simon Alpha\n\tajo: Well, I&#39;m already in serious trouble. I thought I was threatening to catastrophe blue if you built that b3, but I missed my lack of yellow.\n\n22) ajo: Discover R2 Alpha Y3 Beta\n\tSimon: A rare opportunity, yeah. I didn&#39;t see it immediately either.\n\n23) Simon: Trade B2 G2 Simon\n\n24) ajo: Build G1 Ajo\n\n25) Simon: Move G2 Simon Alpha\n\n26) ajo: Discover G1 Ajo Y2 Gamma\n\n27) Simon: Move R2 Simon Gamma\n\n28) ajo: Build R2 Ajo\n\n29) Simon: Attack G1 Gamma\n\n30) ajo: Trade R2 B2 Ajo\n\n31) Simon: Build B1 Alpha\n\n32) ajo: Discover B2 Ajo Y2 Delta\n\n33) Simon: Build B2 Alpha\n\tajo: Well, I am just walling myself in...\n\n34) ajo: Trade B2 G2 Delta\n\n35) Simon: Trade B2 R2 Alpha\n\n36) ajo: Sacrifice G2 Delta\nBuild R3 Beta\nPass\n\n37) Simon: Build G1 Alpha\n\n38) ajo: Discover R2 Beta G2 Green\n\n39) Simon: Sacrifice G2 Alpha\nBuild R3 Alpha\nBuild R3 Gamma\n\n40) ajo: Build G1 Ajo\n\n41) Simon: Sacrifice Y3 Simon\nMove G1 Alpha Ajo\nMove G1 Gamma Ajo\nMove R3 Alpha Ajo\nCatastrophe Ajo Green\n\tajo: Yeah, I think I&#39;m dead.\n\n\tSimon: Yeah, every early turn is valuable.\n\nHomeworlds Online (SDG# 35461)\nStarted: 2019.10.4, Ended: 2019.12.14\nParticipants: goulo (S), kataclysm (N)\nWinner: goulo\n\n1) kataclysm: Homeworld G2 B1 Y3\n\n2) goulo: Homeworld B2 G3 Y3\n\n\tgoulo: hi kat! this is for the tournament, right?\n\nHomeworlds Online (SDG# 35464)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.6, Ended: 2019.10.10\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld R2 G3 B3\n\n2) wil: H B2 Y1 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Build B1 Trydnt\n\n6) wil: T G1 B1 Wil\n\n7) Trydnt: Trade B1 Y1 Trydnt\n\n8) wil: B B1 Wil\n\n9) Trydnt: Build Y1 Trydnt\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Trydnt: Build B2 Trydnt\n\n12) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: T B2 Y2 Y3\n\n15) Trydnt: Sacrifice Y2 Trydnt\nDiscover B2 Trydnt G1 G1\nDiscover B2 G1 G3 G3\n\n16) wil: T B3 G3 Y3\n\n17) Trydnt: Sacrifice Y1 Trydnt\nMove B2 G3 Wil\nCatastrophe Wil B\n\n\nHomeworlds Online (SDG# 35462)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.6, Ended: 2019.10.24\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H R1 B3 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tdlwillson: Thanks for taking my challenge!\n\tdlwillson: Thanks for taking my challenge!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) dlwillson: B Y1 Dlwillson\n\n8) Trydnt: Build R1 Trydnt\n\n9) dlwillson: B Y1 Dlwillson\n\n10) Trydnt: Build R2 Trydnt\n\n11) dlwillson: D Y1 Dlwillson B2 Sea\n\n12) Trydnt: Discover R1 Trydnt B1 B1\n\n13) dlwillson: D Y1 Dlwillson Y2 Sol\n\n14) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Trydnt\nBuild R2 B1\nBuild R3 B1\n\n15) dlwillson: B Y2 Dlwillson\n\n16) Trydnt: Trade R3 Y3 B1\n\n17) dlwillson: B G1 Dlwillson\n\n18) Trydnt: Discover R2 B1 Y3 Y3\n\n19) dlwillson: B Y2 Dlwillson\n\n20) Trydnt: Trade R2 G2 Trydnt\n\n21) dlwillson: T Y2 R2 Dlwillson\n\n22) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Y3\nBuild R3 Trydnt\n\n23) dlwillson: S Y2 Dlwillson\nM R2 Dlwillson Sea\nM Y1 Sol Y3\n\n24) Trydnt: Move R3 Y3 Sea\n\n25) dlwillson: D R2 Sea G1 Forest\n\n26) Trydnt: Sacrifice R2 Trydnt\nAttack Y1 Sea\nAttack Y1 Y3\n\n27) dlwillson: B R2 Forest\n\n28) Trydnt: Trade R1 G1 B1\n\n29) dlwillson: B Y2 Dlwillson\n\n30) Trydnt: Trade R3 G3 Trydnt\n\n31) dlwillson: T G1 B1 Dlwillson\n\n32) Trydnt: Build Y2 B1\n\n33) dlwillson: S B1 Dlwillson\nT R2 G2 Forest\n\n34) Trydnt: Move G1 B1 Sea\n\n35) dlwillson: B R1 Forest\n\n36) Trydnt: Build Y2 Sea\n\n37) dlwillson: Sacrifice Y2 Dlwillson\nMove R1 Forest Sea\nDiscover R1 Sea G1 Alsoforest\n\n38) Trydnt: Build G2 Sea\n\n39) dlwillson: S G2 Forest\nB R2 Alsoforest\nB R3 Forest\n\n40) Trydnt: Sacrifice G2 Sea\nBuild G2 Sea\nBuild R3 Y3\n\n41) dlwillson: Build Y2 Dlwillson\n\n42) Trydnt: Sacrifice Y2 Sea\nMove R2 Y3 Forest\nMove R1 Trydnt Forest\nCatastrophe Forest R\n\n43) dlwillson: T Y1 B1 Dlwillson\n\n44) Trydnt: Build G1 Sea\n\n45) dlwillson: S B1 Dlwillson\nT R2 Y2 Alsoforest\n\n46) Trydnt: Build Y1 Sea\n\n47) dlwillson: B R1 Alsoforest\n\n48) Trydnt: Sacrifice Y3 B1\nMove G1 Sea Dlwillson\nMove G1 Sea Dlwillson\nMove G2 Sea Dlwillson\nCatastrophe Dlwillson G\n\n49) dlwillson: B Y3 Alsoforest\n\n50) Trydnt: Sacrifice Y2 B1\nMove R3 Y3 Sea\nMove R3 Sea Dlwillson\n\n51) dlwillson: Sacrifice Y2 Alsoforest\nMove R1 Alsoforest Trydnt\nMove Y3 Alsoforest Trydnt\n\n52) Trydnt: Sacrifice R3 Sea\nAttack Y3 Trydnt\nAttack R1 Trydnt\nAttack Y2 Dlwillson\n\n\tdlwillson: Yaa!\n\tTrydnt: well played\n\tdlwillson: Yeah... Not so sure about that... But *you* played very well! :-)\n\nHomeworlds Online (SDG# 35588)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.6, Ended: 2019.10.13\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld G1 B1 B3 *\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\twil: Oops\n\n5) wil: B G1 Wil\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) wil: D G1 Wil B3 B3\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: S G3 Wil\nB G2 Wil\nB G2 B3\nB G2 B3\n\n10) Trydnt: Trade B2 R2 Trydnt\n\n11) wil: T G2 R2 Wil\n\n12) Trydnt: Move Y3 Trydnt B3\n\n13) wil: B G2 Wil\n\n14) Trydnt: Move Y3 B3 Wil\n\n15) wil: T G2 Y2 Wil\n\twil: I forgot it was short uni!\n\twil: Lol\n\n16) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Wil\nAttack Y2 Wil\n\twil: Gg\n\n17) wil: T G1 Y1 Wil\n\n18) Trydnt: Attack Y1 Wil\n\tTrydnt: well played :)\n\twil: Lol, right!\n\twil: I take great pride in losing to you!\n\tTrydnt: I&#39;ve largely stopped paying attention to winning and losing and focused more on how to extract the most information from every game to improve my strategies. I&#39;d like to play more weird universe games like this though. I think that an AI will struggle to code switch like we do when taking a different homeworld setup and I&#39;d like to be able to give a supercomputer a proper challenge\n\twil: U way to smart for me\n\n\nHomeworlds Online (SDG# 35412)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.8, Ended: 2019.10.31\nParticipants: Trydnt (S), deanthebean (N)\nWinner: Trydnt\n\n1) deanthebean: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 G2 Y3\n\tdeanthebean: Hello. Have fun!\n\tTrydnt: you too and good luck\n\n3) deanthebean: Build G1 Deanthebean\n\n4) Trydnt: Build Y1 Trydnt\n\tdeanthebean: Thanks.\n\n5) deanthebean: Trade G1 Y1 Deanthebean\n\n6) Trydnt: Build Y2 Trydnt\n\n7) deanthebean: Build G1 Deanthebean\n\n8) Trydnt: Discover Y1 Trydnt G1 G1\n\n9) deanthebean: Discover Y1 Deanthebean G3 G3\n\n10) Trydnt: Discover Y2 Trydnt B1 B1\n\n11) deanthebean: Build Y2 G3\n\n12) Trydnt: Build Y2 Trydnt\n\n13) deanthebean: Discover Y1 G3 G1 G1a\n\n14) Trydnt: Trade Y2 R2 Trydnt\n\n15) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Deanthebean\nBuild Y2 G1a\nBuild Y3 G3\n\n16) Trydnt: Build Y3 G1\n\n17) deanthebean: Build G2 Deanthebean\n\n18) Trydnt: Sacrifice Y2 B1\nMove Y3 G1 G3\nMove Y3 G3 Deanthebean\n\n19) deanthebean: Build Y2 G1a\n\n20) Trydnt: Build R1 Trydnt\n\n21) deanthebean: Sacrifice Y3 G3\n\nMove Y1 G1a G3\nMove Y1 G3 Deanthebean\nMove Y2 G3 Deanthebean\nCatastrophe Deanthebean Yellow\n\n22) Trydnt: Discover R2 Trydnt Y1 Y1\n\n23) deanthebean: Trade G2 R2 Deanthebean\n\tdeanthebean: Desperation!\n\n24) Trydnt: Build R1 Trydnt\n\n25) deanthebean: Build G2 Deanthebean\n\n26) Trydnt: Discover Y1 G1 G3 G3\n\n27) deanthebean: Trade G2 Y2 Deanthebean\n\n28) Trydnt: Trade R1 B1 Trydnt\n\n29) deanthebean: Move Y2 G1a G3\n\n30) Trydnt: Sacrifice Y1 G3\nDiscover R2 Y1 G3 Gee3\n\n31) deanthebean: Build Y1 G1a\n\n32) Trydnt: Build B1 Trydnt\n\n33) deanthebean: Discover Y2 G3 B1 B1\n\n34) Trydnt: Discover B1 Trydnt Y1 Y1\n\n35) deanthebean: Trade Y2 B2 B1\n\n36) Trydnt: Move B1 Y1 Gee3\n\tdeanthebean: trade y2 b2 b1\n\n37) deanthebean: Sacrifice Y1 G1a\nDiscover B2 B1 G2 G2\n\n38) Trydnt: Build B1 Gee3\n\n39) deanthebean: Build B2 G2\n\n40) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Gee3 Deanthebean\nMove B1 Gee3 Deanthebean\nDiscover B1 Trydnt Y1 Y1\n\n\tdeanthebean: Yup. That works. Well played!\n\tTrydnt: you too :)\n\nHomeworlds Online (SDG# 35595)\nStarted: 2019.10.9, Ended: 2019.10.21\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: This is for the tournament, correct?\n\n2) Felix: Homeworld G1 R3 B3\n\tFelix: Only if I win! Haha, correctamundo.\n\n3) Babamots: Build G1 Babamots\n\n4) Felix: Build B1 Felix\n\n5) Babamots: Build G1 Babamots\n\tBabamots: You&#39;ll accept the result if you win, eh? Sounds like a slimy guy I saw running for office once.\n\n6) Felix: Build B1 Felix\n\tFelix: All I know is that if I lose, I&#39;m blaming Russia!\n\tBabamots: It&#39;s clearly Russia&#39;s fault. If they had done the job properly, I wouldn&#39;t have got caught.\n\n7) Babamots: Trade G1 Y1 Babamots\n\n8) Felix: Trade B3 Y3 Felix\n\n9) Babamots: Build G1 Babamots\n\n10) Felix: Build B1 Felix\n\n11) Babamots: Discover G1 Babamots B3 Bolarus\n\n12) Felix: Discover B1 Felix B2 Rumproast\n\n13) Babamots: Build G2 Babamots\n\n14) Felix: Discover B1 Felix B2 Porkbelly\n\tBabamots: Should a rump roast be blue?\n\tFelix: Absolutely not. Stay far away from this one.\n\n15) Babamots: Discover G2 Babamots B3 Andoria\n\n16) Felix: Build B3 Felix\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild G2 Bolarus\nBuild G3 Babamots\n\n18) Felix: Trade B3 G3 Felix\n\n19) Babamots: Sacrifice G3 Babamots\nBuild G3 Bolarus\nBuild Y1 Babamots\nBuild G3 Babamots\n\n20) Felix: Move G3 Felix Porkbelly\n\n21) Babamots: Discover Y1 Babamots B3 Betazed\n\n22) Felix: Trade B1 R1 Porkbelly\n\n23) Babamots: Sacrifice G3 Bolarus\nBuild Y1 Babamots\nBuild Y2 Betazed\nBuild G3 Bolarus\n\n24) Felix: Build Y2 Felix\n\n25) Babamots: Trade G3 R3 Bolarus\n\n26) Felix: Build G3 Porkbelly\n\n27) Babamots: Sacrifice Y2 Betazed\nMove G2 Andoria Porkbelly\nMove G2 Bolarus Porkbelly\nCatastrophe Porkbelly G\n\n28) Felix: Build B1 Felix\n\n29) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild G2 Bolarus\nBuild G3 Babamots\n\n30) Felix: Trade Y3 G3 Felix\n\n31) Babamots: Sacrifice G3 Babamots\nBuild Y2 Betazed\nBuild G3 Bolarus\nBuild G3 Babamots\n\n32) Felix: Build Y2 Felix\n\n33) Babamots: Trade G3 Y3 Bolarus\n\n34) Felix: Move Y2 Felix Porkbelly\n\n35) Babamots: Sacrifice G3 Babamots\nBuild Y3 Bolarus\nBuild Y3 Babamots\nBuild G3 Babamots\n\n36) Felix: Move B1 Felix Porkbelly\n\n37) Babamots: Discover G2 Bolarus R2 Romulus\n\tFelix: You&#39;re being ruthless! I don&#39;t have many options here...\n\n38) Felix: Trade G3 R3 Felix\n\tBabamots: No ruths at all, I&#39;m afraid.\n\n39) Babamots: Sacrifice G3 Babamots\nBuild G3 Romulus\nBuild R1 Bolarus\nBuild G3 Babamots\n\n40) Felix: Discover B1 Felix R2 Ledge\n\n41) Babamots: Move R3 Bolarus Porkbelly\n\n42) Felix: Sacrifice Y2 Porkbelly\nMove B1 Porkbelly Bolarus\nMove R1 Porkbelly Bolarus\n\n43) Babamots: Sacrifice Y3 Bolarus\nMove R1 Bolarus Porkbelly\nMove R1 Porkbelly Felix\nMove R3 Porkbelly Felix\nCatastrophe Felix R\n\n44) Felix: Build Y2 Felix\n\n45) Babamots: Sacrifice Y3 Babamots\nMove G1 Bolarus Felix\nMove G2 Andoria Felix\nMove G2 Andoria Felix\nCatastrophe Felix G\n\n\tFelix: Well done!\n\tBabamots: GG! Your stranded crews will be treated humanely. I will give orders that they be allowed to return home. :-D\r\n\r\nOne of these days I want to draw up an official-looking peace treaty. Anyone who beats me gets a full description of my terms of surrender...\n\nHomeworlds Online (SDG# 35612)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.14, Ended: 2019.11.25\nParticipants: Babamots (S), deanthebean (N)\nWinner: Babamots\n\n1) deanthebean: Homeworld B2 Y3 G3\n\tdeanthebean: Thank you for accepting the challenge. Have fun!\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) deanthebean: Build G1 Deanthebean\n\tBabamots: Sure! I&#39;d like to redeem myself from last time.\n\n4) Babamots: Build G1 Babamots\n\n5) deanthebean: Discover G1 Deanthebean Y1 Helenthemelon\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) deanthebean: Build G1 Deanthebean\n\n8) Babamots: Build Y1 Babamots\n\n9) deanthebean: Trade G1 R1 Deanthebean\n\n10) Babamots: Build Y2 Babamots\n\n11) deanthebean: Build G1 Deanthebean\n\n12) Babamots: Discover Y2 Babamots G3 Bolarus\n\n13) deanthebean: Build G1 Helenthemelon\n\n14) Babamots: Discover Y1 Babamots B3 Betazed\n\n15) deanthebean: Build G2 Helenthemelon\n\n16) Babamots: Build G2 Babamots\n\n17) deanthebean: Move G2 Helenthemelon Betazed\n\n18) Babamots: Discover Y1 Betazed Y2 Iconia\n\n19) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Betazed\nBuild G3 Deanthebean\nBuild R1 Deanthebean\n\n20) Babamots: Sacrifice G3 Babamots\nBuild Y2 Iconia\nBuild Y3 Babamots\nBuild G3 Babamots\n\n21) deanthebean: Trade G3 Y3 Deanthebean\n\n22) Babamots: Trade G2 R2 Babamots\n\n23) deanthebean: Trade G2 B2 Betazed\n\n24) Babamots: Move Y3 Babamots Betazed\n\n25) deanthebean: Sacrifice G2 Betazed\nBuild G2 Deanthebean\nBuild R2 Deanthebean\n\n26) Babamots: Trade Y3 R3 Betazed\n\n27) deanthebean: Discover G1 Helenthemelon Y3 Peaches\n\n28) Babamots: Attack B2 Betazed\n\n29) deanthebean: Build G2 Peaches\n\n30) Babamots: Sacrifice G3 Babamots\nBuild R2 Betazed\nBuild R3 Betazed\nBuild R3 Babamots\n\n31) deanthebean: Build G2 Helenthemelon\n\tBabamots: Looks like a bold move, but I think I&#39;ve calculated correctly and things work out OK for me whatever you do.\n\tBabamots: Oh, and happy Halloween :-).\n\n32) Babamots: Sacrifice B2 Betazed\nTrade R3 G3 Betazed\nTrade R3 G3 Babamots\n\tdeanthebean: Yup. Good move (probably). Happy Halloween to you as well. \n\n33) deanthebean: Move R1 Deanthebean Helenthemelon\n\n34) Babamots: Sacrifice Y1 Iconia\nMove R3 Betazed Helenthemelon\n\n35) deanthebean: Move G2 Helenthemelon Bolarus\n\n36) Babamots: Sacrifice R2 Babamots\nAttack G2 Bolarus\nAttack R1 Helenthemelon\n\n37) deanthebean: Move R1 Deanthebean Helenthemelon\n\n38) Babamots: Sacrifice R1 Helenthemelon\nAttack R1 Helenthemelon\n\n39) deanthebean: Move G1 Helenthemelon Bolarus\n\tBabamots: I lost a high-stakes game by not knowing the sacrifice-red-to-avoid-catastrophe trick. I&#39;m always on the lookout for it now.\n\tDraw5PlayAll: Which side of it were you on?\n\tBabamots: I was moving in for the kill when my opponent did the catastrophe-avoiding red sacrifice and took me totally off guard.\n\n40) Babamots: Sacrifice R1 Helenthemelon\nAttack G1 Bolarus\n\n41) deanthebean: Discover G1 Deanthebean Y1 Plum\n\n42) Babamots: Sacrifice G1 Bolarus\nBuild G1 Betazed\n\n43) deanthebean: Build R1 Deanthebean\n\n44) Babamots: Move R3 Helenthemelon Peaches\n\n45) deanthebean: Move G2 Peaches Iconia\n\n46) Babamots: Sacrifice R2 Betazed\nAttack G1 Peaches\nAttack G2 Iconia\n\n47) deanthebean: Trade R2 B2 Deanthebean\n\n48) Babamots: Discover Y2 Iconia B1 Kronos\n\n\tdeanthebean: I&#39;m just to far behind and unable to find good moves so well played!\n\tBabamots: GG!\n\nHomeworlds Online (SDG# 35613)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.14, Ended: 2019.11.7\nParticipants: Trydnt (S), Simon (N)\nWinner: Trydnt\n\n1) Simon: Homeworld R1 G3 B3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\tSimon: Again, have fun!\n\tTrydnt: you too :)\n\n3) Simon: Build B1 Simon\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: so few people start with goldilocks. what is your thinking in doing so if I may ask\n\n5) Simon: Build B1 Simon\n\tSimon: Hmm, Goldilocks gives most control over when/which 3-pip pieces become available.\n\tTrydnt: surely that would be banker as you can go straight to the 3s and if you can defend them you can turn them into ships later\n\n6) Trydnt: Build G1 Trydnt\n\n7) Simon: Trade B3 Y3 Simon\n\tSimon: Banker prevents 3-pips, Goldilocks enables 3-pips :)\n\tTrydnt: but only in the mid-to-late game and at that point surely your opponent can usually fly to the 2 pip stars too and have the same advantage. banker you leave one more 3 pip piece in the bank and you can fly to them so you can control which ones your opponent can and cannot grow\n\n8) Trydnt: Discover G1 Trydnt G1 G1\n\n9) Simon: Build B1 Simon\n\n10) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G2 Trydnt\nBuild G2 G1\n\n11) Simon: Discover B1 Simon B2 B2\n\n12) Trydnt: Discover G2 Trydnt Y1 Y1\n\n13) Simon: Build B2 Simon\n\n14) Trydnt: Build G3 Trydnt\n\n15) Simon: Discover B1 Simon B2 B2a\n\n16) Trydnt: Build G3 Y1\n\n17) Simon: Build B3 Simon\n\n18) Trydnt: Trade G2 R2 Trydnt\n\n19) Simon: Trade B2 G2 Simon\n\n20) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R1 Trydnt\nBuild R1 Trydnt\n\n21) Simon: Trade B3 R3 Simon\n\n22) Trydnt: Discover G2 Y1 B3 B3\n\n23) Simon: Move R3 Simon B2\n\n24) Trydnt: Move R1 Trydnt Y1\n\n25) Simon: Move G2 Simon B2\n\n26) Trydnt: Sacrifice G2 G1\nBuild G2 B3\nBuild R2 Y1\n\n27) Simon: Build B2 B2\n\n28) Trydnt: Discover R2 Y1 B3 Bee3\n\n29) Simon: Trade B2 Y2 B2\n\n30) Trydnt: Trade G2 Y2 B3\n\n31) Simon: Build G2 B2\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Bee3\nBuild R3 Y1\n\n33) Simon: Discover G2 B2 R3 R3\n\n34) Trydnt: Move G2 B3 B2a\n\n35) Simon: Sacrifice G2 R3\nBuild R3 B2\nBuild B2 B2a\n\n36) Trydnt: Sacrifice Y2 B3\nMove R1 Y1 B2\nMove R2 Bee3 B2\nCatastrophe B2 R\n\n37) Simon: Build B3 B2\n\n38) Trydnt: Move R3 Y1 B2\n\n39) Simon: Sacrifice Y2 B2\nDiscover B3 B2 R1 R1\nMove G2 B2 R1\n\n40) Trydnt: Attack B1 B2\n\n41) Simon: Build G2 R1\n\n42) Trydnt: Sacrifice G3 Trydnt\nBuild R2 B2\nBuild R3 Bee3\nBuild R3 Trydnt\n\n43) Simon: Trade G2 Y2 R1\n\n44) Trydnt: Trade R2 Y2 Bee3\n\n45) Simon: Build Y1 Simon\n\n46) Trydnt: Trade R3 Y3 B2\n\n47) Simon: Discover Y1 Simon G2 G2\n\n48) Trydnt: Sacrifice G2 B2a\nBuild Y1 Bee3\nBuild Y3 B2\n\n49) Simon: Trade B2 R2 B2a\n\n50) Trydnt: Sacrifice Y2 Bee3\nMove R1 Trydnt Y1\nDiscover Y3 B2 R3 R3\n\n51) Simon: Build Y2 G2\n\n52) Trydnt: Move Y3 R3 B2a\n\n53) Simon: Build B2 R1\n\n54) Trydnt: Move B1 B2 Y1\n\n55) Simon: Move Y2 G2 G1\n\n56) Trydnt: Build R3 Y1\n\n57) Simon: Sacrifice Y1 G2\nDiscover B1 B2a Y1 Y1b\n\n58) Trydnt: Sacrifice R1 Y1\nAttack R2 B2a\n\n59) Simon: Build G2 R1\n\n60) Trydnt: Sacrifice Y3 B2a\nMove R3 Bee3 B2\nMove R3 B2 Simon\nMove R2 B2a Simon\n\n61) Simon: Attack R3 Simon\n\n62) Trydnt: Build R1 Simon\nCatastrophe Simon R\n\n63) Simon: Trade Y3 R3 Simon\n\n64) Trydnt: Sacrifice Y3 B2\nMove G1 G1 Simon\nMove G3 Y1 Simon\nMove G1 Trydnt Y1\n\n\tSimon: gg, enjoy first place!\n\tTrydnt: Well played! That was one hell of a game. Even once I had a material advantage you really made me work for it. I doubt I&#39;ll last that long but good to be on top for however short a time :)\n\tSimon: It&#39;s the textbook example game for the g3 ship. The problem of green home star, then trading b3 starting ship into y3, is that it cannot contest monopolies in red/green.\r\n\r\nI&#39;ll have to study this opening even deeper, and see how expensive it have been be to make an early green ship. In the game, the first 10 moves felt like a one-way street and yet it reached a disadvantage even as first-moving player.\n\tTrydnt: Yeah I see what you mean. You kind of have to bank on getting a b2 forward to a star in time to trade it for a remaining g2 but that also makes it hard to get an early y2 which can be essential to limiting your opponents growth\n\nHomeworlds Online (SDG# 35614)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.15, Ended: 2019.11.27\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld G3 R1 B3\n\n2) dlwillson: H Y3 B2 G3\n\n3) Felix: Build B1 Felix\n\n4) dlwillson: B G1 Dlwillson\n\tFelix: Hey David :) Have fun as usual. Hope you&#39;re doing well!\r\n-Daniel\n\n5) Felix: Trade B1 R1 Felix\n\tdlwillson: Hi Daniel :-)\r\n\r\nThat new guy is pretty tough, huh? Like Babamots and ... Another player whose name can&#39;t call to mind. Things are good. New job. SFS is going pretty well. We&#39;re doing our one-day intro to DevOps on Saturday. Pretty big deal for us.\n\tFelix: Indeed! Simon&#39;s doing very well lately. He&#39;s been impressing me very much with the r1 g3 b3 opening. Hence me trying to use it here with you :) I&#39;ve lost to it twice in a row now. It&#39;s unusual enough to throw off players who are used to scrambling for blue or yellow to target the opponents homeworld with catastrophe.\r\n\r\nJonathan (Babamots) is really getting good too. It&#39;s nice to see more players really pushing the skill envelope upward!\r\n\r\nSounds exciting. Congrats on the new job! I&#39;m just being a dad over here. Gearing up for our third kiddo to arrive in late November. We moved into a new house too, so lots to do there! Always busy, but always enough time for a game or two of Homeworlds :)\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) Felix: Build R2 Felix\n\n8) dlwillson: B R2 Dlwillson\n\n9) Felix: Trade R2 Y2 Felix\n\n10) dlwillson: B R2 Dlwillson\n\n11) Felix: Discover R1 Felix G2 Leaf\n\n12) dlwillson: Discover R2 Dlwillson Y1 Sol\n\n13) Felix: Build B1 Felix\n\tdlwillson: I think TeeTeeTee is the strong player whose name I couldn&#39;t think of earlier.\n\tdlwillson: You know I only recently realized that you and Daniel Sellers from the Homeworlds Game Platform project are the same guy.\r\n\r\nIt&#39;s like Superman / Clark Kent. The cape and glasses really do change the appearance.\n\tFelix: Yep, that&#39;s me! Felix is an old screen-name I&#39;ve used for years (Back when forums were the greatest thing on the internet, hehe)\r\n\r\nTeeTeeTee is the strongest player I&#39;ve played against. Never beaten him! I wonder where he&#39;s been?\n\n14) dlwillson: T R1 B1 Dlwillson\n\n15) Felix: Build Y1 Felix\n\n16) dlwillson: B R1 Dlwillson\n\n17) Felix: Move Y2 Felix Leaf\n\n18) dlwillson: D R2 Dlwillson G1 Field\n\tDraw5PlayAll: Wait... Homeworlds Game Platform project? What&#39;s this?\n\n19) Felix: Build Y1 Leaf\n\tdlwillson: https://gitlab.com/homeworlds-admirals/homeworlds-game-platform\n\n20) dlwillson: Discover R2 Sol R3 Mars\n\n21) Felix: Move B1 Felix Leaf\n\n22) dlwillson: S G3 Dlwillson\nB R2 Mars\nB R3 Dlwillson\nB R3 Field\n\n23) Felix: Build Y1 Felix\n\n24) dlwillson: S B1 Dlwillson\nT R2 Y2 Field\n\tdlwillson: \n\n25) Felix: Build R2 Leaf\n\n26) dlwillson: T R3 G3 Dlwillson\n\n27) Felix: Build R3 Leaf\n\tdlwillson: Oops! I was supposed to be heading to Leaf with the r3 this turn! Forgot to leave myself a note! :-)\n\tFelix: Feel free to undo!\n\tdlwillson: Nah nah. The current move is good. You go. I&#39;ll invade Leaf later, if the opportunity presents itself.\n\n28) dlwillson: S Y2 Field\nM R2 Mars Leaf\nC Leaf R\nM R2 Mars Leaf\n\n29) Felix: Sacrifice Y2 Leaf\nDiscover Y1 Leaf G1 Runnn\nMove B1 Leaf Runnn\n\n30) dlwillson: B G1 Dlwillson\n\tdlwillson: Mid-turn catastrophes introduce interesting tactical possibilities!\n\n31) Felix: Build Y2 Runnn\n\tFelix: Indeed! I love the chance to use that mechanic.\n\n32) dlwillson: T G1 B1 Dlwillson\n\n33) Felix: Trade Y2 R2 Runnn\n\n34) dlwillson: B R1 Field\n\n35) Felix: Build Y2 Runnn\n\n36) dlwillson: M B1 Dlwillson Field\n\n37) Felix: Build Y2 Runnn\n\n38) dlwillson: T R3 Y3 Field\n\n39) Felix: Discover Y1 Felix R2 Absorption\n\n40) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Field\nBuild R3 Leaf\nBuild R3 Dlwillson\n\n41) Felix: Build B1 Runnn\n\n42) dlwillson: B B2 Field\n\n43) Felix: Discover Y1 Absorption G1 Insertion\n\n44) dlwillson: S Y3 Field\nM R3 Field Leaf\nM R3 Leaf Felix\nM R3 Leaf Runnn\n\n45) Felix: Attack R3 Felix\n\n46) dlwillson: S R2 Leaf\nA R2 Runnn\nA Y2 Runnn\n\n47) Felix: Build Y2 Insertion\n\n48) dlwillson: S R2 Runnn\nA Y2 Runnn\nA Y1 Runnn\n\n49) Felix: Build Y3 Felix\n\n50) dlwillson: B R2 Runnn\n\n51) Felix: Build B2 Runnn\n\n52) dlwillson: A B2 Runnn\n\n53) Felix: Build B3 Felix\n\n54) dlwillson: S R2 Runnn\nA B1 Runnn\nA B1 Runnn\n\n55) Felix: Sacrifice Y2 Insertion\nDiscover B3 Felix G2 Temp\nMove B3 Temp Insertion\n\n56) dlwillson: B B3 Field\n\n57) Felix: Discover Y3 Felix Y2 Lip\n\n58) dlwillson: S B2 Runnn\nT R3 G3 Dlwillson\nT B3 Y3 Field\n\n59) Felix: Move Y3 Lip Runnn\nCatastrophe Runnn Yellow\n\n60) dlwillson: B R2 Runnn\n\n61) Felix: Discover R3 Felix G2 Outro\n\n62) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB R2 Field\nB R3 Dlwillson\n\n63) Felix: Build Y1 Insertion\n\n64) dlwillson: S B2 Field\nT R3 G3 Dlwillson\nT R3 B3 Runnn\n\tdlwillson: Something about this feels unsafe, even after counting...\n\n65) Felix: Build Y2 Felix\n\tFelix: I know the feeling, but I think you&#39;re good!\r\n\n\n66) dlwillson: B R3 Runnn\n\n67) Felix: Build R3 Outro\n\n68) dlwillson: S Y3 Field\nM R2 Field Outro\nM R2 Runnn Outro\nM B3 Runnn Outro\nC Outro R\n\n69) Felix: Build B2 Insertion\n\n70) dlwillson: B R2 Field\n\n71) Felix: Build B2 Insertion\n\n72) dlwillson: S G3 Dlwillson\nB R2 Runnn\nB R3 Dlwillson\nB R3 Field\n\n73) Felix: Move B3 Insertion Dlwillson\n\n74) dlwillson: Attack B3 Dlwillson\n\n75) Felix: Sacrifice Y2 Felix\nMove B2 Insertion Dlwillson\nMove B2 Insertion Dlwillson\nCatastrophe Dlwillson Blue\n\n76) dlwillson: Trade B3 Y3 Outro\n\tdlwillson: Uh oh...\n\n77) Felix: Build Y2 Felix\n\tFelix: I&#39;m probably pulling the trigger too early here, but oh well!\n\n78) dlwillson: B Y2 Outro\n\tdlwillson: I sure hope so! We&#39;ll know in a turn or two!\n\n79) Felix: Discover Y1 Felix Y2 Sunshine\n\n80) dlwillson: Sacrifice Y2 Outro\nMove R2 Dlwillson Insertion\nMove R3 Field Sunshine\n\n81) Felix: Sacrifice Y1 Insertion\nDiscover Y1 Insertion G2 Brink\n\tdlwillson: Hm\r\nHmm\r\nHmmm\r\n\r\nI think there&#39;s a way out of this mess, but it&#39;s not immediately obvious. A moment, sir, if you please.\r\n\r\nHmmmm\n\tFelix: Take all the time you need!\n\n82) dlwillson: S Y3 Outro\nM R3 Runnn Sunshine\nM R3 Sunshine Felix\nM R3 Sunshine Felix\n\tdlwillson: I&#39;m not at all sure this does the trick, but I hope it does. I guess I&#39;ll know in two turns!\n\n\tFelix: Shucks. So close! I had a gut feeling this was all a bad idea. I also got tunnel vision and didn&#39;t notice your obvious threat :) Well done!\n\tdlwillson: Thank you for an excellent game, as always, Mr. Sellers!\n\tFelix: Likewise! My middle name also starts with an L, actually, so perhaps I should change my username to dlsellers :P\n\tdlwillson: Great idea! :-)\n\nHomeworlds Online (SDG# 35463)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.16, Ended: 2019.10.19\nParticipants: wil (S), capi3101 (N)\nWinner: wil\n\n1) capi3101: Homeworld G1 B2 Y3\n\tcapi3101: Greetings. First game here at SDG; I&#39;m assuming you issued a general challenge for an opponent. If not, I&#39;ll leave the game. For now I&#39;ll go ahead and play...\n\n2) wil: H B3 Y2 G3\n\twil: Thanks for the challenge, have fun!\n\n3) capi3101: Build Y1 Capi3101\n\n4) wil: B G1 Wil\n\n5) capi3101: Build Y1 Capi3101\n\n6) wil: D G1 Wil G1 G1\n\tcapi3101: About had a panic attack there - accidentally hit the &quot;resign&quot; button instead of &quot;submit orders&quot;...\n\n7) capi3101: Trade Y1 B1 Capi3101\n\twil: Didn&#39;t mean to scare you so early...\n\twil: So...familiar with the game?\n\n8) wil: B G2 Wil\n\n9) capi3101: Discover Y1 Capi3101 B3 Tribulatio\n\tcapi3101: Yeah, I&#39;ve been playing this off and on over the last couple decades (for reference, I have a Martian Chess set that had the rules for IceTraders - the ancestor of Homeworlds - in it).\n\tcapi3101: I&#39;m out of practice with Homeworlds, though...don&#39;t have anyone to play it with locally.\n\twil: This is an awesome place to hone those skills\n\twil: But yes, we have to create our own challengers\n\n10) wil: T G2 Y2 Wil\n\n11) capi3101: Build B1 Capi3101\n\n12) wil: B G2 Wil\n\n13) capi3101: Trade Y3 G3 Capi3101\n\tDraw5PlayAll: You can also download a (rather weak) AI program that user &quot;ajo&quot; made at github.com/Quuxplusone/homeworlds\n\n14) wil: B G2 G1\n\tcapi3101: Hmm. Sure would like a green ship...only got one option there though.\n\n15) capi3101: Trade B1 Y1 Capi3101\n\tcapi3101: Probably a sub-optimal move there...\n\n16) wil: M Y2 Wil G1\n\twil: Ya gotta do what ya gotta do!\n\n17) capi3101: Build G2 Capi3101\n\n18) wil: S Y2 G1\nD G1 G1 Y3 Y3\nM G1 Y3 Capi3101\nC Capi3101 G\n\tcapi3101: Well, dadgummit...\n\n19) capi3101: Trade B1 G1 Capi3101\n\n20) wil: T G2 Y2 Wil\n\twil: Well, we can&#39;t have that...\n\tcapi3101: Crap...completely missed that. Well, hell&#39;s bells. Told you I was out of practice...\n\n21) capi3101: Move Y1 Tribulatio Capi3101\n\twil: We will tighten you up\n\n22) wil: M Y2 Wil G1\n\n23) capi3101: Trade Y1 R1 Capi3101\n\n24) wil: M Y2 G1 Capi3101\n\n\twil: I&#39;ll not dawdle, so we can start again..\n\tcapi3101: Ugh. Pains me...first game of this I&#39;ve played in like, a decade or so...\n\tcapi3101: You&#39;re right though - pretty sure I&#39;ve lost this one.\n\twil: Meh, losing helps mistakes you won&#39;t make again\n\twil: Challenge me anytime\n\twil: Get back on the horse...\n\nHomeworlds Online (SDG# 35617)\nStarted: 2019.10.16, Ended: 2019.10.21\nParticipants: capi3101 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G3 R1 B3\n\n2) capi3101: Homeworld G1 B2 Y3\n\tBabamots: Welcome to the site! Let me know if you need any help figuring out the move commands.\n\tcapi3101: Thanks. Looking forward to being utterly trampled...\r\n\r\nWent ahead and started another 2 games; interface seems easy enough but I&#39;ll let you know if I need help with it.\n\n3) Babamots: Build B1 Babamots\n\n4) capi3101: Build Y1 Capi3101\n\n5) Babamots: Trade B1 Y1 Babamots\n\n6) capi3101: Trade Y1 G1 Capi3101\n\n7) Babamots: Build B1 Babamots\n\n8) capi3101: Build Y1 Capi3101\n\n9) Babamots: Build B1 Babamots\n\n10) capi3101: Discover G1 Capi3101 B3 Advorsus\n\n11) Babamots: Trade B1 G1 Babamots\n\n12) capi3101: Build G2 Advorsus\n\n13) Babamots: Build G2 Babamots\n\n14) capi3101: Trade G2 Y2 Advorsus\n\n15) Babamots: Discover G2 Babamots B2 Bolarus\n\n16) capi3101: Build G2 Advorsus\n\n17) Babamots: Build G2 Bolarus\n\n18) capi3101: Move G1 Advorsus Bolarus\n\n19) Babamots: Trade G2 R2 Bolarus\n\n20) capi3101: Trade Y3 G3 Capi3101\n\tcapi3101: Yep. I screwed that up. Knew you&#39;d trade for a red as soon as I mashed the submit button...\n\n21) Babamots: Attack G1 Bolarus\n\n22) capi3101: Trade Y2 R2 Advorsus\n\tBabamots: We are playing with &quot;undo&quot; available. If you decide you didn&#39;t like your move, you can go back to the game page and hit the &quot;Undo Last Move&quot; button. This only works once, though. If you undo a move and make another move, you can&#39;t undo the second one.\n\tcapi3101: Ah. I&#39;ll keep that in mind.\n\n23) Babamots: Trade G2 Y2 Bolarus\n\n24) capi3101: Build G2 Advorsus\n\n25) Babamots: Build G2 Bolarus\n\n26) capi3101: Trade G2 Y2 Advorsus\n\n27) Babamots: Discover G2 Bolarus G3 Orion\n\n28) capi3101: Build G2 Advorsus\n\n29) Babamots: Discover G1 Babamots B2 Andoria\n\n30) capi3101: Build R1 Advorsus\n\n31) Babamots: Sacrifice G2 Orion\nBuild G2 Andoria\nBuild G3 Bolarus\n\n32) capi3101: Trade Y1 R1 Capi3101\n\tcapi3101: Saw that coming - wasn&#39;t sure how exactly you&#39;d play it out though. Couldn&#39;t think of a way to prevent it either.\r\n\r\nGot a problem now, don&#39;t I?\n\n33) Babamots: Trade G3 Y3 Bolarus\n\n34) capi3101: Discover G2 Advorsus R2 Desperata\n\tBabamots: Yeah, you have a bit of a problem. I&#39;m not sure where things went wrong either. I&#39;ll have to look back at the game archive.\n\n35) Babamots: Build G3 Bolarus\n\n36) capi3101: Build R3 Capi3101\n\n37) Babamots: Move G3 Bolarus Advorsus\n\n38) capi3101: Sacrifice G2 Advorsus\nBuild G2 Desperata\nBuild Y1 Advorsus\n\n39) Babamots: Sacrifice R2 Bolarus\nAttack R1 Advorsus\nAttack R2 Advorsus\n\n40) capi3101: Sacrifice Y2 Advorsus\nMove R3 Capi3101 Advorsus\nMove R3 Advorsus Andoria\n\n41) Babamots: Sacrifice G2 Andoria\nBuild G2 Advorsus\nBuild Y1 Babamots\n\tBabamots: Uh oh, it looks like you forgot about red sacrifices. I can sacrifice a red ship to capture your r3. Would you like to undo and pick a different move?\r\n\r\nIt&#39;s kind of a strange mechanic since a single red ship can simultaneously deter attacks in every system. &quot;A red anywhere is a red everywhere.&quot;\n\tBabamots: I got nosey and read some of your conversation in an old game with wil. I also got the pieces in the &quot;Martian Chess Set.&quot; I read the rules for Homeworlds when they came out, and liked it in theory but I couldn&#39;t find opponents. I was at LooneyCon when I heard that SDG had an active HW community, so I got in here and taught them their business ;-).\r\n\r\nI hope you love playing on here as much as I have.\n\tcapi3101: Yeah, I suppose I&#39;ll undo. Was paying attention to your double yellow and the two reds you captured not too far back...\n\tcapi3101: The game with wil wrapped up yesterday; that one was definitely an exercise in &quot;it&#39;s been far long since the last time I played&quot;...\n\tcapi3101: Not doing too much better this game...\n\n42) capi3101: Trade G3 Y3 Capi3101\n\n43) Babamots: Sacrifice G3 Advorsus\nBuild Y2 Babamots\nBuild G3 Bolarus\nBuild G3 Advorsus\n\tBabamots: I&#39;ve got checkmate in two moves if you&#39;re not careful here. Can you see the problem? I&#39;ll give you a hint if you want it.\n\tcapi3101: Let&#39;s see if I can spot it...\r\nThe sac of the Y3 in Bolarus moves the small green from Andoria and the Y2 in Advorsus to my homeworld, blowing green and leaving me with just the dinky little red ship there.\n\tcapi3101: If I grow Red at my homeworld, the sac of the Y2 at Bolarus moves your two red ships in and blows them up.\n\tcapi3101: Swapping the large ship at my homeworld for a different color seems the best move to move.\n\tcapi3101: On the other hand, that puts a fresh large green in the market.\n\tcapi3101: Hell...\n\n44) capi3101: Attack G1 Andoria\n\tcapi3101: May have only bought myself a move or two at most.\n\tBabamots: I think you made your best move just now. It&#39;ll be a bit of a chore for me to either build up enough blue to catastrophe your star or enough yellow to catastrophe your y3.\r\n\r\nMy preferred win is to invade with so many large ships that my opponent&#39;s biggest red sacrifice can&#39;t take them all, but that will never work while you have an r3.\n\n45) Babamots: Sacrifice G3 Advorsus\nBuild B1 Babamots\nBuild R2 Advorsus\nBuild G3 Advorsus\n\n46) capi3101: Trade R3 Y3 Andoria\n\tcapi3101: Running low on materiel...I have an idea of what i want to do; question is going to be whether I&#39;ve got time to pull it off.\n\n47) Babamots: Sacrifice Y2 Babamots\nMove G2 Advorsus Capi3101\nMove G3 Advorsus Capi3101\n\n48) capi3101: Attack G3 Capi3101\n\tBabamots: I&#39;m afraid you won&#39;t have enough time to get the red and yellow you need. My invasion starts on my next move.\r\n\r\nI only plan to destroy your stars. Your ships and crews will not be harmed.\n\tBabamots: Your defeated crews will, of course, be treated humanely. :-)\n\n49) Babamots: Sacrifice Y3 Bolarus\nMove G1 Bolarus Advorsus\nMove G1 Advorsus Capi3101\nCatastrophe Capi3101 G\nMove B3 Babamots Capi3101\n\tcapi3101: Hmm...\n\tcapi3101: I could let you end it all on the next turn. But let&#39;s play it out a tad.\n\n50) capi3101: Sacrifice Y3 Andoria\nMove G1 Andoria Babamots\nMove G2 Desperata Babamots\nMove G2 Desperata Babamots\nCatastrophe Babamots G\n\tcapi3101: I won&#39;t get to keep it, of course.\n\n51) Babamots: Sacrifice Y2 Bolarus\nMove B1 Babamots Capi3101\nMove B1 Babamots Capi3101\nCatastrophe Capi3101 B\n\n\tcapi3101: Not that that does me any good...\r\n\r\nWhere did I go wrong, you think? Did I move out of my home system too quickly?\n\tBabamots: You&#39;re quite right. Some people say &quot;red alert&quot; when their opponent is a move from elimination, but I usually don&#39;t. It seems more like taunting than being helpful, especially when they don&#39;t have a way out.\n\tBabamots: I&#39;ll look back at the game history and give you some analysis. Do you know how to switch to the archive view and see earlier game states?\n\tBabamots: Here&#39;s a Javascript that switches your SDG view. There are instructions for turning it into a bookmark.\r\n\r\nhttps://github.com/jpeterbaker/SDGchange\n\tBabamots: You were keeping up just fine until your 9th move. Then you spent a move on trying to be aggressive by moving a g1 to join my pair of g2s. I traded g2 for r2. This did three things:\r\n1) It defended against your invasion since you couldn&#39;t cause an advantageous catastrophe anymore.\r\n2) It created a threat since I could attack you.\r\n3) It was a developmental move that I might have made even if you hadn&#39;t tried to invade. It got me my first red ship, and you needed to get a red in response soon.\r\n\r\nOn your 10th move, you traded y3 for g3. This is a little dangerous since you have a green star in your home. It turns into a problem much later and you have to trade that g3 for r3 to avoid catastrophe. My suggestion would have been trading y1 for r1. This would have given you access to every technology at home, and you could have sacrificed the r1 to attack me if I tried to invade Advorsus.\r\n\r\nOn your 11th move you traded y2 for r2. It was important for you to get a red ship somewhere soon to dissuade me from invading Advorsus, but you traded away the only yellow ship you had in that system. That&#39;s one less system in which you can build yellow.\r\n\r\nOn your 14th move, you built g2. This set me up to do my green sacrifice and score a g3 two moves later. You could have discouraged this on your 15th move by trading a g2 for another color (I suggest yellow). Then the stash would have had an additional g2 and I couldn&#39;t have built the g3 right away. It may seem silly to build a ship only to trade it for another color, but since building y2 wasn&#39;t an option (a y1 was in the stash), trading for a y2 isn&#39;t a bad idea at all. It&#39;s common to use the most-used color (green) as a shortcut to larger pieces in other colors. I&#39;ll be doing this on my 17th and 18th moves.\r\n\r\nOn your 16th move, you trade away your only yellow at home. There&#39;s only one system where you can build yellow now.\r\n\r\nOn my 19th move, I invaded Advorsus. You had lots of ships there and you couldn&#39;t evacuate them all. You didn&#39;t have a large ship to defend them, and you didn&#39;t have a green ship there that you could use to catastrophe my large. Ideally, you would have had a second colony (like my Andoria and Bolarus) so that\r\n1) It would have been easier to build many ships without danger of overpopulation.\r\n2) If I invaded either colony, there would only be half as many ships to capture.\r\n\r\nYou do a fairly good job of responding to my invasion. You try to sacrifice away medium ships on your 19th and 20th moves. It might have been better to sacrifice the y2 to move your r2 and g2 to two (different) new systems so I could only capture smalls.\r\n\r\nAt this point, I have a good fleet on your doorstep and quite a bit of yellow. It&#39;s pretty hard to come back from that.\n\nHomeworlds Online (SDG# 35620)\nStarted: 2019.10.16, Ended: 2019.12.15\nParticipants: ts52 (S), DodoBirb (N)\nWinner: ts52\n\n1) DodoBirb: Homeworld B2 R1 G3\n\tDodoBirb: Good Luck! This game is for the Tournament\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Thanks! Good luck to you too!\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) ts52: Build G1 Ts52\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) ts52: Trade G1 R1 Ts52\n\n7) DodoBirb: Trade Y1 R1 Dodobirb\n\n8) ts52: Build R2 Ts52\n\n9) DodoBirb: Build R2 Dodobirb\n\n10) ts52: Trade R2 B2 Ts52\n\n11) DodoBirb: Trade R1 Y1 Dodobirb\n\n12) ts52: Build G1 Ts52\n\n13) DodoBirb: Build Y1 Dodobirb\n\n14) ts52: Build B1 Ts52\n\n15) DodoBirb: Trade Y1 B1 Dodobirb\n\n16) ts52: Discover B2 Ts52 G1 Kermit\n\n17) DodoBirb: Discover B1 Dodobirb G3 Greeny\n\n18) ts52: Trade B1 Y1 Ts52\n\n19) DodoBirb: Move R2 Dodobirb Greeny\n\n20) ts52: Build B1 Kermit\n\n21) DodoBirb: Build B1 Greeny\n\n22) ts52: Trade B2 Y2 Kermit\n\n23) DodoBirb: Trade B1 Y1 Greeny\n\n24) ts52: Build Y2 Kermit\n\n25) DodoBirb: Build Y2 Dodobirb\n\n26) ts52: Trade Y2 R2 Kermit\n\n27) DodoBirb: Build G1 Dodobirb\n\n28) ts52: Discover G1 Ts52 B1 Gonzo\n\n29) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n30) ts52: Build G2 Ts52\n\n31) DodoBirb: Build G2 Dodobirb\n\n32) ts52: Move Y1 Ts52 Gonzo\n\n33) DodoBirb: Move Y1 Dodobirb Bluey\n\n34) ts52: Build R1 Ts52\n\tts52: sorry, typo&#39;d\n\n35) DodoBirb: Build Y2 Bluey\n\n36) ts52: Sacrifice G2 Ts52\nBuild Y3 Gonzo\nBuild Y3 Kermit\n\n37) DodoBirb: Sacrifice Y2 Bluey\nMove Y1 Bluey Kermit\nMove Y1 Greeny Kermit\nCatastrophe Kermit Y\n\n38) ts52: Build G2 Gonzo\n\n39) DodoBirb: Build G2 Bluey\n\n40) ts52: Move Y3 Gonzo Greeny\n\n41) DodoBirb: Build Y1 Dodobirb\n\n42) ts52: Sacrifice R1 Ts52\nAttack R2 Greeny\n\n43) DodoBirb: Trade G1 R1 Bluey\n\n44) ts52: Attack B1 Greeny\n\n45) DodoBirb: Build G1 Bluey\n\n46) ts52: Sacrifice G2 Gonzo\nBuild B2 Greeny\nBuild B3 Kermit\n\n47) DodoBirb: Build Y1 Dodobirb\n\n48) ts52: Build B3 Greeny\n\n49) DodoBirb: Move Y1 Dodobirb Bluey\n\n50) ts52: Trade B3 Y3 Kermit\n\n51) DodoBirb: Build Y2 Bluey\n\n52) ts52: Build B3 Kermit\n\n53) DodoBirb: Build G2 Bluey\n\n54) ts52: Move G1 Gonzo Bluey\nCatastrophe Bluey Green\n\n55) DodoBirb: Move G2 Dodobirb Bluey\n\n56) ts52: Trade B3 R3 Greeny\n\n57) DodoBirb: Build G1 Dodobirb\n\n58) ts52: Build B3 Greeny\n\n59) DodoBirb: Build R2 Bluey\n\n60) ts52: Sacrifice Y3 Greeny\nMove B1 Greeny Dodobirb\nMove B2 Greeny Dodobirb\nMove B3 Greeny Dodobirb\nCatastrophe Dodobirb Blue\n\n61) DodoBirb: Pass\n\n62) ts52: Sacrifice Y3 Kermit\nMove R3 Greeny Dodobirb\nMove R2 Greeny Dodobirb\nMove R1 Ts52 Dodobirb\nCatastrophe Dodobirb Red\n\n\tDodoBirb: Good game!\n\tts52: Thanks. Good game!\n\nHomeworlds Online (SDG# 35616)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.16, Ended: 2019.11.3\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) wil: H Y3 B3 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\twil: Good luck, have fun\n\twil: My he prot&eacute;g&eacute; has now surpassed me...\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) wil: D G1 Wil B1 B1\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\twil: I hear you enjoy odd openings and short unis\n\twil: Trydnt n I would play all these combos,5 games a night\n\twil: I play these with Andy to keep him prepared!\n\tDraw5PlayAll: 5 games a night?\r\n11 vs 22, 11 vs 33, 22 vs 33 is already 3 of them.\n\n8) wil: B G1 Wil\n\tDraw5PlayAll: I guess no more homeworld factories, unless you also keep an R3 there (Y3 for me)...\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: Factories need not be at home...\n\twil: 13 v 22 is still microverse and there are miniverses\n\tDraw5PlayAll: Do you prefer 12 vs 12 miniverses, or 12 vs 22?\n\tDraw5PlayAll: ...or 22 vs 22?\n\n10) wil: T G1 R1 Wil\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) wil: B R1 Wil\n\n13) Draw5PlayAll: Discover R1 Draw5playall G1 Build\n\twil: I don&#39;t have a preference or a go to response..\n\twil: I haven&#39;t found anything to be unbeatable\n\n14) wil: M R1 Wil Build\n\n15) Draw5PlayAll: Attack R1 Build\n\twil: I like the zoning, commute, views, plenty of space!+\n\n16) wil: B R2 Wil\n\n17) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R1 Build G2 Construct\n\n18) wil: T R1 B1 Wil\n\n19) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n20) wil: B G1 Wil\n\n21) Draw5PlayAll: Build G2 Draw5playall\n\n22) wil: M G1 Wil Draw5playall\n\n23) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\twil: Hello, always surprised how quiet u r in games u r in\n\tDraw5PlayAll: My moods change\n\n24) wil: B G2 Draw5playall\n\n25) Draw5PlayAll: Build G3 Draw5playall\nCatastrophe Draw5playall Green\n\n26) wil: B B1 Wil\n\twil: Lol, my mood does too! when you interupt in other games\n\n27) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\tDraw5PlayAll: So who lost more in that whole shenanigans?\n\n28) wil: D B1 Wil G1 Gee1\n\twil: You tell me, count ships.\n\n29) Draw5PlayAll: Build G2 Draw5playall\n\n30) wil: B G2 Wil\n\n31) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n32) wil: S G3 Wil\nB B2 Gee1\nB B2 Gee1\nB B3 Wil\n\n33) Draw5PlayAll: Build R1 Construct\n\n34) wil: B G2 Wil\n\n35) Draw5PlayAll: Build G3 Draw5playall\n\n36) wil: M B3 Wil Build\n\twil: Let&#39;s get this party started\n\n37) Draw5PlayAll: Move G3 Draw5playall Wil\n\n38) wil: B G3 B1\n\tDraw5PlayAll: I just realized this was a ladder game not a tournament game...\n\n39) Draw5PlayAll: Sacrifice R1 Build\nAttack B1 Wil\n\twil: ?? Didn&#39;t you challenge me??\n\n40) wil: S G1 B1\nB G1 Wil\nC Wil G\n\twil: Do you play differently in tournaments and ladders?\n\n41) Draw5PlayAll: Move G3 Draw5playall Wil\n\tDraw5PlayAll: Oh, I was just thinking about how horribly I was doing in the tournament, expecting to lose this game... and then I realized that it&#39;s not for the tournament...\r\n\r\n...and now I *think* I have mate in 4.\n\twil: Lol, I moved.out my 3?\n\n\twil: Ya got this\n\twil: Gg\n\tDraw5PlayAll: Now on to Simon or Trydnt\n\nHomeworlds Online (SDG# 35618)\nStarted: 2019.10.17, Ended: 2019.12.29\nParticipants: capi3101 (S), Laurie_Menke (N)\nWinner: capi3101\n\n1) Laurie_Menke: Homeworld R1 B3 G3\n\tLaurie_Menke: Hi there! Glad you could make it! Have fun, and feel free to ask questions if you have any.  :)\n\n2) capi3101: Homeworld G1 B2 Y3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tcapi3101: Will do, thanks. Looking forward to getting trounced...\n\tLaurie_Menke: LOL! We&#39;ll see... I&#39;m only about a mid-level player.  :)\n\n4) capi3101: Build Y1 Capi3101\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) capi3101: Trade Y1 B1 Capi3101\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) capi3101: Build Y1 Capi3101\n\n9) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n10) capi3101: Build B1 Capi3101\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) capi3101: Trade B1 R1 Capi3101\n\n13) Laurie_Menke: Build R2 Laurie_menke\n\n14) capi3101: Build B1 Capi3101\n\n15) Laurie_Menke: Discover R2 Laurie_menke B2 Blue\n\n16) capi3101: Build R2 Capi3101\n\n17) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Oops! Sorry for timing out... life got away from me a bit!\n\n18) capi3101: Discover B1 Capi3101 G3 Viridi\n\tcapi3101: No problem; I figured it was something like that. If you need to stop the game, just say so.\n\n19) Laurie_Menke: Move G1 Laurie_menke Blue\n\tLaurie_Menke: Nope... I&#39;m in! But thanks for the understanding!  :)\n\n20) capi3101: Move R2 Capi3101 Viridi\n\n21) Laurie_Menke: Build G2 Blue\n\n22) capi3101: Move Y1 Capi3101 Viridi\n\n23) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Blue\nBuild G3 Laurie_menke\n\tLaurie_Menke: ::sigh::  My apologies again. Hopefully for the last time.\n\n24) capi3101: Trade Y3 G3 Capi3101\n\n25) Laurie_Menke: Trade G2 Y2 Blue\n\n26) capi3101: Sacrifice G3 Capi3101\nBuild B1 Viridi\nBuild B2 Viridi\nBuild B3 Capi3101\n\n27) Laurie_Menke: Sacrifice Y2 Blue\nMove G2 Blue Viridi\nMove G1 Blue Viridi\n\n28) capi3101: Sacrifice R2 Viridi\nAttack G1 Viridi\nAttack G2 Viridi\n\n29) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\tcapi3101: Hmm...I have a guess as to what&#39;s coming next...\n\tLaurie_Menke: You do? Because I sure don&#39;t! I screwed up and didn&#39;t see that coming!\n\n30) capi3101: Trade B3 G3 Capi3101\n\n31) Laurie_Menke: Move G1 Yellow Viridi\nCatastrophe Viridi G\n\n32) capi3101: Build G1 Capi3101\n\tLaurie_Menke: Whew... that puts me back in the running... I was sweating there for a bit!  :)\n\tcapi3101: Ah. ~That&#39;s~ what I saw coming. Too bad I did remember to do something about it when I could&#39;ve...\n\n33) Laurie_Menke: Build Y1 Laurie_menke\n\tcapi3101: *didn&#39;t. I didn&#39;t remember to do something...\n\tLaurie_Menke: Alas. Sorry.  :/\n\n34) capi3101: Trade G3 Y3 Capi3101\n\n35) Laurie_Menke: Build R2 Laurie_menke\n\n36) capi3101: Build B1 Capi3101\n\n37) Laurie_Menke: Trade R2 B2 Laurie_menke\n\n38) capi3101: Trade Y3 G3 Capi3101\n\n39) Laurie_Menke: Move B2 Laurie_menke Blue\n\n40) capi3101: Build R2 Capi3101\n\n41) Laurie_Menke: Move Y1 Laurie_menke Blue\n\n42) capi3101: T B1 Y1 Capi3101\n\n43) Laurie_Menke: Discover B2 Blue Y3 Yellow\n\n44) capi3101: Discover R2 Capi3101 G3 Aleph\n\n45) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild B1 Yellow\nBuild Y2 Laurie_menke\n\n46) capi3101: Move B1 Capi3101 Aleph\n\n47) Laurie_Menke: Trade B1 G1 Yellow\n\n48) capi3101: Sacrifice G3 Capi3101\nBuild R2 Aleph\nBuild R3 Capi3101\nBuild Y2 Capi3101\n\n49) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Blue\nBuild Y3 Laurie_menke\nBuild G2 Yellow\n\tLaurie_Menke: Nice move!\n\n50) capi3101: D G1 Capi3101 Y3 Bet\n\tcapi3101: Likewise. This game got interesting all of a sudden...\n\n51) Laurie_Menke: Move R2 Blue Bet\n\n52) capi3101: Sacrifice Y1 Capi3101\nMove R2 Aleph Blue\n\n53) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R2 Blue\n\n54) capi3101: Discover G1 Bet Y1 Gimel\n\n55) Laurie_Menke: Sacrifice G1 Yellow\nBuild R1 Bet\n\n56) capi3101: Discover R1 Capi3101 G3 Dalet\n\n57) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove R2 Blue Bet\nMove R2 Bet Capi3101\nMove R2 Bet Capi3101\n\n58) capi3101: S R3 Capi3101\nA R2 Capi3101\nA R2 Capi3101\nP\n\n59) Laurie_Menke: Sacrifice G2 Yellow\nBuild R3 Bet\nBuild Y3 Laurie_menke\n\tLaurie_Menke: Wow! Nice save! I did not see that coming... I thought I had you. Well done!\n\n60) capi3101: Move R2 Capi3101 Yellow\n\tcapi3101: You&#39;ve still got me though, so don&#39;t let the play clock run out this time.\n\n61) Laurie_Menke: Sacrifice R1 Bet\nAttack R2 Yellow\n\tcapi3101: Well...maybe not. It doesn&#39;t look good though. \n\n62) capi3101: Build R1 Aleph\n\tLaurie_Menke: Sorry to keep you waiting again. The holidays took more of my time than expected, but I&#39;m back now!\n\n63) Laurie_Menke: Move R3 Bet Capi3101\n\tLaurie_Menke: Wow! I don&#39;t know why I didn&#39;t recognize before that you don&#39;t have a large in your homeworld!\n\n64) capi3101: Build R3 Capi3101\n\n\tcapi3101: Time to go ahead and save face. Count it as a win for yourself.\n\tLaurie_Menke: Thanks for the challenge, capi3101! I hope you&#39;ve had fun!  :)\n\nHomeworlds Online (SDG# 35374)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.10.17, Ended: 2019.10.22\nParticipants: wil (S), rho0 (N)\nWinner: wil\n\n1) rho0: Homeworld R1 B2 G3\n\n2) wil: H Y3 B1 G3\n\n3) rho0: Build G1 Rho0\n\n4) wil: B G1 Wil\n\n5) rho0: Build G1 Rho0\n\n6) wil: B G2 Wil\n\n7) rho0: Trade G1 Y1 Rho0\n\twil: I&#39;ll take a drone upgrade\n\n8) wil: T G1 R1 Wil\n\n9) rho0: Trade G1 B1 Rho0\n\n10) wil: B R1 Wil\n\n11) rho0: Build B1 Rho0\n\n12) wil: T G2 B2 Wil\n\n13) rho0: Build Y1 Rho0\n\n14) wil: D B2 Wil G2 G2\n\n15) rho0: Discover B1 Rho0 Y3 Beta\n\n16) wil: M R1 Wil G2\n\n17) rho0: Build B2 Rho0\n\n18) wil: B B3 G2\n\n19) rho0: Sacrifice G3 Rho0\nBuild B3 Beta\nBuild B3 Beta\nBuild Y1 Rho0\n\twil: Getting interesting... No two games ever alike\n\n20) wil: T B2 Y2 G2\n\n21) rho0: Sacrifice B1 Rho0\nTrade B3 G3 Beta\n\twil: Noice\n\n22) wil: B B1 G2\n\n23) rho0: Move G3 Beta Rho0\n\n24) wil: T B3 Y3 G2\n\trho0: thanks\n\n25) rho0: Discover Y1 Rho0 G3 Gamma\n\n26) wil: M Y2 G2 Gamma\n\n27) rho0: Trade B3 R3 Beta\n\n28) wil: B R2 G2\n\n29) rho0: Build G1 Rho0\n\n30) wil: M R2 G2 Gamma\n\n31) rho0: Discover Y1 Gamma R2 Delta\n\n32) wil: B Y2 G2\n\n33) rho0: Sacrifice G1 Rho0\nBuild Y2 Delta\n\n34) wil: S G3 Wil\nB R2 G2\nB R3 Gamma\nB R3 Wil\n\n35) rho0: Sacrifice Y1 Delta\nDiscover Y2 Delta B3 Epsilon\n\n36) wil: T R3 G3 Wil\n\n37) rho0: Trade B2 G2 Rho0\n\n38) wil: D R2 Gamma Y1 Y1\n\n39) rho0: Build G1 Rho0\n\n40) wil: B R2 Gamma\n\n41) rho0: Discover Y1 Rho0 R3 Alpha\n\n42) wil: M R1 G2 Beta\n\n43) rho0: Sacrifice Y2 Epsilon\nDiscover R3 Beta Y2 Phi\nMove B1 Beta Phi\n\n44) wil: B B2 G2\n\n\twil: Did you see something I didn&#39;t?\n\trho0: I was horribly underdeveloped. I don&#39;t like quitting before the end, but I recognized that I had already lost. I&#39;d definitely be down for a rematch, though. You&#39;re definitely one of the most difficult people that I have faced so far.\n\twil: Challenge me anytime...I enjoy the game..\n\twil: I tend to play things out... Hoping for a mistake!\n\twil: Ah, even when I think I&#39;ve  lost due to my errors\n\trho0: Yeah usually i would play it out because i dont like robbing people of their victories and learning how to come back from a defeat is helpful, but i got excited and wanted to start a new game \n\twil: No worries, for future ref I don&#39;t mind multiple games\n\nHomeworlds Online (SDG# 35563)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.19, Ended: 2019.10.23\nParticipants: rho0 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) rho0: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) rho0: Build G1 Rho0\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) rho0: Trade G1 B1 Rho0\n\n7) Trydnt: Build B2 Trydnt\n\n8) rho0: Build G1 Rho0\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) rho0: Build G1 Rho0\n\n11) Trydnt: Build Y1 Trydnt\n\n12) rho0: Build B1 Rho0\n\n13) Trydnt: Discover Y1 Trydnt G3 G3\n\n14) rho0: Trade B1 R1 Rho0\n\n15) Trydnt: Build Y2 G3\n\n16) rho0: Sacrifice G1 Rho0\nBuild R1 Rho0\n\n17) Trydnt: Build Y2 Trydnt\n\n18) rho0: Trade G3 Y3 Rho0\n\n19) Trydnt: Discover Y2 G3 G2 G2\n\trho0: Haha what time zone are you in, it&#39;s like 5 AM here and you have been responding since like 3.\n\n20) rho0: Move R1 Rho0 G2\n\tTrydnt: GMT\n\n21) Trydnt: Build Y2 G2\n\n22) rho0: Build Y3 Rho0\n\n23) Trydnt: Sacrifice Y2 Trydnt\nMove Y2 G2 Rho0\nMove Y2 G2 Rho0\nCatastrophe Rho0 Y\n\n24) rho0: Build B1 Rho0\n\n25) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y2 G3\nBuild Y2 Trydnt\n\n26) rho0: Build R1 G2\n\n27) Trydnt: Sacrifice Y2 G3\nMove Y2 G3 G2\nMove Y2 G2 Rho0\n\n\trho0: Well played\n\tTrydnt: you too\n\nHomeworlds Online (SDG# 35590)\nVariants: &quot;Hard time&quot;\nStarted: 2019.10.19, Ended: 2019.10.27\nParticipants: dlwillson (S), rho0 (N)\nWinner: dlwillson\n\n1) rho0: Homeworld B1 Y2 G3\n\n2) dlwillson: H Y3 B2 G3\n\n3) rho0: Build G1 Rho0\n\tdlwillson: Good luck and have fun!\n\n4) dlwillson: B G1 Dlwillson\n\trho0: Same to you, friend!\n\n5) rho0: Trade G1 B1 Rho0\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) rho0: Build B2 Rho0\n\n8) dlwillson: B B2 Dlwillson\n\n9) rho0: Trade B1 Y1 Rho0\n\n10) dlwillson: D B1 Dlwillson G1 Field\n\n11) rho0: Build Y1 Rho0\n\n12) dlwillson: B B1 Dlwillson\n\n13) rho0: Build B3 Rho0\n\n14) dlwillson: Build B3 Field\n\n15) rho0: Discover B3 Rho0 B3 Beta\n\n16) dlwillson: T B2 Y2 Dlwillson\n\n17) rho0: Trade B3 R3 Beta\n\n18) dlwillson: T B3 R3 Field\n\n19) rho0: Move Y1 Rho0 Beta\n\n20) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Dlwillson\n\n21) rho0: Sacrifice G3 Rho0\nBuild Y1 Beta\nBuild Y2 Beta\nBuild Y3 Rho0\n\n22) dlwillson: Sacrifice B2 Field\nTrade B3 Y3 Field\nTrade B3 G3 Dlwillson\n\n23) rho0: Trade Y1 G1 Beta\n\n24) dlwillson: Sacrifice Y2 Dlwillson\nMove Y3 Field Beta\nMove Y3 Beta Rho0\nCatastrophe Rho0 Y\n\n25) rho0: Sacrifice Y2 Beta\nMove R3 Beta Rho0\nMove R3 Rho0 Dlwillson\n\n26) dlwillson: S R3 Field\nA R3 Dlwillson\nPass\nPass\n\n27) rho0: Build Y1 Beta\n\n28) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Dlwillson\n\n29) rho0: Move Y1 Beta Rho0\n\n30) dlwillson: T B3 Y3 Dlwillson\n\n31) rho0: Build G1 Beta\n\n32) dlwillson: S Y3 Dlwillson\nM B3 Field Beta\nM B3 Beta Rho0\nD B2 Field B3 Sky\n\n33) rho0: Sacrifice Y1 Beta\nMove G1 Beta Rho0\n\n34) dlwillson: S R3 Dlwillson\nA B2 Rho0\nA G1 Rho0\nA Y1 Rho0\n\tdlwillson: Good game! Thank you!\n\trho0: Yeah we will have to get a rematch going soom\n\n\nHomeworlds Online (SDG# 35589)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.20, Ended: 2020.9.5\nParticipants: maxlfusion (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) maxlfusion: Homeworld B3 G2 Y3\n\n3) wil: B G1 Wil\n\n4) maxlfusion: Build Y1 Maxlfusion\n\twil: Rainy Sunday morning, perfect game time!\n\tmaxlfusion: yeah I have a slow sunday right as well :)\n\n5) wil: B G1 Wil\n\n6) maxlfusion: Trade Y1 G1 Maxlfusion\n\twil: Night? I&#39;m near DC, you.\n\n7) wil: T G1 B1 Wil\n\tmaxlfusion: sorry I meant slow sunday right now as well\r\n\r\nI&#39;m from Detroit area\n\n8) maxlfusion: Build Y1 Maxlfusion\n\twil: Ah, lol.  Good luck, have fun!  Been playing long?\n\tmaxlfusion: To be honest it&#39;s been quite some time since I played last for some reason this morning I had a craving for Homeworlds\n\n9) wil: B B1 Wil\n\n10) maxlfusion: Discover Y1 Maxlfusion G1 Tinytree\n\n11) wil: T G1 R1 Wil\n\n12) maxlfusion: Build Y1 Tinytree\n\n13) wil: D B1 Wil G3 G3\n\n14) maxlfusion: Trade G1 R1 Maxlfusion\n\n15) wil: B B2 Wil\n\n16) maxlfusion: Move Y1 Tinytree G3\n\twil: The game is a constant challenge for me..\n\n17) wil: B B2 G3\n\tmaxlfusion: it&#39;s a really unique game my only complaint is I don&#39;t know anyone who plays anymore so I have to come online to find a match... I&#39;m super pleased the super duper games has it but I miss being able to play it with people \n\twil: Yeah, I&#39;ve had to create my own live competition\r\n\r\n\n\n18) maxlfusion: Build Y1 Maxlfusion\n\n19) wil: D B1 Wil Y3 Y3\n\n20) maxlfusion: Build Y2 Tinytree\n\n21) wil: T B2 R2 G3\n\n22) maxlfusion: Build Y2 G3\n\n23) wil: A Y2 G3\n\n24) maxlfusion: Trade Y1 G1 Maxlfusion\n\n25) wil: A Y1 G3\n\n26) maxlfusion: Move Y2 Tinytree Y3\n\n27) wil: D B1 Y3 Y1 Y1\n\n28) maxlfusion: Build Y3 Maxlfusion\n\n29) wil: B B2 G3\n\n30) maxlfusion: Build G1 Maxlfusion\n\n31) wil: S G3 Wil\nB B2 G3\nB B3 Y1\nB B3 Wil\n\n32) maxlfusion: Move G1 Maxlfusion Tinytree\n\n33) wil: T B3 G3 Y1\n\n34) maxlfusion: Trade Y3 B3 Maxlfusion\n\n35) wil: T B3 G3 Wil\n\n36) maxlfusion: Build Y3 Tinytree\n\n37) wil: B B3 Y1\n\n38) maxlfusion: Build R1 Maxlfusion\n\n39) wil: T B3 R3 Y1\n\n40) maxlfusion: Move R1 Maxlfusion Tinytree\n\n41) wil: M G3 Y1 Y3\n\n42) maxlfusion: Build R2 Maxlfusion\n\n43) wil: B G2 Wil\n\n44) maxlfusion: Move B3 Maxlfusion Tinytree\n\n45) wil: S G2 Wil\nB G2 Wil\nB B3 Y1\n\n\nHomeworlds Online (SDG# 35627)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.20, Ended: 2019.12.5\nParticipants: Trydnt (S), maxlfusion (N)\nWinner: Trydnt\n\n1) maxlfusion: Homeworld B2 G1 Y3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) maxlfusion: Build Y1 Maxlfusion\n\n4) Trydnt: Build G1 Trydnt\n\n5) maxlfusion: Trade Y1 G1 Maxlfusion\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) maxlfusion: Build Y1 Maxlfusion\n\n8) Trydnt: Build B1 Trydnt\n\n9) maxlfusion: Build Y1 Maxlfusion\n\n10) Trydnt: Trade B1 Y1 Trydnt\n\n11) maxlfusion: Discover Y1 Maxlfusion G3 G3\n\n12) Trydnt: Build Y2 Trydnt\n\n13) maxlfusion: Trade G1 B1 Maxlfusion\n\n14) Trydnt: Discover Y2 Trydnt G1 G1\n\n15) maxlfusion: Build Y2 G3\n\n16) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n17) maxlfusion: Trade Y1 R1 Maxlfusion\n\n18) Trydnt: Build G2 Trydnt\n\n19) maxlfusion: Build R1 Maxlfusion\n\n20) Trydnt: Trade G2 Y2 Trydnt\n\n21) maxlfusion: Move R1 Maxlfusion G3\n\n22) Trydnt: Build G2 Trydnt\n\n23) maxlfusion: Move Y2 G3 G1\n\n24) Trydnt: Move Y2 G1 G3\n\n25) maxlfusion: Move Y2 G1 G3\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 G3\nBuild Y3 Gee1\nCatastrophe G3 Y\n\n27) maxlfusion: Trade Y3 G3 Maxlfusion\n\n28) Trydnt: Build G1 Trydnt\n\n29) maxlfusion: Trade R1 Y1 Maxlfusion\n\n30) Trydnt: Trade G1 R1 Trydnt\n\n31) maxlfusion: Build R1 G3\n\n32) Trydnt: Move R1 Trydnt Gee1\n\n\nHomeworlds Online (SDG# 35630)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.20, Ended: 2019.12.19\nParticipants: Trydnt (S), maxlfusion (N)\nWinner: Trydnt\n\n1) maxlfusion: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) maxlfusion: Build G1 Maxlfusion\n\n4) Trydnt: Build G1 Trydnt\n\n5) maxlfusion: Trade G1 R1 Maxlfusion\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) maxlfusion: Build G1 Maxlfusion\n\n8) Trydnt: Build Y1 Trydnt\n\n9) maxlfusion: Discover G1 Maxlfusion Y3 Y3\n\n10) Trydnt: Build Y2 Trydnt\n\n11) maxlfusion: Build G1 Maxlfusion\n\n12) Trydnt: Discover Y1 Trydnt B1 B1\n\n13) maxlfusion: Build R1 Maxlfusion\n\n14) Trydnt: Build Y2 Trydnt\n\n15) maxlfusion: Move R1 Maxlfusion Y3\n\n16) Trydnt: Discover Y2 Trydnt B1 Bee1\n\n17) maxlfusion: Build R1 Y3\n\n18) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B1\nBuild Y3 Trydnt\nBuild Y3 Bee1\n\n19) maxlfusion: Build R2 Y3\n\n20) Trydnt: Trade Y3 R3 Bee1\n\n21) maxlfusion: Trade R1 B1 Maxlfusion\n\n22) Trydnt: Trade Y2 G2 Trydnt\n\n23) maxlfusion: Move B1 Maxlfusion Y3\n\n24) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 Bee1\nBuild Y3 B1\n\n25) maxlfusion: Move R2 Y3 Maxlfusion\n\n26) Trydnt: Move Y3 B1 Y3\n\n27) maxlfusion: Build G1 Y3\n\n28) Trydnt: Trade Y2 G2 Bee1\n\n29) maxlfusion: Discover G1 Y3 R2 R2\n\n30) Trydnt: Move Y2 B1 R2\n\n\nHomeworlds Online (SDG# 35632)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2019.10.20, Ended: 2019.11.5\nParticipants: maxlfusion (S), rho0 (N)\nWinner: rho0\n\n1) rho0: Homeworld Y2 B3 G3\n\n2) maxlfusion: Homeworld R3 B2 G3\n\n3) rho0: Build G1 Rho0\n\n4) maxlfusion: Build G1 Maxlfusion\n\n5) rho0: Trade G1 Y1 Rho0\n\n6) maxlfusion: Trade G1 Y1 Maxlfusion\n\n7) rho0: Build G1 Rho0\n\n8) maxlfusion: Build G1 Maxlfusion\n\n9) rho0: Trade G1 B1 Rho0\n\n10) maxlfusion: Trade G1 B1 Maxlfusion\n\n11) rho0: Build G1 Rho0\n\n12) maxlfusion: Build G1 Maxlfusion\n\n13) rho0: Discover G1 Rho0 R1 Beta\n\n14) maxlfusion: Discover G1 Maxlfusion R1 Alpha\n\n15) rho0: Build B1 Rho0\n\n16) maxlfusion: Build Y1 Maxlfusion\n\n17) rho0: Build Y2 Rho0\n\n18) maxlfusion: Move Y1 Maxlfusion Alpha\n\n19) rho0: Move B1 Rho0 Beta\n\n20) maxlfusion: Move B1 Maxlfusion Alpha\n\n21) rho0: Move Y2 Rho0 Alpha\n\n22) maxlfusion: Build Y2 Maxlfusion\n\n23) rho0: Attack Y1 Alpha\n\n24) maxlfusion: Sacrifice Y1 Maxlfusion\nMove B1 Alpha Rho0\n\n25) rho0: Trade B1 R1 Rho0\n\n26) maxlfusion: Sacrifice G1 Alpha\nBuild B1 Rho0\n\n27) rho0: Sacrifice Y1 Alpha\nDiscover G1 Beta Y3 Gamma\n\n28) maxlfusion: Build G1 Maxlfusion\n\n29) rho0: Attack B1 Rho0\n\n30) maxlfusion: Sacrifice G1 Maxlfusion\nBuild B2 Rho0\n\n31) rho0: Move B1 Rho0 Alpha\n\n32) maxlfusion: Sacrifice G3 Maxlfusion\nBuild B2 Rho0\nBuild B3 Rho0\nBuild Y1 Maxlfusion\n\n33) rho0: Move Y1 Rho0 Beta\nCatastrophe Rho0 B\n\n34) maxlfusion: Trade Y1 G1 Maxlfusion\n\n35) rho0: Build R2 Rho0\n\n\nHomeworlds Online (SDG# 35629)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.20, Ended: 2019.10.26\nParticipants: wil (S), capi3101 (N)\nWinner: wil\n\n1) capi3101: Homeworld G1 B2 Y3\n\tcapi3101: Eh, what the hell...I obviously need practice...\n\n2) wil: H Y3 B1 G3\n\n3) capi3101: Build Y1 Capi3101\n\n4) wil: B G1 Wil\n\n5) capi3101: Trade Y1 R1 Capi3101\n\twil: I&#39;ll see if I can&#39;t teach another lesson! GL\n\n6) wil: B G1 Wil\n\n7) capi3101: Build Y1 Capi3101\n\twil: Don&#39;t let anyone monopolize an economy...\n\n8) wil: D G1 Wil B2 B2\n\n9) capi3101: Trade Y3 G3 Capi3101\n\n10) wil: T G1 B1 Wil\n\n11) capi3101: Build Y1 Capi3101\n\n12) wil: B B1 Wil\n\n13) capi3101: Trade Y1 G1 Capi3101\n\twil: Ya made me change plan, but I continued same scheme\n\n14) wil: D B1 Wil Y2 Y2\n\n15) capi3101: Trade G3 B3 Capi3101\n\n16) wil: S G3 Wil\nB B2 Y2\nB B3 Y2\nB B3 Wil\n\n17) capi3101: Build G2 Capi3101\n\n18) wil: S B2 Y2\nT B3 Y3 Y2\nT B3 G3 Wil\n\n19) capi3101: Discover G2 Capi3101 B3 Quiescat\n\n20) wil: B G2 Wil\n\n21) capi3101: Build Y1 Capi3101\n\n22) wil: S G3 Wil\nB G2 B2\nB G3 Wil\nB G3 Wil\n\n23) capi3101: Build G3 Quiescat\n\n24) wil: S Y3 Y2\nM G3 Wil B2\nM G1 B2 Quiescat\nM G2 B2 Quiescat\nC Quiescat G\n\tcapi3101: How attached are you to that big yellow?\n\n25) capi3101: Build B2 Capi3101\n\n26) wil: S G3 B2\nB B2 Wil\nB B3 Y2\nB B3 Y2\n\twil: R u kidding? It was her plan all along...\n\tcapi3101: Well, when you gamble, sometimes you lose. Dammit...\n\n27) capi3101: Discover B2 Capi3101 G3 Morietur\n\twil: She will gladly sacrifice 3-2 lead for 2-1, very time!\n\n28) wil: Sacrifice B2 Wil\nT B3 Y3 Y2\nT B3 G3 Y2\n\n29) capi3101: Move Y1 Capi3101 Morietur\n\n30) wil: S G2 Wil\nB B2 Y2\nB B3 Wil\n\twil: The blue monopoly creates a short term queen factory.\n\n31) capi3101: Discover G1 Capi3101 B3 Mea\n\n32) wil: T B1 R1 Wil\n\n33) capi3101: Trade B3 Y3 Capi3101\n\n34) wil: T B1 R1 Y2\n\tcapi3101: Damnation.\n\n35) capi3101: Build G1 Mea\n\n36) wil: B R2 Y2\n\twil: A country run on renewable resources!\n\n37) capi3101: Build R2 Capi3101\n\n38) wil: M R2 Y2 Mea\n\n39) capi3101: Build Y1 Morietur\n\n40) wil: B G2 Wil\n\twil: Grass is always greener, I like the rainforest\n\n41) capi3101: Discover Y1 Morietur Y2 Adhaesit\n\n42) wil: A G1 Mea\n\twil: Out sneeking sneeky double agent counterspy plot twists\n\n43) capi3101: Build Y2 Capi3101\n\twil: Oh phooey, nice move\n\tcapi3101: Thanks. I&#39;d like to think I&#39;m learning a few things...\n\n44) wil: A G1 Mea\n\n45) capi3101: Build B1 Morietur\n\n46) wil: S G3 Wil\nB G2 Mea\nB G2 Wil\nB G3 Wil\n\n47) capi3101: Move B1 Morietur Adhaesit\n\n48) wil: M G2 Wil Adhaesit\n\n49) capi3101: Move B1 Adhaesit Wil\n\n50) wil: M B3 Wil Adhaesit\n\tcapi3101: Ugh...this is gonna suck...\n\n51) capi3101: Move Y1 Adhaesit Morietur\n\n52) wil: M Y3 Y2 Mea\n\n53) capi3101: Trade Y3 B3 Capi3101\n\n54) wil: S G3 Wil\nB G3 Wil\nB Y3 Mea\nB B1 Y2\n\twil: Ah, that was the move you had before..\n\n55) capi3101: Sacrifice R1 Capi3101\nAttack R1 Wil\n\tcapi3101: Yep. Saw it too late.\n\tcapi3101: And now I&#39;m in trouble.\n\tcapi3101: Again.\n\tcapi3101: You&#39;ve got mate in three moves if I&#39;m not mistaken. I&#39;ll see if I can&#39;t get out of it but I think you&#39;ve about got this one wrapped up.\n\n56) wil: D B1 Y2 R1 R1\n\n\twil: Thx I needed that\n\tcapi3101: So I found Looney&#39;s Pyramid Arcade documentation yesterday...read through the section about Homeworlds about a doomsday machine - and it looks like you&#39;ve got one set up.\n\tcapi3101: So, I&#39;ll not drag this out after all...\n\tcapi3101: ...and promise to keep playing.\n\twil: Yes,the machine is in place.  Gg, challenge anytime\n\nHomeworlds Online (SDG# 35634)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.20, Ended: 2019.10.23\nParticipants: capi3101 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tcapi3101: Howdy. I&#39;m in need of some practice; looking forward to getting beaten...\n\n2) capi3101: Homeworld G1 B2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) capi3101: Build Y1 Capi3101\n\n5) Trydnt: Build G1 Trydnt\n\n6) capi3101: Trade Y1 R1 Capi3101\n\n7) Trydnt: Discover G1 Trydnt Y3 Y3\n\n8) capi3101: Build Y1 Capi3101\n\n9) Trydnt: Build G2 Trydnt\n\n10) capi3101: Trade Y3 G3 Capi3101\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y3\nBuild G2 Y3\nBuild G3 Trydnt\n\n12) capi3101: Build R1 Capi3101\n\n13) Trydnt: Trade G2 R2 Trydnt\n\n14) capi3101: Discover R1 Capi3101 B3 Cinefactus\n\n15) Trydnt: Build G2 Trydnt\n\n16) capi3101: Build G3 Capi3101\n\n17) Trydnt: Move G1 Y3 Capi3101\nCatastrophe Capi3101 G\n\n\tcapi3101: Well, that was stupid of me, wasn&#146;t it?\n\tTrydnt: easy to forget about the mini-verse\n\tTrydnt: the microverse can be even more mind bending\n\nHomeworlds Online (SDG# 35635)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2019.10.20, Ended: 2019.11.5\nParticipants: rho0 (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld G1 B2 Y3\n\tcapi3101: Greetings. I&#39;m a newbie to this site; looking forward to getting in some practice.\n\n2) rho0: Homeworld R3 G2 B3\n\n3) capi3101: Build Y1 Capi3101\n\trho0: I just made an account like 2 days ago, so I&#39;m new as well. Good luck!\n\tcapi3101: Likewise.\n\n4) rho0: Build B1 Rho0\n\n5) capi3101: Build Y1 Capi3101\n\n6) rho0: Build B1 Rho0\n\n7) capi3101: Trade Y1 R1 Capi3101\n\n8) rho0: Trade B1 Y1 Rho0\n\n9) capi3101: Build R1 Capi3101\n\n10) rho0: Trade B1 G1 Rho0\n\n11) capi3101: Trade R1 G1 Capi3101\n\n12) rho0: Build G2 Rho0\n\n13) capi3101: Build G2 Capi3101\n\n14) rho0: Discover G2 Rho0 R1 Alpha\n\n15) capi3101: Trade G2 B2 Capi3101\n\n16) rho0: Discover G1 Rho0 B1 Bravo\n\tcapi3101: Are you going with Greek or NATO phonetic alphabet (i.e. is the next system going to be Beta or Bravo)? Asking so I can keep things consistent.\n\trho0: NATO. Haha no one ever tries to use the same convention as me so its usually just a mess once we really get started.\n\tcapi3101: Okay, cool - I&#39;ll follow suit.\n\trho0: Thanks, friend.\n\n17) capi3101: Build B1 Capi3101\n\n18) rho0: Build B1 Rho0\n\n19) capi3101: Discover B2 Capi3101 G3 Charlie\n\n20) rho0: Sacrifice G2 Alpha\nBuild Y1 Rho0\nBuild Y2 Rho0\n\n21) capi3101: Build Y2 Capi3101\n\n22) rho0: Build G2 Bravo\n\n23) capi3101: Build B2 Charlie\n\n24) rho0: Move B1 Rho0 Bravo\n\n25) capi3101: Move Y2 Capi3101 Charlie\n\n26) rho0: Move Y1 Rho0 Bravo\n\n27) capi3101: Move B2 Charlie Bravo\n\n28) rho0: Discover B1 Bravo Y3 Delta\n\n29) capi3101: Sacrifice R1 Capi3101\nAttack G2 Bravo\n\n30) rho0: Trade B3 G3 Rho0\n\n31) capi3101: Build B3 Charlie\n\n32) rho0: Build G2 Bravo\n\n33) capi3101: Trade G2 R2 Bravo\n\n34) rho0: Move G2 Bravo Delta\n\n35) capi3101: Sacrifice R2 Bravo\nAttack G1 Bravo\nAttack Y1 Bravo\n\n36) rho0: Build B3 Delta\n\n37) capi3101: Trade B2 G2 Bravo\n\n38) rho0: Sacrifice B1 Delta\nTrade G3 R3 Rho0\n\n39) capi3101: Trade G1 R1 Capi3101\n\n40) rho0: Build B1 Delta\n\n41) capi3101: Move B1 Capi3101 Delta\n\n42) rho0: Move Y1 Rho0 Bravo\n\n43) capi3101: Move Y1 Capi3101 Charlie\n\n44) rho0: Discover B1 Delta R2 Echo\n\n45) capi3101: Discover Y1 Charlie R1 Foxtrot\n\n46) rho0: Build G1 Delta\n\tcapi3101: I wish this interface did star-towing. Don&#39;t you?\n\trho0: what&#39;s star-towing?\n\n47) capi3101: Sacrifice B2 Charlie\nTrade Y1 R1 Foxtrot\nTrade G2 R2 Bravo\n\tcapi3101: It&#39;s what Andy Looney calls it when you move around stars so that they&#39;re closest to the homeworlds to which they connect. Helps with planning visually.\n\tcapi3101: Admin: I&#39;m wanting to sacrifice my B2 in system Charlie - the system&#39;s not letting me.\n\n48) rho0: Sacrifice G2 Delta\nBuild G2 Delta\nBuild Y1 Rho0\n\tcapi3101: Never mind.\n\trho0: Oh yeah. Or at least automatic start towing. Just line up all the stars in order of how I need to jump to get to my opponent.\n\tDraw5PlayAll: For what it&#39;s worth I don&#39;t think the admin is at all active anymore.\n\n49) capi3101: Sacrifice Y2 Charlie\nMove R1 Foxtrot Rho0\nMove R2 Bravo Rho0\nCatastrophe Rho0 Red\n\n50) rho0: Sacrifice G2 Delta\nBuild G2 Delta\nBuild B2 Echo\n\tcapi3101: @Draw5PlayAll: Ok, thanks. Worth noting.\n\n51) capi3101: Build Y2 Capi3101\n\n52) rho0: Move G2 Delta Rho0\n\n53) capi3101: Trade Y3 R3 Capi3101\n\n54) rho0: Build G2 Delta\n\n55) capi3101: Sacrifice Y1 Bravo\nMove B3 Charlie Rho0\n\n56) rho0: Move B3 Delta Rho0\n\n57) capi3101: Sacrifice R3 Capi3101\nAttack B3 Rho0\nAttack Y2 Rho0\nAttack G2 Rho0\n\n\nHomeworlds Online (SDG# 35631)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.10.20, Ended: 2019.11.4\nParticipants: maxlfusion (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld G1 B2 Y3\n\tcapi3101: Greetings. I&#39;m a newbie to this site; looking forward to getting in some practice.\n\n2) maxlfusion: Homeworld G3 B2 Y3\n\n3) capi3101: Build Y1 Capi3101\n\n4) maxlfusion: Build Y1 Maxlfusion\n\n5) capi3101: Trade Y1 R1 Capi3101\n\n6) maxlfusion: Discover Y1 Maxlfusion B1 B1\n\n7) capi3101: Build R1 Capi3101\n\n8) maxlfusion: Build Y1 Maxlfusion\n\n9) capi3101: Trade R1 G1 Capi3101\n\n10) maxlfusion: Trade Y1 G1 B1\n\n11) capi3101: Build Y1 Capi3101\n\n12) maxlfusion: Build G2 B1\n\n13) capi3101: Build G2 Capi3101\n\n14) maxlfusion: Move Y1 Maxlfusion B1\n\n15) capi3101: Discover G2 Capi3101 B3 Advena\n\n16) maxlfusion: Discover G1 B1 Y2 Topaz\n\n17) capi3101: Build G2 Advena\n\n18) maxlfusion: Build Y1 Maxlfusion\n\n19) capi3101: Build G3 Capi3101\n\n20) maxlfusion: Build G3 Topaz\n\n21) capi3101: Sacrifice G3 Capi3101\nBuild G3 Capi3101\nBuild R1 Capi3101\nBuild Y2 Capi3101\n\n22) maxlfusion: Move G1 Topaz B1\n\n23) capi3101: Move Y3 Capi3101 Advena\n\n24) maxlfusion: Trade G2 R2 B1\n\n25) capi3101: Trade Y3 R3 Advena\n\n26) maxlfusion: Build G2 B1\n\n27) capi3101: Sacrifice Y1 Capi3101\nMove R3 Advena B1\n\n28) maxlfusion: Move G2 B1 Advena\n\n29) capi3101: Attack R2 B1\n\n\nHomeworlds Online (SDG# 35637)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.22, Ended: 2020.6.9\nParticipants: Trydnt (S), Dther (N)\nWinner: Trydnt\n\n1) Dther: Homeworld R1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) Dther: Build G1 Dther\n\n4) Trydnt: Build G1 Trydnt\n\n5) Dther: Trade G1 Y1 Dther\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Dther: Trade Y1 R1 Dther\n\n8) Trydnt: Build R2 Trydnt\n\n9) Dther: Build R2 Dther\n\n10) Trydnt: Build R2 Trydnt\n\n11) Dther: Trade R1 Y1 Dther\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) Dther: Build Y1 Dther\n\n14) Trydnt: Discover R1 Trydnt G1 G1\n\n15) Dther: Discover R2 Dther G3 Alpha\n\n16) Trydnt: Move Y2 Trydnt G1\n\n17) Dther: Trade Y1 B1 Dther\n\n18) Trydnt: Build R1 Trydnt\n\n19) Dther: Build G1 Dther\n\n20) Trydnt: Discover R2 Trydnt Y1 Y1\n\n21) Dther: Move B1 Dther Alpha\n\n22) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 G1\nBuild R3 Trydnt\n\n23) Dther: Build R3 Alpha\n\n24) Trydnt: Sacrifice Y2 G1\nMove R1 G1 Alpha\nMove R2 Y1 Alpha\nCatastrophe Alpha R\n\n25) Dther: Build Y1 Dther\n\n26) Trydnt: Move R2 Y1 Alpha\n\n27) Dther: Trade B1 R1 Alpha\n\n28) Trydnt: Attack R1 Alpha\n\n29) Dther: Build Y1 Dther\n\n30) Trydnt: Trade R3 G3 Trydnt\n\n31) Dther: Discover Y1 Dther B3 Bravo\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Alpha\nBuild R2 G1\nBuild R3 Trydnt\n\n33) Dther: Discover Y1 Dther G3 Charlie\n\n34) Trydnt: Trade R3 Y3 Trydnt\n\n35) Dther: Sacrifice G3 Dther\nBuild Y2 Bravo\nBuild Y2 Charlie\nBuild Y3 Dther\n\n36) Trydnt: Move Y3 Trydnt G1\n\n37) Dther: Build Y3 Dther\n\n38) Trydnt: Build R3 G1\n\n39) Dther: Sacrifice Y3 Dther\nMove Y2 Bravo G1\nMove Y2 Charlie G1\nMove Y1 Bravo G1\nCatastrophe G1 Y\n\n40) Trydnt: Trade R1 G1 Trydnt\n\n41) Dther: Build G2 Dther\n\n42) Trydnt: Build G2 Trydnt\n\n43) Dther: Build G2 Dther\n\n44) Trydnt: Trade G2 Y2 Trydnt\n\n45) Dther: Discover G2 Dther R3 Delta\n\n46) Trydnt: Sacrifice Y2 Trydnt\nMove R3 G1 Trydnt\nMove R2 G1 Charlie\n\tDther: Very sorry. HAve been very busy in real life.\n\n47) Dther: Discover Y1 Charlie Y1 Foxtrot\n\tTrydnt: no worries\n\n48) Trydnt: Build R1 Trydnt\n\n49) Dther: Trade Y3 G3 Dther\n\n50) Trydnt: Trade R3 Y3 Trydnt\n\n51) Dther: Sacrifice G3 Dther\nBuild G2 Delta\nBuild Y2 Foxtrot\nBuild G3 Dther\n\n52) Trydnt: Build R3 Trydnt\n\n53) Dther: Sacrifice G3 Dther\nBuild Y2 Dther\nBuild Y3 Dther\nBuild G3 Delta\n\n54) Trydnt: Move Y3 Trydnt G1\n\n55) Dther: Discover G1 Dther Y3 Golf\n\n56) Trydnt: Move R3 G1 Golf\n\n57) Dther: Discover Y1 Dther B3 Hotel\n\n58) Trydnt: Attack G1 Golf\n\n59) Dther: Move G2 Dther Hotel\n\n60) Trydnt: Move R1 Trydnt Foxtrot\n\n61) Dther: Discover Y1 Foxtrot B3 India\n\n62) Trydnt: Move Y3 G1 Hotel\n\n63) Dther: Discover Y1 Hotel G1 Juliet\n\n64) Trydnt: Move R3 Golf Juliet\n\n65) Dther: Discover Y1 Juliet B2 Kilo\n\n66) Trydnt: Sacrifice R2 Charlie\nAttack G2 Hotel\nPass\n\n67) Dther: Discover Y1 India R2 Lima\n\n68) Trydnt: Build G3 Golf\n\n69) Dther: Discover Y1 Lima B1 Mike\n\n70) Trydnt: Sacrifice G3 Golf\nBuild G3 Hotel\nBuild R2 Foxtrot\nPass\n\n71) Dther: Discover Y2 Foxtrot B2 November\n\n72) Trydnt: Move G2 Hotel Foxtrot\n\n73) Dther: Discover Y1 Kilo B1 Oscar\n\n74) Trydnt: Move G2 Foxtrot Delta\nCatastrophe Delta G\n\n75) Dther: Trade Y3 G3 Dther\n\n76) Trydnt: Discover R2 Foxtrot Y3 Y3\n\n77) Dther: Discover Y2 November B1 Papa\n\n78) Trydnt: Build R3 Juliet\n\n\nHomeworlds Online (SDG# 35636)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.22, Ended: 2020.9.5\nParticipants: wil (S), Dther (N)\nWinner: wil\n\n1) Dther: Homeworld R1 B2 G3\n\n2) wil: H Y3 B1 G3\n\n3) Dther: Build G1 Dther\n\n4) wil: B G1 Wil\n\n5) Dther: Trade G1 Y1 Dther\n\n6) wil: T G1 B1 Wil\n\n7) Dther: Build Y1 Dther\n\n8) wil: B B1 Wil\n\n9) Dther: Build Y1 Dther\n\twil: My first attempt is always an early Monopoly lead\n\n10) wil: D B1 Wil Y2 Y2\n\tDther: Hmmm. I haven&#39;t considered that strategy before. I&#39;m fairly new to this, so it will be interesting to see how this plays out.\n\n11) Dther: Discover Y1 Dther B3 Amber\n\n12) wil: D B1 Y2 G3 G3\n\n13) Dther: Build Y2 Dther\n\n14) wil: S G3 Wil\nB B2 Wil\nB B2 G3\nB B3 G3\n\n15) Dther: Discover Y2 Dther G3 Emerald\n\n16) wil: T B3 Y3 G3\n\n17) Dther: Build G1 Dther\n\n18) wil: T B2 G2 Wil\n\n19) Dther: Discover G1 Dther Y3 Actuallyamber\n\n20) wil: B B2 G3\n\n21) Dther: Build Y2 Emerald\n\n22) wil: B Y2 G3\n\n23) Dther: Sacrifice G1 Actuallyamber\nBuild Y3 Amber\n\n24) wil: B B3 Wil\n\n25) Dther: Sacrifice Y2 Emerald\nMove Y1 Dther G3\nMove Y1 Dther G3\nCatastrophe G3 Y\n\n26) wil: T B2 Y2 G3\n\n27) Dther: Build Y1 Emerald\n\n28) wil: T B3 Y3 Wil\n\n29) Dther: Trade Y3 B3 Amber\n\n30) wil: D B1 G3 Y2 Y2\n\n31) Dther: Discover B3 Amber G2 Malachite\n\n32) wil: B G1 Wil\n\n33) Dther: Trade Y1 G1 Amber\n\n34) wil: S G2 Wil\nB B2 G3\nB B3 Y2\n\n35) Dther: Sacrifice G1 Amber\nBuild B3 Malachite\n\n36) wil: T B3 Y3 Y2\n\n37) Dther: Discover Y1 Emerald G2 Jade\n\n38) wil: S G1 Wil\nB B3 Y2\n\n39) Dther: Build Y1 Jade\n\n40) wil: T Y3 R3 Wil\n\n41) Dther: Build G1 Dther\n\n42) wil: M B3 Y2 Emerald\n\n43) Dther: Build Y1 Jade\n\n44) wil: B Y3 G3\n\n45) Dther: Trade G1 R1 Dther\n\n46) wil: S Y3 G3\nM B2 G3 Malachite\nM B1 Wil Malachite\nC Malachite B\nM Y2 G3 Jade\nC Jade Y\n\twil: Turtles and eve of destruction comes to mind\n\n47) Dther: Build R1 Dther\n\tDther: I think I see what you mean...\r\n\n\n48) wil: B B1 G3\n\n49) Dther: Trade R1 Y1 Dther\n\n50) wil: B B2 G3\n\tDther: Sorry. I&#39;ve been very busy the last few days.\n\n51) Dther: Build R1 Dther\n\n52) wil: T B2 G2 G3\n\n53) Dther: Build G1 Dther\n\n54) wil: S G2 G3\nB B2 Y2\nB B3 G3\n\n55) Dther: Sacrifice Y2 Emerald\nDiscover R1 Dther Y3 Amber\nDiscover R1 Dther B3 Sapphire\n\n56) wil: T B2 G2 Y2\n\n57) Dther: Discover G1 Dther R3 Ruby\n\n58) wil: B B2 Emerald\n\n59) Dther: Build G1 Dther\n\n60) wil: T B3 R3 Emerald\n\n61) Dther: Build G1 Ruby\n\n62) wil: T B2 Y2 G3\n\n63) Dther: Build Y1 Dther\n\n64) wil: B B2 G3\n\n65) Dther: Sacrifice Y1 Dther\nDiscover G1 Ruby Y1 Citrine\n\n66) wil: B B3 Emerald\n\n67) Dther: Sacrifice G3 Dther\nBuild G2 Ruby\nBuild G2 Citrine\nBuild G3 Dther\n\n68) wil: B R2 Emerald\n\n\nHomeworlds Online (SDG# 35622)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.10.23, Ended: 2019.11.1\nParticipants: rho0 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) rho0: Homeworld B2 R3 G3\n\n3) wil: B G1 Wil\n\n4) rho0: Build G1 Rho0\n\n5) wil: T G1 B1 Wil\n\n6) rho0: Trade G1 Y1 Rho0\n\n7) wil: B B1 Wil\n\n8) rho0: Build Y1 Rho0\n\n9) wil: D B1 Wil Y3 Y3\n\n10) rho0: Build Y1 Rho0\n\twil: I head toward a viscous start if I can\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\trho0: Haha clearly. I like your homeworld setup. I usually go for a similar one depending on my opponent&#39;s.\n\n12) rho0: Discover Y1 Rho0 G1 Alpha\n\trho0: You really monopolized blue fast! You&#39;re good at this.\n\n13) wil: T B3 Y3 Wil\n\twil: If can get away with that I try\n\n14) rho0: Sacrifice G3 Rho0\nBuild Y2 Alpha\nBuild Y2 Alpha\nBuild Y3 Rho0\n\n15) wil: T B2 G2 Y3\n\n16) rho0: Discover Y2 Alpha B3 Bravo\n\n17) wil: B B2 Y3\n\n18) rho0: Move Y1 Alpha Bravo\n\n19) wil: D B2 Y3 G1 G1\n\n20) rho0: Sacrifice Y2 Alpha\nMove Y1 Bravo Wil\nMove Y2 Bravo Wil\nCatastrophe Wil Y\n\n21) wil: S G2 Y3\nB B3 Y3\nB B3 Wil\n\n22) rho0: Trade Y3 B3 Rho0\n\twil: Dicey\n\n23) wil: T B3 G3 Wil\n\n24) rho0: Trade Y1 G1 Rho0\n\trho0: Sometimes ya gotta risk it for the biscuit\n\n25) wil: B B3 G1\n\twil: Dicey, spicy bisquits!\n\n26) rho0: Trade B3 G3 Rho0\n\n27) wil: T B3 Y3 Y3\n\n28) rho0: Trade G3 R3 Rho0\n\n29) wil: T B3 R3 G1\n\n30) rho0: Move R3 Rho0 Wil\n\n31) wil: S R3 G1\nA R3 Wil\nP\nP\n\twil: I just wanna have the blues...\n\n32) rho0: Build G1 Rho0\n\trho0: Blues are all yours if you want &#39;em, but I think I&#39;ll take your homeworld real quick, if you don&#39;t mind.\n\twil: ??\n\n33) wil: S G3 Wil\nB B3 Wil\nB B3 G1\nB B3 Y3\n\twil: Check out rules on sacrifice n attack, challenge anytime\n\trho0: fuck I always forget that you can sacrifice reds. I don&#39;t know why, but I calculate all of the sacrifices my opponent can do, but then always forget that reds can sacrifice to attack. XD Alright, I think that blunder hands you the game. GG.\n\n34) rho0: Build G2 Rho0\n\twil: It is a game of capitalizing on errors...\n\n35) wil: D B3 Y3 Y1 Y1\n\twil: https://youtu.be/RTQt6lHoMcM\n\trho0: Oh lawd\n\n36) rho0: Sacrifice G2 Rho0\nBuild Y1 Rho0\nBuild Y2 Rho0\n\n37) wil: M B3 Y1 Rho0\n\n38) rho0: Build G2 Rho0\n\n39) wil: S R3 Wil\nA G2 Rho0\nA G1 Rho0\nA Y2 Rho0\n\n\twil: Gg.challenge anytime\n\nHomeworlds Online (SDG# 35594)\nStarted: 2019.10.27, Ended: 2019.11.15\nParticipants: nycavri (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: This is for the tournament, correct?\r\n\r\nGood luck!\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) Babamots: Build G1 Babamots\n\tnycavri: Confirming tournament game.\r\n\r\nTaGG! \n\n4) nycavri: Build G1 Nycavri\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) nycavri: Trade G1 R1 Nycavri\n\n7) Babamots: Build Y1 Babamots\n\n8) nycavri: Build G1 Nycavri\n\n9) Babamots: Build Y2 Babamots\n\n10) nycavri: Trade G3 Y3 Nycavri\n\n11) Babamots: Discover Y2 Babamots G3 Orion\n\n12) nycavri: Build G1 Nycavri\n\n13) Babamots: Build Y2 Babamots\n\n14) nycavri: Trade G1 B1 Nycavri\n\n15) Babamots: Build Y2 Orion\n\n16) nycavri: Trade Y3 G3 Nycavri\n\tBabamots: I was sorry to hear you&#39;re going through some tough times. I hope games are making things seem nicer!\n\tnycavri: Thanks -  much appreciated.  I&#39;m doing OK and games (and gamers!) are always a pleasant distraction.\n\tnycavri: I would be slighty happier if I hadn&#39;t mae a mistake in this game around move 4 . . .\n\n17) Babamots: Discover Y2 Babamots R3 Romulus\n\n18) nycavri: Discover G1 Nycavri Y3 Deacon\n\tBabamots: I usually advise people not to use yellow in the home system. It can limit your chances to get yellow ships, and I consider yellow to be the key to victory.\n\n19) Babamots: Build Y3 Babamots\n\tnycavri: I&#39;ve been playing a long time, and that&#39;s a tip I&#39;ve never heard before.    But io has certainly been key here (although perhaps exacerbated by the tiny universe I initiated . . .)\n\n20) nycavri: Build R1 Nycavri\n\n21) Babamots: Trade Y3 R3 Babamots\n\tBabamots: I can think of one argument in favor of having a yellow home star: if my opponent wants to catastrophe my yellow star, they&#39;ll need not only several yellow ships for destruction in the catastrophe but a yellow ship to sacrifice to get them all to my home at once. My opponent would have to have four correctly placed yellow ships. To catastrophe any other color, you usually need three ships of that color and one yellow. It&#39;s a little harder to assemble a fleet of four yellows than it is to assemble a fleet of three (for example) reds and one yellow.\n\n22) nycavri: Move R1 Nycavri Deacon\n\n23) Babamots: Build Y3 Babamots\n\tnycavri: Plenty to think about.  I really thing Homeworlds (not Zendo) is the pyramid killer app.\n\n24) nycavri: Discover B1 Nycavri Y3 May\n\tBabamots: I agree. Homeworlds has more potential for widespread play than any other pyramid game.\n\n25) Babamots: Trade Y3 B3 Babamots\n\n26) nycavri: Build R2 Deacon\n\tBabamots: Happy Halloween! :-)\n\n27) Babamots: Move B3 Babamots Deacon\n\n28) nycavri: Move R2 Deacon Babamots\n\n29) Babamots: Sacrifice R3 Babamots\nAttack R2 Babamots\nAttack R1 Deacon\nAttack G1 Deacon\n\n30) nycavri: Build R2 Nycavri\n\n31) Babamots: Build Y3 Orion\n\n32) nycavri: Move R2 Nycavri May\n\n33) Babamots: Build B1 Deacon\n\n34) nycavri: Build G1 Nycavri\n\n35) Babamots: Build B1 Deacon\n\n36) nycavri: Move G1 Nycavri May\n\n37) Babamots: Discover Y1 Babamots R3 Kronos\n\n38) nycavri: Build R2 May\n\n39) Babamots: Move B3 Deacon Nycavri\n\n40) nycavri: Attack B3 Nycavri\n\n41) Babamots: Sacrifice Y2 Orion\nMove B1 Deacon Nycavri\nMove B1 Deacon Nycavri\nCatastrophe Nycavri B\n\n42) nycavri: Trade R2 Y2 May\n\n43) Babamots: Sacrifice Y3 Orion\nMove Y2 Orion Nycavri\nMove Y2 Romulus Nycavri\nMove Y1 Kronos Nycavri\nCatastrophe Nycavri Y\n\n\tnycavri: Thanks for the game.  Off to accept another challenge for the Tourney now . . .\n\tBabamots: GG!\r\nI will, of course, order the release of the captured crews of the small ships in the Deacon system. ;-)\n\nHomeworlds Online (SDG# 35643)\nStarted: 2019.10.31, Ended: 2020.1.18\nParticipants: bhorner (S), Draw5PlayAll (N)\nWinner: bhorner\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tbhorner: For the Great Home Worlds Tournament 2019 right?\n\tDraw5PlayAll: I think so.\n\n2) bhorner: Homeworld B1 R2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tbhorner: I think according to the tournament set-up, you moved first so you should fill out the game start form.  I can probably do it if you&#39;d rather not. :)\n\n4) bhorner: Build G1 Bhorner\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) bhorner: Build G1 Bhorner\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n10) bhorner: Trade G1 R1 Bhorner\n\tbhorner: If I don&#39;t get a red now, I have to get a 2 of something before the red 2&#39;s are gone...\n\tbhorner: Well, that was supposed to go into the notes box, not the comments box.  :)\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) bhorner: Build G1 Bhorner\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 Stein\n\n14) bhorner: Discover G1 Bhorner R3 Volcano\n\tbhorner: FYI, I will be out of contact for Nov 8th, 9th, and 10th.  I will try to figure out my move, and make it Friday morning.\r\n\r\nIf you could delay your move for a couple of days (but make sure you can still get back to 7), I would appreciate it!\n\tDraw5PlayAll: Your green trade looks suspicious.\n\tDraw5PlayAll: (build not trade)\n\tbhorner: I was in a bad spot, I felt.  Probably still am. That was all I could come up with.  :). Feel free to make some mistakes, I could use them!\n\tbhorner: Oh no, did you forget to move?  As long as the game doesn&#39;t end on the timer, I won&#39;t force it based on time, whatever happens.  I&#39;m back in contact now and able to make moves.\n\tbhorner: Sorry if something is going on for you, I&#39;m not sure what to do of I don&#39;t hear from you anymore.  I guess if your time runs out, if I haven&#39;t heard from you within 7 more days, I will end the game.  I&#39;d rather not have it end that way though, so I hope you can get back in touch.\r\n\r\nThat would make the no-communication end time of the game 10pm Nov 19th.\n\tDraw5PlayAll: Augh! Yes, I did.\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Stein\nBuild R3 Stein\nBuild R3 Draw5playall\n\n16) bhorner: Sacrifice G1 Volcano\nBuild R3 Bhorner\n\n17) Draw5PlayAll: Trade R1 B1 Draw5playall\n\tDraw5PlayAll: This caused trouble for me once...\n\tbhorner: It is bold.  My green move was to prevent you from getting too far ahead in the big race.\n\tDraw5PlayAll: I mean that one time, I did this, and ended up regretting it because I had insufficient blue and yellow.\n\n18) bhorner: Discover R1 Bhorner Y3 Sun\n\n19) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade R2 B2 Stein\n\n20) bhorner: Build Y1 Bhorner\n\tbhorner: I see, I misunderstood.  I thought it was because you had those big clumps of red.  :)\n\n21) Draw5PlayAll: Trade R2 Y2 Stein\n\tDraw5PlayAll: That&#39;s better!\n\n22) bhorner: Discover Y1 Bhorner B3 Ocean\n\n23) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n24) bhorner: Build G1 Bhorner\n\n25) Draw5PlayAll: Build R1 Stein\n\n26) bhorner: Move G1 Bhorner Ocean\n\n27) Draw5PlayAll: Build Y2 Stein\n\n28) bhorner: Build Y2 Ocean\n\n29) Draw5PlayAll: Build Y3 Draw5playall\n\n30) bhorner: Build Y3 Bhorner\n\n31) Draw5PlayAll: Trade Y2 B2 Stein\n\n32) bhorner: Trade Y1 B1 Bhorner\n\n33) Draw5PlayAll: Discover R1 Stein G3 Nader\n\n34) bhorner: Discover G3 Bhorner R3 Volcano\n\n35) Draw5PlayAll: Discover G3 Draw5playall Y2 Johnson\n\n36) bhorner: Move R3 Bhorner Nader\n\n37) Draw5PlayAll: Move G3 Johnson Sun\n\n38) bhorner: Attack R1 Nader\n\n39) Draw5PlayAll: Build R2 Stein\n\n40) bhorner: Sacrifice Y2 Ocean\nMove R1 Nader Stein\nMove R1 Sun Stein\nCatastrophe Stein R\n\tDraw5PlayAll: That was not supposed to happen!\n\n41) Draw5PlayAll: Move B2 Stein Sun\n\n42) bhorner: Build R1 Nader\n\n43) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n44) bhorner: Move G1 Ocean Bhorner\n\n45) Draw5PlayAll: Build G1 Sun\n\n46) bhorner: Build G1 Bhorner\n\n47) Draw5PlayAll: Discover G1 Sun Y2 Johnson\n\n48) bhorner: Build G2 Bhorner\n\n49) Draw5PlayAll: Build G2 Sun\n\n50) bhorner: Sacrifice Y3 Bhorner\nMove G1 Bhorner Sun\nMove G1 Bhorner Sun\nMove G3 Volcano Bhorner\nCatastrophe Sun G\n\n51) Draw5PlayAll: Discover R1 Draw5playall G2 Earth\n\n52) bhorner: Trade G2 Y2 Bhorner\n\n53) Draw5PlayAll: Build R2 Earth\n\n54) bhorner: Move Y2 Bhorner Nader\n\n55) Draw5PlayAll: Discover B2 Stein G3 Moss\n\n56) bhorner: Discover R3 Nader Y1 Spark\n\n57) Draw5PlayAll: Move G1 Johnson Draw5playall\n\n58) bhorner: Move R3 Spark Moss\n\n59) Draw5PlayAll: Sacrifice Y2 Stein\nDiscover B2 Moss G1 Forest\nMove R2 Earth Ocean\n\n60) bhorner: Move Y1 Ocean Bhorner\n\n61) Draw5PlayAll: Build G1 Draw5playall\n\n62) bhorner: Build G2 Bhorner\n\n63) Draw5PlayAll: Build Y1 Draw5playall\n\n64) bhorner: Move Y2 Nader Earth\n\n65) Draw5PlayAll: Build G2 Draw5playall\n\n66) bhorner: Sacrifice R1 Nader\nAttack R1 Earth\n\n67) Draw5PlayAll: Discover G2 Draw5playall Y2 Y2\n\n68) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y1 Earth\nBuild Y2 Bhorner\n\n69) Draw5PlayAll: Build G3 Y2\n\n70) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y3 Bhorner\nBuild R1 Moss\n\n71) Draw5PlayAll: Sacrifice G3 Y2\nBuild B1 Sun\nBuild B2 Forest\nBuild G3 Y2\n\n72) bhorner: Sacrifice Y3 Bhorner\nMove R3 Moss Forest\nMove Y2 Earth Draw5playall\nMove Y1 Earth Draw5playall\nCatastrophe Draw5playall Y\n\n73) Draw5PlayAll: Move G3 Y2 Draw5playall\n\n74) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R2 Earth\nBuild R3 Moss\n\tDraw5PlayAll: Thanks! I needed that large!\n\tbhorner: Mistakes are inevitable.  :)\n\tDraw5PlayAll: It seems you still have yet to move.\n\n75) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B3 Forest\nBuild R3 Ocean\n\n76) bhorner: Sacrifice Y2 Bhorner\nMove R1 Earth Ocean\nMove R2 Earth Ocean\nCatastrophe Ocean R\n\n77) Draw5PlayAll: Sacrifice B3 Forest\nTrade B2 R2 Forest\nTrade B2 R2 Forest\nTrade B1 R1 Sun\n\n78) bhorner: Sacrifice G3 Bhorner\nBuild G2 Bhorner\nBuild G3 Bhorner\nBuild R3 Moss\n\n79) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: I was about to resign when I realized you have insufficient movement to blow me up!\n\tbhorner: Yep, I used it all up.  :)\n\n80) bhorner: Attack R2 Forest\n\n81) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R2 Forest Moss\nCatastrophe Moss Red\n\tDraw5PlayAll: Hanging by a thread\n\tbhorner: I don&#39;t really see anything happening fast...\n\n82) bhorner: Discover G2 Bhorner G3 Boogar\n\n83) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n84) bhorner: Build Y1 Bhorner\n\tDraw5PlayAll: You never cease to try to deprive me of a second large, and I never cease to come up with new ways of getting one.\n\tbhorner: Eventually one will cease.  :)\n\n85) Draw5PlayAll: Build Y2 Draw5playall\n\n86) bhorner: Discover Y1 Bhorner B3 Bullet\n\n87) Draw5PlayAll: Discover Y2 Draw5playall B2 Ballot\n\n88) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Bhorner\nBuild Y3 Bullet\nBuild Y3 Bhorner\n\tDraw5PlayAll: I cannot allow you to have three large reds.\n\tbhorner: I would tend to agree. :)\n\n89) Draw5PlayAll: Build G1 Draw5playall\n\n90) bhorner: Sacrifice Y1 Bhorner\nMove R3 Forest Y2\n\n91) Draw5PlayAll: Discover G2 Y2 Y1 Y1\n\n92) bhorner: Sacrifice Y3 Bhorner\nMove R3 Y2 Draw5playall\nMove Y3 Bullet Ballot\nMove Y3 Ballot Draw5playall\n\n\tDraw5PlayAll: My resistance has fallen. I surrender.\n\tbhorner: GG!  :)\n\nHomeworlds Online (SDG# 35644)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.10.31, Ended: 2019.11.7\nParticipants: capi3101 (S), wil (N)\nWinner: wil\n\n1) wil: H B1 Y2 G3\n\tcapi3101: Howdy, wil. Everybody else I&#39;m playing is taking too long to move...\n\twil: Not me!\n\n2) capi3101: Homeworld R3 B2 G3\n\n3) wil: B G1 Wil\n\n4) capi3101: Build G1 Capi3101\n\n5) wil: T G1 B1 Wil\n\n6) capi3101: Trade G1 Y1 Capi3101\n\twil: Good luck n have fun\n\tcapi3101: Same to you.\n\n7) wil: B B1 Wil\n\n8) capi3101: Build Y1 Capi3101\n\n9) wil: D B1 Wil Y3 Y3\n\n10) capi3101: Discover Y1 Capi3101 R1 Rubeum\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Wil\nB B3 Y3\n\n12) capi3101: Discover Y1 Rubeum B3 Caeruleum\n\n13) wil: T B3 G3 Y3\n\tcapi3101: Guess you&#39;re serious about keeping me out of blue there, wil. Geez...\n\tcapi3101: I see why you didn&#39;t want to keep the initial permutation of that move though.\n\tcapi3101: Well, this is probably stupid, but...\n\n14) capi3101: Trade Y1 G1 Caeruleum\n\n15) wil: M B2 Wil Caeruleum\n\twil: I like monopolies, cornering an economy is valuable.\n\n16) capi3101: Trade G1 R1 Caeruleum\n\tcapi3101: I see it coming...\n\n17) wil: T B2 R2 Y3\n\twil: Glad you are ready, thx for the invite!\n\tcapi3101: I didn&#39;t say anything about being ready - just noted what was coming...\n\n18) capi3101: Build Y1 Capi3101\n\n19) wil: S G3 Y3\nB B2 Caeruleum\nB B3 Y3\nB B3 Wil\n\twil: I meant ready for company, I  vleaned my hw just in case.\n\n20) capi3101: Build Y1 Capi3101\n\n21) wil: S B2 Caeruleum\nT B3 Y3 Y3\nT B3 G3 Wil\n\tcapi3101: Yep. There it is.\n\tcapi3101: Well...\n\n22) capi3101: Sacrifice Y1 Capi3101\nDiscover R1 Caeruleum Y1 Morosi\n\n23) wil: S G3 Wil\nB B2 Y3\nB B3 Caeruleum\nB B3 Wil\n\tcapi3101: Damn. That&#39;s a nice engine setup. Sac the G3 at your homeworld next turn - you&#39;ve got enough spots to safely grow blue, including your homeworld. Rinse, repeat...\n\tcapi3101: Meanwhile I piddle my way along.\n\tcapi3101: I could swap my big ship for blue, for all the more good that does me...I think that gets my big ship catted out of existence in two moves.\n\tcapi3101: If I don&#39;t, however, you&#39;ll have a doomsday machine set up in four moves.\n\tcapi3101: Maybe I should just swap for the large yellow and get it over with...\n\tcapi3101: Don&#39;t worry, I won&#39;t.\n\tcapi3101: Hell if I know what to do, though.\n\n24) capi3101: Discover Y1 Capi3101 G1 Futuo\n\twil: I call it a queen factory, I try teach opponents to avoid\n\twil: Swap early!\n\n25) wil: T B3 G3 Wil\n\n26) capi3101: Sacrifice G3 Capi3101\nBuild Y2 Futuo\nBuild Y2 Capi3101\nBuild Y3 Capi3101\n\n27) wil: B B3 Wil\n\n28) capi3101: Sacrifice Y2 Capi3101\nMove Y2 Futuo Y3\nMove Y1 Futuo Y3\nCatastrophe Y3 Yellow\n\n29) wil: D B3 Wil Y3 Y3\n\n30) capi3101: Trade Y1 B1 Capi3101\n\twil: Nobody can pass those up!\n\n31) wil: T B3 Y3 Caeruleum\n\tcapi3101: Question is whether or not that was the best choice for me. Cost me two mediums and a small in exchange for three (?) of yours including a large. At this point, though, I lack green entirely...and I haven&#39;t broken your engine.\n\n32) capi3101: Trade Y3 G3 Capi3101\n\tcapi3101: I&#39;ll do that at least.\n\twil: I looked at it not what was lost but what was left.\n\n33) wil: M B2 Caeruleum Morosi\n\n34) capi3101: Trade B1 Y1 Capi3101\n\n35) wil: S G3 Wil\nB B1 Y3\nB B2 Morosi\nB B3 Wil\n\tcapi3101: Dammit. Be that way.\n\n36) capi3101: Build G1 Capi3101\n\tcapi3101: Trydnt bluebirded me yesterday, so now I&#39;ve learned to be conscious of what exactly is sitting at my homeworld. For example, B1 ship plus B2 star is susceptible to Y3 sac to move a pair of blues moving in...\n\tcapi3101: I couldn&#39;t tell if you were still setting that up or ready to pull the trigger. Would you have used the large blue at Y3 for that, or waited one turn to move the small one at your homeworld for the same purpose?\n\twil: Blue bird and doomsday are powerful plans\n\twil: 7 habits 4 highly effective HWs begin with end in mind\n\n37) wil: T B3 G3 Y3\n\tcapi3101: Crap. There goes half my homeworld.\n\tcapi3101: ...and the part that lets me trade to boot.\n\n38) capi3101: Discover R1 Morosi G3 Ego-mortui\n\n39) wil: B B3 Y3\n\twil: We&#39;ve got a queen assembly line to run for a bit...\n\tcapi3101: Yes...you&#39;re going to want to set up 3 reds in size 1 and 2 systems and grab another large yellow to finish setting up the machine. How to go about disrupting that plan effectively...\n\tcapi3101: Build G1 capi3101!!!\r\n\r\n...kidding.\n\n40) capi3101: Build R1 Ego-mortui\n\n41) wil: T B3 Y3 Y3\n\n42) capi3101: Build R1 Ego-mortui\n\n43) wil: B B3 Y3\n\n44) capi3101: Sacrifice Y1 Capi3101\nMove R1 Ego-mortui Morosi\n\n45) wil: S B2 Morosi\nT B3 R3 Wil\nT B3 R3 Y3\n\n46) capi3101: Sacrifice G1 Capi3101\nBuild R2 Morosi\n\n47) wil: S R3 Y3\nA R2 Morosi\nA R1 Morosi\nP\n\twil: It was as if you moved for me!  \n\twil: Goals s r3, s g3, s y3, s y3. Maybe a few others\n\n\tcapi3101: So, do I need to ask where I screwed this one up?\n\twil: Keeping someone from getting a monopoly is paramount.\n\nHomeworlds Online (SDG# 35641)\nVariants: &quot;Unrated&quot;\nStarted: 2019.10.31, Ended: 2019.11.4\nParticipants: capi3101 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tcapi3101: Hello again; good luck. Hopefully I&#39;ll be more of a challenge this time around.\n\n2) capi3101: Homeworld R3 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) capi3101: Build G1 Capi3101\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) capi3101: Build G1 Capi3101\n\n7) Trydnt: Build Y1 Trydnt\n\n8) capi3101: Trade G3 Y3 Capi3101\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) capi3101: Discover G1 Capi3101 B1 Sugit\n\n11) Trydnt: Build Y2 G3\n\n12) capi3101: Build Y2 Capi3101\n\n13) Trydnt: Trade Y1 R1 Trydnt\n\n14) capi3101: Move Y2 Capi3101 Sugit\n\n15) Trydnt: Discover Y1 G3 G1 G1\n\n16) capi3101: Build G2 Sugit\n\n17) Trydnt: Build G2 Trydnt\n\n18) capi3101: Trade Y3 G3 Capi3101\n\n19) Trydnt: Build Y1 G3\n\n20) capi3101: Discover G2 Sugit B3 Caeruleum\n\n21) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G1\nBuild Y3 G1\n\n22) capi3101: Sacrifice G3 Capi3101\nBuild G2 Caeruleum\nBuild G2 Caeruleum\nBuild G3 Capi3101\n\n23) Trydnt: Discover Y3 G1 B3 B3\n\n24) capi3101: Build Y3 Sugit\n\n25) Trydnt: Sacrifice Y2 G1\nMove Y1 G3 Sugit\nMove Y2 G3 Sugit\nCatastrophe Sugit Y\n\n26) capi3101: Build G3 Sugit\n\n27) Trydnt: Move Y3 B3 Sugit\n\n28) capi3101: Sacrifice G3 Sugit\nBuild G3 Capi3101\nPass\nPass\n\n29) Trydnt: Sacrifice Y3 Sugit\nMove G3 Trydnt Caeruleum\nMove G3 Caeruleum G1\nMove G3 G1 Capi3101\nCatastrophe Capi3101 G\n\tcapi3101: Damn. Touch&eacute;.\n\tTrydnt: Yeah there was no way you could keep that big green unfortunately. made sure of that or else I wouldn&#39;t have left it in the bank\n\tcapi3101: Wait, what the hell just happened?!?!\n\tTrydnt: bluebird\n\tTrydnt: I sacrificed my y3 to move my g3 from my homeworld all the way across the universe to yours and annihilated the three green ships you had there. If there are no ships left at your homeworld you lose. If I hadn&#39;t had that r1 ship in my homeworld I wouldn&#39;t have been able to do it either as that would have left me with no ships at mine. But since you had too many green ships already in every other place, Sugit was the only place it could go without being a danger to you. You couldn&#39;t move it since you didn&#39;t have yellow, so nowhere to safely grow it and no way to run away means I can be sure I can capture it on the next turn\n\tTrydnt: always be aware of how much yellow your opponent has as that will determine how far they can jump. for example, getting a y2 ship in the early-mid game and a few ships one step from your star means you can jump them straight to your opponent&#39;s homeworld and blow up a color if they ever grow three of those there\n\n\nHomeworlds Online (SDG# 35477)\nStarted: 2019.10.31, Ended: 2019.12.9\nParticipants: Felix (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) ajo: Build Y1 Ajo\n\tFelix: Hello! This game is supposed to be for the homeworlds tournament. Agreed?\n\n4) Felix: Build G1 Felix\n\tajo: For the tournament!\n\n5) ajo: Trade Y1 G1 Ajo\n\n6) Felix: Trade G1 Y1 Felix\n\n7) ajo: Build G1 Ajo\n\n8) Felix: Build G1 Felix\n\n9) ajo: Discover G1 Ajo B1 Alpha\n\n10) Felix: Build G2 Felix\n\n11) ajo: Build G2 Alpha\n\n12) Felix: Discover G2 Felix B2 Oats\n\n13) ajo: Trade G1 Y1 Alpha\n\tFelix: I&#39;m so uncreative. Guess what I&#39;m eating for breakfast right now? :)\n\n14) Felix: Trade G1 B1 Felix\n\n15) ajo: Build G1 Alpha\n\n16) Felix: Build B1 Felix\n\n17) ajo: Trade G2 B2 Alpha\n\n18) Felix: Move B1 Felix Oats\n\n19) ajo: Discover B2 Alpha G2 Beta\n\n20) Felix: Trade B1 Y1 Oats\n\n21) ajo: Build Y2 Alpha\n\n22) Felix: Build Y2 Oats\n\n23) ajo: Move Y1 Alpha Beta\n\n24) Felix: Discover Y1 Oats G1 Ingress\n\n25) ajo: Build B1 Beta\n\n26) Felix: Sacrifice G3 Felix\nBuild Y2 Ingress\nBuild Y3 Oats\nBuild Y3 Felix\n\n27) ajo: Trade B2 R2 Beta\n\n28) Felix: Trade Y3 R3 Oats\n\n29) ajo: Build Y3 Beta\n\n30) Felix: Trade Y3 G3 Felix\n\n31) ajo: Build Y3 Alpha\n\n32) Felix: Move G2 Oats Alpha\n\n33) ajo: Build B2 Beta\n\n34) Felix: Build G2 Alpha\n\n35) ajo: Sacrifice Y3 Beta\nMove G1 Ajo Alpha\nMove B1 Beta Felix\nMove B2 Beta Felix\nCatastrophe Alpha Green\nCatastrophe Felix Blue\n\n36) Felix: B Y3 Felix\n\n37) ajo: Trade Y3 R3 Ajo\n\n38) Felix: Move Y1 Felix Beta\n\n39) ajo: Trade Y2 G2 Alpha\n\n40) Felix: Build G1 Felix\n\n41) ajo: Sacrifice G2 Alpha\nBuild R1 Beta\nBuild R1 Ajo\n\n42) Felix: S Y2 Oats\nM R3 Oats Alpha\nM R3 Alpha Ajo\n\n43) ajo: Sacrifice Y3 Alpha\nMove R1 Beta Felix\nMove R2 Beta Felix\nMove R1 Ajo Felix\nCatastrophe Felix Red\n\tajo: Check. And I *think* that&#39;s going to be checkmate. :)\n\n\tFelix: Darn Skippy! Well done!\n\tajo: Good game. :)\n\nHomeworlds Online (SDG# 35642)\nVariants: &quot;Unrated&quot;\nStarted: 2019.11.1, Ended: 2020.9.5\nParticipants: rho0 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: Gl, hf\n\n2) rho0: Homeworld B3 G1 Y3\n\n3) wil: B G1 Wil\n\n4) rho0: Build Y1 Rho0\n\twil: Uhoh, more trouble, ya set me up for greens this time!\n\n5) wil: B G1 Wil\n\n6) rho0: Trade Y1 B1 Rho0\n\n7) wil: D G1 Wil B3 B3\n\n8) rho0: Build B1 Rho0\n\n9) wil: B G2 Wil\n\n10) rho0: Discover B1 Rho0 Y2 Alpha\n\n11) wil: D G2 Wil Y3 Y3\n\n12) rho0: Build B2 Rho0\n\n13) wil: S G3 Wil\nB G2 B3\nB G2 Y3\nB G3 Wil\n\n14) rho0: Build Y1 Rho0\n\n15) wil: S G3 Wil\nB G3 Wil\nB G3 Y3\nB G3 B3\n\n16) rho0: Trade B2 R2 Rho0\n\trho0: You really build up fast!\n\n17) wil: T G3 Y3 B3\n\n18) rho0: Trade Y3 G3 Rho0\n\twil: I try\n\n19) wil: M G3 Y3 Alpha\n\n20) rho0: Build Y1 Rho0\n\n21) wil: T G3 Y3 Wil\n\n\nHomeworlds Online (SDG# 35669)\nStarted: 2019.11.2, Ended: 2019.11.15\nParticipants: Babamots (S), eliscinsky (N)\nWinner: Babamots\n\n1) eliscinsky: Homeworld R1 B3 G3\n\n2) Babamots: Homeworld B2 R1 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019\n\teliscinsky: Good luck and have fun :) \n\tBabamots: Yup, for the tournament. Good luck! I&#39;m hoping to redeem myself after last time. The gloves are off! ;-)\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) Babamots: Build G1 Babamots\n\n5) eliscinsky: Trade G1 R1 Eliscinsky\n\n6) Babamots: Trade G3 R3 Babamots\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) Babamots: Build R2 Babamots\n\n9) eliscinsky: Build R2 Eliscinsky\n\n10) Babamots: Trade R2 Y2 Babamots\n\n11) eliscinsky: Trade R2 Y2 Eliscinsky\n\n12) Babamots: Build R2 Babamots\n\n13) eliscinsky: Trade G1 B1 Eliscinsky\n\n14) Babamots: Discover R2 Babamots G3 Orion\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) Babamots: Build R2 Babamots\n\n17) eliscinsky: Build Y1 Eliscinsky\n\n18) Babamots: Trade R2 B2 Babamots\n\n19) eliscinsky: Discover R1 Eliscinsky R2 Reddwarf\n\teliscinsky: Very interesting situation.  I believe I&#39;ll have to think on this one for a bit.\n\n20) Babamots: Move B2 Babamots Orion\n\n21) eliscinsky: Move G1 Eliscinsky Reddwarf\n\n22) Babamots: Build Y1 Babamots\n\n23) eliscinsky: Move Y1 Eliscinsky Reddwarf\n\n24) Babamots: Move Y1 Babamots Orion\n\n25) eliscinsky: Build R2 Reddwarf\n\n26) Babamots: Move R2 Orion Reddwarf\nCatastrophe Reddwarf R\n\n27) eliscinsky: Build G1 Eliscinsky\n\tBabamots: I&#39;m afraid I made your party too crowded and everyone went home. :-(\n\n28) Babamots: Build R1 Babamots\n\n29) eliscinsky: Discover B1 Eliscinsky G2 Greentwo\n\n30) Babamots: Move R1 Babamots Orion\n\n31) eliscinsky: Build B1 Greentwo\n\n32) Babamots: Build R2 Orion\n\n33) eliscinsky: Trade B1 Y1 Greentwo\n\n34) Babamots: Move R2 Orion Greentwo\n\n35) eliscinsky: Build Y1 Eliscinsky\n\n36) Babamots: Attack Y1 Greentwo\n\n37) eliscinsky: Trade Y2 R2 Eliscinsky\n\n38) Babamots: Attack B1 Greentwo\n\n39) eliscinsky: Build Y2 Eliscinsky\n\n40) Babamots: Build Y2 Orion\n\n41) eliscinsky: Trade Y2 B2 Eliscinsky\n\n42) Babamots: Build B1 Greentwo\n\n43) eliscinsky: Discover B2 Eliscinsky R2 Reddwarf\n\n44) Babamots: Build R3 Orion\n\n45) eliscinsky: Move R2 Eliscinsky Reddwarf\n\n46) Babamots: Move B2 Orion Greentwo\n\n47) eliscinsky: Build Y2 Eliscinsky\n\n48) Babamots: Move B2 Greentwo Eliscinsky\n\n49) eliscinsky: Attack B2 Eliscinsky\n\n50) Babamots: Sacrifice Y2 Orion\nMove B1 Greentwo Eliscinsky\nMove B1 Greentwo Eliscinsky\nCatastrophe Eliscinsky B\n\n51) eliscinsky: Sacrifice B2 Reddwarf\nTrade R2 Y2 Reddwarf\nTrade Y2 B2 Eliscinsky\n\n52) Babamots: Move R3 Orion Eliscinsky\n\teliscinsky: I concede you have superior skills! But I&#39;ll not give up yet.  I still need to learn more from you. ;)\n\n53) eliscinsky: Sacrifice Y2 Reddwarf\nMove G3 Eliscinsky Orion\nMove G3 Orion Babamots\n\teliscinsky: I see what&#39;s coming :)\n\n54) Babamots: Sacrifice Y2 Babamots\nMove R1 Orion Eliscinsky\nMove R2 Greentwo Eliscinsky\nCatastrophe Eliscinsky R\n\tBabamots: This ending is like the &quot;doomsday machine,&quot; but it takes more moves to complete. I&#39;ve been calling it the &quot;doomsweek machine.&quot;\n\teliscinsky: Ha ha! I like that.  I see no way out. Count down ... 1, BOOM!\n\teliscinsky: BTW, thanks for the lesson.\n\n\teliscinsky: I just wanted the final screen to show I had something on the board.  LOL!\n\teliscinsky: Kill me, Kill me now!\n\tBabamots: Hmm, would you rather have your homeworld destroyed or all your ships captured?\n\tBabamots: I pick destruction :-). GG!\n\nHomeworlds Online (SDG# 35679)\nVariants: &quot;Unrated&quot;\nStarted: 2019.11.4, Ended: 2019.11.11\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G2 R1 B3\n\n2) wil: H B1 Y3 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Build B1 Trydnt\n\n6) wil: B G1 Wil\n\n7) Trydnt: Trade B3 Y3 Trydnt\n\n8) wil: D G1 Wil B2 B2\n\n9) Trydnt: Build B2 Trydnt\n\n10) wil: B G1 Wil\n\n11) Trydnt: Discover B2 Trydnt G3 G3\n\n12) wil: S G3 Wil\nB G2 B2\nB G2 B2\nB G3 Wil\n\n13) Trydnt: Discover B1 Trydnt G3 Gee3\n\n14) wil: T G2 Y2 B2\n\n15) Trydnt: Build B2 Gee3\n\n16) wil: T G2 R2 B2\n\n17) Trydnt: Build B3 G3\n\n18) wil: M R2 B2 Gee3\n\n19) Trydnt: Sacrifice Y3 Trydnt\nDiscover B1 Gee3 G2 G2\nDiscover B2 Gee3 G2 Gee2\nMove B3 G3 Trydnt\n\n20) wil: M Y2 B2 Gee3\n\n21) Trydnt: Build B3 Gee2\n\n22) wil: T G3 B3 Wil\n\n23) Trydnt: Trade B2 Y2 G3\n\n24) wil: B G3 Wil\n\n25) Trydnt: Sacrifice Y2 G3\nMove B1 G2 Wil\nMove B2 Gee2 Wil\nCatastrophe Wil B\n\n26) wil: S G3 Wil\nB G2 B2\nB G3 B2\nB G3 Wil\n\n27) Trydnt: Trade B1 Y1 Trydnt\n\n28) wil: T G2 Y2 B2\n\n29) Trydnt: Build Y1 Trydnt\n\n30) wil: D G3 B2 Y3 Y3\n\n31) Trydnt: Trade B3 R3 Gee2\n\twil: Just got home, bedtime!\n\n32) wil: S G3 Wil\nB G2 B2\nB Y1 B2\nB G3 Wil\n\n33) Trydnt: Sacrifice Y1 Trydnt\nDiscover R3 Gee2 Y3 Why3\n\n34) wil: T G2 R2 B2\n\n35) Trydnt: Move R3 Why3 B2\n\n36) wil: B R1 B2\n\n37) Trydnt: Attack Y2 B2\n\n38) wil: S G3 Y3\nB R1 B2\nB Y1 B2\nB Y2 B2\nC B2 Y\nC B2 R\n\n39) Trydnt: Build Y1 Trydnt\n\n40) wil: S G3 Wil\nB G2 B2\nB G2 Wil\nB G3 B2\n\n41) Trydnt: Move B3 Trydnt Wil\n\n42) wil: S Y2 Gee3\nM R2 Gee3 Trydnt\nD G1 Wil Y2 Y2\n\n43) Trydnt: Move B3 Wil Trydnt\n\n44) wil: S G3 B2\nB G3 B2\nB R1 Trydnt\nB R1 Trydnt\nC Trydnt R\n\n45) Trydnt: Move B3 Trydnt Wil\n\n46) wil: S G3 B2\nB G3 B2\nB G3 Y2\nB G3 Wil\n\n47) Trydnt: Trade B3 R3 Wil\n\n48) wil: T G3 Y3 B2\n\n49) Trydnt: Attack G3 Wil\n\twil: Lol, nice\n\n\tTrydnt: If you had moved the g2 from your hw to mine you could have sacrificed the g2 in b2 to grow the g2 and the g3 in my hw and blow it up. I could only attack the remaining two ships one at a time. My defense could be to move to the g3 as a star but then you can sacrifice a g1 and grow it in my hw and I still have to attack two ships so you would have won. Hard fought game right until the end :)\n\twil: So.many variations this game!\n\nHomeworlds Online (SDG# 35624)\nStarted: 2019.11.4, Ended: 2020.2.14\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G2 Y1 B3\n\n2) MobyNostromo: H B2 G3 Y3\n\n3) Trydnt: Build B1 Trydnt\n\n4) MobyNostromo: Build Y1 Mobynostromo\n\n5) Trydnt: Trade B1 Y1 Trydnt\n\n6) MobyNostromo: Build Y2 Mobynostromo\n\n7) Trydnt: Build Y2 Trydnt\n\n8) MobyNostromo: D Y2 Mobynostromo G1 Moss\n\n9) Trydnt: Discover Y2 Trydnt G3 G3\n\n10) MobyNostromo: T Y1 R1 Mobynostromo\n\n11) Trydnt: Build B1 Trydnt\n\n12) MobyNostromo: B R1 Mobynostromo\n\n13) Trydnt: Trade B1 R1 Trydnt\n\n14) MobyNostromo: B R2 Mobynostromo\n\n15) Trydnt: Build R2 Trydnt\n\n16) MobyNostromo: M R2 Mobynostromo Moss\n\n17) Trydnt: Move R2 Trydnt G3\n\n18) MobyNostromo: T R1 B1 Mobynostromo\n\n19) Trydnt: Build B1 Trydnt\n\n20) MobyNostromo: M B1 Mobynostromo Moss\n\n21) Trydnt: Move B1 Trydnt G3\n\n22) MobyNostromo: B R1 Moss\n\n23) Trydnt: Discover R2 G3 B1 B1\n\n24) MobyNostromo: B B2 Moss\n\n25) Trydnt: Build B2 G3\n\n26) MobyNostromo: T B1 G1 Moss\n\n27) Trydnt: Trade B2 G2 G3\n\n28) MobyNostromo: D G1 Moss Y3 Gold\n\n29) Trydnt: Sacrifice G2 G3\nBuild R2 Trydnt\nBuild R3 B1\n\n30) MobyNostromo: B R3 Mobynostromo\n\n31) Trydnt: Trade R3 G3 B1\n\n32) MobyNostromo: D R2 Moss B3 Phthalo\n\n33) Trydnt: Build R3 B1\n\n34) MobyNostromo: S Y2 Moss\nM R1 Mobynostromo B1\nM R2 Phthalo B1\nC B1 R\n\n35) Trydnt: Move R2 Trydnt Gold\n\n36) MobyNostromo: D G1 Gold G1 Malachite\n\n37) Trydnt: Build G2 B1\n\n38) MobyNostromo: B G2 Malachite\n\n39) Trydnt: Sacrifice G3 B1\nBuild G3 B1\nBuild Y1 Trydnt\nBuild Y2 G3\n\n40) MobyNostromo: S G2 Malachite\nB R1 Mobynostromo\nB R2 Moss\n\n41) Trydnt: Move Y2 G3 B1\n\n42) MobyNostromo: T B2 Y2 Moss\n\n43) Trydnt: Build Y3 G3\n\n44) MobyNostromo: B G2 Malachite\n\n45) Trydnt: Sacrifice G3 B1\nBuild G3 B1\nBuild R2 Trydnt\nBuild R3 Gold\n\n46) MobyNostromo: T R1 B1 Mobynostromo\n\n47) Trydnt: Build B2 G3\n\n48) MobyNostromo: S B1 Mobynostromo\nT G2 B2 Malachite\n\n49) Trydnt: Move G2 B1 Gold\n\n50) MobyNostromo: S Y2 Moss\nM R1 Moss Gold\nM R2 Moss Gold\nC Gold R\n\n51) Trydnt: Sacrifice G2 Gold\nBuild Y2 B1\nBuild Y3 G3\n\n52) MobyNostromo: B R1 Mobynostromo\n\n53) Trydnt: Build G1 B1\n\n54) MobyNostromo: M R3 Mobynostromo Malachite\n\n55) Trydnt: Trade Y2 R2 G3\n\n56) MobyNostromo: T B2 Y2 Malachite\n\n57) Trydnt: Discover Y1 Trydnt B3 B3\n\n58) MobyNostromo: D G1 Malachite B3 Cerulean\n\n59) Trydnt: Move R2 Trydnt Cerulean\n\n60) MobyNostromo: M R3 Malachite Cerulean\n\n61) Trydnt: Sacrifice G3 B1\nBuild R1 Cerulean\nBuild R2 Cerulean\nBuild R3 G3\nCatastrophe Cerulean R\n\n62) MobyNostromo: B G2 Cerulean\n\n63) Trydnt: Build G2 B1\n\n64) MobyNostromo: T G2 R2 Cerulean\n\n65) Trydnt: Move Y3 G3 Malachite\n\n66) MobyNostromo: M Y2 Malachite Cerulean\n\n67) Trydnt: Move B1 G3 Malachite\n\n68) MobyNostromo: B G2 Cerulean\n\n69) Trydnt: Move Y3 Malachite Cerulean\n\n70) MobyNostromo: S G2 Cerulean\nB R1 Cerulean\nB R2 Cerulean\n\n71) Trydnt: Sacrifice R3 G3\nAttack R2 Cerulean\nAttack R2 Cerulean\nAttack Y2 Cerulean\n\n72) MobyNostromo: B R3 Cerulean\nC Cerulean R\n\n73) Trydnt: Trade Y3 R3 Cerulean\n\n74) MobyNostromo: B G2 Cerulean\n\n75) Trydnt: Sacrifice R2 G3\nAttack G2 Cerulean\nAttack G1 Cerulean\n\n76) MobyNostromo: B R1 Mobynostromo\n\n77) Trydnt: Build G3 B1\n\n78) MobyNostromo: M R1 Mobynostromo Malachite\n\n79) Trydnt: Sacrifice G3 B1\nBuild B1 G3\nBuild B2 Malachite\nBuild Y3 G3\n\n80) MobyNostromo: B R2 Malachite\n\n81) Trydnt: Sacrifice R3 Cerulean\nAttack R1 Malachite\nAttack R2 Malachite\nPass\n\n82) MobyNostromo: B R2 Mobynostromo\n\n83) Trydnt: Move G1 Cerulean B1\n\n84) MobyNostromo: M R2 Mobynostromo B1\n\n85) Trydnt: Sacrifice R1 Malachite\nAttack R2 B1\n\n86) MobyNostromo: B R1 Mobynostromo\n\n87) Trydnt: Sacrifice Y1 Trydnt\nDiscover B1 G3 Y1 Y1\n\n88) MobyNostromo: M R1 Mobynostromo Y1\n\n89) Trydnt: Move B1 Y1 Mobynostromo\n\n90) MobyNostromo: B R2 Mobynostromo\n\n91) Trydnt: Sacrifice Y3 G3\nMove B1 Malachite Mobynostromo\nMove G1 B1 Mobynostromo\nMove G1 B1 Mobynostromo\n\n92) MobyNostromo: S R2 Mobynostromo\nA B1 Mobynostromo\nA G1 Mobynostromo\n\n93) Trydnt: Sacrifice Y2 B1\nMove B2 Malachite Mobynostromo\nMove G2 B1 Mobynostromo\nCatastrophe Mobynostromo B\nCatastrophe Mobynostromo G\n\n\nHomeworlds Online (SDG# 35628)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.4, Ended: 2019.11.8\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld Y2 B2 G3 *\n\n2) dlwillson: Homeworld R3 B1 G3 Dlwillson\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Discover G1 Trydnt G1 G1\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Build G1 Trydnt\n\n8) dlwillson: B G2 Dlwillson\n\n9) Trydnt: Build G2 G1\n\n10) dlwillson: B Y1 Dlwillson\n\n11) Trydnt: Discover G1 Trydnt B3 B3\n\n12) dlwillson: T Y1 B1 Dlwillson\n\n13) Trydnt: Sacrifice G2 G1\nBuild G2 B3\nBuild G2 Trydnt\n\n14) dlwillson: M B1 Dlwillson Trydnt\n\n15) Trydnt: Move G2 Trydnt Dlwillson\n\n16) dlwillson: A G2 Dlwillson\n\n17) Trydnt: Build G3 Trydnt\n\n18) dlwillson: S G2 Dlwillson\nB B1 Trydnt\nB B2 Trydnt\nC Trydnt B\n\n19) Trydnt: Trade G2 R2 B3\n\n20) dlwillson: M G3 Dlwillson Trydnt\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B3\nBuild G2 B3\nBuild R1 B3\n\n22) dlwillson: S G2 Dlwillson\nB G2 Trydnt\nB G3 Trydnt\nC Trydnt G\n\n\tTrydnt: well that was a fun little experiment \n\tdlwillson: Good game and thank you! Interesting experiment. Did it go about how you thought it would?\n\tTrydnt: It became obvious pretty quickly that I was in a losing position. I didn&#39;t expect you to choose to make them directly connected. My thinking on taking 2 2-pip stars is that banker and fortress both have advantages in being able to control the stock of 1-pip and 3-pip stars (or turn 3-pip stars into ships later) so if I could fly to 1s and 3s then I&#39;d be more capable of controlling the bank. I also thought having yellow from the start would be great in this situation but I think it would have made more sense to start with something else and trade for yellow. The 2-2 response might be better if you go second as you can choose color more appropriately and doesn&#39;t give opponent the chance to make them directly connected\n\tdlwillson: Wanna do it again? I could take first turn with whatever your like, then you do the thing again, or whatever.\n\tTrydnt: I&#39;d like to play more weird universes. Some are broken but I think that playing even those would lead to some interesting strategy insights\n\nHomeworlds Online (SDG# 35640)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2019.11.4, Ended: 2019.12.5\nParticipants: Trydnt (S), rho0 (N)\nWinner: Trydnt\n\n1) rho0: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) rho0: Build G1 Rho0\n\n4) Trydnt: Build G1 Trydnt\n\n5) rho0: Discover G1 Rho0 Y3 Alpha\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) rho0: Build G1 Alpha\n\n8) Trydnt: Build Y1 Trydnt\n\n9) rho0: Build G1 Alpha\n\n10) Trydnt: Discover Y1 Trydnt B1 B1\n\n11) rho0: Build G2 Rho0\n\n12) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B1\nBuild Y2 B1\nBuild Y3 Trydnt\n\n\nHomeworlds Online (SDG# 35688)\nStarted: 2019.11.6, Ended: 2019.11.9\nParticipants: Babamots (S), Cuc (N)\nWinner: Babamots\n\n1) Cuc: H B1 G2 Y3\n\tBabamots: Hi! Do I remember right that you&#39;ve played HW often in-person but never online? Let me know if you need any help with the commands.\r\n\r\nAnd it sounded like you&#39;ve been making new notes on Homeworlds. I&#39;d be happy to see them when you want to share.\r\n\r\nGood luck!\n\tCuc: How to enter a move? I try this message. Do I use the notes?\n\n2) Babamots: Homeworld G3 B1 B3 *\n\tCuc: Ah, I now assume this input field is indeed the chat field.\n\tCuc: So, yes I&#39;m the guy asking you about the tournament and I played several games in person. The doc can be found here: http://tinyurl.com/BC-Homeworlds-V1. Substantial feedback is welcome per email, see doc.\n\tBabamots: Looks like you figured out how to enter moves and messages :-).\r\n\r\nNotes are just for your own reference. No other players can see them. I think notes are meant for long games when you expect to lose track of what your plan was before your next turn. My notes are usually things like: &quot;Consider continuing to build yellow. Don&#39;t worry about being attacked just yet since his red ship would take two turns to arrive.&quot;\n\n3) Cuc: B Y1 Cuc\n\tCuc: Do you have guidelines to identify SS? Short but clear? I&#39;d hate to type in long names all the time . . . My proposal: use starcolor+starsize+seqletter. Example. I&#39;d enter B Y1 N, then D Y1 N Y3 &quot;y3a&quot;, etc.\n\n4) Babamots: Build B1 Babamots\n\tCuc: I&#39;m glad I&#39;ve got a small user name! I tried N, but it wouldn&#39;t take the command.\n\n5) Cuc: B Y1 Cuc\n\tCuc: Ah! N is the &quot;seat assignment&quot;.\n\tCuc: B Y1 CUC\n\n6) Babamots: Trade B3 Y3 Babamots\n\tBabamots: I have always used worlds from Star Trek as system names (Bolarus is a blue system since Bolians have blue skin, Romulus is a red system since Romulans are aggressive, etc.).\r\n\r\nI can take it easy on your fingers by using short Star Trek names if you prefer.\n\n7) Cuc: T Y1 G1 Cuc\n\tCuc: I tried &quot;T Y1 B1 Cuc&quot; but it won&#39;t accept it, what now?\n\tBabamots: You can&#39;t trade for a b1 since the b1 pieces are gone. That was my devious plan in choosing my home colors.\n\n8) Babamots: Build B2 Babamots\n\n9) Cuc: D G1 Cuc B3 B3a\n\tCuc: Cool! I figured it out 1 sec before I read your answer. Thx!\n\tCuc: I&#39;ll take it slower from here, say once half an hour. I&#39;ll time it. Thx.\n\tBabamots: It&#39;s normal to play fast for a few moves and then slow down to a move every 12 to 48 hours. No worries.\n\n10) Babamots: Discover B1 Babamots G2 Orion\n\n11) Cuc: B G1 B3a\n\tCuc: One more thing, I&#39;m 5 hours behind the clock on this site. You?\n\n12) Babamots: Build B2 Babamots\n\tCuc: I realize that I can build a B2, though. It seems I need to get used to the graphical representation. I&#39;m used to play with real pyramids. I did not expect that to interfere with my understanding of what I can do, but it did. That&#39;s why your joke is now hitting me, haha.\n\tBabamots: I&#39;m in the Eastern USA time zone and the clock has always bee right for me.\r\n\r\nFor me, playing with real pyramids is unfamiliar. It&#39;s very strange for me to reach around the table and move pieces rather than just type commands. With pieces, I find myself reluctant to make new systems because of that bit of extra work to figure where to physically put them.\n\n13) Cuc: B G1 B3a\n\n14) Babamots: Trade B2 G2 Babamots\n\n15) Cuc: T G1 Y1 B3a\n\tCuc: On a table of 3 ft across, it&#39;s very convenient. I like to think I&#39;m replaying an episode of star wars and arrange my pieces in a triangle, large in front.\r\nIn my doc you&#39;ll find 3 variants of Homeworks I invented. The third is &quot;Homeworlds 3000&quot; that allowed more than one ability to be used during one turn. I&#39;m eager to test it out. Is it possible to propose variants (or any game) to SDG development?\r\nI did not include a discussion about the different Homeworlds yet. Notation may not yet be consistent, but I&#39;d prefer to identify a ship by location first, not ship first like here on SDG. I may add the naming convention I&#39;m using in our game. Because it&#39;s the closest to what you&#39;re doing with real pyramids. You don&#39;t give names, but identify a system by it&#39;s star, naturally.\n\n16) Babamots: Discover G2 Babamots B2 Bajor\n\tCuc: How do you monitor your game? It seems you respond pretty fast. It&#39;s appreciated. I normally refresh the screen.\n\n17) Cuc: B Y1 B3a\n\tBabamots: I have an alert set up on my phone. When I get an email from SDG, there&#39;s a special chime. If I&#39;m at a computer, I often move within a minute.\n\n18) Babamots: Build Y2 Babamots\n\tBabamots: SDG isn&#39;t under development anymore. Aaron is working on a totally new and improved site called Abstract Play. Right now it&#39;s just a development blog that hasn&#39;t bee updated lately:\r\n\r\nhttps://www.abstractplay.com/\n\tCuc: Cool! I&#39;ll try and remember that. Soon I&#39;m getting a new phone, but I normally do not use sounds on my phone. I may make an exception . . .\n\n19) Cuc: D Y1 Cuc G3 G3a\n\n20) Babamots: Build B2 Orion\n\tBabamots: Hmm, I&#39;ll probably need to come back to this and pick a move in the morning.\n\tCuc: Ok, no. It was fun today! Thx.\n\tCuc: No = np\n\n21) Cuc: B Y2 G3a\n\n22) Babamots: Build B3 Orion\n\tCuc: I&#39;ve got about 20 min till 2:40p\n\n23) Cuc: B Y2 Cuc\n\n24) Babamots: Trade B3 Y3 Orion\n\n25) Cuc: D G1 B3a R2 R2a\n\n26) Babamots: Build B3 Orion\n\n27) Cuc: T Y3 B3 Cuc\n\n28) Babamots: Trade B3 R3 Orion\n\tCuc: It&#39;s getting dangerous . . . \n\n29) Cuc: T B3 R3 Cuc\n\tBabamots: Yep, any slip from either of us could be deadly. Both players having lots of yellow seems to do that.\n\n30) Babamots: Build Y3 Orion\n\n31) Cuc: B R1 Cuc\n\tCuc: I undid my last move, because I realized I need to have a Large Red in my HW, but mainly to test the UNDO button/function. \r\n\r\nAlso, I got the insight that if I need to refer to any longnamed Star System, I can simply copy it from the log below. Problem solved. In any case, I still like my naming, so I don&#39;t get distracted.\n\tBabamots: Notice that the UNDO button only works once per move. I think there may also be a time limit where, even if your opponent hasn&#39;t moved yet, the UNDO button disappears after a few days. I haven&#39;t studied it carefully though.\n\tBabamots: I&#39;ve often considered annoying my opponents by using barcode system names made of I&#39;s (capital i) and l&#39;s (lowercase L). My opponent would have to copy and paste the name from the log every time. Not very good sportsmanship, but it could wear down their willpower.\n\n32) Babamots: Build B3 Orion\n\tBabamots: \n\tBabamots: I think you made your best move, but it doesn&#39;t take a large red to attack a large red. Any large ship can attack if there is a friendly red in the system (or sacrificed). It sounded like you might have forgotten the rules slightly, and thinking that only red ships can attack is a common mistake.\r\n\r\nA red anywhere is a red everywhere (meaning by sacrifice. I&#39;ve been trying to get that saying to catch on).\n\n33) Cuc: S Y2 Cuc\nD R1 Cuc G3 G3b\nM G1 R2a G3b\n\tCuc: I didn&#39;t forget that, but then I realized I&#39;d have to keep a Red AND another Large ship in my HW (I&#39;d rather not waste my Reds). Not too efficient in this case. In any case, I agree with you about the rules. I&#39;m desperately trying to get a Large extra somewhere. But it seems I&#39;m a bit cornered right now. Also, your Large Reds can be sacrificed to produce 3 attacks. And soon, you&#39;ll just flood my HW sacrificing the Large Yellows? I think I&#39;m doomed, as I am not developing fast enough.\n\tCuc: &quot;but I could wear down their willpower&quot;. I thought I was devious by confusing them by suggesting a SS-name that really isn&#39;t what it says it is, such as R3A for a G1A (if I didn&#39;t even have a G1-system), and then creating a G1B calling it R1A, etc. ESPECIALLY if they got used to the &quot;convenience&quot; of naming them thus. Funny. Well, I&#39;ll stay with sportsmanship . . .\n\n34) Babamots: Move Y3 Orion G3b\n\tCuc: Thx for the remarks on the UNDO button. I&#39;ll make some notes in review of this game so I won&#39;t forget those details. This game is certainly a success, as I&#39;ve survived until now!\n\n35) Cuc: B R1 Cuc\n\n36) Babamots: Sacrifice Y3 Orion\nMove B3 Orion G3b\nMove B3 G3b Cuc\nMove Y3 G3b Cuc\n\tCuc: I made a mistake (fooled myself), so sometimes I just need to UNDO, I guess, to correct a typo. I&#39;d better be quick, before you respond :-).\n\tBabamots: You hit undo before I got the page loaded. You&#39;re lucky I&#39;m at the doctor and have bad reception. At home, I might have won the race. :-)\n\tCuc: Another question: what do you use for time settings, I chose 4/6/13, so that I&#39;d get a response in 1 week, or win in 2 weeks (that&#39;s how I read it.) But perhaps there is a convention you propose, especially for the tournament? \n\tCuc: Of course, you&#39;re much faster than that, I now realize, but sometimes for me, days may pass that I can&#39;t look at the game, or it will be at an odd time for you. Also, I wouldn&#39;t like to play under pressure, and a week is VERY comfy for me. That&#39;s because most weeks have a similar activity pattern . . .\n\n37) Cuc: A Y3 Cuc\n\tBabamots: I&#39;m not sure I understand what you&#39;ve said about the 4/6/13 setting. You you have 2 weeks to win, but it&#39;s more like you have two weeks (13 days) to move. That setting means players start with 4 days on their individual clocks and 6 days are added each time one of them moves up to a maximum of 13 days.\r\n\r\nI&#39;ve settled on 7/2/7 as my preferred clock setting. It&#39;s rare for me to need more than 2 days to move, and maxing the clock at 7 days means that I always feel compelled to make a move after about 4 days (half my timer), no matter how busy I am or how reluctant I am to continue in a game that I&#39;m losing.\n\tCuc: I guess I&#39;m missing what the last setting means. I seem to remember that if your opponent doesn&#39;t respond by that time, you may consider it a win? Perhaps it is related to &quot;hard/soft time&quot;. I&#39;m still new at this, and I was a bit overwhelmed by the detail here.\n\tCuc: Dang, I see I could&#39;ve eradicated most of your Yellow. Oh well. I was so concerned about denying you the Large Green.\n\n38) Babamots: Sacrifice R3 Orion\nAttack R3 Cuc\nAttack Y3 Cuc\nAttack R1 Cuc\n\tBabamots: If the details won&#39;t be too much, I&#39;ll give a fuller explanation of the timers later. My move will have to wait too as I have a work party to attend. There&#39;s supposed to be pizza, so it should be OK :-).\n\tCuc: Sounds good. Have fun!\n\n\tCuc: I practically am breathing out my last air. Perhaps you&#39;d consider blowing up Blue in Cuc?\n\tBabamots: I&#39;m afraid I can&#39;t settle for catastrophe here. Red-powered invasions are my preferred path to victory.\n\tBabamots: Pretty good. Want to try another one?\n\tCuc: It&#39;s been great practicing. N this game I don&#39;t understand why I couldn&#39;t build what I wanted. You did something tricky perhaps, meaning advanced strategy?\n\tCuc: Ah, you caught me there. I was hoping to lash out with my 3R once B was gone. Nothing to a veteran of your caliber . . .\r\n\r\nSure, I&#39;ll play another. But please be patient. I&#39;ll set it up tomorrow by the end of the day. Thx.\r\nAny explanations? \r\nDo you have a strategy guide?\n\tBabamots: I&#39;ve issued a challenge for whenever you&#39;re ready.\r\n\r\nSince you didn&#39;t have access to blue, I was able to use blue as a shortcut to getting large pieces of other colors. I think the best thing you could have done different was to, at some point, trade your original large ship for a b3 so that you could also build larger ships.\r\n\r\nHere&#39;s my strategy guide:\r\n\r\n====\r\nThe most important questions\r\n====\r\n\r\n&quot;If I did nothing this turn, what would my opponent&#39;s best move be?&quot;\r\n&quot;If I make this move that I am considering, what will my opponent&#39;s best move be?&quot;\r\n\r\n====\r\nAfter your opponent moves\r\n====\r\n\r\nIdentify what objective(s) they were trying to accomplish\r\n* Was it a &quot;victory?&quot; Did they just get what they wanted?\r\n* Or was it a &quot;setup?&quot; Is there something they want that they got closer to?\r\n    - If it is a setup, can you spoil it?\r\n    - Or can you predict what their next move will and get a head start on reacting to it?\r\n    - Or is it safe to work on a plan of your own while they build toward their goal?\r\n* Or was it a retreat? Were they just reacting to your last move?\r\n\r\nSOME MOVES CAN BE MULTI-PURPOSE. After you see one purpose to your opponent&#39;s move, look for more.\r\n\r\n====\r\nWill your move leave a desirable piece available for your opponent to build?\r\n====\r\nAre you building the last ship of that size?\r\nAre you discovering a system marker with the last pieces of that size?\r\nAre you abandoning a system? Will they want the marker?\r\nAre you trading a ship? Will they get the old piece?\r\nAre you sacrificing a ship? Will they build it?\r\nAre you causing a catastrophe? Will they want the pieces?\r\nIf your opponent has a medium or large green, can they sacrifice it to skip past a size in the bank and get a larger size than you could?\r\n\r\n====\r\nSpecific things that are tiresome to constantly consider but neglect will cost you games\r\n====\r\n\r\nIdentify every catastrophe your opponent could possibly cause\r\n* Yellow sacrifices provide extreme mobility. Check twice.\r\n\r\nWhat if your opponent attempted an all-in homeworld attack right now?\r\n* If they were to start moving all their ships into your home as quickly as possible, what would happen?\r\n* Could you attack the ships as quickly as they arrived?\r\n* Could there be a catastrophe that you wouldn&#39;t have time to prevent?\r\n* If their attack would just barely fail, what more do they need to make it succeed?\r\n\r\nWhat if YOU were to attempt an all-in homeworld attack right now?\r\n* What more do you need to make it succeed?\r\n\r\n====\r\nRed flags\r\n====\r\n\r\nHere are BAD situations.\r\nThings high on the list are worst.\r\nI need to avoid these things (unless I can make something even worse happen to my opponent).\r\nContrariwise, it&#39;s good if my opponent has one of these problems.\r\n\r\n1.  I have no ships in my home and I lose the game (worst thing that can happen).\r\n2.  My opponent has more ships in my home system than I can capture in one turn, even by sacrificing my largest red.\r\n3.  One of my home system markers is destroyed.\r\n4.  I don&#39;t have a large ship in my home system.\r\n5.  There is a near-catastrophe (three pieces) involving my ships (or the marker for a system where I have ships).\r\n6.  My opponent has a red ship (anywhere) and I do not.\r\n7.  My opponent has more large ships than me.\r\n8.  My opponent has more yellow ships than me.\r\n9.  My opponent has a ship in the same system as me and it&#39;s bigger than my ships there.\r\n10. My only large ship in my home system is the same color as one (or more!) ships or markers in my home.\r\n11. The ship(s) in my home system are all the same color (even worse if I also have a home system marker of that color).\r\n\r\n====\r\nOther thoughts\r\n====\r\n\r\nHomeworlds is a game where it&#39;s easy to charge ahead with your own plans while ignoring what your opponent is up to until it&#39;s too late. That&#39;s why these tips focus on making sure you look at what your opponent is working on. Choosing a goal and taking little steps toward it is easy. Figuring out your opponent&#39;s plans takes work.\r\n\n\tBabamots: Just my strategy guide into a webpage. Shoulda done that long ago:\r\nhttps://jpeterbaker.github.io/homeworlds/strategyGuide.html\n\nHomeworlds Online (SDG# 35689)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.7, Ended: 2019.11.14\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B1 Y2 G3\n\twil: Welcome to the top, good job young padwan...\n\n2) Trydnt: Homeworld G3 B1 B3 *\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) wil: D G1 Wil B3 B3\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: B G1 Wil\n\n10) Trydnt: Trade B2 G2 Trydnt\n\n11) wil: D G1 Wil Y3 Y3\n\n12) Trydnt: Discover G2 Trydnt Y2 Y2\n\n13) wil: B G2 B3\n\n14) Trydnt: Move G2 Y2 Y3\n\n15) wil: S G3 Wil\nB G2 Y3\nB G3 Y3\nB G3 Wil\nC Y3 G\n\n16) Trydnt: Build B2 Trydnt\n\n17) wil: T G2 B2 B3\n\n18) Trydnt: Discover B2 Trydnt Y2 Y2\n\n19) wil: B G1 Wil\n\n20) Trydnt: Build B2 Trydnt\n\n21) wil: D G1 Wil B3 Bee3\n\n22) Trydnt: Discover B2 Trydnt Y2 Why2\n\n23) wil: D G1 Wil B3 Btree\n\n24) Trydnt: Trade B2 G2 Y2\n\n25) wil: B G2 Wil\n\n26) Trydnt: Discover B2 Why2 G3 G3\n\n27) wil: S G3 Wil\nB G2 Bee3\nB G3 Wil\nB B2 B3\n\n28) Trydnt: Trade B1 R1 Trydnt\n\n29) wil: T G1 R1 Bee3\n\n30) Trydnt: Build G1 Y2\n\n31) wil: T B2 Y2 B3\n\n32) Trydnt: Build Y1 Trydnt\n\n33) wil: S G3 Wil\nB G3 Wil\nB Y1 B3\nB R1 Bee3\n\n34) Trydnt: Build R2 Trydnt\n\n35) wil: D Y1 B3 B2 B2\n\n36) Trydnt: Move R2 Trydnt B2\n\n37) wil: S G3 Wil\nB G3 Wil\nB Y1 B3\nB Y3 B2\n\n38) Trydnt: Sacrifice Y1 Trydnt\nDiscover G2 Y2 Y3 Y3\n\n39) wil: S G2 Wil\nB G2 B3\nB R2 Bee3\n\n40) Trydnt: Sacrifice G2 Y3\nBuild R2 B2\nBuild R3 Trydnt\n\twil: You just visiting? Or staying for dinner?\n\n41) wil: S R2 Bee3\nA R2 B2\nA R2 B2\n\n42) Trydnt: Move R3 Trydnt Y2\n\twil: So close!  You were almost successful!  Awesome setup!\n\n43) wil: B G2 Wil\n\twil: I was so lucky, I almost fell for your trap!\n\n44) Trydnt: Move R3 Y2 Btree\n\n45) wil: S G3 Wil\nB G3 Wil\nB Y1 B2\nB Y3 B3\n\n46) Trydnt: Attack G1 Btree\n\tTrydnt: Bluebird may have been my only hope. Blundered the blue freezeout somehow\n\n47) wil: S G2 Wil\nB G2 Bee3\nB R2 Bee3\n\twil: it&#39;s a trap and I can&#39;t see it. Beware the speech\n\n48) Trydnt: Build R3 Trydnt\n\n49) wil: S Y3 B3\nM R2 B2 Trydnt\nM R2 B2 Trydnt\nM Y3 B2 Trydnt\nC Trydnt R\n\twil: I was afraid of the other one...let&#39;s see!\n\n50) Trydnt: Sacrifice Y3 Trydnt\nMove R3 Btree Wil\nMove G1 Btree Wil\nMove G1 Y2 Trydnt\n\n51) wil: S R1 Bee3\nA G1 Trydnt\n\n\tTrydnt: I wanted to send the b2 in to your hw too for a last vainglorious assault on the death star that ultimately failed. Well played and enjoy the top ;)\n\twil: Lol, tough to last long at the top round here.\n\nHomeworlds Online (SDG# 35686)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2019.11.7, Ended: 2019.11.19\nParticipants: capi3101 (S), rho0 (N)\nWinner: capi3101\n\n1) rho0: Homeworld B2 Y1 G3\n\tcapi3101: Howdy. You up for a rematch?\n\n2) capi3101: Homeworld R3 B2 G3\n\n\trho0: always\n\nHomeworlds Online (SDG# 35685)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.7, Ended: 2019.11.22\nParticipants: dlwillson (S), capi3101 (N)\nWinner: dlwillson\n\n1) capi3101: Homeworld B2 R3 G3\n\tcapi3101: Greetings! Best of luck; my record hasn&#39;t been all that great with this game so far...\n\n2) dlwillson: H R3 B1 G3\n\n3) capi3101: Build G1 Capi3101\n\tdlwillson: Thank you for accepting my challenge! Good luck, and have fun!\n\n4) dlwillson: B G1 Dlwillson\n\n5) capi3101: Trade G1 Y1 Capi3101\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) capi3101: Build G1 Capi3101\n\n8) dlwillson: B G1 Dlwillson\n\n9) capi3101: Discover G1 Capi3101 B1 Aleph\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) capi3101: Build G1 Aleph\n\n12) dlwillson: B B2 Dlwillson\n\tcapi3101: Aw, heck.\n\n13) capi3101: Trade G1 R1 Aleph\n\n14) dlwillson: T B1 R1 Dlwillson\n\n15) capi3101: Build G1 Aleph\n\n16) dlwillson: D B2 Dlwillson Y2 Golden\n\n17) capi3101: Trade G1 Y1 Aleph\n\n18) dlwillson: M B2 Golden Aleph\n\n19) capi3101: Build Y2 Capi3101\n\n20) dlwillson: S R1 Dlwillson\nA R1 Aleph\n\n21) capi3101: Sacrifice Y2 Capi3101\nDiscover Y1 Aleph Y2 Bet\nDiscover G1 Aleph B2 Gimel\n\n22) dlwillson: B Y2 Dlwillson\n\n23) capi3101: Sacrifice G3 Capi3101\nBuild Y2 Bet\nBuild Y3 Capi3101\nBuild Y3 Capi3101\n\n24) dlwillson: M Y1 Dlwillson Bet\nC Bet Y\n\n25) capi3101: Trade Y3 R3 Capi3101\n\n26) dlwillson: T B2 G2 Aleph\n\tcapi3101: ...as planned.\n\n27) capi3101: Move R3 Capi3101 Aleph\n\n28) dlwillson: S G2 Aleph\nB R1 Aleph\nB G1 Dlwillson\n\n29) capi3101: Sacrifice Y1 Capi3101\nMove R3 Aleph Gimel\n\n30) dlwillson: T R1 G1 Aleph\n\n31) capi3101: Trade Y3 G3 Capi3101\n\tcapi3101: Damn. Going to lose it. Let&#39;s see if I can try to lose it on my own terms at least.\n\n32) dlwillson: B G2 Aleph\n\n33) capi3101: Build G2 Gimel\n\n34) dlwillson: B G2 Aleph\n\n35) capi3101: Trade G2 Y2 Gimel\n\n36) dlwillson: T G2 Y2 Aleph\n\n37) capi3101: Build G2 Gimel\n\n38) dlwillson: D G1 Dlwillson B2 Sea\n\n39) capi3101: Move G1 Gimel Aleph\n\n40) dlwillson: Sacrifice Y2 Aleph\nMove G1 Aleph Capi3101\nMove G2 Aleph Capi3101\n\n41) capi3101: Trade G3 Y3 Capi3101\n\n42) dlwillson: A G1 Aleph\n\tdlwillson: What does that mean?\n\tcapi3101: Which &#145;that&#146; in particular?\n\n43) capi3101: Attack G2 Capi3101\n\n44) dlwillson: S G1 Capi3101\nB G1 Dlwillson\n\tdlwillson: &quot;lose it on my own terms&quot;\n\tcapi3101: Oh, that. At the time I was thinking I&#146;d have to sacrifice the big red piece on the next move no matter what. Things worked out differently.\n\n45) capi3101: Build R1 Gimel\n\n46) dlwillson: Build Y1 Dlwillson\n\tdlwillson: Ah, OK!\n\tcapi3101: I&#146;m still going to lose it; just got to hang on to it a little longer than I first thought.\n\n47) capi3101: Move R3 Gimel Aleph\n\n48) dlwillson: B R1 Aleph\n\n49) capi3101: Trade R3 B3 Aleph\n\n50) dlwillson: T Y1 B1 Dlwillson\n\tdlwillson: I don&#39;t know. You&#39;re a big ahead. That matters quite a lot. I *had* it until I launched that expensive and doomed attack on your home system.\n\tcapi3101: Yeah, I came up with an alternative strategy. One of the things I love/hate about this game - there&#39;s so many different ways to respond/counterattack to each move.\n\tcapi3101: You&#39;ve about finished me off twice if I&#39;ve counted right...just as I&#39;ve almost gotten you once.\n\n51) capi3101: Sacrifice G2 Capi3101\nBuild G2 Gimel\nBuild B3 Aleph\n\n52) dlwillson: S G3 Dlwillson\nB G2 Aleph\nB G3 Sea\nB G3 Dlwillson\n\n53) capi3101: Trade G2 Y2 Gimel\n\n54) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G3 Aleph\nB G3 Dlwillson\n\n55) capi3101: Move G2 Gimel Aleph\nCatastrophe Aleph G\n\n56) dlwillson: Sacrifice Y2 Dlwillson\nMove B1 Dlwillson Sea\nMove B1 Sea Aleph\nCatastrophe Aleph B\n\n57) capi3101: Trade Y3 G3 Capi3101\n\tcapi3101: No, that actually was what I wanted to do, on closer reflection.\n\n58) dlwillson: T G3 Y3 Dlwillson\n\n59) capi3101: Build G1 Capi3101\n\n60) dlwillson: T G2 Y2 Sea\n\tcapi3101: Naw...that&#39;s really my only option. Damn.\n\n61) capi3101: Trade Y2 G2 Gimel\n\tcapi3101: Got a bad feeling about this.\n\n62) dlwillson: S Y2 Sea\nD G3 Sea B1 Sky\nM G3 Sky Capi3101\n\tcapi3101: Yeah. Saw that coming. Wasn&#39;t sure you&#39;d do it or not but it made sense.\n\n\tcapi3101: Ah...crap. Well played.\n\tdlwillson: Thanks, and good game!\n\nHomeworlds Online (SDG# 35684)\nStarted: 2019.11.7, Ended: 2019.12.24\nParticipants: capi3101 (S), MobyNostromo (N)\nWinner: capi3101\n\n1) MobyNostromo: H Y2 B3 G3\n\n2) capi3101: Homeworld R3 B1 G3\n\n3) MobyNostromo: B G1 Mobynostromo\n\tcapi3101: Howdy. Do you have a preferred system for naming star systems?\n\tMobyNostromo: Hi. I just have fun with the colors by naming them things like Moss, Amber, Sky, and things like that. How about you?\n\n4) capi3101: Build G1 Capi3101\n\n5) MobyNostromo: T G1 Y1 Mobynostromo\n\n6) capi3101: Build G1 Capi3101\n\n7) MobyNostromo: B Y1 Mobynostromo\n\n8) capi3101: Trade G1 Y1 Capi3101\n\n9) MobyNostromo: D Y1 Mobynostromo G1 Moss\n\n10) capi3101: Trade G1 B1 Capi3101\n\n11) MobyNostromo: B Y2 Moss\n\n12) capi3101: Sacrifice G3 Capi3101\nBuild Y2 Capi3101\nBuild Y3 Capi3101\nBuild B1 Capi3101\n\tcapi3101: I don&#39;t really have a preference just yet. Was doing them in Latin but that was getting cumbersome. Think this time around I&#39;ll try Greek numerals...\n\n13) MobyNostromo: Build G1 Mobynostromo\n\tcapi3101: Don&#39;t want to get locked out entirely.\n\n14) capi3101: Sacrifice Y2 Capi3101\nDiscover Y1 Capi3101 G2 Ena\nMove B1 Capi3101 Ena\n\tcapi3101: Oh damn.\n\tcapi3101: That was stupid of me.\n\tcapi3101: ...and I can&#39;t undo that one either.\n\tMobyNostromo: That&#39;s cool. I won&#39;t create a Catastrophe this round (but you&#39;ve got one turn to get out of Dodge). :)\n\n15) MobyNostromo: T G3 B3 Mobynostromo\n\n16) capi3101: Trade Y3 G3 Capi3101\n\tcapi3101: I appreciate that; I was going to offer to resign and restart the game.\n\tcapi3101: Tell you what - I&#39;ll offer you a free move in exchange. Just holler when you want to use it and I&#39;ll pass my next turn.\n\tcapi3101: If the system will let me, of course...I assuming it will.\n\n17) MobyNostromo: B B2 Mobynostromo\n\tMobyNostromo: No worries. This is a gentleman&#39;s game. ;)\n\tMobyNostromo: Plus, I have a feeling you can&#39;t pass. I could be wrong.\n\tMobyNostromo: I just checked. Yes, I&#39;m wrong. You can pass, apparently.\n\n18) capi3101: Discover B1 Ena G1 Duo\n\n19) MobyNostromo: M B2 Mobynostromo Moss\n\n20) capi3101: Build B2 Capi3101\n\n21) MobyNostromo: B G2 Mobynostromo\n\n22) capi3101: T B2 Y2 Capi3101\n\n23) MobyNostromo: T Y1 R1 Moss\n\n24) capi3101: Sacrifice G3 Capi3101\nBuild Y1 Ena\nBuild Y3 Capi3101\nBuild Y3 Capi3101\n\n25) MobyNostromo: M R1 Moss Ena\n\n26) capi3101: Trade Y3 R3 Capi3101\n\n\n27) MobyNostromo: A Y1 Ena\n\n28) capi3101: Move R3 Capi3101 Ena\n\n29) MobyNostromo: T G1 R1 Mobynostromo\n\n30) capi3101: Attack R1 Ena\n\n31) MobyNostromo: D Y1 Ena G3 Gaia\n\n32) capi3101: B Y3 Ena\n\n33) MobyNostromo: B Y3 Moss\n\n34) capi3101: Move Y3 Ena Duo\n\n35) MobyNostromo: B B2 Moss\n\n36) capi3101: Move R1 Ena Duo\n\n37) MobyNostromo: M B2 Moss Gaia\n\n38) capi3101: Build B2 Duo\n\n39) MobyNostromo: B B3 Moss\n\n40) capi3101: Sacrifice Y2 Capi3101\nMove B2 Duo Mobynostromo\nMove B1 Duo Mobynostromo\nCatastrophe Mobynostromo B\n\n41) MobyNostromo: M B3 Moss Mobynostromo\n\n42) capi3101: Build Y2 Ena\n\n43) MobyNostromo: T B2 R2 Moss\n\n44) capi3101: Sacrifice Y2 Ena\nMove Y3 Capi3101 Mobynostromo\nMove Y3 Duo Mobynostromo\nCatastrophe Mobynostromo Y\n\n\tcapi3101: Good game; if you want a rematch, just let me know.\n\tMobyNostromo: Sure. Let&#39;s try another one.\n\nHomeworlds Online (SDG# 35600)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.7, Ended: 2019.11.15\nParticipants: Collin (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G3 Y3 *\n\n2) Collin: Homeworld Y1 B2 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) Collin: Build G1 Collin\n\n5) Trydnt: Build Y1 Trydnt\n\n\nHomeworlds Online (SDG# 35619)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.7, Ended: 2019.11.19\nParticipants: wil (S), Collin (N)\nWinner: wil\n\n1) Collin: Homeworld Y3 B2 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) Collin: Build G1 Collin\n\n4) wil: B G1 Wil\n\n5) Collin: Discover G3 Collin B1 Alpha\n\n6) wil: T G1 B1 Wil\n\n7) Collin: Build G1 Alpha\n\twil: In chess it often ain&#39;t good to move the queen out early\n\n8) wil: B B1 Wil\n\n\twil: Oh phooey\n\nHomeworlds Online (SDG# 35671)\nVariants: &quot;Unrated&quot;\nStarted: 2019.11.7, Ended: 2019.12.5\nParticipants: Trydnt (S), Collin (N)\nWinner: Trydnt\n\n1) Collin: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) Collin: Build G1 Collin\n\n4) Trydnt: Build G1 Trydnt\n\n\nHomeworlds Online (SDG# 35672)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.11.7, Ended: 2019.11.14\nParticipants: capi3101 (S), Collin (N)\nWinner: capi3101\n\n1) Collin: Homeworld Y2 B1 G3\n\n2) capi3101: Homeworld R3 B2 G3\n\n3) Collin: Build G1 Collin\n\tcapi3101: Greetings! Good luck.\n\tCollin: thanks! you as well\n\n4) capi3101: Build G1 Capi3101\n\n5) Collin: Trade G3 R3 Collin\n\n6) capi3101: Trade G1 B1 Capi3101\n\n\nHomeworlds Online (SDG# 35703)\nStarted: 2019.11.10, Ended: 2019.11.15\nParticipants: Babamots (S), Cuc (N)\nWinner: Babamots\n\n1) Cuc: Homeworld B1 G2 Y3\n\n2) Babamots: Homeworld G3 B1 B3 *\n\tCuc: Thx!\n\tCuc: Would you be OK with me including your strategy in a document I want to share? Of course, I&#39;ll attribute it to you and mention your website. My updated version of the standalone is http://tinyurl.com/BC-Homeworlds-V1-2\n\tCuc: Would you be OK with me including your strategy in a document I want to share? Of course, I&#39;ll attribute it to you and mention your website. My updated version of the standalone is http://tinyurl.com/BC-Homeworlds-V1-2\n\tCuc: Hm, it allowed me to submit the same message twice while updating the page after the first submit.\n\tBabamots: Sure, you can include my thoughts in your notes. I&#39;ll start reading them later, but they look interesting.\n\n3) Cuc: B Y1 Cuc\n\n4) Babamots: Build B1 Babamots\n\tCuc: Thx. When done I&#39;ll send you an update.\n\tBabamots: So I&#39;m trying that sneaky early blue freeze again. You can join the blue economy by trading your large yellow for blue. Not doing that last game was a big part of why you fell behind.\n\n5) Cuc: Build Y1 Cuc\n\n6) Babamots: Trade B3 Y3 Babamots\n\tCuc: Thx for the heads up. Now, I wonder if I had done H G1 B2 if that matters compared to H B1 G2? In any case, it&#39;s about the timing. As long as there is a B3 in the bank, I guess that I&#39;ll always be able to get a B3. Also, I am going to do it a bit different with my Yellow ships. I did not do last game what I&#39;ve been doing in other games. In any case, I&#39;m confident I can do better this time, but if it&#39;s enough to win remains to be seen. \n\n7) Cuc: Discover Y1 Cuc G3 G3a\n\n8) Babamots: Build B2 Babamots\n\n9) Cuc: Trade Y3 B3 Cuc\n\n10) Babamots: Trade B2 R2 Babamots\n\n11) Cuc: Build Y1 Cuc\n\tBabamots: I&#39;ve been reading your notes on Homeworlds. The &quot;Red Hulk&quot; part of the strategy section seems wrong, or else I have misunderstood it. In order to defend a home invasion consisting of a single r3 ship, all that a player needs is a large ship at home and a red ship anywhere (not necessarily in their home system). Sacrificing that red will let them capture the r3, invasion over.\r\n\r\nIf you meant to say that the &quot;Red Hulk&quot; maneuver requires that your opponent has no red ships *anywhere*, then I agree. That&#39;s one reason that it&#39;s usually essential to get a red ship immediately if your opponent has one.\n\n12) Babamots: Build Y2 Babamots\n\n13) Cuc: Build Y2 Cuc\n\tCuc: I saw you are playing a version of Zendo. Do you have the rules for this version? What tool you use to construct (draw) the koans? I think the rule is: a graph such that each vertex is blue, has an even number of lines and there is at least one vertex with 4 lines.\r\nThe last excludes the hexagon or a square.\n\tCuc: It&#39;s game 35538\n\n14) Babamots: Discover Y2 Babamots G2 Bajor\n\tBabamots: In graph-Zendo, only the graph structure itself matters, not the colors or the layout used to draw it.\r\n\r\nI&#39;m using networkx in Python to draw my graphs. Some of the others are using a collection of graph images that analogkid put together.\n\tCuc: I did not write what I actually think the rule was. Here is another go: a KHTBN if every vertex is blue, each vertex has an even number of lines,  and there is at least one vertex with 4 lines.\r\nThe last excludes the hexagon or a square.\n\tCuc: Do you have a link to networkx, so I can play the game too? If I start the game, do I have an option to use different tools? Can you play the game without installing any tools? (You said that there is a library from analogkid. How to access it?)\n\n15) Cuc: Discover Y2 Cuc B3 B3a\n\n16) Babamots: Build B2 Babamots\n\tCuc: I made a mistake. I thought you couldn&#39;t sacrifice your Y3, but you&#39;ve got too many other ships in your HW. I am not used to not see all the board at the same time I am committing to a move. So, you can move your Y2 over to my HW if you want. It will call an Extinction (Catastrophe). At least, we will see some fireworks, haha.\n\tCuc: I should&#39;ve created my Y2 in G3A.\r\nBy the way, the naming convention I have decided upon can include &lt;color&gt;&lt;size&gt;&lt;player direction&gt;&lt;sequence letter&gt;. So, my G3A should&#39;ve been G3NA, so you can also see who created the system. It&#39;s not relevant for the game, but it&#39;s relevant for fluid play, so you don&#39;t get confused.\r\nIn any case, if you decide to move your Y2, I will survive, and we both loose all our Yellow in our HW&#39;s.\n\tCuc: See you tomorrow (Wednesday). In fact, it&#39;s already tomorrow here, too. (And that is one of those times where &quot;tomorrow&quot; can actually be used to refer to the *present* . . . mind blowing, isn&#39;t it?)\n\n17) Cuc: Build Y2 G3a\n\n18) Babamots: Build Y3 Babamots\n\n19) Cuc: Build Y3 G3a\n\n20) Babamots: Trade Y3 G3 Babamots\n\n21) Cuc: Discover Y3 G3a B2 B2a\n\n22) Babamots: Sacrifice Y3 Babamots\nMove G3 Babamots Bajor\nMove G3 Bajor B3a\nMove G3 B3a Cuc\n\n23) Cuc: Trade B3 R3 Cuc\n\n24) Babamots: Sacrifice R2 Babamots\nAttack R3 Cuc\nAttack Y1 Cuc\n\n25) Cuc: S Y3 B2a\nM Y2 G3a Cuc\nM Y1 G3a Cuc\nM Y2 B3a Cuc\n\n26) Babamots: Catastrophe Cuc Y\nPass\n\n\tCuc: It shows that somehow you used minimal equipment and I&#39;m powerless to defend. All for one, one for all.\n\tCuc: You could conquer 3 ships, then trade your g3 for a r3 and conquer 3 more. With 2 ships in my HW you&#39;re quite powerful.\n\tCuc: Count me in for another game . . .\r\n-\r\nI neglected to defend my HW, so when you moved over I was done. I&#39;m going to look back and see when I should&#39;ve gotten red in my HW.\n\tBabamots: One thing is that the defensive red doesn&#39;t even need to be in your homeworld (which is one of the things I was saying about your &quot;Red Hulk&quot; maneuver). My red ship let me invade your home even though my red didn&#39;t go to your home. The same technique works for defense. You just need a red *somewhere* as a defensive weapon *everywhere*.\r\n\r\nI got a red ship on my 5th move:\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=35703&amp;idx=9\r\n\r\nYou could have traded yellow for red on your 6th or 7th move, but I agree with your decision to invest in yellow ships during those moves. Trading for red during your 6th move would have required trading away your only yellow at home, which is bad. On your 7th move, you built your first medium ship, which helped you to keep up with my growth rate. I didn&#39;t have an immediate way to force an encounter that was favorable for me, so these 6th and 7th moves were safe for you.\r\n\r\nI think the best time to get red would have been on your 8th move. Trading any of your home yellows for red would have reduced your yellow concentration (setting you up to safely build yellow again) and created a defensive weapon.\n\tCuc: Yes, I remember that I considered what next to do. It seems in this game and the previous that I was trying to do too much towards a goal, but did not do what was necessary to defend my Homeworld.\r\nThx for the analysis. I&#39;m learning from it.\r\n-\r\nThe Red Hulk is only working because it&#39;s like 2 in 1; it&#39;s large and it&#39;s red. In the way you are describing it, it always requires the sacrifice of a Red ship; and you can only sacrifice it once. Most times that may be sufficient, but only when it&#39;s the right timing.\n\tBabamots: What I mean about the &quot;Red Hulk&quot; thing is that the other guy only needs a single red to defend against it. When you get the r3, he has one turn in which to trade for a red anywhere. That shuts down the Red Hulk invasion.\r\n\r\nI did the opposite by using a red sacrifice as part of my attack plan rather than to defend.\n\nHomeworlds Online (SDG# 35715)\nVariants: &quot;Unrated&quot;\nStarted: 2019.11.13, Ended: 2019.12.4\nParticipants: Draw5PlayAll (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\tBabamots: What&#39;s this about strange homeworld setups?\n\tDraw5PlayAll: I mean I don&#39;t want to play with small universes or instafreezes or anything like that.\n\n3) Babamots: Build G1 Babamots\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Babamots: Build G1 Babamots\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Babamots: Trade G1 R1 Babamots\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) Babamots: Build R2 Babamots\n\n12) Draw5PlayAll: Discover R1 Draw5playall G1 Build\n\n13) Babamots: Trade R1 B1 Babamots\n\tDraw5PlayAll: Remember this undo when you inevitably coach me on my mistakes after I lose.\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\tBabamots: My coaching is evitable, I promise. Normally, I only spew advice to new players who ask for it, and I wasn&#39;t planning to lecture you.\r\n\r\nIf you *would* like me to share my thoughts, just let me know. :-)\n\n15) Babamots: Build B1 Babamots\n\tDraw5PlayAll: That&#39;s the reason I started this game. I always seem to come on the worse side of the opening economy, regardless of which seat I play.\r\n\r\nBut I&#39;d prefer to wait until AFTER the game.\n\n16) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n17) Babamots: Discover B1 Babamots G3 Risa\n\n18) Draw5PlayAll: Build B2 Draw5playall\n\n19) Babamots: Build B2 Risa\n\n20) Draw5PlayAll: Move B1 Draw5playall Build\n\n21) Babamots: Trade B2 Y2 Risa\n\n22) Draw5PlayAll: Move B2 Draw5playall Build\n\n23) Babamots: Build B2 Risa\n\n24) Draw5PlayAll: Trade B2 Y2 Build\n\tDraw5PlayAll: Something&#39;s not right here.\n\n25) Babamots: Discover B2 Risa Y1 Iconia\n\n26) Draw5PlayAll: Build Y2 Draw5playall\n\n27) Babamots: Sacrifice G3 Babamots\nBuild Y3 Risa\nBuild Y3 Babamots\nBuild Y3 Babamots\n\n28) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y2 Build Risa\nMove Y2 Risa Babamots\nCatastrophe Babamots Yellow\n\n29) Babamots: Trade Y3 G3 Risa\n\tDraw5PlayAll: Something tells me I am in trouble.\n\n30) Draw5PlayAll: Build Y1 Draw5playall\n\n31) Babamots: Sacrifice G3 Risa\nBuild B2 Risa\nBuild B3 Iconia\nBuild B3 Babamots\n\n32) Draw5PlayAll: Discover Y1 Draw5playall G1 Construct\n\n33) Babamots: Move B2 Risa Build\n\n34) Draw5PlayAll: Build Y2 Construct\n\tDraw5PlayAll: The usual.\n\n35) Babamots: Sacrifice R2 Babamots\nAttack B1 Build\nAttack R1 Build\n\n36) Draw5PlayAll: Discover Y1 Construct G2 Desperation\n\n37) Babamots: Build R1 Build\n\n38) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Desperation\nBuild Y3 Draw5playall\nBuild Y3 Construct\n\n39) Babamots: Trade B3 Y3 Babamots\n\n40) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n41) Babamots: Build R2 Build\n\n42) Draw5PlayAll: Build G2 Draw5playall\n\n43) Babamots: Move B3 Iconia Draw5playall\n\n\tBabamots: If you&#39;d like, I&#39;ll write up my analysis so we can study the game together. I&#39;ll put it in chat when I&#39;ve had chance to look back over the game.\n\tDraw5PlayAll: Sure.\n\tBabamots: Here are my thoughts on the turning points of the game. Let me know if you disagree or see anything you&#39;d like to discuss deeper.\r\n\r\nOn move 6, you move your red ship away from home. I think you should have built an r2 instead for several reasons:\r\n* Building r2 would keep you closer to even in material.\r\n* Building r2 would give you two red ships at home. That would allow you to trade one of them without losing your only red ship. As it is, I get a 2-move head start in the blue economy.\r\n* When I have a red ship alone in a green system, it usually stays there all game without achieving much. If ships from the &quot;build&quot; system are going to amount to anything, you&#39;ll need to spend time reinforcing with at least one other ship (which you do on turn 10). It&#39;s faster to discover with one of the other colors.\r\n\r\nOn move 10, you improve the health of &quot;build,&quot; by moving in a b1. It looks like you realized on your next turn that you needed a medium ship there for defense. It would have been faster to move your b2 to &quot;build&quot; on move 10. Moving in the b2 on move 10 also would have kept your blue ships more spread out, possibly making it easier to build blue later.\r\n\r\nOn move 13, you opened up the large yellows. On move 14, I build all of the y3, but then you kill two of them with a catastrophe. I expected the catastrophe before I built and decided that it was worth it. Comparing the position after your 13th move to the position after your 14th move, I think the exchange went in my favor.\r\n\r\nOn move 16, I cash in on my blue advantage. At this point, I think the material is too much in my favor and the game is essentially over.\n\tDraw5PlayAll: OK.\r\n\r\nOn move 6, I think I was worried about opening up the R3s. You discover a new system with your red, I discover one with mine, and then you sac your G3 to build all the R3s. I guess I could trade away a red, but then with only one red ship I can never hope to mass-build in red anymore.\r\n\r\nOn move 10, the idea of sending the small first was so that if you built a B3 at Risa, I could destroy it only losing two small ships, whereas if I had sent the B2 out instead I would have had to lose it.\r\n\r\nOn move 11, I would have built a B2 at build, but that would have opened up the B3s.\r\n\r\nOn move 13, should I have mass-built yellow myself? The yellow stash appears to be 3332 at that moment.\n\tBabamots: You&#39;ve got good counterpoints.\r\n\r\n6\r\nI agree that, if you build r2 as I suggested, there is a danger of me getting ahead by one or more r3. I think your next move should be to trade your r1 for b1. If I keep trying to get red, I think you would have time to build some yellow and get your r1 in a position to cause me a catastrophe if I get greedy enough to build an r3 at home. I may have to set this one up with pieces to work it out carefully and see who&#39;s right.\r\n\r\n10\r\nYou&#39;re totally right. Your 10th move is good. Do you know what you had in mind on your 11th move? I think discovering another g1 system might have been better.\r\n\r\n13\r\nYes, I think you would have been better off mass-building yellow yourself, two ships in your home and one in &quot;build.&quot; I would almost certainly have built a y3 as well. I gained a large, you gained a large and a medium. After that, I think the position is pretty even.\n\tDraw5PlayAll: 10\r\nI think I might have been trying to get a B3 myself on move 11, or else just diversifying.\r\n\r\nWell, thanks for the tips.\n\nHomeworlds Online (SDG# 35605)\nStarted: 2019.11.15, Ended: 2020.4.15\nParticipants: DodoBirb (S), nycavri (N)\nWinner: DodoBirb\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: Confirming that this is a Tournament game.\n\tnycavri: TaGG!\n\n2) DodoBirb: Homeworld R1 B3 G3\n\tDodoBirb: Yes it is a tournament game. TaGG!\n\n3) nycavri: Build G1 Nycavri\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) DodoBirb: Build G1 Dodobirb\n\n7) nycavri: Discover Y1 Nycavri G3 Deacon\n\n8) DodoBirb: Trade G1 Y1 Dodobirb\n\n9) nycavri: Build G1 Nycavri\n\n10) DodoBirb: Discover Y1 Dodobirb G2 Green\n\tDodoBirb: I&#39;ll wait\n\tnycavri: Sorry - was away at BGGCon.  I&#39;m back - thanks for your patience!\n\n11) nycavri: Trade G1 R1 Nycavri\n\n12) DodoBirb: Trade G1 R1 Dodobirb\n\n13) nycavri: Build G1 Nycavri\n\n14) DodoBirb: Build G1 Dodobirb\n\n15) nycavri: Discover Y1 Deacon G2 May\n\n16) DodoBirb: Trade G1 Y1 Dodobirb\n\n17) nycavri: Build Y2 May\n\n18) DodoBirb: Build Y2 Green\n\n19) nycavri: Build R2 Nycavri\n\n20) DodoBirb: Move R1 Dodobirb Green\n\n21) nycavri: Discover R1 Nycavri Y3 Mercury\n\tDodoBirb: So, I&#39;m going to be away for about 2 and a half weeks on holiday where I won&#39;t be guaranteed internet access 24/7. I&#39;ll try get in moves when I can but I&#39;ll pause the timer just in case.\n\n22) DodoBirb: Build R2 Green\n\tnycavri: HNY!\n\tDodoBirb: HNY to you too!\n\n23) nycavri: Move R1 Mercury May\n\n24) DodoBirb: Discover R2 Green G3 Greeny\n\n25) nycavri: Build R2 May\n\n26) DodoBirb: Build R3 Green\n\n27) nycavri: Build R3 Nycavri\n\n28) DodoBirb: Build Y3 Dodobirb\n\n29) nycavri: Trade R3 Y3 Nycavri\n\n30) DodoBirb: Discover Y3 Dodobirb G2 Construction\n\n31) nycavri: Discover Y3 Nycavri Y3 Taylor\n\n32) DodoBirb: Move R1 Green Greeny\n\n33) nycavri: Trade G1 B1 Nycavri\n\n34) DodoBirb: Trade Y1 B1 Dodobirb\n\n35) nycavri: Move B1 Nycavri Taylor\n\n36) DodoBirb: Build G1 Dodobirb\n\n37) nycavri: Build G1 Nycavri\n\n38) DodoBirb: Trade G1 Y1 Dodobirb\n\n39) nycavri: Trade Y3 B3 Taylor\n\n40) DodoBirb: Build Y3 Construction\n\n41) nycavri: Trade B1 G1 Taylor\n\n42) DodoBirb: Build G1 Dodobirb\n\n43) nycavri: Sacrifice Y2 May\nMove B3 Taylor May\nMove B3 May Greeny\n\n44) DodoBirb: Sacrifice Y2 Green\nMove R2 Greeny May\nMove R1 Greeny May\nCatastrophe May R\n\n45) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild B1 Greeny\nBuild Y2 May\n\n46) DodoBirb: Move R3 Green Taylor\n\n47) nycavri: Discover G1 Taylor Y2 Edney\n\n48) DodoBirb: Discover Y3 Construction R3 Reddy\n\n49) nycavri: Sacrifice Y1 May\nMove B1 Greeny Edney\n\n50) DodoBirb: Move B1 Dodobirb Green\n\n51) nycavri: Build B2 Edney\n\n52) DodoBirb: Trade B1 R1 Green\n\n53) nycavri: Sacrifice Y2 May\nMove B1 Edney Dodobirb\nMove B2 Edney Dodobirb\n\n54) DodoBirb: Sacrifice R3 Taylor\nAttack B2N Dodobirb\nAttack B1N Dodobirb\nPass\n\n55) nycavri: Sacrifice G3 Nycavri\nBuild G2 Edney\nBuild G3 Nycavri\nBuild B1 Greeny\n\tDodoBirb: I&#39;ll wait\n\tnycavri: Sorry.  Still here.\n\n56) DodoBirb: Move B2 Dodobirb Green\n\n57) nycavri: Trade B3 Y3 Greeny\n\n58) DodoBirb: Discover B2 Green R3 R3\n\n59) nycavri: Sacrifice Y3 Greeny\nMove B1 Greeny Edney\nMove G1 Edney Dodobirb\nMove G2 Edney Dodobirb\nCatastrophe Dodobirb G\n\n60) DodoBirb: Move Y3 Construction Dodobirb\n\n61) nycavri: Discover G1 Nycavri Y3 Rami\n\n62) DodoBirb: Trade Y1 G1 Dodobirb\n\n63) nycavri: Sacrifice G1 Rami\nBuild B2 Edney\n\n64) DodoBirb: Move B1 Dodobirb Green\n\n65) nycavri: Trade B1 G1 Edney\n\n66) DodoBirb: Move Y3 Reddy Edney\n\n67) nycavri: Discover B2 Edney G1 Rami\n\n68) DodoBirb: Move Y3 Edney Rami\n\n69) nycavri: Trade B2 Y2 Rami\n\n70) DodoBirb: Build G2 Dodobirb\n\n71) nycavri: Build G2 Nycavri\n\n72) DodoBirb: Move G2 Dodobirb Edney\n\n73) nycavri: Discover G2 Nycavri Y3 Rogers\n\n74) DodoBirb: Build R1 Green\n\n75) nycavri: Build R2 Nycavri\n\n76) DodoBirb: Move Y3 Rami Rogers\n\n77) nycavri: Build G3 Nycavri\n\n78) DodoBirb: Build G3 Dodobirb\n\n79) nycavri: Sacrifice G3 Nycavri\nBuild G3 Edney\nBuild Y1 Rami\nBuild Y1 Rami\n\n80) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild B1 R3\nBuild B2 R3\n\n81) nycavri: Discover R2 Nycavri B3 Stickells\n\n82) DodoBirb: Sacrifice Y3 Rogers\nMove B2 R3 Nycavri\nMove B2 R3 Nycavri\nMove B1 R3 Nycavri\nCatastrophe Nycavri B\n\n83) nycavri: Sacrifice G3 Edney\nBuild G3 Nycavri\nBuild R2 Stickells\nPass\n\n84) DodoBirb: Build R3 Green\n\n85) nycavri: Sacrifice Y2 Rami\nMove G1 Edney Dodobirb\nMove G3 Nycavri Dodobirb\nCatastrophe Dodobirb G\n\n86) DodoBirb: Trade Y3 G3 Dodobirb\n\n87) nycavri: Discover G2 Rogers Y2 Lambert\n\n88) DodoBirb: Build Y3 Green\n\n89) nycavri: Sacrifice Y1 Rami\nMove R2 Stickells Green\nCatastrophe Green R\n\n90) DodoBirb: Build G1 Dodobirb\n\n91) nycavri: Build R1 Nycavri\n\n92) DodoBirb: Trade G3 Y3 Dodobirb\n\n93) nycavri: Move G2 Lambert Dodobirb\n\n94) DodoBirb: Attack G2N Dodobirb\n\n95) nycavri: Trade R2 Y2 Stickells\n\n96) DodoBirb: Discover Y1 Green G3 Greeeny\n\n97) nycavri: Build R1 Nycavri\n\n98) DodoBirb: Trade G2 R2 Dodobirb\n\n99) nycavri: Sacrifice Y2 Stickells\nMove R1 Nycavri Dodobirb\nMove R1 Nycavri Dodobirb\nCatastrophe Dodobirb R\n\n100) DodoBirb: Trade G1 R1 Dodobirb\n\n101) nycavri: Build G1 Nycavri\n\n102) DodoBirb: Build Y1 Greeeny\n\n103) nycavri: Move Y1 Rami Greeeny\n\n104) DodoBirb: Sacrifice Y3 Green\nMove Y3 Dodobirb Nycavri\nMove Y1 Greeeny Nycavri\nMove Y1 Greeeny Nycavri\nCatastrophe Nycavri Y\n\n\tDodoBirb: Good game!\n\tnycavri: Thanks for the game.  Hope you are well.\n\nHomeworlds Online (SDG# 35721)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.16, Ended: 2019.12.17\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: Draw5PlayAll\n\n1) wil: H Y2 B1 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\twil: Good luck!\n\twil: Is this tourney and ladder?\n\tDraw5PlayAll: Didn&#39;t we already play for the tourney?\n\n3) wil: B G1 Wil\n\tDraw5PlayAll: I guess not. All right, let&#39;s do this!\n\twil: Cool, can you do the paperwork\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\twil: I&#39;ll try to check a few x a day, 2 keep it moving\n\n5) wil: T G1 B1 Wil\n\n6) Draw5PlayAll: Trade G1 B1 Draw5playall\n\twil: I church is over, shopping is done, ravens are on..\n\twil: I now have time to make a plethora of early game moves\n\n7) wil: B B2 Wil\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\tDraw5PlayAll: I was going to try to freeze you out of red but I don&#39;t have movement.\n\twil: It is a choice.....\r\n\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n11) wil: B B1 Wil\n\n12) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\tDraw5PlayAll: I&#39;m trying to pay close attention to why I seem to fall behind against basically every good opponent.\n\n13) wil: T B1 R1 Wil\n\twil: I wish I could every game I say I&#39;ll explore options.  \n\twil: And every game I shoot from the hip.\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) wil: B R1 Wil\n\twil: Ya just need to play more games... (And lose more)\n\twil: You are doing fine, your win%  about same as mine.\n\n16) Draw5PlayAll: Build Y1 Draw5playall\n\n17) wil: B R2 Wil\n\twil: I should think about it, but nah, not my style!\n\n18) Draw5PlayAll: Build B1 Build\n\tDraw5PlayAll: You froze me out of red! OK, I&#39;ll freeze you out of yellow.\n\n19) wil: T R2 Y2 Wil\n\twil:  that would be my preference\n\twil: Nah, neither will happen, but if they did,\n\n20) Draw5PlayAll: Trade B2 R2 Build\n\tDraw5PlayAll: Uhhh... not sure how I miscalculated that, but I have to do this or else your R2 arrives at build too soon.\n\n21) wil: D Y2 Wil G3 G3\n\twil: What r2?\n\n22) Draw5PlayAll: Move Y1 Draw5playall Build\n\tDraw5PlayAll: The R2 that you would have moved to y3 and then invaded `build` with.\n\twil: It was always meant to become a fuel ship\n\n23) wil: B B2 Wil\n\n24) Draw5PlayAll: Discover Y1 Draw5playall G2 Construct\n\n25) wil: D B2 Wil Y3 Why3\n\n26) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Construct\nBuild Y3 Draw5playall\nBuild R2 Build\n\tDraw5PlayAll: Greens: build, construct, create, ...\r\nBlues: trade, convert, change, ...\r\nYellows: move, discover, transport, ...\r\nReds: attack, steal, ...\n\n27) wil: T B2 G2 Why3\n\twil: Green is entrepreneurs Gamma Blue is stock Traders\n\twil: Green is entrepreneurs Gamma Blue is stock Traders\n\twil: Yellow is utility sector, red is venture capitalists\n\n28) Draw5PlayAll: Move R2 Build Y3\n\n29) wil: D B1 Y3 R2 R2\n\n30) Draw5PlayAll: Build R3 Build\n\n31) wil: S G2 Why3\nB Y3 G3\nB B2 R2\n\n32) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n33) wil: D R1 Wil Y3 Why3\n\n34) Draw5PlayAll: Sacrifice Y2 Construct\nMove Y1 Construct G3\nMove Y1 Build G3\nCatastrophe G3 Yellow\n\twil: Nice, missed completely\n\n35) wil: T B1 Y1 R2\n\twil: Been in 3 Hosp last 4 days, I&#39;m blaming that! Lol\n\n36) Draw5PlayAll: Trade R2 Y2 Build\n\tDraw5PlayAll: I am known to make a large number of very subtle mistakes that add up to an eventual loss of control and then the game.\n\twil: Not making mistakes and capitalizing on others\n\twil: This the name of the game!\n\n37) wil: S G3 Wil\nB R2 Why3\nB R3 Why3\nB R3 Wil\n\twil: Make as many as you like!\n\n38) Draw5PlayAll: Sacrifice Y2 Build\nMove R2 Y3 R2\nMove R2 R2 Why3\nCatastrophe Why3 Red\n\n39) wil: T R3 G3 Wil\n\twil: As many of what?\n\twil: Your snark is like a teen playing online video, why?\n\tDraw5PlayAll: ?!\n\n40) Draw5PlayAll: Build Y1 Draw5playall\n\n41) wil: B B1 Wil\n\n42) Draw5PlayAll: Move Y1 Draw5playall Build\n\n43) wil: D B2 Wil Y3 Y3\n\twil: Noice!\n\n44) Draw5PlayAll: Build Y2 Build\n\n45) wil: B G1 Wil\n\n46) Draw5PlayAll: Discover Y2 Build G3 Construct\n\n47) wil: D G1 Wil Y3 Why3\n\n48) Draw5PlayAll: Build B2 Build\n\n49) wil: S G1 Why3\nB B3 Y3\n\n50) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Build\nBuild Y3 Construct\nBuild Y3 Draw5playall\n\n51) wil: T B3 G3 Y3\n\twil: Me thinks you got me\n\tDraw5PlayAll: It&#39;s not over yet unless you make it be over\n\n52) Draw5PlayAll: Move B2 Build Construct\n\n53) wil: B G1 Wil\n\twil: You&#39;ve outmaneuvered me well\n\n54) Draw5PlayAll: Build B3 Construct\n\tDraw5PlayAll: I think you&#39;re just trying to get me to let my guard down.\n\n55) wil: B B3 Y3\n\n56) Draw5PlayAll: Move B3 Construct Wil\n\n57) wil: M B2 Y3 Wil\nC Wil B\n\tDraw5PlayAll: This is going to get ugly\n\n58) Draw5PlayAll: Discover Y2 Build R3 Attack\n\n59) wil: B R1 Wil\n\tDraw5PlayAll: ...or not\n\twil: Take advantage just got home from open heart surgery\n\twil: \n\twil: Did my addled brain miss something?\n\n60) Draw5PlayAll: Sacrifice Y3 Construct\nMove Y2 Attack Wil\nMove Y2 Construct Wil\nMove Y1 Draw5playall Wil\nCatastrophe Wil Yellow\n\n\tDraw5PlayAll: Good game. I really believed you were trying to psyche me into thinking I had a nonexistent win.\n\nHomeworlds Online (SDG# 35718)\nStarted: 2019.11.17, Ended: 2019.12.1\nParticipants: Babamots (S), Simon (N)\nWinner: Babamots\n\n1) Simon: Homeworld Y1 G3 B3\n\tSimon: Hi! This is for the Great Homeworlds Tournament 2019. Enjoy!\n\tSimon: Since you won 9 games in a row, I&#39;ll consider the opening carefully. Green starting queen is accepted theory. I&#39;ve grown lots of experience recently with blue starting queens, but wonder whether it&#39;s too risky.\n\tBabamots: Well, you have a perfect record against me so far: 1-0 (I was a rung you stepped on in the ladder). I&#39;m pretty worried about this match.\n\tBabamots: Will you fill out the form for the tournament?\r\n\r\nI like to start with a g3 ship since it sets me up to get a factory later, but sometimes not enough green pieces get used and there&#39;s never a chance for a factory. A b3 start is usually fine too. I experimented with y3 openings for a while but didn&#39;t reach any firm conclusions.\n\n2) Babamots: Homeworld B2 R1 G3\n\tSimon: Tourney form is filled, yep!\n\tSimon: \n\n3) Simon: Build B1 Simon\n\tBabamots: I&#39;ll stick with old reliable for now.\n\n4) Babamots: Build G1 Babamots\n\n5) Simon: Trade B1 R1 Simon\n\n6) Babamots: Trade G1 R1 Babamots\n\n7) Simon: Build R2 Simon\n\n8) Babamots: Build R2 Babamots\n\n9) Simon: Discover R2 Simon G2 G2\n\n10) Babamots: Trade R1 Y1 Babamots\n\n11) Simon: Build B1 Simon\n\n12) Babamots: Build Y1 Babamots\n\n13) Simon: Move B1 Simon G2\n\n14) Babamots: Build Y2 Babamots\n\n15) Simon: Build R1 G2\n\n16) Babamots: Discover Y1 Babamots G3 Cardassia\n\tBabamots: Just realized that our home stars have no colors in common. I&#39;m not sure I&#39;ve ever seen that before.\n\n17) Simon: Trade R2 Y2 G2\n\n18) Babamots: Discover Y1 Babamots B3 Bolarus\n\n19) Simon: Build R2 Simon\n\n20) Babamots: Sacrifice G3 Babamots\nBuild Y2 Cardassia\nBuild Y3 Babamots\nBuild Y3 Bolarus\n\n21) Simon: Build Y3 G2\n\n22) Babamots: Sacrifice Y2 Cardassia\nMove Y1 Cardassia G2\nMove Y1 Bolarus G2\nCatastrophe G2 Y\n\tSimon: Opposite homeworlds has only become common from the green star, it&#39;s really rare otherwise, yeah.\n\n23) Simon: Build R2 G2\n\n24) Babamots: Move Y3 Bolarus G2\n\n25) Simon: Build R3 Simon\n\tBabamots: I&#39;m afraid I don&#39;t understand your last message. Do you mean players usually pick the same two colors in their home stars unless one of them chooses green?\n\n26) Babamots: Sacrifice R2 Babamots\nAttack R1 G2\nAttack R2 G2\n\tSimon: I mean that, for opposite homeworlds to happen, one home star must be green. But mutual g3 starting ships are so extremely common that green home stars are rare.\n\n27) Simon: Sacrifice B1 G2\nTrade R3 G3 Simon\n\tSimon: The exception is the blue freezeout by second player (h gX b1 b3) to counter first player&#39;s small blue star. I haven&#39;t seen that with green yet, but theoretically it must exist with green, too.\n\tSimon: Finally, someone must want no blue star. This is also rare; the b3 ship is inferior until it becomes g3/y3 later.\n\n28) Babamots: Trade Y2 G2 Babamots\n\n29) Simon: Discover R1 Simon B2 B2\n\n30) Babamots: Discover R2 G2 G3 Risa\n\n31) Simon: Move G3 Simon B2\n\n32) Babamots: Build G1 Babamots\n\n33) Simon: Build G1 B2\n\n34) Babamots: Sacrifice G2 Babamots\nBuild Y1 G2\nBuild Y1 G2\n\n35) Simon: Build R2 Simon\n\n36) Babamots: Build G1 Babamots\n\n37) Simon: Build R3 B2\n\n38) Babamots: Discover G1 Babamots Y3 Iconia\n\n39) Simon: Discover R2 Simon G2 G2a\n\n40) Babamots: Build G2 Babamots\n\n41) Simon: Sacrifice G3 B2\nBuild G3 B2\nBuild R3 G2a\nBuild R3 Simon\n\n42) Babamots: Build Y2 Babamots\n\n43) Simon: Sacrifice B3 Simon\nTrade R2 B2 Simon\nTrade R2 Y2 G2a\nTrade R1 B1 B2\n\n44) Babamots: Build Y2 Babamots\n\n45) Simon: Move Y2 G2a Iconia\n\tSimon: Very hard to calculate. The greedier move would have been to build b1, then sac b1 to trade r2 y2 @g2a, but that seems too slow.\n\n46) Babamots: Sacrifice Y2 Babamots\nMove Y3 G2 Simon\nDiscover G1 Iconia Y2 Gravesworld\n\tBabamots: I&#39;ve been thinking about the position almost constantly since yesterday. Sacrificing your b3 for yellow didn&#39;t cross my mind until a few minutes before you moved. I think it was the right thing to do. If anything is going to ruin my yellow-hogging, that&#39;s it.\n\n47) Simon: Attack Y3 Simon\n\n48) Babamots: Sacrifice Y2 Babamots\nMove Y1 G2 Simon\nMove Y1 G2 Simon\nCatastrophe Simon Y\n\n49) Simon: Move Y2 Iconia Gravesworld\n\n50) Babamots: Move G1 Gravesworld Simon\n\n\tSimon: gg!\n\tBabamots: Valiantly fought sir!\n\nHomeworlds Online (SDG# 35668)\nStarted: 2019.11.17, Ended: 2019.11.22\nParticipants: speardane (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tspeardane: For the Great Homeworlds Tournament of 2019!\n\tBabamots: Yep, I&#39;ll fill out the start form.\n\n2) speardane: Homeworld Y1 G3 B3\n\n3) Babamots: Build G1 Babamots\n\n4) speardane: Build B1 Speardane\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) speardane: Trade B3 R3 Speardane\n\n7) Babamots: Build Y1 Babamots\n\n8) speardane: Build B1 Speardane\n\n9) Babamots: Build Y2 Babamots\n\n10) speardane: Discover B1 Speardane G2 Delos\n\n11) Babamots: Discover Y1 Babamots B3 Bolarus\n\n12) speardane: Build B1 Delos\n\n13) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild Y2 Bolarus\nBuild Y3 Babamots\n\n14) speardane: Trade B1 R1 Delos\n\tBabamots: I think our bot friend is in trouble.\n\n15) Babamots: Trade Y3 G3 Babamots\n\n16) speardane: Trade R3 Y3 Speardane\n\n17) Babamots: Build Y3 Babamots\n\n18) speardane: Build Y3 Speardane\n\n19) Babamots: Sacrifice Y2 Bolarus\nMove Y1 Bolarus Delos\nMove Y1 Delos Speardane\nCatastrophe Speardane Y\n\n20) speardane: Build B1 Delos\n\n21) Babamots: Trade Y3 R3 Babamots\n\n22) speardane: Trade B1 Y1 Delos\n\n23) Babamots: Move G3 Babamots Speardane\n\n24) speardane: Pass\n\n25) Babamots: Sacrifice R3 Babamots\nAttack B1 Speardane\nPass\nPass\n\tspeardane: Good game!\n\tBabamots: GG! I&#39;ll report the game for the tournament.\n\n\nHomeworlds Online (SDG# 35725)\nStarted: 2019.11.18, Ended: 2019.12.4\nParticipants: Babamots (S), Cuc (N)\nWinner: Babamots\n\n1) Cuc: Homeworld B2 G1 Y3\n\tBabamots: I can give strategy tips as we go if you like.\n\n2) Babamots: Homeworld B3 G1 G3 *\n\tCuc: I&#39;d love to &quot;listen in&quot; on your considerations. I play Hex with a friend of mine and then he elaborates on his strategy. There is no guarantee I&#39;ll win by listening in, but I will learn about the considerations he makes. To get closer to the level of equal analysis skill is quite exciting.\r\nOn Thursday I learned something from self-play. Even if you can&#39;t move 3 ships at once to your opponent&#39;s HW, you can start with 1. Then, the only thing your opponent can do to avert overpopulation is conquer. But then in your follow up move, you move in 2 other ships of the same color with overpopulation as a result. From this I got the question if causing a catastrophe in your OWN HW could be less devastating as it sounds? (In certain circumstances.) Have you ever won a game in which you caused a catastrophe in your own Homeworld?\r\nThis game has the potential to become more interesting than I already thought it was.\n\tCuc: (By the way, my friend is a chess master, and he is also VERY good at Hex, so he always takes a handicap. He analyses his own moves, not mine . . . )\n\tBabamots: I&#39;m pretty sure I have won a game where I caused a catastrophe in my own home (including destroying my own star), but I don&#39;t remember when. I should make a web-crawler to download all of my game histories for easier analysis.\n\n3) Cuc: Build Y1 Cuc\n\tBabamots: I was just looking at an old game and saw a question I didn&#39;t respond to. Analogkid&#39;s graph image library is here:\r\n\r\nhttp://anthonykozar.net/Zendo/GraphZendokoans-20190129.zip\r\n\r\nIf you play a game with him, he&#39;ll send a link to an updated version (if he has made any changes).\r\n\r\nHere is my graph image library:\r\n\r\nhttps://drive.google.com/open?id=1QsyfmIlJ1sW2OoE6jbz4Jjjaja3lFpXd\r\n\r\nCompared to Analogkid&#39;s, mine is smaller and only for simple graphs, but the styles are consistent and it has subdirectories to keep it a little more organized.\n\n4) Babamots: Build G1 Babamots\n\n5) Cuc: B Y1 Cuc\n\tCuc: Thx for the info on graph zendo. I&#39;ll keep analogkid in mind.\n\tCuc: You are excluding me from swapping for green, temporarily.\n\tCuc: My keyboard was NOT cooperating. I was typing that you are excluding me from swapping for green, temporarily.\n\tCuc: Hi, I&#39;m recognizing a pattern\n\n6) Babamots: Trade G3 Y3 Babamots\n\tCuc: Hi -&gt; Hm\n\tCuc: I&#39;m thinking that I could&#39;ve t y3 b3 and then s g3 b y1 cuc b y1 cuc by2 cuc, to exclude you from yellow?\n\n7) Cuc: T Y3 B3 Cuc\n\tBabamots: You can usually dodge these early freeze-outs by trading your large ship.\n\n8) Babamots: Build G2 Babamots\n\n9) Cuc: Build B1 Cuc\n\tCuc: My keyboard does not seem to cooperate. Twice I wanted a G3, and twice I got a B3. Oh well.\n\tCuc: But yes, I see how that works with swapping the Large.\n\n10) Babamots: Discover G1 Babamots G2 Orion\n\n11) Cuc: D Y1 Cuc B3 B3a\n\n12) Babamots: Build G2 Orion\n\n13) Cuc: D Y1 Cuc G3 G3a\n\n14) Babamots: Build G3 Babamots\n\tCuc: I realized that a g3 in my HW would be a liability. So rather than get stuck I moved forward and took the last b3. It doesn&#39;t hinder you too much, though. Your moves have the tendency to reduce my options considerably.\n\n15) Cuc: S Y1 B3a\nD B1 Cuc G3 G3b\n\n16) Babamots: Trade G3 R3 Babamots\n\tBabamots: Limiting your good options is of course my intention.\r\n\r\nIncreasingly, I have been understanding the early game as a competition to determine which color gets its small pieces exhausted first and who is best able to build that color. I was able to make green run out of smalls first and make it difficult for you to get green ships, so I&#39;m building mediums ahead of you. I can trade those mediums later to jump into the red or blue economy, even if you use up all of those smalls.\n\n17) Cuc: T B1 R1 G3b\n\n18) Babamots: Build G3 Babamots\n\n19) Cuc: B R1 G3b\n\n20) Babamots: Trade G3 B3 Babamots\n\tBabamots: So I&#39;ve got the Red Hulk setup, as it happens. You need to trade for a red right away, but it doesn&#39;t need to be b3 for r3. You would be safe enough for now by trading for an r1 in g3b. That&#39;s what I was trying to communicate about your &quot;Red Hulk&quot; comments earlier. Perfect example here in our game :-).\n\tCuc: I wondered how I can prevent you from growing more Green or any other color, so I turned the last G3 int a star.\n\tCuc: Yes, I see the threat. I&#39;m still wondering if a r1 isn&#39;t too little of a defense. After all, I can only sacrifice it once. Ah! But when I conquer your R3 in my HW (if ever), I&#39;ll have a large red . . . \n\tCuc: I&#39;ll follow your advice, but I wish I could build some yellow first. No time, I guess . . .\n\n21) Cuc: T B3 G3 Cuc\n\tCuc: Since you traded in your g3, you&#39;re probably going to build it back somewhere?\n\n22) Babamots: Build Y1 Babamots\n\tCuc: Now you have a factory. You can sacrifice g3, build it back and have 2 more build actions. You are able to create an army of yellow, red (and keep green). Then you can trade in a large red, say for a large yellow and start a doomsday machine. You excluded me somehow from medium and large ships and I can&#39;t seem to do anything about it. \r\nI could build yellow or red in one of my b3a/b systems one small at a time, but I can&#39;t create enough material to stop your growing army.\n\n23) Cuc: B Y1 G3a\n\tBabamots: Yes, I&#39;m afraid you&#39;re pretty doomed. Looking back, my suggestion to trade for a g3 came one turn too late. You needed to do it on your 3rd turn (just before I mentioned it).\r\n\r\nOn your 3rd turn, you could have built another green ship, and on your 4th turn, that ship could have been moved to a new system (to get rid of the dangerous 3-matching-greens in your home).\r\n\r\nAs it went, on your fourth turn, your could have traded for a large green, but it wouldn&#39;t have been safe to use it to build any additional greens in your home. That&#39;s because your g3, system marker, and other green ship would all be green, and I could sacrifice my y3 to move my g1 to your home, destroying it all and putting you way behind.\r\n\r\nHowever, starting on your 4th move, you could have gotten into the green economy safely (but slowly) like this:\r\n\r\ntrade y3 g3 Cuc\r\ndiscover g3 Cuc y3 Y3A\r\nbuild g2 Y3A\r\nmove g3 Y3A Cuc\r\n\r\nThe first person I remember seeing use this technique was wil. He traded his large for a color he needed access to, moved it tout of his home system to avoid building up to a 3-match, and built the coveted color there.\r\n\r\nYou have Draw5PlayAll to thank for teaching me the instafreeze I&#39;ve been using. D5 likes it so much that he has been known to pass the first turn. Notice that it only works for the second player, and the first player needs to use a small green or blue star in their home (theoretically, you could do it with yellow too, but I&#39;ve never seen it tried). A small red is the safest small star if you&#39;re going first.\n\n24) Babamots: Build Y2 Babamots\n\tCuc: I actually considered that maneuver you suggested. The reason I didn&#39;t was that I seemed it too slow. But in hindsight, I see it&#39;s necessary.\n\tCuc: I actually considered that maneuver you suggested. The reason I didn&#39;t was that I seemed it too slow. But in hindsight, I see it&#39;s necessary.\n\n25) Cuc: M Y1 G3a Cuc\n\n26) Babamots: Move Y1 Babamots Orion\n\n27) Cuc: B Y2 Cuc\n\tCuc: Also I noticed, like you said, it works as a second player. Included is the choice of HW to take out a crucial small as a star. So I&#39;ve been considering that a defense might be to build a HW having 2 pieces of the same color (can&#39;t have 3 pieces of same color unless blue, but that defeats the purpose).\n\tCuc: Great analysis! I&#39;m a bit ambitious right now. After more than a decade, I think there is more knowledge than just guidelines. So, here is proof. A whole tactical opening strategy to get ahead. Also, we&#39;re seeing a diversity of endgame tactics. Most impressive I find how I was excluded from the next size up. It&#39;s a tempo disadvantage. But if I don&#39;t take the last one of that size, I&#39;m also getting behind by just moving pieces around that are fine where they are.\n\n28) Babamots: Move G2 Orion G3b\n\tBabamots: Making a home system with two stars of the same color is definitely bad. Your opponent would only have to move two ships of that color into your home in order to destroy you with one catastrophe.\n\n29) Cuc: T G3 R3 Cuc\n\n30) Babamots: Sacrifice R3 Babamots\nAttack R1 G3b\nAttack R1 G3b\nPass\n\n31) Cuc: T Y1 B1 Cuc\n\n32) Babamots: Build G3 Babamots\n\n33) Cuc: B Y1 G3a\n\tBabamots: This move is meant as a double threat. I can attack both of your r1 ships (leaving you with no red ships) or I can move two greens into your home to destroy your only large ship and a home star.\n\n34) Babamots: Sacrifice G3 Babamots\nBuild B1 Babamots\nBuild R1 G3b\nBuild G3 G3b\n\n35) Cuc: Build Y2 Cuc\n\tDraw5PlayAll: I noticed you mentioned my liking of the insta-freeze setup. I tried to do it once with yellow, but the lack of any blue in my setup proved my undoing. (I needed to get at least some red, but that requires going to a blue system, so I can&#39;t build yellow there, which slows me down.)\r\n\r\nThen again, instafreezing blue or green requires an extra move to trade for yellow...\n\n36) Babamots: Sacrifice Y2 Babamots\nMove R1 G3b Cuc\nMove R1 G3b Cuc\n\n37) Cuc: Trade Y2 R2 Cuc\n\n38) Babamots: Sacrifice Y1 Orion\nMove G3 G3b Cuc\nCatastrophe Cuc R\n\n39) Cuc: Trade B1 R1 Cuc\n\n40) Babamots: Sacrifice R1 G3b\nAttack R1 Cuc\n\n41) Cuc: Build Y1 Cuc\n\n42) Babamots: Trade B3 R3 Babamots\n\n43) Cuc: Build Y2 Cuc\n\tBabamots: Looks like you might have forgotten about catastrophes. Either of us can trigger them at any time on our turn.\n\n44) Babamots: Sacrifice R3 Babamots\nAttack Y2 Cuc\nAttack Y2 Cuc\nAttack Y1 Cuc\n\tCuc: Let&#39;s see what happens next.\n\n\tBabamots: GG! I will of course release the captive crews of those ships. ;-)\n\tCuc: thx!\n\tCuc: I&#39;m going for another game!\n\nHomeworlds Online (SDG# 35531)\nStarted: 2019.11.19, Ended: 2019.12.4\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld B1 Y2 G3\n\tts52: This game is for the Great Homeworlds Tournament 2019\n\n2) Trydnt: Homeworld R3 B2 G3\n\tts52: Have a good game!\n\tTrydnt: you too :)\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) ts52: Build B2 Ts52\n\n8) Trydnt: Build B2 Trydnt\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) Trydnt: Trade B2 Y2 Trydnt\n\n11) ts52: Build G1 Ts52\n\n12) Trydnt: Build Y1 Trydnt\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Trydnt: Discover Y1 Trydnt G1 G1\n\n15) ts52: Build G1 Ts52\n\n16) Trydnt: Build Y1 Trydnt\n\n17) ts52: Move Y1 Ts52 Kermit\n\n18) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n19) ts52: Build G2 Ts52\n\n20) Trydnt: Build G2 Trydnt\n\n21) ts52: Discover G2 Ts52 B3 Gonzo\n\n22) Trydnt: Build G2 Trydnt\n\n23) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\nBuild B3 Ts52\n\n24) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 Gee1\nBuild Y3 G1\n\n25) ts52: Trade B3 Y3 Ts52\n\n26) Trydnt: Sacrifice Y2 Gee1\nMove B1 Trydnt G1\nMove B1 G1 Kermit\nCatastrophe Kermit B\n\n27) ts52: Build B1 Ts52\n\n28) Trydnt: Discover Y1 G1 G3 G3\n\n29) ts52: Trade Y3 R3 Ts52\n\n30) Trydnt: Trade G2 R2 Trydnt\n\n31) ts52: Move B1 Ts52 Kermit\n\n32) Trydnt: Discover Y1 Gee1 B3 B3\n\n33) ts52: Build B2 Kermit\n\n34) Trydnt: Move Y3 G1 Kermit\n\n35) ts52: Discover B2 Kermit G1 Robin\n\n36) Trydnt: Sacrifice R2 Trydnt\nAttack Y1 Kermit\nAttack B1 Kermit\n\n37) ts52: Discover B1 Ts52 Y3 Bigbird\n\n38) Trydnt: Trade Y3 B3 Kermit\n\n39) ts52: Sacrifice G2 Gonzo\nBuild B2 Bigbird\nBuild B3 Robin\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B3\nBuild Y3 Trydnt\nBuild Y3 B3\n\n41) ts52: Build G1 Ts52\n\n42) Trydnt: Trade B1 R1 Kermit\n\n43) ts52: Build R1 Ts52\n\n44) Trydnt: Build B1 Kermit\n\n45) ts52: Build G2 Ts52\n\n46) Trydnt: Build R1 Kermit\n\n47) ts52: Move R1 Ts52 Bigbird\n\n48) Trydnt: Discover Y3 B3 G2 G2\n\n49) ts52: Move G2 Ts52 Bigbird\n\n50) Trydnt: Move Y3 G2 Bigbird\n\n51) ts52: Move R1 Bigbird Robin\n\n52) Trydnt: Sacrifice R1 Kermit\nAttack B2 Bigbird\n\n53) ts52: Move G2 Bigbird Ts52\n\n54) Trydnt: Sacrifice Y3 Bigbird\nMove B2 Bigbird Ts52\nMove B3 Kermit Ts52\nMove B1 Kermit Ts52\nCatastrophe Ts52 B\n\n55) ts52: Trade B3 Y3 Robin\n\n56) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 G3 Ts52\nMove Y1 Kermit Ts52\nMove Y1 B3 Ts52\nCatastrophe Ts52 Y\n\n\tts52: Good game. Well played!\n\tTrydnt: well played indeed. you really made me work for that\n\nHomeworlds Online (SDG# 35527)\nStarted: 2019.11.19, Ended: 2020.1.17\nParticipants: Felix (S), Laurie_Menke (N)\nWinner: Felix\n\n1) Laurie_Menke: Homeworld Y2 B1 G3\n\tLaurie_Menke: Hi Felix! Sorry it took me so long to accept your challenge. Just as I accepted two tournament challenges, I also got a ladder challenge and a regular challenge from a new player. I couldn&#39;t turn either of those down, but couldn&#39;t handle more than 4 games of Homeworlds at a time, so I waited. Now that the dust has settled a bit, I&#39;m ready to take you and Babamots on as well as NYCAvri&#39;s game in progress (and the new player game is still going!). Anyway, long story to say LET&#39;S DO THIS!  Have fun!  :)\r\n\r\nP.S. Just for the record, this game is for the Great Homeworlds Tournament of 2019, and I will fill out the required paperwork.  :)\n\n2) Felix: Homeworld B1 G3 B3 *\n\tFelix: Haha, no problem! I understand that. I accept the terms of the tournament, and will begin drawing up the terms of surrender shortly ;)\r\n\r\nHave fun!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: You mean you&#39;re going to surrender so soon?  ;)\n\n4) Felix: Build B1 Felix\n\tLaurie_Menke: Ooooo, I really don&#39;t like you&#39;re opening!\n\n5) Laurie_Menke: Build G1 Laurie_menke\n\tFelix: I like to be prepared for anything! And this opening is very tough actually, both to play out and to defend against. I&#39;ve never been very good at using it, so don&#39;t get too worried!\n\n6) Felix: Trade B3 Y3 Felix\n\tLaurie_Menke: Oh, I&#39;m worried for more reasons than your opening! \n\n7) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n8) Felix: Build B2 Felix\n\n9) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n10) Felix: Discover B2 Felix G2 Out\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) Felix: Build B2 Out\n\n13) Laurie_Menke: Discover G1 Laurie_menke B3 Blue\n\n14) Felix: Trade B2 Y2 Out\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) Felix: B B2 Out\n\n17) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Laurie_menke\nBuild G2 Blue\nBuild G2 Blue\n\n18) Felix: B B2 Felix\n\n19) Laurie_Menke: Build G3 Laurie_menke\n\n20) Felix: Build B3 Out\n\tFelix: Sorry for the delay! My wife and I had a baby, so I was a little distracted!\n\tLaurie_Menke: Wow! Congratulations! That&#39;s very exciting! Boy or girl?  (Also, sorry for my delay as well... the holidays took more of my time than expected.)\n\n21) Laurie_Menke: Sacrifice Y1 Laurie_menke\nMove G2 Blue Out\n\n22) Felix: Trade B3 R3 Out\n\tFelix: Boy! Thanks very much! And happy Holidays :)\n\tLaurie_Menke: :)\n\n23) Laurie_Menke: Sacrifice G2 Out\nBuild R1 Laurie_menke\nBuild G2 Blue\n\n24) Felix: Move R3 Out Blue\n\n25) Laurie_Menke: Build G3 Blue\nCatastrophe Blue Green\n\n26) Felix: Build B3 Out\n\n27) Laurie_Menke: Discover G1 Laurie_menke Y3 Yellow\n\tLaurie_Menke: Things are not looking good...\n\n28) Felix: Trade B3 Y3 Out\n\tFelix: Perhaps not the best!\n\n29) Laurie_Menke: Build G1 Yellow\n\n30) Felix: Build B3 Out\n\n31) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Yellow\nBuild G3 Laurie_menke\n\n32) Felix: Discover B3 Out G3 Green\n\n33) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n34) Felix: Build B3 Green\n\n35) Laurie_Menke: Move G1 Yellow Out\n\n36) Felix: Sacrifice Y2 Out\nMove B3 Green Laurie_menke\nMove B3 Green Laurie_menke\n\n37) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild R1 Laurie_menke\nBuild G2 Laurie_menke\nBuild G3 Laurie_menke\n\n38) Felix: Sacrifice R3 Blue\nAttack G3 Laurie_menke\nAttack Y2 Laurie_menke\nAttack G2 Laurie_menke\n\tLaurie_Menke: Ooo... nicely played... now let&#39;s see if I can get out of this...\n\n39) Laurie_Menke: Build G3 Laurie_menke\n\n40) Felix: Trade B3 R3 Laurie_menke\nCatastrophe Laurie_menke Red\nCatastrophe Laurie_menke Green\n\tFelix: Thank you! Best of luck :)\n\n\tFelix: Wow, what an explosion to end with. Two catastrophes in one turn! I&#39;ve never seen that before. Great game!\n\tLaurie_Menke: LOL! Me, either! Thanks for the fun, Felix, and congrats on the win!\n\nHomeworlds Online (SDG# 35719)\nStarted: 2019.11.19, Ended: 2019.12.3\nParticipants: Laurie_Menke (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Hi Laurie! This is for the tournament, right? I&#39;ll fill out the form.\r\n\r\nGood luck!\n\n2) Laurie_Menke: Homeworld Y2 B1 G3\n\tLaurie_Menke: Yes, and thank you, and good luck to you, too! Have fun!\n\n3) Babamots: Build G1 Babamots\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n7) Babamots: Build Y1 Babamots\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) Babamots: Build Y1 Babamots\n\n10) Laurie_Menke: Build R1 Laurie_menke\n\n11) Babamots: Discover Y1 Babamots G2 Risa\n\n12) Laurie_Menke: Build R2 Laurie_menke\n\n13) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y2 Risa\nBuild Y3 Babamots\n\n14) Laurie_Menke: Discover R2 Laurie_menke Y3 Yellow\n\n15) Babamots: Discover Y2 Risa B3 Bolarus\n\n16) Laurie_Menke: Move R2 Yellow Risa\n\n17) Babamots: Sacrifice Y1 Risa\nDiscover Y2 Risa G3 Orion\n\n18) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n19) Babamots: Trade Y1 R1 Babamots\n\n20) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n21) Babamots: Trade Y3 G3 Babamots\n\n22) Laurie_Menke: Build R2 Risa\n\n23) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y3 Bolarus\nBuild Y3 Babamots\n\n24) Laurie_Menke: Sacrifice Y1 Laurie_menke\nDiscover R2 Risa Y3 Yellow\n\n25) Babamots: Build Y1 Orion\n\n26) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild R2 Yellow\nBuild R3 Laurie_menke\nBuild R3 Risa\n\tBabamots: When in doubt, ruthlessly hog the yellow. :-)\n\tLaurie_Menke: :)  Yep... I see this about you. For others it&#39;s the blue, but being frozen out of something seems to be my life.  :)\n\n27) Babamots: Trade Y3 R3 Bolarus\n\tLaurie_Menke: But two can play the freeze out game!\n\n28) Laurie_Menke: Sacrifice B1 Laurie_menke\nTrade R3 Y3 Risa\n\n29) Babamots: Sacrifice Y1 Babamots\nDiscover R1 Babamots G2 Bajor\n\tBabamots: Hopefully this will be enough red to get by.\n\n30) Laurie_Menke: Move Y3 Risa Orion\n\tLaurie_Menke: Ditto.  :)\n\n31) Babamots: Sacrifice Y3 Babamots\nMove R1 Bajor Bolarus\nMove R1 Bolarus Laurie_menke\nMove R3 Bolarus Laurie_menke\nCatastrophe Laurie_menke R\n\tBabamots: I hadn&#39;t anticipated the blue sacrifice. That put me in a bit of a tight spot.\n\tLaurie_Menke: Sorry to be leaving Risa (I&#39;ve heard it&#39;s quite a place for R&amp;R!), but I&#39;ve got some work to do over in Orion.  :)\n\n\tBabamots: When I looked at this position a bit, I noticed a danger for you that was a side-effect of my last move. Would you like to undo and pick a different move? Otherwise I&#39;m afraid I&#39;ll be executing the infamous Bluebird maneuver.\n\tLaurie_Menke: Ack! You&#39;re right! You Bluebirded me! Well done... no, you won fair and square. Congratulations, Babamots! Thanks for the fun!  :)\n\tLaurie_Menke: Then again... you might not have me yet... let&#39;s just see where this takes us... I was thinking I was going to bluebird you in 2 moves. My problem is, I don&#39;t know whether I would have seen it coming and done the thing I&#39;m about to do. So let&#39;s say you won but play it out with me trying this escape, OK?\n\tLaurie_Menke: Oh! It was your turn! Then all of that is moot... you definitely had me.  :)  Congrats!  :)\n\tBabamots: I&#39;ve been Bluebirded myself, but I don&#39;t think I&#39;ve ever been the Bluebirder. I&#39;ll cross that off my bucket list :-D.\r\n\r\nThanks for the game!\n\tBabamots: Sorry for the confusion; it was my turn, so you needed to undo to save yourself. I&#39;m afraid I pulled the trigger as soon as I read your concession.\n\tLaurie_Menke: Makes sense, and congratulations! I actually got my &quot;I Beat Andy&quot; medal by Bluebirding him, but I don&#39;t count it because he was distracted because it was during an Andy vs. Everybody. I&#39;ve never beat him since, so I haven&#39;t allowed myself to enjoy the medal until I beat him when he&#39;s concentrating. That said, I think I have him on the run in our current game, so maybe that&#39;ll be soon! Bucket list items for all!  :)  \n\tBabamots: Beating Andy is high on my bucket list. If I can get to the DC area this summer, maybe I can catch him for a showdown at high noon.\n\tLaurie_Menke: He would love that!  :)\n\nHomeworlds Online (SDG# 35733)\nStarted: 2019.11.20, Ended: 2019.12.3\nParticipants: eliscinsky (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\tSimon: Hi! This is for the Great Homeworlds Tournament 2019. Have fun!\n\n3) Simon: Build B1 Simon\n\teliscinsky: Agreed. You too!\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Simon: Trade B1 R1 Simon\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Simon: Build R2 Simon\n\n8) eliscinsky: Build Y1 Eliscinsky\n\n9) Simon: Trade R2 Y2 Simon\n\n10) eliscinsky: Discover Y1 Eliscinsky G3 Orion\n\n11) Simon: Build R2 Simon\n\n12) eliscinsky: Build Y1 Orion\n\n13) Simon: Build Y2 Simon\n\n14) eliscinsky: Build Y2 Eliscinsky\n\n15) Simon: Discover Y2 Simon G2 G2\n\n16) eliscinsky: Trade Y2 R2 Eliscinsky\n\n17) Simon: Move R2 Simon G2\n\n18) eliscinsky: Move R2 Eliscinsky Orion\n\n19) Simon: Build Y2 Simon\n\n20) eliscinsky: Build Y3 Eliscinsky\n\n21) Simon: Build Y3 G2\n\n22) eliscinsky: Trade Y3 R3 Eliscinsky\n\n23) Simon: Discover Y3 G2 B3 B3\n\n24) eliscinsky: Build Y3 Eliscinsky\n\n25) Simon: Build Y3 G2\n\n26) eliscinsky: Sacrifice Y3 Eliscinsky\nMove Y1 Orion G2\nMove Y1 G2 Simon\nMove Y1 Orion G2\n\n27) Simon: Move Y3 G2 Orion\n\n28) eliscinsky: Move Y1 G2 Simon\nCatastrophe Simon Yellow\n\n29) Simon: Sacrifice R1 Simon\nAttack R2 Orion\n\n30) eliscinsky: Move R3 Eliscinsky B3\n\n31) Simon: Sacrifice R2 G2\nAttack R3 B3\nPass\n\n32) eliscinsky: Build G1 Eliscinsky\n\n33) Simon: Sacrifice Y2 G2\nMove Y3 B3 Eliscinsky\nMove R3 B3 Eliscinsky\n\n34) eliscinsky: Attack R3 Eliscinsky\n\n35) Simon: Sacrifice R2 Orion\nAttack R3 Eliscinsky\nAttack G3 Eliscinsky\n\n36) eliscinsky: Discover G1 Eliscinsky R3 Redgiant\n\n37) Simon: Attack Y1 Eliscinsky\n\n\tSimon: gg! Yes, this is a common thread when one player has larger reds than the other. It can even happen by sending 3 3-pips, letting opponent take 2, then retaking 3.\n\nHomeworlds Online (SDG# 35729)\nStarted: 2019.11.20, Ended: 2019.12.12\nParticipants: goulo (S), eliscinsky (N)\nWinner: goulo\n\n1) eliscinsky: Homeworld R1 B2 G3\n\n2) goulo: Homeworld R3 B1 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019. Good Luck &amp; Have fun! \n\n3) eliscinsky: Build G1 Eliscinsky\n\tgoulo: thanks, you too!\n\n4) goulo: Build G1 Goulo\n\n5) eliscinsky: Trade G1 R1 Eliscinsky\n\n6) goulo: Trade G1 R1 Goulo\n\n7) eliscinsky: Build R2 Eliscinsky\n\n8) goulo: Build R2 Goulo\n\n9) eliscinsky: Build G1 Eliscinsky\n\n10) goulo: Build G1 Goulo\n\n11) eliscinsky: Trade R2 Y2 Eliscinsky\n\n12) goulo: Trade R1 Y1 Goulo\n\n13) eliscinsky: Trade G1 B1 Eliscinsky\n\n14) goulo: Trade G1 B1 Goulo\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) goulo: Build B2 Goulo\n\n17) eliscinsky: Build B2 Eliscinsky\n\n18) goulo: Discover B1 Goulo G2 Verdo\n\n19) eliscinsky: Discover B2 Eliscinsky G3 Orion\n\n20) goulo: Build B3 Verdo\n\n21) eliscinsky: Build B3 Orion\n\n22) goulo: Trade B1 Y1 Verdo\n\n23) eliscinsky: Trade B3 Y3 Orion\n\n24) goulo: Build G1 Goulo\n\n25) eliscinsky: Trade B2 R2 Orion\n\n26) goulo: Discover G1 Goulo Y2 Flavo\n\n27) eliscinsky: Move G1 Eliscinsky Orion\n\n28) goulo: Move R2 Goulo Verdo\n\n29) eliscinsky: Move B1 Eliscinsky Orion\n\n30) goulo: Build Y1 Goulo\n\n31) eliscinsky: Move R2 Orion Flavo\n\n32) goulo: Discover G1 Flavo Y3 Flavego\n\n33) eliscinsky: Sacrifice Y2 Eliscinsky\nMove G1 Orion Flavo\nMove B1 Orion Flavo\n\n34) goulo: Discover B2 Goulo Y2 Duaflavo\n\n35) eliscinsky: Build G1 Flavo\n\n36) goulo: Sacrifice G3 Goulo\nBuild Y2 Verdo\nBuild Y3 Goulo\nBuild G2 Flavego\n\n37) eliscinsky: Build R1 Flavo\n\n38) goulo: Build R2 Verdo\n\n39) eliscinsky: Sacrifice Y3 Orion\nMove R1 Flavo Goulo\nMove R2 Flavo Goulo\nMove B1 Flavo Goulo\n\n40) goulo: Attack B1 Goulo\n\n41) eliscinsky: Sacrifice G1 Flavo\nBuild R3 Goulo\nCatastrophe Goulo Red\n\n42) goulo: Build Y3 Verdo\n\n43) eliscinsky: Build G1 Flavo\n\n44) goulo: Move B3 Verdo Flavego\n\n45) eliscinsky: Move G1 Flavo Flavego\n\n46) goulo: Sacrifice Y3 Goulo\nMove Y3 Verdo Flavego\nMove Y3 Flavego Eliscinsky\nMove B3 Flavego Eliscinsky\n\n47) eliscinsky: Attack Y3 Eliscinsky\n\n48) goulo: Sacrifice R2 Verdo\nAttack G3 Eliscinsky\nAttack Y3 Eliscinsky\n\n49) eliscinsky: Move G1 Flavo Flavego\nCatastrophe Flavego Green\n\teliscinsky: Well done, I see my end coming in 2 moves\n\n50) goulo: Attack R1 Eliscinsky\n\tgoulo: thanks, I was worried when you catastrophied my red home star, but then realized I could deprive you of yellow, which gave me time to figure out and build up a successful attack...\n\teliscinsky: Going out with a bang!\n\n\teliscinsky: Well played, I enjoyed our match!\n\tgoulo: thanks, good game!\n\nHomeworlds Online (SDG# 35735)\nStarted: 2019.11.20, Ended: 2019.12.14\nParticipants: bhorner (S), eliscinsky (N)\nWinner: bhorner\n\n1) eliscinsky: Homeworld R1 B2 G3\n\n2) bhorner: Homeworld R3 B1 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019. Good Luck &amp; Have fun! \n\tbhorner: Agreed.  Good luck &amp; have fun to you as well!\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) bhorner: Build G1 Bhorner\n\n5) eliscinsky: Trade G1 R1 Eliscinsky\n\n6) bhorner: Trade G1 R1 Bhorner\n\n7) eliscinsky: Build R2 Eliscinsky\n\n8) bhorner: Build R2 Bhorner\n\n9) eliscinsky: Build G1 Eliscinsky\n\n10) bhorner: Trade R2 Y2 Bhorner\n\n11) eliscinsky: Trade R2 Y2 Eliscinsky\n\n12) bhorner: Build R2 Bhorner\n\n13) eliscinsky: Build G1 Eliscinsky\n\n14) bhorner: Discover R1 Bhorner G2 Puddle\n\n15) eliscinsky: Sacrifice Y2 Eliscinsky\nDiscover G1 Eliscinsky R3 Mercury\nDiscover G1 Eliscinsky R3 Venus\n\n16) bhorner: Build R2 Bhorner\n\n17) eliscinsky: Build G1 Eliscinsky\n\n18) bhorner: Discover R2 Bhorner Y2 Flame\n\n19) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Mercury\nBuild G2 Venus\nBuild G3 Eliscinsky\n\n20) bhorner: Build G3 Bhorner\n\n21) eliscinsky: Trade R1 B1 Eliscinsky\n\n22) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R1 Flame\nBuild R2 Puddle\n\n23) eliscinsky: Trade G1 Y1 Eliscinsky\n\n24) bhorner: Move G3 Bhorner Flame\n\n25) eliscinsky: Build G1 Eliscinsky\n\n26) bhorner: Trade R2 B2 Bhorner\n\n27) eliscinsky: Sacrifice B1 Eliscinsky\nTrade G2 R2 Mercury\n\n28) bhorner: Build G2 Flame\n\n29) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y1 Eliscinsky\nBuild Y1 Eliscinsky\nBuild G3 Eliscinsky\n\n30) bhorner: Move G3 Flame Mercury\n\n31) eliscinsky: Trade Y1 B1 Eliscinsky\n\n32) bhorner: Attack R2 Mercury\n\n33) eliscinsky: Build B1 Eliscinsky\n\n34) bhorner: Move B2 Bhorner Flame\n\n35) eliscinsky: Move B1 Eliscinsky Venus\n\n36) bhorner: Attack G1 Mercury\n\n37) eliscinsky: Move Y1 Eliscinsky Venus\n\n38) bhorner: Sacrifice Y2 Bhorner\nMove G1 Mercury Eliscinsky\nMove G3 Mercury Eliscinsky\nCatastrophe Eliscinsky G\n\n39) eliscinsky: Sacrifice G2 Venus\nBuild B2 Venus\nBuild B3 Eliscinsky\n\n40) bhorner: Build B3 Flame\n\n41) eliscinsky: Trade B3 G3 Eliscinsky\n\teliscinsky: So that&#39;s how you want to play it .... :) LOL\r\nNice move!\n\n42) bhorner: Discover G2 Flame B3 Ocean\n\tbhorner: Thanks.  :)  I had a little advantage, so trading down was good for me. :)\n\n43) eliscinsky: Build B3 Eliscinsky\n\n44) bhorner: Discover B2 Flame Y3 Sun\n\n45) eliscinsky: Trade B3 Y3 Eliscinsky\n\n46) bhorner: Sacrifice G2 Ocean\nBuild B3 Flame\nBuild B3 Sun\n\n47) eliscinsky: Build G1 Venus\n\n48) bhorner: Move B3 Flame Venus\n\n49) eliscinsky: Move B1 Eliscinsky Venus\nCatastrophe Venus Blue\n\n50) bhorner: Move B3 Flame Venus\n\n51) eliscinsky: Sacrifice Y3 Eliscinsky\nDiscover Y1 Venus Y2 Sol\nMove G1 Venus Sol\nMove G1 Venus Sol\n\n52) bhorner: Trade B3 Y3 Venus\n\n53) eliscinsky: Discover Y1 Sol Y1 Nightlight\n\n54) bhorner: Discover R2 Flame Y3 Star\n\n55) eliscinsky: Build Y2 Eliscinsky\n\n56) bhorner: Move R1 Flame Nightlight\n\n57) eliscinsky: Build G1 Sol\n\n58) bhorner: Trade B2 Y2 Sun\n\n59) eliscinsky: Sacrifice Y1 Nightlight\nMove G1 Sol Bhorner\n\n60) bhorner: Trade G3 B3 Bhorner\n\n61) eliscinsky: Trade G1 B1 Bhorner\n\n62) bhorner: Attack B1 Bhorner\n\n63) eliscinsky: Build G1 Eliscinsky\n\n64) bhorner: Sacrifice Y2 Sun\nMove Y3 Venus Eliscinsky\nMove B3 Sun Eliscinsky\n\tbhorner: More tricky than I expected.  :)\n\n65) eliscinsky: Sacrifice Y2 Eliscinsky\nMove G1 Sol Bhorner\nMove G1 Sol Bhorner\n\n66) bhorner: Sacrifice R2 Puddle\nAttack G1 Bhorner\nAttack G1 Bhorner\n\n67) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y1 Eliscinsky\nBuild Y2 Eliscinsky\nBuild G2 Eliscinsky\nCatastrophe Eliscinsky Yellow\n\n68) bhorner: Sacrifice R2 Mercury\nAttack G2 Eliscinsky\nAttack G1 Eliscinsky\n\n\teliscinsky: Thanks for a great game.  I truly enjoyed it.\n\tbhorner: Same here.  I think there were at least 3 positions in the last 5 moves or so where I had exactly one response, anything else and I would have lost.  :). GG!\n\nHomeworlds Online (SDG# 35726)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.20, Ended: 2020.1.8\nParticipants: bhorner (S), Jerome (N)\nWinner: bhorner\n\n1) Jerome: Homeworld R1 B2 G3\n\n2) bhorner: Homeworld B1 R3 G3\n\n3) Jerome: Build G1 Jerome\n\n4) bhorner: Build G1 Bhorner\n\n5) Jerome: Trade G1 Y1 Jerome\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) Jerome: Build Y1 Jerome\n\n8) bhorner: Trade B1 Y1 Bhorner\n\n9) Jerome: Discover Y1 Jerome G3 Alpha\n\n10) bhorner: Build Y2 Bhorner\n\n11) Jerome: Build Y2 Alpha\n\n12) bhorner: Discover Y1 Bhorner G2 Bush\n\n13) Jerome: Discover Y2 Alpha G1 Orion\n\n14) bhorner: Build G1 Bhorner\n\n15) Jerome: Build G1 Jerome\n\n16) bhorner: Build G2 Bhorner\n\n17) Jerome: Build G2 Jerome\n\n18) bhorner: Trade G1 R1 Bhorner\n\n19) Jerome: Trade G1 B1 Jerome\n\n20) bhorner: Move R1 Bhorner Bush\n\n21) Jerome: Move B1 Jerome Alpha\n\n22) bhorner: Move R1 Bush Alpha\n\n23) Jerome: Build Y2 Alpha\n\n24) bhorner: Build Y3 Bhorner\n\n25) Jerome: Trade Y2 R2 Alpha\n\n26) bhorner: Build R1 Alpha\n\n27) Jerome: Sacrifice R2 Alpha\nAttack R1 Alpha\nAttack R1 Alpha\n\n28) bhorner: Trade Y2 R2 Bhorner\n\n29) Jerome: Move R1 Alpha Orion\n\n30) bhorner: Build Y2 Bhorner\n\n31) Jerome: Build R2 Alpha\n\n32) bhorner: Discover Y2 Bhorner B2 Ocean\n\n33) Jerome: Build Y2 Orion\n\n34) bhorner: Sacrifice G2 Bhorner\nBuild Y3 Bush\nBuild Y3 Ocean\n\n35) Jerome: Discover R1 Alpha G2 Sirius\n\n36) bhorner: Sacrifice Y2 Ocean\nMove Y3 Ocean Orion\nMove Y3 Bush Alpha\n\n37) Jerome: Move R2 Alpha Bush\n\n38) bhorner: Sacrifice R2 Bhorner\nAttack Y2 Orion\nAttack R1 Orion\n\n39) Jerome: Sacrifice R2 Bush\nAttack R1 Orion\nAttack Y2 Orion\n\n40) bhorner: Build Y2 Bhorner\n\n41) Jerome: Build R2 Sirius\n\n42) bhorner: Discover Y2 Bhorner B2 Puddle\n\n43) Jerome: Move Y2 Orion Puddle\n\n44) bhorner: Discover Y2 Puddle B3 Ocean\n\n45) Jerome: Build R2 Orion\n\n46) bhorner: Trade Y2 R2 Ocean\n\n47) Jerome: Build R3 Sirius\n\n48) bhorner: Sacrifice R2 Ocean\nAttack R2 Orion\nAttack Y2 Orion\n\n49) Jerome: Sacrifice Y1 Alpha\nMove R3 Sirius Bhorner\n\n50) bhorner: Attack R3 Bhorner\n\n51) Jerome: Sacrifice Y2 Puddle\nMove R2 Sirius Bhorner\nMove R1 Sirius Bhorner\nCatastrophe Bhorner R\n\n52) bhorner: Sacrifice Y3 Orion\nMove G3 Bhorner Alpha\nMove G3 Alpha Jerome\nMove Y3 Alpha Jerome\n\n53) Jerome: Build Y1 Jerome\n\n54) bhorner: Sacrifice R2 Orion\nAttack G3 Jerome\nAttack G2 Jerome\n\n\tJerome: Thanks for the game!\n\tbhorner: Yes, thank you too!\n\nHomeworlds Online (SDG# 35670)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.11.26, Ended: 2019.11.29\nParticipants: capi3101 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tcapi3101: Thank you sir, may I have another?\n\twil: Of course!\n\n2) capi3101: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\n4) capi3101: Build G1 Capi3101\n\n5) wil: T G1 Y1 Wil\n\tcapi3101: ...and let the game commence. Good luck.\n\n6) capi3101: T G1 B1 Capi3101\n\twil: Gl 2 u2\n\n7) wil: B Y1 Wil\n\n8) capi3101: Build B1 Capi3101\n\n9) wil: D Y1 Wil B3 B3\n\n10) capi3101: Discover B1 Capi3101 G2 Aleph\n\twil: With only 2 y2s in the bank I have the lead on the race\n\tcapi3101: Investing in the large blue didn&#39;t help me any either...\n\n11) wil: S G3 Wil\nB Y2 B3\nB Y2 B3\nB Y3 Wil\n\n12) capi3101: Build B2 Capi3101\n\n13) wil: M Y2 B3 Aleph\n\n14) capi3101: Sacrifice B1 Aleph\nTrade B2 R2 Capi3101\n\n15) wil: B Y3 Aleph\n\n16) capi3101: Move R2 Capi3101 Aleph\n\n17) wil: D Y2 Aleph G3 G3\n\twil: OPEC just froze ya out of oil, ya ain&#39;t going anywhere\n\twil: Unless your space ships have sails... \n\n18) capi3101: Build B1 Capi3101\n\n19) wil: B Y3 Aleph\n\twil: Aleph is now the land that time forgot for your reds\n\n20) capi3101: M G3 Capi3101 Aleph\n\twil: Oops dang brain, moved the wrong 1 while talking smack\n\tcapi3101: You mean you didn&#39;t want to give me the medium yellow? That sucks...\n\n21) wil: S Y2 B3\nM Y3 Aleph Capi3101\nD Y3 Aleph B3 Bthree\n\tcapi3101: Hell, if I&#39;m going to lose again, I might as well try to have some fun doing it...\n\n\twil: T r3 y3\r\nS r3. take over the universe\n\twil: Every game you lose brings  strategies of what not to do\n\twil: Don&#39;t let anyone corner an economy\n\tcapi3101: Yep.\n\nHomeworlds Online (SDG# 35731)\nStarted: 2019.11.26, Ended: 2020.1.21\nParticipants: capi3101 (S), Dther (N)\nWinner: capi3101\n\n1) Dther: Homeworld R2 B1 G3\n\n2) capi3101: Homeworld B1 Y3 G3\n\n3) Dther: Build G1 Dther\n\n4) capi3101: Build G1 Capi3101\n\n5) Dther: Trade G1 Y1 Dther\n\n6) capi3101: Build G1 Capi3101\n\n7) Dther: Build Y1 Dther\n\n8) capi3101: Discover G1 Capi3101 B2 Aleph\n\tDther: Sorry. I&#39;ve neglected my games for the past few days.\n\n9) Dther: Discover Y1 Dther G3 Lime\n\n10) capi3101: Trade G1 B1 Capi3101\n\n11) Dther: Build Y1 Lime\n\n12) capi3101: Build B2 Capi3101\n\n13) Dther: Build Y2 Dther\n\n14) capi3101: Discover B2 Capi3101 G2 Bet\n\n15) Dther: Trade Y2 B2 Dther\n\n16) capi3101: Sacrifice G3 Capi3101\nBuild B3 Bet\nBuild B3 Bet\nBuild B3 Capi3101\n\n17) Dther: Build Y2 Dther\n\n18) capi3101: Sacrifice B3 Bet\nTrade B3 G3 Capi3101\nTrade B1 R1 Capi3101\nTrade B2 Y2 Bet\n\n19) Dther: Trade Y1 R1 Dther\n\n20) capi3101: Build G1 Capi3101\n\n21) Dther: Build G1 Dther\n\n22) capi3101: Sacrifice G3 Capi3101\nBuild G2 Aleph\nBuild G2 Capi3101\nBuild G3 Capi3101\n\n\nHomeworlds Online (SDG# 35758)\nVariants: &quot;Hard time&quot;\nStarted: 2019.11.27, Ended: 2019.12.3\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 R2 G3\n\n2) dlwillson: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) Trydnt: Build B2 Trydnt\n\n8) dlwillson: B B2 Dlwillson\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) dlwillson: D B2 Dlwillson G2 Field\n\n11) Trydnt: Discover B2 Trydnt G1 G1\n\n12) dlwillson: Build B1 Field\n\n13) Trydnt: Build B2 G1\n\n14) dlwillson: B B3 Dlwillson\n\n15) Trydnt: Build B3 G1\n\n16) dlwillson: T B2 Y2 Field\n\n17) Trydnt: Trade B2 Y2 G1\n\n18) dlwillson: T B3 R3 Dlwillson\n\n19) Trydnt: Trade B3 R3 G1\n\n20) dlwillson: B G1 Dlwillson\n\n21) Trydnt: Build B2 G1\n\n22) dlwillson: B R1 Dlwillson\n\n23) Trydnt: Move R3 G1 Field\n\n24) dlwillson: S Y2 Field\nM R3 Dlwillson Field\nM R3 Field G1\n\n25) Trydnt: Sacrifice Y2 G1\nDiscover B2 G1 G2 G2\nDiscover B2 G1 G2 Gee2\n\n26) dlwillson: B R1 Dlwillson\n\n27) Trydnt: Build B2 G2\n\n28) dlwillson: B B3 Field\n\n29) Trydnt: Attack B3 Field\n\n30) dlwillson: B B3 Field\n\n31) Trydnt: Attack B3 Field\n\n32) dlwillson: M B1 Dlwillson Field\nC Field B\n\n33) Trydnt: Trade B2 Y2 G2\n\n34) dlwillson: D R1 Dlwillson R2 Mars\n\tdlwillson: Hmm... Pretty sure I could&#39;ve handled that better.\n\n35) Trydnt: Build R1 Field\n\n36) dlwillson: B R2 Dlwillson\n\n37) Trydnt: Discover B2 G2 R3 R3\n\n38) dlwillson: D G1 Dlwillson B2 Sea\n\n39) Trydnt: Build Y1 G2\n\n40) dlwillson: M R1 Dlwillson Sea\n\n41) Trydnt: Build Y1 G2\n\n42) dlwillson: T R1 B1 Sea\n\n43) Trydnt: Build Y2 Trydnt\n\n44) dlwillson: B R1 G1\n\n45) Trydnt: Discover Y1 Trydnt B1 B1\n\n46) dlwillson: S B1 Sea\nT R3 G3 G1\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B1\nBuild Y3 B1\nBuild Y3 Trydnt\n\n48) dlwillson: S G3 G1\nB G1 Dlwillson\nB G3 Sea\nB G3 Sea\n\n49) Trydnt: Build B1 Gee2\n\n50) dlwillson: S G3 Sea\nB G3 Dlwillson\nB R3 Dlwillson\nPass\n\n51) Trydnt: Sacrifice Y3 B1\nMove Y1 G2 Dlwillson\nMove Y1 G2 Dlwillson\nMove Y2 G2 Dlwillson\nCatastrophe Dlwillson Y\n\n\tdlwillson: Wow! Good game!\n\tTrydnt: well played!\n\nHomeworlds Online (SDG# 35770)\nStarted: 2019.12.4, Ended: 2019.12.4\nParticipants: Cuc2 (S), Cuc (N)\nWinner: Cuc\n\n1) Cuc: Homeworld G2 B1 Y3 N\n\n2) Cuc2: H G3 B3 R3 *\n\n3) Cuc: Build Y1 Cuc\n\n4) Cuc2: B R1 Cuc2\n\n5) Cuc: Trade Y1 R1 Cuc\n\n6) Cuc2: T R1 Y1 Cuc2\n\n7) Cuc: Build R1 Cuc\n\n8) Cuc2: B Y1 Cuc2\n\n9) Cuc: Discover R1 Cuc G3 G3a\n\n10) Cuc2: D Y1 Cuc2 G2 G2b\n\n11) Cuc: Build R1 G3a\n\n12) Cuc2: B Y1 G2b\n\n13) Cuc: Build Y2 Cuc\n\n14) Cuc2: B R2 Cuc2\n\n15) Cuc: Move Y2 Cuc G3a\n\n16) Cuc2: B Y2 G2b\n\n17) Cuc: Build R2 Cuc\n\n18) Cuc2: S Y2 G2b\nM R3 Cuc2 G2b\nM R3 G2b G3a\n\n19) Cuc: Move R1 Cuc G3a\nCatastrophe G3a R\n\n20) Cuc2: B Y2 G2b\n\n21) Cuc: Build R1 Cuc\n\n22) Cuc2: B R1 Cuc2\n\n23) Cuc: Trade R1 G1 Cuc\n\n24) Cuc2: M Y1 G2b G3a\n\n25) Cuc: Move R2 Cuc G3a\n\n26) Cuc2: B Y2 G2b\n\n27) Cuc: Move Y2 G3a G2b\nCatastrophe G2b Y\n\n28) Cuc2: M R2 Cuc2 Cuc\n\n29) Cuc: Build R1 G3a\n\n30) Cuc2: B R1 Cuc2\n\n31) Cuc: Build G1 Cuc\n\n32) Cuc2: A G1 Cuc\n\n33) Cuc: Sacrifice R1 G3a\nAttack R2 Cuc\n\n34) Cuc2: B Y1 G3a\n\n35) Cuc: Attack G1 Cuc\n\n36) Cuc2: B Y2 G3a\n\n37) Cuc: Attack Y2 G3a\n\n38) Cuc2: B Y2 Cuc2\n\n39) Cuc: Discover R2 G3a G2 G2c\n\n40) Cuc2: M Y1 Cuc2 G2c\n\n41) Cuc: Attack Y1 G2c\n\n42) Cuc2: T R1 G1 Cuc2\n\n43) Cuc: Sacrifice Y2 G3a\nMove G1 Cuc Cuc2\nMove G1 Cuc Cuc2\nCatastrophe Cuc2 G\n\n44) Cuc2: B Y2 G3a\n\n45) Cuc: Move R2 G2c G3a\n\n46) Cuc2: M Y2 G3a G2c\n\n47) Cuc: Attack Y1 G3a\n\n48) Cuc2: B Y2 G3a\n\n49) Cuc: Attack Y2 G3a\n\n50) Cuc2: B Y3 G2c\n\n51) Cuc: Pass\n\tCuc: The original game had a mistake, where y3 was built in cuc2. Hence, to align with that, cuc will pass, cuc2 will move y2 to cuc2, then we&#39;ll resume.\n\n52) Cuc2: M Y3 G2c Cuc2\n\n53) Cuc: Discover Y2 G3a G1 G1d\n\n54) Cuc2: B Y3 G3a\n\n55) Cuc: Build R1 Cuc\n\n56) Cuc2: T Y3 R3 Cuc2\n\n57) Cuc: Sacrifice Y2 G1d\nMove R1 Cuc Cuc2\nMove R2 Cuc Cuc2\nCatastrophe Cuc2 R\n\n58) Cuc2: M Y1 G3a Cuc\n\n59) Cuc: Trade Y3 R3 Cuc\n\n60) Cuc2: D Y2 G2c G3 G3E\n\n61) Cuc: Attack Y1 Cuc\n\n62) Cuc2: B Y2 G3E\n\n63) Cuc: Build Y3 G2c\n\n64) Cuc2: D Y3 G3a B2 B2f\n\n65) Cuc: Discover Y1 G3a G2 G2g\n\n66) Cuc2: T Y2 R2 Cuc2\n\n67) Cuc: Build Y2 G2g\n\n68) Cuc2: M Y3 B2f Cuc2\n\n69) Cuc: Move Y1 Cuc G3a\n\n70) Cuc2: T Y3 R3 Cuc2\n\n71) Cuc: Discover R2 G3a G1 G1h\n\n72) Cuc2: M Y2 G3E G2c\n\n73) Cuc: Move Y3 G2c G1h\n\n74) Cuc2: B Y3 G3E\n\n75) Cuc: Build R1 Cuc\n\n76) Cuc2: M Y2 G2c Cuc2\n\n77) Cuc: Build R1 G1h\n\n78) Cuc2: M Y2 G3E G1h\n\n79) Cuc: Sacrifice Y2 G2g\nMove R1 G1h Cuc2\nMove R2 G1h Cuc2\nCatastrophe Cuc2 R\n\n80) Cuc2: T Y2 R2 Cuc2\n\n81) Cuc: Move Y1 G3a Cuc\n\n82) Cuc2: B Y2 G3E\n\n83) Cuc: Move R3 Cuc Cuc2\n\n84) Cuc2: M Y2 G1h Cuc2\n\tCuc: The Red Hulk! Now what?\n\n85) Cuc: Attack R2 Cuc2\n\n86) Cuc2: S Y2 G3E\nM Y3 G3E G1h\nM Y3 G1h Cuc2\n\n87) Cuc: Sacrifice R2 Cuc2\nAttack Y2 Cuc2\nAttack Y3 Cuc2\n\tCuc: final blow with sacrificing r2 in cuc2 and conquering both yellow ships\n\tCuc: Thank you David. You&#39;re doing much better already, because this was by far the longest and most memorable game we played. Note that some moaneuvres occurred twice. Extinction events cleared out the known universe but I gradually gained position that way. Points of attention: a.) keep your HW occupied with a large ship, b.) keep your ships out of harm&#39;s way by not moving where I can conquer them, 3.) think of discovering systems to &quot;park&quot; your excess ships.\n\tCuc: Analyzing the game, at move 10 (see http://superdupergames.org/?page=archive_play&amp;gid=35770&amp;idx=17), I could have moved my Y3 over to your HW. Then, you&#39;d have to build either Yellow or Red in your HW to prevent me from overtaking both your ships by sacrificing my R2. You&#39;d be too late if you moved your R3 to my HW instead. But I would always sacrifice my R2 anyway, and conquer your red and whatever you built. Since I then have another R2 in your HW, I will then be able to conquer both your other ships, if you decide to build another ship in your HW. It would look like this: \r\n\r\n10. M R3 CUC CUC2; B R2 CUC2 //\r\n11. S R2 CUC, A R2 CUC2, A R2 CUC2; B Y2 CUC2 //\r\n12. S R2 CUC2, A Y2 CUC2, A Y2 CUC2; END \r\n\r\nThis shows that I&#39;ve got a lot to learn, to drag a game out 4 times its optimal length . . . apologies :-). \r\nIn any case, it was fun!\r\n\n\n\nHomeworlds Online (SDG# 35769)\nVariants: &quot;Hard time&quot;\nStarted: 2019.12.4, Ended: 2020.1.22\nParticipants: Babamots (S), Simon (N)\nWinner: Babamots\n\n1) Simon: Homeworld R1 B3 G3\n\n2) Babamots: Homeworld B2 R1 G3\n\tSimon: Enough with the nonstandard blue ship. Have fun!\n\n3) Simon: Build G1 Simon\n\tBabamots: It was a bold experiment, but I think green is the stronger start. Good luck!\n\n4) Babamots: Build G1 Babamots\n\n5) Simon: Trade G1 R1 Simon\n\n6) Babamots: Trade G3 R3 Babamots\n\n7) Simon: Build R2 Simon\n\n8) Babamots: Build R2 Babamots\n\n9) Simon: Trade R2 Y2 Simon\n\n10) Babamots: Trade R2 Y2 Babamots\n\n11) Simon: Build R2 Simon\n\n12) Babamots: Build R2 Babamots\n\n13) Simon: Discover R2 Simon B2 B2\n\n14) Babamots: Discover R2 Babamots Y3 Iconia\n\n15) Simon: Build G1 Simon\n\n16) Babamots: Trade R3 G3 Babamots\n\n17) Simon: Move G1 Simon B2\n\n18) Babamots: Move G1 Babamots Iconia\n\n19) Simon: Build Y1 Simon\n\n20) Babamots: Build Y1 Babamots\n\n21) Simon: Move Y1 Simon B2\n\n22) Babamots: Discover Y1 Babamots G3 Orion\n\n23) Simon: Discover R1 Simon Y2 Y2\n\n24) Babamots: Build G1 Babamots\n\n25) Simon: Build G2 Simon\n\n26) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y3 Babamots\nBuild Y3 Orion\n\n27) Simon: Sacrifice G2 Simon\nBuild R2 Y2\nBuild R3 B2\n\n28) Babamots: Discover Y2 Babamots B3 Gravesworld\n\n29) Simon: Build G2 Simon\n\n30) Babamots: Build R3 Iconia\n\n31) Simon: Move R2 Y2 Iconia\n\n32) Babamots: Sacrifice R2 Iconia\nAttack R2 Iconia\nPass\n\n33) Simon: Build G2 B2\n\n34) Babamots: Build G2 Iconia\n\n35) Simon: Discover R2 B2 G3 G3\n\n36) Babamots: Discover G2 Iconia R2 Romulus\n\n37) Simon: Sacrifice G2 B2\nBuild G2 B2\nBuild R3 Y2\n\n38) Babamots: Move Y3 Orion Romulus\n\n39) Simon: Trade G1 B1 B2\n\tBabamots: Sorry, thought I saw something better, but it was a hallucination.\n\n40) Babamots: Build G1 Romulus\n\n41) Simon: Sacrifice G2 Simon\nBuild G2 B2\nBuild B1 B2\n\n42) Babamots: Trade G1 B1 Babamots\n\tSimon: Apologies for long delay over the holidays. Sharp position with several enticing moves.\n\n43) Simon: Sacrifice B1 B2\nTrade R3 B3 Y2\n\n44) Babamots: Build G1 Romulus\n\n45) Simon: Sacrifice G2 B2\nBuild G2 B2\nBuild R3 Y2\n\tBabamots: I didn&#39;t anticipate that nice move, so I need to make sure I don&#39;t rush into anything.\r\n\r\nWhat I&#39;m considering seems likely to result in an endless cycle. What do you do if a ladder game gets stuck? Should we just see who runs out of patience and resigns?\n\tDraw5PlayAll: Sorry for barging in, but:\r\n\r\nOn other ladders, if the game ends in a draw, neither player moves. Since that is effectively the same as the challenger losing, whoever issued this challenge (i.e. whoever is lower on the ladder) should resign if they can&#39;t win.\n\tBabamots: I thought that might be the case. I&#39;ll resign if we get stuck.\n\tSimon: I agree with both of you: For the ladder, resign of the lower-rung player feels in spirit like a draw according the ladder rules: &quot;Draws are simply ignored.&quot; For rating points, it would be more appropriate for North seat to resign in a cycle because of North&#39;s unrealized first-move advantage.\r\n\r\nRepetition of position should really become part of the Homeworld rules!\n\tSimon: (If repetition ever becomes a Homeworlds rule, I&#39;m undecided whether repetition should be forbidden or whether n-fold repetition should be a draw claimable by any player. Delicate.)\n\tBabamots: For regular games, you can use console commands to make the game unrated after the fact. Now I wonder if that would work for ladder games too.\n\tBabamots: I&#39;m traveling for the next 24 hours or so, but after that I should have time to look at this properly.\n\tDraw5PlayAll: 1. I think n-fold repetition should be claimable by the players, but admittedly there are lots of variables (i.e. three of each piece, abandon and rediscover a system, etc) that can make it much more difficult than chess to decide if a position is repeated.\r\n2. The rumor is that in ladder games you can only freeze and thaw the clocks.\n\n46) Babamots: Move G2 Romulus Simon\n\n47) Simon: Move G2 B2 Orion\n\n48) Babamots: Sacrifice Y3 Babamots\nMove G1 Romulus Simon\nMove G1 Romulus Simon\nCatastrophe Simon G\nMove Y3 Romulus Simon\n\n\tSimon: gg, I overlooked this every night.\n\tBabamots: Thanks for the game! Though I&#39;m a little sorry for it to end that way since I think you could have held me off of getting enough blue and red.\n\nHomeworlds Online (SDG# 35489)\nStarted: 2019.12.4, Ended: 2019.12.18\nParticipants: Trydnt (S), Babamots (N)\nWinner: Trydnt\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: Good luck!\r\nThis is for the tournament, right?\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) Babamots: Build G1 Babamots\n\tTrydnt: Good luck to you! and yes this is for the great homeworlds tournament of 2019\n\n4) Trydnt: Build G1 Trydnt\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Babamots: Build R2 Babamots\n\n8) Trydnt: Build R2 Trydnt\n\n9) Babamots: Trade R1 Y1 Babamots\n\n10) Trydnt: Trade R2 Y2 Trydnt\n\n11) Babamots: Build Y1 Babamots\n\n12) Trydnt: Build G1 Trydnt\n\n13) Babamots: Build G1 Babamots\n\n14) Trydnt: Discover Y2 Trydnt G1 G1\n\n15) Babamots: Discover Y1 Babamots B3 Bolarus\n\n16) Trydnt: Build G2 Trydnt\n\n17) Babamots: Build G2 Babamots\n\n18) Trydnt: Discover G2 Trydnt B1 B1\n\n19) Babamots: Discover G2 Babamots G3 Orion\n\n20) Trydnt: Build G2 B1\n\n21) Babamots: Move G1 Babamots Bolarus\n\n22) Trydnt: Trade G2 Y2 B1\n\n23) Babamots: Build G2 Babamots\n\n24) Trydnt: Build Y1 B1\n\n25) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild Y3 Babamots\nBuild G3 Bolarus\n\n26) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y3 G1\nBuild R1 Trydnt\n\n27) Babamots: Move G3 Bolarus B1\n\n28) Trydnt: Sacrifice Y2 B1\nDiscover G2 B1 Y2 Y2\nMove Y3 G1 Orion\n\n29) Babamots: Sacrifice G1 Bolarus\nBuild G1 Orion\n\n30) Trydnt: Discover Y1 B1 B3 B3\n\n31) Babamots: Sacrifice G2 Babamots\nBuild G2 Orion\nCatastrophe Orion G\nBuild Y3 Bolarus\n\n32) Trydnt: Move Y2 G1 Bolarus\nCatastrophe Bolarus Y\n\n33) Babamots: Trade Y1 G1 Babamots\n\n34) Trydnt: Discover R1 Trydnt Y1 Y1\n\n35) Babamots: Build R2 Babamots\n\n36) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 Trydnt\nBuild R3 Y1\n\n37) Babamots: Move R2 Babamots B3\n\n38) Trydnt: Move R3 Y1 B3\n\n39) Babamots: Sacrifice G1 Babamots\nBuild R3 B3\n\tBabamots: Well that was mighty careless of me. I&#39;ll have to think about this.\n\tTrydnt: this has been one hell of a game so far\n\tTrydnt: I feel like I squandered an early lead with one move that felt so insignificant at the time\n\n40) Trydnt: Attack R3 B3\n\tBabamots: I need to resist the temptation to play quickly just to get this over with. I&#39;m not totally doomed yet, but desperate moves could finish me off.\n\n41) Babamots: Move R2 Babamots B3\nCatastrophe B3 R\n\n42) Trydnt: Move R3 Trydnt B1\n\n43) Babamots: Sacrifice G3 B1\nBuild Y1 Babamots\nBuild Y2 Babamots\nPass\n\n44) Trydnt: Move Y1 B3 Babamots\nCatastrophe Babamots Y\n\n\tTrydnt: That was one hell of a game. Well played!\n\tBabamots: Good game!\n\nHomeworlds Online (SDG# 35772)\nStarted: 2019.12.5, Ended: 2019.12.22\nParticipants: Cuc (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R2 B2 G3 *\n\n2) Cuc: H G3 Y1 R3 *\n\tBabamots: I&#39;ve been wanting to try a single-size homeworld. I think it will shorten the Hanne, which ought to work in favor of the player with first move advantage. Let&#39;s find out. :-)\n\n3) Babamots: Build G1 Babamots\n\tCuc: I take It on! I got a warning I should have blue. I realize it&#39;ll take some effort to access it, but I could travel to your HW . . . :-)\n\tBabamots: Bring it!\n\n4) Cuc: Build R1 Cuc\n\n5) Babamots: Trade G1 Y1 Babamots\n\tCuc: I played a game last Thursday, where the HW of me and my opponent were connected. I thought it would be a quick game, but it took 40+ moves. That was kind of a surprise. It took a time to establish a positional advantage, before it could be used to construct a winning situation. We&#39;ll see what happens here . . . \n\n6) Cuc: Discover R1 Cuc B2 B2a\n\n7) Babamots: Build Y1 Babamots\n\n8) Cuc: Build R1 Cuc\n\n9) Babamots: Build Y2 Babamots\n\n10) Cuc: M R1 Cuc B2a\n\n11) Babamots: Discover Y1 Babamots G1 Risa\n\n12) Cuc: Trade R1 G1 B2a\n\n13) Babamots: Trade Y2 R2 Babamots\n\n14) Cuc: Build G1 B2a\n\n15) Babamots: Build Y2 Risa\n\n16) Cuc: Build G2 B2a\n\n17) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y2 Babamots\nBuild Y3 Babamots\n\n18) Cuc: B R1 Cuc\n\n19) Babamots: Trade Y3 G3 Babamots\n\n20) Cuc: Trade G2 R2 B2a\n\n\tCuc: It&#39;s like watching magic: great skill!\n\n21) Babamots: Move R2 Babamots Risa\n\tBabamots: Once you&#39;ve got a big enough lead in one color, you can really run away with it. Yellow is my favorite for this.\n\tCuc: You robbed me of the opportunity to get Yellow at all! I wonder how you did that. I don&#39;t think I can follow the steps yet.\n\n22) Cuc: Discover R1 Cuc G2 G2b\n\n23) Babamots: Build Y3 Babamots\n\n24) Cuc: Build R1 Cuc\n\n25) Babamots: Build R3 Risa\n\n26) Cuc: Build R3 G2b\n\n27) Babamots: Discover R3 Risa B2 Bolarus\n\tCuc: I haven&#39;t been able to acquire any yellow yet. I can not move anything back to my HW. I&#39;m kinda stuck and waiting for the yellow invasion ;-B\n\n28) Cuc: Pass\n\tBabamots: Yellow is definitely the worst color to get locked out of. Green is also bad if it&#39;s early game.\n\n29) Babamots: Sacrifice Y3 Babamots\nMove R2 Risa Bolarus\nMove R3 Bolarus Cuc\nMove R2 Bolarus Cuc\nCatastrophe Cuc R\n\tCuc: Is there a decision tree you follow to lock somebody out? It seems systematic that you&#39;ve been able to accomplish this. I&#39;m not sure I understand how you made that happen. Or, by the same token, what I did to allow you . . .\n\n\tCuc: We haven&#39;t seen the advantage, I believe. Perhaps that shows that we&#39;re just beginners? But in that event, we play 2 games to even out the &quot;advantage&quot;. My buddy said that we both have the same &quot;disadvantage&quot;, meaning that we did not get to choose our HW and have to make it work. It&#39;s fun to explore the strenghts/weaknesses of each of the possible HWs. I&#39;m trying to gain enough experience to oversee the tactical impact of each possible HW (combo of stars, size/color) \n\tBabamots: GG. I think it&#39;s wise to get a yellow ship early so you&#39;re always ready to build more.\n\tCuc: Thx, I enjoy a game like this, even if I am at the losing hand. I see things and gradually learn.\n\tBabamots: If you want to look back and identify definite mistakes, maybe you can learn some general principles to improve the next game. Let me know if you want any help :-)\n\nHomeworlds Online (SDG# 35691)\nVariants: &quot;Hard time&quot;\nStarted: 2019.12.5, Ended: 2019.12.16\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\tdlwillson: Well, hello again! Didn&#39;t beat me thoroughly enough on the ladder, eh? :-)\n\n2) Trydnt: Homeworld R3 B2 G3\n\tTrydnt: haha well I love a good challenge :)\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: D G1 Dlwillson B2 Sea\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: B G1 Dlwillson\n\n8) Trydnt: Build Y1 Trydnt\n\tdlwillson: Trying something different. Let&#39;s see what happens.\n\tdlwillson: Trying something different. Let&#39;s see what happens.\n\tdlwillson: Trying something different. Let&#39;s see what happens.\n\n9) dlwillson: D G1 Dlwillson G2 Field\n\n10) Trydnt: Build Y2 Trydnt\n\n11) dlwillson: Build G1 Dlwillson\n\n12) Trydnt: Discover Y2 Trydnt B1 B1\n\n13) dlwillson: B G2 Field\n\n14) Trydnt: Discover Y2 B1 G3 G3\n\n15) dlwillson: B G2 Sea\n\n16) Trydnt: Discover Y1 Trydnt B1 B1\n\n17) dlwillson: T G2 Y2 Sea\n\n18) Trydnt: Build G2 Trydnt\n\n19) dlwillson: T G1 R1 Dlwillson\n\n20) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 Trydnt\nBuild Y3 B1\n\n21) dlwillson: B Y3 Sea\n\n22) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 B1 Sea\nMove Y2 G3 Sea\nCatastrophe Sea Y\n\n23) dlwillson: S G2 Field\nB G1 Dlwillson\nB G2 Sea\n\n24) Trydnt: Discover Y3 B1 G3 G3\n\n25) dlwillson: S G3 Dlwillson\nB G2 Sea\nB R1 Dlwillson\nB G3 Dlwillson\n\n26) Trydnt: Build Y1 Trydnt\n\n27) dlwillson: T G2 Y2 Sea\n\n28) Trydnt: Discover Y1 Trydnt B1 B1\n\n29) dlwillson: S G3 Dlwillson\nB G2 Sea\nB Y2 Sea\nB G3 Dlwillson\n\n30) Trydnt: Build Y2 Trydnt\n\n31) dlwillson: M Y2 Sea B1\n\n32) Trydnt: Sacrifice Y1 Trydnt\nDiscover Y1 B1 B2 B2\n\n33) dlwillson: S G3 Dlwillson\nB Y1 B1\nB Y3 Sea\nB G3 Dlwillson\n\n34) Trydnt: Build Y3 Trydnt\n\n35) dlwillson: S Y2 Sea\nM Y2 B1 Trydnt\nM Y1 B1 Trydnt\nC Trydnt Y\n\n36) Trydnt: Build Y1 G3\n\n37) dlwillson: M R1 Dlwillson B2\n\n38) Trydnt: Discover Y1 B2 B1 B1\n\n39) dlwillson: M G2 Sea G3\n\n40) Trydnt: Sacrifice Y1 G3\nDiscover Y3 G3 R2 R2\n\n41) dlwillson: S G2 G3\nB G2 Sea\nB G3 Field\n\n42) Trydnt: Move Y1 B1 Trydnt\n\n43) dlwillson: D G1 Sea B1 Sky\n\n44) Trydnt: Build Y1 Trydnt\n\n45) dlwillson: S G3 Field\nB Y2 Sea\nB Y2 Sea\nB G3 Sky\n\n46) Trydnt: Trade Y1 B1 Trydnt\n\n47) dlwillson: M Y3 Sea Sky\n\n48) Trydnt: Discover B1 Trydnt Y1 Y1\n\n49) dlwillson: T G3 R3 Dlwillson\n\n\nHomeworlds Online (SDG# 35692)\nStarted: 2019.12.5, Ended: 2020.1.14\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H Y2 B3 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) Trydnt: Build G1 Trydnt\n\n5) MobyNostromo: T G1 B1 Mobynostromo\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) MobyNostromo: D B1 Mobynostromo G1 Clover\n\n8) Trydnt: Build Y1 Trydnt\n\n9) MobyNostromo: B B1 Clover\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) MobyNostromo: B G1 Mobynostromo\n\n12) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y2 G3\nBuild Y3 Trydnt\n\n13) MobyNostromo: T B1 R1 Clover\n\n14) Trydnt: Trade Y3 G3 Trydnt\n\n15) MobyNostromo: T G3 Y3 Mobynostromo\n\n16) Trydnt: Discover Y2 G3 G1 G1\n\n17) MobyNostromo: B G2 Mobynostromo\n\n18) Trydnt: Build Y3 G1\n\n19) MobyNostromo: B G2 Mobynostromo\n\n20) Trydnt: Sacrifice Y3 G1\nMove Y1 G3 G1\nMove Y1 G1 Mobynostromo\nMove Y2 G1 Mobynostromo\nCatastrophe Mobynostromo Y\n\n21) MobyNostromo: T G2 Y2 Mobynostromo\n\n22) Trydnt: Trade Y1 R1 Trydnt\n\n23) MobyNostromo: B Y1 Mobynostromo\n\n24) Trydnt: Discover Y2 G3 R1 R1\n\n25) MobyNostromo: T G1 B1 Mobynostromo\n\n26) Trydnt: Build R2 Trydnt\n\n27) MobyNostromo: T Y2 R2 Mobynostromo\n\n28) Trydnt: Trade R1 B1 Trydnt\n\n29) MobyNostromo: B G1 Mobynostromo\n\n30) Trydnt: Build G1 Trydnt\n\n31) MobyNostromo: M G2 Mobynostromo Trydnt\n\n32) Trydnt: Trade G3 R3 Trydnt\n\n33) MobyNostromo: S G2 Trydnt\nB Y1 Mobynostromo\nB G2 Mobynostromo\n\n34) Trydnt: Sacrifice Y2 R1\nMove R3 Trydnt Mobynostromo\nMove B1 Trydnt Mobynostromo\n\n35) MobyNostromo: S G2 Mobynostromo\nB R1 Mobynostromo\nB R1 Mobynostromo\nC Mobynostromo R\n\n36) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Mobynostromo\nCatastrophe Mobynostromo B\n\n\tTrydnt: well played :)\n\tMobyNostromo: Well, I tried. But this is a very deep game, which fascinates me, but I have yet to break the code.\n\nHomeworlds Online (SDG# 35696)\nVariants: &quot;Hard time&quot;\nStarted: 2019.12.5, Ended: 2019.12.28\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld R3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) wil: B G1 Wil\n\n8) Trydnt: Build G1 Trydnt\n\n9) wil: T G1 R1 Wil\n\n10) Trydnt: Trade G1 Y1 Trydnt\n\n11) wil: B R1 Wil\n\n12) Trydnt: Build Y1 Trydnt\n\n13) wil: B R1 Wil\n\n14) Trydnt: Build Y2 Trydnt\n\n15) wil: D R1 Wil Y3 Y3\n\n16) Trydnt: Trade Y2 R2 Trydnt\n\n17) wil: D R1 Wil Y3 Why3\n\n18) Trydnt: Discover R2 Trydnt G1 G1\n\n19) wil: B R2 Wil\n\n20) Trydnt: Build Y2 Trydnt\n\n21) wil: T R2 Y2 Wil\n\n22) Trydnt: Move Y2 Trydnt G1\n\n23) wil: S G3 Wil\nB R2 Wil\nB R2 Y3\nB R3 Why3\n\n24) Trydnt: Discover Y2 G1 R3 R3\n\n25) wil: T R1 G1 Wil\n\n26) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 R3\nBuild Y3 Trydnt\nBuild B1 Trydnt\n\n27) wil: D Y2 Wil G3 G3\n\n28) Trydnt: Build R1 G1\n\n29) wil: M R1 Why3 G1\n\n30) Trydnt: Sacrifice R1 G1\nAttack R1 G1\n\n31) wil: B B2 Wil\n\n32) Trydnt: Move B1 Trydnt G1\n\n33) wil: S B2 Wil\nT R3 G3 Why3\nT R2 B2 Y3\n\n34) Trydnt: Build B3 G1\n\n35) wil: M G3 Why3 Wil\n\n36) Trydnt: Trade B3 Y3 G1\n\n\nHomeworlds Online (SDG# 35751)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2019.12.5, Ended: 2019.12.7\nParticipants: Trydnt (S), capi3101 (N)\nWinner: Trydnt\n\n1) capi3101: H Y1 B3 G3\n\n2) Trydnt: Homeworld G2 B1 Y3\n\n3) capi3101: Build G1 Capi3101\n\n4) Trydnt: Build Y1 Trydnt\n\n5) capi3101: Build G1 Capi3101\n\tcapi3101: Good hunting; hoping to provide more of a challenge than the last time we played...\n\n6) Trydnt: Build Y1 Trydnt\n\n7) capi3101: Trade G1 B1 Capi3101\n\n8) Trydnt: Discover Y1 Trydnt G3 G3\n\n9) capi3101: Trade G3 Y3 Capi3101\n\n10) Trydnt: Build Y2 G3\n\n11) capi3101: Discover Y3 Capi3101 G2 Dumb_move\n\n12) Trydnt: Build Y2 Trydnt\n\n13) capi3101: Move Y3 Dumb_move Capi3101\n\n14) Trydnt: Sacrifice Y2 G3\nDiscover Y1 Trydnt G3 G33\nDiscover Y2 Trydnt G3 G333\n\n\tcapi3101: Shit.\n\tcapi3101: I&#39;ll try again later.\n\nHomeworlds Online (SDG# 35753)\nStarted: 2019.12.5, Ended: 2020.6.9\nParticipants: Trydnt (S), Dther (N)\nWinner: Trydnt\n\n1) Dther: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld R3 G2 B3\n\n3) Dther: Build G1 Dther\n\n4) Trydnt: Build B1 Trydnt\n\n5) Dther: Build G1 Dther\n\n6) Trydnt: Build B1 Trydnt\n\n7) Dther: Discover G1 Dther B3 Hydrangea\n\n8) Trydnt: Trade B3 Y3 Trydnt\n\n9) Dther: Build G1 Hydrangea\n\n10) Trydnt: Build B2 Trydnt\n\n11) Dther: Sacrifice G3 Dther\nBuild G2 Hydrangea\nBuild G2 Dther\nBuild G3 Dther\n\n12) Trydnt: Discover B1 Trydnt Y1 Y1\n\n13) Dther: Trade G2 B2 Dther\n\n14) Trydnt: Discover B2 Trydnt Y1 Why1\n\n15) Dther: Discover B2 Dther Y3 Sunflower\n\n16) Trydnt: Trade Y3 G3 Trydnt\n\n17) Dther: Trade G1 Y1 Hydrangea\n\n18) Trydnt: Sacrifice G3 Trydnt\nBuild B2 Y1\nBuild B3 Why1\nBuild B3 Trydnt\n\n19) Dther: Discover G1 Hydrangea Y2 Dandelion\n\n20) Trydnt: Trade B2 R2 Why1\n\n21) Dther: Trade G1 R1 Dther\n\n22) Trydnt: Trade B3 Y3 Trydnt\n\n23) Dther: Sacrifice G2 Hydrangea\nBuild Y2 Hydrangea\nBuild Y3 Hydrangea\n\n24) Trydnt: Discover B2 Y1 G3 G3\n\n25) Dther: Discover Y3 Hydrangea R2 Rose\n\n26) Trydnt: Trade B3 G3 Why1\n\n27) Dther: Build G1 Dandelion\n\n28) Trydnt: Build R1 Why1\n\n29) Dther: Trade Y2 G2 Hydrangea\n\n30) Trydnt: Build Y2 Trydnt\n\n31) Dther: Sacrifice G2 Hydrangea\nBuild G1 Dther\nBuild G2 Dther\n\n32) Trydnt: Build G2 Why1\n\n33) Dther: Sacrifice Y3 Rose\nMove G1 Dandelion Why1\nMove G1 Dandelion Why1\nCatastrophe Why1 G\nDiscover G2 Dther Y3 Marigold\n\n34) Trydnt: Trade B1 G1 Y1\n\n35) Dther: Sacrifice G2 Marigold\nBuild Y2 Hydrangea\nBuild Y3 Hydrangea\n\n36) Trydnt: Discover Y2 Trydnt G1 G1\n\n37) Dther: Trade Y2 G2 Hydrangea\n\n38) Trydnt: Build B1 G3\n\n\nHomeworlds Online (SDG# 35723)\nStarted: 2019.12.9, Ended: 2020.1.4\nParticipants: goulo (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 Y2 G3\n\n2) goulo: Homeworld R3 B1 G3\n\n3) ajo: Build G1 Ajo\n\tgoulo: hi, have fun! This is for the tournament, right?\n\n4) goulo: Build G1 Goulo\n\tajo: Yes, for the tournament! Good luck.\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) ajo: Build G1 Alpha\n\n8) goulo: Build Y1 Goulo\n\n9) ajo: Trade G1 B1 Alpha\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) ajo: Build B2 Alpha\n\n12) goulo: Build Y1 Goulo\n\n13) ajo: Trade B2 Y2 Alpha\n\n14) goulo: Discover Y1 Goulo G2 Verdo\n\tDraw5PlayAll: This game is not on the progress table. \n\n15) ajo: Build B2 Alpha\n\tgoulo: I think ajo (as the first player) is supposed to add it, right?\r\nhttps://jpeterbaker.github.io/homeworlds/tournament/links2019.html\n\tajo: Oops. Added!\n\n16) goulo: Build Y1 Goulo\n\n17) ajo: Trade B2 R2 Alpha\n\n18) goulo: Discover Y1 Goulo G2 Verdo2\n\n19) ajo: Build R1 Alpha\n\n20) goulo: Build G1 Goulo\n\n21) ajo: Discover R1 Alpha G2 Beta\n\n22) goulo: Discover R1 Goulo Y2 Flavo\n\n23) ajo: Build Y3 Alpha\n\n24) goulo: Build Y3 Goulo\n\n25) ajo: Build G1 Ajo\n\n26) goulo: Discover Y1 Verdo2 G3 Verdego\n\n27) ajo: Sacrifice Y2 Alpha\nMove B1 Alpha Beta\nMove R2 Alpha Ajo\n\n28) goulo: Move G3 Goulo Beta\n\n29) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild Y2 Alpha\n\n30) goulo: Sacrifice R1 Flavo\nAttack R1 Beta\n\n31) ajo: Sacrifice R2 Ajo\nAttack R1 Beta\nPass\n\n32) goulo: Sacrifice G3 Beta\nBuild G3 Goulo\nBuild Y2 Verdo\nBuild Y3 Verdego\n\n33) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B2 Beta\nBuild B2 Beta\n\n34) goulo: Trade G1 R1 Goulo\n\n35) ajo: Sacrifice Y2 Alpha\nMove B1 Beta Goulo\nMove B2 Beta Goulo\n\n36) goulo: Attack B2 Goulo\n\n37) ajo: Sacrifice G2 Alpha\nBuild R1 Beta\nBuild B2 Goulo\nCatastrophe Goulo Blue\n\n\tajo: Check. :)\n\tgoulo: Yep, that game went pretty disastrously for me! Congrats! :)\n\nHomeworlds Online (SDG# 35787)\nStarted: 2019.12.12, Ended: 2019.12.21\nParticipants: speardane (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld R1 B2 G3\n\n2) speardane: Homeworld Y3 B2 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019. Good Luck &amp; Have fun! \n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) speardane: Build G1 Speardane\n\tspeardane: For the tournament!\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) speardane: Trade G3 R3 Speardane\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) speardane: Build G1 Speardane\n\n9) eliscinsky: Build G2 Eliscinsky\n\n10) speardane: Discover G1 Speardane B1 Delos\n\n11) eliscinsky: Discover G1 Eliscinsky B3 Earth\n\n12) speardane: Build G2 Delos\n\n13) eliscinsky: Build Y1 Eliscinsky\n\n14) speardane: Trade G1 Y1 Delos\n\n15) eliscinsky: Trade Y1 R1 Eliscinsky\n\n16) speardane: Build G1 Delos\n\n17) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Eliscinsky\nBuild G3 Eliscinsky\nBuild G3 Earth\n\n18) speardane: Sacrifice G2 Delos\nBuild G2 Speardane\nBuild G3 Delos\n\n19) eliscinsky: Trade G2 Y2 Eliscinsky\n\n20) speardane: Trade G3 R3 Delos\n\n21) eliscinsky: Trade G1 R1 Earth\n\n22) speardane: Discover G2 Speardane Y1 Lebling\n\n23) eliscinsky: Trade Y1 B1 Eliscinsky\n\n24) speardane: Build G1 Lebling\n\n25) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Earth\nBuild G3 Eliscinsky\nBuild G3 Eliscinsky\n\n26) speardane: Sacrifice G2 Lebling\nBuild R2 Delos\nBuild R2 Delos\n\n27) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R1 Earth Delos\nCatastrophe Delos Red\nMove G3 Earth Delos\n\n28) speardane: Sacrifice Y1 Delos\nDiscover G1 Delos B3 Kotok\n\n29) eliscinsky: Trade G3 Y3 Eliscinsky\n\n30) speardane: Build G2 Kotok\n\n31) eliscinsky: Sacrifice G2 Eliscinsky\nBuild G2 Delos\nBuild G3 Earth\n\n32) speardane: Trade G2 Y2 Kotok\n\n33) eliscinsky: Trade G2 R2 Delos\n\n34) speardane: Build G2 Kotok\n\n35) eliscinsky: Sacrifice G3 Earth\nBuild R1 Delos\nBuild G2 Delos\nBuild G3 Earth\n\n36) speardane: Trade G2 R2 Kotok\n\n37) eliscinsky: Move R1 Eliscinsky Kotok\n\n38) speardane: Sacrifice G1 Lebling\nBuild R2 Kotok\n\n39) eliscinsky: Sacrifice G2 Earth\nBuild R3 Delos\nBuild R3 Kotok\nCatastrophe Kotok Red\n\n40) speardane: Build Y1 Kotok\n\n41) eliscinsky: Sacrifice Y3 Eliscinsky\nMove R1 Delos Speardane\nMove R2 Delos Speardane\nMove R3 Delos Speardane\nCatastrophe Speardane Red\n\n42) speardane: Trade Y2 R2 Kotok\n\n43) eliscinsky: Trade G3 R3 Delos\n\n44) speardane: Build R1 Kotok\n\n45) eliscinsky: Sacrifice G3 Earth\nBuild G1 Eliscinsky\nBuild G2 Delos\nBuild R1 Delos\n\n46) speardane: Build G2 Speardane\n\n47) eliscinsky: Trade G2 Y2 Delos\n\n48) speardane: Trade G2 R2 Speardane\n\n49) eliscinsky: Sacrifice Y2 Delos\nMove G2 Delos Speardane\nMove R3 Delos Speardane\n\n50) speardane: Attack G2 Speardane\n\n51) eliscinsky: Attack R2 Speardane\n\n52) speardane: Sacrifice R2 Kotok\nAttack R2 Speardane\nPass\n\n53) eliscinsky: Attack R2 Speardane\n\n54) speardane: Sacrifice R1 Kotok\nAttack R2 Speardane\n\n55) eliscinsky: Attack R2 Speardane\n\n56) speardane: Pass\n\tspeardane: Good game. :)\n\n57) eliscinsky: Sacrifice R2 Speardane\nAttack G2 Speardane\nAttack G1 Speardane\n\n\teliscinsky: Thanks, agreed GG!\n\nHomeworlds Online (SDG# 35791)\nStarted: 2019.12.14, Ended: 2020.2.12\nParticipants: Draw5PlayAll (S), goulo (N)\nWinner: Draw5PlayAll\n\n1) goulo: Homeworld R3 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tgoulo: hi, have fun; for the tournament!\n\tDraw5PlayAll: Yep. Filled out the form.\n\n3) goulo: Build G1 Goulo\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) goulo: Build G1 Goulo\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) goulo: Trade G1 B1 Goulo\n\n10) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n11) goulo: Build G1 Goulo\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) goulo: Trade G1 R1 Goulo\n\n14) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n15) goulo: Build R2 Goulo\n\n16) Draw5PlayAll: Build R2 Draw5playall\n\n17) goulo: Trade R1 G1 Goulo\n\n18) Draw5PlayAll: Discover R2 Draw5playall G2 Build\n\n19) goulo: Discover R2 Goulo G1 Verdeto\n\n20) Draw5PlayAll: Move B1 Draw5playall Build\n\n21) goulo: Move B1 Goulo Verdeto\n\n22) Draw5PlayAll: Discover R1 Draw5playall G2 Construct\n\n23) goulo: Build Y1 Goulo\n\n24) Draw5PlayAll: Build Y2 Draw5playall\n\n25) goulo: Move Y1 Goulo Verdeto\n\n26) Draw5PlayAll: Move Y2 Draw5playall Construct\n\n27) goulo: Build Y2 Verdeto\n\n28) Draw5PlayAll: Build G1 Draw5playall\n\n29) goulo: Sacrifice G3 Goulo\nBuild G2 Goulo\nBuild G3 Goulo\nBuild R1 Verdeto\n\n30) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 Build\n\n31) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y2 Goulo\nBuild Y3 Goulo\n\tDraw5PlayAll: We both teeter on the edge of danger\n\n32) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Construct\nBuild Y3 Draw5playall\nBuild R2 Construct\n\tgoulo: heh, yeah, that&#39;s a lot of ships in this universe! like a roomful of mousetraps all set...\n\tDraw5PlayAll: I have 3 greens in my HW in another game too.\n\n33) goulo: Sacrifice Y2 Goulo\nMove Y3 Goulo Verdeto\nMove Y3 Verdeto Build\n\n34) Draw5PlayAll: Sacrifice Y2 Construct\nDiscover R2 Build G3 Create\nMove B1 Build Create\n\n35) goulo: Build Y2 Build\n\tDraw5PlayAll: I&#39;m out of green system names.\n\n36) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Draw5playall Build\nMove G1 Build Verdeto\nMove G1 Verdeto Goulo\nCatastrophe Goulo Green\n\n37) goulo: Sacrifice Y2 Verdeto\nMove Y3 Build Verdeto\nMove Y3 Verdeto Goulo\n\n38) Draw5PlayAll: Build R3 Create\n\tgoulo: Hmm, not sure how I overlooked that. A costly blunder!...\n\n39) goulo: Trade Y1 G1 Goulo\n\n40) Draw5PlayAll: Trade R2 Y2 Create\n\n41) goulo: Move R1 Verdeto Build\n\n42) Draw5PlayAll: Build G1 Draw5playall\n\n43) goulo: Attack B1 Build\n\n44) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 Construct\nBuild Y2 Create\nBuild Y3 Draw5playall\n\n45) goulo: Build B2 Build\n\n46) Draw5PlayAll: Move Y3 Construct Verdeto\n\n47) goulo: Discover R2 Verdeto G2 Verdo\n\n48) Draw5PlayAll: Build G3 Draw5playall\n\n49) goulo: Build G3 Goulo\n\n50) Draw5PlayAll: Move Y3 Draw5playall Build\n\n51) goulo: Sacrifice Y2 Build\nMove B1 Build Draw5playall\nMove B2 Build Draw5playall\n\tDraw5PlayAll: Resistance is futile.\n\n52) Draw5PlayAll: Sacrifice R1 Construct\nAttack R1 Build\n\n53) goulo: Sacrifice G1 Goulo\nBuild B2 Draw5playall\nCatastrophe Draw5playall B\n\tDraw5PlayAll: That was a little shocking...\n\n54) Draw5PlayAll: Move Y3 Verdeto Verdo\n\tgoulo: desperate times, desperate measures, and all that jazz.\n\n55) goulo: Build G1 Goulo\n\n56) Draw5PlayAll: Move G1 Draw5playall Goulo\n\n57) goulo: Attack G1 Goulo\n\n58) Draw5PlayAll: Sacrifice R1 Build\nAttack R2 Verdo\n\n59) goulo: Discover B1 Verdeto Y2 Flavo\n\tDraw5PlayAll: Actually pulling off a win has never been among my strengths...\n\n60) Draw5PlayAll: Move R2 Verdo Verdeto\n\n61) goulo: Discover Y1 Verdeto B2 Bluo\n\n62) Draw5PlayAll: Build B1 Create\n\n63) goulo: Trade B1 R1 Flavo\n\n64) Draw5PlayAll: Move B1 Create Verdeto\n\n65) goulo: Trade G1 R1 Goulo\n\n66) Draw5PlayAll: Sacrifice Y3 Verdo\nMove Y3 Build Draw5playall\nMove Y3 Draw5playall Goulo\nMove G3 Draw5playall Goulo\n\n67) goulo: Sacrifice G3 Goulo\nBuild Y3 Goulo\nBuild R2 Goulo\nBuild R3 Flavo\n\n68) Draw5PlayAll: Sacrifice R3 Create\nAttack Y3 Goulo\nAttack Y3 Goulo\nAttack R2 Goulo\n\tDraw5PlayAll: Preparation is irrelevant.\n\n69) goulo: Move R3 Flavo Draw5playall\n\n70) Draw5PlayAll: Sacrifice R2 Construct\nAttack R1 Goulo\nAttack G1 Goulo\n\n\tDraw5PlayAll: Wow, that was a really close ending! Good game.\n\tgoulo: thanks and congrats!\n\nHomeworlds Online (SDG# 35789)\nStarted: 2019.12.15, Ended: 2020.2.11\nParticipants: eliscinsky (S), Laurie_Menke (N)\nWinner: eliscinsky\n\n1) Laurie_Menke: Homeworld Y1 B2 G3\n\tLaurie_Menke: Hi! Thanks for the challenge! For the record, this is for the Great Homeworlds Tournament of 2019. I&#39;m going to fill out the start form now.  Have fun!  :)\n\n2) eliscinsky: Homeworld R1 B3 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\teliscinsky: Agreed. Looking forward to our rematch.  Have Fun!\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tLaurie_Menke: Sorry for the time out, Eric. The holidays kept me busier than expected! I&#39;ll try to play a lot in the next few days to make up for it if you&#39;re available!  :)\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\teliscinsky: NP, just glad it didn&#39;t auto enforce your resignation. :) I&#39;ll be at the computer a couple times a day over the next week. So play at whatever pace suites you. No worries!\n\n7) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: Thanks!\n\n8) eliscinsky: Build Y1 Eliscinsky\n\teliscinsky: Oh shit. I had this problem in one of my previous games.\n\n9) Laurie_Menke: Build R2 Laurie_menke\n\tLaurie_Menke: You mean a red freeze out? Yeah... I&#39;m practicing getting good at these. Lucky for you, I&#39;m not good at them yet.  ;)\n\n10) eliscinsky: Build Y2 Eliscinsky\n\n11) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\teliscinsky: Only time will tell :P\n\n12) eliscinsky: Trade Y2 R2 Eliscinsky\n\n13) Laurie_Menke: Build Y2 Laurie_menke\n\n14) eliscinsky: Build R2 Eliscinsky\n\n15) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\n16) eliscinsky: Trade R2 B2 Eliscinsky\n\n17) Laurie_Menke: Build Y2 Laurie_menke\n\n18) eliscinsky: Build Y2 Eliscinsky\n\n19) Laurie_Menke: Discover Y2 Laurie_menke G3 Green\n\n20) eliscinsky: Discover Y1 Eliscinsky G2 Earth2\n\n21) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow\n\n22) eliscinsky: Build Y3 Earth2\n\n23) Laurie_Menke: Discover B2 Laurie_menke Y3 Sunshine\n\n24) eliscinsky: Sacrifice Y3 Earth2\nMove Y1 Eliscinsky Earth2\nMove Y1 Earth2 Green\nMove Y1 Green Laurie_menke\n\n25) Laurie_Menke: Move Y2 Laurie_menke Green\n\n26) eliscinsky: Build Y3 Earth2\n\n27) Laurie_Menke: Build R2 Laurie_menke\n\n28) eliscinsky: Move Y3 Earth2 Green\n\n29) Laurie_Menke: Move Y2 Green Earth2\n\n30) eliscinsky: Sacrifice R2 Eliscinsky\nAttack Y2 Green\nAttack R1 Laurie_menke\n\n31) Laurie_Menke: Attack R1 Laurie_menke\n\n32) eliscinsky: Discover B2 Eliscinsky G2 G2b\n\n33) Laurie_Menke: Build G1 Laurie_menke\n\n34) eliscinsky: Build G1 Eliscinsky\n\n35) Laurie_Menke: Attack Y1 Laurie_menke\n\n36) eliscinsky: Build B1 G2b\n\n37) Laurie_Menke: Move Y1 Laurie_menke Green\n\n38) eliscinsky: Move Y3 Green G2b\n\n39) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack Y1 Earth2\n\n40) eliscinsky: Trade B2 R2 G2b\n\n41) Laurie_Menke: Trade B2 G2 Sunshine\n\n42) eliscinsky: Build B1 G2b\n\n43) Laurie_Menke: Sacrifice G2 Sunshine\nBuild R1 Yellow\nBuild Y3 Green\n\tLaurie_Menke: I&#39;m back... sorry for the delay and thanks for your patience!  :)\n\tLaurie_Menke: Actually, I guess I&#39;m not. For some reason SDG is not showing me the current game state. Will try again later...\n\n44) eliscinsky: Trade B1 G1 G2b\n\tLaurie_Menke: Sorry that took so long...\n\n45) Laurie_Menke: Sacrifice R1 Yellow\nAttack Y2 Green\n\n46) eliscinsky: Move Y3 G2b Green\nCatastrophe Green Y\n\n47) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G3 Laurie_menke\nBuild Y1 Earth2\n\n48) eliscinsky: Move Y2 Eliscinsky Earth2\nCatastrophe Earth2 Y\n\n49) Laurie_Menke: Move G2 Laurie_menke Yellow\n\n50) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 G2b\nBuild G3 Eliscinsky\nBuild G3 Eliscinsky\n\n51) Laurie_Menke: Move G2 Yellow G2b\nCatastrophe G2b G\n\n52) eliscinsky: Trade G3 Y3 Eliscinsky\n\n53) Laurie_Menke: Build R1 Laurie_menke\n\n54) eliscinsky: Discover Y3 Eliscinsky R2 Romulus\n\n55) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild R2 Yellow\nBuild R3 Yellow\nBuild R3 Laurie_menke\n\n56) eliscinsky: Trade G1 Y1 Eliscinsky\n\n57) Laurie_Menke: Discover R2 Yellow G2 Green\n\n58) eliscinsky: Build Y1 Eliscinsky\n\n59) Laurie_Menke: Build R3 Green\n\n60) eliscinsky: Build G1 Eliscinsky\n\n61) Laurie_Menke: Trade R3 Y3 Laurie_menke\n\n62) eliscinsky: Build Y2 Eliscinsky\n\n63) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n64) eliscinsky: Trade Y2 B2 Eliscinsky\n\n65) Laurie_Menke: Build Y2 Laurie_menke\n\n66) eliscinsky: Sacrifice Y3 Romulus\nMove Y1 Eliscinsky Green\nMove Y1 Green Yellow\nMove Y1 Yellow Laurie_menke\nCatastrophe Laurie_menke Y\n\n67) Laurie_Menke: Move R3 Yellow Laurie_menke\n\n68) eliscinsky: Build B1 Eliscinsky\n\tLaurie_Menke: Huh... didn&#39;t see that coming!\n\n69) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\n70) eliscinsky: Move B1 Eliscinsky Laurie_menke\n\n71) Laurie_Menke: Move B1 Laurie_menke Eliscinsky\n\n72) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G1 Eliscinsky\nBuild B1 Laurie_menke\nBuild B2 Laurie_menke\nCatastrophe Laurie_menke B\n\tLaurie_Menke: Oops. I miscalculated. Well played, Eric! Congrats on the win, and thanks for the fun!  :)\n\n\teliscinsky: TY, it was fun, but too short. ;) Looking forward to our future games. \n\nHomeworlds Online (SDG# 35798)\nStarted: 2019.12.15, Ended: 2019.12.15\nParticipants: Koper (S), Janlucasz (N)\nWinner: Koper\n\n1) Janlucasz: Homeworld B3 R1 G3\n\tKoper: homeworld B3 R1 G3\n\tJanlucasz: homeworld B3 R1 G3\n\n2) Koper: Homeworld G2 Y2 B3 *\n\n3) Janlucasz: Build G1 Janlucasz\n\n4) Koper: Build B1 Koper\n\n5) Janlucasz: Pass\n\n6) Koper: Move B3 Koper Janlucasz\n\n7) Janlucasz: Pass\n\n8) Koper: Attack G3 Janlucasz\n\n\nHomeworlds Online (SDG# 35799)\nStarted: 2019.12.16, Ended: 2020.2.25\nParticipants: Simon (S), ts52 (N)\nWinner: Simon\n\n1) ts52: Homeworld Y1 B2 G3\n\tSimon: Hi! This is for the Great Homeworlds Tournament 2019. Have fun!\n\tts52: Thanks! Agreed this is for the tournament. Have a good game!\n\n2) Simon: Homeworld R1 B3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Simon: Build G1 Simon\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Simon: Trade G1 Y1 Simon\n\n7) ts52: Build Y2 Ts52\n\n8) Simon: Build Y2 Simon\n\n9) ts52: Build G1 Ts52\n\n10) Simon: Discover Y1 Simon B2 B2\n\n11) ts52: Discover Y2 Ts52 G3 Kermit\n\n12) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Simon\n\n13) ts52: Build Y3 Kermit\n\n14) Simon: Trade Y2 R2 B2\n\n15) ts52: Trade G1 R1 Ts52\n\n16) Simon: Trade Y3 G3 B2\n\n17) ts52: Discover Y2 Kermit B2 Gonzo\n\n18) Simon: Discover Y2 Simon G2 G2\n\n19) ts52: Build G1 Ts52\n\n20) Simon: Build G1 B2\n\n21) ts52: Trade G1 B1 Ts52\n\n22) Simon: Trade G1 B1 B2\n\n23) ts52: Move B1 Ts52 Kermit\n\n24) Simon: Build G1 B2\n\n25) ts52: Build G1 Ts52\n\n26) Simon: Discover B1 B2 R3 R3\n\n27) ts52: Move Y2 Gonzo R3\n\n28) Simon: Move G3 B2 R3\n\n29) ts52: Discover Y2 R3 G2 Robin\n\n30) Simon: Sacrifice G3 R3\nBuild Y2 G2\nBuild Y3 B2\nBuild G1 B2\n\n31) ts52: Build B1 Kermit\n\n32) Simon: Build G2 B2\n\n33) ts52: Discover G1 Ts52 B3 Gonzo\n\n34) Simon: Move G2 B2 Gonzo\n\n35) ts52: Build G3 Gonzo\n\n36) Simon: Move G1 B2 Gonzo\nCatastrophe Gonzo Green\n\n37) ts52: Build G1 Ts52\n\n38) Simon: Build G1 B2\n\n39) ts52: Move Y1 Ts52 Kermit\n\n40) Simon: Build G2 B2\n\n41) ts52: Discover G1 Ts52 B3 Gonzo\n\n42) Simon: Move G1 B2 Gonzo\n\n43) ts52: Trade G1 R1 Gonzo\n\n44) Simon: Sacrifice G2 B2\nBuild G1 B2\nBuild G2 Gonzo\n\n45) ts52: Attack G1 Gonzo\n\n46) Simon: Build G3 Gonzo\n\n47) ts52: Sacrifice Y2 Robin\nDiscover R1 Gonzo G2 Robin\nMove B1 Kermit Robin\n\n48) Simon: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y2 Simon\nBuild R2 B2\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Gonzo\nBuild R2 Robin\nBuild R3 Ts52\nCatastrophe Gonzo Green\n\n50) Simon: Discover R2 B2 G3 G3\n\n51) ts52: Trade R3 G3 Ts52\n\n52) Simon: Build R3 G3\n\n53) ts52: Build R3 Ts52\n\n54) Simon: Sacrifice Y1 B2\nMove R3 G3 Robin\n\n55) ts52: Move R3 Ts52 G3\n\n56) Simon: Sacrifice R2 G3\nAttack R2 Robin\nAttack R1 Robin\n\tSimon: I&#39;ve moved to a different town and have no internet. I hope it&#39;s back soon. In a pinch, I&#39;ll move at least one at the upcoming weekend!\n\tts52: No worries. Move when you can. Thanks for the heads up.\n\n57) ts52: Build R2 Ts52\n\n58) Simon: Build Y1 B2\n\tSimon: All right, internet is back!\n\n59) ts52: Sacrifice Y1 Kermit\nMove R3 G3 G2\n\n60) Simon: Sacrifice Y2 G2\nDiscover R2 Robin G3 G3\nMove Y2 G2 G3\n\n61) ts52: Move R2 Ts52 Kermit\n\n62) Simon: Attack B1 Robin\n\n63) ts52: Build Y1 Kermit\n\n64) Simon: Build Y2 G3\n\n65) ts52: Move Y1 Kermit G2\n\n66) Simon: Build B2 Robin\n\n67) ts52: Build B3 Kermit\n\n68) Simon: Sacrifice G1 B2\nBuild B3 R3\n\n69) ts52: Move R3 G2 G3\n\n70) Simon: Sacrifice Y2 G3\nMove Y2 G3 Robin\nMove R2 G3 G2\n\n71) ts52: M Y1 G2 G3\n\n72) Simon: Build Y2 Robin\n\n73) ts52: Move R3 G3 G2\n\n74) Simon: Move Y2 Robin R3\n\n75) ts52: Attack R2 G2\n\n76) Simon: Move B3 R3 Ts52\n\n77) ts52: Attack B3 Ts52\n\n78) Simon: Sacrifice Y3 B2\nMove B1 Robin R3\nMove B1 R3 Ts52\nMove B1 R3 Ts52\nCatastrophe Ts52 Blue\n\n79) ts52: Build Y3 G3\n\n80) Simon: Sacrifice Y3 Simon\nMove Y1 B2 Ts52\nMove Y2 R3 Ts52\nMove Y2 Robin Ts52\nCatastrophe Ts52 Yellow\n\n\tts52: Good game. Well played.\n\tSimon: gg! Thanks for the game.\n\nHomeworlds Online (SDG# 35805)\nVariants: &quot;Hard time&quot;\nStarted: 2019.12.16, Ended: 2020.1.14\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dlwillson: H R3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\tdlwillson: OK. One each. Let&#39;s see who gets this one! :-)\r\n\r\nGood luck and have fun!\n\tTrydnt: good luck to you too! should be a good one\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) Trydnt: Build B2 Trydnt\n\n8) dlwillson: B B2 Dlwillson\n\n9) Trydnt: Discover B2 Trydnt G3 G3\n\n10) dlwillson: T B2 Y2 Dlwillson\n\n11) Trydnt: Trade B2 Y2 G3\n\n12) dlwillson: B Y1 Dlwillson\n\n13) Trydnt: Build B2 Trydnt\n\n14) dlwillson: B B2 Dlwillson\n\n15) Trydnt: Move B1 Trydnt G3\n\n16) dlwillson: D B1 Dlwillson G2 Field\n\n17) Trydnt: Build B3 G3\n\n18) dlwillson: B B3 Field\n\n19) Trydnt: Discover B1 G3 G2 G2\n\n20) dlwillson: T B3 R3 Field\n\n21) Trydnt: Trade B2 R2 Trydnt\n\n22) dlwillson: M Y1 Dlwillson G2\n\n23) Trydnt: Build B2 G2\n\n24) dlwillson: D B2 Dlwillson G2 Alsofield\n\n25) Trydnt: Trade B2 R2 G2\n\n26) dlwillson: D Y1 G2 B3 Sky\n\n27) Trydnt: Move B3 G3 Alsofield\n\n28) dlwillson: B B2 Alsofield\n\n29) Trydnt: Build B3 G2\n\n30) dlwillson: Sacrifice Y2 Dlwillson\nDiscover B2 Alsofield Y3 Sol\nDiscover B2 Alsofield Y3 Alsosol\n\n31) Trydnt: Build Y1 G3\n\n32) dlwillson: B G1 Dlwillson\n\n33) Trydnt: Build Y2 G3\n\n34) dlwillson: T Y1 G1 Sky\n\n35) Trydnt: Sacrifice Y2 G3\nMove R2 G2 Sky\nMove B3 G2 Sol\n\n36) dlwillson: S G3 Dlwillson\nB G1 Sky\nB R1 Field\nB G3 Dlwillson\n\n37) Trydnt: Attack G1 Sky\n\n38) dlwillson: T R1 Y1 Field\n\n39) Trydnt: Move Y2 G3 Alsofield\n\n40) dlwillson: M B2 Sol G2\n\n41) Trydnt: Build R1 Sky\n\n42) dlwillson: B Y2 Field\n\n43) Trydnt: Sacrifice G1 Sky\nBuild G1 Trydnt\n\n\tdlwillson: Sorry for the lame-out, but I&#39;m just not coming up with anything worth doing for several moves now. No sense dragging it out.\n\tTrydnt: no worries, no sense in a slow and painful forgone conclusion I understand, guess we gotta start another!\n\nHomeworlds Online (SDG# 35452)\nStarted: 2019.12.19, Ended: 2020.1.23\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Felix: H B1 Y2 G3\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: For the tournament\n\n4) Felix: Build G1 Felix\n\n5) Trydnt: Build G1 Trydnt\n\tFelix: Agreed! Sorry for the delay.\n\tTrydnt: no worries it&#39;s a busy time of year\n\n6) Felix: Build G2 Felix\n\n7) Trydnt: Trade G1 Y1 Trydnt\n\n8) Felix: Trade G1 B1 Felix\n\n9) Trydnt: Trade G1 B1 Trydnt\n\n10) Felix: Build B2 Felix\n\n11) Trydnt: Build B2 Trydnt\n\n12) Felix: Discover B2 Felix G3 Out\n\n13) Trydnt: Discover B2 Trydnt Y3 Y3\n\n14) Felix: Build B3 Out\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild B3 Y3\nBuild B3 Trydnt\nBuild Y1 Trydnt\n\n16) Felix: Trade B3 Y3 Out\n\n17) Trydnt: Sacrifice B1 Trydnt\nTrade B2 R2 Y3\n\n18) Felix: Trade G2 R2 Felix\n\n19) Trydnt: Trade B3 G3 Trydnt\n\n20) Felix: Build B1 Out\n\n21) Trydnt: Build G1 Trydnt\n\n22) Felix: Build G1 Felix\n\n23) Trydnt: Move G1 Trydnt Y3\n\n24) Felix: Discover G1 Felix B3 Cap\n\n25) Trydnt: Build R1 Y3\n\n26) Felix: Trade B2 R2 Out\n\n27) Trydnt: Build B2 Y3\n\n28) Felix: Build B2 Out\n\n29) Trydnt: Move B3 Y3 Felix\n\n30) Felix: Attack B3 Felix\n\n31) Trydnt: Move B2 Y3 Felix\nCatastrophe Felix B\n\n32) Felix: Move B1 Out Felix\n\n33) Trydnt: Discover Y1 Trydnt B3 B3\n\n34) Felix: Build Y1 Out\n\n35) Trydnt: Build Y2 Trydnt\n\n36) Felix: Move R2 Felix B3\n\n37) Trydnt: Discover Y1 B3 G1 G1\n\n38) Felix: Move Y3 Out G1\n\tFelix: I&#39;m in big trouble!\n\n39) Trydnt: Build G2 Y3\n\n40) Felix: Build Y2 Out\n\n41) Trydnt: Move Y2 Trydnt Cap\n\n42) Felix: Discover Y3 G1 Y3 Keepaway\n\n43) Trydnt: Sacrifice R1 Y3\nAttack G1 Cap\n\n44) Felix: Build G2 Felix\n\n45) Trydnt: Sacrifice Y2 Cap\nMove G1 Cap Felix\nMove G1 Y3 Felix\nCatastrophe Felix G\n\n46) Felix: Move Y3 Keepaway Felix\n\n47) Trydnt: Sacrifice G2 Y3\nBuild Y2 G1\nBuild Y3 Trydnt\n\n48) Felix: Trade Y3 G3 Felix\n\n49) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 G1 Felix\nMove Y1 Trydnt Out\nMove Y1 Out Felix\n\n\tFelix: Good game!\n\tTrydnt: Not gonna lie, I thought I was toast after your opening move. That was one of the hardest fought games I&#39;ve ever played! Look forward to the next one\n\nHomeworlds Online (SDG# 35809)\nStarted: 2019.12.20, Ended: 2020.1.25\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Trydnt\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tDraw5PlayAll: Hello. This game is for the tournament. Good luck\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\n8) Trydnt: Build R2 Trydnt\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n10) Trydnt: Trade R2 Y2 Trydnt\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) Trydnt: Build R2 Trydnt\n\n13) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n14) Trydnt: Trade R1 B1 Trydnt\n\n15) Draw5PlayAll: Discover B2 Draw5playall G2 Construct\n\n16) Trydnt: Discover B1 Trydnt G1 G1\n\n17) Draw5PlayAll: Build B1 Construct\n\n18) Trydnt: Move Y2 Trydnt G1\n\n19) Draw5PlayAll: Move R1 Draw5playall Construct\n\n20) Trydnt: Build B1 G1\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\n22) Trydnt: Build G1 Trydnt\n\n23) Draw5PlayAll: Move Y2 Draw5playall Construct\n\n24) Trydnt: Build Y1 G1\n\n25) Draw5PlayAll: Discover B2 Construct G1 Build\n\n26) Trydnt: Discover B1 G1 G2 G2\n\n27) Draw5PlayAll: Build Y1 Construct\n\n28) Trydnt: Build B2 G1\n\n29) Draw5PlayAll: Build B3 Construct\n\n30) Trydnt: Build B3 G2\n\n31) Draw5PlayAll: Trade B3 R3 Construct\n\n32) Trydnt: Trade B2 R2 G1\n\n33) Draw5PlayAll: Build G2 Draw5playall\n\n34) Trydnt: Build G3 Trydnt\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 Construct\nBuild B3 Build\n\n36) Trydnt: Trade B3 Y3 G2\n\n37) Draw5PlayAll: Sacrifice B2 Construct\nTrade B3 Y3 Build\nPass\n\tDraw5PlayAll: I have 2 other games where one side or the other (or both) has 3 greens in their homeworld. What is going on?!\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G2\nBuild R1 G1\nBuild G3 Trydnt\n\n39) Draw5PlayAll: Sacrifice Y3 Build\nMove G2 Draw5playall G2\nMove G2 G2 Build\nMove G2 Build Trydnt\nCatastrophe Trydnt Green\n\n40) Trydnt: Sacrifice Y2 G2\nMove R1 G1 Construct\nMove R2 G1 Construct\nCatastrophe Construct R\n\n41) Draw5PlayAll: Trade Y1 R1 Construct\n\n42) Trydnt: Trade Y2 G2 G1\n\n43) Draw5PlayAll: Build G1 Draw5playall\n\n44) Trydnt: Move G2 G1 Trydnt\n\n45) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 Build\n\tTrydnt: I can&#39;t believe I missed that, well played\n\n46) Trydnt: Build G3 Trydnt\n\n47) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild B3 Construct\n\n48) Trydnt: Build B3 G1\n\n49) Draw5PlayAll: Trade B2 Y2 Build\n\n50) Trydnt: Trade B3 Y3 G1\n\n51) Draw5PlayAll: Trade G3 R3 Draw5playall\n\tDraw5PlayAll: Let&#39;s see if this gamble pays off.\n\n52) Trydnt: Sacrifice G2 Trydnt\nBuild B2 G1\nBuild B3 G2\n\tTrydnt: well played, this mistake is still making me pay :S\n\n53) Draw5PlayAll: Sacrifice Y2 Construct\nMove R3 Draw5playall Construct\nMove R3 Construct Build\n\n54) Trydnt: Trade B1 R1 G1\n\n55) Draw5PlayAll: Trade B1 Y1 Construct\n\n56) Trydnt: Build R2 Trydnt\n\n57) Draw5PlayAll: Build B1 Build\n\n58) Trydnt: Move B3 G2 Draw5playall\n\n59) Draw5PlayAll: Attack B3 Draw5playall\n\n60) Trydnt: Sacrifice Y3 G2\nMove B2 G1 G2\nMove B1 G2 Draw5playall\nMove B2 G2 Draw5playall\nCatastrophe Draw5playall B\n\n\tDraw5PlayAll: Well, I thought I was putting up a bigger fight. Oh well.\n\tTrydnt: Well played. Once I had the second big yellow it was never gonna be easy to stop me from constructing the doomsday machine\n\nHomeworlds Online (SDG# 35814)\nStarted: 2019.12.21, Ended: 2020.1.10\nParticipants: eliscinsky (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tts52: This is for the 2019 Great Homeworlds Tournament\n\n2) eliscinsky: Homeworld B1 R2 G3\n\tts52: Have a good game!\n\teliscinsky: Agreed! Cheers!\n\n3) ts52: Build G1 Ts52\n\teliscinsky: Should be a interesting game?\n\tts52: Oh boy....\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) eliscinsky: T G1 Y1 Eliscinsky\n\n7) ts52: Build Y2 Ts52\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) ts52: Trade Y2 R2 Ts52\n\n10) eliscinsky: Trade Y2 R2 Eliscinsky\n\n11) ts52: Build Y2 Ts52\n\teliscinsky: Mirror, mirror.\n\n12) eliscinsky: Build Y2 Eliscinsky\n\n13) ts52: Discover Y2 Ts52 G3 Kermit\n\n14) eliscinsky: Trade Y2 B2 Eliscinsky\n\n15) ts52: Build Y2 Ts52\n\n16) eliscinsky: Build Y2 Eliscinsky\n\n17) ts52: Trade Y2 B2 Ts52\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) ts52: Build G1 Ts52\n\n20) eliscinsky: Discover B2 Eliscinsky R3 Mars\n\n21) ts52: Move B2 Ts52 Kermit\n\n22) eliscinsky: Move Y2 Eliscinsky Mars\n\n23) ts52: Build B1 Kermit\n\n24) eliscinsky: Move G1 Eliscinsky Mars\n\n25) ts52: Build R1 Ts52\n\n26) eliscinsky: Build Y2 Eliscinsky\n\n27) ts52: Build Y3 Kermit\n\n28) eliscinsky: Build Y3 Mars\n\n29) ts52: Discover Y1 Ts52 Y3 Bigbird\n\teliscinsky: I see a bad moon rising.\r\nI see trouble on the way!\r\n\r\nI see some interesting moves coming. ;)\n\n30) eliscinsky: Build G1 Mars\n\n31) ts52: Move G1 Ts52 Bigbird\n\n32) eliscinsky: Sacrifice Y3 Mars\nMove G1 Mars Ts52\nMove G1 Mars Ts52\nMove Y2 Mars Ts52\n\n33) ts52: Attack Y2 Ts52\n\n34) eliscinsky: Build G2 Ts52\nCatastrophe Ts52 Green\n\n35) ts52: Sacrifice B2 Kermit\nTrade Y1 R1 Bigbird\nTrade B1 R1 Kermit\n\n36) eliscinsky: Discover R2 Eliscinsky G3 Earth\n\n37) ts52: Trade R1 G1 Ts52\n\n38) eliscinsky: Move Y2 Eliscinsky Earth\n\n39) ts52: Build R1 Bigbird\n\n40) eliscinsky: Build R3 Earth\n\n41) ts52: Build R3 Ts52\n\teliscinsky: So exciting!!!\n\n42) eliscinsky: Sacrifice Y2 Earth\nMove R2 Earth Ts52\nMove R3 Earth Ts52\nCatastrophe Ts52 Red\n\n43) ts52: Build R2 Bigbird\n\n44) eliscinsky: Trade B2 R2 Mars\n\n45) ts52: Build R3 Kermit\n\n46) eliscinsky: Sacrifice Y1 Eliscinsky\nMove R2 Mars Ts52\n\n47) ts52: Sacrifice R1 Bigbird\nAttack R2 Ts52\n\teliscinsky: Damn, I fear I&#39;ve fell for this setup before.  Well played.\n\n48) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: Back to the drawing board.\r\nCome full circle.\r\nLOL\n\n49) ts52: Move R1 Bigbird Eliscinsky\n\n50) eliscinsky: Attack R1 Eliscinsky\n\teliscinsky: Okay I would have expected you to ...\r\ns y2 kermit\r\nm r3 kermit eliscinsky\r\nm y3 kermit eliscinsky\r\nthen after a feeble move on my part, maybe ... a r3 eliscinsky\r\nyou would ...\r\ns r2 bigbird\r\na y3 eliscinsky\r\na g3 eliscinsky \r\nthen pretty much game over.\r\n\r\nBut we&#39;ll play this out.\r\n\n\n51) ts52: Sacrifice Y3 Kermit\nMove R1 Kermit Eliscinsky\nMove R2 Bigbird Eliscinsky\nCatastrophe Eliscinsky R\nMove R3 Kermit Eliscinsky\n\tts52: Yeah, that would probably work too. This is where my mind went.\n\n52) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Eliscinsky\nBuild G2 Eliscinsky\nBuild G2 Eliscinsky\n\teliscinsky: That works too.\r\nEnd in sight!  Dying slowly!!\r\nLOL.  \r\nGood Game!  Thanks!\n\n53) ts52: Catastrophe Eliscinsky G\nPass\n\teliscinsky: The universal energies are building to critical mass ...\n\tts52: Thanks for the game. You really had me worried when you nuked the large from my homeworld.\n\n\nHomeworlds Online (SDG# 35813)\nStarted: 2019.12.26, Ended: 2020.2.7\nParticipants: DodoBirb (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld R1 B3 G3\n\tDodoBirb: Good Luck! Just note I will be a bit slow making moves until I get back from my holiday which should be in another week\n\n2) DodoBirb: Homeworld B1 R2 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019.\r\nNo worries, take your time.  I&#39;ll be on &amp; off the computer as well for the next week.\r\nHave a great holiday!\n\teliscinsky: Oh, and GL 2 U 2!\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) DodoBirb: Build G1 Dodobirb\n\n9) eliscinsky: Trade G1 B1 Eliscinsky\n\n10) DodoBirb: Trade G1 B1 Dodobirb\n\n11) eliscinsky: Build G1 Eliscinsky\n\n12) DodoBirb: Build G1 Dodobirb\n\n13) eliscinsky: Trade G1 R1 Eliscinsky\n\n14) DodoBirb: Trade G1 R1 Dodobirb\n\n15) eliscinsky: Build G1 Eliscinsky\n\tDodoBirb: ok, I&#39;m finally back to being able to do more frequent moves\n\teliscinsky: NP, Whatever works for ya. I&#39;m sure we&#39;ll both slow up soon anyway. lol ;)\n\n16) DodoBirb: Build G1 Dodobirb\n\n17) eliscinsky: Build R2 Eliscinsky\n\n18) DodoBirb: Build B2 Dodobirb\n\n19) eliscinsky: Build B2 Eliscinsky\n\n20) DodoBirb: Discover B2 Dodobirb G3 Greeny\n\n21) eliscinsky: Discover B2 Eliscinsky G2 G2a\n\n22) DodoBirb: Move R1 Dodobirb Greeny\n\n23) eliscinsky: Move R2 Eliscinsky G2a\n\n24) DodoBirb: Build Y1 Dodobirb\n\n25) eliscinsky: Build Y2 Eliscinsky\n\n26) DodoBirb: Build Y2 Dodobirb\n\n27) eliscinsky: Move Y2 Eliscinsky G2a\n\n28) DodoBirb: Move Y2 Dodobirb Greeny\n\n29) eliscinsky: Move G1 Eliscinsky G2a\n\n30) DodoBirb: Move G1 Dodobirb Greeny\n\n31) eliscinsky: Sacrifice Y2 G2a\nDiscover B1 Eliscinsky G2 G2b\nMove R1 Eliscinsky G2b\n\n32) DodoBirb: Build G1 Dodobirb\n\n33) eliscinsky: Build G2 Eliscinsky\n\n34) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild B2 Dodobirb\nBuild B3 Greeny\n\n35) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild B3 G2a\nBuild Y2 Eliscinsky\n\n36) DodoBirb: Sacrifice Y2 Greeny\nDiscover B2 Greeny Y2 Yellowy\nDiscover B1 Dodobirb Y3 Sun\n\n37) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild R2 G2b\nBuild R3 G2a\n\n38) DodoBirb: Discover G1 Dodobirb R3 Reddy\n\n39) eliscinsky: Sacrifice G2 Eliscinsky\nBuild G2 Eliscinsky\nBuild Y2 Eliscinsky\n\n\n40) DodoBirb: Build Y3 Dodobirb\n\n41) eliscinsky: Trade B3 Y3 G2a\n\n42) DodoBirb: Sacrifice Y1 Dodobirb\nMove B3 Greeny G2b\n\n43) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y3 G2a Sun\nMove R3 G2a Sun\n\n44) DodoBirb: Sacrifice R1 Greeny\nAttack R2N G2b\n\n45) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild B3 G2a\nBuild R1 G2b\n\n46) DodoBirb: Sacrifice R2 G2b\nAttack R1N G2b\nAttack R1N G2b\n\n47) eliscinsky: Attack B1 Sun\n\n48) DodoBirb: Move B2 Dodobirb Greeny\n\n49) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild Y1 Eliscinsky\nBuild R2 G2a\n\n50) DodoBirb: Move Y1 Dodobirb Greeny\n\n51) eliscinsky: Move Y1 Eliscinsky G2a\n\n52) DodoBirb: Build Y2 Greeny\n\n53) eliscinsky: Move R3 Sun Yellowy\n\n54) DodoBirb: Move B2 Yellowy Greeny\n\n55) eliscinsky: Sacrifice G2 Eliscinsky\nBuild G2 Eliscinsky\nBuild R3 Yellowy\n\n56) DodoBirb: Move Y1 Greeny G2b\n\n57) eliscinsky: Move R3 Yellowy Greeny\n\n58) DodoBirb: Sacrifice Y2 Greeny\nMove B2 Greeny G2a\nMove B2 Greeny G2a\nCatastrophe G2a B\n\n59) eliscinsky: Sacrifice Y3 Sun\nMove R3 Yellowy Greeny\nMove R3 Greeny Dodobirb\nMove R3 Greeny Dodobirb\n\n60) DodoBirb: Attack R3N Dodobirb\n\n61) eliscinsky: Sacrifice R2 G2a\nAttack R3 Dodobirb\nAttack G3 Dodobirb\n\n62) DodoBirb: Attack R3N Dodobirb\n\n63) eliscinsky: Sacrifice R2 G2a\nAttack R3 Dodobirb\nAttack Y3 Dodobirb\n\n\nHomeworlds Online (SDG# 35834)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.2, Ended: 2020.1.6\nParticipants: Donegal (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 Y1 G3\n\tBabamots: Hi Donegal! I don&#39;t remember seeing you around before. Are you brand new?\n\n2) Donegal: Homeworld G3 Y1 B3\n\n3) Babamots: Build G1 Babamots\n\tDonegal: Yes, it&#39;s my first game\n\tBabamots: I&#39;m glad you&#39;re trying it out! This is pretty much my favorite game.\r\n\r\nLet me know if you have any trouble with the commands or other questions. Anything you do to build more ships and diversify is fine for a couple of moves.\r\n\r\nSince our homeworlds have the same size stars, it&#39;ll be a &quot;small universe&quot; game, which tends to be a little shorter.\n\n4) Donegal: Build B1 Donegal\n\n5) Babamots: Trade G1 Y1 Babamots\n\tBabamots: I&#39;m afraid your choice of homeworld stars is about to put you in a bad position. It will be educational though. :-)\r\n\r\nI hope you don&#39;t mind some heavy advice/teaching....\r\n\r\nI&#39;m going to trade my g1 for the last y1 piece. You won&#39;t be able to trade your b1 for y1, so you&#39;ll have to find another way to get yellow. Here are the choices I see:\r\n1) wait until you get a medium ship of some other color and trade for a y2,\r\n2) trade your b3 for y3 right away,\r\n3) get locked out of yellow permanently (almost certainly fatal),\r\n\r\nOption 1 probably won&#39;t work. By the time you get a medium blue, I may have used all of the y2 pieces. \r\n\r\nOption 2 works pretty well in most games (I do it all the time), but because it&#39;s a small universe, I can reach you more quickly. Here&#39;s a possible way for the game to go:\r\n\r\nme:\r\ntrade g1 y1 Babamots\r\n(I freeze you out of yellow)\r\n\r\nyou:\r\ntrade b3 y3 Donegal\r\n(You get into the yellow economy in the only way you can)\r\n\r\nme:\r\nbuild y2 Babamots\r\n\r\nyou:\r\nbuild y2 Donegal\r\n(You need a second yellow ship if you&#39;re going to compete for the yellow pieces)\r\n\r\nme:\r\nsacrifice y2 Babamots\r\ndiscover y1 Babamots g2 Whatever\r\nmove y1 Whatever Donegal\r\ncatastrophe Donegal y\r\n(You lose a home star and your only large ship. There&#39;s no coming back from such an early, heavy loss)\r\n\r\nBUT, instead of building the y2 in your homeworld, you could move you y3 to a new g2 system in order to build in a place where there isn&#39;t a yellow star to mess you up.\r\n\r\nLong story short, I think you should trade b3 for y3 on this turn.\n\n6) Donegal: Discover B1 Donegal B2 P1\n\tDonegal: Why cant i move if i have a yellow piramid?\n\tBabamots: I guess you tried to move to a new system? If you&#39;re moving to a new system, you have to use the &quot;discover&quot; command and specify the star type and name of the system you&#39;re moving to. For example, if you want to move your b1 to a brand new medium green system and give that system the name Billy, then the command is\r\n\r\ndiscover b1 Donegal g2 Billy\r\n\r\nOr, if you&#39;re asking why I was talking about yellow ships so much, it&#39;s because they&#39;re extremely important for sacrifices and making big attacks. It&#39;s almost impossible to win without a few yellow ships that are medium or bigger.\n\n7) Babamots: Build Y2 Babamots\n\n8) Donegal: Trade B1 R1 P1\n\n9) Babamots: Discover Y2 Babamots R2 Romulus\n\n10) Donegal: Build B1 Donegal\n\tBabamots: When I issued the challenge for this game, I forgot to ask the site to have me go second. I think the first move advantage should usually go to the newer player.\r\n\r\nI think you should build ships at your home for a turn or two. I&#39;m getting ahead on material.\r\n\r\nIt&#39;s worth noting that your red ship is a little stranded at that blue system: can&#39;t move, can&#39;t build.\n\n11) Babamots: Sacrifice G3 Babamots\nBuild Y2 Romulus\nBuild Y2 Romulus\nBuild Y3 Babamots\n\n12) Donegal: Move B3 Donegal Romulus\n\n13) Babamots: Trade Y3 R3 Babamots\n\tBabamots: Good! You should pick on enemy systems that have lots of ships smaller than yours.\r\n\r\nHowever, you have left your home without a large ship, \r\nWhich is always dangerous. And without yellow power, I think I can now invade your home with a large red before you can defend (I&#39;ll sacrifice a y2 to move my r3 your home on my next turn). Major kudos to you if you can find a way to defend this! :-)\n\n14) Donegal: Attack Y2N Romulus\n\n15) Babamots: Sacrifice Y2 Romulus\nMove R3 Babamots Romulus\nMove R3 Romulus Donegal\n\n\tBabamots: I looked closer and you actually can defend this position. If you can&#39;t find it, let me know and I&#39;ll tell you.\n\tBabamots: I think maybe you didn&#39;t read my advice. Your position isn&#39;t as bad as it looks. Your good move is\r\n\r\nsacrifice y2 Romulus\r\nmove r1 b1 Babamots\r\nmove b3 Romulus Donegal\r\n\r\nI have to sacrifice my other y2 to retreat. Otherwise, you&#39;ll attack my only home ship and win.\r\n\r\nThanks for the game. I hope you learned a little and will want to play again. :-)\n\nHomeworlds Online (SDG# 35710)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.6, Ended: 2020.1.14\nParticipants: LanguiDude (S), wil (N)\nWinner: LanguiDude\n\n\nHomeworlds Online (SDG# 35847)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.6, Ended: 2020.1.7\nParticipants: LanguiDude (S), Ercepeda (N)\nWinner: Ercepeda\n\n1) Ercepeda: Homeworld G3 B2 R3\n\n2) LanguiDude: Homeworld B3 Y1 G3\n\n3) Ercepeda: Build R1 Ercepeda\n\n4) LanguiDude: Build G1 Languidude\n\tLanguiDude: build g1 languidude\n\n5) Ercepeda: Trade R1 Y1 Ercepeda\n\n6) LanguiDude: Discover G1 Languidude Y2 Atreides\n\n7) Ercepeda: Build Y1 Ercepeda\n\n8) LanguiDude: Build G1 Languidude\n\n9) Ercepeda: Discover Y1 Ercepeda G1 Blerb\n\n10) LanguiDude: Trade G1 B1 Languidude\n\n11) Ercepeda: Build Y2 Blerb\n\n12) LanguiDude: Build B1 Languidude\n\n13) Ercepeda: Discover Y2 Blerb G2 Sup\n\n14) LanguiDude: Trade B1 R1 Languidude\n\n15) Ercepeda: Build Y2 Sup\n\n16) LanguiDude: Move R1 Languidude Sup\n\n17) Ercepeda: Build Y3 Ercepeda\n\n18) LanguiDude: Build G1 Atreides\n\n19) Ercepeda: Build Y3 Sup\n\n20) LanguiDude: Build G2 Atreides\n\n21) Ercepeda: Build Y3 Blerb\n\n22) LanguiDude: Build B1 Languidude\n\n23) Ercepeda: Move R3 Ercepeda Blerb\n\n24) LanguiDude: Move B1 Languidude Atreides\n\n25) Ercepeda: Move R3 Blerb Sup\n\n26) LanguiDude: Trade B1 R1 Languidude\n\n27) Ercepeda: Sacrifice Y3 Blerb\nMove Y2 Sup Languidude\nMove Y2 Sup Languidude\nMove Y3 Sup Languidude\nCatastrophe Languidude Y\n\n28) LanguiDude: Discover G2 Atreides Y1 Carthag\n\n29) Ercepeda: Trade Y1 R1 Ercepeda\n\n30) LanguiDude: Build R2 Languidude\n\n31) Ercepeda: Build R2 Ercepeda\n\n32) LanguiDude: Build G2 Languidude\n\n33) Ercepeda: Trade R1 B1 Ercepeda\n\n34) LanguiDude: Sacrifice G3 Languidude\nBuild G3 Languidude\nBuild G3 Carthag\nBuild B1 Atreides\n\n35) Ercepeda: Sacrifice Y1 Blerb\nMove R3 Sup Carthag\n\n36) LanguiDude: Move G3 Carthag Sup\n\n37) Ercepeda: Attack G2 Carthag\n\n38) LanguiDude: Trade R2 Y2 Languidude\n\n39) Ercepeda: Move B1 Ercepeda Carthag\n\n40) LanguiDude: Discover R1 Languidude Y1 Dagobah\n\n41) Ercepeda: Build B2 Carthag\n\n42) LanguiDude: Sacrifice Y2 Languidude\nMove B1 Atreides Carthag\nMove B1 Atreides Carthag\nCatastrophe Carthag Blue\n\n43) Ercepeda: Build G1 Carthag\n\n44) LanguiDude: Trade G2 Y2 Languidude\n\n45) Ercepeda: Build Y1 Ercepeda\n\n46) LanguiDude: Build G2 Languidude\n\n47) Ercepeda: Trade Y1 B1 Ercepeda\n\n48) LanguiDude: Trade G2 R2 Languidude\n\n49) Ercepeda: Move B1 Ercepeda Carthag\n\n50) LanguiDude: Build G2 Languidude\n\n51) Ercepeda: Sacrifice G2 Carthag\nBuild B1 Carthag\nBuild B1 Carthag\n\n\nHomeworlds Online (SDG# 35845)\nStarted: 2020.1.6, Ended: 2020.1.6\nParticipants: Trydnt (S), T0NK5 (N)\nWinner: Trydnt\n\n1) T0NK5: Homeworld Y1 G2 B3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) T0NK5: Build B1 T0nk5\n\n4) Trydnt: Build G1 Trydnt\n\n5) T0NK5: Trade B1 Y1 T0nk5\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) T0NK5: Build Y2 T0nk5\n\n8) Trydnt: Build Y2 Trydnt\n\n9) T0NK5: Discover Y2 T0nk5 G3 Arnold\n\n10) Trydnt: Discover Y2 Trydnt G1 G1\n\n11) T0NK5: Build B1 T0nk5\n\n12) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Trydnt\nBuild Y3 Trydnt\nBuild Y3 G1\n\n13) T0NK5: Build Y3 Arnold\n\n14) Trydnt: Trade Y1 G1 Trydnt\n\n15) T0NK5: Trade Y1 R1 T0nk5\n\n16) Trydnt: Trade Y2 R2 Trydnt\n\n17) T0NK5: Build B1 T0nk5\n\n18) Trydnt: Build Y1 Trydnt\n\n19) T0NK5: Move B1 T0nk5 Arnold\n\n20) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n21) T0NK5: Build R1 T0nk5\n\n22) Trydnt: Build G2 Trydnt\n\n23) T0NK5: Build B1 Arnold\n\n24) Trydnt: Discover Y2 G1 B3 B3\n\n25) T0NK5: Build B2 Arnold\n\n26) Trydnt: Build Y1 G1\n\n27) T0NK5: Build B2 T0nk5\n\n28) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild Y2 B3\n\n29) T0NK5: Move B2 Arnold Gee1\n\n30) Trydnt: Sacrifice Y2 B3\nMove Y1 Gee1 Arnold\nMove Y1 G1 Arnold\nCatastrophe Arnold Y\n\n31) T0NK5: Trade B2 Y2 Gee1\n\n32) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild Y1 B3\n\n33) T0NK5: Build B2 Arnold\n\n34) Trydnt: Trade Y2 G2 B3\n\n35) T0NK5: Trade B2 Y2 Arnold\n\n36) Trydnt: Build G3 B3\n\n37) T0NK5: Build B2 Arnold\n\n38) Trydnt: Build G3 B3\n\n39) T0NK5: Trade B2 R2 Arnold\n\n40) Trydnt: Sacrifice G3 B3\nBuild Y1 B3\nBuild Y2 G1\nBuild Y3 Trydnt\n\n41) T0NK5: Move B1 Arnold Gee1\n\n42) Trydnt: Build G3 B3\n\n43) T0NK5: Build B2 Gee1\n\n44) Trydnt: Sacrifice Y3 Trydnt\nMove G3 B3 T0nk5\nMove G3 B3 T0nk5\nMove G2 B3 T0nk5\nCatastrophe T0nk5 G\n\n45) T0NK5: Sacrifice Y2 Arnold\nMove R1 T0nk5 Trydnt\nMove R1 T0nk5 Trydnt\nCatastrophe Trydnt R\n\n46) Trydnt: Sacrifice Y3 G1\nMove Y1 B3 T0nk5\nMove Y1 B3 T0nk5\nMove Y3 Trydnt T0nk5\nCatastrophe T0nk5 Y\n\n\tTrydnt: well played my young padawan\n\tT0NK5: Good Job Handsome. I&#39;ll kick your butt soon enough!\n\nHomeworlds Online (SDG# 35846)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.6, Ended: 2020.3.31\nParticipants: Draw5PlayAll (S), LanguiDude (N)\nWinner: Draw5PlayAll\n\n1) LanguiDude: Homeworld Y3 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: Hello, good luck.\n\n3) LanguiDude: Build G1 Languidude\n\tLanguiDude: Hey! Thanks! (I&#39;m going to need it! :-)\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) LanguiDude: Discover G1 Languidude B1 Atreides\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) LanguiDude: Build G1 Atreides\n\n8) Draw5PlayAll: Build R1 Draw5playall\n\n9) LanguiDude: Trade G1 Y1 Atreides\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) LanguiDude: Build Y1 Atreides\n\n12) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n13) LanguiDude: Build G1 Languidude\n\n14) Draw5PlayAll: Discover R1 Draw5playall G2 Build\n\n15) LanguiDude: Discover G1 Atreides B3 Centaury\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) LanguiDude: Trade Y1 B1 Atreides\n\n18) Draw5PlayAll: Build R2 Build\n\n19) LanguiDude: Trade G3 R3 Languidude\n\n20) Draw5PlayAll: Move Y1 Draw5playall Build\n\n21) LanguiDude: Build R2 Languidude\n\n22) Draw5PlayAll: Move R2 Build Atreides\n\n23) LanguiDude: Sacrifice Y1 Atreides\nDiscover B1 Atreides G2 Deneb\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Atreides\nBuild R3 Build\nBuild R3 Draw5playall\n\n25) LanguiDude: Trade R3 G3 Languidude\n\n26) Draw5PlayAll: Trade R2 G2 Atreides\n\n27) LanguiDude: Trade G1 Y1 Languidude\n\n28) Draw5PlayAll: Sacrifice G2 Atreides\nBuild R2 Build\nBuild R3 Atreides\n\n29) LanguiDude: Build G1 Centaury\n\n30) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n31) LanguiDude: Build B2 Deneb\n\n32) Draw5PlayAll: Move B1 Draw5playall Build\n\n33) LanguiDude: Build G1 Languidude\n\n34) Draw5PlayAll: Trade R2 G2 Atreides\n\n35) LanguiDude: Trade B2 Y2 Deneb\n\n36) Draw5PlayAll: Trade R2 B2 Build\n\n37) LanguiDude: Build Y1 Deneb\n\n38) Draw5PlayAll: Build G3 Atreides\n\n39) LanguiDude: Sacrifice Y2 Deneb\nMove G1 Centaury Atreides\nMove G1 Centaury Atreides\nCatastrophe Atreides Green\n\n40) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n41) LanguiDude: Build Y2 Deneb\n\n42) Draw5PlayAll: Build G1 Draw5playall\n\n43) LanguiDude: Trade Y1 R1 Deneb\n\n44) Draw5PlayAll: Sacrifice Y1 Build\nMove R3 Atreides Deneb\n\n45) LanguiDude: Sacrifice Y2 Deneb\nDiscover R1 Deneb Y1 Gryphon\nMove B1 Deneb Gryphon\n\n46) Draw5PlayAll: Trade B2 Y2 Build\n\n47) LanguiDude: Move G1 Languidude Gryphon\n\n48) Draw5PlayAll: Build R2 Deneb\n\n49) LanguiDude: Discover Y1 Languidude G1 Smithy\n\n50) Draw5PlayAll: Build Y1 Draw5playall\n\n51) LanguiDude: Sacrifice G3 Languidude\nBuild R2 Gryphon\nBuild G2 Gryphon\nBuild R3 Languidude\n\n52) Draw5PlayAll: Discover G1 Draw5playall B2 Cobalt\n\n53) LanguiDude: Trade R3 G3 Languidude\n\n54) Draw5PlayAll: Build G3 Cobalt\n\n55) LanguiDude: Build Y2 Smithy\n\n56) Draw5PlayAll: Build Y3 Build\n\n57) LanguiDude: Build R3 Languidude\n\n58) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y3 Build Gryphon\nMove R3 Deneb Smithy\n\n59) LanguiDude: Sacrifice Y2 Smithy\nMove R2 Gryphon Build\nMove R1 Gryphon Build\nCatastrophe Build Red\n\n60) Draw5PlayAll: Sacrifice R2 Deneb\nAttack G2 Gryphon\nAttack B1 Gryphon\n\n61) LanguiDude: Discover G1 Gryphon Y2 Basecamp\n\n62) Draw5PlayAll: Sacrifice G3 Cobalt\nBuild G2 Draw5playall\nBuild G3 Cobalt\nBuild R1 Smithy\n\n63) LanguiDude: Trade R2 Y2 Languidude\n\n64) Draw5PlayAll: Sacrifice G3 Cobalt\nBuild G3 Cobalt\nBuild Y3 Build\nBuild B1 Gryphon\n\n65) LanguiDude: Sacrifice G3 Languidude\nBuild R1 Languidude\nBuild G3 Basecamp\nPass\n\n66) Draw5PlayAll: Sacrifice Y2 Build\nMove G2 Draw5playall Basecamp\nMove G2 Gryphon Basecamp\nCatastrophe Basecamp Green\n\n67) LanguiDude: Trade Y2 G2 Languidude\n\n68) Draw5PlayAll: Attack Y1 Smithy\n\n69) LanguiDude: Move R1 Languidude Gryphon\n\n70) Draw5PlayAll: Sacrifice R1 Smithy\nAttack R1 Gryphon\n\n71) LanguiDude: Build G1 Languidude\n\n72) Draw5PlayAll: Sacrifice G3 Cobalt\nBuild Y2 Smithy\nBuild Y2 Smithy\nBuild B2 Gryphon\n\n73) LanguiDude: Trade G2 R2 Languidude\n\n74) Draw5PlayAll: Sacrifice Y3 Gryphon\nMove B1 Gryphon Languidude\nMove B1 Gryphon Languidude\nMove B2 Gryphon Languidude\nCatastrophe Languidude Blue\n\tLanguiDude: this is going sooo poorly for me :-D\n\n75) LanguiDude: Build G2 Languidude\n\tDraw5PlayAll: All systems are go. Prepare for final demolition in 3... 2... 1...\n\tLanguiDude: dang... I knew this was coming, and yet I didn&#39;t see it at all.........\n\tLanguiDude: trade g2 r2 languidude\n\n76) Draw5PlayAll: Sacrifice Y3 Build\nMove Y2 Smithy Languidude\nMove Y2 Smithy Languidude\nMove Y1 Smithy Languidude\n\n77) LanguiDude: Sacrifice R3 Languidude\nAttack Y2 Languidude\nAttack Y2 Languidude\nAttack Y1 Languidude\n\tLanguiDude: build g2 languidude\n\n78) Draw5PlayAll: Catastrophe Languidude Yellow\nBuild G2 Cobalt\n\tLanguiDude: gg!\n\n\tLanguiDude: a ha! now the tables have turned!\n\tDraw5PlayAll: Good game.\n\nHomeworlds Online (SDG# 35801)\nStarted: 2020.1.6, Ended: 2020.1.22\nParticipants: ts52 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) ts52: Homeworld Y2 B1 G3\n\tts52: This is for the 2019 Homeworlds tournament.\n\n3) ajo: Build G1 Ajo\n\tajo: For the tournament!\n\n4) ts52: Build G1 Ts52\n\n5) ajo: Trade G1 R1 Ajo\n\tts52: Have a good game!\n\n6) ts52: Trade G1 R1 Ts52\n\n7) ajo: Build G1 Ajo\n\n8) ts52: Build G1 Ts52\n\n9) ajo: Trade G1 B1 Ajo\n\n10) ts52: Trade G1 B1 Ts52\n\n11) ajo: Discover B1 Ajo G1 Alpha\n\n12) ts52: Build B2 Ts52\n\n13) ajo: Build B2 Alpha\n\n14) ts52: Discover B1 Ts52 Y3 Bigbird\n\n15) ajo: Trade B2 Y2 Alpha\n\n16) ts52: Build G1 Ts52\n\n17) ajo: Build Y1 Alpha\n\n18) ts52: Move G1 Ts52 Bigbird\n\n19) ajo: Build Y1 Alpha\n\n20) ts52: Trade G1 Y1 Bigbird\n\n21) ajo: Discover Y1 Alpha G3 Beta\n\n22) ts52: Discover Y1 Bigbird G1 Robin\n\n23) ajo: Build B2 Alpha\n\n24) ts52: Trade B1 G1 Bigbird\n\n25) ajo: Move B2 Alpha Beta\n\n26) ts52: Build G2 Ts52\n\n27) ajo: Build G2 Ajo\n\n28) ts52: Trade G2 R2 Ts52\n\n29) ajo: Sacrifice G2 Ajo\nBuild Y2 Beta\nBuild Y3 Alpha\n\n30) ts52: Build G2 Ts52\n\n31) ajo: Build G2 Ajo\n\n32) ts52: Move B2 Ts52 Bigbird\n\n33) ajo: Discover Y2 Alpha B3 Gamma\n\n34) ts52: Move R2 Ts52 Bigbird\n\n35) ajo: Build B1 Alpha\n\n36) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild B3 Bigbird\n\n37) ajo: Build B3 Beta\n\n38) ts52: Trade B3 R3 Bigbird\n\n39) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B3 Beta\nBuild R1 Ajo\n\n40) ts52: Move R3 Bigbird Robin\n\n41) ajo: Sacrifice Y3 Alpha\nMove Y1 Beta Ts52\nMove Y2 Beta Ts52\nMove Y2 Gamma Ts52\nCatastrophe Ts52 Yellow\n\n42) ts52: Trade G3 Y3 Ts52\n\n43) ajo: Trade B2 Y2 Beta\n\n44) ts52: Build G3 Ts52\n\n45) ajo: Discover B1 Alpha Y2 Gamma\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Bigbird\nBuild B3 Bigbird\n\n47) ajo: Sacrifice Y2 Beta\nMove B3 Beta Ts52\nMove B3 Beta Ts52\n\n48) ts52: Sacrifice R2 Bigbird\nAttack B3 Ts52\nAttack B3 Ts52\n\tajo: Good game. :)\n\n49) ajo: Move B1 Gamma Ts52\nCatastrophe Ts52 Blue\n\tts52: Indeed. Well played!\n\n\nHomeworlds Online (SDG# 35852)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.8, Ended: 2020.1.24\nParticipants: LanguiDude (S), Ercepeda (N)\nWinner: LanguiDude\n\n1) Ercepeda: Homeworld R3 G2 B3\n\n2) LanguiDude: Homeworld B3 Y1 G3\n\n3) Ercepeda: Build B1 Ercepeda\n\n4) LanguiDude: Build G1 Languidude\n\n5) Ercepeda: Trade B1 Y1 Ercepeda\n\n6) LanguiDude: Build G1 Languidude\n\n7) Ercepeda: Build Y1 Ercepeda\n\n8) LanguiDude: Discover G1 Languidude Y2 Alderaan\n\n9) Ercepeda: Discover Y1 Ercepeda G1 Aah Real Planet\n\n10) LanguiDude: Build G2 Languidude\n\n11) Ercepeda: Build Y2 Aah\n\n12) LanguiDude: Trade G2 R2 Languidude\n\n13) Ercepeda: Build Y2 Ercepeda\n\n14) LanguiDude: Build R1 Languidude\n\n15) Ercepeda: Discover Y2 Aah G2 Floo\n\n16) LanguiDude: Move R2 Languidude Floo\n\n17) Ercepeda: Discover Y2 Floo R1 Tango\n\n18) LanguiDude: Build G2 Alderaan\n\n19) Ercepeda: Build Y3 Aah\n\n20) LanguiDude: Build G3 Languidude\n\n21) Ercepeda: Build Y3 Ercepeda\n\n22) LanguiDude: Move G2 Alderaan Aah\n\n23) Ercepeda: Sacrifice Y3 Ercepeda\nDiscover Y1 Aah B2 Slaa\nDiscover Y3 Aah B2 Flaa\nDiscover Y2 Tango B2 Nlaa\n\n24) LanguiDude: Move G3 Languidude Flaa\n\n25) Ercepeda: Sacrifice Y2 Ercepeda\nMove Y3 Flaa Languidude\nMove Y2 Nlaa Languidude\n\n26) LanguiDude: Sacrifice G3 Languidude\nBuild G3 Languidude\nBuild G3 Flaa\nBuild R1 Languidude\n\n27) Ercepeda: Move Y1 Slaa Languidude\nCatastrophe Languidude Y\n\n28) LanguiDude: Trade G3 Y3 Flaa\n\n29) Ercepeda: Build B1 Ercepeda\n\n30) LanguiDude: Build G3 Aah\n\n31) Ercepeda: Move B1 Ercepeda Aah\n\n32) LanguiDude: Sacrifice Y3 Flaa\nMove G3 Aah Ercepeda\nMove G2 Aah Ercepeda\nMove R2 Floo Aah\n\n33) Ercepeda: Build B1 Ercepeda\n\n34) LanguiDude: Sacrifice R2 Aah\nAttack B3 Ercepeda\nAttack Y1 Ercepeda\n\n\nHomeworlds Online (SDG# 35854)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.1.10, Ended: 2020.1.11\nParticipants: Babamots (S), LanguiDude (N)\nWinner: Babamots\n\n1) LanguiDude: Homeworld B1 Y2 G3\n\tBabamots: Hi LanguiDude! From your profile, it sounds like you&#39;re pretty new to the game. I can give suggestions if you&#39;d like to benefit from my experience, such as it is. :-D\n\n2) Babamots: Homeworld G3 B1 B3 *\n\tLanguiDude: Heya Babamots. Yeah, I&#39;m very new to the game. I appreciate the offer. I won&#39;t mind one bit if you throw out tips here and there. And I hope you don&#39;t mind if I pick your brain about why you made certain moves... :-)\n\n3) LanguiDude: Build G1 Languidude\n\tBabamots: I won&#39;t pull any punches, but I&#39;ll try to give you warnings about my plans.\r\n\r\nAt the moment, I&#39;m setting up for an &quot;instafreeze.&quot; I&#39;ll build the last b1 piece on my next turn, so you&#39;ll frozen out of blue ships. You will want to trade your g3 for b3 (after a turn or two, but NOT now) so that you can get blue ships. Otherwise, I&#39;ll be building medium and large blue ships very soon and I&#39;ll have a material advantage.\n\tLanguiDude: Oh dang, I didn&#146;t even realize I was setting myself up for that when I made my Homeworld consist of a b1. Very interesting.\n\tLanguiDude: Well, I guess I mean I&#146;d never thought of that as the second player.\n\n4) Babamots: Build B1 Babamots\n\tBabamots: Yeah, a b1 or g1 star sets you up for that. It&#39;s only really a problem if you don&#39;t know how to respond to it.\n\n5) LanguiDude: Trade G3 B3 Languidude\n\tBabamots: You can trade for b3 on this turn if you want. It will put us basically on even footing.\n\n6) Babamots: Trade B3 Y3 Babamots\n\n7) LanguiDude: Build B2 Languidude\n\n8) Babamots: Build B2 Babamots\n\n9) LanguiDude: Discover B2 Languidude G3 Adama\n\n10) Babamots: Trade B1 G1 Babamots\n\n11) LanguiDude: Trade B2 Y2 Adama\n\tLanguiDude: I&#39;m never sure how long one should spend building ships at home. I usually feel like getting out into space &quot;early&quot; is advantageous - but that&#39;s more of an instinct and less about  reason or experience.\n\n12) Babamots: Build B1 Babamots\n\tBabamots: If you head out too early, you sometimes get forced to lose diversity in a system. I like to only trade for new colors in a system where I already have (at least) two ships of the same color.\n\tBabamots: For example, you just lost your only blue ship in Adama. It&#39;s harder for you to build blue now.\n\n13) LanguiDude: Build B2 Languidude\n\n14) Babamots: Sacrifice Y3 Babamots\nDiscover B1 Babamots Y2 Iconia\nMove B1 Iconia Adama\nMove B1 Adama Languidude\nCatastrophe Languidude B\n\n15) LanguiDude: Build Y1 Adama\n\tBabamots: Our homeworlds are now connected, so you need to be ready to invade or be invaded at a moment&#39;s notice (if one of us wins the race for a red ship by more than one turn, that person will win). You don&#39;t have access to blue at the moment, so you&#39;ll need to build another ship, discover a blue system, and trade for a red.\n\tBabamots: I&#39;m planning to trade my ships for yellow and red to try to catch you before you can defend yourself.\n\n16) Babamots: Trade G1 Y1 Babamots\n\n17) LanguiDude: Discover Y2 Adama B1 Brill\n\tLanguiDude: Assuming I can get out of this, that leaves you in a pretty vulnerable position. (But that IS a bold assumption...)\n\n18) Babamots: Move B2 Babamots Languidude\n\tBabamots: I&#39;m afraid I&#39;m going to win this race. It was close and pretty interesting though.\n\n19) LanguiDude: Move Y1 Adama Languidude\n\n20) Babamots: Trade B2 R2 Languidude\n\n21) LanguiDude: Trade Y2 R2 Brill\n\n22) Babamots: Attack G1 Languidude\n\n\tLanguiDude: oh duh, that does it\r\nI was &quot;planning&quot; to build a bunch of ships to drag it out...\n\tLanguiDude: gg!\n\tBabamots: So if you didn&#39;t notice, the problem in this game was building that blue ship in your home. It let me catastrophe your blue ships and blue star (albeit at the cost of my own y3).\n\tBabamots: It set you back a bit more than me, and when quarters are tight like that, a tiny advantage tips the scale pretty easily.\n\tLanguiDude: Yeah, something something &quot;don&#39;t let your 3p ship be the same color as a looming catastrophe&quot; - a brutal lesson, but well learned :-D\n\tLanguiDude: (or at least don&#39;t do it unintentionally)\n\tLanguiDude: this was fun, though - I issued a rematch challenge :-)\n\tBabamots: GG! And I hope you learned some. Would you like to try again/another lesson?\n\nHomeworlds Online (SDG# 35690)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2020.1.10, Ended: 2020.2.13\nParticipants: rho0 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Hi rho0! I was just looking for another game and picked your standing challenge. Good luck!\n\n\nHomeworlds Online (SDG# 35861)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.11, Ended: 2020.1.16\nParticipants: T0NK5 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) T0NK5: Homeworld B3 R2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) T0NK5: Build G1 T0nk5\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) T0NK5: Trade G1 Y1 T0nk5\n\n7) Trydnt: Build Y2 Trydnt\n\n8) T0NK5: Build Y2 T0nk5\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) T0NK5: Discover Y1 T0nk5 G1 Bert\n\n11) Trydnt: Build G1 Trydnt\n\n12) T0NK5: Build G1 T0nk5\n\n13) Trydnt: Build G2 Trydnt\n\n14) T0NK5: Build G2 T0nk5\n\n15) Trydnt: Discover G2 Trydnt B3 B3\n\n16) T0NK5: Discover Y1 Bert B2 Mozart\n\n17) Trydnt: Pass\n\n18) T0NK5: Discover Y1 Mozart G1 Bert\n\n19) Trydnt: Pass\n\n20) T0NK5: Trade G1 R1 T0nk5\n\n21) Trydnt: Trade G1 R1 Trydnt\n\n22) T0NK5: Discover R1 T0nk5 B1 Mozart\n\n23) Trydnt: Move Y2 Trydnt B3\n\n24) T0NK5: Trade G2 B2 T0nk5\n\n25) Trydnt: Build G1 B3\n\n26) T0NK5: Move B2 T0nk5 Bert\n\n27) Trydnt: Move G2 B3 Mozart\n\n28) T0NK5: Build B1 Bert\n\n29) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Mozart\n\n30) T0NK5: Discover B1 Bert Y3 Arnold\n\n31) Trydnt: Build G1 Mozart\n\n32) T0NK5: Build G2 T0nk5\n\tT0NK5: I&#39;m sure that was a bad move for some reason but whatever, fight me hommie!! Lose as fast as possible! 10,000 hours! I&#39;ll beat you someday and I&#39;ll make a whole cake about it. \n\n33) Trydnt: Sacrifice Y2 B3\nMove G1 Mozart T0nk5\nMove G2 Mozart T0nk5\nCatastrophe T0nk5 G\n\n34) T0NK5: Build Y2 Bert\n\n35) Trydnt: Build G1 Trydnt\n\n36) T0NK5: Trade Y2 G2 Bert\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B3\nBuild G2 Trydnt\nBuild G3 Trydnt\n\n38) T0NK5: Build Y2 Bert\n\tT0NK5: Look man I&#39;m just trying to sail through the galaxy, hanging out on stars, building some ships and having a good time, don&#39;t know why you gotta make it all aggressive. Some folks just wanna chill. Some folks just wanna catastrophe. \n\n39) Trydnt: Move G2 Trydnt Arnold\n\tT0NK5: I&#39;m Sailing Awaaaayyyy\n\n40) T0NK5: Move Y2 Bert Arnold\n\n41) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Arnold\nBuild R1 Mozart\n\n42) T0NK5: Build Y2 Bert\n\n43) Trydnt: Sacrifice R1 Mozart\nAttack Y2 Arnold\n\tT0NK5: MY NAME IS INIGO MONTOYA\n\tT0NK5: YOU KILL MY SHIP\n\tT0NK5: PREPARE TO DIE\n\n44) T0NK5: Move G2 Bert T0nk5\n\n45) Trydnt: Sacrifice Y2 Arnold\nMove G3 Arnold Bert\nMove G2 Arnold Mozart\n\n46) T0NK5: Build Y2 T0nk5\n\n47) Trydnt: Sacrifice Y1 G3\nMove G3 Bert T0nk5\n\n48) T0NK5: Build G3 T0nk5\n\n49) Trydnt: Attack G3 T0nk5\n\n50) T0NK5: Sacrifice Y2 Bert\nMove Y1 Bert Arnold\nMove B2 Bert Arnold\n\n51) Trydnt: Attack Y2 T0nk5\n\n52) T0NK5: Build G1 T0nk5\nCatastrophe T0nk5 G\n\n53) Trydnt: Sacrifice G2 B3\nBuild Y1 T0nk5\nBuild Y2 T0nk5\nCatastrophe T0nk5 Y\n\n\nHomeworlds Online (SDG# 35862)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.11, Ended: 2020.1.14\nParticipants: Babamots (S), LanguiDude (N)\nWinner: Babamots\n\n1) LanguiDude: Homeworld B3 R2 G3\n\tBabamots: Good luck! I&#39;ll try to be at least as helpful as last time. :-)\n\n2) Babamots: Homeworld R1 B3 G3\n\n3) LanguiDude: Build G1 Languidude\n\n4) Babamots: Build G1 Babamots\n\n5) LanguiDude: Trade G1 Y1 Languidude\n\n6) Babamots: Trade G1 R1 Babamots\n\n7) LanguiDude: Build G1 Languidude\n\n8) Babamots: Build R1 Babamots\n\n9) LanguiDude: Trade G3 R3 Languidude\n\n10) Babamots: Trade R1 Y1 Babamots\n\n11) LanguiDude: Build G1 Languidude\n\n12) Babamots: Build R1 Babamots\n\n13) LanguiDude: Trade G1 B1 Languidude\n\n14) Babamots: Discover R1 Babamots G2 Orion\n\n15) LanguiDude: Build R2 Languidude\n\n16) Babamots: Sacrifice G3 Babamots\nBuild R2 Orion\nBuild R3 Orion\nBuild R3 Babamots\n\n17) LanguiDude: Discover R2 Languidude B1 Antoinette\n\tLanguiDude: oh dang - I forgot about sacrificing big green ships...\n\n18) Babamots: Sacrifice Y1 Babamots\nMove R3 Orion Antoinette\n\tBabamots: I&#39;ve started to call that technique a &quot;dirty factory.&quot; I&#39;ve got a nice material advantage now, but my color diversity has suffered.\n\n19) LanguiDude: Sacrifice Y1 Languidude\nDiscover R2 Antoinette Y2 Brahmin\n\n20) Babamots: Trade R1 G1 Babamots\n\tBabamots: Good choice! You made me go to red alert :-).\n\n21) LanguiDude: Build R1 Languidude\n\tLanguiDude: I was quite pleased with that move. Happy to hear it was effective. :-)\n\n22) Babamots: Trade R3 Y3 Antoinette\n\n23) LanguiDude: Trade R3 Y3 Languidude\n\tBabamots: I&#39;m threatening to make a red catastrophe at your home. Choose carefully.\n\tBabamots: Out of curiosity, do you have a theme in mind for your system names? So far, I interpret Adama as a fictional fleet commander, Antoinette as a queen, and Brahim as a varna. Maybe you&#39;re just picking anything that starts with A then B etc.?\n\tLanguiDude: It&#39;s mostly just sci-fi. Marie Antoinette made an appearance in an episode of Dr. Who (and it&#39;s one of my favorites), and Brahmin is also what they call the two-headed cow-mutations in the Fallout franchise. :-D\r\n\r\nBut also, I&#39;m not above picking a word that just sounds fun. I did pick Brahmin with a full understanding of the various translations. I was gonna&#39; call it, like, Booyah, or something - but I realized a more level-headed, calm approach would pay off better than a brash and bold statement. Which proved to be true, since I realized you could just trade, and thus be out of threat for a catastrophe... :-D\n\n24) Babamots: Build R3 Orion\n\n25) LanguiDude: Build B1 Languidude\n\n26) Babamots: Move Y3 Antoinette Orion\n\tLanguiDude: (Apparently I messed up my 18th century women: Jeanne Antoinette Poisson is the one that appears in the Dr. Who episode, by her more popular name: Madame de Pompadour. Marie Antoinette said &quot;let them eat cake,&quot; just like the Killer Queen in Queen&#39;s song...)\n\tLanguiDude: So it appears that I just pick cool words, and make them mean whatever I want....... &gt;.&gt;\n\n27) LanguiDude: Sacrifice Y3 Languidude\nDiscover R1 Languidude Y1 Kobayashi\nMove R1 Kobayashi Orion\nDiscover R2 Brahmin G3 Casanova\nCatastrophe Orion Red\n\tBabamots: I&#39;ve always used worlds of Star Trek. I usually fit the world to the system color (either by skin color or other species traits). Folks from Orion are green-skinned, Klingons are aggressive so they get red, etc.\n\tBabamots: I also use the Pakled system if I&#39;m trying to recover from doing something super dumb.\n\tBabamots: Or Gravesworld if I&#39;m feeling like a supergenius.\n\tDraw5PlayAll: Gravesworld?!\n\tBabamots: Ira Graves named a planet after himself because he&#39;s so proud of being smart.\n\tBabamots: He not-so-creatively called it Gravesworld.\n\tLanguiDude: I really enjoy Star Trek. My knowledge of it is nowhere near vast enough to think up names on the spot like that, but the trivia is awesome :-)\n\n28) Babamots: Discover Y3 Orion R1 Nausicaa\n\tLanguiDude: I&#39;m sure that wasn&#39;t the right move. But I&#39;m not sure there was a better one...\n\n29) LanguiDude: Trade B1 Y1 Languidude\n\tLanguiDude: trade b1 y1 languidude\n\n30) Babamots: Move Y3 Nausicaa Languidude\n\tLanguiDude: (let me just type that in my notebook, and the circle will be complete...)\n\tBabamots: I think you were better off building up. You can often side-step someone&#39;s large-ship advantage by not putting more than one ship in any non-home system. That way the single ship can just run away if I try to invade.\n\n31) LanguiDude: Build Y1 Languidude\n\n32) Babamots: Sacrifice R3 Babamots\nAttack Y1 Languidude\nAttack Y1 Languidude\nAttack G1 Languidude\n\tLanguiDude: yeah, I see it now - with the red sacrifice... gg\n\n33) LanguiDude: Trade B1 Y1 Languidude\n\n34) Babamots: Catastrophe Languidude Y\nPass\n\tLanguiDude: I guess after you take it there will be no one left to yell &quot;catastrophe!&quot;\n\tLanguiDude: Our galaxy is not kind to the navigators. Must be some rough wormholes... :-D\n\tBabamots: Good game! I think you&#39;re improving. Want another go?\n\tLanguiDude: I am really enjoying myself - let&#39;s do it. :-)\n\n\nHomeworlds Online (SDG# 35697)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.14, Ended: 2020.5.8\nParticipants: Torquemada (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Torquemada: Homeworld Y3 B2 G3\n\tTorquemada: homeworld Y3 B2 G3\n\tTorquemada: Y3 B2 G3\n\tTorquemada: homeworld Y3, B2, G3\r\n\n\tTorquemada: Sorry, i don&#39;t know how to put any commands... \n\n3) Trydnt: Build G1 Trydnt\n\n4) Torquemada: Build G1 Torquemada\n\tTrydnt: first time playing or just first time on this website?\n\tTorquemada: first time in this website\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n\nHomeworlds Online (SDG# 35872)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.14, Ended: 2020.1.17\nParticipants: LanguiDude (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) LanguiDude: Homeworld Y1 G2 B3\n\n3) Babamots: Build G1 Babamots\n\n4) LanguiDude: Build B1 Languidude\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) LanguiDude: Build B1 Languidude\n\n7) Babamots: Build Y1 Babamots\n\n8) LanguiDude: Discover B1 Languidude G3 Anakin\n\n9) Babamots: Build Y2 Babamots\n\n10) LanguiDude: Build B1 Anakin\n\n11) Babamots: Discover Y2 Babamots G2 Risa\n\n12) LanguiDude: Trade B1 R1 Languidude\n\n13) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y2 Risa\nBuild Y3 Babamots\n\n14) LanguiDude: Build B1 Languidude\n\tBabamots: Now I wish I&#39;d picked a blue marker for Risa since I&#39;d like a ship at some point.\n\n15) Babamots: Trade Y3 G3 Babamots\n\n16) LanguiDude: Build B2 Languidude\n\n17) Babamots: Discover Y2 Risa R1 Kronos\n\n18) LanguiDude: Build R2 Languidude\n\n19) Babamots: Sacrifice G3 Babamots\nBuild Y3 Kronos\nBuild Y3 Risa\nBuild Y3 Babamots\n\n20) LanguiDude: Build B2 Anakin\n\tLanguiDude: boy, yellow is a really bad color to let yourself get built out of...\n\tLanguiDude: (you know, as opposed to the other three...)\n\n21) Babamots: Trade Y3 G3 Babamots\n\tBabamots: I think yellow is the worst to get frozen out of. Then red, green, and blue. It&#39;s not usually too hard to go a whole game without getting any blue ships (unless you end up needing them for a home catastrophe).\n\n22) LanguiDude: Trade B2 G2 Anakin\n\n23) Babamots: Build G1 Babamots\n\n24) LanguiDude: Discover R2 Languidude Y3 Boromir\n\n25) Babamots: Build G1 Babamots\n\n26) LanguiDude: Move R2 Boromir Risa\n\n27) Babamots: Sacrifice Y2 Risa\nDiscover Y3 Kronos R3 Romulus\nMove Y2 Risa Romulus\n\tLanguiDude: knock knock - if your opponent won&#39;t bring the fight to you... :-D\n\n28) LanguiDude: Trade G2 Y2 Anakin\n\n29) Babamots: Build Y3 Babamots\n\tBabamots: I&#39;m going for the no-red-ship challenge. :-D\n\n30) LanguiDude: Build B2 Anakin\n\n31) Babamots: Discover Y2 Kronos B3 Bolarus\n\n32) LanguiDude: Trade B2 G2 Languidude\n\n33) Babamots: Move Y2 Romulus Languidude\n\tBabamots: I&#39;m afraid I pretty much forgot about giving tips this time, and now my doomsday machine is complete.\n\tBabamots: If you trade a ship at your home for a green, it will take me one extra turn to fire my weapon.\n\tBabamots: If you trade for green and I charge ahead with my plan, when our homes become connected, you could cause a green catastrophe at my home. I&#39;ll need an extra turn to avoid that.\n\n34) LanguiDude: Move Y2 Anakin Risa\n\n35) Babamots: Sacrifice Y3 Risa\nMove Y2 Bolarus Languidude\nMove Y3 Romulus Languidude\nCatastrophe Languidude Y\nMove G1 Babamots Languidude\n\n36) LanguiDude: Move Y2 Risa Babamots\nCatastrophe Babamots Yellow\n\n37) Babamots: Build G1 Languidude\nCatastrophe Languidude G\n\n\tLanguiDude: oh :facepalm: - well played\n\tLanguiDude: I was so proud of my delay tactic! :-D\n\tBabamots: It was good. I was distracted during my last couple of moves and didn&#39;t see it coming. :-)\n\nHomeworlds Online (SDG# 35773)\nVariants: &quot;Hard time&quot;\nStarted: 2020.1.15, Ended: 2020.2.9\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H Y3 B1 G3 Dlwillson\n\n2) Trydnt: Homeworld G2 Y1 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build B1 Trydnt\n\n5) dlwillson: B G1 Dlwillson\n\n6) Trydnt: Discover B1 Trydnt G3 G3\n\n7) dlwillson: D G1 Dlwillson B2 Db0\n\n8) Trydnt: Build B1 Trydnt\n\tdlwillson: On behalf of people that name systems after the piece, would you explain why you do that?\r\n\r\nTo me, the system-names are part of the beauty of the game, and piece-named systems create confusion between systems, ships, and pieces. Moving a b3 to b3 seems less elegant than moving a b3 to arcturus.\n\tTrydnt: I don&#39;t name them when playing with the set so partially habit. The star designations are arbitrary. Most real stars are named things like T-368/b nowadays since they discover so many all the time and a functional designation is more useful. It&#39;s much the same here as the name tells you what size it is and means you&#39;re less likely to make a mistake in not realizing which size piece you&#39;re moving to. Also it&#39;s faster to type B3 or something than arcturus so makes coding commands easier. Though if that were the only reason I&#39;d just name them A, B, C, etc... so yeah a balance between speed, efficiency, and less margin for error\n\n9) dlwillson: S G3 Dlwillson\nB G1 Db0\nB G2 Db0\nB G2 Dlwillson\n\n10) Trydnt: Discover B1 Trydnt G3 Gee3\n\n11) dlwillson: B G3 Dlwillson\n\n12) Trydnt: Build B2 G3\n\n13) dlwillson: T G2 Y2 Dlwillson\n\n14) Trydnt: Build B2 Trydnt\n\n15) dlwillson: T G1 Y1 Db0\n\n16) Trydnt: Build B3 Gee3\n\n17) dlwillson: S Y2 Dlwillson\nD G2 Db0 B3 Tb0\nM G1 Db0 Gee3\n\n18) Trydnt: Trade B2 Y2 G3\n\n19) dlwillson: S G3 Dlwillson\nB G1 Gee3\nB G2 Gee3\nB G3 Dlwillson\nC Gee3 G\n\n20) Trydnt: Build B1 G3\n\n21) dlwillson: B G1 Dlwillson\n\n22) Trydnt: Build B2 Trydnt\n\n23) dlwillson: M G1 Dlwillson Db0\n\n24) Trydnt: Discover B2 Trydnt G3 Gee3\n\n25) dlwillson: S G3 Dlwillson\nB G1 Tb0\nB G2 Tb0\nB G3 Dlwillson\n\n26) Trydnt: Build B3 Gee3\n\n27) dlwillson: T G2 Y2 Tb0\n\n28) Trydnt: Trade B3 R3 Gee3\n\n29) dlwillson: Trade G1 R1 Tb0\n\n30) Trydnt: Build B3 Trydnt\n\n31) dlwillson: T G1 Y1 Dlwillson\n\n32) Trydnt: Move B3 Trydnt Tb0\n\n33) dlwillson: Sacrifice G2 Tb0\nBuild Y2 Db0\nBuild Y3 Dlwillson\n\n34) Trydnt: Sacrifice R3 Gee3\nAttack Y2 Tb0\nAttack R1 Tb0\nPass\n\n35) dlwillson: T Y1 R1 Dlwillson\n\n36) Trydnt: Trade B3 Y3 Tb0\n\n37) dlwillson: T Y3 B3 Dlwillson\n\n38) Trydnt: Trade Y2 G2 Tb0\n\n39) dlwillson: D B3 Dlwillson G2 Field\n\n40) Trydnt: Build G1 Tb0\n\n41) dlwillson: B G1 Dlwillson\n\n42) Trydnt: Discover G1 Tb0 Y2 Y2\n\n43) dlwillson: T Y1 R1 Db0\n\n44) Trydnt: Build Y1 G3\n\n45) dlwillson: D G1 Db0 Y3 Sol\n\n46) Trydnt: Trade B3 R3 Trydnt\n\n\tdlwillson: Sorry about that. \n\tTrydnt: no worries\n\nHomeworlds Online (SDG# 35775)\nVariants: &quot;Hard time&quot;\nStarted: 2020.1.15, Ended: 2020.1.18\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35776)\nStarted: 2020.1.15, Ended: 2020.6.9\nParticipants: Trydnt (S), Dther (N)\nWinner: Trydnt\n\n1) Dther: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld G3 B1 B3 *\n\n3) Dther: Build G1 Dther\n\n4) Trydnt: Build B1 Trydnt\n\n5) Dther: Discover G1 Dther B3 One\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) Dther: Build G1 Dther\n\n8) Trydnt: Build B2 Trydnt\n\n9) Dther: Build G1 One\n\n10) Trydnt: Discover B2 Trydnt Y2 Y2\n\n11) Dther: Discover G1 Dther B3 Two\n\n12) Trydnt: Build B2 Trydnt\n\n13) Dther: Build G2 Dther\n\n14) Trydnt: Discover B2 Y2 G3 G3\n\n15) Dther: Trade G2 B2 Dther\n\n16) Trydnt: Build B3 G3\n\n17) Dther: Build G2 Dther\n\n18) Trydnt: Trade B2 Y2 G3\n\n19) Dther: Sacrifice G3 Dther\nBuild G2 Two\nBuild G2 One\nBuild G3 Dther\n\n20) Trydnt: Build Y1 G3\n\n21) Dther: Trade G2 Y2 One\n\n22) Trydnt: Trade Y2 G2 G3\n\n\nHomeworlds Online (SDG# 35877)\nVariants: &quot;Hard time&quot;\nStarted: 2020.1.16, Ended: 2020.2.17\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: Weird. I thought I was already in a ladder game.\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Draw5PlayAll: Build Y2 Draw5playall\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Draw5PlayAll: Discover Y2 Draw5playall G2 Construct\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) Trydnt: Build G1 Trydnt\n\n13) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n14) Trydnt: Trade G1 R1 Trydnt\n\n15) Draw5PlayAll: Build R2 Draw5playall\n\n16) Trydnt: Build R2 Trydnt\n\n17) Draw5PlayAll: Move R1 Draw5playall Construct\n\n18) Trydnt: Move R2 Trydnt G3\n\n19) Draw5PlayAll: Discover R2 Draw5playall G2 Build\n\n20) Trydnt: Build G1 Trydnt\n\n21) Draw5PlayAll: Build G1 Draw5playall\n\n22) Trydnt: Trade G1 B1 Trydnt\n\n23) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n24) Trydnt: Move B1 Trydnt G3\n\n25) Draw5PlayAll: Build B1 Draw5playall Build\n\n26) Trydnt: Sacrifice Y2 Trydnt\nMove B1 G3 Build\nMove B1 Build Draw5playall\nCatastrophe Draw5playall B\n\n27) Draw5PlayAll: Build Y2 Draw5playall\n\n28) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild Y2 G3\n\tDraw5PlayAll: Oh no! I looked at that command again... I mean to MOVE a B1 from my homeworld TO build...\n\n29) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Construct\nBuild R3 Build\nBuild R3 Construct\n\tDraw5PlayAll: My command was &quot; build B1 Draw5PlayAll build &quot;\r\n\r\nI wish the system had rejected that command for having too many parameters. I guess that is the end of THIS star naming procedure!\n\n30) Trydnt: Discover R1 Trydnt Y3 Y3\n\n31) Draw5PlayAll: Sacrifice Y2 Construct\nMove R1 Construct G3\nMove R2 Build G3\nCatastrophe G3 Red\n\n32) Trydnt: Discover Y1 G3 G2 G2\n\n33) Draw5PlayAll: Move R3 Construct Y3\n\n34) Trydnt: Build Y2 G2\n\tDraw5PlayAll: This just got weird\n\n35) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R3 Build G3\n\n36) Trydnt: Discover Y2 G3 G2 Gee2\n\n37) Draw5PlayAll: Attack R1 Y3\n\n38) Trydnt: Move Y2 G2 Draw5playall\n\tDraw5PlayAll: This is by far the weirdest game of homeworlds I have ever played.\n\n39) Draw5PlayAll: Sacrifice Y3 Construct\nMove R1 Y3 Trydnt\nMove R3 Y3 Trydnt\nMove R3 G3 Trydnt\nCatastrophe Trydnt Red\n\n\tDraw5PlayAll: Wow.\r\n\r\nI am quite amazed I managed to pull that off. I thought you had me as soon as I lost my blue star.\n\tTrydnt: yup same. goes to show one oversight can really make all the difference\n\nHomeworlds Online (SDG# 35860)\nStarted: 2020.1.19, Ended: 2020.2.4\nParticipants: ts52 (S), speardane (N)\nWinner: ts52\n\n1) speardane: Homeworld B2 Y3 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) speardane: Build G1 Speardane\n\n4) ts52: Build G1 Ts52\n\tspeardane: For the tournament, right?\n\tts52: Yes. This is for the tournament.\n\n5) speardane: Trade G3 R3 Speardane\n\n6) ts52: Trade G3 R3 Ts52\n\n7) speardane: Build R1 Speardane\n\n8) ts52: Build R1 Ts52\n\n9) speardane: Trade R3 B3 Speardane\n\n10) ts52: Trade R1 B1 Ts52\n\n11) speardane: Build R1 Speardane\n\n12) ts52: Discover B1 Ts52 G3 Kermit\n\n13) speardane: Trade B3 Y3 Speardane\n\n14) ts52: Build B1 Kermit\n\n15) speardane: Trade Y3 B3 Speardane\n\n16) ts52: Build B2 Kermit\n\n17) speardane: Trade R1 Y1 Speardane\n\n18) ts52: Trade B2 Y2 Kermit\n\n19) speardane: Discover Y1 Speardane G1 Delos\n\n20) ts52: Build G2 Ts52\n\n21) speardane: Build Y1 Delos\n\n22) ts52: Build G2 Ts52\n\n23) speardane: Discover Y1 Delos G2 Lebling\n\n24) ts52: Discover G2 Ts52 B3 Gonzo\n\n25) speardane: Build G3 Speardane\n\n26) ts52: Build G3 Gonzo\n\n27) speardane: Move B3 Speardane Delos\n\n28) ts52: Trade G3 Y3 Gonzo\n\n29) speardane: Sacrifice G3 Speardane\nBuild G3 Speardane\nBuild G3 Speardane\nBuild Y1 Lebling\n\n30) ts52: Sacrifice Y2 Kermit\nMove G2 Gonzo Delos\nMove G2 Delos Speardane\nCatastrophe Speardane Green\n\n31) speardane: Trade R1 G1 Speardane\n\n32) ts52: Move Y3 Gonzo Delos\n\n33) speardane: Sacrifice Y1 Delos\nMove B3 Delos Speardane\n\n34) ts52: Move Y3 Delos Speardane\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 35883)\nStarted: 2020.1.19, Ended: 2020.2.17\nParticipants: Laurie_Menke (S), speardane (N)\nWinner: Laurie_Menke\n\n1) speardane: Homeworld B2 Y3 G3\n\n2) Laurie_Menke: Homeworld B1 R2 G3\n\tLaurie_Menke: Hi speardane! Just confirming that this is for the Great Homeworlds Tournament of 2019, and that since you went first, you are supposed to fill out the Start Form here:  https://docs.google.com/forms/d/e/1FAIpQLSfFIVX-5Bbbifu74XWm38g4r4VFOUB6lo8NJ8uXXAj0APD48A/viewform\n\tLaurie_Menke: Have fun and good luck!\n\n3) speardane: Build G1 Speardane\n\tspeardane: For the tournament!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: ::sigh:: I&#39;m sorry for the big delay, speardane. I was on a cruise and then at a convention and thought I could still keep up, but failed miserably. I&#39;ll do better now!\n\n5) speardane: Trade G3 R3 Speardane\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tspeardane: No worries. :)\n\n7) speardane: Build G1 Speardane\n\n8) Laurie_Menke: Build Y1 Laurie_menke\n\n9) speardane: Discover G1 Speardane B1 Delos\n\n10) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n11) speardane: Build G1 Delos\n\n12) Laurie_Menke: Build G2 Laurie_menke\n\n13) speardane: Trade G1 Y1 Delos\n\n14) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow\n\n15) speardane: Build G1 Delos\n\n16) Laurie_Menke: Move R1 Yellow Delos\n\n17) speardane: Build G2 Delos\n\n18) Laurie_Menke: Attack G1 Delos\n\n19) speardane: Trade G1 R1 Delos\n\n20) Laurie_Menke: Attack R1 Delos\n\n21) speardane: Build R1 Speardane\n\tLaurie_Menke: Sorry...\n\n22) Laurie_Menke: Attack Y1 Delos\n\n23) speardane: Sacrifice R3 Speardane\nAttack R1 Delos\nAttack Y1 Delos\nAttack G1 Delos\n\n24) Laurie_Menke: Attack R1 Delos\n\n25) speardane: Trade G2 R2 Delos\n\n26) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y1 Laurie_menke\nBuild R2 Delos\nCatastrophe Delos R\n\n27) speardane: Build G1 Delos\n\n28) Laurie_Menke: Build G2 Laurie_menke\n\n29) speardane: Build G2 Delos\n\n30) Laurie_Menke: Build Y2 Laurie_menke\n\n31) speardane: Trade G2 R2 Delos\n\n32) Laurie_Menke: Discover Y2 Laurie_menke B3 Blue\n\n33) speardane: Trade G1 B1 Delos\n\n34) Laurie_Menke: Build Y2 Laurie_menke\n\n35) speardane: Discover B1 Delos G3 Lebling\n\n36) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n37) speardane: Build R1 Delos\n\n38) Laurie_Menke: Move R2 Laurie_menke Lebling\n\n39) speardane: Sacrifice B1 Lebling\nTrade R1 B1 Delos\n\n40) Laurie_Menke: Sacrifice Y1 Laurie_menke\nDiscover R2 Lebling Y1 Yellow\n\n41) speardane: Discover B1 Delos G3 Lebling\n\n42) Laurie_Menke: Move R2 Yellow Speardane\n\n43) speardane: Build R1 Delos\n\n44) Laurie_Menke: Attack R1 Speardane\n\n45) speardane: Sacrifice R1 Delos\nAttack R1 Speardane\n\n46) Laurie_Menke: Attack R1 Speardane\n\n47) speardane: Sacrifice R2 Delos\nAttack R1 Speardane\nPass\n\n48) Laurie_Menke: Attack R1 Speardane\n\n49) speardane: Pass\n\n50) Laurie_Menke: Attack G1 Speardane\n\tLaurie_Menke: Thanks for the fun, speardane! :)\n\n\nHomeworlds Online (SDG# 35893)\nStarted: 2020.1.19, Ended: 2020.1.28\nParticipants: speardane (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R1 B2 G3\n\n2) speardane: Homeworld R3 B1 G3\n\tbhorner: This is for &quot;The Great Homeworlds Tournament 2019&quot;, agreed?\n\n3) bhorner: Build G1 Bhorner\n\tspeardane: For the tournament!\n\tbhorner: :)  Good luck to you! Have fun!\n\n4) speardane: Build G1 Speardane\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) speardane: Trade G3 Y3 Speardane\n\n7) bhorner: Build G1 Bhorner\n\tbhorner: Interesting, don&#39;t see that too often.\n\n8) speardane: Build Y1 Speardane\n\n9) bhorner: Discover G1 Bhorner Y3 Dandelion\n\n10) speardane: Discover Y1 Speardane G2 Delos\n\n11) bhorner: Discover G1 Dandelion Y2 Candycorn\n\n12) speardane: Discover Y1 Delos G3 Lebling\n\n13) bhorner: Build G1 Bhorner\n\n14) speardane: Build G2 Speardane\n\n15) bhorner: Build G2 Candycorn\n\n16) speardane: Discover G2 Speardane B2 Delos\n\n17) bhorner: Discover G1 Candycorn B3 Cottoncandy\n\n18) speardane: Build G2 Delos\n\n19) bhorner: Build G3 Cottoncandy\n\n20) speardane: Trade G2 Y2 Delos\n\n21) bhorner: Trade G3 Y3 Cottoncandy\n\n22) speardane: Build G2 Delos\n\n23) bhorner: Build G3 Candycorn\n\n24) speardane: Trade G2 R2 Delos\n\n25) bhorner: Trade G1 R1 Bhorner\n\n26) speardane: Build G1 Delos\n\n27) bhorner: Build G2 Cottoncandy\n\n28) speardane: Discover G2 Delos B3 Kotok\n\n29) bhorner: Trade G2 R2 Cottoncandy\n\n30) speardane: Build G2 Kotok\n\n31) bhorner: Discover G2 Candycorn Y3 Toffee\n\n32) speardane: Trade G2 Y2 Kotok\n\n33) bhorner: Move Y3 Cottoncandy Delos\n\n34) speardane: Sacrifice Y2 Delos\nDiscover R2 Delos B3 Minsky\nMove G1 Delos Minsky\n\n35) bhorner: Move Y3 Delos Minsky\n\n36) speardane: Build G2 Minsky\n\n37) bhorner: Sacrifice R1 Bhorner\nAttack R2 Minsky\n\n38) speardane: Sacrifice G2 Minsky\nBuild Y1 Kotok\nBuild G2 Kotok\n\n39) bhorner: Build Y2 Bhorner\n\n40) speardane: Sacrifice Y2 Kotok\nDiscover Y1 Lebling B2 Delos\nMove G1 Minsky Delos\n\n41) bhorner: Build G3 Candycorn\n\n42) speardane: Trade G2 R2 Kotok\n\n43) bhorner: Move G3 Candycorn Kotok\n\n44) speardane: Move R2 Kotok Delos\n\n45) bhorner: Sacrifice R2 Minsky\nAttack Y1 Kotok\nAttack G2 Kotok\n\n46) speardane: Build G2 Delos\n\n47) bhorner: Move Y3 Minsky Delos\n\n48) speardane: Discover Y1 Delos B3 Lebling\n\n49) bhorner: Sacrifice R2 Cottoncandy\nAttack R2 Delos\nAttack G2 Delos\n\n50) speardane: Sacrifice G1 Delos\nBuild Y2 Lebling\n\n51) bhorner: Sacrifice Y2 Bhorner\nMove Y3 Delos Speardane\nMove G3 Candycorn Speardane\n\n52) speardane: Attack G3 Speardane\n\n53) bhorner: Sacrifice R2 Delos\nAttack Y3 Speardane\nAttack G3 Speardane\n\n54) speardane: Pass\n\n55) bhorner: Attack G1 Speardane\n\n\tbhorner: Thanks, GG!\n\nHomeworlds Online (SDG# 35896)\nStarted: 2020.1.19, Ended: 2020.2.7\nParticipants: speardane (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B3 G3\n\tSimon: This is for the Great Homeworlds Tournament of 2019. Have fun!\n\n2) speardane: Homeworld B3 Y2 G3\n\n3) Simon: Build G1 Simon\n\tspeardane: For the tournament!\n\n4) speardane: Build G1 Speardane\n\n5) Simon: Trade G1 Y1 Simon\n\n6) speardane: Trade G3 R3 Speardane\n\n7) Simon: Build Y1 Simon\n\n8) speardane: Build G1 Speardane\n\n9) Simon: Discover Y1 Simon G2 G2\n\n10) speardane: Discover G1 Speardane B1 Delos\n\n11) Simon: Build Y1 G2\n\n12) speardane: Build R1 Speardane\n\n13) Simon: Build Y2 Simon\n\n14) speardane: Move R1 Speardane Delos\n\n15) Simon: Discover Y2 Simon B2 B2\n\n16) speardane: Build R1 Delos\n\n17) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Simon\n\n18) speardane: Build G1 Delos\n\n19) Simon: Trade Y2 R2 B2\n\n20) speardane: Build G2 Delos\n\n21) Simon: Trade Y2 G2 B2\n\n22) speardane: Trade G2 Y2 Delos\n\n23) Simon: Move Y3 B2 Delos\n\n24) speardane: Move Y2 Delos G2\n\n25) Simon: Sacrifice R2 B2\nAttack R1 Delos\nAttack R1 Delos\n\n26) speardane: Build G2 Delos\n\n27) Simon: Attack G2 Delos\n\n28) speardane: Build G3 Delos\nCatastrophe Delos Green\n\n29) Simon: Sacrifice G2 B2\nBuild Y2 G2\nBuild Y3 Delos\nCatastrophe G2 Yellow\n\n30) speardane: Build G1 Speardane\n\n31) Simon: Trade Y3 G3 Delos\n\n32) speardane: Discover G1 Speardane B1 Lebling\n\n33) Simon: Build R2 Delos\n\n34) speardane: Build G1 Lebling\n\n35) Simon: Sacrifice Y3 Simon\nMove Y3 Delos Speardane\nMove G3 Delos Speardane\nMove R1 Delos Speardane\n\n36) speardane: Attack G3 Speardane\n\n37) Simon: Sacrifice R2 Delos\nAttack G3 Speardane\nAttack R3 Speardane\n\n38) speardane: Pass\n\n39) Simon: Sacrifice R1 Delos\nAttack G1 Speardane\n\tSimon: The yellow\n\tSimon: The yellow monopoly is so strong, it forces so many opening moves &gt;_&gt; gg still!\n\n\nHomeworlds Online (SDG# 35907)\nStarted: 2020.1.20, Ended: 2020.3.15\nParticipants: bhorner (S), Laurie_Menke (N)\nWinner: bhorner\n\n1) Laurie_Menke: Homeworld B1 R3 G3\n\tLaurie_Menke: Hi bhorner! Confirming that this is for the Great Homeworlds Tournament of 2019, and that I will go fill out the start form now! Have fun and good luck!\n\n2) bhorner: Homeworld R1 B2 G3\n\tbhorner: Thanks, same to you!  Here we go!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tbhorner: Don&#39;t forget to make your 2nd move!  :)\n\tbhorner: I guess I&#39;ll wait the recommended extra 7 days, but probably then &quot;Force Surrender&quot;.  It seems like you&#39;ve likely dropped out of the tournament though.\r\n\r\nI hope everything is alright with you!\n\tLaurie_Menke: ::sigh:: I&#39;m sorry for the big delay, bhorner. I was on a cruise and then at a convention and thought I could still keep up, but failed miserably. I have not dropped out, and will do better now! Thanks for your patience!\n\n4) bhorner: Build G1 Bhorner\n\tbhorner: Ah, ok.  Glad to hear all is well, and glad to have a game instead of a forfeit.  :)\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) bhorner: Build G1 Bhorner\n\n9) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n10) bhorner: Trade G1 R1 Bhorner\n\n11) Laurie_Menke: Build R2 Laurie_menke\n\n12) bhorner: Build R2 Bhorner\n\n13) Laurie_Menke: Discover R2 Laurie_menke Y2 Yellow\n\n14) bhorner: Trade R1 B1 Bhorner\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) bhorner: Build B1 Bhorner\n\n17) Laurie_Menke: Discover R2 Yellow Y3 Sunshine\n\n18) bhorner: Discover B1 Bhorner G3 Tree\n\n19) Laurie_Menke: Build G1 Laurie_menke\n\n20) bhorner: Build B2 Tree\n\n21) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild R1 Sunshine\n\n22) bhorner: Trade B2 R2 Tree\n\n23) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild R3 Laurie_menke\nBuild R3 Sunshine\nBuild Y1 Laurie_menke\n\n24) bhorner: Move R2 Bhorner Sunshine\nCatastrophe Sunshine R\n\n25) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: ::sigh:: I totally should have seen that. Nice move!\n\n26) bhorner: Build Y2 Bhorner\n\tbhorner: Thanks.  :)\n\n27) Laurie_Menke: Discover R1 Laurie_menke G2 Green\n\n28) bhorner: Move Y2 Bhorner Tree\n\n29) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\n30) bhorner: Sacrifice G3 Bhorner\nBuild B2 Tree\nBuild B3 Bhorner\nBuild B3 Tree\n\n31) Laurie_Menke: Move B2 Laurie_menke Green\n\n32) bhorner: Trade B1 G1 Tree\n\n33) Laurie_Menke: Move Y1 Laurie_menke Green\n\n34) bhorner: Move B3 Tree Green\n\n35) Laurie_Menke: Discover B2 Green Y3 Lemon\n\n36) bhorner: Trade B3 G3 Bhorner\n\n37) Laurie_Menke: Sacrifice Y1 Green\nMove R1 Green Lemon\n\n38) bhorner: Discover B1 Bhorner Y3 Sun\n\n39) Laurie_Menke: Build G1 Laurie_menke\n\n40) bhorner: Sacrifice G3 Bhorner\nBuild B1 Tree\nBuild B3 Green\nBuild B3 Sun\n\n41) Laurie_Menke: Move B2 Lemon Bhorner\n\n42) bhorner: Move B3 Sun Bhorner\n\n\tbhorner: This has been my plan for quite a while now, not sure there&#39;s anything that can be done to stop it.  I think the last chance was instead of you moving b2 to bhorner, you could have swapped it for r2 to have available to sacrifice.\r\n\r\ns y2 tree\r\n  m b3 Green Laurie_Menke\r\n  m b3 Green Laurie_Menke\r\ns r2 tree\r\n  a b3 Laurie_Menke\r\n  a r3 Laurie_menke\r\ns r3 Laurie_menke\r\n  a * Laurie_menke\n\tbhorner: Hm, it took away my indentation...  The sacrifices separate the three moves I planned.\n\tLaurie_Menke: I&#39;m not sure which b3 you would attack in the plan below, but I agree that I was just about dead. I&#39;m sorry I didn&#39;t give you the chance to finish me off. I know disappearing like that was very poor form, and I apologize. Work plus COVID plus getting pneumonia just really knocked me for a loop the last couple of months.  ::sigh:: I am very sorry.  CONGRATULATIONS on the win!  :)\n\tbhorner: I&#39;m not worried about anything.  Challenge me any time.  :)\n\tLaurie_Menke: &lt;3 \n\nHomeworlds Online (SDG# 35815)\nStarted: 2020.1.22, Ended: 2020.1.28\nParticipants: eliscinsky (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) eliscinsky: Homeworld R1 B3 G3\n\tTrydnt: This is for the tournament\n\n3) Trydnt: Build G1 Trydnt\n\teliscinsky: Agreed, for the 2019 tourney. GL &amp; HF!\n\teliscinsky: FYI, I submitted the &quot;Game Start Form&quot;\n\n4) eliscinsky: Build G1 Eliscinsky\n\tTrydnt: awesome thanks\r\n\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Trydnt: Build R1 Trydnt\n\n8) eliscinsky: Build Y1 Eliscinsky\n\n9) Trydnt: Build R2 Trydnt\n\n10) eliscinsky: Build Y2 Eliscinsky\n\n11) Trydnt: Discover R2 Trydnt Y3 Y3\n\n12) eliscinsky: Trade Y2 R2 Eliscinsky\n\n13) Trydnt: Discover R1 Trydnt B3 B3\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) Trydnt: Build G1 Trydnt\n\n16) eliscinsky: Build Y2 Eliscinsky\n\n17) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R3 B3\nBuild R3 Trydnt\n\n18) eliscinsky: Build R3 Eliscinsky\n\teliscinsky: Very interesting move there.\n\n19) Trydnt: Trade R3 Y3 B3\n\n20) eliscinsky: Discover R3 Eliscinsky G2 Mold\n\n21) Trydnt: Sacrifice G1 Trydnt\nBuild R3 B3\n\n22) eliscinsky: Move Y2 Eliscinsky Mold\n\n23) Trydnt: Trade R3 G3 Trydnt\n\n24) eliscinsky: Build R3 Mold\n\n25) Trydnt: Sacrifice Y3 B3\nMove R1 B3 Mold\nMove R2 Y3 Mold\nCatastrophe Mold R\nMove R3 B3 Mold\n\n26) eliscinsky: Discover Y2 Mold G3 Fungus\n\n27) Trydnt: Build R1 Trydnt\n\n28) eliscinsky: Trade G1 B1 Eliscinsky\n\n29) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Mold\nBuild R3 Y3\nBuild R3 Trydnt\n\n30) eliscinsky: Build G1 Eliscinsky\n\n31) Trydnt: Trade R1 G1 Trydnt\n\n32) eliscinsky: Build R1 Eliscinsky\n\n33) Trydnt: Discover R3 Y3 B2 B2\n\n34) eliscinsky: Sacrifice Y2 Fungus\nMove R2 Eliscinsky Mold\nMove R1 Eliscinsky Mold\nCatastrophe Mold R\n\n35) Trydnt: Build R1 Trydnt\n\n36) eliscinsky: Build Y2 Eliscinsky\n\n37) Trydnt: Sacrifice G1 Trydnt\nBuild R2 B2\n\n38) eliscinsky: Discover Y1 Eliscinsky G2 Mold\n\n39) Trydnt: Trade R3 Y3 B2\n\n40) eliscinsky: Discover Y1 Eliscinsky G2 Fungus\n\n41) Trydnt: Discover R1 Trydnt Y3 Why3\n\n42) eliscinsky: Build Y2 Eliscinsky\n\n43) Trydnt: Trade R3 G3 Trydnt\n\n44) eliscinsky: Trade Y2 R2 Eliscinsky\n\n45) Trydnt: Sacrifice G3 Trydnt\nBuild R3 B2\nBuild R3 Why3\nBuild R3 Trydnt\n\n46) eliscinsky: Build B1 Eliscinsky\n\n47) Trydnt: Trade R3 G3 B2\n\n48) eliscinsky: Discover Y1 Mold G3 Algae\n\teliscinsky: Very interesting strategy you&#39;re working here. TY for the lesson.\n\n49) Trydnt: Build Y2 B2\n\n50) eliscinsky: Move B1 Eliscinsky Fungus\n\n51) Trydnt: Move R3 Why3 Fungus\n\tTrydnt: You gotta watch out at the start for resets that basically take us back in time but leave your opponent just a point or two ahead. It can make all the difference. Out of curiosity, why do you like goldilocks?\n\teliscinsky: I still consider myself a newbie at HWs.  So I&#39;m trying several different strategies in my games to see what works best for me. I saw that you didn&#39;t create your HW to include R, so I thought I would try to capture the economy.  It backfired.  My curiosity, how long have you been playing HWs? I see you&#39;re currently undefeated, and in 2018 you were 7 out of 11.\n\n52) eliscinsky: Discover B1 Fungus R3 Mars\n\teliscinsky: BTW, just because I consider myself a newbie, I&#39;ve only really played HWs in the Tournament `18 &amp; `19, don&#39;t take it easy on me. ;) I love learning from my mistakes. :D  Love learning strategies used against me. \n\tTrydnt: I started playing in 2017 so shortly before you. I had the great fortune of being taught by Wil who is also an excellent player and amazing teacher. We lived close to each other and the Looneys so got to practice against the creators and some of the best players quite a lot in the early days. You have the right mindset though. A loss is only a failure if you learned nothing from the experience. I stopped paying so much attention to wins and loses and focused instead on how to learn as much from each game as possible.\n\n53) Trydnt: Move Y3 B2 Mars\n\n54) eliscinsky: Move Y1 Fungus Algae\n\n55) Trydnt: Move R2 B2 Algae\n\n56) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y1 Algae Trydnt\nMove Y1 Algae Trydnt\n\n57) Trydnt: Sacrifice R2 Algae\nAttack Y1 Trydnt\nAttack Y1 Trydnt\n\n58) eliscinsky: Trade R2 Y2 Eliscinsky\n\n59) Trydnt: Attack B1 Mars\n\n60) eliscinsky: Build Y2 Eliscinsky\n\n61) Trydnt: Build G1 B2\n\teliscinsky: I am soooo behind. LOL\n\n62) eliscinsky: Trade Y2 R2 Eliscinsky\n\n63) Trydnt: Sacrifice G3 B2\nBuild R2 Fungus\nBuild Y2 B2\nBuild B1 Mars\n\n64) eliscinsky: Discover G1 Eliscinsky B2 Blue2\n\n65) Trydnt: Move B1 Mars Fungus\n\n66) eliscinsky: Move B1 Eliscinsky Blue2\n\n67) Trydnt: Build B3 Fungus\n\n68) eliscinsky: Build G1 Eliscinsky\n\n69) Trydnt: Sacrifice Y3 Mars\nMove R3 Fungus Eliscinsky\nMove R2 Fungus Eliscinsky\nMove B3 Fungus Eliscinsky\nCatastrophe Eliscinsky R\n\n70) eliscinsky: Build Y3 Eliscinsky\n\teliscinsky: This is becoming pointless. I yeild to your superior numbers, position, and ability.  If you agree I&#39;ll just resign.  Otherwise it may take a dozen moves or so, but in the end you&#39;ll take me anyway.  Is there a difference ranking / point wise in defeating an opponent vs. a resignation?  I&#39;d like you to get the best ranking out of this.\r\n\r\nI tip my hat to you good sir, well played! Cheers! \n\n71) Trydnt: Sacrifice Y2 B2\nMove B1 Fungus Eliscinsky\nDiscover B1 Mars Y2 Y2\n\n72) eliscinsky: Trade Y3 R3 Eliscinsky\n\tTrydnt: I think that takes care of it haha I always prefer to play it through to the end\n\tTrydnt: I don&#39;t believe there&#39;s any difference in terms of points or anything\n\teliscinsky: LOL, Check and Mate!  Again, well played.  Then just for sh!ts and giggles, I&#39;ll play it out.  5 moves I think.  :D\r\n\r\nThanks for a great game, and lesson.  Hope I wasn&#39;t to easy. :P\n\n73) Trydnt: Move B1 Y2 Eliscinsky\nCatastrophe Eliscinsky B\n\n\teliscinsky: SUPERNOVA!\n\tTrydnt: Good game and good luck in the rest of the tournament!\n\nHomeworlds Online (SDG# 35884)\nStarted: 2020.1.22, Ended: 2020.3.5\nParticipants: Laurie_Menke (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tTrydnt: For the tournament\n\n2) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: ::sigh:: I&#39;m sorry for the big delay, Trydnt. I was on a cruise and then at a convention and thought I could still keep up, but failed miserably. I&#39;ll do better now!\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: no worries figured you were busy. Good luck :)\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Thanks, you too!\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Laurie_Menke: Build Y2 Laurie_menke\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n11) Trydnt: Build Y2 G3\n\n12) Laurie_Menke: Build G1 Laurie_menke\n\n13) Trydnt: Build Y2 Trydnt\n\tLaurie_Menke: ::sigh::  This is already not going well...\n\n14) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\tTrydnt: yeah two 1s of the same color does not end well for whoever goes second\n\tLaurie_Menke: I never thought of it that way. I still have a lot to learn about initial setup strategy.\n\n15) Trydnt: Build Y3 G3\n\n16) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\n17) Trydnt: Discover Y2 G3 G1 G1\n\n18) Laurie_Menke: Build G2 Laurie_menke\n\n19) Trydnt: Build G2 Trydnt\n\n20) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n21) Trydnt: Build Y3 G1\n\n22) Laurie_Menke: Build G2 Blue\n\n23) Trydnt: Trade G2 R2 Trydnt\n\n24) Laurie_Menke: Build R1 Laurie_menke\n\n25) Trydnt: Build R1 Trydnt\n\n26) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n27) Trydnt: Trade R1 B1 Trydnt\n\n28) Laurie_Menke: Build B1 Laurie_menke\n\n29) Trydnt: Sacrifice Y3 G1\nMove B1 Trydnt G3\nMove B1 G3 Blue\nMove B1 Blue Laurie_menke\nCatastrophe Laurie_menke B\n\n30) Laurie_Menke: Sacrifice Y3 Laurie_menke\nDiscover G2 Blue Y3 Hi\nMove G1 Blue Hi\nMove G1 Hi Trydnt\n\n31) Trydnt: Sacrifice Y2 Trydnt\nMove Y2 Trydnt G3\nMove Y1 G3 Laurie_menke\n\n32) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild G2 Trydnt\nBuild G2 Trydnt\nCatastrophe Trydnt G\n\n33) Trydnt: Sacrifice Y2 G1\nMove Y3 G3 Laurie_menke\nMove Y2 G3 Laurie_menke\nCatastrophe Laurie_menke Y\n\tLaurie_Menke: Thanks for the fun and congrats on the win! We miss you around here!\n\tTrydnt: Thank you! Miss you all terribly. I&#39;m hoping to send a challenger to face off against Andy sometime soon. Been teaching my partner to play\n\tLaurie_Menke: Excellent! Did you see that Andy&#39;s going to be taking on challengers via Zoom soon? Anybody who wants to challenge him can get on the list here:  https://docs.google.com/forms/d/e/1FAIpQLSf-5iGYZe39P_Fd2AREJYbE_2p-g5WXyL3QR8yj7EoAafYmag/viewform?usp=sf_link\r\n\r\nSee you around!\n\n\nHomeworlds Online (SDG# 35592)\nStarted: 2020.1.22, Ended: 2020.1.29\nParticipants: ajo (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tajo: For the Great Homeworlds Tournament of 2019!\n\tBabamots: Yessir. Good luck!\n\n2) ajo: Homeworld Y2 B3 G3\n\n3) Babamots: Build G1 Babamots\n\n4) ajo: Build G1 Ajo\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) ajo: Trade G1 R1 Ajo\n\n7) Babamots: Build R2 Babamots\n\n8) ajo: Build R2 Ajo\n\n9) Babamots: Trade R1 Y1 Babamots\n\n10) ajo: Trade R2 Y2 Ajo\n\n11) Babamots: Build Y1 Babamots\n\n12) ajo: Build G1 Ajo\n\n13) Babamots: Discover Y1 Babamots G3 Risa\n\n14) ajo: Discover G1 Ajo B1 Alpha\n\n15) Babamots: Build G1 Babamots\n\n16) ajo: Build G1 Ajo\n\n17) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y2 Risa\nBuild Y3 Babamots\n\n18) ajo: Build G2 Alpha\n\tajo: Bah.\n\n19) Babamots: Build Y3 Risa\n\n20) ajo: Sacrifice Y2 Ajo\nDiscover G1 Alpha B3 Beta\nDiscover G2 Alpha B3 Gamma\n\n21) Babamots: Move Y3 Babamots Gamma\n\n22) ajo: Sacrifice G2 Gamma\nBuild G2 Beta\nBuild R1 Ajo\n\n23) Babamots: Build Y2 Babamots\n\n24) ajo: Trade G2 R2 Beta\n\n25) Babamots: Sacrifice G1 Babamots\nBuild Y3 Gamma\n\n26) ajo: Discover R1 Ajo G1 Alpha\n\n27) Babamots: Trade Y1 B1 Babamots\n\n28) ajo: Sacrifice G3 Ajo\nBuild R2 Alpha\nBuild R3 Beta\nBuild R3 Ajo\n\n29) Babamots: Move Y3 Risa Alpha\n\n30) ajo: Trade R3 G3 Ajo\n\n31) Babamots: Build Y1 Risa\n\n32) ajo: Sacrifice G3 Ajo\nBuild G2 Beta\nBuild R3 Ajo\nBuild R3 Alpha\n\n33) Babamots: Discover Y3 Alpha G3 Orion\n\n34) ajo: Trade R2 B2 Beta\n\n35) Babamots: Move B1 Babamots Risa\n\n36) ajo: Sacrifice B2 Beta\nTrade R3 G3 Alpha\nTrade R2 B2 Alpha\n\n37) Babamots: Build B1 Risa\n\n38) ajo: Sacrifice G3 Alpha\nBuild R2 Beta\nBuild R2 Alpha\nBuild R3 Alpha\n\n39) Babamots: Discover Y1 Babamots G3 Gravesworld\n\tajo: This is an interesting game. I was really losing (right after my &quot;Bah&quot; comment as I fell into the Yellowbird trap yet again), but for the past several turns it&#39;s felt like I&#39;m ahead and the only thing stopping me from cruising to victory is the fact that none of my ships can, um, move. :D\n\tBabamots: I think you can&#39;t technically be ahead since I could just pass forever :-D.\n\tBabamots: This might be my favorite match I&#39;ve played. Super interesting.\n\n40) ajo: Build B1 Alpha\n\n41) Babamots: Build B2 Risa\n\n42) ajo: Build G2 Ajo\n\n43) Babamots: Move R2 Babamots Risa\n\tBabamots: Sorry for all the undo&#39;s. It&#39;s a narrow rail I&#39;m trying to walk.\n\n44) ajo: Trade R2 G2 Alpha\n\n45) Babamots: Build R2 Risa\n\tBabamots: I&#39;m curious how you feel about the position now. Any different? You can tell me later if you don&#39;t want to give anything away.\n\n46) ajo: Pass\n\tajo: Well, I saw you building your Doomsday Machine since a few turns ago (I mean that&#39;s when it really got urgent for me and I failed to get all the blue fast enough to prevent you). But I also think you can&#39;t get close enough to one-two catastrophe me without sacrificing a yellow and letting me get it. You&#39;re definitely ahead, anyway. :)\n\n47) Babamots: Sacrifice Y1 Gravesworld\nDiscover Y3 Gamma Y1 Zakdorn\n\tBabamots: Risa is crowded. Must be the tourist season.\n\n48) ajo: Build G3 Ajo\n\n49) Babamots: Move R2 Risa Zakdorn\n\n50) ajo: Pass\n\tBabamots: Here comes the fun part...\n\n51) Babamots: Move B1 Risa Zakdorn\n\tBabamots: And I suddenly realize that the move I&#39;d been planning for days probably isn&#39;t the best.\n\n52) ajo: Pass\n\tBabamots: My concern with sacrificing a y1 in Risa was that you could have moved a g1 to my new system and, if I didn&#39;t attack it, you could move g1 to Gravesworld and threaten my y1. I could just move the y1 to my home, but that makes the game longer than necessary. If I attacked your g1, then you could also move in the g2 and I&#39;d have the same problem, but more so since, if I attacked the g2 as well, I&#39;d be out of red and you could walk all over me.\r\n\r\nAnyway, I think I shortened the game by a move or two by picking a different ship to terraform.\n\n53) Babamots: Move B1 Risa Zakdorn\n\n54) ajo: Pass\n\n55) Babamots: Move B2 Risa Zakdorn\n\n56) ajo: Move G1 Ajo Zakdorn\n\tajo: Yeah, I think there&#39;s no way out for me, if you play your cards right.\n\n57) Babamots: Sacrifice Y3 Zakdorn\nMove B1 Zakdorn Ajo\nMove B1 Zakdorn Ajo\nMove B2 Zakdorn Ajo\nCatastrophe Ajo B\n\n58) ajo: Discover R3 Ajo Y3 Bah\n\tBabamots: I was planning this phase for a long time. Back when you had a large green, if you&#39;d kept me from getting a second red, I think you could have stalled forever.\n\n59) Babamots: Sacrifice Y3 Orion\nMove Y1 Risa Ajo\nMove Y1 Risa Ajo\nMove Y2 Risa Ajo\nCatastrophe Ajo Y\n\n\tajo: Welp, that&#39;s game. GG!\n\tBabamots: Valiantly fought, sir! GG!\n\tDraw5PlayAll: Zakdorn?!\n\tBabamots: Homeworld of a race of brilliant strategists.\r\n\r\nhttps://www.google.com/search?q=zakdorn\n\nHomeworlds Online (SDG# 35913)\nStarted: 2020.1.23, Ended: 2020.3.16\nParticipants: ts52 (S), goulo (N)\nWinner: ts52\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) ts52: Homeworld Y2 B1 G3\n\tgoulo: hi have fun in this tournament game. :)\n\tgoulo: I added it via the start form to the tournament table.\n\tts52: Thanks! Have a good game!\n\n3) goulo: Build Y1 Goulo\n\n4) ts52: Build G1 Ts52\n\n5) goulo: Build Y1 Goulo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) goulo: Trade Y1 B1 Goulo\n\n8) ts52: Build B2 Ts52\n\n9) goulo: Build B2 Goulo\n\n10) ts52: Discover B2 Ts52 G3 Kermit\n\n11) goulo: Trade B1 R1 Goulo\n\n12) ts52: Build G1 Ts52\n\n13) goulo: Discover B2 Goulo G1 Verdeto\n\n14) ts52: Build G1 Ts52\n\n15) goulo: Build Y1 Goulo\n\n16) ts52: Trade B1 R1 Ts52\n\n17) goulo: Discover Y1 Goulo Y1 Flaveto\n\n18) ts52: Discover G1 Ts52 B3 Gonzo\n\n19) goulo: Build Y2 Goulo\n\n20) ts52: Build G2 Gonzo\n\n21) goulo: Trade B2 G2 Verdeto\n\n22) ts52: Trade G2 Y2 Gonzo\n\n23) goulo: Discover Y1 Flaveto R3 Rughego\n\n24) ts52: Build Y1 Gonzo\n\n25) goulo: Move Y1 Goulo Verdeto\n\n26) ts52: Discover G1 Ts52 Y3 Bigbird\n\n27) goulo: Build Y3 Verdeto\n\n28) ts52: Build G2 Bigbird\n\n29) goulo: Move Y3 Verdeto Gonzo\n\n30) ts52: Discover Y2 Gonzo B1 Grover\n\n31) goulo: Sacrifice R1 Goulo\nAttack Y1 Gonzo\n\n32) ts52: Build G2 Ts52\n\n33) goulo: Trade Y2 R2 Goulo\n\n34) ts52: S G3 Ts52\nB G3 Ts52\nB Y2 Grover\nB B1 Kermit\n\n35) goulo: Move Y3 Gonzo Grover\n\n36) ts52: Move Y2 Grover Rughego\n\n37) goulo: Move Y1 Rughego Verdeto\n\n38) ts52: Build R1 Ts52\n\n39) goulo: Build R1 Goulo\n\n40) ts52: Move Y2 Grover Kermit\n\n41) goulo: Move Y3 Grover Kermit\n\n42) ts52: Move B2 Kermit Ts52\n\n43) goulo: Sacrifice R2 Goulo\nAttack G1 Gonzo\nAttack Y2 Kermit\n\n44) ts52: Build R2 Ts52\n\n45) goulo: Discover Y1 Verdeto R3 Rubenego\n\n46) ts52: Move R2 Ts52 Gonzo\n\n47) goulo: Move Y1 Gonzo Verdeto\n\n48) ts52: Attack G1 Gonzo\n\n49) goulo: Build R2 Goulo\n\n50) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Gonzo\nBuild R3 Ts52\n\n51) goulo: Discover Y1 Verdeto B3 Bluego\n\n52) ts52: Discover G1 Bigbird B1 Grover\n\n53) goulo: Discover Y1 Verdeto B3 Safirego\n\n54) ts52: Sacrifice G2 Bigbird\nBuild G2 Grover\nBuild Y3 Rughego\n\n55) goulo: Sacrifice Y2 Kermit\nMove Y1 Bluego Ts52\nMove Y1 Safirego Ts52\n\n56) ts52: Build B2 Ts52\n\n57) goulo: Sacrifice R1 Goulo\nAttack B1 Kermit\n\n58) ts52: Sacrifice Y2 Rughego\nMove B2 Ts52 Rubenego\nMove B2 Ts52 Rubenego\n\n59) goulo: Move Y1 Rubenego Ts52\nCatastrophe Ts52 Y\n\n60) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Rubenego\nBuild Y1 Rughego\n\n61) goulo: Build B3 Kermit\n\n62) ts52: Trade R2 Y2 Gonzo\n\n63) goulo: Sacrifice Y3 Kermit\nMove B1 Kermit Verdeto\nMove B1 Verdeto Rubenego\nDiscover G2 Verdeto Y2 Flavo\nCatastrophe Rubenego B\n\n64) ts52: Trade G1 B1 Grover\n\n65) goulo: Build B2 Kermit\n\n66) ts52: Build Y1 Gonzo\n\n67) goulo: Build R1 Goulo\n\n68) ts52: Sacrifice Y3 Rughego\nMove R1 Ts52 Goulo\nMove R1 Ts52 Goulo\nCatastrophe Goulo Red\nMove R3 Ts52 Goulo\n\n\tgoulo: Well that&#39;s a surprise! I didn&#39;t remember that the rules were changed later so that catastrophe could be done any time during a turn instead of at the end. Congrats!\n\tts52: Thanks. Yeah, that catastrophe change makes a big difference. Good game!\n\nHomeworlds Online (SDG# 35874)\nVariants: &quot;Hard time&quot;\nStarted: 2020.1.23, Ended: 2020.1.26\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35873)\nVariants: &quot;Hard time&quot;\nStarted: 2020.1.23, Ended: 2020.1.26\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y2 G3 *\n\n\nHomeworlds Online (SDG# 35929)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.24, Ended: 2020.3.24\nParticipants: Ercepeda (S), LanguiDude (N)\nWinner: LanguiDude\n\n1) LanguiDude: Homeworld B3 R1 G3\n\n2) Ercepeda: Homeworld R2 B3 G3\n\n3) LanguiDude: Build G1 Languidude\n\n4) Ercepeda: Build G1 Ercepeda\n\n5) LanguiDude: Trade G1 Y1 Languidude\n\n6) Ercepeda: Trade G1 Y1 Ercepeda\n\n7) LanguiDude: Build G1 Languidude\n\n8) Ercepeda: Build G1 Ercepeda\n\n9) LanguiDude: Trade G1 R1 Languidude\n\n10) Ercepeda: Discover G1 Ercepeda G1 Ferno\n\n11) LanguiDude: Build R1 Languidude\n\n12) Ercepeda: Build Y1 Ercepeda\n\n13) LanguiDude: Discover R1 Languidude Y2 Midgard\n\n14) Ercepeda: Build Y2 Ercepeda\n\n15) LanguiDude: Move R1 Midgard Ferno\n\n16) Ercepeda: Sacrifice G1 Ferno\nBuild G1 Ercepeda\n\n17) LanguiDude: Build R2 Ferno\n\n18) Ercepeda: Trade Y1 B1 Ercepeda\n\n19) LanguiDude: Build R2 Ferno\n\n20) Ercepeda: Trade G3 R3 Ercepeda\n\n21) LanguiDude: Build R3 Languidude\n\n22) Ercepeda: Discover Y2 Ercepeda G1 Dulanta\n\n23) LanguiDude: Trade R3 Y3 Languidude\n\n24) Ercepeda: Trade R3 G3 Ercepeda\n\n25) LanguiDude: Build G2 Languidude\n\n26) Ercepeda: Move G1 Ercepeda Dulanta\n\n27) LanguiDude: Build R3 Languidude\n\n\nHomeworlds Online (SDG# 35932)\nStarted: 2020.1.26, Ended: 2020.1.30\nParticipants: huddyrx (S), Mantheron (N)\nWinner: huddyrx\n\n1) Mantheron: Homeworld R1 B2 G3\n\n2) huddyrx: Homeworld B3 R2 G3\n\n3) Mantheron: Build G1 Mantheron (n)\n\n4) huddyrx: Build G1 Huddyrx\n\n5) Mantheron: Trade G1 Y1 Mantheron\n\n6) huddyrx: Trade G1 Y1 Huddyrx\n\n7) Mantheron: Build G1 Mantheron\n\n8) huddyrx: Discover Y1 Huddyrx G1 Cosmo\n\n9) Mantheron: Trade G1 R1 Mantheron\n\n10) huddyrx: Build G1 Huddyrx\n\n11) Mantheron: Build R1 Mantheron\n\n12) huddyrx: Trade G1 B1 Huddyrx\n\n13) Mantheron: Build R2 Mantheron\n\n14) huddyrx: Build B1 Huddyrx\nCatastrophe Mantheron Red\n\n15) Mantheron: Build G1 Mantheron\n\n16) huddyrx: Trade G3 R3 Huddyrx\n\n17) Mantheron: Trade G1 R1 Mantheron\n\n18) huddyrx: Build Y1 Cosmo\n\n19) Mantheron: Build Y2 Mantheron\n\n20) huddyrx: Move Y1 Cosmo Huddyrx\n\n21) Mantheron: Trade Y2 B2 Mantheron\n\n22) huddyrx: Trade R3 Y3 Huddyrx\n\n23) Mantheron: Build Y2 Mantheron\n\n24) huddyrx: Move B1 Huddyrx Cosmo\n\n25) Mantheron: Trade B2 R2 Mantheron\n\n26) huddyrx: Discover B1 Huddyrx G1 Astro\n\n27) Mantheron: Move R2 Mantheron Cosmo\n\n28) huddyrx: Build B1 Astro\n\n29) Mantheron: Attack Y1 Cosmo\n\n30) huddyrx: Sacrifice Y3 Huddyrx\nMove B1 Astro Mantheron\nMove B1 Astro Mantheron\nMove B1 Cosmo Mantheron\nCatastrophe Mantheron Blue\n\n\nHomeworlds Online (SDG# 35933)\nStarted: 2020.1.26, Ended: 2020.2.6\nParticipants: tkvaran (S), huddyrx (N)\nWinner: tkvaran\n\n1) huddyrx: Homeworld B3 R1 G3\n\n2) tkvaran: Homeworld B3 G2 R3\n\n3) huddyrx: Build G1 Huddyrx\n\n4) tkvaran: Build R1 Tkvaran\n\n5) huddyrx: Build G1 Huddyrx\n\n6) tkvaran: Trade R1 Y1 Tkvaran\n\n7) huddyrx: Trade G1 Y1 Huddyrx\n\n8) tkvaran: Discover Y1 Tkvaran G1 Asimov\n\n9) huddyrx: Discover G1 Huddyrx B2 Sagan\n\n10) tkvaran: Build Y1 Asimov\n\n11) huddyrx: Trade G1 R1 Sagan\n\n12) tkvaran: Build Y2 Asimov\n\n13) huddyrx: Build Y2 Huddyrx\n\ttkvaran: Testing if this lets us chat.\n\ttkvaran: It does!\n\n14) tkvaran: Move Y2 Asimov Sagan\n\thuddyrx: I didn&#39;t realize there was a chat function. I&#39;m having fun pushing buttons and looking forward to learning some strategy. I just got to do a catastrophe in my other game. \n\n15) huddyrx: Move Y1 Huddyrx Sagan\n\n16) tkvaran: Trade Y2 R2 Sagan\n\n17) huddyrx: Move R1 Sagan Asimov\n\n18) tkvaran: Attack Y1 Sagan\n\n19) huddyrx: Attack Y1 Asimov\n\n20) tkvaran: Move Y1 Asimov Sagan\n\n21) huddyrx: Build Y2 Asimov\n\n22) tkvaran: Trade Y1 G1 Sagan\n\n23) huddyrx: Build G1 Huddyrx\n\n24) tkvaran: Build G2 Sagan\n\n25) huddyrx: Discover G1 Huddyrx R2 Newton\n\n26) tkvaran: Trade G2 Y2 Sagan\n\n27) huddyrx: Build G2 Newton\n\n28) tkvaran: Discover Y2 Sagan G3 Galileo\n\n29) huddyrx: Build G2 Huddyrx\n\n30) tkvaran: Build G3 Sagan\n\n31) huddyrx: Trade G2 B2 Huddyrx\n\n32) tkvaran: Sacrifice G3 Sagan\nBuild Y1 Sagan\nBuild Y3 Galileo\nBuild G2 Sagan\n\n33) huddyrx: Sacrifice Y2 Huddyrx\nMove Y1 Asimov Sagan\nMove Y2 Asimov Sagan\nCatastrophe Sagan Yellow\n\n34) tkvaran: Sacrifice G2 Sagan\nBuild G2 Sagan\nBuild G3 Sagan\n\ttkvaran: You monster!\n\n35) huddyrx: Trade G3 Y3 Huddyrx\n\n36) tkvaran: Trade G2 B2 Sagan\n\n37) huddyrx: Sacrifice G2 Newton\nBuild Y1 Huddyrx\nBuild G2 Newton\n\n38) tkvaran: Move Y3 Galileo Newton\n\n39) huddyrx: Move Y1 Huddyrx Newton\n\n40) tkvaran: Trade G1 B1 Sagan\n\n41) huddyrx: Trade B2 G2 Huddyrx\n\n42) tkvaran: Attack G2 Newton\n\n43) huddyrx: Move G1 Newton Asimov\n\n44) tkvaran: Attack Y1 Newton\n\n45) huddyrx: Build R1 Asimov\n\n46) tkvaran: Sacrifice B2 Sagan\nTrade Y1 B1 Newton\nTrade G2 B2 Newton\n\n47) huddyrx: Build Y1 Huddyrx\n\n48) tkvaran: Sacrifice Y3 Newton\nMove B2 Newton Huddyrx\nMove B1 Newton Huddyrx\nMove B1 Sagan Huddyrx\nCatastrophe Huddyrx Blue\n\n49) huddyrx: Build G1 Huddyrx\n\n50) tkvaran: Build R2 Sagan\n\n51) huddyrx: Build G2 Asimov\n\thuddyrx: The image is broken for me. I&#39;ll have to check back tomorrow to see if it&#39;s fixed.\n\n52) tkvaran: Build G3 Sagan\n\n53) huddyrx: Sacrifice G2 Asimov\nBuild R2 Asimov\nBuild G2 Asimov\n\n54) tkvaran: Sacrifice Y2 Galileo\nMove G3 Sagan Asimov\nMove G3 Sagan Asimov\nCatastrophe Asimov Green\n\n55) huddyrx: Discover G1 Huddyrx B2 Copernicus\n\n56) tkvaran: Trade R2 G2 Sagan\n\n57) huddyrx: Build G1 Copernicus\n\n58) tkvaran: Build R1 Sagan\n\n59) huddyrx: Move Y1 Huddyrx Copernicus\n\n60) tkvaran: Build R1 Tkvaran\n\n61) huddyrx: Discover G1 Copernicus Y1 Hubble\n\n62) tkvaran: Trade R3 Y3 Tkvaran\n\n63) huddyrx: Build G1 Hubble\n\n64) tkvaran: Build Y1 Tkvaran\n\n65) huddyrx: Build G3 Huddyrx\n\n66) tkvaran: Sacrifice Y3 Tkvaran\nMove R2 Sagan Huddyrx\nMove R1 Sagan Huddyrx\nMove R1 Tkvaran Huddyrx\nCatastrophe Huddyrx Red\n\ttkvaran: Great game!  Thanks for the game.  Really enjoyed it\n\thuddyrx: It was fun! I&#39;ve got a lot to learn as far as strategy, but I can see this becoming one of my favorite games.\n\n\nHomeworlds Online (SDG# 35931)\nStarted: 2020.1.26, Ended: 2020.2.19\nParticipants: tkvaran (S), Mantheron (N)\nWinner: tkvaran\n\n1) Mantheron: Homeworld B1 R3 G3\n\n2) tkvaran: Homeworld R3 G2 B3\n\n3) Mantheron: Build G1 Mantheron\n\n4) tkvaran: Build B1 Tkvaran\n\n5) Mantheron: Trade G1 Y1 Mantheron\n\n6) tkvaran: Build B1 Tkvaran\n\n7) Mantheron: Build Y1 Mantheron\n\n8) tkvaran: Trade B1 Y1 Tkvaran\n\n9) Mantheron: Build Y2 Mantheron\n\n10) tkvaran: Build Y2 Tkvaran\n\n11) Mantheron: Build G1 Mantheron\n\n12) tkvaran: Discover Y2 Tkvaran G1 Oprah\n\n13) Mantheron: Trade Y1 R1 Mantheron\n\n14) tkvaran: Move B1 Tkvaran Oprah\n\n15) Mantheron: Discover Y2 Mantheron G2 Picard\n\n16) tkvaran: Build Y1 Oprah\n\n17) Mantheron: Move R1 Mantheron Picard\n\n18) tkvaran: Trade Y2 R2 Oprah\n\n19) Mantheron: Build Y2 Picard\n\n20) tkvaran: Build Y2 Oprah\n\n21) Mantheron: Build Y3 Mantheron\n\n22) tkvaran: Move Y2 Oprah Picard\n\n23) Mantheron: Discover Y2 Picard B3 Data\n\n24) tkvaran: Build Y3 Oprah\n\n25) Mantheron: Attack Y2 Picard\n\n26) tkvaran: Build Y3 Tkvaran\n\n27) Mantheron: Build R1 Picard\n\n28) tkvaran: Move Y3 Oprah Picard\n\n29) Mantheron: Move R1 Picard Data\n\n30) tkvaran: Move Y3 Picard Data\n\n31) Mantheron: Move G3 Mantheron Picard\n\n32) tkvaran: Sacrifice R2 Oprah\nAttack R1 Data\nAttack Y2 Data\n\n33) Mantheron: Build G1 Mantheron\n\n34) tkvaran: Discover Y2 Data R2 Ellen\n\n35) Mantheron: Build G2 Picard\n\n36) tkvaran: Move Y1 Oprah Ellen\n\n37) Mantheron: Build G3 Mantheron\n\n38) tkvaran: Sacrifice Y3 Tkvaran\nMove Y2 Ellen Mantheron\nMove Y1 Ellen Mantheron\nCatastrophe Mantheron Yellow\nDiscover B1 Oprah R2 Sallyjessie\n\n39) Mantheron: Trade G1 B1 Mantheron\n\n40) tkvaran: Build B2 Tkvaran\n\n41) Mantheron: Build B2 Mantheron\n\n42) tkvaran: Sacrifice Y1 Tkvaran\nMove B1 Sallyjessie Mantheron\nCatastrophe Mantheron Blue\n\n43) Mantheron: Discover G3 Picard R1 Worf\n\n44) tkvaran: Trade B2 Y2 Tkvaran\n\n45) Mantheron: Build R2 Picard\n\n46) tkvaran: Discover Y2 Tkvaran B1 Montel\n\n47) Mantheron: Discover Y2 Picard B1 Riker\n\n48) tkvaran: Discover R1 Data G1 Rickilake\n\n49) Mantheron: Move R2 Picard Rickilake\n\n50) tkvaran: Build B1 Tkvaran\n\n51) Mantheron: Attack R1 Rickilake\n\n52) tkvaran: Trade Y2 R2 Montel\n\n53) Mantheron: Build R2 Picard\n\n54) tkvaran: Build B2 Tkvaran\n\n55) Mantheron: Move R2 Picard Riker\n\n56) tkvaran: Trade B1 G1 Tkvaran\n\n57) Mantheron: Build R3 Picard\n\n58) tkvaran: Trade B2 Y2 Tkvaran\n\n59) Mantheron: Build G3 Worf\n\n60) tkvaran: Move G1 Tkvaran Montel\n\n61) Mantheron: Sacrifice G3 Worf\nBuild G3 Worf\nBuild Y1 Riker\nBuild Y1 Picard\n\ttkvaran: This game is crazy.  Not sure I&#39;ve played a game of Homeworlds that was so big before\n\n62) tkvaran: Build B1 Tkvaran\n\n63) Mantheron: Move R3 Picard Montel\n\n64) tkvaran: Sacrifice Y2 Tkvaran\nMove G1 Montel Mantheron\nMove R2 Montel Mantheron\n\n65) Mantheron: Sacrifice R2 Rickilake\nAttack R2S Mantheron\nAttack G1S Mantheron\n\n66) tkvaran: Trade B3 Y3 Tkvaran\n\n67) Mantheron: Move Y1 Picard Mantheron\n\n68) tkvaran: Build B2 Tkvaran\n\n69) Mantheron: Move R1 Picard Riker\n\n70) tkvaran: Move B2 Tkvaran Rickilake\n\n71) Mantheron: Sacrifice Y2 Riker\nMove R1 Rickilake Tkvaran\nMove R1 Riker Tkvaran\n\n72) tkvaran: Trade B2 R2 Rickilake\n\n73) Mantheron: Move R2 Riker Tkvaran\nCatastrophe Tkvaran Red\n\n74) tkvaran: Build R1 Rickilake\n\n75) Mantheron: Move R2 Mantheron Picard\n\n76) tkvaran: Trade B1 R1 Tkvaran\n\n77) Mantheron: Move G1 Mantheron Tkvaran\n\n78) tkvaran: Sacrifice Y3 Data\nMove R1 Rickilake Mantheron\nMove R2 Rickilake Mantheron\nMove R1 Tkvaran Mantheron\nCatastrophe Mantheron Red\n\n\nHomeworlds Online (SDG# 35840)\nStarted: 2020.1.28, Ended: 2020.4.8\nParticipants: bhorner (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B3 G3\n\tSimon: Hi! This is for the Great Homeworlds Tournament of 2019. Enjoy!\n\tbhorner: For the Great Homeworlds Tournament of 2019?  :)\n\n2) bhorner: Homeworld R2 B1 G3\n\tbhorner: That was spooky fast...  :)\n\tbhorner: That was spooky fast...  :)\n\n3) Simon: Build G1 Simon\n\n4) bhorner: Build G1 Bhorner\n\n5) Simon: Trade G1 Y1 Simon\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) Simon: Build G1 Simon\n\n8) bhorner: Build G1 Bhorner\n\n9) Simon: Trade G1 R1 Simon\n\n10) bhorner: Trade G1 R1 Bhorner\n\n11) Simon: Build R2 Simon\n\n12) bhorner: Build R2 Bhorner\n\tbhorner: I&#39;ll figure this out someday...  Maybe as my reaction to the first move, I can&#39;t do my favorite first move, I need to do something else.  Otherwise I just follow this same sequence, but the other person always gets to go first...\n\n13) Simon: Discover R1 Simon B2 B2\n\n14) bhorner: Discover R1 Bhorner Y3 Sun\n\tSimon: Yeah, first-player advantage seems strong in Homeworlds. The opening is typically forced for both after first player&#39;s decision of first trade.\n\n15) Simon: Build R3 Simon\n\n16) bhorner: Build R3 Bhorner\n\n17) Simon: Trade R3 G3 Simon\n\n18) bhorner: Trade R2 Y2 Bhorner\n\n19) Simon: Move G3 Simon B2\n\n20) bhorner: Sacrifice G3 Bhorner\nBuild R2 Sun\nBuild R3 Sun\nBuild R3 Bhorner\n\n21) Simon: Build G1 B2\n\n22) bhorner: Discover R1 Sun Y2 Star\n\n23) Simon: Trade G3 Y3 B2\n\n24) bhorner: Discover R3 Bhorner Y3 Sun2\n\n25) Simon: Build G1 B2\n\n26) bhorner: Discover R3 Sun Y2 Star2\n\n27) Simon: Move R2 Simon B2\n\n28) bhorner: Trade Y1 G1 Bhorner\n\n29) Simon: Trade G1 B1 B2\n\n30) bhorner: Move R2 Sun Star\n\n31) Simon: Build Y1 B2\n\n32) bhorner: Discover R3 Sun2 B2 Puddle\n\n33) Simon: Sacrifice G3 Simon\nBuild Y1 Simon\nBuild Y3 Simon\nBuild Y3 B2\n\n34) bhorner: Trade R3 G3 Bhorner\n\n35) Simon: Build R3 B2\n\n36) bhorner: Sacrifice Y2 Bhorner\nDiscover R1 Star G3 Tmp\nMove R1 Tmp B2\nCatastrophe B2 R\n\n37) Simon: Discover Y1 Simon Y2 Y2\n\n38) bhorner: Trade G1 R1 Bhorner\n\n39) Simon: Build G1 B2\n\n40) bhorner: Sacrifice G3 Bhorner\nBuild R1 Star2\nBuild R2 Puddle\nBuild R3 Bhorner\n\tSimon: I prepared tr y3 r3 b2 for this. But I&#39;m contemplating to discover the y2 to immobilize. Very hard to calculate because this idea does not allow making reds for seveal moves.\n\tSimon: I won&#39;t have time to move for 2-3 days and don&#39;t want to rush at this junction :)\n\tbhorner: I&#39;m going on vacation too (right now), but hope to be able to make moves.  I won&#39;t call you on time, so don&#39;t worry about it.  (I&#39;d call you on time if you didn&#39;t move for 14 days.  :) )\r\n\r\nThis is a good game, making me think more than most (maybe all), I&#39;d hate for you to rush a move.  :)\n\n41) Simon: Build B1 B2\n\tSimon: All right, I don&#39;t see a refutation and it&#39;s the more interesting line.\n\tSimon: Enjoy the break, I won&#39;t flag this for at least 2 more weeks either!\n\tbhorner: Sorry, things got turned upside down a bit.  I will try to move this weekend.  Also, I think generally you are better than me.  I will still try hard, but don&#39;t feel bad if you have to force a resignation.  :)\n\tbhorner: Coming back to this today, I don&#39;t see a single thing I can do.  :)\r\n* I can&#39;t move any ships but my reds at the y2s\r\n* I can&#39;t build anywhere but home, and no matter what I build, I&#39;ll end up with three, and unable to move away.  :)\r\n* Any move strands the moving ship, no moves can get a ship in a position to capture.\n\n42) bhorner: Trade R2 G2 Puddle\n\tSimon: I agree that I can&#39;t lose here, the big question is whether I can win :) Most likely, there is a win, unless you somehow make many ships super quickly to hoard the pieces.\n\n43) Simon: Discover B1 B2 B3 B3\n\tbhorner: You&#39;ve already got all the yellow though, and it might take more moves, but I don&#39;t see any reason for you to ever let one go...  I have this very thin and predictable branch to explore.  :)\n\n44) bhorner: Trade R3 G3 Bhorner\n\n45) Simon: Discover Y3 B2 R3 R3\n\n46) bhorner: Build R2 Puddle\n\tbhorner: I might have caught on to what you were saying.  It may be that I can&#39;t lose, but I kind of can&#39;t see how you can win.  You can&#39;t capture or catastrophe any of my ships if I never let you have a red...  Until right now, I thought this game could not end in a draw.  :)\n\n47) Simon: Move G1 B2 R3\n\n48) bhorner: Discover R1 Star2 B3 Ocean\n\n49) Simon: Build B2 B2\n\n50) bhorner: Pass\n\tbhorner: * I have the ammo to catastrophe the red half of your homeworld, but I would let you get some red ships.\r\n* In moving in my reds, I would let you get red ships after the catastrophe, and give up control of my 2 yellow planets.\r\n* I feel confident that you can keep me from getting yellow.\r\n* I&#39;m pretty sure I can keep you from getting red.\r\n* If you have no red, you can catastrophe the blue half of my homeworld, but not the red half.\r\n* If you can never take any of my red ships, you can never take any of my ships.\r\n\r\nI think that it&#39;s a bad move for me to &quot;move the game forward&quot; at this point, because I can only move it forward half way to victory, and it opens the door for you to complete a victory.  I think you can get half way to victory, but cannot complete it unless I mess up.\r\n\r\nI think it&#39;s my plan at this point to play for a draw, I think that&#39;s the best result I&#39;m likely to achieve against you (especially in this particular game).\r\n\r\nHappy to continue for a while (it&#39;s definitely possible that I&#39;m wrong, and I actually can&#39;t stall the game out).  But if you&#39;re ready for a draw any time, I will accept.\n\n51) Simon: Build G1 R3\n\tSimon: I&#39;ll see how much I can do without red. I can keep yellow from you at will, but I have the option to give you yellow if I get something worthwhile in return. Should nothing ever come up, then yes, it would be a draw.\n\n52) bhorner: Pass\n\n53) Simon: Build G2 R3\n\n54) bhorner: Pass\n\n55) Simon: Move G1 R3 Bhorner\n\tbhorner: I think it&#39;s pretty much all you from here until I&#39;m dead or we draw.  :)\n\n56) bhorner: Attack G1 Bhorner\n\tbhorner: I&#39;ve made levels and levels of mistakes in my analysis.  :)  I&#39;ve learned a lot during this game though.  :)  (About things that may never come up again...  lol)\n\n57) Simon: Sacrifice Y3 B2\nMove G1 R3 Bhorner\nMove G2 R3 Bhorner\nMove Y3 R3 Bhorner\nCatastrophe Bhorner Green\n\n58) bhorner: Build R3 Puddle\n\tSimon: Yeah, I can target large ships too, not only stars. Still, it wasn&#39;t 100 % clear from the start that I can make enough pieces for that :)\n\n59) Simon: Attack R1 Bhorner\n\n\tSimon: Thanks for the game. The most unusual tourney game so far!\n\tbhorner: lol, I think a draw is possible now.  I think I might have even pulled it off this game if I&#39;d done a couple things different.  Needed a big red at home.\r\n\r\nIt was the most unusual game I&#39;ve ever played...  I&#39;m glad I didn&#39;t realize it was going to be over a lot sooner.  Good game.  :)\n\nHomeworlds Online (SDG# 35919)\nVariants: &quot;Unrated&quot;\nStarted: 2020.1.28, Ended: 2020.2.7\nParticipants: Babamots (S), capi3101 (N)\nWinner: Babamots\n\n1) capi3101: Homeworld B1 Y3 G3\n\tcapi3101: Howdy. Just realized I wasn&#39;t playing anybody - still need the practice...\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) capi3101: B G1 Capi3101\n\tBabamots: I was just running low on games and put a standing challenge. Thanks for the game!\r\n\r\nDid we play a training game a couple of months ago? If so, would you still like hints?\n\tcapi3101: We did, and I still suck at the game so hints would be welcome...\n\n4) Babamots: Build G1 Babamots\n\n5) capi3101: Trade G1 B1 Capi3101\n\tBabamots: A few thoughts on the setup:\r\n\r\nVery important: it&#39;s a small universe. We&#39;re both connected to medium systems, so our homes are only two moves away from each other.\r\n\r\nSince I had a red star, it&#39;s easier for you to get lots of red ships than it is for me. That could be your shortcut to getting medium and large ships faster than I do.\r\n\r\nOn the other hand, I&#39;d like to get lots of yellow, both because it&#39;s my usual strategy and because your yellow star will slow down your yellow production (a little). If I focus on yellow, my yellow-building may be slower-going (compared to your red) since there an r1 has already be used up.\n\tcapi3101: Any particular reason why you chose to go with a small map?\n\n6) Babamots: Trade G1 B1 Babamots\n\tBabamots: I think the game may be more instructive this way. Small maps are a little simpler, so I think it&#39;s easier to make plans and harder to make mistakes.\n\n7) capi3101: B B2 Capi3101\n\n8) Babamots: Build B2 Babamots\n\n9) capi3101: Discover B2 Capi3101 Y2 Aleph\n\n10) Babamots: Trade B1 Y1 Babamots\n\tcapi3101: Programming note - I tend to use the Hebrew alphabet for naming stars. Change of pace from the standard Greek. Doesn&#39;t really matter of course...\n\n11) capi3101: Build G1 Capi3101\n\n12) Babamots: Build Y1 Babamots\n\n13) capi3101: Trade B1 Y1 Capi3101\n\tcapi3101: So far this is going as I thought it might. How big of a danger am I currently in of getting completely locked out of yellow?\n\tcapi3101: I assume since I have access to blue in two different sizes I&#39;m okay-ish at least.\n\tBabamots: You have a medium blue, so you&#39;ll be able to join the yellow race at the medium level. But you&#39;ll have to move it to another system in order to build more, and I&#39;ve already got a two-ship head start. Unless you get started now, there&#39;s definitely a danger of me running away with so much of the yellow that you can&#39;t set up good attacks.\n\n14) Babamots: Build Y2 Babamots\n\n15) capi3101: Discover Y1 Capi3101 G2 Bet\n\tBabamots: Notice that it&#39;s not safe to build yellow at your home. You&#39;ll need a new system.\n\tcapi3101: That put a kink in my plans - I had intended to move the small yellow up to Aleph, but if I do that now you could sac the y2, move in your two y1s and blow the star. You&#39;d be the worse off for the exchange I think but you&#39;d then be ahead on ship-buiding. Correct assessment?\n\tBabamots: Moving your y1 to Aleph doesn&#39;t do much for you since your building options would remain the same (you can only build green unless you sacrifice to build blue). If you move your y1 to Aleph, I won&#39;t bother causing a catastrophe. I would lose my valuable yellows (which I can spread out and possibly get a near-monopoly) whereas you would just lose two ships, each of which needs to move somewhere else before it can accomplish much.\n\tBabamots: You need to get your yellow to a new green system so you can compete for yellow ships a little. You should probably also slow down my yellow domination by letting the Aleph star go back to the bank.\n\tBabamots: On my turn, I will probably discover a new system with one of my yellows. If the bank remains unaltered, I could then potentially sacrifice my g3 to build all remaining yellow pieces (I would then have three at home and three in the new system).\r\n\r\nBy discovering a new g2 system with your y1, you prepare to build yellow yourself and simultaneously threaten to catastrophe the yellow ships in my home. It will force me to spread out more before I sacrifice-build. That gives you a turn in which to either\r\n\r\n1) build a y2 (probably not the best since it makes it easier for me to get the y3) or\r\n\r\n2) plug up the bank by moving away from Aleph (maybe to a y3 system, which would reduce the number of y3 I can get).\n\tcapi3101: Makes sense.\r\n\r\nHey, could you send me a link to your strategy guide again? You had it on Facebook a couple of weeks back as I recall. I was going to copy down the link but never did for reasons...\n\n16) Babamots: Discover Y1 Babamots G2 Risa\n\tBabamots: Here&#39;s the index to everything:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/index.html\n\n17) capi3101: Discover B2 Aleph Y3 Gimel\n\n18) Babamots: Discover Y1 Babamots B2 Bolarus\n\n19) capi3101: Build Y2 Bet\n\tcapi3101: Okay. So your next move is likely to be a sac of the big green to clean out the remaining yellows. That gives you two yellows at each world and a big one at that.\n\tcapi3101: My options to at least stymie you - I can&#39;t stop it entirely - are to either discover a big yellow star with the small yellow at Bet, or to grow a medium yellow there and at least give myself another ship.\n\tcapi3101: Leaning towards growing. I do see a developing threat to my homeworld but I think I&#39;ve got some time before you trigger it.\n\tcapi3101: On the other hand, you can&#39;t make a triple move if you don&#39;t have a large yellow...\n\tcapi3101: And with the board as small as it is, perhaps discovering is the better option.\n\tBabamots: Building y2 is pretty safe for you right now.\n\tcapi3101: Oh good. I had had the thought that if I did get the y3 out of circ you probably wouldn&#39;t do the green sac altogether (for now), since you wouldn&#39;t be able to replace it right away.\n\n20) Babamots: Build Y2 Babamots\n\tBabamots: Right, I could spend one large to get a different large, but it would reduce my ship diversity (no more green).\n\n21) capi3101: Discover Y1 Bet Y3 Dalet\n\tcapi3101: ..and now would be the time to get that last yellow out of circulation, right? You could build it easily at Risa and have an independent big ship at your disposal.\r\n\r\nMy option is to claim it with one of the ships at Bet. Building it at Bet would be dumb. Swapping my large at my homeworld for it would be immeasurably worse.\n\n22) Babamots: Build G1 Babamots\n\n23) capi3101: Trade G1 B1 Capi3101\n\tBabamots: Those y3s could be good investments for you if you can get a green there. My plan is to work on red next. You can&#39;t build anywhere now, so trading your g1 for red or maybe even blue is probably best for you.\n\tcapi3101: I was leaning towards blue - get that out to Bet since it&#39;s the only frontline system I&#39;ve got. Maybe go ahead and try to get that system happy in the longer term.\n\n24) Babamots: Move B2 Babamots Risa\n\tcapi3101: Wil&#39;s stomped me enough times to drill the importance of blue into my head already...\n\n25) capi3101: Build G1 Capi3101\n\n26) Babamots: Trade G1 R1 Babamots\n\n27) capi3101: Trade G1 R1 Capi3101\n\n28) Babamots: Move R1 Babamots Risa\n\tcapi3101: Building green instead of swapping the blue for red might&#39;ve cost me there.\n\tcapi3101: I still lost the initiative on red, methinks.\n\tcapi3101: Here, have a medium.\n\tcapi3101: ...or not. Okay. That might&#39;ve been a better play than I originally thought.\n\tBabamots: You started on red later, but since I have a red home star, I&#39;m slowed down by a turn (I can&#39;t build another red right now, for example).\n\n29) capi3101: Build R2 Capi3101\n\tcapi3101: (Insert quip about how Risa is happy now here).\n\n30) Babamots: Build R2 Risa\n\n31) capi3101: Move R2 Capi3101 Bet\n\n32) Babamots: Move R2 Risa Dalet\n\n33) capi3101: Sacrifice Y1 Dalet\nMove B1 Capi3101 Bet\n\n34) Babamots: Build Y1 Risa\n\n35) capi3101: Discover R2 Bet B3 Hey\n\tcapi3101: That wasn&#39;t to my benefit, was it? You still get the small yellow if that was your goal, but this way you get to put it where you want.\n\tcapi3101: Now I&#39;ve got a definite threat sequence to my yellow star in progress...\n\tcapi3101: m y1 capi3101; then s y2 babamots, m y1 risa capi3101, m y1 Bolarus capi3101, c capi3101 y.\n\tcapi3101: I need to get the rest of blue out of circulation.\n\tcapi3101: A better move for me would&#39;ve been to discover a new star with the small yellow. Probably a small green star. \n\tcapi3101: Well, too late now...\n\n36) Babamots: Build G1 Babamots\n\tcapi3101: Going to be cleaning my house today and tomorrow; probably am not going to be on to play very much in that time period. Just letting you know.\n\tBabamots: No problem.\r\n\r\nWe&#39;ve been playing keep-away so aggressively that we still don&#39;t have large ships to spare. It&#39;s kind of cramped, but it makes for an interesting game.\n\n37) capi3101: Build G1 Capi3101\n\tcapi3101: Was going to do b g1 capi3101 but I think you and I have the same idea with that last move...and you&#39;d get there first.\n\tcapi3101: Well, maybe not.\n\n38) Babamots: Sacrifice G3 Babamots\nBuild R2 Dalet\nBuild R3 Dalet\nBuild R3 Risa\n\n39) capi3101: Sacrifice G3 Capi3101\nBuild B1 Gimel\nBuild B3 Bet\nBuild R3 Capi3101\n\n40) Babamots: Move R3 Risa Babamots\n\tBabamots: This isn&#39;t a very safe move for me since I&#39;m leaving my home without a large, opening up a large for you, and putting three of my reds together. You should probably build the other r3, but a catastrophe on my reds isn&#39;t a totally dumb option.\r\n\r\nI&#39;m not sure how I should respond to either action, but it&#39;s such an interesting position I couldn&#39;t resist.\n\tBabamots: You shouldn&#39;t sacrifice y2 to invade me right away since I can counter-invade and capture all of your home ships before you can get all of mine.\n\tBabamots: In other words, don&#39;t move your g3 to my home right now.\n\tBabamots: The problem with the first &quot;interesting&quot; move I made and undid was that it left Risa without a medium ship. I was going to get to build a y3, but you could invade Risa and take my only red before I could exploit it. I wanted to do it because the position was interesting, but I decided it was too bad of a move.\n\tcapi3101: Ugh...this is a bad idea......\n\n41) capi3101: Move R1 Capi3101 Bet\n\tBabamots: Oh cool! I wasn&#39;t thinking of that. Good one.\n\n42) Babamots: Sacrifice B2 Risa\nTrade R2 B2 Dalet\nTrade R3 G3 Dalet\n\tBabamots: You&#39;ve got me a little twisted around now. I need to defend pretty carefully.\n\tBabamots: You have enough material for a slow doomsday machine:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/tactics.html\r\n\r\nI think your challenge will be to push all of the pieces at me without opening up an opportunity for me to cause a catastrophe.\n\n43) capi3101: Build R2 Bet\n\tcapi3101: Really? And here I thought I was in trouble...\n\tcapi3101: I might need to get the red ship from Hey for that to work. I could do that by sacking my sole y2, but that kind of locks that move into the final one of the set.  \n\tcapi3101: I think I see a sequence that ~might~ do the trick though. Going to depend on your responses.\n\n44) Babamots: Build R3 Risa\n\tBabamots: I definitely think you&#39;re ahead. I might let you try to figure it out rather than helping you beat me :-)\n\n45) capi3101: M R1 Bet Babamots\n\tBabamots: You can tell I&#39;m flustered when I undo a lot. Sorry about that.\n\n46) Babamots: Trade R3 G3 Babamots\n\tcapi3101: K. Here goes nothing.\n\n47) capi3101: B R3 Bet\n\n48) Babamots: Attack R1 Babamots\n\n49) capi3101: Move R2 Bet Babamots\n\n50) Babamots: Sacrifice R1 Babamots\nAttack R2 Babamots\n\n51) capi3101: B R1 Bet\n\n52) Babamots: Discover R2 Babamots G2 Orion\n\n53) capi3101: Move B1 Bet Babamots\n\n54) Babamots: Attack B1 Babamots\n\tBabamots: After that, I think the tables have turned. I may have time to disrupt your plans.\r\n\r\nThe guide I liked you to has a warning about one-ship-at-a-time red catastrophes, but I guess you didn&#39;t see that part.\n\tcapi3101: Saw it, but I have yet to be beaten over the head with it as yet. Have now. Crap.\n\n55) capi3101: Move B3 Bet Babamots\n\tBabamots: I&#39;ve never forgotten that trick after I lost to it for the first time.\n\n56) Babamots: Attack B3 Babamots\n\tcapi3101: Ever have a game where every piece made it out of the bank before?\n\tcapi3101: Asking out of curiosity.\n\tcapi3101: I&#39;ve been away from work since Friday and I was tracking the board state with my origami set I&#39;ve got out there. Required quite the update today...\n\tcapi3101: Commence bad idea #2. Probably more than #2 but I&#39;ve lost count...\n\n57) capi3101: Sacrifice Y2 Bet\nMove B1 Gimel Bet\nMove B1 Bet Babamots\nCatastrophe Babamots B\n\tBabamots: I clearly remember two games where the bank got exhausted. There may have been more.\r\n\r\nI tried for an hour to make an origami piece, but I couldn&#39;t match up the text descriptions of how to fold with the blurry picture. :-|\n\n58) Babamots: Move R3 Risa Capi3101\n\tcapi3101: Been meaning to do a video of the origami pieces. Big problem is that I don&#39;t have an overhead camera rig...\n\n59) capi3101: Attack R3 Capi3101\n\n60) Babamots: Sacrifice Y2 Babamots\nMove R1 Risa Capi3101\nMove R2 Orion Capi3101\nCatastrophe Capi3101 R\n\n61) capi3101: S B2 Gimel\nT R2 Y2 Hey\nT R3 Y3 Bet\n\tcapi3101: Well, there&#39;s that...\n\tcapi3101: ...but I think now I&#39;m hosed.\n\tcapi3101: Actually, I do have a plan - question is whether I&#39;ve got time to pull it off.\n\tcapi3101: I&#39;m guessing I don&#39;t.\n\n62) Babamots: Sacrifice Y2 Babamots\nMove G3 Dalet Bolarus\nMove G3 Bolarus Capi3101\n\tcapi3101: ...ah, I don&#39;t. Damn.\n\n63) capi3101: M Y3 Bet Capi3101\n\tBabamots: No, but it was very close. In fact I think this may be my only way out. It took me a while to realize that offense was the best defense here.\n\n64) Babamots: Sacrifice R2 Dalet\nAttack G1 Capi3101\nAttack Y3 Capi3101\n\tcapi3101: Yeah, I saw it coming. I think I&#146;m going to fall one move short. I&#146;ll still play it out.\n\n\tBabamots: Here&#39;s the archive view for easy reference:\r\n\r\nhttp://www.superdupergames.org/main.html?page=archive_play&amp;gid=35919\r\n\r\nI&#39;ve got a meeting, but I&#39;ll be back to talk about woulda coulda shouldas.\n\tBabamots: Like the guide says, you usually can&#39;t cause a red catastrophe one ship a time. You needed to spend your y2 on the red catastrophe. Assuming you hit red first, you would then need yellow of some kind in order to move in your blue ships. That could be arranged in the way you noticed (converting your yellow star into a ship using blue sacrifice).\r\n\r\nI think your big chance was when I messed up on my 22nd move. I left you with an opportunity to catastrophe my reds right away. If I had been careful enough to not have a red ship matching my star, you would have had to fiddle around to get a third red on my doorstep without leaving your home undefended.\r\n\r\nOn your 23rd move, I think you should have sacrificed the y2 to move both red ships from Bet to my home for the catastrophe.\r\n\r\nAfter that, I suspect you should\r\n\r\ndiscover b2 Gimel r2 Waw\r\n\r\n(I would probably probably build y2 to keep it away from you. I don&#39;t have to defend my home with a large yet since you don&#39;t have a way to get a large there)\r\n\r\nsacrifice b1 Gimel\r\ntrade b3 y3 Bet\r\n\r\n(Even though you need your blues for the catastrophe, don&#39;t trade your home r3 for y3. I could catastrophe it and then invade your home with a large before you could react.)\r\n\r\nAt this point, I really need to keep the blues away from you, but since you have yellow again, I also really need to defend my home with a large. But I don&#39;t have physical pieces in front of me at the moment so I&#39;m in danger of misanalysis. I&#39;ll say more later.\n\tBabamots: We really need to get some position exploration software so that we can display what we&#39;re talking about :-).\n\tcapi3101: Indeed.\n\tBabamots: Are you following my long trains of thought? I&#39;ll write up the rest of my position analysis if you say you&#39;ll follow along.\n\tcapi3101: I&#39;ll follow along with it as best I can.  \n\tBabamots: In my last attempt at analysis, it looked like I was going to be able to find a win for you starting from your 23rd move. But now I see that I skipped my own turn right off the bat, so the rest of what I said is nonsense.\r\n\r\nAfter lots of examination, I&#39;ve decided that mostly what your fleet needed for victory was another large ship to guard your assembling death fleet, but you also need another yellow ship (an size). So now I think your real opportunity was on your 24th move. I had just traded away my g3, so you can build r3.\r\n\r\nI&#39;m going to list the moves that you could make to create a death fleet that would also keep your ships pretty safe (no three ships of the same color, no ships left alone without a large). I think this plan could be adapted to answer anything I could have done to stop you, but it would be complicated to explore it all and write about it. It seems good enough show you an example of maneuvering your ships with relative safety.\r\n\r\nbuild r3 capi3103\r\n\r\nmove b2 Gimel Bolarus\r\n(depending on how I respond, you should get to either sacrifice a red to attack the y1 in Bolarus or sacrifice the b1 in Gimel to trade for a y3. I&#39;ll assume that my y1 runs away so you get to sacrifice and trade).\r\n\r\nsacrifice b1 Gimel\r\ntrade r3 y3 capi3101\r\n\r\nmove y3 capi3101 Bolarus\r\n\r\nmove b2 Bolarus Babamots\r\n(I probably attack the b2)\r\n\r\nmove b3 Bet Babamots\r\n(I must attack the b3 or you will sacrifice r3 to attack most of the ships in my home, thus there are two blue ships in my home)\r\n\r\nmove b1 Bet Babamots\r\ncatastrophe Babamots b\r\n(notice that no yellow sacrifices were needed for the blue catastrophe)\r\n\r\nsacrifice y2 Bet\r\nmove r2 Hey Bet\r\nmove r2 Bet Babamots\r\n(there can&#39;t be a red-star-destroying catastrophe at my home without at least one yellow sacrifice. Two of the reds you need to use are two moves away from my home, so using two sacrifices saves time)\r\n\r\nsacrifice y3 Bolarus\r\nmove r2 Bet Babamots\r\nmove r3 capi3101 Bet\r\nmove r3 Bet Babamots\r\ncatastrophe Babamots r\r\n\r\nMy most likely counter-attacks are to move one of my largest to either Gimel, Hey, or Bolarus at a moment when you don&#39;t have a large there. But then you could move a large to whichever system I took mine out of to attack some of my ships. Like I said, I&#39;m not positive how it would all go down, but that&#39;s a direction you might have tried.\n\nHomeworlds Online (SDG# 35937)\nStarted: 2020.1.28, Ended: 2020.3.26\nParticipants: DodoBirb (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) DodoBirb: Homeworld B1 Y3 G3\n\tDodoBirb: Greetings! and glhf!\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: This is for the tournament correct?\n\n4) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Yes\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) Trydnt: Build B2 Trydnt\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) DodoBirb: Discover B2 Dodobirb G2 Green\n\n11) Trydnt: Build B3 G3\n\n12) DodoBirb: Build B3 Green\n\n13) Trydnt: Build B3 G3\n\n14) DodoBirb: Trade B2 Y2 Green\n\n15) Trydnt: Trade B3 Y3 G3\n\n16) DodoBirb: Trade B1 R1 Dodobirb\n\n17) Trydnt: Trade B1 R1 G3\n\n18) DodoBirb: Build B1 Green\n\n19) Trydnt: Build Y1 G3\n\n20) DodoBirb: Build Y1 Green\n\n21) Trydnt: Discover Y1 G3 G2 G2\n\n22) DodoBirb: Build G1 Dodobirb\n\n23) Trydnt: Build Y2 G2\n\n24) DodoBirb: Discover G1 Dodobirb G2 Greeny2\n\n25) Trydnt: Build B1 G3\n\n26) DodoBirb: Move B1 Green Dodobirb\n\n27) Trydnt: Move B3 G3 G2\n\n28) DodoBirb: Move B1 Dodobirb Greeny2\n\n29) Trydnt: Discover B2 Trydnt Y3 Y3\n\n30) DodoBirb: Build G1 Dodobirb\n\n31) Trydnt: Build G1 Trydnt\n\n32) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild B2 Green\nBuild B3 Greeny2\n\n33) Trydnt: Build Y2 G3\n\n34) DodoBirb: Build R1 Dodobirb\n\n35) Trydnt: Build R2 G3\n\n36) DodoBirb: Move R1 Dodobirb Greeny2\n\n37) Trydnt: Move R1 G3 G2\n\n38) DodoBirb: Build R2 Dodobirb\n\n39) Trydnt: Sacrifice Y2 G2\nMove B1 G3 Greeny2\nMove B2 Y3 Greeny2\nCatastrophe Greeny2 B\n\n40) DodoBirb: Trade R1 B1 Dodobirb\n\n41) Trydnt: Move Y2 G3 Greeny2\n\n42) DodoBirb: Sacrifice Y1 Green\nDiscover R1 Greeny2 Y3 Sun\n\n43) Trydnt: Build B1 G2\n\n44) DodoBirb: Discover B1 Dodobirb Y2 Smallsun\n\n45) Trydnt: Discover B1 G2 Y1 Y1\n\n46) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild R1 Sun\nPass\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B2 G2\nBuild B3 Y1\n\n48) DodoBirb: Move R1 Sun Green\n\n49) Trydnt: Move B3 Y1 Sun\n\n50) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild R2 Sun\nBuild R3 Green\n\n51) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 G2\nBuild R3 G3\n\n52) DodoBirb: Sacrifice Y2 Green\nMove R2 Sun G2\nMove R1 Sun G2\nCatastrophe G2 R\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G2\nBuild R1 G3\n\n54) DodoBirb: Build R1 Dodobirb\n\n55) Trydnt: Move R3 G3 Smallsun\n\n56) DodoBirb: Sacrifice B1 Smallsun\nPass\n\n57) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B1 G2\nBuild R2 Smallsun\n\n58) DodoBirb: Sacrifice R1 Dodobirb\nPass\n\n59) Trydnt: Move B3 Sun Green\n\n60) DodoBirb: Attack B3N Green\n\n61) Trydnt: Move B1 Y1 Green\nCatastrophe Green B\n\n62) DodoBirb: Trade G1 B1 Dodobirb\n\n63) Trydnt: Sacrifice Y2 G2\nMove B1 G2 Dodobirb\nMove B2 G2 Dodobirb\nCatastrophe Dodobirb B\n\n64) DodoBirb: Build G1 Dodobirb\n\n65) Trydnt: Build Y1 G2\n\n66) DodoBirb: Pass\n\n67) Trydnt: Sacrifice Y3 G3\nMove Y1 G2 Dodobirb\nMove Y1 G2 Dodobirb\nMove Y2 Greeny2 Dodobirb\nCatastrophe Dodobirb Y\n\n\nHomeworlds Online (SDG# 35786)\nStarted: 2020.1.29, Ended: 2020.2.7\nParticipants: ajo (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld B3 Y2 G3\n\tajo: This is for the Great Homeworlds Tournament of 2019, agreed?\n\teliscinsky: Agreed. This is for the Great Homeworlds Tournament of 2019.\n\n2) ajo: Homeworld R3 B1 G3\n\teliscinsky: GL, HF! \r\nAlthough seeing as you have, so far, won 4 and lost 2, I think I&#39;m in for a lesson. ;)\n\n3) eliscinsky: Build G1 Eliscinsky\n\tajo: Good luck! :)\n\n4) ajo: Build G1 Ajo\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) ajo: Build G1 Ajo\n\n9) eliscinsky: Trade G1 B1 Eliscinsky\n\n10) ajo: Trade G1 B1 Ajo\n\n11) eliscinsky: Build B2 Eliscinsky\n\n12) ajo: Build B2 Ajo\n\n13) eliscinsky: Discover B1 Eliscinsky R1 Romulus\n\n14) ajo: Discover B2 Ajo G2 Alpha\n\n15) eliscinsky: B G1 Eliscinsky\n\n16) ajo: Build B2 Alpha\n\n17) eliscinsky: Build B3 Eliscinsky\n\n18) ajo: Build B3 Ajo\n\n19) eliscinsky: Trade B2 Y2 Eliscinsky\n\n20) ajo: Trade B2 Y2 Alpha\n\n21) eliscinsky: Sacrifice Y2 Eliscinsky\nMove B1 Romulus Alpha\nMove B1 Alpha Ajo\nCatastrophe Ajo B\n\n22) ajo: Build Y1 Alpha\n\n23) eliscinsky: Trade B3 R3 Eliscinsky\n\n24) ajo: Sacrifice G3 Ajo\nBuild Y2 Ajo\nBuild Y3 Ajo\nBuild Y3 Alpha\n\tajo: Oh, shoot! My physical pieces somehow got out of sync with the SDG position. Well, I guess this is likely to be a loss for me.\n\n25) eliscinsky: Discover Y1 Eliscinsky G1 Romulus\n\n26) ajo: Trade Y1 R1 Alpha\n\n27) eliscinsky: Move Y1 Romulus Ajo\nCatastrophe Ajo Y\n\n\teliscinsky: Well, &quot;never to be one to look a gift-horse in the mouth&quot;, I&#39;ll take what comes my way.  Sorry for your misstep.  I know you&#39;re a better player than what this game shows.  I look forward to a future rematch.  Cheers!\n\nHomeworlds Online (SDG# 35938)\nStarted: 2020.1.29, Ended: 2020.2.19\nParticipants: Trydnt (S), speardane (N)\nWinner: Trydnt\n\n1) speardane: Homeworld Y3 B2 G3\n\n2) Trydnt: Homeworld Y2 B1 G3\n\tTrydnt: was this a tournament challenge? I don&#39;t think it is but wanted to make sure\n\n3) speardane: Build G1 Speardane\n\tspeardane: Sorry, yes, this is for the Great Homeworlds Tournament of 2019! Good luck!\n\n4) Trydnt: Build G1 Trydnt\n\n5) speardane: Trade G3 R3 Speardane\n\tTrydnt: great good luck!\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) speardane: Build G1 Speardane\n\n8) Trydnt: Build B1 Trydnt\n\n9) speardane: Discover G1 Speardane Y1 Delos\n\n10) Trydnt: Discover B1 Trydnt G3 G3\n\n11) speardane: Build G1 Delos\n\n12) Trydnt: Build B2 G3\n\n13) speardane: Discover G1 Delos B3 Lebling\n\n14) Trydnt: Discover B1 Trydnt G3 Gee3\n\n15) speardane: Discover G1 Delos B3 Kotok\n\n16) Trydnt: Build G2 Trydnt\n\n17) speardane: Build G2 Lebling\n\n18) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Gee3\nBuild B3 G3\n\n19) speardane: Trade G2 Y2 Lebling\n\n20) Trydnt: Trade B3 Y3 G3\n\n21) speardane: Build G2 Kotok\n\n22) Trydnt: Trade B2 R2 G3\n\n23) speardane: Trade G2 Y2 Kotok\n\n24) Trydnt: Build B2 Gee3\n\n25) speardane: Build Y1 Lebling\n\n26) Trydnt: Discover R2 G3 Y1 Y1\n\n27) speardane: Trade Y2 R2 Lebling\n\n28) Trydnt: Build B3 G3\n\n29) speardane: Build Y1 Kotok\n\n30) Trydnt: Discover R2 Y1 Y3 Y3\n\n31) speardane: Trade Y2 R2 Kotok\n\n32) Trydnt: Trade B2 Y2 Gee3\n\n33) speardane: Build Y1 Lebling\n\n34) Trydnt: Build G2 Trydnt\n\n35) speardane: Build G2 Kotok\n\n36) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G3\nBuild R1 Y3\n\n37) speardane: Sacrifice G2 Kotok\nBuild R1 Lebling\nBuild R1 Kotok\n\n38) Trydnt: Move R1 Y3 Trydnt\n\n39) speardane: Build R3 Kotok\n\n40) Trydnt: Move R1 Trydnt Kotok\nCatastrophe Kotok R\n\n41) speardane: Build R1 Lebling\n\n42) Trydnt: Build G2 Trydnt\n\n43) speardane: Build G2 Kotok\n\n44) Trydnt: Discover Y3 G3 R1 R1\n\n45) speardane: Sacrifice G2 Kotok\nBuild R2 Speardane\nBuild R3 Speardane\n\n46) Trydnt: Sacrifice Y2 G3\nMove R2 Y3 R1\nMove R2 R1 Speardane\nCatastrophe Speardane R\n\n47) speardane: Build G2 Speardane\n\n48) Trydnt: Trade G2 R2 Trydnt\n\n49) speardane: Trade G2 R2 Speardane\n\n50) Trydnt: Move Y3 R1 Speardane\n\n51) speardane: Build G2 Speardane\n\n52) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Speardane\nAttack G2 Speardane\n\n\nHomeworlds Online (SDG# 35927)\nVariants: &quot;Hard time&quot;\nStarted: 2020.1.30, Ended: 2020.2.2\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n\tdlwillson: one concurrent game per opponent is good for me\n\nHomeworlds Online (SDG# 35868)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2020.1.30, Ended: 2020.5.9\nParticipants: Trydnt (S), rho0 (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35774)\nStarted: 2020.1.30, Ended: 2020.3.18\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) MobyNostromo: H Y1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: T G1 B1 Mobynostromo\n\n7) Trydnt: Build Y1 Trydnt\n\n8) MobyNostromo: B G1 Mobynostromo\n\n9) Trydnt: Discover Y1 Trydnt G1 G1\n\n10) MobyNostromo: B B1 Mobynostromo\n\n11) Trydnt: Discover Y1 G1 G3 G3\n\n12) MobyNostromo: T G1 R1 Mobynostromo\n\n13) Trydnt: Build Y2 G3\n\n14) MobyNostromo: M R1 Mobynostromo G3\n\n15) Trydnt: Discover Y1 G3 G1 G1\n\n16) MobyNostromo: M B1 Mobynostromo G3\n\n17) Trydnt: Trade Y1 R1 Trydnt\n\n18) MobyNostromo: T B1 Y1 G3\n\n19) Trydnt: Build R1 Trydnt\n\n20) MobyNostromo: D R1 G3 G1 Moss\n\n21) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G3\n\n22) MobyNostromo: B G1 Mobynostromo\n\n23) Trydnt: Build G2 Trydnt\n\n24) MobyNostromo: D G1 Mobynostromo Y3 Gold\n\n25) Trydnt: Build Y2 G1\n\n26) MobyNostromo: T G3 Y3 Mobynostromo\n\n27) Trydnt: Sacrifice Y2 G1\nMove Y1 G3 Mobynostromo\nMove Y2 G3 Mobynostromo\nCatastrophe Mobynostromo Y\n\n28) MobyNostromo: B G2 Gold\n\n29) Trydnt: Discover G2 Trydnt Y1 Y1\n\n30) MobyNostromo: M G2 Gold Mobynostromo\n\n31) Trydnt: Build Y1 G1\n\n32) MobyNostromo: B G2 Mobynostromo\n\n33) Trydnt: Build G3 Y1\n\n34) MobyNostromo: T G2 Y2 Mobynostromo\n\n35) Trydnt: Move G3 Y1 Mobynostromo\n\n36) MobyNostromo: B G2 Mobynostromo\n\n37) Trydnt: Trade G3 R3 Mobynostromo\n\n38) MobyNostromo: B G3 Mobynostromo\n\n39) Trydnt: Move G2 Y1 Mobynostromo\nCatastrophe Mobynostromo G\n\n40) MobyNostromo: T Y2 G2 Mobynostromo\n\n41) Trydnt: Attack G2 Mobynostromo\n\n42) MobyNostromo: S G1 Gold\nB B1 Mobynostromo\n\n43) Trydnt: Trade R3 B3 Mobynostromo\nCatastrophe Mobynostromo B\n\n\tMobyNostromo: I&#39;m going for mass suicide...\n\tTrydnt: well it worked! good game\n\nHomeworlds Online (SDG# 35954)\nVariants: &quot;Hard time&quot;\nStarted: 2020.1.31, Ended: 2020.2.9\nParticipants: dlwillson (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) dlwillson: H Y1 B3 G3\n\tBabamots: Good luck!\r\n\r\nAre you hoping to hit the top of the ladder again? I see you&#39;ve been #1 a few times.\n\tdlwillson: TY!GL!HF! Hoping? Yes. Expecting? No. You, Simon, and Trydnt are all stronger than I am. Wil, D5PA, Felix, and I seem about equal. So, I don&#39;t suppose my #1 days are coming back, but who knows? And paying is fun, anyway.\n\n3) Babamots: Build G1 Babamots\n\n4) dlwillson: B G1 Dlwillson\n\n5) Babamots: Trade G1 Y1 Babamots\n\tBabamots: So what I&#39;m seeing is, we&#39;d both like to challenge for the #1 spot when this game is over. If we hurry, we might finish this game before #1 gets tied up again.\r\n\r\nWant to say winner gets dibs on challenging the top? And if so, do you suppose it&#39;s cheating to pause the game at its conclusion so that we&#39;re protected from new challenges while we wait for D5 and Trydnt to finish?\n\n\tdlwillson: Hey. Sorry about the resignation. Real luge had intervened in a significant, non-positive way. I&#39;ll come back when I have time to play again. Sorry...\n\nHomeworlds Online (SDG# 35964)\nStarted: 2020.2.4, Ended: 2020.2.24\nParticipants: tkvaran (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld Y3 G2 R3 *\n\n2) tkvaran: Homeworld R2 B1 G3\n\ttkvaran: Just a tip.  Most people think you should have blue and green in your opening setup.  Your opening is definitely playable, but I think it is typically good to have green and blue.\n\n3) zweiterlinde: Build R1 Zweiterlinde\n\tzweiterlinde: So _now_ you tell me. :) I read the rules on the looney sure and it recommended ones of bg and one of yr. We&#39;ll see I guess...\n\tzweiterlinde: Not averse to help though, I&#39;m flying blind :)\n\n4) tkvaran: Build G1 Tkvaran\n\n5) zweiterlinde: Discover R1 Zweiterlinde B1 Mare\n\ttkvaran: I&#39;m pretty terrible at this game.  I like that it is almost entirely long term strategy.  Really not a tactical game at all (at least how I play).  If you haven&#39;t watched them, there are some great videos called Homeworlds Theater on youtube.  I think they do a good job of showing off the game.\n\tzweiterlinde: Neat!\n\n6) tkvaran: Trade G1 Y1 Tkvaran\n\n7) zweiterlinde: Build R1 Zweiterlinde\n\n8) tkvaran: Build Y1 Tkvaran\n\n9) zweiterlinde: Discover R1 Zweiterlinde R1 Polis\n\n10) tkvaran: Discover Y1 Tkvaran B3 Coke\n\n11) zweiterlinde: Build R2 Zweiterlinde\n\n12) tkvaran: Build Y1 Tkvaran\n\tzweiterlinde: It is annoying to not have blue at home, you&#39;re right :)\n\ttkvaran: Means you need to funnel everything through that other star right?\n\n13) zweiterlinde: Move R2 Zweiterlinde Mare\n\n14) tkvaran: Discover Y1 Tkvaran G3 Pepsi\n\n15) zweiterlinde: Trade R2 Y2 Mare\n\n16) tkvaran: Build Y2 Pepsi\n\n17) zweiterlinde: Move R1 Mare Coke\n\n18) tkvaran: Discover Y1 Coke R2 Jolt\n\n19) zweiterlinde: Build R2 Zweiterlinde\n\n20) tkvaran: Move Y1 Pepsi Mare\n\n21) zweiterlinde: Move R2 Zweiterlinde Mare\n\n22) tkvaran: Move Y2 Pepsi Polis\n\n23) zweiterlinde: Build R3 Zweiterlinde\n\n24) tkvaran: Attack R1 Polis\n\n25) zweiterlinde: Move R3 Zweiterlinde Polis\n\n26) tkvaran: Discover Y2 Polis B2 Volt\n\n27) zweiterlinde: Attack Y1 Mare\n\n28) tkvaran: Build G1 Tkvaran\n\n29) zweiterlinde: Trade Y2 G2 Mare\n\n30) tkvaran: Build G1 Tkvaran\n\n31) zweiterlinde: Build Y2 Mare\n\n32) tkvaran: Discover G1 Tkvaran Y3 Sprite\n\n33) zweiterlinde: Build R3 Mare\n\n34) tkvaran: Trade G1 B1 Tkvaran\n\n35) zweiterlinde: Trade R3 B3 Mare\n\n36) tkvaran: Build G1 Sprite\n\n37) zweiterlinde: Sacrifice Y1 Mare\nMove R3 Polis Sprite\n\n38) tkvaran: Discover G1 Sprite Y1 Rc\n\n39) zweiterlinde: Attack G1 Sprite\n\n40) tkvaran: Build G1 Rc\n\n41) zweiterlinde: Build R3 Sprite\n\n42) tkvaran: Discover B1 Tkvaran G3 Squirt\n\ttkvaran: Well this feels like it&#39;s gotten out of control\n\tzweiterlinde: Lol\n\n43) zweiterlinde: Sacrifice Y2 Mare\nMove R3 Sprite Tkvaran\nMove R3 Sprite Tkvaran\n\n44) tkvaran: Attack R3 Tkvaran\n\n45) zweiterlinde: Sacrifice R2 Mare\nAttack R3 Tkvaran\nAttack G3 Tkvaran\n\n46) tkvaran: Sacrifice Y2 Volt\nMove G1 Rc Zweiterlinde\nMove G1 Rc Zweiterlinde\n\n47) zweiterlinde: Attack Y1 Tkvaran\n\ttkvaran: Nice game!\n\tzweiterlinde: Thanks, gg!\n\n\nHomeworlds Online (SDG# 35966)\nStarted: 2020.2.5, Ended: 2020.2.17\nParticipants: zweiterlinde (S), Mantheron (N)\nWinner: zweiterlinde\n\n1) Mantheron: Homeworld R3 B2 G3\n\n2) zweiterlinde: Homeworld G2 Y3 R3 *\n\tzweiterlinde: homeworld g2 y3 r3\n\tzweiterlinde: Lol\n\n3) Mantheron: Build G1 Mantheron\n\tMantheron: Well, it looks like it&#146;s a small universe.\n\n4) zweiterlinde: Build R1 Zweiterlinde\n\n5) Mantheron: Trade G1 Y1 Mantheron\n\n6) zweiterlinde: Discover R1 Zweiterlinde R1 Ein\n\n7) Mantheron: Build Y1 Mantheron\n\tzweiterlinde: It&#39;s possible my moves are worse than random :)\n\n8) zweiterlinde: Build R1 Zweiterlinde\n\n9) Mantheron: Build G1 Mantheron\n\n10) zweiterlinde: Discover R1 Zweiterlinde B1 Polis\n\n11) Mantheron: Trade Y1 B1 Mantheron\n\n12) zweiterlinde: Build R2 Zweiterlinde\n\n13) Mantheron: Build B1 Mantheron\n\n14) zweiterlinde: Move R2 Zweiterlinde Polis\n\n15) Mantheron: Discover B1 Mantheron G1 Altair\n\n16) zweiterlinde: Construct R2 Zweiterlinde\n\n17) Mantheron: Build B2 Mantheron\n\n18) zweiterlinde: Trade R2 B2 Polis\n\n19) Mantheron: Discover B2 Mantheron G1 Bellatrix\n\n20) zweiterlinde: Move R2 Zweiterlinde Bellatrix\n\n21) Mantheron: Build B3 Altair\n\n22) zweiterlinde: Attack B2 Bellatrix\n\n23) Mantheron: Trade B3 R3 Altair\n\n24) zweiterlinde: Build B3 Bellatrix\n\n25) Mantheron: Build B3 Altair\n\n26) zweiterlinde: Trade B3 Y3 Bellatrix\n\n27) Mantheron: Trade B3 Y3 Altair\n\n28) zweiterlinde: Build B3 Bellatrix\n\n29) Mantheron: Move B1 Mantheron Bellatrix\n\n30) zweiterlinde: Move B3 Bellatrix Zweiterlinde\n\n31) Mantheron: Build G2 Mantheron\n\n32) zweiterlinde: Trade B2 G2 Polis\n\n33) Mantheron: Move G2 Mantheron Ein\n\n34) zweiterlinde: Move B3 Zweiterlinde Ein\n\n35) Mantheron: Sacrifice G2 Ein\nBuild B2 Altair\nBuild R2 Altair\n\n36) zweiterlinde: Build G2 Polis\n\tzweiterlinde: Yikes!\n\n37) Mantheron: Sacrifice G3 Mantheron\nBuild G3 Mantheron\nBuild Y1 Altair\nBuild Y1 Altair\n\n38) zweiterlinde: Sacrifice G2 Polis\nBuild G2 Polis\nBuild B3 Ein\n\n39) Mantheron: Build Y2 Mantheron\n\n40) zweiterlinde: Sacrifice Y3 Bellatrix\nMove G2 Polis Mantheron\nMove G2 Polis Mantheron\nMove B3 Ein Mantheron\nCatastrophe Mantheron Green\n\n41) Mantheron: Sacrifice Y3 Altair\nMove B1 Altair Mantheron\nMove B1 Bellatrix Mantheron\nMove R3 Altair Mantheron\nCatastrophe Mantheron Blue\n\tzweiterlinde: Now we&#39;ll see how crazy it can get :)\n\n42) zweiterlinde: Trade B3 Y3 Ein\n\tMantheron: Well, that wasn&#146;t really the direction I was planning on things going.\n\tzweiterlinde: Lol\n\n43) Mantheron: Build Y2 Altair\n\n44) zweiterlinde: Sacrifice Y3 Ein\nMove R1 Ein Mantheron\nMove R1 Polis Mantheron\nCatastrophe Mantheron Red\nPass\n\tzweiterlinde: Gg\n\n\nHomeworlds Online (SDG# 35965)\nStarted: 2020.2.5, Ended: 2020.2.16\nParticipants: huddyrx (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld R1 B2 G3\n\n2) huddyrx: Homeworld B3 G1 R3\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\n4) huddyrx: Build R1 Huddyrx\n\tzweiterlinde: Gl, thanks for the game!\n\n5) zweiterlinde: Trade G1 Y1 Zweiterlinde\n\n6) huddyrx: Trade R1 Y1 Huddyrx\n\n7) zweiterlinde: Build G1 Zweiterlinde\n\n8) huddyrx: Build R1 Huddyrx\n\n9) zweiterlinde: Discover G1 Zweiterlinde G3 Gaia\n\n10) huddyrx: Trade R1 G1 Huddyrx\n\n11) zweiterlinde: Build G2 Zweiterlinde\n\n12) huddyrx: Build G2 Huddyrx\n\n13) zweiterlinde: Discover G2 Zweiterlinde G3 Terra\n\n14) huddyrx: Discover G2 Huddyrx R2 Cosmos\n\n15) zweiterlinde: Build G2 Zweiterlinde\n\n16) huddyrx: Build R1 Huddyrx\n\n17) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild Y1 Zweiterlinde\nBuild Y2 Zweiterlinde\n\n18) huddyrx: Build Y2 Huddyrx\n\n19) zweiterlinde: Trade Y1 B1 Zweiterlinde\n\n20) huddyrx: Trade R1 B1 Huddyrx\n\n21) zweiterlinde: Move Y2 Zweiterlinde Terra\n\n22) huddyrx: Move B1 Huddyrx Cosmos\n\n23) zweiterlinde: Move B1 Zweiterlinde Terra\n\n24) huddyrx: Move Y1 Huddyrx Cosmos\n\n25) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild Y1 Terra\nBuild B1 Terra\n\n26) huddyrx: Build Y2 Cosmos\n\n27) zweiterlinde: Trade Y1 R1 Terra\n\n28) huddyrx: Build B2 Cosmos\n\n29) zweiterlinde: Move B1 Terra Cosmos\n\n30) huddyrx: Discover B2 Cosmos Y3 Galaga\n\n31) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild B2 Terra\nBuild B3 Cosmos\n\n32) huddyrx: Build B3 Cosmos\nCatastrophe Cosmos Blue\n\n33) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild Y1 Terra\nBuild Y3 Zweiterlinde\n\tzweiterlinde: This is probably nutty, but hey...\n\n34) huddyrx: Build Y3 Huddyrx\n\thuddyrx: I feel like I may have been baited into that move. \n\thuddyrx: I feel like I may have been baited into that move. \n\tzweiterlinde: I overlooked the build option rather than moving the other B back. But I&#39;m mostly just trying to see if it makes sense to blow stuff up given that I think I have a production advantage\n\n35) zweiterlinde: Discover B1 Terra R2 Proxima\n\n36) huddyrx: Move G2 Cosmos Galaga\n\n37) zweiterlinde: Sacrifice Y3 Zweiterlinde\nMove B2 Terra Proxima\nMove B2 Proxima Huddyrx\nMove B1 Proxima Huddyrx\n\n38) huddyrx: Attack B2 Huddyrx\n\n39) zweiterlinde: Build B1 Huddyrx\nCatastrophe Huddyrx Blue\n\n40) huddyrx:\nBuild B1 Galaga\n\thuddyrx: Sorry I&#39;ve been slow to move this week. I did a bgg auction and have been getting a lot of emails. The turn notifications keep getting buried.\n\tzweiterlinde: No problem at all. Hope the auction went well! I&#39;m culling a bit myself, such a hassle.\n\n41) zweiterlinde: Sacrifice Y2 Terra\nMove G2 Terra Huddyrx\nMove G1 Gaia Huddyrx\nCatastrophe Huddyrx Green\n\n\thuddyrx: Nice job.  I saw the blue catastrophe, but didn&#39;t see the green one coming.\n\tzweiterlinde: Yeah it really exposes your homeworld when it connects to 2 sizes. Good game!\n\nHomeworlds Online (SDG# 35967)\nStarted: 2020.2.5, Ended: 2020.3.4\nParticipants: Mantheron (S), amoscai (N)\nWinner: Mantheron\n\n1) amoscai: Homeworld G1 B2 Y3\n\n2) Mantheron: Homeworld B3 R2 G3\n\n3) amoscai: Build Y1 Amoscai\n\n4) Mantheron: Build G1 Mantheron\n\n5) amoscai: Trade Y1 G1 Amoscai\n\n6) Mantheron: Build G2 Mantheron\n\n7) amoscai: Build G2 Amoscai\n\n8) Mantheron: Trade G1 Y1 Mantheron\n\n9) amoscai: Trade G1 R1 Amoscai\n\n10) Mantheron: Discover G2 Mantheron R1 Altair\n\n11) amoscai: Discover G2 Amoscai B3 Base\n\n12) Mantheron: Build Y1 Mantheron\n\n13) amoscai: Build G1 Base\n\n14) Mantheron: Trade Y1 R1 Mantheron\n\n15) amoscai: Build R2 Amoscai\n\n16) Mantheron: Move R1 Mantheron Altair\n\n17) amoscai: Build Y1 Amoscai\n\n18) Mantheron: Build Y1 Mantheron\n\n19) amoscai: Move R2 Amoscai Base\n\n20) Mantheron: Move Y1 Mantheron Altair\n\n21) amoscai: Build R2 Base\n\n22) Mantheron: Build G1 Altair\n\n23) amoscai: Trade G2 Y2 Base\n\n24) Mantheron: Build G2 Mantheron\n\n25) amoscai: Sacrifice Y2 Base\nMove R2 Base Altair\nMove R2 Base Altair\nCatastrophe Altair Red\n\n26) Mantheron: Discover G2 Mantheron R1 Castor\n\n27) amoscai: Trade Y3 G3 Amoscai\n\n28) Mantheron: Build G1 Mantheron\n\n29) amoscai: Build G2 Amoscai\n\n30) Mantheron: Sacrifice G3 Mantheron\nBuild G2 Mantheron\nBuild G3 Mantheron\nBuild G3 Castor\n\n31) amoscai: Sacrifice G3 Amoscai\nBuild G3 Amoscai\nBuild Y1 Amoscai\nBuild Y2 Amoscai\n\n32) Mantheron: Trade G2 Y2 Mantheron\n\n33) amoscai: Build G2 Base\n\n34) Mantheron: Sacrifice Y2 Mantheron\nMove G2 Castor Base\nMove G2 Base Amoscai\nCatastrophe Amoscai Green\n\n\nHomeworlds Online (SDG# 35968)\nStarted: 2020.2.5, Ended: 2020.2.18\nParticipants: amoscai (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld R1 B2 G3\n\n2) amoscai: Homeworld B1 G3 R3\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\tzweiterlinde: Good luck!\n\n4) amoscai: Build R1 Amoscai\n\tamoscai: thanks! I&#39;m going to try and figure this out slowly.\n\n5) zweiterlinde: Trade G1 Y1 Zweiterlinde\n\n6) amoscai: Trade R1 Y1 Amoscai\n\n7) zweiterlinde: Build G1 Zweiterlinde\n\n8) amoscai: Build R1 Amoscai\n\n9) zweiterlinde: Discover G1 Zweiterlinde B3 Acme\n\n10) amoscai: Discover R1 Amoscai G2 Bcme\n\n11) zweiterlinde: Build G1 Zweiterlinde\n\n12) amoscai: Trade R3 B3 Amoscai\n\n13) zweiterlinde: Discover G1 Zweiterlinde B3 Bongo\n\n14) amoscai: Build R1 Bcme\n\n15) zweiterlinde: Build G1 Zweiterlinde\n\n16) amoscai: Trade B3 G3 Amoscai\n\n17) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Acme\nBuild G2 Bongo\nBuild G3 Zweiterlinde\n\n18) amoscai: Build R2 Bcme\n\n19) zweiterlinde: Trade G2 R2 Acme\n\n20) amoscai: Build G2 Amoscai\n\n21) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild Y1 Zweiterlinde\nBuild Y2 Zweiterlinde\n\n22) amoscai: Sacrifice G2 Amoscai\nBuild G2 Amoscai\nBuild Y2 Amoscai\n\n23) zweiterlinde: Sacrifice Y2 Zweiterlinde\nMove G2 Bongo Bcme\nMove G2 Bcme Amoscai\nCatastrophe Amoscai Green\n\n24) amoscai: Trade Y2 G2 Amoscai\n\n25) zweiterlinde: Move Y1 Zweiterlinde Acme\n\n26) amoscai: Build Y2 Amoscai\n\n27) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Acme\nBuild G3 Zweiterlinde\nBuild Y2 Acme\n\n28) amoscai: Build G3 Amoscai\n\n29) zweiterlinde: Sacrifice Y2 Acme\nMove G2 Acme Amoscai\nMove G1 Acme Amoscai\nCatastrophe Amoscai Green\n\n30) amoscai: Trade Y2 G2 Amoscai\n\n31) zweiterlinde: Move R2 Acme Amoscai\n\n\nHomeworlds Online (SDG# 35869)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.7, Ended: 2020.2.11\nParticipants: Trydnt (S), Icernicus (N)\nWinner: Trydnt\n\n1) Icernicus: Homeworld R3 B2 G3\n\tIcernicus: sorry first game\n\tIcernicus: it says no pieces in the stash to take?\n\n2) Trydnt: Homeworld Y2 B1 G3\n\n3) Icernicus: Build G1 Icernicus\n\n4) Trydnt: Build G1 Trydnt\n\n5) Icernicus: Trade G1 Y1 Icernicus\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) Icernicus: Build G1 Icernicus\n\n8) Trydnt: Build B1 Trydnt\n\n9) Icernicus: Build Y1 Icernicus\n\n10) Trydnt: Discover B1 Trydnt G3 G3\n\n11) Icernicus: Discover Y1 Icernicus G1 Alpha\n\n12) Trydnt: Build B2 Trydnt\n\n13) Icernicus: Move G1 Icernicus Alpha\n\n14) Trydnt: Build B2 G3\n\n\nHomeworlds Online (SDG# 35871)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.7, Ended: 2020.2.12\nParticipants: wil (S), Icernicus (N)\nWinner: wil\n\n1) Icernicus: Homeworld R3 B2 G3\n\n2) wil: H Y2 B1 G3\n\n3) Icernicus: Build G1 Icernicus\n\n4) wil: B G1 Wil\n\n5) Icernicus: Trade G1 Y1 Icernicus\n\n6) wil: T G1 B1 Wil\n\n7) Icernicus: Build G1 Icernicus\n\n8) wil: B B1 Wil\n\n9) Icernicus: Discover G1 Icernicus Y1 Alpha\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Icernicus: Build Y1 Icernicus\n\n12) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n13) Icernicus: Move Y1 Icernicus Alpha\n\n\nHomeworlds Online (SDG# 35695)\nVariants: &quot;Hard time&quot;\nStarted: 2020.2.7, Ended: 2020.2.7\nParticipants: Trydnt (S), griseltono (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35925)\nStarted: 2020.2.8, Ended: 2020.3.23\nParticipants: DodoBirb (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) DodoBirb: Homeworld B1 Y3 G3\n\tajo: This is for the Great Homeworlds Tournament of 2019!\n\tDodoBirb: Good Luck! Just as a forewarning, after this move my next move will take a while but I&#39;ll be back to quick moves after that one!\n\n3) ajo: Build G1 Ajo\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) DodoBirb: Discover G1 Dodobirb B2 Blueyish\n\n7) ajo: Build G1 Ajo\n\n8) DodoBirb: Trade G1 B1 Blueyish\n\n9) ajo: Build G1 Ajo\n\n10) DodoBirb: Build G2 Dodobirb\n\n11) ajo: Build G2 Alpha\n\n12) DodoBirb: Sacrifice G2 Dodobirb\nBuild G2 Dodobirb\nBuild B2 Blueyish\n\n13) ajo: Trade G2 Y2 Alpha\n\n14) DodoBirb: Trade G2 Y2 Dodobirb\n\n15) ajo: Build G2 Alpha\n\n16) DodoBirb: Build G2 Dodobirb\n\n17) ajo: Trade G1 R1 Ajo\n\n18) DodoBirb: Trade G2 R2 Dodobirb\n\n19) ajo: Build R1 Ajo\n\n20) DodoBirb: Build R1 Dodobirb\n\n21) ajo: Build R2 Ajo\n\n22) DodoBirb: Build Y1 Dodobirb\n\n23) ajo: Build Y1 Alpha\n\n24) DodoBirb: Discover Y2 Dodobirb G2 Greenyish\n\n25) ajo: Discover R2 Ajo G1 Beta\n\n26) DodoBirb: Move R2 Dodobirb Greenyish\n\n27) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\n\n28) DodoBirb: Move Y1 Dodobirb Blueyish\n\n29) ajo: Move G3 Alpha Greenyish\n\n30) DodoBirb: Sacrifice Y2 Greenyish\nMove R2 Greenyish Dodobirb\nMove B2 Blueyish Dodobirb\n\n31) ajo: Move G2 Alpha Blueyish\n\n32) DodoBirb: Sacrifice G3 Dodobirb\nBuild B3 Dodobirb\nBuild B3 Blueyish\nBuild B3 Blueyish\nCatastrophe Blueyish B\n\n33) ajo: Sacrifice G3 Ajo\nBuild G2 Greenyish\nBuild G3 Ajo\nBuild G3 Alpha\n\tajo: I see the g3 sacrifice coming, but I think I&#39;m ready to deal with it anyway.\n\n34) DodoBirb: Discover B2 Dodobirb Y2 Yellow\n\n35) ajo: Move G3 Alpha Yellow\n\n36) DodoBirb: Discover B2 Yellow Y1 Miniyellow\n\n37) ajo: Move Y1 Alpha Greenyish\n\n38) DodoBirb: Discover R1 Dodobirb Y2 Minisun\n\n39) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y1 Greenyish\nBuild Y3 Alpha\n\n40) DodoBirb: Pass\n\n41) ajo: Move Y2 Alpha Minisun\n\n42) DodoBirb: Move R1 Minisun Miniyellow\n\n43) ajo: Trade Y3 B3 Alpha\n\n44) DodoBirb: Discover R1 Miniyellow Y3 Sun\n\n45) ajo: Move G3 Yellow Miniyellow\n\n46) DodoBirb: Move B2 Miniyellow Sun\n\n47) ajo: Move G3 Miniyellow Sun\n\n48) DodoBirb: Discover B2 Sun Y2 Runaway\n\n49) ajo: Sacrifice R1 Ajo\nAttack R1 Sun\n\n50) DodoBirb: Pass\n\n51) ajo: Sacrifice G3 Ajo\nBuild Y1 Greenyish\nBuild R1 Sun\nBuild G3 Ajo\n\n52) DodoBirb: Pass\n\n53) ajo: Move Y1 Greenyish Dodobirb\n\n54) DodoBirb: Attack Y1N Dodobirb\n\n55) ajo: Sacrifice Y2 Minisun\nMove Y1 Greenyish Dodobirb\nMove Y1 Greenyish Dodobirb\nCatastrophe Dodobirb Yellow\n\n56) DodoBirb: Trade B2 Y2 Runaway\n\n57) ajo: Sacrifice B3 Alpha\nTrade G3 Y3 Greenyish\nTrade G2 B2 Greenyish\nTrade R1 B1 Sun\n\n58) DodoBirb: Trade B3 G3 Dodobirb\n\n59) ajo: Sacrifice G2 Ajo\nBuild B2 Greenyish\nBuild B3 Sun\n\tajo: Check.\n\n60) DodoBirb: Pass\n\n61) ajo: Sacrifice Y3 Greenyish\nMove B2 Greenyish Dodobirb\nMove B2 Greenyish Dodobirb\nMove B1 Sun Dodobirb\nCatastrophe Dodobirb Blue\n\tajo: Checkmate?\n\tDodoBirb: I believe so.\n\n\nHomeworlds Online (SDG# 35752)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.2.8, Ended: 2020.2.18\nParticipants: wil (S), disaac (N)\nWinner: disaac\n\n1) disaac: Homeworld G2 Y1 B3\n\n2) wil: H Y2 B1 G3\n\n3) disaac: Build B1 Disaac\n\n4) wil: B G1 Wil\n\n5) disaac: Discover B1 Disaac G3 Face\n\n6) wil: T G1 B1 Wil\n\n7) disaac: Build B2 Face\n\n8) wil: B B2 Wil\n\n9) disaac: Trade B2 Y2 Face\n\n10) wil: T B1 Y1 Wil\n\n11) disaac: Build B1 Face\n\n12) wil: D B2 Wil G3 G3\n\n13) disaac: Build B2 Disaac\n\n14) wil: M Y1 Wil G3\n\twil: Aaargh, I made short universe!\n\tdisaac: I wondered if that was intentional or not. It&#146;s a good experiment for an unrated game. \n\n15) disaac: Trade B3 R3 Disaac\n\n16) wil: T G3 R3 Wil\n\twil: I like playing them...but unintentional it was\n\n17) disaac: Build R1 Disaac\n\n18) wil: B Y1 G3\n\n19) disaac: Build B2 Disaac\n\n20) wil: B B3 G3\n\n21) disaac: Build B3 Face\n\n22) wil: T B3 G3 G3\n\n23) disaac: Move B2 Disaac G3\n\n24) wil: T G3 R3 G3\n\n25) disaac: Build B3 G3\n\n26) wil: A B3 G3\n\n27) disaac: Build B3 G3\nCatastrophe G3 B\n\n28) wil: T R3 G3 Wil\n\n29) disaac: Move B3 Face Wil\n\n30) wil: S R3 G3\nA B3 Wil\nP\nP\n\n31) disaac: Sacrifice Y2 Face\nMove R3 Disaac G3\nMove R3 G3 Wil\n\n32) wil: M Y1 G3 Disaac\n\tdisaac: I believe this is endgame. \n\n33) disaac: Attack G3 Wil\n\n\tdisaac: Yes. Gg. I am not sure if I have played a small universe before. But this was fun. \n\nHomeworlds Online (SDG# 35940)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.10, Ended: 2020.2.17\nParticipants: capi3101 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tcapi3101: Howdy again. Looking to see if I learned anything from our last game.\n\n2) capi3101: Homeworld B1 Y3 G3\n\n3) Babamots: Build G1 Babamots\n\n4) capi3101: Build G1 Capi3101\n\tBabamots: We&#39;re off to a similar start :-)\n\n5) Babamots: Trade G1 R1 Babamots\n\tcapi3101: As has been noted elsewhere, the first turn after establishing homeworlds is almost always both sides growing new ships. I&#39;ve come to consider the true start of the game the point that we&#39;re at now...\n\tBabamots: Don&#39;t underestimate the first move. I&#39;ve lost games where I never really recovered from a poor homeworld choice.\r\n\r\nBut I agree that move 3 is where it starts getting interesting.\n\tBabamots: Oh, and what I meant about a similar start is that we have the same homeworlds as last game.\n\n6) capi3101: Trade G1 Y1 Capi3101\n\tcapi3101: Interesting move. The conventional wisdom is to get red since you&#39;ve got red, but since you&#39;re lacking yellow it&#39;s not as much of a threat as it could be. On the other hand, if you grab the third small I&#39;m locked out unless I can in at the mid level.\n\tcapi3101: I&#39;ll wager that I have a ~little~ time.\n\n7) Babamots: Build G1 Babamots\n\n8) capi3101: Build Y1 Capi3101\n\n9) Babamots: Build R1 Babamots\n\n10) capi3101: Build G1 Capi3101\n\n11) Babamots: Trade G1 Y1 Babamots\n\n12) capi3101: Discover Y1 Capi3101 G2 Aleph\n\n13) Babamots: Build Y2 Babamots\n\n14) capi3101: Build Y2 Aleph\n\n15) Babamots: Move Y2 Babamots Aleph\n\n16) capi3101: Sacrifice Y1 Aleph\nDiscover Y2 Aleph R3 Bet\n\n17) Babamots: Move R1 Babamots Aleph\n\tcapi3101: Has anybody done any kind of write-up on when you should and shouldn&#39;t squonk? That might be something for your strategy guide. Just saying.\n\n18) capi3101: Discover Y1 Capi3101 R2 Gimel\n\tBabamots: I&#39;m not sure squonking needs a special section. I think you just need to consider the consequences of the move like you would any other move. How will it affect your material (dis)advantage? Will your opponent want to build the sacrificed piece? I think the strategy guide I have covers general ideas like that reasonably well.\r\n\r\nDo you have some special ideas about squonking? I&#39;d be glad to hear them :-).\n\tcapi3101: Naw, I&#39;m still very much a beginner at this. Maybe I&#39;ll have more ideas on the topic when I gain more experience.\r\n\r\nIn the meantime I&#39;ve got to figure out how to get into red. The time I thought I had failed to materialize...\n\n19) Babamots: Sacrifice G3 Babamots\nBuild R2 Aleph\nBuild R2 Aleph\nBuild R3 Babamots\n\n20) capi3101: Trade G1 B1 Capi3101\n\tcapi3101: Aw crap...\n\n21) Babamots: Trade R3 G3 Babamots\n\tcapi3101: No, that&#39;s really the choice I&#39;ve got now, isn&#39;t it...\n\tcapi3101: But it&#39;d be a slow death move.\n\tcapi3101: If I trade my big green for a big red, in a minimum of three moves you&#39;ve got enough red at my homeworld to blow the big ship, and then you can walk in at your liesure. \n\tcapi3101: On the other hand, it&#39;s not safe for you to grow red right now.\n\tcapi3101: Let&#39;s try this...\n\n22) capi3101: Discover Y1 Gimel R3 Dalet\n\n23) Babamots: Build R2 Babamots\n\n24) capi3101: Build G1 Capi3101\n\tcapi3101: I think I&#39;m doing nothing besides prolonging the inevitable here.\n\n25) Babamots: Move R2 Aleph Capi3101\n\tBabamots: Yeah, once you get totally locked out of any color, it can be pretty tough to come back. wil has me nearly locked out of blue in our game right now, so I&#39;m suffering a similar fate there. :-D\n\n26) capi3101: Trade G3 R3 Capi3101\n\n27) Babamots: Move R2 Aleph Capi3101\n\tcapi3101: \n\tcapi3101: Bad situation number two: more ships at my home system than I can capture in one turn. Bad situation number 6 still in effect. I still can&#39;t swap for the large red because that would be catastrophe time; I&#39;d be without a large ship or a red ship. \n\tcapi3101: On the other hand, it&#39;d cost you two reds and a medium yellow, and were it not for your homeworld large, I&#39;d have a material advantage at that point.\n\tcapi3101: I think it&#39;s the only choice I&#39;ve got that makes any kind of sense.\n\n28) capi3101: Attack R2 Capi3101\n\n\tcapi3101: Eh. That&#39;s it.\n\tcapi3101: You move your medium yellow in after the red is blown, and then get the rest of my ships by sacrificing red. \n\tBabamots: Yeah, that&#39;s the idea. It&#39;s good that you were able to see the rest of the game from there!\r\n\r\nI need to update the section of my tactics page about slow red catastrophes. If you get one turn behind, the slow red cat is still possible.\n\nHomeworlds Online (SDG# 35951)\nVariants: &quot;Hard time&quot;\nStarted: 2020.2.10, Ended: 2020.2.10\nParticipants: capi3101 (S), dlwillson (N)\nWinner: capi3101\n\n\tdlwillson: Sorry about that. Real life is too busy to play right now. I took my challenges down for a while.\n\tcapi3101: Understood; not a problem. Thanks anyway.\n\nHomeworlds Online (SDG# 35952)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2020.2.10, Ended: 2020.2.22\nParticipants: capi3101 (S), rho0 (N)\nWinner: capi3101\n\n\nHomeworlds Online (SDG# 35953)\nStarted: 2020.2.10, Ended: 2020.4.27\nParticipants: capi3101 (S), MobyNostromo (N)\nWinner: capi3101\n\n1) MobyNostromo: H Y1 B2 G3\n\n2) capi3101: Homeworld B1 Y3 G3\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) capi3101: B G1 Capi3101\n\n5) MobyNostromo: T G1 Y1 Mobynostromo\n\n6) capi3101: Build G1 Capi3101\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Malachite\n\n8) capi3101: Discover G1 Capi3101 B2 Aleph\n\n9) MobyNostromo: B G1 Mobynostromo\n\n10) capi3101: Build G2 Aleph\n\n11) MobyNostromo: B G2 Mobynostromo\n\n12) capi3101: Trade G2 Y2 Aleph\n\n13) MobyNostromo: T G2 B2 Mobynostromo\n\tMobyNostromo: Aleph is a good name for a planet.\n\n14) capi3101: T G1 Y1 Capi3101\n\tcapi3101: It&#146;s a name that&#146;s still a letter (it&#146;s the first one in most of the Semitic abjads), but it makes a nice change of pace from the Greek.\n\n15) MobyNostromo: B Y2 Malachite\n\tMobyNostromo: That&#39;s why it sounds familiar. I recognized from a books of short stories by Borges. To me ear, it sounds celestial. :)\n\n16) capi3101: B Y2 Aleph\n\n17) MobyNostromo: D Y2 Malachite G2 Emerald\n\n18) capi3101: Trade G1 R1 Aleph\n\n19) MobyNostromo: T G1 R1 Mobynostromo\n\n20) capi3101: Move Y2 Aleph Malachite\n\n21) MobyNostromo: B Y3 Malachite\n\n22) capi3101: B Y3 Malachite\nC Malachite Y\n\n23) MobyNostromo: T B2 Y2 Mobynostromo\n\n24) capi3101: Build G1 Capi3101\n\n25) MobyNostromo: B G1 Mobynostromo\n\n26) capi3101: Move G1 Capi3101 Aleph\n\n27) MobyNostromo: D G1 Mobynostromo B3 Sapphire\n\n28) capi3101: Discover G1 Aleph Y1 Bet\n\n29) MobyNostromo: B Y3 Emerald\n\n30) capi3101: Build G1 Capi3101\n\tcapi3101: Hell. I screwed that up. That&#39;s liable to cost me the entire game now...\n\tcapi3101: Nothing for it, alas.\n\n31) MobyNostromo: S Y2 Mobynostromo\nM Y2 Emerald Capi3101\nM Y3 Emerald Capi3101\nC Capi3101 Y\n\tMobyNostromo: I&#39;m finding this is a very complex game. I often don&#39;t know what I&#39;m doing until something presents itself. Is that how most players feel or is it only true for those that have played it under fifty times? (I&#39;m a very slow learner.)\n\n32) capi3101: Move Y2 Aleph Sapphire\n\tcapi3101: I can&#39;t say I&#39;ve played it all that much my own self. In my experience, you don&#39;t really know that you&#39;ve screwed up until you&#39;ve well and truly screwed up...\n\tcapi3101: Like just now. \n\tcapi3101: My problem is that I don&#39;t avail myself of the notebook as often as I should. Then I forget what it was I was attempting to accomplish. Sleep is not your friend when it comes to a game like this...\n\n33) MobyNostromo: B G2 Sapphire\n\tMobyNostromo: Amen to that, especially the sleep part. I think we play this game in much the same way. :)\n\n34) capi3101: Sacrifice R1 Aleph\nAttack G2 Sapphire\n\tcapi3101: You mean make a move and hope you didn&#39;t screw up? Yep...\n\n35) MobyNostromo: B G2 Sapphire\n\tMobyNostromo: You took the words straight out of my mouth.\n\n36) capi3101: M G1 Bet Sapphire\nC Sapphire G\n\n37) MobyNostromo: B G1 Mobynostromo\n\n38) capi3101: Trade G1 R1 Capi3101\n\n39) MobyNostromo: T G1 Y1 Mobynostromo\n\n40) capi3101: Build G1 Capi3101\n\n41) MobyNostromo: D Y1 Mobynostromo G3 Emerald\n\n42) capi3101: Build G1 Capi3101\n\n43) MobyNostromo: B Y1 Emerald\n\n44) capi3101: Sacrifice G1 Capi3101\nBuild Y2 Sapphire\n\tcapi3101: Crap.\n\n45) MobyNostromo: B G1 Mobynostromo\n\n46) capi3101: M Y2 Sapphire Capi3101\n\n47) MobyNostromo: T G1 B1 Mobynostromo\n\n48) capi3101: S G3 Capi3101\nB Y2 Sapphire\nB Y3 Sapphire\nB Y3 Capi3101\n\n49) MobyNostromo: B Y3 Emerald\n\n50) capi3101: Move Y2 Capi3101 Emerald\nCatastrophe Emerald Y\n\n51) MobyNostromo: D B1 Mobynostromo G3 Foliage\n\n52) capi3101: Build G1 Capi3101\n\n53) MobyNostromo: B G1 Mobynostromo\n\n54) capi3101: Move G1 Capi3101 Foliage\n\tcapi3101: Sorry for the wait; I thought I had a path to victory there but then I realized it would rely on something that just wasn&#39;t going to happen...\n\tMobyNostromo: No worries.\n\n55) MobyNostromo: B R1 Mobynostromo\n\n56) capi3101: Build R2 Capi3101\n\n57) MobyNostromo: S R1 Mobynostromo\nA G1 Foliage\n\n58) capi3101: Move R2 Capi3101 Foliage\n\n59) MobyNostromo: B G2 Foliage\n\n60) capi3101: Build G2 Capi3101\n\tMobyNostromo: I&#39;m sorry for the wait. It&#39;s been difficult to contemplate games these days.\n\n61) MobyNostromo: T G1 Y1 Mobynostromo\n\tcapi3101: Understood. I figure a lot of folk have more important things on their minds.\n\tcapi3101: Trying to remember what I was planning now.\n\tcapi3101: I wonder...\n\n62) capi3101: Move Y3 Sapphire Mobynostromo\n\n63) MobyNostromo: A Y3 Mobynostromo\n\n64) capi3101: Move Y2 Sapphire Mobynostromo\nCatastrophe Mobynostromo Y\n\n65) MobyNostromo: B R1 Mobynostromo\n\tcapi3101: This is probably going to hurt me more than you...\n\tcapi3101: But the game is about to get pretty interesting.\n\n66) capi3101: Attack G2 Foliage\n\tMobyNostromo: Ha, ha. I think I know what you mean.\n\n67) MobyNostromo: B G1 Foliage\nC Foliage G\n\n68) capi3101: Move G2 Capi3101 Sapphire\n\n69) MobyNostromo: T R1 Y1 Mobynostromo\n\n70) capi3101: B Y1 Sapphire\n\tcapi3101: As expected.\n\tcapi3101: Now the fun begins.\n\n71) MobyNostromo: D Y1 Mobynostromo G1 Moss\n\n72) capi3101: Build G1 Sapphire\n\n73) MobyNostromo: B R1 Mobynostromo\n\n74) capi3101: Sacrifice Y3 Capi3101\nMove G1 Capi3101 Mobynostromo\nMove G1 Sapphire Mobynostromo\nMove G2 Sapphire Mobynostromo\nCatastrophe Mobynostromo G\n\n75) MobyNostromo: T R1 G1 Mobynostromo\n\n76) capi3101: Move Y2 Sapphire Mobynostromo\n\tcapi3101: Time for some knife-fighting, methinks...we&#39;ll see how well this works.\n\n77) MobyNostromo: B R1 Mobynostromo\n\tcapi3101: That might not have been the best of ideas, on further analysis...\n\n78) capi3101: M Y1 Sapphire Capi3101\n\n79) MobyNostromo: B Y1 Moss\n\n80) capi3101: Trade Y1 G1 Capi3101\n\n81) MobyNostromo: D Y1 Moss B3 Sky\n\n82) capi3101: Build R2 Capi3101\n\n83) MobyNostromo: B Y1 Moss\n\n84) capi3101: Trade Y2 B2 Mobynostromo\n\n85) MobyNostromo: B Y2 Moss\n\n86) capi3101: Trade R2 G2 Capi3101\n\n87) MobyNostromo: B R2 Mobynostromo\n\n88) capi3101: S G2 Capi3101\nB B1 Mobynostromo\nB B1 Mobynostromo\nC Mobynostromo B\n\n\tcapi3101: Hard fought game. Thoroughly enjoyed it; hope you did too. Let me know if you want a rematch.\n\tMobyNostromo: Yes, it was fun. I think I&#39;m getting this game finally. I might be playing better games soon.\n\nHomeworlds Online (SDG# 35974)\nVariants: &quot;Hard time&quot;\nStarted: 2020.2.10, Ended: 2020.2.17\nParticipants: Trydnt (S), capi3101 (N)\nWinner: Trydnt\n\n1) capi3101: Homeworld B1 Y3 G3\n\n2) Trydnt: Homeworld Y1 B2 G3\n\n3) capi3101: Build G1 Capi3101\n\n4) Trydnt: Build G1 Trydnt\n\n5) capi3101: Trade G1 Y1 Capi3101\n\tcapi3101: Preliminaries done - best of luck.\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) capi3101: Build Y1 Capi3101\n\tTrydnt: and to you!\n\n8) Trydnt: Build B1 Trydnt\n\n9) capi3101: Discover Y1 Capi3101 G2 Aleph\n\tcapi3101: Are you using any conventions for naming your systems? Myself, I generally go with the Hebrew alphabet...it&#39;s still an alphabet but it&#39;s at least a change from Greek...\n\n10) Trydnt: Discover B1 Trydnt G3 G3\n\n11) capi3101: Build Y2 Aleph\n\tTrydnt: I name them b3 or g1 or whatever they happen to be to avoid confusion and save time. easier and faster to type a short name\n\n12) Trydnt: Build B2 G3\n\n13) capi3101: Discover Y2 Aleph B3 Bet\n\n14) Trydnt: Trade B2 Y2 G3\n\n15) capi3101: Sacrifice G3 Capi3101\nBuild Y2 Aleph\nBuild Y3 Bet\nBuild Y3 Capi3101\n\n16) Trydnt: Build B2 Trydnt\n\n17) capi3101: Move Y1 Aleph Bet\n\n18) Trydnt: Discover Y2 G3 G2 G2\n\n19) capi3101: Sacrifice Y1 Capi3101\nDiscover Y2 Aleph R3 Gimel\n\n20) Trydnt: Move Y2 G2 Bet\nCatastrophe Bet Y\n\n21) capi3101: Trade Y3 G3 Capi3101\n\n22) Trydnt: Build B2 G3\n\tcapi3101: Nice move.\n\n23) capi3101: Build G1 Capi3101\n\tcapi3101: Oh, that didn&#39;t help me out either...crap.\n\n24) Trydnt: Build B3 G3\n\tTrydnt: yeah I had a double threat on your hw and Bet. you either had to trade a yellow back to be safe at how and let me blow up the rest or sacrifice a y2 to move one from each and either way I got a free yellow ship to grow g2. weird line-up but worked out okay :)\n\tcapi3101: Definitely a costly mistake on my part...going to have to see if I can recover from it.\n\n25) capi3101: Trade G1 R1 Capi3101\n\n26) Trydnt: Trade B2 R2 G3\n\n27) capi3101: Build G1 Capi3101\n\tcapi3101: Dammit...I see it coming.\n\n28) Trydnt: Trade B3 Y3 G3\n\n29) capi3101: Build G1 Capi3101\n\n30) Trydnt: Sacrifice Y3 G3\nMove G3 Trydnt G3\nDiscover G3 G3 Y2 Y2\nMove G3 Y2 Capi3101\nCatastrophe Capi3101 G\n\n\tcapi3101: Nice one. And that about wraps it up, methinks.\n\nHomeworlds Online (SDG# 35982)\nStarted: 2020.2.10, Ended: 2020.2.29\nParticipants: Draw5PlayAll (S), eliscinsky (N)\nWinner: Draw5PlayAll\n\n1) eliscinsky: Homeworld R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\teliscinsky: Greetings Draw5PlayAll! For the record, this is for the Great Homeworlds Tournament of 2019. I&#39;m going to fill out the start form now. HF / GL\n\n3) eliscinsky: Build G1 Eliscinsky\n\tDraw5PlayAll: And of course you took my normal setup.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\teliscinsky: I&#39;ve been studying up on my opponent ;)\n\n5) eliscinsky: Trade G1 B1 Eliscinsky\n\n6) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n7) eliscinsky: Build B2 Eliscinsky\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) eliscinsky: Trade B2 Y2 Eliscinsky\n\n10) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n11) eliscinsky: Build B2 Eliscinsky\n\n12) Draw5PlayAll: Build B2 Draw5playall\n\n13) eliscinsky: Trade B2 R2 Eliscinsky\n\n14) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n15) eliscinsky: B B2 Eliscinsky\n\n16) Draw5PlayAll: Build B2 Draw5playall\n\n17) eliscinsky: Trade B2 G2 Eliscinsky\n\n18) Draw5PlayAll: Discover B2 Draw5playall G3 Lime\n\n19) eliscinsky: Discover R2 Eliscinsky G2 Sprout\n\n20) Draw5PlayAll: Move R2 Draw5playall Lime\n\n21) eliscinsky: M G2 Eliscinsky Sprout\n\n22) Draw5PlayAll: Build G1 Draw5playall\n\n23) eliscinsky: Move B1 Eliscinsky Sprout\n\n24) Draw5PlayAll: Build Y1 Draw5playall\n\n25) eliscinsky: Build B2 Sprout\n\n26) Draw5PlayAll: Move Y1 Draw5playall Lime\n\n27) eliscinsky: Trade B1 Y1 Sprout\n\n28) Draw5PlayAll: Build R1 Lime\n\n29) eliscinsky: Build B1 Sprout\n\n30) Draw5PlayAll: Discover R1 Lime B2 Sky\n\n31) eliscinsky: Build G1 Eliscinsky\n\n32) Draw5PlayAll: Build B3 Lime\n\n33) eliscinsky: Discover B2 Sprout Y3 Sol\n\n34) Draw5PlayAll: Discover G1 Draw5playall B3 Water\n\n35) eliscinsky: Move G2 Sprout Sol\n\n36) Draw5PlayAll: Discover B1 Draw5playall Y3 Lemon\n\n37) eliscinsky: Move R2 Sprout Water\n\n38) Draw5PlayAll: Move R2 Lime Sprout\n\n39) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G1 Sol\nBuild G2 Sol\nBuild G3 Eliscinsky\n\n40) Draw5PlayAll: Attack Y1 Sprout\n\n41) eliscinsky: Trade G2 Y2 Sol\n\n42) Draw5PlayAll: Sacrifice G1 Water\nBuild Y1 Lime\n\n43) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G1 Sol\nBuild G2 Eliscinsky\nBuild G3 Eliscinsky\n\n44) Draw5PlayAll: Build Y3 Draw5playall\n\n45) eliscinsky: Trade G1 R1 Sol\n\n46) Draw5PlayAll: Trade R1 G1 Sky\n\n47) eliscinsky: Move Y2 Sol Sky\n\n48) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Sky Eliscinsky\nCatastrophe Eliscinsky Green\nMove B3 Lime Sky\nMove B3 Sky Eliscinsky\n\n49) eliscinsky: S G2 Sol\nB Y3 Eliscinsky\nB R1 Sol\n\n50) Draw5PlayAll: Sacrifice R2 Sprout\nAttack Y3 Eliscinsky\nAttack Y2 Eliscinsky\n\n\nHomeworlds Online (SDG# 35859)\nStarted: 2020.2.10, Ended: 2020.5.22\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Confirming that this is for the 2019 homeworlds tournament\n\n3) wil: B G1 Wil\n\n4) ts52: Build G1 Ts52\n\twil: Confirmed\n\twil: Good luck!\n\tts52: I have filled out the game start form\n\n5) wil: T G1 B1 Wil\n\twil: Thanks\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: B G1 Wil\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) wil: T G1 Y1 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: B Y1 Wil\n\n12) ts52: Build B1 Robin\n\n13) wil: D Y1 Wil B3 B3\n\n14) ts52: Trade B1 R1 Robin\n\n15) wil: B Y2 Wil\n\n16) ts52: Trade G1 R1 Ts52\n\n17) wil: D Y2 Wil Y3 Y3\n\n18) ts52: Build R1 Ts52\n\n19) wil: S G3 Wil\nB Y2 B3\nB Y2 Y3\nB Y3 Wil\n\n20) ts52: Build R2 Robin\n\n21) wil: D Y2 Y3 G1 G1\n\n22) ts52: B R2 Ts52\n\n23) wil: D Y2 B3 B1 B1\n\n24) ts52: Move R2 Ts52 G1\n\n25) wil: D Y2 G1 R3 R3\n\n26) ts52: Sacrifice G3 Ts52\nBuild R2 G1\nBuild R3 Ts52\nBuild R3 Robin\n\n27) wil: D B1 Wil G3 G3\n\n28) ts52: Trade R1 G1 Ts52\n\n29) wil: B B2 G3\n\n30) ts52: Build R1 Ts52\n\twil: So weird....\n\tts52: Very, very weird\n\n31) wil: B B3 G3\n\n32) ts52: Build B3 Robin\n\n33) wil: T B3 G3 G3\n\n34) ts52: Trade R3 G3 Ts52\n\n35) wil: T G3 R3 G3\n\n36) ts52: Sacrifice B1 Robin\nPass\n\n37) wil: M Y1 Wil G3\n\n38) ts52: Build G2 Ts52\n\n39) wil: T B2 G2 G3\n\n40) ts52: Discover G1 Ts52 B1 Grover\n\n41) wil: S G2 G3\nB B2 G3\nB B3 G3\n\n42) ts52: Build G2 Grover\n\n43) wil: T B2 G2 G3\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild B2 Robin\n\twil: I think it is my game to lose\n\n45) wil: M B3 G3 G1\n\tts52: I agree your yellow monopoly is killing me slowly.\n\n46) ts52: Move R1 Ts52 Grover\n\n47) wil: M Y1 B3 B1\n\n48) ts52: Build B3 Robin\n\twil: I am about to say heck with thinking and game play and just blow stuff up!\n\n49) wil: M B1 G3 Robin\nC Robin B\n\n50) ts52: Move G2 Ts52 B1\n\n51) wil: S R3 G3\nA R2 G1\nA R2 G1\nA G2 B1\n\n52) ts52: Build R3 Ts52\n\twil: Feels like a trap\n\n53) wil: M G2 G3 Grover\nC Grover G\n\tts52: got me an r3, but I&#39;m not sure how much it&#39;ll help \n\n54) ts52: Move R3 Ts52 B1\n\n55) wil: S Y2 B1\nD Y1 B1 G3 Gee3\nM G2 B1 Y3\n\n56) ts52: Build G1 Ts52\n\n57) wil: B B1 G1\n\n58) ts52: Trade R3 B3 B1\n\n59) wil: B Y2 G3\n\n60) ts52: Build R3 Ts52\n\n61) wil: B G2 Y3\n\n62) ts52: Move R3 Ts52 G1\n\n63) wil: S Y2 Y3\nM R2 G1 R3\nM R2 R3 Robin\nC Robin R\n\n64) ts52: Attack B3 G1\n\n65) wil: S G2 Y3\nB R1 G1\nB R2 G1\nC G1 R\n\n66) ts52: Build R1 Ts52\n\twil: I&#39;m more playing around than playing well, but this has just been so twisted!\n\n67) wil: B G1 Y3\n\tts52: This really is one of the most bizarre games of Homeworlds I&#39;ve ever played.\n\n68) ts52: Move R1 Ts52 G1\n\n69) wil: S G2 Y3\nB B2 G1\nB B3 G1\nC G1 B\n\n70) ts52: Build R2 Ts52\n\n71) wil: B Y2 Gee3\n\n72) ts52: Trade G1 B1 Ts52\n\twil: I blew it and may only squeak out a tie\n\n73) wil: B G1 Y3\n\n74) ts52: Build G2 Ts52\n\n75) wil: M G1 Y3 Wil\n\n76) ts52: Sacrifice G2 Ts52\nBuild R2 G1\nBuild R2 Grover\n\n77) wil: B G2 Wil\n\n78) ts52: Build G2 Ts52\n\twil: Yup, we stalemate\n\n79) wil: T G2 B2 Wil\n\tts52: I think there may be a path for you to victory. But I&#39;m not certain about it, and it may open up a path for me.\n\twil: Resign!  It is the honorable and sensible thing to do!\n\n80) ts52: Sacrifice G3 Ts52\nBuild R3 Ts52\nBuild B3 Ts52\nBuild G2 Ts52\n\twil: Thinking out options is not my strong suit...shooting from.the hip and dealing poorly with my errors is!  (A lifelong issue)\n\n81) wil: B B3 Wil\n\tts52: Poor impulse control?\n\n82) ts52: Build R3 G1\n\n83) wil: S G1 Y3\nB Y3 Wil\n\n84) ts52: Move G2 Ts52 Grover\n\n85) wil: B G1 Wil\n\n86) ts52: Trade R3 G3 Ts52\n\n87) wil: B G2 Wil\n\n88) ts52: Build R3 Ts52\n\n89) wil: M B2 Wil R3\n\n90) ts52: Pass\n\tts52: We&#39;ve reached an odd standoff. I can&#39;t launch a direct attack, but I suspect I have a strong counter attack should you attack me...\n\n91) wil: M Y3 Wil Gee3\n\twil: IMA coming\n\n92) ts52: Move B3 Ts52 Grover\n\twil: I blew my lead earlier... Gotta get.it back\n\n93) wil: M B3 Wil G3\n\n94) ts52: Move G2 Ts52 B1\n\n95) wil: M Y2 R3 Wil\n\n96) ts52: Pass\n\n97) wil: M Y2 Wil R3\n\n98) ts52: Pass\n\n99) wil: M B2 R3 Grover\n\n100) ts52: Move R2 Ts52 B1\n\n101) wil: M G1 Wil R3\n\n102) ts52: Attack B2 Grover\n\n103) wil: M B3 G3 Grover\nC Grover B\n\n104) ts52: Build B1 Ts52\n\n105) wil: T G1 R1 Wil\n\n106) ts52: Build G1 B1\n\n107) wil: B R2 Wil\n\n108) ts52: Move B1 Ts52 G1\n\twil: Me thinks I am back on the path...\n\n109) wil: T G2 B2 Wil\n\n110) ts52: Sacrifice G2 B1\nBuild B3 G1\nBuild B3 G1\n\n111) wil: B G2 R3\n\n112) ts52: Build G2 B1\n\n113) wil: M B2 Wil R3\n\n114) ts52: Build G2 B1\n\twil: Got it, gotta backtrack...but got it. Lol I know what I wanna do, just don&#39;t know if it will work\n\n115) wil: M G2 R3 Wil\n\n116) ts52: Pass\n\twil: the way I see it g2 gets to g3, r1 to gee3, all the ys out of g3 so we can sac for 2 grows get a green factory, catastrophe reds and rebuild them, rinse and repeat as reqd\n\n117) wil: M G2 Wil G3\n\tts52: it seems like a good plan, but I&#39;m not sure you can finish me off without sacrificing yellow and letting me finally get into it. I&#39;m not sure I&#39;ll be able to do anything with it, but I&#39;m still curious.\n\n118) ts52: Pass\n\n119) wil: M Y2 G3 Wil\n\n120) ts52: Pass\n\n121) wil: Move Y2 Wil R3\n\n122) ts52: Pass\n\n123) wil: M R1 Wil Gee3\n\n124) ts52: Pass\n\twil: I don&#39;t think I set up a physical game (to play online)...but I did for this one...\n\tts52: This is definitely the most interesting homeworlds game I&#39;ve ever played.\n\n125) wil: S Y1 G3\nD Y3 Gee3 Y1 Y1\n\twil: Andy and I had a pretty epic game the other night, over two hours, he held the yellows.  I luckily had one yellow star and sacked a blue to convert it to a ship, that changed the whole game an by the end I controlled the yellows. \n\n126) ts52: Pass\n\twil: I need big ships, how many can you spare?\n\tts52: Oooh, sacrificing your own yellow to get to a small system I don&#39;t control. Well done. Pretty sure I&#39;ve got no way out now. I&#39;m happy to concede, but if you feel it&#39;s more satisfying to play it out after all this time, I&#39;m happy for that too. (I know I always prefer to play it out)\n\n127) wil: S G2 G3\nB G2 R3\nB G3 R3\n\twil: I have a long road still of catastrophes and factories.  While I am sure I have a plan to victory, I wouldn&#39;t concede as the chance to capitalize on some error is also great (that is what happened in the game the other night with andy! I was ready to concede Laurie said, well what would be your next move? And the emperor&#39;s advantage collapsed.  Either way is fine, playing it out is riskier for me.  I always prefer a fold before the flop, even if I have aces.\n\twil: My fortress busting siege plan is finally exposed!\n\n128) ts52: Pass\n\twil: I needed a small star that was catastrophe proof, and contained a large ship \n\n129) wil: Move G3 R3 Wil\n\tts52: Fair enough. Let&#39;s play it out! ;)\n\twil: Now I&#39;ll regret it...\n\n130) ts52: Pass\n\n131) wil: M G2 R3 Wil\n\twil: Yeah it is over.,.I&#39;ll accept or trudge on, I think I can avoid mistakes gg!\n\n132) ts52: Pass\n\tts52: Your doomsday apparatus is not yet fully assembled. ;)\n\n133) wil: Move Y3 Wil R3\n\n134) ts52: Pass\n\n135) wil: Sacrifice Y1 Gee3\nDiscover Y3 R3 Y1 Why1\n\n136) ts52: Pass\n\twil: Do I hold the record for forced passes?\n\tts52: Probably\n\n137) wil: M R1 Gee3 G1\nC G1 R\n\twil: Me thinks I blew it!\n\n138) ts52: Build R1 B1\n\n139) wil: D G2 Wil R3 Arr3\n\n140) ts52: Move G3 Ts52 Y1\n\n141) wil: S R2 Wil\nA G3 Y1\nP\n\n142) ts52: Sacrifice G2 B1\nBuild G2 B1\nBuild R1 Ts52\n\twil: Oopsie\n\n143) wil: Trade B2 R2 R3\n\n144) ts52: Move R1 Ts52 Why1\n\n145) wil: D R2 R3 B2 B2\n\n146) ts52: Sacrifice G1 B1\nBuild R2 Why1\n\twil: Somebody fell asleep.at.the wheel\n\n147) wil: B G1 Wil\n\n148) ts52: Move R2 Why1 Gee3\n\n149) wil: Move Y3 Y1 Gee3\n\n150) ts52: Attack Y2 Gee3\n\n151) wil: S R2 B2\nA R2 Gee3\nA Y2 Gee3\n\n152) ts52: Sacrifice G2 B1\nBuild B2 Ts52\nBuild R2 B1\n\n153) wil: B G2 R3\n\twil: Doomsday is doomed, it will either be a hostile takeover by storm resulting in casgrophe and annihilation or the old you take two I&#39;ll take three \n\n154) ts52: Pass\n\tts52: Agreed. It is inevitable now. Good game!\n\n155) wil: S G2 Arr3\nB G2 R3\nB R3 Gee3\n\twil: Whew, wotta battle!  Have you got a medal? Are you in the queue queue to play Andy?\n\tts52: I do, yes. I think I&#39;m number 3. Have you played Andy?\n\n156) ts52: Move B2 Ts52 Y1\n\twil: Cool!  Then you can sign up to commentate during a live online medal match!  And yes, we play regularly...\n\n157) wil: S R2 Gee3\nA B2 Y1\nA R1 Why1\n\tts52: Oooh, I didn&#39;t know that was an option. That sounds like fun!\n\n158) ts52: Move R1 Ts52 G1\n\n159) wil: Sacrifice G2 R3\nBuild G2 Y1\nBuild R2 Why1\n\twil: Curiouser and curiouser\n\n160) ts52: Pass\n\n161) wil: S Y2 R3\nD G1 R3 Y2 Outpost\nM Y2 R3 Outpost\n\twil: 2 moves to check mate, 3 to finish\n\twil: oops, 3 and 4 rather...\n\n162) ts52: Pass\n\n163) wil: S G2 R3\nB G2 Y1\nB R3 Why1\n\n164) ts52: Pass\n\n165) wil: M R3 Why1 Ts52\n\twil: This game can&#39;t end...\n\n166) ts52: Attack R3 Ts52\n\n167) wil: S Y3 Gee3\nM G3 Y1 Ts52\nM R2 Why1 Ts52\nM R1 Why1 Ts52\nC Ts52 R\n\twil: I end up with a choice of two endings...\n\n168) ts52: Trade B3 Y3 G1\n\n169) wil: S R3 Gee3\nA B1 Ts52\nP\nP\n\twil: 85 moves in wil graciously allows him a yellow ship\n\n\tts52: Finally! ;)\n\twil: Helluva game, I didn&#39;t try to draw it out, it was a challenge\n\tts52: Indeed. Good game, very well played!\n\nHomeworlds Online (SDG# 35895)\nStarted: 2020.2.10, Ended: 2020.5.1\nParticipants: Simon (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Simon: Homeworld R3 B1 G3\n\tSimon: This is for the Great Homeworlds Tournament 2019, have fun!\n\n3) wil: B G1 Wil\n\tSimon: You moved first, please report the game&#39;s start at:\r\nhttps://jpeterbaker.github.io/homeworlds/site/tournament/links2019.html\n\twil: Would you mind handling that?\n\n4) Simon: Build G1 Simon\n\tSimon: Done, game is registered for the tourney!\n\n5) wil: T G1 B1 Wil\n\twil: Thx, good luck!\n\n6) Simon: Trade G1 B1 Simon\n\tSimon: You too :)\n\n7) wil: B B2 Wil\n\n8) Simon: Build B2 Simon\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Simon: Trade B2 Y2 Simon\n\n11) wil: B G1 Wil\n\n12) Simon: Build B2 Simon\n\n13) wil: S G3 Wil\nB G1 Wil\nB B3 Wil\nB B3 Y3\n\n14) Simon: Discover B1 Simon R2 R2\n\twil: That was a first for me.\n\n15) wil: T B2 Y2 Wil\n\twil: And! It was a mistake!\n\n16) Simon: Build G1 Simon\n\n17) wil: M B3 Y3 R2\n\n18) Simon: Sacrifice Y2 Simon\nDiscover B1 R2 Y1 Y1\nDiscover B2 Simon G2 G2\n\n19) wil: T B3 G3 Wil\n\n20) Simon: Build G2 Simon\n\twil: Must take any stars that use my nomenclature\r\n\n\tSimon: It&#39;ll be sac y2. The hard choice is goal star size. Rare case where g1 would be ideal but none exist!\n\n21) wil: D G1 Wil Y3 Why3\n\n22) Simon: Sacrifice G2 Simon\nBuild B2 G2\nBuild B3 Y1\n\n23) wil: S G1 Wil\nB B3 Y3\n\n24) Simon: Trade B1 R1 Y1\n\n25) wil: T B1 R1 Y3\n\n26) Simon: Trade B2 G2 G2\n\n27) wil: B G1 Wil\n\n28) Simon: Sacrifice G2 G2\nBuild B1 Y1\nBuild R1 Y1\n\n29) wil: B G2 Wil\n\twil: Starting an arms race?  It was all so peaceful...\n\n30) Simon: Trade B3 G3 Y1\n\n31) wil: S G3 Wil\nB G2 Why3\nB G3 Wil\nB Y1 Wil\n\n32) Simon: Trade B2 Y2 G2\n\n33) wil: D Y2 Wil B3 B3\n\n34) Simon: Discover R1 Y1 Y3 Y3a\n\n35) wil: S G1 Wil\nB Y2 B3\n\n36) Simon: Build R2 Y1\n\n37) wil: D G1 Why3 B2 B2\n\n38) Simon: Sacrifice G1 Simon\nBuild G1 Y1\n\n39) wil: S G3 Wil\nB G1 Why3\nB B1 Y3\nB G3 Wil\n\n40) Simon: Sacrifice G3 Y1\nBuild G3 Y1\nBuild R2 Y3a\nBuild R3 Y3a\n\n41) wil: S G3 Wil\nB G3 Wil\nB B2 R2\nB R3 Y3\n\n42) Simon: Move R3 Y3a G2\n\n43) wil: M G1 Why3 R2\n\n44) Simon: Move R3 G2 B3\n\n45) wil: M Y2 B3 R2\n\n46) Simon: Attack Y2 B3\n\n47) wil: S G2 Why3\nB G2 R2\nB Y3 R2\n\tSimon: May the woodpushing begin.\n\n48) Simon: Move Y2 G2 Simon\n\n49) wil: M G1 R2 Simon\n\n50) Simon: Sacrifice Y2 B3\nMove R3 B3 B2\nMove R3 B2 Simon\n\twil: You woodchucks quit chucking my wood!\n\n51) wil: S G3 Wil\nB G2 Simon\nB Y2 Wil\nB G3 Wil\n\n52) Simon: Move R1 Y1 R2\n\twil: Even trade...\n\n53) wil: S Y3 R2\nM B3 R2 Y3a\nM G2 R2 Y3\nD Y2 R2 B3 B3\n\n54) Simon: Build Y3 Simon\n\tSimon: Didn&#39;t see the mate thread. Then the capture was a mistake. The alternatives weren&#39;t enticing either, donating a r2 to prevent star conversion, but probably still better than this.\n\n55) wil: S G2 Wil\nB G2 Simon\nC Simon G\nB G1 Wil\n\twil: Just window.shopping...\n\n56) Simon: Trade R3 G3 Simon\n\n57) wil: S R1 Y3\nA R2 Y3a\n\n58) Simon: Move Y3 Simon R2\n\n59) wil: A R1 R2\n\n60) Simon: Attack R1 R2\n\n61) wil: A R1 Y3a\n\n62) Simon: Attack B2 R2\n\n63) wil: S Y2 Wil\nM R1 Y3a R2\nM R2 Y3a R2\nC R2 R\n\n64) Simon: Sacrifice G3 Simon\nBuild Y2 Simon\nBuild Y3 Simon\nBuild R1 Y1\n\n65) wil: T B3 G3 Y3a\n\n66) Simon: Move G1 Y1 Y3a\n\tSimon: 403 Forbidden\n\n67) wil: S G3 Wil\nB G2 B2\nB G2 Y3\nB G3 Wil\n\n68) Simon: Discover Y2 Simon B2 B2a\n\tSimon: Sat at this position for at least an hour. I shunned the seemingly-obvious capture, yet it came out best.\n\n69) wil: T B1 R1 Y3\n\n70) Simon: Move G3 Y1 B3\n\n71) wil: M R3 Y3 B2a\n\n72) Simon: Move Y2 B2a B3\n\n73) wil: M Y2 B3 B2a\n\n74) Simon: Move R1 Y1 B3\n\n75) wil: S G3 Wil\nB G3 Wil\nB R1 Y3\nB R2 B2a\n\n76) Simon: Sacrifice G1 Y3a\nBuild G1 B3\n\n77) wil: S G3 Y3a\nB G3 Y3\nB Y3 B2a\nB B1 Y3\n\n78) Simon: Discover Y2 Simon R2 R2\n\n79) wil: T G3 R3 Y3\n\n80) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild B3 Y1\nPass\n\n81) wil: M G2 Y3 B2a\n\n82) Simon: Discover B3 Y1 G3 G3\n\n83) wil: M R3 Y3 Y1\n\n84) Simon: Move R2 Y1 G3\n\n85) wil: A B1 Y1\n\n86) Simon: Move G3 B3 Wil\n\n87) wil: S Y2 B2a\nM G2 Y3 Wil\nM B3 Y3 Wil\nC Wil G\n\n88) Simon: Sacrifice G1 B3\nBuild Y2 Simon\n\n89) wil: B G1 B2 A\n\n90) Simon: Trade Y2 G2 Simon\n\n91) wil: B Y2 B2a\n\n92) Simon: Move R1 B3 R2\n\n93) wil: T B3 G3 Wil\n\n94) Simon: Build B3 G3\n\twil: Nice move.\n\n95) wil: B G1 B2a\n\n96) Simon: Discover Y2 R2 G3 G3a\n\n97) wil: M B1 Y3 Y1\n\n98) Simon: Pass\n\n99) wil: M Y3 B2a B3\n\n100) Simon: Move Y2 B3 Wil\n\n101) wil: S R1 Y3\nA Y2 Wil\n\n102) Simon: Move Y2 G3a Wil\nCatastrophe Wil Y\n\n103) wil: S G2 B2a\nB G2 Wil\nB G3 B2a\n\n104) Simon: Build Y1 Simon\n\n105) wil: Sacrifice Y3 B3\nMove G3 B2a Simon\nMove R3 B2a Simon\nMove G3 Wil Simon\n\n\tSimon: gg!\n\tSimon: I&#39;ve reported this as your tournament win. Normally, the winner should report games; please remember it for your remaining tournament games :) Good luck!\n\twil: Oops, thanx\n\twil: Ya sent a request to challenge Andy yet?\n\tSimon: No, I haven&#39;t challenged Andy yet. Does he still play here on SDG? Or does he prefer another way?\n\twil: Working on playing live games via pandemitech\n\nHomeworlds Online (SDG# 35984)\nVariants: &quot;Hard time&quot;\nStarted: 2020.2.10, Ended: 2020.2.24\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: Hi Wil! How have you been?\n\n2) wil: H B1 Y3 G3\n\n3) Babamots: Build G1 Babamots\n\twil: I been better, but getting better\n\n4) wil: B G1 Wil\n\tBabamots: I&#39;m glad you&#39;re up to playing again!\n\twil: Should this be a tourney game?\n\twil: \n\twil: Lol, we will see for how long!\n\n5) Babamots: Trade G1 Y1 Babamots\n\tBabamots: You and I already played for the tournament or I&#39;d say yes.\n\n6) wil: T G1 B1 Wil\n\n7) Babamots: Build Y1 Babamots\n\twil: Lol, if I only had a brain\n\n8) wil: B B1 Wil\n\n9) Babamots: Build Y1 Babamots\n\n10) wil: D B1 Wil Y2 Y2\n\n11) Babamots: Discover Y1 Babamots G3 Risa\n\n12) wil: D B1 Y2 Y3 Y3\n\n13) Babamots: Build Y2 Babamots\n\n14) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n15) Babamots: Trade Y2 R2 Babamots\n\tBabamots: I was considering some much wilder options, but this is probably safest.\n\n16) wil: S B2 Y3\nT B2 R2 Y3\nT B3 G3 Wil\n\n17) Babamots: Trade R2 B2 Babamots\n\n18) wil: B G1 Wil\n\n19) Babamots: Move B2 Babamots Risa\n\n20) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n21) Babamots: Build B3 Risa\n\n22) wil: S B2 Y3\nT B3 Y3 Y3\nT B3 G3 Wil\n\n23) Babamots: Build Y2 Risa\n\n24) wil: D Y3 Y3 G2 G2\n\n25) Babamots: Trade B2 R2 Risa\n\n26) wil: B Y2 G2\n\n27) Babamots: Build Y2 Babamots\n\n28) wil: D Y2 G2 R3 R3\n\n29) Babamots: Move Y1 Babamots Y3\n\n30) wil: M B1 Y3 G2\n\n31) Babamots: Discover Y1 Y3 G2 Orion\n\n32) wil: B B2 G2\n\n33) Babamots: Build B2 Risa\n\n34) wil: M B1 G2 Risa\n\n35) Babamots: Sacrifice Y2 Risa\nMove B3 Risa Orion\nMove B3 Orion Wil\n\n36) wil: S G3 Wil\nB B3 Wil\nB B3 G2\nB Y2 R3\nC Wil B\n\n37) Babamots: Discover Y1 Risa G2 Betazed\n\twil: That looks like the end\n\n38) wil: S Y3 G2\nM B3 G2 Wil\nM Y2 R3 Babamots\nM Y2 R3 Babamots\nC Babamots Y\n\tBabamots: I think this will be the end, but sometimes I get surprised by a defense.\n\n39) Babamots: Trade B2 Y2 Risa\n\n40) wil: T B2 Y2 G2\n\n41) Babamots: Build Y1 Orion\n\n42) wil: B G1 Wil\n\n43) Babamots: Sacrifice Y2 Risa\nMove Y1 Orion Wil\nMove Y1 Orion Wil\n\n44) wil: S Y2 G2\nM G1 Wil Babamots\nM G1 Wil Babamots\n\twil: I&#39;m a fish outta water.flopping around in death throws\n\n45) Babamots: Move Y1 Betazed Wil\nCatastrophe Wil Y\n\tBabamots: I&#39;m finishing up as quickly as I can :-).\n\n\twil: I&#39;m gonna make it look close...\n\tBabamots: GG! Now I&#39;d better hurry and challenge D5PA. Maybe I can hit the top of the ladder :-).\n\nHomeworlds Online (SDG# 35987)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.12, Ended: 2020.2.12\nParticipants: Babamots (S), Pib (N)\nWinner: Babamots\n\n1) Pib: Homeworld G2 B1 Y3\n\n2) Babamots: Homeworld B3 G3 Y3 *\n\n3) Pib: Build Y1 Pib\n\n4) Babamots: Build Y1 Babamots\n\n5) Pib: Pass\n\n6) Babamots: Build Y1 Babamots\n\tBabamots: If anyone is watching, we are testing out how SDG treats certain rules, like whether you can abandon your homeworld via catastrophe.\n\n7) Pib: Pass\n\n8) Babamots: Move Y1 Babamots Pib\n\tBabamots: At this point in the game, I attempted the following move:\r\n\r\nsacrifice y3 Babamots\r\nmove y1 Babamots Pib\r\nmove y1 Babamots Pib\r\npass\r\ncatastrophe Pib y\r\n\r\nI was directed to an page reporting a divide by zero error.\n\n9) Pib: Pass\n\n10) Babamots: Discover Y1 Pib R3 Kronos\n\n11) Pib: Move Y1 Pib Babamots\n\n12) Babamots: Pass\n\n13) Pib: Move Y3 Pib Babamots\n\tPib: At this point I tried the move:\r\n\r\nmove y3 Pib Babamots\r\ncatastrophe Babamots y\r\n\r\nI was directed to a page with an error message including:\r\n\r\nIllegal modulus zero at /home/html/games/lib/Homeworlds/Pos.pm line 886\n\tBabamots: Modulus zero, that&#39;s what I meant before.\n\tPib: Apparently, SDG will not prevent you from simply moving your last ship out of your home system.\n\n\nHomeworlds Online (SDG# 35988)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.12, Ended: 2020.2.12\nParticipants: Babamots (S), Pib (N)\nWinner: Babamots\n\n1) Pib: Homeworld Y2 G1 B3\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) Pib: Discover B3 Pib R3 Kronos\n\tBabamots: If anyone was watching, this was a test of circumstances under which SDG will let you abandon your homeworld. I haven&#39;t found any conditions that will cause SDG to prevent you from killing yourself.\n\tDraw5PlayAll: Have you tried sacrificing your last ship and then not returning? Have you tried causing a catastrophe that (1) destroys all your ships, (2) surrenders control to your opponent, or (3) destroys your own last star?\n\tBabamots: I should check those. Thanks for the ideas! So far, SDG has allowed every type of suicide.\n\n\nHomeworlds Online (SDG# 35994)\nStarted: 2020.2.13, Ended: 2020.3.1\nParticipants: Draw5PlayAll (S), DodoBirb (N)\nWinner: Draw5PlayAll\n\n1) DodoBirb: Homeworld B1 Y2 G3\n\tDodoBirb: Good Luck! I assume this is for the Tournament?\r\n\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\n3) DodoBirb: Build G1 Dodobirb\n\tDraw5PlayAll: Absolutely\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) DodoBirb: Build G1 Dodobirb\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) DodoBirb: Trade G3 B3 Dodobirb\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) DodoBirb: Build B2 Dodobirb\n\n10) Draw5PlayAll: Sacrifice Y3 Draw5playall\nDiscover B1 Draw5playall Y2 Temp\nDiscover B1 Temp Y3 Orary\nMove B1 Orary Dodobirb\nCatastrophe Dodobirb Blue\n\n11) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Yikes, I saw that move but thought to myself, &quot;why would he do that?&quot;\r\n\n\n12) Draw5PlayAll: Build B1 Draw5playall\n\n13) DodoBirb: Discover G1 Dodobirb B1 Newhome\n\tDraw5PlayAll: I assumed that it was worth it to deny you access to blue.\n\n14) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n15) DodoBirb: Build G2 Newhome\n\n16) Draw5PlayAll: Build B2 Draw5playall\n\n17) DodoBirb: Trade G2 Y2 Newhome\n\n18) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n19) DodoBirb: Move Y2 Newhome Dodobirb\n\tDodoBirb: GG, quick game lol\n\n20) Draw5PlayAll: Move R2 Draw5playall Dodobirb\n\n21) DodoBirb: Pass\n\n22) Draw5PlayAll: Attack Y2 Dodobirb\n\n23) DodoBirb: Pass\n\n24) Draw5PlayAll: Sacrifice R2 Dodobirb\nAttack G1 Dodobirb\nAttack G1 Dodobirb\n\tDraw5PlayAll: I wonder if this is the shortest tournament game that was not terminated due to time.\n\n\nHomeworlds Online (SDG# 35977)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.14, Ended: 2020.2.15\nParticipants: Babamots (S), eliscinsky (N)\nWinner: Babamots\n\n1) eliscinsky: Homeworld B1 R2 G3\n\teliscinsky: Greetings Babamots! Hope all is well for you. \n\n2) Babamots: Homeworld G3 B1 B3 *\n\teliscinsky: I know this is NOT a GHWT19 game.  Just for fun!\n\teliscinsky: eliscinsky\r\nBabamots\r\n\n\tBabamots: Just for fun confirmed!\r\n\r\nAny particular reason to put our names in the chat? It looks like like part of a plan of some kind.\n\n3) eliscinsky: Build G1 Eliscinsky\n\tBabamots: Do you know how to deal with the instafreeze?\n\teliscinsky: LOL My mistake I usually put names of systems in my notes so I can copy &amp; paste easier.\r\n\r\nAs for the instafreeze ... not yet :/\n\n4) Babamots: Build B1 Babamots\n\n5) eliscinsky: Trade G3 B3 Eliscinsky\n\tBabamots: I&#39;ve taken the last small blue and you&#39;re in danger of never being able to get a blue ship. With a monopoly, people can also repeatedly build a large ship, trade it away, build large, etc.\r\n\r\nYou may want to trade your g3 for a b3 to keep me from running away with all the blue. That&#39;s my usual defense.\n\n6) Babamots: Trade B3 Y3 Babamots\n\teliscinsky: Thanks.  I was thinking of going after yellow, but I realize that w/ so much blue I couldn&#39;t truly keep you from anything. At least not at this point in the game.\n\n7) eliscinsky: B B2 Eliscinsky\n\n8) Babamots: Build B2 Babamots\n\n9) eliscinsky: T B2 Y2 Eliscinsky\n\n10) Babamots: Trade B2 R2 Babamots\n\n11) eliscinsky: B B2 Eliscinsky\n\n12) Babamots: Sacrifice Y3 Babamots\nDiscover B1 Babamots R2 Remus\nDiscover B1 Remus R3 Chalna\nMove B1 Chalna Eliscinsky\nCatastrophe Eliscinsky B\n\n13) eliscinsky: Build G1 Eliscinsky\n\tBabamots: No clue if this is good for me or not, but it&#39;s pretty interesting. Notice the hyperspace bypass: our homeworlds are connected now.\n\teliscinsky: OH SNAP!! Should have seen that coming. Duh!\r\n\r\nSeriously I refreshed my screen and was like ... &quot;WTF is wrong w/ this display&quot; then I read the actions. OMG you rock! I love learning from a master!\n\n14) Babamots: Build R1 Babamots\n\teliscinsky: But w/out conversion tech I don&#39;t see how I can overtake you.  Guess we&#39;ll see.\n\tBabamots: You have a ship advantage, but I&#39;m hoping that I can finish this fairly quickly. Or I may have made the mistake they warn about in the rules: &quot;Beware the Incomplete Battle-Plan.&quot;\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) Babamots: Build R1 Babamots\n\n17) eliscinsky: Discover G1 Eliscinsky Y3 Oldyeller\n\n18) Babamots: Trade R2 Y2 Babamots\n\n19) eliscinsky: Build G2 Eliscinsky\n\n20) Babamots: Build R1 Babamots\n\n21) eliscinsky: Move G1 Eliscinsky Babamots\n\n22) Babamots: Build Y1 Babamots\n\n23) eliscinsky: M G1 Eliscinsky Babamots\n\n24) Babamots: Move R1 Babamots Eliscinsky\n\n25) eliscinsky: B G2 Babamots\nC Babamots G\n\tBabamots: Red alert :-)\r\n\r\nI&#39;m afraid it&#39;s over, but as a quick last observation, you could have built a new green ship in my home instead of moving one of your old ones. If the game weren&#39;t so close to over, it would have saved you a ship.\n\n26) Babamots: Sacrifice Y2 Babamots\nMove R1 Babamots Eliscinsky\nMove R1 Babamots Eliscinsky\nCatastrophe Eliscinsky R\n\teliscinsky: Yeah, I&#39;ve made a few mistakes \n\tDraw5PlayAll: 4 pieces on the board.\n\n\nHomeworlds Online (SDG# 35790)\nStarted: 2020.2.16, Ended: 2020.2.27\nParticipants: nycavri (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld Y1 B2 G3\n\tnycavri: Confirming a tournament game.  TaGG!\n\teliscinsky: Agreed for the Great Homeworlds Tournament 2019\r\nGL / HF!\n\n2) nycavri: Homeworld B1 Y3 G3\n\teliscinsky: I&#39;ll submit the start form :)\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) nycavri: Build G1 Nycavri\n\n5) eliscinsky: Trade G1 B1 Eliscinsky\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) nycavri: Build G1 Nycavri\n\n9) eliscinsky: Trade G1 Y1 Eliscinsky\n\n10) nycavri: Build Y2 Nycavri\n\n11) eliscinsky: Build Y2 Eliscinsky\n\n12) nycavri: Discover Y1 Nycavri Y2 Deacon\n\n13) eliscinsky: Discover Y1 Eliscinsky G3 Earth\n\n14) nycavri: Trade G1 R1 Nycavri\n\n15) eliscinsky: B Y3 Earth\n\n16) nycavri: Trade Y2 R2 Nycavri\n\n17) eliscinsky: Build Y2 Eliscinsky\n\n18) nycavri: Build G1 Nycavri\n\n19) eliscinsky: Trade Y2 B2 Eliscinsky\n\n20) nycavri: Move Y1 Deacon Earth\n\n21) eliscinsky: Discover Y1 Earth G2 Earth2\n\n22) nycavri: Move R2 Nycavri Earth2\n\n23) eliscinsky: Trade B1 R1 Eliscinsky\n\n24) nycavri: Attack Y1 Earth2\n\n25) eliscinsky: Move Y3 Earth Earth2\n\n26) nycavri: Move R2 Earth2 Earth\n\n27) eliscinsky: Build R1 Eliscinsky\n\n28) nycavri: Build R2 Earth\n\n29) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R1 Eliscinsky Earth\nMove R1 Eliscinsky Earth\nCatastrophe Earth R\n\n30) nycavri: Move Y1 Earth2 Earth\n\n31) eliscinsky: Build G1 Eliscinsky\n\n32) nycavri: Discover G1 Nycavri Y2 May\n\n33) eliscinsky: Trade G1 R1 Eliscinsky\n\n34) nycavri: Build Y2 Earth\n\n35) eliscinsky: Trade B2 R2 Eliscinsky\n\n36) nycavri: Build G1 Nycavri\n\n37) eliscinsky: Discover R2 Eliscinsky Y3 Sol\n\n38) nycavri: Trade G1 B1 Nycavri\n\n39) eliscinsky: Move Y3 Earth2 Earth\nCatastrophe Earth Y\n\n40) nycavri: Move B1 Nycavri May\n\n41) eliscinsky: Move R2 Sol May\n\n42) nycavri: Discover G1 May B3 Mercury\n\n43) eliscinsky: Attack B1 May\n\n44) nycavri: Trade G1 Y1 Mercury\n\n45) eliscinsky: Trade B1 G1 May\n\n46) nycavri: Build G1 Nycavri\n\n47) eliscinsky: Build G1 May\n\n48) nycavri: Discover G1 Nycavri Y2 Taylor\n\n49) eliscinsky: Build G2 May\n\n50) nycavri: Build G2 Taylor\n\n51) eliscinsky: Build G2 Eliscinsky\n\n52) nycavri: Move G2 Taylor Mercury\n\n53) eliscinsky: Move G1 May Nycavri\n\n54) nycavri: Attack G1 Nycavri\n\n55) eliscinsky: Move G1 May Nycavri\n\n56) nycavri: Trade G3 R3 Nycavri\n\n57) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild G3 Nycavri\nBuild G3 May\n\n58) nycavri: Move G1 Taylor Nycavri\nCatastrophe Nycavri G\n\n59) eliscinsky: Trade G2 Y2 Eliscinsky\n\n60) nycavri: Build Y1 Mercury\n\n61) eliscinsky: B R1 May\n\n62) nycavri: Move Y1 Mercury Eliscinsky\n\n63) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R1 May Nycavri\nMove R2 May Nycavri\nCatastrophe Nycavri R\n\n\teliscinsky: Good game. Thanks.  See ya next tourney!\n\nHomeworlds Online (SDG# 36009)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.17, Ended: 2020.2.19\nParticipants: looneykristin (S), Laurie_Menke (N)\nWinner: looneykristin\n\n1) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: Hi Mark!  (Note: This is Laurie, but it&#39;s not Kristin. Mark Streed is borrowing her account to give Homeworlds a try!)\n\n2) looneykristin: Homeworld Y3 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tlooneykristin: Hey Laurie, are you around? Can you jump on Skype and chat as well? \n\tLaurie_Menke: Sure can... \n\n4) looneykristin: Build G1 Looneykristin\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) looneykristin: Trade G1 R1 Looneykristin\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) looneykristin: Build G1 Looneykristin\n\n9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n10) looneykristin: Discover G1 Looneykristin Y1 Marksworld\n\n11) Laurie_Menke: Move G1 Yellow Marksworld\n\n12) looneykristin: Sacrifice R1 Looneykristin\nAttack G1 Marksworld\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\n14) looneykristin: Build G2 Marksworld\n\n15) Laurie_Menke: Discover G1 Laurie_menke Y2 Sunshine\n\n16) looneykristin: Build G2 Looneykristin\n\n17) Laurie_Menke: Move G1 Sunshine Marksworld\nCatastrophe Marksworld G\n\n18) looneykristin: Build G1 Looneykristin\n\n19) Laurie_Menke: Build R1 Laurie_menke\n\n20) looneykristin: Trade G1 R1 Looneykristin\n\n21) Laurie_Menke: Discover R1 Laurie_menke Y2 Lemon\n\n22) looneykristin: Discover R1 Looneykristin Y1 Whoareyou\n\n23) Laurie_Menke: Move R1 Lemon Whoareyou\n\n24) looneykristin: Attack R1 Whoareyou\n\n25) Laurie_Menke: Build R2 Laurie_menke\n\n26) looneykristin: Move G2 Looneykristin Whoareyou\n\n\tLaurie_Menke: OK... we got what we needed out of this intro, so I&#39;m just going to end the game... thanks for giving Homeworlds a try, Mark!\n\nHomeworlds Online (SDG# 36010)\nStarted: 2020.2.18, Ended: 2020.2.27\nParticipants: amoscai (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld B2 Y3 G3\n\n2) amoscai: Homeworld R1 B2 G3\n\tzweiterlinde: Thanks for teeing this up again! Last game was a nice learning game for me.\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\n4) amoscai: Build G1 Amoscai\n\tamoscai: (: my pleasure\n\n5) zweiterlinde: Discover G1 Zweiterlinde B1 Ada\n\n6) amoscai: Trade G1 Y1 Amoscai\n\n7) zweiterlinde: Build G1 Zweiterlinde\n\n8) amoscai: Build G1 Amoscai\n\n9) zweiterlinde: Build G2 Ada\n\n10) amoscai: Discover G1 Amoscai R3 Beta\n\n11) zweiterlinde: Discover G1 Zweiterlinde B1 Cobol\n\n12) amoscai: Build G2 Amoscai\n\n13) zweiterlinde: Trade G2 Y2 Ada\n\n14) amoscai: Trade G2 B2 Amoscai\n\n15) zweiterlinde: Move Y2 Ada Beta\n\n16) amoscai: Build G2 Beta\n\n17) zweiterlinde: Attack G2 Beta\n\n18) amoscai: Build G2 Amoscai\n\tamoscai: Ooo. I just learnt that anyone can use the star power. Makes sense. \n\n19) zweiterlinde: Attack G1 Beta\n\tzweiterlinde: I was a little confused at that, makes sense now!\n\n20) amoscai: Move G3 Amoscai Beta\n\n21) zweiterlinde: Move Y2 Beta Ada\n\n22) amoscai: Attack G2 Beta\n\n23) zweiterlinde: Move G1 Ada Beta\nCatastrophe Beta Green\n\n24) amoscai: Build G1 Amoscai\n\n25) zweiterlinde: Build G1 Cobol\n\n26) amoscai: Discover G1 Amoscai Y3 Bolt\n\n27) zweiterlinde: Trade G1 B1 Cobol\n\n28) amoscai: Build B3 Amoscai\n\n29) zweiterlinde: Sacrifice Y2 Ada\nMove B1 Cobol Bolt\nMove B1 Bolt Amoscai\nCatastrophe Amoscai Blue\n\n30) amoscai: Build G1 Bolt\n\n31) zweiterlinde: Build G2 Zweiterlinde\n\n32) amoscai: Move G1 Bolt Cobol\n\n33) zweiterlinde: Trade G3 R3 Zweiterlinde\n\n\tamoscai: Lost I think. I think I&#39;m slowly learning more. \n\tzweiterlinde: Gg!\n\nHomeworlds Online (SDG# 35973)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.18, Ended: 2020.3.7\nParticipants: Trydnt (S), disaac (N)\nWinner: Trydnt\n\n1) disaac: Homeworld B3 Y1 G3\n\n2) Trydnt: Homeworld Y2 B1 G3\n\n3) disaac: Build G1 Disaac\n\n4) Trydnt: Build G1 Trydnt\n\n5) disaac: Trade G1 B1 Disaac\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) disaac: Build G1 Disaac\n\n8) Trydnt: Build Y1 Trydnt\n\n9) disaac: Build B1 Disaac\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) disaac: Discover B1 Disaac G2 Face\n\n12) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y2 G3\nBuild Y3 Trydnt\n\n13) disaac: Build B2 Face\n\n14) Trydnt: Trade Y3 G3 Trydnt\n\n15) disaac: Build B2 Disaac\n\n16) Trydnt: Build Y3 Trydnt\n\n17) disaac: Discover B2 Disaac G2 Cloud\n\n18) Trydnt: Discover Y3 Trydnt B3 B3\n\n19) disaac: Sacrifice G3 Disaac\nBuild B2 Cloud\nBuild B3 Disaac\nBuild G1 Disaac\n\n20) Trydnt: Build Y3 Trydnt\n\n21) disaac: Trade B3 Y3 Disaac\n\n22) Trydnt: Discover Y3 Trydnt B3 Be3\n\n23) disaac: Move G1 Disaac Face\n\n24) Trydnt: Trade Y3 G3 B3\n\n25) disaac: Build Y3 Disaac\n\n26) Trydnt: Sacrifice Y2 G3\nMove Y1 G3 Face\nMove Y1 Face Disaac\nCatastrophe Disaac Y\n\n27) disaac: Trade G1 Y1 Face\n\n28) Trydnt: Build G1 Trydnt\n\n29) disaac: Trade B2 Y2 Cloud\n\n30) Trydnt: Trade G1 R1 Trydnt\n\n31) disaac: Trade B2 R2 Face\n\n32) Trydnt: Sacrifice Y2 G3\nMove Y3 Be3 Cloud\nMove Y3 Cloud Disaac\n\n33) disaac: Sacrifice Y2 Cloud\nMove B1 Disaac Trydnt\nMove Y1 Face Disaac\n\n34) Trydnt: Attack B1 Trydnt\n\n35) disaac: Build B2 Face\n\n36) Trydnt: Trade G3 R3 B3\n\n37) disaac: Build Y1 Disaac\n\n38) Trydnt: Sacrifice R3 B3\nAttack Y1 Disaac\nAttack Y1 Disaac\nAttack G1 Disaac\n\n\tdisaac: Thank you for the game. \n\tTrydnt: anytime :)\n\nHomeworlds Online (SDG# 35995)\nStarted: 2020.2.18, Ended: 2020.2.24\nParticipants: MrStickman (S), randrews (N)\nWinner: MrStickman\n\n1) randrews: Homeworld G1 B2 Y3\n\tMrStickman: 92 messages, whew.\n\n2) MrStickman: Homeworld B2 Y3 G3\n\n3) randrews: Build Y1 Randrews\n\n4) MrStickman: Build G1 Mrstickman\n\n5) randrews: Discover Y1 Randrews G3 Greenie\n\n6) MrStickman: Build G1 Mrstickman\n\n7) randrews: Build Y1 Randrews\n\n8) MrStickman: Discover G1 Mrstickman B1 Lorem\n\n9) randrews: Trade Y1 B1 Randrews\n\n10) MrStickman: Build G2 Mrstickman\n\n11) randrews: Build Y1 Randrews\n\n12) MrStickman: Discover G1 Mrstickman Y1 Ipsum\n\n13) randrews: Move B1 Randrews Greenie\n\n14) MrStickman: Sacrifice G3 Mrstickman\nBuild G2 Ipsum\nBuild G2 Lorem\nBuild G3 Mrstickman\n\n15) randrews: Discover Y1 Randrews G3 Nope\n\n16) MrStickman: Trade G3 R3 Mrstickman\n\n17) randrews: Build Y2 Greenie\n\n18) MrStickman: Build G3 Mrstickman\n\n19) randrews: Build Y2 Greenie\n\n20) MrStickman: Trade G3 R3 Mrstickman\n\n21) randrews: Trade Y3 G3 Randrews\n\n22) MrStickman: Move G2 Ipsum Greenie\n\n23) randrews: Trade Y2 R2 Greenie\n\n24) MrStickman: Sacrifice R3 Mrstickman\nAttack R2 Greenie\nAttack Y2 Greenie\nAttack Y1 Greenie\n\n25) randrews: Build B1 Greenie\n\n26) MrStickman: Move G2 Greenie Randrews\n\n27) randrews: Trade G3 R3 Randrews\n\n28) MrStickman: Sacrifice G2 Lorem\nBuild G2 Randrews\nBuild G3 Randrews\nCatastrophe Randrews Green\n\n29) randrews: Build B2 Greenie\n\n30) MrStickman: Attack B2N Greenie\n\n31) randrews: Build B3 Greenie\nCatastrophe Greenie Blue\n\n32) MrStickman: Build G1 Lorem\n\n33) randrews: Build Y2 Nope\n\n34) MrStickman: Build G2 Ipsum\n\n35) randrews: Sacrifice Y1 Nope\nMove Y2 Nope Randrews\n\n36) MrStickman: Build G2 Lorem\n\n37) randrews: Move R3 Randrews Ipsum\n\n38) MrStickman: Move R2 Greenie Randrews\n\n39) randrews: Move R3 Ipsum Randrews\n\n40) MrStickman: Sacrifice G2 Lorem\nBuild R1 Randrews\nBuild R1 Randrews\nCatastrophe Randrews Red\n\n41) randrews: Trade Y2 G2 Randrews\n\n42) MrStickman: Move G2 Ipsum Randrews\n\n43) randrews: Trade G2 R2 Randrews\n\n44) MrStickman: Sacrifice R3 Mrstickman\nAttack R2 Randrews\nPass\nPass\n\n\nHomeworlds Online (SDG# 35975)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.2.18, Ended: 2020.2.25\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) eliscinsky: Homeworld G1 Y3 B3\n\n3) wil: B G1 Wil\n\teliscinsky: Hi Wil! I&#39;m looking forward to learning something new. GL/HF\n\twil: Pluto is no longer a planet!\n\n4) eliscinsky: B B1 Eliscinsky\n\twil: Don&#39;t let me control construction!\n\n5) wil: B G1 Wil\n\teliscinsky: Oh, I&#39;ve got plans, bwahahahha!\n\teliscinsky: Not that any of them actually work, mind you. LOL\n\n6) eliscinsky: Build B1 Eliscinsky\n\n7) wil: D G1 Wil B3 B3\n\n8) eliscinsky: Discover B1 Eliscinsky G2 Lake\n\n9) wil: S G3 Wil\nB G2 B3\nB G2 B3\nB G3 Wil\n\n10) eliscinsky: Trade B3 G3 Eliscinsky\n\n11) wil: B G3 Wil\n\n12) eliscinsky: Build B2 Eliscinsky\n\n13) wil: T G2 Y2 B3\n\n14) eliscinsky: Sacrifice G3 Eliscinsky\nBuild B2 Lake\nBuild B2 Lake\nBuild B3 Eliscinsky\n\n15) wil: D G3 Wil B3 Be3\n\n16) eliscinsky: T B3 G3 Eliscinsky\n\n17) wil: T G3 B3 Be3\n\n18) eliscinsky: Trade B2 Y2 Lake\n\n19) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB G3 B3\n\n20) eliscinsky: Build B2 Lake\n\teliscinsky: Interesting: I&#39;m seeing how having a green as a star is more of a hindrance than a benefit.\n\n21) wil: T G3 Y3 B3\n\n22) eliscinsky: Trade B2 R2 Lake\n\twil: Eliminates factory in he and can be dangerous\n\n23) wil: T G2 R2 Wil\n\n24) eliscinsky: Discover B2 Lake Y3 Sol\n\n25) wil: M Y3 B3 Lake\n\n26) eliscinsky: Sacrifice B2 Sol\nTrade B1 Y1 Lake\nTrade B1 Y1 Eliscinsky\n\n27) wil: S R2 Wil\nA R2 Lake\nA Y2 Lake\n\n28) eliscinsky: B Y1 Lake\nC Lake Y\n\n29) wil: S Y2 B3\nM B3 Be3 Lake\nM B3 Lake Eliscinsky\n\n30) eliscinsky: T B2 R2 Eliscinsky\n\n31) wil: S R2 Lake\nA G3 Eliscinsky\nA R2 Eliscinsky\n\teliscinsky: Good game wil. I see my end in sight.\n\n32) eliscinsky: Build Y1 Eliscinsky\n\n33) wil: S B3 Eliscinsky\nT R2 Y2 Eliscinsky\nC Eliscinsky Y\nP\nP\n\twil: Monopolies can destroy\n\teliscinsky: Thanks for the lesson! I always enjoy learning new tactics / strategies.\n\teliscinsky: Think I&#39;ll go out w/ a bang!\n\teliscinsky: Whoops, I mean ... Run Away! Run Away!\n\teliscinsky: Damn cannot kill myself, cannot run away.  Ah well.\n\n\twil: Its a green uni...  Gg\n\twil: that was new to me!\n\nHomeworlds Online (SDG# 36015)\nStarted: 2020.2.19, Ended: 2020.2.23\nParticipants: huddyrx (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld B1 Y2 G3\n\n2) huddyrx: Homeworld B3 R1 G3\n\tzweiterlinde: Good luck!\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\thuddyrx: Thanks! You too!\n\n4) huddyrx: Build G1 Huddyrx\n\n5) zweiterlinde: Discover G1 Zweiterlinde B3 Arcturus\n\n6) huddyrx: Trade G1 Y1 Huddyrx\n\n7) zweiterlinde: Build G1 Zweiterlinde\n\n8) huddyrx: Build Y1 Huddyrx\n\n9) zweiterlinde: Discover G1 Zweiterlinde B3 Brio\n\n10) huddyrx: Trade Y1 B1 Huddyrx\n\n11) zweiterlinde: Build G1 Arcturus\n\n12) huddyrx: Build G2 Huddyrx\n\n13) zweiterlinde: Build G2 Zweiterlinde\n\n14) huddyrx: Discover B1 Huddyrx Y2 Alderaan\n\n15) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Brio\nBuild G3 Zweiterlinde\nBuild G3 Zweiterlinde\n\n16) huddyrx: Sacrifice G3 Huddyrx\nBuild G3 Huddyrx\nBuild Y1 Huddyrx\nBuild B1 Alderaan\n\n17) zweiterlinde: Trade G2 Y2 Brio\n\n18) huddyrx: Discover Y1 Huddyrx B2 Tatooine\n\n19) zweiterlinde: Trade G1 Y1 Arcturus\n\n20) huddyrx: Sacrifice G2 Huddyrx\nBuild Y3 Huddyrx\nBuild Y3 Tatooine\n\n21) zweiterlinde: Move G3 Zweiterlinde Brio\n\n22) huddyrx: Trade Y1 G1 Huddyrx\n\n23) zweiterlinde: Build G2 Arcturus\n\n24) huddyrx: Discover B1 Alderaan Y3 Bespin\n\n25) zweiterlinde: Build Y1 Brio\n\n26) huddyrx: Sacrifice G1 Huddyrx\nBuild B2 Bespin\n\n27) zweiterlinde: Trade G2 B2 Arcturus\n\n28) huddyrx: Move B1 Alderaan Bespin\n\n29) zweiterlinde: Sacrifice Y2 Brio\nMove B2 Arcturus Zweiterlinde\nMove B2 Zweiterlinde Bespin\nCatastrophe Bespin Blue\n\n30) huddyrx: Build Y2 Huddyrx\n\thuddyrx: Accidentally hit undo\n\tzweiterlinde: Np\n\n31) zweiterlinde: Trade G3 R3 Brio\n\thuddyrx: I saw that coming too late.\n\thuddyrx:  I was putting the move back in and noticed,  but didn&#39;t want to change the move.\n\n32) huddyrx: Discover Y1 Tatooine G3 Hoth\n\tzweiterlinde: Fwiw I believe in liberal undos if the game state hasn&#39;t evolved, so please feel free to do so in the future!\n\tzweiterlinde: I was almost in deep trouble except there was that one blue ship left I could build to defend\n\n33) zweiterlinde: Sacrifice G2 Zweiterlinde\nBuild Y2 Brio\nBuild Y3 Arcturus\n\thuddyrx: Yeah. It was a huge mistake.. that&#39;s what I get for playing games while I&#39;m at work.\n\n34) huddyrx: Build G1 Huddyrx\n\thuddyrx: I agree about undo actions especially in online games. It&#39;s easy to misclick and if your phone is like mine it&#39;s starting to autocorrect some of my ships from g3 to g1.\n\n35) zweiterlinde: Build G2 Zweiterlinde\n\n36) huddyrx: Move Y3 Tatooine Hoth\n\n37) zweiterlinde: Move R3 Brio Zweiterlinde\n\n38) huddyrx: Discover Y2 Huddyrx B2 Dathomir\n\n39) zweiterlinde: Move R3 Zweiterlinde Hoth\n\n40) huddyrx: Sacrifice Y2 Dathomir\nMove Y3 Hoth Zweiterlinde\nMove Y1 Hoth Zweiterlinde\n\n41) zweiterlinde: Trade G2 R2 Zweiterlinde\n\n42) huddyrx: Sacrifice G1 Huddyrx\nBuild Y2 Zweiterlinde\nCatastrophe Zweiterlinde Yellow\n\n43) zweiterlinde: Sacrifice Y1 Brio\nDiscover R3 Hoth Y2 Croix\n\n44) huddyrx: Build G1 Huddyrx\n\tzweiterlinde: Nice! I forgot about the green sacrifice technique\n\n45) zweiterlinde: Move Y3 Arcturus Croix\n\n46) huddyrx: Trade G1 B1 Huddyrx\n\n47) zweiterlinde: Build G1 Zweiterlinde\n\n48) huddyrx: Discover B1 Huddyrx G2 Yavin\n\n49) zweiterlinde: Trade G3 R3 Zweiterlinde\n\n50) huddyrx: Build B1 Yavin\n\n51) zweiterlinde: Sacrifice Y2 Brio\nMove R3 Croix Huddyrx\nMove Y3 Croix Huddyrx\n\n52) huddyrx: Build G2 Huddyrx\n\n53) zweiterlinde: Sacrifice R3 Zweiterlinde\nAttack G3 Huddyrx\nAttack Y3 Huddyrx\nAttack G2 Huddyrx\n\n\tzweiterlinde: Gg! I was one turn away from losing I think.\n\thuddyrx: Yeah, I hoping to sacrifice the yellow to move some blue in, but saw your incoming attack. I should have sacrificed my g3 to build more ships at home. I didn&#39;t think about you using the red sacrifice to take over everything.\n\tzweiterlinde: That&#39;s another drawback of this format, it prevents the &quot;you know I win on the next move right&quot; kind of interaction\n\thuddyrx: I know. I&#39;m dying to play it in person. \n\nHomeworlds Online (SDG# 36025)\nStarted: 2020.2.20, Ended: 2020.7.18\nParticipants: huddyrx (S), Mantheron (N)\nWinner: Mantheron\n\n1) Mantheron: Homeworld Y1 B2 G3\n\n2) huddyrx: Homeworld B3 R1 G3\n\n3) Mantheron: Build G1 Mantheron\n\n4) huddyrx: Build G1 Huddyrx\n\n5) Mantheron: Discover G1 Mantheron Y3 Altair\n\n6) huddyrx: Trade G1 Y1 Huddyrx\n\n7) Mantheron: Build G1 Mantheron\n\n8) huddyrx: Build G1 Huddyrx\n\n9) Mantheron: Build G2 Altair\n\n10) huddyrx: Build G2 Huddyrx\n\n11) Mantheron: Trade G1 Y1 Mantheron\n\n12) huddyrx: Trade G1 B1 Huddyrx\n\n13) Mantheron: Build Y2 Mantheron\n\n14) huddyrx: Build Y2 Huddyrx\n\n15) Mantheron: Discover Y2 Mantheron R3 Bellatrix\n\n16) huddyrx: Discover B1 Huddyrx G2 Flanders\n\n17) Mantheron: Build G1 Mantheron\n\n18) huddyrx: Sacrifice Y2 Huddyrx\nDiscover B1 Flanders G3 Lovejoy\nMove B1 Lovejoy Mantheron\n\n19) Mantheron: Move G1 Mantheron Bellatrix\n\n20) huddyrx: Trade B1 G1 Mantheron\n\thuddyrx: I wish I could remember what I was thinking when I moved that blue ship.\n\thuddyrx: I wish I could remember what I was thinking when I moved that blue ship.\n\n21) Mantheron: Trade G3 R3 Mantheron\n\n22) huddyrx: Build G2 Huddyrx\n\n23) Mantheron: Sacrifice Y2 Bellatrix\nDiscover G1 Bellatrix B2 Castor\nMove G1 Castor Huddyrx\nCatastrophe Huddyrx Green\n\n24) huddyrx: Trade Y1 G1 Huddyrx\n\n25) Mantheron: Attack G1 Mantheron\n\n26) huddyrx: Build G2 Huddyrx\n\n27) Mantheron: Build Y1 Mantheron\n\n28) huddyrx: Trade G2 Y2 Huddyrx\n\n29) Mantheron: Build R1 Mantheron\n\n30) huddyrx: Build G2 Huddyrx\n\n31) Mantheron: Discover G1 Altair Y2 Deneb\n\n32) huddyrx: Build Y2 Huddyrx\n\n33) Mantheron: Trade Y1 B1 Mantheron\n\n34) huddyrx: Discover Y2 Huddyrx G2 Lovejoy\n\n35) Mantheron: Build G3 Deneb\n\n36) huddyrx: Build Y1 Lovejoy\n\n37) Mantheron: Sacrifice G3 Deneb\nBuild G3 Deneb\nBuild G3 Mantheron\nBuild G3 Altair\n\n\nHomeworlds Online (SDG# 36028)\nStarted: 2020.2.20, Ended: 2020.3.9\nParticipants: Mantheron (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld B1 Y3 G3\n\n2) Mantheron: Homeworld G1 B2 Y3\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\n4) Mantheron: Build Y1 Mantheron\n\tzweiterlinde: gl!\n\tMantheron: You too.\n\n5) zweiterlinde: Discover G1 Zweiterlinde B2 Apple\n\n6) Mantheron: Trade Y1 R1 Mantheron\n\n7) zweiterlinde: Build G1 Apple\n\n8) Mantheron: Build Y1 Mantheron\n\n9) zweiterlinde: Build G2 Zweiterlinde\n\n10) Mantheron: Discover Y1 Mantheron R3 Banana\n\n11) zweiterlinde: Discover G2 Zweiterlinde B2 Cantaloupe\n\n12) Mantheron: Trade Y3 G3 Mantheron\n\n13) zweiterlinde: Build G2 Zweiterlinde\n\n14) Mantheron: Build R1 Mantheron\n\n15) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Apple\nBuild G3 Zweiterlinde\nBuild G3 Cantaloupe\n\n16) Mantheron: Build R1 Mantheron\n\n17) zweiterlinde: Trade G1 Y1 Apple\n\n18) Mantheron: Build G1 Mantheron\n\n19) zweiterlinde: Trade G2 Y2 Cantaloupe\n\n20) Mantheron: Trade G1 Y1 Mantheron\n\n21) zweiterlinde: Move G3 Cantaloupe Banana\n\n22) Mantheron: Discover Y1 Banana G2 Date\n\n23) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G1 Banana\nBuild G3 Zweiterlinde\nBuild Y2 Cantaloupe\n\n24) Mantheron: Discover G3 Mantheron R3 Elderberry\n\n25) zweiterlinde: Trade G2 R2 Zweiterlinde\n\n26) Mantheron: Build G2 Elderberry\n\n27) zweiterlinde: Sacrifice Y1 Apple\nMove G3 Banana Mantheron\n\n28) Mantheron: Move R1 Mantheron Elderberry\n\n29) zweiterlinde: Sacrifice R2 Zweiterlinde\nAttack R1 Mantheron\nAttack R1 Mantheron\n\n30) Mantheron: Sacrifice G3 Elderberry\nBuild Y1 Mantheron\nBuild Y2 Date\nBuild G3 Elderberry\n\n31) zweiterlinde: Attack Y1 Mantheron\n\n32) Mantheron: Sacrifice G3 Elderberry\nBuild G3 Elderberry\nBuild Y3 Mantheron\nBuild R2 Elderberry\n\n33) zweiterlinde: Attack Y3 Mantheron\n\n34) Mantheron: Sacrifice Y2 Date\nMove R1 Elderberry Mantheron\nMove R2 Elderberry Mantheron\nCatastrophe Mantheron Red\n\n35) zweiterlinde: Sacrifice Y2 Cantaloupe\nMove Y2 Cantaloupe Banana\nMove Y2 Banana Mantheron\nCatastrophe Mantheron Yellow\n\tzweiterlinde: Gg!\n\n\nHomeworlds Online (SDG# 36014)\nStarted: 2020.2.20, Ended: 2020.3.8\nParticipants: amoscai (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld Y1 B3 G3\n\n2) amoscai: Homeworld R1 B3 G3\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\n4) amoscai: Build G1 Amoscai\n\tzweiterlinde: gl!\n\tamoscai: u2\n\n5) zweiterlinde: Discover G1 Zweiterlinde B2 Alto\n\n6) amoscai: Trade G1 Y1 Amoscai\n\n7) zweiterlinde: Build G1 Zweiterlinde\n\n8) amoscai: Build G1 Amoscai\n\n9) zweiterlinde: Build G2 Alto\n\n10) amoscai: Discover G1 Amoscai Y2 Base\n\n11) zweiterlinde: Trade G1 Y1 Alto\n\n12) amoscai: Build Y2 Amoscai\n\n13) zweiterlinde: Build Y2 Alto\n\n14) amoscai: Move Y2 Amoscai Base\n\n15) zweiterlinde: Discover Y2 Alto G3 Carota\n\n16) amoscai: Build Y3 Amoscai\n\n17) zweiterlinde: Build Y3 Alto\n\n18) amoscai: Move Y1 Amoscai Alto\n\n19) zweiterlinde: Build Y3 Carota\n\n20) amoscai: Move Y3 Amoscai Alto\nCatastrophe Alto Yellow\n\n21) zweiterlinde: Move Y2 Carota Base\n\tamoscai: Wasn&#39;t sure if that was right heh\n\n22) amoscai: Build G1 Base\n\tamoscai: build g1 base\n\n23) zweiterlinde: Sacrifice G1 Zweiterlinde\nBuild Y1 Base\nCatastrophe Base Yellow\n\n24) amoscai: Build G1 Amoscai\n\n25) zweiterlinde: Build G1 Alto\n\n26) amoscai: Trade G1 Y1 Amoscai\n\n27) zweiterlinde: Trade G1 Y1 Alto\n\n28) amoscai: Build Y2 Amoscai\n\n29) zweiterlinde: Build G1 Zweiterlinde\n\n30) amoscai: Trade Y2 R2 Amoscai\n\n31) zweiterlinde: Trade G2 R2 Alto\n\n32) amoscai: Build Y2 Amoscai\n\n33) zweiterlinde: Move G1 Zweiterlinde Alto\n\n34) amoscai: Build G1 Amoscai\n\n35) zweiterlinde: Build G1 Alto\n\n36) amoscai: Move G1 Amoscai Alto\n\n37) zweiterlinde: Attack G1 Alto\n\n38) amoscai: Discover Y1 Amoscai G2 Beta\n\n39) zweiterlinde: Trade G1 R1 Alto\n\n40) amoscai: Build Y2 Beta\n\n41) zweiterlinde: Build G1 Zweiterlinde\n\n42) amoscai: Discover Y1 Beta Y3 Delta\n\n43) zweiterlinde: Build G2 Alto\n\n44) amoscai: Move R2 Amoscai Beta\n\n45) zweiterlinde: Discover G1 Alto Y3 Empyrio\n\n46) amoscai: Build Y2 Beta\n\n47) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Alto\nBuild G3 Zweiterlinde\nBuild R1 Alto\n\n48) amoscai: Move Y1 Delta Alto\n\n49) zweiterlinde: Build Y3 Alto\n\n50) amoscai: Sacrifice Y2 Beta\nMove Y2 Beta Carota\nMove Y2 Carota Alto\nCatastrophe Alto Yellow\n\n51) zweiterlinde: Sacrifice Y3 Carota\nMove G1 Alto Amoscai\nMove G2 Alto Amoscai\nMove G2 Alto Amoscai\nCatastrophe Amoscai Green\n\n52) amoscai: Trade Y2 G2 Amoscai\n\n53) zweiterlinde: Discover G3 Zweiterlinde Y2 Fortitude\n\n54) amoscai: Build G1 Amoscai\n\n55) zweiterlinde: Move G3 Fortitude Amoscai\n\n56) amoscai: Build G2 Amoscai\nCatastrophe Amoscai Green\n\tzweiterlinde: Gg!\n\n\nHomeworlds Online (SDG# 36026)\nStarted: 2020.2.20, Ended: 2020.3.9\nParticipants: huddyrx (S), amoscai (N)\nWinner: huddyrx\n\n1) amoscai: Homeworld Y1 B3 G3\n\n2) huddyrx: Homeworld B3 R2 G3\n\n3) amoscai: Build G1 Amoscai\n\n4) huddyrx: Build G1 Huddyrx\n\n5) amoscai: Discover G1 Amoscai R2 Bam\n\n6) huddyrx: Trade G1 Y1 Huddyrx\n\n7) amoscai: Build G1 Amoscai\n\n8) huddyrx: Discover Y1 Huddyrx B1 Skywalker\n\n9) amoscai: Build G1 Bam\n\n10) huddyrx: Build G2 Huddyrx\n\n11) amoscai: Build G2 Amoscai\n\n12) huddyrx: Sacrifice G2 Huddyrx\nBuild G2 Huddyrx\nBuild Y1 Skywalker\n\n13) amoscai: Trade G2 Y2 Amoscai\n\n14) huddyrx: Trade G2 Y2 Huddyrx\n\n15) amoscai: Build Y2 Amoscai\n\n16) huddyrx: Sacrifice Y2 Huddyrx\nMove Y1 Skywalker Bam\nMove Y1 Bam Amoscai\nCatastrophe Amoscai Yellow\n\n17) amoscai: Trade G1 Y1 Amoscai\n\n18) huddyrx: Build G1 Huddyrx\n\n19) amoscai: Build G2 Amoscai\n\n20) huddyrx: Trade G1 B1 Huddyrx\n\n21) amoscai: Trade G2 B2 Amoscai\n\n22) huddyrx: Move Y1 Skywalker Huddyrx\n\n23) amoscai: Build Y1 Amoscai\n\n24) huddyrx: Build Y2 Huddyrx\n\n25) amoscai: Move Y1 Amoscai Bam\n\n26) huddyrx: Discover B1 Huddyrx G1 Solo\n\n27) amoscai: Build Y2 Amoscai\n\n28) huddyrx: Build B1 Solo\n\n29) amoscai: Trade B2 R2 Amoscai\n\n30) huddyrx: Move Y1 Huddyrx Solo\n\n31) amoscai: Build R1 Amoscai\n\n32) huddyrx: Trade G3 Y3 Huddyrx\n\n33) amoscai: Move Y1 Amoscai Solo\n\n34) huddyrx: Discover B1 Solo G2 Kenobi\n\n35) amoscai: Move R2 Amoscai Solo\n\n36) huddyrx: Move B1 Solo Kenobi\n\n37) amoscai: Attack Y1 Solo\n\n38) huddyrx: Trade Y2 G2 Huddyrx\n\n39) amoscai: Build G2 Amoscai\n\n40) huddyrx: Build B1 Kenobi\n\n\tamoscai: Gg!\n\thuddyrx: Good game!\n\nHomeworlds Online (SDG# 36012)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.21, Ended: 2020.2.26\nParticipants: akuden (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) akuden: Homeworld B1 G3 Y3\n\tTrydnt: welcome! always glad to play new people :) good luck\n\n3) Trydnt: Build G1 Trydnt\n\takuden: Thank you! This is my first game. I apologize for delays in my turn as I&#146;m learning the game and trying to figure out the correct notation on the site. \n\n4) akuden: Build Y1 Akuden\n\takuden: I apologize for the undo but I just wanted to mismatch the homeworlds.\n\tTrydnt: no worries :) though taking a green star is always a little risky imo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) akuden: Build Y2 Akuden\n\n7) Trydnt: Build Y2 Trydnt\n\n8) akuden: Trade Y2 G2 Akuden\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) akuden: Discover G2 Akuden B2 Looney\n\n11) Trydnt: Build Y2 G3\n\n12) akuden: Build G1 Looney\n\n13) Trydnt: Build Y2 Trydnt\n\n14) akuden: Build Y3 Akuden\n\n15) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 G3 Looney\nMove Y1 Looney Akuden\nCatastrophe Akuden Y\n\n\tTrydnt: Always watch out for the bluebird\n\takuden: Ah, I forgot all about catastrophes! Thank you for the game. It&#146;s fun and seems like it can get pretty deep.\n\tTrydnt: yeah there are more possible starting setups than you could make with all the pieces in the set which is pretty wild. I would hazard you against taking green in your homeworld star as it gives your opponent the added ability to teleport ships to your homeworld by sacrificing greens instead of using yellows to move them in which is not a great advantage to give your opponent. Also having the g3 ship from the start makes it more likely you&#39;ll be able to access the factory later. If you haven&#39;t seen the homeworlds theater episodes on youtube they have some good strategy insights\n\tTrydnt: catastrophe is the long strategy to win. many games go by without much attacking directly as the most effective way to win is to get two y3 ships and three ships each of your opponents homeworld colors and then sacrifice your y3s to move in three at a time and blow it up in two moves. That&#39;s the doomsday machine. You can often hack one together using some y2s and y1s if you have enough though. Then main thing is to make sure that once your opponent has a y2 and a ship in range of your homeworld you gotta keep a close eye on what you grow to make sure you don&#39;t open yourself up to having a bunch of your stuff blown up\n\nHomeworlds Online (SDG# 36032)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.21, Ended: 2020.3.23\nParticipants: Trydnt (S), pedrop (N)\nWinner: Trydnt\n\n1) pedrop: Homeworld G3 B2 Y3\n\n2) Trydnt: Homeworld B2 Y2 G3 *\n\n3) pedrop: Build Y1 Pedrop\n\tTrydnt: welcome! always a pleasure playing against new people :) good luck\n\n4) Trydnt: Build G1 Trydnt\n\tpedrop: Hello! I&#39;m a returner like after 10 years here. So I don&#39;t know if I&#39;m new... or not;) But not experienced in this game.\n\n5) pedrop: Trade Y1 R1 Pedrop\n\tTrydnt: well new to homeworlds at least :) it&#39;s my favorite game\r\n\n\n6) Trydnt: Build G1 Trydnt\n\n7) pedrop: Build Y1 Pedrop\n\n8) Trydnt: Trade G1 Y1 Trydnt\n\n9) pedrop: Build R1 Pedrop\n\n10) Trydnt: Trade G1 R1 Trydnt\n\n11) pedrop: Build R2 Pedrop\n\n12) Trydnt: Build R2 Trydnt\n\n13) pedrop: Discover R2 Pedrop G1 Cylons\n\n14) Trydnt: Discover R2 Trydnt G1 G1\n\n15) pedrop: Trade R1 G1 Pedrop\n\n16) Trydnt: Build G2 Trydnt\n\n17) pedrop: Discover G1 Pedrop B1 Adama\n\n18) Trydnt: Move G2 Trydnt Adama\n\n19) pedrop: M Y3 Pedrop Adama\n\n20) Trydnt: Sacrifice G2 Adama\nBuild G2 Trydnt\nBuild R1 Trydnt\n\n21) pedrop: Build G2 Adama\n\n22) Trydnt: Discover G2 Trydnt B1 B1\n\n23) pedrop: Build Y1 Adama\n\n24) Trydnt: Move Y1 Trydnt B1\n\n25) pedrop: Build R2 Pedrop\n\n26) Trydnt: Build R3 G1\n\n27) pedrop: Move Y3 Adama Pedrop\n\n28) Trydnt: Discover R1 Trydnt Y3 Y3\n\n29) pedrop: Build Y2 Adama\n\n30) Trydnt: Sacrifice G2 B1\nBuild R3 Y3\nBuild R3 Trydnt\n\n31) pedrop: Sacrifice Y2 Adama\nMove R1 Pedrop G1\nMove R2 Pedrop G1\nCatastrophe G1 Red\n\n32) Trydnt: Move R3 Trydnt Adama\n\n33) pedrop: Discover G2 Adama Y2 Saul\n\n34) Trydnt: Attack Y1 Adama\n\n35) pedrop: Move Y1 Pedrop Cylons\n\n36) Trydnt: Attack G1 Adama\n\n37) pedrop: Build G1 Saul\n\tpedrop: The question is simple... do I have any chances to win still? I don&#39;t think so... but I&#39;m still new to this game.\n\n38) Trydnt: Discover G1 Adama Y3 Why3\n\tTrydnt: Definitely. The win condition is hard to fulfil, I still need to get a lot of pieces before I can destroy your homeworld and me if you&#39;re smart with your trades you might be able to equalize and get some bigger ships\n\n39) pedrop: Build Y2 Pedrop\n\n40) Trydnt: Build G2 Why3\n\n41) pedrop: Discover G1 Saul B3 Starbuck\n\n42) Trydnt: Move G1 Why3 Adama\n\n43) pedrop: Build R1 Cylons\n\n44) Trydnt: Build R2 Adama\n\n45) pedrop: Move R1 Cylons Pedrop\n\n46) Trydnt: Sacrifice G2 Why3\nBuild G2 Adama\nBuild Y3 Adama\n\n47) pedrop: Sacrifice G2 Saul\nBuild R2 Pedrop\nBuild R3 Cylons\n\n48) Trydnt: Sacrifice Y3 Adama\nMove R2 Adama Y3\nMove R2 Y3 Cylons\nMove R1 Y3 Cylons\nCatastrophe Cylons R\n\n\tpedrop: Thanks for the game. You were too good for me:)\n\tTrydnt: I started learning about 2 years ago, and haven&#39;t stopped. Just remember to have fun and learn as much from every game as possible :)\n\nHomeworlds Online (SDG# 36036)\nStarted: 2020.2.21, Ended: 2020.7.18\nParticipants: tkvaran (S), huddyrx (N)\nWinner: tkvaran\n\n1) huddyrx: Homeworld B3 Y1 G3\n\n2) tkvaran: Homeworld R1 B2 G3\n\n3) huddyrx: Build G1 Huddyrx\n\n4) tkvaran: Build G1 Tkvaran\n\n5) huddyrx: Trade G1 Y1 Huddyrx\n\n6) tkvaran: Trade G1 Y1 Tkvaran\n\n7) huddyrx: Build G1 Huddyrx\n\n8) tkvaran: Build G1 Tkvaran\n\n9) huddyrx: Build Y2 Huddyrx\n\n10) tkvaran: Discover G1 Tkvaran B3 Freddie\n\n11) huddyrx: Discover Y1 Huddyrx G2 Alderaan\n\n12) tkvaran: Build Y2 Tkvaran\n\n13) huddyrx: Trade G1 B1 Huddyrx\n\n14) tkvaran: Build G1 Freddie\n\n15) huddyrx: Move B1 Huddyrx Alderaan\n\n16) tkvaran: Move Y1 Tkvaran Freddie\n\n17) huddyrx: Build B1 Alderaan\n\n18) tkvaran: Trade G1 R1 Freddie\n\n19) huddyrx: Build Y2 Alderaan\n\n20) tkvaran: Build R1 Freddie\n\n21) huddyrx: Trade Y2 R2 Huddyrx\n\n22) tkvaran: Build Y2 Freddie\n\n23) huddyrx: Discover B1 Alderaan G3 Naboo\n\n24) tkvaran: Move Y2 Tkvaran Naboo\n\n25) huddyrx: Build B1 Naboo\n\n26) tkvaran: Build Y3 Naboo\n\n27) huddyrx: Discover Y1 Alderaan G1 Bespin\n\n28) tkvaran: Sacrifice Y2 Naboo\nMove R1 Freddie Alderaan\nMove Y2 Freddie Alderaan\n\n29) huddyrx: Sacrifice Y2 Alderaan\nMove B1 Alderaan Naboo\nMove B1 Naboo Tkvaran\n\n30) tkvaran: Build Y2 Alderaan\n\n31) huddyrx: Build Y2 Bespin\n\n32) tkvaran: Discover Y1 Freddie R2 Jason\n\n33) huddyrx: Build B2 Naboo\n\n34) tkvaran: Attack B1 Tkvaran\n\ttkvaran: Attack b1 tkvaran\n\n35) huddyrx: Build R2 Huddyrx\n\thuddyrx: Move y1 bespin Alderaan \r\nCatastrophe yellow\n\thuddyrx: Move y1 bespin Alderaan \r\nCatastrophe Alderaan yellow\n\thuddyrx: \n\n36) tkvaran: Sacrifice Y3 Naboo\nMove Y2 Alderaan Huddyrx\nMove Y2 Alderaan Huddyrx\nMove Y1 Jason Huddyrx\nCatastrophe Huddyrx Yellow\n\n\nHomeworlds Online (SDG# 36035)\nStarted: 2020.2.22, Ended: 2020.6.20\nParticipants: amoscai (S), tkvaran (N)\nWinner: amoscai\n\n1) tkvaran: Homeworld G2 R1 B3\n\n2) amoscai: Homeworld Y1 B2 G3\n\n3) tkvaran: Build B1 Tkvaran\n\n4) amoscai: Build G1 Amoscai\n\ttkvaran: This will be an interesting game.  When we both have the same sizes of stars in our Homeworlds, the &quot;map&quot; in the game is much smaller.\n\tamoscai: because it&#39;s easier to just &#39;traverse&#39; through one other system?\n\n5) tkvaran: Build B1 Tkvaran\n\ttkvaran: Yes\n\ttkvaran: Yes\n\n6) amoscai: Trade G1 B1 Amoscai\n\n7) tkvaran: Trade B1 Y1 Tkvaran\n\n8) amoscai: Build G1 Amoscai\n\n9) tkvaran: Discover B1 Tkvaran G3 Cheddar\n\n10) amoscai: Trade G3 R3 Amoscai\n\n11) tkvaran: Build B1 Cheddar\n\n12) amoscai: Move B1 Amoscai Cheddar\n\n13) tkvaran: Trade B1 R1 Cheddar\n\n14) amoscai: Build B1 Cheddar\n\n15) tkvaran: Attack B1 Cheddar\n\n16) amoscai: Build B2 Cheddar\nCatastrophe Cheddar Blue\n\n17) tkvaran: Build R1 Cheddar\n\n18) amoscai: Build G1 Amoscai\n\n19) tkvaran: Build B1 Tkvaran\n\n20) amoscai: Build R2 Amoscai\n\n21) tkvaran: Trade B1 G1 Tkvaran\n\n22) amoscai: Trade G1 Y1 Amoscai\n\n23) tkvaran: Build Y2 Tkvaran\n\n24) amoscai: Move R2 Amoscai Cheddar\n\n25) tkvaran: Sacrifice Y2 Tkvaran\nMove R1 Cheddar Amoscai\nMove R1 Cheddar Amoscai\n\n26) amoscai: Attack R1 Amoscai\n\n27) tkvaran: Build Y2 Tkvaran\n\n28) amoscai: Attack R1 Amoscai\n\n29) tkvaran: Build Y2 Tkvaran\n\n30) amoscai: Move Y1 Amoscai Cheddar\n\n31) tkvaran: Trade Y2 R2 Tkvaran\n\n32) amoscai: Move R1 Amoscai Cheddar\n\n33) tkvaran: Discover R2 Tkvaran G3 Swiss\n\n34) amoscai: Build Y2 Cheddar\n\n35) tkvaran: Build R2 Swiss\n\n36) amoscai: Trade R3 G3 Amoscai\n\n37) tkvaran: Build B1 Tkvaran\n\n38) amoscai: Build R3 Amoscai\n\n39) tkvaran: Move G1 Tkvaran Swiss\n\n40) amoscai: Move R1 Amoscai Cheddar\n\n41) tkvaran: Sacrifice Y2 Tkvaran\nMove R2 Swiss Tkvaran\nMove R2 Tkvaran Cheddar\nCatastrophe Cheddar Red\n\n42) amoscai: Build R1 Amoscai\n\n43) tkvaran: Build Y2 Tkvaran\n\n44) amoscai: Trade R1 B1 Amoscai\n\n45) tkvaran: Trade B1 G1 Tkvaran\n\ttkvaran: Just realized it looks like we can keep playing this even though I went over time.  Want to try to finish?\n\ttkvaran: Just realized it looks like we can keep playing this even though I went over time.  Want to try to finish?\n\n46) amoscai: Move G1 Amoscai Cheddar\n\tamoscai: yes sure!\n\n47) tkvaran: Move Y2 Tkvaran Swiss\n\n48) amoscai: Build G2 Amoscai\n\n49) tkvaran: Build Y2 Swiss\n\n50) amoscai: Move G1 Cheddar Tkvaran\n\n51) tkvaran: Move G1 Tkvaran Cheddar\n\n52) amoscai: Build G2 Tkvaran\n\n53) tkvaran: Sacrifice Y2 Swiss\nMove G1 Cheddar Amoscai\nMove G1 Swiss Amoscai\nCatastrophe Amoscai Green\n\n54) amoscai: Build G1 Tkvaran\nCatastrophe Tkvaran Green\n\n55) tkvaran: Build R1 Swiss\n\n56) amoscai: Discover Y1 Cheddar B2 Goat\n\n57) tkvaran: Trade Y1 G1 Tkvaran\n\n58) amoscai: Trade B1 G1 Amoscai\n\n59) tkvaran: Build B1 Tkvaran\n\n60) amoscai: Move Y2 Cheddar Amoscai\n\n61) tkvaran: Build B1 Tkvaran\n\n62) amoscai: Trade Y1 G1 Goat\n\n63) tkvaran: Build G2 Tkvaran\n\n64) amoscai: Build G2 Goat\n\n65) tkvaran: Trade G2 Y2 Tkvaran\n\n66) amoscai: Trade G1 R1 Goat\n\n67) tkvaran: Sacrifice Y2 Tkvaran\nMove R1 Swiss Amoscai\nMove R2 Swiss Amoscai\n\n68) amoscai: Attack R2 Amoscai\n\n69) tkvaran: Attack G1 Amoscai\n\n70) amoscai: Sacrifice R2 Amoscai\nAttack R1 Amoscai\nAttack G1 Amoscai\n\n71) tkvaran: Sacrifice Y2 Swiss\nDiscover B1 Tkvaran G3 Swiss2\nMove B1 Tkvaran Swiss2\n\ttkvaran: oh dang.  that was good.\n\n72) amoscai: Build R2 Goat\n\n73) tkvaran: Trade B3 Y3 Tkvaran\n\n74) amoscai: Sacrifice Y2 Amoscai\nMove R1 Goat Tkvaran\nMove R2 Goat Tkvaran\n\n75) tkvaran: Build B1 Swiss2\n\tamoscai: ah. I missed your comment. it took me many games of being thrashed by Steve to see the power of sacrificing. especially reds.\n\n76) amoscai: Sacrifice G1 Amoscai\nBuild R2 Tkvaran\nCatastrophe Tkvaran Red\n\ttkvaran: Good game!  \n\ttkvaran: I&#39;m taking a break from CK Slack for a while.  If you ever want another game reach out here or at bgg.  I&#39;m tkvaran there also.\n\tamoscai: I&#39;m always keen on games here! 1 or 2 here async is good pacing for me. I haven&#39;t read Slack much recently.\n\n\nHomeworlds Online (SDG# 35991)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.23, Ended: 2020.3.7\nParticipants: wil (S), coryke (N)\nWinner: wil\n\n1) coryke: Homeworld B1 R2 G3\n\n2) wil: H B3 Y1 G3\n\n3) coryke: Build G1 Coryke\n\n4) wil: B G1 Wil\n\n5) coryke: Trade G1 Y1 Coryke\n\n6) wil: T G1 R1 Wil\n\n7) coryke: Build Y1 Coryke\n\n8) wil: B R1 Wil\n\n9) coryke: Trade Y1 R1 Coryke\n\n10) wil: T R1 B1 Wil\n\n11) coryke: Discover R1 Coryke G3 Alef\n\tcoryke: This is my first game and I&#39;m stuck. I can&#39;t figure out the syntax to move. I&#39;ve tried loads of things but can&#39;t figure out what I need to put for the new system I&#39;d like to move to. Any suggestions?\n\n12) wil: B B1 Wil\n\tcoryke: So, I figured it out right after sending the message. I was trying to move rather than discover. It&#39;s the little things some times.\n\n13) coryke: Build Y1 Coryke\n\n14) wil: D B1 Wil Y2 Y2\n\n15) coryke: Build Y2 Coryke\n\n16) wil: B B2 Wil\n\n17) coryke: Move Y1 Coryke Alef\n\n18) wil: D B1 Y2 Y3 Y3\n\n19) coryke: Trade Y2 R2 Coryke\n\n20) wil: D B1 Wil G2 G2\n\n21) coryke: Move R1 Alef G2\n\twil: Idk how I missed your question, glad you answered it yourself!\n\n22) wil: T B1 R1 G2\n\n23) coryke: Attack R1 G2\n\n24) wil: B B1 Wil\n\n25) coryke: Move R2 Coryke Alef\n\n26) wil: D B2 Wil G2 Gtoo\n\n27) coryke: Move R2 Alef Gtoo\n\n28) wil: T B2 R2 Gtoo\n\n29) coryke: Attack R2 Gtoo\n\n30) wil: B R3 Wil\n\n31) coryke: Build Y2 Coryke\n\n32) wil: D R3 Wil G2 Gee2\n\n33) coryke: Trade Y1 G1 Coryke\n\n34) wil: B R3 Wil\n\n35) coryke: Move G1 Coryke Alef\n\n36) wil: B R3 Gee2\n\n37) coryke: Build G1 Coryke\n\n38) wil: B G1 Wil\n\n39) coryke: Sacrifice G3 Coryke\nBuild G3 Coryke\nBuild Y1 Coryke\nBuild Y2 Coryke\n\n40) wil: T R3 Y3 Wil\n\n41) coryke: Move Y2 Coryke Alef\n\twil: You say this is your first game?\n\tcoryke: Yes. I watched a few games that Looney Labs replayed on YouTube, but this is my first. Stressful!\n\n42) wil: S G3 Wil\nB G3 Wil\nB R3 Wil\nB B2 Y3\n\twil: It&#39;s a heck of a game and you&#39;re doing well!\n\n43) coryke: Sacrifice G3 Coryke\nBuild G3 Coryke\nBuild Y2 Alef\nBuild Y3 Coryke\n\n44) wil: M Y3 Wil Gee2\n\n45) coryke: Move Y2 Alef G2\n\n46) wil: M R3 Gee2 Alef\n\tcoryke: Sorry about the delay. Business trip.\n\n47) coryke: Sacrifice Y2 Coryke\nMove Y2 Alef Gtoo\nMove Y1 Alef Gtoo\n\n48) wil: S G3 Wil\nB G3 Wil\nB Y2 Gee2\nB B2 Y3\n\n49) coryke: Sacrifice Y3 Coryke\nMove Y2 G2 Wil\nMove Y2 Gtoo Wil\nMove Y1 Gtoo Wil\nCatastrophe Wil Yellow\n\n50) wil: S Y3 Gee2\nM G1 Wil Coryke\nM G3 Wil Coryke\nM R3 Wil Coryke\nC Coryke G\n\n51) coryke: Pass\n\n52) wil: A Y1 Coryke\n\twil: Ya gave me direct access, gg, challenge anytime\n\tcoryke: I didn&#39;t know exactly what was coming but I figured I had one shot and you had two shots. So I went for it, but, yep... you got me. Thanks for the gg.\n\n\nHomeworlds Online (SDG# 36049)\nVariants: &quot;Hard time&quot;\nStarted: 2020.2.24, Ended: 2020.3.26\nParticipants: Draw5PlayAll (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\tBabamots: Good luck! I&#39;ve never gotten to challenge the top of the ladder before, so this is exciting for me :-).\n\tDraw5PlayAll: ...and you picked my usual homeworld setup, of course.\n\n3) Babamots: Build G1 Babamots\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Babamots: Build R2 Babamots\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) Babamots: Trade R2 Y2 Babamots\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) Babamots: Build R2 Babamots\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) Babamots: Discover R1 Babamots G2 Risa\n\n14) Draw5PlayAll: Discover R1 Draw5playall G3 Earth\n\n15) Babamots: Build R3 Risa\n\n16) Draw5PlayAll: Build R3 Earth\n\n17) Babamots: Discover R2 Babamots G2 Orion\n\n18) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n19) Babamots: Build Y1 Babamots\n\n20) Draw5PlayAll: Move B2 Draw5playall Earth\n\n21) Babamots: Sacrifice Y2 Babamots\nMove R1 Risa Earth\nMove R2 Orion Earth\nCatastrophe Earth R\n\n22) Draw5PlayAll: Build Y1 Draw5playall\n\n23) Babamots: Build Y1 Babamots\n\n24) Draw5PlayAll: Build Y2 Draw5playall\n\n25) Babamots: Move Y1 Babamots Risa\n\n26) Draw5PlayAll: Discover Y2 Draw5playall B3 Water\n\n27) Babamots: Build Y2 Babamots\n\n28) Draw5PlayAll: Discover Y1 Draw5playall R3 Fire\n\n29) Babamots: Build Y3 Risa\n\n30) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Water\nBuild B1 Earth\n\n31) Babamots: Move Y3 Risa Water\n\n32) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover Y3 Water R1 Flame\nMove B2 Earth Flame\n\n33) Babamots: Build R1 Risa\n\n34) Draw5PlayAll: Move Y2 Water Flame\n\n35) Babamots: Build R2 Risa\n\n36) Draw5PlayAll: Trade Y2 G2 Flame\n\n37) Babamots: Move R3 Risa Earth\n\n38) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n39) Babamots: Sacrifice Y2 Babamots\nMove R3 Earth Draw5playall\nMove Y3 Water Draw5playall\n\n40) Draw5PlayAll: Attack R3 Draw5playall\n\n41) Babamots: Sacrifice R2 Risa\nAttack R3 Draw5playall\nAttack G3 Draw5playall\n\n\tBabamots: GG! Thanks for the game!\n\tDraw5PlayAll: I guess my biggest mistake was letting you blow up my R3?\n\tBabamots: Losing your R3 was important because it gave me a large-ship advantage, but it was never convenient for me to actually invade your colonies with a large. I think your lack of red ships in the last half of the game was a bigger problem. My final invasion wouldn&#39;t have worked if you had had an r2 ship anywhere. Trading y2 for r2 on your 13th move would have been pretty good.\n\tDraw5PlayAll: I never understand how it is not convenient for the opponent to simply send an R3 in and force me to sacrifice a medium to scatter my other pieces.\n\tBabamots: It might have been better for me to move my r3 from Risa to earth (on my 14th move for example), but 1) I was worried about you getting too far ahead on yellows and 2) I was hoping that you would present me with an even more attractive target (more ships in one system, preferably without yellow). I think I was also worried about my r3 being stranded on earth and needing an extra turn or sacrifice to turn it back into an active threat.\n\nHomeworlds Online (SDG# 35800)\nStarted: 2020.2.27, Ended: 2020.5.28\nParticipants: nycavri (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tts52: This is for the 2019 tournament, right?\n\n2) nycavri: Homeworld G2 B3 Y3\n\tnycavri: Yup, tournament game.  As player 1, you&#39;ll fill the form?\n\n3) ts52: Build G1 Ts52\n\tts52: Yes, filling it in now.\n\n4) nycavri: Build Y1 Nycavri\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) nycavri: Build Y2 Nycavri\n\n7) ts52: Build Y2 Ts52\n\n8) nycavri: Discover Y2 Nycavri G1 Deacon\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) nycavri: Trade Y1 B1 Nycavri\n\n11) ts52: Build G1 Ts52\n\n12) nycavri: Build B1 Nycavri\n\n13) ts52: Trade G1 B1 Ts52\n\n14) nycavri: Move B1 Nycavri Deacon\n\n15) ts52: Move B1 Ts52 Kermit\n\n16) nycavri: Trade B1 G1 Nycavri\n\n17) ts52: Trade Y2 R2 Ts52\n\n18) nycavri: Discover B1 Deacon Y3 May\n\n19) ts52: Build R1 Ts52\n\n20) nycavri: Trade G1 R1 Nycavri\n\n21) ts52: Build G1 Ts52\n\n22) nycavri: Move Y2 Deacon May\n\n23) ts52: Build G1 Ts52\n\n24) nycavri: Trade Y2 G2 May\n\n25) ts52: Discover G1 Ts52 B3 Gonzo\n\n26) nycavri: Build Y1 Nycavri\n\n27) ts52: Build Y2 Kermit\n\n28) nycavri: Discover Y1 Nycavri G1 Mercury\n\n29) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n30) nycavri: Build Y2 Mercury\n\n31) ts52: Move R2 Ts52 Kermit\n\n32) nycavri: Build Y2 Nycavri\n\n33) ts52: Discover G1 Ts52 Y3 Bigbird\n\n34) nycavri: Discover Y1 Mercury B3 Taylor\n\n35) ts52: Discover Y2 Kermit B1 Grover\n\n36) nycavri: Move Y2 Mercury Taylor\n\n37) ts52: Sacrifice G1 Bigbird\nBuild Y3 Grover\n\n38) nycavri: Sacrifice Y2 Taylor\nDiscover G2 May R1 Pause\nMove G2 Pause Gonzo\nCatastrophe Gonzo G\n\n39) ts52: Build Y2 Kermit\n\n40) nycavri: Discover Y2 Nycavri G1 Edney\n\n41) ts52: Build B2 Kermit\n\n42) nycavri: Move Y2 Edney May\n\n43) ts52: Discover B2 Kermit G1 Robin\n\n44) nycavri: Trade Y1 G1 Taylor\n\n45) ts52: Build Y1 Kermit\n\n46) nycavri: Build G1 Taylor\n\n47) ts52: Trade Y2 G2 Grover\n\n48) nycavri: Build Y2 Nycavri\n\n49) ts52: Sacrifice G2 Grover\nBuild B2 Kermit\nBuild B3 Robin\n\n50) nycavri: Discover Y2 Nycavri R1 Mercury\n\n51) ts52: Build R2 Ts52\n\n52) nycavri: Move Y2 Mercury Taylor\n\n53) ts52: Trade B2 G2 Kermit\n\n54) nycavri: Trade Y2 G2 May\n\n55) ts52: Trade B3 G3 Robin\n\n56) nycavri: Build B2 May\n\n57) ts52: Sacrifice G2 Kermit\nBuild B3 Kermit\nBuild Y2 Grover\n\n58) nycavri: Move G1 Taylor Ts52\n\n59) ts52: Attack G1 Ts52\n\n60) nycavri: Sacrifice Y2 Taylor\nMove G1 Taylor Ts52\nMove G2 May Ts52\nCatastrophe Ts52 G\n\n61) ts52: Sacrifice Y1 Kermit\nMove G3 Robin May\n\n62) nycavri: Build Y1 Nycavri\n\n63) ts52: Sacrifice R2 Kermit\nAttack B1 May\nAttack B2 May\n\n64) nycavri: Discover Y1 Nycavri G1 Mercury\n\n65) ts52: Build B3 Robin\n\n66) nycavri: Build Y2 Mercury\n\n67) ts52: Build G1 May\n\n68) nycavri: Discover Y2 Mercury G3 Taylor\n\n69) ts52: Move G3 May Ts52\n\n70) nycavri: Build R1 Nycavri\n\n71) ts52: Build G2 Ts52\n\n72) nycavri: Build R2 Nycavri\n\n73) ts52: B G2 May\n\n74) nycavri: Move R2 Nycavri Mercury\n\n75) ts52: Move R2 Ts52 May\n\n76) nycavri: Move R1 Nycavri Mercury\n\n77) ts52: Move Y2 Kermit Robin\n\n78) nycavri: Move R2 Mercury Taylor\n\n79) ts52: M G2 Ts52 May\n\tnycavri: I love that it&#39;s Queen versus Muppets!\n\n80) nycavri: Build R2 Taylor\n\n81) ts52: Sacrifice G2 May\nBuild R3 May\nBuild R3 Ts52\n\tts52: Me too!\n\n82) nycavri: Build R3 Nycavri\n\n83) ts52: Build G2 May\n\n84) nycavri: Move R1 Nycavri Mercury\n\n85) ts52: Move R1 Ts52 Kermit\n\n86) nycavri: Move R1 Mercury Taylor\n\n87) ts52: Move B1 May Grover\n\n88) nycavri: Move R1 Taylor Ts52\n\n89) ts52: Move B1 Grover Nycavri\n\n90) nycavri: Move R2 Taylor Ts52\n\n91) ts52: Sacrifice Y2 Grover\nMove B2 Robin Nycavri\nMove B3 Robin Nycavri\nCatastrophe Nycavri Blue\n\n92) nycavri: Move R2 Taylor Ts52\nCatastrophe Ts52 R\n\n93) ts52: Sacrifice Y3 Grover\nMove G1 May Nycavri\nMove G2 May Nycavri\nMove G2 May Nycavri\nCatastrophe Nycavri Green\n\n\tts52: Good game. Thanks!\n\nHomeworlds Online (SDG# 35875)\nStarted: 2020.2.28, Ended: 2020.5.13\nParticipants: Dther (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld B1 G3 Y3\n\n2) Dther: Homeworld Y2 G1 B3\n\n3) capi3101: B Y1 Capi3101\n\n4) Dther: Build B1 Dther\n\n5) capi3101: Build Y1 Capi3101\n\n6) Dther: Build B1 Dther\n\n7) capi3101: Discover Y1 Capi3101 G2 Aleph\n\n8) Dther: Discover B1 Dther G3 Algae\n\n9) capi3101: B Y1 Aleph\n\n10) Dther: Build B2 Algae\n\n11) capi3101: Discover Y1 Aleph G3 Bet\n\n12) Dther: Trade B2 Y2 Algae\n\n13) capi3101: Build Y2 Aleph\n\n14) Dther: Build Y3 Algae\n\n15) capi3101: B Y3 Bet\n\n\tcapi3101: Going to go ahead and terminate the game as unrated; 48 days is a long enough wait. Hoping you didn&#39;t catch corona or have experienced any hardships because of it.\n\nHomeworlds Online (SDG# 35979)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2020.2.28, Ended: 2020.3.3\nParticipants: rho0 (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld B1 G3 Y3\n\n\nHomeworlds Online (SDG# 35983)\nVariants: &quot;Hard time&quot;\nStarted: 2020.2.28, Ended: 2020.3.3\nParticipants: dlwillson (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld B1 G3 Y3\n\n2) dlwillson: H Y3 B2 G3 Dlwillson\n\n3) capi3101: B Y1 Capi3101\n\n\tdlwillson: Oh, Heck. Sorry!\n\nHomeworlds Online (SDG# 36001)\nVariants: &quot;Unrated&quot;\nStarted: 2020.2.28, Ended: 2020.3.10\nParticipants: capi3101 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y3 G1 B3\n\n2) capi3101: Homeworld B1 G2 Y3\n\tBabamots: I&#39;ll try a different start today. Let&#39;s see what happens!\n\n3) Babamots: Build B1 Babamots\n\n4) capi3101: B Y1 Capi3101\n\n5) Babamots: Build B1 Babamots\n\n6) capi3101: D Y1 Capi3101 G3 Aleph\n\tcapi3101: Best of luck.\n\n7) Babamots: Discover B1 Babamots G2 Orion\n\n8) capi3101: Build Y1 Capi3101\n\n9) Babamots: Build B2 Orion\n\n10) capi3101: Build Y1 Aleph\n\n11) Babamots: Build B2 Orion\n\n12) capi3101: Build Y2 Aleph\n\n13) Babamots: Build B2 Babamots\n\tcapi3101: Uh-oh.\n\n14) capi3101: Discover Y1 Capi3101 B3 Bet\n\tBabamots: I don&#39;t really know how this will go. You&#39;re dominating the yellow economy (which is usually how I try to win), but I might get a head start on larges.\n\n15) Babamots: Discover B2 Babamots G2 Risa\n\n16) capi3101: B Y2 Capi3101\n\n17) Babamots: Build B3 Risa\n\n18) capi3101: Trade Y3 G3 Capi3101\n\n19) Babamots: Trade B3 Y3 Risa\n\n20) capi3101: Sacrifice G3 Capi3101\nBuild Y2 Bet\nBuild Y3 Capi3101\nPass\n\n21) Babamots: Build B3 Risa\n\tcapi3101: Hmm...that&#39;s no bueno...\n\n22) capi3101: Discover Y1 Aleph R2 Gimel\n\n23) Babamots: Discover B2 Risa R3 Romulus\n\n24) capi3101: Move Y1 Aleph Gimel\n\n25) Babamots: Trade B3 R3 Risa\n\n26) capi3101: Trade Y1 R1 Bet\n\n27) Babamots: Build B3 Babamots\n\n28) capi3101: B Y1 Aleph\n\n29) Babamots: Move B3 Babamots Gimel\n\n30) capi3101: Sacrifice Y1 Gimel\nMove Y1 Gimel Babamots\n\tcapi3101: Ugh. Here&#39;s where the difference in ship strength is going to bite me in the butt. And boy howdy is there a difference - 17 to 10 pips alone (not counting the homeworld larges).\n\tcapi3101: Letting you get the large yellow is going to cost me the game, I think. If I move out one small yellow at Gimel, you get the other one. If, however, I sacrifice a medium yellow to move both out, you build it right back. If I squonk the one small yellow to move the other, you build that one instead.\n\tcapi3101: You&#39;re still relatively immobile for now though. Trying to figure out how to keep it that way...\n\tcapi3101: Naw, I can&#39;t keep you immobile. You&#39;ve got more large ships that me; that&#39;s bad in and of itself.\n\tcapi3101: Well, let&#39;s get this over with then.\n\n31) Babamots: Trade B3 R3 Babamots\n\tBabamots: In my strategy guide, I ranked &quot;Large ship majority&quot; one step stronger than &quot;Yellow ship majority.&quot; Looks like this game may bear out that principle.\n\n32) capi3101: Build Y1 Babamots\n\n33) Babamots: Move R3 Risa Aleph\n\tcapi3101: Yes, I need to attempt to disperse my fleet if possible. Meanwhile...\n\n34) capi3101: Sacrifice Y2 Aleph\nMove Y1 Aleph Risa\nMove Y1 Risa Babamots\nCatastrophe Babamots Y\n\tBabamots: You may take my yellow star, but you&#39;ll never take my greeeeeeen oooooooone!\n\tcapi3101: Probably not. But at least I&#39;ll feel good about myself for a little bit...\n\n35) Babamots: Sacrifice Y3 Risa\nMove B3 Gimel Aleph\nMove B3 Aleph Capi3101\nMove R3 Aleph Capi3101\n\n\tcapi3101: Hang on. You moved before I was looking.\n\tcapi3101: Aw....\n\tcapi3101: ...and now that good feeling is gone all of a sudden. Crapbiscuit.\n\tBabamots: GG! And I can tell you&#39;re getting stronger. Was it five months ago you&#39;d never even played? The practice is paying off!\n\tcapi3101: I&#39;d played before, just not for a ~very~ long time. Like, around the time this version of the game was still called Binary Homeworlds, just after it evolved out of IceTraders...\n\tcapi3101: Pretty sure I lost this one when you got the large yellow. Not dipping into blue at any point also hurt, since I couldn&#39;t do much to keep you from getting the big blues. I suppose I might&#39;ve traded out my large yellow at home for one at some point.\n\tcapi3101: Ah well. GG.\n\nHomeworlds Online (SDG# 36033)\nStarted: 2020.2.28, Ended: 2020.4.27\nParticipants: capi3101 (S), pedrop (N)\nWinner: capi3101\n\n1) pedrop: Homeworld G3 Y1 B3\n\n2) capi3101: Homeworld B1 G2 Y3\n\n3) pedrop: Build B1 Pedrop\n\n4) capi3101: Build Y1 Capi3101\n\n5) pedrop: Build B1 Pedrop\n\n6) capi3101: Build Y1 Capi3101\n\n7) pedrop: Discover B1 Pedrop G2 Cylons\n\n8) capi3101: Discover Y1 Capi3101 B3 Aleph\n\n9) pedrop: Build B2 Cylons\n\n10) capi3101: B Y2 Capi3101\n\n11) pedrop: Trade B2 Y2 Cylons\n\n12) capi3101: T Y3 G3 Capi3101\n\n13) pedrop: Build B2 Cylons\n\n14) capi3101: Discover Y1 Capi3101 B3 Bet\n\n15) pedrop: Trade B2 G2 Cylons\n\n16) capi3101: Sacrifice G3 Capi3101\nBuild Y2 Bet\nBuild Y3 Aleph\nBuild Y3 Capi3101\n\n17) pedrop: Build Y3 Cylons\n\n18) capi3101: Sacrifice Y2 Bet\nMove Y1 Bet Cylons\nMove Y1 Aleph Cylons\nCatastrophe Cylons Y\n\n19) pedrop: Trade B1 Y1 Cylons\n\n20) capi3101: Build Y1 Capi3101\n\n21) pedrop: Build Y2 Cylons\n\n22) capi3101: Move Y2 Capi3101 Aleph\n\n23) pedrop: Discover Y1 Cylons B1 Adama\n\n24) capi3101: Trade Y1 R1 Capi3101\n\n25) pedrop: Build Y1 Cylons\n\n26) capi3101: D Y3 Aleph B2 Bet\n\n27) pedrop: Sacrifice B1 Pedrop\nTrade Y1 R1 Cylons\n\n28) capi3101: B Y1 Capi3101\n\n29) pedrop: Sacrifice G2 Cylons\nBuild Y2 Cylons\nBuild Y3 Adama\n\n30) capi3101: Build R1 Capi3101\n\n31) pedrop: Build B1 Pedrop\n\n32) capi3101: Move R1 Capi3101 Aleph\n\n33) pedrop: Build R2 Cylons\n\n34) capi3101: Build R2 Capi3101\n\n35) pedrop: Move Y3 Adama Aleph\n\n36) capi3101: Move Y2 Aleph Adama\n\n37) pedrop: Sacrifice R1 Cylons\nAttack R1 Aleph\n\n38) capi3101: Sacrifice R1 Capi3101\nAttack Y1 Adama\n\n39) pedrop: Build B2 Pedrop\n\n40) capi3101: Trade Y2 B2 Adama\n\n41) pedrop: Move B1 Pedrop Cylons\n\n42) capi3101: Discover Y1 Capi3101 B3 Gimel\n\n43) pedrop: Trade B2 Y2 Pedrop\n\n44) capi3101: Discover Y1 Adama B2 Dalet\n\n45) pedrop: Build R1 Cylons\n\n46) capi3101: Trade B2 G2 Adama\n\n47) pedrop: Build B2 Pedrop\n\n48) capi3101: Move Y1 Dalet Pedrop\n\n49) pedrop: Discover Y2 Pedrop R2 Six\n\n50) capi3101: Move Y1 Gimel Adama\n\n51) pedrop: Sacrifice R1 Cylons\nAttack Y1 Pedrop\n\tpedrop: Are You the Infinity fan?\n\tcapi3101: Pretty sure I&#39;m not; why do you ask?\n\n52) capi3101: Move G2 Adama Bet\n\tpedrop: I thought that Aleph is one of Infinity factions... thats all.\n\n53) pedrop: Build B2 Cylons\n\tcapi3101: It might be. I typically name my systems after the letters in the Hebrew alphabet. Everybody tends to use Greek; I find it a nice change of pace.\n\n54) capi3101: Move Y1 Adama Bet\n\n55) pedrop: Discover B1 Cylons G1 Starbuck\n\n56) capi3101: Build G1 Bet\n\n57) pedrop: Build B1 Starbuck\n\n58) capi3101: Build G1 Bet\n\n59) pedrop: Build B3 Cylons\n\n60) capi3101: Move G1 Bet Starbuck\n\n61) pedrop: Move B3 Cylons Aleph\n\n62) capi3101: Build G3 Bet\n\n63) pedrop: Trade B3 G3 Aleph\n\n64) capi3101: Move G2 Bet Pedrop\n\n65) pedrop: Build B3 Cylons\n\n66) capi3101: Move G3 Bet Pedrop\n\n67) pedrop: Sacrifice R1 Aleph\nAttack G3 Pedrop\n\n68) capi3101: Move G1 Bet Pedrop\nCatastrophe Pedrop G\n\n69) pedrop: Move Y1 Pedrop Six\n\n70) capi3101: Build R1 Capi3101\n\n71) pedrop: Move R2 Cylons Starbuck\n\tcapi3101: Moving that y1 into your home system too early may very well cost me the game...\n\n72) capi3101: Build G1 Starbuck\n\n73) pedrop: B G2 Aleph\n\tpedrop: Thats why, it was very important decision from my side what to do now... lets see if I choose good...:)\n\n74) capi3101: Build G3 Starbuck\nCatastrophe Starbuck G\n\n75) pedrop: Sacrifice G2 Aleph\nBuild B1 Cylons\nBuild B1 Pedrop\n\n76) capi3101: M Y3 Bet Pedrop\n\n77) pedrop: Trade G3 R3 Aleph\n\n78) capi3101: S R2 Capi3101\nA B3 Pedrop\nA B2 Pedrop\n\n79) pedrop: Sacrifice Y3 Aleph\nMove B1 Cylons Pedrop\nCatastrophe Pedrop Blue\nMove B3 Cylons Pedrop\nMove B2 Cylons Pedrop\n\n80) capi3101: Build Y3 Capi3101\n\tpedrop: ooops...\n\tcapi3101: Happens.\n\n81) pedrop: Sacrifice Y2 Six\nMove Y2 Cylons Aleph\nMove Y2 Aleph Capi3101\n\n82) capi3101: Trade Y3 R3 Capi3101\n\tcapi3101: Excellent counter-move, I must say. I&#39;m not as confident of a quick victory as I was earlier this morning.\n\n83) pedrop: S R3 Aleph\nA Y3 Pedrop\nA R1 Capi3101\nPass\n\n84) capi3101: Attack Y2 Capi3101\n\tpedrop: Yeah, I&#39;m also proud of that move... :) but it helped only a little... :(\n\n85) pedrop: Discover Y3 Pedrop G3 Liama\n\tcapi3101: No...you could sac the other yellow and blow things up. That trade is probably my best bet. Still haven&#39;t sealed the deal yet.\n\n86) capi3101: M Y1 Bet Pedrop\n\tpedrop: So I could make two sacrifices in one turn?\n\tcapi3101: No, only one sacrifice. Had I captured your yellow though, you could&#39;ve sacked the b2 at cylons, moved your y1 from Six to my homeworld, and blown my all my yellow up there. Would&#39;ve left me with just the small red there.\n\tcapi3101: I suppose I could&#39;ve allowed that and then on my next move swap the large yellow at your homeworld with a large red. There&#39;s a reason why you shouldn&#39;t consider moves before your morning coffee......\n\n87) pedrop: Trade B2 R2 Pedrop\n\n88) capi3101: Discover Y1 Pedrop G3 He\n\n89) pedrop: Build R1 Capi3101\n\n90) capi3101: Sacrifice R3 Capi3101\nAttack R1 Capi3101\nAttack R1 Capi3101\nPass\n\n91) pedrop: Move R2 Pedrop Cylons\n\tpedrop: You could win some time ago... just by sacrificing y3 and sending all yellow to my home system.\n\tcapi3101: I know. I&#39;ve made a few mistakes these last few moves.\n\tcapi3101: Like that last one.\n\n92) capi3101: Build Y2 He\n\n93) pedrop: Build Y3 Cylons\n\n94) capi3101: Move Y1 He Pedrop\n\n95) pedrop: Build R1 Cylons\n\n96) capi3101: S Y3 Capi3101\nM Y2 Capi3101 He\nM Y2 He Pedrop\nM Y2 He Pedrop\nC Pedrop Y\n\n\tpedrop: We will see:)\n\tcapi3101: Wait, no...I see it. Thanks for the game; if you want s re-match, just holler.\n\tpedrop: Good game! Thanks. I think I will arrange rematch - but not now. I don&#39;t have to much time right now and this game is thinky...! :)\n\nHomeworlds Online (SDG# 35980)\nStarted: 2020.2.29, Ended: 2020.3.20\nParticipants: MobyNostromo (S), nicknack (N)\nWinner: nicknack\n\n1) nicknack: Homeworld R2 B1 G3\n\n2) MobyNostromo: H Y2 B3 G3\n\n3) nicknack: Build G1 Nicknack\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) nicknack: Trade G1 Y1 Nicknack\n\n6) MobyNostromo: T G1 Y1 Mobynostromo\n\n7) nicknack: Build G1 Nicknack\n\n8) MobyNostromo: D Y1 Mobynostromo G1 Viridian\n\tnicknack: Your time is almost up, still want to play?\n\tMobyNostromo: Yes. Sorry about that.\n\n9) nicknack: Discover G1 Nicknack Y3 Amber\n\n10) MobyNostromo: B G1 Mobynostromo\n\tnicknack: No problem - Thanks for coming back to play!\n\tMobyNostromo: :)\n\n11) nicknack: Build G2 Nicknack\n\n12) MobyNostromo: B G2 Mobynostromo\n\n13) nicknack: Sacrifice G3 Nicknack\nBuild G2 Nicknack\nBuild G3 Nicknack\nBuild G3 Amber\n\n14) MobyNostromo: D G2 Mobynostromo B1 Azure\n\n15) nicknack: Trade G2 Y2 Nicknack\n\n16) MobyNostromo: S G3 Mobynostromo\nB G2 Azure\nB G3 Mobynostromo\nB Y1 Viridian\n\n17) nicknack: Trade G3 Y3 Nicknack\n\n18) MobyNostromo: S Y1 Viridian\nD G2 Azure Y3 Gold\n\n19) nicknack: Build G3 Nicknack\n\n20) MobyNostromo: S G3 Mobynostromo\nB G3 Mobynostromo\nB Y1 Viridian\nB Y2 Viridian\n\n21) nicknack: Sacrifice Y1 Nicknack\nDiscover G1 Amber Y1 Mustard\n\n22) MobyNostromo: D Y1 Viridian B2 Cobalt\n\tMobyNostromo: I love mustard!\n\n23) nicknack: Sacrifice Y3 Nicknack\nMove G3 Amber Mustard\nMove G1 Mustard Mobynostromo\nMove G3 Mustard Mobynostromo\nCatastrophe Mobynostromo Green\n\tnicknack: But you left your homeworld with only one color of ship!\r\nBeware the mustard invasion...\n\tnicknack: Thanks for the game! Hope to rematch soon.\n\tMobyNostromo: Ha, ha! That was a funny ending. The mustard detail made it perfect.\n\n\nHomeworlds Online (SDG# 35926)\nVariants: &quot;Hard time&quot;\nStarted: 2020.2.29, Ended: 2020.3.10\nParticipants: wil (S), nicknack (N)\nWinner: nicknack\n\n1) nicknack: Homeworld R2 B1 G3\n\n2) wil: H B3 Y1 G3\n\n3) nicknack: Build G1 Nicknack\n\n4) wil: B G1 Wil\n\n5) nicknack: Trade G1 Y1 Nicknack\n\twil: Good luck, have fun!\n\n6) wil: T G1 Y1 Wil\n\tnicknack: Thanks! Pyramid fan, but new to SDG. Glad to play!\n\n7) nicknack: Build Y2 Nicknack\n\n8) wil: B Y2 Wil\n\n9) nicknack: Build G1 Nicknack\n\n10) wil: D Y1 Wil G2 G2\n\n11) nicknack: Discover G1 Nicknack Y3 Beta\n\twil: Arcade?  Fav games?\n\n12) wil: S G3 Wil\nB Y2 G2\nB Y3 G2\nB Y3 Wil\n\tnicknack: Pre-Arcade pyramid gamer here :) Really like Homeworlds, Zendo, Martian Chess..  Been playing many more now that Arcade is around.\n\n13) nicknack: Sacrifice Y2 Nicknack\nMove Y1 Nicknack Beta\nMove Y1 Beta G2\nCatastrophe G2 Y\n\twil: First introduced with first zendo...\n\n14) wil: T Y2 G2 Wil\n\n15) nicknack: Build G1 Nicknack\n\n16) wil: B Y1 Wil\n\n17) nicknack: Trade G1 Y1 Nicknack\n\n18) wil: D Y1 Wil G2 G2\n\n19) nicknack: Build G1 Nicknack\n\n20) wil: B Y2 G2\n\n21) nicknack: Discover G1 Nicknack Y3 Gamma\n\n22) wil: M Y2 G2 Beta\n\n23) nicknack: Build G1 Nicknack\n\n24) wil: B Y2 Wil\n\n25) nicknack: Build Y2 Nicknack\n\n26) wil: T Y2 R2 Wil\n\n27) nicknack: Discover G1 Beta Y2 Delta\n\n28) wil: T Y3 G3 Wil\n\n29) nicknack: Sacrifice G3 Nicknack\nBuild G2 Delta\nBuild G3 Gamma\nBuild G3 Nicknack\n\n30) wil: S G2 Wil\nB Y3 G2\nB R1 Wil\n\n31) nicknack: Trade Y1 R1 Nicknack\n\n32) wil: T R1 B1 Wil\n\n33) nicknack: Discover G1 Gamma B2 Epsilon\n\n34) wil: B B1 Wil\n\n35) nicknack: Build G2 Epsilon\n\n36) wil: M B1 Wil G2\n\n37) nicknack: Build Y1 Nicknack\n\n38) wil: B B2 Wil\n\n39) nicknack: Discover Y2 Nicknack B3 Zeta\n\n40) wil: B B2 G2\n\n41) nicknack: Sacrifice G3 Gamma\nBuild Y3 Zeta\nBuild G3 Nicknack\nBuild R1 Nicknack\n\n42) wil: B B3 G2\n\n43) nicknack: Sacrifice Y2 Zeta\nMove Y3 Zeta Epsilon\nMove G3 Nicknack Beta\n\n44) wil: D Y2 Beta Y2 Y2\n\n45) nicknack: Sacrifice G3 Beta\nBuild G3 Nicknack\nBuild Y3 Nicknack\nPass\n\n46) wil: T B3 R3 G2\n\n47) nicknack: Discover R1 Nicknack B3 Beta\n\n48) wil: B B3 G2\n\n49) nicknack: Sacrifice Y3 Nicknack\nMove G1 Delta Wil\nMove G1 Epsilon Wil\nMove G2 Epsilon Wil\nCatastrophe Wil Green\n\n50) wil: S Y2 Y2\nD B1 Wil G2 Gee2\nM B3 G2 Wil\n\n51) nicknack: Sacrifice G3 Nicknack\nBuild Y2 Epsilon\nBuild Y2 Epsilon\nBuild Y3 Nicknack\n\n52) wil: T B3 G3 Wil\n\n53) nicknack: Trade G3 B3 Nicknack\n\n54) wil: B G1 Wil\n\n55) nicknack: Sacrifice Y2 Epsilon\nMove Y3 Epsilon Beta\nMove Y3 Beta Gee2\n\n56) wil: S Y1 G2\nD B1 Gee2 G3 G3\n\n57) nicknack: Discover B3 Nicknack R3 Gamma\n\n58) wil: T B2 Y2 G2\n\n59) nicknack: Sacrifice G2 Delta\nBuild Y1 Gee2\nBuild Y2 Epsilon\n\n60) wil: M Y2 G2 Beta\n\n61) nicknack: Sacrifice G1 Nicknack\nBuild B2 Gamma\n\n62) wil: B R1 G2\n\n63) nicknack: Sacrifice Y1 Nicknack\nMove B2 Gamma Gee2\n\n64) wil: M R3 G2 Beta\n\n65) nicknack: Trade R1 G1 Nicknack\n\n66) wil: A R1 Beta\n\n67) nicknack: Sacrifice Y3 Gee2\nMove B3 Gamma Gee2\nMove B3 Gee2 Wil\nMove B2 Gee2 Wil\nCatastrophe Wil Blue\n\n68) wil: M R3 Beta Nicknack\n\twil: And that appears to be game!\n\tnicknack: Wow, thank you for this excellent game! Some really tense moments in there! Like I mentioned, I&#39;m new to SDG, and I&#39;m thrilled to have played against such a great opponent. Rematch, I hope?\n\twil: This will make it look like I was close!  Good Game\n\n69) nicknack: Sacrifice Y3 Nicknack\nMove Y1 Gee2 Wil\nMove Y2 Epsilon Wil\nMove Y2 Epsilon Wil\nCatastrophe Wil Yellow\n\twil: Challenge me anytime, I need those synapses firing.\n\twil: Ya won with one small green ship!  That record can&#39;t be beat!\n\n\nHomeworlds Online (SDG# 36081)\nStarted: 2020.2.29, Ended: 2020.3.10\nParticipants: MobyNostromo (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: H R1 B2 G3\n\n2) MobyNostromo: H B2 Y3 G3\n\teliscinsky: Greetings MobyNostromo! Good luck and have fun. \n\tMobyNostromo: Hi eliscinsky. You too. \n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) MobyNostromo: T G1 Y1 Mobynostromo\n\n7) eliscinsky: Build G1 Eliscinsky\n\n\nHomeworlds Online (SDG# 36080)\nStarted: 2020.3.1, Ended: 2020.4.16\nParticipants: bhorner (S), DodoBirb (N)\nWinner: bhorner\n\n1) DodoBirb: Homeworld B1 Y2 G3\n\n2) bhorner: Homeworld B2 R1 G3\n\tDodoBirb: Good luck!\n\tbhorner: For the Great Homeworlds Tournament 2020 right?  :)\r\nGood luck to you too!\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) bhorner: Build G1 Bhorner\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) DodoBirb: Build B2 Dodobirb\n\n8) bhorner: Build B2 Bhorner\n\n9) DodoBirb: Discover B2 Dodobirb G3 Greeny\n\n10) bhorner: Trade B1 Y1 Bhorner\n\n11) DodoBirb: Build G1 Dodobirb\n\n12) bhorner: Build Y1 Bhorner\n\n13) DodoBirb: Trade G1 Y1 Dodobirb\n\n14) bhorner: Build Y2 Bhorner\n\n15) DodoBirb: Trade B2 Y2 Greeny\n\n16) bhorner: Move Y1 Bhorner Greeny\n\n17) DodoBirb: Trade Y1 R1 Dodobirb\n\n18) bhorner: Build Y1 Greeny\n\n19) DodoBirb: Build R1 Dodobirb\n\n20) bhorner: Discover Y1 Greeny G2 Bush\n\n21) DodoBirb: Move R1 Dodobirb Greeny\n\n22) bhorner: Sacrifice G3 Bhorner\nBuild Y3 Greeny\nBuild Y3 Bhorner\nBuild Y3 Bush\n\n23) DodoBirb: Move R1 Greeny Dodobirb\n\n24) bhorner: Trade Y2 R2 Bhorner\n\n25) DodoBirb: Build Y2 Greeny\nCatastrophe Greeny Y\n\n26) bhorner: Trade Y3 G3 Bhorner\n\n27) DodoBirb: Build R2 Dodobirb\n\n28) bhorner: Build G1 Bhorner\n\n29) DodoBirb: Trade R1 Y1 Dodobirb\n\n30) bhorner: Discover Y1 Bush R3 Lava\n\n31) DodoBirb: Discover Y1 Dodobirb G3 Bigbush\n\n32) bhorner: Discover G1 Bhorner R3 Lava2\n\n33) DodoBirb: Build Y2 Bigbush\n\n34) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Bush\nBuild Y3 Lava\nBuild Y3 Bhorner\n\n35) DodoBirb: Build G1 Dodobirb\n\n36) bhorner: Trade Y3 G3 Bhorner\n\n37) DodoBirb: Discover Y1 Bigbush G2 Medgren\n\n38) bhorner: Build Y3 Bhorner\n\n39) DodoBirb: Move B1 Dodobirb Bigbush\n\n40) bhorner: Sacrifice B2 Bhorner\nTrade Y1 R1 Lava\nTrade Y2 R2 Bush\n\n41) DodoBirb: Move R2 Dodobirb Bigbush\n\n42) bhorner: Build R3 Bush\n\n43) DodoBirb: Build B1 Bigbush\n\n44) bhorner: Sacrifice Y3 Bush\nMove G3 Bhorner Lava2\nMove G1 Lava2 Dodobirb\nMove G3 Lava2 Dodobirb\nCatastrophe Dodobirb G\n\n45) DodoBirb: Build R3 Bigbush\n\n46) bhorner: Move Y3 Lava Dodobirb\n\n47) DodoBirb: Pass\n\tDodoBirb: Good game, I certainly made some mistakes early on.\n\n48) bhorner: Sacrifice R1 Lava\nAttack R1 Dodobirb\n\n\nHomeworlds Online (SDG# 36082)\nStarted: 2020.3.1, Ended: 2020.4.24\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: Draw5PlayAll\n\n1) ts52: Homeworld Y1 B2 G3\n\tts52: This is for the 2019 tournament, right?\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: Yes\n\n3) ts52: Build G1 Ts52\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ts52: Build Y2 Ts52\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) Draw5PlayAll: Discover Y1 Draw5playall G2 Rocket\n\n11) ts52: Build G1 Ts52\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) ts52: Trade G1 R1 Ts52\n\n14) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n15) ts52: Build R2 Ts52\n\n16) Draw5PlayAll: Build R2 Draw5playall\n\n17) ts52: Move R2 Ts52 Kermit\n\n18) Draw5PlayAll: Move R2 Draw5playall Rocket\n\n19) ts52: Build G1 Ts52\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) ts52: Trade G1 B1 Ts52\n\n22) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n23) ts52: Move B1 Ts52 Kermit\n\n24) Draw5PlayAll: Move B1 Draw5playall Rocket\n\n25) ts52: Build G1 Ts52\n\n26) Draw5PlayAll: Build G1 Draw5playall\n\n27) ts52: Discover G1 Ts52 B3 Gonzo\n\tDraw5PlayAll: If I had something better to do then I would do it.\n\n28) Draw5PlayAll: Discover G1 Draw5playall B2 Jackpot\n\n29) ts52: Move Y2 Ts52 Gonzo\n\n30) Draw5PlayAll: Move Y2 Draw5playall Jackpot\n\n31) ts52: Build G1 Ts52\n\n32) Draw5PlayAll: Build G2 Draw5playall\n\n33) ts52: Build B1 Kermit\n\n34) Draw5PlayAll: Build G2 Jackpot\n\n35) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\nBuild G3 Ts52\n\n36) Draw5PlayAll: Build R3 Rocket\n\n37) ts52: Move R3 Ts52 Gonzo\n\n38) Draw5PlayAll: Discover G2 Jackpot R3 Countdown\n\n39) ts52: Move R3 Gonzo Jackpot\n\n40) Draw5PlayAll: Sacrifice Y2 Jackpot\nDiscover G1 Jackpot B3 Taxation\nMove R3 Rocket Gonzo\n\n41) ts52: Move Y2 Gonzo Jackpot\n\n42) Draw5PlayAll: Sacrifice G2 Countdown\nBuild R3 Rocket\nBuild Y2 Rocket\n\n43) ts52: Sacrifice Y2 Jackpot\nMove G1 Gonzo Jackpot\nMove R3 Jackpot Taxation\n\n44) Draw5PlayAll: Move Y2 Rocket Draw5playall\n\n45) ts52: Build Y2 Kermit\n\n46) Draw5PlayAll: Move G2 Draw5playall Jackpot\n\n47) ts52: Attack G1 Taxation\n\n48) Draw5PlayAll: Trade G2 Y2 Jackpot\n\n49) ts52: Discover Y2 Kermit G2 Robin\n\n50) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Rocket\nBuild Y3 Jackpot\n\n51) ts52: Move B1 Kermit Robin\n\n52) Draw5PlayAll: Build B2 Rocket\n\n53) ts52: Sacrifice G3 Ts52\nBuild G2 Taxation\nBuild G3 Ts52\nBuild G3 Ts52\n\n54) Draw5PlayAll: Move Y3 Rocket Kermit\n\n55) ts52: Move R2 Kermit Robin\n\n56) Draw5PlayAll: Sacrifice R2 Rocket\nAttack G1 Jackpot\nAttack R2 Kermit\n\n57) ts52: Move B1 Kermit Robin\n\n58) Draw5PlayAll: Sacrifice Y3 Jackpot\nMove G1 Jackpot Gonzo\nMove G1 Gonzo Ts52\nMove R3 Gonzo Ts52\nCatastrophe Ts52 Green\n\n59) ts52: Sacrifice Y1 Kermit\nMove R3 Taxation Ts52\n\n60) Draw5PlayAll: Sacrifice R2 Kermit\nAttack R3 Ts52\nAttack R1 Ts52\n\n\tts52: Indeed. Well played.\n\nHomeworlds Online (SDG# 36069)\nStarted: 2020.3.1, Ended: 2020.3.7\nParticipants: eliscinsky (S), Dther (N)\nWinner: eliscinsky\n\n1) Dther: Homeworld Y2 B1 G3\n\n2) eliscinsky: Homeworld B2 R3 G3\n\n\teliscinsky: Greetings Dther! GL / HF!\n\tDther: Very sorry about that. I&#39;m trying to get into the habit of checking my games more frequently...\n\nHomeworlds Online (SDG# 36072)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.1, Ended: 2020.3.11\nParticipants: Babamots (S), eliscinsky (N)\nWinner: Babamots\n\n1) eliscinsky: Homeworld R1 B2 G3\n\teliscinsky: So let&#39;s try this again shall we?\n\n2) Babamots: Homeworld R2 B1 G3\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) Babamots: Build G1 Babamots\n\teliscinsky: Well, that 1st HW choice of yours would have been quite interesting. ;) I guess you didn&#39;t want me to get the upper hand on RED to quickly.  Still I think this will be an interesting (at least for me) and quick game.\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\tBabamots: Yeah, copying your homeworld would have been a big problem, but b2 r1 is a habit. This is what I intended.\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) Babamots: Build G1 Babamots\n\n9) eliscinsky: Trade G1 B1 Eliscinsky\n\n10) Babamots: Trade G1 B1 Babamots\n\n11) eliscinsky: Build G1 Eliscinsky\n\n12) Babamots: Build B2 Babamots\n\n13) eliscinsky: Build B2 Eliscinsky\n\n14) Babamots: Trade B1 R1 Babamots\n\n15) eliscinsky: Trade B2 R2 Eliscinsky\n\n16) Babamots: Build G1 Babamots\n\n17) eliscinsky: Discover R2 Eliscinsky G3 Mtndew\n\n18) Babamots: Discover G1 Babamots B3 Bolarus\n\n19) eliscinsky: Move G1 Eliscinsky Mtndew\n\n20) Babamots: Build G1 Babamots\n\n21) eliscinsky: Build G2 Eliscinsky\n\n22) Babamots: Build G2 Bolarus\n\n23) eliscinsky: Trade G2 Y2 Eliscinsky\n\n24) Babamots: Trade G2 Y2 Bolarus\n\n25) eliscinsky: Move Y1 Eliscinsky Mtndew\n\n26) Babamots: Build G2 Bolarus\n\n27) eliscinsky: Move B1 Eliscinsky Mtndew\n\n28) Babamots: Discover G1 Bolarus Y2 Iconia\n\n29) eliscinsky: Trade G1 B1 Mtndew\n\n30) Babamots: Discover B2 Babamots Y3 Aldea\n\n31) eliscinsky: Build B2 Mtndew\n\n32) Babamots: Sacrifice G3 Babamots\nBuild Y1 Bolarus\nBuild Y3 Bolarus\nBuild Y3 Babamots\n\n33) eliscinsky: Build R1 Mtndew\n\teliscinsky: You could have stayed with that 1st move. I couldn&#39;t get your construction economy. ;)\n\tBabamots: I didn&#39;t really want you destroying one of my home stars just yet. I may have been able to come back from it, but I&#39;d rather not chance it.\n\n34) Babamots: Sacrifice G2 Bolarus\nBuild G1 Iconia\nBuild B3 Aldea\n\n35) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y1 Mtndew Iconia\nMove Y1 Iconia Bolarus\nCatastrophe Bolarus Y\n\n36) Babamots: Sacrifice Y3 Babamots\nMove G1 Iconia Mtndew\nMove G1 Iconia Mtndew\nMove G1 Babamots Mtndew\nCatastrophe Mtndew G\n\n37) eliscinsky: Build G1 Eliscinsky\n\n38) Babamots: Trade B3 G3 Aldea\n\n39) eliscinsky: T G1 Y1 Eliscinsky\n\n40) Babamots: Build G1 Aldea\n\n41) eliscinsky: Build G1 Eliscinsky\n\tBabamots: My wife laughed when I muttered to myself &quot;I&#39;m sending eliscinsky back to the stone age.&quot; :-)\n\teliscinsky: GROUNDHOG DAY!\r\nDO OVER!\r\nIf I have to start over, shouldn&#39;t you?\r\n:P\n\teliscinsky: I think I can,\r\nI think I can,\r\nI think I can!\r\n\n\n42) Babamots: Move G3 Aldea Eliscinsky\n\n43) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y1 Eliscinsky\nBuild G1 Eliscinsky\nBuild G2 Eliscinsky\nCatastrophe Eliscinsky G\n\n44) Babamots: Move B2 Aldea Eliscinsky\n\n45) eliscinsky: Trade Y1 G1 Eliscinsky\n\n46) Babamots: Attack G1 Eliscinsky\n\n47) eliscinsky: Pass\n\n48) Babamots: Attack Y1 Eliscinsky\n\n\teliscinsky: I surrender, Do with me as you will!\n\teliscinsky: Oh, and thanks for another game. Just let me know if I get tiresome.\n\nHomeworlds Online (SDG# 36043)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.6, Ended: 2020.5.5\nParticipants: capi3101 (S), akuden (W), eliscinsky (N), pedrop (E)\nWinner: capi3101\n\n1) eliscinsky: Homeworld R1 B2 G3\n\teliscinsky: Greetings Captains! I&#39;ve never played more than Binary HW.  This should be fun!\n\n2) pedrop: Homeworld Y3 B1 G3\n\tcapi3101: It has indeed been many a year since I played multi-player...and never with four. Should be interesting. Best of luck to all of you.\n\n3) capi3101: Homeworld B2 G3 Y3\n\tpedrop: Yeh. I have played it also like 10 years ago...:) I&#39;m interested if my brain will explode... ;) It is good and evil variant somewhere? Where I can find if I&#39;m good or evil?\n\n4) akuden: Homeworld Y2 B3 G3\n\tcapi3101: The tough choice goes to akuden...which of the rest of us is he directly adjacent to...\n\teliscinsky: I don&#39;t think (see where) SDG can do G vs. E.  So my understanding is that this is a &quot;Last player standing&quot; game.  GL 2 all!\n\teliscinsky: The only option available in the challenge screen is for ... Sinister -&gt; This variant is a 3-4 player alternative to the default &quot;Last Man Standing&quot; end-of-game condition. Here, the player that eliminates the player to his left is victorious.\r\n\r\nSince I didn&#39;t see that option selected for this game, it is by default a &quot;Last Man Standing&quot; end-of-game condition.\n\tcapi3101: Translation: we are all either for good or for awesome...\n\n5) eliscinsky: Build G1 Eliscinsky\n\takuden: GL everyone! This is my second game and with 4 players. I&#146;m looking forward to it.\n\n6) pedrop: Build G1 Pedrop\n\n7) capi3101: Build Y1 Capi3101\n\n8) akuden: Build G1 Akuden\n\n9) eliscinsky: T G1 Y1 Eliscinsky\n\n10) pedrop: Discover G1 Pedrop B2 Cylons\n\n11) capi3101: Build Y1 Capi3101\n\n12) akuden: Trade G1 Y1 Akuden\n\n13) eliscinsky: Build G1 Eliscinsky\n\n14) pedrop: Build G1 Cylons\n\n15) capi3101: D Y1 Capi3101 G1 Aleph\n\n16) akuden: Build G1 Akuden\n\n17) eliscinsky: Build G2 Eliscinsky\n\n18) pedrop:\nBuild G2 Cylons\n\n19) capi3101: T Y1 B1 Capi3101\n\n20) akuden: Trade G1 Y1 Akuden\n\n21) eliscinsky: Discover G1 Eliscinsky Y3 Bigbird\n\n22) pedrop: Trade G1 Y1 Cylons\n\n23) capi3101: M Y1 Aleph Akuden\nC Akuden Y\n\n24) akuden: Build G1 Akuden\n\teliscinsky: So do we force a surrender or terminate the game. I would like to continue playing the game. So my vote is to force the surrender. Sorry pedrop.\n\n25) eliscinsky: Discover G1 Bigbird Y2 Triskelion\n\tpedrop: So fast to kill whole civilisation... from Pedrop homeworld... not so nice... ;)\n\n26) pedrop: Build G1 Pedrop\n\n27) capi3101: Build Y1 Capi3101\n\n28) akuden: Trade G1 Y1 Akuden\n\n29) eliscinsky: Build G1 Triskelion\n\n30) pedrop: Trade G1 R1 Pedrop\n\n31) capi3101: Trade Y1 R1 Capi3101\n\n32) akuden: Build Y1 Akuden\n\n33) eliscinsky: Trade G2 R2 Eliscinsky\n\n34) pedrop: Build R1 Pedrop\n\n35) capi3101: B B1 Capi3101\n\n36) akuden: Move Y1 Akuden Cylons\n\teliscinsky: pedrop ... What gives? You in the game or not?\n\n37) eliscinsky: B G1 Eliscinsky\n\n38) pedrop: Move R1 Pedrop Cylons\n\n39) capi3101: Discover B1 Capi3101 B1 Bet\n\n40) akuden: Build Y1 Akuden\n\n41) eliscinsky: B Y2 Eliscinsky\n\tcapi3101: Hmm. Looks like I don&#39;t have ruddy much of a choice but to open up the mediums for y&#39;all. Which color is it going to be, I reckon?\r\n\r\n(I can build yellow, red or blue, or I can swap for a green. Building blue would be dumb of me right now. Even discovering a new system would require me to utilize a small. That&#39;s my train of thought anyway).\n\tcapi3101: Well, I do have one other choice. But I don&#39;t like it.\n\n42) pedrop: Discover Y1 Cylons G3 Adama\n\n43) capi3101: Build Y2 Capi3101\n\n44) akuden: Move Y1 Akuden Triskelion\n\n45) eliscinsky: Sacrifice Y2 Eliscinsky\nMove G1 Triskelion Pedrop\nMove G1 Triskelion Pedrop\n\n46) pedrop: Attack Y1W Cylons\n\n47) capi3101: Move Y2 Capi3101 Bet\n\n48) akuden: Build Y2 Akuden\n\n49) eliscinsky: B G1 Pedrop\nC Pedrop G\n\n50) pedrop: Build Y2 Adama\n\n51) capi3101: Trade B1 G1 Capi3101\n\n52) akuden: Trade Y2 R2 Akuden\n\n53) eliscinsky: Discover R2 Eliscinsky Y3 Kaelon\n\n54) pedrop: Build Y2 Cylons\n\tpedrop: Ouh...\n\n55) capi3101: Build G1 Capi3101\n\n56) akuden: Build G1 Akuden\n\n57) eliscinsky: Build Y2 Eliscinsky\n\n58) pedrop: Sacrifice G2 Cylons\nBuild Y3 Cylons\nBuild Y3 Adama\n\n59) capi3101: Move G1 Capi3101 Bet\n\n60) akuden: Move G1 Akuden Triskelion\n\n61) eliscinsky: M Y1 Eliscinsky Adama\nC Adama Y\n\n62) pedrop: Move Y3 Cylons Pedrop\n\n63) capi3101: Build G2 Bet\n\n64) akuden: Build G2 Akuden\n\n65) eliscinsky: Move R2 Kaelon Triskelion\n\n66) pedrop: Build G2 Cylons\n\n67) capi3101: Discover G2 Bet B2 Gimel\n\n68) akuden: Move G2 Akuden Triskelion\n\n69) eliscinsky: A G2W Triskelion\n\n70) pedrop: Discover Y1 Cylons G3 Adama\n\teliscinsky: Just a curiosity ... where does everyone call home?\r\nI&#39;m in Maryland, USA\n\tcapi3101: Oklahoma, USA\n\teliscinsky: Pedrop, I need an explanation why we shouldn&#39;t force your surrender? This is the 3rd time you&#39;ve been up for surrender. What gives?\r\n\r\nI thought when we all signed up for this game we&#39;d be active. We&#39;ve been more than understanding. 3 times you&#39;ve gone past your timeout. It&#39;s like you&#39;ve disappeared. \n\teliscinsky: I&#39;ll wait until his listing above shows -24h / -1d, then ....\n\tcapi3101: I&#39;m not for forcing a surrender. That said, were one of y&#39;all to press the button, would the rest of us be able to continue play? I&#39;ve never done a four-player game in this format before; I don&#39;t know what would happen.\n\teliscinsky: I agree forcing a surrender is not my 1st option, however pedrop has done this 3 times now. I myself have been in situations where SDG was not emailing me when it was my turn. That is why I took it upon myself to check on my current games, which is easily done in the &quot;My SDG&quot; (profile area).\r\n\r\nI&#39;m all for giving a player enough time to consider all their options, but there is a reason for time limits. While I don&#39;t fancy baseball there is a &quot;3 strikes and you&#39;re out&quot; rule. If pedrop were to at least post that he&#39;s tied up for x period of time I&#39;d have no problem waiting.  Even when I&#39;ve had days to make my next move if something was going to hold me up I&#39;d say something.\r\n\r\nAs for FS / TG, considering the [button] options are ...\r\n1) Force Surrender (rated)\r\nand\r\n2) Terminate Game (unrated)\r\n\r\nI would assume the 1st option would only eliminate the single player, return that players ships and or empty stars to the bank, and allow the rest to continue. However this is also my 1st multi-player game.\n\n71) capi3101: Build G2 Gimel\n\tpedrop: Sorry, but I had more important things to do. Now I have 1h, let me make mare next move, after that if I won&#39;t be avaible - feel free to kick out me from this - game if it will not break it. I will be moving in future, but sometime I need more time. Sorry, again.\n\n72) akuden: Build G2 Akuden\n\n73) eliscinsky: Attack Y1W Triskelion\n\n74) pedrop: Move G1 Cylons Pedrop\n\n75) capi3101: Build G3 Bet\n\n76) akuden: Trade G2 R2 Akuden\n\n77) eliscinsky: Attack G1W Triskelion\n\n78) pedrop: Build G2 Cylons\n\n79) capi3101: Build Y1 Bet\n\n80) akuden: Trade R2 B2 Akuden\n\n81) eliscinsky: Move R2 Triskelion Adama\n\n82) pedrop: Build R1 Pedrop\n\n83) capi3101: Move Y2 Bet Gimel\n\n84) akuden: Move R2 Akuden Triskelion\n\n85) eliscinsky: S R2 Adama\nA R2W Triskelion\nPass\n\n86) pedrop: Trade R1 B1 Pedrop\n\n87) capi3101: Discover G2 Gimel Y3 Dalet\n\n88) akuden: Trade B2 R2 Akuden\n\n89) eliscinsky: Sacrifice G3 Eliscinsky\nBuild R1 Triskelion\nBuild Y1 Eliscinsky\nBuild G3 Eliscinsky\n\n90) pedrop: S G2 Cylons\nB Y2 Cylons\nB Y3 Adama\n\n91) capi3101: Build G2 Dalet\n\tpedrop: I wonder... why North hes undid his move... ;) ;)\n\n92) akuden: Build R2 Akuden\n\n93) eliscinsky: T G1 B1 Eliscinsky\n\n94) pedrop: Move B1 Pedrop Cylons\n\n95) capi3101: M G2 Dalet Gimel\n\n96) akuden: Build R2 Akuden\n\n97) eliscinsky: Move R1 Triskelion Akuden\nCatastrophe Akuden R\n\n98) pedrop: Move B1 Cylons Adama\n\n99) capi3101: Trade G2 R2 Gimel\n\n100) akuden: Trade Y1 R1 Akuden\n\n101) eliscinsky: B G1 Eliscinsky\n\n102) pedrop: Build G2 Cylons\n\n103) capi3101: Sacrifice G2 Dalet\nBuild Y1 Gimel\nBuild Y3 Capi3101\n\n104) akuden: Build R2 Akuden\n\n105) eliscinsky: Build R2 Triskelion\n\n106) pedrop: B G2 Pedrop\n\n107) capi3101: Sacrifice Y3 Capi3101\nMove Y1 Gimel Pedrop\nMove Y1 Bet Cylons\nMove Y1 Cylons Pedrop\nCatastrophe Pedrop Y\n\n108) akuden: Trade R1 Y1 Akuden\n\n109) eliscinsky: Sacrifice B1 Eliscinsky\nTrade Y1 B1 Triskelion\n\n110) pedrop: Move Y3 Adama Pedrop\n\n111) capi3101: B Y1 Capi3101\n\n112) akuden: Build R1 Akuden\n\n113) eliscinsky: Build B2 Triskelion\n\n114) pedrop: Build B3 Adama\n\n115) capi3101: Move Y1 Capi3101 Bet\n\n116) akuden: Discover Y1 Akuden R2 Lamas\n\n117) eliscinsky: S Y2 Eliscinsky\nM B1 Triskelion Pedrop\nM B2 Triskelion Pedrop\n\n118) pedrop: Attack B2N Pedrop\n\n119) capi3101: Sacrifice Y2 Gimel\nMove B1 Bet Gimel\nMove B1 Gimel Pedrop\nCatastrophe Pedrop B\n\n120) eliscinsky: Pass\n\n121) capi3101: Pass\n\n122) akuden: Build G1 Akuden\n\n123) eliscinsky: M R2 Triskelion Adama\n\n124) capi3101: Build G2 Gimel\n\n125) akuden: Trade R1 Y1 Akuden\n\tcapi3101: Hmm...I hate to paint myself as a target. Alas, I fear I must.\n\n126) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild Y2 Eliscinsky\nBuild R1 Triskelion\n\tcapi3101: Okay, so going through the rules, I have to reveal whether I am for good or for awesome. How exactly do I find that out?\r\n\r\nI was under the impression that pedrop&#39;s ships became mine automatically; after reviewing the rules, that&#39;s not the case - they&#39;ll stay on the board to be captured/destroyed. Makes sense. They&#39;ll still contribute to a drain on the economy.\n\teliscinsky: How is it my turn now? In all previous moves, akuden moves after capi3101.\n\teliscinsky: That is West moves after South. Could it be a flaw in the program? Should I (North) and capi3101 (South) both pass to give akuden (West) the next move? \n\teliscinsky: It&#39;s also weird, but on &quot;My SDG&quot; page, this game no longer shows me as a player, but it did before pedrop was eliminated.\n\teliscinsky: Capi3101 I don&#39;t think Good vs. Evil is relevant on SDG. I believe it&#39;s a One vs. Many scenario.\n\teliscinsky: capi3101 &amp; akuden, I&#39;ve asked someone I consider a master HW&#39;s player, and his take is ... \r\n\r\n&quot;ON SDG, there are two ways to play Homeworlds with more than two players. The default is &quot;Last captain standing&quot; where the last player with a homeworld wins. The other way is &quot;Sinister,&quot; in which you win if you eliminate the player on your left (resignation doesn&#39;t count as elimination, annoyingly). The &quot;Good vs Evil&quot; rules are not implemented on SDG.\r\n\r\nYou&#39;re right that the West player should have the next move after South, even after a player elimination. If you want to play it honest, you and capi3101 should pass so that akuden gets their turn in proper order.&quot;\r\n\r\nAs I was already considering a &quot;pass&quot;, I just wanted to get another (expert) opinion.  With that said ... I pass.\n\n127) capi3101: Sacrifice G3 Bet\nBuild G3 Bet\nBuild Y2 Capi3101\nBuild Y3 Bet\n\tcapi3101: I was trying to be make a Homestar Runner reference...\r\n\r\nI agree that West seat should have the next move.\n\n128) akuden: Move G1 Akuden Lamas\n\tcapi3101: &#39;Trying to be make&#39;? I obviously need to do a better job of editing my comments before posting...\n\teliscinsky: Hmmm.... Don&#39;t know Homestar Runner LOL\n\n129) eliscinsky: S G3 Eliscinsky\nB G3 Eliscinsky\nB R1 Triskelion\nB R3 Adama\n\takuden: Thank you for allowing me to make my move. Lol Homestar Runner...takes me back. \n\n130) capi3101: S G3 Bet\nB G3 Bet\nB R3 Capi3101\nB R3 Gimel\n\tcapi3101: Homestar Runner website - http://www.homestarrunner.com\r\n\r\nLot of that stuff is from the early 2000s. Funny as hell, even now. The reference I meade is specifically from the first of the Strong Bad e-mails, entitled &quot;Some Kinda Robot&quot;, which is really not as funny as some of the later stuff. \r\n\r\nAnd now, back to your regularly scheduled game already in progress.\n\tcapi3101: *made. Not &#39;meade&#39;, &#39;made&#39;. Dammit... \n\n131) akuden: Build R3 Akuden\n\n132) eliscinsky: S Y1 Eliscinsky\nM R2 Adama Cylons\n\n133) capi3101: S Y2 Capi3101\nD G3 Bet Y3 Dalet\nM R2 Gimel Dalet\n\n134) akuden: Trade R2 Y2 Akuden\n\n135) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild R2 Cylons\nBuild R3 Adama\n\n136) capi3101: Trade Y1 B1 Bet\n\n137) akuden: Build Y1 Lamas\n\n138) eliscinsky: A Y1E Adama\n\n139) capi3101: Move B1 Bet Dalet\n\n140) akuden: Discover Y1 Lamas B1 Lariat\n\n141) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild Y1 Adama\nBuild Y3 Eliscinsky\n\n142) capi3101: S G3 Dalet\nB G3 Bet\nB B1 Dalet\nB B2 Dalet\n\n143) akuden: Build Y3 Lamas\n\n144) eliscinsky: A B3E Adama\n\n145) capi3101: Sacrifice Y3 Bet\nMove B1 Dalet Eliscinsky\nMove B1 Dalet Eliscinsky\nMove B2 Dalet Eliscinsky\nCatastrophe Eliscinsky B\n\n146) akuden: Build Y3 Akuden\n\n147) eliscinsky: Sacrifice Y1 Adama\nDiscover R3 Adama Y1 Sol\n\n148) capi3101: S Y3 Capi3101\nMove R1 Capi3101 Eliscinsky\nMove R2 Dalet Eliscinsky\nMove R3 Gimel Eliscinsky\nCatastrophe Eliscinsky R\n\n149) capi3101: Pass\n\n150) akuden: Sacrifice Y1 Akuden\nMove R3 Akuden Gimel\n\n151) capi3101: Trade G1 Y1 Bet\n\teliscinsky: Nice capi3101, I see what you&#39;re about to do. \n\n152) akuden: Attack G2S Gimel\n\tcapi3101: Question of whether or not I want to do it or wait a bit. Still haven&#39;t figured out the best way to go after a planetary defense system...the doomsmonth strategy doesn&#39;t work there.\n\tcapi3101: Oh damn...\n\tcapi3101: No doomsmonth here.\n\n153) capi3101: Move G3 Bet Cylons\n\tcapi3101: Action Stations, eliscinsky.\n\n154) akuden: Attack G2S Gimel\n\n155) capi3101: Move Y1 Bet Capi3101\n\teliscinsky: capi3101, well played.  It&#39;s been fun!\n\tcapi3101: You too; might have to do a two-player match sometime, if you&#39;re up for it.\n\n156) akuden: Trade G2 Y2 Gimel\n\tcapi3101: Best of luck, akuden. \n\tcapi3101: Game seems to have skipped the turn back to me; lemme pass then...\n\n157) capi3101: Build Y3 Capi3101\n\tcapi3101: Problem with doomsday machines is that they&#39;re intended to work with just one opponent. Unleashing one in a 3+ player game costs a lot of resources...\n\tcapi3101: Just noting that I have a fairly big material disadvantage at the moment.\n\n158) akuden: Build Y3 Gimel\n\takuden: Best of luck to you as well, Capi. You do have a pretty good shot even with the disadvantage, as you may have noticed, I don&#39;t have a good grasp at the strategy of this game as of yet. \n\teliscinsky: Capi, I look forward to a future match.  Would also like to get another &quot;Last Captain Standing&quot;, or even a &quot;Sinister&quot;, game going.  PM me sometime when you&#39;re ready.\r\n\r\nAkuden, and Pedrop, are you interested in a rematch in the future?\n\tcapi3101: Will do.\n\n159) capi3101: Sacrifice R3 Capi3101\nAttack R2N Cylons\nAttack Y2E Cylons\nAttack R2N Cylons\n\teliscinsky: Interesting what kind of game this becomes with so much economy and only two players.\n\n160) akuden: Trade Y2 G2 Gimel\n\tcapi3101: It becomes a slog, as likely as not. Depends on if we decide to reintroduce any of the &#39;lost&#39; material back into the game...\n\n161) capi3101: Trade G3 B3 Cylons\n\n162) akuden: Move R3 Gimel Sol\n\takuden: Yes, I&#39;d be interested in another match. Going to brush up and watch some Homeworlds Theater vids beforehand to get a better understanding of the strategies. \n\n163) capi3101: Attack R1E Cylons\n\n164) akuden: Attack R3N Sol\n\n165) capi3101: S Y2 Cylons\nM R1 Cylons Sol\nM R2 Cylons Sol\nC Sol R\n\n166) akuden: Trade Y3 R3 Akuden\n\n167) capi3101: Attack G2E Cylons\n\n168) akuden: Move R3 Akuden Lariat\n\n169) capi3101: Attack Y2E Cylons\n\n170) akuden: Move G2 Gimel Lariat\n\n171) capi3101: B B1 Cylons\n\n172) akuden: Sacrifice Y3 Gimel\nMove G2 Gimel Lariat\nMove G2 Lariat Capi3101\nMove G2 Lariat Capi3101\nCatastrophe Capi3101 Green\n\n173) capi3101: Trade Y1 B1 Capi3101\n\n174) akuden: Move Y1 Lamas Lariat\n\n175) capi3101: Trade Y3 G3 Capi3101\n\n176) akuden: Move R3 Lariat Cylons\n\n177) capi3101: Attack R3W Cylons\n\n178) akuden: Trade Y1 G1 Lariat\n\n179) capi3101: Move B1 Cylons Akuden\n\n180) akuden: Trade Y1 G1 Lariat\n\n181) capi3101: Sacrifice G2 Cylons\nBuild B1 Akuden\nBuild B2 Akuden\nCatastrophe Akuden B\n\tcapi3101: Well, that sucks.\n\tcapi3101: I can&#39;t tell if I have time to pull this out or not. Going to try.\n\n\teliscinsky: Akuden: Attacks work in a number of different scenarios.  1st you do need a red (attack economy) somewhere on the board. 2nd you can only attack an equal or smaller ship.  So here are a couple scenarios that might help your understanding. (without helping you with the game)\r\n\r\n1) There is a Y3 Star, and you have a B1 there, and your opponent has a G1 &amp; Y2 there.  If you have a R1 somewhere else you can sacrifice your R1 elsewhere and attack the G1, but not the Y2. (Same or smaller)\r\n\r\n2) There is a Y3 Star, and you have a B2 there, and your opponent has a G1 &amp; Y2 there.  If you have a R2 somewhere else you can sacrifice your R2 elsewhere and attack either or both G1 and Y2. (Same or smaller)\r\n\r\n3) There is a Y3 Star, and you have a R1 there, and your opponent has a G1 &amp; Y2 there.  You can attack the G1, but not the Y2. (Same or smaller, and your red is in the same system)\r\n\r\n4) There is a Y3 Star, and you have a R2 there, and your opponent has a G1 &amp; Y2 there.  You can attack either G1 or Y2, but not both at the same time (it would take 2 moves). Unless you sacrifice a R2 elsewhere first.  (You cannot sacrifice this R2 as it needs to be there for the attack)\r\n\r\nConclusion: Using the power of Red / Attack by way of proximity or sacrifice;\r\n3 pips ships can attack 1, 2, or 3 pip ships\r\n2 pips ships can attack 1, or 2 pip ships\r\n1 pip ships can attack 1 pip ships\r\n\r\nHTH\r\n\r\nIf you have more questions feel free to ask here or PM me. If you need help w/ rules PM me and I&#39;ll send you some links that can help.\r\n\n\takuden: Awesome! Thanks eliscinsky! That makes sense! \n\tcapi3101: Well, that&#39;ll do it. If y&#39;all want a rematch, just say the word.\n\teliscinsky: Yes, yes Please\n\teliscinsky: Yes please on the rematch! Same &quot;Last Captain standing&quot; or &quot;Sinister&quot; variant?  \n\tcapi3101: Good with either.\n\teliscinsky: I put up a Sinister, or one of you can put up a default game that I&#39;ll join. :)\n\tcapi3101: I&#39;m in.\n\nHomeworlds Online (SDG# 36119)\nStarted: 2020.3.8, Ended: 2020.3.16\nParticipants: amoscai (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld B1 Y2 G3\n\n2) amoscai: Homeworld Y1 B2 G3\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\n4) amoscai: Build G1 Amoscai\n\n5) zweiterlinde: Discover G1 Zweiterlinde B3 Agnus\n\n6) amoscai: Trade G1 R1 Amoscai\n\n7) zweiterlinde: Trade G1 R1 Agnus\n\n8) amoscai: Build G1 Amoscai\n\n9) zweiterlinde: Build G1 Zweiterlinde\n\n10) amoscai: Build R1 Amoscai\n\n11) zweiterlinde: Move G1 Zweiterlinde Agnus\n\n12) amoscai: Build R2 Amoscai\n\n13) zweiterlinde: Build R2 Agnus\n\n14) amoscai: Move R2 Amoscai Agnus\n\n15) zweiterlinde: Build G1 Agnus\n\n16) amoscai: Attack G1 Agnus\n\n17) zweiterlinde: Sacrifice R1 Agnus\nAttack R2 Agnus\n\n18) amoscai: Build G2 Agnus\n\n19) zweiterlinde: Attack G2 Agnus\n\n20) amoscai: Build G2 Agnus\nCatastrophe Agnus Green\n\n21) zweiterlinde: Trade R2 G2 Agnus\n\n22) amoscai: Move R1 Amoscai Agnus\n\n23) zweiterlinde: Attack R1 Agnus\n\n24) amoscai: Build R1 Amoscai\n\n25) zweiterlinde: Trade R2 Y2 Agnus\n\n26) amoscai: Trade R1 Y1 Amoscai\n\n27) zweiterlinde: Build G1 Agnus\n\n28) amoscai: Move G1 Amoscai Agnus\n\n29) zweiterlinde: Attack G1 Agnus\n\n30) amoscai: Trade G3 B3 Amoscai\n\n31) zweiterlinde: Build G1 Zweiterlinde\n\n\tamoscai: Oh wow. Haha. Oops. No construct \n\nHomeworlds Online (SDG# 36102)\nStarted: 2020.3.9, Ended: 2020.4.23\nParticipants: Mantheron (S), amoscai (N)\nWinner: Mantheron\n\n1) amoscai: Homeworld Y1 B2 G3\n\n2) Mantheron: Homeworld R2 B3 G3\n\n3) amoscai: Build G1 Amoscai\n\n4) Mantheron: Build G1 Mantheron\n\n5) amoscai: Discover G1 Amoscai B3 Beta\n\n6) Mantheron: Trade G1 Y1 Mantheron\n\n7) amoscai: Build G1 Amoscai\n\n8) Mantheron: Build Y1 Mantheron\n\n9) amoscai: Build G1 Beta\n\n10) Mantheron: Build G2 Mantheron\n\n11) amoscai: Build G2 Amoscai\n\n12) Mantheron: Build Y2 Mantheron\n\n13) amoscai: Build G2 Beta\n\n14) Mantheron: Discover G2 Mantheron R1 Altair\n\n15) amoscai: Trade G3 Y3 Amoscai\n\n16) Mantheron: Build G3 Altair\n\n17) amoscai: Trade G2 Y2 Beta\n\n18) Mantheron: Move Y1 Mantheron Altair\n\n19) amoscai: Trade G1 R1 Beta\n\n20) Mantheron: Trade Y1 B1 Mantheron\n\n21) amoscai: Build R1 Beta\n\n22) Mantheron: Discover Y1 Altair G3 Castor\n\n23) amoscai: Build G1 Beta\n\n24) Mantheron: Build Y1 Castor\n\n25) amoscai: Trade Y3 R3 Amoscai\n\n26) Mantheron: Sacrifice G3 Altair\nBuild G2 Mantheron\nBuild G3 Altair\nBuild Y2 Mantheron\n\n27) amoscai: Sacrifice Y2 Beta\nMove G1 Beta Altair\nMove G1 Beta Altair\nCatastrophe Altair Green\n\n28) Mantheron: Build Y2 Castor\n\n29) amoscai: Trade R1 G1 Beta\n\n30) Mantheron: Build Y3 Mantheron\n\n31) amoscai: Build G1 Beta\n\n32) Mantheron: Sacrifice Y3 Mantheron\nMove Y1 Castor Amoscai\nMove Y1 Castor Amoscai\nMove Y2 Castor Amoscai\nCatastrophe Amoscai Yellow\n\n33) amoscai: Trade G2 Y2 Amoscai\n\n34) Mantheron: Discover G2 Mantheron R1 Deneb\n\n35) amoscai: Trade G1 R1 Beta\n\n36) Mantheron: Move B1 Mantheron Deneb\n\n37) amoscai: Trade R1 Y1 Beta\n\n38) Mantheron: Build B1 Deneb\n\n39) amoscai: Trade R1 B1 Beta\n\n40) Mantheron: Move Y2 Mantheron Deneb\n\n41) amoscai: Build R1 Amoscai\n\n42) Mantheron: Discover B1 Deneb Y3 Electra\n\n43) amoscai: Move R1 Amoscai Electra\n\n44) Mantheron: Sacrifice G2 Deneb\nBuild B2 Deneb\nBuild B2 Electra\n\n45) amoscai: Attack B1 Electra\n\n46) Mantheron: Move B2 Electra Amoscai\n\n47) amoscai: Sacrifice Y2 Amoscai\nMove B1 Beta Deneb\nMove B1 Electra Deneb\nCatastrophe Deneb Blue\n\n48) Mantheron: Sacrifice G3 Mantheron\nBuild B1 Amoscai\nBuild B1 Amoscai\nBuild Y1 Mantheron\nCatastrophe Amoscai Blue\n\n\nHomeworlds Online (SDG# 36122)\nStarted: 2020.3.9, Ended: 2020.4.13\nParticipants: Mantheron (S), zweiterlinde (N)\nWinner: zweiterlinde\n\n1) zweiterlinde: Homeworld B1 Y2 G3\n\n2) Mantheron: Homeworld B3 R2 G3\n\n3) zweiterlinde: Build G1 Zweiterlinde\n\n4) Mantheron: Build G1 Mantheron\n\n5) zweiterlinde: Discover G1 Zweiterlinde B3 Acta\n\n6) Mantheron: Trade G1 Y1 Mantheron\n\tMantheron: Acta?\n\n7) zweiterlinde: Build G1 Acta\n\n8) Mantheron: Build Y1 Mantheron\n\n9) zweiterlinde: Trade G1 Y1 Acta\n\n10) Mantheron: Discover Y1 Mantheron G1 Bno\n\n11) zweiterlinde: Build G1 Zweiterlinde\n\n12) Mantheron: Build G2 Mantheron\n\n13) zweiterlinde: Build Y2 Acta\n\n14) Mantheron: Build Y2 Bno\n\n15) zweiterlinde: Build G2 Acta\n\n16) Mantheron: Move G2 Mantheron Bno\n\n17) zweiterlinde: Move Y1 Acta Bno\n\n18) Mantheron: Build Y3 Mantheron\n\n19) zweiterlinde: Build Y3 Acta\n\n20) Mantheron: Trade Y1 R1 Mantheron\n\n21) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Zweiterlinde\nBuild Y1 Bno\nBuild Y3 Acta\nCatastrophe Bno Yellow\n\n22) Mantheron: Build G3 Mantheron\n\tzweiterlinde: This is a bit of an odd duck play but I&#39;m interested to see how it resolves\n\n23) zweiterlinde: Sacrifice G2 Zweiterlinde\nBuild G2 Acta\nBuild G3 Zweiterlinde\n\n24) Mantheron: Build Y1 Mantheron\n\n25) zweiterlinde: Discover Y2 Acta B1 Caepe\n\n26) Mantheron: Move Y1 Mantheron Bno\n\n27) zweiterlinde: Move G2 Acta Caepe\n\n28) Mantheron: Sacrifice G3 Mantheron\nBuild G3 Mantheron\nBuild R1 Mantheron\nBuild Y1 Bno\n\n29) zweiterlinde: Sacrifice Y3 Acta\nMove G1 Acta Caepe\nMove G1 Caepe Mantheron\nMove G2 Caepe Mantheron\nCatastrophe Mantheron Green\n\n30) Mantheron: Move R1 Mantheron Bno\n\n31) zweiterlinde: Build G1 Acta\n\n32) Mantheron: Move G2 Bno Mantheron\n\n33) zweiterlinde: Trade G2 R2 Acta\n\n34) Mantheron: Build G2 Mantheron\n\n35) zweiterlinde: Move R2 Acta Bno\n\n36) Mantheron: Discover Y1 Bno G3 Dnm\n\n37) zweiterlinde: Attack R1 Bno\n\n38) Mantheron: Trade R1 B1 Mantheron\n\n39) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Acta\nBuild G3 Acta\nBuild G3 Zweiterlinde\n\n40) Mantheron: Discover G2 Mantheron R1 Erie\n\n41) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild R1 Bno\nBuild Y1 Caepe\n\n42) Mantheron: Build B2 Mantheron\n\n43) zweiterlinde: Move G3 Acta Erie\n\n44) Mantheron: Sacrifice G2 Erie\nBuild G2 Mantheron\nBuild Y2 Dnm\n\n45) zweiterlinde: Build Y3 Acta\n\n46) Mantheron: Sacrifice Y3 Mantheron\nMove Y1 Dnm Bno\nMove Y1 Bno Acta\nMove Y1 Bno Acta\nCatastrophe Acta Yellow\n\n47) zweiterlinde: Sacrifice Y1 Caepe\nMove G3 Erie Mantheron\n\n48) Mantheron: Trade B1 Y1 Mantheron\n\n49) zweiterlinde: Sacrifice R2 Bno\nAttack G2 Mantheron\nAttack G2 Mantheron\n\n\nHomeworlds Online (SDG# 36100)\nVariants: &quot;Hard time&quot;\nStarted: 2020.3.9, Ended: 2020.3.31\nParticipants: dlwillson (S), nicknack (N)\nWinner: dlwillson\n\n1) nicknack: Homeworld R2 B1 G3\n\n2) dlwillson: Homeworld B3 R2 G3 Dlwillson\n\n3) nicknack: Build G1 Nicknack\n\tdlwillson: TY!GL!HF!\n\n4) dlwillson: B G1 Dlwillson\n\tnicknack: Thanks! You too!\n\n5) nicknack: Trade G1 Y1 Nicknack\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) nicknack: Build G1 Nicknack\n\n8) dlwillson: B G1 Dlwillson\n\n9) nicknack: Discover G1 Nicknack Y3 Beta\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) nicknack: Build G1 Nicknack\n\n12) dlwillson: B B1 Dlwillson\n\n13) nicknack: Discover G1 Nicknack B3 Gamma\n\n14) dlwillson: D B1 Dlwillson G1 Field\n\n15) nicknack: Build G2 Nicknack\n\n16) dlwillson: B G2 Dlwillson\n\n17) nicknack: Sacrifice G3 Nicknack\nBuild G2 Beta\nBuild G3 Gamma\nBuild G3 Nicknack\n\n18) dlwillson: T B1 R1 Dlwillson\n\n19) nicknack: Trade G3 Y3 Gamma\n\n20) dlwillson: D G2 Dlwillson Y1 Sol\n\n21) nicknack: Build G3 Gamma\n\n22) dlwillson: B Y2 Dlwillson\n\n23) nicknack: Build Y2 Nicknack\n\n24) dlwillson: M Y1 Dlwillson Field\n\n25) nicknack: Discover G2 Nicknack Y3 Delta\n\n26) dlwillson: M B1 Field Gamma\n\n27) nicknack: Discover G1 Gamma B1 Zeta\n\n28) dlwillson: S G2 Sol\nB B2 Gamma\nB B2 Gamma\nC Gamma B\n\n29) nicknack: Discover G2 Beta B1 Gamma\n\n30) dlwillson: S G3 Dlwillson\nB Y1 Field\nB Y2 Field\nB Y3 Dlwillson\n\n31) nicknack: Trade G2 R2 Gamma\n\n32) dlwillson: T Y2 G2 Dlwillson\n\n33) nicknack: Trade G1 R1 Zeta\n\n34) dlwillson: M R1 Dlwillson Field\n\n35) nicknack: Sacrifice Y2 Nicknack\nMove R2 Gamma Dlwillson\nMove R1 Zeta Dlwillson\n\n36) dlwillson: Attack R2 Dlwillson\n\n37) nicknack: Sacrifice G1 Beta\nBuild R1 Dlwillson\nCatastrophe Dlwillson Red\n\n38) dlwillson: M Y2 Field Delta\n\n39) nicknack: Discover G2 Delta B2 Beta\n\n40) dlwillson: B Y2 Field\n\n41) nicknack: Build Y2 Nicknack\n\n42) dlwillson: B Y3 Dlwillson\n\n43) nicknack: Build G1 Beta\n\n44) dlwillson: T Y3 R3 Dlwillson\n\n45) nicknack: Trade G1 B1 Beta\n\n46) dlwillson: M Y2 Delta Beta\n\n47) nicknack: Sacrifice Y2 Nicknack\nDiscover G2 Beta R1 Delta\nMove B1 Beta Delta\n\n48) dlwillson: Move Y3 Dlwillson Delta\n\n49) nicknack: Sacrifice G2 Delta\nBuild B1 Delta\nBuild B2 Delta\n\n50) dlwillson: A B2 Delta\n\n51) nicknack: Build Y2 Nicknack\n\n52) dlwillson: Attack B1 Delta\n\n53) nicknack: Sacrifice Y1 Nicknack\nDiscover B1 Delta G2 Gamma\n\n54) dlwillson: M Y2 Field Gamma\n\n55) nicknack: Sacrifice Y2 Nicknack\nDiscover B1 Gamma G3 T1\nMove B1 T1 Nicknack\n\n56) dlwillson: D B2 Delta G3 Forest\n\n57) nicknack: Build G1 Nicknack\n\n58) dlwillson: S Y3 Delta\nM B1 Delta Forest\nM B1 Forest Nicknack\nM B2 Forest Nicknack\nC Nicknack B\n\n\tdlwillson: I think that&#39;s got it. You had me very concerned when you took half the homeworld. I somehow managed to keep you too busy running to finish me off. Whew.\n\tnicknack: Ugh. Yeah, I guess it was a rushed plan, taking half your homeworld so early on. Been playing catch up ever since! Nicely done.\n\nHomeworlds Online (SDG# 36125)\nStarted: 2020.3.9, Ended: 2020.4.19\nParticipants: Babamots (S), nuberu (N)\nWinner: Babamots\n\n1) nuberu: Homeworld R3 B1 G3\n\tBabamots: Welcome to SDG! Let me know if you have trouble with the controls or anything. I can also give you some strategy advice once we get going. For now, you&#39;ll want green and blue in your homeworld (either in your stars or in your ship).\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) nuberu: Build G1 Nuberu\n\tnuberu: Thank you! I chose to start same as earlier today :). It did take me a bit to figure out the commands (I realize afterwards we had a chat here). What does the (N) in my name mean?\n\n4) Babamots: Build G1 Babamots\n\tBabamots: I means you are the &quot;North&quot; player (the person who had the first move).\n\n5) nuberu: Trade G1 Y1 Nuberu\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) nuberu: Build G1 Nuberu\n\n8) Babamots: Build G1 Babamots\n\n9) nuberu: Discover G1 Nuberu B2 Trasgu\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) nuberu: Build G1 Trasgu\n\n12) Babamots: Build R1 Babamots\n\n13) nuberu: Build G1 Nuberu\n\n14) Babamots: Build G2 Babamots\n\n15) nuberu: Build G2 Nuberu\n\n16) Babamots: Discover G2 Babamots G3 Ferenginar\n\n17) nuberu: Trade G2 R2 Nuberu\n\n18) Babamots: Build G2 Babamots\n\n19) nuberu: Build G2 Nuberu\n\n20) Babamots: Discover G2 Babamots B3 Bolarus\n\n21) nuberu: Build Y1 Nuberu\n\n22) Babamots: Sacrifice G2 Ferenginar\nBuild G2 Babamots\nBuild G3 Bolarus\n\n23) nuberu: Build Y2 Nuberu\n\n24) Babamots: Trade G3 Y3 Bolarus\n\n25) nuberu: Trade G2 B2 Nuberu\n\n26) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild Y2 Babamots\nBuild Y3 Babamots\n\n27) nuberu: Move Y1 Nuberu Trasgu\n\n28) Babamots: Trade Y1 B1 Babamots\n\n29) nuberu: Move R2 Nuberu Trasgu\n\n30) Babamots: Move R1 Babamots Bolarus\n\n31) nuberu: Discover G1 Trasgu B3 Xana\n\n32) Babamots: Move Y3 Bolarus Trasgu\n\n33) nuberu: Sacrifice G3 Nuberu\nBuild G2 Trasgu\nBuild G3 Nuberu\nBuild G3 Xana\n\n34) Babamots: Build G3 Babamots\n\n35) nuberu: Sacrifice G3 Xana\nBuild Y1 Nuberu\nBuild Y3 Trasgu\nBuild G3 Xana\n\n36) Babamots: Sacrifice R1 Babamots\nAttack R2 Trasgu\n\n37) nuberu: Sacrifice Y3 Trasgu\nMove G2 Trasgu Xana\nMove G2 Xana Babamots\nMove G1 Xana Babamots\nCatastrophe Babamots G\n\n38) Babamots: Build Y3 Bolarus\n\n39) nuberu: Trade G3 R3 Xana\n\n40) Babamots: Sacrifice R2 Trasgu\nAttack G1 Trasgu\nAttack Y1 Trasgu\n\n41) nuberu: Sacrifice Y2 Nuberu\nMove G1 Nuberu Trasgu\nMove Y1 Nuberu Trasgu\n\n42) Babamots: Trade Y1 R1 Trasgu\n\n43) nuberu: Move G1 Trasgu Xana\n\n44) Babamots: Attack Y1 Trasgu\n\n45) nuberu: Discover B2 Nuberu Y2 Cuelebre\n\n46) Babamots: Move Y3 Bolarus Cuelebre\n\n47) nuberu: Move Y1 Nuberu Cuelebre\n\n48) Babamots: Sacrifice R1 Bolarus\nAttack Y1 Cuelebre\n\n49) nuberu: Build R1 Xana\n\n50) Babamots: Build Y1 Bolarus\n\n51) nuberu: Sacrifice R1 Xana\nAttack Y1 Cuelebre\n\n52) Babamots: Sacrifice R1 Trasgu\nAttack Y1 Cuelebre\n\tnuberu: I think I&#39;ve tried all possible actions so I can loose in peace now ^^\n\n53) nuberu: Build R1 Xana\n\tBabamots: You&#39;ve played, what, five games now? I think you&#39;re picking this up extremely quickly. With a few more training games, I&#39;ll have you conquering planets in my name! :-P\n\n54) Babamots: Build G1 Trasgu\n\n55) nuberu: Sacrifice R1 Xana\nAttack Y1 Cuelebre\n\n56) Babamots: Trade G1 R1 Trasgu\n\tnuberu: since i didn&#39;t find you last monday, i&#39;m guessing you&#39;re not going to the office today. but just in case i wanted to let you know i&#39;m not going to the office anymore since Friday we officially moved to &quot;essential operations status&quot;.\n\n57) nuberu: Move Y1 Cuelebre Xana\n\tBabamots: Yes, I didn&#39;t go to the office at all last week. I&#39;d like to try a real-time game though. We can connect through Zoom or Google Handouts.\n\n58) Babamots: Build G1 Trasgu\n\n59) nuberu: Move B2 Cuelebre Xana\n\n60) Babamots: Move G2 Bolarus Cuelebre\n\n61) nuberu: Trade G3 B3 Nuberu\n\n62) Babamots: Trade G1 B1 Trasgu\n\n63) nuberu: Build R1 Xana\n\n64) Babamots: Sacrifice Y2 Bolarus\nMove B1 Babamots Xana\nMove B1 Trasgu Xana\nCatastrophe Xana B\n\n65) nuberu: Trade B3 G3 Nuberu\n\tBabamots: Sorry, I had to do the right thing.\n\tBabamots: But it just one turn, you&#39;ll be back where you started :-P.\n\n66) Babamots: Build G1 Trasgu\n\tnuberu: Starting over...no problem! ^^&#39;\n\n67) nuberu: Build G1 Nuberu\n\n68) Babamots: Sacrifice Y2 Babamots\nMove G1 Trasgu Nuberu\nMove G1 Trasgu Nuberu\nCatastrophe Nuberu G\n\tBabamots: See you tomorrow for a real-time game?\n\n\nHomeworlds Online (SDG# 36130)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.10, Ended: 2020.5.13\nParticipants: capi3101 (S), Shobu (N)\nWinner: capi3101\n\n1) Shobu: Homeworld G3 B2 R3\n\tcapi3101: This one I&#39;ve played a lot of recently. Babamots and wil are the best players on the site (which makes sense given that they were among the original playtesters unless I&#39;m very much mistaken). Babamots is the kind of teacher that will beat you and tell you how to improve. Wil is the kind of teacher that will beat you with a barbed-wire covered bat with a chainsaw on the end... ;)\n\tcapi3101: You still learn from him though.\n\tcapi3101: There&#39;s an overview of the rules as well as strategy tips for the game online; Google &quot;pyramid arcade rules pdf&quot; for the latest version. Babamots also has a good strategy guide at https://jpeterbaker.github.io/homeworlds/site/strategyGuide.html\n\tShobu: Read lots of good things about this one! Really wanna try :) Will save the strategy guide too.\n\n2) capi3101: Homeworld G1 B3 Y3\n\n3) Shobu: Build R1 Shobu\n\n4) capi3101: Build Y1 Capi3101\n\tcapi3101: Generally the second move is always building a new ship. It&#39;s the only thing that makes sense...\n\tShobu: ok, time for Homeworlds now!\n\tShobu: i am totally confused by the command system .. how  to build a ship? Seems i am forced to build a R1.\r\n\r\nCan&#39;t find another command than this..\r\nbuild R1 inhomeworld\n\tcapi3101: You are. You can only build ships that are the same color as other ~ships~ you have at the system involved. Because your only ship right now is red, you can build red ships. Or you can change the color of your red ship to something else - those are the only two actions that should be available to you right now...there&#39;s no one to attack, and you lack yellow so you cannot move.\n\tcapi3101: Incidentally, you only have to type in the first letter of the command for the system to recognize it. You could type &quot;b r1 Shobu&quot; and the system would recognize it as &quot;build r1 Shobu&quot;.\n\tcapi3101: Have you played Homeworlds before IRL?\n\n5) Shobu: Build R1 Shobu\n\tShobu: oh ok i had to use my name as the System name .. i think i tried everything except this. \r\nNo, never tried this game before.\n\tcapi3101: I&#39;ve played multiple times; gotten my butt kick multiple times too. I&#39;ll direct you to the Pyramid Arcade rules PDF. Homeworlds starts on page 20 and there&#39;s a section on strategy in it worth reviewing.\r\n\r\nhttps://www.looneylabs.com/lit/rules/pyramid-arcade-instruction-guide\r\n\r\nAlso, Babamots has an online strategy guide here:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/strategyGuide.html\r\n\r\nInexperienced players have a tendency to get trounced by experienced players (and badly). I typically offer three free moves as a handicap but so far nobody&#39;s taken me up on it.\n\tcapi3101: When I go to name new systems I tend to use the Hebrew alphabet just as a change of pace from the Greek. But use whatever names you want to. A lot of the more experienced players on the site give the piece type for their system names. Never really have asked what they do in the case of duplicates...\n\tcapi3101: Anyways, good luck. Suck as I do at this game, I do enjoy it quite a bit.\n\n6) capi3101: T Y1 B1 Capi3101\n\n7) Shobu: Trade R1 Y1 Shobu\n\tShobu: thanks for the links!\r\nI guess i will play this first match without reading the guide, just to discover the basic interactions. \n\tcapi3101: Do be careful not to build red next turn. With four of any piece color at a system, either player can call catastrophe and force all pieces of that color back to the bank. If the system piece is forced to return, anything that would be left there also goes.\n\n8) capi3101: Build Y1 Capi3101\n\tShobu: good to know, i somewhat overlooked this ..\n\n9) Shobu: Discover R3 Shobu G1 Shobu1\n\n10) capi3101: Build B1 Capi3101\n\n11) Shobu: Build R1 Shobu1\n\n12) capi3101: Discover Y1 Capi3101 G2 Aleph\n\n13) Shobu: Move Y1 Shobu Shobu1\n\n14) capi3101: Move B1 Capi3101 Aleph\n\tcapi3101: It&#39;s generally ~very~ unwise to move your large ship away from your homeworld. You&#39;re probably okay with doing that for now but you&#39;re going to want to get it back there before too long.\n\n15) Shobu: Move R3 Shobu1 Shobu\n\tShobu: hmmm i thought that moving my R3 could be a good move ..\n\n16) capi3101: Build B1 Aleph\n\n17) Shobu: Build R1 Shobu1\n\tShobu: ok, R3 went back home\n\tcapi3101: It&#39;s for defense - without a large at your homeworld, I could take it over with a medium (or even a small if I played things correctly).\n\n18) capi3101: Build B2 Aleph\n\tcapi3101: I do need to get into red - and soon.\n\tShobu: why can&#39;t i attack Aleph with R1? &quot;You do not have access to sufficient weapons technology (RED) in this sector.&quot;\r\n\r\ni don&#39;t see such limitation explained in the rules\n\n19) Shobu: B R2 Shobu1\n\tcapi3101: You have to have a presence in a system before you can attempt to use a power there. You have no ships there, ergo you can&#39;t attack me. By the same token, we can&#39;t grow ships at each other&#39;s homeworlds, or change their colors.\r\n\r\nMoreover, attacking is a one-two punch and has to be carefully planned. You have to move the attacking craft in before you ~can~ attack with it. It gives me a chance to get away...or counter-attack if I can. \n\tcapi3101: Sacrificing the red ship wouldn&#39;t avail you either - you&#39;d still have no presence there to take advantage of it.\r\n\r\nRead up on sacrifice plays. Seriously. They win the most games.\n\n20) capi3101: T B2 R2 Aleph\n\n21) Shobu: Build R2 Shobu\n\n22) capi3101: Discover R2 Aleph Y1 Bet\n\n23) Shobu: Trade R2 Y2 Shobu\n\n24) capi3101: Build B2 Aleph\n\tcapi3101: In the hopes that you&#39;ll continue to play this game in the future, I need to let you know that you are in danger of losing the game on my next move. I ~could&#39;ve~ ended it just now.\n\tcapi3101: Your situation is known as a Bluebird...all your ships at your home system are the same color. Because you have three ships there, all I need to do is move in the fourth and then call catastrophe. With no ships at your home system, you lose.\n\tcapi3101: I could&#39;ve sacrificed my large yellow at my homeworld to move the red in. That&#39;s how I could&#39;ve won.\r\n\r\nNote that my red is ~still~ in a position to cause a game-ending catastrophe. You need to trade something at your homeworld next turn.\n\tShobu: Oh i thought catastrophe was only triggered when there was 4 same-colored ships from one side, not both players.. yes that makes no sense now that i&#39;ve come to think of it..\n\n25) Shobu: D R2 Shobu1 G2 Gamma\n\n26) capi3101: Move B1 Aleph Bet\n\n27) Shobu: Build R2 Gamma\n\n28) capi3101: Build Y2 Capi3101\n\n29) Shobu: Discover R1 Shobu1 B3 Delta\n\n30) capi3101: Trade B1 G1 Bet\n\n31) Shobu: Build R3 Shobu1\n\n32) capi3101: Build R3 Bet\n\n33) Shobu: Build Y2 Shobu1\n\n34) capi3101: Sacrifice Y2 Capi3101\nMove R2 Bet Shobu\nMove R3 Bet Shobu\nCatastrophe Shobu R\n\n35) Shobu: Move R3 Shobu1 Shobu\n\n36) capi3101: T B1 R1 Aleph\n\n37) Shobu: Build R2 Shobu1\n\tcapi3101: That was probably not the best move I could&#39;ve made, but I&#39;ll let it stand rather than take it back.\n\n38) capi3101: Build R3 Aleph\n\n39) Shobu: Build R3 Shobu\n\n40) capi3101: Build G2 Bet\n\n41) Shobu: Move Y1 Shobu1 Delta\n\n42) capi3101: Build G3 Bet\n\n43) Shobu: Trade R3 G3 Shobu\n\n44) capi3101: Move G3 Bet Shobu\n\n45) Shobu: Trade R1 B1 Delta\n\n46) capi3101: Sacrifice R3 Aleph\nAttack R3 Shobu\nAttack G3 Shobu\nAttack Y2 Shobu\n\tcapi3101: Unfortunately, that move sets you up for a slow catastrophe at your Homeworld. Here&#39;s how:\n\n\tcapi3101: From the rules, re: Sacrifice Actions - &quot;Each action may be performed in ~any system you occupy~, even if you don&#39;t have access to that color in that system. Sacrificing a ship gives you temporary access to that color in any system you occupy.&quot;\r\n\r\nYou occupy a system if you&#39;ve got at least one ship there. \n\tcapi3101: Homeworlds is definitely a game with a relatively steep learning curve; it&#39;s as complex as chess, and it is very unforgiving of mistakes...just yesterday I won against an opponent who had me on the ropes because he made a crucial mistake at exactly the wrong time.\n\tcapi3101: If you&#39;re willing to give it another go, let me know. Meantime I&#39;m going to go ahead and wrap this one up.\n\nHomeworlds Online (SDG# 36140)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.11, Ended: 2020.3.16\nParticipants: Babamots (S), eliscinsky (N)\nWinner: Babamots\n\n1) eliscinsky: Homeworld B3 Y2 G3\n\teliscinsky: Killing time until the next HW Tournament.\n\teliscinsky: Gonna try another approach.\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) eliscinsky: B G1 Eliscinsky\n\n4) Babamots: Build G1 Babamots\n\n5) eliscinsky: Trade G1 R1 Eliscinsky\n\n6) Babamots: Trade G1 R1 Babamots\n\n7) eliscinsky: B G1 Eliscinsky\n\n8) Babamots: Build R2 Babamots\n\n9) eliscinsky: B R2 Eliscinsky\n\n10) Babamots: Trade R1 Y1 Babamots\n\n11) eliscinsky: B G1 Eliscinsky\n\n12) Babamots: Build Y1 Babamots\n\n13) eliscinsky: T G1 Y1 Eliscinsky\n\n14) Babamots: Discover Y1 Babamots Y2 Iconia\n\n15) eliscinsky: B Y2 Eliscinsky\n\n16) Babamots: Build Y3 Babamots\n\n17) eliscinsky: T Y1 B1 Eliscinsky\n\tBabamots: I might regret this, but it seems interesting.\n\n18) Babamots: Discover Y1 Babamots B2 Bolarus\n\teliscinsky: Ditto\n\n19) eliscinsky: S Y2 Eliscinsky\nD R1 Eliscinsky G1 Grass\nD B1 Eliscinsky G1 Weed\n\n20) Babamots: Build Y1 Babamots\n\n21) eliscinsky: Build G2 Eliscinsky\n\n22) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild Y3 Iconia\nBuild Y3 Bolarus\n\n23) eliscinsky: Discover G2 Eliscinsky B1 Blueberry\n\n24) Babamots: Trade Y3 G3 Bolarus\n\n25) eliscinsky: Sacrifice G3 Eliscinsky\nBuild R1 Grass\nBuild R2 Grass\nBuild R3 Eliscinsky\n\n26) Babamots: Build Y3 Bolarus\n\n27) eliscinsky: B G2 Blueberry\n\tBabamots: Out of curiosity, are you spreading your ships out because of the advice on my little website? One of my tips is to spread out your fleet when you have a large-ship disadvantage.\n\tBabamots: I think you&#39;re capable of coming up with this on your own, but I wondered if my guide has helped you or anyone.\n\teliscinsky: While I have read most of your site, honestly I don&#39;t remember that piece of advice. So, no that is not what I was thinking.  I have another strategy that I&#39;m trying. Hope you don&#39;t mind if I don&#39;t share it just now. I&#39;ll tell you afterwards. \r\n\r\nAs an aside I didn&#39;t know you had moved when I went to bed shortly before midnight,  and I woke up around 3:45 thinking about it. At 4:30 I decided to just get up and study it. Your last move is not one I had considered yet. \r\n\r\nI think we&#39;ve gotten to the point where we will move a bit slower. A falling of mine that I&#39;m trying to work on. \n\teliscinsky: Wow, I must have still been a little sleepy. Meant to say ...\r\n\r\n... and I woke up at 3:45 thinking about the game. (not your move)\r\n\r\n... \r\nat 4:30 decided to get up and study [it] ... (the game).\n\n28) Babamots: Move Y3 Iconia Grass\n\n29) eliscinsky: Build G2 Blueberry\n\n30) Babamots: Move G3 Bolarus Blueberry\nCatastrophe Blueberry G\n\n31) eliscinsky: Trade R3 G3 Eliscinsky\n\n32) Babamots: Sacrifice R2 Babamots\nAttack R2 Grass\nAttack R1 Grass\n\n33) eliscinsky: Build R2 Grass\nCatastrophe Grass R\n\teliscinsky: I feel this slipping away.\n\n34) Babamots: Trade Y3 R3 Bolarus\n\n35) eliscinsky: Build G2 Eliscinsky\n\n36) Babamots: Build Y3 Grass\n\n37) eliscinsky: M G2 Eliscinsky Weed\n\n38) Babamots: Trade Y3 G3 Babamots\n\n39) eliscinsky: T G2 R2 Weed\n\n40) Babamots: Build Y3 Babamots\n\n41) eliscinsky: Build B1 Weed\n\n42) Babamots: Move Y3 Grass Bolarus\n\n43) eliscinsky: B R1 Weed\n\n44) Babamots: Move Y3 Bolarus Weed\n\teliscinsky: Damned if I do ([N]t g2 y3), damned if I don&#39;t ([S] b y3).\n\teliscinsky: That is t g3 y3\n\n\teliscinsky: I can struggle, but in the end I see no way around my loss. Once again I bow to your superior strategic abilities. \n\tBabamots: GG! Maybe we should try a small or micro universe next :-)\n\nHomeworlds Online (SDG# 36070)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2020.3.11, Ended: 2020.3.14\nParticipants: rho0 (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld R1 B2 G3\n\teliscinsky: Greetings rho0! I accept your &quot;Standing Challenge&quot; :)\n\n\teliscinsky: I clicked the &quot;Call an Admin&quot; link just to see what it does. No Problem just curiosity.\n\nHomeworlds Online (SDG# 36147)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.12, Ended: 2020.3.12\nParticipants: Babamots (S), Pib (N)\nWinner: Babamots\n\n1) Pib: Homeworld G3 B1 Y3\n\tBabamots: Now to verify that SDG allows temporary abandonment.\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) Pib: Build Y1 Pib\n\n4) Babamots: Build G1 Babamots\n\n5) Pib: Build Y1 Pib\n\n6) Babamots: Build G1 Babamots\n\n7) Pib: Sacrifice Y3 Pib\nDiscover Y1 Pib R2 Outpost\nMove Y1 Pib Outpost\nMove Y1 Outpost Pib\n\n8) Babamots: Pass\n\tPib: My homeworld was totally abandoned in the middle of that turn, but SDG allowed it.\n\n9) Pib: Build Y1 Pib\n\n10) Babamots: Pass\n\n11) Pib: Build Y2 Pib\n\n12) Babamots: Pass\n\n13) Pib: Build Y2 Pib\nCatastrophe Pib Y\n\tPib: SDG totally allows you to trigger the catastrophe that kills you.\n\tDraw5PlayAll: Actually, I think even the official rules allow you to abandon your homeworld mid-turn as long as you get back there before your turn ends.\n\tBabamots: Even the most recent rules for Pyramid Quartet could be a little more clear about this, but they do allow suicide.\r\n\r\nThere&#39;s this older version of John&#39;s rules that definitely don&#39;t allow it:\r\n\r\nhttp://www.ginohn.com/wunder201005/games/Homeworlds/HomeworldsRules.html\r\n\r\nSDG is old enough that it might have implemented the old rules, at least in some circumstances, so I wanted to check. :-)\n\n\nHomeworlds Online (SDG# 36116)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.12, Ended: 2020.9.5\nParticipants: wil (S), sarperen (N)\nWinner: wil\n\n1) sarperen: Homeworld B3 R2 G3\n\n2) wil: H Y2 B1 G3\n\n3) sarperen: Build G1 Sarperen\n\n4) wil: B G1 Wil\n\n5) sarperen: Trade G1 Y1 Sarperen\n\twil: Thx  4 da game!\n\n6) wil: T G1 B1 Wil\n\n7) sarperen: Build G1 Sarperen\n\n8) wil: B B1 Wil\n\n9) sarperen: Discover G1 Sarperen Y1 Betelgeuse\n\n10) wil: D B1 Wil Y3 Y3\n\n11) sarperen: Build G1 Betelgeuse\n\n12) wil: B B2 Wil\n\n13) sarperen: Trade Y1 R1 Sarperen\n\n14) wil: D B2 Wil Y3 Why3\n\n15) sarperen: Build G1 Sarperen\n\n16) wil: S G3 Wil\nB B2 Y3\nB B2 Why3\nB B3 Wil\n\n17) sarperen: Move G1 Betelgeuse Y3\n\n18) wil: T B2 R2 Y3\n\n19) sarperen: Discover G1 Y3 Y1 Potato\n\n20) wil: T B3 G3 Wil\n\twil: We swat gnats around here.\n\n21) sarperen: Trade R1 Y1 Sarperen\n\twil: Yeah runaway\n\n22) wil: S G3 Wil\nB B2 Y3\nB B3 Why3\nB B3 Wil\n\n23) sarperen: Build G2 Potato\n\n24) wil: T B3 G3 Why3\n\n25) sarperen: Sacrifice G3 Sarperen\nBuild G2 Betelgeuse\nBuild G2 Sarperen\nBuild G3 Sarperen\n\n26) wil: B B3 Why3\n\twil: Quarantine game?\n\n27) sarperen: Trade G2 R2 Sarperen\n\n28) wil: T B3 G3 Wil\n\n29) sarperen: Trade G3 B3 Sarperen\n\n30) wil: T B3 Y3 Why3\n\twil: Lesson to avoid freezeouts!\n\n31) sarperen: Sacrifice G2 Potato\nBuild G2 Potato\nBuild Y2 Sarperen\n\n32) wil: B B3 Why3\n\n33) sarperen: Build G2 Sarperen\n\n34) wil: B G3 Wil\n\n\nHomeworlds Online (SDG# 36149)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.13, Ended: 2020.5.13\nParticipants: capi3101 (S), sarperen (N)\nWinner: capi3101\n\n1) sarperen: Homeworld B2 R1 G3\n\tcapi3101: &quot;Be gentle&quot;, eh? I&#39;ll do my best...\r\n\r\nTell you what, in the Pyramid Arcade rules there are a number of handicaps listed that can be employed when a novice is playing someone more experienced. I&#39;ll give you three free moves for the course of the game. Just comment when you want to use one and I&#39;ll pass my turn. Or at least, I&#39;ll try to...I&#39;ve proposed this before to another player but they opted not to use their moves.\n\n2) capi3101: H G1 B3 Y3\n\n3) sarperen: Build G1 Sarperen\n\n4) capi3101: Build Y1 Capi3101\n\n5) sarperen: Trade G1 Y1 Sarperen\n\n6) capi3101: Trade Y1 B1 Capi3101\n\n7) sarperen: Build G1 Sarperen\n\n8) capi3101: B B1 Capi3101\n\n9) sarperen: Discover G1 Sarperen Y3 Potato\n\n10) capi3101: Build Y1 Capi3101\n\n11) sarperen: Build Y1 Sarperen\n\n12) capi3101: Build Y2 Capi3101\n\n13) sarperen: Discover Y1 Sarperen G3 Tomato\n\n14) capi3101: Discover Y2 Capi3101 G2 Aleph\n\n15) sarperen: Build Y2 Sarperen\n\n16) capi3101: Trade Y3 G3 Capi3101\n\n17) sarperen: Trade Y2 R2 Sarperen\n\n18) capi3101: Trade B1 R1 Capi3101\n\n19) sarperen: Build G1 Sarperen\n\n20) capi3101: Build Y2 Aleph\n\n21) sarperen: Sacrifice G3 Sarperen\nBuild G2 Potato\nBuild G2 Sarperen\nBuild G3 Sarperen\n\n22) capi3101: Discover Y2 Aleph B3 Bet\n\n23) sarperen: Trade G2 Y2 Sarperen\n\n24) capi3101: Sacrifice G3 Capi3101\nBuild Y3 Capi3101\nBuild Y3 Aleph\nBuild B1 Capi3101\n\n25) sarperen: Discover G1 Potato B2 Carrot\n\n26) capi3101: Move B1 Capi3101 Aleph\n\n27) sarperen: Discover Y1 Sarperen R3 Rhubarb\n\n28) capi3101: Move Y2 Aleph Rhubarb\n\n29) sarperen: Sacrifice G2 Potato\nBuild Y3 Rhubarb\nBuild G2 Carrot\n\n30) capi3101: S Y2 Bet\nM Y1 Capi3101 Aleph\nM Y1 Aleph Rhubarb\nC Rhubarb Y\n\n31) sarperen: Sacrifice G3 Sarperen\nBuild G2 Sarperen\nBuild G3 Sarperen\nBuild G3 Carrot\n\n32) capi3101: Move Y3 Aleph Tomato\n\tsarperen: Casually locking you out of the green economy.\n\tcapi3101: I&#39;m not particularly concerned.\n\tcapi3101: Yet.\n\n33) sarperen: Sacrifice Y2 Sarperen\nMove Y1 Tomato Carrot\nDiscover G2 Carrot B3 Spinach\n\n34) capi3101: B Y1 Tomato\n\n35) sarperen: Trade G2 Y2 Sarperen\n\n36) capi3101: Build B1 Aleph\n\n37) sarperen: Sacrifice G3 Sarperen\nBuild G2 Spinach\nBuild G3 Sarperen\nBuild Y1 Carrot\n\n38) capi3101: Move Y1 Tomato Aleph\n\n39) sarperen: Trade G2 B2 Spinach\n\n40) capi3101: Build Y2 Aleph\n\n41) sarperen: Build G2 Carrot\n\n42) capi3101: Move B1 Aleph Tomato\n\n\tcapi3101: Going to go ahead and terminate the game as unrated; 40 days is a long enough wait. Hoping you didn&#39;t catch corona or have experienced any hardships because of it.\n\nHomeworlds Online (SDG# 36013)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.3.15, Ended: 2020.3.15\nParticipants: wil (S), nicknack (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 36083)\nVariants: &quot;Hard time&quot;\nStarted: 2020.3.15, Ended: 2020.3.22\nParticipants: nicknack (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) nicknack: Homeworld R3 B2 G3\n\n3) wil: B G1 Wil\n\n4) nicknack: Build G1 Nicknack\n\n5) wil: T G1 B1 Wil\n\n6) nicknack: Trade G1 Y1 Nicknack\n\n7) wil: B B1 Wil\n\n8) nicknack: Build G1 Nicknack\n\n9) wil: D B1 Wil Y3 Y3\n\n10) nicknack: Discover G1 Nicknack Y1 Beta\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n12) nicknack: Move G1 Beta Y3\n\n13) wil: D B2 Y3 G1 G1\n\n14) nicknack: Trade Y1 R1 Nicknack\n\n15) wil: T B2 R2 Y3\n\n16) nicknack: Move G1 Y3 Wil\n\n17) wil: T B3 G3 Wil\n\n18) nicknack: Build R1 Nicknack\n\twil: You have traveled far little guy, now it is time to turn around and go home or face dire consequences.\n\n19) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\tnicknack: You wouldn&#146;t throw away your only beautiful attack ship over little ol&#146; me, now would you?\n\n20) nicknack: Discover G1 Wil B3 Beta\n\twil: I will if needed, right now I got bidness to do!\n\n21) wil: T B3 G3 Wil\n\n22) nicknack: Trade G3 B3 Nicknack\n\n23) wil: T B3 Y3 Y3\n\n24) nicknack: Sacrifice B3 Nicknack\nTrade R1 Y1 Nicknack\nTrade R1 G1 Nicknack\nTrade G1 Y1 Beta\n\twil: They grew weary of my smurf domination, now give that back.\n\n25) wil: B B3 G1\n\tnicknack: Ugh.\n\n26) nicknack: Build Y1 Nicknack\n\twil: Stopping monopolies is imperative.\n\n27) wil: T B2 R2 G1\n\n28) nicknack: Build Y2 Nicknack\n\n29) wil: M Y3 Y3 G1\n\n30) nicknack: Trade Y2 B2 Nicknack\n\n31) wil: B B3 G1\n\n32) nicknack: Trade Y1 G1 Beta\n\n33) wil: M B3 G1 Nicknack\n\n34) nicknack: Sacrifice G1 Beta\nBuild B3 Nicknack\nCatastrophe Nicknack Blue\n\tnicknack: I don&#146;t think there&#146;s any coming back from this. Well done. Gonna go out with a bang...\n\n35) wil: M B3 G1 Nicknack\n\n\twil: Nice Bang! Challenge me anytime\n\nHomeworlds Online (SDG# 35981)\nVariants: &quot;Hard time&quot;\nStarted: 2020.3.15, Ended: 2020.3.25\nParticipants: Trydnt (S), nicknack (N)\nWinner: Trydnt\n\n1) nicknack: Homeworld R2 B1 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) nicknack: Build G1 Nicknack\n\n4) Trydnt: Build G1 Trydnt\n\n5) nicknack: Trade G1 Y1 Nicknack\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) nicknack: Build Y1 Nicknack\n\n8) Trydnt: Build B1 Trydnt\n\n9) nicknack: Build Y2 Nicknack\n\n10) Trydnt: Discover B1 Trydnt G3 G3\n\n11) nicknack: Move Y1 Nicknack G3\n\n12) Trydnt: Build B2 G3\n\n13) nicknack: Sacrifice G3 Nicknack\nBuild Y2 G3\nBuild Y2 G3\nBuild Y3 Nicknack\n\n14) Trydnt: Trade B2 R2 G3\n\n15) nicknack: Sacrifice Y2 G3\nMove Y2 G3 Trydnt\nMove Y1 G3 Trydnt\n\n16) Trydnt: Build B2 G3\n\n17) nicknack: Sacrifice Y2 Nicknack\nMove Y1 Nicknack G3\nMove Y1 G3 Trydnt\nCatastrophe Trydnt Yellow\n\n18) Trydnt: Trade B2 Y2 G3\n\n19) nicknack: Trade Y3 G3 Nicknack\n\n20) Trydnt: Sacrifice G3 Trydnt\nBuild B2 G3\nBuild B2 G3\nBuild B3 Trydnt\n\n21) nicknack: Build G1 Nicknack\n\n22) Trydnt: Discover B2 G3 Y1 Y1\n\n23) nicknack: Trade G1 Y1 Nicknack\n\n24) Trydnt: Build B3 G3\n\n25) nicknack: Build Y1 Nicknack\n\n26) Trydnt: Build Y2 G3\n\n27) nicknack: Discover Y1 Nicknack G3 Beta\n\n28) Trydnt: Discover Y2 G3 G1 G1\n\n29) nicknack: Build Y2 Beta\n\n30) Trydnt: Move B2 Y1 Beta\n\n31) nicknack: Discover Y2 Beta G1 Gamma\n\n32) Trydnt: Build B3 Beta\n\n33) nicknack: Sacrifice G3 Nicknack\nBuild Y1 Beta\nBuild Y3 Nicknack\nBuild Y3 Gamma\n\n34) Trydnt: Build Y3 G3\n\n35) nicknack: Trade Y3 R3 Nicknack\n\n36) Trydnt: Move Y3 G3 Gamma\n\n37) nicknack: Discover Y3 Gamma G3 Delta\n\n38) Trydnt: Build Y3 G1\n\n39) nicknack: Trade Y1 G1 Nicknack\n\n40) Trydnt: Build Y1 G3\n\n41) nicknack: Build G2 Nicknack\n\n42) Trydnt: Build R1 G3\n\n\tnicknack: Well played with the blue monopoly. Thanks for the game! Hope to rematch soon.\n\tTrydnt: any monopoly makes for a pretty easy win tbh. you need to focus intently on not getting frozen out, which of course often leads to trading for whatever colors your opponent gets so they don&#39;t get a head start in that color&#39;s growth.\r\n\r\nin the late game though the biggest lesson to be learned from monopolies is to make sure you don&#39;t expend so many resources blowing up half of your opponents star, that you leave yourself in a devastatingly weakened position in the new arrangement. So unless you have a way to blow up the other half too, it&#39;s usually best to hold off on pulling the trigger until you&#39;re ready.\r\n\r\nor as I formulate it for the people I&#39;m teaching at the moment - &quot;If you go in with half a plan, you&#39;ll come out with half a victory&quot;\n\tnicknack: Thank you! I look forward to trying again!\n\nHomeworlds Online (SDG# 36160)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.15, Ended: 2020.3.15\nParticipants: Dante (S), nuberu (N)\nWinner: nuberu\n\n1) nuberu: Homeworld R3 B1 G3\n\n2) Dante: Homeworld G2 B1 Y3\n\n3) nuberu: Build G1 Nuberu\n\n4) Dante: Discover Y3 Dante R3 Kimchi\n\n\nHomeworlds Online (SDG# 36161)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.15, Ended: 2020.3.16\nParticipants: nuberu (S), Mangchi (N)\nWinner: nuberu\n\n1) Mangchi: Homeworld G3 B1 Y3\n\n2) nuberu: Homeworld R2 B1 G3\n\n3) Mangchi: Build Y1 Mangchi\n\n4) nuberu: Build G1 Nuberu\n\n5) Mangchi: Trade Y1 R1 Mangchi\n\n6) nuberu: Trade G1 R1 Nuberu\n\n7) Mangchi: Discover R1 Mangchi R2 Ferengi\n\n8) nuberu: Build G1 Nuberu\n\n9) Mangchi: Build Y1 Mangchi\n\n10) nuberu: Trade G1 Y1 Nuberu\n\n11) Mangchi: Trade Y1 G1 Mangchi\n\n12) nuberu: Build G1 Nuberu\n\n13) Mangchi: Move G1 Mangchi Ferengi\n\n14) nuberu: Discover R1 Nuberu B3 Trasgu\n\n15) Mangchi: Build Y1 Mangchi\n\n16) nuberu: Build G1 Nuberu\n\n17) Mangchi: Trade Y1 B1 Mangchi\n\n18) nuberu: Move G1 Nuberu Trasgu\n\n19) Mangchi: Move B1 Mangchi Ferengi\n\n20) nuberu: Build G2 Trasgu\n\n21) Mangchi: Build Y1 Mangchi\n\n22) nuberu: Trade G2 Y2 Trasgu\n\n23) Mangchi: Move Y1 Mangchi Ferengi\n\n24) nuberu: Build G2 Trasgu\n\n25) Mangchi: Build Y1 Mangchi\n\n26) nuberu: Discover G2 Trasgu Y2 Xana\n\n27) Mangchi: Discover G1 Ferengi B3 Judo\n\n28) nuberu: Build G2 Trasgu\n\n29) Mangchi: Build G2 Judo\n\n30) nuberu: Build G3 Xana\n\n31) Mangchi: Build Y2 Mangchi\n\n32) nuberu: Sacrifice G3 Nuberu\nBuild Y3 Trasgu\nBuild Y3 Nuberu\nBuild G3 Nuberu\n\n33) Mangchi: Move Y2 Mangchi Ferengi\n\n34) nuberu: Move Y3 Trasgu Ferengi\n\n35) Mangchi: Move Y2 Ferengi Judo\n\n36) nuberu: Sacrifice Y3 Nuberu\nMove Y3 Ferengi Mangchi\nMove Y2 Trasgu Xana\nMove Y2 Xana Mangchi\nCatastrophe Mangchi Y\n\n\nHomeworlds Online (SDG# 36162)\nStarted: 2020.3.15, Ended: 2020.3.15\nParticipants: Babamots (S), Pib (N)\nWinner: Babamots\n\n1) Pib: Homeworld G1 B1 Y3 *\n\tBabamots: Some players have suggested that, when abandoning your homeworld, it should make a difference whether your enemy has any ships in your homeworld.\r\n\r\nSome say that you shouldn&#39;t be allowed to temporarily abandon your homeworld unless your enemy has ships there (SDG allows it either way).\r\n\r\nI&#39;ve also been asked whether an enemy presence in your home makes a difference to whether you may abandon it while simultaneously eliminating your opponent. I am quite certain that SDG does not allow simultaneous elimination under any circumstances, but we&#39;ll try it out.\n\n2) Babamots: Homeworld B3 G3 Y3 *\n\n3) Pib: Build Y1 Pib\n\n4) Babamots: Build Y1 Babamots\n\n5) Pib: Move Y1 Pib Babamots\n\n6) Babamots: Build Y1 Babamots\n\n7) Pib: Pass\n\n8) Babamots: Move Y1 Babamots Pib\n\n9) Pib: Pass\n\tPib: At this point, I attempted the move\r\n\r\nmove y3 Pib Babamots\r\ncatastrophe Babamots y\r\n\r\nI was directed back to game page with the added error message\r\n\r\n&quot;You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.&quot; [sic]\n\n10) Babamots: Move Y1 Babamots Pib\n\n11) Pib: Move Y1 Babamots Pib\n\n12) Babamots: Build Y2 Babamots\n\n13) Pib: Pass\n\n14) Babamots: Trade Y2 R2 Babamots\n\n15) Pib: Pass\n\n16) Babamots: Move R2 Babamots Pib\n\n17) Pib: Pass\n\tPib: At this point, I attempted the move\r\n\r\npass\r\ncatastrophe Pib y\r\n\r\nI was directed back to the game page with the same error message as before.\n\n18) Babamots: Move R2 Pib Babamots\n\n19) Pib: Pass\nCatastrophe Pib Y\n\tBabamots: But Pib was able to commit suicide by catastrophe when I had no ships at their home. So, it seems that SDG will let you commit suicide, but ONLY when your opponent does NOT have any ships at your home.\n\tPib: Having this as a rated game was an accident. Sorry!\n\n\nHomeworlds Online (SDG# 36163)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.15, Ended: 2020.3.15\nParticipants: Babamots (S), Pib (N)\nWinner: Babamots\n\n1) Pib: Homeworld B1 G1 Y3 *\n\n2) Babamots: Homeworld B3 G3 Y3 *\n\n3) Pib: Build Y1 Pib\n\n4) Babamots: Build Y1 Babamots\n\n5) Pib: Move Y1 Pib Babamots\n\n6) Babamots: Move Y1 Babamots Pib\n\n7) Pib: Build Y1 Babamots\n\n8) Babamots: Pass\n\n9) Pib: Pass\n\tPib: At this point, I attempted the move\r\n\r\nmove y3 Pib Babamots\r\ncatastrophe Babamots y\r\n\r\nI was directed back to the game page with the added error message\r\n\r\n&quot;You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.&quot; [sic]\n\n10) Babamots: Move Y1 Pib Babamots\n\n11) Pib: Move Y3 Pib Babamots\n\tPib: At this point, I attempted the move\r\n\r\nmove y3 Pib Babamots\r\ncatastrophe Babamots y\r\n\r\nI was directed to a system error page which read in part\r\n\r\n&quot;Illegal modulus zero at /home/html/games/lib/Homeworlds/Pos.pm line 886, &lt;GEN104&gt; line 19.&quot;\n\tBabamots: This test seems to confirm that SDG will not allow you to cause a draw-by-simultaneous-elimination under any circumstances, including when your opponent has a ship in your home system.\n\n\nHomeworlds Online (SDG# 36172)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.16, Ended: 2020.3.16\nParticipants: Babamots (S), Pib (N)\nWinner: Babamots\n\n1) Pib: Homeworld B1 G1 Y3 *\n\n2) Babamots: Homeworld B3 G3 Y3 *\n\tBabamots: I recently learned that SDG allows a player to abandon their homeworld (and lose), but ONLY IF there is no enemy ship there.\r\n\r\nThis is an experimental game to test whether SDG allows TEMPORARY homeworld abandonment when an enemy ship is present.\n\n3) Pib: Build Y1 Pib\n\n4) Babamots: Build Y1 Babamots\n\n5) Pib: Move Y1 Pib Babamots\n\n6) Babamots: Move Y1 Babamots Pib\n\n7) Pib: Sacrifice Y3 Pib\nMove Y1 Babamots Pib\nMove Y1 Pib Babamots\nMove Y1 Babamots Pib\n\n\tBabamots: SDG DOES allow you to temporarily abandon your homeworld, even if an enemy ship is there.\n\tDraw5PlayAll: Wait... so what happens if I leave my homeworld empty for a moment, but then try to return?\n\tBabamots: I&#39;ve tried that in other games. SDG allows you to leave you homeworld totally empty and then returning a ship to it. Pib&#39;s back-and-forth move would also have been possible if I had not had a ship at their home.\n\nHomeworlds Online (SDG# 36123)\nVariants: &quot;Hard time&quot;\nStarted: 2020.3.16, Ended: 2020.4.3\nParticipants: dlwillson (S), eliscinsky (N)\nWinner: dlwillson\n\n1) eliscinsky: Homeworld R1 B2 G3\n\n2) dlwillson: H R3 B1 G3\n\teliscinsky: Greetings dlwilson! GL! HF!\n\tdlwillson: TYGLHF\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) dlwillson: B G1 Dlwillson\n\n5) eliscinsky: Trade G1 R1 Eliscinsky\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) eliscinsky: Build R2 Eliscinsky\n\n8) dlwillson: B R2 Dlwillson\n\n9) eliscinsky: Build G1 Eliscinsky\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) eliscinsky: Trade R2 Y2 Eliscinsky\n\n12) dlwillson: Build G1 Dlwillson\n\n13) eliscinsky: B R2 Eliscinsky\n\n14) dlwillson: B R2 Dlwillson\n\n15) eliscinsky: T R2 Y2 Eliscinsky\n\n16) dlwillson: D R2 Dlwillson B2 Sea\n\n17) eliscinsky: Discover Y2 Eliscinsky G3 Kronos\n\n18) dlwillson: M G1 Dlwillson Sea\n\n19) eliscinsky: M R1 Eliscinsky Kronos\n\n20) dlwillson: D R1 Dlwillson G2 Field\n\n21) eliscinsky: B R2 Kronos\n\n22) dlwillson: Build R2 Sea\n\n23) eliscinsky: Discover G1 Eliscinsky B3 Regula\n\n24) dlwillson: Build R3 Field\n\n25) eliscinsky: Build Y1 Kronos\n\n26) dlwillson: B Y1 Dlwillson\n\n27) eliscinsky: D Y1 Kronos B1 Betazed\n\n28) dlwillson: T Y1 B1 Dlwillson\n\n29) eliscinsky: Discover Y1 Betazed B2 Takara\n\n30) dlwillson: M B1 Dlwillson Field\n\n31) eliscinsky: S G3 Eliscinsky\nB Y1 Takara\nB Y1 Takara\nB Y3 Eliscinsky\n\n32) dlwillson: T R3 Y3 Field\n\n33) eliscinsky: M R2 Kronos Takara\n\n34) dlwillson: B Y3 Field\n\n35) eliscinsky: Discover R1 Kronos G2 Talos4\n\n36) dlwillson: Move Y3 Field Kronos\n\n37) eliscinsky: Trade Y2 G2 Eliscinsky\n\n38) dlwillson: S R1 Field\nA Y2 Kronos\n\n39) eliscinsky: Sacrifice Y1 Takara\nMove G1 Regula Takara\n\n40) dlwillson: B Y1 Dlwillson\n\n41) eliscinsky: T Y3 G3 Eliscinsky\n\n42) dlwillson: S Y3 Kronos\nM G3 Dlwillson Sea\nM G3 Sea Kronos\nM G3 Kronos Eliscinsky\n\n43) eliscinsky: S G3 Eliscinsky\nB G1 Eliscinsky\nB G3 Eliscinsky\nB Y2 Takara\n\n44) dlwillson: C Eliscinsky G\nPass\n\n\tdlwillson: Thank you! Good game!\n\nHomeworlds Online (SDG# 36144)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.17, Ended: 2020.3.25\nParticipants: eliscinsky (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R2 G3 *\n\n2) eliscinsky: Homeworld R1 B3 G3\n\tBabamots: The rare Gemini option.\n\teliscinsky: Gemini ... interesting. But is that merely a deceptive starting position? If I also create a Gemini HW, or combo (S/M or M/L) then we are two steps away (Small Univ).  If I create S/L, then it&#39;s a Big Univ.  So all in all not much of a difference in HW choice for me. Or have I missed something?  In the meantime I think I&#39;ll stick with a large universe.  Seems I keep missing a critical turning point, and need to learn to recognize it.\n\n3) Babamots: Build G1 Babamots\n\n4) eliscinsky: Build G1 Eliscinsky\n\tBabamots: I don&#39;t mean to be deceptive. Just looking for some variety.\r\n\r\nAnd actually, you&#39;ve given us a microverse: our homeworlds are connected. These games can be quite short.\n\teliscinsky: (face-palm) So I did.  Thinking about one thing, and typing another.  LOL ... Game on!\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\teliscinsky: BTW, Are there any write ups on the &quot;best strategies to use&quot; when dealing with the various universes, Large, Small, Micro?  Or is it all just trial by error, I mean by gaining experience.\r\n\r\nLike when confronted with a large universe you should attempt to do the following ... 1) In The Beginning you should ..., 2) Mid game you should ..., 3) Finally, blah blah ...\r\n\r\nIf playing a Small universe you should start out focusing on ..., then at the end try to position yourself to be able to do ...\r\n\r\nWhen if come to a Micro universe these are the things to do, and to watch out for.\r\n\r\nAll this would be helpful to intermediate players to up their game, and a point of reference to beginners during / after their initial games.\r\n\r\nHopefully I&#39;ll be teaching my wife HW&#39;s sometime in the near future and any additional teaching materials would be great.\r\nI have many links to looneylabs.com, ginohn.com, icehousegames.org/wiki, superdupergames.wikidot.com, and of course jpeterbaker.github.io/homeworlds\r\n\r\nDidn&#39;t know if there were any others out there I haven&#39;t found.\r\n\n\n7) Babamots: Build G1 Babamots\n\teliscinsky: Also I truly appreciate your patience in helping me to learn new strategies. :)\n\n8) eliscinsky: Build G1 Eliscinsky\n\tBabamots: I think of the smaller universes as accelerated versions of the large universe. Like right now, we&#39;re already at the stage where we are starting to build up fleets one jump away from one another&#39;s homes.\n\n9) Babamots: Trade G1 R1 Babamots\n\teliscinsky: Even though we&#39;re only 1 hop away, I see that we&#39;ll have to discover other stars in order to build up a proper attack vector. Otherwise we&#39;ll run the risk of creating a situation in HW for the opponent to attack.  AKA Don&#39;t build up to much in HW at any given period.\r\n\r\nOr am I wrong?\n\tBabamots: Unless one of us makes a big mistake, we will need other systems for storing ships. Part the winner&#39;s invasion will probably be in their homeworld until the winning sequence.\r\n\r\nI usually plan on needing to control two systems that are one jump away from my opponent. That way, I can threaten catastrophes without being vulnerable to them myself. In this game, my homeworld is one of those two systems. I will almost certainly need an outpost on another medium system.\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) Babamots: Discover R1 Babamots G3 Orion\n\n12) eliscinsky: Discover R1 Eliscinsky G2 Kronos\n\n13) Babamots: Build R2 Orion\n\n14) eliscinsky: Build R2 Kronos\n\n15) Babamots: Move Y1 Babamots Orion\n\n16) eliscinsky: Move Y1 Eliscinsky Kronos\n\n17) Babamots: Discover R2 Orion B2 Andoria\n\tBabamots: I have a little shadow that goes in and out with me...\r\n:-P\n\teliscinsky: What better way to learn than to imitate a master player.  :D\n\tBabamots: I&#39;ve sometimes wondered, how could you exploit it if you knew that your opponent would imitate you as closely as possible (except you&#39;d have to count on them winning if you gave them an opening).\n\n18) eliscinsky: Discover R2 Kronos B3 Regula\n\teliscinsky: I guess we&#39;ll see ;)\n\n19) Babamots: Build R3 Orion\n\n20) eliscinsky: Build R3 Kronos\n\n21) Babamots: Discover R1 Orion G1 Risa\n\n22) eliscinsky: Discover R1 Kronos G1 Talos4\n\n23) Babamots: Build R3 Orion\n\n24) eliscinsky: M R3 Kronos Regula\n\teliscinsky: ... and so the great divergence began.\n\n25) Babamots: Trade R2 Y2 Andoria\n\n26) eliscinsky: Build R2 Talos4\n\n27) Babamots: Move R3 Orion Talos4\n\n28) eliscinsky: Trade R2 G2 Regula\n\n29) Babamots: Build R2 Orion\n\teliscinsky: Well done. Once again I&#39;m at a disadvantage.  I&#39;ll have to study this game to see where and when I went wrong.\n\n30) eliscinsky: B G1 Eliscinsky\n\n31) Babamots: Attack R2 Talos4\n\n32) eliscinsky: B G2 Regula\n\n33) Babamots: Attack R1 Talos4\n\n34) eliscinsky: S Y1 Kronos\nM R3 Regula Talos4\nC Talos4 R\n\n35) Babamots: Move Y2 Andoria Regula\n\n36) eliscinsky: T G2 Y2 Regula\n\n37) Babamots: Sacrifice R2 Orion\nAttack Y2 Regula\nAttack G2 Regula\n\n38) eliscinsky: Trade G1 Y1 Eliscinsky\n\n39) Babamots: Build R1 Orion\n\n40) eliscinsky: Build G1 Eliscinsky\n\tBabamots: I guess you get to rethink your third move :-P\n\n41) Babamots: Move Y2 Regula Babamots\n\n42) eliscinsky: T G1 B1 Eliscinsky\n\n43) Babamots: Discover R3 Orion Y2 Iconia\n\n44) eliscinsky: Build G1 Eliscinsky\n\n45) Babamots: Trade G2 R2 Regula\n\n46) eliscinsky: Build B1 Eliscinsky\n\n47) Babamots: Build R2 Risa\n\n48) eliscinsky: Discover G1 Eliscinsky G2 Earth\n\n49) Babamots: Build R3 Orion\n\n50) eliscinsky: Build G1 Eliscinsky\n\tBabamots: With that extra ship, you&#39;ve got just enough ships to turn my triumph to embarrassment.\n\n51) Babamots: Move R3 Orion Babamots\n\n52) eliscinsky: Discover G1 Eliscinsky G2 Peapod\n\n53) Babamots: Sacrifice Y2 Regula\nMove R3 Iconia Eliscinsky\nMove G3 Babamots Eliscinsky\n\n54) eliscinsky: A R3 Eliscinsky\n\n55) Babamots: Sacrifice R2 Risa\nAttack R3 Eliscinsky\nAttack G3 Eliscinsky\n\n56) eliscinsky: Sacrifice G1 Peapod\nBuild Y1 Eliscinsky\n\n57) Babamots: Trade G3 B3 Eliscinsky\nCatastrophe Eliscinsky B\n\n58) eliscinsky: Sacrifice G1 Earth\nBuild Y2 Eliscinsky\n\teliscinsky: When we&#39;re done, you don&#39;t have to tell me why you undid that move. I don&#39;t understand how I could have taken you.\n\n59) Babamots: Move Y1 Orion Eliscinsky\nCatastrophe Eliscinsky Y\n\teliscinsky: When we&#39;re done, I&#39;d appreciate it if you would tell me why you undid that particular move.\n\n\tBabamots: Agreed. Not seeing the bank makes it much harder to analyze archived positions.\n\tBabamots: I bought a month&#39;s worth of CBS so I could watch Discovery and Picard. I just got to where Talos IV is mentioned for the first time, so I get your reference now. :-)\n\teliscinsky: Where I get my names for the color of the planets / stars\r\n\r\nhttps://memory-alpha.fandom.com/wiki/The_Worlds_of_the_Federation\r\n\r\nhttps://memory-alpha.fandom.com/wiki/Planetary_classification\n\teliscinsky: BTW, I&#39;ve got 3 other games going so I&#39; might be a while before I get back to a game w/ you.\n\teliscinsky: And TY again.  If no one is challenging you feel free to hit me up. :)\n\tBabamots: I&#39;m slightly burned out on HW at the moment. I spent half of last week proofreading drafts of the new Homeworlds rulebook for Pyramid Quartet. I couldn&#39;t get the game out of my head all weekend, so I don&#39;t mind having a little less HW in my life for a few days. :-D\n\nHomeworlds Online (SDG# 36166)\nStarted: 2020.3.17, Ended: 2020.4.13\nParticipants: zweiterlinde (S), amoscai (N)\nWinner: zweiterlinde\n\n1) amoscai: Homeworld Y1 B2 G3\n\n2) zweiterlinde: Homeworld B1 Y3 G3\n\n3) amoscai: Build G1 Amoscai\n\n4) zweiterlinde: Build G1 Zweiterlinde\n\n5) amoscai: Discover G1 Amoscai B3 Taylor\n\n6) zweiterlinde: Discover G1 Zweiterlinde B2 Swift\n\n7) amoscai: Build G1 Taylor\n\n8) zweiterlinde: Build G2 Zweiterlinde\n\n9) amoscai: Build G2 Amoscai\n\n10) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G2 Swift\nBuild G3 Swift\nBuild G3 Zweiterlinde\n\n11) amoscai: Trade G1 Y1 Taylor\n\n12) zweiterlinde: Trade G1 Y1 Swift\n\n13) amoscai: Build Y2 Taylor\n\n14) zweiterlinde: Trade G3 R3 Swift\n\n15) amoscai: Trade G2 R2 Amoscai\n\n16) zweiterlinde: Move R3 Swift Taylor\n\n17) amoscai: Sacrifice Y2 Taylor\nMove Y1 Taylor Swift\nMove G1 Taylor Swift\n\n18) zweiterlinde: Trade G2 R2 Swift\n\n19) amoscai: Move G1 Swift Zweiterlinde\n\n20) zweiterlinde: Trade G2 R2 Zweiterlinde\n\n21) amoscai: Build G1 Zweiterlinde\n\n22) zweiterlinde: Sacrifice R2 Zweiterlinde\nAttack G1 Zweiterlinde\nAttack G1 Zweiterlinde\n\n23) amoscai: Move Y1 Swift Zweiterlinde\n\n24) zweiterlinde: Trade G1 R1 Zweiterlinde\n\n25) amoscai: Build G1 Amoscai\n\n26) zweiterlinde: Move G1 Zweiterlinde Swift\n\n27) amoscai: Discover G1 Amoscai Y3 John\n\n28) zweiterlinde: Build Y2 Swift\n\n29) amoscai: Build G1 John\n\n30) zweiterlinde: Attack Y1 Zweiterlinde\n\n31) amoscai: Build G2 Amoscai\n\n32) zweiterlinde: Build G2 Zweiterlinde\n\n33) amoscai: Move G1 John Swift\n\n34) zweiterlinde: Attack G1 Swift\n\n35) amoscai: Build G2 John\n\n36) zweiterlinde: Sacrifice G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild G3 Zweiterlinde\nBuild R1 Taylor\n\n37) amoscai: Trade G2 Y2 Amoscai\n\n38) zweiterlinde: Discover G3 Zweiterlinde B2 Lennon\n\n39) amoscai: Build G2 Amoscai\n\n40) zweiterlinde: Move G1 Swift Taylor\n\n41) amoscai: Build R1 Amoscai\n\n42) zweiterlinde: Move Y1 Swift Taylor\n\n43) amoscai: Move R2 Amoscai Taylor\n\n44) zweiterlinde: Attack R2 Taylor\n\n45) amoscai: Build R2 Amoscai\n\n46) zweiterlinde: Sacrifice G3 Lennon\nBuild G3 Taylor\nBuild R3 Swift\nBuild R3 Zweiterlinde\n\n47) amoscai: Move R1 Amoscai Taylor\nCatastrophe Taylor Red\n\n48) zweiterlinde: Sacrifice G3 Taylor\nBuild G3 Taylor\nBuild Y2 Swift\nBuild Y3 Taylor\n\n49) amoscai: Trade G2 B2 Amoscai\n\n50) zweiterlinde: Sacrifice Y2 Swift\nMove Y3 Taylor Amoscai\nMove Y1 Taylor Amoscai\nCatastrophe Amoscai Yellow\n\n\tamoscai: I just can&#39;t wrap my head round abstracts the way you do!\n\nHomeworlds Online (SDG# 36034)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.17, Ended: 2020.3.20\nParticipants: satyagrahaha (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) satyagrahaha: Homeworld R3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) satyagrahaha: Build G1 Satyagrahaha\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) satyagrahaha: Build G1 Satyagrahaha\n\n7) Trydnt: Build B1 Trydnt\n\n8) satyagrahaha: Trade G1 Y1 Satyagrahaha\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) satyagrahaha: Build G1 Satyagrahaha\n\n11) Trydnt: Build B2 G3\n\n12) satyagrahaha: Discover G1 Satyagrahaha R2 R2\n\n13) Trydnt: Trade B2 Y2 G3\n\n14) satyagrahaha: Trade G3 R3 Satyagrahaha\n\n15) Trydnt: Build B2 G3\n\n16) satyagrahaha: Build R1 Satyagrahaha\n\n17) Trydnt: Move B2 G3 R2\n\n18) satyagrahaha: Move R1 Satyagrahaha R2\n\n19) Trydnt: Attack R1 R2\n\n20) satyagrahaha: Build R1 Satyagrahaha\n\n21) Trydnt: Sacrifice Y2 G3\nMove R1 R2 Satyagrahaha\nCatastrophe Satyagrahaha R\nMove B2 R2 Satyagrahaha\n\n\nHomeworlds Online (SDG# 36186)\nStarted: 2020.3.19, Ended: 2020.3.26\nParticipants: kokigami (S), lefou23 (N)\nWinner: lefou23\n\n1) lefou23: Homeworld R3 B2 G3\n\n2) kokigami: Homeworld B2 G1 Y3\n\n3) lefou23: Build G1 Lefou23 (n)\n\n4) kokigami: Build Y1 Kokigami\n\n5) lefou23: Trade G1 Y1 Lefou23\n\n6) kokigami: Discover Y1 Kokigami G3 Mookie\n\n7) lefou23: Build G1 Lefou23\n\tkokigami: Mostly gonna be learning the command interface. Win or lose is secondary\n\n8) kokigami: Build Y1 Mookie\n\tlefou23: agree\n\tkokigami: This build retriction rule really complicates planning. \n\n9) lefou23: Build Y2 Lefou23\n\n10) kokigami: Build Y2 Mookie\n\tlefou23: yes, lots more planning ahead\n\tlefou23: kinda need a realtime chat off to the side\n\n11) lefou23: Discover Y2 Lefou23 R1 Sparky\n\n12) kokigami: Discover Y1 Mookie B2 Gemi\n\n13) lefou23: Trade G1 B1 Lefou23\n\tkokigami: Scrolling map on my phone will be awkward\n\n14) kokigami: Trade Y1 B1 Gemi\n\tkokigami: You load skype yet? You may have told me\n\tlefou23: yes\n\n15) lefou23: Build G1 Lefou23\n\tlefou23: hmm maybe on the iPad.. \n\n16) kokigami: Move Y1 Mookie Gemi\n\n17) lefou23: Move B1 Lefou23 Sparky\n\n18) kokigami: Move Y2 Mookie Gemi\n\n19) lefou23: Discover B1 Sparky G3 Toledo\n\n20) kokigami: Trade Y3 R3 Kokigami\n\n21) lefou23: Build B1 Toledo\n\tlefou23: oo dangerous\n\n22) kokigami: Trade Y2 G2 Gemi\n\tkokigami: I would prefer they placed the running log at the top.. I think. Then one could read it, scroll down and look at the map.  Still, this is designed for PBM style games. looks like default turn time limit is 3 days.. \r\n\n\n23) lefou23: Trade B1 R1 Toledo\n\tlefou23: second life needs pyramids (haven&#39;t visited in years)\n\tkokigami: giant ones, or nothin...\r\nok, so, play on a standard board.. but, make it possible to teleport into a system to view the system from the bridge of a fleet ship.. ?\r\n\n\tkokigami: giant ones, or nothin...\r\nok, so, play on a standard board.. but, make it possible to teleport into a system to view the system from the bridge of a fleet ship.. ?\r\n\n\n24) kokigami: Sacrifice G2 Gemi\nBuild B1 Gemi\nBuild B3 Gemi\n\n25) lefou23: Build B3 Toledo\n\n26) kokigami: Discover B3 Gemi G3 Mookieprime\n\tkokigami: you must have been distracted as well?\r\nI blame the cat, which I maintain you sent as a spy.\r\n\n\tlefou23: choices to be made, too\n\n27) lefou23: Move Y2 Sparky Toledo\n\tkokigami: you missed my catastrophe in the offing?\r\n\n\n28) kokigami: Trade B1 Y1 Gemi\n\tlefou23: yeah. I don&#39;t regret getting a b3. maybe I&#39;m greedy.\n\n29) lefou23: Build Y2 Lefou23\n\tkokigami: catastrophe is a free action, isn&#39;t it?\r\n\n\n30) kokigami: Move Y1 Gemi Mookieprime\n\tkokigami: if you did it after the build you could have gotten a b3 and blown up 4 of my fleet in one go?\r\n\n\n31) lefou23: Build R1 Toledo\n\n32) kokigami: Build Y2 Mookieprime\n\tlefou23: yeah missed it. sure well see something again\n\n33) lefou23: Build R1 Toledo\n\n34) kokigami: Sacrifice Y2 Mookieprime\nMove Y1 Mookieprime Kokigami\nMove B3 Mookieprime Kokigami\n\n35) lefou23: Trade B3 Y3 Toledo\n\n36) kokigami: Discover B1 Gemi G1 Festus\n\tkokigami: covid just got serious. running out of rum. \r\n\n\n37) lefou23: Move R1 Toledo Festus\n\n38) kokigami: Sacrifice B1 Festus\nTrade B3 G3 Kokigami\n\tlefou23: Not good. Wisconsin hasn&#146;t locked down anything yet, have they?\n\tkokigami: interesting.. \r\n\n\n39) lefou23: Build B1 Toledo\n\tkokigami: the interface isn&#39;t elegant, but it works pretty well \r\n\n\n40) kokigami: Discover G3 Kokigami Y3 Gigi\n\tlefou23: Yeah. I just switched to iPad with no loss in functionality. It will save when we stop.\n\tlefou23: I kind of like the tiles around the stars\n\n41) lefou23: Sacrifice Y1 Lefou23\nMove R1 Festus Gigi\n\tkokigami: interesting tactic you are trying. by locking me out of x1s you make approaching your home world very tricksy. Yes, I also like naming the stars. I  could see printing some star fields for f2f games.. naming them.. just for giggles.. \r\n\n\tkokigami: the game is blowing up my email though\r\n\n\n42) kokigami: Sacrifice G3 Gigi\nBuild Y1 Kokigami\nBuild Y2 Gemi\nBuild Y3 Gemi\n\tlefou23: Yeah. I filtered the messages to a folder, but I&#146;ll have to clear it after we stop so I know when we randomly move again.\n\tkokigami: I just set one up.\r\n\n\n43) lefou23: Sacrifice Y3 Toledo\nMove R1 Gigi Kokigami\nMove R1 Toledo Kokigami\nMove R1 Toledo Kokigami\nCatastrophe Kokigami Red\n\tkokigami: build order is fussy \r\n\n\tkokigami: but it caught the issue and gave an error so, good coding.\r\n\n\n44) kokigami: Trade Y3 R3 Gemi\n\tlefou23: That was a long setup\n\n45) lefou23: Move Y2 Toledo Kokigami\n\tkokigami: that isn&#39;t really going to work the way I thought.. \r\n\n\tlefou23: Have to call it a night. Feel free to take a move. I&#146;ll watch for a fresh email.\n\tkokigami: care if I unmove? and redo that?\r\n\n\tkokigami: was a good setup.. did take a while. more subtle coming from two stars at once \r\n\n\tkokigami: will think on it. timer is running. will move again probably tomorrow.\r\n\n\tlefou23: No prob. I&#39;ll probably check lunch and evenings during the week. I&#39;ll have more opportunities to check on weekend. Might set up a special alert to watch for &quot;It&#39;s your turn&quot; emails. \r\n\r\nI like that we can leave it set up.\n\n46) kokigami: Sacrifice Y2 Gemi\nMove R3 Gemi Toledo\nMove R3 Toledo Kokigami\n\n47) lefou23: Build Y2 Kokigami\nCatastrophe Kokigami Yellow\n\n48) kokigami: Build R1 Kokigami\n\n49) lefou23: Trade B1 R1 Toledo\n\n50) kokigami: Discover Y1 Gemi G1 Garms\n\n51) lefou23: Build R1 Toledo\n\n52) kokigami: Trade R3 Y3 Kokigami\n\n53) lefou23: Trade R1 Y1 Toledo\n\n54) kokigami: Build Y1 Kokigami\n\n55) lefou23: Build Y2 Toledo\n\tkokigami: You have me pretty well pinned down. Will take some time to find the flaw in your approach\n\n56) kokigami: Trade Y3 R3 Kokigami\n\n57) lefou23: Trade Y2 R2 Toledo\n\tlefou23: mail has started marking &quot;It&#39;s your turn!&quot; email as junk because I keep deleting it. \n\tkokigami: Technology. Amirite?\n\n58) kokigami: Move R3 Kokigami Toledo\n\n59) lefou23: Build R1 Toledo\nCatastrophe Toledo Red\n\n60) kokigami: Move R1 Kokigami Toledo\n\n61) lefou23: Build Y2 Toledo\n\tkokigami: very scorched earth.. not at all expected.. \r\n\n\n62) kokigami: Attack B1 Toledo\n\n63) lefou23: Sacrifice Y1 Toledo\nMove Y2 Toledo Kokigami\n\tlefou23: Yeah, seemed like a good idea at the time \n\n64) kokigami: Sacrifice Y1 Garms\nMove R1 Toledo Kokigami\n\n65) lefou23: Trade Y2 R2 Kokigami\n\tlefou23: might be checkmate\n\tlefou23: never mind \n\n66) kokigami: Build R1 Kokigami\n\n67) lefou23: Trade R2 B2 Kokigami\n\n68) kokigami: Build R1 Kokigami\n\n69) lefou23: Trade G3 R3 Lefou23\n\n70) kokigami: Move R1 Kokigami Toledo\n\n\n71) lefou23: Sacrifice R3 Lefou23\nAttack R1 Kokigami\nAttack R1 Kokigami\nAttack Y1 Kokigami\n\n\nHomeworlds Online (SDG# 36087)\nStarted: 2020.3.20, Ended: 2020.3.20\nParticipants: Dther (S), Everett451 (N)\nWinner: Dther\n\n\nHomeworlds Online (SDG# 36188)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.21, Ended: 2020.3.21\nParticipants: Cuc2 (S), Cuc (N)\nWinner: Cuc2\n\n1) Cuc: Homeworld G1 B1 Y3 *\n\n2) Cuc2: Homeworld B3 G3 Y3 *\n\n3) Cuc: Move Y3 Cuc Cuc2\n\tCuc: You can abandon your Homeworld. It&#39;s suicide (allowed) if you don&#39;t destroy the opponent&#39;s fleet.\n\n\nHomeworlds Online (SDG# 36190)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.21, Ended: 2020.3.21\nParticipants: Cuc2 (S), Cuc (N)\nWinner: Cuc2\n\n1) Cuc: Homeworld B1 G1 Y3 *\n\n2) Cuc2: Homeworld G3 B3 Y3 *\n\n3) Cuc: Build Y1 Cuc\n\n4) Cuc2: Pass\n\n5) Cuc: Build Y1 Cuc\n\n6) Cuc2: Build Y1 Cuc2\n\tCuc2: I tried this:\r\n[m y3 Cuc2 Cuc\r\nc Cuc y]\r\nThis ended in an error message: &quot;Illegal modulus zero at /home/html/games/lib/Homeworlds/Pos.pm line 886, &lt;GEN0&gt; line 2093.&quot;\r\nI&#39;m now going to try it again, but with a ship left in my Homeworld.\r\nCuc is going to try the same but leaving one ship in his Homeworld. I need to pass a couple of times :-( haha.\n\n7) Cuc: Build Y2 Cuc\n\n8) Cuc2: Build Y2 Cuc2\n\n9) Cuc: Pass\n\n10) Cuc2: Build Y2 Cuc2\n\n11) Cuc: Trade Y3 B3 Cuc\n\tCuc2: I tried:\r\n[b y2 Cuc2\r\nc Cuc y\r\nc Cuc2 y]\r\nThis led to the same error.\r\nWe&#39;re going to try to simultaneously eliminate the stars now, leaving at least one ship in our Homeworlds. It&#39;ll take a couple of moves and trades.\n\n12) Cuc2: Trade Y3 B3 Cuc2\n\n13) Cuc: Build Y3 Cuc\n\n14) Cuc2: Build Y3 Cuc2\n\n15) Cuc: Sacrifice B3 Cuc\nTrade Y3 B3 Cuc\nTrade Y2 B2 Cuc\nTrade Y1 B1 Cuc\n\n16) Cuc2: Sacrifice B3 Cuc2\nTrade Y2 B2 Cuc2\nTrade Y2 B2 Cuc2\nTrade Y1 B1 Cuc2\n\n17) Cuc: Move Y1 Cuc Cuc2\n\n18) Cuc2: Move Y3 Cuc2 Cuc\nCatastrophe Cuc B\n\n\tCuc2: I tried \r\n[m y3 Cuc2 Cuc\r\nc Cuc b\r\nc Cuc2 b]\r\nand I got this message (not an error): &quot;You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.&quot;\r\nThis means that SE (Simultaneous Elimination) is not allowed. But we&#39;ve seen that Suicide is allowed, although you will lose. (Not totally consistent.) This reminder corresponds to the original 2002 rules!\n\nHomeworlds Online (SDG# 36084)\nStarted: 2020.3.21, Ended: 2020.5.18\nParticipants: MobyNostromo (S), quozl (N)\nWinner: MobyNostromo\n\n1) quozl: Homeworld G2 B3 Y3\n\n2) MobyNostromo: H B1 Y2 G3\n\n3) quozl: Build Y1 Quozl\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) quozl: Build Y1 Quozl\n\n6) MobyNostromo: T G1 Y1 Mobynostromo\n\n7) quozl: Discover Y1 Quozl G1 G1\n\n8) MobyNostromo: B Y2 Mobynostromo\n\n9) quozl: Build Y2 G1\n\n10) MobyNostromo: D Y2 Mobynostromo G3 Arbory\n\n11) quozl: Trade Y1 B1 Quozl\n\n12) MobyNostromo: B G1 Mobynostromo\n\n13) quozl: Move B1 Quozl G1\n\n14) MobyNostromo: T Y1 B1 Mobynostromo\n\n15) quozl: Build B2 G1\n\n16) MobyNostromo: B Y1 Arbory\n\n17) quozl: Trade B1 R1 G1\n\n18) MobyNostromo: T G1 R1 Mobynostromo\n\n19) quozl: Trade Y1 G1 G1\n\n20) MobyNostromo: B G1 Mobynostromo\n\n21) quozl: Build Y1 Quozl\n\n22) MobyNostromo: M G1 Mobynostromo Arbory\n\n23) quozl: Discover G1 G1 B3 B3\n\n24) MobyNostromo: B G2 Mobynostromo\n\n25) quozl:\nMove Y1 Quozl G1\n\tMobyNostromo: I&#39;m sorry for the wait. It&#39;s been difficult to contemplate games these days.\n\tquozl: move y1 quozl G1\n\tquozl: How are things going for you?\n\n26) MobyNostromo: S B1 Mobynostromo\nT Y2 R2 Arbory\n\tMobyNostromo: We&#39;re okay. We&#39;re all working from home, waiting for this virus epidemic to subside. How about yourself? Are you okay?\n\n27) quozl: Build G2 B3\n\n28) MobyNostromo: T G2 B2 Mobynostromo\n\tquozl: same here, all working from home. I&#39;m on the border between Oregon and Washington and pretty much everything is shutdown here.\n\tMobyNostromo: We&#39;re in Southern California. Actually, we visited Oregon and Washington a number of years ago. We loved it! Stay safe.\n\n29) quozl: Move Y1 G1 B3\n\n30) MobyNostromo: M R1 Mobynostromo B3\n\tquozl: You too!\n\n31) quozl: Sacrifice R1 G1\nAttack R1 B3\n\n32) MobyNostromo: T B2 R2 Mobynostromo\n\n33) quozl: Build R1 B3\n\n34) MobyNostromo: B R1 Arbory\n\n35) quozl: Trade R1 B1 B3\n\n36) MobyNostromo: D Y1 Arbory B1 Cobalt\n\n37) quozl: Build B2 B3\n\n38) MobyNostromo: T Y1 R1 Cobalt\n\n39) quozl: Sacrifice Y2 G1\nMove B1 B3 Mobynostromo\nMove B2 B3 Mobynostromo\n\n40) MobyNostromo: S R2 Arbory\nA B2 Mobynostromo\nA B1 Mobynostromo\n\n41) quozl: Build B2 G1\n\n42) MobyNostromo: M B2 Mobynostromo Arbory\n\n43) quozl: Build R2 B3\n\n44) MobyNostromo: S G3 Mobynostromo\nB R2 Cobalt\nB R3 Mobynostromo\nB R3 Arbory\n\n45) quozl: Trade B2 Y2 G1\n\n46) MobyNostromo: T R2 Y2 Mobynostromo\n\n47) quozl: Build Y1 Quozl\n\n48) MobyNostromo: S Y2 Mobynostromo\nM R3 Arbory G1\nM R1 Cobalt B3\n\n49) quozl: Sacrifice Y2 G1\nMove R1 B3 Mobynostromo\nMove R2 B3 Mobynostromo\n\n50) MobyNostromo: S R2 Cobalt\nA R2 Mobynostromo\nA R1 Mobynostromo\n\n51) quozl: Trade G2 R2 B3\n\n52) MobyNostromo: M R2 Mobynostromo B3\n\n53) quozl: Build R2 B3\nCatastrophe B3 Red\n\n54) MobyNostromo: A B2 G1\n\n55) quozl: Trade Y3 R3 Quozl\n\n56) MobyNostromo: T B2 Y2 Arbory\n\n57) quozl: Build G2 B3\n\n58) MobyNostromo: B G2 Arbory\n\n59) quozl: Trade G1 Y1 B3\n\n60) MobyNostromo: M G1 Arbory Mobynostromo\n\n61) quozl: Build Y2 Quozl\n\n62) MobyNostromo: B Y3 Arbory\n\n63) quozl: Build Y3 B3\n\n64) MobyNostromo: M Y2 Arbory G1\n\n65) quozl: Sacrifice Y2 Quozl\nMove Y1 B3 Mobynostromo\nMove Y1 B3 Mobynostromo\n\n66) MobyNostromo: A Y1 Mobynostromo\n\tquozl: Sorry I was late. I don&#39;t think I ever got an email.\n\tMobyNostromo: No worries. I&#39;m late too. :)\n\n67) quozl: Sacrifice G2 B3\nBuild Y2 B3\nBuild Y3 Mobynostromo\nCatastrophe Mobynostromo Yellow\n\n68) MobyNostromo: S Y3 Arbory\nM R3 G1 Quozl\nM B2 G1 Quozl\nM R1 Mobynostromo Quozl\n\n69) quozl: Attack R3 Quozl\n\n70) MobyNostromo: B R1 Quozl\nC Quozl R\n\tquozl: Yikes!\r\n\n\n71) quozl: Trade Y3 R3 B3\n\n72) MobyNostromo: S R1 Arbory\nA Y1 Quozl\n\tMobyNostromo: Good game!\n\n\nHomeworlds Online (SDG# 36089)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.21, Ended: 2020.3.27\nParticipants: eliscinsky (S), quozl (N)\nWinner: quozl\n\n1) quozl: Homeworld G2 B3 Y3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\n3) quozl: Build Y1 Quozl\n\teliscinsky: TY GL HF!\n\tquozl: Hello\n\n4) eliscinsky: B G1 Eliscinsky\n\n5) quozl: Build Y1 Quozl\n\n6) eliscinsky: T G1 Y1 Eliscinsky\n\n7) quozl: Discover Y1 Quozl G1 G1\n\n8) eliscinsky: B Y2 Eliscinsky\n\n9) quozl: Build Y2 G1\n\n10) eliscinsky: Trade Y1 B1 Eliscinsky\n\n11) quozl: Trade Y1 B1 Quozl\n\n12) eliscinsky: B Y1 Eliscinsky\n\n13) quozl: Move B1 Quozl G1\n\n14) eliscinsky: Discover Y2 Eliscinsky G3 Kronos\n\n15) quozl: Trade Y1 R1 G1\n\n16) eliscinsky: D Y2 Kronos G1 Talos4\n\n17) quozl: Build B1 G1\n\n18) eliscinsky: B Y1 Talos4\n\n19) quozl: Discover B1 G1 G3 G3\n\n20) eliscinsky: M Y1 Talos4 Quozl\n\n21) quozl: Trade Y3 R3 Quozl\n\n22) eliscinsky: T Y1 R1 Quozl\n\n23) quozl: Attack R1 Quozl\n\n24) eliscinsky: Build G1 Eliscinsky\n\n25) quozl: Build B2 G3\n\n26) eliscinsky: Discover B1 Eliscinsky G3 Kronos\n\n27) quozl: Build R2 G1\n\n28) eliscinsky: B B2 Kronos\n\n29) quozl: Trade B1 Y1 G3\n\n30) eliscinsky: Sacrifice B1 Kronos\nTrade Y2 R2 Talos4\n\n31) quozl: Move R2 G1 Kronos\n\n32) eliscinsky: Sacrifice Y1 Eliscinsky\nMove B2 Kronos Talos4\n\n33) quozl: Build B1 G3\n\n34) eliscinsky: Build G2 Eliscinsky\n\n35) quozl: Trade B2 G2 G3\n\n36) eliscinsky: Trade G1 Y1 Eliscinsky\n\n37) quozl: Build B1 G3\n\n38) eliscinsky: Trade G2 Y2 Eliscinsky\n\n39) quozl: Sacrifice Y2 G1\nMove B1 G3 Eliscinsky\nMove B1 G3 Eliscinsky\n\n40) eliscinsky: Build R2 Talos4\n\n41) quozl: Trade R3 Y3 Quozl\n\n42) eliscinsky: Trade R2 Y2 Talos4\n\n43) quozl: Sacrifice G2 G3\nBuild B2 Eliscinsky\nBuild B3 G1\nCatastrophe Eliscinsky B\n\n44) eliscinsky: B G1 Eliscinsky\n\n45) quozl: Build R2 Kronos\n\n46) eliscinsky: T B2 G2 Talos4\n\n47) quozl: Trade B3 Y3 G1\n\n48) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y2 Talos4 Quozl\nMove R2 Talos4 Quozl\n\n49) quozl: Attack Y2 Quozl\n\n50) eliscinsky: S G2 Talos4\nB R3 Quozl\nB R3 Quozl\nC Quozl R\n\n51) quozl: Sacrifice Y2 Quozl\nMove R2 Kronos Eliscinsky\nMove R2 Kronos Eliscinsky\n\n52) eliscinsky: B Y1 Eliscinsky\n\teliscinsky: This has been a fun game. While I believe I&#39;m going to lose. I wouldn&#39;t mind another game with you another time.\n\tquozl: Yes, definitely! I&#39;ve just gotten back into this game playing with my daughter.\n\n53) quozl: Sacrifice Y3 G1\nMove R1 G1 G3\nMove R1 G3 Eliscinsky\nCatastrophe Eliscinsky R\nPass\n\n\tquozl: Thank you!\n\nHomeworlds Online (SDG# 36192)\nStarted: 2020.3.22, Ended: 2020.5.25\nParticipants: Draw5PlayAll (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\tSimon: Hi! This is for the 2019 Tournament. Have fun!\n\tDraw5PlayAll: Another person stealing my B3R1+G3 setup?!\n\n3) Simon: Build G1 Simon\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tSimon: It is solid!\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Simon: Build G1 Simon\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Simon: Trade G1 R1 Simon\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) Simon: Build R2 Simon\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) Simon: Discover R1 Simon G2 G2\n\n14) Draw5PlayAll: Discover R1 Draw5playall G3 Rocket\n\n15) Simon: Build R3 Simon\n\n16) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 Draw5playall\nBuild R3 Rocket\nBuild Y1 Draw5playall\n\n17) Simon: Build Y2 Simon\n\tDraw5PlayAll: If this does not work...\n\n18) Draw5PlayAll: Trade R2 G2 Draw5playall\n\n19) Simon: Discover R3 Simon B2 B2\n\n20) Draw5PlayAll: Move Y1 Draw5playall Rocket\n\n21) Simon: Move Y1 Simon B2\n\n22) Draw5PlayAll: Build Y2 Draw5playall\n\n23) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 Simon\nBuild R2 B2\n\n24) Draw5PlayAll: Build Y3 Rocket\n\n25) Simon: Trade Y3 G3 Simon\n\n26) Draw5PlayAll: Discover Y1 Rocket G2 Dreams\n\n27) Simon: Build Y3 Simon\n\n28) Draw5PlayAll: Build Y3 Dreams\n\n29) Simon: Sacrifice Y2 Simon\nMove R1 G2 Rocket\nMove R2 B2 Rocket\nCatastrophe Rocket Red\n\n30) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n31) Simon: Trade Y2 G2 B2\n\n32) Draw5PlayAll: Build Y2 Rocket\n\n33) Simon: Build Y2 B2\n\n34) Draw5PlayAll: Sacrifice B2 Draw5playall\nTrade Y2 B2 Rocket\nTrade Y1 R1 Dreams\n\n35) Simon: Trade Y1 B1 B2\n\n36) Draw5PlayAll: Build B1 Rocket\n\n37) Simon: Discover B1 B2 G3 G3\n\n38) Draw5PlayAll: Trade B1 R1 Rocket\n\n39) Simon: Discover R2 Simon Y2 Y2\n\n40) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R2 Rocket\nBuild R3 Dreams\n\n41) Simon: Move R3 B2 G3\n\n42) Draw5PlayAll: Discover Y3 Dreams B3 Nolimits\n\n43) Simon: Build Y1 B2\n\n44) Draw5PlayAll: Move Y3 Nolimits Draw5playall\n\n45) Simon: Move Y1 B2 G3\n\n46) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n47) Simon: Build G1 Simon\n\n48) Draw5PlayAll: Discover R3 Draw5playall B3 Jackpot\n\n49) Simon: Build B1 G3\n\n50) Draw5PlayAll: Build Y1 Rocket\n\n51) Simon: Move G3 Simon Y2\n\n52) Draw5PlayAll: Move Y1 Rocket Dreams\n\n53) Simon: Move B1 G3 Y2\n\n54) Draw5PlayAll: Sacrifice Y1 Dreams\nMove R3 Jackpot B2\n\n55) Simon: Discover Y2 B2 B3 B3\n\n56) Draw5PlayAll: Build Y1 Rocket\n\n57) Simon: Sacrifice G2 B2\nBuild Y1 G3\nBuild Y2 Simon\n\n58) Draw5PlayAll: Build G1 Draw5playall\n\n59) Simon: Sacrifice G3 Y2\nBuild G2 Simon\nBuild B2 G3\nBuild B3 Y2\n\n60) Draw5PlayAll: Move G1 Draw5playall B3\n\n61) Simon: Move G1 Simon Y2\n\n62) Draw5PlayAll: Move Y1 Rocket B2\n\n63) Simon: Move B3 Y2 B3\n\n64) Draw5PlayAll: Sacrifice G1 B3\nPass\n\n65) Simon: Move R2 Y2 B3\n\tDraw5PlayAll: You did it, huh.\n\n66) Draw5PlayAll: Discover R3 B2 G1 Peace\n\n67) Simon: Move Y2 Simon B2\n\tSimon: Yeah, the green sac had to happen eventually. Was hard to see whether it was good to postpone even longer.\n\n68) Draw5PlayAll: Move Y1 B2 Peace\n\n69) Simon: Move G1 Y2 B3\n\n70) Draw5PlayAll: Move R3 Peace Y2\n\n71) Simon: Move Y1 G3 Draw5playall\n\n72) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n73) Simon: Build G2 B3\n\n74) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y3 Rocket\n\n75) Simon: Build G1 B3\n\n76) Draw5PlayAll: Move Y3 Rocket Draw5playall\n\n77) Simon: Sacrifice Y2 B2\nMove G1 B3 Draw5playall\nMove G1 B3 Draw5playall\n\n78) Draw5PlayAll: Move B2 Rocket Draw5playall\n\tDraw5PlayAll: Shields up!\n\n79) Simon: Build Y2 Draw5playall\n\n80) Draw5PlayAll: Sacrifice Y3 Rocket\nMove R3 Dreams Rocket\nMove R3 Rocket Draw5playall\nDiscover R3 Y2 Y3 Handlimit3\n\n81) Simon: Sacrifice Y3 Simon\nMove B3 B3 Draw5playall\nMove R2 B3 Draw5playall\nMove R3 G3 Draw5playall\nCatastrophe Draw5playall Red\n\n82) Draw5PlayAll: Build Y3 Draw5playall\nCatastrophe Draw5playall Yellow\n\n83) Simon: Sacrifice G2 B3\nBuild G2 Draw5playall\nBuild B2 Draw5playall\nCatastrophe Draw5playall G\nCatastrophe Draw5playall B\n\n\tDraw5PlayAll: Catastrophe of all 4 colors within the span of 3 turns!!!\n\tSimon: Thanks :)\n\nHomeworlds Online (SDG# 36209)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.24, Ended: 2020.3.24\nParticipants: speardane (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R2 G3\n\n2) speardane: Homeworld Y3 B1 G3\n\n3) ajo: Build G1 Ajo\n\n4) speardane: Build G1 Speardane\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) speardane: Trade G3 R3 Speardane\n\n7) ajo: Build G1 Ajo\n\n8) speardane: Build G1 Speardane\n\n9) ajo: Build G2 Ajo\n\n10) speardane: Discover G1 Speardane B2 Delos\n\n11) ajo: Discover G1 Ajo B1 Alpha\n\n12) speardane: Build G2 Delos\n\n13) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\n\n14) speardane: Sacrifice G2 Delos\nBuild G2 Speardane\nBuild G3 Delos\n\n15) ajo: Discover G2 Ajo Y1 Beta\n\n16) speardane: Trade G3 Y3 Delos\n\n17) ajo: Build G3 Beta\n\n18) speardane: Trade G2 B2 Speardane\n\n19) ajo: Trade G3 Y3 Alpha\n\n20) speardane: Build G2 Delos\n\n21) ajo: Build G3 Alpha\n\n22) speardane: Trade G2 R2 Delos\n\n23) ajo: Trade G3 R3 Alpha\n\n24) speardane: Build G2 Delos\n\n25) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R1 Alpha\n\n26) speardane: Discover G2 Delos B1 Lebling\n\n27) ajo: Sacrifice Y3 Alpha\nMove R3 Alpha Delos\nMove R3 Delos Lebling\nDiscover G2 Ajo Y1 Gamma\n\n28) speardane: Sacrifice G2 Lebling\nBuild R1 Delos\nBuild G2 Delos\n\n29) ajo: Sacrifice G3 Alpha\nBuild G3 Alpha\nBuild Y2 Ajo\nBuild Y2 Ajo\n\n30) speardane: Discover B2 Speardane Y2 Kotok\n\n31) ajo: Sacrifice Y1 Ajo\nMove Y2 Ajo Lebling\n\n32) speardane: Sacrifice G2 Delos\nBuild B2 Kotok\nBuild B3 Kotok\n\n33) ajo: Sacrifice G2 Beta\nBuild Y1 Lebling\nBuild Y3 Ajo\n\tajo: I actually did not see that coming.\n\n34) speardane: Trade B2 G2 Kotok\n\n35) ajo: Discover Y1 Lebling B2 Delta\n\n36) speardane: Move B3 Kotok Gamma\n\n37) ajo: Sacrifice G2 Gamma\nBuild R1 Lebling\nBuild G2 Ajo\n\n38) speardane: Move R2 Delos Gamma\n\n39) ajo: Move G3 Beta Kotok\n\n40) speardane: Move G2 Kotok Gamma\n\n41) ajo: Sacrifice R1 Lebling\nAttack B2 Kotok\n\n42) speardane: Build B3 Gamma\n\n43) ajo: Sacrifice G3 Ajo\nBuild G2 Kotok\nBuild G3 Ajo\nBuild Y1 Delta\n\n44) speardane: Move B3 Gamma Delta\n\n45) ajo: Sacrifice Y2 Ajo\nMove Y1 Delta Speardane\nMove Y1 Delta Speardane\n\n46) speardane: Build Y2 Delos\n\n47) ajo: Discover Y2 Lebling R2 Epsilon\n\n48) speardane: Sacrifice Y2 Delos\nMove B3 Gamma Epsilon\nMove B3 Delta Gamma\n\n49) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B2 Kotok\nBuild Y2 Speardane\nCatastrophe Speardane Yellow\n\n50) speardane: Attack Y2 Epsilon\n\n51) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild R1 Lebling\nBuild R3 Alpha\n\n52) speardane: Trade R3 Y3 Speardane\n\n53) ajo: Trade G2 Y2 Kotok\n\n54) speardane: Build G2 Gamma\n\n55) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y1 Ajo\nBuild R3 Lebling\n\n56) speardane: Move R1 Delos Lebling\nCatastrophe Lebling Red\n\n57) ajo: Trade G1 B1 Alpha\n\n58) speardane: Move G2 Gamma Epsilon\n\n59) ajo: Sacrifice Y2 Kotok\nDiscover B1 Alpha Y2 Waypoint\nPass\n\n60) speardane: Sacrifice Y3 Delos\nMove Y3 Speardane Ajo\nMove Y2 Epsilon Speardane\nMove Y2 Speardane Ajo\nCatastrophe Ajo Yellow\n\n61) ajo: Trade G3 Y3 Ajo\n\n62) speardane: Pass\n\n63) ajo: Sacrifice Y3 Ajo\nMove B2 Kotok Speardane\nMove B2 Kotok Speardane\nMove B1 Waypoint Speardane\nCatastrophe Speardane Blue\n\n\nHomeworlds Online (SDG# 36211)\nStarted: 2020.3.25, Ended: 2020.3.28\nParticipants: ajo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tTrydnt: for the tournament\n\n2) ajo: Homeworld B2 Y1 G3\n\tajo: For the tournament! Let&#39;s try a small universe for this one.\n\n3) Trydnt: Build G1 Trydnt\n\n4) ajo: Build G1 Ajo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ajo: Trade G1 R1 Ajo\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ajo: Build G1 Ajo\n\n9) Trydnt: Trade Y2 R2 Trydnt\n\n10) ajo: Build G1 Ajo\n\n11) Trydnt: Build Y2 Trydnt\n\n12) ajo: Discover G1 Ajo Y3 Ugh\n\n13) Trydnt: Build R1 Trydnt\n\n14) ajo: Build R1 Ajo\n\n15) Trydnt: Discover R1 Trydnt G3 G3\n\n16) ajo: Discover R1 Ajo Y3 Hmm\n\n17) Trydnt: Build R2 Trydnt\n\n18) ajo: Sacrifice G3 Ajo\nBuild G1 Ajo\nBuild R2 Hmm\nBuild R3 Ajo\n\n19) Trydnt: Build R3 G3\n\n20) ajo: Trade R3 B3 Ajo\n\n21) Trydnt: Trade R2 B2 Trydnt\n\n22) ajo: Build R2 Ajo\n\n23) Trydnt: Build R3 Trydnt\n\n24) ajo: Move R2 Ajo Ugh\n\n25) Trydnt: Discover Y2 Trydnt R3 R3\n\n26) ajo: Build B1 Ajo\n\n27) Trydnt: Sacrifice Y2 R3\nMove B2 Trydnt Ugh\nMove B2 Ugh Ajo\nCatastrophe Ajo B\n\n28) ajo: Build R3 Ajo\n\n29) Trydnt: Move R3 Trydnt Ugh\n\n30) ajo: Build G2 Ajo\n\n31) Trydnt: Sacrifice R2 Trydnt\nAttack G1 Ugh\nAttack R2 Ugh\n\n32) ajo: Discover G1 Ajo B3 Alpha\n\n33) Trydnt: Build Y2 Trydnt\n\n34) ajo: Trade G1 B1 Alpha\n\n35) Trydnt: Sacrifice Y2 Trydnt\nMove R1 G3 Ajo\nMove R2 Ugh Ajo\nCatastrophe Ajo R\n\n\tajo: Yeah, I don&#39;t think I&#39;m ever getting out of this one. Tournament win: Trydnt.\n\tTrydnt: Good game and good luck in the rest of them\n\nHomeworlds Online (SDG# 36217)\nStarted: 2020.3.26, Ended: 2020.4.30\nParticipants: Joe_Hill (S), ratpfink (N)\nWinner: Joe_Hill\n\n1) ratpfink: Homeworld Y1 G2 B3\n\n2) Joe_Hill: Homeworld Y2 G1 B3\n\n3) ratpfink: Build B1 Ratpfink\n\tJoe_Hill: oh my god. that was excruciating. Wasn&#39;t there somewhere, like the now disappeared wiki that detailed to notation for this game?\n\tratpfink: I think all you get is the &quot;Below are the recognized commands&quot; section\r\n\n\n4) Joe_Hill: Build B1 Joe_hill\n\n5) ratpfink: Discover B1 Ratpfink G3 Cucumber\n\n6) Joe_Hill: Discover B1 Joe_hill Y3 Prosthesis\n\n7) ratpfink: Build B1 Cucumber\n\n8) Joe_Hill: Build B2 Joe_hill\n\n9) ratpfink: Build B2 Cucumber\n\n10) Joe_Hill: Move B2 Joe_hill Cucumber\nCatastrophe Cucumber Blue\n\n11) ratpfink: Trade B3 R3 Ratpfink\n\tJoe_Hill: kablooey\n\tratpfink: oh i forgot about catastrophe\n\n12) Joe_Hill: Build B1 Joe_hill\n\tJoe_Hill: It might be the only rule in the game I have a firm grasp on...\n\n13) ratpfink: Build R1 Ratpfink\n\n14) Joe_Hill: Trade B1 G1 Prosthesis\n\n15) ratpfink: Move R3 Ratpfink Prosthesis\n\n16) Joe_Hill: Trade B3 R3 Joe_hill\n\n17) ratpfink: Attack G1 Prosthesis\n\n18) Joe_Hill: Build B1 Joe_hill\n\n19) ratpfink: Build G1 Prosthesis\n\n20) Joe_Hill: Discover B1 Joe_hill R3 Pancake\n\n21) ratpfink: Build R1 Prosthesis\n\n22) Joe_Hill: Build B1 Joe_hill\n\n23) ratpfink: Move G1 Prosthesis Ratpfink\n\n24) Joe_Hill: Build B2 Joe_hill\n\n25) ratpfink: Build G2 Ratpfink\n\n26) Joe_Hill: Trade B2 G2 Joe_hill\n\n27) ratpfink: Build R1 Ratpfink\n\n28) Joe_Hill: Move G2 Joe_hill Pancake\n\n29) ratpfink: Discover G1 Ratpfink Y3 Virus\n\n30) Joe_Hill: Build B2 Pancake\n\n31) ratpfink: Build G3 Ratpfink\n\n32) Joe_Hill: Trade B2 Y2 Pancake\n\n33) ratpfink: Discover R1 Ratpfink B3 Covid\n\n34) Joe_Hill: Move G2 Pancake Ratpfink\nCatastrophe Ratpfink G\n\n\nHomeworlds Online (SDG# 36157)\nVariants: &quot;Hard time&quot;\nStarted: 2020.3.26, Ended: 2020.4.7\nParticipants: wil (S), pould_ (N)\nWinner: wil\n\n1) pould_: Homeworld Y2 B1 G3\n\n2) wil: H B3 Y1 G3\n\n3) pould_: Build G1 Pould_\n\n4) wil: B G1 Wil\n\n5) pould_: Discover G1 Pould_ B3 Epsilon\n\n6) wil: T G1 Y1 Wil\n\n7) pould_: Build G1 Pould_\n\twil: Ya oopsed.\n\tpould_: how so?\n\n8) wil: B Y1 Wil\n\n9) pould_: Move G1 Pould_ Epsilon\n\twil: You let me take a shot at controlling the fuel industry\n\twil: You let me take a shot at controlling the fuel industry\n\n10) wil: D Y1 Wil B2 B2\n\n11) pould_: Build G1 Pould_\n\n12) wil: S G3 Wil\nB Y2 B2\nB Y2 B2\nB Y3 Wil\n\n\nHomeworlds Online (SDG# 36159)\nVariants: &quot;Hard time&quot;\nStarted: 2020.3.26, Ended: 2020.4.7\nParticipants: pould_ (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) pould_: Homeworld Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) pould_: Build G1 Pould_\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) pould_: Discover G1 Pould_ B2 Omega\n\n7) Trydnt: Build B1 Trydnt\n\n8) pould_: Build G1 Omega\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) pould_: Build G1 Omega\n\n11) Trydnt: Build B2 Trydnt\n\n12) pould_: Trade G1 Y1 Omega\n\n13) Trydnt: Build B3 G3\n\n14) pould_: Trade G3 B3 Pould_\n\n15) Trydnt: Trade B3 Y3 G3\n\n16) pould_: Discover Y1 Omega G1 Sigma\n\n17) Trydnt: Build B3 G3\n\n\nHomeworlds Online (SDG# 36178)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.26, Ended: 2020.4.5\nParticipants: pould_ (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R3 B1 G3\n\tBabamots: Hi! Welcome to SDG! Have you played much Homeworlds before? I see you&#39;ve challenged wil and Trydnt, who are very strong players.\n\n2) pould_: Homeworld Y1 B2 G3\n\n3) Babamots: Build G1 Babamots\n\tpould_: Yes I&#39;ve played before, but not very much and it was a while ago. I basically understand how the game works though\n\n4) pould_: Build G1 Pould_\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) pould_: Discover G3 Pould_ B3 Theta\n\n7) Babamots: Build Y1 Babamots\n\n8) pould_: Build G1 Theta\n\tBabamots: I hope you enjoy getting reacquainted with the game. Let me know if you need any help with the command interface. I&#39;m also happy to talk strategy if you ever want my position analysis.\n\tpould_: Thanks, will do!\n\n9) Babamots: Build Y2 Babamots\n\n10) pould_: Build G1 Pould_\n\n11) Babamots: Build G2 Babamots\n\n12) pould_: Trade G3 Y3 Theta\n\n13) Babamots: Discover Y1 Babamots G2 Risa\n\n14) pould_: Build G2 Theta\n\n15) Babamots: Discover G2 Babamots Y2 Iconia\n\n16) pould_: Trade G2 R2 Theta\n\n17) Babamots: Trade Y2 R2 Babamots\n\n18) pould_: Move R2 Theta Iconia\n\n19) Babamots: Sacrifice R2 Babamots\nAttack R2 Iconia\nPass\n\n20) pould_: Discover Y3 Theta B2 Mu\n\tBabamots: Looks like you may have forgotten about red sacrifices. Having a red ship anywhere is like having a red everywhere.\n\tpould_: could you please explain that for me?\n\tBabamots: There&#39;s a special move called a &quot;sacrifice&quot;. You put one of your ships back in the bank, but ANY ship that you control can use its power. I didn&#39;t have a red ship in Iconia, but my green ship could attack your ship once I sacrificed my red ship elsewhere.\r\n\r\nIf you sacrifice a small ship, then one of your ships can use that power one time. A sacrificed medium provides two actions of that power, etc. Since I sacrificed a medium, I could have attacked twice if there had been two of your ships available for capture (that extra action was wasted, but I didn&#39;t mind).\r\n\r\nHere the latest version of the rules. Sacrifices are explained on page 5.\r\n\r\nhttps://www.looneylabs.com/lit/rules/homeworlds-rules\n\tpould_: cool, thank you\n\n21) Babamots: Discover G2 Iconia Y3 Aldea\n\tBabamots: It&#39;s usually considered wise to keep a large ship at your homeworld. I can&#39;t do it yet, but I&#39;m planning to get a medium to your home as soon as possible to get your helpless smalls.\n\n22) pould_: Build G2 Pould_\n\tBabamots: Another of my plans is to sacrifice my g3 to build all the remaining yellow pieces.\n\n23) Babamots: Move G2 Aldea Pould_\nCatastrophe Pould_ G\n\tBabamots: So, the move I should make here is to win by moving my g2 to your home and triggering the catastrophe (four pieces of the same color in the same system can be instantly destroyed by either player, see page 9).\r\n\r\nFor your education, I&#39;ll do something else, and you can look for a way to defend yourself.\n\n\tBabamots: Looks like you&#39;ve disappeared on me. Let me know if you want to try again!\n\nHomeworlds Online (SDG# 36221)\nVariants: &quot;Hard time&quot;\nStarted: 2020.3.26, Ended: 2020.4.5\nParticipants: wil (S), nicknack (N)\nWinner: nicknack\n\n1) nicknack: Homeworld B3 Y2 G3\n\n2) wil: H Y2 B1 G3\n\n3) nicknack: Build G1 Nicknack\n\twil: Thanks for the game and good luck\n\n4) wil: B G1 Wil\n\tnicknack: You bet! Have fun!\n\n5) nicknack: Trade G1 B1 Nicknack\n\n6) wil: T G1 B1 Wil\n\n7) nicknack: Build B2 Nicknack\n\n8) wil: B B2 Wil\n\n9) nicknack: Trade B2 Y2 Nicknack\n\n10) wil: T B1 R1 Wil\n\n11) nicknack: Build G1 Nicknack\n\n12) wil: B G1 Wil\n\n13) nicknack: Discover G1 Nicknack Y1 Beta\n\n14) wil: B R1 Wil\n\n15) nicknack: Build Y1 Nicknack\n\n16) wil: T R1 Y1 Wil\n\n17) nicknack: Trade Y1 R1 Nicknack\n\n18) wil: D B2 Wil G3 G3\n\n19) nicknack: Discover Y2 Nicknack G1 Gamma\n\n20) wil: B G2 Wil\n\n21) nicknack: Sacrifice Y2 Gamma\nMove G1 Beta G3\nMove G1 G3 Wil\nCatastrophe Wil Green\n\n22) wil: B B1 G3\n\n23) nicknack: Build G1 Nicknack\n\n24) wil: B B2 G3\n\twil: Lol oopsie\n\n25) nicknack: Build B2 Nicknack\n\twil: Noice! Always take advantage of my stupidity!\n\tnicknack: Ha - I couldn&#39;t let myself ignore that opportunity.\n\n26) wil: T B2 Y2 G3\n\n27) nicknack: Trade B1 Y1 Nicknack\n\twil: It is a must!\n\n28) wil: T B2 G2 G3\n\n29) nicknack: Discover Y1 Nicknack G1 Beta\n\n30) wil: B B1 G3\n\n31) nicknack: Move B2 Nicknack Beta\n\n32) wil: S G2 G3\nB Y1 G3\nB Y3 Wil\n\n33) nicknack: Build Y3 Beta\n\n34) wil: T Y2 G2 G3\n\n35) nicknack: Sacrifice Y3 Beta\nMove Y1 Beta G3\nMove Y1 G3 Wil\nDiscover B2 Beta Y3 Gamma\nCatastrophe Wil Yellow\n\n36) wil: M G2 G3 Wil\n\n37) nicknack: Sacrifice G1 Nicknack\nBuild B2 Gamma\n\n38) wil: D B1 G3 Y1 Y1\n\twil: Lol, oops\n\n39) nicknack: Trade B2 Y2 Gamma\n\n40) wil: B B2 G3\n\n41) nicknack: Build G1 Nicknack\n\n42) wil: D B2 G3 Y2 Y2\n\n43) nicknack: Sacrifice Y2 Gamma\nMove G3 Nicknack Wil\nMove B2 Gamma Wil\n\twil: Ya toyin with like a cat torturing a mouse!\n\twil: Put me outta my misery...\n\n44) wil: B G1 Wil\n\tnicknack: Mustn&#146;t rush this... mouse might escape...\n\n45) nicknack: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B3 Wil\nBuild B3 Wil\nCatastrophe Wil Blue\n\n\tnicknack: Thanks for the game! And thanks for playing it out to the end... I need to practice my endgame...!\n\nHomeworlds Online (SDG# 36229)\nStarted: 2020.3.26, Ended: 2020.3.26\nParticipants: Robizzlefoshizzle (S), marcrebillet (N)\nWinner: Robizzlefoshizzle\n\n1) marcrebillet: Homeworld G3 B2 R3\n\n2) Robizzlefoshizzle: Homeworld G3 B2 Y3\n\n3) marcrebillet: Build R1 Marcrebillet\n\n4) Robizzlefoshizzle: Build Y1 Robizzlefoshizzle\n\n5) marcrebillet: Build R1 Marcrebillet\n\n6) Robizzlefoshizzle: Build Y1 Robizzlefoshizzle\n\n7) marcrebillet: Build R1 Marcrebillet\n\n8) Robizzlefoshizzle: Catastrophe Marcrebillet R\n\nPass\n\n\nHomeworlds Online (SDG# 36231)\nStarted: 2020.3.26, Ended: 2020.5.13\nParticipants: lefou23 (S), kokigami (N)\nWinner: lefou23\n\n1) kokigami: Homeworld R1 G3 B3\n\n2) lefou23: Homeworld R3 B1 G3\n\n3) kokigami: Build B1 Kokigami\n\n4) lefou23: Build G1 Lefou23\n\n5) kokigami: Trade B1 Y1 Kokigami\n\n6) lefou23: Trade G1 Y1 Lefou23\n\n7) kokigami: Build B1 Kokigami\n\n8) lefou23: Build G1 Lefou23\n\n9) kokigami: Trade B1 G1 Kokigami\n\n10) lefou23: Discover Y1 Lefou23 R2 Interopolis\n\n11) kokigami: Build B1 Kokigami\n\n12) lefou23: Discover Y1 Interopolis R3 Twig\n\n13) kokigami: Build B1 Kokigami\n\n14) lefou23: Trade G1 Y1 Lefou23\n\n15) kokigami: Build Y2 Kokigami\n\n16) lefou23: Build Y2 Lefou23\n\n17) kokigami: Sacrifice Y2 Kokigami\nDiscover B1 Kokigami G2 Righthook\nDiscover B1 Kokigami G2 Lefthook\n\n18) lefou23: Trade Y1 R1 Lefou23\n\n19) kokigami: Build Y1 Kokigami\n\n20) lefou23: Move R1 Lefou23 Righthook\n\n21) kokigami: Build B2 Lefthook\n\n22) lefou23: Attack B1 Righthook\n\n23) kokigami: Trade B2 R2 Lefthook\n\n24) lefou23: Build B2 Righthook\n\n25) kokigami: Build Y2 Kokigami\n\n26) lefou23: Build Y2 Lefou23\n\n27) kokigami: Move Y2 Kokigami Lefthook\n\n28) lefou23: Move Y2 Lefou23 Righthook\n\n29) kokigami: Build Y3 Lefthook\n\tlefou23: Heading out for bike ride for an hour (google says). More like 90 minutes\n\n30) lefou23: Build Y3 Lefou23\n\n31) kokigami: Discover G1 Kokigami B2 Jab\n\n32) lefou23: Build Y3 Righthook\n\tkokigami: took a long time to decide. I doubt it was a good move..  \r\n\n\tkokigami: happy bday as well.\r\n\n\n33) kokigami: Sacrifice Y2 Lefthook\nMove Y1 Kokigami Righthook\nMove Y1 Kokigami Righthook\nCatastrophe Righthook Y\n\n34) lefou23: Trade Y3 R3 Lefou23\n\n35) kokigami: Build Y1 Lefthook\n\n36) lefou23: Move R3 Lefou23 Jab\n\n37) kokigami: Sacrifice Y1 Lefthook\nMove G1 Jab Kokigami\n\n38) lefou23: Trade B1 Y1 Righthook\n\n39) kokigami: Build R1 Lefthook\n\n40) lefou23: Move R1 Righthook Twig\n\n41) kokigami: Move R2 Lefthook Twig\n\n42) lefou23: Sacrifice Y1 Twig\nDiscover R1 Twig Y1 Footwork\n\n43) kokigami: Build R2 Lefthook\n\n44) lefou23: Build B1 Righthook\n\tkokigami: unexpected..\r\n\n\n45) kokigami: Build Y1 Lefthook\n\n46) lefou23: Trade B1 G1 Righthook\n\n47) kokigami: Sacrifice Y1 Lefthook\nMove R2 Twig Righthook\n\n48) lefou23: Sacrifice Y1 Righthook\nMove B2 Righthook Footwork\n\n49) kokigami: Sacrifice Y3 Lefthook\nMove R1 Lefthook Lefou23\nMove R2 Lefthook Lefou23\nMove R2 Righthook Lefou23\nCatastrophe Lefou23 R\n\n50) lefou23: Build Y1 Lefou23\n\n51) kokigami: Build G1 Kokigami\n\n52) lefou23: Sacrifice Y1 Lefou23\nMove G1 Righthook Kokigami\nCatastrophe Kokigami Green\n\n53) kokigami: Build B1 Lefthook\n\n54) lefou23: Move B2 Footwork Lefthook\n\n55) kokigami: Trade B1 Y1 Lefthook\n\tkokigami: oops\n\tkokigami: oops\n\n56) lefou23: Sacrifice R3 Jab\nAttack B1 Lefthook\nAttack Y1 Lefthook\nPass\n\n57) kokigami: Trade B3 G3 Kokigami\n\n58) lefou23: Move R1 Footwork Lefthook\n\n59) kokigami: Build G1 Kokigami\n\tkokigami: yep. we can play it out, but you win. guess I shoulda built another blue and killed the whole lot of blue there.. \r\n\n\n60) lefou23: Trade B1 G1 Lefthook\n\tkokigami: not sure if that was actually a legal move.. or a problem with the program\r\n\n\n61) kokigami: Sacrifice G3 Kokigami\nBuild G1 Kokigami\nBuild G2 Kokigami\nBuild G2 Kokigami\nCatastrophe Kokigami G\n\tlefou23: could be a bug.\n\tkokigami: still can&#39;t recover. can only build green, can&#39;t trade, can&#39;t move.. I guess it is time to concede.. with style.\n\tkokigami: interestingly, it will allow for that trade, but not a sacrifice g3..  conceding with less style.. \r\n\n\n\nHomeworlds Online (SDG# 36222)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.28, Ended: 2020.4.11\nParticipants: Babamots (S), braveroperfrenzy (N)\nWinner: Babamots\n\n\tBabamots: Welcome to the site! I think you said you had used SDG before, but I see an empty game history. Is this a new account?\n\tBabamots: Sorry you had trouble figuring out the site. Maybe I&#39;ll see you on TTS.\n\nHomeworlds Online (SDG# 36236)\nStarted: 2020.3.29, Ended: 2020.6.8\nParticipants: Trydnt (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tbhorner: For the tournament right?\r\nGood luck, and have fun!\r\n\r\nI&#39;m tempted to switch to your opening colors, it seems to have served you well, and I think everyone always wants to move before they want to attack.  I&#39;ve just always relied on starting with the (big plus red at home) safety, instead of building it later when it&#39;s needed.\r\n\r\nI don&#39;t think now is the time to tinker with strategy though, maybe I&#39;ll learn something from this game, and then tinker with it outside the tournament.  :)\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) bhorner: Build G1 Bhorner\n\n4) Trydnt: Build G1 Trydnt\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) Trydnt: Build G1 Trydnt\n\n7) bhorner: Build Y1 Bhorner\n\n8) Trydnt: Trade G1 Y1 Trydnt\n\n9) bhorner: Build Y2 Bhorner\n\n10) Trydnt: Build Y2 Trydnt\n\n11) bhorner: Trade Y1 B1 Bhorner\n\n12) Trydnt: Trade G1 B1 Trydnt\n\n13) bhorner: Build B2 Bhorner\n\n14) Trydnt: Build B2 Trydnt\n\n15) bhorner: Discover B2 Bhorner Y3 Shiny\n\n16) Trydnt: Discover B2 Trydnt G1 G1\n\n17) bhorner: Discover Y1 Bhorner B3 Lake\n\n18) Trydnt: Move Y1 Trydnt G1\n\n19) bhorner: Discover B1 Bhorner G3 Forest\n\n20) Trydnt: Discover B2 G1 Y3 Y3\n\n21) bhorner: Build B2 Forest\n\n22) Trydnt: Discover Y1 G1 B3 B3\n\n23) bhorner: Trade B1 R1 Forest\n\tbhorner: Now I&#39;m in trouble.  I felt like I had a good handle on the options until now.  Now I&#39;ll have to take a risk!\n\tbhorner: Thinking about it more isn&#39;t helping...  since I&#39;m uncertain, it seems like this will probably work out badly, but here goes.  :)\n\n24) Trydnt: Build G1 Trydnt\n\n25) bhorner: Build B1 Forest\n\n26) Trydnt: Trade G1 R1 Trydnt\n\n27) bhorner: Trade B1 Y1 Forest\n\n28) Trydnt: Trade B2 G2 Y3\n\n29) bhorner: Build Y3 Forest\n\n30) Trydnt: Sacrifice G2 Y3\nBuild Y3 B3\nBuild G1 Trydnt\n\n31) bhorner: Trade Y3 R3 Forest\n\n32) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y3 B3 G1 G1\nMove B1 Trydnt G1\n\n33) bhorner: Trade B2 G2 Shiny\n\n34) Trydnt: Discover G1 Trydnt B1 B1\n\n35) bhorner: Build G1 Bhorner\n\n36) Trydnt: Build G2 Trydnt\n\n37) bhorner: Discover G1 Bhorner Y3 Shinier\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild B2 G1\nBuild G3 Trydnt\n\n39) bhorner: Sacrifice G2 Shiny\nBuild Y2 Forest\nBuild Y3 Lake\n\n40) Trydnt: Sacrifice Y1 B3\nMove G2 B1 Shinier\n\n41) bhorner: Move R3 Forest B1\n\n42) Trydnt: Move B2 G1 Shinier\n\n43) bhorner: Discover G3 Bhorner B3 Loch\n\n44) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Shinier\nBuild G3 Trydnt\nBuild B2 G1\n\n45) bhorner: Attack G1 B1\n\n46) Trydnt: Discover G2 Trydnt Y1 Y1\n\n47) bhorner: Sacrifice G3 Loch\nBuild G3 B1\nBuild B3 Forest\nPass\n\n48) Trydnt: Trade G2 R2 Shinier\n\n49) bhorner: Trade Y3 R3 Lake\n\n50) Trydnt: Discover B2 G1 Y3 Y3\n\n51) bhorner: Move B3 Forest Y1\n\n52) Trydnt: Move Y3 G1 Forest\n\n53) bhorner: Move R3 Lake Bhorner\n\n54) Trydnt: Move G2 Y1 Lake\n\n55) bhorner: Move B3 Y1 Shinier\n\n56) Trydnt: Sacrifice G2 Shinier\nBuild R1 Shinier\nBuild R2 Trydnt\n\n57) bhorner: Sacrifice R1 Forest\nAttack R2 Shinier\n\n58) Trydnt: Discover R1 Trydnt Y1 Y1\n\n59) bhorner: Sacrifice R2 Shinier\nAttack B2 Shinier\nAttack R1 Shinier\n\n60) Trydnt: Trade B2 R2 Y3\n\n61) bhorner: Sacrifice Y1 Lake\nMove G3 B1 Y3\n\n62) Trydnt: Sacrifice R2 Y3\nAttack Y2 Forest\nAttack B2 Forest\n\n63) bhorner: Sacrifice G3 Y3\nBuild Y1 Forest\nBuild Y3 Bhorner\nBuild G2 B1\nCatastrophe Forest Y\n\n64) Trydnt: Sacrifice G2 Lake\nBuild B2 G1\nBuild B3 Forest\n\n65) bhorner: Discover G1 Shinier R1 Spark\n\n66) Trydnt: Trade B3 Y3 Forest\n\n67) bhorner: Sacrifice Y3 Bhorner\nMove G1 Spark Trydnt\nMove G2 B1 Trydnt\nMove G1 B1 Trydnt\nCatastrophe Trydnt G\n\n68) Trydnt: Trade B2 R2 Forest\n\n69) bhorner: Sacrifice Y2 Bhorner\nMove B3 Shinier Bhorner\nMove R3 B1 Trydnt\n\tbhorner: There is a lot going on here...  I keep wondering what percentage of it I&#39;m aware of...\n\n70) Trydnt: Sacrifice Y3 Forest\nMove R2 Forest Bhorner\nMove R1 Y1 Shinier\nMove R1 Shinier Bhorner\nCatastrophe Bhorner R\n\tTrydnt: well that makes two of us\n\n71) bhorner: Attack R2 Trydnt\n\n\tTrydnt: well played!\n\tbhorner: I&#39;m glad you say so.  :)\r\nI&#39;ve wondered if there were better moves along the way.  I was completely focused on maintaining a material advantage until I could see an opening.  I hope I didn&#39;t detract with the slow moving, this was the hardest thinking game of homeworlds I&#39;ve ever played!\r\n\r\nThanks very much for the game!\n\tTrydnt: Definitely, keep it up you&#39;re improving a lot. Obviously always good to keep eyes peeled for easy wins/exploits but yeah focusing on the material advantage is the best way. I should have just frozen you out of the blue right at the start by taking homeworld y2 b1 b3 but the blue freezout is never a fun game. Something to be aware of though, if you take a b1 in your homeworld it will usually cost you the game. Until next time :)\n\tTrydnt: homeworld g2 b1 b3\n\tbhorner: I actually wanted you to try to freeze me out of blue, but your homeworld selection is not what I expected.  I&#39;ll look into it!  :)\n\nHomeworlds Online (SDG# 36238)\nVariants: &quot;Unrated&quot;\nStarted: 2020.3.29, Ended: 2020.3.29\nParticipants: Babamots (S), Pib (N)\nWinner: Babamots\n\n1) Pib: Pass\n\tPib: This is a test of whether SDG allows multiple passing turns before creating the homeworld.\n\n2) Babamots: Pass\n\n3) Pib: Pass\n\n4) Babamots: Pass\n\n5) Pib: Pass\n\n6) Babamots: Homeworld G1 Y1 B3 *\n\tBabamots: Looks like there&#39;s no limit to the number of times players can pass at the bgeinning.\n\n7) Pib: Pass\n\n8) Babamots: Build B1 Babamots\n\n9) Pib: Pass\n\n10) Babamots: Build B1 Babamots\n\n11) Pib: Pass\n\n12) Babamots: Trade B1 G1 Babamots\n\n13) Pib: Pass\n\n14) Babamots: Build G1 Babamots\n\n15) Pib: Pass\n\n16) Babamots: Trade B1 Y1 Babamots\n\n17) Pib: Pass\n\n18) Babamots: Build Y1 Babamots\n\n19) Pib: Pass\n\n20) Babamots: Discover Y1 Babamots G3 Risa\n\n21) Pib: Pass\n\n\tBabamots: At this point, I attempted the move\r\n\r\nsacrifice b3 Babamots\r\ntrade y1 g1 Risa\r\ntrade g1 y1 Babamots\r\npass\r\n\r\nUnsurprisingly, SDG does not let you swap the positions of two ships by blue sacrifice if the bank doesn&#39;t allow either trade individually.\n\nHomeworlds Online (SDG# 36237)\nStarted: 2020.3.30, Ended: 2020.4.24\nParticipants: Trydnt (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B1 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tgoulo: hi, tourney game, have fun!\n\tgoulo: I filled out the form at the tourney page.\n\n3) goulo: Build G1 Goulo\n\n4) Trydnt: Build G1 Trydnt\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) goulo: Build Y1 Goulo\n\n8) Trydnt: Build B1 Trydnt\n\n9) goulo: Build Y2 Goulo\n\n10) Trydnt: Discover B1 Trydnt G3 G3\n\n11) goulo: Trade Y2 B2 Goulo\n\n12) Trydnt: Sacrifice G3 Trydnt\nBuild B2 G3\nBuild B3 G3\nBuild B3 Trydnt\n\n13) goulo: Build B3 Goulo\n\n14) Trydnt: Trade B3 Y3 G3\n\n15) goulo: Discover B2 Goulo Y2 Flavo\n\n16) Trydnt: Trade B3 G3 Trydnt\n\n17) goulo: Trade B2 R2 Flavo\n\n18) Trydnt: Trade B2 R2 G3\n\n19) goulo: Build G1 Goulo\n\n20) Trydnt: Build Y2 G3\n\n21) goulo: Build Y2 Goulo\n\n22) Trydnt: Discover Y2 G3 G1 G1\n\n23) goulo: Discover Y2 Goulo G2 Verdo\n\n24) Trydnt: Build Y3 G1\n\n25) goulo: Build Y3 Verdo\n\n26) Trydnt: Build B2 G3\n\n27) goulo: Move B3 Goulo Flavo\n\n28) Trydnt: Move B1 G3 G1\n\n29) goulo: Move G1 Goulo Flavo\n\n30) Trydnt: Trade B1 R1 Trydnt\n\n31) goulo: Build G1 Flavo\n\n32) Trydnt: Build G2 Trydnt\n\n33) goulo: Build G2 Goulo\n\n34) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R1 G3\nBuild B1 G1\n\n35) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild B2 Flavo\nBuild R1 Flavo\n\n36) Trydnt: Sacrifice Y2 G1\nMove B1 G1 Flavo\nMove B1 G1 Flavo\nCatastrophe Flavo B\n\n37) goulo: Discover G1 Flavo B3 Bluego\n\n38) Trydnt: Sacrifice G2 Trydnt\nBuild B1 G3\nBuild Y2 G1\n\n39) goulo: Trade G1 B1 Bluego\n\n40) Trydnt: Build G1 Trydnt\n\n41) goulo: Sacrifice G3 Goulo\nBuild G2 Goulo\nBuild G3 Goulo\nBuild B2 Bluego\n\n42) Trydnt: Sacrifice Y2 G1\nMove B1 G3 G1\nMove B1 G1 Bluego\nCatastrophe Bluego B\n\n43) goulo: Build Y2 Goulo\n\n44) Trydnt: Build B1 G3\n\n45) goulo: Trade G2 B2 Goulo\n\n46) Trydnt: Discover B2 G3 G2 G2\n\n47) goulo: Move B2 Goulo Verdo\n\n48) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B1 G3\nBuild B3 G2\n\n49) goulo: Build B3 Verdo\n\n50) Trydnt: Trade B2 R2 G2\n\n51) goulo: Discover B3 Verdo R3 Rubenego\n\n52) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 G2\nBuild B2 G2\n\n53) goulo: Sacrifice G2 Goulo\nBuild G2 Goulo\nBuild B3 Rubenego\n\n54) Trydnt: Move Y3 G1 G2\n\n55) goulo: Move Y1 Goulo Flavo\n\n56) Trydnt: Move R3 G2 Goulo\n\n57) goulo: Attack R3 Goulo\n\n58) Trydnt: Sacrifice Y3 G2\nMove R2 G2 Goulo\nMove R1 G3 G2\nMove R1 G2 Goulo\nCatastrophe Goulo R\n\n59) goulo: Sacrifice Y3 Verdo\nMove G3 Goulo G3\nMove G2 Goulo G3\nMove G1 Flavo G3\nCatastrophe G3 G\n\n60) Trydnt: Trade B2 R2 G2\n\n61) goulo: Build Y3 Verdo\n\n62) Trydnt: Trade B3 Y3 G2\n\n63) goulo: Build Y3 Verdo\n\n64) Trydnt: Build R1 Trydnt\n\n65) goulo: Trade B3 G3 Rubenego\n\n66) Trydnt: Sacrifice Y3 G2\nMove G3 Trydnt Rubenego\nMove G3 Rubenego Goulo\nDiscover R1 Trydnt Y3 Y3\n\n67) goulo: Sacrifice Y3 Verdo\nMove G3 Rubenego Trydnt\nMove B2 Verdo Goulo\nMove Y2 Verdo Goulo\n\n68) Trydnt: Build G1 Trydnt\n\n69) goulo: Sacrifice R2 Flavo\nAttack R1 Trydnt\nAttack G1 Trydnt\n\n70) Trydnt: Sacrifice R2 G2\nAttack G1 Trydnt\nAttack R1 Trydnt\n\n71) goulo: Sacrifice B3 Rubenego\nTrade Y3 R3 Verdo\nTrade Y2 R2 Goulo\nTrade G3 Y3 Trydnt\n\n72) Trydnt: Build R2 Trydnt\n\n73) goulo: Sacrifice R3 Verdo\nAttack R2 Trydnt\nAttack R1 Trydnt\nAttack G1 Trydnt\n\n74) Trydnt: Sacrifice R1 Y3\nAttack B2 Goulo\n\n75) goulo: Attack G1 Trydnt\n\n\tgoulo: Thanks, great game. Man, that was dramatic / tense. :)\n\tTrydnt: Amazing game! That was a very interesting ending. One wrong move and I think I might have stolen the win. You played it perfectly to the last\n\nHomeworlds Online (SDG# 36249)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.1, Ended: 2020.5.2\nParticipants: Babamots (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tBabamots: Well, I&#39;ve enjoyed my first time at the top of the ladder, but I suspect that you&#39;re more deserving. Good luck!\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Babamots: Build G1 Babamots\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Trydnt: Build R1 Trydnt\n\n8) Babamots: Build Y1 Babamots\n\n9) Trydnt: Build R2 Trydnt\n\n10) Babamots: Build Y2 Babamots\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) Babamots: Discover Y1 Babamots B2 Bolarus\n\n13) Trydnt: Discover Y2 Trydnt G3 G3\n\n14) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild Y3 Bolarus\nBuild Y3 Babamots\n\n15) Trydnt: Move Y2 G3 Bolarus\nCatastrophe Bolarus Y\n\n16) Babamots: Trade Y3 G3 Babamots\n\n17) Trydnt: Build R2 Trydnt\n\n18) Babamots: Build Y1 Babamots\n\n19) Trydnt: Discover R2 Trydnt Y3 Y3\n\tTrydnt: Whatever the outcome, it is always great to play against someone as skilled as you\n\n20) Babamots: Discover Y1 Babamots G2 Risa\n\tBabamots: I hope to give you an enjoyable challenge :-D\n\n21) Trydnt: Build R2 Trydnt\n\n22) Babamots: Trade Y2 R2 Babamots\n\n23) Trydnt: Trade R2 Y2 Trydnt\n\n24) Babamots: Build Y2 Risa\n\n25) Trydnt: Discover R1 Trydnt Y3 Why3\n\n26) Babamots: Build Y2 Babamots\n\n27) Trydnt: Discover Y2 Trydnt Y3 Because3\n\n28) Babamots: Move R2 Babamots Risa\n\n29) Trydnt: Build G1 Trydnt\n\n30) Babamots: Build G1 Babamots\n\n31) Trydnt: Trade G1 B1 Trydnt\n\n32) Babamots: Trade G1 B1 Babamots\n\n33) Trydnt: Build G1 Trydnt\n\n34) Babamots: Move B1 Babamots Risa\n\n35) Trydnt: Move B1 Trydnt Y3\n\n36) Babamots: Build B1 Risa\n\n37) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Y3\n\n38) Babamots: Discover B1 Risa G3 Betazed\n\tBabamots: I really wanted to find something tricky here, but I couldn&#39;t see anything better.\n\n39) Trydnt: Trade B1 G1 Y3\n\n40) Babamots: Discover Y1 Babamots B2 Bolarus\n\n41) Trydnt: Build G1 Trydnt\n\n42) Babamots: Sacrifice G3 Babamots\nBuild B1 Betazed\nBuild B3 Betazed\nBuild B3 Risa\n\n43) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Why3\nBuild R3 Y3\nBuild R3 Trydnt\n\n44) Babamots: Sacrifice Y2 Risa\nMove B3 Betazed Risa\nMove B3 Risa Babamots\n\n45) Trydnt: Move R2 Why3 Bolarus\n\n46) Babamots: Discover Y1 Bolarus R3 Romulus\n\n47) Trydnt: Discover R2 Y3 Y2 Y2\n\n48) Babamots: Move R2 Risa Why3\n\n49) Trydnt: Trade R3 G3 Trydnt\n\n50) Babamots: Discover B1 Risa R3 Cardassia\n\n51) Trydnt: Discover R1 Why3 G2 G2\n\n52) Babamots: Sacrifice B1 Cardassia\nTrade B3 R3 Risa\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild G1 Y3\nBuild G2 Y3\nBuild G3 Trydnt\n\n54) Babamots: Move R3 Risa Because3\n\n55) Trydnt: Sacrifice Y2 Because3\nMove G2 Y3 Risa\nDiscover R2 Y2 G3 G3\n\n56) Babamots: Move R3 Because3 Risa\n\n57) Trydnt: Move G1 Y3 Risa\n\n58) Babamots: Sacrifice Y1 Risa\nMove R3 Risa Betazed\n\n59) Trydnt: Trade R2 Y2 Bolarus\n\n60) Babamots: Trade R3 Y3 Betazed\n\tTrydnt: Do you have a name for this situation? I call them poisoned stars\n\tTrydnt: Mostly because in Ice Towers I called towers poisoned towers when they had two pieces of the same color at the top and the top one was small since anyone who put a piece on top of those would immediately lose that piece to a split\n\tBabamots: I don&#39;t have any other name for it, so poisoned star sounds pretty good. Got any other terms that should go in my glossary? I&#39;m assembling on here:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/glossary.html\n\n61) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Trydnt\nBuild R3 G2\n\tDraw5PlayAll: - &quot;Crash&quot; an investment (e.g. my G1 is investing at a star, so you send your R2)\r\n- Banker, Goldilocks, Fortress\r\n- Borg: A large ship (usually red) sent to a peripheral system of only smalls and mediums (or a medium sent to a system of all smalls). Resistance is not entirely futile because you can often sac one of the ships and move others away, but it is still annoying.\r\n- &quot;Undermine&quot;: blowing up a populated enemy colony by sending in 3 ships to explode the star. I always envision this as sending in smalls and mediums to destroy a system with 1-2 larges because you can&#39;t use a Borg.\r\n- &quot;Slow Undermine&quot;: the above, but in 2 separate turns; like the Borg, the opponent has 1 turn to evacuate as many ships as possible.\r\n\r\n&quot;Gilligans&quot; can also be useful outposts for trying to destroy your opponent&#39;s red star.\n\tTrydnt: There is a super-slow undermine too where you can move all three in one at a time so long as the second one big enough to attack all the ships there (and you have red) so they&#39;re forced to attack it and can&#39;t move out the first one. It&#39;s a good way to clinch a win if you are short on Y3 pieces in the late game\n\tTrydnt: I always called crash a hostile takeover\n\tTrydnt: Wil and I called stars that neither could access from their homeworlds no man&#39;s land. Might be worth including with a mention that depending on which half of their star you blow up that star might now be closer to their homeworld. Also since you can get to both your colonies and your opponents colonies from there, having two ships of the same color in no man&#39;s land, along with a y2 piece means you can sac the y2 and move them to any colony to destroy 2 opponent ships of that same color.\n\n62) Babamots: Discover R2 Why3 Y2 Iconia\n\n63) Trydnt: Sacrifice B2 Y3\nTrade R3 Y3 G2\nTrade R1 B1 G2\n\n64) Babamots: Build Y1 Betazed\n\tBabamots: I may want to take a couple of days to come back to this with a fresh perspective. I&#39;ve started to have dreams about this game, which always means I&#39;ve been overthinking.\n\tTrydnt: If I&#39;m feeling particularly stuck sometimes I&#39;ll build the universe with my pyramids and see if that helps me see any new pathways. The chaotic arrangement of tiles on SDG can obscure some things\n\n65) Trydnt: Sacrifice Y3 G2\nMove G1 Risa Betazed\nMove G2 Risa Betazed\nMove G1 Trydnt Betazed\nCatastrophe Betazed G\n\tBabamots: I set up the pyramids sometimes if I need to explore lots of possible futures. I can usually work through &quot;feeling stuck&quot; on SDG&#39;s display.\n\n\tBabamots: Shoot, I wish I&#39;d been in position to move when you made that first move. Well, I think that&#39;s me done in. GG!\n\tTrydnt: well played. this seemed the slower route to victory but definitely more certain\n\nHomeworlds Online (SDG# 36175)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.4, Ended: 2020.4.28\nParticipants: dlwillson (S), nicknack (N)\nWinner: dlwillson\n\n1) nicknack: Homeworld B3 Y2 G3\n\n2) dlwillson: H R1 B3 G3 Dlwillson\n\n3) nicknack: Build G1 Nicknack\n\tdlwillson: TaGLHF\n\n4) dlwillson: B G1 Dlwillson\n\n5) nicknack: Trade G1 B1 Nicknack\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) nicknack: Build G1 Nicknack\n\n8) dlwillson: B Y1 Dlwillson\n\n9) nicknack: Trade G1 Y1 Nicknack\n\n10) dlwillson: T Y1 B1 Dlwillson\n\n11) nicknack: Discover Y1 Nicknack G1 Beta\n\n12) dlwillson: B G1 Dlwillson\n\n13) nicknack: Build G1 Nicknack\n\n14) dlwillson: Trade G1 R1 Dlwillson\n\n15) nicknack: Trade G1 R1 Nicknack\n\n16) dlwillson: B G1 Dlwillson\n\n17) nicknack: Build R2 Nicknack\n\n18) dlwillson: B R2 Dlwillson\n\n19) nicknack: Move R2 Nicknack Beta\n\n20) dlwillson: T R1 Y1 Dlwillson\n\n21) nicknack: Build Y2 Beta\n\n22) dlwillson: D Y1 Dlwillson G2 Field\n\n23) nicknack: Move Y1 Beta Field\n\n24) dlwillson: M R2 Dlwillson Field\n\n25) nicknack: Build Y2 Beta\n\n26) dlwillson: B Y3 Dlwillson\n\n27) nicknack: Discover Y2 Beta G2 Gamma\n\n28) dlwillson: D Y1 Field B1 Sky\n\n29) nicknack: Build Y3 Beta\n\n30) dlwillson: S G1 Dlwillson\nB Y3 Sky\n\n31) nicknack: Discover Y2 Beta B2 Delta\n\n32) dlwillson: A Y1 Field\n\n33) nicknack: Move B1 Nicknack Beta\n\n34) dlwillson: Trade Y1 G1 Sky\n\n35) nicknack: Build Y1 Gamma\n\n36) dlwillson: B G1 Dlwillson\n\n37) nicknack: Sacrifice Y2 Gamma\nMove Y1 Gamma Dlwillson\nMove Y2 Delta Dlwillson\nCatastrophe Dlwillson Yellow\n\n38) dlwillson: S G3 Dlwillson\nB G2 Sky\nB G2 Sky\nB G3 Dlwillson\n\n39) nicknack: Build B2 Beta\n\n40) dlwillson: T G2 R2 Sky\n\n41) nicknack: Discover B1 Beta G3 Gamma\n\n42) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB G2 Sky\nB G3 Dlwillson\n\n43) nicknack: Trade G3 B3 Nicknack\n\n44) dlwillson: S G2 Sky\nB G2 Dlwillson\nB G3 Sky\n\n45) nicknack: Build B2 Beta\n\n46) dlwillson: T G3 Y3 Sky\n\n47) nicknack: Trade B3 G3 Nicknack\n\n48) dlwillson: M G2 Sky Nicknack\n\n49) nicknack: Attack G2 Nicknack\n\n50) dlwillson: Sacrifice Y3 Sky\nMove G3 Dlwillson Field\nMove G3 Field Sky\nMove G3 Sky Nicknack\n\n51) nicknack: Sacrifice G3 Nicknack\nBuild G3 Nicknack\nBuild R1 Nicknack\nBuild R3 Nicknack\n\n52) dlwillson: S Y3 Sky\nM G1 Sky Nicknack\nM R2 Sky Nicknack\nM Y1 Sky Nicknack\nC Nicknack G\nC Nicknack R\n\n\tnicknack: Go for it - Thanks for the game!\n\tdlwillson: Thank you! Good game!\n\nHomeworlds Online (SDG# 36261)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.4, Ended: 2020.5.23\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) dlwillson: H R2 B1 G3 Dlwillson\n\tDraw5PlayAll: I can get to #1 on the ladder but I am not good at staying there...\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tdlwillson: Thanks for taking my challenge!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) dlwillson: B G1 Dlwillson\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) dlwillson: B R2 Dlwillson\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 Rocket\n\n14) dlwillson: Trade R1 B1 Dlwillson\n\n15) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n16) dlwillson: B G1 Dlwillson\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) dlwillson: B R1 Dlwillson\n\n19) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n20) dlwillson: T R2 Y2 Dlwillson\n\n21) Draw5PlayAll: Build B2 Draw5playall\n\n22) dlwillson: D Y1 Dlwillson B3 Sea\n\n23) Draw5PlayAll: Move B2 Draw5playall Rocket\n\n24) dlwillson: B B2 Dlwillson\n\n25) Draw5PlayAll: Discover B1 Draw5playall G2 Dreams\n\n26) dlwillson: T B2 Y2 Dlwillson\n\n27) Draw5PlayAll: Build B2 Dreams\n\n28) dlwillson: D Y2 Dlwillson B3 Alsosea\n\n29) Draw5PlayAll: Trade B2 R2 Dreams\n\tDraw5PlayAll: &quot;Also sea&quot;?\n\n30) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Dlwillson\nBuild Y2 Sea\nBuild Y3 Alsosea\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild R3 Dreams\nBuild R3 Rocket\n\tdlwillson: Yeah. Sorry for the uncreative name. I guess it could have been lake, ocean, or something.\n\n32) dlwillson: B Y3 Dlwillson\n\tDraw5PlayAll: Red vs yellow huh...\n\n33) Draw5PlayAll: Move Y1 Draw5playall Dreams\n\tdlwillson: Yep. I&#39;m rooting for yellow! :-)\n\n34) dlwillson: Trade Y3 G3 Dlwillson\n\n35) Draw5PlayAll: Build Y3 Dreams\n\n36) dlwillson: T Y3 R3 Alsosea\n\n37) Draw5PlayAll: Move R3 Dreams Sea\n\n38) dlwillson: D Y2 Sea B2 Sky\n\n39) Draw5PlayAll: Attack Y1 Sea\n\n40) dlwillson: Sacrifice G1 Dlwillson\nBuild Y3 Sky\n\n41) Draw5PlayAll: Move Y1 Dreams Sea\n\n42) dlwillson: Build G1 Dlwillson\n\n43) Draw5PlayAll: Trade Y1 G1 Sea\n\n44) dlwillson: Move G1 Dlwillson Alsosea\n\n45) Draw5PlayAll: Build G1 Sea\n\n46) dlwillson: T Y3 G3 Sky\n\n47) Draw5PlayAll: Build B2 Dreams\n\n48) dlwillson: S Y2 Dlwillson\nM R1 Dlwillson Sea\nM R1 Sea Sky\n\n49) Draw5PlayAll: Move R2 Dreams Sea\n\n50) dlwillson: B G2 Alsosea\n\n51) Draw5PlayAll: Move R3 Sea Dlwillson\n\n52) dlwillson: A R3 Dlwillson\n\n53) Draw5PlayAll: Sacrifice Y3 Dreams\nMove R2 Sea Dlwillson\nMove R2 Rocket Sea\nMove R2 Sea Dlwillson\nCatastrophe Dlwillson Red\n\tDraw5PlayAll: Engage!\n\n\tDraw5PlayAll: You go challenge Babamots. I am going for #1 again.\n\nHomeworlds Online (SDG# 36252)\nVariants: &quot;Unrated&quot;\nStarted: 2020.4.6, Ended: 2020.4.24\nParticipants: eliscinsky (S), SubatomicAura (N)\nWinner: eliscinsky\n\n1) SubatomicAura: Homeworld R1 B2 G3\n\n2) eliscinsky: H R2 B3 G3\n\teliscinsky: Greetings SubatomicAura, GLHF\n\n3) SubatomicAura: Build G1 Subatomicaura\n\n4) eliscinsky: B G1 Eliscinsky\n\n5) SubatomicAura: Trade G1 R1 Subatomicaura\n\n6) eliscinsky: Trade G1 R1 Eliscinsky\n\n7) SubatomicAura: Build R2 Subatomicaura\n\n8) eliscinsky: Build R2 Eliscinsky\n\n9) SubatomicAura: Trade R1 Y1 Subatomicaura\n\n10) eliscinsky: Trade R1 Y1 Eliscinsky\n\n11) SubatomicAura: Build R1 Subatomicaura\n\n12) eliscinsky: Build R1 Eliscinsky\n\n13) SubatomicAura: Trade R2 B2 Subatomicaura\n\n14) eliscinsky: T R2 B2 Eliscinsky\n\n15) SubatomicAura: Build R2 Subatomicaura\n\n16) eliscinsky: Build R2 Eliscinsky\n\n17) SubatomicAura: Trade R1 G1 Subatomicaura\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) SubatomicAura: Build B1 Subatomicaura\n\n20) eliscinsky: T R2 Y2 Eliscinsky\n\n21) SubatomicAura: Trade B2 Y2 Subatomicaura\n\n22) eliscinsky: D Y2 Eliscinsky G1 Kronos\n\n\teliscinsky: SubatomicAura are you still in the game?\n\nHomeworlds Online (SDG# 36276)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.6, Ended: 2020.4.24\nParticipants: Felix (S), deanthebean (N)\nWinner: Felix\n\n1) deanthebean: Homeworld B1 R2 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\tdeanthebean: Thank you for accepting the challenge. Have fun!\n\n3) deanthebean: Build G1 Deanthebean\n\tFelix: No prob, you have fun too!\n\n4) Felix: Build G1 Felix\n\tdeanthebean: Thank you!\n\n5) deanthebean: Trade G1 Y1 Deanthebean\n\n6) Felix: Trade G1 Y1 Felix\n\n7) deanthebean: Build Y2 Deanthebean\n\n8) Felix: Build Y2 Felix\n\n9) deanthebean: Build Y2 Deanthebean\n\n10) Felix: Discover Y1 Felix G2 Out\n\n11) deanthebean: Discover Y1 Deanthebean G3 In\n\n12) Felix: Build Y3 Out\n\n13) deanthebean: Build Y3 In\n\n14) Felix: Move Y1 Out In\n\n15) deanthebean: Trade Y2 B2 Deanthebean\n\n16) Felix: Build Y2 In\nCatastrophe In Yellow\n\n17) deanthebean: Build G1 Deanthebean\n\n18) Felix: Build G1 Felix\n\n19) deanthebean: Build Y1 Deanthebean\n\n20) Felix: Trade G1 B1 Felix\n\n21) deanthebean: Trade G1 R1 Deanthebean\n\n22) Felix: Build B1 Felix\n\n23) deanthebean: Build B2 Deanthebean\n\n24) Felix: Sacrifice Y3 Out\nDiscover B1 Felix Y2 Move1\nDiscover B1 Move1 Y3 Move2\nMove B1 Move2 Deanthebean\nCatastrophe Deanthebean Blue\n\n25) deanthebean: Move Y1 Deanthebean Felix\n\n26) Felix: Trade Y2 R2 Felix\n\n27) deanthebean: Build G1 Deanthebean\n\n28) Felix: Attack Y1 Felix\n\n29) deanthebean: Build Y1 Deanthebean\n\tFelix: I think you might have had me if you had moved your g3 to my homeworld a couple turns ago instead of the y1. I&#39;m pretty sure I left myself open to a killing attack since I had no red at the time, but I&#39;m not sure how it would have played out...\n\tdeanthebean: That&#39;s a good point. Unfortunately it didn&#39;t occur to me. \n\n30) Felix: Build R1 Felix\n\tFelix: Yeah, it&#39;s typically a bad idea to move your large ship from your homeworld, so I don&#39;t often think of moves like that either, but sometimes it&#39;s worth considering!\n\n31) deanthebean: Discover Y1 Deanthebean B1 Commerce\n\n32) Felix: Discover Y1 Felix G2 G2\n\n33) deanthebean: Move G1 Deanthebean Commerce\n\n34) Felix: Build Y2 G2\n\n35) deanthebean: Build Y2 Commerce\n\n36) Felix: Sacrifice Y2 G2\nMove R1 Felix Deanthebean\nMove R2 Felix Deanthebean\nCatastrophe Deanthebean Red\n\tFelix: Good game! Thanks for the challenge :)\n\tdeanthebean: Thank you and congrats\n\n\nHomeworlds Online (SDG# 36235)\nStarted: 2020.4.7, Ended: 2020.4.21\nParticipants: ajo (S), wil (N)\nWinner: ajo\n\n1) wil: H Y2 B1 G3\n\n2) ajo: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\tajo: For the Great Homeworlds Tournament of 2019, agreed?\n\twil: Great short uni!\n\n4) ajo: Build G1 Ajo\n\n5) wil: T G1 Y1 Wil\n\n6) ajo: Trade G1 B1 Ajo\n\n7) wil: B Y1 Wil\n\n8) ajo: Build B1 Ajo\n\n9) wil: D Y1 Wil B3 B3\n\n10) ajo: Discover B1 Ajo G3 Alpha\n\n11) wil: S G3 Wil\nB Y2 B3\nB Y2 B3\nB Y3 Wil\n\n12) ajo: Sacrifice G3 Ajo\nBuild B2 Alpha\nBuild B2 Alpha\nBuild B3 Ajo\n\tajo: As usual, I didn&#39;t see that coming. But two can play that game!\n\n13) wil: M Y1 Wil Alpha\n\n14) ajo: Trade B2 R2 Alpha\n\n15) wil: B Y3 Alpha\n\n16) ajo: Attack Y1 Alpha\n\n17) wil: B Y3 Alpha\n\n18) ajo: Trade B3 G3 Ajo\n\twil: I havent thought this out\n\twil: Lol,.tried to build at aloha\n\n19) wil: M Y3 Alpha Ajo\n\n20) ajo: Move Y1 Alpha Wil\n\n21) wil: T Y3 R3 Wil\n\n22) ajo: Move Y1 Wil B3\nCatastrophe B3 Yellow\n\twil: I love the bizzarro games!\n\n23) wil: D Y3 Ajo G3 G3\n\tajo: I&#39;m pretty sure you came out on top of that exchange, but that was fun. ;) Question is, do you retreat and regroup, or keep up the frontal assault?\n\n24) ajo: Trade B2 Y2 Alpha\n\twil: Assault over my 3 Queens will rebuild\n\n25) wil: B Y1 G3\n\n26) ajo: Build Y1 Alpha\n\n27) wil: D Y3 Alpha G2 G2\n\n28) ajo: Discover Y2 Alpha B2 Beta\n\n29) wil: M Y1 G3 Wil\n\n30) ajo: Sacrifice G3 Ajo\nBuild B2 Alpha\nBuild B3 Alpha\nBuild B3 Ajo\n\tajo: Uh-oh, looks like school&#39;s back in session! :)\n\n31) wil: T Y1 G1 Wil\n\n32) ajo: Trade B3 G3 Ajo\n\n33) wil: B R1 Wil\n\n34) ajo: Build B3 Ajo\n\n35) wil: M R1 Wil G3\n\n36) ajo: Trade B3 R3 Ajo\n\n37) wil: B R1 G3\n\n38) ajo: Build B3 Ajo\n\n39) wil: B G1 Wil\n\twil: I think it is inevitable, you should concede now, before you embarrass...me.\n\n40) ajo: Move B2 Alpha Beta\n\n41) wil: D G1 Wil Y3 Y3\n\tajo: Heh. :) I feel like you had a few chances to move to blue systems, that you should have taken. And before my &quot;school&#39;s back in&quot; comment, you gave me quite a number of &quot;summer vacation&quot; turns where I didn&#39;t have to worry about attacks (you couldn&#39;t sac your r3, and you couldn&#39;t build at home because you lacked green). ...But I&#39;m not relaxing yet. It&#39;s a claustrophobic game and neither of us has lost a star yet.\n\n42) ajo: Build B3 Alpha\n\n43) wil: B Y1 G3\n\n44) ajo: Sacrifice Y2 Beta\nMove B3 Alpha Wil\nMove B3 Alpha Wil\n\n45) wil: M R3 Wil Y3\n\twil: I&#39;m giving you one last chance to concede!\n\n46) ajo: Sacrifice R2 Alpha\nAttack G1 Wil\nPass\n\tajo: Good game :)\n\twil: To proud to concede eh, I knew it.  Gg\n\n\nHomeworlds Online (SDG# 36228)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.13, Ended: 2020.4.25\nParticipants: wil (S), amoscai (N)\nWinner: wil\n\n1) amoscai: Homeworld B1 Y2 G3\n\n2) wil: H B3 Y1 G3\n\n3) amoscai: Build G1 Amoscai\n\n4) wil: B G1 Wil\n\n5) amoscai: Discover G1 Amoscai Y3 Dub\n\n6) wil: T G1 Y1 Wil\n\n7) amoscai: Build G1 Dub\n\n8) wil: B Y1 Wil\n\n9) amoscai: Build G1 Amoscai\n\n10) wil: D Y1 Wil B2 B2\n\n11) amoscai: Build G2 Amoscai\n\n12) wil: S G3 Wil\nB Y2 B2\nB Y2 B2\nB Y3 Wil\n\n13) amoscai: Trade G3 Y3 Amoscai\n\n14) wil: M Y2 B2 Dub\n\n15) amoscai: Move Y3 Amoscai Dub\n\n16) wil: M Y1 B2 Dub\nC Dub Y\n\n17) amoscai: Trade G2 Y2 Amoscai\n\n18) wil: D Y2 B2 G3 G3\n\n19) amoscai: Build G1 Amoscai\n\n20) wil: B Y1 G3\n\n21) amoscai: Build G1 Amoscai\n\n22) wil: D Y1 Wil G2 G2\n\n23) amoscai: Discover Y2 Amoscai G3 Great\n\n24) wil: B Y3 G3\n\n25) amoscai: Build Y3 Great\n\n26) wil: M Y3 G3 Amoscai\n\n27) amoscai: Trade G1 R1 Amoscai\n\n28) wil: T Y3 G3 Wil\n\n29) amoscai: Build R1 Amoscai\n\n30) wil: T G3 R3 Wil\n\n31) amoscai: Discover Y3 Great R2 Super\n\n32) wil: B Y3 G2\n\n33) amoscai: Build R1 Amoscai\n\n34) wil: M Y3 G2 Wil\n\n35) amoscai: Move R1 Amoscai G3\n\n36) wil: S R3 Wil\nA R1 G3\nA R1 Amoscai\nA R1 Amoscai\n\n\twil: Gg, challenge anytime....took me a while to get there...here...since I Amit there yet!\n\tamoscai: gg\n\nHomeworlds Online (SDG# 36223)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.14, Ended: 2020.4.28\nParticipants: Trydnt (S), thecolorbrown (N)\nWinner: Trydnt\n\n1) thecolorbrown: Homeworld G1 B2 Y3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) thecolorbrown: Build Y1 Thecolorbrown\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: Welcome! New to the game or the site?\n\n5) thecolorbrown: Trade Y1 R1 Thecolorbrown\n\tthecolorbrown: I am new! Been lurking for a minute, but finally trying to figure out how to play and how everything works. You been here a while?\n\n6) Trydnt: Build G1 Trydnt\n\tTrydnt: Have you watched the videos on Lonney Labs&#39; youtube channel? there is a tutorial, replayed games with commentary and I think maybe sample game. But it&#39;s good for learning some of the strategy tricks\n\n7) thecolorbrown: Build R1 Thecolorbrown\n\tthecolorbrown: I have, really enjoyed it. Just hard to get any of the people i know as obsessed as i am\n\n8) Trydnt: Trade G3 Y3 Trydnt\n\n9) thecolorbrown: Build R1 Thecolorbrown\n\n10) Trydnt: Build G2 Trydnt\n\n11) thecolorbrown: Discover R1 Thecolorbrown G3 Avocadus\n\n12) Trydnt: Trade G2 R2 Trydnt\n\n13) thecolorbrown: Build Y1 Thecolorbrown\n\n14) Trydnt: Discover R2 Trydnt B1 B1\n\n\nHomeworlds Online (SDG# 36224)\nStarted: 2020.4.14, Ended: 2020.5.1\nParticipants: thecolorbrown (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 Y2 G3\n\n2) thecolorbrown: Homeworld B1 G3 B3 *\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) thecolorbrown: Build B1 Thecolorbrown\n\n5) MobyNostromo: B G1 Mobynostromo\n\n\nHomeworlds Online (SDG# 36284)\nVariants: &quot;Unrated&quot;\nStarted: 2020.4.14, Ended: 2020.4.14\nParticipants: Babamots (S), thecolorbrown (N)\nWinner: Babamots\n\n1) thecolorbrown: Homeworld R1 B2 G3\n\n2) Babamots: Homeworld R3 B1 G3\n\tBabamots: Howdy! I don&#39;t think I&#39;ve seen you around before. Is this your first time on SDG?\n\n3) thecolorbrown: Build G1 Thecolorbrown\n\tthecolorbrown: It is! I got obsessed with homeworlds and was dying for people to play with \n\tthecolorbrown: so difficult to get any good at it\n\n4) Babamots: Build G1 Babamots\n\n5) thecolorbrown: Trade G1 Y1 Thecolorbrown\n\tBabamots: It&#39;s certainly hard to find people to play with in person. I&#39;m working on a Tabletopia version right now for better real-time play online.\r\n\r\nI got obsessed with HW about four years ago. How about you?\n\n6) Babamots: Trade G1 Y1 Babamots\n\tthecolorbrown: that&#39;s amazing! keep me posted. i got into it these last few months. couldnt afford the actual pyramids. made some out of card stock haha\n\tBabamots: You can also draw your own card-based version: draw a triangle on one side for a ship and a square on the other side for a star.\r\n\r\nDo you know about the HW boxed set Kickstarter? It&#39;s $20, which is way more accessible than $77 for the Pyramid Arcade.\n\n7) thecolorbrown: Build G1 Thecolorbrown\n\n8) Babamots: Build G1 Babamots\n\tthecolorbrown: no i hadnt heard of that. that might help. these cardstock pyramids won&#39;t last long\n\n9) thecolorbrown: Trade G1 B1 Thecolorbrown\n\n10) Babamots: Trade G1 R1 Babamots\n\tBabamots: It looks you can still pledge to the Kickstarter campaign, though outside of the Kickstarter interface. You could get the pyramids in the fall, a little before they&#39;re available to non-backers. The page is here (you can click &quot;Late Pledge Option&quot;)\r\n\r\nhttps://www.kickstarter.com/projects/looneylabs/pyramid-quartet\n\n11) thecolorbrown: Discover B1 Thecolorbrown G3 Greenguy\n\n12) Babamots: Build R1 Babamots\n\n13) thecolorbrown: Build B1 Greenguy\n\n14) Babamots: Discover R1 Babamots R2 Romulus\n\n15) thecolorbrown: Build B2 Greenguy\n\n16) Babamots: Build R2 Babamots\n\tBabamots: I don&#39;t necessarily recommend the strategy I&#39;m trying here. It&#39;s experimental :-D\n\n17) thecolorbrown: Trade B2 R2 Greenguy\n\tthecolorbrown: you making that r2 is freaking me out tho\n\n18) Babamots: Trade R2 Y2 Babamots\n\n19) thecolorbrown: Build B2 Greenguy\n\n20) Babamots: Discover R1 Babamots Y2 Iconia\n\n21) thecolorbrown: Trade B2 Y2 Greenguy\n\n22) Babamots: Sacrifice G3 Babamots\nBuild R2 Iconia\nBuild R3 Iconia\nBuild R3 Romulus\n\n23) thecolorbrown: Build B2 Greenguy\n\tBabamots: Not having a large ship in your home is what I like to call &quot;the big no-no.&quot; This is much more reckless than I usually play.\n\tthecolorbrown: gonna need a minute to think here hmm\n\n24) Babamots: Sacrifice Y2 Babamots\nMove R3 Romulus Babamots\nMove R3 Iconia Greenguy\n\n25) thecolorbrown: Sacrifice G3 Thecolorbrown\nBuild Y1 Greenguy\nBuild Y2 Greenguy\nBuild Y3 Thecolorbrown\n\n26) Babamots: Sacrifice R2 Iconia\nAttack R2 Greenguy\nAttack Y2 Greenguy\n\n27) thecolorbrown: Trade Y3 B3 Thecolorbrown\n\tthecolorbrown: well you&#39;ve definitely got me now. My red game still really ain&#39;t good hmm\n\tBabamots: So you know, I&#39;m responding much faster than is usual on SDG. One or two moves a day is typical for most people. That&#39;s part of why I want a good real-time implementation online somewhere like Tabletopia.\n\n28) Babamots: Sacrifice R3 Greenguy\nAttack B2 Greenguy\nAttack Y2 Greenguy\nAttack B1 Greenguy\n\tBabamots: Employing/defending red-powered invasions is super interesting.\n\tthecolorbrown: yeah for sure that&#39;s my impression \n\tBabamots: Sacrificing blue to trade some of your ships for green may be a good move. If you can cause a green catastrophe in greenguy, I don&#39;t want to have any ships there.\n\tBabamots: The most interesting part of most games is the end. When you try to strike a killing blow, you often have to leave yourself open to a counterattack. Even if you plan perfectly, your opponent is often just one move away from destroying you when you win. Many attempts to win the game turn to disaster.\n\n29) thecolorbrown: Sacrifice B3 Thecolorbrown\nTrade B1 G1 Greenguy\nTrade Y1 G1 Greenguy\nTrade Y1 G1 Thecolorbrown\n\tthecolorbrown: yeah the blue sac is the plan but ima be majorly screwed after that\n\n30) Babamots: Sacrifice Y2 Greenguy\nMove R2 Greenguy Thecolorbrown\nMove Y2 Greenguy Thecolorbrown\n\tBabamots: Yeah, I guess that threat is too late. I can just move in now.\n\n31) thecolorbrown: Build G2 Greenguy\nCatastrophe Greenguy Green\n\tthecolorbrown: yup, i make a g2 at home and then you sac r2 to take both\n\tBabamots: You probably haven&#39;t seen the way to switch between the &quot;Play Page&quot;  and the &quot;Archive Page.&quot; The Archive page lets you see every position of the game and step through them.\r\n\r\nThere&#39;s a js file here that you can copy into a bookmark to switch between SDG&#39;s play and archive views.\r\n\r\nhttps://github.com/jpeterbaker/SDGchange\n\n32) Babamots: Attack G1 Thecolorbrown\n\tBabamots: The archive view lets you go back and see what you/the other guy could have done different.\n\tBabamots: You can also get to the archive view by pasting the game number into a URL with this form\r\n\r\nhttp://www.superdupergames.org/main.html?page=archive_play&amp;gid=36284\n\tBabamots: Anyway, thanks for the game! I&#39;m up for another one, but I&#39;ll probably play slower (I need to work on some other things).\r\n\r\nLet me know if you&#39;d like my analysis of this match or a practice game with open discussion of strategy. I enjoy helping people strengthen their game.\n\tthecolorbrown: I would love all of that! How does a person even start a new game?\n\tthecolorbrown: And I&#39;m definitely open to any advice you&#39;ve got\n\tBabamots: You can scroll to the game you want and click &quot;New Challenge&quot; on the challenge page here\r\n\r\nhttp://superdupergames.org/main.html?page=listgames#homeworlds\r\n\r\nYou can pick specific people to challenge or just leave the challenge open for anyone to join you.\r\n\r\nThe main thing in this game was, on your 12th move, I think you should have moved r2 to Iconia and triggered the catastrophe. We would have been about equal in material and you would have had better color diversity.\n\tthecolorbrown: yeah i was just looking over it and did actually see that. What a shame. Oh well. I&#39;m new\n\tBabamots: We all live and learn!\r\n\r\nIf you really want to do a lot of reading on an ugly website, you can checkout my strategy and tactics guides here:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/index.html\n\tthecolorbrown: love it! will be checking it out\n\n\nHomeworlds Online (SDG# 36311)\nVariants: &quot;Unrated&quot;\nStarted: 2020.4.14, Ended: 2020.4.15\nParticipants: Babamots (S), thecolorbrown (N)\nWinner: Babamots\n\n1) thecolorbrown: Homeworld B1 G2 Y3\n\tBabamots: Good luck! I&#39;ll have to move slower in this. I&#39;ve been neglecting work.\n\n2) Babamots: Homeworld B3 R2 G3\n\tthecolorbrown: no worries. Same, I was in a zoom meeting the whole time. Unsurprisingly neither the game nor the meeting went well\n\n3) thecolorbrown: Build Y1 Thecolorbrown\n\n4) Babamots: Build G1 Babamots\n\n5) thecolorbrown: Build Y1 Thecolorbrown\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) thecolorbrown: Trade Y1 B1 Thecolorbrown\n\n8) Babamots: Build Y1 Babamots\n\n9) thecolorbrown: Discover Y1 Thecolorbrown G3 Endor\n\n10) Babamots: Trade Y1 B1 Babamots\n\tBabamots: I&#39;ve always used Star Trek worlds for my system names. Looks like you&#39;re thinking of using Star Wars worlds?\n\n11) thecolorbrown: Build B2 Thecolorbrown\n\tthecolorbrown: I&#39;m not sure. Star Trek is way better, I kind of hate Star Wars\n\n12) Babamots: Build B2 Babamots\n\n13) thecolorbrown: Sacrifice Y3 Thecolorbrown\nMove B1 Thecolorbrown Endor\nDiscover B1 Endor R1 Hellitself\nMove B1 Hellitself Babamots\nCatastrophe Babamots Blue\n\tBabamots: Lots of people just call their systems boring things like &quot;G3.&quot; System names that look the same as ship specifiers confuse me. Someone on here uses Muppets, like BigBird for a y3 system (I can never remember who does this, but D5PA will probably pop into the comments here to remind me :-D).\n\n14) Babamots: Build Y1 Babamots\n\tthecolorbrown: probably stupid but i couldn&#39;t resist. never typed all that stuff out yet\n\tBabamots: I don&#39;t think you&#39;ll like this, but we&#39;ll see.\n\n15) thecolorbrown: Build Y2 Endor\n\tBabamots: I do have to be super careful now. Without blue, yellow is my only ticket out of here. A green ship in a red system is a &quot;Gilligan:&quot; he&#39;ll never get away.\n\n16) Babamots: Move Y1 Babamots Endor\n\tthecolorbrown: i&#39;m definitely in a super precarious situation and will not be able to afford any mistakes...and so i hope that wasn&#39;t a mistake\n\n17) thecolorbrown: Move Y2 Endor Thecolorbrown\n\n18) Babamots: Build Y2 Babamots\n\tDraw5PlayAll: I have been summoned...\r\n\r\nYou are looking for ts52.\n\tthecolorbrown: I&#39;m afraid I don&#39;t know what you mean\n\n19) thecolorbrown: Build Y2 Thecolorbrown\n\tBabamots: I said that D5PA (short for Draw5PlayAll) would probably leave us a comment about who it is that uses Muppet names. He just did.\n\n20) Babamots: Move Y1 Endor Thecolorbrown\n\n21) thecolorbrown: Trade Y2 R2 Thecolorbrown\n\n22) Babamots: Discover Y1 Thecolorbrown B3 Pakled\n\tthecolorbrown: That&#39;s a cool move.\n\n23) thecolorbrown: Build R1 Thecolorbrown\n\n24) Babamots: Discover Y1 Babamots Y3 Aldea\n\tBabamots: This is tricky. I&#39;d better sleep on this one. I&#39;ll be back tomorrow.\n\tthecolorbrown: Good night, Wesley, good work. Rest well, I&#39;ll most likely kill you in the morning\n\n25) thecolorbrown: Move R1 Thecolorbrown Endor\n\tBabamots: Moving my y1 to your home was actually a big mistake. It cost me two turns when I don&#39;t have any time to spare.\n\n26) Babamots: Sacrifice G3 Babamots\nBuild Y2 Aldea\nBuild Y3 Babamots\nBuild Y3 Pakled\n\tthecolorbrown: definitely a tricky situation\n\n27) thecolorbrown: Build R1 Endor\n\n28) Babamots: Trade Y3 R3 Pakled\n\n29) thecolorbrown: Build Y3 Endor\n\n30) Babamots: Sacrifice Y2 Babamots\nMove R3 Pakled Thecolorbrown\nMove Y2 Aldea Thecolorbrown\n\n31) thecolorbrown: Sacrifice Y2 Thecolorbrown\nMove R1 Endor Thecolorbrown\nMove R1 Endor Thecolorbrown\nCatastrophe Thecolorbrown Red\n\n32) Babamots: Trade Y2 R2 Thecolorbrown\n\n33) thecolorbrown: Move Y3 Endor Thecolorbrown\n\n34) Babamots: Attack B2 Thecolorbrown\n\tthecolorbrown: Crap. I think you got me by one turn.\n\n35) thecolorbrown: Trade Y3 R3 Thecolorbrown\n\tBabamots: I&#39;m not too sure yet. This is weird.\n\n36) Babamots: Trade B2 R2 Thecolorbrown\n\n37) thecolorbrown: Build R1 Thecolorbrown\nCatastrophe Thecolorbrown Red\n\n\tBabamots: I think I&#39;ve used &quot;Undo&quot; more in this game than I ever have before.\r\n\r\nIf I were to build an r1, you could have made it a tie by attacking the b2 repeatedly.\n\tthecolorbrown: yeah I think i&#39;m going to just concede after all. Any color i change the r3 to, you just change to that color and start building to blow things up. Happens really fast if I choose b3 or g3 but then I can&#39;t build more without giving them to you. good game after all!\n\tBabamots: That was an exciting one. After you sacrificed your only large ship, I thought I would be able to get my large to your home and capture everything. But then there were too many other things to prevent or prepare for.\n\tthecolorbrown: Yeah, and I panicked for a few turns. I think if I had gotten right to the business of building up those r1s and throwing them at your homeworld, I might have been able to work it out. Especially with that red-herring y1 you send into my homeworld. Then again, even if you considered that wasted energy, I still had to take time to respond to it. Maybe it didn&#39;t cost you that much time after all. I&#39;m gonna have to go back and study this one.\n\nHomeworlds Online (SDG# 36319)\nVariants: &quot;Unrated&quot;\nStarted: 2020.4.15, Ended: 2020.5.29\nParticipants: thecolorbrown (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) thecolorbrown: Homeworld R2 B1 G3\n\tthecolorbrown: It&#39;s funny, I still really haven&#39;t established what my starting position is. Still playing around. A lot of people seem to use the one you&#39;re using. I&#39;m gonna copy it this time and see what happens\n\n3) Babamots: Build G1 Babamots\n\tBabamots: From what I&#39;ve seen lately, the most popular setup is green ship and blue-red star system. People almost always include a small star. The next most popular color combination is to replace the red star with yellow.\n\n4) thecolorbrown: Build G1 Thecolorbrown\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) thecolorbrown: Build G1 Thecolorbrown\n\n7) Babamots: Build R1 Babamots\n\n8) thecolorbrown: Trade G3 Y3 Thecolorbrown\n\n9) Babamots: Build G1 Babamots\n\n10) thecolorbrown: Discover G1 Thecolorbrown B3 Paransaeksam\n\n11) Babamots: Trade G1 Y1 Babamots\n\n12) thecolorbrown: Build G1 Paransaeksam\n\n13) Babamots: Discover R1 Babamots B2 Bolarus\n\n14) thecolorbrown: Build G2 Paransaeksam\n\n15) Babamots: Sacrifice G3 Babamots\nBuild R2 Bolarus\nBuild R2 Bolarus\nBuild R3 Babamots\n\n16) thecolorbrown: Sacrifice G2 Paransaeksam\nBuild G2 Thecolorbrown\nBuild G2 Thecolorbrown\n\n17) Babamots: Trade R3 G3 Babamots\n\n18) thecolorbrown: Discover G2 Thecolorbrown R3 Imgoingtolose\n\n19) Babamots: Build R3 Babamots\n\n20) thecolorbrown: Trade Y3 R3 Thecolorbrown\n\n21) Babamots: Trade R3 Y3 Babamots\n\n22) thecolorbrown: Sacrifice G2 Thecolorbrown\nBuild G2 Paransaeksam\nBuild G2 Imgoingtolose\n\tthecolorbrown: Man, did I blow it on this one\n\n23) Babamots: Build G3 Babamots\n\n24) thecolorbrown: Build G3 Thecolorbrown\n\n25) Babamots: Build R3 Babamots\n\n26) thecolorbrown: Trade G1 Y1 Paransaeksam\n\tBabamots: Yeah, I saw a chance to run away with the reds, so I took it.\n\tthecolorbrown: i&#39;ll say. it was cool\n\n27) Babamots: Trade R3 Y3 Babamots\n\n28) thecolorbrown: Build Y1 Paransaeksam\n\n29) Babamots: Build R3 Babamots\n\n30) thecolorbrown: Build Y2 Paransaeksam\n\n31) Babamots: Discover Y3 Babamots B2 Andoria\n\n\tBabamots: Looks like you&#39;re probably busy these days. Let me know if you want a rematch!\n\nHomeworlds Online (SDG# 36327)\nStarted: 2020.4.16, Ended: 2020.6.9\nParticipants: nycavri (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B1 G3\n\tnycavri: For the 2019 Homeworlds Tourney.  Please confirm.\n\tnycavri: TaGG!\n\n2) nycavri: Homeworld Y3 B2 G3\n\tgoulo: hi, for the tourney, have fun! :)\n\n3) goulo: Build G1 Goulo\n\n4) nycavri: Build G1 Nycavri\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) nycavri: Discover G1 Nycavri Y1 Deacon\n\n7) goulo: Build G1 Goulo\n\n8) nycavri: Discover G1 Deacon Y2 May\n\n9) goulo: Trade G1 R1 Goulo\n\n10) nycavri: Build G1 Nycavri\n\n11) goulo: Build R1 Goulo\n\n12) nycavri: Trade G1 R1 Nycavri\n\n13) goulo: Trade R1 B1 Goulo\n\n14) nycavri: Build G1 Nycavri\n\n15) goulo: Build Y1 Goulo\n\n16) nycavri: Discover G1 Nycavri Y1 Deacon\n\n17) goulo: Discover Y1 Goulo Y2 Flavo\n\n18) nycavri: Move G1 Deacon May\n\n19) goulo: Build G1 Goulo\n\n20) nycavri: Build G2 Nycavri\n\n21) goulo: Move G1 Goulo Flavo\n\n22) nycavri: Discover G2 Nycavri Y1 Mercury\n\n23) goulo: Sacrifice G3 Goulo\nBuild Y2 Goulo\nBuild Y3 Goulo\nBuild Y3 Flavo\n\n24) nycavri: Build G2 May\n\n25) goulo: Sacrifice Y2 Goulo\nMove G1 Flavo Goulo\nMove G1 Goulo May\nCatastrophe May G\n\n26) nycavri: Build G1 Nycavri\n\n27) goulo: Trade Y1 G1 Goulo\n\n28) nycavri: Discover G2 Mercury Y2 Taylor\n\n29) goulo: Build Y1 Goulo\n\n30) nycavri: Build G1 Taylor\n\n31) goulo: Build G2 Goulo\n\n32) nycavri: Trade G1 Y1 Nycavri\n\n33) goulo: Build Y2 Goulo\n\n34) nycavri: Move G1 Taylor Goulo\n\n35) goulo: Attack G1 Goulo\n\n36) nycavri: Move G2 Taylor Goulo\nCatastrophe Goulo G\n\n37) goulo: Discover Y1 Flavo G1 Verdo\n\n38) nycavri: Discover Y1 Nycavri G1 Deacon\n\n39) goulo: Build Y2 Verdo\n\n40) nycavri: Discover Y1 Deacon B2 May\n\n41) goulo: Discover Y1 Goulo R2 Rubeno\n\n42) nycavri: Build G1 Nycavri\n\n43) goulo: Trade B1 G1 Goulo\n\n44) nycavri: Build R1 Nycavri\n\n45) goulo: Build R2 Goulo\n\n46) nycavri: Sacrifice Y1 May\nDiscover G1 Nycavri Y1 Mercury\n\n47) goulo: Build G2 Goulo\n\n48) nycavri: Build G2 Nycavri\n\n49) goulo: Move G1 Goulo Rubeno\n\n50) nycavri: Move G2 Nycavri Mercury\n\n51) goulo: Trade R1 B1 Goulo\n\n52) nycavri: Trade R1 B1 Nycavri\n\n53) goulo: Build R1 Goulo\n\n54) nycavri: Move B1 Nycavri Mercury\n\n55) goulo: Move Y3 Flavo Mercury\n\n56) nycavri: Discover G2 Mercury Y2 Taylor\n\n57) goulo: Sacrifice R2 Goulo\nAttack G1 Mercury\nAttack B1 Mercury\n\n58) nycavri: Build R1 Nycavri\n\n59) goulo: Build R2 Goulo\n\n60) nycavri: Build G2 Taylor\n\n61) goulo: Build G3 Rubeno\n\n62) nycavri: Build R2 Nycavri\n\n63) goulo: Sacrifice Y3 Mercury\nMove R1 Goulo Rubeno\nMove R1 Rubeno Mercury\nMove R1 Mercury Nycavri\nCatastrophe Nycavri R\n\n64) nycavri: Build G3 Nycavri\n\n65) goulo: Sacrifice Y2 Verdo\nMove G3 Rubeno Mercury\nMove G3 Mercury Nycavri\n\n66) nycavri: Trade G3 R3 Nycavri\n\n67) goulo: Sacrifice R2 Goulo\nAttack G3 Nycavri\nAttack R3 Nycavri\n\n\tgoulo: Thanks for the game!\n\nHomeworlds Online (SDG# 36321)\nStarted: 2020.4.22, Ended: 2020.6.17\nParticipants: DodoBirb (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) DodoBirb: Homeworld B1 R3 G3\n\tDodoBirb: Good Luck! This is for the Homeworlds tourney\n\n3) wil: B G1 Wil\n\twil: Cool, thx for the challenge!\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) wil: T G1 B1 Wil\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) wil: B B2 Wil\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) wil: D B2 Wil Y3 Y3\n\n10) DodoBirb: Trade B1 Y1 Dodobirb\n\n11) wil: D B2 Y3 Y2 Y2\n\n12) DodoBirb: Build Y1 Dodobirb\n\n13) wil: B B1 Wil\n\n14) DodoBirb: Trade B2 R2 Dodobirb\n\n15) wil: D B1 Wil R3 R3\n\n16) DodoBirb: Move R2 Dodobirb Y2\n\n17) wil: S G3 Wil\nB B2 R3\nB B3 Y2\nB B3 Wil\n\n18) DodoBirb: Attack B2N Y2\n\n19) wil: T B1 R1 Wil\n\n20) DodoBirb: Move B2 Y2 Dodobirb\n\n21) wil: T B3 G3 Wil\n\n22) DodoBirb: Build Y2 Dodobirb\n\n23) wil: S R1 Wil\nA R2 Y2\n\n24) DodoBirb: Trade Y2 R2 Dodobirb\n\n25) wil: Trade B2 Y2 R3\n\n26) DodoBirb: Build Y2 Dodobirb\n\n27) wil: B G1 Wil\n\n28) DodoBirb: Discover Y2 Dodobirb G2 Construction\n\n29) wil: D B3 Y2 Y3 Y3\n\n30) DodoBirb: Build Y3 Construction\n\n31) wil: S G1 Wil\nB Y3 R3\n\n32) DodoBirb: Move R2 Dodobirb Construction\n\n33) wil: Build G1 Wil\n\n34) DodoBirb: Build G1 Dodobirb\n\n35) wil: T B3 G3 Y3\n\n36) DodoBirb: Build R1 Construction\n\n37) wil: Discover Y2 R3 B2 B2\n\n38) DodoBirb: Move B2 Dodobirb Construction\n\n39) wil: B G1 Y3\n\n40) DodoBirb: Discover G1 Dodobirb R2 Mediumhot\n\n41) wil: T G1 R1 Wil\n\n42) DodoBirb: Discover R2 Construction B3 Bluey\n\n43) wil: M G1 Y3 Y2\n\n44) DodoBirb: Move R1 Construction Bluey\n\n45) wil: S G3 Y3\nB Y3 B2\nB R1 Wil\nB R3 Y2\n\n46) DodoBirb: Sacrifice Y2 Construction\nMove R1 Bluey Y2\nMove R2 Bluey Y2\nCatastrophe Y2 R\n\n47) wil: Discover Y3 B2 B3 B3\n\n48) DodoBirb: Build G1 Dodobirb\n\n49) wil: Build G2 Y2\n\n50) DodoBirb: Trade G1 B1 Dodobirb\n\n51) wil: S G2 Y2\nB B3 R3\nB Y2 B2\n\n52) DodoBirb: Build B3 Construction\n\n53) wil: T B3 G3 R3\n\n54) DodoBirb: Trade B3 R3 Construction\n\n55) wil: S G1 Y2\nB Y2 B2\n\n56) DodoBirb: Build R1 Construction\n\n57) wil: B B3 R3\n\n58) DodoBirb: Build B3 Construction\n\n59) wil: M B3 R3 Mediumhot\n\n60) DodoBirb: Sacrifice G1 Mediumhot\nBuild G1 Dodobirb\n\twil: I just realized my banker opening has turned into a fortress!  With the race to get threes!\n\n61) wil: M R1 Wil B3\n\tDodoBirb: and so it has, this isn&#39;t looking good for me...\n\n62) DodoBirb: Discover R3 Construction G1 Seed\n\n63) wil: B R2 Wil\n\n64) DodoBirb: Build R2 Construction\n\n65) wil: Trade Y2 G2 B2\n\n66) DodoBirb: Build Y2 Construction\n\n67) wil: Build G1 B2\n\n68) DodoBirb: Sacrifice Y2 Construction\nMove Y3 Construction B3\nMove Y3 B3 B2\n\n69) wil: S G3 R3\nB Y2 B2\nC B2 Y\nB G2 Wil\nB G3 Wil\n\n70) DodoBirb: Discover B1 Dodobirb Y2 Yellow\n\n71) wil: Discover G3 Wil Y3 Y3\n\n72) DodoBirb: Move Y1 Dodobirb Construction\n\n73) wil: S G3 Wil\nB G3 Wil\nB Y2 B3\nB Y2 R3\n\n74) DodoBirb: Move Y1 Construction Seed\n\n75) wil: S Y3 R3\nM B3 Mediumhot Dodobirb\nM G1 B2 Dodobirb\nM G2 B2 Dodobirb\nC Dodobirb G\n\n76) DodoBirb: Sacrifice Y1 Seed\nMove B3 Construction Dodobirb\n\tDodoBirb: Good game\n\n77) wil: Sacrifice R2 Wil\nAttack B3 Dodobirb\nAttack Y1 Dodobirb\n\twil: gg, challenge me anytime...you got the paperwork eh?\r\n\n\n\nHomeworlds Online (SDG# 36328)\nStarted: 2020.4.22, Ended: 2020.5.4\nParticipants: nycavri (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) nycavri: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\tnycavri: For the tournament\n\twil: Cool thnx\n\n4) nycavri: Build G1 Nycavri\n\n5) wil: T G1 B1 Wil\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) wil: B B1 Wil\n\n8) nycavri: Build G1 Nycavri\n\n9) wil: D B1 Wil Y3 Y3\n\n10) nycavri: Discover G1 Nycavri Y1 Deacon\n\twil: Good time for homeworlds!  Staying safe?\n\n11) wil: S G3 Wil\nB B1 Y3\nB B2 Y3\nB B3 Wil\n\n12) nycavri: Build Y2 Nycavri\n\n13) wil: T B3 G3 Wil\n\n14) nycavri: Trade Y2 R2 Nycavri\n\n15) wil: B B3 Wil\n\n16) nycavri: Build Y2 Nycavri\n\n17) wil: T B3 Y3 Wil\n\n18) nycavri: Move Y2 Nycavri Deacon\n\n19) wil: T B2 R2 Y3\n\n20) nycavri: Discover Y2 Deacon G3 May\n\n21) wil: M Y3 Wil May\n\n22) nycavri: Move R2 Nycavri Deacon\n\n23) wil: D B1 Y3 G1 G1\n\n24) nycavri: Build G1 Nycavri\n\twil: Let&#39;s go visit the new neighbors.  They look like us, must be friendly!\n\n25) wil: S G3 Wil\nB B2 G1\nB B3 Y3\nB B3 Wil\n\n26) nycavri: Build G2 Deacon\n\twil: Well I&#39;m not visiting there!\n\n27) wil: T B3 R3 Wil\n\n28) nycavri: Build G2 Nycavri\n\n29) wil: B B3 G1\n\n30) nycavri: Trade G2 Y2 Nycavri\n\n31) wil: M B3 Y3 Deacon\n\n32) nycavri: Sacrifice Y2 May\nDiscover G2 Deacon B3 Mercury\nMove R2 Deacon Mercury\n\n33) wil: M B3 Deacon Mercury\n\n34) nycavri: Trade G2 R2 Mercury\n\n\n35) wil: S R2 Y3\nA R2 Mercury\nA R2 Mercury\n\n36) nycavri: Trade G1 R1 Nycavri\n\n37) wil: T B3 G3 G1\n\n38) nycavri: Build R1 Nycavri\n\n39) wil: Trade R2 Y2 Mercury\n\n40) nycavri: Sacrifice Y2 Nycavri\nMove R1 Nycavri Deacon\nMove R1 Nycavri Deacon\n\n41) wil: Trade B2 Y2 G1\n\n42) nycavri: Discover Y1 Nycavri G1 Taylor\n\n43) wil: B Y2 G1\n\n44) nycavri: Build G2 Nycavri\n\n45) wil: Move B3 Mercury Deacon\n\n46) nycavri: Trade G2 B2 Nycavri\n\n47) wil: S Y2 G1\nM G3 G1 Nycavri\nM B3 Deacon Nycavri\n\n48) nycavri: Sacrifice R1 Deacon\nAttack G3 Nycavri\n\n49) wil: S R3 Wil\nA G3 Nycavri\nA G3 Nycavri\nA B2 Nycavri\n\n\tnycavri: Thanks for the game.\n\twil: I try to play towards monopolies...\n\nHomeworlds Online (SDG# 36351)\nStarted: 2020.4.23, Ended: 2020.5.18\nParticipants: Jerome (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Jerome: Homeworld R3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Jerome: Build G1 Jerome\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Jerome: Build G1 Jerome\n\n7) Trydnt: Build B1 Trydnt\n\n8) Jerome: Trade G1 Y1 Jerome\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) Jerome: Build Y1 Jerome\n\n11) Trydnt: Build B2 G3\n\n12) Jerome: Build Y2 Jerome\n\n13) Trydnt: Trade B2 Y2 G3\n\n14) Jerome: Discover Y1 Jerome G2 G2\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild B2 G3\nBuild B2 G3\nBuild B3 Trydnt\n\n16) Jerome: Sacrifice G3 Jerome\nBuild Y2 G2\nBuild Y3 Jerome\nBuild G1 Jerome\n\n17) Trydnt: Build Y3 G3\n\n18) Jerome: Trade Y3 G3 Jerome\n\n19) Trydnt: Discover Y2 G3 G2 Gee2\n\n20) Jerome: Discover Y1 G2 G3 Gg3\n\n21) Trydnt: Build Y3 Gee2\n\n22) Jerome: Build Y3 G2\n\n23) Trydnt: Move B2 G3 Gee2\n\n24) Jerome: Trade G1 R1 Jerome\n\n25) Trydnt: Trade B2 R2 G3\n\n26) Jerome: Move R1 Jerome G2\n\n27) Trydnt: Build B2 Gee2\n\n28) Jerome: Sacrifice Y2 G2\nMove Y1 Jerome Gee2\nMove Y2 Jerome Gee2\nCatastrophe Gee2 Y\n\n29) Trydnt: Build B3 G3\n\n30) Jerome: Build G1 Jerome\n\n31) Trydnt: Build B3 Gee2\n\n\nHomeworlds Online (SDG# 36180)\nVariants: &quot;Unrated&quot;\nStarted: 2020.4.23, Ended: 2020.5.5\nParticipants: amoscai (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) amoscai: Homeworld B1 Y2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) amoscai: Build G1 Amoscai\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) amoscai: Trade G1 Y1 Amoscai\n\n7) Trydnt: Build G1 Trydnt\n\n8) amoscai: Build G1 Amoscai\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) amoscai: Trade G1 R1 Amoscai\n\n11) Trydnt: Trade G1 R1 Trydnt\n\n12) amoscai: Move Y1 Amoscai G3\n\n13) Trydnt: Build Y2 G3\n\n14) amoscai: Build Y2 G3\nCatastrophe G3 Yellow\n\n15) Trydnt: Build G1 Trydnt\n\n16) amoscai: Build G1 Amoscai\n\n17) Trydnt: Trade G1 Y1 Trydnt\n\n18) amoscai: Build R1 Amoscai\n\n19) Trydnt: Build R2 Trydnt\n\n20) amoscai: Build R2 Amoscai\n\n21) Trydnt: Discover R2 Trydnt G3 G3\n\n22) amoscai: Trade R1 Y1 Amoscai\n\n23) Trydnt: Build Y2 Trydnt\n\n24) amoscai: Discover Y1 Amoscai B3 B3\n\n25) Trydnt: Move Y2 Trydnt B3\n\n26) amoscai: Sacrifice G1 Amoscai\nBuild Y2 B3\n\n27) Trydnt: Sacrifice R2 G3\nAttack Y1 B3\nAttack Y2 B3\n\n28) amoscai: Build G1 Amoscai\n\n29) Trydnt: Build Y3 Trydnt\n\n30) amoscai: Trade G1 B1 Amoscai\n\n31) Trydnt: Trade Y3 B3 Trydnt\n\n32) amoscai: Build G1 Amoscai\n\n33) Trydnt: Build Y3 Trydnt\n\n34) amoscai: Move R1 Amoscai B3\n\n35) Trydnt: Sacrifice R1 Trydnt\nAttack R1 B3\n\n36) amoscai: Discover B1 Amoscai Y3 Y3\n\n37) Trydnt: Trade Y3 R3 Trydnt\n\n38) amoscai: Sacrifice G1 Amoscai\nBuild B1 Y3\n\n39) Trydnt: Discover B3 Trydnt G3 G3\n\n40) amoscai: Build G1 Amoscai\n\n41) Trydnt: Build B2 G3\n\n42) amoscai: Discover B1 Y3 G1 G1\n\n43) Trydnt: Build Y3 Trydnt\n\n44) amoscai: Build B2 G1\n\n45) Trydnt: Build B3 G3\n\n46) amoscai: Build R1 Amoscai\n\n47) Trydnt: Discover Y1 Trydnt R3 R3\n\n48) amoscai: Move R2 Amoscai Y3\n\n49) Trydnt: Move Y1 R3 Amoscai\n\n50) amoscai: Attack Y1 Amoscai\n\n51) Trydnt: Sacrifice Y2 B3\nMove Y2 B3 Amoscai\nMove Y1 B3 Amoscai\nCatastrophe Amoscai Y\n\n52) amoscai: Trade G1 Y1 Amoscai\n\n53) Trydnt: Sacrifice Y3 Trydnt\nMove B2 G3 Amoscai\nMove B3 G3 Amoscai\nMove B3 G3 Amoscai\nCatastrophe Amoscai B\n\n\tTrydnt: gg\n\nHomeworlds Online (SDG# 36156)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.4.24, Ended: 2020.4.27\nParticipants: Domakiller (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\tDomakiller: Sorry, this is too complocate for me. I just want to check, how this online Homeworlds playing works.\n\tDomakiller: I leave.\n\twil: H r3 b1 g3 makes a homeworlds\r\nB g1 domakilller...builds a new small ship \r\nD g1 domakiller b2 Orion. Discovers a new star named Orion and your small green ship moves to a medium blue \n\twil: Come back if you wish \n\n\nHomeworlds Online (SDG# 36302)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.25, Ended: 2020.5.6\nParticipants: amoscai (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) amoscai: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\twil: Short uni!\n\n4) amoscai: Build G1 Amoscai\n\n5) wil: T G1 R1 Wil\n\n6) amoscai: Build G1 Amoscai\n\n7) wil: B R1 Wil\n\n8) amoscai: Trade G1 R1 Amoscai\n\n9) wil: B R2 Wil\n\n10) amoscai: Build R2 Amoscai\n\n11) wil: T R2 Y2 Wil\n\n12) amoscai: Trade R2 Y2 Amoscai\n\n13) wil: B R2 Wil\n\n14) amoscai: Build R2 Amoscai\n\n15) wil: T R2 G2 Wil\n\n16) amoscai: Build Y1 Amoscai\n\n17) wil: D Y2 Wil G3 G3\n\n18) amoscai: Move Y1 Amoscai G3\n\n19) wil: S R1 Wil\nA Y1 G3\n\n20) amoscai: Trade G1 B1 Amoscai\n\n21) wil: B R1 Wil\n\n22) amoscai: Move R2 Amoscai G3\n\n23) wil: S R1 Wil\nA R2 G3\n\n24) amoscai: Build R1 Amoscai\n\twil: I&#39;ll take that trade\n\n25) wil: B R2 Wil\n\tamoscai: ah yes. forgot about the ability to sacrifice your home reds.\n\n26) amoscai: Build G1 Amoscai\n\twil: Yes you can sacrifice anything from anywhere and it transfers the problem power across the galaxy \n\n27) wil: D G2 Wil Y3 Y3\n\n28) amoscai: Move R1 Amoscai Y3\n\n29) wil: Move R2 Wil Y3\n\n30) amoscai: Sacrifice G1 Amoscai\nBuild R2 Y3\n\n31) wil: S G3 Wil\nB R3 Wil\nB R3 G3\nB R3 Y3\nC Y3 R\n\n32) amoscai: Build R1 Amoscai\n\n33) wil: T R3 G3 Wil\n\n34) amoscai: Move R1 Amoscai G3\n\n35) wil: D R3 G3 G2 G2\n\n36) amoscai: Attack Y1 G3\n\n37) wil: S R2 G3\nA R1 G3\nA Y1 G3\n\n38) amoscai: Build R2 Amoscai\n\n39) wil: Sacrifice G3 Wil\nBuild R2 G3\nBuild R2 G2\nBuild R3 Wil\n\n40) amoscai: Move R2 Amoscai G3\n\n41) wil: B R3 G2\n\n42) amoscai: Build Y1 Amoscai\n\n43) wil: Move Y1 G3 Amoscai\nCatastrophe Amoscai Y\n\n44) amoscai: Attack R2 G3\n\n45) wil: S R2 G2\nA R2 G3\nA R2 G3\n\n46) amoscai: Build R2 Amoscai\n\n47) wil: T R3 Y3 Wil\n\n48) amoscai: Trade R2 Y2 Amoscai\n\n49) wil: Discover R1 G3 B1 B1\n\n50) amoscai: Build R2 Amoscai\n\n51) wil: B R3 G3\n\n52) amoscai: Move R1 Amoscai G3\nCatastrophe G3 Red\n\n53) wil: Build Y1 G3\n\n54) amoscai: Build R1 Amoscai\n\n55) wil: Sacrifice Y1 G3\nMove R3 G2 G3\n\n56) amoscai: Move R2 Amoscai Y3\n\n57) wil: S R1 B1\nA R2 Y3\n\n58) amoscai: Build Y1 Amoscai\n\n59) wil: B R1 G3\n\n60) amoscai: Build R2 Amoscai\n\n61) wil: Sacrifice G2 Y3\nBuild R2 Y3\nBuild R3 Wil\n\n62) amoscai: Sacrifice Y2 Amoscai\nMove R1 Amoscai G3\nMove R2 Amoscai G3\nCatastrophe G3 Red\n\n63) wil: Sacrifice Y2 G3\nMove R3 G2 Y3\nMove R3 Y3 Amoscai\n\n\twil: You left yourself without a gun...\n\tamoscai: it was going to happen. heh.\n\tamoscai: gg\n\twil: gg\n\nHomeworlds Online (SDG# 36358)\nVariants: &quot;Hard time&quot;\nStarted: 2020.4.25, Ended: 2020.5.10\nParticipants: deanthebean (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) deanthebean: Homeworld B1 Y2 G3\n\tdeanthebean: Thank you for accepting the challenge. Have fun!\n\n3) wil: B G1 Wil\n\twil: Another small universe, third one this month \n\n4) deanthebean: Build G1 Deanthebean\n\n5) wil: T G1 B1 Wil\n\tdeanthebean: Yup. I don&#39;t know whether the mirroring strategy is a good one. We&#39;ll see. \n\twil: Instafreeze issues..\n\n6) deanthebean: Trade G1 R1 Deanthebean\n\n7) wil: B B2 Wil\n\n8) deanthebean: Build G1 Deanthebean\n\n9) wil: D B2 Wil G3 G3\n\n10) deanthebean: Build G1 Deanthebean\n\n11) wil: B B2 G3\n\n12) deanthebean: Discover G1 Deanthebean Y3 Y3\n\n13) wil: T B2 R2 G3\n\n14) deanthebean: Build G1 Y3\n\n15) wil: B G2 Wil\n\n16) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Y3\nBuild G2 Deanthebean\nBuild G3 Deanthebean\n\n17) wil: S G3 Wil\nB G3 Wil\nB B2 G3\nB B2 Wil\n\n18) deanthebean: Move G2 Y3 Wil\n\n19) wil: Trade G2 R2 Wil\n\n20) deanthebean: Sacrifice R1 Deanthebean\nAttack R2 Wil\n\n21) wil: S R2 G3\nA R2 Wil\nA G2 Wil\n\n22) deanthebean: Move G1 Y3 Wil\n\n23) wil: T G3 R3 Wil\n\n24) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Wil\nBuild G3 Deanthebean\nBuild G3 Y3\n\n25) wil: A G2 Wil\n\n26) deanthebean: Move G1 Y3 Wil\nCatastrophe Wil G\n\n27) wil: B B3 G3\n\n28) deanthebean: Trade G1 R1 Deanthebean\n\n29) wil: T B3 Y3 G3\n\n30) deanthebean: Build R1 Deanthebean\n\n31) wil: Build B3 G3\n\n32) deanthebean: Build G1 Deanthebean\n\n33) wil: D B3 G3 G1 G1\n\n34) deanthebean: Trade G2 Y2 Deanthebean\n\n35) wil: B B3 G1\n\n36) deanthebean: Discover Y2 Deanthebean B3 B3\n\n37) wil: T B3 R3 G1\n\tdeanthebean: This has felt pretty hopeless ever since I allowed myself to be shut out of blue. \n\twil: Yup, Instagrfreeze, just a matter of time\n\n\twil: Once I have a queen factory it is milk it, till there aren&#39;t any more.\n\twil: You hope for a mistake (which happens), resign and challenge me anytime, or continue to take the lumps si it never occurs agaia!\n\tdeanthebean: I think I might as well resign. Well played and thanks for the game!\n\nHomeworlds Online (SDG# 36305)\nStarted: 2020.5.1, Ended: 2020.5.11\nParticipants: Robizzlefoshizzle (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 Y2 G3\n\n2) Robizzlefoshizzle: H G3 B1 Y3\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) Robizzlefoshizzle: B Y1 Robizzlefoshizzle\n\n5) MobyNostromo: T G1 B1 Mobynostromo\n\n6) Robizzlefoshizzle: B Y1 Robizzlefoshizzle\n\n7) MobyNostromo: B B2 Mobynostromo\n\n8) Robizzlefoshizzle: T Y1 G1 Robizzlefoshizzle\n\n9) MobyNostromo: D B2 Mobynostromo G3 Vital\n\n10) Robizzlefoshizzle: B G1 Robizzlefoshizzle\n\n11) MobyNostromo: B B2 Vital\n\n12) Robizzlefoshizzle: D G1 Robizzlefoshizzle Y2 Dog\n\n13) MobyNostromo: T B1 Y1 Mobynostromo\n\n14) Robizzlefoshizzle: B Y1 Robizzlefoshizzle\n\n15) MobyNostromo: T B2 R2 Vital\n\n16) Robizzlefoshizzle: M Y1 Robizzlefoshizzle Dog\n\n17) MobyNostromo: B R1 Vital\n\n18) Robizzlefoshizzle: B Y2 Dog\n\n19) MobyNostromo: S Y1 Mobynostromo\nM R2 Vital Dog\n\n20) Robizzlefoshizzle: S Y2 Dog\nM G1 Dog Robizzlefoshizzle\nM Y1 Dog Robizzlefoshizzle\n\n21) MobyNostromo: M R2 Dog Robizzlefoshizzle\n\n22) Robizzlefoshizzle: S Y1 Robizzlefoshizzle\nD G1 Robizzlefoshizzle B2 Cat\n\n23) MobyNostromo: T R2 Y2 Robizzlefoshizzle\n\n24) Robizzlefoshizzle: S Y1 Robizzlefoshizzle\nD G1 Cat R3 Mouse\n\n25) MobyNostromo: B Y1 Robizzlefoshizzle\n\n26) Robizzlefoshizzle: B G1 Mouse\n\n27) MobyNostromo: B Y1 Robizzlefoshizzle\nC Robizzlefoshizzle Y\n\n28) Robizzlefoshizzle: Trade G1 Y1 Robizzlefoshizzle\n\n29) MobyNostromo: B G1 Mobynostromo\n\n30) Robizzlefoshizzle: B Y1 Robizzlefoshizzle\n\n31) MobyNostromo: T G1 R1 Mobynostromo\n\n32) Robizzlefoshizzle: T Y1 R1 Robizzlefoshizzle\n\n33) MobyNostromo: B B1 Vital\n\n34) Robizzlefoshizzle: B R2 Robizzlefoshizzle\n\n35) MobyNostromo: T B1 Y1 Vital\n\n36) Robizzlefoshizzle: T R1 B1 Robizzlefoshizzle\n\n37) MobyNostromo: B B2 Vital\n\n38) Robizzlefoshizzle: D B1 Robizzlefoshizzle G2 Cheese\n\n39) MobyNostromo: D B2 Vital G2 Canopy\n\n40) Robizzlefoshizzle: B Y1 Robizzlefoshizzle\n\n41) MobyNostromo: B Y2 Vital\n\n42) Robizzlefoshizzle: M Y1 Robizzlefoshizzle Cheese\n\n43) MobyNostromo: M Y1 Vital Canopy\n\n44) Robizzlefoshizzle: B Y2 Cheese\n\n45) MobyNostromo: B Y3 Canopy\n\n46) Robizzlefoshizzle: S Y2 Cheese\nM G1 Mouse Mobynostromo\nM G1 Mouse Mobynostromo\n\n47) MobyNostromo: T G3 R3 Mobynostromo\n\n\tRobizzlefoshizzle: GG MobyNostromo. I learned a lot.\n\tMobyNostromo: Awesome! This is a complex game, and I&#39;m learning myself.\n\nHomeworlds Online (SDG# 36391)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.4, Ended: 2020.6.29\nParticipants: Trydnt (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\tSimon: Have fun :)\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) Simon: Build G1 Simon\n\n4) Trydnt: Build G1 Trydnt\n\n5) Simon: Trade G1 R1 Simon\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Simon: Build R2 Simon\n\tTrydnt: I always do :) good luck\n\tSimon: You too!\n\n8) Trydnt: Build R2 Trydnt\n\n9) Simon: Trade R2 Y2 Simon\n\n10) Trydnt: Trade R2 Y2 Trydnt\n\n11) Simon: Build R2 Simon\n\n12) Trydnt: Build R2 Trydnt\n\n13) Simon: Discover R1 Simon G2 G2\n\n14) Trydnt: Discover R1 Trydnt G1 G1\n\n15) Simon: Discover R2 Simon G2 G2b\n\n16) Trydnt: Move Y2 Trydnt G1\n\n17) Simon: Build Y1 Simon\n\n18) Trydnt: Build Y1 G1\n\n19) Simon: Move Y2 Simon G2\n\n20) Trydnt: Discover Y1 G1 G2 G2c\n\n21) Simon: Build G1 Simon\n\n22) Trydnt: Build Y1 G1\n\n23) Simon: Discover G1 Simon Y2 Y2\n\n24) Trydnt: Build Y3 G2c\n\n25) Simon: Build Y3 G2\n\n26) Trydnt: Move Y2 G1 G2\n\n27) Simon: Move Y2 G2 G1\n\n28) Trydnt: Sacrifice Y1 G1\nMove Y3 G2c G1\n\n29) Simon: Attack Y2 G2\n\n30) Trydnt: Attack Y2 G1\n\n31) Simon: Build Y1 Simon\n\n32) Trydnt: Discover Y2 G1 B2 B2\n\n33) Simon: Discover Y2 G2 B1 B1\n\n34) Trydnt: Discover Y1 G2c G3 G3\n\n35) Simon: Sacrifice G1 Y2\nBuild Y2 B1\n\n36) Trydnt: Build G1 Trydnt\n\n37) Simon: Build G1 Simon\n\n38) Trydnt: Trade G1 B1 Trydnt\n\n39) Simon: Trade G1 B1 Simon\n\n40) Trydnt: Move B1 Trydnt G1\n\n41) Simon: Move B1 Simon G2\n\n42) Trydnt: Build G1 Trydnt\n\n43) Simon: Build G1 Simon\n\n44) Trydnt: Discover R1 G1 G2 G2c\n\n45) Simon: Move Y1 Simon G2b\n\n46) Trydnt: Move Y2 B2 B1\n\n47) Simon: Build B2 G2\n\n48) Trydnt: Move Y1 G3 B1\nCatastrophe B1 Y\n\n49) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 Simon\nBuild Y1 G2\n\n50) Trydnt: Sacrifice Y3 G1\nMove G1 Trydnt G1\nMove G1 G1 G2\nMove G1 G2 Simon\nCatastrophe Simon G\n\n51) Simon: Move Y3 G2 Simon\n\n52) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G2c\nBuild R3 Trydnt\nBuild B1 G1\n\n53) Simon: Build R3 G2\n\n54) Trydnt: Trade R2 Y2 Trydnt\n\n55) Simon: Build Y2 G2b\n\n56) Trydnt: Discover Y2 Trydnt G1 Gee1\n\n57) Simon: Move R3 G2 G1\n\n58) Trydnt: Sacrifice Y2 Gee1\nMove B1 G1 G2\nMove B1 G1 G2\nCatastrophe G2 B\n\n59) Simon: Build R2 G1\n\n60) Trydnt: Trade R3 G3 Trydnt\n\n61) Simon: Build R3 G2\n\n62) Trydnt: Build G1 Trydnt\n\n63) Simon: Build R3 G2b\n\tTrydnt: I may resign soon. This too a very nasty turn for me\n\tSimon: Yeah. The extra g3 that I built at home, I felt it was a wash, but it turned out so strong. Many forced moves afterwards.\n\n64) Trydnt: Build G1 Trydnt\n\n65) Simon: Discover R3 G2b Y3 Y3\n\n66) Trydnt: Discover G1 Trydnt B1 B1\n\n67) Simon: Move R3 G2 B1\n\n68) Trydnt: Build G3 Trydnt\n\n69) Simon: Attack G1 B1\n\n70) Trydnt: Trade G1 B1 Trydnt\n\n71) Simon: Discover Y1 G2b G1 G1b\n\n72) Trydnt: Move G3 Trydnt G1b\n\n73) Simon: Build G3 B1\n\n74) Trydnt: Sacrifice R1 G2c\nAttack Y1 G1b\n\n75) Simon: Sacrifice Y3 Simon\nMove R3 G1 Trydnt\nMove R3 B1 Trydnt\nMove G3 B1 Trydnt\n\n76) Trydnt: Sacrifice R2 G2c\nAttack R3 Trydnt\nAttack R3 Trydnt\n\n77) Simon: Sacrifice R3 Y3\nAttack R3 Trydnt\nAttack R3 Trydnt\nAttack G3 Trydnt\n\n78) Trydnt: Move G3 G1b Trydnt\n\n79) Simon: Sacrifice R2 G1\nAttack G3 Trydnt\nAttack B1 Trydnt\n\n\nHomeworlds Online (SDG# 36182)\nStarted: 2020.5.5, Ended: 2020.7.1\nParticipants: thecolorbrown (S), eliscinsky (W), Draw5PlayAll (N), pould_ (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) eliscinsky: H B1 R2 G3\n\tDraw5PlayAll: Announcer: Welcome everyone to another EXCITING GAME of the Homeworlds Four Captain Madness! I am your anonymous host and today we are set for a really interesting game. North seat has started us off with a rather basic homeworld setup.\n\teliscinsky: Now what?\n\tDraw5PlayAll: ...\n\teliscinsky: Based on pould_&#39;s profile, &quot;he&quot; was online in late March, but disappeared around April 5th. So now what? Do we eliminate pould_, and move on? Or end the game? \n\tDraw5PlayAll: I say we end the game.\n\teliscinsky: Works for me. What say you, thecolorbrown?\n\teliscinsky: ... and I guess thecolorbrown is speechless. LOL \r\n\r\nGuess it&#39;s time to terminate. \n\n3) Draw5PlayAll: Build G1 Draw5playall\n\teliscinsky: Draw5PlayAll ... umm ... now what?  LOL\n\n4) eliscinsky: Build G1 Eliscinsky\n\tDraw5PlayAll: I mean, we CAN play a game with 5 of each piece... it might be interested... or I can just resign.\n\teliscinsky: WTF, Let&#39;s give it a go. LOL!\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\teliscinsky: At the very least the board will be interesting.\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) eliscinsky: B G1 Eliscinsky\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) eliscinsky: T G1 R1 Eliscinsky\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) eliscinsky: B G1 Eliscinsky\n\n13) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n14) eliscinsky: Trade G1 B1 Eliscinsky\n\n15) Draw5PlayAll: Build G1 Draw5playall\n\n16) eliscinsky: Build G1 Eliscinsky\n\n17) Draw5PlayAll: Discover G1 Draw5playall B2 Taxation\n\n18) eliscinsky: Discover G1 Eliscinsky B3 Representation\n\n19) Draw5PlayAll: Discover B1 Draw5playall G2 Dreams\n\n20) eliscinsky: D B1 Eliscinsky G3 Hopes\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\teliscinsky: Can&#39;t have one without the other. ;)\n\n22) eliscinsky: B Y1 Eliscinsky\n\n23) Draw5PlayAll: Move Y1 Draw5playall Dreams\n\n24) eliscinsky: Move Y1 Eliscinsky Hopes\n\n25) Draw5PlayAll: Build G1 Taxation\n\n26) eliscinsky: Build G1 Representation\n\n27) Draw5PlayAll: Move R1 Draw5playall Taxation\n\n28) eliscinsky: M R1 Eliscinsky Representation\n\n29) Draw5PlayAll: Build B1 Dreams\n\teliscinsky: So far I like the moves you&#39;ve shown me.  That&#39;s why I copied them.  :D  LOL\n\n30) eliscinsky: Build R1 Representation\n\n31) Draw5PlayAll: Discover B1 Dreams G1 Peace\n\n32) eliscinsky: Build G2 Eliscinsky\n\n33) Draw5PlayAll: Build G2 Draw5playall\n\n34) eliscinsky: Trade G2 Y2 Eliscinsky\n\n35) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n36) eliscinsky: Build G2 Eliscinsky\n\n37) Draw5PlayAll: Move Y2 Draw5playall Taxation\n\n38) eliscinsky: Sacrifice Y2 Eliscinsky\nDiscover G1 Representation Y2 Love\nMove R1 Representation Love\n\n39) Draw5PlayAll: Build G2 Draw5playall\n\n40) eliscinsky: Build G2 Representation\n\n41) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n42) eliscinsky: Build G2 Love\n\n43) Draw5PlayAll: Build G2 Draw5playall\n\n44) eliscinsky: Trade G2 Y2 Representation\n\n45) Draw5PlayAll: Discover G1 Taxation Y3 Inflation\n\n46) eliscinsky: Sacrifice Y2 Representation\nMove G1 Love Draw5playall\nMove G2 Love Draw5playall\nCatastrophe Draw5playall G\n\n47) Draw5PlayAll: Build G1 Taxation\n\n48) eliscinsky: Trade G2 Y2 Eliscinsky\n\tDraw5PlayAll: There are no causal relations between the name of those two stars.\n\teliscinsky: LOL\n\n49) Draw5PlayAll: Move G1 Taxation Draw5playall\n\n50) eliscinsky: Build G2 Representation\n\n51) Draw5PlayAll: Build G2 Inflation\n\n52) eliscinsky: Sacrifice G1 Representation\nBuild R1 Love\n\n53) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n54) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R1 Love Draw5playall\nMove R1 Love Draw5playall\n\n55) Draw5PlayAll: Build R2 Taxation\n\n56) eliscinsky: Sacrifice G2 Representation\nBuild R2 Representation\nBuild R2 Draw5playall\nCatastrophe Draw5playall R\n\tDraw5PlayAll: By the way, &quot;Love&quot; should have been green.\n\n57) Draw5PlayAll: Move R2 Taxation Hopes\n\n58) eliscinsky: Sacrifice Y1 Hopes\nDiscover B1 Hopes G1 Recession\n\tDraw5PlayAll: I guess that&#39;s moot now.\n\n59) Draw5PlayAll: Move Y2 Taxation Recession\n\teliscinsky: Well... I had other plans. Just hope I can finish up.  This is usually where I stumble, trip, and fall down (aka lose).\n\tDraw5PlayAll: I&#39;ll see to it that you do all those things.\n\n60) eliscinsky: Build Y1 Eliscinsky\n\n61) Draw5PlayAll: Sacrifice R1 Taxation\nAttack B1W Recession\n\tDraw5PlayAll: Of course, the 1.667x economy is really screwing me up.\n\n62) eliscinsky: Move Y1 Eliscinsky Representation\n\n63) Draw5PlayAll: Move B1 Dreams Inflation\n\n64) eliscinsky: Move R2 Representation Taxation\n\n65) Draw5PlayAll: Sacrifice G1 Taxation\nBuild B1 Inflation\n\n66) eliscinsky: Trade R2 G2 Taxation\n\n67) Draw5PlayAll: Build R1 Hopes\n\n68) eliscinsky: B G1 Taxation\n\n69) Draw5PlayAll: Build B2 Peace\n\n70) eliscinsky: T G1 R1 Taxation\n\n71) Draw5PlayAll: Trade B2 R2 Peace\n\n72) eliscinsky: Build G1 Taxation\n\n73) Draw5PlayAll: Move G1 Inflation Eliscinsky\n\n74) eliscinsky: S G2 Taxation\nB G2 Taxation\nB Y1 Eliscinsky\n\n75) Draw5PlayAll: Sacrifice G2 Inflation\nBuild G2 Eliscinsky\nBuild G2 Eliscinsky\nCatastrophe Eliscinsky Green\n\n76) eliscinsky: T Y1 G1 Eliscinsky\n\n77) Draw5PlayAll: Sacrifice Y1 Dreams\nMove R2 Hopes Eliscinsky\n\n78) eliscinsky: Move R1 Representation Eliscinsky\n\n79) Draw5PlayAll: Sacrifice R2 Peace\nAttack Y1W Eliscinsky\nAttack G1W Eliscinsky\n\teliscinsky: Wow, nicely done. Not sure what I can do to get out of this one. \n\n80) eliscinsky: A G1N Eliscinsky\n\teliscinsky: Just don&#39;t think I&#39;m going to pull this off. Excellent game all the same. \n\n81) Draw5PlayAll: Sacrifice R2 Eliscinsky\nAttack G1W Eliscinsky\nAttack R1W Eliscinsky\n\tDraw5PlayAll: I was worried you would notice what I was up to and stop it somehow.\n\teliscinsky: It&#39;s my flaw, as in chess, I can&#39;t seem to see past the 2nd round of moves. Ah well, congrats! \n\n\tDraw5PlayAll: Good game. I&#39;m glad we played it.\n\teliscinsky: Yes, GG. Same here ... glad we played.\n\nHomeworlds Online (SDG# 36392)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.5, Ended: 2020.5.29\nParticipants: Babamots (S), amoscai (N)\nWinner: amoscai\n\n1) amoscai: Homeworld B1 Y2 G3\n\tamoscai: hi\n\tamoscai: I generally see people start with yellow and blue home and a g3. \n\tBabamots: Hi! Good to meet you! Did you take my &quot;learning game&quot; challenge? If so, how much advice would you like? I can be pretty talkative, but I don&#39;t want to give too much away if you only want occasional hints.\r\n\r\nYes, a blue-yellow home with green ship is a popular start. I prefer a blue-red home with a green ship most of the time, but I just lost a game to a blue-yellow home, so what do I know? :-D\r\n\r\nLooks like you&#39;ve played about a dozen HW games here on SDG. Have you played some games elsewhere, or is that your full experience?\n\tamoscai: this is my full experience. heh. need to get more plays because I feel pretty &#39;beginner&#39;. Yes. I am open to however much you think is useful for both of us.\n\tBabamots: Just FYI, the players who have &quot;standing challenges&quot; on SDG are usually pretty good. I see you just played wil and Trydnt, who are both very strong players.\r\n\r\nIf you&#39;re having a hard time finding players who match your skill level, you can try this page:\r\n\r\nhttp://superdupergames.org/main.html?page=listusers\r\n\r\nThe page loads super slowly, but it has a score for each HW player as well as when they were last on the site (so you can find someone who&#39;s active).\n\tamoscai: thanks for that! sorry I didn&#39;t log in for so long. I usually only check when I get the email notification that it&#39;s my turn.\n\n2) Babamots: Homeworld G3 B1 B3 *\n\n3) amoscai: Build G1 Amoscai\n\tBabamots: So you know, I&#39;m trying to &quot;instafreeze&quot; you out of blues. Before too long, you&#39;ll probably need to trade your g3 for b3 to prevent me from running away with the whole blue stash, larges and all.\r\n\r\nBy chance, we actually chose the exact same homeworld setups that I used for my tactics guide on instafreezes here:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/tactics.html#instafreeze\n\tamoscai: wow. fantastic. thanks! \n\n4) Babamots: Build B1 Babamots\n\n5) amoscai: Build G1 Amoscai\n\n6) Babamots: Trade B3 Y3 Babamots\n\n7) amoscai: Discover G1 Amoscai B3 B3\n\n8) Babamots: Build B2 Babamots\n\n9) amoscai: Build G1 B3\n\n10) Babamots: Discover B1 Babamots B2 Bolarus\n\n11) amoscai: Build G2 Amoscai\n\n12) Babamots: Build B2 Babamots\n\n13) amoscai: Trade G3 B3 Amoscai\n\n14) Babamots: Discover B2 Babamots Y2 Iconia\n\n15) amoscai: Trade G2 Y2 Amoscai\n\tBabamots: You should notice that you&#39;re in what I call a blue soft-freeze. You have a blue ship, but if you build another one, there&#39;s a danger of me overpopulating your home with blue. That wouldn&#39;t be the end of the world since it would cost me my only large ship as well, but make sure you&#39;re prepared for that if you build a b3.\n\tamoscai: yeah. I thought about that (: thanks for pointing it out. soft-freeze. I like that term.\n\n16) Babamots: Build B3 Babamots\n\n17) amoscai: Build G2 B3\n\tBabamots: I also like that &quot;soft-freeze&quot; reminds me of soft-serve ice cream or a Slurpee.\n\n18) Babamots: Discover B2 Iconia G3 Risa\n\n19) amoscai: Build G2 Amoscai\n\tBabamots: I&#39;m considering destroying your blue star and b3 ship on my next turn. That would connect our homes, and since I would be the only one with a large, I&#39;d probably be able to win pretty soon after that.\r\n\r\nYour best defense is probably to trade your b3 for another color, but that does give me a chance to build another b3 ships. You could also move your b3 out of your home, but that leaves your home without a defending large. I&#39;m afraid you&#39;ll have to pick between some not-so-great choices.\n\n20) Babamots: Sacrifice Y3 Babamots\nMove B1 Bolarus Risa\nMove B1 Risa Amoscai\nMove B2 Risa Amoscai\nCatastrophe Amoscai B\n\tamoscai: yeah. I did consider that. one or two steps earlier in fact. but I&#39;ve not played enough to know how to properly counter and I&#39;m kinda not willing enough to devote the time to map out all the possibilities. hence, I&#39;m going to probably see what happens after our planets are connected.\n\tBabamots: That&#39;s fine. I just didn&#39;t want you to be blindsided. :-)\n\n21) amoscai: Move G1 Amoscai Babamots\n\n22) Babamots: Trade B2 Y2 Babamots\n\n23) amoscai: Build G2 Babamots\n\n24) Babamots: Trade B3 R3 Babamots\n\n25) amoscai: Sacrifice G2 B3\nBuild G2 Babamots\nBuild G3 Amoscai\nCatastrophe Babamots Green\n\tBabamots: You&#39;ve found a way to make this exciting. :-)\n\n26) Babamots: Discover Y2 Babamots G3 Pakled\n\tamoscai: I thought about it (:\r\nI still think I have some issues to overcome though\n\n27) amoscai: Trade G1 B1 B3\n\tBabamots: Oh jeez, I&#39;m in more of a bind than I expected. If I move in now, you move your yellow to my home and double build.\n\n28) Babamots: Build Y1 Pakled\n\n29) amoscai: Build B1 B3\n\n30) Babamots: Discover Y1 Pakled G1 Betazed\n\n31) amoscai: Sacrifice Y2 Amoscai\nMove B1 B3 Babamots\nMove B1 B3 Babamots\n\n32) Babamots: Pass\n\n33) amoscai: Sacrifice G1 B3\nBuild B2 Babamots\nCatastrophe Babamots Blue\n\tBabamots: Not foreseeing that opportunity you would have had to move in with your yellow and double build has cost me. I wish now I&#39;d kept my mouth shut and just hoped you didn&#39;t see it. :-D\n\n\tBabamots: Welp, ya got me. Let that be a lesson to both of us about spending too much for only one star. GG.\n\tamoscai: thanks for all the helpful tips!\n\nHomeworlds Online (SDG# 36307)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.6, Ended: 2020.5.8\nParticipants: StormCrow (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Hi StormCrow! Looks like you&#39;re new to SDG. Is this your first Homeworlds game?\n\n2) StormCrow: Homeworld R3 B2 G3\n\tStormCrow: My first homeworlds game on SDG, I&#39;ve played a few times IRL.\n\n3) Babamots: Build G1 Babamots\n\tStormCrow: Familiar with basic strategy, but probably a little stale.\n\n4) StormCrow: Build G1 Stormcrow\n\tBabamots: Let me know if you have any trouble with the controls. The commands for HW are easier to figure out than some other games on SDG, but there are a few quirks. I think you have to put each sacrifice action on a new line, for example.\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) StormCrow: Trade G1 Y1 Stormcrow\n\n7) Babamots: Build G1 Babamots\n\n8) StormCrow: Build G1 Stormcrow\n\n9) Babamots: Trade G1 R1 Babamots\n\n10) StormCrow: Discover G1 Stormcrow B1 Zark\n\n11) Babamots: Build R1 Babamots\n\n12) StormCrow: Build G1 Stormcrow\n\n13) Babamots: Discover R1 Babamots G2 Orion\n\n14) StormCrow: Build G1 Zark\n\n15) Babamots: Build R2 Orion\n\n16) StormCrow: Build G2 Zark\n\n17) Babamots: Move Y1 Babamots Orion\n\n18) StormCrow: Trade G2 R2 Zark\n\n19) Babamots: Discover R1 Orion B1 Andoria\n\n20) StormCrow: Build R2 Zark\n\n21) Babamots: Sacrifice G3 Babamots\nBuild R3 Babamots\nBuild R3 Orion\nBuild Y1 Orion\n\n22) StormCrow: Build G2 Zark\n\tStormCrow: Yea, that R2 build screamed mistake right after I did it.\n\n23) Babamots: Move R3 Orion Zark\n\n24) StormCrow: Sacrifice Y1 Stormcrow\nDiscover R2 Zark Y2 Frobaz\n\n25) Babamots: Sacrifice R1 Babamots\nAttack R2 Zark\n\tBabamots: Yeah, I&#39;m afraid it&#39;s going to cost you.\n\n26) StormCrow: Build G2 Zark\nCatastrophe Zark G\n\n27) Babamots: Trade R3 G3 Zark\n\tStormCrow: At least I can deny you a few ships\n\n28) StormCrow: Trade G1 Y1 Stormcrow\n\n29) Babamots: Build R1 Orion\n\n30) StormCrow: Build Y2 Stormcrow\n\n31) Babamots: Build R3 Zark\n\tBabamots: An old naval tradition.\n\n32) StormCrow: Trade Y2 G2 Stormcrow\n\n33) Babamots: Build Y2 Orion\n\n34) StormCrow: Build Y2 Stormcrow\n\n35) Babamots: Move Y1 Orion Zark\n\n36) StormCrow: Discover Y1 Stormcrow G1 Polaris\n\n37) Babamots: Sacrifice G3 Zark\nBuild Y3 Orion\nBuild Y3 Zark\nBuild Y3 Zark\n\n38) StormCrow: Move Y2 Stormcrow Zark\nCatastrophe Zark Y\n\n39) Babamots: Move Y3 Orion Zark\n\tBabamots: Don&#39;t forget the catastrophe :-)\n\n40) StormCrow: Trade G2 Y2 Stormcrow\n\tStormCrow: Yea, caught it pretty quick\n\n41) Babamots: Move Y2 Orion Andoria\n\n42) StormCrow: Build Y1 Polaris\n\n43) Babamots: Build Y3 Orion\n\n44) StormCrow: Build Y3 Stormcrow\n\n45) Babamots: Discover Y1 Orion B3 Betazed\n\n46) StormCrow: Discover Y1 Polaris B2 Romulus\n\n47) Babamots: Trade R3 G3 Zark\n\n48) StormCrow: Move R2 Frobaz Polaris\n\n49) Babamots: Build R3 Zark\n\n50) StormCrow: Build Y2 Polaris\n\n51) Babamots: Trade R2 B2 Zark\n\n52) StormCrow: Build R2 Polaris\n\n53) Babamots: Build B1 Zark\n\n54) StormCrow: Move R2 Polaris Romulus\n\n55) Babamots: Trade R3 B3 Babamots\n\n56) StormCrow: Build R3 Polaris\n\n57) Babamots: Move R3 Zark Stormcrow\n\n58) StormCrow: Attack R3 Stormcrow\n\n59) Babamots: Sacrifice Y3 Orion\nMove R1 Orion Andoria\nMove R1 Andoria Stormcrow\nMove R1 Andoria Stormcrow\nCatastrophe Stormcrow R\n\n60) StormCrow: Trade R2 G2 Romulus\n\n61) Babamots: Sacrifice Y2 Andoria\nMove B2 Zark Stormcrow\nMove B1 Zark Stormcrow\n\n62) StormCrow: Sacrifice R2 Polaris\nAttack B1 Stormcrow\nAttack B2 Stormcrow\n\tStormCrow: Not that this was a fair fight, considering your experience, but congratulations and thanks for the game :)\n\tStormCrow: Oh, i see you&#39;re not quite to the point where you can crush me.  Although i guess only a move or 2\n\n63) Babamots: Sacrifice Y3 Zark\nMove G3 Zark Orion\nMove G3 Orion Babamots\nMove B3 Babamots Stormcrow\nCatastrophe Stormcrow B\n\tBabamots: Getting crushed by experienced players is the traditional way to get better at Homeworlds :-). I hope you feel you&#39;ve gained some valuable experience.\n\tBabamots: http://superdupergames.org/main.html?page=listusers&amp;sort=homeworlds\r\n\r\nThis page loads super slowly, but it&#39;ll give you a list of SDG players in order of their Homeworlds score as well as how long it&#39;s been since they were on the site. If you&#39;d like to pick an *active* opponent with a particular skill level, this is a good place to look.\n\n\tBabamots: I noticed that I was in &quot;check&quot; once after you moved your r2 closer to my home, here:\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=36307&amp;idx=53\r\n\r\nI had always planned to trade my r3 for b3, but your move made it urgent.\n\tBabamots: GG! Thanks for the game!\n\tStormCrow: I came across your guide when browsing your profile after we started playing. Figures I picked an expert to play against for my first game.  Thanks again for the schooling, and for the links.\n\tStormCrow: And yes, that one point there was where I held the most hope for a mistake on your part.  Something that might get missed in a fast RL game that is easier to remember to look for when playing async\n\tBabamots: Yeah, when I lose IRL, it&#39;s usually to a missed catastrophe. I miss them on SDG too, but much less often.\n\tBabamots: We can play another match if you&#39;d like, maybe a practice game with open discussion of plans and strategy advice?\n\tStormCrow: Sure, I&#39;d enjoy that\n\nHomeworlds Online (SDG# 36399)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.6, Ended: 2020.5.13\nParticipants: Babamots (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld G1 B3 Y3\n\tcapi3101: Hello again.\n\n2) Babamots: Homeworld B2 G1 G3 *\n\tcapi3101: I was running low on active games...I&#39;ve got four going on right now and two of them are against players who haven&#39;t moved for more than thirty days. I&#39;d terminate the games but with the quarantine going on I figure there&#39;s the off-chance my opponents have more important things on their minds...\n\tcapi3101: I suppose it&#39;s possible that they don&#39;t realize it&#39;s been their turn for a month. Doesn&#39;t strike me as likely though.\n\tBabamots: Sometimes you can get people&#39;s attention by clicking the &quot;Call an Admin&quot; button. Unless they&#39;ve changed their settings, they&#39;ll get an email about the game. And Aaron the Admin isn&#39;t actually responding to the button anymore, so it&#39;s just a &quot;pause game time and notify my opponent&quot; button.\n\n3) capi3101: Build Y1 Capi3101\n\tcapi3101: I don&#39;t know why I wouldn&#39;t be concerned about an Instafreeze on green...the last two games I&#39;ve won have been via green ships...\n\n4) Babamots: Build G1 Babamots\n\n5) capi3101: Trade Y3 G3 Capi3101\n\tcapi3101: Though if I were overly concerned, a small red star would probably be the best defense against the insta-freeze strategy, with yellow second. Just an observation.\n\tBabamots: Well, if you&#39;ve been reading my guides, you&#39;ll know how to deal with an instafreeze, right? :-)\n\tcapi3101: Yep. Like that.\n\tBabamots: It looks like the site is having some kind of problem. I see your move listed in the log, but I have an &quot;Undo&quot; option rather than a command entry box. What does your page look like?\n\tcapi3101: Looks like I didn&#39;t move over here.\n\tcapi3101: Still got a y3 at my homeworld instead of a g3.\n\tcapi3101: I&#39;ll try resubmitting.\n\n6) Babamots: Trade G3 Y3 Babamots\n\tcapi3101: Got a game of Zendo going on where things got wonky just yesterday...number Zendo, but apparently an opponent of mine submitted a koan (VirtuaGirl) or something like that.\n\n7) capi3101: Build G2 Capi3101\n\tcapi3101: Looks good now.\n\n8) Babamots: Build G2 Babamots\n\n9) capi3101: Discover G2 Capi3101 B2 Zulu\n\n10) Babamots: Trade G1 R1 Babamots\n\tcapi3101: Mixing it up this time - going NATO phonetic in reverse...\n\tcapi3101: Because that end of the alphabet never gets any love.\n\tBabamots: Which Zendo game are you talking about? You&#39;re in several and I don&#39;t see a opponent name that looks like &quot;VirtuaGirl.&quot;\n\n11) capi3101: Trade Y1 R1 Capi3101\n\tcapi3101: That wasn&#39;t an opponent name...it was supposed to be a koan. All the more weirder since it&#39;s a number Zendo game. #36257\n\tcapi3101: Ugh. Red.\n\n12) Babamots: Build Y1 Babamots\n\tcapi3101: No...I want to be able to sac it.\n\n13) capi3101: Build G1 Zulu\n\tBabamots: If koans are supposed to consist of numbers, I think the master should say that text submissions aren&#39;t valid and reject the koan.\n\n14) Babamots: Discover G2 Babamots B3 Bolarus\n\tcapi3101: They did; the player in question couldn&#39;t figure out how that got submitted for them in the first place, though...\n\n15) capi3101: Trade G1 Y1 Zulu\n\n16) Babamots: Move Y1 Babamots Bolarus\n\n17) capi3101: Build G1 Capi3101\n\n18) Babamots: Sacrifice Y3 Babamots\nMove G2 Bolarus Zulu\nMove G2 Zulu Capi3101\nCatastrophe Capi3101 G\nDiscover Y1 Bolarus R1 Romulus\n\tcapi3101: Sorry for the delay...was weighing a likelihood.\n\n19) capi3101: Sacrifice G2 Zulu\nBuild R2 Capi3101\nBuild R2 Capi3101\n\tBabamots: Hardly a delay. I think of one move per day as the standard on SDG.\n\tBabamots: I&#39;m intrigued by these positions where someone can choose to destroy an enemy home star but leaving themselves vulnerable. I usually say it&#39;s a bad idea, but it&#39;s always tempting.\n\n20) Babamots: Build R2 Babamots\n\n21) capi3101: Trade R2 Y2 Capi3101\n\tBabamots: Not sure if this will work out for me, but we&#39;ll see.\n\tcapi3101: Well, so much for weighing likelihoods...\n\n22) Babamots: Trade R1 Y1 Babamots\n\tcapi3101: I hate small battlefields.\n\n23) capi3101: Trade R2 G2 Capi3101\n\tBabamots: Microverse will keep you on your toes, that&#39;s for sure.\n\n24) Babamots: Discover Y1 Romulus G3 Orion\n\n25) capi3101: M Y1 Zulu Orion\n\n26) Babamots: Build R1 Babamots\n\n27) capi3101: Build R1 Capi3101\n\n28) Babamots: Sacrifice R1 Babamots\nAttack Y1 Orion\n\tcapi3101: I know making moves at 1:45 AM is a bad idea...I don&#146;t know ~why~ I keep on doing it...\n\tcapi3101: Tonight it&#146;s the weather. Bit loud out there right now.\n\n29) capi3101: Build R1 Capi3101\n\tBabamots: I had to make some rules for myself: no late night moves, no moves while getting ready for church, no moves on my phone to stave off boredom.\n\n30) Babamots: Build Y2 Babamots\n\tBabamots: Thought I saw a problem with this move but now I can&#39;t think of it, so what the heck.\n\n31) capi3101: Build Y2 Capi3101\n\tcapi3101: Those are some good rules; might have to implement them my own self.\n\n32) Babamots: Build Y3 Orion\n\tcapi3101: Damn. Should&#39;ve stuck to my plan instead of getting greedy.\n\tcapi3101: Well, this is a dumb idea, but...\n\n33) capi3101: Sacrifice Y2 Capi3101\nMove Y2 Capi3101 Babamots\nMove Y2 Babamots Orion\nCatastrophe Orion Y\n\n34) Babamots: Build R2 Babamots\n\tcapi3101: I wonder.\n\tcapi3101: Ah. That&#39;s not going to work...the two systems are the same size.\n\tcapi3101: Well, let&#39;s try this then. It&#39;ll probably cost me the game but...\r\n\n\n35) capi3101: Trade R1 Y1 Capi3101\n\n36) Babamots: Trade R2 B2 Babamots\n\n37) capi3101: T R1 B1 Capi3101\n\n38) Babamots: Discover B2 Babamots G3 Risa\n\n39) capi3101: B Y1 Capi3101\n\n40) Babamots: Build B1 Risa\n\tBabamots: I&#39;m feeling pretty good about this now :-)\n\tcapi3101: No doubt.\n\n41) capi3101: D B1 Capi3101 Y2 Yankee\n\n42) Babamots: Move Y1 Babamots Risa\n\n43) capi3101: Discover Y1 Capi3101 B2 Xray\n\n44) Babamots: Trade B2 G2 Risa\n\n45) capi3101: Build G1 Capi3101\n\n46) Babamots: Build B1 Risa\n\n47) capi3101: Sacrifice G1 Capi3101\nBuild B2 Yankee\n\n48) Babamots: Discover B1 Risa G2 Bajor\n\n49) capi3101: Discover B2 Yankee B3 Whiskey\n\n50) Babamots: Build B3 Bajor\n\n51) capi3101: Sacrifice G2 Capi3101\nBuild Y2 Xray\nBuild Y3 Capi3101\n\n52) Babamots: Sacrifice Y2 Babamots\nMove B3 Bajor Capi3101\nMove B1 Bajor Capi3101\n\tcapi3101: I foresee a pair of large blue ships against me in the near future...\n\tcapi3101: At the very least, a disadvantage in large is forthcoming.\n\n53) capi3101: A B3 Capi3101\n\n\tcapi3101: You&#146;re going to green me to death. Well played. \n\tcapi3101: Where did I lose this one?\n\tcapi3101: Wait...\n\tBabamots: Oh shoot, we&#39;re out of blue, aren&#39;t we? Hmm. Looks like I should have been more patient.\n\tcapi3101: Maybe not. I sense the game about to end but I don&#146;t see the how of it.\n\tBabamots: Doh! GG!\n\tBabamots: Perhaps we&#39;ve both learned a few things this game ;-)\n\tcapi3101: Indeed. Very good game; I&#146;ll gladly accept the rematch.\n\nHomeworlds Online (SDG# 36275)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.8, Ended: 2020.5.25\nParticipants: dlwillson (S), StormCrow (N)\nWinner: dlwillson\n\n1) StormCrow: Homeworld R1 B2 G3\n\tStormCrow: Good luck, have fun\n\n2) dlwillson: H B1 R3 G3 Dlwillson\n\n3) StormCrow: Build G1 Stormcrow\n\tdlwillson: You too\n\n4) dlwillson: B G1 Dlwillson\n\n5) StormCrow: Trade G1 Y1 Stormcrow\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) StormCrow: Build G1 Stormcrow\n\n8) dlwillson: B G1 Dlwillson\n\n9) StormCrow: Discover G1 Stormcrow Y3 Zork\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) StormCrow: Build G1 Zork\n\n12) dlwillson: B B1 Dlwillson\n\n13) StormCrow: Build G1 Stormcrow\n\n14) dlwillson: B G2 Dlwillson\n\n15) StormCrow: Build G2 Zork\n\n16) dlwillson: Discover B1 Dlwillson Y2 Sol\n\n17) StormCrow: Move G1 Zork Sol\n\n18) dlwillson: S G2 Dlwillson\nB B2 Sol\nB B2 Sol\n\n19) StormCrow: Build G2 Sol\n\n20) dlwillson: D B2 Sol G3 Forest\n\n21) StormCrow: Build G2 Zork\n\n22) dlwillson: B B3 Dlwillson\n\n23) StormCrow: Discover G2 Sol B3 Xyzzy\n\n24) dlwillson: B B3 Forest\n\n25) StormCrow: Trade G2 R2 Xyzzy\n\n26) dlwillson: S B2 Forest\nT B2 R2 Sol\nT B3 R3 Dlwillson\n\n27) StormCrow: Sacrifice G1 Sol\nBuild R1 Xyzzy\n\n28) dlwillson: S G3 Dlwillson\nB B2 Dlwillson\nB B2 Forest\nB B3 Forest\n\n29) StormCrow: Build Y1 Stormcrow\n\n30) dlwillson: T B3 Y3 Forest\n\n31) StormCrow: Discover Y1 Stormcrow G3 Omega\n\n32) dlwillson: B B3 Forest\n\n33) StormCrow: Build Y2 Omega\n\n34) dlwillson: T B2 G2 Dlwillson\n\n35) StormCrow: Discover G2 Zork B2 Alpha\n\n36) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Forest\nBuild Y3 Dlwillson\n\n37) StormCrow: Sacrifice G2 Zork\nBuild G1 Zork\nBuild G2 Alpha\n\n38) dlwillson: Sacrifice Y3 Dlwillson\nMove B3 Forest Stormcrow\nMove B3 Forest Stormcrow\nMove Y3 Forest Stormcrow\n\n39) StormCrow: Sacrifice R2 Xyzzy\nAttack Y3 Stormcrow\nAttack B3 Stormcrow\n\n40) dlwillson: S R3 Dlwillson\nA Y3 Stormcrow\nA B3 Stormcrow\nA G3 Stormcrow\n\n\tStormCrow: The direct invasion wasn&#39;t what I was expecting there.  I had been expecting the blue catastrophe.\r\n\r\nAnyway, good game\n\tdlwillson: Thanks! If you want to play a learning game where we discuss strategy, let me know. I&#39;m not the best player, but I&#39;m OK sometimes.\n\nHomeworlds Online (SDG# 36304)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.8, Ended: 2020.6.8\nParticipants: StormCrow (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tStormCrow: Good luck, have fun\n\n2) StormCrow: Homeworld R2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) StormCrow: Build G1 Stormcrow\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\tTrydnt: Good luck to you too! I don&#39;t believe we&#39;ve played before are you new to SDG or coming out of retirement?\n\n6) StormCrow: Trade G1 Y1 Stormcrow\n\tStormCrow: New to SDG, I recently completed my first homeworlds game here.  Some light RL experience playing\n\n7) Trydnt: Build Y2 Trydnt\n\n8) StormCrow: Build Y2 Stormcrow\n\n9) Trydnt: Trade Y1 R1 Trydnt\n\n10) StormCrow: Discover Y1 Stormcrow G1 Zork\n\n11) Trydnt: Discover Y2 Trydnt G3 G3\n\n12) StormCrow: Build G1 Stormcrow\n\n13) Trydnt: Build R1 Trydnt\n\n14) StormCrow: Trade G1 R1 Stormcrow\n\n15) Trydnt: Build R2 Trydnt\n\n16) StormCrow: Build Y1 Zork\n\n17) Trydnt: Discover Y2 G3 G1 G1\n\n18) StormCrow: Build R2 Stormcrow\n\n19) Trydnt: Discover R2 Trydnt Y3 Y3\n\n20) StormCrow: Move R2 Stormcrow Zork\n\n21) Trydnt: Trade R1 B1 Trydnt\n\n22) StormCrow: Build Y2 Zork\n\n23) Trydnt: Build Y3 G1\n\n24) StormCrow: Build Y3 Stormcrow\n\n25) Trydnt: Build B1 Trydnt\n\n26) StormCrow: Discover Y1 Zork G3 Xyzzy\n\n27) Trydnt: Move B1 Trydnt Y3\n\n28) StormCrow: Trade Y2 B2 Stormcrow\n\n29) Trydnt: Discover Y2 G1 Y2 Y2\n\n30) StormCrow: Move B2 Stormcrow Zork\n\n31) Trydnt: Move B1 Y3 G1\n\n32) StormCrow: Move R2 Zork Xyzzy\n\n33) Trydnt: Build B1 G1\n\n34) StormCrow: Build B2 Zork\n\n35) Trydnt: Trade B1 R1 G1\n\n36) StormCrow: Build R3 Xyzzy\n\n37) Trydnt: Build R3 G1\n\n38) StormCrow: Move B2 Zork Xyzzy\n\n39) Trydnt: Build R3 Trydnt\n\n40) StormCrow: Move R1 Stormcrow Zork\n\n41) Trydnt: Sacrifice Y2 Y2\nMove R3 Trydnt Y3\nMove R3 Y3 Zork\n\n42) StormCrow: Sacrifice Y2 Zork\nMove B2 Zork Xyzzy\nMove B2 Xyzzy Trydnt\n\n43) Trydnt: Sacrifice B1 Trydnt\nTrade R3 B3 Zork\n\n44) StormCrow: Build Y2 Xyzzy\n\n45) Trydnt: Attack B2 Trydnt\n\n46) StormCrow: Discover Y1 Zork B3 Bagel\n\n47) Trydnt: Move R3 G1 Bagel\n\n48) StormCrow: Discover Y1 Bagel G2 Hulk\n\n49) Trydnt: Build R3 G1\n\n50) StormCrow: Build B1 Xyzzy\n\n51) Trydnt: Move B2 Trydnt Y3\n\n52) StormCrow: Build Y2 Hulk\n\n53) Trydnt: Move R3 G1 Y3\n\n54) StormCrow: Trade Y2 G2 Xyzzy\n\n55) Trydnt: Sacrifice R2 Y3\nAttack R1 Zork\nPass\n\n56) StormCrow: Build Y2 Xyzzy\n\n57) Trydnt: Move R3 Y3 Hulk\n\n58) StormCrow: Sacrifice Y1 Hulk\nDiscover Y2 Hulk B1 Smash\n\n59) Trydnt: Sacrifice B2 Y3\nTrade R3 Y3 Bagel\nPass\n\n60) StormCrow: Build Y1 Stormcrow\n\n61) Trydnt: Build B2 G1\n\n62) StormCrow: Sacrifice Y2 Smash\nMove B1 Xyzzy Trydnt\nMove B2 Xyzzy Trydnt\n\n63) Trydnt: Build B1 Zork\n\n64) StormCrow: Build G1 Stormcrow\n\n65) Trydnt: Build R2 Zork\n\n66) StormCrow: Discover B2 Trydnt R3 Red\n\n67) Trydnt: Trade R2 Y2 Zork\n\n68) StormCrow: Build G2 Xyzzy\n\n69) Trydnt: Sacrifice Y3 G1\nMove B1 G1 Stormcrow\nMove B3 Zork Stormcrow\nMove R1 G1 Stormcrow\n\n70) StormCrow: Attack B3 Stormcrow\n\n71) Trydnt: Sacrifice Y3 Bagel\nMove B1 Zork Stormcrow\nMove R1 Zork Stormcrow\nCatastrophe Stormcrow B\nDiscover R3 Hulk Y3 Y3\n\n\tStormCrow: Ah, a turn faster than I thought you could get there.  Congratulations\n\tTrydnt: Well played! Thought you might have me there for a minute\n\nHomeworlds Online (SDG# 36357)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.8, Ended: 2020.5.13\nParticipants: StormCrow (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tStormCrow: Good luck, have fun\n\twil: Will do!\n\twil: Will do!\n\n2) StormCrow: Homeworld R1 B3 G3\n\n3) wil: B G1 Wil\n\n4) StormCrow: Build G1 Stormcrow\n\n5) wil: T G1 B1 Wil\n\n6) StormCrow: Trade G1 Y1 Stormcrow\n\n7) wil: B B1 Wil\n\n8) StormCrow: Build Y1 Stormcrow\n\n9) wil: D B1 Wil Y3 Why3\n\twil: Babamots, trident, dlw, you goin for big guns!\n\twil: Getting prepped for medal competition?\n\n10) StormCrow: Build Y1 Stormcrow\n\n11) wil: B B2 Wil\n\n12) StormCrow: Discover Y1 Stormcrow G2 Zork\n\n13) wil: D B1 Wil Y3 Y3\n\tStormCrow: Mostly getting prepared to be whooped I think.  Well babamots has promised commentary on the game we&#39;re playing.\n\n14) StormCrow: Build Y2 Zork\n\twil: So far so good in this race\n\n15) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Why3\nBuild B3 Wil\n\n16) StormCrow: Discover Y1 Zork B3 Xyzzy\n\n17) wil: Trade B2 Y2 Y3\n\n18) StormCrow: Build Y3 Zork\n\n19) wil: Trade B2 G2 Wil\n\n20) StormCrow: Build G1 Stormcrow\n\n21) wil: T B2 G2 Why3\n\n22) StormCrow: Trade Y1 R1 Stormcrow\n\n23) wil: B B2 Wil\n\n24) StormCrow: Build Y1 Stormcrow\n\n25) wil: Trade B2 R2 Wil\n\n26) StormCrow: Move G1 Stormcrow Zork\n\n27) wil: D B1 Why3 R2 R2\n\n28) StormCrow: Move Y3 Zork Y3\n\n29) wil: Discover Y2 Y3 B2 B2\n\n30) StormCrow: Discover Y1 Stormcrow R2 Deetwo\n\n31) wil: Sacrifice G2 Why3\nBuild Y3 B2\nBuild G1 Wil\n\n32) StormCrow: Sacrifice R1 Stormcrow\nAttack B1 Y3\n\n33) wil: S G2 Wil\nB R1 Wil\nB B2 R2\n\n34) StormCrow: Trade Y3 R3 Y3\n\n35) wil: D R2 Wil Y3 Why3\n\n36) StormCrow: Sacrifice G1 Zork\nBuild B2 Y3\n\n37) wil: B G1 Wil\n\n38) StormCrow: Sacrifice Y2 Zork\nMove B2 Y3 Wil\nMove B1 Y3 Wil\nCatastrophe Wil B\n\n39) wil: Move R2 Why3 Wil\n\n40) StormCrow: Sacrifice G3 Stormcrow\nBuild Y2 Deetwo\nBuild Y3 Stormcrow\nBuild R1 Y3\n\twil: nice!\r\n\n\twil: gg\r\n\n\n41) wil: M Y3 B2 Stormcrow\n\n42) StormCrow: Trade Y3 G3 Stormcrow\n\tStormCrow: yea, the trick is to finish cracking the nut\n\n43) wil: S R2 Wil\nA G3 Stormcrow\nA Y1 Stormcrow\n\twil: How did you come by your name?\n\tStormCrow: From Tolkien, I&#39;ve used it since the 90s\n\n\twil: Ah!  Ya done good there till the end!  What you missed is when you blew up half my homeworlds we were then connected and you could waltz right in and take over.\r\n\r\nChallenge anytime \n\twil: Ah!  Ya done good there till the end!  What you missed is when you blew up half my homeworlds we were then connected and you could waltz right in and take over.\r\n\r\nChallenge anytime \n\tStormCrow: Good game.\n\tStormCrow: I think I didn&#39;t see a way to get ahead trying to take over the other half.\n\tStormCrow: Was afraid you&#39;d just catastrophe red if i came in with the large red ship and that you&#39;d take over anything else I brought\n\twil: I was talking about s y2 deetwo, m g3, m r1 y3 wil\n\nHomeworlds Online (SDG# 36415)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.8, Ended: 2020.5.11\nParticipants: Babamots (S), StormCrow (N)\nWinner: Babamots\n\n1) StormCrow: Homeworld R3 B2 G3\n\n2) Babamots: Homeworld Y2 B1 G3\n\n3) StormCrow: Build G1 Stormcrow\n\n4) Babamots: Build G1 Babamots\n\tStormCrow: Good Luck, have fun\n\tStormCrow: quick movement world this time i see\n\n5) StormCrow: Trade G1 Y1 Stormcrow\n\tBabamots: Andy calls it the &quot;quick start,&quot; but I think of it as the &quot;Make it harder to get all the yellow ships I need&quot; start. I generally think it&#39;s worse than blue-red, but I give it a try once in a while anyhow.\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) StormCrow: Build G1 Stormcrow\n\n8) Babamots: Build G1 Babamots\n\n9) StormCrow: Discover G1 Stormcrow Y1 Zork\n\n10) Babamots: Build Y2 Babamots\n\n11) StormCrow: Build Y2 Stormcrow\n\n12) Babamots: Discover Y1 Babamots G3 Risa\n\n13) StormCrow: Build G1 Zork\n\tBabamots: If I had a red star instead of a yellow, I could&#39;ve built a y3 just now. It illustrates what I was saying earlier about yellow stars being weak. These contests for early yellow ships are common, so yellow home stars often hold you back.\n\tBabamots: On the other hand, a yellow home star can be nice later in the game. In this game, if YOU want a doomsday machine, you&#39;ll need three blue ships and lots of yellow. That may be harder to gather than what I need, which is some blue, some red, and some yellow. You&#39;ll have to really dominate the yellow economy for a doomsday machine whereas I will only need a modest share in three economies.\n\n14) Babamots: Sacrifice G3 Babamots\nBuild Y3 Babamots\nBuild Y3 Risa\nBuild G2 Babamots\n\n15) StormCrow: Discover G1 Zork Y3 Xyzzy\n\tBabamots: And that type of move is why I&#39;m pretty convinced that it&#39;s always best to start with a large green ship. You can sacrifice it later for more larges.\n\n16) Babamots: Trade Y3 R3 Babamots\n\n17) StormCrow: Trade Y1 R1 Stormcrow\n\n18) Babamots: Move R3 Babamots Xyzzy\n\n19) StormCrow: Move G1 Xyzzy Babamots\n\n20) Babamots: Sacrifice G2 Babamots\nBuild Y1 Risa\nBuild Y3 Babamots\n\tBabamots: I&#39;ve leaving my home without a large, but I&#39;m not too worried about it since you can&#39;t get there with a large in one turn, and I expect to be able to build another large there on my next turn (sacrificing g2).\n\n21) StormCrow: Build G2 Stormcrow\n\n22) Babamots: Trade Y2 R2 Babamots\n\n23) StormCrow: Build Y2 Stormcrow\n\n24) Babamots: Discover Y1 Risa B1 Bolarus\n\n25) StormCrow: Build G2 Zork\n\n26) Babamots: Attack G1 Babamots\n\n27) StormCrow: Trade G2 B2 Stormcrow\n\n28) Babamots: Trade G1 B1 Babamots\n\n29) StormCrow: Discover R1 Stormcrow G1 Polaris\n\n30) Babamots: Move R3 Xyzzy Zork\n\n31) StormCrow: Sacrifice G2 Zork\nBuild R1 Polaris\nBuild G2 Stormcrow\n\n32) Babamots: Attack G1 Zork\n\n33) StormCrow: Move G2 Stormcrow Bolarus\n\tStormCrow: Yea, putting a third blue piece at home would have been dumb, let&#39;s find a better second build\n\tBabamots: Since I&#39;m ahead on large ships, I would happily sacrifice a y3 to destroy one of your home stars, which I could do if you build another blue.\n\n34) Babamots: Sacrifice G1 Babamots\nBuild Y3 Bolarus\n\tBabamots: You could rebuild your g2 at your home.\n\tBabamots: I see you were ahead of me :-)\n\tStormCrow: Felt that getting 2 builds was better than using a yellow to run or just leaving one ship behind there by escaping the g2 instead\n\n35) StormCrow: Sacrifice R1 Polaris\nAttack Y1 Bolarus\n\tBabamots: I think that was your best move.\n\n36) Babamots: Sacrifice R2 Babamots\nAttack Y1 Bolarus\nAttack G2 Bolarus\n\n37) StormCrow: Build R1 Polaris\n\tBabamots: My little ship found a big friend. :-)\n\n38) Babamots: Trade Y3 R3 Bolarus\n\n39) StormCrow: Move Y2 Stormcrow Polaris\n\n40) Babamots: Build Y3 Bolarus\n\n41) StormCrow: Move B2 Stormcrow Polaris\n\n42) Babamots: Sacrifice Y3 Risa\nMove Y3 Bolarus Stormcrow\nMove R3 Bolarus Stormcrow\nPass\n\n43) StormCrow: Attack R3 Stormcrow\n\tBabamots: Good, now I can&#39;t do that trade-rebuild trick with yellow anymore.\n\n44) Babamots: Sacrifice R3 Zork\nAttack R3 Stormcrow\nAttack G3 Stormcrow\nAttack Y2 Stormcrow\n\tBabamots: Hmm, I&#39;ve been focused on building big ships and didn&#39;t notice how close I was to victory. If I&#39;d noticed this a turn earlier, I&#39;d&#39;ve said something instructive and tried to formulate a desperate defense. As it is, you&#39;ll get a textbook example of a red-powered invasion.\n\n\tStormCrow: Thank you again for the complete defeat.  I need to learn how to get ahead in the ship race obviously, i seem behind quickly in all the games I play.\n\tBabamots: Sorry, I didn&#39;t give as much advice as I had intended. When I practice with people in-person, I can give timely warnings when they reach for bad moves, as in &quot;Ooh, you&#39;re not going to want to do that and here&#39;s why.&quot; On SDG, I don&#39;t know what people are thinking until they&#39;ve made the move, and by then it&#39;s a pain to back up.\n\tBabamots: The clearest problem spot in this game was your 7th move, just before I got way ahead in yellows.\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=36415&amp;idx=11\r\n\r\nYou would have benefitted from discovering a new system (of any color) with your y1. This would have done two things:\r\n1) It spreads out your yellows, so you&#39;re prepared to build a y3 if I try any tricky sacrifice builds.\r\n2) It also would have made it so you could catastrophe my home star if I did my sacrifice build right away (imagine the position below but with one of your g1&#39;s replaced by a y1. You can sacrifice your y2 to devastate my homeworld).\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=36415&amp;idx=13\n\nHomeworlds Online (SDG# 36411)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.10, Ended: 2020.6.6\nParticipants: dlwillson (S), phi_618 (N)\nWinner: dlwillson\n\n1) phi_618: Homeworld G1 B2 Y3\n\n2) dlwillson: H R3 B1 G3\n\tphi_618: gl hf!\n\n3) phi_618: Build Y1 Phi_618\n\tdlwillson: You too!\n\tphi_618: Here&#39;s some backstory for my civilization before I lose. :D\n\tphi_618: A war decades in the making is raging between two powerful civilizations; antipathies not a generation old fester to rival the most ancient of feuds: a quest for greater knowledge and understanding corrupted by bloodlust: history of relative peace forgotten in blind pursuit of otherwise laudable goal.\r\n\r\nThe official doctrine of the current government administration of the Kankinkni, a civilization developed under the auspices of Creation and Transformation, is to establish self-sustaining communities on new worlds, though detractors point out that exercising control over those communities may prove impossible. According to a recent study conducted by the KHAN!!! (Kankinkni Honest Association of Polling) says that 5 p/t (5 per/tex == 5/16: the Kankinkni use a hexadecimal base for most purposes) of bar fights (legally defined as a fight between a number of persons not exceeding 4, where all participants were under some non-zero degree of influence of intoxicating beverages and/or drugs, where no weapons were used, and where all parties appeared to be at least minimally amenable to the fight at the time of it&#39;s initiation) were primarily over disagreement over whether these colonies, if and once established, would prove bastions of peace and prosperity, or strongholds of tyranny wreaking terror through the galaxy.\r\n\r\nYet not all are on board with the war. There exists a minority, but very powerful, Kankinkni faction, the Kankinkni Diplomats, with members of standing scattered across worlds who seek a peaceful resolution, believing that by such means, the knowledge which all in their society seek may be more readily and effectatiously acquired. If the Kankinkni Diplomats are right, an alliance may be the route to the best outcome for all of Kankin.\n\tphi_618: oops, I messed up the acronym. I guess the Kankinkni Honest Association of Polling isn&#39;t so honest after all.\n\n4) dlwillson: B G1 Dlwillson\n\tdlwillson: Good backstory! I like the proper definition of bar fight.\n\n5) phi_618: Trade Y1 B1 Phi_618\n\tphi_618: Thank you, I&#39;m experimenting with using things such as the Decktet, Tarot Cards, and the I Ching to generate prompts for rpg plots, world-building, random encounters, &amp;c.. Here I used the Decktet and filled out details from there.\r\n\r\nI should note that I made up the bar-fight definition. It&#39;s true for the Kankinkni (because I say so), but I&#39;m not a lawyer and I have no idea how (or even if) &quot;bar fight&quot; is defined in the US or other Earth countries. I do think it seems like a reasonable formalization of what &quot;feels&quot; like it could be called a bar fight, though.\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) phi_618: Build B2 Phi_618\n\n8) dlwillson: B B2 Dlwillson\n\n9) phi_618: Discover B1 Phi_618 G3 Jokror\n\tphi_618: While still profitable, a relatively small trade federation by the name of Kanmar, watchful of market oversaturation looming on the horizon, takes the risk to send their largest ship to a new star: Jokror. Unfortunately, the planets orbiting Jokror are barren of sapient life. Without fuel enough to yet return home to Kankin, the bedraggled remnants of the once successful Kanmarkni must sustain themselves: not to profit, but even survive. Thus we leave the Jokrorkni: unwittingly trading prosperity for austerity.\n\n10) dlwillson: T B1 Y1 Dlwillson\n\n11) phi_618: Build Y1 Phi_618\n\n12) dlwillson: D B2 Dlwillson G2 Field\n\n13) phi_618: Trade Y1 G1 Phi_618\n\n14) dlwillson: Build Y1 Dlwillson\n\n15) phi_618: Build Y1 Phi_618\n\n16) dlwillson: M Y1 Dlwillson Field\n\n17) phi_618: Move Y1 Phi_618 Jokror\n\n18) dlwillson: B Y2 Field\n\n19) phi_618: Build Y2 Jokror\n\n20) dlwillson: D Y1 Field G3 Forest\n\n21) phi_618: Discover Y1 Jokror G1 Joranmund\n\n22) dlwillson: B G2 Dlwillson\n\tphi_618: Kisyoutenketu\r\n\r\nKiku (the Island): The Jokrorkni have discovered sufficient raw resources on Jokror to maintain their growing fleet.\r\n\r\nSyouku (the Consul): Kanochim (chim /xim/: son-of; Kanochim: son-of-Kanoch (not *Kano), due to haplology) has gained a good deal of respect as well as wealth for himself among the Jokrorkni, and not undeservedly, it may be said: he has established himself for resourceful solutions to the problems faced by a budding civilization no large misfortune from death. Some, of course, envy his wealth, but by and large his usefulness keeps such sentiments at bay, and Kanochim is more than capable of using that to his advantage; accruing an unknown quantity of resources, knoweledge, and allies as he, a Kachinkni (Diplomat, believed to be a portmanteau of &quot;Kankin&quot; and &quot;Chinos&quot; &quot;king&quot;) aims for seccession of Jokror from Kankin in a bid to elevate the negotiating power of the Kachinkni to that of a sovereign state.\r\n\r\nTenku (the Penitent): Kanan (nan: daughter-of; Kanan: daughter-of-kan), the navigator of the original Kanmarkni trade ship which embarked to Jokror, {Spread: personality progression} {the Diplomat} was born into a family dedicated Kachinkni, {Ace of Wyrms} but rebelled against their ideals which she viewed not just as naive, but as a fundamentally fruitless endeavor good only to waste time draining the sea of chaos which would always find its level. {the Origin} She left home upon reaching the age of majority and wandered Kankin for the next few years, supporting herself through a combination of odd jobs (mostly legal, but some illegal drugs as well, which, while she avoided most of them, she had no particular antipathy towards; not compared to that towards those who outlawed them, in any case) and helping herself to what the wilds of Kankin have to offer those few who don&#39;t get trapped, lost, or killed. {the Forest} It was within these wilds, as she was wandering one day, having had a breakfast of berries wrapped in some edible leaves, contemplating philosophy, as she often did, {the Chance Meeting} when she came across Kanmarchim. Kanmarchim, though the son of Kanmar, was not set to take over Kanmar on his father&#39;s death, but this was no bother to him. He would be assured a quite comfortable job within its ranks for as long as he wished it regardless, and the stress of constant business dealings were not something he could imagine himself dedicating himself to. This was why he often left Kanmar property for weeks at a time, visiting one city or another, traveling the wilds one trip, the wastes the next. It was on just such a trip, as he was picking his way through the wilds of Kanmar, having but recently eaten a (mostly) cooked rabbit he had trapped overnight, contemplating a hand of Terrapin he had recently played with some of the men who worked the night shift at Kanmar, when he encountered Kanan. Talking over a hand of Terrapin, which they both soon discovered the other was far better at than they had initially assumed, (though it may be said that Kanmarchim was less surprised, as he had known his share of &quot;everybodies&quot; who could fleece f.f p/t of more well-to-do afficionados. In fact, this made it easier for him to find games, appearing as he did an easy mark) they came to an understanding. Having just gotten a fold with a 6-card Turtle Butt, Kanmarchim, adding the pool of sticks they were using as chips to his pile, raised the suggestion that Kanan cover for him once in while, filling out some of the more time-sensitive paperwork, in his absences. Kanan agreed, on the condition that she not have to sign any contract which would bind her to Kanmar, figuring that it was something she had not yet tried. {the Merchant} Over the next few years they continued in this way, until the work completed by one or the other bore little dissimilarity, not for their differences eroding, but becoming eachother&#39;s as well as their own. When the mission to Jokror was announced in a highly confidential meeting, Kanan was the first person not in the meeting to find out. She showed up at Kanmar&#39;s office that afternoon and asked to be assigned to the mission. Despite the fact that Kanan wasn&#39;t even employed at Kanmar, strictly speaking, though everyone knew more or less what was going on by this point, and that she definitely wasn&#39;t supposed to know about this mission, not that Kanmar expected anything else from Kanmarchim, (nor particularly minded: if that was the worst thing his son did, he could hardly complain) he acceeded to her request. Kanmarchim stayed behind at his father&#39;s request, though he would have much preferred to join her, by this point. Now, stranded on Jokror, Kanan finds herself wanting to return to Kankin and, more relevantly, Kanmar. Unfortunately for her, Kanochim is rapidly gaining support amongst the Jokrorkni.\r\n\r\nKekku {the Forest}: Deep in the wilds of Jokror Kanan hides one of Kanochim&#39;s ships; she suspects few if any know to what extent Kanochim truly controls Jokror. Silently, she gathers those who agree with her, many with families on Kankin, and leaves Jokror for a new destination wherefrom they can restock and thereafter return to Kankin: Joranmund.\n\tphi_618: Note: I am deciding on moves and then coming up with a story post facto, so all bad moves are my own, not influenced (at least consciously) by narrative convenience.\n\tdlwillson: I *love* playing this game with you! Do you do this in all your games?\n\tphi_618: Not yet; I decided to try it this game, and it&#39;s quite fun.\n\tphi_618: Next time I should probably force myself to write dialogue, as I&#39;m terrible at it. Like, My Immortal bad.\n\n23) phi_618: Build G2 Phi_618\n\tdlwillson: I don&#39;t know what &quot;My Immortal bad&quot; means.\n\tphi_618: The worst fanfiction ever written.\r\n\r\nhttps://myimmortalrehost.webs.com/chapters122.htm\n\tdlwillson: Hm. I can&#39;t tell if it&#39;s satire or not.\n\tdlwillson: Gotta be satire.\r\n\r\n&#39;&#147;Hi Draco!&#148; I said in a depressed voice.&#39;\n\n24) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y3 Forest\nB Y3 Dlwillson\n\n25) phi_618: Move G2 Phi_618 Jokror\n\n26) dlwillson: B G3 Dlwillson\n\tphi_618: So where do you think I went wrong this game? Was it just a tactical mistake last move, or was I already losing strategically (I suspect I was)?\n\n27) phi_618: Move B1 Jokror Joranmund\n\tdlwillson: Well, we could start with your Homeworld choice. There are good reasons to choose blue/red, and good reasons to choose blue/yellow, but I haven&#39;t yet heard defense of the other combinations. Did you try blue/green on a lark, or was there a reason?\n\tphi_618: That&#39;s a good place to start. I knew that B/G/Y (or possibly B/G/R), but did not realize that the g3 would be more valuable than the y3.\r\n\r\nThanks for the reply. As long as I can improve one thing each game, I&#39;m bound to improve, right? :D\n\n28) dlwillson: Trade Y2 R2 Field\n\n29) phi_618: Move B2 Phi_618 Jokror\n\n30) dlwillson: M Y3 Forest Phi_618\n\n31) phi_618: Build Y2 Phi_618\n\n32) dlwillson: Sacrifice Y2 Field\nMove Y1 Forest Phi_618\nCatastrophe Phi_618 Y\nDiscover R2 Field Y3 Sol\n\n33) phi_618: Build G3 Phi_618\n\tdlwillson: Incremental improvement will carry you far.\r\nThat said, I&#39;ve learned a lot by reading and understanding a few people&#39;s strategy guides, too.\r\n*That* said, nothing teaches like experience.\n\tdlwillson: Here&#39;s my first best strategy tip:\r\nRemember there are only 3 ways to win:\r\n1- Cat your opponent&#39;s stars.\r\n2- Attack your opponent&#39;s ships in their home system.\r\n3- Cat your opponent&#39;s ships in their home system.\r\n\r\nEvery turn, look for a path to a win. If there&#39;s no path to a win, look for a path to an economic or positional advantage.\r\nLook for your opponent&#39;s paths to a win. Look for your opponent&#39;s paths to advantage.\r\nPlay to foil your opponent&#39;s best move *only* when you must, because you literally can&#39;t win that way.\n\n34) dlwillson: Sacrifice Y3 Dlwillson\nMove G3 Dlwillson Field\nMove G3 Field Sol\nMove G3 Sol Phi_618\nCatastrophe Phi_618 G\n\tdlwillson: GG! TY!\r\n\r\nHave you seen this strategy guide?\r\nhttps://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\tphi_618: I&#39;ve read it twice, but that was a while ago and I always forget 90% of it.\n\tphi_618: Thanks for the Strategy tips as well.\r\n\r\nI&#39;ll probably come back at some point to fill in/wrap up the story.\n\tdlwillson: Play a lot of games against players who are slightly stronger than you are.\r\n\r\nI&#39;m down for a teaching game any time. For that matter, we could play over Discord or Zoom and discuss the strategy of each move as we do it.\r\n\r\nOne more thought: Have you seen the &quot;Homeworlds Theatre&quot; series on YouTube? It&#39;s pretty fun and has the game&#39;s authors: John Cooper and Andy Looney.\n\tdlwillson: I meant Mumble or Jitsi, not Discord or Zoom.\n\n\nHomeworlds Online (SDG# 36420)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.11, Ended: 2020.6.1\nParticipants: goulo (S), deanthebean (N)\nWinner: deanthebean\n\n1) deanthebean: Homeworld Y1 B2 G3\n\n2) goulo: Homeworld Y1 B3 G3\n\tdeanthebean: Hello. Have fun!\n\n3) deanthebean: Build G1 Deanthebean\n\tgoulo: hi, you too!\n\tdeanthebean: Thanks\n\n4) goulo: Build G1 Goulo\n\n5) deanthebean: Trade G1 Y1 Deanthebean\n\n6) goulo: Trade G3 Y3 Goulo\n\n7) deanthebean: Build Y2 Deanthebean\n\n8) goulo: Build Y2 Goulo\n\n9) deanthebean: Trade Y2 R2 Deanthebean\n\n10) goulo: Trade Y2 R2 Goulo\n\n11) deanthebean: Build Y2 Deanthebean\n\n12) goulo: Build Y2 Goulo\n\n13) deanthebean: Discover Y1 Deanthebean G3 G3\n\n14) goulo: Discover Y2 Goulo G2 Verdo\n\n15) deanthebean: Build R1 Deanthebean\n\n16) goulo: Build R1 Goulo\n\n17) deanthebean: Trade R1 B1 Deanthebean\n\tdeanthebean: trade r1 b1 deanthebean\n\n18) goulo: Move R1 Goulo Verdo\n\n19) deanthebean: Build R1 Deanthebean\n\n20) goulo: Build R1 Goulo\n\n21) deanthebean: Build G1 Deanthebean\n\n22) goulo: Build R2 Verdo\n\n23) deanthebean: Move R2 Deanthebean G3\n\n24) goulo: Trade R1 B1 Goulo\n\n25) deanthebean: Build Y2 G3\n\n26) goulo: Build Y3 Verdo\n\n27) deanthebean: Move Y2 G3 Verdo\n\n28) goulo: Sacrifice Y2 Verdo\nDiscover R2 Verdo G1 Verdeto\nDiscover R1 Verdo Y3 Flavego\n\n29) deanthebean: Move Y2 Verdo Goulo\n\n30) goulo: Trade Y3 G3 Goulo\n\n31) deanthebean: Sacrifice G3 Deanthebean\nBuild Y2 Goulo\nBuild Y3 Deanthebean\nBuild G2 Deanthebean\n\n32) goulo: Sacrifice R2 Verdeto\nAttack Y2 Goulo\nAttack Y2 Goulo\n\n33) deanthebean: Sacrifice Y2 Deanthebean\nDiscover Y1 G3 R2 Transient\nMove Y1 Transient Goulo\nCatastrophe Goulo Yellow\n\n34) goulo: Trade G1 Y1 Goulo\n\n35) deanthebean: Build G1 Deanthebean\n\n36) goulo: Move Y3 Verdo Goulo\n\n37) deanthebean: Trade Y3 R3 Deanthebean\n\n38) goulo: Build G1 Goulo\n\n39) deanthebean: Move G1 Deanthebean Goulo\n\n40) goulo: Sacrifice G3 Goulo\nBuild R1 Flavego\nBuild R2 Flavego\nBuild R3 Goulo\n\n41) deanthebean: Move R1 Deanthebean Flavego\nCatastrophe Flavego Red\n\n42) goulo: Attack G1 Goulo\n\n43) deanthebean: Discover G2 Deanthebean B3 B3\n\n44) goulo: Discover G1 Goulo Y2 Flavo\n\n45) deanthebean: Build G2 B3\n\n46) goulo: Build G2 Flavo\n\n47) deanthebean: Build G3 Deanthebean\n\n48) goulo: Build G3 Flavo\n\n49) deanthebean: Trade G2 Y2 B3\n\n50) goulo: Move G3 Flavo G3\n\n51) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 B3\nBuild G3 Deanthebean\nBuild Y1 B3\n\n52) goulo: Sacrifice R2 Goulo\nAttack R2 G3\nPass\n\n53) deanthebean: Trade G2 B2 B3\n\n54) goulo: Build G2 Goulo\n\n55) deanthebean: Move B1 Deanthebean Goulo\n\n\tgoulo: gg, congrats - well played!\n\tdeanthebean: Thanks! gg\n\nHomeworlds Online (SDG# 36429)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.12, Ended: 2020.5.13\nParticipants: Babamots (S), StormCrow (N)\nWinner: Babamots\n\n1) StormCrow: Homeworld G1 B2 Y3\n\n2) Babamots: Homeworld G3 Y2 B3\n\tStormCrow: seeing about something a little weird\n\n3) StormCrow: Build Y1 Stormcrow\n\n4) Babamots: Build B1 Babamots\n\n5) StormCrow: Build Y1 Stormcrow\n\n6) Babamots: Trade B1 Y1 Babamots\n\n7) StormCrow: Discover Y1 Stormcrow G3 Rivendale\n\n8) Babamots: Build Y2 Babamots\n\n9) StormCrow: Build Y2 Rivendale\n\n10) Babamots: Trade Y1 G1 Babamots\n\n11) StormCrow: Trade Y1 B1 Stormcrow\n\n12) Babamots: Build G1 Babamots\n\n13) StormCrow: Build B1 Stormcrow\n\n14) Babamots: Discover G1 Babamots B1 Bolarus\n\n15) StormCrow: Build Y1 Stormcrow\n\n16) Babamots: Move Y2 Babamots Bolarus\n\n17) StormCrow: Move B1 Stormcrow Rivendale\n\n18) Babamots: Build Y1 Bolarus\n\n19) StormCrow: Build B2 Rivendale\n\n20) Babamots: Discover Y1 Bolarus Y3 Iconia\n\n21) StormCrow: Trade B2 G2 Rivendale\n\n22) Babamots: Build Y3 Bolarus\n\n23) StormCrow: Discover G2 Rivendale R1 Imgonnadieagain\n\n24) Babamots: Build B2 Babamots\n\n25) StormCrow: Build G2 Imgonnadieagain\n\n26) Babamots: Trade G1 R1 Babamots\n\tBabamots: Death is just the next adventure.\n\n27) StormCrow: Build B2 Rivendale\n\n28) Babamots: Trade Y3 R3 Bolarus\n\n29) StormCrow: Move B1 Rivendale Imgonnadieagain\n\n30) Babamots: Build Y3 Bolarus\n\n31) StormCrow: Trade Y1 R1 Stormcrow\n\tBabamots: I&#39;ll give you one more turn to defend yourself. When your opponent has a red ship, you almost always need to get a red ship as well.\r\n\r\nIf I were playing for keeps, I&#39;d move my r3 to your home right now.\n\n32) Babamots: Move R3 Bolarus Rivendale\n\n33) StormCrow: Sacrifice Y2 Rivendale\nMove B2 Rivendale Bolarus\nMove B2 Bolarus Babamots\n\tStormCrow: Good thing i looked at the comments, i was more concerned about you dropping 2 yellows on me\n\tBabamots: That&#39;s better :-).\n\n34) Babamots: Trade B3 R3 Babamots\n\n35) StormCrow: Build B3 Imgonnadieagain\n\n36) Babamots: Discover Y3 Bolarus B3 Betazed\n\tBabamots: I forgot that it was today that this game started. Most people on SDG move much less often.\n\tStormCrow: Work from home is slow, so I get to play async more often for the moment. Now I&#39;m a bit stumped, obviously I just gave you a turn to do something you&#39;d want to do anyway, but now i have to either abandon the B2 or move it again (or throw good ships after bad).\n\tBabamots: Yeah, I&#39;m working from home too. I have a special &quot;ding&quot; for when I get an SDG email, so I can respond quickly. Sometimes I get to move before my opponent is able to undo something that they quickly regretted. ;-)\n\n37) StormCrow: Move Y1 Rivendale Imgonnadieagain\n\n38) Babamots: Sacrifice Y2 Bolarus\nMove Y3 Betazed Stormcrow\nMove R3 Rivendale Stormcrow\n\n39) StormCrow: Attack R3 Stormcrow\n\n40) Babamots: Sacrifice R3 Babamots\nAttack R3 Stormcrow\nAttack Y3 Stormcrow\nAttack R1 Stormcrow\n\n\tStormCrow: Well I felt i was doing ok keeping up with ships until later in the game this time at least.  Against wil I managed to destroy half his homeworld in a game, but then couldn&#39;t close it.  Only need to lose another 990 games... oh wait, that&#39;s Go....\n\tBabamots: You had me thinking harder this time for sure. And it&#39;s a significant achievement to half-beat wil, well done!\r\n\r\nI hadn&#39;t heard that go-saying before--that you should lose your first 50 or 100 or 1000 games as quickly as possible (depending on whom you ask). Some people start beating HW experts after just a few games, so I think we need to develop stronger experts.\n\nHomeworlds Online (SDG# 36431)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.13, Ended: 2020.5.22\nParticipants: Babamots (S), capi3101 (N)\nWinner: Babamots\n\n1) capi3101: H G1 B3 Y3\n\n2) Babamots: Homeworld R2 B1 G3\n\n3) capi3101: Build Y1 Capi3101\n\n4) Babamots: Build G1 Babamots\n\tcapi3101: I have noted that I have trouble cracking planetary defense systems. Could be an interesting game.\n\n5) capi3101: Discover Y1 Capi3101 G2 Victor\n\tBabamots: Yeah, I think red homestars are the way to go.\n\tcapi3101: Wouldn&#39;t red homestars really be Strong Bads?\r\n\r\nNever mind...\n\tcapi3101: Best of luck.\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) capi3101: Build Y1 Capi3101\n\tBabamots: Maybe the first ship to leave home is the homestar runner.\n\tcapi3101: Maybe.\r\n\r\nI sure fouled that one up...\n\tcapi3101: Oh well.\n\n8) Babamots: Build Y2 Babamots\n\n9) capi3101: Build Y2 Victor\n\n10) Babamots: Discover Y1 Babamots G3 Risa\n\n11) capi3101: T Y1 R1 Capi3101\n\n12) Babamots: Build G1 Babamots\n\n13) capi3101: Discover Y2 Victor G3 Uniform\n\n14) Babamots: Build G1 Babamots\n\tcapi3101: I see the dirty factory move coming. Could&#39;ve lost the y2 pretty easily just then.\n\tBabamots: A &quot;dirty factory&quot; was my planned response to a y2 invasion.\r\n\r\nAnd by the way, can you think of a better term for that type of move? It should probably have &quot;factory&quot; in the name. &quot;Dirty&quot; is supposed to suggest that it&#39;s a mean trick and that it&#39;s not the &quot;pure&quot; type of factory, but I&#39;ve never been quite happy with it.\n\tcapi3101: That&#39;s the sort of question that would probably best be posed to the Homeworlds group on Facebook. At the very least you&#39;d get more input on the matter than just me. Off the top of my head, I&#39;d call it a &#39;shipwright&#39;. \r\n\r\nWouldn&#39;t necessarily call it a dirty move either...the &#39;dirty&#39; version is the kind where you don&#39;t need an intervening move to reset the large ship to green. &#39;Poor Man&#39;s Factory&#39; might be another possibility, I suppose.\n\n15) capi3101: B R1 Capi3101\n\n16) Babamots: Discover G1 Babamots Y3 Iconia\n\n17) capi3101: Move Y1 Victor Iconia\n\n18) Babamots: Discover G1 Iconia Y1 Aldea\n\n19) capi3101: B Y2 Uniform\n\n20) Babamots: Build Y3 Risa\n\tcapi3101: Hmm...\n\n21) capi3101: M Y2 Uniform Aldea\n\tcapi3101: Voltron reference?\n\n22) Babamots: Move G1 Aldea Risa\n\tBabamots: https://memory-alpha.fandom.com/wiki/Aldea\n\tcapi3101: Ah, okay. Still a TNG reference then - got it.\n\tcapi3101: I love how I can analyze the game for hours and hours, and then finally make exactly the wrong move...\n\tBabamots: I&#39;ve been known to do that too.\n\n23) capi3101: T R1 B1 Capi3101\n\n24) Babamots: Build G2 Babamots\n\n25) capi3101: Sacrifice B1 Capi3101\nTrade Y2 G2 Aldea\n\n26) Babamots: Trade G2 R2 Babamots\n\n27) capi3101: Build Y2 Uniform\n\n28) Babamots: Discover G1 Risa B2 Bolarus\n\tBabamots: I had a dream about this game last night. You killed me because I missed a Bluebird scenario.\n\tBabamots: (I also dreamed that I was playing StarCraft, but my probes were spinning wind-up toys that I couldn&#39;t get to mine minerals.)\n\n29) capi3101: B G2 Aldea\n\tcapi3101: We&#39;ll see if that was a premonition or not...\r\n\r\n(Which faction, Humans or Protoss? I could totally see that...Zerg not so much...)\n\tBabamots: I was playing Protoss (usually my worst race).\n\n30) Babamots: Sacrifice G3 Babamots\nBuild G2 Bolarus\nBuild G3 Babamots\nBuild R1 Babamots\n\n31) capi3101: Sacrifice Y2 Uniform\nDiscover G2 Aldea B3 Tango\nDiscover G2 Aldea B3 Sierra\n\n32) Babamots: Trade R1 B1 Babamots\n\n33) capi3101: B Y1 Uniform\n\n34) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild B1 Babamots\nBuild G3 Babamots\n\n35) capi3101: S Y2 Uniform\nM G2 Sierra Babamots\nM G2 Tango Babamots\nC Babamots G\n\n36) Babamots: Build Y2 Risa\n\tcapi3101: Here goes nothin&#146;...\n\n37) capi3101: M Y1 Iconia Babamots\n\n38) Babamots: Sacrifice Y1 Risa\nDiscover Y2 Babamots B3 Andoria\n\n39) capi3101: Discover Y1 Babamots G3 Romeo\n\n40) Babamots: Sacrifice G2 Bolarus\nBuild Y1 Andoria\nBuild Y3 Babamots\n\tcapi3101: Now would probably be an ideal time for me to retreat, unfortunately. And then I&#39;ve got a fairly substantial material disadvantage to deal with...I foresee the loss of green at my own star in the very near future.\n\tcapi3101: Overall, I think that particular stratagem was ill-conceived...\n\n41) capi3101: Build R1 Capi3101\n\n42) Babamots: Move B1 Babamots Risa\n\tBabamots: I think losing three mediums to kill my g3 and g1 was probably not worth it for you. The g2&#39;s in b3 systems could have been nice investments for you later. I didn&#39;t really want to invade either one since they could green-teleport to each other.\r\n\r\nAs it is, I&#39;ll feel more comfortable with the yellows locked down.\n\tcapi3101: Indeed...that limits my options. With disadvantages in yellow, large and overall material I&#39;m seriously considered resigning now.\r\n\r\nI&#39;ll go ahead and play it out; I&#39;ve won games with a bad material disadvantage before. Granted, that wasn&#39;t against a player with your level of experience...\n\tcapi3101: (+1 for awkwardly-worded sentences...)\n\n43) capi3101: Trade R1 G1 Capi3101\n\tBabamots: Maybe I&#39;ll hatch a plan that relies on building ships from an empty supply :-D\n\n44) Babamots: Build G2 Bolarus\n\tcapi3101: You could do that...I&#39;d probably appreciate it. ;)\n\n45) capi3101: Discover G1 Capi3101 G2 Quebec\n\n46) Babamots: Build G2 Bolarus\n\tcapi3101: Hell.\n\n47) capi3101: Build R1 Capi3101\n\n48) Babamots: Build B2 Risa\n\tcapi3101: Here it comes...\n\n\tBabamots: I miscalculated. I still have one more prep move.\n\tcapi3101: Yeah, I see it. You need to get the two blues at Risa to a size 1 or 2 system. Then you&#39;ve got a classic Doomsday Machine setup. Unfortunately for me, I&#39;m too far behind to attempt to counter it. Taking out your large has cost me the game, it seems.\n\tcapi3101: Was considering a hail mary but it would just end the game sooner. I think I&#39;ll quit now while my stars are still intact.\r\n\r\nGG.\n\tBabamots: GG! And I think I will ask the Facebook group about a name for that move.\n\nHomeworlds Online (SDG# 36438)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.14, Ended: 2020.5.14\nParticipants: chris_st (S), aaaayachris (N)\nWinner: chris_st\n\n1) aaaayachris: Homeworld G3 B1 R3\n\n2) chris_st: Homeworld B3 G2 R3\n\n\nHomeworlds Online (SDG# 36446)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.15, Ended: 2020.5.17\nParticipants: poggydude (S), master_tactician (N)\nWinner: poggydude\n\n1) master_tactician: Homeworld B1 R3 G3\n\n2) poggydude:\nHomeworld B2 Y1 G3\n\tpoggydude: homeworld B2 Y1 G3\n\n3) master_tactician: Build G1 Master_tactician\n\n4) poggydude: Build G1 Poggydude\n\n5) master_tactician: Trade G1 Y1 Master_tactician\n\n6) poggydude: Trade G1 R1 Poggydude\n\n7) master_tactician: Discover G3 Master_tactician B2 Masonsbutthole\n\n8) poggydude: Build G1 Poggydude\n\n9) master_tactician: Build G1 Masonsbutthole\n\n10) poggydude: Build R1 Poggydude\n\n11) master_tactician: Trade G1 R1 Masonsbutthole\n\n12) poggydude: Trade R1 Y1 Poggydude\n\n13) master_tactician: Build R1 Masonsbutthole\n\n14) poggydude: Build R2 Poggydude\n\n15) master_tactician: Trade Y1 G1 Master_tactician\n\n16) poggydude: Build R2 Poggydude\n\n17) master_tactician: Trade R1 Y1 Masonsbutthole\n\n18) poggydude: Build Y2 Poggydude\n\n19) master_tactician: Build Y2 Masonsbutthole\n\n20) poggydude: Sacrifice Y2 Poggydude\nDiscover R2 Poggydude B3 Orion\nMove G1 Poggydude Orion\n\n21) master_tactician: Build Y2 Masonsbutthole\n\n22) poggydude: Trade R2 Y2 Orion\n\n23) master_tactician: Move Y2 Masonsbutthole Orion\n\n24) poggydude: Sacrifice R1 Poggydude\nAttack Y2 Orion\n\n25) master_tactician: Build R1 Masonsbutthole\n\n26) poggydude: Discover Y2 Orion G2 Ursa\n\n27) master_tactician: Move Y2 Masonsbutthole Master_tactician\n\n28) poggydude: Build Y3 Ursa\n\n29) master_tactician: Build Y3 Master_tactician\n\n30) poggydude: Build Y3 Orion\n\n31) master_tactician: Discover Y2 Master_tactician G2 Alphacucktauri\n\n32) poggydude: Trade Y3 G3 Orion\n\n33) master_tactician: Build Y3 Master_tactician\n\n34) poggydude: Sacrifice G3 Orion\nBuild G1 Poggydude\nBuild G2 Poggydude\nBuild G3 Orion\n\n35) master_tactician: Move Y3 Master_tactician Ursa\n\n36) poggydude: Move G3 Orion Ursa\n\n37) master_tactician: Sacrifice R1 Masonsbutthole\nAttack G3S Ursa\n\n38) poggydude: Sacrifice R2 Poggydude\nAttack Y3 Ursa\nAttack G3 Ursa\n\n39) master_tactician: Move Y3 Master_tactician Ursa\nCatastrophe Ursa Y\n\n40) poggydude: Sacrifice Y1 Poggydude\nMove G3 Ursa Master_tactician\n\n41) master_tactician: Sacrifice G3 Masonsbutthole\nBuild G2 Master_tactician\nBuild G3 Master_tactician\nBuild Y1 Alphacucktauri\n\n\nHomeworlds Online (SDG# 36482)\nStarted: 2020.5.20, Ended: 2020.5.20\nParticipants: EternalSwordsman (S), tkvaran (N)\nWinner: tkvaran\n\n1) tkvaran: Homeworld B3 Y2 G3\n\n2) EternalSwordsman: Homeworld B3 G1 Y3\n\tEternalSwordsman: homeworld b3 g1 y3\n\n3) tkvaran: Build G1 Tkvaran\n\n4) EternalSwordsman: Discover Y3 Eternalswordsman B2 Wolf359\n\n\nHomeworlds Online (SDG# 36483)\nStarted: 2020.5.20, Ended: 2020.5.23\nParticipants: EternalSwordsman (S), tkvaran (N)\nWinner: tkvaran\n\n1) tkvaran: Homeworld B3 Y2 G3\n\n2) EternalSwordsman: Homeworld B3 G1 Y3\n\n3) tkvaran: Build G1 Tkvaran\n\n4) EternalSwordsman: Build Y1 Eternalswordsman\n\n5) tkvaran: Discover G1 Tkvaran B1 Oprah\n\n6) EternalSwordsman: Discover Y1 Eternalswordsman R2 Qonos\n\n7) tkvaran: Build G1 Oprah\n\n8) EternalSwordsman: Build Y1 Eternalswordsman\n\n9) tkvaran: Trade G1 Y1 Oprah\n\n10) EternalSwordsman: Trade Y1 R1 Eternalswordsman\n\n11) tkvaran: Build G1 Tkvaran\n\n12) EternalSwordsman: Move R1 Eternalswordsman Qonos\n\n13) tkvaran: Trade Y1 R1 Oprah\n\n14) EternalSwordsman: Build Y1 Eternalswordsman\n\n15) tkvaran: Build G2 Oprah\n\n16) EternalSwordsman: Trade Y3 G3 Eternalswordsman\n\n17) tkvaran: Trade G2 Y2 Oprah\n\n18) EternalSwordsman: Move G3 Eternalswordsman Qonos\n\n19) tkvaran: Discover Y2 Oprah G2 Rickilake\n\n20) EternalSwordsman: Build Y1 Eternalswordsman\n\n21) tkvaran: Move Y2 Rickilake Eternalswordsman\n\n22) EternalSwordsman: Trade Y1 R1 Eternalswordsman\n\n23) tkvaran: Trade Y2 R2 Eternalswordsman\n\n24) EternalSwordsman: Build R2 Qonos\n\n25) tkvaran: Attack Y1 Eternalswordsman\n\n26) EternalSwordsman: Build R3 Qonos\n\n27) tkvaran: Attack R1 Eternalswordsman\n\n\nHomeworlds Online (SDG# 36462)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.21, Ended: 2020.5.24\nParticipants: Trydnt (S), Jerome (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 36493)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.21, Ended: 2020.6.15\nParticipants: StormCrow (S), SilentTitan (N)\nWinner: StormCrow\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) StormCrow: Homeworld Y2 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tStormCrow: gl, hf\n\n4) StormCrow: Build G1 Stormcrow\n\tSilentTitan: Thanks, and may the gods shine down and grace our conflict!\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) StormCrow: Trade G1 Y1 Stormcrow\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) StormCrow: Build G1 Stormcrow\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) StormCrow: Trade G1 R1 Stormcrow\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) StormCrow: Build R2 Stormcrow\n\n13) SilentTitan: Discover R2 Silenttitan Y3 Sol\n\n14) StormCrow: Trade R2 B2 Stormcrow\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) StormCrow: Build G1 Stormcrow\n\n17) SilentTitan: Trade G1 B1 Silenttitan\n\n18) StormCrow: Build R2 Stormcrow\n\n19) SilentTitan: Build G1 Silenttitan\n\n20) StormCrow: Discover B2 Stormcrow Y1 Xyzzy\n\n\nHomeworlds Online (SDG# 36422)\nVariants: &quot;Hard time&quot;\nStarted: 2020.5.24, Ended: 2020.7.15\nParticipants: dlwillson (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: Good luck :-)\n\n2) dlwillson: Homeworld B3 R1 G3 Dlwillson\n\tdlwillson: You too!\n\n3) Babamots: Build G1 Babamots\n\n4) dlwillson: B G1 Dlwillson\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Babamots: Build Y2 Babamots\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Babamots: Discover Y1 Babamots G3 Risa\n\n10) dlwillson: Discover Y1 Dlwillson G2 Field\n\n11) Babamots: Build G1 Babamots\n\n12) dlwillson: Build Y2 Dlwillson\n\n13) Babamots: Build Y3 Risa\n\n14) dlwillson: Build Y3 Field\n\n15) Babamots: Discover Y1 Risa B1 Bolarus\n\n16) dlwillson: T Y2 R2 Dlwillson\n\n17) Babamots: Trade G1 R1 Babamots\n\n18) dlwillson: M Y1 Field Risa\n\n19) Babamots: Discover Y2 Babamots Y3 Iconia\n\n20) dlwillson: Build Y2 Risa\n\tBabamots: I&#39;ve been trying to figure out what people see in yellow home stars. They never do me any good.\n\tdlwillson: Blue/Yellow is for speed, but you have to give up a turn to get red, so it&#39;s mixed, but if you rush red, the &quot;giving up a turn&quot; doesn&#39;t hurt as much, but if your opponent follows you into red, you can&#39;t rush it as effectively, so...\n\tdlwillson: Anyway, I think I&#39;ve run out of tailwind here. I appreciate you letting me have some, but having run it out, I now need to do the hard thinking that I&#39;m not good at. So... I think I&#39;ll set up a plastic model of this game and see if that reveals an opportunity I&#39;m missing here. Please be patient.\n\n21) Babamots: Build R1 Babamots\n\tdlwillson: TY for your patience :-)\n\n22) dlwillson: Sacrifice Y2 Risa\nDiscover R2 Dlwillson Y2 Sol\nDiscover Y3 Field B3 Sky\n\tBabamots: A yellow home star lets you move out early, but it has always seemed to me that it&#39;s much better to stock up on yellow ships right away. The yellow star usually feels like a handicap.\r\n\r\nOn the other hand, yellow stars can be harder to catastrophe. I think that&#39;s where the advantage really lies. You&#39;ll have your chance to prove me wrong, though.\n\tdlwillson: Well, heck. Even after all that foot-shuffling, I miscalculated. Oh, well. It&#39;s only a game.\n\tBabamots: I seem to do that a lot. After days of worrying about a move and half an hour of thinking, I make a huge blunder.\n\n23) Babamots: Sacrifice R1 Babamots\nAttack Y1 Risa\n\n24) dlwillson: Build G1 Dlwillson\n\n25) Babamots: Build R1 Babamots\n\n26) dlwillson: Move R2 Sol Sky\n\n27) Babamots: Discover Y1 Risa Y2 Aldea\n\n28) dlwillson: Sacrifice G1 Dlwillson\nBuild R2 Sky\n\n29) Babamots: Move R1 Babamots Risa\n\n30) dlwillson: M R2 Sky Aldea\n\n31) Babamots: Discover Y1 Aldea G1 Betazed\n\n32) dlwillson: Move R2 Aldea Betazed\n\n33) Babamots: Discover Y1 Betazed Y2 Aldea\n\n34) dlwillson: Build G1 Dlwillson\n\n35) Babamots: Build G1 Babamots\n\n36) dlwillson: Discover G1 Dlwillson B2 Sea\n\n37) Babamots: Sacrifice G3 Babamots\nBuild R2 Risa\nBuild R3 Risa\nBuild R3 Babamots\n\n38) dlwillson: B R3 Betazed\n\n39) Babamots: Move R3 Risa Sea\n\n40) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Betazed Aldea\nMove R3 Betazed Iconia\n\n41) Babamots: Sacrifice Y1 Aldea\nMove Y2 Iconia Sea\n\n42) dlwillson: Sacrifice G1 Sea\nBuild G1 Dlwillson\n\n43) Babamots: Build G1 Babamots\n\n44) dlwillson: Trade G1 Y1 Dlwillson\n\n45) Babamots: Build Y2 Risa\n\n46) dlwillson: Move R2 Aldea Sky\n\n47) Babamots: Trade R1 B1 Babamots\n\n48) dlwillson: Build Y2 Dlwillson\n\n49) Babamots: Build B1 Babamots\n\n50) dlwillson: T R2 G2 Sky\n\n51) Babamots: Move B1 Babamots Risa\n\n52) dlwillson: B G1 Sky\n\n53) Babamots: Build B2 Risa\n\n54) dlwillson: Sacrifice G2 Sky\nBuild R1 Iconia\nBuild R2 Sky\n\n55) Babamots: Build B3 Babamots\n\n56) dlwillson: B G2 Dlwillson\n\n57) Babamots: Move B2 Risa Sea\n\n58) dlwillson: Move R2 Sky Bolarus\n\n59) Babamots: Discover Y1 Bolarus G3 Bajor\n\n60) dlwillson: Trade R2 G2 Bolarus\n\n61) Babamots: Sacrifice Y2 Risa\nDiscover R1 Risa G2 Betazed\nMove R2 Risa Betazed\n\n62) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Sky\nBuild Y2 Sky\nBuild G3 Dlwillson\n\n63) Babamots: Move R3 Sea Dlwillson\n\n\tdlwillson: Lots of options, but none good. Good game!\n\tBabamots: Good game!\n\nHomeworlds Online (SDG# 36401)\nStarted: 2020.5.25, Ended: 2020.6.6\nParticipants: capi3101 (S), eliscinsky (N)\nWinner: capi3101\n\n1) eliscinsky: H R1 B2 G3\n\tcapi3101: Hello again.\n\n2) capi3101: Homeworld B1 G3 Y3\n\teliscinsky: Hello, GL &amp; HF\n\n3) eliscinsky: B G1 Eliscinsky\n\n4) capi3101: Build Y1 Capi3101\n\n5) eliscinsky: T G1 Y1 Eliscinsky\n\n6) capi3101: Trade Y1 B1 Capi3101\n\n7) eliscinsky: T Y1 B1 Eliscinsky\n\n8) capi3101: Build B2 Capi3101\n\n9) eliscinsky: Build B2 Eliscinsky\n\n10) capi3101: D B2 Capi3101 G2 Tav\n\n11) eliscinsky: T B1 Y1 Eliscinsky\n\n12) capi3101: Build Y1 Capi3101\n\n13) eliscinsky: B G1 Eliscinsky\n\n14) capi3101: M B1 Capi3101 Tav\n\n15) eliscinsky: D B2 Eliscinsky G3 Earth\n\n16) capi3101: Trade B1 Y1 Tav\n\n17) eliscinsky: B Y2 Eliscinsky\n\n18) capi3101: B Y2 Tav\n\n19) eliscinsky: T B2 R2 Earth\n\n20) capi3101: Trade Y1 R1 Tav\n\n21) eliscinsky: M G1 Eliscinsky Earth\n\n22) capi3101: Build B1 Tav\n\n23) eliscinsky: B G1 Earth\n\n24) capi3101: Discover B2 Tav R3 Shin\n\n25) eliscinsky: S Y2 Eliscinsky\nM G1 Earth Tav\nM G1 Earth Tav\n\n26) capi3101: M Y2 Tav Shin\n\n27) eliscinsky: S R2 Earth\nA R1 Tav\nA B1 Tav\n\n28) capi3101: Trade Y1 G1 Capi3101\n\n29) eliscinsky: Trade G1 Y1 Tav\n\tcapi3101: I thought you might...\n\n30) capi3101: Sacrifice G1 Capi3101\nBuild B1 Shin\n\n31) eliscinsky: Build B2 Tav\n\teliscinsky: :D\n\n32) capi3101: Trade B2 G2 Shin\n\n33) eliscinsky: Trade B2 Y2 Tav\n\n34) capi3101: B B2 Shin\n\n35) eliscinsky: Build B2 Tav\n\n36) capi3101: T B1 R1 Shin\n\n37) eliscinsky: Sacrifice Y2 Tav\nMove Y1 Tav Capi3101\nMove B1 Tav Capi3101\n\n38) capi3101: S R1 Shin\nA B1 Capi3101\n\n39) eliscinsky: Sacrifice R1 Tav\nAttack B1 Capi3101\n\n40) capi3101: T Y3 R3 Capi3101\n\tcapi3101: Let&#146;s see if this plays out the way I think it will.\n\n41) eliscinsky: B B1 Capi3101\n\n42) capi3101: Build B3 Shin\n\n43) eliscinsky: T B1 R1 Capi3101\n\tcapi3101: No, that wasn&#146;t what I thought was going to happen at all, and yeah, that&#146;s what I think I really want to do. Ugh.\n\n44) capi3101: A R1 Capi3101\n\n45) eliscinsky: T G1 R1 Tav\n\teliscinsky: Trying new tactics. Don&#39;t know if it&#39;ll workout. :/\n\n46) capi3101: Attack B1 Capi3101\n\n47) eliscinsky: Move Y1 Capi3101 Tav\n\n48) capi3101: Trade R3 Y3 Capi3101\n\n49) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: ... and this is what happens when someone miscalculates late at night.  LOL\n\n50) capi3101: Move B3 Shin Tav\n\tcapi3101: Honestly thought you were going to blow my blue at my HW. Glad to have the reprieve; I&#39;ll see if it lasts.\n\n51) eliscinsky: B B1 Tav\n\n52) capi3101: Trade B3 G3 Tav\n\n53) eliscinsky: Build R2 Tav\n\teliscinsky: Thought about it, but then didn&#39;t have the next phase setup.  &quot;You&#39;re welcome&quot;  haha\n\n54) capi3101: Build G1 Tav\n\n55) eliscinsky: Build R2 Tav\n\n56) capi3101: S G3 Tav\nB G1 Tav\nB G2 Tav\nB G3 Shin\nC Tav G\n\n57) eliscinsky: T G1 B1 Eliscinsky\n\n58) capi3101: Sacrifice G3 Shin\nBuild B2 Capi3101\nBuild B3 Shin\nBuild R1 Capi3101\n\tcapi3101: Danke.\n\n59) eliscinsky: Discover B1 Eliscinsky G3 Watermelon\n\tcapi3101: On second thought...\n\n60) capi3101: Build B3 Shin\n\n61) eliscinsky: B B3 Watermelon\n\teliscinsky: This is getting interesting ;)\n\tcapi3101: Indeed. Hope you weren&#146;t planning on doing much with your ships at Tav...    &gt;;)&gt;\n\n62) capi3101: Sacrifice B2 Capi3101\nTrade B2 R2 Shin\nTrade B3 Y3 Shin\n\n63) eliscinsky: Trade B3 Y3 Watermelon\n\n64) capi3101: S Y2 Shin\nM Y3 Shin Eliscinsky\nM B3 Shin Eliscinsky\n\n\tcapi3101: Action Stations.\n\teliscinsky: Yep, you got me. \n\teliscinsky: GG,I&#39;ll have to work on my strategy for next time. ;) Lol\n\tcapi3101: GG.\n\nHomeworlds Online (SDG# 36389)\nStarted: 2020.5.25, Ended: 2020.7.18\nParticipants: MobyNostromo (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld R1 G3 B3\n\tcapi3101: Howdy. Was going through my list of games today and was dismayed to find I only had a Zendo game going, and nothing else...\n\n2) MobyNostromo: H Y1 B2 G3\n\tMobyNostromo: Well, let&#39;s fix that with a game of Homeworlds. Now, you at least have two.\n\n3) capi3101: Build B1 Capi3101\n\n4) MobyNostromo: B G1 Mobynostromo\n\tcapi3101: Best of luck.\n\tMobyNostromo: Thank you. You too.\n\n5) capi3101: Trade B1 Y1 Capi3101\n\n6) MobyNostromo: T G1 Y1 Mobynostromo\n\n7) capi3101: Build Y2 Capi3101\n\n8) MobyNostromo: B Y2 Mobynostromo\n\n9) capi3101: D Y2 Capi3101 G2 Resh\n\n10) MobyNostromo: D Y2 Mobynostromo B3 Sapphire\n\n11) capi3101: Build B1 Capi3101\n\n12) MobyNostromo: B G1 Mobynostromo\n\n13) capi3101: Build B1 Capi3101\n\n14) MobyNostromo: B G1 Mobynostromo\n\n15) capi3101: Move B1 Capi3101 Resh\n\n16) MobyNostromo: M G1 Mobynostromo Sapphire\n\n17) capi3101: Build Y2 Resh\n\n18) MobyNostromo: B Y3 Sapphire\n\n19) capi3101: Build Y3 Capi3101\n\n20) MobyNostromo: T Y3 R3 Sapphire\n\n21) capi3101: Trade B1 R1 Capi3101\n\n22) MobyNostromo: D G1 Mobynostromo B3 Ultramarine\n\n23) capi3101: Trade Y2 R2 Resh\n\n24) MobyNostromo: T Y1 B1 Mobynostromo\n\n25) capi3101: D B1 Resh G3 Qoph\n\n26) MobyNostromo: B G1 Mobynostromo\n\n27) capi3101: Build B1 Qoph\n\n28) MobyNostromo: S G3 Mobynostromo\nB G2 Sapphire\nB G2 Ultramarine\nB G3 Mobynostromo\n\n29) capi3101: Sacrifice Y2 Resh\nMove B1 Qoph Mobynostromo\nMove B1 Qoph Mobynostromo\nCatastrophe Mobynostromo B\n\n30) MobyNostromo: M R3 Sapphire Resh\n\n31) capi3101: Build R1 Resh\n\n32) MobyNostromo: S G3 Mobynostromo\nB G3 Mobynostromo\nB G3 Sapphire\nB Y1 Sapphire\n\n33) capi3101: Discover Y1 Capi3101 B2 Tsade\n\n34) MobyNostromo: S Y1 Sapphire\nM R3 Resh Mobynostromo\n\n35) capi3101: B Y1 Capi3101\n\n36) MobyNostromo: T G2 R2 Sapphire\n\n37) capi3101: D Y1 Capi3101 G2 Peh\n\n38) MobyNostromo: S G3 Mobynostromo\nB G3 Mobynostromo\nB R2 Sapphire\nB Y2 Sapphire\n\n\n\n39) capi3101: B Y2 Peh\n\n40) MobyNostromo: D R2 Sapphire B2 Steel\n\n41) capi3101: S Y3 Capi3101\nM Y1 Tsade Mobynostromo\nM Y1 Peh Mobynostromo\nM Y2 Peh Mobynostromo\nC Mobynostromo Y\n\tcapi3101: Just realized I could make that move, otherwise I&#146;d have called Action Stations...\n\tMobyNostromo: I didn&#39;t see it either. Well done!!\n\tcapi3101: Thanks for the game.\n\n\nHomeworlds Online (SDG# 36416)\nVariants: &quot;No undo, Unrated&quot;\nStarted: 2020.5.25, Ended: 2020.6.18\nParticipants: capi3101 (S), rho0 (N)\nWinner: capi3101\n\n\nHomeworlds Online (SDG# 36353)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.5.25, Ended: 2020.5.29\nParticipants: capi3101 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) capi3101: Homeworld B1 G3 B3 *\n\tcapi3101: Howdy.\n\n3) wil: B G1 Wil\n\twil: Straight for the blue freezeout!\n\twil: Thanks for the challenge, I like the boldness!\n\n4) capi3101: B B1 Capi3101\n\tcapi3101: No problem; I&#146;ll try to put up more of a fight before I lose this time...\n\n5) wil: B G1 Wil\n\n6) capi3101: T B3 Y3 Capi3101\n\twil: That is the game, try a gambit, see if it gets countered, try again.\n\n7) wil: D G1 Wil B3 B3\n\n8) capi3101: B B2 Capi3101\n\n9) wil: Discover G1 Wil B3 Be3\n\n10) capi3101: Discover B2 Capi3101 G2 Papa\n\n11) wil: B G1 Wil\n\tcapi3101: Been working backwards through the NATO phonetic alphabet these last couple of games...pretty sure I was up to &#39;P&#39;, hence.\n\n12) capi3101: Build Y1 Capi3101\n\twil: I&#39;m just a s simple man, sending my space ships to solar systems with simple names...\n\twil: I try not to get attached, makes it easier to abandon the star \n\tcapi3101: Makes sense. There&#39;s definitely utility in having short names, I&#39;ve come to realize.\n\tcapi3101: Looks like I&#39;m about to get locked out of green...\n\n13) wil: Sacrifice G3 Wil\nBuild G2 B3\nBuild G2 Be3\nBuild G3 Wil\n\n14) capi3101: Sacrifice Y1 Capi3101\nDiscover B2 Papa G3 Oscar\n\n15) wil: B G2 Wil\n\n16) capi3101: Build B2 Oscar\n\twil: The goal of monopolizing an economy is first maintaining the monopoly then capitalizing on it by building massive fleets of primarily large ships.\n\n17) wil: D G2 Wil B3 Bee3\n\n18) capi3101: B B2 Capi3101\n\tcapi3101: Decisions.\n\n19) wil: T G3 R3 Wil\n\tcapi3101: A bad move.\n\n20) capi3101: Trade B1 R1 Capi3101\n\n21) wil: B G3 B3\n\tcapi3101: Apologies for the delay; I&#39;ve been working on a video for Bill Adams&#39;s stackable Icehouse origami piece design lately. I&#39;ve spent a good chunk of the morning in post. Still not done.\r\n\r\nIt&#39;s not my paying job either, so...\n\twil: No worries, like to see the link when it is ready.\n\n22) capi3101: Build B1 Oscar\n\tcapi3101: I&#39;ll be posting the link to the FB group later this evening.\n\n23) wil: Trade G3 Y3 B3\n\n24) capi3101: T B2 Y2 Oscar\n\twil: Cool!  In this game when you started with the blue instafreeze I usually immediately get a blue 3 to catch up...but instead I thought I could keep you from getting a big ship by making them all stars...then I really don&#39;t care if you have a blue monopoly...but also gained the green monopoly, and will now try to get all the large ships.\n\n25) wil: B G3 Be3\n\n26) capi3101: Build B2 Oscar\n\n27) wil: Trade G3 Y3 Be3\n\n28) capi3101: Build Y1 Oscar\n\n29) wil: Discover G2 Be3 Y2 Y2\n\n30) capi3101: Build Y1 Capi3101\n\n31) wil: Build G3 Be3\n\n32) capi3101: Move B1 Oscar Wil\n\n33) wil: Attack B1 Wil\n\twil: building strong fortified outposts, ready to advance into enemy territory.  \n\tcapi3101: Strike now or lose the chance...\n\tcapi3101: Dammit.\n\n34) capi3101: S Y2 Oscar\nM B2 Oscar Wil\nM B2 Oscar Wil\nC Wil B\n\n35) wil: Sacrifice G3 Be3\nBuild G3 Be3\nBuild Y1 B3\nBuild Y2 Be3\n\twil: nice hail mary\n\tcapi3101: Yeah, I&#146;m short one move.\n\n36) capi3101: M Y1 Oscar Wil\n\tcapi3101: At least I drew blood. That&#146;s more that can be said for our matches to date.\n\n37) wil: Attack Y1 Wil\n\twil: Yes blowing up half a homeworld feels good...but unless you have the armament to take out the other half...it is mute.  So I shall gather all the items needed for catastrophe...\r\n\r\nbut it does feel good!\r\n\n\n38) capi3101: M Y3 Capi3101 Wil\n\n39) wil: S Y3 Be3\nM R3 Wil Capi3101\nM Y1 Wil Bee3\nM G2 B3 Wil\n\twil: nice job!...such fun.\n\n40) capi3101: Build R1 Capi3101\n\n41) wil: T G3 R3 Be3\n\tcapi3101: Ha! I knew you weren&#39;t going to just let me sit there and doomsmonth you... Well-played.\n\tcapi3101: And I once again manage to snatch defeat from the relentless jaws of victory...\n\tcapi3101: Well...\n\n42) capi3101: Build R1 Capi3101\nCatastrophe Capi3101 R\n\tcapi3101: I&#39;m still doomed, I think.\n\n43) wil: B Y3 Be3\n\twil: Quite the battle, ya done well!\n\n44) capi3101: Sacrifice B2 Capi3101\nTrade Y3 R3 Wil\nPass\n\tcapi3101: Here it comes...\n\n45) wil: T Y3 R3 Be3\n\twil: I never had the patience in chess to look 3 moves ahead...and I don&#39;t here either.  Shoot from the hip r us.\n\n46) capi3101: Attack G2 Wil\n\n47) wil: S Y2 Be3\nM R3 Be3 Wil\nM Y3 B3 Wil\n\n48) capi3101: Attack R3 Wil\n\n49) wil: S R3 Be3\nA R3 Wil\nA G2 Wil\nA R3 Wil\n\twil: I think I slipped out of a sticky wicket!  However it ends, excellent effort!\n\n\tcapi3101: Red catastrophe crossed my mind. Don&#146;t know why I didn&#146;t go with it - it would&#146;ve been much more dramatic. Must&#146;ve been distracted...\n\tcapi3101: So from here, I build y2, you move in R3, I build Y3, you take your pick of finishing me off-either sacrificing the other R3 to snap up all the pieces at once or moving in yellow to cat all my ships. Game&#146;s up in two either way.\n\tcapi3101: I&#146;ll have to go back and look to see if I could&#146;ve waited the one turn to build another yellow ship. I think impatience killed me this time. I&#146;m definitely going to mention this game to Babamots for his strategy guide.\n\tcapi3101: Anyway, good game.\n\twil: It definitely got dicey...  I can&#39;t wait till working ai actually figures out this game.  There has got to be the best move at each point, and the job is to capitalize on it when anyone makes less than that.\n\tBabamots: I love the ending of this game! Do you mind if I borrow it as an example for my site? I think it&#39;s very instructive.\n\tcapi3101: I&#39;ve got no problems with that; figured it&#39;d be a good one to send your way.\n\nHomeworlds Online (SDG# 36531)\nStarted: 2020.5.26, Ended: 2020.6.7\nParticipants: tkvaran (S), Gemmer (N)\nWinner: tkvaran\n\n1) Gemmer: Homeworld B3 G2 Y3\n\n2) tkvaran: Homeworld G2 B1 R3\n\n3) Gemmer: Build Y1 Gemmer\n\n4) tkvaran: Build R1 Tkvaran\n\n5) Gemmer: Discover Y1 Gemmer B1 Perry\n\n6) tkvaran: Trade R1 Y1 Tkvaran\n\n7) Gemmer: Trade Y1 G1 Perry\n\n8) tkvaran: Trade Y1 B1 Tkvaran\n\n9) Gemmer: Build Y1 Gemmer\n\n10) tkvaran: Build B2 Tkvaran\n\n11) Gemmer: Trade Y1 R1 Gemmer\n\n12) tkvaran: Trade B2 Y2 Tkvaran\n\n13) Gemmer: Build R1 Gemmer\n\n14) tkvaran: Discover Y2 Tkvaran G3 Rickilake\n\n15) Gemmer: Move R1 Gemmer Perry\n\n16) tkvaran: Build Y1 Rickilake\n\n17) Gemmer: Build Y1 Gemmer\n\n18) tkvaran: Discover Y2 Rickilake G1 Montel\n\n19) Gemmer: Trade Y1 G1 Gemmer\n\n20) tkvaran: Build B2 Tkvaran\n\n21) Gemmer: Build G2 Perry\n\n22) tkvaran: Trade B2 Y2 Tkvaran\n\n23) Gemmer: Sacrifice G2 Perry\nBuild G2 Perry\nBuild G3 Gemmer\n\n24) tkvaran: Move B1 Tkvaran Rickilake\n\n25) Gemmer: Build G3 Perry\n\n26) tkvaran: Sacrifice Y2 Montel\nDiscover B1 Rickilake R1 Sallyjessie\nMove Y1 Rickilake Sallyjessie\n\n27) Gemmer: Sacrifice G3 Perry\nBuild R2 Perry\nBuild Y1 Gemmer\nBuild R2 Gemmer\n\n28) tkvaran: Trade B1 G1 Sallyjessie\n\n29) Gemmer: Move G3 Gemmer Sallyjessie\n\n30) tkvaran: Discover G1 Sallyjessie B3 Oprah\n\n31) Gemmer: Attack Y1 Sallyjessie\n\n32) tkvaran: Build G3 Oprah\n\n33) Gemmer: Trade G2 Y2 Perry\n\n34) tkvaran: Trade G3 R3 Oprah\n\n35) Gemmer: Discover R2 Perry Y3 Dent\n\n36) tkvaran: Build G2 Oprah\n\n37) Gemmer: Sacrifice G3 Sallyjessie\nBuild G3 Gemmer\nBuild G3 Perry\nBuild R2 Dent\n\n38) tkvaran: Build Y1 Tkvaran\n\n39) Gemmer: Sacrifice G3 Perry\nBuild G3 Perry\nBuild R3 Dent\nBuild Y2 Sallyjessie\n\n40) tkvaran: Sacrifice Y2 Tkvaran\nMove G1 Oprah Perry\nMove G1 Perry Gemmer\nCatastrophe Gemmer Green\n\n41) Gemmer: Discover R2 Dent G2 Hampton\n\n42) tkvaran: Build G1 Oprah\n\n43) Gemmer: Discover R1 Perry G3 Singletary\n\n44) tkvaran: Build Y2 Tkvaran\n\n45) Gemmer: Sacrifice G3 Perry\nBuild Y3 Perry\nBuild G1 Perry\nBuild G3 Perry\n\n46) tkvaran: Trade Y1 B1 Tkvaran\n\n47) Gemmer: Sacrifice Y3 Perry\nMove R2 Dent Tkvaran\nMove R1 Gemmer Tkvaran\nMove R1 Singletary Tkvaran\nCatastrophe Tkvaran Red\n\n48) tkvaran: Sacrifice Y2 Tkvaran\nMove R3 Oprah Tkvaran\nMove G2 Oprah Tkvaran\n\n49) Gemmer: Move G1 Perry Gemmer\n\n50) tkvaran: Build B2 Tkvaran\n\n51) Gemmer: Trade Y2 B2 Perry\n\n52) tkvaran: Trade B1 Y1 Tkvaran\n\n53) Gemmer: Sacrifice Y1 Gemmer\nMove B2 Perry Dent\n\n54) tkvaran: Build G3 Oprah\n\n55) Gemmer: Build G3 Gemmer\n\n56) tkvaran: Trade G3 Y3 Oprah\n\n57) Gemmer: Sacrifice Y2 Sallyjessie\nMove G1 Gemmer Tkvaran\nMove G3 Gemmer Tkvaran\nCatastrophe Tkvaran Green\n\n58) tkvaran: Discover B2 Tkvaran G2 Donahue\n\n59) Gemmer: Trade R3 B3 Dent\n\n60) tkvaran: Build B1 Donahue\n\n61) Gemmer: Move B3 Dent Donahue\n\n62) tkvaran: Sacrifice Y3 Oprah\nMove B1 Donahue Gemmer\nMove B2 Donahue Gemmer\nPass\n\n63) Gemmer: Attack B2 Gemmer\n\n64) tkvaran: Sacrifice G1 Oprah\nBuild B2 Gemmer\nCatastrophe Gemmer Blue\n\n\nHomeworlds Online (SDG# 36547)\nVariants: &quot;Unrated&quot;\nStarted: 2020.5.30, Ended: 2020.7.27\nParticipants: amoscai (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R1 B3 G3\n\n2) amoscai: Homeworld Y1 B2 G3\n\tBabamots: You don&#39;t seem to need any advice from me, so I&#39;ll keep it to myself this time ;-). Good luck!\n\tamoscai: haha! that&#39;s not true! but have fun (:\n\n3) Babamots: Build G1 Babamots\n\n4) amoscai: Build G1 Amoscai\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) amoscai: Trade G1 Y1 Amoscai\n\n7) Babamots: Build Y2 Babamots\n\n8) amoscai: Build Y2 Amoscai\n\n9) Babamots: Build Y2 Babamots\n\n10) amoscai: Discover Y1 Amoscai G3 Alpha\n\n11) Babamots: Discover Y2 Babamots G2 Risa\n\n12) amoscai: Build Y3 Alpha\n\n13) Babamots: Build Y3 Risa\n\n14) amoscai: Trade Y2 R2 Amoscai\n\n15) Babamots: Trade Y2 R2 Babamots\n\n16) amoscai: Build R1 Amoscai\n\n17) Babamots: Build Y2 Babamots\n\n18) amoscai: Move Y1 Alpha Risa\n\n19) Babamots: Sacrifice R2 Babamots\nAttack Y1 Risa\nPass\n\n20) amoscai: Move Y3 Alpha Risa\nCatastrophe Risa Yellow\n\n21) Babamots: Build Y1 Babamots\n\n22) amoscai: Trade R2 Y2 Amoscai\n\n23) Babamots: Discover Y1 Babamots G2 Risa\n\n24) amoscai: Build R1 Amoscai\n\n25) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y3 Risa\nBuild Y3 Babamots\n\n26) amoscai: Build R2 Amoscai\n\n27) Babamots: Trade Y3 G3 Babamots\n\n28) amoscai: Build G1 Amoscai\n\n29) Babamots: Build Y3 Babamots\n\n30) amoscai: Discover R2 Amoscai Y3 Sira\n\n31) Babamots: Trade Y2 R2 Babamots\n\n32) amoscai: Build R2 Amoscai\n\n33) Babamots: Move R2 Babamots Risa\n\n34) amoscai: Move R1 Amoscai Sira\n\n35) Babamots: Move Y3 Risa Sira\n\n36) amoscai: Move Y2 Amoscai Sira\n\n37) Babamots: Sacrifice R2 Risa\nAttack R2 Sira\nAttack Y2 Sira\n\n38) amoscai: Move R1 Sira Risa\n\n39) Babamots: Build Y2 Risa\n\n40) amoscai: Trade R1 B1 Amoscai\n\n41) Babamots: Build G1 Babamots\n\n\tBabamots: Let me know if you come back and want another game!\n\nHomeworlds Online (SDG# 36548)\nVariants: &quot;Unrated&quot;\nStarted: 2020.6.1, Ended: 2020.7.9\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R2 B3 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\tBabamots: Haven&#39;t tried a fortress in a while. Let&#39;s see what happens. Good luck!\n\n3) Babamots: Build G1 Babamots\n\tFelix: I haven&#39;t tried anything in a while! I&#39;m going to be rusty. Will be fun though :)\n\n4) Felix: Build G1 Felix\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Babamots: Build Y2 Babamots\n\n8) Felix: Build Y2 Felix\n\n9) Babamots: Build Y2 Babamots\n\n10) Felix: Discover Y1 Felix G2 Out\n\n11) Babamots: Discover Y2 Babamots G1 Risa\n\n12) Felix: Build Y3 Out\n\n13) Babamots: Build Y3 Risa\n\n14) Felix: Trade Y2 R2 Felix\n\n15) Babamots: Trade Y2 R2 Babamots\n\n16) Felix: Discover Y1 Out G1 Clorox\n\n17) Babamots: Build Y2 Babamots\n\n18) Felix: Build Y2 Out\n\n19) Babamots: Trade Y1 B1 Babamots\n\n20) Felix: Build R1 Felix\n\n21) Babamots: Move R2 Babamots Risa\n\n22) Felix: Trade R2 B2 Felix\n\n23) Babamots: Build R1 Risa\n\n24) Felix: Move B2 Felix Out\n\n25) Babamots: Discover R1 Risa G2 Bajor\n\n26) Felix: Build B1 Out\n\n27) Babamots: Move Y2 Babamots Clorox\n\n28) Felix: Trade Y3 R3 Out\n\n29) Babamots: Build G1 Babamots\n\n30) Felix: Build G2 Felix\n\n31) Babamots: Sacrifice G3 Babamots\nBuild G3 Babamots\nBuild G3 Babamots\nBuild R1 Risa\n\n32) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Clorox\nBuild Y3 Out\n\n33) Babamots: Trade G3 Y3 Babamots\n\n\tBabamots: I need to focus on other things for a while, so I&#39;m cleaning my plate.\n\tFelix: Whoops. Sorry! Got a lot on my plate too right now.\n\nHomeworlds Online (SDG# 36562)\nVariants: &quot;Hard time&quot;\nStarted: 2020.6.2, Ended: 2020.6.6\nParticipants: deanthebean (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) deanthebean: Homeworld R1 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tdeanthebean: Hello. Have fun!\n\n4) deanthebean: Build G1 Deanthebean\n\tdeanthebean: build g1\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) deanthebean: Build G1 Deanthebean\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\n8) deanthebean: Trade G3 R3 Deanthebean\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n10) deanthebean: Trade G1 Y1 Deanthebean\n\n11) Draw5PlayAll: Discover R1 Draw5playall G2 Rocket\n\n12) deanthebean: Trade R3 G3 Deanthebean\n\n13) Draw5PlayAll: Build R2 Rocket\n\tdeanthebean: This is not going well...\n\n14) deanthebean: Build Y1 Deanthebean\n\tDraw5PlayAll: Good.\n\n15) Draw5PlayAll: Build R2 Rocket\n\n\tdeanthebean: I think I&#39;ll give up this one as well. The lack of red is killing me. \n\nHomeworlds Online (SDG# 36573)\nStarted: 2020.6.4, Ended: 2020.6.8\nParticipants: drstclair (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld R1 B2 G3\n\n2) drstclair: Homeworld G2 B1 Y3\n\teliscinsky: Greetings drstclair!  GL &amp; HF\n\n3) eliscinsky: B G1 Eliscinsky\n\n4) drstclair: Build Y1 Drstclair\n\n5) eliscinsky: T G1 Y1 Eliscinsky\n\tdrstclair: Hello! GL &amp; HF\n\n6) drstclair: Discover Y1 Drstclair G3 Squish\n\n7) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: My this universe seems small ;)\n\n8) drstclair: Build Y1 Drstclair\n\tdrstclair: Quite. Btw, the middle system is named in honor of my cat, Squishbutt\n\n9) eliscinsky: D G1 Eliscinsky B3 Blueberry\n\n10) drstclair: Build Y2 Drstclair\n\teliscinsky: Cute name \n\n11) eliscinsky: Build G1 Blueberry\n\n12) drstclair: Trade Y2 B2 Drstclair\n\n13) eliscinsky: Build Y2 Eliscinsky\n\n14) drstclair: Build Y2 Drstclair\n\n15) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y1 Eliscinsky Blueberry\nMove Y1 Blueberry Drstclair\nCatastrophe Drstclair Y\n\n16) drstclair: Build B1 Drstclair\n\n17) eliscinsky: Trade G1 R1 Blueberry\n\n18) drstclair: Build Y1 Squish\n\n19) eliscinsky: B G1 Blueberry\n\n20) drstclair: Trade B2 R2 Drstclair\n\n21) eliscinsky: Build G1 Eliscinsky\n\n22) drstclair: Build R1 Drstclair\n\n23) eliscinsky: T G1 Y1 Eliscinsky\n\n24) drstclair: Sacrifice Y1 Squish\nMove R2 Drstclair Blueberry\n\n25) eliscinsky: B R2 Blueberry\n\n26) drstclair: Sacrifice R1 Drstclair\nAttack R2 Blueberry\n\n27) eliscinsky: B R1 Blueberry\nC Blueberry R\n\n28) drstclair: Build B1 Drstclair\n\n29) eliscinsky: B G1 Eliscinsky\n\n30) drstclair: Trade B1 Y1 Drstclair\n\n31) eliscinsky: T G1 B1 Blueberry\n\n32) drstclair: Build Y2 Drstclair\n\n33) eliscinsky: Build Y2 Eliscinsky\n\n34) drstclair: Trade Y2 R2 Drstclair\n\n35) eliscinsky: Build B2 Blueberry\n\n36) drstclair: Sacrifice Y1 Drstclair\nMove B1 Drstclair Blueberry\nCatastrophe Blueberry Blue\n\n37) eliscinsky: Trade G1 R1 Eliscinsky\n\n38) drstclair: Build R1 Drstclair\n\n39) eliscinsky: Build R2 Eliscinsky\n\n40) drstclair: Trade R2 Y2 Drstclair\n\n41) eliscinsky: T R1 B1 Eliscinsky\n\n42) drstclair: Move R1 Drstclair Squish\n\n43) eliscinsky: S Y2 Eliscinsky\nM G3 Eliscinsky Squish\nM G3 Squish Drstclair\n\n44) drstclair: Build Y1 Drstclair\n\n45) eliscinsky: Sacrifice R2 Eliscinsky\nAttack Y2 Drstclair\nAttack Y1 Drstclair\n\n\tdrstclair: Thanks for playing. It was my first play of Homeworlds ever, so I wasn&#39;t much of a challenge\n\teliscinsky: TY for a good game. Try me anytime for a rematch.\n\tdrstclair: Will do! I&#39;ve got another game going on as well, so I&#39;ll finish that one and then send a rematch!\n\nHomeworlds Online (SDG# 36396)\nVariants: &quot;Sinister&quot;\nStarted: 2020.6.5, Ended: 2020.7.22\nParticipants: Draw5PlayAll (S), eliscinsky (W), capi3101 (N), dimitrivv (E)\nWinner: capi3101\n\n1) capi3101: Homeworld G1 B3 Y3\n\tcapi3101: Greetings all, and best of luck.\n\n2) dimitrivv: Homeworld R3 G1 B3\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\tdimitrivv: Hi all, my first multiplayer game, I&#39;m excited. I&#39;ll try not to make it end too quickly... :) GG\n\n4) eliscinsky: H B3 R2 G3\n\tDraw5PlayAll: I should have an easy time with two G1s gone...\n\tdimitrivv: I actually see that I already made capi3101&#39;s life easy to come visit me... that was a quick bad start... :S\n\n5) capi3101: Build Y1 Capi3101\n\teliscinsky: Greetings everyone. I hope this is a good game for everyone. Please remember this is a Sinister game. So your focus will be the person to your left to attack and remove, but Beware of the person to your right as they will be doing the same to you. Good luck, have fun, here we go.\n\tcapi3101: Okay...so dimitrivv is my target and eliscinsky is going to try to do me in. \r\n\r\nGreen is going to disappear pretty fast, looks like. \n\tcapi3101: Still starts the same way.\n\n6) dimitrivv: Build B1 Dimitrivv\n\tDraw5PlayAll: I think I will go ahead and target dimitrivv because e will be attacking me and I do not want capi to steal a quick win.\r\n\r\nThen again, maybe capi emself is a better target...\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\tdimitrivv: I guess I&#39;ll have to juggle my defense against two then :S but if I can, I will probably have to focus on attacking capi3101 just to get the threat out of the way myself, since I&#39;m too much of an easy target with these stars otherwise...\n\tcapi3101: I suppose all of y&#39;all might be situational targets. I mean, I don&#39;t have a direct quarrel with Draw5PlayAll, but I might have to make moves to foil your plays if, as a result of them, you wind up winning the whole shebang.\r\n\r\nThis could be a very interesting match...\n\tcapi3101: Changing topics, when it comes to naming new systems, what conventions do y&#39;all use? My own self, I either do the NATO phoetic or the Hebrew Alphabet. Lately I&#39;ve been doing the two of them backwards.\n\teliscinsky: As for naming systems .. I use either Star Trek worlds, or fruit names, or sometimes codes like G3a, or just random names.  LOL sorry.  Think I&#39;ll try fruit and veggie names this game.\n\n8) eliscinsky: B G1 Eliscinsky\n\tDraw5PlayAll: You may or may not be able to figure out MY current naming conventions as a result of this game.\r\n\r\nObviously my previous post was a total bluff designed to trick eliscinsky into a false sense of security. After all, I would *never* come out and admit something like that directly without hiding something behind my back...\r\n\r\n...or was it?\n\n9) capi3101: Build Y1 Capi3101\n\teliscinsky: LOL!\n\n10) dimitrivv: Trade B3 Y3 Dimitrivv\n\n11) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tdimitrivv: I don&#39;t have a star naming convention, so I&#39;ll probably make names up on the spot :)\r\n\r\nAnd regarding strategy, I think I stated the obvious, actual strategy of course will depend on the play state :P\n\n12) eliscinsky: T G1 Y1 Eliscinsky\n\n13) capi3101: T Y1 R1 Capi3101\n\n14) dimitrivv: Build Y1 Dimitrivv\n\n15) Draw5PlayAll: Build G1 Draw5playall\n\n16) eliscinsky: B G1 Eliscinsky\n\n17) capi3101: Discover Y1 Capi3101 G2 Tav\n\n18) dimitrivv: Move Y1 Dimitrivv Tav\n\n19) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n20) eliscinsky: T G1 R1 Eliscinsky\n\n21) capi3101: T Y3 B3 Capi3101\n\n22) dimitrivv: Build B1 Dimitrivv\n\n23) Draw5PlayAll: Discover R1 Draw5playall G3 Rocket\n\n24) eliscinsky: D R1 Eliscinsky G1 Pea\n\n25) capi3101: Trade B3 G3 Capi3101\n\n26) dimitrivv: Move B1 Dimitrivv Tav\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) eliscinsky: Sacrifice Y1 Eliscinsky\nDiscover R1 Pea G2 Avacado\n\tdimitrivv: I couldn&#39;t find the info: how do you use the sacrifice and catastrophe actions on SDG? Do you give all commands at once, or one after the other? (but then, how does the game know to wait before handing over the turn?)\n\tcapi3101: You just put them in line by line. So you&#39;d start with &quot;s y3 dimitrivv&quot; on the first line, then below it you&#39;d type &quot;m b1 dimittrivv Tav&quot; on the line below that. For any sacrifice plays to which you&#39;re entitled but which you don&#39;t want to move, you&#39;d put &quot;pass&quot; on a line by itself. And then the catastrophe plays are in whatever piece of the sequence you&#39;d want them in, but again they&#39;re on their own line.\n\tcapi3101: Andy Looney recently posted a rather clever situation on Facebook where the player catastrophed their own star early on in the sequence to free up the material needed to catastrophe their opponent&#39;s homeworld for the win...\n\tcapi3101: (No wishful thinking going on in the examples there on my first post. Just clarifying. Nope. None whatsoever...)\n\tDraw5PlayAll: You realize that if dmitrivv suicides then you do not get credit because ey didn&#39;t die by YOUR move? You would just have to target me.\n\n29) capi3101: Build G1 Capi3101\n\teliscinsky: dimitrivv here is what I just did. \\n\r\n\\n\r\ns y1 eliscinsky \\n\r\nd r1 Pea g2 Avacado \\n\n\tdimitrivv: Thanks :D btw I also found the info here: http://superdupergames.wikidot.com/games:homeworlds\r\nImo this link should be at the top together with the commands summary.\n\tcapi3101: (I was just writing an example. Geez...... &gt;:) )\n\n30) dimitrivv: T B1 R1 Tav\n\n31) Draw5PlayAll: Build R2 Rocket\n\n32) eliscinsky: Build R2 Avacado\n\n33) capi3101: Build R2 Capi3101\n\n34) dimitrivv: Build R2 Tav\n\n35) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R1 Rocket G2 Dreams\n\n36) eliscinsky: B G1 Eliscinsky\n\n37) capi3101: Sacrifice Y1 Tav\nDiscover R2 Capi3101 Y2 Shin\n\n38) dimitrivv: Build R3 Tav\n\n39) Draw5PlayAll: Build R3 Rocket\n\n40) eliscinsky: B G2 Eliscinsky\n\n41) capi3101: Build R3 Capi3101\n\teliscinsky: WOW! What a show of strength from everyone. LOL - Wonder how that&#39;s going to play out. \n\n42) dimitrivv: Discover R2 Tav G3 Clover\n\tdimitrivv: Haha yeah, I thought of spicing things up a bit with the reds :D\r\nI&#39;ve played just a few games of Homeworlds so far and this is my first multiplayer, but I&#39;m having a blast! So simple yet so strategic and varied!\n\tcapi3101: Y&#39;all are focusing too heavily on red. Quoth Scotty: &quot;Without engines, there&#39;d be no fighting...&quot;\n\tcapi3101: Now that I&#39;ve said that...\n\n43) Draw5PlayAll: Build R3 Dreams\n\teliscinsky: Fighting is &quot;COOL&quot;, but blowing up stars is the way to go.  ;)\n\n44) eliscinsky: Trade G1 Y1 Eliscinsky\n\n45) capi3101: Trade G1 Y1 Capi3101\n\n46) dimitrivv: Build Y1 Tav\n\n47) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n48) eliscinsky: S G2 Eliscinsky\nB Y2 Eliscinsky\nB Y2 Eliscinsky\n\n49) capi3101: D R3 Capi3101 G2 Resh\n\tDraw5PlayAll: That was close\n\n50) dimitrivv: B B1 Dimitrivv\n\n51) Draw5PlayAll: Build Y2 Draw5playall\n\n52) eliscinsky: T Y1 B1 Eliscinsky\n\n53) capi3101: B G1 Capi3101\n\tDraw5PlayAll: Five systems are green and entirely occupied by red ships.\n\n54) dimitrivv: Move B1 Dimitrivv Tav\n\n55) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n56) eliscinsky: Sacrifice B1 Eliscinsky\nTrade R1 G1 Avacado\n\n57) capi3101: Trade G3 Y3 Capi3101\n\n58) dimitrivv: Build R1 Clover\n\n59) Draw5PlayAll: Move B1 Draw5playall Rocket\n\n60) eliscinsky: Discover Y2 Eliscinsky B1 Blueberry\n\n61) capi3101: Move Y1 Capi3101 Resh\n\n62) dimitrivv: Trade R3 G3 Tav\n\n63) Draw5PlayAll: Trade R2 Y2 Rocket\n\n64) eliscinsky: B R2 Avacado\n\n65) capi3101: Sacrifice G1 Capi3101\nBuild R3 Shin\n\n66) dimitrivv: Discover Y1 Tav B3 Mystique\n\n67) Draw5PlayAll: Build B1 Rocket\n\n68) eliscinsky: B G1 Eliscinsky\n\n69) capi3101: Build Y1 Resh\n\n70) dimitrivv: T Y1 G1 Mystique\n\n71) Draw5PlayAll: Move B1 Rocket Dreams\n\n72) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Eliscinsky\nBuild G3 Eliscinsky\nBuild Y1 Blueberry\n\n73) capi3101: Move R3 Shin Blueberry\n\n74) dimitrivv: S G3 Tav\nB G3 Mystique\nB Y1 Dimitrivv\nB Y3 Tav\n\n75) Draw5PlayAll: Build Y3 Draw5playall\n\n76) eliscinsky: Build Y3 Eliscinsky\n\n77) capi3101: Attack Y2W Blueberry\n\n78) dimitrivv: Sacrifice Y1 Dimitrivv\nMove R1 Tav Mystique\n\n79) Draw5PlayAll: Build Y1 Rocket\n\n80) eliscinsky: Trade G2 B2 Eliscinsky\n\n81) capi3101: A Y1W Blueberry\n\n82) dimitrivv: Sacrifice G3 Mystique\nBuild B2 Dimitrivv\nBuild B2 Tav\nBuild G2 Mystique\n\n83) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Rocket Tav\nMove Y2 Rocket Tav\nCatastrophe Tav Yellow\n\n84) eliscinsky: Build G3 Avacado\n\n85) capi3101: Move Y1 Blueberry Shin\n\n86) dimitrivv: Discover B1 Dimitrivv Y2 Heh\n\tDraw5PlayAll: I&#39;m sorry, but you were in violation of Regulation 6.57 concerning excessive stock-piling of wormhole technology.\n\tDraw5PlayAll: In all seriousness, I&#39;m predicting capi will win.\n\n87) Draw5PlayAll: Build Y1 Draw5playall\n\tcapi3101: I appreciate the vote of confidence. Still plenty of time for me to bone this up though...\n\n88) eliscinsky: Sacrifice B2 Eliscinsky\nTrade R2 B2 Avacado\nTrade G3 B3 Avacado\n\n89) capi3101: Discover R3 Blueberry Y2 Qoph\n\tdimitrivv: Well I saw the risk and took it; I had too much haste. :) So we&#39;ll go from here and see.\n\n90) dimitrivv: Sacrifice B2 Tav\nTrade Y3 G3 Dimitrivv\nTrade R1 Y1 Clover\n\n91) Draw5PlayAll: Move Y1 Draw5playall Rocket\n\n92) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild B2 Avacado\nBuild R1 Avacado\n\n93) capi3101: Build Y3 Capi3101\n\tdimitrivv: I could actually make eliscinsky win this turn by catastrophe blue on capi&#39;s HW (reason enough was to disprove Draw5&#39;s prediction! :P), but let&#39;s see if he wins on his own instead or what else :)\n\n94) dimitrivv: S G2 Mystique\nB Y3 Clover\nB R2 Mystique\n\n95) Draw5PlayAll: Move Y3 Draw5playall Mystique\n\teliscinsky: Question is ... Did I roll a natural 20, or a 1? ;)\n\tcapi3101: Well, that&#39;s annoying...\n\n96) eliscinsky: Build G2 Avacado\n\n97) capi3101: Move Y3 Capi3101 Heh\n\n98) dimitrivv: Sacrifice Y3 Clover\nMove R1 Mystique Draw5playall\nMove R2 Mystique Draw5playall\nMove G1 Mystique Avacado\nCatastrophe Avacado Green\n\n99) Draw5PlayAll: Build Y3 Rocket\n\teliscinsky: Well, here goes everything or nothing.\n\n100) eliscinsky: Trade G1 R1 Eliscinsky\n\teliscinsky: Okay, maybe not.  Rolling for another natural 20 ...\n\n101) capi3101: Discover Y1 Resh B3 Tsade\n\n102) dimitrivv: Move B1 Heh Clover\n\tcapi3101: Going to come up at least one short.\n\n103) Draw5PlayAll: Move Y3 Mystique Tav\n\tdimitrivv: Well, I was half forced to do this and it was too cool not to do it anyway :P I think this helped capi a lot in the end but well... we&#39;ll see.\n\tdimitrivv: There were too many ships on Avacado.\n\teliscinsky: Well, that&#39;s what happens when you put all your eggs in one basket. Guess I rolled a 1.  Time to rethink and start over.\n\teliscinsky: And yes, capi no longer has to worry about me attacking and can focus completely on you dimitrivv. \n\tDraw5PlayAll: Capi, you know you can&#39;t win if dimitrivv kills me first...\n\n104) eliscinsky: Sacrifice Y3 Eliscinsky\nMove R1 Eliscinsky Blueberry\nMove R1 Blueberry Clover\nMove R1 Clover Draw5playall\nCatastrophe Draw5playall R\n\teliscinsky: Hmmm, the banter is getting interesting. LOL\n\n105) capi3101: Build Y3 Resh\n\tcapi3101: Wow...I need to come see what&#39;s going on between turns more often...\n\tcapi3101: I&#39;m reasonably certain you&#39;re not in danger of elimination, Draw5PlayAll...\n\tcapi3101: ...though as expected, the game has gotten very interesting. Do you assist the player who&#39;s attempting to kill you by attacking the player trying to kill them, or not? We&#39;ve seen it once already.\n\tcapi3101: I do this wrong and I imagine we&#39;ll see it again...\n\tDraw5PlayAll: In a sense, we have an uneasy alliance. You want to destroy east, and I want east NOT to destroy me.\n\tcapi3101: On the other hand, if I make a move that would result in dimitrivv&#39;s defeat on the next turn, and he lacks the resources needed to deflect said attack, it would fall on the other two of you to come to his aid or lose the game yourselves...\r\n\r\nI think I still want to maintain the status quo. For now at least.\n\n106) dimitrivv: Move B1 Clover Draw5playall\n\n107) Draw5PlayAll: Sacrifice R1 Dreams\nAttack B1E Draw5playall\n\n108) eliscinsky: B G1 Eliscinsky\n\teliscinsky: Time to shake things up.\n\n109) capi3101: Move R3 Resh Clover\n\n110) dimitrivv: Discover Y1 Clover G2 Envy\n\tcapi3101: My star empire is now listed on Uber, apparently.\n\tcapi3101: Got a bad feeling about what&#39;s going to happen this round, but it may turn out better than I suspect it will.\n\teliscinsky: PSA: From the Looney Labs HW Rules PDF.\r\n\r\nSinister Homeworlds: In this variation, your goal is to eliminate the person currently to your left. If anyone else causes that player&#39;s elimination, then the game continues without them. Eliminated players&#146; pieces remain in play.\r\n\r\nMY take ... If you don&#39;t eliminate the player to your left ... you don&#39;t win.  Until you eliminate the NEW player to your left.\n\tDraw5PlayAll: Yeah, I think if, say, I were to die not by dimitrivv&#39;s actions, then they would have to kill eliscinsky.\n\n111) Draw5PlayAll: Trade B1 R1 Draw5playall\n\tdimitrivv: I don&#39;t really have good moves :)\n\n112) eliscinsky: Trade G1 B1 Eliscinsky\n\tDraw5PlayAll: Neither do I.\n\n113) capi3101: Attack R2E Clover\n\n114) dimitrivv: B B2 Dimitrivv\n\tcapi3101: Let&#39;s try changing the plan slightly...\n\n115) Draw5PlayAll: Sacrifice Y3 Rocket\nMove Y3 Tav Dimitrivv\nMove R3 Dreams Dimitrivv\nDiscover B1 Dreams Y3 Recycling\n\tdimitrivv: Draw5 hypnosis... &quot;build B2 Draw5PlayAll... build B2 Draw5PlayAll... build B2 Draw5PlayAll...&quot; :D (although that wouldn&#39;t necessarily make me win)\n\tdimitrivv: actually, that&#39;s probably the only way to slow down capi?\n\tdimitrivv: I unwillingly probably suggested his best move :P (since capi&#39;s victory is as much his loss as it is mine)\n\tdimitrivv: for completeness at this point, capi would then be forced to sacrifice a Y3 to catastrophe yellow on Envy\n\tdimitrivv: (I would normally avoid suggesting upcoming moves explicitly like this; in fact my initial comment was meant as a gaming suicide joke... and it&#39;s impossible to delete the comments)\n\n116) eliscinsky: Build B2 Eliscinsky\n\n117) capi3101: S Y3 Capi3101\nM Y3 Heh Dimitrivv\nM Y3 Resh Dimitrivv\nM R3 Qoph Dimitrivv\n\n118) dimitrivv: M Y1 Envy Dimitrivv\nC Dimitrivv Yellow\n\tdimitrivv: Oh ok, apparently that move was not liked for some reason :)\n\n119) Draw5PlayAll: Sacrifice R3 Rocket\nAttack R3N Dimitrivv\nAttack G3E Dimitrivv\nAttack B2E Dimitrivv\n\n120) eliscinsky: Trade B2 R2 Eliscinsky\n\tDraw5PlayAll: Let&#39;s just stop this shenanigans.\n\tDraw5PlayAll: Then again, maybe not...\n\n121) capi3101: Move R2 Shin Dimitrivv\nCatastrophe Dimitrivv R\n\tDraw5PlayAll: Yeah, I have to.\n\n122) dimitrivv: B B2 Dimitrivv\n\teliscinsky: I think it&#39;s aboot to get wery interesting!\n\tcapi3101: Well, crap.\n\tcapi3101: I&#146;ll either win or lose it right here. Might as well try for the win.\n\n123) Draw5PlayAll: Trade G3 Y3 Dimitrivv\n\tcapi3101: Action Stations.\n\teliscinsky: CAn a single player own two (2) binary star systems?  I suppose you can.\r\n\r\nAs I said ... It&#39;s getting VERY interesting.\n\tdimitrivv: It&#39;s crowded in here... \n\n124) eliscinsky: Build G1 Eliscinsky\n\n125) capi3101: Sacrifice Y2 Blueberry\nMove R3 Clover Tav\nMove R3 Tav Capi3101\n\tDraw5PlayAll: Well, fortunately for me, capi seriously weakened themselves with that attack... (actually, we are ALL rather weak...)\r\n\r\nI think the moment East loses their last ship the dimitrivv system loses its significance as a Homeworld system.\n\n126) dimitrivv: Trade B2 R2 Dimitrivv\n\tcapi3101: Yep. That went about like I thought it would. Back to the drawing board for us all...\n\n127) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack R2E Dimitrivv\n\n128) eliscinsky: Discover R2 Eliscinsky G1 Kiwi\n\tdimitrivv: Probably won&#39;t last long at this point :) but it was a fun first multiplayer\n\n129) capi3101: Trade R1 Y1 Capi3101\n\n130) dimitrivv: B B1 Dimitrivv\n\tDraw5PlayAll: I can let eliscinsky do the honors.\n\teliscinsky: Well, as gracious as that offer from Draw5PlayAll is, I believe that honor should go to capi3101.  It is after all his responsibility to remove his left hand opponent.\r\n\r\nTo that end I grant thee dimitrivv a boon. That boon is a &quot;stay of execution&quot; and is so ordered, and is to last one turn (mine).  Good Luck dimitrivv!\r\n\r\nHappy hunting capi3101.\r\n\r\nP.S. I hope I don&#39;t regret this.\n\n131) Draw5PlayAll: Move R2 Dimitrivv Draw5playall\n\tDraw5PlayAll: You see, I am intentionally trying NOT to let capi be the one to defeat dimitrivv, so that I still have some chance of winning.\n\tcapi3101: Looks like you get to live to fight another day, dimitrivv. Don&#39;t waste the opportunity.\n\tcapi3101: Myself, I&#39;m looking at Babamots&#39;s list of red flags. I&#39;ve got number four going on right now, and I need to rectify that ASAP.\r\n\r\nI won&#39;t call it a &#39;mistake&#39;, but that attack sequence cost me dearly...\n\n132) eliscinsky: Build Y2 Eliscinsky\n\n133) capi3101: Sacrifice Y1 Tsade\nMove R2 Clover Tav\n\n134) dimitrivv: S B1 Tav\nT B2 R2 Dimitrivv\n\tdimitrivv: surprised to still be around... :o\n\tDraw5PlayAll: Oh hey, thanks for that red.\n\n135) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack R2E Dimitrivv\nAttack B1E Dimitrivv\n\teliscinsky: So I got it on good authority that if Draw5PlayAll (S) takes out dimitrivv (E), then capi3101 (N) will have to eliminate Draw5PlayAll&#39;s original (S) HW instead.  As Draw5PlayAll will become the new player to his left.  The captured (E) HW is no longer a target, but just another star system.\n\n136) capi3101: Pass\n\tDraw5PlayAll: I hope this is how SDG implemented it, anyway.\n\teliscinsky: True.  There is that.\n\n137) Draw5PlayAll: Pass\n\n138) eliscinsky: Move B1 Eliscinsky Kiwi\n\n139) capi3101: Build R1 Capi3101\n\n140) Draw5PlayAll: Build R1 Dimitrivv\n\n141) eliscinsky: Move G1 Eliscinsky Kiwi\n\n142) capi3101: Trade R1 B1 Capi3101\n\tDraw5PlayAll: Let&#39;s get it over with.\n\n143) Draw5PlayAll: Move B2 Dimitrivv Shin\n\n144) eliscinsky: Build B2 Kiwi\n\tDraw5PlayAll: Hold it. Eliscinsky got skipped. Please undo your move and pass, and then I will also pass and we can right this.\n\teliscinsky: Okay, why was I passed over?  It should have been my turn.  I&#39;ve seen this in another SDG 4 player HW game, that when one play is eliminated the next player sequence goes crazy and skips the next logical player.\r\n\r\ncapi3101 are you willing to undo your turn and pass?\r\nThen Draw5PlayAll also pass?\r\nAll to allow me a fair turn.\r\n\r\nV/R (W)\n\teliscinsky: Hey TY Draw5PlayAll\n\teliscinsky: capi3101 I promise not to take your r1 -- LOL\n\tDraw5PlayAll: My best guess is that SDG calculates the current turn based on N mod P, where N is the number of moves and P is the number of players.\r\nSo N was, say, 50 = 4*12 + 2, which would make it my turn (since I went after 2 players).\r\nAfter I killed east P became 3 but N was 51 which is divisible by 3 and thus it thinks it is capi&#39;s turn (who went first).\n\tDraw5PlayAll: What is V/R (W) by the way?\n\teliscinsky: V/R = Very Respectifully\n\tdimitrivv: so it happened... :P my moves were quite dumb anyway at that point... I&#39;ll monitor the rest of the game, good luck :)\n\tdimitrivv: btw, I understood that in multiplayer games, if a player is eliminated, all the assets would stay on the board as normal stars and neutral ships (that can be captured); but in this case my homeworld and any ships there got removed from the board... sounds like a bug?\n\tdimitrivv: oh, nevermind, my homeworld simply got rearranged, I should have checked better the star names before commenting\n\tcapi3101: Sorry, y&#39;all. I may have mentioned a while back that I need to come by more often to see where things are between turns. Move will be undone momentarily.\n\n145) capi3101: Discover Y1 Shin B3 Peh\n\n146) Draw5PlayAll: Build B2 Rocket\n\teliscinsky: TY Players. I appreciate you&#39;re sense of fair play.\n\n147) eliscinsky: Trade B2 Y2 Kiwi\n\n148) capi3101: Move B1 Capi3101 Tav\n\n149) Draw5PlayAll: Move Y3 Dimitrivv Tav\n\n150) eliscinsky: Move R2 Kiwi Resh\n\n151) capi3101: Sacrifice Y1 Resh\nMove R2 Tav Peh\n\tcapi3101: Finally.\n\tcapi3101: Don&#39;t get me wrong, I feel I did reasonably well with the ketchup and mustard strategy, but...\n\n152) Draw5PlayAll: Sacrifice R1 Dimitrivv\nAttack B1N Tav\n\tDraw5PlayAll: I Can&#39;t Let You Have That.\n\n153) eliscinsky: Build R1 Resh\n\tcapi3101: Meh. Now I have to check to see what letter I&#39;m on...\n\n154) capi3101: Build Y1 Capi3101\n\n155) Draw5PlayAll: Build R1 Dimitrivv\n\tDraw5PlayAll: I probably won&#39;t win, but I can make life hard for eliscinsky...\n\n156) eliscinsky: Build B2 Kiwi\n\n157) capi3101: Trade Y1 G1 Capi3101\n\n158) Draw5PlayAll: Move Y3 Tav Kiwi\n\tDraw5PlayAll: I... Can&#39;t Let You Have That...\n\n159) eliscinsky: Sacrifice Y2 Kiwi\nMove R1 Resh Capi3101\nMove R2 Resh Capi3101\n\tcapi3101: Ugh. How annoying...\n\tcapi3101: Fine. Take the damn thing.\n\n160) capi3101: Sacrifice R2 Peh\nAttack R2W Capi3101\nAttack R1W Capi3101\n\n161) Draw5PlayAll: Sacrifice R2 Dimitrivv\nAttack B2W Kiwi\nAttack B1W Kiwi\n\n162) eliscinsky: Build G2 Kiwi\n\tcapi3101: If you&#39;re done being stupid, now would be the time to refocus on your target.\n\n163) capi3101: Discover R2 Capi3101 Y2 Ayin\n\tcapi3101: I apologize - I&#39;m annoyed at the situation, but that&#39;s no excuse to not remain civil at least.\n\tDraw5PlayAll: Thwarting the person trying to kill you is a very valid strategy in Sinsiter...\r\n\r\nHere, I will go after the other player now.\n\n164) Draw5PlayAll: Move Y3 Kiwi Draw5playall\n\n165) eliscinsky: Sacrifice Y2 Eliscinsky\nDiscover G2 Kiwi Y2 Lemon\nMove G1 Kiwi Lemon\n\n166) capi3101: Move G1 Capi3101 Ayin\n\n167) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B2 Recycling\nBuild B3 Tav\nBuild B3 Dimitrivv\n\tDraw5PlayAll: I Can&#39;t Let You Have That.\n\n168) eliscinsky: Sacrifice G2 Lemon\nBuild G2 Lemon\nBuild G2 Lemon\n\teliscinsky: &quot;Thwarting the person trying to kill you is a very valid strategy in Sinsiter... &quot; Hmmm...\n\teliscinsky: cappi3101 in two\n\tDraw5PlayAll: Ugh. You didn&#39;t do it right. I thought for sure you were going to sac your B2@Kiwi and trade your smalls into yellow, thus depriving me of being the only person with 2 larges.\n\teliscinsky: On second thought ... I don&#39;t want to make it that easy for capi3101 ;)\n\n169) capi3101: Build G2 Ayin\n\tDraw5PlayAll: Thanks...\n\tcapi3101: Ah. That&#39;s what I get for not mashing go sooner! Crap!!\n\tcapi3101: Make the best of this, I suppose. But I got a bad feeling about it...\n\n170) Draw5PlayAll: Trade B3 R3 Tav\n\n171) eliscinsky: Build G2 Eliscinsky\n\tDraw5PlayAll: As a consolation prize, capi, I&#39;ll let you have those reds for free.\n\n172) capi3101: Build G3 Ayin\n\n173) Draw5PlayAll: Build B3 Rocket\n\n174) eliscinsky: Move G1 Lemon Capi3101\n\n175) capi3101: Move G3 Ayin Peh\n\n176) Draw5PlayAll: Trade B3 Y3 Rocket\n\n177) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild G3 Capi3101\nBuild G3 Capi3101\nCatastrophe Capi3101 G\n\tDraw5PlayAll: Rule of Acquisition 95. And also 97.\n\n178) capi3101: Sacrifice G2 Ayin\nBuild Y1 Capi3101\nBuild R1 Ayin\n\n179) Draw5PlayAll: Build B3 Tav\n\n180) eliscinsky: Trade G2 Y2 Eliscinsky\n\n181) capi3101: Discover Y1 Capi3101 G1 Samekh\n\n182) Draw5PlayAll: Sacrifice Y3 Rocket\nMove B3 Dimitrivv Eliscinsky\nMove B3 Tav Dimitrivv\nMove B3 Dimitrivv Eliscinsky\n\n183) eliscinsky: S G2 Lemon\nB G1 Eliscinsky\nB Y1 Eliscinsky\n\n184) capi3101: Sacrifice G3 Peh\nBuild Y3 Peh\nBuild Y3 Samekh\nBuild Y3 Capi3101\n\n185) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B2 Recycling Draw5playall\nMove Y1 Rocket Kiwi\nMove Y1 Kiwi Eliscinsky\nCatastrophe Eliscinsky Yellow\n\n186) eliscinsky: Sacrifice G2 Lemon\nBuild G2 Eliscinsky\nBuild G2 Eliscinsky\n\tcapi3101: I suspect our homeworlds are about to have a direct connection, Draw5PlayAll, shortly after which I&#39;ll be put out of my misery...\n\tcapi3101: Nibbled to death by cats...\n\n187) capi3101: Sacrifice Y3 Samekh\nMove Y3 Peh Draw5playall\nMove Y3 Capi3101 Draw5playall\nMove R3 Capi3101 Draw5playall\nCatastrophe Eliscinsky G\n\teliscinsky: Isn&#39;t there already a connection between capi3101 and Draw5PlayAll?  Looks that way to me.  Let&#39;s just solidify it, shall we.\n\n188) Draw5PlayAll: Pass\n\teliscinsky: Although I feel a bang coming my way.  Might even things up a bit.\n\tcapi3101: Been a pleasure, y&#39;all.\n\n189) capi3101: Attack B2S Draw5playall\n\tcapi3101: Meow.\n\n\tcapi3101: Alright. Thanks to all y&#39;all for the game. \n\teliscinsky: Fun game! But I agree &quot;Last man standing&quot; would be better.  Hope to play you all again.\n\tdimitrivv: Congrats capi3101!\r\nI did not follow the game closely after I was eliminated since I was not getting any notifications and the game is a bit buggy about player seats once one is eliminated, but nonetheless I enjoyed it while it lasted! :)\n\nHomeworlds Online (SDG# 36574)\nStarted: 2020.6.5, Ended: 2020.6.10\nParticipants: drstclair (S), tkvaran (N)\nWinner: tkvaran\n\n1) tkvaran: Homeworld G3 R1 B3\n\n2) drstclair: Homeworld Y3 G2 B3\n\n3) tkvaran: Build B1 Tkvaran\n\n4) drstclair: Build B1 Drstclair\n\n5) tkvaran: Trade B1 Y1 Tkvaran\n\n6) drstclair: Build B1 Drstclair\n\n7) tkvaran: Build Y1 Tkvaran\n\n8) drstclair: Trade B1 Y1 Drstclair\n\n9) tkvaran: Build B1 Tkvaran\n\n10) drstclair: Build Y2 Drstclair\n\n11) tkvaran: Discover Y1 Tkvaran G2 Freddie\n\n12) drstclair: Build Y2 Drstclair\n\n13) tkvaran: Build Y2 Freddie\nCatastrophe Drstclair Yellow\n\n14) drstclair: Build B1 Drstclair\n\n15) tkvaran: Move B1 Tkvaran Drstclair\nCatastrophe Drstclair Blue\n\n\nHomeworlds Online (SDG# 36577)\nVariants: &quot;Hard time&quot;\nStarted: 2020.6.6, Ended: 2020.7.21\nParticipants: dlwillson (S), deanthebean (N)\nWinner: dlwillson\n\n1) deanthebean: Homeworld R1 B2 G3\n\n2) dlwillson: H R3 B1 G3 Dlwillson\n\tdeanthebean: Hello. Have fun!\n\n3) deanthebean: Build G1 Deanthebean\n\tdlwillson: You too! Thanks for the challenge!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) deanthebean: Trade G1 Y1 Deanthebean\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) deanthebean: Build G1 Deanthebean\n\n8) dlwillson: Build G1 Dlwillson\n\n9) deanthebean: Trade G1 R1 Deanthebean\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) deanthebean: Build R2 Deanthebean\n\n12) dlwillson: Build R2 Dlwillson\n\n13) deanthebean: Trade R2 Y2 Deanthebean\n\n14) dlwillson: T R1 B1 Dlwillson\n\n15) deanthebean: Trade Y1 B1 Deanthebean\n\n16) dlwillson: Build B2 Dlwillson\n\n17) deanthebean: Build B2 Deanthebean\n\n18) dlwillson: Discover B1 Dlwillson G2 Field\n\n19) deanthebean: Discover B1 Deanthebean Y3 Motorway\n\n20) dlwillson: B B3 Field\n\n21) deanthebean: Sacrifice G3 Deanthebean\nBuild B3 Motorway\nBuild B3 Deanthebean\nBuild Y1 Deanthebean\n\n22) dlwillson: D B2 Dlwillson G2 Alsofield\n\n23) deanthebean: Trade B1 G1 Motorway\n\n24) dlwillson: B B1 Alsofield\n\n25) deanthebean: Trade B3 G3 Deanthebean\n\n26) dlwillson: S B2 Alsofield\nT B1 Y1 Alsofield\nT B3 Y3 Field\n\n27) deanthebean: Build Y2 Deanthebean\n\n28) dlwillson: Build Y2 Alsofield\n\n29) deanthebean: Trade B3 Y3 Motorway\n\n30) dlwillson: Sacrifice Y2 Alsofield\nMove Y1 Alsofield Motorway\nMove Y1 Motorway Deanthebean\nCatastrophe Deanthebean Y\n\n31) deanthebean: Build G1 Deanthebean\n\n32) dlwillson: Build Y1 Field\n\n33) deanthebean: Trade G1 Y1 Deanthebean\n\n34) dlwillson: Move Y1 Field Motorway\n\n35) deanthebean: Build Y2 Deanthebean\n\n36) dlwillson: B Y2 Field\n\n37) deanthebean: Trade Y1 G1 Deanthebean\n\n38) dlwillson: Move Y2 Field Motorway\nCatastrophe Motorway Y\n\n39) deanthebean: Build Y1 Deanthebean\n\n40) dlwillson: Build R1 Dlwillson\n\n41) deanthebean: Discover R1 Deanthebean G3 Bigfield\n\n42) dlwillson: Move R2 Dlwillson Field\n\n43) deanthebean: Build R2 Bigfield\n\n44) dlwillson: B R2 Field\n\n45) deanthebean: Move Y1 Deanthebean Bigfield\n\n46) dlwillson: D R2 Field Y3 Sol\n\n47) deanthebean: Discover R1 Bigfield G2 Mediumfield\n\n48) dlwillson: B R3 Field\n\n49) deanthebean: Build R3 Bigfield\n\n50) dlwillson: T R3 B3 Field\n\n51) deanthebean: Build R3 Mediumfield\n\n52) dlwillson: Move B3 Field Sol\n\n53) deanthebean: Sacrifice Y2 Deanthebean\nMove R3 Mediumfield Dlwillson\nMove R1 Mediumfield Dlwillson\nCatastrophe Dlwillson R\n\n54) dlwillson: Build R1 Field\n\n55) deanthebean: Build G1 Deanthebean\n\n56) dlwillson: Move B3 Sol Deanthebean\n\tdlwillson: Goodness! That was unexpected!\n\n57) deanthebean: Attack B3 Deanthebean\n\tdlwillson: Mistakes have been made! I will endeavour to be more careful, henceforth!\n\n58) dlwillson: Sacrifice Y3 Field\nMove B1 Field Bigfield\nMove B1 Bigfield Deanthebean\nMove R1 Field Dlwillson\nCatastrophe Deanthebean B\n\n59) deanthebean: Discover R2 Bigfield B2 Market\n\tdlwillson: Let&#39;s see how this works out...\n\n60) dlwillson: S G3 Dlwillson\nB R1 Field\nB R3 Sol\nB R3 Dlwillson\n\n61) deanthebean: Move R3 Bigfield Dlwillson\n\tdeanthebean: It certainly looks critical\n\n62) dlwillson: A R3 Dlwillson\n\n63) deanthebean: Sacrifice Y1 Bigfield\nMove R2 Market Dlwillson\nCatastrophe Dlwillson Red\n\tdeanthebean: It looks to me like you are winning now. \n\n64) dlwillson: M R3 Sol Dlwillson\n\tdlwillson: I think so, too! Whew! What a relief!\n\n65) deanthebean: Build G1 Deanthebean\nCatastrophe Deanthebean Green\n\tdeanthebean: This seems worth a try though...\n\n\tdlwillson: Yes. Technically, you *can* build, but that will only shorten the game.\n\tdlwillson: I think this is resolved to two branches. You can build or pass. If you build, I cat green. If you pass, I trade my big red to a big yellow and you have the same choices. If you build green, I cat green. If you pass, I sac the big yellow, move in all the red, and cat red.\n\tdeanthebean: Yup. You&#39;re right. Well played!\n\nHomeworlds Online (SDG# 36579)\nStarted: 2020.6.6, Ended: 2020.6.19\nParticipants: capi3101 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tcapi3101: Greetings. Indeed, we have never played this before; not particularly thrilled with the idea of playing a rated game against a player with an Elo rating a hundred points higher than mine. Nevertheless, I promise I&#39;ll do my best to not lose too quickly...\n\n2) capi3101: Homeworld B1 G3 Y3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) capi3101: B Y1 Capi3101\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) capi3101: Build Y1 Capi3101\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) capi3101: Trade Y3 G3 Capi3101\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) capi3101: Build Y2 Capi3101\n\n11) Draw5PlayAll: Discover Y2 Draw5playall G2 Dreams\n\n12) capi3101: Trade Y2 R2 Capi3101\n\tcapi3101: Just realized that I opted for the smaller-than-normal universe size. Oops...\n\n13) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n14) capi3101: Discover Y1 Capi3101 G2 Qof\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) capi3101: Move R2 Capi3101 Qof\n\n17) Draw5PlayAll: Discover Y1 Draw5playall B2 Jackpot\n\n18) capi3101: Build R1 Qof\n\tcapi3101: Been staring at this most of the day...enough stalling on my part.\n\n19) Draw5PlayAll: Move R1 Draw5playall Dreams\n\n20) capi3101: Build G1 Capi3101\n\n21) Draw5PlayAll: Build R2 Dreams\n\n22) capi3101: M R1 Qof Capi3101\n\n23) Draw5PlayAll: Discover R1 Dreams G1 Money\n\n24) capi3101: T G1 B1 Capi3101\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) capi3101: Build B1 Capi3101\n\n27) Draw5PlayAll: Move G1 Draw5playall Jackpot\n\tcapi3101: I see it but I don&#39;t think I can foil it. Dammit.\n\n28) capi3101: Discover B1 Capi3101 G2 Tsade\n\tDraw5PlayAll: Try harder.\n\n29) Draw5PlayAll: Build G1 Jackpot\n\n30) capi3101: Trade G3 B3 Capi3101\n\tcapi3101: Oh, dammit.\n\n31) Draw5PlayAll: Build G3 Draw5playall\n\tcapi3101: No real choice there. None of the trades are particularly good options...\n\n32) capi3101: Build B2 Tsade\n\tcapi3101: Yep. Saw that one coming. One hell of a factory setup...\n\n33) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n34) capi3101: Discover R2 Qof Y3 Pe\n\tDraw5PlayAll: Then again, maybe not...\n\n35) Draw5PlayAll: Build G3 Jackpot\n\n36) capi3101: Discover B1 Capi3101 B2 Ayin\n\tcapi3101: Here it comes...\n\n37) Draw5PlayAll: Sacrifice G3 Jackpot\nBuild Y2 Dreams\nBuild Y3 Jackpot\nBuild Y3 Draw5playall\n\n38) capi3101: Build B3 Tsade\n\n39) Draw5PlayAll: Build G3 Draw5playall\n\n40) capi3101: Build R2 Capi3101\n\n41) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R3 Money\nBuild R3 Dreams\n\tcapi3101: Dammit. I wonder if I should resign now and save you the trouble.\n\n42) capi3101: Move R1 Capi3101 Tsade\n\n43) Draw5PlayAll: Move G3 Draw5playall Ayin\n\tDraw5PlayAll: For some reason it always takes me way longer than I want to win... maybe because I am always afraid of letting the opponent come back.\n\tcapi3101: Well, the material advantage you&#39;ve got at this point is impressive, to say the least. You&#39;re one move away from being able to pull off a textbook direct assault unless I&#39;m very much mistaken.\n\tcapi3101: I&#39;ll play on for now. If I&#39;ve learned anything, it&#39;s that this game is incredibly unforgiving of mistakes and even the most experienced players can still commit them.\n\n44) capi3101: Move Y1 Capi3101 Tsade\n\n45) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G3 Ayin Capi3101\nMove Y3 Jackpot Capi3101\nMove R3 Dreams Capi3101\n\n\tDraw5PlayAll: Engage.\n\tcapi3101: ...and that&#39;ll do it. GG.\n\nHomeworlds Online (SDG# 36542)\nStarted: 2020.6.8, Ended: 2020.8.1\nParticipants: ts52 (S), bhorner (N)\nWinner: ts52\n\n1) bhorner: Homeworld B2 R1 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\tbhorner: For the tournament right?\n\tts52: Yes, this is for the 2019 tournament! ;)\n\n3) bhorner: Build G1 Bhorner\n\tbhorner: Uh oh, one of those blue yellow people.  lol\n\n4) ts52: Build G1 Ts52\n\n5) bhorner: Trade G1 Y1 Bhorner\n\tts52: :)\n\n6) ts52: Build G1 Ts52\n\n7) bhorner: Build Y1 Bhorner\n\n8) ts52: Trade G1 B1 Ts52\n\n9) bhorner: Build Y1 Bhorner\n\n10) ts52: Build B1 Ts52\n\n11) bhorner: Discover Y1 Bhorner G3 Tree\n\n12) ts52: Discover B1 Ts52 G2 Kermit\n\n13) bhorner: Build Y2 Tree\n\n14) ts52: Build B2 Kermit\n\n15) bhorner: Discover Y2 Tree G2 Fern\n\n16) ts52: Trade B2 Y2 Kermit\n\n17) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Tree\nBuild Y3 Bhorner\nBuild Y3 Fern\n\n18) ts52: Build B2 Kermit\n\n19) bhorner: Trade Y3 B3 Bhorner\n\n20) ts52: Build Y3 Kermit\n\n21) bhorner: Sacrifice Y2 Fern\nMove Y1 Tree Kermit\nMove Y2 Tree Kermit\nCatastrophe Kermit Y\n\n22) ts52: Trade B2 Y2 Kermit\n\n23) bhorner: Trade Y1 G1 Bhorner\n\n24) ts52: Build B2 Kermit\n\n25) bhorner: Trade B3 G3 Bhorner\n\n26) ts52: Build B2 Ts52\n\n27) bhorner: Discover G1 Bhorner B3 Sky\n\n28) ts52: Build B3 Kermit\n\tbhorner: I guess I over committed to that initial yellow rush.  :)\n\n29) bhorner: Build Y1 Fern\n\tts52: The rush moves always take me by surprise. And often get the better of me.\n\n30) ts52: Trade B3 R3 Kermit\n\n31) bhorner: Build G1 Bhorner\n\tbhorner: Oh wow.  :). I&#39;m sorry that I don&#39;t really have a he concentration for this right now.  Especially after I see the current state.  :). I will try to get my moves in quickly.\n\n32) ts52: Move R3 Kermit Sky\n\tts52: No worries\n\n33) bhorner: Sacrifice G3 Bhorner\nBuild G2 Sky\nBuild G3 Bhorner\nBuild G3 Bhorner\n\n34) ts52: Attack G2 Sky\n\n35) bhorner: Trade G1 R1 Bhorner\n\n36) ts52: Attack G1 Sky\n\n37) bhorner: Trade G3 B3 Bhorner\n\n38) ts52: Discover B2 Ts52 Y2 Bigbird\n\n\nHomeworlds Online (SDG# 36410)\nVariants: &quot;Unrated&quot;\nStarted: 2020.6.9, Ended: 2020.8.4\nParticipants: Babamots (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Babamots: Homeworld R1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\tBabamots: I feel like a weird experiment. GLHF!\n\tTrydnt: well this will be interesting. good luck!\n\tBabamots: OK, chickening out on that one. Too weird.\n\n4) Babamots: Build G1 Babamots\n\tTrydnt: yeah no blue can be done but it&#39;s hard and taking green in the star is never good imo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Babamots: Build Y2 Babamots\n\n9) Trydnt: Trade Y1 R1 Trydnt\n\n10) Babamots: Build Y1 Babamots\n\n11) Trydnt: Discover Y2 Trydnt G3 G3\n\n12) Babamots: Trade Y2 R2 Babamots\n\n13) Trydnt: Build Y2 G3\n\n14) Babamots: Discover Y1 Babamots B3 Bolarus\n\n15) Trydnt: Discover Y2 G3 R1 R1\n\n16) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild Y3 Bolarus\nBuild Y3 Babamots\n\n17) Trydnt: Move Y2 R1 Bolarus\nCatastrophe Bolarus Y\n\n18) Babamots: Trade Y3 G3 Babamots\n\n19) Trydnt: Build R1 Trydnt\n\n20) Babamots: Build Y1 Babamots\n\n21) Trydnt: Build Y2 G3\n\n22) Babamots: Discover Y1 Babamots B3 Bolarus\n\n23) Trydnt: Discover Y2 G3 G2 G2\n\n24) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild Y3 Bolarus\nBuild Y3 Babamots\n\n25) Trydnt: Move Y2 G2 Bolarus\nCatastrophe Bolarus Y\n\n26) Babamots: Trade Y3 G3 Babamots\n\n27) Trydnt: Build R2 Trydnt\n\n28) Babamots: Build G1 Babamots\n\tBabamots: Now I can&#39;t remember why I thought that would be helpful.\n\n29) Trydnt: Move R1 Trydnt G3\n\n30) Babamots: Discover R2 Babamots B3 Bolarus\n\n31) Trydnt: Build G1 Trydnt\n\n32) Babamots: Move G1 Babamots Bolarus\n\n33) Trydnt: Trade G1 B1 Trydnt\n\n34) Babamots: Build G1 Bolarus\n\n35) Trydnt: Discover R2 Trydnt B3 B3\n\n36) Babamots: Build Y1 Babamots\n\n37) Trydnt: Build Y2 G3\n\n38) Babamots: Move Y1 Babamots Bolarus\n\n39) Trydnt: Discover Y2 G3 B1 B1\n\n40) Babamots: Build Y2 Babamots\n\n41) Trydnt: Build Y3 G3\n\n42) Babamots: Build Y3 Bolarus\n\n43) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild Y3 B1\n\n44) Babamots: Build R3 Bolarus\n\n45) Trydnt: Trade R3 G3 Trydnt\n\n46) Babamots: Discover R3 Bolarus G1 Bajor\n\n47) Trydnt: Build R3 Trydnt\n\n48) Babamots: Build R3 Bolarus\n\n49) Trydnt: Build B1 Trydnt\n\n50) Babamots: Trade Y2 B2 Babamots\n\n51) Trydnt: Move B1 Trydnt G3\n\n52) Babamots: Discover B2 Babamots B3 Andoria\n\n53) Trydnt: Trade Y2 G2 B1\n\tBabamots: Things looked grim for our hero...\n\n54) Babamots: Build Y2 Babamots\n\n55) Trydnt: Build Y2 B1\n\n56) Babamots: Build G2 Babamots\n\n57) Trydnt: Build G2 B1\n\n58) Babamots: Sacrifice Y2 Babamots\nMove G1 Bolarus B1\nMove G1 Bolarus B1\nCatastrophe B1 G\n\n59) Trydnt: Discover Y2 B1 Y2 Y2\n\n60) Babamots: Move R3 Bolarus Y2\n\n61) Trydnt: Discover Y2 Y2 G1 G1\n\n62) Babamots: Move G2 Babamots Bolarus\n\n63) Trydnt: Move Y3 B1 Andoria\n\n64) Babamots: Sacrifice Y1 Bolarus\nMove B2 Andoria Bajor\n\n65) Trydnt: Build B1 G3\n\n66) Babamots: Move G2 Bolarus Y2\n\n67) Trydnt: Move R1 G3 Babamots\n\n68) Babamots: Build G1 Babamots\n\n69) Trydnt: Sacrifice Y3 G3\nMove R2 G3 Babamots\nMove B1 G3 Babamots\nMove B1 G3 Babamots\n\n70) Babamots: Sacrifice G2 Y2\nBuild Y1 Babamots\nBuild Y3 Bolarus\n\n71) Trydnt: Sacrifice Y3 Andoria\nMove R2 B3 Babamots\nMove B1 Trydnt G3\nMove B1 G3 Babamots\nCatastrophe Babamots R\nCatastrophe Babamots B\n\tBabamots: gg\n\n\tBabamots: Thanks! I only won the medal game because he missed something, but it&#39;s been a goal of mine for so long that I&#39;m still very pleased with myself.\n\tTrydnt: often the case but, even when your opponent makes a mistake, you still have to have put in the work to have the ability to take advantage of that\n\nHomeworlds Online (SDG# 36514)\nStarted: 2020.6.9, Ended: 2020.11.5\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) MobyNostromo: H Y2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: T G1 Y1 Mobynostromo\n\n7) Trydnt: Build Y2 Trydnt\n\n8) MobyNostromo: B Y2 Mobynostromo\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) MobyNostromo: D Y2 Mobynostromo B1 Dust\n\n11) Trydnt: Build Y3 G3\n\n12) MobyNostromo: B G1 Mobynostromo\n\n13) Trydnt: Trade Y2 R2 Trydnt\n\n14) MobyNostromo: M G1 Mobynostromo Dust\n\n15) Trydnt: Discover Y1 G3 G1 G1\n\n16) MobyNostromo: B Y2 Dust\n\n17) Trydnt: Build Y3 G1\n\n18) MobyNostromo: T Y1 R1 Mobynostromo\n\n19) Trydnt: Build R1 Trydnt\n\n20) MobyNostromo: B G1 Mobynostromo\n\n21) Trydnt: Build G2 Trydnt\n\n22) MobyNostromo: B G2 Dust\n\n23) Trydnt: Discover G2 Trydnt Y3 Y3\n\n24) MobyNostromo: D G1 Dust B3 Oceania\n\n25) Trydnt: Move R2 Trydnt Oceania\n\n26) MobyNostromo: S G3 Mobynostromo\nB G2 Dust\nB G3 Mobynostromo\nB R1 Mobynostromo\n\n27) Trydnt: Attack G1 Oceania\n\n28) MobyNostromo: S G3 Mobynostromo\nB G3 Mobynostromo\nB R2 Mobynostromo\nB Y1 Dust\n\n29) Trydnt: Move Y1 G1 Oceania\n\n30) MobyNostromo: S Y2 Dust\nM R1 Mobynostromo Dust\nM R1 Mobynostromo Dust\n\n31) Trydnt: Sacrifice G2 Y3\nBuild Y2 G1\nBuild Y3 Oceania\n\n32) MobyNostromo: M R1 Dust G3\n\n33) Trydnt: Sacrifice R1 Trydnt\nAttack R1 G3\n\n34) MobyNostromo: T G2 B2 Dust\n\n35) Trydnt: Build G2 Trydnt\n\n36) MobyNostromo: S G3 Mobynostromo\nB G2 Dust\nB G3 Mobynostromo\nB B1 Dust\n\n37) Trydnt: Move R1 G3 G1\n\n38) MobyNostromo: S Y2 Dust\nM B1 Dust Oceania\nM B2 Dust Oceania\n\n39) Trydnt: Sacrifice R2 Oceania\nAttack B2 Oceania\nAttack B1 Oceania\n\n40) MobyNostromo: B Y2 Dust\n\n41) Trydnt: Move B2 Oceania G1\n\n42) MobyNostromo: T Y1 B1 Dust\n\n43) Trydnt: Sacrifice Y3 Oceania\nMove B1 Oceania Dust\nMove B2 G1 G3\nMove B2 G3 Dust\nCatastrophe Dust B\n\n44) MobyNostromo: B R1 Mobynostromo\n\tMobyNostromo: I&#39;m sorry for the long pause. I&#39;m okay. I hope all is well.\n\n45) Trydnt: Build G2 Oceania\n\tTrydnt: no worries. welcome back! glad you&#39;re okay\n\tMobyNostromo: Thank you, Trydnt. I hope you are doing well too.\n\n46) MobyNostromo: T R2 Y2 Mobynostromo\n\n47) Trydnt: Discover G2 Oceania Y1 Y1\n\n48) MobyNostromo: D Y2 Mobynostromo B1 Cornflower\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y1\nBuild G3 Trydnt\nBuild Y3 Oceania\n\n50) MobyNostromo: B R1 Mobynostromo\n\n51) Trydnt: Build R2 G1\n\n52) MobyNostromo: M R1 Mobynostromo Cornflower\n\n53) Trydnt: Sacrifice Y3 G3\nMove G2 Y1 Mobynostromo\nMove G2 Y1 Mobynostromo\nCatastrophe Mobynostromo G\nMove Y3 G1 Mobynostromo\n\n54) MobyNostromo: T R1 G1 Cornflower\n\n55) Trydnt: Sacrifice R1 G1\nAttack R1 Mobynostromo\n\n\nHomeworlds Online (SDG# 36518)\nVariants: &quot;Hard time&quot;\nStarted: 2020.6.9, Ended: 2020.7.25\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\tdlwillson: Have fun and good luck!\n\tTrydnt: you too\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Build R1 Trydnt\n\n8) dlwillson: B Y1 Dlwillson\n\n9) Trydnt: Build R2 Trydnt\n\n10) dlwillson: Build Y2 Dlwillson\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) dlwillson: D Y1 Dlwillson R2 Mars\n\n13) Trydnt: Discover Y2 Trydnt G3 G3\n\n14) dlwillson: D Y1 Dlwillson G2 Geetoo\n\n15) Trydnt: Move Y2 G3 Geetoo\n\n16) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Geetoo\nBuild Y3 Mars\nBuild Y3 Dlwillson\n\n17) Trydnt: Discover R1 Trydnt Y3 Y3\n\n18) dlwillson: Trade Y2 G2 Dlwillson\n\n19) Trydnt: Build R2 Trydnt\n\n20) dlwillson: Build Y2 Dlwillson\n\n21) Trydnt: Discover R2 Trydnt B3 B3\n\n22) dlwillson: D Y3 Mars B3 Sky\n\n23) Trydnt: Discover Y2 Geetoo G3 G3\n\n24) dlwillson: Move Y1 Geetoo Sky\n\n25) Trydnt: Build G1 Trydnt\n\n26) dlwillson: T Y1 G1 Sky\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R3 B3\nBuild R3 Trydnt\n\n28) dlwillson: T Y3 R3 Sky\n\n29) Trydnt: Trade R3 Y3 B3\n\n30) dlwillson: B R3 Sky\n\n31) Trydnt: Trade R3 G3 Trydnt\n\n32) dlwillson: T R3 G3 Sky\n\n33) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Trydnt\nBuild R3 B3\nBuild Y1 B3\n\n34) dlwillson: Discover Y1 Mars G3 Forest\n\n35) Trydnt: Move R3 B3 Geetoo\n\n36) dlwillson: Sacrifice Y2 Geetoo\nMove R3 Sky Geetoo\nMove R3 Geetoo G3\n\n37) Trydnt: Move Y2 G3 Geetoo\n\n38) dlwillson: S G3 Sky\nB G1 Dlwillson\nB G2 Dlwillson\n\nB G3 Sky\n\n39) Trydnt: Build Y2 Geetoo\n\n40) dlwillson: Sacrifice Y2 Dlwillson\nDiscover G2 Dlwillson Y2 Sol\nDiscover G2 Dlwillson R2 Mars\n\n41) Trydnt: Move R2 Y3 Sol\n\n42) dlwillson: Sacrifice G2 Mars\nBuild R2 G3\nBuild G2 Sol\n\n43) Trydnt: Move R2 Sol Forest\n\n44) dlwillson: Discover Y1 Forest B2 Sea\n\n45) Trydnt: Move R2 B3 Sea\n\n46) dlwillson: M Y1 Sea G3\n\n47) Trydnt: Sacrifice Y2 Geetoo\nMove R1 Trydnt G3\nMove R2 Sea G3\nCatastrophe G3 R\n\n48) dlwillson: Trade G1 R1 Sky\n\n49) Trydnt: Build G1 Trydnt\n\n50) dlwillson: Sacrifice G2 Sol\nBuild G2 Sky\nBuild R2 Sky\n\n51) Trydnt: Build Y2 Geetoo\n\n52) dlwillson: T R1 B1 Sky\n\n53) Trydnt: Sacrifice Y2 Geetoo\nMove G1 Trydnt Sky\nMove G1 Trydnt Sky\nCatastrophe Sky G\n\n54) dlwillson: B Y2 G3\n\n55) Trydnt: Move R3 Geetoo G3\n\n56) dlwillson: Discover Y2 G3 B2 Sea\n\n57) Trydnt: Attack Y1 G3\n\n58) dlwillson: S G2 Sol\nB R1 Sky\nB Y2 Sea\n\n59) Trydnt: Trade R3 G3 Trydnt\n\n60) dlwillson: M Y2 Sea Sky\n\n61) Trydnt: Build G1 Trydnt\n\n62) dlwillson: Trade R2 G2 Sky\n\n63) Trydnt: Move R3 G3 Sea\n\n64) dlwillson: Build G1 Sky\n\n65) Trydnt: Trade G1 B1 Trydnt\n\n66) dlwillson: Move Y2 Sea G3\n\n67) Trydnt: Move Y1 G3 Sea\n\n68) dlwillson: Build R2 Sky\n\n69) Trydnt: Trade Y1 B1 B3\n\n70) dlwillson: S B1 Sky\nT Y2 B2 G3\n\n71) Trydnt: Move R3 Sea G3\n\n72) dlwillson: M G1 Sky Trydnt\n\n73) Trydnt: Sacrifice R2 Forest\nAttack B2 G3\nAttack G1 Trydnt\n\n74) dlwillson: B G1 Sky\n\n75) Trydnt: Move G1 Trydnt B3\n\n76) dlwillson: Move G1 Sky Trydnt\n\n77) Trydnt: Sacrifice R1 Y3\nAttack G1 Trydnt\n\n78) dlwillson: Build G2 Sky\n\n79) Trydnt: Build G3 B3\n\n80) dlwillson: M G2 Sky Trydnt\n\n81) Trydnt: Discover G1 Trydnt Y3 Y3\n\n82) dlwillson: M Y2 Sky Trydnt\n\n83) Trydnt: Sacrifice R3 G3\nAttack G2 Trydnt\nAttack Y2 Trydnt\nPass\n\n84) dlwillson: Build R1 Sky\n\n85) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 Geetoo\nBuild Y2 Sea\n\n\tdlwillson: There&#39;s nothing with any positive potential left to do. No sense delaying the inevitable. Good game, Trydnt!\n\tTrydnt: Good game!\n\nHomeworlds Online (SDG# 36606)\nStarted: 2020.6.9, Ended: 2020.8.19\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\twil: Brexit, Covid, or buying your PM a comb...\n\n2) wil: H Y3 B1 G3\n\tTrydnt: I think a comb is underkill\n\twil: Our head idiot uses a comb...\n\tTrydnt: this is for the tournament right\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: I am jealous that you guys get to vote in another head idiot in a few months. We&#39;re stuck with our current idiots for another 4 years :(\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\twil: 4 the tourney, cool\n\n6) wil: T G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: B B2 Wil\n\n9) Trydnt: Trade B2 Y2 Trydnt\n\n10) wil: Discover B2 Wil Y2 Y2\n\n11) Trydnt: Discover B1 Trydnt G3 G3\n\n12) wil: T B1 R1 Wil\n\n13) Trydnt: Build Y1 Trydnt\n\n14) wil: Build R1 Wil\n\n15) Trydnt: Trade Y1 R1 Trydnt\n\twil: Covid in England...what is going on?\n\tTrydnt: the government is feigning incompetence but they&#39;re relying on pretty standard psychological models of human behavior to undermine people&#39;s ability to adhere to and belief in the lockdown. They&#39;re planning to reopen shops in a few weeks. They consistently make their messaging confusing so people are less able to comply and then they can blame people for not following their rambling advice that didn&#39;t make sense. Cases are down but still highest in europe I believe, or even higher than the rest combined. The way they&#39;re easing the lockdown now I kind of expect to see a second wave begin in the next few weeks and they&#39;ll have to put the restrictions back in place and so the dance will continue\n\tTrydnt: or they&#39;ll just cut and run and string out all their voters to die and focus on attracting a new voter block. Thing is there are few blocks that have the size/vote share that the elderly population does so they&#39;d likely have to try and bring together a more diverse range of people. Not sure the conservative mindset is capable of that. That&#39;s just the kind of evil I&#39;d expect from them though. Most of their voters have spent years saying that people who didn&#39;t contribute to the economy were a burden and as time has crept up and they&#39;ve all retired they may find themselves on the other end of the stick they&#39;ve been swinging for decades. I hope enough people wake up and realize before the machine eats us all\n\n16) wil: B R2 Wil\n\n17) Trydnt: Move Y2 Trydnt G3\n\twil: Yikes, quite similar boat here with out imbecile incharge\n\n18) wil: Trade R1 Y1 Wil\n\n19) Trydnt: Build Y1 G3\n\n20) wil: D Y1 Wil G2 G2\n\n21) Trydnt: Discover Y1 G3 G2 Gee2\n\n22) wil: M R2 Wil Gee2\n\n23) Trydnt: Discover Y1 Gee2 G1 G1\n\n24) wil: Discover B2 Y2 Y3 Y3\n\n25) Trydnt: Build Y2 G3\n\n26) wil: B G1 Wil\n\n27) Trydnt: Build B1 G3\n\n28) wil: M G1 Wil G2\n\n29) Trydnt: Discover Y1 G1 G2 G2b\n\n30) wil: M G1 G2 Y3\n\n31) Trydnt: Build G1 Trydnt\n\n32) wil: B B2 Y3\n\n33) Trydnt: Sacrifice Y2 G3\nDiscover B1 G3 G1 G1\nMove Y2 G3 G1\n\n34) wil: Move B2 Y3 G2\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G1\nBuild B3 G3\n\n36) wil: B B3 G2\n\n37) Trydnt: Trade B3 Y3 G3\n\n38) wil: B B3 Y3\n\n39) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G1\nBuild Y2 G3\n\n40) wil: B R1 Wil\n\n41) Trydnt: Build R2 Trydnt\n\n42) wil: M R1 Wil G2\n\n43) Trydnt: Move R2 Trydnt G3\n\n44) wil: S G3 Wil\nB R2 G2\nB R3 Gee2\nB R3 Wil\n\n45) Trydnt: Build R3 G3\n\n46) wil: B G3 Y3\n\n47) Trydnt: Move R3 G3 G2b\n\n48) wil: M B2 G2 Wil\n\n49) Trydnt: Move B1 G1 G2b\n\n50) wil: M R1 Wil G2\n\n51) Trydnt: Move R2 G3 G2\nCatastrophe G2 R\n\n52) wil: M G3 Y3 Trydnt\n\n53) Trydnt: Attack G3 Trydnt\n\n54) wil: M G1 Y3 Trydnt\nC Trydnt G\n\n55) Trydnt: Move Y3 G3 Trydnt\n\twil: Hello\n\n56) wil: S B2 Y3\nT B3 G3 Y3\nT R3 G3 Wil\n\n57) Trydnt: Build B2 G2b\n\n58) wil: B B3 G2\n\n59) Trydnt: Sacrifice Y2 G1\nMove B1 G2b Wil\nMove B2 G2b Wil\nCatastrophe Wil B\n\n60) wil: M B3 G2 G3\n\n61) Trydnt: Move Y2 G3 G2b\n\n62) wil: S G3 Wil\nB Y2 G2\nB B1 G3\nB R1 Gee2\n\n\tTrydnt: well played\n\twil: B o\r\n\r\n\r\nOnly in my demise\n\nHomeworlds Online (SDG# 36619)\nStarted: 2020.6.9, Ended: 2020.6.28\nParticipants: goulo (S), speardane (N)\nWinner: goulo\n\n1) speardane: Homeworld B2 G3 Y3\n\n2) goulo: Homeworld B3 R1 G3\n\n3) speardane: Build Y1 Speardane\n\tgoulo: Hi, have fun! This is for the great homeworlds tournament.\n\n4) goulo: Build G1 Goulo\n\tspeardane: For the tournament!\n\n5) speardane: Trade Y3 R3 Speardane\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) speardane: Build R1 Speardane\n\n8) goulo: Build Y1 Goulo\n\n9) speardane: Trade R3 B3 Speardane\n\n10) goulo: Build Y2 Goulo\n\n11) speardane: Build B1 Speardane\n\n12) goulo: Trade Y1 B1 Goulo\n\n13) speardane: Discover B1 Speardane Y1 Delos\n\n14) goulo: Discover Y2 Goulo G2 Verdo\n\n15) speardane: Discover B1 Delos G2 Lebling\n\n16) goulo: Build G1 Goulo\n\n17) speardane: Trade B3 G3 Speardane\n\n18) goulo: Trade G1 R1 Goulo\n\n19) speardane: Build G1 Speardane\n\n20) goulo: Build G1 Goulo\n\n21) speardane: Discover G1 Speardane B1 Delos\n\n22) goulo: Move Y2 Verdo Delos\n\n23) speardane: Sacrifice G1 Delos\nBuild B2 Lebling\n\n24) goulo: Discover B1 Goulo Y2 Flavo\n\n25) speardane: Trade B2 Y2 Lebling\n\n26) goulo: Build R2 Goulo\n\n27) speardane: Sacrifice G3 Speardane\nBuild Y1 Speardane\nBuild Y3 Speardane\nBuild Y3 Lebling\n\n28) goulo: Move Y2 Delos Speardane\nCatastrophe Speardane Y\n\n29) speardane: Sacrifice Y2 Lebling\nDiscover Y3 Lebling Y1 Delos\nMove Y3 Delos Speardane\n\n30) goulo: Move R2 Goulo Lebling\n\n31) speardane: Build R2 Speardane\n\n32) goulo: Build R2 Lebling\n\n33) speardane: Build R3 Speardane\n\n34) goulo: Build R3 Lebling\n\n35) speardane: Sacrifice Y3 Speardane\nDiscover R1 Speardane Y1 Delos\nDiscover R2 Speardane B1 Kotok\nMove R1 Delos Lebling\nCatastrophe Lebling Red\n\n36) goulo: Sacrifice G1 Goulo\nBuild B2 Flavo\n\n37) speardane: Trade R3 Y3 Speardane\n\n38) goulo: Build G1 Goulo\n\n39) speardane: Trade R2 G2 Kotok\n\n40) goulo: Move R1 Goulo Lebling\n\n41) speardane: Build B2 Lebling\n\n42) goulo: Move G1 Goulo Flavo\n\n43) speardane: Trade B2 Y2 Lebling\n\n44) goulo: Attack B1 Lebling\n\n45) speardane: Build G1 Kotok\n\n46) goulo: Move B2 Flavo Kotok\n\n47) speardane: Sacrifice Y2 Lebling\nMove G2 Kotok Flavo\nDiscover G1 Kotok B3 Delos\n\n48) goulo: Build B2 Flavo\n\n49) speardane: Discover G2 Flavo B3 Minsky\n\n50) goulo: Build Y1 Goulo\n\n51) speardane: Build G1 Minsky\n\n52) goulo: Move Y1 Goulo Lebling\n\n53) speardane: Trade G2 Y2 Minsky\n\n54) goulo: Build G2 Goulo\n\n55) speardane: Move Y2 Minsky Lebling\n\n56) goulo: Move G2 Goulo Lebling\n\n57) speardane: Sacrifice Y2 Lebling\nMove G1 Delos Lebling\nMove G1 Minsky Lebling\nCatastrophe Lebling Green\n\n58) goulo: Discover B1 Flavo Y1 Flaveto\n\n59) speardane: Build Y1 Speardane\n\n60) goulo: Move B1 Flaveto Speardane\n\n61) speardane: Trade Y3 R3 Speardane\n\n62) goulo: Build B1 Speardane\n\n63) speardane: Attack B1 Speardane\n\n64) goulo: Build B3 Speardane\nCatastrophe Speardane B\n\n65) speardane: Build R1 Speardane\n\n66) goulo: Trade B2 R2 Flavo\n\n67) speardane: Move R3 Speardane Flavo\n\n68) goulo: Move R2 Flavo Speardane\n\n69) speardane: Move R3 Flavo Speardane\n\n70) goulo: Build R1 Speardane\nCatastrophe Speardane R\n\n71) speardane: Build Y1 Speardane\n\n72) goulo: Move G1 Flavo Speardane\n\n73) speardane: Pass\n\n74) goulo: Sacrifice G3 Goulo\nBuild G1 Speardane\nBuild G1 Speardane\nBuild Y2 Goulo\nCatastrophe Speardane G\n\tgoulo: thanks for the game!\n\n\nHomeworlds Online (SDG# 36616)\nStarted: 2020.6.9, Ended: 2020.8.19\nParticipants: wil (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 R2 G3\n\n2) wil: H Y2 B1 G3\n\tgoulo: hi, have fun! this is for the great homeworlds tournament.\n\twil: Yay! Let&#39;s doeeet\n\n3) goulo: Build G1 Goulo\n\n4) wil: Build G1 Wil\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) wil: T G1 B1 Wil\n\twil: thoughts on tournament length, lol?  I actually think it works..\n\tgoulo: It&#39;s a lot of games for everyone!\r\nIt might have been good to break into 2 pools and round robin in the pools, then the top half (won most games) from each pool go to a second round of round robin.\r\nThe number of games was still OK, but perhaps only barely. :)\n\n7) goulo: Build G1 Goulo\n\twil: It is!  But since we all like to play...and players are hard to come by...it works\n\n8) wil: B B1 Wil\n\n9) goulo: Build G1 Goulo\n\n10) wil: D B1 Wil Y3 Y3\n\n11) goulo: Trade G1 R1 Goulo\n\n12) wil: B B2 Wil\n\n13) goulo: Build G1 Goulo\n\n14) wil: D B2 Wil G3 G3\n\n15) goulo: Discover G1 Goulo Y1 Flaveto\n\n16) wil: B B2 G3\n\n17) goulo: Build Y1 Goulo\n\n18) wil: S G3 Wil\nB B2 Y3\nB B3 G3\nB B3 Wil\n\n19) goulo: Discover Y1 Goulo G1 Verdeto\n\n20) wil: Trade B3 Y3 G3\n\n21) goulo: Discover Y1 Verdeto G3 Verdego\n\n22) wil: B B3 G3\n\n23) goulo: Sacrifice G3 Goulo\nBuild Y2 Verdego\nBuild Y2 Verdego\nBuild Y3 Goulo\n\n24) wil: T B3 G3 Wil\n\n25) goulo: Move Y1 Verdego Wil\n\n26) wil: T B2 R2 G3\n\n27) goulo: Move Y2 Verdego Wil\n\n28) wil: M B1 Wil Y3\n\n29) goulo: Move Y2 Verdego Wil\nCatastrophe Wil Y\n\n30) wil: M B3 G3 Flaveto\n\n31) goulo: Discover G1 Flaveto Y2 Flavo\n\n32) wil: B B2 G3\n\n33) goulo: Build G1 Goulo\n\tgoulo: wil, are you still around? SDG currently shows you haven&#39;t logged in for 23 days...\n\twil: Sorry I get lost...it is weird\n\n34) wil: T G3 B3 Wil\n\n35) goulo: Build G2 Flavo\n\n36) wil: T B2 G2 Y3\n\n37) goulo: Discover Y1 Goulo R1 Rubeneto\n\n38) wil: B B2 Y3\n\n39) goulo: Move G1 Goulo Rubeneto\n\n40) wil: M B2 G3 Rubeneto\n\n41) goulo: Build G2 Goulo\n\n42) wil: A G1 Rubeneto\n\n43) goulo: Attack G1 Rubeneto\n\n44) wil: B G3 Y3\n\n45) goulo: Build G3 Rubeneto\n\n46) wil: B R1 G3\n\n47) goulo: Attack B2 Rubeneto\n\n48) wil: M R1 G3 Flaveto\n\n49) goulo: Move B2 Rubeneto Y3\nCatastrophe Y3 B\n\n50) wil: S G3 Y3\nB B1 Flaveto\nB B1 G3\nB G3 Y3\n\twil: Are these names delete characters?\n\twil: *delarte\n\tgoulo: They are Esperanto words.\n\n51) goulo: Discover R1 Goulo Y1 Citroneto\n\twil: Cool, you speak it?\n\n52) wil: S G3 Y3\nB G3 Y3\nB B2 Flaveto\nB B2 G3\n\n53) goulo: Sacrifice G3 Rubeneto\nBuild G3 Rubeneto\nBuild Y2 Rubeneto\nBuild Y2 Goulo\n\tgoulo: Yes, I learned it back in 2003, and use it every day with my wife (I&#39;m from US, she&#39;s Polish, we met at an Esperanto event years ago) as our default language, along with English and Polish. :)\n\twil: Interesting.... I&#39;m pretty sure that&#39;s the first ive heard of anyone using it.  Only heard it talked about.\n\n54) wil: M G2 Y3 Citroneto\n\twil: Is eto little?\n\tgoulo: Yeah, the suffix &quot;et&quot; = little (similar to &quot;ette&quot; on some English and French words).\r\n\r\nA lot more people are learning Esperanto in recent years, thanks to the internet making it easier to learn (e.g. lernu.net and duolingo.com) and to write/chat with people far away.\n\n55) goulo: Move R1 Citroneto Flavo\n\n56) wil: T B3 R3 Flaveto\n\twil: I come for a little ruby red grapefruit juice\n\n57) goulo: Discover Y1 Rubeneto B3 Bluego\n\n58) wil: M R3 Flaveto Bluego\n\n59) goulo: Move Y1 Bluego Rubeneto\n\n60) wil: M B2 G3 Wil\n\twil: Do you think it has a chance to grow to its original intent?  \n\twil: Do you have kids learning it?\n\tgoulo: I doubt it will ever become a language everyone knows - that&#39;s a very ambitious goal, which probably no language will ever achieve. But the number of Esperantists keeps growing, and in practice, there are way more Esperanto speakers than I could ever meet, more books than I could ever read, etc, and I have friends and acquaintances in many countries thanks to Esperanto. E.g. this week I was corresponding with an elderly Japanese guy about musical instruments and boardgames, and the studies showing that mental activities like these help keep our minds alert as we age.\r\n\r\nI don&#39;t have kids, but if I did, they&#39;d speak Esperanto, English, and Polish.\n\n61) goulo: Move G2 Flavo G3\n\n62) wil: S Y3 G3\nM B3 Wil Goulo\nM G3 Y3 Wil\nM G3 Wil Goulo\n\twil: I think you are the firat person I know of that speaks it...its ambitious goal I think hinders it.  Books, eh?  Are there movies? \n\twil: Now if they got kids to know they could learn a secret langauge their parents and teachers did not know..\n\twil: Now if they got kids to know they could learn a secret langauge their parents and teachers did not know..\n\n63) goulo: Sacrifice Y2 Rubeneto\nMove G3 Rubeneto G3\nMove G3 G3 Wil\n\tgoulo: There are a few films, but since esperantists are a diaspora instead of concentrated in one place like a typical national language, it&#39;s harder for that kind of large collaborative project (films and plays). So there&#39;s plenty of books, like for any language, but not so much films or plays.\n\twil: Hey whatchu doin sneaking in?  How do you say I&#39;m on tilt in Esperanto?\n\n64) wil: S R3 Bluego\nA Y3 Goulo\nA G2 Goulo\nA Y2 Goulo\n\n65) goulo: Sacrifice R1 Flavo\nAttack B2 Wil\n\tgoulo: Ha ha, I&#39;m not even sure what &quot;on tilt&quot; means in English, I had to look it up. (I&#39;m not into poker at all, heh.) :)\n\n\twil: I pulled the trigger to early...good game\n\twil: I dont think it would have been any better sending in the r3\n\tgoulo: I&#39;m not certain whether my move really works or not. I worried you&#39;d move some second ship in, then I&#39;d not be able to capture 2 ships in one move, and if I sacrifice my r1 to capture 1, then I must spend at least 2 more moves I think to win, and meanwhile you need only 2 turns at my homeworld to defeat me. It was a tricky situation, but I figured this was my only realistic chance. :)\n\tgoulo: Oh, but you couldn&#39;t move one to your homeworld, heh. So my move was clever after all. Tricky situation indeed. :)\n\tgoulo: hmm, or you could have sacrificed a g to build a b3 at your homeworld.\n\twil: I shoot from the hip...althiugg I should look longer when it is the end...it is just not in my nature\n\tgoulo: heh, yes - it is easy to get swept up by the &quot;heat of battle&quot; and all that. :)\n\nHomeworlds Online (SDG# 36609)\nVariants: &quot;Unrated&quot;\nStarted: 2020.6.9, Ended: 2020.7.9\nParticipants: SkullNBones12 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Hi there! Looks like you&#39;re pretty new to SDG. Have you played Homeworlds before.\n\n2) SkullNBones12: H G3 R1 Y3 *\n\tSkullNBones12: I have played homeworlds in real life but not sure how to submit moves. \n\n3) Babamots: Build G1 Babamots\n\n4) SkullNBones12: Build Y1 Skullnbones12\n\tBabamots: Looks like you found the instructions. Let me know if you have any trouble figuring out how to make a move. The most nun-intuitive thing to me is that you have to put each sacrifice action and catastrophe on a new line.\n\tSkullNBones12: Thanks I definitely will ask!\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) SkullNBones12: Build Y1 Skullnbones12\n\n7) Babamots: Build R2 Babamots\n\n8) SkullNBones12: Discover Y1 Skullnbones12 B2 Apex\n\n9) Babamots: Trade R2 Y2 Babamots\n\n10) SkullNBones12: Trade Y1 G1 Apex\n\n11) Babamots: Build R2 Babamots\n\n12) SkullNBones12: Build G1 Apex\n\n13) Babamots: Move R2 Babamots Apex\n\n14) SkullNBones12: Build G1 Apex\n\n15) Babamots: Attack G1 Apex\n\n16) SkullNBones12: Build G2 Apex\nCatastrophe Apex Green\n\n17) Babamots: Build R2 Babamots\n\n18) SkullNBones12: Build Y1 Skullnbones12\n\n19) Babamots: Discover R2 Babamots Y2 Aldea\n\tBabamots: I tried a homeworld setup without blue once, but I don&#39;t think it worked out. It&#39;s a pretty big handicap.\n\n\tBabamots: Sorry this wasn&#39;t going your way. I&#39;ll be available for a rematch later, though I&#39;m focused on some life things for now.\n\nHomeworlds Online (SDG# 36620)\nStarted: 2020.6.9, Ended: 2020.6.24\nParticipants: eliscinsky (S), SkullNBones12 (N)\nWinner: eliscinsky\n\n1) SkullNBones12: H G3 R1 Y3 *\n\tSkullNBones12: Homeworld G3 R1 Y3\n\n2) eliscinsky: H R1 B2 G3\n\teliscinsky: Greetings SkullNBones12, GL &amp; HF!\r\nPS. Very interesting HW.\n\n3) SkullNBones12: Build Y1 Skullnbones12\n\tSkullNBones12: Gl and hf! Thanks I like the defending homeworld. \n\n4) eliscinsky: B G1 Eliscinsky\n\n5) SkullNBones12: Build Y1 Skullnbones12\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) SkullNBones12: Discover Y1 Skullnbones12 B2 Apex\n\n8) eliscinsky: B Y2 Eliscinsky\n\n9) SkullNBones12: Trade Y1 G1 Apex\n\n10) eliscinsky: B G1 Eliscinsky\n\n11) SkullNBones12: Build G1 Apex\n\n12) eliscinsky: Trade G1 R1 Eliscinsky\n\n13) SkullNBones12: Build G1 Apex\n\n14) eliscinsky: Build R2 Eliscinsky\n\n15) SkullNBones12: Trade G1 Y1 Apex\n\n16) eliscinsky: Sacrifice Y2 Eliscinsky\nDiscover R2 Eliscinsky Y3 Yeller\nMove R2 Yeller Apex\n\n17) SkullNBones12: Build Y2 Skullnbones12\n\n18) eliscinsky: Attack Y1 Apex\n\n19) SkullNBones12: Move Y1 Skullnbones12 Apex\n\n20) eliscinsky: A Y1 Apex\n\n21) SkullNBones12: Build G1 Apex\n\n22) eliscinsky: Move Y1 Apex Skullnbones12\n\n23) SkullNBones12: Move Y2 Skullnbones12 Apex\n\n24) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y2 Skullnbones12\nBuild Y2 Skullnbones12\nBuild Y3 Apex\nCatastrophe Skullnbones12 Y\n\teliscinsky: Red Alert!\n\n\teliscinsky: GG, rematch anytime.\n\nHomeworlds Online (SDG# 36630)\nVariants: &quot;Hard time&quot;\nStarted: 2020.6.10, Ended: 2020.7.9\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tBabamots: Good luck!\n\twil: I need it!\r\n\n\n3) Babamots: Build G1 Babamots\n\n4) wil: Build G1 Wil\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) wil: T G1 B1 Wil\n\n7) Babamots: Build Y1 Babamots\n\n8) wil: B B1 Wil\n\n9) Babamots: Build Y1 Babamots\n\n10) wil: Discover B1 Wil Y2 Y2\n\n11) Babamots: Discover Y1 Babamots G3 Risa\n\n12) wil: D B1 Y2 Y3 Y3\n\n13) Babamots: Build Y2 Babamots\n\n14) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n15) Babamots: Move Y1 Babamots Y3\n\n16) wil: T B3 Y3 Wil\n\n17) Babamots: Build Y2 Risa\n\n18) wil: T B2 G2 Y3\n\n19) Babamots: Build Y2 Babamots\n\n20) wil: Discover B2 Y3 G2 G2\n\n21) Babamots: Trade Y2 R2 Babamots\n\n22) wil: S G2 Y3\nB B2 Y3\nB B3 Wil\n\n23) Babamots: Build Y2 Babamots\n\n24) wil: B B3 G2\n\n25) Babamots: Sacrifice R2 Babamots\nAttack B1 Y3\nPass\n\n26) wil: S B2 G2\nT B3 G3 Wil\nT B2 R2 Y3\n\n27) Babamots: Sacrifice Y1 Y3\nMove B1 Y3 Babamots\n\n28) wil: Move Y3 Wil G2\n\n29) Babamots: Discover Y1 Risa G1 Betazed\n\n\tBabamots: Sorry you ran out of time. I&#39;m pretty worried you would have got me.\n\nHomeworlds Online (SDG# 36618)\nStarted: 2020.6.11, Ended: 2020.8.5\nParticipants: DodoBirb (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) DodoBirb: Homeworld Y1 B2 G3\n\tgoulo: hi, have fun! for the homeworlds tourney.\n\tDodoBirb: You too!\n\n3) goulo: Build G1 Goulo\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\n7) goulo: Build Y2 Goulo\n\n8) DodoBirb: Build Y2 Dodobirb\n\n9) goulo: Build Y2 Goulo\n\n10) DodoBirb: Discover Y2 Dodobirb G3 Greeny\n\n11) goulo: Discover Y1 Goulo G1 Verdeto\n\n12) DodoBirb: Build Y3 Greeny\n\n13) goulo: Build Y3 Verdeto\n\n14) DodoBirb: Discover Y2 Greeny G1 Minigreeny\n\n15) goulo: Trade Y2 R2 Goulo\n\n16) DodoBirb: Trade Y1 R1 Dodobirb\n\n17) goulo: Move R2 Goulo Verdeto\n\n18) DodoBirb: Build Y1 Greeny\n\n19) goulo: Build G1 Goulo\n\n20) DodoBirb: Build G2 Dodobirb\n\n21) goulo: Trade G1 B1 Goulo\n\n22) DodoBirb: Trade G2 B2 Dodobirb\n\n23) goulo: Move B1 Goulo Verdeto\n\n24) DodoBirb: Build R1 Dodobirb\n\n25) goulo: Build B1 Verdeto\n\n26) DodoBirb: Move B2 Dodobirb Greeny\n\n27) goulo: Build R1 Verdeto\n\n28) DodoBirb: Move R1 Dodobirb Greeny\n\n29) goulo: Discover R2 Verdeto Y3 Flavego\n\n30) DodoBirb: Build R2 Greeny\n\n31) goulo: Build Y2 Goulo\n\n32) DodoBirb: Build G1 Dodobirb\n\n33) goulo: Build G2 Goulo\n\n34) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n35) goulo: Move G2 Goulo Verdeto\n\n36) DodoBirb: Build G2 Bluey\n\n37) goulo: Move G2 Verdeto Flavego\n\n38) DodoBirb: Build G2 Dodobirb\n\n39) goulo: Move B1 Verdeto Flavego\n\n40) DodoBirb: Move R2 Greeny Minigreeny\n\n41) goulo: Move Y3 Verdeto Bluey\n\n42) DodoBirb: Move B2 Greeny Verdeto\n\n43) goulo: Move R1 Verdeto Flavego\n\n44) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild R2 Greeny\nBuild R3 Minigreeny\n\n45) goulo: Sacrifice R2 Flavego\nAttack G1 Bluey\nAttack G2 Bluey\n\n46) DodoBirb: Sacrifice R2 Greeny\nAttack B1N Verdeto\nAttack Y1N Verdeto\n\n47) goulo: Build R2 Flavego\n\n48) DodoBirb: Sacrifice G3 Dodobirb\nBuild R2 Dodobirb\nBuild R3 Greeny\nBuild G3 Dodobirb\n\n49) goulo: Sacrifice Y2 Goulo\nMove G2 Bluey Dodobirb\nMove G1 Bluey Dodobirb\nCatastrophe Dodobirb G\n\n50) DodoBirb: Move Y3 Greeny Dodobirb\n\n51) goulo: Build Y2 Goulo\n\n52) DodoBirb: Trade Y3 G3 Dodobirb\n\n53) goulo: Sacrifice G2 Flavego\nBuild Y3 Bluey\nBuild G1 Goulo\n\n54) DodoBirb: Move B1 Verdeto Greeny\n\n55) goulo: Build G2 Goulo\n\n56) DodoBirb: Build G2 Dodobirb\n\n57) goulo: Move Y3 Bluey Verdeto\n\n58) DodoBirb: Sacrifice Y1 Verdeto\nMove B2 Verdeto Greeny\n\n59) goulo: Build Y1 Verdeto\n\n60) DodoBirb: Discover G2 Dodobirb B3 Deepblue\n\n61) goulo: Sacrifice Y2 Goulo\nMove R1 Flavego Minigreeny\nMove R2 Flavego Minigreeny\nCatastrophe Minigreeny R\n\n62) DodoBirb: Build G2 Dodobirb\n\n63) goulo: Sacrifice G2 Goulo\nBuild B1 Flavego\nBuild Y2 Bluey\n\n64) DodoBirb: Move B2 Greeny Minigreeny\n\n65) goulo: Trade Y2 R2 Bluey\n\n66) DodoBirb: Build Y2 Greeny\n\n67) goulo: Move Y3 Bluey Minigreeny\n\n68) DodoBirb: Move Y2 Minigreeny Deepblue\n\n69) goulo: Move Y3 Verdeto Deepblue\n\n70) DodoBirb: Move Y2 Deepblue Verdeto\n\n71) goulo: Sacrifice R2 Bluey\nAttack G2 Deepblue\nAttack B2 Minigreeny\n\n72) DodoBirb: Build R1 Greeny\n\n73) goulo: Move B2 Minigreeny Deepblue\n\n74) DodoBirb: Move R3 Greeny Dodobirb\n\n75) goulo: Build G2 Deepblue\n\n76) DodoBirb: Build B3 Greeny\n\n77) goulo: Trade G2 R2 Deepblue\n\n78) DodoBirb: Move R2 Dodobirb Flavego\n\n79) goulo: Sacrifice Y2 Goulo\nMove B1 Flavego Dodobirb\nMove B1 Flavego Dodobirb\n\n80) DodoBirb: Build B3 Greeny\n\n81) goulo: Move B1 Dodobirb Greeny\nCatastrophe Greeny B\n\n82) DodoBirb: Attack B1N Dodobirb\n\n83) goulo: Build Y2 Minigreeny\n\n84) DodoBirb: Sacrifice G2 Dodobirb\nBuild R2 Greeny\nBuild R3 Flavego\n\n85) goulo: Move Y3 Minigreeny Greeny\n\n86) DodoBirb: Sacrifice Y2 Greeny\nMove R2 Greeny Verdeto\nMove R3 Flavego Verdeto\n\n87) goulo: Sacrifice R2 Deepblue\nAttack R1 Greeny\nAttack R1 Greeny\n\n88) DodoBirb: Attack Y1N Verdeto\n\n89) goulo: Attack Y1 Greeny\n\n90) DodoBirb: Build G2 Dodobirb\n\n91) goulo: Sacrifice G3 Goulo\nBuild G2 Deepblue\nBuild G3 Goulo\nBuild Y2 Deepblue\n\n92) DodoBirb: Move R3 Dodobirb Flavego\n\n93) goulo: Sacrifice Y3 Deepblue\nMove G2 Deepblue Dodobirb\nMove G2 Deepblue Dodobirb\nMove Y3 Greeny Dodobirb\nCatastrophe Dodobirb G\n\n94) DodoBirb: Move R3 Flavego Dodobirb\n\tDodoBirb: GG\n\n95) goulo: Sacrifice R1 Greeny\nAttack R3 Dodobirb\n\n96) DodoBirb: Pass\n\tgoulo: thanks - we had very epic long maneuvering and buildup! :)\n\n97) goulo: Sacrifice R3 Dodobirb\nAttack R1 Dodobirb\nAttack B1 Dodobirb\nPass\n\tgoulo: thanks for the game!\n\n\nHomeworlds Online (SDG# 36615)\nStarted: 2020.6.13, Ended: 2020.8.1\nParticipants: bhorner (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 R2 G3\n\tbhorner: You made the challenge, this is for the tournament right?  Looks like you&#39;re first, here&#39;s a link to the form:  https://docs.google.com/forms/d/e/1FAIpQLSfFIVX-5Bbbifu74XWm38g4r4VFOUB6lo8NJ8uXXAj0APD48A/viewform\r\nGood luck, and have fun!\n\tgoulo: thanks, have fun. for the tourney indeed. :)\n\n2) bhorner: Homeworld R2 B1 G3\n\n3) goulo: Build G1 Goulo\n\n4) bhorner: Build G1 Bhorner\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) goulo: Build G1 Goulo\n\n8) bhorner: Build G1 Bhorner\n\n9) goulo: Trade G1 R1 Goulo\n\n10) bhorner: Trade G1 R1 Bhorner\n\n11) goulo: Build G1 Goulo\n\n12) bhorner: Build G1 Bhorner\n\n13) goulo: Trade G1 B1 Goulo\n\n14) bhorner: Build G1 Bhorner\n\n15) goulo: Build G1 Goulo\n\n16) bhorner: Trade G1 B1 Bhorner\n\n17) goulo: Build B2 Goulo\n\n18) bhorner: Build B2 Bhorner\n\n19) goulo: Discover B2 Goulo Y1 Flaveto\n\n20) bhorner: Trade B1 G1 Bhorner\n\n21) goulo: Build G2 Goulo\n\n22) bhorner: Build Y2 Bhorner\n\n23) goulo: Move G2 Goulo Flaveto\n\n24) bhorner: Discover G1 Bhorner Y3 Bright\n\n25) goulo: Build Y2 Goulo\n\n26) bhorner: Discover Y1 Bhorner G3 Tree\n\n27) goulo: Discover Y1 Goulo B1 Blueto\n\n\nHomeworlds Online (SDG# 36649)\nStarted: 2020.6.13, Ended: 2020.6.22\nParticipants: tkvaran (S), drstclair (N)\nWinner: tkvaran\n\n1) drstclair: Homeworld G3 B1 Y3\n\n2) tkvaran: Homeworld B2 G1 R3\n\n3) drstclair: Build Y1 Drstclair\n\n4) tkvaran: Build R1 Tkvaran\n\n5) drstclair: Trade Y1 B1 Drstclair\n\n6) tkvaran: Trade R1 Y1 Tkvaran\n\n7) drstclair: Build Y1 Drstclair\n\n8) tkvaran: Build R1 Tkvaran\n\n9) drstclair: Discover Y1 Drstclair G2 Gumbo\n\n10) tkvaran: Discover R1 Tkvaran B3 Gumby\n\n11) drstclair: Build Y1 Gumbo\n\n12) tkvaran: Build Y2 Tkvaran\n\n13) drstclair: Build Y2 Gumbo\n\n14) tkvaran: Move Y1 Tkvaran Gumby\n\n15) drstclair: Sacrifice Y1 Gumbo\nMove B1 Drstclair Gumbo\n\n16) tkvaran: Trade R1 G1 Gumby\n\n17) drstclair: Trade Y2 R2 Gumbo\n\n18) tkvaran: Build G1 Gumby\n\n19) drstclair: Build Y1 Drstclair\n\n20) tkvaran: Build Y2 Gumby\n\n21) drstclair: Build R1 Gumbo\n\n22) tkvaran: Build Y2 Tkvaran\n\n23) drstclair: Build Y3 Drstclair\n\n24) tkvaran: Sacrifice Y2 Tkvaran\nMove Y1 Gumby Gumbo\nMove Y1 Gumbo Drstclair\nCatastrophe Drstclair Yellow\n\n\nHomeworlds Online (SDG# 36621)\nStarted: 2020.6.15, Ended: 2020.7.8\nParticipants: bhorner (S), wil (N)\nWinner: bhorner\n\n1) wil: H Y2 B1 G3\n\n2) bhorner: Homeworld R1 B2 G3\n\tbhorner: Did everyone switch to blue yellow homeworlds?  :)\r\n\r\nThis is for the tournament right?  I think you fill out the form as the first player.\n\n3) wil: B G1 Wil\n\tbhorner: This should be interesting.  I couldn&#39;t bear to make a 1-3 homeworld...\n\twil: Short uni! Would you mind filling us out? And GOOD LUCK!\n\n4) bhorner: Build G1 Bhorner\n\twil: Blue yellow might be my fault ...sorry\n\tbhorner: I think it&#39;s great that there are other viable options.  :)\n\n5) wil: T G1 R1 Wil\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) wil: B R1 Wil\n\n8) bhorner: Build Y1 Bhorner\n\n9) wil: D R1 Wil B3 B3\n\n10) bhorner: Build Y1 Bhorner\n\n\tbhorner: Hey Wil, it&#39;s been an extra 7 days after the time ran out.  I hope everything is alright with you!  I&#39;ll give it until tomorrow and then probably force surrender.\n\tbhorner: I hope we can play again soon.  :)\n\twil: Anytime\n\nHomeworlds Online (SDG# 36515)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.6.21, Ended: 2020.6.21\nParticipants: mirror33 (S), wil (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 36613)\nStarted: 2020.6.22, Ended: 2020.8.1\nParticipants: ajo (S), bhorner (N)\nWinner: ajo\n\n1) bhorner: Homeworld R1 B2 G3\n\n2) ajo: Homeworld R2 B1 G3\n\tbhorner: This is for the tournament right?  :)\r\nGood luck, have fun!\n\n3) bhorner: Build G1 Bhorner\n\tajo: For the tournament!\r\nLet&#39;s try a small universe for this one.\n\n4) ajo: Build G1 Ajo\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) bhorner: Build B1 Bhorner\n\n8) ajo: Build Y1 Ajo\n\n9) bhorner: Build G1 Bhorner\n\n10) ajo: Build G1 Ajo\n\n11) bhorner: Trade B1 R1 Bhorner\n\n12) ajo: Build Y1 Ajo\n\n13) bhorner: Trade G3 Y3 Bhorner\n\n14) ajo: Discover Y1 Ajo G3 Alpha\n\n15) bhorner: Build Y2 Bhorner\n\n16) ajo: Build Y2 Ajo\n\n17) bhorner: Trade Y3 G3 Bhorner\n\n18) ajo: Trade Y1 R1 Ajo\n\n19) bhorner: Build B1 Bhorner\n\n20) ajo: Trade Y2 B2 Ajo\n\n21) bhorner: Discover G1 Bhorner Y3 Shiney\n\n22) ajo: Move B2 Ajo Alpha\n\n\tajo: Ping?\n\nHomeworlds Online (SDG# 36718)\nVariants: &quot;Hard time&quot;\nStarted: 2020.6.29, Ended: 2020.7.11\nParticipants: Draw5PlayAll (S), Simon (N)\nWinner: Draw5PlayAll\n\n1) Simon: Homeworld R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\tSimon: Hi, and have fun. :)\n\tDraw5PlayAll: ...\n\n3) Simon: Build G1 Simon\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Simon: Trade G1 B1 Simon\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Simon: Build B1 Simon\n\n8) Draw5PlayAll: Build R1 Draw5playall\n\n9) Simon: Build G1 Simon\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) Simon: Trade G1 Y1 Simon\n\n12) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n13) Simon: Discover B1 Simon G2 G2\n\n14) Draw5PlayAll: Discover R1 Draw5playall B3 Jackpot\n\n15) Simon: Build B2 G2\n\n16) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Jackpot\nBuild R2 Jackpot\nBuild R3 Draw5playall\n\n17) Simon: Build Y1 Simon\n\n18) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n19) Simon: Build Y2 Simon\n\n20) Draw5PlayAll: Build R3 Draw5playall\n\n21) Simon: Discover Y1 Simon Y2 Y2\n\n22) Draw5PlayAll: Trade R3 Y3 Draw5playall\n\n23) Simon: Discover Y1 Simon B2 B2\n\n24) Draw5PlayAll: Discover Y3 Draw5playall Y3 Recycling\n\n25) Simon: Build G1 Simon\n\n26) Draw5PlayAll: Discover Y1 Draw5playall Y3 Getonwithit\n\n27) Simon: Build Y2 Simon\n\n28) Draw5PlayAll: Build R3 Draw5playall\n\tSimon: Instead of build y2, there was a wild line with sac g3, build y2, b2, b3 elsewehere, and spend 2-3 turns without a home queen. To punish, enemy y1 or y3 would have to be sacced in reply, making obsolete their recent moving.\r\n\r\nI rejected that line because was too hard to calculate whether there was a forced loss. The position isn&#39;t that terrible.\n\n29) Simon: Build B2 G2\n\n30) Draw5PlayAll: Trade R3 B3 Draw5playall\n\n31) Simon: Move Y2 Simon G2\n\tDraw5PlayAll: This is not as strong for me as I thought it would be!\n\n32) Draw5PlayAll: Sacrifice Y1 Getonwithit\nDiscover B3 Draw5playall Y3 Getonwithit\n\n33) Simon: Build Y1 G2\n\n34) Draw5PlayAll: Build R3 Draw5playall\n\n35) Simon: Move B1 Simon Y2\n\n36) Draw5PlayAll: Build G1 Draw5playall\n\n37) Simon: Discover Y2 G2 G3 G3\n\n38) Draw5PlayAll: Sacrifice B3 Getonwithit\nTrade R3 B3 Draw5playall\nTrade G3 Y3 Draw5playall\nPass\n\n39) Simon: Move B1 G2 Jackpot\n\n40) Draw5PlayAll: Build R3 Draw5playall\n\n41) Simon: Move B1 Y2 Jackpot\n\n42) Draw5PlayAll: Move B3 Draw5playall G3\n\tDraw5PlayAll: Prepare emergency protocol 0xC429...\n\n43) Simon: Discover Y2 G3 G1 G1\n\tSimon: Careful squeezing. We need a solid position for when the y3 pinata explodes.\n\n44) Draw5PlayAll: Move Y3 Recycling G2\n\tDraw5PlayAll: So you *were* trying to blow that guy up, huh.\n\n45) Simon: Build Y3 G1\n\n46) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B3 G3 Y2\nMove Y3 G2 Simon\nMove B3 Y2 Simon\n\n\tDraw5PlayAll: You seem to be one move too late\n\tSimon: Didn&#39;t see that both queens were in range. GG! Learned more opening theory.\n\tDraw5PlayAll: Thanks for the game.\n\tDraw5PlayAll: (I&#39;m not sure how you could have defended as soon as I got the two larges in range. I think you would have had to blow up the Y3s, but my red pump probably would have stolen the larges again.)\n\nHomeworlds Online (SDG# 36723)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.1, Ended: 2020.7.9\nParticipants: kenniepow (S), mirror33 (N)\nWinner: mirror33\n\n1) mirror33: Homeworld B2 R1 G3\n\n2) kenniepow: Homeworld B2 G3 R3\n\tkenniepow: homeworld Y3 G3 R3\n\tkenniepow: homeworld Y3 B2 R3\n\tkenniepow: homeworld B2 Y3 R3\n\tkenniepow: homeworld B2 Y3 R3\n\tkenniepow: homeworld (B2, Y3, R3)\n\n3) mirror33: Build G1 Mirror33\n\n4) kenniepow: Build R1 Kenniepow\n\n5) mirror33: Build G1 Mirror33\n\n6) kenniepow: Build R1 Kenniepow\n\n7) mirror33: Trade G1 Y1 Mirror33\n\n8) kenniepow: Trade R1 Y1 Kenniepow\n\n9) mirror33: Trade G1 R1 Mirror33\n\n10) kenniepow: Build R2 Kenniepow\n\n11) mirror33: Build R2 Mirror33\n\n12) kenniepow: Discover R1 Kenniepow Y1 Babyk\n\n13) mirror33: Build Y2 Mirror33\n\n14) kenniepow: Discover R1 Babyk Y3 Babyk2\n\n15) mirror33: Move R2 Mirror33 Babyk2\n\n16) kenniepow: Move R1 Babyk2 Mirror33\n\n17) mirror33: Attack R1 Mirror33\n\n18) kenniepow: Trade R2 G2 Kenniepow\n\n19) mirror33: Trade R1 B1 Mirror33\n\n20) kenniepow: Discover G2 Kenniepow R1 Babyk3\n\n21) mirror33: Discover Y2 Mirror33 B3 Lilreflection\n\n22) kenniepow: Build R2 Kenniepow\n\n23) mirror33: Build R2 Mirror33\n\n24) kenniepow: Build R3 Kenniepow\n\n25) mirror33: Sacrifice Y2 Lilreflection\nMove R2 Babyk2 Babyk3\nMove R2 Babyk3 Kenniepow\nCatastrophe Kenniepow Red\n\n26) kenniepow: Build G1 Babyk3\n\n27) mirror33: Build Y1 Mirror33\n\n28) kenniepow: Build Y2 Kenniepow\n\n29) mirror33: Build Y2 Mirror33\n\n30) kenniepow: Trade Y2 R2 Kenniepow\n\n31) mirror33: Discover Y2 Mirror33 G3 Picasso\n\n32) kenniepow: Build Y2 Kenniepow\n\n33) mirror33: Sacrifice Y2 Picasso\nDiscover G3 Mirror33 B3 Picasso2\nMove G3 Picasso2 Babyk3\n\n34) kenniepow: Move R2 Kenniepow Babyk3\n\n35) mirror33: Attack R2 Babyk3\n\n36) kenniepow: Trade Y2 R2 Kenniepow\n\tkenniepow: MEAN! That was my scoby ship (was going to help me procreate!). \n\tkenniepow: MEAN! That was my scoby ship (was going to help me procreate!). \n\n37) mirror33: Trade R1 G1 Mirror33\n\n38) kenniepow: Sacrifice G2 Babyk3\nBuild R1 Kenniepow\nBuild R3 Kenniepow\n\tmirror33: lol, just saw your scoby comment \r\n\n\n39) mirror33: Sacrifice Y1 Mirror33\nMove R2 Babyk3 Kenniepow\nCatastrophe Kenniepow R\n\n40) kenniepow: Build Y1 Kenniepow\n\n41) mirror33: Sacrifice Y1 Mirror33\nMove G3 Babyk3 Kenniepow\n\n42) kenniepow: Build Y1 Kenniepow\n\n43) mirror33: Sacrifice R2 Mirror33\nAttack Y1 Kenniepow\nAttack Y1 Kenniepow\n\n44) kenniepow: Build Y2 Kenniepow\n\n45) mirror33: Pass\nCatastrophe Kenniepow Y\n\n\nHomeworlds Online (SDG# 36704)\nVariants: &quot;Hard time&quot;\nStarted: 2020.7.5, Ended: 2020.7.20\nParticipants: eliscinsky (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) eliscinsky: H R2 B3 G3 Eliscinsky\n\n3) Trydnt: Build G1 Trydnt\n\teliscinsky: Greetings Trydnt, GL &amp; HF\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\tTrydnt: good luck to you too :)\n\n7) Trydnt: Build Y2 Trydnt\n\n8) eliscinsky: B Y2 Eliscinsky\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) eliscinsky: Discover Y1 Eliscinsky G1 Jalapeno\n\n11) Trydnt: Build G1 Trydnt\n\teliscinsky: I think I&#39;ll go with a &quot;pepper&quot; star naming theme this game. ;)\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Trydnt: Build G2 Trydnt\n\n14) eliscinsky: Build G2 Eliscinsky\n\n15) Trydnt: Discover Y2 Trydnt B3 B3\n\n16) eliscinsky: Trade G2 B2 Eliscinsky\n\n17) Trydnt: Trade G1 R1 Trydnt\n\n18) eliscinsky: Discover Y2 Eliscinsky B1 Chilaca\n\n19) Trydnt: Build R1 Trydnt\n\n20) eliscinsky: Trade G1 R1 Eliscinsky\n\n21) Trydnt: Build R2 Trydnt\n\n22) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: I think I see (finally) the flaw in my HW setup.\n\n23) Trydnt: Move R2 Trydnt G3\n\tTrydnt: no yellow? not a problem if you keep a yellow ship at home. my advice is when you go second, if you opponent takes banker, you know that whatever color the 1 size star is will be what is traded or first (so long as you don&#39;t also take a 1). So your set up gives you the natural advantage of being able to grow more yellow than me natively and yellow is the first color we go for. You will likely have to pull one of your yellow ships back but it&#39;ll have cost you two moves. in this case the real danger for you came about when I got the g2 as now if you grow two yellows even with a factory I&#39;d get the other two large yellows by sacrificing that. I&#39;d say opening up the g2s early is usually risky if you&#39;re going up against banker\n\teliscinsky: TY, I always enjoy learning from more experienced players. For me winning is the icing to the cake of knowledge.\n\n24) eliscinsky: Move Y1 Jalapeno Eliscinsky\n\tTrydnt: I like that. I always say, win or lose, every game is just a chance to learn and improve\n\n25) Trydnt: Trade R1 B1 Trydnt\n\n26) eliscinsky: Move G1 Eliscinsky Chilaca\n\n27) Trydnt: Build R1 G3\n\n28) eliscinsky: M R1 Eliscinsky Chilaca\n\n29) Trydnt: Discover R1 G3 G1 G1\n\n30) eliscinsky: Build G1 Eliscinsky\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 G1\nBuild R3 Trydnt\n\n32) eliscinsky: B R3 Chilaca\n\n33) Trydnt: Trade R3 G3 Trydnt\n\n34) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Chilaca\nBuild G2 Chilaca\nBuild G3 Eliscinsky\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Trydnt\nBuild B1 Trydnt\n\n36) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y2 Eliscinsky\nBuild Y3 Chilaca\nBuild G3 Eliscinsky\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y3 B3\nBuild Y3 G3\n\n38) eliscinsky: Trade G2 B2 Chilaca\n\n39) Trydnt: Sacrifice B1 Trydnt\nTrade R3 B3 G1\n\n40) eliscinsky: Sacrifice Y3 Chilaca\nDiscover G2 Chilaca Y3 Banana\nMove R3 Chilaca Banana\nMove B2 Chilaca Banana\n\n41) Trydnt: Sacrifice G2 Trydnt\nBuild B1 G1\nBuild R3 G1\n\n42) eliscinsky: S Y2 Eliscinsky\nM B2 Eliscinsky G1\nM B2 Banana G1\nC G1 B\n\n43) Trydnt: Sacrifice B1 Trydnt\nTrade R1 B1 G1\n\n44) eliscinsky: S G3 Eliscinsky\nB G2 Banana\nB G2 Eliscinsky\nB G3 Eliscinsky\n\n45) Trydnt: Sacrifice G3 Trydnt\nBuild B1 G1\nBuild B2 G1\nBuild R1 G1\n\n46) eliscinsky: Move G1 Eliscinsky G1\n\n47) Trydnt: Sacrifice Y3 B3\nMove B1 G1 Eliscinsky\nMove B1 G1 Eliscinsky\nMove R3 G1 Eliscinsky\n\n48) eliscinsky: Sacrifice R3 Banana\nAttack R1 G1\nAttack R3 Eliscinsky\nAttack B1 Eliscinsky\n\teliscinsky: I think I see what your headed, and I don&#39;t think I can stop it. Hmm...\n\teliscinsky: But here goes something.\n\n49) Trydnt: Sacrifice Y3 G3\nMove B2 G1 Eliscinsky\nCatastrophe Eliscinsky B\nMove R2 G3 Eliscinsky\nMove R2 G3 Eliscinsky\nCatastrophe Eliscinsky R\n\n\tTrydnt: well played!\n\teliscinsky: At least I went out with a DOUBLE BANG!  hahaha\r\nGood Game. Would love a rematch anytime. \r\nCongrats!\n\tTrydnt: Always down for a game... or two... or several, challenge me anytime you like\n\nHomeworlds Online (SDG# 36736)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.6, Ended: 2020.7.6\nParticipants: speardane (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) speardane: Homeworld G1 Y1 B3 *\n\n3) ajo: Build Y1 Ajo\n\n4) speardane: Build B1 Speardane\n\n5) ajo: Pass\n\n6) speardane: Move B1 Speardane Ajo\n\n7) ajo: Pass\n\n8) speardane: Sacrifice B1 Ajo\nPass\n\n9) ajo: Sacrifice Y3 Ajo\nMove Y1 Ajo Speardane\nMove Y1 Speardane Ajo\nPass\n\n10) speardane: Trade B3 Y3 Speardane\n\n11) ajo: Build Y1 Ajo\n\n12) speardane: Build Y2 Speardane\n\n13) ajo: Build Y2 Ajo\n\n14) speardane: Sacrifice Y3 Speardane\nDiscover Y2 Speardane B2 Alpha\nDiscover Y2 Alpha B3 Beta\nMove Y2 Beta Speardane\n\n\tDraw5PlayAll: Uhhhh...?!\n\nHomeworlds Online (SDG# 36748)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.14, Ended: 2020.7.15\nParticipants: Layana (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R3 G2 B3\n\tLayana: Hi there, I have never played this game before. So any hints might be appreciated. \n\n2) Layana: Homeworld B2 R1 G3\n\tBabamots: Sure! Have you read the rules? The latest version of the rules is here:\r\n\r\nhttps://www.looneylabs.com/lit/rules/homeworlds-rules\r\n\r\n(You&#39;ll have to copy and paste)\r\n\r\nIt&#39;s your first turn now, so you&#39;ll need to pick your homeworld star colors and sizes as well as your first ship. If you&#39;re not sure what to do, I suggest a medium blue star, a small red star, and a large green ship. On SDG, you give that command by typing this:\r\n\r\nhomeworld b2 r1 g3\n\tBabamots: One other thing: do you know how this game got started? I didn&#39;t think I had any open challenges that you could have joined, and if you had challenged me, I thought SDG should have asked me if I wanted to play (instead, the game began immediately without asking if I wanted to accept).\r\n\r\nJust curious!\n\n3) Babamots: Build B1 Babamots\n\n4) Layana: Build G1 Layana\n\tLayana: Ok, thanks for the hints. I&#39;ll go with your recommendation, then, even though I feel I&#39;d rather start with yellow than red - this way, I&#39;ll have to get a yellow ship to move out, won&#39;t I?\r\n\r\nAnd yes, the game was one of your open challenges. It&#39;s unrated, which is what I&#39;m looking for for the first 5 games. \n\n5) Babamots: Trade B1 Y1 Babamots\n\n6) Layana: Trade G1 Y1 Layana\n\tBabamots: Yes, you&#39;ll need to trade a ship for yellow before you can move to another system.\n\n7) Babamots: Build B1 Babamots\n\n8) Layana: Build G1 Layana\n\n9) Babamots: Build B1 Babamots\n\n10) Layana: Build G1 Layana\n\n11) Babamots: Discover B1 Babamots B1 Bolarus\n\n12) Layana: Discover G1 Layana R3 Cassiopeia\n\n13) Babamots: Build B2 Babamots\n\n14) Layana: Build G1 Layana\n\n15) Babamots: Trade B2 G2 Babamots\n\n16) Layana: Sacrifice G3 Layana\nBuild G2 Layana\nBuild G3 Cassiopeia\nBuild G3 Cassiopeia\n\n17) Babamots: Build G3 Babamots\n\n18) Layana: Trade G2 B2 Layana\n\n19) Babamots: Trade B3 Y3 Babamots\n\n20) Layana: Sacrifice G1 Cassiopeia\nBuild Y1 Layana\n\tBabamots: I think your first move was better since it kept a large ship at your home. But I can&#39;t invade yet, so you should be ok.\n\n21) Babamots: Sacrifice G2 Babamots\nBuild B2 Babamots\nBuild B3 Bolarus\n\tLayana: Well, eventually, I&#39;m probably going to sacrifice one of the G3s again, anyway, and then I can rebuild that in my homeworld, right?\n\n22) Layana: Move Y1 Layana Cassiopeia\n\n23) Babamots: Build B3 Babamots\n\tBabamots: That will probably be OK, but I recommend doing it sooner than later.\n\n\tBabamots: Yeah, I don&#39;t like the pressure of playing ranked games. I&#39;d be happy to play another if this one is looking too discouraging.\r\n\r\nIf at any point you&#39;d like to do some reading about strategy or try some position puzzles, I&#39;ve got a little website you can take a look at here:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/index.html\r\n\r\nThe Icehouse Wiki guide is pretty good too:\r\n\r\nhttps://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\tLayana: Thanks, I&#39;ll look into it. \n\nHomeworlds Online (SDG# 36611)\nVariants: &quot;Hard time&quot;\nStarted: 2020.7.14, Ended: 2020.7.30\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\tdlwillson: TY, GL, and HF!\n\tDraw5PlayAll: Ugh... do I instafreeze yellow, or not...?\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tdlwillson: It&#39;s up to you! I don&#39;t mind! I think the advantage of going second is generally overestimated.\n\tdlwillson: Do you want to start over, so you can instafreeze yellow? I really don&#39;t mind.\n\tDraw5PlayAll: Nah, last time I did it I lost due to not having blue, which meant not having red.\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) dlwillson: Build R2 Dlwillson\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) dlwillson: B R2 Dlwillson\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) dlwillson: T R2 Y2 Dlwillson\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) dlwillson: Discover R1 Dlwillson G2 Field\n\n14) Draw5PlayAll: Discover R1 Draw5playall G3 Eye\n\n15) dlwillson: Build Y1 Dlwillson\n\n16) Draw5PlayAll: Build Y1 Draw5playall\n\n17) dlwillson: Trade Y1 B1 Dlwillson\n\n18) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n19) dlwillson: M B1 Dlwillson Field\n\n20) Draw5PlayAll: Move B1 Draw5playall Eye\n\n21) dlwillson: M Y2 Dlwillson Field\n\n22) Draw5PlayAll: Discover R2 Draw5playall B3 Taxation\n\n23) dlwillson: B Y1 Field\n\n24) Draw5PlayAll: Build Y1 Draw5playall\n\n25) dlwillson: M Y2 Field Eye\n\n26) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R2 Taxation Field\n\n27) dlwillson: Sacrifice R2 Dlwillson\nAttack R1 Eye\nAttack B1 Eye\n\tDraw5PlayAll: Tit for tat!\n\n28) Draw5PlayAll: Attack Y1 Field\n\n29) dlwillson: B R2 Field\n\n30) Draw5PlayAll: Attack R2 Field\n\n31) dlwillson: Build R2 Field\nCatastrophe Field R\n\n32) Draw5PlayAll: Discover Y1 Field G1 Toaster\n\n33) dlwillson: Build R1 Eye\n\n34) Draw5PlayAll: Build G1 Draw5playall\n\n35) dlwillson: B B1 Eye\n\n36) Draw5PlayAll: Discover G1 Draw5playall B3 Taxation\n\n37) dlwillson: B B2 Eye\n\n38) Draw5PlayAll: Move Y2 Draw5playall Taxation\n\n39) dlwillson: Build B2 Field\n\n40) Draw5PlayAll: Discover Y1 Toaster B3 Stealakeeper\n\n41) dlwillson: Trade B2 Y2 Field\n\n42) Draw5PlayAll: Trade Y2 R2 Taxation\n\n43) dlwillson: Move R1 Eye Field\n\tDraw5PlayAll: I doubt I can come back from this.\n\n44) Draw5PlayAll: Build R2 Taxation\n\n45) dlwillson: B G1 Dlwillson\n\n46) Draw5PlayAll: Trade R2 Y2 Taxation\n\n47) dlwillson: Build R2 Field\n\n48) Draw5PlayAll: Build G1 Draw5playall\n\n49) dlwillson: Move B2 Eye Draw5playall\n\n50) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Taxation\nBuild G2 Taxation\nBuild G3 Draw5playall\n\n51) dlwillson: Sacrifice Y2 Eye\nMove B1 Eye Draw5playall\nMove R2 Field Dlwillson\n\n52) Draw5PlayAll: Move G2 Taxation Field\n\tdlwillson: I guess I can afford a small insurance policy.\n\n53) dlwillson: Sacrifice Y2 Field\nMove B1 Eye Draw5playall\nCatastrophe Draw5playall B\nMove B1 Field Taxation\n\tDraw5PlayAll: I guess I can afford to mess you up.\n\n54) Draw5PlayAll: Sacrifice R2 Taxation\nAttack B1 Taxation\nAttack R1 Field\n\n55) dlwillson: B R2 Eye\n\n56) Draw5PlayAll: Discover G1 Taxation B2 Jackpot\n\tDraw5PlayAll: This is interesting...\n\n57) dlwillson: T G3 Y3 Dlwillson\n\n58) Draw5PlayAll: Sacrifice Y2 Taxation\nMove G1 Jackpot Eye\nMove G1 Draw5playall Eye\n\n59) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Eye Draw5playall\nMove R2 Eye Draw5playall\nPass\n\n60) Draw5PlayAll: Attack R2 Draw5playall\n\n61) dlwillson: S G1 Dlwillson\nB R2 Draw5playall\nC Draw5playall R\n\n\tdlwillson: Well, that&#39;s the long-expected win on this one, but I think you&#39;re going to win the ladder match.\n\tDraw5PlayAll: I hope...\n\nHomeworlds Online (SDG# 36698)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.7.15, Ended: 2020.7.18\nParticipants: wil (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld B2 Y1 G3\n\n\tLayana: Good luck, have fun. This is one of my first games, so don&#39;t expect to much. I&#39;m just experimenting as of now :) \n\twil: So sorry. There are times I don&#39;t check in...try me again \n\nHomeworlds Online (SDG# 36352)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.15, Ended: 2020.7.18\nParticipants: Layana (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Layana: Homeworld G2 Y1 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Layana: Build B1 Layana\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Layana: Build B1 Layana\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Layana: Discover B1 Layana G3 Orion\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) Layana: Build B1 Orion\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y2 G3\nBuild Y3 Trydnt\n\n12) Layana: Build B2 Orion\n\n13) Trydnt: Trade Y3 G3 Trydnt\n\n14) Layana: Trade B3 R3 Layana\n\n15) Trydnt: Build Y3 Trydnt\n\n\nHomeworlds Online (SDG# 36767)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.15, Ended: 2020.7.16\nParticipants: Babamots (S), Layana (N)\nWinner: Babamots\n\n1) Layana: Homeworld B2 Y1 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) Layana: Build G1 Layana\n\n4) Babamots: Build G1 Babamots\n\n5) Layana: Trade G1 Y1 Layana\n\tLayana: Actually, I really liked our game - I&#39;d like to lose my first 5 or so games as fast and educational as possible, then I&#39;ll look into puzzles. \n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Layana: Build Y2 Layana\n\n8) Babamots: Build Y2 Babamots\n\tBabamots: That&#39;s what I hear about the game of go: you should lose your first 50 games as quickly as possible (or 100 or 500, depending on whom you ask).\r\n\r\nGetting slaughtered is the traditional way to learn Homeworlds as well, though I&#39;m trying to change that a little by compiling my wisdom on my site and making it available.\n\n9) Layana: Build G1 Layana\n\n10) Babamots: Discover Y1 Babamots Y2 Aldea\n\n11) Layana: Discover Y1 Layana G3 Fintlewoodlewix\n\n12) Babamots: Build Y3 Babamots\n\n13) Layana: Trade G1 R1 Layana\n\n14) Babamots: Trade Y2 R2 Babamots\n\n15) Layana: Build G1 Layana\n\n16) Babamots: Discover Y1 Aldea G1 Bajor\n\n17) Layana: Trade G1 B1 Layana\n\n18) Babamots: Build Y2 Bajor\n\n19) Layana: Build B1 Layana\n\tLayana: Cool how you gained a foothold, cut off your homeworld and, due to the scarcity of yellow in the global stash, can threaten an overpopulation without fear of repercussion. I&#39;m starting to like this game :)\n\tLayana: I meant due to the scarcity of yellow you can get ahead in the big ship count\n\n20) Babamots: Discover Y2 Bajor B3 Bolarus\n\n21) Layana: Move G3 Layana Bolarus\n\tBabamots: I wouldn&#39;t say I &quot;cut off&quot; my homeworld since either of us can always discover a new medium-sized world to connect to me. But yeah, the game is pretty wild. I love it.\n\n22) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild Y3 Bajor\nBuild Y3 Babamots\n\tLayana: So are there any &quot;standard&quot; opening moves I should be aware of?\n\n\tBabamots: There&#39;s only thing I know of that I would call a standard opening, and that&#39;s when a player attempts an instafreeze, and the other player properly trades their original large ship for the frozen color. But even in that case, there are only two or three scripted turns.\r\n\r\nI think the main thing in the opening is to keep a close eye on the bank and try to think at least two turns ahead. I&#39;m always checking &quot;What will happen if we keep building the colors that we&#39;ve been working on? Who gets bigger ships faster?&quot; If I&#39;ll get the bigger ships, I keep building. If my opponent will get bigger ships, I&#39;ll look for a way to change things up (block their builds, trade to start developing another color, threaten an attack on a colony etc.).\n\tBabamots: By the way, do you know how to review a game once it&#39;s over? You can get to an &quot;archive&quot; view from your game history (link on your home page).\r\n\r\nHere&#39;s the archive view of this game:\r\n\r\nhttp://www.superdupergames.org/main.html?page=archive_play&amp;gid=36767\n\nHomeworlds Online (SDG# 36771)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.16, Ended: 2020.7.18\nParticipants: Babamots (S), Layana (N)\nWinner: Babamots\n\n1) Layana: Homeworld Y3 B2 G3\n\n2) Babamots: Homeworld B3 Y1 G3\n\n3) Layana: Build G1 Layana\n\n4) Babamots: Build G1 Babamots\n\n5) Layana: Trade G3 Y3 Layana\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Layana: Build Y1 Layana\n\n8) Babamots: Discover Y1 Babamots G2 Cardassia\n\n9) Layana: Discover Y1 Layana G1 Vulcan\n\n10) Babamots: Build Y2 Cardassia\n\n11) Layana: Build Y2 Vulcan\n\n12) Babamots: Discover Y1 Cardassia G1 Orion\n\n13) Layana: Discover Y2 Vulcan B2 Deneb\n\n14) Babamots: Build G2 Babamots\n\n15) Layana: Discover Y1 Vulcan Y3 Risa\n\n16) Babamots: Build Y2 Orion\n\tBabamots: That&#39;s a good move. It blocks me from double-building to get the y3.\n\n17) Layana: Discover Y3 Layana B1 Betazed\n\tBabamots: Though now you need to figure out how to avoid a catastrophe.\n\tLayana: If I trade away the y3, you can again build it. If I don&#39;t want that, I&#39;ll have to move out of the system. The third, theoretical option would be to sacrifice it, but I don&#39;t really see what I could gain from that, and I&#39;d lose my only large ship. None of the options sound to jazzy, actually. \n\n18) Babamots: Trade G2 R2 Babamots\n\n19) Layana: Trade Y3 R3 Betazed\n\tBabamots: I&#39;m afraid that won&#39;t work out since it leaves you open to attack once I get red. I don&#39;t see a way out of this for you.\n\tBabamots: I think your best bet is to trade your y3 for r3 and sacrifice your y1 to bring it home. I get a y3 ship out of it, but you don&#39;t lose the game, a star, or a ship.\n\n20) Babamots: Build Y3 Cardassia\n\n\tLayana: I think there&#39;s nothing much I can do to prevent a Catastrophe in two turns, after which or homeworlds are going to be adjacent, and you will still have your g3. But if you don&#39;t mind I would like to play a few more moves nonetheless. \n\tBabamots: If I wanted to destroy your yellow star as quickly as possible, you&#39;re right that you wouldn&#39;t be able to prevent it. But doing that would spend most of my material advantage, which might make it a little easier for you to make a comeback.\r\n\r\nHere&#39;s my longish discussion of &quot;Planning for complete, swift victory&quot;\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/strategy.html#swiftVictory\r\n\r\nSo my plan is to not attack until I can destroy both of your stars in quick succession (unless of course you give me a chance to win immediately, like if you don&#39;t move your large ship home this turn).\n\tBabamots: I have no objection to continuing the game, especially when I&#39;m ahead ;-).\n\tLayana: Well, while I feel this is lost already, I still think it might be educational to see how you finish the game. \n\tLayana: Well, while I feel this is lost already, I still think it might be educational to see how you finish the game. \n\tBabamots: Sorry if that was discouraging. I hope you felt like it was educational anyway.\n\nHomeworlds Online (SDG# 36770)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.16, Ended: 2020.7.23\nParticipants: Babamots (S), Layana (N)\nWinner: Babamots\n\n1) Layana: Homeworld Y3 B2 G3\n\n2) Babamots: Homeworld B2 R3 G3\n\n3) Layana: Build G1 Layana\n\tBabamots: I&#39;ll need to focus on work today, so I&#39;ll probably make fewer moves than yesterday. :-)\n\n4) Babamots: Build G1 Babamots\n\n5) Layana: Trade G1 Y1 Layana\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Layana: Discover Y1 Layana G1 Andoria\n\n8) Babamots: Build Y1 Babamots\n\n9) Layana: Build Y2 Andoria\n\n10) Babamots: Build Y2 Babamots\n\n11) Layana: Move Y1 Andoria Babamots\nCatastrophe Babamots Y\n\n12) Babamots: Build G1 Babamots\n\tBabamots: Oops, I forgot that this was a small universe. Well, that makes it more interesting.\n\n13) Layana: Build G1 Layana\n\n14) Babamots: Trade G1 Y1 Babamots\n\tLayana: Well, it could be smaller still... \n\n15) Layana: Trade G1 B1 Layana\n\n16) Babamots: Build Y1 Babamots\n\n17) Layana: Move B1 Layana Andoria\n\n18) Babamots: Discover Y1 Babamots G1 Orion\n\n19) Layana: Build B1 Andoria\n\n20) Babamots: Build Y1 Babamots\n\n21) Layana: Build B1 Andoria\n\n22) Babamots: Discover Y1 Babamots G1 Ferenginar\n\n23) Layana: Move B1 Andoria Babamots\n\n24) Babamots: Attack B1 Babamots\n\n25) Layana: Sacrifice Y2 Andoria\nMove B1 Andoria Babamots\nMove B1 Andoria Babamots\nCatastrophe Babamots B\n\n26) Babamots: Build Y2 Babamots\n\n27) Layana: Build G1 Layana\n\n28) Babamots: Sacrifice G3 Babamots\nBuild Y2 Ferenginar\nBuild Y2 Orion\nBuild Y3 Babamots\n\tBabamots: I think I can come back from this if I can keep a hold of the yellow economy.\n\n29) Layana: Build G2 Layana\n\tLayana: Was it a mistake to attack so soon? \n\n30) Babamots: Discover Y2 Orion B2 Bolarus\n\tBabamots: I think it was a mistake to attack so soon. You got one of my stars, but you used to have the advantage in color diversity and material. I&#39;ve got a pretty big material advantage now, though it&#39;s easier for you to diversify. I&#39;ll need to discover a blue star before I have any ships besides yellow.\n\tLayana: You&#39;re right. I can&#39;t trade for y3, because you&#39;d just Catastrophe my homeworld. That basically shuts me out of yellow. \n\tLayana: How would you have played this, then? I feel like whenever I get some sort of material advantage, there is always a threat of Catastrophe to take that away. I guess I need to spread out my forces me, but that feels like I&#39;m losing tempo every time. \n\n31) Layana: Discover G2 Layana B1 Qonos\n\tBabamots: Here&#39;s a link to the position before the invasion:\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=36770&amp;idx=21\r\n\r\nHere&#39;s my analysis of that position.\r\n\r\n* You&#39;re up a small ship and a color.\r\n\r\n* I can&#39;t work on getting blue, so you&#39;re safe from blue catastrophe.\r\n\r\n* You don&#39;t have red yet, but neither do I, so you&#39;re safe from invasion for now.\r\n\r\n* The advantage I see for me is my strength in the yellow economy: lots of ships, nicely spread out. Once we use up a few more yellows I&#39;m ready to do a g3 sacrifice and at least one large yellow build (a chameleon factory). In the real game, this is what I&#39;m trying to take advantage of.\r\n\r\n* You&#39;re in a good position to start getting red: you trade one of your blues (no loss of diversity since you still have blue). For me, getting red safely is at least a three turn thing. I need to build a ship (yellow or green) at home (so I don&#39;t have to trade away my only yellow there), then trade the new ship for red, then move the red out of my home to avoid the danger of overpopulation. By then you could actually have two red ships and be ready to do a catastrophe on me.\r\n\r\n* I think pressing your red-potential advantage is how you win from here.\r\n1) Trade b1 for r1\r\n2) build another red (to make it hard for me to get red without risking catastrophe at home),\r\n3) build yellow\r\n4) move yellow to a new system (so you&#39;re better prepared to build yellow when/if I open up larges),\r\n5) build more blue and red to prepare to destroy my stars.\r\n\n\n32) Babamots: Build Y3 Orion\n\tBabamots: Right now, you need to worry about getting totally locked out of yellow. With no yellow, you can&#39;t reach my home and the best you can hope for is a draw. (SDG doesn&#39;t actually allow draws, but the game could stall if you can&#39;t reach me but I don&#39;t have enough material to end you). My fear is that you&#39;ll manage to get another g3, and trade that g3 for y3.\r\n\r\nI&#39;m now scrambling to diversify my fleet and keep it spread out. I don&#39;t want you to get red and catch several of my ships vulnerable before I can get red.\r\n\r\nYou can see that I&#39;ve moved a y2 to a blue system, so I&#39;m planning to trade it for another color. You you&#39;ll want to trade g2 for y2 once I free up the piece. I think you should discover a b1 system with your g2 so that you can get the y2 without the danger of overpopulation in your home.\n\n33) Layana: Build G2 Layana\n\tLayana: So is it true that a homeworld with a yellow star is easier to attack via Catastrophe than other homeworlds? After all, you need yellow to move and setup a Catastrophe, so in the case of a yellow homeworld star, you don&#39;t really have to be that diverse. And I feel you basically need some yellow no matter what you are going for. \n\tBabamots: I actually think the opposite: causing a catastrophe against a yellow star seems a little harder than against other colors, especially if you want to knock out both stars quickly. Think about the material you need to quickly knock out a blue-yellow home:\r\n\r\n* Three blue ships to trigger a blue star catastrophe\r\n* Three yellow ships to trigger a yellow star catastrophe\r\n* Two yellows to sacrifice\r\n* A ship occupying your home, of course\r\n\r\nThose Five yellow ships need to be spread across at least three systems to keep from having a three-concentration. Each of those systems will probably need a large ship defending it. That&#39;s a lot of infrastructure.\r\n\r\nFor another thing, of the nine yellow pieces, one is a home star and five are your ships. There are only three yellows to spare. If there are just four yellows tied up as enemy ships or stars, then there aren&#39;t enough pieces for your Doomsday machine.\r\n\r\nIf that home star were red instead, then the ships you need are more diverse (three red, three blue, two yellow). You need a little of everything, but you don&#39;t need to dominate any one economy. And all of those ships can safely fit in just two systems with a maximum color-concentration of two in any system. It seems to me that this is usually easier.\n\tBabamots: But I take red home stars anyway so that I can safely build more yellow at home.\n\n34) Babamots: Discover Y3 Orion B3 Betazed\n\n35) Layana: Trade G2 R2 Layana\n\tLayana: Yes, that makes sense. But if you attack the opponent in two waves, then you wouldn&#39;t need that many ships at once, surely? \n\tLayana: Yes, that makes sense. But if you attack the opponent in two waves, then you wouldn&#39;t need that many ships at once, surely? \n\tLayana: One more question : with my current lead in green, I should be able to get most of the blue ships, right? Would that not be preferable to trying to go into red? As a defensive play? \n\tBabamots: You&#39;re right, if you&#39;re comfortable launching your attack in two waves, then you don&#39;t need as much yellow all at once. After the first phase, you may be able to build a yellow to complete the second phase (if your opponent doesn&#39;t beat you to it). Every turn that takes place between the phases increases the danger.\r\n\r\nAnd sometimes it&#39;s easier to run away with a lead in the yellow economy than it is to diversify, in which case you&#39;ll have no trouble destroying a yellow star.\r\n\r\nI&#39;ve made my argument for yellow stars being good for defense, but it&#39;s mostly theory and gut feeling. I guess the best answer would be to look at all the HW games on SDG and see if yellow stars are more or less likely to be destroyed. I might look into collecting that data, but in the meantime, it&#39;s OK if we don&#39;t agree :-).\n\tBabamots: I think you&#39;re better off getting some red before you worry about blue here. (The best defense is a good offense, as they say.) Getting a red will put pressure on me to get red, which may help to free up yellow pieces for you. Also you&#39;ll need red to destroy my other star.\r\n\r\nI&#39;m trying hard not to let you get yellow. In order to catastrophe a red star, you absolutely need at least a y2 to sacrifice (if you move red ships to my home one at a time, I&#39;ll capture them while sacrificing the ones I captured on previous turns.)\r\n\r\nSince my last turn, I&#39;ve changed my mind about what I should do next. I was planning to trade my y2 for r2, but really don&#39;t want to let you get a y2, so I&#39;m looking at a couple of other options.\n\n36) Babamots: Trade Y3 G3 Betazed\n\n37) Layana: Move R2 Layana Ferenginar\n\n38) Babamots: Sacrifice Y2 Ferenginar\nDiscover Y1 Ferenginar Y2 Iconia\nDiscover Y2 Bolarus Y3 Aldea\n\n39) Layana: Trade G1 B1 Layana\n\n40) Babamots: Move Y1 Orion Betazed\n\tBabamots: Hmm, now that you have a red, you&#39;re prepared to take advantage of any weak systems that I open up to you. I think I&#39;ve got to go full boa constrictor here and keep you from getting any yellow, whatever the cost. I&#39;m going to build up a victory fleet where you can&#39;t bother me.\r\n\r\nI&#39;m theorizing here, but I think your next objective needs to be using up all of the small pieces (mostly as ships) so that, assuming I amass a victory fleet, I won&#39;t have a way to get it to your home. Using up the rest of the greens will give you a factory to build faster (although it will give me a chance to get another g3 and a factory as well).\n\n41) Layana: Build G1 Layana\n\tLayana: It seems nontrivial to actually get those green ships without risking my g3, though :) \n\n42) Babamots: Build G1 Betazed\n\n43) Layana: Build G2 Qonos\n\n44) Babamots: Trade G1 B1 Betazed\n\tBabamots: You say &quot;nontrivial&quot; like a mathematician. Do you consider yourself one?\n\n45) Layana: Sacrifice G2 Qonos\nBuild G1 Qonos\nBuild R1 Ferenginar\n\tLayana: I have a Ph.d. in pure mathematics, somewhere between category theory, algebra, topology and logic (at bit of all of that, I suppose). I work half-time at the &quot;Institut Analysis and Algebra&quot; of Technische Universit&auml;t Braunschweig. But I also work in automotive industry...\n\tLayana: What about you?\n\n46) Babamots: Build B2 Betazed\n\tBabamots: I&#39;m an applied math PhD student. I&#39;m working in numerical linear algebra and control problems.\n\tLayana: I have a phd student who is working on control theory, too. Some people seem to like their categories of topological monoid actions... \n\n47) Layana: Trade G2 B2 Qonos\n\tBabamots: I know what a topology is, not too sure about the other parts. :-D\n\n48) Babamots: Build G2 Betazed\n\n49) Layana: Build G2 Qonos\n\n50) Babamots: Discover G3 Betazed R1 Romulus\n\n\tBabamots: Just realized I should be able to go the whole game without any red ships this way.\n\tLayana: Yes, this is like super over. Thanks for the game :) are you fine continuing our games, even if they aren&#39;t challenging to you? Can we maybe try a game where you start with only one star (so that I can see what that is like)? \n\tBabamots: I&#39;m having a good time. I&#39;m winning, aren&#39;t I? :-D\r\n\r\nAre you suggesting that we both start with one star, or just me? SDG doesn&#39;t actually let you start with only one star, but we could deliberately cause catastrophes in the first few moves.\n\tLayana: Well, easy wins tend to become boring after a while, don&#39;t they? And yes, I meant just you. \n\nHomeworlds Online (SDG# 36764)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.18, Ended: 2020.7.25\nParticipants: Layana (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Layana: Homeworld B2 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Layana: Build G1 Layana\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Layana: Trade G1 Y1 Layana\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Layana: Discover Y1 Layana G1 Antares\n\n9) Trydnt: Trade Y1 B1 Trydnt\n\n10) Layana: Build G1 Layana\n\n11) Trydnt: Build B1 Trydnt\n\n12) Layana: Trade G1 B1 Layana\n\n13) Trydnt: Discover B1 Trydnt G3 G3\n\n14) Layana: Discover B1 Layana G1 Risa\n\n15) Trydnt: Move Y2 Trydnt G3\n\n16) Layana: Build Y1 Antares\n\n17) Trydnt: Build Y2 G3\n\n18) Layana: Discover Y1 Antares B3 Orion\n\n19) Trydnt: Move Y2 G3 Risa\n\n20) Layana: Build G1 Layana\n\n21) Trydnt: Build G2 Trydnt\n\n22) Layana: Build G2 Layana\n\n23) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 Risa\nBuild Y3 G3\n\n24) Layana: Sacrifice G2 Layana\nBuild Y3 Orion\nBuild G2 Layana\n\n25) Trydnt: Sacrifice Y3 G3\nMove G3 Trydnt G3\nMove G3 G3 Risa\nMove G3 Risa Layana\nCatastrophe Layana G\n\n\nHomeworlds Online (SDG# 36778)\nStarted: 2020.7.18, Ended: 2020.10.5\nParticipants: huddyrx (S), Mantheron (N)\nWinner: Mantheron\n\n1) Mantheron: Homeworld B3 Y2 G3\n\n2) huddyrx: Homeworld B3 R1 G3\n\n3) Mantheron: Build G1 Mantheron\n\n4) huddyrx: Build G1 Huddyrx\n\n5) Mantheron: Discover G1 Mantheron B1 Altair\n\n6) huddyrx: Trade G1 Y1 Huddyrx\n\n7) Mantheron: Build G1 Mantheron\n\n8) huddyrx: Build Y1 Huddyrx\n\n9) Mantheron: Trade G1 Y1 Mantheron\n\n10) huddyrx: Build Y2 Huddyrx\n\n11) Mantheron: Build Y2 Mantheron\n\n12) huddyrx: Discover Y2 Huddyrx B2 Cosmo\n\n13) Mantheron: Trade Y1 R1 Mantheron\n\n14) huddyrx: Build G1 Huddyrx\n\n15) Mantheron: Build R1 Mantheron\n\n16) huddyrx: Move G1 Huddyrx Cosmo\n\n17) Mantheron: Move R1 Mantheron Altair\n\n18) huddyrx: Build G1 Cosmo\n\n19) Mantheron: Build G2 Mantheron\n\n20) huddyrx: Discover G1 Cosmo B1 Ellie\n\n21) Mantheron: Build R2 Altair\n\n22) huddyrx: Build G2 Huddyrx\n\n23) Mantheron: Move Y2 Mantheron Altair\n\n24) huddyrx: Move Y1 Huddyrx Cosmo\n\n25) Mantheron: Move R2 Altair Cosmo\n\n26) huddyrx: Sacrifice Y2 Cosmo\nMove Y1 Cosmo Ellie\nMove G1 Cosmo Ellie\n\n27) Mantheron: Move R1 Mantheron Ellie\n\n28) huddyrx: Sacrifice G2 Huddyrx\nBuild Y1 Ellie\nBuild Y2 Ellie\n\n29) Mantheron: Sacrifice R2 Cosmo\nAttack G1 Ellie\nAttack G1 Ellie\n\n30) huddyrx: Trade Y2 R2 Ellie\n\n31) Mantheron: Build G2 Ellie\n\n32) huddyrx: Attack G2 Ellie\n\n33) Mantheron: Build G2 Ellie\nCatastrophe Ellie Green\n\n34) huddyrx: Attack R1 Ellie\n\n35) Mantheron: Trade G2 R2 Mantheron\n\n36) huddyrx: Build Y2 Huddyrx\n\n37) Mantheron: Build Y3 Altair\n\n38) huddyrx: Build Y3 Huddyrx\n\n39) Mantheron: Build R2 Altair\n\n40) huddyrx: Sacrifice Y3 Huddyrx\nMove Y1 Ellie Mantheron\nMove Y1 Ellie Mantheron\nDiscover Y1 Huddyrx B2 Cosmo\n\n41) Mantheron: Discover R2 Altair G2 Deneb\n\n42) huddyrx: Sacrifice Y2 Huddyrx\nMove Y1 Cosmo Ellie\nMove Y1 Ellie Mantheron\nCatastrophe Mantheron Yellow\n\n43) Mantheron: Build R3 Deneb\n\n44) huddyrx: Build G1 Huddyrx\n\n45) Mantheron: Build R3 Altair\n\n46) huddyrx: Trade G1 Y1 Huddyrx\n\n47) Mantheron: Discover R3 Altair Y2 Fawaris\n\n48) huddyrx: Build Y1 Huddyrx\n\n49) Mantheron: Sacrifice Y3 Altair\nMove R3 Fawaris Huddyrx\nMove R3 Deneb Huddyrx\nMove R2 Deneb Huddyrx\nCatastrophe Huddyrx Red\n\n50) huddyrx: Trade Y1 B1 Huddyrx\n\n51) Mantheron: Build R1 Mantheron\n\n52) huddyrx: Build Y1 Huddyrx\n\n53) Mantheron: Build R2 Altair\n\n54) huddyrx: Discover B1 Huddyrx G2 Reggie\n\n55) Mantheron: Move R2 Altair Reggie\n\n56) huddyrx: Trade G3 R3 Huddyrx\n\n57) Mantheron: Attack B1 Reggie\n\n58) huddyrx: Trade Y1 G1 Huddyrx\n\n59) Mantheron: Build R3 Altair\n\n60) huddyrx: Build R3 Huddyrx\n\n61) Mantheron: Build B2 Reggie\n\n62) huddyrx: Build Y1 Huddyrx\n\n63) Mantheron: Build Y1 Altair\n\n64) huddyrx: Move R3 Huddyrx Ellie\n\n65) Mantheron: Sacrifice Y1 Altair\nMove R1 Mantheron Ellie\nCatastrophe Ellie Red\n\n66) huddyrx: Trade Y1 B1 Huddyrx\n\n67) Mantheron: Sacrifice Y2 Altair\nMove B1 Reggie Huddyrx\nMove B2 Reggie Huddyrx\nCatastrophe Huddyrx Blue\n\n\nHomeworlds Online (SDG# 36787)\nVariants: &quot;Hard time&quot;\nStarted: 2020.7.21, Ended: 2020.8.28\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) dlwillson: Homeworld B3 Y1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tdlwillson: You have completely freaked me out with that weird opening move!\n\tDraw5PlayAll: I did not want to confuse this with the other game.\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) dlwillson: Build R1 Dlwillson\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) dlwillson: Discover R1 Dlwillson R2 Mars\n\n11) Draw5PlayAll: Discover Y2 Draw5playall G1 Rocket\n\n12) dlwillson: Build R1 Dlwillson\n\n13) Draw5PlayAll: Discover Y1 Draw5playall B3 Taxation\n\n14) dlwillson: Discover R1 Dlwillson B2 Sea\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Taxation\nBuild Y2 Taxation\nBuild Y3 Draw5playall\n\n16) dlwillson: Build R2 Dlwillson\n\n17) Draw5PlayAll: Build Y3 Rocket\n\n18) dlwillson: Build R3 Dlwillson\n\n19) Draw5PlayAll: Build Y3 Rocket\n\n20) dlwillson: Move R2 Dlwillson Sea\n\tdlwillson: Such a weird board layout. It&#39;s fun.\n\n21) Draw5PlayAll: Move Y3 Rocket Mars\n\n22) dlwillson: S R1 Mars\nPass\n\n23) Draw5PlayAll: Discover Y3 Mars B1 Stealakeeper\n\tDraw5PlayAll: The question is, are you the kind of player who would do it, or not?\n\tdlwillson: Do what? Waste a bunch of ships and turns for nothing? Jeez, I hope not.\n\n24) dlwillson: Build R1 Dlwillson\n\tdlwillson: Or sac a ship to keep it away from you? I am that kind.\n\tdlwillson: \n\n25) Draw5PlayAll: Trade Y3 R3 Stealakeeper\n\tDraw5PlayAll: I can only hope this works...\n\tdlwillson: I have no idea what you&#39;re trying to do, this time, so I guess it probably will.\n\n26) dlwillson: T R3 Y3 Dlwillson\n\n27) Draw5PlayAll: Sacrifice Y3 Rocket\nMove Y1 Draw5playall Dlwillson\nMove Y1 Taxation Sea\nMove Y1 Sea Dlwillson\nCatastrophe Dlwillson Yellow\n\tDraw5PlayAll: This.\n\n28) dlwillson: Trade R1 Y1 Dlwillson\n\tdlwillson: But, you could have done that anytime. I still don&#39;t get why that&#39;s better than any other time.\n\n29) Draw5PlayAll: Trade Y2 G2 Taxation\n\tDraw5PlayAll: That&#39;s why.\n\tdlwillson: So, I guess I should have moved the R3 to sea, rather than creating an R1. Lesson learned. Good play.\n\n30) dlwillson: Trade R2 G2 Sea\n\tdlwillson: Still... Unless I&#39;m mis-remembering, you had that trade option before. For example, you could have traded your home Y3 for an R3 anytime. No, wait, you couldn&#39;t have, because then I *could* have forced a red cat. But it wasn&#39;t an option anywhere else, either? Hm...\n\n31) Draw5PlayAll: Build Y1 Taxation\n\n32) dlwillson: B R1 Dlwillson\n\n33) Draw5PlayAll: Build G1 Taxation\n\n34) dlwillson: B R2 Sea\n\n35) Draw5PlayAll: Trade G2 R2 Taxation\n\n36) dlwillson: Trade R1 B1 Sea\n\n37) Draw5PlayAll: Trade Y1 B1 Taxation\n\n38) dlwillson: Discover R1 Dlwillson Y1 Sol\n\n39) Draw5PlayAll: Move B1 Taxation Rocket\n\n40) dlwillson: B G1 Dlwillson\n\n41) Draw5PlayAll: Discover Y2 Rocket R3 Countdown\n\n42) dlwillson: S G2 Sea\nB R1 Sea\nB R3 Sol\n\n43) Draw5PlayAll: Build G2 Taxation\n\n44) dlwillson: Move R3 Sol Taxation\n\n45) Draw5PlayAll: Sacrifice Y2 Taxation\nMove G2 Taxation Stealakeeper\nDiscover R2 Taxation G2 Moon\n\n46) dlwillson: A G1 Taxation\n\n47) Draw5PlayAll: Build B2 Rocket\n\n48) dlwillson: Discover R1 Sol B3 Sky\n\n49) Draw5PlayAll: Build G2 Stealakeeper\n\n50) dlwillson: Move G1 Dlwillson Sea\n\tDraw5PlayAll: *darn* Countdown is Rocket + Time, not Rocket + Moon. Oh well.\n\n51) Draw5PlayAll: Sacrifice Y2 Countdown\nMove B2 Rocket Sea\nMove B1 Rocket Sea\nCatastrophe Sea Blue\n\n52) dlwillson: Build Y1 Dlwillson\n\n53) Draw5PlayAll: Trade G2 Y2 Stealakeeper\n\n54) dlwillson: T Y1 B1 Dlwillson\n\n55) Draw5PlayAll: Discover G2 Stealakeeper R3 Worldpeace\n\n56) dlwillson: B B1 Dlwillson\n\n57) Draw5PlayAll: Build R1 Moon\n\n58) dlwillson: Build R2 Taxation\n\n59) Draw5PlayAll: Sacrifice G2 Worldpeace\nBuild R3 Stealakeeper\nBuild Y1 Stealakeeper\n\n60) dlwillson: Trade R3 Y3 Taxation\n\n61) Draw5PlayAll: Build R3 Moon\n\n62) dlwillson: S Y3 Taxation\nM R1 Dlwillson Moon\nC Moon R\nM R1 Sky Stealakeeper\nM R2 Taxation Stealakeeper\nC Stealakeeper R\n\n63) Draw5PlayAll: Trade Y2 B2 Stealakeeper\n\n64) dlwillson: T B1 R1 Dlwillson\n\n65) Draw5PlayAll: Discover B2 Stealakeeper G2 Money\n\n66) dlwillson: D B1 Dlwillson G1 Field\n\n67) Draw5PlayAll: Build B1 Money\n\n68) dlwillson: B B2 Field\n\tdlwillson: Kublooey!\n\tdlwillson: Kublooey!\n\n69) Draw5PlayAll: Trade B2 R2 Money\n\tDraw5PlayAll: I think that actually helped me.\n\n70) dlwillson: Move Y1 Dlwillson Field\n\tdlwillson: It certainly simplified the board!\n\n71) Draw5PlayAll: Build B2 Money\n\n72) dlwillson: D B1 Field Y3 Sol\n\n73) Draw5PlayAll: Move Y1 Stealakeeper Money\n\n74) dlwillson: Build B1 Field\n\n75) Draw5PlayAll: Move B1 Money Field\n\n76) dlwillson: S G1 Taxation\nB B3 Sol\n\n77) Draw5PlayAll: Build B3 Money\n\n78) dlwillson: M B1 Sol Field\nC Field B\n\n79) Draw5PlayAll: Trade B2 Y2 Money\n\n80) dlwillson: Move B3 Sol Field\n\n81) Draw5PlayAll: Build B1 Money\n\n82) dlwillson: Build Y1 Field\n\n83) Draw5PlayAll: Sacrifice Y1 Money\nDiscover B1 Money Y1 Recycling\n\tDraw5PlayAll: That... is actually a valid option...\n\n84) dlwillson: Build Y2 Field\n\n85) Draw5PlayAll: Move Y2 Money Field\nCatastrophe Field Yellow\n\n\tDraw5PlayAll: Kill all enemy counterplay!\n\tdlwillson: Good game, D5PA! I&#39;ll get you next time! :-)\n\tDraw5PlayAll: We&#39;ll see about that...\n\nHomeworlds Online (SDG# 36789)\nVariants: &quot;Hard time&quot;\nStarted: 2020.7.23, Ended: 2020.8.27\nParticipants: Babamots (S), deanthebean (N)\nWinner: Babamots\n\n1) deanthebean: Homeworld Y1 B2 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\tdeanthebean: Thank you for accepting the challenge. Have fun!\n\tBabamots: It was either accept or get demoted to #6. :-D\r\n\r\nGood luck!\n\n3) deanthebean: Build G1 Deanthebean\n\tdeanthebean: Thanks. \n\n4) Babamots: Build G1 Babamots\n\n5) deanthebean: Trade G1 R1 Deanthebean\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) deanthebean: Build R1 Deanthebean\n\n8) Babamots: Build Y1 Babamots\n\n9) deanthebean: Build R2 Deanthebean\n\n10) Babamots: Build Y2 Babamots\n\n11) deanthebean: Trade R2 Y2 Deanthebean\n\n12) Babamots: Discover Y1 Babamots G2 Bajor\n\n13) deanthebean: Build R2 Deanthebean\n\n14) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bajor\nBuild Y3 Bajor\nBuild Y3 Babamots\n\n15) deanthebean: Discover Y2 Deanthebean G3 A1\n\n16) Babamots: Discover Y2 Bajor Y3 Iconia\n\n17) deanthebean: Trade R1 B1 Deanthebean\n\n18) Babamots: Trade Y1 B1 Babamots\n\n19) deanthebean: Build Y1 A1\n\n20) Babamots: Trade Y2 G2 Babamots\n\n21) deanthebean: Trade R2 Y2 Deanthebean\n\n22) Babamots: Build B1 Babamots\n\n23) deanthebean: Build R1 Deanthebean\n\n24) Babamots: Build G1 Babamots\n\n25) deanthebean: Build R2 Deanthebean\n\n26) Babamots: Trade G2 R2 Babamots\n\n27) deanthebean: Trade R2 G2 Deanthebean\n\n28) Babamots: Move B1 Babamots Bajor\n\n29) deanthebean: Build R2 Deanthebean\n\n30) Babamots: Build B2 Bajor\n\n31) deanthebean: Move B1 Deanthebean A1\n\tBabamots: I just looked at your profile page and saw that lots of games are listed as &quot;Recently completed.&quot; I think that means that you don&#39;t look at your own profile page often, is that correct? I refresh my profile page to see which games I need to move in. Do you just use the links from emails?\n\tdeanthebean: I don&#39;t think so. I have email notifications turned off. Is there some way to clear the &quot;recently completed games&quot; list?\n\n32) Babamots: Discover B2 Bajor G3 Zakdorn\n\tDraw5PlayAll: You just go to the game and if it is finished it is removed from the list.\n\tBabamots: Oh that&#39;s right, you have to look at the game page, not your profile page.\n\n33) deanthebean: Move R1 Deanthebean A1\n\n34) Babamots: Sacrifice Y3 Bajor\nMove Y1 Bajor A1\nMove Y1 A1 Deanthebean\nMove Y2 Iconia Deanthebean\nCatastrophe Deanthebean Y\n\n35) deanthebean: Build R2 A1\n\n36) Babamots: Move B1 Babamots Deanthebean\n\n\tdeanthebean: gg. As far as I can see I&#39;m in checkmate. \n\tBabamots: GG!\n\nHomeworlds Online (SDG# 36791)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.23, Ended: 2020.7.25\nParticipants: Babamots (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld B2 Y1 G3\n\tLayana: You can have only one star in your homeworld by putting in a - instead of the second star. \n\n2) Babamots: Homeworld B2 - G3 *\n\tBabamots: Really? I&#39;m gonna try it.\n\n3) Layana: Build G1 Layana\n\tBabamots: Cool! I learned something new today!\n\n4) Babamots: Build G1 Babamots\n\tLayana: Glad I could help ;) \n\n5) Layana: Trade G1 Y1 Layana\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Layana: Build Y2 Layana\n\n8) Babamots: Build Y2 Babamots\n\n9) Layana: Discover Y1 Layana G3 Nausicaa\n\n10) Babamots: Trade Y1 R1 Babamots\n\tBabamots: Looks like you&#39;re enjoying using Star Trek world names as well.\n\n11) Layana: Build G1 Layana\n\n12) Babamots: Build Y1 Babamots\n\n13) Layana: Trade G1 R1 Layana\n\n14) Babamots: Discover Y1 Babamots G1 Orion\n\tLayana: I used to love star trek, but I&#39;m not stoked on the new stuff\n\n15) Layana: Build G1 Layana\n\n16) Babamots: Build G1 Babamots\n\tBabamots: The new stuff isn&#39;t really in the spirit of Star Trek. I&#39;m all about TNG.\n\n17) Layana: Trade G1 B1 Layana\n\tLayana: I loved TNG, too, and really enjoyed DS9. \n\n18) Babamots: Trade G1 B1 Babamots\n\tBabamots: My wife and I watched all of DS9 together and now we&#39;re working on TNG. She likes DS9 better overall, but I hope she would agree that many individual TNG episodes are better than all but a few DS9.\n\n19) Layana: Discover Y2 Layana R3 Trill\n\tLayana: I think that&#39;s a fact. There are so many brilliant TNG episodes. It&#39;s the metaplot that makes DS9 great (starting at season 3).\n\tLayana: I think that&#39;s a fact. There are so many brilliant TNG episodes. It&#39;s the metaplot that makes DS9 great (starting at season 3).\n\n20) Babamots: Build G1 Babamots\n\n21) Layana: Move B1 Layana Trill\n\tBabamots: Agreed. We just watched &quot;The Defector&quot; which is one of my favorites. It&#39;s a lot like &quot;Duet,&quot; which is my absolute favorite from DS9.\n\n22) Babamots: Build R1 Babamots\n\n23) Layana: Build R2 Layana\n\tLayana: Sadly there is not much room for discussion if we just agree on things. ;) \n\tLayana: Do you like Dr. Who? \n\tBabamots: I&#39;ve seen the first three seasons of the 2005 reboot. There were a handful of episodes that I loved, but they were mostly just OK.\n\n24) Babamots: Discover R1 Babamots B1 Bolarus\n\n25) Layana: Build G1 Layana\n\n26) Babamots: Build R2 Babamots\n\n27) Layana: Move G1 Layana Trill\n\n28) Babamots: Move R2 Babamots Trill\n\n29) Layana: Attack R2 Trill\n\n30) Babamots: Sacrifice Y2 Babamots\nMove R1 Babamots Trill\nMove R1 Bolarus Trill\nCatastrophe Trill R\n\n31) Layana: Build Y2 Nausicaa\n\n32) Babamots: Trade G1 R1 Babamots\n\n33) Layana: Trade R1 B1 Layana\n\n34) Babamots: Build Y2 Orion\n\n35) Layana: Move B1 Layana Nausicaa\n\n36) Babamots: Move Y1 Orion Babamots\n\n37) Layana: Build B1 Nausicaa\n\n38) Babamots: Move B1 Babamots Orion\n\n39) Layana: Discover B1 Nausicaa G1 Wolf359\n\n40) Babamots: Sacrifice G3 Babamots\nBuild Y2 Orion\nBuild Y3 Babamots\nBuild B2 Orion\n\tBabamots: I don&#39;t like where this is going.\n\tLayana: I need to think about this. But I like that you don&#39;t like it. \n\n41) Layana: Build B3 Wolf359\n\n42) Babamots: Sacrifice Y2 Orion\nMove Y1 Babamots Nausicaa\nMove Y2 Orion Nausicaa\nCatastrophe Nausicaa Y\n\n43) Layana: Trade B3 Y3 Wolf359\n\n44) Babamots: Build B3 Orion\n\n45) Layana: Build B3 Wolf359\n\n46) Babamots: Sacrifice Y3 Babamots\nMove B1 Orion Nausicaa\nMove B2 Orion Nausicaa\nMove B3 Orion Nausicaa\nCatastrophe Nausicaa B\n\tBabamots: I&#39;m doing my best death throes.\n\tBabamots: But they won&#39;t last much longer.\n\tLayana: It&#39;s amazing how hard it is to kill someone, though\n\n47) Layana: Move B3 Wolf359 Babamots\n\n48) Babamots: Trade R1 G1 Babamots\n\n49) Layana: Sacrifice R2 Layana\nAttack G1 Babamots\nPass\n\tLayana: Another handycap mentioned in the rulebook is for the stronger player to pass on turn 2. Maybe that is less drastic? \n\n\tBabamots: Yes, missing a turn is a much smaller handicap than missing a star. I could go for that.\n\nHomeworlds Online (SDG# 36795)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.25, Ended: 2020.7.26\nParticipants: Abraxas (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld B2 - G3 *\n\n2) Abraxas: Homeworld R3 B2 G3\n\n3) Layana: Build G1 Layana\n\n4) Abraxas: Build G1 Abraxas\n\n5) Layana: Trade G1 Y1 Layana\n\n6) Abraxas: Trade G1 Y1 Abraxas\n\n7) Layana: Build G1 Layana\n\n8) Abraxas: Build G1 Abraxas\n\n9) Layana: Trade G1 B1 Layana\n\n10) Abraxas: Build G1 Abraxas\n\n11) Layana: Build B1 Layana\n\n12) Abraxas: Trade G1 R1 Abraxas\n\n13) Layana: Build G1 Layana\n\n14) Abraxas: Discover R1 Abraxas R1 Uria\n\n15) Layana: Trade B1 R1 Layana\n\n16) Abraxas: Trade G1 B1 Abraxas\n\n17) Layana: Build G1 Layana\n\n18) Abraxas: Build G1 Abraxas\n\n19) Layana: Build R2 Layana\n\n20) Abraxas: Build G2 Abraxas\n\n21) Layana: Trade R2 Y2 Layana\n\n22) Abraxas: Trade G2 Y2 Abraxas\n\n23) Layana: Discover B1 Layana G3 Yinsh\n\n24) Abraxas: Build G2 Abraxas\n\n25) Layana: Sacrifice Y2 Layana\nMove G1 Layana Uria\nMove G1 Uria Abraxas\nCatastrophe Abraxas G\n\n\nHomeworlds Online (SDG# 36796)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.25, Ended: 2020.8.12\nParticipants: Babamots (S), Layana (N)\nWinner: Babamots\n\n1) Layana: Homeworld R2 B1 G3\n\n2) Babamots: Pass\n\tLayana: Good luck and have fun this time around :) \n\n3) Layana: Build G1 Layana\n\tBabamots: OK, here&#39;s your 1-turn head start. GLHF!\n\tBabamots: Weirdly, I think SDG will let a player pass as much as they want. You could never build a homeworld and never lose.\n\n4) Babamots: Homeworld G3 R1 B3\n\n5) Layana: Trade G1 B1 Layana\n\n6) Babamots: Build B1 Babamots\n\n7) Layana: Build B2 Layana\n\n8) Babamots: Build B2 Babamots\n\n9) Layana: Trade B2 Y2 Layana\n\n10) Babamots: Trade B1 Y1 Babamots\n\n11) Layana: Discover B1 Layana G3 Romulus\n\n12) Babamots: Build Y1 Babamots\n\n13) Layana: Build G1 Layana\n\n14) Babamots: Trade B2 G2 Babamots\n\n15) Layana: Build G1 Layana\n\n16) Babamots: Trade Y1 R1 Babamots\n\n17) Layana: Trade G1 R1 Layana\n\n18) Babamots: Build R2 Babamots\n\n19) Layana: Build R2 Layana\n\n20) Babamots: Discover R1 Babamots G2 Risa\n\n21) Layana: Move R2 Layana Romulus\n\n22) Babamots: Build R3 Risa\n\n23) Layana: Build R3 Romulus\n\n24) Babamots: Trade R2 Y2 Babamots\n\n25) Layana: Trade R2 Y2 Romulus\n\n26) Babamots: Move Y1 Babamots Risa\n\n27) Layana: Build R2 Romulus\n\n28) Babamots: Discover R1 Risa B3 Betazed\n\n29) Layana: Trade R2 G2 Romulus\n\n30) Babamots: Build R2 Risa\n\n31) Layana: Discover R1 Layana R3 Remus\n\n32) Babamots: Build Y1 Risa\n\n33) Layana: Build R2 Romulus\n\n34) Babamots: Move R2 Risa Remus\n\n35) Layana: Discover G1 Layana Y3 Rigel\n\n36) Babamots: Discover Y1 Risa B3 Andoria\n\n37) Layana: Discover G2 Romulus B2 Rator\n\n38) Babamots: Attack R1 Remus\n\n39) Layana: Build G1 Rator\n\n40) Babamots: Sacrifice G2 Babamots\nBuild Y1 Risa\nBuild Y3 Andoria\n\n41) Layana: Build Y3 Layana\n\n42) Babamots: Trade Y1 B1 Andoria\n\n43) Layana: Sacrifice Y2 Layana\nMove R2 Romulus Risa\nMove R2 Risa Remus\nCatastrophe Remus Red\n\n44) Babamots: Build B2 Babamots\n\n45) Layana: Sacrifice G3 Layana\nBuild G1 Rator\nBuild G2 Rigel\nBuild G3 Rigel\n\n46) Babamots: Build R1 Risa\n\n47) Layana: Sacrifice G3 Rigel\nBuild G3 Rigel\nBuild R2 Romulus\nBuild B2 Romulus\n\n48) Babamots: Move R1 Risa Andoria\n\n49) Layana: Move R2 Romulus Rator\n\n50) Babamots: Move Y3 Andoria Rator\n\n51) Layana: Sacrifice Y2 Romulus\nMove G2 Rator Babamots\nMove G1 Rator Babamots\n\n52) Babamots: Sacrifice R3 Risa\nAttack R2 Rator\nAttack G1 Rator\nAttack G2 Babamots\n\n53) Layana: Sacrifice G1 Rigel\nBuild G1 Babamots\nCatastrophe Babamots Green\n\n54) Babamots: Build R2 Rator\n\n55) Layana: Trade B2 Y2 Romulus\n\n56) Babamots: Sacrifice G1 Rator\nBuild R3 Andoria\n\n57) Layana: Build R3 Romulus\n\n58) Babamots: Move Y1 Risa Andoria\n\n59) Layana: Build B2 Romulus\n\n60) Babamots: Trade B3 G3 Babamots\n\n61) Layana: Move R3 Romulus Risa\n\n62) Babamots: Build B3 Babamots\n\tLayana: I think this is basically over, since I can&#39;t get enough red fast enough by comparison. \n\n63) Layana: Attack Y1 Risa\n\n64) Babamots: Discover B3 Babamots Y2 Aldea\n\n65) Layana: Move R3 Risa Betazed\n\n66) Babamots: Sacrifice Y2 Babamots\nMove R1 Betazed Layana\nMove R3 Andoria Layana\n\n\tBabamots: GG! You fought well!\r\n\r\nFor what it&#39;s worth, I believe that, in an over-the-table game, this position would have ended in a draw:\r\n\r\nyou attack my r3\r\nI move my r1 to your home for the catastrophe\r\nyou build an r1\r\nI move my b3 to your home\r\nyou sacrifice your y3 (abandoning your home) to move three reds to my home for a catastrophe\n\tLayana: Thanks for the game. I&#39;ll go over the replay to maybe see where I went wrong. A few hints would be appreciated. I&#39;ll start a new one in the meantime. \n\tBabamots: You played a solid game, and it&#39;s hard to blame any particular move. I think the biggest problem was putting too many ships in Rator, which let me invade with a large, which prompted you to catastrophe my green star before you had everything in place to get my second star as well.\n\nHomeworlds Online (SDG# 36800)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.26, Ended: 2020.8.3\nParticipants: Abraxas (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld B2 - G3 *\n\n2) Abraxas: Homeworld R2 B1 G3\n\n3) Layana: Build G1 Layana\n\n4) Abraxas: Build G1 Abraxas\n\n5) Layana: Trade G1 Y1 Layana\n\n6) Abraxas: Build G1 Abraxas\n\n7) Layana: Build Y1 Layana\n\n8) Abraxas: Trade G1 R1 Abraxas\n\n9) Layana: Build Y1 Layana\n\n10) Abraxas: Build G1 Abraxas\n\n11) Layana: Discover Y1 Layana G1 Andoria\n\n12) Abraxas: Trade G1 B1 Abraxas\n\n13) Layana: Build Y2 Andoria\n\n14) Abraxas: Trade G3 Y3 Abraxas\n\n15) Layana: Trade Y1 B1 Layana\n\n16) Abraxas: Build R1 Abraxas\n\n17) Layana: Trade Y1 R1 Layana\n\n18) Abraxas: Discover R1 Abraxas B3 Myst\n\n19) Layana: Build R2 Layana\n\n20) Abraxas: Build Y1 Abraxas\n\n21) Layana: Trade R1 Y1 Layana\n\n22) Abraxas: Move Y1 Abraxas Myst\n\n23) Layana: Move R2 Layana Myst\n\n24) Abraxas: Move R1 Myst Layana\n\n25) Layana: Build Y2 Layana\n\n26) Abraxas: Build Y2 Abraxas\n\n27) Layana: Discover Y1 Layana G3 Riven\n\n28) Abraxas: Move B1 Abraxas Riven\n\n29) Layana: Discover B1 Layana G3 Edanna\n\n30) Abraxas: Build B2 Riven\n\n31) Layana: Build Y3 Riven\n\n32) Abraxas: Build G1 Abraxas\n\n33) Layana: Build Y3 Layana\n\n34) Abraxas: Move G1 Abraxas Edanna\n\n35) Layana: Sacrifice R2 Myst\nAttack B2 Riven\nAttack B1 Riven\n\n36) Abraxas: Build R1 Abraxas\n\n37) Layana: Trade Y2 R2 Layana\n\n38) Abraxas: Move R1 Abraxas Edanna\n\n39) Layana: Move R2 Layana Edanna\n\n40) Abraxas: Move Y1 Myst Andoria\n\n41) Layana: Attack R1 Edanna\n\n42) Abraxas: Sacrifice G1 Edanna\nBuild Y2 Andoria\nCatastrophe Andoria Y\n\n43) Layana: Sacrifice Y3 Layana\nMove R1 Edanna Abraxas\nMove R2 Edanna Abraxas\nCatastrophe Abraxas R\nMove B1 Edanna Abraxas\n\n44) Abraxas: Pass\n\n45) Layana: Sacrifice Y3 Riven\nMove B1 Riven Abraxas\nMove B2 Riven Abraxas\nCatastrophe Abraxas B\nPass\n\n\nHomeworlds Online (SDG# 36735)\nStarted: 2020.7.28, Ended: 2020.9.30\nParticipants: eliscinsky (S), amoscai (N)\nWinner: eliscinsky\n\n1) amoscai: Homeworld Y1 B2 G3\n\teliscinsky: Greetings amoscai, GL &amp; HF!\n\n2) eliscinsky: Homeworld R1 B3 G3\n\tamoscai: Hi there! Amos will do (: you too.\n\tamoscai: thanks for the ping in my other game.\n\teliscinsky: Amos, NP I saw that you said you were not getting notifications.  That happened to me for a period of time.  No idea why they stopped, and then restarted.\n\n3) amoscai: Build G1 Amoscai\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) amoscai: Trade G1 Y1 Amoscai\n\n6) eliscinsky: T G1 Y1 Eliscinsky\n\n7) amoscai: Build Y2 Amoscai\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) amoscai: Trade Y2 G2 Amoscai\n\n10) eliscinsky: Discover Y2 Eliscinsky G2 Talos\n\n11) amoscai: Build Y2 Amoscai\n\n12) eliscinsky: B Y2 Eliscinsky\n\n13) amoscai: Trade Y2 R2 Amoscai\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) amoscai: Discover G2 Amoscai Y3 Skylar\n\n16) eliscinsky: T Y2 R2 Eliscinsky\n\n17) amoscai: Build G1 Skylar\n\n18) eliscinsky: B Y2 Eliscinsky\n\n19) amoscai: Build R1 Amoscai\n\n20) eliscinsky: S G3 Eliscinsky\nB Y2 Talos\nB Y3 Talos\nB Y3 Eliscinsky\n\n21) amoscai: Move Y1 Amoscai Skylar\n\n22) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y2 Talos Skylar\nMove Y2 Talos Skylar\nCatastrophe Skylar Y\n\n23) amoscai: Build G1 Amoscai\n\n24) eliscinsky: Build Y1 Talos\n\n25) amoscai: Trade R2 Y2 Amoscai\n\n26) eliscinsky: Build Y2 Talos\n\n27) amoscai: Discover Y2 Amoscai Y3 Cylon\n\n28) eliscinsky: M Y2 Talos Cylon\n\n29) amoscai: Build G1 Amoscai\n\n30) eliscinsky: Sacrifice Y3 Talos\nMove G1 Eliscinsky Talos\nMove G1 Talos Cylon\nMove G1 Cylon Amoscai\nCatastrophe Amoscai G\n\n31) amoscai: Move Y2 Cylon Amoscai\n\teliscinsky: Red Alert\n\tamoscai: ouch\n\n32) eliscinsky: D Y2 Cylon G2 Earth\n\n33) amoscai: Trade Y2 G2 Amoscai\n\n34) eliscinsky: T Y3 G3 Eliscinsky\n\n35) amoscai: Build G1 Amoscai\n\n36) eliscinsky: B G1 Eliscinsky\n\n37) amoscai: Discover G1 Amoscai Y3 Mars\n\n38) eliscinsky: B Y2 Eliscinsky\n\n39) amoscai: Build G1 Mars\n\n40) eliscinsky: S G3 Eliscinsky\nB Y2 Talos\nB Y3 Earth\nB G3 Eliscinsky\n\n41) amoscai: Build G3 Amoscai\n\n42) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild Y3 Talos\n\n43) amoscai: Sacrifice G3 Amoscai\nBuild G3 Amoscai\nBuild R1 Amoscai\nBuild R2 Amoscai\n\n44) eliscinsky: Move Y2 Talos Mars\n\n45) amoscai: Discover G1 Mars B1 Neptune\n\n46) eliscinsky: Trade G1 B1 Eliscinsky\n\n47) amoscai: Trade R1 B1 Amoscai\n\n48) eliscinsky: Move Y2 Earth Neptune\n\teliscinsky: Amos, what&#39;s up?  Are you still in the middle of a trial? I&#39;ll wait a couple days.  But I don&#39;t hear from you I&#39;ll end the game.\n\tamoscai: hey sorry about that. yes, it&#39;s cleared up. I&#39;ll move quickly from here on out. sorry about that.\n\n49) amoscai: Move G1 Mars Talos\n\teliscinsky: NP, didn&#39;t know if yo could continue or not. :)\n\n50) eliscinsky: B R1 Eliscinsky\n\tamoscai: just waiting for you to kill me really. lol.\n\n51) amoscai: Sacrifice G1 Neptune\nBuild G1 Talos\n\n52) eliscinsky: S R2 Eliscinsky\nA G1 Talos\nA G1 Talos\n\n53) amoscai: Discover G2 Amoscai R3 Alert\n\n54) eliscinsky: S G3 Eliscinsky\nB G1 Eliscinsky\nB G3 Eliscinsky\nB B2 Eliscinsky\n\n55) amoscai: Move R1 Amoscai Mars\n\n56) eliscinsky: B R2 Eliscinsky\n\n57) amoscai: Build R2 Amoscai\n\n58) eliscinsky: S R1 Eliscinsky\nA R1 Mars\n\n59) amoscai: Move R2 Amoscai Mars\n\n60) eliscinsky: Attack R2 Mars\n\n61) amoscai: Build R1 Amoscai\n\n62) eliscinsky: Move Y3 Talos Alert\n\n63) amoscai: Sacrifice G2 Alert\nBuild G2 Amoscai\nBuild R3 Amoscai\n\n64) eliscinsky: M R1 Mars Amoscai\nC Amoscai R\n\n65) amoscai: Trade B1 R1 Amoscai\n\n66) eliscinsky: Move Y3 Earth Alert\n\n67) amoscai: Move G2 Amoscai Mars\n\n68) eliscinsky: S Y2 Neptune\nM Y3 Alert Amoscai\nM Y3 Alert Amoscai\n\n69) amoscai: Sacrifice R1 Amoscai\nAttack Y3 Amoscai\n\n70) eliscinsky: Sacrifice R2 Mars\nAttack Y3 Amoscai\nAttack G3 Amoscai\n\n\teliscinsky: TY, GG. I take a rematch anytime. :)\n\nHomeworlds Online (SDG# 36802)\nStarted: 2020.7.28, Ended: 2020.10.15\nParticipants: amoscai (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Sorry I gave up on you in that last game! Newish players seem to wander off and not come back pretty frequently.\n\n2) amoscai: Homeworld Y2 B3 G3\n\n3) Babamots: Build G1 Babamots\n\tamoscai: no issues whatsoever. if you didn&#39;t do that, I would have forgotten about SDG and my Homeworld games.\n\n4) amoscai: Build G1 Amoscai\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) amoscai: Trade G1 R1 Amoscai\n\n7) Babamots: Build R2 Babamots\n\n8) amoscai: Build R2 Amoscai\n\n9) Babamots: Trade R1 Y1 Babamots\n\n10) amoscai: Trade R2 Y2 Amoscai\n\n11) Babamots: Build Y1 Babamots\n\n12) amoscai: Build G1 Amoscai\n\n13) Babamots: Discover Y1 Babamots Y2 Iconia\n\n14) amoscai: Discover G1 Amoscai B1 Linked\n\n15) Babamots: Sacrifice G3 Babamots\nBuild Y1 Iconia\nBuild Y3 Babamots\nBuild Y3 Babamots\n\n16) amoscai: Build R1 Amoscai\n\n17) Babamots: Discover Y1 Iconia G3 Bajor\n\n18) amoscai: Move Y2 Amoscai Linked\n\n19) Babamots: Build Y3 Bajor\n\n20) amoscai: Build R2 Amoscai\n\n21) Babamots: Move Y3 Bajor Linked\n\n22) amoscai: Move Y2 Linked Iconia\n\n23) Babamots: Trade Y3 G3 Babamots\n\n24) amoscai: Sacrifice R1 Amoscai\nAttack Y1 Iconia\n\n25) Babamots: Build Y3 Bajor\n\n26) amoscai: Move Y1 Iconia Babamots\n\n27) Babamots: Discover Y1 Babamots G2 Betazed\n\n28) amoscai: Move Y1 Babamots Betazed\n\n29) Babamots: Discover Y1 Betazed R1 Cardassia\n\n30) amoscai: Build G1 Amoscai\n\tBabamots: Just trying to get your attention :-)\n\n31) Babamots: Build G1 Babamots\n\tamoscai: thank you. I&#39;m in the middle of a trial so been really busy.\n\tBabamots: OK, I&#39;ll just cancel the freeze for now. I hope the judge lets you off easy. :-D\n\n32) amoscai: Move Y2 Iconia Cardassia\n\n33) Babamots: Move R2 Babamots Betazed\n\tamoscai: I have like a few days break cos of the weekend, etc. It&#39;s going ok so far! fingers crossed.\n\n34) amoscai: Attack Y1 Cardassia\n\n35) Babamots: Attack Y1 Betazed\n\n36) amoscai: Move Y1 Cardassia Bajor\n\n37) Babamots: Move Y3 Bajor Cardassia\n\n38) amoscai: Sacrifice G1 Linked\nBuild Y2 Cardassia\n\n39) Babamots: Sacrifice R2 Betazed\nAttack Y1 Bajor\nAttack Y2 Cardassia\n\n40) amoscai: Attack Y2 Cardassia\n\n41) Babamots: Trade G3 R3 Babamots\n\n42) amoscai: Move Y2 Cardassia Betazed\n\n43) Babamots: Attack Y2 Cardassia\n\n44) amoscai: Sacrifice R1 Amoscai\nAttack Y1 Betazed\n\n45) Babamots: Build G1 Babamots\n\n46) amoscai: Discover G1 Amoscai R1 Doom\n\n47) Babamots: Trade G1 B1 Babamots\n\n48) amoscai: Build G1 Doom\n\n49) Babamots: Build R2 Babamots\n\n50) amoscai: Build R2 Amoscai\n\n51) Babamots: Move R3 Babamots Betazed\n\n52) amoscai: Move Y2 Betazed Bajor\n\n53) Babamots: Build R3 Betazed\n\n54) amoscai: Sacrifice R2 Amoscai\nAttack Y1 Bajor\nAttack Y1 Bajor\n\n55) Babamots: Move Y2 Cardassia Betazed\n\n56) amoscai: Move Y2 Bajor Betazed\n\n57) Babamots: Attack Y2 Betazed\n\n58) amoscai: Move Y1 Bajor Betazed\nCatastrophe Betazed Yellow\n\n59) Babamots: Build Y1 Babamots\n\n60) amoscai: Build G2 Amoscai\n\n61) Babamots: Move Y1 Babamots Betazed\n\n62) amoscai: Build Y1 Bajor\n\n63) Babamots: Build Y2 Babamots\n\n64) amoscai: Trade G2 Y2 Amoscai\n\n65) Babamots: Move B1 Babamots Betazed\n\n66) amoscai: Build R2 Amoscai\n\n67) Babamots: Build R3 Babamots\n\n68) amoscai: Move R2 Amoscai Doom\n\n69) Babamots: Discover R3 Babamots B2 Bolarus\n\n70) amoscai: Build G2 Amoscai\n\n71) Babamots: Build B1 Betazed\n\n72) amoscai: Trade G2 B2 Amoscai\n\n73) Babamots: Move B1 Betazed Cardassia\n\n74) amoscai: Move B2 Amoscai Doom\n\n75) Babamots: Move R3 Betazed Doom\n\n76) amoscai: Build G2 Doom\n\n77) Babamots: Move R3 Betazed Linked\n\n78) amoscai: Sacrifice Y1 Bajor\nMove G1 Doom Betazed\n\n79) Babamots: Sacrifice Y3 Linked\nMove R3 Linked Amoscai\nMove R3 Doom Amoscai\nMove Y3 Cardassia Amoscai\n\n80) amoscai: Sacrifice R2 Amoscai\nAttack R3 Amoscai\nAttack R3 Amoscai\n\n81) Babamots: Sacrifice R3 Bolarus\nAttack R3 Amoscai\nAttack R3 Amoscai\nAttack G3 Amoscai\n\tamoscai: gg. I was up against it pretty much the whole way.\n\n\tBabamots: This was the longest game I can remember playing, and I&#39;m pretty sure this is the first time I&#39;ve performed a three-large direct assault. GG!\n\tamoscai: thank you for being patient with my slow play.\n\tBabamots: Oh, I didn&#39;t mean to suggest that you&#39;re playing too slowly. I meant that, as far as I can remember, I&#39;ve never played a game with so many moves (41 each right now).\n\tBabamots: GG!\n\nHomeworlds Online (SDG# 36763)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.7.31, Ended: 2020.8.3\nParticipants: wil (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld R3 B1 G3\n\n\twil: Oops\n\nHomeworlds Online (SDG# 36817)\nVariants: &quot;Unrated&quot;\nStarted: 2020.7.31, Ended: 2020.7.31\nParticipants: mirror33 (S), bootleby (N)\nWinner: mirror33\n\n1) bootleby: Homeworld B1 Y3 G3\n\tbootleby: sup\n\n2) mirror33: Homeworld B2 R1 G3\n\n3) bootleby: Build G1 Bootleby\n\n4) mirror33: Build G1 Mirror33\n\n5) bootleby: Trade G1 Y1 Bootleby\n\n6) mirror33: Build G1 Mirror33\n\n7) bootleby: Discover Y1 Bootleby G2 Sza\n\n8) mirror33: Trade G1 Y1 Mirror33\n\n9) bootleby: Build G1 Bootleby\n\n10) mirror33: Trade G1 R1 Mirror33\n\n11) bootleby: Build G1 Bootleby\n\n12) mirror33: Build G1 Mirror33\n\n13) bootleby: Trade G1 B1 Bootleby\n\n14) mirror33: Discover G1 Mirror33 Y3 Sauce\n\n15) bootleby: Move B1 Bootleby Sza\n\n16) mirror33: Build G1 Sauce\n\n17) bootleby: Build G2 Bootleby\n\n18) mirror33: Build G2 Sauce\n\n19) bootleby: Discover B1 Sza G3 Tryinstuff\n\n20) mirror33: Trade G3 Y3 Mirror33\n\n21) bootleby: Build B1 Tryinstuff\n\n22) mirror33: Sacrifice Y3 Mirror33\nDiscover G2 Sauce Y2 Why\nMove G2 Why Bootleby\nPass\nCatastrophe Bootleby G\n\n\nHomeworlds Online (SDG# 36826)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.8.2, Ended: 2020.8.24\nParticipants: Xaevith (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G3 R1 B3\n\n2) Xaevith: Homeworld B2 R1 G3\n\tBabamots: How&#39;s it going? And how much advice would you like as we play?\n\tXaevith: So like I&#39;m familiar with the colors and how everything is connected I guess it&#39;s more so just mid-late game and overall strategy. I guess if you don&#39;t mind pointing out any really stupid moves I make and trying to give me some pointers where you see I might be &quot;making mistakes&quot; so to speak?\n\n3) Babamots: Build B1 Babamots\n\tXaevith: Also sorry it&#39;s going pretty good so far, thank you for asking! I just taught my wife how to play a couple new games I learned today. Just relaxing with some tea now.\n\tXaevith: I hope your evening (or day depending on when you get back to this) is treating you well. :)\n\n4) Xaevith: Build G1 Xaevith\n\tBabamots: I try to warn new players about the bad moves they should avoid, but historically, I&#39;ve been bad at predicting when those warnings are needed (just when I think their move is totally obvious, they doom themselves). I&#39;m much better at telling people why their moves are bad they make them. :-)\n\n5) Babamots: Trade B1 R1 Babamots\n\tXaevith: No worries, it might be hard to totally predict someone&#39;s next move based on what was put down. It&#39;s all Gouda, I think what is really lacking for me is just talking the meta.\r\n\r\nWhy do you start with red? Normally I try to go for a combo of YBG right away but I see people starting with red a lot... Is it somehow better to start with red vs yellow?\n\tBabamots: Red vs yellow homestars is the first topic in my tactics guide:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/site/tactics.html\r\n\r\nThere are good arguments for red and yellow, but I generally like red best. Trydnt plays more than me and wins more than me, and he prefers yellow.\n\n6) Xaevith: Trade G3 R3 Xaevith\n\tBabamots: You are currently experiencing the problem I mention in the last paragraph of the &quot;Small star problem&quot; section. Since you picked the same small star color as me, I&#39;m about to get a medium ship extra quickly. You&#39;ll probably want to trade your g3 for r3 before too long so you don&#39;t get completely frozen out of red.\n\tXaevith: ouch what a painful situation i&#39;ve already placed myself in early into this game ahahahahaha I guess I should have anticipated a red approach my brain always gravitates towards yellow being important right away and I figured you were probably going to swap for that next overlooking that if you went with red I leave myself in that situation now\r\n\r\nlosing the big green is unfortunate and having a ship the same colour as my star system only adds to future catastrophe situations (which are extra unfortunate if it&#39;s my 3 piece) but I&#39;m gonna have to see where it goes from here! \r\n\r\nthank you for pointing that out I greatly appreciated the info\n\tXaevith: also wow your guide is really comprehensive, this is probably the best in depth site i&#39;ve read about homeworlds so far!\n\tXaevith: also wow your guide is really comprehensive, this is probably the best in depth site i&#39;ve read about homeworlds so far!\n\n7) Babamots: Build R2 Babamots\n\n8) Xaevith: Build R2 Xaevith\n\n9) Babamots: Trade R2 Y2 Babamots\n\n10) Xaevith: Trade R2 Y2 Xaevith\n\n11) Babamots: Build R2 Babamots\n\n12) Xaevith: Build R2 Xaevith\n\tBabamots: Thanks! I thought it was past time that someone put together some strategy advice that&#39;s more advanced than what you find in the rulebook.\n\n13) Babamots: Discover R2 Babamots G2 Risa\n\n14) Xaevith: Discover R2 Xaevith G3 Emerald\n\n15) Babamots: Build Y1 Babamots\n\n16) Xaevith: Build Y1 Xaevith\n\n17) Babamots: Build B1 Babamots\n\n18) Xaevith: Build G1 Xaevith\n\n19) Babamots: Move Y1 Babamots Risa\n\n20) Xaevith: Trade G1 B1 Xaevith\n\n21) Babamots: Trade B1 G1 Babamots\n\tXaevith: Figure that was the best move before I get locked out of building blue ships? It&#39;s not like you need green very much since almost every star is green in our universe...\n\tBabamots: It&#39;s definitely good to get a blue ship at some point to make sure I don&#39;t run away with all of them.\n\n22) Xaevith: Build B1 Xaevith\n\n23) Babamots: Build B1 Babamots\n\n24) Xaevith: Discover B1 Xaevith Y3 Topaz\n\n25) Babamots: Discover B1 Babamots Y2 Aldea\n\n26) Xaevith: Trade R3 G3 Xaevith\n\n27) Babamots: Build B2 Babamots\n\n28) Xaevith: Move G1 Xaevith Topaz\n\n29) Babamots: Discover B2 Babamots G2 Trill\n\n30) Xaevith: Discover B1 Xaevith Y3 Citrine\n\n31) Babamots: Build Y1 Babamots\n\n32) Xaevith: Move Y1 Xaevith Emerald\n\n33) Babamots: Build Y3 Risa\n\n34) Xaevith: Discover B1 Topaz G2 Jade\n\n35) Babamots: Move R2 Risa Topaz\n\n36) Xaevith: Discover G1 Topaz B2 Azurite\n\n37) Babamots: Build B3 Babamots\n\tBabamots: I think your better move was to cash in on your investment. You&#39;ve got a lovely g1 in a y3 system that you could sacrifice to build a y3 ship.\n\tBabamots: You may still be able to undo your other move if you want to.\n\tXaevith: i think the reason it was by itself though was because I moved the blue ship and with it being there now if i sacrifice that piece the blue ship will still be there preventing me from taking the y3 :(\n\tXaevith: Unless there&#39;s something else I can do here? But I was trying to move for that now since yellow has been exhausted. &gt;_&lt;\n\tBabamots: Oh, you&#39;re right. I thought the b1 had come from somewhere else. Sorry about that.\n\n38) Xaevith: Build B3 Jade\n\n39) Babamots: Move B3 Babamots Aldea\n\n40) Xaevith: Build G1 Xaevith\n\n41) Babamots: Move Y3 Risa Emerald\n\n42) Xaevith: Move R2 Emerald Jade\n\n43) Babamots: Move R1 Babamots Risa\n\n44) Xaevith: Sacrifice Y1 Emerald\nMove B3 Jade Topaz\n\n45) Babamots: Move R2 Topaz Azurite\n\n46) Xaevith: Sacrifice G3 Xaevith\nBuild G3 Xaevith\nBuild Y1 Xaevith\nBuild R2 Jade\n\n47) Babamots: Attack G1 Azurite\n\n48) Xaevith: Sacrifice Y1 Xaevith\nMove R2 Jade Topaz\n\n49) Babamots: Build R3 Azurite\n\n50) Xaevith: Sacrifice G3 Xaevith\nBuild G3 Xaevith\nBuild R3 Jade\nBuild R3 Topaz\n\n51) Babamots: Move R1 Risa Emerald\n\n52) Xaevith: Build Y1 Xaevith\n\n53) Babamots: Move B3 Aldea Citrine\n\n54) Xaevith: Move R3 Topaz Risa\n\n55) Babamots: Move Y1 Risa Emerald\n\n56) Xaevith: Move Y1 Xaevith Topaz\n\tXaevith: wow a full universe... i don&#39;t think I can remember the last time I played a game where every piece was on the board\n\tXaevith: and yet I can&#39;t help but have a bit of that impending sense of doom hanging over my neck ahahahaha\n\n57) Babamots: Move Y1 Emerald Azurite\n\tBabamots: I do think you&#39;re in some trouble here.\n\n58) Xaevith: Move Y1 Topaz Jade\n\n59) Babamots: Move R2 Azurite Citrine\n\n60) Xaevith: Sacrifice Y2 Xaevith\nMove R3 Jade Babamots\nMove R2 Jade Babamots\n\n61) Babamots: Attack R3 Babamots\n\n62) Xaevith: Sacrifice Y1 Jade\nMove R3 Risa Babamots\nCatastrophe Babamots Red\n\n63) Babamots: Sacrifice Y3 Emerald\nMove G1 Babamots Xaevith\nMove G1 Azurite Emerald\nMove G1 Emerald Xaevith\nCatastrophe Xaevith G\n\n\tXaevith: Good game :)\n\tBabamots: GG :-)\n\nHomeworlds Online (SDG# 36836)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.4, Ended: 2020.8.29\nParticipants: Babamots (S), eliscinsky (N)\nWinner: Babamots\n\n1) eliscinsky: H Y1 B2 G3\n\n2) Babamots: Homeworld R3 B2 G3\n\teliscinsky: So I thought... maybe after beating the Emperor you might like a nice relaxing game. ;)\n\tBabamots: Sounds like you&#39;re trying to get me to underestimate you. :-)\n\n3) eliscinsky: B G1 Eliscinsky\n\teliscinsky: Hadn&#39;t really thought of that, but if it works I&#39;ll take what I can get. BTW congrats again on your win against Andy.\n\n4) Babamots: Build G1 Babamots\n\n5) eliscinsky: T G1 Y1 Eliscinsky\n\tBabamots: Thanks! Playing Andy was the top item on my bucket list, so I&#39;m very pleased with myself.\n\n6) Babamots: Trade G1 Y1 Babamots\n\teliscinsky: I figure I need to beat a few top players on SDG, and in your tournaments, before I even think of taking Andy on.  However, it is something I aspire to do some day.\n\n7) eliscinsky: Build Y2 Eliscinsky\n\n8) Babamots: Build Y2 Babamots\n\n9) eliscinsky: D Y1 Eliscinsky G3 Talos\n\tBabamots: So have you got on the yellow homestar train?\n\n10) Babamots: Discover Y1 Babamots G1 Bajor\n\teliscinsky: Not sure yet. Mostly just experimenting. \n\n11) eliscinsky: B G1 Eliscinsky\n\n12) Babamots: Build G1 Babamots\n\n13) eliscinsky: Trade G1 B1 Eliscinsky\n\n14) Babamots: Trade G1 B1 Babamots\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) Babamots: Build G1 Babamots\n\teliscinsky: Hey, I just realized ... You&#39;re copying me. So I must be doing something right!  LOL\n\n17) eliscinsky: T G1 R1 Eliscinsky\n\tBabamots: Or we&#39;re both doing something wrong.\n\n18) Babamots: Trade G1 R1 Babamots\n\n19) eliscinsky: B G1 Eliscinsky\n\n20) Babamots: Move B1 Babamots Bajor\n\n21) eliscinsky: Move R1 Eliscinsky Talos\n\n22) Babamots: Move R1 Babamots Bajor\n\n23) eliscinsky: Move B1 Eliscinsky Talos\n\n24) Babamots: Build G1 Babamots\n\n25) eliscinsky: Build G2 Eliscinsky\n\teliscinsky: And now [somehow] I&#39;m following you :/\n\n26) Babamots: Build G2 Babamots\n\n27) eliscinsky: T G2 R2 Eliscinsky\n\n28) Babamots: Move G2 Babamots Bajor\n\n29) eliscinsky: Move G1 Eliscinsky Talos\n\n30) Babamots: Discover G1 Babamots B1 Bolarus\n\n31) eliscinsky: B G2 Eliscinsky\n\teliscinsky: I think I moved badly 2 moves ago.\n\n32) Babamots: Sacrifice G3 Babamots\nBuild G2 Bolarus\nBuild Y2 Bajor\nBuild Y3 Babamots\n\tBabamots: This was a silly move, just had an impulse to shake things up, but it&#39;s not likely to get me ahead.\n\teliscinsky: Damn, I had a spectacular comeback!  LOL\n\n33) eliscinsky: M G1 Talos Bajor\n\n34) Babamots: Build G3 Bolarus\n\n35) eliscinsky: S Y2 Eliscinsky\nM G2 Eliscinsky Talos\nM G2 Talos Bajor\nC Bajor G\n\teliscinsky: I think this will be a pivotal moment. \r\nSo I better take a while to think this through. \n\tBabamots: It&#39;s a tricky position. I made my last move with a gut feeling that this is OK for me, but I didn&#39;t calculate particularly carefully.\n\n36) Babamots: Move Y2 Babamots Bolarus\n\teliscinsky: I think this might get very interesting soon.\n\teliscinsky: Oh poo. I saw your killer move, then ignored it for a moment. Back to thinking. \n\n37) eliscinsky: Build R1 Talos\n\teliscinsky: Let&#39;s see how this plays out. \n\n38) Babamots: Trade G2 B2 Bolarus\n\n39) eliscinsky: Trade R1 G1 Talos\n\n40) Babamots: Trade G1 R1 Bolarus\n\n41) eliscinsky: Build B1 Talos\n\n42) Babamots: Discover B2 Bolarus G2 Risa\n\n43) eliscinsky: B B3 Talos\n\n44) Babamots: Build B3 Risa\n\n45) eliscinsky: Discover B3 Talos G1 Orion\n\n46) Babamots: Discover G3 Bolarus B3 Andoria\n\n47) eliscinsky: M B1 Talos Orion\n\n48) Babamots: Move R1 Bolarus Risa\n\teliscinsky: I&#39;m very interested to see what you&#39;re next move is going to be. \n\n49) eliscinsky: T B3 Y3 Orion\n\teliscinsky: Hmm... not what I thought.  Slow and steady, then.\n\n50) Babamots: Move Y2 Bolarus Risa\n\tBabamots: I was tempted to try some shenanigans, but I think this is the best for me.\n\n51) eliscinsky: Build B1 Talos\n\teliscinsky: Oh, but shenanigans are always so much fun!\n\n52) Babamots: Trade B3 R3 Risa\n\n53) eliscinsky: Build B3 Orion\n\n54) Babamots: Build B3 Risa\n\n55) eliscinsky: T B3 Y3 Orion\n\n56) Babamots: Discover R3 Risa B3 Bolarus\n\teliscinsky: Now this feels like a real dance. I&#39;m sure I&#39;ve missed something.  Hmmm .... but what could it be?\n\tBabamots: I&#39;m not so sure you really missed anything. It might look like I&#39;m passing up opportunities, but it&#39;s not because I&#39;ve got a grand plan. I&#39;m really just trying to reconfigure my bad positioning.\n\teliscinsky: LOL Grand plan!  hahaha I wish.  I&#39;m barely holding the jelly-o mold together.  The toothpicks aren&#39;t really helping though. :D\n\n57) eliscinsky: S Y3 Orion\nM B1 Talos Risa\nM B1 Talos Risa\nC Risa B\nD G1 Talos B1 Bajor\n\teliscinsky: You always seem able to do something I hadn&#39;t considered.\r\n\r\nJust curious, how many moves out can you / do you think through?  If you don&#39;t feel like saying now, maybe at the end of this game. ;)\n\n58) Babamots: Move R1 Risa Andoria\n\n59) eliscinsky: Build B1 Orion\n\n60) Babamots: Build R1 Andoria\n\n61) eliscinsky: M R1 Talos Bajor\n\n62) Babamots: Move Y2 Risa Bajor\n\tBabamots: Usually, I don&#39;t look farther ahead than two of my own turns, as in, &quot;If I do this and he does that, what will my response be?&quot; When I&#39;m evaluating that future position, I do think about where it&#39;s likely to lead, but not usually the exact moves.\r\n\r\nThis is the toughest game I&#39;m in right now, so I&#39;ll be slow to make moves. I may want to finish off a couple of my others first so I can concentrate better.\n\teliscinsky: Thanks. And thanks for the &quot;toughest game&quot; comment. That really boosts my ego. Can&#39;t let it go to my head though. I&#39;m also in 2 other games, one I&#39;m about to win, and 1 with Xaevith like you. And like you I&#39;m trying to teach him. He&#39;s also playing will and ty52(?). Anyway take your time. I&#39;d rather play to the end, rather than force a surrender. ;)\n\teliscinsky: That is wil &amp; ts52.\n\n63) eliscinsky: B B2 Orion\n\n64) Babamots: Sacrifice R1 Andoria\nAttack R1 Bajor\n\n65) eliscinsky: B G1 Bajor\n\n66) Babamots: Attack G1 Bajor\n\tBabamots: I&#39;m not feeling very good about this one. I think you&#39;re gonna get me.\n\teliscinsky: Trying to get me to be over confident are ya! ;) I think I&#39;ll just take my time and go slow. Besides you&#39;re probably just tired from your win against Andy. :)\n\n67) eliscinsky: B Y1 Orion\n\tBabamots: I feel slightly burned out at the moment. I took on too many SDG challenges a little before I played Andy, and my competitive streak is tiring. I need to figure out how to get my head into the &quot;just for fun&quot; zone with HW.\n\n68) Babamots: Attack G1 Bajor\n\teliscinsky: Hmm... I understand. I like to play games and if you want to hit me up for relaxed &quot;just for fun games&quot; anytime I&#39;m up for that. When I was a kid I used to love winning, and hate losing. But now that I&#39;m reaching my sixth decade I just like to play. Win, lose, it doesn&#39;t matter. It&#39;s all about the play. Don&#39;t get me wrong winning is great. But I also like to learn from my losses.\n\n69) eliscinsky: M Y3 Orion Talos\n\n70) Babamots: Build R1 Andoria\n\tBabamots: Hopefully beating Andy will help me to feel like I don&#39;t have to prove myself to anyone anymore. :-)\n\n71) eliscinsky: B Y2 Orion\n\n72) Babamots: Sacrifice G3 Andoria\nBuild R2 Andoria\nBuild R2 Bolarus\nBuild R3 Bajor\n\n73) eliscinsky: M Y1 Talos Orion\n\n74) Babamots: Trade Y3 G3 Babamots\n\n75) eliscinsky: Build G2 Eliscinsky\n\n76) Babamots: Build G2 Babamots\n\n77) eliscinsky: S Y3 Talos\nM B1 Orion Babamots\nM B1 Orion Babamots\nM B2 Orion Babamots\nC Babamots B\n\n78) Babamots: Sacrifice G2 Babamots\nBuild Y2 Bajor\nPass\n\n79) eliscinsky: D Y2 Orion B2 Betazed\n\n80) Babamots: Move Y2 Bajor Babamots\n\n81) eliscinsky: S G2 Eliscinsky\nB G2 Eliscinsky\nB Y3 Betazed\n\n82) Babamots: Build Y3 Bajor\n\n83) eliscinsky: T Y2 G2 Betazed\n\n84) Babamots: Trade G1 B1 Bajor\n\teliscinsky: Interesting. \n\n85) eliscinsky: B G1 Betazed\n\n86) Babamots: Build B1 Bajor\n\n87) eliscinsky: T G2 B2 Eliscinsky\n\n88) Babamots: Move B1 Bajor Babamots\n\n89) eliscinsky: B G2 Eliscinsky\n\n90) Babamots: Build B3 Babamots\n\n91) eliscinsky: Sacrifice Y3 Betazed\nMove Y1 Orion Babamots\nMove Y1 Orion Babamots\nMove G1 Betazed Babamots\n\n92) Babamots: Sacrifice R3 Bajor\nAttack Y1 Babamots\nAttack Y1 Babamots\nAttack G1 Babamots\n\n\teliscinsky: Well you really do have me pinned down. I concede once again. I don&#39;t think this game will go on for more than 3 rounds. In fact I think you could take me in 2. Well played my friend. \n\tBabamots: GG! Would you like to help me test my moderator bot on Discord? I shook out a few more bugs and I&#39;d like to try it again.\n\nHomeworlds Online (SDG# 36811)\nStarted: 2020.8.4, Ended: 2020.8.15\nParticipants: yellowturtle (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: H R1 B2 G3\n\n2) yellowturtle: Homeworld R1 B3 G3\n\teliscinsky: Hello yellowturtle, GL &amp; HF!\n\n3) eliscinsky: B G1 Eliscinsky\n\tyellowturtle: Hi!  Thanks, you too~!\n\n4) yellowturtle: Build G1 Yellowturtle\n\n5) eliscinsky: T G1 R1 Eliscinsky\n\n6) yellowturtle: Trade G1 Y1 Yellowturtle\n\tyellowturtle: Oops, yep, saw that coming as soon as I made my poor star choice, lol\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) yellowturtle: Build G1 Yellowturtle\n\n9) eliscinsky: T G1 Y1 Eliscinsky\n\n10) yellowturtle: Build Y1 Yellowturtle\n\n11) eliscinsky: D R1 Eliscinsky G3 Talos\n\n12) yellowturtle: Build Y2 Yellowturtle\n\n13) eliscinsky: B Y2 Eliscinsky\n\n14) yellowturtle: Trade Y2 R2 Yellowturtle\n\n15) eliscinsky: Build R2 Talos\n\n16) yellowturtle: Build Y2 Yellowturtle\n\n17) eliscinsky: B G1 Eliscinsky\n\n18) yellowturtle: Discover Y1 Yellowturtle G2 Altair\n\n19) eliscinsky: Sacrifice Y1 Eliscinsky\nMove R1 Talos Altair\n\n20) yellowturtle: Move R2 Yellowturtle Altair\n\n21) eliscinsky: Attack Y1 Altair\n\n22) yellowturtle: Attack R1 Altair\n\n23) eliscinsky: Discover G1 Eliscinsky Y3 Sol\n\n24) yellowturtle: Attack Y1 Altair\n\n25) eliscinsky: Build G1 Eliscinsky\n\n26) yellowturtle: Discover G1 Yellowturtle B2 Betelgeuse\n\n27) eliscinsky: Build R2 Talos\n\n28) yellowturtle: Move R1 Altair Sol\n\n29) eliscinsky: Build G2 Sol\n\n30) yellowturtle: Sacrifice G1 Betelgeuse\nBuild R3 Sol\n\n31) eliscinsky: S Y2 Eliscinsky\nD G2 Sol B2 Pluto\nM R2 Talos Pluto\n\n32) yellowturtle: Attack G1 Sol\n\n33) eliscinsky: S G2 Pluto\nB R3 Pluto\nB R3 Talos\n\n34) yellowturtle: Build G1 Sol\n\n35) eliscinsky: T G1 Y1 Eliscinsky\n\n36) yellowturtle: Build Y2 Altair\n\n37) eliscinsky: B Y2 Eliscinsky\n\n38) yellowturtle: Discover Y2 Altair B3 Castor\n\teliscinsky: Yikes! I&#39;m feeling so much on the defensive. \n\n39) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R2 Pluto Sol\nMove R3 Pluto Sol\nCatastrophe Sol R\n\n40) yellowturtle: Build G1 Yellowturtle\n\n41) eliscinsky: Sacrifice Y1 Eliscinsky\nMove R3 Talos Altair\n\n42) yellowturtle: Sacrifice G3 Yellowturtle\nBuild G2 Sol\nBuild G2 Yellowturtle\nBuild G3 Yellowturtle\n\n43) eliscinsky: S R2 Talos\nA R2 Altair\nA Y1 Altair\n\n44) yellowturtle: Move G1 Sol Eliscinsky\n\n45) eliscinsky: Trade G3 Y3 Eliscinsky\n\n46) yellowturtle: Trade G1 Y1 Eliscinsky\n\n47) eliscinsky: A Y1 Eliscinsky\n\n48) yellowturtle: Sacrifice G1 Yellowturtle\nBuild Y2 Castor\n\n49) eliscinsky: T Y3 R3 Eliscinsky\n\n50) yellowturtle: Discover Y2 Castor G1 Deneb\n\n51) eliscinsky: M R3 Altair Castor\n\n52) yellowturtle: Build Y3 Deneb\n\n53) eliscinsky: A Y2 Castor\n\n54) yellowturtle: Trade Y2 B2 Yellowturtle\n\n55) eliscinsky: Move R3 Castor Deneb\n\n56) yellowturtle: Sacrifice B2 Yellowturtle\nTrade G1 R1 Sol\nTrade G2 R2 Sol\n\n57) eliscinsky: Sacrifice R2 Altair\nAttack Y3 Deneb\nAttack Y2 Deneb\n\n58) yellowturtle: Build Y2 Yellowturtle\n\n59) eliscinsky: T R3 G3 Eliscinsky\n\n60) yellowturtle: Sacrifice Y2 Yellowturtle\nMove R1 Sol Eliscinsky\nMove R2 Sol Eliscinsky\n\n61) eliscinsky: S R3 Deneb\nA R2 Eliscinsky\nA R1 Eliscinsky\nPass\n\n62) yellowturtle: Trade G2 R2 Yellowturtle\n\n63) eliscinsky: M R1 Eliscinsky Castor\n\n64) yellowturtle: Move R2 Yellowturtle Altair\n\n65) eliscinsky: M Y3 Deneb Altair\n\n66) yellowturtle: Attack Y1 Altair\n\n67) eliscinsky: S R2 Eliscinsky\nA R2 Altair\nA Y1 Altair\n\n68) yellowturtle: Build G1 Yellowturtle\n\n69) eliscinsky: S G3 Eliscinsky\nB Y2 Deneb\nB Y3 Castor\nB Y3 Eliscinsky\n\n70) yellowturtle: Build G1 Yellowturtle\n\n71) eliscinsky: D Y3 Castor R2 Mars\n\n72) yellowturtle: Discover G1 Yellowturtle B2 Electra\n\n73) eliscinsky: Trade Y2 B2 Castor\n\n74) yellowturtle: Build G2 Electra\n\tyellowturtle: Ha!  This is fine, everything&#39;s fine!\n\n75) eliscinsky: Sacrifice B2 Castor\nTrade Y3 G3 Mars\nTrade Y3 R3 Altair\n\n76) yellowturtle: Sacrifice G3 Yellowturtle\nBuild G2 Electra\nBuild G3 Yellowturtle\nBuild Y2 Yellowturtle\n\n77) eliscinsky: S Y2 Deneb\nM G3 Mars Yellowturtle\nM R3 Altair Yellowturtle\n\n78) yellowturtle: Attack R3 Yellowturtle\n\n79) eliscinsky: S R2 Altair\nA R3 Yellowturtle\nA G3 Yellowturtle\n\n80) yellowturtle: Sacrifice Y2 Yellowturtle\nMove G1 Electra Yellowturtle\nCatastrophe Yellowturtle G\nMove G2 Electra Yellowturtle\n\n81) eliscinsky: A G2 Yellowturtle\n\n82) yellowturtle: Sacrifice G2 Electra\nBuild Y2 Yellowturtle\nBuild Y2 Yellowturtle\n\n83) eliscinsky: Move Y1 Altair Yellowturtle\nCatastrophe Yellowturtle Y\n\n\tyellowturtle: Thanks for playing, it&#39;s been fun!\n\teliscinsky: Thanks! It was very fun! I truly thought you had me a couple times. Rematch anytime!\n\teliscinsky: I find it crazy that &quot;rated games&quot; ALWAYS have the winner go from 1585 up to 1601, &amp; opponent go from 1600 down to 1583.  Very strange.\n\nHomeworlds Online (SDG# 36840)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.6, Ended: 2020.8.6\nParticipants: bootleby (S), mirror33 (N)\nWinner: mirror33\n\n1) mirror33: Homeworld B3 R1 G3\n\n2) bootleby: Homeworld Y1 B2 G3\n\n3) mirror33: Build G1 Mirror33\n\n4) bootleby: Build G1 Bootleby\n\n5) mirror33: Trade G1 B1 Mirror33\n\n6) bootleby: Discover G1 Bootleby B3 Euro\n\n7) mirror33: Build G1 Mirror33\n\n8) bootleby: Trade G1 R1 Euro\n\n9) mirror33: Build G1 Mirror33\n\n10) bootleby: Build G1 Bootleby\n\n11) mirror33: Trade G1 Y1 Mirror33\n\n12) bootleby: Build G1 Bootleby\n\n13) mirror33: Build G2 Mirror33\n\n14) bootleby: Move G1 Bootleby Euro\n\n15) mirror33: Discover G2 Mirror33 B2 Everly\n\n16) bootleby: Build G2 Euro\n\n17) mirror33: Sacrifice G3 Mirror33\nBuild G2 Everly\nBuild G3 Everly\nBuild G3 Mirror33\n\n18) bootleby: Trade G1 Y1 Euro\n\n19) mirror33: Trade G2 Y2 Everly\n\n20) bootleby: Move G2 Euro Everly\n\n21) mirror33: Trade G3 R3 Everly\n\n22) bootleby: Sacrifice G3 Bootleby\nBuild G1 Everly\nBuild G2 Everly\nBuild G3 Bootleby\nCatastrophe Everly Green\n\n23) mirror33: Sacrifice Y2 Everly\nMove R3 Everly Euro\nMove R3 Euro Bootleby\n\n24) bootleby: Build G1 Bootleby\n\n25) mirror33: Attack G3 Bootleby\n\n\nHomeworlds Online (SDG# 36850)\nStarted: 2020.8.9, Ended: 2020.8.17\nParticipants: TrillP (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld Y1 B2 G3\n\n2) TrillP: Homeworld R3 B2 G3\n\tLayana: Viel Spa&szlig;! \n\n3) Layana: Build G1 Layana\n\n4) TrillP: Build G1 Trillp\n\n5) Layana: Trade G1 Y1 Layana\n\n6) TrillP: Build G1 Trillp\n\n7) Layana: Build Y1 Layana\n\n8) TrillP: Build G1 Trillp\n\n9) Layana: Catastrophe Trillp G\nBuild G1 Layana\n\tLayana: Do hattest 4 gr&uuml;ne Schiffe in deinem System (und keine anderen), daher konnte ich eine Katastrophe ausl&ouml;sen, um alte gr&uuml;ne Technologie in deinem Heimatsystem zu vernichten. Da du danach keine Schiffe mehr in deinem System hattest, hast du das Spiel verloren. \n\n\nHomeworlds Online (SDG# 36868)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.12, Ended: 2020.9.18\nParticipants: Babamots (S), Layana (N)\nWinner: Babamots\n\n1) Layana: Homeworld R1 B2 G3\n\n2) Babamots: Pass\n\tLayana: Can we pay with the handycap that you post your first move once more? \n\tBabamots: You&#39;re quickly becoming too good for that, but OK.\n\n3) Layana: Build G1 Layana\n\tLayana: Well, once I win with that, we&#39;ll play without handycap :) \n\n4) Babamots: Homeworld R3 B2 G3\n\n5) Layana: Trade G1 Y1 Layana\n\n6) Babamots: Build G1 Babamots\n\n7) Layana: Build Y1 Layana\n\n8) Babamots: Trade G1 Y1 Babamots\n\n9) Layana: Build Y2 Layana\n\n10) Babamots: Build Y2 Babamots\n\n11) Layana: Trade Y1 R1 Layana\n\n12) Babamots: Trade Y1 R1 Babamots\n\n13) Layana: Build R2 Layana\n\n14) Babamots: Build R2 Babamots\n\n15) Layana: Discover R2 Layana B3 Vienna\n\n16) Babamots: Trade R1 B1 Babamots\n\n17) Layana: Trade Y1 B1 Layana\n\n18) Babamots: Build Y1 Babamots\n\n19) Layana: Build Y1 Layana\n\n20) Babamots: Build G1 Babamots\n\n21) Layana: Build G1 Layana\n\n22) Babamots: Discover Y1 Babamots G1 Risa\n\n23) Layana: Move Y1 Layana Vienna\n\n24) Babamots: Build G2 Babamots\n\n25) Layana: Move G1 Layana Vienna\n\n26) Babamots: Discover G2 Babamots Y1 Aldea\n\n27) Layana: Discover B1 Layana G3 Fredholme\n\n28) Babamots: Build G2 Aldea\n\n29) Layana: Build G2 Layana\n\n30) Babamots: Discover G2 Aldea Y3 Iconia\n\n31) Layana: Sacrifice G3 Layana\nBuild G3 Layana\nBuild Y2 Vienna\nBuild Y3 Layana\n\n32) Babamots: Sacrifice G2 Iconia\nBuild Y3 Risa\nBuild Y3 Babamots\n\n33) Layana: Sacrifice Y2 Layana\nMove Y1 Vienna Risa\nMove Y2 Vienna Risa\nCatastrophe Risa Y\n\n34) Babamots: Move B1 Babamots Aldea\n\n35) Layana: Build Y1 Layana\n\n36) Babamots: Discover Y2 Babamots G1 Ferenginar\n\n37) Layana: Discover G2 Layana Y3 Grothendieck\n\n38) Babamots: Sacrifice G3 Babamots\nBuild G2 Aldea\nBuild Y1 Ferenginar\nBuild G3 Babamots\n\n39) Layana: Move Y1 Layana Vienna\n\n40) Babamots: Move R2 Babamots Aldea\n\n41) Layana: Build Y2 Vienna\n\n42) Babamots: Sacrifice G3 Babamots\nBuild R1 Aldea\nBuild B1 Aldea\nBuild G3 Babamots\n\n43) Layana: Build B2 Fredholme\n\n44) Babamots: Discover B1 Aldea Y2 Iconia\n\n45) Layana: Discover G3 Layana B3 Laplace\n\n46) Babamots: Build B3 Aldea\n\n47) Layana: Sacrifice G2 Grothendieck\nBuild R2 Vienna\nBuild Y3 Layana\n\n48) Babamots: Move B3 Aldea Vienna\n\tLayana: Sorry this is taking me so long, I have been ill (still am, actually) and can&#39;t concentrate. \n\tBabamots: It&#39;s not a problem. Take as long as you need.\n\tBabamots: Are you feeling any better?  I hope it&#39;s not serious.\n\tLayana: Yes, I&#39;m feeling somewhat better. Luckily, it&#39;s not the obvious virus. I&#39;m still at a loss about what to do, now, though - and hints? \n\tLayana: Btw, how stable are the ladders when it comes to bugs etc? I won my first realm ladder game, even got elo for it, but the ladder says it was a draw. Also, there is a realm game where my opponent won because he resigned, which is weird. \n\tBabamots: Interesting. I&#39;ve never had those problems, but I&#39;m only on the HW ladder, and there are no Homeworlds draws on SDG. I know there are some bugs for &gt;2-player HW (turn order can get messed up and the archive view doesn&#39;t display correctly after players are eliminated).\r\n\r\nDid I already invite you to my Discord server? You can play HW with people in real time here:\r\n\r\nhttps://discord.gg/tZCpPXC\r\n\r\nPeople aren&#39;t using it much yet, but I&#39;m working on changing that. And there are probably bugs, but unlike SDG, it&#39;s under active development!\n\tLayana: No, thanks for the link, I&#39;ll definitely check it out.\n\n49) Layana: Sacrifice Y2 Vienna\nMove R2 Vienna Iconia\nDiscover R2 Vienna G2 Galois\n\n50) Babamots: Sacrifice R2 Aldea\nAttack Y1 Vienna\nAttack G1 Vienna\n\n51) Layana: Move Y3 Layana Fredholme\n\tBabamots: You have two large yellows, three reds, and two blues. You really only need one more ship for a Doomsday machine: a third blue. You can get that third blue by sacrificing the g3 in Laplace, so if you can keep your head up for a while, you might be ok. But you don&#39;t want to lose any of the parts of your Doomsday machine.\r\n\r\nI think you should prioritize keeping your red and blue safe. Get them somewhere defended (with a large ship) or where they can escape (at a yellow star).\n\tBabamots: That move is very close to what I was going to suggest. Good!\n\n52) Babamots: Sacrifice G3 Babamots\nBuild R2 Aldea\nBuild R3 Aldea\nBuild G3 Babamots\n\tBabamots: Something I didn&#39;t see until after you moved is that attacking your y1 puts me in a position to destroy your y3&#39;s if you don&#39;t respond. Be careful.\n\n53) Layana: Move R2 Iconia Aldea\nCatastrophe Aldea R\n\tLayana: I guess this one is mostly over either way,though. \n\n54) Babamots: Trade B1 R1 Aldea\n\n55) Layana: Build Y2 Fredholme\n\n56) Babamots: Sacrifice G3 Babamots\nBuild R2 Aldea\nBuild B1 Iconia\nBuild G3 Babamots\n\n57) Layana: Move Y3 Fredholme Aldea\n\n58) Babamots: Sacrifice Y2 Ferenginar\nMove R2 Aldea Vienna\nDiscover R1 Aldea R3 Romulus\n\n59) Layana: Sacrifice R1 Layana\nAttack G2 Aldea\n\n60) Babamots: Sacrifice G2 Aldea\nBuild G2 Vienna\nBuild Y2 Vienna\n\n61) Layana: Build R1 Galois\n\n62) Babamots: Move Y1 Ferenginar Romulus\n\n63) Layana: Move B2 Fredholme Aldea\n\n\tLayana: Thanks for the game. \n\tBabamots: GG! So you know, someone just put up a website for playing HW in real time:\r\n\r\nhttps://homeworlds-live2.glitch.me/\r\n\r\nIt&#39;s still under construction, but everything that I tried worked great. I&#39;m really excited to see how playing in real time affects my thinking.\n\nHomeworlds Online (SDG# 36773)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.12, Ended: 2020.8.25\nParticipants: Trydnt (S), Layana (N)\nWinner: Trydnt\n\n1) Layana: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) Layana: Build G1 Layana\n\n4) Trydnt: Build G1 Trydnt\n\tLayana: Have fun :) \n\tTrydnt: you too\n\n5) Layana: Trade G1 Y1 Layana\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Layana: Build Y1 Layana\n\n8) Trydnt: Build R1 Trydnt\n\n9) Layana: Discover Y1 Layana G3 Asimov\n\n10) Trydnt: Build R2 Trydnt\n\n11) Layana: Build Y1 Layana\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) Layana: Build Y2 Layana\n\n14) Trydnt: Discover Y2 Trydnt G1 G1\n\n15) Layana: Trade Y2 R2 Layana\n\n16) Trydnt: Build Y2 G1\n\n17) Layana: Discover Y1 Layana B3 Lem\n\n18) Trydnt: Discover Y2 G1 Y3 Y3\n\n19) Layana: Build R2 Layana\n\n20) Trydnt: Build G1 Trydnt\n\n21) Layana: Move R2 Layana Asimov\n\n22) Trydnt: Move R1 Trydnt G1\n\n23) Layana: Build G1 Layana\n\n24) Trydnt: Build G2 Trydnt\n\n25) Layana: Sacrifice G3 Layana\nBuild G2 Layana\nBuild Y2 Lem\nBuild Y3 Layana\n\n26) Trydnt: Discover G2 Trydnt B1 B1\n\n27) Layana: Trade Y1 B1 Lem\n\n28) Trydnt: Trade G1 B1 Trydnt\n\n29) Layana: Discover G2 Layana B3 Zelasny\n\n30) Trydnt: Build R2 G1\n\n31) Layana: Build R3 Asimov\n\n32) Trydnt: Build R3 Trydnt\n\n33) Layana: Move R3 Asimov G1\n\n34) Trydnt: Build R3 G1\nCatastrophe G1 R\n\n35) Layana: Trade R2 G2 Layana\n\n36) Trydnt: Discover R3 Trydnt Y1 Y1\n\n\tTrydnt: asimov is pretty safe as you have a red ship there so if I move in the r3 you could always grow more red and blow it up\n\tTrydnt: Lem and Zelasny are both vulnerable but you could blow up Lem by sacrificing a g2 and growing two blues. I&#39;d probably have sacrificed your y2 piece and moved some things. maybe leave it so a b3 (or more) was available to grow on your next turn. I can&#39;t grow blue easily as I only have blue at my homeworld and I&#39;m therefore limited by the star color\n\tTrydnt: But yeah you&#39;re situation was pretty dire after I blew up all that red and took your large. Always be wary of moving a large ship somewhere where your opponent has a piece of the same color as it&#39;s not hard to grow a bit and blow up your large, especially if they have a g2 lying about\n\nHomeworlds Online (SDG# 36413)\nVariants: &quot;Hard time&quot;\nStarted: 2020.8.15, Ended: 2020.9.3\nParticipants: yellowturtle (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) yellowturtle: Homeworld B3 R1 G3\n\twil: Know the game?\n\n3) wil: B G1 Wil\n\tyellowturtle: I am indeed familiar with the rules\n\twil: Cool, just checking...have fun!\n\n4) yellowturtle: Build G1 Yellowturtle\n\n5) wil: T G1 B1 Wil\n\twil: Ah! Online...should I stay awhile so we can get the wicker earlier moves out of the way before we need thinking caps?\n\n6) yellowturtle: Trade G1 B1 Yellowturtle\n\n7) wil: B B2 Wil\n\n8) yellowturtle: Build B2 Yellowturtle\n\twil: Oops, he asks and then goes and empties dishwasher.and makes lunch...\n\n9) wil: D B1 Wil Y3 Y3\n\tyellowturtle: For some reason, your messages only just now came through, so certainly no harm with lunch time!\n\n10) yellowturtle: Build G1 Yellowturtle\n\n11) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n12) yellowturtle: Trade G1 Y1 Yellowturtle\n\twil: Welcome to the stage...the blue man group!\n\tyellowturtle: Ha!\n\n13) wil: S B2 Y3\nT B3 G3 Wil\nT B3 G3 Y3\n\n14) yellowturtle: Discover B1 Yellowturtle G2 Altair\n\n15) wil: S G3 Y3\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n16) yellowturtle: Build G1 Yellowturtle\n\n17) wil: M B2 Y3 Altair\n\n18) yellowturtle: Trade G1 R1 Yellowturtle\n\n19) wil: T B2 R2 Altair\n\n20) yellowturtle: Build Y1 Yellowturtle\n\n21) wil: A B1 Altair\n\n22) yellowturtle: Discover B2 Yellowturtle Y2 Betelgeuse\n\n23) wil: B B2 Altair\n\n24) yellowturtle: Discover Y1 Yellowturtle G2 Castor\n\n25) wil: S B2 Altair\nT B3 R3 Wil\nT B3 G3 Y3\n\n26) yellowturtle: Sacrifice G3 Yellowturtle\nBuild Y1 Castor\nBuild Y2 Yellowturtle\nBuild Y3 Yellowturtle\n\n27) wil: Move G3 Y3 Castor\n\n28) yellowturtle: Sacrifice Y2 Yellowturtle\nDiscover Y1 Castor G3 Deneb\nMove Y1 Castor Deneb\n\n29) wil: Sacrifice G3 Castor\nBuild B2 Wil\nBuild B3 Y3\nBuild B3 Altair\n\n30) yellowturtle: Build Y2 Deneb\n\n31) wil: S B2 Wil\nT B3 Y3 Altair\nT B3 G3 Y3\n\n32) yellowturtle: Trade Y1 G1 Yellowturtle\n\twil: I refer to this as a queen factory...takes 50% longer to grow a queen than simply swapping blues and growing them...but allows me to place different ones around the starfield\n\tyellowturtle: I like it a lot!  It&#39;s very overwhelming\n\n33) wil: M R3 Wil Deneb\n\n34) yellowturtle: Move Y2 Deneb Wil\n\twil: Hi, how are things?\n\n35) wil: A Y1 Deneb\n\n36) yellowturtle: Move Y1 Deneb Wil\n\twil: Just looking for fuel..\n\n37) wil: S R2 Altair\nA Y1 Wil\nA Y2 Wil\n\tyellowturtle: Just looking for a new home...\n\n38) yellowturtle: Build G1 Yellowturtle\n\twil: In that case we welcome you to the fam!  I am sure you will not only enjoy it here but your relatives will be joining you soon.\n\tyellowturtle: Oh!  And things are going just fine!  I hope all goes well for you too!\n\twil: These new ships and converts will be fully utilized for the mission\n\n39) wil: S G3 Y3\nB B2 Altair\nB B3 Altair\nB B3 Y3\n\n40) yellowturtle: Build Y1 Yellowturtle\n\tyellowturtle: Yikes\n\n41) wil: T B3 G3 Y3\n\n42) yellowturtle: Sacrifice G1 Yellowturtle\nBuild B3 Betelgeuse\n\twil: Catastrophes of half a home world without a plan in force are a sucker move.  But they do provide some satisfaction in a last ditch effort sort of way.\n\twil: Catastrophes of half a home world without a plan in force are a sucker move.  But they do provide some satisfaction in a last ditch effort sort of way.\n\tyellowturtle: I can see how in some situations it&#39;d be a problem if the opponent could retaliate, but in this situation, I&#39;m so far behind and am unlikely to enact such a retaliation---what then would be the harm in catastropheing one of my stars?\n\n43) wil: Move Y2 Wil Deneb\n\twil: it would be a strange situation to decide to catastrophe your own..\n\n44) yellowturtle: Discover Y1 Yellowturtle R2 Electra\n\tyellowturtle: No, I mean, you entered into a position to destroy one of my stars, but you indicated you&#39;d wait to do so until later.  I&#39;m asking why would you wait in this situation, when I&#39;m so far behind and unlikely to retaliate?\n\n45) wil: Trade B3 R3 Altair\n\n46) yellowturtle: Build G1 Yellowturtle\n\twil: once you blow up and put all that back in the bank along with changing the relation ship in the game..  I just prefer to have a quick follow up cause anything can happen\r\n\n\tyellowturtle: That makes sense\n\n47) wil: S Y2 Deneb\nM Y3 Altair Yellowturtle\nM R3 Altair Yellowturtle\n\n48) yellowturtle: Attack R3 Yellowturtle\n\twil: I think, lol\n\twil: This is more decisive\n\tyellowturtle: Ha, I agree!\n\n49) wil: S R3 Deneb\nA Y3 Yellowturtle\nA R3 Yellowturtle\nA R1 Yellowturtle\n\n50) yellowturtle: Trade G1 R1 Yellowturtle\nCatastrophe Yellowturtle R\n\n51) wil: S Y3 Yellowturtle\nM B2 Altair Yellowturtle\nM B1 Altair Yellowturtle\nM B2 Wil Yellowturtle\nC Yellowturtle B\n\tyellowturtle: A strange situation indeed, but it keeps me going for another turn\n\twil: Challenge anytime here or a test run on discord\n\tyellowturtle: Thanks for playing~!\n\twil: Back at cha...literally anytine\n\n\nHomeworlds Online (SDG# 36884)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.17, Ended: 2020.10.11\nParticipants: eliscinsky (S), Xaevith (N)\nWinner: eliscinsky\n\n1) Xaevith: Homeworld R3 B2 G3\n\n2) eliscinsky: H Y1 B2 G3\n\n3) Xaevith: Build G1 Xaevith\n\teliscinsky: Hey Xaevith, good to see you here in Homeworlds. GL &amp; HF. Did you want this to be a training game?\n\tXaevith: Hi! I guess I would say so! I am just trying to get more game experience under my belt. I feel like I&#39;m pretty familiar with the opening of a game but I feel like when it comes to the mid - end game is where I start to suffer. If you notice any tips that might be useful I&#39;d appreciate them greatly! Otherwise I&#39;m down for chit-chat or whatever! :D\r\n\r\nThanks for the game, appreciate it greatly. :)\n\tXaevith: oh I almost forgot, good luck and have fun!!!\n\n4) eliscinsky: B G1 Eliscinsky\n\n5) Xaevith: Trade G1 Y1 Xaevith\n\teliscinsky: If you&#39;re looking for information on Homeworlds strategy, tips, and stuff to watch out for, check out https://jpeterbaker.github.io/homeworlds/site/index.html\r\n\r\nThat&#39;s Jonathan Baker&#39;s (aka Babamots) site.  He also likes to teach HW&#39;s to new players.  Gives great advice!  So he&#39;s another player to try.  Just let him know your skill level and ask for help. And when you think you&#39;re ready, let him know that you don&#39;t want help, and he&#39;ll play you &quot;for real&quot;. But watch out he&#39;s a wicked good player. He&#39;s just beat Andy Looney for a HW&#39;s metal, and Andy&#39;s one of the best. Jonathan is only the 20th person to beat Andy. I&#39;ve only beaten Babamots once, and that was because he was distracted for some reason and made several mistakes.\r\n\r\nJust about any other players listed in the HW&#39;s Challenge area are &quot;experienced&quot; players. Some will cut you some slack, some won&#39;t.\r\n\r\nAfter we get a couple rounds in we can discuss move options.  Mostly mine, as that will help you think about &quot;What your opponent might do&quot;.  We can always discuss your possible moves if you want, and if I see an obvious mistake I&#39;ll make a comment before I move.  I normally move within a day of it becoming my turn. So if you don&#39;t see that I have made a move (email) by the second day, come back to the game to check for comments.  SDG doesn&#39;t email on comments being made.  However, your &quot;My SDG&quot; (top of every page) will show if comments have been made.\r\n\r\nOne key thing to remember is that SDG only allows 1 &quot;Undo Last Move&quot; per turn.  If you undo you only get 1 move, and undo is turned off, until I move.  In other words you cannot repeatedly undo during your turn to &quot;see what the board would look like&quot;.  I&#39;ve known some players to set up an identical physical game at home to &quot;test out&quot; possible moves.\r\n\r\nLast thing for now, if you have any questions at anytime, just ask. &quot;There are no dumb questions.&quot;\r\n\n\teliscinsky: BTW, that link does NOT have any hyphens in it. If you see one that&#39;s SDG word wrap at work.\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Xaevith: Build Y2 Xaevith\n\tXaevith: I got the pleasure of meeting Babamots during Homeworlds 101 at Gencon this year! I&#39;m about maybe 1/2 way through a game I started with him around the start of August? He showed me his guide it&#39;s the most comprehensive I&#39;ve seen so far! Even though I&#39;ve read it twice now... I still feel like I&#39;m the type of player and person who has to actually play through a couple rounds before it will all click in my head. :P For example I have read about getting frozen a colour so many times I still made the mistake of almost getting frozen out of red and had he not pointed it out I would have been really screwed... Now that I made that mistake and had it pointed out though I&#39;m going to be very careful the next time I run into that situation!\r\n\r\nI think I would appreciate the discussion of moves during play. In my match with Babamots even though I figure he&#39;s probably taking it a bit easy on me there were still plenty of times where he made moves I had totally missed or had not calculated. I try especially when playing through SDG to try and take some time when making a move and try and kind of map out what each possible move is going to do for me and for the opponent. I&#39;m fairly familiar with the core of the game, the colours, how movement and all that works, the ability to sacrifice I think it&#39;s really when it gets to the middle or the end of a game is where I struggle to be able to pull off any sort of strategy. Most of the time I feel like I&#39;m just either reacting to what my opponent did or getting forced to go in another direction because of the economy.\r\n\r\nI&#39;d appreciate you pointing out the mistake, it&#39;s okay if I don&#39;t get an email I&#39;m playing quite a few different rounds of games on SDG so I&#39;ll probably get a chance to check the notification!\n\n8) eliscinsky: D Y1 Eliscinsky G3 Earth\n\n9) Xaevith: Build Y2 Xaevith\n\n10) eliscinsky: B Y2 Earth\n\n11) Xaevith: Discover Y2 Xaevith R1 Masser\n\teliscinsky: Careful with all that yellow economy. \n\tXaevith: Yeah I could feel my wax wings starting to melt ever so slightly with that last build... I know right now though if I don&#39;t do anything you could easily wipe out all my yellow quite easily! :(\n\n12) eliscinsky: Discover Y1 Earth G1 Kronos\n\n13) Xaevith: Build G1 Xaevith\n\teliscinsky: Sorry I didn&#39;t point this out before I moved.  I&#39;ll try to do better for the rest of the game. \r\n\r\nOkay tip: Your choice of star (red) for Masser puzzles me. A red star is good for when you want to move a ship and make it hard for your opponent to attack it. Can only be done with a larger ship. I have no red to attack you so that is moot.  Also by choosing red you cannot build anything there.  You can only move the y2 to somewhere else, sacrifice the y2, or move some thing in.  Not a lot of advantages at this stage of the game. \r\n\r\nHowever, if you&#39;ve got a multi-step plan you&#39;re working on ... never mind.  Continue on.\n\tXaevith: I appreciate that feedback. I was honestly really stuck in the choice between red or blue. The way I saw it was maybe try and get ahead of taking away small red pieces now to help corner the red economy and protect my system from invasion or catastrophe without directly starting the red ship building contest... I know that as soon as I build a red ship it&#39;s going to trigger you to want to make sure you also are equipped to deal with any threat of a take-over... At least that was the thought process behind it! It&#39;s all good though, unrated games are the place to try out ideas and learn to become a better player as well as talk about these moves like this!\n\n14) eliscinsky: Build Y3 Earth\n\teliscinsky: 1) You could also have gone with a small green, and even though it opened the medium greens, you would have been able to build at least a large yellow without endangering the yellows in your HW.\r\n\r\nAt this point one of my options is to build large yellows, getting them all if I can.  Then work on trading them for 2 diff colors, and after a little build up ... finally move into your HW and begin an attack.\r\n\r\nJust know that you have a decent position in the yellow economy.  I still have to be careful not to build to many in one place as you could wipe them out (at a price).\r\n\r\n2) You also need to be careful not to over load your HW with to much of one economy.  In your case currently ... Yellow. (I don&#39;t have enough green to endanger your HW)\r\n\r\nIn another game I&#39;m playing my opponent had 3 green in his HW and no were else.  And only blue in his HW. With a y3 and a g1 I moved in and eliminated all his construction economy. They are now on &quot;Red Alert&quot;.\r\n\r\n3) For your next move you&#39;ll need to consider trading inside your HW or moving something out / discovering a new star. Remember a ship anywhere on the board can be sacrificed for its action elsewhere, if needed. \r\n\r\n4) In my first couple dozen HW matches I lost almost all of them. But I look upon each one as a learning event.  Trying to see where I went wrong. I usually saw it just AFTER I did it, and they set me back enough that I could not recover.  Live and Learn. Always a student. :)\r\n\r\n5) And now my play is ...\n\n15) Xaevith: Discover Y1 Xaevith G1 Secunda\n\teliscinsky: Oh, one more thing. SDG has a mode to show step by step how a game progresses.  You can use it anytime on any game, even if the game is not over. For this game the link is ...\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=36884\r\n\r\nTo use it on another game just replace the gid (Game ID) number with the game number you&#39;re interested in. Any game number, not just HW games.\r\n\r\n\n\n16) eliscinsky: Move Y3 Earth Eliscinsky\n\tXaevith: Like you said I really see the error of not picking small green now that I&#39;m essentially losing the chance at getting Y3 this turn which allows you to get another one next turn which basically secures the chance of causing some catastrophes... OOF. That&#39;s gonna cost me!\r\n\r\nAlso thank you for showing me the play by play feature! This is something I was not aware was on SDG! This can also be useful for watching play by plays of other players games as well... Very very useful information, many many thanks!\n\n17) Xaevith: Build Y3 Secunda\n\n18) eliscinsky: Build Y3 Earth\n\n19) Xaevith: Build G2 Xaevith\n\teliscinsky: I noticed that you are playing 4 HW games simultaneously. That&#39;s a tough, dare I say  near impossible undertaking. It&#39;s just too hard to focus enough on them. Next time try just one or two a a time. I know from personal experience. I did the same thing in my beginning. Good luck with the other games. \n\tXaevith: Yeah and if you&#39;ve creeped the other matches I&#39;ve made some pretty bad mistakes. You&#39;re right though, it just becomes so easy to start another match while waiting. Ahhh well gotta make mistakes to learn why something is a bad decision I suppose.\n\n20) eliscinsky: S Y3 Earth\nM Y2 Earth Kronos\nM Y1 Kronos Xaevith\nM Y2 Kronos Xaevith\n\n21) Xaevith: Sacrifice G1 Xaevith\nBuild Y3 Masser\n\teliscinsky: It just got interesting. \n\n22) eliscinsky: T Y2 G2 Xaevith\n\tXaevith: Very interesting! But now you only have the one yellow ship left and as far as I can tell you have no way to bring it into my homeworld... You might start attacking my 2s next turn but I can start turning it around after can I not?\n\tXaevith: Also if I let you build the yellow ship you could have just sacrificed your other Y3 and moved right into my HW and caused a nice yellow catastrophe... I feel like this way I can at least try to keep a grip on that yellow economy... I might be wrong but hey worth a shot!\n\teliscinsky: Excellent move. However my plan was not yellow. And attack is not the only course of action. \n\n23) Xaevith: Attack G2 Xaevith\n\n24) eliscinsky: T Y1 G1 Xaevith\nC Xaevith G\n\n25) Xaevith: Trade Y2 G2 Xaevith\n\n26) eliscinsky: Discover Y3 Eliscinsky R3 Romulus\n\tXaevith: AHHHHHHHH MY STAR WAS BLUE\n\n27) Xaevith: Build G1 Xaevith\n\tXaevith: Great move that was awesome\n\tXaevith: I don&#39;t know why it feels like your homeworld is only your own... I know it&#39;s not but for whatever reason I really overlooked that in that situation ahahahaha \n\n28) eliscinsky: D Y3 Romulus R1 Remus\n\teliscinsky: Fear not.  You&#39;re still ahead of me in points, which is usually what matters most, AND you still control most of the yellow economy.\n\n29) Xaevith: Move Y3 Secunda Xaevith\n\n30) eliscinsky: Build G1 Eliscinsky\n\n31) Xaevith: Discover Y1 Secunda G3 Tiny\n\teliscinsky: Okay, before I move consider this. You don&#39;t have a large ship in your HW. I have a large ship one move away from your HW. Since you don&#39;t have anything big enough to take me, I can then use your red HW to attack your ships. Game over in a few rounds. \r\n\r\nRemember most HW games take dozens of turns. It&#39;s a trap to go for a seemingly quick game.\r\n\r\nI&#39;ll give you 24 hours from this message to think about it. \n\n32) eliscinsky: Trade G1 R1 Eliscinsky\n\teliscinsky: ... and now you W is protected. :)\n\n33) Xaevith: Move G1 Xaevith Masser\n\n34) eliscinsky: B G1 Eliscinsky\n\n35) Xaevith: Build G1 Xaevith\n\n36) eliscinsky: M R1 Eliscinsky Tiny\n\n37) Xaevith: Trade G2 R2 Xaevith\n\n38) eliscinsky: A Y1 Tiny\n\n39) Xaevith: Build G2 Xaevith\n\n40) eliscinsky: T G1 B1 Eliscinsky\n\n41) Xaevith: Discover G1 Xaevith B1 Stormpoint\n\n42) eliscinsky: Discover B1 Eliscinsky G3 Orion\n\n43) Xaevith: Move R2 Xaevith Stormpoint\n\n44) eliscinsky: Build R2 Tiny\n\n45) Xaevith: Build G1 Xaevith\n\n46) eliscinsky: Build G2 Eliscinsky\n\n47) Xaevith: Build G2 Stormpoint\n\n48) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G3 Eliscinsky\nBuild Y1 Tiny\nBuild Y2 Tiny\n\n49) Xaevith: Build Y2 Xaevith\n\n50) eliscinsky: S G3 Eliscinsky\nB G3 Eliscinsky\nB B1 Orion\nB B2 Orion\n\n51) Xaevith: Build R2 Stormpoint\n\n52) eliscinsky: S Y3 Remus\nM B1 Orion Stormpoint\nM B1 Orion Stormpoint\nM B2 Orion Stormpoint\nC Stormpoint B\n\n53) Xaevith: Sacrifice Y3 Masser\nMove G1 Masser Tiny\nMove G1 Tiny Eliscinsky\nMove G1 Xaevith Masser\n\n54) eliscinsky: T G3 R3 Eliscinsky\n\teliscinsky: Well you didn&#39;t take the b1, and opted for the y2 instead. Since you already undid your last move there&#39;s no turning back.  So blue is going to get hard to get. \n\n55) Xaevith: Move Y2 Masser Tiny\nCatastrophe Tiny Yellow\n\teliscinsky: Not sure what else you might have done. \n\n56) eliscinsky: A G1 Eliscinsky\n\n57) Xaevith: Build Y1 Xaevith\n\n58) eliscinsky: T G2 B2 Eliscinsky\n\n59) Xaevith: Move Y2 Xaevith Masser\n\n60) eliscinsky: Trade R3 G3 Eliscinsky\n\n61) Xaevith: Trade Y1 B1 Xaevith\n\n62) eliscinsky: Build B1 Eliscinsky\n\n63) Xaevith: Build Y1 Masser\n\n64) eliscinsky: D B2 Eliscinsky G3 Earth\n\n65) Xaevith: Build G1 Xaevith\n\n66) eliscinsky: Build B1 Earth\n\n67) Xaevith: Build G2 Masser\n\n68) eliscinsky: Sacrifice G3 Eliscinsky\nBuild R1 Tiny\nBuild B3 Earth\nBuild B3 Eliscinsky\n\n69) Xaevith: Sacrifice Y3 Xaevith\nMove B1 Xaevith Masser\nMove B1 Masser Earth\nMove B1 Earth Eliscinsky\nCatastrophe Eliscinsky Blue\n\n70) eliscinsky: S B2 Earth\nT B1 Y1 Earth\nT R2 Y2 Tiny\n\n71) Xaevith: Move Y2 Masser Xaevith\n\n72) eliscinsky: Sacrifice Y2 Tiny\nMove B3 Earth Masser\nMove B3 Masser Xaevith\n\n73) Xaevith: Sacrifice Y2 Xaevith\nMove G2 Masser Xaevith\nMove Y1 Masser Xaevith\n\teliscinsky: Interesting choice of action.  Remember one of Babamots&#39; strategy guidances: &quot;If I do this, what can they do next.&quot; Playing a &quot;long game&quot; strategy usually works best, unless your opponent makes a significant misstep.\r\n\r\nBy taking a green you now allow me to sacrifice my large green, and still get it back (even though that would put my green at risk in my HW). You could have built another yellow, or even a large blue in your HW and I would not have been able to do much about it for several turns.  By then you would have traded or moved your pieces out of your HW.\r\n\r\nAll though I think I&#39;ll go a slightly different course.  Question is did you consider this move?\n\n74) eliscinsky: A Y1 Xaevith\n\n75) Xaevith: Build G2 Masser\n\teliscinsky: Ha, very good. Let&#39;s see if I can come back from this. \n\teliscinsky: Ha, very good. Let&#39;s see if I can come back from this. \n\n76) eliscinsky: A G2 Xaevith\n\n77) Xaevith: Build G3 Xaevith\n\n78) eliscinsky: B Y2 Xaevith\nC Xaevith G\n\n\teliscinsky: Okay, while you didn&#39;t call the catastrophe in your HW the condition still exists. If I call the catastrophe you will lose your HW. I&#39;ll give you a day to reconsider. \n\teliscinsky: GG\n\nHomeworlds Online (SDG# 36815)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.8.17, Ended: 2020.9.7\nParticipants: Xaevith (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Xaevith: Homeworld B3 Y1 G3\n\twil: so.new to hw?  how do you wanna play  this?  help no help? training or straight play? discussion of moves?\n\n3) wil: B G1 Wil\n\tXaevith: So I&#39;m not &quot;new&quot; per say... I have played HW on and off for the past ten years but I never got very good at it... Most of the people I would teach to play had no interest in trying to take the time to figure out the awesomeness that is Homeworlds...\r\n\r\nMy main issue I feel like is that I&#39;m alright in the start of the game but lack real experience in mid - end game play.\r\n\r\nI&#39;m down for straight talking and discussion though, to be honest I&#39;m finding I&#39;m learning a lot more just hearing from the rest of you guys! Whatever you&#39;re willing to share I&#39;m willing to hear! Hope you are having a great day today. :)\n\twil: It is interesting how strategies differ.  Andy plays the long game building ships and increasing the front till an end emerges. John Cooper ace)states to get intonchallenges and pester like a mosquito amd often will leave his he with a small ship. I try to corner markets and freeze folks out of any economy I can.\n\n4) Xaevith: Build G1 Xaevith\n\n5) wil: T G1 B1 Wil\n\n6) Xaevith: Trade G1 B1 Xaevith\n\n7) wil: T B1 Y1 Wil\n\tXaevith: This is why I really love this game and keep coming back time and time again... In concept it&#39;s got very simple ideas but the amount of strategy on how you want to go about playing is unique to each player. I&#39;m really excited to see what kind of moves I end up gravitating towards. As of right now I&#39;m kind of just trying a bunch of stuff out to get a better idea of what better resonates with my playstyle.\n\n8) Xaevith: Build B1 Xaevith\n\twil: Dag is a great place to play a lot of different people.  Start fighting your way up the ladder...and yes it is a struggle for all of us to find live games.  Folks that used to play chess seem the best as the similarities in play and complexity are similar.\r\n\n\twil: \n\n9) wil: B Y1 Wil\n\n10) Xaevith: Discover B1 Xaevith G2 Nirn\n\tXaevith: That&#39;s the plan for now, going to play a lot of unrated games and get myself through a few more complete games... Probably get my butt handed to me several times but learn a bunch and start to get my own hang of things. :D\n\twil: I prolly lost 45 of my first 50...never worried about ratings...just playing.\r\n\r\n\r\n\n\n11) wil: D Y1 Wil B3 B3\n\n12) Xaevith: Build B2 Nirn\n\n13) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y2 B3\nBuild Y3 B3\n\n14) Xaevith: Build B2 Nirn\n\n15) wil: Trade Y3 G3 B3\n\tXaevith: damn I was not anticipating you to sac your g3 that early\n\n16) Xaevith: Build B2 Xaevith\n\n17) wil: Discover Y1 Wil B3 Be3\n\twil: I like big ships I cannot lie.\n\n18) Xaevith: Build G1 Xaevith\n\n19) wil: Sacrifice G3 B3\nBuild Y3 B3\nBuild Y3 Be3\nBuild Y3 Be3\n\twil: the goal in this case was three fold.  While it was to corner the yellows, it was also to impede your ability to move, and keep you from the blue queens.  Hopefully as the game plays out I will be able to release them into my control...or better yet since I have three ships my backfield to build....and they are all blue...do I need them?  (note blue thou is my favorite color to capture as I can create a queen factory like I have in the other game currently playing.\n\n20) Xaevith: Build G1 Xaevith\n\tXaevith: What an interesting situation, I feel like I&#39;m gonna be really really stuck without yellow and now that you&#39;ve secured those last B3s from my grasp I&#39;m in quite the pickle indeed...\n\twil: Pickling is the goal.\n\n21) wil: T Y3 G3 B3\n\twil: OPEC has officially taken over the galaxies fuel supply and no longer had to have large ship at home...\n\twil: The rest of the game involves aquiring all the rest of the queens and then picking of whole star systems with grounded ships.  It willl be an educational experience to not let me do that again.\n\n22) Xaevith: Discover G1 Xaevith G2 Azeroth\n\tXaevith: I never realized how much of advantage you can get out of sacrificing that G3 so early on can be. I&#39;m always terrified to get rid of it thinking I always need that green in my homeworld to be able to do anything at all... Although now I suppose when it comes to it you have a ton of 3 pieces and blue stars to trade with... I thought I was cornering blue but not even close.\n\twil: Once I do the calculation (simply count the bank)  I pick the color that is the shortest way to 3s to go for.  If you jump on board I have to switch to my next gambit.  But if you don&#39;t I run for all its worth.  It ain&#39;t a factory that rebuilds itself...it is a hostile take over and destruction of the existing construction economy.\r\n\r\nOnce I saw you were headed for blues...i needed to either get in that game with you...or reduce is worth (empty bank making stars)\n\n23) wil: B Y3 B3\n\twil: Warning thou...monopolies are harder to control than they are to get.  And when they go bad the problems avalanche.  Despite that it is my standard &quot;can I&quot; question...  I have made monopolies in all colors and each of them is tracherous in its own right.\n\n24) Xaevith: Trade B2 R2 Xaevith\n\n25) wil: M Y2 B3 Azeroth\n\n26) Xaevith: Build B2 Xaevith\n\n27) wil: T Y3 R3 B3\n\twil: Chumming.\n\n28) Xaevith: Trade G3 Y3 Xaevith\n\n29) wil: S Y3 Be3\nM Y1 Be3 Azeroth\nM Y1 Azeroth Xaevith\nM Y2 Azeroth Xaevith\nC Xaevith Y\n\n30) Xaevith: Trade B2 Y2 Xaevith\n\n31) wil: M R3 B3 Wil\n\n32) Xaevith: Build Y1 Xaevith\n\n33) wil: Trade Y2 B2 Wil\n\n34) Xaevith: Move Y1 Xaevith Nirn\n\n35) wil: Move Y3 Be3 Nirn\n\n36) Xaevith: Sacrifice Y2 Xaevith\nDiscover B2 Nirn Y3 Lemon\nMove B2 Nirn Lemon\n\n37) wil: M Y3 Nirn Xaevith\n\n38) Xaevith: Build R1 Xaevith\n\n39) wil: S R3 Wil\nA R2 Xaevith\nA R1 Xaevith\nA G1 Xaevith\n\n40) Xaevith: Build B3 Nirn\n\twil: I was just pass in thru\n\tXaevith: GG\n\n41) wil: A B1 Xaevith\n\n\nHomeworlds Online (SDG# 36888)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.18, Ended: 2020.8.18\nParticipants: Cuc (S), mneme (N)\nWinner: Cuc\n\n1) mneme: Homeworld G1 B2 Y3\n\n2) Cuc: H Y2 G3 B3\n\n3) mneme: Build Y1 Mneme\n\n4) Cuc: Build B1 Cuc\n\n5) mneme: Build Y1 Mneme\n\n6) Cuc: T B1 Y1 Cuc\n\n7) mneme: Discover Y1 Mneme G3 Launch\n\n8) Cuc: B B1 Cuc\n\n9) mneme: Build Y2 Mneme\n\n10) Cuc: Build Y2 Cuc\n\n11) mneme: Sacrifice Y3 Mneme\nDiscover Y1 Launch G1 Launch2\nMove Y1 Launch2 Cuc\nCatastrophe Cuc Y\nMove Y1 Mneme Cuc\n\n\tCuc: Success! We can do midturn catastrophes.\r\n\n\tmneme: Indeed.  as planned.\n\tmneme: Indeed.  as planned.\n\tmneme: Indeed.  as planned.\n\nHomeworlds Online (SDG# 36890)\nStarted: 2020.8.18, Ended: 2020.8.22\nParticipants: TrillP (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld G2 R1 B3\n\n2) TrillP: Homeworld B3 R2 G3\n\n3) Layana: Build B1 Layana\n\n4) TrillP: Build G1 Trillp\n\n5) Layana: Build B1 Layana\n\n6) TrillP: Build G1 Trillp\n\n7) Layana: Trade B1 G1 Layana\n\n8) TrillP: Trade G1 Y1 Trillp\n\n9) Layana: Trade B1 Y1 Layana\n\n10) TrillP: Build G1 Trillp\n\n11) Layana: Build G2 Layana\n\n12) TrillP: Trade G1 R1 Trillp\n\n13) Layana: Discover G2 Layana B3 Vulcan\n\n14) TrillP: Discover Y1 Trillp G1 Betazed\n\n15) Layana: Build G2 Vulcan\n\n16) TrillP: Sacrifice G3 Trillp\nBuild G3 Trillp\nBuild G3 Trillp\nBuild Y1 Betazed\n\n17) Layana: Build G3 Vulcan\n\n18) TrillP: Move Y1 Betazed Trillp\n\n19) Layana: Trade G2 Y2 Vulcan\n\n20) TrillP: Sacrifice G3 Trillp\nBuild Y2 Betazed\nBuild Y2 Betazed\nBuild Y3 Trillp\n\n21) Layana: Move Y2 Vulcan Betazed\nCatastrophe Betazed Y\n\n22) TrillP: Discover G1 Trillp R1 Newbetazed\n\n23) Layana: Trade G2 Y2 Vulcan\n\n24) TrillP: Build R2 Trillp\n\n25) Layana: Build G1 Vulcan\n\n26) TrillP: Build G2 Trillp\n\n27) Layana: Sacrifice G3 Vulcan\nBuild G2 Layana\nBuild G3 Vulcan\nBuild Y1 Vulcan\n\n28) TrillP: Sacrifice Y3 Trillp\nMove R1 Trillp Newbetazed\nMove R2 Trillp Newbetazed\nMove G2 Trillp Newbetazed\n\n29) Layana: Sacrifice G3 Vulcan\nBuild G3 Vulcan\nBuild Y2 Vulcan\nBuild Y2 Layana\n\n30) TrillP:\nBuild G3 Trillp\n\n31) Layana: Trade Y2 R2 Vulcan\n\n32) TrillP: Sacrifice G3 Trillp\nBuild Y2 Trillp\nBuild Y3 Trillp\nBuild G3 Newbetazed\n\n33) Layana: Sacrifice Y2 Layana\nMove Y1 Vulcan Newbetazed\nMove Y1 Newbetazed Trillp\nCatastrophe Trillp Y\n\n34) TrillP: Trade G3 Y3 Trillp\n\n35) Layana: Move R2 Vulcan Newbetazed\nCatastrophe Newbetazed R\n\n36) TrillP: Trade Y3 G3 Trillp\n\n37) Layana: Discover G3 Vulcan B1 Bajor\n\n38) TrillP: Build G1 Trillp\n\n39) Layana: Sacrifice Y1 Layana\nMove G3 Bajor Trillp\n\n40) TrillP: Trade G3 R3 Trillp\n\n41) Layana: Attack R3 Trillp\n\n42) TrillP: Build G2 Trillp\n\n43) Layana: Sacrifice R3 Trillp\nAttack G2 Trillp\nAttack G1 Trillp\nPass\n\n\nHomeworlds Online (SDG# 36412)\nVariants: &quot;Hard time&quot;\nStarted: 2020.8.20, Ended: 2020.9.8\nParticipants: Trydnt (S), coryke (N)\nWinner: Trydnt\n\n1) coryke: H B3 Y1 G3\n\n2) Trydnt: Homeworld B2 R3 G3\n\n3) coryke: Build G1 Coryke\n\n4) Trydnt: Build G1 Trydnt\n\n5) coryke: Trade G1 Y1 Coryke\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) coryke: Build Y2 Coryke\n\n8) Trydnt: Build Y2 Trydnt\n\n9) coryke: Build G1 Coryke\n\n10) Trydnt: Build Y2 Trydnt\n\n11) coryke: Build Y3 Coryke\n\n12) Trydnt: Build G1 Trydnt\nCatastrophe Coryke Y\n\n13) coryke: Trade G1 Y1 Coryke\n\n14) Trydnt: Discover Y2 Trydnt G1 G1\n\tcoryke: oh, i&#39;m rusty. i neglected to protect against catastrophe.\n\n15) coryke: Build G1 Coryke\n\n16) Trydnt: Discover G1 Trydnt Y1 Y1\n\n17) coryke: Build Y2 Coryke\n\n18) Trydnt: Build Y3 G1\n\n19) coryke: Trade Y2 R2 Coryke\n\n20) Trydnt: Trade Y1 R1 Trydnt\n\n21) coryke: Discover R2 Coryke R1 Aleph\n\n22) Trydnt: Move R1 Trydnt G1\n\n23) coryke: Trade G3 R3 Coryke\n\n24) Trydnt: Build G2 Trydnt\n\n25) coryke: Build G2 Coryke\n\n26) Trydnt: Build G2 Y1\n\n27) coryke: Move G1 Coryke Aleph\n\n28) Trydnt: Trade G2 B2 Trydnt\n\n29) coryke: Build G2 Coryke\n\n30) Trydnt: Sacrifice B2 Trydnt\nTrade G1 B1 Y1\nTrade Y2 B2 G1\n\n31) coryke: Discover G2 Coryke R2 Beth\n\n32) Trydnt: Build B1 G1\n\n33) coryke: Build Y1 Coryke\n\n34) Trydnt: Sacrifice Y3 G1\nMove B1 G1 Coryke\nMove B1 Y1 Coryke\nMove B2 G1 Coryke\nCatastrophe Coryke B\n\n\nHomeworlds Online (SDG# 36880)\nVariants: &quot;Hard time&quot;\nStarted: 2020.8.21, Ended: 2020.8.22\nParticipants: eliscinsky (S), Layana (N)\nWinner: eliscinsky\n\n1) Layana: Homeworld B2 R1 G3\n\n2) eliscinsky: Homeworld B1 Y2 G3\n\n3) Layana: Build G1 Layana\n\teliscinsky: Greetings Layana! GL &amp; HF!\r\nHave you played a small universe before? \n\n4) eliscinsky: Build G1 Eliscinsky\n\tLayana: Hi, one, I think. I&#39;m still new, though. \n\n5) Layana: Trade G1 B1 Layana\n\teliscinsky: Oh, did you want this to be a training game?  Do you need help?\n\n6) eliscinsky: Build G1 Eliscinsky\n\n7) Layana: Build B1 Layana\n\n8) eliscinsky: Discover G1 Eliscinsky B3 Betelgeuse\n\n9) Layana: Trade B1 Y1 Layana\n\n10) eliscinsky: Discover G1 Eliscinsky B3 Bellatrix\n\tLayana: It&#39;ll be sufficient if you point out mistakes. I hope I&#39;ll learn that way. \n\n11) Layana: Build Y1 Layana\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Layana: Build G2 Layana\n\n14) eliscinsky: Build G2 Betelgeuse\n\n15) Layana: Trade Y1 R1 Layana\n\n16) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Bellatrix\nBuild G3 Eliscinsky\nBuild G3 Eliscinsky\n\n17) Layana: Move G2 Layana Bellatrix\n\n18) eliscinsky: T G3 Y3 Eliscinsky\n\n19) Layana: Build G3 Layana\n\n20) eliscinsky: S Y3 Eliscinsky\nM G1 Bellatrix Layana\nM G2 Bellatrix Layana\nM G1 Betelgeuse Layana\nC Layana G\n\n\tLayana: Wow, that was a quick one. I&#39;ll need to check where it fell apart :) \n\teliscinsky: Small universes can go fast if you&#39;re not very careful. I should have said something before I moved.  I sometimes forget what levels my opponents are when I&#39;m playing more than 2 games simultaneously. :(  I also saw that you had moved 3 hours earlier, and figured you had time to double check your move. (no undo)\r\n\r\nMainly I think you let me get to much of one economy (green), which allowed me to position myself one strike away, and catastrophe your large.\r\n\r\nDo you know about the SDG archive?  SDG has a mode to show step by step how a game progresses. You can use it anytime on any game, even if the game is not over. For this game the link is ...\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&amp;gid=36880\r\n\r\nTo use it on another game just replace the gid (Game ID) number with the game number you&#39;re interested in. Any game number, not just HW games. \r\n\r\nOne last thing, I see you&#39;re playing Babamots and he&#39;s been teaching you so I guess you already know about his HW guides at ... https://jpeterbaker.github.io/homeworlds/site/index.html (no hyphens)\r\n\r\nHope to see you again for a rematch (anytime). \n\nHomeworlds Online (SDG# 36079)\nStarted: 2020.8.21, Ended: 2020.8.31\nParticipants: pancerola (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tbhorner: I must have had a standing challenge out there, this game started by surprise for me.  :). Good luck, and have fun!\n\n\nHomeworlds Online (SDG# 36907)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.23, Ended: 2020.9.11\nParticipants: eliscinsky (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld Y3 B2 G3\n\n2) eliscinsky: Homeworld B1 R2 G3\n\tLayana: Again, please consider this a training game and comment upon my mistakes.\n\teliscinsky: Hello again! Sure thing - Teaching game.\n\n3) Layana: Build G1 Layana\n\teliscinsky: Let&#39;s have a large universe this time. :)\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Layana: Discover G1 Layana B1 Andoria\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Layana: Build G1 Andoria\n\n8) eliscinsky: Build Y1 Eliscinsky\n\n9) Layana: Trade G1 Y1 Andoria\n\n10) eliscinsky: Build Y2 Eliscinsky\n\n11) Layana: Build Y2 Andoria\n\n12) eliscinsky: D Y2 Eliscinsky R3 Mars\n\n13) Layana: Build G1 Layana\n\n14) eliscinsky: T Y1 B1 Eliscinsky\n\n15) Layana: Build G1 Andoria\n\n16) eliscinsky: Build G2 Eliscinsky\n\n17) Layana: Discover G1 Andoria B3 Orion\n\n18) eliscinsky: T G2 R2 Eliscinsky\n\n19) Layana: Trade Y1 R1 Andoria\n\n20) eliscinsky: Build B2 Eliscinsky\n\n21) Layana: Build G2 Andoria\n\n22) eliscinsky: D B2 Eliscinsky G3 Earth\n\n23) Layana: Sacrifice G3 Layana\nBuild G2 Orion\nBuild G2 Layana\nBuild G3 Layana\n\n24) eliscinsky: Build B2 Earth\n\n25) Layana: Trade G3 B3 Layana\n\n26) eliscinsky: T B2 Y2 Earth\n\n27) Layana: Build G3 Layana\n\n28) eliscinsky: B B2 Earth\n\n29) Layana: Discover G2 Andoria B3 Oz\n\teliscinsky: You&#39;re doing rather well in this game. You&#39;re making me think through a lot of things before I move. And so far I haven&#39;t seen any mistakes on your part. \n\tLayana: Thanks, that is encouraging\n\n30) eliscinsky: D B2 Earth R1 Romulus\n\n31) Layana: Sacrifice G3 Layana\nBuild G3 Andoria\nBuild Y1 Andoria\nBuild R1 Andoria\n\n32) eliscinsky: S G3 Eliscinsky\nB Y1 Mars\nB Y3 Earth\nB Y3 Eliscinsky\n\n33) Layana: Sacrifice G3 Andoria\nBuild G3 Oz\nBuild R2 Andoria\nBuild G3 Oz\n\n34) eliscinsky: Move Y3 Earth Andoria\n\teliscinsky: Interesting move to trade a large green to yellow.  However, since you control most of the green and there was none in the bank, did you consider sacrificing the green and then building 3 pieces on the board? One of which would have included the green that you just sacrificed. You could have built a yellow, a red, and the green.  The result in the bank would still be, a small yellow would be next up (not mush help to me), a middle red (I can&#39;t build it in my HW, too many there), and you get you green back (even though I currently stil cannot use it).\r\n\r\nYou really are in a great place to win this game, and there is a part of me that says don&#39;t write this, but you did ask for help / guidance.  And I never really care if I win or lose. ;)\r\n\r\nI&#39;ll give you 24 hours to reconsider your last move, then I&#39;ll make my move.  Or you can comment here that you&#39;re good with your move. :)\r\n\r\nRemember consider ALL the move possibilities, and then ALL the opponents moves, etc., for as many future rounds as you can.  If you&#39;ve done that then &quot;Okay&quot;.\r\n\n\tLayana: Yes, I guess you&#39;re right. I just thought the r1 and y1 wouldnt be of much help to me, campared to the y3. Also, I figured that a y3 (and a re-build g3 one move later) is worth more than building 2 one-size ships. I havent played the later stages of the game that often, so it is kind of hard to gauge for me which move might be strategically superior. The move you suggest seems more flexible, though, and when in doubt, flexibility is always a good thing. I&#39;ll try it your way. thank you ;)\n\n35) Layana: Move Y2 Andoria Oz\n\n36) eliscinsky: S R2 Eliscinsky\nA R2 Andoria\nA G1 Andoria\n\teliscinsky: Okay I wasn&#39;t trying to talk you out of the yellow economy and it&#39;s not going to help me much until I trade it.\n\n37) Layana: Move G3 Oz Romulus\n\teliscinsky: Okay you&#39;re officially kicking my butt. Why am I helping you? LOL.\n\n38) eliscinsky: Sacrifice R2 Andoria\nAttack R1 Andoria\nAttack R1 Andoria\n\tLayana: Sorry this is taking me so long, I have been ill (still am, actually) and can&#39;t concentrate.\n\teliscinsky: Sorry you&#39;re not feeling well. :(\r\n\r\nTake all the time you need.  Since you messaged (thanks) I won&#39;t force the surrender (if it gets to that). \r\n\r\nJust take care of yourself and I hope you get better soon. \n\tLayana: Kk, I&#39;m back. Please excuse my inactivity. \n\tLayana: So, my last move (leaving myself without a size 3 ship in andoria) seems like a bad choice now... \n\n39) Layana: Attack B2 Romulus\n\teliscinsky: Maybe, we&#39;ll see. \n\n40) eliscinsky: Attack Y1 Andoria\n\n41) Layana: Trade G2 R2 Oz\n\n42) eliscinsky: Sacrifice Y1 Andoria\nDiscover Y2 Mars Y1 Mudd\n\n43) Layana: Trade G2 R2 Layana\n\n44) eliscinsky: Build G2 Andoria\n\n45) Layana: Sacrifice G2 Orion\nBuild R3 Oz\nBuild R3 Layana\n\n46) eliscinsky: Sacrifice Y3 Andoria\nMove R1 Andoria Oz\nMove R1 Andoria Oz\nCatastrophe Oz R\nMove B2 Earth Mudd\n\n47) Layana: Build Y3 Oz\n\n48) eliscinsky: Sacrifice Y3 Eliscinsky\nMove Y1 Mars Mudd\nMove Y1 Mudd Oz\nMove Y2 Mudd Oz\nCatastrophe Oz Y\n\n49) Layana: Trade R2 Y2 Layana\n\n50) eliscinsky: Sacrifice G2 Andoria\nBuild Y1 Eliscinsky\nBuild Y2 Eliscinsky\n\teliscinsky: Very interesting.\n\n51) Layana: Sacrifice Y2 Layana\nMove G3 Oz Eliscinsky\nMove G3 Romulus Earth\n\n52) eliscinsky: T Y2 G2 Eliscinsky\n\n53) Layana: Sacrifice R3 Layana\nAttack G2 Eliscinsky\nAttack B1 Eliscinsky\nAttack Y1 Eliscinsky\n\n\teliscinsky: Well played. I&#39;ll take a rematch anytime. \n\tLayana: Sure thing, at long as it&#39;s unrated. \n\tLayana: I think I have a standing challenge open. It&#39;s 3/1/10 unrated, hard time, if that&#39;s fine. \n\nHomeworlds Online (SDG# 36902)\nVariants: &quot;Unrated&quot;\nStarted: 2020.8.30, Ended: 2020.9.13\nParticipants: Layana (S), TrillP (N)\nWinner: Layana\n\n1) TrillP: Homeworld Y3 B1 G3\n\n2) Layana: Homeworld B2 - G3 *\n\n3) TrillP: Build G1 Trillp\n\n4) Layana: Build G1 Layana\n\n5) TrillP: Build G1 Trillp\n\tTrillP: build g1 TrillP\n\n6) Layana: Build G2 Layana\n\tTrillP: Ahh... falsches K&auml;stchen\n\n7) TrillP: Discover G1 Trillp G2 Deepspace9\n\n8) Layana: Trade G2 Y2 Layana\n\n9) TrillP: Discover G1 Trillp Y2 Mars\n\n10) Layana: Trade G3 R3 Layana\n\n11) TrillP: Build G2 Trillp\n\n12) Layana: Move R3 Layana Trillp\n\n13) TrillP: Trade G3 R3 Trillp\n\n14) Layana: Attack R3 Trillp\n\n\nHomeworlds Online (SDG# 36920)\nVariants: &quot;Hard time&quot;\nStarted: 2020.8.30, Ended: 2020.11.11\nParticipants: Babamots (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) Babamots: Homeworld R2 B1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tBabamots: Good luck!\n\n4) Babamots: Build G1 Babamots\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tBabamots: Do you have any interest in joining another tournament this year?\n\tDraw5PlayAll: Hmmm... I&#39;ll think about it.\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Babamots: Build G1 Babamots\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Babamots: Trade G1 B1 Babamots\n\n11) Draw5PlayAll: Build B2 Draw5playall\n\n12) Babamots: Build B2 Babamots\n\n13) Draw5PlayAll: Discover B2 Draw5playall G3 G3\n\n14) Babamots: Trade B2 Y2 Babamots\n\n15) Draw5PlayAll: Discover B1 Draw5playall G1 G1\n\n16) Babamots: Discover B1 Babamots Y3 Aldea\n\n17) Draw5PlayAll: Build B2 G1\n\n18) Babamots: Build G1 Babamots\n\n19) Draw5PlayAll: Build B3 G3\n\n20) Babamots: Sacrifice G1 Babamots\nBuild B3 Aldea\n\n21) Draw5PlayAll: Trade B2 Y2 G3\n\n22) Babamots: Build G1 Babamots\n\n23) Draw5PlayAll: Sacrifice Y2 G3\nMove B1 G1 Aldea\nMove B2 G1 Aldea\nCatastrophe Aldea Blue\n\n24) Babamots: Build G1 Babamots\n\n25) Draw5PlayAll: Build B1 G3\n\tDraw5PlayAll: Might have been premature, but we&#39;ll see.\n\n26) Babamots: Trade G1 B1 Babamots\n\tBabamots: I set up a Discord server for playing HW. It verifies that people play by the rules and keeps a game clock. It&#39;s almost the same as SDG but you play in real time, almost like sitting across the table. Come and try it if you like (I&#39;ll play almost any time).\r\n\r\nhttps://discord.gg/tZCpPXC\r\n\r\nPeople aren&#39;t using it much yet, but I&#39;m working on changing that!\n\n27) Draw5PlayAll: Trade B3 R3 G3\n\tDraw5PlayAll: I like here better...\n\n28) Babamots: Discover G1 Babamots Y3 Aldea\n\n29) Draw5PlayAll: Build B2 G3\n\n30) Babamots: Build G1 Babamots\n\n31) Draw5PlayAll: Trade B2 Y2 G3\n\n32) Babamots: Build G1 Aldea\n\n33) Draw5PlayAll: Build B2 G3\n\n34) Babamots: Discover B1 Babamots Y3 Iconia\n\n35) Draw5PlayAll: Discover B2 G3 G2 G2\n\n36) Babamots: Sacrifice G3 Babamots\nBuild G2 Aldea\nBuild G2 Babamots\nBuild G3 Babamots\n\n37) Draw5PlayAll: Discover R3 G3 Y2 Y2\n\n38) Babamots: Discover G2 Babamots Y3 Pakled\n\tDraw5PlayAll: Intended.\n\n39) Draw5PlayAll: Move R3 Y2 Aldea\n\tDraw5PlayAll: But then I realized this is better.\n\n40) Babamots: Discover G2 Aldea Y2 Rubicun\n\n41) Draw5PlayAll: Attack G1 Aldea\n\n42) Babamots: Discover Y1 Babamots B3 Bolarus\n\n43) Draw5PlayAll: Attack G1 Aldea\n\n44) Babamots: Trade G1 R1 Babamots\n\n45) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R3 Aldea Rubicun\n\n46) Babamots: Sacrifice G2 Rubicun\nBuild Y1 Bolarus\nBuild Y1 Babamots\n\n47) Draw5PlayAll: Move R3 Rubicun Pakled\n\n48) Babamots: Sacrifice G2 Pakled\nBuild B2 Iconia\nBuild B3 Iconia\n\n49) Draw5PlayAll: Sacrifice Y2 G3\nMove B1 G3 G2\nMove B1 G2 Iconia\nCatastrophe Iconia B\n\n50) Babamots: Build Y2 Babamots\n\tBabamots: Did you see that there&#39;s a new site for playing Homeworlds? Croix made it (medalist #17). It&#39;s way better than the system I set up for playing on my Discord server.\r\n\r\nhttps://homeworlds-live2.glitch.me\r\n\r\nI think getting to use a mouse to make moves is going to make his site more accessible than SDG. I&#39;m hoping it will strengthen and grow the community.\n\n51) Draw5PlayAll: Trade B2 Y2 G2\n\tDraw5PlayAll: Sounds interesting.\n\n52) Babamots: Trade Y1 B1 Babamots\n\n53) Draw5PlayAll: Discover G1 Aldea B2 B2\n\n54) Babamots: Build B1 Babamots\n\n55) Draw5PlayAll: Move R3 Pakled B2\n\n56) Babamots: Discover Y2 Babamots G3 Ferenginar\n\n57) Draw5PlayAll: Trade G1 Y1 B2\n\twil: New system rocks...\n\n58) Babamots: Build Y3 Ferenginar\n\n59) Draw5PlayAll: Build Y3 G2\n\n60) Babamots: Move B1 Babamots Ferenginar\n\n61) Draw5PlayAll: Sacrifice G1 Aldea\nBuild Y3 B2\n\n62) Babamots: Sacrifice G3 Babamots\nBuild B2 Ferenginar\nBuild B3 Ferenginar\nBuild B3 Babamots\n\n63) Draw5PlayAll: Sacrifice Y2 G2\nMove R3 B2 Bolarus\nDiscover Y1 B2 G1 G1\n\n64) Babamots: Trade B2 R2 Ferenginar\n\n65) Draw5PlayAll: Attack Y1 Bolarus\n\n66) Babamots: Discover Y3 Ferenginar G1 Bajor\n\n67) Draw5PlayAll: Build Y2 G1\n\n68) Babamots: Build R1 Ferenginar\n\n69) Draw5PlayAll: Move R3 Bolarus G1\n\tDraw5PlayAll: I typed that as &quot;Belarus&quot; the first time...\n\n70) Babamots: Move B3 Ferenginar Draw5playall\n\tBabamots: That&#39;s funny, I never noticed that they&#39;re just a letter apart.\n\n71) Draw5PlayAll: Attack B3 Draw5playall\n\n72) Babamots: Sacrifice Y3 Bajor\nMove B1 Ferenginar Draw5playall\nMove B1 Babamots Ferenginar\nMove B1 Ferenginar Draw5playall\nCatastrophe Draw5playall B\n\n73) Draw5PlayAll: Sacrifice Y3 B2\nMove Y2 G1 Draw5playall\nMove Y1 G1 Ferenginar\nMove Y1 Bolarus Babamots\n\n74) Babamots: Sacrifice Y2 Ferenginar\nMove R1 Ferenginar Draw5playall\nMove R1 Babamots Bolarus\n\n75) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Babamots\nBuild Y3 Babamots\nBuild Y3 Ferenginar\nCatastrophe Babamots Yellow\n\n76) Babamots: Sacrifice Y1 Bolarus\nMove R2 Ferenginar Babamots\n\n77) Draw5PlayAll: Attack R1 Draw5playall\n\n78) Babamots: Trade B3 G3 Babamots\n\n79) Draw5PlayAll: Move R1 Draw5playall Ferenginar\n\n80) Babamots: Build G1 Babamots\n\tDraw5PlayAll: This situation looks a bit familiar.\n\tBabamots: Cool, that&#39;s a super interesting move! I&#39;ll need to think about this.\n\n81) Draw5PlayAll: Move Y3 G2 Bolarus\n\n82) Babamots: Trade G1 Y1 Babamots\n\tDraw5PlayAll: As the challenger you&#39;re obligated to resign if it becomes a draw...\n\tBabamots: Oh heck, I didn&#39;t quite get that right did I?\n\n83) Draw5PlayAll: Sacrifice R1 Ferenginar\nAttack R1 Bolarus\n\tdlwillson: Great in-game chat and very exciting game!\r\n\r\nI love the new live-play options, Babamots! When&#39;s the live tourney?\n\n84) Babamots: Build Y1 Babamots\n\tDraw5PlayAll: This game might have to be called &quot;Ketchup and Mustard II&quot;\n\n85) Draw5PlayAll: Move Y3 Ferenginar G1\n\tBabamots: I&#39;ve been meaning to organize the tournament, but I always seem to be busy. It&#39;s harder this time since I need to rewrite a bunch of rules/instructions to allow/require real-time play.\n\n86) Babamots: Discover Y1 Babamots G3 Betazed\n\n87) Draw5PlayAll: Build R1 G1\n\n88) Babamots: Build Y2 Babamots\n\n89) Draw5PlayAll: Move R3 G1 Betazed\n\n90) Babamots: Sacrifice Y1 Betazed\nDiscover R2 Babamots Y3 Iconia\n\n91) Draw5PlayAll: Build Y1 Ferenginar\n\n92) Babamots: Build G1 Babamots\n\n93) Draw5PlayAll: Move Y3 Bolarus Draw5playall\n\n94) Babamots: Build G1 Babamots\n\n95) Draw5PlayAll: Build Y2 G1\n\n96) Babamots: Trade G1 R1 Babamots\n\n97) Draw5PlayAll: Build R3 G1\n\n98) Babamots: Sacrifice G1 Babamots\nBuild R3 Iconia\n\n99) Draw5PlayAll: Sacrifice Y3 G1\nMove R1 G1 Iconia\nMove R1 Bolarus G1\nMove R1 G1 Iconia\nCatastrophe Iconia Red\n\n100) Babamots: Discover Y2 Babamots B3 Mintaka\n\n101) Draw5PlayAll: Build Y3 G1\n\tDraw5PlayAll: Are you still interested in Zendo?\n\n102) Babamots: Build G1 Babamots\n\tBabamots: Yes, though I&#39;m spending a lot less time on games lately. I&#39;m trying to get more work done. Do you have a dojo ready?\n\tDraw5PlayAll: Well, I have this Pixel game where two of the three players seem to have disappeared.\n\n103) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R3 Betazed Babamots\nDiscover Y3 G1 B3 B3\nMove Y3 B3 Babamots\n\n\tBabamots: I forgot that I lost my r2 ship a few moves ago. I just had it locked in my head that I was safe from direct assault. I&#39;m much mistaken if I&#39;ve got a way out of this.\n\tBabamots: GG!\n\tDraw5PlayAll: Well now. I guess my B2/R2 homeworld has withstood two consecutive attempts to unseat me from #1 on the ladder...\n\nHomeworlds Online (SDG# 36816)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.4, Ended: 2020.9.24\nParticipants: Layana (S), Takvorian (N)\nWinner: Layana\n\n1) Takvorian: Homeworld B2 R1 G3\n\n2) Layana: Homeworld B2 Y1 G3\n\tTakvorian: Hi, greetings from Berlin, Germany. Have fun! I played my last game 3 years ago and even then I had no clue ;)\n\tLayana: Hi, greetings from Braunschweig, Germany. That practically makes us neighbours :)\n\n3) Takvorian: Build G1 Takvorian\n\tTakvorian: Ist ja ein Ding! Da k&ouml;nnte man ja fast am Tisch spielen ;)\n\n4) Layana: Build G1 Layana\n\tLayana: Also wenn das Spiel im Oktober tats&auml;chlich geliefert wird k&ouml;nnte man sich gerne mal in Berlin treffen, sofern das dann erlaubt ist.\n\n5) Takvorian: Trade G1 B1 Takvorian\n\n6) Layana: Build G1 Layana\n\tTakvorian: Kann man im Auge behalten. Ich habe mehr als genug Pyramiden bei mir rumzuliegen.\n\n7) Takvorian: Build B1 Takvorian\n\n8) Layana: Trade G1 B1 Layana\n\n9) Takvorian: Trade B1 Y1 Takvorian\n\n10) Layana: Trade G1 Y1 Layana\n\tLayana: Ich habe neulich versucht, die zu bekommen, das scheint gar nicht so einfach zu sein. Woher hast du die?\n\tTakvorian: Ich habe vor Jahren die Pyramid Arcade gekauft und auch schon davor hatte ich einige Sets.\n\n11) Takvorian: Build Y2 Takvorian\n\n12) Layana: Build G1 Layana\n\n13) Takvorian: Build Y2 Takvorian\n\n14) Layana: Discover Y1 Layana G3 Fintlewoodlewix\n\n15) Takvorian: Move Y2 Takvorian Fintlewoodlewix\n\n16) Layana: Build Y2 Fintlewoodlewix\n\n17) Takvorian: T Y1 R1 Takvorian\n\n18) Layana: Trade G1 R1 Layana\n\tLayana: I suppose I seriously messed up the opening this time\n\tTakvorian: Naja, so schlimm ist es wohl auch nicht, glaube ich. Und einen endg&uuml;ltigen Plan habe ich auch noch nicht ;)\n\n19) Takvorian: M R1 Takvorian Fintlewoodlewix\n\n20) Layana: Sacrifice R1 Layana\nAttack R1 Fintlewoodlewix\n\n21) Takvorian: D Y2 Fintlewoodlewix R2 Epsal\n\n22) Layana: Build G1 Layana\n\n23) Takvorian: B G1 Takvorian\n\n24) Layana: Build R1 Fintlewoodlewix\n\n25) Takvorian: D Y2 Takvorian B3 Ertrus\n\n26) Layana: Build R2 Fintlewoodlewix\n\n27) Takvorian: T Y2 R2 Ertrus\n\n28) Layana: Move R1 Fintlewoodlewix Takvorian\n\n29) Takvorian: A R1 Takvorian\n\n30) Layana: Sacrifice Y2 Fintlewoodlewix\nMove R1 Fintlewoodlewix Takvorian\nMove R2 Fintlewoodlewix Takvorian\nCatastrophe Takvorian R\n\n31) Takvorian: T G3 R3 Takvorian\n\n32) Layana: Trade G1 R1 Layana\n\n33) Takvorian: M Y2 Epsal Ertrus\n\n34) Layana: Build G1 Layana\n\n35) Takvorian: T B1 Y1 Takvorian\n\n36) Layana: Build Y2 Fintlewoodlewix\n\n37) Takvorian: B Y2 Takvorian\n\n38) Layana: Discover Y1 Fintlewoodlewix G1 Stavromueller\n\n39) Takvorian: D Y1 Takvorian G3 Epsal\n\n40) Layana: Build Y3 Fintlewoodlewix\n\n41) Takvorian: B Y3 Epsal\n\n42) Layana: Build Y3 Stavromueller\n\n43) Takvorian: S Y2 Takvorian\nM Y1 Epsal Stavromueller\nM Y2 Ertrus Stavromueller\nC Stavromueller Y\n\n44) Layana: Move B1 Layana Fintlewoodlewix\n\n45) Takvorian: B G1 Takvorian\n\n46) Layana: Sacrifice G3 Layana\nBuild B1 Fintlewoodlewix\nBuild B1 Fintlewoodlewix\nBuild G2 Layana\n\n47) Takvorian: S Y3 Epsal\nM R3 Takvorian Ertrus\nM R3 Ertrus Layana\nM R2 Ertrus Takvorian\n\n48) Layana: Sacrifice Y3 Fintlewoodlewix\nMove B1 Fintlewoodlewix Takvorian\nMove B1 Fintlewoodlewix Takvorian\nMove B1 Fintlewoodlewix Takvorian\nCatastrophe Takvorian B\n\n\tTakvorian: Danke f&uuml;rs Spiel. Nach meinem katastrophalen Zug mit meinem r1 in dein System war das Spiel wohl gelaufen...\n\tLayana: Ich danke - und ich spiele gerne auch ein Weiteres. Gern auch Realm oder Martian Chess. \n\nHomeworlds Online (SDG# 36871)\nVariants: &quot;Unrated&quot;\nStarted: 2020.9.4, Ended: 2020.12.3\nParticipants: yellowturtle (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) yellowturtle: Homeworld B1 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tyellowturtle: Thanks for playing!  Have fun!\n\tTrydnt: challenge me anytime. happy to have multiple games going simultaneously too if you&#39;re looking to practice a lot\n\n4) yellowturtle: Build G1 Yellowturtle\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) yellowturtle: Trade G1 B1 Yellowturtle\n\n7) Trydnt: Build B2 Trydnt\n\n8) yellowturtle: Build B2 Yellowturtle\n\n9) Trydnt: Trade B2 Y2 Trydnt\n\n10) yellowturtle: Discover B1 Yellowturtle G2 Altair\n\n11) Trydnt: Discover B1 Trydnt G3 G3\n\n12) yellowturtle: Build G1 Yellowturtle\n\n13) Trydnt: Build Y1 Trydnt\n\n14) yellowturtle: Trade G1 Y1 Yellowturtle\n\n15) Trydnt: Trade Y1 R1 Trydnt\n\n16) yellowturtle: Build G1 Yellowturtle\n\n17) Trydnt: Build R1 Trydnt\n\n18) yellowturtle: Trade B2 R2 Yellowturtle\n\n19) Trydnt: Build B2 G3\n\n20) yellowturtle: Move Y1 Yellowturtle Altair\n\n21) Trydnt: Move R1 Trydnt G3\n\n22) yellowturtle: Build B2 Altair\n\n23) Trydnt: Trade B2 Y2 G3\n\n24) yellowturtle: Build G1 Yellowturtle\n\n25) Trydnt: Build G1 Trydnt\n\n26) yellowturtle: Discover G1 Yellowturtle Y2 Betelgeuse\n\n27) Trydnt: Build G2 Trydnt\n\n28) yellowturtle: Build G2 Betelgeuse\n\n29) Trydnt: Discover Y2 Trydnt B3 B3\n\n30) yellowturtle: Trade B2 R2 Altair\n\n31) Trydnt: Build B2 G3\n\n32) yellowturtle: Sacrifice G3 Yellowturtle\nBuild Y1 Altair\nBuild Y3 Altair\nBuild G3 Yellowturtle\n\n33) Trydnt: Move Y2 G3 Altair\nCatastrophe Altair Y\n\n34) yellowturtle: Trade G1 Y1 Yellowturtle\n\n35) Trydnt: Move G1 Trydnt B3\n\n36) yellowturtle: Build G1 Yellowturtle\n\n37) Trydnt: Build Y1 B3\n\n38) yellowturtle: Move Y1 Yellowturtle Altair\n\n39) Trydnt: Discover Y2 B3 R2 R2\n\n40) yellowturtle: Discover B1 Altair Y3 Castor\n\n41) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 B3\nBuild Y3 R2\n\n42) yellowturtle: Sacrifice G3 Yellowturtle\nBuild G3 Yellowturtle\nBuild B2 Castor\nBuild B3 Castor\n\n43) Trydnt: Sacrifice Y2 R2\nMove B1 G3 R2\nMove B1 R2 Castor\nCatastrophe Castor B\n\n44) yellowturtle: Trade G1 B1 Yellowturtle\n\n45) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 R2\nBuild Y3 R2\n\n46) yellowturtle: Move B1 Yellowturtle Altair\n\n47) Trydnt: Move Y3 R2 G3\n\n48) yellowturtle: Build G1 Yellowturtle\n\n49) Trydnt: Build G2 Trydnt\n\n50) yellowturtle: Sacrifice G3 Yellowturtle\nBuild G3 Yellowturtle\nBuild R1 Yellowturtle\nBuild B1 Altair\n\n51) Trydnt: Move Y3 G3 Altair\n\n52) yellowturtle: Discover Y1 Altair R3 Deneb\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Trydnt\nBuild R3 G3\n\n54) yellowturtle: Sacrifice B1 Altair\nTrade G2 B2 Betelgeuse\n\n55) Trydnt: Sacrifice R1 Trydnt\nAttack R2 Altair\n\n56) yellowturtle: Build G2 Betelgeuse\n\n57) Trydnt: Attack B1 Altair\n\n58) yellowturtle: Sacrifice G3 Yellowturtle\nBuild G3 Yellowturtle\nBuild B1 Betelgeuse\nBuild B3 Betelgeuse\n\n59) Trydnt: Sacrifice Y1 B3\nMove B2 G3 Betelgeuse\nCatastrophe Betelgeuse B\n\n60) yellowturtle: Trade R1 Y1 Yellowturtle\n\n61) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B1 Altair\nBuild B2 Altair\n\n62) yellowturtle: Build R1 Yellowturtle\n\n63) Trydnt: Sacrifice Y3 R2\nMove Y2 B3 R2\nMove Y2 R2 Yellowturtle\nMove Y2 R2 Yellowturtle\nCatastrophe Yellowturtle Y\n\n64) yellowturtle: Move Y1 Deneb Trydnt\n\n65) Trydnt: Sacrifice Y3 Altair\nMove B1 Altair Yellowturtle\nMove B1 Altair Yellowturtle\nMove B2 Altair Yellowturtle\nCatastrophe Yellowturtle B\n\n\nHomeworlds Online (SDG# 36887)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.5, Ended: 2020.10.5\nParticipants: wil (S), Takvorian (N)\nWinner: wil\n\n1) Takvorian: Homeworld B2 R3 G3\n\n2) wil: H Y2 B1 G3\n\tTakvorian: Hi wil,\r\nGreetings from Berlin, Germany. Perhaps you remember, we played teaching games more than 3 years ago.\r\nThen I got no grip on the game and quitted playing it. But I still find hw a fascinating game and would like to be able to play it on a decent (say average) level.\r\nSo, if it&#146;s okay for you let&#146;s have another teaching game.\n\n3) Takvorian: Build G1 Takvorian\n\twil: No worries, would love to, thx for the game.\n\twil: We are all still learning... The way I see it...\r\nYa lose to an attack\r\nYa try the attack on others\r\nThey use various methods to counter the attack\r\nYou use those counters when someone tries against you again.\r\n\r\nJohn Cooper and trydnt play bizarre outta the box moves.\r\nAndy Looney let&#39;s a steady pace of growth and capture eventual)y overwhelm.\r\nI like cornering economies..\r\nWe all play so do#ferent yet competitive.\r\n\r\n\n\n4) wil: B G1 Wil\n\tTakvorian: Thanks for playing! Have fun.\n\twil: We are all still learning... The way I see it...\r\nYa lose to an attack\r\nYa try the attack on others\r\nThey use various methods to counter the attack\r\nYou use those counters when someone tries against you again.\r\n\r\nJohn Cooper and trydnt play bizarre outta the box moves.\r\nAndy Looney let&#39;s a steady pace of growth and capture eventual)y overwhelm.\r\nI like cornering economies..\r\nWe all play so do#ferent yet competitive.\r\n\r\n\n\n5) Takvorian: Trade G1 Y1 Takvorian\n\twil: You seen babamots discord page? He is working on live games where we can talk and move electronic pieces with same game codes as these on dag...\n\n6) wil: T G1 B1 Wil\n\tTakvorian: No I don&#146;t know about it. Do you have a link?\n\tTakvorian: By the way, are you the Wil I saw on one of Andy&#39;s youtube videos demonstrating the game with gigantic pyramids?\n\n7) Takvorian: Build Y1 Takvorian\n\twil: Lol, yup\n\twil: Homeworlds group on fb\n\tTakvorian: Fascinating. So you know Andy and John Cooper in person. Do you play them from time to time over the gable?\n\n8) wil: B B1 Wil\n\twil: Before times all the time.  Now we zoom game nights.\n\n9) Takvorian: Build Y1 Takvorian\n\twil: I suggest we start another game but play this one out to see how it goes.\n\twil: I suggest we start another game but play this one out to see how it goes.\n\twil: So firat thing I do is try to create a monopoly..in this case you picked a two blue, so I picked a one. Leaving me only 4 ships to get to the 3$.  And allowing me most of the time to freeze an economy...put my opponent in my game.\n\twil: I&#39;d also recommend you get on the ladder now and start climbing\n\n10) wil: D B1 Wil Y3 Y3\n\tTakvorian: Ok, I will start a second game.\n\tTakvorian: I registered in the ladder already. The problem is that I enter the ladder on last place and can only challenge up to 5 places above me. I checked these players and all weren&#146;t active for several months. So a challenge is meaningless and there is no way for me to get a ladder game...\n\tDraw5PlayAll: Sorry for jumping in, but...\r\n\r\nIf you challenge someone and nothing happens for 7 days, it is considered declined.\r\nIf a player refuses 4 challenges in a row they are dropped to the end. So you *can* shake them down, albeit slowly.\n\tTakvorian: @Draw5: thanks for the hint, I did that with the player 5 places above me. He wasn&#146;t online for more than 600 days and can still decline 2 challenges without dropping. And if he finally drops down the player above him was not here for 233 days...\r\nSo if I finally get a ladder game it will be in the very far future ;)\r\nI wish that inactive players would be taken out of the ladder automatically...\n\twil: Tis why I say start climbing...it is a long slug to work your way thru the dead wood...but worth it.\n\n11) Takvorian: B G1 Takvorian\n\n12) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n13) Takvorian: T G3 B3 Takvorian\n\n14) wil: D B2 Y3 Y2 Y2\n\n15) Takvorian: B B3 Takvorian\n\n16) wil: T B2 Y2 Y3\n\n17) Takvorian: Discover B3 Takvorian G1 Ertrus\n\twil: Catastrophe ya wanna take that back\n\twil: Should I blow up half your home world?\n\tTakvorian: Just for my understanding...\r\nHow would that work out? You must be coming from a small star to enter my homeworld, and you have no yellow ships to sac.\r\nProbably I don&#146;t recognize some trick here...\n\tTakvorian: By the way, just after sending my question below, the take back button disappeared...\r\nIs this always the case, when responding to a chat?\n\twil: Lol...got me, I went to the wrong star\n\twil: And no it should be there....this site has been running on its own and bugs happen\n\twil: This is why you play games out waiting on dumb moves\n\n18) wil: T B3 G3 Wil\n\n19) Takvorian: M Y1 Takvorian Ertrus\n\n20) wil: D Y2 Y3 G1 G1\n\n21) Takvorian: B Y3 Ertrus\n\n22) wil: B Y3 G1\n\n23) Takvorian: T Y1 R1 Takvorian\n\n24) wil: B G2 Wil\n\n25) Takvorian: B R1 Takvorian\n\n26) wil: T B1 R1 Wil\n\n27) Takvorian: M R1 Takvorian Ertrus\n\n28) wil: B R2 Wil\n\n29) Takvorian: B R2 Ertrus\n\n30) wil: M R1 Wil Y3\n\n31) Takvorian: M Y3 Ertrus Y3\n\n32) wil: T B1 Y1 Y3\n\n33) Takvorian: D Y3 Y3 B1 Epsal\n\n34) wil: B R2 Wil\n\n35) Takvorian: M R2 Ertrus Y3\n\n36) wil: Sacrifice G2 Wil\nBuild R3 Y3\nBuild R3 Wil\n\n37) Takvorian: M R2 Y3 Wil\nC Wil R\n\n38) wil: M R1 Y3 G1\n\n39) Takvorian: M R1 Takvorian Epsal\n\n40) wil: B G2 Wil\n\n\nHomeworlds Online (SDG# 36936)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.6, Ended: 2020.10.6\nParticipants: wil (S), Takvorian (N)\nWinner: wil\n\n1) Takvorian: Homeworld R1 B2 G3\n\n2) wil: H Y2 B1 G3\n\n3) Takvorian: B G1 Takvorian\n\n4) wil: B G1 Wil\n\n5) Takvorian: T G1 B1 Takvorian\n\n6) wil: T G1 B1 Wil\n\n7) Takvorian: B B2 Takvorian\n\twil: Poifect forcing me out of my comfort zone.\n\n8) wil: B B2 Wil\n\tTakvorian: Ha, I wish I had something like a comfort zone ;)\n\n9) Takvorian: B G1 Takvorian\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Takvorian: T B1 Y1 Takvorian\n\n12) wil: B G1 Wil\n\n13) Takvorian: M B2 Takvorian Y3\n\n14) wil: T G1 R1 Wil\n\n15) Takvorian: T G1 R1 Takvorian\n\n16) wil: B R2 Wil\n\n17) Takvorian: B R2 Takvorian\n\n18) wil: M G3 Wil Y3\n\n19) Takvorian: D B2 Y3 G2 Epsal\n\n20) wil: M R1 Wil Y3\n\n21) Takvorian: D R2 Takvorian Y3 Ertrus\n\n22) wil: B G1 Y3\n\n23) Takvorian: D R1 Takvorian G3 Halut\n\n24) wil: D B2 Wil Y3 Why3\n\n25) Takvorian: B G1 Takvorian\n\n26) wil: T G1 Y1 Y3\n\n27) Takvorian: T B2 Y2 Epsal\n\n28) wil: Move G3 Y3 Wil\n\n29) Takvorian: T G1 B1 Takvorian\n\n30) wil: Move R2 Wil Halut\n\n31) Takvorian: B Y1 Epsal\n\n32) wil: A R1 Halut\n\n33) Takvorian: B Y2 Takvorian\n\n34) wil: B G1 Wil\n\n\nHomeworlds Online (SDG# 36937)\nVariants: &quot;Unrated&quot;\nStarted: 2020.9.9, Ended: 2020.11.9\nParticipants: Animiral (S), wil (N)\nWinner: Animiral\n\n1) wil: H Y2 B1 G3\n\n2) Animiral: Homeworld G3 B2 Y3\n\n3) wil: B G1 Wil\n\tAnimiral: Hello! This is one of my two first games on this site, I hope I can put up some resistance ;-)\r\nEnjoy!\n\twil: Do you play homeworlds?  Do you pyramid arcade? Understand the game?\n\n4) Animiral: Build Y1 Animiral\n\tAnimiral: I&#39;ve played it once with a friend and a few times with my gf, so I know the rules.\r\nTo say that I understand the game is maybe a stretch...\n\n5) wil: T G1 B1 Wil\n\twil: Ok cool\n\n6) Animiral: Trade Y1 B1 Animiral\n\n7) wil: B B2 Wil\n\n8) Animiral: Build B2 Animiral\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Animiral: Discover B1 Animiral Y1 Spongebob\n\tAnimiral: I feel like I&#39;m in a bind already...\n\twil: I could go easier on ya...but do you want me to?  I feel you learn by seeing others offensive moves..then you try them out...and then you learn by people defending against it.  But you are correct...I have started my domination of blue...I can back off, but then you won&#39;t see the reason to avoid the position.\n\n11) wil: B B3 Wil\n\tAnimiral: No need to go easy :)\r\n\r\nI didn&#39;t like this move when I first thought of it, but now I think I&#39;m fine.\n\n12) Animiral: Build B3 Animiral\n\n13) wil: Trade B3 Y3 Wil\n\tAnimiral: It now occurs to me that it&#39;s because you can build one more large ship.\n\n14) Animiral: Trade B3 R3 Animiral\n\n15) wil: Trade B2 R2 Wil\n\n16) Animiral: Build Y1 Animiral\n\n17) wil: D Y3 Wil G3 G3\n\n18) Animiral: Discover B2 Animiral G1 Midworld\n\n19) wil: B G1 Wil\n\tAnimiral: So sorry for the delay!\r\nDue to some stressful work days, I have stopped paying attention to the clock on here :-(\n\twil: No worries\n\n20) Animiral: Build B2 Midworld\n\n21) wil: Move G1 Wil Y3\n\n22) Animiral: Trade B2 Y2 Midworld\n\n23) wil: B G1 Wil\n\n24) Animiral: Build B2 Midworld\n\n25) wil: B B3 Y3\n\n26) Animiral: Move B2 Midworld Y3\n\twil: Oh look honey, the big blue ones just came available in the store so I brought one home.\n\n27) wil: S B1 Y3\nT B3 R3 Y3\n\tAnimiral: Fortunately for me, they&#39;re far from sold out :)\n\n28) Animiral: Discover B2 Y3 Y1 Noredsallowed\n\twil: Oh, I thought.they were.special.  in that case I&#39;ll just put these two back\n\n29) wil: B G2 Y3\n\n30) Animiral: Build Y2 Midworld\n\n31) wil: M R3 Y3 Midworld\n\n32) Animiral: Sacrifice Y2 Midworld\nDiscover Y2 Midworld G2 Evcuatonstation\nMove B2 Midworld Evcuatonstation\n\n33) wil: S G3 Wil\nB G2 Y3\nB Y2 G3\nB G3 Wil\n\n34) Animiral: Build R1 Animiral\n\n35) wil: T G1 B1 Wil\n\n36) Animiral: Build B3 Evcuatonstation\n\n37) wil: M B1 Wil G3\n\tAnimiral: Somehow my position doesn&#39;t seem so bad now :-)\r\nIt must mean that you did go easy on me!\r\n\r\nTrydnt in my other game nuked me to bits in no time though.\n\tAnimiral: I also thought about moving my r3 to NoRedsAllowed, but it felt like cheating.\n\twil: Lol trydnt is my protege that has surpassed the teacher!\n\n38) Animiral: Trade B1 G1 Spongebob\n\n39) wil: S Y3 G3\nM G2 Y3 Evcuatonstation\nM G2 Y3 Evcuatonstation\nM G1 Y3 Evcuatonstation\nC Evcuatonstation G\n\n40) Animiral: Discover Y3 Animiral R1 Barad-dur\n\twil: Let&#39;s clear the board\r\n\n\tAnimiral: Oh no D:\r\nTime to start over\n\n41) wil: B B1 G3\n\n42) Animiral: Build G1 Spongebob\n\n43) wil: B R1 Midworld\n\n44) Animiral: Move R1 Animiral Spongebob\n\n45) wil: M B1 G3 Midworld\n\n46) Animiral: Build G2 Spongebob\n\n47) wil: B G2 Wil\n\tAnimiral: Sorry, I went over time again...\r\n\r\nMaybe I&#39;m too slow for the slowest version of this game ^^\n\twil: Lol. No worries\n\n48) Animiral: Sacrifice G2 Spongebob\nBuild Y2 Animiral\nBuild Y3 Barad-dur\n\n49) wil: B Y3 G3\n\n50) Animiral: Discover G1 Spongebob B3 Godzilla\n\n51) wil: M R2 Wil Godzilla\n\n52) Animiral: Sacrifice Y3 Barad-dur\nMove G1 Godzilla Wil\nMove G1 Spongebob Godzilla\nMove G1 Godzilla Wil\nCatastrophe Wil G\n\tAnimiral: Thanks for the game, it was fun :)\r\n\r\nI&#39;m sure I made a lot of mistakes, but I can&#39;t find a way to go back through the moves here.\r\n\r\nI hope some day they make SDG2...\r\nAs it is, I don&#39;t think I will be playing more.\r\nIt&#39;s too tedious to use and often slow to load.\n\twil: Goto the homeworlds discussion on FB...we have other online options....live games even\n\twil: Goto the homeworlds discussion on FB...we have other online options....live games even\n\n\nHomeworlds Online (SDG# 36935)\nVariants: &quot;Unrated&quot;\nStarted: 2020.9.9, Ended: 2020.10.14\nParticipants: Trydnt (S), Animiral (N)\nWinner: Trydnt\n\n1) Animiral: Homeworld G2 Y1 B3\n\n2) Trydnt: Homeworld R3 B2 G3\n\tAnimiral: Hello, this is my first game on this site.\r\nHave fun :)\n\n3) Animiral: Build B1 Animiral\n\tTrydnt: Welcome! Have fun and good luck :)\n\n4) Trydnt: Build G1 Trydnt\n\n5) Animiral: Trade B1 Y1 Animiral\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Animiral: Build Y2 Animiral\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Animiral: Trade Y1 G1 Animiral\n\n10) Trydnt: Build G1 Trydnt\n\n11) Animiral: Discover G1 Animiral Y3 Tasty\n\n12) Trydnt: Discover G1 Trydnt Y1 Y1\n\n13) Animiral: Build B1 Animiral\n\n14) Trydnt: Discover Y1 Trydnt B1 B1\n\tAnimiral: Bad idea ^^ you get free yellow 3s\r\n\n\n15) Animiral: Discover B1 Animiral G3 Avocado\n\n16) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B1\nBuild Y3 Trydnt\nBuild Y3 B1\n\n17) Animiral: Sacrifice G1 Tasty\nBuild Y3 Animiral\n\n18) Trydnt: Sacrifice Y2 B1\nMove Y1 B1 Avocado\nMove Y1 Avocado Animiral\nCatastrophe Animiral Y\n\tAnimiral: Oh wow, much yellow\n\n19) Animiral: Build B1 Animiral\n\n20) Trydnt: Build G1 Y1\n\n\tAnimiral: I now see that you can just build one more green and then nuke me.\r\n\r\nWell played :)\n\tTrydnt: good game :)\n\nHomeworlds Online (SDG# 36939)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.9, Ended: 2020.9.11\nParticipants: wil (S), eliscinsky (N)\nWinner: wil\n\n1) eliscinsky: H R1 B2 G3\n\n2) wil: H Y3 B1 G3\n\teliscinsky: Hi wil, good luck. Even though I don&#39;t think you&#39;ll need it. ;)\n\n3) eliscinsky: B G1 Eliscinsky\n\twil: I always retain the right to make colossal blunders.\n\n4) wil: B G1 Wil\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) wil: T G1 B1 Wil\n\n7) eliscinsky: Trade Y1 B1 Eliscinsky\n\n8) wil: B B2 Wil\n\teliscinsky: ah, ah, ah ... no freeze out for you. And yet I feel you&#39;re being tricky.\n\n9) eliscinsky: Build B2 Eliscinsky\n\twil:  But I like freezes...\n\n10) wil: D B1 Wil Y2 Y2\n\teliscinsky: I&#39;ll get ya a Rits&#39;a ice, when next we meet. :D\n\teliscinsky: I prefer warmer climates. ;)\n\n11) eliscinsky: Trade B1 Y1 Eliscinsky\n\n12) wil: S G3 Wil\nB B1 Y2\nB B3 Y2\nB B3 Wil\n\n13) eliscinsky: Discover B2 Eliscinsky G3 Kronos\n\twil: I cant help it.\n\teliscinsky: Cold man, cold.\n\n14) wil: T B3 R3 Y2\n\n15) eliscinsky: Build B3 Kronos\n\twil: Cold is almost froze\n\n16) wil: M R3 Y2 Kronos\n\n17) eliscinsky: S Y1 Eliscinsky\nM B3 Kronos Y2\n\n18) wil: Move B2 Wil Y2\nCatastrophe Y2 B\n\n19) eliscinsky: Build G1 Eliscinsky\n\twil: oopsie..got chillier\n\teliscinsky: Oh damn! I wasn&#39;t paying attention. Guess I get to start over.  Which puts you WAAAAY ahead.\n\n20) wil: A B2 Kronos\n\teliscinsky: What a noob mistake. I should just resign. Ah well,  I&#39;ll try harder.\r\n\n\twil: I rely on noon mistakes!\n\n\twil: Start another while we do ish this if youd like\n\teliscinsky: I concede this game. Haha. I&#39;ll join one of your other games. \n\nHomeworlds Online (SDG# 36954)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.11, Ended: 2020.9.16\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) eliscinsky: Homeworld B2 R3 G3\n\teliscinsky: Thanks Wil, &quot;Do overs&quot; are the best. LOL\n\n3) wil: B G1 Wil\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) wil: T G1 Y1 Wil\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) wil: T Y1 B1 Wil\n\n8) eliscinsky: Build Y1 Eliscinsky\n\twil: Do overs are the best...\n\n9) wil: B B1 Wil\n\teliscinsky: THIS IS NOT GROUNDHOG DAY!!!\r\nTHIS IS NOT GROUNDHOG DAY!!!\r\nTHIS IS NOT GROUNDHOG DAY!!!\r\n\r\nMaybe I should have repeated BeetleJuice?\n\n10) eliscinsky: Build Y1 Eliscinsky\n\n11) wil: D B1 Wil Y3 Y3\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) wil: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B2 Y3\nBuild B3 Y3\n\n14) eliscinsky: Discover Y1 Eliscinsky G1 Risa\n\teliscinsky: That is a wild strategy you play. \n\twil: Tactical galactical.domination\n\n15) wil: D B3 Y3 G1 G1\n\n16) eliscinsky: Discover Y1 Eliscinsky R1 Vulcan\n\n17) wil: T B2 G2 Wil\n\n18) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y2 Risa\nBuild Y2 Vulcan\nBuild Y3 Eliscinsky\n\n19) wil: T B3 Y3 G1\n\n20) eliscinsky: Build G2 Eliscinsky\n\twil: There...swe how\r\n\r\n\r\n\n\twil: There...see how much fun that was?\n\teliscinsky: Oh ya..\n\n21) wil: S G2 Wil\nB B2 Wil\nB B3 Y3\n\n22) eliscinsky: S Y2 Vulcan\nM G1 Eliscinsky G1\nM G2 Eliscinsky G1\n\n23) wil: Discover Y3 G1 G3 G3\n\n24) eliscinsky: S G2 G1\nB Y2 Vulcan\nB G2 G1\n\n25) wil: T B2 G2 Y3\n\n26) eliscinsky: T Y3 G3 Eliscinsky\n\n27) wil: Discover B2 Wil Y3 Why3\n\n28) eliscinsky: T Y1 R1 Eliscinsky\n\n29) wil: M B3 Y3 Wil\n\n30) eliscinsky: S Y2 Risa\nM Y1 Vulcan Y3\nM Y1 Risa Why3\n\n31) wil: D B1 Y3 Y1 Y1\n\twil: Nice chasing...like little skeeters I have to keep slapping.\n\n32) eliscinsky: Sacrifice Y2 Vulcan\nMove Y1 Why3 Wil\nMove Y1 Y3 Wil\n\teliscinsky: That&#39;s me ... a pesticle (hybrid word in my household)\n\n33) wil: S G2 Y3\nB B2 Y1\nB B3 Why3\n\n34) eliscinsky: Sacrifice G2 G1\nBuild Y2 Wil\nBuild G1 Eliscinsky\nCatastrophe Wil Y\n\teliscinsky: The skeeters are back.\n\n35) wil: S B2 Y1\nT B3 Y3 Why3\nT B3 G3 Wil\n\twil: I dont enjoy planning or thinking about moves...i just like experimenting and see what happens\n\teliscinsky: hahaha, me too\n\n36) eliscinsky: Trade G1 Y1 Eliscinsky\n\n37) wil: T B2 R2 Why3\n\n38) eliscinsky: Build G1 G1\n\n39) wil: B G2 Wil\n\n40) eliscinsky: Build Y1 Eliscinsky\n\n41) wil: S G2 Wil\nB B2 Wil\nB B2 Y1\n\n42) eliscinsky: Move Y1 Eliscinsky G1\n\n43) wil: T B2 R2 Wil\n\n44) eliscinsky: Move R1 Eliscinsky G1\n\n45) wil: Move R2 Why3 G1\n\n46) eliscinsky: Build Y2 G1\n\n47) wil: A R1 G1\n\twil: Assembling the doomsday machine takes time\n\twil: The guns were acquired long ago but your catastrophe helped\n\teliscinsky: I think your win is inevitable, but lets see where this goes.\n\n48) eliscinsky: B G2 Eliscinsky\n\n49) wil: S Y3 G3\nM Y3 Why3 G1\nM Y3 G1 Eliscinsky\nM G3 Wil Eliscinsky\n\n50) eliscinsky: Build G2 G1\nCatastrophe G1 G\n\n51) wil: B G1 Eliscinsky\nC Eliscinsky G\n\n52) eliscinsky: Trade Y1 G1 Eliscinsky\n\n53) wil: A G1 Eliscinsky\n\twil: Tried something completely diffrent\n\n\teliscinsky: One last move - haha!\n\teliscinsky: You could always:\r\ns y3 eliscinsky\r\nm r2 wil y1\r\nm b2 y1 wil\r\nm b1 y1 wil\r\n;)\n\twil: That is interesting...idk if I ever would have thought of it!\n\twil: Lol....i tried..but dang it y1 is two moves away.\n\twil: Gr8..anytime\n\nHomeworlds Online (SDG# 36933)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.11, Ended: 2020.9.15\nParticipants: Layana (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld B1 Y2 G3\n\n2) Layana: Homeworld R2 B2 G3 *\n\teliscinsky: We meet again. :D On even ground this time, as don&#39;t think you need any help.  Good Luck &amp; Have Fun.\n\tLayana: Thanks, you too. \n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) Layana: Build G1 Layana\n\n5) eliscinsky: Trade G1 B1 Eliscinsky\n\n6) Layana: Trade G1 Y1 Layana\n\n7) eliscinsky: B B1 Eliscinsky\n\n8) Layana: Build G1 Layana\n\n9) eliscinsky: Discover B1 Eliscinsky Y3 Sol\n\n10) Layana: Trade G1 R1 Layana\n\n11) eliscinsky: S G3 Eliscinsky\nB B2 Eliscinsky\nB B2 Sol\nB B3 Sol\n\n12) Layana: Build G1 Layana\n\n13) eliscinsky: Discover B3 Sol G1 Earth\n\tLayana: Wow, just wow. I&#39;ve never seen that happening... \n\n14) Layana: Build Y1 Layana\n\tLayana: I suppose this is over, but let&#39;s see one or two more moves. \n\n15) eliscinsky: Trade B2 G2 Eliscinsky\n\n16) Layana: Move G3 Layana Earth\n\n17) eliscinsky: Sacrifice G2 Eliscinsky\nBuild B2 Earth\nBuild B3 Eliscinsky\n\n18) Layana: Sacrifice R1 Layana\nAttack B3 Earth\n\n19) eliscinsky: Trade B2 G2 Earth\n\n20) Layana: Build B2 Earth\n\n21) eliscinsky: Build G1 Earth\nCatastrophe Earth G\n\n\teliscinsky: I thought your choice of 2 medium stars as HW interesting. It does open you up to attack from 2 star types (large &amp; small), just like you&#39;d already had a star catastrophed. It&#39;s very hard to play.\r\n\r\nMy approach was a freeze out [of an economy]. Using the blue / trade economy allows you to trade for whatever size of another economy you want. Kind of leapfrogging to the middle or larges, and bypassing the smalls. It can also be done with the other economies, but I think it works best w/ the trade economy.\r\n\r\nI&#39;m always up for rematches.\n\tLayana: Thanks for the game, and well played. Homeworlds is amazing - so much to discover. And so unforgiving. If you don&#39;t mind just use my standing challenge? \n\nHomeworlds Online (SDG# 36964)\nVariants: &quot;Hard time&quot;\nStarted: 2020.9.13, Ended: 2020.10.14\nParticipants: Simon (S), dlwillson (N)\nWinner: Simon\n\n1) dlwillson: Homeworld Y1 B3 G3\n\tSimon: Have fun :)\n\n2) Simon: Homeworld B2 R1 G3 Simon\n\tdlwillson: You too! Thanks for accepting the challenge!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Simon: Build G1 Simon\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) Simon: Trade G1 R1 Simon\n\n7) dlwillson: B R2 Dlwillson\n\n8) Simon: Build R2 Simon\n\n9) dlwillson: Build R2 Dlwillson\n\n10) Simon: Trade R2 Y2 Simon\n\n11) dlwillson: D R1 Dlwillson B2 Sea\n\n12) Simon: Discover R1 Simon G3 G3\n\n13) dlwillson: D R2 Dlwillson Y2 Sol\n\n14) Simon: Build Y1 Simon\n\n15) dlwillson: Move R2 Sol G3\n\n16) Simon: Sacrifice Y1 Simon\nDiscover R1 G3 G1 G1\n\n17) dlwillson: B G1 Dlwillson\n\n18) Simon: Build Y1 Simon\n\n19) dlwillson: T G1 Y1 Dlwillson\n\n20) Simon: Discover Y1 Simon B3 B3\n\n21) dlwillson: M Y1 Dlwillson Sea\n\n22) Simon: Build Y2 Simon\n\n23) dlwillson: Build G1 Dlwillson\n\n24) Simon: Discover Y2 Simon B3 B3a\n\n25) dlwillson: M G1 Dlwillson Sea\n\n26) Simon: Sacrifice G3 Simon\nBuild Y2 B3\nBuild Y3 B3a\nBuild Y3 Simon\n\n27) dlwillson: B Y3 Sea\n\n28) Simon: Trade Y3 G3 B3a\n\n29) dlwillson: Discover Y1 Sea Y3 Sol\n\n30) Simon: Build G1 B3a\n\n31) dlwillson: Discover G1 Sea R3 Mars\n\n32) Simon: Trade G3 R3 B3a\n\n33) dlwillson: B G2 Dlwillson\n\n34) Simon: Build R2 B3a\n\n35) dlwillson: Build R3 G3\n\n36) Simon: Move Y2 Simon Mars\n\n37) dlwillson: M Y3 Sea Mars\n\n38) Simon: Move Y2 Mars Sea\n\n39) dlwillson: S Y1 Sol\nM R3 G3 Sea\n\n40) Simon: Sacrifice Y2 B3\nMove R1 G1 Sea\nMove R2 B3a Sea\nCatastrophe Sea Red\n\n41) dlwillson: M G2 Dlwillson Sea\n\n42) Simon: Build R1 B3a\n\n43) dlwillson: Sacrifice G2 Sea\nBuild R1 Dlwillson\nBuild R2 G3\n\n44) Simon: Move R1 B3a Sea\n\n45) dlwillson: Trade R1 B1 Dlwillson\n\n46) Simon: Build R1 B3a\n\n47) dlwillson: B R3 Dlwillson\n\n48) Simon: Trade R3 G3 B3a\n\n49) dlwillson: M R3 Dlwillson Sea\n\n50) Simon: Build R3 B3a\n\n51) dlwillson: Attack Y2 Sea\n\n52) Simon: Sacrifice G3 B3a\nBuild Y1 B3a\nBuild Y2 Simon\nBuild Y3 B3\n\n53) dlwillson: Attack R1 Sea\n\n54) Simon: Build G1 B3a\n\n55) dlwillson: Trade R1 B1 Sea\n\n56) Simon: Discover Y3 B3 B2 B2\n\n57) dlwillson: B B1 Dlwillson\n\n58) Simon: Move R1 B3a B2\n\n59) dlwillson: Sacrifice Y3 Mars\nMove R2 G3 Simon\nMove R2 G3 Simon\nDiscover R3 Sea Y3 Sol\n\n60) Simon: Move R3 B3a Sea\n\n61) dlwillson: Sacrifice Y2 Sea\nMove B1 Sea Sol\nDiscover B1 Dlwillson Y2 Chara\n\n62) Simon: Move G1 B3a B2\n\tdlwillson: Hm. I hope I had a plan for this possibility.\n\n63) dlwillson: Sacrifice G1 Mars\nBuild R1 Simon\nCatastrophe Simon R\n\tSimon: The only worthwhile counter. It&#39;s still possible that the yellow monopolization has yielded too much initiative; I felt the position was even before my tr r3 g3.\n\n64) Simon: Build R1 B2\n\n65) dlwillson: B G1 Dlwillson\n\n66) Simon: Build G2 B2\n\n67) dlwillson: S G1 Dlwillson\nB R1 Sol\n\n68) Simon: Build G1 B2\n\n69) dlwillson: T R3 G3 Sol\n\n70) Simon: Move G1 B2 Dlwillson\n\n71) dlwillson: Sacrifice G3 Sol\nBuild R2 Sol\nBuild R2 Sol\nBuild R3 Dlwillson\n\n72) Simon: Sacrifice G2 B2\nBuild R3 Sea\nBuild G2 B2\n\n73) dlwillson: S R1 Sol\nA G1 Dlwillson\n\n74) Simon: Sacrifice Y3 Simon\nMove G1 B2 Dlwillson\nMove G2 B2 Dlwillson\nMove R3 Sea Dlwillson\nCatastrophe Dlwillson G\n\n\tdlwillson: Good game! Looks like your yellow play paid off in the end!\n\tSimon: GG, thanks! Swingy game.\n\nHomeworlds Online (SDG# 36958)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.13, Ended: 2020.9.13\nParticipants: TrillP (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld B2 - G3 *\n\n2) TrillP: Homeworld B2 R1 G3\n\n3) Layana: Build G1 Layana\n\n4) TrillP: Build G1 Trillp\n\n5) Layana: Trade G1 Y1 Layana\n\n6) TrillP: Trade G1 Y1 Trillp\n\n7) Layana: Build G1 Layana\n\n8) TrillP: Build G1 Trillp\n\n9) Layana: Discover G1 Layana B3 Andoria\n\n10) TrillP: Trade G1 R1 Trillp\n\n11) Layana: Build G1 Layana\n\n12) TrillP: Move R1 Trillp Andoria\n\n13) Layana: Sacrifice G1 Andoria\nBuild G1 Layana\n\n14) TrillP: Trade Y1 R1 Trillp\n\n15) Layana: Build Y1 Layana\n\n16) TrillP: Build G1 Trillp\n\n17) Layana: Discover G1 Layana B1 Betazed\n\n18) TrillP: Trade G1 Y1 Trillp\n\n19) Layana: Build Y2 Layana\n\n20) TrillP: Trade R1 G1 Andoria\n\n21) Layana: Trade Y1 R1 Layana\n\n22) TrillP: Build G2 Trillp\n\n23) Layana: Build G2 Betazed\n\n24) TrillP: Sacrifice G3 Trillp\nBuild G2 Andoria\nBuild G3 Trillp\nBuild Y1 Trillp\n\n25) Layana: Build Y2 Layana\n\n26) TrillP: Trade G2 Y2 Andoria\n\n27) Layana: Sacrifice Y1 Layana\nMove Y2 Layana Betazed\n\n28) TrillP: Sacrifice Y2 Andoria\nMove Y1 Trillp Andoria\nMove G3 Trillp Andoria\n\n29) Layana: Sacrifice Y2 Betazed\nMove G1 Betazed Andoria\nMove G1 Layana Andoria\nCatastrophe Andoria Green\n\n30) TrillP: Build G1 Trillp\n\n31) Layana: Build R2 Layana\n\n32) TrillP: Trade G2 B2 Trillp\n\n33) Layana: Sacrifice Y2 Layana\nMove G3 Layana Andoria\nMove G3 Andoria Trillp\n\n34) TrillP: Build R2 Trillp\n\n35) Layana: Sacrifice R2 Layana\nAttack R2 Trillp\nAttack B2 Trillp\n\n36) TrillP: Build R2 Trillp\nCatastrophe Trillp Red\n\n37) Layana: Sacrifice G2 Betazed\nBuild B1 Trillp\nBuild B1 Trillp\nCatastrophe Trillp B\n\n\nHomeworlds Online (SDG# 36959)\nVariants: &quot;Hard time&quot;\nStarted: 2020.9.13, Ended: 2020.10.17\nParticipants: Jerome (S), Takvorian (N)\nWinner: Jerome\n\n1) Takvorian: H R1 B2 G3\n\n2) Jerome: Homeworld R3 B1 G3\n\tTakvorian: Have fun!\n\tJerome: Hi! Have a nice game!\n\n3) Takvorian: B G1 Takvorian\n\tTakvorian: As you answered so quickly, I suppose you are from Europe. I am from Berlin, what&#146;s your location?\n\n4) Jerome: Build G1 Jerome\n\n5) Takvorian: T G1 B1 Takvorian\n\tJerome: Yes! I live in London.\n\n6) Jerome: Build G1 Jerome\n\tTakvorian: Ah, my eldest son is working in London.\n\n7) Takvorian: B B1 Takvorian\n\n8) Jerome: Trade G1 Y1 Jerome\n\n9) Takvorian: B G1 Takvorian\n\n10) Jerome: Discover G1 Jerome B2 Sirius\n\n11) Takvorian: T G1 Y1 Takvorian\n\n12) Jerome: Build G1 Sirius\n\n13) Takvorian: D B1 Takvorian Y3 Ertrus\n\n14) Jerome: Trade G1 R1 Sirius\n\n15) Takvorian: B B2 Takvorian\n\n16) Jerome: Build R1 Sirius\n\n17) Takvorian: T B2 R2 Takvorian\n\n18) Jerome: Build R2 Sirius\n\n19) Takvorian: M R2 Takvorian Ertrus\n\n20) Jerome: Build G1 Sirius\n\n21) Takvorian: M R2 Ertrus Sirius\nC Sirius R\n\n22) Jerome: Trade G1 R1 Sirius\n\n23) Takvorian: B B2 Takvorian\n\n24) Jerome: Build R1 Sirius\n\n25) Takvorian: T B2 R2 Takvorian\n\n26) Jerome: Build R2 Sirius\n\n27) Takvorian: M R2 Takvorian Ertrus\n\n28) Jerome: Trade R1 Y1 Sirius\n\n29) Takvorian: B Y2 Takvorian\n\n30) Jerome: Build Y2 Sirius\n\n31) Takvorian: T B1 G1 Ertrus\n\n32) Jerome: Trade R1 B1 Sirius\n\n\nHomeworlds Online (SDG# 36967)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.9.14, Ended: 2020.10.11\nParticipants: yellowturtle (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld R2 B1 G3\n\n2) yellowturtle: Homeworld B3 R1 G3\n\n3) Layana: Build G1 Layana\n\n4) yellowturtle: Build G1 Yellowturtle\n\n5) Layana: Trade G1 Y1 Layana\n\n6) yellowturtle: Trade G1 Y1 Yellowturtle\n\n7) Layana: Build G1 Layana\n\n8) yellowturtle: Build G1 Yellowturtle\n\n9) Layana: Trade G1 B1 Layana\n\n10) yellowturtle: Trade G1 B1 Yellowturtle\n\n11) Layana: Build B2 Layana\n\n12) yellowturtle: Build B2 Yellowturtle\n\n13) Layana: Discover B2 Layana G3 Paris\n\n14) yellowturtle: Discover B1 Yellowturtle Y2 Altair\n\n15) Layana: Discover B1 Layana Y3 Rome\n\n16) yellowturtle: Build G1 Yellowturtle\n\n17) Layana: Build G1 Layana\n\n18) yellowturtle: Trade G1 R1 Yellowturtle\n\n19) Layana: Trade G1 R1 Layana\n\n20) yellowturtle: Build R2 Yellowturtle\n\n21) Layana: Build R2 Layana\n\n22) yellowturtle: Move R2 Yellowturtle Altair\n\n23) Layana: Move R2 Layana Paris\n\n24) yellowturtle: Build R3 Yellowturtle\n\n25) Layana: Sacrifice G3 Layana\nBuild R3 Layana\nBuild R3 Paris\nBuild B2 Rome\n\n26) yellowturtle: Move R3 Yellowturtle Altair\n\n27) Layana: Build B3 Paris\n\n28) yellowturtle: Build B3 Yellowturtle\n\n29) Layana: Trade R2 Y2 Paris\n\n30) yellowturtle: Discover B3 Yellowturtle R2 Betelgeuse\n\n31) Layana: Discover B2 Rome Y2 Madrid\n\n32) yellowturtle: Discover R2 Altair Y3 Castor\n\n33) Layana: Trade R3 Y3 Layana\n\n34) yellowturtle: Build Y1 Yellowturtle\n\n35) Layana: Build R3 Paris\n\n36) yellowturtle: Build G1 Yellowturtle\n\n37) Layana: Move R3 Paris Madrid\n\n38) yellowturtle: Build G1 Yellowturtle\n\n39) Layana: Discover B3 Paris G2 London\n\n40) yellowturtle: Move R3 Altair Rome\n\n41) Layana: Sacrifice Y2 Paris\nMove B3 London Yellowturtle\nMove B2 Madrid Yellowturtle\nCatastrophe Yellowturtle B\n\n42) yellowturtle: Move R1 Yellowturtle Rome\n\n43) Layana: Move R1 Layana Paris\n\n44) yellowturtle: Attack B1 Rome\n\tyellowturtle: oops\n\n45) Layana: Sacrifice Y3 Layana\nMove R3 Madrid Yellowturtle\nMove R3 Paris Yellowturtle\nMove R1 Paris Yellowturtle\nCatastrophe Yellowturtle R\n\n\tyellowturtle: Thanks for playing~!\n\tLayana: Thank you - I&#39;d be happy to play a rematch. \n\nHomeworlds Online (SDG# 37011)\nVariants: &quot;Hard time&quot;\nStarted: 2020.9.29, Ended: 2020.10.24\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: H G2 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B Y1 Wil\n\n5) Trydnt: Build G1 Trydnt\n\n6) wil: D Y1 Wil G3 G3\n\n7) Trydnt: Discover G1 Trydnt B3 B3\n\n8) wil: B Y2 Wil\n\n9) Trydnt: Build G1 Trydnt\n\n10) wil: M Y2 Wil B3\n\n11) Trydnt: Discover G1 Trydnt Y3 Y3\n\n12) wil: T Y2 R2 B3\n\n13) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y3\nBuild G2 Y3\nBuild G3 B3\n\n14) wil: A G1 B3\n\n15) Trydnt: Build G3 Trydnt\n\n16) wil: B Y2 Wil\n\n17) Trydnt: Trade G1 R1 Trydnt\n\n18) wil: B R1 B3\n\n19) Trydnt: Sacrifice R1 Trydnt\nAttack R2 B3\n\n20) wil: B R1 B3\n\n21) Trydnt: Sacrifice R2 B3\nAttack R1 B3\nAttack R1 B3\n\n22) wil: B Y2 G3\n\twil: Game ovah\n\n23) Trydnt: Sacrifice G2 Y3\nBuild G1 Trydnt\nBuild R1 B3\n\n24) wil: S Y2 Wil\nM G1 B3 Wil\nD G1 Wil Y3 Why3\n\n25) Trydnt: Build G2 B3\n\n26) wil: D Y2 G3 B2 B2\n\n27) Trydnt: Trade G2 Y2 B3\n\n\nHomeworlds Online (SDG# 36950)\nVariants: &quot;Unrated&quot;\nStarted: 2020.9.29, Ended: 2020.10.5\nParticipants: akuden (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) akuden: Homeworld B3 G1 Y3\n\twil: Binary homeworlds...much better than multiple player...welcome\n\twil: Any wuestions dont hesitate to ask\n\takuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!\n\takuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!\n\takuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!\n\takuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!\n\n3) wil: Build G1 Wil\n\twil: Yeah, I checked your games.. this is an awesome gamve but takes a learning curve.\n\n4) akuden: Build Y1 Akuden\n\n5) wil: B G1 Wil\n\n6) akuden: Trade Y3 G3 Akuden\n\n7) wil: T G1 B1 Wil\n\n8) akuden: Build Y1 Akuden\n\n9) wil: B B1 Wil\n\takuden: I&#146;m sorry. I didn&#146;t mean to send so many repeat messages. Last time I played it didn&#146;t really click for me until it got down to 2 players. Then I got excited about it and started seeing the different possibilities and tactics. Such a packed game with so few components and rules.\n\takuden: I&#146;m sorry. I didn&#146;t mean to send so many repeat messages. Last time I played it didn&#146;t really click for me until it got down to 2 players. Then I got excited about it and started seeing the different possibilities and tactics. Such a packed game with so few components and rules.\n\takuden: Sorry again there a lag in load times which is causing my messages to repeat\n\twil: Deja who?\n\n10) akuden: Build G1 Akuden\n\twil: So far so good, ya put a blocker in place on me cornering the green economy and making strides to take over OPEC\n\twil: So you made me switch gears in the monopoly race, I am now voting for CHANGE!  I like starting out seeing if I can control a color and then if I cant shift to building diverse systems...the fair and balanced way...\n\n11) wil: D B1 Wil Y3 Y3\n\n12) akuden: Discover G1 Akuden B2 B2\n\twil: This site is crawling along without maintenance...and it still works.  This is all we&#39;ve had for HW for years in lieu of in person games.  Now we have another site to play live games and use a timer.\n\twil: Do you have pyramid arcade?\n\n13) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\takuden: Ah are you referrring to the glitch site? It seems nice! Wow, I had no idea this site hasn&#146;t received maintenance in a while. I just thought it was outdated but still functional. \n\takuden: I do not own pyramid arcade. My local shop has it but I think I&#146;ll wait for the pyramid quartet games. So far, I think Homeworlds is the only pyramid game I like so getting the single game set makes more sense. Do you have it? Is so, what other games do you enjoy from it?\n\twil: Petri dish, volcano, color wheel are my next after HW there are games for everyone in arcade\n\n14) akuden: Move Y1 Akuden B2\n\n15) wil: D B3 Wil G3 G3\n\takuden: I don&#39;t like what you are planning there, but I also don&#39;t think I can stop it...\n\n16) akuden: Build G2 B2\n\n17) wil: B B3 Wil\n\twil: Color domination is both hard to overcome and hard to keep...it is always my first effort...if foiled move onto plan b \n\n18) akuden: Sacrifice G2 B2\nBuild Y1 B2\nBuild G2 B2\n\n19) wil: T B3 Y3 G3\n\n20) akuden: Move Y1 B2 G3\n\n21) wil: D B2 Y3 G2 G2\n\n22) akuden: Build Y2 B2\n\n23) wil: B B3 G2\n\n24) akuden: Sacrifice G2 B2\nBuild Y2 G3\nBuild Y3 Akuden\n\n25) wil: M Y3 G3 G2\n\twil: Wanna take that back?  I sack my y3 and blow all g in your HW\n\takuden: Oh darn, I didn&#146;t see that. Was too focused on the idea of setting up a factory. \n\takuden: Quick question in movement, if you sacked Y3, would you then move g1 from your sector to g2, then move that ship to my sector to cause the catastrophe?\n\takuden: I wasn&#146;t sure if moving the same ship with the sacrifice action multiple time was allowed. Thanks Wil! Please excuse my noob maneuvers! \n\takuden: Build y2 b2\n\n26) akuden: Move Y1 B2 Y3\n\twil: No problem and yes sacking a y3 fives you 3 moves anywhere in the universe...so gives you access to go from hw to HW\n\twil: Sorry to set back your factory building...but this is also the problem with g stars in HW...no factories at home\n\n27) wil: T B3 R3 G2\n\takuden: No problem, I&#146;m learning the importance of even the first decision in the game on homeworld colors and sizes. Man, this game just keeps getting deeper!\n\n28) akuden: Trade G3 R3 Akuden\n\n29) wil: Move R3 G2 G3\n\n30) akuden: Sacrifice Y2 B2\nMove Y2 G3 Wil\nMove Y1 G3 Wil\n\n31) wil: B Y2 G2\n\n32) akuden: Move Y3 Akuden B2\n\n33) wil: B B3 G2\n\n34) akuden: Trade Y3 R3 B2\n\n35) wil: D G1 Wil Y3 Why3\n\n36) akuden: Sacrifice Y1 Akuden\nMove R3 B2 Y3\n\n37) wil: T B1 Y1 Y3\n\n38) akuden: Move Y1 Y3 Wil\nCatastrophe Wil Yellow\n\twil: Ever see when they throw ping pong balls into a bunch of mousetraps and one mouse trap sets off the others in pandemonium?\n\takuden: Lol I haven&#146;t but I feel like I&#146;m about to find out how it feels....\n\n39) wil: T B2 Y2 Y3\n\n40) akuden: Move R3 Y3 Wil\n\n41) wil: S R3 G3\nA R3 Wil\nP\nP\n\n42) akuden: Build G2 B2\n\n43) wil: S Y3 G2\nM B3 G2 Akuden\nM B3 Wil G2\nM B3 G2 Akuden\n\n44) akuden: Build R1 Akuden\n\n45) wil: S R3 Wil\nA R1 Akuden\nA R3 Akuden\nP\n\n\takuden: will do, thank you! Yes this game has been educational. I am hyped up to play more!\n\twil: Gg\n\takuden: Gg\n\nHomeworlds Online (SDG# 37054)\nVariants: &quot;Unrated&quot;\nStarted: 2020.10.13, Ended: 2020.10.30\nParticipants: dimitrivv (S), adriano (N)\nWinner: dimitrivv\n\n1) adriano: Homeworld R3 B1 G3\n\n2) dimitrivv: Homeworld G3 R2 B3\n\n3) adriano: Build G1 Adriano (n)\n\n4) dimitrivv: Build B1 Dimitrivv\n\n5) adriano: Trade G1 Y1 Adriano (n)\n\n6) dimitrivv: Trade B3 Y3 Dimitrivv\n\n7) adriano: Build Y1 Adriano\n\n8) dimitrivv: B B1 Dimitrivv\n\n9) adriano: Discover Y1 Adriano B2 Al\n\n10) dimitrivv: B B2 Dimitrivv\n\n11) adriano: Build G1 Adriano\n\n12) dimitrivv: D B2 Dimitrivv G1 Scomms\n\n13) adriano: Move G1 Adriano Al\n\n14) dimitrivv: B B2 Scomms\n\n15) adriano: Build G1 Al\n\n16) dimitrivv: B B3 Scomms\n\n17) adriano: Build G2 Adriano\n\n18) dimitrivv: T B3 G3 Scomms\n\n19) adriano: Sacrifice G3 Adriano\nBuild G2 Al\nBuild G2 Adriano\nBuild G3 Adriano\n\n20) dimitrivv: B B3 Scomms\n\n21) adriano: Trade G1 R1 Al\n\n22) dimitrivv: T B2 Y2 Scomms\n\n23) adriano: Trade G2 B2 Adriano\n\n24) dimitrivv: B B3 Scomms\n\n25) adriano: Build B3 Adriano\n\n26) dimitrivv: S Y2 Scomms\nM B2 Scomms Al\nM B2 Al Adriano\nC Adriano Blue\n\n27) adriano: Trade G2 B2 Al\n\n28) dimitrivv: T B3 R3 Scomms\n\n29) adriano: Move B2 Al Adriano\n\n30) dimitrivv: S Y3 Dimitrivv\nM R3 Scomms Al\nM B3 Scomms Adriano\nM G3 Scomms Adriano\n\n31) adriano: Attack B3 Adriano\n\n32) dimitrivv: S R3 Al\nA B3 Adriano\nA G3 Adriano\nA G2 Adriano\n\n33) adriano: Trade B2 G2 Adriano\nCatastrophe Adriano G\n\n34) dimitrivv: A Y1 Adriano\n\n\nHomeworlds Online (SDG# 36904)\nStarted: 2020.10.15, Ended: 2020.10.19\nParticipants: Dther (S), akuden (N)\nWinner: akuden\n\n1) akuden: Homeworld Y2 B3 G3\n\n\nHomeworlds Online (SDG# 36955)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.10.17, Ended: 2020.10.21\nParticipants: Layana (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: Ready for this eh?  Training mode or playing mode?\n\n2) Layana: Homeworld R2 G3 B3\n\tLayana: Well, let&#39;s play, and if you feel like you should comment upon my mistakes your comments will be very welcome :) \n\n3) wil: B G1 Wil\n\n4) Layana: Build B1 Layana\n\twil: I dont like a green star for my home world... Ihave to hope for a factory at.an outpost, I prefer them at home.\r\n\r\nI do it occasionally.  \n\twil: When I started playing blue red was a standard home world..i came to like to be able to move right away and got into blue yellow...although if I go second tho he may change.\n\n5) wil: B G1 Wil\n\n6) Layana: Trade B1 Y1 Layana\n\twil: My favorite gambit is monopolies if I can pull it off.  Looks like I have a chance with green in this situation.  You have to gain a yellow to move.  If you had one in your HW you could take on blue...but since you don&#39;t...\n\n7) wil: D G1 Wil Y3 Y3\n\tLayana: Your comments are very appreciated \n\n8) Layana: Build Y1 Layana\n\n9) wil: B G1 Wil\n\n10) Layana: Build Y1 Layana\n\n11) wil: D G1 Wil Y3 Why3\n\twil: My goal is always to amass more ships and larger ships...but keeping in mind I want blue and red to destroy your homeworld\n\n12) Layana: Discover Y1 Layana B1 Xenophobia\n\twil: At this point if the other is also working in a monopoly I like to occupy stars of that nature to take them out of the bank\n\twil: At this point if the other is also working in a monopoly I like to occupy stars of that nature to take them out of the bank\n\tLayana: It also seems rather unfortunate that I have no g1 stars to discover at this juncture. This is already over, isn&#39;t it? \n\n13) wil: B G2 Why3\n\twil: There are bad positions and the are incredible mistakes...i can get into both of them..  I have controlled the start...but there is a long way to the end.  We can start another if you wish while we see hiw this plays out.  My goal is to always teach people to be able to beat me so I can learn from them.\n\n14) Layana: Build B1 Layana\n\n15) wil: S G3 Wil\nB G2 Y3\nB G2 Why3\nB G3 Wil\n\tLayana: Yes, let&#39;s play another one. \n\twil: Trydnt n I played as many as 5 at a sitting....or online at the same time...confusing but accelerates the mistakes which accelerates the learning\n\n16) Layana: Trade B3 G3 Layana\n\n17) wil: D G2 Why3 Y2 Y2\n\tLayana: Ok, we now have 4 games going, too. Really appreciate your mentorship. \n\twil: I enjoy playing.\n\n\tLayana: Actually, I don&#39;t really have a clue how or why to do anything but resign in this situation. You will deny my y3, unless I build it via sacrifice, which doesn&#39;t seem smart. I could build a y2 in my homeworld, but then you can exchange a g3 for the y3, which I then couldn&#39;t build because of the looming Catastrophe. Alternatively, you could just discover another y3.\r\n\r\nSo it seems that if there would be a way or if this mess, it would have to be via blue or red, both of which you can build at twice my speed due to your factory.\r\n\r\nIf you don&#39;t have a hint, it&#39;s rather concentrate on our new games, then ;) \n\tLayana: Thanks for the game. :) \n\nHomeworlds Online (SDG# 37033)\nVariants: &quot;Unrated&quot;\nStarted: 2020.10.17, Ended: 2020.10.21\nParticipants: Layana (S), akuden (N)\nWinner: Layana\n\n1) akuden: Homeworld Y2 B3 G3\n\n2) Layana: Homeworld B2 R1 G3\n\takuden: Hello and welcome!\n\tLayana: Hello and thank you. I&#39;m still kind of new. Have fun. \n\n3) akuden: Build G1 Akuden\n\takuden: No worries, I am very new to this game as this would be my third game. Have fun!\n\n4) Layana: Build G1 Layana\n\n5) akuden: Trade G1 Y1 Akuden\n\tLayana: Than ks, I will have fun either way. \n\n6) Layana: Trade G1 Y1 Layana\n\n7) akuden: Build G1 Akuden\n\n8) Layana: Build G1 Layana\n\n9) akuden: Discover G1 Akuden B1 B1\n\n10) Layana: Trade G1 B1 Layana\n\n11) akuden: Build G1 B1\n\n12) Layana: Build B1 Layana\n\n13) akuden: Trade G1 Y1 B1\n\n14) Layana: Build Y2 Layana\n\n15) akuden: Discover Y1 B1 G3 G3\n\n16) Layana: Discover Y1 Layana B3 Amanda\n\n17) akuden: Build Y2 G3\n\n18) Layana: Discover B1 Layana Y3 Shinon\n\n19) akuden: Move Y2 G3 B1\n\n20) Layana: Sacrifice G3 Layana\nBuild Y3 Amanda\nBuild Y3 Layana\nBuild B2 Shinon\n\n21) akuden: Trade Y2 B2 B1\n\n22) Layana: Discover B2 Shinon G1 Ariel\n\tLayana: I&#39;d also be up for a game of Realm, if you wanted to. \n\n23) akuden: Build Y2 G3\n\n24) Layana: Build B3 Ariel\n\n25) akuden: Trade Y1 R1 Akuden\n\takuden: I haven&#146;t quite grasped that one, but I&#146;d be willing to give iit another shot.\n\takuden: If you have a challenge posted, I&#146;ll join up.\n\tLayana: Realm is the game that brought me to this site, I love it. There is always a challenge open for Realm. \n\n26) Layana: Trade B2 R2 Ariel\n\n27) akuden: Move Y1 G3 B1\n\takuden: It was interesting the last time I played. A lot more moving parts than most abstracts. \n\n28) Layana: Move Y3 Amanda B1\n\tLayana: It is also ideal for play by email as games tend to not to have too many moves (around 20 in my experience)\n\n29) akuden: Move B2 B1 Amanda\n\n30) Layana: Sacrifice Y2 Layana\nMove B3 Ariel Akuden\nMove Y3 B1 Akuden\n\n31) akuden: Attack Y3 Akuden\n\takuden: I can see that. Cool, looking forward to discovering it more. \n\n32) Layana: Sacrifice R2 Ariel\nAttack Y3 Akuden\nAttack G3 Akuden\n\n\takuden: Sounds good! I&#146;m down. I still have so much to learn in this game.\n\nHomeworlds Online (SDG# 37014)\nVariants: &quot;Unrated&quot;\nStarted: 2020.10.20, Ended: 2020.11.4\nParticipants: Layana (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Layana: Homeworld B2 R1 G3\n\n3) wil: B G1 Wil\n\n4) Layana: Build G1 Layana\n\n5) wil: T G1 B1 Wil\n\n6) Layana: Trade G1 Y1 Layana\n\n7) wil: B B1 Wil\n\n8) Layana: Build G1 Layana\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Layana: Trade G1 R1 Layana\n\n11) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Wil\nBuild B3 Y3\n\n12) Layana: Build G1 Layana\n\n13) wil: Trade B3 G3 Y3\n\twil: ack short universe...just noticed, lol\n\n14) Layana: Move R1 Layana Y3\n\n15) wil: T B2 R2 Y3\n\n16) Layana: Move R1 Y3 Wil\n\twil: well ya kicked my butt in martian chess!\r\n\n\tLayana: sure, but this again looks dire. small universe is VERY different, isnt it?\n\n17) wil: B R1 Y3\n\twil: Totally dif, homeworlds so close your building stars are within range...microvrerse worse....where opponent can come direct in..\n\n18) Layana: Attack B1 Wil\n\twil: Again...my goal is to put you in dire straights quickly...so you can see gambit to avoid.  When you try to use those gambits on others you will see what countermeasures look like...lots going on.\n\n19) wil: S R2 Y3\nA R1 Wil\nA B1 Wil\n\n\twil: They were pointed the wrong way...\n\twil: I fixed it.\n\tLayana: ;) much obliged. There also seem to be too many players in this game. \n\tLayana: I fixed it\n\twil: Sort of like moving pieces out in chess...ya gotta insure they arr protected before they go to far.\n\nHomeworlds Online (SDG# 37058)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.10.20, Ended: 2020.11.13\nParticipants: wil (S), Layana (N)\nWinner: wil\n\n1) Layana: Homeworld Y2 B1 G3\n\n2) wil: H B3 Y1 G3\n\n3) Layana: Build G1 Layana\n\n4) wil: B G1 Wil\n\n5) Layana: Trade G1 Y1 Layana\n\n6) wil: T G1 Y1 Wil\n\twil: Ya did the math!\n\n7) Layana: Build Y2 Layana\n\n8) wil: B Y2 Wil\n\tLayana: I was actually unsure which color to go for. Blue makes trades easier, after all. I choose y because it gives mobility, mostly. \n\n9) Layana: Discover Y1 Layana G3 Amrut\n\n10) wil: D Y1 Wil G2 G2\n\n11) Layana: Build Y3 Amrut\n\n12) wil: Build Y3 G2\n\n13) Layana: Discover Y1 Amrut G2 Bowmore\n\n14) wil: T Y2 R2 Wil\n\n15) Layana: Trade Y2 R2 Layana\n\n16) wil: B G1 Wil\n\n17) Layana: Build Y2 Bowmore\n\n18) wil: M Y1 G2 Amrut\n\n\n19) Layana: Discover Y3 Amrut G2 Cragganmore\n\n20) wil: T G1 B1 Wil\n\n\nHomeworlds Online (SDG# 36969)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.10.21, Ended: 2020.11.17\nParticipants: Layana (S), akuden (N)\nWinner: Layana\n\n1) akuden: Homeworld R2 B3 G3\n\n2) Layana: Homeworld Y2 B1 G3\n\n3) akuden: Build G1 Akuden\n\tLayana: Good luck and, more importantly, have fun. \n\takuden: Thank you! Good luck and have fun as well. \n\n4) Layana: Build G1 Layana\n\n5) akuden: Trade G1 Y1 Akuden\n\n6) Layana: Trade G1 Y1 Layana\n\n7) akuden: Build G1 Akuden\n\n8) Layana: Build G1 Layana\n\n9) akuden: Discover G1 Akuden B1 Sentry\n\n10) Layana: Trade G1 B1 Layana\n\n11) akuden: Build G1 Sentry\n\n12) Layana: Build B2 Layana\n\n13) akuden: Trade G1 Y1 Sentry\n\n14) Layana: Trade B2 R2 Layana\n\n15) akuden: Build Y2 Akuden\n\n16) Layana: Discover Y1 Layana G3 Amrut\n\n17) akuden: Trade Y2 B2 Akuden\n\n18) Layana: Build Y2 Amrut\n\n19) akuden: Build Y2 Akuden\n\n20) Layana: Discover Y1 Amrut G1 Bowmore\n\n21) akuden: Build Y3 Sentry\n\n22) Layana: Build Y3 Amrut\n\n23) akuden: Trade Y1 R1 Sentry\n\n24) Layana: Move B1 Layana Amrut\n\n25) akuden: Discover B2 Akuden G1 Locust\n\n26) Layana: Build B2 Amrut\n\n27) akuden: Build G2 Sentry\n\n28) Layana: Build G2 Layana\n\n29) akuden: Build G2 Akuden\n\n30) Layana: Discover B2 Amrut R1 Cragganmore\n\n31) akuden: Move Y1 Akuden Locust\n\n32) Layana: Sacrifice G3 Layana\nBuild G3 Layana\nBuild B2 Amrut\nBuild B3 Cragganmore\n\n33) akuden: Sacrifice G3 Akuden\nBuild G3 Akuden\nBuild Y1 Sentry\nBuild Y3 Locust\n\n34) Layana: Move Y3 Amrut Cragganmore\n\n35) akuden: Build B3 Locust\n\n36) Layana: Trade B3 R3 Cragganmore\n\n37) akuden: Discover B3 Locust R3 Omega-3\n\n38) Layana: Sacrifice Y2 Amrut\nMove R3 Cragganmore Akuden\nMove Y3 Cragganmore Akuden\n\n39) akuden: Attack R3 Akuden\n\n40) Layana: Sacrifice R2 Layana\nAttack R3 Akuden\nAttack G3 Akuden\n\n41) akuden: Build R1 Sentry\n\takuden: Ah man, I overlooked the red&#39;s too long...good game. Sorry about the longer turns towards the end. Work has been picking up giving me less time to look at the computer screen.\n\tLayana: I know what that&#39;s like. I have two jobs and two kids,so it&#39;s tough, too. \n\n42) Layana: Sacrifice R3 Akuden\nAttack G2 Akuden\nAttack Y2 Akuden\nPass\n\n\tLayana: Thanks for the game. I think if you had not neglected red, you might have won. I&#39;d like to play another one ;) \n\takuden: Thank you! Sounds good. I&#39;ll join up. \n\nHomeworlds Online (SDG# 37080)\nVariants: &quot;Hard time&quot;\nStarted: 2020.10.27, Ended: 2020.12.3\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H Y1 B3 G3\n\n2) Trydnt: Homeworld R2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\tdlwillson: Tyglhf\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Trydnt: Build Y2 Trydnt\n\n9) dlwillson: T Y1 B1 Dlwillson\n\n10) Trydnt: Trade Y1 B1 Trydnt\n\n11) dlwillson: D B1 Dlwillson G2 Field\n\n12) Trydnt: Discover B1 Trydnt G3 G3\n\n13) dlwillson: M Y2 Dlwillson Field\n\n14) Trydnt: Build B2 G3\n\n15) dlwillson: B B2 Field\n\n16) Trydnt: Build Y1 Trydnt\n\n17) dlwillson: Trade B2 R2 Field\n\n18) Trydnt: Trade B2 R2 G3\n\n19) dlwillson: Build B2 Field\n\n20) Trydnt: Build B2 G3\n\n21) dlwillson: Trade B2 G2 Field\n\n22) Trydnt: Trade B2 Y2 G3\n\n23) dlwillson: Discover G2 Field Y3 Sol\n\n24) Trydnt: Build B2 G3\n\n25) dlwillson: B G1 Dlwillson\n\n26) Trydnt: Discover B2 G3 G2 G2\n\n27) dlwillson: T G1 R1 Dlwillson\n\n28) Trydnt: Discover Y2 Trydnt B3 B3\n\n29) dlwillson: Build R1 Field\n\n30) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 B3\nBuild Y3 Trydnt\nBuild Y3 G3\n\n31) dlwillson: Sacrifice G2 Sol\nBuild Y3 Field\nBuild B2 Field\n\n32) Trydnt: Trade Y3 G3 Trydnt\n\n33) dlwillson: Discover R2 Field Y3 Sol\n\n34) Trydnt: Build B2 G3\n\n35) dlwillson: D B2 Field B3 Sky\n\n36) Trydnt: Sacrifice Y2 G3\nMove Y1 B3 Field\nMove Y2 B3 Field\nCatastrophe Field Y\n\n\tdlwillson: I&#39;m sorry, but I don&#39;t have time to play until  holidays. I&#39;ll re-challenge then.\n\tTrydnt: no worries I look forward to playing then\n\nHomeworlds Online (SDG# 37124)\nVariants: &quot;Hard time&quot;\nStarted: 2020.11.14, Ended: 2020.11.28\nParticipants: Simon (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) Simon: Homeworld B1 R1 G3 *\n\tDraw5PlayAll: I&#39;m 2 for 2 on defenses with this setup. I must be doing something right...\n\tSimon: Have fun! It&#39;s very much possible that 2-2 or 1-1 is a strong choice especially for first player, and we haven&#39;t explored the opening theory enough.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tSimon: \n\n4) Simon: Build G1 Simon\n\tDraw5PlayAll: Well, I heard that matching your opponent&#39;s homeworld in *second* seat is a mistake since they are closer to you and have an extra move. Then I wondered what would happened if I had the extra move instead...\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Simon: Trade G1 Y1 Simon\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Simon: Build G1 Simon\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Simon: Discover G1 Simon B3 B3\n\n11) Draw5PlayAll: Build B1 Draw5playall\n\n12) Simon: Build G1 B3\n\n13) Draw5PlayAll: Discover B1 Draw5playall G3 Television\n\n14) Simon: Build G1 Simon\n\n15) Draw5PlayAll: Build B2 Television\n\n16) Simon: Build G2 B3\n\n17) Draw5PlayAll: Build B2 Television\n\n18) Simon: Trade G2 Y2 B3\n\n19) Draw5PlayAll: Build B3 Draw5playall\n\n20) Simon: Build G2 B3\n\n21) Draw5PlayAll: Trade B3 R3 Draw5playall\n\n22) Simon: Discover G1 B3 Y1 Y1\n\n23) Draw5PlayAll: Move R3 Draw5playall B3\n\n24) Simon: Sacrifice G2 B3\nBuild Y2 B3\nBuild Y2 B3\n\tDraw5PlayAll: The disadvantage of this setup, of course, is that my homeworld is slightly more vulnerable (I can be attacked from smalls and larges), but I don&#39;t think that will really matter this game...\n\n25) Draw5PlayAll: Move Y1 Draw5playall B3\nCatastrophe B3 Y\n\n\tDraw5PlayAll: Nice try.\n\tSimon: gg\n\tDraw5PlayAll: 3 for 3... I might be on to something.\n\nHomeworlds Online (SDG# 36765)\nVariants: &quot;Hard time&quot;\nStarted: 2020.11.14, Ended: 2020.12.3\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H Y1 B3 G3\n\n2) Felix: Homeworld B2 R3 G3\n\tdlwillson: Daniel! Yay! So good to see you!\n\tFelix: Hey David, likewise :) How you been? \n\n3) dlwillson: Build G1 Dlwillson\n\n4) Felix: Build G1 Felix\n\tdlwillson: Pretty good. I&#39;ve gone crazy for casterboarding and I&#39;m working on my CKA. How for you?\n\tFelix: Those are a blast. Here in the NC mountains, there&#39;s very little terrain flat enough to enjoy one! I&#39;m good. Lost my job due to the pandemic/lockdown, but just started a new job last week, working in data migration/cloud management, so hoping to bounce back soon!\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Felix: Trade G3 Y3 Felix\n\tdlwillson: I&#39;m glad you were able to get back to work quickly. Have you been keeping up with Jonathan Baker and Wil? They&#39;ve got the systems for the live tournament just about figured.\n\tFelix: To be honest, I haven&#39;t, but that&#39;s exciting to hear! I&#39;ll definitely keep my ears open. Is Facebook the best place to keep up? I rarely touch Facebook these days\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: Build G1 Felix\n\tdlwillson: Sadly, I think Facebook might be best. They&#39;re both in Starship Captains and Binary Homeworlds groups. Let&#39;s ask Babamots on here. Maybe he watches his SDG messages.\n\tdlwillson: I&#39;m on my phone right now. I&#39;ll do it later.\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\tdlwillson: Ohh... Now, I see!\n\n10) Felix: Trade G1 B1 Felix\n\tdlwillson: Your &quot;t g3 y3&quot; makes perfect sense now! I didn&#39;t get it when you did it. I did a double-take and shrug. Now, I understand!\n\tFelix: I thought I&#39;d try something different :) I think I may have accidentally stumbled upon a good defense for someone spamming green early on.\n\tFelix: I kind of wish you had gone for it, so we could see how that would play out :)\n\n11) dlwillson: Build R1 Dlwillson\n\n12) Felix: Build B1 Felix\n\n13) dlwillson: B R1 Dlwillson\n\n14) Felix: Discover B1 Felix G1 Rim\n\n15) dlwillson: Discover R1 Dlwillson G2 Field\n\n16) Felix: Build B1 Felix\n\n17) dlwillson: Build R2 Field\n\n18) Felix: Build B2 Rim\n\n19) dlwillson: Sacrifice Y1 Dlwillson\nMove R2 Field Rim\n\n20) Felix: Sacrifice B2 Rim\nTrade B1 G1 Rim\nTrade B1 Y1 Felix\n\tdlwillson: Expensive, but worth it, I think.\n\tFelix: I think you&#39;re quite right... I don&#39;t foresee this going well for me. I&#39;m quite rusty at the moment! Haven&#39;t played a game in months\n\n21) dlwillson: Attack G1 Rim\n\n22) Felix: Build G2 Felix\n\n23) dlwillson: Sacrifice G1 Rim\nBuild R2 Dlwillson\n\n24) Felix: Trade G2 R2 Felix\n\n25) dlwillson: Build R3 Field\n\n26) Felix: Build R3 Felix\n\n27) dlwillson: Trade R2 B2 Dlwillson\n\n28) Felix: Move R3 Felix Rim\n\tdlwillson: Ah! I accidentally gave you an R3! I *have* played this game before, I swear.\n\n\tFelix: I just assumed you had some master plan behind it all :)\n\tFelix: :( Sad. I hate that hard time trigger. Let&#39;s play without it next time!\n\tdlwillson: Sorry about that! Studying Kubernetes has eaten my whole life lately! Let&#39;s play again after the holidays.\n\nHomeworlds Online (SDG# 37066)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.11.14, Ended: 2020.12.10\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Felix: Homeworld B2 R3 G3\n\tFelix: Hey again :) Been a while. Have fun!\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\twil: Thx, hope all is well with you n yours\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G3 B3 Felix\n\n7) wil: B G1 Wil\n\tFelix: Everything&#39;s just fine! Hope all&#39;s well with you too.\n\n8) Felix: Build G1 Felix\n\twil: All good..been hiding out but getting ready to hunker down in further\n\n9) wil: T G1 R1 Wil\n\n10) Felix: Trade G1 R1 Felix\n\n11) wil: D B1 Wil Y3 Y3\n\n12) Felix: Build G1 Felix\n\n13) wil: B G1 Wil\n\n14) Felix: Build G2 Felix\n\n15) wil: T G1 Y1 Wil\n\n16) Felix: T G2 G2 Felix\n\n17) wil: B Y1 Wil\n\n18) Felix: T G2 Y2 Felix\n\tFelix: Dang it. I very much made a mistake in my last turn and didn&#39;t notice the typo. Meant to trade for a y2. May I re-do, or you burn a turn?\n\n19) wil: D Y1 Wil G3 G3\n\tDraw5PlayAll: I&#39;m surprised it even allowed that.\n\twil: It what happened or what needs to be done to correct it.\n\twil: *idk\n\n20) Felix: D G1 Felix B1 Rim\n\tFelix: I traded a g2 for a g2, so I basically completely wasted a turn\n\n21) wil: B G1 Wil\n\twil: Oh but you corrected it...no worries...backing up is just making a move and backing it off before you move the coin.  I wouldnt have a problem with unlimited reversals...but it is a perfectly legal move...essentially and elaborate pass!\n\n22) Felix: B G2 Rim\n\tFelix: I didn&#39;t correct it before you made your move, so I essentially lost a turn. But that&#39;s okay, I can still win :)\n\n23) wil: S G1 Wil\nB B2 Y3\n\twil: Oh, oops, and of course\n\n24) Felix: B B2 Felix\n\n25) wil: T B2 G2 Y3\n\n26) Felix: Trade G2 Y2 Rim\n\n27) wil: B B2 Y3\n\n28) Felix: Discover B2 Felix G1 Opus\n\n29) wil: M B1 Y3 Opus\n\n30) Felix: T B2 R2 Opus\n\n31) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Opus\n\n32) Felix: Sacrifice Y2 Felix\nMove Y2 Rim G3\nMove Y2 G3 Wil\n\n33) wil: M B3 Y3 Wil\n\tFelix: Bold and daring. I like it!\n\n34) Felix: Sacrifice R2 Opus\nAttack Y1 Wil\nAttack R1 Wil\n\twil: Was gonna go ahead and catastrophe and work toward a yellow monopoly but decided on this..\n\n35) wil: T B2 R2 Y3\n\n36) Felix: Trade R1 Y1 Wil\nCatastrophe Wil Yellow\n\n37) wil: T B3 G3 Opus\n\n38) Felix: Build G2 Felix\n\n39) wil: B B2 Opus\n\n40) Felix: Trade G2 Y2 Felix\n\n41) wil: B B3 Y3\n\n42) Felix: Build G2 Felix\n\twil: I&#39;ll keep checking...holler when you need to slow down\n\n43) wil: T G3 Y3 Opus\n\tFelix: No worries here\n\n44) Felix: Move G1 Felix Opus\n\twil: My goal now is to collect queens...cause they are pretty\n\n45) wil: S Y3 Opus\nM B1 Opus Felix\nM B2 Opus Felix\nM R2 Y3 Opus\nC Felix B\n\n46) Felix: Build G2 Rim\n\n47) wil: A G1 Opus\n\n48) Felix: Build G3 Felix\n\n49) wil: B G3 Y3\n\n50) Felix: Trade G2 B2 Rim\n\n51) wil: D B3 Y3 Y1 Y1\n\n52) Felix: S B2 Rim\nT G2 B2 Felix\nPass\n\n53) wil: S G3 Y3\nB B1 Y3\nB B2 Y3\nB B3 Y1\n\n54) Felix: Sacrifice G1 Rim\nBuild B1 Felix\n\n55) wil: T B3 Y3 Wil\n\twil: Getting dicey\n\n56) Felix: Move B1 Felix Wil\n\twil: Bank Robbery...give me all dem blues\n\n57) wil: D B3 Y1 B3 B3\n\tFelix: The suspense!\n\n58) Felix: Sacrifice Y2 Felix\nMove B1 Wil Y3\nPass\nCatastrophe Y3 Blue\n\twil: Me thinks my days are numbered\n\n59) wil: S G2 Y3\nB Y1 Wil\nB R1 Opus\n\tFelix: There&#39;s a very high chance I&#39;m going to mess this up, so I wouldn&#39;t be too sure!\n\n60) Felix: T R1 G1 Felix\n\n61) wil: B R1 Opus\n\tFelix: Nice move. Didn&#39;t expect that one.\n\n\twil: Well I can use that if you don&#39;t want it.\n\tFelix: I wonder how things would have gone differently if you had given me back that turn I mistakenly wasted :)\n\twil: Gg, I totally want that...aka start over at move 12\n\nHomeworlds Online (SDG# 37068)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.11.14, Ended: 2020.12.11\nParticipants: Layana (S), Felix (N)\nWinner: Felix\n\n1) Felix: H Y2 B3 G3\n\n2) Layana: Homeworld R2 B1 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\tLayana: Thanks, you too\n\n4) Layana: Build G1 Layana\n\n5) Felix: Trade G1 B1 Felix\n\n6) Layana: Trade G1 Y1 Layana\n\n7) Felix: Build B1 Felix\n\n8) Layana: Build Y1 Layana\n\n9) Felix: Discover B1 Felix G1 Out\n\n10) Layana: Discover Y1 Layana G3 Stella\n\n11) Felix: Build B2 Out\n\n12) Layana: Build Y1 Layana\n\n13) Felix: Trade B2 Y2 Out\n\n14) Layana: Build Y2 Stella\n\n15) Felix: Build Y3 Out\n\n16) Layana: Build Y3 Layana\n\n17) Felix: Discover Y3 Out B3 Stemper\n\n18) Layana: Trade Y1 R1 Layana\n\n19) Felix: B B2 Out\n\n20) Layana: Move Y3 Layana Stemper\n\n21) Felix: M Y3 Stemper Out\n\n22) Layana: Move Y2 Stella Out\n\n23) Felix: Trade Y3 R3 Out\n\n24) Layana: Sacrifice G3 Layana\nBuild Y1 Stemper\nBuild Y3 Stella\nBuild Y3 Layana\n\n25) Felix: Attack Y2 Out\n\n26) Layana: Trade Y3 G3 Layana\n\n27) Felix: Discover B2 Out Y3 Intent\n\n28) Layana: Trade Y3 B3 Stemper\n\n29) Felix: D Y2 Out Y3 Savor\n\n30) Layana: Discover B3 Stemper G1 Nica\n\n31) Felix: B B2 Out\n\n32) Layana: Move Y3 Stella Nica\n\n33) Felix: Build B2 Out\n\n34) Layana: Move B3 Nica Intent\n\n35) Felix: Move B2 Out Stella\n\n36) Layana: Build G1 Layana\n\n37) Felix: Move B2 Out Stella\n\n38) Layana: Build R1 Layana\n\n39) Felix: Sacrifice Y2 Out\nMove R3 Out Intent\nMove R3 Intent Layana\nCatastrophe Layana Red\n\n40) Layana: Trade G1 R1 Layana\n\n\tLayana: Thanks for the game\n\tFelix: Good game! Thanks!\n\nHomeworlds Online (SDG# 37039)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.11.16, Ended: 2020.11.20\nParticipants: dlwillson (S), wy18 (N)\nWinner: dlwillson\n\n1) wy18: Homeworld B2 R1 G3\n\n2) dlwillson: Homeworld Y1 B3 G3 Dlwillson\n\n\tdlwillson: Hi Wy!\n\nHomeworlds Online (SDG# 37130)\nVariants: &quot;Unrated, Hard time&quot;\nStarted: 2020.11.17, Ended: 2020.12.7\nParticipants: akuden (S), Layana (N)\nWinner: Layana\n\n1) Layana: Homeworld Y2 B1 G3\n\n2) akuden: Homeworld Y2 B3 G3\n\n3) Layana: Build G1 Layana\n\n4) akuden: Build G1 Akuden\n\n5) Layana: Trade G1 B1 Layana\n\n6) akuden: Build G1 Akuden\n\n7) Layana: Build B1 Layana\n\n8) akuden: Discover G1 Akuden G1 Proteus\n\n9) Layana: Build G2 Layana\n\n10) akuden: Trade G1 Y1 Akuden\n\n11) Layana: Discover B1 Layana G3 Mekong\n\n12) akuden: Build Y1 Akuden\n\n13) Layana: Build B2 Mekong\n\n14) akuden: Move Y1 Akuden Proteus\n\n15) Layana: Trade B2 Y2 Mekong\n\n16) akuden: Discover G1 Proteus B3 Larax-3\n\n17) Layana: Build B2 Mekong\n\n18) akuden: Build Y1 Proteus\n\n19) Layana: Build Y3 Mekong\n\n20) akuden: Build Y3 Proteus\n\n21) Layana: Move Y2 Mekong Proteus\nCatastrophe Proteus Y\n\n22) akuden: Build G1 Akuden\n\n23) Layana: Discover B2 Mekong Y1 Riogrande\n\n24) akuden: Build G1 Larax-3\n\n25) Layana: Sacrifice G3 Layana\nBuild B2 Riogrande\nBuild B2 Riogrande\nBuild B3 Layana\n\n26) akuden: Discover Y1 Akuden Y1 Phasar\n\n27) Layana: Trade B2 R2 Riogrande\n\n28) akuden: Trade G1 R1 Larax-3\n\n29) Layana: Build B2 Mekong\n\n30) akuden: Move Y1 Phasar Larax-3\n\n31) Layana: Trade B2 G2 Riogrande\n\n32) akuden: Build Y1 Larax-3\n\n33) Layana: Build G1 Riogrande\n\n34) akuden: Discover Y1 Larax-3 B2 Vera\n\n35) Layana: Sacrifice Y3 Mekong\nMove G1 Riogrande Akuden\nMove G2 Riogrande Akuden\nCatastrophe Akuden G\nPass\n\n\tLayana: I&#39;m looking forward to the next one\n\takuden: good game! Dang I left myself wide open for that one.....\n\takuden: Alright let&#39;s do this! I&#39;m down for a rematch. I&#39;m reading up on some strategies.\n\tLayana: I usually find that reading up on strategies works best if you have a couple of games directly after reading, preferably live games with discussion. If you want to go live at some point for a couple of games, I&#39;d be up for that too. \n\nHomeworlds Online (SDG# 37062)\nStarted: 2020.11.23, Ended: 2020.11.30\nParticipants: Dther (S), ALPACAMAN (N)\nWinner: ALPACAMAN\n\n1) ALPACAMAN: Homeworld R3 G2 B3\n\n\nHomeworlds Online (SDG# 37128)\nStarted: 2020.11.23, Ended: 2020.11.30\nParticipants: ALPACAMAN (S), MobyNostromo (N)\nWinner: ALPACAMAN\n\n1) MobyNostromo: H B1 Y2 G3\n\n2) ALPACAMAN: Homeworld R3 G2 B3\n\n\nHomeworlds Online (SDG# 36878)\nVariants: &quot;Hard time&quot;\nStarted: 2020.11.24, Ended: 2020.11.30\nParticipants: wil (S), tbonestick (N)\nWinner: wil\n\n1) tbonestick: Homeworld G1 B2 Y3\n\n2) wil: H Y3 B1 G3\n\n\n</pre></td>\n\t\t</tr>\n\t</table>\n</body>\n\n</html>\n\n\n\n\n'

Parsing:

We began parsing the data using Beautiful Soup to find the \

 tag that contained all of the text. On the webpage, each game starts with a header containing data such as the game ID number, start date time, end date time, etc. We used this to split the data into a list of strings each of which contains the text for 1 game. We then created various classes to model the different pieces and actions of the game, as well as the games themselves. Finally, we converted the raw strings to instances of these objects before using them to create dataframes containing data on all of the games.

In [3]:
# Use beautiful soup to find the pre tag within which the datalines are.
souped_games = BeautifulSoup(games_page, 'html')
game_outline = souped_games.find('pre').text

# Each game outline starts with a header containing the game ID, start date, end date, etc. The header opens with 'Homeworlds Online (SDG# ' so we split the string containing the outlines of all of the games into a list of strings each containing the outlines of one game.
game_lst = game_outline.split('Homeworlds Online (SDG# ')[1:]        

#Print out the games to check
for i in game_lst:
    print(i)
651)
Started: 2005.9.8, Ended: 2005.9.10
Participants: rbryan (S), crackity_jones (N)
Winner: rbryan

	rbryan: howdy
	SYSTEM: crackity_jones resigns.


632)
Started: 2005.9.6, Ended: 2005.9.7
Participants: Subhan64 (S), jesse (N)
Winner: jesse

1) jesse: Homeworld B2 Y1 G3

2) Subhan64: Homeworld Y2 B2 R2
	jesse: Greetings to all intelligent life forms.  We come in peace.

3) jesse: Pass

4) Subhan64: Trade R2 G2 Subhan64
	jesse: You must be new. It is vital to have green in your home system at the start of the game. You can't use red until our forces come into contact.  You can't use yellw until you have another ship to leave in your home system.  You can use blue to change the color of your ship, but in that case you should have started with the new color to begin with.  I'll give you a chance to change to green now.
	jesse: It is also very important to start with a large ship, rather than a medium. Large ships are power. Without one, you will be weak on both offense and defense.

5) jesse: Build G1 Jesse

6) Subhan64: Build G1 Subhan64

7) jesse: Trade G1 R1 Jesse

8) Subhan64: Discover G1 Subhan64 R1 Abraxis

9) jesse: Build R1 Jesse

10) Subhan64: Build G1 Subhan64

11) jesse: Build R2 Jesse

12) Subhan64: Trade G2 R2 Subhan64

13) jesse: Trade R1 G1 Jesse

14) Subhan64: Construct G2 Abraxis

15) jesse: Discover G3 Jesse Y3 Danger

16) Subhan64: Build G2 Subhan64

17) jesse: Build G2 Danger

18) Subhan64: Move R2 Subhan64 Danger

19) jesse: Move G2 Danger Subhan64

20) Subhan64: Trade G1 Y1 Subhan64
	Subhan64: Finally read your comments.  yes, this is my first game.

21) jesse: Sacrifice R2 Jesse
Attack G2S Subhan64
Attack Y1S Subhan64
	jesse: Well, I hope you've enjoyed it, and learned a thing or two along the way.



627)
Started: 2005.9.5, Ended: 2005.9.13
Participants: Aaron (S), CDRodeffer (N)
Winner: CDRodeffer

1) CDRodeffer: Homeworld R1 Y2 G3

2) Aaron: Homeworld Y1 B3 G3

3) CDRodeffer: Build G1 Cdrodeffer

4) Aaron: Build G1 Aaron

5) CDRodeffer: Discover G1 Cdrodeffer B3 Blueberry

6) Aaron: Trade G1 R1 Aaron

7) CDRodeffer: Build G1 Blueberry

8) Aaron: Build R1 Aaron

9) CDRodeffer: Trade G1 Y1 Blueberry

10) Aaron: Trade R1 Y1 Aaron

11) CDRodeffer: Build Y2 Blueberry

12) Aaron: Discover Y1 Aaron B2 Acqua

13) CDRodeffer: Trade Y2 B2 Blueberry

14) Aaron: Build G1 Aaron
	Aaron: What the heck am I doing?  *shakes his head in confusion*

15) CDRodeffer: Build Y2 Blueberry

16) Aaron: Move G1 Aaron Acqua

17) CDRodeffer: Trade Y2 R2 Blueberry
	CDRodeffer: I'm not exactly sure, so don't ask me! :-P

18) Aaron: Build Y2 Acqua
	Aaron: I have no idea either.  This is a problem.

19) CDRodeffer: Move R2 Blueberry Acqua

20) Aaron: Sacrifice Y2 Acqua
Move G1 Acqua Aaron
Move Y1 Acqua Aaron
	Aaron: It is taking me some time for strategies to start to gell in my mind.  I'm still flying by the seat of my pants.

21) CDRodeffer: Build Y2 Blueberry

22) Aaron: Trade G3 R3 Aaron
	CDRodeffer: Oh, I totally understand. I'm still new to this game as well, although I have played with a few very, very good players. Russell Grieshop taught me almost everything I know about the game. He's one tough player.

23) CDRodeffer: Move B2 Blueberry Cdrodeffer

24) Aaron: Trade Y1 B1 Aaron

25) CDRodeffer: Move Y1 Blueberry Cdrodeffer

26) Aaron: Trade B1 Y1 Aaron

27) CDRodeffer: Build G1 Cdrodeffer

28) Aaron: Discover Y1 Aaron G2 Emerald

29) CDRodeffer: Build G2 Blueberry

30) Aaron: Build Y2 Emerald
	Aaron: I am distinctly outnumbered.

31) CDRodeffer: Build Y3 Blueberry

32) Aaron: Discover Y2 Emerald G3 Grass
	CDRodeffer: There is strength in numbers, it's true, but numbers aren't everything for sure. Oh, by the way, red alert in Emerald. If I sacrifice y3 in Blueberry, I can move the y1 from CDRodeffer and the y2 from Blueberry in for a catastrophe. We wouldn't want *that* now, would we?
	Aaron: Eeks!

33) CDRodeffer: Trade G2 R2 Blueberry

34) Aaron: Build Y3 Grass

35) CDRodeffer: Sacrifice Y3 Blueberry
Move Y2 Blueberry Cdrodeffer
Move Y2 Cdrodeffer Grass
Move Y1 Cdrodeffer Grass
Catastrophe Grass Yellow

36) Aaron: Trade R1 Y1 Aaron
	CDRodeffer: "Oh, bother," said Pooh, as he blew up the star system.
	Aaron: well at least you lost as many ships as I did...that's a comfort.

37) CDRodeffer: Build G2 Blueberry

38) Aaron: Build Y2 Emerald
	CDRodeffer: Such are the vicissitudes of life.

39) CDRodeffer: Trade G2 Y2 Blueberry

40) Aaron: Build Y3 Aaron

41) CDRodeffer: Build Y3 Blueberry

42) Aaron: Sacrifice Y3 Aaron
Move Y1 Emerald Blueberry
Move Y2 Emerald Blueberry
Discover Y1 Aaron G2 Forest
Catastrophe Blueberry Y

43) CDRodeffer: Build G2 Blueberry
	CDRodeffer: Um, OK....

44) Aaron: Build G2 Aaron

45) CDRodeffer: Sacrifice G3 Cdrodeffer
Build R1 Acqua
Build B1 Cdrodeffer
Build G3 Cdrodeffer

46) Aaron: Build G3 Aaron

47) CDRodeffer: Trade G2 Y2 Blueberry

48) Aaron: Trade G2 R2 Aaron

49) CDRodeffer: Sacrifice Y2 Blueberry
Move R1 Acqua Aaron
Move R2 Acqua Aaron
Catastrophe Aaron Red
	CDRodeffer: Ha! I anticipated as much!

50) Aaron: Trade G3 R3 Aaron
	Aaron: yeah, as soon as I hit "submit orders" I realized what I had done.  I'm feeling a little lost with no direct strategy.

51) CDRodeffer: Build G2 Blueberry

52) Aaron: Build R1 Aaron
	CDRodeffer: Home system defense is a great place to start.
	Aaron: I'm liking the Red home star idea though.  Will definitely do that in the future.

53) CDRodeffer: Trade G1 Y1 Blueberry
	CDRodeffer: It's kind of an experiment for me. Russell Grieshop often plays that way, though.

54) Aaron: Build Y2 Forest

55) CDRodeffer: Move R2 Blueberry Forest

56) Aaron: Move Y2 Forest Blueberry

57) CDRodeffer: Attack Y1S Forest

58) Aaron: Trade Y2 R2 Blueberry

59) CDRodeffer: Sacrifice G2 Blueberry
Build R1 Forest
Build Y2 Forest

60) Aaron: Discover R1 Aaron G2 Emerald

61) CDRodeffer: Discover Y1 Blueberry G2 Oscar

62) Aaron: Build G1 Aaron

63) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G3 Cdrodeffer
Build G3 Cdrodeffer
Build Y2 Oscar

	Aaron: *is overwhelmed by a profound sense of impending doom*
	Aaron: Well I thank you for the game, but I don't think I want to be around when my system goes supernova =)  I've learned a few things though!  Thanks again!
	SYSTEM: Aaron resigns.


644)
Started: 2005.9.7, Ended: 2005.9.8
Participants: jesse (S), rbryan (N)
Winner: jesse

1) rbryan: Homeworld Y3 B2 G3

2) jesse: Homeworld B2 Y1 G3

3) rbryan: Build G1 Rbryan
	jesse: Hello.

4) jesse: Build G1 Jesse

5) rbryan: Discover G1 Rbryan B1 Neptune

6) jesse: Discover G1 Jesse B3 Bluto
	rbryan: Hello

7) rbryan: Build G1 Neptune

8) jesse: Build G2 Jesse

9) rbryan: Build G2 Rbryan
	jesse: So, played much?

10) jesse: Sacrifice G3 Jesse
Build G2 Bluto
Build G3 Jesse
Build G3 Jesse

11) rbryan: Trade G2 Y2 Rbryan

12) jesse: Discover G2 Jesse Y3 Curry
	rbryan: No, not at all really; you?

13) rbryan: Build G2 Rbryan
	jesse: Yeah, I've played a fair amount.

14) jesse: Trade G1 B1 Bluto

15) rbryan: Trade G1 B1 Neptune

16) jesse: Trade B1 Y1 Bluto

17) rbryan: Build B1 Neptune
	jesse: Heh. Actually, this is what I meant to do last time, but I mistyped it. I did come up with some alternate plans, but your move made them considerably less attractive.

18) jesse: Sacrifice G3 Jesse
Build G1 Bluto
Build G1 Curry
Build G3 Jesse

19) rbryan: Trade B1 Y1 Neptune

20) jesse: Trade G1 B1 Bluto

21) rbryan: Sacrifice Y2 Rbryan
Move Y1 Neptune Bluto
Move Y1 Bluto Jesse

22) jesse: Build Y2 Bluto
	jesse: Wicked.
	rbryan: It looked like the fun move; but I'm not sure it won't cripple me...

23) rbryan: Sacrifice G3 Rbryan
Build Y2 Jesse
Build G1 Neptune
Build G3 Rbryan
	jesse: I'll certainly try to make you pay for it.

24) jesse: Trade G3 R3 Jesse

25) rbryan: Sacrifice G2 Rbryan
Build Y2 Jesse
Build G2 Rbryan

26) jesse: Sacrifice G3 Jesse
Build G3 Curry
Build G3 Bluto
Build Y3 Bluto
Catastrophe Jesse Y
	jesse: No catastrophe?
	rbryan: Nope. I beleive that would have lost me the game...
	jesse: Okay, then. Just bear in mind that I can do it myself if I think it's advantageous for me to do so, and in the meantime it gives me access to that large yellow.
	jesse: Ah, yes, I do see your problem now. Tight spot.

27) rbryan: Trade G3 R3 Rbryan

28) jesse: Sacrifice G2 Curry
Build R1 Jesse
Build B2 Bluto

29) rbryan: Trade G1 Y1 Neptune

30) jesse: Sacrifice Y2 Bluto
Move Y3 Bluto Jesse
Discover B2 Bluto Y1 Frink

31) rbryan: Build Y2 Neptune

32) jesse: Sacrifice G3 Curry
Build Y2 Jesse
Build Y2 Bluto
Build B3 Frink

33) rbryan: Build R1 Rbryan

34) jesse: Sacrifice Y3 Jesse
Move G3 Bluto Frink
Move G3 Frink Rbryan
Move B3 Frink Rbryan

35) rbryan: Attack G3S Rbryan

36) jesse: Sacrifice R3 Jesse
Attack R3N Rbryan
Attack G3N Rbryan
Attack R1N Rbryan

	rbryan: Good game
	SYSTEM: rbryan resigns.


625)
Started: 2005.9.5, Ended: 2005.9.29
Participants: Jesse (S), jeep (N)
Winner: Jesse

1) jeep: Homeworld B3 G1 Y3

2) jesse: Homeworld Y2 B1 G3
	jeep: Hello!  Well, I figure I'll try this out.  I'm currently (and temporarily) in China, with sporadic access to the internet, but I should be able to move every other day, at least.  Multiple moves per day, when I make them, if you are online too.  ;)

3) jeep: Build Y1 Jeep
	jesse: Hello.  It's no problem if you can't move very often.  It's nice if you can, of course, but definitely more important that you make the most of your time in China.  What are you there for, by the way?

4) jesse: Build G1 Jesse
	jeep: I'm working.  10-16 hour days.  Bleh.

5) jeep: Discover Y1 Jeep Y2 Trav

6) jesse: Discover G1 Jesse B3 Ungo
	jeep: Terrible sorry!  My laptop died.  I'm on a loaner right now.  I should have decent access except for the day I will be flying.

7) jeep: Trade Y3 G3 Jeep
	jesse: It's okay. Adverse conditions do come up now and then.

8) jesse: Build G1 Jesse
	jeep: They've been coming up way too often in my life lately.  ;)  Heck, I couldn't even type "Terribly" correctly in my last message though.  I've been in China too long.
	jesse: Huh. I thought you were going to try to freeze me out of yellow.

9) jeep: Move Y1 Trav Jeep
	jeep: Yeah, I skipped a step in my plan.  ;)  I'm not very good at this game yet.  heh.

10) jesse: Build G2 Ungo
	jeep: Bleh, I have too much time to forget what I'm doing and what I have already done.

11) jeep: Build Y1 Jeep

12) Jesse: Trade G2 Y2 Ungo

13) jeep: Discover Y1 Jeep B2 Tradago

14) Jesse: Build G2 Jesse
	jeep: If this is too painfully slow, let me know and I'll resign (or force me to).  I'm home now and slowly recovering and catching up.  I would expect that I will soon be playing at a "normal" pace, but it might take me a while to get there.
	Jesse: I don't mind the wait now and then, although it would be great if you could get back to a normal pace.

15) jeep: Sacrifice G3 Jeep
Build Y1 Tradago
Build Y2 Jeep
Build Y3 Jeep

16) Jesse: Build Y3 Ungo

17) jeep: Trade Y3 G3 Jeep

18) Jesse: Sacrifice G3 Jesse
Build G2 Ungo
Build G2 Ungo
Build G3 Jesse

19) jeep: Trade Y1 R1 Tradago
	jeep: My math sucks.  I somehow thought 3=2.  :(

20) Jesse: Trade G2 R2 Jesse
	Jesse: Only for very small values of 3.

21) jeep: Trade Y2 B2 Jeep
	jeep: Well, I figured out something new, which is good.  Esp. since I'm so far behind in this game. 

22) Jesse: Discover G2 Ungo Y2 Sol

23) jeep: Build B1 Jeep

24) Jesse: Sacrifice G3 Jesse
Build G2 Sol
Build G3 Ungo
Build G3 Jesse

25) jeep: Sacrifice G3 Jeep
Build Y1 Tradago
Build R1 Tradago
Build Y3 Jeep
	jeep: I feel like I should just concede to get to the next game.  I learned a lot, but this is only my first game, except one against another complete newbie and we were trying to figure the rules out... 

26) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build G3 Sol
Build R1 Jesse
	Jesse: You have played well, considering that.  It does look like an appropriate place to concede, if you wish.  However, I would also be happy to play to the end if you prefer.  Either way, thanks for the game, and I look forward to playing another sometime.

	jeep: I'll play again, if you want.  I learned quite a bit in just one game.  I'm sure I'll learn more in the next.  Is there a challenge feature?


646)
Started: 2005.9.7, Ended: 2005.9.13
Participants: MatrixFrog (S), weaselsdontfly (N)
Winner: MatrixFrog

1) weaselsdontfly: Homeworld B1 G2 R1
	weaselsdontfly: homeworld r1

2) MatrixFrog: Homeworld Y1 G3 Y3

	SYSTEM: weaselsdontfly resigns.


636)
Started: 2005.9.6, Ended: 2005.10.12
Participants: Cerulean (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G1 Y2 Y3
	MatrixFrog: Okay... first step is to set up your homeworld. Generally you want two stars of unequal sizes, and usually you do a big ship, because it's hard to build big ships later in the game.

2) Cerulean: Homeworld B3 G2 Y3
	MatrixFrog: Green and yellow are the most important colors at the beginning because they allow you to start building up a fleet of ships, and then moving those ships around the galaxy.
	MatrixFrog: Oh, and also, you generally don't want your homeworld to have the same sizes as mine, because that makes it easier for me to get to you.
On the other hand, it makes it easier for you to get to me as well, so there is an advantage. But in general, I'd recommend not doing a small-medium star system, so do small-large or medium-large instead.

3) MatrixFrog: Build Y1 Matrixfrog

4) Cerulean: Build Y1 Cerulean

5) MatrixFrog: Discover Y1 Matrixfrog B3 Ice

6) Cerulean: Discover Y1 Cerulean G1 Hydrogen

7) MatrixFrog: Build Y1 Matrixfrog

8) Cerulean: Trade Y3 B3 Cerulean

9) MatrixFrog: Trade Y1 G1 Ice

10) Cerulean: Build B1 Cerulean

11) MatrixFrog: Build G2 Ice

12) Cerulean: Trade B3 Y3 Cerulean

13) MatrixFrog: Move Y3 Matrixfrog Ice

14) Cerulean: Build B1 Cerulean

15) MatrixFrog: Build Y1 Ice

16) Cerulean: Move B1 Cerulean Hydrogen

17) MatrixFrog: Build Y2 Matrixfrog

18) Cerulean: Move Y1 Hydrogen Ice

19) MatrixFrog: Discover Y1 Matrixfrog R3 Helium

20) Cerulean: Build Y2 Cerulean

21) MatrixFrog: Discover Y3 Ice R1 Delta

22) Cerulean: Build B1 Cerulean

23) MatrixFrog: Move Y3 Delta Cerulean

24) Cerulean: Trade B1 R1 Cerulean

25) MatrixFrog: Build Y3 Cerulean
Catastrophe Cerulean Y

26) Cerulean: Build R1 Cerulean

27) MatrixFrog: Move G1 Ice Matrixfrog

28) Cerulean: Move Y1 Ice Hydrogen

29) MatrixFrog: Build G2 Matrixfrog

30) Cerulean: Build Y2 Hydrogen
	MatrixFrog: Even when there's only a day or less between moves, I forget what happened before, and have no idea how we got to the present configuration. I'm trying to figure out why I would use my big ship the way I did, leaving me with only 1s and 2s at home.
	Cerulean: i have the same problem.  i end up reading all the recent moves to figure out what the story so far is.  this would play much better in person.  *sigh* if only i could get my fiancee to try this.

31) MatrixFrog: Build Y3 Matrixfrog

32) Cerulean: Sacrifice Y2 Hydrogen
Move Y1 Hydrogen Ice
Move Y1 Ice Matrixfrog
Catastrophe Matrixfrog Y

33) MatrixFrog: Move Y1 Ice Matrixfrog
	Cerulean: gotcha!

34) Cerulean: Trade R1 Y1 Cerulean
	MatrixFrog: I'm usually good at avoiding things like that. *sad face*

35) MatrixFrog: Sacrifice G2 Matrixfrog
Build G2 Ice
Build G3 Ice

36) Cerulean: Build Y2 Cerulean

37) MatrixFrog: Move Y1 Helium Hydrogen

38) Cerulean: Move Y1 Cerulean Hydrogen

39) MatrixFrog: Trade G2 R2 Ice

40) Cerulean: Build Y2 Cerulean

41) MatrixFrog: Build G2 Matrixfrog

42) Cerulean: Build R1 Cerulean

43) MatrixFrog: Build R1 Ice

44) Cerulean: Build R2 Cerulean

45) MatrixFrog: Discover G1 Matrixfrog Y2 Lithium

46) Cerulean: Build Y3 Hydrogen

47) MatrixFrog: Sacrifice Y1 Hydrogen
Move R2 Ice Matrixfrog

48) Cerulean: Move R1 Cerulean Hydrogen

49) MatrixFrog: Build G3 Matrixfrog

50) Cerulean: Trade Y3 G3 Hydrogen
	MatrixFrog: I'm doing so terribly...

51) MatrixFrog: Sacrifice G3 Matrixfrog
Build Y1 Matrixfrog
Build G3 Lithium
Build R2 Ice

52) Cerulean: Build Y3 Hydrogen
	MatrixFrog: I love sacrificing green ships.

53) MatrixFrog: Trade G3 Y3 Ice

54) Cerulean: Build G3 Hydrogen

55) MatrixFrog: Sacrifice Y3 Ice
Move Y1 Matrixfrog Cerulean
Move G2 Ice Hydrogen
Move Y1 Matrixfrog Cerulean
Catastrophe Cerulean Y
Catastrophe Hydrogen G

56) Cerulean: Trade R2 Y2 Cerulean

57) MatrixFrog: Discover G1 Lithium Y1 Magnesium

58) Cerulean: Build Y1 Cerulean

59) MatrixFrog: Build G1 Magnesium

60) Cerulean: Trade Y2 G2 Cerulean

61) MatrixFrog: Move G1 Magnesium Cerulean

62) Cerulean: Move G2 Cerulean Magnesium

63) MatrixFrog: Build G3 Cerulean

64) Cerulean: Build G3 Magnesium

65) MatrixFrog: Sacrifice R2 Ice
Attack Y1S Cerulean
Attack R1S Cerulean

66) Cerulean: Move G3 Magnesium Lithium
	MatrixFrog: I don't see any way out of this. I'm thinking maybe there is one that I'm just not seeing.

67) MatrixFrog: Attack B1S Cerulean



616)
Started: 2005.9.3, Ended: 2005.9.6
Participants: jesse (S), MatrixFrog (N)
Winner: jesse

1) MatrixFrog: Homeworld B2 Y1 R3

2) jesse: Homeworld B3 Y1 G3

3) MatrixFrog: Trade R3 G3 Matrixfrog
	jesse: Greetings, neighbor.  We see you are a warlike people.  While it is fortunate (for us) that you have stripped your world of all its growth potential, we are deeply saddened to see a world so mistreated.  It is only proper that we liberate it from your oppressive tyranny.

4) jesse: Build G1 Jesse

5) MatrixFrog: Trade G3 R3 Matrixfrog

6) jesse: Trade G1 Y1 Jesse

7) MatrixFrog: Trade R3 G3 Matrixfrog
	jesse: My people do not understand your alien motives.
	MatrixFrog: Yeah. I was going to discover a new system, but I need to build more first, which I didn't realize. So this sets me back a couple of turns. *Sigh*

8) jesse: Build Y2 Jesse
	MatrixFrog: I'm kind of new to this.

9) MatrixFrog: Build G1 Matrixfrog

10) jesse: Discover Y2 Jesse G2 Moss
	jesse: Well, here's tip number one: The two most important colors to have access to in the early game are yellow and green.  Green is necessary to increase your fleet.  Yellow is necessary to disperse your fleet and stay safe from overpopulations.  Blue is also important for the same reason, and to keep your fleet flexible.  (Notice that I can't afford to build any more yellow ships until I move some out, or change their color.)  Having your yellow ships (as opposed to planets) is more important than having blue ships because yellow is more useful to sacrifice.  Red is only important once the two fleets are near to coming in contact with each other.

11) MatrixFrog: Build G1 Matrixfrog

12) jesse: Build Y2 Jesse

13) MatrixFrog: Trade G3 R3 Matrixfrog

14) jesse: Trade Y2 R2 Jesse

15) MatrixFrog: Discover R3 Matrixfrog G3 Green
	jesse: Now that you are mobile, there is a rule of thumb that when your opponent picks up a gun, you must pick up a gun.  Therefore, I now follow you into the red economy.
	jesse: On the other hand, to really put your big gun to use, you would have to violate another key principle: Never leave your homeworld undefended.
	jesse: It is possible at times ignore either of these principles, but you do so at your own peril.

16) jesse: Build Y2 Jesse

17) MatrixFrog: Build R1 Green

18) jesse: Build Y2 Moss

19) MatrixFrog: Build G1 Matrixfrog

20) jesse: Discover Y1 Jesse B2 Smurf

21) MatrixFrog: Trade G1 B1 Matrixfrog

22) jesse: Sacrifice G3 Jesse
Build Y3 Moss
Build Y3 Smurf
Build Y3 Jesse

23) MatrixFrog: Move B1 Matrixfrog Green

24) jesse: Trade Y2 G2 Jesse

25) MatrixFrog: Build G1 Matrixfrog

26) jesse: Sacrifice Y3 Moss
Move G2 Jesse Moss
Discover G2 Moss B3 Boom
Move G2 Boom Matrixfrog
Catastrophe Matrixfrog G



608)
Started: 2005.9.2, Ended: 2005.9.5
Participants: MatrixFrog (S), Aaron (N)
Winner: MatrixFrog

1) Aaron: Homeworld Y1 B2 G3
	Aaron: Hail, and good luck!  Welcome to the family!

2) MatrixFrog: Homeworld G3 Y2 R3
	MatrixFrog: homeworld G3 Y2 R3
	MatrixFrog: Oops. Now I get it. This box is for communication, the other one is for game commands.

3) Aaron: Build G1 Aaron

4) MatrixFrog: Build R1 Matrixfrog

5) Aaron: Trade G1 R1 Aaron

6) MatrixFrog: Discover R1 Matrixfrog B1 B1

7) Aaron: Build R1 Aaron
	MatrixFrog: I'm not clever enough to think of creative names for my systems...
	Aaron: rofl =)  That's fine...much easier to type =)

8) MatrixFrog: Trade R1 Y1 B1

9) Aaron: Trade R1 Y1 Aaron
	MatrixFrog: Well my only other idea was "LittleBlueStar" so I guess you're right.

10) MatrixFrog: Build R1 Matrixfrog

11) Aaron: Build R1 Aaron

12) MatrixFrog: Move Y1 B1 Matrixfrog

13) Aaron: Trade R1 B1 Aaron

14) MatrixFrog: Build Y2 Matrixfrog

15) Aaron: Construct Y2 Aaron

16) MatrixFrog: Discover Y2 Matrixfrog R1 Mercury

17) Aaron: Discover Y2 Aaron B3 Cobalt
	MatrixFrog: I like how individual stars are either red, yellow, green, or blue, but in the "starry background" all the distant stars are white. Come to think of it, that's true in real life too. There are "red dwarves" and such, but most stars appear white or very close to white.
	Aaron: =D

18) MatrixFrog: Build Y3 Matrixfrog

19) Aaron: Build Y3 Aaron

20) MatrixFrog: Discover Y2 Mercury G3 Forest

21) Aaron: Trade Y3 R3 Aaron

22) MatrixFrog: Discover Y2 Forest B1 Droplet

23) Aaron: Move Y2 Cobalt Droplet

24) MatrixFrog: Move Y3 Matrixfrog Droplet

25) Aaron: Discover R1 Aaron G3 Emerald

26) MatrixFrog: Trade Y3 R3 Droplet

27) Aaron: Move Y2 Droplet Emerald

28) MatrixFrog: Build Y3 Matrixfrog

29) Aaron: Build Y3 Emerald

30) MatrixFrog: Build R1 Matrixfrog

31) Aaron: Sacrifice Y2 Emerald
Move Y3 Emerald Droplet
Move Y3 Droplet Matrixfrog
Catastrophe Matrixfrog Y

32) MatrixFrog: Sacrifice R1 Matrixfrog

Pass
	MatrixFrog: Damn it. Good move.

33) Aaron: Build Y1 Aaron
	MatrixFrog: As far as I can see, destroying one of my own ships was the only way to prevent you from destroying my entire home fleet.
	Aaron: Well, It would have taken me a move or two to get a yellow ship to Emerald.  You might have done better to move R3 from Droplet to Emerald and attack any yellow ships I send there.
	Aaron: But I'm new to this game too...

34) MatrixFrog: Move Y2 Droplet Matrixfrog
	MatrixFrog: But since you destroyed my 2-star, MatrixFrog is now a one-star system which is connected to Aaron. So you could have brought your R3 directly across.

35) Aaron: Move Y1 Aaron Emerald
	MatrixFrog: I don't have the standard colors of pyramids. I got the IceTowers set which is a stash each of clear, cyan, purple, and opaque white. It's much easier when you don't have to reassign the colors. And you also don't have to worry about the pieces taking up space on the table. :-D
	Aaron: Doh!  I forgot about that!

36) MatrixFrog: Build Y2 Matrixfrog

37) Aaron: Build Y2 Emerald

38) MatrixFrog: Trade R3 Y3 Droplet

39) Aaron: Trade Y1 R1 Aaron

40) MatrixFrog: Move Y3 Droplet Emerald

41) Aaron: Sacrifice Y2 Emerald
Move R3 Aaron Matrixfrog
Move R1 Aaron Matrixfrog
Catastrophe Matrixfrog R

42) MatrixFrog: Discover Y3 Emerald B2 Blue
	MatrixFrog: That's basically exactly the same as what I was planning to do.

43) Aaron: Build R1 Emerald
	MatrixFrog: I think my main weakness in this game is too much offense, not enough defense.
	Aaron: I could see you coming...I had to do a pre-emptive strike.

44) MatrixFrog: Trade Y3 R3 Blue

45) Aaron: Trade G3 R3 Aaron

46) MatrixFrog: Build Y1 Matrixfrog

47) Aaron: Build Y2 Emerald

48) MatrixFrog: Move Y1 Matrixfrog Aaron

49) Aaron: Move R3 Aaron Matrixfrog

50) MatrixFrog: Sacrifice R3 Blue
Attack B1N Aaron
Pass
Pass



609)
Started: 2005.9.2, Ended: 2005.9.11
Participants: misuba (S), Aaron (N)
Winner: Aaron

1) Aaron: Homeworld Y1 B2 G3
	Aaron: Hail, and good luck!  Welcome to the family!

2) misuba: Homeworld G3 Y2 B2

3) Aaron: Build G1 Aaron

4) misuba: Build B1 Misuba

5) Aaron: Trade G1 B1 Aaron

6) misuba: Trade B2 G2 Misuba

7) Aaron: Build G1 Aaron

8) misuba: Build G1 Misuba

9) Aaron: Discover G3 Aaron Y3 Lemons

10) misuba: Discover G2 Misuba B1 Giantpanda

11) Aaron: Trade B1 Y1 Aaron
	Aaron: *shakes his head in disbelief*  What the heck am I doing?

	SYSTEM: misuba resigns.


610)
Started: 2005.9.3, Ended: 2005.10.5
Participants: Aaron (S), CDRodeffer (W), invisiblejon (N), Kermit (E)
Winner: Aaron

1) invisiblejon: Homeworld G3 Y2 R3

2) Kermit: Homeworld G3 B2 Y2

3) Aaron: Homeworld Y1 B2 G3

4) CDRodeffer: Homeworld R1 Y3 G3

5) invisiblejon: Build R1 Invisiblejon

6) Kermit: Build Y1 Kermit
	Kermit: construct y1 g3

error:   	Can't call method "name" on an undefined value at /home/html/games/lib/Homeworlds/Pos.pm line 281.
context:  	
...  	
277:  	
278:  	#does the System exist?
279:  	my $system = $self->getSystem($inSystem);
280:  	if (! defined $system) {
281:  	push @$errors, "The ".$system->name()." system does not exist.";
282:  	last MOVE;
283:  	}
284:  	
285:  	#does the user have access to Green?
...  	
code stack:  	/home/html/games/lib/Homeworlds/Pos.pm:281
/usr/local/lib/perl5/site_perl/5.8.7/Games/Sequential.pm:158
/home/html/games/HTML/mhtml/play_homeworlds.mhtml:326
/home/html/games/HTML/main.html:26
/home/html/games/HTML/autohandler:10
raw error
	Kermit: construct Y1 G3E <======that was my corrected command but I got the same error as below.

7) Aaron: Build G1 Aaron
	Aaron: All fixed.  Thanks, Kermit.

8) CDRodeffer: Build G1 Cdrodeffer

9) invisiblejon: Discover R3 Invisiblejon Y1 Persephone

10) Kermit: Discover Y2 Kermit R1 Spork

11) Aaron: Trade G1 R1 Aaron

12) CDRodeffer: Discover G1 Cdrodeffer B2 Blue_ball_pennsylvania

13) invisiblejon: Build R1 Invisiblejon

14) Kermit: Trade Y1 B1 Kermit

15) Aaron: Build R2 Aaron

16) CDRodeffer: Build G1 Blue_ball_pennsylvania

17) invisiblejon: Build R2 Invisiblejon

18) Kermit: Build B1 Kermit

19) Aaron: Trade R1 Y1 Aaron
	CDRodeffer: Aaron -- what win condition are we using here? Last person standing? First kill? Kill your left-hand neighbor (not counting resignations)?
	Aaron: Currently it is still "Last Man Standing."  I just haven't had time to do the "left-hand-neighbour" but I am 99% certain that is the option I will go with (as a Variant most likely).

20) CDRodeffer: Trade G1 Y1 Blue_ball_pennsylvania

21) invisiblejon: Move R3 Persephone Kermit

22) Kermit: Trade B1 Y1 Kermit

23) Aaron: Build R1 Aaron

24) CDRodeffer: Build Y1 Blue_ball_pennsylvania

25) invisiblejon: Attack Y1E Kermit

26) Kermit: Build B1 Kermit

27) Aaron: Build Y2 Aaron

28) CDRodeffer: Trade Y1 B1 Blue_ball_pennsylvania

29) invisiblejon: Move R3 Kermit Spork

30) Kermit: Discover Y2 Spork R3 Chuckles

31) Aaron: Trade Y1 B1 Aaron

32) CDRodeffer: Discover G1 Blue_ball_pennsylvania B1 Dwarf

33) invisiblejon: Move R1 Invisiblejon Dwarf

34) Kermit: Trade B1 Y1 Kermit

35) Aaron: Discover Y2 Aaron G3 Emerald

36) CDRodeffer: Build G1 Cdrodeffer

37) invisiblejon: Attack G1W Dwarf

38) Kermit: Build Y1 Kermit

39) Aaron: Move B1 Aaron Emerald

40) CDRodeffer: Move B1 Blue_ball_pennsylvania Cdrodeffer

41) invisiblejon: Build R2 Dwarf

42) Kermit: Discover Y1 Kermit G1 Sanctuary

43) Aaron: Move R2 Aaron Emerald

44) CDRodeffer: Move G1 Cdrodeffer Blue_ball_pennsylvania

45) invisiblejon: Trade R2 Y2 Dwarf

46) Kermit: Move B1 Kermit Sanctuary

47) Aaron: Move R2 Emerald Blue_ball_pennsylvania

48) CDRodeffer: Sacrifice Y1 Blue_ball_pennsylvania
Move G1 Blue_ball_pennsylvania Cdrodeffer

49) invisiblejon: Move G1 Dwarf Kermit
	CDRodeffer: If I were as tedious as a king, I could find it in my heart to bestow it all of your worship. -- Much Ado about Nothing. ACT III Scene 5.

50) Kermit: Build Y1 Kermit

51) Aaron: Build Y2 Emerald

52) CDRodeffer: Build B1 Cdrodeffer

53) invisiblejon: Build Y3 Kermit
Catastrophe Kermit Yellow

54) Aaron: Move Y2 Emerald Blue_ball_pennsylvania
	Aaron: rofl!  oops!  Clark has gone and disappeared =)
	Aaron: Checking that now.
	Aaron: wb, Clark =)  Sorry about that. I am aware that there is still a blank space where East seat used to be.  That'll take me longer to fix.

55) CDRodeffer: Discover B1 Cdrodeffer G2 Soylent_people
	CDRodeffer: I must have missed quite a bit of drama.

56) invisiblejon: Move R1 Dwarf Soylent_people

57) Aaron: Sacrifice Y2 Blue_ball_pennsylvania
Move R2 Blue_ball_pennsylvania Dwarf
Move R2 Dwarf Kermit

58) CDRodeffer: Build B2 Soylent_people

59) invisiblejon: Sacrifice G1 Kermit
Build R2 Soylent_people

60) Aaron: Build R2 Kermit

61) CDRodeffer: Construct B2 Cdrodeffer

62) invisiblejon: Attack B2W Soylent_people
	Kermit: OK from now on I will read the strategy and tips for beginners BEFORE I start the game. ;) (not that it would have made much difference)

63) Aaron: Trade R2 Y2 Kermit

64) CDRodeffer: Trade B1 Y1 Cdrodeffer

65) invisiblejon: Attack B1W Soylent_people

66) Aaron: Move R2 Kermit Sanctuary

67) CDRodeffer: Build Y1 Cdrodeffer

68) invisiblejon: Move Y2 Dwarf Soylent_people

69) Aaron: Sacrifice Y2 Kermit
Move Y2 Emerald Soylent_people
Move Y2 Soylent_people Cdrodeffer
Catastrophe Cdrodeffer Yellow

70) CDRodeffer: Trade G1 Y1 Cdrodeffer
	Aaron: Oops!  Redudant elimination message =/
	CDRodeffer: I'm feeling rather picked on.

71) invisiblejon: Move R2 Soylent_people Sanctuary

72) Aaron: Attack R2N Sanctuary

73) CDRodeffer: Build Y1 Cdrodeffer

74) Aaron: Attack Y1E Sanctuary

75) CDRodeffer: Build G1 Cdrodeffer
	SYSTEM: invisiblejon resigns.
	CDRodeffer: You know, after having been the target of so many attacks, forcing N to resign on time felt kind of -- good. :-)

76) Aaron: Move R2 Sanctuary Soylent_people

77) CDRodeffer: Construct B1 Cdrodeffer

78) Aaron: Attack Y2N Soylent_people

79) CDRodeffer: Move B2 Cdrodeffer Chuckles

80) Aaron: Trade B1 Y1 Emerald

81) CDRodeffer: Attack Y2E Chuckles

82) Aaron: Attack B2N Soylent_people

83) CDRodeffer: Sacrifice G1 Cdrodeffer
Build Y2 Chuckles

84) Aaron: Attack B1E Sanctuary
	Aaron: I am seeing the other problem with protracted, last-man-standing games, namely excessive resources.
	CDRodeffer: Yeah. That's why they eventually went with reduced stashes for fewer people. In a recent Wunderland News, Andy Looney calls what you refer to as "left man down" Homeworlds "Sinister" Homeworlds.

85) CDRodeffer: Move Y1 Cdrodeffer Invisiblejon
	Aaron: I much prefer the "Sinister" name and I'm sad I didn't think of it first =)  It's a little late to change so, "left man down" is kind of stuck.

86) Aaron: Attack R1N Soylent_people

87) CDRodeffer: Build Y2 Cdrodeffer
	CDRodeffer: There's no reason you can't change the name.
	Aaron: Actually, there is a small technical issue =)  I never took into consideration the possibility of renaming variants.  It's not that it's not possible, I just haven't had time to consider the ramifications and what exactly I would have to change.  It is on my todo list though.

88) Aaron: Move R2 Sanctuary Emerald

89) CDRodeffer: Discover Y2 Cdrodeffer R2 Red_buttons

90) Aaron: Build Y3 Emerald

91) CDRodeffer: Build Y3 Cdrodeffer

92) Aaron: Sacrifice Y3 Emerald
Move R2 Emerald Cdrodeffer
Move R1 Soylent_people Cdrodeffer
Move R2 Soylent_people Cdrodeffer
Catastrophe Cdrodeffer Red

	Aaron: Well, I *think* this will end the game.  If so, thank you all for the game!  If not, I apologize and await my beating =)


638)
Variants: "Left man down"
Started: 2005.9.6, Ended: 2005.9.20
Participants: MatrixFrog (S), rbryan (N), zevzimra (E)
Winner: rbryan

1) rbryan: Homeworld B2 G1 Y3

2) zevzimra: Homeworld G2 B3 Y3

3) MatrixFrog: Homeworld G1 B3 Y3

4) rbryan: Build Y1 Rbryan
	MatrixFrog: This is my first time playing a 3-player game. Good luck to you both.

5) zevzimra: Build Y1 Zevzimra

6) MatrixFrog: Build Y1 Matrixfrog

7) rbryan: Trade Y1 G1 Rbryan

8) zevzimra: Trade Y1 R1 Zevzimra

9) MatrixFrog: Build Y1 Matrixfrog

10) rbryan: Discover G1 Rbryan G3 Iceland

11) zevzimra: Build Y1 Zevzimra

12) MatrixFrog: Trade Y3 R3 Matrixfrog
	zevzimra: Hey, thanks for the encouragement, MaxtrixFrog!  This is literally my first time playing this game!

13) rbryan: Build G1 Iceland

14) zevzimra: Discover R1 Zevzimra Y1 Gateway

15) MatrixFrog: Build R1 Matrixfrog

16) rbryan: Build Y2 Rbryan
	MatrixFrog: Question: The whole good/evil thing isn't implemented yet, right? So how do we know who we should try to eliminate?
	MatrixFrog: From the SDG-announce mailing list:

I have just implemented a new victory condition for Homeworlds at SDG 
called "Left Man Down."  The player who elminates the person to his left 
is the victor.  "Left" is relative.  In a 3-player game, or a 4-player 
game where West seat has already been defeated, South's left-hand 
opponent would be North.  I have not yet tested this code in a live 
game, but my offline tests show it should work.  If you have any 
weirdness in a live game, please let me know.  If you have an existing 
3/4-player game running and everybody would like the victory conditions 
changed, let me know and I will make that happen.
	MatrixFrog: So, what do you guys think? Do we want to do that?
	rbryan: I'd say yes, because I think it should make a better game.  This is also my first three player game, so I don't have a particularly strong opinion.

17) zevzimra: Build Y2 Zevzimra
	zevzimra: Sure, that's fine, let's go for it...  can someone tell Aaron please?

18) MatrixFrog: Discover Y1 Matrixfrog G2 Jeetoo
	MatrixFrog: Same here, rbryan... I'll send him a private message.

19) rbryan: Build Y2 Rbryan
	Aaron: Done.  Please let me know if something weird happens with the next elimination.  It is easily undone.

20) zevzimra: Trade Y2 G2 Zevzimra

21) MatrixFrog: Build Y2 Matrixfrog

22) rbryan: Trade Y3 G3 Rbryan

23) zevzimra: Move Y1 Zevzimra Gateway

24) MatrixFrog: Build Y2 Jeetoo

25) rbryan: Sacrifice Y2 Rbryan
Discover G1 Iceland B2 Romulus
Discover G1 Iceland B2 Remus

26) zevzimra: Sacrifice G2 Zevzimra
Build Y2 Zevzimra
Build Y3 Zevzimra
	rbryan: Hmm, that ought to confuse them.  I mean, I wouldn't mis-type the size of the piece to discover twice in a row, would I?  Nope, not me.  Sigh.
	MatrixFrog: I'm confused. What did you mean to do?
	rbryan: Move to two smalls; hence adjacent to zevzimra, whom I'm meant to be attacking.  It's OK, it just means my master plan will need rethinking...

27) MatrixFrog: Build R1 Matrixfrog

28) rbryan: Sacrifice G3 Rbryan
Build Y3 Rbryan
Build G2 Romulus
Build G2 Remus

29) zevzimra: Trade Y3 G3 Zevzimra

30) MatrixFrog: Sacrifice Y2 Jeetoo
Discover Y1 Jeetoo R3 X
Move Y1 X Rbryan

31) rbryan: Trade Y3 R3 Rbryan

32) zevzimra: Move G3 Zevzimra Gateway

33) MatrixFrog: Build Y2 Rbryan

34) rbryan: Sacrifice R3 Rbryan
Attack Y1S Rbryan
Attack Y2S Rbryan
Pass

35) zevzimra: Trade Y3 G3 Zevzimra

36) MatrixFrog: Move R3 Matrixfrog Remus

37) rbryan: Trade Y2 R2 Rbryan

38) zevzimra: Move Y2 Zevzimra Gateway

39) MatrixFrog: Attack G2N Remus

40) rbryan: Sacrifice Y1 Rbryan
Discover G1 Remus Y1 Runaway

41) zevzimra: Build R1 Gateway

42) MatrixFrog: Build R2 Remus

43) rbryan: Sacrifice G2 Romulus
Build Y2 Rbryan
Build Y3 Rbryan

44) zevzimra: Sacrifice Y2 Gateway
Move R1 Gateway Romulus
Move G3 Gateway Romulus

45) MatrixFrog: Build Y2 Matrixfrog

46) rbryan: Sacrifice Y3 Rbryan
Discover G1 Romulus B1 Iwin
Move G1 Runaway Zevzimra
Move G1 Iwin Zevzimra
Catastrophe Zevzimra Green



626)
Started: 2005.9.5, Ended: 2005.9.13
Participants: MatrixFrog (S), zapple (N)
Winner: zapple

1) zapple: Homeworld B2 G1 Y3

2) MatrixFrog: Homeworld R2 G1 Y3

3) zapple: Build Y1 Zapple

4) MatrixFrog: Build Y1 Matrixfrog

5) zapple: Build Y1 Zapple

6) MatrixFrog: Discover Y1 Matrixfrog B3 Blueberry

7) zapple: Move Y1 Zapple Blueberry

8) MatrixFrog: Discover Y1 Blueberry G1 Pine

9) zapple: Trade Y1 B1 Zapple
	MatrixFrog: You can talk here too. But we have IM so it's not really necessary.

10) MatrixFrog: Build Y1 Pine

11) zapple: Trade Y1 R1 Blueberry

12) MatrixFrog: Discover Y1 Pine B2 Newberry

13) zapple: Move Y3 Zapple Blueberry

14) MatrixFrog: Build Y1 Matrixfrog

15) zapple: Build B1 Zapple

16) MatrixFrog: Build Y2 Pine

17) zapple: Move Y3 Blueberry Zapple

18) MatrixFrog: Move Y2 Pine Blueberry

19) zapple: Build Y2 Zapple

20) MatrixFrog: Discover Y1 Pine Y2 Cheese

21) zapple: Move Y3 Zapple Blueberry

22) MatrixFrog: Move Y2 Blueberry Zapple

23) zapple: Trade Y3 R3 Blueberry
	MatrixFrog: Intruder!

24) MatrixFrog: Pass

25) zapple: Trade R3 B3 Blueberry

26) MatrixFrog: Pass

27) zapple: Trade B1 R1 Zapple

28) MatrixFrog: Build Y3 Matrixfrog

29) zapple: Trade B3 Y3 Blueberry

30) MatrixFrog: Discover Y3 Matrixfrog B3 Zxc

31) zapple: Build R1 Zapple

32) MatrixFrog: Trade Y1 G1 Newberry

33) zapple: Move R1 Zapple Zxc

34) MatrixFrog: Build Y1 Zapple

35) zapple: Trade Y3 R3 Blueberry

36) MatrixFrog: Trade Y2 B2 Zapple

37) zapple: Sacrifice B1 Zapple
Trade R3 Y3 Blueberry

38) MatrixFrog: Discover Y3 Matrixfrog R3 Ruby

39) zapple: Build Y2 Zapple
	zapple: attack Y1 matrixfrog

40) MatrixFrog: Trade B2 R2 Zapple

41) zapple: Move R1 Blueberry Matrixfrog

42) MatrixFrog: Attack R1N Zapple

43) zapple: Attack Y1S Matrixfrog



650)
Started: 2005.9.9, Ended: 2005.9.16
Participants: pigasuspig (S), Jesse (N)
Winner: Jesse

1) jesse: Homeworld Y3 G2 B3

2) pigasuspig: Homeworld G1 B3 R3
	jesse: Hello.  Have you played before?
	pigasuspig: homeworld G1 B3 R3

3) Jesse: Build B1 Jesse
	pigasuspig: I've played homeworlds, but not online. I'm so sorry about the delay--it should not happen again.
	Jesse: I'm glad you could finally join me.

4) pigasuspig: Build R1 Pigasuspig

5) Jesse: Build B1 Jesse

6) pigasuspig: Trade R1 Y1 Pigasuspig

7) Jesse: Discover B1 Jesse B1 Zoid

8) pigasuspig: Build R1 Pigasuspig

9) Jesse: Build B2 Jesse

10) pigasuspig: Discover R1 Pigasuspig Y2 Oliver

11) Jesse: Trade B2 R2 Jesse

12) pigasuspig: Build Y1 Pigasuspig

13) Jesse: Build B2 Jesse

14) pigasuspig: Build Y1 Pigasuspig

15) Jesse: Trade B2 Y2 Jesse

16) pigasuspig: Build Y2 Pigasuspig

17) Jesse: Build Y3 Jesse
	Jesse: Be careful about this.  Even if you don't trigger the catastrophe in your home system, I can do so at the end of my turn.  In fact, here I can take one of the large yellows first, then take away all of yours.
	Jesse: I feel bad doing both here, so I'll just take the large and give you a chance to save your fleet of yellows.

18) pigasuspig: Trade Y2 B2 Pigasuspig

19) Jesse: Move Y3 Jesse Zoid
	pigasuspig: Thanks--for some reason, I thought catastrophes happened at 5 ships.

20) pigasuspig: Move Y1 Pigasuspig Oliver

21) Jesse: Trade B1 G1 Zoid

22) pigasuspig: Discover Y1 Oliver G1 Ficus

23) Jesse: Build G2 Zoid

24) pigasuspig: Build Y2 Ficus

25) Jesse: Build Y3 Zoid

26) pigasuspig: Move R1 Oliver Zoid

27) Jesse: Build R1 Jesse

28) pigasuspig: Build Y2 Pigasuspig

29) Jesse: Sacrifice R1 Jesse
Attack R1S Zoid

30) pigasuspig: Sacrifice Y2 Pigasuspig
Move Y2 Ficus Jesse
Move Y1 Ficus Jesse
Catastrophe Jesse Y

31) Jesse: Sacrifice Y3 Zoid
Move Y3 Zoid Jesse
Move Y3 Jesse Pigasuspig
Move B3 Jesse Pigasuspig

32) pigasuspig: Move R3 Pigasuspig Jesse
	Jesse: Quite a violent game we've got here, all of a sudden.

33) Jesse: Sacrifice G2 Zoid
Build R1 Jesse
Build R1 Jesse
Catastrophe Jesse R
	pigasuspig: Indeed.

34) pigasuspig: Move B2 Pigasuspig Jesse
	Jesse: Yup.

35) Jesse: Move Y3 Pigasuspig Jesse
	pigasuspig: I have this vision that whoever wins will be clinging to a single ship on a single homeworld with NOTHING else in play....

36) pigasuspig: Trade B2 G2 Jesse

37) Jesse: Trade Y3 R3 Jesse
	Jesse: It does sort of feel that way, doesn't it?

38) pigasuspig: Build G1 Jesse
	Jesse: Now this is what I call a close race!

39) Jesse: Sacrifice R3 Jesse
Attack Y1S Pigasuspig
Attack Y1S Pigasuspig
Attack G1S Jesse
	Jesse: It looks like we both destroy each other's civilization.  I just get there moments ahead of you.  An exciting ending!  Things would have gone very differently if you hadn't let me get those two large yellows earlier.
	pigasuspig: Good game! I didn't see it until it was too late.



668)
Started: 2005.9.9, Ended: 2005.9.23
Participants: rootbeer (S), eugman (N)
Winner: rootbeer

1) eugman: Homeworld G1 B2 G3

2) rootbeer: Homeworld Y3 B1 G3
	eugman: Any idea how you name a system? 

3) eugman: Build G1 Eugman
	rootbeer: I think you name it when you discover it, something like "discover G3 northhomeworld Y3 solsystem", except that northhomeworld is supposed to be the name of your homeworld. Does that seem right to you?
	rootbeer: Maybe the name of your homeworld is your username?

4) rootbeer: Build G1 Rootbeer
	eugman: Eugman is a horrible name for a homeworld. Oh well.

5) eugman: Trade G1 Y1 Eugman

6) rootbeer: Discover G1 Rootbeer Y2 Lisasimpson

7) eugman: Construct G1 Eugman

8) rootbeer: Build G2 Lisasimpson

	SYSTEM: eugman resigns.


671)
Started: 2005.9.11, Ended: 2005.9.12
Participants: Tuxhedoh (S), rbryan (N)
Winner: rbryan

1) rbryan: Homeworld Y3 B2 G3
	Tuxhedoh: Im a homeworlds newbiee. this will be my first game.  ive read the rules and the hints on the wiki.

2) Tuxhedoh: Homeworld B3 G2 Y3
	rbryan: I'm fairly a newbie myself; I've finished one game in which I got crushed...

3) rbryan: Build G1 Rbryan
	rbryan: construct g1 rbryan

4) Tuxhedoh: Build Y1 Tuxhedoh

5) rbryan: Build G1 Rbryan

6) Tuxhedoh: Build Y1 Tuxhedoh

7) rbryan: Discover G1 Rbryan B1 Bluonia

8) Tuxhedoh: Trade Y1 R1 Tuxhedoh
	Tuxhedoh: I haven't any idea what to do next.  Not so easy trying to learn play-by-web style


9) rbryan: Build G1 Bluonia
	rbryan: construct g1 bluonia

10) Tuxhedoh: Trade Y3 G3 Tuxhedoh
	rbryan: Well, at least you're not mixing up comments and orders entry places...


11) rbryan: Trade G1 Y1 Bluonia

12) Tuxhedoh: Move R1 Tuxhedoh Bluonia

13) rbryan: Move G1 Bluonia Tuxhedoh

14) Tuxhedoh: Attack Y1N Bluonia

15) rbryan: Build G1 Tuxhedoh
Catastrophe Tuxhedoh G

16) Tuxhedoh: Move Y1 Bluonia Tuxhedoh

17) rbryan: Build G1 Rbryan

18) Tuxhedoh: Trade Y1 G1 Tuxhedoh

19) rbryan: Trade G1 R1 Rbryan

20) Tuxhedoh: Build Y1 Tuxhedoh

21) rbryan: Discover G3 Rbryan Y1 Doom

22) Tuxhedoh: Trade Y1 R1 Tuxhedoh

23) rbryan: Move G3 Doom Tuxhedoh
	Tuxhedoh: Not sure that there's anythign I can do to win at this point

24) Tuxhedoh: Trade R1 G1 Tuxhedoh
	rbryan: Yeah, I think I've got you.  I'd be happy to play again if you're up for a rematch...

25) rbryan: Trade G3 R3 Tuxhedoh
	rbryan: trade g3 r3 tuxhedo

	SYSTEM: Tuxhedoh resigns.


677)
Started: 2005.9.12, Ended: 2005.9.14
Participants: Jesse (S), MatrixFrog (N)
Winner: Jesse

1) MatrixFrog: Homeworld B3 G2 Y3

2) Jesse: Homeworld G2 B1 Y3
	MatrixFrog: Hello.

3) MatrixFrog: Build Y1 Matrixfrog
	Jesse: Hello.

4) Jesse: Build Y1 Jesse

5) MatrixFrog: Build Y1 Matrixfrog

6) Jesse: Discover Y1 Jesse G3 Bluey

7) MatrixFrog: Discover Y1 Matrixfrog G1 Tritium

8) Jesse: Build Y2 Jesse

9) MatrixFrog: Build Y2 Tritium

10) Jesse: Build Y2 Bluey

11) MatrixFrog: Discover Y2 Tritium B3 Lithium

12) Jesse: Trade Y2 R2 Jesse

13) MatrixFrog: Trade Y3 R3 Matrixfrog
	Jesse: I have to keep an eye on you, don't I?
	MatrixFrog: Um, I suppose so? I'm still somewhat new to this, although I think I've gotten better since I joined SDG. But... sure you do?

14) Jesse: Discover Y1 Bluey B1 Redgiant

15) MatrixFrog: Build R1 Matrixfrog
	MatrixFrog: You're either colorblind or obnoxious.

16) Jesse: Build R1 Jesse
	Jesse: Is that obnoxious?  Sorry.  I just found it amusingly perverse.
	Jesse: Oh, about keeping an eye out: You twice made moves that threatened an immediate victory, and I almost overlooked them.

17) MatrixFrog: Build Y2 Matrixfrog
	MatrixFrog: Oh, no I found it amusing too. Obnoxious, but also amusing.

18) Jesse: Build Y3 Bluey

19) MatrixFrog: Move R3 Matrixfrog Tritium

20) Jesse: Build Y3 Jesse
	Jesse: I think you should have taken that large yellow, rather than letting me get it.

21) MatrixFrog: Move R3 Tritium Lithium

22) Jesse: Move Y3 Bluey Redgiant
	MatrixFrog: You're probably right.
	MatrixFrog: ... tritium, lithium, tritium, lithium, tritium, lithium...

23) MatrixFrog: Trade Y2 G2 Matrixfrog

24) Jesse: Move R1 Jesse Bluey

25) MatrixFrog: Move Y1 Tritium Lithium

26) Jesse: Trade Y3 R3 Jesse
	MatrixFrog: The hyperspatial flux sounds like a cool place. Bunch of uninhabited stars floating around in some kind of multi-colored intergalactic vortex.

27) MatrixFrog: Build Y2 Matrixfrog
	Jesse: Too bad you're always leaving it behind, and everywhere you arrive, it isn't there anymore.

28) Jesse: Trade Y3 G3 Redgiant

29) MatrixFrog: Trade Y2 R2 Lithium

30) Jesse: Sacrifice G3 Redgiant
Build Y2 Jesse
Build Y3 Bluey
Build Y3 Redgiant

31) MatrixFrog: Sacrifice Y2 Matrixfrog
Move R3 Lithium Jesse
Move R2 Lithium Jesse
Catastrophe Jesse R

32) Jesse: Trade Y2 R2 Jesse

33) MatrixFrog: Build R1 Matrixfrog
	Jesse: Very aggressive.  It set me back a little, but it cost you more than it did me.

34) Jesse: Build R2 Jesse

35) MatrixFrog: Build G1 Matrixfrog
	MatrixFrog: I suppose so, yes.

36) Jesse: Move Y3 Redgiant Matrixfrog

37) MatrixFrog: Move G1 Matrixfrog Redgiant
	Jesse: Safety first.  Wait to attack until you can do so safely.  I've been waiting for this since you moved your large ship out.

38) Jesse: Sacrifice R2 Jesse
Attack R1N Matrixfrog
Attack R1N Matrixfrog

39) MatrixFrog: Trade G2 R2 Matrixfrog
	MatrixFrog: I realize that what I'm about to do kind of sucks, but I can't see anything better at the current moment.
	MatrixFrog: Wait. Nevermind. Hold on.
	MatrixFrog: Okay, I think I got it.
	MatrixFrog: No I don't. I suppose you've won.

40) Jesse: Sacrifice R2 Jesse
Attack R2N Matrixfrog
Attack Y1N Matrixfrog
	Jesse: Right, you're pretty well defenseless at this point.  This kind of move is why I built an extra r2 before launching the attack.
	Jesse: Imagine how much more preparation I would have needed if you still had a large ship at home.
	Jesse: Thanks for the game!



681)
Started: 2005.9.12, Ended: 2005.9.13
Participants: Tuxhedoh (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B3 Y1 G3

2) Tuxhedoh: Homeworld R1 Y3 G3
	TwoShort: Hello

3) TwoShort: Build G1 Twoshort
	Tuxhedoh: Stink
I messed up. oh well. we can play it out.

4) Tuxhedoh: Build G1 Tuxhedoh
	TwoShort: Having no starting blue will certainly be a challenge.  If you'd rather quit and start over, that's fine too.

5) TwoShort: Build G1 Twoshort

6) Tuxhedoh: Build G2 Tuxhedoh

7) TwoShort: Discover G1 Twoshort B2 Bob

8) Tuxhedoh: Move G1 Tuxhedoh Bob

9) TwoShort: Trade G1 R1 Bob

10) Tuxhedoh: Trade G1 B1 Bob

11) TwoShort: Attack B1S Bob

12) Tuxhedoh: Build G1 Tuxhedoh

13) TwoShort: Build G1 Twoshort

14) Tuxhedoh: Move G2 Tuxhedoh Bob

15) TwoShort: Move G1 Twoshort Bob

16) Tuxhedoh: Discover G1 Tuxhedoh Y2 Tux2

17) TwoShort: Discover G1 Twoshort B2 Joe

18) Tuxhedoh: Trade G2 R2 Bob

19) TwoShort: Build B1 Bob

20) Tuxhedoh: Attack G1N Bob

21) TwoShort: Trade R1 B1 Bob
Catastrophe Bob Blue

22) Tuxhedoh: Build G1 Tuxhedoh

23) TwoShort: Build G2 Twoshort
	TwoShort: create g2 twoshort


24) Tuxhedoh: Build G2 Tuxhedoh

25) TwoShort: Trade G3 Y3 Twoshort

26) Tuxhedoh: Move G2 Tuxhedoh Joe

27) TwoShort: Build G2 Twoshort

28) Tuxhedoh: Build G3 Tuxhedoh

29) TwoShort: Sacrifice Y3 Twoshort
Move G1 Joe Tuxhedoh
Pass
Pass
Catastrophe Tuxhedoh Green



684)
Variants: "Left man down"
Started: 2005.9.13, Ended: 2005.9.26
Participants: Aaron (S), istari (W), zevzimra (N), rootbeer (E)
Winner: zevzimra

1) zevzimra: Homeworld G2 B3 Y3
	rootbeer: To be sure I understand: If Aaron (S) is eliminated, I win. If I am eliminated, zevzimra (N) wins. Right?
	Aaron: nay, only if *you* eliminate me do you win.  If Istari eliminates me first, then your left-hand opponent becomes Istari and you have to eliminate him to win.


2) rootbeer: Homeworld B1 Y3 G3

3) Aaron: Homeworld R1 Y2 G3

4) istari: Homeworld B3 R3 Y3

5) zevzimra: Build Y1 Zevzimra

6) rootbeer: Build G1 Rootbeer

7) Aaron: Build G1 Aaron

8) istari: Trade Y3 G3 Istari

9) zevzimra: Trade Y1 G1 Zevzimra

10) rootbeer: Discover G1 Rootbeer Y2 Switzerland

11) Aaron: Discover G1 Aaron B3 Waves

12) istari: Build G1 Istari

13) zevzimra: Build G1 Zevzimra

14) rootbeer: Build G2 Switzerland

15) Aaron: Build G2 Aaron

16) istari: Pass

17) zevzimra: Build G2 Zevzimra

18) rootbeer: Build G2 Rootbeer

19) Aaron: Build G3 Waves

20) istari: Build G3 Istari

21) zevzimra: Trade G2 R2 Zevzimra

22) rootbeer: Move G1 Switzerland Istari
Catastrophe Istari Green

23) Aaron: Trade G3 Y3 Waves

24) zevzimra: Discover G1 Zevzimra Y1 Alpha

25) rootbeer: Build G1 Switzerland

26) Aaron: Move G2 Aaron Waves

27) zevzimra: Move G1 Zevzimra Alpha

28) rootbeer: Discover G2 Switzerland B3 Bowtie

29) Aaron: Move G1 Waves Switzerland

30) zevzimra: Discover G1 Alpha Y2 Beta

31) rootbeer: Construct G1 Bowtie

32) Aaron: Sacrifice Y3 Waves
Move G2 Waves Switzerland
Move G2 Switzerland Rootbeer
Move G1 Switzerland Rootbeer
Catastrophe Rootbeer Green

33) zevzimra: Build G1 Alpha
	Aaron: Sorry rootbeer, but if I didn't do it, Zev would have and I can't let that happen.

34) Aaron: Build G2 Aaron

35) zevzimra: Move R2 Zevzimra Alpha
	SYSTEM: rootbeer resigns.

36) Aaron: Move G3 Aaron Bowtie
	Aaron: ahh, I see my problem now /

37) zevzimra: Move G1 Alpha Bowtie
Catastrophe Bowtie G

	SYSTEM: Aaron resigns.
	Aaron: I sincerely apologize.  Something's wrong with the code.  Checking now and closing the game.


688)
Started: 2005.9.13, Ended: 2005.10.9
Participants: zapple (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld Y1 G3 B3

2) zapple: Homeworld Y1 G2 B3

3) MatrixFrog: Build B1 Matrixfrog

4) zapple: Build B1 Zapple

5) MatrixFrog: Trade B1 Y1 Matrixfrog

6) zapple: Discover B1 Zapple Y3 Asdf
	MatrixFrog: Game #2...
	zapple: discover b1 zapple y3 asdf

7) MatrixFrog: Build Y2 Matrixfrog

8) zapple: Trade B1 G1 Asdf

9) MatrixFrog: Build B1 Matrixfrog

10) zapple: Build B1 Zapple

11) MatrixFrog: Trade Y1 G1 Matrixfrog

12) zapple: Trade B1 R1 Zapple

13) MatrixFrog: Build B1 Matrixfrog

14) zapple: Build B1 Zapple

15) MatrixFrog: Trade B1 R1 Matrixfrog

16) zapple: Move B1 Zapple Asdf

17) MatrixFrog: Build R1 Matrixfrog

18) zapple: Build B1 Asdf

19) MatrixFrog: Build Y1 Matrixfrog

20) zapple: Build R2 Zapple

21) MatrixFrog: Discover Y2 Matrixfrog G2 Crunch

	SYSTEM: zapple resigns.


689)
Started: 2005.9.13, Ended: 2005.9.14
Participants: TwoShort (S), fluxinator (N)
Winner: TwoShort

1) fluxinator: Homeworld G2 G3 G3

2) TwoShort: Homeworld B3 Y2 G3

	TwoShort: Is this a joke of some sort?
	fluxinator: umm why did I make a bad move?

	SYSTEM: fluxinator resigns.


691)
Started: 2005.9.14, Ended: 2005.9.20
Participants: Jesse (S), TwoShort (N)
Winner: Jesse

1) TwoShort: Homeworld B2 Y1 G3
	Jesse: In the beginning, the heavens were without substance or form, except for having maybe a few stars in the background for interest, and being neatly divided into parcels ten trillion cubits to a side.
	Jesse: Other than that, you know, nothing.
	TwoShort: homeworld b2 y1 g3

2) Jesse: Homeworld Y2 B3 G3
	TwoShort: then suddenly... stuff!

3) TwoShort: Build G1 Twoshort

4) Jesse: Build G1 Jesse
	Jesse: Yes, two great civilizations arose.  Was it a quantum fluctuation?  One civilization and its anticivilization?  Whyfor is the symmetry breaking between them?  We know not, but that it is believed by many to be the miracle of homeworldogensis.

5) TwoShort: Build G1 Twoshort
	Jesse: By the way, played much?

6) Jesse: Discover G1 Jesse Y1 Horch
	TwoShort: Only a few times...

7) TwoShort: Discover G1 Twoshort B3 Foosia
	Jesse: Did you read the strategy tips I put on the wiki?

8) Jesse: Build G2 Jesse

9) TwoShort: Sacrifice G3 Twoshort
Build G2 Foosia
Build G2 Twoshort
Build G3 Twoshort

10) Jesse: Build G3 Jesse
	TwoShort: I've read and thought about Homeworlds quite a bit.  Many years ago I lived in DC and hung out with the Wunderland crowd.  I still follow Andys website, and I was intrigud when he raved about binary homeworlds.  I'm a big fan of pure strategy games, but the rest of my current gaming crew are not, so I haven't gotten to actually play much before.  So you should probably expect some mix of smart moves and really stupid mistakes... 

11) TwoShort: Trade G2 Y2 Foosia

12) Jesse: Trade G3 R3 Jesse
	Jesse: Excellent.  You're doing great so far.  I look forward to the rest of the game.

13) TwoShort: Trade G2 R2 Twoshort

14) Jesse: Trade G2 Y2 Jesse

15) TwoShort: Discover G1 Foosia Y1 Yellonia

16) Jesse: Discover Y2 Jesse B1 Zuban

17) TwoShort: Build G2 Yellonia

18) Jesse: Build R1 Jesse

19) TwoShort: Sacrifice G2 Yellonia
Build Y3 Foosia
Build G2 Yellonia

20) Jesse: Sacrifice G3 Jesse
Build G2 Horch
Build G2 Horch
Build Y3 Zuban

21) TwoShort: Sacrifice Y3 Foosia
Move G1 Yellonia Foosia
Move G1 Foosia Horch
Discover Y2 Foosia B1 Bluto
Catastrophe Horch Green

22) Jesse: Discover Y2 Zuban G3 Triffid

23) TwoShort: Build R1 Twoshort

24) Jesse: Trade R1 G1 Jesse

25) TwoShort: Build G1 Yellonia

26) Jesse: Build R1 Jesse

27) TwoShort: Trade Y2 B2 Bluto

28) Jesse: Build G2 Jesse

29) TwoShort: Sacrifice G2 Yellonia
Build G2 Yellonia
Build B1 Bluto
	Jesse: Very interesting.

30) Jesse: Move G2 Jesse Zuban
	TwoShort: That's one way of puttting it...
I was going to go with "My brain hurts"
	Jesse: Mine too.  You can really keep the pressure up.

31) TwoShort: Discover G1 Yellonia Y3 Oldyeller

32) Jesse: Trade R3 G3 Jesse

33) TwoShort: Build G2 Yellonia

34) Jesse: Sacrifice G3 Jesse
Build R1 Jesse
Build R2 Jesse
Build G3 Zuban

35) TwoShort: Trade G3 Y3 Twoshort

36) Jesse: Build G3 Jesse

37) TwoShort: Trade B2 R2 Bluto
	Jesse: Well, we'll see if this turns out to be foolish...

38) Jesse: Trade R1 Y1 Jesse

39) TwoShort: Move G2 Yellonia Jesse
	TwoShort: As long as we're seeing what turns out to be foolish...

40) Jesse: Attack G2N Jesse
	Jesse: Yes, that's definitely a stong attack option.  There's not much I can do except capture your piece and let you destroy my large defender, without losing a large of your own.

41) TwoShort: Sacrifice G1 Oldyeller
Build B2 Bluto
	Jesse: However, I think if you do that, I can leave you crippled.
	TwoShort: I think I'm doomed unless I can press the attack home in short order.  Which I don't think I can do.  But let's try this...

42) Jesse: Sacrifice G2 Jesse
Build Y2 Zuban
Build Y3 Triffid

43) TwoShort: Sacrifice G2 Yellonia
Build R1 Twoshort
Build R3 Bluto
	Jesse: It would probably have been better to trade r2->y2 at bluto first, so you could have built the y3 yourself when you did that sacrifice action.
	Jesse: Hmm, then again...
	Jesse: I think I can weather that storm.  Hmm...

44) Jesse: Sacrifice Y2 Zuban
Move Y2 Triffid Twoshort
Move Y3 Triffid Twoshort
Catastrophe Twoshort Y
	Jesse: Ooh, the storm is more severe than I thought.  :D
	Jesse: Ah, but it's stalled harmlessly out at sea.

45) TwoShort: Trade R2 Y2 Twoshort
	TwoShort: Fortune strums a weary tune for he whose campaign peaks too soon.

46) Jesse: Move G3 Zuban Twoshort
	TwoShort: I suppose I could resign at this point; it's only a question of how long I can delay the inevitable

47) TwoShort: Sacrifice Y2 Twoshort
Move R3 Bluto Jesse
Move R2 Bluto Jesse
Catastrophe Jesse Red
	Jesse: Not very long, I think, but I've been surprized before.
	Jesse: As for campaigns peaking, I've definitely found that attacking before you're sure you can drive the victory home often ends in defeat.
	TwoShort: When in doubt, my instincts are certainly skewed toward offense; which as I suspected, did not serve me well, since you were able to keep diffusing my threats while getting stronger, until I was finally left thrashing in futility.  Speaking of which, I can stop you from using red like this...

48) Jesse: Trade G3 B3 Twoshort
	TwoShort: But I still see how you can win unstopably on the turn after this one.

49) TwoShort: Sacrifice B2 Bluto
Trade R1 G1 Twoshort
Trade R1 Y1 Twoshort
	Jesse: Actually, there is a way for you to delay it one more move.  It is rather pointless, but see if you can find it anyway.  :)
	Jesse: Great game by the way.  Thanks!

50) Jesse: Sacrifice G2 Zuban
Build B2 Twoshort
Build B2 Twoshort
Catastrophe Twoshort B
	TwoShort: But TwoShort is a peaceful planet!  We have no weapons...
	TwoShort: oops, didn't see your chalenge of finding the way to delay before I went for the dumb Star Wars joke... let's see
	TwoShort: Ahh, I could have sacrificed my small green to grow blue at bluto, but not called catastrophe.  Oh well, at least I got in a dumb Star Wars joke.

	TwoShort: And yes, great game!  
	Jesse: Right!  Of course, then I trade my y3 for r3, call the ctastrophe myself, and either blow you up or take your ships on the next turn.
	Jesse: I don't usually blow up my opponents' homeworlds, but...



703)
Started: 2005.9.14, Ended: 2005.9.27
Participants: pigasuspig (S), zevzimra (N)
Winner: pigasuspig

1) zevzimra: Homeworld B1 G2 Y3

2) pigasuspig: Homeworld B1 G3 R3

3) zevzimra: Build Y1 Zevzimra

4) pigasuspig: Build R1 Pigasuspig

5) zevzimra: Discover Y1 Zevzimra G3 Bob

6) pigasuspig: Build R1 Pigasuspig

7) zevzimra: Build Y1 Bob

8) pigasuspig: Trade R1 Y1 Pigasuspig

9) zevzimra: Build Y2 Bob

10) pigasuspig: Build Y2 Pigasuspig

11) zevzimra: Build Y2 Zevzimra

12) pigasuspig: Build Y3 Pigasuspig

13) zevzimra: Build Y3 Zevzimra

14) pigasuspig: Discover R1 Pigasuspig B2 Russia

15) zevzimra: Trade Y3 R3 Zevzimra

16) pigasuspig: Move Y3 Pigasuspig Russia

17) zevzimra: Move R3 Zevzimra Bob

18) pigasuspig: Sacrifice Y2 Pigasuspig
Move R1 Russia Bob
Discover Y3 Russia R3 Steve

19) zevzimra: Attack R1S Bob

20) pigasuspig: Build Y2 Pigasuspig

21) zevzimra: Move R1 Bob Zevzimra

22) pigasuspig: Discover Y1 Pigasuspig G2 Fern

23) zevzimra: Move R3 Bob Fern

24) pigasuspig: Move Y1 Fern Bob
Catastrophe Bob Y

25) zevzimra: Build R1 Fern
	zevzimra: OUCH!  Nice move!

26) pigasuspig: Build Y1 Pigasuspig

27) zevzimra: Build R1 Zevzimra

28) pigasuspig: Build Y1 Pigasuspig

29) zevzimra: Discover Y2 Zevzimra B3 Notbob

30) pigasuspig: Trade Y1 G1 Pigasuspig

31) zevzimra: Build R2 Zevzimra

32) pigasuspig: Trade Y1 B1 Pigasuspig

33) zevzimra: Trade R2 B2 Zevzimra

34) pigasuspig: Build G1 Pigasuspig

35) zevzimra: Move R1 Zevzimra Notbob

36) pigasuspig: Discover G1 Pigasuspig B2 Siam

37) zevzimra: Move Y2 Notbob Fern

38) pigasuspig: Move Y3 Steve Siam

39) zevzimra: Build R2 Fern

40) pigasuspig: Move R3 Pigasuspig Fern
Catastrophe Fern R

41) zevzimra: Build Y1 Fern

42) pigasuspig: Build Y1 Siam

43) zevzimra: Trade R1 G1 Zevzimra

44) pigasuspig: Build G2 Siam

45) zevzimra: Move G1 Zevzimra Notbob

46) pigasuspig: Discover G2 Siam B3 Monster

47) zevzimra: Construct G3 Notbob

48) pigasuspig: Build G3 Monster

49) zevzimra: Trade G3 R3 Notbob

50) pigasuspig: Trade G1 R1 Pigasuspig

51) zevzimra: Sacrifice Y2 Fern
Move R3 Notbob Fern
Move R3 Fern Pigasuspig

52) pigasuspig: Sacrifice G2 Monster
Build R1 Pigasuspig
Build R2 Pigasuspig
Catastrophe Pigasuspig R

53) zevzimra: Move Y1 Fern Notbob

54) pigasuspig: Move Y3 Siam Notbob

55) zevzimra: Trade Y3 R3 Zevzimra

56) pigasuspig: Trade Y3 R3 Notbob

57) zevzimra: Construct B2 Zevzimra

58) pigasuspig: Build B3 Pigasuspig

59) zevzimra: Trade R3 Y3 Zevzimra

60) pigasuspig: Trade B3 R3 Pigasuspig

61) zevzimra: Discover B2 Zevzimra G3 Notbobatall

62) pigasuspig: Sacrifice Y2 Pigasuspig
Move R3 Notbob Zevzimra
Move G3 Monster Zevzimra

	SYSTEM: zevzimra resigns.


709)
Started: 2005.9.14, Ended: 2005.9.15
Participants: Samaculus (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld B3 G1 Y3

2) Samaculus: Homeworld G3 Y2 R3
	MatrixFrog: Welcome!

3) MatrixFrog: Build Y1 Matrixfrog

4) Samaculus: Build R1 Samaculus

5) MatrixFrog: Build Y1 Matrixfrog

6) Samaculus: Discover R3 Samaculus Y1 Cheddar

7) MatrixFrog: Trade Y1 R1 Matrixfrog

8) Samaculus: Build R1 Samaculus

9) MatrixFrog: Build R2 Matrixfrog

10) Samaculus: Discover R1 Samaculus B1 Wave

11) MatrixFrog: Build R2 Matrixfrog

12) Samaculus: Trade R1 G1 Wave

13) MatrixFrog: Discover R2 Matrixfrog B2 Aqua

14) Samaculus: Build R1 Samaculus

15) MatrixFrog: Sacrifice Y1 Matrixfrog
Move R2 Aqua Wave

16) Samaculus: Discover R3 Cheddar B2 Deep

17) MatrixFrog: Attack G1S Wave

18) Samaculus: Trade R3 G3 Deep

19) MatrixFrog: Build R2 Wave

20) Samaculus: Move R1 Samaculus Wave

21) MatrixFrog: Attack R1S Wave

22) Samaculus: Build R3 Samaculus

23) MatrixFrog: Move R1 Matrixfrog Deep

24) Samaculus: Build R3 Samaculus

25) MatrixFrog: Sacrifice Y3 Matrixfrog
Move R2 Wave Samaculus
Move R2 Wave Samaculus
Move R1 Wave Samaculus
Catastrophe Samaculus R



710)
Started: 2005.9.15, Ended: 2005.9.22
Participants: MatrixFrog (S), Samaculus (N)
Winner: Samaculus

1) Samaculus: Homeworld B3 Y2 G3

2) MatrixFrog: Homeworld G1 R2 Y3

3) Samaculus: Build G1 Samaculus

4) MatrixFrog: Build Y1 Matrixfrog

5) Samaculus: Build G1 Samaculus
	Samaculus: why isn't your homeworld blue?  Are you going easy?  I guess I deserve it for being such a spaz...

6) MatrixFrog: Build Y1 Matrixfrog

7) Samaculus: Discover G1 Samaculus B1 Ultramar

8) MatrixFrog: Discover Y1 Matrixfrog B3 X
	MatrixFrog: I don't know... I like having a red star in my homeworld. It's not necessarily the smartest strategy, but it's fun that way.

9) Samaculus: Build G2 Ultramar

10) MatrixFrog: Build Y1 Matrixfrog
	Samaculus: Who are you? Daffy Duck? Duck Doggers?  Who names their planet "X"?  Piffle!
	MatrixFrog: I'm trying to have a theme. In a game I played recently, all my planets were greek letters: alpha, beta, gamma...

This time I'm going with "rarely used letters" I suppose

11) Samaculus: Build G2 Ultramar

12) MatrixFrog: Move Y1 Matrixfrog X

13) Samaculus: Trade G1 R1 Samaculus
	Samaculus: I can dig the theme

14) MatrixFrog: Trade Y1 B1 X

15) Samaculus: Build G1 Samaculus

16) MatrixFrog: Move B1 X Matrixfrog

17) Samaculus: Sacrifice G3 Samaculus
Build G2 Samaculus
Build G3 Samaculus
Build R1 Samaculus

18) MatrixFrog: Trade Y3 G3 Matrixfrog

19) Samaculus: Discover G2 Samaculus Y1 Ichar Iv

20) MatrixFrog: Move Y1 X Ultramar

21) Samaculus: Sacrifice R1 Samaculus
Attack Y1S Ultramar

22) MatrixFrog: Build G3 Matrixfrog

23) Samaculus: Trade G1 R1 Ultramar

24) MatrixFrog: Discover G3 Matrixfrog Y3 Epsilon 5

25) Samaculus: Sacrifice G2 Ichar
Build Y2 Ultramar
Build G1 Samaculus
	MatrixFrog: Going back to the Greek theme

26) MatrixFrog: Discover G3 Epsilon R1 Sigma

27) Samaculus: Trade G3 Y3 Samaculus

28) MatrixFrog: Build B1 Matrixfrog

29) Samaculus: Discover G2 Ultramar B3 Holy Terra

30) MatrixFrog: Trade G3 B3 Matrixfrog

31) Samaculus: Trade G2 B2 Holy Terra

32) MatrixFrog: Trade B1 Y1 Matrixfrog

33) Samaculus: Build G2 Ultramar

34) MatrixFrog: Trade B3 R3 Matrixfrog

35) Samaculus: Trade B2 R2 Holy Terra

36) MatrixFrog: Move R3 Matrixfrog Holy

37) Samaculus: Sacrifice Y2 Ultramar
Move R2 Holy Ultramar
Move Y3 Samaculus Ultramar

38) MatrixFrog: Build B1 Matrixfrog

39) Samaculus: Sacrifice G2 Ultramar
Build R2 Samaculus
Build R3 Samaculus

40) MatrixFrog: Build B2 Matrixfrog

41) Samaculus: Discover R2 Ultramar Y3 Macragge

42) MatrixFrog: Move Y1 Matrixfrog Holy

43) Samaculus: Build R3 Ultramar

44) MatrixFrog: Build Y2 Matrixfrog

45) Samaculus: Trade G2 B2 Ultramar

46) MatrixFrog: Move B2 Matrixfrog Holy

47) Samaculus: Move R3 Ultramar Macragge

48) MatrixFrog: Sacrifice Y2 Matrixfrog
Move G3 Sigma Holy
Move G3 Holy Matrixfrog

49) Samaculus: Move R1 Ultramar Macragge

50) MatrixFrog: Build Y2 Matrixfrog

51) Samaculus: Sacrifice Y3 Ultramar
Move R1 Macragge Matrixfrog
Move R2 Macragge Matrixfrog
Move R3 Macragge Matrixfrog
Catastrophe Matrixfrog Red

52) MatrixFrog: Trade B1 R1 Matrixfrog

53) Samaculus: Trade B2 Y2 Ultramar

54) MatrixFrog: Move R1 Matrixfrog Samaculus
Catastrophe Samaculus R

55) Samaculus: Move Y1 Ultramar Samaculus

56) MatrixFrog: Sacrifice Y2 Matrixfrog
Move R3 Holy Matrixfrog
Move R3 Matrixfrog Samaculus

57) Samaculus: Sacrifice Y2 Ultramar
Move G1 Samaculus Matrixfrog
Move G1 Samaculus Matrixfrog

58) MatrixFrog: Move G3 Matrixfrog Samaculus

59) Samaculus: Build G2 Matrixfrog
Catastrophe Matrixfrog Green
	MatrixFrog: Declaring a catastrophe is always optional.



711)
Started: 2005.9.15, Ended: 2005.9.23
Participants: rootbeer (S), petmar (N)
Winner: rootbeer

	SYSTEM: petmar resigns.


713)
Started: 2005.9.15, Ended: 2005.9.15
Participants: rootbeer (S), pigasuspig (N)
Winner: pigasuspig

1) pigasuspig: Homeworld B2 G1 R3

2) rootbeer: Homeworld B2 G2 Y3

3) pigasuspig: Build R1 Pigasuspig

4) rootbeer: Build Y1 Rootbeer

5) pigasuspig: Trade R1 Y1 Pigasuspig

6) rootbeer: Discover Y1 Rootbeer G3 Route66

7) pigasuspig: Discover Y1 Pigasuspig R3 Kissinger

8) rootbeer: Build Y1 Rootbeer

9) pigasuspig: Move Y1 Kissinger Rootbeer

10) rootbeer: Construct Y2 Rootbeer

11) pigasuspig: Build R1 Pigasuspig
Catastrophe Rootbeer Y



717)
Started: 2005.9.20, Ended: 2005.9.21
Participants: rootbeer (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B3 G1 Y3

2) rootbeer: Homeworld B1 Y2 G3
	ts52: Good luck!

3) ts52: Build Y1 Ts52

4) rootbeer: Build G1 Rootbeer

5) ts52: Discover Y1 Ts52 B2 Discordia

6) rootbeer: Build G1 Rootbeer
	ts52: All hail Eris!
	rootbeer: Eris?
	rootbeer: Of Discordia?


7) ts52: Build Y1 Ts52

8) rootbeer: Trade G3 R3 Rootbeer
	ts52: Of course!

9) ts52: Trade Y3 G3 Ts52

10) rootbeer: Build G2 Rootbeer
	ts52: What's this? A weapon? I thought this was a peaceful galaxy??

11) ts52: Build G2 Ts52

12) rootbeer: Discover G2 Rootbeer Y3 Lizaminelli

13) ts52: Move G2 Ts52 Discordia

14) rootbeer: Build G2 Lizaminelli

15) ts52: Build G3 Discordia

16) rootbeer: Move G2 Lizaminelli Discordia

17) ts52: Trade G3 R3 Discordia

18) rootbeer: Build G3 Discordia

19) ts52: Build G3 Ts52

20) rootbeer: Trade G2 Y2 Discordia

21) ts52: Attack Y2S Discordia

22) rootbeer: Sacrifice G2 Lizaminelli
Build G2 Discordia
Build G2 Discordia

23) ts52: Discover G2 Discordia Y3 Persiod

24) rootbeer: Trade G3 Y3 Discordia

25) ts52: Attack Y3S Discordia

26) rootbeer: Build G3 Rootbeer

27) ts52: Sacrifice Y1 Discordia
Move G2 Persiod Rootbeer
Catastrophe Rootbeer Green

	SYSTEM: rootbeer resigns.


728)
Started: 2005.9.20, Ended: 2005.9.21
Participants: MatrixFrog (S), pigasuspig (N)
Winner: pigasuspig

1) pigasuspig: Homeworld B1 G2 Y3

2) MatrixFrog: Homeworld Y1 B3 G3

3) pigasuspig: Build Y1 Pigasuspig

4) MatrixFrog: Build G1 Matrixfrog

5) pigasuspig: Build Y1 Pigasuspig

6) MatrixFrog: Build G1 Matrixfrog

7) pigasuspig: Trade Y1 B1 Pigasuspig

8) MatrixFrog: Discover G1 Matrixfrog Y2 Alpha

9) pigasuspig: Trade Y3 G3 Pigasuspig

10) MatrixFrog: Build G1 Alpha

11) pigasuspig: Build Y1 Pigasuspig

12) MatrixFrog: Discover G1 Alpha R3 Beta

13) pigasuspig: Build B1 Pigasuspig

14) MatrixFrog: Move G1 Alpha Beta

15) pigasuspig: Trade B1 R1 Pigasuspig

16) MatrixFrog: Build G2 Matrixfrog

17) pigasuspig: Discover Y1 Pigasuspig B3 Zephyr

18) MatrixFrog: Trade G1 B1 Matrixfrog

19) pigasuspig: Build Y2 Pigasuspig

20) MatrixFrog: Trade G2 Y2 Matrixfrog

21) pigasuspig: Trade G3 R3 Pigasuspig

22) MatrixFrog: Sacrifice Y2 Matrixfrog
Move G1 Beta Pigasuspig
Move G1 Beta Pigasuspig

23) pigasuspig: Move R3 Pigasuspig Zephyr

24) MatrixFrog: Build G1 Pigasuspig
Catastrophe Pigasuspig G

25) pigasuspig: Sacrifice Y2 Pigasuspig
Discover R3 Zephyr Y2 Disposable
Move R3 Disposable Matrixfrog

26) MatrixFrog: Build G1 Matrixfrog

27) pigasuspig: Attack G3S Matrixfrog

28) MatrixFrog: Build G1 Matrixfrog

29) pigasuspig: Sacrifice R3 Matrixfrog
Attack G1S Matrixfrog
Attack G1S Matrixfrog
Attack B1S Matrixfrog



738)
Started: 2005.9.21, Ended: 2005.9.24
Participants: Jesse (S), CDRodeffer (N)
Winner: Jesse

1) CDRodeffer: Homeworld B1 Y2 G3

2) Jesse: Homeworld B3 Y1 G3
	Jesse: Hola

3) CDRodeffer: Build G1 Cdrodeffer

4) Jesse: Build G1 Jesse
	CDRodeffer: Howdy.

5) CDRodeffer: Trade G1 R1 Cdrodeffer

6) Jesse: Trade G1 R1 Jesse

7) CDRodeffer: Build G1 Cdrodeffer
	Jesse: If it's guns you want, it's guns you get.
	CDRodeffer: Not just guns, I just like to have all types in my home system.

8) Jesse: Build G1 Jesse

9) CDRodeffer: Trade G1 Y1 Cdrodeffer
	Jesse: Oh, I can't argue with that.  I just usually don't jump into guns until I can at least choose what size to go with.

10) Jesse: Discover G1 Jesse B2 Tick

11) CDRodeffer: Build G1 Cdrodeffer

12) Jesse: Build G1 Jesse

13) CDRodeffer: Trade G1 B1 Cdrodeffer

14) Jesse: Discover G1 Jesse B2 Tocquila

15) CDRodeffer: Discover Y1 Cdrodeffer R3 Beetlejuice

16) Jesse: Build G1 Jesse

17) CDRodeffer: Build G2 Cdrodeffer
	Jesse: Happy equinox, coming up in about a half hour, by the way.
	CDRodeffer: Oh really? I don't notice such things. But tomorrow is our 5th wedding anniversary. Yay!

18) Jesse: Build G2 Tocquila
	Jesse: Well, happy anniversary.

19) CDRodeffer: Move G2 Cdrodeffer Beetlejuice

20) Jesse: Trade G2 Y2 Tocquila

21) CDRodeffer: Build G2 Cdrodeffer

22) Jesse: Sacrifice G3 Jesse
Build G2 Tocquila
Build G3 Jesse
Build G3 Tick

23) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G3 Cdrodeffer
Build B1 Cdrodeffer
Build Y1 Beetlejuice

24) Jesse: Sacrifice G3 Jesse
Build Y2 Tocquila
Build R1 Jesse
Build G3 Jesse
	CDRodeffer: Ah, so you too are familiar with the factory! Good.
	Jesse: Indeed.  It's good to see you're pleased, since that says something about you, as well.

25) CDRodeffer: Move Y1 Beetlejuice Cdrodeffer

26) Jesse: Sacrifice Y2 Tocquila
Move G3 Tick Beetlejuice
Move R1 Jesse Tocquila

27) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G3 Cdrodeffer
Build Y2 Beetlejuice
Build Y3 Beetlejuice

28) Jesse: Attack Y3N Beetlejuice

29) CDRodeffer: Construct Y3 Beetlejuice
Catastrophe Beetlejuice Yellow

30) Jesse: Sacrifice G3 Jesse
Build R2 Jesse
Build Y1 Tocquila
Build G3 Jesse
	CDRodeffer: Wow. There seems to have been a whole series of unfortunate events.
	Jesse: Ooh, ouch!  I thought you were planning to factory up a Y3 at the homeworld along with that.

31) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G3 Cdrodeffer
Build R2 Cdrodeffer
Build Y2 Cdrodeffer

32) Jesse: Sacrifice Y2 Tocquila
Move Y1 Tocquila Beetlejuice
Move Y1 Beetlejuice Cdrodeffer
Catastrophe Cdrodeffer Y
	CDRodeffer: Oh, it's not nearly as bad as all that.

33) CDRodeffer: Build B2 Cdrodeffer
Catastrophe Cdrodeffer Blue



742)
Started: 2005.9.22, Ended: 2005.11.3
Participants: pigasuspig (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) pigasuspig: Homeworld B1 G2 Y3

3) ts52: Build G1 Ts52

4) pigasuspig: Build Y1 Pigasuspig
	ts52: sorry for the delay. for some reason I'm not getting email notices
	pigasuspig: I play daily, pretty much, so perhaps keep checking back. But don't worry too much, I went overtime on my first turn here.


5) ts52: Build G1 Ts52

6) pigasuspig: Build Y1 Pigasuspig

7) ts52: Trade G1 B1 Ts52

8) pigasuspig: Trade Y1 G1 Pigasuspig

9) ts52: Discover G1 Ts52 B1 Persiphone

10) pigasuspig: Trade Y1 R1 Pigasuspig

11) ts52: Build B2 Ts52

12) pigasuspig: Build G1 Pigasuspig

13) ts52: Build G2 Persiphone

14) pigasuspig: Discover G1 Pigasuspig B3 Hermes

15) ts52: Move B2 Ts52 Persiphone

16) pigasuspig: Build G2 Pigasuspig

17) ts52: Build G3 Ts52

18) pigasuspig: Sacrifice Y3 Pigasuspig
Move G1 Pigasuspig Hermes
Move G1 Hermes Persiphone
Move G1 Persiphone Ts52

19) ts52: Sacrifice B2 Persiphone
Trade G3 R3 Ts52
Trade G3 R3 Ts52

20) pigasuspig: Build G3 Pigasuspig

21) ts52: Attack G1S Ts52

22) pigasuspig: Sacrifice G3 Pigasuspig
Build G3 Pigasuspig
Build G3 Hermes
Build G3 Hermes

23) ts52: Trade B1 Y1 Ts52

24) pigasuspig: Trade G1 Y1 Hermes

25) ts52: Move R3 Ts52 Persiphone

26) pigasuspig: Trade G3 Y3 Pigasuspig

27) ts52: Build G1 Ts52

28) pigasuspig: Build G3 Pigasuspig

29) ts52: Build R1 Persiphone

30) pigasuspig: Discover G3 Hermes R1 Mars

31) ts52: Move Y1 Ts52 Persiphone

32) pigasuspig: Build R2 Pigasuspig

33) ts52: Discover G1 Persiphone Y3 Sol

34) pigasuspig: Trade G2 B2 Pigasuspig

35) ts52: Build G2 Sol

36) pigasuspig: Sacrifice B2 Pigasuspig
Trade G3 B3 Pigasuspig
Trade G3 R3 Mars

37) ts52: Build G3 Persiphone

38) pigasuspig: Trade G3 B3 Hermes

39) ts52: Discover G1 Ts52 B1 Blueberry

40) pigasuspig: Sacrifice Y3 Pigasuspig
Move B3 Hermes Blueberry
Move B3 Blueberry Ts52
Move R3 Mars Ts52

41) ts52: Sacrifice R3 Persiphone
Attack R3 Ts52
Attack B3 Ts52
Pass

42) pigasuspig: Build B2 Pigasuspig

43) ts52: Sacrifice G3 Persiphone
Build G3 Persiphone
Build G3 Blueberry
Build G3 Ts52

44) pigasuspig: Move Y1 Hermes Pigasuspig
	pigasuspig: yeah, that was a cool trick when I was able to pull it off too.

45) ts52: Sacrifice G3 Blueberry
Build G3 Blueberry
Build Y1 Persiphone
Build Y2 Persiphone

46) pigasuspig: Move R2 Pigasuspig Sol

47) ts52: Sacrifice R1 Persiphone
Attack R2 Sol

48) pigasuspig: Trade B3 Y3 Pigasuspig
	pigasuspig: so sorry about the time!

49) ts52: Discover B3 Ts52 R1 Rasberry
	ts52: not to worry

50) pigasuspig: Build R1 Pigasuspig

51) ts52: Move Y1 Persiphone Sol

	pigasuspig: I can't safely build or trade (since there's no green), I can't really move anywhere useful, and I'm dramatically outnumbered. I resign. Very good game, though! Thanks!
	SYSTEM: pigasuspig resigns.


746)
Started: 2005.9.23, Ended: 2005.9.27
Participants: MatrixFrog (S), Samaculus (N)
Winner: Samaculus

1) Samaculus: Homeworld G3 Y2 B3

2) MatrixFrog: Homeworld B2 G3 Y3
	Samaculus: I hate to be unoriginal...

3) Samaculus: Build B1 Samaculus

4) MatrixFrog: Build Y1 Matrixfrog

5) Samaculus: Trade B1 R1 Samaculus

6) MatrixFrog: Build Y1 Matrixfrog

7) Samaculus: Build R1 Samaculus

8) MatrixFrog: Discover Y1 Matrixfrog G1 Dy/dx

9) Samaculus: Move R1 Samaculus Dy/dx

10) MatrixFrog: Move Y1 Dy/dx Matrixfrog

11) Samaculus: Build R1 Samaculus

12) MatrixFrog: Trade Y3 R3 Matrixfrog

13) Samaculus: Move B3 Samaculus Dy/dx

14) MatrixFrog: Build R2 Matrixfrog

15) Samaculus: Build R2 Dy/dx

16) MatrixFrog: Trade R2 G2 Matrixfrog

17) Samaculus: Trade R1 Y1 Dy/dx

18) MatrixFrog: Build R1 Matrixfrog

19) Samaculus: Build Y2 Dy/dx

20) MatrixFrog: Trade R1 B1 Matrixfrog

21) Samaculus: Build B1 Dy/dx

22) MatrixFrog: Build R1 Matrixfrog

23) Samaculus: Move R1 Samaculus Dy/dx
	MatrixFrog: Wow. Can you say "arms race?"

24) MatrixFrog: Discover Y1 Matrixfrog G1 Antelope

25) Samaculus: Sacrifice Y2 Dy/dx
Move R1 Dy/dx Matrixfrog
Move R2 Dy/dx Matrixfrog
Catastrophe Matrixfrog Red
	MatrixFrog: I'm thinking of an animal theme this game.

26) MatrixFrog: Build Y2 Matrixfrog

27) Samaculus: Trade B3 R3 Dy/dx

28) MatrixFrog: Build Y2 Antelope

29) Samaculus: Move R3 Dy/dx Matrixfrog

30) MatrixFrog: Build G1 Matrixfrog

31) Samaculus: Attack G2S Matrixfrog

32) MatrixFrog: Sacrifice G1 Matrixfrog
Build Y3 Antelope

33) Samaculus: Attack Y2S Matrixfrog

34) MatrixFrog: Move Y1 Antelope Matrixfrog

35) Samaculus: Attack B1S Matrixfrog

36) MatrixFrog: Trade Y1 G1 Matrixfrog

37) Samaculus: Attack Y1S Matrixfrog

38) MatrixFrog: Move Y2 Antelope Matrixfrog

39) Samaculus: Sacrifice R3 Matrixfrog
Attack Y2S Matrixfrog
Attack G1S Matrixfrog
Pass



753)
Variants: "Left man down"
Started: 2005.9.25, Ended: 2005.10.23
Participants: pigasuspig (S), MatrixFrog (N), Samaculus (E)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G2 B1 Y3

2) Samaculus: Homeworld Y3 B2 G3
	MatrixFrog: Welcome.
	MatrixFrog: So here's how Left Man Down (aka Sinister Homeworlds) works: I win by eliminating you, you win by elminating pigasuspig, and pigasuspig wins by eliminating me. Ready, go!

3) pigasuspig: Homeworld Y3 G3 R3

4) MatrixFrog: Build Y1 Matrixfrog

5) Samaculus: Build G1 Samaculus

6) pigasuspig: Build R1 Pigasuspig

7) MatrixFrog: Trade Y1 R1 Matrixfrog
	MatrixFrog: pigasus, is a 3-3 homeworld a specific Left Man Down strategy, or just something unusual?

8) Samaculus: Build G1 Samaculus

9) pigasuspig: Discover R1 Pigasuspig B2 Deepblue
	pigasuspig: more of a cheap shot cuz I wondered how to outfox it. Of course, I see the answer now.

10) MatrixFrog: Build Y1 Matrixfrog
	pigasuspig: But maybe there's something to it, since it puts me closer to my target than to my enemy. I suppose we'll all find out. But the red starting ship, that was not really a good idea at all.

11) Samaculus: Discover G1 Samaculus B1 X-axis

12) pigasuspig: Trade R1 G1 Deepblue

13) MatrixFrog: Build R1 Matrixfrog
	MatrixFrog: Well it's always a trade-off. If you make it hard for opponents to get to you, then you must also make it hard for yourself to get to them.

14) Samaculus: Build G1 X-axis

15) pigasuspig: Build G2 Deepblue

16) MatrixFrog: Trade Y3 G3 Matrixfrog

17) Samaculus: Build G2 Samaculus

18) pigasuspig: Trade G2 Y2 Deepblue

19) MatrixFrog: Build G2 Matrixfrog

20) Samaculus: Discover G1 Samaculus B1 Pluto
	MatrixFrog: I'll talk to him at school tomorrow and get the game moving again by tomorrow night. Sorry!
	MatrixFrog: Or maybe in two nights, I suppose... anyway, thanks for your patience.

21) pigasuspig: Build R1 Pigasuspig

22) MatrixFrog: Discover G2 Matrixfrog Y3 Tenuto

23) Samaculus: Sacrifice G3 Samaculus
Build G2 Samaculus
Build G3 Samaculus
Build G3 Pluto

24) pigasuspig: Sacrifice Y2 Deepblue
Move G1 Deepblue Pluto
Move G1 Pluto Samaculus
Catastrophe Samaculus G
	Samaculus: I'm Back! With a vengeance!  Beware!
	MatrixFrog: Welcome back. I like how your first move back was really aggressive.

25) MatrixFrog: Move G2 Tenuto Pluto

26) pigasuspig: Move R1 Pigasuspig Pluto

27) MatrixFrog: Sacrifice R1 Matrixfrog
Attack R1S Pluto

28) pigasuspig: Build R1 Pigasuspig

29) MatrixFrog: Build Y1 Matrixfrog

30) pigasuspig: Move R1 Pigasuspig X-axis

31) MatrixFrog: Build R1 Matrixfrog

	SYSTEM: pigasuspig resigns.
	SYSTEM:  resigns.


756)
Started: 2005.9.26, Ended: 2005.10.26
Participants: Werebear (S), CDRodeffer (N)
Winner: Werebear

1) CDRodeffer: Homeworld B1 Y2 G3
	CDRodeffer: Hey, Doug. Glad you could make it into the system. The first step is to create your homeworld using the "homeworld" command. I'll make mine using "homeworld b1 y2 g3".

2) Werebear: Homeworld G2 B1 R3

3) CDRodeffer: Build G1 Cdrodeffer
	CDRodeffer: Now that you have a homeworld, you can try some of the other stuff at the top, like constructing a new ship. If you have access to green in a system, you can build the smallest available ship of any type you already have in that system. I'll do that using "construct g1 CDRodeffer".

4) Werebear: Build R1 Werebear
	CDRodeffer: So anyway, you have a bit of a problem starting out, because you don't have access to any yellow, so you can't move anywhere or discover new systems. You might want to build another ship (it would have to be a red one, using "construct r1 Werebear"), then on a later turn trade it in for a yellow one so you can move around using "trade r1 y1 Werebear" or the like.

5) CDRodeffer: Trade G1 R1 Cdrodeffer
	Werebear: Yah, I guessed as much. I do, however, have a red ship. I've heard all about people who sneak right in when someone doesn't have enough planetary defenses. That's all this is. Defensive uses only.
	Werebear: Besides, where do I need to go? We're happy right here!
	CDRodeffer: Oh, I totally understand. In fact, I like to have at least *some* access to all four color technologies in my home system. Right now, I don't have any defenses, as you can plainly see. So I would to well to get at least a small one. I can do that by trading in the small green ship I just build for a small red one, using the command "trade g1 r1 CDRodeffer". See how easy that is?

6) Werebear: Trade R1 B1 Werebear

7) CDRodeffer: Discover R1 Cdrodeffer G3 Eden
	Werebear: My people are afraid of too many different colors... but we applaud your work towards self defense. Might we agree to a mutual self-defense treaty? If either of us is attacked by an enemy, we'll use our brave self defense ships to protect each other?
	CDRodeffer: I think that would be a wonderful idea, at least in principle, but I don't know how we would implement it in the short term. See, for one or the other of us to get to the other's system, we need to go via another system that has a star unlike any of our own. In our cases, we both have a small star and a medium star, so we need to go via a large star. Since there isn't such a system out there (yet) I'll show you how to discover one by example. I'll choose green, since it's pretty, and since it's non-confrontational. Whenever you discover a new system, you also get to choose it's name, so I'll pick a nice non-confrontational name as well. The command I'll use to do it is "discover r1 CDRodeffer g3 Eden".

8) Werebear: Build B2 Werebear

9) CDRodeffer: Build G1 Cdrodeffer
	Werebear: I like the way you think, CDRodeffer! (Is it okay if I call you CDR?). Now, I should say that my people are a bit skittish and not as open-minded as my Enlightened Self (you can call me Werebear), so they might not like having foreign ships in our home system... but - our self defense forces have been well versed in interacting with alien cultures, and I'm sure they'd have no problems (and might even enjoy) visiting your home system from time to time. You know, for training exercises, and such. I'll spread the word around our self defense forces officers, that they'll be visiting you at some point in the future! What sorts of gifts are appropriate? Do you like Xcyactl wines? If so, I'll get a few cases put together to send with my forces. It may take me a while, since it is very expensive to get that much Xcyactl.

Interesting - my people have ancient myths about how we originated from a star system called "Eden". If you find any interesting archaelogical sites there, I'll send some very peaceful scientists to visit and help your research...
	CDRodeffer: Well, we're tea totelers here at CDRodeffer, even though we really don't even like tea. Or Dr. Pepper. Or coffee. But anyway, I look forward to meeting your archeological envoy in Eden in the near future. As an aside, I heard it through the grapevine that "andylooney" just joined up an online gaming site called Super Duper Games. This is intereseting, Werebear, because I hear that he loves Homeworlds, and might enjoy visiting your peaceful system someday. Anyway, back to the matter at hand, I realize that it is unseemly to have a defense ship in an archeological region, but I don't currently have propulsion technology available in Eden, nor can I find any local paint shops to make that little ship seem less, well, threatening. Our ancient texts say that an angel wielding a flaming sword was set at the gates of Eden, so if your people have similar ancient texts, you might want to just, for a moment, meditate on the aesthetic qualities of that small red ship, right there, guarding Eden. But just for the moment, I assure you, because I have a plan to retrofit that ship into a vessel more suitable for acheology.

10) Werebear: Trade B2 Y2 Werebear
	CDRodeffer: Oh, if you didn't recognize the name, Andy Looney is the person who designed the pyramids for this game. He's pretty well-known in the gaming world, and has designed several games to play with these pyramid pieces, although the Homeworlds game itself was invented by a friend of his.

11) CDRodeffer: Trade G1 Y1 Cdrodeffer
	Werebear: CDRodeffer, you make many good points. I trust if the dreaded andylooney does find his way to our beloved home system, that you'd leap to our defense, as per our mutual defense agreements. But we don't fear him. He causes us no concern. Also, our people were quite thrilled to learn of your archaeological discoveries - and they demanded that we learn more of this. You see, my people, at times, are a superstitious and hasty people, and they've long debated over our origins. Learning that you've positively identified our original home, and are even now valiantly defending it, will cause waves of anxiety and happiness amongst our populations. Rest assured that we are even now equipping a squadron to come to your aid, and to assist you in the defense of this beautiful world. We very much appreciate the pictures you've sent, by the way. Especially some of the more risque pictures of your cabinet and ministers - but not sure what you intended for us to do with them. Perhaps you sent them to use for safekeeping? We'll guard them carefully, and gazed upon on them in our chambers whilst we plan for our eventual and inevitable meeting! It will surely be an auspicious occasion!
	CDRodeffer: Our short range scanners have been admiring your beautiful new yellow speedster. I must say, I've always had a fondness for yellow, rising each morning to the light of our yellow sun, and silently morning its setting in our early afternoon when we are left with the pale blue light of our yellow sun's companion. You know, we have a notorious college near where I live whose colors are yellow and blue. Actually, they call them "maize" and blue, but I don't fully understand their reference to a labyrinth. But yes, per our mutual defense agreement, I'd be happy to help thwart any invasion attempts by the dreaded "andylooney" in the near future. Alas, as I still have no access to propulsion systems near Eden, withdrawal of that unseemly red clunker has not been easy. But now, having seen, admired, yea even coveted your speedster, I should be able to upgrade said clunker in the not too distant future. Meanwhile, our technicians are doing their best to reverse-engineer and copy your marvelous work. Feel free to peer through your long range scopes to have a look for yourself.

12) Werebear: Construct B2 Werebear

13) CDRodeffer: Build G1 Cdrodeffer
	Werebear: Ahh, yes, thank you. We were quite delighted with it! We took the court out for a spin in it, and had quite the splendid time. However, I must warn you, it requires outrageous amounts of fuel. I'd advise you, most respectfully, of course, to stay with the smaller more fuel efficient ships. We've found that we can't even afford to crank up the engines in our primary self defense vessel. I probably shouldn't admit this, since I know you are counting on to rush to your defense should andylooney strike, but, there it is. The large ships are just too expensive to have much fun with. If you do get stuck with any large ships that you don't want, just let us know and we'll be happy to take them off your hands for you. Fortunately our home system does possess vast quantitites of fuel. Talk to your engineers, see if you can dissuade them from their mad plan. Small efficient ships will one day rule the star ways. My people are just to grandiose to realize this!
	CDRodeffer: It's a good start that you understand how important it is to conserve energy resources, and I'm glad you've taken such notice in our efforts to conserve energy by using smaller ships. Sure, there will always be a few piggy politicians who insist upon large ships. They must be trying to compensate for something. But by and large, most of us get along very well with small, efficent ships. While we modeled our little runabout after your speedster, we decided to go with a smaller platform for just that reason, and are quite pleased with the results. If you would like a tutorial on our compact engineering, we would be happy to give you an in-system demonstration at some point in the near future. Just let us know, and we'll try to be there at the appointed time. Meanwhile, you can watch from afar as we demonstrate small vehicle construction, right before your very telescopes.

14) Werebear: Move B2 Werebear Eden
	Werebear: CDRodeffer, you old fox - you read between the lines, and you invited me to see up close how you build more efficient ships! I was hoping you'd see what we were hoping for, and of course you did! I'm tickled pink, but some of my staff didn't believe you'd actually invite us to come visit. This is our first voyage away from home, and you can probably imagine how excited our people are. We're sending our best and brightest to join you in your exploration of Eden. You'll see that we come entirely in peace. Don't worry about meeting us, we'll come out and meet you. Oh, this is just *TOO* thrilling!

15) CDRodeffer: Sacrifice Y1 Cdrodeffer
Move R1 Eden Cdrodeffer
	Werebear: Hi, there! We come in peace, and bring you greetings from the peoples of Werebear! And look, we have Xcyactl! For you... no, please, please, take it... our pleasure entirely!
	CDRodeffer: Likewise, it's a real honor to finally see one of your vessels up close, here in Eden. I wonder, have you tried using this Xcyactl as a fuel? Alternative propulsion systems just might be the thing you need for better economy, both at home and abroad. Say, there's another new piece of technology we just developed, and I thought you might like to have a look. It's a remote control function that our engineers -- what will they think of next!? -- have come up with. Since that r1 has been sitting out there in the remote reaches for so long, we need to figure out how to get those people home for resupply anyway, so what better way to try out the remote control function? Funny thing is, it takes lots of energy to operate. LOTS of energy. Fortunately, we have that little yellow runabout (it wasn't that useful for us anyway) that we can dump into our E=mc^2 converters. So check this out!

16) Werebear: Build R1 Werebear

17) CDRodeffer: Build G1 Cdrodeffer
	Werebear: Hey, what happened? We got word of some sort of diplomatic incident, and then, wow, your defense ship was gone? And we were looking so closely at your new fuel efficient speedster, when suddenly we noticed a disruption in the space-time continuum, and it was gone! Have your crews had Xcyactl before? That may explain parts of the strangeness, if they haven't - it does make weird ripples through the multi-space. Oh, wait - I see - remote control. Okay, whew... I was worried that my overly eager researchers made some sort of faux pas, which would be sad. Hey, can you share that trick of recycling ships? We'd like that... We're very much into recycling. No, we don't use Xcyactl for fuel. Well, actually, the very rich might. I had a patron as a young Werebearling who tried it out in a sand-speeder - and it was, let me tell you, quite the ride. But I don't recommend this for any but the very young and the unsqueamish. Since we don't have anybody protecting the Origin Star (as our religious leaders are calling Eden), my advisors have decided to send out another scout to protect that system - purely defensive, you understand.
	Werebear: CDRodeffer, this is the commander of the B2 Research Ship in orbit around Eden. We will relieve your crew of their defense responsibilities. Support is on its way for our defense of this system, but perhaps this larger ship will scare off any attacks by the dread pirate andylooney. On the behalf of our people, I want to thank you for finding the planet of our origins, and for beginning the shared growth of knowledge our research will bring. We commend you on your spirit of cooperation and trust. Commander Flemlink Potorsk, Werebear Defense Fleet.

18) Werebear: Build B2 Werebear
	CDRodeffer: We'd be happy to share the remote control technology based upon direct matter to energy conversion. But you must understand that the technology hasn't yet been perfected to 100% efficiency, as most new technologies are, and as a result, performing the conversion requires certain ... sacrifices. But in the interest of advancing science, and especially science for ecological development (first reduce (use small ships), then reuse (trade them in for what you need whenever possible), then recycle (matter to energy conversion, when necessary)). It's all rather simple, really. Say, how go your acheological digs on Eden?

19) CDRodeffer: Build R1 Cdrodeffer
	Werebear: Our digs go well! We think we found the flaming sword your people talk about... Well, actually, it wasn't flaming, exactly... and, well, to be honest, we're not sure it's really a sword. But, what the hay, our religious leaders are all saying they found the flaming sword, who am I to argue? To me, it looks like a big lumpy rock stick. Thanks for sharing that remote control technology. Our scientists have been experimenting on hamsters and tulips, and results are relatively positive. Relatively.

20) Werebear: Build R2 Werebear
	CDRodeffer: I have rather sad news concerning our economy. Trading has been down the last several days, and as a result, the people are getting somewhat restless, requiring some police actions in some regions. Nothing dangerous, I assure you, but we've seen much better times in the past.

21) CDRodeffer: Move R1 Cdrodeffer Eden
	Werebear: It isn't catching, is it? Oh me... oh my! We've just got word that we, too, might be having to engage in police actions ourselves. We surely hope not. If things get bad over there, you're welcome to visit. And fear not - if they get bad enough, we can help you with your police action, if need be. We'll be there in a whistle!
	CDRodeffer: Wow. You don't know how glad I am to hear this news, and about how willing you all have been to provide for the common defense. Our most heartfelt gratitude goes out to you as we struggle with the domestic problems of looting and, believe it or not, environmental degradation that has resulted from the economic greed of a few big wigs in high places. I'm sure you can sympathize.
	CDRodeffer: Holy smokes! We seem to have lost contact with your archeological team at Eden! I hope they're all OK. You know, some people are calling for scientific research programs to be cut from the global budget in these times of civil unrest, but of course, you and I both know better, that without the advancement of knowledge, the populous is in danger of spiraling into barbarism. We wish we had a little yellow speedster available to go visit your archeological ship via the fastest means possible, but since all of them were so unfortunately recycled, a "Little Red Corvette" will have to suffice. Speaking of which, there once was a legendary musician who sang a song about such a vehicle some 20 years ago. Judging from your distance, the radio waves may just now be reaching your system from those early broadcasts. If you care to give a listen, I'd much appreciate your comments on our music.

22) Werebear: Sacrifice R1 Werebear
Attack R1N Eden

23) CDRodeffer: Discover R1 Cdrodeffer Y3 Taxi
	Werebear: We noticed the same thing. We were afraid that sword of fire rock-stick-thingy had gone crazy and had taken over our crew. We immediately dispatched an identical Little Red Corvette (yes, we recall that song) to balance out your ship - but - egads! Your ship was gone, and the flaming sword rock-stick-thingy was gone, and our crews were all befuddled. For some reason, the Interstellar News Service (INS) reported that there was a fight, but clearly we wouldn't have attacked each other. That makes no sense at all. Where did your ship go?
	Werebear: CDRodeffer, I can only conclude one thing. I suspect that this was all the work of the Dread Pirate andylooney (DPa). I'm afraid to say it, but it looks like he must have snuck in under the watchful eye of our research and defense ships, stolen the flaming sword rock-stick-thingy, and then, to add insult to injury, stole your ship to make his getaway. We've detected some space tread marks and a faint smell of ether. I think we've both been had. I'm very worried about this turn of events. I'm afraid our religious leaders will call for all-out war, demanding that we seek out every haven that the DPa might lurk in, and to regain our holy religious rock-stick-thingy heritage artifact. Woe is upon us. I hope we can find a way to convince our peoples that everything is still in balance. The time for caution has arrived. Will you need us to dispatch our LRC to your Homeworld? Are you prepared for the civil unrest that might follow? Remember, give a little whistle and we'll be right there to help. We're listening...
	Werebear: Was that a whistle?
	CDRodeffer: Well, I suppose the driver of the Little Red Corvette *could* have gotten lost in space. Maybe. Oh wait! I think we found them, and they're reporting the discovery of a new system! This has cause much rejoicing here at home, despite the big wigs' wanting to name the new system, of all things, Taxi.

24) Werebear: Move R2 Werebear Taxi
	Werebear: Oh, is that where he went? Cool... but - our Space Traffic Control Agency thought that this ship originated from your home system, so... umm.... it can't be the Dread Pirate andylooney, unless...

25) CDRodeffer: Discover R1 Taxi R1 ぱぱ
	Werebear: Maybe we'd better just drop in for a little look-see... we'll report our findings. We're sending broadcasts of Peace and Understanding. But you ship is unresponsive. Is that your ship? Or could it be the DPa? Arggh! We'll stand by to hear from you on this very serious matter. Our religious leaders are certain that we'll find the rock-stick-thingy at Taxi - you haven't seen it, have you? Could it be aboard your ship? Gosh, I sure hope not. I'd hate to think what would happen. That ship we sent there is full of zealots. Oh my!
	Werebear: Peace. Understanding. Peace. Understanding. Repeat as necessary.

26) Werebear: Build R2 Werebear
	CDRodeffer: Wow! Check it out! That Little Red Corvette found another new system. Weird how the name came out, though, huh? There must be something strange going on with the navigational systems on that ship.
	Werebear: Our religious leaders will have a field day with this... they've long warned us of the day when someone would visit �� - and warned us that when we saw the "visage of the unmasked treachery of this world, surely the dogs would gnash their teeth, and doom would befall the schnictkl plants", whatever the heck that means. Are you in need of rescue? Surely, a dark red world like that must be dreary and boring compared to the happy world from whence your race evolved. BTW - that has also been a frequent subject of discussion of late - did you race evolve or travel to CDRodeffer? But our findings at Eden do sort of point to the correct answer. If your LRC is in need of rescue, I could dispatch a ship to help you. We're worried that you may be all but stuck in that uncomfortable place. We'll get cracking to get a ship built for a rescue mission...

27) CDRodeffer: Sacrifice G1 Cdrodeffer
Build R2 ぱぱ

28) Werebear: Trade B2 G2 Werebear
	CDRodeffer: I'm happy to hear your religious leaders are, well, having a nice day in the fields, what with your wonderful archeological work at Eden, despite the prophesized doom of your beloved schnictkl plants. I hope they're safe, and if you need us, we may soon be able to send a team of our crack gardners. In answer to your question, carvings on some of our ancient ruins seem to indicate that our distant ancestors traveled to the CDRodeffer system from somewhere else. And seeing that Eden is a garden planet, and we have many gardeners here, the travel theory seems quite possible.

29) CDRodeffer: Trade G1 Y1 Cdrodeffer
	Werebear: I thought... umm... that you didn't like those clunky bigger ships... don't they get just awful mileage?

30) Werebear: Build R3 Eden
	CDRodeffer: How true! How true! We have come to learn that certain high ranking members of the Little Red Corvette crew are actually disgruntled postal workers, and that they, and I quote, "are tired of being put down by 'the man'. We must rise up from this feudal oppression, overthrow the status-quo government and attain new heights of personal affluence." No wonder our mail has been late! So, we are in the process of sending out a (small) detachment of police officers (the police wear yellow here in CDRodeffer) to retrieve the renegade postal workers before they cause any harm, either to others or to themselves. If you encounter them, beware, and consider them "armed and dangerous." We don't anticipate any real problems, but you know, due to our long-standing mutual defense treaty, I thought it best you should know in advance, in case anything were to happen.

31) CDRodeffer: Trade G3 R3 Cdrodeffer
	Werebear: Did you hear about the bargain down at Ned's Used Space Ship Depot? Yep. Big Red ships. Granted they are a bit guady and all, but we think it goes well with the rest of our fleets, and reminds us fondly of our very first ship. Do you like it?
	CDRodeffer: Due to the news of those disgruntled postal workers hijacking a ship to some weird system in the far reaches of space (from us anyway), there has lately been a fad where everything must be red, and even the big wig politicians have succumbed to the crazy notion and given their production ship a paint job. I don't like it much, no, not at all. But what can I do? I can't control everyone.

32) Werebear: Move B1 Werebear Taxi

33) CDRodeffer: Trade Y1 G1 Cdrodeffer
	Werebear: CDRodeffer, old friend - it seems as if the postal worker situations has spiraled way out of control. Are you sure this doesn't have anything to do with the gift of Xcyactl that we gave you? Somehow, I feel responsible, like I've led your people astray with that temptation. On the other hand, maybe your people want your fleets to look a little like ours, perhaps? It might just be flattery, eh? 
	CDRodeffer: I assure you, the obsession with red is merely a passing fad, no more. But it has taken a huge toll on our productivity, in that people are thinking about red so much that they're no longer willing to work and build anything. To be sure, I'm in full agreement with that Shining sentiment, "All work and no play makes Jack a dull boy." But the opposite is just as much cause for concern, "All play and no work makes Jack a starving boy." There are only so many things one can do to stave off both, so we're putting some of our welfare recipients to work giving that little yellow speedster a fresh green paint job. We hope the new color will contrast enough with that silly red fad to make people want to start working again.

34) Werebear: Move G2 Werebear Taxi
	Werebear: Well, no wonder your people are obsessed - they're watching the postal workers in that system that shan't be named day in and day out... and what an interesting view it is. See, even though it is two star-jumps for our people to get there, the system is actually pretty close, and our telescopes are letting us get crystal clear views of the shenanagans going on over in that un-named system. Do your religious leaders have any idea what is happening there? Wowza wowza wowza... We can't look away, some of us. I'm going to send out an Ecology Research Ship to Taxi to see if they can pick up any interesting readings from a bit closer, Star-Jump-Wise...

35) CDRodeffer: Construct G1 Cdrodeffer
	Werebear: Wow... much better view from here. Well, good grief. All work has been halted as all of our populations are consumed with watching your postal workers. Great. It's officially contagious. Well, I guess we'll just have to sip some Xcyactl and enjoy the show.

36) Werebear: Build B2 Eden
	CDRodeffer: Watching those whacky postal workers from afar is like some sort of strange situation comedy. But it has appeased the masses, and the people have started calming themselves and getting back to work. See, they even built a nice new green ship.

37) CDRodeffer: Discover G1 Cdrodeffer B3 The_berry_vest_of_the_swirling_eddies
	Werebear: Green is such a nice color. Hey, did you hear the one about the Postal Worker and the Ixmram Girl? That's the latest going around the old office here... While we really like Green, we're especially fond of Blue...
	CDRodeffer: I have not heard "that one." If you care to share, I'm sure we'd be delighted to hear the story. And Blue is OK. After all, one of our suns is Blue. And in fact, one of our scientists has just now observed an interesting new Blue giant that we'd like to explore. We're being much more cautious these days about who we allow into space, after that postal worker fiasco, so I'm sure there will be no problems this time.

38) Werebear: Move R2 Werebear The_berry_vest_of_the_swirling_eddies
	CDRodeffer: Off topic -- tonight my family and I are leaving town for a few days' vacation. We'll be back late on the 11th.
	Werebear: Blue... it looks so... blue... we're... our breath has been collectively taken away. It. Is. So. Beautiful. We must see it. We must Possess it. Precious blue.

39) CDRodeffer: Build G1 The_berry_vest_of_the_swirling_eddies

40) Werebear: Build B2 Taxi
	CDRodeffer: Possess? Here at CDRodeffer, we've always operated under the principle that no one can really "possess" something so great as a world, much less a star system. These are common areas, to be shared by everyone. So, I'm not sure I understand your intentions when you say "possess." But yes, it is a pretty blue. Upon that much, we are in full agreement.
	Werebear: Surely you can see why we love blue so much. It satisfies something deep inside of us. We want... more blue...

41) CDRodeffer: Build G2 The_berry_vest_of_the_swirling_eddies

42) Werebear: Sacrifice G2 Taxi
Build B3 Taxi
Build B3 Eden
	CDRodeffer: I can understand your love of Blue, having lived through a ridiculous, nay, economically ruinous Red fad. I feel your pain.
	Werebear: Well, at least Blue (blueblueblueblueblue) isn't ruinous - but I'd hardly call it a fad. Sorry about the long delay - we were in blueness for a long while.

43) CDRodeffer: Build G2 Cdrodeffer
	CDRodeffer: Wow. That *is* a lot of blue. I think I'm going to have to go dig out my old pair of "Blue Blocker" sun glasses from 15 years ago, just to see clearly.
	CDRodeffer: Wow. That *is* a lot of blue. I think I'm going to have to go dig out my old pair of "Blue Blocker" sun glasses from 15 years ago, just to see clearly.

44) Werebear: Sacrifice B2 Eden
Trade B3 G3 Eden
Trade B3 G3 Taxi

45) CDRodeffer: Trade G2 B2 Cdrodeffer
	Werebear: Wow, CDRodeffer - you were right. Your soothsayers must have been working overtime. We have gotten over our fad for blue. Green is our new fav. How do you like it? Doesn't it go nice with our shiny new shoes?

46) Werebear: Build G2 Taxi
	CDRodeffer: Ooh, shiny. Sorry I'm less than eloquent today, but it's been a very, VERY hectic day at work and at home.
	Werebear: Sorry to hear that - do you want to take a break for a few days? I'm not in a hurry, particularly...
	CDRodeffer: It's OK. These things are cyclical in my line of work -- goes for a while pretty light, then a heavy load of stuff. I can find time to squeeze in a turn now and then.

47) CDRodeffer: Discover B2 Cdrodeffer Y3 Submarine
	Werebear: I guess you're right about that blueness - it must have been a fad. Hey - are you getting into that fad, too?

48) Werebear: Sacrifice G3 Taxi
Build G3 Taxi
Build B3 Taxi
Build B3 Eden
	CDRodeffer: No, I don't think Blue will ever be as big a fad as Red and Green have been.

49) CDRodeffer: Sacrifice R1 ぱぱ
Attack R2S The_berry_vest_of_the_swirling_eddies
	Werebear: Yes, we are in complete agreement on that. No more blue for... well, okay, maybe just a couple more...

50) Werebear: Sacrifice B2 Eden
Trade B1 R1 Taxi
Trade B3 Y3 Taxi
	CDRodeffer: Right. Well, I hate to be such a freeloader, but would you mind if I borrowed this for a minute? Thanks.

51) CDRodeffer: Trade G1 Y1 The_berry_vest_of_the_swirling_eddies
	Werebear: You took my pretty red ship? Haven't you seen the folly of the red war path? Well, okay, you can borrow it. Does that mean we can borrow something from you later?

52) Werebear: Sacrifice Y3 Taxi
Move G3 Eden Cdrodeffer
Move R3 Eden Cdrodeffer
Move B3 Eden Cdrodeffer
	CDRodeffer: Oh, I see no reason why we shouldn't be able to borrow from one another, as each has need. I've gotten along "OK" with just these small little ships for most of the game, but I see that you've accummulated many more, and here at CDRodeffer, we generally share many things in common. But hey, how goes your archeological research? Surely you must have some peaceful reason for having so many ships these days, seeing as how both matter and energy are so precious.
	Werebear: Oh, our research is going just great! In fact, hang on a moment, we'll show you some of the things we've found! First, a little "razzle-dazzle"...

53) CDRodeffer: Sacrifice R2 ぱぱ
Attack R3 Cdrodeffer
Attack G3 Cdrodeffer
	Werebear: I know we've been a bit greedy with our big ships - perhaps you'd like to help yourself to one or two of them? We won't mind at all... I'm so glad you won't mind if we borrow some, say, parking spaces from you for a while...
	CDRodeffer: Wow! That is impressive, indeed. Thanks for sending over those ships! I'm sure they'll come in handy.

54) Werebear: Sacrifice R3 Werebear
Attack R3 Cdrodeffer
Attack G3 Cdrodeffer
Attack R3 Cdrodeffer
	Werebear: Hey, you're only borrowing those, right? They are nice and roomy... but...   Hey - did you see our cool artifacts? They are stored in our pretty shiny red ship! Check 'em out... see?

55) CDRodeffer: Build Y1 The_berry_vest_of_the_swirling_eddies
	Werebear: Oh my. I think our postal workers went crazy! First they stole our original star cruiser, and then they crashed it - and then, heck, I don't know what happened! Umm... If I were you, I'd think about getting that little green ship of yours out of there. I think your postal workers must be in cahoots with our'n...
	CDRodeffer: Oh, man. Well. I think I'm going to ask our administrators to consider re-establishing a new home for the CDRodeffer population on The_Berry_Vest_of_the_Swirling_Eddies. They have great music there, dontcha know. Have you ever heard them? I especially like the song "Outdoor Elvis" from their second album and "Home Permanent" from their first.
	CDRodeffer: I can't see any other way out of our recent environmental disaster. The smog and polution from those large ships is choking our population. We've decided to go off to found a new "Home Permanent" at The_Berry_Vest_of_the_Swirling_Eddies.
	CDRodeffer: Ugg. It seems that the propulsion system on that small green ship isn't working properly, and it won't budge. If you can get it running, consider it a gift. Meanwhile, we're going to make do as best we can at our new home.

56) Werebear: Attack G1 Cdrodeffer
	Werebear: I think you may just have it pointed the wrong way - I'll turn it around and see if that helps...



771)
Started: 2005.9.26, Ended: 2005.10.29
Participants: Kermit (S), rootbeer (N), MatrixFrog (E)
Winner: Kermit

1) rootbeer: Homeworld B1 G2 Y3 Rootbeer

2) MatrixFrog: Homeworld Y1 B3 G3

3) Kermit: Homeworld Y2 G3 B3
	rootbeer: For the record, I have yet to actually win at a game of Homeworlds. Are either of you secretly world champion, by chance?
	rootbeer: Howdy, Kermit. Or perhaps I should say, "So, we meet again." :-)

4) rootbeer: Trade Y3 G3 Rootbeer
	Kermit: Well, since I got eliminated first in our other game, I think not. This is only the second time I have played homeworlds even though I have 5 stashes of Pyramids.

5) MatrixFrog: Build G1 Matrixfrog
	rootbeer: I thought this would be an easier game than it turned out to be. But I still don't know whether I really like it. Maybe after I win, I'll like it. :-)

6) Kermit: Construct B1 Kermit

7) rootbeer: Build G1 Rootbeer

8) MatrixFrog: Trade G3 Y3 Matrixfrog
	MatrixFrog: I'm certainly not world champion. I've only played a few times in real life, and around 10 or so here, I think. All I can say is, read the suggestions on the wiki, and learn from your mistakes.

9) Kermit: Discover B1 Kermit Y1 Slinky

10) rootbeer: Trade G3 Y3 Rootbeer
	Kermit: Well I read the suggestions in the wiki and it didn't help me at all in my last game. Perhaps if I had read them BEFORE the game started.

11) MatrixFrog: Build G1 Matrixfrog

12) Kermit: Build B1 Kermit

13) rootbeer: Construct Y1 Rootbeer

14) MatrixFrog: Trade G1 B1 Matrixfrog

15) Kermit: Trade B1 G1 Kermit

16) rootbeer: Discover Y1 Rootbeer G3 Honker

17) MatrixFrog: Build G1 Matrixfrog

18) Kermit: Build G2 Kermit
	MatrixFrog: I think the biggest suggestion in the wiki is the one about building your homeworld. So that would make sense. Heh.

19) rootbeer: Build G2 Rootbeer
	Kermit: Yea that was the suggestion I had in mind. After turn two or so I read the wiki and realized my mistake. I knew my position was bad before that tho. Now I know why. hehehe  

20) MatrixFrog: Build B1 Matrixfrog

21) Kermit: Move G2 Kermit Slinky

22) rootbeer: Move G2 Rootbeer Honker

23) MatrixFrog: Trade B1 R1 Matrixfrog

24) Kermit: Trade G1 B1 Kermit

25) rootbeer: Build Y1 Honker

26) MatrixFrog: Discover G1 Matrixfrog Y2 Gamma

27) Kermit: Build B2 Slinky

28) rootbeer: Construct Y2 Rootbeer

29) MatrixFrog: Build G1 Gamma

30) Kermit: Trade B2 R2 Slinky

31) rootbeer: Build G2 Honker

32) MatrixFrog: Discover G1 Gamma Y3 Delta

33) Kermit: Move G2 Slinky Honker
Catastrophe Honker Green

34) rootbeer: Build G2 Rootbeer
	Kermit: Fall down go BOOM!

35) MatrixFrog: Move G1 Delta Rootbeer
Catastrophe Rootbeer G

36) Kermit: Trade B1 G1 Kermit
	MatrixFrog: Interesting: "The Honker system has gone supernova." So I guess when the system marker itself is part of the catastrophe, it's called a "supernova" as opposed to that hyperspatial flux thing. Is that new, or did I just not notice it?

37) rootbeer: Trade Y3 G3 Rootbeer
	Kermit: I am not sure if that is new or not


38) MatrixFrog: Trade Y3 G3 Matrixfrog

39) Kermit: Move R2 Slinky Gamma

40) rootbeer: Build Y1 Rootbeer

41) MatrixFrog: Move G1 Gamma Rootbeer

42) Kermit: Move G1 Kermit Slinky
	MatrixFrog: The way I typed that was "move g1 Gamma rootbeer" and it occurred to me that a drink called Gamma Rootbeer" would probably sell quite well.
	rootbeer: Try Gamma Rootbeer! Now 80% less radioactive!


43) rootbeer: Trade G3 R3 Rootbeer

44) MatrixFrog: Build G1 Rootbeer

45) Kermit: Build G2 Slinky

46) rootbeer: Attack G1E Rootbeer

47) MatrixFrog: Build G2 Rootbeer

48) Kermit: Move G1 Slinky Gamma

49) rootbeer: Trade G1 B1 Rootbeer

50) MatrixFrog: Build G1 Rootbeer

51) Kermit: Move G1 Gamma Rootbeer
Catastrophe Rootbeer G

52) rootbeer: Trade B1 G1 Rootbeer

53) MatrixFrog: Build B1 Matrixfrog

54) Kermit: Move B1 Slinky Gamma

55) rootbeer: Build R1 Rootbeer

56) MatrixFrog: Discover B1 Matrixfrog Y2 Feesko

57) Kermit: Move G2 Slinky Gamma

58) rootbeer: Trade Y2 B2 Rootbeer

59) MatrixFrog: Sacrifice G1 Matrixfrog
Build B2 Feesko

60) Kermit: Build B2 Gamma

61) rootbeer: Trade B2 G2 Rootbeer

62) MatrixFrog: Trade B1 G1 Feesko

63) Kermit: Trade G2 Y2 Gamma

64) rootbeer: Discover G1 Rootbeer Y3 Arcturus

65) MatrixFrog: Move B1 Matrixfrog Feesko

66) Kermit: Move R2 Gamma Arcturus

67) rootbeer: Discover R1 Rootbeer Y3 Solsystem

68) MatrixFrog: Build G1 Matrixfrog

69) Kermit: Attack G1N Arcturus

70) rootbeer: Build Y1 Rootbeer

71) MatrixFrog: Trade G3 Y3 Matrixfrog

72) Kermit: Move R2 Arcturus Feesko

73) rootbeer: Build R1 Rootbeer

74) MatrixFrog: Build B1 Feesko

75) Kermit: Attack B2E Feesko

76) rootbeer: Discover Y1 Rootbeer B2 India

77) MatrixFrog: Discover B1 Feesko Y3 Shortage

78) Kermit: Attack G1E Feesko
	Kermit: if I am not arround this weekend or early next week it will be because of Hurricane Wilma. Doesn't look like it'll hit here but neither did Charley last year.

79) rootbeer: Trade G2 B2 Rootbeer
	rootbeer: Thanks for letting us know, Kermit.


80) MatrixFrog: Sacrifice G1 Matrixfrog
Build B3 Feesko
	rootbeer: I hope you make it through with no problems.
	Kermit: It shouldn't be a big deal. All of the models have it going about 60-70 miles south of here (Punta Gorda). We'll get some ugly weather but it shouldn't be too severe. After Charley though we're all a little extra wary here (understandably so). 
	MatrixFrog: Hope it works out like the models say, then...

81) Kermit: Build B3 Feesko
Catastrophe Feesko Blue

82) rootbeer: Trade R1 G1 Rootbeer

83) MatrixFrog: Trade Y3 G3 Matrixfrog

84) Kermit: Build R1 Feesko

85) rootbeer: Build R1 Rootbeer

86) MatrixFrog: Move B1 Shortage Rootbeer

87) Kermit: Move B1 Gamma Rootbeer
Catastrophe Rootbeer B


88) MatrixFrog: Build G1 Matrixfrog

89) Kermit: Move G1 Arcturus Gamma

90) MatrixFrog: Move G1 Matrixfrog Gamma

91) Kermit: Build B1 Gamma

92) MatrixFrog: Discover G1 Gamma Y1 Borsko

93) Kermit: Move R1 Feesko Solsystem

94) MatrixFrog: Build G1 Matrixfrog

95) Kermit: Sacrifice Y2 Gamma
Move G1 Gamma Matrixfrog
Move G1 Feesko Matrixfrog
Catastrophe Matrixfrog G

96) MatrixFrog: Build G1 Borsko

97) Kermit: Move R2 Feesko Matrixfrog

98) MatrixFrog: Sacrifice G1 Borsko
Build R1 Matrixfrog
	MatrixFrog: Uh oh!!!

99) Kermit: Attack R1E Matrixfrog
	MatrixFrog: I have successfully delayed my death for one, maybe two more turns. But I do believe I've lost.
	Kermit: good game.

100) MatrixFrog: Trade R1 G1 Matrixfrog

101) Kermit: Attack G1E Matrixfrog



760)
Started: 2005.9.26, Ended: 2005.10.1
Participants: MatrixFrog (S), pigasuspig (N)
Winner: pigasuspig

1) pigasuspig: Homeworld G3 B1 Y3

2) MatrixFrog: Homeworld B3 Y2 G3

3) pigasuspig: Build Y1 Pigasuspig

4) MatrixFrog: Build G1 Matrixfrog

5) pigasuspig: Build Y1 Pigasuspig


6) MatrixFrog: Build G1 Matrixfrog

7) pigasuspig: Trade Y1 G1 Pigasuspig

8) MatrixFrog: Trade G1 Y1 Matrixfrog

9) pigasuspig: Discover G1 Pigasuspig B2 Sapphire

10) MatrixFrog: Build Y1 Matrixfrog

11) pigasuspig: Build G1 Sapphire

12) MatrixFrog: Trade Y1 B1 Matrixfrog

13) pigasuspig: Build G2 Sapphire

14) MatrixFrog: Trade G1 R1 Matrixfrog

15) pigasuspig: Trade G1 Y1 Sapphire

16) MatrixFrog: Build R1 Matrixfrog

17) pigasuspig: Build Y2 Sapphire

18) MatrixFrog: Build B1 Matrixfrog

19) pigasuspig: Build Y2 Sapphire

20) MatrixFrog: Trade B1 G1 Matrixfrog

21) pigasuspig: Build Y3 Pigasuspig

22) MatrixFrog: Discover Y1 Matrixfrog G1 Escape

23) pigasuspig: Trade Y1 R1 Sapphire

24) MatrixFrog: Discover Y1 Escape G2 Escapeii

25) pigasuspig: Trade Y3 R3 Pigasuspig
	MatrixFrog: that's "II" as in the roman numeral 2, not LL or one-one.

26) MatrixFrog: Build G1 Matrixfrog
	pigasuspig: thanks

27) pigasuspig: Build R2 Pigasuspig

28) MatrixFrog: Build Y1 Escapeii

29) pigasuspig: Sacrifice Y2 Sapphire
Discover G1 Sapphire B1 Disposable
Move G1 Disposable Matrixfrog
Catastrophe Matrixfrog G

30) MatrixFrog: Move Y1 Escapeii Pigasuspig

31) pigasuspig: Sacrifice Y2 Sapphire
Discover G2 Sapphire G1 Throwaway
Move G2 Throwaway Matrixfrog

32) MatrixFrog: Move Y1 Escapeii Pigasuspig
Catastrophe Pigasuspig Y

33) pigasuspig: Sacrifice R3 Pigasuspig
Attack R1S Matrixfrog
Attack R1S Matrixfrog
Attack B1S Matrixfrog



780)
Started: 2005.9.28, Ended: 2005.10.3
Participants: zevzimra (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) zevzimra: Homeworld G2 B3 Y3
	zevzimra: Andy?  OMG, I am very honored!

3) andylooney: Build Y1 Andylooney

4) zevzimra: Build Y1 Zevzimra

5) andylooney: Trade Y1 G1 Andylooney

6) zevzimra: Discover Y1 Zevzimra G1 Wolfsong
	andylooney: yup, it's me! I saw an open binary game and jumped in. So, do I know you?

7) andylooney: Discover G1 Andylooney Y3 Clampett

8) zevzimra: Build Y1 Zevzimra
	zevzimra: Regretfully, no, we have never met...  but I am a big fan!  

9) andylooney: Build G1 Clampett

10) zevzimra: Build Y1 Wolfsong

11) andylooney: Discover G1 Clampett B1 Cobalt

12) zevzimra: Trade Y1 B1 Zevzimra

13) andylooney: Build G2 Cobalt

14) zevzimra: Move B1 Zevzimra Wolfsong

15) andylooney: Build G3 Clampett

16) zevzimra: Build B2 Wolfsong

17) andylooney: Sacrifice G3 Clampett
Build G3 Clampett
Build G3 Clampett
Build G3 Cobalt

18) zevzimra: Construct B2 Wolfsong

19) andylooney: Trade G3 R3 Cobalt

20) zevzimra: Build Y1 Zevzimra

21) andylooney: Trade G2 Y2 Cobalt

22) zevzimra: Trade B2 R2 Wolfsong

23) andylooney: Sacrifice G3 Clampett
Build G2 Clampett
Build G3 Cobalt
Build G3 Cobalt

24) zevzimra: Build B2 Wolfsong

25) andylooney: Move G3 Clampett Wolfsong

26) zevzimra: Move R2 Wolfsong Clampett

27) andylooney: Sacrifice R3 Cobalt
Attack R2S Clampett
Attack B2S Wolfsong
Attack B2S Wolfsong

28) zevzimra: Trade Y1 R1 Zevzimra
	zevzimra: Ouch

29) andylooney: Trade B2 R2 Wolfsong

	zevzimra: I regretfully resign...  you are certainly a master at this!
	SYSTEM: zevzimra resigns.


792)
Started: 2005.9.28, Ended: 2005.10.4
Participants: andylooney (S), MatrixFrog (N)
Winner: andylooney

1) MatrixFrog: Homeworld G2 B1 Y3
	MatrixFrog: Hooray! Thank you! I'm sure you'll crush me easily, but that's okay. Good luck!

2) andylooney: Homeworld G2 B3 Y3

3) MatrixFrog: Build Y1 Matrixfrog
	andylooney: it's my pleasure!


4) andylooney: Build Y1 Andylooney

5) MatrixFrog: Trade Y1 B1 Matrixfrog

6) andylooney: Trade Y1 B1 Andylooney

7) MatrixFrog: Build B2 Matrixfrog

8) andylooney: Discover B1 Andylooney G1 Paradise

9) MatrixFrog: Trade B2 R2 Matrixfrog

10) andylooney: Build B2 Paradise

11) MatrixFrog: Build B2 Matrixfrog

12) andylooney: Build B2 Paradise

13) MatrixFrog: Discover B1 Matrixfrog Y3 Magnesium

14) andylooney: Trade B2 Y2 Paradise

15) MatrixFrog: Move B1 Magnesium Paradise

16) andylooney: Trade B2 R2 Paradise

17) MatrixFrog: Build B2 Paradise

18) andylooney: Attack B2N Paradise
	andylooney: I'm having trouble... when I say attack b2 paradise, it says "The ship B2S could not be found in the paradise system."
	MatrixFrog: I replied to your email. In case that doesn't go through:<br><br>The system is designed for 3 and 4 player games, and doesn't modify itself for 2 player games. You are South and I am North (your homeworld has an (S) after it and mine has an (N) so you have to type "attack b2n paradise" to indicate that you mean MY b2 ship and not someone else's. In this case, there is only one b2, so it's unambiguous, but the system still requires it. Make sense? 

19) MatrixFrog: Build B2 Paradise
	andylooney: Ah! I see. I should have read the fine print!

20) andylooney: Sacrifice Y2 Paradise
Discover R2 Paradise G3 Garden
Move B2 Paradise Garden
	MatrixFrog: I never understood why they bothered with all that "catastrophes are optional" stuff until now.

21) MatrixFrog: Trade B2 R2 Matrixfrog

22) andylooney: Build B2 Paradise
Catastrophe Paradise Blue

23) MatrixFrog: Trade Y3 G3 Matrixfrog
	MatrixFrog: blue is called "salvage technology"? i would have called it "trade technology" or "conversion technology"... weird

24) andylooney: Build R1 Garden

25) MatrixFrog: Trade R2 Y2 Matrixfrog

26) andylooney: Trade R1 Y1 Garden

27) MatrixFrog: Build G1 Matrixfrog

28) andylooney: Build Y1 Andylooney

29) MatrixFrog: Build Y1 Matrixfrog

30) andylooney: Trade Y1 G1 Andylooney

31) MatrixFrog: Trade G1 B1 Matrixfrog

32) andylooney: Discover G1 Andylooney Y1 Gateway

33) MatrixFrog: Build R1 Matrixfrog

34) andylooney: Build Y2 Andylooney

35) MatrixFrog: Discover B1 Matrixfrog Y3 Epsilon

36) andylooney: Discover G1 Gateway Y3 Goldenrock

37) MatrixFrog: Trade B1 G1 Epsilon

38) andylooney: Discover Y2 Andylooney G1 Niceplace

39) MatrixFrog: Discover G1 Epsilon Y1 Theta

40) andylooney: Build Y2 Garden

41) MatrixFrog: Sacrifice Y1 Matrixfrog
Move G1 Theta Andylooney

42) andylooney: Build R1 Garden

43) MatrixFrog: Move R1 Matrixfrog Goldenrock

44) andylooney: Sacrifice R2 Garden
Attack R1N Goldenrock
Attack G1N Andylooney

45) MatrixFrog: Move R2 Matrixfrog Goldenrock

46) andylooney: Sacrifice Y2 Garden
Move G1 Goldenrock Niceplace
Move R1 Goldenrock Niceplace

47) MatrixFrog: Build G2 Matrixfrog

48) andylooney: Build G3 Andylooney

49) MatrixFrog: Move G2 Matrixfrog Goldenrock

50) andylooney: Discover G3 Andylooney Y1 Littleyellowdifferent

51) MatrixFrog: Build Y1 Matrixfrog

52) andylooney: Move G1 Andylooney Littleyellowdifferent

53) MatrixFrog: Move Y1 Matrixfrog Goldenrock

54) andylooney: Sacrifice G3 Littleyellowdifferent
Build G3 Littleyellowdifferent
Build Y2 Niceplace
Build Y3 Garden

55) MatrixFrog: Build R1 Goldenrock

56) andylooney: Sacrifice Y3 Garden
Move Y1 Garden Littleyellowdifferent
Move Y1 Littleyellowdifferent Goldenrock
Move Y2 Niceplace Goldenrock
Catastrophe Goldenrock Yellow

57) MatrixFrog: Discover G3 Matrixfrog Y3 Zeta

58) andylooney: Sacrifice Y2 Niceplace
Move G3 Littleyellowdifferent Garden
Move G3 Garden Matrixfrog

59) MatrixFrog: Build Y1 Matrixfrog

60) andylooney: Sacrifice R1 Niceplace
Attack Y2N Matrixfrog

61) MatrixFrog: Build Y1 Matrixfrog

62) andylooney: Build Y2 Matrixfrog
Catastrophe Matrixfrog Yellow



777)
Variants: "Left man down"
Started: 2005.9.29, Ended: 2005.10.7
Participants: rootbeer (S), istari (W), zevzimra (N), Kermit (E)
Winner: zevzimra

1) zevzimra: Homeworld B1 G2 Y3

2) Kermit: Homeworld G1 Y2 B3

3) rootbeer: Homeworld B3 G1 Y3

4) istari: Homeworld G3 B1 Y3

5) zevzimra: Build Y1 Zevzimra
	zevzimra: Good luck!

6) Kermit: Build B1 Kermit

7) rootbeer: Build Y1 Rootbeer

8) istari: Build Y1 Istari

9) zevzimra: Trade Y1 G1 Zevzimra

10) Kermit: Discover B1 Kermit G3 Crate

11) rootbeer: Trade Y1 G1 Rootbeer

12) istari: Trade Y1 R1 Istari

13) zevzimra: Discover G1 Zevzimra Y3 Zipper

14) Kermit: Build B1 Crate

15) rootbeer: Build Y1 Rootbeer

16) istari: Build R1 Istari

17) zevzimra: Build G1 Zipper

18) Kermit: Trade B1 R1 Crate

19) rootbeer: Build G2 Rootbeer

20) istari: Discover R1 Istari G2 Smile

21) zevzimra: Build G2 Zipper

22) Kermit: Build B1 Kermit

23) rootbeer: Discover G1 Rootbeer B2 Dirigible

24) istari: Trade R1 B1 Istari

25) zevzimra: Construct Y1 Zevzimra

26) Kermit: Build B2 Crate

27) rootbeer: Build G2 Dirigible

28) istari: Build B2 Istari

29) zevzimra: Discover G1 Zipper R1 Pants

30) Kermit: Trade B2 R2 Crate

31) rootbeer: Trade G1 Y1 Dirigible

32) istari: Trade B1 G1 Istari

33) zevzimra: Sacrifice G2 Zipper
Build G2 Zipper
Build G3 Zipper

34) Kermit: Build B1 Crate

35) rootbeer: Discover Y1 Rootbeer B2 Bobloblaw

36) istari: Construct G3 Istari

37) zevzimra: Move G3 Zipper Zevzimra

38) Kermit: Trade B1 Y1 Crate

39) rootbeer: Build G3 Rootbeer

40) istari: Move G3 Istari Dirigible

41) zevzimra: Trade G3 R3 Zevzimra

42) Kermit: Move R1 Crate Bobloblaw

43) rootbeer: Trade Y3 R3 Rootbeer

44) istari: Construct G3 Istari

45) zevzimra: Trade Y1 B1 Zevzimra

46) Kermit: Attack Y1S Bobloblaw

47) rootbeer: Build R1 Rootbeer

48) istari: Trade G3 R3 Istari

49) zevzimra: Move B1 Zevzimra Zipper

50) Kermit: Pass

51) rootbeer: Discover Y1 Dirigible G3 Floo

52) istari: Sacrifice G3 Dirigible
Build B2 Istari
Build Y1 Istari
Build G3 Istari

53) zevzimra: Construct B2 Zipper

54) Kermit: Move B1 Crate Bobloblaw

55) rootbeer: Build Y1 Floo

56) istari: Move G3 Istari Smile

57) zevzimra: Sacrifice Y3 Zevzimra
Move B1 Zipper Kermit
Move B2 Zipper Kermit
Move G1 Zipper Zevzimra
Catastrophe Kermit B



812)
Started: 2005.9.30, Ended: 2005.9.30
Participants: sketchwick (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y2 B1 G3

2) sketchwick: Homeworld B2 G1 R3

3) jeep: Construct G1 Jeep

4) sketchwick: Build R1 Sketchwick

5) jeep: Build G1 Jeep

6) sketchwick: Trade R1 Y1 Sketchwick

7) jeep: Trade G1 R1 Jeep

8) sketchwick: Discover R3 Sketchwick G3 Sproutdeath

9) jeep: Build R1 Jeep

10) sketchwick: Build Y1 Sketchwick

11) jeep: Trade R1 Y1 Jeep

12) sketchwick: Move Y1 Sketchwick Sproutdeath

13) jeep: Discover Y1 Jeep G3 Sproutgo

14) sketchwick: Build R1 Sproutdeath

15) jeep: Build Y2 Sproutgo

16) sketchwick: Move R3 Sproutdeath Jeep

17) jeep: Attack R3S Jeep

18) sketchwick: Build Y2 Sketchwick

19) jeep: Sacrifice Y2 Sproutgo
Move R3 Jeep Sproutgo
Move R3 Sproutgo Sketchwick

	SYSTEM: sketchwick resigns.


813)
Started: 2005.9.30, Ended: 2005.9.30
Participants: sketchwick (S), jeep (N)
Winner: sketchwick

1) jeep: Homeworld Y3 B2 G3

2) sketchwick: Homeworld Y3 G1 B3

3) jeep: Build G1 Jeep

4) sketchwick: Build B1 Sketchwick

5) jeep: Build G1 Jeep

6) sketchwick: Build B1 Sketchwick

7) jeep: Discover G1 Jeep B1 Trada

8) sketchwick: Discover B1 Sketchwick R2 Yada

9) jeep: Build G2 Trada

10) sketchwick: Trade B3 Y3 Sketchwick

11) jeep: Sacrifice G3 Jeep
Build G2 Jeep
Build G2 Trada
Build G3 Jeep

12) sketchwick: Build Y1 Sketchwick

13) jeep: Discover G2 Jeep Y1 Mova

14) sketchwick: Build B2 Sketchwick

15) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build G3 Mova
Build G3 Mova

16) sketchwick: Trade B2 R2 Sketchwick

17) jeep: Trade G1 R1 Jeep

18) sketchwick: Move Y3 Sketchwick Yada

19) jeep: Trade G2 Y2 Trada

20) sketchwick: Discover R2 Sketchwick Y2 Huba

21) jeep: Sacrifice G3 Mova
Build G1 Mova
Build G2 Jeep
Build G3 Trada

22) sketchwick: Build B2 Sketchwick

23) jeep: Trade G2 B2 Trada

24) sketchwick: Trade B2 G2 Sketchwick

25) jeep: Sacrifice Y2 Trada
Move G3 Mova Huba
Move G3 Huba Sketchwick

26) sketchwick: Move Y3 Yada Mova

27) jeep: Sacrifice R1 Jeep
Attack G2S Sketchwick

28) sketchwick: Move Y3 Mova Jeep

29) jeep: Sacrifice G2 Sketchwick
Build G2 Jeep
Build B2 Trada

30) sketchwick: Sacrifice R2 Huba
Attack G3N Jeep
Attack G2N Jeep

31) jeep: Sacrifice B2 Trada
Trade G3 R3 Sketchwick
Trade G2 Y2 Mova

32) sketchwick: Build G2 Jeep
Catastrophe Jeep G



823)
Started: 2005.9.30, Ended: 2005.10.6
Participants: Samaculus (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld Y1 B2 G3

2) Samaculus: Homeworld B3 G2 Y1

3) MatrixFrog: Build G1 Matrixfrog

4) Samaculus: Build Y1 Samaculus

5) MatrixFrog: Build G1 Matrixfrog

6) Samaculus: Build Y2 Samaculus

7) MatrixFrog: Trade G3 Y3 Matrixfrog

8) Samaculus: Discover Y1 Samaculus G1 Heiphon

9) MatrixFrog: Build Y2 Matrixfrog

10) Samaculus: Discover Y1 Heiphon G2 Sentinel

11) MatrixFrog: Discover Y2 Matrixfrog R3 Scorch

12) Samaculus: Discover Y1 Sentinel G3 Heiphon

13) MatrixFrog: Trade G1 B1 Matrixfrog

14) Samaculus: Build Y2 Heiphon

15) MatrixFrog: Trade Y3 B3 Matrixfrog

16) Samaculus: Build Y3 Samaculus

17) MatrixFrog: Discover Y2 Scorch G1 Delta

18) Samaculus: Move Y1 Samaculus Delta

19) MatrixFrog: Move Y2 Delta Samaculus

20) Samaculus: Move Y1 Delta Heiphon

21) MatrixFrog: Build Y3 Samaculus
Catastrophe Samaculus Y



817)
Started: 2005.10.1, Ended: 2005.10.7
Participants: Jesse (S), dralius (N)
Winner: Jesse

1) dralius: Homeworld Y1 G1 R1
	dralius: Hi, new to this game so i may be slow.


2) Jesse: Homeworld G1 B1 R1
	Jesse: Slow is okay.  I recommend, though, that you take a look at the wiki, where I've written some important strategy tips for new players.  The number one thing I'd point out is that you should choose a large ship to start, not a small one.  To be sporting, I'll also take a small ship.

3) dralius: Build R1 Dralius
	dralius: i am still working out how to write the comands, it seems that i can't construct a shit at this point.

	dralius: it says i must have that type of ship to constuct it and it says there is not sufficiant red to build one either.
	dralius: if i can't build a ship what can i do?

	Jesse: You can only build a ship of the same color as a ship you already own in the system where you're building it, so it would have to be red.  I don't understand the error about insufficient red; clearly there are red 'mids available.  Are you trying to build a medium or large ship?  You must build the smallest available of that color.
	Jesse: The command should be: "construct r1 dralius"

4) Jesse: Build R2 Jesse
	dralius: i think my problem was i assumed it knew what the smallest value was so i didn't need to tell it that is was a 1

	Jesse: Ah, yes.  It appears there are some poor error messages for that kind of malformed command.

5) dralius: Discover R1 Dralius Y3 Occularies
	Aaron: I apologize.  What is happening is once an error occurs, it shouldn't continue checking for other errors.  Because it's not "short-circuiting," you sometimes get multiple errors that don't really make sense.  This is indeed on my TODO list and I just haven't gotten around to it.  I *will* get to it though.
	Aaron: I will consider changing the "construct" command as well so that you do not have to enter a size.  I guess I always err on the side of expliciteness so as to minimize surprises and unanticipated results.
	dralius: here is a question. with the object being to destroy the other player/s. In a two player game is there any point on doing anything other than build ships and attack.
	dralius: second question: is there any way to block an attack?


6) Jesse: Trade R2 Y2 Jesse
	Jesse: To question one, I would say there's actually a lot of complexity just in those two general areas of production and attack.  Particularly when it comes to production, you want to try to exploit the stash and the game position to outproduce your opponent.  This can include making a run on a particular color to try to limit your opponent's options in some way, such as leaving him unmaneuverable because he doesn't have enough yellow.
	Jesse: To the second question, in what sense do you mean?  There are various kinds of attacks, and various ways of protecting yourself.  For instance, to protect yourself from catastrophes, limit the number of 'mids of a given color in a system.

7) dralius: Build R2 Dralius
	Jesse: Now that I have a Y2 ship, I can sacrifice it to hop a ship directly into your home system, so you'll have to watch for that.

8) Jesse: Build R2 Jesse
	dralius: my second question is literal. If i am in a position to attack you there seems to be nothing you can do to stop it. Am i correct?
	Jesse: Right.  Of course, when you move into attack position, it will be my turn next, so you'll have to account for whatever I might do (such as being able to attack your ship) before you get to carry out the attack.

9) dralius: Discover R1 Occularies B2 Stomell
	Jesse: Now, beware of the fact that I can hop one of my red ships into your homeworld, so you can't afford to build a third one there.
	Jesse: You may find yourself rather limited if you have nothing but red ships; it's generally good to diversify.  To do that, you'll have to find a blue planet sometime.
	dralius: why?

	dralius: i may be missing something but i don't see the point in having blue. Yello allows me to move - i have that and green to produce i have that.



10) Jesse: Discover R2 Jesse Y3 Stage
	dralius: ok now i am in a blue system.

	Jesse: Yes, you have yellow and green, but you only have red ships.  First off, that leaves you vulnerable to catastrophes.  A single red catastrophe in your system will wipe you out.  Second, ship sacrifices are a very important part of the game.  Having yellow ships to sacrifice allows you to move multiple ships on one turn, which is an important attack technique.  Large green ships can boost your production by building multipe ships in one turn.  As long as you can rebuild the large green as part of the maneuver, you don't lose anything.

11) dralius: Trade R1 G1 Stomell
	dralius: sorry still thinking about my move


12) Jesse: Build R1 Jesse

13) dralius: Build G2 Stomell

14) Jesse: Build R2 Jesse

15) dralius: Trade G2 Y2 Stomell

16) Jesse: Move R1 Jesse Stage

17) dralius: Move G1 Stomell Dralius
	Jesse: What would happen if I sacrificed my y2 to move the ships from Stage to your homeworld?
	dralius: other than you capturing it?

	dralius: nothing i can do about that now.

	dralius: you could distroy my system.

	dralius: construct g2 dralius
	dralius: can't do that i guess, i don't see the solution



18) Jesse: Build R3 Jesse
	Jesse: Right.  Now I can't wipe you out with a single blow.  Do you see how I've had you scrambling to protect your homeworld while I build strength, largely due to that little extra bit of flexibility I had with the yellow ship?

	dralius: How can you wipe out all 3 ships
	dralius: Either way i think its over. Thanks for the game, i guess this it is a bit to oblique for me.
	SYSTEM: dralius resigns.


816)
Variants: "Left man down"
Started: 2005.10.1, Ended: 2005.10.12
Participants: Subhan64 (S), Samaculus (W), MatrixFrog (N), istari (E)
Winner: MatrixFrog

1) MatrixFrog: Homeworld B1 Y2 G3

2) istari: Homeworld B1 G2 Y3

3) Subhan64: Homeworld B3 G1 Y3

4) MatrixFrog: Build G1 Matrixfrog
	Subhan64: Shoot.  If we force resign, can we continue with the game?
	rootbeer: You should be able to continue, I think. It should be much like any other way that a player is eliminated.

5) istari: Build Y1 Istari
	SYSTEM: Samaculus resigns.
	Aaron: I apologize for the error.  It's my bad.  I have reset the current player and (I think) have fixed the original bug.  Cheers!

6) Subhan64: Build Y1 Subhan64

7) MatrixFrog: Discover G1 Matrixfrog Y3 Alpha

8) istari: Trade Y1 R1 Istari

9) Subhan64: Build Y1 Subhan64

10) MatrixFrog: Build G1 Alpha

11) istari: Build Y1 Istari

12) Subhan64: Trade Y3 R3 Subhan64

13) MatrixFrog: Build G1 Matrixfrog
	Subhan64: trade y3 r3 subhan64

14) istari: Build R1 Istari

15) Subhan64: Build R1 Subhan64

16) MatrixFrog: Trade G3 Y3 Matrixfrog

17) istari: Trade R1 B1 Istari

18) Subhan64: Build Y1 Subhan64

19) MatrixFrog: Build G1 Matrixfrog

20) istari: Trade Y3 G3 Istari

21) Subhan64: Build R1 Subhan64

22) MatrixFrog: Trade G1 R1 Matrixfrog

23) istari: Move R1 Istari Alpha

24) Subhan64: Trade Y1 B1 Subhan64

25) MatrixFrog: Move G1 Alpha Istari

26) istari: Attack G1N Alpha

27) Subhan64: Build Y1 Subhan64

28) MatrixFrog: Build G1 Istari
Catastrophe Istari G

29) istari: Build G1 Alpha

30) Subhan64: Discover Y1 Subhan64 G2 Omicronpersei

31) MatrixFrog: Build G1 Matrixfrog

32) istari: Move G1 Alpha Istari

33) Subhan64: Move R3 Subhan64 Omicronpersei

34) MatrixFrog: Build G2 Matrixfrog

35) istari: Build G2 Istari

36) Subhan64: Move R3 Omicronpersei Alpha

37) MatrixFrog: Discover G1 Matrixfrog Y3 Bravo

38) istari: Move R1 Alpha Omicronpersei

39) Subhan64: Move Y1 Omicronpersei Subhan64

40) MatrixFrog: Build G2 Bravo

41) istari: Trade G2 Y2 Istari

42) Subhan64: Attack G1E Alpha

43) MatrixFrog: Move G1 Bravo Istari

44) istari: Build G2 Istari

45) Subhan64: Move R3 Alpha Omicronpersei

46) MatrixFrog: Build G2 Istari

47) istari: Sacrifice Y2 Istari
Move G2 Istari Omicronpersei
Move G1 Istari Omicronpersei

48) Subhan64: Attack G2E Omicronpersei

49) MatrixFrog: Build R1 Matrixfrog

50) istari: Move B1 Istari Omicronpersei

51) Subhan64: Attack R1E Omicronpersei

52) MatrixFrog: Sacrifice R1 Matrixfrog
Attack Y1E Istari



829)
Started: 2005.10.2, Ended: 2005.10.12
Participants: andylooney (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B2 Y1 G3

2) andylooney: Homeworld B3 G2 Y3
	Jesse: Hi, Andy.  I've been looking forward to your arrival.

3) Jesse: Build G1 Jesse
	andylooney: hello. Is this Jesse Welton I'm playing, or some other Jesse?
	Jesse: It is indeed.  The former.  That is to say, Jesse Welton.  Not some other Jesse.

4) andylooney: Build Y1 Andylooney

5) Jesse: Discover G1 Jesse B3 Chewy

6) andylooney: Trade Y1 G1 Andylooney

7) Jesse: Build G1 Jesse

8) andylooney: Discover G1 Andylooney Y1 Yellowrock

9) Jesse: Build G2 Chewy

10) andylooney: Build Y1 Andylooney

11) Jesse: Trade G2 Y2 Chewy

12) andylooney: Build G2 Yellowrock

13) Jesse: Sacrifice G3 Jesse
Build G2 Chewy
Build G3 Jesse
Build Y2 Chewy

14) andylooney: Discover G2 Yellowrock Y3 Clampett

15) Jesse: Trade G1 R1 Jesse

16) andylooney: Trade Y1 R1 Andylooney

17) Jesse: Discover G2 Chewy Y1 Horch

18) andylooney: Discover G1 Yellowrock B3 Bigblue

19) Jesse: Discover Y2 Chewy G1 Schnoz

20) andylooney: Build G3 Bigblue

21) Jesse: Build G3 Horch

22) andylooney: Sacrifice G3 Bigblue
Build G3 Bigblue
Build Y1 Andylooney
Build R1 Andylooney

23) Jesse: Sacrifice G3 Horch
Build G3 Horch
Build Y2 Chewy
Build Y3 Schnoz

24) andylooney: Discover Y1 Andylooney B1 Littleblue

25) Jesse: Move G3 Horch Clampett

26) andylooney: Move G2 Clampett Littleblue
	andylooney: man, I should not have let you get those 2 yellows. I think I'm going to lose this one.
	andylooney: You're already ahead and I can see where this is going, and I'm not happy about it. I'm thinking about just resigning now...

27) Jesse: Sacrifice G3 Clampett
Build G3 Horch
Build Y3 Schnoz
Build R2 Jesse
	Jesse: I must say, I'm relieved by your response here.  I woke up in the middle of the night suddenly worried you would simply move one of your r1s out to littleblue.  That would have given you a huge production advantage in red.
	Jesse: But you're right; things got harder for you once I got some yellow ships to go with my factory.

28) andylooney: Move R1 Andylooney Littleblue

29) Jesse: Sacrifice Y2 Chewy
Move Y3 Schnoz Andylooney
Move G3 Horch Andylooney

30) andylooney: Attack Y3N Andylooney
	andylooney: Well done sir! (There goes my undefeated-on-super-duper-games record...)

31) Jesse: Sacrifice R2 Jesse
Attack Y3S Andylooney
Attack Y3S Andylooney

32) andylooney: Pass
	Jesse: And thank you for an excellent game!  It looks like I get to retain my own undefeated record in SDG Homeworlds a bit longer.  I'm sure you'll strip me of it before long.

33) Jesse: Sacrifice R1 Jesse
Attack R1S Andylooney



841)
Started: 2005.10.3, Ended: 2005.10.4
Participants: rootbeer (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	rootbeer: Welcome to SDG! I hope I can provide a worthy opponent, but please let me know if I make any major mistakes, because I'm still learning the strategy of Homeworlds.

2) rootbeer: Homeworld G3 B2 Y3

3) andylooney: Build Y1 Andylooney

4) rootbeer: Build Y1 Rootbeer

5) andylooney: Trade Y1 G1 Andylooney

6) rootbeer: Build Y1 Rootbeer

7) andylooney: Build G1 Andylooney

8) rootbeer: Trade Y1 B1 Rootbeer

9) andylooney: Trade G1 B1 Andylooney

10) rootbeer: Build B2 Rootbeer

11) andylooney: Build B2 Andylooney
	rootbeer: Have you checked out Praetor yet? It's pretty fun.

	rootbeer: Praetorian, I mean


12) rootbeer: Trade B2 G2 Rootbeer

13) andylooney: Discover G1 Andylooney Y3 Clampett

14) rootbeer: Build B2 Rootbeer

15) andylooney: Discover B2 Andylooney G3 Garden

16) rootbeer: Discover B2 Rootbeer G1 Emerald

17) andylooney: Trade B1 Y1 Andylooney

18) rootbeer: Move Y1 Rootbeer Emerald

19) andylooney: Discover Y1 Andylooney B3 Bigblue

20) rootbeer: Build Y1 Emerald

21) andylooney: Build Y2 Andylooney

22) rootbeer: Build Y2 Rootbeer

23) andylooney: Trade Y2 G2 Andylooney

24) rootbeer: Build Y2 Emerald

25) andylooney: Build Y2 Andylooney

26) rootbeer: Discover Y1 Emerald G3 Sniffle

27) andylooney: Sacrifice G1 Clampett
Construct Y3 Bigblue
	andylooney: I'm having a problem here. I should be able to do this:
Sacrifice g1 clampett
construct y3 bigblue
This is a maneuver we call "cashing in an investment." But it's not working! I'm getting this message: "There are insufficient Y3 pieces in the stash." This is true at the start of the turn, but the sacrifice action puts the y3 into the stash, thus allowing my construct action. I think the computer needs to have this fine point explained to it. I need help before I can take my turn!
	rootbeer: I think you're right. Aaron?

	Aaron: If you "sacrifice G1 clampett" then there is no Y being put into the stash, just the G.  I don't see where the yellow piece could come from.
	rootbeer: It's the yellow sun of Clampett, when it's returned to the interstellar flux.

	Aaron: Ahh!  I see now.  You are correct.  This is a bug.  I *think* it's an easy fix.  I'm very distracted at this moment, but I will try to get to it tonight.  Sorry!
	Aaron: OK, I think it works now.  Give it a shot.

28) rootbeer: Sacrifice Y2 Rootbeer
Move Y1 Emerald Bigblue
Move Y2 Emerald Bigblue
Catastrophe Bigblue Y
	andylooney: Yay! He fixed it! Thanks Aaron!
	MatrixFrog: I still say it would be fun to visit the hyperspatial flux. Although I suppose by visiting any star in it, you've automatically pulled it out of the flux. It's like wishing to speak in a silent room.

29) andylooney: Discover G2 Andylooney Y3 Clampett2

30) rootbeer: Build Y1 Sniffle

31) andylooney: Move Y2 Andylooney Garden

32) rootbeer: Build B1 Emerald

33) andylooney: Build B3 Garden

34) rootbeer: Build B3 Rootbeer

35) andylooney: Sacrifice Y2 Garden
Move B2 Garden Emerald
Move B2 Emerald Rootbeer
Catastrophe Rootbeer Blue

36) rootbeer: Move Y3 Rootbeer Andylooney

37) andylooney: Trade Y3 R3 Andylooney
	rootbeer: "I come in peace." Why doesn't anybody believe me?


38) rootbeer: Move Y3 Andylooney Garden

39) andylooney: Trade B3 Y3 Garden

40) rootbeer: Build Y1 Garden

41) andylooney: Sacrifice Y3 Garden
Move G2 Clampett2 Andylooney
Move R3 Andylooney Rootbeer
Pass

42) rootbeer: Move Y1 Garden Andylooney

43) andylooney: Attack G2S Rootbeer
	rootbeer: There's no hope for me now.
	rootbeer: Maybe sometime you'll play me at Praetorian or BT&T. Cheers!
	andylooney: Thanks for the game!!!



852)
Started: 2005.10.4, Ended: 2005.10.7
Participants: istari (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) istari: Homeworld Y3 G1 B3
	istari: I'm still learning hope you don't mind. I am currently playing two 4 player games, but I find it a lttle hard to follow what's going on. I think a 2 player will help me get a better grasp of the game.

3) andylooney: Build Y1 Andylooney
	andylooney: Welcome to the game! I really prefer the 2 player version myself. 

4) istari: Build B1 Istari

5) andylooney: Trade Y1 B1 Andylooney

6) istari: Build B2 Istari

7) andylooney: Build B2 Andylooney

8) istari: Discover B2 Istari G2 Jupitor2

9) andylooney: Discover B2 Andylooney G3 Garden

10) istari: Trade B1 Y1 Istari

11) andylooney: Build Y1 Andylooney

12) istari: Move Y1 Istari Jupitor2

13) andylooney: Trade B1 G1 Andylooney

14) istari: Build B1 Istari
	istari: Last daycare dog just went home. Time for me to go too. I'll pick up the game again tomorrow.

15) andylooney: Discover G1 Andylooney Y3 Clampett

16) istari: Trade B1 R1 Istari

17) andylooney: Trade Y1 R1 Andylooney

18) istari: Discover Y1 Jupitor2 B3 Hooterville

19) andylooney: Build Y1 Andylooney

20) istari: Build B1 Jupitor2

21) andylooney: Move Y1 Andylooney Garden

22) istari: Build B1 Istari

23) andylooney: Discover B2 Garden G2 Motr

24) istari: Trade B2 Y2 Jupitor2

25) andylooney: Build B2 Motr

26) istari: Trade Y1 G1 Hooterville

27) andylooney: Build G3 Clampett

28) istari: Build G3 Hooterville

29) andylooney: Trade B2 Y2 Motr

30) istari: Build B2 Jupitor2

31) andylooney: Sacrifice G3 Clampett
Build G3 Clampett
Build R1 Andylooney
Build R2 Andylooney

32) istari: Sacrifice G3 Hooterville
Construct G3 Hooterville
Construct R2 Istari
Construct Y1 Jupitor2

33) andylooney: Sacrifice G3 Clampett
Build G3 Clampett
Build Y1 Motr
Build Y2 Garden

34) istari: Trade B2 R2 Jupitor2

35) andylooney: Discover R2 Andylooney B3 Cobalt

36) istari: Sacrifice G3 Hooterville
Construct G3 Hooterville
Construct R3 Istari
Construct R3 Jupitor2

37) andylooney: Sacrifice G3 Clampett
Build G3 Clampett
Build R3 Cobalt
Build B2 Motr
	istari: I just saw the errors of my ways, I think. And if I am correct I just lost. Thanks for the game. Hope to play you again. 

38) istari: Move R3 Istari Motr
	andylooney: I don't see how I can kill you just now... so I'm just gonna grow again.
	istari: My mistake. Misunderstood the rules. You could have caused an overpoulation with red at my homeworld and I thought that it would remove all my pieces, not just the red. Sorry, I keep bouncing between the rule, wiki and game, But I think I'm learning. Now to do something about that possible overpopulation.

39) andylooney: Sacrifice Y2 Motr
Move B2 Motr Istari
Move B2 Motr Istari
Catastrophe Istari Blue
	istari: Question, I am not quite clear on this, but can you use the  technology from my ships in a system that we both occupy? or only your ships and the star there? 
	andylooney: The latter: only your ships and the star color.

40) istari: Sacrifice Y2 Jupitor2
Move R3 Jupitor2 Cobalt
Move R2 Jupitor2 Cobalt
Catastrophe Cobalt Red

41) andylooney: Sacrifice Y2 Garden
Move G3 Clampett Jupitor2
Move G3 Jupitor2 Istari

42) istari: Sacrifice G3 Hooterville
Construct G3 Hooterville
Construct Y2 Jupitor2
Construct R2 Motr

43) andylooney: Sacrifice R1 Andylooney
Attack R2S Istari

44) istari: Pass
	istari: Thanks for the game.

45) andylooney: Attack R1S Istari
	andylooney: You are very welcome! Thanks for playing!



856)
Started: 2005.10.5, Ended: 2005.10.14
Participants: andylooney (S), Kermit (N)
Winner: andylooney

1) Kermit: Homeworld G2 Y3 B3

2) andylooney: Homeworld B1 G2 Y3
	Kermit: Thanks for all you do. I bought Zendo a few months back and Fluxx a bit more recently. Now my kids want Fluxx and Aquarius for Christmas (and they'll get it) And I can't get any work done (because I am here all day) 

3) Kermit: Build B1 Kermit
	andylooney: Cool! Thanks for digging our games - and for playing homeworlds with me!
	Kermit: The pleasure is mine (though hopefully not all of it) and maybe I'll learn something.

4) andylooney: Build Y1 Andylooney

5) Kermit: Discover B1 Kermit Y1 Minko

6) andylooney: Trade Y1 B1 Andylooney

7) Kermit: Build B2 Kermit

8) andylooney: Discover B1 Andylooney G3 Paradise

9) Kermit: Move B2 Kermit Minko

10) andylooney: Build B2 Paradise

11) Kermit: Trade B1 G1 Minko

12) andylooney: Build Y1 Andylooney

13) Kermit: Build B1 Minko

14) andylooney: Trade B1 Y1 Paradise

15) Kermit: Trade B2 Y2 Minko

16) andylooney: Build Y2 Paradise

17) Kermit: Build B1 Minko

18) andylooney: Trade Y1 G1 Andylooney

19) Kermit: Discover B1 Minko G3 Lalu

20) andylooney: Discover G1 Andylooney Y3 Clampett
	Kermit: Useless information: Minko was my middle son, Hamilton's wor for Flamingo when he was a toddler.

21) Kermit: Move B1 Minko Lalu

22) andylooney: Discover Y2 Paradise G1 Gateway

23) Kermit: Trade B1 Y1 Lalu

24) andylooney: Build Y2 Andylooney

25) Kermit: Trade Y1 B1 Lalu

26) andylooney: Trade Y2 R2 Andylooney

27) Kermit: Build Y1 Minko

28) andylooney: Move Y1 Paradise Minko
Catastrophe Minko Yellow

29) Kermit: Build B2 Kermit

30) andylooney: Move R2 Andylooney Lalu

31) Kermit: Trade B3 R3 Kermit

32) andylooney: Attack B1N Lalu

33) Kermit: Trade B1 Y1 Lalu

34) andylooney: Attack Y1N Lalu
	Kermit: Not looking good for me.

35) Kermit: Build B1 Kermit
	andylooney: Sorry...

36) andylooney: Build B2 Paradise

37) Kermit: Trade B2 R2 Kermit

38) andylooney: Trade B2 R2 Paradise

39) Kermit: Move R2 Kermit Gateway

40) andylooney: Sacrifice R2 Paradise
Attack R2N Gateway
Pass
	Kermit: no need for sorry, I will learn from this. Which was part of the reason I play to begin with.

41) Kermit: Build B2 Kermit
	andylooney: Then let the lessons continue!


42) andylooney: Build B2 Lalu

43) Kermit: Trade B1 Y1 Kermit

44) andylooney: Trade B2 G2 Lalu

45) Kermit: Discover Y1 Kermit R1 Flurkey

46) andylooney: Move G2 Lalu Flurkey

47) Kermit: Build B1 Kermit

48) andylooney: Attack Y1N Flurkey

	Kermit: I will have call this one. I see no   way that will lead to victory. Thank you for the game.
	SYSTEM: Kermit resigns.


860)
Started: 2005.10.6, Ended: 2005.10.18
Participants: jeep (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	jeep: I'm very new to the game, so if you'd rather play someone more experienced, let me know and I'll resign and you can challenge someone else.  ;)
	andylooney: I love this game so much I'll take anyone's challenge!

2) jeep: Homeworld B3 Y1 G3

3) andylooney: Build Y1 Andylooney

4) jeep: Build G1 Jeep

5) andylooney: Trade Y1 G1 Andylooney

6) jeep: Trade G1 Y1 Jeep

7) andylooney: Discover G1 Andylooney Y3 Clampett

8) jeep: Discover Y1 Jeep Y2 Ned

9) andylooney: Build Y1 Andylooney

10) jeep: Build G1 Jeep
	jeep: I must have mis-typed, I thought I went to a blue star. 

11) andylooney: Discover Y1 Andylooney G3 Paradise

12) jeep: Trade G1 B1 Jeep

13) andylooney: Build Y2 Paradise

14) jeep: Discover Y1 Ned G3 Lost

15) andylooney: Discover Y1 Paradise G2 Gateway

16) jeep: Build Y2 Lost

17) andylooney: Build Y2 Gateway

18) jeep: Discover Y1 Lost B2 Ohboy
	jeep: I need to pay more attention to the rules... briefly forgot about how stars are connected.  Now I need to think more and it's past my bedtime.

19) andylooney: Build Y3 Paradise

20) jeep: Build G1 Jeep

21) andylooney: Sacrifice G1 Clampett
Build Y3 Andylooney

22) jeep: Build G1 Jeep
	jeep: Ah, interesting.  I didn't realize that the system was abandoned before you made your choice to build.  We've played incorrectly when we played in real life (both times, I think ;) )

23) andylooney: Trade Y3 R3 Andylooney

24) jeep: Trade G1 R1 Jeep

25) andylooney: Build Y3 Andylooney

26) jeep: Build R1 Jeep

27) andylooney: Build R1 Andylooney

28) jeep: Move R1 Jeep Ohboy

29) andylooney: Trade R1 B1 Andylooney

30) jeep: Move G1 Jeep Ohboy

31) andylooney: Move B1 Andylooney Paradise

32) jeep: Build G1 Jeep

33) andylooney: Build B2 Paradise

34) jeep: Sacrifice G3 Jeep
Build G1 Ohboy
Build G2 Ohboy
Build G3 Jeep

35) andylooney: Move Y3 Paradise Ohboy

36) jeep: Move Y1 Ohboy Lost

37) andylooney: Sacrifice R3 Andylooney
Attack G2S Ohboy
Attack G1S Ohboy
Attack R1S Ohboy
	jeep: The end is nigh.

38) jeep: Move Y1 Lost Andylooney
	jeep: I can't imagine this is worth playing out, but I will.  :(

39) andylooney: Sacrifice B2 Paradise
Trade Y3 R3 Andylooney
Trade Y1 R1 Gateway

40) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build R2 Jeep
Build Y1 Lost

41) andylooney: Sacrifice Y3 Andylooney
Move Y3 Ohboy Jeep
Move G1 Ohboy Jeep
Move G2 Ohboy Jeep
Catastrophe Jeep Green

42) jeep: Build Y3 Lost

43) andylooney: Sacrifice R1 Ohboy
Attack R2S Jeep

44) jeep: Sacrifice Y2 Lost
Move Y3 Lost Ohboy
Move Y3 Ohboy Jeep
	jeep: Heh, I missed that if you took over the red that you were completely safe.
	jeep: Thanks for the game!

45) andylooney: Sacrifice R2 Jeep
Attack Y3S Jeep
Attack R1S Jeep
	jeep: My latest plan is to wait 2d:23h:59m:39s and force you to surrender.  Hahahahahaha, it's genius!

46) jeep: Sacrifice Y1 Lost
Move G1 Ohboy Jeep
	jeep: Foiled!  I guess I shouldn't have revealed my plan.

47) andylooney: Attack G1S Jeep

48) jeep: Trade B1 G1 Jeep

49) andylooney: Attack G1S Jeep



864)
Started: 2005.10.6, Ended: 2005.10.6
Participants: the_giggy (S), andylooney (N)
Winner: andylooney

	the_giggy: hey
	the_giggy: go man
	SYSTEM: the_giggy resigns.


869)
Started: 2005.10.6, Ended: 2006.2.21
Participants: andylooney (S), lambda (N)
Winner: andylooney

1) lambda: Homeworld R3 Y1 G3

2) andylooney: Homeworld B1 G2 Y3
	lambda: Hi Andy! Would you like to play a game of Global Thermonuclear War... er, I mean Homeworlds?

3) lambda: Build G1 Lambda
	andylooney: Greetings! Thanks for playing!
	lambda: Wow! Until playing on this server, I completely missed the rule that a new ship you create has to be the same color as an existing ship. Oops. 

4) andylooney: Build Y1 Andylooney

5) lambda: Discover G1 Lambda B2 Betelgeuse

6) andylooney: Trade Y1 G1 Andylooney

7) lambda: Build G1 Betelgeuse

8) andylooney: Build G2 Andylooney

9) lambda: Trade G1 Y1 Betelgeuse

10) andylooney: Discover G2 Andylooney Y3 Clampett

11) lambda: Build G1 Betelgeuse

12) andylooney: Discover G1 Andylooney Y3 Jethro

13) lambda: Trade G1 B1 Betelgeuse

14) andylooney: Build Y1 Andylooney

15) lambda: Build Y2 Betelgeuse

16) andylooney: Trade Y1 R1 Andylooney

17) lambda: Move B1 Betelgeuse Lambda

18) andylooney: Build Y1 Andylooney

19) lambda: Build Y2 Betelgeuse

20) andylooney: Discover Y1 Andylooney G3 Paradise

21) lambda: Discover Y2 Betelgeuse B3 Antares

22) andylooney: Build G1 Clampett

23) lambda: Move Y1 Betelgeuse Antares

24) andylooney: Build Y2 Paradise

25) lambda: Trade Y1 B1 Antares

26) andylooney: Discover Y2 Paradise B2 Meanie

27) lambda: Build B2 Lambda
	lambda: Jeez, you spoil all of my plans. This is a great game, though. 

28) andylooney: Discover Y2 Meanie B3 Bigmeanie

29) lambda: Discover B2 Lambda B2 Markab

30) andylooney: Discover R1 Andylooney B3 Finalfrontier

31) lambda: Sacrifice Y2 Betelgeuse
Move Y2 Antares Andylooney
Move B1 Antares Andylooney

32) andylooney: Trade Y3 R3 Andylooney

33) lambda: Sacrifice B2 Markab
Trade B1 R1 Andylooney
Trade Y2 R2 Andylooney

34) andylooney: Trade R3 Y3 Andylooney
	lambda: The peaceful trading and hyperspace transport vessels throw off their disguising bodies to reveal themselves as full blown warships! They circle warily around the larger warship already present in the system, waiting for an opening...

35) lambda: Trade R2 Y2 Andylooney

36) andylooney: Sacrifice R1 Finalfrontier
Attack R1N Andylooney

37) lambda: Discover Y2 Andylooney B3 Arcturus
	lambda: Hmm, looks like I really overreached there. I thought I had you, but managed to miss the way out that you took. I'm not sure I can recover from this. 

38) andylooney: Sacrifice G2 Clampett
Build Y1 Bigmeanie
Build Y2 Paradise

39) lambda: Build G2 Betelgeuse

40) andylooney: Sacrifice G1 Jethro
Build Y3 Andylooney

41) lambda: Build G1 Lambda

42) andylooney: Build G2 Clampett
	lambda: I feel like in this game, I started out badly, was managing to catch up and hold my own towards the middle, and then I though I had an opening to kill you during which I overextended myself by a lot. Would you say that's a fair assessment of how this game has gone?
	andylooney: Yeah, that's sounds about right. Although I didn't think you really had an opening to kill me, since I got out of it...

43) lambda: Move Y2 Arcturus Betelgeuse

44) andylooney: Discover G1 Clampett B2 Stealth
	lambda: Yeah, I was just mistaken about having an opening. I thought I had covered all of my bases, but I missed that particular way out. 

45) lambda: Trade G2 R2 Betelgeuse

46) andylooney: Discover Y3 Andylooney G3 Garden

47) lambda: Build G2 Betelgeuse

48) andylooney: Sacrifice G2 Clampett
Build G2 Stealth
Build Y3 Garden

49) lambda: Trade G1 B1 Betelgeuse

50) andylooney: Move Y3 Garden Betelgeuse

51) lambda: Sacrifice G3 Lambda
Build B2 Lambda
Build B3 Lambda
Build B3 Betelgeuse

52) andylooney: Discover Y3 Betelgeuse G3 Jolly

53) lambda: Move B3 Betelgeuse Paradise

54) andylooney: Sacrifice Y2 Paradise
Move Y3 Garden Betelgeuse
Discover Y1 Paradise Y2 Plugh
	lambda: Man, this is the longest game of Homeworlds I've ever played. Most people I play with leave an easy opening long before this. It's a lot more interesting playing against someone good like you.

55) lambda: Discover G2 Betelgeuse G3 Kuma

56) andylooney: Sacrifice R1 Andylooney
Attack R2N Betelgeuse

57) lambda: Move Y2 Betelgeuse Paradise

58) andylooney: Move Y3 Betelgeuse Kuma

59) lambda: Trade B2 R2 Lambda

60) andylooney: Attack B1N Betelgeuse

61) lambda: Build B2 Paradise

62) andylooney: Sacrifice G2 Stealth
Build G1 Stealth
Build R1 Betelgeuse

63) lambda: Move B3 Paradise Betelgeuse

64) andylooney: Sacrifice Y2 Bigmeanie
Move R2 Betelgeuse Jolly
Move B1 Betelgeuse Jolly

65) lambda: Build Y2 Paradise

66) andylooney: Sacrifice R1 Betelgeuse
Attack G2N Kuma

67) lambda: Build G2 Lambda

68) andylooney: Trade G1 R1 Stealth

69) lambda: Move R2 Lambda Betelgeuse

70) andylooney: Build G1 Stealth

71) lambda: Move G1 Lambda Betelgeuse

72) andylooney: Discover Y1 Plugh R1 Daddyo

73) lambda: Move Y2 Paradise Betelgeuse

74) andylooney: Build Y2 Jolly

75) lambda: Trade B2 R2 Paradise

76) andylooney: Build B2 Jolly

77) lambda: Move B3 Betelgeuse Paradise

78) andylooney: Sacrifice G2 Kuma
Build R1 Jolly
Build R3 Stealth

79) lambda: Build R3 Paradise

80) andylooney: Discover B2 Jolly G2 Frog

81) lambda: Move R3 Paradise Frog
	andylooney: So, you haven't moved in weeks... are you planning to finish this game, or should I force you to resign?

82) andylooney: Sacrifice Y2 Jolly
Move B2 Frog Daddyo
Discover B2 Daddyo Y2 Plugh
	lambda: Sorry about that. I managed to get really busy with school work at the same time as I started feeling burnt out on homeworlds, which meant I stopped following my games. I can resign if you want, or we can keep playing; I'm not feeling very hopeful about the outcome of this game, but it could still be fun to play it out. 

83) lambda: Move B3 Paradise Plugh
	andylooney: I'm happy to play this out. Thanks for returning!

84) andylooney: Move B2 Plugh Kuma

85) lambda: Move G2 Lambda Plugh

86) andylooney: Move B2 Kuma Stealth

87) lambda: Move B1 Lambda Frog

88) andylooney: Sacrifice Y1 Daddyo
Move R3 Stealth Paradise
	lambda: Oh, whoops. 
	lambda: Man, I didn't see that little B1 at Jolly, since it was hidden under the name. 

89) lambda: Sacrifice Y2 Paradise
Move R2 Paradise Stealth
Move R2 Stealth Bigmeanie

90) andylooney: Move Y1 Bigmeanie Stealth

91) lambda: Sacrifice G2 Plugh
Build Y1 Betelgeuse
Build Y2 Betelgeuse

92) andylooney: Sacrifice Y3 Kuma
Move Y1 Stealth Paradise
Move Y1 Paradise Betelgeuse
Move R3 Paradise Betelgeuse
Catastrophe Betelgeuse Yellow

93) lambda: Trade B3 G3 Plugh

94) andylooney: Build B3 Stealth

95) lambda: Trade R2 Y2 Bigmeanie

96) andylooney: Sacrifice B2 Stealth
Trade B3 Y3 Stealth
Trade R3 G3 Betelgeuse

97) lambda: Sacrifice G3 Plugh
Build B2 Lambda
Build B3 Frog
Build Y1 Bigmeanie

98) andylooney: Sacrifice R2 Jolly
Attack R2N Betelgeuse
Attack G1N Betelgeuse

99) lambda: Trade B2 G2 Lambda

100) andylooney: Sacrifice G3 Betelgeuse
Build G3 Betelgeuse
Build G3 Stealth
Build B2 Jolly

101) lambda: Move G2 Lambda Stealth
Catastrophe Stealth Green

102) andylooney: Sacrifice G3 Betelgeuse
Build Y1 Andylooney
Build Y2 Stealth
Build Y2 Jolly

103) lambda: Trade B3 G3 Frog

104) andylooney: Sacrifice Y2 Jolly
Move Y2 Stealth Bigmeanie
Move Y1 Andylooney Bigmeanie
Catastrophe Bigmeanie Y

105) lambda: Sacrifice G3 Frog
Build B3 Frog
Build B3 Lambda
Build R1 Frog

106) andylooney: Discover B1 Jolly G2 Clover

107) lambda: Trade B3 G3 Lambda

108) andylooney: Build B3 Clover

109) lambda: Trade R1 Y1 Frog

110) andylooney: Sacrifice B2 Jolly
Trade B3 G3 Clover
Trade B1 Y1 Clover

	andylooney: So, it's been almost 2 months since your last move. I'm assuming now that you won't be finishing this game. Thanks for playing.


871)
Started: 2005.10.6, Ended: 2005.10.10
Participants: andylooney (S), JunkMan (N)
Winner: andylooney

1) JunkMan: Homeworld G3 Y1 R3

2) andylooney: Homeworld B1 G2 Y3

3) JunkMan: Build R1 Junkman

4) andylooney: Build Y1 Andylooney

5) JunkMan: Discover R1 Junkman Y2 Yellow

6) andylooney: Build Y1 Andylooney

7) JunkMan: Discover R1 Yellow Y3 Yellow2

8) andylooney: Trade Y1 R1 Andylooney

9) JunkMan: Discover R1 Yellow2 B2 Blue

10) andylooney: Build Y1 Andylooney

11) JunkMan: Trade R1 G1 Blue

12) andylooney: Discover Y1 Andylooney G3 Garden

13) JunkMan: Build G1 Blue

14) andylooney: Build Y2 Garden

15) JunkMan: Construct R1 Junkman

16) andylooney: Build Y2 Andylooney

17) JunkMan: Move R1 Junkman Blue

18) andylooney: Trade Y2 G2 Andylooney

19) JunkMan: Build R1 Blue

20) andylooney: Discover G2 Andylooney Y3 Clampett

21) JunkMan: Build R2 Blue

22) andylooney: Build R2 Andylooney

23) JunkMan: Trade R2 Y2 Blue

24) andylooney: Discover Y1 Garden G2 Gateway

25) JunkMan: Build R2 Junkman

26) andylooney: Build Y2 Gateway

27) JunkMan: Move R2 Junkman Gateway

28) andylooney: Sacrifice R1 Andylooney
Attack R2N Gateway

29) JunkMan: Build Y3 Blue

30) andylooney: Sacrifice G2 Clampett
Build Y3 Garden
Build R1 Gateway

31) JunkMan: Move Y3 Blue Garden

32) andylooney: Move Y3 Garden Blue

33) JunkMan: Sacrifice R1 Blue
Attack Y2S Garden

34) andylooney: Sacrifice R2 Gateway
Attack Y2N Blue
Attack R1N Blue

35) JunkMan: Build R1 Junkman

36) andylooney: Sacrifice Y2 Gateway
Move R1 Gateway Junkman
Move R1 Blue Junkman
Catastrophe Junkman Red



884)
Started: 2005.10.7, Ended: 2005.10.9
Participants: Aaron (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	Aaron: Hello, Andy!  I'm a n00b, but I do enjoy the game.  Good luck to you!
	andylooney: OK! I'm happy to play! Good luck to you, too!


2) Aaron: Homeworld R2 Y3 G3

3) andylooney: Build Y1 Andylooney

4) Aaron: Build G1 Aaron

5) andylooney: Trade Y1 G1 Andylooney

6) Aaron: Discover G1 Aaron B1 Sea

7) andylooney: Discover G1 Andylooney Y3 Clampett

8) Aaron: Build G1 Sea

9) andylooney: Build G2 Clampett

10) Aaron: Trade G1 Y1 Sea

11) andylooney: Build Y1 Andylooney

12) Aaron: Build Y1 Sea

13) andylooney: Discover Y1 Andylooney G3 Paradise

14) Aaron: Trade Y1 R1 Sea

15) andylooney: Build Y1 Andylooney

16) Aaron: Move R1 Sea Paradise

17) andylooney: Discover Y1 Paradise B1 Bluedoor

18) Aaron: Build Y2 Sea

19) andylooney: Trade Y1 R1 Andylooney

20) Aaron: Move Y1 Sea Paradise

21) andylooney: Move G1 Clampett Bluedoor

22) Aaron: Move R1 Paradise Bluedoor

23) andylooney: Sacrifice R1 Andylooney
Attack R1S Bluedoor

24) Aaron: Move Y1 Paradise Sea
	Aaron: Doh!  I forbgot about that rule!

25) andylooney: Build Y1 Bluedoor

26) Aaron: Build Y2 Sea
	Aaron: *scratches his head*  I have no idea what I'm doing at this point.

27) andylooney: Discover Y1 Bluedoor G3 Emerald

28) Aaron: Discover Y2 Sea G3 Forest

29) andylooney: Build Y2 Bluedoor

30) Aaron: Trade Y1 R1 Sea
	Aaron: I still struggle with this game's open-endedness.  I find it difficult to form focused strategies.

31) andylooney: Sacrifice G2 Clampett
Build Y1 Andylooney
Build Y3 Emerald

32) Aaron: Build R1 Sea

33) andylooney: Build R2 Bluedoor

34) Aaron: Move R1 Sea Forest

35) andylooney: Move Y3 Emerald Sea

	Aaron: Well, my crystal ball says I don't stand a chance =)  Thanks so much for the game!  I obviously have some work to do =)
	SYSTEM: Aaron resigns.


880)
Started: 2005.10.7, Ended: 2005.10.10
Participants: MatrixFrog (S), istari (N)
Winner: istari

1) istari: Homeworld Y1 B3 G3

2) MatrixFrog: Homeworld G1 B2 Y3

3) istari: Build G1 Istari

4) MatrixFrog: Build Y1 Matrixfrog

5) istari: Discover G1 Istari B2 Pixley

6) MatrixFrog: Discover Y1 Matrixfrog G3 Scorch

7) istari: Build G1 Istari

8) MatrixFrog: Build Y1 Matrixfrog

9) istari: Trade G1 R1 Istari

10) MatrixFrog: Trade Y1 R1 Matrixfrog

11) istari: Build G1 Istari

12) MatrixFrog: Discover Y1 Scorch G2 Torch

13) istari: Sacrifice G3 Istari
Build G2 Pixley
Build G2 Pixley
Build G3 Istari

14) MatrixFrog: Build Y1 Matrixfrog

15) istari: Trade G2 R2 Pixley

16) MatrixFrog: Build Y2 Torch

17) istari: Trade G2 Y2 Pixley

18) MatrixFrog: Build Y2 Torch

19) istari: Sacrifice Y2 Pixley
Move R2 Pixley Istari
Move R2 Istari Torch

20) MatrixFrog: Sacrifice R1 Matrixfrog
Attack R2N Torch

21) istari: Trade G3 R3 Istari

22) MatrixFrog: Sacrifice Y3 Matrixfrog
Move Y2 Torch Istari
Move Y2 Torch Istari
Move Y1 Torch Istari
Catastrophe Istari Y

23) istari: Trade R1 Y1 Istari
	MatrixFrog: I hope I don't end up regretting that.

24) MatrixFrog: Build Y1 Matrixfrog

25) istari: Move Y1 Istari Matrixfrog

26) MatrixFrog: Sacrifice R2 Torch
Pass
Attack Y1N Matrixfrog

27) istari: Construct G2 Istari

28) MatrixFrog: Trade Y1 B1 Matrixfrog

29) istari: Trade G2 Y2 Istari

30) MatrixFrog: Build B1 Matrixfrog

31) istari: Construct G2 Istari

32) MatrixFrog: Trade B1 R1 Matrixfrog

33) istari: Move G2 Istari Matrixfrog

34) MatrixFrog: Build R1 Matrixfrog

35) istari: Build G2 Matrixfrog

36) MatrixFrog: Discover R1 Matrixfrog G3 Survival

37) istari: Trade G2 R2 Matrixfrog

38) MatrixFrog: Build R1 Matrixfrog

39) istari: Sacrifice R2 Matrixfrog
Attack R1S Matrixfrog
Attack R1S Matrixfrog

40) MatrixFrog: Build R2 Survival

41) istari: Sacrifice R3 Istari
Attack Y1S Matrixfrog
Attack Y1S Matrixfrog
Attack B1S Matrixfrog



886)
Started: 2005.10.7, Ended: 2005.10.12
Participants: mcrim001 (S), Tuxhedoh (N)
Winner: mcrim001

1) Tuxhedoh: Homeworld G3 Y1 B1

2) mcrim001: Homeworld G3 Y1 B1
	mcrim001: you there?


3) Tuxhedoh: Build B1 Tuxhedoh

4) mcrim001: Build B2 Mcrim001

5) Tuxhedoh: Trade B1 Y1 Tuxhedoh

6) mcrim001: Build B1 Mcrim001

7) Tuxhedoh: Discover Y1 Tuxhedoh G2 Down

8) mcrim001: Trade B2 Y2 Mcrim001

9) Tuxhedoh: Build B2 Tuxhedoh

10) mcrim001: Trade B1 R1 Mcrim001

11) Tuxhedoh: Trade B1 R1 Tuxhedoh

12) mcrim001: Move R1 Mcrim001 Down

13) Tuxhedoh: Build B1 Tuxhedoh

14) mcrim001: Trade Y2 R2 Mcrim001

15) Tuxhedoh: Trade B2 Y2 Tuxhedoh

16) mcrim001: Move R2 Mcrim001 Down

17) Tuxhedoh: Trade Y2 R2 Tuxhedoh

18) mcrim001: Attack Y1N Down Mcrim001

19) Tuxhedoh: Discover B1 Tuxhedoh R2 Escape

20) mcrim001: Build B1 Mcrim001

21) Tuxhedoh: Move R1 Tuxhedoh Escape

22) mcrim001: Build B2 Mcrim001

23) Tuxhedoh: Build R1 Tuxhedoh

24) mcrim001: Build R3 Down

25) Tuxhedoh: Move R1 Tuxhedoh Down
Catastrophe Down Red

26) mcrim001: Trade B2 R2 Mcrim001

27) Tuxhedoh: Build R1 Tuxhedoh

28) mcrim001: Build Y2 Down

29) Tuxhedoh: Sacrifice B1 Escape
Trade R1 B1 Tuxhedoh

30) mcrim001: Move B1 Mcrim001 Down

31) Tuxhedoh: Build B2 Tuxhedoh

32) mcrim001: Build R1 Mcrim001

33) Tuxhedoh: Move B2 Tuxhedoh Down

34) mcrim001: Move R2 Mcrim001 Down

35) Tuxhedoh: Construct B2 Tuxhedoh

36) mcrim001: Attack B2N Down

37) Tuxhedoh: Trade B2 Y2 Tuxhedoh

38) mcrim001: Build B2 Mcrim001

39) Tuxhedoh: Move Y2 Tuxhedoh Escape

40) mcrim001: Move Y1 Down Mcrim001

41) Tuxhedoh: Trade R2 G2 Tuxhedoh

42) mcrim001: Build Y2 Down

43) Tuxhedoh: Build G1 Tuxhedoh

44) mcrim001: Build Y3 Mcrim001

45) Tuxhedoh: Sacrifice G2 Tuxhedoh
Build Y3 Escape
Build Y3 Escape

46) mcrim001: Move Y1 Mcrim001 Escape

47) Tuxhedoh: Move Y3 Escape Tuxhedoh
	mcrim001: I thought moving a ship into a crowded system automatically caused a catastrophe? And why wouldn't it let me sacrifice a ship two rounds before? I typed in the command 'sacrifice b2 mcrim001 (return) construct y2 mcrim001 (return) construct y3 mcrim001' ?
	Tuxhedoh: Catastrophe's don't happen automatically... you don't have to cause a catastrophe on yourself. Now about your messed up sacrifice I can only assume that the system doesn't like you.  No really. it should've given you an error message at the top...
	Tuxhedoh: And since you didn't cause a catastrophe in escape... I get to avoid it now.

48) mcrim001: Move Y2 Down Mcrim001
	Tuxhedoh: Now granted. it was probably a really stupid thing for me to do, but it wasn't the first, and it certainly won't be the last.
	mcrim001: i should resign since i got screwed but i might be able to work out a win anyways =)

49) Tuxhedoh: Discover Y3 Tuxhedoh G2 Mefi
	Tuxhedoh: and once again you failed to cause a catastrophe in escape by moving a ship there..

50) mcrim001: Move Y2 Mcrim001 Escape
Catastrophe Escape Yellow
	mcrim001: i wasnt trying to cause a catastrophy yet

51) Tuxhedoh: Move Y3 Mefi Tuxhedoh
	mcrim001: =)

52) mcrim001: Trade Y3 R3 Mcrim001

53) Tuxhedoh: Trade Y3 G3 Tuxhedoh

54) mcrim001: Build R1 Mcrim001

55) Tuxhedoh: Trade G1 Y1 Tuxhedoh

56) mcrim001: Move R3 Mcrim001 Down

57) Tuxhedoh: Build Y2 Tuxhedoh

58) mcrim001: Move R3 Down Tuxhedoh

59) Tuxhedoh: Move Y1 Tuxhedoh Escape

60) mcrim001: Attack G3N Tuxhedoh

	SYSTEM: Tuxhedoh resigns.


882)
Started: 2005.10.7, Ended: 2005.10.19
Participants: TwoShort (S), Kermit (N)
Winner: TwoShort

1) Kermit: Homeworld B1 G3 Y3

2) TwoShort: Homeworld B1 Y2 G3

3) Kermit: Build Y1 Kermit

4) TwoShort: Build G1 Twoshort

5) Kermit: Discover Y1 Kermit G2 Grendl

6) TwoShort: Build G1 Twoshort

7) Kermit: Build Y1 Grendl

8) TwoShort: Discover G1 Twoshort B3 Bluonia

9) Kermit: Discover Y1 Grendl B1 Medusa

10) TwoShort: Build G1 Twoshort
	TwoShort: construct g1 twoshort

11) Kermit: Trade Y1 R1 Medusa

12) TwoShort: Discover G1 Twoshort Y3 Yeller

13) Kermit: Build Y1 Grendl


14) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Yeller
Build G3 Twoshort

15) Kermit: Discover Y1 Grendl G3 Gryffin

16) TwoShort: Trade G2 R2 Bluonia

17) Kermit: Move Y1 Grendl Medusa

18) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Twoshort
Build G3 Twoshort

19) Kermit: Move R1 Medusa Yeller

20) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build R1 Bluonia
Build R1 Bluonia

21) Kermit: Build Y1 Kermit

22) TwoShort: Sacrifice R1 Bluonia
Attack R1N Yeller

23) Kermit: Build Y2 Kermit

24) TwoShort: Trade G2 Y2 Bluonia

25) Kermit: Trade Y2 G2 Kermit

26) TwoShort: Sacrifice Y2 Bluonia
Move G2 Twoshort Gryffin
Discover G1 Bluonia B2 Blubonic

27) Kermit: Move G2 Kermit Blubonic

28) TwoShort: Sacrifice R1 Bluonia
Attack Y1N Gryffin

29) Kermit: Trade G2 R2 Blubonic

30) TwoShort: Sacrifice G3 Twoshort
Build G2 Yeller
Build G3 Twoshort
Build Y2 Gryffin

31) Kermit: Attack G1S Blubonic

32) TwoShort: Sacrifice Y2 Gryffin
Move G2 Yeller Blubonic
Move G2 Yeller Blubonic

33) Kermit: Attack G2S Blubonic

34) TwoShort: Sacrifice R2 Bluonia
Attack G2N Blubonic
Attack R2N Blubonic

35) Kermit: Build Y2 Kermit

36) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Gryffin
Build R1 Blubonic


37) Kermit: Trade Y3 R3 Kermit

38) TwoShort: Discover Y1 Gryffin B2 Bluestar

39) Kermit: Move Y2 Kermit Bluestar

40) TwoShort: Sacrifice G3 Twoshort
Build Y3 Bluestar
Build Y3 Gryffin
Build G3 Twoshort

	SYSTEM: Kermit resigns.


885)
Started: 2005.10.8, Ended: 2005.11.7
Participants: andylooney (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) andylooney: Homeworld B3 G2 Y3

3) TwoShort: Build G1 Twoshort

4) andylooney: Build Y1 Andylooney

5) TwoShort: Build G1 Twoshort

6) andylooney: Trade Y1 G1 Andylooney

7) TwoShort: Discover G1 Twoshort B3 Bluestar

8) andylooney: Discover G1 Andylooney Y1 Different

9) TwoShort: Build G2 Twoshort

10) andylooney: Build Y1 Andylooney

11) TwoShort: Discover G1 Twoshort Y3 Similar

12) andylooney: Build Y2 Andylooney

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Similar
Build G3 Twoshort
Build G3 Bluestar

14) andylooney: Build G3 Different

15) TwoShort: Trade G3 Y3 Bluestar

16) andylooney: Trade Y2 R2 Andylooney

17) TwoShort: Trade G2 R2 Twoshort

18) andylooney: Discover Y1 Andylooney B1 Bomber

19) TwoShort: Build G2 Twoshort

20) andylooney: Discover Y1 Bomber G3 Paradise

21) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Bluestar
Build Y2 Bluestar

22) andylooney: Sacrifice G3 Different
Build G3 Different
Build R1 Andylooney
Build Y2 Paradise

23) TwoShort: Sacrifice Y3 Bluestar
Move G1 Similar Different
Move G2 Similar Different
Discover Y2 Bluestar R1 Moltar
Catastrophe Different Green

24) andylooney: Trade R1 G1 Andylooney

25) TwoShort: Discover Y2 Bluestar G1 Emerald

26) andylooney: Discover G1 Andylooney B1 Bomber

27) TwoShort: Build Y1 Emerald

28) andylooney: Move Y2 Paradise Bomber

29) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Twoshort
Build Y3 Moltar

30) andylooney: Build G3 Bomber

31) TwoShort: Sacrifice Y2 Moltar
Move G2 Bluestar Bomber
Move G1 Bluestar Bomber
Catastrophe Bomber Green

32) andylooney: Trade Y2 G2 Bomber

33) TwoShort: Sacrifice G2 Twoshort
Build G1 Twoshort
Build Y2 Moltar

34) andylooney: Build Y2 Paradise

35) TwoShort: Move Y3 Moltar Paradise

36) andylooney: Build Y3 Paradise
Catastrophe Paradise Yellow

37) TwoShort: Build Y1 Emerald

38) andylooney: Build G1 Bomber

39) TwoShort: Discover Y1 Emerald B3 Bluestar

40) andylooney: Trade G1 R1 Bomber

41) TwoShort: Trade Y1 G1 Bluestar

42) andylooney: Trade R1 Y1 Bomber
	TwoShort: I was wondering if you would figure it out :)  Now, can I deduce from your clues what "Cashing an investment" involves?
	TwoShort: Aha! "X has been abandoned to the hyperspatial flux" used to happen at the end of the turn, now it happens immediately; so that's the code change you needed for the investment strategy: sacrifice a green/blue to immediately acquire that system marker as a ship.  So if I understand correctly, it would also work with other colors (or even sizes), but you associate with a large yellow because that's the most valuable to suddenly acquire late in the game.
	andylooney: Well, I must confess it was Keith who tipped me off based on the clues... It's great to be able to play together like this, ain't it?

43) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Twoshort
Build Y2 Moltar

44) andylooney: Sacrifice G2 Bomber
Build Y3 Bomber
Build Y3 Andylooney
	TwoShort: Definitely.  I concluded this was the perfect game for me when I first read your essay about it a couple years ago; but my local gang is devoid of pure strategy fans, so this is only my fourth game or so.

45) TwoShort: Sacrifice Y2 Moltar
Move Y2 Moltar Andylooney
Move Y1 Emerald Andylooney
Catastrophe Andylooney Yellow

46) andylooney: Move Y3 Bomber Andylooney

47) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Bluestar

48) andylooney: Discover Y1 Bomber G3 Garden

49) TwoShort: Sacrifice Y2 Emerald
Discover G3 Bluestar B1 Lancer
Move G2 Twoshort Garden

50) andylooney: Discover Y1 Garden B2 Bomber

51) TwoShort: Trade G2 Y2 Bluestar

52) andylooney: Trade Y1 G1 Bomber

53) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Twoshort
Build Y1 Bluestar

54) andylooney: Build R1 Andylooney

55) TwoShort: Sacrifice G2 Garden
Build G2 Lancer
Build G3 Lancer

56) andylooney: Trade R1 B1 Andylooney

57) TwoShort: Trade G3 Y3 Lancer

58) andylooney: Build G3 Bomber

59) TwoShort: Sacrifice Y3 Lancer
Move G1 Bluestar Bomber
Move G2 Lancer Bomber
Discover G2 Bluestar Y1 Yolonda
Catastrophe Bomber Green

60) andylooney: Build Y2 Andylooney

61) TwoShort: Build G1 Lancer

62) andylooney: Discover Y2 Andylooney G1 Zorak

63) TwoShort: Sacrifice G3 Lancer
Build G2 Lancer
Build G3 Lancer
Build G3 Yolonda

64) andylooney: Build Y2 Zorak

65) TwoShort: Sacrifice Y2 Bluestar
Move G2 Lancer Andylooney
Move G1 Lancer Andylooney

66) andylooney: Discover Y2 Zorak B3 Ibm

67) TwoShort: Sacrifice R2 Twoshort
Attack R2S Andylooney
Attack B1S Andylooney

68) andylooney: Trade Y2 R2 Ibm

69) TwoShort: Sacrifice G3 Lancer
Build B1 Andylooney
Build B1 Andylooney
Build G3 Andylooney
Catastrophe Andylooney Blue
Catastrophe Andylooney Green



893)
Started: 2005.10.8, Ended: 2005.10.20
Participants: chaosbreaker (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	chaosbreaker: I bought Zendo and found that there was a card with the rules for homeworld on it.

This is my first game.  Just read the rules on http://www.wunderland.com/WTS/Ginohn/games/Homeworlds/HomeworldsRules.html



2) chaosbreaker: Homeworld B2 G1 Y3

3) andylooney: Build Y1 Andylooney
	andylooney: well, I welcome you to the game. But I fear I will crush you easily.


4) chaosbreaker: Build Y1 Chaosbreaker

5) andylooney: Trade Y1 G1 Andylooney
	chaosbreaker: yeah, you will crush me.

I want to learn how to play so I can play with my friends face to face

6) chaosbreaker: Trade Y1 G1 Chaosbreaker

7) andylooney: Build G2 Andylooney

8) chaosbreaker: Build Y1 Chaosbreaker

9) andylooney: Discover G2 Andylooney Y3 Clampett

10) chaosbreaker: Discover Y1 Chaosbreaker G3 Thor

11) andylooney: Build Y1 Andylooney

12) chaosbreaker: Build G2 Chaosbreaker

13) andylooney: Build G3 Clampett

14) chaosbreaker: Build G3 Chaosbreaker

15) andylooney: Trade G1 R1 Andylooney
Catastrophe Chaosbreaker Green

16) chaosbreaker: Trade Y3 G3 Chaosbreaker

17) andylooney: Discover G2 Clampett Y2 Plugh

18) chaosbreaker: Build G1 Chaosbreaker
	chaosbreaker: construct g2 chaosbreaker

19) andylooney: Sacrifice Y3 Andylooney
Move G2 Plugh Clampett
Move G2 Clampett Chaosbreaker
Move G3 Clampett Chaosbreaker
Catastrophe Chaosbreaker Green
	andylooney: Thanks for the game!



894)
Started: 2005.10.8, Ended: 2005.10.11
Participants: Tuxhedoh (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	Tuxhedoh: I'm fairly new to the game, and a bit intimdated to be playing you. Feel free to give me any tips, especially if I've made a silly move.    Also, if you happen to get to Baltimore or Columbia area would love to play face to face.

	andylooney: greetings! Good luck! The only way to get good at the game is to play it alot, so let's go!

2) Tuxhedoh: Homeworld G1 Y3 B1

3) andylooney: Build Y1 Andylooney

4) Tuxhedoh: Build B1 Tuxhedoh

5) andylooney: Trade Y1 G1 Andylooney
	andylooney: Oh, no! I just realized you didn't take a large ship with your homeworld! That's a critical mistake! Frankly, the software ought to force you to start with a large ship.

6) Tuxhedoh: Trade B1 G1 Tuxhedoh
	Tuxhedoh: I was reading that in the SDG wiki page for Homeworlds... and realized I didn't do it. I'm trying to understand why it's critical though... can you explain?
	Tuxhedoh: is it because otherwise you have to wait to use up most of thee pieces before you're able eto construct onee?  (btw, my "e" is broken)

7) andylooney: Build G2 Andylooney
	Tuxhedoh: Has anyone created a newbies guide to Homeworlds strategy besides http://wiki.daltons.ca/sdg/games/homeworlds ? I've been looking on the wunderland page and icehouse wiki, but it seems like there's none eto be found
	andylooney: yes, that's why. And we can keep playing this and I'll demonstrate why in a while.


8) Tuxhedoh: Build B1 Tuxhedoh
	Tuxhedoh: construct b1 tuxhedoh

9) andylooney: Discover G2 Andylooney Y3 Clampett

10) Tuxhedoh: Build G2 Tuxhedoh

11) andylooney: Build G3 Clampett
	Tuxhedoh: Just got home from hanging out with a buddym figuring out Homeworlds in person. Now my mind is all confused, cause I only have Ice Towers, and the colors are all switched.

12) Tuxhedoh: Build G3 Tuxhedoh

13) andylooney: Build Y1 Andylooney

14) Tuxhedoh: Trade G3 R3 Tuxhedoh
	andylooney: OK, I'm going to be a nice guy here, and let 2 wrongs make a right. You've got 4 greens in your homeworld (remember, the star itself does count) so I should just call Catastrophe on you. But I won't, since you forgot to take a large before, and now you have one. But I doubt I'll be so gentle next time... :)

15) andylooney: Build G3 Andylooney
	Tuxhedoh: 2 wrongs make a right. :-) thanks for the leniency. Last night while playing IRL, i won my first game by  forcing a catastrophe in the other players homeworld, taking his 3 ships there. And then lost the next, by calling a catastrophe in my homeworld, taking my last ship. What a stupid mistake... but I'm learning.

16) Tuxhedoh: Discover G1 Tuxhedoh Y2 Einstein

17) andylooney: Trade G1 R1 Andylooney

18) Tuxhedoh: Move B1 Tuxhedoh Einstein

19) andylooney: Discover G3 Andylooney B3 Ibm

20) Tuxhedoh: Build B2 Einstein

21) andylooney: Build R1 Andylooney

22) Tuxhedoh: Construct B2 Tuxhedoh

23) andylooney: Move Y1 Andylooney Ibm

24) Tuxhedoh: Pass
	Tuxhedoh: Can't decide how to move or if I should even... would like to see it play out. I'm passing.

25) andylooney: Discover R1 Andylooney G3 Paradise

26) Tuxhedoh: Trade B2 R2 Einstein

27) andylooney: Sacrifice G3 Clampett
Build G1 Ibm
Build G3 Clampett
Build Y1 Ibm

28) Tuxhedoh: Move R2 Einstein Paradise

29) andylooney: Sacrifice G3 Clampett
Build G3 Clampett
Build Y1 Ibm
Build R1 Andylooney

30) Tuxhedoh: Trade B2 Y2 Tuxhedoh

31) andylooney: Discover Y1 Ibm B2 Stealth

32) Tuxhedoh: Attack R1N Paradise

33) andylooney: Sacrifice G2 Clampett
Build G2 Clampett
Build Y2 Stealth

34) Tuxhedoh: Move Y2 Tuxhedoh Stealth

35) andylooney: Sacrifice R1 Andylooney
Attack Y2S Stealth

	Tuxhedoh: doh
	SYSTEM: Tuxhedoh resigns.


895)
Started: 2005.10.9, Ended: 2005.11.3
Participants: pigasuspig (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G3 B2 Y3

2) pigasuspig: Homeworld G2 B1 Y3

3) MatrixFrog: Build Y1 Matrixfrog

4) pigasuspig: Build Y1 Pigasuspig

5) MatrixFrog: Discover Y1 Matrixfrog G1 Dinky

6) pigasuspig: Trade Y1 G1 Pigasuspig

7) MatrixFrog: Build Y1 Matrixfrog

8) pigasuspig: Build G1 Pigasuspig

9) MatrixFrog: Discover Y1 Dinky G3 Slinky

10) pigasuspig: Trade G1 R1 Pigasuspig

11) MatrixFrog: Build Y1 Slinky

12) pigasuspig: Build Y2 Pigasuspig

13) MatrixFrog: Trade Y1 G1 Matrixfrog

14) pigasuspig: Trade Y2 B2 Pigasuspig

15) MatrixFrog: Build G1 Matrixfrog

16) pigasuspig: Move R1 Pigasuspig Slinky

17) MatrixFrog: Move Y1 Slinky Pigasuspig

18) pigasuspig: Attack Y1N Slinky

19) MatrixFrog: Build Y1 Pigasuspig

20) pigasuspig: Trade Y3 R3 Pigasuspig

21) MatrixFrog: Trade Y1 B1 Pigasuspig

22) pigasuspig: Attack B1N Pigasuspig

23) MatrixFrog: Trade Y1 B1 Pigasuspig
Catastrophe Pigasuspig B

24) pigasuspig: Build Y1 Slinky
	pigasuspig: Oops.

25) MatrixFrog: Trade G1 R1 Matrixfrog

26) pigasuspig: Move Y1 Slinky Pigasuspig

27) MatrixFrog: Build G1 Matrixfrog

28) pigasuspig: Discover G1 Pigasuspig Y1 Barnard

29) MatrixFrog: Move G1 Matrixfrog Barnard

30) pigasuspig: Discover G1 Barnard B3 Ocean

31) MatrixFrog: Build Y2 Matrixfrog

32) pigasuspig: Build G2 Ocean

33) MatrixFrog: Build G2 Barnard

34) pigasuspig: Trade G1 B1 Ocean

35) MatrixFrog: Build G1 Barnard

36) pigasuspig: Build G3 Ocean

37) MatrixFrog: Sacrifice Y3 Matrixfrog
Move G1 Barnard Pigasuspig
Move G1 Barnard Pigasuspig
Move G2 Barnard Pigasuspig
Catastrophe Pigasuspig G



896)
Started: 2005.10.9, Ended: 2006.6.16
Participants: lambda (S), c0g (N)
Winner: lambda

1) c0g: Homeworld Y3 B1 G3

2) lambda: Homeworld B2 Y1 G3

3) c0g: Build G1 C0g

4) lambda: Build G1 Lambda

5) c0g: Trade G1 Y1 C0g

6) lambda: Discover G1 Lambda B3 Rigel

7) c0g: Discover Y1 C0g Y2 Polaris

8) lambda: Build G1 Rigel

9) c0g: Build G1 C0g

10) lambda: Trade G1 Y1 Rigel

11) c0g: Move Y1 Polaris Rigel

12) lambda: Build Y2 Rigel

13) c0g: Move Y1 Rigel Lambda
	lambda: You could create a catastrophe in Rigel. But, would that really benefit you? 

14) lambda: Build G1 Lambda

15) c0g: Trade Y1 B1 Lambda
	c0g: Hmmm, I think I fucked this up at the begining by being too agresswive...


16) lambda: Trade G1 R1 Lambda

17) c0g: Discover B1 Lambda G3 Boston

18) lambda: Build G1 Lambda

19) c0g: Build B1 Boston

20) lambda: Trade Y2 B2 Rigel

21) c0g: Trade B1 Y1 Boston

22) lambda: Discover G1 Lambda Y3 Rasalgethi

23) c0g: Build Y2 Boston

24) lambda: Build Y2 Rigel

25) c0g: Trade Y2 R2 Boston

26) lambda: Discover Y2 Rigel G2 Giauzar
	c0g: I've got my own xmas tree in boston!

	lambda: I've got a fallen Christmas tree at lambda, red and green. 


874)
Started: 2005.10.10, Ended: 2005.10.18
Participants: MatrixFrog (S), Horowits (N)
Winner: MatrixFrog

	SYSTEM: Horowits resigns.


883)
Started: 2005.10.10, Ended: 2005.10.14
Participants: JunkMan (S), istari (N)
Winner: JunkMan

1) istari: Homeworld B1 Y2 G3

2) JunkMan: Homeworld B3 G1 Y3

3) istari: Build G1 Istari

4) JunkMan: Build Y1 Junkman

5) istari: Discover G1 Istari Y3 Greenacres

6) JunkMan: Discover Y1 Junkman G2 Azul

7) istari: Build G1 Greenacres

8) JunkMan: Build Y1 Junkman

9) istari: Construct G2 Istari

10) JunkMan: Trade Y1 B1 Junkman

11) istari: Trade G2 B2 Istari

12) JunkMan: Build Y1 Junkman

13) istari: Move B2 Istari Greenacres

14) JunkMan: Trade Y1 R1 Junkman

15) istari: Trade G1 R1 Greenacres

16) JunkMan: Build Y1 Azul

17) istari: Build G1 Istari

18) JunkMan: Sacrifice Y1 Azul
Move B1 Junkman Azul

19) istari: Build G2 Istari

20) JunkMan: Build Y1 Azul

21) istari: Move B2 Greenacres Azul

22) JunkMan: Move Y1 Azul Junkman

23) istari: Trade B2 R2 Azul

24) JunkMan: Sacrifice Y1 Azul
Move B1 Azul Junkman

25) istari: Trade G2 R2 Istari

26) JunkMan: Build R1 Junkman

27) istari: Build G2 Greenacres

28) JunkMan: Build R2 Junkman

29) istari: Build R3 Istari

30) JunkMan: Sacrifice Y1 Junkman
Move R1 Junkman Azul

31) istari: Build R3 Greenacres

32) JunkMan: Build R3 Junkman

33) istari: Attack R1S Azul

34) JunkMan: Move Y3 Junkman Azul

35) istari: Trade R3 Y3 Istari

36) JunkMan: Sacrifice R1 Junkman
Attack R2N Azul

37) istari: Sacrifice Y3 Istari
Move R2 Istari Greenacres
Move R2 Greenacres Azul
Move R1 Greenacres Azul
Catastrophe Azul Red

38) JunkMan: Build Y1 Azul

39) istari: Trade G1 Y1 Istari

40) JunkMan: Sacrifice B1 Junkman
Trade Y1 G1 Azul

41) istari: Build G2 Istari

42) JunkMan: Build Y1 Azul

43) istari: Trade Y1 B1 Istari

44) JunkMan: Move G1 Azul Junkman

45) istari: Sacrifice G2 Greenacres
Build R1 Greenacres
Build B1 Istari

46) JunkMan: Build G2 Junkman

47) istari: Trade G2 Y2 Istari

48) JunkMan: Sacrifice G1 Junkman
Build Y1 Azul

49) istari: Move B1 Istari Greenacres

50) JunkMan: Discover Y1 Azul G3 Merlin

51) istari: Move Y2 Istari Merlin

52) JunkMan: Sacrifice Y1 Merlin
Move R2 Junkman Azul

53) istari: Build Y1 Merlin

54) JunkMan: Build R1 Azul

55) istari: Sacrifice Y2 Merlin
Move B1 Greenacres Azul
Move R1 Greenacres Azul

56) JunkMan: Attack B1N Azul

57) istari: Build R1 Azul
Catastrophe Azul Red

58) JunkMan: Build R1 Junkman

59) istari: Move Y1 Merlin Istari

60) JunkMan: Build B2 Azul

61) istari: Construct G1 Greenacres

62) JunkMan: Discover B2 Azul G3 Beret

63) istari: Move B1 Istari Greenacres

64) JunkMan: Trade B2 Y2 Beret

65) istari: Move G1 Greenacres Istari

66) JunkMan: Build Y1 Beret

67) istari: Trade G1 R1 Istari

68) JunkMan: Move Y2 Beret Istari

69) istari: Move G1 Greenacres Azul

70) JunkMan: Sacrifice G2 Junkman
Build Y2 Istari
Build Y3 Beret
Catastrophe Istari Yellow

71) istari: Sacrifice G3 Istari
Build G1 Azul
Build G2 Azul
Build G2 Azul
Catastrophe Azul Green

72) JunkMan: Move Y3 Beret Istari

73) istari: Trade R3 G3 Greenacres

74) JunkMan: Sacrifice R1 Junkman
Attack R1N Istari



912)
Started: 2005.10.10, Ended: 2005.10.11
Participants: Aaron (S), Pat (N)
Winner: Aaron

1) Pat: Homeworld G2 R3 G3
	Aaron: Welcome to the family, Pat!  I'm the admin here, so feel free to ask me if you have any problems or questions.  I'm relatively new to this game though.  Don't expect much of a challenge =)  Good luck!

2) Aaron: Homeworld Y1 B2 G3
	Pat: *YAY* Happy to play with you. I'm brand-spankin'-new to this game, so you're the one that sholdn't worry about any challenges. .P
	Aaron: Be sure to read the wiki.  There are lots of helpful hints there.

3) Pat: Build G1 Pat
	Pat: Well...it seems foolish to not have a yellow in my starting homeworld, huh.

4) Aaron: Build G1 Aaron
	Aaron: oh, and no blue either...aye, I'm afraid we will have to start again.  I don't see any way to get blue or yellow from where you're at.

	SYSTEM: Pat resigns.


916)
Started: 2005.10.10, Ended: 2007.2.4
Participants: andylooney (S), shelbyt (N)
Winner: andylooney

1) shelbyt: Homeworld B2 Y1 G3
	andylooney: welcome to the party!

2) andylooney: Homeworld B3 G2 Y3
	shelbyt: kewl dude


3) shelbyt: Build G1 Shelbyt

4) andylooney: Build Y1 Andylooney

5) shelbyt: Trade G1 Y1 Shelbyt

6) andylooney: Trade Y1 G1 Andylooney

7) shelbyt: Build G1 Shelbyt

8) andylooney: Discover G1 Andylooney Y1 Different

9) shelbyt: Discover G1 Shelbyt Y3 Elsewhere

10) andylooney: Discover G1 Different Y3 Clampett

11) shelbyt: Trade Y1 B1 Shelbyt

12) andylooney: Build Y1 Andylooney

13) shelbyt: Build B1 Shelbyt

14) andylooney: Trade Y1 B1 Andylooney

15) shelbyt: Discover B1 Shelbyt G3 Grblzkx

16) andylooney: Build Y1 Andylooney

17) shelbyt: Build B2 Grblzkx

18) andylooney: Discover B1 Andylooney Y1 Different

19) shelbyt: Build B2 Shelbyt

20) andylooney: Build Y2 Andylooney
	shelbyt: Gong.

21) shelbyt: Move B2 Shelbyt Elsewhere

22) andylooney: Sacrifice G1 Clampett
Build B3 Different

23) shelbyt: Build B3 Elsewhere

24) andylooney: Trade B3 G3 Different

25) shelbyt: Trade B2 Y2 Grblzkx

26) andylooney: Discover Y2 Andylooney G1 Bud

27) shelbyt: Trade B1 R1 Shelbyt

28) andylooney: Trade Y1 R1 Andylooney

29) shelbyt: Build G1 Shelbyt

30) andylooney: Build G2 Different

31) shelbyt: Discover B2 Elsewhere Y1 Nearly

32) andylooney: Discover G3 Different Y3 Clampett
	shelbyt: hmmm, that's annoying.  the one-pipped stars should really appear all at the same horizontal.  

	andylooney: Yeah, no star-towing in this version. You have to deal with a random star-map...

33) shelbyt: Sacrifice G3 Shelbyt
Build G2 Elsewhere
Build Y2 Grblzkx
Build G3 Shelbyt
	shelbyt: ack!  damn you Salizar!  you took the y3... booger.

34) andylooney: Sacrifice G3 Clampett
Build G3 Different
Build Y3 Bud
Build R1 Andylooney

35) shelbyt: Build R2 Shelbyt
	andylooney: Dude! When are you gonna move?

36) andylooney: Build R2 Andylooney

37) shelbyt: Build R2 Shelbyt

38) andylooney: Move R1 Andylooney Bud

39) shelbyt: Move R2 Shelbyt Grblzkx

40) andylooney: Sacrifice G3 Different
Build G3 Different
Build R3 Andylooney
Build R3 Bud

41) shelbyt: Sacrifice G3 Shelbyt
Build G3 Shelbyt
Build R3 Grblzkx
Build B1 Nearly

42) andylooney: Sacrifice Y3 Bud
Discover G3 Different Y3 Wise
Move R3 Andylooney Different
Discover G2 Different B3 Ibm

43) shelbyt: Move G1 Shelbyt Grblzkx

44) andylooney: Sacrifice G3 Wise
Build G3 Ibm
Build Y3 Bud
Build B2 Different

45) shelbyt: Move R2 Grblzkx Nearly

46) andylooney: Move Y3 Bud Ibm

47) shelbyt: Sacrifice Y2 Grblzkx
Discover B3 Elsewhere Y2 Slippery
Move G1 Elsewhere Slippery

48) andylooney: Move G3 Ibm Nearly

49) shelbyt: Sacrifice G2 Elsewhere
Build G2 Slippery
Build Y3 Grblzkx

50) andylooney: Sacrifice R2 Andylooney
Attack R2N Nearly
Attack B2N Nearly



925)
Variants: "Left man down"
Started: 2005.10.11, Ended: 2005.10.29
Participants: MatrixFrog (S), Evilaxe (N), Pat (E)
Winner: Evilaxe

1) Evilaxe: Homeworld G1 B3 Y3
	Pat: 'Ello, all! I'm pretty new to this game, so don't be surprised if I do something obviously stupid.

Other than that: good luck!

2) Pat: Homeworld G2 B1 Y3
	Evilaxe: Never played it before, myself. Looks fun though.
	MatrixFrog: Hey, new people! That's great. I assume you've both read the rules, but ask me if you have any questions...
	MatrixFrog: Welcome, and good luck.

3) MatrixFrog: Homeworld Y2 G3 B3

4) Evilaxe: Build Y1 Evilaxe

5) Pat: Build Y1 Pat

6) MatrixFrog: Build B1 Matrixfrog

7) Evilaxe: Discover Y1 Evilaxe G2 Sparkle
	Evilaxe: discover y1 evilaxe g2 sparkle

8) Pat: Trade Y1 R1 Pat
	Evilaxe: ooops

9) MatrixFrog: Discover B1 Matrixfrog Y1 Pad

10) Evilaxe: Build Y1 Evilaxe

11) Pat: Build R1 Pat

12) MatrixFrog: Build B1 Matrixfrog

13) Evilaxe: Trade Y1 R1 Evilaxe

14) Pat: Discover R1 Pat Y3 Magrathea

15) MatrixFrog: Trade B3 R3 Matrixfrog

16) Evilaxe: Build Y1 Evilaxe

17) Pat: Build R1 Pat

18) MatrixFrog: Build R2 Matrixfrog

19) Evilaxe: Build R2 Evilaxe

20) Pat: Build R2 Pat

21) MatrixFrog: Trade R3 Y3 Matrixfrog

22) Evilaxe: Move R2 Evilaxe Sparkle

23) Pat: Build Y1 Pat

24) MatrixFrog: Build Y2 Matrixfrog

25) Evilaxe: Build Y2 Sparkle

26) MatrixFrog: Trade Y3 R3 Matrixfrog

27) Evilaxe: Move R2 Sparkle Magrathea
	SYSTEM: Pat resigns.
	MatrixFrog: Awww.

28) MatrixFrog: Discover B1 Pad G2 Epsilon
	Pat: Aww: sorry 'bout that, guys. I got stranded without internet all of a sudden. Maybe I'll join in next game .P
	Evilaxe: Sorry. I thought you'd given up interest. Certainly wouldn't have forced resignation if I'd known.

29) Evilaxe: Trade Y1 G1 Evilaxe
	MatrixFrog: Hm. Pat's homeworld is going to be extremely difficult to take over...

30) MatrixFrog: Build B1 Epsilon
	MatrixFrog: If someone doesn't go in there and catastrophize all the red ships, the other player is likely to do it for them. So either those ships will all sit idle for the rest of the game, or else we'll be playing the "No you first" game until the end, I think.

31) Evilaxe: Trade Y3 B3 Evilaxe
	Evilaxe: I'll take your word for it. I was planning an attack run on the remains of Pat, but I think I'll take your advice instead.
	MatrixFrog: Well so was I, but I realized that as soon as I got a red ship in there, you would probably trigger a catastrophe to prevent me from getting all those pieces. And vice versa... of course, one never knows what an opponent will do, so perhaps it's worth the risk under certain circumstances.

32) MatrixFrog: Discover B1 Matrixfrog Y1 Sigma

33) Evilaxe: Attack R1E Magrathea

34) MatrixFrog: Sacrifice Y2 Matrixfrog
Move B1 Epsilon Evilaxe
Move B1 Epsilon Evilaxe
Catastrophe Evilaxe B

35) Evilaxe: Discover R1 Magrathea R2 Nohope
	Pat: Hey: no hard feelings .) Really. And looking at it, it should be an interesting game now that I'm not actually moving anymore. I'll be keeping tabs on y'all.
	MatrixFrog: I'm not entirely sure why I moved my blue ship out. It seems like it would have been more useful where it was.

36) MatrixFrog: Move R2 Matrixfrog Evilaxe
	MatrixFrog: KABOOM!

	Evilaxe: ooops. Shoulda seen that.

37) Evilaxe: Build R3 Evilaxe
	MatrixFrog: That's a happy thought.

38) MatrixFrog: Sacrifice B1 Sigma
Trade R2 G2 Evilaxe
	Evilaxe: :)  I can't see any move that enables me to survive past this move. Thanks for the game, it's been fun.

39) Evilaxe: Attack G2S Evilaxe

40) MatrixFrog: Build R2 Matrixfrog
	Evilaxe: wow, I'm either missing something big, or I'm back in this game. (Probably the former)

41) Evilaxe: Sacrifice G2 Evilaxe
Build R3 Nohope
Build R3 Magrathea
	MatrixFrog: Well, I could have caused a catastrophe, but then I'd have no presence in your homeworld, although you'd still be alive... I thought this was slightly better... not so sure.

42) MatrixFrog: Discover R2 Matrixfrog B1 Bluey
	MatrixFrog: I'd like to think I'm slowly getting better at this game, but it's not necessarily true, it seems.
	Evilaxe: Sorry about this. It's late at night here and I can't seem to run all the scenarios through my head.  I'll move tomorrow morning/afternoon.

43) Evilaxe: Sacrifice Y2 Sparkle
Move R3 Magrathea Bluey
Discover R3 Nohope Y1 Amber

44) MatrixFrog: Trade R2 G2 Bluey

45) Evilaxe: Attack G2S Bluey

46) MatrixFrog: Build R2 Matrixfrog
	Evilaxe: attack g2s bluey

47) Evilaxe: Move R3 Amber Matrixfrog

48) MatrixFrog: Sacrifice R2 Matrixfrog
Attack R3N Matrixfrog
Pass

49) Evilaxe: Build R2 Bluey

50) MatrixFrog: Discover R3 Matrixfrog B1 Gooey

51) Evilaxe: Discover R2 Magrathea Y1 Amber

52) MatrixFrog: Trade R3 Y3 Gooey

53) Evilaxe: Trade G2 Y2 Bluey

54) MatrixFrog: Move Y3 Gooey Matrixfrog

55) Evilaxe: Sacrifice Y2 Bluey
Move R1 Evilaxe Matrixfrog
Move R2 Bluey Matrixfrog

56) MatrixFrog: Move R3 Matrixfrog Amber
	MatrixFrog: I shouldn't have done that... I didn't need that y3 at home, I just needed to HAVE it. Live and learn...
	MatrixFrog: Well... I think.

57) Evilaxe: Trade R3 B3 Bluey
	Evilaxe: I thought I was about to win about 4 turns ago. I just haven't been spotting your options

58) MatrixFrog: Attack R2N Amber

59) Evilaxe: Sacrifice B3 Bluey
Trade R1 Y1 Matrixfrog
Trade R2 Y2 Matrixfrog
Pass
Catastrophe Matrixfrog Y

	Evilaxe: Tick...Tick...Tick BOOOM!!!!

Good game, I really enjoyed it.


926)
Started: 2005.10.11, Ended: 2005.11.5
Participants: Aaron (S), Pat (N)
Winner: Aaron

1) Pat: Homeworld G1 Y2 B3
	Aaron: OK!  Let's try this again =)  I am going to modify the 'homeworlds' command eventually to make it more difficult to make the worst starting errors.
	Pat: Yeah: put in an "Are you sure?" prompt in there or something .P

2) Aaron: Homeworld Y2 B3 G3

3) Pat: Build B1 Pat
	Aaron: I finally did add the code.  Next time you start a game and make one of the 4 standard starting blunders, the system will warn you.
	Pat: Awesome job!

4) Aaron: Build G1 Aaron

5) Pat: Discover B1 Pat Y3 Magrathea

6) Aaron: Trade G1 R1 Aaron

7) Pat: Build B1 Pat

8) Aaron: Build R1 Aaron

9) Pat: Trade B1 R1 Pat

10) Aaron: Trade R1 Y1 Aaron

11) Pat: Build R1 Pat

12) Aaron: Build G1 Aaron

13) Pat: Build R2 Pat

14) Aaron: Build R2 Aaron

15) Pat: Build R2 Pat

16) Aaron: Build R3 Aaron
Catastrophe Pat R

17) Pat: Build B1 Pat
	Pat: Oh...well, suck. I prob'ly should've paid better attention to that, eh?
	Aaron: It's an important rule that anybody can call a catastrophe anywhere at the end of their turn =/  All is not yet lost.

18) Aaron: Discover R2 Aaron Y1 Bananas

19) Pat: Trade B3 R3 Pat

20) Aaron: Move R2 Bananas Magrathea

21) Pat: Move R3 Pat Magrathea

22) Aaron: Move R2 Magrathea Pat

23) Pat: Move R3 Magrathea Pat
	Pat: OH...well...hmmmmm

24) Aaron: Move R2 Pat Magrathea

25) Pat: Trade B1 Y1 Magrathea
	Pat: Sorry 'bout that: I got stranded without internet there suddenly. Thaks for the patience. .)

26) Aaron: Attack Y1 Magrathea
	Aaron: No worries!  Stuff happens.  Hope all is well.

27) Pat: Build B1 Pat

28) Aaron: Discover G1 Aaron Y1 Bananas

29) Pat: Build B1 Pat

30) Aaron: Move R2 Magrathea Bananas
	Pat: Geez: I keep hitting this game up at the last second, huh? Sorry 'bout making you wait like that. :|
	Aaron: It's not a problem at all, Pat.  I'm just happy to play =)
	Aaron: I'm not going anywhere.

31) Pat: Build B2 Pat

32) Aaron: Build Y2 Aaron
Catastrophe Pat B

33) Pat: Build R1 Pat
	Pat: Ah, crap. I had four again, didn't I .P Good catch.
	Pat: Hahahahahah: now I can't create any blues! Not sure how this one'll turn out .P

34) Aaron: Move R2 Bananas Magrathea

35) Pat: Build R1 Pat
	Aaron: I feel badly =/  Well, this is how we learn!  Don't give up!
	Pat: Don't feel bad! I actually prefer to play this way: against someone who knows what they're doing and larning from my mistakes. Don't hold back just because I'm new. .)

36) Aaron: Move Y1 Magrathea Bananas
	Aaron: Well here's what you will want to do immediately.  What I *could* do is move my R2 from Magrathea into your home system and that would end the game.  You need to move one of your Red ships to a new Blue star system so you can get Green and Yellow back.  I will still try to come after you, but you'll last a little longer that way.

37) Pat: Discover R1 Pat B3 Krikket
	Pat: AH...I see.... Hadn't seen the game-ending move you were talking about. .P Thanks for the advice!

38) Aaron: Build Y3 Bananas

39) Pat: Trade R1 G1 Krikket

40) Aaron: Move R3 Aaron Bananas

41) Pat: Build G2 Krikket

42) Aaron: Sacrifice Y3 Bananas
Move R3 Bananas Magrathea
Move R3 Magrathea Pat
Move R2 Magrathea Pat
Catastrophe Pat R
	Aaron: Thanks for the game, Pat!  I do hope you'll keep at it.  Homeworlds is a fascinating game.  Practice makes perfect!



935)
Started: 2005.10.11, Ended: 2005.10.14
Participants: MatrixFrog (S), lambda (N)
Winner: lambda

1) lambda: Homeworld B3 Y2 G3

2) MatrixFrog: Homeworld G1 B3 Y3
	lambda: Hello! It looks like you like playing this game a lot. 
	MatrixFrog: Yeah. It's why I joined the site, but I like the other games too. I just don't get to play this at all in real life, because I don't have friends who are into it.

3) lambda: Build G1 Lambda

4) MatrixFrog: Build Y1 Matrixfrog
	lambda: Yeah, this game is why I joined the site, too. I actually can find some people to play it with in real live, but most of them have just learned it and so I kill them easily with a cheap attack (everyone forgets about catastrophes at first). Playing on here has let me play people who are actually good (including Andy Looney).

5) lambda: Build G1 Lambda
	MatrixFrog: I'm ALWAYS thinking about catastrophes. I probably use them too much.
	lambda: Yeah, once you've played a few times, you think about catastrophes. I'm now trying to figure out how to effectively defeat an opponent who plays reasonably defensively; if they don't let you have any large pieces, and keep their colors spread out to avoid catastrophe, and have a large and a red in their homeworld, it seems really hard to get anything done. 

6) MatrixFrog: Build Y1 Matrixfrog
	lambda: I like the way you can do normally dangerous things at the beginning of the game, like this. 

7) lambda: Discover G1 Lambda B1 Alderamin

8) MatrixFrog: Discover Y1 Matrixfrog G2 Epsilon

9) lambda: Build G2 Alderamin

10) MatrixFrog: Build Y1 Epsilon

11) lambda: Trade G2 Y2 Alderamin

12) MatrixFrog: Trade Y3 G3 Matrixfrog

13) lambda: Build G2 Alderamin

14) MatrixFrog: Build G2 Matrixfrog

15) lambda: Discover G1 Alderamin Y2 Endymion

16) MatrixFrog: Build Y3 Epsilon

17) lambda: Move G1 Endymion Matrixfrog
Catastrophe Matrixfrog G

18) MatrixFrog: Move Y3 Epsilon Matrixfrog
	MatrixFrog: Somebody wasn't paying attention...

19) lambda: Build Y2 Alderamin

20) MatrixFrog: Trade Y1 G1 Matrixfrog

21) lambda: Trade Y2 B2 Alderamin

22) MatrixFrog: Build Y1 Matrixfrog

23) lambda: Move B2 Alderamin Matrixfrog

24) MatrixFrog: Build Y2 Epsilon

25) lambda: Sacrifice G2 Alderamin
Build B1 Matrixfrog
Build B1 Matrixfrog
Catastrophe Matrixfrog B



936)
Variants: "Left man down"
Started: 2005.10.14, Ended: 2005.11.14
Participants: istari (S), MatrixFrog (N), Cerulean (E)
Winner: istari

1) MatrixFrog: Homeworld G1 B3 Y3

2) Cerulean: Homeworld G3 B2 Y3

3) istari: Homeworld B1 G2 Y3

4) MatrixFrog: Build Y1 Matrixfrog

5) Cerulean: Build Y1 Cerulean

6) istari: Build Y1 Istari

7) MatrixFrog: Discover Y1 Matrixfrog G2 Goomba

8) Cerulean: Trade Y1 G1 Cerulean

9) istari: Discover Y1 Istari B3 Bigblue

10) MatrixFrog: Build Y1 Matrixfrog

11) Cerulean: Build G1 Cerulean

12) istari: Trade Y1 G1 Bigblue

13) MatrixFrog: Build Y1 Goomba

14) Cerulean: Trade G1 B1 Cerulean

15) istari: Build G1 Bigblue

16) MatrixFrog: Discover Y1 Goomba B1 Sea

17) Cerulean: Build G2 Cerulean

18) istari: Build Y1 Istari

19) MatrixFrog: Build Y2 Goomba

20) Cerulean: Build Y2 Cerulean

21) istari: Build Y2 Istari

22) MatrixFrog: Move Y1 Sea Cerulean

23) Cerulean: Trade G1 R1 Cerulean

24) istari: Trade Y1 R1 Istari

25) MatrixFrog: Build Y1 Cerulean
Catastrophe Cerulean Y

26) Cerulean: Build B1 Cerulean

27) istari: Move Y2 Istari Bigblue

28) MatrixFrog: Trade Y1 B1 Matrixfrog

29) Cerulean: Trade B1 Y1 Cerulean

30) istari: Build R1 Istari

31) MatrixFrog: Discover Y1 Goomba G1 Greenie

32) Cerulean: Build Y1 Cerulean

33) istari: Move Y2 Bigblue Goomba

34) MatrixFrog: Build Y1 Greenie

35) Cerulean: Discover Y1 Cerulean B1 Arkansas

36) istari: Move Y2 Goomba Matrixfrog

37) MatrixFrog: Trade B1 R1 Matrixfrog

38) Cerulean: Build Y2 Cerulean

39) istari: Build Y2 Matrixfrog

40) MatrixFrog: Trade Y3 G3 Matrixfrog

41) Cerulean: Move Y1 Cerulean Arkansas

42) istari: Trade Y2 B2 Matrixfrog

43) MatrixFrog: Attack B2S Matrixfrog

44) Cerulean: Move G2 Cerulean Arkansas

45) istari: Sacrifice R1 Istari
Attack R1N Matrixfrog

46) MatrixFrog: Trade B2 R2 Matrixfrog
	istari: :  	
I will be going away for a week this Friday 11/5 to Friday 11/11. I will not have access to the Internet and so I will not be able to move during that time. If you do a Force Surrender on me I will understand. Just wanted to let you know. Istari

47) Cerulean: Build G2 Arkansas

48) istari: Attack R2N Matrixfrog

49) MatrixFrog: Move Y2 Goomba Matrixfrog
	MatrixFrog: Hey, no problem, I can wait... if I'm going to get a good rating, I'd rather it's because I actually won... no hurry for me. Thanks for letting me know.

50) Cerulean: Discover G2 Arkansas Y3 Indiana

51) istari: Attack Y2N Matrixfrog

52) MatrixFrog: Discover Y1 Greenie G2 Branch

53) Cerulean: Build G3 Indiana

54) istari: Sacrifice Y2 Matrixfrog
Move G1 Bigblue Branch
Move G1 Branch Matrixfrog

55) MatrixFrog: Trade G3 Y3 Matrixfrog

56) Cerulean: Sacrifice G3 Indiana
Build G3 Indiana
Build G3 Arkansas
Build Y2 Cerulean

57) istari: Construct G3 Matrixfrog

58) MatrixFrog: Build Y2 Greenie
	istari: I'm back. Thanks for waiting.

59) Cerulean: Move Y1 Arkansas Indiana

60) istari: Attack Y3N Matrixfrog



944)
Started: 2005.10.14, Ended: 2005.10.14
Participants: lambda (S), zweiss (N)
Winner: lambda

	SYSTEM: zweiss resigns.


950)
Started: 2005.10.14, Ended: 2005.11.1
Participants: MatrixFrog (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) MatrixFrog: Homeworld G2 B1 Y3

3) andylooney: Build Y1 Andylooney
	MatrixFrog: I don't expect to win this one either, but I hope to learn something.

4) MatrixFrog: Build Y1 Matrixfrog

5) andylooney: Trade Y1 G1 Andylooney

6) MatrixFrog: Trade Y1 B1 Matrixfrog

7) andylooney: Build G1 Andylooney

8) MatrixFrog: Build B2 Matrixfrog

9) andylooney: Discover G1 Andylooney Y3 Clampett

10) MatrixFrog: Trade B1 R1 Matrixfrog

11) andylooney: Trade G1 R1 Andylooney

12) MatrixFrog: Build Y1 Matrixfrog

13) andylooney: Build R1 Andylooney

14) MatrixFrog: Discover Y1 Matrixfrog G3 Down

15) andylooney: Trade R1 B1 Andylooney

16) MatrixFrog: Build Y1 Down

17) andylooney: Build G1 Clampett

18) MatrixFrog: Build Y1 Down

19) andylooney: Discover B1 Andylooney G3 Paradise

20) MatrixFrog: Build Y2 Matrixfrog

21) andylooney: Build B2 Paradise

22) MatrixFrog: Move B2 Matrixfrog Paradise

23) andylooney: Build R1 Andylooney

24) MatrixFrog: Sacrifice R1 Matrixfrog
Attack B2N Paradise

25) andylooney: Build B2 Paradise
Catastrophe Paradise Blue

26) MatrixFrog: Discover Y2 Matrixfrog G3 Gobo

27) andylooney: Move R1 Andylooney Down

28) MatrixFrog: Build Y2 Matrixfrog

29) andylooney: Attack Y1S Down

30) MatrixFrog: Sacrifice Y2 Matrixfrog
Move Y1 Down Andylooney
Move Y1 Down Andylooney

31) andylooney: Trade Y3 G3 Andylooney

32) MatrixFrog: Trade Y1 B1 Andylooney

33) andylooney: Attack B1S Andylooney
	MatrixFrog: Argh! I meant to convert to g1, not b1. I was thinking of blue because that's the technology I was using... Not that I have much of a chance of winning this game anyway.
	andylooney: maybe there ought to be an undo option, or a verify step, so you can make sure your orders were what you wanted...

34) MatrixFrog: Build Y1 Andylooney
	MatrixFrog: Definitely.

35) andylooney: Attack Y1S Andylooney

36) MatrixFrog: Build Y2 Matrixfrog

37) andylooney: Attack Y1S Andylooney

38) MatrixFrog: Build Y2 Gobo

39) andylooney: Build Y3 Down

40) MatrixFrog: Trade Y2 R2 Matrixfrog

41) andylooney: Trade Y1 G1 Andylooney

42) MatrixFrog: Build R1 Matrixfrog

43) andylooney: Sacrifice G3 Andylooney
Build G2 Clampett
Build G3 Andylooney
Build R2 Andylooney

44) MatrixFrog: Build Y1 Matrixfrog

45) andylooney: Build Y2 Andylooney

46) MatrixFrog: Trade R2 B2 Matrixfrog

47) andylooney: Discover G1 Andylooney B3 Ibm

48) MatrixFrog: Move B2 Matrixfrog Gobo

49) andylooney: Sacrifice Y3 Down
Move G1 Ibm Matrixfrog
Move G1 Clampett Matrixfrog
Move G1 Clampett Matrixfrog
Catastrophe Matrixfrog Green

50) MatrixFrog: Build Y3 Gobo

51) andylooney: Move Y1 Andylooney Gobo
Catastrophe Gobo Yellow

52) MatrixFrog: Trade Y1 G1 Matrixfrog

53) andylooney: Trade G3 Y3 Andylooney

54) MatrixFrog: Build Y1 Matrixfrog

55) andylooney: Discover B1 Andylooney G3 Paradise

56) MatrixFrog: Build G1 Matrixfrog

57) andylooney: Build B2 Paradise

58) MatrixFrog: Move Y1 Matrixfrog Gobo

59) andylooney: Build B2 Paradise

60) MatrixFrog: Sacrifice B2 Gobo
Trade R1 G1 Matrixfrog
Trade G1 R1 Matrixfrog
	MatrixFrog: *sigh* Good game... slowly I'm learning...

61) andylooney: Sacrifice Y3 Andylooney
Move B1 Paradise Matrixfrog
Move B2 Paradise Matrixfrog
Move B2 Paradise Matrixfrog
Catastrophe Matrixfrog Blue
	andylooney: Thanks for the game! Keep on playing, you'll get better!



940)
Started: 2005.10.15, Ended: 2006.1.14
Participants: Jesse (S), siukurnin (N)
Winner: Jesse

1) siukurnin: Homeworld G3 Y2 R3

2) Jesse: Homeworld G2 B1 R3 *

	Jesse: Welcome!  Have you played much before?
	Jesse: Are you okay?  What's up?
	Jesse: Well, 87 days is enough.


990)
Started: 2005.10.15, Ended: 2006.1.4
Participants: ayahoo (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) ayahoo: Homeworld B3 G1 Y3

3) andylooney: Build Y1 Andylooney

4) ayahoo: Build Y1 Ayahoo

5) andylooney: Trade Y1 G1 Andylooney

6) ayahoo: Trade Y3 G3 Ayahoo

7) andylooney: Discover G1 Andylooney Y3 Clampett

8) ayahoo: Build Y1 Ayahoo

9) andylooney: Build Y1 Andylooney

10) ayahoo: Trade Y1 R1 Ayahoo

11) andylooney: Trade Y1 R1 Andylooney

12) ayahoo: Build Y1 Ayahoo

13) andylooney: Build Y1 Andylooney

14) ayahoo: Discover Y1 Ayahoo G2 Iceburg

15) andylooney: Build Y2 Andylooney

16) ayahoo: Build Y2 Iceburg

17) andylooney: Discover Y2 Andylooney G3 Garden

18) ayahoo: Discover Y1 Iceburg B1 The Drop

19) andylooney: Discover Y1 Andylooney B3 Ibm

20) ayahoo: Sacrifice G3 Ayahoo
Build Y2 The
Build Y3 Ayahoo
Build R1 Ayahoo

21) andylooney: Sacrifice G1 Clampett
Build Y3 Ibm

	andylooney: So, you haven't moved in weeks... are you planning to finish this game, or should I force you to resign?
	andylooney: I'm still willing to finish this, but my patience grows thin. If you don't move before the new year, I'm going to force your surrender.
	andylooney: OK, 66 days is long enough. Thanks for playing.
	andylooney: All right, well, you have a little more time, I guess. I tried to do a Force Surrender (first time I've ever done this) and I got a System Error!


998)
Started: 2005.10.16, Ended: 2005.10.18
Participants: sketchwick (S), jeep (N)
Winner: jeep

1) jeep: Homeworld G1 B2 Y3

2) sketchwick: Homeworld B1 Y3 G3

3) jeep: Build Y1 Jeep

4) sketchwick: Build G1 Sketchwick

5) jeep: Trade Y1 B1 Jeep

6) sketchwick: Trade G1 R1 Sketchwick

7) jeep: Build Y1 Jeep

8) sketchwick: Build G1 Sketchwick

9) jeep: Trade Y1 G1 Jeep

10) sketchwick: Discover G1 Sketchwick G2 Greenland

11) jeep: Build G2 Jeep

12) sketchwick: Build G2 Sketchwick

13) jeep: Discover G2 Jeep Y3 Candyland

14) sketchwick: Sacrifice G3 Sketchwick
Build G3 Sketchwick
Build R1 Sketchwick
Build R1 Sketchwick

15) jeep: Build G3 Candyland

16) sketchwick: Trade G2 Y2 Sketchwick

17) jeep: Discover G2 Candyland B1 Bluefoundland

18) sketchwick: Move R1 Sketchwick Greenland

19) jeep: Build Y1 Jeep

20) sketchwick: Move Y2 Sketchwick Greenland

21) jeep: Trade G2 R2 Bluefoundland

22) sketchwick: Build G2 Sketchwick

23) jeep: Build B2 Jeep

24) sketchwick: Discover G1 Greenland Y1 Submarine
	jeep: Hope I can remember what my plans were ;)

25) jeep: Trade B2 R2 Jeep

26) sketchwick: Sacrifice G3 Sketchwick
Build G2 Submarine
Build G3 Sketchwick
Build R2 Greenland

27) jeep: Move G3 Candyland Greenland

28) sketchwick: Trade R1 Y1 Sketchwick

29) jeep: Sacrifice R2 Bluefoundland
Attack R2S Greenland
Attack Y2S Greenland

30) sketchwick: Sacrifice G2 Submarine
Build R1 Greenland
Build R2 Greenland
Catastrophe Greenland Red

31) jeep: Build Y2 Greenland

32) sketchwick: Sacrifice G3 Sketchwick
Build G2 Submarine
Build G3 Sketchwick
Build R1 Sketchwick

33) jeep: Sacrifice Y3 Jeep
Move Y2 Greenland Sketchwick
Move Y2 Greenland Sketchwick
Discover G3 Greenland Y3 Notgreen
Catastrophe Sketchwick Yellow

34) sketchwick: Trade G2 Y2 Sketchwick

35) jeep: Build B1 Jeep

36) sketchwick: Sacrifice Y2 Sketchwick
Move G3 Sketchwick Notgreen
Move G3 Notgreen Jeep

37) jeep: Move R2 Jeep Notgreen

38) sketchwick: Trade R1 Y1 Sketchwick

39) jeep: Move G3 Notgreen Sketchwick

40) sketchwick: Sacrifice G2 Submarine
Build R1 Sketchwick
Build Y2 Sketchwick

41) jeep: Sacrifice R2 Notgreen
Attack R1S Sketchwick
Attack R1S Sketchwick

	SYSTEM: sketchwick resigns.


1001)
Started: 2005.10.16, Ended: 2005.10.23
Participants: MrStickman (S), Evilaxe (N)
Winner: MrStickman

1) Evilaxe: Homeworld Y2 B1 G3
	MrStickman: Hiya. I don't think I've actually played Homeworlds since it was called IceTraders. I hope you don't mind me using this game to try and remember how it works...
	Evilaxe: No problem. My only experience is from reading the rules/wiki and about 3 moves into another game.

2) MrStickman: Homeworld B3 G2 Y3

3) Evilaxe: Build G1 Evilaxe

4) MrStickman: Build Y1 Mrstickman
	MrStickman: Heh. Why am I now picturing veteran players popping in and saying things like "Gah!" or "<slaps forehead>?"

5) Evilaxe: Trade G1 Y1 Evilaxe

6) MrStickman: Trade Y1 B1 Mrstickman

7) Evilaxe: Build G1 Evilaxe
	MrStickman: I just realized that the old "enlarge a ship" action from IceTraders went away. Ouch.

8) MrStickman: Build Y1 Mrstickman
	Evilaxe: I've not played IceTraders, but I did spend a few minutes looking through the rules for 'How do I upgrade my ships?'
	MrStickman: Clearly, getting large ships is much much harder now. Cool.

9) Evilaxe: Trade G1 R1 Evilaxe

10) MrStickman: Trade Y1 R1 Mrstickman

11) Evilaxe: Build Y1 Evilaxe

12) MrStickman: Build B1 Mrstickman

13) Evilaxe: Trade G3 B3 Evilaxe

14) MrStickman: Trade B1 G1 Mrstickman
	Evilaxe: Damn, now that was a bad move. 
	MrStickman: Um, mine or yours? (And I wonder if Aaron will ever put in an Undo function, perhaps only to be used by mutual consent of all players...)
	MrStickman: Oh. I just figured that out. Oops.

15) Evilaxe: Trade Y1 G1 Evilaxe
	Evilaxe: I as referring to me. That move of mine just took green tech out of my hands, so I now have to waste a turn reaquiring it.

16) MrStickman: Build Y1 Mrstickman

17) Evilaxe: Build G1 Evilaxe

18) MrStickman: Discover G1 Mrstickman B1 Lorem

19) Evilaxe: Discover G1 Evilaxe B3 New_derbyshire

20) MrStickman: Build G2 Lorem

21) Evilaxe: Build G2 New_derbyshire

22) MrStickman: Build G3 Lorem

23) Evilaxe: Sacrifice Y1 Evilaxe
Move G1 New_derbyshire Lorem
Catastrophe Lorem G

24) MrStickman: Build Y1 Mrstickman

25) Evilaxe: Build G1 New_derbyshire
	MrStickman: Darn. I was about to do that to you. :)

26) MrStickman: Discover Y1 Mrstickman B1 Ipsum

27) Evilaxe: Sacrifice G2 New_derbyshire
Build G1 New_derbyshire
Build G2 Evilaxe

28) MrStickman: Build B2 Mrstickman

29) Evilaxe: Discover G1 Evilaxe Y3 Sindern

30) MrStickman: Move B2 Mrstickman Ipsum

31) Evilaxe: Build G2 Sindern

32) MrStickman: Trade Y3 G3 Mrstickman

33) Evilaxe: Build G3 Evilaxe

34) MrStickman: Build G3 Mrstickman

35) Evilaxe: Trade G2 B2 Evilaxe
	MrStickman: That was an interesting little rush.
	Evilaxe: Yeah. I think you got the best of it, but I don't really have enough experience to judge.

36) MrStickman: Move G3 Mrstickman Ipsum
	MrStickman: There was a big risk on my part. If you'd had a yellow to sacrifice, you could've rushed my Homeworld and caused a catastrophe.

37) Evilaxe: Move B2 Evilaxe Sindern
	MrStickman: (I hadn't actually checked for that possibility until I submitted the move.)

38) MrStickman: Build G2 Ipsum

39) Evilaxe: Move G1 Sindern Ipsum

40) MrStickman: Trade G2 R2 Ipsum

41) Evilaxe: Build B2 Sindern

42) MrStickman: Attack G1N Ipsum

43) Evilaxe: Build G2 Evilaxe

44) MrStickman: Discover G1 Ipsum Y3 Dolor

45) Evilaxe: Move G3 Evilaxe Sindern

46) MrStickman: Move R2 Ipsum Dolor

47) Evilaxe: Trade G2 Y2 Sindern

48) MrStickman: Pass
	Evilaxe: Damn. Mistyped g2 when I meant b2
	Evilaxe: Doesn't really matter though.
	Evilaxe: Actually, and if you don't want to I won't hold it against you, but could you pass next turn?

I promise I'll then just change one of the B2s in Sindern to a G3, emulating what I was trying to do, but absent-mindedly input wrong.

Of course, feel perfectly free not to if you don't want to.
	Evilaxe: I mean G2

49) Evilaxe: Trade B2 G2 Sindern
	MrStickman: A piece of me just breated a sigh of relief. "Finally, a turn I don't have to think about."

50) MrStickman: Move B2 Ipsum Dolor
	Evilaxe: Thanks a lot.

51) Evilaxe: Discover B2 Sindern Y1 Brent

52) MrStickman: Build B2 Dolor
	MrStickman: construct b2 Dolor
	MrStickman: I'm an idiot.

53) Evilaxe: Sacrifice Y2 Sindern
Move G3 Sindern Evilaxe
Move B3 Evilaxe Dolor

54) MrStickman: Move B2 Dolor Brent
	Evilaxe: I think I've blown this one though.

55) Evilaxe: Sacrifice R1 Evilaxe
Attack R2S Dolor

56) MrStickman: Discover B2 Dolor R1 Sit

57) Evilaxe: Trade G3 Y3 Evilaxe

58) MrStickman: Build G3 Ipsum

59) Evilaxe: Sacrifice Y3 Evilaxe
Move G1 New_derbyshire Ipsum
Move G1 New_derbyshire Ipsum
Move B3 Dolor Evilaxe
Catastrophe Ipsum G
	Evilaxe: Yep, I realised how sill my move was as soon as I put my move in, and saw a shiny new G3 just waiting for you to take.

60) MrStickman: Sacrifice G3 Mrstickman
Build B3 Sit
Build Y2 Mrstickman
Build Y2 Ipsum
	Evilaxe: Ooops, didn't take the Hyperspatial Flux into consideration....

61) Evilaxe: Attack G1S Dolor
	MrStickman: It's weird. I keep watching for that, and I keep missing it....

62) MrStickman: Trade B3 Y3 Sit
	Evilaxe: It looks like the end is nigh.

63) Evilaxe: Move G1 Dolor Brent

64) MrStickman: Move B2 Brent Sindern

65) Evilaxe: Build B3 Brent

66) MrStickman: Sacrifice Y3 Sit
Move B2 Sit Sindern
Move B2 Sindern Evilaxe
Move B2 Sindern Evilaxe
Catastrophe Evilaxe Blue

67) Evilaxe: Trade B3 Y3 Brent
	Evilaxe: I can see where it's going, so i'll make it easy for you. Thanks for a good game.
	Evilaxe: Ah, sorry can't change to yeller in the Evilaxe system. Should have checked it more closely

68) MrStickman: Move Y1 Mrstickman Brent
	MrStickman: Actually, I was kinda wondering how/if I'd be able to pull it off.

69) Evilaxe: Move Y3 Brent Evilaxe
	MrStickman: And thank *you* for a lot of fun.

70) MrStickman: Sacrifice Y2 Mrstickman
Move Y2 Ipsum Evilaxe
Move Y1 Ipsum Evilaxe
Catastrophe Evilaxe Yellow



986)
Started: 2005.10.16, Ended: 2005.10.26
Participants: JunkMan (S), ayahoo (N)
Winner: JunkMan

1) ayahoo: Homeworld G2 B1 Y3

2) JunkMan: Homeworld G1 B3 Y3

3) ayahoo: Build Y1 Ayahoo

4) JunkMan: Build Y1 Junkman

5) ayahoo: Trade Y3 G3 Ayahoo

6) JunkMan: Trade Y1 G1 Junkman

7) ayahoo: Build Y1 Ayahoo

8) JunkMan: Build Y1 Junkman

9) ayahoo: Trade Y1 R1 Ayahoo

10) JunkMan: Trade Y1 R1 Junkman

11) ayahoo: Build Y1 Ayahoo

12) JunkMan: Build G1 Junkman

13) ayahoo: Discover Y1 Ayahoo G3 Forest

14) JunkMan: Discover G1 Junkman G2 Faucet

15) ayahoo: Discover G3 Ayahoo R3 Ill

16) JunkMan: Build Y1 Junkman

17) ayahoo: Build Y2 Forest

18) JunkMan: Build Y2 Junkman

	SYSTEM: ayahoo resigns.


1002)
Started: 2005.10.16, Ended: 2006.1.14
Participants: Jesse (S), Divreon (N)
Winner: Jesse

1) Divreon: Homeworld B2 Y1 G3

2) Jesse: Homeworld Y3 B1 G3

3) Divreon: Build G1 Divreon
	Jesse: Welcome!  Have you played much Homeworlds?

4) Jesse: Build G1 Jesse
	Divreon: No, im fairly new, I played versus andy once, and he corrected my misunderstandings of the rules, but that was awhile ago, and I heard you beat him, so im probably doomed, but good practice.

5) Divreon: Trade G1 Y1 Divreon
	Jesse: Well, best of luck to you then, and maybe I can give you a few pointers as well.

6) Jesse: Discover G1 Jesse B2 Boogie

7) Divreon: Discover Y1 Divreon G3 Iceland

8) Jesse: Trade G1 Y1 Boogie

	Jesse: Hmm, I may have made a poor choice last turn.  We'll see.  But I can't let you freeze me out of yellow.
	Jesse: I guess we won't see after all.


1008)
Started: 2005.10.17, Ended: 2005.10.22
Participants: cobalt (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) cobalt: Homeworld Y1 B3 G3

3) andylooney: Build Y1 Andylooney
	cobalt: oi vey! figures that I'd get stuck playing you, of all people :P

4) cobalt: Build G1 Cobalt

5) andylooney: Trade Y1 G1 Andylooney
	andylooney: well, you didn't get "stuck" playing me, you chose to accept my challenge. Didn't you read my name first?

6) cobalt: Trade G1 R1 Cobalt
	cobalt: Well, on 'The Games' page there was a link that said 'Jump Right In!'
I clicked on that :)

7) andylooney: Build Y1 Andylooney

8) cobalt: Build G1 Cobalt

9) andylooney: Trade Y1 R1 Andylooney

10) cobalt: Trade G1 B1 Cobalt

11) andylooney: Build Y1 Andylooney

12) cobalt: Build G1 Cobalt

13) andylooney: Discover G1 Andylooney Y3 Clampett

14) cobalt: Discover G1 Cobalt B2 Doxsee

15) andylooney: Build Y1 Andylooney

16) cobalt: Build G1 Doxsee

17) andylooney: Build G2 Clampett

18) cobalt: Trade G3 Y3 Cobalt

19) andylooney: Discover Y1 Andylooney G3 Garden

20) cobalt: Trade Y3 G3 Cobalt

21) andylooney: Build Y2 Garden

22) cobalt: Build G2 Cobalt

23) andylooney: Discover G1 Clampett Y2 Plugh

24) cobalt: Trade G2 R2 Cobalt

25) andylooney: Discover Y1 Garden B2 Bomber

26) cobalt: Move R2 Cobalt Bomber

27) andylooney: Discover Y1 Bomber G3 Paradise

28) cobalt: Trade R2 Y2 Bomber

29) andylooney: Sacrifice G2 Clampett
Build Y3 Garden
Build Y3 Paradise

30) cobalt: Discover Y2 Bomber R3 Xiii

31) andylooney: Build G2 Plugh

	cobalt: Oh, we both know how this game ends. Next time we meet, hopefully I'll be a little bit better :)
	SYSTEM: cobalt resigns.


1010)
Started: 2005.10.17, Ended: 2005.10.24
Participants: cobalt (S), killerkitty94 (N)
Winner: cobalt

	killerkitty94: what do i do?
	rootbeer: There are some suggestions on the wiki. On your first turn, you establish a homeworld with the "homeworld" command. 

	rootbeer: Try to move before the time runs out, so as not to be rude to your fellow players.
	cobalt: I'll wait a few more days.
	rootbeer: KillerKitty hasn't been online in two days. I hope he or she is spending this time studying the rules!
	SYSTEM: killerkitty94 resigns.


1016)
Started: 2005.10.17, Ended: 2005.10.25
Participants: TwoShort (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld G2 B1 Y3

2) TwoShort: Homeworld Y3 B1 G3

3) ts52: Build Y1 Ts52

4) TwoShort: Build G1 Twoshort

5) ts52: Discover Y1 Ts52 G3 Endor

6) TwoShort: Build G1 Twoshort
	ts52: Thanks for joining the game. Hvae a great game.

7) ts52: Build Y1 Ts52

8) TwoShort: Discover G1 Twoshort Y2 Sulphur

9) ts52: Trade Y1 G1 Ts52

10) TwoShort: Discover G1 Sulphur Y3 Monkeywrench

11) ts52: Trade G1 R1 Ts52

12) TwoShort: Discover G1 Twoshort B2 Bluestar

13) ts52: Build Y1 Ts52

14) TwoShort: Build G1 Twoshort

15) ts52: Trade Y1 B1 Ts52

16) TwoShort: Sacrifice G3 Twoshort
Build G2 Monkeywrench
Build G2 Bluestar
Build G3 Twoshort

17) ts52: Build B2 Ts52

18) TwoShort: Trade G1 Y1 Bluestar

19) ts52: Discover B1 Ts52 G3 Garden

20) TwoShort: Move G2 Bluestar Garden

21) ts52: Build B2 Garden

22) TwoShort: Sacrifice G3 Twoshort
Build G1 Garden
Build G3 Twoshort
Build Y1 Bluestar

23) ts52: Build Y2 Endor

24) TwoShort: Trade Y1 R1 Bluestar

25) ts52: Build B3 Ts52

26) TwoShort: Sacrifice G3 Twoshort
Build Y1 Bluestar
Build R1 Bluestar
Build G3 Twoshort

27) ts52: Build Y2 Ts52

28) TwoShort: Sacrifice R1 Bluestar
Attack B2N Garden

29) ts52: Move B3 Ts52 Endor

30) TwoShort: Sacrifice B2 Garden
Trade G2 Y2 Garden
Trade G2 B2 Monkeywrench

31) ts52: Trade Y2 G2 Endor

32) TwoShort: Sacrifice Y2 Garden
Move G1 Garden Ts52
Move G1 Monkeywrench Ts52

33) ts52: Build G2 Endor

34) TwoShort: Sacrifice G1 Twoshort
Build G1 Ts52
Catastrophe Ts52 Green

35) ts52: Move Y2 Ts52 Garden
	ts52: well played

36) TwoShort: Build G1 Twoshort

37) ts52: Build Y2 Endor

38) TwoShort: Sacrifice G1 Twoshort
Build B3 Monkeywrench

39) ts52: Discover B2 Ts52 Y2 Shortbus

40) TwoShort: Build G1 Twoshort

41) ts52: Sacrifice Y2 Endor
Move G2 Endor Shortbus
Move G2 Shortbus Twoshort

42) TwoShort: Sacrifice B3 Monkeywrench
Trade G3 R3 Twoshort
Trade B2 Y2 Monkeywrench
Trade Y1 R1 Bluestar


43) ts52: Build G1 Twoshort

44) TwoShort: Attack G2N Twoshort

45) ts52: Build G1 Twoshort
Catastrophe Twoshort Green

46) TwoShort: Trade R3 G3 Twoshort

47) ts52: Build G1 Endor

48) TwoShort: Trade R1 G1 Bluestar

49) ts52: Move G1 Endor Ts52

50) TwoShort: Build G1 Bluestar

51) ts52: Move B3 Endor Bluestar

52) TwoShort: Sacrifice Y2 Monkeywrench
Move G1 Bluestar Endor
Move R1 Bluestar Twoshort

53) ts52: Move G2 Endor Shortbus

54) TwoShort: Build G2 Bluestar

55) ts52: Trade B3 R3 Bluestar

56) TwoShort: Sacrifice Y1 Bluestar
Discover G2 Bluestar B3 Amideadyet

57) ts52: Build G2 Shortbus

58) TwoShort: Sacrifice G1 Bluestar
Build G1 Amideadyet

59) ts52: Build Y1 Endor

60) TwoShort: Trade G2 Y2 Amideadyet

61) ts52: Move Y1 Endor Bluestar

62) TwoShort: Build G2 Amideadyet

63) ts52: Move R3 Bluestar Endor

64) TwoShort: Trade G2 B2 Amideadyet

65) ts52: Build G2 Ts52

66) TwoShort: Discover B2 Amideadyet Y1 Futility

67) ts52: Build Y3 Endor

68) TwoShort: Sacrifice G1 Endor
Build B3 Futility

69) ts52: Build B3 Shortbus

70) TwoShort: Discover B3 Futility R2 R2d2

71) ts52: Move R3 Endor Futility

72) TwoShort: Discover B2 Futility R2 C3po

73) ts52: Move R3 Futility Amideadyet

74) TwoShort: Move Y2 Amideadyet Bluestar

75) ts52: Attack G1 Amideadyet

76) TwoShort: Build R1 Twoshort

77) ts52: Move Y1 Bluestar Amideadyet

78) TwoShort: Move R1 Twoshort Bluestar

79) ts52: Move R3 Amideadyet Bluestar

80) TwoShort: Sacrifice G3 Twoshort
Build R2 Bluestar
Build R3 Bluestar
Build R3 Twoshort
Catastrophe Bluestar Red

81) ts52: Sacrifice B2 Shortbus
Trade B3 R3 Shortbus
Trade Y3 R3 Endor
	ts52: Wow, nicely done...

82) TwoShort: Trade R3 G3 Twoshort

83) ts52: Move R3 Endor Bluestar

84) TwoShort: Build R1 Twoshort

85) ts52: Attack Y2 Bluestar

86) TwoShort: Sacrifice G3 Twoshort
Build B2 R2d2
Build B3 C3po
Pass

87) ts52: Sacrifice Y2 Garden
Move R3 Bluestar Twoshort
Move R3 Shortbus Twoshort
Catastrophe Twoshort Red



1030)
Started: 2005.10.18, Ended: 2005.11.7
Participants: zevzimra (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) zevzimra: Homeworld B2 G3 Y3

3) andylooney: Build Y1 Andylooney

4) zevzimra: Construct Y1 Zevzimra

5) andylooney: Trade Y1 G1 Andylooney

6) zevzimra: Trade Y1 B1 Zevzimra

7) andylooney: Build G1 Andylooney

8) zevzimra: Trade B1 G1 Zevzimra

9) andylooney: Discover G1 Andylooney Y3 Clampett

10) zevzimra: Discover G1 Zevzimra Y1 Backwater

11) andylooney: Build G2 Clampett

12) zevzimra: Build G2 Backwater

13) andylooney: Build G3 Andylooney

14) zevzimra: Build Y1 Zevzimra

15) andylooney: Trade G1 R1 Andylooney

16) zevzimra: Construct Y1 Zevzimra

17) andylooney: Build Y2 Andylooney

18) zevzimra: Trade Y1 R1 Zevzimra

19) andylooney: Discover G1 Clampett Y1 Different

20) zevzimra: Trade Y1 G1 Zevzimra

21) andylooney: Build G3 Different

22) zevzimra: Build R1 Zevzimra

23) andylooney: Discover Y2 Andylooney B3 Ibm

24) zevzimra: Discover G1 Zevzimra Y1 Pisspot

25) andylooney: Sacrifice G3 Different
Build G3 Different
Build Y2 Ibm
Build Y2 Andylooney

26) zevzimra: Move R1 Zevzimra Backwater

27) andylooney: Discover Y3 Andylooney B3 Bluestar

28) zevzimra: Construct R2 Backwater

29) andylooney: Sacrifice G2 Clampett
Build Y3 Bluestar
Build R2 Andylooney

30) zevzimra: Discover R2 Backwater B3 Kasparov

31) andylooney: Move R2 Andylooney Ibm
	andylooney: Dang! I can't believe how I messed up my last move on our Martian Chess game! I was obviously too sleepy when I was making my final moves last night...

32) zevzimra: Sacrifice G2 Backwater
Build R2 Backwater
Build R3 Zevzimra
	zevzimra: That's okay...  it happens to the best of us!

33) andylooney: Sacrifice G3 Different
Build G2 Different
Build R3 Andylooney
Build R3 Ibm

34) zevzimra: Construct G2 Pisspot

35) andylooney: Discover R1 Andylooney G3 Garden

	zevzimra: Thanks for the game!
	SYSTEM: zevzimra resigns.


1021)
Started: 2005.10.18, Ended: 2005.10.21
Participants: cobalt (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) cobalt: Homeworld B1 G2 Y3

3) TwoShort: Build G1 Twoshort

4) cobalt: Build Y1 Cobalt

5) TwoShort: Build G1 Twoshort

6) cobalt: Trade Y1 G1 Cobalt

7) TwoShort: Discover G1 Twoshort Y3 Threetall

8) cobalt: Build Y1 Cobalt

9) TwoShort: Move G1 Threetall Cobalt

10) cobalt: Trade G1 R1 Cobalt

11) TwoShort: Build G1 Cobalt

12) cobalt: Discover R1 Cobalt G3 Hindsight

13) TwoShort: Trade G1 Y1 Cobalt

14) cobalt: Trade Y3 R3 Cobalt

15) TwoShort: Build Y2 Cobalt

16) cobalt: Move Y1 Cobalt Hindsight

17) TwoShort: Build G1 Cobalt

18) cobalt: Attack Y2N Cobalt

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build Y2 Cobalt
Build Y2 Cobalt
Catastrophe Cobalt Yellow

20) cobalt: Move R1 Hindsight Cobalt

21) TwoShort: Build G2 Cobalt

22) cobalt: Catastrophe Cobalt G
Move Y1 Hindsight Twoshort

23) TwoShort: Trade G2 R2 Twoshort

24) cobalt: Sacrifice R1 Cobalt
Attack G1N Twoshort

25) TwoShort: Attack G1S Twoshort

26) cobalt: Discover Y1 Twoshort Y3 Thatwasdumbofme

27) TwoShort: Build G1 Twoshort

28) cobalt: Move Y1 Thatwasdumbofme Cobalt

29) TwoShort: Build G1 Twoshort
	TwoShort: construct g1 twoshort


30) cobalt: Trade R3 G3 Cobalt

31) TwoShort: Discover G1 Twoshort Y3 Jed

32) cobalt: Build Y1 Cobalt

33) TwoShort: Build G2 Twoshort

34) cobalt: Build Y2 Cobalt

35) TwoShort: Trade G2 B2 Twoshort

36) cobalt: Trade Y2 R2 Cobalt

37) TwoShort: Build G2 Twoshort

38) cobalt: Build Y2 Cobalt

39) TwoShort: Move B2 Twoshort Jed

40) cobalt: Move R2 Cobalt Jed

41) TwoShort: Move B2 Jed Cobalt

42) cobalt: Sacrifice Y2 Cobalt
Move G3 Cobalt Jed
Move G3 Jed Twoshort
Catastrophe Twoshort G

43) TwoShort: Trade B2 R2 Cobalt

	SYSTEM: cobalt resigns.


1038)
Started: 2005.10.19, Ended: 2005.12.13
Participants: andylooney (S), jeep (N)
Winner: jeep

1) jeep: Homeworld G1 B2 Y3

2) andylooney: Homeworld B3 G2 Y3
	jeep: Overs!  ;)

3) jeep: Build Y1 Jeep

4) andylooney: Build Y1 Andylooney

5) jeep: Discover Y1 Jeep G3 Lantern

6) andylooney: Trade Y1 G1 Andylooney

7) jeep: Build Y1 Jeep

8) andylooney: Build G1 Andylooney

9) jeep: Trade Y3 G3 Jeep

10) andylooney: Discover G1 Andylooney Y1 Different

11) jeep: Build G2 Jeep

12) andylooney: Build G2 Different
	jeep: Ack, that wasn't what I meant to do... *sigh*  oh well. 

13) jeep: Discover G2 Jeep G3 Arrow

14) andylooney: Build Y2 Andylooney

15) jeep: Build Y2 Jeep

16) andylooney: Discover Y2 Andylooney B1 Bomber

17) jeep: Discover Y2 Jeep B3 Moon

18) andylooney: Discover G2 Different Y3 Clampett

19) jeep: Sacrifice G3 Jeep
Build Y2 Moon
Build Y3 Jeep
Build G3 Arrow

20) andylooney: Move G1 Different Arrow
Catastrophe Arrow Green

21) jeep: Trade Y2 G2 Moon

22) andylooney: Move G1 Andylooney Bomber

23) jeep: Trade Y1 G1 Jeep

24) andylooney: Build G3 Bomber

25) jeep: Build G3 Moon

26) andylooney: Trade G1 R1 Bomber

27) jeep: Trade G2 R2 Moon

28) andylooney: Build R1 Bomber

29) jeep: Build R1 Moon

30) andylooney: Move R1 Bomber Clampett

31) jeep: Build G1 Moon

32) andylooney: Build R2 Bomber

33) jeep: Discover G1 Moon B1 Man
	jeep: Sorry, my brain is burning.  I'll think about it later tonight.

34) andylooney: Build G2 Bomber

35) jeep: Build Y1 Moon

36) andylooney: Move R2 Bomber Lantern

37) jeep: Move R2 Moon Man

38) andylooney: Attack Y1N Lantern

39) jeep: Sacrifice G3 Moon
Build G3 Man
Build R2 Man
Build R3 Moon

40) andylooney: Sacrifice G3 Bomber
Build G3 Bomber
Build R3 Clampett
Build R3 Lantern

41) jeep: Trade Y1 B1 Moon

42) andylooney: Sacrifice G3 Bomber
Build G3 Bomber
Build Y1 Bomber
Build Y1 Lantern

43) jeep: Sacrifice G3 Man
Build G3 Man
Build Y2 Moon
Build B2 Moon

44) andylooney: Trade G2 B2 Bomber

45) jeep: Sacrifice Y2 Moon
Move B1 Moon Bomber
Move B2 Moon Bomber
Catastrophe Bomber Blue

46) andylooney: Build G2 Clampett

47) jeep: Trade R3 G3 Moon

48) andylooney: Sacrifice G2 Clampett
Build Y1 Lantern
Build Y2 Andylooney

49) jeep: Sacrifice G3 Man
Build G2 Moon
Build G3 Man
Build Y2 Moon

50) andylooney: Discover R1 Clampett B1 Bomber

51) jeep: Move Y2 Moon Man

52) andylooney: Sacrifice Y2 Andylooney
Discover R3 Clampett Y2 Plugh
Move R1 Bomber Andylooney

53) jeep: Trade R2 B2 Man

54) andylooney: Sacrifice G2 Clampett
Build Y3 Andylooney
Build R1 Andylooney

55) jeep: Move Y2 Man Lantern
Catastrophe Lantern Yellow
	jeep: Yeah, almost moved into that system, I didn't think you'd cash it yet.

56) andylooney: Trade R1 B1 Andylooney

57) jeep: Sacrifice G3 Moon
Build G2 Jeep
Build G3 Moon
Build R1 Man

58) andylooney: Discover B1 Andylooney Y1 Different
	andylooney: Dang, I wish I hadn't let you blow up my fleet of little yellows! When I put a 3rd ship in that system it was safe, but I got so interested in cashing in my investment that I didn't notice it was no longer safe to keep that fleet of 3 together! And now, with them gone, my plan for destroying you is ruined, and I find I've painted myself into a corner! Plus, I can't believe how far I've let you monopolize the green economy! You've got 2 factories, and I'm totally frozen out! Ack! I thought I was on the brink of victory, but now I think I'm going to lose this one! Oh well... :)

59) jeep: Sacrifice G3 Man
Build G3 Man
Build Y1 Moon
Build Y1 Jeep

60) andylooney: Move B1 Different Lantern
	jeep: Yeah, well, I'm famous for losing games that I should win.  In fact, my other Homeworlds game here seemed like I had it won, then I just gave him a ship.

61) jeep: Sacrifice Y2 Moon
Move R1 Man Lantern
Move R2 Man Lantern
Catastrophe Lantern Red

62) andylooney: Build B1 Lantern
	jeep: I'm heading on vacation starting tomorrow. I had thought this might end by the time I left. I appreciate your patience while I'm driving. I'll move today, tomorrow a.m., and after I get to NE.

63) jeep: Sacrifice G3 Moon
Build G3 Moon
Build Y1 Moon
Build R1 Moon
	andylooney: no problem, I'm in lots of games and I can be patient. Have fun!

64) andylooney: Sacrifice Y3 Andylooney
Move B1 Lantern Man
Move B1 Lantern Man
Discover R3 Plugh B3 Ibm
Catastrophe Man Blue

65) jeep: Discover Y1 Moon B1 Station
	jeep: Wow, now I want to see what the board looked like before that move. 

66) andylooney: Build Y2 Andylooney
	jeep: I'm heading back home tomorrow.  Limited access until Monday.

67) jeep: Sacrifice G2 Moon
Build Y2 Moon
Build Y2 Station

68) andylooney: Trade Y2 G2 Andylooney

69) jeep: Sacrifice G2 Jeep
Build Y2 Station
Build Y3 Moon

70) andylooney: Sacrifice G2 Andylooney
Build R2 Ibm
Build R2 Andylooney

71) jeep: Trade Y2 R2 Station

72) andylooney: Trade R2 Y2 Ibm

73) jeep: Sacrifice Y3 Moon
Move R2 Station Andylooney
Move R1 Moon Station
Move R1 Station Andylooney
Catastrophe Andylooney Red

74) andylooney: Trade Y2 G2 Ibm
	andylooney: Ouch.

75) jeep: Move Y1 Moon Station

76) andylooney: Trade Y3 R3 Andylooney

77) jeep: Sacrifice G3 Moon
Build Y2 Jeep
Build Y3 Moon
Build Y3 Moon

78) andylooney: Build R1 Ibm

79) jeep: Move G1 Jeep Moon

80) andylooney: Build G1 Ibm

81) jeep: Build G2 Moon

82) andylooney: Trade G1 B1 Ibm

83) jeep: Move R1 Moon Station

	andylooney: There's no way I can recover from this... you've got me, I resign.
	SYSTEM: andylooney resigns.


1041)
Started: 2005.10.19, Ended: 2005.10.27
Participants: jeep (S), sketchwick (N)
Winner: sketchwick

1) sketchwick: Homeworld B1 Y3 G3

2) jeep: Homeworld G1 B2 Y3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build Y1 Jeep

5) sketchwick: Discover G1 Sketchwick Y2 First

6) jeep: Trade Y1 G1 Jeep

7) sketchwick: Build G2 Sketchwick

8) jeep: Discover G1 Jeep G3 Blood

9) sketchwick: Sacrifice G3 Sketchwick
Build G2 First
Build G2 First
Build G3 Sketchwick

10) jeep: Build Y1 Jeep
	jeep: Heh, I suck.  I am constantly skipping steps in my plan.

11) sketchwick: Discover G2 First B3 Sport

12) jeep: Trade Y3 G3 Jeep

13) sketchwick: Trade G2 Y2 Sport

14) jeep: Build Y1 Jeep

15) sketchwick: Sacrifice G3 Sketchwick
Build G2 Sketchwick
Build G3 Sketchwick
Build Y1 Sport

16) jeep: Move Y1 Jeep Blood

17) sketchwick: Trade Y2 R2 Sport

18) jeep: Build Y2 Jeep

19) sketchwick: Discover G2 Sketchwick Y2 Bra

20) jeep: Build Y3 Blood

21) sketchwick: Sacrifice G3 Sketchwick
Build G3 Sketchwick
Build Y3 Sport
Build R1 Sport

22) jeep: Trade Y1 R1 Jeep

23) sketchwick: Sacrifice Y3 Sport
Move G2 Bra Sport
Move G2 First Blood
Move G1 First Blood
Catastrophe Blood Green

24) jeep: Build Y1 Jeep

25) sketchwick: Build G1 Sport

26) jeep: Build R1 Jeep

27) sketchwick: Move G1 Sport Jeep
	jeep: I have no clue what I'm doing.

28) jeep: Move G3 Jeep Sport

29) sketchwick: Sacrifice G3 Sketchwick
Build G1 Sport
Build G2 Sport
Build G3 Sketchwick
Catastrophe Sport Green

30) jeep: Attack G1N Jeep

31) sketchwick: Discover G3 Sketchwick Y2 Drink
	jeep: so many tactics I haven't thought about

32) jeep: Discover G1 Jeep Y3 Me

33) sketchwick: Move G3 Drink Sport

34) jeep: Trade Y1 G1 Jeep

35) sketchwick: Move G3 Sport Jeep

36) jeep: Build G2 Jeep
Catastrophe Jeep Green

37) sketchwick: Trade R2 G2 Sport

38) jeep: Move G1 Me Jeep

39) sketchwick: Build R2 Sport

40) jeep: Build Y1 Jeep

41) sketchwick: Build G1 Sketchwick

42) jeep: Trade R1 B1 Jeep

43) sketchwick: Trade G2 Y2 Sketchwick

44) jeep: Trade Y2 G2 Jeep

45) sketchwick: Build G1 Sport

46) jeep: Discover G1 Jeep Y3 Fan

47) sketchwick: Sacrifice Y2 Sketchwick
Move G2 Sport Jeep
Move G1 Sport Jeep

48) jeep: Move G2 Jeep Sketchwick

49) sketchwick: Sacrifice R2 Sport
Attack R1 Jeep
Attack Y1 Jeep

50) jeep: Sacrifice G1 Fan
Build B1 Jeep

51) sketchwick: Attack B1 Jeep

52) jeep: Sacrifice G2 Sketchwick
Build B2 Jeep
Build B2 Jeep

53) sketchwick: Pass
Catastrophe Jeep Blue



1022)
Variants: "Left man down"
Started: 2005.10.19, Ended: 2005.11.23
Participants: mtgrocks04 (S), MatrixFrog (N), ayahoo (E)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G2 B3 Y3

2) ayahoo: Homeworld G1 B3 Y3

3) MatrixFrog: Build Y1 Matrixfrog
	MatrixFrog: Okay... maybe one or two more days, then that's it.
	rootbeer: It looks to me as if it's too easy for a new player to sign up for a game without realizing what they're doing. If they're new and not invested in the site, they just don't bother coming back.
	rootbeer: It's been five days since mtgrocks04 has been seen on the site.

	MatrixFrog: True.

	SYSTEM: ayahoo resigns.


1048)
Started: 2005.10.19, Ended: 2005.10.28
Participants: TwoShort (S), lambda (N)
Winner: lambda

1) lambda: Homeworld G2 B1 Y3

2) TwoShort: Homeworld B3 Y2 G3
	lambda: Hello! I look forward to playing with you. Good luck, and have fun. 

3) lambda: Build Y1 Lambda
	TwoShort: Good luck to you too.

4) TwoShort: Build G1 Twoshort

5) lambda: Build Y1 Lambda

6) TwoShort: Discover G1 Twoshort Y1 Jed

7) lambda: Discover Y1 Lambda G3 Mirach

8) TwoShort: Build G1 Twoshort

9) lambda: Build Y2 Lambda

10) TwoShort: Build G1 Jed

11) lambda: Trade Y2 G2 Lambda

12) TwoShort: Discover G1 Jed Y3 Cake

13) lambda: Discover G2 Lambda Y3 Arcturus

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Cake
Build G3 Jed
Build G3 Twoshort

15) lambda: Build Y2 Mirach

16) TwoShort: Discover G1 Jed B3 Bluestar

17) lambda: Trade Y1 B1 Lambda

18) TwoShort: Trade G1 Y1 Bluestar

19) lambda: Build G1 Arcturus

20) TwoShort: Sacrifice G2 Cake
Build G2 Jed
Build Y2 Bluestar

21) lambda: Discover G1 Arcturus B1 Mira

22) TwoShort: Trade Y2 B2 Bluestar

23) lambda: Sacrifice Y3 Lambda
Move G2 Arcturus Mira
Move G2 Mira Twoshort
Move G1 Mira Twoshort
Catastrophe Twoshort Green



1050)
Started: 2005.10.19, Ended: 2005.10.21
Participants: tendrecube (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) tendrecube: Homeworld G3 B1 Y3
	tendrecube: homeworld G3 B1 Y3

	tendrecube: homeworldG3B1Y3

3) TwoShort: Build G1 Twoshort
	tendrecube: oops sorry first time online and needed some try and miss to figure out.......duh
here goes


4) tendrecube: Build Y1 Tendrecube
	TwoShort: No problem.  I do that myself pretty regularly; you're looking at the board, and there's the edit box right there...

5) TwoShort: Build G1 Twoshort

6) tendrecube: Trade Y1 B1 Tendrecube

7) TwoShort: Discover G1 Twoshort Y3 Jed

8) tendrecube: Discover B1 Tendrecube G2 Alias

9) TwoShort: Discover G1 Twoshort B3 Bluestar

10) tendrecube: Build B1 Alias

11) TwoShort: Build G1 Twoshort

12) tendrecube: Build B2 Alias

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G2 Jed
Build G3 Twoshort

14) tendrecube: Trade B2 R2 Alias

15) TwoShort: Trade G2 R2 Bluestar

16) tendrecube: Build B2 Alias

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Jed
Build G3 Twoshort

18) tendrecube: Build R1 Alias

19) TwoShort: Move G3 Jed Alias

20) tendrecube: Trade Y3 R3 Tendrecube

21) TwoShort: Sacrifice R2 Bluestar
Attack R2S Alias
Attack B2S Alias

22) tendrecube: Build R1 Tendrecube

23) TwoShort: Trade B2 Y2 Alias

24) tendrecube: Trade R1 Y1 Tendrecube

25) TwoShort: Discover G2 Jed Y2 Yoyo

26) tendrecube: Move R3 Tendrecube Alias

27) TwoShort: Sacrifice Y2 Alias
Move G3 Alias Tendrecube
Move R2 Alias Tendrecube

28) tendrecube: Build Y1 Tendrecube

29) TwoShort: Sacrifice R2 Tendrecube
Attack Y1S Tendrecube
Attack Y1S Tendrecube



1060)
Started: 2005.10.20, Ended: 2005.10.20
Participants: BruceVencill (S), mikepler (N)
Winner: BruceVencill

	SYSTEM: mikepler resigns.


1043)
Started: 2005.10.20, Ended: 2005.11.5
Participants: cobalt (S), jeremiah (N)
Winner: cobalt

1) jeremiah: Homeworld Y2 B1 G3

2) cobalt: Homeworld G3 B2 Y3

3) jeremiah: Build G1 Jeremiah

4) cobalt: Build Y1 Cobalt

5) jeremiah: Build G1 Jeremiah

6) cobalt: Trade Y1 G1 Cobalt

7) jeremiah: Trade G1 B1 Jeremiah

8) cobalt: Build G1 Cobalt

9) jeremiah: Build G2 Jeremiah

10) cobalt: Sacrifice Y3 Cobalt
Discover G1 Cobalt Y1 Jump1
Discover G1 Jump1 Y3 Jump2
Move G1 Jump2 Jeremiah
Catastrophe Jeremiah G

11) jeremiah: Trade B1 G1 Jeremiah

12) cobalt: Trade G1 Y1 Cobalt

13) jeremiah: Build G1 Jeremiah

14) cobalt: Build Y1 Cobalt

15) jeremiah: Trade G1 R1 Jeremiah

16) cobalt: Build Y1 Cobalt

17) jeremiah: Build G1 Jeremiah

18) cobalt: Discover Y1 Cobalt G1 Framauro

19) jeremiah: Build G2 Jeremiah

20) cobalt: Build Y2 Cobalt

21) jeremiah: Discover G1 Jeremiah Y3 Antihistamine

22) cobalt: Trade Y2 G2 Cobalt

23) jeremiah: Trade G2 Y2 Jeremiah

24) cobalt: Trade Y1 R1 Cobalt

25) jeremiah: Build G2 Antihistamine
	jeremiah: construct g2 antihistamine

26) cobalt: Discover Y1 Framauro G3 Arglebargle

27) jeremiah: Discover G1 Antihistamine Y1 Betablocker
	jeremiah: discover g1 antihistamine y1 betablocker

28) cobalt: Trade G2 Y2 Cobalt
	jeremiah: I have to remember that it's the other box.  Yeesh.  That's twice now

29) jeremiah: Move Y2 Jeremiah Antihistamine
	jeremiah: move y2 jeremiah antihistamine

30) cobalt: Build Y3 Arglebargle
	cobalt: thrice :P

31) jeremiah: Build Y3 Antihistamine

32) cobalt: Sacrifice Y2 Cobalt
Move Y1 Arglebargle Jeremiah
Move Y1 Jeremiah Antihistamine
Catastrophe Antihistamine Y
	jeremiah: I'm pretty sure I know what your next move is, but maybe you've got something else in mind.

33) jeremiah: Build G1 Jeremiah
	cobalt: was that what you had in mind?
	jeremiah: yep
	jeremiah: construct g1 jeremiah

34) cobalt: Build Y1 Cobalt
	jeremiah: sigh... did it again.  Good thing you can't gain anything by it.

35) jeremiah: Build G2 Betablocker

36) cobalt: Move Y3 Arglebargle Jeremiah

37) jeremiah: Build G2 Betablocker

38) cobalt: Sacrifice R1 Cobalt
Attack R1 Jeremiah

	jeremiah: hmmm.... should've built red and forced a catastrope in a turn or two
	jeremiah: and I can't get things done quick enough in your homeworld...  

	SYSTEM: jeremiah resigns.


1042)
Started: 2005.10.21, Ended: 2005.11.7
Participants: JunkMan (S), cobalt (N)
Winner: JunkMan

1) cobalt: Homeworld G1 B2 Y3

2) JunkMan: Homeworld G2 B3 Y3

3) cobalt: Build Y1 Cobalt

4) JunkMan: Build Y1 Junkman

5) cobalt: Build Y1 Cobalt

6) JunkMan: Trade Y1 G1 Junkman

7) cobalt: Trade Y1 G1 Cobalt

8) JunkMan: Build Y1 Junkman

9) cobalt: Discover Y1 Cobalt G3 Saratoga

10) JunkMan: Build G2 Junkman

11) cobalt: Build Y1 Cobalt

12) JunkMan: Trade G1 R1 Junkman

13) cobalt: Trade Y1 R1 Cobalt

14) JunkMan: Discover Y1 Junkman G1 Kite

15) cobalt: Move Y1 Saratoga Kite

16) JunkMan: Sacrifice R1 Junkman
Attack Y1N Kite

17) cobalt: Build G2 Cobalt

18) JunkMan: Discover G2 Junkman B1 Eden

19) cobalt: Build Y1 Cobalt

20) JunkMan: Build G3 Eden

21) cobalt: Sacrifice Y3 Cobalt
Discover Y1 Cobalt R3 Jump
Discover Y1 Jump R1 Leap
Move Y1 Leap Junkman

22) JunkMan: Sacrifice Y1 Kite
Move G2 Eden Junkman

23) cobalt: Build Y1 Junkman

24) JunkMan: Trade Y3 R3 Junkman

25) cobalt: Trade G2 Y2 Cobalt

26) JunkMan: Build Y2 Kite

27) cobalt: Build Y2 Cobalt

28) JunkMan: Sacrifice Y2 Kite
Discover G3 Eden Y3 Frogger
Move G3 Frogger Cobalt

29) cobalt: Build G2 Cobalt

30) JunkMan: Trade G3 B3 Cobalt

31) cobalt: Sacrifice G2 Cobalt
Build Y2 Junkman
Build Y3 Cobalt

32) JunkMan: Sacrifice R3 Junkman
Attack R1N Cobalt
Attack Y3N Cobalt
Attack G1N Cobalt

33) cobalt: Trade Y2 B2 Cobalt

34) JunkMan: Trade B3 R3 Cobalt

	cobalt: drat
	SYSTEM: cobalt resigns.


1065)
Started: 2005.10.23, Ended: 2005.10.27
Participants: TwoShort (S), tendrecube (N)
Winner: TwoShort

1) tendrecube: Homeworld G3 B2 Y3

2) TwoShort: Homeworld B2 Y1 G3

3) tendrecube: Build Y1 Tendrecube

4) TwoShort: Build G1 Twoshort

5) tendrecube: Trade Y1 B1 Tendrecube

6) TwoShort: Build G1 Twoshort

7) tendrecube: Discover B1 Tendrecube Y1 Alias

8) TwoShort: Discover G1 Twoshort Y3 Jed

9) tendrecube: Build Y1 Tendrecube

10) TwoShort: Build G1 Twoshort

11) tendrecube: Trade Y3 R3 Tendrecube

12) TwoShort: Discover G1 Twoshort Y3 Jethro

13) tendrecube: Build Y2 Tendrecube

14) TwoShort: Build G2 Twoshort

15) tendrecube: Build Y2 Tendrecube

16) TwoShort: Discover G2 Twoshort B3 Bluestar

17) tendrecube: Sacrifice Y2 Tendrecube
Move R3 Tendrecube Alias
Move R3 Alias Bluestar

18) TwoShort: Trade G1 R1 Twoshort

19) tendrecube: Attack G2 Bluestar

20) TwoShort: Build G1 Twoshort

21) tendrecube: Sacrifice Y1 Tendrecube
Move R3 Bluestar Twoshort

22) TwoShort: Attack R3N Twoshort

23) tendrecube: Build G2 Bluestar
	tendrecube: uh?
I think i missed a rules out there
Was dreaming you wopuldn't be able to overtake it cause of its size....damn

24) TwoShort: Discover G1 Jed Y1 Stepstone
	TwoShort: It's the size of my largest ship in the suystem that matters, not the size of the red.

25) tendrecube: Build Y2 Tendrecube
	tendrecube: Yup..I went readin the rules again..
Not easy to handle at first this game...

26) TwoShort: Sacrifice G3 Twoshort
Build G2 Jethro
Build G3 Stepstone
Build G3 Twoshort

27) tendrecube: Trade Y2 R2 Tendrecube

28) TwoShort: Move G3 Stepstone Tendrecube
	tendrecube: well looks like an ending for me :-(

29) tendrecube: Sacrifice Y2 Tendrecube
Move G2 Bluestar Twoshort
Move G2 Bluestar Twoshort
Catastrophe Twoshort G
	TwoShort: Yeah, losing your three point early is pretty much unrecoverable.

30) TwoShort: Sacrifice R1 Twoshort
Attack R2N Tendrecube
	tendrecube: Well we'll give it a try ;-)
	TwoShort: Um, I'm fairly sure it's irrecoverable...



1019)
Started: 2005.10.23, Ended: 2005.10.23
Participants: JunkMan (S), tendrecube (N)
Winner: JunkMan

1) tendrecube: Homeworld G3 B1 Y3

2) JunkMan: Homeworld B2 G1 Y3

3) tendrecube: Build Y1 Tendrecube

4) JunkMan: Build Y1 Junkman

5) tendrecube: Discover Y1 Tendrecube B2 Alias

6) JunkMan: Trade Y1 G1 Junkman

7) tendrecube: Build Y1 Tendrecube

8) JunkMan: Build Y1 Junkman

9) tendrecube: Build Y2 Tendrecube

10) JunkMan: Sacrifice Y3 Junkman
Discover Y1 Junkman B3 Skinny
Discover Y1 Skinny B2 Edward
Move Y1 Edward Tendrecube
Catastrophe Tendrecube Yellow



1095)
Started: 2005.10.24, Ended: 2005.10.25
Participants: MatrixFrog (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld G1 B2 Y3

2) MatrixFrog: Homeworld G2 B3 Y3

3) TwoShort: Build Y1 Twoshort

4) MatrixFrog: Build Y1 Matrixfrog

5) TwoShort: Build Y1 Twoshort

6) MatrixFrog: Build Y2 Matrixfrog

7) TwoShort: Sacrifice Y3 Twoshort
Discover Y1 Twoshort R3 Hello
Discover Y1 Hello R1 Goodbye
Move Y1 Goodbye Matrixfrog
Catastrophe Matrixfrog Yellow
	TwoShort: Hmm, winning on an "oops" is unsatisfying.  But I can't bring myself to not do it.  Play again?



1044)
Started: 2005.10.24, Ended: 2005.11.27
Participants: cobalt (S), Busch (W), JunkMan (N), GregF (E)
Winner: JunkMan

1) JunkMan: Homeworld B1 G2 Y3

2) GregF: Homeworld B3 Y1 G3

3) cobalt: Homeworld B1 G2 Y3
	GregF: Hello.

4) Busch: Homeworld G3 B2 Y3
	Busch: Hi. Good luck everyone

5) JunkMan: Build Y1 Junkman

6) GregF: Build G1 Gregf

7) cobalt: Build Y1 Cobalt

8) Busch: Build Y1 Busch
	Busch: Errr. Where can I see my alignment?

9) JunkMan: Trade Y1 G1 Junkman

10) GregF: Trade G1 Y1 Gregf
	GregF: There is no alignment; the last player remaining wins.

11) cobalt: Build Y1 Cobalt
	Busch: Ah. I just read the rules on the Looney Labs site. I hadn't realized this was a variant.

12) Busch: Build Y2 Busch

13) JunkMan: Build Y2 Junkman

14) GregF: Build Y2 Gregf

15) cobalt: Trade Y1 G1 Cobalt
	cobalt: dang, I suddenly wish this was left-man-down
	cobalt: dang, I suddenly wish this was left-man-down

16) Busch: Trade Y2 G2 Busch
	Busch: Why?

17) JunkMan: Trade Y2 R2 Junkman

18) GregF: Trade Y2 R2 Gregf

19) cobalt: Trade Y1 R1 Cobalt
	cobalt: because you're to my left, and I could have eliminated you last turn.

20) Busch: Build G1 Busch

21) JunkMan: Build Y1 Junkman
	Busch: I obviously still have a lot to learn about this game

22) GregF: Build G1 Gregf

23) cobalt: Build Y1 Cobalt

24) Busch: Build Y2 Busch

25) JunkMan: Trade Y1 B1 Junkman

26) GregF: Trade G1 B1 Gregf

27) cobalt: Build R1 Cobalt

28) Busch: Trade G2 R2 Busch

29) JunkMan: Build R1 Junkman

30) GregF: Trade R2 Y2 Gregf

31) cobalt: Discover Y3 Cobalt G3 Duck

32) Busch: Discover Y2 Busch G1 Sirius

33) JunkMan: Build Y1 Junkman

34) GregF: Discover Y2 Gregf Y2 Vega

35) cobalt: Build Y2 Cobalt
	GregF: All right, I've pretty much decided that I have no idea what I'm doing in this game.

36) Busch: Trade Y3 R3 Busch

37) JunkMan: Discover Y1 Junkman G3 Phi

38) GregF: Build G1 Gregf

39) cobalt: Sacrifice Y2 Cobalt
Discover Y3 Duck Y2 Goose
Move Y3 Goose Gregf

40) Busch: Build G2 Busch

41) JunkMan: Build Y2 Phi

42) GregF: Discover Y1 Gregf R2 Trial
	GregF: I'm very tempted to just blow myself up and get it over with.

43) cobalt: Sacrifice R1 Cobalt
Attack G3E Gregf

44) Busch: Move G2 Busch Sirius

45) JunkMan: Move Y1 Phi Junkman

46) GregF: Move Y2 Vega Gregf
	GregF: Hm, I was under the impression that you could only attack a piece smaller than the attacking piece. This really isn't worth fighting.
	GregF: Oh, right, you can't kill yourself.

47) cobalt: Sacrifice G3 Gregf
Build Y2 Gregf
Build Y2 Gregf
Build Y3 Cobalt

48) Busch: Build Y3 Sirius

49) JunkMan: Build Y3 Phi
Catastrophe Gregf Yellow

50) GregF: Build G2 Gregf

51) cobalt: Move Y1 Cobalt Phi

52) Busch: Move Y2 Sirius Phi
	cobalt: Busch might consider it to his advantage to move a yellow ship into the Phi system and trigger a catastrophe.

53) JunkMan: Move Y3 Phi Trial
	Busch: Arghhh. I forgot to type in the most important part of my orders and there is no undo.

54) GregF: Trade G2 Y2 Gregf

55) cobalt: Discover G1 Cobalt Y3 Pocket
	GregF: Am I just going to be all but ignored now because I have basically no chance at winning?

56) Busch: Move R3 Busch Sirius

57) JunkMan: Discover Y3 Trial R1 Sol

58) GregF: Build G2 Gregf

59) cobalt: Build G2 Pocket
	cobalt: Maybe, but I for one wouldn't rule out your capability to cause havoc, especially since now your system is only one movement away from both mine and JunkMan's homeworlds

60) Busch: Move R3 Sirius Phi

61) JunkMan: Sacrifice B1 Junkman
Trade Y3 G3 Sol

62) GregF: Sacrifice G2 Gregf
Build Y1 Trial
Build Y2 Gregf

63) cobalt: Sacrifice G2 Pocket
Build Y2 Phi
Build Y3 Cobalt
Catastrophe Phi Y

64) Busch: Move G2 Sirius Pocket

65) JunkMan: Build G2 Sol

66) GregF: Discover Y2 Gregf Y2 Vesta

67) JunkMan: Discover Y1 Junkman G3 Beta
	GregF: I guess calling a yellow star Vesta kind of defeats the purpose.

68) GregF: Build G2 Gregf
	SYSTEM: cobalt resigns.

69) Busch: Move Y3 Sirius Phi

70) JunkMan: Sacrifice Y1 Beta
Move G2 Sol Gregf

71) GregF: Trade G2 R2 Gregf

72) Busch: Move R3 Phi Vesta

73) JunkMan: Sacrifice R1 Junkman
Attack R2E Gregf

74) GregF: Build Y1 Gregf

75) Busch: Attack Y2E Vesta
	GregF: Is there really I can do to defend myself in this scenario?

76) JunkMan: Attack Y2E Gregf

77) GregF: Move Y1 Trial Gregf
	Busch: It lokks quite unlikely now

78) Busch: Sacrifice Y2 Vesta
Move R3 Vesta Pocket
Move R3 Pocket Junkman
	GregF: What could I have done better/differently?

79) JunkMan: Attack R3W Junkman

80) GregF: Move Y1 Trial Gregf
Catastrophe Gregf Y
	Busch: This is my first game ... I have no idea

81) Busch: Discover Y3 Phi B1 Espresso

82) JunkMan: Move R3 Junkman Pocket

83) GregF: Sacrifice B1 Gregf
Trade G1 R1 Gregf

84) Busch: Move G2 Pocket Cobalt

85) JunkMan: Move R3 Pocket Cobalt

86) GregF: Trade R1 G1 Gregf

87) Busch: Trade G2 Y2 Cobalt

88) JunkMan: Attack Y2W Cobalt

89) GregF: Build G1 Gregf

90) Busch: Move Y3 Espresso Busch

91) JunkMan: Build G2 Gregf
Catastrophe Gregf Green

92) Busch: Trade Y3 R3 Busch

93) JunkMan: Attack Y3S Cobalt

94) Busch: Build G1 Busch

95) JunkMan: Sacrifice Y2 Cobalt
Move R2 Gregf Sol
Move G3 Sol Busch
Catastrophe Busch Green

96) Busch: Move R2 Busch Pocket

97) JunkMan: Attack Y3S Cobalt

98) Busch: Attack G1S Pocket

99) JunkMan: Build Y1 Junkman
	Busch: Have I got any chance here or should I just concede?

	SYSTEM: Busch resigns.


1091)
Started: 2005.10.24, Ended: 2005.10.27
Participants: JunkMan (S), Bartholow (N)
Winner: JunkMan

1) Bartholow: Homeworld B1 G3 R3

2) JunkMan: Homeworld G1 B2 Y3

3) Bartholow: Build R1 Bartholow
	Bartholow: yep I sure do suck

4) JunkMan: Build Y1 Junkman

5) Bartholow: Trade R1 Y1 Bartholow

6) JunkMan: Build Y1 Junkman

7) Bartholow: Discover Y1 Bartholow R2 Nonemoreblack

8) JunkMan: Trade Y1 R1 Junkman

9) Bartholow: Discover Y1 Nonemoreblack G1 Propagandhi

10) JunkMan: Trade Y1 G1 Junkman

11) Bartholow: Build Y1 Propagandhi

12) JunkMan: Build G2 Junkman

13) Bartholow: Build R1 Bartholow

14) JunkMan: Trade G1 B1 Junkman

15) Bartholow: Build R1 Bartholow

16) JunkMan: Sacrifice Y3 Junkman
Discover R1 Junkman B3 Lampshade
Discover R1 Lampshade B2 Pluto
Move R1 Pluto Bartholow
Catastrophe Bartholow Red



1097)
Started: 2005.10.25, Ended: 2005.10.29
Participants: TwoShort (S), MatrixFrog (N)
Winner: TwoShort

1) MatrixFrog: Homeworld G1 B2 Y3

2) TwoShort: Homeworld Y1 B3 G3

3) MatrixFrog: Build Y1 Matrixfrog

4) TwoShort: Build G1 Twoshort

5) MatrixFrog: Trade Y1 G1 Matrixfrog

6) TwoShort: Build G2 Twoshort

7) MatrixFrog: Build G2 Matrixfrog

8) TwoShort: Discover G1 Twoshort Y2 Yolonda

9) MatrixFrog: Sacrifice G2 Matrixfrog
Build Y1 Matrixfrog
Build G2 Matrixfrog

10) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Yolonda
Build G3 Twoshort

11) MatrixFrog: Sacrifice Y3 Matrixfrog
Discover G1 Matrixfrog R3 Xx
Move G1 Xx Yolonda
Discover Y1 Matrixfrog G3 Blanket

12) TwoShort: Catastrophe Yolonda Green
Build G1 Twoshort
	MatrixFrog: Damn! I hate when that happens. I obviously missed a line...

13) MatrixFrog: Build G1 Matrixfrog
	TwoShort: Ha! I thought that bug might be there; thanks for the chance to test it :) 
	TwoShort: Which is to say, I should not have been able to grow that green; but in this case the bug lets me fix your mistake, and make the move I would have anyway.
	MatrixFrog: Ah, very nice. Thank you.

14) TwoShort: Discover G2 Twoshort Y2 Yoyo

15) MatrixFrog: Build Y1 Blanket

16) TwoShort: Sacrifice G3 Twoshort
Build G2 Yoyo
Build G3 Twoshort
Build G3 Yoyo

17) MatrixFrog: Trade G2 Y2 Matrixfrog

18) TwoShort: Discover G3 Yoyo Y3 Yolonda

19) MatrixFrog: Trade G1 R1 Matrixfrog

20) TwoShort: Move G3 Yolonda Matrixfrog

21) MatrixFrog: Build Y2 Matrixfrog

22) TwoShort: Trade G3 R3 Twoshort

23) MatrixFrog: Build Y3 Matrixfrog

24) TwoShort: Sacrifice R3 Twoshort
Attack Y3 Matrixfrog
Attack R1 Matrixfrog
Attack Y2 Matrixfrog

25) MatrixFrog: Trade Y2 G2 Matrixfrog
	MatrixFrog: Um. Okay then. Good game.

26) TwoShort: Attack G2N Matrixfrog
	TwoShort: Good game




1100)
Started: 2005.10.25, Ended: 2005.11.20
Participants: andylooney (S), tendrecube (N)
Winner: andylooney

1) tendrecube: Homeworld G3 B1 Y3

2) andylooney: Homeworld B1 G2 Y3
	tendrecube: Hello Andy...Not so far of some places you like on this planet....Brussels here...


3) tendrecube: Build Y1 Tendrecube

4) andylooney: Build Y1 Andylooney

5) tendrecube: Trade Y1 G1 Tendrecube

6) andylooney: Trade Y1 G1 Andylooney

7) tendrecube: Build Y1 Tendrecube

8) andylooney: Discover G1 Andylooney Y3 Clampett

9) tendrecube: Discover Y1 Tendrecube G2 Alias

10) andylooney: Build Y1 Andylooney

11) tendrecube: Discover Y1 Alias G3 Mythril

12) andylooney: Discover Y1 Andylooney G3 Garden

13) tendrecube: Discover G1 Tendrecube Y2 Atomium

14) andylooney: Build Y1 Andylooney
	andylooney: great system name! I made a point of visiting the Atomium when I was in Europe in 2003!

15) tendrecube: Build Y2 Mythril

16) andylooney: Build Y2 Garden
	tendrecube: part of the strategy..lol
catch your eye with great system name to blind you 
;-)

17) tendrecube: Move G1 Atomium Tendrecube

18) andylooney: Trade Y1 R1 Andylooney

19) tendrecube: Build G1 Tendrecube

20) andylooney: Build G2 Clampett
	tendrecube: ooops i don't think that was a good idea

21) tendrecube: Trade G1 R1 Tendrecube

22) andylooney: Discover Y1 Garden G2 Oasis

23) tendrecube: Discover G1 Tendrecube B2 Atomium

24) andylooney: Discover G1 Clampett Y2 Plugh

25) tendrecube: Build G1 Atomium

26) andylooney: Build Y1 Garden

27) tendrecube: Discover Y2 Mythril B2 Alias

28) andylooney: Sacrifice G2 Clampett
Build G2 Plugh
Build Y3 Oasis

29) tendrecube: Trade Y2 R2 Alias

30) andylooney: Build Y2 Andylooney
	tendrecube: sorryu for the delay....
Was in paris for a few days
	andylooney: Paris, eh? Sounds like you were there at an "interesting" time!

31) tendrecube: Build R1 Tendrecube

32) andylooney: Build R2 Andylooney

33) tendrecube: Move R1 Tendrecube Oasis

34) andylooney: Sacrifice R1 Andylooney
Attack R1N Oasis

35) tendrecube: Sacrifice Y3 Tendrecube
Move R2 Alias Mythril
Move R2 Mythril Andylooney
Move Y1 Mythril Andylooney

36) andylooney: Trade Y3 G3 Andylooney

37) tendrecube: Build Y3 Andylooney

38) andylooney: Sacrifice Y2 Garden
Move Y1 Garden Andylooney
Move Y3 Oasis Tendrecube
Catastrophe Andylooney Yellow

39) tendrecube: Trade R2 Y2 Andylooney

40) andylooney: Sacrifice R2 Andylooney
Attack Y2 Andylooney
Attack R1N Tendrecube
	andylooney: Thanks for the game!



1107)
Started: 2005.10.26, Ended: 2005.11.6
Participants: Jesse (S), TwoShort (N)
Winner: Jesse

1) TwoShort: Homeworld Y2 B1 G3
	Jesse: Aloha!  Ready for another go?

2) Jesse: Homeworld B3 Y1 G3

3) TwoShort: Build G1 Twoshort

4) Jesse: Build G1 Jesse
	TwoShort: Howdy...  I'm looking forward to playing you again.  

5) TwoShort: Discover G1 Twoshort Y3 Yak
	Jesse: Then by all means, let us play!

6) Jesse: Discover G1 Jesse B2 Ork

7) TwoShort: Build G1 Twoshort

8) Jesse: Build G2 Ork

9) TwoShort: Build G2 Yak

10) Jesse: Trade G1 Y1 Ork

11) TwoShort: Discover G1 Yak B2 Bluestar

12) Jesse: Build Y1 Ork

13) TwoShort: Build G1 Bluestar

14) Jesse: Build G2 Jesse

15) TwoShort: Build G3 Yak
	Jesse: I'm not exactly off to a great start, here...

16) Jesse: Move Y1 Ork Jesse

17) TwoShort: Discover G2 Yak Y2 Yolonda

18) Jesse: Sacrifice G3 Jesse
Build G3 Ork
Build Y2 Ork
Build Y3 Jesse

19) TwoShort: Trade G3 R3 Twoshort

20) Jesse: Trade Y3 R3 Jesse
	TwoShort: Well, I WAS off to a great start...

21) TwoShort: Sacrifice G3 Yak
Build G3 Twoshort
Build R1 Twoshort
Build G3 Yolonda

22) Jesse: Sacrifice G3 Ork
Build G3 Ork
Build Y3 Ork
Build R1 Jesse

23) TwoShort: Discover G3 Yolonda B3 Brother

24) Jesse: Sacrifice Y2 Ork
Discover Y3 Ork Y3 Mustard
Discover G3 Ork Y3 Snow

25) TwoShort: Trade G1 B1 Bluestar

26) Jesse: Build Y2 Ork

27) TwoShort: Sacrifice G3 Twoshort
Build G1 Bluestar
Build B1 Bluestar
Build G3 Twoshort

28) Jesse: Sacrifice G3 Snow
Build G3 Ork
Build Y3 Ork
Build R1 Jesse

29) TwoShort: Sacrifice B1 Bluestar
Trade G2 B2 Yolonda

30) Jesse: Sacrifice Y2 Ork
Discover Y3 Ork B3 Babe
Move R3 Jesse Yolonda

31) TwoShort: Move B2 Yolonda Brother

32) Jesse: Sacrifice G3 Ork
Build G2 Jesse
Build G3 Ork
Build Y2 Babe

33) TwoShort: Trade G1 B1 Twoshort

34) Jesse: Move Y2 Babe Bluestar
	TwoShort: Hmmm, I do beleive you have won.  Quite the frustrating way to be doomed.

35) TwoShort: Sacrifice B2 Brother
Trade R1 G1 Twoshort
Pass
	Jesse: It is really rough to be frozen out of yellow.

36) Jesse: Trade G2 B2 Jesse

37) TwoShort: Sacrifice B1 Bluestar
Trade G1 B1 Twoshort

38) Jesse: Sacrifice G3 Ork
Build G1 Jesse
Build G2 Ork
Build G3 Ork

39) TwoShort: Sacrifice G3 Brother
Build G3 Twoshort
Build B3 Twoshort
Build R1 Twoshort
Catastrophe Twoshort Blue
	TwoShort: Well, it's probably a bad idea, but at least it's an idea...

40) Jesse: Move Y1 Ork Babe
	Jesse: Huh.  Actually, I was thinking about that possibility for you the other day, but not just now.  Now, let's see...

	Jesse: Yeah, it's no good.  You can't stop me from blasting you next turn.  Thanks for a good game!  You've been very creative under the pressure of lockdown.
	SYSTEM: TwoShort resigns.


1118)
Started: 2005.10.27, Ended: 2005.11.3
Participants: Evilaxe (S), Kermit (N)
Winner: Evilaxe

1) Kermit: Homeworld B1 G2 Y3

2) Evilaxe: Homeworld B1 G3 Y3

3) Kermit: Build Y1 Kermit

4) Evilaxe: Build Y1 Evilaxe
	Evilaxe: build y1 evilaxe

5) Kermit: Trade Y1 G1 Kermit
	Evilaxe: D'oh

6) Evilaxe: Trade Y1 R1 Evilaxe

7) Kermit: Discover G1 Kermit B3 Fozzie

8) Evilaxe: Build Y1 Evilaxe

9) Kermit: Build G1 Fozzie

10) Evilaxe: Trade Y1 G1 Evilaxe
	Evilaxe: trade y1 g1 evilaxe
	Evilaxe: I am a moron

11) Kermit: Trade G1 Y1 Fozzie

12) Evilaxe: Discover G1 Evilaxe B2 Coffee

13) Kermit: Build Y1 Fozzie

14) Evilaxe: Build R1 Evilaxe

15) Kermit: Trade Y1 R1 Fozzie

16) Evilaxe: Trade R1 B1 Evilaxe

17) Kermit: Move R1 Fozzie Coffee

18) Evilaxe: Sacrifice R1 Evilaxe
Attack R1 Coffee

19) Kermit: Build Y1 Fozzie

20) Evilaxe: Build B2 Evilaxe

21) Kermit: Trade Y1 R1 Fozzie

22) Evilaxe: Discover B2 Evilaxe G2 New_wiltshire

23) Kermit: Discover G1 Fozzie Y1 Squeezel

24) Evilaxe: Build B2 New_wiltshire

25) Kermit: Build Y1 Kermit

26) Evilaxe: Build B3 New_wiltshire

27) Kermit: Move G1 Squeezel Fozzie

28) Evilaxe: Build B3 Evilaxe
	Evilaxe: b b3 evilaxe

29) Kermit: Trade Y1 G1 Kermit

30) Evilaxe: Trade B2 R2 New_wiltshire

31) Kermit: Trade Y3 R3 Kermit

32) Evilaxe: Trade B2 Y2 New_wiltshire

33) Kermit: Build G2 Kermit

34) Evilaxe: Build G3 Coffee

35) Kermit: Build G3 Fozzie

36) Evilaxe: Sacrifice Y2 New_wiltshire
Move G1 Coffee Fozzie
Move G1 Fozzie Kermit
Catastrophe Kermit G

	SYSTEM: Kermit resigns.


1129)
Started: 2005.10.27, Ended: 2005.11.3
Participants: sketchwick (S), jeep (N)
Winner: sketchwick

1) jeep: Homeworld G1 B2 Y3

2) sketchwick: Homeworld B3 Y1 G3

3) jeep: Build Y1 Jeep

4) sketchwick: Build G1 Sketchwick

5) jeep: Trade Y1 G1 Jeep

6) sketchwick: Trade G1 R1 Sketchwick

7) jeep: Build G1 Jeep

8) sketchwick: Build G2 Sketchwick

9) jeep: Discover G1 Jeep Y3 Submarine

10) sketchwick: Discover R1 Sketchwick Y2 Sandwich

11) jeep: Build G2 Jeep

12) sketchwick: Move R1 Sandwich Submarine

13) jeep: Discover G1 Submarine Y2 Sandwich

14) sketchwick: Trade G2 R2 Sketchwick

15) jeep: Trade G2 R2 Jeep

16) sketchwick: Move R1 Submarine Sandwich

17) jeep: Sacrifice G1 Sandwich
Build Y1 Jeep

18) sketchwick: Build R1 Sketchwick

19) jeep: Discover R2 Jeep B3 Spread

20) sketchwick: Move G3 Sketchwick Sandwich

21) jeep: Build Y1 Jeep
	sketchwick: this feels sketchy...

22) sketchwick: Move G3 Sandwich Spread

23) jeep: Sacrifice Y1 Jeep
Move R2 Spread Sandwich

24) sketchwick: Move R1 Sandwich Spread

25) jeep: Trade Y1 R1 Jeep

26) sketchwick: Trade R1 G1 Sketchwick

27) jeep: Build G2 Jeep

28) sketchwick: Build G2 Spread

29) jeep: Trade G2 Y2 Jeep

30) sketchwick: Trade G2 Y2 Spread

31) jeep: Discover Y2 Jeep G3 Eagle

32) sketchwick: Build G2 Spread

33) jeep: Build Y1 Eagle

34) sketchwick: Build G2 Sketchwick

35) jeep: Move Y2 Eagle Jeep

36) sketchwick: Discover G2 Sketchwick R2 Rock

37) jeep: Discover G1 Jeep G3 Solid

38) sketchwick: Build G2 Rock

39) jeep: Move R2 Sandwich Eagle

40) sketchwick: Sacrifice G3 Spread
Build G3 Spread
Build R1 Sketchwick
Build R3 Spread
	jeep: I feel like I'm at too much of a disadvantage now.  :(
	sketchwick: you are crazy I have no clue what I'm doing

41) jeep: Build R3 Eagle

42) sketchwick: Trade R1 B1 Sketchwick

43) jeep: Move R3 Eagle Rock

44) sketchwick: Move R1 Spread Rock

45) jeep: Sacrifice R2 Eagle
Attack G2 Rock
Attack G2 Rock

46) sketchwick: Move R3 Spread Rock
Catastrophe Rock Red

47) jeep: Trade Y2 G2 Jeep

48) sketchwick: Sacrifice G3 Spread
Build G2 Spread
Build G3 Sketchwick
Build R1 Sketchwick

49) jeep: Discover G2 Jeep Y3 Gold

50) sketchwick: Discover R2 Sketchwick Y2 Dancer

51) jeep: Build Y1 Jeep

52) sketchwick: Move R2 Dancer Solid

53) jeep: Sacrifice G1 Solid
Build G1 Gold

54) sketchwick: Build Y2 Spread

55) jeep: Trade Y1 B1 Jeep

56) sketchwick: Sacrifice G3 Sketchwick
Build G3 Sketchwick
Build Y1 Spread
Build R1 Solid

57) jeep: Sacrifice G2 Gold
Build Y2 Jeep
Build Y3 Eagle

58) sketchwick: Move Y2 Spread Jeep

59) jeep: Trade Y2 R2 Jeep

60) sketchwick: Sacrifice R2 Solid
Attack R1 Jeep
Attack R2 Jeep

61) jeep: Sacrifice B1 Jeep
Trade Y3 R3 Eagle

62) sketchwick: Sacrifice Y2 Jeep
Move R2 Jeep Spread
Discover R1 Jeep B3 Nugget

63) jeep: Build G2 Gold

64) sketchwick: Build R2 Solid

65) jeep: Build Y2 Jeep

66) sketchwick: Sacrifice G3 Sketchwick
Build R2 Sketchwick
Build R3 Nugget
Build R3 Spread

67) jeep: Sacrifice Y2 Jeep
Discover R3 Eagle Y2 Temp
Move R3 Temp Sketchwick

68) sketchwick: Move R3 Spread Jeep

69) jeep: Sacrifice R3 Sketchwick
Attack R3S Jeep
Pass
Pass

70) sketchwick: Sacrifice G2 Spread
Build G2 Sketchwick
Build G3 Spread

71) jeep: Discover G2 Gold Y2 Meats

72) sketchwick: Trade R3 Y3 Nugget

73) jeep: Sacrifice Y3 Jeep
Move G1 Gold Meats
Move G1 Meats Spread
Move G2 Meats Spread
Catastrophe Spread Green

74) sketchwick: Sacrifice Y3 Nugget
Move R1 Nugget Jeep
Move R1 Solid Jeep
Move R2 Solid Jeep
Catastrophe Jeep Red



1166)
Started: 2005.10.29, Ended: 2005.10.31
Participants: andylooney (S), gobleteer (N)
Winner: andylooney

1) gobleteer: Homeworld Y1 Y1 G3 *
	gobleteer: Hello.  It's an honor to meet you, Emperor.  This is my first homeworlds game, I hope you'll be patient I exceed time limits.

2) andylooney: Homeworld B1 G2 Y3
	andylooney: Greetings! Welcome to the game.

3) gobleteer: Build G1 Gobleteer
	gobleteer: Ah!  I have to already control a ship of the same color?

4) andylooney: Build Y1 Andylooney
	andylooney: Yup. You also need to read up on how to choose your homeworld. You should have chosen 2 different-colored differently-sized stars, not 2 that match. But it's OK, you're learning!

5) gobleteer: Discover G1 Gobleteer B2 Icecube

6) andylooney: Build Y2 Andylooney

7) gobleteer: Build G1 Gobleteer

8) andylooney: Discover Y1 Andylooney G3 Garden

9) gobleteer: Discover G1 Gobleteer Y3 Wild
	gobleteer: "andrewlooney is a garden of ice cubes."  Official quote.

10) andylooney: Build Y2 Garden

	gobleteer: I conceed.  Sorry for not finishing.  I intend to play some physical games before I proceed further.  Thank you for playing.
	SYSTEM: gobleteer resigns.


1137)
Started: 2005.10.30, Ended: 2005.11.3
Participants: Laurie_Menke (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld G2 Y1 B3
	Laurie_Menke: Hi, TwoShort.  I want to apologize in advance...this is my first game of Homeworlds and I don't have a clue what I'm doing!  If you'd rather not play with a newbie, let me know and I'll resign.  Otherwise, I'll do the best I can to keep you from being bored.  :o)  Thanks!

2) Laurie_Menke: Homeworld Y3 B2 G3
	TwoShort: No problem at all;  I'll even be happy to give you whatever tips occur to me, let me know if you'd rather I didn't....
	TwoShort: Tip #1: I'm experimanting by starting with a blue ship; I'd typically recommend Green or Yellow.  In any case, you initial system & ship should cover those three colors (you don't need red until later), and you should use a 3 point for your ship (always), and for one of the system markers (this time, because it's the size I did'nt use)
	Laurie_Menke: Great...thank you so much for your patience and any and all tips!

3) TwoShort: Build B1 Twoshort

4) Laurie_Menke: Build G1 Laurie_menke

5) TwoShort: Build B1 Twoshort

6) Laurie_Menke: Trade G3 R3 Laurie_menke

7) TwoShort: Discover B1 Twoshort Y3 Yellonia
	TwoShort: That's kind of an odd move; You don't really need Red defensively until I have red and can reach you, and you don't need it offensively until you can reach me.  But the early game goal is typically to get more pieces; frequently attempting to grab almost all of either green or yellow (or in theory, blue, as I'm trying forbut that's unusual.)

8) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Well, my thinking was that this would be my only chance for a while to get an R3, and that you would probably be coming over soon, so I took it.  Now I'm back to building, I think.  As I mentioned before, I have no clue what I'm doing.  But I'm a quick study...I'll lose horribly this game, but I'll gain a better understanding of what to do (or not do) next time.  :o)

9) TwoShort: Discover B1 Twoshort G3 Zilla

10) Laurie_Menke: Build G1 Laurie_menke

11) TwoShort: Build B1 Twoshort

12) Laurie_Menke: Trade G1 Y1 Laurie_menke

13) TwoShort: Build B2 Zilla

14) Laurie_Menke: Build G1 Laurie_menke

15) TwoShort: Build B2 Twoshort

16) Laurie_Menke: Build Y1 Laurie_menke

17) TwoShort: Trade B2 G2 Twoshort

18) Laurie_Menke: Build Y2 Laurie_menke

19) TwoShort: Sacrifice G2 Twoshort
Build B2 Yellonia
Build B3 Yellonia
Catastrophe Laurie_menke Yellow
	TwoShort: You didn't want to do that


20) Laurie_Menke: Trade G1 Y1 Laurie_menke
	Laurie_Menke: Argh!  I had been thinking about that problem with greens, but forgot to count my star system for yellows!  Grrrr....  ;o)

21) TwoShort: Trade B3 Y3 Yellonia

22) Laurie_Menke: Discover G1 Laurie_menke Y1 Why_not
	TwoShort: And that's game over... next turn I sacrifice my yellow to move three blues into your system and destroy it.  I'll be happy to play again though, if you're up for it.

23) TwoShort: Sacrifice Y3 Yellonia
Move B2 Yellonia Laurie_menke
Move B1 Yellonia Laurie_menke
Move B1 Zilla Laurie_menke
Catastrophe Laurie_menke Blue




1183)
Started: 2005.10.30, Ended: 2005.12.2
Participants: Laurie_Menke (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	Laurie_Menke: Hi, Andy...here I stand, a Lab Rabbit who doesn't know how to play Homeworlds, hoping you'll have pateince with her while she learns.  If you would rather, I can resign...I know you must be having to play a large number of newbies on SDG.  Just let me know which you would prefer.  Thanks!
	andylooney: Hi Laurie! I'm happy to play you! I love the game so much I don't mind playing newbies... in fact, I'm happy more people are learning this game! 

2) Laurie_Menke: Homeworld G3 Y1 B3

3) andylooney: Build Y1 Andylooney

4) Laurie_Menke: Build B1 Laurie_menke
	Laurie_Menke: Great!  That's very kind of you.  :o)  I'll do my best not to make TOO many stupid moves!  ;o)

5) andylooney: Build Y1 Andylooney

6) Laurie_Menke: Build B1 Laurie_menke

7) andylooney: Trade Y1 G1 Andylooney

8) Laurie_Menke: Trade B3 R3 Laurie_menke

9) andylooney: Trade Y1 R1 Andylooney

10) Laurie_Menke: Build B2 Laurie_menke

11) andylooney: Build Y1 Andylooney

12) Laurie_Menke: Build B2 Laurie_menke

13) andylooney: Discover G1 Andylooney Y3 Clampett
	andylooney: OK, I'm going to go easy on you because you're learning. You have 4 blue pieces in your homeworld. That means I could destroy them all just by typing "Catastrophe Laurie_Menke Blue". I won't this time, but I will next time...

14) Laurie_Menke: Trade B2 Y2 Laurie_menke
	Laurie_Menke: LOL...well, I'm consistent!  In the other game I'm playing simultaneously, I just lost all my yellows the same way.  Thanks for your kindness.  :o)

15) andylooney: Discover Y1 Andylooney G3 Garden

16) Laurie_Menke: Discover B2 Laurie_menke Y2 Miner49er

17) andylooney: Build R1 Andylooney

18) Laurie_Menke: Build Y1 Laurie_menke
	Laurie_Menke: So, Andy...what would be an appropriate goal for me right now in this game...if you don't mind saying?

19) andylooney: Build Y2 Andylooney

20) Laurie_Menke: Discover Y1 Laurie_menke G2 Growth

21) andylooney: Build Y3 Garden

22) Laurie_Menke: Build R1 Laurie_menke
	Laurie_Menke: LOL....well, a person can try, can't they?  Alright, I'll learn the hard way.  ;o)

23) andylooney: Discover R1 Andylooney G3 Paradise

24) Laurie_Menke: Discover R3 Laurie_menke G2 Reforestation

25) andylooney: Build R2 Andylooney
	andylooney: Your earlier request for advice was too vague for me to think of a reply to, but I'll give you a tip now: you should never leave your Homeworld undefended, i.e. without a Large ship there. We call this Starship Captain Rule #1.

26) Laurie_Menke: Move Y2 Laurie_menke Reforestation
	Laurie_Menke: OK...great!  Thank you!  :o)  I was concerned that I had little access to green and it was almost gone, but I could have used a different ship to discover the new system.  I'll correct that right away.  Thanks!

27) andylooney: Build R2 Paradise

28) Laurie_Menke: Move R3 Reforestation Laurie_menke

29) andylooney: Move Y2 Andylooney Paradise

30) Laurie_Menke: Trade B2 R2 Miner49er

31) andylooney: Trade R2 B2 Andylooney

32) Laurie_Menke: Move Y1 Growth Clampett

33) andylooney: Sacrifice R1 Paradise
Attack Y1S Clampett

34) Laurie_Menke: Move B1 Laurie_menke Reforestation

35) andylooney: Move B2 Andylooney Paradise

36) Laurie_Menke: Build B2 Laurie_menke
	Laurie_Menke: OK, I don't know if you'll tell me this or not, but I'm curious why you're building up your men on systems that are TWO moves away from my homeworld.  Why wouldn't you want to move in closer?

37) andylooney: Discover Y1 Clampett G2 Fantasyisland

38) Laurie_Menke: Move R1 Laurie_menke Fantasyisland
	andylooney: Well, a good attack route is built on a strong foundation.
	Laurie_Menke: OK...you're right...that makes sense.  BTW, I love your new system's name...now you've got me picturing Tattoo yelling, "De Plane, De Plane!!!"

39) andylooney: Sacrifice G1 Clampett
Build Y3 Paradise
	andylooney: well, since you like the system name so much, I'll let you have the place...

40) Laurie_Menke: Attack Y1 Fantasyisland

41) andylooney: Sacrifice Y2 Paradise
Move Y3 Paradise Fantasyisland
Move Y3 Garden Reforestation

42) Laurie_Menke: Sacrifice Y2 Reforestation
Move R1 Fantasyisland Garden
Move B1 Reforestation Garden
	Laurie_Menke: Uh-oh...this is not looking good...
	Laurie_Menke: Let's see...next turn you plan to sacrifice your b2 in order to turn those two invading y3's into r3's.  Then the following turn you'll start attacking my ships....
	Laurie_Menke: Well, I don't see any way to disable your b2 or otherwise prevent the attack, so the best I can do is minimize damage...so here goes my best shot.  :o/

43) andylooney: Sacrifice R2 Paradise
Attack R1S Garden
Attack B1S Garden

44) Laurie_Menke: Build B2 Laurie_menke
	Laurie_Menke: Argh!  Sometimes I am so stupid!  I keep forgetting about the red ships being sacrificed and used from far away!  All that and I still screwed up.  Grrr.....

45) andylooney: Build B3 Garden

46) Laurie_Menke: Move B2 Laurie_menke Miner49er

47) andylooney: Build B3 Paradise

48) Laurie_Menke: Build B3 Laurie_menke

49) andylooney: Sacrifice Y3 Fantasyisland
Move B1 Garden Fantasyisland
Move B1 Fantasyisland Laurie_menke
Move B3 Paradise Miner49er
Catastrophe Laurie_menke Blue

50) Laurie_Menke: Build R1 Laurie_menke
	Laurie_Menke: Ouch.

51) andylooney: Sacrifice R1 Andylooney
Attack R2S Miner49er

52) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack R2 Miner49er

53) andylooney: Sacrifice R1 Garden
Attack R2S Miner49er

54) Laurie_Menke: Move B2 Miner49er Laurie_menke

55) andylooney: Sacrifice B2 Paradise
Trade B3 R3 Garden
Trade B3 G3 Miner49er

56) Laurie_Menke: Build Y2 Fantasyisland

57) andylooney: Build Y2 Andylooney

58) Laurie_Menke: Move Y2 Fantasyisland Laurie_menke

59) andylooney: Build Y3 Reforestation

60) Laurie_Menke: Trade Y2 R2 Laurie_menke
	Laurie_Menke: Darn you!  I knew you were going to do that, but I was HOPING for one more 3-sized ship!  Well, I know I'm licked, but I enjoy playing games out.  Do you mind?

61) andylooney: Sacrifice Y3 Reforestation
Move R3 Garden Fantasyisland
Move R3 Fantasyisland Laurie_menke
Move R2 Miner49er Laurie_menke
Catastrophe Laurie_menke Red
	andylooney: not at all... I prefer playing them out! You never know what end-game mistake I might make...

62) Laurie_Menke: Move Y1 Fantasyisland Laurie_menke
	Laurie_Menke: Well, I highly doubt that!

63) andylooney: Trade Y3 R3 Andylooney

64) Laurie_Menke: Build B1 Laurie_menke

65) andylooney: Move Y3 Reforestation Laurie_menke

66) Laurie_Menke: Trade Y1 R1 Laurie_menke

67) andylooney: Sacrifice R3 Andylooney
Attack B1S Laurie_menke
Attack B2S Laurie_menke
Attack R1S Laurie_menke



1184)
Variants: "Sinister"
Started: 2005.10.30, Ended: 2006.9.4
Participants: andylooney (S), TwoShort (W), JunkMan (N), MightyJack (E)
Winner: andylooney

1) JunkMan: Homeworld G1 B2 Y3

2) MightyJack: Homeworld G3 Y2 B3

3) andylooney: Homeworld B1 G2 Y3

4) TwoShort: Homeworld B3 Y2 G3

5) JunkMan: Build Y1 Junkman

6) MightyJack: Build B1 Mightyjack

7) andylooney: Build Y1 Andylooney

8) TwoShort: Build G1 Twoshort

9) JunkMan: Trade Y1 G1 Junkman

10) MightyJack: Trade B1 G1 Mightyjack

11) andylooney: Trade Y1 G1 Andylooney

12) TwoShort: Build G2 Twoshort
	TwoShort: construct g2 twoshort

13) JunkMan: Build Y1 Junkman

14) MightyJack: Build B1 Mightyjack

15) andylooney: Build G2 Andylooney

16) TwoShort: Trade G2 Y2 Twoshort

17) JunkMan: Trade Y1 R1 Junkman

18) MightyJack: Trade B1 R1 Mightyjack

19) andylooney: Trade G1 R1 Andylooney

20) TwoShort: Trade Y2 R2 Twoshort

21) JunkMan: Discover G1 Junkman Y3 Andromeda

22) MightyJack: Discover G1 Mightyjack Y1 Wolf359

23) andylooney: Discover G2 Andylooney Y3 Clampett

24) TwoShort: Discover G1 Twoshort Y1 Yak

25) JunkMan: Build R1 Junkman

26) MightyJack: Build B1 Mightyjack

27) andylooney: Build Y1 Andylooney

28) TwoShort: Build G1 Twoshort

29) JunkMan: Build G2 Andromeda

30) MightyJack: Build G2 Wolf359

31) andylooney: Discover Y1 Andylooney G3 Garden

32) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Yak

33) JunkMan: Sacrifice G1 Andromeda
Build Y1 Junkman

34) MightyJack: Sacrifice B1 Mightyjack
Trade G2 R2 Wolf359

35) andylooney: Build G1 Clampett

36) TwoShort: Discover G2 Twoshort B1 Bluestar

37) JunkMan: Move R1 Junkman Andromeda

38) MightyJack: Build G2 Wolf359

39) andylooney: Trade Y3 G3 Andylooney
	MightyJack: Does anyone here have a problem with me taking back my last move and making a different one before Andy takes his next turn?
	andylooney: it's ok with me...

40) TwoShort: Move G3 Yak Clampett
	MightyJack: Thanks Andy, thanks Aaron!

41) JunkMan: Discover G2 Andromeda Y1 Helloworld

42) MightyJack: Move G1 Wolf359 Clampett
Catastrophe Clampett Green

43) andylooney: Build Y2 Garden

44) TwoShort: Build G1 Bluestar

45) JunkMan: Trade Y3 G3 Junkman

46) MightyJack: Build B1 Mightyjack

47) andylooney: Build G1 Andylooney

48) TwoShort: Trade G2 Y2 Bluestar
	MightyJack: Sorry for the delay, guys... was in the hospital for a week with pancreatitis.  Better now.
	andylooney: Again, sorry you were ill, and we're glad your ok!


49) JunkMan: Build G2 Helloworld

50) MightyJack: Build G2 Wolf359

51) andylooney: Sacrifice Y1 Garden
Discover G1 Andylooney Y3 Lovey

52) TwoShort: Discover G1 Yak Y3 Yolonda

53) JunkMan: Build R1 Junkman

54) MightyJack: Build R2 Wolf359

55) andylooney: Build R2 Andylooney

56) TwoShort: Move G1 Yolonda Junkman

57) JunkMan: Trade R1 B1 Junkman

58) MightyJack: Move G2 Wolf359 Lovey

59) andylooney: Discover G1 Lovey Y1 Different

60) TwoShort: Sacrifice G1 Bluestar
Build G1 Junkman
Catastrophe Junkman Green
	MightyJack: Okay, this is the second time that I've made a stupid move that I want to retract.  Since this is the second time, I'll understand completely if y'all won't allow Aaron to do an undo on my behalf, but I do see a far better move for me if it's okay with you to take back my mistake.
	andylooney: It's fine with me. In fact, I think there ought to be an Undo button so you can always take back a move if you see immediately that it was a mistake (which you sometimes don't see until after the move is implemented.) I've actually already lost one game here because I didn't see that I was vulnerable until just after clicking Submit Orders.
	Aaron: Undo complete.  I will get the Undo functionality implemented asap.  Have fun!
	MightyJack: Thanks Andy, thanks Aaron... looking forward to that Undo button!

61) JunkMan: Discover B1 Junkman Y1 Alpha

62) MightyJack: Move R2 Wolf359 Junkman

63) andylooney: Trade G3 Y3 Andylooney

64) TwoShort: Build R1 Twoshort

65) JunkMan: Trade R1 G1 Junkman

66) MightyJack: Attack Y1N Junkman

67) andylooney: Trade R1 B1 Andylooney

68) TwoShort: Move G1 Twoshort Bluestar
	TwoShort: Hey all- Just a warning that I'll be travelling for the next couple weeks, and may or may not manage to make moves with any promptness.

69) JunkMan: Move G2 Helloworld Junkman
	andylooney: no problem... Happy Holidays to all!

70) MightyJack: Attack G2N Junkman

71) andylooney: Build B2 Andylooney

72) TwoShort: Sacrifice Y2 Bluestar
Move G3 Twoshort Wolf359
Move G3 Wolf359 Junkman

73) JunkMan: Move B1 Alpha Mightyjack

74) MightyJack: Trade Y1 G1 Junkman
Catastrophe Junkman Green

75) andylooney: Discover B1 Andylooney Y3 Thurston
	JunkMan: Well, I'm dead.

76) TwoShort: Build G1 Bluestar

77) MightyJack: Trade B1 R1 Mightyjack
	MightyJack: Yup.  'Fraid so.
	TwoShort: I'm confused.  Shouldn't I have just won?  Alternatively, assuming I misunderstood the end condition shouldn't it be Andy's turn?
	andylooney: TwoShort was not the player who eliminated the player to TwoShort's left. Thus, the game continues. TwoShort's new enemy MightyJack. But it does seem like it should be my turn next...
	MightyJack: I'm guessing that eliminating one of the players screwed up the computer's idea of whose turn came next...
	Aaron: *sighs* no matter what I do it screws up.  OK.  I am going to sit down and tackle this problem right now until it's fixed.  This is most annoying and I apologize.  I am resetting the current player now and tearing apart the code.

78) andylooney: Move R2 Andylooney Andromeda

79) TwoShort: Trade G1 Y1 Bluestar

80) MightyJack: Move G2 Lovey Helloworld
	MightyJack: Sorry for the delay folks... not sure why, but I've been unable to connect to SuperDuperGames from just before New Year's until just now.  Looks like Aaron fixed that problem.

81) andylooney: Attack R1N Andromeda

82) TwoShort: Move G1 Bluestar Twoshort

83) MightyJack: Sacrifice R1 Mightyjack
Attack G2N Helloworld

84) andylooney: Move R1 Andromeda Different

85) TwoShort: Build G1 Twoshort

86) MightyJack: Move R2 Wolf359 Thurston

87) andylooney: Build R1 Different

88) TwoShort: Move G1 Twoshort Bluestar

89) MightyJack: Move R2 Thurston Wolf359

90) andylooney: Move R2 Andromeda Bluestar

91) TwoShort: Move G1 Bluestar Thurston

92) MightyJack: Move G2 Helloworld Thurston

93) andylooney: Attack Y1W Bluestar

94) TwoShort: Build G1 Twoshort

95) MightyJack: Move G2 Thurston Different

96) andylooney: Sacrifice Y2 Garden
Move R1 Different Twoshort
Move R1 Different Twoshort
Catastrophe Twoshort Red

97) TwoShort: Trade G1 R1 Twoshort

98) MightyJack: Move R2 Wolf359 Twoshort

99) andylooney: Discover B1 Thurston G1 Gumby

100) TwoShort: Build G1 Twoshort

101) MightyJack: Sacrifice R2 Junkman
Attack G1S Different
Attack R1W Twoshort

102) andylooney: Build B1 Gumby

103) TwoShort: Build G2 Twoshort

104) MightyJack: Build G3 Wolf359

105) andylooney: Move R2 Bluestar Thurston

106) TwoShort: Trade G1 R1 Twoshort

107) MightyJack: Sacrifice R1 Twoshort
Attack G2W Twoshort

108) andylooney: Attack G1W Thurston

109) TwoShort: Build G1 Twoshort

110) MightyJack: Build G3 Helloworld

111) andylooney: Build G3 Thurston

112) TwoShort: Trade G1 Y1 Twoshort

113) MightyJack: Move R2 Twoshort Gumby

114) andylooney: Build Y2 Andylooney

115) TwoShort: Build Y2 Twoshort

116) MightyJack: Trade B3 R3 Mightyjack

117) andylooney: Move Y1 Bluestar Twoshort
Catastrophe Twoshort Yellow

118) TwoShort: Build R1 Twoshort

119) MightyJack: Attack B1S Gumby
	andylooney: Greetings! I'm very sorry to have been so slow in taking this turn! It's been a tough choice and I've been too busy to focus...

120) andylooney: Move B2 Andylooney Thurston

121) TwoShort: Trade R1 Y1 Twoshort

122) MightyJack: Attack B1S Gumby

123) andylooney: Build B1 Thurston

124) TwoShort: Discover R1 Twoshort G1 Bigcomeback

125) MightyJack: Sacrifice R2 Gumby
Attack Y1W Twoshort
Attack G1W Twoshort

126) andylooney: Discover Y2 Andylooney G3 Jolly

127) MightyJack: Attack B1N Mightyjack

128) andylooney: Sacrifice G3 Thurston
Build G3 Thurston
Build Y1 Jolly
Build Y2 Andylooney

129) andylooney: Sacrifice Y2 Andylooney
Move B1 Thurston Helloworld
Move B1 Helloworld Twoshort



1144)
Started: 2005.11.1, Ended: 2006.2.2
Participants: lambda (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld G2 B1 Y3

2) lambda: Homeworld Y3 B2 G3
	Jesse: On the small, blue-green world of Jesse, the peaceful Jesseans prepare to embark on a grand journey of exploration.  Are they alone in the universe?  Only time, and a giant radio telescope, will tell.

3) Jesse: Build Y1 Jesse
	lambda: The Lambdites are a peaceable people of traders. Having discovered a hyperspace portal right in their system, they decide to start building a fleet of ships to send into the great beyond. Who know what sorts of alien races they'll find, and what amazing technologies they'll gain in trade?

4) lambda: Build G1 Lambda
	Jesse: Well, now this is really quite astonishing!  Jessean scientists have discovered a primitive radio signal from an alien civilization only a few thousand light years away.  It is entirely possible that they are now at a comparable level of technology to our own.  Debate has begun as to whether we should initiate contact with them.

5) Jesse: Discover Y1 Jesse G3 Sekhar
	lambda: The United Council of Merchants, the governing body of the Lambdites, opens a new market for speculation on what will be found as the galaxy is explored. Shares in "little green things from outer space" hit 100Y, while "buxom space blondes" are down at 1.34Y. A few enterprising engineers begin building sensor networks to try and scan the stars, in order to give them a better edge at playing the market.

6) lambda: Discover G1 Lambda B1 Arrakis
	Jesse: Following recent advances in hyperdrive technology, it is now possible to send an exploratory probe on a deep space mission to learn more about these mysterious Lambdites.  It is possible we may even be able to make contact within our lifetime!  Quantum entanglement communications from the probe indicate that Lambdite civilization did indeed survive the crucial nuclear-industrial period of development, with some fascinating technologies appropriate to their planet's climate.  Furthermore, the probe has discovered a colonizable planet rich in resources.  A research and production facility is now being built on planet Sekhar, name after the inventor of the hyperdrive that made its colonization possible.
	Jesse: Even with hyperdrive, space travel is still a long, slow process.  As the years pass, the Jessean population grows restless and discontented with the current administration's lackadaisical attitude toward the colonization of space.

7) Jesse: Build Y1 Jesse
	lambda: [my apologies for taking so long; I got busy with school and burnt out on Homeworlds at the same time]
The Radio Corporation of Atlantia ends up being the first to discover a signal from an extra-Lambestial life form. The folks running the futures market are stumped as to what to do, as they haven't issued any shares in Jesseans. They finally decide that Jesseans fall under the category of "lumpy, hairy things", solving that problem neatly. The UCM decides to begin colonization of the galaxy, in order to make contact with the Jesseans and bilk them for all they're worth... er, we mean trade with them for everyone's mutual benefit! In that vein, they send one of their ships out, to form a small trading colony. 
	Jesse: [I understand.  I'm glad you came back.  I'll be back to this game in a bit, it just takes a certain frame of mind that I'm not in right now.]

8) lambda: Build G1 Arrakis
	Jesse: A generation of decadent culture passes.  At long last, President Xanax is elected on a platform of renewed industrial and scientific development.  The first new ship rolls off the production lines, and communication is reestablished with the colony on Sekhar.

9) Jesse: Build Y1 Sekhar
	lambda: In a bizarre coincidence, the Lambdites find the remains of an ancient civilization on the planet they've chosen as a trading outpost. It turns out that the glassy planet was once composed of vast, sandy deserts, where this civilization of these funny looking soft pink things called "humans" once lived. In honor of the fallen race, the Lambdites name the planet Arrakis. They begin doing a survey of the stars to try and find the one named "Hume" that these humans must have come from. While they're at it, they decide to get ready for trade, producing some more of their excellent construction vessels and sending advertisements for them all across the galaxy. 
	lambda: [Yeah, doing a roleplaying game of Homeworlds can be tough, since you have to be thinking both strategically and creatively at the same time. Oh, and that last bit of story a quick patch to the fact that I reflexively used my standard naming convention for systems, which is names of actual stars]

	Jesse: The Sekhar colony is proven viable by the successful completion of a new ship at its production facilities.  Jesseans celebrated the news at State sponsored events throughout the two systems.  A few unpatriotic individuals held a small, half-hearted demonstration outside the J House.  Happily, the majority of Jesseans dismiss their protestations as almost a non-event.  "It just goes to show," commented one keen observer, "that President Xanax's landslide victory really does represent a true mandate of the masses.  A few decadents from the Green Love Party won't get in the way of the President's agenda of progress."
	Jesse: Well, I think that's long enough.  I'm canceling this game now.


1211)
Started: 2005.11.1, Ended: 2005.11.12
Participants: CDRodeffer (S), benedict (N)
Winner: CDRodeffer

1) benedict: Homeworld G3 B2 Y3

2) CDRodeffer: Homeworld Y1 B2 G3

3) benedict: Build Y1 Benedict

4) CDRodeffer: Build G1 Cdrodeffer

5) benedict: Discover Y1 Benedict G1 Pons Aelius

6) CDRodeffer: Trade G1 R1 Cdrodeffer

7) benedict: Build Y1 Benedict

8) CDRodeffer: Build G1 Cdrodeffer

9) benedict: Trade Y1 R1 Benedict

10) CDRodeffer: Trade G1 B1 Cdrodeffer

11) benedict: Build R1 Benedict

12) CDRodeffer: Build G1 Cdrodeffer

13) benedict: Move R1 Benedict Pons

14) CDRodeffer: Build R2 Cdrodeffer

15) benedict: Build R2 Pons
	benedict: thx for the disks, they arrived yesterday.  haven't had a chance to work with them yet.

16) CDRodeffer: Trade R2 Y2 Cdrodeffer
	CDRodeffer: No problem! Just pop the live-CD in your drive and turn it on to try things out. Or use a school computer if you have any reservations. And no, that is not my insidious attempt to infect a certain university with some evil destructive program from some certain other university.... :-)

17) benedict: Build R2 Benedict

18) CDRodeffer: Build B1 Cdrodeffer

19) benedict: Trade R1 B1 Benedict

20) CDRodeffer: Discover B1 Cdrodeffer G3 Eden

21) benedict: Move R2 Pons Eden

22) CDRodeffer: Build B2 Eden

23) benedict: Attack B2 Eden

24) CDRodeffer: Build B3 Eden

25) benedict: Build B3 Eden
Catastrophe Eden B

26) CDRodeffer: Discover G1 Cdrodeffer R3 Ohio_state

27) benedict: Move B1 Benedict Pons

28) CDRodeffer: Build G1 Cdrodeffer

29) benedict: Move R1 Pons Ohio_state
	benedict: 

30) CDRodeffer: Build G2 Ohio_state

31) benedict: Move Y1 Pons Eden

32) CDRodeffer: Attack R1 Ohio_state
	benedict: I have to admit I have no idea what I'm doing
	CDRodeffer: No problem. Let's assess your situation. You have a few ships out there, but not many big ones yet. That's about the same for me, too. A conflict-oriented direct invasion strategy usually doesn't work in this game. It's just too hard and takes too many turns to move in ships and then fight. If your opponent has a red ship and a large ship at home, they can always defend against a single ship of any size. More likely, many ships are moved in at once using a sacrifice of a large yellow. Or many ships are grown at once somewhere by sacrificing a large green. Or, more often in outside systems, many ships are attacked by sacrificing a large red. Less frequent, several ships can be traded at a time, but that's usually a defensive rather than an offensive move.

33) benedict: Move R2 Eden Pons
	benedict: that last move of mine was a mistake - forgot that having a red star system allowed you to attack.

34) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G2 Cdrodeffer
Build G2 Ohio_state
Build G3 Cdrodeffer

35) benedict: Move Y1 Eden Pons

36) CDRodeffer: Sacrifice Y2 Cdrodeffer
Discover B1 Cdrodeffer G3 Jealousy
Move G2 Cdrodeffer Jealousy

37) benedict: Build R1 Pons

38) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G3 Cdrodeffer
Build B1 Jealousy
Build R2 Cdrodeffer

39) benedict: Move R2 Pons Jealousy
	benedict: move r2 pons Jealousy
	benedict: oops ;)

40) CDRodeffer: Sacrifice R1 Cdrodeffer
Attack R2 Jealousy

41) benedict: Build B2 Pons
	CDRodeffer: No worries.
	benedict: oh, guess I isunderstood *that* rule ;)

42) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G3 Cdrodeffer
Build R1 Cdrodeffer
Build R3 Jealousy

43) benedict: Build R3 Pons
	CDRodeffer: This scheme of sacrificing a g3, then immediately rebuilding it as one of the actions it allows requires another green ship (in this case my g1 at CDRodeffer). This construction is popularly known as "the factory."
	benedict: nasty

44) CDRodeffer: Trade G2 Y2 Jealousy

45) benedict: Trade B2 G2 Pons

46) CDRodeffer: Sacrifice Y2 Jealousy
Move G1 Ohio_state Pons
Move G2 Ohio_state Pons
Catastrophe Pons Green
	CDRodeffer: You're not gonna like this....

47) benedict: Build R1 Benedict
	benedict: i sensed the fact that you were rubbing your internet hands together with glee, but didn't realize exactly what would happen - I took the bait and walked right into the trap@!!@

48) CDRodeffer: Sacrifice B1 Jealousy
Trade R1 Y1 Ohio_state

49) benedict: Trade R2 G2 Benedict
	CDRodeffer: No, not so much that, as I saw the opportunity and just took it. The large yellow ship is useful for the "invade and catastrophe" type of attack, but sometimes a medium will do. Seldom will a player leave a system vulnerable to a single ship invasion catastrophe.

50) CDRodeffer: Build G1 Ohio_state
	benedict: by the way, I never really congratulated you on having your game pulling strings online - that's one step ahead of me ;)  well done!  I'm about to play Iain Cheyne in that one...
	CDRodeffer: Thanks! I hope you like the game. Pulling Strings is really simple, and sort of just fell together almost completely formed.

51) benedict: Build G1 Benedict

52) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G2 Ohio_state
Build G3 Cdrodeffer
Build Y1 Ohio_state

53) benedict: Build Y2 Benedict
	benedict: i don't see your g3 ship...
	benedict: oh, its at creodeffer, never mind

54) CDRodeffer: Discover G1 Ohio_state Y2 Caution
	benedict: i won my Strings game against aaron!
	CDRodeffer: Cool! I hope you enjoyed it.

55) benedict: Sacrifice Y2 Benedict
Discover G1 Benedict R1 Orion
Move G2 Benedict Orion

56) CDRodeffer: Sacrifice G3 Cdrodeffer
Build G3 Cdrodeffer
Build Y2 Ohio_state
Build B1 Jealousy
	benedict: yes - short, but tricky

57) benedict: Sacrifice Y3 Benedict
Move G1 Orion Ohio_state
Move G2 Orion Ohio_state
Pass
Catastrophe Ohio_state G

58) CDRodeffer: Sacrifice Y2 Ohio_state
Discover R3 Jealousy G1 Brief_stopover
Move R3 Brief_stopover Benedict
	benedict: the end is near...
	CDRodeffer: I don't understand why you did that. I guess last licks?

59) benedict: Build R1 Benedict
	benedict: I was trying to get to your homeworld and knock out your production, but realised that I would need to move through 2 systems to get there.

60) CDRodeffer: Sacrifice R2 Jealousy
Attack R1 Benedict
Attack R1 Benedict
	benedict: I told you, I still have no idea what I'm supposed to be doing...
	benedict: ...I just know that I am losing horribly
	CDRodeffer: That's OK. Sometime we'll get together over the board, and I'll show you some things. Actually, I'm not really the one to show you -- there are many much better players than I. But you're right, this is the end. Nice game, even so.



1224)
Started: 2005.11.3, Ended: 2005.11.8
Participants: jeep (S), sketchwick (N)
Winner: jeep

1) sketchwick: Homeworld B1 Y3 G3

2) jeep: Homeworld B1 Y2 G3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build G1 Jeep

5) sketchwick: Trade G1 R1 Sketchwick

6) jeep: Trade G1 R1 Jeep

7) sketchwick: Build G1 Sketchwick

8) jeep: Build G1 Jeep

9) sketchwick: Trade G1 B1 Sketchwick

10) jeep: Discover G1 Jeep B3 Moon

11) sketchwick: Build B2 Sketchwick

12) jeep: Build G1 Moon

13) sketchwick: Discover B2 Sketchwick Y2 Shine

14) jeep: Trade G1 Y1 Moon

15) sketchwick: Sacrifice G3 Sketchwick
Build B2 Shine
Build B2 Shine
Build B3 Sketchwick

16) jeep: Build G1 Jeep
	jeep: So many new tactics... I saw that after my last play.

17) sketchwick: Trade B2 R2 Shine

18) jeep: Discover G1 Jeep Y3 Shoe

19) sketchwick: Move R2 Shine Moon

20) jeep: Sacrifice Y1 Moon
Discover G1 Moon G1 Polish

21) sketchwick: Trade B3 G3 Sketchwick

22) jeep: Trade R1 Y1 Jeep

23) sketchwick: Trade B2 Y2 Shine

24) jeep: Build G2 Shoe

25) sketchwick: Move Y2 Shine Moon

26) jeep: Build G2 Jeep

27) sketchwick: Move R2 Moon Polish

28) jeep: Sacrifice G3 Jeep
Build G2 Polish
Build G3 Polish
Build G3 Jeep
Catastrophe Polish Green

29) sketchwick: Move Y2 Moon Jeep

30) jeep: Trade G3 R3 Jeep

31) sketchwick: Sacrifice G3 Sketchwick
Build B2 Sketchwick
Build B2 Shine
Build Y1 Jeep
Catastrophe Jeep Yellow

32) jeep: Trade G2 Y2 Jeep

33) sketchwick: Discover B2 Shine G1 Sun

34) jeep: Discover R3 Jeep Y2 Spot

35) sketchwick: Move B2 Shine Jeep

36) jeep: Move R3 Spot Jeep

37) sketchwick: Build B3 Sun
	sketchwick: ug I'm dumb


38) jeep: Attack B2N Jeep

39) sketchwick: Trade B3 Y3 Sun

40) jeep: Sacrifice Y2 Jeep
Discover B2 Jeep Y2 Temp
Move B2 Temp Sketchwick
Catastrophe Sketchwick Blue

41) sketchwick: Move B2 Sun Sketchwick

42) jeep: Move G2 Shoe Jeep

43) sketchwick: Build Y1 Sun

44) jeep: Build G1 Jeep

45) sketchwick: Move Y1 Sun Sketchwick

46) jeep: Trade G2 Y2 Jeep

47) sketchwick: Build Y1 Sun

48) jeep: Build G2 Jeep

49) sketchwick: Trade Y1 B1 Sketchwick

50) jeep: Sacrifice Y2 Jeep
Discover R3 Jeep Y2 Temp
Move R3 Temp Sketchwick

51) sketchwick: Move Y1 Sun Sketchwick

52) jeep: Attack B2N Sketchwick

	SYSTEM: sketchwick resigns.


1190)
Started: 2005.11.3, Ended: 2005.11.7
Participants: Laurie_Menke (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) Laurie_Menke: Homeworld Y3 B2 G3

3) TwoShort: Build G1 Twoshort

4) Laurie_Menke: Build G1 Laurie_menke

5) TwoShort: Build G1 Twoshort

6) Laurie_Menke: Build G2 Laurie_menke

7) TwoShort: Discover G1 Twoshort Y3 Yolonda

8) Laurie_Menke: Discover G1 Laurie_menke Y1 Luella

9) TwoShort: Discover G1 Yolonda Y1 Troublemaker

10) Laurie_Menke: Discover G2 Laurie_menke B1 Cornflower

11) TwoShort: Build G2 Troublemaker

12) Laurie_Menke: Discover G1 Luella B3 Oceania

13) TwoShort: Move G2 Troublemaker Oceania

14) Laurie_Menke: Trade G1 Y1 Oceania

15) TwoShort: Build G1 Oceania

16) Laurie_Menke: Trade G2 Y2 Cornflower

17) TwoShort: Build G2 Troublemaker

18) Laurie_Menke: Move Y2 Cornflower Oceania

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Oceania
Build G3 Troublemaker
Build G3 Twoshort
	Laurie_Menke: Houston, I seem to be having a green shortage....
	TwoShort: Let's see if I can help you out wiht that...

20) Laurie_Menke: Trade G3 R3 Laurie_menke
	Laurie_Menke: LOL...the Green Horde is coming to get me!

21) TwoShort: Trade G2 R2 Oceania

22) Laurie_Menke: Move Y2 Oceania Troublemaker

23) TwoShort: Sacrifice R2 Oceania
Attack Y1S Oceania
Attack Y2S Troublemaker

24) Laurie_Menke: Trade R3 G3 Laurie_menke
	Laurie_Menke: OK, so I really need to review some of the archived games to see what I'm supposed to be doing.  I still don't seem to have a clue what I should be trying to do from turn to turn.
	Laurie_Menke: I know this game is nearing an end, and I really appreciate your willingness to play with me.  I'm going to lay low for a while and hopefully the next time we meet I'll be more ready to be a challenge for you.  Happy gaming!

25) TwoShort: Trade G1 R1 Oceania

26) Laurie_Menke: Trade G3 R3 Laurie_menke
	TwoShort: I'm still learning myself, I'm just a few pages ahead of you.  I'll throw out a couple salient points I've discovered so far:
 1. It's all about green and yellow.  If you can cut off, or severely restrict, your opponents access to one of those, you've got them.
 2. After that, it's all about 3 pointers. A 3 pointer gives you the potential to make such a sweeping change to the board when you sacrifice it, that the player with even one more of them has a big advantage.

  Besides that, it's just assorted little tricks; primarily the one I used here: sacrifive a 3 point green to grow itself back again, two other peices besides.  All I'm doing from turn to turn in the early game is trying to set up the timing so I'll be the first one able to do this.
	Laurie_Menke: All very good advice...thank you!  I was starting to get the idea about green and yellow, but I'm still very unaware of my sacrificing possibilities.

27) TwoShort: Sacrifice G3 Twoshort
Build G1 Oceania
Build G2 Oceania
Build G3 Twoshort

28) Laurie_Menke: Trade R3 G3 Laurie_menke
	Laurie_Menke: Now I'm just feeling stupid...since I only have one ship, I can't go anywhere, so my options are building or trading.  When I had the green, I couldn't build because you've got all the greens.  With the red, I can't build because I have no green.  So I just keep trading ships...LOL!

29) TwoShort: Move G3 Troublemaker Laurie_menke
	TwoShort: You could have built last turn, but then I could have moved in and caused a catastrophe.  But you switched to red, forcing me to stall for a turn until you flipped back.  

30) Laurie_Menke: Trade G3 R3 Laurie_menke

31) TwoShort: Sacrifice R1 Oceania
Attack R3S Laurie_menke



1200)
Started: 2005.11.3, Ended: 2005.11.7
Participants: MonkeyJamboree (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) MonkeyJamboree: Homeworld R1 Y2 B3 *
	MonkeyJamboree: homeworld R1 Y2 B3
	MonkeyJamboree: oops! sorry, i am new at using this system here! and new at homeworlds... (though i AM a Rabbit.. hehe)

3) andylooney: Build Y1 Andylooney
	andylooney: welcome to the game! Next time you might want to start with green in your homeworld...

4) MonkeyJamboree: Trade B3 G3 Monkeyjamboree (s)
	MonkeyJamboree: why's that? i dont quite get the whole colors thing...
	MonkeyJamboree: oops! i missed the whole thing about the colors representing something different in the rules! i'll have to remember that next time.

5) andylooney: Trade Y1 G1 Andylooney

6) MonkeyJamboree: Build G1 Monkeyjamboree (s)

7) andylooney: Build G1 Andylooney
	MonkeyJamboree: by the way, it's nice to meet you! i must say that you created a lot of fun games that my friends and I like to play!
	MonkeyJamboree: i just read the news on wunderland.com about Kristin's grandmother... please offer her my condolence(s?).

8) MonkeyJamboree: Build G2 Monkeyjamboree (s)

9) andylooney: Sacrifice Y3 Andylooney
Discover G1 Andylooney Y3 Clampett
Move G1 Clampett Monkeyjamboree
Pass
Catastrophe Monkeyjamboree Green
	andylooney: sorry about this, but hopefully you'll consider it a learning experience... you've got to be careful about overloading your homeworld!



1234)
Started: 2005.11.3, Ended: 2005.11.6
Participants: Evilaxe (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) Evilaxe: Homeworld G1 B3 Y3

3) TwoShort: Build G1 Twoshort

4) Evilaxe: Build Y1 Evilaxe

5) TwoShort: Build G1 Twoshort

6) Evilaxe: Build Y1 Evilaxe

7) TwoShort: Discover G1 Twoshort Y3 Yellonia

8) Evilaxe: Trade Y3 G3 Evilaxe

9) TwoShort: Build G2 Yellonia

10) Evilaxe: Build Y2 Evilaxe

11) TwoShort: Discover G1 Yellonia Y2 Monkeywrench

12) Evilaxe: Trade Y1 B1 Evilaxe

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Yellonia
Build G2 Monkeywrench
Build G3 Twoshort

14) Evilaxe: Trade Y1 R1 Evilaxe

15) TwoShort: Discover G2 Yellonia B2 Bluestar

	SYSTEM: Evilaxe resigns.


1236)
Started: 2005.11.4, Ended: 2005.11.11
Participants: MatrixFrog (S), Evilaxe (N)
Winner: MatrixFrog

1) Evilaxe: Homeworld G1 B3 Y3

2) MatrixFrog: Homeworld B3 Y2 G3
	Evilaxe: Hi there. Good game last time.

3) Evilaxe: Build Y1 Evilaxe

4) MatrixFrog: Build G1 Matrixfrog

5) Evilaxe: Trade Y1 G1 Evilaxe

6) MatrixFrog: Trade G1 B1 Matrixfrog

7) Evilaxe: Build Y1 Evilaxe

8) MatrixFrog: Build B1 Matrixfrog

9) Evilaxe: Trade Y1 B1 Evilaxe

10) MatrixFrog: Trade B1 Y1 Matrixfrog

11) Evilaxe: Discover G1 Evilaxe B2 Xanadu

12) MatrixFrog: Build Y1 Matrixfrog

13) Evilaxe: Build Y1 Evilaxe

14) MatrixFrog: Discover Y1 Matrixfrog G1 Alpha

15) Evilaxe: Move Y1 Evilaxe Xanadu

16) MatrixFrog: Build Y2 Alpha

17) Evilaxe: Build Y2 Xanadu

18) MatrixFrog: Trade Y1 R1 Matrixfrog

19) Evilaxe: Build G2 Xanadu

20) MatrixFrog: Discover Y1 Alpha B2 Beta

21) Evilaxe: Trade G1 R1 Xanadu

22) MatrixFrog: Build G1 Matrixfrog

23) Evilaxe: Build G2 Xanadu
	Evilaxe: b g2 xanadu

24) MatrixFrog: Build B1 Matrixfrog

25) Evilaxe: Build B2 Evilaxe

26) MatrixFrog: Discover Y2 Alpha B3 Gamma

27) Evilaxe: Discover G2 Xanadu R1 El_dorado

28) MatrixFrog: Sacrifice G1 Matrixfrog
Build Y1 Beta

29) Evilaxe: Trade B2 R2 Evilaxe

30) MatrixFrog: Trade B1 G1 Matrixfrog

31) Evilaxe: Move Y2 Xanadu El_dorado

32) MatrixFrog: Trade Y1 G1 Beta

33) Evilaxe: Sacrifice G2 El_dorado
Build Y1 Xanadu
Build Y3 El_dorado

34) MatrixFrog: Build Y3 Beta

35) Evilaxe: Sacrifice B1 Evilaxe
Trade Y2 B2 El_dorado

36) MatrixFrog: Build Y2 Beta

37) Evilaxe: Move Y3 Evilaxe Beta
Catastrophe Beta Y

38) MatrixFrog: Build G2 Matrixfrog
	MatrixFrog: I didn't think you'd want to use a Y3 for that. Back to the drawing board...

39) Evilaxe: Move G2 Xanadu El_dorado

40) MatrixFrog: Sacrifice G2 Matrixfrog
Build R2 Matrixfrog
Build Y1 Gamma
	Evilaxe: I Had no real choice. Y3 or nothing and I couldn't let that armada live.
	MatrixFrog: I think I meant to build that in beta, not at home... I'm clearly too tired for this game right now.

41) Evilaxe: Sacrifice G2 El_dorado
Build Y2 El_dorado
Build Y3 El_dorado
	MatrixFrog: True.

42) MatrixFrog: Move Y1 Gamma El_dorado
Catastrophe El_dorado Y
	Evilaxe: Damn Damn Damn! I meant to put the y2 in Xanadu. Wasn't thinking properly when I entered the move.
	Evilaxe: Don't let that stop you from catastrophising El_dorado though.

	Evilaxe: Well, that's it. Thre's nothing I can do to stop you rolling your big ships in and taking over by force. Thanks for the game, hopefully I'll proofread better next time :)
	SYSTEM: Evilaxe resigns.


1238)
Started: 2005.11.4, Ended: 2005.12.16
Participants: lambda (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) lambda: Homeworld G3 B2 Y3
	TwoShort: Hello.  Glad to be playing you again; this time I'll try to avoid making a dumb mistake...

3) TwoShort: Build G1 Twoshort
	lambda: Hi! Thanks for playing. Dumb mistakes like the one you made happen all the time; I still make them occasionally myself, especially when I'm teaching new players and think that I can't possibly lose. 

4) lambda: Build Y1 Lambda

5) TwoShort: Build G1 Twoshort

6) lambda: Build Y1 Lambda

7) TwoShort: Discover G1 Twoshort B3 Bluestar

8) lambda: Discover Y1 Lambda B1 Arcturus

9) TwoShort: Build G1 Twoshort

10) lambda: Build Y2 Lambda

11) TwoShort: Discover G1 Twoshort Y3 Yellonia

12) lambda: Move Y2 Lambda Arcturus

13) TwoShort: Build G2 Bluestar
	lambda: Sorry about the delay there. I ended up getting really busy with school work and feeling burnt out on Homeworlds at the same time. 

14) lambda: Trade Y2 G2 Arcturus
	TwoShort: No problem

15) TwoShort: Trade G2 Y2 Bluestar

16) lambda: Build G2 Arcturus

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Yellonia
Build G3 Bluestar
Build G3 Twoshort

18) lambda: Discover G2 Arcturus Y3 Sol

19) TwoShort: Trade G3 R3 Twoshort

20) lambda: Build G3 Sol

21) TwoShort: Sacrifice Y2 Bluestar
Move G3 Bluestar Arcturus
Move G3 Arcturus Lambda
	lambda: OK, I realized right as I hit the submit button that I had an instant kill for you, so I hit undo. But now I feel bad killing you in that way after undoing a move. Do you think I should take my kill? Or do you want to undo your last move? Or do you think I should just redo my move? Basically, I feel bad killing you after an undo that wasn't because I mistyped, but instead because I realized a second later that I had a better move. 
	TwoShort: My general feeling on undos is that if you realize a second later you have a better move, feel free; if it's the next day, better to ask.  I would have loved (and not hesitated) to hit undo in our previous game, when I realized as I hit the submit button that I'd made a dumb game losing mistake.  Now I've made the exact same mistake, and not realized it, so I'm feeling kind of dumb!
  I propose that I've no idea what is the most fair way to proceed, but I'm sure the most fun way is to undo both our moves and continue from there.  
  

22) lambda: Sacrifice Y3 Lambda
Move G2 Arcturus Lambda
Move G2 Sol Arcturus
Move G2 Arcturus Lambda
Catastrophe Lambda Green
	lambda: Sure, that works for me. 

23) TwoShort: Move G2 Yellonia Lambda

24) lambda: Move G3 Sol Lambda
	TwoShort: Of course, now I'll feel bad if I win quickly after that

	lambda: Well, there's another move I'd like to undo. I guess I'll let it stand, though. 
	lambda: Not immediately, but...

25) TwoShort: Build G2 Yellonia
	lambda: Ouch. 
	lambda: I think no matter what, we're going to have to have a rematch after this game, since we've each made such bad mistakes. 

26) lambda: Trade Y1 R1 Lambda

27) TwoShort: Sacrifice G2 Yellonia
Build G2 Lambda
Build G2 Lambda
Catastrophe Lambda Green

28) lambda: Move Y1 Arcturus Lambda

29) TwoShort: Build G2 Yellonia

	SYSTEM: lambda resigns.


1263)
Started: 2005.11.6, Ended: 2005.11.13
Participants: Laurie_Menke (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 Y1 G3

2) Laurie_Menke: Homeworld G3 B2 Y3

3) Jesse: Build G1 Jesse
	Laurie_Menke: Hi Jesse.  Just to warn you, I've only played one full game of Homeworlds and I lost horribly.  I hope you'll forgive my newbie blunders.  :o(
	Jesse: Hi, Laurie.  I see you're playing TwoShort and Andy already.  Excelent choices.  Let's see what I can add to your education...

4) Laurie_Menke: Build Y1 Laurie_menke
	Laurie_Menke: Any and all education is greatly appreciated.  :o)

5) Jesse: Trade G1 Y1 Jesse

6) Laurie_Menke: Build Y2 Laurie_menke
	Jesse: If you were to build that second y1 before I got a yellow, it could be very difficult for me to get one later, so I'm grabbing it for myself before it's too late.
	Laurie_Menke: OK...so why do you want the y1?  I was thinking you just have to work through the 1s to get to the "bigger guns."

7) Jesse: Discover Y1 Jesse G2 Kif
	Jesse: Because if you took the y1, I wouldn't be able to get a yellow until I had a 2-pointer, by which time you might have used up all the 2-pointers.  I could always trade my g3, but I want to have it for a factory at the first opportunity.

8) Laurie_Menke: Discover Y1 Laurie_menke G1 Creativity

9) Jesse: Build Y2 Kif

10) Laurie_Menke: Build Y2 Creativity
	Laurie_Menke: OK.  I see what you mean.

11) Jesse: Build G1 Jesse

12) Laurie_Menke: Trade Y3 G3 Laurie_menke

13) Jesse: Discover Y1 Kif B1 Frog

14) Laurie_Menke: Move G3 Laurie_menke Frog
	Laurie_Menke: So what would you say a good goal would be for me right now in this game?  I'm having trouble understanding what I should be doing to either attack or defend efficiently...

15) Jesse: Move Y1 Frog Laurie_menke

16) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move G3 Frog Laurie_menke
Move Y2 Creativity Kif
	Jesse: At this stage, defense is about avoiding leaving your homeworld vulnerable to either catastrophe or lany larger ships that might arrive.  By moving out your g3, you reduce the diversity of your ships, so that I can move in like this, threatening to sacrifice my g3 to blast you.  If you had any red ships, you would be safe from that, so one thing you can do to defend yourself is obtain a red ship once I've set up on your border.
	Jesse: Offense here is more about positioning yourself to threaten to do things like this, in such a way that it limits the opponent's ability to develop.  For instance, TwoShort in particular always seems to push a couple of green ships to a yelow star next to me when I want to set up a factory on my homeworld early on.  That prevents me from safely opperating a factory there.  It's a good tactic.
	Jesse: I'm not usually very aggressive that way in the early game.  I play for defense first, and development second.  I only really start to turn my thoughts to offense when I've got a couple of extra large pieces, preferably more than the opponent.  Otherwise, I try to squeeze the resources to develop just a little more nicely than my opponent.
	Jesse: In this game, I made some inefficient moves early on that gave you a big positional advantage for nabbing those large yellows.  I moved up to Frog to prevent you from grabbing too many of them.  (It threatens to move in and destroy them if you build two at your homeworld.)  It was aso to spread my own yellows out so that I would be able to build one or more of them myself.  Moving in to your homeworld just now is a tactic to force you to make some defensive plays while I hopefully can squeeze out some yellows.  Right now, I think you either have to change your lone home defender to another color, probably red, or sacrifice a piece to bring your g3 home.
	Laurie_Menke: Wow...I really appreciate you taking the time to give so much good advice!  I can see now that it was stupid of me to move the g3 out, especially when I had no way of moving once I was there.  
	Laurie_Menke: And I would have never even thought of the sacrificing your g3 to build yellows and destroy my homeworld.  I need to think more carefully about the sacrifice moves that both I and my opponent can make.
	Laurie_Menke: Huh...I thought I was doing this right, but I got an error message.  Is this code correct?  sacrifice y2 Laurie_Menke <carriage return> move g3 Frog Laurie_Menke <carriage return> move y2 Creativity Jesse?
	Laurie_Menke: The error says I can't leave my homeworld undefended by the end of my turn...I didn't think I was...I'm leaving it temporarily, but returning my green in the second command line.  Right?
	Laurie_Menke: Well, I'll try something else instead...

17) Jesse: Trade Y1 G1 Laurie_menke
	Jesse: Yes, you should be able to do that.  I believe you've found a bug.  Actually, I've been wondering whether this was implemented properly, but never had an opportunity to test it.
	Aaron: It *was* implemented properly, but then I had to allow "cashing in on investment" and mis-handled it.  I'll repair the code now.
	Aaron: Fixed.  Laurie, I undid your last move.  You should now be able to do what you previously wanted.  Let me know if it doesn't work.
	Laurie_Menke: Thanks, Aaron and Jesse!  You're the best!  And Jesse, please forgive me for being late on my move...I went out of town on an emergency...my Dad was having bypass surgery.  I tried to use my Mom's computer, but it was too slow.  Please forgive me.

18) Laurie_Menke: Trade G3 R3 Laurie_menke
	Jesse: Yeah, no problem.  I hope your dad is okay.

19) Jesse: Build G2 Laurie_menke
	Laurie_Menke: He is...thanks.

20) Laurie_Menke: Build R1 Laurie_menke
	Jesse: Again, we see the value  of diversity at the homeworld.  Having only one color of ships there is all the more dangerous if it's the same color as one of your system markers.  Since you don't have any red to capture my ship, your green star is probably doomed, but you can save your large ship by changing its color.
	Jesse: Er, yeah, like that.  :)

21) Jesse: Sacrifice G3 Jesse
Build G2 Laurie_menke
Build G3 Jesse
Build G3 Jesse
Catastrophe Laurie_menke G
	Laurie_Menke: Hey...I'm starting to catch on a little, I guess!  All thanks to your patience tutelage!  :o)

22) Laurie_Menke: Build Y1 Creativity
	Laurie_Menke: I meant "patient"...sorry for the typo
	Jesse: What!?  A type?!  Now I'm rezlly outrages!

23) Jesse: Trade G3 R3 Jesse
	Laurie_Menke: LOL!  :o)

24) Laurie_Menke: Trade R1 G1 Laurie_menke
	Jesse: What's really funny, to me, is that those were all real typos.  I didn't even think of leaving them in until later.
	Jesse: Oh, wow.  That was incautious of me.  Our homeworlds are adjacent to each other now, and you could have flown in your r3.  I really should have let those ships sit without calling the catastrophe until after I protected myself.

25) Jesse: Build R1 Jesse
	Aaron: Go get 'im, Laurie!  (I'm glad your dad's ok.  My parents are going through the same thing.)

26) Laurie_Menke: Build R1 Laurie_menke
	Laurie_Menke: Thanks, Aaron...I hope your parents are OK, too.  I'm sorry to hear of their trouble.
	Laurie_Menke: That really is funny...about the typos.  And sadly, as is obvious, I didn't pick up on that homeworld thing either.  
	Jesse: Hmm, yeah.  Not so sad for me, though it would have served me right if you'd caught it.

27) Jesse: Move R3 Jesse Laurie_menke

28) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack R3 Laurie_menke

29) Jesse: Build R1 Jesse
	Laurie_Menke: Argh!  She's sees what Jesse is doing just a tad too late to save herself....grrr....  If I attack you, you move in with your other red next turn and cause a catastrophe.  If I move one of my reds out, you attack with the ship you've already got in my homeworld.  Hmmm....what to do, what to do....
	Laurie_Menke: Actually, I couldn't even move a ship out if I tried right now....

30) Laurie_Menke: Build G2 Laurie_menke
	Laurie_Menke: I think that might have been the right play....
	Jesse: Ack!  Good catch.  That's another horrible oversight for me this game.  Well, this makes things much harder for me...

31) Jesse: Sacrifice Y2 Kif
Move R1 Jesse Laurie_menke
Move R1 Jesse Laurie_menke
Catastrophe Laurie_menke R

32) Laurie_Menke: Move Y1 Creativity Laurie_menke

33) Jesse: Trade G3 R3 Jesse
	Jesse: This is tough.  I honestly don't know who to say has the advantage here.
	Laurie_Menke: This is getting interesting!  It's almost as if we're at the beginning of the game again.

34) Laurie_Menke: Sacrifice G2 Laurie_menke
Build Y2 Creativity
Build Y2 Kif

35) Jesse: Move R3 Jesse Laurie_menke
	Laurie_Menke: Oh...not good...I think you've got me now.  But I'm still going to try a last-ditch effort.

36) Laurie_Menke: Build Y3 Kif
	Jesse: We're both on the edge.

37) Jesse: Attack Y1 Laurie_menke
	Jesse: But, I do think I've got you, barely.
	Laurie_Menke: Yep, you do.  Thanks, Jesse, for another great game, and also for all your comments.  I truly appreciate them.  Hope to play you again soon!

38) Laurie_Menke: Sacrifice Y2 Kif
Move Y1 Creativity Laurie_menke
Move Y3 Kif Jesse

39) Jesse: Sacrifice R3 Laurie_menke
Attack Y1 Laurie_menke
Attack G1 Laurie_menke
Pass
	Laurie_Menke: Oh!  You can only attack one ship at a time?  I thought you would attack both at once and this would be the end.  Well, maybe I still have a VERY SLIM chance, then!

	Jesse: You can only attack one ship per attack action.  Now I can sacrifice the r3 to attack both your ships with my y1.  If you had moved a medium in instead of a small, I wouldn't be able to do that because a small can't take a medium.  I'd have to take your pieces one at a time.  However, that's still okay for me, because it woud take each of us two turns to capture the other's defenders, but I go first.  Anyway, thanks for the game!  You seem to be catching on fast.


1268)
Started: 2005.11.6, Ended: 2005.11.10
Participants: Gort (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld G1 B2 Y3
	Gort: homeworld B1 G3 ship
	Gort: Oh, I'm new to this. This must be the sub-ether-wave band.

2) Gort: Homeworld B2 G1 Y3

3) TwoShort: Build Y1 Twoshort

4) Gort: Build Y1 Gort

5) TwoShort: Discover Y1 Twoshort B3 Bluestar

6) Gort: Trade Y1 G1 Gort

7) TwoShort: Build Y1 Twoshort

8) Gort: Build G2 Gort

9) TwoShort: Trade Y3 G3 Twoshort

10) Gort: Move G2 Gort Bluestar

11) TwoShort: Build Y1 Twoshort

12) Gort: Build Y2 Gort

13) TwoShort: Discover Y1 Twoshort G3 Gorgon

14) Gort: Sacrifice Y3 Gort
Move G2 Bluestar Twoshort
Move G1 Gort Bluestar
Move G1 Bluestar Twoshort
Catastrophe Twoshort G

15) TwoShort: Build Y2 Gorgon

16) Gort: Trade Y2 R2 Gort

17) TwoShort: Build Y2 Gorgon

18) Gort: Build R1 Gort

19) TwoShort: Discover Y1 Gorgon Y2 Denial

20) Gort: Build R1 Gort

21) TwoShort: Build Y3 Gorgon

22) Gort: Trade R1 G1 Gort

23) TwoShort: Move Y3 Gorgon Gort

24) Gort: Build G1 Gort

25) TwoShort: Build Y3 Gort

26) Gort: Trade R2 B2 Gort

27) TwoShort: Build Y3 Gort

28) Gort: Build R1 Gort

29) TwoShort: Trade Y3 B3 Gort

	SYSTEM: Gort resigns.


1280)
Started: 2005.11.7, Ended: 2005.11.12
Participants: ts52 (S), cobalt (N)
Winner: ts52

1) cobalt: Homeworld Y1 B2 G3

2) ts52: Homeworld Y1 B3 G3

3) cobalt: Build G1 Cobalt

4) ts52: Build G1 Ts52

5) cobalt: Trade G1 Y1 Cobalt

6) ts52: Build G1 Ts52

7) cobalt: Build Y2 Cobalt

8) ts52: Discover G1 Ts52 B2 Neptune

9) cobalt: Trade Y2 B2 Cobalt

10) ts52: Trade G3 Y3 Ts52

11) cobalt: Build Y2 Cobalt

12) ts52: Build Y2 Ts52

13) cobalt: Discover Y1 Cobalt G3 Winston

14) ts52: Move Y2 Ts52 Neptune

15) cobalt: Build G1 Cobalt

16) ts52: Build G2 Ts52

17) cobalt: Sacrifice Y2 Cobalt
Move Y1 Winston Neptune
Move Y1 Neptune Ts52

18) ts52: Trade Y3 R3 Ts52

19) cobalt: Sacrifice G3 Cobalt
Build Y2 Ts52
Build Y2 Ts52
Build G2 Cobalt

20) ts52: Sacrifice G2 Ts52
Build Y3 Neptune
Build Y3 Neptune
Catastrophe Ts52 Yellow

21) cobalt: Trade G2 Y2 Cobalt

22) ts52: Sacrifice Y2 Neptune
Move R3 Ts52 Cobalt
Move Y3 Neptune Ts52

23) cobalt: Build G2 Cobalt

24) ts52: Attack Y2 Cobalt

	SYSTEM: cobalt resigns.


1282)
Started: 2005.11.7, Ended: 2006.2.21
Participants: andylooney (S), MonkeyJamboree (N)
Winner: andylooney

1) MonkeyJamboree: Homeworld G3 B2 Y3
	MonkeyJamboree: lets try again, shall we? :)

2) andylooney: Homeworld G1 B2 Y3

3) MonkeyJamboree: Build Y1 Monkeyjamboree (s)

4) andylooney: Build Y1 Andylooney

5) MonkeyJamboree: Discover Y1 Monkeyjamboree R1 Garflax

6) andylooney: Trade Y1 G1 Andylooney

7) MonkeyJamboree: Build Y1 Monkeyjamboree

8) andylooney: Discover G1 Andylooney Y3 Clampett

9) MonkeyJamboree: Trade Y1 G1 Monkeyjamboree

10) andylooney: Build G2 Clampett

11) MonkeyJamboree: Move G1 Monkeyjamboree Garflax
	MonkeyJamboree: You don't seem to be conversing much... everything okay?

12) andylooney: Discover G1 Clampett B1 Bomber
	andylooney: everything's great, I'm just not much of one for chatting here. I'm in so many games at once I don't usually take time for idle chatter.

13) MonkeyJamboree: Discover G1 Garflax G3 Zeepmo

14) andylooney: Build G2 Bomber

15) MonkeyJamboree: Build G2 Zeepmo

16) andylooney: Build G3 Clampett

	andylooney: So... it's been over a month since you took a turn. Are you planning to finish this game?


1285)
Started: 2005.11.7, Ended: 2005.12.16
Participants: MonkeyJamboree (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) MonkeyJamboree: Homeworld G2 B1 Y3

3) TwoShort: Build G1 Twoshort

4) MonkeyJamboree: Build Y1 Monkeyjamboree

5) TwoShort: Trade G1 Y1 Twoshort

6) MonkeyJamboree: Trade Y1 G1 Monkeyjamboree

7) TwoShort: Build G1 Twoshort

8) MonkeyJamboree: Build G1 Monkeyjamboree

9) TwoShort: Discover G1 Twoshort Y3 Yolonda
	TwoShort: discover g1 twoshort y3 Yolonda

10) MonkeyJamboree: Trade G1 Y1 Monkeyjamboree

11) TwoShort: Build G1 Twoshort
	MonkeyJamboree: CRAP!! meant to trade that for another color... dumb typos

12) MonkeyJamboree: Trade Y1 R1 Monkeyjamboree

13) TwoShort: Trade Y1 R1 Twoshort

14) MonkeyJamboree: Build R1 Monkeyjamboree

15) TwoShort: Build G2 Yolonda

16) MonkeyJamboree: Build G2 Monkeyjamboree
	MonkeyJamboree: sorry for taking so long, havent had access to the site

17) TwoShort: Move G1 Yolonda Monkeyjamboree

	TwoShort: no problem

	SYSTEM: MonkeyJamboree resigns.


1292)
Started: 2005.11.8, Ended: 2005.11.15
Participants: TwoShort (S), jeep (N)
Winner: TwoShort

1) jeep: Homeworld Y1 B2 G3

2) TwoShort: Homeworld Y1 B3 G3

3) jeep: Build G1 Jeep

4) TwoShort: Build G1 Twoshort

5) jeep: Trade G1 Y1 Jeep

6) TwoShort: Build G1 Twoshort

7) jeep: Build Y2 Jeep

8) TwoShort: Discover G1 Twoshort B2 Bluestar

9) jeep: Discover Y2 Jeep B3 Moon

10) TwoShort: Build G1 Bluestar

11) jeep: Sacrifice G3 Jeep
Build Y2 Moon
Build Y2 Moon
Build Y3 Jeep

12) TwoShort: Trade G3 Y3 Twoshort

13) jeep: Trade Y2 G2 Moon

14) TwoShort: Build G2 Twoshort

15) jeep: Build Y2 Moon

16) TwoShort: Move Y3 Twoshort Bluestar

17) jeep: Trade Y3 G3 Jeep

18) TwoShort: Build Y3 Bluestar

19) jeep: Sacrifice Y2 Moon
Move Y2 Moon Bluestar
Move Y2 Moon Bluestar
Catastrophe Bluestar Yellow

20) TwoShort: Trade G2 Y2 Twoshort

21) jeep: Trade G2 R2 Moon

22) TwoShort: Trade G1 R1 Bluestar

23) jeep: Build Y2 Jeep

24) TwoShort: Build G1 Twoshort

25) jeep: Discover Y2 Jeep Y3 Mover

26) TwoShort: Build Y2 Twoshort

27) jeep: Sacrifice Y2 Mover
Discover R2 Moon B2 Temp
Move R2 Temp Twoshort

28) TwoShort: Sacrifice R1 Bluestar
Attack R2N Twoshort

29) jeep: Build Y2 Jeep
	jeep: Teach me to make moves while in a meeting... I have no idea why I thought that was a good idea.

30) TwoShort: Move Y2 Twoshort Bluestar

31) jeep: Discover Y2 Jeep B3 Moon
	TwoShort: It did make me wonder...

32) TwoShort: Build Y3 Bluestar

33) jeep: Trade Y1 R1 Jeep

34) TwoShort: Trade Y3 G3 Bluestar
	jeep: I went from a strong game to a weak one in a turn.  *sigh*

35) jeep: Build G2 Jeep

36) TwoShort: Move G3 Bluestar Moon

37) jeep: Discover Y2 Moon B2 Man

38) TwoShort: Build G2 Moon

39) jeep: Move G2 Jeep Moon

40) TwoShort: Sacrifice G3 Moon
Build G2 Moon
Build G3 Bluestar
Build R1 Twoshort

41) jeep: Sacrifice G2 Moon
Build Y1 Man
Build R1 Jeep

42) TwoShort: Sacrifice Y2 Twoshort
Move G2 Moon Jeep
Move G2 Moon Jeep

43) jeep: Trade G3 Y3 Jeep

44) TwoShort: Sacrifice R2 Twoshort
Attack R1N Jeep
Attack R1N Jeep

45) jeep: Move Y2 Man Twoshort

46) TwoShort: Trade G3 B3 Bluestar

	jeep: Good game.  I needed to trade for a R2.  I even had it written down, but thought I saw something better.
	SYSTEM: jeep resigns.


1315)
Started: 2005.11.9, Ended: 2005.12.24
Participants: andylooney (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B1 Y2 G3
	TwoShort: Ready for a rematch?

2) andylooney: Homeworld B3 G2 Y3
	andylooney: Yes. I need revenge!

3) TwoShort: Build G1 Twoshort

4) andylooney: Build Y1 Andylooney

5) TwoShort: Trade G1 Y1 Twoshort

6) andylooney: Trade Y1 G1 Andylooney
	TwoShort: My typical downfall is in being too agressive and over-extending myeelf.  So frankly, I credit my win with feeling intimidated by playing you, and thus being more cautious.   Now that I know I can beat you, I expect you'll crush me...
	andylooney: well, we shall see... having lost to you, I'm all timid about playing you now! Hey, you should try to get Keith to learn this game...

7) TwoShort: Build G1 Twoshort

8) andylooney: Build Y1 Andylooney
	TwoShort: Keith claims to prefer games that aren't pure strategy.  (He fears me)

9) TwoShort: Discover G1 Twoshort Y3 Jed

10) andylooney: Discover G1 Andylooney Y1 Different

11) TwoShort: Build G1 Twoshort

12) andylooney: Build G2 Different

13) TwoShort: Build G2 Jed

14) andylooney: Discover G1 Different Y3 Clampett

15) TwoShort: Discover G2 Jed B1 Bubbles

16) andylooney: Build G3 Clampett

17) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Twoshort
Build G3 Bubbles

18) andylooney: Trade Y1 R1 Andylooney

19) TwoShort: Sacrifice Y2 Twoshort
Move G1 Twoshort Clampett
Move G2 Bubbles Clampett
Catastrophe Clampett Green

20) andylooney: Build G1 Different
	andylooney: Dammit!

21) TwoShort: Build G1 Bubbles

22) andylooney: Discover G2 Different G3 Jolly

23) TwoShort: Trade G1 Y1 Bubbles

24) andylooney: Move R1 Andylooney Different

25) TwoShort: Sacrifice G3 Bubbles
Build Y2 Bubbles
Build Y2 Bubbles
Build Y3 Twoshort

26) andylooney: Trade Y3 R3 Andylooney

27) TwoShort: Trade Y1 R1 Twoshort

28) andylooney: Sacrifice G2 Jolly
Build R1 Andylooney
Build R2 Different

29) TwoShort: Build R2 Twoshort

30) andylooney: Move R2 Different Jed

31) TwoShort: Sacrifice Y2 Bubbles
Move G3 Twoshort Jed
Discover Y1 Bubbles Y3 Yolonda

32) andylooney: Discover R2 Jed G1 Ginger

33) TwoShort: Move R2 Twoshort Yolonda

34) andylooney: Build G2 Different

35) TwoShort: Sacrifice G3 Jed
Build G2 Jed
Build Y1 Bubbles
Build Y2 Bubbles

36) andylooney: Discover G1 Different B3 Ibm

37) TwoShort: Move G1 Jed Twoshort

38) andylooney: Build G3 Different

39) TwoShort: Sacrifice G2 Jed
Build Y3 Yolonda
Build R2 Yolonda

40) andylooney: Sacrifice G2 Different
Build R3 Different
Build R3 Ginger

41) TwoShort: Move R2 Yolonda Bubbles

42) andylooney: Build G2 Ibm
	TwoShort: I've been going through warning my opponents that I'll be on the road the next two weeks and may not be able to play.  In your case though, perhaps I'll challenge you to a game in person next Thursday?
	andylooney: Oh, that'd be awesome!!!

43) TwoShort: Sacrifice Y3 Yolonda
Move R2 Yolonda Different
Move R2 Bubbles Andylooney
Move R2 Different Andylooney
Catastrophe Andylooney Red



1339)
Started: 2005.11.9, Ended: 2005.11.11
Participants: jeep (S), sketchwick (N)
Winner: sketchwick

1) sketchwick: Homeworld B1 Y2 G3

2) jeep: Homeworld Y1 B2 G3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build G1 Jeep

5) sketchwick: Discover G1 Sketchwick G3 Lime

6) jeep: Move G1 Jeep Lime

7) sketchwick: Build G1 Sketchwick

8) jeep: Build G2 Jeep

9) sketchwick: Sacrifice G3 Sketchwick
Build G2 Lime
Build G2 Sketchwick
Build G3 Sketchwick
Catastrophe Lime Green

10) jeep: Build G1 Jeep

11) sketchwick: Discover G1 Sketchwick Y3 Lemon

12) jeep: Move G2 Jeep Lemon

13) sketchwick: Move G1 Lemon Jeep

14) jeep: Trade G3 R3 Jeep

15) sketchwick: Build G1 Jeep

16) jeep: Move G1 Jeep Lemon

17) sketchwick: Trade G2 Y2 Sketchwick

18) jeep: Build G2 Lemon

19) sketchwick: Sacrifice Y2 Sketchwick
Move G1 Jeep Lemon
Discover G1 Jeep B3 Berry

20) jeep: Trade R3 G3 Jeep
Catastrophe Lemon Green
	jeep: We'll assume you DID call catastrophe... ;)

21) sketchwick: Build G1 Sketchwick

22) jeep: Build G1 Jeep

23) sketchwick: Build G2 Berry

24) jeep: Move G1 Jeep Berry

25) sketchwick: Trade G2 R2 Berry

26) jeep: Build G2 Jeep

27) sketchwick: Trade G1 Y1 Berry

28) jeep: Discover G2 Jeep Y3 Barn

29) sketchwick: Attack G1 Berry

30) jeep: Build G1 Jeep

31) sketchwick: Build G2 Berry

32) jeep: Trade G3 R3 Jeep

33) sketchwick: Sacrifice G2 Berry
Build Y1 Berry
Build Y2 Berry

34) jeep: Build G2 Barn

35) sketchwick: Sacrifice G3 Sketchwick
Build G2 Berry
Build G3 Sketchwick
Build R1 Berry

36) jeep: Move G2 Barn Sketchwick

37) sketchwick: Trade G1 R1 Sketchwick

38) jeep: Sacrifice G2 Barn
Build G1 Sketchwick
Build G2 Sketchwick
Catastrophe Sketchwick Green

39) sketchwick: Trade R1 G1 Sketchwick

40) jeep: Build R1 Jeep

41) sketchwick: Sacrifice Y2 Berry
Move R2 Berry Jeep
Move R1 Berry Jeep
Catastrophe Jeep Red

42) jeep: Build G2 Jeep
	jeep: I suck.  I was watching for that forever... until just then.

43) sketchwick: Build Y2 Berry

44) jeep: Trade G2 R2 Jeep

45) sketchwick: Trade G1 R1 Berry

46) jeep: Build R1 Jeep

47) sketchwick: Discover Y2 Berry Y2 Crunch

48) jeep: Discover R1 Jeep Y3 Smash

49) sketchwick: Build Y3 Berry

	SYSTEM: jeep resigns.


1327)
Started: 2005.11.9, Ended: 2005.11.28
Participants: TwoShort (S), cobalt (N)
Winner: TwoShort

1) cobalt: Homeworld Y1 B2 G3

2) TwoShort: Homeworld B1 G3 Y3

3) cobalt: Build G1 Cobalt

4) TwoShort: Build Y1 Twoshort

5) cobalt: Trade G1 Y1 Cobalt

6) TwoShort: Build Y2 Twoshort

7) cobalt: Build Y2 Cobalt

8) TwoShort: Trade Y2 G2 Twoshort

9) cobalt: Trade Y1 R1 Cobalt

10) TwoShort: Discover G2 Twoshort B2 Bluestar

11) cobalt: Build G1 Cobalt

12) TwoShort: Build G1 Bluestar

13) cobalt: Trade G1 B1 Cobalt

14) TwoShort: Trade G2 Y2 Bluestar

15) cobalt: Build G1 Cobalt

16) TwoShort: Build G1 Bluestar

17) cobalt: Discover G1 Cobalt Y3 Eta

18) TwoShort: Discover G1 Bluestar Y3 Yolonda

19) cobalt: Build G2 Cobalt

20) TwoShort: Build G2 Yolonda

21) cobalt: Trade G2 R2 Cobalt

22) TwoShort: Build G2 Bluestar

23) cobalt: Move B1 Cobalt Eta

24) TwoShort: Trade G2 R2 Bluestar

25) cobalt: Build G2 Eta

26) TwoShort: Sacrifice G2 Yolonda
Build Y1 Bluestar
Build Y2 Bluestar

27) cobalt: Move R1 Cobalt Yolonda

28) TwoShort: Build G2 Yolonda

	SYSTEM: cobalt resigns.


1367)
Started: 2005.11.11, Ended: 2005.11.14
Participants: sketchwick (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y1 B2 G3

2) sketchwick: Homeworld Y3 B2 G3

3) jeep: Build G1 Jeep

4) sketchwick: Build G1 Sketchwick

5) jeep: Trade G1 Y1 Jeep

6) sketchwick: Trade G3 Y3 Sketchwick

7) jeep: Build G1 Jeep

8) sketchwick: Build Y1 Sketchwick

9) jeep: Discover Y1 Jeep B3 Moon

10) sketchwick: Trade Y1 R1 Sketchwick

11) jeep: Trade G1 R1 Jeep

12) sketchwick: Build G1 Sketchwick

13) jeep: Build G1 Jeep

14) sketchwick: Build G2 Sketchwick

15) jeep: Move G1 Jeep Moon

16) sketchwick: Discover G1 Sketchwick B1 Over

17) jeep: Build G2 Moon

18) sketchwick: Build G2 Sketchwick

19) jeep: Build G3 Jeep

20) sketchwick: Build G3 Over

21) jeep: Move G1 Moon Over

22) sketchwick: Discover G2 Sketchwick Y1 Myhammy

23) jeep: Sacrifice G2 Moon
Build Y2 Moon
Build G2 Over
Catastrophe Over Green

24) sketchwick: Discover G2 Myhammy Y3 Shine

25) jeep: Trade G3 R3 Jeep

26) sketchwick: Discover G2 Sketchwick B1 Run

27) jeep: Move R3 Jeep Shine

28) sketchwick: Sacrifice G2 Shine
Build R1 Sketchwick
Build R2 Sketchwick

29) jeep: Sacrifice G3 Jeep
Build R2 Shine
Build R2 Shine
Build R3 Jeep

30) sketchwick: Trade G2 Y2 Run

31) jeep: Sacrifice Y2 Moon
Move R2 Shine Run
Move R2 Run Sketchwick
Catastrophe Sketchwick Red

32) sketchwick: Build G1 Sketchwick

33) jeep: Trade R3 G3 Jeep

34) sketchwick: Trade G1 R1 Sketchwick

35) jeep: Move R3 Shine Run

36) sketchwick: Move Y2 Run Moon

37) jeep: Move Y1 Moon Run

38) sketchwick: Build G1 Sketchwick

39) jeep: Build G1 Jeep

40) sketchwick: Build G2 Sketchwick

41) jeep: Trade R3 G3 Run

42) sketchwick: Move G1 Sketchwick Run

43) jeep: Sacrifice R1 Jeep
Attack G1S Run

44) sketchwick: Move R1 Sketchwick Run

45) jeep: Move Y1 Run Sketchwick

46) sketchwick: Sacrifice R1 Run
Attack Y1 Sketchwick

47) jeep: Trade G1 Y1 Run
	sketchwick: tempting to move y3-run instead
	jeep: ?  I think I prefer if you do... doesn't that let me take over your only red AND your only large?

48) sketchwick: Trade Y1 R1 Sketchwick
	sketchwick: yeah didn't see that :)

49) jeep: Build Y1 Run

50) sketchwick: Discover G2 Sketchwick R1 Home

51) jeep: Trade G1 R1 Jeep

52) sketchwick: Build R2 Sketchwick

53) jeep: Move Y1 Run Sketchwick

54) sketchwick: Move Y3 Sketchwick Home

55) jeep: Sacrifice G3 Run
Build Y2 Sketchwick
Build R2 Jeep
Build R3 Shine
	sketchwick: this is all very bad

56) sketchwick: Attack Y2 Sketchwick

57) jeep: Sacrifice R2 Shine
Attack R1S Sketchwick
Attack G1S Sketchwick

58) sketchwick: Attack R1 Sketchwick

59) jeep: Sacrifice G1 Sketchwick
Build Y2 Run

60) sketchwick: Trade Y2 G2 Sketchwick

61) jeep: Sacrifice Y2 Run
Move R3 Shine Run
Move R3 Run Sketchwick

62) sketchwick: Build R2 Sketchwick
Catastrophe Sketchwick Red

63) jeep: Sacrifice G3 Jeep
Build Y2 Run
Build Y2 Run
Build Y3 Sketchwick

	SYSTEM: sketchwick resigns.


1345)
Started: 2005.11.11, Ended: 2005.12.22
Participants: Gort (S), Lexicon (W), Kermit (N), Evilaxe (E)
Winner: Kermit

1) Kermit: Homeworld B1 G2 Y3

2) Evilaxe: Homeworld Y1 B3 G3

3) Gort: Homeworld B2 Y3 G3

4) Lexicon: Homeworld G3 B2 Y3

5) Kermit: Build Y1 Kermit

6) Evilaxe: Build G1 Evilaxe

7) Gort: Build G1 Gort

8) Lexicon: Build Y1 Lexicon

9) Kermit: Discover Y1 Kermit B3 Binker

10) Evilaxe: Build G1 Evilaxe

11) Gort: Build G1 Gort

12) Lexicon: Build Y1 Lexicon

13) Kermit: Trade Y1 G1 Binker

14) Evilaxe: Discover G1 Evilaxe B2 Xanadu

15) Gort: Discover G1 Gort Y1 Barata

16) Lexicon: Trade Y1 R1 Lexicon

17) Kermit: Build G2 Binker

18) Evilaxe: Build G2 Xanadu

19) Gort: Sacrifice G3 Gort
Build G2 Barata
Build G2 Barata
Build G3 Gort

20) Lexicon: Build R1 Lexicon

21) Kermit: Trade G2 Y2 Binker

22) Evilaxe: Trade G2 Y2 Xanadu

23) Gort: Move G1 Barata Xanadu

24) Kermit: Build Y1 Kermit

25) Gort: Move G2 Barata Binker
	SYSTEM: Lexicon resigns.
	SYSTEM: Evilaxe resigns.
	SYSTEM: Evilaxe resigns.
	SYSTEM: Evilaxe resigns.

26) Kermit: Trade Y1 R1 Kermit
	Kermit: did evilaxe resign as well?


27) Gort: Sacrifice G3 Gort
Build G2 Barata
Build G2 Binker
Build G3 Gort

28) Kermit: Sacrifice R1 Kermit
Attack G2S Binker
	Gort: I think evilaxe resigned from superdupergames; I didn't see their name on the current roster.

29) Gort: Trade G2 Y2 Binker

30) Kermit: Move G1 Binker Xanadu
	Kermit: ahh, well then be prepared to win as i am horrible at the 2 player version of this game


31) Gort: Sacrifice G3 Gort
Build G2 Xanadu
Build G3 Barata
Build G3 Gort
Catastrophe Xanadu G
	Gort: Don't give up too soon. This is my second game online.
	Gort: TwoShort stomped me into stardust during my first game.
	Lexicon: Whoa!  I resigned?  How weird.  I was wondering why this game hadn't come up in a few days.
	Lexicon: Perhaps a faulty keypress on my part.
	Gort: Ah, mystery solved. I thought you were doing quite well, Lex.

32) Kermit: Move G2 Binker Barata
Catastrophe Barata Green

33) Gort: Move Y2 Binker Kermit

34) Kermit: Trade Y3 R3 Kermit
	Gort: I was hoping you would be distracted by my catastrophe lure-- I hope this works... I think it's checkmate, but I might be missing something.

35) Gort: Sacrifice Y2 Kermit
Discover G3 Gort Y1 Xfer
Move G3 Xfer Lexicon

36) Kermit: Build R1 Kermit
	Gort: oops forgot that part. bad robot. no biscuit.

37) Gort: Trade G3 R3 Lexicon

38) Kermit: Discover Y2 Binker G1 Hammer

39) Gort: Attack Y3W Lexicon

40) Kermit: Move Y2 Hammer Gort
	Kermit: I will be going camping over the holiday. I will leave sometime tomorrow morning and return sometime sunday.
	Gort: Oh, good. I'm in a bit of a quandary.
	Gort: I just discovered an unhappy bug in this program. The ships that appear in Lexicon system are not really there. 

41) Gort: Sacrifice Y3 Lexicon
Discover R3 Lexicon B1 Booberry
Move G1 Gort Booberry
Move R3 Booberry Gort
	Gort: I was wrong. No bug; operator error. I forgot to include the ship owner (n) in my orders. Still learning...

42) Kermit: Move Y2 Gort Booberry

43) Gort: Sacrifice G1 Booberry
Build R1 Gort

44) Kermit: Move Y2 Booberry Xanadu

45) Gort: Discover R1 Gort Y1 Rutroh

46) Kermit: Sacrifice R1 Kermit
Attack Y2E Xanadu

47) Gort: Move R1 Rutroh Lexicon

48) Kermit: Trade Y2 G2 Xanadu

49) Gort: Attack R1W Lexicon

50) Kermit: Build G1 Xanadu

51) Gort: Trade R1 G1 Lexicon

52) Kermit: Trade G1 R1 Xanadu

53) Gort: Attack Y1W Lexicon

54) Kermit: Build R1 Kermit

55) Gort: Attack R1W Lexicon

56) Kermit: Discover R1 Xanadu G1 Oblivia

57) Gort: Trade R3 G3 Gort

58) Kermit: Build R1 Oblivia

59) Gort: Build G1 Gort

60) Kermit: Sacrifice Y2 Xanadu
Move R1 Oblivia Lexicon
Move R1 Oblivia Lexicon
Catastrophe Lexicon R

61) Gort: Discover G1 Lexicon B1 Ouch

62) Kermit: Build G1 Xanadu

63) Gort: Build G1 Ouch

64) Kermit: Trade G2 Y2 Xanadu


65) Gort: Move Y1 Lexicon Ouch

66) Kermit: Move Y2 Xanadu Ouch

67) Gort: Build Y1 Ouch

68) Kermit: Sacrifice R1 Kermit
Attack G1S Ouch

69) Gort: Build Y1 Ouch
Catastrophe Ouch Y

70) Kermit: Build G2 Ouch

71) Gort: Trade G1 Y1 Ouch

72) Kermit: Trade G2 Y2 Ouch

73) Gort: Discover Y1 Ouch B3 Horizon

74) Kermit: Build G1 Ouch

75) Gort: Trade G3 R3 Gort

76) Kermit: Build G2 Xanadu

77) Gort: Move G1 Gort Ouch

78) Kermit: Trade G1 R1 Ouch

79) Gort: Sacrifice Y1 Horizon
Discover G1 Ouch Y3 Doom
	Kermit: trade g1 r1 ouch


80) Kermit: Move R1 Ouch Doom
	Kermit: doh, well at least now I only have to copy to the other form.   

81) Gort: Sacrifice G1 Doom
Build R1 Gort

82) Kermit: Move R1 Doom Ouch

83) Gort: Trade R1 G1 Gort

84) Kermit: Build R1 Ouch

	Gort: I am vanquished. Thanks for the game!
	SYSTEM: Gort resigns.


1369)
Started: 2005.11.13, Ended: 2005.11.28
Participants: benedict (S), andylooney (N)
Winner: benedict

1) andylooney: Homeworld B1 G2 Y3
	benedict: hi, I'm hoping to learn a thing or two after my last game which was a disaster!

2) benedict: Homeworld B3 G1 Y3

3) andylooney: Build Y1 Andylooney

4) benedict: Build Y1 Benedict

5) andylooney: Trade Y1 G1 Andylooney

6) benedict: Trade Y1 G1 Benedict

7) andylooney: Discover G1 Andylooney Y3 Clampett

8) benedict: Build Y1 Benedict

9) andylooney: Build G2 Clampett

10) benedict: Trade Y1 R1 Benedict

11) andylooney: Build Y1 Andylooney

12) benedict: Discover G1 Benedict Y2 Venetia

13) andylooney: Trade Y1 R1 Andylooney

14) benedict: Build Y1 Benedict

15) andylooney: Discover G1 Clampett Y2 Plugh

16) benedict: Build R1 Benedict

17) andylooney: Build R2 Andylooney

18) benedict: Build R2 Benedict

19) andylooney: Discover R2 Andylooney G3 Garden

20) benedict: Move R2 Benedict Venetia

21) andylooney: Build Y1 Andylooney

22) benedict: Move R1 Benedict Plugh

23) andylooney: Sacrifice R1 Andylooney
Attack R1S Plugh

24) benedict: Move Y1 Benedict Venetia

25) andylooney: Move Y1 Andylooney Garden

26) benedict: Discover Y1 Venetia G3 Ophelia

27) andylooney: Build Y1 Andylooney

28) benedict: Build Y2 Ophelia

29) andylooney: Sacrifice G2 Clampett
Build Y3 Garden
Build G2 Plugh

30) benedict: Sacrifice Y3 Benedict
Move Y1 Ophelia Andylooney
Move Y2 Ophelia Andylooney
Move G1 Venetia Benedict
Catastrophe Andylooney Y
	benedict: hopefully this will work... I'm not very expereinced with this game... and sometimes my orders have odd effects...here goes nothing...



1410)
Started: 2005.11.13, Ended: 2005.11.23
Participants: Laurie_Menke (S), JunkMan (N), Aaron (E)
Winner: JunkMan

1) JunkMan: Homeworld B1 G2 Y3

2) Aaron: Homeworld B2 Y3 G3

3) Laurie_Menke: Homeworld B1 Y3 G3

4) JunkMan: Build Y1 Junkman

5) Aaron: Build G1 Aaron

6) Laurie_Menke: Build G1 Laurie_menke

7) JunkMan: Trade Y1 R1 Junkman

8) Aaron: Trade G1 R1 Aaron

9) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Come on, guys...why you want to hate?  ;o)

10) JunkMan: Build Y1 Junkman

11) Aaron: Build R1 Aaron
	Aaron: *chuckles*

12) Laurie_Menke: Trade G1 B1 Laurie_menke

13) JunkMan: Trade Y1 G1 Junkman

14) Aaron: Trade R1 Y1 Aaron

15) Laurie_Menke: Build G1 Laurie_menke

16) JunkMan: Discover G1 Junkman Y3 Helloworld

17) Aaron: Build R1 Aaron

18) Laurie_Menke: Trade G1 Y1 Laurie_menke

19) JunkMan: Build Y1 Junkman

20) Aaron: Discover R1 Aaron G1 Emeralds

21) Laurie_Menke: Build G1 Laurie_menke

22) JunkMan: Discover G1 Helloworld Y2 Palindrome

23) Aaron: Build G2 Aaron

24) Laurie_Menke: Trade G3 R3 Laurie_menke

25) JunkMan: Build G2 Palindrome

26) Aaron: Move G2 Aaron Emeralds

27) Laurie_Menke: Move G1 Laurie_menke Palindrome

28) JunkMan: Discover G2 Palindrome Y1 Transport

29) Aaron: Move Y1 Aaron Emeralds
	Aaron: Hrm, not thinking too clearly...

30) Laurie_Menke: Discover G1 Palindrome Y3 Oops
	Laurie_Menke: You're right...my move was not a safe or smart one last time.  Luckily, JunkMan didn't attack.  :o)  I'll correct my mistake now...

31) JunkMan: Move G1 Palindrome Transport

32) Aaron: Build Y2 Emeralds
	Aaron: No, I meant me =D

33) Laurie_Menke: Build G2 Oops
	Laurie_Menke: Oh...LOL!

34) JunkMan: Move G1 Transport Aaron

35) Aaron: Attack G1N Aaron

36) Laurie_Menke: Discover B1 Laurie_menke Y2 Luella

37) JunkMan: Build G3 Transport

38) Aaron: Move G1 Aaron Transport
	Aaron: very interesting

39) Laurie_Menke: Move G1 Oops Transport
Catastrophe Transport G

40) JunkMan: Trade Y1 G1 Junkman

41) Aaron: Move G2 Emeralds Luella

42) Laurie_Menke: Build R1 Laurie_menke

43) JunkMan: Discover G1 Junkman B3 Parrot

44) Aaron: Build R2 Aaron

45) Laurie_Menke: Build R2 Laurie_menke

46) JunkMan: Build G1 Parrot

47) Aaron: Sacrifice Y2 Emeralds
Move R1 Emeralds Luella
Move R1 Luella Laurie_menke
Catastrophe Laurie_menke Red

48) Laurie_Menke: Build G2 Laurie_menke
	Laurie_Menke: Argh!  As soon as I did that I realized my mistake, but was hoping you wouldn't see it.  :o(

49) JunkMan: Trade G1 Y1 Parrot

50) Aaron: Move G2 Luella Laurie_menke

51) Laurie_Menke: Trade G2 R2 Laurie_menke

52) JunkMan: Discover G1 Parrot Y1 Azul
	Laurie_Menke: Actually, that was another stupid move, darn it!  Why is it that I always see that AFTER I've made the move?

53) Aaron: Sacrifice R2 Aaron
Attack R2S Laurie_menke
Attack G1S Laurie_menke
	Aaron: You're not alone.  I do it *constantly*.  Actually, recognizing a mistake is the first step in not repeating it, so...

54) Laurie_Menke: Move B1 Luella Oops
	Laurie_Menke: Hey, JunkMan...how come your Azul system doesn't have any azul (blue) in it?  ;o)
	Laurie_Menke: Well, this doesn't help at all, but it seems to be my only move, so I'll take it and thank you both for a great game.  Have fun duking it out between the two of you!  ;o)

55) JunkMan: Build G1 Azul

56) Aaron: Attack Y1S Laurie_menke

57) JunkMan: Build G2 Azul

58) Aaron: Build G3 Laurie_menke

59) JunkMan: Move G1 Azul Aaron

60) Aaron: Attack G1N Aaron

61) JunkMan: Move G1 Azul Aaron

62) Aaron: Attack G1N Aaron

63) JunkMan: Build G3 Azul
	Aaron: I am not going to let you build there =)

64) Aaron: Move G1 Aaron Azul

65) JunkMan: Move G2 Azul Parrot

66) Aaron: Trade G3 R3 Laurie_menke

67) JunkMan: Build R1 Junkman

68) Aaron: Discover R3 Laurie_menke Y2 Bananas

69) JunkMan: Build G3 Parrot

70) Aaron: Build G3 Laurie_menke

71) JunkMan: Build Y2 Parrot

72) Aaron: Move G2 Laurie_menke Bananas

73) JunkMan: Move R1 Junkman Parrot

74) Aaron: Build Y2 Emeralds

75) JunkMan: Build R1 Parrot

76) Aaron: Sacrifice Y2 Emeralds
Move G1 Azul Parrot
Move G2 Bananas Parrot
Catastrophe Parrot Green

77) JunkMan: Build G1 Azul

78) Aaron: Move R3 Bananas Parrot

79) JunkMan: Sacrifice G1 Azul
Build R2 Parrot
Catastrophe Parrot Red

80) Aaron: Discover G3 Laurie_menke Y2 Bananas

81) JunkMan: Trade Y1 B1 Parrot

82) Aaron: Move G3 Bananas Parrot

83) JunkMan: Move B1 Parrot Azul

84) Aaron: Trade G3 R3 Parrot

85) JunkMan: Move Y2 Parrot Junkman

86) Aaron: Sacrifice Y1 Emeralds
Discover R3 Parrot Y1 Bananas

87) JunkMan: Build B2 Azul

88) Aaron: Move R3 Bananas Oops

89) JunkMan: Build B2 Azul

90) Aaron: Attack G2S Oops
	Aaron: Ahhh, I see now...but too late.

91) JunkMan: Move B1 Azul Aaron

92) Aaron: Attack B1N Aaron

93) JunkMan: Move B2 Azul Aaron

94) Aaron: Sacrifice B1 Aaron
Pass

95) JunkMan: Sacrifice G3 Azul
Build B1 Aaron
Build B2 Aaron
Build Y1 Junkman
Catastrophe Aaron Blue

96) Aaron: Attack B1S Oops

97) JunkMan: Trade B2 Y2 Azul

	SYSTEM: Aaron resigns.


1421)
Started: 2005.11.14, Ended: 2005.11.15
Participants: jeep (S), sketchwick (N)
Winner: jeep

1) sketchwick: Homeworld Y1 B2 G3

2) jeep: Homeworld Y2 B1 G3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build G1 Jeep

5) sketchwick: Discover G1 Sketchwick Y3 Injface

6) jeep: Discover G1 Jeep Y3 Insface

7) sketchwick: Build G1 Sketchwick

8) jeep: Build G2 Jeep

9) sketchwick: Build G2 Injface

10) jeep: Move G1 Insface Sketchwick

11) sketchwick: Trade G3 R3 Sketchwick

12) jeep: Move G1 Sketchwick Injface

13) sketchwick: Move R3 Sketchwick Injface

14) jeep: Trade G2 R2 Jeep

15) sketchwick: Attack G1 Injface

16) jeep: Build G2 Jeep

17) sketchwick: Move G2 Injface Jeep

18) jeep: Trade G3 R3 Jeep

19) sketchwick: Sacrifice G2 Jeep
Build G2 Sketchwick
Build G2 Sketchwick

20) jeep: Build G3 Jeep

21) sketchwick: Trade G2 B2 Sketchwick

22) jeep: Discover G2 Jeep Y3 Insface

23) sketchwick: Trade G1 R1 Sketchwick

24) jeep: Build G1 Jeep

25) sketchwick: Build R1 Injface

26) jeep: Discover G1 Jeep B3 Moon

27) sketchwick: Sacrifice G1 Injface
Build B1 Sketchwick

28) jeep: Build G1 Jeep

29) sketchwick: Move B2 Sketchwick Moon

30) jeep: Move R3 Jeep Moon

31) sketchwick: Move R3 Injface Sketchwick

32) jeep: Attack B2N Moon

33) sketchwick: Move B1 Sketchwick Moon

34) jeep: Attack B1N Moon

35) sketchwick: Trade R1 B1 Sketchwick

36) jeep: Trade B2 Y2 Moon

37) sketchwick: Discover G2 Sketchwick G3 Fuckme

38) jeep: Sacrifice G3 Jeep
Build G2 Moon
Build G3 Insface
Build G3 Jeep

	SYSTEM: sketchwick resigns.


1415)
Started: 2005.11.14, Ended: 2005.11.18
Participants: Laurie_Menke (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B1 G2 Y3
	Laurie_Menke: Hi, Jesse....you still willing to play with me, now that an excellent tutor has given me a little bit of experience with the game?  ;o)
	Jesse: Absolutely!

2) Laurie_Menke: Homeworld Y3 B2 G3

3) Jesse: Build Y1 Jesse

4) Laurie_Menke: Build G1 Laurie_menke

5) Jesse: Trade Y1 B1 Jesse

6) Laurie_Menke: Build G1 Laurie_menke

7) Jesse: Build Y1 Jesse

8) Laurie_Menke: Trade G1 B1 Laurie_menke

9) Jesse: Build B2 Jesse

10) Laurie_Menke: Build B2 Laurie_menke

11) Jesse: Discover B2 Jesse G3 Gamera

12) Laurie_Menke: Discover B2 Laurie_menke Y1 Transportation

13) Jesse: Build B3 Jesse

14) Laurie_Menke: Discover B2 Transportation Y3 Anne

15) Jesse: Move B3 Jesse Anne

16) Laurie_Menke: Build B3 Laurie_menke

17) Jesse: Build B3 Gamera

18) Laurie_Menke: Trade B3 R3 Laurie_menke

19) Jesse: Trade Y1 R1 Jesse

20) Laurie_Menke: Build B3 Laurie_menke

21) Jesse: Build R1 Jesse

22) Laurie_Menke: Discover B3 Laurie_menke Y1 Enterprise

23) Jesse: Sacrifice R1 Jesse
Attack B2 Anne

24) Laurie_Menke: Move G1 Laurie_menke Enterprise
	Laurie_Menke: Grrr....sneaky.  But I should have seen it coming.  I should know by now that it's never a good thing when two players occupy the same star system.

25) Jesse: Trade B2 Y2 Gamera
	Jesse: Oh, it seemed pretty good to me...  :)

26) Laurie_Menke: Build B2 Enterprise

27) Jesse: Trade B3 G3 Anne

28) Laurie_Menke: Discover B3 Enterprise R3 Mars

29) Jesse: Build B3 Gamera

30) Laurie_Menke: Trade B2 Y2 Enterprise

31) Jesse: Move B3 Gamera Enterprise

32) Laurie_Menke: Sacrifice Y2 Enterprise
Move G1 Enterprise Mars
Pass

33) Jesse: Build B2 Anne

34) Laurie_Menke: Build R1 Laurie_menke

35) Jesse: Trade B2 R2 Anne

36) Laurie_Menke: Sacrifice G3 Laurie_menke
Build B2 Mars
Build G1 Mars
Build G1 Mars

37) Jesse: Sacrifice Y3 Jesse
Move G3 Anne Enterprise
Move G3 Enterprise Laurie_menke
Move B3 Enterprise Laurie_menke
	Jesse: That's a bold move, giving up your g3.

38) Laurie_Menke: Attack G3 Laurie_menke
	Jesse: Hey!  Party at your place!
	Laurie_Menke: Hey, now...Jesse, you know I consider you a friend, but now's not really a good time for a party.  ;o)

39) Jesse: Sacrifice R2 Anne
Attack R3 Laurie_menke
Attack G3 Laurie_menke
	Laurie_Menke: At least I got a G3 back.  :o)

40) Laurie_Menke: Build G2 Mars
Catastrophe Mars G
	Jesse: Well, for a little bit.  R2's rock.
	Laurie_Menke: Oh, now that was not nice!
	Laurie_Menke: Well, I don't see any way out of this...I think that was the fatal blow.  :o(  Thanks for another good game.  :o)

41) Jesse: Sacrifice R3 Laurie_menke
Attack R1 Laurie_menke
Attack B1 Laurie_menke
Pass
	Jesse: Yeah, you were pretty well doomed, there.  I wouldn't leave my homeworld undefended like this unless I was sure I could pull it off.  And thank you, too.



1438)
Variants: "Sinister"
Started: 2005.11.14, Ended: 2005.12.1
Participants: Jesse (S), JunkMan (N), istari (E)
Winner: Jesse

1) JunkMan: Homeworld G1 B2 Y3

2) istari: Homeworld G3 B2 Y3

3) Jesse: Homeworld G3 B1 Y3

4) JunkMan: Build Y1 Junkman

5) istari: Build Y1 Istari

6) Jesse: Build Y1 Jesse

7) JunkMan: Trade Y1 G1 Junkman

8) istari: Build Y1 Istari

9) Jesse: Discover Y1 Jesse G2 Groovy

10) JunkMan: Build Y1 Junkman

11) istari: Trade Y1 G1 Istari

12) Jesse: Build Y1 Jesse

13) JunkMan: Build G1 Junkman

14) istari: Build G2 Istari

15) Jesse: Build Y2 Groovy

16) JunkMan: Trade Y1 R1 Junkman

17) istari: Trade G1 R1 Istari

18) Jesse: Trade Y1 R1 Jesse

19) JunkMan: Discover G1 Junkman Y3 Orange

20) istari: Discover G2 Istari B1 Littleblue

21) Jesse: Discover Y2 Groovy G3 Keen

22) JunkMan: Build G1 Orange

23) istari: Build G2 Littleblue

24) Jesse: Build Y1 Jesse

25) JunkMan: Build R1 Junkman

26) istari: Trade G2 Y2 Littleblue

27) Jesse: Build R2 Jesse

28) JunkMan: Discover G1 Orange Y1 Alpha

29) istari: Build Y2 Littleblue

30) Jesse: Trade Y1 B1 Jesse

31) JunkMan: Build G2 Alpha

32) istari: Trade Y2 R2 Littleblue

33) Jesse: Move B1 Jesse Groovy

34) JunkMan: Build R2 Junkman

35) istari: Build R2 Littleblue

36) Jesse: Move R2 Jesse Groovy

37) JunkMan: Move R2 Junkman Orange

38) istari: Build R3 Istari

39) Jesse: Build R3 Jesse

40) JunkMan: Build R3 Orange

41) istari: Sacrifice Y2 Littleblue
Move R2 Littleblue Orange
Move R2 Littleblue Orange
Catastrophe Orange R

42) Jesse: Trade R3 G3 Jesse

43) JunkMan: Build Y1 Junkman

44) istari: Build G2 Littleblue

45) Jesse: Discover G3 Jesse Y2 Swell

46) JunkMan: Move Y1 Junkman Orange

47) istari: Trade G2 Y2 Littleblue

48) Jesse: Build G2 Swell

49) JunkMan: Build Y2 Junkman

50) istari: Move R3 Istari Littleblue

51) Jesse: Sacrifice G3 Swell
Build G3 Swell
Build R2 Jesse
Build B1 Groovy

52) JunkMan: Move R1 Junkman Orange

53) istari: Move R3 Littleblue Groovy

54) Jesse: Sacrifice G3 Swell
Build G3 Swell
Build R2 Groovy
Build R2 Groovy
Catastrophe Groovy R

55) JunkMan: Sacrifice Y2 Junkman
Move G1 Orange Alpha
Move G1 Alpha Istari

56) istari: Attack G1N Istari

57) Jesse: Sacrifice G3 Swell
Build G3 Swell
Build Y2 Keen
Build R2 Jesse

58) JunkMan: Move G1 Alpha Istari

59) istari: Build R2 Istari
	istari: b r2 istari

60) Jesse: Sacrifice Y2 Keen
Move R2 Jesse Groovy
Move B1 Groovy Keen
	istari: Whoops put command in wrong place
	Jesse: I do that fairly often.  There must be a good way of making it harder to make that mistake.

61) JunkMan: Move G2 Alpha Istari
Catastrophe Istari Green

62) istari: Move R2 Istari Orange

63) Jesse: Move G3 Swell Orange

64) JunkMan: Discover G1 Junkman B3 Beta

65) istari: Move R2 Orange Swell

66) Jesse: Sacrifice R2 Jesse
Attack R1N Orange
Attack R2E Swell

67) JunkMan: Build G1 Beta

68) istari: Trade Y1 G1 Istari

69) Jesse: Attack Y1N Orange

70) JunkMan: Sacrifice G1 Beta
Build R2 Junkman

71) istari: Build Y1 Littleblue

72) Jesse: Build G1 Orange

73) JunkMan: Build G2 Beta

74) istari: Build G3 Istari

75) Jesse: Sacrifice G3 Orange
Build Y1 Keen
Build Y2 Groovy
Build G3 Orange

76) JunkMan: Trade G2 B2 Beta

77) istari: Build G2 Littleblue

78) Jesse: Sacrifice G3 Orange
Build G3 Orange
Build B2 Groovy
Build B3 Keen

79) JunkMan: Pass

80) istari: Move Y2 Littleblue Orange

81) Jesse: Sacrifice G3 Orange
Build G3 Swell
Build R2 Groovy
Build R3 Jesse

82) JunkMan: Pass

83) istari: Build R3 Istari

84) Jesse: Sacrifice G3 Swell
Build G3 Swell
Build R3 Orange
Build B3 Keen

85) JunkMan: Move R1 Junkman Orange

86) istari: Move R3 Istari Keen

87) Jesse: Sacrifice R2 Groovy
Attack R1N Orange
Attack R3E Keen

88) JunkMan: Build R2 Junkman

89) istari: Sacrifice Y2 Orange
Move Y3 Istari Orange
Move Y1 Littleblue Orange
Catastrophe Orange Y

90) Jesse: Build B3 Groovy

91) JunkMan: Trade G1 Y1 Beta

92) istari: Trade G2 Y2 Littleblue

93) Jesse: Sacrifice Y2 Keen
Move B3 Groovy Beta
Discover G3 Swell Y3 Nifty

94) JunkMan: Discover B2 Beta Y2 Delta

95) istari: Trade G3 Y3 Istari

96) Jesse: Sacrifice Y3 Jesse
Move B3 Keen Junkman
Move G3 Nifty Junkman
Move B3 Keen Junkman

97) JunkMan: Attack G3S Junkman

98) istari: Build R1 Istari

99) Jesse: Sacrifice R3 Jesse
Attack Y3N Junkman
Attack G3N Junkman
Attack R2N Junkman

100) JunkMan: Move Y1 Beta Junkman

101) istari: Sacrifice Y2 Littleblue
Move R1 Istari Jesse
Move R1 Istari Jesse

102) Jesse: Sacrifice R3 Keen
Attack R2N Junkman
Attack Y1N Junkman
Attack R1E Jesse



1447)
Started: 2005.11.15, Ended: 2005.11.16
Participants: jeep (S), sketchwick (N)
Winner: sketchwick

1) sketchwick: Homeworld B1 Y2 G3

2) jeep: Homeworld Y1 B3 G3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build G1 Jeep

5) sketchwick: Discover G1 Sketchwick B3 J33p

6) jeep: Discover G1 Jeep B2 Sk37chw1ck

7) sketchwick: Trade G1 Y1 J33p

8) jeep: Build G1 Jeep

9) sketchwick: Build G1 Sketchwick

10) jeep: Build G2 Sk37chw1ck

11) sketchwick: Sacrifice G1 Sketchwick
Build Y1 J33p

12) jeep: Trade G2 Y2 Sk37chw1ck

13) sketchwick: Build G1 Sketchwick

14) jeep: Build Y2 Sk37chw1ck

15) sketchwick: Discover Y1 J33p B2 Notleet

16) jeep: Sacrifice Y2 Sk37chw1ck
Discover Y2 Sk37chw1ck Y3 Run
Discover G1 Sk37chw1ck Y3 Savit

17) sketchwick: Sacrifice G3 Sketchwick
Build Y2 J33p
Build Y3 Notleet
Build G2 Sketchwick

18) jeep: Build G2 Savit

19) sketchwick: Trade G2 R2 Sketchwick

20) jeep: Trade G1 R1 Jeep

21) sketchwick: Move Y3 Notleet Savit

22) jeep: Build R1 Jeep

23) sketchwick: Trade Y2 R2 J33p

24) jeep: Sacrifice Y2 Run
Move G2 Savit Notleet
Move G1 Savit Notleet

25) sketchwick: Move Y3 Savit Notleet

26) jeep: Sacrifice G2 Notleet
Build G1 Notleet
Build G2 Jeep

27) sketchwick: Sacrifice R2 J33p
Attack G1 Notleet
Attack G1 Notleet

28) jeep: Discover G2 Jeep B2 Blue23

29) sketchwick: Build Y2 Notleet

30) jeep: Trade G2 Y2 Blue23

31) sketchwick: Sacrifice G1 Notleet
Build Y3 J33p

32) jeep: Discover Y2 Blue23 Y3 Goblin

33) sketchwick: Trade Y2 R2 Notleet

34) jeep: Discover R1 Jeep B2 Jeepisdumb

35) sketchwick: Build G1 Notleet

36) jeep: Sacrifice G3 Jeep
Build R1 Jeepisdumb
Build R2 Jeepisdumb
Build R3 Jeep

37) sketchwick: Build R3 Notleet

38) jeep: Trade R2 G2 Jeepisdumb

39) sketchwick: Sacrifice Y3 J33p
Move R3 Notleet Jeep
Move R2 Notleet Jeep
Pass
Catastrophe Jeep Red



1458)
Started: 2005.11.15, Ended: 2005.11.19
Participants: Personman (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G1 B3 Y3

2) Personman: Homeworld G3 B2 Y3

3) MatrixFrog: Build Y1 Matrixfrog

4) Personman: Build Y1 Personman

5) MatrixFrog: Trade Y1 G1 Matrixfrog

6) Personman: Discover Y1 Personman G1 Ix

7) MatrixFrog: Build G2 Matrixfrog

8) Personman: Build Y1 Personman

9) MatrixFrog: Discover G1 Matrixfrog Y2 Xi

10) Personman: Trade Y1 B1 Personman

11) MatrixFrog: Build G2 Xi

12) Personman: Move B1 Personman Ix

13) MatrixFrog: Build Y1 Matrixfrog

14) Personman: Build B1 Ix

15) MatrixFrog: Build G2 Matrixfrog

16) Personman: Move B1 Ix Xi

17) MatrixFrog: Trade G2 R2 Matrixfrog

18) Personman: Build B1 Ix

19) MatrixFrog: Move G2 Xi Ix

20) Personman: Build Y1 Personman

21) MatrixFrog: Sacrifice R2 Matrixfrog
Attack B1 Ix
Attack Y1 Ix

22) Personman: Build B2 Ix

23) MatrixFrog: Build B2 Ix
Catastrophe Ix B

24) Personman: Trade Y3 R3 Personman

25) MatrixFrog: Move G1 Xi Ix

26) Personman: Build Y2 Personman

27) MatrixFrog: Build G2 Matrixfrog

28) Personman: Move R3 Personman Ix

29) MatrixFrog: Sacrifice Y3 Matrixfrog
Move G2 Ix Personman
Move G1 Ix Personman
Move Y1 Ix Personman

30) Personman: Sacrifice Y2 Personman
Move R3 Ix Xi
Move R3 Xi Matrixfrog

31) MatrixFrog: Sacrifice G2 Matrixfrog
Build Y2 Personman
Build Y2 Personman
Catastrophe Personman Y
	MatrixFrog: Very good game.



1440)
Started: 2005.11.15, Ended: 2005.11.22
Participants: Personman (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld Y2 B1 G3

2) Personman: Homeworld Y3 G2 B3

3) MatrixFrog: Build G1 Matrixfrog

4) Personman: Build B1 Personman

5) MatrixFrog: Build G1 Matrixfrog

6) Personman: Trade B1 G1 Personman

7) MatrixFrog: Discover G1 Matrixfrog Y3 Alpha

8) Personman: Build G2 Personman

9) MatrixFrog: Discover G1 Alpha Y1 Beta

10) Personman: Move G1 Personman Beta

11) MatrixFrog: Move G1 Beta Personman

12) Personman: Trade G2 R2 Personman

13) MatrixFrog: Build G2 Personman

14) Personman: Sacrifice R2 Personman
Attack G1 Personman
Attack G2 Personman

15) MatrixFrog: Trade G1 Y1 Matrixfrog

16) Personman: Trade G2 Y2 Personman

17) MatrixFrog: Build Y1 Matrixfrog

18) Personman: Build Y2 Personman

19) MatrixFrog: Discover Y1 Matrixfrog Y3 Epsilon

20) Personman: Trade Y2 R2 Personman

21) MatrixFrog: Discover Y1 Epsilon G1 Gamma

22) Personman: Build G2 Beta

23) MatrixFrog: Build Y2 Gamma

24) Personman: Sacrifice Y2 Personman
Discover G2 Beta R3 Temp
Move G2 Temp Matrixfrog

25) MatrixFrog: Build Y2 Matrixfrog

26) Personman: Move R2 Personman Gamma

27) MatrixFrog: Trade Y1 R1 Matrixfrog

28) Personman: A Y2N Gamma

29) MatrixFrog: Build R1 Matrixfrog

30) Personman: Sacrifice Y2 Gamma
Discover R2 Gamma R3 Temp
Move R2 Temp Matrixfrog

31) MatrixFrog: Attack R2 Matrixfrog

32) Personman: Build B1 Personman
	Personman: oh. I read that rule wrong. oops. now i know.

33) MatrixFrog: Attack G2 Matrixfrog

34) Personman: Build G2 Beta

35) MatrixFrog: Discover R2 Matrixfrog Y3 Theta

36) Personman: Build B1 Personman

37) MatrixFrog: Move R2 Theta Beta

38) Personman: Build G3 Beta

39) MatrixFrog: Build G3 Matrixfrog

40) Personman: Trade B1 R1 Personman

41) MatrixFrog: Sacrifice G3 Matrixfrog
Build Y1 Gamma
Build Y2 Gamma
Build R2 Beta

42) Personman: Build R2 Personman

43) MatrixFrog: Attack G2 Beta

44) Personman: Move R1 Personman Gamma

45) MatrixFrog: Sacrifice Y2 Matrixfrog
Move Y1 Gamma Personman
Move Y1 Gamma Personman

46) Personman: Sacrifice G3 Beta
Build R3 Gamma
Build R3 Gamma
Build R3 Personman
	Personman: Oh crap. I totally saw your y2 in gamma as a y1 because the name of the system is on top of it... that's bad.

47) MatrixFrog: Move Y2 Gamma Personman
Catastrophe Personman Y
	MatrixFrog: How is a y2 any worse? I can still do this either way...

48) Personman: Trade R2 Y2 Personman
	Personman: i couldn't attack it last turn. 

49) MatrixFrog: Attack G1 Beta
	MatrixFrog: Aha.

50) Personman: Move G1 Personman Gamma

51) MatrixFrog: Build G3 Beta

52) Personman: Sacrifice Y2 Personman
Discover R3 Gamma G3 Temp
Move R3 Temp Matrixfrog

53) MatrixFrog: Attack R3 Matrixfrog

54) Personman: Build R2 Personman
	Personman: I think I've lost. good game!

55) MatrixFrog: Trade R3 Y3 Matrixfrog

56) Personman: Build R3 Gamma

57) MatrixFrog: Sacrifice Y3 Matrixfrog
Move G1 Beta Personman
Move G3 Beta Personman
Move G2 Beta Personman
Catastrophe Personman G



1466)
Started: 2005.11.16, Ended: 2005.11.29
Participants: jeep (S), sketchwick (N)
Winner: jeep

1) sketchwick: Homeworld B1 Y2 G3

2) jeep: Homeworld Y1 B3 G3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build G1 Jeep

5) sketchwick: Discover G1 Sketchwick B3 Grape

6) jeep: Discover G1 Jeep B2 Ape

7) sketchwick: Trade G1 Y1 Grape

8) jeep: Build G1 Jeep

9) sketchwick: Build G1 Sketchwick

10) jeep: Build G2 Ape

11) sketchwick: Sacrifice G1 Sketchwick
Build Y1 Grape

12) jeep: Trade G2 Y2 Ape

13) sketchwick: Build G1 Sketchwick

14) jeep: Trade G1 R1 Jeep

15) sketchwick: Discover Y1 Grape R2 Rape

16) jeep: Build G1 Jeep

17) sketchwick: Sacrifice G3 Sketchwick
Build G2 Sketchwick
Build Y2 Rape
Build Y3 Grape

18) jeep: Sacrifice G3 Jeep
Build G2 Jeep
Build G2 Ape
Build Y3 Ape

19) sketchwick: Sacrifice Y3 Grape
Move Y1 Rape Grape
Move Y1 Grape Ape
Move Y1 Grape Ape
Catastrophe Ape Yellow

20) jeep: Trade G2 Y2 Jeep

21) sketchwick: Trade G1 R1 Sketchwick

22) jeep: Trade G1 Y1 Ape

23) sketchwick: Build G1 Sketchwick

24) jeep: Build G1 Ape

25) sketchwick: Discover G1 Sketchwick B3 Nape

26) jeep: Sacrifice G2 Ape
Build Y1 Jeep
Build Y3 Ape
	sketchwick: so what do you think of my move to blow up your yellow?
	jeep: I didn't like it.  (must mean it was an alright move for you)

27) sketchwick: Build G2 Sketchwick

28) jeep: Build Y3 Ape

29) sketchwick: Sacrifice G2 Sketchwick
Build G2 Sketchwick
Build Y3 Rape

30) jeep: Sacrifice Y3 Ape
Move Y1 Jeep Rape
Move Y1 Ape Nape
Move Y1 Nape Rape
Catastrophe Rape Yellow

31) sketchwick: Trade G2 Y2 Sketchwick

32) jeep: Build G2 Jeep

33) sketchwick: Build G2 Nape

34) jeep: Trade G2 R2 Jeep

35) sketchwick: Trade G1 B1 Nape

36) jeep: Build Y1 Ape

37) sketchwick: Trade B1 Y1 Nape

38) jeep: Discover Y1 Ape G3 Tape
	sketchwick: shoulda just forced your surrender :)

39) sketchwick: Move Y2 Sketchwick Tape

40) jeep: Sacrifice Y2 Jeep
Move Y3 Ape Nape
Move Y3 Nape Sketchwick
	jeep: I'm on my way back home now.  Little internet access until Monday.

	SYSTEM: sketchwick resigns.


1487)
Started: 2005.11.18, Ended: 2005.11.21
Participants: Hedge_o_Matic (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	Hedge_o_Matic: Hi, Andy!
	Hedge_o_Matic: This is my first-ever game of Homeworlds!
	andylooney: hello and welcome to the game!

2) Hedge_o_Matic: Homeworld G1 B2 Y3

3) andylooney: Build Y1 Andylooney
	Hedge_o_Matic: Yay!  My first homeworld!  (sniff)

4) Hedge_o_Matic: Build Y1 Hedge_o_matic

5) andylooney: Trade Y1 G1 Andylooney

6) Hedge_o_Matic: Trade Y1 R1 Hedge_o_matic

7) andylooney: Discover G1 Andylooney Y3 Clampett

8) Hedge_o_Matic: Move R1 Hedge_o_matic Clampett

9) andylooney: Discover G1 Clampett G1 Gumby
	andylooney: Well, aren't you aggresive! I didn't realize before that you'd mirrored my homeworld...

10) Hedge_o_Matic: Trade Y3 G3 Hedge_o_matic

11) andylooney: Build Y1 Andylooney

12) Hedge_o_Matic: Build G2 Hedge_o_matic

13) andylooney: Sacrifice Y3 Andylooney
Move G1 Gumby Clampett
Move G1 Clampett Hedge_o_matic
Pass
Catastrophe Hedge_o_matic Green
	andylooney: Thanks for the game and better luck next time!



1494)
Variants: "Sinister"
Started: 2005.11.20, Ended: 2005.11.28
Participants: Personman (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B1 G2 Y3
	Personman: I accepted this challenge without knowing what sinister is, so I'm hoping i don't regret it :) oddly, the rules for this option are not in the wiki or on the wunderland page. I am about to go google it, but if i find nothing i will be wanting to know what it is...
	Personman: oh. um, correct me if i'm wrong, but isn't sinister entirely irrelevant in a two player game
	Jesse: Yeah, there's no functional difference between regular and sinister two-player homeworlds.  I was just feeling a little evil when I set up the game.  Also, I was curious whether the system would allow it.

2) Personman: Homeworld B3 G1 Y3
	Jesse: Here's a tip: If you want a brief description of the game variants, you can click on "New Challenge" on the challenges page.  The new challenge page always has a brief description of each variant.
	Jesse: So, have you played Homeworlds other than a couple of games on this server?
	Personman: nope! but I've played it a couple times on the server, and I love it so far. If I'm ever in the same room with other gamers and an icehouse set, i'll probably make them play it.

3) Jesse: Build Y1 Jesse

4) Personman: Build Y1 Personman
	Jesse: Okay, I'll try to teach you a thing or two while we play.  Let me know if there's anything you're unsure about.

5) Jesse: Discover Y1 Jesse G3 Fresh

6) Personman: Build Y1 Personman

7) Jesse: Build Y2 Jesse
	Jesse: That's not so good, because it gives me the first shot at a medium.

8) Personman: Discover Y1 Personman G2 Tazenda

9) Jesse: Trade Y2 G2 Jesse

10) Personman: Build Y2 Tazenda

11) Jesse: Build Y2 Jesse

12) Personman: Trade Y1 B1 Personman
	Jesse: Be careful, you don't want to build right now.  I can fly the y1 at Fresh into either Tazenda or (with a sacrifice) your homeworld.

13) Jesse: Trade Y2 R2 Jesse
	Jesse: Good choice.

14) Personman: Move B1 Personman Tazenda
	Jesse: You usually don't want to wait too long after your opponent takes red before you get into red yourself, though you're not in immediate danger this turn.

15) Jesse: Discover G2 Jesse Y3 Belly

16) Personman: Trade Y2 R2 Tazenda

17) Jesse: Build G1 Belly

18) Personman: Build R1 Tazenda

19) Jesse: Build G1 Belly

20) Personman: Move R2 Tazenda Belly
	Jesse: You have the advantage in red and blue right now, but I'm hoping to make up for that in the long run by freezing you out of green ships.

21) Jesse: Sacrifice R2 Jesse
Attack R2 Belly
Pass
	Personman: Just so you know, I'm not saying anything because i have nothing to say, not because i'm ignoring you. I apprecaite the advice a lot, especially coming *after* my moves as it does. It's a good way to learn. Thanks a lot. 
	Jesse: Great, glad to help!
	Jesse: Don't forget that I can sacrifice my r2 to attack.  It's not ideal here, since there's only one ship I can nab, but I have no problem sacrificing an r2 to take an r2.

22) Personman: Build B1 Tazenda

23) Jesse: Discover G2 Belly B2 Bork

24) Personman: Build B2 Tazenda
	Jesse: I'm thinking about building g3s and swapping them out for b3s to really mess up your plans, but I'm not sure I can do that successfully.  There's a danger of you sending over blues to destroy Bork itself.  Another possibility would be to just build the two g3s and send them into your home system to blast you.

25) Jesse: Build G3 Bork

26) Personman: Trade Y3 G3 Personman

27) Jesse: Sacrifice G3 Bork
Build G3 Bork
Build Y1 Fresh
Build Y2 Jesse
	Jesse: There is a significant danger to switching to a green ship like that.  It's your only ship in the system, and it's the same color as one of the system markers.  I could sacrifice a y2 or y3 to send two green ships in to blast you, except that the only one I have is also the only ship in my own home system.

28) Personman: Trade G3 R3 Personman
	Jesse: This maneuver is called the factory, since it allows you to build ships much faster than normal.  Unfortunately for you, it takes two green ships, or you won't be able to rebuild the g3.
	Jesse: Also, note that it's not possible for me to blast your homeworld without abandoning my own, so you need to defend by either changing the g3 to another color, or recalling a red, blue, or yelow ship from Tazenda.

29) Jesse: Build G3 Bork
	Jesse: Heh, excuse me.  I meant "it's now possible", not "it's not possible".  I suppose you probably figured that out, but it's best to be clear.

30) Personman: Build Y2 Tazenda
	Personman: yeah, i noticed that. :)

	Jesse: Since you don't have any green ships, I'm fairly safe doing this.  I have two large ships within range of your homeworld, and could put them both in there at the same time using a y2 sacrifice.  Think about how you might defend yourself against that.

31) Jesse: Build R1 Belly
	Jesse: One defense against attackers is to attack them and make them your own.  But with two of them in your system, simply attacking one of them would leave the other free to capture two ships with an r2 sacrifice.  If you had an r2 to sacrifice, you could capture both g3s at once, so I would be very cautious about sending them in.
	Jesse: The other way is to destroy them by causing a catastrophe.  In this case, that isn't possible because you don't have any green ships, and there aren't any available for you to switch any of your ships.  Besides, that would destroy half of your system anyway, and presumably you don't want that.
	Jesse: Okay, since you've already moved, I'm going to go a little easy on you right now to give you some more time to process it.

32) Personman: Trade Y2 R2 Tazenda
	Jesse: (The things I'm *not* doing here are using my factory, switching a g3 for a y3 or a b3, invading your homeworld, and spreading out my yellows so I can build that y3 as soon as you build the y2.)

33) Jesse: Move Y1 Fresh Bork
	Jesse: Yeah, that will be safer.

34) Personman: Move B1 Tazenda Fresh
	Jesse: So, now I'm spreading out my yellows, as well as giving my g3s more mobility.

35) Jesse: Sacrifice R1 Belly
Attack B1 Fresh

36) Personman: Discover B2 Tazenda Y3 Toosk
	Jesse: Now I have a blue, though it's debatable whether it was worth sacrificing my r1 to get it.

37) Jesse: Trade G2 R2 Bork
	Jesse: Good choice!

38) Personman: Discover B2 Toosk G2 Plover

39) Jesse: Trade G3 Y3 Bork
	Jesse: Ooh, another good choice!

40) Personman: Build B2 Plover

41) Jesse: Build G3 Bork

42) Personman: Trade B2 Y2 Plover

43) Jesse: Sacrifice Y3 Jesse
Move G3 Bork Personman
Move G3 Bork Personman
Move Y3 Bork Personman
	Jesse: I should point out that with me having three large ships on your doorstep now, you're in a very dangerous position.  If I send them all in at once, you won't be able to capture them all in one turn.  You could really use another large ship at home, or another r3 anywhere that you could sacrifice.  Unfortunately, it's very hard for you to get them, right now.  You're pretty well on the ropes facing four against one large ships.
	Jesse: In fact, I think sending my ships in now is a finishing blow.  There doesn't seem to be much point in dragging this out, so I'll go ahead and do it.  Let me just say you've played well without any direction these last few turns, you were just in a very difficult situation.  I think the main lesson of this game may be this: Be wary of your opponent freezing you out of ships of any given color.  Once I got ahead in green, and built a factory, I had much better production capacity which allowed me to get ahead with other things as well.  Except blue.  Making a run on blue ships was a good idea, but you don't want to do it at the expense of being frozen out of something else.

44) Personman: Sacrifice R2 Tazenda
Attack G3 Personman
Attack Y3 Personman

45) Jesse: Sacrifice R2 Belly
Attack R3 Personman
Attack Y3 Personman
	Jesse: Right, that's your best delay tactic.

	Personman: Alrighties. Well, I can see my doom quite clearly at this point, so I won't make us go through the motions. Thanks for a great game and advice. Perhaps we shall play again someday. 
	SYSTEM: Personman resigns.


1547)
Started: 2005.11.20, Ended: 2005.11.27
Participants: MarkSteere (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld G2 B3 Y3
	MarkSteere: Thank you for offering to teach this to me.  I imagine the rules are not all that complicated, but I think I do need someone to walk me through it.

	MarkSteere: ..Can I be the evil one?  I like the idea of wanton destruction more than banding together.

	Laurie_Menke: LOL...actually, I think we're both the evil ones....the version that Aaron has implemented doesn't seem to have that evil/good distinction.  It's just every player for themselves.  :o)
	Laurie_Menke: Now...the first thing you have to do is make a homeworld.  Your homeworld will have two stars (a binary star system) and one ship protecting it.  Because the size of the stars effects movement later, you want to make sure they are two DIFFERENT sizes, and not exactly the same sizes as my two.  Your ship should always be a 3 to start, because it's strongest.  Color-wise, use green, blue, and yellow between your two stars and one ship.  Diversity is good, and you won't need red until later.

2) MarkSteere: Homeworld B1 G3 Y3
	Laurie_Menke: So since I've got a 2 and a 3 in my star system, you'll want either a 1 & 2 or 1 & 3.  So you'll type something like this (you can change the colors and numbers):  "homeworld b1 g3 y3"
	MarkSteere: homeworld b1 g3 y3
	MarkSteere: homeworlds b1 g3 y3
	MarkSteere: homeworld b1 g3 y3
	MarkSteere: homeworld B1 G3 Y3
	MarkSteere: There's already a problem.  Not good.
	Laurie_Menke: Oh, I'm sorry...I've made that same mistake myself.  There's actually a different input box for commands.  Your first command was perfect...you just need to put it in the box at the top left of the screen.  Sorry I was so long in responding!  :o(

3) Laurie_Menke: Build Y1 Laurie_menke
	MarkSteere: oops    :D
	MarkSteere: Why is my ship located differently from yours?

	Laurie_Menke: The computer just randomly places it somewhere in the square.  The position within the square doesn't matter.  When you move, you will be moving to a different black square.
	Laurie_Menke: But you can't move yet, because you can't leave your homeworld without a ship.  So the next thing we each need to do is build up some more ships.  You have to have green available to do that (which we both do).  You can only build ships in colors you already have.  Since we both have yellow ships, we'll both be building more yellow ships for now.
	Laurie_Menke: You can only build the smallest ship available.  Since there are plenty of y1's in the "global stash" (above our playing area), we'll both have to build y1's.

4) MarkSteere: Build Y1 Marksteere
	MarkSteere: Ok, so build y1 in what?


5) Laurie_Menke: Build Y1 Laurie_menke
	MarkSteere: I figured something out.  Awesome!
	MarkSteere: ..So the reason I can't use my y3 is because it has to stay near my home base to protect it, right?

	Laurie_Menke: Right.  If you wanted to, you could move your y3 now because your y1 could stay to protect your homeworld.  But it's smart to always keep a 3-sized ship in your homeworld.
	Laurie_Menke: OK...so now is the first time we have multiple options.  At this point you can:  1) build another yellow ship, 2) move one of your ships to a new location, or 3) trade one of your yellow ships in for a different color.
	Laurie_Menke: BTW...good job of figuring out the code!  :o)  I told you you'd be flying in no time.  :o)
	Laurie_Menke: Because I am new to the game myself, I really don't know which is the best of those three options to choose right now.  It seems like in most of the games I've played, people keep building at this point.  But sometimes they start moving ships.
	Laurie_Menke: So I'll let you make your own decision.  Here's the way you would code each type.  1) build y2 MarkSteere (it's a y2 now because all the y1's are taken)  2) pick a name for a new system...it can be anything.  For this example, let's call it "Cool."  And let's say you want to move your y1 ship.  The code would be:  discover y1 MarkSteere g2 Cool.  You could actually make the new star system a y2 or b2 or r2, but it has to be a 2 because you have a 1 and a 3 in your system, and you can't travel to the same number.
	Laurie_Menke: 3) trade y3 g3.  Or you could trade in your y1.  You can trade in for any color, but it has to be the same size.
	Laurie_Menke: So...I have now realized that I have typed waaaayyyy too much and you're probably very confused.  I'm sorry.  Let's simplify...would you rather build, move, or trade for this move?

6) MarkSteere: Discover Y1 Marksteere G2 Cool
	MarkSteere: Ok, I understand that I can build another ship of the same color as my existing ship.  Or I can trade one of my existing ships for a different ship of the same size but different color.  I'm a little confused on the move though.  What is the significance of the word "discover" here?  I'm going to do the discover thing just to see what happens.

7) Laurie_Menke: Trade Y1 R1 Laurie_menke
	Laurie_Menke: Good job!  That was the trickiest one, and you did it just great!  :o)  The reason you used "discover" instead of "move" is that you had no star system to move to...there was just blank space between us.  So you "discovered" a new star system in your travels.  Once you have another ship ready for travel, you can simply "move" to that star system if you wish.  But "discovering" new systems also uses up an extra piece (in this case a g2), which sometimes comes in handy if you're trying to keep your opponent from getting that piece.
	Laurie_Menke: Now...I can't build any more, because that would make 4 yellows in my star system.  If that ever happens, you could use the "catastrophe" command to wipe out all the yellows in my system.  So I need to either "discover" like you did or "trade."  I think I'll trade.

8) MarkSteere: Build Y1 Cool
	Laurie_Menke: OK, now your current options are:  1) build a y1 in the MarkSteere system, 2) build a y1 in the Cool system, 3) move your Cool ship back to MarkSteere, 4) discover another new system with your y1 ship in the Cool system, or 5) trade your y3 ship for a different color.

9) Laurie_Menke: Discover Y1 Laurie_menke G1 Factory

10) MarkSteere: Discover Y1 Cool G3 Eastpaloalto
	Laurie_Menke: OK...now one thing we both need to start watching out for is getting too many ships of the same color.  Four of the same color can trigger a catastrophe.  Right now the Cool and Factory star systems are only one move apart and both contain yellow ships.  That's one thing you want to keep an eye out for.
	Laurie_Menke: You're doing great on your own, though...I'll shut up for a while and just let you play.  If you have questions, ask.  :o)

11) Laurie_Menke: Build Y2 Factory
	MarkSteere: How do you keep track of which pieces are yours? I tried to move a ship from the Factory system and it wouldn't let me.

	MarkSteere: ..By the way, you're not talking to much.  I'd be lost without your instructions.  This is really an odyssey.  I wonder if magic mushrooms played a part in the design of this game.  That's not intended as an insult.  All of my games were designed under the (strong) influence of California greenbud.  Although I'm sober now for health reasons.  I think there may have been something stronger involved in the inception of Homeworlds.
	Laurie_Menke: Actually, Andy Looney freely admits that marijuana plays a part in developing his games.  He even has a game out called Stoner Fluxx in which some of the profits go to charities trying to legalize marijuana.  ;o)
	Laurie_Menke: As for keeping track of pieces, it is sort of hard to see who's who after a while.  Your own ships are always facing away from you.  So in this case, your ships face down, mine face up.
	Laurie_Menke: BTW...I noticed East Palo Alto...does that mean you live in the Bay Area?  Because I'm in Davis....small world.  :o)

12) MarkSteere: Trade Y3 R3 Marksteere

	MarkSteere: I live in downtown Palo Alto.  This is my first house which I bought a couple of years ago.  It's wierd feuding with the neighbors instead of management.

13) Laurie_Menke: Move Y2 Factory Laurie_menke
	Laurie_Menke: LOL...well, I'm still renting, so maybe that's a good thing, eh?

14) MarkSteere: Build Y2 Eastpaloalto
	MarkSteere: Renting isn't so bad.  The worst thing about it is that the owner or management can come into your space.  They (usually) give you notice, but it still sucks.  And then after the inevitable feud, you still have to go to them to get your packages.  Yuck.  I won't miss that at all.

15) Laurie_Menke: Trade Y2 B2 Laurie_menke
	MarkSteere: .. of course that's apartments.  Renting a house is probably a different animal.
	MarkSteere: ..Are you near the university?
	Jesse: Hi, guys.  I was just reading through the discussion here (great introductory explanations, Laurie!), and wanted to mention one thing.  To give credit where it is due, I don't think Andy actually had much input on the design of Homeworlds, though he was instrumental in developing the two-player version, with its reduced stash.  Homeworlds development was captained by John Cooper, with input from his regular game development and playtesting group.  I don't know which, if any of them, smoke (not that it matters).
	Laurie_Menke: Oh...I didn't know that!  Thanks for the clarification, Jesse.  I hereby apologize to John Cooper.  My bad...  And thanks, also, for the compliment.  :o)  You're the expert at this game, so please add anything that would be helpful or correct me if I make a mistake.  :o)
	Laurie_Menke: And Mark, I'm in North Davis, about 3 miles from the university, and am renting a co-op apartment.  And I know what you mean about management coming in all the time...it is a pain.

16) MarkSteere: Discover Y2 Eastpaloalto G2 Menlopark
	MarkSteere: Thank you for the clarification Jesse.  I too had assumed Andy Looney was the original inventor.
	MarkSteere: Apparently John also invented Icehouse, another game I had thought Andy Looney invented.

17) Laurie_Menke: Move B2 Laurie_menke Factory
	MarkSteere: I was always afraid management would let my cats out.  It's hard to convey how much I'm attached to my cats and vice versa.  If you and my cats were in a burning building, you might have to fend for yourself.
	Laurie_Menke: Yep...I have two cats myself, and they are my "kids."  ;o)

18) MarkSteere: Build Y2 Eastpaloalto
	MarkSteere: I don't know where we're going in this game.  If you see a way to attack me, don't hold back.  I will learn from that.  Or do we have to set up all the pieces before the attack phase begins?

19) Laurie_Menke: Build Y2 Factory
	Laurie_Menke: Yes, that's my biggest frustration with this game...it's hard to know what the goal is at any particular time.

20) MarkSteere: Build R1 Marksteere
	Laurie_Menke: The ultimate goal is to destroy or take over the opponent's homeworld.  In my experience, this frequently happens because of "sacrifice" and "catastrophe" actions.  For example, right now I *could* sacrifice my y3 in my homeworld to get three movement turns in a row.  I could then move my two yellows from Factory to EastPaloAlto, making a total of 4 yellows in one place, and then trigger a catastrophe that removed all 4 ships.  I don't want to do that because I would lose three ships in the process, but that's an example of the kind of thing you're trying to set up.
	Laurie_Menke: Attacking doesn't happen as often as you'd think it would, because it's hard to get your ships and the enemy ships in the same star system.  But it does happen from time to time.
	Laurie_Menke: My personal goal right now is to try to get more 3-sized ships.  That's why I'm building so much yellow...to get to the 3-sized ones.  Then I can trade the y3's in for 3's of other colors, which gives me good "sacrificing" power.
	MarkSteere: I think I still need advice on my moves.  Right now I'm just creating more pieces and trading them.  Is it possible to create more star systems, or is there a limit on that?

	MarkSteere: I keep getting errors like these systems are not connected or you don't have access to this technology.

21) Laurie_Menke: Trade Y3 G3 Laurie_menke
	Laurie_Menke: You can discover an unlimited number of star systems.  However, the star you choose it to be must first be available in the global stash, and second be a different number from the star system you're coming from.  So if you're coming from MarkSteere, it would have to be a 2.  From EastPaloAlto a 1 or a 2, etc.
	Laurie_Menke: The "these systems are not connected" error message has to do with what I just described...the numbers of the star systems.  The "you don't have access to this technology" error message means you are trying to do something that doesn't match the colors you have.  For example, you couldn't trade one of your yellow ships for a different color in EastPaloAlto because there is no blue--the trading color--available there.

22) MarkSteere: Move Y2 Eastpaloalto Factory
	Laurie_Menke: As for advice on your moves, let's see...  One option would be to sacrifice your y2 in MenloPark in order to move both your yellow from EastPaloAlto to Factory.  You could then end your turn by creating a catastrophe in Factory that would wipe out all yellow ships there.  I wouldn't recommend it, because you'd lose three ships in the process of knocking out only two of mine.  But it's a thought.  ;o)
	Laurie_Menke: Another option would be to move your y2 from EastPaloAlto to Factory this turn.  Then next turn you could sacrifice your r3 (a bit of a risky move because it leaves your homeworld vulnurable) in order to attack all three of my ships in Factory.  That's probably what I would do myself.
	Laurie_Menke: Or you could continue to either build or spread your ships out among more star systems.
	MarkSteere: When you sacrifice, are the pieces permanently removed, or do they go back into the stockpile?

23) Laurie_Menke: Move Y2 Factory Laurie_menke
	Laurie_Menke: They go back into the stock pile.
	Laurie_Menke: OK, now that I look at it, I gave you bad advice (as I've said, I'm still learning this game myself).  Now that you've moved into Factory, I can see that I *could* sacrifice my r1 in Laurie_Menke in order to attack your y2 in Factory and stop you imminent attack on me.  I didn't think of that when I suggested it to you.  :o(  Sorry.  So...I'm not going to do that move...I'm just going to try to save one of my men.

24) MarkSteere: Sacrifice R3 Marksteere Attack Y1 Factory
Attack B2 Factory
Pass
Pass
	Laurie_Menke: So now, if you would like to attack, you would type:  "sacrifice r3 MarkSteere (carriage return) attack y1 Factory (carriage return) attack b2 Factory (carriage return) pass"  You need the pass at the end because you have three attack moves available but can only use two.

25) Laurie_Menke: Build Y3 Laurie_menke
	Laurie_Menke: Oops...you only wanted to pass on one of your attacks, not two.  Now my y1 is going to get away.
	Laurie_Menke: Actually, maybe I'll let it stay for the moment.  I want to build some more 3-sized ships.

26) MarkSteere: Build Y3 Eastpaloalto
	MarkSteere: I got an error with the one pass.  It said something like you need to pass, so I changed it to two.
	MarkSteere: ..Please don't hold back on beating me, even if it's at the expense of having given my poor advice.  I'm anxious to see what happens.  I'm starting to get the feeling like we're playing Tonka toys in a sandbox with no goal in sight.

27) Laurie_Menke: Trade Y2 R2 Laurie_menke
	Laurie_Menke: Huh...that's strange about the error.  And, yes, I know what you mean about feeling like there's no goal.  That's what I meant in our early e-mails about the movement being pretty easy to learn, but knowing what the goal should be is the tough part.  I still haven't learned that myself, so at this point I think we're probably about even in our skill level.  ;o)

28) MarkSteere: Build Y2 Eastpaloalto

29) Laurie_Menke: Move Y1 Factory Eastpaloalto
Catastrophe Eastpaloalto Y
	Laurie_Menke: OK, here's what I warned about with getting too many of one color together.  I'm gong to move from Factory to EastPaloAlto and cause a catastrophe, which will wipe out three of your ships and only one of mine...

30) MarkSteere: Build R1 Marksteere
	Laurie_Menke: Notice that since there were no ships in the EastPaloAlto system any more, the system disappeared, and all the other systems rearranged themselves.  The rearranging doesn't mean anything...it's just a slightly annoying thing that the computer program does for unknown reasons.  ;o)
	Laurie_Menke: You've still got five ships to my four, but it sort of levelled the playing field a little.  But now I'm thinking I'm going to try to move into your homeworld with a 2 or 3 sized ship, since you've only got a 1 protecting it.

31) Laurie_Menke: Discover Y3 Laurie_menke Y1 Lookout

32) MarkSteere: Trade R1 G1 Marksteere
	MarkSteere: build g3 laurie_menke

33) Laurie_Menke: Discover Y3 Lookout R2 Hereicome

34) MarkSteere: Build G1 Marksteere
	MarkSteere: Just when I thought I wasn't confused enough, now I have hyperspatial flux to contend with.

35) Laurie_Menke: Build G3 Laurie_menke
	Laurie_Menke: LOL!

36) MarkSteere: Build R1 Marksteere

37) Laurie_Menke: Move Y3 Hereicome Marksteere

38) MarkSteere: Trade R1 Y1 Marksteere

39) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack R1 Marksteere

40) MarkSteere: Move Y1 Marksteere Menlopark

41) Laurie_Menke: Sacrifice R2 Laurie_menke
Attack G1 Marksteere
Attack G1 Marksteere
	Laurie_Menke: Well, I think that about does it, Mark.  Good job on your first game!  :o)



1531)
Started: 2005.11.20, Ended: 2005.11.21
Participants: MatrixFrog (S), Calavera (N)
Winner: Calavera

1) Calavera: Homeworld Y1 B3 G3

2) MatrixFrog: Homeworld B3 Y2 G3

3) Calavera: Build G1 Calavera

4) MatrixFrog: Build G1 Matrixfrog

5) Calavera: Build G1 Calavera

6) MatrixFrog: Build G2 Matrixfrog

7) Calavera: Discover G1 Calavera B2 Rillanon

8) MatrixFrog: Discover G2 Matrixfrog Y1 Epsilon

9) Calavera: Trade G1 R1 Calavera

10) MatrixFrog: Discover G2 Epsilon Y2 Delta

11) Calavera: Build G1 Rillanon

12) MatrixFrog: Build G2 Delta

13) Calavera: Trade G3 Y3 Calavera

14) MatrixFrog: Sacrifice G3 Matrixfrog
Build G2 Matrixfrog
Build G3 Matrixfrog
Build G3 Delta

15) Calavera: Sacrifice Y3 Calavera
Discover G1 Rillanon R1 Krondor
Move G1 Krondor Matrixfrog
Pass
Catastrophe Matrixfrog G



1551)
Started: 2005.11.20, Ended: 2005.12.1
Participants: Lexicon (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld G2 B1 Y3
	Jesse: Hi, I'll be happy to teach you a bit about Homeworlds.
	Jesse: First of all, have you read the tips for new players on the wiki about setting up your homeworld?

2) Lexicon: Homeworld G2 B3 Y3
	Lexicon: Yep, I've got that part figured out.  I don't know if you're on the mailing list or not, but I've played this game a few times.
	Lexicon: The problem is my friends and I didn't read the rules very carefully (or maybe had a different version of the rules?) and had different powers.  They were more intuitive, but were succeptable to a 2-3 move kill.  

3) Jesse: Build Y1 Jesse
	Jesse: Yeah, that's no good.  Careful play should at least keep you alive for a long time.  Going offensive too soon is usually a big mistake.

4) Lexicon: Build Y1 Lexicon
	Jesse: I am on the mailing list, but I don't check that account all that often.

5) Jesse: Discover Y1 Jesse G3 Tree
	Jesse: So, what is it that you need help with?  What do you find unintuitive about the rules?

6) Lexicon: Trade Y1 R1 Lexicon
	Lexicon: If you've played Gnostica, I'm used to thinking like that.  Its system is build&grow as opposed to build&trade. 
	Lexicon: My understanding of these rules is that the only way to get a 2 pip ship is to run out of 1 pip in some color, then build another of that color.  This is kind of neat, though I'll need a few games to figure out how long it takes to run out of ships of a given size.

7) Jesse: Build Y1 Jesse
	Lexicon: Resource limitations will clearly be more important in this game, and I suspect catastrophies are a more major attack option compared to my version.  
	Lexicon: I expect this game to run long in terms of number of moves, so having people point out when I make blunders is nice for ramping up to speed.  Esp in this format where the game can take a couple weeks to finish and I'm forgetting the strategy I was using early on which only reveals its errors 15 moves in.
	Jesse: I like Gnostica a lot.  You're right about how to obtain the larger ships, and it does take some getting used to.  However, it's a huge part of what makes Homeworlds interesting.  Much of the game revolves around manipulating the economy to get the ships you want while depriving your opponent of similar opportunities.

8) Lexicon: Build Y1 Lexicon
	Jesse: It is unusual among experienced players to jump into red so early.  It simply isn't needed until the opposing forces come into contact with each other (or are seriously threatening to do so).

9) Jesse: Trade Y1 R1 Jesse
	Lexicon: I suppose it's premature.  I'm antsy about catastrophies, as it's easy to burn a yellow to send another yellow into my system from Tree.  
	Lexicon: The early game I'm guessing is spent building up some pips for sacrificing later.  I'm not sure what to store those as, but too many of one color seems an obvious problem.

10) Lexicon: Trade Y3 G3 Lexicon
	Jesse: It's true that I could burn a yellow to send another into your system.  For that reason, you certainly don't want to have three yellows in your system, and shouldn't keep two around for long.  However, if I did send in a ship, you could defend yourself by swapping your y3 for an r3.
	Jesse: The early game is about building up your fleet and gaining control over systems that will let you develop efficiently.  That's mostly yellow, green, and blue.

11) Jesse: Build Y1 Jesse
	Jesse: That said, it isn't really bad to diversify into red, especially if your opponent follows along as I just did.  I just usually wait until either I need to, or it forces my opponent to switch a piece he doesn't want to.
	Jesse: G3s are great, but you probably shouldn't have switched your y3 for one at this point.  You want a large ship at your homeworld for defense at all times, but you don't generally want your g3s at a green star, because you can't use them much.  So it's usual if you start with a blue-green homeworld to wait until you can get a second large ship, and park the g3 at a blue or yellow system.

12) Lexicon: Discover Y1 Lexicon G1 Circle

13) Jesse: Trade Y1 G1 Jesse
	Lexicon: I see what you mean, but it seemed like an excellent way to scoop up a stash of larger ships, such as the nearly depleted green pile there.

14) Lexicon: Build G1 Lexicon
	Jesse: Yeah, getting into green is a great idea.  You want to switch a ship you can afford you move out of your home system, though.
	Jesse: ...afford *to* move out...
	Lexicon: ohhh, in this version it seems a sacrificed piece disappears immediately.  in my version it lasted until the end of the round.  
	Jesse: I see, you were expecting to be able for instance to sacrifice the g3 and build a new green piece in that system, without another already there.  No, it takes two green pieces to make a factory, so it's very dangerous to operate one in a green system.
	Jesse: Tell you what, if you want to build a small green now and switch back to a y3, I'll refrain from sending my g1 in to blast you while you do it.  That way, you've only lost one turn from the extra trade action.  Of course, if you have other plans, that's fine too.
	Lexicon: Exactly the problem.  Another difference is that my rules didn't require you to own a ship of a given color to build a ship of that color.  I'm starting to wonder if we even read the rulebook. 

15) Jesse: Discover G1 Jesse Y3 Delta
	Jesse: That also makes a huge difference.  It's a tricky dance to get the colors you want while trying to make it difficult for your opponent to get into them without taking a disadvantage somewhere else.

16) Lexicon: Trade G3 Y3 Lexicon

17) Jesse: Build R1 Jesse

18) Lexicon: Discover G1 Lexicon Y1 Square

19) Jesse: Build G2 Delta

20) Lexicon: Build G3 Square

21) Jesse: Discover G2 Delta B1 Shrew

22) Lexicon: Sacrifice G3 Square
Build G3 Square
Build Y2 Lexicon
Build R2 Lexicon
	Jesse: You can't afford to build that other g3, but you can at least use your greens as a factory, now.

23) Jesse: Build G3 Shrew
	Lexicon: Yay!  It actually worked! :)


24) Lexicon: Trade R2 B2 Lexicon

25) Jesse: Sacrifice G3 Shrew
Build G3 Shrew
Build Y2 Jesse
Build Y2 Tree

26) Lexicon: Move B2 Lexicon Square
	Jesse: I'd like to get into blue, and to spread my reds out, but I'm snapping up these y2s while I can.

27) Jesse: Move R1 Jesse Tree
	Lexicon: I can see the benefit of such a plan.  The resource scarcity is certainly coming into play now.

28) Lexicon: Move B2 Square Tree

29) Jesse: Attack B2 Tree
	Lexicon: Opps.  Meant to send him to Delta.  Bye bye blue ship.
	Jesse: Ouch!  Yeah, I really hate when that happens.  Too bad undo isn't implemented for Homeworlds yet.
	Jesse: I don't like to win on a trivial mistake like that.  We could ask Aaron for an undo, but he's got a lot on his plate.  Instead, I could just be sporting and send him back to you.

30) Lexicon: Build R2 Lexicon
	Lexicon: When I'm doing teaching games I'm usually playing with a new iffy strategy or such to occupy my time.  Winning against a new player isn't very satisfying.

31) Jesse: Move B2 Tree Square
	Jesse: Granted.  It's even less satisfying when it's because of a typo.  I'll often experiment against new players, too, or take a starting configuration that I know is inefficient.  I otherwise like to exemplify sound strategy, particularly if it is supposed to be a teaching game (beyond just teaching the rules).
	Jesse: Besides, there's a tactical lesson in what would happen after you moved the b2 to Delta, which is that I would probably use my factory to build a couple of r2s while simultaneously moving my g3 to Delta for protection.  Even if I had done something as seemingly innocuous as moving a yellow to Shrew, there's a trap in it.  If you attacked immediately by sacrificing your r1, I'd just move my g3 to your defenseless homeworld, and win shortly thereafter.  If you built an r2 first, I could still do the maneuver I mentioned above, or even just move my g3 into Delta.  Either way, it's not such good news for you.
	Jesse: If you really want to invade Delta, you should do it with your g3.  Unless, of course, you have some nefarious plan I don't know about that specifically calls for blue.
	Jesse: Anyway, go ahead and take the blue guy back.  It's a more interesting game if I have to work to get one for myself.

32) Lexicon: Move R1 Lexicon Square

33) Jesse: Move Y1 Tree Shrew

34) Lexicon: Attack B2N Square

35) Jesse: Trade G3 R3 Shrew

36) Lexicon: Sacrifice G3 Square
Build G3 Square
Build R2 Square
Build B1 Square
	Jesse: Since you already have two green ships at your only planet where you can build green, I can make trouble by trading out my g3, planning to build it back next turn.
	Lexicon: I feel like I've screwed up by building too many things in a non-attacking position, as there's no way to get everything at your star in one go.

37) Jesse: Build G3 Delta

38) Lexicon: Discover R2 Square B3 Hex
	Jesse: You may not have them in attack position right now, but you can move them there over the course of a few turns.  It would have helped to take over Delta, since it's a system you could just chuck things in from one at a time for free.  That's not always the best way to attack, but it's a nice option to have sometimes.  You still have some production to do before you can attack effectively, so try working your way into attack position as you build.  You might move a blue to an r3, or a red to a b3.
	Jesse: You might also consider attacking my production systems.  Tree is the least well protected, obviously.
	Jesse: How to actually go about attacking a position defended by larges, particularly once large red ships are in the equation, can be hard to say.  I usually take my time building a force and just keep looking for openings to squeeze out some advantage, like with that g3->r3 swap.  To attack your homeworld, I might look for a good moment to move my y2 from Tree into an attack position where I could sac my home y2 to blast your yellow ships and force you to recall some ship for defense.  You could look to do something similar to me, but you'd have a harder time since you have one less yellow ship.
	Jesse: It would be hard for me to blast your system markers, since I don't have any blue yet, and blasting your green would call for a huge sacrifice on my part, so I'm really not sure how I'm going to take you out at this point.  You have the advantage of a pretty good shot at blasting my blue, but green will be quite difficult.
	Jesse: Is that helpful?
	Lexicon: Yeah, that's making sense.  It's coming together now that the resources are gone and each players abilities are more determined.  Earlier it was too wide open for me to know what to do.
	Lexicon: Sorry I've taken so long.  Thanksgiving of course, but then I wanted to wait til I had time to sit and give this game a good long stare.

39) Jesse: Discover G1 Delta B2 Shiny
	Jesse: That's fine.

40) Lexicon: Sacrifice G3 Square
Build G3 Square
Build R2 Square
Build R3 Hex

41) Jesse: Sacrifice G3 Delta
Build G3 Shiny
Build Y3 Tree
Build R3 Tree

42) Lexicon: Move B1 Square Hex
	Lexicon: Neat trick!

43) Jesse: Move Y2 Tree Circle
	Jesse: With the stash running out now, things become quite difficult.
	Jesse: That maneuver is called "cashing in an investment".

44) Lexicon: Move Y2 Lexicon Square

45) Jesse: Move R3 Tree Circle

46) Lexicon: Move Y1 Circle Hex

47) Jesse: Move Y2 Jesse Tree

48) Lexicon: Sacrifice G3 Square
Build G3 Square
Build B2 Square
Build B3 Hex
	Jesse: So, the idea now is to dance around and try to undermine each others' positions.

49) Jesse: Sacrifice Y3 Tree
Move Y2 Tree Square
Move Y2 Circle Hex
Move Y2 Hex Square
Catastrophe Square Y
	Jesse: I was hoping to do this more cheaply, but I think I'm going to have to go ahead and remove Square before you can take out my factory.

50) Lexicon: Sacrifice B3 Hex
Trade R3 G3 Hex
Trade B1 G1 Hex
Pass
	Jesse: Well, things look a little different all of a sudden, don't they?
	Lexicon: I was wondering when it would come to that.  That was quite the nuke you sent there.

51) Jesse: Trade G3 Y3 Shiny
	Lexicon: Well, I didn't get to nuke your homeworld, but that buildup of blue still saved my butt.

52) Lexicon: Sacrifice G3 Hex
Build G3 Hex
Build Y1 Lexicon
Build Y2 Hex

53) Jesse: Build G3 Shiny

54) Lexicon: Move G1 Hex Shiny

55) Jesse: Sacrifice G3 Shiny
Build G3 Shrew
Build Y2 Shiny
Build Y2 Shrew

56) Lexicon: Trade Y1 B1 Lexicon

57) Jesse: Move Y2 Shiny Circle
	Jesse: Not bad, but I think you're in trouble...

58) Lexicon: Sacrifice Y1 Hex
Move G1 Shiny Hex
	Lexicon: Oh, I'm definitly in trouble.

59) Jesse: Sacrifice Y3 Shiny
Move Y1 Shrew Lexicon
Move Y2 Shrew Lexicon
Move Y2 Circle Lexicon
Catastrophe Lexicon Y
	Jesse: Unless you specifically wanted to remove that y1, you should know that you could also have moved the g1 to Hex by sacrificing the g1 and rebuilding it.

60) Lexicon: Sacrifice Y2 Hex
Move G3 Hex Circle
Move G3 Circle Lexicon

61) Jesse: Sacrifice Y3 Jesse
Move G2 Shrew Lexicon
Move G3 Shrew Lexicon
Move R3 Circle Lexicon
Catastrophe Lexicon G
	Lexicon: Things are not looking good for our hero.  (my hero at least).

62) Lexicon: Trade G1 Y1 Hex
	Jesse: Not good, no.  After that latest blast, I'll be taking the last of your homeworld defenders next turn.

63) Jesse: Sacrifice R3 Shrew
Attack R2 Lexicon
Attack B1 Lexicon
Pass
	Jesse: Thanks, and I hope the game and the discussion have been instructive.
	Lexicon: sigh.  I think it's time.
	Lexicon: Yeah, I understand it way better now.  I was pretty uninterested in it before this game, but I thought I'd try it out.  It was fun!  Thanks!



1532)
Variants: "Sinister"
Started: 2005.11.21, Ended: 2006.1.18
Participants: Aaron (S), Lexicon (W), Batman (N), porter235 (E)
Winner: Lexicon

1) Batman: Homeworld G3 B1 Y3

2) porter235: Homeworld B3 G2 R3

3) Aaron: Homeworld Y1 B2 G3
	Aaron: Hail, all, and good luck!

4) Lexicon: Homeworld B1 G2 Y3

5) Batman: Build Y1 Batman

6) porter235: Build R1 Porter235

7) Aaron: Build G1 Aaron

8) Lexicon: Build Y1 Lexicon

9) Batman: Trade Y1 R1 Batman

10) porter235: Trade R1 Y1 Porter235

11) Aaron: Trade G1 R1 Aaron

12) Lexicon: Trade Y1 R1 Lexicon

13) Batman: Build Y1 Batman

14) porter235: Build Y1 Porter235

15) Aaron: Build G1 Aaron

16) Lexicon: Build R1 Lexicon

17) Batman: Trade Y1 R1 Batman

18) porter235: Build R2 Porter235

19) Aaron: Trade G1 Y1 Aaron

20) Lexicon: Trade R1 G1 Lexicon

21) Batman: Discover R1 Batman Y2 Robin

22) Lexicon: Pass
	Lexicon: Aaron: If someone is late to a game of Sinister and another player forces his resignation, does his right hand player win or does the right hand player's target shift?  Not that we should hit porter235, I'm just curious about implimentation.
	Lexicon: Also what happens in Sinister if a player resigns?
	Jesse: I believe the effect of forcing resignation is equivalent to the player resigning voluntarily, and that this does not give a win for the player to the right.  It's similar to a player being eliminated by anyone other than the player to the right; the right hand player's target shifts.
	Lexicon: Ah, that makes sense.
	Aaron: That is correct.
	Lexicon: Well, porter hasn't played in 2 weeks nor logged in in 9 days.  Anyone know what happened to him?
	Aaron: No idea.  I think we should go ahead and force his resignation.  It sucks, but it has been 2 weeks.
	Lexicon: I'm for it.
	Lexicon: It's kind of rediculous.  3 of my 4 homeworlds games are in timesup.  And the other one I accidentally resigned, it seems.  Hard to get homeworlds love around here.
	Lexicon: Actually, this had me thinking that good flags on active challenges might be newbies-only and no-newbies (require a certain rating or a certain number of games at game creation time.)

23) Batman: Pass
	SYSTEM: porter235 resigns.
	Lexicon: I resigned him.  But now it thinks it's my turn.  I'll pass and then Batman should pass and then it'll be in the right state.

24) Aaron: Build G1 Aaron

25) Lexicon: Build Y1 Lexicon
	Aaron: I'm really sorry.  The forced resignation code for this particular game has given my tons of trouble.  I'm going to revisit it soon.  Is everything OK now?
	Aaron: I like the idea of a "minimum number of games played" flag.  I will tackle that.

26) Batman: Build Y2 Batman
	Lexicon: Aaron: When you update the game code are you updating it for the current games or just for all newly created games?  

27) Aaron: Discover Y1 Aaron G3 Lime
	Aaron: It depends on the change.  Most changes affect all existing games as well.  I can only think of one or two changes that only applied to newly created games.

28) Lexicon: Discover G1 Lexicon Y3 Cedar

29) Batman: Move Y2 Batman Robin

30) Aaron: Build Y2 Lime

31) Lexicon: Move Y1 Lexicon Cedar

32) Batman: Build Y2 Batman

33) Aaron: Build Y2 Lime

34) Lexicon: Build Y3 Lexicon

35) Batman: Build Y3 Batman

36) Aaron: Sacrifice Y2 Lime
Move Y2 Lime Lexicon
Move Y1 Lime Lexicon
Catastrophe Lexicon Y

37) Lexicon: Move Y1 Cedar Lexicon

38) Batman: Trade Y3 R3 Batman
	Aaron: Thanks for the game, all!

39) Aaron: Trade G1 Y1 Aaron
	Aaron: rofl!  sorry =D  I thought I was in a different game.
	Lexicon: Almost the apocalypse, but not quite.  I saw that coming right as I pressed the submit button.  Oh well.  Perhaps Batman will defend me before you can finish me off. ;)

40) Lexicon: Build Y2 Lexicon

41) Batman: Move R3 Batman Robin

42) Aaron: Build R1 Aaron

43) Lexicon: Build G1 Cedar

44) Batman: Move R3 Robin Cedar

45) Aaron: Discover R1 Aaron G3 Lime

46) Lexicon: Build R2 Lexicon

47) Batman: Attack G1W Cedar

48) Aaron: Move Y1 Aaron Lime

49) Lexicon: Discover G1 Cedar Y2 Mold

50) Batman: Build R2 Cedar

51) Aaron: Build R2 Lime

52) Lexicon: Discover Y1 Lexicon G3 Slime

53) Batman: Move R3 Cedar Aaron
	Aaron: Yellow mold?  ick...

54) Aaron: Attack R3N Aaron

55) Lexicon: Build Y3 Lexicon

56) Batman: Build G1 Cedar

57) Aaron: Move R3 Aaron Cedar

58) Lexicon: Build Y3 Slime
	Batman: I guess I understood that rule wrong.

59) Batman: Build R2 Cedar

60) Aaron: Move R3 Cedar Robin

61) Lexicon: Trade R1 B1 Lexicon

62) Batman: Move Y2 Robin Cedar

63) Aaron: Attack R1N Robin

64) Lexicon: Discover Y1 Slime B2 Octopus

65) Batman: Build Y3 Cedar

66) Aaron: Move R3 Robin Slime

67) Lexicon: Sacrifice R2 Lexicon
Attack R3S Slime
Pass

68) Batman: Move Y3 Cedar Mold

69) Aaron: Build R1 Aaron
	Lexicon: Gah, you're attacking me just so I don't annihilate Cedar aren't you Aaron.
	Lexicon: On another note, I think it'd be better if the moves referenced the player's names instead of their locations.  I can never follow it unless I'm south.  Aaron (S) would be better I think.

70) Lexicon: Build R2 Slime

71) Batman: Move R2 Cedar Mold
	Aaron: That wasn't too smart of me, now was it?

72) Aaron: Trade R1 G1 Aaron

73) Lexicon: Move G1 Mold Slime

74) Batman: Sacrifice Y2 Batman
Move G1 Cedar Aaron
Move G1 Cedar Aaron
Catastrophe Aaron G

75) Aaron: Trade R1 G1 Aaron

76) Lexicon: Move R3 Slime Aaron

77) Batman: Move R2 Cedar Lexicon

78) Aaron: Build Y2 Lime

79) Lexicon: Sacrifice R2 Slime
Attack G1S Aaron
Attack R2N Lexicon

80) Batman: Build R1 Batman
	Aaron: Thanks for the game, all!

81) Lexicon: Trade R3 G3 Aaron
	Lexicon: Aaron: I was considering keeping you around, but that probably wouldn't be very amusing to be toyed with like that, so I'll let you perish with honor. ;)

82) Batman: Move R1 Batman Octopus
	Aaron: Cheers =D

83) Lexicon: Move Y1 Octopus Cedar

84) Batman: Move Y3 Batman Octopus

85) Lexicon: Move G3 Aaron Lime

86) Batman: Move R2 Mold Cedar

87) Lexicon: Move Y2 Lexicon Cedar
Catastrophe Cedar Yellow

88) Batman: Build R1 Batman

89) Lexicon: Sacrifice Y3 Slime
Move G3 Lime Octopus
Move G3 Octopus Batman
Pass
	Lexicon: Really?

90) Batman: Trade R1 Y1 Batman
	Lexicon: That's what I say to that! :)

91) Lexicon: Sacrifice R2 Lexicon
Attack R1N Batman
Attack Y1N Batman

	Lexicon: Good game! :)


1565)
Started: 2005.11.22, Ended: 2005.12.10
Participants: Calavera (S), andylooney (N)
Winner: Calavera

1) andylooney: Homeworld B1 G2 Y3

2) Calavera: Homeworld Y1 B3 G3

3) andylooney: Build Y1 Andylooney

4) Calavera: Build G1 Calavera

5) andylooney: Trade Y1 G1 Andylooney

6) Calavera: Trade G1 R1 Calavera

7) andylooney: Build G1 Andylooney

8) Calavera: Build G1 Calavera

9) andylooney: Trade G1 R1 Andylooney

10) Calavera: Discover G1 Calavera Y2 Riallanon

11) andylooney: Discover G1 Andylooney Y3 Clampett

12) Calavera: Discover G1 Riallanon B3 Krondor

13) andylooney: Build Y1 Andylooney

14) Calavera: Build G1 Calavera

15) andylooney: Build G2 Clampett

16) Calavera: Sacrifice G3 Calavera
Build G2 Krondor
Build G3 Krondor
Build G3 Calavera

17) andylooney: Build G3 Clampett

18) Calavera: Trade G2 Y2 Krondor

19) andylooney: Discover G2 Clampett Y2 Plugh

20) Calavera: Build Y1 Krondor

21) andylooney: Discover Y1 Andylooney B3 Ibm

22) Calavera: Trade Y1 B1 Krondor

23) andylooney: Sacrifice G3 Clampett
Build G2 Clampett
Build G3 Plugh
Build Y1 Andylooney

24) Calavera: Sacrifice Y2 Krondor
Move G1 Krondor Plugh
Move G1 Calavera Plugh
Catastrophe Plugh G

25) andylooney: Sacrifice G2 Clampett
Build Y2 Ibm
Build Y2 Ibm

26) Calavera: Trade G3 Y3 Krondor

27) andylooney: Trade Y1 G1 Ibm

28) Calavera: Trade B1 G1 Krondor

29) andylooney: Build G2 Clampett

30) Calavera: Build G2 Calavera

31) andylooney: Build G3 Ibm

32) Calavera: Build G3 Krondor

	SYSTEM: andylooney resigns.


1456)
Started: 2005.11.22, Ended: 2006.3.7
Participants: Cerulean (S), Personman (N), MatrixFrog (E)
Winner: Cerulean

1) Personman: Homeworld Y3 B2 G3

2) MatrixFrog: Homeworld G3 B1 Y3
	Personman: hey everyone.. this is my first game of multiplayer homeworlds, so forgive me if i do stupid things..

3) Cerulean: Homeworld B1 G2 Y3
	MatrixFrog: The only difference in controls is having to specify whose ship you're attacking, by putting an "e" for me or an "s" for Cerulean. Good luck.

4) Personman: Build G1 Personman
	Cerulean: Thanks, personman.  Now I can't get that song out of my head.
	Personman: :)

5) MatrixFrog: Build Y1 Matrixfrog

6) Cerulean: Build Y1 Cerulean

7) Personman: Build G1 Personman

8) MatrixFrog: Trade Y1 G1 Matrixfrog

9) Cerulean: Build Y1 Cerulean

10) Personman: Trade G1 B1 Personman

11) MatrixFrog: Build Y1 Matrixfrog

12) Cerulean: Trade Y1 G1 Cerulean

13) Personman: Trade G1 Y1 Personman

14) MatrixFrog: Discover G1 Matrixfrog Y2 Goldfish

15) Cerulean: Discover Y1 Cerulean G3 Paldor

16) Personman: Discover Y1 Personman G1 Imbroglio

17) MatrixFrog: Build G1 Goldfish

18) Cerulean: Discover G1 Cerulean B3 Besk

19) Personman: Build G2 Personman

20) MatrixFrog: Build Y1 Matrixfrog

21) Cerulean: Build G2 Besk

22) Personman: Sacrifice G3 Personman
Build G2 Personman
Build G3 Personman
Build Y2 Imbroglio

23) MatrixFrog: Move G1 Goldfish Besk

24) Cerulean: Build Y2 Cerulean

25) Personman: Move G2 Personman Imbroglio

26) MatrixFrog: Sacrifice Y1 Matrixfrog
Move G1 Besk Cerulean

27) Cerulean: Trade Y2 R2 Cerulean

28) Personman: Sacrifice G3 Personman
Build G3 Personman
Build G3 Personman
Build B1 Personman

29) MatrixFrog: Sacrifice G1 Cerulean
Build G1 Goldfish

30) Cerulean: Trade G2 Y2 Besk

31) Personman: Sacrifice Y2 Imbroglio
Discover G3 Personman Y1 Thurgood
Move B1 Personman Thurgood

32) MatrixFrog: Trade Y1 R1 Matrixfrog

33) Cerulean: Build G2 Besk

34) Personman: Build B2 Thurgood

35) MatrixFrog: Discover G1 Goldfish Y3 Marshall

36) Cerulean: Build R1 Cerulean

37) Personman: Sacrifice B2 Thurgood
Trade G3 R3 Personman
Trade G2 R2 Imbroglio

38) MatrixFrog: Build G2 Marshall

39) Cerulean: Move G2 Besk Cerulean

40) Personman: Build G3 Thurgood

41) MatrixFrog: Build R1 Matrixfrog

42) Cerulean: Move R1 Cerulean Besk

43) Personman: Move R2 Imbroglio Marshall

44) MatrixFrog: Sacrifice R1 Matrixfrog
Attack R2N Marshall
	MatrixFrog: I may not keep up with this game over Christmas, but most likely, it will not be a problem.

45) Cerulean: Move R1 Besk Thurgood

46) Personman: Discover B1 Thurgood Y2 Mathers

47) MatrixFrog: Build Y1 Matrixfrog

48) Cerulean: Move G2 Cerulean Paldor

49) Personman: Sacrifice G3 Thurgood
Build G3 Thurgood
Build Y2 Imbroglio
Build B2 Mathers

50) MatrixFrog: Build R1 Matrixfrog

51) Cerulean: Discover G1 Besk B2 Sefeeria

52) Personman: Move G3 Thurgood Mathers

53) MatrixFrog: Build R1 Marshall
	Personman: Undoing because I automatically typed thurgood marshall instead of thurgood mathers. Apologies.

54) Cerulean: Move R1 Thurgood Mathers

55) Personman: Discover B1 Mathers B3 Homsar

56) MatrixFrog: Move G1 Goldfish Marshall

57) Cerulean: Sacrifice Y1 Paldor
Move G1 Sefeeria Marshall
Catastrophe Marshall G
	MatrixFrog: I dooooo what I'm tooooooooooold.
	MatrixFrog: I don't think I've ever had this many systems in a game at once... I'm overwhelmed.

58) Personman: Move Y1 Imbroglio Homsar

59) MatrixFrog: Trade R1 G1 Matrixfrog

60) Cerulean: Move R1 Mathers Homsar

61) Personman: Move Y1 Homsar Mathers

62) MatrixFrog: Move R2 Marshall Imbroglio

63) Cerulean: Attack B1N Homsar

64) Personman: Sacrifice Y2 Imbroglio
Move G3 Thurgood Mathers
Move G3 Mathers Matrixfrog

65) MatrixFrog: Discover G1 Matrixfrog Y2 Mordor

66) Cerulean: Discover Y2 Besk G1 Tinubi

67) Personman: Sacrifice G3 Mathers
Build G1 Matrixfrog
Build G2 Matrixfrog
Build G3 Personman
Catastrophe Matrixfrog G

68) MatrixFrog: Trade Y1 G1 Matrixfrog

69) Cerulean: Sacrifice G2 Paldor
Build Y1 Tinubi
Build Y1 Cerulean
	Personman: My first every catastrophe! I am excited!
	Personman: er, first *ever*, that should say. I blame the excitedness.

70) Personman: Move Y1 Mathers Tinubi

71) MatrixFrog: Build R1 Imbroglio

72) Cerulean: Move Y1 Cerulean Homsar

73) Personman: Build Y1 Tinubi
Catastrophe Tinubi Y

74) MatrixFrog: Build Y1 Matrixfrog

75) Cerulean: Discover B1 Homsar G1 Tinubi

76) Personman: Sacrifice G2 Personman
Build G2 Personman
Build B2 Mathers

77) MatrixFrog: Build G2 Matrixfrog
	Cerulean: hey, look what I found!

78) Cerulean: Move Y1 Homsar Tinubi

79) Personman: Trade G2 Y2 Personman

80) MatrixFrog: Build G2 Mordor

81) Cerulean: Build B2 Tinubi

82) Personman: Move B1 Personman Matrixfrog

83) MatrixFrog: Attack B1N Matrixfrog

84) Cerulean: Move B1 Tinubi Personman

85) Personman: Sacrifice Y2 Personman
Move B2 Mathers Matrixfrog
Move B2 Mathers Matrixfrog
Catastrophe Matrixfrog B

86) Cerulean: Build B1 Tinubi

87) Personman: Build G1 Personman
	Personman: good game, matrixfrog! 

88) Cerulean: Move B1 Tinubi Personman

89) Personman: Move R3 Personman Tinubi

90) Cerulean: Sacrifice Y1 Tinubi
Move B2 Tinubi Personman
Catastrophe Personman B

91) Personman: Build G2 Personman
	MatrixFrog: Grah. I think I'll stick to binary homeworlds for a while. Good game, you guys.

92) Cerulean: Build Y1 Cerulean
	Cerulean: WHAM!

93) Personman: Move G2 Personman Mordor

94) Cerulean: Move Y1 Cerulean Homsar

95) Personman: Move G2 Mordor Homsar

96) Cerulean: Move R1 Homsar Mordor

97) Personman: Build R1 Tinubi

98) Cerulean: Attack G1E Mordor

99) Personman: Sacrifice R1 Tinubi
Attack Y1S Homsar

100) Cerulean: Build G2 Mordor
	MatrixFrog: It looks like I have the ability to force a surrender, even though I'm no longer part of the game. Have the members of SDG ever reached a consensus as to whether this is fair?
	Cerulean: not that I know of.  This absence is out of character for Personman, who's usually good at checking in.  I generously wait on expired games before pulling the plug.
	Personman: Sorry, I've been busy, and whenever I have a second I usually make a few fast moves in Frames but am never willing to spend the time to think about the relatively hopeless situation here. But I will go now, and keep it up til the end, I promise. 
	Personman: Woah. I submitted the following instructions: 
s r1 tinubi 
a y1 homsar
and got this error message: 
The ship Y1 could not be found in the Homsar system.
Am I missing something obvious, or is this some weird bug?
	MatrixFrog: I do too, so it's a non-issue in this case. But as a general rule, it's something that maybe should be discussed.
	MatrixFrog: Personman: try "y1s homsar"

101) Personman: Move G1 Personman Mordor
Catastrophe Mordor G
	Personman: *smacks forehead* Thank you, MatrixFrog. 

102) Cerulean: Build Y1 Cerulean

103) Personman: Build G1 Homsar

104) Cerulean: Move Y1 Cerulean Marshall

105) Personman: Build Y1 Homsar

106) Cerulean: Move Y1 Marshall Imbroglio

107) Personman: Build G1 Homsar

108) Cerulean: Move R1 Mordor Homsar

109) Personman: Trade G2 R2 Homsar

110) Cerulean: Sacrifice R1 Homsar
Attack R1E Imbroglio

111) Personman: Move R2 Homsar Imbroglio

112) Cerulean: Move R1 Imbroglio Homsar

113) Personman: Attack Y1S Imbroglio

114) Cerulean: Attack Y1N Homsar

115) Personman: Move Y1 Homsar Tinubi

116) Cerulean: Attack G1N Homsar

117) Personman: Move R3 Tinubi Homsar

118) Cerulean: Discover Y1 Homsar G2 Aqer

119) Personman: Attack R1S Homsar

120) Cerulean: Sacrifice G1 Homsar
Build Y1 Aqer

121) Personman: Sacrifice Y1 Tinubi
Move R1 Homsar Aqer

122) Cerulean: Sacrifice Y1 Aqer
Discover Y1 Aqer G1 Ytttli

123) Personman: Build Y1 Imbroglio

124) Cerulean: Build R1 Cerulean

125) Personman: Build Y1 Imbroglio

126) Cerulean: Build Y2 Ytttli

127) Personman: Sacrifice Y1 Imbroglio
Move R3 Homsar Ytttli

128) Cerulean: Sacrifice Y1 Ytttli
Move Y2 Ytttli Aqer

129) Cerulean: Move R1 Cerulean Homsar

	Cerulean: thanks.  I'm curious what you were up to, what in turns out was impossible.  a very good game, nonetheless, and I'm always up for another one.


1418)
Started: 2005.11.23, Ended: 2006.1.21
Participants: JunkMan (S), Roland (N)
Winner: JunkMan



1558)
Started: 2005.11.24, Ended: 2005.11.25
Participants: Calavera (S), TwoShort (N)
Winner: Calavera

1) TwoShort: Homeworld B1 Y2 G3

2) Calavera: Homeworld G2 B3 Y3

3) TwoShort: Build G1 Twoshort

4) Calavera: Build Y1 Calavera

5) TwoShort: Build G1 Twoshort

6) Calavera: Trade Y1 G1 Calavera

7) TwoShort: Trade G1 Y1 Twoshort

8) Calavera: Discover G1 Calavera B1 Rillanon

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) Calavera: Build Y1 Calavera

11) TwoShort: Discover Y1 Twoshort B3 Bluestar

12) Calavera: Trade Y1 B1 Calavera

13) TwoShort: Build G1 Twoshort

14) Calavera: Build Y1 Calavera

15) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Twoshort
Build G3 Twoshort

16) Calavera: Sacrifice Y3 Calavera
Move G1 Rillanon Bluestar
Move G1 Bluestar Twoshort
Pass
Catastrophe Twoshort G
	Calavera: Ooooh. Bad Move. Thanks for the game.



1623)
Started: 2005.11.27, Ended: 2005.12.1
Participants: Uglyfoot (S), Murwiz (N)
Winner: Uglyfoot

1) Murwiz: Homeworld Y3 G2 B3

2) Uglyfoot: Homeworld B2 G1 Y3

3) Murwiz: Build B1 Murwiz

4) Uglyfoot: Build Y1 Uglyfoot
	Murwiz: We are Blow-cutous of Grob. We wish you no harm. We merely want to examine your planets for evidence of bio-life, and cleanse any that we find.

5) Murwiz: Trade B1 Y1 Murwiz
	Uglyfoot: surprise!  I did not know that you had to use one of the same color...
	Uglyfoot: Blow-cutous.  Please to examine lower appendages while we apply them to your head.


6) Uglyfoot: Discover Y1 Uglyfoot G3 Gateway

7) Murwiz: Discover Y1 Murwiz G1 Garagedoor

8) Uglyfoot: Build Y1 Uglyfoot

9) Murwiz: Build Y2 Garagedoor

10) Uglyfoot: Build Y2 Gateway

11) Murwiz: Build B1 Murwiz

12) Uglyfoot: Trade Y1 B1 Uglyfoot

13) Murwiz: Move B1 Murwiz Garagedoor

14) Uglyfoot: Move B1 Uglyfoot Gateway

15) Murwiz: Build B1 Murwiz
	Uglyfoot: OK.  How's that for synchronizing our moves?

16) Uglyfoot: Build B2 Gateway

17) Murwiz: Trade B1 G1 Murwiz

18) Uglyfoot: Trade B2 R2 Gateway

19) Murwiz: Build G2 Murwiz

20) Uglyfoot: Move R2 Gateway Garagedoor

21) Murwiz: Sacrifice Y2 Garagedoor
Move Y1 Garagedoor Gateway
Discover B1 Garagedoor G2 Portcullis
	Uglyfoot: How's that blow?

22) Uglyfoot: Move Y1 Gateway Garagedoor
	Murwiz: "The noble crew of the good ship North Y2 scuttled their boat rather than see it fall into enemy tentacles."

23) Murwiz: Build G3 Murwiz
	Uglyfoot: Nicely played!

	Murwiz: Shoot, I'm screwed. I moved too quickly and misread the board.

	SYSTEM: Murwiz resigns.


1591)
Started: 2005.11.25, Ended: 2005.11.28
Participants: TwoShort (S), Calavera (N)
Winner: TwoShort

1) Calavera: Homeworld Y2 B2 G3 *

2) TwoShort: Homeworld B2 Y2 G3 *

3) Calavera: Build G1 Calavera
	TwoShort: I saw the problem with my move in the last game just after I hit submit. Doh.  

4) TwoShort: Build G1 Twoshort
	Calavera: Ah, well. The only way I was going to win was with such a cheap shot. 

5) Calavera: Discover G1 Calavera Y3 Rillanon
	Calavera: d g1 calavera y3 Rillanon

6) TwoShort: Trade G1 R1 Twoshort

7) Calavera: Move G1 Rillanon Calavera

8) TwoShort: Build G1 Twoshort

9) Calavera: Trade G3 Y3 Calavera

10) TwoShort: Build R1 Twoshort

11) Calavera: Build G1 Calavera

12) TwoShort: Discover G1 Twoshort Y3 Yolonda

13) Calavera: Trade G1 R1 Calavera

14) TwoShort: Discover R1 Twoshort B3 Bluestar

15) Calavera: Build Y1 Calavera

16) TwoShort: Build R2 Twoshort

17) Calavera: Build R2 Calavera

18) TwoShort: Trade R1 Y1 Bluestar

19) Calavera: Trade Y1 B1 Calavera

20) TwoShort: Trade R2 G2 Twoshort

21) Calavera: Discover G1 Calavera Y3 Krondor

22) TwoShort: Move G2 Twoshort Krondor

	SYSTEM: Calavera resigns.


1605)
Started: 2005.11.26, Ended: 2005.11.28
Participants: Calavera (S), MatrixFrog (N)
Winner: Calavera

1) MatrixFrog: Homeworld B1 G3 Y3

2) Calavera: Homeworld Y1 B2 G3

3) MatrixFrog: Build Y1 Matrixfrog

4) Calavera: Build G1 Calavera

5) MatrixFrog: Trade Y1 G1 Matrixfrog

6) Calavera: Build G1 Calavera

7) MatrixFrog: Build G2 Matrixfrog

8) Calavera: Discover G1 Calavera Y3 Rillanon

9) MatrixFrog: Discover G1 Matrixfrog Y2 Fondue

10) Calavera: Trade G1 R1 Calavera

11) MatrixFrog: Discover G1 Fondue Y3 Epsilon

12) Calavera: Build G1 Calavera

13) MatrixFrog: Build G2 Matrixfrog

14) Calavera: Sacrifice G3 Calavera
Build G2 Rillanon
Build G3 Rillanon
Build G3 Calavera

15) MatrixFrog: Sacrifice G2 Matrixfrog
Build G2 Epsilon
Build Y1 Matrixfrog

16) Calavera: Discover G3 Rillanon B1 Krondor
	MatrixFrog: Sacrificial Teleportation!

17) MatrixFrog: Sacrifice Y3 Matrixfrog
Move G1 Epsilon Calavera
Move G2 Epsilon Calavera
Pass
Catastrophe Calavera G
	Calavera: Bah, I thought you had a 2-3 star when I wote that move.

18) Calavera: Move G2 Rillanon Calavera

19) MatrixFrog: Build Y1 Matrixfrog

20) Calavera: Build G1 Calavera

21) MatrixFrog: Discover Y1 Matrixfrog G2 Endor

22) Calavera: Sacrifice G3 Krondor
Build G1 Rillanon
Build G3 Calavera
Build G3 Rillanon

23) MatrixFrog: Build Y2 Matrixfrog

24) Calavera: Discover G3 Rillanon Y2 Crydee

25) MatrixFrog: Trade G2 B2 Matrixfrog

26) Calavera: Sacrifice G2 Calavera
Build G2 Crydee
Build G2 Crydee

27) MatrixFrog: Move B2 Matrixfrog Crydee

28) Calavera: Move G3 Crydee Matrixfrog

29) MatrixFrog: Trade Y1 R1 Matrixfrog

30) Calavera: Sacrifice R1 Calavera
Attack Y2 Matrixfrog

31) MatrixFrog: Move B2 Crydee Matrixfrog

32) Calavera: Trade G3 R3 Matrixfrog

33) MatrixFrog: Attack Y2 Matrixfrog

34) Calavera: Attack R1 Matrixfrog

35) MatrixFrog: Build Y1 Matrixfrog

36) Calavera: Attack B2 Matrixfrog

37) MatrixFrog: Move Y1 Endor Matrixfrog
	Calavera: Game over next turn. Thanks for an enjoyable game.

38) Calavera: Sacrifice R3 Matrixfrog
Attack Y1 Matrixfrog
Attack Y1 Matrixfrog
Attack Y2 Matrixfrog



1639)
Started: 2005.11.28, Ended: 2006.2.10
Participants: Jesse (S), andylooney (N)
Winner: Jesse

1) andylooney: Homeworld G1 B2 Y3
	Jesse: Hi, Andy.  Let's play again.
	andylooney: OK!

2) Jesse: Homeworld Y3 B1 G3

3) andylooney: Build Y1 Andylooney

4) Jesse: Build G1 Jesse

5) andylooney: Trade Y1 G1 Andylooney

6) Jesse: Discover G1 Jesse B2 Robot

7) andylooney: Build G2 Andylooney

8) Jesse: Build G2 Jesse

9) andylooney: Discover G2 Andylooney Y3 Monkey

10) Jesse: Trade G2 Y2 Jesse

11) andylooney: Build G2 Monkey

12) Jesse: Build G2 Jesse

13) andylooney: Discover G2 Monkey Y2 Pirate

14) Jesse: Trade G2 R2 Jesse

15) andylooney: Trade G1 R1 Andylooney

16) Jesse: Move Y2 Jesse Robot

17) andylooney: Build Y1 Andylooney

18) Jesse: Build Y1 Robot

19) andylooney: Discover Y1 Andylooney G3 Ninja

20) Jesse: Trade Y1 B1 Robot

21) andylooney: Build Y1 Andylooney

22) Jesse: Build B1 Robot

23) andylooney: Discover Y1 Andylooney B3 Ibm

24) Jesse: Discover B1 Robot G3 Bumblebee

25) andylooney: Build Y1 Ninja

26) Jesse: Build Y2 Robot

27) andylooney: Sacrifice G2 Monkey
Build Y3 Ibm
Build R1 Andylooney

28) Jesse: Build B2 Bumblebee

29) andylooney: Discover R1 Andylooney B3 Meanie

30) Jesse: Build B3 Bumblebee

31) andylooney: Sacrifice Y3 Ibm
Move Y1 Ninja Robot
Move Y1 Ibm Robot
Discover G2 Pirate Y3 Howell
Catastrophe Robot Yellow
	Jesse: I should hopefully be getting back to a more normal pace now.

32) Jesse: Build B3 Robot

33) andylooney: Build Y1 Ninja

34) Jesse: Trade B2 Y2 Bumblebee

35) andylooney: Discover Y1 Ninja B2 Bomber

36) Jesse: Trade B3 R3 Bumblebee

37) andylooney: Discover R1 Andylooney B3 Max

38) Jesse: Build G1 Jesse

39) andylooney: Build G2 Howell

40) Jesse: Sacrifice G3 Jesse
Build G2 Robot
Build G3 Jesse
Build R1 Jesse

41) andylooney: Sacrifice G2 Howell
Build R2 Max
Build R2 Meanie
	andylooney: Ugh, you're killing me here, Jesse!

42) Jesse: Trade B3 R3 Robot
	Jesse: I've been taking time to think and play carefully, as I must against you.  It's a tough game.

43) andylooney: Trade R2 Y2 Max

44) Jesse: Trade G2 Y2 Robot

45) andylooney: Sacrifice G2 Howell
Build Y1 Max
Build Y3 Bomber

46) Jesse: Build B3 Bumblebee

47) andylooney: Trade R2 G2 Meanie

48) Jesse: Sacrifice Y2 Bumblebee
Move R3 Bumblebee Andylooney
Move B3 Bumblebee Andylooney
	Jesse: Lasers in the night
The steely eyed captain's gaze
Burns your very world

49) andylooney: Build Y2 Andylooney
	andylooney: With no hope of victory, we're turning our flagship into an ark, loading it up with representative samples of our history, culture, favorite life forms, and of course, a few thousand annointed survivors, and we're embarking for a new life in a distant galaxy...
	andylooney: Dang, the system won't let me abandon my homeworld! I tried doing this and failed: discover y3 andylooney r3 Firebird
Oh well, I guess you'll just have to destroy me...

50) Jesse: Sacrifice R2 Jesse
Attack Y2 Andylooney
Attack Y3 Andylooney
	Jesse: Yeah, technically the rules state that self-elimination is not allowed.
	Jesse: Thanks for the game; it's always a pleasure.



1633)
Started: 2005.11.28, Ended: 2005.12.13
Participants: jeep (S), Calavera (N)
Winner: jeep

1) Calavera: Homeworld G2 B2 Y3 *

2) jeep: Homeworld B1 Y2 G3

3) Calavera: Build Y1 Calavera

4) jeep: Build G1 Jeep

5) Calavera: Build Y1 Calavera

6) jeep: Trade G1 Y1 Jeep

7) Calavera: Trade Y1 G1 Calavera

8) jeep: Build G1 Jeep

9) Calavera: Trade Y1 R1 Calavera

10) jeep: Trade G1 R1 Jeep

11) Calavera: Discover G1 Calavera B3 Goodtimes

12) jeep: Discover Y1 Jeep G3 Moon

13) Calavera: Build G1 Goodtimes

14) jeep: Build R1 Jeep

15) Calavera: Build R2 Calavera

16) jeep: Move R1 Jeep Moon
	jeep: Yeah, I'm dumb.  I'm going to wait until tomorrow and some sleep before I move again.  ;)

17) Calavera: Move R2 Calavera Moon

18) jeep: Build R2 Moon

19) Calavera: Build R2 Moon
Catastrophe Moon R

20) jeep: Build Y1 Moon

21) Calavera: Trade G1 Y1 Goodtimes

22) jeep: Build Y2 Moon

23) Calavera: Build Y2 Goodtimes

24) jeep: Move Y1 Moon Calavera

25) Calavera: Attack Y1 Calavera

26) jeep: Move Y1 Moon Calavera

27) Calavera: Trade Y3 G3 Calavera

28) jeep: Sacrifice R1 Jeep
Attack R1N Calavera

29) Calavera: Trade Y2 R2 Goodtimes

30) jeep: Attack Y1N Calavera

31) Calavera: Sacrifice R2 Goodtimes
Attack R1 Calavera
Attack Y1 Calavera

32) jeep: Discover Y1 Calavera G1 Builder

33) Calavera: Sacrifice G3 Calavera
Build Y2 Goodtimes
Build Y3 Goodtimes
Build Y3 Calavera

34) jeep: Move Y1 Builder Goodtimes
Catastrophe Goodtimes Yellow

35) Calavera: Sacrifice Y1 Calavera
Move G1 Goodtimes Jeep

36) jeep: Trade G3 R3 Jeep

37) Calavera: Discover G1 Jeep B3 Waterworld

38) jeep: Build Y1 Moon

39) Calavera: Build R1 Calavera

40) jeep: Move Y2 Moon Jeep

41) Calavera: Move R1 Calavera Waterworld

42) jeep: Trade Y2 G2 Jeep

43) Calavera: Build G1 Waterworld

44) jeep: Build G1 Jeep

45) Calavera: Trade G1 Y1 Waterworld

46) jeep: Trade G1 B1 Jeep

47) Calavera: Build G1 Waterworld

48) jeep: Build G1 Jeep

49) Calavera: Discover G1 Waterworld B2 Bas-tyra

50) jeep: Trade G2 R2 Jeep

51) Calavera: Build G2 Bas-tyra

52) jeep: Build Y1 Moon

53) Calavera: Trade G2 Y2 Bas-tyra
	jeep: The problem with web games is that you sometimes forget what you were doing.  It's not a problem, unless you remember it the NEXT turn.  ;)

54) jeep: Move R2 Jeep Waterworld
	Calavera: I find the problem is my opponent almost never does what I think he's going to do, so any 'plan' i have is ruined almost immediatly.

55) Calavera: Build R1 Waterworld

56) jeep: Attack G1N Waterworld

57) Calavera: Attack G1 Waterworld
	Calavera: Oi! That's mine!

58) jeep: Build G2 Jeep
	jeep: That could go on forever, I'll just give it up and play elsewhere, I guess...

59) Calavera: Build Y2 Bas-tyra

60) jeep: Attack G1N Waterworld
	Calavera: I've not played this game in real life? Does it ever get to a stage where it has to be given up because of a similar situation. I know if you had kept stealing my G1, I'd have kept stealing it back.
	jeep: Nod, I've only played a couple times and never came upon it. 
	jeep: Hmm... I thought I made this move already!!  Have to remember what it is.  Sorry for the delay.

61) Calavera: Attack G1 Waterworld

62) jeep: Discover Y1 Moon B1 Station

63) Calavera: Build Y3 Waterworld

64) jeep: Sacrifice G2 Jeep
Build Y3 Station
Build R2 Waterworld
Catastrophe Waterworld Red

65) Calavera: Sacrifice Y2 Bas-tyra
Move Y2 Bas-tyra Station
Move Y1 Waterworld Station
Catastrophe Station Y

66) jeep: Build G2 Jeep

67) Calavera: Build G2 Bas-tyra

68) jeep: Trade G2 Y2 Jeep

69) Calavera: Build Y1 Calavera

70) jeep: Build Y1 Moon

71) Calavera: Trade Y1 B1 Calavera

	Calavera: This game has slowed down considerbly. I don't really have the paitence to continue playing at this pace.
	SYSTEM: Calavera resigns.


1655)
Started: 2005.11.29, Ended: 2005.12.20
Participants: benedict (S), CDRodeffer (N)
Winner: benedict

1) CDRodeffer: Homeworld B1 G2 Y3

2) benedict: Homeworld G2 B3 Y3

3) CDRodeffer: Build Y1 Cdrodeffer

4) benedict: Build Y1 Benedict

5) CDRodeffer: Trade Y1 R1 Cdrodeffer

6) benedict: Trade Y1 R1 Benedict

7) CDRodeffer: Build Y1 Cdrodeffer

8) benedict: Build Y1 Benedict

9) CDRodeffer: Trade Y1 B1 Cdrodeffer

10) benedict: Trade Y1 G1 Benedict

11) CDRodeffer: Build Y1 Cdrodeffer

12) benedict: Build G1 Benedict

13) CDRodeffer: Build Y1 Cdrodeffer

14) benedict: Discover G1 Benedict Y1 Barony

15) CDRodeffer: Discover Y1 Cdrodeffer G3 Phlegm

16) benedict: Build Y2 Benedict

17) CDRodeffer: Build Y2 Phlegm

18) benedict: Move Y2 Benedict Barony

19) CDRodeffer: Move Y1 Phlegm Barony

20) benedict: Sacrifice R1 Benedict
Attack Y1 Barony

21) CDRodeffer: Move Y2 Phlegm Barony
Catastrophe Barony Yellow
	benedict: hmmm. that may not hav been the best move for me to make...

22) benedict: Build Y1 Benedict
	CDRodeffer: You're probably right about that. But now we're (almost) back where we started.

23) CDRodeffer: Trade Y1 G1 Cdrodeffer

24) benedict: Trade Y1 R1 Benedict

25) CDRodeffer: Build Y1 Cdrodeffer

26) benedict: Build Y1 Benedict

27) CDRodeffer: Discover Y1 Cdrodeffer B3 Marble

28) benedict: Build G1 Benedict

29) CDRodeffer: Build B1 Cdrodeffer

30) benedict: Discover G1 Benedict Y1 Carpe_diem
	CDRodeffer: I made a tactical error in my previous turn. Fortunately, you didn't capitalize on it.
	benedict: and you could have destroyed my green technology on your turn, so I'm glad you didn't do that!

31) CDRodeffer: Build Y2 Cdrodeffer

32) benedict: Discover Y1 Benedict R1 Nosebleed

33) CDRodeffer: Move Y2 Cdrodeffer Marble
	CDRodeffer: I didn't want to immediately destroy your home green technology. That would have given us each direct access to the other's home worlds too quickly.

34) benedict: Build R2 Benedict
	benedict: ah, ok

35) CDRodeffer: Build R2 Cdrodeffer

36) benedict: Trade R2 B2 Benedict

37) CDRodeffer: Sacrifice Y2 Marble
Move B1 Cdrodeffer Marble
Move R2 Cdrodeffer Marble

38) benedict: Build Y2 Benedict

39) CDRodeffer: Build Y2 Cdrodeffer

40) benedict: Move B2 Benedict Carpe_diem

41) CDRodeffer: Move G1 Cdrodeffer Marble

42) benedict: Build B2 Carpe_diem

43) CDRodeffer: Discover B1 Marble G2 Dangersense

44) benedict: Build G3 Carpe_diem

45) CDRodeffer: Build G3 Marble

46) benedict: Sacrifice G1 Benedict
Build Y2 Nosebleed

47) CDRodeffer: Move Y1 Marble Dangersense

48) benedict: Discover G3 Carpe_diem Y3 Barony

49) CDRodeffer: Move Y2 Cdrodeffer Marble

50) benedict: Build R2 Benedict

51) CDRodeffer: Move G3 Marble Nosebleed

52) benedict: Sacrifice Y1 Nosebleed
Move Y2 Nosebleed Dangersense

53) CDRodeffer: Sacrifice Y1 Dangersense
Move G3 Nosebleed Dangersense

54) benedict: Sacrifice Y2 Dangersense
Move B2 Carpe_diem Barony
Move B2 Carpe_diem Barony

55) CDRodeffer: Sacrifice Y2 Marble
Move B1 Cdrodeffer Barony
Move G3 Dangersense Carpe_diem

56) benedict: Trade B2 R2 Barony

57) CDRodeffer: Move B1 Barony Carpe_diem

58) benedict: Move G1 Carpe_diem Barony

59) CDRodeffer: Build B2 Dangersense

60) benedict: Build B2 Barony

61) CDRodeffer: Trade B1 Y1 Dangersense

62) benedict: Build Y1 Benedict

63) CDRodeffer: Build Y2 Dangersense

64) benedict: Discover Y1 Benedict B1 Hegemony

65) CDRodeffer: Move Y2 Dangersense Hegemony

66) benedict: Move Y1 Hegemony Barony

67) CDRodeffer: Build Y2 Dangersense

68) benedict: Move G3 Barony Hegemony

69) CDRodeffer: Move Y2 Hegemony Benedict

70) benedict: Move Y2 Benedict Hegemony

71) CDRodeffer: Discover Y2 Benedict R1 Nosebleed

72) benedict: Build R3 Barony

73) CDRodeffer: Build R3 Marble

74) benedict: Move R3 Barony Dangersense

75) CDRodeffer: Sacrifice Y2 Dangersense
Move Y1 Dangersense Barony
Move Y2 Nosebleed Barony
Catastrophe Barony Yellow

76) benedict: Attack B2 Dangersense

77) CDRodeffer: Build G1 Carpe_diem

78) benedict: Trade R3 G3 Dangersense

79) CDRodeffer: Sacrifice G3 Carpe_diem
Build G1 Marble
Build G3 Carpe_diem
Build Y1 Cdrodeffer

80) benedict: Build Y1 Hegemony

81) CDRodeffer: Move Y1 Cdrodeffer Marble

82) benedict: Trade G3 Y3 Dangersense

83) CDRodeffer: Sacrifice G3 Carpe_diem
Build G3 Carpe_diem
Build B2 Carpe_diem
Build Y2 Cdrodeffer

84) benedict: Build Y2 Dangersense

85) CDRodeffer: Sacrifice Y2 Cdrodeffer
Move R3 Marble Cdrodeffer
Move G1 Marble Cdrodeffer

86) benedict: Build Y2 Benedict

87) CDRodeffer: Sacrifice G3 Carpe_diem
Build G3 Carpe_diem
Build G3 Marble
Build R1 Marble

88) benedict: Move R1 Benedict Hegemony

89) CDRodeffer: Move R1 Marble Carpe_diem

90) benedict: Discover Y2 Dangersense R3 Julius

91) CDRodeffer: Sacrifice G3 Carpe_diem
Build G3 Carpe_diem
Build R2 Marble
Build R3 Carpe_diem

92) benedict: Sacrifice Y2 Benedict
Move Y1 Hegemony Julius
Move Y2 Hegemony Julius

93) CDRodeffer: Discover Y3 Cdrodeffer B3 Neptune

94) benedict: Sacrifice Y3 Dangersense
Move Y1 Julius Carpe_diem
Move Y2 Julius Carpe_diem
Move Y2 Julius Carpe_diem
Catastrophe Carpe_diem Y

95) CDRodeffer: Move Y3 Neptune Dangersense

96) benedict: Build Y1 Benedict

97) CDRodeffer: Move R2 Marble Dangersense

98) benedict: Move Y1 Benedict Hegemony

99) CDRodeffer: Attack B2 Dangersense

100) benedict: Build G1 Hegemony

101) CDRodeffer: Sacrifice G3 Marble
Build G3 Marble
Build Y1 Dangersense
Build Y2 Marble

102) benedict: Sacrifice G3 Hegemony
Build G3 Hegemony
Build Y2 Hegemony
Build R1 Hegemony

103) CDRodeffer: Discover G1 Marble B1 Royal

104) benedict: Discover Y2 Hegemony R3 Outpost

105) CDRodeffer: Sacrifice G3 Marble
Build G3 Royal
Build B2 Dangersense
Build B2 Dangersense

106) benedict: Move G1 Hegemony Outpost

107) CDRodeffer: Sacrifice Y3 Dangersense
Move B2 Dangersense Hegemony
Move B2 Dangersense Hegemony
Move B2 Dangersense Hegemony
Catastrophe Hegemony Blue

108) benedict: Build G3 Outpost

109) CDRodeffer: Trade G1 Y1 Cdrodeffer

110) benedict: Discover G1 Outpost Y2 Avalon

111) CDRodeffer: Build Y3 Cdrodeffer

112) benedict: Build Y3 Outpost

113) CDRodeffer: Discover Y3 Cdrodeffer G3 Dotdotdot

114) benedict: Move G3 Outpost Avalon

115) CDRodeffer: Sacrifice Y1 Marble
Move G1 Royal Marble

116) benedict: Build R1 Benedict

117) CDRodeffer: Sacrifice Y2 Marble
Move Y1 Cdrodeffer Outpost
Move Y1 Dangersense Outpost
Catastrophe Outpost Yellow

118) benedict: Discover R1 Benedict Y1 Smallville

119) CDRodeffer: Move Y3 Dotdotdot Smallville

120) benedict: Move R1 Smallville Avalon

121) CDRodeffer: Build G1 Marble

122) benedict: Discover G1 Avalon Y3 Wessex

123) CDRodeffer: Trade G1 Y1 Marble

124) benedict: Build G1 Avalon

125) CDRodeffer: Build G3 Marble

126) benedict: Sacrifice G3 Avalon
Build R1 Benedict
Build R3 Avalon
Build G3 Wessex

127) CDRodeffer: Sacrifice G3 Marble
Build G3 Marble
Build R3 Dangersense
Build Y1 Marble

128) benedict: Build Y2 Benedict

129) CDRodeffer: Move Y1 Marble Royal

130) benedict: Discover Y2 Benedict B1 Blueberry

131) CDRodeffer: Build Y2 Royal

132) benedict: Trade R2 B2 Benedict

133) CDRodeffer: Trade R2 B2 Marble

134) benedict: Move B2 Benedict Blueberry

135) CDRodeffer: Move Y1 Royal Dangersense

136) benedict: Move B2 Blueberry Avalon

137) CDRodeffer: Move R2 Dangersense Smallville

138) benedict: Sacrifice G3 Wessex
Build G3 Wessex
Build R2 Benedict
Build B2 Avalon

139) CDRodeffer: Move B2 Marble Smallville

140) benedict: Sacrifice Y2 Blueberry
Move R3 Avalon Wessex
Move R3 Wessex Cdrodeffer

141) CDRodeffer: Attack R3 Cdrodeffer
	CDRodeffer: Aaaaaaahhh!!!!

142) benedict: Sacrifice Y3 Benedict
Move R1 Avalon Wessex
Move R1 Wessex Cdrodeffer
Pass
Catastrophe Cdrodeffer R



1604)
Started: 2005.11.30, Ended: 2006.1.17
Participants: jeep (S), TwoShort (N)
Winner: jeep

1) TwoShort: Homeworld B1 Y2 G3

2) jeep: Homeworld Y3 B1 G3

3) TwoShort: Build G1 Twoshort

4) jeep: Build G1 Jeep

5) TwoShort: Discover G1 Twoshort Y3 Yolonda

6) jeep: Discover G1 Jeep B2 Moon

7) TwoShort: Build G1 Twoshort

8) jeep: Build G2 Jeep

9) TwoShort: Build G2 Yolonda

10) jeep: Sacrifice G3 Jeep
Build G2 Jeep
Build G3 Jeep
Build G3 Moon

11) TwoShort: Discover G1 Yolonda Y2 Yak

12) jeep: Trade G2 Y2 Jeep

13) TwoShort: Trade G1 Y1 Twoshort

14) jeep: Move Y2 Jeep Moon

15) TwoShort: Build G1 Twoshort

16) jeep: Build Y1 Moon

17) TwoShort: Discover Y1 Twoshort B3 Bluonia

18) jeep: Discover G1 Moon Y3 Station

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Yak
Build G3 Twoshort
Build Y1 Bluonia

20) jeep: Move G3 Moon Station

21) TwoShort: Trade G1 R1 Twoshort

22) jeep: Trade G2 R2 Jeep

23) TwoShort: Discover Y1 Bluonia B2 Bluestar

24) jeep: Move G3 Station Moon

25) TwoShort: Sacrifice G2 Yolonda
Build Y3 Bluestar
Build G1 Twoshort
	jeep: Sorry, tough decision there.

26) jeep: Build G2 Station

27) TwoShort: Move G1 Twoshort Station

28) jeep: Sacrifice G2 Station
Build G2 Moon
Build R1 Jeep

29) TwoShort: Build G2 Station

30) jeep: Move R1 Jeep Moon
	TwoShort: Just FYI: I'll be travelling for the next two weeks, and I'm not sure if/when I'll have net aceess, so I might disapear for a while.
	jeep: No problem.  I'll be travelling Xmas week.

31) TwoShort: Sacrifice Y3 Bluestar
Move G2 Station Moon
Move G1 Station Moon
Move G2 Yak Station
Catastrophe Moon Green

32) jeep: Discover Y1 Moon Y3 Stopper
	jeep: Merry Xmas!  I have intermittant access for the rest of the week.  I'll print out the position and move soon-ish.

33) TwoShort: Sacrifice G1 Yak
Build Y2 Bluestar
	jeep: I tried to move yesterday, but got errors.  Looks like Aaron fixed them.  I won't have access tomorrow and maybe not the next.  I'll be home on the 31st, though.

34) jeep: Build G1 Jeep
	jeep: I'm home, I should be back to one move per day or more.

35) TwoShort: Build G1 Twoshort

36) jeep: Sacrifice G3 Jeep
Build G2 Station
Build G2 Station
Build G3 Jeep
	jeep: Yesterday, all I could see was a red X.  today it's better again.

37) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Twoshort
Build R1 Twoshort
Catastrophe Station Green

38) jeep: Sacrifice G1 Jeep
Build Y3 Moon
	jeep: *laugh*  I thought I had a green that could go in if you built two greens...

39) TwoShort: Move G3 Twoshort Stopper

40) jeep: Build G1 Jeep

41) TwoShort: Sacrifice R1 Twoshort
Attack Y1S Stopper

42) jeep: Move Y2 Moon Bluonia

43) TwoShort: Discover Y1 Stopper R2 D2

44) jeep: Move G1 Jeep Moon

45) TwoShort: Sacrifice G3 Stopper
Build Y3 Bluonia
Build R1 Twoshort
Pass

46) jeep: Move Y2 Bluonia D2

47) TwoShort: Move Y3 Bluonia D2

48) jeep: Move Y2 D2 Bluonia

49) TwoShort: Discover Y1 Bluonia G2 Gordo

50) jeep: Build R2 Moon

51) TwoShort: Discover R1 Twoshort G3 Grogar

52) jeep: Move R2 Moon Grogar

53) TwoShort: Build R3 Grogar

54) jeep: Sacrifice G3 Jeep
Build R3 Jeep
Build R3 Moon
Build G1 Moon

55) TwoShort: Sacrifice Y2 Bluestar
Move R3 Grogar Bluestar
Move R3 Bluestar Jeep

56) jeep: Sacrifice R2 Jeep
Attack R3N Jeep
Attack R1N Grogar

57) TwoShort: Build Y2 Gordo
	TwoShort: Ack!  I completely missed that.

58) jeep: Build R2 Grogar
	jeep: I had clicked "confirm resignation" and went back for a second look when I saw it.

59) TwoShort: Sacrifice Y3 D2
Move Y1 D2 Jeep
Move Y1 Bluestar Jeep
Move Y1 Gordo Jeep
Catastrophe Jeep Yellow

60) jeep: Build R2 Moon
	jeep: Ouch.

61) TwoShort: Build Y1 Gordo
	TwoShort: Unfortunately, blowing up halh your homeworld is just petty vandalism before I lose.  Still, it's fun to be part of a game that had such a dramatic turnaround on one overlooked move.  I just wish I saw another dramatic reveral in the offing....

62) jeep: Sacrifice Y2 Bluonia
Move R2 Grogar Twoshort
Move R2 Grogar Twoshort
	jeep: I don't know if I should be cautious of go all out...

63) TwoShort: Attack R2S Twoshort
	TwoShort: You should definitely go all out, throwing caution to the wind, to the point that you make a critical oversight....   

64) jeep: Sacrifice R3 Moon
Attack R2N Twoshort
Attack R1N Twoshort
Attack G1N Twoshort

	TwoShort: Well, I'm not seeing that critical oversight...  good game.


1678)
Started: 2005.12.1, Ended: 2005.12.10
Participants: jeep (S), sketchwick (N)
Winner: sketchwick

1) sketchwick: Homeworld B1 R2 G3

2) jeep: Homeworld Y3 B2 G3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build G1 Jeep

5) sketchwick: Trade G1 Y1 Sketchwick

6) jeep: Trade G1 Y1 Jeep

7) sketchwick: Build G1 Sketchwick

8) jeep: Build G1 Jeep

9) sketchwick: Discover G1 Sketchwick G3 Jolly

10) jeep: Discover G1 Jeep B1 Happy

11) sketchwick: Build Y1 Sketchwick

12) jeep: Build Y2 Jeep

13) sketchwick: Move Y1 Sketchwick Jolly

14) jeep: Move Y1 Jeep Happy

15) sketchwick: Build Y2 Sketchwick

16) jeep: Move G1 Happy Jolly

17) sketchwick: Discover Y1 Jolly B1 Bean

18) jeep: Build G1 Jeep

19) sketchwick: Build G2 Sketchwick

20) jeep: Discover Y2 Jeep R1 Burrito

21) sketchwick: Sacrifice G3 Sketchwick
Build Y2 Bean
Build Y3 Bean
Build Y3 Sketchwick

22) jeep: Sacrifice Y2 Burrito
Move Y1 Happy Jolly
Move Y1 Jolly Sketchwick
Catastrophe Sketchwick Yellow

23) sketchwick: Build G2 Sketchwick

24) jeep: Trade G1 R1 Jeep

25) sketchwick: Trade G2 R2 Sketchwick

26) jeep: Build R1 Jeep

27) sketchwick: Trade Y2 R2 Bean

28) jeep: Trade R1 Y1 Jeep

29) sketchwick: Discover Y1 Bean B2 Giant

30) jeep: Build R1 Jeep

31) sketchwick: Build R1 Sketchwick

32) jeep: Discover R1 Jeep G1 Growth

33) sketchwick: Trade R1 Y1 Sketchwick

34) jeep: Sacrifice R1 Growth
Attack G1N Jolly

35) sketchwick: Sacrifice G2 Sketchwick
Build Y2 Sketchwick
Build Y2 Giant

36) jeep: Discover Y1 Jeep G1 Wurm

37) sketchwick: Trade R2 G2 Sketchwick

38) jeep: Move Y1 Wurm Jolly

39) sketchwick: Move G2 Sketchwick Jolly
Catastrophe Jolly Green

40) jeep: Build G1 Jeep

41) sketchwick: Trade Y2 G2 Sketchwick

42) jeep: Build R1 Jeep

43) sketchwick: Build G1 Sketchwick

44) jeep: Trade G1 B1 Jeep

45) sketchwick: Build Y1 Sketchwick

46) jeep: Build R1 Jeep

47) sketchwick: Move R2 Bean Jeep
Catastrophe Jeep Red

48) jeep: Build B2 Jeep

49) sketchwick: Sacrifice G2 Sketchwick
Build Y2 Bean
Build Y2 Bean

50) jeep: Discover B2 Jeep R1 Killer

51) sketchwick: Trade Y3 B3 Bean

52) jeep: Build G1 Jeep

53) sketchwick: Build Y3 Sketchwick

54) jeep: Move G1 Jeep Killer

55) sketchwick: Sacrifice Y2 Bean
Discover Y3 Sketchwick R3 Temp
Move Y3 Temp Killer

	jeep: I'd rather just play another game.  This is clearly lost.
	SYSTEM: jeep resigns.


1653)
Started: 2005.12.1, Ended: 2006.1.24
Participants: Personman (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld G1 B2 Y3
	Personman: Hey,
I am a relative novice at Homeworlds, but I felt I simply couldn't pass up the opportunity to play with you. If you're looking for a more serious game, I'll gladly go away, but if you don't mind helping induct me into the wonderful world of homeworlds, that'd be great too. 
I am an avid reader of your website, and not-avid-enough player of your games (I only own fluxx, and while I love it I haven't played in a while... I've been playing lots of icehouse games here recently, but I don't think I've ever actually played one with the real things. It is sad. Someday.)

2) Personman: Homeworld Y2 B3 G3
	andylooney: I welcome all players, novice and expert! And if you like Homeworlds, you really should try it with the real pieces someday...

3) andylooney: Build Y1 Andylooney

4) Personman: Build G1 Personman

5) andylooney: Trade Y1 G1 Andylooney

6) Personman: Build G2 Personman

7) andylooney: Build G2 Andylooney

8) Personman: Trade G2 Y2 Personman

9) andylooney: Discover G2 Andylooney Y3 Thurston

10) Personman: Build G2 Personman

11) andylooney: Build G2 Thurston

12) Personman: Discover G2 Personman Y1 Torn Shut

13) andylooney: Trade G1 R1 Andylooney
	Personman: Oh. That's sad. I didn't know it couldn't take two-word star names. It was supposed to be Torn Shut, the most interesting anagram of Thurston I could find at a moment's notice, but sadly the second word was, so to speak, torn off. 

14) Personman: Sacrifice G3 Personman
Build G1 Torn
Build G3 Personman
Build G3 Personman

15) andylooney: Move G2 Thurston Torn

16) Personman: Discover G3 Personman B1 Tron

17) andylooney: Build G3 Thurston

18) Personman: Trade Y2 B2 Personman

19) andylooney: Move G3 Thurston Tron

20) Personman: Discover G2 Torn R3 Rotn

21) andylooney: Sacrifice R1 Andylooney
Attack G3S Tron

22) Personman: Build B1 Personman

23) andylooney: Sacrifice G3 Tron
Build G3 Thurston
Build Y1 Andylooney
Build Y1 Andylooney

24) Personman: Trade B2 Y2 Personman

25) andylooney: Trade Y1 R1 Andylooney

26) Personman: Discover Y2 Personman B1 Nort

27) andylooney: Sacrifice G3 Thurston
Build G3 Thurston
Build R1 Andylooney
Build R1 Andylooney

28) Personman: Trade G3 R3 Personman

29) andylooney: Build G3 Tron

30) Personman: Build R2 Personman

31) andylooney: Sacrifice R1 Andylooney
Attack G1S Torn

32) Personman: Move Y2 Nort Rotn

33) andylooney: Trade G3 Y3 Tron

34) Personman: Build R1 Personman

35) andylooney: Sacrifice G3 Thurston
Build G3 Thurston
Build G3 Tron
Build R2 Andylooney

36) Personman: Move R2 Personman Torn

37) andylooney: Sacrifice R1 Andylooney
Attack R2S Torn

38) Personman: Build Y1 Rotn

39) andylooney: Sacrifice G3 Tron
Build G3 Tron
Build Y2 Tron
Build R1 Torn

40) Personman: Move R1 Personman Tron

41) andylooney: Sacrifice R1 Andylooney
Attack R1S Tron

42) Personman: Move Y1 Rotn Tron

43) andylooney: Sacrifice Y3 Tron
Discover G3 Tron Y3 Howell3
Move G3 Tron Rotn
Discover G2 Thurston B1 Berry



1695)
Started: 2005.12.2, Ended: 2005.12.18
Participants: Laurie_Menke (S), MightyJack (N)
Winner: MightyJack

1) MightyJack: Homeworld Y3 B2 G3

2) Laurie_Menke: Homeworld Y1 B2 G3
	Laurie_Menke: Hi...nice to meet you MightyJack!  Good luck!

3) MightyJack: Build G1 Mightyjack

4) Laurie_Menke: Build G1 Laurie_menke
	MightyJack: Likewise, Laurie!

5) MightyJack: Trade G1 B1 Mightyjack

6) Laurie_Menke: Build G1 Laurie_menke

7) MightyJack: Build B1 Mightyjack

8) Laurie_Menke: Discover G1 Laurie_menke B3 Phonebooth

9) MightyJack: Discover B1 Mightyjack Y1 Alphacentauri

10) Laurie_Menke: Discover G1 Laurie_menke B3 Bodyshop

11) MightyJack: Trade B1 R1 Alphacentauri

12) Laurie_Menke: Build G1 Phonebooth

13) MightyJack: Move R1 Alphacentauri Phonebooth

14) Laurie_Menke: Build G2 Phonebooth

15) MightyJack: Build G2 Mightyjack

16) Laurie_Menke: Trade G2 R2 Phonebooth

17) MightyJack: Sacrifice G2 Mightyjack
Build R1 Phonebooth
Build R1 Phonebooth
Catastrophe Phonebooth Red

18) Laurie_Menke: Build G2 Laurie_menke
	Laurie_Menke: Huh...alright...that was surprising!

19) MightyJack: Build G2 Mightyjack
	MightyJack: Not sure it was the best thing for me to do, but...

20) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Bodyshop
Build G3 Laurie_menke
Build G3 Bodyshop

21) MightyJack: Build B1 Mightyjack

22) Laurie_Menke: Trade G1 Y1 Bodyshop

23) MightyJack: Discover B1 Mightyjack G1 Orion

24) Laurie_Menke: Move G3 Bodyshop Laurie_menke

25) MightyJack: Sacrifice G3 Mightyjack
Build B1 Orion
Build B2 Orion
Build B3 Mightyjack

26) Laurie_Menke: Build G3 Bodyshop

27) MightyJack: Trade B2 Y2 Orion

28) Laurie_Menke: Trade G3 R3 Laurie_menke

29) MightyJack: Build G3 Mightyjack

30) Laurie_Menke: Trade G1 R1 Phonebooth

31) MightyJack: Build B2 Orion

32) Laurie_Menke: Trade G1 Y1 Phonebooth

33) MightyJack: Trade G3 R3 Mightyjack

34) Laurie_Menke: Build Y2 Bodyshop

35) MightyJack: Trade B3 Y3 Mightyjack

36) Laurie_Menke: Move Y1 Bodyshop Orion

37) MightyJack: Trade B2 R2 Orion

38) Laurie_Menke: Discover Y1 Orion B3 B3

39) MightyJack: Build B2 Orion

40) Laurie_Menke: Sacrifice G2 Laurie_menke
Build Y2 B3
Build Y3 B3

41) MightyJack: Move Y2 Orion B3
Catastrophe B3 Yellow

42) Laurie_Menke: Trade G3 B3 Bodyshop
	Laurie_Menke: Oops...so that was stupid of me.  :o(

43) MightyJack: Sacrifice Y3 Mightyjack
Move B1 Orion Bodyshop
Move B1 Orion Bodyshop
Pass
Catastrophe Bodyshop Blue
	MightyJack: I thought you might have overlooked that possibility... and I think you overlooked it again.

44) Laurie_Menke: Build R1 Laurie_menke
	Laurie_Menke: Ack!  Actually, I had realized that you could move your blue horde over and create a catastrophe, but I had forgotten that the star itself counts.  So I was betting against you moving and sacrificing all 3 of your blues to get one of my blues.  Obviously, the star going supernova did much more damage than that.  Nice playing!  :o)

45) MightyJack: Trade B2 Y2 Orion
	MightyJack: Thanks!  I had a feeling that you hadn't been expecting a star-shattering kaboom...

46) Laurie_Menke: Build G1 Laurie_menke

47) MightyJack: Build B1 Mightyjack

48) Laurie_Menke: Move G1 Laurie_menke Phonebooth

49) MightyJack: Move B1 Mightyjack Orion

50) Laurie_Menke: Build G1 Laurie_menke

51) MightyJack: Build G2 Mightyjack

52) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Phonebooth
Build G3 Phonebooth
Build G3 Laurie_menke

53) MightyJack: Sacrifice Y2 Orion
Move G2 Mightyjack Orion
Move G2 Orion Phonebooth
Catastrophe Phonebooth Green

54) Laurie_Menke: Move G1 Laurie_menke Phonebooth
	Laurie_Menke: Now cut that out!  ;o)

55) MightyJack: Trade B1 Y1 Orion

56) Laurie_Menke: Move R3 Laurie_menke Phonebooth

57) MightyJack: Move R3 Mightyjack Orion

58) Laurie_Menke: Build Y2 Phonebooth

59) MightyJack: Build Y2 Orion

60) Laurie_Menke: Sacrifice Y2 Phonebooth
Move R3 Phonebooth Orion
Move R1 Phonebooth Orion
Catastrophe Orion R

61) MightyJack: Build B1 Mightyjack
	Laurie_Menke: Ha-HA!  Two can play that catastrophe game!  ;o)
	MightyJack: Nice job, mad bomber.  :-)

62) Laurie_Menke: Build Y2 Phonebooth
	Laurie_Menke: :o)

63) MightyJack: Move B1 Mightyjack Orion

64) Laurie_Menke: Move Y2 Phonebooth Laurie_menke

65) MightyJack: Build B1 Orion

66) Laurie_Menke: Discover Y1 Phonebooth B2 Big_blue

67) MightyJack: Sacrifice G2 Mightyjack
Build B3 Mightyjack
Build B3 Orion

68) Laurie_Menke: Sacrifice G3 Laurie_menke
Build Y2 Big_blue
Build Y3 Big_blue
Build Y3 Laurie_menke

69) MightyJack: Sacrifice Y2 Orion
Move Y1 Orion Phonebooth
Move Y1 Phonebooth Laurie_menke
Catastrophe Laurie_menke Yellow

70) Laurie_Menke: Sacrifice Y1 Big_blue
Move G1 Phonebooth Big_blue
	MightyJack: The Mad Bomber strikes again!  :-)
	Laurie_Menke: OUCH!!!  I *hate* when you do that!!!

71) MightyJack: Trade B3 Y3 Mightyjack

72) Laurie_Menke: Move Y3 Big_blue Orion

73) MightyJack: Sacrifice Y3 Mightyjack
Move B3 Orion Laurie_menke
Move B1 Orion Laurie_menke
Move B1 Orion Laurie_menke
Catastrophe Laurie_menke Blue
	MightyJack: If you didn't like the last one, you're *really* going to hate this one... KABOOM!



1671)
Variants: "Sinister"
Started: 2005.12.2, Ended: 2005.12.16
Participants: MightyJack (S), Aaron (W), Kermit (N), Lexicon (E)
Winner: Aaron

1) Kermit: Homeworld B1 G3 Y3

2) Lexicon: Homeworld G1 B2 Y3

3) MightyJack: Homeworld G3 B1 Y3

4) Aaron: Homeworld B2 Y3 G3
	Aaron: Hail, all, and good luck!

5) Kermit: Build Y1 Kermit

6) Lexicon: Build Y1 Lexicon

7) MightyJack: Build Y1 Mightyjack

8) Aaron: Build G1 Aaron

9) Kermit: Build Y1 Kermit

10) Lexicon: Trade Y1 G1 Lexicon

11) MightyJack: Trade Y1 B1 Mightyjack

12) Aaron: Trade G1 R1 Aaron

13) Kermit: Trade Y1 B1 Kermit

14) Lexicon: Discover G1 Lexicon Y3 Ichi

15) MightyJack: Build Y1 Mightyjack

16) Aaron: Build R1 Aaron

17) Kermit: Discover B1 Kermit G2 Ein

18) Lexicon: Build Y1 Lexicon

19) MightyJack: Trade Y1 R1 Mightyjack

20) Aaron: Trade R1 Y1 Aaron

21) Kermit: Build B1 Ein

22) Lexicon: Trade Y1 R1 Lexicon

23) MightyJack: Discover B1 Mightyjack G2 Forest

24) Aaron: Discover Y1 Aaron G1 Ni

25) Kermit: Trade B1 Y1 Ein

26) Lexicon: Build G1 Ichi

27) MightyJack: Build Y1 Mightyjack

28) Aaron: Build R1 Aaron

29) Kermit: Discover B1 Ein Y1 Zwei

30) Lexicon: Build Y2 Lexicon

31) MightyJack: Build B1 Forest

32) Aaron: Build Y2 Ni

33) Kermit: Build Y2 Ein

34) Lexicon: Move Y2 Lexicon Ichi


35) MightyJack: Move Y1 Mightyjack Forest

36) Aaron: Trade R1 G1 Aaron

37) Kermit: Build Y2 Kermit

38) Lexicon: Build Y2 Lexicon

39) MightyJack: Trade B1 R1 Forest
	Kermit: Sorry , I made it a short game by srewing up a few turns ago.

40) Aaron: Sacrifice Y2 Ni
Move Y1 Ni Ein
Move Y1 Ein Kermit
Catastrophe Kermit Y



1698)
Started: 2005.12.2, Ended: 2005.12.18
Participants: Uglyfoot (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld G1 B2 Y3

2) Uglyfoot: Homeworld G3 B2 Y3

3) andylooney: Build Y1 Andylooney

4) Uglyfoot: Build Y1 Uglyfoot

5) andylooney: Trade Y1 G1 Andylooney

6) Uglyfoot: Discover Y1 Uglyfoot B1 Gateway

7) andylooney: Discover G1 Andylooney Y3 Thurston

8) Uglyfoot: Trade Y1 G1 Gateway

9) andylooney: Build G2 Thurston

10) Uglyfoot: Build G2 Gateway

11) andylooney: Discover G1 Thurston Y1 Different

12) Uglyfoot: Trade G2 Y2 Gateway

13) andylooney: Build G2 Different

14) Uglyfoot: Build G2 Gateway

15) andylooney: Build G3 Thurston

16) Uglyfoot: Build G3 Gateway

17) andylooney: Move G2 Thurston Gateway
Catastrophe Gateway Green

18) Uglyfoot: Build Y1 Uglyfoot

19) andylooney: Build Y1 Andylooney

20) Uglyfoot: Trade Y1 G1 Uglyfoot

21) andylooney: Build G2 Thurston

22) Uglyfoot: Move G1 Uglyfoot Gateway

23) andylooney: Trade Y1 R1 Andylooney

24) Uglyfoot: Build Y1 Uglyfoot

25) andylooney: Discover G3 Thurston Y1 Jumpingoffspot

26) Uglyfoot: Trade Y1 R1 Uglyfoot

27) andylooney: Discover G1 Different B3 Ibm

28) Uglyfoot: Discover Y2 Gateway G3 Commerce

29) andylooney: Sacrifice G3 Jumpingoffspot
Build G2 Ibm
Build G3 Different
Build R1 Andylooney

30) Uglyfoot: Build Y1 Uglyfoot

31) andylooney: Move R1 Andylooney Ibm

32) Uglyfoot: Build R2 Uglyfoot

33) andylooney: Sacrifice G3 Different
Build G3 Different
Build R2 Ibm
Build Y1 Andylooney

34) Uglyfoot: Build Y2 Uglyfoot

35) andylooney: Trade R2 Y2 Ibm

36) Uglyfoot: Move Y2 Uglyfoot Gateway

37) andylooney: Sacrifice G3 Different
Build G3 Different
Build R2 Andylooney
Build R2 Ibm

38) Uglyfoot: Build R3 Uglyfoot

39) andylooney: Sacrifice Y2 Ibm
Move R1 Ibm Gateway
Move R1 Gateway Uglyfoot
Catastrophe Uglyfoot Red
	Uglyfoot: Neat move with the sacrifice.  I knew that I would learn several things from this game!


40) Uglyfoot: Build Y2 Commerce

41) andylooney: Move G3 Different Uglyfoot

42) Uglyfoot: Sacrifice Y2 Gateway
Move Y2 Commerce Andylooney
Move Y2 Commerce Andylooney
Catastrophe Andylooney Y

43) andylooney: Sacrifice R2 Ibm
Attack Y3S Uglyfoot
Attack Y1S Uglyfoot
	andylooney: Nice parting shot. Thanks for the game!



1729)
Started: 2005.12.5, Ended: 2005.12.9
Participants: Murwiz (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld Y1 B2 G3

2) Murwiz: Homeworld G1 B3 Y3

3) Uglyfoot: Build G1 Uglyfoot

4) Murwiz: Build Y1 Murwiz
	Uglyfoot: I like this interface.

5) Uglyfoot: Discover G1 Uglyfoot B3 Bigblue

6) Murwiz: Discover Y1 Murwiz G2 Modestgreen

7) Uglyfoot: Build G1 Bigblue

8) Murwiz: Build Y1 Modestgreen

9) Uglyfoot: Build G2 Bigblue

10) Murwiz: Build Y2 Murwiz

11) Uglyfoot: Build G2 Uglyfoot

12) Murwiz: Trade Y2 B2 Murwiz

13) Uglyfoot: Build G3 Uglyfoot

14) Murwiz: Build B1 Murwiz
	Murwiz: Be careful not to make my error.

15) Uglyfoot: Trade G3 Y3 Uglyfoot

16) Murwiz: Build Y2 Murwiz
	Uglyfoot: I'll be careful.

17) Uglyfoot: Move Y3 Uglyfoot Bigblue

18) Murwiz: Sacrifice B1 Murwiz
Trade Y1 B1 Modestgreen

19) Uglyfoot: Discover G1 Bigblue Y2 Movinalong

20) Murwiz: Build Y1 Modestgreen

21) Uglyfoot: Build G3 Movinalong

22) Murwiz: Discover Y1 Modestgreen G3 Bignleafy

23) Uglyfoot: Move G1 Movinalong Murwiz

24) Murwiz: Build Y2 Bignleafy
	Murwiz: You are obviously online and shuffling moves, but not on Yahoo?

25) Uglyfoot: Trade G1 B1 Murwiz

26) Murwiz: Trade B2 R2 Murwiz
	Uglyfoot: Yahoo! has! been! crashing! on! me!
	Murwiz: Take a look at gaim: http://gaim.sourceforge.net. On Windows I used Trillian, and it's pretty cool but it does cost $30 for the full version.

27) Uglyfoot: Sacrifice G3 Uglyfoot
Build B1 Murwiz
Build B2 Murwiz
Build Y3 Bigblue
Catastrophe Murwiz B

28) Murwiz: Build R1 Murwiz
	Uglyfoot: slimy, eh?
	Murwiz: Yeah, I saw it coming. At least I got the b2 ship converted, which (a) saved a ship and (b) made you use a G3 instead of a G2.

29) Uglyfoot: Sacrifice Y3 Bigblue
Move G1 Bigblue Murwiz
Move G2 Bigblue Murwiz
Move G3 Movinalong Murwiz
Catastrophe Murwiz G



1708)
Variants: "Sinister"
Started: 2005.12.7, Ended: 2005.12.31
Participants: Lexicon (S), ts52 (N), Yobi (E)
Winner: ts52

1) ts52: Homeworld G2 B1 Y3

2) ts52: Pass
	Yobi: Sup, Lex

	Yobi: Sup, Lex

	Yobi: Oops, double post
	Lexicon: howdy.
	Lexicon: Dooo be do be doooo.

3) Lexicon: Homeworld G1 B3 Y3
	SYSTEM: Yobi resigns.
	Lexicon: Hmmm.  Seems to have skipped me.
	ts52: That's really odd. I wonder why that happned.
You man want to point this one out to Aaron. I'll hold off doing anything for a while if you want. Or maybe I can just pass, I'll check.

4) ts52: Build Y1 Ts52
	ts52: Aha, it did let me just pass. Now you should be able to establish a homeworld.
	Aaron: Thanks for passing, ts.  I have had problems with the resignation code from the beginning.  I *think* (again) that I have fixed the problem.  We will see when this situation recurs.  Thanks for your patience!
	Lexicon: Thanks guys. :)  

5) Lexicon: Build Y1 Lexicon

6) ts52: Build Y1 Ts52
	ts52: No problem. I don't think the game rules allow passing, but it's nice that it's there so we can work around glitches like this.

	ts52: Ack! I just realized we're now playing a 2 player game with a 4 pyramid economy. This changes everything! :)

7) Lexicon: Trade Y1 G1 Lexicon
	Lexicon: This should be interesting.  I haven't played by these rules but a couple times, so I wasn't any good at the shortages anyway, though they totally shaped the game.
	Lexicon: My friend group managed to totally misread or make up the rules to this game and didn't realize it for quite a while.  Have to make sure someone else reads the rules next time. ;)
	ts52: Best of luck to you. Feel free to ask me questions and -pass- to get my attention. Then I'll pass back to you.

8) ts52: Trade Y1 G1 Ts52

9) Lexicon: Build Y1 Lexicon
	Lexicon: I had Jesse give me a training game so I'm basically up to speed.  I'm one to ask when I have questions though.

10) ts52: Discover Y1 Ts52 G3 Oscar

11) Lexicon: Discover G1 Lexicon B2 Door
	ts52: Ah, fair enough then. Jesse's pretty good at teaching people.

12) ts52: Build Y1 Oscar

13) Lexicon: Trade Y1 R1 Lexicon

14) ts52: Build Y1 Ts52

15) Lexicon: Build R1 Lexicon

16) ts52: Trade Y1 R1 Ts52

17) Lexicon: Move R1 Lexicon Door

18) ts52: Build Y1 Ts52

19) Lexicon: Build Y1 Lexicon

20) ts52: Discover Y1 Oscar G2 Lime

21) Lexicon: Move Y1 Lexicon Door

22) ts52: Build Y2 Oscar

23) Lexicon: Discover G1 Door B3 Lamp

24) ts52: Build Y2 Lime

25) Lexicon: Build Y2 Lexicon

26) ts52: Discover Y1 Ts52 Y3 Sol

27) Lexicon: Move R1 Door Sol

28) ts52: Move Y2 Lime Sol

29) Lexicon: Attack Y1N Sol

30) ts52: Move Y2 Sol Lime

31) Lexicon: Move Y1 Sol Lime

32) ts52: Discover Y2 Lime G3 Kermit

33) Lexicon: Move R1 Sol Door

34) ts52: Discover Y1 Oscar G2 Apple

35) Lexicon: Move R1 Door Lamp

36) ts52: Sacrifice Y2 Kermit
Move Y1 Apple Lexicon
Move Y1 Lime Lexicon
Catastrophe Lexicon Yellow

37) Lexicon: Build R1 Lamp

38) ts52: Sacrifice Y3 Ts52
Move Y2 Oscar Door
Move Y2 Door Lexicon
Pass
	Lexicon: That doesn't bode well.

39) Lexicon: Build R2 Lexicon

40) ts52: Sacrifice R1 Ts52
Attack R2S Lexicon
	ts52: No, but I feel pretty naked myself now...

41) Lexicon: Sacrifice Y1 Lime
Move R1 Lamp Ts52
	Lexicon: It's a little suicidal, but it's going to work for you.

42) ts52: Attack R1S Lexicon

	Lexicon: Good game.  Hopefully I'll pay more attention next time. ;)
	ts52: Good game. I still find it's hard to keep track of everything...



1740)
Started: 2005.12.7, Ended: 2006.1.9
Participants: ts52 (S), PhoenixPhyre (N)
Winner: ts52



1741)
Started: 2005.12.7, Ended: 2005.12.31
Participants: PhoenixPhyre (S), JunkMan (N)
Winner: JunkMan

1) JunkMan: Homeworld G1 B2 Y3

	SYSTEM: PhoenixPhyre resigns.


1754)
Variants: "Sinister"
Started: 2005.12.10, Ended: 2006.1.14
Participants: Jesse (S), bennyb (N)
Winner: Jesse

1) bennyb: Homeworld B1 G3 R3

2) Jesse: Homeworld G1 B2 Y3

3) bennyb: Build R1 Bennyb
	Jesse: Hello, bennyb.  Played much Homeworlds?

4) Jesse: Build Y1 Jesse
	bennyb: no first game :)  I've got no idea what I'm doing ;)

	Jesse: Okay, the first thing to do is look at the tips for new players on the wiki.  (There's also a good exposition of basic strategy at the icehousegames wiki.  There's a link from the SDG wiki page.)
	Jesse: Then, my personal recommendation would be to switch your r3 for a y3.  Or, you may prefer to switch the r1 for a y1.  But one way or another, you need to (a) diversify and (b) move out to other systems.  Not necessarily immediately, but soon.

5) bennyb: Trade R1 Y1 Bennyb
	bennyb: thanks Jesse.  I had a read of that, very interesting.

6) Jesse: Discover Y1 Jesse G3 Paul

7) bennyb: Discover Y1 Bennyb B2 Dude

8) Jesse: Build Y1 Jesse

9) bennyb: Build R1 Bennyb

10) Jesse: Trade Y1 R1 Jesse

11) bennyb: Trade R1 Y1 Bennyb

12) Jesse: Build Y2 Jesse

13) bennyb: Build R1 Bennyb

14) Jesse: Trade Y2 G2 Jesse

15) bennyb: Move Y1 Bennyb Dude

16) Jesse: Discover G2 Jesse Y3 Erwin

17) bennyb: Trade Y1 G1 Dude

18) Jesse: Build R1 Jesse

19) bennyb: Build Y1 Dude

20) Jesse: Build Y2 Jesse

	Jesse: I'm retiring this game now.


1819)
Started: 2005.12.10, Ended: 2005.12.18
Participants: jeep (S), sketchwick (N)
Winner: sketchwick

1) sketchwick: Homeworld R1 B2 G3

2) jeep: Homeworld Y1 B3 G3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build G1 Jeep

5) sketchwick: Trade G1 Y1 Sketchwick

6) jeep: Build G1 Jeep

7) sketchwick: Build G1 Sketchwick

8) jeep: Trade G1 Y1 Jeep

9) sketchwick: Build Y2 Sketchwick

10) jeep: Build Y2 Jeep

11) sketchwick: Discover Y1 Sketchwick G3 Gob

12) jeep: Discover Y1 Jeep G2 Stopper

13) sketchwick: Sacrifice G3 Sketchwick
Build Y2 Sketchwick
Build Y3 Sketchwick
Build Y3 Gob

14) jeep: Sacrifice Y2 Jeep
Move Y1 Stopper Gob
Move Y1 Gob Sketchwick
Catastrophe Sketchwick Yellow

15) sketchwick: Build Y1 Gob

16) jeep: Build G1 Jeep

17) sketchwick: Build G2 Sketchwick

18) jeep: Trade G3 R3 Jeep

19) sketchwick: Trade G1 R1 Sketchwick

20) jeep: Discover G1 Jeep Y2 Stopper

21) sketchwick: Move Y1 Gob Sketchwick

22) jeep: Build G1 Stopper

23) sketchwick: Build Y2 Sketchwick

24) jeep: Trade R3 Y3 Jeep

25) sketchwick: Build Y2 Sketchwick
	jeep: *sigh* you win...

26) jeep: Build G2 Jeep

27) sketchwick: Build Y3 Gob

28) jeep: Move G1 Stopper Gob

29) sketchwick: Sacrifice Y2 Sketchwick
Move Y3 Gob Stopper
Move Y3 Stopper Jeep

	jeep: Yeah, I lost this way early, no sense playing it out...
	SYSTEM: jeep resigns.


1663)
Started: 2005.12.13, Ended: 2006.1.15
Participants: bennyb (S), JunkMan (W), Lexicon (N), illvilja (E)
Winner: Lexicon

1) Lexicon: Homeworld G1 B2 Y3

2) illvilja: Homeworld G2 B1 Y3
	illvilja: homeworld b1 g2 y3
	illvilja: Oops...  this is the message window, not the order window :-).

3) JunkMan: Homeworld G1 B3 Y3
	illvilja: Cool... that were better!  Ok, ok, Lexicon... I'm a copycat.
	Lexicon: Well, we'll just need to refrain from destroying each other.  Now where's that bennyb at?  Too many new players jumping on, starting games, and not following through.
	illvilja: Well, patience is a virtue... but I slowly realize that there might be a point with the "Force surrender" button.
	illvilja: That is a problem with game servers where anonymous ppl "too easily" can sign up for a game. As the sign up phase don't require "enough effort" it does not weed out all the ppl who are quite inactive.  Not that I would sort bennyb into that cathegory, he might have other reasons for not doing his move.

Oh, BTW, Junkman... are you there?  Just pinging...

	Lexicon: He hasn't been on in 2.5 weeks.  Unless y'all want to wait longer, I'm going to resign him tomorrow.
	JunkMan: I'm here, I didn't even remember that I was in this game, it's been so long.  I'm all for giving people time, but being gone for the better part of a month is too long.  I vote for resigning him if he doesn't move today.

4) Lexicon: Build Y1 Lexicon

	Lexicon: Fine by me.


1853)
Started: 2005.12.15, Ended: 2005.12.19
Participants: ts52 (S), xoet (N)
Winner: ts52

1) xoet: Homeworld G3 G3 Y3 *
	xoet: Hi ts52 no idea what I'm doing am i good or evil???
	xoet: are there more players coming? I have a friend or two that might play?

2) ts52: Homeworld B3 G2 Y3
	xoet: i think this game is evil cause ive looked over rules and wiki and the hints it took me what 48:08 min to get it right   yeah I'm the one putting homeworld g3,g3,y3 *) and wondering for almost an hour
	xoet: these rules need a revamp as far as what to type  now how do i put a lable on my system  like "North"
	ts52: Your homeworld always has the label of your userid. I set this up as a two player game, because I like it better than the multi player, but you can start more challenges for your friends to pick up.


3) xoet: Build Y1 Xoet
	xoet: I should have stayed logged on a little longer to make my second move this morning  but logged off before you moved  btw I hope you don't mind waiting twelve hours between the times I am logged I log on for about 10 hours give or take every day and a half or so

4) ts52: Build Y1 Ts52
	xoet: what am i doing?  I mean Just entering commands till something does not give me an error  what does you have no actions left mean???
	ts52: No problem. I'm not in a rush for these games.
You only get one action per turn. Your only option on your last turn was to constuct a new small yellow ship.

5) xoet: Discover Y3 Xoet B2 Ur7i
	xoet: ok that must be why i did not do anything else but now what I'm lost again   yet i have not tried any of the commands yet

6) ts52: Trade Y1 G1 Ts52
	xoet: slowly but surely I am getting the idea

7) xoet: Build Y1 Xoet

8) ts52: Discover G1 Ts52 Y1 Sirius
	xoet: ok after five tries of things to do mmmm i guess that is one of the few things i can do

9) xoet: Discover Y1 Xoet G2 Zerg

10) ts52: Build Y2 Ts52
	xoet: i did not know i could make a new system thought the limit was just the one on the screen

11) xoet: Discover Y3 Ur7i R3 Cat
	ts52: It seems like you're starting to get the hang of it.

12) ts52: Discover Y2 Ts52 G1 Pebble
	xoet: aah hyperspatial flux

13) xoet: Move Y3 Cat Pebble

14) ts52: Build Y2 Ts52

15) xoet: Build Y2 Xoet
	xoet: <<<reading rules again
	xoet: sorry about the delay

16) ts52: Build Y3 Pebble
	xoet: i thought the ship your creating had to be bigger than the ship that is creating it
my mistake solved by trial and error
	ts52: Nope, the ship you build has to match the color of one of your ships in the system, and be the smallest piece of that color.

17) xoet: Discover Y3 Pebble R3 Bird
	xoet: so a how does one get a blue or red ship?

18) ts52: Build G1 Sirius
	xoet: why did this not work discover y2 xoet r3 r4    ????    said systems not connected
	xoet: i cant trade in xoet says i have no blue to trade i cant build in xoet becuase i have no green ships cept i can build a yellow ship  how do i get a blue ship or building or something   is there a command "construct b3 xoet" that i could use 
	ts52: In order to get a non-yellow ship, you have to disvoer a blue system, and then use that system to trade your yellow ship for a non-yellow ship of the same size.
Ships can only move between connected systems. Two systems are connected if they do _not_ have the same size piece in them.
So right now xoet is connected to pebble, sirius and zerg.
You can't build a yellow ship because there are no more yellow pieces left.

19) xoet: Discover Y1 Xoet B2 Bluebird

20) ts52: Move G1 Sirius Ts52

21) xoet: Trade Y1 B1 Bluebird

22) ts52: Build G2 Sirius

23) xoet: Build Y1 Xoet

24) ts52: Build G3 Sirius

25) xoet: Move Y2 Xoet Zerg

26) ts52: Move Y3 Pebble Bluebird

27) xoet: Move Y2 Zerg Sirius

28) ts52: Move G3 Sirius Bluebird

29) xoet: Move Y2 Sirius Bluebird
	xoet: Slowly but surely I am beginning to understand the commands next comes strategy

30) ts52: Trade G3 R3 Bluebird
	xoet: mmm i guess that zerg and bluebird are not connected but sirius and bluebird are  mmm
	ts52: exactly

31) xoet: Move Y3 Bird Bluebird

32) ts52: Move R3 Bluebird Xoet

33) xoet: Move Y3 Bluebird Xoet
	xoet: ack you have this one it looks like i know end conditions i think i sould move a ship back home

34) ts52: Attack Y3 Xoet

35) xoet: Move Y2 Bluebird Pebble
	ts52: Yeah, there are a few adages for this game:
 always start with two different sizes in your homewold - this makes it harder for your opponent to get into your homeword.
  always start with a large ship - there is strength in size
  between your homeworld and starting ship, have blue, green and yellow. You need green to build, and yellow to move, and eventually blue to trade for red. But if you don't have those three, you'll end up wasting time getting the one you don't
  never leave your homeworld undefended. - Keep a large ship in your homeworld if at all possible.
  finally, once you opponent has a gun, you get a gun. - Once things escalate to red ships, it becomes an arms race.
If you had kept a large ship in your homeworld, and traded one of your ships on bluebird to red right after I'd traded for a red ship, then when I moved into your homeworld, you could've sacrificed the red ship to take over my red ship, and still been alive.
We really didn't get into sacrifices in this game at all, but they are another powerful tactic in the game that it's important not to overlook.
	ts52: Ugh, I didn't realize that all my returns would get deleted, sorry that last message is so hard to read now...
	xoet: i think it was easyer for me to  read anyway  if its ok   im going to share that with my friend i got to play me   it is her first game   and my third with her

36) ts52: Attack Y1 Xoet
	ts52: No problem. Feel free to share it. Thanks for the game. I look forward to playing you again.



1878)
Started: 2005.12.16, Ended: 2006.1.13
Participants: cobalt (S), a_magical_me (N)
Winner: cobalt

1) a_magical_me: Homeworld G3 Y2 B3

2) cobalt: Homeworld B1 Y2 G3

3) a_magical_me: Build B1 A_magical_me

4) cobalt: Build G1 Cobalt

5) a_magical_me: Build B1 A_magical_me

6) cobalt: Discover G1 Cobalt Y3 Theeze

7) a_magical_me: Trade B1 G1 A_magical_me

8) cobalt: Build G1 Cobalt

9) a_magical_me: Build G2 A_magical_me

10) cobalt: Build G2 Cobalt

11) a_magical_me: Discover G1 A_magical_me Y1 Magrathea

12) cobalt: Trade G1 R1 Cobalt

13) a_magical_me: Build B1 A_magical_me

14) cobalt: Trade G2 Y2 Cobalt

15) a_magical_me: Trade B1 Y1 A_magical_me

16) cobalt: Build G1 Cobalt

17) a_magical_me: Build G2 Magrathea

18) cobalt: Discover G1 Cobalt G3 Coffee



1898)
Started: 2005.12.17, Ended: 2005.12.20
Participants: a_magical_me (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) a_magical_me: Homeworld B2 G1 R3

3) andylooney: Build Y1 Andylooney

4) a_magical_me: Build R1 A_magical_me

5) andylooney: Discover Y1 Andylooney G3 Grunwald

6) a_magical_me: Build R1 A_magical_me

7) andylooney: Build Y1 Andylooney

8) a_magical_me: Trade R1 Y1 A_magical_me

9) andylooney: Build Y2 Andylooney

10) a_magical_me: Move R1 A_magical_me Grunwald
	a_magical_me: a_magical_me sends greetings to andylooney!

We are wondering if you'd like to be part of a very special offer. Recently our scientists have developed a brand new form of technology! Our shiny new RED SHIPS are the perfect addition to any military force! Scans of your homeworld indicate that you have not yet discovered this amazing technology. If you are interested, contact us at Intergalactic Telephone Number 555-666-1962'

Sincerely,
The Official Sales Force of a_magical_me

11) andylooney: Build Y2 Grunwald

12) a_magical_me: Attack Y1 Grunwald
	andylooney: No thanks, we have our own weapon systems under development. We expect to them to be online soon enough. In the meantime, we've been busy with ship-building.

13) andylooney: Trade Y2 R2 Andylooney

14) a_magical_me: Discover R1 Grunwald Y2 Sanctuary

15) andylooney: Trade Y1 G1 Andylooney

16) a_magical_me: Build R1 A_magical_me

17) andylooney: Build R1 Andylooney

18) a_magical_me: Build R2 A_magical_me
	a_magical_me: It has come to our attention that you have been building red ships on your homeworld. Currently, red technology is protected under the Intergalactic Patent Law (patent #4,936,585). Unless you cease and desist, we will be forced to take action as outlined by Intergalactic Central Enforcement article 42 subsection 10000.

19) andylooney: Sacrifice Y2 Grunwald
Move R1 Andylooney Grunwald
Move R1 Grunwald A_magical_me
Catastrophe A_magical_me Red
	andylooney: How's this for an action?

20) a_magical_me: Build Y1 A_magical_me
	a_magical_me: nice

21) andylooney: Move R2 Andylooney Grunwald
	a_magical_me: I'm not sure if I can recover from that.

22) a_magical_me: Build Y2 A_magical_me

23) andylooney: Attack Y1S Grunwald
	a_magical_me: Of course, you realize, this means war.
	andylooney: well, if it's a fight you want...

24) a_magical_me: Trade Y2 R2 A_magical_me
	a_magical_me: Uh-oh

25) andylooney: Build Y2 Grunwald

26) a_magical_me: Move Y1 A_magical_me Grunwald

27) andylooney: Discover Y2 Grunwald G1 Outpost

28) a_magical_me: Build Y2 Grunwald

29) andylooney: Build Y3 Grunwald
Catastrophe Grunwald Yellow

30) a_magical_me: Build Y1 A_magical_me

31) andylooney: Discover G1 Andylooney Y3 Howell

32) a_magical_me: Trade R2 G2 A_magical_me

33) andylooney: Build G2 Howell

34) a_magical_me: Trade G2 B2 A_magical_me

35) andylooney: Build G2 Howell

36) a_magical_me: Discover R1 Sanctuary G3 Foothold
	a_magical_me: I'm toast.

37) andylooney: Discover G2 Howell Y2 Plugh

38) a_magical_me: Build R1 Foothold

39) andylooney: Build G3 Howell

40) a_magical_me: Build R1 Foothold

41) andylooney: Move G3 Howell A_magical_me

42) a_magical_me: Move Y1 A_magical_me Foothold

43) andylooney: Sacrifice R2 Grunwald
Attack B2S A_magical_me
Attack Y1S A_magical_me
	a_magical_me: X_X Checkmate. At least I'm better at Martian Chess than I am at Homeworlds.
	andylooney: Indeed. Anyway, thanks for the game!



1882)
Variants: "Sinister"
Started: 2005.12.18, Ended: 2006.1.26
Participants: Toni (S), Aaron (W), xoet (N), a_magical_me (E)
Winner: Aaron

1) xoet: Homeworld B3 G2 Y3 R2 B3

2) a_magical_me: Homeworld G3 Y1 B3
	xoet: hey toni, a_magical_me, and Aaron hope to have a good clean game just come out of your corners ready to play...:-)

3) Aaron: Homeworld Y1 B2 G3
	Toni: good luck, because I don't know what I am doing. :)
	Toni: Sorry I just can't figure out the command to do. 

4) xoet: Build Y1 Xoet
	SYSTEM: Toni resigns.
	SYSTEM: Toni resigns.
	Toni: didn't want to hold you guys up.
	xoet: did you pass Aaron?

5) a_magical_me: Build B1 A_magical_me

6) Aaron: Build G1 Aaron
	Aaron: Uhm, what just happened? =)  It skipped my turn.  Rolling back.
	Aaron: I will track down that error.

7) xoet: Trade Y1 B1 Xoet

8) a_magical_me: Trade B3 G3 A_magical_me

9) Aaron: Trade G1 Y1 Aaron

10) xoet: Build Y1 Xoet

11) a_magical_me: Build G1 A_magical_me

12) Aaron: Build G1 Aaron

13) xoet: Trade Y3 R3 Xoet

14) a_magical_me: Trade G3 R3 A_magical_me

15) Aaron: Trade G1 B1 Aaron

16) xoet: Discover Y1 Xoet G1 Help

17) a_magical_me: Build R1 A_magical_me
	xoet: i do not know but somethings work for me and others dont  the discover command did not work for me dont know why but this is my second game so far

18) Aaron: Build G1 Aaron
	Aaron: what did the system tell you?

19) xoet: Build Y1 Help
	xoet: It said the systems are not connected then i tried to go to your systems and they are not connected either   Ill try again now because I would not of made a red dude so early

20) a_magical_me: Build G1 A_magical_me
	xoet: i guess i only create certian kinds of new worlds??
	a_magical_me: From the rules: "Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected. Therefore, a small system is connected to any medium or large system, but not to another small system. A binary system made up of a small piece and a medium piece is not connected to any small or medium system, nor is it connected to any binary system that contains a small piece or a medium piece. System connections have nothing to do with the physical positions of systems on the playing field."

21) Aaron: Trade G1 R1 Aaron

22) xoet: Build Y2 Help

23) a_magical_me: Discover G1 A_magical_me Y2 Magrathea

24) Aaron: Discover Y1 Aaron G3 Emeralds

25) xoet: Build R1 Xoet

26) a_magical_me: Build G1 Magrathea

27) Aaron: Move Y1 Emeralds Help
Catastrophe Help Y

28) xoet: Trade R1 Y1 Xoet

29) a_magical_me: Build B1 A_magical_me

30) Aaron: Build G1 Aaron

31) xoet: Build Y1 Xoet

32) a_magical_me: Move B1 A_magical_me Magrathea

33) Aaron: Discover G1 Aaron Y3 Bananas

34) xoet: Trade Y1 G1 Xoet

35) a_magical_me: Build B1 Magrathea

36) Aaron: Build G2 Bananas

37) xoet: Build Y1 Xoet

38) Aaron: Build R1 Aaron

39) xoet: Build B2 Xoet

40) Aaron: Build B2 Aaron

41) xoet: Discover Y1 Xoet R1 Jelly

42) Aaron: Move B2 Aaron Bananas

43) xoet: Build Y1 Xoet

44) Aaron: Trade G2 Y2 Bananas

45) xoet: Move B2 Xoet Jelly

46) Aaron: Move R1 Aaron Bananas

47) xoet: Move G1 Xoet Jelly

48) Aaron: Build B2 Bananas

49) xoet: Build G2 Jelly

50) Aaron: Discover B2 Bananas R1 Rubies

51) xoet: Discover G2 Jelly R3 Naotet

52) Aaron: Move B2 Bananas Rubies

53) xoet: Build G2 Naotet

54) Aaron: Sacrifice Y2 Bananas
Move B2 Rubies Xoet
Move B2 Rubies Xoet
Catastrophe Xoet B

55) xoet: Build B1 Jelly

56) Aaron: Move R1 Bananas Magrathea

57) xoet: Move B2 Jelly Naotet

58) Aaron: Attack G1E Magrathea
	Aaron: Let's get things moving =)

59) xoet: Build B2 Naotet

60) Aaron: Attack B1E Magrathea
	xoet: you know if it did not take me a few tries to get my orders right I would be more of a challenging opponent

61) xoet: Trade G2 Y2 Naotet

62) Aaron: Move B1 Aaron Naotet

63) xoet: Move B2 Naotet Aaron

64) Aaron: Attack B2N Aaron

65) xoet: Attack B1W Naotet
	xoet: ok I'm really new to this game and cant figure out why "sacrifice G2 naotet
move b2 naotet Aaron
move b2 naotet Aaron
catastrophe Aaron b"
does not work??

66) Aaron: Move B2 Aaron Bananas
	Aaron: I think you figured it out =)

67) xoet: Move R3 Xoet Bananas

68) Aaron: Move B2 Bananas Xoet
	xoet: yep I did not have move power in the naotet system  guess I should not of told you what  I was planning
	Aaron: My options are pretty limited anyway

69) xoet: Move R3 Bananas Aaron

70) Aaron: Attack R3N Aaron

71) xoet: Move B2 Naotet Xoet

72) Aaron: Sacrifice R3 Aaron
Attack B2N Xoet
Attack Y1N Xoet
Attack Y1N Xoet

	Aaron: Thanks for the game, Xoet!!


1929)
Started: 2005.12.19, Ended: 2005.12.31
Participants: Toni (S), xoet (N)
Winner: xoet

1) xoet: Homeworld G3 B2 Y3

2) Toni: Homeworld Y1 B1 G3 *
	xoet: ok i typed homeworld g3 b2 y3
	xoet: and this is what happened   now type the same thing because im told that yellow is for moving blue is for changing the colors of the ships(triangles)
	xoet: and green is like the connection glue i think but we will see
	xoet: so typing two homeworlds and a ship 
	xoet: homeworld b3 g3 y3 i think is the best home world you really dont want red till you start attacking mid game i guess it is
	xoet: but sometimes you may want to mix it up like homeworld b3 g2 y2
	xoet: with one of each you cant lose i guess dont know the concepts of how to play just what works and does not work thru trial and error
	Toni: b3 g3 y3 all three are giving me the same error message I got on the other game "an unrecognized command"  I never could figure out how to get them in my box in the other game either.
	Toni: tried it again with "homeworld" starting the command and  got this....It is very important that your starting stars be different sizes! To override this check, please append an asterisk (*) to the end of the 'homeworld' command (eg. homeworld y1 b1 g3 *). 

3) xoet: Build Y1 Xoet

4) Toni: Pass
	Toni: Well got it to take it, so here it is, such as it is.

5) xoet: Build Y1 Xoet
	xoet: mmmm   they may not have undo working right with all the games    but really it does not matter too much about the number cause you can make it up later
	xoet: that might have been because you had small ships  dont know   but i typed the next line above
	xoet: build y1 xoet
	xoet: you should type the follow line not much else to do
	xoet: build g1 Toni
	Toni: build g1 gives the message...The system does not exist.

6) Toni: Build G1 Toni
	Toni: could not get anything to work.. just kept telling me that the system does not exist.
	xoet: typing what is in quote's "build g1 Toni" will get the green hopefully   i will pass also now
	xoet: not letting me pass i will pass next turn to keep it even for both our sakes

7) xoet: Pass
	xoet: what i did was "build y1 xoet" you should type "build g1 Toni" that should get you a ship in your system "Toni"

8) Toni: Build G1 Toni
	Toni: ok that worked

9) xoet: Discover Y1 Xoet B1 Emc2
	xoet: there i did not know how to pass i thought there should of been a button   but could not find it before
	xoet: this is what my other opponent posted for me to gather my abilities with the game for the big game im play with those other two ppl    
	xoet: ts52 "Yeah, there are a few adages for this game: always start with two different sizes in your homewold - this makes it harder for your opponent to get into your homeword. always start with a large ship - there is strength in size between your homeworld and starting ship, have blue, green and yellow. You need green to build, and yellow to move, and eventually blue to trade for red. But if you don't have those three, you'll end up wasting time getting the one you don't never leave your homeworld undefended. - Keep a large ship in your homeworld if at all possible. finally, once you opponent has a gun, you get a gun. - Once things escalate to red ships, it becomes an arms race. If you had kept a large ship in your homeworld, and traded one of your ships on bluebird to red right after I'd traded for a red ship, then when I moved into your homeworld, you could've sacrificed the red ship to take over my red ship, and still been alive. We really didn't get into sacrifices in this game at all, but they are another powerful tactic in the game that it's important not to overlook."
	xoet: sacrifice how do you do that ???   i dont know i will have to ask him to show me   lol

10) Toni: Build G1 Toni
	xoet: problem being he typed that after it was certian i would lose  and of course the game is over with ts52

11) xoet: Pass
	xoet: now we got to worry about over populations so i am move my little ship out to "discover y1 xoet b1 emc2"
	xoet: your command might look like "discover g1 Toni y1 yolanda"
	xoet: or you could "move g1 Toni emc2"
	xoet: i think that should work too but if you get too many ships in your home system there is the catastrophe   but i dont know how that works yet
	Toni: with the coding you gave...move g1 Toni emc2 and discover g1 Toni y1 yolanda... I get this message - These systems are not connected

12) Toni: Discover G1 Toni G2 Yolanda

13) xoet: Build Y2 Xoet

14) Toni: Build G2 Yolanda

15) xoet: Move Y2 Xoet Emc2

16) Toni: Build G2 Yolanda

17) xoet: Discover Y1 Emc2 G3 Santa

18) Toni: Pass

19) xoet: Build Y2 Xoet
	xoet: now in a regular game an opponent would of said "catastrophe Yolanda g" because four of the same color and you are over populated suggestion either "move g1 yolanda Santa" or discover a new system or something i dont think you can trade without a blue ship or star but you might be able too
	xoet: _magical_me: From the rules: "Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected. Therefore, a small system is connected to any medium or large system, but not to another small system. A binary system made up of a small piece and a medium piece is not connected to any small or medium system, nor is it connected to any binary system that contains a small piece or a medium piece. System connections have nothing to do with the physical positions of systems on the playing field." 

20) Toni: Trade G1 B1 Toni
	Toni: Had to pass.. got this message... "You have 2 unused actions. This system requires you to explicitely PASS any undesired actions" 

21) xoet: Build Y2 Santa
	xoet: mmm i think we need to do something about the four greens in yolanda

22) Toni: Build G1 Yolanda B1 Kassa
	xoet: try this "trade g1 b1 Toni"
	xoet: but maybe take a day off till I can read the rules over a few more times if you want

23) xoet: Discover Y2 Xoet R1 Bill

24) Toni: Move B1 Toni Yolanda
	xoet: i would "move b1 Toni yolanda"

25) xoet: Trade Y3 B3 Xoet

26) Toni: Build B2 Yolanda

27) xoet: Build Y3 Xoet

28) Toni: Trade G1 R1 Toni
	xoet: good now you can trade the green into maybe yellow but you might have to trade them into blues

29) xoet: Move B3 Xoet Bill
	xoet: now your best bet would be "trade g3 Toni y3"
	xoet: actually you should be able to trade some greens in the yolanda system
	xoet: oh and i am unsure if this exists in this game yet but it does in byte and impasse   in small letters there is a little link saying view all moves   and then you just pick and choose!!! in the form scroll bar
	xoet: so ive undone my last move to see if homeworlds has a move choice selection but could not find one   oh well

30) Toni: Move R1 Toni Yolanda *
	xoet: made trade after i realized i could not trade to blue with y1 because there were no b1's and a trade must be even

31) xoet: Build Y3 Xoet

32) Toni: Build R1 Yolanda *

33) xoet: Build Y3 Santa

34) Toni: Trade G2 B2 Yolanda
	xoet: :: xoet's trade ship entered the red star system called bill hooking up with his starship size two ::

35) xoet: Move B3 Bill Santa

36) Toni: Trade G2 R2 Yolanda *

37) xoet: Trade Y2 G2 Santa
	Toni: could not make anyother moves but build. :(
	xoet: you should have been able to trade g2 b2 yolanda

38) Toni: Trade R2 Y2 Yolanda *

39) xoet: Move B3 Santa Bill

40) Toni: Move Y2 Yolanda Emc2

41) xoet: Trade Y2 R2 Emc2

42) Toni: Move Y2 Emc2 Yolanda

43) xoet: Build G1 Santa

44) Toni: Move R1 Yolanda Santa

45) xoet: Trade R2 Y2 Emc2

46) Toni: Attack Y1 Santa R2 Santa

47) xoet: Move B3 Bill Yolanda
Catastrophe Yolanda B

48) Toni: Attack G1 Santa

49) xoet: Move G2 Santa Yolanda
Catastrophe Yolanda G

50) Toni: Move R1 Santa Bill

51) xoet: Trade Y3 R3 Xoet

52) Toni: Build G1 Toni

53) xoet: Trade Y1 B1 Xoet

54) Toni: Trade G3 R3 Toni *

55) xoet: Build Y1 Santa

56) Toni: Move R3 Toni Santa

57) xoet: Move Y3 Santa Bill

	SYSTEM: Toni resigns.


1928)
Started: 2005.12.19, Ended: 2006.1.1
Participants: Laurie_Menke (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld G1 B2 Y3

2) Laurie_Menke: Homeworld B3 G1 Y3

3) andylooney: Build Y1 Andylooney
	Laurie_Menke: Let's see if I can do a little better than our last game.  :o)

4) Laurie_Menke: Build Y1 Laurie_menke

5) andylooney: Trade Y1 G1 Andylooney
	andylooney: ok! Good luck!

6) Laurie_Menke: Trade Y3 G3 Laurie_menke
	Laurie_Menke: Thanks...you, too!  :o)

7) andylooney: Build G2 Andylooney

8) Laurie_Menke: Discover G3 Laurie_menke B2 Phonebooth

9) andylooney: Trade G1 R1 Andylooney

10) Laurie_Menke: Build Y1 Laurie_menke

11) andylooney: Discover G2 Andylooney Y3 Howell

12) Laurie_Menke: Trade Y1 R1 Laurie_menke

13) andylooney: Build G1 Howell

14) Laurie_Menke: Sacrifice G3 Phonebooth
Build R1 Laurie_menke
Build R2 Laurie_menke
Build Y1 Laurie_menke

15) andylooney: Build R2 Andylooney

16) Laurie_Menke: Trade R2 G2 Laurie_menke

17) andylooney: Discover G1 Howell Y2 Plugh

18) Laurie_Menke: Discover G2 Laurie_menke Y2 Luella
	Laurie_Menke: So I'm curious...how are you naming your star systems these days?  Are those last names?  :o)

19) andylooney: Build Y1 Andylooney
	andylooney: I have no particular naming convention. I have some tendancies, but nothing is rigorous. Howell is a last name. Plugh is a magic word from the Collossal Cave text adventure.

20) Laurie_Menke: Trade Y1 B1 Laurie_menke
	Laurie_Menke: Good deal.  If you like text adventures and geocaching, you may want to check out this web site:  http://www.geocaching.com/seek/cache_details.aspx?guid=f178868c-fe61-4fc9-bbba-7beee0bb9862.  It's a text adventure-based geocache in the town where I live.  :o)

21) andylooney: Build G2 Plugh

22) Laurie_Menke: Move R1 Laurie_menke Plugh

23) andylooney: Move G2 Plugh Laurie_menke

24) Laurie_Menke: Build R2 Laurie_menke

25) andylooney: Sacrifice R2 Andylooney
Attack R2S Laurie_menke
Attack R1S Laurie_menke
	Laurie_Menke: Well, bye-bye binary star system.  But at least I'm still in the game.  I probably could have played that better...   :o(

26) Laurie_Menke: Build G3 Luella
	Laurie_Menke: Oh, no!  Shoot!  I thought I saw what you were doing, but I didn't expect that at all!  I thought you were going to sacrifice your y3 in order to move your greens in and cause a catastrophe.  This is *much* worse!  :o(

27) andylooney: Sacrifice R2 Laurie_menke
Attack B1S Laurie_menke
Attack Y1S Laurie_menke
	andylooney: Yes, it's true, it's worse that you thought. Thanks for playing!



1939)
Started: 2005.12.19, Ended: 2006.2.8
Participants: ts52 (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld G1 B2 Y3
	ts52: Hey Andy! It's Tim. Hopefully I'll be a bit more competition this time than I was at Origins. :)
	andylooney: Hi Tim! Good luck and thanks for playing!


2) ts52: Homeworld G3 B2 Y3

3) andylooney: Build Y1 Andylooney
	ts52: Thanks. Good luck to you too!
Much as I really appreciate this server, I've been thinking it would be fun to play by email, swapping domcumented pictures of the game with your opponent that you've set up in neat and interesting locations.
	andylooney: yeah, well... having done that, I find this online system far easier!

4) ts52: Build Y1 Ts52

5) andylooney: Trade Y1 G1 Andylooney
	ts52: Absolutely. I know I wouldn't want to try to keep track of more than one game that way.

6) ts52: Trade Y1 G1 Ts52

7) andylooney: Build G2 Andylooney

8) ts52: Discover G1 Ts52 B1 Blueberry

9) andylooney: Trade G1 R1 Andylooney

10) ts52: Build Y1 Ts52
	ts52: You bring weapons into this peaceful galaxy?!?!
I can only assume your intenions are no good.

11) andylooney: Discover G2 Andylooney Y3 Howell

12) ts52: Move Y1 Ts52 Blueberry

13) andylooney: Build Y1 Andylooney

14) ts52: Build G1 Blueberry

15) andylooney: Build G2 Howell

16) ts52: Discover G1 Blueberry G3 Oscar

17) andylooney: Discover G2 Howell Y2 Plugh

18) ts52: Build Y1 Ts52

19) andylooney: Discover Y1 Andylooney B3 Ibm

20) ts52: Trade Y1 R1 Ts52

21) andylooney: Build R1 Andylooney

22) ts52: Build R2 Ts52

23) andylooney: Build R2 Andylooney

24) ts52: Move R1 Ts52 Blueberry

25) andylooney: Move R2 Andylooney Howell

26) ts52: Move Y1 Blueberry Oscar

27) andylooney: Move R2 Howell Blueberry

28) ts52: Discover G1 Oscar Y2 Lemon

29) andylooney: Attack R1S Blueberry

30) ts52: Trade G1 Y1 Blueberry

31) andylooney: Sacrifice G2 Howell
Build Y2 Andylooney
Build Y3 Ibm

32) ts52: Discover Y1 Blueberry G3 Kermit

33) andylooney: Move Y2 Andylooney Kermit

34) ts52: Discover Y1 Kermit B1 Burst

35) andylooney: Move Y1 Ibm Blueberry

36) ts52: Sacrifice G1 Lemon
Build Y2 Oscar

37) andylooney: Trade R1 G1 Blueberry

38) ts52: Trade Y1 G1 Burst

39) andylooney: Build G2 Blueberry

40) ts52: Build G2 Burst

41) andylooney: Build Y1 Blueberry

42) ts52: Move Y1 Oscar Burst

43) andylooney: Trade R1 B1 Andylooney

44) ts52: Move G2 Burst Oscar

45) andylooney: Sacrifice Y2 Kermit
Move G1 Blueberry Oscar
Move G2 Blueberry Oscar
Catastrophe Oscar Green

46) ts52: Build G1 Burst

47) andylooney: Build G2 Plugh

48) ts52: Discover G1 Burst G3 Kermit

49) andylooney: Move G2 Plugh Blueberry

50) ts52: Build Y2 Burst

51) andylooney: Build Y2 Andylooney

52) ts52: Build R1 Ts52

53) andylooney: Sacrifice G2 Plugh
Build G2 Blueberry
Build Y2 Ibm

54) ts52: Move Y1 Burst Kermit

55) andylooney: Discover G2 Blueberry G3 Paradise

56) ts52: Build G2 Burst

57) andylooney: Move Y3 Ibm Burst

58) ts52: Sacrifice Y2 Burst
Discover G2 Burst Y2 Sol
Move G1 Burst Sol

59) andylooney: Move R2 Blueberry Kermit

60) ts52: Trade R2 B2 Ts52

61) andylooney: Attack G1S Kermit

62) ts52: Discover Y1 Kermit R2 Cherry

63) andylooney: Build B3 Andylooney

64) ts52: Discover B2 Ts52 R1 Raspberry

65) andylooney: Discover B1 Andylooney B3 Meanie

66) ts52: Build R2 Ts52

67) andylooney: Sacrifice G2 Blueberry
Build R3 Andylooney
Build R3 Kermit

68) ts52: Move G1 Sol Kermit

69) andylooney: Sacrifice Y2 Ibm
Discover G1 Kermit Y2 Plugh
Move R3 Kermit Sol

70) ts52: Move R1 Ts52 Blueberry

71) andylooney: Sacrifice R3 Andylooney
Attack R1S Blueberry
Attack G2S Sol
Attack G1S Kermit

72) ts52: Build R3 Ts52

73) andylooney: Sacrifice G2 Sol
Build R3 Blueberry
Build B3 Meanie

74) ts52: Move Y1 Cherry Raspberry
	ts52: I know I'm doomed. But I just can't bring myself to resign. Sorry about that. I'm still dying to see how this plays out, in an effort to try and learn from it.

75) andylooney: Sacrifice Y3 Burst
Move R2 Kermit Blueberry
Move R2 Blueberry Ts52
Move R1 Blueberry Ts52
Catastrophe Ts52 Red
	andylooney: There's no need to resign, ever. I'm happy to play it all the way to the bitter end!

76) ts52: Trade Y3 R3 Ts52

77) andylooney: Trade B3 Y3 Meanie
	ts52: Excellent, thanks. I don't think it'll be much longer anyway...

78) ts52: Trade B2 G2 Raspberry

79) andylooney: Move R3 Sol Raspberry

80) ts52: Build Y2 Raspberry

81) andylooney: Sacrifice R3 Blueberry
Attack Y2S Raspberry
Attack Y1S Raspberry
Attack G2S Raspberry

82) ts52: Build R1 Ts52

83) andylooney: Sacrifice G2 Raspberry
Build Y3 Meanie
Build R2 Raspberry

84) ts52: Trade R1 B1 Ts52

85) andylooney: Move R2 Raspberry Kermit

86) ts52: Build B2 Ts52

87) andylooney: Sacrifice Y2 Raspberry
Move B1 Meanie Blueberry
Move B1 Blueberry Ts52
Catastrophe Ts52 Blue

88) ts52: Build R1 Ts52
	ts52: And so ends the game. Thanks for the game, I enjoyed it, and obviously still have a lot to learn.
	ts52: It's not legal to pass, is it?

89) andylooney: Sacrifice Y3 Meanie
Move R1 Andylooney Ts52
Move B3 Andylooney Ts52
Move R3 Raspberry Ts52
Catastrophe Ts52 Red
	andylooney: Actually, if you consult your list of options at the top, you'll see that it is legal to pass. But it's very rarely useful...
	andylooney: Thanks for the game!




1944)
Started: 2005.12.20, Ended: 2005.12.27
Participants: ts52 (S), Calavera (N)
Winner: Calavera

1) Calavera: Homeworld Y2 B3 G3

2) ts52: Homeworld B2 G1 Y3

3) Calavera: Build G1 Calavera

4) ts52: Build Y1 Ts52

5) Calavera: Build G1 Calavera

6) ts52: Build Y1 Ts52

7) Calavera: Discover G1 Calavera Y1 Rillanon

8) ts52: Discover Y1 Ts52 G3 Oscar

9) Calavera: Discover G1 Rillanon B3 Krondor

10) ts52: Build Y1 Oscar

11) Calavera: Build G2 Krondor

12) ts52: Build Y2 Ts52

13) Calavera: Trade G2 Y2 Krondor

14) ts52: Trade Y2 R2 Ts52

15) Calavera: Trade G1 R1 Calavera

16) ts52: Discover Y1 Ts52 G3 Kermit

17) Calavera: Build G1 Krondor

18) ts52: Build Y2 Ts52

19) Calavera: Build G2 Krondor

20) ts52: Trade Y2 G2 Ts52

21) Calavera: Sacrifice Y2 Krondor
Move G1 Krondor Ts52
Move G1 Krondor Ts52
Catastrophe Ts52 G

22) ts52: Trade R2 G2 Ts52

23) Calavera: Build G1 Krondor

24) ts52: Build G1 Ts52
	ts52: I'm heading down to my in-laws tomorrow for the holiday. I might have sparse net access. Sorry in advance if there's a long lag between moves for the next week. I'll be back next thursday.

25) Calavera: Trade G2 Y2 Krondor
	ts52: Sorry about the undo's. I saw your response right after I made my last move, and reflexively hit undo. Then thought better of it. Then I typo'd this last one. Sorry. I'll try to be more careful.
	Calavera: No Problem.

26) ts52: Trade G1 R1 Ts52

27) Calavera: Build G1 Calavera

28) ts52: Build Y2 Kermit

29) Calavera: Build Y3 Krondor

30) ts52: Build Y3 Ts52

31) Calavera: Trade G1 B1 Calavera

32) ts52: Build G1 Ts52

33) Calavera: Discover B1 Calavera G1 Crydee

34) ts52: Move G2 Ts52 Oscar

35) Calavera: Discover Y3 Krondor R1 Bas-tyra

36) ts52: Build G2 Ts52

37) Calavera: Sacrifice G3 Calavera
Build R2 Calavera
Build B1 Crydee
Build B1 Crydee

38) ts52: Discover G2 Ts52 G3 Earth

39) Calavera: Sacrifice Y3 Bas-tyra
Move B1 Crydee Ts52
Move B1 Crydee Ts52
Move B1 Crydee Ts52
Catastrophe Ts52 B

	Calavera: Thanks for the game. It's been fun.


1926)
Variants: "Sinister"
Started: 2005.12.20, Ended: 2006.1.14
Participants: Toni (S), xoet (W), MightyJack (N), Uglyfoot (E)
Winner: MightyJack

1) MightyJack: Homeworld B3 Y2 G3

2) Uglyfoot: Homeworld G3 B1 Y3

3) Toni: Homeworld Y1 B2 G2 *

4) xoet: Homeworld B2 G3 Y3

5) MightyJack: Build G1 Mightyjack

6) Uglyfoot: Build Y1 Uglyfoot

7) Toni: Build G1 Toni *

8) xoet: Build Y1 Xoet
	xoet: good luck everyone :-)

9) MightyJack: Trade G1 B1 Mightyjack

10) Uglyfoot: Build Y1 Uglyfoot

11) Toni: Build G1 Toni *

12) xoet: Build Y1 Xoet

13) MightyJack: Build B1 Mightyjack

14) Uglyfoot: Discover Y1 Uglyfoot G2 Gateway

15) Toni: Trade G2 Y2 Toni *

16) xoet: Trade Y1 B1 Xoet

17) MightyJack: Trade B1 Y1 Mightyjack

18) Uglyfoot: Build Y2 Gateway

19) Toni: Trade G1 R1 Toni *

20) xoet: Build Y2 Xoet

21) MightyJack: Discover Y1 Mightyjack G1 Sirius
	xoet: sorry about the delay in moving christmas happened here on my homeworld   Merry Christmas too all those who have that on their homeworlds

22) Uglyfoot: Trade Y1 G1 Uglyfoot

23) Toni: Trade G1 R1 Toni *

24) xoet: Discover Y2 Xoet G1 Emc3

25) MightyJack: Build G1 Mightyjack

26) Uglyfoot: Build Y1 Uglyfoot

27) Toni: Trade Y2 R2 Toni

28) xoet: Build B1 Xoet

29) MightyJack: Build Y2 Sirius

30) Uglyfoot: Discover G1 Uglyfoot B2 Duet

31) xoet: Move B1 Xoet Emc3

32) MightyJack: Move B1 Mightyjack Sirius
	SYSTEM: Toni resigns.
	SYSTEM: Toni resigns.
	xoet: ok so it says waiting for to move   now is it my turn cuase i cant play anything no command box or do i just resign ???  I could not log on for the past few days but i did try to with no luck not until now could i do anything
	MightyJack: We had a similar problem when someone was eliminated in another Sinister Homeworlds game that I'm currently playing in... looks like Aaron's help will be needed to fix this one too.
	Aaron: Well, on the positive side of things, this problem is a new problem.  The changes I made last week seem to actually have worked.  I am confused though.  The game history seems off.  I am going to undo the last move and see where we end up.  I am going to monitor the game.  Let me know what we need to do to salvage this.

33) Uglyfoot: Move Y1 Uglyfoot Duet

34) xoet: Build Y2 Emc3

35) MightyJack: Discover Y1 Sirius G2 Vega
	Uglyfoot: So do I go after the resigned Toni or sharpen the knives for Xoet?  Which one is my victory condition?  I would guess Xoet...
	MightyJack: Your new target is Xoet.  Toni's ships are still available for capture... but good luck getting a red ship to survive long enough in her system to do it.
	MightyJack: Actually, now I'm seeing that Toni has been "unresigned"... so you might not have a new target after all.  The rumors of her resignation may have been exaggerated... :-)
	Toni: I keep getting these messages that it's my turn, but there is no where to make a play. I did resign. I just catch on as to how to do anything. Sorry guys. :( Toni
	MightyJack: If you don't see a command window, do you see a Resign button that might let you quit again if that's your wish?
	MightyJack: Toni says she resigned and I don't see any indication that she wants to get back in on the game, so I'm going to press the "Force Resign" button and see what happens next...

36) Uglyfoot: Build Y3 Uglyfoot
	MightyJack: So far, so good.
	Toni: Don't think it worked. I am still getting the notices that it is my turn.

37) xoet: Trade Y2 B2 Emc3

38) MightyJack: Build Y2 Vega

39) Uglyfoot: Build Y3 Duet

40) xoet: Build B1 Xoet

41) MightyJack: Sacrifice Y2 Sirius
Move Y1 Vega Uglyfoot
Move Y2 Vega Uglyfoot
Catastrophe Uglyfoot Yellow



1950)
Started: 2005.12.22, Ended: 2006.1.14
Participants: Calavera (S), lambda (N)
Winner: Calavera

1) lambda: Homeworld Y1 B2 G3

2) Calavera: Homeworld Y2 B3 G3
	lambda: Hi there! I'm meeting so many different people playing these games, it's great. Sorry I was slow on taking my first turn; I was finishing up finals at school. Anyhow, good luck to you!
	Calavera: h y2 b3 g3
	Calavera: Good luck to you as well.



1945)
Started: 2005.12.28, Ended: 2005.12.29
Participants: lyman (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3

2) lyman: Homeworld G1 B2 Y3

3) andylooney: Build Y1 Andylooney

4) lyman: Discover Y3 Lyman G3 Georgia



1940)
Variants: "Sinister"
Started: 2005.12.28, Ended: 2005.12.29
Participants: twopercentright (S), andylooney (N), JunkMan (E)
Winner: JunkMan

1) andylooney: Homeworld B3 G2 Y3
	twopercentright: um...hello?
	twopercentright: I was told this is good place to learn the icehouse games for when i have to demo for Con

	SYSTEM: twopercentright resigns.

2) JunkMan: Homeworld G1 B2 Y3

3) andylooney: Build Y1 Andylooney
	andylooney: so what happened here? Did 2%right just quit? or what? I guess we can play this out as a two player game...

4) JunkMan: Build Y1 Junkman
	JunkMan: I think he resigned right off the bat.  Maybe he hit the wrong button or something.  Darn, I think I had better odds having to eliminate him.

5) andylooney: Trade Y1 G1 Andylooney
	andylooney: Well, our board is all goofy and there are too many pieces in the bank. This isn't the game I had in mind. I'd be happy to just kill it, but I don't want to resign for fear of hurting my rating. Maybe we can get Aaron to just cancel this game?

6) JunkMan: Trade Y1 R1 Junkman
	JunkMan: I don't mind either way.  I don't think resigning would hurt your rating though, because it's supposed to be a three player game.  I'd definately check with aaron to be sure, though.

	andylooney: Oh, you're right - this should be an unrated game. Well, I'm gonna bag this then. If you want to play me 2 player, grab the game I have open. Thanks!
	SYSTEM: andylooney resigns.


2019)
Started: 2005.12.29, Ended: 2006.2.9
Participants: andylooney (S), mneme (N)
Winner: andylooney

1) mneme: Homeworld Y3 B2 G3

2) andylooney: Homeworld G1 B2 Y3

3) mneme: Build G1 Mneme
	mneme: I don't understand.  how do I build a new ship in my home system?  b G1 B2Y3 doesn't work. :(

	andylooney: you need to give it your system's name, not its description. Try "Construct G1 mneme"

4) andylooney: Build Y1 Andylooney
	mneme: Ah!  Ok, it just wasn't clear to me, without more examples, that the system name was the thing outside the parenthes!  The fact that the system name doesn't appear in the order reports doesn't help, of course.


5) mneme: B G1 Mneme

6) andylooney: Discover Y1 Andylooney G3 Garden

7) mneme: Discover G1 Mneme B1 Fleur

8) andylooney: Build Y1 Andylooney

9) mneme: Build G2 Fleur

10) andylooney: Build Y1 Garden
	mneme: Ok, that's pretty clever -- using your discoveries to deny my builds.  (yeah, if it's not obvious, the is the first time I've played BH).


11) mneme: Sacrifice G3 Mneme
Build G2 Fleur
Build G2 Fleur
Build G3 Mneme

12) andylooney: Build Y2 Andylooney
Catastrophe Fleur Green

13) mneme: Build G1 Mneme
	andylooney: sorry about that... but 4 greens in one system is just too many...
	mneme: Yes.  I'd intended to create the fourth ship as the third in mneme, but typoed.

Should I resign and start over?

14) andylooney: Trade Y2 G2 Andylooney
	andylooney: Oh, I wouldn't do that. You're far from dead! Let's play on!

15) mneme: Discover G1 Mneme B1 Fleuret

16) andylooney: Discover G2 Andylooney Y3 Howell
	mneme: If you say so -- with you finally producing green ships, I've got serious issues, since most of my moves will risk a catastrophe soon

17) mneme: Build G2 Fleuret

18) andylooney: Discover Y1 Garden B1 Berry

19) mneme: Trade G2 Y2 Fleuret

20) andylooney: Build Y2 Garden
	mneme: There's an undo feature?  Oh, holy hell.  I mean, I couldn't remember whether cataclism was 4 or 5, but I'd have definately undone m7 if I'd realized that.


21) mneme: Build Y2 Fleuret

22) andylooney: Build G2 Howell

23) mneme: Trade Y2 B2 Fleuret

24) andylooney: Sacrifice G2 Howell
Build G2 Howell
Build Y2 Berry

25) mneme: Sacrifice G3 Mneme
Build G2 Fleuret
Build G3 Mneme
Build B1 Fleuret

26) andylooney: Move G2 Howell Berry

27) mneme: Move B2 Fleuret Garden

28) andylooney: Sacrifice Y3 Andylooney
Move G2 Howell Berry
Move G2 Berry Mneme
Move G2 Berry Mneme
Catastrophe Mneme Green
	andylooney: Thanks for playing! Better luck on your next game!



2029)
Started: 2005.12.30, Ended: 2006.1.27
Participants: Laurie_Menke (S), shelbyt (N)
Winner: Laurie_Menke

1) shelbyt: Homeworld G1 B2 Y3

2) Laurie_Menke: Homeworld Y3 B2 G3
	Laurie_Menke: Nice to meet you, Shelby...good luck!  :o)

3) shelbyt: Build Y1 Shelbyt

4) Laurie_Menke: Build G1 Laurie_menke

5) shelbyt: Trade Y1 G1 Shelbyt

6) Laurie_Menke: Trade G3 Y3 Laurie_menke

	Laurie_Menke: Well, shelby, it seems like you've disappeared, so I'm going to force you to resign.  Maybe we can play again sometime.


1981)
Started: 2005.12.31, Ended: 2006.2.17
Participants: Dream_Control (S), Toni (W), Kermit (N), xoet (E)
Winner: Kermit

1) Kermit: Homeworld Y2 B3 G3
	Toni: Okay guys, I have no idea what I am doing, so bare with me.

2) xoet: Homeworld B2 G1 Y3
	xoet: Hi Toni, Dream_Control, and Kermit I thing Kermit can help us out

3) Dream_Control: Homeworld G3 B1 Y3
	xoet: now dave try to keep up with the turns    i just typed in the orders box "homeworld b2 g1 y3" i believe Kermit typed homeworld y2 b3 g3" so i can get to his homeworld cuase i have a star that is size 2 or is that i cant get to your world because of that not sure? but my y3 can travel and make a new world once ive put a new ship in my system

4) Toni: Homeworld R3 B2 G3
	Dream_Control: I have no idea what I'm doing either.

5) Kermit: Build G1 Kermit
	Toni: *lol* Dream, guess we will be learning a lot then. Hope so, because I can never seem have the right combination to get a play to work.

6) xoet: Build Y1 Xoet

7) Dream_Control: Build Y1 Dream_control
	xoet: now if i'm right only the yellow ships can venture out beyond the root system?

8) Toni: Build G1 Toni *

9) Kermit: Discover G1 Kermit Y1 Namor

10) xoet: Trade Y1 B1 Xoet

11) Dream_Control: Discover Y1 Dream_control R2 Zodiac
	xoet: guess i was wrong about venturing forth as for me I "trade y1 b1 xoet"  but I'm not sure why I did that?
	Kermit: well kinda right and kinda wrong. Any ship can move , BUT there must be a yellow ship or star in the system they are moving from. (if it is a ship ip must be owned by the same person as the moving ship.
The same is true of all abilities you can attack with any ship as long as you have a red ship or there is a  star in the system. you can trrade any ship as long as there is a blue star or you hace a blue ship in the system.
 
	Kermit: the one exception, sorta, is green when you build a new ship (which you can do with a green star or if you have a green ship in the system) you can only build colors of which you already have ships. for example, on my next turn I can build a ship in the namor system but the only color i cam buils is green. i could also move that green ship to another system since the star in the namor system is yellow. if i do this thow the namor system will go away as all uninhabited systems do.
	Kermit: one other thing to watch for if you haven't played before. Sacrifice, It allows someone to make three moves ANYWHERE whether they have that color in the system or not. for instance sacrificing a 1 point blue in kermit would let me trade my green in namor for another color. this can be sneaky epecially if a three point ship were involved.
	Kermit: oh, I said three moves..as many moves ans the dots on the ship you sacrificed. I have often seen a 3 pointer sac'd to knock someone out of the game though...so watch for it.

12) Dream_Control: Build Y1 Dream_control

13) Kermit: Build G1 Kermit
	Toni: Sorry guys I just can't grasp the concept
	Dream_Control: Aw Toni :-( Sorry to see you go :-(

14) xoet: Build Y1 Xoet
	twopercentright: This game still going on?

15) Dream_Control: Move Y1 Dream_control Zodiac
	Kermit: yes it is...one person dropped out though

16) Kermit: Trade G1 Y1 Kermit

17) xoet: Discover Y1 Xoet B3 Emc2

18) Dream_Control: Move Y1 Zodiac Namor

19) Kermit: Trade Y1 R1 Kermit

20) xoet: Build Y1 Xoet

21) Dream_Control: Move Y1 Namor Toni

22) Kermit: Build G1 Kermit

23) xoet: Trade Y1 G1 Xoet

24) Dream_Control: Trade Y1 R1 Toni

25) Kermit: Build G2 Namor

26) xoet: Move G1 Xoet Emc2

27) Dream_Control: Trade Y3 G3 Dream_control

28) Kermit: Move G2 Namor Zodiac

29) xoet: Build G2 Emc2

30) Dream_Control: Build G2 Dream_control

31) Kermit: Attack Y1S Zodiac

32) xoet: Discover G1 Emc2 Y1 Dagnabit

33) Dream_Control: Build G2 Dream_control

34) Kermit: Build R1 Kermit
Catastrophe Dream_control Green

35) xoet: Build Y1 Emc2
	Dream_Control: Oh we'll fight some more soon Kermit Trust Me


36) Kermit: Trade R1 B1 Kermit
	Kermit: Dream_Control, NEVER have all the ships on your home world the same color fo mor than a turn. You are always beter off doing most of your building off of your homeworld or at the very least keeping the colors mixed at home. I  was planning to sacrifice my 3 point yellow move a g1 from namor to zodiac then then to your home. then move the g2 from zodiac to your homeworld and Catastrophe (that was all in 1 turn by way of the sacrifice). you saved me the trouble.

37) xoet: Trade Y1 R1 Emc2

38) Kermit: Build G2 Namor

39) xoet: Trade R1 B1 Emc2

40) Kermit: Move B1 Kermit Namor

41) xoet: Move B1 Emc2 Dagnabit

42) Kermit: Move G2 Namor Emc2

43) xoet: Build G2 Dagnabit

44) Kermit: Sacrifice R1 Kermit
Attack G2E Emc2

45) xoet: Trade G1 R1 Dagnabit

46) Kermit: Trade G1 R1 Kermit

47) xoet: Build B1 Dagnabit

48) Kermit: Sacrifice R1 Kermit
Attack Y1E Emc2

49) xoet: Trade B1 Y1 Dagnabit

50) Kermit: Build Y2 Zodiac

51) xoet: Build R1 Dagnabit

52) Kermit: Build B1 Namor

53) xoet: Build Y2 Xoet

54) Kermit: Build Y2 Emc2

55) xoet: Build R1 Dagnabit

56) Kermit: Sacrifice Y2 Zodiac
Move Y1 Emc2 Xoet
Move Y2 Emc2 Xoet
Catastrophe Xoet Y
	Dream_Control: Man Kermit you suck, Dudes like you will make people not want to play on this site.

57) xoet: Build B1 Xoet

58) Kermit: Trade G2 Y2 Emc2
	Kermit: sorry Dream_Control the way that happened is always the way this game ends. (every one i have been in at least(well catastrophe or surrender)).  

59) xoet: Trade B1 Y1 Xoet
	Kermit: All is not lost yet xoet but it does not look good. Also Dream_Control this is an unrated game and that is the best place to learn. First time I played homeeworlds i lost in a very similar fashion. I never saw the sacrifice coming and BAM I was out of the game. my first thought was 'what the.....' then I thought 'So THAT'S what a sacrifice is for!'

60) Kermit: Trade G2 R2 Emc2

61) xoet: Move R1 Dagnabit Kermit

62) Kermit: Move R2 Emc2 Xoet

63) xoet: Build Y2 Dagnabit

64) Kermit: Attack B1E Xoet

65) xoet: Build Y2 Xoet

66) Kermit: Attack Y2E Xoet
	xoet: it does not look good at this point   but I've no definite strategy

67) xoet: Move Y2 Dagnabit Emc2

68) Kermit: Sacrifice G2 Zodiac
Build Y2 Xoet
Build Y3 Xoet
Catastrophe Xoet Yellow

	Kermit: good game


2035)
Started: 2005.12.31, Ended: 2006.2.4
Participants: andylooney (S), lyman (N)
Winner: andylooney

1) lyman: Homeworld G1 B2 Y3
	lyman: I appreciate the second chance!

2) andylooney: Homeworld B3 G2 Y3

3) lyman: Build Y1 Lyman
	andylooney: I'm happy to play!

4) andylooney: Build Y1 Andylooney
	lyman: I'm pleased to meet you.  I have owned pyramids since they were marketed as the "Martian Chess Set".  
	andylooney: Cool. I always love playing with my fans! Good luck!

5) lyman: Discover Y1 Lyman G3 Fargo

6) andylooney: Discover Y1 Andylooney G1 Mandm

7) lyman: Build Y1 Fargo

8) andylooney: Build Y2 Andylooney

9) lyman: Discover Y1 Fargo G2 Pierre

10) andylooney: Trade Y2 G2 Andylooney

11) lyman: Build Y2 Pierre

12) andylooney: Build Y2 Mandm

13) lyman: Build Y2 Lyman

14) andylooney: Build Y3 Andylooney

15) lyman: Trade Y2 B2 Lyman

16) andylooney: Discover Y3 Andylooney G1 Andes

17) lyman: Move B2 Lyman Fargo

18) andylooney: Build G3 Andylooney

19) lyman: Build Y2 Fargo

20) andylooney: Discover Y2 Mandm G3 Milkyway

21) lyman: Build B1 Fargo

22) andylooney: Trade G2 R2 Andylooney

23) lyman: Move B1 Fargo Pierre

24) andylooney: Sacrifice Y2 Milkyway
Move Y3 Andes Fargo
Move Y3 Fargo Lyman

25) lyman: Build Y2 Lyman

26) andylooney: Sacrifice R2 Andylooney
Attack Y3N Lyman
Attack Y2N Lyman



2058)
Started: 2006.1.5, Ended: 2006.3.4
Participants: andylooney (S), paul98 (N)
Winner: andylooney

1) paul98: Homeworld G2 B1 Y3

2) andylooney: Homeworld B3 G2 Y3

3) paul98: Build Y1 Paul98

4) andylooney: Build Y1 Andylooney

5) paul98: Discover Y1 Paul98 B3 Fluxx

6) andylooney: Trade Y1 G1 Andylooney

7) paul98: Trade Y1 G1 Fluxx

8) andylooney: Discover G1 Andylooney Y1 Mellow
	paul98: Do you mind if I name my systems after your games?
	andylooney: not at all! I think it's great!

9) paul98: Build G1 Fluxx
	paul98: Thanks. I read about your naming scheme on the Wunderland Weekly News for October 13, 2005. By the way, do you have one for R3 yet? If not, my friend suggested New York City or The Big Apple would be good.

10) andylooney: Build G2 Mellow

11) paul98: Build Y1 Paul98

12) andylooney: Discover G2 Mellow Y3 Lacanna

	andylooney: So, it's been over a month since your last move... are you going to finish this game?


2037)
Started: 2006.1.7, Ended: 2006.1.10
Participants: TwoShort (S), Aaron (N)
Winner: TwoShort

1) Aaron: Homeworld Y1 B2 G3
	Aaron: Hail, and good luck!  Not that you'll need it =)  I'm still very much a novice at this game.

2) TwoShort: Homeworld G2 B3 Y3

3) Aaron: Build G1 Aaron

4) TwoShort: Build Y1 Twoshort

5) Aaron: Trade G1 Y1 Aaron

6) TwoShort: Build Y2 Twoshort

7) Aaron: Build Y2 Aaron
	TwoShort: Well, I'm not such an expert myself... I recently played my first and only in-person game; other than that all my play has been on this site.
	Aaron: What did you think of the in-person session?  I'm sure it felt like a very different game.

8) TwoShort: Discover Y1 Twoshort G1 Sprout

9) Aaron: Discover Y1 Aaron G3 Bean
	TwoShort: Well, I've always liked the aesthetics of the physical Icehouse pieces.   But I played the game (against Andy Looney) over the course of two evenings during which we had the game set up in a side room, and we would sneak off between other activities to make our moves.  So it actually had much more of the not-quite-real-time feel of playing here than it might have. 

10) TwoShort: Trade Y2 G2 Twoshort

11) Aaron: Build Y2 Bean

12) TwoShort: Sacrifice G2 Twoshort
Build Y2 Sprout
Build Y3 Twoshort

13) Aaron: Sacrifice Y2 Aaron
Move Y2 Bean Sprout
Move Y1 Bean Sprout
Catastrophe Sprout Y

14) TwoShort: Discover Y3 Twoshort B1 Bluestar

15) Aaron: Build G1 Aaron

16) TwoShort: Trade Y3 G3 Bluestar

17) Aaron: Trade G1 R1 Aaron

18) TwoShort: Build G1 Bluestar

19) Aaron: Build R1 Aaron

20) TwoShort: Build Y1 Twoshort

21) Aaron: Trade R1 Y1 Aaron
	Aaron: not looking too good for me right now =)


22) TwoShort: Build Y2 Twoshort

23) Aaron: Build Y2 Aaron

24) TwoShort: Sacrifice Y3 Twoshort
Move Y1 Twoshort Bluestar
Discover Y1 Bluestar R3 Deathstar
Move Y1 Deathstar Aaron
Catastrophe Aaron Yellow

25) Aaron: Build R1 Aaron
	Aaron: uhm, ouch =)

26) TwoShort: Build Y1 Twoshort

27) Aaron: Trade R1 Y1 Aaron
	TwoShort: Yeah, I think you're in trouble now :) 

28) TwoShort: Discover Y1 Twoshort G1 Sprout

29) Aaron: Move R1 Aaron Sprout

30) TwoShort: Move Y1 Sprout Twoshort

31) Aaron: Sacrifice Y1 Aaron
Move R1 Sprout Twoshort

32) TwoShort: Trade Y2 R2 Twoshort

33) Aaron: Attack Y1S Twoshort

34) TwoShort: Attack R1N Twoshort
	TwoShort: Am I missing something, or is this a creative surrender?

35) Aaron: Discover Y1 Twoshort G1 Limes
	Aaron: nah, just hijacking your yellow for the heck of it =)  Nothing much else to do and I hate just resigning.

36) TwoShort: Trade G1 Y1 Bluestar
	TwoShort: I can understand that...  
	Aaron: Well, the more I think about this, the more hopeless it becomes.  I'll stop drawing it out =D  Thanks for the game!



2121)
Started: 2006.1.8, Ended: 2006.3.8
Participants: andylooney (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld G1 B2 Y3

2) andylooney: Homeworld B3 G2 Y3

3) TwoShort: Build Y1 Twoshort

4) andylooney: Build Y1 Andylooney

5) TwoShort: Trade Y1 G1 Twoshort

6) andylooney: Trade Y1 G1 Andylooney

7) TwoShort: Build G2 Twoshort

8) andylooney: Discover G1 Andylooney Y1 Different

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) andylooney: Build Y1 Andylooney

11) TwoShort: Build Y1 Twoshort

12) andylooney: Discover Y1 Andylooney B1 Berry

13) TwoShort: Discover Y1 Twoshort B3 Bluestar

14) andylooney: Build Y2 Andylooney

15) TwoShort: Build Y2 Twoshort

16) andylooney: Trade Y1 R1 Berry

17) TwoShort: Trade Y2 R2 Twoshort

18) andylooney: Move Y2 Andylooney Berry

19) TwoShort: Build Y1 Twoshort

20) andylooney: Build Y2 Andylooney

21) TwoShort: Sacrifice G2 Twoshort
Build G2 Yolonda
Build Y2 Bluestar

22) andylooney: Discover Y2 Andylooney R1 Volcano

23) TwoShort: Sacrifice Y2 Bluestar
Discover Y1 Bluestar B1 Bluonia
Discover G1 Yolonda Y2 Yonder

24) andylooney: Build G2 Different

25) TwoShort: Sacrifice G2 Yolonda
Build Y3 Bluonia
Build G2 Yonder

26) andylooney: Discover G1 Different B3 Bigbluefrog

27) TwoShort: Move G2 Yonder Bluonia

28) andylooney: Build G3 Bigbluefrog

29) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Bluonia Andylooney
Move G2 Bluonia Andylooney
Move Y1 Bluonia Andylooney

	TwoShort: :)
	andylooney: Dammit!!!
	TwoShort:   At this point in most of my games, I try to say something encouraging so my opponent will play again.  On the other hand, I was thinking you might be more motivated by a bit of taunting. But I suppose it's more polite to keep things positive, so I'll just point out that you really did very well.  A bit more practice and you'll be quite good at this game.  
	andylooney: grumble, grumble, grumble...
Good game, sir!


2120)
Started: 2006.1.9, Ended: 2006.1.17
Participants: Uglyfoot (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld G1 B2 Y3

2) Uglyfoot: Homeworld Y2 B3 G3

3) TwoShort: Build Y1 Twoshort

4) Uglyfoot: Build G1 Uglyfoot

5) TwoShort: Build Y1 Twoshort

6) Uglyfoot: Build G1 Uglyfoot

7) TwoShort: Discover Y1 Twoshort G3 Grogar

8) Uglyfoot: Discover G1 Uglyfoot B1 Commerce

9) TwoShort: Build Y1 Grogar

10) Uglyfoot: Build G2 Commerce

11) TwoShort: Build Y2 Twoshort

12) Uglyfoot: Trade G2 Y2 Commerce

13) TwoShort: Trade Y2 G2 Twoshort

14) Uglyfoot: Build G2 Commerce

15) TwoShort: Discover G2 Twoshort Y3 Yolonda

16) Uglyfoot: Build Y2 Commerce

17) TwoShort: Move Y1 Grogar Commerce

18) Uglyfoot: Trade Y2 R2 Commerce

19) TwoShort: Sacrifice G2 Yolonda
Build Y2 Commerce
Build Y3 Grogar

20) Uglyfoot: Discover G2 Commerce Y3 Forward

21) TwoShort: Trade Y1 R1 Twoshort

22) Uglyfoot: Attack Y2 Commerce

23) TwoShort: Move Y1 Grogar Commerce
Catastrophe Commerce Yellow

24) Uglyfoot: Build G2 Forward

25) TwoShort: Move Y3 Grogar Commerce

26) Uglyfoot: Build G2 Commerce

27) TwoShort: Sacrifice R1 Twoshort
Attack R2S Commerce

28) Uglyfoot: Move G2 Forward Twoshort

29) TwoShort: Sacrifice R2 Commerce
Attack G2S Commerce
Attack G1S Commerce

30) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Forward
Build G3 Twoshort
Build G3 Twoshort
Catastrophe Twoshort G

31) TwoShort: Sacrifice Y3 Commerce
Move G2 Commerce Uglyfoot
Move G1 Commerce Uglyfoot
Pass

32) Uglyfoot: Trade G1 R1 Uglyfoot

33) TwoShort: Trade G2 R2 Uglyfoot

34) Uglyfoot: Attack G1 Uglyfoot

35) TwoShort: Attack R1S Uglyfoot

36) Uglyfoot: Sacrifice G2 Forward
Build G1 Uglyfoot
Build G1 Uglyfoot

37) TwoShort: Trade R2 G2 Uglyfoot
Catastrophe Uglyfoot Green



2136)
Started: 2006.1.10, Ended: 2006.3.15
Participants: twopercentright (S), Lexicon (W), Aaron (N), ts52 (E)
Winner: ts52

1) Aaron: Homeworld B1 G2 Y3

2) ts52: Homeworld G1 B3 Y3
	Aaron: Good luck, all!

3) twopercentright: Homeworld B2 G3 Y3
	ts52: Have a great game everyone!
	twopercentright: bare with me, here.  This is my first ever game


4) Lexicon: Homeworld G2 B3 Y3
	twopercentright: how do i know if i am good or evil?

5) Aaron: Build Y1 Aaron
	Aaron: There is no good and evil in SDG Homeworlds.  We are currently playing the base game which is "Last Man Standing"  There is an "official" variant also supported here called "Sinister Homeworlds" where the winner is the one who eliminates the player on their left.

For a training game, this is as good as any.  The goal is just to somehow survive the carnage.  Feel free to ask any questions you may have.  The game is actually quite straightforward once you get the hang of it.

6) ts52: Build Y1 Ts52
	Aaron: I may at some point make the Sinister variant the base game, but for now...
	Aaron: The "Last Man Standing" version is just a little more chaotic.
	ts52: Ah, I was wondering if this was a sinister game or not. I haven't played a "Last man standing" game yet. Should be fun!
And feel free to ask us anything 2%right.

7) twopercentright: Build Y1 Twopercentright
	Aaron: Variants (if any) will appear in the top title bar of the game page, where the game number and rules links are.
	Lexicon: Perhaps the lack of variants should be indicated with a "Standard game, no variants" caption. 
	Aaron: hrm, that's an option...*pulls up the source code*
	Aaron: I agree, I like it.
	Lexicon: Looks good.

8) Lexicon: Build Y1 Lexicon

9) Aaron: Trade Y1 R1 Aaron

10) ts52: Trade Y1 G1 Ts52
	ts52: I like the addition. Looks good.


11) twopercentright: Build Y1 Twopercentright

12) Lexicon: Trade Y1 G1 Lexicon

13) Aaron: Build Y1 Aaron
	twopercentright: hm
	twopercentright: hm
	twopercentright: I guess it did work.  When i was on earlier, the website froze up, so i had no idea if my command had been exicuted
	Aaron: Remeber, 2%, that anybody can call a catastrophe at the end of their turn.  If you build a 4th yellow, and even if you yourself don't call the catastrophe, Lexicon could.

14) ts52: Build Y1 Ts52

15) twopercentright: Trade Y1 G1 Twopercentright

16) Lexicon: Build Y1 Lexicon
	twopercentright: how is a new planet founded?  I think i'm lost on that point.
	Lexicon: Use the discover command.  discover ship fromSystem newStar newName

17) Aaron: Trade Y1 B1 Aaron

18) ts52: Discover Y1 Ts52 G2 Lime

19) twopercentright: Discover Y1 Twopercentright B1 Grainne
	twopercentright: I tried that, but it said...i couldn't do it for some reason *chagrined*

20) Lexicon: Discover Y1 Lexicon G1 Redhat
	twopercentright: huh.  Weird

21) Aaron: Trade Y3 G3 Aaron

22) ts52: Build G2 Ts52

23) twopercentright: Build G2 Twopercentright
	twopercentright: how does one get larger ships?  Or is it the whole "use the smallest piece" thing, wherein i can get a larger peice only when the smaller ones run out?

24) Lexicon: Discover G1 Lexicon Y1 Yellowdog
	ts52: You've got it. Building the smallest piece, once all the smalls and mediums are gone. And then trading to get larges in other colors.

25) Aaron: Trade B1 Y1 Aaron

26) ts52: Discover G2 Ts52 B2 Plum

27) twopercentright: Move G2 Twopercentright Grainne

28) Lexicon: Build G3 Yellowdog

29) Aaron: Build Y2 Aaron

30) ts52: Build G3 Plum

31) twopercentright: Build G3 Grainne

32) Lexicon: Sacrifice G3 Yellowdog
Build G3 Yellowdog
Build Y2 Redhat
Build Y2 Lexicon

33) Aaron: Build R1 Aaron

34) ts52: Trade G1 R1 Ts52

35) twopercentright: Trade G1 R1 Twopercentright

36) Lexicon: Trade Y2 R2 Lexicon

37) Aaron: Discover Y2 Aaron B3 Sea

38) ts52: Build Y2 Ts52

39) twopercentright: Build Y2 Grainne

40) Lexicon: Discover G1 Yellowdog Y3 Debian

41) Aaron: Build Y2 Aaron

42) ts52: Build Y3 Lime

43) twopercentright: Trade Y1 R1 Grainne

44) Lexicon: Build Y1 Lexicon

45) Aaron: Build R2 Aaron
	Aaron: Things are getting pretty crowded...


46) ts52: Move Y2 Ts52 Plum

47) twopercentright: Build R2 Twopercentright

48) Lexicon: Move Y1 Lexicon Yellowdog
	twopercentright: very confusing, indeed

49) Aaron: Move R2 Aaron Sea

50) ts52: Discover G2 Plum R3 Elmo

51) twopercentright: Build R2 Grainne

52) Lexicon: Sacrifice G1 Debian
Build Y3 Lexicon

53) Aaron: Discover R1 Aaron B3 Azure

54) ts52: Build G1 Plum

55) twopercentright: Sacrifice Y2 Grainne
Move G3 Grainne Elmo
Move G3 Elmo Aaron

56) Lexicon: Build G1 Yellowdog
	twopercentright: Something tells me i'm going to regret doing that.


57) Aaron: Attack G3S Aaron
	Lexicon: A bit questionable.  You should have positioned better and had another g1 ready to go to launch at him.  As it is, maybe you can convince ts52 to burn a y2 to send his g1 over there.  Aaron is in a pretty tough position now though.

58) ts52: Sacrifice Y1 Lime
Move G2 Elmo Aaron
Catastrophe Aaron Green
	ts52: Hmmm, I think I'll do it this way instead. Not sure if it's better or not....

59) twopercentright: Build G1 Grainne

60) Lexicon: Discover G1 Yellowdog Y2 Gentoo

61) Aaron: Sacrifice Y2 Sea
Move Y2 Aaron Lexicon
Move Y1 Aaron Lexicon
Catastrophe Lexicon Y

62) ts52: Discover G3 Plum R3 Elmo

63) twopercentright: Discover R1 Twopercentright Y1 Pallas

64) Lexicon: Move G3 Yellowdog Lexicon
	Lexicon: Yeah!  Catastrophes all around!


65) Aaron: Trade R1 Y1 Aaron

66) ts52: Build G2 Elmo

67) twopercentright: Trade R1 B1 Grainne

68) Lexicon: Move Y1 Yellowdog Lexicon

69) Aaron: Trade R2 Y2 Sea

70) ts52: Build Y1 Plum

71) twopercentright: Build B1 Grainne

72) Lexicon: Build Y2 Lexicon

73) Aaron: Move Y2 Sea Aaron

74) ts52: Sacrifice G3 Elmo
Build Y3 Ts52
Build G2 Plum
Build G3 Elmo

75) twopercentright: Build Y3 Twopercentright

76) Lexicon: Move Y1 Redhat Twopercentright

77) Aaron: Move Y1 Aaron Twopercentright
Catastrophe Twopercentright Yellow
	Lexicon: Who's with me?

78) ts52: Discover G2 Plum Y3 Sol

79) twopercentright: Trade B1 Y1 Grainne
	twopercentright: for what?
	twopercentright: I honestly don't remember having 3 yellow ships in that system......am i just crazy?

	twopercentright: oh I see
	twopercentright: Now all a sudden, I'm the "bad guy"

80) Lexicon: Build G3 Gentoo

81) Aaron: Trade R1 Y1 Azure

82) ts52: Sacrifice G3 Elmo
Build G3 Elmo
Build G3 Plum
Build Y3 Lime

83) twopercentright: Move R2 Grainne Azure

84) Lexicon: Move G1 Gentoo Elmo
	twopercentright: Yeeeaaaah.  I'm gunna lose this game. ;-)
	Lexicon: well, right now ts52 needs a turn.

85) Aaron: Move Y1 Azure Aaron

86) ts52: Sacrifice Y3 Lime
Move Y2 Plum Aaron
Move Y1 Plum Aaron
Move Y3 Ts52 Plum
Catastrophe Aaron Yellow

87) Lexicon: Sacrifice G1 Elmo
Build G1 Gentoo
	ts52: Sorry Aaron. Thanks for the game!
	Lexicon: well, that significantly events things out...


88) ts52: Sacrifice G3 Elmo
Build G3 Elmo
Build Y1 Lime
Build R1 Ts52
	Aaron: Cheers!  Have fun!

89) twopercentright: Move Y1 Grainne Twopercentright
	twopercentright: Sorry about that everyone.  I've been very ill the last two days and couldn't on.  Thank you for waiting for me.

90) Lexicon: Sacrifice G3 Gentoo
Build G3 Gentoo
Build R1 Lexicon
Build Y1 Redhat

91) ts52: Move R1 Ts52 Plum

92) twopercentright: Build Y2 Twopercentright
	Aaron: Glad you're feeling better!

93) Lexicon: Trade R1 B1 Lexicon

94) ts52: Sacrifice G3 Elmo
Build G3 Elmo
Build Y2 Plum
Build Y3 Ts52

95) twopercentright: Trade G2 R2 Grainne

96) Lexicon: Sacrifice Y2 Lexicon
Move G3 Gentoo Ts52
Move G1 Gentoo Ts52

97) ts52: Build G2 Sol

98) twopercentright: Sacrifice Y2 Twopercentright
Move G1 Grainne Lime
Move G1 Lime Ts52
Catastrophe Ts52 Green

99) Lexicon: Build Y2 Lexicon

100) ts52: Sacrifice Y2 Plum
Move Y1 Lime Elmo
Discover Y3 Ts52 R1 Cherry

101) twopercentright: Build Y2 Twopercentright

102) Lexicon: Move B1 Lexicon Redhat

103) ts52: Move G3 Plum Ts52

104) twopercentright: Trade Y1 R1 Twopercentright

105) Lexicon: Build B1 Redhat

106) ts52: Sacrifice G2 Sol
Build R2 Plum
Build R3 Ts52

107) Lexicon: Trade Y1 B1 Redhat
	Aaron: Hope all is well, 2%!
	Aaron: I think perhaps it's time to move this game along.  Sorry 2%!  Hope all is well and that we see you back soon!

108) ts52: Move R2 Plum Redhat
	Lexicon: Seems it's about that time alright.  Oh well.  OK ts52, you are on your way to destruction!
	Lexicon: The site's been down for me for a good bit of last week.  I don't know if that's me or everyone, but Aaron didn't send out a message and all *my* games are expired, so I'm thinking it's just me.  


109) Lexicon: Sacrifice Y2 Redhat
Move B1 Redhat Ts52
Move B1 Redhat Ts52

110) ts52: Sacrifice R3 Ts52
Attack B1W Ts52
Attack B1W Ts52
Attack B1W Redhat

111) Lexicon: Trade Y2 B2 Lexicon
	ts52: Hah, don't count me out just yet.

112) ts52: Sacrifice Y3 Lime
Move B1 Redhat Lexicon
Move B1 Ts52 Redhat
Move B1 Redhat Lexicon
Catastrophe Lexicon Blue
	Lexicon: this does not bode well...
	Lexicon: did I mention how you have far too many ships?  I think of those y3s at ICBMs.  Too many are pointed in my direction now...

113) ts52: Pass
	Aaron: Sorry, Lexicon.  The site's been running pretty consistently.  Any particular error you've been getting?  Glad you're back at least!

	Lexicon: Three losers and no winners! Heh heh.
	Aaron: rofl!  oh man =)  Well, ts, please try to 'pass' and let's seeif that triggers the end of the game.  if not, I'll hack at it =)  Sorry!


2148)
Started: 2006.1.10, Ended: 2006.1.12
Participants: ts52 (S), Calavera (N)
Winner: Calavera

1) Calavera: Homeworld B2 Y3 G3

2) ts52: Homeworld G1 B2 Y3

3) Calavera: Build G1 Calavera
	ts52: Good luck!

4) ts52: Build Y1 Ts52
	Calavera: You too

5) Calavera: Build G1 Calavera

6) ts52: Discover Y1 Ts52 G3 Kermit

7) Calavera: Discover G1 Calavera B1 Question

8) ts52: Build Y1 Kermit

9) Calavera: Build G2 Question

10) ts52: Trade Y3 G3 Ts52

11) Calavera: Trade G2 Y2 Question

12) ts52: Move Y1 Kermit Ts52

13) Calavera: Build G2 Question

14) ts52: Build Y1 Kermit

15) Calavera: Build Y2 Question

16) ts52: Discover Y1 Kermit B1 Blueberry

17) Calavera: Sacrifice G3 Calavera
Build G2 Question
Build G2 Calavera
Build G3 Calavera

18) ts52: Sacrifice G3 Ts52
Build Y2 Kermit
Build Y3 Ts52
Build Y3 Blueberry

19) Calavera: Sacrifice Y2 Question
Move G2 Question Kermit
Move G2 Kermit Ts52

20) ts52: Trade Y3 R3 Ts52

21) Calavera: Sacrifice G2 Question
Build G2 Ts52
Build G3 Ts52
Catastrophe Ts52 G

22) ts52: Trade Y3 G3 Blueberry

23) Calavera: Trade G1 R1 Calavera

24) ts52: Build G1 Blueberry

25) Calavera: Trade G2 B2 Calavera

26) ts52: Move G1 Blueberry Ts52

27) Calavera: Discover B2 Calavera G1 Exclamation

28) ts52: Build G2 Blueberry

29) Calavera: Build B1 Exclamation

30) ts52: Sacrifice G3 Blueberry
Build G2 Ts52
Build G2 Blueberry
Build G3 Blueberry

31) Calavera: Build B3 Exclamation

32) ts52: Sacrifice G3 Blueberry
Build G3 Blueberry
Build Y2 Ts52
Build Y3 Blueberry

33) Calavera: Sacrifice Y2 Question
Move B3 Exclamation Ts52
Move B1 Exclamation Ts52

34) ts52: Attack B3N Ts52
	ts52: Well played. Thanks for the game!

35) Calavera: Sacrifice G1 Question
Build B1 Ts52
Catastrophe Ts52 B
	Calavera: Same to you, it was great fun. Thanks for an interesting game.



2156)
Started: 2006.1.10, Ended: 2006.2.3
Participants: TwoShort (S), carversanx (N)
Winner: TwoShort

1) carversanx: Homeworld G3 B1 Y3
	carversanx: I am learning commands etc.  sorry, I am new.

2) TwoShort: Homeworld B1 Y2 G3

3) carversanx: Build Y1 Carversanx

4) TwoShort: Build G1 Twoshort

5) carversanx: Discover Y1 Carversanx R2 Sol

6) TwoShort: Build G1 Twoshort

7) carversanx: Trade Y3 R3 Carversanx

8) TwoShort: Discover G1 Twoshort Y3 Yolonda

9) carversanx: Build R1 Carversanx

10) TwoShort: Build G1 Twoshort

11) carversanx: Trade R1 Y1 Carversanx

12) TwoShort: Discover G1 Twoshort Y3 Yak

13) carversanx: Move R3 Carversanx Sol

14) TwoShort: Trade G1 R1 Twoshort



2159)
Started: 2006.1.11, Ended: 2006.3.4
Participants: andylooney (S), carversanx (N)
Winner: andylooney

1) carversanx: Homeworld B1 Y2 G3

2) andylooney: Homeworld B3 G2 Y3

3) carversanx: Build G1 Carversanx

4) andylooney: Build Y1 Andylooney

5) carversanx: Discover G1 Carversanx R3 Metat

6) andylooney: Trade Y1 G1 Andylooney

	andylooney: So, it's been over a month since your last move... are you going to finish this game?


2186)
Variants: "Unrated"
Started: 2006.1.14, Ended: 2006.2.14
Participants: Jesse (S), twopercentright (N)
Winner: Jesse

1) twopercentright: Homeworld G3 B2 Y3

2) Jesse: Homeworld G1 B3 Y3
	Jesse: Hello, there!  It looks like you're new to SDG; how new are you to Homeworlds?

3) twopercentright: Build Y1 Twopercentright

4) Jesse: Pass
	twopercentright: This is only my second game.  I'm in the middle of another, 4-way game that started a couple days ago.
	twopercentright: As in, total Homeworld games...including real world games.  Still just my second game.
	Jesse: Okay, read the strategy tips on the wiki, if you haven't already.  It's not my intention to give tips during the course of this game, but rather to handicap it by passing my first few turns after setting up my homeworld.  I have no idea how many passes is appropriate for any given skill difference, so why don't we try 3?

5) twopercentright: Trade Y1 G1 Twopercentright
	Jesse: I wil answer any questions you have about the rules, though.

6) Jesse: Pass

7) twopercentright: Build Y1 Twopercentright
	Jesse: One more...

8) Jesse: Pass

9) twopercentright: Discover Y1 Twopercentright G1 Grainne
	Jesse: Okay, done.

10) Jesse: Build Y1 Jesse

11) twopercentright: Build Y1 Grainne

12) Jesse: Discover Y1 Jesse G2 Morbo

13) twopercentright: Build G2 Twopercentright
	twopercentright: hehe. "MORBO WILL DEVOUR YOUR PLANET!!!  Now for weather..."

14) Jesse: Build Y2 Jesse

15) twopercentright: Move G1 Twopercentright Grainne
	Jesse: Kittens give Morbo gas.

16) Jesse: Trade Y2 G2 Jesse

17) twopercentright: Build G3 Grainne
	twopercentright: build G3 Grainne

18) Jesse: Discover G2 Jesse Y2 Juble
	twopercentright: whoops.  I'm an idiot. :-D
	Jesse: If that makes you an idiot, then so am I.  :)

19) twopercentright: Move G1 Grainne Juble

20) Jesse: Build G3 Juble

21) twopercentright: Move G3 Grainne Juble
Catastrophe Juble Green

22) Jesse: Build Y2 Jesse
	Jesse: I'm the more experienced player by far, and yet you destroyed the Juble system.  Does that seem right to you?

23) twopercentright: Build Y2 Twopercentright

24) Jesse: Trade Y2 G2 Jesse

25) twopercentright: Move G2 Twopercentright Grainne

26) Jesse: Build Y2 Jesse
	twopercentright: Juble system angered Morbo!

27) twopercentright: Trade Y2 R2 Twopercentright

28) Jesse: Trade Y2 R2 Jesse
	Jesse: Funny, I was just thinking the same thing...

29) twopercentright: Build R1 Twopercentright
	Jesse: Engarde!

30) Jesse: Build R1 Jesse
	twopercentright: touche'

31) twopercentright: Discover R1 Twopercentright G1 Pallas
	twopercentright: why can't i discover a new star from a Grainne?

32) Jesse: Discover G2 Jesse Y2 Draal
	Jesse: I can't answer that question without knowing what command you were trying to enter.  One possibility is that you were trying to discover a small system, but you can only move to medium and large systems from Grainne.  Another possibility is that you were trying to discover a g2 system, but there isn't a g2 marker available.  Or, it might have just been a syntax error.

33) twopercentright: Build Y2 Twopercentright

34) Jesse: Build G3 Draal

35) twopercentright: Build G3 Grainne
	twopercentright: Sorry about that.  I've been very ill the past two days, and didn't have a chance to get on here.

36) Jesse: Move G2 Draal Grainne
Catastrophe Grainne G
	Jesse: No problem.

37) twopercentright: Move Y3 Twopercentright Pallas
	Jesse: Boom.  Gotta watch out for that.

38) Jesse: Discover G3 Draal Y1 Kaori

39) twopercentright: Build Y1 Pallas
	Jesse: Draal has gone to the sea of stars.

40) Jesse: Move G3 Kaori Twopercentright

41) twopercentright: Move Y3 Pallas Twopercentright
	Jesse: You should not leave your homeworld undefended.

42) Jesse: Sacrifice R2 Jesse
Attack Y3 Twopercentright
Attack R2 Twopercentright
	twopercentright: yeeeeaaaaaaahhhh.  I'm gunna lose

43) twopercentright: Build Y1 Twopercentright

44) Jesse: Sacrifice R2 Twopercentright
Attack Y2 Twopercentright
Attack Y1 Twopercentright
	Jesse: Thanks for the game.



2169)
Started: 2006.1.15, Ended: 2007.2.4
Participants: MightyJack (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld G1 B2 Y3

2) MightyJack: Homeworld B3 Y2 G3

3) andylooney: Build Y1 Andylooney

4) MightyJack: Build G1 Mightyjack

5) andylooney: Trade Y1 G1 Andylooney

6) MightyJack: Build G2 Mightyjack

7) andylooney: Build G2 Andylooney

8) MightyJack: Discover G2 Mightyjack Y1 Tau Ceti

9) andylooney: Discover G2 Andylooney Y3 Howell
	MightyJack: That was actually supposed to be Tau Ceti... guess the program won't let there be a new star with a space in the name.  Oh well.

10) MightyJack: Trade G1 Y1 Mightyjack

11) andylooney: Discover G1 Andylooney Y3 Clampett

12) MightyJack: Discover Y1 Mightyjack G1 Eden

13) andylooney: Build Y1 Andylooney

14) MightyJack: Build Y2 Eden

15) andylooney: Discover Y1 Andylooney G3 Garden

16) MightyJack: Discover Y2 Eden G3 Kermit

17) andylooney: Build Y2 Garden

18) MightyJack: Build G2 Mightyjack

19) andylooney: Sacrifice G2 Howell
Build G2 Clampett
Build Y3 Andylooney

20) MightyJack: Trade G2 R2 Mightyjack

21) andylooney: Discover Y2 Garden B1 Berry

22) MightyJack: Move R2 Mightyjack Berry

23) andylooney: Discover G1 Clampett B1 Bomber

24) MightyJack: Attack Y2N Berry

25) andylooney: Trade G1 R1 Bomber

26) MightyJack: Move R2 Berry Garden

27) andylooney: Move Y3 Andylooney Garden

28) MightyJack: Sacrifice Y2 Kermit
Move Y2 Berry Garden
Move Y1 Eden Garden
Catastrophe Garden Yellow

29) andylooney: Build Y1 Andylooney

30) MightyJack: Build G1 Mightyjack

31) andylooney: Build Y1 Andylooney

32) MightyJack: Trade G1 B1 Mightyjack

33) andylooney: Trade Y1 B1 Andylooney

34) MightyJack: Move B1 Mightyjack Tau

35) andylooney: Discover B1 Andylooney G3 Paradise
	MightyJack: Sorry for the long delays on my part too.

36) MightyJack: Build B2 Tau

37) andylooney: Build B2 Paradise

38) MightyJack: Move B2 Tau Garden

39) andylooney: Trade B1 R1 Paradise



2248)
Started: 2006.1.19, Ended: 2006.1.21
Participants: Lexicon (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B1 G2 Y3
	Lexicon: What a tough field.  Do I play against the inventor of this game or one of the top players?  The best way to improve is to get tromped, I suppose. ;)

2) Lexicon: Homeworld G1 B3 Y3

3) TwoShort: Build Y1 Twoshort
	TwoShort: Hmmm, I guess I am one of the top players.  I still feel like I've just been lucky vs Andy, and Jesse has stomped me twice.

4) Lexicon: Build Y1 Lexicon

5) TwoShort: Trade Y1 G1 Twoshort
	Lexicon: As long as you're beating Andy, you're pretty good.  I'll probably try against him next.

6) Lexicon: Trade Y1 G1 Lexicon

7) TwoShort: Build Y1 Twoshort

8) Lexicon: Discover G1 Lexicon Y2 Nature

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) Lexicon: Build G2 Nature

11) TwoShort: Discover Y1 Twoshort G3 Gordo

12) Lexicon: Move G2 Nature Lexicon

13) TwoShort: Discover Y1 Gordo G2 Grogar

14) Lexicon: Build G3 Nature

15) TwoShort: Build G3 Yolonda

16) Lexicon: Build Y1 Lexicon

17) TwoShort: Sacrifice G3 Yolonda
Build Y1 Grogar
Build Y2 Twoshort
Build G3 Yolonda

18) Lexicon: Trade Y1 R1 Lexicon

19) TwoShort: Discover G1 Yolonda Y2 Yoyodyne

20) Lexicon: Sacrifice G3 Nature
Build G3 Nature
Build Y1 Lexicon
Build R1 Lexicon

21) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Grogar Lexicon
Move Y1 Grogar Lexicon
Catastrophe Lexicon Yellow

22) Lexicon: Discover G3 Nature Y3 Science

23) TwoShort: Trade Y3 R3 Twoshort

24) Lexicon: Trade G2 Y2 Lexicon

25) TwoShort: Build G2 Yolonda

26) Lexicon: Build G2 Science

27) TwoShort: Sacrifice G3 Yolonda
Build G3 Yoyodyne
Build G3 Yolonda
Build R1 Twoshort

28) Lexicon: Sacrifice Y2 Lexicon
Move G3 Science Yoyodyne
Move G3 Yoyodyne Lexicon

29) TwoShort: Move G3 Yoyodyne Lexicon

	Lexicon: I figured you had me back with the propulsion attack.  Good game. ;)


2274)
Started: 2006.1.20, Ended: 2006.1.22
Participants: sketchwick (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y1 B2 G3

2) sketchwick: Homeworld B2 Y1 G3

3) jeep: Build G1 Jeep

4) sketchwick: Build G1 Sketchwick

5) jeep: Trade G1 Y1 Jeep

6) sketchwick: Trade G3 Y3 Sketchwick

7) jeep: Build Y2 Jeep

8) sketchwick: Discover Y3 Sketchwick G3 Sigh

9) jeep: Sacrifice Y2 Jeep
Move G3 Jeep Sigh
Move G3 Sigh Sketchwick



2267)
Started: 2006.1.20, Ended: 2006.2.22
Participants: TwoShort (S), Jesse (N)
Winner: TwoShort

1) Jesse: Homeworld B1 G2 Y3
	Jesse: Well, now that you're kicking everyone else's asses around here, I think it's high time we played again.  :)

2) TwoShort: Homeworld B1 Y2 G3
	TwoShort: Hmmm, The last couple general challenges I've put up, I considered challenging you directly, but chickened out.

3) Jesse: Build Y1 Jesse

4) TwoShort: Build G1 Twoshort
	Jesse: If I hadn't seen the open challenge, I was going to challenge you directly sometime soon, anyway.  So, what, are you scared of the unstoppable juggernaut?  I'm really looking forward to a challenging game.
	Jesse: Interesting choice of homeworld.  You want a really direct conflict, eh?

5) Jesse: Trade Y1 B1 Jesse
	TwoShort: Or I'm getting my inatentive screw up out of the way off the top...


6) TwoShort: Build G1 Twoshort
	Jesse: That works, too.
	TwoShort: build g1 twoshort

7) Jesse: Build B2 Jesse
	Jesse: As it turns out, that doesn't work so well.  ;)

8) TwoShort: Trade G1 Y1 Twoshort

9) Jesse: Trade B2 R2 Jesse

10) TwoShort: Trade G1 R1 Twoshort

11) Jesse: Build B2 Jesse

12) TwoShort: Build G1 Twoshort

13) Jesse: Trade B2 Y2 Jesse

14) TwoShort: Build G1 Twoshort

15) Jesse: Build B2 Jesse
	TwoShort: This is grim.  I won't give up quite yet; but I will be wanting a rematch.

16) TwoShort: Discover G1 Twoshort G3 Grogar
	Jesse: Yeah, you're in a tough spot.

17) Jesse: Trade B2 R2 Jesse

18) TwoShort: Build G1 Twoshort

19) Jesse: Trade R2 G2 Jesse

20) TwoShort: Discover G1 Twoshort B3 Bluestar
	Jesse: Ack!  I hate wasting a move like that.

21) Jesse: Discover Y2 Jesse G3 Hulk

22) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Twoshort
Build R1 Twoshort

23) Jesse: Build R1 Jesse

24) TwoShort: Trade G2 Y2 Bluestar
	Jesse: It looks like you may be turning the tables, here.

25) Jesse: Discover G2 Jesse Y3 Yolk
	TwoShort: I'm feeling a bit less doomed

26) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Twoshort
Build Y1 Bluestar

27) Jesse: Build Y1 Jesse

28) TwoShort: Trade Y2 B2 Bluestar

29) Jesse: Move R2 Jesse Grogar
	TwoShort: This getting to that complexity level where I'm always sure I'm missing something 
	Jesse: I'm definitely going to need to think about this one...

30) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Bluestar
Build Y3 Bluestar

31) Jesse: Move Y1 Jesse Bluestar
Catastrophe Bluestar Y
	Jesse: I'm sorry, that's not allowed.

32) TwoShort: Trade G2 Y2 Bluestar

33) Jesse: Build G2 Yolk

34) TwoShort: Move G1 Twoshort Yolk

35) Jesse: Attack G1 Grogar

36) TwoShort: Sacrifice G1 Bluestar
Build G1 Yolk
Catastrophe Yolk Green

37) Jesse: Build G1 Grogar

38) TwoShort: Trade B2 G2 Bluestar

39) Jesse: Build B2 Jesse

40) TwoShort: Sacrifice Y2 Bluestar
Move G2 Bluestar Jesse
Move G2 Jesse Grogar
Catastrophe Grogar Green

41) Jesse: Build R2 Jesse
	Jesse: Baboooom!  What a violent little game we've got going here.  Looks like the tables are tipping back my way for the moment.

42) TwoShort: Discover R1 Twoshort G3 Greenland

43) Jesse: Move R2 Jesse Hulk
	TwoShort: Things are definitely tipped your way, but I think less so than before the disasters.

44) TwoShort: Build R2 Greenland

45) Jesse: Move B1 Jesse Hulk

46) TwoShort: Move Y1 Twoshort Greenland

47) Jesse: Build B2 Hulk

48) TwoShort: Build G1 Twoshort

49) Jesse: Trade B2 G2 Hulk

50) TwoShort: Discover R1 Greenland Y1 Yonder

51) Jesse: Discover B2 Jesse Y3 Sulk

52) TwoShort: Sacrifice G3 Twoshort
Build R2 Greenland
Build R3 Twoshort
Build R3 Yonder

53) Jesse: Sacrifice G2 Hulk
Build B2 Sulk
Build R3 Jesse

54) TwoShort: Move R3 Yonder Hulk

55) Jesse: Sacrifice Y2 Hulk
Move B1 Hulk Twoshort
Move B2 Sulk Twoshort

56) TwoShort: Sacrifice R2 Greenland
Attack R2N Hulk
Attack B2N Twoshort

57) Jesse: Move B2 Sulk Twoshort
Catastrophe Twoshort B

58) TwoShort: Build R2 Greenland

59) Jesse: Discover R1 Jesse G3 Flounder

60) TwoShort: Discover R2 Greenland B1 Lupus

61) Jesse: Build Y1 Jesse

62) TwoShort: Build Y2 Greenland

63) Jesse: Move Y3 Jesse Flounder

64) TwoShort: Move R2 Greenland Jesse

65) Jesse: Attack R2 Jesse

66) TwoShort: Sacrifice Y2 Greenland
Move R2 Hulk Jesse
Move R3 Hulk Jesse
Catastrophe Jesse Red

67) Jesse: Build Y2 Jesse

68) TwoShort: Build Y2 Greenland

69) Jesse: Trade Y2 R2 Jesse

70) TwoShort: Sacrifice Y2 Greenland
Move R3 Twoshort Greenland
Move R3 Greenland Jesse

	Jesse: Well done.  That's what I get for pressing my luck.
	Jesse: So ends my 24 game winning streak.  :)


2280)
Started: 2006.1.23, Ended: 2006.2.10
Participants: cobalt (S), Lexicon (N)
Winner: Lexicon

1) Lexicon: Homeworld G1 B2 Y3

2) cobalt: Homeworld B1 G3 Y3

3) Lexicon: Build Y1 Lexicon

4) cobalt: Build Y1 Cobalt

5) Lexicon: Trade Y1 G1 Lexicon

6) cobalt: Build Y1 Cobalt

7) Lexicon: Build G1 Lexicon

8) cobalt: Trade Y3 G3 Cobalt

9) Lexicon: Discover G1 Lexicon Y3 Hydrogen

10) cobalt: Discover Y1 Cobalt G2 Harrison
	cobalt: I'll be late on this one. Maybe a couple days.
	Lexicon: No problem.

11) Lexicon: Build G2 Hydrogen



2235)
Started: 2006.1.24, Ended: 2006.2.6
Participants: andylooney (S), Lexicon (N)
Winner: andylooney

1) Lexicon: Homeworld G1 B2 Y3

2) andylooney: Homeworld B3 G2 Y3
	Lexicon: Howdy!  Happy gaming. :)

3) Lexicon: Build Y1 Lexicon

4) andylooney: Build Y1 Andylooney

5) Lexicon: Trade Y1 G1 Lexicon

6) andylooney: Trade Y1 G1 Andylooney

7) Lexicon: Build G2 Lexicon

8) andylooney: Build G2 Andylooney

9) Lexicon: Sacrifice Y3 Lexicon
Discover G1 Lexicon Y3 Stage1
Discover G1 Stage1 Y1 Stage2
Move G1 Stage2 Andylooney
Catastrophe Andylooney Green

10) andylooney: Trade Y3 G3 Andylooney
	Lexicon: I've been wondering how this would play out.

11) Lexicon: Build G1 Lexicon

12) andylooney: Build G1 Andylooney

13) Lexicon: Trade G1 Y1 Lexicon

14) andylooney: Trade G1 Y1 Andylooney

15) Lexicon: Build Y1 Lexicon

16) andylooney: Build Y2 Andylooney

17) Lexicon: Move Y1 Lexicon Andylooney

18) andylooney: Trade Y2 R2 Andylooney

19) Lexicon: Trade Y1 B1 Andylooney
	Lexicon: I thought it might turn out this way.  I'm about one more shy of a variety of attacks.  Oh well.  


20) andylooney: Attack B1N Andylooney



2303)
Started: 2006.1.24, Ended: 2006.2.5
Participants: TwoShort (S), Personman (N)
Winner: TwoShort

1) Personman: Homeworld Y1 B3 G3

2) TwoShort: Homeworld G1 B2 Y3

3) Personman: Build G1 Personman

4) TwoShort: Build Y1 Twoshort

5) Personman: Discover G1 Personman Y2 Wtdrts

6) TwoShort: Trade Y1 G1 Twoshort

7) Personman: Build G2 Personman

8) TwoShort: Build Y1 Twoshort

9) Personman: Trade G2 Y2 Personman

10) TwoShort: Discover G1 Twoshort Y3 Yolonda
	TwoShort: I'm going to suggest you undo that.  I can sacrifice my Y3, move my g1 into your homeworld and cause a catastrophe to win the game.
	Personman: .. right. Sorry, this is only my, uh, 2.5th game. 

11) Personman: Build G2 Personman
	TwoShort: No problem.  I make that exact error with some regularity.

12) TwoShort: Build G2 Yolonda
	TwoShort: By the way, what does WTDRTS mean?
	Personman: Where the dirt reaches the sky. It's from a They Might Be Giants song, like my user name. 

	Personman: Or, if you prefer, What The Dogs Rip To Shreds. Or maybe Who The Devil Remembers This Shithole? It could also be Winter: The Dark, Remote, Terrifying Star.

13) Personman: Trade G2 B2 Personman

14) TwoShort: Discover G1 Yolonda Y2 Yak
	TwoShort: I got Where's The Damn Real Time Strategy? but couldn't figure why you'd be asking that...

15) Personman: Build G2 Wtdrts

16) TwoShort: Discover Y1 Twoshort B3 Bluestar

17) Personman: Discover Y2 Personman B2 Twostar

18) TwoShort: Sacrifice G2 Yolonda
Build Y1 Twoshort
Build Y3 Bluestar

19) Personman: Sacrifice G2 Wtdrts
Build Y3 Twostar
Build G2 Wtdrts

20) TwoShort: Trade Y3 G3 Bluestar

21) Personman: Discover G1 Wtdrts Y3 Save

22) TwoShort: Build G2 Bluestar

23) Personman: Build G2 Save

24) TwoShort: Build G3 Yak

25) Personman: Move G1 Save Twoshort

26) TwoShort: Trade Y1 R1 Twoshort

27) Personman: Sacrifice Y3 Twostar
Move G2 Wtdrts Save
Move G2 Save Twoshort
Move G2 Save Twoshort
Catastrophe Twoshort G

28) TwoShort: Move G3 Yak Personman

	Personman: Nicely done. I felt very much like I was walking into a trap the whole time, but was too lazy/stupid to actually sit down and think about what it might have been. That's quite a nice little bind you've got me in, too - I can't see anything you don't have covered.
	Personman: Alright. I've been looking at this for two days now, and I see absoultely no way to even prolong it much, so I shall resign. Good game!


2278)
Variants: "Unrated"
Started: 2006.1.25, Ended: 2006.1.31
Participants: Jesse (S), tendrecube (N)
Winner: Jesse

1) tendrecube: Homeworld Y2 B1 G3

2) Jesse: Homeworld Y3 B2 G3
	Jesse: Hello.  I see you have already been beaten up a bit by three of the stronger players on the server.  What I would like to do here is to give you a handicap to try to even the playing field a bit.  The way it works is, after I set up my homeworld, I'll pass a few times to give you a head start.  I've only just started experimenting with this, so I don't have a good idea of how many times to pass to make an interesting game.  Shall we try four?

3) tendrecube: Build G1 Tendrecube

4) Jesse: Pass
	tendrecube: well as you like....
I think i handle the rules...but still have some problems develloping a viable strategy...
Hard to hook player my place for this game...sigh..

Choose the number of turn you think you're rated for buddy.
I don't mind. I'm happy to play anyway :-)

Let's have some fun....

5) tendrecube: Build G1 Tendrecube
	Jesse: Well, that's the idea.  I don't actually know how many passes I can afford to give.  I'm trying to find that out.  If four turns out to be insane, then I won't give four anymore.

6) Jesse: Pass
	tendrecube: the advantage you give can turn to be an inconvenient for me....cause you'll have an easier acces to bigger pyramids from the reserves earlier
just a thought

7) tendrecube: Discover G1 Tendrecube Y3 Atomium
	Jesse: You will have access to them as well.  I'm quite sure it's not an advantage.

8) Jesse: Pass

9) tendrecube: Build G1 Atomium
	Jesse: One more pass to come...

10) Jesse: Pass

11) tendrecube: Trade G1 B1 Tendrecube
	Jesse: That's it.  Oh, man...  Do you hve any idea how hopeless this looks?

12) Jesse: Build G1 Jesse
	tendrecube: i can't see the hopeless this far lol
you feel so stuck with the limitation given by the rules..
That's where the fun comes ;-)

13) tendrecube: Discover G1 Atomium B1 Elfstar

14) Jesse: Build G2 Jesse
	Jesse: Don't misunderstand me.  I will enjoy the challenge of overcoming the advantage you have.  It's just a very difficult looking one.
	Jesse: I don't know if you play Go, but it's like the first time giving someone a nine stone handicap: very intimidating.

15) tendrecube: Trade G3 Y3 Tendrecube
	tendrecube: Oh that is an image i can clearly understand



16) Jesse: Trade G2 R2 Jesse
	tendrecube: wasn't it a win if i moved the little G one from Elfstar to your binary homeworld?
	tendrecube: oops said nothing...no propulsion technology there

	Jesse: Right, you could have destroyed me if you'd had propulsion available.

17) tendrecube: Move B1 Tendrecube Atomium

18) Jesse: Build G2 Jesse

19) tendrecube: Build B2 Atomium

20) Jesse: Trade G2 B2 Jesse

21) tendrecube: Move B2 Atomium Elfstar

22) Jesse: Discover B2 Jesse Y1 Khoomei

23) tendrecube: Build B3 Elfstar

24) Jesse: Sacrifice G1 Jesse
Build B3 Khoomei

25) tendrecube: Build B3 Atomium

26) Jesse: Trade B3 G3 Khoomei

27) tendrecube: Discover B1 Atomium G1 Paradise

28) Jesse: Build B3 Khoomei

29) tendrecube: Move G1 Atomium Tendrecube

30) Jesse: Move B3 Khoomei Atomium

31) tendrecube: Sacrifice Y3 Tendrecube
Move B3 Elfstar Jesse
Move B2 Elfstar Jesse
Move B1 Paradise Jesse
Catastrophe Jesse B

32) Jesse: Move B3 Atomium Tendrecube
	Jesse: You will find that such a move is too aggressive, since it leaves you with no defenses of your own.

33) tendrecube: Build G1 Elfstar

34) Jesse: Sacrifice R2 Jesse
Attack G1 Tendrecube
Pass
	tendrecube: indeed it sounds aggressive...
I'm exploring the strategies..

	Jesse: Another thing is that you need to be aware of the red ships your opponent can sacrifice.  Anyway, thanks for the game.  Keep playing, you'll get a handle on it.



2313)
Started: 2006.1.26, Ended: 2006.1.31
Participants: GigaClon (S), tendrecube (N)
Winner: tendrecube

1) tendrecube: Homeworld G3 Y2 B3

2) GigaClon: Homeworld G1 Y3 B3

3) tendrecube: Build B1 Tendrecube

4) GigaClon: Build B1 Gigaclon

5) tendrecube: Trade B1 G1 Tendrecube

6) GigaClon: Trade B1 G1 Gigaclon

7) tendrecube: Build G2 Tendrecube

8) GigaClon: Discover G1 Gigaclon B2 Kagami

9) tendrecube: Trade G1 Y1 Tendrecube

10) GigaClon: Build G1 Kagami

11) tendrecube: Discover Y1 Tendrecube R1 Atomium

12) GigaClon: Trade G1 B1 Kagami

13) tendrecube: Sacrifice G2 Tendrecube
Build Y1 Atomium
Build Y1 Atomium

14) GigaClon: Build B1 Gigaclon

15) tendrecube: Build B1 Tendrecube

16) GigaClon: Build B2 Kagami

17) tendrecube: Discover Y1 Atomium G2 Elfstar

18) GigaClon: Trade B2 Y2 Kagami

19) tendrecube: Trade B3 G3 Tendrecube

20) GigaClon: Build Y2 Kagami

21) tendrecube: Sacrifice G3 Tendrecube
Build Y3 Elfstar
Build Y3 Elfstar
Build B2 Tendrecube

22) GigaClon: Discover Y2 Kagami G1 Xuxa

23) tendrecube: Discover Y1 Atomium G2 Paradise

24) GigaClon: Move Y2 Xuxa Elfstar
Catastrophe Elfstar Yellow

25) tendrecube: Build Y1 Paradise

26) GigaClon: Sacrifice Y2 Kagami
Discover G1 Kagami R1 Oasis
Move B1 Kagami Gigaclon

27) tendrecube: Build Y2 Paradise

28) GigaClon: Discover B1 Gigaclon Y2 Xuxa

29) tendrecube: Discover Y1 Atomium G2 Elfstar
	GigaClon: im totally lost
	tendrecube: Maybe loosing your mind but not the game....
You broke down one of my attack already....
you're doin good so far

30) GigaClon: Move B1 Xuxa Oasis

31) tendrecube: Move Y1 Paradise Gigaclon

32) GigaClon: Build B2 Oasis

33) tendrecube: Sacrifice Y2 Paradise
Move Y1 Elfstar Gigaclon
Move Y1 Paradise Gigaclon
Catastrophe Gigaclon Y

34) GigaClon: Trade B1 G1 Gigaclon

35) tendrecube: Trade B2 G2 Tendrecube

36) GigaClon: Trade B2 R2 Oasis

37) tendrecube: Move G2 Tendrecube Gigaclon
	GigaClon: im limping along here now

38) GigaClon: Trade G1 B1 Gigaclon

39) tendrecube: Build G1 Gigaclon

	GigaClon: good game


2349)
Started: 2006.1.28, Ended: 2006.2.12
Participants: Uglyfoot (S), Calavera (N)
Winner: Uglyfoot

1) Calavera: Homeworld B2 Y3 G3

2) Uglyfoot: Homeworld B2 Y1 G3
	Calavera: Good luck.

3) Calavera: Build G1 Calavera

4) Uglyfoot: Build G1 Uglyfoot

5) Calavera: Trade G1 Y1 Calavera

6) Uglyfoot: Build G1 Uglyfoot

7) Calavera: Build G1 Calavera

8) Uglyfoot: Trade G1 B1 Uglyfoot

9) Calavera: Discover G1 Calavera B1 Camelot
	Calavera: d g1 calavera b1 Camelot

10) Uglyfoot: Discover B1 Uglyfoot G3 Industry

11) Calavera: Build G1 Calavera

12) Uglyfoot: Build G2 Uglyfoot

13) Calavera: Sacrifice G3 Calavera
Build G2 Camelot
Build G2 Camelot
Build G3 Calavera

14) Uglyfoot: Sacrifice G3 Uglyfoot
Build B1 Industry
Build B2 Industry
Build G3 Uglyfoot

15) Calavera: Trade G1 R1 Calavera

16) Uglyfoot: Sacrifice B2 Industry
Trade G2 R2 Uglyfoot
Trade B1 Y1 Industry

17) Calavera: Trade G2 B2 Camelot

18) Uglyfoot: Build Y2 Industry

19) Calavera: Trade G2 Y2 Camelot

20) Uglyfoot: Trade Y2 R2 Industry

21) Calavera: Discover B2 Camelot Y3 Lyonesse

22) Uglyfoot: Move R2 Uglyfoot Lyonesse

23) Calavera: Sacrifice R1 Calavera
Attack R2 Lyonesse

24) Uglyfoot: Build Y2 Industry

25) Calavera: Build Y2 Camelot

26) Uglyfoot: Move Y2 Industry Camelot

27) Calavera: Sacrifice Y2 Camelot
Move G1 Camelot Industry
Move G1 Industry Uglyfoot

28) Uglyfoot: Sacrifice R2 Industry
Attack Y2 Camelot
Attack G1 Uglyfoot

29) Calavera: Trade B2 G2 Lyonesse

30) Uglyfoot: Sacrifice G1 Uglyfoot
Build Y2 Camelot

31) Calavera: Move Y1 Calavera Camelot
Catastrophe Camelot Y

32) Uglyfoot: Trade G1 R1 Uglyfoot

33) Calavera: Build G1 Calavera

34) Uglyfoot: Build G1 Uglyfoot

35) Calavera: Trade G1 B1 Calavera

36) Uglyfoot: Move G1 Uglyfoot Industry

37) Calavera: Discover B1 Calavera G1 Tintagel

38) Uglyfoot: Build G1 Industry

39) Calavera: Build G2 Calavera

40) Uglyfoot: Build G2 Uglyfoot

41) Calavera: Build B1 Tintagel

42) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build B2 Industry
Build R1 Uglyfoot

43) Calavera: Trade G2 Y2 Calavera

44) Uglyfoot: Discover B1 Industry Y1 Gateway

45) Calavera: Sacrifice Y2 Calavera
Move G2 Lyonesse Gateway
Move G2 Gateway Industry
Catastrophe Industry G

46) Uglyfoot: Trade G2 Y2 Uglyfoot

47) Calavera: Trade B1 Y1 Tintagel

48) Uglyfoot: Build Y2 Uglyfoot

49) Calavera: Build Y2 Tintagel

50) Uglyfoot: Discover Y2 Uglyfoot G3 Industry2
	Calavera: Sorry. That one was a typo
	Uglyfoot: No problem.  I've been know to use the feature...


51) Calavera: Trade Y1 G1 Tintagel

52) Uglyfoot: Build G1 Uglyfoot

53) Calavera: Build G2 Calavera

54) Uglyfoot: Move G1 Uglyfoot Industry2

55) Calavera: Move G1 Tintagel Lyonesse

56) Uglyfoot: Move G1 Industry2 Gateway

57) Calavera: Build G2 Lyonesse

58) Uglyfoot: Build G2 Gateway

59) Calavera: Trade G2 R2 Calavera

60) Uglyfoot: Sacrifice G2 Gateway
Build Y1 Uglyfoot
Build Y3 Industry2

61) Calavera: Move Y2 Tintagel Lyonesse

62) Uglyfoot: Sacrifice Y2 Industry2
Move Y1 Uglyfoot Lyonesse
Move Y2 Uglyfoot Lyonesse
Catastrophe Lyonesse Y

	Calavera: Good game, I think I'll admit defeat now.


2324)
Started: 2006.1.28, Ended: 2006.2.14
Participants: Uglyfoot (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y1 B2 G3

2) Uglyfoot: Homeworld G3 B2 Y3

3) jeep: Build G1 Jeep

4) Uglyfoot: Build Y1 Uglyfoot

5) jeep: Build G1 Jeep

6) Uglyfoot: Build Y1 Uglyfoot

7) jeep: Trade G3 Y3 Jeep

8) Uglyfoot: Discover Y1 Uglyfoot B1 Aleph

9) jeep: Build G1 Jeep

10) Uglyfoot: Build Y2 Uglyfoot

11) jeep: Discover G1 Jeep Y3 Stashed

12) Uglyfoot: Trade Y2 G2 Uglyfoot
	jeep: Amazing how big of a mess I can make in just a few moves.  ;)

13) jeep: Build G2 Stashed

14) Uglyfoot: Move G2 Uglyfoot Aleph

15) jeep: Trade G1 R1 Jeep

16) Uglyfoot: Build Y2 Aleph

17) jeep: Move G2 Stashed Aleph

18) Uglyfoot: Trade Y1 R1 Uglyfoot

19) jeep: Sacrifice R1 Jeep
Attack G2S Aleph

20) Uglyfoot: Build R1 Uglyfoot

21) jeep: Trade G2 Y2 Aleph

22) Uglyfoot: Move R1 Uglyfoot Aleph

23) jeep: Sacrifice G2 Aleph
Build Y1 Aleph
Build Y2 Jeep
Catastrophe Aleph Y

24) Uglyfoot: Build Y1 Uglyfoot

25) jeep: Trade Y2 G2 Jeep

26) Uglyfoot: Move Y1 Uglyfoot Aleph

27) jeep: Build G1 Stashed

28) Uglyfoot: Move R1 Aleph Stashed

29) jeep: Trade G2 R2 Jeep

30) Uglyfoot: Attack G1 Stashed

31) jeep: Sacrifice R2 Jeep
Attack R1S Stashed
Attack G1S Stashed

32) Uglyfoot: Build Y1 Uglyfoot

33) jeep: Build G2 Jeep

34) Uglyfoot: Build Y2 Uglyfoot

35) jeep: Build G2 Stashed

36) Uglyfoot: Trade Y3 G3 Uglyfoot

37) jeep: Trade G2 B2 Jeep

38) Uglyfoot: Build G2 Uglyfoot

39) jeep: Sacrifice Y3 Jeep
Move G1 Stashed Aleph
Move G1 Aleph Uglyfoot
Move G2 Stashed Aleph
Catastrophe Uglyfoot G

40) Uglyfoot: Trade Y1 G1 Uglyfoot

41) jeep: Build G2 Aleph

42) Uglyfoot: Build G2 Uglyfoot

43) jeep: Build G3 Stashed

44) Uglyfoot: Discover G1 Uglyfoot R3 Bypass

45) jeep: Move G3 Stashed Uglyfoot

46) Uglyfoot: Build R1 Uglyfoot

47) jeep: Sacrifice R1 Stashed
Attack G2S Uglyfoot

48) Uglyfoot: Attack G2 Uglyfoot

49) jeep: Sacrifice B2 Jeep
Trade G2 R2 Aleph
Trade G1 R1 Jeep
	jeep: LOL, I'm dumb.

50) Uglyfoot: Sacrifice Y2 Uglyfoot
Move G2 Uglyfoot Bypass
Move G2 Bypass Jeep

51) jeep: Sacrifice R2 Aleph
Attack R1S Uglyfoot
Attack R1S Uglyfoot
	Uglyfoot: It's all over but planting the flag...
	jeep: Yep, planting now.



2361)
Started: 2006.1.29, Ended: 2006.2.12
Participants: jeep (S), sketchwick (N)
Winner: sketchwick

1) sketchwick: Homeworld B2 R1 G3

2) jeep: Homeworld B1 G2 Y3

3) sketchwick: Build G1 Sketchwick

4) jeep: Build Y1 Jeep

5) sketchwick: Trade G1 Y1 Sketchwick

6) jeep: Trade Y1 G1 Jeep

7) sketchwick: Build G1 Sketchwick

8) jeep: Build Y1 Jeep

9) sketchwick: Discover G1 Sketchwick Y3 Sun

10) jeep: Discover G1 Jeep Y3 Beam

11) sketchwick: Build G1 Sun

12) jeep: Build G2 Beam

13) sketchwick: Build G2 Sketchwick

14) jeep: Move G1 Beam Sketchwick

15) sketchwick: Trade G3 R3 Sketchwick

16) jeep: Build G3 Sketchwick

17) sketchwick: Attack G3 Sketchwick

18) jeep: Build G3 Sketchwick
Catastrophe Sketchwick G

19) sketchwick: Move R3 Sketchwick Beam

20) jeep: Move G2 Beam Sketchwick

21) sketchwick: Move R3 Beam Sketchwick

22) jeep: Sacrifice G2 Sketchwick
Build Y1 Jeep
Pass

23) sketchwick: Move G1 Sun Sketchwick

24) jeep: Trade Y1 R1 Jeep

25) sketchwick: Build G1 Sketchwick

26) jeep: Trade Y3 G3 Jeep

27) sketchwick: Build G2 Sun

28) jeep: Move R1 Jeep Sun
	jeep: *sigh* How did I make such a mess?
	jeep: My last move was about the worst possible...
	sketchwick: When you moved into my system I thought you might force draw where we just capture back and forth...which was fine for me at the time...but I certainly do feel good now...stop making me overconfident!
	jeep: HAHA!  NOW you're in trouble.  I'll take advantage of your hubris to win $20000!

29) sketchwick: Move G1 Sun Jeep

30) jeep: Trade G3 R3 Jeep
	sketchwick: We both know you are way too nice for that

31) sketchwick: Sacrifice G2 Sun
Build G2 Jeep
Build G2 Jeep
Catastrophe Jeep Green
	jeep: I SHOULD just concede, I'm sure...  This sucks.

32) jeep: Trade Y1 G1 Jeep

33) sketchwick: Move R3 Sketchwick Sun

34) jeep: Move R1 Sun Sketchwick

35) sketchwick: Attack R1 Sketchwick

	jeep: My only hope was that you screw up.  ;)


2380)
Started: 2006.2.1, Ended: 2006.2.9
Participants: TwoShort (S), MatrixFrog (N)
Winner: TwoShort

1) MatrixFrog: Homeworld G1 Y3 B3

2) TwoShort: Homeworld B1 Y2 G3

3) MatrixFrog: Build B1 Matrixfrog

4) TwoShort: Build G1 Twoshort

5) MatrixFrog: Build B1 Matrixfrog

6) TwoShort: Build G1 Twoshort

7) MatrixFrog: Trade B3 G3 Matrixfrog

8) TwoShort: Discover G1 Twoshort Y3 Yolonda

9) MatrixFrog: Discover B1 Matrixfrog Y2 Jeremy

10) TwoShort: Build G2 Yolonda

11) MatrixFrog: Build G2 Matrixfrog

12) TwoShort: Discover G2 Yolonda Y2 Yak

13) MatrixFrog: Move G3 Matrixfrog Jeremy

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Yak
Build G3 Twoshort

15) MatrixFrog: Build B2 Matrixfrog

16) TwoShort: Move G3 Yak Matrixfrog

17) MatrixFrog: Sacrifice G2 Matrixfrog
Build G2 Jeremy
Build B2 Jeremy

18) TwoShort: Trade G3 R3 Twoshort

19) MatrixFrog: Move G3 Jeremy Matrixfrog
	MatrixFrog: Aw, crap.
	MatrixFrog: Sometimes I just don't pay attention
	TwoShort: Yeah... leaving your homeworld without a 3 pointer is pretty risky...  Anyway, I'll be happy to play again if you want a rematch.
	MatrixFrog: Not at the moment but sometime within a few weeks probably.

20) TwoShort: Sacrifice R3 Twoshort
Attack G3 Matrixfrog
Attack B2 Matrixfrog
Attack B1 Matrixfrog



2419)
Started: 2006.2.3, Ended: 2006.2.15
Participants: Uglyfoot (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B1 G2 Y3
	Jesse: Hello, there!

2) Uglyfoot: Homeworld B3 Y1 G3

3) Jesse: Build Y1 Jesse

4) Uglyfoot: Build G1 Uglyfoot

5) Jesse: Build Y1 Jesse

6) Uglyfoot: Discover G1 Uglyfoot B2 Forward

7) Jesse: Discover Y1 Jesse B3 Serenity

8) Uglyfoot: Build G1 Forward

9) Jesse: Build Y2 Jesse

10) Uglyfoot: Build G1 Uglyfoot

11) Jesse: Trade Y2 G2 Jesse

12) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Forward

13) Jesse: Move G2 Jesse Serenity

14) Uglyfoot: Trade G2 Y2 Uglyfoot

15) Jesse: Move G2 Serenity Forward
Catastrophe Forward G

16) Uglyfoot: Build Y2 Uglyfoot

17) Jesse: Discover Y1 Jesse G3 Ariel

18) Uglyfoot: Discover G1 Uglyfoot B2 Nexus

19) Jesse: Build Y2 Jesse

20) Uglyfoot: Move Y2 Uglyfoot Nexus

21) Jesse: Trade Y2 R2 Jesse

22) Uglyfoot: Build Y2 Nexus

23) Jesse: Build Y3 Jesse

24) Uglyfoot: Trade Y2 R2 Nexus

25) Jesse: Move Y3 Jesse Serenity

26) Uglyfoot: Build G1 Uglyfoot

27) Jesse: Trade Y3 G3 Serenity

28) Uglyfoot: Build Y2 Nexus

29) Jesse: Build Y3 Serenity

30) Uglyfoot: Build Y3 Uglyfoot

31) Jesse: Sacrifice Y3 Serenity
Move Y1 Serenity Nexus
Move Y1 Nexus Uglyfoot
Move G3 Serenity Nexus
Catastrophe Uglyfoot Y

32) Uglyfoot: Sacrifice Y2 Nexus
Move Y2 Nexus Ariel
Move R2 Nexus Ariel

33) Jesse: Move Y1 Ariel Nexus

34) Uglyfoot: Trade G1 R1 Uglyfoot

35) Jesse: Trade G3 R3 Nexus

36) Uglyfoot: Build R1 Uglyfoot

37) Jesse: Attack G1 Nexus

38) Uglyfoot: Build Y1 Ariel

39) Jesse: Build G1 Nexus

40) Uglyfoot: Build G1 Uglyfoot

41) Jesse: Discover G1 Nexus Y1 Miranda

42) Uglyfoot: Move R2 Ariel Miranda

43) Jesse: Sacrifice Y3 Jesse
Move G1 Miranda Uglyfoot
Move G1 Nexus Uglyfoot
Move R3 Nexus Uglyfoot
Catastrophe Uglyfoot G
	Jesse: That's a really irritating play (good for you!), but it has a serious flaw...

44) Uglyfoot: Move Y2 Ariel Jesse
	Jesse: (Hopefully I haven't missed anything...)

45) Jesse: Attack Y2 Jesse
	Uglyfoot: It pretty much looks like it.


46) Uglyfoot: Move R2 Miranda Uglyfoot

47) Jesse: Pass
Catastrophe Uglyfoot R
	Uglyfoot: Your choice of endings.

	Jesse: Thanks for the game.



2425)
Started: 2006.2.5, Ended: 2006.2.10
Participants: andylooney (S), Uglyfoot (N)
Winner: andylooney

1) Uglyfoot: Homeworld Y1 B2 G3

2) andylooney: Homeworld G2 B3 Y3

3) Uglyfoot: Build G1 Uglyfoot

4) andylooney: Build Y1 Andylooney

5) Uglyfoot: Discover G1 Uglyfoot B3 Omega

6) andylooney: Trade Y1 G1 Andylooney

7) Uglyfoot: Build G1 Uglyfoot

8) andylooney: Build G2 Andylooney

9) Uglyfoot: Trade G1 Y1 Uglyfoot

10) andylooney: Discover G2 Andylooney Y1 Different

11) Uglyfoot: Build Y2 Uglyfoot

12) andylooney: Build Y2 Andylooney

13) Uglyfoot: Trade Y2 B2 Uglyfoot

14) andylooney: Build Y2 Andylooney

15) Uglyfoot: Build Y2 Uglyfoot

16) andylooney: Discover Y2 Andylooney G1 Gumby

17) Uglyfoot: Build G2 Uglyfoot

18) andylooney: Build G3 Different

19) Uglyfoot: Build G3 Omega

20) andylooney: Sacrifice G3 Different
Build G3 Different
Build Y3 Andylooney
Build Y3 Gumby

21) Uglyfoot: Move Y1 Uglyfoot Omega

22) andylooney: Trade Y2 R2 Andylooney

23) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build Y2 Omega
Build B1 Uglyfoot

24) andylooney: Sacrifice Y2 Gumby
Move Y3 Gumby Omega
Move Y3 Omega Uglyfoot

25) Uglyfoot: Trade G3 R3 Omega

26) andylooney: Sacrifice R2 Andylooney
Attack G3N Uglyfoot
Attack G2N Uglyfoot

27) Uglyfoot: Sacrifice Y2 Omega
Move R3 Omega Different
Move R3 Different Andylooney

28) andylooney: Trade G3 R3 Uglyfoot

29) Uglyfoot: Attack G1 Andylooney

30) andylooney: Sacrifice R3 Uglyfoot
Attack Y2N Uglyfoot
Attack R3N Andylooney
Attack G1N Andylooney

31) Uglyfoot: Move Y1 Omega Uglyfoot
Catastrophe Uglyfoot Y
	Uglyfoot: Beat me by one turn.  Thanks for showing me another way to win.

32) andylooney: Sacrifice R3 Andylooney
Attack B2N Uglyfoot
Attack B1N Uglyfoot
Pass
	andylooney: It's been a great game. Thanks for playing!
	Uglyfoot: silly question.  why didn't you take over the two blue in the uglyfoot system and win last turn?

	andylooney: And leave invaders in my homeworld? That's not a tidy ending... Thanks for the game!


2434)
Started: 2006.2.7, Ended: 2007.8.24
Participants: JIMBO (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld B1 G2 Y3
	JIMBO: Is this the real Andy Looney?
	andylooney: It certainly is. Hi there!

2) JIMBO: Homeworld B2 G1 R3

3) andylooney: Build Y1 Andylooney
	JIMBO: Hello! I have to say - I am totally crazy for your games!  I found Fluxx a few years back and finally bought Icehouse pieces last month.  I'm hooked!
	andylooney: Cool! That's great! Thanks for playing my games... with me!

4) JIMBO: Build R1 Jimbo

5) andylooney: Trade Y1 G1 Andylooney

6) JIMBO: Build R1 Jimbo

7) andylooney: Build Y1 Andylooney

8) JIMBO: Trade R1 Y1 Jimbo

9) andylooney: Trade Y1 R1 Andylooney

10) JIMBO: Build Y1 Jimbo

11) andylooney: Build G1 Andylooney

12) JIMBO: Trade R3 G3 Jimbo

13) andylooney: Discover G1 Andylooney Y3 Clampett

14) JIMBO: Trade Y1 B1 Jimbo
	JIMBO: You alive, Andy?
	andylooney: yup, but I've been out of town. Sorry for the delay!

15) andylooney: Trade G1 B1 Andylooney

16) JIMBO: Build Y1 Jimbo
	JIMBO: No problem!  Say, this weekend my friends and I were playing a bunch of Binary (and Trinary) Homeworlds and we ran into a couple of grey areas - d'you think you could settle a couple of rule disputes for us?
	andylooney: certainly.

	JIMBO: When you sacrifice a ship - 1. if it's a green ship, does it go back into the stash before you pick the pieces to synthesize, and 2. if sacrificed ship is the last ship in a system, does the system still exist until the end of the turn, or is it immediately dissolved?
	andylooney: 1.) Yes, a sacrificed ship goes back into the bank before any new pieces are grown.
	andylooney: 2.) At the instant when the last ship leaves a star system, the piece goes into the bank.
	andylooney: These 2 points are vital to the strategy known as investing, i.e. parking a green at a large yellow then growing the system marker as a ship when yellow is otherwise exhausted.
	andylooney: I'm happy to say that when I discovered this system wasn't handling this properly, Aaron fixed it right away!
	JIMBO: And one other thing - if you have the yellow system, a small yellow ship, and a large green ship, and you sacrifice the large green, can you grow green ships (with that sacrifice action) in that system, or is yellow the only option?
	andylooney: Yellow is the only option. You must have a ship of the type you want to grow in the system in order to make more of them.

17) andylooney: Build B2 Andylooney

18) JIMBO: Build B2 Jimbo
	JIMBO: Right on!

19) andylooney: Trade B2 G2 Andylooney

20) JIMBO: Discover B2 Jimbo Y3 Kwva

21) andylooney: Discover G2 Andylooney B3 Bigbluefrog

22) JIMBO: Move Y1 Jimbo Kwva

23) andylooney: Discover B1 Andylooney G3 Garden

24) JIMBO: Discover B1 Jimbo G3 Hyphy

25) andylooney: Build Y1 Andylooney

26) JIMBO: Build Y2 Jimbo
	andylooney: Hey Jimbo! Very sorry for the long delay!

27) andylooney: Move Y1 Andylooney Garden
	JIMBO: I'm not sweating it - it was my spring break anyway, I was trying to spend some time away from the 'puter.

28) JIMBO: Sacrifice G3 Jimbo
Build B2 Hyphy
Build B3 Hyphy
Build B3 Kwva

29) andylooney: Sacrifice G2 Bigbluefrog
Build B3 Garden
Build Y2 Garden

30) JIMBO: Sacrifice Y2 Jimbo
Move B2 Hyphy Jimbo
Move B2 Jimbo Garden

31) andylooney: Sacrifice Y2 Garden
Move B3 Garden Jimbo
Discover Y1 Garden G2 Greendome

32) JIMBO: Sacrifice B2 Garden
Trade B2 Y2 Kwva
Trade Y1 R1 Kwva

33) andylooney: Build R2 Andylooney

34) JIMBO: Sacrifice Y2 Kwva
Move B3 Hyphy Jimbo
Move B1 Hyphy Jimbo
Catastrophe Jimbo Blue
	JIMBO: Oh, snake! Nice move.

35) andylooney: Move R2 Andylooney Clampett

36) JIMBO: Move B3 Kwva Jimbo

37) andylooney: Build R2 Andylooney
	JIMBO: Hey Andy, sorry for the huge wait - I just turned in my 107-page research paper yesterday!!
	andylooney: Congratulations! (And don't worry about being slow, I'm way late on most of my moves too!)



2345)
Variants: "Sinister"
Started: 2006.2.8, Ended: 2006.3.13
Participants: mneme (S), Lexicon (W), Uglyfoot (N), Kermit (E)
Winner: Uglyfoot

1) Uglyfoot: Homeworld Y1 B2 G3

2) Kermit: Homeworld G2 B3 Y3

3) mneme: Homeworld Y3 G1 B3

4) Lexicon: Homeworld G1 B2 Y3
	Lexicon: I wonder if player 4 doesn't have too much advantage in sinister for being able to place himself one jump from their target.

5) Uglyfoot: Build G1 Uglyfoot

6) Kermit: Build Y1 Kermit

7) mneme: Build B1 Mneme

8) Lexicon: Build Y1 Lexicon

9) Uglyfoot: Build G1 Uglyfoot

10) Kermit: Trade Y1 G1 Kermit

11) mneme: Build B1 Mneme

12) Lexicon: Build Y1 Lexicon

13) Uglyfoot: Discover G1 Uglyfoot B3 Commerce

14) Kermit: Build G2 Kermit

15) mneme: Discover B1 Mneme Y2 Diamond

16) Lexicon: Trade Y3 G3 Lexicon

17) Uglyfoot: Build G2 Commerce

18) Kermit: Build Y1 Kermit

19) mneme: Build B1 Mneme
	Uglyfoot: I will be glad to take any assistance defending myself from the sinister, Lexicon.  (nice choice by the way)

20) Lexicon: Discover Y1 Lexicon B3 General

21) Uglyfoot: Trade G1 Y1 Commerce

22) Kermit: Discover Y1 Kermit B1 E0143

23) mneme: Discover B1 Mneme G2 Jade

24) Lexicon: Build Y2 Lexicon

25) Uglyfoot: Build Y2 Commerce

26) Kermit: Move G1 Kermit E0143

27) mneme: Build B1 Jade

28) Lexicon: Move Y2 Lexicon General

29) Uglyfoot: Move G1 Uglyfoot General

30) Kermit: Build Y2 E0143

31) mneme: Build B2 Jade

32) Lexicon: Trade Y2 G2 General

33) Uglyfoot: Build G1 Uglyfoot

34) Kermit: Trade Y2 B2 E0143

35) mneme: Trade B2 Y2 Jade

36) Lexicon: Move G2 General Uglyfoot

37) Uglyfoot: Trade G3 R3 Uglyfoot

38) Kermit: Build Y2 E0143

39) mneme: Trade B3 G3 Mneme

40) Lexicon: Sacrifice G2 Uglyfoot
Build Y2 General
Build Y3 Lexicon

41) Uglyfoot: Build G2 Uglyfoot

42) Kermit: Sacrifice Y2 E0143
Move G1 E0143 Diamond
Move G1 Diamond Mneme

43) mneme: Trade G3 R3 Mneme
	Lexicon: Well.  Nevermind then.

44) Lexicon: Trade Y2 R2 General

45) Uglyfoot: Build G3 Commerce

46) Kermit: Build G3 Kermit

47) mneme: Attack G1E Mneme

48) Lexicon: Attack G1N General

49) Uglyfoot: Sacrifice Y2 Commerce
Move G2 Commerce E0143
Move G2 E0143 Kermit
Catastrophe Kermit G

50) Kermit: Trade B2 G2 E0143
	mneme: Hmm.  Lex, unless you can do something, I think Uglyfoot's just going to win.


51) mneme: Build B2 Jade
	Lexicon: That's some trouble all right.  Got a few rounds left though...

52) Lexicon: Build G2 General
	Uglyfoot: Quick tell me how to do it...

53) Uglyfoot: Move G1 Uglyfoot Kermit
	mneme: UF: you got the first part well enough -- I think you're doing fine enough on your own.

54) Kermit: Move G2 E0143 Kermit

55) mneme: Build B2 Mneme

56) Lexicon: Trade G2 B2 General

57) Uglyfoot: Sacrifice G3 Commerce
Build G2 Kermit
Build G2 Kermit
Build G3 Uglyfoot
Catastrophe Kermit G

58) Kermit: Pass

59) mneme: Sacrifice Y2 Jade
Move B1 Jade General
Move B1 Jade General
Catastrophe General B

60) Lexicon: Discover Y1 Lexicon G3 Bio

61) Uglyfoot: Move R3 Uglyfoot Kermit

62) Kermit: Move Y1 E0143 Kermit
	Kermit: dead in the water :{P}

63) mneme: Build B1 Jade

64) Lexicon: Move Y1 Bio Uglyfoot
	Lexicon: Hm... Ouch.

65) Uglyfoot: Attack Y3E Kermit

66) Kermit: Trade Y1 G1 Kermit

67) mneme: Trade B2 Y2 Jade
	mneme: it's over.

68) Lexicon: Sacrifice G3 Lexicon
Build Y1 Uglyfoot
Build Y1 Uglyfoot
Build Y2 Lexicon
Catastrophe Uglyfoot Y

69) Uglyfoot: Attack G1E Kermit

	Lexicon: Good game guys.


2449)
Started: 2006.2.8, Ended: 2006.2.12
Participants: TwoShort (S), mneme (N)
Winner: TwoShort

1) mneme: Homeworld Y3 B2 G3

2) TwoShort: Homeworld Y1 B2 G3

3) mneme: Build G1 Mneme

4) TwoShort: Build G1 Twoshort

5) mneme: Discover G1 Mneme B1 Chimera

6) TwoShort: Discover G1 Twoshort Y3 Yolonda

7) mneme: Build G1 Chimera

8) TwoShort: Build G2 Twoshort

9) mneme: Build G2 Mneme

10) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Twoshort
Build G3 Twoshort

11) mneme: Trade G2 Y2 Mneme

12) TwoShort: Trade G3 Y3 Twoshort

13) mneme: Build G2 Mneme

14) TwoShort: Discover G2 Yolonda B1 Bluestar

15) mneme: Discover G2 Mneme Y1 Gryphon

16) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Yolonda
Build Y1 Twoshort

17) mneme: Sacrifice Y2 Mneme
Move G1 Chimera Yolonda
Move G1 Chimera Yolonda
Catastrophe Yolonda G
	mneme: gah.  I'll learn this game eventaully. 

18) TwoShort: Discover G2 Twoshort Y3 Yak

19) mneme: Build G1 Gryphon
	TwoShort: Well, you've learned my favorite maxim:  When in doubt, blow stuff up.
	mneme: Heh.  Got that a while ago -- but I just don't have the material to compete at this point.

	TwoShort: Yeah, an advantage in 3 pointers typically does it; and the threat of catastrophe if you grow in your homeworld means your options are pretty limited.  Anytime you want to play again, I'm pretty much always willing to play more Homeworlds. 

20) TwoShort: Discover Y1 Twoshort G3 Zorak

21) mneme: Discover G1 Gryphon B3 Leviathan

22) TwoShort: Build G1 Twoshort

23) mneme: Build G1 Leviathan

24) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Zorak
Build Y2 Zorak

25) mneme: Trade G1 R1 Leviathan

26) TwoShort: Trade G2 R2 Bluestar

27) mneme: Sacrifice G2 Gryphon
Build G1 Leviathan
Build G2 Mneme

28) TwoShort: Move Y3 Twoshort Leviathan

29) mneme: Sacrifice G3 Mneme
Build G2 Leviathan
Build G3 Mneme
Build R1 Leviathan

30) TwoShort: Sacrifice R2 Bluestar
Attack R1 Leviathan
Attack R1 Leviathan

31) mneme: Trade G2 B2 Leviathan

32) TwoShort: Attack B2 Leviathan

33) mneme: Trade G1 B1 Leviathan

34) TwoShort: Sacrifice Y2 Zorak
Discover Y3 Leviathan B1 Banzai
Move Y3 Banzai Mneme

35) mneme: Trade G1 B1 Leviathan
Catastrophe Leviathan B
	mneme: This would be more interesting if I weren't -so- dead.

36) TwoShort: Trade G3 R3 Twoshort

	mneme: I figured you'd turn the Y-ship red, but this is cleaner, yeah



2467)
Started: 2006.2.9, Ended: 2006.3.8
Participants: Jesse (S), Lexicon (N)
Winner: Lexicon

1) Lexicon: Homeworld B1 G2 Y3

2) Jesse: Homeworld G1 B3 Y3
	Lexicon: We'll see if I've improved since last time. ;)

3) Lexicon: Build Y1 Lexicon
	Jesse: Indeed.  Do your best.

4) Jesse: Build Y1 Jesse

5) Lexicon: Trade Y1 G1 Lexicon

6) Jesse: Trade Y1 G1 Jesse

7) Lexicon: Discover G1 Lexicon Y3 Glucose

8) Jesse: Discover G1 Jesse B2 Foo

9) Lexicon: Build G2 Glucose

10) Jesse: Build G2 Foo

11) Lexicon: Build G3 Glucose

12) Jesse: Build Y1 Jesse

13) Lexicon: Move G1 Glucose Foo

14) Jesse: Trade G1 R1 Foo

15) Lexicon: Sacrifice G3 Glucose
Build G1 Foo
Build G3 Foo
Build G3 Glucose
Catastrophe Foo Green

16) Jesse: Discover Y1 Jesse G2 Bar
	Jesse: (Whups, typo.)

17) Lexicon: Discover G2 Glucose B2 Fructose

18) Jesse: Trade R1 G1 Foo
	Jesse: I've got to say, that was pretty sharp.  I'm going to have to fight hard to come back, here.
	Lexicon: I must admit I'm pretty pleased with that one. ;)

19) Lexicon: Build Y1 Lexicon

20) Jesse: Build Y1 Jesse

21) Lexicon: Move Y1 Lexicon Glucose

22) Jesse: Move Y1 Jesse Foo

23) Lexicon: Move Y1 Glucose Fructose

24) Jesse: Build Y2 Jesse

25) Lexicon: Build G1 Glucose

26) Jesse: Build G3 Foo

27) Lexicon: Sacrifice G3 Glucose
Build G3 Glucose
Build G3 Fructose
Build Y2 Fructose

28) Jesse: Trade Y2 R2 Jesse

29) Lexicon: Sacrifice G3 Glucose
Build G3 Glucose
Build Y2 Lexicon
Build Y2 Fructose

30) Jesse: Discover Y1 Bar B3 Baz

31) Lexicon: Sacrifice Y2 Lexicon
Move Y1 Fructose Jesse
Move Y2 Fructose Jesse

32) Jesse: Trade Y3 R3 Jesse

33) Lexicon: Sacrifice G3 Glucose
Build G2 Glucose
Build Y2 Fructose
Build Y3 Lexicon

34) Jesse: Attack Y2 Jesse
	Lexicon: Party in the Jesse system!
	Jesse: This is why I'm not much of a party person.

35) Lexicon: Sacrifice Y2 Fructose
Move G1 Glucose Foo
Move G2 Glucose Foo
Catastrophe Foo Green

	Jesse: There's really nothing I can do now unless you make a serious misstep, which I'm sure you won't.  Very nice maneuvering!  Well done!


2471)
Started: 2006.2.10, Ended: 2006.2.17
Participants: killerkitty94 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B1 G2 Y3

2) killerkitty94: Homeworld G3 B1 Y3

3) TwoShort: Build Y1 Twoshort

4) killerkitty94: Build Y1 Killerkitty94

5) TwoShort: Trade Y1 B1 Twoshort

6) killerkitty94: Trade Y1 R1 Killerkitty94

7) TwoShort: Build B2 Twoshort

8) killerkitty94: Build Y1 Killerkitty94

9) TwoShort: Discover B1 Twoshort G3 Grogar

10) killerkitty94: Discover R1 Killerkitty94 B2 Felgrah

11) TwoShort: Build B2 Grogar

12) killerkitty94: Trade Y3 B3 Killerkitty94

13) TwoShort: Build B3 Grogar

14) killerkitty94: Build B3 Killerkitty94

15) TwoShort: Sacrifice Y3 Twoshort
Discover B3 Grogar Y2 Doomtown
Move B1 Grogar Doomtown
Move B1 Doomtown Killerkitty94
Catastrophe Killerkitty94 Blue



2498)
Started: 2006.2.11, Ended: 2006.4.21
Participants: Jesse (S), mneme (N)
Winner: Jesse

1) mneme: Homeworld G2 B1 Y3

2) Jesse: Homeworld G1 Y3 B3
	Jesse: Hello.

3) mneme: Build Y1 Mneme

4) Jesse: Build B1 Jesse

5) mneme: Build Y1 Mneme

6) Jesse: Build B1 Jesse

7) mneme: Discover Y1 Mneme B3 Zebra

8) Jesse: Discover B1 Jesse G2 Infection

9) mneme: Build Y1 Mneme

10) Jesse: Build B2 Infection

11) mneme: Discover Y1 Mneme B3 Bison

12) Jesse: Trade B2 Y2 Infection

13) mneme: Build Y2 Mneme

14) Jesse: Build B2 Infection

15) mneme: Trade Y3 G3 Mneme

16) Jesse: Discover B2 Infection Y3 Tko

17) mneme: Trade Y2 R2 Mneme

18) Jesse: Trade B2 R2 Tko

19) mneme: Sacrifice G3 Mneme
Build Y2 Zebra
Build Y2 Bison
Build Y3 Mneme

20) Jesse: Build B2 Infection

21) mneme: Build R1 Mneme

22) Jesse: Trade B2 R2 Infection

23) mneme: Discover Y2 Bison G2 Parrot

24) Jesse: Build B2 Infection

25) mneme: Trade Y2 B2 Zebra

26) Jesse: Move B1 Infection Tko

27) mneme: Move B2 Zebra Parrot

28) Jesse: Build Y2 Infection

29) mneme: Build B2 Parrot

30) Jesse: Trade B3 G3 Jesse

31) mneme: Build B3 Parrot

32) Jesse: Move B1 Tko Parrot
Catastrophe Parrot B

33) mneme: Trade Y1 G1 Bison

34) Jesse: Move Y2 Infection Bison

35) mneme: Sacrifice Y1 Mneme
Discover G1 Bison G1 Snake

36) Jesse: Sacrifice Y2 Bison
Discover Y2 Infection G3 Knives
Discover R2 Infection G3 Exogenesis

37) mneme: Build Y1 Parrot

38) Jesse: Sacrifice B2 Infection
Trade R2 G2 Tko
Trade B1 R1 Jesse

39) mneme: Trade R1 B1 Mneme

40) Jesse: Build R1 Jesse

41) mneme: Build B1 Mneme

42) Jesse: Discover R1 Jesse B2 Grey17

43) mneme: Move B1 Mneme Zebra

44) Jesse: Build R1 Exogenesis

45) mneme: Move B1 Zebra Parrot

46) Jesse: Sacrifice G3 Jesse
Build R2 Grey17
Build R3 Jesse
Build G3 Tko

47) mneme: Build R3 Mneme

48) Jesse: Sacrifice Y2 Knives
Move R1 Exogenesis Mneme
Move R2 Exogenesis Mneme
Catastrophe Mneme R

49) mneme: Trade B1 R1 Mneme

50) Jesse: Trade R2 Y2 Grey17

51) mneme: Build G3 Snake

52) Jesse: Move G2 Tko Snake
Catastrophe Snake G

53) mneme: Build Y1 Parrot

54) Jesse: Build G1 Tko

55) mneme: Build Y2 Mneme

56) Jesse: Trade R1 B1 Grey17

57) mneme: Trade Y1 R1 Parrot

58) Jesse: Sacrifice B1 Grey17
Trade R3 B3 Jesse

59) mneme: Build R2 Parrot

60) Jesse: Build R2 Jesse

61) mneme: Build B1 Parrot

62) Jesse: Move G1 Tko Grey17

63) mneme: Build R2 Mneme

64) Jesse: Move R1 Jesse Grey17

65) mneme: Build R3 Parrot

66) Jesse: Move R2 Jesse Parrot
Catastrophe Parrot R

67) mneme: Build B2 Parrot

68) Jesse: Trade B3 R3 Jesse

69) mneme: Discover B1 Parrot G3 Monkey

70) Jesse: Build Y1 Grey17

71) mneme: Build B2 Monkey

72) Jesse: Build G1 Grey17

	Jesse: Well, that's long enough.  Time to terminate this game.  It's too bad; this was a tough one.


2497)
Started: 2006.2.12, Ended: 2006.2.17
Participants: TwoShort (S), jeep (N)
Winner: TwoShort

1) jeep: Homeworld B1 G2 Y3

2) TwoShort: Homeworld B1 Y3 G3

3) jeep: Build Y1 Jeep

4) TwoShort: Build G1 Twoshort

5) jeep: Trade Y1 G1 Jeep

6) TwoShort: Trade G1 B1 Twoshort

7) jeep: Build G1 Jeep

8) TwoShort: Build B2 Twoshort

9) jeep: Discover G1 Jeep Y3 Giant

10) TwoShort: Discover B1 Twoshort Y2 Yolonda
	jeep: When I traded for the g1, I thought: I should get the small blue first... then didn't.  *sigh*

11) jeep: Build Y1 Jeep
	jeep: Don't know how I wound up with G3 there... guess I was thinking about what I was going to chat...

12) TwoShort: Sacrifice G3 Twoshort
Build B2 Yolonda
Build B2 Yolonda
Build B3 Twoshort
	TwoShort: Someone surprised me with a similar early blue grab recently; so I'd been looking for an opportunity to try it.

13) jeep: Trade Y3 B3 Jeep

14) TwoShort: Trade B3 Y3 Twoshort

15) jeep: Trade G1 R1 Jeep

16) TwoShort: Discover B2 Yolonda G3 Grogar
	jeep: *sigh*

17) jeep: Trade B3 G3 Jeep

18) TwoShort: Build B3 Grogar

19) jeep: Discover Y1 Jeep G3 Jolly

20) TwoShort: Build B3 Grogar

	jeep: Yeah, this isn't even fun... want to play again?  I'm way past ready to concede...
	TwoShort: Yeah, I you can make it take a little while if you tried, but I don't think you can stop me from winning.  Anyway, I'd love to play again.


2528)
Started: 2006.2.12, Ended: 2006.3.19
Participants: sketchwick (S), jeep (N)
Winner: sketchwick

1) jeep: Homeworld B1 G2 Y3

2) sketchwick: Homeworld B3 R1 G3

3) jeep: Build Y1 Jeep

4) sketchwick: Build G1 Sketchwick

5) jeep: Trade Y1 G1 Jeep

6) sketchwick: Trade G1 Y1 Sketchwick

7) jeep: Build G1 Jeep

8) sketchwick: Build G1 Sketchwick

9) jeep: Trade G1 R1 Jeep

10) sketchwick: Discover G1 Sketchwick Y2 Sun

11) jeep: Build R1 Jeep

12) sketchwick: Build G1 Sketchwick

13) jeep: Discover R1 Jeep Y3 Daoghter

14) sketchwick: Build G2 Sun
	sketchwick: daoghter?


15) jeep: Build R2 Jeep
	jeep: Yeah, you misspelled son... ;)

16) sketchwick: Discover G1 Sun B1 Mum
	sketchwick: bah, I asked without even working on the puzzle if it wasn't a typo!

17) jeep: Discover R1 Jeep B3 Pup

18) sketchwick: Sacrifice G3 Sketchwick
Build G2 Mum
Build G3 Mum
Build G3 Sketchwick
	sketchwick: pop---JUST got it


19) jeep: Trade Y3 G3 Jeep

20) sketchwick: Trade G2 Y2 Mum

21) jeep: Sacrifice G3 Jeep
Build R2 Daoghter
Build R2 Pup
Build R3 Jeep

22) sketchwick: Sacrifice G3 Mum
Build G2 Sketchwick
Build G3 Mum
Build G3 Mum

23) jeep: Build R3 Jeep

24) sketchwick: Trade G3 R3 Mum
	sketchwick: um..I see two lines that say "global reserve stash" but not what's in it
	jeep: Me too, I'll contact Aaron.


25) jeep: Trade R2 Y2 Jeep

26) sketchwick: Sacrifice G3 Sketchwick
Build G3 Sketchwick
Build G3 Sun
Build R2 Mum

27) jeep: Sacrifice Y2 Jeep
Move R1 Pup Mum
Move R1 Daoghter Mum
Catastrophe Mum R

28) sketchwick: Trade G3 R3 Mum

29) jeep: Trade R3 Y3 Jeep

30) sketchwick: Trade G2 R2 Sketchwick

31) jeep: Trade R2 G2 Pup

32) sketchwick: Build G3 Mum

33) jeep: Trade G2 Y2 Pup

34) sketchwick: Move G3 Mum Pup

35) jeep: Discover Y2 Pup G2 Grans

36) sketchwick: Sacrifice G3 Pup
Build Y1 Sketchwick
Build Y1 Sketchwick
Build Y3 Mum

37) jeep: Move Y2 Grans Sketchwick
Catastrophe Sketchwick Y

38) sketchwick: Move G3 Sun Daoghter

39) jeep: Discover R2 Daoghter Y2 Pup

40) sketchwick: Move G3 Daoghter Jeep

41) jeep: Attack G3S Jeep

42) sketchwick: Sacrifice Y2 Mum
Discover G1 Mum Y3 Charge
Move G1 Charge Jeep
Catastrophe Jeep Green

43) jeep: Trade Y3 G3 Jeep

44) sketchwick: Move R3 Mum Pup
	jeep: Just waiting for the fat lady now...

45) jeep: Sacrifice G3 Jeep
Build R1 Pup
Build R1 Pup
Build R2 Jeep
Catastrophe Pup R
	sketchwick: yeah but if you conceded before I lost that game I thought I had to twoshort it wouldn't hurt you rating as much...

46) sketchwick: Build R1 Sketchwick

47) jeep: Trade R2 G2 Jeep

48) sketchwick: Build G1 Sun

49) jeep: Build R1 Jeep

50) sketchwick: Move G2 Sun Sketchwick

51) jeep: Trade R3 Y3 Jeep

52) sketchwick: Trade G2 Y2 Sketchwick

53) jeep: Move G2 Jeep Sun

54) sketchwick: Move Y3 Mum Sun

55) jeep: Sacrifice G2 Sun
Build Y1 Jeep
Build R2 Jeep

56) sketchwick: Discover R2 Sketchwick Y2 Ender

57) jeep: Discover R2 Jeep G2 Valentine

58) sketchwick: Move G3 Sketchwick Valentine

59) jeep: Build R2 Valentine

60) sketchwick: Sacrifice R2 Ender
Attack R2N Valentine
Attack R2N Valentine

61) jeep: Trade Y1 G1 Jeep

62) sketchwick: Sacrifice Y2 Sketchwick
Move Y3 Sun Jeep
Move G3 Valentine Jeep



2532)
Started: 2006.2.17, Ended: 2006.2.27
Participants: jeep (S), TwoShort (N)
Winner: jeep

1) TwoShort: Homeworld B2 Y1 G3

2) jeep: Homeworld B1 G2 Y3

3) TwoShort: Build G1 Twoshort

4) jeep: Build Y1 Jeep
	TwoShort: Hmmm... same-size homeworlds.  Out of curiosity, was that intentional?  

	jeep: No, it was supposed to be B1, G3, Y3, but I am a moron.

5) TwoShort: Build G1 Twoshort

6) jeep: Build Y1 Jeep
	TwoShort: Well, based on my limited experience of having made the same mistake once, I don't actually think it's a disadvantage.

7) TwoShort: Discover G1 Twoshort Y3 Yolonda

8) jeep: Discover Y1 Jeep G3 Giant

9) TwoShort: Build G1 Yolonda

10) jeep: Build Y2 Giant

11) TwoShort: Move G1 Yolonda Jeep
	jeep: I've finally decided that I'm a Builder.  I was trying to play the Traveller game, since I saw you were playing builder, but I never do as well when I try it.
	TwoShort: I'm certainly more comfortable with Builder, though I've been switching back and forth since others seem convinced Traveller is superior.  I just love the Factory though.

12) jeep: Build Y2 Jeep
	jeep: *sigh*  I need to start using notes!!   I took so long because I was trying to work around that... considered making a Red in my homeworld.

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Jeep
Build G3 Twoshort

14) jeep: Trade Y2 R2 Jeep

15) TwoShort: Sacrifice G2 Yolonda
Build G2 Jeep
Build G3 Yolonda

16) jeep: Sacrifice Y2 Giant
Move Y3 Jeep Yolonda
Move Y3 Yolonda Twoshort

17) TwoShort: Move G1 Yolonda Twoshort
	TwoShort: Gak! I hates small-universe! Hates it!

18) jeep: Sacrifice R2 Jeep
Attack G3N Twoshort
Attack G1N Twoshort
Catastrophe Jeep G
	TwoShort: Well, fooey.  Here I was gloating to myself about how clever I was to not call the catastrophe yet, and inconvenience you one tiny bit more, and completely overlooking my doom.

19) TwoShort: Sacrifice G3 Yolonda
Build G1 Twoshort
Build G2 Twoshort
Build G2 Twoshort
	jeep: Yeah, I almsot missed it myself.  And had I called catastrophe, you could have just built more ships, maybe enough that my one attack couldn't cripple you.
	TwoShort: But then or now, being able to grow has a fatal flaw...

20) jeep: Move G3 Twoshort Giant
Catastrophe Twoshort G
	TwoShort: Anyway, good game.  Whenever you're ready for a rematch, I need revenge!
	jeep: Feel free to challenge me anytime.



2554)
Variants: "Unrated"
Started: 2006.2.18, Ended: 2006.3.8
Participants: JunkMan (S), Laurie_Menke (N)
Winner: JunkMan

1) Laurie_Menke: Homeworld B1 G2 Y3
	Laurie_Menke: Hi, JunkMan...good luck!

2) JunkMan: Homeworld B2 G3 Y3

3) Laurie_Menke: Build Y1 Laurie_menke

4) JunkMan: Build Y1 Junkman

5) Laurie_Menke: Discover Y1 Laurie_menke G3 Forest

6) JunkMan: Trade Y1 R1 Junkman

7) Laurie_Menke: Build Y1 Forest

8) JunkMan: Build Y1 Junkman

9) Laurie_Menke: Build Y2 Laurie_menke

10) JunkMan: Discover Y1 Junkman G1 Garden

11) Laurie_Menke: Trade Y2 B2 Laurie_menke

12) JunkMan: Build Y2 Garden

13) Laurie_Menke: Discover B2 Laurie_menke G3 Envy

14) JunkMan: Discover Y1 Garden B3 Factory

15) Laurie_Menke: Build B1 Envy
	Laurie_Menke: Hmmm...not much of a factory without any green.  ;o)

16) JunkMan: Build Y2 Garden

17) Laurie_Menke: Discover Y1 Forest Y2 Sunshine

18) JunkMan: Build Y3 Junkman

19) Laurie_Menke: Move Y1 Sunshine Envy

20) JunkMan: Move Y2 Garden Factory

21) Laurie_Menke: Build Y2 Forest

22) JunkMan: Discover Y2 Garden R3 Mars

23) Laurie_Menke: Move B2 Envy Laurie_menke

24) JunkMan: Trade Y1 G1 Factory

25) Laurie_Menke: Discover Y1 Forest Y1 Luella

26) JunkMan: Discover Y3 Junkman R1 Bunker

27) Laurie_Menke: Move Y3 Laurie_menke Mars

28) JunkMan: Move Y2 Mars Laurie_menke

29) Laurie_Menke: Trade B2 R2 Laurie_menke

30) JunkMan: Sacrifice R1 Junkman
Attack R2N Laurie_menke

	JunkMan: Good Game


2589)
Started: 2006.2.22, Ended: 2006.4.17
Participants: TwoShort (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld Y2 B1 G3
	Jesse: I must have my vengeance.  :)

2) TwoShort: Homeworld B1 G3 B3 *
	TwoShort: By all means!  But I should note that the blue-freeze out you put on me at the beginning of last game got me thinking...

3) Jesse: Build G1 Jesse
	Jesse: Interesting idea, but I won't let it work.  :)

4) TwoShort: Build B1 Twoshort

5) Jesse: Build G1 Jesse

6) TwoShort: Trade B3 Y3 Twoshort

7) Jesse: Discover G1 Jesse B3 Ham

8) TwoShort: Build B2 Twoshort

9) Jesse: Discover G1 Jesse B3 Bacon

10) TwoShort: Discover B2 Twoshort Y2 Yoyodyne

11) Jesse: Build G1 Jesse

12) TwoShort: Build B2 Twoshort

13) Jesse: Build G2 Ham

14) TwoShort: Trade B2 R2 Twoshort

15) Jesse: Trade G2 R2 Ham

16) TwoShort: Trade Y3 G3 Twoshort

17) Jesse: Discover G1 Jesse B3 Pork

18) TwoShort: Build G2 Twoshort

19) Jesse: Build G2 Jesse

20) TwoShort: Sacrifice G2 Twoshort
Build G2 Twoshort
Build B2 Yoyodyne

21) Jesse: Trade G2 B2 Jesse

22) TwoShort: Trade G2 Y2 Twoshort

23) Jesse: Discover B2 Jesse Y3 Chitlins

24) TwoShort: Sacrifice Y2 Twoshort
Move B2 Yoyodyne Bacon
Move B2 Yoyodyne Pork

25) Jesse: Build G2 Jesse

26) TwoShort: Trade B2 R2 Pork

27) Jesse: Trade G2 Y2 Jesse

28) TwoShort: Sacrifice R2 Twoshort
Attack G1 Bacon
Attack G1 Pork

29) Jesse: Build G2 Ham

30) TwoShort: Trade B2 Y2 Bacon

31) Jesse: Move Y2 Jesse Ham

32) TwoShort: Build G2 Bacon

33) Jesse: Discover G1 Ham B2 Saussage

34) TwoShort: Move G1 Bacon Jesse

35) Jesse: Trade G3 R3 Jesse

36) TwoShort: Sacrifice Y2 Bacon
Move R2 Pork Saussage
Discover G2 Bacon Y2 Hashbrowns

37) Jesse: Sacrifice G2 Ham
Build B2 Chitlins
Build B3 Chitlins

38) TwoShort: Attack G1N Saussage

39) Jesse: Attack G1 Jesse

40) TwoShort: Trade B1 Y1 Twoshort

41) Jesse: Trade B3 G3 Chitlins

42) TwoShort: Trade G1 Y1 Pork

43) Jesse: Discover G1 Jesse Y3 Trotters

44) TwoShort: Sacrifice G3 Twoshort
Build Y1 Pork
Build Y3 Twoshort
Build R1 Saussage

45) Jesse: Sacrifice G1 Trotters
Build Y3 Ham

46) TwoShort: Sacrifice Y1 Pork
Discover R1 Saussage G3 Eggsand

47) Jesse: Move Y3 Ham Saussage

48) TwoShort: Sacrifice Y1 Twoshort
Discover R2 Saussage B3 Samiam

49) Jesse: Move Y3 Saussage Samiam

50) TwoShort: Sacrifice G2 Hashbrowns
Build Y1 Twoshort
Build R1 Eggsand
	TwoShort: Hmm, the secret move that lets me turn this game around is proving most elusive...

51) Jesse: Sacrifice R2 Ham
Attack R2 Samiam
Pass

52) TwoShort: Build R1 Eggsand

53) Jesse: Move G3 Chitlins Jesse

54) TwoShort: Build G1 Saussage

55) Jesse: Trade B2 G2 Chitlins

56) TwoShort: Trade G1 B1 Saussage

57) Jesse: Build G1 Chitlins

58) TwoShort: Build G1 Saussage

59) Jesse: Sacrifice G2 Chitlins
Build G2 Jesse
Build R2 Samiam

60) TwoShort: Trade G1 Y1 Saussage

61) Jesse: Sacrifice G2 Jesse
Build R2 Samiam
Build Y2 Samiam

62) TwoShort: Sacrifice Y1 Pork
Move R1 Eggsand Saussage

63) Jesse: Build R3 Jesse

64) TwoShort: Build R3 Saussage

65) Jesse: Sacrifice Y2 Samiam
Move R2 Samiam Saussage
Move R2 Samiam Saussage
Catastrophe Saussage R

66) TwoShort: Discover G1 Saussage B3 Syrup

67) Jesse: Move R3 Jesse Syrup

68) TwoShort: Move Y1 Saussage Eggsand

69) Jesse: Attack G1 Syrup

70) TwoShort: Trade Y1 R1 Twoshort

71) Jesse: Build R2 Syrup
	TwoShort: I always hate to resign when I can't see a short-term, guaraunteed win sequence for my opponent...  but my doom does seem inevitable.
	Jesse: Yeah, I feel the same way.  Comebacks are certainly possible.  It's hard to find the correct degree of perseverance in the face of gradually increasing odds against you.  Do as you will.  I'll be happy to continue playing as long as you want to keep at it.

	Jesse: Thanks for the game.  'Til next time...


2543)
Started: 2006.2.23, Ended: 2006.3.30
Participants: jeep (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld Y1 G2 B3

2) jeep: Homeworld B1 Y3 G3
	Jesse: It's been a while; good to meet you again.

3) Jesse: Build B1 Jesse

4) jeep: Build G1 Jeep
	jeep: Thanks, nice to see you again.  ;)

5) Jesse: Build B1 Jesse

6) jeep: Discover G1 Jeep B2 Man

7) Jesse: Discover B1 Jesse G3 Plus

8) jeep: Build G1 Jeep

9) Jesse: Build B2 Plus
	jeep: I keep getting myself behind in the early game.  I guess I need to pay more attention.  *sigh*
	Jesse: It's not easy.  The opening at first seems simple because there aren't as many options as later, but it's surprisingly subtle.

10) jeep: Build G1 Man

11) Jesse: Trade B2 Y2 Plus

12) jeep: Discover G3 Jeep Y2 Woman

13) Jesse: Build B2 Plus
	Jesse: It is almost always a bad idea to leave your homeworld without a large ship to defend it.  If you think you can get away with it, more power to you, but I think it's quite dangerous here.

14) jeep: Build G2 Woman

15) Jesse: Discover B1 Jesse G3 Yggdrasil
	jeep: Yeah, I know, but I'm so far behind, I need to take a couple risks, I think.

16) jeep: Sacrifice G3 Woman
Build G2 Woman
Build G3 Jeep
Pass

17) Jesse: Build B2 Yggdrasil

18) jeep: Trade G1 Y1 Man

19) Jesse: Build B3 Jesse

20) jeep: Sacrifice G3 Jeep
Build G1 Man
Build Y1 Man
Build G3 Jeep

21) Jesse: Build B3 Yggdrasil

22) jeep: Discover Y1 Man R3 Stage

23) Jesse: Sacrifice B2 Yggdrasil
Trade B3 Y3 Yggdrasil
Trade B3 Y3 Jesse

24) jeep: Build Y2 Man

25) Jesse: Build B2 Yggdrasil

26) jeep: Move G2 Woman Stage

27) Jesse: Trade B3 R3 Jesse

28) jeep: Trade G1 R1 Man

29) Jesse: Build B3 Yggdrasil

30) jeep: Move Y1 Man Stage

31) Jesse: Discover Y3 Jesse B3 Child

32) jeep: Sacrifice G3 Jeep
Build G1 Stage
Build G3 Jeep
Build R1 Man

33) Jesse: Move B3 Yggdrasil Jesse

34) jeep: Move R1 Man Plus

35) Jesse: Build B3 Plus

36) jeep: Sacrifice G2 Woman
Build Y2 Stage
Build G2 Man

37) Jesse: Move B3 Plus Man

38) jeep: Sacrifice Y2 Man
Move R1 Man Jeep
Discover G2 Stage Y2 Store

39) Jesse: Sacrifice Y3 Yggdrasil
Move Y3 Child Man
Move Y3 Man Jeep
Move B3 Man Jeep

40) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build R1 Jeep
Build R2 Plus
	jeep: I think I looked at my two one point red ships and thought they were as good as a two point ship, or something. :(
	jeep: All over but the singing, now.

41) Jesse: Sacrifice R3 Jesse
Attack G3 Jeep
Attack G1 Jeep
Attack R2 Plus
	Jesse: In some situations, two one-pointers are better than one two-pointer.  Unfortunately for you right now, defending against mass invasions is not one of them.  Remember this kind of attack for the future; it is often more effective than trying to destroy the opponent's ships of stars, which can require huge sacrifices.

	jeep: I've won with this type of attack before.  But I thought I was safe- for now.  I know I was way behind for most of the game, though.  Thanks for the game!  


2626)
Started: 2006.2.27, Ended: 2006.3.2
Participants: Uglyfoot (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) Uglyfoot: Homeworld Y3 B1 G3

3) TwoShort: Build G1 Twoshort

4) Uglyfoot: Build G1 Uglyfoot

5) TwoShort: Discover G1 Twoshort Y3 Yolonda

6) Uglyfoot: Discover G1 Uglyfoot B2 Venice

7) TwoShort: Build G1 Twoshort

8) Uglyfoot: Build G2 Venice

9) TwoShort: Build G2 Yolonda

10) Uglyfoot: Trade G2 Y2 Venice

11) TwoShort: Discover G1 Yolonda B2 Bluestar

12) Uglyfoot: Build G2 Uglyfoot

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Yolonda
Build G3 Twoshort

14) Uglyfoot: Build Y1 Venice

15) TwoShort: Move G3 Yolonda Venice

16) Uglyfoot: Trade Y1 R1 Venice

17) TwoShort: Trade G2 R2 Bluestar

18) Uglyfoot: Build G2 Venice

19) TwoShort: Sacrifice R2 Bluestar
Attack R1S Venice
Attack Y2S Venice

20) Uglyfoot: Move G2 Uglyfoot Venice
Catastrophe Venice G

21) TwoShort: Build G1 Bluestar

22) Uglyfoot: Build G2 Uglyfoot

23) TwoShort: Sacrifice Y2 Venice
Move G1 Bluestar Uglyfoot
Move G1 Bluestar Uglyfoot
Catastrophe Uglyfoot Green
	Uglyfoot: and that looks like a win for you.

	TwoShort: Yup.  Thanks for the game!



2643)
Started: 2006.2.27, Ended: 2006.3.31
Participants: TwoShort (S), jeep (N)
Winner: TwoShort

1) jeep: Homeworld Y1 B3 G3

2) TwoShort: Homeworld B1 Y2 G3

3) jeep: Build G1 Jeep

4) TwoShort: Build G1 Twoshort

5) jeep: Discover G1 Jeep B2 Man

6) TwoShort: Discover G1 Twoshort Y3 Yolonda

7) jeep: Build G1 Man

8) TwoShort: Build G2 Twoshort

9) jeep: Trade G1 Y1 Man

10) TwoShort: Trade G2 Y2 Twoshort

11) jeep: Build G1 Jeep

12) TwoShort: Build G2 Twoshort

13) jeep: Trade G3 Y3 Jeep

14) TwoShort: Build G2 Yolonda

15) jeep: Build G2 Jeep

16) TwoShort: Move G2 Yolonda Man

17) jeep: Sacrifice G2 Jeep
Build G2 Man
Build G3 Jeep

18) TwoShort: Sacrifice G2 Twoshort
Build G2 Man
Build G3 Twoshort
Catastrophe Man Green
	jeep: Sorry for the delay...  That's why I pick 3 day games, though...

19) jeep: Sacrifice G3 Jeep
Build Y1 Man
Build Y2 Jeep
Build Y3 Man

20) TwoShort: Discover Y2 Twoshort B3 Bluestar

21) jeep: Move Y3 Man Yolonda

22) TwoShort: Build G1 Yolonda

23) jeep: Build G2 Jeep

24) TwoShort: Discover G1 Yolonda B2 Boy

25) jeep: Move G2 Jeep Man

26) TwoShort: Move Y2 Bluestar Boy

27) jeep: Discover Y2 Jeep B2 Yolanda

28) TwoShort: Build G2 Boy

29) jeep: Build G2 Man

30) TwoShort: Trade G2 R2 Boy

31) jeep: Trade G2 R2 Man

32) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Yolonda
Build G3 Boy

33) jeep: Build G3 Jeep
	TwoShort: Woops, mis-entered that... and now I'm reconsidering 

34) TwoShort: Move G2 Yolonda Yolanda

35) jeep: Move Y3 Yolonda Twoshort

36) TwoShort: Sacrifice R2 Boy
Attack Y3N Twoshort
Attack Y2N Yolanda

37) jeep: Sacrifice Y3 Jeep
Discover G2 Man Y3 Woman
Move R2 Man Jeep
Move G1 Jeep Man
	jeep: I'm nervous that I mis-calculated here... but we'll see, I guess.
	TwoShort: I've been nervous the last dozen moves... it's kind of refreshing to have an obvious move this time.

38) TwoShort: Trade G2 R2 Yolanda
	TwoShort: Well, I was worried you had me; but looking at things now, I think you miscalculated... unless I've miscalculated and you weren't planning what I think you were planning... :)
	jeep: You did what I expected, now I need to remember my response.  I remember thinking it was non-obvious.  Too bad there isn't a notebook type feature on the si...?  Hmm?  There is?  Wow, mayby I should use it.
	TwoShort:  Well, what I thought you might be planning was sacrificing your Y3 to move your G3 all the way to my homeworld now that I have no red.  But I wouldn't recommend it.
	jeep: Right, I do that and you simply build two larges in your homeworld.  I can take two, but then you can get an R3 and destroy me... yeah, that wasn't what it was.  What else might destroy you?  ;)
	TwoShort: If you do that and I build two larges, you could respond by turning your large red, and then you'd be free to sacrifice the r2 even if I got red, and I'd be doomed.  So I wouldn't build the two larges.
	jeep: Yeah, I know.  ;)  *sigh*  I really do know that I make bad moves at midnight, but I still make them.  I think this game is as good as over now.  I'm still thinking about it, but I'm thinking I missed that you'd wind up with the Y2 instead of me after the attack.

39) jeep: Discover Y1 Man B3 Stage

40) TwoShort: Move G2 Yolonda Man

41) jeep: Sacrifice G2 Woman
Build G2 Man
Build Y3 Stage

42) TwoShort: Sacrifice G1 Yolonda
Build Y3 Yolanda

43) jeep: Move G1 Man Stage

44) TwoShort: Sacrifice Y3 Yolanda
Move Y2 Yolanda Stage
Move Y2 Boy Stage
Move R2 Yolanda Stage
Catastrophe Stage Yellow

45) jeep: Sacrifice G2 Man
Build G1 Stage
Build G2 Stage

46) TwoShort: Sacrifice G3 Boy
Build G2 Man
Build G3 Boy
Build Y1 Twoshort
	jeep: When ahead, simplify... always a good plan, I think.

47) jeep: Sacrifice G2 Stage
Build Y2 Man
Build Y2 Man

48) TwoShort: Sacrifice Y3 Twoshort
Move G1 Boy Jeep
Move G2 Man Jeep
Move G2 Man Jeep
Catastrophe Jeep Green

49) jeep: Move Y2 Man Jeep

50) TwoShort: Sacrifice Y1 Twoshort
Move G3 Boy Jeep



2647)
Started: 2006.3.2, Ended: 2006.3.7
Participants: sketchwick (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) sketchwick: Homeworld B1 R3 G3
	TwoShort: Greetings

3) TwoShort: Build G1 Twoshort

4) sketchwick: Build G1 Sketchwick

5) TwoShort: Discover G1 Twoshort Y3 Yolonda

6) sketchwick: Trade G3 Y3 Sketchwick

7) TwoShort: Build G1 Yolonda

8) sketchwick: Build G2 Sketchwick

9) TwoShort: Build G2 Twoshort

10) sketchwick: Discover G1 Sketchwick Y2 Smith
	sketchwick: Oh, hi!  I just saw your greeting.  :)


11) TwoShort: Move G1 Yolonda Smith

12) sketchwick: Trade G2 R2 Sketchwick

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Smith
Build G2 Yolonda
Build G3 Twoshort

14) sketchwick: Move R2 Sketchwick Smith

15) TwoShort: Sacrifice G3 Twoshort
Build G3 Yolonda
Build G3 Twoshort
Build G3 Twoshort

16) sketchwick: Attack G2N Smith

17) TwoShort: Move G1 Yolonda Smith
Catastrophe Smith Green

18) sketchwick: Move R2 Smith Yolonda

19) TwoShort: Trade G2 R2 Twoshort

20) sketchwick: Discover R2 Yolonda Y2 Notgoingwell

21) TwoShort: Move G3 Yolonda Notgoingwell

22) sketchwick: Move R2 Notgoingwell Sketchwick

23) TwoShort: Sacrifice G3 Twoshort
Build G1 Twoshort
Build G1 Yolonda
Build G1 Notgoingwell

24) sketchwick: Trade R2 G2 Sketchwick

25) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yolonda
Build G3 Twoshort

26) sketchwick: Build Y1 Sketchwick

27) TwoShort: Trade G3 Y3 Twoshort

28) sketchwick: Build G3 Sketchwick

29) TwoShort: Discover G2 Yolonda Y2 Goingfine

30) sketchwick: Discover Y1 Sketchwick R2 Notdead

31) TwoShort: Move G1 Notgoingwell Sketchwick

32) sketchwick: Sacrifice G2 Sketchwick
Build Y1 Notdead
Build Y2 Sketchwick

33) TwoShort: Sacrifice G2 Goingfine
Build G2 Sketchwick
Build G2 Sketchwick
Catastrophe Sketchwick Green

34) sketchwick: Trade Y3 G3 Sketchwick

35) TwoShort: Discover G3 Yolonda B2 Yet

36) sketchwick: Discover Y1 Notdead B3 Ox

37) TwoShort: Trade G3 Y3 Yet

38) sketchwick: Trade Y2 G2 Sketchwick

39) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Yet Sketchwick
Move G3 Notgoingwell Sketchwick
Pass
	TwoShort: I think I had you back when I gained the upper hand on 3 pointers, but you've held me off for an impressively long time.  Now, however, I'm afraid the end is nigh...

40) sketchwick: Attack Y3N Sketchwick

41) TwoShort: Sacrifice R2 Twoshort
Attack G3 Sketchwick
Attack Y3 Sketchwick
	sketchwick: glad I was impressive in SOME way, I'm very inexperienced...I hadn't thought of the power of moving in two big ships when you have at least an r2

	TwoShort: Well, I hope you'll keep playing; you're obviously good at thinking through the posibilities a couple moves in advance; just need to work on your early game.
	TwoShort: A couple tips:  1) Red is the least useful color.  Optimally, I never take red except for a single two point ship the turn after my opponent takes red, or the turn before I'm threatening to use it.  2) The early game is about getting 3 pointers.  A significant disadvantage in 3 pointer count is usually insurmountable.


2627)
Started: 2006.3.2, Ended: 2006.4.15
Participants: sketchwick (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld G3 B2 Y3
	Jesse: Hello.  How's it going?

2) sketchwick: Homeworld B1 R2 G3

3) Jesse: Build Y1 Jesse
	Jesse: You should probably go read the strategy tips for beginners on the wiki, if you haven't.  Most experienced players prefer not to choose a red system marker.  (Or maybe I assume too much, and you have some particular strategy in mind.)

4) sketchwick: Build G1 Sketchwick
	sketchwick: I never read any tips, just played a lot of games with jeep as we were both learning.  Forgive me if I don't present a challenge

5) Jesse: Trade Y1 G1 Jesse
	Jesse: It's no problem.  Would you like some coaching?

6) sketchwick: Trade G1 Y1 Sketchwick
	sketchwick: I'm always open to hearing ideas

7) Jesse: Build Y1 Jesse
	Jesse: For one thing, it's generally not considered a good idea to use red for one of your system markers.  It doesn't help you early on, it can't be sacrificed to use the power in another system (so you still need a red ship somewhere when your opponent gets a red ship), and when your opponent does invade your system, you both have access to the red power.
	Jesse: On the other hand, it does make it possible for you to freely choose between maintaining either a large green or a large yellow at your homeworld (or, later, both), both of which can be quite useful.

8) sketchwick: Build G1 Sketchwick
	sketchwick: Yeah, it's the other hand that made me choose it...you first comment made it sound like you could sacrifice stars...if this is true I'm unaware of the rule.

9) Jesse: Trade Y1 B1 Jesse
	Jesse: No, you can't sacrifice stars.  That was the point.  Because you can't, it can only help you in your home system.  Once I get into red ships, you'll still need red ships of your own, to protect yourself elsewhere.

10) sketchwick: Discover G1 Sketchwick B3 Ox

11) Jesse: Discover G1 Jesse B1 Gateway

12) sketchwick: Build G1 Sketchwick

13) Jesse: Build G2 Gateway

14) sketchwick: Sacrifice G3 Sketchwick
Build G2 Ox
Build G2 Ox
Build G3 Sketchwick

15) Jesse: Build B2 Jesse

16) sketchwick: Trade G3 Y3 Sketchwick

17) Jesse: Trade G1 Y1 Gateway

18) sketchwick: Trade G2 B2 Ox

19) Jesse: Trade B2 R2 Jesse

20) sketchwick: Trade G2 R2 Ox

21) Jesse: Build G1 Gateway

22) sketchwick: Build G2 Ox

23) Jesse: Discover G1 Gateway Y3 Oort

24) sketchwick: Trade G1 Y1 Ox

25) Jesse: Build Y2 Jesse

26) sketchwick: Build Y2 Ox

27) Jesse: Discover Y2 Jesse G1 Peggys

28) sketchwick: Move B2 Ox Gateway

29) Jesse: Discover G2 Gateway Y2 Core

30) sketchwick: Build G2 Ox

31) Jesse: Build G3 Core

32) sketchwick: Build G3 Sketchwick

33) Jesse: Sacrifice G1 Oort
Build Y3 Peggys

34) sketchwick: Sacrifice Y3 Sketchwick
Move Y2 Ox Peggys
Move Y1 Ox Peggys
Move G2 Ox Core
Catastrophe Peggys Yellow

35) Jesse: Sacrifice B1 Jesse
Trade G3 B3 Core

36) sketchwick: Build R1 Ox

37) Jesse: Build R1 Jesse

38) sketchwick: Move G2 Core Gateway

39) Jesse: Discover Y1 Gateway G3 Neptune
	sketchwick: Do you know you will win at this point?
	Jesse: No, the result is definitely not settled.

40) sketchwick: Trade G2 Y2 Ox

41) Jesse: Build G1 Core
	sketchwick: Maybe I'm only good enough to see the advantages you've gained, but not good enough to see my own...
	Jesse: Well, you have a factory and fairly well distributed pieces.  The factory isn't operational right now, but once the greens run out you'll have a production advantage if I can't put a stop to it.  For that reason, I think your last move really plays against your strength.  It gives me a chance to get more greens with which to threaten you.

42) sketchwick: Discover R2 Ox Y1 Cart

43) Jesse: Discover G2 Core Y3 Foodfactory
	sketchwick: Man I should ask you to explain my stengths BEFORE I move.  ;)

44) sketchwick: Sacrifice G2 Gateway
Build R1 Cart
Build R3 Ox

45) Jesse: Discover R1 Jesse G1 Chon
	Jesse: On the other hand, that's not half bad, either.  I should have given more thought to this possibility.  <sigh>  Did you notice that this is a difficult game?  :)
	sketchwick: I'm sure you've played a LOT more games than I have...jeep and I learned about the same time if not exactly the same, so our first few games weren't very complicated.  :)
	Jesse: It can get very complicated.  I'm definitely going to have to think a bit more on this one...

46) sketchwick: Sacrifice G3 Sketchwick
Build G2 Sketchwick
Build Y2 Ox
Build Y3 Sketchwick

47) Jesse: Sacrifice G2 Foodfactory
Build Y3 Neptune
Build R3 Chon
	sketchwick: so paranoid I'll miuss somehting huge at this stage


48) sketchwick: Move R1 Ox Chon
	Jesse: It's a very difficult part of the game.  You should definitely be careful.

49) Jesse: Build R3 Jesse
	sketchwick: bleh bleh bleh
sigh

50) sketchwick: Sacrifice Y2 Ox
Move R1 Cart Jesse
Move R2 Cart Jesse
Catastrophe Jesse Red

51) Jesse: Sacrifice R1 Chon
Attack R1 Chon

52) sketchwick: Trade B2 Y2 Gateway

53) Jesse: Build G2 Core

54) sketchwick: Sacrifice G2 Sketchwick
Build G2 Sketchwick
Build Y1 Gateway

55) Jesse: Sacrifice Y3 Neptune
Move R3 Chon Jesse
Move Y3 Jesse Chon
Discover G2 Core Y3 Wheel
	sketchwick: Ok so do you know you win NOW?  4 big ships is daunting :(
	Jesse: Turning the tables will be a difficult task for you, but there's still a lot for me to do, and it's easy to make a misstep.  One clever sneak-attack from you, and I could be done for.  (I've got my eye on those Gateway ships, buddy.)

56) sketchwick: Move G2 Sketchwick Neptune

57) Jesse: Sacrifice G2 Wheel
Build G2 Core
Build Y3 Neptune

58) sketchwick: Build G2 Neptune

59) Jesse: Sacrifice Y3 Neptune
Discover G2 Core Y3 Wheel
Discover Y1 Neptune B1 Kugelblitz
Move G1 Core Neptune
Catastrophe Neptune G

60) sketchwick: Build G1 Sketchwick

61) Jesse: Build G2 Wheel

62) sketchwick: Sacrifice Y2 Ox
Move G1 Sketchwick Wheel
Move G1 Sketchwick Wheel
Catastrophe Wheel Green

63) Jesse: Build Y2 Chon

64) sketchwick: Trade Y3 G3 Sketchwick

65) Jesse: Discover B3 Core Y3 Wheel

66) sketchwick: Build G1 Sketchwick

67) Jesse: Trade Y1 G1 Kugelblitz

68) sketchwick: Sacrifice Y1 Gateway
Move R3 Ox Kugelblitz

69) Jesse: Sacrifice G1 Kugelblitz
Build B2 Wheel

70) sketchwick: Discover Y2 Gateway G3 Momma

71) Jesse: Trade B2 G2 Wheel

72) sketchwick: Move G1 Sketchwick Wheel

73) Jesse: Sacrifice R1 Chon
Attack G1 Wheel

74) sketchwick: Sacrifice Y1 Sketchwick
Move R3 Kugelblitz Wheel

75) Jesse: Sacrifice Y2 Chon
Move Y3 Chon Jesse
Move G1 Wheel Sketchwick
	Jesse: That was kind of evil.  It took some searching, but I believe I have an answer you won't like one bit.

76) sketchwick: Sacrifice Y2 Momma
Move R3 Wheel Sketchwick
Discover G3 Sketchwick Y3 Sigh

77) Jesse: Sacrifice G1 Sketchwick
Build G1 Wheel

78) sketchwick: Build G1 Sigh

79) Jesse: Build B1 Wheel

80) sketchwick: Move G3 Sigh Sketchwick

81) Jesse: Build Y1 Jesse

82) sketchwick: Build G1 Sketchwick

83) Jesse: Sacrifice Y3 Jesse
Move G2 Wheel Sketchwick
Move G1 Wheel Sketchwick
Pass
Catastrophe Sketchwick G

84) sketchwick: Move G1 Sigh Sketchwick

85) Jesse: Trade B3 G3 Wheel

86) sketchwick: Build R1 Sketchwick

87) Jesse: Build R1 Jesse

88) sketchwick: Trade R1 Y1 Sketchwick

89) Jesse: Discover R1 Jesse G1 Lever

	Jesse: Well, thank you for a good game.  It didn't work out for you this time, but you've shown me that the red-blue homeworld has more value than I had given it credit for.  I'm trying it out for myself in a couple of games, now.


2602)
Started: 2006.3.2, Ended: 2006.3.27
Participants: sketchwick (S), andylooney (N)
Winner: sketchwick

1) andylooney: Homeworld B1 G2 Y3

2) sketchwick: Homeworld Y3 B1 G3

3) andylooney: Build Y1 Andylooney

4) sketchwick: Build G1 Sketchwick

5) andylooney: Trade Y1 G1 Andylooney

6) sketchwick: Trade G1 R1 Sketchwick

7) andylooney: Build G1 Andylooney

8) sketchwick: Build R1 Sketchwick

9) andylooney: Trade G1 R1 Andylooney

10) sketchwick: Build R2 Sketchwick

11) andylooney: Build R2 Andylooney

12) sketchwick: Discover R1 Sketchwick B2 Berry

13) andylooney: Discover G1 Andylooney Y3 Clampett

14) sketchwick: Build G1 Sketchwick

15) andylooney: Discover R1 Andylooney G3 Garden

16) sketchwick: Trade R1 G1 Berry

17) andylooney: Build G2 Clampett

18) sketchwick: Sacrifice G3 Sketchwick
Build G2 Sketchwick
Build G3 Sketchwick
Build G3 Berry

19) andylooney: Discover G1 Clampett Y2 Plugh

20) sketchwick: Move G2 Sketchwick Plugh
	sketchwick: that was handy...do you know how the undo feature works on SDG?  once per game or something?



2720)
Started: 2006.3.6, Ended: 2006.3.7
Participants: feidoi (S), jlabrozzi (N)
Winner: feidoi

1) jlabrozzi: Homeworld G1 B2 Y3

2) feidoi: Homeworld G3 B2 R3
	jlabrozzi: 
	jlabrozzi: 

3) jlabrozzi: Build Y1 Jlabrozzi

4) feidoi: Build R1 Feidoi
	jlabrozzi: go

5) jlabrozzi: Trade Y1 G1 Jlabrozzi

6) feidoi: Trade R1 Y1 Feidoi
	jlabrozzi: 

7) jlabrozzi: Discover Y3 Jlabrozzi R3 Kansas

8) feidoi: Build Y1 Feidoi

9) jlabrozzi: Build G1 Jlabrozzi

10) feidoi: Discover Y1 Feidoi Y1 Shimina

11) jlabrozzi: Build G2 Jlabrozzi

12) feidoi: Build Y2 Feidoi
Catastrophe Jlabrozzi Green



2727)
Started: 2006.3.7, Ended: 2006.3.7
Participants: feidoi (S), jlabrozzi (N)
Winner: jlabrozzi

1) jlabrozzi: Pass

2) feidoi: Homeworld Y1 B3 G3

3) jlabrozzi: Homeworld Y2 G3 B3

4) feidoi: Build G1 Feidoi

5) jlabrozzi: Build B1 Jlabrozzi

6) feidoi: Discover G1 Feidoi Y2 Shimina

7) jlabrozzi: Trade B1 Y1 Jlabrozzi

8) feidoi: Build G1 Feidoi

9) jlabrozzi: Build B1 Jlabrozzi

10) feidoi: Trade G1 Y1 Feidoi

11) jlabrozzi: Trade B1 R1 Jlabrozzi

12) feidoi: Build Y2 Feidoi

13) jlabrozzi: Build Y3 Jlabrozzi

14) feidoi: Move Y2 Feidoi Shimina

15) jlabrozzi: Discover Y1 Jlabrozzi R1 Stankonia

16) feidoi: Move Y2 Shimina Stankonia

17) jlabrozzi: Build B1 Jlabrozzi

18) feidoi: Attack Y1 Stankonia

19) jlabrozzi: Build R1 Jlabrozzi

20) feidoi: Build Y3 Feidoi

21) jlabrozzi: Move Y3 Jlabrozzi Stankonia

22) feidoi: Sacrifice Y3 Feidoi
Move Y1 Feidoi Shimina
Move Y2 Stankonia Jlabrozzi
Move Y1 Stankonia Jlabrozzi

23) jlabrozzi: Attack Y2S Jlabrozzi

24) feidoi: Sacrifice G1 Shimina
Build Y3 Jlabrozzi

25) jlabrozzi: Sacrifice Y2 Jlabrozzi
Move Y3 Stankonia Shimina
Move Y3 Shimina Feidoi

26) feidoi: Sacrifice Y3 Jlabrozzi
Discover Y1 Jlabrozzi R1 Fu
Move Y1 Fu Shimina
Move Y1 Shimina Feidoi

27) jlabrozzi: Sacrifice R1 Jlabrozzi
Attack G3 Feidoi

28) feidoi: Move Y1 Shimina Feidoi

29) jlabrozzi: Sacrifice G3 Feidoi
Build Y2 Feidoi
Build Y2 Feidoi
Build Y3 Feidoi
Catastrophe Feidoi Y



2665)
Started: 2006.3.7, Ended: 2006.3.11
Participants: sketchwick (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) sketchwick: Homeworld Y1 B3 G3

3) TwoShort: Build G1 Twoshort

4) sketchwick: Build G1 Sketchwick

5) TwoShort: Discover G1 Twoshort Y3 Yolonda

6) sketchwick: Discover G1 Sketchwick Y2 Again

7) TwoShort: Build G1 Twoshort

8) sketchwick: Build G2 Sketchwick
	sketchwick: is this going badly for me?

9) TwoShort: Discover G1 Twoshort B3 Bluestar
	TwoShort: Not so far.  A quick rundown of my thinking at this point: I'd like to use the "Factory": sacrifice a g3 to grow 3 peices, including the same g3 you sacrificed in the first place.  I could do it now to grab both g2s, but that would let you get the remaining g3, which is what we're really after.  So I could grow one g2, but then you could factory and again get the G3.  So I won't grow, and must move or trade.  

10) sketchwick: Build G2 Again

11) TwoShort: Trade G1 Y1 Bluestar
	sketchwick: Oh, do you know how undo works on SDG?  Once per game or something?
	TwoShort: I beleive it is once per game.

12) sketchwick: Discover G1 Again G1 Good
	TwoShort: Continuing my series of tips, the technique I'm demostrating now is called "Blowing It".  Sigh.

13) TwoShort: Build G2 Twoshort

14) sketchwick: Build G3 Again

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y2 Bluestar
Build G3 Twoshort

16) sketchwick: Trade G2 R2 Sketchwick
	TwoShort: Switching to plan B...

17) TwoShort: Sacrifice Y2 Bluestar
Discover Y2 Bluestar B2 Bomber
Discover Y1 Bluestar Y2 Denial
	sketchwick: I thought you'd do that, but no clue how I should respond
	TwoShort: I might have moved the large green to a blue system.  But taking a red is not a bad choice as evidenced by the fact I'm not sure what to do in response.  Andy Looneys "draw your gun" rule says to always immediately take red when your opponent does.  It's a good rule; and while I sometimes ignore it, I often regret doing so.

18) sketchwick: Trade G3 Y3 Sketchwick
	TwoShort: By the way, on the undo, I now beleive it is once per move, which makes more sense...  one could of course ask Aaron for the definitive answer...

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Twoshort
Build Y3 Bomber

20) sketchwick: Sacrifice Y3 Sketchwick
Move G2 Again Sketchwick
Move G3 Again Yolonda
Move G3 Yolonda Twoshort

21) TwoShort: Sacrifice Y3 Bomber
Move G1 Yolonda Twoshort
Discover Y2 Bomber R3 Desperation
Move Y2 Desperation Twoshort
Catastrophe Twoshort Green
	TwoShort: Gack!  Why do I insist on ignoring the Gun rule?  Did I mention I often regret it?  

22) sketchwick: Move R2 Sketchwick Denial
	sketchwick: yeah, I didn't even see you could get out of it.

shucks

23) TwoShort: Sacrifice G2 Yolonda
Build Y2 Twoshort
Build Y3 Denial
	TwoShort: Well, I didn't see it at all, so being able to get out of it was just lucky

24) sketchwick: Discover R2 Denial Y3 Bleh

25) TwoShort: Trade Y2 R2 Twoshort

26) sketchwick: Trade G2 Y2 Sketchwick

27) TwoShort: Move Y3 Denial Sketchwick

28) sketchwick: Sacrifice G1 Good
Build Y3 Sketchwick
Catastrophe Sketchwick Yellow



2749)
Started: 2006.3.8, Ended: 2006.3.9
Participants: jlabrozzi (S), feidoi (N)
Winner: feidoi

1) feidoi: Homeworld B1 G2 Y3

2) jlabrozzi: Homeworld B3 Y2 G3

3) feidoi: Build Y1 Feidoi

4) jlabrozzi: Build G1 Jlabrozzi

5) feidoi: Build Y1 Feidoi

6) jlabrozzi: Build G1 Jlabrozzi

7) feidoi: Trade Y1 G1 Feidoi

8) jlabrozzi: Trade G1 R1 Jlabrozzi

9) feidoi: Build G1 Feidoi

10) jlabrozzi: Build R1 Jlabrozzi

11) feidoi: Trade G1 R1 Feidoi

12) jlabrozzi: Trade G1 Y1 Jlabrozzi

13) feidoi: Build R2 Feidoi

14) jlabrozzi: Build G1 Jlabrozzi

15) feidoi: Build R2 Feidoi

16) jlabrozzi: Discover Y1 Jlabrozzi B1 Egypt

17) feidoi: Discover R2 Feidoi G3 Fool

18) jlabrozzi: Move G3 Jlabrozzi Egypt

19) feidoi: Build R2 Fool

20) jlabrozzi: Trade G3 R3 Egypt

21) feidoi: Sacrifice Y1 Feidoi
Discover R2 Fool Y1 Istanbul

22) jlabrozzi: Move R1 Jlabrozzi Egypt

23) feidoi: Move R2 Istanbul Jlabrozzi

24) jlabrozzi: Move R3 Egypt Jlabrozzi

25) feidoi: Sacrifice G1 Feidoi
Build R3 Jlabrozzi
Catastrophe Jlabrozzi Red

26) jlabrozzi: Move R1 Egypt Jlabrozzi

27) feidoi: Build Y1 Feidoi

28) jlabrozzi: Build R1 Jlabrozzi

29) feidoi: Sacrifice Y1 Feidoi
Move R2 Fool Egypt

30) jlabrozzi: Build R2 Jlabrozzi

31) feidoi: Sacrifice Y3 Feidoi
Discover R1 Feidoi Y3 Fool2
Move R1 Fool2 Egypt
Move R1 Egypt Jlabrozzi
Catastrophe Jlabrozzi Red

32) jlabrozzi: Build G1 Jlabrozzi

33) feidoi: Attack Y1 Egypt

34) jlabrozzi: Build G1 Jlabrozzi

35) feidoi: Move R2 Egypt Jlabrozzi



2691)
Started: 2006.3.11, Ended: 2006.5.23
Participants: Uglyfoot (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld Y1 B2 G3

2) Uglyfoot: Homeworld G3 B1 Y3

3) andylooney: Build G1 Andylooney

4) Uglyfoot: Build Y1 Uglyfoot

5) andylooney: Discover G1 Andylooney Y3 Clampett

6) Uglyfoot: Trade Y1 G1 Uglyfoot
	Uglyfoot: Welcome back!  Was it a good trip?


7) andylooney: Build G1 Andylooney

8) Uglyfoot: Build G2 Uglyfoot

9) andylooney: Trade G1 Y1 Andylooney

10) Uglyfoot: Discover G2 Uglyfoot B2 Centauri

11) andylooney: Discover Y1 Andylooney G3 Garden

12) Uglyfoot: Build Y1 Uglyfoot

13) andylooney: Build Y2 Garden

14) Uglyfoot: Trade Y1 R1 Uglyfoot

15) andylooney: Build G1 Andylooney

16) Uglyfoot: Build G2 Centauri

17) andylooney: Trade G1 R1 Andylooney

18) Uglyfoot: Trade G2 Y2 Centauri

19) andylooney: Discover Y1 Garden G2 Greendome

20) Uglyfoot: Build G1 Centauri

21) andylooney: Build G2 Andylooney

22) Uglyfoot: Move G2 Centauri Clampett

23) andylooney: Discover G1 Clampett Y2 Yellowdoor

24) Uglyfoot: Trade G1 R1 Uglyfoot

25) andylooney: Build R2 Andylooney

26) Uglyfoot: Build R2 Uglyfoot

27) andylooney: Discover G2 Andylooney Y3 Thurston

28) Uglyfoot: Move R2 Uglyfoot Yellowdoor

29) andylooney: Discover G1 Yellowdoor R3 Bigred

30) Uglyfoot: Move R2 Yellowdoor Clampett

31) andylooney: Build G1 Andylooney

32) Uglyfoot: Build R2 Clampett

33) andylooney: Trade R1 B1 Andylooney

34) Uglyfoot: Move R2 Clampett Greendome

35) andylooney: Discover Y1 Greendome B1 Bomber

36) Uglyfoot: Build Y1 Centauri

37) andylooney: Sacrifice G3 Andylooney
Build G3 Andylooney
Build Y2 Bomber
Build B2 Andylooney

38) Uglyfoot: Build R1 Clampett

39) andylooney: Sacrifice G2 Thurston
Build Y3 Garden
Build R3 Andylooney

40) Uglyfoot: Sacrifice Y2 Centauri
Move R1 Clampett Andylooney
Move R2 Clampett Andylooney
Catastrophe Andylooney Red

41) andylooney: Trade Y1 R1 Bomber

42) Uglyfoot: Build G2 Clampett

43) andylooney: Move B2 Andylooney Garden

44) Uglyfoot: Move G2 Clampett Andylooney

45) andylooney: Sacrifice G3 Andylooney
Build G3 Bigred
Build B3 Andylooney
Build R2 Bomber

46) Uglyfoot: Sacrifice R1 Uglyfoot
Attack B1 Andylooney

47) andylooney: Trade B3 R3 Andylooney

48) Uglyfoot: Sacrifice G2 Clampett
Build B3 Andylooney
Build B3 Andylooney
Catastrophe Andylooney B

49) andylooney: Attack G2S Andylooney

50) Uglyfoot: Build G2 Centauri
	andylooney: Nice job! (But now I must promise revenge...)

51) andylooney: Discover G2 Andylooney Y3 Thurston

52) Uglyfoot: Build R1 Greendome

53) andylooney: Sacrifice G3 Bigred
Build G3 Bigred
Build R2 Bomber
Build R3 Andylooney

54) Uglyfoot: Sacrifice Y1 Centauri
Move R1 Greendome Bomber
Catastrophe Bomber R

55) andylooney: Move R3 Andylooney Centauri

56) Uglyfoot: Sacrifice G2 Centauri
Build R1 Uglyfoot
Build R1 Greendome

57) andylooney: Attack G1S Centauri

58) Uglyfoot: Build R2 Greendome

59) andylooney: Sacrifice G3 Bigred
Build G2 Centauri
Build R2 Centauri
Build G3 Andylooney

60) Uglyfoot: Build Y1 Uglyfoot

61) andylooney: Move Y2 Garden Centauri

62) Uglyfoot: Move R1 Uglyfoot Centauri

63) andylooney: Sacrifice Y2 Bomber
Move R2 Centauri Thurston
Move R2 Thurston Greendome
Catastrophe Greendome Red

64) Uglyfoot: Attack G1 Centauri

65) andylooney: Sacrifice G2 Centauri
Build Y1 Garden
Build Y2 Centauri

66) Uglyfoot: Trade Y3 B3 Uglyfoot

67) andylooney: Sacrifice G3 Andylooney
Build G2 Andylooney
Build G2 Bigred
Build G3 Thurston

68) Uglyfoot: Build R1 Centauri

69) andylooney: Sacrifice R3 Centauri
Attack R1S Centauri
Attack R1S Centauri
Attack G1S Centauri
	Uglyfoot: hogging all the green?  (too)

70) Uglyfoot: Build Y2 Uglyfoot

71) andylooney: Discover G2 Andylooney Y3 Clampett

72) Uglyfoot: Build R2 Uglyfoot

73) andylooney: Build R2 Andylooney

74) Uglyfoot: Move R1 Uglyfoot Centauri

75) andylooney: Attack R1S Centauri

76) Uglyfoot: Move R2 Uglyfoot Centauri
Catastrophe Centauri R

77) andylooney: Sacrifice Y2 Centauri
Move G3 Thurston Centauri
Move G3 Centauri Uglyfoot

78) Uglyfoot: Build Y2 Uglyfoot

79) andylooney: Sacrifice R3 Andylooney
Attack Y2S Uglyfoot
Attack Y2S Uglyfoot
Attack B3S Uglyfoot
	Uglyfoot: good game!




2799)
Started: 2006.3.18, Ended: 2006.3.30
Participants: ts52 (S), Uglyfoot (N)
Winner: ts52

1) Uglyfoot: Homeworld B2 Y1 G3

2) ts52: Homeworld Y3 B1 G3

3) Uglyfoot: Build G1 Uglyfoot
	ts52: Good luck!

4) ts52: Build G1 Ts52

5) Uglyfoot: Discover G1 Uglyfoot B3 Aquarius

6) ts52: Discover G1 Ts52 B2 R2d2
	Uglyfoot: Thanks.  Win or lose, it will be fun.

	ts52: Exactly. I'm so glad Aaron set this up. Now I can play so much more Homeworlds.

7) Uglyfoot: Build G1 Aquarius

8) ts52: Build G2 R2d2

9) Uglyfoot: Build G2 Uglyfoot

10) ts52: Trade G1 Y1 R2d2

11) Uglyfoot: Trade G1 R1 Aquarius

12) ts52: Build G1 Ts52

13) Uglyfoot: Build G1 Aquarius

14) ts52: Sacrifice G3 Ts52
Build G2 R2d2
Build G3 Ts52
Build G3 R2d2

15) Uglyfoot: Trade G1 Y1 Aquarius

16) ts52: Trade G2 R2 R2d2

17) Uglyfoot: Build Y2 Aquarius

18) ts52: Discover G2 R2d2 Y3 Sol

19) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Aquarius
Build G2 Aquarius
Build G3 Uglyfoot

20) ts52: Move G3 R2d2 Aquarius
Catastrophe Aquarius Green

21) Uglyfoot: Move G2 Uglyfoot Aquarius

22) ts52: Build G1 Sol

23) Uglyfoot: Build G1 Uglyfoot

24) ts52: Move G1 Sol R2d2

25) Uglyfoot: Build G2 Aquarius

26) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Sol
Build R1 R2d2

27) Uglyfoot: Trade G1 R1 Uglyfoot

28) ts52: Build Y2 R2d2

29) Uglyfoot: Discover G2 Aquarius R2 Battlestar

30) ts52: Sacrifice Y2 R2d2
Move G2 Sol Uglyfoot
Move G3 Sol Uglyfoot

31) Uglyfoot: Attack G3S Uglyfoot

32) ts52: Sacrifice R1 R2d2
Attack R1 Uglyfoot

33) Uglyfoot: Trade G3 Y3 Uglyfoot

34) ts52: Trade G1 R1 Ts52

35) Uglyfoot: Move Y1 Aquarius Battlestar

36) ts52: Sacrifice G3 Ts52
Build R2 Ts52
Build R3 Uglyfoot
Build R3 Uglyfoot

37) Uglyfoot: Move R1 Aquarius Uglyfoot
Catastrophe Uglyfoot R

38) ts52: Build G1 Uglyfoot

39) Uglyfoot: Build G1 Uglyfoot
Catastrophe Uglyfoot G

40) ts52: Build G1 R2d2

41) Uglyfoot: Build Y2 Battlestar

42) ts52: Move G1 R2d2 Ts52

43) Uglyfoot: Trade Y3 G3 Uglyfoot

44) ts52: Move R2 R2d2 Aquarius

45) Uglyfoot: Sacrifice Y2 Battlestar
Move G2 Aquarius R2d2
Move Y2 Aquarius Uglyfoot

46) ts52: Build Y2 R2d2

47) Uglyfoot: Build Y2 Battlestar

48) ts52: Sacrifice R1 Ts52
Attack G2 R2d2

49) Uglyfoot: Build Y3 Battlestar

50) ts52: Sacrifice Y2 R2d2
Move Y1 R2d2 Aquarius
Move Y1 Aquarius Battlestar
Catastrophe Battlestar Yellow

51) Uglyfoot: Build G1 Uglyfoot

52) ts52: Trade G1 Y1 R2d2

53) Uglyfoot: Discover G1 Uglyfoot Y3 Portal

54) ts52: Build G1 R2d2

55) Uglyfoot: Build Y1 Uglyfoot

56) ts52: Build Y2 R2d2

57) Uglyfoot: Trade Y1 R1 Uglyfoot

58) ts52: Move G1 R2d2 Aquarius

59) Uglyfoot: Build G2 Uglyfoot

60) ts52: Build G3 Ts52

61) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Battlestar
Build Y1 Uglyfoot

62) ts52: Sacrifice Y2 R2d2
Move Y1 R2d2 Aquarius
Move Y1 Aquarius Uglyfoot
Catastrophe Uglyfoot Yellow

63) Uglyfoot: Trade G3 Y3 Uglyfoot

64) ts52: Build G3 R2d2

65) Uglyfoot: Sacrifice Y3 Uglyfoot
Move G2 Battlestar Ts52
Move G2 Uglyfoot Ts52
Move G1 Portal Uglyfoot
Catastrophe Ts52 G

66) ts52: Trade G1 Y1 Aquarius

67) Uglyfoot: Build G1 Battlestar

68) ts52: Move R2 Aquarius Uglyfoot

69) Uglyfoot: Build G1 Uglyfoot

70) ts52: Attack R1 Uglyfoot

71) Uglyfoot: Build G2 Uglyfoot

72) ts52: Attack G2 Uglyfoot
	Uglyfoot: Thank you for the game.


73) Uglyfoot: Build G2 Uglyfoot

74) ts52: Build G3 R2d2
Catastrophe Uglyfoot Green



2909)
Started: 2006.3.27, Ended: 2006.4.13
Participants: Lexicon (S), Cerulean (N)
Winner: Lexicon

1) Cerulean: Homeworld G2 B1 Y3

2) Lexicon: Homeworld G1 B3 Y3

3) Cerulean: Build Y1 Cerulean

4) Lexicon: Build Y1 Lexicon

5) Cerulean: Discover Y1 Cerulean G3 Edison

6) Lexicon: Trade Y1 G1 Lexicon

7) Cerulean: Build Y1 Cerulean

8) Lexicon: Build G1 Lexicon

9) Cerulean: Trade Y1 B1 Cerulean

10) Lexicon: Discover G1 Lexicon Y2 Coffee

11) Cerulean: Build Y1 Edison

12) Lexicon: Build G2 Coffee

13) Cerulean: Move B1 Cerulean Edison

14) Lexicon: Build G2 Lexicon

15) Cerulean: Trade Y1 R1 Edison

16) Lexicon: Build G3 Coffee

17) Cerulean: Move R1 Edison Coffee

18) Lexicon: Discover G1 Coffee R3 Tea

19) Cerulean: Move R1 Coffee Edison

20) Lexicon: Trade G2 B2 Lexicon

21) Cerulean: Build Y1 Cerulean

22) Lexicon: Sacrifice G3 Coffee
Build G2 Tea
Build G3 Lexicon
Build G3 Coffee

23) Cerulean: Discover B1 Edison R2 Kennedy

24) Lexicon: Sacrifice Y3 Lexicon
Move G1 Tea Cerulean
Move G2 Tea Cerulean
Move B2 Lexicon Coffee

25) Cerulean: Sacrifice Y1 Edison
Move B1 Kennedy Lexicon

26) Lexicon: Sacrifice B2 Coffee
Trade G1 Y1 Cerulean
Trade G2 Y2 Cerulean
Catastrophe Cerulean Yellow

	Lexicon: Heh.  Good game. ;)


2668)
Started: 2006.3.30, Ended: 2006.4.19
Participants: jeep (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3
	Jesse: Back for another round?  Excellent!

2) jeep: Homeworld Y1 B3 G3
	jeep: Uh oh, Red in your homeworld...

3) Jesse: Build G1 Jesse
	Jesse: Well, I saw from my game with sketchwick that it has some interesting properties, so I thought I'd experiment with it a bit.

4) jeep: Build G1 Jeep
	jeep: Yeah, Sketch destryed me with it.  ;)

5) Jesse: Trade G1 Y1 Jesse

6) jeep: Trade G3 Y3 Jeep

7) Jesse: Build G1 Jesse

8) jeep: Build G1 Jeep

9) Jesse: Discover G1 Jesse Y3 Ichi

10) jeep: Discover G1 Jeep B2 Moon

11) Jesse: Build G2 Jesse

12) jeep: Build Y1 Jeep

13) Jesse: Build Y2 Jesse

14) jeep: Move Y1 Jeep Moon

15) Jesse: Trade G2 R2 Jesse

16) jeep: Trade G1 R1 Moon

17) Jesse: Discover Y2 Jesse G3 Ni

18) jeep: Build G1 Jeep

19) Jesse: Build G2 Jesse

20) jeep: Trade G1 R1 Jeep

21) Jesse: Move R2 Jesse Ni

22) jeep: Build R2 Jeep

23) Jesse: Build Y2 Ni
	jeep: Sorry for the delay there...

24) jeep: Build G1 Jeep

25) Jesse: Build G2 Ichi

26) jeep: Move R2 Jeep Moon

27) Jesse: Discover G1 Ichi B2 San

28) jeep: Sacrifice G1 Jeep
Build Y2 Moon

29) Jesse: Build Y3 Jesse

30) jeep: Trade R2 G2 Moon

31) Jesse: Sacrifice G3 Jesse
Build G1 Ichi
Build G3 San
Build G3 Jesse
	jeep: That was a silly mistake last move, eh?  Still, I'm getting so far behind in my games against you... Guess, I'm just not seeing it yet.
	Jesse: It was kind of a silly mistake.  It would have been difficult to avoid me getting the y3 anyway, though, since I could sacrifice (or use my factory) for it when the time was right.
	Jesse: It's also difficult for you to avoid me getting that last g3, since I've been working towards factorying that one up, too.  Removing that g2 from the stash makes that possible now.

32) jeep: Build R2 Jeep
	Jesse: Sometimes, if you want to stop something like that, you need to remove the large piece from the stash by discovering it as a new system marker.  I thought you might park your r2 on it, for instance.  That would keep me from using it as a ship.  Unfortunately, it would also give you some positional problems.
	Jesse: At this point, I have much better production capacity than you, on account of my factories.  On the other hand, you are better positioned to produce red ships.  You may be able to make it difficult for me to actually produce anything without it getting clobbered.

33) Jesse: Move Y2 Ni San
	jeep: Yeah, I've felt under the gun from the get go.  I have a hard time getting a strategy working for me early.  I'm probably too hesitant to commit to one.  Trying to be too reactive.  I'll have to consider it next time.
	Jesse: It's usually not so much about about committing to a strategy, as keeping your strategy flexible.  If you plan for multiple contingencies, you can have a main plan that allows you to not only react to your opponent's plays, but do so to your own benefit.  Sometimes it doesn't work out that way, but it will happen more often as you learn common contingencies to plan for, and things to avoid that make your fleet inflexible.

34) jeep: Build R2 Moon
	Jesse: One danger to watch for right now is that your large defender is the same color as one of your system markers, putting you in danger of losing both at once.  Unfortunately, changing it gives you problems, as well.

35) Jesse: Build R3 Ni
	jeep: At least I think I learned something new this time...

36) jeep: Sacrifice Y2 Moon
Move R1 Moon Ni
Move R2 Moon Ni
Catastrophe Ni Red

37) Jesse: Build Y2 San
	Jesse: Did you intend to blast me (catastrophe)?  If not, your plan is either too subtle for me to see, or you missed something that will seem pretty obvious in a moment.
	jeep: Yes, I intended to catastrophe and missed typing it in...

	jeep: I'm not thinking it mattered, though. Sure seems like a lost cause.


2728)
Started: 2006.3.31, Ended: 2006.5.10
Participants: jeep (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3
	jeep: Our other game is all over but the crying, I think.  :(

2) jeep: Homeworld G3 B1 Y3

3) TwoShort: Build G1 Twoshort

4) jeep: Build Y1 Jeep

5) TwoShort: Build G1 Twoshort

6) jeep: Trade Y3 G3 Jeep

7) TwoShort: Discover G1 Twoshort Y3 Yolonda

8) jeep: Discover Y1 Jeep G2 Thumb

9) TwoShort: Trade G1 B1 Twoshort

10) jeep: Build G1 Jeep

11) TwoShort: Build B1 Twoshort

12) jeep: Trade G1 Y1 Jeep

13) TwoShort: Build G1 Twoshort

14) jeep: Sacrifice G3 Jeep
Build Y2 Jeep
Build Y2 Thumb
Build Y2 Thumb

15) TwoShort: Discover B1 Twoshort G3 Grogar
	jeep: Somehow, I thought I'd end up with a non-yellow piece too... Wonder how this will turn out now.

16) jeep: Build Y3 Jeep

17) TwoShort: Sacrifice G3 Twoshort
Build B2 Grogar
Build B2 Grogar
Build B3 Twoshort
	TwoShort: Sometimes doing something that seems obviously bad (like letting you monopolize yellow) is secretly brilliant...  I wish I thought this was one of those times.

18) jeep: Trade Y3 B3 Jeep

19) TwoShort: Trade B3 Y3 Twoshort

20) jeep: Build Y3 Jeep

21) TwoShort: Move B1 Twoshort Yolonda

22) jeep: Discover B3 Jeep G2 Bellina

23) TwoShort: Build B3 Yolonda

24) jeep: Build B3 Bellina

25) TwoShort: Sacrifice Y3 Twoshort
Move B2 Grogar Bellina
Move B1 Grogar Bellina
Move B3 Yolonda Twoshort
Catastrophe Bellina Blue

26) jeep: Discover Y2 Jeep B2 Bellina

27) TwoShort: Trade B3 Y3 Twoshort

28) jeep: Trade Y3 B3 Jeep

29) TwoShort: Build B1 Grogar

30) jeep: Build Y3 Jeep

31) TwoShort: Build B3 Yolonda

32) jeep: Trade Y3 R3 Jeep

33) TwoShort: Build B3 Grogar

34) jeep: Build Y3 Jeep

35) TwoShort: Trade B2 R2 Grogar

36) jeep: Move B3 Jeep Thumb

37) TwoShort: Trade B3 G3 Grogar

38) jeep: Trade Y3 B3 Jeep

39) TwoShort: Build G1 Grogar

40) jeep: Build Y3 Jeep

41) TwoShort: Sacrifice G3 Grogar
Build G2 Grogar
Build G2 Yolonda
Build G3 Twoshort

42) jeep: Trade Y3 R3 Jeep
	jeep: This is a tough one...

43) TwoShort: Move Y3 Twoshort Grogar

44) jeep: Build Y3 Jeep

45) TwoShort: Trade B3 R3 Yolonda

46) jeep: Discover Y2 Thumb B3 Stage
	jeep: Sorry, it's too late and this is too hard of a game for me to make my move tonight.  I'll move tomorrow.  ;)

47) TwoShort: Sacrifice G3 Twoshort
Build R1 Grogar
Build R1 Yolonda
Build G3 Twoshort

48) jeep: Move R3 Jeep Thumb

49) TwoShort: Move R2 Grogar Bellina

50) jeep: Move Y2 Bellina Stage

51) TwoShort: Move R1 Yolonda Twoshort

52) jeep: Move Y1 Thumb Stage

53) TwoShort: Sacrifice G3 Twoshort
Build B2 Grogar
Build R1 Twoshort
Build G3 Twoshort

54) jeep: Build R2 Jeep
	TwoShort: I love these simple, straight-forward games, without too many peices in play all at once...
	jeep: Me too... I mean it must be simple, right?  Only two pyramids in the stash, how many options can there be?
	jeep: Yeah, this is a thinker.  I'll have to set it up, I think.  It's hard to keep scrolling.
	TwoShort: I've taken to copying the tough ones into MSPaint and pushing them around there...
	jeep: You have more numbers and better position.  I have more large ships.  You have a complete monopoly on G and I have most of Y.  Tough game.
	jeep: Sorry this is taking so long.  Just leting you know I'm thinking about it.

55) TwoShort: Move Y3 Grogar Bellina
	jeep: Pshew... again, I'm hoping I didn't screw up.

56) jeep: Move B3 Thumb Stage
	TwoShort: Nice to hear you're worried, since I feel like I'm trying to find a way to make a comeback.
	TwoShort: Sorry about that, but I just noticed a possibility... gotta take a look through it...
	TwoShort: OK, figured out why my idea was dumb, back to plan A

57) TwoShort: Move Y3 Bellina Stage
Catastrophe Stage Yellow

58) jeep: Trade B3 Y3 Stage

59) TwoShort: Sacrifice B2 Grogar
Trade R2 Y2 Bellina
Trade G2 Y2 Grogar

60) jeep: Discover R3 Thumb B3 Stage2
	jeep: Sorry... I found a note I wrote and am trying to deciper it.  I have lousy hand writing... but it says to do something if you give up the Y3 like that.

61) TwoShort: Sacrifice G3 Twoshort
Build Y1 Grogar
Build G2 Grogar
Build G3 Twoshort

62) jeep: Move B3 Jeep Thumb
	TwoShort: "Take it" one assumes :)
I figure I'm better off with two two pointers in this case, and my green advantage only helps if there is stuff in the stash...  But your now 5-2 advantage in 3 pointers is not very pleasing to me.
	jeep: I'm beginning to regret not blowing up Y in your homeworld now.  Seemed like I wanted to hold the near monopoly, though... NOW it doesn't seem that way...
	jeep: You do have a 13-8 advantage in ships... and a factory going.  So I'm not feeling like my 5-2 (effectively 5-3) advantage in 3-pointers is that huge.

63) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build B2 Yolonda
Build R2 Yolonda
	TwoShort: Oh, I'll agree that this game is reasonably even; which is interesting to me since my usual rule is that 3-pointers and yellow are what matters.  You have, of course, found a way to prevent my recovering the B3, which was my next plan.
	TwoShort: Push my strength I guess...

64) jeep: Move B3 Thumb Grogar

65) TwoShort: Sacrifice Y2 Grogar
Move B1 Grogar Thumb
Move R3 Yolonda Thumb

66) jeep: Sacrifice Y2 Thumb
Move B3 Grogar Bellina
Move B3 Bellina Yolonda

67) TwoShort: Sacrifice B1 Thumb
Trade G1 B1 Yolonda
Catastrophe Yolonda Blue
	TwoShort: Sorry to take so long; definitely a tough game.  

68) jeep: Trade Y1 G1 Jeep
	jeep: I don't begrudge you all the time you need.  Feel free to take it.  This one is getting real thinky.  ;)

69) TwoShort: Discover G1 Grogar Y2 Yak
	TwoShort: No choice on this one

70) jeep: Discover G1 Jeep Y2 Mover

71) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build R2 Thumb
Build Y1 Bellina

72) jeep: Trade R2 B2 Jeep

73) TwoShort: Trade R1 B1 Twoshort

74) jeep: Build R1 Jeep

75) TwoShort: Move B1 Twoshort Grogar

76) jeep: Move R1 Jeep Mover

77) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build B1 Grogar
Build R2 Grogar

78) jeep: Move B2 Jeep Mover

79) TwoShort: Sacrifice Y2 Bellina
Move R2 Yolonda Mover
Move B1 Grogar Mover

80) jeep: Attack R2N Mover

81) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build B3 Mover
Build G3 Twoshort
	jeep: Not sure if you saw my post in the forum... I have company until Wednesday, so will be slow.  This game is likely the one hit hardest.  I feel like I'm on the downward spiral onw, though.  :(
	TwoShort: Don't worry about being slow; I understand there's more to life than homeworlds.  I am now feeling pretty good about this game; as strategies go, "Take all the peices" seems not so bad :)

82) jeep: Sacrifice Y3 Stage
Discover G1 Mover Y3 Saver
Move B2 Mover Stage2
Discover R2 Mover B3 Sigh

83) TwoShort: Sacrifice G2 Yolonda
Build G2 Yak
Build Y3 Bellina

84) jeep: Sacrifice G1 Saver
Build Y3 Jeep
	jeep: I knew there was some reason I should have taken them both... 

85) TwoShort: Sacrifice Y2 Grogar
Move G1 Yak Jeep
Move G2 Yak Jeep
	TwoShort: To take them both you had to sacrifice an r3 I could then grow... not much better

86) jeep: Sacrifice R2 Sigh
Attack G2N Jeep
Attack G1N Jeep

87) TwoShort: Sacrifice Y3 Bellina
Move G2 Grogar Bellina
Move G2 Bellina Jeep
Move Y1 Bellina Jeep
Catastrophe Jeep Green

88) jeep: Sacrifice B2 Stage2
Trade Y3 G3 Jeep
Trade R3 Y3 Stage2

89) TwoShort: Trade G3 Y3 Twoshort
	jeep: I think I was in command when I could have destroyed one of your stars, my hesitation probably cost me the game.  :(

90) jeep: Attack Y1N Jeep
	TwoShort: I know I was feeling pretty backed into a corner when you had almost all the yellow and more 3-pointers; classically the things that matter.  But having a factory going when you didn't was sure nice; whatever sacrifices, catastrophes etc. I felt threatened by, I could just make sure I'd be able to mop up the peices afterwards.  Anyway, it was quite interesting and challenging.  Thanks for a good game!

91) TwoShort: Sacrifice Y3 Twoshort
Move B3 Mover Jeep
Move B1 Mover Jeep
Move B1 Grogar Jeep
Catastrophe Jeep Blue



2980)
Started: 2006.4.8, Ended: 2006.5.17
Participants: Laurie_Menke (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld Y1 B2 G3

2) Laurie_Menke: Homeworld B3 Y2 G3
	Laurie_Menke: Hi, Andy!  I'd wish you good luck, but I'm pretty sure I'm the one that needs it.  ;o)

3) andylooney: Build G1 Andylooney
	andylooney: Hello! Good luck!


4) Laurie_Menke: Build G1 Laurie_menke

5) andylooney: Discover G1 Andylooney Y3 Howell3

6) Laurie_Menke: Discover G1 Laurie_menke B1 Paintshop

7) andylooney: Build G1 Howell3

8) Laurie_Menke: Build G2 Paintshop

9) andylooney: Build G2 Andylooney

10) Laurie_Menke: Trade G1 Y1 Paintshop

11) andylooney: Trade G2 Y2 Andylooney

12) Laurie_Menke: Build Y1 Paintshop

13) andylooney: Discover Y2 Andylooney G3 Paradise

14) Laurie_Menke: Discover G2 Paintshop Y3 Luella

15) andylooney: Discover G1 Howell3 B1 Bomber

16) Laurie_Menke: Discover Y1 Paintshop Y3 Sharon

17) andylooney: Build Y2 Paradise

18) Laurie_Menke: Build G1 Laurie_menke

19) andylooney: Build G2 Andylooney

20) Laurie_Menke: Move Y1 Sharon Bomber

21) andylooney: Trade G3 Y3 Andylooney

22) Laurie_Menke: Trade Y1 R1 Bomber

23) andylooney: Discover G2 Andylooney G3 Jolly

24) Laurie_Menke: Attack G1 Bomber
	Laurie_Menke: LOL...good name.  :o)

25) andylooney: Build G2 Howell3

26) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build R1 Bomber
Build Y1 Paintshop

27) andylooney: Discover G1 Howell3 B1 Bird

28) Laurie_Menke: Sacrifice Y1 Paintshop
Move R1 Bomber Luella
	Laurie_Menke: The Blue Bird of happiness?  :o)

29) andylooney: Move Y2 Paradise Andylooney

30) Laurie_Menke: Move R1 Luella Bird
	andylooney: You could say that. The Blue Bird is also one of my favorite Amsterdam Coffeeshops...
	Laurie_Menke: Well, then I guess it definitely *is* the Blue Bird of happiness for you!  :o)
	Laurie_Menke: Sorry about taking it over, then...  :o(

31) andylooney: Sacrifice Y3 Andylooney
Move G2 Howell3 Bird
Move G1 Bird Laurie_menke
Move G2 Bird Laurie_menke
Catastrophe Laurie_menke Green
	andylooney: Here's the thing that's really funny about that... Russell and I played a particularly memorable game of Homeworlds one night, at the Bluebird...
	andylooney: I lost that game, by doing something which has since become nicknamed, in honor of that night, as the Birdbird Mistake. And you just did the exact same thing!
	andylooney: Sorry! Better luck next time!

	Laurie_Menke: Wow...that *is* funny!  Well, I guess now I can say I've committed a famous mistake...LOL!  Thanks for the fun!



2990)
Started: 2006.4.8, Ended: 2006.4.28
Participants: Laurie_Menke (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3

2) Laurie_Menke: Homeworld R3 B2 G3

3) Jesse: Build G1 Jesse

4) Laurie_Menke: Build G1 Laurie_menke

5) Jesse: Trade G1 Y1 Jesse

6) Laurie_Menke: Build G1 Laurie_menke

7) Jesse: Build G1 Jesse
	Laurie_Menke: That's a very cool trophy in your Trophy Case, Jesse!  :o)

8) Laurie_Menke: Trade G1 Y1 Laurie_menke
	Jesse: Hmm?  What trophy case?
	Laurie_Menke: Go to your home page.  Above the list of games are three links:  Games History, Highlight Leaderboard, and Trophy Case...take a look!  (It's new.)  :o)

9) Jesse: Trade G1 R1 Jesse
	Jesse: Huh.  Nifty!

10) Laurie_Menke: Discover G1 Laurie_menke Y1 Luella
	Laurie_Menke: :o)

11) Jesse: Build G1 Jesse

12) Laurie_Menke: Build Y2 Laurie_menke

13) Jesse: Build Y2 Jesse

14) Laurie_Menke: Build G1 Luella

15) Jesse: Discover Y2 Jesse G3 Makemonkeyfast

16) Laurie_Menke: Discover Y2 Laurie_menke B1 Paintshop

17) Jesse: Discover G1 Jesse Y3 Nomonkeydown

18) Laurie_Menke: Build Y2 Laurie_menke
	Laurie_Menke: LOL...what's next?  "MonkeyDoesn'tGrowOnTrees"?  ;o)

19) Jesse: Sacrifice G3 Jesse
Build Y3 Jesse
Build Y3 Makemonkeyfast
Build G2 Nomonkeydown
	Jesse: Don't be silly.  Of course monkey grows on trees!  Also, there's a pathetic 15 character limit, which I discovered when I tried "DoubleYourMonkey".  Very sad.

20) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move G1 Luella Nomonkeydown
Move G1 Luella Nomonkeydown
Catastrophe Nomonkeydown G
	Laurie_Menke: ::sigh::  Alas.  :o/
	Laurie_Menke: BTW...where can I get me one of those trees?  I've been doing this all wrong!  ;o)

21) Jesse: Trade Y3 G3 Jesse
	Jesse: That's a tough one.  I think they're very hard to import, these days, on account of very strict quarantine requirements.  You might have more luck if you move to India.

22) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: :o)

23) Jesse: Move Y2 Makemonkeyfast Paintshop

24) Laurie_Menke: Trade Y2 R2 Paintshop

25) Jesse: Sacrifice R1 Jesse
Attack R2 Paintshop

26) Laurie_Menke: Trade G3 R3 Laurie_menke
	Jesse: This is why it's best not to wait too long to get into red after your opponent does.
	Laurie_Menke: Ack!  I forget about the darn sacrificing thing every time!  Grr....

27) Jesse: Build G1 Jesse

28) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Actually, that last move was probably stupid, too.  I think my r3 star would have allowed my little 1's to attack your 2 if you came to my homeworld anyway, right?  ::sigh::

29) Jesse: Discover G1 Jesse Y3 Colorofmonkey
	Jesse: Yup.  You don't want to do any of the things you could do with that R3, either: You'll be blasted if you build a new red ship, and you'll leave your homeworld undefended if you move it out or sacrifice it (even if you had a target worth sacrificing it for).

30) Laurie_Menke: Discover G1 Laurie_menke Y1 Gettinoutadodge
	Laurie_Menke: Yep...I've screwed this up pretty royally.  :o(  But I'm going to do my best to try to salvage the situation....

31) Jesse: Build G2 Jesse

32) Laurie_Menke: Build G2 Gettinoutadodge

33) Jesse: Sacrifice G3 Jesse
Build G2 Jesse
Build G3 Jesse
Build G3 Colorofmonkey

34) Laurie_Menke: Sacrifice G2 Gettinoutadodge
Build G2 Laurie_menke
Build Y2 Laurie_menke

35) Jesse: Sacrifice G2 Jesse
Build Y2 Paintshop
Build Y3 Jesse
	Jesse: Gettin back inta Dodge, then?

36) Laurie_Menke: Trade Y2 B2 Laurie_menke
	Laurie_Menke: LOL...I guess so.  ;o)

37) Jesse: Move G1 Colorofmonkey Paintshop

38) Laurie_Menke: Build G2 Gettinoutadodge

39) Jesse: Sacrifice G3 Colorofmonkey
Build G3 Paintshop
Build Y2 Makemonkeyfast
Build Y3 Jesse

40) Laurie_Menke: Move B2 Laurie_menke Gettinoutadodge

41) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R1 Paintshop
Build R1 Paintshop

42) Laurie_Menke: Move R3 Laurie_menke Paintshop

43) Jesse: Sacrifice Y3 Jesse
Move G3 Paintshop Laurie_menke
Move G1 Paintshop Laurie_menke
Move Y2 Paintshop Laurie_menke
Catastrophe Paintshop R
Catastrophe Laurie_menke G

44) Laurie_Menke: Build B1 Gettinoutadodge
	Jesse: Coming up on the end, here...
	Laurie_Menke: Now that wasn't how that was supposed to happen!  ;o)  Well, it was fun while it lasted.  I still have not figured out the strategy to this game....obviously.  LOL!  But thanks for the fun and the challenge!  :o)

45) Jesse: Attack Y1 Laurie_menke
	Jesse: I'm glad you enjoyed it, and I hope maybe you've picked up a thing or two for the future while you were at it.  Thanks for the game!



3081)
Started: 2006.4.11, Ended: 2007.1.8
Participants: andylooney (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3
	Jesse: Up for another go, Andy?

2) andylooney: Homeworld B3 R2 G3
	andylooney: (tremble, tremble...) Sure!

3) Jesse: Build G1 Jesse
	Jesse: My winning streak has been broken.  I'm vulnerable to loss now.  ;)

4) andylooney: Build G1 Andylooney

5) Jesse: Trade G3 Y3 Jesse

6) andylooney: Trade G3 Y3 Andylooney
	Jesse: Have you played red-blue homeworlds much, Andy?  I had pretty much dismissed all homeworlds with red, but I saw in the game I played against sketchwick that they have some interesting properties, such as the freedom to choose dynamically whether to guard it with a y3 or g3.
	andylooney: Not lately. For a long time now, my standard opening was always B1 G2 Y3 (or B3 G2 Y3 if the other guy takes a 1-2 system) but more recently I've been wanted to experiment with other options again and red in the system has late game advances...

7) Jesse: Build Y1 Jesse

8) andylooney: Build Y1 Andylooney

9) Jesse: Discover Y1 Jesse G3 Marmalade

10) andylooney: Discover Y1 Andylooney G1 Emerald

11) Jesse: Build G2 Jesse

12) andylooney: Build G2 Andylooney

13) Jesse: Discover G2 Jesse B3 Butter

14) andylooney: Discover G2 Andylooney B1 Sapphire

15) Jesse: Build Y1 Jesse

16) andylooney: Build Y2 Emerald

17) Jesse: Trade Y1 R1 Jesse

18) andylooney: Trade G1 R1 Andylooney

19) Jesse: Build G1 Butter

20) andylooney: Discover Y1 Emerald G3 Jade

21) Jesse: Build R2 Jesse

22) andylooney: Move R1 Andylooney Emerald

23) Jesse: Move R2 Jesse Marmalade

24) andylooney: Trade Y3 G3 Andylooney
	Jesse: I know you're busy getting ready for Origins, so feel free to move this game waaaaaay onto the back burner.

25) Jesse: Build G2 Jesse
	Jesse: Welcome back.  Now, to refamiliarize myself with this game...

26) andylooney: Build Y1 Emerald
	andylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.
	andylooney: Man, this sucks! How did I get into this awful situation?

27) Jesse: Build Y2 Marmalade

28) andylooney: Discover Y1 Emerald B3 Topaz

29) Jesse: Discover Y2 Marmalade B1 Nutella



3079)
Variants: "Unrated, Sinister"
Started: 2006.4.17, Ended: 2006.5.22
Participants: Kermit (S), Cerulean (W), istari (N), xoet (E)
Winner: istari

1) istari: Homeworld B1 G2 Y3
	istari: OK. It's been awhile since I played. How do I write up the command to set up my homeworld.

2) xoet: Homeworld B2 Y1 G3
	istari: OK finally figured it out.

3) Kermit: Homeworld B2 Y3 G3

4) Cerulean: Homeworld B1 Y3 G3

5) istari: Build Y1 Istari

6) xoet: Build G1 Xoet

7) Kermit: Build G1 Kermit

8) Cerulean: Build G1 Cerulean

9) istari: Trade Y1 G1 Istari

10) xoet: Trade G1 B1 Xoet

11) Kermit: Build G1 Kermit

12) Cerulean: Discover G1 Cerulean Y2 Castillo

13) istari: Build Y1 Istari

14) xoet: Build G1 Xoet

15) Kermit: Trade G1 Y1 Kermit

16) Cerulean: Discover G1 Castillo B3 Matanzas

17) istari: Trade Y1 R1 Istari

18) xoet: Build B1 Xoet

19) Kermit: Discover G1 Kermit Y1 Gorn

20) Cerulean: Trade G1 Y1 Matanzas

21) istari: Move G1 Istari Matanzas

22) xoet: Move B1 Xoet Matanzas

23) Kermit: Build G1 Kermit

24) Cerulean: Discover Y1 Matanzas G2 Caroline

25) istari: Build R1 Istari

26) xoet: Trade B1 Y1 Matanzas

27) Kermit: Trade G1 B1 Kermit

28) Cerulean: Build Y2 Caroline

29) istari: Build Y2 Istari

30) xoet: Move G1 Xoet Matanzas

31) Kermit: Move B1 Kermit Gorn

32) Cerulean: Build G1 Cerulean

33) istari: Move Y2 Istari Matanzas

34) xoet: Build B1 Xoet

35) Kermit: Build B2 Gorn

36) Cerulean: Trade G1 R1 Cerulean

37) istari: Build Y2 Istari

38) xoet: Build Y2 Matanzas

39) Kermit: Trade B2 R2 Gorn

40) Cerulean: Build G1 Cerulean

41) istari: Sacrifice Y2 Istari
Move Y2 Matanzas Xoet
Move G1 Matanzas Xoet

42) xoet: Trade B1 R1 Xoet

43) Kermit: Build B1 Gorn

44) Cerulean: Discover Y2 Caroline B3 Frederica

45) istari: Sacrifice R1 Istari
Attack R1E Xoet

46) xoet: Build B2 Xoet

47) Kermit: Move B1 Gorn Caroline

48) Cerulean: Move G1 Cerulean Caroline

49) istari: Attack B2E Xoet

50) xoet: Build B2 Xoet

51) Kermit: Sacrifice R2 Gorn
Attack G1W Caroline
Attack Y1W Caroline

52) Cerulean: Build R1 Cerulean

53) istari: Build Y2 Xoet
Catastrophe Xoet B

54) xoet: Move Y2 Matanzas Xoet

55) Kermit: Build Y2 Caroline

56) Cerulean: Build G1 Cerulean

57) istari: Build Y3 Xoet
Catastrophe Xoet Y
	xoet: OK this stuff is just a little too abstract for me :)

	istari: Thanks for the game


3086)
Started: 2006.4.19, Ended: 2006.6.21
Participants: jeep (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3
	Jesse: Hello again.

2) jeep: Homeworld B3 Y1 G3
	jeep: Howdy.  ;)

3) Jesse: Build G1 Jesse

4) jeep: Build G1 Jeep

5) Jesse: Trade G1 Y1 Jesse

6) jeep: Trade G1 R1 Jeep

7) Jesse: Build G1 Jesse

8) jeep: Build R1 Jeep

9) Jesse: Build Y1 Jesse

10) jeep: Build R2 Jeep

11) Jesse: Build Y2 Jesse

12) jeep: Trade R2 Y2 Jeep

13) Jesse: Trade Y2 R2 Jesse

14) jeep: Discover R1 Jeep G2 Hana

15) Jesse: Discover Y1 Jesse G3 Noggin

16) jeep: Build R2 Hana

17) Jesse: Build Y2 Noggin

18) jeep: Move Y2 Jeep Hana

19) Jesse: Discover Y1 Noggin B2 Kneecaps

20) jeep: Sacrifice G3 Jeep
Build R2 Hana
Build R3 Jeep
Build R3 Jeep

21) Jesse: Sacrifice G3 Jesse
Build Y2 Noggin
Build Y3 Jesse
Build Y3 Kneecaps

22) jeep: Build Y3 Hana

23) Jesse: Trade Y3 R3 Kneecaps

24) jeep: Trade R3 G3 Jeep

25) Jesse: Trade Y3 G3 Jesse

26) jeep: Discover R2 Hana Y3 Dul

27) Jesse: Sacrifice G3 Jesse
Build G1 Jesse
Build R3 Kneecaps
Build Y3 Jesse

28) jeep: Sacrifice Y2 Hana
Move R1 Jeep Kneecaps
Move R2 Dul Kneecaps
Catastrophe Kneecaps R

29) Jesse: Discover Y1 Jesse G3 Trouble

30) jeep: Build G1 Jeep

31) Jesse: Build Y2 Trouble
	jeep: OK, so here's what I'd love to see from some of you homeworlds experts... an article on the wiki explaining, in general, what kinds of things you try to do in these situations: 1) you have more big ships (esp if your opp has more ships) 2) you have more ships (esp if your opp has more big ships)  I think I may have squandered a lead in my game vs. TwoShort where I had a huge lead in big ships.  Now I still have more big ships, but he has a gigantic fleet!
	Jesse: Having more ships gives you more influence to control the economy.  Having more large ships gives you more power to seize and control systems and ships.

32) jeep: Discover R2 Hana Y3 Dul

33) Jesse: Move R2 Jesse Trouble

34) jeep: Build G2 Jeep

35) Jesse: Build G2 Jesse

36) jeep: Sacrifice G3 Jeep
Build R1 Dul
Build R2 Dul
Build G3 Jeep

37) Jesse: Build R3 Trouble

38) jeep: Trade G2 B2 Jeep
	jeep: This is the point in the game where I need more experience.  ;)

39) Jesse: Discover G1 Jesse R3 Snoopy
	jeep: Did I leave you too many good options?  ;)

40) jeep: Move R1 Dul Jesse

41) Jesse: Attack R1 Jesse

42) jeep: Sacrifice Y3 Hana
Move R2 Dul Jesse
Move R2 Dul Jesse
Move G1 Jeep Hana
Catastrophe Jesse R
	jeep: I had a plan, but I can't for the life of me see what it was.

43) Jesse: Sacrifice G2 Jesse
Build Y3 Jesse
Build Y3 Kneecaps

44) jeep: Build B1 Jeep
	jeep: I think I need to play more aggressively, but I still worry every time I do.

45) Jesse: Move R3 Trouble Jesse

46) jeep: Move B2 Jeep Kneecaps

47) Jesse: Sacrifice R2 Trouble
Attack B2 Kneecaps
Pass
	jeep: This is a thinker.
	Jesse: Aye.  Take your time.

48) jeep: Build G2 Jeep
	jeep: I'm not sure I have a chance here.

49) Jesse: Build G2 Jesse

50) jeep: Move B1 Jeep Kneecaps

51) Jesse: Sacrifice Y3 Kneecaps
Discover G2 Jesse Y3 Storage
Move Y1 Kneecaps Snoopy
Move B2 Kneecaps Snoopy

52) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build R1 Jeep
Build R1 Hana

53) Jesse: Build B1 Snoopy

54) jeep: Trade R1 B1 Jeep

55) Jesse: Build B3 Snoopy
	Jesse: Okay, here's how I see this playing out.  The only place you can approach me is from your homeworld to mine, and only one ship at a time.  If you send green ships, I'll take them one by one, and it doesn't matter much if you cause a catastrophe.  (In fact, it benefits me.)  If you send red ships, I capture them one by one.  If necessary, I will sacrifice a red ship when doing so, to ensure that you can never cause a red catastrophe.  You have no yellow ships, so as long as I don't trade or sacrifice yellow, that's no worry.  If you send a blue ship, I capture it.  If you create another, I can move a blue ship out of my system to ensure you can't cause a catastrophe.  You cannot affort to have two blue ships in your home system at the same time, or I sac a y2 to blast your blue marker.  You don't have time to snatch that yellow piece and make use of it, because it only takes two turns to sac my y3s and put 3 yellow ships in your home system.  So, I'm safe.
	Jesse: That just leaves the question of how to win, without giving up that position.  First of all, I need enough blues to destroy your blue marker.  That's easy.  Second, I need to position my ships so I can hit you with a bunch of yellow and a bunch of blue in quick succession.  The easiest launch point is my own homeworld, since I know it to be safe.  I can't build up blues there, so I'll have to send them in two waves from farther out.  That means I should mass my smaller yellows there, while moving the y3s out to my large systems.  I can turn Storage into a ship, then sac it and my other two y3s to blast you in three waves.
	Jesse: I do need to exercise some caution that you can't  grab the first y3 and smash me in one blow after my second wave, but I believe that's covered by you not being able to put three blues all one step from my homeworld.
	jeep: Nod, it's looked futile to me for a while.  I'm interested in seeing this end game though.

56) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build R1 Hana
Build R2 Jeep
	Jesse: Fine by me.

57) Jesse: Sacrifice G2 Storage
Build G2 Jesse
Build Y3 Jesse

58) jeep: Sacrifice B1 Jeep
Trade G3 B3 Jeep

59) Jesse: Sacrifice Y2 Noggin
Move B3 Snoopy Jesse
Move B3 Jesse Jeep

60) jeep: Attack B3N Jeep
	Jesse: Okay, I think I have all possibilities covered sufficiently to end this quicker than I had outlined before.

61) Jesse: Sacrifice Y2 Trouble
Move B1 Snoopy Jesse
Move B1 Jesse Jeep
Catastrophe Jeep B

	jeep: I thought I had a small blue at Hana... I don't think there was anything to do anyway.
	Jesse: Indeed.  Thanks for the game.  I hope seeing the endgame played out was helpful to you.
	jeep: It was, actually.  Thanks for being patient with me.  ;)
	Jesse: No problem at all.  It actually helped remind me of some things to pay attention to in homeworld assaults.  (I usually go for the ships, rather than  the system.)


3181)
Variants: "Unrated"
Started: 2006.4.20, Ended: 2006.4.29
Participants: cdiffell (S), Aaron (N)
Winner: Aaron

1) Aaron: Homeworld B1 Y2 G3
	cdiffell: I feel bad forcing you to teach me 3 different games...but I guess I have to learn for the tournament. Hope it's OK. Caleb
	Aaron: It doesn't bother me at all!!  This is another toughie.  Make sure you've read the rules and the wiki thoroughly.  Trust the systems warnings regarding the best Homeworld setup when it's your turn, and don't hesitate to ask any questions!!

2) cdiffell: Homeworld B3 Y1 G3
	Aaron: Remember that it is not wise to create a homeworld with the same star sizes as your opponent.  I can't remember if the system warns you of that or not =)
	cdiffell: I read through the rules today, but I will re-read tonight or tomorrow and probably not make my first move till lunch time
	Aaron: Take your time.  I'm in no hurry.
	cdiffell: How do I build a homeworld with a different size than yours? There are only 3 sizes, and you've used 2 of them, so by definition I have to double up one of them when I build my homeworld.
	cdiffell: OK, I looked at another game of this and will just sort of mimic those starting moves at first.

3) Aaron: Build G1 Aaron
	Aaron: I mean the exact same sizes.  If we both had starts sized 1 and 2 then I'm only 2 moves away from your Homeworld.  By using 1 and 3, I'm now at least 3 moves away.  Safety first! =)
	Aaron: This game is all about resource management.  You want to manage the global stash to minimize the number of ships I can own.

4) cdiffell: Build G1 Cdiffell

5) Aaron: Trade G1 Y1 Aaron

6) cdiffell: Trade G1 Y1 Cdiffell
	Aaron: Here's an example.  If you choose to take that last small Yellow, then I have access to size-2 yellows.  This is sometimes unavoidable, but something you want to be aware of at least.
	cdiffell: Why would you take a green and then trade to a yellow? Doesn't that waste a turn? Your green 3 ship supported a build action for a yellow ship, right?
	Aaron: no, you can only build a ship of certain colour that you currently control in the system.  *Now* I can freely build yellows.
	cdiffell: OK, I see.

7) Aaron: Build Y2 Aaron

8) cdiffell: Discover Y1 Cdiffell G2 Cdiffell2
	cdiffell: Question: if I create a new system that's a "3", are you prohibited from moving directly there due to your system being a "3" in total?
	Aaron: no, only if one of the individual stars is a 3
	cdiffell: ...so I should build a 1 or 2 size system; I guess probably a 2 so I can move back/forth from my home system but you cannot, right?
	Aaron: You will only be able to build a 2 right now as your system contains a 1 and a 3.  I can only discover a 3.

9) Aaron: Discover Y2 Aaron G3 Emeralds

10) cdiffell: Build G1 Cdiffell

11) Aaron: Build Y2 Emeralds

12) cdiffell: Build Y3 Cdiffell2

13) Aaron: Move Y2 Emeralds Cdiffell2

14) cdiffell: Trade G1 B1 Cdiffell

15) Aaron: Build Y3 Cdiffell2
Catastrophe Cdiffell2 Yellow
	cdiffell: About having time - I did the grad school thing while working full-time; it definitely doesn't leave much time for other stuff. I'm just glad I got it finished before my daughter came along...

16) cdiffell: Build G1 Cdiffell

17) Aaron: Build G1 Aaron

18) cdiffell: Discover G1 Cdiffell B2 Cdiffell3

19) Aaron: Trade G1 R1 Aaron

20) cdiffell: Move B1 Cdiffell Cdiffell3

21) Aaron: Build R1 Aaron

22) cdiffell: Build G1 Cdiffell

23) Aaron: Trade R1 B1 Aaron

24) cdiffell: Build B2 Cdiffell3

25) Aaron: Sacrifice Y2 Emeralds
Discover B1 Aaron G3 Emeralds
Move B1 Emeralds Cdiffell3
Catastrophe Cdiffell3 Blue

26) cdiffell: Trade G1 R1 Cdiffell
	cdiffell: I don't remember what the system looked like - did mine disappear due to having 4 blue items in it?
	Aaron: I moved a blue in there creating 4 and I called a catastrophe, yes.

27) Aaron: Build G1 Aaron

28) cdiffell: Discover R1 Cdiffell Y2 Cdiffell4

29) Aaron: Discover G1 Aaron B3 Sky
	cdiffell: <sigh> My systems seem to last a depressingly short time in Known Space.
	Aaron: =D  That's not uncommon.  You just have to always watch for that magic number 4.

30) cdiffell: Build G1 Cdiffell

31) Aaron: Build G1 Sky

32) cdiffell: Move G1 Cdiffell Cdiffell4

33) Aaron: Trade G1 Y1 Sky

34) cdiffell: Move R1 Cdiffell4 Sky

35) Aaron: Sacrifice R1 Aaron
Attack R1 Sky

36) cdiffell: Build G1 Cdiffell
	cdiffell: ah, so you can use a ship in one system to capture another? Hmm. didn't realize that.

37) Aaron: Move R1 Sky Cdiffell4
	Aaron: Once you sacrifice a ship, you can use its power in *any* system in which you have influence.  Very powerful tactic.

38) cdiffell: Build G2 Cdiffell
	cdiffell: "Influence" defined as the presence of your ship(s) there. I see.
	Aaron: exactly.  Technically you could, for example, sacrifice your g1 in CDIFFELL and build a green in CDIFFELL4.

39) Aaron: Attack G1 Cdiffell4

40) cdiffell: Trade G2 R2 Cdiffell

41) Aaron: Build Y2 Sky

42) cdiffell: Move R2 Cdiffell Cdiffell4

43) Aaron: Move G1 Cdiffell4 Cdiffell

44) cdiffell: Move R2 Cdiffell4 Sky

45) Aaron: Build G2 Cdiffell
Catastrophe Cdiffell Green
	Aaron: Thanks for the game!  Wanna try again?  Feel free to challenge me anytime.



3080)
Variants: "Unrated, Sinister"
Started: 2006.4.20, Ended: 2006.5.14
Participants: jeep (S), istari (N), Uglyfoot (E)
Winner: jeep

1) istari: Homeworld G3 B1 Y3

2) Uglyfoot: Homeworld Y1 B2 G3

3) jeep: Homeworld R2 B3 G3

4) istari: Build Y1 Istari

5) Uglyfoot: Build G1 Uglyfoot

6) jeep: Build G1 Jeep
	jeep: b g1 jeep

7) istari: Build Y1 Istari
	jeep: Some mistakes aren't too bad... ;)  Sorry about spamming the chat.

8) Uglyfoot: Build G1 Uglyfoot

9) jeep: Trade G1 Y1 Jeep

10) istari: Trade Y1 R1 Istari

11) Uglyfoot: Discover G1 Uglyfoot Y3 Slingshot

12) jeep: Build G1 Jeep

13) istari: Discover Y1 Istari G2 Greenie

14) Uglyfoot: Trade G1 B1 Uglyfoot

15) jeep: Trade G1 B1 Jeep
	jeep: Aha, I just realized I did have a slight advantage in building my homeworld last, but missed out.

16) istari: Build R1 Istari

17) Uglyfoot: Move B1 Uglyfoot Slingshot

18) jeep: Discover B1 Jeep Y1 Submarine

19) istari: Build Y2 Greenie

20) Uglyfoot: Build G1 Slingshot

21) jeep: Build Y2 Jeep

22) istari: Build Y2 Istari

23) Uglyfoot: Discover G1 Slingshot B1 Commerce

24) jeep: Discover Y2 Jeep G1 Thumb

25) istari: Trade Y2 B2 Istari

26) Uglyfoot: Build G1 Commerce

27) jeep: Build G2 Jeep

28) istari: Move B2 Istari Greenie

29) Uglyfoot: Build G2 Uglyfoot

30) jeep: Build Y2 Thumb

31) istari: Move Y2 Greenie Slingshot

32) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Slingshot

33) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y2 Thumb
Build Y3 Jeep

34) istari: Build Y3 Istari

35) Uglyfoot: Trade G3 R3 Uglyfoot

36) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build G3 Jeep
Build B2 Submarine

37) istari: Move Y2 Slingshot Thumb
Catastrophe Thumb Y

38) Uglyfoot: Trade G2 Y2 Uglyfoot

39) jeep: Sacrifice B2 Submarine
Trade G3 R3 Jeep
Trade G2 B2 Jeep

40) istari: Build Y2 Greenie
	jeep: I think this plays better IRL.  There is usually some negotiation going on...

41) Uglyfoot: Build B2 Slingshot

42) jeep: Move R3 Jeep Submarine

43) istari: Build B3 Greenie

44) Uglyfoot: Move B2 Slingshot Commerce

45) jeep: Build G1 Jeep

46) istari: Trade Y3 B3 Istari

47) Uglyfoot: Build B3 Slingshot

48) jeep: Move Y1 Jeep Submarine

49) istari: Discover B3 Greenie G3 Greenie2

50) Uglyfoot: Discover B1 Slingshot R1 Battlestar

51) jeep: Move R3 Submarine Greenie

52) istari: Sacrifice B2 Greenie
Trade Y1 R1 Greenie
Trade Y2 R2 Greenie

53) Uglyfoot: Trade G3 Y3 Slingshot

54) jeep: Build Y1 Jeep

55) istari: Build B2 Greenie2

56) Uglyfoot: Sacrifice Y2 Uglyfoot
Move B1 Battlestar Jeep
Move B2 Commerce Jeep
Catastrophe Jeep Blue

57) jeep: Move B1 Submarine Jeep

58) istari: Build R1 Greenie
Catastrophe Greenie R

59) Uglyfoot: Sacrifice Y3 Slingshot
Move G1 Commerce Jeep
Move G1 Commerce Jeep
Discover B3 Slingshot G2 Elliptical
Catastrophe Jeep Green

60) jeep: Trade Y1 G1 Jeep

61) istari: Trade B2 Y2 Greenie2

62) Uglyfoot: Build G1 Uglyfoot

63) jeep: Build Y1 Jeep

64) istari: Build Y2 Greenie2

65) Uglyfoot: Trade B3 Y3 Elliptical

66) jeep: Build B1 Jeep

67) istari: Trade Y2 R2 Greenie2

68) Uglyfoot: Build Y2 Elliptical

69) jeep: Build G1 Jeep

70) istari: Build R1 Greenie2

71) Uglyfoot: Build G2 Slingshot

72) jeep: Move G1 Jeep Istari

73) istari: Attack G1S Istari

74) Uglyfoot: Move Y3 Elliptical Slingshot

75) jeep: Build G2 Jeep

76) istari: Build G3 Istari

77) Uglyfoot: Build R1 Uglyfoot

78) jeep: Sacrifice Y3 Jeep
Move B1 Jeep Istari
Move B1 Jeep Istari
Move G1 Jeep Istari
Catastrophe Istari G
Catastrophe Istari B

	jeep: Thanks for the game guys.  It's pretty weird to have no table talk going... 
	Uglyfoot: Good game guys.



3126)
Started: 2006.4.22, Ended: 2007.5.15
Participants: andylooney (S), lament (N)
Winner: andylooney

1) lament: Homeworld G1 B2 Y3

2) andylooney: Homeworld R2 B3 G3
	lament: Greetings. I must say I'm rather excited to be playing against the great Andy Looney himself :)
	andylooney: Cool, it's always a pleasure to play with a fan!

3) lament: Build Y1 Lament

4) andylooney: Build G1 Andylooney

5) lament: Discover Y1 Lament B3 Rigel

6) andylooney: Trade G3 Y3 Andylooney

7) lament: Build Y1 Lament

8) andylooney: Build G1 Andylooney



3267)
Started: 2006.4.25, Ended: 2006.5.10
Participants: lambda (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y2 B1 G3

2) lambda: Homeworld B3 G1 Y3

3) jeep: Build G1 Jeep
	jeep: Hello!  Good luck.

4) lambda: Build Y1 Lambda
	lambda: Hi there! Good luck to you, too. 

5) jeep: Build G1 Jeep

6) lambda: Trade Y1 B1 Lambda

7) jeep: Discover G1 Jeep B3 Moon

8) lambda: Build B1 Lambda

9) jeep: Build G2 Jeep

10) lambda: Discover B1 Lambda G2 Rigel

11) jeep: Sacrifice G3 Jeep
Build G2 Moon
Build G3 Moon
Build G3 Jeep

12) lambda: Build B2 Rigel

13) jeep: Discover G2 Jeep Y3 Submarine

14) lambda: Build Y1 Lambda

15) jeep: Trade G3 Y3 Moon

16) lambda: Build B2 Rigel

17) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build G3 Submarine
Build G3 Moon

	jeep: You still with us?
	jeep: I want to start another game, but it would be too much if this comes back to life too.  Looking at your history, it appears you don't finish games once you fall behind.  Sorry.
	lambda: Sorry about that. I got busy, got behind on SDG, and just stopped playing entirely. I hope to be better about keeping up with SDG this time around.


3286)
Started: 2006.4.27, Ended: 2006.8.16
Participants: andylooney (S), Hedge_o_Matic (N)
Winner: andylooney

1) Hedge_o_Matic: Homeworld G3 B2 Y3

2) andylooney: Homeworld R2 B1 G3

3) Hedge_o_Matic: Build Y1 Hedge_o_matic
	Hedge_o_Matic: Huh.  That's funny.  I did it right the first time.
	Hedge_o_Matic: Hopefully I'll give you a better game than the last one we played.  What a disaster that was!
	Hedge_o_Matic: Oh, and I'm considering a run on Icehouse pieces to coplete my set before the full stashes go away... I just need Orange, Cyan, Purple and White, and I'll be complete.  That, plus my solid brass and steel set I've got a friend milling for me...  weight is everything in Icehouse, after all.

4) andylooney: Build G1 Andylooney

5) Hedge_o_Matic: Trade Y1 G1 Hedge_o_matic

6) andylooney: Trade G3 Y3 Andylooney

7) Hedge_o_Matic: Build G1 Hedge_o_matic

8) andylooney: Build G2 Andylooney

9) Hedge_o_Matic: Trade G1 R1 Hedge_o_matic

10) andylooney: Discover G2 Andylooney Y3 Howell



3287)
Started: 2006.4.27, Ended: 2006.6.21
Participants: TwoShort (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3
	Jesse: Ready for another go?

2) TwoShort: Homeworld Y3 B2 G3
	TwoShort: Certainly...  Red homeworld star?  A new theory?

3) Jesse: Build G1 Jesse
	Jesse: To me, yes.  Andy had some experience with it, and mentioned vaguely that it has some late-game advantages.  I'm not sure what he has in mind, but I noticed when Sketchwick tried it against me, it afforded him some extra flexibility in the early and mid game to choose between yellow and green for his capital ship, and it was always a hindrance to mounting an attack.  Also, I figured you were much less likely to do in red what you did in blue last time.

4) TwoShort: Build G1 Twoshort
	TwoShort: I've concluded the blue freeze out is the thing to do when the first player uses a blue 1 point star, and a yellow first ship (as Andy always used to); but I don't think it's worth it otherwise.  I hadn't thought about the mid-game flexibility oof not having a yellow or green star, but now that you mention it, I can certainly recall being hampered by it.

5) Jesse: Trade G1 Y1 Jesse

6) TwoShort: Trade G1 Y1 Twoshort

7) Jesse: Build G1 Jesse

8) TwoShort: Build G1 Twoshort

9) Jesse: Build Y1 Jesse

10) TwoShort: Build Y2 Twoshort

11) Jesse: Build Y2 Jesse

12) TwoShort: Discover Y1 Twoshort B1 Bluestar

13) Jesse: Discover Y1 Jesse G3 Purple

14) TwoShort: Discover Y2 Twoshort G1 Grogar

15) Jesse: Discover Y1 Jesse B3 Cranberry

16) TwoShort: Trade Y1 R1 Bluestar

17) Jesse: Build Y1 Purple

18) TwoShort: Build G2 Twoshort
	TwoShort: I'm seeing the advantage of that red star...  Can't figure out how to counter it at this point though...

19) Jesse: Sacrifice G3 Jesse
Build Y2 Jesse
Build Y3 Jesse
Build Y3 Cranberry

20) TwoShort: Discover G2 Twoshort R1 Rover

21) Jesse: Trade Y2 R2 Jesse

22) TwoShort: Build Y2 Grogar

23) Jesse: Move R2 Jesse Purple

24) TwoShort: Build G2 Rover

25) Jesse: Trade Y3 G3 Cranberry

26) TwoShort: Sacrifice Y2 Grogar
Discover G2 Rover Y3 Yolonda
Move R1 Bluestar Twoshort

27) Jesse: Build G2 Cranberry

28) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Grogar
Build R2 Twoshort

29) Jesse: Sacrifice G3 Cranberry
Build G3 Jesse
Build R2 Purple
Pass

30) TwoShort: Move R1 Twoshort Grogar

31) Jesse: Discover R2 Purple B1 Chewtoy

32) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build R3 Twoshort
Build R3 Grogar

33) Jesse: Build R3 Purple

34) TwoShort: Sacrifice Y2 Grogar
Move R3 Grogar Cranberry
Discover Y2 Grogar B3 Kick

35) Jesse: Sacrifice Y1 Cranberry
Discover G2 Cranberry Y2 Squidger

36) TwoShort: Discover R2 Twoshort Y1 Sweet

37) Jesse: Move G3 Jesse Yolonda

38) TwoShort: Sacrifice G2 Rover
Build R1 Cranberry
Build G2 Yolonda

39) Jesse: Sacrifice R2 Purple
Attack G2 Yolonda
Attack G2 Yolonda

40) TwoShort: Sacrifice Y2 Kick
Discover G1 Twoshort B1 Maybeabadidea
Move G1 Maybeabadidea Yolonda
Catastrophe Yolonda Green

41) Jesse: Discover G2 Squidger Y3 Squop

42) TwoShort: Discover R2 Sweet B3 Bluestar

43) Jesse: Build R2 Purple

44) TwoShort: Trade R2 Y2 Bluestar

45) Jesse: Move R2 Purple Grogar

46) TwoShort: Trade R3 G3 Cranberry

47) Jesse: Sacrifice G2 Squop
Build R2 Grogar
Build R3 Chewtoy

48) TwoShort: Trade R1 Y1 Cranberry

49) Jesse: Attack R1 Grogar

50) TwoShort: Sacrifice G3 Cranberry
Build Y2 Bluestar
Build Y3 Cranberry
Build G1 Twoshort

51) Jesse: Move Y2 Jesse Bluestar

52) TwoShort: Sacrifice Y2 Bluestar
Discover Y2 Bluestar G2 Retrograde
Move Y3 Cranberry Grogar

53) Jesse: Build G2 Jesse

54) TwoShort: Build R1 Twoshort

55) Jesse: Trade R3 G3 Chewtoy
	TwoShort: Between you and Danner, I feel like I've got a "Monopolize Red" sign on my forehead...
	Jesse: Wow, it looks like you're royally boned in that one.
	Jesse: Wow, it looks like you're royally boned in that one.
	Jesse: Huh.  I wonder how that got double-submitted.

56) TwoShort: Move R1 Twoshort Grogar
Catastrophe Grogar Red

57) Jesse: Sacrifice G2 Jesse
Build G2 Chewtoy
Build Y2 Bluestar
	Jesse: Hmm, that was rather a bad case of tunnel-vision.

58) TwoShort: Discover G1 Twoshort B1 Bluto

59) Jesse: Sacrifice G3 Chewtoy
Build G2 Jesse
Build G3 Chewtoy
Build R1 Chewtoy

60) TwoShort: Trade Y1 R1 Cranberry

61) Jesse: Sacrifice G3 Chewtoy
Build G3 Chewtoy
Build Y1 Jesse
Build R2 Purple

62) TwoShort: Move Y2 Retrograde Cranberry

63) Jesse: Move R2 Purple Bluto

64) TwoShort: Sacrifice G1 Bluto
Build R2 Cranberry

65) Jesse: Sacrifice G3 Chewtoy
Build G1 Chewtoy
Build G2 Chewtoy
Build R3 Bluto

	TwoShort: Well done as usual!
	Jesse: Thanks for another great game.


3298)
Started: 2006.4.28, Ended: 2006.6.5
Participants: babelfish (S), dralius (N)
Winner: dralius

1) dralius: Homeworld B3 G2 Y3 *
	dralius: I am a true novis when it comes to homeworlds. But I do know someone who is not so let's ask for some tutoring.

2) babelfish: Homeworld G3 B1 Y3

3) dralius: Build Y1 Dralius
	babelfish: I hate reading the rules!
	dralius: I have asked a friend of mine to advise us but i guess he has not been on in a few days.


4) babelfish: Build Y1 Babelfish

5) dralius: Trade Y1 R1 Dralius
	babelfish: Well, I guess I'll just keep doing what you do. :)
	dralius: That may be ill advised
	dralius: in fact i am sure of it.

6) babelfish: Build Y1 Babelfish
	dralius: This game is extremely oblique. Everything you need to accomplish requires you to do something else first to prepare for it including preparing for the action you with to take. 

7) dralius: Build R1 Dralius

8) babelfish: Trade Y1 R1 Babelfish
	babelfish: You're looking awful hostile.

9) dralius: Discover R1 Dralius G1 Boogie

10) babelfish: Discover Y1 Babelfish G2 Tweety
	babelfish: oh crap, what do i do now?

11) dralius: Build Y1 Dralius

12) babelfish: Build Y1 Babelfish

13) dralius: Trade Y1 B1 Dralius
	CDRodeffer: Howdy! Dralius invited me to kibitz here, said it's a teaching game. Is it OK if I offer some suggestions?

14) babelfish: Build Y1 Babelfish
	babelfish: PLEASE DO!!

15) dralius: Move B1 Dralius Boogie
	CDRodeffer: Babelfish, you're vulnerable to a yellow catastrophe in your home system and are also in danger of being locked out of the blue economy. Dralius could, in three moves, move his small red ship from Boogie to tweety, attack your small yellow ship there, then move it into your home system to trigger a catastrophe. To prevent it, you might want to either build a medium yellow ship in tweety (to prevent the attack and assure access to medium ships) or trade one of your small yellow ships in babelfish for a small blue ship. Both will buy you time to get into the blue economy, which is important for defense against and, later, for triggering timely catastrophes. But it's Dralius' turn now. You might want to either set up the attack outlined above, or possibly build another small blue ship in Dralius. That would make three blue elements in you home system, but you have tempo now, and babelfish couldn't immediately move in for a catastrophe. To protect your home system, you might then want to trade one of the small blue ships in Dralius for a small green ship to gain access to mobile building technology, especially since green pieces are quickly being depleted. Getting a large green ship and another green ship of any size in the same system (preferably one without a green star) is an investment for the future that will eventually (once the rest of the green pieces are gone) become a "factory", enabling you to build twice as quickly by sacrificing the large green ship, rebuilding the large green ship right where it was, and then building two other ships in any other systems you occupy.
	dralius: WOW i could do all that!?!

16) babelfish: Trade Y1 B1 Babelfish

17) dralius: Build R2 Boogie
	CDRodeffer: At this point, you both should probably be thinking of building some of those freshly available medium ships. Dralius might be especially interested in getting a medium red ship in Boogie to go after whatever babelfish can get to tweety before Dralius takes it over. I'm sorry, but I don't see any reasonable defense against that now. Moving the large yellow ship from babelfish to tweety would let you keep that system, but it would leave your home system very vulnerable. Alternatively, babelfish could build a medium red ship in babelfish, then move it to tweety on a turn when Dralius has something dire elsewhere to accomplish. This would set up, to borrow from Go, a "ko threat" in tweety.
	dralius: I'll take that advice. 


18) babelfish: Build R2 Babelfish

19) dralius: Trade R1 Y1 Boogie

20) babelfish: Move R2 Babelfish Tweety

21) dralius: Discover R2 Boogie Y2 Chacha

22) babelfish: Move R2 Tweety Boogie
	CDRodeffer: Babelfish should note that Dralius' R2 in ChaCha is only one step away from the babelfish home world. It's OK for now -- even if he invades, you can attack and take over his R2 before he has a chance to attack any of your ships, and he would be unable to attack your Y3 in any case. However, you probably DON'T want to immediately build another blue or yellow ship in your home system. If you did, it would make the third element of either of those colors. Dralius could then move the R2 to babelfish and, if you don't immediately attack it, sacrifice the B1 in Boogie to change its color to either blue or yellow (whichever you just build) and trigger a catastrophe. This would cost you either your Y3 flag ship or your B1 sun, neither of which would be a very happy prospect. Fortunately for you, Dralius cannot immediately build a second ship in ChaCha. If he were able to build a second ship there, and if he were able to build a Y2 in either Boogie or Dralius and sacrifice it to move both ships into babelfish, you'd have to sacrifice your R2 in tweety to save yourself. Now, what can you do to prevent all that bad stuff from happening? Hint: Try causing a distration elsewhere to which Dralius has to respond. Where and how is he vulnerable?

23) dralius: Move B1 Boogie Chacha
	dralius: Oh man what a day i had. I will delay my move until i get some rest.

24) babelfish: Trade Y3 R3 Babelfish

25) dralius: Build Y2 Boogie
	babelfish: Brian helped me with this move.  Do you think it is a good one?
	dralius: That may put you in danger of a disaster. Heck i am no expert, just winging it as i go.
	CDRodeffer: I don't believe that babelfish is in any immediate danger from a disaster due to trading the Y3 for R3. On the other hand, I don't really understand why babelfish made that exchange now, when other moves may have given you more of an immediate advantage, such as build y2 tweety or build y2 babelfish. Build b2 babelfish would have been clearly bad, however, because then Dralius could have done move b1 ChaCha babelfish catastrophe blue. Actually, Dralius could still work toward such an attack, and have it in three if babelfish doesn't do something to prevent Dralius from doing build y2 Dralius, build b2 ChaCha, sacrifice y2 Dralius move b1 babelfish move b2 babelfish catastrophe blue babelfish. Or even more damaging, Dralius could build y2 Dralius, build r1 ChaCha, sacrifice y2 Dralius move r1 ChaCha babelfish move r2 ChaCha babelfish catastrophe red babelfish! It's imperitive that you do something to defend against one of these. There are two paths, each taking three turns, so babelfish has at least one extra tempo to get it done. One thing that would delay this would be to somehow get a y1 back in the stashes to prevent Dralius from building y2.
	dralius: Just too much to think about in this game.


26) babelfish: Attack Y2 Boogie
	bigby: I thought that the 3 ship had to be red in order to attack dralius if he entered babelfish.  But after reading the rules again, You just have to have a red ship in the sector in order to attack, correct? so babelfish's Y3 could turn back dralius' R2 as long as babelfish leaves R1 in the system? 

27) dralius: Build R1 Dralius
	babelfish: i need an inordinate amount of help to play this game.

	bigby: That's okay.  We all need to learn it before the triathalon!
	dralius: It is unlikly that i will understand how to play by the 28th.

28) babelfish: Build R2 Boogie
	babelfish: I am definately out of the tri.  I'd love to do the first one suggested (cannon, pulling strings, fortac)

29) dralius: Build Y2 Dralius
	dralius: No new Cannon until it's fixed :(

30) babelfish: Move R2 Boogie Dralius
	babelfish: No Cannon nor Fortac?  What's a girl to do?
	dralius: Storm the gates!!
	babelfish: Brian proposed on Friday night.  Woo hoo!
	dralius: Congratulations. 



31) dralius: Move R1 Dralius Boogie

32) babelfish: Attack Y2 Dralius

33) dralius: Attack R2 Dralius

34) babelfish: Build R3 Boogie

35) dralius: Move R1 Dralius Boogie
Catastrophe Boogie R
	dralius: ever get that sinking feeling?


36) babelfish: Move Y2 Dralius Boogie
	babelfish: I'm too confused to have any kind of feelings.
	dralius: Do you like hard cider?

37) dralius: Build Y3 Dralius

38) babelfish: Move B1 Babelfish Tweety
	babelfish: like Woodchuck? yep.
	dralius: just bottled some very tart hard cider last weekend. I will save some for the BBQ.
	babelfish: cool

39) dralius: Trade Y3 R3 Dralius

40) babelfish: Discover B1 Tweety R1 Elmo

41) dralius: Move Y1 Boogie Chacha

42) babelfish: Build Y3 Tweety

43) dralius: Trade Y1 R1 Chacha

44) babelfish: Move Y3 Tweety Elmo

45) dralius: Move R2 Chacha Babelfish
	dralius: Danette is working on the 3rd so we can't get together quite as early as i thought. How is 5pm for U?

	babelfish: Actually, that's better for us too.
	dralius: We are planning on BBQ pork ribs. Do you have any dietary restrictions? We can change that, there are plenty of other good things to grill.
	babelfish: Nope, that's what I made for you guys, silly.  My fav.  I basically eat nearly everything...(in mass quanities.)
	dralius: So far the only other items we are set on is corn on the cob and cider. I'll make up my mind on the rest by tommorow
	babelfish: what should we bring?
	babelfish: dessert? 
	babelfish: I don't know what the heck to do next, I'm stalling, can't you tell.

46) babelfish: Trade Y3 R3 Elmo

47) dralius: Attack Y1 Babelfish

48) babelfish: Move Y2 Boogie Dralius
	dralius: desert is fine

49) dralius: Move R1 Chacha Babelfish
Catastrophe Babelfish Red
	dralius: How was the race?

	dralius: i hope the SDG Triathalon is less painful


3293)
Started: 2006.4.30, Ended: 2006.5.4
Participants: TwoShort (S), GeepaMoogle (N)
Winner: TwoShort

1) GeepaMoogle: Homeworld B3 Y1 G3

2) TwoShort: Homeworld B2 R1 G3
	GeepaMoogle: Checking out your game with jeep by the way.  I may be in over my head..

3) GeepaMoogle: Build G1 Geepamoogle
	TwoShort: Well, for what it's worth, I think both Jeep and I feel in over our heads in that game :)  Anyway, have you played much Homeworlds before?
	GeepaMoogle: Not really.  Although I have tried to study some useful tactics to keep in mind, and the relative strengths and weaknesses of things.
	GeepaMoogle: A defensive side to your homeworld, eh?  Interesting.

4) TwoShort: Build G1 Twoshort

5) GeepaMoogle: Discover G1 Geepamoogle Y2 Vesperoutpost
	GeepaMoogle: I really ought to play this by email sometime.  Perhaps with a separate account, so I can craft amusing stories as I play.  I saw one game that was logged and the text was amusing to say the least.  (Russell vs Andy, accessible from Wunderland somewhere)
	TwoShort: The red homeworld star is definitely contrary to conventional wisdom.  Jesse played it that way in our current game, and did well with it, so I figured I'd try it.  The advantage is not so much that it's red, but that it isn't green or yellow, letting you have more ships of those colors before you get close to a disaster... Or that's the theory anyway; first time I've tried it.

6) TwoShort: Trade G1 Y1 Twoshort

7) GeepaMoogle: Build G1 Geepamoogle
	GeepaMoogle: Save the choices which would give warnings, all opening star/ship trios might have some benefits.  Although I suspect that you want a blue and green somewhere, and you don't want a red ship in the normal setup.  (However, a red ship might be useful for a blitz set-up)

8) TwoShort: Build Y1 Twoshort

9) GeepaMoogle: Trade G1 B1 Geepamoogle

10) TwoShort: Discover Y1 Twoshort G3 Grogar

11) GeepaMoogle: Move B1 Geepamoogle Vesperoutpost

12) TwoShort: Build G1 Twoshort
	TwoShort: Without gree, the only thing you can do on your first turn is turn you ship green.  Without blue, you could theoretically grow, and then move to blue, but it would be pretty crippling.
	TwoShort: I can't really see starting twith a shiop that wasn't green or yellow either.

13) GeepaMoogle: Build B1 Vesperoutpost
	GeepaMoogle: Keep trying to think of other possible functions for ships  (outright destruction comes to mind) but nothing all that great can I come up with.

14) TwoShort: Discover G1 Twoshort Y3 Yolonda
	TwoShort: Well, actually, as the second player, I'll start with a b3 ship (and b1 star) if the opponent started with a b1 star, but that's a special case strategy.

15) GeepaMoogle: Trade B1 R1 Vesperoutpost
	GeepaMoogle: I will probably be back a bit later.  Hungry and I want to get a set of extra trees so I can have two games on table at one time (as well as the dice for a pattern matching game)
	GeepaMoogle: Nice..  You seem to have locked me out of yellow for now.

16) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y2 Grogar
Build Y3 Twoshort

17) GeepaMoogle: Trade G3 Y3 Geepamoogle

18) TwoShort: Sacrifice Y2 Grogar
Discover Y1 Grogar R2 Doomtown
Move Y1 Doomtown Geepamoogle
	TwoShort: So as long as we're tossing around strategy tips; letting your opponent monopolize a color is bad, and that goes tripple for yellow :)


19) GeepaMoogle: Trade Y3 R3 Geepamoogle
	TwoShort: Sorry, I have a hard time not going for the throat when I see an opening...

20) TwoShort: Discover Y1 Geepamoogle B2 Sentrypost
	GeepaMoogle: I didn't consider you might attempt to cripple my people on the eve of crowning the newest cruise vessel.  They have demanded your head now.  (Space cruises can come later.)

21) GeepaMoogle: Build G1 Vesperoutpost
	TwoShort: Clearly a warlike weapon-building people such as yourselves must be contained. I'm afraid we cannot allow you access to hyperdrive technology.

22) TwoShort: Trade Y3 G3 Twoshort
	GeepaMoogle: We have done your people no harm, nor have we invaded your space.  Our enforcer ships are strictly defensive.

That and your scouting ship nearly ran the Queen Mary space cruiser into the planet.  The results would have been devestating.

23) GeepaMoogle: Move G1 Vesperoutpost Geepamoogle

24) TwoShort: Build G2 Twoshort
	TwoShort: We were simply trying to help out your celebration with an exciting fireworks display.  Sorry you got the wrong impression.  Hopefully we'll have another opportunity to share our fine fireworks with you soon.

25) GeepaMoogle: Build G2 Geepamoogle
	GeepaMoogle: Well, next time, do check with Vesper Defense Outpost.  All Federation traffic is supposed to flow through there.  Our scientists report a star explosion in the general direction your ship came from.  Your pilot might need a vacation.

26) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Twoshort
Build G3 Twoshort
	TwoShort: Such beaueaucratic restrictions mean fireworks shows will take considerably more resources to arrange.  We'll just have to set up a little factory to speed up production.

27) GeepaMoogle: Trade R3 Y3 Geepamoogle
	GeepaMoogle: It's not beaurocratic.  We just want to make sure the guy running the fireworks knows how to handle them safely.  Our galactic coroners have determined "fireworks" were the reason that one star exploded.  Luckily, that planet was only inhabited by telemarketers, so everything ended up OK.
	GeepaMoogle: Also curious, do I seem to be on the road to recovery?  It's 1L,1M,4S vs 1L,2M,3S at the moment for whatever that is worth.
	TwoShort: Well, honestly, I think you're doomed.  My basic thought on things to look at is Who has more 3 pointers? and Who has more yellow, particularly 2 & 3 pointers?  So I'm slightly ahead now, but I also have a factory going, which I'll use this turn to take the rest of the green so you can't set up your own factory, and in 2-3 turns I'll use it to take 2 of the 3 remaining yellows.  On the other hand, I thought I had you finished off when I threw the yellow into your homeworld,  so a comeback might well be possible... but it doesn't look good. 

28) TwoShort: Trade G2 R2 Twoshort
	TwoShort: Um, I mean, production is ramping up, and we look forward to brining the people of GeepaMoogle some fine fireworks displays in the future!

29) GeepaMoogle: Build G2 Vesperoutpost
	GeepaMoogle: Sucks to get off to an early bad start.  Ah well, it would seem we have reaquired our Queen Mary after a ramp down of security.  Politicians were worried to learn someone was buying up all the cocktail napkins, so were motivated to pass the measure restoring her before it was too late.

30) TwoShort: Sacrifice G3 Twoshort
Build Y2 Sentrypost
Build Y3 Grogar
Build G3 Twoshort

31) GeepaMoogle: Build B1 Vesperoutpost

32) TwoShort: Sacrifice Y2 Grogar
Move Y2 Sentrypost Geepamoogle
Move Y1 Sentrypost Geepamoogle
Catastrophe Geepamoogle Yellow

33) GeepaMoogle: Trade G2 Y2 Vesperoutpost
	TwoShort: Our forces at sentryPost have grown tired of sitting there watching the exciting goings on on your homeworld, and have decided to come visit.  Naturally, they'd like to celebrate this meeting of our cultures with a fine fireworks display!

34) TwoShort: Sacrifice Y3 Grogar
Move G1 Yolonda Vesperoutpost
Move G1 Vesperoutpost Geepamoogle
Move G3 Twoshort Geepamoogle
Catastrophe Geepamoogle Green
	TwoShort: And now I'm sure I have you; I've got 3 pointers and you don't, and I can keep you from getting any before I use mine to take over your homeworld.
	GeepaMoogle: Bleh.  Is there any place that has a list of useful tactics and traps to watch for?

	GeepaMoogle: I know it's over, just keeping the game alive until I get a response.
	TwoShort: There's the wiki here, and the one at icehousegames.org, but the total amount of strategic advice there isn't that great.  Certainly the best way to learn is by playing;  I'll certainly be happy to play again any time.  If you like, we could play an unrated game- I'll still play the same way, but I'll feel freer to blather on about the strategies I'm trying and what I'm thinking at each stage.  I like talking about homeworlds stragtegy about as much as I like playing, but in a rated game I can't bring myself to tell you to look out for the surprise attack you might not be seeing...
	TwoShort: Oh, and just so you know, I beleive you can keep chatting in a game even after it ends...


3330)
Started: 2006.5.1, Ended: 2006.5.14
Participants: GeepaMoogle (S), jeep (N)
Winner: jeep

1) jeep: Homeworld B1 Y2 G3

2) GeepaMoogle: Homeworld Y3 B1 G3

3) jeep: Build G1 Jeep

4) GeepaMoogle: Build G1 Geepamoogle

5) jeep: Trade G1 B1 Jeep

6) GeepaMoogle: Trade G3 B3 Geepamoogle

7) jeep: Build B2 Jeep
	GeepaMoogle: Already had TwoShort try locking me out of a color.  No thank you..

8) GeepaMoogle: Build B2 Geepamoogle
	jeep: Yeah, it's no fun.  At least, if you are the one locked out.

9) jeep: Discover B2 Jeep Y3 Ribbon
	GeepaMoogle: Well, since my initial MegaMall was such a success, the people have demanded I build a franchise out of it.  Behold the new, more convenient Malls'R'Us.

10) GeepaMoogle: Trade B3 G3 Geepamoogle

11) jeep: Sacrifice G3 Jeep
Build B2 Ribbon
Build B3 Ribbon
Build B3 Jeep

12) GeepaMoogle: Build B3 Geepamoogle

13) jeep: Sacrifice B2 Ribbon
Trade B3 G3 Jeep
Trade B3 Y3 Ribbon

14) GeepaMoogle: Trade B2 Y2 Geepamoogle

15) jeep: Sacrifice G3 Jeep
Build B2 Ribbon
Build B2 Ribbon
Build B3 Jeep

16) GeepaMoogle: Discover B3 Geepamoogle G2 Gaia

17) jeep: Sacrifice B2 Ribbon
Trade B3 G3 Jeep
Trade B2 R2 Ribbon
	GeepaMoogle: Well, my first game against TwoShort was a disaster, as evident by the fact it was over in a week.
	GeepaMoogle: I chalk it up to ignorance of some of the more advanced ploys and/or potential hazards to take advantage of.

18) GeepaMoogle: Build B2 Gaia

19) jeep: Build G1 Jeep

20) GeepaMoogle: Trade B2 Y2 Gaia

21) jeep: Move G1 Jeep Ribbon

22) GeepaMoogle: Build Y1 Geepamoogle

23) jeep: Build G1 Jeep

24) GeepaMoogle: Move G1 Geepamoogle Gaia

25) jeep: Build B2 Ribbon

26) GeepaMoogle: Build Y1 Gaia

27) jeep: Discover Y3 Ribbon G2 Stage

28) GeepaMoogle: Move Y1 Geepamoogle Gaia

29) jeep: Sacrifice G3 Jeep
Build G2 Ribbon
Build G3 Jeep
Build Y1 Stage

30) GeepaMoogle: Build G3 Geepamoogle

31) jeep: Move Y3 Stage Geepamoogle

32) GeepaMoogle: Trade Y2 R2 Geepamoogle

33) jeep: Sacrifice R2 Ribbon
Attack R2S Geepamoogle
Attack G3S Geepamoogle

	GeepaMoogle: Curses.  I missed that possibility.  It seems plain enough to me I currently lack the foresight to survive the opening phases.
	jeep: Well, making the small universe was the problem, I think.  I had the first shot, so the small universe just helped me.
	jeep: Uh... ignore my last comment, I thought this was a different game.
	GeepaMoogle: I was about to say..  Well, I think I was toast whenever your large piece moved in and you had some reds ready to sacrifice.  However, I thought making my own that you would then retreat, and I could then make use of my factories somehow


3321)
Started: 2006.5.2, Ended: 2007.6.22
Participants: andylooney (S), Danner (N)
Winner: andylooney

1) Danner: Homeworld B2 G1 R3
	Danner: hi

2) andylooney: Homeworld B3 R2 G3
	Danner: I'm working on a HomeWorlds Visual Basic program :)
	andylooney: Cool! 

3) Danner: Build R1 Danner

4) andylooney: Build G1 Andylooney

5) Danner: Trade R1 Y1 Danner

6) andylooney: Trade G3 Y3 Andylooney

7) Danner: Build Y1 Danner

8) andylooney: Build G1 Andylooney

9) Danner: Build R1 Danner

10) andylooney: Build G2 Andylooney

11) Danner: Trade Y1 B1 Danner

12) andylooney: Discover G2 Andylooney Y1 Different

13) Danner: Trade R3 G3 Danner
	Danner: you have cool strategy :)

14) andylooney: Build G2 Different

15) Danner: Discover Y1 Danner G3 Deepspace

16) andylooney: Discover G2 Different G3 Jolly

17) Danner: Build Y1 Deepspace

18) andylooney: Build G2 Different

19) Danner: Build Y2 Deepspace

20) andylooney: Build Y2 Andylooney

21) Danner: Build B1 Danner

22) andylooney: Trade G1 B1 Andylooney

23) Danner: Sacrifice B1 Danner
Trade G3 Y3 Danner
	Danner: 1. sacrifice Y3 andylooney; move G2 Different Jolly; move G2 Jolly Danner; move G2 Jolly Danner; catastrope Danner G;
2. sacrifice Y2 andylooney; move B1 andylooney Different; move B1 Different Danner; catastrophe Danner B;
This is your plan, isn't it? :)

24) andylooney: Build G1 Andylooney

25) Danner: Build R1 Danner

26) andylooney: Build G3 Different

27) Danner: Build Y2 Danner

28) andylooney: Discover G3 Different Y3 Howell



3380)
Variants: "Unrated"
Started: 2006.5.5, Ended: 2006.5.21
Participants: Keith (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B3 G3
	TwoShort: Well, at least I think I like expounding in unrated games... the one I just started vs. GeepaMoogle is the first unrated game I've played.
	TwoShort: So anyway, expounding: always start with a green or yellow ship.  I prefer green, and I think it's easier for beginners, but some quite good players (e.g. Andy Looney) prefer yellow, and do quite well with it.  One of your stars should be blue; last week I would have said the other should definitely be green or yellow (whichever your ship isn't), but then Jesse started a game against me with it red, and I can see the potential (actually having red is of minor benefit; being able to have more yellow & green ships without aproaching catastrophe is the real advantage.)

2) Keith: Homeworld Y2 B1 G3
	TwoShort: Oh, and sizes: the ship should be a 3 pointer, for the stars I'd normally take a 1 & 2 (I'm being nice, and letting you); typically I'd be taking the 1 & 3 because I was going second and my opponent took 1 & 2.  It's mainly about what you're moving to;  moving to three points gives you a bit of control over their availability; moving to one points can be limiting when they disappear fast.
	TwoShort: You could of course also take 1 & 3 for a "small universe" game, or two twos to make us immediately ajacent.  But that is widely considered not as much fun, and a disadvantage for the second player in any case.

3) TwoShort: Build G1 Twoshort
	Keith: Thank you for accepting my challenge.  It was your expounding comment in your unrated game with GeepaMoogle that gave me the idea.  

I saw that Jesse took red and your comment about it but whatever advanced player advantage it offers is beyond my understanding.  

I have only reached my second turn in my only other Homeworld game so I have no sense yet for one pointer depletion speed and game impact.  I will take your setup advice and the opportunity for a 1 & 2 homeworld.
	TwoShort: build g1 twoshort

4) Keith: Build G1 Keith
	TwoShort: Someday I'll stop typing orders in the wrong field...  Anyway, here in the early game, we'll both be building and expanding outward.  The things to think about are color monopolies and 3 pointers.  If all the pieces of one color are gone from the stash, and you don't have any as ships, it will be a problem.  If it happens with yellow, it will be crippling.  Assuming neither of us allows that to happen, the big deal will be who gets more three pointers when they become available.  
	Keith: Well at this point I can only build green.  Can't see trading it or I would have started with that color.  Can't move the g3 and would not want to.
	Keith: I can see how you would type your order into the comment field.  I just started to.  I think it is because of the game board.  The order input box is way far away.

5) TwoShort: Trade G1 Y1 Twoshort

6) Keith: Trade G1 Y1 Keith
	TwoShort: Yeah, the first turn is pretty much always the same: grow another of whatever your initial ship is.  
	TwoShort: Trying to monopolize colors or get 3 pointers are sort of medium-term goals, but the groundwork for them starts coming into play pretty quickly.  For example: if I had grown another green 1 point, you could get a green 2 point; not huge deal, but certainly better for you than me.  By flipping to yellow, there is only one yellow one point left; if you let me take it, you can't get yellow except by growing to a two point and using blue before I'm able to take both two points, or by flipping your 3 point to yellow and building without letting me get one more yellow into your homeworld to cause a catastrophe; all in all, it will be a pain; so I'd recommend taking the 1 point :) 
	Keith: Given game lengths averaging 17 turns development would have to be fast.  It would seem to be much easier to get a yelllow one point than to wait and see if I get a two pointer in time.

7) TwoShort: Build G1 Twoshort

8) Keith: Discover Y1 Keith G3 Maruko
	Keith: Lets see if I can complicate the potential factory.

9) TwoShort: Discover Y1 Twoshort G2 Grogar

10) Keith: Build Y2 Maruko
	TwoShort: Well, in the factory, you sacrifice a G3 to grow two other peices, then re-grow the same g3 you sacrificed.  
	TwoShort: So moving your yellow to a g3 doesn't really impact it dierectly (though it's a fine move in any case)
	Keith: Ahh.  I was thinking no g3 in the pool no factory.  So if my understanding is correct then sacrificing a y3 puts a y3 in the pool that stays and the same for r3.  The down side of the sacrifice is a window of piece opportunity for your opponent.  A b3 could be pulled back out of the pool but it is a limited cycle process as a 3-pointer is lost every cycle.  However, a g3 sacrifice cycle can be repeated as long as a player wants. 

11) TwoShort: Build G1 Twoshort

12) Keith: Discover Y1 Maruko B2 Nikos
	TwoShort: Yes, sacrifice anything and it immediately goes into the stash.  Ditto if you move or sacrifice the last ship at a system: the system immediately goes into the stash.  This is what enables the factory, and also the "investment", where you sacrifice a green that is the only ship at it's (generally Y3) system to immediately grow the system as a ship.

13) TwoShort: Discover G1 Twoshort B2 Bluestar

14) Keith: Build G1 Keith
	TwoShort: So I imagine you did that so you would have more room to grow yellow at Maruko, which is a fine idea.  but that ship isn't doing much for you back at your homeworld.  Moving to a new g2 or b2 would probably be a better choice.  Growing another green at your homeworld should probably also be on your agenda for this turn or next.
	Keith: My concern for growing a new green anywhere is hastening the start of your factory effort.  I take it the advantage of a new g2 system is that is is adjacent to your homeworld.  A new system did not occur to me at all.  In retrospect I think a b2 would fit the ideas I had in mind better.  Would there have been a difference between discovering a new g2 and moving to grogar?
	TwoShort: Feel free to undo if you want.  I'd probably move to a b2, but even if you move to a g2 it will be a few turns at least before I can safely factory.  Moving to Grogar doesn't sound so good; you don't have anything you can flip to red right now, while I do and would get the first chance anyway.  You could always run away if I did, but why give me the initiative in deciding when/whether to force that?  Really, in your shoes, rather than worrying about delaying my factory, I'd make sure your own factory is set up and ready to go.
	TwoShort: The advantage of moving to a two (green or blue) is not so much that it's ajacent to my homeworld (though there is nothing wron gwith that), but that it is not your homeworld.  Having the y1 at your homeworld does nothing, because you already hve yellow access there.  As soon as I have a y2 you won't want to have 3 yellows there, so you can't grow more yellow there.  When we start with the factories, you'll want to have as many places to grow as you can.
	Keith: I feel a bit a awkward taking the move back because the need is based on my event horizon being only one or two ply so that a one ply screen update makes a difference.  I will do so since the game is unrated and it is okay with you.

BTW thank you for all the advice.  The game is starting to make sense.  Elements of play like ship creation restrictions, the immediate availability of a sacrificed piece, investments and factories

15) TwoShort: Build G2 Bluestar

16) Keith: Sacrifice G3 Keith
Build G2 Keith
Build G3 Keith
Build Y2 Nikos
	TwoShort: My theory on undo generally is that if the opponent doesn't want you to undo, they should make a move.  For this game, I figure the idea is to have an instructive game; if you make a move I'm sure is a bad idea, I'll encourage you to undo.  If you make a move that seems reasonble, but not quite what I'd do, I'll tell you so, then try to take advantage of the opening.

17) TwoShort: Build Y3 Grogar

18) Keith: Trade G2 B2 Keith
	Keith: I guess I will stick my neck out.

19) TwoShort: Trade G2 R2 Bluestar
	TwoShort: Well, I can't get a green to your homeworld to cause a catastrophe, so you're safe this turn.  But after this turn I'll be able to, so you'll have to spend your next turn dealing with it.

20) Keith: Build Y3 Maruko
	Keith: I thought I was probably safe for one turn but was not sure I was seeing all of your possibilities.  I was not sure whether to convert a green to a blue before taking a factory turn or after.  I decided it would be better to grab the G2 and that you would be limited to adding only on yellow in Grogar.  Though it was a Y3.

21) TwoShort: Move Y3 Grogar Maruko
	TwoShort: I'm not sure the factory was a bad move, or what I would have done instead.  But I consider 3 poiters, particularly yellow ones, to be supremely valuable, so in my opinion the real question is what becomes of the other two.  I can't safely grow them this turn, or outright stop you from growing at least one, so I'll look for ways to mess with you if you do, and maybe get the last one.

22) Keith: Trade Y2 R2 Nikos
	TwoShort: And now I should mention the gun rule: If your opponent draws their gun, draw your gun.  It's very risky to not have a red ship when your opponent has one, because they can move into a system, and get the first shot.  Ocasionally you can get away with it briefly, and I actually ignore the gun rule more frequently than most, but I often regret it.
	Keith: I dfinately feel under the gun but I want that y3.

23) TwoShort: Move Y3 Maruko Nikos
	TwoShort: Exactly the sort of reason I sometimes ignore the rule... now let's see if I can make you regret it :)

24) Keith: Move R2 Nikos Maruko
	Keith: I expect that you can.  Even more so if I misstep on this move.
	Keith: I could convert my b2 to a r2.  If you moved the y1 from grogar to Maruko we would both lose y3's and the system link to my homeworld would be eliminated.
	Keith: If you sacrificed your R2 unit, afterall I don't have a gun, then you could convert my Y3 in Maruko couldn't you?  That is more of a rules operation question than a tactical one since I could then move a Y1 in and trigger a catastrophe.
	TwoShort: If I sacrifice the r2, I could take both your peices at Maruko.  If you don't get a red or cause the catastrophe, I'll probably move the y3 into your homeworld, in which case I'll either win, or at least completely cripple you.  So you definitely want to do one of the two. I'm not sure which is better though.  For what it's worth, the system link to your homeworld is pretty irrelevant, as long as there are 3s in the stash, your're reachable.
	Keith: Given that Discover is a seperate command from Move, Attack, Build and Trade I was not sure if you could build a link and move through on the same turn.  I will need to keep in mind that, just like a ship can move more than once from a sacrifice it can attack more than once.

25) TwoShort: Build G2 Bluestar

26) Keith: Move Y3 Maruko Bluestar

27) TwoShort: Sacrifice Y3 Nikos
Discover G2 Bluestar Y3 Larry
Discover G1 Bluestar B3 Moe
Discover R2 Bluestar B3 Curly

28) Keith: Move R2 Maruko Grogar

29) TwoShort: Sacrifice G3 Twoshort
Build G2 Larry
Build Y2 Grogar
Build G3 Twoshort

30) Keith: Attack Y2 Grogar
	Keith: Well that certainly explains what you would do if I walzed a 3 pointer in among three smaller ships and threatend to convert two.
	Keith: I suppose it also puts you in a good position to crank a factory given only one piece per system.  Was such a dispersion part of your plan all along?
	TwoShort:  I didn't like the situation, so I figured I'd make big changes :)  Generally, I rarely have a definite plan.  I look for various things I could do over the course of a few turns that would be good for me or bad for you, but then I try to find the moves that produce the most different posibilities.  I think of it as trying to threaten to do more things thatn you can counter.
	TwoShort: So even now, I don't know what those ships are going to do at the 3 points, but: If you keep up the chase with your big yellow, there is only one at each system; being spread out is nice if I want to factory; if I get a big yellow again (which I'll be eager to) the greens could move in for a disaster; if you use your red, the red could move in and cause trouble; Either of the greens might at some point be able to serve as an investment.  
	Keith: I can't see galavanting around after single ships.  BlueStar was the only sector with the density to make a try worthwhile.  Not sure what to do now and my work schedule is taking away my free time for a while.

31) TwoShort: Sacrifice G3 Twoshort
Build Y3 Grogar
Build G3 Twoshort
Build R1 Curly

32) Keith: Move Y2 Maruko Grogar
Catastrophe Grogar Yellow
	Keith: If my understanding of the rules is correct I could use the r2 in grogar to convert the y2.  It might not be good strategy but I could.
	TwoShort: Well, I'm not entirely sure what you should do now, but I'm kind of short on yellow, so keeping it that way is probably a good idea, and moving you red to grogar was a fine way to pursue that.  I could have just run away, but this seemd more fun: I've set up the green catastrophe threat if you let me sacrifice the y2, so I assume you'll take it; then I'll grow the y3; then you'll move in from maruko to cause a catastrophe, and those yellows will be back in the stash and maybe I can get some.  Of course, I think the results of that little script are slightly in your favor, so if I see something better, I'll do that instead; as might you...
	Keith: I see you could move the two g2s at Larry to Keith to create a disaster.  With the y2. No y3 required.
	Keith: It is tempting to sacrifice my g3 and grow it back pluse the y3 and a b1 or r1.  But then your two g2s...

33) TwoShort: Trade R2 Y2 Curly

34) Keith: Move G1 Keith Larry

35) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Moe
Build Y1 Curly
	TwoShort: Just to keep the pressure on...

36) Keith: Move Y3 Bluestar Larry
	Keith: Hopefully that was a good idea.  It seems to leave you far away from a y3.  I am worried about your factory.  You can get another g3 but I could not safely get it.
	Keith: You are making your moves so fast I am sure I am walking into a mess you see coming but that I do not.

37) TwoShort: Trade G3 R3 Moe
	TwoShort: Not really... It took me a while to think through growing instead of running away from your red a few moves back; since then things have gone about as I expected.  I hadn't thought that last move out ahead, but I knew I wanted some yellow, and to keep threatening the green catastrophe.  The mess I see coming is that I'm going to disable your factory; either by catastrophe, or by what you'll have to do to prevent it...
	TwoShort: So, for example, it never occured to me you'd do that...


38) Keith: Build G3 Larry
Catastrophe Larry Green
	TwoShort: Funny you should mention my making moves fast... I'm sitting here saying "Isn't this a tutorial game? I'm having to think entirely too hard for that." :)
	Keith: Well thank you.  Blame the teacher.  

Yeah well ships are options and you are fast out optioning me.  Which I seem to remember you did somewhere else against a heavy duty player.

39) TwoShort: Move Y2 Curly Keith

40) Keith: Build R1 Grogar
	Keith: There seems to be so many possibilities.  Grow a g3 in Keith... no then two g2s move and catastrophe.  Grow a g3 in Larry and create a catastrophe and maybe delay more factory action with all the greens in the stash.  Convert your two greens in Larry but then I have no gun and easy catastrophe.  Hmmmm...

41) TwoShort: Sacrifice G1 Moe
Build Y2 Keith
	TwoShort: Good choice; at least compared to using your red, because if you did I would be free to move my red into your homeworld.  Which is why I was wanting to factory up another g3 I could move in to force you to use up your red, but now you shut down the factory...  So now I've got to think of a plan B...
	TwoShort: Well, there's a thought...


42) Keith: Trade Y1 G1 Nikos
	Keith: And at first impression I don't get it.  It does place two yellow elements in my homeworld.
	TwoShort: Well, as noted before, if you sacrifice your red before getting another, you're doomed.  So next turn I can grow another yellow, and the turn after that I can move in the y1 from curly for the catastrophe, destroying one of your homeworld stars.
	TwoShort: or I could sacrifice my r1 to take your b2, and start growing toward both disasters.
	Keith: It is tempting to sacrifice the g3 and grow a y2 at Larry, y3 at Nikos and an r1 at Grogar.  Partly because it gives me a second red ship but mostly because it takes the y3 you enjoy so much out of the stash.  But no three pointer in my home world and your r3 moves in with the same effect as if I had no r2.  Tricky.
	Keith: Sooner or later one of my "try this and see if I have overlooked something" is going to cost me dearly.  

43) TwoShort: Trade G1 R1 Twoshort
	TwoShort: Looks good to me; you still lose the star, but I don't think that was avoidable.

44) Keith: Build G1 Nikos

45) TwoShort: Trade R3 G3 Moe
	TwoShort: Clever idea! But I thought of it too :) 

46) Keith: Build G1 Nikos
	Keith: As it was your only real vulnerability it was worth a try.

47) TwoShort: Sacrifice G3 Moe
Build Y1 Keith
Build R2 Twoshort
Build Y3 Curly

48) Keith: Sacrifice Y3 Larry
Move R1 Grogar Twoshort
Move G1 Nikos Twoshort
Move G1 Nikos Twoshort

49) TwoShort: Sacrifice R2 Twoshort
Attack R1S Twoshort
Attack B2S Keith

50) Keith: Build G2 Twoshort
Catastrophe Twoshort Green
	Keith: Which I have done in my other learning game with CDRoddefer (which is many many turns less developed than this one)
	Keith: Though I like your slow factory idea.  Create a 3-pointer, convert it to green, then a one turn factory.
	Keith: I think it is all down hill form here for me.  I am going to try something wild - the most likely result will be accelrating the end.

51) TwoShort: Trade Y3 G3 Curly
	TwoShort: I think it's downhill for you unless I screw up. You're doing an excellent job of giving me oportunities to screw up...  This one will take a bit of figuring.
	TwoShort: Definitely a lot of ways to get this wrong.. OK I think I've got it.

52) Keith: Sacrifice R2 Grogar
Attack B2 Keith
Attack Y2 Keith
	TwoShort: By the way, I assume you're aware that you can cause the yellow catastrophe in your own system any time (as can I).  I'm not saying you should, but it might not have occurred to you.  I haven't just because I can any time, and didn't want to bring you closer yet.
	Keith: Hmmm... shoulda moved the r2 into TwoShort.  I was hoping to sacrifice my G3 and grow some red and green ships and create a double catasrophy.

53) TwoShort: Sacrifice R1 Curly
Attack B2S Keith
Catastrophe Keith Yellow
	TwoShort: I could have traded the g3 to yellow or blue if forced to.  Still, you can blow up green, and then I'll have no 3 point in my homeworld if you can get some yellow and move the r2 in...  but that's assuming you can avoid your own double catastrophe this turn.

	TwoShort: Anyway, excellent game!  Your rate of improvement was quite impressive; by the end here I felt like I had a real fight on my hands, despite having taken advantage of your inexperience in the early game.
	Keith: Thank you for the lessons and the positive feedback.  I am glad I was able to make you work for it a little near the end.  Right now I have a tough time seeing very far ahead but I have learned a lot of things to look out for.  ...I'll be back.


3367)
Variants: "Unrated"
Started: 2006.5.3, Ended: 2006.6.17
Participants: Keith (S), CDRodeffer (N)
Winner: CDRodeffer

1) CDRodeffer: Homeworld B2 Y1 G3
	CDRodeffer: OK, Keith, we're ready to go. I guess I got randomly selected to go first. When creating a home world and deciding upon your first ship, you should probably always include green somewhere (otherwise you'll be delayed in making new ships, which is very important). Whether to include yellow or blue is kind of a toss-up. Blue gives you flexibility in choosing to trade ships for new ones of the same size, but you can't go anywhere without yellow. Having red somewhere is aggressive, and it does give your home system some protection in the off chance that your opponent decides to build his star system using the same two sizes of pieces as you, but it's usually not that big a deal early on. The second player has a slight advantage in knowing what the first player chose, and if he's confident, a red ship is often a good first choice for the 2nd player. One thing you will want to be sure of is to choose a large ship first, no matter what color it is. Starting with anything smaller puts you at a huge disadvantage.

2) Keith: Homeworld G3 Y2 B3
	CDRodeffer: Here, I picked a small yellow and a medium blue for my home binary system, and a large green for my flag ship. I can't attack anything, but even so, I can't be attacked by anything else unless you somehow get another large ship into my home system, which generally doesn't happen early in the game. A ship can only attack other ships if you have access to red (either by the star or one of your own ships) AND you're attacking a ship that's no larger than (but may be of equal size to) the largest ship you have in that system. Starting with a large green ship is commonly called "the investment" because it's the first step toward making a "factory" -- a formation of a large green and any other green ship in one system with no more greens in the supply that, via sacrifice, allows a player to build new ships anywhere you already occupy at double the rate normally possible.
	CDRodeffer: If you want to be aggressive, you could choose a small and a medium for your binary star, at least one of which should probably be yellow, and a large red ship. If you want to play a more positional game, any other size combination (small plus large or medium plus large) binary star system will give you a bit more space, since systems are only connected to other systems that they do NOT share a star in a common size.
	Keith: Yeow! Even the order submission has a learning curve.  Thank you for the help.  I will be rereading the rules and your advice.  Probably take my turn later this evening.

3) CDRodeffer: Build G1 Cdrodeffer
	Keith: I decided I wanted my homeworld to be able to create ships and move them out.  At least until a catasrophe comes along.  I decided to make my size three star green to pull a G3 out of the sacrifice pool you are getting a head start on.  I don't quite grasp the factory concept yet.  It seems that if you sacrifice size 3 greens you build ships at triple rate and size 2 ships produce double rate.
	CDRodeffer: Pulling the G3 out of the sacrifice pool, as you say, actually *helps* me on my way toward the factory, because it depends upon the eventual depletion of green ships. The way the factory works is I sacrifice the G3, immediately rebuild the G3 that I sacrificed in some system where I already have another green ship (this is important!), and then build two more ships of the same color as I have elsewhere. A bit on how the game often goes -- catastrophes are a big deal, and are much more common way to cause your opponent damage than merely attacking. Your large blue is a kind of a future trap for you. If you get *any* three ships into an important system, you can sacrifice the large blue and change them all to one color, then trigger a catastrophe. Since I'll have to have at least two green ships in one of my systems at all times (probably my home system) to make the factory work, this reduces your requirements to getting only two ships in to cause the catastrophe. Yellow ships are always mobile, so they're usually the ones to move in. My general strategy for defending against that would be to try to lock down the green and/or yellow economies to prevent you being able to change the color of the ships and/or move them into my vulnerable system in the first place. But for now, I have to complete my investment.

4) Keith: Build B1 Keith
	Keith: Does the green pool have to be completed for the factory to work?  Wouldn't it work as long as the one and two point ships were depleted?  Your comments on factories did clear up one misconception I had.  I had the idea that sacrificed ships went into the pool after the special actions were taken.  I.E. into the pool avialable to the other player on their turn.
	Keith: I just encountered a rule misreading on my part.  I tried to create a Y1 ship based on the idea that I had yellow in the system.  But it needs to be a yellow ship.  So the only real option I have this turn is to build another blue ship.

5) CDRodeffer: Trade G1 R1 Cdrodeffer
	CDRodeffer: Ah, yes. I made that mistake when I first started as well. You can only build a new ship (the smallest available) in the same color as one you already have in that system, and you must have access to green (either one of your own ships or a star). The rules are kind of brief, and could probably use more examples. As for your options, you could have traded your large blue for something else, but that would have immediately lost you a tempo. The first turn is almost always spent building, hence the necessity to have green somewhere. Another thing to think about is that it's almost always good to have access to all four colors in your home system, at least eventually. So I'll temporarily trade in my small green for a small red. This way, if you do manage to get a single ship into my home system, I can defend against it. I would not be able to defend against multiple ships, though, at least not yet.

6) Keith: Trade B1 R1 Keith
	CDRodeffer: Now I can build either red or green ships in CDRodeffer, the smallest of whichever is available. Likewise, you'll probably want to trade your small blue for something else. A red would maintain a sort of balance of power, but just as it is for me, it doesn't get me anywhere immediately, except able to defend against a home invasion of a single ship. Alternatively, you could start exploring, probably with your small blue. You could discover a new small world of any color.

7) CDRodeffer: Build G1 Cdrodeffer
	Keith: I will go with red too, though more for being four color than defensive.

8) Keith: Build B1 Keith

9) CDRodeffer: Trade G1 Y1 Cdrodeffer

10) Keith: Discover R1 Keith Y1 Maruko

11) CDRodeffer: Build Y2 Cdrodeffer

12) Keith: Trade B3 Y3 Keith
	Keith: Ahhh... I see I am in danger of getting locked out of yellow ships.

13) CDRodeffer: Build G1 Cdrodeffer
	CDRodeffer: No, you've never been in danger of that. Besides, yellow is one of the colors that always seems more readily available than some of the others, particularly blue and red. I'm just building up a few ships to get ready to go exploring.

14) Keith: Build B1 Keith
	Keith: I became concerned about yellow because 5 of the 9 were out of the pool (being all the one pointers and two of the two pointers).  I suppose I could have moved out of Maruko to put a y1 back in the pool.

15) CDRodeffer: Trade Y1 B1 Cdrodeffer

16) Keith: Build B2 Keith
	CDRodeffer: That would work too. Usually, two items of any one color is pretty safe for a home system, at least until your opponent gets two ships of that color up close and personal. But that usually takes a while, except in games where both players have home systems with the same sizes of stars, where only one system needs to be between them. So in normal games like ours, I usually try to build up a small fleet to build and then explore. Not everybody does this, and the game is new enough that I don't know if it's a viable long-term strategy or not. But my thinking is that having a few ships in a few different worlds gives me more choices for where to move. And in most other types of games, more choices is a good thing. Of course, I say that having lost most of the games of Homeworlds that I've ever played....
	Keith: The one potential drawback I noticed to Homeworlds being a game that works for me is the very short average game length of only 17 turns.  I tend to prefer games that have more drawn out opening and middle phases.  So I sort of hope your explore and develope strategy is a viable one.

17) CDRodeffer: Discover G1 Cdrodeffer Y3 College_fund
	CDRodeffer: I don't believe I've ever had a game last less than 30 moves, but I may be mistaken. It seems much longer and involved in practice, at least to me.

18) Keith: Trade B1 G1 Keith
	Keith: More turns, at least in this game, means more chances to learn so I am fine with that.  I do have a hypothetical question.  If my R1 moved to College_Fund wouldn't Maruko disappear and your G1 need to evacuate to avoid conversion?

19) CDRodeffer: Move R1 Cdrodeffer College_fund
	CDRodeffer: Ships with different owners may coexist in a system, at least for some time. So if you moved your R1 from Maruko to College_Fund, my G1 would be OK. Attacking takes an action, so provided I didn't evacuate, you could then attack my G1 if you wanted to. But the answer to your other question, yes, if a star is completely abandoned, it immediately returns to the stash.

20) Keith: Build Y1 Keith
	CDRodeffer: Or, if I move a red ship into College_Fund, it can defend against your attack by attacking first if you move your R1 in. This is because I'll have tempo there. Even had I not moved an R1 in, I could still have attacked by sacrificing my R1 elsewhere (it was originally in CDRodeffer, but could have been anywhere) to perform the attack. The difference between moving first for defense and sacrifice for defense is one small ship minus one tempo.
	Keith: Right.  Sacrificing allows actions in any system occupied.  Intellectually I know this but I don't see the possibilities yet when looking ahead.

21) CDRodeffer: Build Y2 Cdrodeffer

22) Keith: Sacrifice Y3 Keith
Move Y1 Keith Maruko
Move Y1 Maruko College_fund
Move Y1 College_fund Cdrodeffer
Catastrophe Cdrodeffer Yellow
	Keith: I am worried about you getting that y3.  My first thought was to move my r1 to Keith abandoning Maruko and putting a y1 in the pool.  However, at least for next turn, you can only build a y3 at CDRodeffer and I could sacrifice my Y3 to get a y1 there for a catastrophe... Right?
	Keith: This is more aggressive than I inended a learning game to be but I think I just saw a heavy hitting move.

23) CDRodeffer: Trade B1 Y1 Cdrodeffer
	CDRodeffer: I would not have been able to build the y3 anyway, at least for another couple of turns, because I aready had three yellow elements in CDRodeffer. A sacrifice such as this is usually better as a late game tactic than this early, because as you can see, it has left you with no large ships and no immediate way to get any, and it still doesn't give you any numerical advantage in terms of fleet size.

24) Keith: Trade B2 G2 Keith
	Keith: I see what you mean.  I can't even get a 2 pointer.  And I have not gained any functionality over you.  We both have all four colors.

25) CDRodeffer: Build G1 Cdrodeffer

26) Keith: Build B1 Keith

27) CDRodeffer: Build G2 College_fund

28) Keith: Move G2 Keith Maruko
	CDRodeffer: You know that you *are* allowed to trade a solitary blue ship in for one of another color, right? So even if you had not built the B1 in Keith, you could have traded it in for the available R1 or Y1.
	Keith: I do.  I was thinking that if I took a Y1, G2 or R1 you could take a Y2, G3 or R2.  From a stash point of view B1 was the safest to create.
	Keith: Actually there was another G2.  Taking a G2 would have put you one step closer to an operating factory.

29) CDRodeffer: Trade G1 Y1 Cdrodeffer
	CDRodeffer: It will be a while before I can bring the factory into operation.

30) Keith: Move B1 Keith Maruko

31) CDRodeffer: Build Y2 Cdrodeffer

32) Keith: Trade G2 Y2 Maruko

33) CDRodeffer: Sacrifice Y2 Cdrodeffer
Move Y1 Cdrodeffer Maruko
Move Y1 Cdrodeffer Maruko
Catastrophe Maruko Yellow
	CDRodeffer: I did not mean to hit the undo button. My three year old daughter is doing her best to make my computer time difficult.....

34) Keith: Trade G1 R1 Keith

35) CDRodeffer: Discover G2 College_fund Y1 Duckling
	Keith: I don't even remember what yellow ships I had in the Maruko system except a y2.

36) Keith: Build B1 Keith
	Keith: FWIW my learning game with TwoShort went 53 moves (27 turns).
	CDRodeffer: The Maruko system was a small yellow. But you also had at least two other ships in the system that were lost when it went nova. I should have warned you about that one, I think. Anyway, 53 moves isn't too short, I don't think. We'll see how this one goes. I won't try to intentionally draw things out, but it might take a while to finish things. Back to having four colors in your home system is a good place to be, even if the ships are small. I need to rebuild after that sacrifice, so while I'm ahead two ships in material, I'm behind in tempo in terms of protecting my home system.

37) CDRodeffer: Move G2 Duckling Keith

38) Keith: Build R1 Keith

39) CDRodeffer: Build R2 College_fund
	Keith: And then you grow one green a turn until there is a green catastrophe?

40) Keith: Build R2 Keith

41) CDRodeffer: Sacrifice R1 College_fund
Attack R2 Keith
	CDRodeffer: The grow green until a catastrophe is one way to go, but it ultimately wouldn't help me much other than to blow up one of your stars. You don't currently have any green ships in Keith, so the loss would be all mine. Your building an R1 in Keith was probably the only move that could save you, else I could have sacrificed R1 in College_Fund to attack your R1 in Keith, then simply used the next few turns to progressively attack your ships until you didn't control anything in your home system. In an annotated game, you get an exclamation point for building the R1 at just the right time. That move puts me behind an attack tempo. Had I done the sacrifice, you could just attack back with no loss, and I'd be out both a ship and a tempo, so I had to find another way. You have two R1 in Keith, which is soon going to become a liability. If you build R2 in Keith, there's no way you can stop me from eventually either building a B1 in CDRodeffer to sacrifice to change G2 to R2 for a red catastrophe or just moving my extra R1 from College_Fund in via some Y1 discovery as I did with the G2. But either of those is still at least two or three turns away. What can you do to turn my attention elsewhere?
	Keith: Since you have a g2 I can't attack and now a r2 it seems your in position to sacrifice the r2 and convert both of my r1s.  Then you convert one per turn there after using an r1 without sacrificing and I can only grow ships to stay ahead till I grow myself into a catastrophe.
	Keith: The other reason I can't grow an r2 is that you could convert it with your g2 and an r1 sacrifice.
	Keith: I could build a g1 threatening to eliminate your g2 and my green star with another green build.  But you could sacrifice your r2 and convert the g1 and ...
	CDRodeffer: Yes, you could do that. Losing green technology would be a bad thing for you, long term, but it might be one way to save yourself in the short term. You could build R2 and hope that I don't capture both of your B1 ships, then change one of your ships to green (red or blue, I don't see how it would really matter), then build another G1 to cause the catastrophe. Hmmm. As an aside, I wonder -- would sacrificing multiple ships, even if they are not used, fall within the rules? Probably not, but it's an effective, if costly, way to prevent either a catastrophe or your opponent taking control of something. Better no one have something than your enemy sort of thing, the scorched earth retreat. Have you considered exploring with one of your blue ships? I haven't thought about it much, but it might be a way to do something. If you're willing to intentionally move toward a red catastrophe in your home system, you can go ahead and build the R2 -- even with my R2 sacrifice I could only take two of the ships, then you could build another and cause the red catastrophe on the following turn. It would leave me with only one R1 available to go after one of your B1 ships, but you'd still be "alive" as such.
	Keith: It seems to me that if I do move a B1 out you just sacrifice your R2 and convert both of my R1s.  Then I must grow a b1 every turn to stay ahead of the one per turn conversion rate of the R1s.  Eventually I catastrophy myself with blue growth.

42) Keith: Trade B1 G1 Keith

43) CDRodeffer: Discover G2 Keith Y1 Lonely_retreat
	Keith: Well that is pretty much that.  Awhile back you wrote " What can you do to turn my attention elsewhere?"  Did you have something in mind?

44) Keith: Build R1 Keith
Catastrophe Keith Red

45) CDRodeffer: Build R1 College_fund

46) Keith: Build B1 Keith
	CDRodeffer: Since this is a learning game, winning or losing doesn't matter, so I thought it might be fun to give us both some leeway to try out some ideas. Sound OK to you?

47) CDRodeffer: Move R2 College_fund Cdrodeffer
	Keith: Sounds good to me.  I certainly learned a good lesson about overextending too early to remove your homeworld's binary status.  And the value of three-pointers.  
	Keith: And the value of two pointers...

48) Keith: Trade B1 R1 Keith

49) CDRodeffer: Trade R2 B2 Cdrodeffer

50) Keith: Discover G1 Keith Y1 Bab4

51) CDRodeffer: Build B1 Cdrodeffer

52) Keith: Build B1 Keith

53) CDRodeffer: Trade B1 Y1 Cdrodeffer

54) Keith: Move B1 Keith Bab4

55) CDRodeffer: Move B2 Cdrodeffer College_fund
	CDRodeffer: The type of tactic I've been using the past few turns is to try to prevent you from having access to medium sized pieces, by whatever means necessary. It includes trading and building the ships as they become available, but mainly it involves leaving small ships in the supply as possible, preferably only one small ship per color that you have available to build. That way when you build a small, I have access to a medium immediately, which I could then sacrifice (if needed) before you have a chance to move any medium you could build.
	Keith: And its working.  Mediums continue to elude me for the moment.

56) Keith: Build B1 Keith

57) CDRodeffer: Build Y2 Cdrodeffer

58) Keith: Build B2 Bab4

59) CDRodeffer: Build B3 College_fund
	CDRodeffer: Great! Now that you're in position to get medium pieces, I can try to prevent your access to large pieces, while trying to secure them for myself. The keys to this sort of economic manipulation are first, to leave only ONE piece of the lower size available and second, to have at least two places where you can build the next larger size once pieces once they become available. Do you see how this is going to work out? Right now you can't build yellow, but in two turns you might be able to trade for a y2 if you decide to go that route (say build b2 Bab4 then trade b2 y2 Bab4). It would be risky for you to build b2 or b3 in Keith at the moment, at least while I have a y2 available for, say, sacrifice y2, move b2 College_Fund - Bab4 - Keith, catastrophe blue Keith. But you can (for now) either safely build blue in Bab4, or -- discover a new system somewhere. Yellow has become a bit of a strange resource in this game, which is a strange game anyway because we're not really playing to win or lose, but to learn tactics. But anyway, note that all of the star systems except CDRodeffer now have yellow suns. For mobility, I'm dependent on having at least one yellow ship in CDRodeffer. Right now there are two, but that may suggest a possible avenue of attack for you....
	Keith: The lack of a yellow ship has felt odd.  I have seen comments in other games about the difficulty of being locked out of yellow.  Though really I have just been yellow impaired.  I did put a b1 out at Bab4 so that when I got the B1s out of the way I could safely build a B2 there.
	Keith: Thank you for the extended teaching game.  With Cannon now down and out for a month it has been nice to explore Homeworlds.  I have certainly learned about the disadvantage of going without a large ship (or a medium ship).
	Keith: It does seem that if I build a B2 at Bab4 then I could not safely follow with a B3 at either Bab4 or Keith.  So I guess I will move out another b1 givng me at least two safe grow systems.
	Keith: Wait.... I can only discover a G1 or R1 both of which put you in line for a medium ship.  Hmmmm...

60) Keith: Move B1 Bab4 Cdrodeffer
	CDRodeffer: But building the b2 leaves a very tasty b3 for me to build as well. Of course, you can also now, and we'll both be in positions where we can trade it for any other large ship we need at the time. This is a good sort of combination to work toward -- a large ship of any color and access to both blue and yellow somewhere in the system. That's why that particular combination of colors is most recommended for the home system at the beginning of the game. It's both mobile and easy to change.

61) CDRodeffer: Sacrifice R1 College_fund
Attack B1 Cdrodeffer

62) Keith: Move B2 Bab4 Cdrodeffer

63) CDRodeffer: Trade B1 R1 Cdrodeffer
	CDRodeffer: If I understand your plans correctly (move b2 Bab4 CDRodeffer, sacrifice g1 Bab4 to grow another blue in CDRodeffer), then I need some way to get rid of these pesky blue aliens....

64) Keith: Sacrifice R1 Keith
Attack R1 Cdrodeffer
	Keith: Right about the B2.  Also I did not feel I could safely build a B3 in Bab4.  Now I can.  If you build a second B3 you will have three blue elements in either College fund or CDRodeffer and I can create a catasrophe.
	Keith: Though I suppose if I do build the B3 you can sacrifice the Y2 and move two B1s in.

65) CDRodeffer: Trade G3 R3 Cdrodeffer

66) Keith: Attack Y2 Cdrodeffer
	CDRodeffer: There is almost always another way to block slow (i.e., one ship at a time) invasions from leading to a catastrophe. Here's one of them.

67) CDRodeffer: Attack R1 Cdrodeffer
	CDRodeffer: Now, at most you can build one more blue in CDRodeffer, but I'll eventually take them both over if you do. I also could have simply moved the ship out of the system, or better, discovered a new system with the b1, probably a g3 to try to deny you access to green technology. Building a b3 in Bab4 probably would have been a better move for you. Sure, I could have sacrificed y2 to move in two blue ships from College_Fund, but it would have cost me three ships (two mediums and a large) and you only two (one medium and one large). If it had been in your home system, it may have been worth it, but usually not in an external system.
	Keith: And it puts a B1 back in the pool.

68) Keith: Discover Y2 Cdrodeffer G1 Greenleaf

69) CDRodeffer: Attack B2 Cdrodeffer
	Keith: I did consider the B3 in Bab4.  I even tried it and took it back.  While it is true you would have lost three ships to my two you would have ended up with two large ships, out numbering me overall, and I would have only 4 small ships.
	Keith: I did not think of your large ship going red.
	Keith: I think I needed to have a green medium in hand before starting this sequence.  Before to threaten to grow to blue ships.  Now to threaten to grow two red ones.

70) Keith: Build G2 Bab4

71) CDRodeffer: Move B2 Cdrodeffer Lonely_retreat

72) Keith: Sacrifice B1 Keith
Trade B1 R1 Keith

73) CDRodeffer: Move B2 Lonely_retreat Keith

	CDRodeffer: You're in a tough spot, Keith. I could sacrifice r1 CDRodeffer to simply attack r1 Keith, and even if you sacrifice g2 Bab4 to grow two more red ships (r1 and r2) in Keith, I could instead sacrifice r3 CDRodeffer to get all three. So anyway, given that this game isn't rated, would you rather end it or continue and explore more tactics?
	CDRodeffer: Hmm. If you had one more tempo, you could sacrifice g2 Bab4 to build y2 and y3 in Greenleaf, then move the y3 to Keith. I'd need a large ship to attack that, and the nearest is two steps away.
	Keith: I think we can wrap this up.  It has been very helpful to me.  Thank you very much.  I have my first chance to apply what I have learned right now in my game against Cobalt.  I can sacrifice a Y2 to move a G1 to his homeworld where I can trigger a disaster taking out all of his green including one star.  I would still have a Y3 at my homeworld.  However, I would only have two ships left to his four.
	Keith: I will look over this game again tomorrow morning sometime and then resign.


3372)
Variants: "Unrated"
Started: 2006.5.4, Ended: 2006.5.18
Participants: GeepaMoogle (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3
	TwoShort: I figure it's more fun this way; I enjoy expounding on my homeworlds strategy theories, and the game could use more players, so I'd like to help you out, but in a rated game I don't want to help so much that I might lose...
	TwoShort: Anyway, lesson 1: Homeworld selection.  As first player, unless I'm trying a wacky experiment, I'll always go with y1 b2 g3.  Others like g1 b2 y3.  Either a yellow or green ship is reasonable, but I think the green is more straightforward.  You certainly want access to blue, so thats one star, and the other star is whichever of green/yellow you didn't take for the ship.  (As noted in our last game, I'm toying with the other-star-red theory, which is a fine example of the fact that strategies in this game are still in a pretty early stage of evolution, so don't take anything I say as gospel)

2) GeepaMoogle: Homeworld G3 B1 Y3
	TwoShort: So, as second player, the same advice holds, except that you presumably want to use different size stars than me, typically a 1 and a 3.  The thing to consider in star-size selection is what you'll be moving to.  Moving to 3s is nice because it makes it a bit easier to influence the availability of 3s in the stash.  Moving to 1s is not as nice, because they'll be gone fairly quickly and limit your options.
	GeepaMoogle: I knew there was some reason why 2/3 homeworlds weren't often used in Binary Homeworlds.

3) TwoShort: Build G1 Twoshort

4) GeepaMoogle: Build Y1 Geepamoogle
	GeepaMoogle: We'll try starting with mobility this time.  Is there any advice on whether or not to match an exact piece in color/size combo?
	TwoShort: Not really; besides getting access to the colors you want, and having the two sizes you want, the only other consideration is what's left in the stash.  If you drain the little guys of a particular color, it will make getting to the bigger ones slightly easier, which might be good for your oponent (if you had taken a small green for example) 

5) TwoShort: Trade G1 Y1 Twoshort
	TwoShort: Stash management is really what much of the strategy is about.  Here in the early game, we'll be building a buch of small stuff, but mainly jockeying for the chance to build the bigger stuff.  If you build the last 1 pointer of a color, I'll get first chance to build 2 pointers, and so again with 3 pointers.  Before long we'll rip through one or more colors (most likely green and/or yellow) and at that point we both want to be the guy with more three pointers, or a monopoly on a color (particularly yellow).

6) GeepaMoogle: Build Y2 Geepamoogle

7) TwoShort: Build G1 Twoshort

8) GeepaMoogle: Trade Y2 G2 Geepamoogle
	GeepaMoogle: Was gonna do a trade for green to deny you a y2, but then I figured this way I get a y2 before I clear possible catastrophe in yellow.  Besides, either way next move is likely a swap for green.
	TwoShort: Yeah, the common way to lock the other guy out of a color is to take all the one points before he gets either that color or access to two points.  So that's probably not going to happen to either of us.

9) TwoShort: Discover Y1 Twoshort G3 Grogar
	TwoShort: A couple stratagems to be aware of-  
The Factory: If green is sufficiently depleted one can sacrifice my G3, grow twice, and re-grow the same G3 I sacrificed.  Technically, one can do this if there are two g2s left assuming one has room to grow that much green without a catastrophe.  Practically, I won't do it if it just leaves another G3 available for you to take.
The Investment: in this strategem, one moves a green to a Y3 system.  The other guy won't be able to get that y3 as a ship.  After all the yellow is gone, if that green is still alone at the system, you can "cash in" by sacrificeing the green, and growing the Y3.

10) GeepaMoogle: Build Y2 Geepamoogle

11) TwoShort: Build Y2 Grogar
	GeepaMoogle: Denying me a large mobile facoty, eh?

12) GeepaMoogle: Discover Y2 Geepamoogle B2 Alpha
	GeepaMoogle: Well, my thoughts are that I can use the yellow to get to another medium green.  Still not sure how to combat a factory.
	GeepaMoogle: Btw, been thinking of possible types of pieces that might be intersting..  Came up with 3 possiblilities.

1) Summon - Allows any ship in the system to summon any of their other ships of equal or lesser size to their side.  Potentially useful as a homeworld color, and may reduce the need for yellow (although yellow are still needed to discover and invade)

2) Explosives - Any ship in the system will self-destruct if captured, rather than converted.  When sacrificed, it gives 1 use per size, reduced by 1 each turn.

3) Stealth - Allows the use of any enemy technology in the system.  Of limited use as prolonged contact between any two sides tends to be short-lived.

Not sure how these would work out in actual play, but they could present some interesting possiblities.
	GeepaMoogle: Forgot to clarify.  Ship abilities can only be used by the owner.  Planet abilities could be used by anyone in the system.

13) TwoShort: Discover G1 Twoshort Y3 Yolonda

14) GeepaMoogle: Discover Y1 Geepamoogle B2 Beta
	TwoShort: Combatting a factory is tough short of having your own, which is one reason I like to play green :)  Come to think of it, it might be a reason not to start with a G3 in your homeworld.  But mostly with yellow you want to threaten catastrophes.  By sacrificeing a big yellow you can leap way across the galaxy, or move several ships all at once.  Not that you'll actually do it, but you'll constrain my options with the threat of it.  Note for example, that I can't grow in either of my systems this turn.

15) TwoShort: Discover Y1 Grogar G2 Gobble
	TwoShort: Note though, that while my having a factory might be a factor later, I can't use until those little greens are gone from the stash.  At best I could deplete in four turns, which is a long time, especially considering the only thing I'm focussed on for the next few turns is who gets the yellow 3 pointers.  (We each get one if neither of us sees a better move than I currently do)
	GeepaMoogle: Hmmm, choices..  Send the small yellow to a new b2 planet perhaps?  That would allow me some space to try and snatch the yellow, then try to build some greens afterward
	TwoShort: That's what I imagined you would do.  THen you're ready to grow that y3 if I take the y2, or even sacrtifice the g2 to grow both Ys.  I'll presumably split up my yellows next turn so I can cash in my investment at Yolonda once you take the yellows.  

16) GeepaMoogle: Build Y2 Geepamoogle

17) TwoShort: Build Y3 Gobble
	GeepaMoogle: And now a moment of truth.  I would sacrifice the green for yellow, but I have yellow covered well ehough, and need green more.  It isn't safe to spawn another at HQ, since there's a green at Yolanda in range.  Possibilities to look at.  {1} Shift the green to a safer spot.  {2} Go ahead and spawn a yellow to change into another color later, giving up the second y3

18) GeepaMoogle: Move Y2 Geepamoogle Beta
	TwoShort: Well, I think you should have sacrificed, and traded the y2 at aplpha for a g2 next turn.  3 pointers are just that valuable.  It's true that getting locked out of a color makes things difficult, but if that color isn't yellow it's not disasterous all by itself.

19) TwoShort: Sacrifice G1 Yolonda
Build Y3 Grogar
	TwoShort: So now I'll note that unless you move/trade one of those yellows, I could cause a yellow disaster in your homeworld.  Expensively for me, but if there is any move that leaves me with a 3 point, and you with none, I'll almost certainly do it.

20) GeepaMoogle: Sacrifice Y2 Alpha
Move Y2 Beta Grogar
Move Y1 Beta Grogar
Catastrophe Grogar Yellow

21) TwoShort: Build G1 Twoshort
	GeepaMoogle: I could take out Grogar, and lose Alhpa and Beta..  The result would be you'd be ahead, but it might mean I gain ground, and ruin whatever plans you might have.

22) GeepaMoogle: Discover G2 Geepamoogle B2 Alpha

23) TwoShort: Build G1 Twoshort
	GeepaMoogle: Almost forgot to trigger catastrophe

24) GeepaMoogle: Build Y1 Geepamoogle
	TwoShort: You lost two y2s and a y1 to take out my y3 and y2; definitely worth it from a material standpoint.  The downside is, catastrophes tend to simplify the game, which tends to favor the leader.  Still, I think it was the thing to do.

25) TwoShort: Discover G1 Twoshort B3 Bluestar
	GeepaMoogle: Well, it gives me a bit of a chance to try and regroup.

26) GeepaMoogle: Build G1 Alpha
	TwoShort: Certainly.  As I said, in this case I think it was the way to go.  I just mention it because  the debate on when to cause a catastrophe is one of the interesting strategic aspects of the game.  More stuff can mean more options, and more chances for the underdog to find something clever or the leader to do something dumb.  You can now fall back and build some more, but I'll build more and faster because I've got a head start.  But then you need to balance that against the pure material balance in the catastrophe.  I rate Y3s as so valuable that I think your catastrophe was certainly worth it on those grounds.   For whatever it's worth, I should note that every experienced player I've played says I'm way more eager to blow stuff up than they would be. :)

27) TwoShort: Move Y1 Gobble Geepamoogle

28) GeepaMoogle: Trade Y3 R3 Geepamoogle

29) TwoShort: Build Y2 Geepamoogle
	TwoShort: I didn't see this before just now, but here's a nasty little move you won't like very much...

30) GeepaMoogle: Trade G1 B1 Alpha
	TwoShort: Though it usually isn't there, that's the sort of move I look for every turn: one that does a couple things at once.  I get more options (room to grow yellow), and you get less. You basically have to spend next turn flipping your 3 point to red.
	TwoShort: Hmm... the more I look at it, I think that's the game. 
	GeepaMoogle: Plan on cattin the homeworld away, eh?  Just as I was going to try to do the same to you.  Where did I go wrong?
	GeepaMoogle: What if I flip my small yellow instead?
	TwoShort: I'll sacrifice my g3 to grow 2 Ys in your homeworld, (and one at gobble) causing the catastrophe anyway.  This will leave me with a 3 point and you without one, and unable to immediately build one.  Then I just need to make sure you remain unable to build one while I move mine in, turn to red, and take over.  Which is why I think you went wrong way back when you let me take the lead in 3 pointers...
	TwoShort: Note that when I say "I think that's the game" I don't mean you can't hold me off a little while longer.  Rather, I think what you'll need to do to hold me off in the short term will let me get enough of a lead that you won't be able to recover.
	GeepaMoogle: Aaah, well, it would seem I am doomed then.  Even with advice I am losing badly and quickly..  Believe me, from my POV  you are an expert..

31) TwoShort: Build Y2 Gobble

32) GeepaMoogle: Move Y1 Geepamoogle Gobble

33) TwoShort: Sacrifice Y2 Geepamoogle
Move Y1 Geepamoogle Gobble
Move Y3 Gobble Bluestar

34) GeepaMoogle: Build G1 Alpha

35) TwoShort: Build G2 Bluestar
	GeepaMoogle: My intentions are probably very obvious, but it's my hope to get you to back off.
	TwoShort: When I've got an advantage is when I tend to  try and push it.  I really should have just caused the catastrophe last turn.  Your intentions may be obvious now, but I didn't see that move last turn.  So now I'm forced to react; I can't let you catch my y3 in a catastrophe.

36) GeepaMoogle: Build Y2 Gobble
Catastrophe Gobble Yellow
	TwoShort: Not that I object to catching your only yellow in a catastrophe, of course.

37) TwoShort: Discover G2 Bluestar Y2 Yolonda
	TwoShort: build g2 bluestar

38) GeepaMoogle: Build R1 Geepamoogle

39) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Yolonda
Build G3 Twoshort

	GeepaMoogle: Sadly, at this point, the best I can do is to attempt to chase away the invader green.  Not really worth playing out.


3382)
Started: 2006.5.6, Ended: 2006.6.26
Participants: Aaron (S), Laurie_Menke (N)
Winner: Aaron

1) Laurie_Menke: Homeworld R1 G2 Y3 *
	Laurie_Menke: Hi again, Aaron...I think this is the game I most need to practice for the tournament.

2) Aaron: Homeworld Y2 B3 G3
	Aaron: Same here!  Good luck!

3) Laurie_Menke: Build Y1 Laurie_menke
	Laurie_Menke: Thanks!  You too!

4) Aaron: Build G1 Aaron

5) Laurie_Menke: Discover Y1 Laurie_menke B3 Bigblue

6) Aaron: Discover G1 Aaron B1 Sea

7) Laurie_Menke: Build Y1 Laurie_menke

8) Aaron: Build G1 Aaron

9) Laurie_Menke: Trade Y1 B1 Bigblue

10) Aaron: Trade G1 Y1 Aaron

11) Laurie_Menke: Sacrifice Y1 Laurie_menke
Move B1 Bigblue Laurie_menke

12) Aaron: Move Y1 Aaron Sea

13) Laurie_Menke: Build B1 Laurie_menke

14) Aaron: Build G1 Aaron

15) Laurie_Menke: Build B2 Laurie_menke

16) Aaron: Trade G1 R1 Aaron

17) Laurie_Menke: Discover B1 Laurie_menke G3 Park

18) Aaron: Build Y1 Sea

19) Laurie_Menke: Build Y1 Laurie_menke

20) Aaron: Trade Y1 R1 Sea

21) Laurie_Menke: Build B2 Park

22) Aaron: Build R2 Sea

23) Laurie_Menke: Trade B2 R2 Park

24) Aaron: Build G1 Aaron

25) Laurie_Menke: Build B2 Park

26) Aaron: Discover R1 Sea G3 Emerald

27) Laurie_Menke: Trade B2 Y2 Park

28) Aaron: Build R2 Emerald

29) Laurie_Menke: Build R3 Park

30) Aaron: Build R3 Sea

31) Laurie_Menke: Discover R2 Park G1 Yard

32) Aaron: Build R3 Aaron

33) Laurie_Menke: Build B2 Park

34) Aaron: Discover R2 Sea B3 Ocean

35) Laurie_Menke: Move R3 Park Yard

36) Aaron: Trade G3 Y3 Aaron

37) Laurie_Menke: Sacrifice Y2 Park
Move R3 Yard Emerald
Move R2 Yard Emerald
Catastrophe Emerald R

38) Aaron: Move R3 Sea Park
	Laurie_Menke: I am SOOO glad I saw what you were doing last turn and was able to prepare for it.  That was almost the end for me!
	Aaron: *chuckles evily*  Good catch!

39) Laurie_Menke: Sacrifice Y1 Laurie_menke
Move B2 Park Sea

40) Aaron: Build R1 Park

41) Laurie_Menke: Trade B2 R2 Sea

42) Aaron: Sacrifice Y3 Aaron
Move R2 Ocean Laurie_menke
Move R1 Park Laurie_menke
Move R3 Park Laurie_menke
Catastrophe Laurie_menke R

43) Laurie_Menke: Trade Y3 R3 Laurie_menke
	Laurie_Menke: Well, shoot!  I didn't see it coming that time.  :o(

44) Aaron: Move Y1 Sea Park

45) Laurie_Menke: Attack G1 Sea

46) Aaron: Sacrifice R1 Aaron
Attack B1 Park

47) Laurie_Menke: Trade G1 Y1 Sea

48) Aaron: Move R3 Aaron Sea

49) Laurie_Menke: Move R2 Sea Aaron
	Laurie_Menke: Hmmm....unless I'm missing something, I think that was a fatal move for you....

50) Aaron: Sacrifice Y1 Park
Move R3 Sea Aaron
	Aaron: Not fatal, but possibly draw-inducing.
	Aaron: doh!  I forgot I didn't own yellow there!  Good thing I have one in Park.  O man, not smart.

51) Laurie_Menke: Move R2 Aaron Sea

52) Aaron: Build B2 Park

53) Laurie_Menke: Move R2 Sea Park

54) Aaron: Build G1 Aaron

55) Laurie_Menke: Attack B2 Park

56) Aaron: Build R1 Aaron

57) Laurie_Menke: Attack B1 Park

58) Aaron: Move R1 Aaron Sea

59) Laurie_Menke: Move Y1 Sea Park

60) Aaron: Trade G1 Y1 Aaron

61) Laurie_Menke: Move R2 Park Sea

62) Aaron: Sacrifice Y1 Aaron
Discover R1 Sea Y3 Bananas

63) Laurie_Menke: Move B2 Park Sea

64) Aaron: Discover R1 Bananas Y2 Postit

65) Laurie_Menke: Trade B1 R1 Park

66) Aaron: Build G1 Aaron

67) Laurie_Menke: Build Y1 Park

68) Aaron: Trade G1 B1 Aaron

69) Laurie_Menke: Trade R3 Y3 Laurie_menke

70) Aaron: Discover B1 Aaron G1 Emeralds

71) Laurie_Menke: Discover B1 Laurie_menke Y1 Luella

72) Aaron: Build B2 Emeralds

73) Laurie_Menke: Build Y2 Laurie_menke

74) Aaron: Trade B2 R2 Emeralds

75) Laurie_Menke: Trade Y3 R3 Laurie_menke

76) Aaron: Build B2 Emeralds

77) Laurie_Menke: Move B2 Laurie_menke Luella

78) Aaron: Trade B2 G2 Emeralds

79) Laurie_Menke: Build Y3 Laurie_menke

80) Aaron: Build G1 Aaron

81) Laurie_Menke: Sacrifice Y3 Laurie_menke
Move B2 Sea Aaron
Move B2 Luella Aaron
Move B1 Luella Aaron
Catastrophe Aaron Blue

82) Aaron: Build G2 Aaron

83) Laurie_Menke: Trade R2 B2 Sea

84) Aaron: Discover G2 Aaron Y3 Bananas

85) Laurie_Menke: Move R3 Laurie_menke Emeralds

86) Aaron: Sacrifice G2 Emeralds
Build G2 Aaron
Build G3 Bananas

87) Laurie_Menke: Sacrifice Y1 Park
Move R3 Emeralds Bananas

88) Aaron: Sacrifice R1 Postit
Attack R3 Bananas
	Aaron: I'm so sorry, Laurie, but this is a necessary lesson to learn about sacrificing =/

89) Laurie_Menke: Build Y1 Laurie_menke
	Laurie_Menke: Argh!  You're right...I really need to learn that lesson.  I forget about sacrificing reds all the time.  Grrr...  ;o)
	Laurie_Menke: Well, this is not looking too good for me right now, is it?  ;o)

90) Aaron: Move R3 Bananas Laurie_menke

91) Laurie_Menke: Move Y2 Laurie_menke Sea
	Aaron: Sorry =/
	Aaron: You did superbly well blocking me out of certain colours, btw.  You really had me searching for good moves.
	Laurie_Menke: :o)  Thanks.  I just need to keep an eye out for that sacrificing red move.  ;o)  Thanks for the lesson!
	Laurie_Menke: See you in the tourney!  :o)

92) Aaron: Attack Y1 Laurie_menke
	Aaron: Cheers!



3426)
Started: 2006.5.10, Ended: 2006.5.16
Participants: Danner (S), jeep (N)
Winner: jeep

1) jeep: Homeworld B2 Y3 G3

2) Danner: Homeworld Y1 G1 R3 *

3) jeep: Build G1 Jeep
	jeep: Hmm... small universe...

4) Danner: Build R1 Danner

5) jeep: Trade G1 R1 Jeep
	Danner: :)

6) Danner: Discover R1 Danner B3 Tradecenter

7) jeep: Build G1 Jeep

8) Danner: Trade R1 G1 Tradecenter

9) jeep: Build G2 Jeep

10) Danner: Build G2 Tradecenter

11) jeep: Sacrifice G2 Jeep
Build R1 Jeep
Build R1 Jeep

12) Danner: Trade G1 Y1 Tradecenter

13) jeep: Move R1 Jeep Danner

14) Danner: Attack R1N Danner

15) jeep: Move R1 Jeep Danner

16) Danner: Move R1 Danner Tradecenter

17) jeep: Sacrifice G3 Jeep
Build R2 Danner
Build R2 Danner
Build R2 Jeep
Catastrophe Danner R
	Danner: :)
	jeep: Nod, it was a lost cause.  Thanks for the game.
	jeep: You could have sac'd the red 1 to take over the other, I guess...
	Danner: wow, you are great! :)
	Danner: create catastrophe with moving in ships.
but with building directly im the enemy system? :D Cool strategy :)
	Danner: thx for the experience :)
	jeep: Heh, not sure I'm "great" but yeah, you have to look for catastrophes with both building and moving.  And, of course, color changing...  ;)  Lots of ways to make catastrophes.



3408)
Started: 2006.5.13, Ended: 2006.9.12
Participants: HappyWulf (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld R2 B1 G3

2) HappyWulf: Homeworld B2 Y1 G3

3) andylooney: Build G1 Andylooney

4) HappyWulf: Build G1 Happywulf

5) andylooney: Trade G3 Y3 Andylooney

6) HappyWulf: Trade G1 B1 Happywulf

7) andylooney: Build Y1 Andylooney

8) HappyWulf: Build B1 Happywulf

9) andylooney: Build Y1 Andylooney

10) HappyWulf: Discover B1 Happywulf G3 Coffee

11) andylooney: Discover Y1 Andylooney B3 Doughnuts

12) HappyWulf: Build B2 Coffee

13) andylooney: Build Y2 Andylooney

14) HappyWulf: Trade B2 Y2 Coffee

15) andylooney: Trade Y1 R1 Andylooney

16) HappyWulf: Build B2 Happywulf

17) andylooney: Discover Y2 Andylooney B3 Milk

18) HappyWulf: Build B2 Coffee

19) andylooney: Discover R1 Andylooney B3 Cookies

20) HappyWulf: Trade B2 R2 Happywulf

21) andylooney: Build G1 Andylooney

22) HappyWulf: Build B2 Happywulf

23) andylooney: Discover G1 Andylooney Y3 Money

24) HappyWulf: Move R2 Happywulf Money

25) andylooney: Sacrifice G1 Money
Build R1 Cookies

26) HappyWulf: Trade B2 R2 Happywulf

27) andylooney: Discover G1 Andylooney Y3 Thesun

28) HappyWulf: Sacrifice Y2 Coffee
Move B1 Coffee Andylooney
Move B2 Coffee Andylooney

29) andylooney: Attack B2S Andylooney

30) HappyWulf: Trade R2 Y2 Happywulf

31) andylooney: Discover B2 Andylooney G3 Chocolate

32) HappyWulf: Trade B1 R1 Happywulf

33) andylooney: Attack B1S Andylooney

34) HappyWulf: Build R2 Happywulf

35) andylooney: Trade R1 G1 Cookies

36) HappyWulf: Move Y2 Happywulf Money

37) andylooney: Trade B1 G1 Andylooney

38) HappyWulf: Move R2 Happywulf Cookies

39) andylooney: Build G2 Thesun

40) HappyWulf: Move G3 Happywulf Doughnuts

41) andylooney: Sacrifice G2 Thesun
Build Y1 Milk
Build Y2 Andylooney

42) HappyWulf: Attack R1 Cookies

43) andylooney: Trade Y1 R1 Milk

44) HappyWulf: Move R2 Money Andylooney

45) andylooney: Sacrifice G1 Cookies
Build R3 Milk

46) HappyWulf: Sacrifice R1 Cookies
Attack Y1 Doughnuts

47) andylooney: Move R3 Milk Happywulf

48) HappyWulf: Sacrifice G3 Doughnuts
Build R1 Happywulf
Build R3 Cookies
Build R3 Andylooney
	HappyWulf: Good game in Martian Chess! =3 It was quite close for a long while. *Offers a paw in sportsmanship*
	andylooney: yup, it was a good game!


49) andylooney: Move R1 Milk Happywulf
Catastrophe Happywulf Red

	andylooney: Thanks for playing!


3430)
Variants: "No undo"
Started: 2006.5.14, Ended: 2006.5.15
Participants: Danner (S), Uglyfoot (N)
Winner: Danner

1) Uglyfoot: Homeworld Y1 B3 G3

2) Danner: Homeworld G2 Y2 R3 *

3) Uglyfoot: Build G1 Uglyfoot

4) Danner: Build R1 Danner

5) Uglyfoot: Discover G1 Uglyfoot Y2 Waystation
	Uglyfoot: That is an interesting start.


6) Danner: Move R3 Danner Uglyfoot
	Danner: :)

	Danner: thx the game:)


3462)
Variants: "No undo"
Started: 2006.5.14, Ended: 2006.5.14
Participants: Sztyuni (S), Danner (N)
Winner: Danner

1) Danner: Homeworld Y1 G2 R3 *

2) Sztyuni: Homeworld R3 Y3 B3 *
	Danner: hi :)
	Sztyuni: szai :)

3) Danner: Build R1 Danner

4) Sztyuni: Trade B3 G3 Sztyuni

5) Danner: Move R3 Danner Sztyuni

6) Sztyuni: Attack R3 Sztyuni

7) Danner: Build R1 Danner

8) Sztyuni: Build G1 Sztyuni

9) Danner: Discover R1 Danner B3 Deathstar

10) Sztyuni: Move R3 Sztyuni Danner

11) Danner: Build R1 Danner

12) Sztyuni: Attack R1 Danner

13) Danner: Build R2 Danner

14) Sztyuni: Attack R2 Danner

15) Danner: Trade R1 Y1 Deathstar

16) Sztyuni: Pass

17) Danner: Move Y1 Deathstar Danner
Catastrophe Danner R

18) Sztyuni: Discover G1 Sztyuni B2 Oreglyuk

19) Danner: Build Y1 Danner

20) Sztyuni: Build G1 Oreglyuk

21) Danner: Discover Y1 Danner B3 Tradecenter

22) Sztyuni: Build G1 Oreglyuk

23) Danner: Build Y2 Danner

24) Sztyuni: Build G2 Oreglyuk

25) Danner: Move Y1 Danner Tradecenter
Catastrophe Oreglyuk G

26) Sztyuni: Build G1 Sztyuni

27) Danner: Build Y2 Danner

28) Sztyuni: Discover G3 Sztyuni B2 Nemlyuk

29) Danner: Trade Y1 R1 Tradecenter

30) Sztyuni: Build G1 Nemlyuk

31) Danner: Move Y2 Danner Sztyuni

32) Sztyuni: Trade G1 Y1 Nemlyuk

33) Danner: Attack G1S Sztyuni
	Danner: :)



3464)
Variants: "No undo"
Started: 2006.5.14, Ended: 2006.5.15
Participants: Sztyuni (S), Danner (N)
Winner: Danner

1) Danner: Homeworld G1 B2 R3

2) Sztyuni: Homeworld G3 B2 R3

3) Danner: Build R1 Danner

4) Sztyuni: Build R1 Sztyuni

5) Danner: Trade R1 Y1 Danner

6) Sztyuni: Build R1 Sztyuni

7) Danner: Build R1 Danner

8) Sztyuni: Build R2 Sztyuni

9) Danner: Build R2 Danner

10) Sztyuni: Sacrifice R3 Sztyuni
Pass
Pass
Pass

11) Danner: Discover R2 Danner G3 Constructcenter

12) Sztyuni: Trade R1 Y1 Sztyuni

13) Danner: Trade R1 B1 Danner

14) Sztyuni: Discover R2 Sztyuni G1 Ja

15) Danner: Move B1 Danner Constructcenter

16) Sztyuni: Build R1 Sztyuni

17) Danner: Build R1 Constructcenter

18) Sztyuni: Build R2 Sztyuni

19) Danner: Build R3 Danner

20) Sztyuni: Build R3 Ja

21) Danner: Build B1 Constructcenter

22) Sztyuni: Build Y1 Sztyuni

23) Danner: Build Y2 Danner

24) Sztyuni: Move Y1 Sztyuni Ja

25) Danner: Sacrifice Y2 Danner
Move R1 Constructcenter Ja
Move R2 Constructcenter Ja
Catastrophe Ja R

26) Sztyuni: Trade R1 B1 Sztyuni

27) Danner: Build Y2 Danner

28) Sztyuni: Move B1 Sztyuni Ja

29) Danner: Build Y2 Danner

30) Sztyuni: Build R1 Sztyuni

31) Danner: Trade B1 R1 Constructcenter

32) Sztyuni: Move R1 Sztyuni Ja

33) Danner: Build R2 Constructcenter

34) Sztyuni: Build B1 Ja

35) Danner: Build B2 Constructcenter

36) Sztyuni: Move B1 Ja Sztyuni

37) Danner: Sacrifice Y2 Danner
Move R3 Danner Constructcenter
Move R3 Constructcenter Ja

38) Sztyuni: Build B3 Sztyuni
	Danner: Ma kivételesen csak két órám van, így napközben is lehetek.
	Danner: mék kajáni majd jövök :)
	Danner: re
	Danner: na most mán foglalt lesz a gépterem asszem, szal majd délután harcolunk :) (függõ vok :D)

39) Danner: Sacrifice Y2 Danner
Move B1 Constructcenter Ja
Move B1 Ja Sztyuni
Catastrophe Sztyuni B

40) Sztyuni: Build Y2 Sztyuni

41) Danner: Build Y2 Danner

42) Sztyuni: Build R2 Ja

43) Danner: Build R3 Danner

44) Sztyuni: Sacrifice Y2 Sztyuni
Move R1 Sztyuni Danner
Move R2 Sztyuni Danner
Catastrophe Danner R

45) Danner: Sacrifice Y1 Danner
Move R3 Ja Sztyuni

46) Sztyuni: Move R1 Ja Sztyuni
	Danner: Oh no, I will be destroyed!

47) Danner: Sacrifice R2 Constructcenter
Attack Y1S Sztyuni
Attack R1S Sztyuni



3469)
Variants: "No undo"
Started: 2006.5.15, Ended: 2006.7.30
Participants: Uglyfoot (S), Danner (N)
Winner: Uglyfoot

1) Danner: Homeworld R3 B2 G3

2) Uglyfoot: Homeworld B3 Y1 G3
	Uglyfoot: Shall we try that again?

3) Danner: Build G1 Danner
	Danner: yes :)

4) Uglyfoot: Build G1 Uglyfoot

5) Danner: Trade G1 Y1 Danner

6) Uglyfoot: Discover G1 Uglyfoot B2 Gateway

7) Danner: Build Y1 Danner

8) Uglyfoot: Build G1 Gateway

9) Danner: Build Y2 Danner

10) Uglyfoot: Build G1 Uglyfoot

11) Danner: Trade Y2 R2 Danner

12) Uglyfoot: Trade G1 R1 Gateway

13) Danner: Build R1 Danner

14) Uglyfoot: Build G1 Gateway

15) Danner: Build Y2 Danner

16) Uglyfoot: Build G2 Gateway

17) Danner: Build G2 Danner

18) Uglyfoot: Trade G2 Y2 Gateway

19) Danner: Discover R2 Danner B1 Gate

20) Uglyfoot: Discover G1 Gateway R1 Epsilon

21) Danner: Move G2 Danner Gate

22) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Epsilon
Build G2 Gateway
Build G3 Uglyfoot

23) Danner: Build G3 Gate

24) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build Y2 Gateway
Build Y3 Gateway

25) Danner: Sacrifice Y2 Danner
Move Y1 Danner Gate
Move Y1 Gate Gateway
Catastrophe Gateway Y

26) Uglyfoot: Trade G1 Y1 Gateway

27) Danner: Build Y2 Danner

28) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Gateway
Build R2 Gateway
Build G3 Uglyfoot

29) Danner: Sacrifice Y1 Danner
Move G3 Gate Gateway

30) Uglyfoot: Move G1 Uglyfoot Gateway
Catastrophe Gateway G

31) Danner: Build G1 Danner

32) Uglyfoot: Trade R1 G1 Gateway

33) Danner: Build Y1 Danner

34) Uglyfoot: Build G2 Uglyfoot

35) Danner: Build G3 Gate

36) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build R1 Gateway
Build Y2 Gateway
	Danner: Sorry, I had net problems, but now it's ok.

37) Danner: Sacrifice Y2 Danner
Move G3 Danner Gate
Move G3 Gate Gateway

38) Uglyfoot: Sacrifice Y2 Gateway
Move R2 Gateway Epsilon
Move R2 Epsilon Danner

39) Danner: Sacrifice Y1 Danner
Move G3 Gateway Uglyfoot

40) Uglyfoot: Sacrifice R1 Gateway
Attack G3 Uglyfoot

41) Danner: Trade G2 Y2 Gate

42) Uglyfoot: Trade G3 R3 Uglyfoot

43) Danner: Move G3 Gate Danner

44) Uglyfoot: Attack R1 Danner

45) Danner: Attack R2S Danner

46) Uglyfoot: Attack G1 Danner

47) Danner: Attack G1S Danner

48) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Gateway
Build G3 Uglyfoot
Build R1 Uglyfoot

49) Danner: Attack R1S Danner

50) Uglyfoot: Discover G2 Gateway Y1 Eradani

51) Danner: Sacrifice G3 Danner
Build G3 Danner
Build R2 Gate
Build R3 Gate

52) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Gateway
Build Y2 Gateway

53) Danner: Trade G3 Y3 Danner

54) Uglyfoot: Sacrifice Y2 Gateway
Move R1 Uglyfoot Gateway
Move R1 Gateway Gate
Catastrophe Gate R

55) Danner: Build G3 Danner

56) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Eradani
Build Y2 Gateway
Build R1 Uglyfoot

57) Danner: Move G3 Danner Epsilon

58) Uglyfoot: Move R1 Uglyfoot Gateway

59) Danner: Move R1 Danner Gate

60) Uglyfoot: Sacrifice G3 Gateway
Build G3 Gateway
Build R2 Gateway
Build R2 Uglyfoot

61) Danner: Build Y2 Danner

62) Uglyfoot: Move G3 Gateway Gate



3456)
Started: 2006.5.15, Ended: 2006.6.3
Participants: Lexicon (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y2 B1 G3

2) Lexicon: Homeworld G2 B3 Y3

3) jeep: Build G1 Jeep

4) Lexicon: Build Y1 Lexicon

5) jeep: Build G1 Jeep

6) Lexicon: Build Y1 Lexicon

7) jeep: Trade G1 Y1 Jeep

8) Lexicon: Trade Y1 G1 Lexicon

9) jeep: Discover G1 Jeep B3 Moon

10) Lexicon: Trade Y1 B1 Lexicon

11) jeep: Build G1 Jeep

12) Lexicon: Discover G1 Lexicon B1 Blue

13) jeep: Build G2 Moon

14) Lexicon: Build G2 Blue

15) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build G3 Moon
Build Y1 Jeep

16) Lexicon: Build Y1 Lexicon

17) jeep: Trade G3 Y3 Moon

18) Lexicon: Sacrifice Y1 Lexicon
Discover G1 Blue Y3 Yellow

19) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y1 Moon
Build Y2 Moon

20) Lexicon: Build G3 Yellow

21) jeep: Build G3 Moon

22) Lexicon: Sacrifice G3 Yellow
Build G3 Yellow
Build B2 Lexicon
Build Y2 Lexicon

23) jeep: Trade G3 R3 Moon

24) Lexicon: Sacrifice B2 Lexicon
Trade Y2 R2 Lexicon
Trade G2 Y2 Blue

25) jeep: Sacrifice Y3 Moon
Move G1 Jeep Yellow
Move G1 Moon Blue
Move G1 Blue Yellow
Catastrophe Yellow G

26) Lexicon: Build Y3 Lexicon

27) jeep: Discover Y1 Moon G1 Stage

28) Lexicon: Sacrifice Y3 Lexicon
Move Y2 Blue Moon
Move Y2 Moon Jeep
Pass
Catastrophe Jeep Yellow

29) jeep: Build G1 Jeep

30) Lexicon: Build Y1 Lexicon

31) jeep: Sacrifice G3 Jeep
Build G1 Moon
Build G2 Moon
Build G3 Jeep

32) Lexicon: Discover B1 Lexicon Y1 Yellow

33) jeep: Build Y2 Stage

34) Lexicon: Discover B1 Yellow G3 Green

35) jeep: Build G3 Jeep

36) Lexicon: Build B1 Green

37) jeep: Sacrifice Y2 Stage
Move R3 Moon Stage
Move R3 Stage Green

38) Lexicon: Sacrifice Y3 Lexicon
Move B1 Green Jeep
Move B1 Green Jeep
Move R2 Lexicon Jeep
	Lexicon: That icy barren dessert and accompanying greenopoly you have wasn't worth it, it seems.
	Lexicon: This'll probably be the end of me...  my timing was too slow.

39) jeep: Sacrifice R3 Green
Attack B1S Jeep
Attack B1S Jeep
Attack R2S Jeep
	Lexicon: toga party at jeep's place!

	Lexicon: Am I screwed or totally screwed, that is the question. :)
	jeep: Uh... totally.


3494)
Started: 2006.5.17, Ended: 2006.5.31
Participants: Danner (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y2 B3 G3

2) Danner: Homeworld Y1 B2 G3

3) jeep: Build G1 Jeep
	Danner: Almost the same. :)

4) Danner: Build G1 Danner

5) jeep: Trade G1 Y1 Jeep

6) Danner: Trade G1 Y1 Danner
	jeep: Sorry, forgot my pledge to not move in HW while at work...

7) jeep: Build Y2 Jeep
	Danner: no problem :)

8) Danner: Build G1 Danner

9) jeep: Discover Y2 Jeep B1 Moon

10) Danner: Discover Y1 Danner G3 Earth

11) jeep: Build G1 Jeep

12) Danner: Trade G1 R1 Danner

13) jeep: Move G1 Jeep Moon

14) Danner: Build G1 Danner

15) jeep: Build G1 Jeep

16) Danner: Move G1 Danner Earth
	Danner: ooops, sorry

17) jeep: Discover Y1 Jeep B1 Stars

	Danner: I give up :)


3491)
Variants: "No undo"
Started: 2006.5.18, Ended: 2006.5.21
Participants: Sztyuni (S), Danner (N)
Winner: Danner

1) Danner: Homeworld Y1 B2 G3

2) Sztyuni: Homeworld B2 G3 R3

3) Danner: Build G1 Danner

4) Sztyuni: Build R1 Sztyuni

5) Danner: Trade G1 R1 Danner

6) Sztyuni: Trade R1 Y1 Sztyuni

7) Danner: Build G1 Danner

8) Sztyuni: Build Y1 Sztyuni

9) Danner: Build R1 Danner

10) Sztyuni: Build Y2 Sztyuni

11) Danner: Discover G1 Danner Y3 Wormhole

12) Sztyuni: Discover Y1 Sztyuni G1 Joskabacsi

13) Danner: Build G1 Wormhole

14) Sztyuni: Move R3 Sztyuni Joskabacsi

15) Danner: Discover G1 Wormhole B1 Market

16) Sztyuni: Build Y2 Sztyuni

17) Danner: Build G2 Market

18) Sztyuni: Trade Y2 R2 Sztyuni

19) Danner: Trade G2 Y2 Market

20) Sztyuni: Move R3 Joskabacsi Wormhole

21) Danner: Move G1 Wormhole Danner

22) Sztyuni: Trade Y2 G2 Sztyuni

23) Danner: Build Y2 Market

24) Sztyuni: Move G2 Sztyuni Joskabacsi

25) Danner: Discover Y2 Market G3 Earth

26) Sztyuni: Move G2 Joskabacsi Wormhole

27) Danner: Sacrifice G3 Danner
Build Y2 Market
Build Y3 Market
Build Y3 Earth

28) Sztyuni: Move G2 Wormhole Danner

29) Danner: Move Y2 Earth Danner

30) Sztyuni: Move R3 Wormhole Danner

31) Danner: Build R1 Danner
Catastrophe Danner R

32) Sztyuni: Build Y3 Joskabacsi

33) Danner: Trade Y2 R2 Danner

34) Sztyuni: Move Y3 Joskabacsi Sztyuni

35) Danner: Build Y2 Earth

36) Sztyuni: Move Y1 Sztyuni Market
Catastrophe Market Y

37) Danner: Attack G2S Danner

38) Sztyuni: Build Y1 Joskabacsi

39) Danner: Move Y3 Earth Market

40) Sztyuni: Build Y2 Sztyuni

41) Danner: Sacrifice G2 Danner
Build Y2 Earth
Build Y3 Market

42) Sztyuni: Trade Y3 R3 Sztyuni

43) Danner: Discover Y2 Earth R1 Mars

44) Sztyuni: Move R3 Sztyuni Market

45) Danner: Sacrifice R2 Danner
Attack R3S Market
Pass

46) Sztyuni: Build Y3 Sztyuni

47) Danner: Sacrifice Y2 Earth
Move Y2 Mars Sztyuni
Move Y3 Market Sztyuni

48) Sztyuni: Trade Y3 R3 Sztyuni

49) Danner: Sacrifice R3 Market
Attack R2S Sztyuni
Attack R3S Sztyuni
Attack Y2S Sztyuni



3465)
Started: 2006.5.19, Ended: 2007.8.31
Participants: ratonlaveurgarou (S), andylooney (N)
Winner: andylooney

1) andylooney: Homeworld R2 B1 G3

2) ratonlaveurgarou: Homeworld G1 B2 R3

3) andylooney: Build G1 Andylooney

4) ratonlaveurgarou: Build R1 Ratonlaveurgarou

5) andylooney: Trade G1 R1 Andylooney

6) ratonlaveurgarou: Pass

7) andylooney: Build G1 Andylooney

8) ratonlaveurgarou: Trade R1 Y1 Ratonlaveurgarou

9) andylooney: Trade G3 Y3 Andylooney

10) ratonlaveurgarou: Discover R3 Ratonlaveurgarou Y3 Sunflower

11) andylooney: Discover R1 Andylooney G3 Paradise

12) ratonlaveurgarou: Build Y1 Ratonlaveurgarou

13) andylooney: Build G1 Andylooney
	andylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.

14) ratonlaveurgarou: Build Y1 Ratonlaveurgarou

15) andylooney: Build Y2 Andylooney

16) ratonlaveurgarou: Discover Y1 Ratonlaveurgarou R3 Coquelicot

17) andylooney: Build G2 Andylooney



3538)
Started: 2006.5.22, Ended: 2006.7.19
Participants: cobalt (S), Keith (N)
Winner: Keith

1) Keith: Homeworld G2 B1 Y3

2) cobalt: Homeworld G3 B2 Y3

3) Keith: Build Y1 Keith

4) cobalt: Build Y1 Cobalt

5) Keith: Build Y1 Keith

6) cobalt: Trade Y1 G1 Cobalt

7) Keith: Trade Y1 B1 Keith

8) cobalt: Build G1 Cobalt

9) Keith: Trade Y1 G1 Keith

10) cobalt: Trade G1 B1 Cobalt

11) Keith: Build B2 Keith

12) cobalt: Build B2 Cobalt

13) Keith: Trade B2 Y2 Keith

14) cobalt: Discover B1 Cobalt G1 Persephone

15) Keith: Discover B1 Keith G3 Greenleaf

16) cobalt: Build Y1 Cobalt


17) Keith: Move Y2 Keith Greenleaf

18) cobalt: Build G2 Cobalt

19) Keith: Discover G1 Keith B3 Miranda

20) cobalt: Trade B1 Y1 Persephone

21) Keith: Build G2 Miranda

22) cobalt: Discover G1 Cobalt Y1 Lobsterback

23) Keith: Sacrifice G2 Miranda
Build Y2 Keith
Build B1 Greenleaf

24) cobalt: Discover G1 Lobsterback Y3 Labrador

25) Keith: Discover B1 Greenleaf B2 Bluesun

26) cobalt: Move B2 Cobalt Persephone
	cobalt: I have a Blue Sun t-shirt

27) Keith: Trade Y2 R2 Keith
	Keith: Cool.  I had noticed the Firefly/Serenity system naming. 

28) cobalt: Build B3 Persephone
	cobalt: I actually didn't do that on purpose, Persephone is just a lovely name.

29) Keith: Build B3 Greenleaf
	Keith: Oh.  Well, that is why there is a Miranda and a Greenleaf.  Labrador seemed to be a break in the pattern that I was largely responsible for but then I don't know Firefly/Serenity that well.

30) cobalt: Trade B3 G3 Persephone
	cobalt: I don't remember Greenleaf. Which episode was that?

31) Keith: Move B3 Greenleaf Persephone
	Keith: Ariel.  Greenleaf is mentioned in "Safe" as a location likely to have medical facilities. http://en.wikipedia.org/wiki/List_of_Firefly_planets_and_moons
	Keith: My memory was Ariel.  Wikipedia says otherwise.

32) cobalt: Sacrifice Y1 Persephone
Move G3 Persephone Greenleaf
	cobalt: This turn will be dealt with by Tuesday.
	Keith: No problem.  Thank you for the notice.

33) Keith: Build B3 Greenleaf
	Keith: I had not thought of that.

34) cobalt: Sacrifice G3 Greenleaf
Build G2 Cobalt
Build G3 Labrador
Pass

35) Keith: Sacrifice Y2 Greenleaf
Move G1 Miranda Persephone
Move G1 Persephone Cobalt
Catastrophe Cobalt Green

	Keith: Thank you for the game.  I think I gained my advantage when I had a red ship while you did not.


3542)
Started: 2006.5.22, Ended: 2007.2.19
Participants: TwoShort (S), andylooney (N)
Winner: TwoShort

1) andylooney: Homeworld B2 R1 G3

2) TwoShort: Homeworld R1 B3 G3
	TwoShort: Here I was all set to spring my surprise homeworld selection on you. 

3) andylooney: Build G1 Andylooney

4) TwoShort: Build G1 Twoshort

5) andylooney: Trade G3 Y3 Andylooney

6) TwoShort: Trade G1 Y1 Twoshort

7) andylooney: Build G1 Andylooney

8) TwoShort: Build Y1 Twoshort

9) andylooney: Discover G1 Andylooney Y3 Money

10) TwoShort: Discover Y1 Twoshort G2 Garden

11) andylooney: Build G1 Andylooney

12) TwoShort: Build G2 Twoshort

13) andylooney: Discover G1 Andylooney Y3 Gold
	andylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.

14) TwoShort: Discover G2 Twoshort Y2 Yoyo

15) andylooney: Build Y1 Andylooney

16) TwoShort: Build Y2 Twoshort

17) andylooney: Discover Y1 Andylooney G3 Paradise

18) TwoShort: Trade Y1 R1 Twoshort



3541)
Started: 2006.5.23, Ended: 2006.8.31
Participants: Danner (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3
	TwoShort: Greetings

2) Danner: Homeworld Y1 B2 G3
	Danner: Hi :)

3) TwoShort: Build G1 Twoshort

4) Danner: Build G1 Danner

5) TwoShort: Trade G1 Y1 Twoshort

6) Danner: Build G1 Danner

7) TwoShort: Build Y1 Twoshort

8) Danner: Trade G1 R1 Danner

9) TwoShort: Build Y2 Twoshort

10) Danner: Build R1 Danner

11) TwoShort: Build G1 Twoshort

12) Danner: Build R2 Danner

13) TwoShort: Discover Y1 Twoshort G3 Grogar

14) Danner: Move R1 Danner Grogar

15) TwoShort: Trade Y2 R2 Twoshort

16) Danner: Attack Y1N Grogar

17) TwoShort: Move R2 Twoshort Grogar

18) Danner: Move G3 Danner Grogar

19) TwoShort: Sacrifice Y1 Twoshort
Discover R2 Grogar G1 Glork

20) Danner: Sacrifice G3 Grogar
Build R2 Grogar
Build R3 Grogar
Build R3 Danner

21) TwoShort: Build G2 Twoshort

22) Danner: Move R3 Grogar Glork

23) TwoShort: Trade G2 Y2 Twoshort

24) Danner: Attack R2N Glork

25) TwoShort: Build G2 Twoshort

26) Danner: Build R3 Grogar

27) TwoShort: Discover G1 Twoshort Y3 Yolonda

28) Danner: Trade R3 G3 Danner

29) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Twoshort
Build G3 Twoshort

30) Danner: Sacrifice G3 Danner
Build G3 Danner
Build Y1 Grogar
Build Y2 Grogar

31) TwoShort: Sacrifice Y2 Twoshort
Move G2 Yolonda Danner
Move G1 Yolonda Danner
Catastrophe Danner Green



3484)
Variants: "No undo"
Started: 2006.5.23, Ended: 2006.5.27
Participants: Danner (S), Calavera (N)
Winner: Calavera

1) Calavera: Homeworld B2 Y3 G3

2) Danner: Homeworld Y1 B2 G3

3) Calavera: Build G1 Calavera

4) Danner: Build G1 Danner

5) Calavera: Trade G1 Y1 Calavera

	Danner: Sorry, I had net problems.


3549)
Variants: "No undo"
Started: 2006.5.24, Ended: 2006.8.21
Participants: Cerulean (S), Danner (N)
Winner: Cerulean

1) Danner: Homeworld Y1 B2 G3

2) Cerulean: Homeworld Y3 B1 G3

3) Danner: Build G1 Danner

4) Cerulean: Build G1 Cerulean

5) Danner: Trade G1 Y1 Danner

6) Cerulean: Build G1 Cerulean

7) Danner: Build G1 Danner

8) Cerulean: Trade G1 Y1 Cerulean

9) Danner: Build Y2 Danner

10) Cerulean: Build Y2 Cerulean

11) Danner: Trade Y1 R1 Danner

12) Cerulean: Discover Y2 Cerulean G2 Freedonia

13) Danner: Discover Y2 Danner G3 Stargate :)

14) Cerulean: Trade G1 R1 Cerulean

15) Danner: Build R1 Danner

16) Cerulean: Build R2 Cerulean

17) Danner: Move R1 Danner Stargate

18) Cerulean: Trade R1 B1 Cerulean

19) Danner: Build Y1 Stargate

20) Cerulean: Build G1 Cerulean

21) Danner: Discover Y1 Stargate G2 Xx

22) Cerulean: Discover G1 Cerulean B2 Sylvania

23) Danner: Trade G1 B1 Danner

24) Cerulean: Build G1 Cerulean

25) Danner: Build G1 Danner

26) Cerulean: Build G2 Sylvania

	Cerulean: sorry, danner, but it's been two months.  i'm pulling the plug.
	Danner: no, I'm sorry for becoming inactive.
	Cerulean: Hey, welcome back.  If you're ready for full-time Homeworlds, you're welcome to challenge me to a re-match.
	Danner: Ok :)


4021)
Started: 2006.8.13, Ended: 2006.8.31
Participants: zoltar (S), Uglyfoot (N)
Winner: zoltar

1) Uglyfoot: Homeworld B3 Y2 G3

2) zoltar: Homeworld R1 B2 G3

3) Uglyfoot: Build G1 Uglyfoot

4) zoltar: Build G1 Zoltar

5) Uglyfoot: Discover G1 Uglyfoot B1 Porch

6) zoltar: Trade G1 Y1 Zoltar

7) Uglyfoot: Build G1 Uglyfoot

8) zoltar: Build Y1 Zoltar

9) Uglyfoot: Trade G1 R1 Uglyfoot

10) zoltar: Trade Y1 R1 Zoltar

11) Uglyfoot: Build R2 Uglyfoot

12) zoltar: Build R2 Zoltar
	zoltar: b r2 zoltar

13) Uglyfoot: Build G1 Uglyfoot

14) zoltar: Build Y1 Zoltar

15) Uglyfoot: Trade G1 Y1 Uglyfoot

16) zoltar: Build Y2 Zoltar

17) Uglyfoot: Build R2 Uglyfoot

18) zoltar: Discover R2 Zoltar G3 Greenbelt

19) Uglyfoot: Discover R2 Uglyfoot G1 Tree

20) zoltar: Build R3 Greenbelt

21) Uglyfoot: Build R3 Tree

22) zoltar: Build R3 Zoltar

23) Uglyfoot: Build Y2 Uglyfoot

24) zoltar: Discover R3 Zoltar Y3 Yellowstone

25) Uglyfoot: Move Y2 Uglyfoot Porch

26) zoltar: Sacrifice Y2 Zoltar
Move Y1 Zoltar Greenbelt
Move R3 Greenbelt Porch

27) Uglyfoot: Sacrifice Y1 Uglyfoot
Move R3 Tree Greenbelt

28) zoltar: Sacrifice R2 Greenbelt
Attack Y2 Porch
Attack G1 Porch

29) Uglyfoot: Attack Y1 Greenbelt

30) zoltar: Build R2 Porch

31) Uglyfoot: Build G1 Uglyfoot

32) zoltar: Build G2 Zoltar

33) Uglyfoot: Trade R2 Y2 Uglyfoot

34) zoltar: Sacrifice G2 Zoltar
Build G2 Zoltar
Build R2 Yellowstone

35) Uglyfoot: Move Y2 Uglyfoot Tree

36) zoltar: Move R3 Yellowstone Tree

37) Uglyfoot: Build Y1 Tree

38) zoltar: Sacrifice R3 Porch
Attack R2 Tree
Attack Y2 Tree
Attack Y1 Tree

39) Uglyfoot: Sacrifice G3 Uglyfoot
Build R3 Uglyfoot
Build Y3 Greenbelt
Build G2 Uglyfoot
	zoltar: Red Alert!  All handz to battle stay shunz!  Lock awl batteries onto alien sheepz and open fire!

40) zoltar: Sacrifice Y2 Tree
Move R2 Porch Uglyfoot
Move R2 Tree Uglyfoot
Catastrophe Uglyfoot R

41) Uglyfoot: Sacrifice Y3 Greenbelt
Move R3 Greenbelt Tree
Move R3 Tree Uglyfoot
Move G1 Uglyfoot Porch
	zoltar: zee tree ease mine!!!!! whew who!!!!

42) zoltar: Sacrifice R1 Zoltar
Attack G1 Porch

43) Uglyfoot: Build Y2 Greenbelt
	zoltar: Zee Uglyfoot defenz greed haz bean dizzaybulled!  Awl sheepz storm zee Uglyfoot homeworld. Attack!

44) zoltar: Sacrifice G2 Zoltar
Build Y3 Porch
Build Y3 Zoltar
	Uglyfoot: hit me.

45) Uglyfoot: Build R1 Uglyfoot

46) zoltar: Build G2 Zoltar

47) Uglyfoot: Discover R1 Uglyfoot B1 Rightout

48) zoltar: Sacrifice G3 Zoltar
Build G2 Porch
Build G3 Zoltar
Build G3 Zoltar

	Uglyfoot: We could see the roller building steam.



3547)
Started: 2006.5.30, Ended: 2006.6.8
Participants: Subhan64 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) Subhan64: Homeworld Y3 B2 G3
	TwoShort: Greetings.

3) TwoShort: Build G1 Twoshort
	Subhan64: howdy!  Good luck!


4) Subhan64: Build G1 Subhan64

5) TwoShort: Trade G1 Y1 Twoshort

6) Subhan64: Build G1 Subhan64

7) TwoShort: Build G1 Twoshort

8) Subhan64: Trade G1 Y1 Subhan64

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) Subhan64: Discover Y1 Subhan64 R1 Omicronpersei8

11) TwoShort: Build G1 Twoshort

12) Subhan64: Build G2 Subhan64

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G2 Yolonda
Build G3 Twoshort

14) Subhan64: Move G2 Subhan64 Omicronpersei8

15) TwoShort: Trade G2 Y2 Twoshort

16) Subhan64: Sacrifice G3 Subhan64
Build G2 Omicronpersei8
Build G3 Subhan64
Build Y1 Omicronpersei8

17) TwoShort: Discover G1 Yolonda B1 Bluestar

18) Subhan64: Discover G2 Omicronpersei8 B3 Magrathea

19) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Bluestar
Build Y2 Twoshort
	TwoShort: I can win right now if you do that, but it wouldn't not very satisfying, so I'd be happy to have you undo and try something else if you like.
	Subhan64: what is the win move?
	TwoShort: I can sacrifice my y2 to move one of the greens from yolonda all the way to your homeworld, and cause a catastrophe.
	Subhan64: ahh, I see.  I missed that one!  Thanks for the break!

	TwoShort: No problem; Leaving your homeworld vulnerable to a catastrophe is kind of the classic early-game mistake.  I've made it myself a few times.  But it's not all that fun to win that way.

	Subhan64: I think I'm pretty well licked here, good game!
	TwoShort: I'm not sure I'd agree, but OK
	Subhan64: well, what would you have suggested as a move?
	TwoShort: Either moving out or trading one of the greens at your homeworld would avoid the immediate threat. Trading the small to red would probably have been my choice.  To be sure, I had the advantage and your chances of staging a comeback were pretty slim.  But this game is full of surprises, and so I generally won't resign until I can see how my opponent can definitely force victory with a specific series of moves.  


3607)
Variants: "Unrated"
Started: 2006.6.2, Ended: 2006.6.8
Participants: apollotiger (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G1 B2 Y3
	MatrixFrog: It says "There are no pieces left in the stash to take."

2) apollotiger: Homeworld G3 B2 Y3
	MatrixFrog: Nevermind, Aaron! My fault.

3) MatrixFrog: Build Y1 Matrixfrog

4) apollotiger: Build Y1 Apollotiger

5) MatrixFrog: Trade Y1 B1 Matrixfrog

6) apollotiger: Trade Y1 B1 Apollotiger

7) MatrixFrog: Build Y1 Matrixfrog

8) apollotiger: Build B1 Apollotiger

9) MatrixFrog: Build B2 Matrixfrog

10) apollotiger: Trade B1 G1 Apollotiger

11) MatrixFrog: Discover B2 Matrixfrog G3 Grove

12) apollotiger: Discover G1 Apollotiger Y1 Zeta

13) MatrixFrog: Trade Y1 G1 Matrixfrog

14) apollotiger: Build Y1 Apollotiger

15) MatrixFrog: Build Y1 Matrixfrog

16) apollotiger: Build G2 Zeta

17) MatrixFrog: Discover G1 Matrixfrog B3 Child

18) apollotiger: Discover Y1 Apollotiger R1 Phosphorus

19) MatrixFrog: Build G2 Child

20) apollotiger: Build Y2 Apollotiger

21) MatrixFrog: Trade G2 Y2 Child

22) apollotiger: Move Y1 Phosphorus Grove

23) MatrixFrog: Trade B2 R2 Grove

24) apollotiger: Trade Y2 R2 Apollotiger

25) MatrixFrog: Attack Y1S Grove

26) apollotiger: Build B1 Apollotiger

27) MatrixFrog: Discover G1 Child R1 Arr Won

28) apollotiger: Sacrifice B1 Apollotiger
Trade G2 R2 Zeta

29) MatrixFrog: Move R2 Grove Matrixfrog

30) apollotiger: Move R2 Zeta Child

31) MatrixFrog: Move Y2 Child Arr

32) apollotiger: Build R1 Apollotiger

33) MatrixFrog: Build Y2 Arr

34) apollotiger: Discover R1 Apollotiger B1 Chronos

35) MatrixFrog: Build G2 Arr

36) apollotiger: Move G1 Zeta Grove

37) MatrixFrog: Move Y1 Grove Arr

38) apollotiger: Build B2 Apollotiger

39) MatrixFrog: Build B3 Matrixfrog

40) apollotiger: Trade B1 Y1 Apollotiger
	MatrixFrog: The point of SDG's setup is that you don't have to both be online at the same time. So if you're online, and I'm not, just go ahead and make one move and I'll do the same next time I come back.

41) MatrixFrog: Sacrifice B1 Matrixfrog
Trade Y1 B1 Arr

42) apollotiger: Move Y1 Apollotiger Chronos
	MatrixFrog: So you see how sacrifices work, yes?

43) MatrixFrog: Build B1 Arr

44) apollotiger: Move Y1 Chronos Child

45) MatrixFrog: Sacrifice Y2 Arr
Move B1 Arr Apollotiger
Move B1 Arr Apollotiger
Catastrophe Apollotiger Blue

46) apollotiger: Build R1 Apollotiger

47) MatrixFrog: Trade Y3 G3 Matrixfrog

48) apollotiger: Move R1 Apollotiger Chronos

49) MatrixFrog: Sacrifice Y2 Arr
Move G1 Arr Apollotiger
Move G2 Arr Apollotiger

50) apollotiger: Build G2 Grove

51) MatrixFrog: Sacrifice G3 Matrixfrog
Build B1 Matrixfrog
Build B1 Matrixfrog
Build G2 Apollotiger
Catastrophe Matrixfrog B
Catastrophe Apollotiger G



3576)
Started: 2006.6.7, Ended: 2006.6.24
Participants: Subhan64 (S), andylooney (N)
Winner: Subhan64

1) andylooney: Homeworld B1 R2 G3

2) Subhan64: Homeworld R3 B2 G3

3) andylooney: Build G1 Andylooney

4) Subhan64: Build G1 Subhan64



3639)
Started: 2006.6.12, Ended: 2008.2.22
Participants: randrews (S), andylooney (N)
Winner: randrews

1) andylooney: Homeworld R1 B3 G3

2) randrews: Homeworld R1 B2 G3

3) andylooney: Build G1 Andylooney

4) randrews: Build G1 Randrews
	andylooney: Hi Ross! It was good seeing you at Origins!


5) andylooney: Trade G3 Y3 Andylooney
	randrews: Good seeing you too! I hope this game goes a little better for me than our last one...

6) randrews: Trade G3 Y3 Randrews

7) andylooney: Build Y1 Andylooney
	randrews: I'm not actually intending to copy you, it's just sorta happening...

8) randrews: Discover G1 Randrews Y3 Gardner

9) andylooney: Discover Y1 Andylooney G2 Lime

10) randrews: Trade Y3 G3 Randrews

11) andylooney: Build Y1 Lime

12) randrews: Build G1 Randrews

13) andylooney: Build G2 Andylooney

14) randrews: Build G2 Gardner

15) andylooney: Build G3 Andylooney
	andylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.

16) randrews: Move G1 Gardner Lime
	randrews: That's fine. Hope they went well for you!

17) andylooney: Trade G1 R1 Andylooney

18) randrews: Trade G1 Y1 Randrews

19) andylooney: Sacrifice R1 Andylooney
Attack G1S Lime

20) randrews: Build Y2 Randrews

21) andylooney: Build Y2 Andylooney

22) randrews: Build G1 Randrews

23) andylooney: Discover G1 Lime Y3 Lemon

24) randrews: Discover G1 Randrews B3 Slinky

25) andylooney: Build Y2 Andylooney

26) randrews: Sacrifice G3 Randrews
Build G1 Slinky
Build G3 Slinky
Build G3 Gardner

27) andylooney: Sacrifice Y2 Andylooney
Move G1 Lemon Lime
Move G1 Lime Slinky
Catastrophe Slinky Green

28) randrews: Move G3 Gardner Randrews

29) andylooney: Discover Y1 Lime G3 Shamrock

30) randrews: Trade Y2 R2 Randrews

31) andylooney: Trade Y2 R2 Andylooney

32) randrews: Move R2 Randrews Shamrock

33) andylooney: Discover Y1 Shamrock G1 Bean

34) randrews: Build Y2 Randrews

35) andylooney: Build Y2 Lime

36) randrews: Sacrifice Y1 Randrews
Move R2 Shamrock Bean

	randrews: Is the "extreme timeout" thing new? The game was actually over 500 days old, not 60...

	Aaron: It's not automated is the thing.  Before killing games I like to see for myself what is happening.  I just haven't had time to do all the DB maintenance stuff.  For this round of cleanup I looked for all games that had clocks more than 60 days in the red.


3690)
Variants: "Unrated"
Started: 2006.6.17, Ended: 2006.6.18
Participants: fnord (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 G1 Y3

2) fnord: Homeworld B2 Y1 G3
	zoltar: Hi, this is my second game.  I lost on the 4th move yesterday, not used to all the rules yet.

3) zoltar: Build Y1 Zoltar
	fnord: Then, hopefully, this will be good experience for both of us.

4) fnord: Build G1 Fnord

5) zoltar: Discover Y1 Zoltar B2 Z1

6) fnord: Trade G1 R1 Fnord

7) zoltar: Build Y1 Zoltar

8) fnord: Build G1 Fnord

9) zoltar: Move Y1 Zoltar Z1

10) fnord: Build G1 Fnord

11) zoltar: Build Y2 Zoltar

12) fnord: Discover G1 Fnord R3 Discordia

13) zoltar: Trade Y2 R2 Zoltar

14) fnord: Build G2 Fnord

15) zoltar: Build Y2 Zoltar

16) fnord: Trade G2 Y2 Fnord

17) zoltar: Trade Y2 G2 Zoltar

18) fnord: Build Y2 Fnord

19) zoltar: Build Y2 Zoltar

20) fnord: Sacrifice Y2 Fnord
Move Y2 Fnord Discordia
Move R1 Fnord Discordia

21) zoltar: Discover G2 Zoltar Y2 Z2

22) fnord: Build Y3 Discordia

23) zoltar: Sacrifice Y2 Zoltar
Move Y1 Z1 Discordia
Move Y1 Z1 Discordia
Catastrophe Discordia Y

24) fnord: Move G3 Fnord Discordia

25) zoltar: Build G2 Z2
	fnord: Well done... that puts a crimp in my plans.

26) fnord: Trade G1 Y1 Fnord

27) zoltar: Build Y1 Zoltar

28) fnord: Move Y1 Fnord Discordia

	zoltar: Moving your huge green ship didn't make sense to me, as the rules say it's best to keep a big ship at your homeworld.
	fnord: Actually, it was because of a misundertanding of the rules, on my part, I think.
	fnord: Oh, frell me!
	fnord: Couldn't the game have warned me I was gonna destroy my homeworld?
	fnord: The reason I moved my big ship there was to (attempt) to prevent you from attacking any ship I owned there.  I misread the rules, thinking you couldn't attack me if I had a larger ship in there.  
	zoltar: Ouch! It didn't let you take back the move?  Oh well.  We can start another one if you wish.  And this was my first victory in the game, after an awful blowout where I died in the 5th move or so.  Thanks for the game!
	fnord: No, it didn't.  I looked for it, that's for sure.



3592)
Started: 2006.6.13, Ended: 2006.6.16
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld Y3 B1 G3

2) TwoShort: Homeworld B1 R2 G3

3) zoltar: Build G1 Zoltar
	TwoShort: Greetings

4) TwoShort: Build G1 Twoshort

5) zoltar: Build G1 Zoltar

6) TwoShort: Build G2 Twoshort

7) zoltar: Discover G1 Zoltar B2 Z1

8) TwoShort: Trade G2 Y2 Twoshort
	zoltar: Greetings Earthling

9) zoltar: Build G2 Zoltar

10) TwoShort: Discover G1 Twoshort Y3 Yolonda

11) zoltar: Trade G2 R2 Zoltar

12) TwoShort: Build G2 Twoshort

13) zoltar: Build G2 Zoltar

14) TwoShort: Sacrifice Y2 Twoshort
Move G1 Yolonda Z1
Move G1 Z1 Zoltar
Catastrophe Zoltar Green

	zoltar: Thanks, this was my first game.  I'm not even sure what happened!
	TwoShort: Well you were doing fine until you built a third green at your homeworld when I had one in striking distance.  It's sort of the classic early-game blunder.  Anyway, anytime you'd like to play again, just let me know; I'll even try to be a bit less cut-throat :)


3685)
Started: 2006.6.17, Ended: 2006.6.19
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld B1 G3 Y3

2) TwoShort: Homeworld B1 G2 B3 *
	zoltar: Ok, I'll try again!


3) zoltar: Build Y1 Zoltar

4) TwoShort: Build B1 Twoshort

5) zoltar: Build Y1 Zoltar

6) TwoShort: Trade B3 G3 Twoshort

7) zoltar: Discover Y1 Zoltar B2 Z2

8) TwoShort: Build B2 Twoshort

9) zoltar: Build Y1 Zoltar

10) TwoShort: Trade B2 Y2 Twoshort

11) zoltar: Discover Y1 Zoltar G2 Z1

12) TwoShort: Build B2 Twoshort

13) zoltar: Build Y2 Zoltar

14) TwoShort: Discover B2 Twoshort Y3 Yolonda

15) zoltar: Trade Y2 B2 Zoltar

16) TwoShort: Sacrifice G3 Twoshort
Build B3 Twoshort
Build B3 Yolonda
Build B3 Yolonda

17) zoltar: Build Y2 Z1

18) TwoShort: Sacrifice B2 Yolonda
Trade B3 R3 Twoshort
Trade B3 G3 Yolonda

19) zoltar: Move B2 Zoltar Z1

20) TwoShort: Discover B1 Twoshort G3 Grogar

	zoltar: I think my position is lost.
	zoltar: I think I was lost; I couldn't find any moves that save me.  Thanks.


3697)
Variants: "Unrated"
Started: 2006.6.18, Ended: 2006.6.19
Participants: fnord (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y1 B2 G3

2) fnord: Homeworld G1 B3 Y3
	zoltar: Prepare for battle, Earthling!

3) zoltar: Build G1 Zoltar

4) fnord: Build Y1 Fnord

5) zoltar: Discover G1 Zoltar B3 Z1

6) fnord: Trade Y1 B1 Fnord

7) zoltar: Build G1 Z1

8) fnord: Build Y1 Fnord

9) zoltar: Build G2 Zoltar

10) fnord: Discover Y1 Fnord G2 Discordia

11) zoltar: Discover G2 Zoltar B3 Z2

12) fnord: Build B1 Fnord

13) zoltar: Build G2 Zoltar

14) fnord: Trade B1 R1 Fnord

15) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build G3 Z2

16) fnord: Build Y1 Fnord
	zoltar: I am in the Green!
	fnord: You're looking a little green around the gills there, Zoltar.
You sure you're doing okay?

17) zoltar: Trade G2 Y2 Z2

18) fnord: Move R1 Fnord Discordia
	zoltar: Heh heh heh, I suppose I'll have to trade away my greens before I explode!  

19) zoltar: Trade G3 R3 Zoltar

20) fnord: Trade Y3 G3 Fnord

21) zoltar: Sacrifice G3 Zoltar
Build G2 Z1
Build G3 Zoltar
Build Y2 Z2

22) fnord: Build Y2 Fnord
	zoltar: stealing my green factory, eh?  oh well!

23) zoltar: Discover Y2 Z2 B2 Z3
	fnord: Hmmm... I don't think I'm very good at this game yet.

24) fnord: Trade Y2 R2 Fnord

25) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Z2
Build Y3 Z3

26) fnord: Move R2 Fnord Discordia
	zoltar: Prepare to be boarded!

27) zoltar: Trade Y2 B2 Z2

28) fnord: Move R2 Discordia Z1

29) zoltar: Sacrifice B2 Z2
Trade G3 R3 Z2
Trade Y3 R3 Z3

30) fnord: Build G3 Fnord
	zoltar: For the first time, I have ships of all 4 colors!  The Death Star is nearly complete...

31) zoltar: Sacrifice Y2 Z2
Move G2 Z1 Z3
Move G2 Z3 Fnord
Catastrophe Fnord Green
	zoltar: Retreat!!!
	zoltar: Nah!  Attack!!!!

32) fnord: Attack G1 Z1
	zoltar: RED Alert!

33) zoltar: Move R3 Z3 Fnord

34) fnord: Build Y2 Discordia
	zoltar: Kaboom!!!!

35) zoltar: Sacrifice R3 Z2
Attack B1 Fnord
Attack Y1 Fnord
Pass

	fnord: I think that this last move is, at best, a delaying maneuver.
	fnord: Doh!  Forgot that...  *chuckle*  Nicely done.
	zoltar: I think there was no defence, as I could sac a big red ship for 3 attacks on the homeworld, even if you created or moved another ship to the homeworld.  I think I had an advantage but you were ok until the green catastrophe.  I've now won twice to you and lost twice to an advanced player.  Play again?
	fnord: Sure... but, am I gonna get trounced again? *grin* 


3699)
Started: 2006.6.19, Ended: 2006.6.21
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3
	zoltar: Ok, I finally won a game against another beginner so I'm ready to try again!  Maybe I'll get the hang of this game.

2) zoltar: Homeworld B3 Y1 G3

3) TwoShort: Build G1 Twoshort

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G1 Y1 Twoshort

6) zoltar: Trade G3 Y3 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build Y2 Zoltar
	zoltar: I already feel like I have a big disadvantage on the second move.  You got to take the two smaller stars, and maybe I should have taken a medium and large because you now are getting medium yellows already, and switching to a big yellow ship means I'm likely to be destroyed by a catastrophe as in our previous game as I have a yellow star.  I suppose I'm safe to build more yellow until you get a large yellow, or if you get a medium yellow and move out your small yellow one step, but that could be two moves away, and then I'll have to change the color of my big ship again.  Is this normal, or have I lost a tempo or two?
	zoltar: b y2 zoltar

9) TwoShort: Build Y2 Twoshort

10) zoltar: Discover Y2 Zoltar G2 Green2

11) TwoShort: Discover Y1 Twoshort G3 Grogar

12) zoltar: Build G1 Zoltar

13) TwoShort: Discover G1 Twoshort Y3 Yolonda

14) zoltar: Trade G1 B1 Zoltar

15) TwoShort: Build G1 Twoshort
	TwoShort: Sorry, I somehow missed your questions until now.  The 1-2 homeworld is (I think) a very slight advantage.  You might have switched the colors of your stars to not deplete small yellows so far, but either way, I've got only a slight advantage by getting more twos than you, as long as you avoid getting locked out of yellow entirely, which you did.  For a really big advantage, I need to get more 3 pointers than you.  Your latest move means I can grow a Y3 at Grogar.  Then once I move one of the tyellows to a new star, I can sacrifice the g1 at yolonda to grow that y3 too, and then you'll really be in a bad way.  So I think you've been doing pretty much OK until this latest move... which I'd be happy to have you undo if you like.
	zoltar: Ok, thanks, I undid that.  Maybe I'll take some time and think about this, as I didn't see any of your analysis before I made the move.  I'm especially fuzzy on tactics that involves sacrifices and seeing the possibilities and outcomes.  I'll take a break and think and come back to it fresh this evening and see if I can find some better plan of action that doesn't give you the upper hand building the monster sized ships.

16) zoltar: Build B1 Zoltar
	zoltar: This is what I came up with.  By not building a yellow, you don't get the y3, but if I build a green, you could either sacrifice for a catastrophe or you could take the bigger greens by sacking your G3 and building both G2s and your G3 again; so if I trade for a blue, I avoid all of the above and have a new color I can build.  Getting a red didn't seem to be as important yet, so I got into the blue market.  I hope that is sound reasoning and I haven't blown it again.
	TwoShort: That's pretty good; another alternative would have been moving the g1 out, thus threatening to move into one of my systems and cause a catastrophe if I build too many greens.  As you've correctly noted, I'm threatening to set up a "factory" where I repeatedly sacrifice and re-grow the g3.  You probably can't stop that entirely, but if at all possible you want to force the tempo such that you get a g3 for your own factory too.

17) TwoShort: Build G2 Yolonda

18) zoltar: Trade Y3 G3 Zoltar
	zoltar: I seem to be doomed.  You can sac your G3 and then grow it back, plus another g2 in your homeworld and the last g3 in yolanda, giving you two green 'factories' and leaving me with only small greens.    Did I make a serious blunder, and if so, was there a defence?

19) TwoShort: Discover G1 Yolonda B2 Bluestar
	TwoShort: Well, I'd caution you against giving up too easily; comebacks are certainly possible in this game.  In any case, if you want good practice at seeing possibilities, try to see how long you can hold me off.  As for the current situation, you might consider flipping your y3 back to green;  it's hard to be inefficient that way, but you don't want to miss the factory boat.  Note that I don't dare grow 3 greens at Yolonda, because you could sacrifice your y2 to move in and cause a catastrophe there.  It would eventually be nice for you to have a green somewhere beyond your homeworld, so you could pose the same threat to my homeworld, without having to sacrifice your 3 (which you don't want to do except to get another or win).

20) zoltar: Discover G1 Zoltar B2 Blue2
	zoltar: Ok, I wouldn't have thought of that, but it makes sense.  I did see that if you get 3 greens I could sac my y2 if I ever got my green out of my homeworld, so perhaps that will do.  I understand the principle of the factory, but I don't quite get it.  I seem to have to have a g3 plus one other green ship at my 'factory' system, so that the other green can support my rebuilding the g3 after I make my other 2 builds.  Is that it, or is there more to it than that?

21) TwoShort: Trade Y2 R2 Twoshort
	TwoShort: That's it, except that the other green could be at a different system so that your g3 jumps there as part of the bargain.  Either way, you get two grows anywhere without giving anything up.
	TwoShort: That's it, except that the other green could be at a different system so that your g3 jumps there as part of the bargain.  Either way, you get two grows anywhere without giving anything up.
	TwoShort: Hmm, not sure why that happened


22) zoltar: Trade B1 R1 Zoltar

23) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build Y2 Grogar
Build G3 Twoshort
	zoltar: But even with a factory I can't grow a ship in a system without another ship of that color, right?  I just don't need any green in the system where I do one of the builds?
	TwoShort: Exactly.  Note that if you factory now, you won't be able to regrow the g3 in your homeworld, and it can be dangerous to leave your homeworld without a 3 pointer once your opponent has red.  Luckily, I don't want to factory this turn either, since I can only grow yellow & green, which would give you access to the Y3s. 

24) zoltar: Move B1 Zoltar Green2

25) TwoShort: Move Y2 Grogar Blue2
	zoltar: I assume that I must get a red ship here, even if only an itty-bitty one, so that you can't bully me by coming to any of my systems with any one of your ships and threatening to sac your red to take over my ships.
	TwoShort: Yeah, it's pretty much always a good idea to get a red ship if your opponent has one. 

26) zoltar: Trade B1 R1 Green2

27) TwoShort: Sacrifice G3 Twoshort
Build Y2 Blue2
Build Y3 Grogar
Build G3 Twoshort

28) zoltar: Build Y3 Green2
	zoltar: In another game against another beginner like myself, I got a red ship, my opponent ignored it, and the next move now I sacrificed my home Y3 ship to teleport my R3 from my homeworld into his, and I think that there is no defence, as with even an R1 anywhere, he could have defended by sacking the  R1 and taking my ship in his homeworld, but now if he trades for a red ship, I can just capture it on my move.  What a powerful weapon, even a single unopposed red ship!

29) TwoShort: Sacrifice G2 Yolonda
Build G2 Bluestar
Build Y3 Blue2
	TwoShort: Yeah, Ocasionally you get a situation where you can ignore your opponent having taken red for a turn or two because they can't reach you, but you've got to be careful; as you say, if they attack, it will be too late.
	TwoShort: Oh, you don't want to do that...  I can sacrifice my y2 to move two gs into your homeworld for a catastrophe.  I'm not entirely sure what you should do instead, but note that it's pretty unlikely I'll sacrifice to attack the g1 if you leave it at Blue2; for reasons just discussed, I don't want to be without red while you have one, and a 2 pointer sac for just a 1 pointer isn't that great a trade in any case.  I wanted to spread the yellows out for growing options; being randomly threatening by moving into your system was just a side bonus :)

30) zoltar: Discover Y2 Green2 B3 Blue3
	zoltar: Ok, I didn't see that.  I wanted a factory!  But I can't build a Y2, or you use the factory to instantly get both Y3s.  I am doomed already it seems.

31) TwoShort: Sacrifice Y3 Blue2
Move G1 Bluestar Zoltar
Move G2 Bluestar Zoltar
Move G2 Bluestar Zoltar
Catastrophe Zoltar Green

32) zoltar: Move R1 Zoltar Green2
	zoltar: Again, you are getting 2 ships for every one of mine...
	TwoShort: Well, to be frank, you are probably doomed.  It's definitely a deep game that rewards experience, which I've got lots of.

	zoltar: Yeah, I knew that, but I resigned too early last game, so I want to see how you force the win.  I just realized you could sac your Y3 and wipe out my greens any time you want, for starters.
	zoltar: Oops, that wasn't very smart... D'oh!
Play again?
	TwoShort: Weird; it really shouldn't let you do that.
	zoltar: Not only does it let you do that, but it doesn't allow a take-back either.  A pathetic way to die!


3700)
Variants: "Unrated"
Started: 2006.6.19, Ended: 2006.6.21
Participants: zoltar (S), fnord (N)
Winner: zoltar

1) fnord: Homeworld Y2 B1 G3

2) zoltar: Homeworld G2 B3 Y3

3) fnord: Build G1 Fnord

4) zoltar: Build Y1 Zoltar

5) fnord: Trade G1 Y1 Fnord

6) zoltar: Trade Y1 G1 Zoltar

7) fnord: Build Y1 Fnord

8) zoltar: Discover G1 Zoltar B1 Blue1

9) fnord: Discover Y1 Fnord R3 Eris
	zoltar: As you can see, I'm clueless about openings, and took back and changed both moves so far.  Except that I so far have always started with some b-g-y combo, as it seems only in advanced strategy could an early red be helpful, perhaps to force the opponent to waste time trading and getting reds to maintain the balance. 
	fnord: Yeah.. .the strategy guide I read said that Reds weren't that useful until mid-game, at the earliest, since at the beginning of the game you should worry about developing your fleet.

10) zoltar: Build G1 Blue1

11) fnord: Build Y1 Fnord

12) zoltar: Build Y2 Zoltar

13) fnord: Move Y1 Fnord Eris

14) zoltar: Trade Y3 R3 Zoltar

15) fnord: Build G1 Fnord

16) zoltar: Build Y2 Zoltar

17) fnord: Move G1 Fnord Eris
	fnord: I'm not feeling well, so I'm gonna go lie down for a while, I probably won't be able to make a move again for the rest of the day.

18) zoltar: Build Y3 Zoltar

19) fnord: Build G2 Fnord
	zoltar: Ok, I did that anyway, for lack of anything better...
	zoltar: Take your time, then -- we can continue tonight or tomorrow -- hope you feel better.

20) zoltar: Sacrifice Y3 Zoltar
Move R3 Zoltar Blue1
Move R3 Blue1 Eris
Move R3 Eris Fnord

21) fnord: Sacrifice G3 Fnord
Build Y3 Fnord
Build G2 Fnord
Build G3 Fnord

22) zoltar: Sacrifice Y2 Zoltar
Move G1 Blue1 Eris
Move G1 Eris Fnord
Catastrophe Fnord G

23) fnord: Move Y1 Eris Blue1

24) zoltar: Attack Y3 Fnord
	zoltar: b y3 zoltar

25) fnord: Trade Y1 R1 Blue1

26) zoltar: Sacrifice G1 Blue1
Build Y1 Fnord
Catastrophe Fnord Y

	zoltar: Yes, the game is wonderfully complex, and we have to weigh getting big pieces, getting all colors, and not having too many of one color in one place.  The trick with the G3 I learned from the games I lost; it's called "The Factory", where I have a G3 and just one other green in a system, and there are no small greens and no more than 2 medium greens in the stash.  Then you can sack the G3, rebuild it in place with the other small green, and you get two other builds, meaning two builds instead of one, anywhere you have ships.  
	zoltar: Well, while I could have just overpowered your last defender, I thought I'd do one more sac and end with a big bang, since you couldn't do it!


3695)
Started: 2006.6.20, Ended: 2006.6.25
Participants: zoltar (S), Gort (N)
Winner: Gort

1) Gort: Homeworld G1 Y2 B3

2) zoltar: Homeworld Y1 B2 G3

3) Gort: Build B1 Gort

4) zoltar: Build G1 Zoltar

5) Gort: Discover B3 Gort Y3 Gorn

6) zoltar: Build G1 Zoltar

7) Gort: Trade B3 G3 Gorn

8) zoltar: Trade G1 Y1 Zoltar

9) Gort: Build B1 Gort

10) zoltar: Build Y1 Zoltar

11) Gort: Build G1 Gorn

12) zoltar: Discover Y1 Zoltar G3 Hydra

13) Gort: Trade B1 R1 Gort

14) zoltar: Trade G3 R3 Zoltar

15) Gort: Move G3 Gorn Gort

16) zoltar: Build Y2 Zoltar

17) Gort: Build G2 Gorn

18) zoltar: Build G2 Zoltar

19) Gort: M G2 Gorn Zoltar

20) zoltar: Sacrifice Y2 Zoltar
Move G2 Zoltar Gorn
Move G1 Zoltar Gorn

21) Gort: S G2 Zoltar
Build G2 Gorn
Build G2 Gort
Catastrophe Gorn G

22) zoltar: Build Y2 Hydra

23) Gort: Trade G2 R2 Gort
	Gort: I thought your previous "undid" move was mugh better. I couldn't figure out an appropriate response.

24) zoltar: Trade Y1 G1 Zoltar
	zoltar: Oh, that was an oversight.  I was afraid that you would destroy one of my homeworld stars if I did the first move.  I had a Y1 and Y2 and a Y1 star in my homeworld.  If I sac my G2 and build Y2 and Y3 in the hydra system, my green tech was safe, but now I was afraid you would trade your G2 for a y2, but all the y2s were used up and I only realized that after I changed the move.  A silly oversight on my part.
	Gort: it's cool. You'll get me in the end. I can sense a disturbance in the fork. :)

25) Gort: Move R2 Gort Hydra

26) zoltar: Sacrifice Y1 Hydra
Move Y2 Hydra Zoltar

	zoltar: I've already screwed up terribly.  I'm probably quite lost, and it won't take my move back again.  If I make another ridiculous mistake I'll resign so we can start over and I can give you a real game. 
	Gort: OK, though I still think you had some options. Never give up! Gort makes mistakes, too! Anyway, Zoltar had Gort on the ropes there for a while. Our robot gaurdians will be kind to your people.
	zoltar: In the middle game I wouldn't give up, but it was the opening and I'd put you four moves ahead, and I'm a beginner so I need the practise and would rather not waste time and just start again, which is what I'd ask to do in an over the board game.             


3702)
Started: 2006.6.20, Ended: 2007.2.10
Participants: Gort (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R2 B1 G3

2) Gort: Homeworld G3 Y1 B3

3) TwoShort: Build G1 Twoshort

4) Gort: Build B1 Gort

5) TwoShort: Trade G1 Y1 Twoshort

6) Gort: Discover B1 Gort G2 Grot

7) TwoShort: Build Y1 Twoshort

8) Gort: Build B1 Grot

9) TwoShort: Discover Y1 Twoshort G3 Grogar

10) Gort: B B2 Grot

11) TwoShort: Build Y2 Twoshort

12) Gort: Build B2 Gort

13) TwoShort: Discover Y2 Twoshort B3 Bluestar

14) Gort: Trade B2 Y2 Grot

15) TwoShort: Build G1 Twoshort

16) Gort: Trade B2 G2 Gort

17) TwoShort: Discover G1 Twoshort Y3 Yolonda

18) Gort: Trade B3 R3 Gort

19) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y3 Grogar
Build Y3 Twoshort

20) Gort: Move B1 Grot Grogar

21) TwoShort: Trade Y2 R2 Bluestar

22) Gort: Build Y2 Grot

23) TwoShort: Sacrifice G1 Yolonda
Build Y3 Bluestar

24) Gort: Move Y2 Grot Bluestar

25) TwoShort: Move Y3 Bluestar Grot

26) Gort: Sacrifice R3 Gort
Attack R2 Bluestar
Attack Y2 Bluestar
Attack Y1 Grogar

27) TwoShort: Trade Y3 R3 Twoshort

28) Gort: Sacrifice Y2 Grot
Move Y2 Bluestar Twoshort
Move R2 Bluestar Twoshort

29) TwoShort: Trade R3 G3 Twoshort

30) Gort: Build B2 Grogar

31) TwoShort: Sacrifice Y1 Twoshort
Discover Y3 Grogar B2 Trog

32) Gort: Move B1 Grogar Twoshort

33) TwoShort: Trade Y3 R3 Trog

34) Gort: Sacrifice B2 Grogar
Trade B1 G1 Twoshort
Trade R2 G2 Twoshort

35) TwoShort: Sacrifice R3 Trog
Attack Y2S Twoshort
Attack G2S Twoshort
Attack G1S Twoshort

36) Gort: Build Y1 Grogar

37) TwoShort: Trade G2 R2 Twoshort

38) Gort: Sacrifice Y2 Bluestar
Move Y1 Grogar Grot
Move Y1 Grogar Grot

39) TwoShort: Move Y3 Grot Gort
	Gort: Man, I think procrastination is my only reasonable strategy. Sorry.



3716)
Variants: "Unrated"
Started: 2006.6.21, Ended: 2006.6.27
Participants: fnord (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y1 B2 G3

2) fnord: Homeworld Y3 B2 G3

3) zoltar: Build G1 Zoltar

4) fnord: Build G1 Fnord

5) zoltar: Trade G1 Y1 Zoltar

6) fnord: Build G1 Fnord

7) zoltar: Build Y1 Zoltar

8) fnord: Discover G1 Fnord G1 Eris
	fnord: hmmm... critical flaw in my plan.

9) zoltar: Build G2 Zoltar

10) fnord: Build G2 Fnord

11) zoltar: Discover Y1 Zoltar G3 Nix

12) fnord: Trade G2 Y2 Fnord

13) zoltar: Build G2 Zoltar

14) fnord: Sacrifice Y2 Fnord
Move G1 Eris Nix
Move G1 Nix Zoltar
Catastrophe Zoltar G

15) zoltar: Build Y2 Nix
	fnord: Sorry, but was too tempting to pass up.
	zoltar: I never even saw that coming.  I'm still bad at sacrifices, though it's easier for me to see my own possible sacs but I miss opponents' ones.  I think the game is pretty much over


16) fnord: Trade G1 R1 Fnord
	fnord: I don't know, you seemed to have used sacrifices well against me.  I didn't see some of the ones coming that you used against me, though I know I was forced to make moves that wouldn't let you use others.
	fnord: And I wouldn't say the game is over, I still have a long way to go.

17) zoltar: Build Y2 Nix

18) fnord: Build G1 Fnord
	zoltar: Ok, I won't resign and will play it out -- I doubt I can last more than a few moves.

19) zoltar: Discover Y2 Nix Y2 Hydra

20) fnord: Trade G3 Y3 Fnord
	fnord: Interesting defence... deny me Yellow ships, so I can't cause a catastrophe in your system.  Very ingenious.

21) zoltar: Build Y3 Nix

22) fnord: Sacrifice Y3 Fnord
Discover R1 Fnord B1 Discordia
Move R1 Discordia Nix
Move R1 Nix Zoltar

23) zoltar: Move Y3 Nix Zoltar

24) fnord: Build G1 Fnord
	zoltar: YIKES!
	fnord: Foo!  Hadn't thought of that... thought I had you there.

25) zoltar: Trade Y3 R3 Zoltar

26) fnord: Discover R1 Zoltar G3 Route

27) zoltar: Build Y3 Nix

28) fnord: Trade G1 R1 Fnord

29) zoltar: Move Y3 Nix Zoltar
	zoltar: I'm still not quite out of the hole, but seeing that I could defend, your sac nullified your advantage, and a slow build up instead would have kept you in the lead, as it would be longer for me to get green ships again.

30) fnord: Build G1 Fnord

31) zoltar: Trade Y3 G3 Zoltar
	zoltar: Now I'm threatening to sac my Y3 and move my big gun into your homeworld!!!  What a turn of events!
	fnord: Possibly.  I was likely blinded by not wanting to risk building up slowly and letting you pull something out of your hat like you've done before, so I tried for the quick kill.

32) fnord: Build R1 Route
	zoltar: Well, I'm going to learn from your mistake and pass by a possible quick kill and strengthen my position.  I'm going to be away from my computer and will move again in an hour or so.

33) zoltar: Build Y3 Zoltar

34) fnord: Build R2 Route

35) zoltar: Move R3 Zoltar Route
Catastrophe Route R

36) fnord: Build R1 Fnord
	zoltar: Looks like a fair trade to me, leaving me with a monopoly on the wormhole technology...
	zoltar: My super-safe defensive build-up play is working better that I had imagined.

37) zoltar: Trade Y3 R3 Zoltar
	fnord: No, not exactly a monopoly...  I can get out of my system, I just can't go anywhere else.

38) fnord: Discover G1 Fnord G1 Kallisti

39) zoltar: Build G2 Zoltar
	fnord: Another lesson... make at least one of your homeworld stars a 1-point, so that you have a better chance of creating stars one step away from your homeworld in the mid-game.

40) fnord: Build G2 Fnord

41) zoltar: Build Y3 Zoltar

42) fnord: Discover G1 Fnord B1 Sink
	zoltar: Actually, I just learned today that the most preferable setup for the first player is a 1-point star and a 2-point star, with colors y & b (either combination) with a g3 ship, and then you have more control over the 3-point pieces later in the game when you create stars one-step from your homeworld. 

43) zoltar: Trade Y3 R3 Zoltar

44) fnord: Move R1 Fnord Sink
	fnord: seems good, though you've put Y3 ships to good use often enough.

45) zoltar: Build Y3 Zoltar

46) fnord: Build G2 Sink

47) zoltar: Build G3 Zoltar

48) fnord: Build R1 Fnord

49) zoltar: Sacrifice Y3 Zoltar
Move R3 Zoltar Nix
Move R3 Nix Sink
Move R3 Zoltar Nix
	fnord: Yeah, couldn't figure out how to get that G3. *sigh*
And you were worried about being out of the game.  *chuckle*
	zoltar: Yes, your sac backfired terribly.  I notice that had your sac sent an R3 rather than a puny R1 into my homeworld, the game would be over.  Shows how important the big ships are.

50) fnord: Sacrifice G2 Sink
Build R2 Sink
Build R2 Sink
Catastrophe Sink R

51) zoltar: Trade G2 B2 Zoltar
	fnord: Yeah, but back then I couldn't have gotten an R3, and by the time I could have gotten to it, you would have had a 3 ship as well, most likely.  Well, it certainly was worth a try.

52) fnord: Build G2 Sink
	zoltar: Nice move!  That ruined my plans....

53) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build Y3 Nix

54) fnord: Move R1 Fnord Kallisti
	fnord: Thank you... it was a desperation move, that's for sure.


55) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Hydra
Build B1 Zoltar

56) fnord: Build R1 Fnord

57) zoltar: Sacrifice Y3 Hydra
Move B2 Zoltar Nix
Move G2 Zoltar Nix
Move G2 Nix Hydra

58) fnord: Build R2 Kallisti

59) zoltar: Sacrifice G3 Zoltar
Build G3 Hydra
Build Y3 Hydra
Build R2 Nix

60) fnord: Sacrifice G2 Fnord
Build R2 Fnord
Build R3 Fnord
	zoltar: The Death Star is nearing completion...

61) zoltar: Sacrifice G3 Hydra
Build G2 Zoltar
Build R3 Nix
Build B1 Nix

62) fnord: Move R2 Fnord Sink

63) zoltar: Sacrifice G3 Zoltar
Build G3 Hydra
Build G3 Hydra
Build B3 Nix


64) fnord: Move R1 Fnord Sink

65) zoltar: Sacrifice B3 Nix
Trade G3 B3 Hydra
Trade R3 G3 Nix
Trade G3 R3 Hydra

66) fnord: Build G3 Sink

67) zoltar: Sacrifice G3 Nix
Build G3 Hydra
Build B3 Hydra
Build B3 Hydra
	fnord: Whoops... Just noticed I had 4 reds in my homeworld...  better move one.

68) fnord: Pass

69) zoltar: Move Y3 Hydra Kallisti
	zoltar: I saw that too, but simply passing and blowing them seemed pretty rude, so I just went ahead with my play to grab most of the pieces before I attack...
	zoltar: I just lost a game 1 minute ago to TwoShort with very few pieces on the board (just the two original homeworlds and 4 of his pieces left in the final position) -- I suppose the minimum possible would be to blow up your opps homeworld and have one piece left in your homeworld with only one star.  This is the opposite of that game in just about every way possible -- I wonder if I can win with every piece on the board, all owned by me! 

70) fnord: Sacrifice G3 Sink
Build G3 Kallisti
Pass
Pass

71) zoltar: Sacrifice R2 Nix
Attack G3 Kallisti
Attack G1 Kallisti
	zoltar: ok -- you get one and I get the last two!

72) fnord: Build R2 Sink

73) zoltar: Sacrifice R3 Hydra
Attack R2 Kallisti
Attack R1 Kallisti
Pass
	zoltar: Yay! The stash is depleted and I think I have you slightly outnumbered.
	fnord: Just a bit...

74) fnord: Pass

75) zoltar: Sacrifice G3 Kallisti
Build G3 Zoltar
Build R3 Nix
Pass

76) fnord: Pass

77) zoltar: Move R1 Kallisti Hydra

78) fnord: Pass
	zoltar: Soon kallisti will be MINE!  All Mine!!!!!!!!!!!!!!!  
(Demonic Laugh)

79) zoltar: Move G1 Kallisti Nix

80) fnord: Pass

81) zoltar: Move R3 Nix Hydra

82) fnord: Sacrifice G1 Sink
Pass
	fnord: Hmmm.... now that I think about it, maybe you should have resigned earlier in the game.  *grin*

83) zoltar: Build G1 Zoltar

84) fnord: Pass
	zoltar: I want more pieces!

85) zoltar: Move R1 Hydra Sink
Catastrophe Sink R

86) fnord: Pass
	zoltar: Prepare to be boarded, Earthling!

87) zoltar: Move R3 Hydra Sink
	zoltar: m r3 nix hydra

88) fnord: Pass
	zoltar: The fleet is now in position for the assault on sink!

89) zoltar: Attack G2 Sink

90) fnord: Pass

91) zoltar: Sacrifice G3 Zoltar
Build G3 Sink
Build R1 Kallisti
Build R1 Sink

92) fnord: Pass

93) zoltar: Sacrifice G3 Hydra
Build G3 Sink
Build R2 Nix
Build R2 Nix

94) fnord: Pass

95) zoltar: Move Y3 Nix Sink

96) fnord: Pass

97) zoltar: Move R1 Kallisti Fnord
	zoltar: Sink has been annexed to zee Zoltarian empire!

98) fnord: Move R1 Fnord Sink

99) zoltar: Move R1 Sink Fnord

100) fnord: Attack R1 Fnord
	zoltar: My starfleet is now complete!  You are surrounded!

101) zoltar: Move R2 Kallisti Fnord
Catastrophe Fnord R

	zoltar: Well, that was fun, but I didn't get to end the game with all the pieces on the board, and all mine. :)


3696)
Started: 2006.6.22, Ended: 2006.6.23
Participants: Keith (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B1 Y2 G3
	Keith: Hello Zoltar.  I have played two unrated learning games with experts and I am now playing my first rated game (which I limited to an opponent not one of the top ten ranked players).

2) Keith: Homeworld B3 Y1 G3

3) zoltar: Build G1 Zoltar

4) Keith: Build G1 Keith

5) zoltar: Trade G1 Y1 Zoltar

6) Keith: Trade G1 B1 Keith
	zoltar: Hi Keith.  I've lost every game to experts, and have won 2 unrated games against another brand new player.  I'm still getting a basic feel for the game, but I like it a lot.

7) zoltar: Build Y1 Zoltar

8) Keith: Discover B1 Keith G2 Midworld

9) zoltar: Discover Y1 Zoltar G3 Nix

10) Keith: Build G1 Keith

11) zoltar: Build Y2 Nix

12) Keith: Trade G1 B1 Keith
	Keith: You do seem to have grasped the concept of color denial... like yellow.

13) zoltar: Build Y2 Zoltar
	zoltar: Well, I was trying to get to the larger size upgrades faster than you, and yellow seemed to be the shortest path, so I got the first medium sized ship.  In my game against good players, they literally get 2 ships for 1 of mine and I find myself hopelessly outnumbered by the middlegame.  Don't quite know how I get tricked -- I'll have to review my games.  For now, I'm going for grabbing the bigger ships first.

14) Keith: Build B2 Midworld
	Keith: I did review your games before accepting your challenge.  TwoShort is the top ranked player and quite adept at getting a factory up and running with safe places to build in.  That and TwoShort's willingness to give advice in an unranked game is why I chose TwoShort for one of my mentoring/learning games.

15) zoltar: Build Y3 Nix

16) Keith: Trade B1 R1 Keith

17) zoltar: Trade Y2 R2 Zoltar

18) Keith: Trade B2 Y2 Midworld
	zoltar: I have learned that as soon as your opponent gets a red, get a red immediately somewhere, or else you will get bushwhacked!
	Keith: That is true.  More importantly (for me) it puts me in the yellow game.

19) zoltar: Move Y3 Nix Midworld
	zoltar: I'm confused as to how getting a red puts you in the yellow game, as it seems about the same if we both have a red or if neither of us does -- I hope I haven't missed something big!
	Keith: To get a red you had to trade a yellow for it (or your G3 and temporarily give up a factory effort).  Then I picked up that yellow.

20) Keith: Build B1 Midworld
	zoltar: now that you have a yellow, I have to worry about you blowing up all my yellows if I would have let you join the party at nix!  Two games ago I might have missed that, but now I'm older and wiser! 

21) zoltar: Sacrifice R2 Zoltar
Attack Y2 Midworld
Attack B1 Midworld

22) Keith: Build B2 Midworld
	zoltar: I'm back in the Yellow business again!
	Keith: Hey...what happend to the theory of having a red ship if I have one?   In other words I did not think of your doing that.

23) zoltar: Build B2 Midworld
Catastrophe Midworld B

24) Keith: Build G1 Keith
	zoltar: Well, I'm playing "Palestinian style", and I can always grow a red back again.  After all the destruction, I end up once again with -- Yellow!

25) zoltar: Build Y3 Zoltar

26) Keith: Build R1 Keith

27) zoltar: Trade Y3 R3 Zoltar
	zoltar: t y3 r3 zoltar

28) Keith: Discover G1 Keith B2 Bell
	zoltar: ok, ok, I get the message -- reds it is!
	zoltar: I have to go will move again later this evening!

29) zoltar: Build Y3 Zoltar

30) Keith: Build G1 Keith
	Keith: You now have a 4 to 1 lead in large ships and an 8 to 4 lead in ships overall.  It should be just a matter of time before you figure out how to defeat me.

31) zoltar: Trade Y3 R3 Zoltar
	zoltar: t y3 r3 zoltar
	zoltar: Yes, I'm usually on the other end of this situation, so I'll do what the good players do against me and play solid and slowly consolodate my lead

32) Keith: Discover G1 Keith B2 Bird

33) zoltar: Build Y3 Zoltar

34) Keith: Build G1 Keith

35) zoltar: Build G2 Zoltar

36) Keith: Trade G3 Y3 Keith

37) zoltar: Sacrifice Y3 Zoltar
Move Y1 Nix Midworld
Move Y1 Midworld Keith
Move Y2 Midworld Keith
Catastrophe Keith Yellow


38) Keith: Build G2 Keith

39) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build Y1 Midworld

40) Keith: Trade R1 Y1 Keith
	Keith: Which is why I had been hesitant to trade for a Y3.  Growing another imobile green ship wasn't working for me either.

41) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Nix
Build Y3 Nix
	zoltar: Yup, I figured if you stopped me from taking the Y3, I could cause another catastrophe and then start building my yellows again from scratch, but now my big ships outnumber you 4-0

42) Keith: Move G1 Keith Zoltar
Catastrophe Zoltar Green

43) zoltar: Move R3 Zoltar Keith

44) Keith: Sacrifice G2 Keith
Build R1 Keith
Build R1 Keith
Catastrophe Keith Red

45) zoltar: Sacrifice Y3 Nix
Move Y1 Midworld Keith
Move Y3 Midworld Keith
Move R3 Zoltar Keith
	Keith: Probably just a defiant gesture on my way out.
	Keith: Probably just a defiant gesture on my way out.

46) Keith: Trade Y1 R1 Keith
	zoltar: I never saw that coming, as I forgot that by rudely blowing up one of your stars, your homeworld is just a step away.  Of course, that also means it's a step away for my red battlecruisers, and in big ships I still have the edge...
	Keith: A big red enemy battle cruiser at my homeworld is a disadvantage to pointing out our homeworlds are now adjacent.  At least I reduced the big ship ratio from 6 to 0 to 4 to 0... on my way out.  You still have a huge advantage.
	Keith: I have to head off for a 12 hour work shift. 
	zoltar: Yes, I think it's checkmate in 2 moves
	Keith: I was not sure how long I could wait before you noticed the adjacent homeworlds or started moving green ships out.  I thought about building the Y3 at keith and seeing if you went for another destruction cycle.  That would have put large ship ratios at 3 to 0 if I still was able to pull off the green catastrophe at Zoltar. 

47) zoltar: Attack R1 Keith
	zoltar: Very nice defence!

	zoltar: Good Game, my first rated win ever!  Play again?
	Keith: Hey, I made it to move 47!  Very good game.  You had me in trouble from very early on.  Yes I would like to play again.
	zoltar: Most of my games have been against good players who have me outplayed from the 3rd move and it only gets worse.  It's great practice for me to play with another beginner so I can learn to attack and press an advantage when I get one.  So let's play again; the practice will help us both learn the tricks to this clever game.


3721)
Started: 2006.6.23, Ended: 2006.6.23
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B2 R3 G3

2) zoltar: Homeworld B1 Y2 G3

3) TwoShort: Build G1 Twoshort

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G1 Y1 Twoshort

6) zoltar: Trade G1 Y1 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build G1 Zoltar

9) TwoShort: Build Y1 Twoshort

10) zoltar: Build Y2 Zoltar

11) TwoShort: Discover Y1 Twoshort G1 Gloria

12) zoltar: Discover Y1 Zoltar G3 Hydra

13) TwoShort: Discover Y1 Gloria B3 Borbor

14) zoltar: Trade Y2 B2 Zoltar

15) TwoShort: Build Y2 Twoshort

16) zoltar: Build B1 Zoltar

17) TwoShort: Discover Y1 Twoshort G1 Gonzo

18) zoltar: Trade B2 R2 Zoltar

19) TwoShort: Sacrifice G3 Twoshort
Build Y2 Borbor
Build Y3 Twoshort
Build Y3 Borbor

20) zoltar: Build Y3 Hydra

21) TwoShort: Move Y2 Borbor Zoltar

22) zoltar: Trade G1 B1 Zoltar
	zoltar: Nice move -- my y2 star is dead whether I capture your ship or not.  
	zoltar: Oh wow and if I build a g2, you can even sack your y3 and take out all my green, and blow up my star the next turn!

23) TwoShort: Trade Y2 B2 Zoltar
Catastrophe Zoltar Blue
	TwoShort: Well, if you liked that, you'll love this... :)

24) zoltar: Build Y2 Hydra
	zoltar: Whoa! Never saw that one coming!  Wow!

25) TwoShort: Move Y3 Borbor Zoltar
	zoltar: Uh-oh, it looks like checkmate if you sac your y3 in your homeworld to move the other 3 yellow ships into my homeworld.  At least I saw this one coming, even though there is no defence...

26) zoltar: Sacrifice Y3 Hydra
Move R2 Zoltar Borbor
Move Y2 Hydra Zoltar
Move Y1 Hydra Zoltar
Catastrophe Zoltar Y
	zoltar: I don't get it -- was I wrong?  Wouldn't have sacrifing your Y3 in your homeworld to move the y1 from Gonzo and the y1 and y3 from BorBor all to Zoltar have blown up my star?  Well if you won't -- I will!
	TwoShort: the y1 at Gonzo would have had to move to a 3 first, and from there to your homeworld, using up 2 moves.  Next turn I could do that, and the y1 from BorBor.  It was still checkmate, it just needed 2 turns to make the 4 moves required.
	zoltar: I -still- don't get it!  Gonzo was a G1 star, and my remaining home star was a Y2 star, so why couldn't the y1 at Gonzo move directly into my homeworld in one step? 
	TwoShort: Because I'm an idiot :)  You're absolutely right.  I had been planning how to move in the yellows before I got the chance to blow up the blue first, and never adjusted my thinking.



3725)
Started: 2006.6.23, Ended: 2006.6.26
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B2 R3 B3 *
	TwoShort: Here, you can go first this time...

2) zoltar: Homeworld Y1 B2 G3

3) TwoShort: Trade B3 G3 Twoshort

4) zoltar: Build G1 Zoltar
	zoltar: b g1 zoltar

5) TwoShort: Build G1 Twoshort

6) zoltar: Trade G1 Y1 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build Y1 Zoltar

9) TwoShort: Trade G3 Y3 Twoshort

10) zoltar: Trade Y1 G1 Zoltar
	TwoShort: Nice move


11) TwoShort: Discover G1 Twoshort B1 Bonanza

12) zoltar: Build G2 Zoltar
	zoltar: Thanks -- couldn't let you get that factory going

13) TwoShort: Build G2 Bonanza

14) zoltar: Discover G1 Zoltar Y3 Nix

15) TwoShort: Trade G2 Y2 Bonanza

16) zoltar: Discover G2 Zoltar Y3 Hydra

17) TwoShort: Trade Y3 G3 Twoshort

18) zoltar: Build G2 Zoltar

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Bonanza
Build G3 Twoshort
Build G3 Twoshort

20) zoltar: Move G2 Hydra Bonanza
	zoltar: I suppose you can factory here and get an extra build as well as take all the greens that are left, but what else could I do?  Yet again, I feel utterly lost at this point in the game.  Am I missing any key concepts here?
	TwoShort: At this point I can take the remaining greens, and that's it (which I may).  Often there are moves where you can't do anything right away, and you want to think about what things you could be threatening to do in the future.  Ideally, I want to advance as many potential agendas as possible.  You could advance a green, so as to threaten disater in my homeworld if I grow a third.  You could threaten the same thing with a 2 point yellow, so you might move your 1 point out to somewhere you can safely grow (it won't have to be green if the factories come on line); that would also help burn through the yellows.  If the 1 & 2 yellows are gone, you'll be able to sacrifice your g's at Nix and/or hydra to grow the system markers as ships.  That's a strategy called "cashing an investment".  The key concept at this point is who winds up with more 3 point ships as the first couple colors run out.  And of course, not letting the other guy surprise you and blow up your homeworld :)

21) TwoShort: Trade G3 Y3 Twoshort

22) zoltar: Sacrifice G2 Zoltar
Build G2 Bonanza
Build G3 Zoltar
Catastrophe Bonanza G

23) TwoShort: Move G1 Twoshort Bonanza

24) zoltar: Build G1 Nix
	zoltar: I suppose that was my only reasonable defence -- Well at least I have 2 big ships like you and I'm only behind one ship for now...
	TwoShort: Good move.  I only saw it after my move and was wondering if you would. 

25) TwoShort: Build G2 Twoshort

26) zoltar: Discover G1 Nix Y1 Hydra

27) TwoShort: Build G2 Bonanza

28) zoltar: Discover Y1 Zoltar B3 Charon

29) TwoShort: Move G2 Bonanza Charon

30) zoltar: Sacrifice G3 Zoltar
Build G2 Hydra
Build G3 Nix
Build Y2 Charon

31) TwoShort: Trade G2 R2 Twoshort

32) zoltar: Sacrifice G3 Nix
Build G2 Zoltar
Build G3 Nix
Build Y2 Charon

33) TwoShort: Build Y3 Bonanza

34) zoltar: Trade G2 R2 Zoltar

35) TwoShort: Sacrifice R2 Twoshort
Attack Y2S Charon
Attack Y2S Charon

36) zoltar: Move G3 Nix Bonanza

37) TwoShort: Sacrifice Y3 Bonanza
Move Y2 Bonanza Charon
Move Y2 Charon Zoltar
Move Y2 Charon Zoltar

38) zoltar: Move G1 Hydra Twoshort

39) TwoShort: Sacrifice G3 Twoshort
Build Y3 Twoshort
Build G2 Bonanza
Build G3 Charon

40) zoltar: Sacrifice G3 Bonanza
Build G3 Zoltar
Build R1 Zoltar
Build R1 Zoltar

41) TwoShort: Sacrifice Y3 Twoshort
Move G1 Bonanza Charon
Move G1 Charon Zoltar
Move G2 Charon Zoltar
Catastrophe Zoltar Green

42) zoltar: Attack Y2 Zoltar
	zoltar: Never saw the Yellow attack coming, as usual...
	TwoShort: Well, it's an attack out of semi-desperation; destroying half your homeworld doesn't finish you off, and leaves you with an advantage in ships...  but with you presuring me with your sacrificeable red threat, it seemed like time to use 'em or lose 'em.  So now it's a question of whether you can take control before I can get together the blues to finish you.  Of course, you're not forcing me to pull the trigger on the yellow catastrophe, so I naturally think about whether it's better to wait; and that 1 pointer in my homeworld certainly makes me nervous, though so far I don't see how it can do more than take out my G3, which would be painful, but I think recoverable so long as I keep the other 3 there and some green elsewhere.  In short, you have hearby graduated from "enthusiastic beginner" to "interesting opponent"...  So now I need to think a bit to figure out what to do here.

43) TwoShort: Trade Y2 R2 Zoltar
Catastrophe Zoltar Red
	zoltar: Well, I'm afraid I haven't a clue what to do here, nor how to attack, and you've sidestepped my green threat, so I suppose I'll sleep on it and look at the position tomorrow.  And thanks, I'm glad I'm putting up a bit of a fight, as I was worried I was going to be boring you after a while; I hope I can make things interesting.  My goal now is to knock out one of your stars before I die!

44) zoltar: Sacrifice G1 Twoshort
Build Y2 Charon

45) TwoShort: Move G3 Charon Zoltar

46) zoltar: Sacrifice G1 Nix
Build Y3 Charon
Catastrophe Charon Y

47) TwoShort: Trade G2 R2 Bonanza

48) zoltar: Move G2 Hydra Twoshort
	TwoShort: woops, missed your undo there

49) TwoShort: Sacrifice R2 Bonanza
Attack G2S Twoshort
Attack Y2S Zoltar

	TwoShort: Cool, this way I get to take all your ships :)  Anyway, I'll be happy to play again, but probably not until this evening...


3728)
Started: 2006.6.23, Ended: 2006.6.25
Participants: zoltar (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B2 Y1 G3

2) zoltar: Homeworld B2 R3 G3

3) Keith: Build G1 Keith

4) zoltar: Build G1 Zoltar

5) Keith: Trade G1 Y1 Keith

6) zoltar: Build G1 Zoltar

7) Keith: Build Y1 Keith
	Keith: A red homeworld star.  Did you pick that up from TwoShort?

8) zoltar: Trade G3 Y3 Zoltar

9) Keith: Discover Y1 Keith G3 Greenleaf

10) zoltar: Build Y2 Zoltar

11) Keith: Build Y2 Greenleaf

12) zoltar: Discover G1 Zoltar B1 Betazed

13) Keith: Discover Y1 Greenleaf B2 Bell

14) zoltar: Move Y2 Zoltar Betazed

15) Keith: Discover Y1 Keith G3 Midworld

16) zoltar: Build Y2 Betazed
	Keith: Well it seemed like a good idea at the time.  Grab the last three yellows with two y3s.  But you could sacrifice your y3, move your y2 to Keith and instant win.

17) Keith: Build G1 Keith
	zoltar: Yes, I've lost just that way before!  Sacrifices are the easiest moves to miss and get blindsided by.

18) zoltar: Trade Y2 R2 Betazed

19) Keith: Sacrifice G3 Keith
Build Y2 Bell
Build Y3 Greenleaf
Build Y3 Midworld

20) zoltar: Trade Y3 R3 Zoltar
	Keith: You just had to go and pull a gun.
	zoltar: I'm gonna blast'ya!
	Keith: I have to think about this and I have to get up in 6 hours so I will be at it again tomorrow.
	zoltar: Ok, goodnight, will look forward to part 2 tomorrow.

21) Keith: Move Y3 Greenleaf Keith

22) zoltar: Build Y3 Betazed

23) Keith: Sacrifice Y2 Bell
Move Y1 Bell Betazed
Move Y1 Midworld Betazed
Catastrophe Betazed Yellow
	zoltar: Looks like I had pulled the gun in the wrong place -- this is where I need it.

24) zoltar: Build G2 Betazed

25) Keith: Build G2 Keith

26) zoltar: Trade R2 Y2 Betazed

27) Keith: Trade G1 R1 Keith

28) zoltar: Trade G2 Y2 Betazed

29) Keith: Build R1 Keith

30) zoltar: Discover Y2 Betazed G3 Balderdash

31) Keith: Build R1 Keith

32) zoltar: Build Y1 Balderdash

33) Keith: Trade Y3 B3 Keith

34) zoltar: Build Y1 Balderdash

35) Keith: Move G2 Keith Balderdash

36) zoltar: Build Y3 Betazed

37) Keith: Sacrifice R1 Keith
Attack Y2 Balderdash

38) zoltar: Sacrifice Y2 Betazed
Move Y1 Balderdash Keith
Move Y1 Balderdash Keith

39) Keith: Attack Y1 Keith

40) zoltar: Sacrifice G1 Zoltar
Build Y2 Keith
Catastrophe Keith Y

41) Keith: Sacrifice Y2 Balderdash
Move R1 Keith Betazed
Move R1 Betazed Zoltar
	Keith: This has been an excellent struggle.  Sorry but I must head off to a nine hour workshift.

42) zoltar: Trade R3 Y3 Zoltar
	zoltar: Ok, maybe we can continue late tonight -- I think I'm losing.  I can at least force the supernova of one of your stars, but it has been at considerable cost.  Whether or not that can compensate for your lead in development we'll soon see.
	Keith: I have a development lead but so far I am not on offense.  All my ships are at least two away from your homeworld and my ship colors are not much of a catastrophe threat to your homeworld stars.

43) Keith: Sacrifice G2 Balderdash
Build R1 Zoltar
Build R2 Zoltar
Catastrophe Zoltar Red
	Keith: I think I can make it difficult for you to get that fourth yellow at my homeworld.

44) zoltar: Build G1 Betazed
	Keith: Or maybe not.  An expensive catastrophe indeed.  A y2, y1, y1, and g1 of yours.  Though I did waste a turn converting your y1.

45) Keith: Move Y3 Midworld Zoltar

	zoltar: Oh you're right, I meant to change my Y3 back to red, but I spaced out.  Good game.  Play again?
	Keith: Yes we should play again.  If you had changed your Y3 back to a R3 then I could have moved my R1 in an catastrophied all the ships at your homeworld.


3735)
Started: 2006.6.25, Ended: 2006.6.26
Participants: zoltar (S), Keith (N)
Winner: zoltar

1) Keith: Homeworld G1 B2 Y3

2) zoltar: Homeworld Y3 B2 G3

3) Keith: Build Y1 Keith

4) zoltar: Build G1 Zoltar

5) Keith: Build Y1 Keith

6) zoltar: Discover G1 Zoltar G1 Gamma

7) Keith: Discover Y1 Keith Y3 Brickroad

8) zoltar: Build G2 Zoltar

9) Keith: Trade Y1 R1 Keith

10) zoltar: Trade G2 R2 Zoltar

11) Keith: Build Y1 Keith
	zoltar: Aggression on only the 4th move, eh?
	Keith: I was trying to keep you away from a y2.  Since in our first game you taught me how inconvenient it can be to be yellow poor (or broke).  Besides, it was only a little one.  A defensive move.

12) zoltar: Build G2 Zoltar

13) Keith: Trade Y3 G3 Keith
	Keith: Once again you are racing up a color track while I struggle to get one.

14) zoltar: Build G2 Gamma

15) Keith: Build G2 Keith
	zoltar: Well, you ended up kicking my butt last game, so I'm not so confident.
	Keith: I am going to have to shut it down for the night soon.  It is 1:3AM where I am and I have a fence to build tomorrow in the cool of the morning before it get hot.  BTW what time is it where you are?
	zoltar: And I'm sure you'll send some jihadist into the delta quadrant and blow up all my extra greens before I can do anything about it.

16) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build R1 Zoltar
	zoltar: It's also 1:35 a.m. here too!  We must be located in the same Star System.  I live on Sol-3 in the Milky Way Galaxy.  How about you? :)

17) Keith: Build Y1 Keith

18) zoltar: Trade G2 Y2 Zoltar
	Keith: Sol-3 North American continent

19) Keith: Trade G3 Y3 Keith

20) zoltar: Sacrifice Y2 Zoltar
Move G2 Gamma Brickroad
Move R1 Zoltar Gamma
	zoltar: I'm in Greenbelt of the Milky Way
	Keith: Greenbelt?
	Keith: Maryland?

21) Keith: Move Y3 Keith Brickroad
	Keith: And here I was all set to sacrifice my Y3 to eliminate your G3s and give us a game with no large ships in play.
	Keith: This looks like a good point to stop and think.  That and it is 2:00AM.
	zoltar: Yes, the one in Maryland, not the one on Beta Lyra.
	zoltar: Ok, goodnight.  Hopefully we can continue tomorrow.
	Keith: Whitsett, North Carolina is my location.  Tomorrow night then if not sooner.

22) zoltar: Sacrifice G3 Zoltar
Build G2 Brickroad
Build G3 Zoltar
Build G3 Gamma

23) Keith: Move R1 Keith Brickroad

24) zoltar: Sacrifice R1 Gamma
Attack R1 Brickroad

25) Keith: Trade Y1 R1 Keith
	Keith: Duh!  Should not have moved tired.  Now I have a crises.

26) zoltar: Attack Y1 Brickroad
	zoltar: Attack!
	Keith: Back in about 1/2 an hour.

27) Keith: Sacrifice R1 Keith
Attack R1 Brickroad
	zoltar: The Yellow Brick Road will soon be mine!  Next stop, Oz!  Whew Who!

28) zoltar: Sacrifice G2 Brickroad
Build Y1 Brickroad
Build G2 Zoltar
Catastrophe Brickroad Y

29) Keith: Build G2 Keith
	zoltar: Elton John's "Goodbye Yellow Brick Road" plays in the background as splinters of Yellow Bricks go flying in all directions....
	Keith: Oh wow.  One mistake after another on my part.  Somehow I had the idea I was safe from a yellow catastrophe.  Three large ships to my none.  Six ships to my two.  The end is just a matter of time.  I will hold off a turn or two before I resign.

30) zoltar: Trade G3 Y3 Zoltar

31) Keith: Trade G2 R2 Keith
	zoltar: Yes, I was going to move my g2 into your homeworld, and then if you captured it, move the other g2 in and blow up your star; or if you captured the other g2 on BrickRoad, sac my g1 on gamma and rebuild it in your homeworld and still blow up the star.  But with my g2 ship and my y1 I could build the 4th yellow to supernova; furthermore I had a finesse by sacking the g2, building the y1, and then rebuilding the (would be) doomed g2 back in my homeworld, thus giving me yet another piece.  The overwhelming lead in development now is surely better than knocking out your green star but leaving you with lots of ships and counterplay.  
	zoltar: Had you captured my y1 (to stop me from supernoving the Y3 star) instead of my r1, then with my r1 I could have captured it right back, except that you sacked an r1 for the attack and I didn't, so that we're in the same position again except you're missing your r1 (ditto with capturing a g2 instead).  I think your only defence was to run back your y3 to your homeworld  2 moves ago.  Now I'm really getting why they say always leave a 3-pip ship in your homeworld unless you have an extraordinary good reason to move or sac it. 

32) zoltar: Trade G3 B3 Zoltar
	Keith: I am going to take a quick time out to issue some Cannon challanges now that is back online.

33) Keith: Build Y1 Keith
	zoltar: Well, you can play with your cannons -- I'm going to get one of each color so I have a complete team, and a solid base to build my forces!

34) zoltar: Build R1 Zoltar

35) Keith: Discover G2 Keith B3 Velvet

36) zoltar: Sacrifice G3 Gamma
Build G2 Gamma
Build G3 Zoltar
Build G3 Zoltar

37) Keith: Build G3 Velvet

38) zoltar: Sacrifice Y3 Zoltar
Move R2 Zoltar Gamma
Move G2 Gamma Velvet
Move G1 Gamma Velvet
Catastrophe Velvet G

39) Keith: Trade Y1 G1 Keith

40) zoltar: Discover G2 Zoltar Y1 Mellow
	zoltar: A Palestinian wearing a backpack was last seen on Blue Velvet, with a Koran in one hand and a push-button detonator in the other...

41) Keith: Build G2 Keith

42) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build G3 Mellow

43) Keith: Trade G2 Y2 Keith

44) zoltar: Sacrifice B3 Zoltar
Trade G3 Y3 Zoltar
Trade G3 R3 Zoltar
Trade R1 B1 Zoltar

45) Keith: Discover G1 Keith Y3 Macadam

46) zoltar: Build R1 Zoltar

47) Keith: Build G2 Macadam

48) zoltar: Sacrifice G3 Mellow
Build G3 Mellow
Build G3 Zoltar
Build B1 Zoltar
	Keith: I ended up building fences from my mid-day move until dark.  I am about ready to crash and I am going to sign off until mid-morning.

49) Keith: Trade Y1 B1 Keith
	zoltar: Ok, we'll continue tomorrow then!

50) zoltar: Discover G3 Zoltar Y1 Submarine

51) Keith: Build B2 Keith

52) zoltar: Sacrifice Y3 Zoltar
Move B1 Zoltar Submarine
Move B1 Submarine Macadam
Move B1 Macadam Keith
Catastrophe Keith B

53) Keith: Build G3 Macadam

54) zoltar: Move G2 Mellow Macadam
Catastrophe Macadam G

55) Keith: Build Y1 Keith

56) zoltar: Move R3 Zoltar Keith

57) Keith: Build R1 Keith

58) zoltar: Sacrifice R2 Gamma
Attack Y2 Keith
Attack Y1 Keith
	zoltar: The Death Star is now fully functional.  
"We have the rebel base in sight."

59) Keith: Build R1 Keith

60) zoltar: Sacrifice G3 Mellow
Build R2 Keith
Build Y1 Keith
Build Y2 Keith
Catastrophe Keith Y
Catastrophe Keith R

	Keith: I think you are going to have to blow up your own Death Star.
	zoltar: But this happens to be a Palestinian Death Star!  Engage self-destruct sequence!  Fire!  Play again?
	Keith: Yes, play again.  Though at this point I will have five Cannon games competing for my play time.


3717)
Started: 2006.6.25, Ended: 2006.7.15
Participants: Gort (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B1 G3
	Gort: Sorry, I didn't see your challenge until after I signed up for this game.

2) Gort: Homeworld G3 B2 Y3
	zoltar: Ok, now it all makes sense!  I'll try to pay attention this time, and give you a run for your money!

3) zoltar: Build G1 Zoltar
	Gort: looking at your other games, you very well might beat me. let the war begin!

4) Gort: Build Y1 Gort

5) zoltar: Trade G1 Y1 Zoltar

6) Gort: Build Y1 Gort

7) zoltar: Discover Y1 Zoltar G3 Greengiant

8) Gort: Trade Y1 R1 Gort

9) zoltar: Build G1 Zoltar

10) Gort: Trade Y1 G1 Gort

11) zoltar: Trade G1 R1 Zoltar

12) Gort: Build Y1 Gort

13) zoltar: Build G1 Zoltar

14) Gort: Discover G1 Gort B1 Booberry
	zoltar: Ok, I've learned my lesson about not having a red ship when your opponent builds one!

15) zoltar: Discover G1 Zoltar B3 Boysenberry

16) Gort: Build G1 Booberry

17) zoltar: Build G2 Zoltar

18) Gort: Sacrifice Y1 Gort
Move G1 Booberry Boysenberry

19) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G2 Boysenberry
Build G3 Zoltar

20) Gort: Sacrifice Y3 Gort
Move G1 Boysenberry Zoltar
Move G1 Booberry Boysenberry
Pass
Catastrophe Zoltar G

21) zoltar: Sacrifice Y1 Greengiant
Move G2 Boysenberry Zoltar

22) Gort: Build R1 Gort

23) zoltar: Sacrifice R1 Zoltar
Attack G1 Boysenberry
	zoltar: nice move!
	Gort: Thanks... we'll see how it goes. Thanks for not forcing a surrender when I was late!

24) Gort: Trade R1 Y1 Gort

25) zoltar: Build G1 Zoltar

26) Gort: Discover R1 Gort Y1 Yellowstar
	zoltar: Looks like this is going to be a long game...
	Gort: not if i keep up with this recklessness.

27) zoltar: Trade G2 R2 Zoltar

28) Gort: Build Y1 Gort

29) zoltar: Build G2 Boysenberry

30) Gort: Build Y2 Gort
	zoltar: It was Calavera who had me beat when I pulled a fast one and blew up his homeworld in an almost resignable position yesterday.  So this is cool, Gort -- you are like "Racer X", who unbeknownst to the world is secretly Speed Racer's long lost brother...

31) zoltar: Trade G2 Y2 Boysenberry
	Gort: I think I'm in big trouble here... I need you to make a mistake!

32) Gort: Sacrifice Y2 Gort
Move Y1 Gort Yellowstar
Move Y1 Yellowstar Boysenberry
	zoltar: The Galaxy will be mine! All mine! Brewhoohoohahaha!

33) zoltar: Move Y2 Boysenberry Yellowstar

34) Gort: Build Y2 Gort

35) zoltar: Sacrifice R2 Zoltar
Attack R1 Yellowstar
Attack Y1 Boysenberry

36) Gort: Trade Y2 R2 Gort

37) zoltar: Build G2 Zoltar

38) Gort: Build Y2 Gort

39) zoltar: Build Y3 Boysenberry
	zoltar: I don't like that move, but I see nothing else.
	Gort: yeah, i think that was right.

40) Gort: Move Y1 Gort Yellowstar

41) zoltar: Sacrifice Y2 Yellowstar
Move Y3 Boysenberry Yellowstar
Move Y3 Yellowstar Gort

42) Gort: Build R1 Gort

43) zoltar: Trade G2 R2 Zoltar

44) Gort: Build Y2 Gort

45) zoltar: Sacrifice R2 Zoltar
Attack R2 Gort
Attack R1 Gort
	zoltar: The Death Star is now fully functional!  Prepare to open fire on the rebel base!  
	zoltar: I've learned a couple of basic tactics in Homeworld endgames, such as: if your opponent fails to have a 3-pip starship in his homeworld at any time, sac anything to stick your 3-pip ship in his homeworld, and usually it is checkmate in a couple of moves.










46) Gort: Build Y3 Gort

47) zoltar: Move R1 Yellowstar Gort
Catastrophe Gort Y
	zoltar: Your puny fleet is no match for Zoltar'z Battle Cruiser! Prepare to meet your DOOM!!! [Insert Evil Overlord sinister laughter here]

	Gort: Can't we all just get along?
	zoltar: Sure, as long as we're all on my side!


3751)
Started: 2006.6.26, Ended: 2006.6.29
Participants: zoltar (S), TwoShort (N)
Winner: zoltar

1) TwoShort: Homeworld R1 B2 G3

2) zoltar: Homeworld B3 Y2 G3

3) TwoShort: Build G1 Twoshort

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G1 Y1 Twoshort

6) zoltar: Trade G1 Y1 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build G1 Zoltar

9) TwoShort: Discover G1 Twoshort Y3 Yoyo

10) zoltar: Discover G1 Zoltar B1 Bozo

11) TwoShort: Build Y1 Twoshort

12) zoltar: Build Y2 Zoltar

13) TwoShort: Discover Y1 Twoshort G3 Yodel

14) zoltar: Discover Y2 Zoltar G1 Pea

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build Y3 Yodel
Build Y3 Twoshort

16) zoltar: Build G2 Zoltar

17) TwoShort: Trade Y2 R2 Twoshort

18) zoltar: Move Y1 Zoltar Bozo

19) TwoShort: Move Y3 Yodel Bozo

20) zoltar: Trade G2 R2 Zoltar
	TwoShort: Well, I guess I won't undo, but I just realized I should have sac'd a y3 to put the other y3 in your homeworld...
	zoltar: Wow -- I didn't even see that.  I did remember the principle that I should immediately get a red when you do, but I looked and didn't see any threats.  But if you have a red piece and I don't, then sticking a 3-size anything in my homeworld is a major threat, isn't it?!  Still learning basic principles here.

21) TwoShort: Build Y2 Yodel

22) zoltar: Build G2 Zoltar
	TwoShort: Yeah, I didn't see it at first, because it would have meant leaving my homeworld without a 3, which is typically bad, so my brain discards such moves without much consideration.  But in this cae I could have won before you could do anything to me.  

23) TwoShort: Sacrifice G1 Yoyo
Build Y3 Twoshort

24) zoltar: Sacrifice Y2 Pea
Move Y1 Bozo Yodel
Move Y1 Yodel Twoshort
Catastrophe Twoshort Y

25) TwoShort: Trade Y3 R3 Bozo

26) zoltar: Sacrifice G1 Bozo
Build R1 Zoltar
	zoltar: Ok, I gotta try to play as agressively as possible -- can't let you just take all the 3-pip ships, so here goes...

27) TwoShort: Move Y1 Yodel Bozo

28) zoltar: Trade G2 Y2 Zoltar
	zoltar: Yikes!

29) TwoShort: Trade R3 G3 Bozo

30) zoltar: Build G1 Zoltar

31) TwoShort: Sacrifice G3 Bozo
Build Y1 Bozo
Build Y1 Yodel
Build Y3 Yodel

32) zoltar: Discover Y2 Zoltar G1 Eggs & Ham

33) TwoShort: Sacrifice Y2 Yodel
Move Y3 Yodel Twoshort
Discover Y1 Yodel G1 Ham

34) zoltar: Build G2 Zoltar

35) TwoShort: Build Y2 Ham

36) zoltar: Move G2 Zoltar Bozo

37) TwoShort: Sacrifice Y2 Ham
Move Y1 Bozo Zoltar
Move Y1 Bozo Zoltar

38) zoltar: Sacrifice G3 Zoltar
Build G2 Bozo
Build G2 Zoltar
Build G3 Zoltar

39) TwoShort: Move Y1 Ham Zoltar

40) zoltar: Discover G1 Zoltar G1 Ham
	zoltar: Grrrrrr

41) TwoShort: Trade Y3 G3 Twoshort

42) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Bozo
Build Y2 Eggs

43) TwoShort: Trade R2 B2 Twoshort
Catastrophe Zoltar Yellow
	zoltar: Aha -- going for my greens too?  Yikes!

44) zoltar: Discover Y2 Eggs B3 Samiam
	TwoShort: I gotta try and weasel out of this somehow :)

45) TwoShort: Build B1 Twoshort

46) zoltar: Sacrifice G3 Bozo
Build G3 Bozo
Build R1 Zoltar
Build Y1 Samiam

47) TwoShort: Trade B2 Y2 Twoshort

48) zoltar: Trade R2 B2 Zoltar

49) TwoShort: Discover B1 Twoshort Y3 Futility

50) zoltar: Sacrifice G3 Bozo
Build G3 Bozo
Build R2 Zoltar
Build Y1 Eggs

51) TwoShort: Build Y1 Twoshort

52) zoltar: Sacrifice Y2 Eggs
Move Y2 Samiam Twoshort
Move Y1 Samiam Twoshort
Catastrophe Twoshort Y

53) TwoShort: Move B1 Futility Twoshort

54) zoltar: S G3 Bozo
Build G3 Bozo
Build Y1 Eggs
Build Y1 Eggs

	TwoShort: Excellent game, well done.
	zoltar: Thanks!  This was my first win ever against an experienced player.  Whew Who!


3754)
Started: 2006.6.26, Ended: 2006.6.27
Participants: Keith (S), zoltar (N)
Winner: Keith

1) zoltar: Homeworld B2 Y1 G3

2) Keith: Homeworld G3 Y3 R3 *

3) zoltar: Build G1 Zoltar
	zoltar: Wow!  That looks crazy!  I'll have to think for a bit!

4) Keith: Build R1 Keith
	Keith: Given your fondness for R3s I thought I would try one.

5) zoltar: Trade G1 R1 Zoltar

6) Keith: Discover R1 Keith B1 Berry
	Keith: An R1 is enough to keep me from a quick win.

7) zoltar: Build G1 Zoltar

8) Keith: Trade R1 G1 Berry

9) zoltar: Build R1 Zoltar
	Keith: Whoops.  Typo.

10) Keith: Build G1 Berry

11) zoltar: Build G2 Zoltar

12) Keith: Trade G1 Y1 Berry

13) zoltar: Trade G2 Y2 Zoltar

14) Keith: Discover G1 Berry Y3 Atlast

15) zoltar: Build G1 Zoltar Y3 Crayon

	zoltar: sorry the computer made the wrong move: I typed in discover and it built

	Keith: I am confused.  You could not undo?  It looks like you hit resign.
	zoltar: It wouldn't let me undo so I clicked resign, so we could start over.


3756)
Started: 2006.6.27, Ended: 2006.7.1
Participants: Keith (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B1 G3

2) Keith: Homeworld B2 Y1 G3

3) zoltar: Build G1 Zoltar

4) Keith: Build G1 Keith

5) zoltar: Trade G1 Y1 Zoltar
	Keith: It is getting late for me.  I work 10AM to 10PM tomorrow and Wednesday.

6) Keith: Trade G1 Y1 Keith

7) zoltar: Build Y2 Zoltar

8) Keith: Discover Y1 Keith G3 Wagtail

9) zoltar: Trade Y1 R1 Zoltar

10) Keith: Build G1 Keith

11) zoltar: Move R1 Zoltar Wagtail

12) Keith: Discover Y1 Wagtail G2 Goaway

13) zoltar: Build G1 Zoltar

14) Keith: Trade G1 Y1 Keith

15) zoltar: Move Y2 Zoltar Wagtail

16) Keith: Trade Y1 R1 Keith

17) zoltar: Trade G1 Y1 Zoltar
	Keith: Alright alright I have a gun too.

18) Keith: Build G1 Keith

19) zoltar: Build G1 Zoltar

20) Keith: Discover G1 Keith Y3 Bend

21) zoltar: Trade G1 B1 Zoltar

22) Keith: Build G1 Keith

23) zoltar: Trade Y1 R1 Zoltar

24) Keith: Build G1 Bend

25) zoltar: Build G2 Zoltar

26) Keith: Move G1 Bend Zoltar

27) zoltar: Trade G3 Y3 Zoltar

28) Keith: Sacrifice G3 Keith
Build G2 Zoltar
Build G3 Bend
Build G3 Keith
	zoltar: uh-oh

29) zoltar: Attack G2 Zoltar
	Keith: It will give you something to think about.  I am sure there are multiple ways out of it.
	Keith: I just sent in a move to your move.  But by the time I hit send you had undone your move.

30) Keith: Move G1 Bend Zoltar
Catastrophe Zoltar Green
	zoltar: oh well, I wanted to change it because my first move didn't work very well.  I think I may be in big trouble in any case.

31) zoltar: Trade B1 G1 Zoltar
	Keith: With your first move I could have sacrificed my g3, built two g2s in Zoltar and my G3 back in Keith.  Boom.  Changing your G3 to some other color was the way out I saw.
	zoltar: Yes, that's just how I saw it.  But I lose anyway, it seems...


32) Keith: Move Y1 Goaway Bend
	zoltar: all I can do.

33) zoltar: Build G1 Zoltar
	Keith: But you keep a 3 pointer in your homeworld.  I did gain in ship production.

34) Keith: Build Y1 Bend
	Keith: I will leave you in suspense about my next move while I get some sleep.  Another 12 hour work day tomorrow.

35) zoltar: Build Y2 Wagtail

36) Keith: Move Y1 Bend Zoltar

37) zoltar: Trade Y3 R3 Zoltar

38) Keith: Sacrifice G3 Bend
Build Y3 Zoltar
Build Y3 Bend
Build R2 Keith

39) zoltar: Attack Y3 Zoltar

40) Keith: Move Y1 Bend Zoltar
Catastrophe Zoltar Yellow

41) zoltar: Build R2 Wagtail

42) Keith: Move R1 Keith Bend
	zoltar: Yup, I think it's just about over -- there goes one star, and there's no way for me to stop it.

43) zoltar: Trade R3 Y3 Zoltar

44) Keith: Discover Y3 Bend G2 Greenway
	Keith: It might not be over just yet.  You have 7 ships to my 5.  We both occupy two sectors and our homeworlds remaing two apart.  I do have two large ships to your one.
	zoltar: True, but the extra star and extra big ship count for a lot.  I'll have to be extra clever or you'll have to be extra clumbsy for me to win.

45) zoltar: Discover G1 Zoltar Y2 Jacket
	Keith: Looks to me like you had a good threat to move in two reds.

46) Keith: Trade G1 B1 Keith

47) zoltar: Trade R1 B1 Zoltar

48) Keith: Move B1 Keith Bend

49) zoltar: Move B1 Zoltar Jacket

50) Keith: Build G1 Keith

51) zoltar: Build G2 Jacket

52) Keith: Move G1 Keith Bend

53) zoltar: Build B2 Jacket

54) Keith: Move Y3 Greenway Wagtail

55) zoltar: Build Y1 Wagtail
Catastrophe Wagtail Y

56) Keith: Build G2 Keith

57) zoltar: Build G2 Zoltar

58) Keith: Sacrifice G3 Keith
Build G3 Keith
Build G3 Bend
Build B2 Bend

59) zoltar: Move G1 Jacket Bend

60) Keith: Move G3 Bend Jacket

61) zoltar: Sacrifice R2 Wagtail
Attack R1 Bend
Attack G1 Bend

62) Keith: Move B1 Bend Zoltar

63) zoltar: Sacrifice R1 Bend
Attack B1 Zoltar

64) Keith: Move B2 Bend Zoltar

65) zoltar: Sacrifice R1 Wagtail
Attack B2 Zoltar
	zoltar: That doesn't work -- you just move your g3 into my homeworld and it's checkmate in two, so I have to rethink this.

66) Keith: Sacrifice R2 Keith
Attack B1 Jacket
Attack B2 Jacket

67) zoltar: Sacrifice Y3 Zoltar
Move B1 Zoltar Bend
Move G1 Bend Keith
Move G1 Bend Keith
Catastrophe Keith G
	zoltar: Yep -- I'm DOOOOOOOMED

	zoltar: Wow.  That's a blunder.  You have to save your r2, and move your g3 into my homeworld.  You forced me to use up all my reds, so I can't capture your g3 and I'm in trouble.  but this sack let's me sac your greens.
	zoltar: maybe it still works though, I don't know

	Keith: If I moved my G3 to your homeworld you grow a green and boom its gone.
	Keith: Huh?
	zoltar: I did have a defence if you move your g3 in for the kill:  I sac my b2 and trade the b1 in jacket for an r1, and the b2 in jacket for a y2.  Now I have one less blue ship in my homeworld, so trading your G3 for a B3 doesn't blow it up, and if you sac your red and take out my y3 and one of the other ships, then I sac my newly made y2 in jacket and send in both g1's as I did in our game, so I do have a defence and am threatening to blow up your greens at home as well as capture your g3 in my homeworld.  Don't know what you can do next, but it was your only line to pursue.
	Keith: Well that is darn dissapointing.  A bad end to a bad day for me.  Only one actual win so far in a handful of games.  I have had enough Homeworlds for a while.  
	zoltar: That's true, I could just grow a green in my homeworld -- I forgot about that!
	zoltar: Sorry to spoil your day.  I just had another win against a really good player -- I'm on a roll.  We seem to be evenly matched; I hope you don't get discouraged, as you're a really good player, and it's a fun game!  Please challenge me as soon as you are rested and ready for another space battle, Keith.
	Keith: Homeworld is a good game and we are good at making each other think hard.  It is a great comeback victory for you.  I will eventually be back.


3736)
Started: 2006.6.27, Ended: 2006.7.9
Participants: Uglyfoot (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B2 Y1 G3

2) Uglyfoot: Homeworld B3 Y2 G3
	zoltar: Greetingz from Greenbelt, Milky Way

3) zoltar: Build G1 Zoltar

4) Uglyfoot: Build G1 Uglyfoot

5) zoltar: Trade G1 Y1 Zoltar

6) Uglyfoot: Discover G1 Uglyfoot B1 Commerce

7) zoltar: Build G1 Zoltar

8) Uglyfoot: Build G1 Uglyfoot

9) zoltar: Trade G1 R1 Zoltar

10) Uglyfoot: Trade G1 R1 Uglyfoot

11) zoltar: Build G1 Zoltar

12) Uglyfoot: Build G1 Commerce

13) zoltar: Discover G1 Zoltar Y3 Ribbon

14) Uglyfoot: Trade G1 Y1 Commerce

15) zoltar: Build Y2 Zoltar

16) Uglyfoot: Discover Y1 Commerce G3 Industry

17) zoltar: Move Y2 Zoltar Industry

18) Uglyfoot: Build Y2 Industry

19) zoltar: Build Y3 Industry
Catastrophe Industry Y

20) Uglyfoot: Build G1 Uglyfoot

21) zoltar: Build G2 Zoltar

22) Uglyfoot: Discover G1 Uglyfoot B1 Fleamarket

23) zoltar: Build G2 Ribbon

24) Uglyfoot: Build G2 Uglyfoot

25) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar

26) Uglyfoot: Trade G2 Y2 Uglyfoot

27) zoltar: Discover G3 Zoltar B3 Investment

28) Uglyfoot: Build G2 Uglyfoot

29) zoltar: Discover Y1 Zoltar B3 Stocks

30) Uglyfoot: Move Y2 Uglyfoot Commerce

31) zoltar: Discover Y1 Zoltar R3 Redgiant

32) Uglyfoot: Build Y2 Commerce

33) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Redgiant
Build Y3 Stocks

34) Uglyfoot: Sacrifice Y2 Commerce
Move G1 Commerce Ribbon
Move G1 Fleamarket Ribbon
Catastrophe Ribbon G

35) zoltar: Trade Y3 R3 Stocks

36) Uglyfoot: Move G2 Uglyfoot Commerce
	zoltar: Pretty sneaky -- destroying my factory!  You will pay for your insolence, Earthling!

37) zoltar: Move Y3 Redgiant Commerce

38) Uglyfoot: Discover G2 Commerce Y3 Outreach

39) zoltar: Sacrifice G2 Zoltar
Build Y2 Stocks
Build Y3 Redgiant

40) Uglyfoot: Build G1 Outreach

41) zoltar: Trade Y3 R3 Commerce

42) Uglyfoot: Sacrifice Y2 Commerce
Move G2 Outreach Zoltar
Move G1 Outreach Zoltar

43) zoltar: Sacrifice R3 Stocks
Attack G2 Zoltar
Attack G1 Zoltar
Pass

44) Uglyfoot: Build R1 Uglyfoot

45) zoltar: Sacrifice Y2 Stocks
Move G1 Zoltar Stocks
Move G1 Stocks Commerce
	Uglyfoot: Wow, I overreached last turn.  So how will I die?

46) Uglyfoot: Discover R1 Uglyfoot B1 Caprica2
	zoltar: Yeah, it's a matter of time as I move my big guys in.

47) zoltar: Move Y1 Redgiant Commerce

48) Uglyfoot: Build R2 Uglyfoot

49) zoltar: Build G1 Investment

50) Uglyfoot: Trade R2 G2 Uglyfoot

51) zoltar: Sacrifice Y3 Redgiant
Move G1 Investment Commerce
Move G1 Commerce Uglyfoot
Move G1 Commerce Uglyfoot
Catastrophe Uglyfoot G

52) Uglyfoot: Trade R1 G1 Uglyfoot
	zoltar: Time to make my move, before you had a chance to rebuild.

53) zoltar: Move R3 Commerce Uglyfoot

54) Uglyfoot: Build G1 Uglyfoot
	zoltar: The Death Star is in range of the Rebel Base.  Prepare to Fire!!!

55) zoltar: Trade G3 R3 Investment
	Uglyfoot: Red-5 standing by...


56) Uglyfoot: Build G1 Uglyfoot

57) zoltar: Sacrifice R3 Investment
Attack G1 Uglyfoot
Attack G1 Uglyfoot
Attack G1 Uglyfoot
	zoltar: Resistance is futile -- you have been assimilated!  :) Thanks.  Play again?
	Uglyfoot: Sure.



3766)
Variants: "Unrated"
Started: 2006.6.27, Ended: 2006.7.5
Participants: zoltar (S), fnord (N)
Winner: zoltar

1) fnord: Homeworld Y1 B2 G3

2) zoltar: Homeworld R3 B2 G3

3) fnord: Build G1 Fnord
	fnord: Interesting choice for homeworld...  saves a bit of time, perhaps.

4) zoltar: Build G1 Zoltar

5) fnord: Trade G1 Y1 Fnord
	zoltar: I've never tried this homeworld before.  Since I won against you I thought I'd try something new and experiment. In my other games I try to take the setup you have if I can.
	fnord: Gee, thanks, I think.

6) zoltar: Trade G3 Y3 Zoltar

7) fnord: Build G1 Fnord

8) zoltar: Build G1 Zoltar

9) fnord: Trade G1 R1 Fnord

10) zoltar: Trade G1 R1 Zoltar

11) fnord: Build G1 Fnord

12) zoltar: Discover R1 Zoltar G1 Eggs

13) fnord: Trade G1 B1 Fnord

14) zoltar: Build Y1 Zoltar
	zoltar: Rats -- I guess you get the first medium piece no matter what I do

15) fnord: Build G1 Fnord

16) zoltar: Build G2 Zoltar
	fnord: I could have, but chose not to.

17) fnord: Discover G1 Fnord Y3 Kallisti

18) zoltar: Trade G1 B1 Zoltar

19) fnord: Discover Y1 Fnord B3 Eris

20) zoltar: Build Y2 Zoltar

21) fnord: Build G1 Fnord

22) zoltar: Build G2 Zoltar

23) fnord: Sacrifice G3 Fnord
Build G2 Kallisti
Build G3 Fnord
Build Y2 Eris

24) zoltar: Discover Y2 Zoltar B1 Blueberry

25) fnord: Move G1 Fnord Eris

26) zoltar: Move G2 Zoltar Blueberry

27) fnord: Move G1 Kallisti Blueberry

28) zoltar: Build G3 Zoltar

29) fnord: Trade Y2 R2 Eris

30) zoltar: Sacrifice G2 Zoltar
Build G2 Blueberry
Build G3 Zoltar

31) fnord: Discover G2 Kallisti B2 Sink

32) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B3 Zoltar
Build Y2 Blueberry

33) fnord: Build R1 Eris

34) zoltar: Discover G2 Blueberry B3 Boysenberry

35) fnord: Build R2 Fnord

36) zoltar: Sacrifice Y2 Blueberry
Move Y1 Zoltar Eggs
Move B3 Zoltar Eggs

37) fnord: Move R2 Eris Blueberry

38) zoltar: Sacrifice R1 Eggs
Attack R2 Blueberry

39) fnord: Sacrifice G1 Blueberry
Build R1 Eris

40) zoltar: Sacrifice G3 Zoltar
Build G1 Blueberry
Build G3 Zoltar
Build R2 Blueberry

41) fnord: Move R1 Eris Eggs

42) zoltar: Move R2 Blueberry Eris
	zoltar: Soon blueberry will be mine, all mine!

43) fnord: Build R3 Eris

44) zoltar: Sacrifice G3 Zoltar
Build G3 Boysenberry
Build R3 Blueberry
Build Y2 Eggs
	fnord: hmmm... there just seems to be something about this game I'm just not grokking.

45) fnord: Move R3 Eris Eggs

46) zoltar: Sacrifice R3 Blueberry
Attack R3 Eggs
Attack R1 Eggs
Attack R1 Eris
	zoltar: You get the little ships; I get the big ships: sounds fair to me!  :)

47) fnord: Sacrifice G2 Sink
Build Y2 Eris
Build Y3 Eris

48) zoltar: Sacrifice Y3 Zoltar
Move R1 Eris Fnord
Move R2 Eris Fnord
Move G3 Boysenberry Fnord
Catastrophe Fnord R

49) fnord: Sacrifice Y3 Eris
Move Y2 Eris Fnord
Move G1 Eris Fnord
Move Y1 Eris Fnord

50) zoltar: Sacrifice R3 Eggs
Attack G3 Fnord
Attack Y2 Fnord
Attack G1 Fnord
	zoltar: What I did was setup a board at home and go over the archived games among the top players (only after a certain date though, as the first ones didn't mark what pieces were used for the initial homeworlds) and then study all the tricks and tactics they use.  That has catapulted me past the beginner phase now.

51) fnord: Trade Y1 R1 Fnord

52) zoltar: Sacrifice R2 Blueberry
Attack R1 Fnord
Attack B1 Fnord
	zoltar: Checkmate!

	zoltar: The Large ships are mine!  All mine!  Prepare to be boarded, Earthling!


3787)
Started: 2006.6.29, Ended: 2006.7.1
Participants: TwoShort (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B1 G3

2) TwoShort: Homeworld B1 G3 B3 *

3) zoltar: Build G1 Zoltar

4) TwoShort: Build B1 Twoshort

5) zoltar: Build G1 Zoltar

6) TwoShort: Trade B3 Y3 Twoshort

7) zoltar: Discover G1 Zoltar Y3 Yucca

8) TwoShort: Build B2 Twoshort

9) zoltar: Discover G1 Zoltar B3 Birch

10) TwoShort: Discover B2 Twoshort Y2 Yew

11) zoltar: Build G1 Zoltar

12) TwoShort: Trade B2 R2 Yew

13) zoltar: Build G2 Zoltar

14) TwoShort: Move R2 Yew Yucca

15) zoltar: Sacrifice G3 Zoltar
Build G2 Yucca
Build G2 Yucca
Build G3 Zoltar
	zoltar: You meanie!

16) TwoShort: Move R2 Yucca Zoltar

17) zoltar: Trade G3 R3 Zoltar

18) TwoShort: Move R2 Zoltar Birch

19) zoltar: Sacrifice G2 Yucca
Build G2 Birch
Build G3 Birch

20) TwoShort: Build B2 Twoshort

21) zoltar: Sacrifice G3 Birch
Build G3 Birch
Build G3 Yucca
Build R1 Zoltar

22) TwoShort: Discover B2 Twoshort Y2 Yoyo

23) zoltar: Sacrifice R1 Zoltar
Attack R2 Birch

24) TwoShort: Build B2 Twoshort

25) zoltar: Trade G3 Y3 Birch

26) TwoShort: Trade B2 R2 Twoshort

27) zoltar: Sacrifice G3 Yucca
Build G3 Birch
Build G3 Yucca
Build Y1 Birch

28) TwoShort: Build B2 Twoshort
	TwoShort: Hmm, sometimes my comments seem to get dropped... I had said a few moves back that after you beat me with the All-out-Factory-push, and thus cemented my beleif that it is the optimal strategy, I went for something completely different this game.  Not sure what I was thinking...

29) zoltar: Sacrifice G3 Yucca
Build G3 Yucca
Build R1 Zoltar
Build R1 Birch

30) TwoShort: Discover B2 Twoshort B2 Oyoy
	zoltar: My comments get dropped if I try to send them at the same time I am sending a move.  My thinking was along chess lines, that it is better to develop more pieces than move the same piece again in the opening, so I ignored your chasing me around moving your red ship over and over, and then somehow I simply won it outright.

31) zoltar: Move G3 Birch Yoyo
	zoltar: I'm going to wait and come back to this after dinner..
	TwoShort: The idea was to get in there fast and prevent you from getting the factory going, so you couldn't monopolize green.  Obviously, it worked brilliantly :)

32) TwoShort: Build B3 Twoshort
	zoltar: Ok, I'll still do my original move.  I was in a hurry and didn't want to blow my lead with some silly blunder, but this looks safe enough.  The Factory rules!  Except -- I want that last g3!

33) zoltar: Move Y3 Birch Oyoy
	TwoShort: You'll have to come and get it. (Not that it looks like that will present much difficulty...)
	TwoShort: Hmmm, if this is "after dinner" are you on the east coast?
	zoltar: Affirmative.  I live in Greenbelt, Milky Way

34) TwoShort: Sacrifice Y3 Twoshort
Move B2 Oyoy Birch
Move B2 Yoyo Birch
Discover B1 Twoshort Y2 Desperation
	TwoShort: Aha... I live in Boulder, Colorado now, but ten years ago I lived in College Park...

35) zoltar: Move R2 Birch Desperation

36) TwoShort: Build B3 Twoshort

37) zoltar: Sacrifice R3 Zoltar
Attack B2 Birch
Attack B2 Birch
Attack B1 Desperation

38) TwoShort: Trade B3 Y3 Twoshort

39) zoltar: Sacrifice G3 Yucca
Build G3 Zoltar
Build Y1 Birch
Build Y1 Oyoy
	zoltar: Well, when you start naming your star systems "Desperation", I figure I must be doing something right!

40) TwoShort: Build B3 Twoshort

41) zoltar: Move B1 Desperation Twoshort
Catastrophe Twoshort B

42) TwoShort: Build R1 Twoshort
	zoltar: Ok, I will violate cardinal rule number one and get rid of my only 3-pip ship in my homeworld, as it'll take you at least two turns to trade for a y3 and then do something annoying.

43) zoltar: Sacrifice Y3 Oyoy
Move G1 Zoltar Twoshort
Move G2 Zoltar Twoshort
Move G3 Zoltar Twoshort
Catastrophe Twoshort G

	zoltar: The Death Star is almost in position...
	zoltar: Wait a second!
	zoltar: The Death Star is Fully Functional!  Ass stations, fire on the Rebel Base!!!
	zoltar: That was supposed to be, "All Stations, fire on the Rebel Base!"  :)  I suddenly remembered that our homeworlds were connected after blowing your b3 star!


3715)
Started: 2006.6.30, Ended: 2006.6.30
Participants: zoltar (S), Calavera (N)
Winner: zoltar

1) Calavera: Homeworld G1 B3 Y3

2) zoltar: Homeworld Y2 B1 G3
	Calavera: Hi there. Good luck.

3) Calavera: Build Y1 Calavera

4) zoltar: Build G1 Zoltar

5) Calavera: Build Y1 Calavera

6) zoltar: Build G1 Zoltar

7) Calavera: Discover Y1 Calavera G2 Camelot

8) zoltar: Discover G1 Zoltar Y3 Stocks

9) Calavera:
Discover Y1 Camelot B3 Tintagel
	Calavera: d y1 camelot b3 Tintagel

10) zoltar: Build G2 Zoltar

11) Calavera: Trade Y3 G3 Calavera

12) zoltar: Move G2 Zoltar Tintagel

	Calavera: Damn, lokks like I've screwed up royally here. Thanks for the game.
	zoltar: It was far from over, but I had acquired a big advantage.  Thanks.  Play again?
	Calavera: If you like. I've set up a challenge if you're interested.



3792)
Started: 2006.6.30, Ended: 2006.7.1
Participants: zoltar (S), Calavera (N)
Winner: zoltar

1) Calavera: Homeworld Y1 B2 G3

2) zoltar: Homeworld Y3 B2 G3

3) Calavera: Build G1 Calavera

4) zoltar: Build G1 Zoltar

5) Calavera: Trade G1 Y1 Calavera

6) zoltar: Build G1 Zoltar

7) Calavera: Build G1 Calavera

8) zoltar: Discover G1 Zoltar B1 Boysenberry

9) Calavera: Discover G1 Calavera B3 El Marrow

10) zoltar: Build G2 Boysenberry

11) Calavera: Build Y1 Calavera

12) zoltar: Trade G1 R1 Zoltar

13) Calavera: Move Y1 Calavera El

14) zoltar: Trade G2 Y2 Boysenberry

15) Calavera: Trade Y1 R1 El

16) zoltar: Build Y1 Boysenberry

17) Calavera: Build G1 Calavera

18) zoltar: Build G2 Zoltar
	Calavera: Sorry. (It was a typo)

19) Calavera: Sacrifice G3 Calavera
Build G2 El
Build G2 Calavera
Build G3 Calavera

20) zoltar: Sacrifice Y2 Boysenberry
Move G1 Boysenberry El
Move G1 El Calavera
Catastrophe Calavera G

21) Calavera: Trade Y1 G1 Calavera

22) zoltar: Move G2 Zoltar Boysenberry

23) Calavera: Trade G2 Y2 El

24) zoltar: Discover G2 Boysenberry Y3 Banana
	zoltar: Ouch!
	zoltar: Greetings from Greenbelt, btw!
	Calavera: Er... oops:)  Greenbelt?

25) Calavera: Move Y2 El Calavera
	zoltar: Yes, it was a pun, since I took out all your greens with a green, but I also do live in Greenbelt, MD!

26) zoltar: Discover Y1 Boysenberry G3 Greengiant

27) Calavera: Build G1 Calavera

28) zoltar: Build G2 Zoltar

29) Calavera: Trade Y2 R2 Calavera

30) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build G3 Banana

	zoltar: Oops, I got my 2's and 3's mixed up there
	Calavera: Thanks for the games. I think I'll pass on waiting for  the Greenbelt fleet to come and crush me though.

Cheers
	zoltar: There was no way to really recover after I took out your three greens in your homeworld.  I could build up too fast before you could do anything.  Thanks for the game.  Play again?


3793)
Started: 2006.7.1, Ended: 2006.7.5
Participants: zoltar (S), MatrixFrog (N)
Winner: zoltar

1) MatrixFrog: Homeworld G1 B3 Y3

2) zoltar: Homeworld Y2 B1 G3

3) MatrixFrog: Build Y1 Matrixfrog

4) zoltar: Build G1 Zoltar

5) MatrixFrog: Build Y1 Matrixfrog

6) zoltar: Build G1 Zoltar

7) MatrixFrog: Trade Y1 B1 Matrixfrog

8) zoltar: Discover G1 Zoltar Y3 Banana

9) MatrixFrog: Discover Y1 Matrixfrog G2 Lemon

10) zoltar: Build G2 Zoltar

11) MatrixFrog: Build Y1 Lemon

12) zoltar: Discover G1 Zoltar B3 Boysenberry

13) MatrixFrog: Build B1 Matrixfrog

14) zoltar: Sacrifice G3 Zoltar
Build G2 Boysenberry
Build G3 Banana
Build G3 Zoltar

15) MatrixFrog: Discover Y1 Lemon G3 Grape

16) zoltar: Trade G2 Y2 Zoltar

17) MatrixFrog: Build Y1 Grape

18) zoltar: Trade G2 B2 Boysenberry

19) MatrixFrog: Move B1 Matrixfrog Lemon

20) zoltar: Move Y2 Zoltar Grape

21) MatrixFrog: Move Y1 Grape Lemon

22) zoltar: Sacrifice G3 Banana
Build G2 Boysenberry
Build G2 Zoltar
Build G3 Banana

23) MatrixFrog: Build Y2 Matrixfrog

24) zoltar: Sacrifice B2 Boysenberry
Trade Y2 R2 Grape
Trade G2 Y2 Boysenberry

25) MatrixFrog: Build Y3 Grape

26) zoltar: Sacrifice Y2 Boysenberry
Move G3 Banana Lemon
Move G3 Lemon Matrixfrog

27) MatrixFrog: Build Y2 Matrixfrog

28) zoltar: Trade G3 R3 Zoltar
	zoltar: Prepare to be boarded, Earthling!

29) MatrixFrog: Build B2 Matrixfrog

30) zoltar: Sacrifice R2 Grape
Attack Y3 Matrixfrog
Attack B2 Matrixfrog
	zoltar: "The Death Star is now fully functional."

31) MatrixFrog: Build B2 Matrixfrog

32) zoltar: Sacrifice G2 Zoltar
Build G2 Matrixfrog
Build G2 Matrixfrog
Catastrophe Matrixfrog B
Catastrophe Matrixfrog G
	MatrixFrog: I think I lose.

	zoltar: Yep, without a red ship, there was no defense.  Play again?


3804)
Started: 2006.7.1, Ended: 2006.7.2
Participants: zoltar (S), Calavera (N)
Winner: zoltar

1) Calavera: Homeworld B1 Y3 G3

2) zoltar: Homeworld B2 Y1 G3

3) Calavera: Build G1 Calavera

4) zoltar: Build G1 Zoltar

5) Calavera: Discover G1 Calavera B2 El_marrow

6) zoltar: Trade G1 Y1 Zoltar

7) Calavera: Build G1 Calavera

8) zoltar: Build Y1 Zoltar

9) Calavera: Build G1 El_marrow

10) zoltar: Build G2 Zoltar

11) Calavera: Trade G1 R1 El_marrow

12) zoltar: Trade Y1 R1 Zoltar

13) Calavera: Build R1 El_marrow

14) zoltar: Build R2 Zoltar

15) Calavera: Build R2 El_marrow

16) zoltar: Discover R2 Zoltar Y3 Banana

17) Calavera: Trade R1 Y1 El_marrow

18) zoltar: Build Y2 Zoltar

19) Calavera: Trade G1 B1 Calavera

20) zoltar: Discover Y2 Zoltar G3 Greenbelt

21) Calavera: Discover R2 El_marrow Y3 Rubacava

22) zoltar: Build Y2 Greenbelt

23) Calavera: Build Y2 El_marrow

24) zoltar: Discover Y2 Greenbelt B2 Blueberry

25) Calavera: Trade Y1 B1 El_marrow

26) zoltar: Discover G2 Zoltar B3 Boysenberry

27) Calavera: Build B3 Calavera

28) zoltar: Build G1 Zoltar

29) Calavera: Build B3 El_marrow

30) zoltar: Move Y2 Blueberry Greenbelt

31) Calavera: Sacrifice Y2 El_marrow
Move B3 El_marrow Rubacava
Move G1 El_marrow Rubacava

32) zoltar: Sacrifice G2 Boysenberry
Build R1 Banana
Build R2 Zoltar

33) Calavera: Sacrifice G3 Calavera
Build B2 El_marrow
Build B3 Rubacava
Build R3 Rubacava

34) zoltar: Move R1 Zoltar Rubacava

35) Calavera: Sacrifice B2 El_marrow
Trade R2 Y2 Rubacava
Trade B3 G3 Rubacava

36) zoltar: Sacrifice Y2 Greenbelt
Move R1 Banana El_marrow
Move G1 Zoltar Rubacava

37) Calavera: Attack G1 Rubacava
	zoltar: Very nice move.  I'm dead now!

38) zoltar: Sacrifice R2 Banana
Attack B1 El_marrow
Attack G1 Rubacava
	Calavera: Well, I'm glad *you've* got confidence in my position. At least that way one of us has :)

39) Calavera: Sacrifice R3 Rubacava
Attack R1 Rubacava
Attack R1 El_marrow
Attack G1 Rubacava

40) zoltar: Sacrifice Y1 Zoltar
Move B1 El_marrow Calavera
Catastrophe Calavera B
	zoltar: Ok, then I'll wait another move if you insist (I was going to simply resign here).

	zoltar: Wow, you let me get you with the only trap I could possibly think of!  You just needed to trade your b3 for g3 and my position is still resignable!  I do tend to resign too early -- this is a lesson that there are always chances if your opponent isn't paying close attention. What a swindle!
	Calavera: Ohhh. You wascally wabbit!

Thanks for all the games. I'll take a break now, but I'll be glad to play you again later if you're interested.


3797)
Started: 2006.7.1, Ended: 2006.7.3
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) zoltar: Homeworld Y3 B2 G3

3) TwoShort: Build G1 Twoshort

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G1 Y1 Twoshort

6) zoltar: Trade G1 Y1 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build G1 Zoltar

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) zoltar: Discover G1 Zoltar B1 Boar

11) TwoShort: Build Y1 Twoshort

12) zoltar: Build Y2 Zoltar

13) TwoShort: Discover Y1 Twoshort G3 Grogar

14) zoltar: Move Y2 Zoltar Boar

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y2 Twoshort
Build Y3 Twoshort

16) zoltar: Trade Y1 R1 Zoltar

17) TwoShort: Trade Y2 R2 Twoshort
	zoltar: Wow, what a move!

18) zoltar: Build G1 Zoltar

19) TwoShort: Trade Y3 G3 Twoshort

20) zoltar: Build G2 Boar

21) TwoShort: Build G2 Twoshort

22) zoltar: Trade G2 R2 Boar

23) TwoShort: Build G2 Yolonda

24) zoltar: Sacrifice G3 Zoltar
Build G2 Boar
Build G3 Zoltar
Build R1 Boar

25) TwoShort: Discover G1 Yolonda Y1 Different

26) zoltar: Discover G2 Boar Y3 Yippiekiyay

27) TwoShort: Sacrifice G2 Yolonda
Build G2 Different
Build Y2 Twoshort

28) zoltar: Sacrifice G3 Zoltar
Build G3 Boar
Build R2 Boar
Build R3 Zoltar

29) TwoShort: Build Y3 Twoshort
	TwoShort: Quite a thinker, this one....

30) zoltar: Move R2 Boar Yippiekiyay

31) TwoShort: Move Y3 Twoshort Yippiekiyay

32) zoltar: Move R2 Yippiekiyay Twoshort

33) TwoShort: Sacrifice R2 Twoshort
Attack R2S Twoshort
Attack G2S Yippiekiyay

34) zoltar: Sacrifice G3 Boar
Build G3 Boar
Build R2 Boar
Build R3 Zoltar

35) TwoShort: Move R2 Twoshort Grogar

36) zoltar: Move R3 Zoltar Different

37) TwoShort: Sacrifice G2 Different
Build G2 Yippiekiyay
Build R3 Grogar
	zoltar: Looks like I'm back to losing again -- back to my original strategy of taking out one of your stars before I die.

38) zoltar: Attack G1 Different
	zoltar: Well, I missed that totally too.  I'll try another move or two before I resign.

39) TwoShort: Move R2 Grogar Boar
Catastrophe Boar Red
	TwoShort: I made a big effort to to tighten up my game this time...  still, these last 4 moves or so were skull-crushers.  

40) zoltar: Sacrifice G3 Boar
Build G3 Different
Build R1 Different
Build R2 Different

41) TwoShort: Build R2 Grogar
	zoltar: wow -- you could have sacked your y3 and destroyed all the reds in my homeworld -- I would have resigned if you had done that.  I'm still dead now.
	TwoShort: I considered it, but then I'd have had no sacrificeable red, so movign in to gfinish you off would be a muklti turn operation, and you could have used the slack to take the y3 I'd sac'd (which I could then catastrophe, but that would break the yellow embargo)... anyway, it didn't look like a done deal...  More than once I've seen a game take a surprise turn around because the stronger player just trying to finish the other guy off makes some over-confident blunder.  Which is why I when I'm losing I often like to play it out until I see for sure how the other guy can force checkmate...  Speaking of which, how am I going to force checkmate here?

42) zoltar: Move R1 Different Grogar
	zoltar: Have you every played shogi?  It seems to me to be the best form of chess, combining the best things in chess with homeworlds but without the most annoying features of chess.  I just figured out last week how to make a shogi set with 4 stashes of pyramids.  I think it is better than the original, which has pieces with Japanese characters on them that initially turn people off of the game.  It could be called "Martian Shogi".

43) TwoShort: Move R3 Grogar Boar

44) zoltar: Sacrifice Y2 Boar
Move R1 Zoltar Different
Move R2 Different Grogar

45) TwoShort: Sacrifice R2 Grogar
Attack R2S Grogar
Attack R1S Grogar

46) zoltar: Move G3 Different Grogar

47) TwoShort: Sacrifice Y2 Grogar
Move R2 Grogar Different
Move R1 Grogar Different
Catastrophe Different Red

48) zoltar: Sacrifice G1 Boar
Build G1 Different

49) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Yippiekiyay Boar
Move G2 Yippiekiyay Boar

50) zoltar: Discover G1 Different B3 Same

51) TwoShort: Sacrifice G3 Twoshort
Build G3 Boar
Build Y2 Twoshort
Build Y2 Boar

52) zoltar: Trade G1 B1 Zoltar
	TwoShort: I haven't played Shogi, though I've skimmed the rules at some point.  It struck me as stylistically very much like chess.  What do you see as it's advantages?  My main problem with chess is that it's strategy has been analyzed so extensively; if I'm doing something weird and different that no one has tried before, it's because it's dumb.  With Homeworlds it still might be brilliant :)  And the aesthetics of the pyramids & boardlessness appeals as well.

53) TwoShort: Sacrifice Y2 Boar
Move G3 Boar Zoltar
Move Y3 Boar Zoltar
	zoltar: First, in Shogi there are no weird moves (pawn move and capture only 1 space forward, and you can't double them); second, pieces you capture can be dropped back in as your pieces.  The orientations changing, as in homeworlds, gave me the idea to use pyramids.  In chess, you simply trade down when ahead, to increase your ratio of material; in shogi, that doesn't work, as the pieces get recycled, so you have to do something very much like the 'factory' in homeworlds, where you drop in a pawn, promote it (to a 'tokin'), then trade the promoted pawn for a real piece; your opponent only gets a pawn to drop in his stash, whereas you get a piece.  As it turns out, there are a lot more sacrifices for mate, as in homeworlds and the most exciting of chess games.  Whereas in chess, where engames are boring and simplified and the goal is to get a past pawn and trade all your pieces so you can make a queen, in shogi the endgame is intense, complicated, and you have to go for actual checkmate to win.  It's an amazing game, far superior to chess.  Also, because the pieces are slower moving, you can't memorize set openings, and the advantage for the first player goes from 10% to 1%.  I'd love to have a pyramid version of it here.  I wonder how hard that would be?  Do you know the guy that runs the site?

	zoltar: Yes, I am toast.  Can't sac my red or you just move your red in -- very clever.
	zoltar: Nice finish!


3801)
Started: 2006.7.1, Ended: 2006.7.21
Participants: zoltar (S), Laurie_Menke (N)
Winner: zoltar

1) Laurie_Menke: Homeworld B2 G3 Y3
	Laurie_Menke: LOL, Zoltar...it's hard to tell, but do you maybe like Homeworlds!  ;o)  Thanks for the invitation...good luck!  :o)

2) zoltar: Homeworld Y2 B1 G3

3) Laurie_Menke: Build Y1 Laurie_menke

4) zoltar: Build G1 Zoltar
	zoltar: Greetingz Earthling, from Greenbelt, Milky Way.  May the farce be with you!

5) Laurie_Menke: Trade Y1 G1 Laurie_menke
	Laurie_Menke: And also with you.  ;o)

6) zoltar: Trade G1 Y1 Zoltar

7) Laurie_Menke: Build G1 Laurie_menke

8) zoltar: Build Y1 Zoltar

9) Laurie_Menke: Build Y1 Laurie_menke

10) zoltar: Discover Y1 Zoltar G3 Greenbelt
	zoltar: I just learned this game 2 weeks ago, lost my first few games, and then started to catch on; yesterday I won against a good player for the first time (after losing to him 5 times), and so I'm trying to play as much as I can over the weekend/holiday so that there will always be moves waiting for me when I click on my computer.

11) Laurie_Menke: Discover G1 Laurie_menke G1 Park
	Laurie_Menke: Wow!  I'm very impressed that you've caught on so quickly!  Good job!  And sorry about timing out, especially since you were trying to play a lot over the weekend/holiday.  :o(  Please forgive me.  :o(

12) zoltar: Build G2 Zoltar

13) Laurie_Menke: Build G2 Laurie_menke
	zoltar: Thanks.  I looked at the games among the top players and studied over a half dozen of them carefully to see if I could learn some of the tactical tricks, as I was getting swindled and blown up all over the place my first few games.  I've now got the basics down.  And I figured you (as well as my other opps) were out having fun for the 4th of July, as was I, so no problem.

14) zoltar: Discover G2 Zoltar Y3 Yellowstone

15) Laurie_Menke: Discover G2 Laurie_menke B1 Phonebooth

16) zoltar: Build G2 Zoltar

17) Laurie_Menke: Build Y2 Laurie_menke

18) zoltar: Discover Y1 Zoltar B3 Blueridge

19) Laurie_Menke: Move Y2 Laurie_menke Phonebooth

20) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Greenbelt
Build Y3 Blueridge

21) Laurie_Menke: Trade G1 B1 Laurie_menke

22) zoltar: Trade Y3 R3 Blueridge

23) Laurie_Menke: Trade Y3 R3 Laurie_menke

24) zoltar: Move R3 Blueridge Phonebooth

25) Laurie_Menke: Sacrifice Y2 Phonebooth
Move B1 Laurie_menke Park
Discover G2 Phonebooth R3 Mars

26) zoltar: Sacrifice G3 Zoltar
Build G1 Yellowstone
Build G3 Zoltar
Build R1 Phonebooth
	zoltar: Attack!!!!
	zoltar: Prepare to be boarded, Earthling!
	Laurie_Menke: We are peace-loving people....we will fleeeeeeee!!!!!

27) Laurie_Menke: Sacrifice G2 Mars
Build R1 Laurie_menke
Build Y2 Laurie_menke

28) zoltar: Sacrifice G2 Yellowstone
Build Y3 Blueridge
Build Y3 Blueridge
	zoltar: Zee Phonebooth ease mine! Awl mine!

29) Laurie_Menke: Discover Y1 Laurie_menke R1 Ready
	zoltar: Wow! That waz unexpected.  Very sneaky, hyu-maahn bean.  Eye deed knot eggs pecked sew cleaver a move!

30) zoltar: Sacrifice Y3 Blueridge
Discover G2 Zoltar Y3 Yosemite
Move R1 Phonebooth Laurie_menke
Move R3 Phonebooth Laurie_menke
Catastrophe Laurie_menke R
	zoltar: Ok, eye wheel dew zee same thing and double-build.
	Laurie_Menke: We humans love peace...AND a challenge.  ;o)  Don't count us out yet!  ;o)

31) Laurie_Menke: Trade Y2 G2 Laurie_menke
	Laurie_Menke: Ooops...that was almost a deadly mistake.  :o(

32) zoltar: Build G2 Zoltar

33) Laurie_Menke: Sacrifice G1 Park
Build Y2 Ready
	zoltar: Yup, it's still really bad -- but the other way you would be dead without your y2 ship left in your homeworld
	zoltar: In any case, since you hyu-maahn beanz love peace, Zoltar decided to destroy all zee guns in zee galaxy...
	Laurie_Menke: :o)  Fine with me...if we keep it that way.  ;o)

34) zoltar: Sacrifice Y2 Greenbelt
Move Y3 Blueridge Park
Move Y3 Park Laurie_menke

35) Laurie_Menke: Build B1 Park

36) zoltar: Trade G3 R3 Zoltar

37) Laurie_Menke: Build B2 Park
	zoltar: Prepare to be boarded!
	zoltar: My ships are bigger than yours!  The galaxy will soon me mine!  All mine!
	Laurie_Menke: Alright...we peaceable humans will give up without a fight.  We know when we're licked.  :o(  Good game, zoltar!  Thanks for the fun!  :o)

38) zoltar: Sacrifice R3 Zoltar
Attack G2 Laurie_menke
Pass
Pass

	zoltar: Ok. I'll open a new challenge; when you are free, you can accept and start a new game.  Hope your friend gets well quickly.
	Laurie_Menke: Thanks...me, too.  :o)


3802)
Started: 2006.7.1, Ended: 2006.7.17
Participants: zoltar (S), Personman (N)
Winner: zoltar

1) Personman: Homeworld Y3 B2 G3

2) zoltar: Homeworld B3 Y1 G3

3) Personman: Build G1 Personman
	zoltar: Greetingz Earthling Personman, from Greenbelt, Milky Way

4) zoltar: Build G1 Zoltar
	zoltar: b g1 zoltar

5) Personman: Discover G1 Personman Y1 Athiba

6) zoltar: Trade G1 Y1 Zoltar

7) Personman: Build G1 Personman

8) zoltar: Build Y2 Zoltar

9) Personman: Trade G1 B1 Personman

10) zoltar: Discover Y2 Zoltar G2 Greenbelt

11) Personman: Build G1 Personman

12) zoltar: Build Y2 Greenbelt

13) Personman: Build G1 Personman

14) zoltar: Build G2 Zoltar

15) Personman: Sacrifice G3 Personman
Build G2 Athiba
Build G3 Athiba
Build G3 Personman

16) zoltar: Sacrifice Y2 Greenbelt
Move G2 Zoltar Greenbelt
Move G2 Greenbelt Athiba
Catastrophe Athiba G

17) Personman: Trade G1 Y1 Personman

18) zoltar: Build Y2 Greenbelt

19) Personman: Discover Y1 Personman G1 A2ba

20) zoltar: Trade Y1 R1 Zoltar

21) Personman: Trade G1 R1 Personman

22) zoltar: Build G1 Zoltar

23) Personman: Build G1 Personman

24) zoltar: Build G2 Zoltar

25) Personman: Sacrifice G3 Personman
Build G2 Personman
Build G3 Personman
Build Y1 A2ba

26) zoltar: Discover G2 Zoltar B2 Blueridge

27) Personman: Discover Y1 A2ba B2 Fhutwos

28) zoltar: Sacrifice Y2 Greenbelt
Move G2 Blueridge A2ba
Move G2 A2ba Personman
Catastrophe Personman G

29) Personman: Build Y2 A2ba

30) zoltar: Build Y2 Greenbelt

31) Personman: Move Y2 A2ba Fhutwos

32) zoltar: Sacrifice Y2 Greenbelt
Move Y2 Greenbelt A2ba
Move Y2 A2ba Personman

33) Personman: Trade B1 G1 Personman

34) zoltar: Trade G3 R3 Zoltar

35) Personman: Build G2 Personman

36) zoltar: Sacrifice R3 Zoltar
Attack G2 Personman
Attack G1 Personman
Attack R1 Personman
	zoltar: The Death Star is now fully functional.  Prepare to fire on the Rebel Base.  Stand by...
	Personman: good game :)

	zoltar: thanks -- the green catastrophe led to an early and decisive attack, and there was no way for you to recover an get a big ship back in your homeworld in time.  Play again?


3832)
Variants: "Unrated"
Started: 2006.7.7, Ended: 2006.7.13
Participants: zoltar (S), fnord (N)
Winner: zoltar

1) fnord: Homeworld B3 Y2 G3
	zoltar: Greetingz, Earthling!

2) zoltar: Homeworld Y2 B1 G3

3) fnord: Build G1 Fnord

4) zoltar: Build G1 Zoltar

5) fnord: Trade G1 B1 Fnord

6) zoltar: Build G1 Zoltar

7) fnord: Discover B1 Fnord Y1 Nothingness

8) zoltar: Discover G1 Zoltar Y3 Yellowstone

9) fnord: Build G1 Fnord

10) zoltar: Build G2 Zoltar

11) fnord: Trade G1 R1 Fnord

12) zoltar: Trade G2 R2 Zoltar

13) fnord: Move B1 Nothingness Yellowstone

14) zoltar: Discover G1 Yellowstone R1 Redriver

15) fnord: Build G1 Fnord

16) zoltar: Build G2 Redriver

17) fnord: Move G1 Fnord Redriver

18) zoltar: Build G2 Zoltar

19) fnord: Build G2 Redriver
Catastrophe Redriver G

20) zoltar: Discover G2 Zoltar B3 Blueridge

21) fnord: Build G1 Fnord

22) zoltar: Build R1 Zoltar

23) fnord: Discover G1 Fnord Y1 Orary

24) zoltar: Move R2 Zoltar Yellowstone

25) fnord: Move B1 Yellowstone Orary

26) zoltar: Move R2 Yellowstone Orary

27) fnord: Build G1 Orary
	zoltar: Attack!!!

28) zoltar: Attack B1 Orary

29) fnord: Build G2 Fnord

30) zoltar: Sacrifice G3 Zoltar
Build G2 Blueridge
Build G3 Blueridge
Build G3 Zoltar

31) fnord: Move G1 Orary Blueridge
Catastrophe Blueridge G

32) zoltar: Attack G1 Orary
	zoltar: You're really into blowing things up this game!

33) fnord: Build R1 Fnord
	zoltar: Though after each sequence when things got blown up, I ended up gaining an extra move or two after everything settled down, especially here, where at the end of the sequence I get to convert your last outpost at orary and end up with the extra small pieces.
	fnord: I know, I just have to try to get in my hits where I can... even if it means more work for me later.

34) zoltar: Build R2 Orary

35) fnord: Trade R1 Y1 Fnord

36) zoltar: Trade R2 Y2 Orary

37) fnord: Move Y1 Fnord Orary

38) zoltar: Attack Y1 Orary

39) fnord: Build R1 Fnord
	zoltar: I didn't get that move.
	fnord: Sure you did, you just took it...  Or did you mean you didn't understand the move?

40) zoltar: Build R2 Orary
	zoltar: I meant I didn't understand why you would simply move a piece where I could take it?  That gives me yet another extra little ship for free.

41) fnord: Trade R1 Y1 Fnord

42) zoltar: Trade Y2 G2 Orary
	fnord: Now that I think of it, it probably was a stupid move.  I hadn't thought of you attacking it.

43) fnord: Discover G2 Fnord B1 Temp

44) zoltar: Discover G2 Orary B3 Investment

45) fnord: Move Y1 Fnord Temp

46) zoltar: Move Y1 Orary Investment

47) fnord: Build Y2 Temp

48) zoltar: Build Y3 Investment

49) fnord: Trade Y2 R2 Temp

50) zoltar: Move Y3 Investment Temp

51) fnord: Build Y2 Temp

52) zoltar: Sacrifice R2 Orary
Attack G2 Temp
Attack R2 Temp

53) fnord: Discover Y2 Temp Y3 Sink

54) zoltar: Build Y3 Investment

55) fnord: Discover Y2 Sink B2 Hole

56) zoltar: Move Y3 Investment Hole

57) fnord: Discover Y2 Hole G3 Eris

58) zoltar: Build Y3 Investment

59) fnord: Build R1 Fnord

60) zoltar: Sacrifice G3 Zoltar
Build G1 Orary
Build G2 Temp
Build G3 Zoltar

61) fnord: Move Y1 Temp Investment

62) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Orary
Build R3 Temp

63) fnord: Move R1 Fnord Temp

64) zoltar: Sacrifice Y3 Investment
Move G1 Orary Fnord
Move R2 Orary Fnord
Move R3 Temp Fnord
	zoltar: I think I have you outnumbered...
	zoltar: The 'factory' move of sacking the g3 and then rebuilding it along with two other builds seems to be the single most powerful weapon in this game.
	fnord: Yeah, I think so... on both counts.

65) fnord: Sacrifice Y1 Investment
Move R1 Temp Fnord
Catastrophe Fnord R

66) zoltar: Sacrifice Y3 Temp
Move G2 Temp Fnord
Move G2 Temp Fnord
Move R2 Temp Fnord
Catastrophe Fnord G

	fnord: Of course, I don't know how I'm going to clean up this mess, but at least most of the partygoers are gone.
	zoltar: Well, it was fun while it lasted. :)
	zoltar: It was a real blast!


3799)
Started: 2006.7.3, Ended: 2006.7.11
Participants: zoltar (S), Cerulean (N)
Winner: zoltar

1) Cerulean: Homeworld Y3 B1 G3

2) zoltar: Homeworld B2 Y1 G3

3) Cerulean: Build G1 Cerulean

4) zoltar: Build G1 Zoltar

5) Cerulean: Discover G1 Cerulean B2 Bitou

6) zoltar: Discover G1 Zoltar B3 Boysenberry

7) Cerulean: Trade G1 Y1 Bitou

8) zoltar: Build G1 Zoltar

9) Cerulean: Build G1 Cerulean

10) zoltar: Build G2 Boysenberry

11) Cerulean: Build G2 Cerulean

12) zoltar: Sacrifice G3 Zoltar
Build G2 Boysenberry
Build G3 Zoltar
Build G3 Zoltar

13) Cerulean: Move G1 Cerulean Bitou

14) zoltar: Trade G2 Y2 Boysenberry

15) Cerulean: Discover G1 Bitou Y3 Wythrii

16) zoltar: Trade G1 R1 Zoltar

17) Cerulean: Trade G2 Y2 Cerulean

18) zoltar: Build R1 Zoltar

19) Cerulean: Build G1 Wythrii

20) zoltar: Trade G3 Y3 Zoltar

21) Cerulean: Build G2 Cerulean

22) zoltar: Move G2 Boysenberry Bitou

23) Cerulean: Move Y1 Bitou Wythrii

24) zoltar: Build G2 Zoltar

25) Cerulean: Sacrifice Y2 Cerulean
Move G1 Wythrii Zoltar
Move Y1 Wythrii Zoltar

26) zoltar: Sacrifice Y3 Zoltar
Move G1 Boysenberry Bitou
Move G1 Bitou Cerulean
Move G2 Bitou Cerulean
Catastrophe Cerulean G

	zoltar: Play again?
	Cerulean: I try to be in one game of each of SDG's offerings at a time.  No game at SDG is to my credit, though I've had a hand in the modification of Generatorb and Numica.
	Cerulean: Yikes!  I did not see that coming, but I did learn from it.  Time to whip out the pyramids and reconstruct that for an instant replay.
	zoltar: Yes, you should not leave just one color left in your homeworld, as a catastrophe will instantly be checkmate.  Hence your y2 piece was 'pinned'.


3794)
Started: 2006.7.3, Ended: 2006.7.27
Participants: Jesse (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B1 G3
	Jesse: Hello.  Sorry to take so long responding to your challenge; I've been busy with Origins.

2) Jesse: Homeworld R1 B3 G3
	zoltar: Greetings from Greenbelt, Milky Way!   Hope Origins was a lot of fun.  Did you get to play any Homeworlds there?  I wish I could have gone.
	Jesse: Origins was, indeed, a lot of fun.  I didn't get to play as much Homeworlds as I would have liked, but the games I did play were excellent.  I very nearly won the tournament, but I pushed too hard at a critical point and Andy turned the attack and wiped me out in a very intense final game.

3) zoltar: Build G1 Zoltar
	Jesse: Okay, just testing.

4) Jesse: Build G1 Jesse

5) zoltar: Discover G1 Zoltar Y3 Banana

6) Jesse: Trade G3 Y3 Jesse

7) zoltar: Build G1 Zoltar

8) Jesse: Build G2 Jesse

9) zoltar: Build G2 Banana

10) Jesse: Discover G2 Jesse B2 Republic

11) zoltar: Discover G2 Banana B2 Grape
	Jesse: Nice record.  I see you've even beat TwoShort once.  From the commentary there, it sounds like you haven't been playing long, either.  Is that right?

12) Jesse: Build G2 Republic
	zoltar: Two weeks, and yes I caught TwoShort off guard, but now he's back to pounding me again.  Still, it was my first win against an experienced player.  Also, in one game against Andy Looney (over the table last week), I blew up one of his stars before I died -- another first for me.  I'm a chess player, and my favorite game is shogi, which is like a cross between chess and homeworlds, as the pieces you capture you get to drop in again later on the board as your own.  This is a really fun game and I'm trying to learn it quickly, so I can take on Andy!

13) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Banana
Build G3 Grape
	Jesse: Excellent!  I hope you rise in skill to where you can give us all a run for our money.  It will be nice to have a bigger pool of strong players to engage.  Climb on up the heap!
	Jesse: I also like Shogi, though I have not had the opportunity to play with anyone who really knew what they were doing.  I even made my own Shogi set with westernized icons, which I quite like.

14) Jesse: Trade G2 Y2 Republic

15) zoltar: Trade G2 Y2 Grape
	zoltar: Hey, so have I:  I've developed a shogi set out of Looney Labs pyramids that uses exactly 4 stashes, plus another stash of some solid color for promotions.  We should play shogi sometime, too!
	zoltar: Do you know the easiest place to play shogi online?  I haven't actually played a game in years, except when teaching people the game.
	Jesse: Hmm, that's what I get for getting distracted and playing incautiously.  I'll have to start thinking seriously now.
	Jesse: No, I don't know of anyplace to play Shogi online.
	zoltar: Yes, I learned about "the Factory" from TwoShort.  I'll check online -- I think there are servers in Japan that are free for playing shogi.  I'll let you know when I find out.

16) Jesse: Build G2 Republic

17) zoltar: Sacrifice G3 Zoltar
Build G2 Grape
Build Y1 Grape
Build G3 Zoltar
	zoltar: Hey, I found a shogi site, after a long, tough internet search:  there were several, but all in Japanese, so I had no idea how to sign up; finally I found a free one with an English option.  I boldly chose a starting rating of 1500, and then got trounced by two 1200 rated players.  Anyway, sign up and we'll play a game!  the site is http://www.shogidojo.com/eng/engindex.htm 
	zoltar: Wow, those shogi players are all good.  I'm now 0-6 and my rating has dropped from 1500 to 1358.  Cool site.  Didn't seen anyone else from the USA there either.  I thought I was better, but I guess my shogi rating is somewhere near the bottom as I've yet to win a game -- maybe I haven't played in a while.

18) Jesse: Discover G2 Republic Y3 Johny
	Jesse: Looking at the equivalency between rating points and kyu/dan ranks, 1500 would be pretty darn good.  Their interface seems a little clunky to me, and they don't seem to have a real downloadable client, which is a drag for me on dial-up.  And, of course, there's a reason I made my set with westernized icons.  I have a great deal of difficulty distinguishing many of the pieces with the traditional markings.
	zoltar: Well, I'm now at 1200, and have a record of 2-12!  I seem to be able to have a good game with those around 1000, and get clobbered by anyone over 1200.  You get used to the pieces really fast -- that's not so much a problem.  Dial-up?  That's sort of like having a phonograph instead of CD's isn't it? :)  Do you have a picture of your set online?  I'd like to see.  In other news, I plan to take on Home-World Champion Andy Looney in person tonight...

19) zoltar: Trade G1 R1 Zoltar
	zoltar: Well, if I know you are online, and you wait a minute for the client to load, we can try a game of shogi on the clunky site.  
	zoltar: My shogi rating has now dropped to 976 -- if I keep this up I will soon be in the negative numbers.

20) Jesse: Trade G2 R2 Republic
	Jesse: I hope you don't mind if I take my time in this game.  You've got me in rather a bad situation.
	Jesse: I don't have any pictures of my Shogi set online, but I should.  I'll take some.

21) zoltar: Move G3 Banana Republic

22) Jesse: Sacrifice G2 Johny
Build R1 Republic
Build Y1 Jesse

23) zoltar: Build R2 Zoltar

24) Jesse: Sacrifice Y2 Republic
Move R2 Republic Banana
Discover R1 Republic G1 Plato's

25) zoltar: Move Y2 Grape Plato's

26) Jesse: Attack G1 Banana

27) zoltar: Sacrifice R1 Zoltar
Attack R1 Plato's

28) Jesse: Build G2 Banana

29) zoltar: Sacrifice G3 Grape
Build G2 Republic
Build G3 Grape
Build Y1 Grape

30) Jesse: Build R1 Banana

31) zoltar: Sacrifice G3 Republic
Build G3 Republic
Build Y2 Plato's
Build Y3 Plato's

	zoltar: You are outnumbered, Earthling!
	Jesse: Yeah.  I really need to resign this one.  Sorry to take so long.


3795)
Started: 2006.7.4, Ended: 2006.7.11
Participants: zoltar (S), JunkMan (N)
Winner: zoltar

1) JunkMan: Homeworld G1 B2 Y3

2) zoltar: Homeworld Y2 B3 G3

	zoltar: Greetingz Earthling, from Greenbelt, Milky Way


3827)
Started: 2006.7.5, Ended: 2006.7.22
Participants: zoltar (S), Aaron (N)
Winner: zoltar

1) Aaron: Homeworld Y1 B2 G3

2) zoltar: Homeworld Y2 B3 G3

3) Aaron: Build G1 Aaron

4) zoltar: Build G1 Zoltar

5) Aaron: Trade G1 Y1 Aaron

6) zoltar: Discover G1 Zoltar B1 Blueberry

7) Aaron: Build G1 Aaron

8) zoltar: Build G1 Zoltar

9) Aaron: Trade G1 B1 Aaron

10) zoltar: Discover G1 Zoltar R1 Raspberry

11) Aaron: Discover B1 Aaron G3 Emeralds

12) zoltar: Build G1 Zoltar

13) Aaron: Build G2 Aaron

14) zoltar: Trade G1 R1 Zoltar

15) Aaron: Trade G2 R2 Aaron

16) zoltar: Build G1 Zoltar

17) Aaron: Move R2 Aaron Emeralds

18) zoltar: Build G2 Raspberry

19) Aaron: Build G2 Aaron

20) zoltar: Sacrifice G3 Zoltar
Build G2 Blueberry
Build G3 Zoltar
Build R1 Zoltar

21) Aaron: Sacrifice G3 Aaron
Build G3 Aaron
Build R2 Emeralds
Build Y1 Aaron

22) zoltar: Trade G2 Y2 Blueberry

23) Aaron: Move Y1 Aaron Emeralds

24) zoltar: Move R1 Zoltar Blueberry

25) Aaron: Move R2 Emeralds Aaron

26) zoltar: Trade G1 B1 Zoltar

27) Aaron: Build B2 Emeralds

28) zoltar: Move B1 Zoltar Raspberry

29) Aaron: Discover G2 Aaron Y3 Bananas

30) zoltar: Discover G1 Blueberry Y3 Pineapple

31) Aaron: Build R2 Aaron

32) zoltar: Build G1 Zoltar

33) Aaron: Build G2 Aaron

34) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Zoltar
Build R3 Blueberry

35) Aaron: Sacrifice G3 Aaron
Build G3 Aaron
Build R3 Emeralds
Build Y2 Emeralds

36) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Blueberry
Build B2 Raspberry

37) Aaron: Move R2 Aaron Pineapple

38) zoltar: Move Y3 Blueberry Pineapple

39) Aaron: Move R2 Pineapple Aaron

40) zoltar: Move G1 Pineapple Aaron

41) Aaron: Sacrifice G2 Aaron
Build G2 Bananas
Pass

42) zoltar: Sacrifice G1 Zoltar
Build G1 Aaron

43) Aaron: Sacrifice R2 Aaron
Attack G1 Aaron
Attack G1 Aaron

44) zoltar: Sacrifice Y2 Blueberry
Move G1 Raspberry Pineapple
Move G1 Pineapple Aaron
Catastrophe Aaron G

45) Aaron: Move R3 Emeralds Raspberry

46) zoltar: Sacrifice B2 Raspberry
Trade Y3 G3 Pineapple
Trade R3 Y3 Blueberry

47) Aaron: Sacrifice G2 Bananas
Build R2 Emeralds
Build R3 Aaron
	zoltar: Well, I guess I'm committed now!

48) zoltar: Sacrifice G2 Raspberry
Build Y2 Blueberry
Build G1 Pineapple

49) Aaron: Attack B1 Raspberry

50) zoltar: Move Y3 Blueberry Emeralds

51) Aaron: Sacrifice Y1 Emeralds
Move R3 Raspberry Bananas
	zoltar: Wow.  I totally missed your last move, Aaron.  This game is fascinating, and the most interesting and complex homeworlds game I've played to date.  We almost exhausted the stash of pieces before I (prematurely) went bananas and started sacking things.  I've recently learned and now have won a few games, even racking up an upset victory against a good player who played too fast, but I still can't even see one move ahead sometimes.  You play lots here: what are your favorite games?  This site is fantastic, and I ought to learn more of them.  I play japanese chess (shogi) and this reminds me of it.  I have even come up for a model of shogi that uses looneylabs pyramids, 4 stashes exactly, for a shogi set, which I think is preferable to the originals with japanese characters.  Do you know how hard it would be to add a pyramid game like that on this site?  It would use a 9x9 board.  As in this game, you can capture pieces and use them as yours, and the orientation of the piece determines to whom it belongs.  
	Aaron: Homeworlds is one of the most difficult games to to wrap your head around.  This is one of my worst games, actually, but I do enjoy it occasionally.  I've been watching your winning streak and am most impressed.  You have done remarkably well, especially now that I know you are just learning.  One day you'll have to have a go against AndyLooney, the creator and almost undefeated Homeworlds champion.  My favourite games would have to be Cannon and Alien City.  I do play often here as I am the site creator and maintainer.  I am very pleased that you are enjoying yourself.  That was the goal =)  I am always looking for new games to add and would be happy to have a look at your Icehouse Shogi.  Send me the rules if you can.  If you program in Perl, you can also have a go at it yourself by visiting the wiki and the API page.

52) zoltar: Sacrifice R3 Zoltar
Attack R2 Emeralds
Attack R2 Emeralds
Attack Y2 Emeralds

53) Aaron: Sacrifice R2 Aaron
Attack R2 Emeralds
Attack R2 Emeralds
	zoltar: I will take at Canon and Alien City.  I plan to take on the champ Andy Looney soon.  Andy taught me the game in person, insisting that my chess and shogi enthusiasm would spill over to homeworlds;  I lost every game easily, and then came here to play and study the game.  Only after setting up a board and going over all of Andy, Jesse, and TwoShort's games did I start to win, so I'm almost ready to try taking on Andy Looney again.  Btw, while Andy Looney is the creator of the Icehouse pyramids, I just won a game online against the actual creator of the Homeworlds game itself, John "Gort" Cooper!  As for Shogi, I don't program in Perl, so you or someone else would have to do all the hard work, but I'll send you an email with the rules and my mapping of icehouse pieces to shogi pieces. I think it would be perfect for this site.

54) zoltar: Sacrifice G3 Pineapple
Build R2 Zoltar
Build R3 Blueberry
Build Y1 Blueberry

55) Aaron: Attack Y2 Emeralds
	Aaron: ooo, didn't expect that.

56) zoltar: Sacrifice R2 Zoltar
Attack R2 Emeralds
Attack R2 Emeralds
	zoltar: Well, I didn't expect -that- either!  What a game!

57) Aaron: Sacrifice R3 Bananas
Attack R2 Emeralds
Attack R2 Emeralds
Pass
	zoltar: Luckily, I can sac more than you can, if we keep this up!

58) zoltar: Sacrifice R3 Blueberry
Attack R2 Emeralds
Attack R2 Emeralds
Attack Y2 Emeralds

59) Aaron: Sacrifice R3 Aaron
Attack R2 Emeralds
Attack R2 Emeralds
Attack Y2 Emeralds

60) zoltar: Move Y3 Emeralds Aaron

	Aaron: *sighs*  I am so blind sometimes =/  *ponders deeply...*
	Aaron: Nope.  If I had one more yellow piece I'd have had a chance.  Very well done, zoltar!  You remain SDG's uber-champion =)  Thanks for the game!


3831)
Started: 2006.7.5, Ended: 2006.7.13
Participants: MatrixFrog (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y1 B2 G3
	MatrixFrog: I think I'm usually pretty bad, but I don't think I'm usually THAT bad. Here goes.

2) MatrixFrog: Homeworld B3 G1 Y3

3) zoltar: Build G1 Zoltar

4) MatrixFrog: Build Y1 Matrixfrog

5) zoltar: Discover G1 Zoltar Y3 Banana

6) MatrixFrog: Build Y1 Matrixfrog

7) zoltar: Build G1 Zoltar

8) MatrixFrog: Discover Y1 Matrixfrog G2 Jeetoo

9) zoltar: Build G2 Zoltar

10) MatrixFrog: Build Y2 Jeetoo

11) zoltar: Discover G2 Zoltar B3 Blueberry

12) MatrixFrog: Discover Y1 Jeetoo B3 Bumble

13) zoltar: Sacrifice G3 Zoltar
Build G2 Banana
Build G3 Zoltar
Build G3 Blueberry

14) MatrixFrog: Trade Y3 G3 Matrixfrog

15) zoltar: Trade G2 Y2 Blueberry

16) MatrixFrog: Sacrifice G3 Matrixfrog
Build Y2 Matrixfrog
Build Y3 Bumble
Build Y3 Matrixfrog

17) zoltar: Sacrifice G3 Zoltar
Build G2 Blueberry
Build G3 Zoltar
Build G3 Banana

18) MatrixFrog: Discover Y1 Matrixfrog B2 Earth

19) zoltar: Trade G3 R3 Zoltar

20) MatrixFrog: Trade Y2 R2 Matrixfrog

21) zoltar: Sacrifice G3 Banana
Build G3 Banana
Build G3 Zoltar
Build Y2 Blueberry

22) MatrixFrog: Move Y1 Earth Bumble

23) zoltar: Discover Y2 Blueberry B2 Boysenberry

24) MatrixFrog: Build R1 Matrixfrog

25) zoltar: Move Y2 Boysenberry Bumble
Catastrophe Bumble Y

26) MatrixFrog: Build Y1 Matrixfrog

27) zoltar: Trade G3 R3 Blueberry
	MatrixFrog: Why did I not see that coming?!

28) MatrixFrog: Discover Y1 Matrixfrog B2 Zip

29) zoltar: Sacrifice G3 Banana
Build G3 Banana
Build G3 Blueberry
Build R1 Blueberry

30) MatrixFrog: Move Y1 Zip Banana

31) zoltar: Move R3 Blueberry Jeetoo

32) MatrixFrog: Discover Y2 Jeetoo R3 Mordor

33) zoltar: Trade G3 Y3 Blueberry

34) MatrixFrog: Trade Y3 G3 Matrixfrog
	zoltar: Prepare to be boarded, Earthling!

35) zoltar: Sacrifice G3 Banana
Build G3 Blueberry
Build R1 Jeetoo
Build R2 Blueberry

36) MatrixFrog: Discover Y1 Banana R2 D2

37) zoltar: Move G3 Blueberry D2

38) MatrixFrog: Discover Y1 D2 B3 Alpha

39) zoltar: Sacrifice Y3 Blueberry
Move G1 Banana D2
Move G1 D2 Matrixfrog
Move G3 D2 Matrixfrog
Catastrophe Matrixfrog G

40) MatrixFrog: Trade R1 G1 Matrixfrog

41) zoltar: Move R3 Zoltar Matrixfrog

42) MatrixFrog: Build G1 Matrixfrog
	zoltar: Prepare to be boarded, Earthling!

43) zoltar: Sacrifice R3 Jeetoo
Attack R2 Matrixfrog
Attack G1 Matrixfrog
Attack G1 Matrixfrog

	zoltar: Rezizztanz ease few tile.  You have been assimilated.  :)  Play again?


3835)
Started: 2006.7.7, Ended: 2006.8.4
Participants: josh (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B2 Y1 G3

2) josh: Homeworld R1 B2 G3
	zoltar: Greetingz, Earthling!

3) zoltar: Build G1 Zoltar

4) josh: Build G1 Josh

5) zoltar: Trade G1 Y1 Zoltar

6) josh: Trade G3 Y3 Josh
	zoltar: Wear ease Josh?  Pray pair four battle, hyu-maahn bean!

7) zoltar: Discover Y1 Zoltar G3 Greenbelt
	josh: Sorry for the delay--I lost this email, and haven't spent enough time playing with this to figure out how to get here without clicking the email link :)

8) josh: Build G1 Josh
	zoltar: No problem -- I figured you'd just been very busy.

9) zoltar: Build G1 Zoltar

10) josh: Discover G1 Josh Y3 Jinx

11) zoltar: Trade G1 R1 Zoltar

12) josh: Build G1 Josh

13) zoltar: Build G2 Zoltar

14) josh: Build G2 Jinx

15) zoltar: Move G2 Zoltar Jinx

16) josh: Build G2 Jinx
Catastrophe Jinx Green

17) zoltar: Build R1 Zoltar
	zoltar: Jeez -- I just realized we're playing in the symmetrical small universe -- yuck!

18) josh: Trade G1 B1 Josh

19) zoltar: Build R2 Zoltar

20) josh: Build G1 Josh

21) zoltar: Trade R2 B2 Zoltar
	zoltar: Guns! Guns! I want Guns! 

	zoltar: Then again, shape-shifters are nice too...


3800)
Started: 2006.7.9, Ended: 2006.7.19
Participants: Uglyfoot (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B2 Y1 G3

2) Uglyfoot: Homeworld G3 B1 Y3

3) zoltar: Build G1 Zoltar

4) Uglyfoot: Build Y1 Uglyfoot

5) zoltar: Build G1 Zoltar

6) Uglyfoot: Build Y1 Uglyfoot

7) zoltar: Discover G1 Zoltar B3 Blueberry

8) Uglyfoot: Discover Y1 Uglyfoot B2 Altair

9) zoltar: Build G1 Zoltar

10) Uglyfoot: Build Y2 Uglyfoot

11) zoltar: Build G2 Blueberry

12) Uglyfoot: Move Y2 Uglyfoot Altair

13) zoltar: Trade G2 Y2 Blueberry

14) Uglyfoot: Trade Y2 G2 Altair

15) zoltar: Trade G1 R1 Zoltar

16) Uglyfoot: Build Y2 Altair

17) zoltar: Build Y2 Blueberry

18) Uglyfoot: Trade Y1 R1 Uglyfoot

19) zoltar: Discover Y2 Blueberry B2 Boysenberry

20) Uglyfoot: Discover Y2 Altair G3 Sinclair

21) zoltar: Trade G1 B1 Zoltar

22) Uglyfoot: Build G1 Altair

23) zoltar: Build G1 Zoltar

24) Uglyfoot: Discover G2 Altair R3 Eradani

25) zoltar: Build G2 Blueberry

26) Uglyfoot: Build G2 Eradani

27) zoltar: Discover G1 Zoltar Y3 Proxima_iii

28) Uglyfoot: Sacrifice G2 Eradani
Build Y1 Altair
Build Y3 Sinclair

29) zoltar: Sacrifice G1 Proxima_iii
Build Y3 Boysenberry

30) Uglyfoot: Build G1 Altair

31) zoltar: Trade G1 B1 Blueberry

32) Uglyfoot: Move Y1 Altair Eradani

33) zoltar: Build B3 Blueberry

34) Uglyfoot: Trade Y3 B3 Uglyfoot

35) zoltar: Build Y3 Blueberry

36) Uglyfoot: Move Y1 Eradani Boysenberry

37) zoltar: Sacrifice Y2 Blueberry
Move Y3 Boysenberry Eradani
Move B3 Blueberry Altair

38) Uglyfoot: Sacrifice G2 Eradani
Build Y2 Boysenberry
Build G1 Altair

39) zoltar: Sacrifice Y3 Eradani
Move B1 Blueberry Altair
Move B1 Altair Uglyfoot
Move B3 Altair Uglyfoot
Catastrophe Uglyfoot B

40) Uglyfoot: Sacrifice Y2 Sinclair
Move Y3 Sinclair Altair
Move Y3 Altair Uglyfoot

41) zoltar: Sacrifice Y3 Blueberry
Move G2 Blueberry Boysenberry
Move G2 Boysenberry Uglyfoot
Move G3 Zoltar Uglyfoot

42) Uglyfoot: Attack G3 Uglyfoot

43) zoltar: Build G2 Uglyfoot
Catastrophe Uglyfoot G

	zoltar: Great Party!  Thanks.  Play again?


3825)
Variants: "Sinister"
Started: 2006.7.9, Ended: 2006.8.13
Participants: Jesse (S), game_lover (N)
Winner: Jesse

1) game_lover: Homeworld Y3 G1 B3

2) Jesse: Homeworld B3 R2 G3

3) game_lover: Build B1 Game_lover
	Jesse: Hello, there.  Welcome to SDG.  Have you played much Homeworlds, before?
	game_lover: I've played a little, but never on Super Duper Games.

4) Jesse: Build G1 Jesse

5) game_lover: Trade B1 G1 Game_lover
	Jesse: Is there any chance I've played you before, maybe at Origins?
	game_lover: No. I've never been to Origins.

6) Jesse: Build G2 Jesse

7) game_lover: Discover G1 Game_lover Y2 Origins
	Jesse: OK, just curious.
	game_lover: I think I'll name the systems after the gaming conventions (Origins, GenCon, Dragon*Con, etc.) since I can't think of anything else.

8) Jesse: Trade G2 Y2 Jesse

9) game_lover: Build B1 Game_lover

10) Jesse: Build G2 Jesse

11) game_lover: Move B1 Game_lover Origins

12) Jesse: Discover G2 Jesse Y1 Katamari

13) game_lover: Trade B1 R1 Origins
	game_lover: What is "Katamari"? Or is it just a name?

14) Jesse: Build G2 Jesse
	Jesse: It's Japanese for "lump" or "clod".  Also, Katamari Damashii ("lump spirit") is one of the best video games ever.

15) game_lover: Build R1 Origins
	game_lover: how do I grow the R1 ship in Origins to an R2 ship. I tried "build R2 Origins" but that didn't work. Do you know how?
	game_lover: "trade R1 R2 Origins" didn't work either
	game_lover: Uh...nvm...apparently Homeworlds doesn't have a "build-up" power, just a "build the smallest available ship" power. I was thinking of IceTraders, the precessor to Homeworlds. Sorry!

16) Jesse: Discover G2 Jesse B1 N_
	Jesse: Yeah, this makes it much more about managing the piece economy.  Fortunately, I have no prior experience with IceTraders to distract me.  :)

17) game_lover: Build G2 Origins

18) Jesse: Build G3 N_

19) game_lover: Build G3 Origins

20) Jesse: Move G2 Katamari Origins
Catastrophe Origins G

21) game_lover: Build B1 Game_lover

22) Jesse: Build G1 N_
	game_lover: I wasn't sure if you'd cath that, which is why I undid my last move. I decided to create a G3 at game_lover, but I couldn't do that, so I just made a G3 at Origins, and you saw the catastophe.

23) game_lover: Trade B3 G3 Game_lover

24) Jesse: Trade G2 R2 N_
	Jesse: It's usually best not to rely on your opponent missing something, unless you're desperate.

25) game_lover: Trade G3 R3 Game_lover

26) Jesse: Build R1 N_

27) game_lover: Trade R3 B3 Game_lover
	game_lover: I'm going to try this and see how it works...

28) Jesse: Build G2 N_

29) game_lover: Move B3 Game_lover Origins
	Jesse: OK, you do realize that you just gave me 3 free moves, I hope.

30) Jesse: Sacrifice Y2 Jesse
Move G3 N_ Origins
Move G3 Origins Game_lover

	Jesse: I'd offer to rewind the game, but at this point I think it would be better to begin again.
	game_lover: OK. Well, I'll surrender. YOU WIN!


3850)
Started: 2006.7.10, Ended: 2006.8.1
Participants: Keith (S), gluco (N)
Winner: Keith

1) gluco: Homeworld G3 B2 Y3
	Keith: Hello gluco.  My win/loss record is 2/5.  Though I think I can still give you something to kick and scream about.  Read the wiki for some good setup help.
	gluco: Thanks Keith.  Been dying to play this for a while now...

2) Keith: Homeworld Y1 B3 G3

3) gluco: Build Y1 Gluco

4) Keith: Build G1 Keith

5) gluco: Trade Y3 R3 Gluco

6) Keith: Trade G1 Y1 Keith

7) gluco: Discover Y1 Gluco G1 Alphacent

8) Keith: Build G1 Keith

9) gluco: Build Y2 Alphacent

10) Keith: Trade G1 R1 Keith

11) gluco: Build Y2 Alphacent

12) Keith: Discover Y1 Keith G2 Midworld

13) gluco: Move Y1 Alphacent Gluco

14) Keith: Build G1 Keith

15) gluco: Trade Y1 B1 Gluco

16) Keith: Discover G1 Keith B2 Miranda

17) gluco: Move Y2 Alphacent Gluco

18) Keith: Build G1 Keith

19) gluco: Move B1 Gluco Alphacent

20) Keith: Build R1 Keith

21) gluco: Trade Y2 R2 Alphacent

22) Keith: Sacrifice G3 Keith
Build G2 Miranda
Build G2 Miranda
Build G3 Keith

23) gluco: Build Y1 Gluco
	Keith: Are you familiar with "the factory" for accelerating ship building?
	gluco: No actually.  I take it that's what you just did with the sacrifice?

24) Keith: Sacrifice G3 Keith
Build G3 Keith
Build G3 Keith
Build Y2 Midworld
	Keith: Correct.  If this were an unrated game I would be a bit more helpful in advance.

25) gluco: Move Y1 Gluco Alphacent
	Keith: By helpful I mean informative.  I am now trying to deny you access to green ships and limiting your green access in general.

26) Keith: Discover Y1 Midworld B1 Mist
	gluco: OK, helpful/informative is good.  If you sacrifice a size 3, you can only get it back if there are no smaller ones left in the reserve stash of that color, right?
	Keith: Sort of.  There could be up to two smaller green ships.  There were two G2s that I had to recruit back first to get to the G3.  No smaller green ships is better since I could have gone for other colors.  As it was I have 3 green ships in each sector.  That would be a severe catasrophe risk if you had a green ship.

27) gluco: Build Y2 Alphacent

28) Keith: Sacrifice G3 Keith
Build Y3 Midworld
Build Y3 Mist
Build G3 Keith

29) gluco: Build Y3 Gluco

30) Keith: Sacrifice Y2 Midworld
Move Y1 Mist Gluco
Move Y3 Mist Gluco
Catastrophe Gluco Yellow

31) gluco: Build R1 Alphacent

32) Keith: Sacrifice Y3 Midworld
Move G2 Miranda Alphacent
Move G2 Miranda Alphacent
Move G1 Miranda Alphacent
Catastrophe Alphacent Green
	Keith: I am not sure you understand how the red ships work.  I can sacrfice an R1 in Keith and attack your R2 at Miranda with a G2.
	gluco: I didn't realize you could attack with a green ship

33) gluco: Build R1 Gluco
	gluco: Thanks!  I'll try something else...
	Keith: The sacrifice gives me the power of that color in any sector.
	Keith: For example sacrificing a Y3 in Midworld would give me the power to make three ship moves anywhere.  I feel kind of bad about being heavy handed with my moves.  Think of them as lessons.  Hard ones though.  I prefer learning/teaching in unranked games.  The best way to take out a group of ships around a star is to take out the star.

34) Keith: Discover R1 Keith Y2 Mote

35) gluco: Trade R1 Y1 Gluco
	gluco: No prob - this is fun!  Thanks for your tips and your patience.  I will continue scheming...
	Keith: We could set up a non-ranked game sometime and take more time to develope our positions (and possible schemes).

36) Keith: Move G1 Keith Mote

37) gluco: Discover Y1 Gluco G1 Paloverde
	gluco: OK.  Let's do that after this game.  Thanks!

38) Keith: Build G1 Keith

39) gluco: Build R1 Gluco

40) Keith: Discover G1 Mote Y1 Jacket

41) gluco: Build Y2 Paloverde

42) Keith: Sacrifice G3 Keith
Build G2 Jacket
Build G2 Jacket
Build R2 Mote

43) gluco: Move Y2 Paloverde Gluco

44) Keith: Move G1 Jacket Gluco

45) gluco: Attack G1 Gluco
	Keith: Time to demo another destruction technique.

46) Keith: Move G2 Jacket Gluco
	gluco: things are looking bad but must try something...

47) gluco: Move G1 Gluco Paloverde

48) Keith: Sacrifice G3 Keith
Build G2 Gluco
Build G3 Keith
Build G3 Gluco
Catastrophe Gluco Green

49) gluco: Trade R3 G3 Gluco

50) Keith: Move R2 Mote Paloverde

51) gluco: Discover Y1 Paloverde G2 Antietam

52) Keith: Attack G1 Paloverde

53) gluco: Build G2 Gluco

54) Keith: Sacrifice G3 Keith
Build G3 Keith
Build G3 Jacket
Build R2 Paloverde

55) gluco: Sacrifice Y2 Gluco
Move G2 Gluco Keith
Move G3 Gluco Keith
Catastrophe Keith G

56) Keith: Move G3 Jacket Gluco

57) gluco: Build Y2 Antietam
	Keith: Wow.  I did not think you would be willing to lose your 3-pointer on defense at your home system.  
	Keith: You do have to be careful about exhausting your resources.  You lost a Y2, G3, and G2 while I lost a G3 and G1.  Also you now only have two one point ships and I have a 3-pointer and three two-pointers.  Though having only an r1 at home makes me nervous.

58) Keith: Sacrifice R2 Paloverde
Attack R1 Gluco
Pass

	Keith: Sacrificing a red gave me attack power in any sector I had ships.  Like the gluco sector.  Shall we try another game with slower development.  Perhaps unrated or with some restriction like no catastrophies until after turn 10 or 12?
	gluco: yea, it was a desperate move.  Alternatively, I could have taken the 2 red shis at the other star.  Maybe that would have been a better choice.
Thanks for the cool game!
	Keith:  Shall we try another game with slower development. Perhaps unrated or with some restriction like no catastrophies until after turn 10 or 12?
	gluco: By all means!  Would prefer to keep the rules unchanged, but we could keep it unrated.
	Keith: Okay, you have been challenged.


3796)
Started: 2006.7.11, Ended: 2006.10.25
Participants: jeep (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B1 G3

2) jeep: Homeworld Y3 B2 G3

3) zoltar: Build G1 Zoltar

4) jeep: Build G1 Jeep

5) zoltar: Trade G1 Y1 Zoltar

6) jeep: Trade G1 Y1 Jeep

7) zoltar: Build G1 Zoltar

8) jeep: Build G1 Jeep

9) zoltar: Trade G1 R1 Zoltar

10) jeep: Discover G1 Jeep B1 Moon

11) zoltar: Build G1 Zoltar

12) jeep: Build G1 Jeep

13) zoltar: Build G2 Zoltar

14) jeep: Sacrifice G3 Jeep
Build G2 Jeep
Build G2 Moon
Build G3 Jeep

15) zoltar: Discover G2 Zoltar Y3 Investment

16) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y1 Jeep
Build G3 Moon

17) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Zoltar
Build R1 Zoltar

18) jeep: Trade G2 Y2 Moon

19) zoltar: Sacrifice Y2 Zoltar
Move G2 Investment Moon
Move G2 Moon Jeep
Catastrophe Jeep G

20) jeep: Trade Y1 R1 Jeep

21) zoltar: Build R2 Zoltar

22) jeep: Sacrifice G3 Moon
Build Y1 Moon
Build Y2 Moon
Build Y3 Jeep
	jeep: I need to pay more attention.  I totally missed that.

23) zoltar: Discover Y1 Zoltar G3 Greenbelt
	zoltar: Well, everything ended up about even after the fireworks.

24) jeep: Trade Y2 R2 Moon
	zoltar: Actually, looks like you came out way ahead.

25) zoltar: Trade R2 Y2 Zoltar

26) jeep: Trade Y1 B1 Jeep
	jeep: I don't think I am way ahead...

27) zoltar: Discover Y2 Zoltar B3 Blueridge
	zoltar: Well, I lost three or four moves:  you have an extra 2-pip ship, you have two more ships moved out of your homeworld than I, and it's your move -- I've still yet to do that well in the openings -- I thought my sack would put me up, but it seems to have cost me a couple of moves instead.
	zoltar: I'm doing very well in my games, in fact, except in the opening -- where I often tend to end up playing catch up.
	zoltar: I'll have caught up if I can grab that huge yellow ship before you do.

28) jeep: Build G1 Moon

29) zoltar: Move R1 Zoltar Greenbelt

30) jeep: Move G1 Moon Jeep

31) zoltar: Build R2 Greenbelt

32) jeep: Build G2 Moon

33) zoltar: Discover R1 Greenbelt Y1 Yellowstone

34) jeep: Discover G2 Moon Y3 Nationalpark

35) zoltar: Sacrifice G3 Zoltar
Build R2 Greenbelt
Build R3 Yellowstone
Build R3 Zoltar

36) jeep: Build R3 Moon

37) zoltar: Move R3 Yellowstone Nationalpark

38) jeep: Sacrifice G2 Nationalpark
Build G2 Moon
Build G2 Jeep
	zoltar: I think I'm toast now.

39) zoltar: Sacrifice Y2 Blueridge
Move R2 Greenbelt Moon
Move R2 Greenbelt Moon
Catastrophe Moon R
	zoltar: Ok, I can at put up a fight this way instead!

40) jeep: Trade Y2 R2 Moon

41) zoltar: Trade R3 G3 Zoltar
	jeep: There's a small chance I'll miss the deadline on this game.  I won't miss it by much, if you can be patient for this move.  Sorry if I do.
	zoltar: No problem; take all the time you need -- this is my most exciting game right now.

42) jeep: Build Y2 Moon
	jeep: Squeaked in under the wire

43) zoltar: Build Y2 Greenbelt
	jeep: But I should have taken some time, it appears...

44) jeep: Discover Y2 Moon B3 Stage

45) zoltar: Move G1 Zoltar Nationalpark

46) jeep: Move G2 Moon Stage

47) zoltar: Build R2 Nationalpark

48) jeep: Sacrifice G2 Jeep
Build R2 Moon
Build R3 Jeep

49) zoltar: Build R3 Zoltar

50) jeep: Trade R3 G3 Jeep

51) zoltar: Move R3 Nationalpark Moon

52) jeep: Sacrifice G3 Jeep
Build G2 Stage
Build G2 Stage
Build G3 Jeep

53) zoltar: Build R3 Nationalpark

54) jeep: Sacrifice Y2 Stage
Move R2 Moon Nationalpark
Move R2 Moon Nationalpark

55) zoltar: Sacrifice R2 Nationalpark
Attack R2 Nationalpark
Attack R2 Nationalpark

56) jeep: Trade G2 R2 Stage

57) zoltar: Move R3 Zoltar Stage

58) jeep: Sacrifice G2 Stage
Build G2 Moon
Build Y2 Moon

59) zoltar: Sacrifice R2 Nationalpark
Attack Y2 Moon
Attack Y1 Moon
	jeep: Haha, I'm dumb...

60) jeep: Sacrifice R2 Stage
Attack Y2N Moon
Attack Y1N Moon

61) zoltar: Sacrifice R2 Nationalpark
Attack G1 Moon
Attack G2 Moon

62) jeep: Sacrifice Y2 Moon
Discover G2 Stage B2 Bleh
Discover Y1 Moon B3 Bleck
	jeep: ??  Holy crap!  I SWEAR I typed catastrophe in that system!
	jeep: Well, I guess I'll just call foul and drag out the game hoping to get back into the game.

63) zoltar: Sacrifice Y2 Greenbelt
Move G2 Moon Jeep
Move G1 Moon Jeep
Catastrophe Jeep G

64) jeep: Sacrifice G2 Bleh
Build Y2 Jeep
Build Y2 Bleck

65) zoltar: Move Y1 Greenbelt Moon
	jeep: ??  That seems quite rude.  I printed out the game and was looking at it throughout the day and now I come in to find that you undid a day after you made the move?  Nice.
	jeep: FWIW, my opinion is that undo is fine if it happens relatively soon... but it shouldn't take a day to undo your move.
	zoltar: Sorry, I guess you're right -- I didn't realize you were looking at it, and figured you were out of town, and then thought, hey, that looks cooler.  Sorry about that.  I'd undo it and do the other move now, but it won't let me do it again.
	jeep: Apology accepted.  I wasted quite a bit of time yesterday, though.  I often print out my homeworlds games in the morning and check in on it when I have time.  I then try to make my moves after work.
	jeep: Well, I suppose it doesn't really matter since I now have no shot because of the missed catastrophe (which I still think I typed in).

66) jeep: Trade Y2 G2 Jeep

67) zoltar: Trade R3 G3 Moon
	zoltar: That sucks about the catastrophe -- it's too bad there isn't an option to undo several moves and go on from there.  Though it's cool you actually print out the games -- I didn't realize anyone was so dedicated! That's great.

68) jeep: Build R2 Jeep

69) zoltar: Sacrifice G3 Moon
Build R2 Stage
Build R2 Nationalpark
Build R3 Yellowstone

70) jeep: Discover Y1 Bleck Y2 Store

71) zoltar: Move R3 Nationalpark Store

72) jeep: Discover Y1 Store G3 Whatever

73) zoltar: Build G1 Nationalpark

74) jeep: Build B2 Jeep

75) zoltar: Trade R3 B3 Stage

76) jeep: Discover Y2 Bleck G1 Sigh

77) zoltar: Build R3 Nationalpark

78) jeep: Move B1 Jeep Sigh

79) zoltar: Move Y1 Moon Stage

80) jeep: Build B1 Sigh

81) zoltar: Move B3 Stage Yellowstone

82) jeep: Build G2 Jeep

83) zoltar: Move G1 Nationalpark Yellowstone

84) jeep: Move G2 Jeep Sigh
	jeep: I should have just resigned this game after the missed catastrophe... I haven't had fun with it since. 

85) zoltar: Move R3 Nationalpark Sigh

86) jeep: Discover Y2 Sigh B3 Apathy

87) zoltar: Sacrifice R3 Yellowstone
Attack G2 Sigh
Attack B1 Sigh
Attack B1 Sigh
	jeep: I'm here debating my move.  I'll move in minutes.


88) jeep: Build G2 Jeep

89) zoltar: Sacrifice G2 Sigh
Build G2 Zoltar
Build R3 Yellowstone

90) jeep: Move G2 Jeep Yellowstone

91) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Nationalpark
Build B2 Yellowstone

92) jeep: Move G2 Yellowstone Apathy

93) zoltar: Move G1 Nationalpark Store

94) jeep: Sacrifice G2 Jeep
Build G2 Apathy
Pass

95) zoltar: Move G2 Zoltar Stage

96) jeep: Move R1 Jeep Yellowstone

97) zoltar: Sacrifice R1 Yellowstone
Attack R1 Yellowstone

98) jeep: Sacrifice G2 Apathy
Build R1 Jeep
Build G2 Apathy

99) zoltar: Move R2 Nationalpark Store

100) jeep: Move R1 Jeep Yellowstone

101) zoltar: Sacrifice R1 Yellowstone
Attack R1 Yellowstone

102) jeep: Sacrifice G2 Apathy
Build R1 Jeep
Build G2 Apathy

103) zoltar: Sacrifice G3 Nationalpark
Build G3 Store
Build Y3 Stage
Pass

104) jeep: Sacrifice G2 Apathy
Build G2 Apathy
Pass

105) zoltar: Move R3 Store Apathy

106) jeep: Sacrifice Y2 Apathy
Move G2 Apathy Sigh
Move G2 Sigh Jeep

107) zoltar: Build Y2 Stage

108) jeep: Sacrifice G2 Apathy
Build G2 Jeep
Pass

109) zoltar: Move Y1 Stage Sigh

110) jeep: Sacrifice G2 Jeep
Build G2 Jeep
Pass

111) zoltar: Move Y2 Stage Sigh

112) jeep: Sacrifice G2 Jeep
Build G2 Jeep
Pass

113) zoltar: Sacrifice Y3 Stage
Move Y1 Sigh Jeep
Move Y2 Sigh Jeep
Move B3 Yellowstone Jeep
Catastrophe Jeep Y
	jeep: Wow, trying to drag the game on as long as possible?  I know that I'm just playing because I'm hoping you make an error as big as mine...
	jeep: Wow, trying to drag the game on as long as possible?  I know that I'm just playing because I'm hoping you make an error as big as mine...



3854)
Started: 2006.7.12, Ended: 2006.9.4
Participants: Cerulean (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B1 G3

2) Cerulean: Homeworld B3 Y1 G3

3) zoltar: Build G1 Zoltar

4) Cerulean: Build G1 Cerulean

5) zoltar: Trade G1 Y1 Zoltar

6) Cerulean: Trade G1 B1 Cerulean

7) zoltar: Build G1 Zoltar

8) Cerulean: Build G1 Cerulean

9) zoltar: Build Y1 Zoltar
	Cerulean: And away I go!  http://forums.superdupergames.org/viewtopic.php?t=294

10) Cerulean: Trade G1 R1 Cerulean

11) zoltar: Trade G1 R1 Zoltar

12) Cerulean: Build G1 Cerulean

13) zoltar: Build G1 Zoltar

14) Cerulean: Discover G1 Cerulean Y2 Wytou

15) zoltar: Discover Y1 Zoltar G3 Greenbelt

16) Cerulean: Discover G1 Wytou Y3 Wythrii

17) zoltar: Build Y2 Zoltar

18) Cerulean: Build G1 Wythrii

19) zoltar: Trade G1 B1 Zoltar

20) Cerulean: Build B2 Cerulean

21) zoltar: Build Y2 Greenbelt

22) Cerulean: Discover B1 Cerulean G2 Jetou

23) zoltar: Move Y2 Greenbelt Jetou

24) Cerulean: Build G1 Wythrii

25) zoltar: Build Y3 Jetou

26) Cerulean: Move G1 Wythrii Zoltar

27) zoltar: Trade Y2 R2 Zoltar

28) Cerulean: Build G2 Zoltar

29) zoltar: Attack G2 Zoltar
	zoltar: Uh-ooh!

30) Cerulean: Build G2 Zoltar
Catastrophe Zoltar G

31) zoltar: Build Y2 Greenbelt
	zoltar: Yup I think I'm dead

32) Cerulean: Sacrifice B1 Jetou
Trade G1 B1 Wythrii
	zoltar: As Kermit said, "It's not easy being green"

33) zoltar: Move Y3 Jetou Wythrii
	zoltar: Nope, I have nothing better.

34) Cerulean: Trade G1 R1 Wythrii

35) zoltar: Sacrifice R2 Zoltar
Attack B1 Wythrii
Attack R1 Wythrii
	zoltar: ouch

36) Cerulean: Build G1 Cerulean

37) zoltar: Build Y3 Greenbelt

38) Cerulean: Build R2 Cerulean

39) zoltar: Trade B1 G1 Zoltar

40) Cerulean: Discover R1 Cerulean B2 Bitou

41) zoltar: Build R2 Zoltar
	zoltar: Zee Yellow fleet ease mine, awl mine!  Whew Who!

42) Cerulean: Move G1 Cerulean Bitou

43) zoltar: Move R1 Zoltar Greenbelt

44) Cerulean: Build R2 Bitou

45) zoltar: Build R3 Zoltar

46) Cerulean: Build R3 Cerulean

47) zoltar: Build R3 Greenbelt

48) Cerulean: Trade R1 B1 Bitou

49) zoltar: Build R1 Greenbelt

50) Cerulean: Move R3 Cerulean Jetou

51) zoltar: Move Y2 Jetou Wythrii

52) Cerulean: Build G1 Bitou

53) zoltar: Build G2 Zoltar

54) Cerulean: Build G2 Cerulean

55) zoltar: Build G3 Zoltar

56) Cerulean: Pass
	zoltar: Yikes!  Retreat!!!

57) zoltar: Sacrifice G2 Zoltar
Build B2 Wythrii
Build B3 Wythrii

58) Cerulean: Build G2 Bitou

59) zoltar: Move B3 Wythrii Zoltar

60) Cerulean: Pass

61) zoltar: Build B3 Zoltar

62) Cerulean: Pass

63) zoltar: Move B3 Zoltar Greenbelt

64) Cerulean: Pass

65) zoltar: Move G1 Zoltar Wythrii

66) Cerulean: Pass

67) zoltar: Move Y3 Greenbelt Bitou
	zoltar: m b3 zoltar greenbelt

68) Cerulean: Sacrifice B1 Bitou
Trade G1 B1 Bitou

69) zoltar: Build G1 Zoltar

70) Cerulean: Sacrifice B1 Bitou
Trade G1 B1 Bitou

71) zoltar: Sacrifice R3 Zoltar
Attack R2 Bitou
Attack G2 Bitou
Attack B1 Bitou

72) Cerulean: Build R3 Cerulean
	zoltar: Zoltarian forces storm zee Bitou beach...

73) zoltar: Sacrifice Y3 Wythrii
Move B1 Wythrii Bitou
Move B1 Bitou Cerulean
Move B1 Bitou Cerulean
Catastrophe Cerulean B

74) Cerulean: Move R3 Cerulean Wythrii

75) zoltar: Sacrifice Y3 Bitou
Move Y2 Wythrii Cerulean
Move Y2 Greenbelt Cerulean
Move Y1 Greenbelt Cerulean
Catastrophe Cerulean Y

	zoltar: Thanx4 zee game, hyu-maahn bean.  That was fun!


3877)
Started: 2006.7.17, Ended: 2006.7.21
Participants: Personman (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B2 Y1 G3

2) Personman: Homeworld B3 Y1 G3

3) zoltar: Build G1 Zoltar

4) Personman: Build G1 Personman

5) zoltar: Trade G1 Y1 Zoltar

6) Personman: Trade G3 Y3 Personman

7) zoltar: Build Y2 Zoltar

8) Personman: Build Y2 Personman

9) zoltar: Discover Y1 Zoltar G3 Greenbelt

10) Personman: Discover Y2 Personman G2 Alves

11) zoltar: Build G1 Zoltar

12) Personman: Build G1 Personman

13) zoltar: Discover G1 Zoltar Y3 Investment

14) Personman: Discover G1 Personman B2 Cobaltmere

15) zoltar: Build G2 Zoltar

16) Personman: Build G2 Cobaltmere

17) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Investment
Build Y2 Greenbelt

18) Personman: Sacrifice G2 Cobaltmere
Build Y3 Alves
Build G2 Personman

19) zoltar: Discover Y1 Greenbelt B2 Blueberry

20) Personman: Trade G1 R1 Personman

21) zoltar: Trade G2 R2 Zoltar

22) Personman: Build R1 Personman

23) zoltar: Sacrifice G3 Investment
Build G1 Investment
Build G2 Investment
Build G3 Zoltar

24) Personman: Sacrifice Y2 Alves
Move G1 Cobaltmere Investment
Move R1 Personman Blueberry
Catastrophe Investment G

25) zoltar: Move Y1 Blueberry Personman

26) Personman: Move Y3 Personman Blueberry

27) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenbelt
Build Y3 Personman
Build R1 Zoltar

28) Personman: Discover Y3 Alves G3 Luitpold

29) zoltar: Sacrifice R2 Zoltar
Attack G2 Personman
Attack R1 Personman
	zoltar: Oh what the heck: let's go for the wild, exciting variation!

	zoltar: Whoops!  I think you needed to move back to your homeworld with that Y3 instead, in order to blow up my yellow ships!  
	Personman: Oh. Indeed. I completely missed the R2. Oh well, that's how you learn. Thanks for these games, by the way!


3888)
Started: 2006.7.20, Ended: 2006.7.25
Participants: Uglyfoot (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B1 G3

2) Uglyfoot: Homeworld Y1 B3 G3

3) zoltar: Build G1 Zoltar

4) Uglyfoot: Build G1 Uglyfoot

5) zoltar: Trade G1 Y1 Zoltar

6) Uglyfoot: Build G1 Uglyfoot

7) zoltar: Build G1 Zoltar

8) Uglyfoot: Discover G1 Uglyfoot Y2 Nexus

9) zoltar: Trade G1 R1 Zoltar

10) Uglyfoot: Trade G1 R1 Uglyfoot

11) zoltar: Build G1 Zoltar

12) Uglyfoot: Build G1 Uglyfoot

13) zoltar: Build G2 Zoltar

14) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Nexus
Build G2 Nexus
Build G3 Uglyfoot

15) zoltar: Trade G2 Y2 Zoltar

16) Uglyfoot: Discover G2 Nexus R3 Sanguine

17) zoltar: Discover Y2 Zoltar G3 Greenbelt

18) Uglyfoot: Discover G2 Nexus B3 Extension

19) zoltar: Sacrifice G3 Zoltar
Build Y1 Zoltar
Build G2 Zoltar
Build G3 Zoltar

20) Uglyfoot: Trade G3 Y3 Uglyfoot

21) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Greenbelt
Build Y3 Greenbelt

22) Uglyfoot: Build G3 Extension

23) zoltar: Trade Y1 B1 Zoltar

24) Uglyfoot: Sacrifice G3 Extension
Build Y1 Uglyfoot
Build R1 Uglyfoot
Build G3 Extension

25) zoltar: Sacrifice Y3 Greenbelt
Move Y1 Zoltar Greenbelt
Move Y1 Greenbelt Nexus
Move Y1 Nexus Uglyfoot
Catastrophe Uglyfoot Y

26) Uglyfoot: Trade G3 Y3 Extension

27) zoltar: Sacrifice Y3 Greenbelt
Move B1 Zoltar Uglyfoot
Move G1 Zoltar Uglyfoot
Move G2 Zoltar Uglyfoot

28) Uglyfoot: Sacrifice G2 Sanguine
Build G2 Uglyfoot
Build G3 Extension
Catastrophe Uglyfoot G
	zoltar: Party at Uglyfoot's! Party at Uglyfoot's! All ships welcome!

29) zoltar: Sacrifice G3 Zoltar
Build B1 Uglyfoot
Build B2 Uglyfoot
Build B2 Uglyfoot
Catastrophe Uglyfoot B
	Uglyfoot: Die invading scum!
	zoltar: What a blast!  Play again, Earthling?



3857)
Started: 2006.7.21, Ended: 2006.9.16
Participants: Gort (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y2 G3

2) Gort: Homeworld G3 Y1 R3 *
	zoltar: Greetingz, primitive carbon waterbag unit!
	Gort: Hey, Zoltar. I got yer mail. Lots of ads from Alpha Centuri and a few bills from the Intergalactic Overlord Guild.

3) zoltar: Build G1 Zoltar

4) Gort: Build R1 Gort

5) zoltar: Build G1 Zoltar

6) Gort: Discover R1 Gort Y2 Yoohoo

7) zoltar: Trade G1 R1 Zoltar

8) Gort: Discover R1 Yoohoo Y1 Yippee

9) zoltar: Trade G1 Y1 Zoltar

10) Gort: Discover R1 Yippee B3 Boohoo
	zoltar: All reds this game so far?  What are you up to, Gort?

11) zoltar: Build Y1 Zoltar

12) Gort: Build R1 Gort

13) zoltar: Build R2 Zoltar

	zoltar: You can't even make a move in 10 daze, Gort?  You musta fallen into a wormhole or something.  Heh!
	zoltar: Eat haz now bean 17 daze scenes dare haz bean any activity buy zee Gortianz.  Perhapz day hour een a regenerashun cycle.
	zoltar: Eat haz now bean 38 daze scenes dare haz bee nanny act tea vitty buy Gort.  Zoltar haz lozz pay shins! Zoltar veal now terminate zee Gortian Univerz! Bwahahaha!


3896)
Started: 2006.7.21, Ended: 2006.7.29
Participants: zoltar (S), Personman (N)
Winner: zoltar

1) Personman: Homeworld Y1 B2 G3

2) zoltar: Homeworld Y3 B2 G3

3) Personman: Build G1 Personman

4) zoltar: Build G1 Zoltar

5) Personman: Trade G1 Y1 Personman

6) zoltar: Build G1 Zoltar

7) Personman: Discover Y1 Personman G3 Serpolet

8) zoltar: Trade G3 Y3 Zoltar

9) Personman: Discover Y1 Serpolet R1 Vriko

10) zoltar: Discover G1 Zoltar B1 Blueridge

11) Personman: Move Y1 Vriko Zoltar

12) zoltar: Trade Y3 R3 Zoltar
	zoltar: Yikes!  That's pretty early to attack!

13) Personman: Discover Y1 Zoltar B1 Soubridge
	zoltar: Red Alert!

14) zoltar: Build R1 Zoltar

15) Personman: Build G1 Personman

16) zoltar: Build G2 Blueridge

17) Personman: Trade G1 R1 Personman

18) zoltar: Trade G2 Y2 Blueridge

19) Personman: Build R1 Personman

20) zoltar: Trade R1 B1 Zoltar

21) Personman: Build G1 Personman

22) zoltar: Build G2 Blueridge

23) Personman: Discover G1 Personman Y3 Hope

24) zoltar: Trade G2 B2 Blueridge

25) Personman: Build G2 Personman

26) zoltar: Build B3 Blueridge

27) Personman: Discover G2 Personman Y3 Thing_50

28) zoltar: Trade B3 R3 Blueridge

29) Personman: Build G2 Personman

30) zoltar: Move R3 Blueridge Thing_50

31) Personman: Move G2 Thing_50 Blueridge

32) zoltar: Build B3 Blueridge

33) Personman: Trade G2 Y2 Blueridge

34) zoltar: Trade B3 R3 Blueridge

35) Personman: Discover Y2 Blueridge B3 Run

36) zoltar: Build B3 Blueridge
	zoltar: Warning! Warning! Danger Will Robinson!
	Personman: Wait woah. That is totally not what I meant to do last turn. It was supposed to be an r2, no a y2... oh well.

37) Personman: Discover G1 Hope Y2 Montrouge

38) zoltar: Trade B3 Y3 Blueridge
	zoltar: Hmm. I might have still made the same move, and traded for an R3:  if you sacked your R2 to attack two ships (or kept the R2 and attacked one of them), I would sack my new R3 and take back the two ships; I would have lost my R3 for your R2 but  in two turns I could build a B3 and trade it for the R3 again.  I love the way this game makes us think!
	zoltar: Btw, I've learned to look at the board after I make my move.  Then if it's wrong, or now that the piece has moved, I see a flaw in my analysis, then I can change the move.  It would be an improvement to see your move first and then click to either finalize it or change it, and also be able to change it as many times as you'd like before you finalize it. 

39) Personman: Build G2 Montrouge

40) zoltar: Build B3 Zoltar

41) Personman: Move G2 Montrouge Run

42) zoltar: Move Y3 Blueridge Run

43) Personman: Sacrifice G2 Run
Build G2 Montrouge
Build Y1 Run

44) zoltar: Trade B3 G3 Zoltar

45) Personman: Move Y1 Soubridge Zoltar

46) zoltar: Sacrifice R3 Zoltar
Attack Y1 Zoltar
Attack Y1 Run
Attack Y2 Run

47) Personman: Trade R1 B1 Personman

48) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build B3 Blueridge

49) Personman: Build R1 Personman
	zoltar: Zee Yellow shipz are mine! Awl mine!

50) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B3 Zoltar
Build G3 Blueridge

51) Personman: Discover G2 Montrouge R3 Ha

52) zoltar: Move B3 Blueridge Ha

53) Personman: Build R1 Personman

54) zoltar: Move B2 Blueridge Thing_50

55) Personman: Move R1 Personman Run

56) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Thing_50
Build R2 Blueridge
	zoltar: Very sneaky, trying to deny the Great Galactic Overlord Zoltar of zee last Red battle cruiser!  Soon zee Galaxy will be mine!  (Insert Evil Overlord Laughter here)

57) Personman: Attack Y1 Run

58) zoltar: Sacrifice R3 Blueridge
Attack G2 Ha
Attack R1 Run
Attack Y1 Run

59) Personman: Build R2 Personman

60) zoltar: Sacrifice G2 Zoltar
Build G2 Ha
Build R3 Run

61) Personman: Sacrifice B1 Personman
Pass

62) zoltar: S Y3 Run
Move R1 Run Personman
Move G2 Ha Personman
Move G2 Ha Personman
Catastrophe Personman R
Catastrophe Personman G
	zoltar: Resistance is futile: You will be assimilated!

	Personman: In hopes for kind treatment in the aftermath, I offer up a sacrifice for my new leaders. 
	zoltar: In that case, we will have a big party at Personman!   All ships welcome!  Lots of food, beer, and green Star Trek Orion belly dancers!  It will be a blast!   Play again? 


3897)
Started: 2006.7.21, Ended: 2006.8.8
Participants: Keith (S), MrStickman (N)
Winner: Keith

1) MrStickman: Homeworld G1 B2 Y3

2) Keith: Homeworld Y3 B1 G3
	MrStickman: Hi, Keith! Good luck!
	Keith: Hello MrStickman.  I am more familiar with your forum posts than your game playing.   

3) MrStickman: Build Y1 Mrstickman

4) Keith: Build G1 Keith
	MrStickman: I guees we haven't played each other yet. Well met, then.

5) MrStickman: Build Y1 Mrstickman

6) Keith: Trade G1 Y1 Keith

7) MrStickman: Trade Y1 B1 Mrstickman

8) Keith: Build G1 Keith

9) MrStickman: Discover B1 Mrstickman G3 Lorem

10) Keith: Discover Y1 Keith G2 Midworld

11) MrStickman: Trade Y1 R1 Mrstickman

12) Keith: Trade G1 R1 Keith

13) MrStickman: Build Y1 Mrstickman

14) Keith: Build G1 Keith

15) MrStickman: Move Y1 Mrstickman Lorem
	MrStickman: Sorry for delays. Moving == spotty internet.

16) Keith: Trade G1 B1 Keith
	Keith: Darn!  I was hoping it was the strength of my play that was giving you pause.  ;-)   Moving is a drag even when it is an opportunity.  You have my sympathy.  Thank you for the notice.  I had wondered.

17) MrStickman: Build B2 Lorem

18) Keith: Move B1 Keith Midworld

19) MrStickman: Trade B1 G1 Lorem

20) Keith: Trade B1 G1 Midworld
	MrStickman: To make matters worse, I think I may have broken my personal PC earlier recently. There was swearing. OTOH, I *think* I have an antique that'll be functional enough for internet and possibly even a little coding project (I want to try my hand at coding for SDG.) But that can all wait a few weeks.
	Keith: Uh-oh.  How broke is broke?  What kind of coding project for SDG.  Do you have a game you are going to get put on the site?  You are doing a very good job of resource management.  I bit the bullet and knew you would get a two pointer but you have immediately put me back in the same situation.

21) MrStickman: Discover B2 Lorem G2 Ipsum

22) Keith: Build G2 Keith
	MrStickman: "Broken" in this case means "the motherboard started comitting child abuse." It managed to kill the hard drive before Child Services stepped in and put the other components in foster care.
"Antique" in this case means the old Pentium I can put Windows 95 (eww) on and use to write Perl (which runs everywhere).
"Coding Project" refers to the handful of games I'd really love to see implemented. Aaron (bless his heart for making this site) seems to have his hands full with maintenance, and I'm a programmer who's been kinda curious about Perl anyway, so I'll try my hand at it.
Thank you for the kind words. I've learned Homeworlds is really played in the stash.
	MrStickman: Drat. The chat window doesn't preserve newlines.
	MrStickman: This is a test please ignore it.
< gt > lt & amp ' apos " quot

23) MrStickman: Build B1 Ipsum
	Keith: I have never been able to get line breaks which is why I had my topics all mashed together.  I think that may have been fixed.

Time to test.

	Keith: "Broken" - I am on my third mother board..

"Coding Project" - I am not a programmer.  My second to last programming class used punch cards.  However, in the interest of extracting information from the Cannon game database I have, with Aaron's guidence, acquired Perl, the database, and the "lama book" Learning Perl.

24) Keith: Sacrifice G2 Keith
Build G2 Midworld
Build G3 Keith
	MrStickman: The newlines are fixed. Thank God (or just Aaron). One of my internet pet peeves are self-publishers that don't ever hit the Enter key.

25) MrStickman: Move G1 Lorem Midworld
Catastrophe Midworld Green

26) Keith: Trade G3 R3 Keith

27) MrStickman: Build Y1 Lorem

28) Keith: Move R3 Keith Ipsum

29) MrStickman: Sacrifice Y1 Lorem
Discover B2 Ipsum G1 Dolor

30) Keith: Attack B1 Ipsum

31) MrStickman: Build Y1 Lorem

32) Keith: Trade B1 Y1 Ipsum

33) MrStickman: Build Y2 Mrstickman

34) Keith: Build Y2 Ipsum

35) MrStickman: Sacrifice Y2 Mrstickman
Move Y1 Lorem Ipsum
Move Y1 Lorem Ipsum
Catastrophe Ipsum Yellow

36) Keith: Build G1 Keith

37) MrStickman: Build B1 Dolor

38) Keith: Trade G1 Y1 Keith

39) MrStickman: Build B1 Dolor

40) Keith: Move Y1 Keith Ipsum

41) MrStickman: Trade B2 Y2 Dolor

42) Keith: Move R3 Ipsum Dolor

43) MrStickman: Sacrifice Y2 Dolor
Discover B1 Dolor G2 Sit
Discover B1 Dolor Y2 Amet

44) Keith: Build G1 Keith

45) MrStickman: Build B2 Sit

46) Keith: Trade G1 Y1 Keith

47) MrStickman: Trade Y3 B3 Mrstickman

48) Keith: Sacrifice Y1 Keith
Move R3 Dolor Sit
	Keith: I have not yet fathomed what is going on with all the blue.

49) MrStickman: Build B2 Sit

50) Keith: Attack B2 Sit

51) MrStickman: Build B3 Sit

52) Keith: Attack B3 Sit

53) MrStickman: Build B3 Mrstickman
Catastrophe Sit Blue

54) Keith: Build G1 Keith
	Keith: ahh... I should have triggered the catastrophe to keep you away from the b3.

55) MrStickman: Trade B3 Y3 Mrstickman

56) Keith: Trade G1 Y1 Keith

57) MrStickman: Build B1 Mrstickman

58) Keith: Move Y1 Keith Sit

59) MrStickman: Discover B3 Mrstickman R3 Adipiscing

60) Keith: Build G1 Keith

61) MrStickman: Build B2 Mrstickman

62) Keith: Build Y1 Sit

63) MrStickman: Trade B2 G2 Mrstickman

64) Keith: Build Y2 Ipsum

65) MrStickman: Build B2 Mrstickman

66) Keith: Discover Y1 Sit B3 Belle

67) MrStickman: Move G2 Mrstickman Adipiscing

68) Keith: Discover Y2 Ipsum B3 Ping

69) MrStickman: Build B2 Adipiscing

70) Keith: Sacrifice G1 Keith
Build Y2 Belle

71) MrStickman: Trade B3 Y3 Adipiscing

72) Keith: Move Y1 Belle Mrstickman

73) MrStickman: Attack Y1 Mrstickman

74) Keith: Sacrifice Y1 Sit
Move Y2 Belle Mrstickman

75) MrStickman: Discover Y1 Mrstickman G3 Elit
	MrStickman: I'm not sure where you're going with this. I suppose that means you deserve whatever you're trying to get...
	Keith: I said the same thing about your blue intentions... and bobbled it.  Maybe the next move will make it more obvious.

76) Keith: Sacrifice R3 Sit
Attack B2 Mrstickman
Attack B1 Mrstickman
Attack R1 Mrstickman

77) MrStickman: Trade Y3 R3 Mrstickman
	MrStickman: Well, I think I caught it, but I'm not sure I'm fast enough to stop it all....
	Keith: Maybe.  If I move another y2 in and you convert it I build one and create a yellow catastrophe.  (Thus the sacrifice of a y1 to move a y2 so I had a yellow to build.)  If you move the Y3 out I move my R3 in and start converting.  However, if you let me move a fourth yellow in and catastrophe you can then move your Y3 back home before my R3 can get there.  Hmmmm....

78) Keith: Sacrifice G3 Keith
Build R1 Mrstickman
Build R2 Mrstickman
Build B3 Mrstickman
Catastrophe Mrstickman Red

	MrStickman: Very well done! I was totally not expecting that final shot.
	Keith: Whew!  Thank you for the great game.  What a struggle.  I did not feel safe from the time you got all those blues.  I would like to play you again sometime either rated or unrated.
	MrStickman: Yes, absolutely. But not for a while. Homeworlds makes my head hurt.
	Keith: I feel worn down myself.  Sometime later then.  


3916)
Started: 2006.7.26, Ended: 2006.8.13
Participants: Uglyfoot (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B2 Y1 G3

2) Uglyfoot: Homeworld Y3 B1 G3
	Uglyfoot: Greetings Emporer.  Ready for incoming invaders.

3) zoltar: Build G1 Zoltar

4) Uglyfoot: Build G1 Uglyfoot
	zoltar: Primitive carbon waterbag unitz, ewe hour know match four Zoltar!
	zoltar: Zee galaxy wheel bee mine!  Awl mine!

5) zoltar: Trade G1 Y1 Zoltar

6) Uglyfoot: Trade G1 Y1 Uglyfoot

7) zoltar: Build Y2 Zoltar

8) Uglyfoot: Build Y2 Uglyfoot

9) zoltar: Trade Y1 R1 Zoltar

10) Uglyfoot: Build G1 Uglyfoot

11) zoltar: Build G1 Zoltar

12) Uglyfoot: Discover Y2 Uglyfoot G2 Hera

13) zoltar: Trade G1 B1 Zoltar

14) Uglyfoot: Trade G1 R1 Uglyfoot

15) zoltar: Build G1 Zoltar

16) Uglyfoot: Build G1 Uglyfoot

17) zoltar: Discover Y2 Zoltar G3 Rhea

18) Uglyfoot: Discover Y1 Uglyfoot B2 Hermes

19) zoltar: Discover G1 Zoltar B3 Artemis

20) Uglyfoot: Move G1 Uglyfoot Hermes

21) zoltar: Move B1 Zoltar Rhea

22) Uglyfoot: Build G1 Uglyfoot

23) zoltar: Build G2 Zoltar

24) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Hermes
Build G3 Uglyfoot
Build Y1 Hera

25) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Rhea
Build B2 Rhea

26) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build Y2 Hera
Build Y3 Hermes

27) zoltar: Discover B2 Rhea R2 Hephaestus

28) Uglyfoot: Discover Y2 Hera B3 Apollo

29) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Rhea
Build B3 Rhea

30) Uglyfoot: Sacrifice Y2 Apollo
Move Y1 Hermes Rhea
Move Y1 Hera Rhea
Catastrophe Rhea Y

31) zoltar: Trade B3 Y3 Rhea

32) Uglyfoot: Discover Y3 Hermes B3 Zeus
	Uglyfoot: Emporer, your twice vanquished vassal begs your permission to dwell on his turn...
	zoltar: Hey, take all the time you need.  I'd rather play a longer thought-out game than a faster sloppy one.  Gort is so slow that when I challenged him for a rematch, I made the interval 10 days instead of 3 so the game wouldn't show him to be past the deadline every move!

33) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Rhea
Build B3 Hephaestus
	Uglyfoot: It's a good thing I did.  My favored move would have allowed you to blow up one of my stars...


34) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build Y1 Hera
Build Y2 Zeus
	zoltar: Ah, that means you were planning to trade your G3 for a B3 in your homeworld!  Yes, that would have been unwise.

35) zoltar: Trade B2 Y2 Hephaestus

36) Uglyfoot: Sacrifice Y2 Zeus
Move Y1 Hera Rhea
Move Y2 Hera Rhea
Catastrophe Rhea Y
	Uglyfoot: I'm trainable.  Slow but trainable.

37) zoltar: Sacrifice G3 Zoltar
Build G2 Artemis
Build G3 Zoltar
Build B2 Hephaestus

38) Uglyfoot: Trade G2 R2 Hermes

39) zoltar: Trade B3 R3 Hephaestus

40) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Hermes
Build G3 Uglyfoot
Build R1 Uglyfoot

41) zoltar: Sacrifice G3 Zoltar
Build B3 Rhea
Build Y1 Hephaestus
Build G3 Zoltar

42) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build R2 Hermes
Build Y1 Zeus

43) zoltar: Trade B3 R3 Rhea

44) Uglyfoot: Move R1 Uglyfoot Hephaestus

45) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B3 Rhea
Build R3 Rhea

46) Uglyfoot: Move R1 Uglyfoot Hephaestus
Catastrophe Hephaestus R

47) zoltar: Trade B3 Y3 Rhea

48) Uglyfoot: Trade R2 B2 Hermes

49) zoltar: Move R3 Rhea Hermes

50) Uglyfoot: Trade G1 R1 Hermes
	zoltar: Ouch!  There went half my fleet...
	zoltar: All forces, regroup in rhea & prepare for counterattack!

51) zoltar: Sacrifice R3 Rhea
Attack G2 Hermes
Attack R2 Hermes
Attack R1 Hermes
	Uglyfoot: I win!  I got a blue ship!

52) Uglyfoot: Trade B2 R2 Hermes
Catastrophe Hermes R
	zoltar: Blue Alert! Blue Alert! Stop blue ship at all cost!

53) zoltar: Sacrifice Y3 Rhea
Move G2 Artemis Hermes
Move G2 Hermes Uglyfoot
Move G2 Hermes Uglyfoot
Catastrophe Uglyfoot G

	Uglyfoot: kaboom.  There was a nice satisfying kaboom.
	zoltar: Yep, and now for an even more satisfying kaboom...


3939)
Started: 2006.7.30, Ended: 2006.8.11
Participants: zoltar (S), Personman (N)
Winner: zoltar

1) Personman: Homeworld Y1 B3 G3

2) zoltar: Homeworld Y2 B1 G3

3) Personman: Build G1 Personman

4) zoltar: Build G1 Zoltar

5) Personman: Trade G1 Y1 Personman

6) zoltar: Trade G1 Y1 Zoltar

7) Personman: Build Y2 Personman

8) zoltar: Build Y2 Zoltar

9) Personman: Build G1 Personman

10) zoltar: Discover Y1 Zoltar G3 Greenbelt

11) Personman: Discover Y1 Personman G2 Basin

12) zoltar: Build Y3 Greenbelt

13) Personman: Build Y3 Basin

14) zoltar: Move Y1 Greenbelt Basin

15) Personman: Move Y1 Basin Greenbelt
	zoltar: The symmetry is really cool!

16) zoltar: Trade Y2 R2 Zoltar

17) Personman: Trade G1 R1 Personman

18) zoltar: Build R1 Zoltar

19) Personman: Build R1 Personman

20) zoltar: Build Y2 Basin

21) Personman: Sacrifice R1 Personman
Attack Y2S Basin
	zoltar: Ok, I have to think about this crazy symmetry

22) zoltar: Build Y3 Basin
Catastrophe Basin Y
	zoltar: Yeah, let's go for the craziest variation!  Something that will break the symmetry.

23) Personman: Build Y1 Greenbelt

24) zoltar: Sacrifice R2 Zoltar
Attack Y1 Greenbelt
Attack Y1 Greenbelt

25) Personman: Discover Y2 Personman G2 Mayenne
	zoltar: Ahhh... back to symmetry -- except I have the big yellow ship!  Whew Who!  

26) zoltar: Move Y3 Greenbelt Mayenne

27) Personman: Build Y2 Mayenne
	zoltar: Greenbelt haz been purged of zee infidelz!
	zoltar: Yellow fleet, proceed with assault on Personman Homeworld!

28) zoltar: Build Y3 Greenbelt

29) Personman: Sacrifice Y2 Mayenne
Move Y2 Mayenne Greenbelt
Pass
Catastrophe Greenbelt Y
	zoltar: Attack!  I'll chase him 'round the moons of Nibia and 'round the Antares Maelstrom, and 'round perdition's flames before I give him up!

30) zoltar: Build Y1 Mayenne

31) Personman: Build G1 Personman
	zoltar: There has to be some way where I end up with all the Y3 ships and you end up with nothing...

32) zoltar: Build Y1 Mayenne
	zoltar: Ok, well, I'll settle for one of the Y3 ships, I suppose.

33) Personman: Build R1 Personman

34) zoltar: Build R2 Zoltar

35) Personman: Build R2 Personman

36) zoltar: Discover Y1 Mayenne G3 Greenbelt

37) Personman: Trade R2 Y2 Personman

38) zoltar: Build Y2 Greenbelt

39) Personman: Discover Y2 Personman G2 Cairhien

40) zoltar: Build Y3 Mayenne

41) Personman: Build Y3 Cairhien
	zoltar: Yellow fleet, proceed with assault on Personman Homeworld!

42) zoltar: Sacrifice Y3 Mayenne
Move Y1 Mayenne Greenbelt
Move Y1 Greenbelt Cairhien
Move Y1 Greenbelt Cairhien
Catastrophe Cairhien Y

43) Personman: Build R2 Personman

44) zoltar: Move R2 Zoltar Greenbelt

45) Personman: Trade R2 Y2 Personman

46) zoltar: Build R2 Zoltar
	zoltar: Once again, my plans have been temorarily thwarted...

47) Personman: Build R2 Personman

48) zoltar: Build R3 Greenbelt

49) Personman: Trade R2 B2 Personman

50) zoltar: Trade R1 Y1 Zoltar

51) Personman: Discover B2 Personman G2 Cp

52) zoltar: Sacrifice G3 Zoltar
Build Y1 Mayenne
Build Y3 Greenbelt
Build Y3 Zoltar

53) Personman: Move Y2 Personman Cp

54) zoltar: Move R3 Greenbelt Cp
	zoltar: Red Alert!  Red Alert!  All hands to Battlestations!

55) Personman: Discover Y2 Cp G3 Trask


56) zoltar: Move Y3 Zoltar Trask

57) Personman: Discover Y2 Trask B2 Caemlyn

58) zoltar: Attack B2 Cp
	zoltar: At last, zee Yellow Fleet hath been restored! Whew Who!

59) Personman: Build G1 Personman

60) zoltar: Build B1 Cp
	zoltar: The R3 Death Star is now fully functional.  Prepare to fire!

61) Personman: Build G1 Personman

62) zoltar: Sacrifice Y3 Greenbelt
Move R2 Greenbelt Cp
Move R2 Cp Personman
Move R3 Cp Personman
Catastrophe Personman G
Catastrophe Personman R
	zoltar: All ships: pursue and attack!  Whew Who!

	zoltar: Uh-oh!  Party at Personman's!  Party at Personman's!   This one will be even a bigger blast than last time!


3949)
Variants: "Unrated"
Started: 2006.8.2, Ended: 2006.8.13
Participants: Keith (S), gluco (N)
Winner: Keith

1) gluco: Homeworld B1 Y2 G3

2) Keith: Homeworld Y1 B3 G3

3) gluco: Build G1 Gluco

4) Keith: Build G1 Keith

5) gluco: Trade G1 Y1 Gluco

6) Keith: Trade G1 Y1 Keith

7) gluco: Discover Y1 Gluco G3 Zx
	Keith: I did not intend to mimic your moves but if I did not grab a y1 you could grab it and it would be very difficult for me to get yellow (except for converting my g3).
	gluco: Couldn't you build a b1 and trade for y2 later?  granted that is 2 moves though

8) Keith: Build Y2 Keith
	Keith: I need a b2 to trade for a y2.  So it would take a while to work through the b1s and you might work through the y2s at the same time.

9) gluco: Build Y2 Zx

10) Keith: Discover Y2 Keith G2 Midworld

11) gluco: Discover Y1 Zx G2 Yptl

12) Keith: Trade Y1 B1 Keith

13) gluco: Build Y1 Yptl

14) Keith: Build Y3 Midworld

15) gluco: Build Y3 Yptl

16) Keith: Trade G3 R3 Keith

17) gluco: Discover Y2 Zx G2 Yert

18) Keith: Sacrifice Y3 Midworld
Move R3 Keith Midworld
Discover R3 Midworld Y3 Redalert
Move R3 Redalert Gluco

19) gluco: Trade G3 R3 Gluco

	Keith: Lets see if this will work.

20) Keith: Attack R3 Gluco
	Keith: I think you were focused on sending three yellow ships into Keith and did not realize why I had pulled a gun.
	gluco: kewl move...not sure the situation is salvagable the way I understand the rules, but I will try something...

	Keith: The only way I saw to draw it out was to keep building new ships because I can only convert one per turn.
	Keith: As a general rule of thumb if the other guy has a red then you had better have one too.
	Keith: Then again, as a general rule never move your 3-pointer out of your homeworld system.
	gluco: My thoughts were you would sacrifice the r3 and make 3 captures, so building more ships would not help. Was I right? 
Also, I could not sacrifice the g3 'cause then I had no build capability.
	Keith: You are right.  I overlooked that.  I was thinking you build a green I convert a green until there were four greens.

You are also right about not being able to sacrifice the g3.  I think the game would prevent you from even trying.

I am all for trying another game if you are.
	gluco: OK, let's start another one.


3956)
Started: 2006.8.4, Ended: 2006.12.22
Participants: josh (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y1 G3

2) josh: Homeworld R2 B3 G3

3) zoltar: Build G1 Zoltar

4) josh: Build G1 Josh

5) zoltar: Trade G1 Y1 Zoltar

6) josh: Trade G3 Y3 Josh

7) zoltar: Build G1 Zoltar

8) josh: Build G1 Josh

9) zoltar: Trade G1 R1 Zoltar

10) josh: Trade G1 R1 Josh

11) zoltar: Build G1 Zoltar

12) josh: Build Y1 Josh

13) zoltar: Build Y2 Zoltar

14) josh: Build Y2 Josh

15) zoltar: Discover Y1 Zoltar G2 Greenbelt

16) josh: Discover Y2 Josh G1 First

17) zoltar: Discover Y2 Zoltar G2 Greenhills

18) josh: Build G2 Josh

19) zoltar: Build Y2 Greenhills

20) josh: Build Y3 First
	zoltar: Earth to Josh! Come in Josh!

21) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R1 Zoltar
Build Y3 Greenbelt



3858)
Started: 2006.8.7, Ended: 2006.8.7
Participants: zoltar (S), Wkr (N)
Winner: zoltar

1) Wkr: Homeworld G3 B1 R3

2) zoltar: Homeworld B2 Y1 G3

3) Wkr: Build R1 Wkr
	zoltar: Wow, so you are in Spain? That's great! I'm in Greenbelt (near Washington DC). I have been playing for 2 months, but I've played a lot of games so far.
	Wkr: Yes, I from Zaragoza (Spain). Mi web is http://www.labsk.net and http://icehouse.labsk.net
	Wkr: Excuse me. How I make reference to my homeworld?  What coordinates I must put? Thanks

4) zoltar: Build G1 Zoltar
	Wkr: Ok. My homeworld is Wkr. I wrote Wkr(N). :D 

5) Wkr: Trade R1 Y1 Wkr

6) zoltar: Trade G1 Y1 Zoltar

7) Wkr: Build Y2 Wkr

8) zoltar: Build Y2 Zoltar

9) Wkr: Trade Y2 R2 Wkr

10) zoltar: Trade Y2 R2 Zoltar

11) Wkr: Build Y2 Wkr

12) zoltar: Build Y2 Zoltar

13) Wkr: Discover R2 Wkr B2 Caesar

14) zoltar: Discover Y2 Zoltar G3 Greenbelt

15) Wkr: Move Y2 Wkr Caesar

16) zoltar: Trade Y1 B1 Zoltar

17) Wkr: Move R2 Caesar Greenbelt

18) zoltar: Sacrifice R2 Zoltar
Attack R2 Greenbelt
Pass

19) Wkr: Build R1 Wkr

20) zoltar: Build R1 Greenbelt

21) Wkr: Trade Y2 R2 Caesar

22) zoltar: Build B1 Zoltar

23) Wkr: Build R1 Wkr

24) zoltar: Sacrifice Y2 Greenbelt
Move R1 Greenbelt Caesar
Move R1 Caesar Wkr
Catastrophe Wkr R

25) Wkr: Build Y1 Wkr

26) zoltar: Move B1 Zoltar Greenbelt
	zoltar: The sacrifices are the hardest part of the game and the most easy to overlook.

27) Wkr: Build Y2 Wkr
	zoltar: You are now in trouble until you build another 3-size ship in your homeworld
	Wkr: Yeah. Double movement = boom !!!. 

28) zoltar: Sacrifice G3 Zoltar
Build B2 Greenbelt
Build B3 Greenbelt
Build B3 Zoltar

29) Wkr: Move Y1 Wkr Caesar

30) zoltar: Sacrifice B2 Greenbelt
Trade B3 Y3 Greenbelt
Trade B3 G3 Zoltar

31) Wkr: Build Y2 Wkr

32) zoltar: Sacrifice G3 Zoltar
Build B2 Greenbelt
Build B3 Greenbelt
Build B3 Zoltar

33) Wkr: Discover Y2 Wkr G2 Beatles

34) zoltar: Sacrifice B2 Greenbelt
Trade B3 R3 Greenbelt
Trade B3 G3 Zoltar

35) Wkr: Trade Y2 G2 Wkr

36) zoltar: Sacrifice G3 Zoltar
Build B2 Greenbelt
Build B3 Greenbelt
Build B3 Zoltar

37) Wkr: Sacrifice G2 Wkr
Build Y2 Wkr
Build Y2 Wkr

38) zoltar: Sacrifice Y3 Greenbelt
Move B3 Greenbelt Beatles
Move R3 Greenbelt Beatles
Move R3 Beatles Wkr

39) Wkr: Move R2 Caesar Wkr

40) zoltar: Sacrifice R2 Greenbelt
Attack R2 Wkr
Attack Y2 Wkr
	zoltar: I was able to build 3-sized ships using the trick of sacrificing the g3 and b2 alternatively, and then building them again, so that I could get an R3 ship into your homeworld before you could build another 3-sized ship there to defend.  Once someone gets a 3-sized ship in your homeworld and you don't have another 3-sized ship in your homeworld to defend, there is rarely any defence.

41) Wkr: Trade Y2 G2 Wkr
	zoltar: Note that if you had any 3-sized ship in your homeworld, you could have simply sacrificed your R2 ship and captured my R3! However, without a 3-sized ship, your R2 was worthless, even if you retreated it to defend.
	Wkr: Yes. I'm prolonging my agony. I must improve my strategy enough. 

42) zoltar: Sacrifice R2 Wkr
Attack G2 Wkr
Attack Y1 Wkr
	zoltar: I just lost a game to the 'World Champion' Andy Looney in person last week.  I've never beaten him, and he does tricks like this that I never see coming. That is why I like the game so much -- the tactics are very complex.
	zoltar: I'm leaving for an hour to eat dinner, but if you wish to start another game, I can play again after thast.  Thanks for the game!
	Wkr: Anihiliation. :D



3981)
Started: 2006.8.9, Ended: 2006.10.15
Participants: Wkr (S), zoltar (W), Subhan64 (N), aSoso (E)
Winner: zoltar

1) Subhan64: Homeworld G3 B2 Y3
	Wkr: hello all
	aSoso: hello, my first game online :)
	zoltar: Greetingz Earthlingz!  I've been playing for 2 months but this is my first multi-player game.

2) aSoso: Homeworld G3 Y1 B3
	Subhan64: gl,all!  Sorry for my slowness is starting
	Wkr: aSoso, your turn. # homeworld star1 star2 ship
	Wkr: Hello again, zoltar. :D
	zoltar: Hello!

3) Wkr: Homeworld B1 Y3 G3

4) zoltar: Homeworld Y1 B2 G3

5) Subhan64: Build Y1 Subhan64
	zoltar: This is going to be a long, long game, isn't it? :)

6) aSoso: Build B1 Asoso
	Wkr: Yes. 7 hours of difference. aSoso & Wkr living in Spain.

7) Wkr: Build G1 Wkr

8) zoltar: Build G1 Zoltar

9) Subhan64: Build Y1 Subhan64

10) aSoso: Discover B1 Asoso G2 Ekonos

11) Wkr: Trade G1 R1 Wkr

12) zoltar: Trade G1 Y1 Zoltar

13) Subhan64: Trade Y1 G1 Subhan64

14) aSoso: Build B1 Asoso

15) Wkr: Build G1 Wkr

16) zoltar: Build G1 Zoltar

17) Subhan64: Build G1 Subhan64

18) aSoso: Trade B1 R1 Ekonos

19) Wkr: Build G1 Wkr

20) zoltar: Build G2 Zoltar

21) Subhan64: Trade G1 R1 Subhan64
	Subhan64: trade g1 r1 Subhan64

22) aSoso: Build R1 Ekonos

23) Wkr: Discover G1 Wkr Y2 Caesaraugusta

24) zoltar: Trade G2 R2 Zoltar

25) Subhan64: Build Y1 Subhan64

26) aSoso: Build B1 Asoso

27) Wkr: Build G1 Caesaraugusta

28) zoltar: Build G2 Zoltar

29) Subhan64: Build G2 Subhan64

30) aSoso: Trade B3 Y3 Asoso

31) Wkr: Sacrifice G3 Wkr
Build G2 Wkr
Build G2 Caesaraugusta
Build G3 Wkr

32) zoltar: Discover G2 Zoltar B3 Blueberry

33) Subhan64: Discover Y3 Subhan64 R1 Perseiomicron8

34) aSoso: Build Y2 Asoso

35) Wkr: Trade G2 Y2 Wkr

36) zoltar: Sacrifice G3 Zoltar
Build G2 Blueberry
Build G3 Zoltar
Build Y2 Zoltar

37) Subhan64: Sacrifice G2 Subhan64
Build R2 Subhan64
Build R2 Subhan64

38) aSoso: Build R2 Ekonos

39) Wkr: Discover G1 Caesaraugusta B3 Babylon

40) zoltar: Sacrifice G2 Blueberry
Build R2 Zoltar
Build R3 Zoltar

41) Subhan64: Move Y3 Perseiomicron8 Subhan64

42) aSoso: Trade Y3 G3 Asoso

43) Wkr: Sacrifice G3 Wkr
Build G2 Babylon
Build R1 Wkr
Build R3 Wkr

44) zoltar: Sacrifice Y2 Zoltar
Move Y1 Zoltar Blueberry
Move R3 Zoltar Blueberry

45) Subhan64: Build G2 Subhan64

46) aSoso: Build G3 Asoso

47) Wkr: Move R1 Wkr Caesaraugusta

48) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Blueberry
Build Y2 Blueberry

49) Subhan64: Pass
	Subhan64: build g2 subhan64

50) aSoso: Trade G3 R3 Asoso

51) Wkr: Build G3 Wkr

52) zoltar: Discover Y1 Blueberry B1 Boysenberry

53) Subhan64: Sacrifice Y3 Subhan64
Move R1 Subhan64 Boysenberry
Move R1 Boysenberry Blueberry
Move R1 Blueberry Ekonos
Catastrophe Ekonos Red

54) aSoso: Discover B1 Asoso G2 Ekonos2

55) Wkr: Sacrifice G2 Caesaraugusta
Build R1 Caesaraugusta
Build Y2 Wkr

56) zoltar: Sacrifice G3 Zoltar
Build G2 Blueberry
Build Y3 Blueberry
Build G3 Zoltar

57) Subhan64: Discover Y1 Subhan64 B1 Romulus

58) aSoso: Build B2 Ekonos2

59) Wkr: Sacrifice Y2 Wkr
Move G2 Babylon Zoltar
Move G1 Babylon Zoltar
Catastrophe Zoltar Green

60) zoltar: Sacrifice Y2 Blueberry
Move R3 Blueberry Ekonos2
Move G2 Blueberry Caesaraugusta

61) Subhan64: Build Y2 Subhan64

62) aSoso: Trade B2 R2 Ekonos2

63) Wkr: Sacrifice Y2 Wkr
Discover R1 Caesaraugusta Y3 Hive
Move R1 Caesaraugusta Hive
	zoltar: I'm gonna need at least one blue ship in blueberry!

64) zoltar: Sacrifice R2 Zoltar
Attack R2E Ekonos2
Attack G1S Caesaraugusta

65) Subhan64: Build Y2 Subhan64

66) aSoso: Build B2 Ekonos2

67) Wkr: Trade R3 Y3 Wkr
	zoltar: Ouch!  I'm in big trouble now...

68) zoltar: Sacrifice G2 Caesaraugusta
Build Y2 Blueberry
Build Y3 Boysenberry

69) aSoso: Build B2 Asoso

70) Wkr: Move R1 Wkr Caesaraugusta
	Wkr: Sorry.

71) zoltar: Sacrifice R2 Ekonos2
Attack B2E Ekonos2
Attack R1S Caesaraugusta
	zoltar: I'm having problems: the program isn't accepting my move
	Subhan64: what is the move & the message? Perhaps the move is not valid?

	zoltar: s r2 zoltar
a r2 Ekonos2
a g1 CaesarAugusta
	zoltar: The message is that neither the r2 at Ekonos2 nor the g1 at CaesarAugusta exist.
	zoltar: maybe I'll just make a different move. :(

72) aSoso: Build B2 Ekonos2
	zoltar: Ok I got some help in the help forum.  To attack in a multi-player game, you must place the direction letter of the opponent after the ship:
s r2 zoltar
a r2E Ekonos2
a g1S CaesarAugusta

This is my first multi-player game, so I didn't know that!

73) Wkr: Trade G3 B3 Wkr

74) zoltar: Sacrifice Y3 Boysenberry
Move Y3 Blueberry Zoltar
Move Y2 Blueberry Ekonos2
Discover B2 Ekonos2 G1 Lime

75) aSoso: Build B3 Ekonos2

76) Wkr: Build B3 Wkr

77) zoltar: Move R3 Ekonos2 Hive

78) aSoso: Trade B3 R3 Ekonos2

79) Wkr: Build Y3 Wkr

80) zoltar: Sacrifice Y2 Ekonos2
Move B2 Lime Ekonos2
Move B2 Ekonos2 Wkr
Catastrophe Wkr B

81) aSoso: Sacrifice Y2 Asoso
Move R3 Ekonos2 Hive
Move R3 Hive Zoltar

82) Wkr: Discover Y3 Wkr B1 Kenny

83) zoltar: Attack R3E Zoltar

84) aSoso: Trade B2 Y2 Asoso

85) Wkr: Trade Y3 G3 Kenny

86) zoltar: Sacrifice G1 Caesaraugusta
Build Y2 Boysenberry

	zoltar: Well, I clicked to end the game, but it just kicked him out as well. I'll open up a new one, then, and Wkr and I could finish this one too, then.


3983)
Started: 2006.8.9, Ended: 2006.8.10
Participants: zoltar (S), tesla (N)
Winner: zoltar

1) tesla: Homeworld R3 G2 Y3 *

2) zoltar: Homeworld Y2 B1 G3

3) tesla: Build Y1 Tesla

4) zoltar: Build G1 Zoltar

5) tesla: Build Y1 Tesla

6) zoltar: Trade G1 Y1 Zoltar

7) tesla: Discover Y1 Tesla B1 Tales

8) zoltar: Discover Y1 Zoltar G3 Greenbelt

9) tesla: Trade Y1 G1 Tales

10) zoltar: Build G1 Zoltar

11) tesla: Trade G1 B1 Tales

12) zoltar: Build G1 Zoltar

13) tesla: Move Y1 Tesla Tales



4013)
Started: 2006.8.11, Ended: 2006.9.1
Participants: zoltar (S), Personman (N)
Winner: zoltar

1) Personman: Homeworld Y3 B1 G3

2) zoltar: Homeworld Y1 B2 G3

3) Personman: Build G1 Personman

4) zoltar: Build G1 Zoltar

5) Personman: Discover G1 Personman Y2 Rasque

6) zoltar: Trade G1 R1 Zoltar

7) Personman: Build G1 Personman

8) zoltar: Build R1 Zoltar

9) Personman: Trade G1 B1 Personman

10) zoltar: Trade R1 Y1 Zoltar

11) Personman: Build G1 Personman

12) zoltar: Build Y1 Zoltar

13) Personman: Build B1 Personman

14) zoltar: Discover Y1 Zoltar G3 Greenbelt

15) Personman: Move B1 Personman Rasque

16) zoltar: Build Y2 Greenbelt

17) Personman: Build B2 Personman

18) zoltar: Build Y2 Greenbelt

19) Personman: Trade B2 R2 Personman

20) zoltar: Move Y2 Greenbelt Rasque

21) Personman: Discover B1 Rasque Y3 Celric

22) zoltar: Build Y3 Zoltar

23) Personman: Build B2 Personman

24) zoltar: Trade Y3 B3 Zoltar

25) Personman: Move G1 Rasque Celric

26) zoltar: Move B3 Zoltar Greenbelt

27) Personman: Build B2 Celric

28) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build B3 Greenbelt
Build B3 Greenbelt

29) Personman: Discover B2 Personman G2 Pazodrite

30) zoltar: Move B3 Greenbelt Pazodrite
	zoltar: Blue Fleet: your mission -- proceed to Personman homeworld for Supernova Party!  Whewww Whoooo!

31) Personman: Move B1 Personman Rasque
	zoltar: An excellent move, removing the threat! 

32) zoltar: Sacrifice R1 Zoltar
Attack B2 Pazodrite
	zoltar: Zee Zoltarian fleet wheel confront zee rebel blue sheep!


33) Personman: Move B1 Rasque Celric
	zoltar: An unexpected aggressive move, PersonMan!


34) zoltar: Trade B3 R3 Pazodrite

35) Personman: Move B1 Celric Zoltar

36) zoltar: Sacrifice Y1 Zoltar
Move B2 Pazodrite Celric

37) Personman: Sacrifice G1 Celric
Build B3 Zoltar
	zoltar: Red Alert!  Red Alert!  
	zoltar: Mistake on Zoltar'z part!  Had to move my b2 into Celric and blow up blue fleet.  Now must think of something clever, or homeworld star go boom-boom!

38) zoltar: Sacrifice R3 Pazodrite
Attack B3 Zoltar
Attack B2 Celric
Attack B1 Celric

39) Personman: Move B1 Zoltar Celric
Catastrophe Celric B

40) zoltar: Trade B3 R3 Greenbelt
	Personman: Woah. That was scary. I made my move based on the board before you undid yours, so when I made it, my b3 appeared to have eaten your y1... I think I might do the same thing again but I wanted to go back and study the new board to make sure.
	zoltar: Better late than never.

41) Personman: Discover G1 Personman B2 Shroumb

42) zoltar: Build B1 Greenbelt
	Personman: Oops. I screwed up. I thought there was still a blue piece left for me to make. I needed to move a blue piece in instead of making the 3, I think.

43) Personman: Build G1 Shroumb

44) zoltar: Build Y1 Greenbelt
	zoltar: Celric is Mine!  Awl Mine!!!  Whew Who!
	zoltar: Well it was mine for a moment...

45) Personman: Trade G1 R1 Shroumb

46) zoltar: Trade B3 G3 Zoltar
	zoltar: Zee Zoltarian Empire hath survived zee brutal assault uv zee blue alienz and ease stronger zan ever!  Yay!

47) Personman: Build G1 Shroumb

48) zoltar: Build Y3 Zoltar

49) Personman: Build G1 Personman

50) zoltar: Build G2 Zoltar

51) Personman: Build G2 Shroumb

52) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build R1 Greenbelt

53) Personman: Build R1 Personman

54) zoltar: Move R1 Greenbelt Rasque
	zoltar: Zee Yellow Fleet ease complete!  Now onto Faze Too uv my sea knee star plan!
	zoltar: (Looks like your mistake with the blue pieces was very costly, now giving me a lock on Yellow tech.)

55) Personman: Discover R2 Personman B2 Lova

56) zoltar: Move B3 Greenbelt Rasque

57) Personman: Build R2 Personman

58) zoltar: Sacrifice G3 Zoltar
Build R2 Greenbelt
Build R3 Greenbelt
Build R3 Rasque

59) Personman: Move R2 Personman Rasque

60) zoltar: Sacrifice R1 Rasque
Attack R2 Rasque

61) Personman: Build R1 Personman

62) zoltar: Build G3 Zoltar

63) Personman: Move R1 Personman Rasque

64) zoltar: Sacrifice R2 Rasque
Attack R1 Rasque
Pass
	zoltar: Zee Red and Yellow Fleetz are now complete.  All sheepz commence final assault of Personman Homeworld! Engage!

65) Personman: Build R2 Personman

66) zoltar: Sacrifice G3 Zoltar
Build B1 Rasque
Build B3 Rasque
Build B3 Greenbelt
	zoltar: Warning! Warning! Danger Will Robinson! Enemy suicide jihadist has breached the perimeter and is threatening zee Red Fleet!  Evasive Action!

67) Personman: Build G3 Personman
	zoltar: Zee threat haz bean newtralized -- proceed with zee invasion!
	zoltar: Rezizztanz ease few tile: ewe wheel be assimilated!

68) zoltar: Sacrifice Y3 Zoltar
Move G2 Zoltar Greenbelt
Move G2 Greenbelt Rasque
Move G2 Rasque Personman
Catastrophe Personman G

69) Personman: Trade R2 G2 Personman

70) zoltar: Sacrifice Y2 Greenbelt
Move B3 Rasque Personman
Move R3 Rasque Personman

71) Personman: Sacrifice G2 Shroumb
Build G1 Personman
Build G2 Personman
	zoltar: Awl sheepz rezoom attack on Personman Homeworld! Engage!

72) zoltar: Trade B3 G3 Personman
Catastrophe Personman G

73) Personman: Trade R1 G1 Personman
	zoltar: Blue squadron reporting in for final assault on Personman homeworld!  Awl sheepz, engage!

74) zoltar: Attack G1 Personman

	zoltar: Thanx for zee game, Personman!  Let's play again sometime.  I'm expanding out to new games (trying Pikeman and Zendo now, and want to try others, such as Martian Chess), so if you have any favorites feel free to challenge me.


3892)
Started: 2006.8.12, Ended: 2006.8.19
Participants: Laurie_Menke (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R2 B3 G3

2) Laurie_Menke: Homeworld Y1 B3 G3
	zoltar: Greetingz, Earthling!  Nice to see you again.  I usually take the two smaller stars and start with yellow and blue, but now that I've played a lot, I'll try a new opening, as I notice that good players often start with a red star for defence.  Btw, how is your sick friend doing?
	Laurie_Menke: Greetings, zoltar.  This Earthling wishes you all that is good and for peace between us.  ;o)

My friend is doing much better...thanks for asking!  This was her third cancer surgery and her odds were pretty grim, but it looks like she beat the odds again.  Woo-hoo!  She'll have to do another round of chemo, but nothing had spread, so she should fully recover.  :o)

3) zoltar: Build G1 Zoltar

4) Laurie_Menke: Build G1 Laurie_menke

5) zoltar: Trade G1 Y1 Zoltar

6) Laurie_Menke: Discover G1 Laurie_menke G2 Forest
	zoltar: Zoltar is glad to hear that your friend is recovering.
	Laurie_Menke: Thanks.  :o)

7) zoltar: Build Y1 Zoltar

8) Laurie_Menke: Build G1 Laurie_menke
	zoltar: A green ship to a green world?  A strange, redundant move, but perhaps the Earthling is up to something...
	Laurie_Menke: Perhaps....   ;o)

9) zoltar: Build Y2 Zoltar

10) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G1 Forest
Build G2 Laurie_menke
Build G2 Laurie_menke

11) zoltar: Build G3 Zoltar

12) Laurie_Menke: Trade G2 Y2 Laurie_menke

13) zoltar: Discover G3 Zoltar B1 Blueberry

14) Laurie_Menke: Sacrifice Y2 Laurie_menke
Discover G1 Forest B1 Ocean
Move G1 Forest Ocean

15) zoltar: Sacrifice Y2 Zoltar
Discover G3 Blueberry Y2 Wormhole
Move G3 Wormhole Laurie_menke

16) Laurie_Menke: Sacrifice G2 Laurie_menke
Build G2 Laurie_menke
Build G2 Ocean
	zoltar: It looks like the strange moves turned out to be fatal!
	zoltar: Since you sacrificed your defending G3 ship, rendering your homeworld defenseless, there seems to be no reason not to immediately invade with my big ship.  Resistance is futile!
	Laurie_Menke: Yeah, my plan was definitely flawed.  :o(  Oh, well...live and learn.  But I don't think you have any way to attack me yet, do you?

17) zoltar: Sacrifice G3 Zoltar
Build G2 Laurie_menke
Build G3 Laurie_menke
Build G3 Laurie_menke
Catastrophe Laurie_menke G
	zoltar: Yes.  If you would have traded one of your green ships, I would trade my g3 in the Zoltar homeworld for an R3, then sac it next turn and capture all your pieces. However, in this case, I only needed to build a green ship in your homeworld to create a catastraphe, which leaves your homeworld empty, ending the game.
	Laurie_Menke: Alas...you're right again.  :o(  I seem to be getting worse at this game the more I play instead of better.  :o(  Oh, well...it's still a very enjoyable game.  Thanks for the fun, and congrats!



4011)
Started: 2006.8.13, Ended: 2006.9.18
Participants: zoltar (S), mtwomey (N)
Winner: zoltar

1) mtwomey: Homeworld R3 B2 G3

2) zoltar: Homeworld Y1 B2 G3

3) mtwomey: Build G1 Mtwomey

4) zoltar: Build G1 Zoltar

5) mtwomey: Trade G1 Y1 Mtwomey

6) zoltar: Build G1 Zoltar

7) mtwomey: Build G1 Mtwomey

8) zoltar: Trade G1 Y1 Zoltar

9) mtwomey: Discover G1 Mtwomey B1 Beakstar

10) zoltar: Build Y2 Zoltar

11) mtwomey: Build Y2 Mtwomey

12) zoltar: Discover Y2 Zoltar G3 Greenbelt

13) mtwomey: Build G1 Beakstar

14) zoltar: Trade G1 R1 Zoltar

15) mtwomey: Trade G1 R1 Beakstar

16) zoltar: Trade Y1 B1 Zoltar

17) mtwomey: Move Y2 Mtwomey Beakstar

18) zoltar: Build B1 Zoltar

19) mtwomey: Trade Y2 B2 Beakstar

20) zoltar: Trade B1 G1 Zoltar

21) mtwomey: Build Y1 Mtwomey

22) zoltar: Build Y2 Greenbelt

23) mtwomey: Build Y2 Mtwomey

24) zoltar: Discover Y2 Greenbelt G2 Greenwich

25) mtwomey: Trade Y1 B1 Mtwomey

26) zoltar: Move B1 Zoltar Greenbelt

27) mtwomey: Trade B1 G1 Mtwomey

28) zoltar: Trade G1 B1 Zoltar

29) mtwomey: Sacrifice Y1 Mtwomey
Discover B2 Beakstar G2 Jellybeast

30) zoltar: Build B3 Greenbelt

31) mtwomey: Build B3 Jellybeast

32) zoltar: Trade B3 R3 Greenbelt

33) mtwomey: Build B3 Jellybeast
	mtwomey: I'll have to pick this up tomorrow - have to get up for work :-)

34) zoltar: Move B1 Greenbelt Jellybeast
Catastrophe Jellybeast B

35) mtwomey: Trade R1 Y1 Beakstar

36) zoltar: Move R3 Greenbelt Beakstar
	zoltar: No choice there but to send a jihadist to disrupt zee blue fleet!

37) mtwomey: Trade G3 R3 Mtwomey
	mtwomey: Yes - well done. I should have seen that :-)

38) zoltar: Attack Y1 Beakstar
	zoltar: Red Alert!  The puny Earthling vessels are no match for Zoltar's Big Red Battle Cruiser!  All batteries lock onto alien vessels and fire at will!  Engage!

39) mtwomey: Sacrifice G1 Beakstar
Build Y1 Mtwomey

40) zoltar: Build G1 Zoltar
	zoltar: Rezizztanzz ease few tile: ewe wheel bee assimilated!
	zoltar: Yellow alien vezzel haz bean subdued: Awl batteries open fire on puny green vezzel. Engage!

41) mtwomey: Discover Y1 Mtwomey B1 Kalmar
	zoltar: zee alien vezzel haz ezcaped...

42) zoltar: Sacrifice G3 Zoltar
Build Y3 Beakstar
Build Y3 Greenwich
Build Y3 Greenbelt

43) mtwomey: Discover Y2 Mtwomey G1 Canfield

44) zoltar: Build B2 Zoltar
	zoltar: Zoltar'z mighty Yellow Fleet rules zee Galaxy!!!

45) mtwomey: Build G2 Mtwomey

46) zoltar: Move B2 Zoltar Greenbelt

47) mtwomey: Move Y1 Kalmar Mtwomey

48) zoltar: Build B1 Greenbelt



4043)
Variants: "Unrated"
Started: 2006.8.15, Ended: 2006.9.25
Participants: Keith (S), gluco (N)
Winner: Keith

1) gluco: Homeworld B1 Y2 G3

2) Keith: Homeworld G3 B3 Y3 *

3) gluco: Build G1 Gluco

4) Keith: Build Y1 Keith

5) gluco: Trade G1 R1 Gluco

6) Keith: Trade Y1 R1 Keith

7) gluco: Build G1 Gluco

8) Keith: Build Y1 Keith

9) gluco: Trade G1 Y1 Gluco

10) Keith: Trade Y1 G1 Keith

11) gluco: Build G1 Gluco

12) Keith: Build Y1 Keith

13) gluco: Build R1 Gluco

14) Keith: Build R2 Keith

15) gluco: Discover Y1 Gluco G3 Erty

16) Keith: Discover R2 Keith Y2 Ventura

17) gluco: Trade R1 Y1 Gluco

18) Keith: Trade Y1 B1 Keith
	Keith: Hmmm... I must be losing it.  I don't remember naming a system Ventura

19) gluco: Build Y1 Erty
	gluco: Seemed like a good move at the time...

20) Keith: Move R2 Ventura Erty

21) gluco: Discover Y1 Erty Y2 Iop

22) Keith: Sacrifice R1 Keith
Attack Y1 Erty

23) gluco: Trade G3 R3 Gluco

24) Keith: Build Y2 Erty
	gluco: Sorry for the delay.  Next week or so might be awkward.
	Keith: Thank you for letting me know.  Make moves if you can and do not worry if you can't.

25) gluco: Build G1 Gluco
	gluco: Yeah, I will be out of email touch until Saturday.  Well see if I get timed-out by superduper.  Looks like you're winning anyway!

26) Keith: Build Y3 Keith
	Keith: Superduper will give notice if you time out but nothing will happen to terminate the game unless I take affirmative action to do so and I won't.

27) gluco: Move R3 Gluco Erty
	gluco: OK, Im back.  Thanks for your patience.

28) Keith: Sacrifice Y3 Keith
Move Y1 Erty Gluco
Move Y2 Erty Gluco
Move R2 Erty Gluco
Catastrophe Gluco Yellow
	Keith: Your welcome.  Moving your R3 out.  Risky.  Since I have an extra 3 pointer lets try this.

29) gluco: Sacrifice Y1 Iop
Move R3 Erty Gluco
	gluco: Nice.  I was trying to accomplish the same thing.

30) Keith: Sacrifice G1 Keith
Build R1 Gluco
Catastrophe Gluco Red

31) gluco: Trade G1 Y1 Gluco
	gluco: Kewl. You made a catastrphe with both our ships

32) Keith: Move Y3 Keith Gluco
	Keith: Better than using just my ships.  Better for me anyway.

33) gluco: Build G1 Gluco

34) Keith: Trade Y3 R3 Gluco

35) gluco: Discover Y1 Gluco G2 Iopy

36) Keith: Attack G1 Gluco
	gluco: Yikes!

37) gluco: Move Y1 Iopy Keith
	Keith: Yikes indeed.  When you other home system went boom we ended up one move apart. If you had had a red you could have threatened my little b2 or to make a red catastrophe in your home system.  That is why I had to catastrophe red first.

38) Keith: Attack G1 Gluco

	gluco: Congrats!  Not much left to do.  I don't believe I'm allowed to trade my y1  for a red in your homeworld.
	Keith: Actually you can since the world there has blue....
	Keith: You just don't have enough time.
	Keith: Thank you for the game.  
	gluco: Thank you!  Will be travelling again, but returning in October.  Maybe we can do another game then.  
	Keith: That would be welcome.


4053)
Started: 2006.8.18, Ended: 2006.8.28
Participants: Keith (S), antihero (N)
Winner: Keith

1) antihero: Homeworld G3 B2 Y3
	Keith: Hello antihero.  I have been peeking in on your Cannon game against Dralius.  Have you played Homeworlds before?

2) Keith: Homeworld B1 Y2 G3

3) antihero: Build Y1 Antihero

4) Keith: Build G1 Keith
	antihero: I have played a few times in real life. I am still learning for sure.
	antihero: You're the cannon expert, right?
	Keith: I am probably considered a Cannon expert.  Though part of my secret is simply looking farther ahead than my opponent.  Dralius is a good teacher.  

5) antihero: Trade Y1 G1 Antihero

6) Keith: Trade G1 Y1 Keith

7) antihero: Discover G1 Antihero Y1 Next_one_over

8) Keith: Discover Y1 Keith G3 Midworld

9) antihero: Build G1 Next_one_over

10) Keith: Build G1 Keith

11) antihero: Build G2 Next_one_over

12) Keith: Move G1 Keith Midworld

13) antihero: Move G2 Next_one_over Antihero

14) Keith: Build G2 Keith

15) antihero: Build G2 Antihero

16) Keith: Sacrifice G3 Keith
Build G3 Keith
Build Y1 Midworld
Build Y2 Midworld

17) antihero: Trade G2 R2 Antihero

18) Keith: Move Y1 Midworld Next_one_over
	antihero: whoops, sneaky y2 hiding behind the system label. :)

19) antihero: Discover G1 Next_one_over B3 Big_star
	antihero: alright to bed with me. see you tomorrow.
	Keith: I wish this were an unrated game so I could more easily point things out without risking my position.  You can learn in an rated game but usually it is the hard way.  I created that y2 so I could move a g1 into your homeworld and create a green catastrophe.  I am okay with your taking your move back.
	antihero: I think I already did before you wrote that? I think my new move is better? And I don't get any more undos. So let's see what happens.
	Keith: You took back your move while I was commenting.  So it works out well.  That is the better move.

20) Keith: Trade G2 R2 Keith

21) antihero: Build G2 Big_star

22) Keith: Build G2 Keith
	antihero: damn, you've played homeworlds before and saw through my feeble ploy. :)

23) antihero: Sacrifice Y3 Antihero
Move G2 Big_star Keith
Move G1 Big_star Keith
Pass
Catastrophe Keith Green
	Keith: Well I had been pushing it by breking two rules of thumb.  1) if your opponent has a red you should too.  2) Don't have just one ship type at your homeoworld.

That and I could not get my own ploys into action before you got yours.

24) Keith: Move G1 Midworld Keith
	antihero: hmmm tough decision, sort of.

25) antihero: Trade G2 Y2 Antihero
	Keith: I thought so too.  An expensive move for both of us.
	antihero: aye

26) Keith: Build Y3 Midworld

27) antihero: Build Y3 Antihero
	antihero: alright to bed with me. see you later.
	antihero: don't do anything too crazy while, I'm gone, ya hear? :)
	Keith: Tomorrow then, eventually anyway.  I have a 12 hour work shift to get through first.
	antihero: oh rough, what do you do?
	Keith: Assistant manager at a restaurant.  Which in reality means 11 hours on my feet as a fry cook in high heat and humidity with no breaks or meals and an hour of counting money and paperwork at the end of the day.

28) Keith: Sacrifice Y3 Midworld
Move Y1 Next_one_over Antihero
Move Y1 Midworld Next_one_over
Move Y1 Next_one_over Antihero
Catastrophe Antihero Yellow

29) antihero: Build R1 Antihero

30) Keith: Build R1 Keith

31) antihero: Trade R1 Y1 Antihero
	antihero: that doesn't sound like too much fun, man. Have a good day anyways, though!
	Keith: It is not any fun.  Too much time away from my family.  On the positive side I do make as much I did when I was an attorney.

32) Keith: Trade R1 B1 Keith

33) antihero: Build R1 Antihero

34) Keith: Build R1 Keith
	antihero: whoops, that _is_ actually what I want to do.

35) antihero: Move R1 Antihero Next_one_over
	Keith: Okay, I am heading out to work.  Back in about 12.5 hours.

36) Keith: Move Y2 Midworld Next_one_over

37) antihero: Discover R1 Next_one_over Y3 Sun

38) Keith: Sacrifice R1 Keith
Attack G1 Next_one_over

39) antihero: Build R1 Antihero

40) Keith: Build B1 Keith

41) antihero: Trade R1 G1 Antihero

42) Keith: Build G2 Next_one_over

43) antihero: Move G1 Antihero Next_one_over

44) Keith: Build G2 Keith
	antihero: I'm learning that I'm not great at homeworlds. I think I see moves easier in RL, too, but I have a lot to learn.
	Keith: I find that I play any game much better when I can think ahead by moving pieces around the board.

45) antihero: Build G2 Next_one_over

46) Keith: Build G3 Keith
Catastrophe Next_one_over Green

47) antihero: Build R1 Antihero

48) Keith: Move G3 Keith Sun

49) antihero: Build Y1 Antihero
	antihero: wow that was about the dumbest thing i could have done...

50) Keith: Sacrifice Y2 Next_one_over
Discover G3 Sun Y1 Temp
Move G3 Temp Antihero
	Keith: I did expect, given the way we have been doing away with both side's ships that you would have triggered the catastrophe first.
	Keith: I felt kind of bad taking advantage of it.  In an unrated game I would have pointed it out so you could take back your move.

51) antihero: Trade Y1 G1 Antihero
	antihero: well, let's play some unrated after this so I can get better.
	antihero: if you are willing, of course

52) Keith: Sacrifice R2 Keith
Attack R2 Antihero
Attack R1 Antihero
	Keith: Very willing.  I would rather focus on a mutually enjoyable game rather than rating points.
	Keith: I am a bit weak in the end game as Zoltar and Eugman have discovered.

53) antihero: Build G1 Antihero
Catastrophe Antihero Green
	antihero: twice in a row now I have beaten zoltar out of the gate and then had him come back and made some stupid mistakes and down I go.
	antihero: i can drag this out :)

54) Keith: Attack Y1 Antihero
	Keith: Go ahead and drag. 

I took out one of Zoltar's home stars, had more ships overall, had more three pointers, and after a dozen turns of trying to wear him down I left only one ship color in my homeworld as I moved in for the kill and boom... lost to Zoltar when I should have won.

	Keith: A very unusual game.  Lets try another one.


4061)
Started: 2006.8.18, Ended: 2006.10.2
Participants: antihero (S), JIMBO (N)
Winner: antihero

1) JIMBO: Homeworld B2 G3 Y3

2) antihero: Homeworld G1 B3 Y3



4065)
Variants: "Unrated"
Started: 2006.8.19, Ended: 2006.8.21
Participants: eugman (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 G2 B3

2) eugman: Homeworld B2 G1 Y3

3) zoltar: Build B1 Zoltar
	eugman: I've never played before so feel free to point out any blantantly bad moves.
	zoltar: Ok. Your start was excellent: the two small stars is considered the strongest opening move.  I usually start with that one, but now that I've been playing for a couple of months I'm experimenting with new openings, such as this one with a red star and a blue ship, which I've never played before.

4) eugman: Build Y1 Eugman
	eugman: Experiment away. It might work as a bit of a handicap. The hints I've been able to find so far think starting with red is bad since you don't use it for a while.

Then again it could provide for a constant defense so what do I know.


5) zoltar: Trade B1 Y1 Zoltar

6) eugman: Trade Y1 B1 Eugman
	zoltar: Yes, usually gby should be your starting colors, and red gives the other player an opening advantage, but it is strong for defense later in the game.

7) zoltar: Build B1 Zoltar

8) eugman: Build Y1 Eugman

9) zoltar: Trade B1 G1 Zoltar

10) eugman: Build B1 Eugman

11) zoltar: Build Y1 Zoltar

12) eugman: Build Y2 Eugman

13) zoltar: Discover Y1 Zoltar G1 Greenbelt

14) eugman: Trade Y1 R1 Eugman
	zoltar: Remember not to build a 4th ship of any one color in the same system or they will blow up.

15) zoltar: Build G2 Zoltar

16) eugman: Trade Y2 G2 Eugman

17) zoltar: Trade G1 R1 Zoltar

18) eugman: Discover B1 Eugman G3 Flapjack
	eugman: Hmm, building anything new would give you an advantage, correct?

19) zoltar: Discover G2 Zoltar Y1 Yellowstone
	zoltar: Yes and No. For example, if build red, so do I but you can build red again, and I have to move a red ship out to build another one, so it's even.  You can always move a piece to a new system though, in a situation like this, as that is always a safe option.

20) eugman: Build Y2 Eugman

21) zoltar: Build Y2 Greenbelt

22) eugman: Move Y2 Eugman Flapjack

23) zoltar: Discover Y1 Greenbelt G3 Greendale

24) eugman: Trade Y2 R2 Flapjack

25) zoltar: Build Y2 Zoltar
	eugman: The planet of flapjack shall crush your obviously named planets!

26) eugman: Build Y2 Eugman

27) zoltar:
Build Y3 Greenbelt

28) eugman: Move Y2 Eugman Flapjack
	eugman: I really want to make that last yellow but I think you could force a catarophe if you wanted. Right?
	eugman: Sorry for spelling errors. Happens if I type too fast.
	zoltar: Yes, I'd move my y1 into your homeworld and BOOM!

29) zoltar: Build Y3 Greendale

30) eugman: Build B1 Flapjack

31) zoltar: Build B2 Zoltar
	zoltar: You may want to undo that -- I'll wait a few minutes, as I can sacrifice my R1 in my homeworld and take your R2 in Yellowstone, just as if my G2 had been an R2.  You lose the piece for nothing.
	eugman: Hmm you are right. I sometimes forget about some of the more indirect stuff you can do.

32) eugman: Build R1 Eugman
	zoltar: Btw, that's why you always need to get a red ship once your opponent has one: had I no r1 to sacrifice, your R2 could chase me around and capture pieces at will.

33) zoltar: Move R1 Zoltar Yellowstone

34) eugman: Move B1 Flapjack Greenbelt

35) zoltar: Build R2 Yellowstone

36) eugman: Move B1 Flapjack Greenbelt

37) zoltar: Sacrifice R2 Yellowstone
Attack B1 Greenbelt
Attack B1 Greenbelt
	zoltar: Of course, you can't capture a bigger ship than your own, only one of equal or smaller size, even with a sacrifice.

38) eugman: Build R2 Flapjack
	zoltar: I don't know if your blue move will work, but it's definitely the type of move to look for; if I capture it, then you could make your red move.
	eugman: No but I can do something else. Then  again you are too smart to fall for such a simple trap.
	zoltar: This second blue move looks more dubious, but it does make threats...

39) zoltar: Trade Y2 R2 Greenbelt
	eugman: Well unfortunately I've got some stuff to take care of so my losing will have to wait till monday.
	zoltar: I'd expected you to grow a b2 in flapjack instead, and then if I captured the b1 move the other b1 in.
	zoltar: Ok see you then

40) eugman: Move B1 Eugman Flapjack

41) zoltar: Move B1 Greenbelt Greendale

42) eugman: Move R1 Eugman Greendale
	eugman: Was that an accident or did you realize some grave error you failed to notice?
	zoltar: It was an accident: I had decided to trade the y2 for b2 before, then when I looked at it now I thought about moving a blue ship out, and as soon as I did, I remembered my original plan -- no grave error or anything like that.
	eugman: Hmmm should we contine? It's very clear that I'm trapped. I can't really ault any of your areas since my only three has to stay back and guard. I could make a new system but with the limited colors in the new system I'd still be in a very weak position. Do you want this to be carried out to it's end?
	eugman: Hmmm Looks like I'm done for tonight. Basically I'm asking if there is much left for me to learn by finishing a doomed endgame.
	zoltar: Up to you.  I have the advantage, but I haven't won yet.  You may want to play it out.  Whenever you think there is no hope, you can resign and we can start another if you'd like.
	Keith: Hello eugman and zoltar,

Eugman - I was going to take up your learning request if a day went by without someone else taking it up.  Zoltar has quickly risen to become one of the strongest Homeworlds players.  Given his material advantage there is probably not much left of this game as a competition.  As a learning exercise the game is not over.  Though I am not going to point out my ideas unless it is okay with Zoltar.   --Keith
	zoltar: That's okay with me, and yes, I would play on as an exercise.
	eugman: Ok, I'll keep playing then. I'll figure out my next move in the morning.

43) zoltar: Sacrifice G2 Yellowstone
Build R3 Yellowstone
Build R3 Greenbelt
	eugman: or I could do that. I'll see how that works out.

44) eugman: Sacrifice R2 Flapjack
Attack Y1N Greendale
Attack B1N Greendale
	Keith: I think eugman's assessment is right that with only one 3-pointer there is not much opportunity for offense.  I believe there is a way for eugman to secure an r3 in two moves and possibly two r3s in four moves. Assuming Zoltar isn't able to intiate a game ending attack in the next move or so.

What happens if eugman moves an r2 from flapjack to greenbelt?  It seems to me that zoltar must attack the r2 with his r2 in greenbelt to avoid having his r2 attacked and converted.  Then eugman can build an r3 in flapjack.  Zoltar can create a red catastrophie in flapjack by sacrificing the y2 in zoltar and moving the two r2's from greenbelt to flapjack.  Eugman loses two ships, Zoltar loses three and is down to one red ship.

Alternatively if eugman moves an r1 from eugman to  greendale then zoltar must sacrifice a red ship to attack it or face attacks on the b1 or y1 in greendale.  Whether Zoltar attacks the r1 in greendale or not eugman can now build an r3 in eugman.

Combined these two sequences might leave Zoltar with no red ships.  I might be wrong. I am not as strong a player as Zoltar.

	zoltar: Actually, if eugman moves an R2 to greenbelt, I would simply sacrifice my own R2 in greenbelt and capture the R2 and pass, rendering the situation the same as now, except for one of eugman's R2's being in the stash instead of in flapjack.
	Keith: One thing eugman should keep in mind is that zoltar's red star in his home system can only attack one ship per turn.  If eugman can move in enough ships in one turn into zoltars homeworld so that one survives then that ship can grow more of its kind and create a catastrophe in Zoltar's homeworld.  The best color to do this with is red, the one color area eugman as an advantage in.  For example if eugman moves that r2 from flapjack to green belt and Zoltar does not attack it then eugman will attack and get two r2s in greenbelt.  Sacrifice a y2 and move both r2s to zoltar's home system.  The red star can only convert one r2, the other grows an r3 and boom, red catastrophe.

Sorry to be so wordy. 

45) zoltar: Sacrifice R2 Greenbelt
Attack R1 Greendale
Attack B1 Greendale

46) eugman: Sacrifice B1 Flapjack
Trade Y1 G1 Greendale
	eugman: Greendale Shall crumble and fall!

47) zoltar: Discover Y3 Greendale B1 Greenhills
	eugman: Oh wait, comments. I should have read those.
	eugman: Oh and wordy isn't too much of a problem. As long as you are clear and remeber to avoid the giant paragraph of doom.

	eugman: Yes, please make a large and entirely ignore my ship in your system.

48) eugman: Build Y1 Flapjack
	zoltar: Not a bad move, btw -- made me think.  Ok, I sacrificed my only green piece (not something I like to do) to get maximum firepower, so you can only target one of my three bases at one time.  Your puny ship will be dealt with later. [Insert Evil Overlord Laugh here]
	eugman: Yes I thought it was rather clever. You either have to ignore my tiny ship in your system or basically do the equivalent of moving one of your small reds over there and make it harder to get three sized reds.

Now I just need to decide if I should capture something or cower in fear.

49) zoltar: Trade B3 G3 Zoltar

50) eugman: Build G2 Greendale
	eugman: I think that was a better move since you can't rebuild that r2 right now without risking a catastrophe and you can't just sace a red to get total control of greendale.

Let me know if I make some error in my thinking.
	eugman: I mean you can't sacrifice a medium at least.
	zoltar: No, it was reasonable.  The other choice was to sac your y2 and send your r1 and one of your  r2's into either greenbelt or yellowstone and destroy my reds there.  That's why I sacked and built an R3 in each one, as either sac and you are vulnerable with me still having an R3 left.  Now I probably have to sac an R2 or something to deal with this latest incursion.

51) zoltar: Build B2 Greendale
	eugman: I'm really not sure if what I'm about to do is a good idea but it's worth a shot. Please let me know if it has any merit.
	eugman: Oh wait, nvm I don't have a red in greendale.

52) eugman: Sacrifice G2 Greendale
Build Y2 Eugman
Build R2 Flapjack
	zoltar: Yes, I sacked my R2 to take your R1 in greendale.  I sacked the R2 rather than the R1 in yellowstone because I figured it would be useful to have the blue, and I could get both in one turn.  Of course, you can build reds again, but now I can also build a red in greendale.
	zoltar: Now that is downright sneaky, trying to blow up the nice town of greendale (and I haven't even built greenhills yet)! Ok, how can I save my green star -- I'll have to think about this.

53) zoltar: Attack G1 Greendale
	zoltar: 
	zoltar: Nope, that won't work either.  You've made a good move.
	eugman: How unusual.

54) eugman: Build R2 Eugman
	zoltar: Ok, we're heading for the hills.
	eugman: Hmm, you took that small blue I wanted. I'm going to have to think about this a little bit. Also I see no green on your not-obviously-named new colony.

55) zoltar: Sacrifice G3 Zoltar
Build B3 Zoltar
Build B3 Greenbelt
Build B3 Greenbelt
	zoltar: Well, it was going to be green, but I figured it was a better move to take that blue you wanted; and now I have the three "garden city" towns built by FDR in the 30's (I live in Greenbelt).  Google all three of them together to read the cool story.

56) eugman: Sacrifice Y2 Flapjack
Move R2 Flapjack Greenhills
Move R2 Flapjack Greenhills
	eugman: Well that ruins my plan. I thought you were going to change the yellow to green. Hmmm,

57) zoltar: Build Y2 Greenbelt
	eugman: I thought greendale was connected to your home and I could force you to sacrifice your three. Now I need to ponder.
	eugman: Heck why not.

58) eugman: Move G2 Eugman Flapjack

59) zoltar: Move B3 Greenbelt Flapjack
	zoltar: oops, mistyped that

60) eugman: Move G2 Flapjack Greenhills

61) zoltar: Sacrifice R3 Yellowstone
Attack R2 Greenhills
Attack R2 Greenhills
Attack G2 Greenhills
	eugman: Run away!!!!!
	Keith: Wow.  The game did go on... and on.  I am not sure if that had anything to do with my ideas.  Eugman, do you feel like your learning anything (since that was your goal)?  Keith

62) eugman: Trade R2 G2 Eugman
	zoltar: Eugman has come up with some very good ideas on his own and has really made me think, though I still have maintained a material lead.
	eugman: Yeah, I even got in a few clever moves. The whole game was annoying though because for most of it I felt like my back was up against the wall.
	eugman: Zoltars, post wasn't there when I was typing this. Ok keith I'm ready to magically defeat zoltar. Quick ! Your insightful move that will let me win in 5 turns is needed.

63) zoltar: Build G3 Greenhills

64) eugman: Build R2 Eugman
	zoltar: Blue squadron reporting for duty...
	eugman: Hat I'd give for a blue.

Also, is there a way to look back through the comments?
	eugman: You know zoltar, it's clear I'm going to annilate you. You should clearly resign now before it's too late. 

65) zoltar: Build R3 Greenbelt

66) eugman: Pass
	zoltar: Well, I can always use another yellow ship
	eugman: Hmmm, it won't let me send my two ships to your place and immediately after cause a catastrophe.
	eugman: oh wait.....
	eugman: Ok, now I just feel dumb.

67) zoltar: Sacrifice Y3 Greenbelt
Move G2 Greenhills Greendale
Move G2 Greendale Eugman
Move G1 Greendale Eugman
Catastrophe Eugman G
	eugman: Hey, you should um... move a red back into your base. Image the havoc that could happen if it had nothing there to protect it. Um, yeah that's it.
	zoltar: If you make this move, I can sacrifice my y1 in Zoltar (or a y2 and make another movement as well) and move my g1 from greendale to your homeworld and blow up your green ships and your green star, in which case you would be in serious trouble.  If  you want to have any chance, you need to undo this move!
	zoltar: Ironic that it's your homeworld star that you've put in danger, not mine.  Btw, with a red star, all I need is a 3-size ship of a different color in my homeworld, and no red ships.  If you moved 2 ships into my homeworld, I'd sack an R3 and capture them both.  
	eugman: Twas but a joke. If you moved back a red I could probably make your star asplode. And really I think cleverness has come to an end. Does it really matter if I endanger myself now instead of losing in 8 or so turns?

68) eugman: Sacrifice Y3 Eugman
Move Y2 Eugman Greenhills
Move R2 Eugman Greenhills
Move R1 Eugman Greenhills
Catastrophe Greenhills Red

	eugman: How often does a two player game end with no pieces?
	zoltar: Or two moves, if you consider a move to be one move by each player, like in chess.  This is an important endgame trick, even if you don't have an overwhelming advantage.  You set things up so with 2 successive yellow sacs you blow up the two homeworld stars. It's important in a close game if after you blow up one star, the opponent can move into your homeworld and threaten to win. You then blow up the other star before he can capture anything.  
	zoltar: I've lost games where I have no pieces left, but I don't know how often it happens; besides, you're going to have your y1 left, since I don't need to waste time capturing it!
	eugman: I thought I'd lose in style.
	zoltar: Good game.  I'll play again later if you wish.
	eugman: I mean how often does the stash get emptied during the endgame.
	zoltar: Oh, not that often.  Maybe about 10-20% of my games all the pieces were used at one point.


4052)
Started: 2006.8.20, Ended: 2006.11.12
Participants: JIMBO (S), tesla (W), zoltar (N), antihero (E)
Winner: antihero

1) zoltar: Homeworld Y1 B2 G3
	zoltar: h y1 b2 g3

2) antihero: Homeworld G3 B2 Y3
	zoltar: Oops, I'm using the wrong field to enter my moves.  Btw, Greetingz from Greenbelt, Milky Way!
	JIMBO: Word up from Eugene, OR

3) tesla: Homeworld B1 Y3 G3
	zoltar: ok, where's Jimbo?
	tesla: yes, where is he? Maybe he's on vacation
	antihero: I know him in RL and text messaged him this morning asking what is up. No response, yet. So hmmm... You guys wanna start another game in the meantime?
	zoltar: Sure, we can start another one as well...
	zoltar: antihero started another 4 player game and I've joined

4) zoltar: Build G1 Zoltar

5) antihero: Build Y1 Antihero

6) tesla: Build G1 Tesla

7) zoltar: Trade G1 Y1 Zoltar

8) antihero: Trade Y1 G1 Antihero

9) tesla: Trade G1 Y1 Tesla

10) zoltar: Build G1 Zoltar

11) antihero: Build Y1 Antihero

12) tesla: Build G1 Tesla

13) zoltar: Trade G1 R1 Zoltar

14) antihero: Trade Y1 R1 Antihero

15) tesla: Trade G1 R1 Tesla

16) zoltar: Build G1 Zoltar

17) antihero: Build Y1 Antihero

18) tesla: Build Y1 Tesla

19) zoltar: Discover Y1 Zoltar G3 Greenbelt

20) antihero: Discover Y1 Antihero G1 Drop

21) tesla: Trade Y1 B1 Tesla

22) zoltar: Build G1 Zoltar

23) antihero: Build R1 Antihero

24) tesla: Discover Y1 Tesla B2 Salte

25) zoltar: Trade G1 B1 Zoltar

26) antihero: Build G1 Antihero

27) tesla: Build G1 Tesla

28) zoltar: Build G2 Zoltar

29) antihero: Sacrifice Y3 Antihero
Move G1 Antihero Drop
Discover G1 Drop R3 Suicidemission
Move G1 Suicidemission Zoltar
Catastrophe Zoltar Green

30) tesla: Discover G1 Tesla Y2 Telas

31) zoltar: Trade B1 G1 Zoltar

32) antihero: Trade R1 Y1 Antihero

33) tesla: Build G1 Telas

34) zoltar: Build G2 Zoltar

35) antihero: Build G2 Antihero

36) tesla: Move G1 Telas Tesla

37) zoltar: Trade G2 Y2 Zoltar

38) antihero: Trade G2 Y2 Antihero

39) tesla: Move G1 Tesla Salte

40) zoltar: Build G2 Zoltar

41) antihero: Build Y2 Drop

42) tesla: Build G2 Telas

43) zoltar: Trade G1 B1 Zoltar

44) antihero: Discover Y2 Drop G2 Jump

45) tesla: Move B1 Tesla Telas

46) zoltar: Move B1 Zoltar Greenbelt

47) antihero: Build R1 Antihero

48) tesla: Build Y2 Salte

49) zoltar: Build Y3 Greenbelt

50) antihero: Build Y3 Jump

51) tesla: Move Y1 Salte Tesla

52) zoltar: Move Y1 Greenbelt Jump

53) antihero: Sacrifice Y2 Antihero
Discover Y3 Jump B1 Wormhole
Move Y3 Wormhole Antihero

54) tesla: Build Y2 Tesla

55) zoltar: Move Y1 Jump Tesla
Catastrophe Tesla Y

56) antihero: Move Y1 Drop Greenbelt

57) zoltar: Move Y3 Greenbelt Tesla

58) antihero: Build Y1 Greenbelt
	antihero: oh wow. bye tesla! good playing with you...
	antihero: wait what happened?
	zoltar: One of tesla's stars was destroyed; there remains one.
	zoltar: I don't know why Tesla's name is crossed out.
	antihero: weird...
	antihero: Hey Aaron, Tesla should still be in the game. His star should be in the top of the image, rather than in the middle, his name shouldn't be crossed out, etc.
	tesla: sorry, I can't to continue this game (I'm going to a new house and I won't have INERNET conexion for two or three weeks) Now I'm in a public center with INTERNET conexion.

59) zoltar: Trade Y2 R2 Zoltar
	zoltar: m y3 greenbelt tesla

60) antihero: Sacrifice R1 Antihero
Attack B1N Greenbelt

61) zoltar: Sacrifice R2 Zoltar
Attack G3W Tesla
Attack R1W Tesla

62) antihero: Build Y1 Greenbelt

63) zoltar: Build Y2 Tesla

64) antihero: Move Y1 Greenbelt Zoltar

65) zoltar: Discover Y3 Tesla B2 Death
	antihero: things are not looking good!

66) antihero: Build R1 Antihero

	zoltar: Yeah, there's no hope.  gg.

	antihero: gg.


4066)
Started: 2006.8.20, Ended: 2006.8.31
Participants: Laurie_Menke (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld G3 R2 B3

2) Laurie_Menke: Homeworld G1 B2 Y3
	Laurie_Menke: Hi, again, Zoltar.  Thanks for the invite!  :o)

3) zoltar: Build B1 Zoltar

4) Laurie_Menke: Build Y1 Laurie_menke
	zoltar: Greetingz, primitive carbon waterbag unit!

5) zoltar: Trade B1 Y1 Zoltar

6) Laurie_Menke: Build Y1 Laurie_menke

7) zoltar: Build Y2 Zoltar

8) Laurie_Menke: Trade Y1 B1 Laurie_menke

9) zoltar: Discover Y1 Zoltar G1 Greenbelt

10) Laurie_Menke: Trade Y1 G1 Laurie_menke

11) zoltar: Build Y1 Zoltar

12) Laurie_Menke: Build G2 Laurie_menke

13) zoltar: Build Y1 Greenbelt

14) Laurie_Menke: Build Y2 Laurie_menke

15) zoltar: Build Y2 Greenbelt

16) Laurie_Menke: Build Y3 Laurie_menke

17) zoltar: Sacrifice Y2 Greenbelt
Discover Y1 Greenbelt Y3 Wormhole
Move Y1 Wormhole Laurie_menke
Catastrophe Laurie_menke Y
	zoltar: oops, typed in zee wrong name
	Laurie_Menke: Wow...I never realized before that Homeworlds doesn't have an UNDO button.  :o(  What did you *mean* to do?  I'll try not to take advantage of the situation...

18) Laurie_Menke: Trade G1 Y1 Laurie_menke
	zoltar: What do you mean? Homeworlds does have an UNDO button, but you can only change your move once.

19) zoltar: Build Y2 Greenbelt
	zoltar: Zoltar cannot let you hog up zee yellow technology!
	Laurie_Menke: Oh!  I see!  I didn't read down far enough to see that you had used the UNDO...duh...I guess I'm still a little sluggish from my cold.  :o(
	Laurie_Menke: I was afraid you'd do that.  :o(

20) Laurie_Menke: Sacrifice G2 Laurie_menke
Build Y2 Laurie_menke
Build Y3 Laurie_menke

21) zoltar: Sacrifice Y2 Greenbelt
Discover Y1 Greenbelt Y3 Wormhole
Move Y1 Wormhole Laurie_menke
Catastrophe Laurie_menke Y
	zoltar: Then you shouldn't have built the 3rd Yellow ship, and instead could've moved one of your yellow ships to a new star! Now you are in big trouble, as if I can build a 3-sized ship, get it to your homeworld, and make a red ship before you can DOOMED.  So the race is on...
	Laurie_Menke: Not a problem, oh violent alien friend.  ;o)

22) Laurie_Menke: Build B1 Laurie_menke
	Laurie_Menke: Of course, you're probably about to repeat the catastrophe, but it'll cost you, too.  ;o)
	zoltar: Don't you ever learn? <sigh> Primitive hyu-maahn beanz!
	Laurie_Menke: And yes, I know I'm doomed...but we Earthlings like to have as much fun along the way as possible.  ;o)

23) zoltar: Build B1 Zoltar

24) Laurie_Menke: Trade B1 Y1 Laurie_menke
	zoltar: Looks like yer having a BLAST! [Insert Evil Overlord Laughter here]

25) zoltar: Trade B1 G1 Zoltar
	zoltar: Btw, I think you'd really enjoy a game with 'eugman'.  He just played his first two games (he lost, and the second very badly), and told me he's looking for players he has a chance with.  His third game he's playing much better, and I think he'd give you a run for your money, though you'd have the advantage having more experience.  You ought to challenge him to a Homeworlds game.  You can look at our game in progress as well.
	Laurie_Menke: LOL...I *think* I'll take that as a compliment.  ;o)  And thanks for the tip...I'll challenge him right now.  :o)

26) Laurie_Menke: Discover Y1 Laurie_menke G3 Jolly
	zoltar: 

27) zoltar: Discover Y1 Zoltar G1 Kermit
	zoltar: OK, but don't build unstable systems because he's learned how to sac pieces and blow things up... heh heh 

28) Laurie_Menke: Build B1 Laurie_menke
	Laurie_Menke: I wonder who taught him that?  ;o)

OK, I'm off to bed...see you tomorrow.  :o)

29) zoltar: Build G2 Zoltar

30) Laurie_Menke: Build Y1 Jolly

31) zoltar: Move B3 Zoltar Kermit

32) Laurie_Menke: Trade B1 R1 Laurie_menke

33) zoltar: Discover G2 Zoltar B1 Blueberry

34) Laurie_Menke: Move Y1 Jolly Laurie_menke

35) zoltar: Build G2 Blueberry
	zoltar: Hey, after this do you want to play Pikeman?  Like Homeworlds, it's author is someone I know in person, but unlike homeworlds, I have no idea how to play.  I'm playing my first game now, and and already way behind after about 5 moves.  It looks like a fun game though, and I want to learn how to play.
	Laurie_Menke: Sure, I'm happy to play with you.  I've played a few games, but I pretty much suck at it, too.  You'll probably be beating me in no time.  ;o)

36) Laurie_Menke: Build Y2 Laurie_menke

37) zoltar: Build G2 Blueberry

38) Laurie_Menke: Build Y2 Jolly

39) zoltar: Build G3 Zoltar

40) Laurie_Menke: Build Y3 Laurie_menke

41) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Zoltar
Build Y3 Kermit

42) Laurie_Menke: Trade Y3 R3 Laurie_menke

43) zoltar: Move Y3 Zoltar Blueberry

44) Laurie_Menke: Discover R1 Laurie_menke Y3 Luella

45) zoltar: Build B1 Kermit

46) Laurie_Menke: Move B1 Laurie_menke Luella

47) zoltar: Trade B3 R3 Kermit

48) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move Y2 Jolly Kermit
Move Y1 Jolly Kermit
Catastrophe Kermit Y

49) zoltar: Move G2 Blueberry Luella

50) Laurie_Menke: Move R1 Luella Laurie_menke

51) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Blueberry
Build B2 Kermit

52) Laurie_Menke: Move B1 Luella Laurie_menke

53) zoltar: Sacrifice G3 Blueberry
Build G3 Blueberry
Build Y1 Zoltar
Build R1 Kermit

54) Laurie_Menke: Build Y1 Laurie_menke

55) zoltar: Sacrifice G3 Blueberry
Build Y2 Blueberry
Build Y2 Blueberry
Build Y3 Zoltar

56) Laurie_Menke: Discover B1 Laurie_menke G3 Rebuilding

57) zoltar: Sacrifice Y2 Zoltar
Move R3 Kermit Rebuilding
Move Y2 Blueberry Rebuilding

58) Laurie_Menke: Build B2 Rebuilding
	zoltar: Zee Yellow fleet ease mine, awl mine!  Zoltarian sheepz dominate zee Warp Drive Technology.  Yippee!   Zoo nigh shell rain nova zee hole galaxy!
	Laurie_Menke: Your sheepz dominate, eh?  LOL....baaaaa.  ;o)
	Laurie_Menke: It's the greens that are killing me.  :o/

59) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R1 Rebuilding
Build R2 Kermit

60) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack R1 Rebuilding
	zoltar: Ewe may kin fun uv Zoltar'z act scent?  baaahahaha

61) zoltar: Sacrifice R3 Rebuilding
Attack R1 Rebuilding
Attack B2 Rebuilding
Attack B1 Rebuilding
	Laurie_Menke: I think you're just toying with me like a cat with a mouse now.  ;o)

62) Laurie_Menke: Build R1 Laurie_menke
	zoltar: Yes, ewe primitive carbon waterbag unitz hour know match four zee my tea four says uv Zoltar!

63) zoltar: Sacrifice Y3 Zoltar
Move R1 Kermit Rebuilding
Move R1 Rebuilding Laurie_menke
Move R1 Rebuilding Laurie_menke
Catastrophe Laurie_menke R

64) Laurie_Menke: Trade Y1 R1 Laurie_menke

65) zoltar: Sacrifice Y3 Blueberry
Move G2 Luella Laurie_menke
Move B2 Rebuilding Laurie_menke
Move B1 Rebuilding Laurie_menke

66) Laurie_Menke: Attack B1 Laurie_menke

67) zoltar: Sacrifice G2 Blueberry
Build G2 Laurie_menke
Build B3 Laurie_menke

68) Laurie_Menke: Build B3 Laurie_menke
	zoltar: Awl sheepz storm zee Laurie_Menke homeworld for big finale party!  Eat wheel bee a blast!

69) zoltar: Sacrifice G2 Blueberry
Build G2 Laurie_menke
Build B3 Laurie_menke

70) Laurie_Menke: Trade B3 R3 Laurie_menke

71) zoltar: Sacrifice R2 Kermit
Attack R3 Laurie_menke
Attack R1 Laurie_menke

72) Laurie_Menke: Build Y1 Laurie_menke
Catastrophe Laurie_menke Blue
Catastrophe Laurie_menke Green

	Laurie_Menke: Thanks for the game, Zoltar...congrats on the win.  :o)


4067)
Started: 2006.8.21, Ended: 2006.8.21
Participants: eugman (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y1 G3
	eugman: Will probably continue to learn a lot by playing people who whomp me.I also made an open challenge for someone a bit easier.

2) eugman: Homeworld B1 Y2 G3

3) zoltar: Build G1 Zoltar

4) eugman: Build G1 Eugman

5) zoltar: Trade G1 Y1 Zoltar

6) eugman: Trade G1 B1 Eugman

7) zoltar: Build Y1 Zoltar

8) eugman: Build G1 Eugman

9) zoltar: Discover Y1 Zoltar G2 Spinach

10) eugman: Build B1 Eugman

11) zoltar: Build Y2 Spinach

12) eugman: Trade G3 Y3 Eugman

13) zoltar: Discover Y1 Spinach G3 Kale

14) eugman: Move B1 Eugman Kale
	eugman: Well this is certainly a bad situation.

15) zoltar: Sacrifice G3 Zoltar
Build Y2 Kale
Build Y3 Spinach
Build Y3 Zoltar
	zoltar: I've noticed I've already taken advantage of an early monopoly on Yellow technology: notice you can't build another yellow now that I'm in range to cause a catastrophe.  you needed to grab a y1 early, even if it meant my getting a y2 first, I think.  I don't know that much about openings yet -- it's my weakest part of the game -- but when I see the chance to lock someone out of a color, especially yellow, I go for it. Maybe Yellow is the most important starting color, but I'm not sure.

16) eugman: Discover Y3 Eugman R3 Owie
	zoltar: I couldn't resist!


17) zoltar: Trade Y3 R3 Zoltar
	eugman: I had a plan to deal with the color lockout so I wasn't too worried. What I didn't expect was you using your green and getting me in a position to get a catastrophe. I'll have to rethink a bit now.
	zoltar: got my orders backwards -- anyway, may as well go for the total yellow lockout.  
	eugman: Wait, what just happened.
	eugman: oh ok

18) eugman: Build B2 Kale

19) zoltar: Sacrifice Y2 Kale
Move Y3 Spinach Kale
Move Y3 Kale Eugman
	zoltar: Ok, I'm making a super-efficient move here: I'd usually trade for a g3, but a y3 not only stops you from threatening my homeworld by moving your y3 closer, but it also threatens to win if I get my other y3 into your homeworld (I'd then sac my r3 and gobble up everything in your homeworld).

	eugman: Hmm.
	eugman: Have you ever seen someone win who had at one point no three's?

20) eugman: Pass

21) zoltar: Sacrifice R3 Zoltar
Attack G1 Eugman
Attack B1 Eugman
Attack B1 Kale
	zoltar: I've seen people sac their last 3-size ship for a checkmate.  Usually, if you ever leave your homeworld without a 3-sized ship, you are toast.  That's the number 1 defensive rule.  In your case, you were in big trouble no matter what - you had to trade your y3 back to a green or a red ship to defend your homeworld -- bringing it out now ends the game quickly.
	eugman: Yeah I definately made a big mistake in not changing it back.



4077)
Started: 2006.8.21, Ended: 2006.8.25
Participants: Keith (S), eugman (N)
Winner: Keith

1) eugman: Homeworld Y3 B1 G3

2) Keith: Homeworld B1 Y2 G3
	Keith: Hello eugman.  That was a very complex first game you played.

3) eugman: Build G1 Eugman

4) Keith: Build G1 Keith
	eugman: But a bit understandable  once you know what's going on. I noticed you have a very similar configuration to mine.

5) eugman: Trade G1 Y1 Eugman

6) Keith: Discover G1 Keith Y3 Sihnon
	Keith: Yes.  I don't care to start out with red in my home system.  That leaves one each of blue, green, and yellow.  I consider having green as one of the stars inferior because 1) if an enemy invades my home world they can grow ships using my star and 2) I can't sacrifice the star for the factory effect.

7) eugman: Build Y1 Eugman
	eugman: He was trying something different. Also if you can make it into the midgame it can provide for a strong defense.

8) Keith: Build G1 Keith

9) eugman: Trade Y1 B1 Eugman

10) Keith: Build G1 Sihnon

11) eugman: Build B2 Eugman
	eugman: Actually I'm going to wait till tomorrow to continue playing. There is no way I can play two games at once and have any chance of winning either.
	Keith: Okay.  I will just peek in on your game with Zoltar.

12) Keith: Build G2 Keith

13) eugman: Trade B2 G2 Eugman

14) Keith: Discover G1 Sihnon Y2 Whitefall
	Keith: I see Zoltar educated you on factories.

15) eugman: Trade Y1 R1 Eugman
	eugman: Educated sounds far too gentle.

16) Keith: Build G2 Whitefall
	Keith: Learning from Zoltar is like drinking from a firehose.

17) eugman: Discover B1 Eugman Y2 Someplace
	eugman: But afterwards being thristy is the least of your problems.

18) Keith: Trade G2 R2 Keith

19) eugman: Move G2 Eugman Someplace

20) Keith: Sacrifice G3 Keith
Build G2 Sihnon
Build G3 Keith
Build G3 Whitefall

21) eugman: Move G2 Someplace Eugman
	eugman: Darnit.

22) Keith: Move G1 Whitefall Eugman
	eugman: I definately don't have control of the momentum.
	Keith: I am struggling hard to try to keep you from getting it.

23) eugman: Move G2 Eugman Whitefall
	eugman: Sigh. I expected you'd try to blow me up. Natural thing to do given the opportunity and the green advantage.

24) Keith: Sacrifice R2 Keith
Attack R1 Eugman
Attack G2 Whitefall
	Keith: Actually I don't expect you would let me get a green catastrophe.  Change the G3 to something else and that ploy threatens neither ship nor planet.  I have another idea...
	eugman: But if I change it I risk letting you have factory access all by yourself.

25) eugman: Trade B1 R1 Someplace
	Keith: I am not just going for the green.  I am going for all the marbles.

26) Keith: Move G3 Whitefall Eugman
	eugman: Well you've certainly got a good collection.
	Keith: And a remote r1 has unraveled my plan.
	Keith: I was thinking I could no longer aford to move my g3 to eugman.  Maybe I still can.

	eugman: You could have won already if you took bigger risks and saw the whole picture. I'd tell you how but it's still doable.
	eugman: Hmm
	eugman: If I leave Home I lose right?
	Keith: You would lose.  No ships of your at your homeworld.  Though I think the game won't let you. 

Do let me know, post game, what I could have done earlier.
	eugman: You stayed all green for the most part. On turn 20 you had two large greens. You could have changed to yellow and you would have had greater mobility and still retained acess to the factory effect. It also would have made bombing me much easier since you could concievably do it in one turn and wipe out my singular large theyby securing victory.
	Keith: Thank you the advice.  I could have changed the g3 at my homeworld.  The other did not have access to blue.  I was a little leary about doing so then sacrificing my homeworld 3 pointer to attack your ship since a simple color change on your part would leave me attacking nothing and giving you something to convert.
	eugman: That's true but in theory if you forced me to change color that would be great for you since you could then sacrifice one of your twos so the 1 back at home could regrow two greens locking me out entirely.
	eugman: Whoops slight mistake in what I just said. But you would have a large green at home again.
	Keith: I see your point.  

I did play a game against Zoltar where I had destroyed one of his two homeworld systems and had a substantial ship advantage.  I lost the game when I rushed on offense.  So I tend to go a little slower now.


4081)
Started: 2006.8.21, Ended: 2006.8.22
Participants: zoltar (S), eugman (N)
Winner: zoltar

1) eugman: Homeworld G2 B1 Y3

2) zoltar: Homeworld B3 Y1 G3
	zoltar: Pray pair two meat yore DOOM, hyu-mahn bean!

3) eugman: Build Y1 Eugman
	eugman: (shouting to crew) Joe, the interpreter is on the fritz! You told them we come in peace right?

4) zoltar: Build G1 Zoltar

5) eugman: Build Y1 Eugman

6) zoltar: Trade G3 Y3 Zoltar

7) eugman: Trade Y3 G3 Eugman
	zoltar: so I have to trade to yellow now or never...

8) zoltar: Build Y2 Zoltar

9) eugman: Discover Y1 Eugman G3 Lime

10) zoltar: Discover Y2 Zoltar G2 Swisschard

11) eugman: Build Y2 Eugman

12) zoltar: Trade G1 R1 Zoltar

13) eugman: Trade Y2 R2 Eugman
	zoltar: Well, you're catching on fast -- now I have to scramble to make sure you don't get all the big yellows

14) zoltar: Build Y2 Swisschard
	eugman: I can't wait for the homeworlds ladder.

15) eugman: Build R1 Eugman

16) zoltar: Trade Y3 G3 Zoltar

17) eugman: Move R2 Eugman Lime

18) zoltar: Discover Y2 Swisschard G1 Collards

19) eugman: Trade R1 B1 Eugman

20) zoltar: Build G1 Zoltar

21) eugman: Build B1 Eugman

22) zoltar: Build G1 Zoltar
	zoltar: Well, so far you have the advantage, I think -- galaxies better than the last game.

23) eugman: Trade B1 R1 Eugman
	zoltar: nothing else I can do

24) zoltar: Discover G1 Zoltar G2 Kale

25) eugman: Build B1 Eugman

26) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R1 Zoltar
Build R2 Zoltar

27) eugman: Move R2 Lime Kale

28) zoltar: Discover R2 Zoltar Y2 Lemon

29) eugman: Sacrifice G3 Eugman
Build Y3 Eugman
Build Y3 Lime
Build R2 Kale
	eugman: Hmmm I forgot I really can't get back now. Hmm this will take a bit of thinking.

30) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Kale
Build R3 Lemon
	zoltar: My only reasonable chance to catch up has been to build a 'factory':  I have a g3 and one other green piece in my homeworld (or another star, but that is more rare), and all the greens are used up.  I can then sack my G3 and then rebuild it immediately in place, plus two other builds.
	eugman: Ah so that's what's meant exactly by factory.

31) eugman: Sacrifice Y3 Lime
Move R2 Kale Lime
Move R2 Kale Lime
Move R2 Lime Eugman
	Keith: FWIW you have an audience.  This game is quite the spectator sport.  --Keith
	eugman: I have a feeling this is going to go downhill for me and fast.

	eugman: Please let me know if what I'm about to do it very clever or not.

32) zoltar: Sacrifice G3 Kale
Build G3 Kale
Build Y3 Collards
Build Y3 Swisschard
	eugman: actually that may have been a bad idea.
	eugman: hmm
	eugman: This can wait a day. This is a very bad situation so I need a move that is very good.
	zoltar: Yes, it would leave me with an advantage in red tech.  Remember, I don't need red ships in my homeworld to defend, as I can sac one of my reds elsewhere.  The perfect 'castle' in a yb star system, btw, would be to have a g3 and r1 and nothing else; that way the red could defend against any one piece, an r2 or r3 elsewhere could be sacked to stop multiple invaders, and with one of each color, the system would be maximally stable and thus hardest to create a catastrophe.  Here blowing up my two r1's would be a waste of your resources.
	eugman: Well I'm going to lose most of my red tech soon anyways since you can just sac a red 2 and cap my 2 reds there.
	zoltar: Yes, it was an unfortunate side-effect of your sacking your G3, as not only could I build the G3 immediately, but I could threaten your red ships as well before they could disperse and build R3s.  Notice also that if you move one of them, I can capture the other with an R1 sac, so that you can't build an R3 right away as there is then an R1 in the stash.  Given all that, I think your G3 sack was a mistake.  However, I didn't expect it, and it was a very clever try, something that usually makes for a great move but in this case had severe tactical drawbacks.
	eugman: It doesn't look like something I'm going to be able to recover from. I think I'll carry this out to it's near end tomorrow and then see if I can beat someone who isn't omniscient.
	zoltar: If it makes you feel any better, I played world champion Andy Looney in person just last week, and lost for the nth time, though for the first time I actually blew up one of his homeworld stars before I died.  Heh.

33) eugman: Build R3 Lime
	eugman: Couldn't see what much else I could do.

34) zoltar: Sacrifice Y3 Swisschard
Move R2 Lemon Lime
Move R1 Zoltar Lemon
Move R1 Lemon Lime
Catastrophe Lime R

35) eugman: Build Y3 Lime
	eugman: At least now I know about the factory effect so I can deal with Keiths attempt to do the same thing.

36) zoltar: Sacrifice G3 Kale
Build G3 Kale
Build R1 Lemon
Build R2 Zoltar
	zoltar: Yes, the factory is a really powerful tool, if you can set one up.  I don't mind sacrificing here, as I can build reds faster than you can.

37) eugman: Move R1 Eugman Lime

38) zoltar: Sacrifice Y2 Collards
Move R2 Zoltar Kale
Move R1 Lemon Collards
	zoltar: Of course I did give you yet another Y3, but I like my advantage
	eugman: Well I'm pretty sure I've lost. I can't assault you because you have suffiecent red tech. If I sit around you'll keep hitting me with your exploding ships(tm).

39) eugman: Move B1 Eugman Lime
	eugman: The only way I could win would be o expand out, and find a way to bomb both of your homeworlds. An unlikely proposition

40) zoltar: Sacrifice G3 Kale
Build R2 Lemon
Build R3 Kale
Build R3 Collards

	zoltar: Yes, you have to expand, but I can expand faster, with my factory, and I have all the big red ships now.
	eugman: Well I've essentially lost. I'm going to resign to lighten my load since I've got four other games on the stack and two are homeworlds. I definately learned something that will help me in my game against keith. At least I had the momentum for a while this time.
	zoltar: You played quite well. When you have less games going on, let's play again!


4083)
Started: 2006.8.22, Ended: 2006.9.9
Participants: Laurie_Menke (S), eugman (N)
Winner: Laurie_Menke

1) eugman: Homeworld B2 Y1 G3

2) Laurie_Menke: Homeworld Y1 B3 G3
	eugman: Yeah I'm really new to homeworlds but apparently learning fast. I'm in a game with zoltar and in one with keith right now so I don't know if I'll be able to do any of the quick back and forth while that is the case.
	Laurie_Menke: No problem.  I'm usually only able to play in the evenings anyway.  And although I've played a fair amount of games of Homeworlds, I'm still pretty rotten at it.  ;o)

3) eugman: Build G1 Eugman

4) Laurie_Menke: Build G1 Laurie_menke
	eugman: From playing playing against zoltar I've figured out that in order to win you need to be brutally offensive. Is that a problem at all?
	Laurie_Menke: No...you're right.  That's the way to play the game.  I joke around with zoltar about being peaceful and all, and I am in real life, but this game is about destroying the enemy quickly and efficiently.  ;o)  Good luck!

5) eugman: Trade G1 Y1 Eugman

6) Laurie_Menke: Discover G1 Laurie_menke B2 Hill

7) eugman: Discover Y1 Eugman G3 Dale

8) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: LOL...I love playing around with the names of the star systems.  :oD
	eugman: Well you started a theme so I figured I should continue it.

9) eugman: Build G1 Eugman
	eugman: Just curious, what time zone are you in.

10) Laurie_Menke: Build G2 Hill
	Laurie_Menke: Pacific...I'm in Woodland, California...near Sacramento.  How about yourself?

11) eugman: Trade G1 B1 Eugman
	eugman: I'm in western pennsylvannia. I figured you had to be on the west coast or have an exaggerated sense of "evening".

12) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Ah...I see what you mean.  Yeah, I meant from around 5ish to around 8 or 9, but that would make it...um...I think 8ish to 11 or 12.

13) eugman: Move B1 Eugman Dale

14) Laurie_Menke: Discover G1 Laurie_menke Y2 Chip

15) eugman: Build G2 Eugman

16) Laurie_Menke: Trade G2 Y2 Hill

17) eugman: Move G2 Eugman Dale

18) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Chip
Build G2 Hill
Build G3 Laurie_menke

19) eugman: Move G2 Dale Eugman

20) Laurie_Menke: Build Y2 Hill

21) eugman: Sacrifice G3 Eugman
Build G3 Eugman
Build Y3 Dale
Build B1 Dale

22) Laurie_Menke: Sacrifice Y2 Hill
Discover G2 Hill Y3 Luella
Discover G1 Hill Y3 Sharon
	eugman: School starts tomorrow so I may go over the time limit since I'm busy getting evrything together and would like to think enough to make sure I have a good move.
	Laurie_Menke: No problem...take your time.  Good luck with your classes!

23) eugman: Trade Y3 R3 Dale

24) Laurie_Menke: Sacrifice Y2 Hill
Move G1 Sharon Eugman
Move G2 Luella Eugman
Catastrophe Eugman Green

	eugman: That's right. Wasn't thinking quite straight it would seem.
	eugman: Oh, by the way were you the one who did the drawing for the oasis sentence?
	Laurie_Menke: Nope...not me.  Mine are the boring stick figure drawings.  ;o)
	Laurie_Menke: Sorry to end this game so abruptly, but here goes....

Thanks a lot for the fun...challenge me any time you'd like!  And good luck with your classes!  :o)


4087)
Variants: "Unrated"
Started: 2006.8.22, Ended: 2006.8.22
Participants: charlie (S), Wkr (N)
Winner: Wkr

1) Wkr: Homeworld B1 Y2 G3

2) charlie: Homeworld G1 Y2 B3
	charlie: homeworld g1 y2 b3


3) Wkr: Build G1 Wkr

4) charlie: Discover B3 Charlie G3 Charlie2



4082)
Started: 2006.8.24, Ended: 2006.8.26
Participants: antihero (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y1 G3

2) antihero: Homeworld G3 B2 Y3

3) zoltar: Build G1 Zoltar

4) antihero: Build Y1 Antihero
	antihero: Hello zoltar. How's it going?

5) zoltar: Trade G1 Y1 Zoltar

6) antihero: Discover Y1 Antihero G1 Maine

7) zoltar: Build Y2 Zoltar

8) antihero: Build Y2 Antihero

9) zoltar: Discover Y1 Zoltar G2 Greenbelt

10) antihero: Trade Y3 R3 Antihero
	zoltar: I'm doing fine.  I learned Homeworlds two months ago and have been playing a lot and am expanding my gaming by trying out Pikeman and Zendo games, which I just started.  I love this site!

11) zoltar: Trade Y2 R2 Zoltar

12) antihero: Build Y2 Maine
	antihero: there's a metro stop (sort of) near where I live called greenbelt. Same one?
	antihero: um... I live in DC... haha

13) zoltar: Build G1 Zoltar
	antihero: I definitely like this site. Just started playing here a few days ago. It's great. I've played homeworlds a couple of times in RL, but not too much.

14) antihero: Build R1 Antihero
	zoltar: Affirmative.  I live a 20 minute walk from that station.
	antihero: I'm in Columbia Heights right now...

15) zoltar: Move R2 Zoltar Greenbelt
	antihero: well, actually I'm downtown right now, but I live in ColumbiaHeights.

16) antihero: Move R1 Antihero Maine

17) zoltar: Trade G1 R1 Zoltar

18) antihero: Discover Y2 Maine Y2 Petworth

19) zoltar: Build Y3 Greenbelt
	zoltar: Well, you are a lot better at openings than I.  You've outpaced me so far every step of the way!

20) antihero: Build Y3 Maine
	antihero: really? I don't really feel that way...

21) zoltar: Build G1 Zoltar
	antihero: I'm making an okay play now, but things are still early.
	zoltar: well, you're getting an extra Y3 ship for free -- that's a huge advantage, and I don't even know what I did wrong.

22) antihero: Build Y3 Antihero

23) zoltar: Build G1 Zoltar

24) antihero: Trade Y2 B2 Antihero

25) zoltar: Discover G1 Zoltar B2 Blueridge

26) antihero: Move B2 Antihero Maine

27) zoltar: Build G2 Blueridge

28) antihero: Sacrifice Y2 Petworth
Move R3 Antihero Maine
Move R3 Maine Blueridge

29) zoltar: Sacrifice G3 Zoltar
Build G2 Blueridge
Build G3 Zoltar
Build G3 Zoltar

30) antihero: Attack G2 Blueridge
	zoltar: Yeah, I'm pretty much dead.
	zoltar: Wait -- an idea!!!!

31) zoltar: Move G1 Zoltar Blueridge
Catastrophe Blueridge G
	zoltar: I at least get the two big greenies
	antihero: nice.

32) antihero: Trade Y1 G1 Maine

33) zoltar: Discover G3 Zoltar Y2 Yellowstone
	zoltar: Well, after all the fireworks, I have to go, will check back on the game late tonight...

34) antihero: Discover B2 Maine G2 Greenstar

35) zoltar: Build G1 Yellowstone
	zoltar: After all the tactics, I've caught up in firepower, and have avoided making a total mess of things!

36) antihero: Move Y3 Maine Greenstar

37) zoltar: Move Y3 Greenbelt Maine

38) antihero: Sacrifice G1 Maine
Build B1 Greenstar
	antihero: homeworlds is such a great game.

39) zoltar: Sacrifice G3 Yellowstone
Build G1 Yellowstone
Build G2 Zoltar
Build G3 Yellowstone
	zoltar: Yep!

40) antihero: Build B1 Greenstar

41) zoltar: Sacrifice G3 Yellowstone
Build Y1 Maine
Build Y2 Maine
Build Y2 Greenbelt

42) antihero: Attack Y1 Maine
	zoltar: Looks like somebody is after my blue star...

43) zoltar: Sacrifice R2 Greenbelt
Attack R1 Maine
Attack Y1 Maine

44) antihero: Sacrifice Y3 Greenstar
Discover R3 Blueridge R1 Wormhole
Move R3 Wormhole Antihero
Pass
	antihero: Not quite yet, though. it looks like I may be in some trouble here...

45) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Yellowstone
Build Y3 Greenbelt
	zoltar: I'm counting on that...


46) antihero: Move Y3 Antihero Maine
Catastrophe Maine Y
	antihero: All right, I'm out, I might play a couple moves tomorrow, but maybe not. Later man.
	antihero: Oh, and good game so far.

47) zoltar: Sacrifice G3 Yellowstone
Build R1 Maine
Build R2 Maine
Build G3 Yellowstone
	zoltar: Yup, I thought I was toast for a while, but now I am on the attack and have the advantage, with my swarm of green and yellow ships.  You can sack your other yellow ship for either half my yellow fleet or my blue star, but eitherway I'm the only one left with yellow and green ships on the board, which should allow me to cause lots of trouble.

48) antihero: Trade R3 Y3 Antihero

49) zoltar: Sacrifice Y2 Greenbelt
Move Y3 Greenbelt Maine
Move Y3 Maine Antihero
	zoltar: Red Fleet: we wheel avenge zee sacrifice uv hour Yellow brotherz:  awl sheepz storm zee antihero homeworld! Attack!
	zoltar: Sacking both your Y3s has left you too vulnerable.  I don't think there is any adequate defense.
	antihero: yeah, this is about over. is it good form to resign at this point or to play it out?

50) antihero: Build Y1 Antihero
	antihero: meh, it won't take too long anyways.

51) zoltar: Sacrifice R2 Maine
Attack Y1 Antihero
Attack Y3 Antihero
	zoltar: Yeah, might as well play it out, it's only 1 more move. Thanks for the game. Play again?
	antihero: for sure.

	antihero: might as well give you options. :)
	zoltar: Rezzizztanz ease few tile: ewe have been assimilated!


3720)
Started: 2006.8.25, Ended: 2007.2.18
Participants: andylooney (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y3 B1 G3

2) andylooney: Homeworld R2 B3 G3

3) zoltar: Build G1 Zoltar

4) andylooney: Build G1 Andylooney

5) zoltar: Trade G1 Y1 Zoltar

6) andylooney: Trade G3 Y3 Andylooney

7) zoltar: Build G1 Zoltar

8) andylooney: Build Y1 Andylooney

9) zoltar: Discover Y1 Zoltar G2 Greenbelt

10) andylooney: Discover Y1 Andylooney G1 Collegepark

11) zoltar: Trade G1 R1 Zoltar



4108)
Started: 2006.8.26, Ended: 2006.8.28
Participants: zoltar (S), antihero (N)
Winner: zoltar

1) antihero: Homeworld B2 Y1 G3

2) zoltar: Homeworld G3 B1 Y3

3) antihero: Build G1 Antihero

4) zoltar: Build Y1 Zoltar
	zoltar: oops, didn't want to make the star sizes symmetrical.

5) antihero: Discover G1 Antihero Y3 Sun

6) zoltar: Build Y1 Zoltar

7) antihero: Build G1 Sun

8) zoltar: Discover Y1 Zoltar G2 Earth

9) antihero: Build G1 Sun

10) zoltar: Build Y2 Zoltar

11) antihero: Build G2 Antihero

12) zoltar: Trade Y2 G2 Zoltar

13) antihero: Trade G2 Y2 Antihero
	antihero: got im?

14) zoltar: Discover G2 Zoltar Y2 Venus

15) antihero: Discover G1 Sun B2 Neptune

16) zoltar: Build Y2 Zoltar

17) antihero: Move G1 Sun Antihero

18) zoltar: Trade Y3 G3 Zoltar

19) antihero: Discover G1 Antihero Y3 Alpha

20) zoltar: Build Y3 Zoltar

21) antihero: Build G2 Neptune

22) zoltar: Discover G3 Zoltar B2 Mercury
	zoltar: You've got the opening lead again, but I will rely on my Zoltarian middle-game powers to pull through again!

23) antihero: Discover Y2 Antihero B3 Pluto

24) zoltar: Trade Y2 R2 Zoltar

25) antihero: Trade G1 R1 Neptune

26) zoltar: Build Y2 Earth

27) antihero: Sacrifice G1 Alpha
Build Y3 Pluto

28) zoltar: Trade Y3 R3 Zoltar

29) antihero: Move Y3 Pluto Neptune

30) zoltar: Build Y3 Zoltar

31) antihero: Sacrifice G1 Sun
Build Y3 Pluto

32) zoltar: Move Y3 Zoltar Mercury

33) antihero: Build G1 Antihero

34) zoltar: Sacrifice Y2 Earth
Move G3 Mercury Pluto
Move G3 Pluto Antihero

35) antihero: Sacrifice Y3 Pluto
Move G2 Neptune Pluto
Move G2 Pluto Antihero
Move Y2 Pluto Antihero
Catastrophe Antihero Green

36) zoltar: Build Y2 Earth

37) antihero: Trade Y2 G2 Antihero
	zoltar: Party at antihero's!  Party at antihero's! All ships invited. 3 bands, food, beer, and green Orion Star Trek belly dancers! It's gonna be a blast!
	antihero: bummer. I don't like this party.

38) zoltar: Sacrifice Y2 Earth
Discover Y3 Mercury G3 Wormhole
Move Y3 Wormhole Antihero
	antihero: "This party's over."
	zoltar: aw shukz -- eye waz juzz star tin two half fun!

39) antihero: Build G1 Antihero

40) zoltar: Sacrifice R2 Zoltar
Attack G2 Antihero
Attack G1 Antihero

	antihero: my midgame needs work. :)
	zoltar: Yep, you should have two colors in your homeworld whenever possible, for one.  Good game.  Play again?


4112)
Started: 2006.8.26, Ended: 2006.8.29
Participants: zoltar (S), tesla (N)
Winner: zoltar

1) tesla: Homeworld B2 G3 Y3

2) zoltar: Homeworld Y3 B1 G3
	zoltar: Before I move, you should undo your move and start with a 3-sized ship, such as a Y3.  Why did you build a Y1?
	zoltar: Greetingz, from Greenbelt, Milky Way!

3) tesla: Build Y1 Tesla
	tesla: Sorry, I have to play more

4) zoltar: Build G1 Zoltar

5) tesla: Discover Y3 Tesla G1 Tales

6) zoltar: Build G1 Zoltar

7) tesla: Build Y1 Tesla

8) zoltar: Discover G1 Zoltar B2 Blueridge
	zoltar: btw, moving your 3-sized piece away from your homeworld is very dangerous. The reason is that if I move a 3-sized ship into your homeworld, you cannot capture it, even if you have red ships there, unless you have a 3-sized ship in your homeworld defending.  So later in the game, having an opponent get a large ship into your homeworld which you cannot capture usually is fatal. In this case, I can't do anything for several moves, but when I get some pieces built and moved out,  you will have to waste a move moving your Y3 back, unless you can quickly build another 3-sized ship there before I can threaten to move a big piece in.

9) tesla: Trade Y1 B1 Tesla

10) zoltar: Build G2 Blueridge

11) tesla: Move B1 Tesla Tales

12) zoltar: Trade G2 Y2 Blueridge

13) tesla: Build Y1 Tales

14) zoltar: Build G2 Blueridge

15) tesla: Trade Y3 R3 Tales

16) zoltar: Trade G2 R2 Blueridge

17) tesla: Move R3 Tales Blueridge

18) zoltar: Sacrifice Y2 Blueridge
Move R2 Blueridge Tales
Move R2 Tales Tesla

19) tesla: Move Y1 Tales Blueridge

20) zoltar: Attack Y1 Tesla

	tesla: ok, I think we finished the game
	zoltar: I sacrificed my Y2, and that sacrifice gives me two yellow powers, or two moves.  If I sacrificed my G3, I could then make three grows at once.  That's why I was saying that you had to return your 3-sized ship to your homeworld before I build some ships.  Moving your Y3 out was terrible, and every move after that, moving your Y3 (or R3) back would have been the best move.


4120)
Started: 2006.8.28, Ended: 2006.9.8
Participants: antihero (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 G1 B3

2) antihero: Homeworld B3 Y1 G3

3) zoltar: Build B1 Zoltar

4) antihero: Build G1 Antihero

5) zoltar: Trade B1 Y1 Zoltar

6) antihero: Discover G1 Antihero Y2 Huntington

7) zoltar: Build Y1 Zoltar

8) antihero: Build G1 Antihero

9) zoltar: Build Y2 Zoltar

10) antihero: Build G2 Antihero

11) zoltar: Trade Y2 R2 Zoltar

12) antihero: Trade G2 R2 Antihero

13) zoltar: Move R2 Zoltar Huntington

14) antihero: Build G2 Antihero

15) zoltar: Attack G1 Huntington

16) antihero: Discover G2 Antihero B2 Arlington

17) zoltar: Build Y2 Zoltar

18) antihero: Build G2 Arlington

19) zoltar: Discover Y1 Zoltar G2 Greenbelt

20) antihero: Trade G2 Y2 Arlington

21) zoltar: Build Y3 Greenbelt

22) antihero: Build Y3 Arlington

23) zoltar: Build Y3 Greenbelt

24) antihero: Sacrifice Y3 Arlington
Move Y2 Arlington Zoltar
Move Y2 Zoltar Greenbelt
Discover G1 Antihero B2 Smith
Catastrophe Greenbelt Yellow

25) zoltar: Build G2 Huntington

26) antihero: Build G2 Smith

27) zoltar: Build G3 Huntington

28) antihero: Build R1 Antihero

29) zoltar: Build R1 Huntington
	zoltar: sigh -- I figured you'd go jihadist on me!

30) antihero: Trade R1 Y1 Antihero

31) zoltar: Discover Y1 Zoltar Y2 Melloyellow

32) antihero: Move Y1 Antihero Smith

33) zoltar: Sacrifice G3 Huntington
Build G3 Huntington
Build Y3 Zoltar
Build Y3 Melloyellow

34) antihero: Build Y3 Smith

35) zoltar: Discover Y3 Melloyellow G3 Greenbelt

36) antihero: Discover G2 Smith B1 Blue

37) zoltar: Move G3 Huntington Blue

38) antihero: Sacrifice G2 Blue
Build G2 Smith
Build R1 Antihero

39) zoltar: Move R2 Huntington Blue

40) antihero: Trade R1 B1 Antihero

41) zoltar: Sacrifice G2 Huntington
Build G2 Blue
Build B1 Zoltar

42) antihero: Build R1 Antihero

43) zoltar: Move B1 Zoltar Huntington

44) antihero: Sacrifice Y3 Smith
Move G1 Smith Zoltar
Move G2 Smith Zoltar
Move Y1 Smith Zoltar
	antihero: sorry about that, was gone for the weekend.

45) zoltar: Attack Y1 Zoltar

46) antihero: Sacrifice R2 Antihero
Attack Y1 Zoltar
Attack Y2 Zoltar

47) zoltar: Sacrifice R2 Blue
Attack Y2 Zoltar
Attack Y1 Zoltar

48) antihero: Sacrifice G2 Arlington
Build G2 Zoltar
Pass
Catastrophe Zoltar Green

49) zoltar: Build Y3 Greenbelt

50) antihero: Build R1 Antihero

51) zoltar: Sacrifice G3 Blue
Build B2 Huntington
Build R2 Huntington
Build B2 Zoltar
	zoltar: nah -- I guess I can't ignore your annoying jihadists!

52) antihero: Move R1 Antihero Melloyellow

53) zoltar: Sacrifice Y3 Greenbelt
Move B2 Huntington Antihero
Move B1 Huntington Antihero
Move Y1 Melloyellow Antihero
Catastrophe Antihero B

	zoltar: Of course I could have stopped to capture the r1 in melloyello for 'free' by sacking my r1 in huntington, but no need to waste a move, when checkmate is forced...
	zoltar: Thanx for the game, Earthling. Play again?
	antihero: I think I need to play some less competitive games and figure things out a bit more before I keep playing you. Good game, though.


4125)
Variants: "Unrated"
Started: 2006.8.28, Ended: 2006.10.10
Participants: Keith (S), antihero (N)
Winner: antihero

1) antihero: Homeworld G3 B2 Y3
	Keith: Hello again.  I think unrated will work out better.

2) Keith: Homeworld Y1 B2 G3

3) antihero: Build Y1 Antihero
	antihero: hehe. I won't lose so stupidly :)

4) Keith: Build G1 Keith
	Keith: Ha! I knew you were going to make that move.  ;-)

5) antihero: Trade Y1 G1 Antihero

6) Keith: Trade G1 Y1 Keith

7) antihero: Build G1 Antihero

8) Keith: Build G1 Keith
	antihero: alright, I'm headed to bed now. I'll see you tomorra'.
	Keith: Looking forward to it.

9) antihero: Discover G1 Antihero Y1 Huntington

10) Keith: Discover Y1 Keith G3 Notfar

11) antihero: Build G2 Huntington

12) Keith: Build Y2 Notfar

13) antihero: Build Y2 Antihero

14) Keith: Trade G1 R1 Keith

15) antihero: Trade Y2 R2 Antihero

16) Keith: Build R1 Keith

17) antihero: Build Y2 Antihero

18) Keith: Build G1 Keith

19) antihero: Build G2 Antihero

20) Keith: Trade G1 B1 Keith

21) antihero: Trade G1 B1 Antihero

22) Keith: Move B1 Keith Notfar

23) antihero: Move B1 Antihero Huntington

24) Keith: Trade Y1 G1 Notfar

25) antihero: Discover G1 Huntington Y3 Close

26) Keith: Move R1 Keith Notfar

27) antihero: Move G2 Huntington Notfar

28) Keith: Sacrifice Y2 Notfar
Move G1 Notfar Huntington
Move R1 Notfar Huntington

29) antihero: Sacrifice Y2 Antihero
Move G1 Close Keith
Move G2 Notfar Keith

30) Keith: Trade G3 R3 Keith

31) antihero: Trade G1 R1 Keith

32) Keith: Attack G2 Keith

33) antihero: Sacrifice G2 Antihero
Build R2 Antihero
Build R2 Keith
Catastrophe Keith Red
	Keith: Well I am in deep trouble.  If I convert the g2 you sacrifice a green, grow a red and boom.  Game over.  If I convert the r1 you sacrifice your y3, move a red in and boom, game over.  
	Keith: No,wait.  Deep trouble yes but I could still have the g2.

34) Keith: Build R1 Huntington

35) antihero: Sacrifice R2 Antihero
Attack R1 Huntington
Attack R1 Huntington

36) Keith: Build G1 Keith

37) antihero: Attack G1 Huntington

38) Keith: Trade G1 R1 Keith

39) antihero: Build R2 Antihero

40) Keith: Build R2 Keith

41) antihero: Discover R1 Huntington Y3 Bigstar

42) Keith: Move R2 Keith Bigstar

43) antihero: Build R3 Huntington

44) Keith: Build R3 Keith

45) antihero: Sacrifice Y3 Antihero
Move R1 Huntington Bigstar
Move R1 Bigstar Keith
Move R1 Bigstar Keith
Catastrophe Keith Red

46) Keith: Build G1 Keith
	Keith: Whew...  back in the 3-pointer game, at least for a little bit.

47) antihero: Trade R2 Y2 Antihero
	antihero: I don't know if that was a wise move, but it seems necessary. Whaddya think?
	Keith: So much for having a 3-pointer.  That was an expensive move for you but a good move.  You can afford the loss, still have a 3-pointer, and any 2-pointer I have is not threat to your home system. 
	Keith: It also manipulates the stash to put me very very far away from regaining a 3-pointer.

48) Keith: Sacrifice G2 Keith
Build R1 Bigstar
Build R1 Bigstar

49) antihero: Build Y1 Antihero

50) Keith: Move R1 Bigstar Keith

51) antihero: Sacrifice Y2 Antihero
Move R3 Huntington Bigstar
Move R3 Bigstar Keith
	antihero: I may be messing this up, but I think I'm gonna get you here. Please let me know if I do anything exceptionally stupid. Feel free to respond to it anyways, but I'd like to get better here.
	Keith: Sacrifice the y2, move the r3 to my homeworld and then it is just a matter of time?  Once a size 2 or 3 ship shows up in my homeworld I am done for.  I think I can slow down your getting such a ship there.
	Keith: No I can't but I want to try this.

52) Keith: Build R1 Keith

53) antihero: Attack G1 Keith

54) Keith: Attack G1 Keith

55) antihero: Sacrifice R2 Antihero
Attack G1 Keith
Attack R1 Keith

56) Keith: Sacrifice R2 Bigstar
Attack G1 Keith
Attack R1 Keith

57) antihero: Move R3 Keith Notfar

58) Keith: Trade B1 G1 Notfar
	antihero: hmmm i'm running out of ideas here
	Keith: I think you started your finish me off attack just a little to soon.  You needed another red or green or something.  It has been a good practice game.  I am learning.  Intersting game you have going with Uglyfoot.
	Keith: It does not look like we can agree to a draw.
	antihero: hmm? It doesn't?

59) antihero: Attack G1 Notfar
	Keith: Cannon has an offer draw button under the movement entry box.  None here.

60) Keith: Move R1 Bigstar Huntington
	antihero: oh yeah.

61) antihero: Build Y2 Antihero

62) Keith: Move R1 Huntington Antihero

63) antihero: Trade Y2 R2 Antihero
	Keith: I am having trouble deciding whether to move my r1 to your homeworld and try to make things difficult for you or stay in huntington and attack a ship.

64) Keith: Build R2 Antihero

65) antihero: Attack R2 Antihero
	antihero: this could go poorly...
	Keith: I am trying to force you to give up that very threatening r3.

66) Keith: Build R2 Antihero
Catastrophe Antihero Red

67) antihero: Build Y2 Antihero
	Keith: '''and it is not going to work.  I should have taken the easy ship grap in huntinton.  Now if I built a red and catstrophe you end up with an y1 at your homeworld jus like before and I have lost an r1.

68) Keith: Build G2 Keith

69) antihero: Build Y2 Antihero

70) Keith: Trade G2 Y2 Keith

71) antihero: Trade Y1 R1 Antihero

72) Keith: Build R2 Keith

73) antihero: Build G2 Huntington

74) Keith: Build G2 Keith

75) antihero: Sacrifice Y2 Antihero
Move R3 Notfar Huntington
Move R3 Huntington Antihero

76) Keith: Move R2 Keith Notfar

77) antihero: Sacrifice G1 Notfar
Build B1 Huntington
	antihero: retreat!

78) Keith: Build R2 Notfar

79) antihero: Trade B1 Y1 Huntington
	Keith: hmmm... I do not see what you are up to yet.

80) Keith: Sacrifice Y2 Keith
Move R2 Notfar Huntington
Move R2 Notfar Huntington
	antihero: that's because I don't know what I'm doing :)

81) antihero: Discover G2 Huntington Y3 Sol
	Keith: Then I would say that learning more about end games is a good way to boost your overall Homeworlds ability.

82) Keith: Move R2 Huntington Antihero

83) antihero: Sacrifice R1 Antihero
Attack R2 Antihero

84) Keith: Attack G1 Huntington
	antihero: oooooh

85) antihero: Discover Y1 Huntington G3 Archives

86) Keith: Build R1 Huntington
	antihero: better, I think.
	Keith: That is better.  I thought I was headed for getting rid of your r3.  I simply lost an r2 unit instead.

87) antihero: Discover R2 Antihero G1 Shaw

88) Keith: Discover G1 Keith G3 Midworld

89) antihero: Build Y2 Archives

90) Keith: Build G2 Huntington

91) antihero: Build R2 Shaw

92) Keith: Move G1 Huntington Antihero

93) antihero: Attack G1 Antihero

94) Keith: Move R1 Huntington Antihero

95) antihero: Attack R1 Antihero

96) Keith: Build R3 Huntington

97) antihero: Build R3 Shaw
	antihero: hmmm... some master plan I'm not seeing...

98) Keith: Move R2 Huntington Antihero
	antihero: wait, I get it, never mind.
	Keith: A clumsy master plan at best.  I had intended to sacrifice the green at Midworld releasing the g3 to the bank and building the g3 using the sacrifice.  Except that I put a g1 there instead of the g2 I needed.
	Keith: I am just sort of giving you a mild density problem in the antihero system.  I need another green, red, or even a y2 to make real trouble.

99) antihero: Sacrifice R1 Antihero
Attack R2 Antihero

100) Keith: Attack B1 Huntington

101) antihero: Build Y2 Antihero

102) Keith: Move R3 Huntington Sol

103) antihero: Sacrifice Y2 Antihero
Move R2 Shaw Midworld
Move R2 Midworld Keith

104) Keith: Attack R2 Keith

105) antihero: Sacrifice Y2 Antihero
Move R2 Shaw Midworld
Move R2 Midworld Keith
Catastrophe Keith Red

106) Keith: Move R3 Sol Keith

107) antihero: Trade R2 Y2 Antihero

108) Keith: Sacrifice G2 Huntington
Build B1 Huntington
Build B1 Huntington
	Keith: Ouch.

109) antihero: Build Y2 Archives

110) Keith: Move B1 Huntington Antihero

111) antihero: Move Y1 Archives Keith

112) Keith: Attack Y1 Keith

113) antihero: Sacrifice G2 Sol
Build Y3 Antihero
Build Y3 Antihero

114) Keith: Sacrifice G2 Keith
Build B2 Antihero
Build B3 Antihero

115) antihero: Sacrifice Y2 Antihero
Move Y2 Archives Keith
Move Y2 Archives Keith
Catastrophe Keith Yellow
Catastrophe Antihero Blue

116) Keith: Trade B1 R1 Huntington

117) antihero: Sacrifice Y3 Antihero
Move R3 Antihero Keith
Move Y3 Antihero Keith
Move R3 Shaw Antihero

118) Keith: Attack R3 Keith
	antihero: wow that was a hell of a turn. Not often do you get to destroy your own homeworld and your opponent's at the same time!
	Keith: That was a quick way to go through, what, 9 ships?  I have enjoyed this game at lot. 

119) antihero: Sacrifice R3 Antihero
Attack R3 Keith
Attack R3 Keith
Pass

	antihero: good game! glad you didn't resign me. :)
	Keith: You deserved it.  I did make you earn it, look how many moves are in the game report.


4124)
Started: 2006.8.30, Ended: 2006.12.4
Participants: Tuxhedoh (S), Keith (W), zoltar (N), antihero (E)
Winner: antihero

1) zoltar: Homeworld B2 Y1 G3

2) antihero: Homeworld G3 B1 Y3

3) Tuxhedoh: Homeworld B2 Y3 G3

4) Keith: Homeworld Y3 B2 G3

5) zoltar: Build G1 Zoltar

6) antihero: Build Y1 Antihero

7) Tuxhedoh: Build G1 Tuxhedoh

8) Keith: Build G1 Keith

9) zoltar: Trade G1 Y1 Zoltar

10) antihero: Build Y1 Antihero

11) Tuxhedoh: Build G1 Tuxhedoh

12) Keith: Trade G1 Y1 Keith

13) zoltar: Build Y2 Zoltar

14) antihero: Discover Y1 Antihero G2 Jungle

15) Tuxhedoh: Trade G1 B1 Tuxhedoh

16) Keith: Build Y2 Keith

17) zoltar: Trade Y1 R1 Zoltar

18) antihero: Build Y1 Jungle

19) Tuxhedoh: Build G1 Tuxhedoh

20) Keith: Build G1 Keith

21) zoltar: Build Y2 Zoltar

22) antihero: Trade Y1 R1 Antihero

23) Tuxhedoh: Trade G1 R1 Tuxhedoh

24) Keith: Trade Y1 R1 Keith
	Keith: Well, if everyone else is going to pull a gun I guess I had better too.

25) zoltar: Discover Y2 Zoltar G3 Forest

26) antihero: Build Y1 Antihero

27) Tuxhedoh: Discover B1 Tuxhedoh G1 Tundra

28) Keith: Discover G1 Keith Y1 Mountains

29) zoltar: Build Y2 Zoltar

30) antihero: Discover Y1 Jungle B3 Plains

31) Tuxhedoh: Build B1 Tundra

32) Keith: Build G1 Mountains

33) zoltar: Move Y2 Zoltar Plains

34) antihero: Trade Y1 B1 Antihero

35) Tuxhedoh: Trade B1 Y1 Tundra

36) Keith: Sacrifice Y2 Keith
Move G1 Mountains Tuxhedoh
Move G1 Mountains Tuxhedoh
Catastrophe Tuxhedoh Green
	Keith: Forest, jungle, mountains, plains, tundra = Titan/Colossus players in the group?
	Keith: There really is no incentive to attack in this Last Man Standing variant like there is in the Sinister variant.  If I lose a ship in the process one opponent I have improved the position of the other two players against the person I attacked and myself.
	Keith: That should read "If I lose a ship in the process of attacking one opponent...."
	zoltar: Yes, and the Sinister has problems as well. I spoke to the awesome creator of Homeworlds, John Cooper, who said he is still working on an acceptable variation to make the 4 person game work, and that he's not pleased with any of the current variants.
	Keith: Any word on what the problems with Sinister are.  Other than the hazard of finding Zoltar on your left, or worse, your right?

Here goes an attack then.  Sorry Tuxhedoh.

37) zoltar: Sacrifice Y2 Plains
Move Y2 Forest Tundra
Move Y2 Tundra Tuxhedoh

38) antihero: Build Y1 Antihero
	zoltar: In Sinister, as soon as one player is weak, the others gang up on the one who can win, and the game can go on endlessly.

39) Tuxhedoh: Build Y2 Tundra

40) Keith: Build G1 Keith
	antihero: I've played some three, four and five player homeworlds before, and we always had the same problem. Clearly, I'm not especially good at the game, but it usually came down to one person throwing themselves into an attack on someone else and leaving themselves weak. If that _didn't_ happen, then the remaining players would quickly gang up on the potential winner. It was still fun, though.
	Tuxhedoh: This is my first 4 player attempt, and I've never quite gotten the hang of sacrificing... or moving from deployment/building/discovering to midgame-attacking etc... but I keep plodding away hoping that I'l learn, I really want the replay feature, it'd be especially handy for 4 players. Of course, being the victim of the first attack has severely hampered me.

41) zoltar: Sacrifice R1 Zoltar
Attack R1S Tuxhedoh
	zoltar: I lost my first few games. Then I went into the archive, set up my IceHouse pieces (you can make your own facsimiles if you don't own a set) and played over every game by the best player (TwoShort). You can't play over the first few of them because of a flaw which didn't record what the starting stars in the homeworlds were, but after the point that that was fixed, I went over all of his games, and of the games of the other two good players (AndyLooney and Jesse). After that, I started to win most games against everyone else, but I've only gotten lucky against Andy Looney and TwoShort once, and they still beat me almost every single game. But I still win the other 90% of my games. Except today -- where a beginner who is an experienced gamer is kicking my butt in his very first game of Homeworlds!
	Keith: Tuxhedoh: I do feel bad about taking advantage of an opening and discouraging you.  I had a Homeworlds game earlier that was so discouraging that I stopped playing Homeworlds for a while.

In my case I learned Homeworlds by playing two experienced players, one of them TwoShort, in unrated games where they did not rush to victory over me and made many comments about what they were doing with their moves and why.
	Keith: Tuxhedoh:  FWIW After your move Zoltar is in position to eliminate you from the game by sacrificing his r1 and attacking your r1 with his y2 at your homeworld.  The only way for you to survive past this turn is to undo your turn and build a second r1 at your homeworld.
	zoltar: But Tuxhedoh has neither green technology in his homeworld nor a green piece to sacrifice.  He can however move a piece back to his homeworld. It doesn't do as much good as if he could build another red piece though.
	Keith: Duh, right, no green.  
	Tuxhedoh: Thanks for the tips everyone...
I hadn't thought through other's turns, but had intended to move my y2 back and trade it for an r2. But that's at least 2 moves away.  
	Keith: That would take too long.  I have not moved so you could undo if you want to.  FWIW I had no plans to finish you off.
	zoltar: Unfortunately, Keith's move made Tuxedo's position so weak  that I could finish off Tuxedo the next move, so it made the most sense to do so, as the cost is very minimal.
	zoltar: The only problem will be that antihero will have a very strong position, and control over most of the yellow industry, as Keith and I both weakened ourselves to take out Tuxhedoh.
	Keith: I guess Tuxhedoh is not going to take the undo opportunity.

42) antihero: Build Y2 Jungle

43) Keith: Build R1 Keith

44) zoltar: Discover Y2 Zoltar G3 Forest
	Keith: I did not realize that Tuxhedoh's other ships would stay in the game and not return to the stash.

45) antihero: Trade Y1 G1 Antihero

46) Keith: Move R1 Keith Tundra

47) zoltar: Build G1 Zoltar

48) antihero: Move B1 Antihero Jungle

49) Keith: Attack Y1S Tundra

50) zoltar: Trade Y2 G2 Tuxhedoh

51) antihero: Discover G1 Antihero Y2 Desert

52) Keith: Attack B1S Tundra

53) zoltar: Build R1 Tuxhedoh

54) antihero: Build R2 Antihero

55) Keith: Build R2 Tundra

56) zoltar: Trade R1 Y1 Tuxhedoh

57) antihero: Build B1 Jungle

58) Keith: Move Y1 Tundra Forest

59) zoltar: Trade G1 R1 Zoltar

60) antihero: Discover G1 Desert Y3 Sol

61) Keith: Attack Y2S Tundra

62) zoltar: Build R2 Tuxhedoh

63) antihero: Move R2 Antihero Jungle

64) Keith: Move R1 Tundra Tuxhedoh

65) zoltar: Sacrifice R1 Tuxhedoh
Attack Y1W Forest

66) antihero: Move Y1 Jungle Forest

67) Keith: Attack Y1N Tuxhedoh

68) zoltar: Discover Y1 Forest G1 Oasis

69) antihero: Build Y2 Forest

70) Keith: Sacrifice Y1 Tuxhedoh
Move R1 Tuxhedoh Oasis

71) zoltar: Move Y2 Forest Oasis

72) antihero: Move B1 Jungle Sol

73) Keith: Attack Y1N Oasis

74) zoltar: Sacrifice R2 Tuxhedoh
Attack Y1W Oasis
Attack R1W Oasis

75) antihero: Move Y1 Forest Oasis

76) Keith: Discover Y2 Tundra G3 Behemoth

77) zoltar: Move Y2 Oasis Plains

78) antihero: Sacrifice R2 Jungle
Attack Y1N Oasis
Attack R1N Oasis

79) Keith: Build Y1 Behemoth

80) zoltar: Discover Y2 Plains G1 Hills

81) antihero: Move B1 Jungle Forest

82) Keith: Move Y1 Behemoth Tundra

83) zoltar: Build G2 Zoltar

84) antihero: Move G1 Sol Zoltar
	Keith: Let me re-toss out a question here.  Am I in the presence of Titan/Colossus players?

85) Keith: Move Y2 Behemoth Zoltar
	antihero: nope, not me. just picking random names :)
	zoltar: Me neither. I've seen Titan, but never have played.

86) zoltar: Trade G3 R3 Zoltar

87) antihero: Move Y1 Plains Zoltar
	Keith: Oh well.  Titan is one of my old favorites.  We just happened to name a lot of the tactical battlemap terrains.
	Keith: My avatar in the forums is from Titan.  (A behemoth).

88) Keith: Trade Y2 R2 Zoltar

89) zoltar: Sacrifice R3 Zoltar
Attack R2W Zoltar
Attack G1E Zoltar
Attack Y1E Zoltar
	zoltar: looks like I may be toast...

90) antihero: Move Y2 Forest Zoltar
	Keith: And you have made us both work hard together to bring you to that point.
	Keith: Zoltar, why have you not joined the Homeworlds ladder yet?

91) Keith: Discover Y1 Tundra Y3 Tower

92) antihero: Trade Y2 R2 Zoltar
	zoltar: Because I don't even know what a Homeworlds ladder is. How do I join?
	Keith: Top of this page.  Click on ladders.  I recommend checking out the forums link too.
	Keith: In retrospect antihero and I would have been much better off if we had both flipped a ship red.

Zoltar, did you find the forum sections about the ladder system?  Do you understand how it works?
	zoltar: Actually, your flipping your ship red was your downfall! You had two yellows in the system, so you needed to simply build a yellow and blow up my star.

And yes I found it and signed up -- I'll figure out how it works as I go, but I've got the basics: challenge the highest person you are allowed to, and beat them, and then repeat the process.
	Keith: Flipping one red was my downfall.  I meant that antihero and I should have both flipped to red knocking out your r3.  Our first plan was to rush in yellow and catastrophe followed by blue.  We did not consult before the last turn and the plan twisted to attacking ship colors and then we went after different colors.  D'oh!
	zoltar: Well you managed to knock out my R3 as I had to sac it to survive. Were there more 3-sized ships flying around the board, that would've been enough to kill me.

93) Keith: Build G2 Keith

94) antihero: Build Y2 Jungle

95) Keith: Discover G2 Keith R1 Eye
	zoltar: Since I was left crippled, I figured if anyone attacked a ship of mine I'd save you the trouble and resign
	Keith: Uhm... okay.  I expected it to take a lot more work and a lot more turns to take you out, and then you might find another mistake (on my part) or opening.

As it is antihero has me vastly outnumbered and has the only ship at Zoltar and will easily pick up quite a few more.  Your resignation is a worst case scenerio for me.
	zoltar: What? when you move your Y1 from Tower to Zoltar next move, which you were going to do even if I didn't resign, you will blow up his ship and the yellow star. I was dead in the water. Only if you two, both knowing that, ignored me and went after each other would I have considered staying in the game.
	zoltar: In multiple player homeworlds I always resign if two players gang up on me, and try to blow up my stars with the ships of the weaker of the two in them if I can. 

96) antihero: Attack G2N Zoltar

97) Keith: Trade R2 Y2 Tundra

98) antihero: Move B1 Sol Oasis

99) Keith: Build G2 Eye

100) antihero: Discover G2 Zoltar Y3 Keep

101) Keith: Sacrifice G3 Keith
Build G3 Keith
Build R2 Keith
Build Y2 Tundra

102) antihero: Build G3 Keep

103) Keith: Move R2 Keith Oasis

104) antihero: Attack G1N Zoltar

105) Keith: Attack R1E Oasis

106) antihero: Sacrifice G3 Keep
Build G3 Zoltar
Build G3 Keep
Build R2 Antihero
	Keith: So much board space, so many pieces, so many of then yours!

107) Keith: Sacrifice Y2 Tundra
Move G2 Eye Keep
Move G2 Eye Keep
Catastrophe Keep Green

108) antihero: Move Y2 Jungle Hills

109) Keith: Build Y2 Tundra

110) antihero: Build Y3 Antihero

111) Keith: Attack Y1E Oasis

112) antihero: Move G3 Zoltar Tower

113) Keith: Attack Y1E Oasis

114) antihero: Move G3 Tower Oasis

115) Keith: Sacrifice Y2 Tundra
Move Y1 Oasis Jungle
Move Y1 Jungle Antihero

116) antihero: Discover Y3 Antihero G2 Another

117) Keith: Build Y2 Antihero
	antihero: hey I'm just trying to recover from two days of near-inactivity. You can't be making moves that bump your game back to the top of my queue when I'm only half done! :)

118) antihero: Trade Y3 B3 Antihero
	Keith: Awww thats because you have a social life and I am pathetically sitting around waiting for someone in one of my games to make a move.  ;)

119) Keith: Sacrifice R2 Oasis
Attack R2E Antihero
Attack R1E Antihero

120) antihero: Sacrifice R2 Zoltar
Attack Y2W Antihero
Attack R2W Antihero

121) Keith: Sacrifice G3 Keith
Build Y3 Oasis
Build R1 Antihero
Build R2 Antihero
Catastrophe Antihero Red

122) antihero: Trade Y2 R2 Antihero

123) Keith: Move Y3 Oasis Keith
	Keith: That should get your attention.

124) antihero: Discover Y3 Another B1 Uhoh
	Keith: Well darn.
	antihero: oh you still have good moves...

125) Keith: Trade Y3 R3 Keith

126) antihero: Sacrifice Y2 Jungle
Move G3 Oasis Keith
Move Y3 Uhoh Keith
	Keith: I don't have time to grab the g3 in Oasis.

127) Keith: Attack G3E Keith

128) antihero: Sacrifice R2 Antihero
Attack G3W Keith
Attack R3W Keith

129) Keith: Sacrifice Y2 Tundra
Discover B1 Tundra B2 Stopantihero
Move B1 Stopantihero Antihero

130) antihero: Sacrifice R3 Keith
Attack G1W Keith
Attack R1W Keith
Pass
	Keith: Where did you learn that trick?
	Keith: Hmmm.... I don't see where you are going with this.  One of us has a hole in their logic.  Hope its you.

	antihero: yeah it was kind of weird with so many pieces. Not bad, though. I think it really means that once you have an advantage it's easier to hold it.


4113)
Started: 2006.8.30, Ended: 2006.9.8
Participants: Tuxhedoh (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) Tuxhedoh: Homeworld B1 G3 Y3

3) zoltar: Build G1 Zoltar

4) Tuxhedoh: Build Y1 Tuxhedoh
	zoltar: Greetings from Greenbelt, Milky Way

5) zoltar: Trade G1 Y1 Zoltar
	Tuxhedoh: And greetings to you.

6) Tuxhedoh: Trade Y1 G1 Tuxhedoh

7) zoltar: Build G1 Zoltar

8) Tuxhedoh: B Y1 Tuxhedoh

9) zoltar: Trade G1 R1 Zoltar

10) Tuxhedoh: Trade Y1 R1 Tuxhedoh

11) zoltar: Build G1 Zoltar

12) Tuxhedoh: Build Y1 Tuxhedoh

13) zoltar: Trade G1 B1 Zoltar

14) Tuxhedoh: Build G1 Tuxhedoh

15) zoltar: Build G1 Zoltar

16) Tuxhedoh: Discover G1 Tuxhedoh R2 Barney

17) zoltar: Discover G1 Zoltar Y1 Yellowstone

18) Tuxhedoh: Build G2 Tuxhedoh

19) zoltar: Build G2 Zoltar

20) Tuxhedoh: Move Y1 Tuxhedoh Barney

21) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build G3 Yellowstone

22) Tuxhedoh: Move G1 Barney Yellowstone

23) zoltar: Sacrifice R1 Zoltar
Attack G1 Yellowstone
	Tuxhedoh: doh

24) Tuxhedoh: Build Y2 Tuxhedoh

25) zoltar: Move G3 Yellowstone Barney

26) Tuxhedoh: Move Y1 Barney Yellowstone
	zoltar: I forgot I could capture it!
	Tuxhedoh: i've never quite gotten my head around sacrificing.... but you seem to be using it quite effectively
	Tuxhedoh: and have me locked out of green.

27) zoltar: Sacrifice G2 Zoltar
Build Y2 Zoltar
Build G2 Barney

28) Tuxhedoh: Build R1 Tuxhedoh

29) zoltar: Trade G2 R2 Zoltar
	zoltar: Yes, I've built a green 'factory'.

30) Tuxhedoh: Build Y2 Tuxhedoh

31) zoltar: Discover Y1 Zoltar B1 Blueridge
	Tuxhedoh: you got all kinds of tricks... with that sacrifice

32) Tuxhedoh: Trade Y2 B2 Tuxhedoh

33) zoltar: Sacrifice G3 Barney
Build Y2 Blueridge
Build Y3 Blueridge
Build Y3 Zoltar
	zoltar: That one I call the "teleport".  You can teleport a g2 to another green base for free when you do a build.
	zoltar: The third green trick is called "the investment", which would be where I'd stick a g1 or g2 on a lone 3-sized star, such as a Y3 or R3, and then when that color is used up, I sac the green ship and build the 3-sized ship in a crucial place (with the g2 sac, you also get to build the g2 back again).
	Tuxhedoh: and this is where I flake out... I have no idea what to do next.

34) Tuxhedoh: Trade B2 R2 Tuxhedoh

35) zoltar: Sacrifice Y3 Blueridge
Move R2 Zoltar Blueridge
Move R2 Blueridge Barney
Move R2 Barney Tuxhedoh
Catastrophe Tuxhedoh R

36) Tuxhedoh: Discover G1 Tuxhedoh B2 Leroy

37) zoltar: Discover Y1 Blueridge B2 Bluemountains

38) Tuxhedoh: Move Y2 Tuxhedoh Leroy

39) zoltar: Sacrifice G1 Yellowstone
Build Y3 Bluemountains

40) Tuxhedoh: Build G1 Leroy
	Tuxhedoh: any suggestions for recovery?
	zoltar: well, after my sacrifice, I'm ahead some extra pieces, and I'm going to threaten to blow up your green star, so you need to build ships as fast as possible and avoid more catastrophes.
	zoltar: moving a green ship out so that you could build more green as well as avoid a green star catastrophe would be a good idea.  And as soon as I get a red ship again, you will need one as well.

41) zoltar: Build B3 Zoltar
	Tuxhedoh: Sorry for my abscence...

	Tuxhedoh: in order to get any of those blues? I have to trade my y3 in huh?
	zoltar: Yep, which probably would be giving me the y3...
	Tuxhedoh: well fart.  It's my inclination to give up, mostly cause I dont' know what to do next... I'm willing to hang around if you have any pointers.
	zoltar: As someone who myself gets easily discouraged and tends to resign too soon (usually by intentionally blowing up my system to go out with a bang), I would be a hypocrite to tell you to endure more.  If you want to resign and start over, that might be better, unless you want pointers on how to bully someone when you've got them totally outnumbered (for example, you get two Y3's set up so you can sac them on two consecutive turns and invade and take out both stars one after another).  Here, I'm going to move a blue ship out, then sac my g2 and build the other b3's, then exchange them for r3's, then build b3's again, and so forth, and it's hard for you to stop me.


4130)
Started: 2006.8.31, Ended: 2006.9.5
Participants: tesla (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y1 G3
	tesla: Hi, I hope playing better than last time. I've read the rules again

2) tesla: Homeworld G3 B2 Y3
	zoltar: OK -- good luck!

3) zoltar: Build G1 Zoltar

4) tesla: Build Y1 Tesla

5) zoltar: Trade G3 Y3 Zoltar

6) tesla: Trade Y1 G1 Tesla

7) zoltar: Build Y1 Zoltar

8) tesla: Build Y1 Tesla

9) zoltar: Trade Y1 R1 Zoltar

10) tesla: Discover Y1 Tesla G1 Salte

11) zoltar: Build G2 Zoltar

12) tesla: Build G2 Tesla

13) zoltar: Discover G2 Zoltar Y2 Bananas

14) tesla: Trade G2 B2 Tesla

15) zoltar: Build G2 Bananas

16) tesla: Move B2 Tesla Salte

17) zoltar: Move G2 Bananas Salte

18) tesla: Move G1 Tesla Salte

19) zoltar: Build G2 Salte
Catastrophe Salte G

20) tesla: Build Y1 Tesla

21) zoltar: Build G1 Bananas

22) tesla: Build Y1 Tesla

23) zoltar: Build Y2 Zoltar

24) tesla: Discover Y1 Tesla G1 Telas

25) zoltar: Discover Y2 Zoltar G2 Limes

26) tesla: Trade Y3 G3 Tesla

27) zoltar: Build G2 Bananas

28) tesla: Build G3 Tesla

29) zoltar: Sacrifice Y2 Limes
Move G1 Bananas Telas
Move G1 Telas Tesla
Catastrophe Tesla G

30) tesla: Build Y2 Telas

31) zoltar: Move G2 Bananas Telas

32) tesla: Move Y2 Telas Tesla

33) zoltar: Move Y3 Zoltar Tesla

34) tesla: Trade Y1 G1 Tesla

35) zoltar: Sacrifice R1 Zoltar
Attack Y2 Tesla
	zoltar: Building that second g3 was a fatal mistake, leaving your homeworld indefensible after the catastrophe.
	tesla: ok, it's true, thanks

36) tesla: Build G2 Tesla
	tesla: Homeworld it's a very interesting game, one day I'll learn to play it

37) zoltar: Sacrifice Y3 Tesla
Move G2 Bananas Telas
Move G2 Telas Tesla
Move G2 Telas Tesla
Catastrophe Tesla G

	zoltar: Wait -- there's a more elegant ending.  Thanx! Play again?
	tesla: congratulations


4138)
Started: 2006.9.1, Ended: 2006.9.17
Participants: antihero (S), Tuxhedoh (N)
Winner: antihero

1) Tuxhedoh: Homeworld B2 Y1 G3

2) antihero: Homeworld Y3 B1 G3
	Tuxhedoh: FWIW, I'm out of town from this evening, and travelling home on Tuesday. I'll probably be able to get some moves in, but just wanted to let you know
	antihero: hey no problem. I might be heading to NYC for the weekend, in which case I probably won't get many moves in.

3) Tuxhedoh: Build G1 Tuxhedoh

4) antihero: Build G1 Antihero

5) Tuxhedoh: Trade G1 R1 Tuxhedoh

6) antihero: Trade G1 R1 Antihero

7) Tuxhedoh: Build G1 Tuxhedoh

8) antihero: Build G1 Antihero

9) Tuxhedoh: Trade G1 B1 Tuxhedoh

10) antihero: Trade G1 Y1 Antihero

11) Tuxhedoh: Build G1 Tuxhedoh

12) antihero: Build G1 Antihero

13) Tuxhedoh: Discover G1 Tuxhedoh B3 Zeke

14) antihero: Discover G1 Antihero Y2 Yolena

15) Tuxhedoh: Build B1 Tuxhedoh

16) antihero: Build Y1 Antihero

17) Tuxhedoh: Move B1 Tuxhedoh Zeke

18) antihero: Discover Y1 Antihero G2 Jacob

19) Tuxhedoh: Build B2 Tuxhedoh

20) antihero: Build Y2 Jacob

21) Tuxhedoh: Trade B2 Y2 Tuxhedoh

22) antihero: Build Y3 Antihero

23) Tuxhedoh: Build Y3 Tuxhedoh

24) antihero: Sacrifice Y2 Jacob
Discover Y1 Jacob G3 Wormhole
Move Y1 Wormhole Tuxhedoh
Catastrophe Tuxhedoh Yellow

25) Tuxhedoh: Trade B1 Y1 Zeke
	Tuxhedoh: DOH

26) antihero: Trade Y1 B1 Antihero

27) Tuxhedoh: Build B2 Tuxhedoh

28) antihero: Move B1 Antihero Tuxhedoh
Catastrophe Tuxhedoh Blue
	antihero: After I stared long enough, I noticed that our homeworlds were directly connected. Good game.



4136)
Started: 2006.9.3, Ended: 2006.9.5
Participants: jerzy (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y2 G3

2) jerzy: Homeworld G3 Y2 B3

3) zoltar: Build G1 Zoltar

4) jerzy: Build B1 Jerzy

5) zoltar: Trade G1 R1 Zoltar

6) jerzy: Trade B1 R1 Jerzy

7) zoltar: Build G1 Zoltar

8) jerzy: Build B1 Jerzy

9) zoltar: Trade G1 Y1 Zoltar

10) jerzy: Trade B1 G1 Jerzy

11) zoltar: Build G1 Zoltar

12) jerzy: Build B1 Jerzy

13) zoltar: Trade G1 B1 Zoltar

14) jerzy: Trade B1 Y1 Jerzy

15) zoltar: Build G1 Zoltar

16) jerzy: Build G1 Jerzy

17) zoltar: Discover G1 Zoltar B1 Blueberry

18) jerzy: Move R1 Jerzy Blueberry

19) zoltar: Sacrifice R1 Zoltar
Attack R1 Blueberry

20) jerzy: Trade G1 R1 Jerzy

21) zoltar: Move Y1 Zoltar Blueberry

22) jerzy: Discover Y1 Jerzy G1 Galathea
	zoltar: m y1 zoltar blueberry

23) zoltar: Build G2 Zoltar

24) jerzy: Build G2 Jerzy

25) zoltar: Move G1 Blueberry Jerzy
Catastrophe Jerzy G

26) jerzy: Build Y1 Galathea

27) zoltar: Sacrifice G2 Zoltar
Build Y2 Blueberry
Build Y3 Blueberry

28) jerzy: Discover Y1 Galathea G3 Xugaton

29) zoltar: Move Y3 Blueberry Xugaton

30) jerzy: Build Y3 Galathea

31) zoltar: Sacrifice R1 Blueberry
Attack Y1 Xugaton

32) jerzy: Move Y3 Galathea Zoltar

33) zoltar: Sacrifice Y3 Xugaton
Move Y1 Xugaton Jerzy
Move Y1 Blueberry Jerzy
Move Y2 Blueberry Jerzy
Catastrophe Jerzy Y

	zoltar: Thanks for the game!  Play again?
	jerzy: Nice playing with you too. This was my first time at this game. Let's play again, sure.


4147)
Started: 2006.9.4, Ended: 2006.10.12
Participants: antihero (S), Uglyfoot (N)
Winner: antihero

1) Uglyfoot: Homeworld B3 Y1 G3

2) antihero: Homeworld B2 Y3 G3

3) Uglyfoot: Build G1 Uglyfoot

4) antihero: Build G1 Antihero

5) Uglyfoot: Discover G1 Uglyfoot B2 Trader

6) antihero: Trade G1 Y1 Antihero

7) Uglyfoot: Build G1 Uglyfoot

8) antihero: Build Y1 Antihero

9) Uglyfoot: Build G1 Uglyfoot

10) antihero: Build G2 Antihero

11) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Trader
Build G2 Trader
Build G3 Uglyfoot

12) antihero: Build G3 Antihero

13) Uglyfoot: Trade G2 Y2 Trader
	antihero: I'm sorry that took so long.

14) antihero: Discover G3 Antihero B1 Switch

15) Uglyfoot: Discover G1 Trader R1 Battlestar
	Uglyfoot: Please reconsider your last move (undo).  You traded for your 4th yellow ship in your homeworld which will let me cause a catastrophe there.  Setting you back while I continue my mad scheming.
	antihero: oh geez. thanks.
	antihero: Why did I want to do that anyways, I wonder?

16) antihero: Build G2 Switch

17) Uglyfoot: Trade G1 R1 Uglyfoot

18) antihero: Trade G2 R2 Antihero

19) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Trader
Build G2 Battlestar
Build G3 Uglyfoot

20) antihero: Move Y1 Antihero Switch

21) Uglyfoot: Sacrifice Y2 Trader
Move G1 Trader Switch
Move G2 Trader Switch
Catastrophe Switch G

22) antihero: Build Y2 Antihero

23) Uglyfoot: Trade G1 B1 Uglyfoot

24) antihero: Move Y2 Antihero Switch

25) Uglyfoot: Sacrifice B1 Uglyfoot
Trade G2 Y2 Battlestar

26) antihero: Trade Y1 G1 Switch

27) Uglyfoot: Build G1 Uglyfoot

28) antihero: Build G2 Antihero

29) Uglyfoot: Build G2 Battlestar

30) antihero: Move G2 Antihero Switch

31) Uglyfoot: Discover G1 Uglyfoot Y2 Movin'out

32) antihero: Discover G2 Switch Y3 Chillin'

33) Uglyfoot: Build R1 Uglyfoot

34) antihero: Build R2 Antihero

35) Uglyfoot: Trade R1 B1 Uglyfoot

36) antihero: Move G2 Chillin' Movin'out

37) Uglyfoot: Build G2 Movin'out

38) antihero: Build G3 Switch

39) Uglyfoot: Move G1 Movin'out Switch

40) antihero: Trade G1 B1 Switch

41) Uglyfoot: Sacrifice R1 Uglyfoot
Attack G2 Movin'out

42) antihero: Sacrifice Y2 Switch
Move G3 Switch Movin'out
Move G3 Movin'out Uglyfoot

43) Uglyfoot: Trade G3 R3 Uglyfoot

44) antihero: Sacrifice R2 Antihero
Attack B1 Uglyfoot
Attack R3 Uglyfoot

	antihero: Thanks for the game. It was pretty even up until that move, I thought.


4150)
Started: 2006.9.5, Ended: 2006.9.6
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) zoltar: Homeworld Y3 B1 G3

3) TwoShort: Build G1 Twoshort

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G3 Y3 Twoshort

6) zoltar: Trade G1 Y1 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build Y1 Zoltar

9) TwoShort: Discover G1 Twoshort Y3 Yoyodyne

10) zoltar: Discover Y1 Zoltar G2 Greenhills

11) TwoShort: Build G1 Twoshort

12) zoltar: Build G2 Zoltar

13) TwoShort: Build G2 Twoshort

14) zoltar: Discover G2 Zoltar Y2 Yellowstone

15) TwoShort: Build G3 Yoyodyne

16) zoltar: Build G3 Yellowstone

17) TwoShort: Discover G1 Twoshort B3 Volyova

18) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build Y1 Greenhills
Build Y2 Zoltar

19) TwoShort: Sacrifice G1 Yoyodyne
Build Y2 Twoshort
	zoltar: Hello again! I was hoping to play you again soon. As you see, my rating is inflated from beating up on beginners. Though I finally won a game (for the first time ever) with world champion Andy Looney in person last week. Whew who! Though I had the advantage you have in this game: I went first and played "the banker" setup. Which means I'll have an uphill battle the whole game here.

20) zoltar: Trade Y1 R1 Zoltar

21) TwoShort: Trade G2 R2 Twoshort

22) zoltar: Move R1 Zoltar Yellowstone
	TwoShort: I've lost 4 out of 4 against Andy in person, despite beating him 3 out of 3 online.  He's got the "banker" set up nicely in our current game though.  I've started from this homwworld before, but this is my first experiment with the early trade of my capital ship to lock up the y3s.  

23) TwoShort: Build G1 Volyova

24) zoltar: Sacrifice G3 Yellowstone
Build G2 Zoltar
Build G3 Yellowstone
Build R1 Yellowstone

25) TwoShort: Sacrifice Y2 Twoshort
Move G1 Volyova Yellowstone
Move G1 Volyova Yellowstone
Catastrophe Yellowstone Green

26) zoltar: Discover G2 Zoltar Y2 Bananas
	zoltar: Yep, I didn't see how I could avoid that one.
	zoltar: As usual with you, I'm pretty much lost after a few moves!

27) TwoShort: Build G1 Yoyodyne

28) zoltar: Move R1 Yellowstone Yoyodyne

29) TwoShort: Move R2 Twoshort Yoyodyne

30) zoltar: Sacrifice G2 Bananas
Build R2 Yoyodyne
Build R2 Yoyodyne
Catastrophe Yoyodyne R

31) TwoShort: Build G1 Twoshort

32) zoltar: Build G2 Zoltar

33) TwoShort: Trade G1 R1 Twoshort

34) zoltar: Discover G2 Zoltar Y2 Bananas

35) TwoShort: Discover G1 Yoyodyne B2 Illia

36) zoltar: Build Y1 Zoltar

37) TwoShort: Build G1 Yoyodyne

38) zoltar: Build G2 Zoltar

39) TwoShort: Sacrifice G3 Yoyodyne
Build G3 Twoshort
Build G3 Illia
Pass

40) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Yellowstone
Build R2 Yellowstone

41) TwoShort: Sacrifice G1 Yoyodyne
Build Y3 Twoshort

	zoltar: Aha -- the factory.  That gives you 4 battlestars to my one.  Well, I think I blew this game.  Glad to be reminded I'm still a beginner!  We should play more, TwoShort.  I'm going to take on Andy again tomorrow night, but I think it will be another dozen games before I beat him again...
	zoltar: The 'investment' part of the banker setup seems to be a crucial middle game strategy.  My position is already lost.  
	TwoShort: And here I was thinking you had more abiltiy to move your shipd around, and were in a better position to get the big reds.  Call them like you see them I guess, but it didn't feel over to me...


4159)
Started: 2006.9.5, Ended: 2006.9.11
Participants: zoltar (S), jerzy (N)
Winner: zoltar

1) jerzy: Homeworld Y3 B2 G3

2) zoltar: Homeworld R1 B3 G3

3) jerzy: Build G1 Jerzy

4) zoltar: Build G1 Zoltar

5) jerzy: Trade G1 R1 Jerzy

6) zoltar: Trade G1 R1 Zoltar

7) jerzy: Build R2 Jerzy

8) zoltar: Build R2 Zoltar

9) jerzy: Build R2 Jerzy

10) zoltar: Trade R2 Y2 Zoltar

11) jerzy: Trade R2 G2 Jerzy

12) zoltar: Build R2 Zoltar

13) jerzy: Build R2 Jerzy

14) zoltar: Discover R1 Zoltar Y2 Yellowstone

15) jerzy: Trade R2 Y2 Jerzy
	jerzy: Where are you from?

16) zoltar: Discover Y2 Zoltar G2 Greenbelt

17) jerzy: Discover G2 Jerzy B1 Tinyspot

18) zoltar: Build R2 Zoltar

19) jerzy: Build R3 Jerzy

20) zoltar: Sacrifice Y2 Greenbelt
Move R1 Yellowstone Tinyspot
Move R1 Tinyspot Jerzy
Catastrophe Jerzy R

21) jerzy: Build G1 Jerzy

22) zoltar: Trade R2 Y2 Zoltar

23) jerzy: Trade G1 R1 Jerzy

24) zoltar: Discover R2 Zoltar G2 Greenbelt

25) jerzy: Move R1 Jerzy Tinyspot

26) zoltar: Build G1 Zoltar

27) jerzy: Build G1 Tinyspot

28) zoltar: Discover G1 Zoltar Y2 Yellowsprings

29) jerzy: Trade G1 Y1 Tinyspot

30) zoltar: Build G1 Zoltar

31) jerzy: Trade Y2 R2 Jerzy

32) zoltar: Build Y1 Zoltar

33) jerzy: Build G1 Jerzy

34) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build G3 Yellowsprings

35) jerzy: Trade R2 Y2 Jerzy

36) zoltar: Discover G2 Zoltar B2 Blueridge

37) jerzy: Trade G1 R1 Jerzy

38) zoltar: Sacrifice G3 Zoltar
Build G1 Blueridge
Build G3 Zoltar
Build R2 Greenbelt

39) jerzy: Build R2 Tinyspot

40) zoltar: Sacrifice Y2 Zoltar
Move G3 Yellowsprings Tinyspot
Discover R2 Greenbelt B1 Blueberry

41) jerzy: Build R3 Jerzy

42) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Greenbelt
Build R3 Blueberry

43) jerzy: Move R2 Tinyspot Blueridge

44) zoltar: Sacrifice R3 Greenbelt
Attack R2 Blueridge
Attack R1 Tinyspot
Attack Y1 Tinyspot

45) jerzy: Discover R3 Jerzy Y1 Goldie

46) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Tinyspot
Build R3 Blueridge

47) jerzy: Move R3 Goldie Yellowsprings

48) zoltar: Discover G1 Yellowsprings Y1 Goldie

49) jerzy: Sacrifice Y2 Jerzy
Move R3 Yellowsprings Goldie
Move R3 Goldie Greenbelt

50) zoltar: Attack G2 Tinyspot
	jerzy: Let's play it out anyway.

51) jerzy: Attack R2 Greenbelt
	zoltar: It's tough when you're up against the green 'factory'.

52) zoltar: Sacrifice Y2 Tinyspot
Move R2 Blueberry Greenbelt
Move R1 Tinyspot Greenbelt
Catastrophe Greenbelt R

53) jerzy: Build G2 Jerzy

54) zoltar: Sacrifice G3 Tinyspot
Build G3 Goldie
Build Y2 Tinyspot
Build Y2 Zoltar
	zoltar: Yikes! Big red mean alien machine spotted off zee port bow -- evasive action -- run for your lives!

55) jerzy: Build R1 Jerzy
	jerzy: Just learning how to sacrifice -- that's something I haven't got the knack of just yet.

56) zoltar: Sacrifice Y2 Zoltar
Move G3 Goldie Jerzy
Move G2 Tinyspot Jerzy
Catastrophe Jerzy G
	zoltar: There are lots of tricks that deal with sacrifices -- they are the hardest moves to find and to anticipate, I think.

57) jerzy: Move R1 Jerzy Goldie

58) zoltar: Sacrifice Y1 Tinyspot
Move R3 Blueberry Jerzy

59) jerzy: Pass

60) zoltar: Sacrifice R2 Blueridge
Attack R1 Goldie
Attack R1 Jerzy

	jerzy: yes, let's..


4135)
Started: 2006.9.6, Ended: 2006.10.13
Participants: Aaron (S), zoltar (W), tesla (N), jerzy (E)
Winner: zoltar

1) tesla: Homeworld B1 Y2 G3

2) jerzy: Homeworld B3 Y2 G3

3) Aaron: Homeworld B2 Y1 G3

4) zoltar: Homeworld R3 B1 G3
	Aaron: sorry...hit the wrong button

5) tesla: Build G1 Tesla

6) jerzy: Build G1 Jerzy

7) Aaron: Build G1 Aaron

8) zoltar: Build G1 Zoltar

9) tesla: Trade G1 Y1 Tesla

10) jerzy: Trade G1 Y1 Jerzy

11) Aaron: Trade G1 Y1 Aaron

12) zoltar: Trade G3 Y3 Zoltar

13) tesla: Build G1 Tesla

14) jerzy: Build G1 Jerzy
	zoltar: I like to break traditions...

15) Aaron: Build G1 Aaron

16) zoltar: Build Y1 Zoltar
	jerzy: Just to make things clear: this multiplayer implementation is Sinister HW, right?
	jerzy: ops, it's not. So, does one actually have to eliminate all oponents?
	Aaron: Nay, Sinister is a variant.  The default implementation is "Last Man Standing."  If that's a problem for everyone, I can go ahead and change it.
	jerzy: Ok, get it. Not a problem for me.

17) tesla: Build Y2 Tesla

18) jerzy: Build Y2 Jerzy

19) Aaron: Discover G1 Aaron Y3 Bananas

20) zoltar: Discover Y1 Zoltar Y2 Lemons

21) tesla: Trade Y2 R2 Tesla

22) jerzy: Trade G1 R1 Jerzy

23) Aaron: Build G1 Aaron

24) zoltar: Build Y2 Zoltar

25) tesla: Build Y3 Tesla

26) jerzy: Discover Y1 Jerzy G1 Lime

27) Aaron: Trade G1 R1 Aaron

28) zoltar: Trade Y2 R2 Zoltar
	jerzy: Anyone fancy a POVRay Homeworlds game via e-mail?

29) tesla: Discover Y1 Tesla G3 Apple

30) jerzy: Build Y2 Lime

31) Aaron: Build Y3 Aaron

32) zoltar: Build Y3 Zoltar

33) tesla: Trade G1 B1 Tesla

34) jerzy: Build G1 Jerzy

35) Aaron: Discover Y3 Aaron G3 Avocado

36) zoltar: Discover Y3 Zoltar B2 Grapes

37) tesla: Move B1 Tesla Apple

38) jerzy: Trade G1 B1 Jerzy
	jerzy: Hey folks, 
I'll be away for the weekend, so please be patient: I may take a while to make my move, ok?
	Aaron: No worries here =)

39) Aaron: Build R1 Aaron

40) zoltar: Move R2 Zoltar Lemons

41) tesla: Build R1 Tesla

42) jerzy: Move B1 Jerzy Lime

43) Aaron: Move R1 Aaron Avocado

44) zoltar: Build G1 Zoltar

45) tesla: Move G3 Tesla Apple

46) jerzy: Trade Y1 G1 Lime

47) Aaron: Build G2 Bananas

48) zoltar: Move G1 Zoltar Lemons

49) tesla: Discover G3 Apple Y1 Peach

50) jerzy: Trade Y2 R2 Lime

51) Aaron: Build Y2 Avocado

52) zoltar: Build G2 Zoltar

53) tesla: Build G2 Peach

54) jerzy: Build G2 Jerzy

55) Aaron: Build G2 Aaron

56) zoltar: Move Y3 Grapes Lime

57) tesla: Move G3 Peach Apple

58) jerzy: Build R1 Lime

59) Aaron: Build R2 Avocado

60) zoltar: Sacrifice R2 Lemons
Attack R2E Lime
Attack R1E Lime

61) tesla: Move R1 Tesla Apple

62) Aaron: Build R2 Aaron

63) zoltar: Move Y3 Lime Jerzy

64) tesla: Build R2 Apple

65) Aaron: Move R1 Aaron Bananas

66) zoltar: Sacrifice R2 Lime
Attack G3E Jerzy
Attack R1E Jerzy

67) tesla: Move R1 Apple Peach

68) Aaron: Build R2 Bananas

69) zoltar: Sacrifice G2 Zoltar
Build R3 Lime
Build R3 Jerzy

70) tesla: Sacrifice G2 Peach
Build R3 Peach
Build R3 Apple

71) Aaron: Move Y1 Aaron Bananas

72) zoltar: Attack Y2E Jerzy

73) tesla: Move R3 Apple Lemons

74) Aaron: Sacrifice Y2 Avocado
Move Y1 Bananas Peach
Move Y1 Peach Jerzy
Catastrophe Jerzy Y

75) zoltar: Attack G2E Jerzy

76) tesla: Attack G1W Lemons

77) Aaron: Trade G2 Y2 Aaron

78) zoltar: Trade R1 Y1 Jerzy

79) tesla: Move R3 Lemons Zoltar

80) Aaron: Trade Y2 B2 Aaron

81) zoltar: Attack R3N Zoltar

82) tesla: Move G1 Lemons Peach

83) Aaron: Build Y2 Avocado

84) zoltar: Sacrifice G3 Jerzy
Build Y2 Lemons
Build Y2 Jerzy
Build Y3 Zoltar

85) tesla: B G2 Peach

86) Aaron: Move B2 Aaron Avocado

87) zoltar: Sacrifice Y3 Zoltar
Move Y1 Jerzy Tesla
Move Y2 Jerzy Tesla
Move R3 Jerzy Tesla
Catastrophe Tesla Y

88) tesla: Move R3 Peach Lemons

89) Aaron: Move Y2 Avocado Lemons
Catastrophe Lemons Y

90) zoltar: Attack R2N Tesla

91) Aaron: Discover R2 Avocado Y2 Lemons

92) zoltar: Build G2 Jerzy

93) Aaron: Move R1 Bananas Lemons

94) zoltar: Discover R3 Zoltar Y2 Pineapples

95) Aaron: Move R2 Lemons Peach

96) zoltar: Move R3 Pineapples Apple

97) Aaron: Attack R1N Peach

98) zoltar: Attack G3N Apple

99) Aaron: Attack G2N Peach

100) zoltar: Attack Y1N Apple

101) Aaron: Attack G1N Peach

102) zoltar: Sacrifice Y1 Apple
Move G2 Jerzy Lemons

103) Aaron: Sacrifice Y3 Avocado
Move G2 Peach Apple
Move G1 Peach Apple
Move R1 Lemons Tesla
Catastrophe Apple Green

104) zoltar: Trade R2 Y2 Tesla

105) Aaron: Build B1 Avocado

106) zoltar: Attack R1S Tesla

107) Aaron: Trade B1 Y1 Avocado

108) zoltar: Attack B1E Lime

109) Aaron: Move R1 Avocado Lime

110) zoltar: Trade R3 Y3 Lime

111) Aaron: Build R1 Lime

112) zoltar: Move R3 Tesla Avocado

113) Aaron: Sacrifice B2 Avocado
Trade R1 G1 Lime
Trade G1 B1 Bananas

114) zoltar: Move Y3 Lime Bananas

115) Aaron: Build G1 Lime
Catastrophe Lime Green

116) zoltar: Sacrifice R1 Tesla
Attack R2S Bananas

117) Aaron: Sacrifice R1 Peach
Attack R2W Bananas

118) zoltar: Attack Y1S Avocado

119) Aaron: Move R2 Bananas Lemons

120) zoltar: Sacrifice R3 Avocado
Attack R2S Lemons
Attack G2S Bananas
Attack B1S Bananas

121) Aaron: Build R1 Aaron

122) zoltar: Sacrifice G2 Jerzy
Build Y1 Avocado
Build Y1 Avocado

123) Aaron: Discover R2 Peach Y2 Tulips

124) zoltar: Sacrifice G2 Lemons
Build B1 Bananas
Build B1 Bananas
	Aaron: This is the other problem with "Last man standing" games...the economy gets way off-balance in the endgame.

	zoltar: Zee Death Star ease now fooly funkshunall...
	Aaron: Thanks for the game!


4166)
Started: 2006.9.6, Ended: 2006.9.8
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B1 R2 G3

2) zoltar: Homeworld B3 Y3 G3 *

3) TwoShort: Build G1 Twoshort
	zoltar: I suppose this might be the only defence against the banker...
	TwoShort: Gack! The micro-verse! Well, I've contemplated trying it in the past, but couldn't really figure out how it would go.  I guess we'll see...

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G1 Y1 Twoshort
	zoltar: what else could I do?

6) zoltar: Trade G1 Y1 Zoltar
	TwoShort: Well, I don't really consider the banker as overwhelming as you do. Even a merely small universe would let you move right to the 3 points to attack my investments or make your own.  In any case, I've never played with adjacent homeworlds, so I'm eager to see how it goes.

7) TwoShort: Build G1 Twoshort

8) zoltar: Build G1 Zoltar

9) TwoShort: Move G1 Twoshort Zoltar

10) zoltar: Trade G3 R3 Zoltar

11) TwoShort: Build G1 Zoltar
	zoltar: Am I dead already on the third move? Geesh!

12) zoltar: Attack G1 Zoltar
	zoltar: Better to have a big one, I guess,,,

13) TwoShort: Trade G1 Y1 Zoltar

14) zoltar: Sacrifice Y1 Zoltar
Discover G1 Zoltar Y2 Yuck

15) TwoShort: Build Y1 Twoshort

16) zoltar: Attack Y1 Zoltar
	TwoShort: Hey, I thought if I submitted a move not having seen your undo, my move shouldn't go through?
	TwoShort: Guess I want to do that anyway...


17) TwoShort: Move Y1 Twoshort Zoltar

18) zoltar: Discover Y1 Zoltar G2 Grok
	zoltar: One would think that there would be a safeguard so that your move would be rejected if it was in response to a move which had been changed. Is there such a safeguard on this site? I've never been in the situation.

19) TwoShort: Sacrifice G3 Twoshort
Build Y2 Zoltar
Build Y2 Zoltar
Build Y3 Twoshort
Catastrophe Zoltar Yellow

20) zoltar: Build Y1 Grok

21) TwoShort: Trade Y1 G1 Twoshort

22) zoltar: Build G2 Yuck

23) TwoShort: Build G2 Twoshort

24) zoltar: Build G3 Zoltar
	zoltar: very sneaky

25) TwoShort: Trade G1 B1 Twoshort
	TwoShort: Not sure if I can finish you off though; I think those seperate outposts will give you flexibility

26) zoltar: Discover Y1 Grok B3 Blah

27) TwoShort: Build B1 Twoshort
	zoltar: I hope so. Though in retrospect a double-middle-star system may have been interesting, as I could both contest the big stars for the 'investment', as well as take key small stars to control the change of size at crucial times.

28) zoltar: Sacrifice G2 Yuck
Build Y1 Blah
Build Y2 Grok

29) TwoShort: Discover B1 Twoshort Y3 Stash

30) zoltar: Sacrifice G3 Zoltar
Build Y2 Blah
Build Y3 Grok
Build G1 Zoltar

31) TwoShort: Build B2 Twoshort

32) zoltar: Trade Y2 B2 Blah

33) TwoShort: Sacrifice Y3 Twoshort
Move B1 Twoshort Zoltar
Move B2 Twoshort Zoltar
Discover B1 Stash Y2 Checkmate
	zoltar: It's over -- can't stop you from trashing my blue star

34) zoltar: Trade R3 B3 Zoltar
Catastrophe Zoltar B
	TwoShort: Looks that way...

	TwoShort: As for abandoning one's homeworld, I had a conversation with John Cooper a while ago to the effect that that rule should really be eliminated.  You'd still lose if you do it, but you might be able to wrest a draw out of an otherwise losing position by simutaneously destroying your opponent.  Since all the rule really does is eliminate what is otherwise an interesting emergent posibility, perhaps it should be done away with...
	zoltar: Hmm. I can't even sac my r3 to capture these, can I?
Oh well. I'm now convinced that the banker is a forced win. 
	TwoShort: Well, I'm not.  When you traded your yellow to blue, you could have instead sac'd your y3 to move in 3 ys from blah, causing a catastrophe and leaving me with no 3 pointer, while you'd still have had the R3...  I was already planning to get a red so I could destroy half my homeworld in a desperate defense...
	zoltar: Hmm. I never saw any of that.


4192)
Variants: "Unrated"
Started: 2006.9.7, Ended: 2006.9.11
Participants: Fabi (S), jerzy (N)
Winner: jerzy

1) jerzy: Homeworld B2 R1 G3

2) Fabi: Homeworld B3 Y1 G3

3) jerzy: Build G1 Jerzy

4) Fabi: Build G1 Fabi
	jerzy: Se você tiver alguma dúvida, só escrever nesse espaço que diz "Send", tá?

5) jerzy: Trade G1 Y1 Jerzy

6) Fabi: Trade G1 R1 Fabi

7) jerzy: Build G1 Jerzy

8) Fabi: Build G1 Fabi

9) jerzy: Trade G1 Y1 Jerzy
	Fabi: Nossa, que jogo hein? hehhe

10) Fabi: Trade G1 R1 Fabi

11) jerzy: Build Y2 Jerzy

12) Fabi: Build R2 Fabi
	jerzy: Tudo bem com você?

13) jerzy: Discover Y1 Jerzy G3 Darwin

14) Fabi: Trade R2 Y2 Fabi

15) jerzy: Build Y2 Darwin

16) Fabi: Discover Y2 Fabi G2 Lamarck
	jerzy: Pode construir um y3 no teu sistema sem medo! Eu não consigo chegar até ele no meu turno seguinte!

	jerzy: ?????????


4160)
Started: 2006.9.8, Ended: 2006.9.9
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld Y2 B1 G3
	TwoShort: Let's see if I can convince you the Banker is defeatable...

2) TwoShort: Homeworld B1 R3 G3

3) zoltar: Build G1 Zoltar
	zoltar: Ok, though your skill probably more than makes up for the difference here, as I'm the worst at openings anyway, but I think it's a huge advantage, worth a few tempi I suppose.

4) TwoShort: Build G1 Twoshort

5) zoltar: Trade G1 Y1 Zoltar

6) TwoShort: Build G1 Twoshort

7) zoltar: Build Y1 Zoltar

8) TwoShort: Trade G1 B1 Twoshort

9) zoltar: Build G1 Zoltar

10) TwoShort: Build B2 Twoshort

11) zoltar: Trade Y1 R1 Zoltar
	zoltar: Well, you've already got an advantage.  Given any opening, you're always going to have a couple extra 2-sized ships than I, as I can't grasp the openings yet and trade correctly, it seems.

12) TwoShort: Trade B2 Y2 Twoshort
	zoltar: ugh, that's no good at all.
	zoltar: I'll have to think some more about this.

13) zoltar: Trade G3 B3 Zoltar

14) TwoShort: Discover B1 Twoshort G2 Grogar

15) zoltar: Build B2 Zoltar

16) TwoShort: Sacrifice Y2 Twoshort
Discover B1 Grogar G3 Boom
Move B1 Boom Zoltar
Catastrophe Zoltar Blue

	zoltar: Oops. Yep, I definitely need to work on openings -- this is like the fool's mate in chess!


4211)
Started: 2006.9.11, Ended: 2006.9.14
Participants: zoltar (S), Personman (N)
Winner: zoltar

1) Personman: Homeworld B3 R1 G3

2) zoltar: Homeworld Y3 B2 G3

3) Personman: Build G1 Personman

4) zoltar: Build G1 Zoltar

5) Personman: Trade G1 Y1 Personman

6) zoltar: Trade G1 Y1 Zoltar

7) Personman: Build G1 Personman

8) zoltar: Build G1 Zoltar

9) Personman: Discover G1 Personman Y2 Particle

10) zoltar: Discover G1 Zoltar B1 Blueberry

11) Personman: Trade Y1 B1 Personman

12) zoltar: Build G1 Zoltar

13) Personman: Build B1 Personman

14) zoltar: Build G2 Blueberry

15) Personman: Move G1 Particle Blueberry

16) zoltar: Trade G2 R2 Blueberry

17) Personman: Build G2 Personman

18) zoltar: Attack G1 Blueberry

19) Personman: Build G2 Personman

20) zoltar: Sacrifice G3 Zoltar
Build G2 Blueberry
Build G3 Zoltar
Build G3 Zoltar

21) Personman: Trade G2 Y2 Personman

22) zoltar: Trade G1 Y1 Blueberry

23) Personman: Discover G2 Personman Y2 Letterbox

24) zoltar: Trade G1 R1 Zoltar

25) Personman: Trade B1 R1 Personman
	zoltar: Zoltar haz 2 g3s and Personman only haz one! Whew Who!

26) zoltar: Build R2 Blueberry

27) Personman: Build B1 Personman

28) zoltar: Discover R2 Blueberry Y2 Lemon

29) Personman: Move B1 Personman Letterbox

30) zoltar: Build R2 Blueberry

31) Personman: Build B2 Letterbox

32) zoltar: Sacrifice G3 Zoltar
Build R3 Zoltar
Build R3 Zoltar
Build R3 Lemon

33) Personman: Sacrifice G2 Letterbox
Build B2 Personman
Build B3 Letterbox
	zoltar: Red Alert! Red Alert! Red fleet, commence pre-emptive strike on personman fleet! Yippee!

34) zoltar: Trade R3 B3 Zoltar

35) Personman: Discover B2 Letterbox G1 Start

36) zoltar: Build R3 Zoltar

37) Personman: Trade B3 G3 Letterbox

38) zoltar: Move B3 Zoltar Start

39) Personman: Build B3 Letterbox

40) zoltar: Sacrifice R1 Zoltar
Attack B2 Start

41) Personman: Move B1 Letterbox Start

42) zoltar: Sacrifice B2 Start
Trade R3 Y3 Lemon
Trade R3 Y3 Zoltar
	zoltar: You are putting up a good fight, Personman. Zoltar will have to find something clever and tricky. 
	Personman: Why thank you!

43) Personman: Trade B2 G2 Personman
	zoltar: Zoltar to minions: Abandon blue fleet; Abandon red fleet; Yellow fleet rulez! 

44) zoltar: Sacrifice G3 Zoltar
Build R1 Lemon
Build R3 Zoltar
Build R3 Zoltar

45) Personman: Build Y1 Personman
	zoltar: Knew ore deers: Abandon green fleet; Red fleet rulz!

46) zoltar: Sacrifice Y1 Zoltar
Move B3 Start Lemon

47) Personman: Move B3 Letterbox Blueberry
	zoltar: Nope -- better keep 4 big sheeps in homeworld to be extra safe.

48) zoltar: Sacrifice Y3 Lemon
Move B3 Lemon Personman
Move R2 Lemon Personman
Move R1 Lemon Personman
Catastrophe Personman R
	zoltar: My double-sack has given zee Zoltarian fleet zee advantage once again! With 4 Battleships protecting zee homeworld, nothing can stop Zoltar from galactic dominion!

49) Personman: Sacrifice G2 Personman
Build B2 Blueberry
Build B2 Blueberry
Catastrophe Blueberry B
	zoltar: Yikes! Blueberry is under attack! The only defense is a good offense! Awl sheeps storm zee Personman homeworld and blow up awl gunz! Attack!

50) zoltar: Sacrifice R3 Zoltar
Attack G3 Personman
Attack Y2 Personman
Attack B1 Personman

51) Personman: Sacrifice G3 Letterbox
Build Y1 Personman
Build Y1 Personman
Build Y2 Personman

52) zoltar: Sacrifice G3 Personman
Build Y2 Personman
Build Y3 Personman
Build B1 Personman

53) Personman: Sacrifice Y1 Personman
Move B1 Start Personman
Catastrophe Personman Y
Catastrophe Personman B
	Personman: At least this way I get to see five ships of the same color in one system... Good game!

	zoltar: Make that 7! Those two sacks of mine not only got me out of trouble but gave me an unstoppable lead, with command of most of the red and yellow. I only saw them one move at a time, and didn't realize how powerful my position was until after I'm made them. Good game.
	Personman: Whee!


4213)
Variants: "No undo"
Started: 2006.9.11, Ended: 2006.9.14
Participants: zoltar (S), unic (N)
Winner: zoltar

1) unic: Homeworld G1 B2 Y3

2) zoltar: Homeworld B3 Y2 G3
	unic: Hello - my first game here :)  Bear with me if I make bad moves - I just learned this game yesterday.

3) unic: Build Y1 Unic
	zoltar: Sure -- I learned in June, lost my first dozen games or so, then got better, and now am near the top, though the top three players can still beat me most of the time.  It's really fun, but the sacrifices are the hardest moves to find as well as anticipate, especially yellow sacrifices allowing someone to move more than once and cause a catastrophe with 4 of the same color.  I love this game -- it's simple and has chess-like tactics and really makes you think, though it takes a while to get used to it and learn all the basic tactics. Good luck.

4) zoltar: Build G1 Zoltar

5) unic: Discover Y1 Unic G3 Stella

6) zoltar: Build G1 Zoltar

7) unic: Build Y1 Unic

8) zoltar: Discover G1 Zoltar B1 Harcourt

9) unic: Build Y1 Stella

10) zoltar: Build G2 Harcourt

11) unic: Trade Y3 G3 Unic

12) zoltar: Sacrifice G3 Zoltar
Build G2 Harcourt
Build G2 Zoltar
Build G3 Zoltar

13) unic: Build Y2 Unic
	unic: Nice maneuver!  I shall bear that one in mind :)

14) zoltar: Trade G2 Y2 Harcourt
	zoltar: I think you had more of an advantage if you continued to build yellow, as movement is crucial.  I have now achieved 'the factory' where I can sacrifice my g3 and then grow it right back with two extra grows, which is a powerful tactical tool. I still need to get into the yellow industry , but now I will have some tricks, because with both your g3 and a green star, if you grow another green (after I trade one of mine for a yellow), I would be able to blow up your greens if I sacrifice my yellow to move a fourth green into your homeworld, so you'll have to look out for that.

15) unic: Build Y3 Unic
	zoltar: I think you have the advantage, though, because of your lead in yellow (I'm terrible at openings, even with beginners).

16) zoltar: Trade G3 Y3 Zoltar

17) unic: Sacrifice Y2 Unic
Move Y1 Unic Stella
Move Y1 Stella Harcourt
	zoltar: You're playing very well.  That last move threatened checkmate (if I ignored the threat, you sac your Y3 and move your G3 all the way from your homeworld to mine, creating a catastrophe that wipes out all my green pieces and wins the game.)

18) zoltar: Trade Y3 R3 Zoltar

19) unic: Build Y2 Unic
	zoltar: Excellent move, showing me that my last move was wasted, giving you yet another free move. But I'm not ready to resign yet.

20) zoltar: Trade G2 R2 Harcourt

21) unic: Build Y3 Unic
	zoltar: You must be a chess player, as you play much better than I at this game!

22) zoltar: Attack Y1 Harcourt
	unic: No, not a chess player.  I used to play Othello competitively a few years back though... and play all sorts of abstract games just for fun.  Traditional western chess has never caught my fancy however.

23) unic: Sacrifice Y2 Unic
Move Y1 Stella Harcourt
Move Y1 Stella Harcourt
Catastrophe Harcourt Y

24) zoltar: Build G2 Harcourt

25) unic: Trade Y3 G3 Unic
	zoltar: I played chess first, then switched to the Japanese varient Shogi, which I liked even better; then when planning on teaching chess to my cousins (age ranging 4-12), I looked for simpler abstract games to start them with, and discovered a world of wonderful games I never knew existed. Then, to my even greater suprise, the author of several of the games I subsequently purchased lived in my neighborhood! I met Andy Looney (creator of the IceHouse pieces) and the gaming author of homeworlds, John Cooper, who both live a mile from me in either direction! John Cooper gave me some games, such as "Lost Cities", one of his favorites -- he likes the author Reiner Knizia, and at his house I've played other great Knizia games, such as Ra, John's favorite. John told me next time I visit, he is going to teach me another of his favorites: Lord of the Rings - The Confrontation. I love having a rocket scientist and game author neighbor who has such fun games that I've never heard of.

Since then, I've gotten a couple dozen games, (I buy them used on eBay, then resell ones neither I nor my cousins find really fun).  Our favorites: Flux and SET card games (set is amazing for young kids, as a sharp 6 year old cousin can beat me, and that wouldn't happen with, say, chess); Blokus (a rare 4-player game without randomizers or hidden information that actually works and is pretty), Cathedral (beautiful wooden pieces), Quarto and then the even better Quoridor from Gigamic (I bought a bunch of games from that company, Gigamic); Gobblet (another tic-tac-toe improvement like Quarto, but you can make your own set with IceHouse pieces); Ticket to Ride (a fun game that is a favorite with the 6 and 10 year old cousins, but for adults the similar but more complicated Thurn and Taxis is nicer); 10 Days in the USA/Africa/Europe -- all three are the same except for the names of pieces (states or countries), but thanks to this game, which has nice strategy as well, my 6-year-old cousin knows every state in the USA and where every country is in Europe of Africa!

Andy Looney directed me to this site in June, when I learned John Cooper's game Homeworlds that we are playing. I just last week learned another IceHouse game, Pikemen, which is authored by another game author (a Bridge Master turned game author) that I know and play games with on Thursday's at LooneyLabs' game night. All my chess skills seem to help, as I've won my first three games (against other beginners). I want to learn more IceHouse games, as I love the shape and feel of the pyramids, and I'm trying another one online here, Martian Chess, and just started my first game of it. 

That's the extent of my gaming experience.  And as a rather new abstract gamer (except for chess) who has suddenly fallen into a new world of gaming, especially when I get to play with game authors and even beta-test games every week, I'm always open to know the top picks of another gamer. While the best Homeworlds players (Andy Looney and Jesse) can beat me almost every game, you're the first beginner that is trouncing me, as I usually mop up on all the other beginners and advanced beginners. That tells me you are an experienced abstract gamer (hence I wondered if you were a chess master). I'm impressed.  So I'd be happy to have any recommendations from you on games that I haven't heard of but which are like the ones I've mentioned that I have played and liked.  My only constraint is money - I like to buy them used and cheap on eBay rather than say, import them new from Germany.

26) zoltar: Trade G2 Y2 Harcourt
	unic: Wow, that was a long message!  :)

Knizia is my favourite designer for german-style games.  He's also made several "abstracts" - games that have no luck or hidden information and work well on two.

Game recommendations - I'll have a ponder.  I've made a list with a bit over 200 abstracts one can improvize pieces for (well, or steal pieces from various games in my collection) which my wife and I are gradually trying out to see which ones we like.

Gigamic does make nice games - though often with a tendency towards short and rather tactical ones.  Cathedral is one of their better, I think... I'm not keen on Quarto.  

If you like Blokus, have you tried Blokus Trigon?  Me and the wife both prefer that to standard Blokus... the pieces are all shapes made out of up to 6 triangles.

Well, I'll have a ponder on what to recommend.

27) unic: Discover G3 Unic B3 Astra
	zoltar: I have lots of Gigamic games: Cathedral is fun and the prettiest, but the first player has an advantage (good for playing with kids) and I'm experimenting by having the first player not allowed to start with a big piece; Quarto is short and purely tactical, so it's a great tactics-trainer for young kids with a short attention span who won't focus for an entire game of chess, but I don't play it with adults; Quoridor is short and tactical, but much more fun with adults as well, and interesting ideas emerge, as with this game Homeworlds; Batik is pretty and fun for 4 year olds and up and kids too lazy or unwilling to do the thinking in tactical games.

Knizia seems to be a favorite among game designers I've met, who all seem to favor the recent surge in German games.  

And I've been waiting to pounce on a cheap half-priced Blokus Trigon as soon as some boring person gets it for a present, doesn't like it, and sells it on eBay, but I might just buy it outright  for a cousin for Christmas if I can't find it by then -- I've seen the reviews for it and it looks great. 

I have a game with 6-sided pieces from Australia called Tantrix that I haven't played but which looks cool, and a Thailand game called Fire and Ice that I've played twice, which is mostly tactical but was really fun.

28) zoltar: Build G2 Harcourt
	unic: I'm in the camp that isn't convinced about the first-player advantage in Cathedral.  But if the advantage is real, playing pairs of games and counting points work to even things out.

Have you tried Quads from Gigamic?
	zoltar: Yes, I have Quads as well and played it once and remember liking it but haven't got back to it yet. I also have Quivive, Quits, Pyraos, and Bataclan from Gigamic. I discoved Gigamic first with Quoridor and Quarto, and so I grabbed a bunch of their games before I found most of the others. 

29) unic: Build Y1 Unic

30) zoltar: Discover G1 Zoltar Y1 Lemon

31) unic: Discover Y3 Unic G3 Prima

32) zoltar: Build G2 Lemon

33) unic: Sacrifice G3 Unic
Build G3 Astra
Build Y1 Prima
Build Y2 Unic

34) zoltar: Sacrifice Y2 Harcourt
Move G1 Harcourt Astra
Move G1 Lemon Astra
Catastrophe Astra G

35) unic: Build Y2 Unic

36) zoltar: Discover G2 Lemon Y3 Banana

37) unic: Discover Y1 Unic Y3 Secunda

38) zoltar: Build R1 Zoltar

39) unic: Build Y1 Unic
	zoltar: I think you're moving your G3 out was a big mistake btw. First, it let me blow up both your g3's (I'm not sure if you saw that I could do that), and second, it's dangerous to leave your homeworld without a 3-sized piece. Because you had a big lead, and have successfully controlled most of the yellow technology, you're still in very good shape, and your Y3 can always come back to defend your homeworld. But your lead was much greater before, and now I have a lot more chances.

40) zoltar: Move G2 Banana Unic
	unic: You might be right.  I did see that you could blow up my green ships - but this leaves you without any yellow ships at all.  At the time, I thought it was worth it.

41) unic: Trade Y1 R1 Unic

42) zoltar: Sacrifice R3 Zoltar
Attack R1 Unic
Attack Y2 Unic
Attack Y2 Unic
	zoltar: Your play is outstanding at the beginning -- and you had a clearly winning position -- probably from your general gaming experience and intuitions. The middle and endgame of homeworlds is very tricky though, and you probably need several games to grasp the various themes and tactics. 

There are two very important middle-game rules. The first good general principle to never leave your homeworld without a 3-pip piece (unless you are forcing checkmate or a material gain that gives your opponent no chance at counter-attacking). The second principle is to always get a 'gun' (a red ship) as soon as your opponent does. It can be an R1 anywhere, as that way you can sacrifice it for a capture if an enemy piece moves in to bully you. Note that if any of your y1 pieces were instead a r1 piece, you could now simply sacrifice the r1 from anywhere on the board and capture my g2.  So I could not have made this devastating move. Instead, I'm threatening to capture all of your homeworld pieces at once by sacking my R3 for three attacks, and you can't even bring back your Y3 in defence, as being the 4th yellow in the system, a catastrophe would follow and eliminate all of your ships. Your only move in retrospect was to trade a Y2 for an R2 in your homeworld.
	zoltar: You played better than any other first time player I've encountered! I hope you like the game and want to play more. Thanks.
	unic: Nicely done - I didn't bear in mind that sacrificing a ship would give you the power to use that colour in any system.

Another game?  I liked this and sure want to play more!



4221)
Variants: "Unrated"
Started: 2006.9.11, Ended: 2006.9.21
Participants: jerzy (S), Fabi (N)
Winner: Fabi

1) Fabi: Homeworld B3 Y1 G3

2) jerzy: Homeworld B2 R1 G3

3) Fabi: Build G1 Fabi

4) jerzy: Build G1 Jerzy

5) Fabi: Trade G1 R1 Fabi

6) jerzy: Trade G1 Y1 Jerzy

7) Fabi: Build G1 Fabi

8) jerzy: Build G1 Jerzy

9) Fabi: Trade G1 R1 Fabi

10) jerzy: Trade G1 Y1 Jerzy

11) Fabi: Build R2 Fabi

12) jerzy: Build Y2 Jerzy

13) Fabi: Trade R2 Y2 Fabi

14) jerzy: Discover Y1 Jerzy G3 Darwin

15) Fabi: Discover Y2 Fabi G2 Lamarck

16) jerzy: Build Y2 Darwin

17) Fabi: Move R1 Fabi Lamarck

18) jerzy: Build Y3 Jerzy
	Fabi: Acho que vou perder esse jogo.
	jerzy: Por quê?

19) Fabi: Build Y3 Lamarck

20) jerzy: Trade Y1 B1 Jerzy

21) Fabi: Build R2 Lamarck

22) jerzy: Discover B1 Jerzy Y3 Buffon

23) Fabi: Move R2 Lamarck Darwin

24) jerzy: Sacrifice Y2 Darwin
Move Y1 Darwin Lamarck
Move Y1 Lamarck Buffon
	jerzy: Uh-oh... Alienígena vermelho detectado no quadrante quatro em Darwin! Câmbio!

25) Fabi: Build R2 Darwin
	jerzy: Run awaaaaaaaaaaay!

26) jerzy: Trade Y2 R2 Jerzy
	jerzy: Olha só: vou sacrificar a minha G3 no meu sistema para construir três naves, tá?

27) Fabi: Build R3 Fabi
	jerzy: Ops, não consegui! Acabei só trocando a minha y2 por uma r2.

28) jerzy: Discover Y1 Buffon Y2 Bernard

29) Fabi: Sacrifice Y2 Lamarck
Move R2 Darwin Jerzy
Move R2 Darwin Jerzy
Catastrophe Jerzy Red

30) jerzy: Move B1 Buffon Bernard
	jerzy: Como é que você fez isso?!?!?!?! Parabéns!

31) Fabi: Trade R1 B1 Fabi

32) jerzy: Build G1 Jerzy

33) Fabi: Build Y1 Lamarck

34) jerzy: Trade G1 B1 Jerzy

35) Fabi: Move B1 Fabi Lamarck

36) jerzy: Trade B1 G1 Bernard

37) Fabi: Build B1 Lamarck

38) jerzy: Build Y2 Jerzy

39) Fabi: Move B1 Lamarck Fabi

40) jerzy: Move B1 Jerzy Fabi

41) Fabi: Attack B1 Fabi

42) jerzy: Trade Y2 R2 Jerzy

43) Fabi: Move B1 Fabi Lamarck

44) jerzy: Discover G1 Bernard Y3 Gould

45) Fabi: Move R1 Lamarck Gould

46) jerzy: Discover G1 Gould Y2 Kauffman

47) Fabi: Move B1 Lamarck Gould

48) jerzy: Build Y2 Jerzy

49) Fabi: Move B1 Fabi Lamarck

50) jerzy: Trade Y3 R3 Jerzy

51) Fabi: Move B1 Lamarck Gould

52) jerzy: Build Y3 Jerzy

53) Fabi: Move B1 Lamarck Gould

54) jerzy: Pass

55) Fabi: Sacrifice Y3 Lamarck
Move B1 Gould Jerzy
Move B1 Gould Jerzy
Move B1 Gould Jerzy
Catastrophe Jerzy Blue



4222)
Variants: "Unrated"
Started: 2006.9.11, Ended: 2006.9.14
Participants: jerzy (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) jerzy: Homeworld Y1 B3 G3

3) zoltar: Build G1 Zoltar
	jerzy: Could you tell me more about openings, i.e., what are their names and what one should be doing after each of them?

4) jerzy: Build G1 Jerzy

5) zoltar: Trade G1 Y1 Zoltar

6) jerzy: Trade G1 Y1 Jerzy
	zoltar: Actually, openings are my biggest weakness!  But I know the names.  The strongest is "the banker" which is a small and medium star.  It allows you to go to large stars first, and you can 'invest' in a large star by placing a g1 or g2 on it.  When the color is used up, (e.g., suppose you had a g2 on a y3 star), you could sack the g2, and build the y3 somewhere you have a yellow piece, and rebuild the g2 at the same time, somewhere you have a green piece. Because large pieces are next to your homeworld and easy to 'invest' in, small-medium systems are called "The Banker".

I'm playing "The Fortress" which is the best defensive position later on, because only small stars are connected to my homeworld, and you run out of small pieces in the middlegame, so it's harder to attack the homeworld. The disadvantage is that I have to use small pieces to expand, and my opponent can more easily calculate so that he will get the first middle-sized piece in a particular color.

You're playing the third kind, called "goldilox" because your homeworld is adjacent to middle-sized pieces.  Some players prefer this one most of all, but I don't know yet the advantages or disadvantages.

The top player of all time, Andy Looney, swears that the banker is the strongest, and gives a strong advantage; the second best player in the world, who goes here by TwoShort, disagrees and doesn't think the banker gives anyone more than a minimal edge. However, the banker is the easiest for beginners, so I used it for all my first dozen or so games, and recommend you get familiar with it.

Usually any ybg color combo is good to start, which ships usually being y or g, but recently the top players are using red stars. I'm trying them out (as in this game). It's harder in the opening, but later on, you have a strong defence, as you don't need a red ship in your homeworld to defend, but it is tougher for beginners because red is used least in the opening, so you have to build more ships before you can use the other three color powers, all of which are used in the opening.

That's about all I know about openings. 
	jerzy: Man, thanks a lot! That clarifies a lot of things! I thought the names refered to the colors you chose to start with, rather than color/size combinations. I thought I was playing the banker!

Maybe we could add a section about openings to the Wiki, that would be very helpful for newbies!

7) zoltar: Build Y2 Zoltar
	zoltar: The publisher of the game (and world champ) Andy Looney of Looney Labs, and the author of the game, John Cooper, are working on that now, in a new booklet that will introduce 3 Looney Labs games together. We can get them to transfer the final version to the Wiki perhaps.  I'll suggest it to them (they are both my neighbors).

8) jerzy: Build Y2 Jerzy

9) zoltar: Build Y2 Zoltar

10) jerzy: Discover Y1 Jerzy G2 Darwin
	jerzy: Ah, you're talking about '3house' perhaps? I'm looking forward to it... Do suggest the Wiki transfer!

11) zoltar: Trade Y1 R1 Zoltar
	zoltar: Yes, I am talking about 3house!

12) jerzy: Trade Y2 B2 Jerzy

13) zoltar: Discover Y2 Zoltar G1 Greenbelt
	jerzy: It must be a priviledge for you to be neighbour to the two greatest game designers IMO! I am from Brazil, and it's nearly impossible cost-wise for us to import Icehouse pieces... 

I have made my own set of flat wooden pieces, much like Zarf's Zarcana ones.
	zoltar: Yes, it is quite a priviledge.  I only wish I'd known them longer, as they were neighbors for years before I met any of them or heard of any of these games.

14) jerzy: Build B1 Jerzy

15) zoltar: Build G1 Zoltar
	jerzy: I've been trying to figure how to use the blue pieces to my advantage, since it's such an unused color...
	zoltar: If you can get all of the small ones on the board, then you can build large blue pieces, trade them for other large pieces, then build them again and repeat the process. Also, a large blue can always threaten to capture a smaller piece if you have a red piece somewhere to sacrifice.

16) jerzy: Build G1 Jerzy

17) zoltar: Discover G1 Zoltar Y1 Lemon

18) jerzy: Discover G1 Jerzy Y2 Mango

19) zoltar: Build G2 Zoltar

20) jerzy: Build G2 Jerzy

21) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Lemon
Build Y3 Greenbelt

22) jerzy: Sacrifice G2 Jerzy
Build G2 Jerzy
Build Y3 Darwin

23) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Zoltar
Build R1 Zoltar

24) jerzy: Move B1 Jerzy Mango
	jerzy: Hehe what a stupid way to may a straightforward move.
	jerzy: Should've recreated that g2 in mango.

25) zoltar: Sacrifice Y3 Zoltar
Move R1 Zoltar Lemon
Move G3 Lemon Mango
Move G3 Mango Jerzy

26) jerzy: Sacrifice B2 Jerzy
Trade G3 Y3 Jerzy
Trade G2 R2 Jerzy

27) zoltar: Sacrifice R1 Zoltar
Attack R2 Jerzy
	zoltar: You made the mistake of not trading one of your blue ships for a red ship.  Now you are in a bit of trouble.

	zoltar: Actually, it's checkmate in a move or two. Your only way to stay alive was to move your own g1 back to your homeworld and blow up your greens and mine with them. Or trade your b1 in mango for an r1, (threatening to sac and capture my g3), forcing me to sac a green and rebuild it in your homeworld and blow up your greens (I would sac my g2 in Zoltar, and rebuild it in your homeworld using that 'teleport' trick you discovered, and use the extra build to rebuild my y3 in Zoltar -- I would end up with three big ships to your one, and your y3 would have to immediately run back to your homeworld to defend -- not a pretty outcome, but the only scenerio where you survive.  And all this because you didn't get a red ship after I did.
	jerzy: I see... Gonna accept your pending challenge now, I'll try the Banker...


4187)
Started: 2006.9.11, Ended: 2006.9.15
Participants: TwoShort (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B2 G1 Y3

2) TwoShort: Homeworld R1 B3 G3
	zoltar: Ok, I'm going to try this again -- and be more mindful.

3) zoltar: Build Y1 Zoltar

4) TwoShort: Build G1 Twoshort

5) zoltar: Build Y1 Zoltar

6) TwoShort: Build G1 Twoshort

7) zoltar: Discover Y1 Zoltar G3 Greenbelt

8) TwoShort: Trade G1 Y1 Twoshort

9) zoltar: Build Y2 Greenbelt

10) TwoShort: Build G1 Twoshort

11) zoltar: Build Y2 Greenbelt

12) TwoShort: Build Y2 Twoshort

13) zoltar: Discover Y2 Greenbelt G2 Greenhills

14) TwoShort: Sacrifice Y2 Twoshort
Discover Y1 Twoshort G2 Greenland
Discover G1 Twoshort B2 Bluestar

15) zoltar: Trade Y3 G3 Zoltar

16) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build Y2 Greenland
Build G3 Twoshort

17) zoltar: Build Y3 Greenhills

18) TwoShort: Discover Y1 Greenland B3 Bluonia

19) zoltar: Build Y3 Zoltar

20) TwoShort: Sacrifice G2 Bluestar
Build Y3 Bluonia
Build G2 Bluestar

21) zoltar: Trade Y1 R1 Zoltar

22) TwoShort: Sacrifice Y3 Bluonia
Move Y1 Bluonia Greenhills
Move Y2 Greenland Greenbelt
Move Y2 Greenbelt Greenhills
Catastrophe Greenhills Yellow

23) zoltar: Build G2 Zoltar

24) TwoShort: Trade G2 Y2 Bluestar

25) zoltar: Discover G2 Zoltar Y3 Investment

26) TwoShort: Build G2 Bluestar

27) zoltar: Build G2 Investment

28) TwoShort: Trade G2 R2 Bluestar

29) zoltar: Discover G2 Investment B2 Blueberry

30) TwoShort: Trade G1 Y1 Twoshort

31) zoltar: Move Y1 Greenbelt Blueberry

32) TwoShort: Discover G1 Bluestar Y3 Cash

33) zoltar: Sacrifice G3 Zoltar
Build G1 Investment
Build G2 Investment
Build G3 Blueberry

34) TwoShort: Sacrifice G1 Cash
Build R1 Bluestar

35) zoltar: Sacrifice G3 Blueberry
Build G1 Blueberry
Build G3 Blueberry
Build R2 Zoltar

	zoltar: Wow, just when I thought it would be another dozen games or so before I beat you again, I came up with a victory. I thought you had the upper hand for a while -- I'm not sure when I got the advantage there.


4227)
Started: 2006.9.13, Ended: 2006.10.6
Participants: zoltar (S), mneme (N)
Winner: mneme

1) mneme: Homeworld G2 B1 Y3
	zoltar: I'm ready. Do you still want to play?

2) zoltar: Homeworld B3 R1 G3

3) mneme: Build Y1 Mneme

4) zoltar: Build G1 Zoltar

5) mneme: Build Y1 Mneme

6) zoltar: Trade G1 Y1 Zoltar

7) mneme: Trade Y1 G1 Mneme

8) zoltar: Build G1 Zoltar

9) mneme: Discover Y1 Mneme G3 Houston

10) zoltar: Trade G1 R1 Zoltar

11) mneme: Build G1 Mneme
	mneme: Yes. :)

12) zoltar: Build R1 Zoltar

13) mneme: Trade Y3 R3 Mneme

14) zoltar: Trade R1 B1 Zoltar
	mneme: fast play!


15) mneme: Trade G1 Y1 Mneme

16) zoltar: Build Y2 Zoltar

17) mneme: Build Y2 Mneme

18) zoltar: Discover Y1 Zoltar G2 Greengelt

19) mneme: Build G1 Mneme

20) zoltar: Build G1 Zoltar

21) mneme: Discover G1 Mneme G3 Bleeker

22) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build B1 Zoltar

23) mneme: Sacrifice Y2 Mneme
Move G1 Bleeker Greengelt
Move G1 Greengelt Zoltar
Catastrophe Zoltar Green

24) zoltar: Build Y2 Greengelt

25) mneme: Build Y2 Houston

26) zoltar: Trade B1 G1 Zoltar
	zoltar: Ouch! I wasn't paying attention. I'm probably toast, now.
	mneme: did you miss the catastrophe?
	mneme: ah -- yes.  Yeah, probably, though if so, this will be the first game of BH I win.

27) mneme: Build Y3 Mneme

28) zoltar: Build Y3 Zoltar
	zoltar: It took at least a dozen games before I won one -- this is a very hard game to learn, and the tactics are very tricky. 

29) mneme: Discover Y2 Houston B2 Prince

30) zoltar: Trade Y2 G2 Zoltar
	zoltar: well, yes, I I did miss that previous catastrophe, but I've been able to quickly get a 3-pip ship in my homeworld, so I'm safe now, and only a tempo or two behind. Had you been able to stick a 3-pip ship in my homeworld before I could get my defences back, I would have lost in two or three moves. Luckily, I picked a pretty safe position to make such a key blunder!

31) mneme: Build Y2 Houston

32) zoltar: Build Y3 Zoltar

33) mneme: Sacrifice Y3 Mneme
Move Y1 Houston Prince
Move Y2 Prince Zoltar
Move Y1 Prince Zoltar
Catastrophe Zoltar Y
	mneme: It's true -- it just seemed like too much trouble to "waste" multiple moves stopping you from getting that 3 (and it might not have worked in any case).  But yeah.


34) zoltar: Move Y1 Greengelt Zoltar

35) mneme: Build R1 Mneme

36) zoltar: Discover G1 Zoltar Y2 Bananas
	zoltar: Of course I had to force you to sac there or you end up with most of the yellow pieces. 
	mneme: I know.  As it is, not sure where we are, realy.

37) mneme: Build R2 Mneme

38) zoltar: Move R1 Zoltar Bananas

39) mneme: Sacrifice Y2 Houston
Discover R3 Mneme R3 Sictransit
Move R3 Sictransit Bananas

40) zoltar: Sacrifice G2 Zoltar
Build R2 Bananas
Build R2 Bananas
Catastrophe Bananas R

41) mneme: Build R1 Mneme

42) zoltar: Trade B1 G1 Zoltar
	zoltar: Well, you left me no choice -- else you march right into my homeworld with that R3.
	mneme: true.  Should have gone to the y2.  

43) mneme: Discover G1 Mneme B3 Rector

44) zoltar: Build G2 Bananas
	zoltar: I have so little to work with! Luckily, you don't have a fleet of R3 ships...

45) mneme: Build G3 Rector

46) zoltar: Build G3 Zoltar

47) mneme: Trade G3 Y3 Rector

48) zoltar: Trade G3 Y3 Zoltar

49) mneme: Build G3 Rector

50) zoltar: Build G3 Zoltar

51) mneme: Sacrifice G3 Rector
Build Y1 Mneme
Build Y2 Rector
Build Y3 Mneme

52) zoltar: Trade G3 R3 Zoltar

53) mneme: Build G3 Rector

54) zoltar: Build G3 Zoltar

55) mneme: Discover R1 Mneme G3 Stone

56) zoltar: Sacrifice Y2 Greengelt
Move G2 Bananas Rector
Move G1 Bananas Rector
Catastrophe Rector G

57) mneme: Move Y1 Mneme Stone

58) zoltar: Discover Y3 Zoltar G2 Greenbelt

59) mneme: Build Y2 Stone

60) zoltar: Build Y2 Zoltar

61) mneme: Discover R1 Stone G2 Wall

62) zoltar: Move R3 Zoltar Greenbelt

63) mneme: Move Y2 Rector Wall

64) zoltar: Discover Y2 Zoltar B2 Blueridge

65) mneme: Build R2 Wall

66) zoltar: Build R2 Greenbelt

67) mneme: Discover R2 Mneme G3 Pearl

68) zoltar: Move R3 Greenbelt Stone

69) mneme: Sacrifice Y2 Stone
Discover Y1 Stone B2 Bridge
Move Y3 Rector Bridge

70) zoltar: Build R3 Greenbelt

71) mneme: Build R3 Pearl

72) zoltar: Build Y2 Greenbelt

73) mneme: Trade Y1 G1 Bridge

74) zoltar: Build Y1 Zoltar

75) mneme: Build G1 Bridge

76) zoltar: Move G1 Zoltar Blueridge

77) mneme: Sacrifice Y1 Mneme
Move R3 Pearl Blueridge

78) zoltar: Sacrifice Y2 Blueridge
Discover G1 Blueridge B1 Blueberry
Move Y3 Greenbelt Pearl

79) mneme: Trade G1 B1 Bridge

80) zoltar: Sacrifice R2 Greenbelt
Attack R2 Pearl
Pass
	mneme: I have, by the way, no idea who is winning.  I'm assuming you are, but it's interesting.

81) mneme: Build B2 Bridge

82) zoltar: Move Y3 Pearl Wall

83) mneme: Sacrifice Y2 Wall
Move R2 Wall Zoltar
Move R2 Zoltar Bridge

84) zoltar: Build G1 Zoltar

85) mneme: Build R2 Bridge

86) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Greenbelt
Build Y2 Wall

87) mneme: Trade R3 B3 Blueridge

88) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Greenbelt
Build Y2 Greenbelt

89) mneme: Sacrifice Y3 Bridge
Move R1 Wall Zoltar
Move R2 Bridge Zoltar
Move R2 Bridge Zoltar
Catastrophe Zoltar Red

	mneme: I think that's game, no?  I don't see a save.
	mneme: (I think someone got greedy)
	zoltar: yes, it's been over for a while, I was waiting for you to do something before I resigned.  Good game.
	mneme: Thanks -- good game!  (I -think- if you'd taken my small red ship before I activated the doomsday device, you might have been able to keep me at bay long enough for your superior numbers to tell -- but I could be wrong)
	zoltar: Yeah, you're probably right, but I had to sack an R2 to take it, and then you immediately rebuild the R2 again -- that's what I was thinking, so I'd sort of given up at that point. I'm still an advanced beginner at this game, even though I have an inflated rating because I beat up on total beginners most of the time. And unlike chess, etc., there are no books to read or download with puzzles and annotated games to increase my strength. I'd like to get better at the game and I wish there were a lot of amazing tough players to spar with, or even computer opponents, like there are in chess.
	mneme: Hmm.  Point -- ish.  There are -some- amazing tough players -- Andy is ver good, frex.  But playing against new players doesn't sharpen your skills much, I suppose (haven't done much of that, actually).



4252)
Started: 2006.9.14, Ended: 2006.9.16
Participants: zoltar (S), unic (N)
Winner: zoltar

1) unic: Homeworld Y2 B1 G3

2) zoltar: Homeworld B3 R1 G3

3) unic: Build G1 Unic

4) zoltar: Build G1 Zoltar

5) unic: Trade G1 R1 Unic

6) zoltar: Trade G1 Y1 Zoltar

7) unic: Build R1 Unic

8) zoltar: Build Y1 Zoltar

9) unic: Build R2 Unic

10) zoltar: Build Y1 Zoltar

11) unic: Discover R2 Unic Y3 Prima

12) zoltar: Discover Y1 Zoltar G2 Greendale

13) unic: Discover R1 Unic G3 Secunda

14) zoltar: Build Y2 Zoltar

15) unic: Build R2 Secunda

16) zoltar: Trade Y2 R2 Zoltar

17) unic: Build R3 Unic

18) zoltar: Build R3 Zoltar

19) unic: Build R3 Unic

20) zoltar: Discover R3 Zoltar Y2 Lemon
	unic: ... so, that's all the red pyramids gone for now.

21) unic: Trade R3 Y3 Unic

22) zoltar: Sacrifice G3 Zoltar
Build R3 Lemon
Build Y2 Greendale
Build Y3 Zoltar
	zoltar: Yes, and you managed to get most of them!

23) unic: Move Y3 Unic Secunda
	zoltar: Another good move, making sure you don't get locked out of the Yellow tech, and threatening to build your R3 back. I can't build the R3 in my homeworld, or else you now sack your Y3 and move an R1 into my homeworld, destroying my R3 as well as my red star. I am forced to sacrifice my G3 here, as there is no other reasonable move.

24) zoltar: Trade Y1 G1 Zoltar
	zoltar: Now the game is very close, as I've got both yellow and red tech and have as many large ships, with my extra R3 vs your G3.  All sorts of things could tip the scale one way or another, and there can be quick attacks and sacrifices or slow development in a game like this. It makes the game quite interesting and allows for different styles of play.

25) unic: Build Y1 Secunda
	unic: This is where I start feeling a bit lost - the possibilities that arise from sacrificing ships are difficult for me to get an overview of.
	zoltar: Yes, I know the feeling: this is where the top players get the advantage against me. It takes several games to get a feel for complex positions and even see all the various candidate moves, much less choose among them.

26) zoltar: Move R3 Lemon Prima
	zoltar: My choices are more limited: I had to get a green ship before I can build anything else.

27) unic: Move R2 Prima Greendale

28) zoltar: Sacrifice R2 Zoltar
Attack R2 Greendale
Pass

29) unic: Build G1 Unic
	unic: Run!  Their ship is bigger than ours!
	zoltar: You may want to redo that move: I can sacrifice my r2 in zoltar and attack your r2 in greendale. 
	unic: No, done is done.

30) zoltar: Trade Y3 G3 Zoltar

31) unic: Discover R3 Unic Y3 Tertia

32) zoltar: Build R2 Greendale

33) unic: Move Y1 Secunda Unic

34) zoltar: Trade G1 B1 Zoltar

35) unic: Move R3 Tertia Greendale

36) zoltar: Build Y3 Zoltar

37) unic: Sacrifice R2 Secunda
Attack R2 Greendale
Attack R2 Greendale

38) zoltar: Sacrifice Y1 Greendale
Move R3 Prima Greendale
Catastrophe Greendale R

39) unic: Build R2 Secunda

40) zoltar: Sacrifice B1 Zoltar
Trade Y2 R2 Greendale
	zoltar: oops -- I typed that in wrongly.

41) unic: Trade R1 B1 Unic

42) zoltar: Build G1 Zoltar

43) unic: Move R1 Secunda Unic

44) zoltar: Move Y1 Zoltar Greendale

45) unic: Build B1 Unic

46) zoltar: Move G1 Zoltar Lemon

47) unic: Move B1 Unic Secunda

48) zoltar: Build G1 Zoltar

49) unic: Build B2 Secunda

50) zoltar: Build G2 Lemon
	unic: Seems this game is in a bit of a slow phase currently.

51) unic: Discover B2 Secunda B2 Prima
	zoltar: Yes, though that can change at any moment.
	zoltar: Yes, though that can change at any moment.
	zoltar: Yes, though that can change at any moment.

52) zoltar: Sacrifice G3 Zoltar
Build G2 Lemon
Build G3 Zoltar
Build Y1 Greendale
	zoltar: hmm, somehow it repeated that 3 times

53) unic: Sacrifice G3 Unic
Build G3 Unic
Build B2 Secunda
Build B3 Prima

54) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Greendale
Build Y3 Zoltar

55) unic: Sacrifice G3 Unic
Build G3 Unic
Build B3 Unic
Build R1 Unic

56) zoltar: Discover G1 Lemon R3 Bigred

57) unic: Trade B3 R3 Prima

58) zoltar: Sacrifice G2 Lemon
Build G2 Bigred
Build R2 Greendale

59) unic: Build B3 Secunda
	zoltar: I meant to say g1 there

60) zoltar: Move Y1 Greendale Bigred

61) unic: Sacrifice Y1 Unic
Move B3 Unic Bigred

62) zoltar:
Sacrifice Y3 Zoltar
Move Y1 Bigred Unic
Move G1 Bigred Unic
Move G2 Bigred Unic
Catastrophe Unic G
	zoltar: Unfortunately, I couldn't find a way to get into the Blue industry, which has built up your advantage.

63) unic: Sacrifice Y3 Secunda
Move B3 Bigred Unic
Move B3 Secunda Greendale
Discover B1 Secunda G2 Tertia
	unic: I can't really see how to exploit my blue ships for anything useful though.  Oh well... perhaps I'll spot something eventually.

64) zoltar: Sacrifice G3 Zoltar
Build R3 Lemon
Build Y1 Unic
Build Y3 Zoltar
	zoltar: Even if you don't, after some fighting and explosions, you'll be able to trade them for ships you can find useful things to do with. That's what I'm afraid of.
	zoltar: Now I have to hope you make some mistakes and give me pieces and opportunities, like you did in the last game!

65) unic: Sacrifice R3 Prima
Attack Y2 Greendale
Attack Y1 Greendale
Attack Y1 Unic
	zoltar: Well, it's now or never -- I either have to exercise sharp tactics or else slowly get stangled. I've got to think about this for a few minutes.
	zoltar: s y3 zoltar
m y1 bigred unic
m g1 bigred unic
m g2 bigred unic
c unic g

66) zoltar: Sacrifice R3 Lemon
Attack Y2 Greendale
Attack Y1 Greendale
Attack B1 Unic
	zoltar: It's going to be big finish, one way or the other.

67) unic: Sacrifice R2 Secunda
Attack R2 Greendale
Attack R2 Greendale

68) zoltar: Sacrifice R3 Lemon
Attack R2 Greendale
Attack R2 Greendale
Attack Y1 Unic
	zoltar: This is a very tough position, and makes for a really interesting game. Since I'm also rather new to the game, I still get lost in the possibilities here. This is one game that, after it's over, I'll replay on a board with Andy Looney when he has the time, so he can show me ideas that we missed. Anyway, this is the best I can come up with tonight.

69) unic: Attack B1 Unic

70) zoltar: Sacrifice R2 Greendale
Attack R1 Unic
Attack B1 Unic
	zoltar: Hey, the server's back up. I was worried we'd be down the whole weekend. Wow -- 6 sacrifices in a row, and 5 3-pip ships sacked in a row! That's a record for me. The most exciting games I've played have had multiple 3-pip sacrifices at the crucial stage in the endgame.
	unic: I've been compulsively checking the server all day!  Finally back up :)  It feels you're definitely ahead in this game... I'll have to ponder my options a while.

71) unic: Sacrifice R1 Unic
Attack R2 Greendale
	unic: Yet another sacrifice... this game feels like a real rollercoaster currently!
	unic: If you do end up getting any comments from Andy Looney or some other good player, please feel free to share them!

72) zoltar: Sacrifice R1 Unic
Attack R2 Greendale
	zoltar: That's 8 sacrifices in a row.  Well, you have two more red ships and so do I...  I finally feel that I'm ahead in the game, too, but I think I was losing up until the wild sacrificing frenzy.  In any case, this is one of the most fun homeworlds games I've played, and regardless of how it ends, I'm replaying this for Andy Looney and John Cooper  next Thursday on game night. If he has lots of comments on all the sacrifices and interesting options that we missed, I'll write them down and let you know. Btw, I just (yesterday) won a game from TwoShort, which is no small feat, as he is the best active player here, and second only to Andy. I lose most of my games to him. In fact, if you have a set of pyramids, I'd suggest you check out the archives and replay all of TwoShort's and games. You need to view the PGN files ( http://superdupergames.org/pgn.html?id=homeworlds ). That's what I did after my first couple disorienting games (I didn't play as well as you at first), and then I was able to defeat just about everyone but TwoShort and Andy Looney.  It's worth it if you like the game and want to play a lot. If you study a bunch of games, and play me some more, I'd then suggest you challenge TwoShort and give him a run for his money. He'll be shocked to have a second new player (besides me) learn the game and be able to deal with all his tricks.

73) unic: Sacrifice B2 Prima
Trade B3 R3 Greendale
Trade B3 R3 Unic

74) zoltar: Sacrifice G2 Lemon
Build B2 Unic
Build B2 Unic
Catastrophe Unic B

75) unic: Sacrifice R3 Greendale
Attack Y1 Unic
Attack Y1 Unic
Pass

76) zoltar: Sacrifice Y2 Greendale
Move Y1 Greendale Zoltar
Move Y1 Zoltar Unic
Catastrophe Unic Y

	zoltar: Sure! Excellent game.


4226)
Started: 2006.9.14, Ended: 2006.9.21
Participants: zoltar (S), jerzy (N)
Winner: zoltar

1) jerzy: Homeworld B2 Y1 G3

2) zoltar: Homeworld R3 B1 G3

3) jerzy: Build G1 Jerzy

4) zoltar: Build G1 Zoltar

5) jerzy: Trade G1 Y1 Jerzy

6) zoltar: Trade G3 Y3 Zoltar

7) jerzy: Build G1 Jerzy

8) zoltar: Build Y1 Zoltar

9) jerzy: Build Y2 Jerzy

10) zoltar: Build Y2 Zoltar

11) jerzy: Trade Y1 R1 Jerzy

12) zoltar: Trade Y2 R2 Zoltar
	jerzy: Which is more useful: a r2 or a y2?

13) jerzy: Build Y1 Jerzy

14) zoltar: Build Y2 Zoltar
	zoltar: It depends upon the position. Early in the game, a Y2 is definitely more useful, as spreading your pieces out in order to grow is crucial. You have to get a red ship when your opponent does (as you saw in the last game), but once you have a red ship, then it entirely depends upon the position. The general principle is to try to take whatever allows you to build 3-pip ships as soon as possible, and then you can always trade among the colors on a blue star or sacrifice a blue piece to get the one most needed. Having more large ships of any kind is a huge advantage, as a large ship of any color can bully any smaller ships as long as there is even just a single R1 parked somewhere at any star that can be sacrificed.

15) jerzy: Trade Y1 B1 Jerzy
	zoltar: Note that here I could have made a classic beginners' mistake and sacked my Y3 to send my Y1 into your homeworld and blow up your yellow star and ships. It would leave me without a large ship in my homeworld. In fact, in this case, as with only the blue star left our homeworlds would become directly connected, you could build a yellow ship and march your G3 into my homeworld and win before I would have a chance to rebuild. The principle is: don't sacrifice a lot to blow up one star if you can't attack the other one and will be vulnerable to counter-attack.

16) zoltar: Trade Y2 B2 Zoltar

17) jerzy: Discover G1 Jerzy Y3 Sol
	jerzy: Likewise, should I not sac my y2 to destroy your "lemons" in game #4135?
	jerzy: Likewise, should I not sac my y2 to destroy your "lemons" in game 4135?

18) zoltar: Build R1 Zoltar

19) jerzy: Build G1 Jerzy

20) zoltar: Build G2 Zoltar

21) jerzy: Build G2 Sol

22) zoltar: Discover G1 Zoltar Y2 Lemon

23) jerzy: Sacrifice B1 Jerzy
Trade G2 B2 Sol

24) zoltar: Build G2 Lemon

25) jerzy: Build B1 Sol

26) zoltar: Move G1 Lemon Sol
	jerzy: I'll be away for the weekend, so please be patient if I take a while to make my move...

27) jerzy: Trade B2 R2 Sol

28) zoltar: Move R2 Zoltar Lemon

29) jerzy: Move G1 Sol Lemon

30) zoltar: Attack G1 Lemon

31) jerzy: Attack G1 Sol

32) zoltar: Discover G2 Lemon G3 Banana

33) jerzy: Sacrifice G3 Jerzy
Build G2 Sol
Build G3 Jerzy
Pass

34) zoltar: Build G3 Zoltar

35) jerzy: Trade G2 Y2 Sol

36) zoltar: Discover Y1 Zoltar G2 Lime

37) jerzy: Build R1 Sol

38) zoltar: Sacrifice Y3 Zoltar
Move G1 Lemon Banana
Move G2 Banana Jerzy
Move G1 Banana Jerzy
Catastrophe Jerzy G

39) jerzy: Build G1 Sol

40) zoltar: Sacrifice B2 Zoltar
Trade R1 Y1 Zoltar
Trade Y1 R1 Lime

41) jerzy: Move G1 Sol Jerzy

42) zoltar: Sacrifice G3 Zoltar
Build R2 Lime
Build R3 Lime
Build R3 Lemon

43) jerzy: Move R1 Sol Lime
Catastrophe Lime Red

44) zoltar: Move R3 Lemon Sol

45) jerzy: Sacrifice Y2 Sol
Move R2 Sol Jerzy
Move G1 Sol Jerzy
	jerzy: I don't quite understand how is the large yellow supposed to act as a "bank" in this opening.
	zoltar: The idea would be that you would have a lone g2 (or g1) sitting on the y3 star. Later in the game, when all the yellow is taken, you sack your g2, destroying the star; you then on the same turn build that y3 from the star in one of your systems, and (if it was a g2 and not a g1 you sacked) you rebuild the g2 somewhere else. The small and medium star combo is called "the banker" because you are one step from large stars, which can become "investments" when you park green ships on them.

46) zoltar: Attack B1 Sol

47) jerzy: Build R1 Jerzy
	zoltar: well that wuz mighty un-neighborly uvya!

48) zoltar: Trade B1 G1 Sol
	zoltar: Zoltar to fleet: move zee Death Star into zee Sol System and spread death and destruction! Whew Who!
	jerzy: Run awaaaaaaaaaaaaay!

49) jerzy: Discover R2 Jerzy Y3 Blobiv

50) zoltar: Build G2 Zoltar
	zoltar: Zee spinelezz hyu-maahn beanz have fled! Sol ease mine -- awl mine!!!  Yippppeeee!

51) jerzy: Move G1 Jerzy Blobiv
	jerzy: Suicide measures: move one red ship into my system and we're both done with it!
	zoltar: And destroy my Death Star!? Never!

52) zoltar: Move G2 Zoltar Lemon

53) jerzy: Build G2 Jerzy

54) zoltar: Build G3 Zoltar

55) jerzy: Sacrifice G2 Jerzy
Build G2 Blobiv
Build G3 Jerzy

56) zoltar: Sacrifice G2 Zoltar
Build G2 Sol
Build G3 Zoltar

57) jerzy: Sacrifice G3 Jerzy
Build G3 Jerzy
Build Y1 Jerzy
Build R1 Blobiv

58) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Zoltar
Build Y3 Zoltar

59) jerzy: Sacrifice G3 Jerzy
Build G3 Jerzy
Build R2 Blobiv
Build R3 Jerzy

60) zoltar: Sacrifice Y2 Zoltar
Move R2 Lemon Sol
Move R2 Sol Jerzy
Catastrophe Jerzy R

61) jerzy: Move R2 Blobiv Lemon

62) zoltar: Sacrifice G2 Lemon
Build Y2 Zoltar
Build R1 Sol

63) jerzy: Move Y1 Jerzy Blobiv
	jerzy: Dammit! Those alien pirates stole the ship I was about to buy!

64) zoltar: Sacrifice Y2 Zoltar
Move G2 Sol Jerzy
Move G1 Sol Jerzy
Catastrophe Jerzy G

	zoltar: Hey jerzy, I started a zendo game, but no one else has signed up for the harder one that you signed up for. Want me to add you to the one I just got going?


4258)
Variants: "No undo"
Started: 2006.9.16, Ended: 2006.9.21
Participants: unic (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) unic: Homeworld B2 Y1 G3

3) zoltar: Build G1 Zoltar

4) unic: Build G1 Unic
	unic: By the way, if you fancy playing anything else besides Homeworlds, feel free to throw a challenge my way - I'm up for more or less any pure abstract (no luck, no hidden information, no simultaneous choices).

5) zoltar: Trade G1 Y1 Zoltar
	zoltar: Sure. That is an interesting distinction, btw. Having played chess since I was barely able to read, I have a special liking for pure abstract games; most of the game developers I play with at LooneyLabs however prefer games with some random chance mechanism or hidden information. I like both kinds. I have just learned Pikemen, and I know the developer of that game as well, Jacob Davenport. I won my first two games so far, which were against other beginners. I'll challenge you to that one.

6) unic: Trade G1 R1 Unic

7) zoltar: Build Y1 Zoltar

8) unic: Build R1 Unic

9) zoltar: Build Y2 Zoltar

10) unic: Build R2 Unic

11) zoltar: Trade Y2 R2 Zoltar

12) unic: Discover R2 Unic Y3 Alpha

13) zoltar: Build Y2 Zoltar

14) unic: Sacrifice G3 Unic
Build R2 Alpha
Build R3 Unic
Build R3 Alpha

15) zoltar: Sacrifice Y2 Zoltar
Discover R2 Zoltar Y2 Wormhole
Move R2 Wormhole Alpha
Catastrophe Alpha R
	zoltar: Good heavens! RED ALERT!

16) unic: Trade R3 G3 Unic
	unic: I was wondering if you would do that...

17) zoltar: Build Y2 Zoltar

18) unic: Build R2 Unic
	zoltar: I had no choice. If I build the last r3, you just move your red ships to blue stars and trade them and you are way u in material.

19) zoltar: Trade Y2 R2 Zoltar

20) unic: Discover R2 Unic G3 Alpha

21) zoltar: Build Y2 Zoltar

22) unic: Build R2 Unic

23) zoltar: Discover R2 Zoltar G2 Beta

24) unic: Trade R2 Y2 Unic

25) zoltar: Move Y1 Zoltar Beta

26) unic: Discover R1 Unic B3 Gamma

27) zoltar: Discover Y1 Zoltar G2 Delta

28) unic: Sacrifice G3 Unic
Build R2 Alpha
Build R3 Gamma
Build R3 Unic

29) zoltar: Sacrifice G3 Zoltar
Build Y2 Delta
Build Y3 Beta
Build Y3 Zoltar

30) unic: Sacrifice Y2 Unic
Move R3 Gamma Delta
Move R2 Alpha Delta

31) zoltar: Build R3 Beta

32) unic: Trade R3 G3 Unic

33) zoltar: Trade Y3 G3 Zoltar

34) unic: Build R3 Unic

35) zoltar: Sacrifice G3 Zoltar
Build Y2 Delta
Build Y3 Zoltar
Build Y3 Zoltar

36) unic: Sacrifice R2 Delta
Attack Y2 Delta
Attack Y2 Delta

37) zoltar: Move Y2 Zoltar Delta
Catastrophe Delta Y

38) unic: Trade R1 Y1 Unic

39) zoltar: Trade Y3 G3 Zoltar

40) unic: Move Y1 Unic Alpha

41) zoltar: Move Y3 Beta Alpha

42) unic: Sacrifice G3 Unic
Build Y2 Alpha
Build Y2 Alpha
Build R1 Delta
Catastrophe Alpha Y

43) zoltar: Build R2 Beta

44) unic: Trade R3 G3 Unic

45) zoltar: Trade Y3 R3 Zoltar

46) unic: Build G1 Unic

47) zoltar: Move R2 Beta Gamma

48) unic: Trade G1 Y1 Unic

49) zoltar: Build Y2 Beta

50) unic: Move Y1 Unic Alpha

51) zoltar: Move R3 Beta Alpha

52) unic: Discover R2 Alpha Y2 Epsilon

53) zoltar: Attack Y1 Alpha

54) unic: Build G1 Unic

55) zoltar: Move Y2 Beta Gamma

56) unic: Trade G1 B1 Unic

57) zoltar: Trade R3 Y3 Zoltar

58) unic: Discover B1 Unic Y3 Zeta

59) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build Y3 Gamma
Build R3 Beta

60) unic: Build G1 Unic

61) zoltar: Trade Y2 G2 Zoltar
	zoltar: I couldn't resist trying to monopolize the rest of the yellow and red tech. It's very hard to make many threats if you get locked out of yellow.

62) unic: Move B1 Zeta Delta
	unic: I've noticed - not having any yellow is a pain.

63) zoltar: Sacrifice G2 Zoltar
Build Y2 Zoltar
Build Y3 Alpha

64) unic: Build G1 Unic

65) zoltar: Trade Y2 G2 Zoltar

66) unic: Trade G1 B1 Unic
	zoltar: I suppose I can repeat the same trick again.

67) zoltar: Build Y2 Beta

68) unic: Build B1 Delta

69) zoltar: Trade Y2 B2 Gamma

70) unic: Trade B1 G1 Delta
	zoltar: And another variation on the same theme...

71) zoltar: Build Y2 Alpha
	unic: I'm just waiting for you to use your overwhelming advantage in ships to actually win the game...

72) unic: Build B1 Delta

73) zoltar: Move Y3 Alpha Epsilon

74) unic: Discover R2 Epsilon B3 Zeta

75) zoltar: Attack R1 Gamma

76) unic: Build B2 Delta

77) zoltar: Move B2 Gamma Delta
Catastrophe Delta B

78) unic: Move G1 Unic Zeta

79) zoltar: Move R3 Beta Zeta

	unic: Can't see much to do... might as well get it over with.


4325)
Started: 2006.9.20, Ended: 2006.11.13
Participants: unic (S), Cerulean (N)
Winner: Cerulean

1) Cerulean: Homeworld B2 Y1 G3

2) unic: Homeworld R1 B3 G3

3) Cerulean: Build G1 Cerulean

4) unic: Build G1 Unic

5) Cerulean: Discover G1 Cerulean Y3 Wythrii

6) unic: Trade G1 Y1 Unic

7) Cerulean: Build G1 Cerulean

8) unic: Build Y1 Unic

9) Cerulean: Trade G3 Y3 Cerulean

10) unic: Build Y2 Unic

11) Cerulean: Build Y2 Cerulean

12) unic: Discover Y1 Unic G2 Amani

13) Cerulean: Trade Y2 R2 Cerulean

14) unic: Trade Y2 R2 Unic

15) Cerulean: Build Y2 Cerulean

16) unic: Build Y2 Amani

17) Cerulean: Move Y2 Cerulean Wythrii

18) unic: Discover Y1 Amani G3 Barumba

19) Cerulean: Build G1 Wythrii

20) unic: Build Y2 Barumba

21) Cerulean: Trade Y3 G3 Cerulean

22) unic: Sacrifice G3 Unic
Build Y3 Barumba
Build Y3 Unic
Build R1 Unic

23) Cerulean: Build G2 Wythrii

24) unic: Move Y1 Barumba Cerulean

25) Cerulean: Trade G1 R1 Cerulean

26) unic: Move Y3 Barumba Cerulean

27) Cerulean: Attack Y3S Cerulean

28) unic: Move Y2 Barumba Cerulean
Catastrophe Cerulean Yellow

29) Cerulean: Sacrifice Y2 Wythrii
Move G1 Wythrii Cerulean
Move R1 Cerulean Unic
Catastrophe Unic R

30) unic: Trade Y1 R1 Unic

31) Cerulean: Sacrifice G3 Cerulean
Build G1 Cerulean
Build G2 Wythrii
Build G3 Cerulean

32) unic: Trade Y3 G3 Unic

33) Cerulean: Trade G3 Y3 Cerulean

34) unic: Build G3 Unic

35) Cerulean: Discover G1 Wythrii Y1 Wywun

36) unic: Trade G3 Y3 Unic

37) Cerulean: Build G3 Wywun

38) unic: Discover Y2 Amani G3 Frz

39) Cerulean: Trade G1 B1 Cerulean

40) unic: Build G1 Unic

41) Cerulean: Build G2 Cerulean

42) unic: Sacrifice G3 Unic
Build G3 Unic
Build Y1 Unic
Build Y1 Frz

43) Cerulean: Move B1 Cerulean Wywun

44) unic: Trade Y1 B1 Unic

45) Cerulean: Trade G1 B1 Cerulean

46) unic: Move B1 Unic Wywun

47) Cerulean: Sacrifice Y3 Cerulean
Move B1 Wywun Unic
Move B1 Cerulean Unic
Move G1 Wywun Unic



4249)
Started: 2006.9.21, Ended: 2006.9.21
Participants: gundam_blade (S), zoltar (N)
Winner: zoltar



4339)
Started: 2006.9.21, Ended: 2006.9.25
Participants: gundam_blade (S), unic (N)
Winner: unic

1) unic: Homeworld G1 Y2 B3
	unic: Hi and good luck!

2) gundam_blade: Homeworld B3 G2 R3

3) unic: Build B1 Unic

4) gundam_blade: Build R1 Gundam_blade

5) unic: Build B1 Unic

6) gundam_blade: Build R1 Gundam_blade

7) unic: Discover B1 Unic G3 Prima

8) gundam_blade: Trade R1 Y1 Gundam_blade

9) unic: Build B1 Unic

10) gundam_blade: Discover R1 Gundam_blade Y1 Gundam1

11) unic: Trade B1 R1 Unic

12) gundam_blade: Build Y1 Gundam_blade



4341)
Started: 2006.9.21, Ended: 2006.9.30
Participants: unic (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y2 G3

2) unic: Homeworld Y1 B3 G3

3) zoltar: Build G1 Zoltar

4) unic: Build G1 Unic
	unic: Time for me to lose at Homeworlds again, then...

5) zoltar: Trade G1 Y1 Zoltar

6) unic: Trade G1 Y1 Unic

7) zoltar: Build Y2 Zoltar

8) unic: Build Y2 Unic

9) zoltar: Discover Y1 Zoltar G1 Lime

10) unic: Discover Y1 Unic G2 Cicero

11) zoltar: Build Y3 Lime

12) unic: Build Y3 Cicero

13) zoltar: Move Y1 Lime Cicero

14) unic: Discover Y2 Unic B2 Catullus

15) zoltar: Build Y3 Cicero
Catastrophe Cicero Y

16) unic: Build G1 Unic

17) zoltar: Build G1 Zoltar

18) unic: Trade G1 Y1 Unic

19) zoltar: Trade G1 R1 Zoltar

20) unic: Trade Y1 R1 Unic

21) zoltar: Build G1 Zoltar

22) unic: Build G1 Unic

23) zoltar: Build G2 Zoltar

24) unic: Move G1 Unic Catullus

25) zoltar: Trade G1 B1 Zoltar

26) unic: Build Y1 Catullus

27) zoltar: Discover Y2 Zoltar B1 Blueberry

28) unic: Discover Y1 Catullus G1 Petronius

29) zoltar: Move G2 Zoltar Blueberry

30) unic: Build G2 Unic

31) zoltar: Build G2 Zoltar

32) unic: Sacrifice G3 Unic
Build G3 Unic
Build G3 Catullus
Build R1 Unic

33) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Lime
Build Y3 Blueberry

34) unic: Build Y3 Petronius

35) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Zoltar
Build B1 Zoltar

36) unic: Trade G3 B3 Catullus

37) zoltar: Move B1 Zoltar Lime

38) unic: Build G3 Catullus

39) zoltar: Sacrifice Y3 Lime
Move B1 Zoltar Lime
Move B1 Lime Catullus
Move B1 Lime Catullus
Catastrophe Catullus B

40) unic: Trade G3 Y3 Unic

41) zoltar: Build Y2 Lime

42) unic: Discover Y1 Petronius B2 Lucretius

43) zoltar: Move Y2 Lime Lucretius

44) unic: Trade Y3 G3 Unic

45) zoltar: Sacrifice G3 Zoltar
Build G1 Blueberry
Build G3 Zoltar
Build Y3 Lime

46) unic: Trade R1 B1 Unic

47) zoltar: Sacrifice G2 Zoltar
Build G2 Blueberry
Build G3 Zoltar

48) unic: Build B1 Unic

49) zoltar: Trade G3 B3 Zoltar

50) unic: Move G2 Unic Lucretius

51) zoltar: Sacrifice R1 Zoltar
Attack G2 Lucretius

52) unic: Build G3 Unic

53) zoltar: Sacrifice Y3 Blueberry
Move G1 Blueberry Lucretius
Move G2 Lucretius Unic
Move G1 Lucretius Unic
Catastrophe Unic G

54) unic: Build Y3 Petronius

55) zoltar: Sacrifice Y3 Lime
Move Y1 Lime Lucretius
Move Y1 Lucretius Petronius
Move Y2 Lucretius Petronius
Catastrophe Petronius Y

56) unic: Trade B1 G1 Unic

57) zoltar: Sacrifice Y2 Blueberry
Move G2 Blueberry Lucretius
Move G2 Lucretius Unic

	zoltar: In two moves you let me destroy your entire fleet!
	zoltar: You'll need more practice before you can take on Darth TwoShort. :)
	unic: I need more practice before I can take on you!  :)


4336)
Variants: "Unrated"
Started: 2006.9.21, Ended: 2006.10.5
Participants: Fabi (S), jerzy (N)
Winner: Fabi

1) jerzy: Homeworld Y1 B2 G3

2) Fabi: Homeworld B2 Y1 G3 *

3) jerzy: Build G1 Jerzy

4) Fabi: Build G1 Fabi

5) jerzy: Build G1 Jerzy
	jerzy: Você sabe que estamos apenas a uma estrela de distância entre nós, né?

6) Fabi: Trade G1 Y1 Fabi

7) jerzy: Trade G1 R1 Jerzy

8) Fabi: Build Y2 Fabi

9) jerzy: Build R1 Jerzy

10) Fabi: Trade Y1 R1 Fabi

11) jerzy: Discover R1 Jerzy Y3 Fatoldsun

12) Fabi: Build Y1 Fabi

13) jerzy: Build R2 Jerzy

14) Fabi: Build R2 Fabi
	Fabi: Você deveria ter aproveitado e trocado uma pecinha tua pelo amarelo.

15) jerzy: Trade R2 Y2 Jerzy
	jerzy: No problem... já vou conseguir um y2...

16) Fabi: Discover R1 Fabi G3 Thinyoungmoon

17) jerzy: Build R2 Jerzy

18) Fabi: Move Y2 Fabi Thinyoungmoon

19) jerzy: Move G1 Jerzy Fatoldsun

20) Fabi: Build Y2 Thinyoungmoon

21) jerzy: Move Y2 Jerzy Fatoldsun

22) Fabi: Build R2 Fabi

23) jerzy: Move R1 Jerzy Fatoldsun

24) Fabi: Move R2 Fabi Thinyoungmoon

25) jerzy: Build R3 Jerzy

26) Fabi: Build G1 Fabi

27) jerzy: Move R3 Jerzy Thinyoungmoon
	jerzy: Não me diga que o e-mail do yahoo não está funcionando de novo!

28) Fabi: Sacrifice Y2 Thinyoungmoon
Discover Y2 Thinyoungmoon G2 Adalimumab
Move R2 Thinyoungmoon Adalimumab

29) jerzy: Build R3 Jerzy

30) Fabi: Discover G1 Fabi Y3 Cetuximab
	Fabi: aaaaahhh, meu Deus.. estou udida

31) jerzy: Trade R3 Y3 Jerzy

32) Fabi: Build G1 Fabi
	jerzy: Mhwa ha ha ha ha! Dominarei o universo!

33) jerzy: Build G2 Fatoldsun

34) Fabi: Trade G1 B1 Fabi

35) jerzy: Build G1 Fatoldsun

36) Fabi: Sacrifice Y2 Adalimumab
Move G1 Cetuximab Adalimumab
Move G1 Adalimumab Fatoldsun
Catastrophe Fatoldsun Green

37) jerzy: Attack R1 Thinyoungmoon

38) Fabi: Build R3 Adalimumab

39) jerzy: Sacrifice Y3 Jerzy
Move R1 Fatoldsun Fabi
Move R1 Fatoldsun Fabi
Move R1 Thinyoungmoon Fabi
Catastrophe Fabi Red

40) Fabi: Trade B1 R1 Fabi
	jerzy: Wow! você me pegou!

41) jerzy: Build R1 Thinyoungmoon

42) Fabi: Build R1 Fabi

43) jerzy: Move Y2 Fatoldsun Jerzy

44) Fabi: Trade R1 B1 Fabi

45) jerzy: Build G1 Jerzy

46) Fabi: Build Y2 Fabi

47) jerzy: Trade G1 B1 Jerzy

48) Fabi: Sacrifice Y2 Fabi
Move R3 Adalimumab Thinyoungmoon
Move R2 Adalimumab Thinyoungmoon
Catastrophe Thinyoungmoon Red

49) jerzy: Build G1 Jerzy

50) Fabi: Discover Y1 Fabi G3 Acarbose

51) jerzy: Move R2 Jerzy Acarbose

52) Fabi: Move Y1 Acarbose Fabi

53) jerzy: Build R1 Acarbose
	jerzy: ?????

54) Fabi: Build Y2 Fabi

55) jerzy: Move B1 Jerzy Acarbose

56) Fabi: Build G1 Fabi

57) jerzy: Trade R1 B1 Acarbose

58) Fabi: Discover B1 Fabi R3 Bigo

59) jerzy: Trade R2 Y2 Acarbose

60) Fabi: Move Y2 Fabi Bigo

61) jerzy: Move G3 Jerzy Bigo

62) Fabi: Move Y2 Bigo Jerzy
	jerzy: Cheque-mate em 3 jogadas...



4343)
Started: 2006.9.21, Ended: 2006.9.25
Participants: zoltar (S), gundam_blade (N)
Winner: zoltar

1) gundam_blade: Homeworld G3 B2 R3

2) zoltar: Homeworld R3 B2 G3

3) gundam_blade: Build R1 Gundam_blade

4) zoltar: Build G1 Zoltar

5) gundam_blade: Trade R1 Y1 Gundam_blade

6) zoltar: Trade G1 Y1 Zoltar

7) gundam_blade: Discover Y1 Gundam_blade R1 Gundam1

8) zoltar: Build Y1 Zoltar

9) gundam_blade: Build R1 Gundam_blade

10) zoltar: Discover Y1 Zoltar G1 Greenbelt
	zoltar: I just realized that I chose the same star sizes as you, rendering this a "small" world. I didn't mean to do that, as we are only two steps instead of three from each other's homeworlds. I would have redone that move had I noticed it in time. The game will still be ok, but a lot of the interesting themes will be missing.

11) gundam_blade: Move Y1 Gundam1 Gundam_blade

12) zoltar: Build Y2 Greenbelt

13) gundam_blade: Build Y2 Gundam_blade

14) zoltar: Build Y2 Zoltar

15) gundam_blade: Discover Y2 Gundam_blade B1 Gundam1

16) zoltar: Trade Y1 R1 Zoltar
	gundam_blade: i wish the game was live like yahoo or something

17) gundam_blade: Trade Y2 G2 Gundam1

18) zoltar: Build Y1 Zoltar

19) gundam_blade: Move R1 Gundam_blade Greenbelt

20) zoltar: Sacrifice R1 Zoltar
Attack R1 Greenbelt

21) gundam_blade: Build G1 Gundam1

22) zoltar: Move Y2 Zoltar Gundam1
	gundam_blade: I'm new to this and confused.  I know you sacrificed your red, but I thought you can only use actions in the system you start with, therefore I thought I would be safe because you didn't have any red to start with in greenbelt.

23) gundam_blade: Trade G2 R2 Gundam1

24) zoltar: Sacrifice R1 Greenbelt
Attack R2 Gundam1

25) gundam_blade: Build Y2 Gundam_blade
	zoltar: no, you can use that power anywhere on the board.  The requirement is that I had to have a medium (or large) ship in the system to capture your medium ship.  Think of it this way: when you sacrifice, it's as if any star you want can become the color of the piece you sacrifice, so here the gundam1 system becomes for the move as if it were a red star instead of the blue star.  I just read your comment after my move, or I would have suggested you undo the move. They will not let you roll back the position more than 1/2 move (you can undo your move once). 

26) zoltar: Build Y3 Zoltar

27) gundam_blade: Discover Y2 Gundam_blade R1 Gundam2

28) zoltar: Trade Y1 R1 Zoltar

29) gundam_blade: Build R1 Gundam_blade

30) zoltar: Attack G1 Gundam1

31) gundam_blade: Move R1 Gundam_blade Gundam2

32) zoltar: Build R2 Gundam1

33) gundam_blade: Build Y1 Gundam_blade

34) zoltar: Build Y3 Zoltar

35) gundam_blade: Trade Y1 G1 Gundam_blade

36) zoltar: Build G2 Gundam1

37) gundam_blade: Build G2 Gundam_blade

38) zoltar: Move G1 Gundam1 Gundam_blade
Catastrophe Gundam_blade G

39) gundam_blade: Trade Y1 G1 Gundam_blade

40) zoltar: Discover R2 Gundam1 G3 Greenhills

41) gundam_blade: Build G1 Gundam_blade

42) zoltar: Build G2 Zoltar

43) gundam_blade: Build G2 Gundam_blade



4358)
Started: 2006.9.23, Ended: 2006.9.25
Participants: maka (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R2 G3

2) maka: Homeworld B3 G1 Y3

3) zoltar: Build G1 Zoltar
	maka: Hello.
	zoltar: Greetingz from Greenbelt, Milky Way.

4) maka: Build Y1 Maka

5) zoltar: Trade G1 Y1 Zoltar

6) maka: Trade Y1 G1 Maka

7) zoltar: Build Y1 Zoltar

8) maka: Discover G1 Maka B2 Tolok

9) zoltar: Discover Y1 Zoltar B1 Blueberry

10) maka: Build G1 Tolok

11) zoltar: Build G2 Zoltar

12) maka: Build G2 Tolok

13) zoltar: Move G2 Zoltar Blueberry

14) maka: Trade G2 Y2 Tolok

15) zoltar: Build G2 Zoltar

16) maka: Trade G1 R1 Tolok

17) zoltar: Trade G2 R2 Zoltar

18) maka: Build R1 Tolok

19) zoltar: Move R2 Zoltar Blueberry

20) maka: Move R1 Tolok Maka

21) zoltar: Build G1 Blueberry

22) maka: Build G2 Tolok

23) zoltar: Discover G1 Blueberry Y2 Lemon

24) maka: Move R1 Maka Lemon

25) zoltar: Build G2 Lemon

26) maka: Attack G1 Lemon

27) zoltar: Sacrifice R2 Blueberry
Attack G1 Lemon
Attack R1 Lemon

28) maka: Move R1 Tolok Maka

29) zoltar: Build G3 Zoltar

30) maka: Trade G1 B1 Tolok

31) zoltar: Sacrifice G3 Zoltar
Build G1 Lemon
Build G3 Blueberry
Build G3 Zoltar

32) maka: Discover G2 Tolok Y1 Sol

33) zoltar: Sacrifice G3 Blueberry
Build Y2 Zoltar
Build Y3 Blueberry
Build Y3 Zoltar

34) maka: Build G3 Sol
	maka: sorry about that...

35) zoltar: Sacrifice Y2 Zoltar
Move G1 Lemon Sol
Move G1 Lemon Sol
Catastrophe Sol G
	zoltar: no problem, that's what the undo is for.

36) maka: Discover Y2 Tolok G1 Frog

37) zoltar: Move Y1 Blueberry Tolok

38) maka: Trade B1 R1 Tolok

39) zoltar: Sacrifice R1 Lemon
Attack R1 Tolok

40) maka: Build Y1 Frog
	maka: Well... I'm off to bed now. It's almost 2am here :)
	zoltar: You're in Europe then!  Goodnight from Washington DC

41) zoltar: Build Y2 Blueberry

42) maka: Sacrifice Y2 Frog
Move R1 Maka Tolok
Move R1 Tolok Frog
	maka: Yep. In Spain. 

43) zoltar: Sacrifice G3 Zoltar
Build G1 Lemon
Build G2 Zoltar
Build G3 Blueberry

44) maka: Trade Y3 R3 Maka

45) zoltar: Sacrifice G2 Zoltar
Build Y2 Blueberry
Build Y3 Tolok

46) maka: Build R1 Frog

47) zoltar: Sacrifice G3 Blueberry
Build G2 Lemon
Build G3 Blueberry
Build G3 Zoltar

48) maka: Move R1 Frog Zoltar

49) zoltar: Attack R1 Zoltar

50) maka: Build R2 Frog

51) zoltar: Move R1 Zoltar Blueberry

52) maka: Move R2 Frog Lemon

53) zoltar: Sacrifice R1 Tolok
Attack R2 Lemon
	maka: Well... Seems to me it is quite clear you're going to win, and if you want, I'm ready to resign. I still have much to learn about this game... but really like it :) Also, any comments and tips will be appreciated...

54) maka: Discover Y1 Frog R2 Lava

55) zoltar: Move Y2 Blueberry Lava

56) maka: Move Y1 Lava Maka
	zoltar: The sacrifices are the trickiest thing for a beginner to learn. For example, I just 'traded' my r1 for your r2 with the r1 sacrifice.  Yellow sacrifices are the most deadly, as you can move several ships at once or one ship all the way from one homeworld to another to cause a catastrophe. Green sacrifices are good for growing when there are only large ships left of some color. 

I lost my first dozen games or so, and I set up my icehouse pieces on a table and went over the games of the top players (andylooney and TwoShort are the best, much better than I, even though I happen to have an over-inflated rating right now). By going over their games and seeing the kind of things they did, I soon was able to beat just about everyone but them. That's how good chess players improve, by studying master's games, and it works with this game too, if you have the enthusiasm to do so. As far as I know, this is the only place anywhere that you can find a record of homeworlds games to study.

57) zoltar: Sacrifice G3 Zoltar
Build R1 Lemon
Build R3 Blueberry
Build R3 Blueberry

58) maka: Pass
	maka: Yeah. Sacrifices are tricky. I'm not good at planning them well and seeing when they will be good to use them... Thanks for the tips :) I didn't know you could read old games here... I'll investigate it...

So... Do you want to play this game through to the end? 

59) zoltar: Build G3 Zoltar

60) maka: Pass
	zoltar: Sure, I don't mind playing it to the end -- and you get to see sacrifices and so forth in the endgame. Here I sacked my G3 to get all the remaining red pieces.  I can then build my G3 back next move.  Or I could do the 'factory', which would have been to sack my G3, build two red pieces (or any other builds) and then build my G3 back in place. In this case it would let you build the remaining R3, so I built all three reds, but when you get a G3 and another green ship on on star and there is no more green in the stash, you can get two builds instead of one with the factory move of sacking your G3 and immediately rebuilding it in place, along with two other builds anywhere on the board. I would have done this last move, but since you threatened to catastrophe my yellow pieces, I had to chase your yellow ship away first.

61) zoltar: Trade G3 B3 Blueberry
	maka: ok. there's not much I can do now... just wait 

62) maka: Pass

63) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Blueberry
Build B1 Blueberry

64) maka: Pass

65) zoltar: Move B1 Blueberry Lemon
	maka: I've also ended up with so few options for building... I didn't really know about that aspect of the game

66) maka: Pass

67) zoltar: Sacrifice G3 Blueberry
Build G3 Blueberry
Build B1 Lemon
Build B2 Lemon

68) maka: Pass

69) zoltar: Sacrifice Y3 Zoltar
Move B2 Lemon Maka
Move B1 Lemon Maka
Move B1 Lemon Maka

70) maka: Pass
Catastrophe Maka Blue

71) zoltar: Sacrifice Y3 Blueberry
Move G2 Lemon Maka
Move G2 Lemon Maka
Move G1 Lemon Maka
Catastrophe Maka G
	zoltar: It's the Grand Finale Supernova party at maka's! All ships invited! It will be a blast!

	maka: he he :) and you let me trigger the catastrophe...
	zoltar: Actually, I was going to trigger both the blue and green together. In a close game, my play here to blow up the two stars one after another, comes in handy: if you wait to sacrifice until you can destroy both stars, your opponent won't have time to counterattack.

Play again?
	maka: I see...

yeah... I wish the zendo game would also move at this pace :)


4375)
Started: 2006.9.24, Ended: 2006.9.24
Participants: zoltar (S), mjbuyck (N)
Winner: zoltar

1) mjbuyck: Homeworld G1 Y2 B3
	mjbuyck: Hi! To let you know, this is really my first time playing.

2) zoltar: Homeworld B3 Y1 G3

3) mjbuyck: Discover B3 Mjbuyck G3 Bacon
	zoltar: Well, I hope you enjoy it. I learned in June, and lost my first dozen games or so, and then got pretty good at it. The hardest tactics to learn are the sacrifices, because they look strange at first and it's easy to overlook them. This has become my favorite game here, and I think it's a wonderful chess-like game.
	mjbuyck: ...oops.
>_<
	zoltar: Btw, the first rule is to never, ever abandon your homeworld. :) Also, even if you had other ships, it's usually very bad to leave your homeworld without a 3-pip sized ship defending it at all times. While usually you can undo your move, there is a flaw in the program, so that if you blow up your homeworld like that, you can't take it back.   Want to start over and try again?
	mjbuyck: Just did with your other open challenge.



4383)
Started: 2006.9.24, Ended: 2006.9.25
Participants: mjbuyck (S), zoltar (N)
Winner: zoltar

1) zoltar:
Homeworld B3 Y1 G3
	mjbuyck: Well that had to have been the shortest game of HW ever... let's try that again.
I totally forgot that rule.
	zoltar: h b3 y1 g3

2) mjbuyck: Homeworld B2 G3 Y3
	zoltar: It takes a long time to get the 'feel' for this game (unlike say, Pikemen, where you can get most of the strategy after a game or two), but I think it is well worth it, once you figure out how to build and organize your pieces well.

3) zoltar: Build G1 Zoltar

4) mjbuyck: Build Y1 Mjbuyck

5) zoltar: Build G1 Zoltar

6) mjbuyck: Discover Y1 Mjbuyck G1 Winterfell

7) zoltar: Discover G1 Zoltar B2 Blueridge

8) mjbuyck: Build Y1 Mjbuyck

9) zoltar: Build G2 Blueridge

10) mjbuyck: Build Y2 Mjbuyck

11) zoltar: Trade G2 Y2 Blueridge

12) mjbuyck: Discover Y2 Mjbuyck B1 Riverrun

13) zoltar: Build G2 Blueridge

14) mjbuyck: Trade Y1 B1 Mjbuyck

15) zoltar: Trade G2 B2 Blueridge

16) mjbuyck: Move B1 Mjbuyck Winterfell
	zoltar: Btw, just want to make sure you see the 'trap' here. If you build another blue ship right now in your homeworld, I can sacrifice my Y2 ship for two movements, and move my B2 ship into your homeworld : this would create a fourth blue so that I could blow up all the blue ships and your blue homeworld star.

17) zoltar: Discover B2 Blueridge G3 Greenhills
	mjbuyck: I understand that, but how? I would have only had three blues in the system then.
	mjbuyck: Oh, nm.

18) mjbuyck: Build Y1 Mjbuyck

19) zoltar: Build G2 Blueridge

20) mjbuyck: Trade Y2 G2 Riverrun

21) zoltar: Trade G1 R1 Blueridge

22) mjbuyck: Build Y2 Winterfell

23) zoltar: Trade B2 Y2 Greenhills

24) mjbuyck: Build Y3 Mjbuyck

25) zoltar: Sacrifice Y2 Blueridge
Move Y2 Greenhills Winterfell
Move Y2 Winterfell Mjbuyck
Catastrophe Mjbuyck Y
	zoltar: Ouch! Building a third Yellow when I could sack and blow them up was very bad, but having nothing but yellow ships in your system was fatal.  Sorry, I should have warned you and had you taken it back, but like the other game, it doesn't give me a choice now to take back my move once a homeworld has blown up. 
	mjbuyck: ah... I thought you couldn't put the fourth yellow in my system. I thought that the moving piece had to be in the same system. That'll teach me to read the rules better.
	zoltar: It's any 4 of the same color, whether your ships, my ships, or a star, and my sacrifice allowed me to to so. Again, I was playing fast jumping from game to game, and I forgot I should tell you this and have you undo it, which I would have done if I had taken some time. Don't get discouraged, though: it's a great game and I lost a bunch of games before I ever won one and got the hang of it.
	mjbuyck: That's what I meant, I knew what would happen if you stuck in a fourth, but due to a rule misconception I figured that it wasn't possible that turn.



4385)
Started: 2006.9.24, Ended: 2006.9.25
Participants: zoltar (S), mjbuyck (N)
Winner: zoltar

1) mjbuyck: Homeworld Y1 G2 B3

2) zoltar: Homeworld R3 B2 G3

3) mjbuyck: Build B1 Mjbuyck

4) zoltar: Build G1 Zoltar

5) mjbuyck: Discover B1 Mjbuyck G3 Lamp

6) zoltar: Trade G1 Y1 Zoltar

7) mjbuyck: Build B1 Mjbuyck

8) zoltar: Build Y1 Zoltar

9) mjbuyck: Build B1 Mjbuyck

10) zoltar: Build Y2 Zoltar

11) mjbuyck: Discover B1 Mjbuyck B3 Baxter

12) zoltar: Trade Y2 B2 Zoltar

13) mjbuyck: Discover B1 Mjbuyck B3 Panda

14) zoltar: Build B2 Zoltar

15) mjbuyck: Trade B3 G3 Mjbuyck

16) zoltar: Discover B2 Zoltar G1 Greendale

17) mjbuyck: Build B3 Lamp

18) zoltar: Build Y2 Zoltar

19) mjbuyck: Build G1 Mjbuyck

20) zoltar: Move Y1 Zoltar Greendale

21) mjbuyck: Move G1 Mjbuyck Panda

22) zoltar: Build Y2 Greendale

23) mjbuyck: Trade B3 Y3 Lamp

24) zoltar: Build B3 Greendale

25) mjbuyck: Move B1 Lamp Mjbuyck

26) zoltar: Trade Y1 R1 Greendale

27) mjbuyck: Build Y1 Lamp

28) zoltar: Move B3 Greendale Lamp

29) mjbuyck: Build G1 Mjbuyck
	zoltar: The other major rule is that you need to build a red ship as soon as your opponent does. Note that if you had even a lowly R1 in any of your systems, you could now simply sacrifice the R1 and capture my B3. But I'm now threatening to sacrifice my R1 and capture your Y3.

30) zoltar: Sacrifice R1 Greendale
Attack Y3 Lamp

31) mjbuyck: Move Y1 Lamp Mjbuyck
	mjbuyck: aaah... I totally forgot about the sacrifice rule again. That takes some getting used to, the idea that you can sacrifice one ship to have another one do something on the other side of the solar system/galaxy.

32) zoltar: Build G2 Zoltar

33) mjbuyck: Trade G1 R1 Mjbuyck

34) zoltar: Build Y2 Lamp
	zoltar: Yes, it takes several games to get a feel for sacrifices. Think of it as giving the power of the color of the sacrificed piece to any star in the system where you have a ship, so you can act as if that star were of the sacrificed color. The hardest part is the multiple sacrifice rule, such as sacking a Y3 to move a piece three times, all the way from my homeworld to yours.
	mjbuyck: which I do realize that I just avoided, thank you.

35) mjbuyck: Move Y1 Mjbuyck Panda
	zoltar: Now normally here I would instinctively trade a ship somewhere for a red ship to balance yours. I instead decided to rapidly build yellow ships for several reasons: I have more large ships; you don't have large yellow ships to threaten to move pieces to attack me; the red star gives me defence of a red ship in my homeworld (red stars are an advantage in the middle game because of this but a disadvantage in the opening, where red isn't used); and I can secure a lasting advantage if I control most of the yellow technology.
	mjbuyck: And I can't store yellow because I you'll just blow me up, nice.
	mjbuyck: I've probably hurt myself too much by trying to keep the b1 pieces away from you. :P

36) zoltar: Sacrifice G2 Zoltar
Build Y3 Greendale
Build Y3 Lamp

37) mjbuyck: Build R1 Mjbuyck
	zoltar: Note that I couldn't get away with this trick if you had a Y2 somewhere (you would sacrifice the Y2 to move your Y1 twice and cause a catastrophe in Lamp, destroying both my Y3 ships).

38) zoltar: Move Y3 Greendale Panda

39) mjbuyck: Move Y1 Panda Greendale

40) zoltar: Trade Y2 R2 Lamp
	zoltar: Oops, I typed that in wrong.
	zoltar: Btw, a beginners mistake would have been to sacrifice my Y3 at greendale to move the Y3,Y3, and Y2 from Lamp to your homeworld and cause a catastrophe. While it would blow up one of your stars, it would liquidate my entire yellow fleet, and I would have only a slight advantage; whereas if I keep most of the yellows, I have a much larger advantage with all the added mobility and the threats of sacrificing.

41) mjbuyck: Build Y2 Greendale

42) zoltar: Sacrifice R2 Lamp
Attack Y2 Greendale
Attack Y1 Greendale

43) mjbuyck: Move R1 Mjbuyck Baxter

44) zoltar: Trade Y3 R3 Lamp
	mjbuyck: hmm... just kill me?

45) mjbuyck: Trade B1 G1 Baxter

46) zoltar: Build G2 Zoltar
	zoltar: my best option is to simply use my advantage to get the rest of the large pieces before you can, and then attack, as you can't stop my buildup.

47) mjbuyck: Build G2 Baxter

48) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Panda
Build B1 Greendale

49) mjbuyck: Build R1 Mjbuyck
	mjbuyck: night

50) zoltar: Trade Y3 R3 Panda

51) mjbuyck: Trade G3 Y3 Mjbuyck

52) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build R2 Panda

53) mjbuyck: Move R1 Mjbuyck Baxter

54) zoltar: Sacrifice R2 Panda
Attack G1 Panda
Attack B1 Panda

55) mjbuyck: Build R2 Mjbuyck
	mjbuyck: not falling for that trap.

56) zoltar: Sacrifice G3 Zoltar
Build G3 Panda
Build R2 Panda
Build R2 Lamp

57) mjbuyck: Pass

58) zoltar: Sacrifice Y3 Panda
Move Y1 Zoltar Greendale
Move Y1 Greendale Panda
Move Y1 Greendale Panda

59) mjbuyck: Move R1 Mjbuyck Baxter

60) zoltar: Sacrifice Y3 Lamp
Move Y1 Panda Mjbuyck
Move Y1 Panda Mjbuyck
Move R3 Panda Mjbuyck
Catastrophe Mjbuyck Y
	mjbuyck: There's not too much more I can do to avoid this, is there?

61) mjbuyck: Pass

62) zoltar: Sacrifice R2 Lamp
Attack R2 Mjbuyck
Attack B1 Mjbuyck

	zoltar: gg -- ready to try again?
	mjbuyck: gg


4393)
Started: 2006.9.25, Ended: 2006.10.18
Participants: Aaron (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B1 Y2 G3

2) Aaron: Homeworld B2 Y3 G3
	Keith: Hello Aaron.  Nice to have you accept my challenge.
	Aaron: Nice to see somebody other than world champions offering one! =)  Best of luck!

3) Keith: Build G1 Keith

4) Aaron: Build G1 Aaron

5) Keith: Trade G1 B1 Keith

6) Aaron: Trade G1 R1 Aaron

7) Keith: Discover B1 Keith G3 Zesst

8) Aaron: Discover R1 Aaron G1 Limes

9) Keith: Build G1 Keith
	Keith: Well if you are going to pull an early red and move it out.

10) Aaron: Build R1 Limes

11) Keith: Trade G1 R1 Keith

12) Aaron: Build G1 Aaron

13) Keith: Build R2 Keith

14) Aaron: Trade G1 Y1 Aaron

15) Keith: Move R1 Keith Zesst

16) Aaron: Move Y1 Aaron Limes

17) Keith: Build R2 Zesst

18) Aaron: Build G1 Aaron

19) Keith: Build B1 Zesst

20) Aaron: Discover G1 Aaron Y1 Bananas

21) Keith: Sacrifice G3 Keith
Build R2 Zesst
Build R3 Keith
Build R3 Keith

22) Aaron: Move R1 Limes Zesst
Catastrophe Zesst R

23) Keith: Trade R3 G3 Keith

24) Aaron: Build R1 Limes

25) Keith: Trade R2 Y2 Keith

26) Aaron: Build G1 Bananas

27) Keith: Build G2 Keith

28) Aaron: Build G2 Aaron

29) Keith: Sacrifice G3 Keith
Build G2 Keith
Build G3 Keith
Build B2 Zesst

30) Aaron: Discover G1 Bananas Y3 Lemons

31) Keith: Discover G2 Keith Y3 Mellow

32) Aaron: Move G1 Bananas Lemons

33) Keith: Move G2 Keith Lemons

34) Aaron: Trade G2 B2 Aaron

35) Keith: Sacrifice Y2 Keith
Move B2 Zesst Limes
Discover B1 Zesst Y1 Brick

36) Aaron: Build G2 Aaron

37) Keith: Sacrifice R3 Keith
Attack R1 Limes
Attack R1 Limes
Attack G1 Lemons

38) Aaron: Trade B2 R2 Aaron

39) Keith: Attack Y1 Limes

40) Aaron: Move G2 Aaron Brick
	Keith: Hmmm... probably should not have done the undo an stuck with the setup that prevented you from getting to a b3.

41) Keith: Discover G1 Lemons R1 Eye
	Aaron: well, I just made a critical error in judgement so...shouldn't take you much longer at this point.

42) Aaron: Build R2 Aaron

43) Keith: Sacrifice R1 Limes
Attack G1 Lemons

44) Aaron: Move R2 Aaron Brick

45) Keith: Move G1 Lemons Keith

46) Aaron: Attack B1 Brick

47) Keith: Sacrifice G3 Keith
Build G3 Keith
Build Y1 Limes
Build Y2 Limes

48) Aaron: Move R2 Brick Zesst
	Keith: Well, whatever critical error you made and opportunity you gave me escaped me.  Now I have made my own minor error in giving you an easier in to blue.

49) Keith: Sacrifice G3 Keith
Build G3 Keith
Build B2 Limes
Build B3 Zesst
	Aaron: I really hate that factory thing =)

50) Aaron: Build B3 Brick
	Keith: I do not care for the factory "feature" of the game.  I find it is too effective to ignore from either side of the factory floor and attending to it constrains my choices starting witht he initial setup and continuing through the mid-game. 

51) Keith: Sacrifice R1 Limes
Attack R2 Zesst

52) Aaron: Move B3 Brick Lemons

53) Keith: Move Y1 Limes Aaron

54) Aaron: Attack Y1 Aaron

55) Keith: Move Y1 Limes Aaron

56) Aaron: Sacrifice Y1 Aaron
Pass

57) Keith: Sacrifice G2 Lemons
Build Y1 Aaron
Build Y2 Aaron
Catastrophe Aaron Yellow

58) Aaron: Build G2 Aaron

59) Keith: Move B2 Limes Aaron

60) Aaron: Attack B2 Aaron

61) Keith: Sacrifice Y2 Limes
Move B2 Limes Aaron
Move B1 Zesst Aaron
Catastrophe Aaron Blue

	Keith: Thank you for the enjoyable struggle.
	Aaron: Very well done, Keith!  Always a pleasure.


4404)
Started: 2006.9.25, Ended: 2006.9.28
Participants: zoltar (S), maka (N)
Winner: zoltar

1) maka: Homeworld G3 B2 Y3

2) zoltar: Homeworld Y2 B1 G3

3) maka: Build Y1 Maka

4) zoltar: Build G1 Zoltar

5) maka: Build Y1 Maka

6) zoltar: Trade G1 Y1 Zoltar

7) maka: Trade Y1 B1 Maka

8) zoltar: Build G1 Zoltar

9) maka: Trade Y1 G1 Maka

10) zoltar: Trade G1 B1 Zoltar

11) maka: Build B2 Maka

12) zoltar: Discover B1 Zoltar G3 Greenbelt

13) maka: Discover B2 Maka Y1 Sol

14) zoltar: Build G1 Zoltar

15) maka: Trade B2 G2 Sol

16) zoltar: Build B2 Greenbelt

17) maka: Move Y3 Maka Sol

18) zoltar: Trade B2 Y2 Greenbelt

19) maka: Trade B1 Y1 Maka
	zoltar: That is a very dangerous move, leaving your homeworld with out a 3-pip-size piece to defend it.

20) zoltar: Trade Y1 R1 Zoltar

21) maka: Trade G1 R1 Maka
	maka: I know :) 

22) zoltar: Build B1 Greenbelt

23) maka: Move Y3 Sol Greenbelt

24) zoltar: Discover Y2 Greenbelt G1 Runforyourlife

25) maka: Move Y3 Greenbelt Runforyourlife
	zoltar: Moving your Y3 which should be defending your homeworld to chase little ships is madness!
	maka: The thing is, I keep thinking up plans that then I realize I cannot actually play, but I guess I've played too few games... :) 

26) zoltar: Move Y2 Runforyourlife Maka

27) maka: Build R1 Maka
	zoltar: Yes, it takes several games to get the feel of what's going on, but you're never going to get off the ground if you move your defending 3-pip ship out of your homeworld! Now look what trouble I can make for you...
	zoltar: It's as if you marched your King out in the middle of the board the first three or four moves in chess.
	maka: i see :)

28) zoltar: Build R2 Zoltar

29) maka: Move Y3 Runforyourlife Maka
	maka: allright :)


30) zoltar: Sacrifice R2 Zoltar
Attack R1 Maka
Attack R1 Maka

31) maka: Trade Y3 R3 Maka
	zoltar: And now that I have three ships in your homeworld and you have no red ships, even your Y3 can't save you now...

32) zoltar: Sacrifice G3 Zoltar
Build R2 Maka
Build Y1 Maka
Build Y2 Maka
Catastrophe Maka Y
Catastrophe Maka R
	zoltar: And I get to finish off with a bang -- a sacrifice with a double catastrophe for checkmate! Hopefully, you'll never let your defending big ship wander out of your castle again after this...

GG.  Play again?



4388)
Started: 2006.9.28, Ended: 2006.9.29
Participants: zoltar (S), Manny (N)
Winner: zoltar

1) Manny: Homeworld B3 Y1 G3

2) zoltar: Homeworld R2 B3 G3

3) Manny: Build G1 Manny

4) zoltar: Build G1 Zoltar

5) Manny: Discover G1 Manny B2 Flux

6) zoltar: Trade G1 Y1 Zoltar

7) Manny: Build G1 Manny

8) zoltar: Build Y1 Zoltar

9) Manny: Trade G3 Y3 Manny

10) zoltar: Build Y2 Zoltar

11) Manny: Build Y2 Manny

12) zoltar: Discover Y1 Zoltar G1 Greenbelt

13) Manny: Move Y2 Manny Flux

14) zoltar: Build G2 Zoltar

15) Manny: Build G2 Flux

16) zoltar: Discover Y1 Zoltar B1 Blueridge

17) Manny: Build G2 Manny

18) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenbelt
Build Y3 Blueridge
Build Y3 Zoltar

19) Manny: Trade G1 R1 Manny

20) zoltar: Trade Y1 R1 Blueridge

21) Manny: Discover G2 Flux Y1 Amber

22) zoltar: Discover Y1 Greenbelt B2 Blueberry

23) Manny: Build R1 Manny

24) zoltar: Move Y3 Blueridge Flux



4448)
Variants: "Unrated"
Started: 2006.9.30, Ended: 2006.10.5
Participants: Personman (S), Manny (N)
Winner: Manny

1) Manny: Homeworld Y1 B2 G3

2) Personman: Homeworld Y2 B3 G3

3) Manny: Build G1 Manny

4) Personman: Build G1 Personman

5) Manny: Trade G1 Y1 Manny

6) Personman: Trade G1 B1 Personman

7) Manny: Build G1 Manny

8) Personman: Build G1 Personman

9) Manny: Discover G1 Manny B3 Flux

10) Personman: Discover G1 Personman B1 Fluxx
	Manny: Sorry about that, I missed the email. Didn't realise it was my turn.
	Personman: No worries! Though if you start playing lots of games here, I *highly* recommend turning email notifications off and just checking your SDG homepage regularly. With one or two slow games I'm sure it's nice, but with ten it fills up your inbox rather quickly :)

11) Manny: Build Y1 Manny

12) Personman: Build B1 Personman

13) Manny: Move Y1 Manny Flux

14) Personman: Move B1 Personman Fluxx

15) Manny: Sacrifice G3 Manny
Build Y2 Flux
Build Y2 Flux
Build Y3 Manny

16) Personman: Build B2 Fluxx

17) Manny: Trade Y3 G3 Manny

18) Personman: Build B2 Personman

19) Manny: Discover Y1 Flux G1 Growth

20) Personman: Trade B1 R1 Personman

21) Manny: Sacrifice G3 Manny
Build Y3 Manny
Build Y3 Growth
Build Y3 Growth

22) Personman: Move B2 Personman Growth

23) Manny: Discover Y1 Growth B3 Whirlpool

24) Personman: Build B1 Growth

25) Manny: Trade Y3 R3 Manny

26) Personman: Trade G3 Y3 Personman

27) Manny: Sacrifice Y2 Flux
Move Y3 Growth Personman
Move Y3 Growth Personman
Catastrophe Personman Y

28) Personman: Build G2 Fluxx

29) Manny: Move R3 Manny Personman

30) Personman: Sacrifice G2 Fluxx
Build R1 Personman
Build G2 Fluxx

31) Manny: Sacrifice G1 Flux
Build R1 Personman
Catastrophe Personman R

	Manny: Cheers. Thanks for the game.
	Personman: gg.


4386)
Started: 2006.10.2, Ended: 2006.10.5
Participants: zoltar (S), Papipo (N)
Winner: zoltar

1) Papipo: Homeworld G2 B1 Y3

2) zoltar: Homeworld R3 B2 G3

3) Papipo: Build Y1 Papipo

4) zoltar: Build G1 Zoltar

5) Papipo: Discover Y1 Papipo B3 Bluemoon

6) zoltar: Trade G1 Y1 Zoltar

7) Papipo: Trade Y1 G1 Bluemoon

8) zoltar: Build G1 Zoltar
	Papipo: This is my first game :S
	zoltar: Good luck! It's a very hard game to learn, I found out. I learned in June and it took me several games to understand all the tactics. The sacrifices are the most tricky and the hardest to get used to and anticipate. However, after a few games, this has become my favorite of all the games here, and I've gotten pretty good at it.

9) Papipo: Build Y1 Papipo

10) zoltar: Trade G1 R1 Zoltar

11) Papipo: Build G1 Bluemoon

12) zoltar: Build R1 Zoltar

13) Papipo: Trade Y3 G3 Papipo

14) zoltar: Trade R1 B1 Zoltar

15) Papipo: Trade G1 R1 Bluemoon

16) zoltar: Build B1 Zoltar

17) Papipo: Trade G3 B3 Papipo

18) zoltar: Discover B1 Zoltar G1 Greenbelt
	Papipo: I think that you have an advantage atm
	zoltar: Not quite yet. The trick here is to try to make your opponent take the last of any size of one color, as there is always an advantage to having larger ships.  Here I haven't yet found a way to get an advantage and secure larger ships. 

19) Papipo: Build B2 Papipo

20) zoltar: Build B2 Greenbelt

21) Papipo: Trade B2 Y2 Papipo

22) zoltar: Trade B2 Y2 Greenbelt

23) Papipo: Move Y1 Papipo Bluemoon

24) zoltar: Sacrifice G3 Zoltar
Build B2 Greenbelt
Build B2 Greenbelt
Build B3 Zoltar

25) Papipo: Trade B3 G3 Papipo
	zoltar: Uh oh! Since it's your first game, I want to tell you to undo that move, as it's a classic beginner's mistake and would be just about the end of the game:

I can sacrifice my newly made Y2 in Greenbelt for 2 movements; I use the 2 movements to move my B1 from Greenbelt to Bluemoon to Papino, and I destroy your blue star and your 2 blue ships, which include your only large ship, leaving your homeworld half-destroyed and without a large defending ship.  At that point your game is pretty much lost. 

This is where things are tricky. I now have a slight advantage precisely because you can't build a blue ship here. So you need to either move a yellow ship out, or trade one of your ships to a different color. But always check before building a third of any color to see if your opponent can sacrifice any yellow pieces (Y3's are the most dangerous) to create a catastrophe.
	Papipo: Ahahah, i see, thanks

26) zoltar: Trade B3 G3 Zoltar
	zoltar: Because of that threat, I now can do a clever sacrifice to grab more of the blue pieces.

27) Papipo: Sacrifice G3 Papipo
Build Y1 Papipo
Build Y2 Bluemoon
Build Y3 Papipo

28) zoltar: Sacrifice G3 Zoltar
Build B3 Zoltar
Build Y3 Zoltar
Build Y3 Greenbelt



4470)
Variants: "Unrated"
Started: 2006.10.2, Ended: 2006.10.5
Participants: frixuelin (S), Papipo (N)
Winner: Papipo

1) Papipo: Homeworld G1 B2 Y3

2) frixuelin: Homeworld B1 G2 Y3

3) Papipo: Build Y1 Papipo

4) frixuelin: Build Y1 Frixuelin

5) Papipo: Trade Y3 G3 Papipo



4472)
Started: 2006.10.2, Ended: 2006.10.9
Participants: Papipo (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y3 B1 G3

2) Papipo: Homeworld G2 Y1 B3

3) zoltar: Build G1 Zoltar

4) Papipo: Build B1 Papipo

5) zoltar: Trade G1 B1 Zoltar

6) Papipo: Build B2 Papipo

7) zoltar: Build B2 Zoltar

8) Papipo: Trade B1 Y1 Papipo

9) zoltar: Trade B2 Y2 Zoltar

10) Papipo: Discover Y1 Papipo G3 Gaia

11) zoltar: Discover Y2 Zoltar G2 Greenhills

12) Papipo: Trade B2 R2 Papipo

13) zoltar: Build G1 Zoltar

14) Papipo: Move R2 Papipo Gaia

15) zoltar: Trade G1 R1 Zoltar

16) Papipo: Build R1 Gaia

17) zoltar: Build G1 Zoltar

18) Papipo: Move R2 Gaia Greenhills

19) zoltar: Sacrifice R1 Zoltar
Attack R2 Greenhills
	zoltar: This is another case where you should undo this move. Note that I can simply sacrifice my R1 in the zoltar homeworld and by doing so, capture your R2 in greenhills, which essentially trades my R1 for an R1 and destroys your R2, making the move doubly bad for you. Remember that a sacrificed piece gives you that color's power in any star system. It's as if by sacrificing my R1, the star in greenhills becomes a red star for that turn.
	zoltar: I meant to say "trades my R1 for an R2". Note that a single R1 anywhere protects all my ships everywhere from an attack of ships the same size. That's why it's always important to have one red ship once your opponent gets red ships, but having more than one isn't as important for defence.

	Papipo: I must play more times :]


4481)
Started: 2006.10.3, Ended: 2006.10.29
Participants: unic (S), Lexicon (N)
Winner: Lexicon

1) Lexicon: Homeworld G1 B2 Y3

2) unic: Homeworld B3 R2 G3

3) Lexicon: Build Y1 Lexicon

4) unic: Build G1 Unic

5) Lexicon: Build Y1 Lexicon

6) unic: Trade G1 Y1 Unic

7) Lexicon: Trade Y1 G1 Lexicon

8) unic: Build Y1 Unic

9) Lexicon: Build Y2 Lexicon

10) unic: Discover Y1 Unic G1 Susan

11) Lexicon: Build G2 Lexicon

12) unic: Build Y2 Susan

13) Lexicon: Sacrifice Y2 Lexicon
Discover G2 Lexicon Y3 Titan
Discover G2 Titan B1 Titus

14) unic: Build G2 Unic

15) Lexicon: Build G2 Titus

16) unic: Trade G2 R2 Unic

17) Lexicon: Trade G2 R2 Titus

18) unic: Build G2 Unic

19) Lexicon: Build G2 Titus

20) unic: Discover Y2 Susan G3 Laura

21) Lexicon: Build G3 Lexicon

22) unic: Sacrifice G3 Unic
Build Y2 Laura
Build Y2 Susan
Build Y3 Unic

23) Lexicon: Sacrifice G1 Lexicon
Build R1 Titus

24) unic: Discover R2 Unic B1 Paula

25) Lexicon: Move Y1 Lexicon Laura

26) unic: Move Y2 Laura Lexicon

27) Lexicon: Discover Y3 Lexicon R3 Gladiator

28) unic: Build Y3 Laura
	unic: build y3 Laura
	unic: Oops - typed that into the wrong text box!

29) Lexicon: Move Y3 Gladiator Titus

30) unic: Build G1 Unic

31) Lexicon: Sacrifice R1 Titus
Attack Y2 Lexicon

32) unic: Move G2 Unic Susan

33) Lexicon: Move Y2 Lexicon Laura
Catastrophe Laura Y

34) unic: Discover Y1 Susan Y3 Desdemona

35) Lexicon: Discover G2 Titus B3 Midas

36) unic: Build G3 Unic

37) Lexicon: Build G3 Titus

38) unic: Move G1 Unic Paula

39) Lexicon: Sacrifice G3 Titus
Build G3 Titus
Build R1 Titus
Build R1 Titus

40) unic: Sacrifice Y2 Susan
Move R2 Paula Desdemona
Move R2 Desdemona Titus
Catastrophe Titus Red

41) Lexicon: Build Y1 Titus

42) unic: Trade Y1 B1 Unic

43) Lexicon: Move Y1 Titus Midas

44) unic: Sacrifice G2 Susan
Build G1 Paula
Build G2 Unic

45) Lexicon: Sacrifice G3 Titus
Build G3 Titus
Build Y1 Titus
Build Y2 Midas

46) unic: Trade G2 R2 Unic

47) Lexicon: Move Y2 Midas Lexicon

48) unic: Move R2 Unic Titus

49) Lexicon: Sacrifice G3 Titus
Build G2 Midas
Build G3 Titus
Build Y2 Lexicon

50) unic: Move G3 Unic Titus

51) Lexicon: Sacrifice Y2 Lexicon
Move Y1 Titus Unic
Move Y3 Titus Unic

52) unic: Attack G3 Titus

53) Lexicon: Attack B1 Unic

54) unic: Sacrifice R2 Titus
Attack Y3 Unic
Attack B1 Unic

55) Lexicon: Sacrifice G2 Midas
Build Y2 Unic
Build G2 Titus
Catastrophe Unic Y
Catastrophe Titus G

56) unic: Trade G1 Y1 Paula
	Lexicon: BOOM!
BOOM! 
You snuck past me this time, but at least I got to make a double supernova! :)

57) Lexicon: Sacrifice Y2 Lexicon
Move G2 Midas Paula
Move G2 Paula Unic



4479)
Started: 2006.10.3, Ended: 2006.12.28
Participants: Laurie_Menke (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y1 B2 G3

2) Laurie_Menke: Homeworld Y3 B1 G3
	jeep: Wow, how did 3 days go by?  Sheesh.  I thought this had jsut started!!
	Laurie_Menke: Yeah, time does fly.  Good luck!

3) jeep: Build G1 Jeep

4) Laurie_Menke: Build G1 Laurie_menke

5) jeep: Trade G1 Y1 Jeep

6) Laurie_Menke: Trade G1 Y1 Laurie_menke

7) jeep: Build Y2 Jeep

8) Laurie_Menke: Build Y2 Laurie_menke

9) jeep: Trade Y2 R2 Jeep

10) Laurie_Menke: Trade Y2 R2 Laurie_menke

11) jeep: Build Y2 Jeep

12) Laurie_Menke: Build Y2 Laurie_menke

13) jeep: Discover Y1 Jeep G3 Thumb
	Laurie_Menke: Hey, jeep....I just read that you were injured.  Are you OK?
	jeep: I'm ok now.  Took a while for me to be able to sit at a computer for more than a few minutes at a time, though.

14) Laurie_Menke: Discover Y2 Laurie_menke G2 Acres
	Laurie_Menke: Sorry to hear that.  But glad you're doing better.  :o)

15) jeep: Sacrifice G3 Jeep
Build Y2 Thumb
Build Y3 Thumb
Build Y3 Jeep

16) Laurie_Menke: Move Y2 Acres Thumb
Catastrophe Thumb Yellow

17) jeep: Trade Y3 G3 Jeep

18) Laurie_Menke: Discover Y1 Laurie_menke Y2 Luella

19) jeep: Build G1 Jeep

20) Laurie_Menke: Build G1 Laurie_menke

21) jeep: Discover G1 Jeep Y3 Submarine

22) Laurie_Menke: Discover G1 Laurie_menke Y2 Sharon

23) jeep: Build G1 Jeep

24) Laurie_Menke: Build G2 Laurie_menke

25) jeep: Discover Y2 Jeep G3 Fertilizer

26) Laurie_Menke: Build G2 Sharon

27) jeep: Build G2 Jeep

28) Laurie_Menke: Discover G1 Sharon Y3 Roses

29) jeep: Build R1 Jeep

30) Laurie_Menke: Move G1 Roses Jeep
Catastrophe Jeep Green

31) jeep: Build Y1 Fertilizer
	jeep: Gah!  I didn't even notice that was connected.
	Laurie_Menke: ;o)

32) Laurie_Menke: Discover G2 Sharon B3 Berries

33) jeep: Build G1 Submarine
	Laurie_Menke: Man, I just thought of a better name for that star.  I should have called it Berry Hill.  Then I could say I found my thrill on Blue Berry Hill.  ;o)

34) Laurie_Menke: Move G3 Laurie_menke Luella

35) jeep: Discover G1 Submarine Y2 Sigh

36) Laurie_Menke: Move G3 Luella Berries

37) jeep: Build Y3 Fertilizer

38) Laurie_Menke: Move Y1 Luella Fertilizer
Catastrophe Fertilizer Yellow

39) jeep: Trade R1 G1 Jeep

40) Laurie_Menke: Trade G3 R3 Berries

41) jeep: Build G2 Sigh

42) Laurie_Menke: Trade G2 Y2 Berries

43) jeep: Build G2 Jeep

44) Laurie_Menke: Move R3 Berries Jeep

45) jeep: Sacrifice G2 Sigh
Build R1 Jeep
Build R1 Jeep
Catastrophe Jeep Red

46) Laurie_Menke: Build G2 Laurie_menke

47) jeep: Sacrifice G2 Jeep
Build G2 Sigh
Build G3 Jeep

48) Laurie_Menke: Discover G2 Laurie_menke Y2 Roses

49) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build G3 Submarine
Build G3 Sigh

50) Laurie_Menke: Move G2 Laurie_menke Sigh
Catastrophe Sigh Green

51) jeep: Discover G3 Submarine Y2 Salvation

52) Laurie_Menke: Build G1 Roses

53) jeep: Trade G3 R3 Jeep
	Laurie_Menke: Merry Christmas, Jeep!  I'm visiting family as well.  Hope you're having a great time!  :o)

54) Laurie_Menke: Move G2 Roses Laurie_menke
	jeep: It's fun.  It's midnight in 6 minutes (here, anyway) so Merry Xmas!  Tomorrow is going to be insane.  My Mom went overboard on gifts for my daughter (4 years old).
	Laurie_Menke: Another 53 minutes to midnight here (California).  Enjoy the chaos with your daughter tomorrow (later today!).  :o)

55) jeep: Move G3 Salvation Laurie_menke

56) Laurie_Menke: Sacrifice G2 Laurie_menke
Build R1 Laurie_menke
Build G2 Roses
	jeep: Today was fun.  Willow was great.  She got a lot of stuff and was really appreciative.  She played hard today and had great manners.  I'm very proud of her.  I'll be back on the west coast in a week.
	Laurie_Menke: Glad all went well.  She sounds like a keeper.  :o)  Our Christmas was good as well.  My niece and nephew are older now...14 & 16.  They got a computer for Christmas...very exciting.  :o)  We had 10 for dinner.  A nice time was had by all.

57) jeep: Sacrifice R3 Jeep
Attack R2S Laurie_menke
Attack R1S Laurie_menke
Pass

	jeep: Thanks for the game!  I thought I was a goner when I had no larges and you had one.
	Laurie_Menke: Nawww...you're definitely the better player.  It was just a matter of time.  ;o)  Thanks for the fun, and congrats!


4509)
Started: 2006.10.4, Ended: 2006.10.16
Participants: zoltar (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3

2) zoltar: Homeworld B1 Y3 G3
	Jesse: Ah, Homeworlds.  It's been a while.  I see you've done rather well, in the meantime.

3) Jesse: Build G1 Jesse
	zoltar: Well, Andy Looney and TwoShort can still beat me almost every game, but I've been playing mostly beginners these days.

4) zoltar: Build G1 Zoltar

5) Jesse: Trade G1 Y1 Jesse

6) zoltar: Trade G1 Y1 Zoltar

7) Jesse: Build G1 Jesse

8) zoltar: Build G1 Zoltar

9) Jesse: Trade G1 B1 Jesse

10) zoltar: Trade G1 B1 Zoltar

11) Jesse: Discover B1 Jesse G3 Gout

12) zoltar: Build B2 Zoltar

13) Jesse: Build B2 Gout

14) zoltar: Trade B2 R2 Zoltar

15) Jesse: Trade B2 R2 Gout

16) zoltar: Build B2 Zoltar

17) Jesse: Build B2 Gout

18) zoltar: Discover B1 Zoltar G2 Greenbelt

19) Jesse: Trade B2 Y2 Gout

20) zoltar: Discover B2 Zoltar Y2 Yellowstone

21) Jesse: Build Y1 Gout

	Jesse: Not going to fight for it, huh?
	zoltar: I have a one in ten chance with you even without giving you the monster handicap with 'the banker' which is unbeatable (by me at least).


4534)
Started: 2006.10.5, Ended: 2006.10.10
Participants: zoltar (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B1 Y2 G3
	zoltar: Prepare to meat your DOOM, lowly Earthling!
	Keith: I know, I know.  It was either you or antihero and he had a day to challenge me before you signed up and did not.

2) zoltar: Homeworld B1 R3 G3

3) Keith: Build G1 Keith

4) zoltar: Build G1 Zoltar

5) Keith: Discover G1 Keith Y3 Hydra

6) zoltar: Trade G1 Y1 Zoltar

7) Keith: Build G1 Keith

8) zoltar: Build Y1 Zoltar

9) Keith: Trade G1 B1 Keith

10) zoltar: Discover Y1 Zoltar G2 Greenbelt

11) Keith: Build B2 Keith

12) zoltar: Build Y1 Greenbelt

13) Keith: Move B1 Keith Hydra

14) zoltar: Discover Y1 Greenbelt B3 Blueridge

15) Keith: Build G1 Keith

16) zoltar: Build Y2 Greenbelt

17) Keith: Discover B2 Keith Y3 Drift

18) zoltar: Build G1 Zoltar

19) Keith: Trade G1 R1 Keith

20) zoltar: Trade G1 R1 Zoltar

21) Keith: Build B2 Hydra

22) zoltar: Build Y2 Zoltar

23) Keith: Sacrifice G3 Keith
Build B2 Drift
Build B3 Drift
Build B3 Hydra

24) zoltar: Build Y3 Greenbelt

25) Keith: Move B3 Drift Keith

26) zoltar: Build R1 Zoltar

27) Keith: Sacrifice B3 Hydra
Trade B2 R2 Hydra
Trade B2 R2 Drift
Trade B3 G3 Keith

28) zoltar: Move R1 Zoltar Greenbelt

29) Keith: Sacrifice G3 Keith
Build R2 Drift
Build R3 Hydra
Build R3 Keith
	Keith: I was playing a dangerous game by not trading into a yellow ship.  I miscalculated that I could force one out of greenbelt.

30) zoltar: Build G1 Zoltar

31) Keith: Build B2 Hydra
	zoltar: You'll probably win this, as you can now easily get all the blue ships and at least one of the big greens. Since I have a lock on the yellow's, I won't resign, and I'll see if I can hold out. I've lost just about every homeworlds game these days. My beginner's winning streak seems to be over!
	Keith: Actually I think I have figured out a way to get a yellow but it will take 5 turns and cost me 4 reds.

I did have most of the blues at one time.  Was it a mistake to trade them in?
	zoltar: No, that's what they're good for: trading them for big ships in other colors. Now I have to figure out a way to do something before you get yellow ships and overrun my fleet.
	Keith: I found a flaw in my plan for a yellow in five turns at the cost of four reds.  I am going to have to proceed some other way that is not clear to me yet.  

32) zoltar: Move G1 Zoltar Greenbelt

33) Keith: Sacrifice B2 Hydra
Trade R2 G2 Hydra
Trade R2 G2 Drift

34) zoltar: Build R2 Zoltar

35) Keith: Move G2 Drift Greenbelt
	Keith: Time to find out what I am overlooking.

36) zoltar: Sacrifice Y2 Greenbelt
Move R1 Greenbelt Blueridge
Discover R1 Zoltar B2 Desperation

37) Keith: Sacrifice G2 Hydra
Build B2 Hydra
Build G1 Greenbelt
Catastrophe Greenbelt Green

38) zoltar: Sacrifice G3 Zoltar
Build Y1 Zoltar
Build Y2 Blueridge
Build Y3 Blueridge

39) Keith: Trade R3 B3 Keith
	Keith: I don't know.  The last time I made a move after my bedtime against you and left one color of ships in my homeworld was a disaster.
	zoltar: And the Yellow Fleet is still mine! Yay!
	zoltar: Yep, with one color in your homeworld and my retaining the yellow fleet, you'd better watch out!
	Keith: Darn you clever Zoltar!  I did not go for the y2 because I thought bumbing the number of yellows to three in the stash would keep one in reach while you took a big ship hit.
	Keith: And it is not like all the ships in blueridge were going to slip away.
	zoltar: Zoltar will defeat you yet, primitive carbon waterbag unit! Without Yellow warp-drive technology, you will never reach the Zoltarian Homeworld! Bwahahaha!

40) zoltar: Move Y3 Blueridge Desperation

41) Keith: Sacrifice G1 Hydra
Build B3 Drift
	Keith: Ahhh.... Zoltar speech.  You finally feel like your are winning.

42) zoltar: Trade R2 G2 Zoltar
	Keith: No green anywhere on the board.

43) Keith: Discover B2 Drift G2 Ghaaa
	zoltar: At least Zoltar got to threaten mate-in-one last move!
	zoltar: Zee only gude hyu-maahn bean ease a dead hyu-maahn bean!
	Keith: Did not and do not see that mate-in-one or how discovering a b3 with an r2 diffused one.
	Keith: Wait, that was the other plan.  How did sacrificing a g1 to build an r3 avoid a mate-in-one?

44) zoltar: Move R1 Desperation Zoltar

45) Keith: Move R2 Drift Ghaaa

46) zoltar: Build R2 Zoltar
	zoltar: Trading the R3 for B3 avoided the mate-in-one.

47) Keith: Sacrifice B3 Drift
Trade R3 Y3 Hydra
Pass
Pass

	Keith: Yellow, at least for half a turn.
	zoltar: Wow, that was a great move! gg.
	Keith: Thank you.  I am exhausted.


4510)
Started: 2006.10.8, Ended: 2006.12.8
Participants: zoltar (S), Kermit (W), mjbuyck (N), maka (E)
Winner: maka

1) mjbuyck: Homeworld G1 B3 Y3

2) maka: Homeworld G3 B2 Y3

3) zoltar: Homeworld R1 B2 G3

4) Kermit: Homeworld B2 Y3 G3

5) mjbuyck: Build Y1 Mjbuyck

6) maka: Build Y1 Maka

7) zoltar: Build G1 Zoltar

8) Kermit: Build G1 Kermit
	maka: I'm going on holidays until Sunday...

9) mjbuyck: Trade Y1 G1 Mjbuyck

10) maka: Trade Y1 R1 Maka

11) zoltar: Trade G1 Y1 Zoltar

12) Kermit: Trade G1 B1 Kermit

13) mjbuyck: Build G1 Mjbuyck

14) maka: Build Y1 Maka

15) zoltar: Build G1 Zoltar

16) Kermit: Build B1 Kermit

17) mjbuyck: Trade G1 B1 Mjbuyck

18) maka: Trade Y1 B1 Maka

19) zoltar: Trade G1 B1 Zoltar

20) Kermit: Trade B1 Y1 Kermit

21) mjbuyck: Build Y1 Mjbuyck

22) maka: Build Y1 Maka

23) zoltar: Build G1 Zoltar

24) maka: Discover Y1 Maka G1 Kiko

	mjbuyck: I suppose not.
	maka: isn't there a way to ending the game without resigning? 
	zoltar: Hey guys, wait for someone's time to run out, and then the other person can end the game and choose to terminate it without rating, but I actually don't think 4-player games get rated anyway.  I resigned because we were down to 3 and the game had just started.  We can start another if you'd like.
	maka: ok. done
	Kermit: multiplayer games are not rated, unfortunately, as I win more of those than two player. sorry for my delay see the general forum.


4589)
Started: 2006.10.8, Ended: 2007.3.23
Participants: noel45424 (S), Personman (N)
Winner: Personman

1) Personman: Homeworld B3 Y1 G3

2) noel45424: Homeworld G3 B1 Y3

3) Personman: Build G1 Personman

4) noel45424: Build Y1 Noel45424

5) Personman: Trade G1 Y1 Personman

6) noel45424: Discover Y1 Noel45424 G2 P4x-639

7) Personman: Build G1 Personman

8) noel45424: Build Y2 Noel45424

9) Personman: Move Y1 Personman P4x-639

10) noel45424: Trade Y3 R3 Noel45424

11) Personman: Trade G1 R1 Personman

12) noel45424: Build Y2 Noel45424

13) Personman: Build G1 Personman

14) noel45424: Trade Y2 G2 Noel45424

15) Personman: Discover Y1 P4x-639 G1 G1a

16) noel45424: Trade G2 B2 Noel45424

17) Personman: Build Y2 G1a
	noel45424: heh, I'm having fun.  trying to figure out why you do what you do, and even more, trying to figure out why the heck I do what I do!  --paul

18) noel45424: Build B1 Noel45424

19) Personman: Move R1 Personman P4x-639

20) noel45424: Trade B2 R2 Noel45424

21) Personman: Attack Y1 P4x-639

22) noel45424: Move R2 Noel45424 P4x-639

23) Personman: Build R1 P4x-639
	noel45424: heya, I'm going camping ... will be back and will move Monday evening.

24) noel45424: Attack R1N P4x-639

25) Personman: Build R1 P4x-639
Catastrophe P4x-639 R

26) noel45424: Build Y2 Noel45424

27) Personman: Trade G1 R1 Personman

28) noel45424: Move Y2 Noel45424 P4x-639

29) Personman: Build Y3 P4x-639

30) noel45424: Build Y3 P4x-639
Catastrophe P4x-639 Y

31) Personman: Build R1 Personman

32) noel45424: Build R1 Noel45424

33) Personman: Build G1 Personman

34) noel45424: Trade R1 G1 Noel45424

35) Personman: Discover G1 Personman Y2 Y2a

36) noel45424: Build R1 Noel45424

37) Personman: Build G2 Y2a

38) noel45424: Move R1 Noel45424 Y2a

39) Personman: Move G1 Y2a Noel45424

40) noel45424: Trade G1 Y1 Noel45424

41) Personman: Build G1 Noel45424

42) noel45424: Build Y3 Noel45424

43) Personman: Sacrifice Y2 G1a
Move Y1 G1a Y2a
Move Y1 Y2a Noel45424
Catastrophe Noel45424 Y

44) noel45424: Build R2 Noel45424

45) Personman: Build G1 Noel45424
Catastrophe Noel45424 G

46) noel45424: Trade R3 G3 Noel45424

47) Personman: Sacrifice R1 Personman
Attack R1 Y2a

48) noel45424: Build G1 Noel45424

49) Personman: Build G1 Personman

50) noel45424: Build B1 Noel45424

51) Personman: Build G1 Y2a

52) noel45424: Trade B1 Y1 Noel45424

53) Personman: Move G1 Y2a Noel45424

54) noel45424: Trade G1 Y1 Noel45424

55) Personman: Sacrifice G2 Y2a
Build G1 Noel45424
Build G2 Noel45424
Catastrophe Noel45424 G

56) noel45424: Trade Y1 G1 Noel45424

57) Personman: Sacrifice G1 Personman
Build R1 Y2a

58) noel45424: Build G1 Noel45424

59) Personman: Build R2 Personman

60) noel45424: Build Y1 Noel45424

61) Personman: Trade R2 Y2 Personman

62) noel45424: Build R2 Noel45424

63) Personman: Build Y2 Personman

64) noel45424: Move R2 Noel45424 Y2a
	noel45424: sorry for the delay; I realize if this were a... typical game between knowledgeable players, I probably would have resigned after losing my yellow homestar ... but I'm still learning a lot, and enjoying.  many thanks.
	Personman: oh, no worries! I'm all for playing things out. And I've lost games where I'd destroyed one homestar, so don't be so sure...

65) Personman: Move G3 Personman Y2a
	noel45424: ohyeah, I haven't given up hope (but I'm scratching my head a bit).

66) noel45424: Move R2 Y2a Personman

67) Personman: Attack R2 Personman

68) noel45424: Move Y1 Noel45424 Y2a

69) Personman: Attack Y1 Y2a

70) noel45424: Build Y3 Noel45424

71) Personman: Discover Y2 Personman G2 G2a

72) noel45424: Trade Y3 G3 Noel45424

73) Personman: Build Y3 G2a

74) noel45424: Sacrifice G1 Noel45424
Build Y3 Noel45424

75) Personman: Move Y3 G2a Noel45424

76) noel45424: Attack Y3 Noel45424

77) Personman: Move Y1 Y2a Noel45424
Catastrophe Noel45424 Y

78) noel45424: Trade B1 Y1 Noel45424

79) Personman: Build G1 Y2a

80) noel45424: Discover G1 Noel45424 Y3 Peace

81) Personman: Move G1 Y2a Personman

82) noel45424: Build G1 Noel45424

83) Personman: Trade G1 B1 Personman

84) noel45424: Build R2 Noel45424

85) Personman: Trade R1 G1 Personman

86) noel45424: Move R2 Noel45424 G2a

87) Personman: Sacrifice R1 Y2a
Attack R2 G2a

88) noel45424: Move G1 Noel45424 Peace
	noel45424: Take all the time you need; rest & get well!  ---paul

89) Personman: Move R2 G2a Peace

	noel45424: hey I've been getting ready for a trip -- and am headed out until Friday.  I'll do my next turn then.


4592)
Variants: "Unrated"
Started: 2006.10.8, Ended: 2006.10.24
Participants: Personman (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B1 Y2 G3
	Keith: I took a look at your previous Homeworlds games.  Wow, you have no qualms about taking on the heavies.

2) Personman: Homeworld Y1 B3 G3
	Personman: Yeah... zoltar challenged me to a game once, and I kept thinking I was getting better and maybe had a chance. I was wrong, of course, but it was fun.

3) Keith: Build G1 Keith

4) Personman: Build G1 Personman

5) Keith: Discover G1 Keith Y3 Serpent
	Keith: I got as far against Zoltar as eliminating one of his home systems and having a superior force of ships before he beat me anyway.

When you play against Zoltar the less "Zoltar speak" you hear the better you are doing.

6) Personman: Trade G1 Y1 Personman

7) Keith: Build G1 Keith

8) Personman: Build Y1 Personman

9) Keith: Trade G1 B1 Keith

10) Personman: Discover Y1 Personman G2 Theme

11) Keith: Build G1 Keith
	Keith: It did not take me long to get into a yellow problem.

12) Personman: Build Y2 Personman

13) Keith: Build B1 Keith

14) Personman: Trade Y2 B2 Personman

15) Keith: Move B1 Keith Serpent

16) Personman: Build Y2 Theme

17) Keith: Discover B1 Serpent Y2 Hydra

18) Personman: Build Y3 Personman

19) Keith: Discover B1 Keith G3 Behemoth

20) Personman: Build G1 Personman

21) Keith: Trade G1 R1 Keith

22) Personman: Discover Y2 Theme B3 Genre

23) Keith: Build G1 Serpent

24) Personman: Sacrifice Y3 Personman
Move Y1 Theme Genre
Move Y1 Genre Keith
Move Y2 Genre Keith

25) Keith: Attack Y2 Keith

26) Personman: Sacrifice G1 Personman
Build Y3 Keith
Catastrophe Keith Y

27) Keith: Trade R1 Y1 Keith

28) Personman: Build Y2 Personman

29) Keith: Build G1 Keith

30) Personman: Discover Y2 Personman G2 Type

31) Keith: Build B2 Behemoth

32) Personman: Move B2 Personman Type

33) Keith: Sacrifice G3 Keith
Build G2 Keith
Build G2 Serpent
Build G3 Keith

34) Personman: Move B2 Type Keith

35) Keith: Sacrifice G3 Keith
Build G3 Keith
Build B2 Hydra
Build B3 Hydra

36) Personman: Trade B2 R2 Keith

37) Keith: Trade B2 R2 Hydra

38) Personman: Attack G2 Keith

39) Keith: Sacrifice R2 Hydra
Attack G2 Keith
Attack R2 Keith

40) Personman: Discover Y2 Type B3 Class

41) Keith: Build Y2 Keith

42) Personman: Trade Y1 R1 Personman

43) Keith: Discover Y2 Keith G2 Cyclops

44) Personman: Build R1 Personman

45) Keith: Sacrifice G3 Keith
Build Y1 Cyclops
Build Y3 Keith
Build G3 Keith

46) Personman: Move R1 Personman Hydra

47) Keith: Sacrifice Y3 Keith
Move B3 Hydra Personman
Move B1 Hydra Personman
Move Y1 Cyclops Personman

48) Personman: Attack B3 Personman

49) Keith: Sacrifice G3 Keith
Build Y3 Personman
Build Y3 Personman
Build B2 Personman
Catastrophe Personman Yellow
Catastrophe Personman Blue
	Keith: It has been a tough and challenging game.  I felt like I was in trouble from about the third turn and then I lost one of my home system stars.
	Keith: Thank you for the good game.
	Personman: Indeed! Good game. 



4591)
Started: 2006.10.10, Ended: 2006.11.19
Participants: antihero (S), Personman (N)
Winner: antihero

1) Personman: Homeworld B2 Y1 G3

2) antihero: Homeworld B3 Y2 G3

3) Personman: Build G1 Personman

4) antihero: Build G1 Antihero

5) Personman: Discover G1 Personman B3 B3a

6) antihero: Discover G1 Antihero Y1 Y1a
	antihero: haha, i like your naming system. :)

7) Personman: Build G1 Personman

8) antihero: Build G2 Antihero

9) Personman: Build G2 B3a

10) antihero: Discover G1 Y1a Y3 Y3a

11) Personman: Trade G1 Y1 Personman

12) antihero: Trade G2 Y2 Antihero

13) Personman: Trade G2 Y2 B3a

14) antihero: Build G1 Y3a

15) Personman: Trade Y2 R2 B3a

16) antihero: Trade Y2 R2 Antihero

17) Personman: Build G2 B3a

18) antihero: Build G2 Antihero

19) Personman: Build Y1 Personman

20) antihero: Trade G2 Y2 Antihero

21) Personman: Discover Y1 Personman G3 G3a

22) antihero: Build G2 Antihero

23) Personman: Build Y2 Personman

24) antihero: Discover Y2 Antihero B1 B1a

25) Personman: Build Y3 G3a

26) antihero: Sacrifice G1 Y3a
Build Y3 B1a

27) Personman: Trade Y1 R1 Personman

28) antihero: Move Y3 B1a B3a

29) Personman: Sacrifice Y2 Personman
Discover R2 B3a Y1 Y1a
Move G2 B3a Y1a

30) antihero: Move G2 Antihero B1a

31) Personman: Build R1 Personman

32) antihero: Move G2 B1a B3a

33) Personman: Trade R1 B1 Personman

34) antihero: Build Y2 B3a

35) Personman: Move Y3 G3a B1a

36) antihero: Move Y2 B1a G3a

37) Personman: Move Y3 B1a G3a

38) antihero: Sacrifice G1 Y3a
Build Y3 G3a
Catastrophe G3a Yellow

39) Personman: Move B1 Personman B3a

40) antihero: Move Y3 B3a Y1a

41) Personman: Sacrifice G2 Y1a
Build B1 B3a
Build B1 B3a
Catastrophe B3a B

42) antihero: Sacrifice R2 Antihero
Attack R2 Y1a
Pass

43) Personman: Build G1 Personman

44) antihero: Build G1 Antihero

45) Personman: Build R1 Personman

46) antihero: Trade G1 B1 Antihero
	Personman: Well, I usually can't win at homeworlds when both players start off even, so I guess the obvious next step is to restart the game, but give you several extra pieces. Right? :p
	antihero: haha, that's right.

47) Personman: Trade R1 Y1 Personman

48) antihero: Move B1 Antihero Y1a

49) Personman: Build Y2 Personman

50) antihero: Build G1 Antihero

51) Personman: Discover Y1 Personman G3 G3a

52) antihero: Move R2 Y1a G3a

53) Personman: Discover Y1 G3a G2 G2a

54) antihero: Move Y3 Y1a G3a

55) Personman: Build R1 Personman

56) antihero: Discover B1 Y1a G2 G2b

57) Personman: Discover R1 Personman B3 B3a

58) antihero: Build B1 G2b

59) Personman: Trade R1 G1 B3a

60) antihero: Trade B1 Y1 G2b

61) Personman: Sacrifice G3 Personman
Build G2 B3a
Build Y2 G2a
Build G3 Personman

62) antihero: Sacrifice G3 Antihero
Build G3 Antihero
Build Y3 G2b
Build Y3 G3a

63) Personman: Sacrifice Y2 Personman
Move Y2 G2a G3a
Move Y1 G2a G3a
Catastrophe G3a Y

64) antihero: Build G2 Antihero

65) Personman: Trade G2 Y2 B3a

66) antihero: Trade G1 R1 Antihero

67) Personman: Build Y1 B3a

68) antihero: Move Y3 G2b G3a

69) Personman: Discover Y1 B3a G1 G1a

70) antihero: Sacrifice G3 Antihero
Build G2 Antihero
Build Y2 G2b
Build Y3 G3a

71) Personman: Sacrifice G3 Personman
Build G3 Personman
Build G3 B3a
Build Y3 B3a

72) antihero: Sacrifice B1 G2b
Trade Y3 R3 G3a

73) Personman: Sacrifice Y2 B3a
Move G1 B3a G1a
Move G1 G1a Antihero

74) antihero: Sacrifice Y2 G2b
Move Y3 G3a Personman
Move R3 G3a Personman

75) Personman: Attack R3 Personman

76) antihero: Sacrifice R2 G3a
Attack G3 Personman
Attack R3 Personman

77) Personman: Sacrifice G3 B3a
Build G3 Personman
Build R1 Personman
Build R2 Personman
Catastrophe Personman R

78) antihero: Trade Y3 G3 Personman
Catastrophe Personman Green

	antihero: whoops, forgot the catastrophe, that was almost catastrophic. Good game, sir.
	Personman: Good game! Well won.


4537)
Started: 2006.10.11, Ended: 2006.10.17
Participants: zoltar (S), mneme (N)
Winner: mneme

1) mneme: Homeworld Y2 B1 G3

2) zoltar: Homeworld R1 B3 G3

3) mneme: Build G1 Mneme

4) zoltar: Build G1 Zoltar

5) mneme: Discover G1 Mneme B3 Emerald

6) zoltar: Trade G3 Y3 Zoltar

7) mneme: Build G1 Emerald

8) zoltar: Build G2 Zoltar

9) mneme: Build G2 Mneme

10) zoltar: Discover G1 Zoltar Y2 Yellowstone

11) mneme: Trade G1 Y1 Emerald

12) zoltar: Build Y1 Zoltar

13) mneme: Discover G2 Mneme G3 Jade

14) zoltar: Trade Y1 R1 Zoltar

15) mneme: Build G1 Mneme

	zoltar: Well, I'm already about to resign this one...
	zoltar: Yeah, I don't have a chance in this one. 
	mneme: Er.  If you say so -- I'm a very weak player (why I've been playing banker later) and I had many, many opportunities to fail utterly at stoping my booted food into your face.  
	mneme: Ok, getting a second large green soon was very strong, but still losable given sufficient blunders.
	zoltar: I figured that after the last game, you're as good as I am, and I can't stop you from getting the 'factory' with that next large green, so that you can make 2 builds every move, so I figured I am lost for sure.  I've lost 5 or 6 straight games now (not including silly 4-player ones, which are sort of random), and it's been a while since I've played well at this game.  
	mneme: True.  But you could still have put me on the defensive nicely, especially since there was no way for me to suck up all the green without giving you an opportunity to cause a catastrophe. I still had a monocolored homeworld, which was badness.
	zoltar: Yes, that makes sense -- I didn't think about that but just figured I was doomed again. :)


4667)
Started: 2006.10.16, Ended: 2006.11.11
Participants: antihero (S), gundam_blade (N)
Winner: antihero

1) gundam_blade: Homeworld G3 B2 Y3

2) antihero: Homeworld B1 G2 Y3

3) gundam_blade: Build Y1 Gundam_blade
	antihero: Hello again. Have you played homeworlds much before?

4) antihero: Build Y1 Antihero

5) gundam_blade: Trade Y1 R1 Gundam_blade

6) antihero: Trade Y1 G1 Antihero

7) gundam_blade: Build Y1 Gundam_blade

8) antihero: Build Y1 Antihero

9) gundam_blade: Trade Y1 G1 Gundam_blade

10) antihero: Discover G1 Antihero Y3 Sol

11) gundam_blade: Discover G1 Gundam_blade B1 Jdogg

12) antihero: Trade Y1 R1 Antihero

13) gundam_blade: Build G1 Jdogg

14) antihero: Build G2 Sol

15) gundam_blade: Trade G1 Y1 Jdogg

16) antihero: Discover G1 Sol B1 Switch

17) gundam_blade: Build Y1 Jdogg

18) antihero: Build G1 Switch

19) gundam_blade: Build R1 Gundam_blade

20) antihero: Build R2 Antihero

21) gundam_blade: Build R2 Gundam_blade

22) antihero: Move R2 Antihero Sol

23) gundam_blade: Move R2 Gundam_blade Jdogg

24) antihero: Discover R2 Sol Y2 Sink

25) gundam_blade: Build R2 Jdogg

26) antihero: Build R3 Antihero

27) gundam_blade: Build R3 Gundam_blade

28) antihero: Sacrifice G1 Switch
Build R3 Sink

29) gundam_blade: Move R3 Gundam_blade Switch

30) antihero: Sacrifice G1 Switch
Build G1 Sol



4665)
Started: 2006.10.16, Ended: 2006.10.16
Participants: gundam_blade (S), antihero (N)
Winner: antihero

1) antihero: Homeworld G1 B2 Y3

2) gundam_blade: Homeworld G3 B2 Y3

3) antihero: Build Y1 Antihero

4) gundam_blade: Build Y1 Gundam_blade

5) antihero: Build Y1 Antihero

6) gundam_blade: Build Y2 Gundam_blade

7) antihero: Sacrifice Y3 Antihero
Discover Y1 Antihero B3 Hole1
Discover Y1 Hole1 B1 Hole2
Move Y1 Hole2 Gundam_blade
Catastrophe Gundam_blade Yellow
	antihero: Another, hopefully longer, game?
	gundam_blade: sure.  I didn't know you could do that. I do now.



4666)
Started: 2006.10.16, Ended: 2006.10.30
Participants: gundam_blade (S), bigby (N)
Winner: bigby

1) bigby: Homeworld Y2 B3 G3

2) gundam_blade: Homeworld G2 B1 Y3

3) bigby: Build G1 Bigby

4) gundam_blade: Build Y1 Gundam_blade

5) bigby: Discover G1 Bigby G1 Cassini

6) gundam_blade: Trade Y1 R1 Gundam_blade

7) bigby: Build G1 Bigby

8) gundam_blade: Build Y1 Gundam_blade

9) bigby: Build G2 Bigby

10) gundam_blade: Trade Y1 B1 Gundam_blade

11) bigby: Trade G2 B2 Bigby

12) gundam_blade: Discover B1 Gundam_blade G3 Planethollywood

13) bigby: Build G2 Bigby

14) gundam_blade: Build B1 Planethollywood

15) bigby: Discover G2 Bigby R1 Logan

16) gundam_blade: Build B2 Planethollywood

17) bigby: Build B2 Bigby

18) gundam_blade: Trade B2 Y2 Planethollywood

19) bigby: Move B2 Bigby Cassini

20) gundam_blade: Build B2 Planethollywood

21) bigby: Build B3 Cassini

22) gundam_blade: Sacrifice Y2 Planethollywood
Move B1 Planethollywood Cassini
Move B1 Planethollywood Cassini
Catastrophe Cassini Blue

23) bigby: Build B1 Bigby

24) gundam_blade: Build B1 Planethollywood

25) bigby: Move B1 Bigby Logan

26) gundam_blade: Build Y1 Gundam_blade

27) bigby: Build B2 Logan

28) gundam_blade: Build B3 Planethollywood

29) bigby: Trade B1 Y1 Logan

30) gundam_blade: Trade B3 Y3 Planethollywood

31) bigby: Sacrifice G3 Bigby
Build G2 Logan
Build G3 Bigby
Build G3 Bigby

32) gundam_blade: Move B1 Planethollywood Cassini

33) bigby: Move B2 Bigby Cassini

34) gundam_blade: Sacrifice R1 Gundam_blade
Attack G1 Cassini
	bigby: Sweet!

35) bigby: Move G3 Bigby Cassini

	bigby: Sorry about that.  I realized I gave the game away, so I tried again.


4668)
Started: 2006.10.19, Ended: 2006.10.20
Participants: zoltar (S), Manny (N)
Winner: zoltar

1) Manny: Homeworld Y2 B3 G3

2) zoltar: Homeworld R3 B1 G3

3) Manny: Build G1 Manny

4) zoltar: Build G1 Zoltar

5) Manny: Trade G1 Y1 Manny

6) zoltar: Trade G1 Y1 Zoltar

7) Manny: Build G1 Manny

8) zoltar: Build G1 Zoltar

9) Manny: Discover G1 Manny B1 Flux

10) zoltar: Trade G1 B1 Zoltar

11) Manny: Build G1 Manny

12) zoltar: Build B2 Zoltar

13) Manny: Trade G3 B3 Manny

14) zoltar: Trade B1 R1 Zoltar

15) Manny: Build G1 Manny

16) zoltar: Build G2 Zoltar

17) Manny: Trade G1 R1 Manny

18) zoltar: Discover G2 Zoltar B2 Chrononauts

19) Manny: Build G1 Manny

20) zoltar: Build G2 Zoltar

21) Manny: Trade G1 B1 Manny

22) zoltar: Build B2 Zoltar

23) Manny: Discover B1 Manny G1 Slavelabour

24) zoltar: Trade B2 Y2 Zoltar

25) Manny: Build G2 Manny

26) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build G3 Chrononauts

27) Manny: Sacrifice G2 Manny
Build B2 Slavelabour
Build B3 Manny

28) zoltar: Trade G3 Y3 Chrononauts

29) Manny: Build G2 Flux

30) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Chrononauts
Build Y1 Chrononauts

	Manny: Thanks for the game. I think I'll give up now though.


4737)
Started: 2006.10.27, Ended: 2006.12.5
Participants: Keith (S), antihero (N)
Winner: Keith

1) antihero: Homeworld G2 B1 Y3

2) Keith: Homeworld Y3 B1 G3
	antihero: Here we go again!
	Keith: I am looking forward to it.  You are a good opponent.

3) antihero: Build Y1 Antihero

4) Keith: Build G1 Keith

5) antihero: Trade Y1 G1 Antihero

6) Keith: Trade G1 Y1 Keith

7) antihero: Build Y1 Antihero

8) Keith: Build G1 Keith

9) antihero: Discover Y1 Antihero G3 Forest

10) Keith: Discover Y1 Keith G2 Centaur

11) antihero: Build G1 Antihero

12) Keith: Trade G1 B1 Keith

13) antihero: Discover G1 Antihero Y3 Desert

14) Keith: Build B2 Keith

15) antihero: Build G1 Antihero

16) Keith: Move B2 Keith Centaur
	antihero: I must remember this situation where when we both have small blue in our homeworld then blue is ripe for the taking...

17) antihero: Trade G1 Y1 Antihero

18) Keith: Build Y2 Centaur

19) antihero: Build Y2 Forest

20) Keith: Sacrifice G3 Keith
Build B2 Centaur
Build B2 Centaur
Build B3 Keith
	Keith: And since I started down the blue line I feel like I should go to great effort dominate it.

21) antihero: Discover Y1 Antihero B3 Stopkeith

22) Keith: Trade B3 G3 Keith
	Keith: Very amusing system name.

23) antihero: Build Y2 Antihero
	antihero: now i just have to figure out how to do it.

24) Keith: Build B3 Keith

25) antihero: Sacrifice G1 Desert
Build Y3 Stopkeith

26) Keith: Trade B3 R3 Keith

27) antihero: Trade Y3 R3 Stopkeith
	antihero: man this is tough. I'm in bad shape here. Gotta think gotta think gotta think. I'll be a little late on this one, sorry.
	Keith: No problem.  Take your time.

28) Keith: Sacrifice Y2 Centaur
Move B2 Centaur Stopkeith
Move B2 Centaur Stopkeith

29) antihero: Move R3 Stopkeith Centaur

30) Keith: Sacrifice G3 Keith
Build B3 Centaur
Build B3 Centaur
Build Y2 Centaur

31) antihero: Sacrifice Y1 Forest
Move R3 Centaur Forest

32) Keith: Trade B3 G3 Centaur
	antihero: wow I'm getting destroyed here. This game is not going well.
	Keith: It does look bad for you, and yet it has been a struggle for me.  Your strong grip on the yellow supply and the threat of having that r3 prance through Centaur while it was chock full of my lesser ships has had me putting a lot of time into each of my turns because if my grip on blue falls apart so does my entire game.  

33) antihero: Discover Y2 Antihero B3 Ahhhh

34) Keith: Move G3 Centaur Keith
	antihero: If you wanna see something crazy check out my HW game with unic... (#5098)
	Keith: Wow.  All the 3 pointers makes a big visual splash.  The small universe it really going to change the game.  Any ship that moves out of your homeworld system moves further away from your opponent's homeworld.

35) antihero: Build R1 Forest
	Keith: That does put a nice dent in my recruit a 3 pointer every other turn program.
	antihero: I'm amazed I'm not down by more, here.

36) Keith: Build R1 Keith

37) antihero: Build Y1 Forest

38) Keith: Trade R3 Y3 Keith

39) antihero: Build G1 Antihero

40) Keith: Sacrifice Y2 Centaur
Move B2 Stopkeith Antihero
Move B2 Stopkeith Antihero

41) antihero: Sacrifice G1 Antihero
Build Y2 Ahhhh

42) Keith: Build G1 Keith

43) antihero: Discover Y1 Forest R2 Don'tmindme


44) Keith: Sacrifice Y3 Keith
Move B2 Centaur Stopkeith
Move B2 Stopkeith Antihero
Move B3 Centaur Forest
Catastrophe Antihero Blue
	Keith: That was a good offensive and defensive move.  I was going to put a fourth blue and a fourth green in your homeworld.

45) antihero: Sacrifice Y2 Ahhhh
Move R3 Forest Centaur
Move Y2 Ahhhh Antihero
	antihero: It's 1 move a day, which is faster, but this setting means I will run out of time less I think. Do you mind?
	Keith: No problem.  I have not tried the console thingie yet.  Not that computer sophisticated.  I will click on the box in my console message.

46) Keith: Move G1 Keith Antihero
	Keith: I just learned that you can't execute any orders after a catastrophe.  I was going to sacrifice my Y3, move a B2 into your homeworld, catastrophe, then, with our systems one apart move in a green.

	antihero: yes it certainly is...
	antihero: that was my last turn, I believe. Do you see any move that gives me any longer life?
	antihero: The way I see it, I have two options to save my homeworld, both of which will fail:

1. Take your g1. Your response, m g3 keith antihero; catastrophe antihero green.

2. Move my g1 out of antihero. Your response: sac g3 keith; build g1 antihero; build g1 antihero; build g2 antihero; massive catastrophe antihero green.
	antihero: Good game. I'll have to remember that blue thing -- it really killed me here.
	Keith: You saw right that you were out of options.  I was headed for creating a green catastrophe regardless.  If your prior move had been to evacuate the r3 and the g1 then I think I would have gained material but not had a catastrophe threat going.
	Keith: I am not sure about the blue thing.  It seems to me that blue is a weak color.  The further dimished the stash the further dimished its power...
And yet in my last three games I have grabbed enough blue to at least prevent a blue catastrophe in my homeworld and sometimes to prevent any blue aqusition at all.  I have fallen way behind in yellow while doing so every time but held on to some.  It seems like a risky but viable strategy.
	antihero: when I say "the blue thing" I mean a grab for blue is *very* viable when both homeworlds include a small blue. If you are the first to trade for blue and your opponent doesn't have any medium pieces yet they will either have to trade their large for blue (slows them down some) or allow you to own blue.


4771)
Started: 2006.10.29, Ended: 2006.11.20
Participants: Keith (S), unic (N)
Winner: Keith

1) unic: Homeworld R2 B3 G3

2) Keith: Homeworld B1 Y2 G3
	Keith: Hello Unic.  If you are as tough a Homeworlds player as you are a Cannon player then I am in trouble.

3) unic: Build G1 Unic
	unic: Sadly, I'm not... of the games I've tried so far here on the server, Homeworlds is the one I have the worst record in.  Cannon uses much more familiar thought patterns from other abstracts... much easier to draw on experience from them.

4) Keith: Build G1 Keith

5) unic: Trade G1 Y1 Unic

6) Keith: Discover G1 Keith Y3 Hydra

7) unic: Build Y1 Unic

8) Keith: Build G1 Keith

9) unic: Discover Y1 Unic G1 Zebra

10) Keith: Build G2 Hydra

11) unic: Build G2 Unic

12) Keith: Sacrifice G3 Keith
Build G2 Hydra
Build G3 Keith
Build G3 Keith

13) unic: Sacrifice G3 Unic
Build G3 Unic
Build Y1 Zebra
Build Y2 Zebra

14) Keith: Trade G1 R1 Keith

15) unic: Discover Y1 Zebra R3 Lion

16) Keith: Move G2 Hydra Zebra

17) unic: Move Y2 Zebra Lion

18) Keith: Trade G3 Y3 Keith

19) unic: Sacrifice G2 Unic
Build Y2 Zebra
Build Y3 Unic

20) Keith: Sacrifice R1 Keith
Attack Y2 Zebra
	Keith: You certainly seem like a tough Homeworlds to me.
	Keith: Opponent.  Tough opponent.
	unic: My rating (16th percentile... so near the bottom) and record so far (1 win, 6 losses) tell a different story.

Though I do hope I'm learning from all those losses :)

21) unic: Sacrifice Y3 Unic
Move Y1 Zebra Lion
Move Y1 Lion Keith
Move Y1 Lion Keith
Catastrophe Keith Yellow
	Keith: 16th percentile huh?  Oh well in that case I feel much better about this being such a close match.  ;)

FWIW I beat Zoltar in our last matchup.  So you must be learning something.

22) Keith: Build G1 Keith
	unic: I got into a reasonable position in my very first game against Zoltar... but lost it in the end.  The times I've played him since then, he's beaten me soundly!
	Keith: I missed that completley.  Was focused on sacrificing my Y3 to catastrophe you.

I had Zoltar down one system and I had more and better ships... and lost.

23) unic: Build Y1 Unic

24) Keith: Sacrifice Y2 Zebra
Move G1 Keith Unic
Move G2 Zebra Unic
	Keith: Maybe I can deliver a setback to you too.  If I am reading this wrong I may be shooting myself in the foot.

25) unic: Trade G3 R3 Unic

26) Keith: Trade G2 R2 Unic

27) unic: Attack G1 Unic

28) Keith: Sacrifice G1 Hydra
Build R1 Unic
Catastrophe Unic Red

29) unic: Move Y2 Lion Keith

30) Keith: Trade G3 R3 Keith

31) unic: Move Y2 Keith Unic

32) Keith: Move G2 Hydra Keith

33) unic: Trade Y1 B1 Unic

34) Keith: Build R1 Keith

35) unic: Build B1 Unic

36) Keith: Trade G2 Y2 Keith

37) unic: Discover B1 Unic Y2 Centaur

38) Keith: Move R3 Keith Unic

39) unic: Move B1 Unic Keith

40) Keith: Attack B1 Keith

41) unic: Sacrifice G1 Unic
Build B2 Centaur

42) Keith: Trade B1 G1 Keith



4669)
Started: 2006.10.30, Ended: 2006.10.30
Participants: zoltar (S), b00jum (N)
Winner: zoltar



4873)
Started: 2006.11.6, Ended: 2006.11.8
Participants: antihero (S), method7 (N)
Winner: antihero

1) method7: Homeworld G3 B2 Y3

2) antihero: Homeworld B1 G2 Y3

3) method7: Build Y1 Method7


4) antihero: Build Y1 Antihero

5) method7: Trade Y1 B1 Method7

6) antihero: Trade Y1 G1 Antihero

7) method7: Build Y1 Method7

8) antihero: Discover G1 Antihero Y3 Sun

9) method7: Trade Y1 G1 Method7

10) antihero: Build Y1 Antihero

11) method7: Build Y1 Method7

12) antihero: Discover Y1 Antihero G3 Green

13) method7: Discover G1 Method7 R1 Mars

14) antihero: Build Y1 Green

15) method7: Build Y2 Method7

16) antihero: Build Y2 Antihero

17) method7: Move Y2 Method7 Mars

18) antihero: Trade Y2 R2 Antihero

19) method7: Move B1 Method7 Mars

20) antihero: Build Y2 Antihero

21) method7: Trade Y2 R2 Mars

22) antihero: Discover Y1 Green G1 Little

23) method7: Build G2 Mars

24) antihero: Sacrifice Y3 Antihero
Move Y1 Green Little
Move Y1 Little Method7
Move Y1 Little Method7
Catastrophe Method7 Y



4893)
Started: 2006.11.8, Ended: 2006.11.12
Participants: antihero (S), method7 (N)
Winner: antihero

1) method7: Homeworld G2 B3 Y3

2) antihero: Homeworld G1 B2 Y3

3) method7: Build Y1 Method7

4) antihero: Build Y1 Antihero

5) method7: Trade Y1 G1 Method7

6) antihero: Discover Y1 Antihero G3 Green

7) method7: Build Y1 Method7

8) antihero: Discover Y1 Green B1 Method6

9) method7: Trade Y1 B1 Method7

10) antihero: Build Y1 Antihero

11) method7: Build Y1 Method7

12) antihero: Trade Y1 G1 Antihero

13) method7: Build G2 Method7

14) antihero: Build Y1 Antihero

15) method7: Trade G2 R2 Method7

16) antihero: Trade Y1 R1 Antihero

17) method7: Build R1 Method7

18) antihero: Build Y1 Antihero

19) method7: Move R2 Method7 Method6

20) antihero: Discover Y1 Antihero G3 Green

21) method7: Attack Y1 Method6

22) antihero: Build Y2 Green

23) method7: Build G2 Method7

24) antihero: Discover G1 Antihero Y3 Yellow

25) method7: Sacrifice G2 Method7
Build R1 Method6
Build R2 Method7

26) antihero: Build G2 Yellow

27) method7: Sacrifice G1 Method7
Build Y2 Method6

28) antihero: Build Y2 Antihero

29) method7: Move Y1 Method6 Yellow

30) antihero: Discover Y2 Antihero G3 Another

31) method7: Sacrifice R1 Method7
Attack G1 Yellow

32) antihero: Discover Y1 Green R1 Closer
	method7: that was a much better move

33) method7: Trade R2 B2 Method7

34) antihero: Build R2 Antihero

35) method7: Move G1 Yellow Method6

36) antihero: Move Y1 Closer Method7

37) method7: Move Y1 Method7 Method6

38) antihero: Trade Y1 B1 Method7
Catastrophe Method7 B

	method7: Fuck!  why do I continue to make moves over the weekend!
Am I an idiot??
	antihero: woah, you didn't need to resign, dude! But your call, I guess. Good game.
	method7: The game was over.  You could have moved in your two y2s and built the last y1 before I could do anything else.  Without blue I had no way to defend against such an attck.  GG.
	antihero: alright, true. I guess I didn't even notice. But I would have if you had given me the chance. :)


4949)
Started: 2006.11.13, Ended: 2006.11.16
Participants: antihero (S), method7 (N)
Winner: antihero

1) method7: Homeworld Y1 B2 G3

2) antihero: Homeworld B1 G3 Y3
	method7: Let's mix up my starting set here and see what happens.

3) method7: Build G1 Method7

4) antihero: Build Y1 Antihero

5) method7: Build G1 Method7

6) antihero: Build Y1 Antihero

7) method7: Trade G1 B1 Method7

8) antihero: Discover Y1 Antihero G2 Greenbelt

9) method7: Build G1 Method7

10) antihero: Build Y2 Antihero

11) method7: Trade G3 Y3 Method7

12) antihero: Build Y2 Greenbelt

13) method7: Discover G1 Method7 Y3 Blonde

14) antihero: Trade Y2 B2 Antihero

15) method7: Build B1 Method7
	antihero: punk.

16) antihero: Build Y2 Antihero

17) method7: Move B1 Method7 Blonde

18) antihero: Move B2 Antihero Greenbelt

19) method7: Discover B1 Blonde Y2 Sun

20) antihero: Trade Y1 R1 Antihero

21) method7: Trade B1 R1 Method7

22) antihero: Trade Y2 R2 Antihero

23) method7: Build G1 Blonde

24) antihero: Move R1 Antihero Sun

25) method7: Sacrifice R1 Method7
Attack R1 Sun

26) antihero: Discover Y1 Greenbelt G3 Big

27) method7: Build G2 Method7

28) antihero: Move Y1 Big Method7

29) method7: Sacrifice R1 Sun
Attack Y1 Method7

30) antihero: Build Y1 Greenbelt

31) method7: Move Y1 Method7 Blonde

32) antihero: Build B1 Greenbelt

33) method7: Build G2 Blonde

34) antihero: Move B2 Greenbelt Blonde

35) method7: Move G2 Blonde Sun

36) antihero: Build B2 Greenbelt

37) method7: Build G3 Sun

38) antihero: Build B3 Greenbelt

39) method7: Sacrifice Y3 Method7
Move B1 Sun Blonde
Move B1 Blonde Greenbelt
Move Y1 Blonde Method7
Catastrophe Greenbelt Blue

40) antihero: Sacrifice Y2 Greenbelt
Discover Y1 Greenbelt G3 Wormhole
Move Y1 Wormhole Method7

41) method7: Trade G1 B1 Method7

42) antihero: Move B2 Blonde Method7

43) method7: Sacrifice G3 Sun
Build G1 Sun
Build G2 Method7
Build G3 Method7

44) antihero: Trade Y3 G3 Antihero

45) method7: Move G1 Sun Antihero

46) antihero: Sacrifice G3 Antihero
Build Y2 Method7
Build B1 Method7
Pass
Catastrophe Method7 B
Catastrophe Method7 Y

	antihero: good game, method7.


4955)
Started: 2006.11.14, Ended: 2006.11.27
Participants: Dangrodzi (S), method7 (N)
Winner: method7

1) method7: Homeworld B1 G2 Y3



4998)
Started: 2006.11.16, Ended: 2006.11.24
Participants: antihero (S), Manny (N)
Winner: antihero

1) Manny: Homeworld Y1 B3 G3

2) antihero: Homeworld Y1 B2 G3

3) Manny: Build G1 Manny

4) antihero: Build G1 Antihero

5) Manny: Discover G1 Manny B2 Flux
	antihero: hello, good luck to you!
	Manny: Thanks, same to you.

6) antihero: Discover G1 Antihero Y3 Sun

7) Manny: Build G1 Manny

8) antihero: Build G2 Antihero

9) Manny: Trade G1 R1 Manny

10) antihero: Trade G2 R2 Antihero

11) Manny: Build R1 Manny

12) antihero: Build R1 Antihero

13) Manny: Trade R1 Y1 Manny

14) antihero: Trade R2 Y2 Antihero

15) Manny: Move Y1 Manny Flux

16) antihero: Build Y2 Antihero

17) Manny: Build Y2 Flux

18) antihero: Discover Y2 Antihero G3 Ice

19) Manny: Discover Y2 Flux B3 Whirlpool

20) antihero: Build Y3 Ice

21) Manny: Build Y3 Flux

22) antihero: Discover Y2 Ice G2 Forest

23) Manny: Move G1 Flux Whirlpool
	antihero: sorry.

24) antihero: Build G1 Antihero

25) Manny: Build G2 Whirlpool
	Manny: No problem

26) antihero: Trade G1 B1 Antihero

27) Manny: Trade G1 R1 Whirlpool
	Manny: Sorry. My PC broke Sunday.
	antihero: ah, that sucks man. I'm sorry.

28) antihero: Sacrifice G1 Sun
Build Y3 Forest

29) Manny: Build R2 Whirlpool

30) antihero: Move Y3 Forest Whirlpool



5083)
Started: 2006.11.19, Ended: 2006.12.3
Participants: Lexicon (S), Personman (N)
Winner: Personman

1) Personman: Homeworld B2 Y3 G3

2) Lexicon: Homeworld G1 B3 Y3

3) Personman: Build G1 Personman

4) Lexicon: Build Y1 Lexicon

5) Personman: Build G1 Personman

6) Lexicon: Build Y1 Lexicon
	Lexicon: I see I rapidly put myself at a disadvantage.  Oh well. :)

7) Personman: Discover G1 Personman Y1 Y1a

8) Lexicon: Discover Y1 Lexicon G2 Madcow

9) Personman: Sacrifice G3 Personman
Build G2 Y1a
Build G2 Y1a
Build G3 Personman

10) Lexicon: Trade Y3 G3 Lexicon

11) Personman: Build G3 Personman

12) Lexicon: Build Y2 Madcow

13) Personman: Discover G2 Y1a Y2 Y2a

14) Lexicon: Build Y2 Madcow

15) Personman: Move G2 Y2a Lexicon

16) Lexicon: Trade G3 R3 Lexicon

17) Personman: Build G3 Lexicon

18) Lexicon: Build Y2 Lexicon

19) Personman: Trade G3 R3 Personman

20) Lexicon: Attack G3 Lexicon

21) Personman: Build G3 Lexicon
Catastrophe Lexicon G

22) Lexicon: Discover Y2 Madcow G1 Birdflu

23) Personman: Sacrifice G3 Personman
Build G2 Personman
Build G3 Personman
Build R1 Personman

24) Lexicon: Build Y3 Birdflu

25) Personman: Move G3 Personman Birdflu

26) Lexicon: Sacrifice Y2 Lexicon
Move Y3 Birdflu Personman
Move Y2 Birdflu Personman

27) Personman: Attack Y3 Personman

28) Lexicon: Sacrifice Y2 Madcow
Move Y1 Madcow Birdflu
Move Y1 Birdflu Personman
Catastrophe Personman Y

29) Personman: Trade G2 Y2 Personman

	Lexicon: a less than stellar performance on my part. :)


5098)
Started: 2006.11.20, Ended: 2006.11.22
Participants: unic (S), antihero (N)
Winner: antihero

1) antihero: Homeworld B1 Y2 G3

2) unic: Homeworld G3 Y3 R3 *

3) antihero: Build G1 Antihero
	antihero: woah, interesting opening!

4) unic: Build R1 Unic

5) antihero: Trade G1 R1 Antihero

6) unic: Discover R1 Unic B2 Babylon

7) antihero: Build R1 Antihero

8) unic: Build R2 Unic

9) antihero: Move R1 Antihero Unic

10) unic: Discover R2 Unic Y2 Alexandria

11) antihero: Sacrifice G3 Antihero
Build R2 Unic
Build R2 Unic
Build R3 Unic
Catastrophe Unic R
	antihero: Good game. I think your opening almost decided the game, though.



4763)
Variants: "Sinister"
Started: 2006.11.23, Ended: 2007.1.9
Participants: Lexicon (S), Uglyfoot (W), Kenchi (N), Keith (E)
Winner: Uglyfoot

1) Kenchi: Homeworld G1 B3 Y3

2) Keith: Homeworld Y2 B1 G3

3) Lexicon: Homeworld G2 B3 Y3
	Keith: Hello all.  This is my first Sinister game.
	Kenchi: This is my first game on this site, actually. Hope you don't beat me too soon!
	Keith: Don't worry about me.  In the Sinister version the goal is to take out the person on your left.  You are not on my left, I am on yours.

4) Uglyfoot: Homeworld B2 Y1 G3

5) Kenchi: Build Y1 Kenchi

6) Keith: Build G1 Keith

7) Lexicon: Build Y1 Lexicon

8) Uglyfoot: Build G1 Uglyfoot

9) Kenchi: Trade Y1 G1 Kenchi

10) Keith: Trade G1 Y1 Keith

11) Lexicon: Trade Y1 G1 Lexicon

12) Uglyfoot: Trade G1 R1 Uglyfoot

13) Kenchi: Build Y1 Kenchi

14) Keith: Build G1 Keith

15) Lexicon: Build Y1 Lexicon

16) Uglyfoot: Build G1 Uglyfoot

17) Kenchi: Build G2 Kenchi

18) Keith: Discover G1 Keith Y3 Daikiro

19) Lexicon: Build G2 Lexicon

20) Uglyfoot: Discover G1 Uglyfoot Y3 Nexus

21) Kenchi: Trade G2 R2 Kenchi

22) Keith: Discover G1 Daikiro Y1 Chisaikiro

23) Lexicon: Trade G1 R1 Lexicon

24) Uglyfoot: Build G1 Uglyfoot

25) Kenchi: Trade Y1 B1 Kenchi

26) Keith: Build G2 Keith

27) Lexicon: Move R1 Lexicon Chisaikiro

28) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Nexus
Build G2 Nexus
Build G3 Uglyfoot

29) Kenchi: Build G3 Kenchi

30) Keith: Build G3 Chisaikiro
	Keith: Kenchi?  Still there?  You are past time to move almost double the turn limit.

31) Lexicon: Attack G1E Chisaikiro

32) Uglyfoot: Discover G2 Nexus Y2 Onward

33) Kenchi: Trade G1 Y1 Kenchi

34) Keith: Trade G2 R2 Keith

35) Lexicon: Build Y2 Lexicon

36) Uglyfoot: Discover G2 Nexus B2 Themall
	Kenchi: Yeah, I was really busy last week forgot all about it. :p

37) Keith: Sacrifice R2 Keith
Attack G1S Chisaikiro
Attack R1S Chisaikiro

38) Lexicon: Discover Y2 Lexicon G1 Liveoak

39) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Themall
Build G3 Uglyfoot
Build G3 Nexus
	Keith: Kenchi, this time your 11 days over.  If you are going to be unavailable, for the holidays or whatever, let us know so we wait with a purpose.  I will wait till January 2nd my time.
	Keith: 18 days over in two turns.  That is too much for me even accounting for the holiday season.  I will be the heavy and pull the plug on Kenchi.

40) Keith: Sacrifice G3 Chisaikiro
Build G3 Chisaikiro
Build R1 Chisaikiro
Build R1 Chisaikiro

41) Lexicon: Trade Y1 R1 Lexicon

42) Uglyfoot: Trade G2 Y2 Themall

43) Keith: Move G3 Chisaikiro Themall

44) Lexicon: Build R2 Lexicon
	Lexicon: I am so dead.  D-E-D.

45) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Themall
Build G3 Uglyfoot
Build R2 Uglyfoot

46) Keith: Sacrifice R1 Chisaikiro
Attack Y2W Themall
	Keith: Because there are two factories out there?  Heck, I have no room to crank mine.  Uglyfoot on the other hand...   
	Kenchi: I apologize. I've been very swamped and haven't been able to give this the proper attention. I commend Keith for taking me out when he did.

47) Lexicon: Move R2 Lexicon Chisaikiro

48) Uglyfoot: Move R2 Uglyfoot Nexus

49) Keith: Sacrifice Y2 Themall
Move G3 Themall Kenchi
Discover R1 Chisaikiro B3 Temp

50) Lexicon: Build Y1 Liveoak

51) Uglyfoot: Move G2 Onward Kenchi
Catastrophe Kenchi G

52) Keith: Build G1 Keith

53) Lexicon: Attack G1E Chisaikiro

54) Uglyfoot: Trade G2 Y2 Themall

55) Keith: Trade G3 R3 Keith

56) Lexicon: Attack R1E Chisaikiro
	Lexicon: Ha!  I forgot I had an R2 in chisaikiro.  Doh.

57) Uglyfoot: Build Y2 Themall

58) Keith: Move Y1 Keith Temp

59) Lexicon: Build G2 Chisaikiro

60) Uglyfoot: Move G3 Nexus Liveoak

61) Keith: Trade R3 G3 Keith

62) Lexicon: Sacrifice Y2 Liveoak
Discover G2 Chisaikiro Y3 Mesquite
Move R2 Chisaikiro Mesquite

63) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Liveoak
Build G3 Themall
Build G3 Uglyfoot

64) Keith: Sacrifice G3 Keith
Build G3 Keith
Build Y2 Temp
Build R1 Temp

65) Lexicon: Build G3 Mesquite

66) Uglyfoot: Move G3 Themall Temp

67) Keith: Move Y1 Temp Themall

68) Lexicon: Move G2 Mesquite Liveoak
Catastrophe Liveoak G

69) Uglyfoot: Sacrifice Y2 Themall
Move G3 Temp Keith
Move G1 Nexus Keith
Catastrophe Keith G

	Lexicon: Phew.  Glad that's not hanging over me anymore.  
	Lexicon: I'm frankly surprised you didn't nuke me already.
	Keith: I am so out of it in this game I am not sure what you are talking about Lexicon.  
	Keith: Congratulations Uglyfoot.  Sorry Lexicon.  I gave the game away.

I have definately decided that 4 player Homeworlds does not work for me.  80% of the time one of the four players is a no show or bails within a few turns.  I have never had a clear sense of how to proceed in the remaining multiplayer game and as such go nowhere.
	Lexicon: Aha!  This game went on pause for so long I forgot it was sinister.  Another reason 4 person games are bad. :(
	Uglyfoot: Thanks.  I can see where having one person either slow things down or skew it is bad.  For some reason I win a multiplayer (even when it is not delayed) but lose at two player.  Time to study this one more.


5164)
Variants: "Unrated"
Started: 2006.11.23, Ended: 2007.1.2
Participants: Kenchi (S), Keith (N)
Winner: Keith

1) Keith: Homeworld Y1 B2 G3

2) Kenchi: Homeworld G3 Y1 B3

3) Keith: Build G1 Keith
	Keith: Hello Kenchi.  Thank you for taking me up on unrated game
	Keith: That should read "on my unrated game offer."

4) Kenchi: Build B1 Kenchi
	Kenchi: Thank you for the offer, I need the practice.

5) Keith: Trade G1 Y1 Keith
	Keith: Here is a good initial thing to watch out for, at least in a two player game.  I deliberately chose a y1 as part of my home system in the hopes that you would too.  What happens to your ability to develop yellow when I grab the last y1?  How would it differ if your home system was y2 g1?

6) Kenchi: Discover B1 Kenchi G2 Aldune

7) Keith: Build G1 Keith

8) Kenchi: Build B1 Kenchi

9) Keith: Build Y2 Keith
	Kenchi: I build y2s? I have no idea how having a y2 star would change anything.
	Kenchi: Oh, great, I can't build y.

10) Kenchi: Trade B1 R1 Kenchi
	Keith: Right.  You can't build Y without having a Y ship.  You can convert your b3 to a y3 but then you have lost a turn.  If you had a y2 star at the start there would have been 2 y1s in the pool and when I grabbed one then you would grab the other.

I am not going to strangle your game by hoarding the y's.  After I build a y2 I will put my y1 back in the pool for you to use.

11) Keith: Trade Y1 R1 Keith

12) Kenchi: Build B1 Kenchi
	Keith: One of the rules of thumb is that if your opponent pulls a gun (builds a red) you had better have one too.  I will throw that y1 back in the pool for now and pick up a r1.

13) Keith: Discover Y2 Keith G3 Behemoth
	Kenchi: *Groan*

14) Kenchi: Trade B1 Y1 Kenchi
	Keith: Groan?
	Kenchi: Now we have guns out and I'm still not sure what I'm doing.
	Keith: Well how focusing on getting into yellow?  Build a b1 or r1 in Aldune or a b1 in Kenchi and the turn after that convert it to a y1.  To get the y1 one turn faster undo you move and build a r1 or b1 in Kenchi this turn and convert it next turn.
	Kenchi: Ok, I'll try that.

15) Keith: Trade G1 B1 Keith

16) Kenchi: Build Y2 Kenchi

17) Keith: Build G1 Keith
	Keith: There you go.  You have access to all the colors.  I see in the 4 player game you have already applied what you have learned here and grabbed a green ship.

18) Kenchi: Move Y1 Kenchi Aldune
	Kenchi: Yes, right. Guess I am learning after all.

19) Keith: Move Y2 Behemoth Aldune
	Keith: Be careful about putting three items of the same color in a system.  If I put a fourth I can trigger a catastrophe.  You are safe for the moment.  The Y2 at Behemoth is two moves away from you homeworld.

20) Kenchi: Sacrifice Y1 Aldune
Move B1 Aldune Kenchi

21) Keith: Build R1 Keith
	Kenchi: Thanks, I'll watch out for that.
And thanks for the other game's advice.

22) Kenchi: Build R2 Kenchi
	Kenchi: Hmmm....

23) Keith: Discover R1 Keith Y3 Okikiro
	Keith: You should probably undo that move.  If I move my y2 from Aldune to Kenchi I can create a yellow catastrophe in Kenchi and you will lose all of your yellow pieces there.

One threat you are facing is that if I sacrifice my r1 in Keith then I can attack and take one of your ships in Aldune.  You can move the y1 or b1 out of Aldune or even sacrifice the y1 in Aldune and more out the b1 so I can't sacrifice my r1 and take your ship.  Of course sacrificing my ship to get a ship means I don't gain a ship but you would lose one.
	Kenchi: I forgot about sacrificing...

24) Kenchi: Move R2 Kenchi Aldune
	Keith: Sacrificing and gaining extra moves and flexibility is the key to strong play.

25) Keith: Sacrifice Y2 Aldune
Move G1 Keith Okikiro
Move B1 Keith Okikiro

26) Kenchi: Build Y1 Kenchi

27) Keith: Build R2 Okikiro

28) Kenchi: Build R2 Kenchi
	Keith: Here is where the advantage of sacrificing comes in.  If I sacrifice my r1 I can attack anywhere on the board as long as I have a ship as big or larger than an enemy ship in a sector.  I can take your r2 in Aldune.
	Keith: For example:

29) Keith: Build G1 Keith
	Keith: However, I will do something else instead.

30) Kenchi: Build R3 Kenchi

31) Keith: Trade R2 Y2 Okikiro

	Keith: No moves, no polite message to wait.  No more game.


4800)
Started: 2006.11.24, Ended: 2006.12.2
Participants: zoltar (S), tcerier (N)
Winner: zoltar

	zoltar: Greetingz Earthling!


5174)
Started: 2006.11.25, Ended: 2006.12.8
Participants: Aunguna (S), unic (N)
Winner: unic

1) unic: Homeworld B3 Y2 G3



5177)
Started: 2006.11.25, Ended: 2007.3.6
Participants: Jesse (S), Cerulean (N)
Winner: Jesse

1) Cerulean: Homeworld B1 Y3 G3
	_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

P.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.

2) Jesse: Homeworld Y3 B2 G3

3) Cerulean: Build G1 Cerulean

4) Jesse: Build G1 Jesse

5) Cerulean: Trade G1 Y1 Cerulean

6) Jesse: Trade G1 B1 Jesse

7) Cerulean: Build G1 Cerulean

8) Jesse: Build B1 Jesse

9) Cerulean: Discover G1 Cerulean Y2 Wytou

10) Jesse: Discover B1 Jesse G1 Gumby

11) Cerulean: Build Y1 Cerulean

12) Jesse: Build B2 Gumby

13) Cerulean: Trade Y1 R1 Cerulean

14) Jesse: Trade B2 R2 Gumby

15) Cerulean: Build R1 Cerulean

16) Jesse: Build B2 Jesse

17) Cerulean: Build Y1 Cerulean

18) Jesse: Build B2 Gumby

19) Cerulean: Move Y1 Cerulean Wytou

20) Jesse: Trade B2 Y2 Gumby

21) Cerulean: Move R1 Cerulean Wytou

22) Jesse: Trade B2 Y2 Jesse

23) Cerulean: Build R1 Cerulean

24) Jesse: Build B2 Gumby

25) Cerulean: Build R2 Wytou

26) Jesse: Build Y1 Gumby

27) Cerulean: Trade R1 G1 Cerulean

28) Jesse: Build G2 Jesse

29) Cerulean: Build G2 Wytou

30) Jesse: Sacrifice Y2 Jesse
Move Y1 Gumby Wytou
Move Y2 Gumby Wytou
Catastrophe Wytou Y

31) Cerulean: Build R1 Cerulean

32) Jesse: Build B2 Gumby

33) Cerulean: Build Y1 Cerulean

34) Jesse: Build B3 Jesse

35) Cerulean: Discover Y1 Cerulean G2 Jetou

36) Jesse: Trade B3 Y3 Jesse

37) Cerulean: Move R1 Cerulean Jetou

38) Jesse: Trade B2 Y2 Gumby

39) Cerulean: Pass

40) Jesse: Discover B2 Gumby G3 Gojira
	Jesse: Sure about that?
	Cerulean: I'd rather not, but my novice eye sees few options that won't end up hosing me.
	Jesse: Yes, naturally I'm trying to make things difficult for you.  Still, it is almost never better to pass than do some little thing that could benefit your position.  Maybe moving out your home y1, for instance.

41) Cerulean: Discover R1 Jetou Y1 Wywun
	Jesse: It doesn't seem right for me to help you too much, it being a tounrament game, but I'll also point out that while things look bad for you, one place where you do have a slight advantage is distribution of reds.  Better distribution usually means a production advantage, as well.

42) Jesse: Build G1 Jesse

43) Cerulean: Build Y2 Jetou

44) Jesse: Move G2 Jesse Wywun

45) Cerulean: Move R1 Wywun Jesse

46) Jesse: Sacrifice G3 Jesse
Build G2 Wywun
Build G3 Jesse
Build Y2 Gumby

47) Cerulean: Attack B1S Jesse

48) Jesse: Sacrifice R2 Gumby
Attack R1 Jesse
Attack B1 Jesse

49) Cerulean: Build R1 Cerulean

50) Jesse: Sacrifice G3 Jesse
Build B2 Gumby
Build B3 Jesse
Build G3 Jesse

51) Cerulean: Move R1 Cerulean Jetou

52) Jesse: Trade B2 R2 Gumby

53) Cerulean: Build R2 Cerulean

54) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build B2 Gumby
Build B3 Gojira

55) Cerulean: Move R1 Cerulean Jetou

56) Jesse: Trade B3 R3 Gojira

57) Cerulean: Sacrifice G3 Cerulean
Build G3 Cerulean
Build R2 Jetou
Build R3 Cerulean

58) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R3 Jesse
Build B3 Gumby

59) Cerulean: Discover R1 Jetou B3 Bethrii

60) Jesse: Move B3 Jesse Wywun

61) Cerulean: Move Y2 Jetou Bethrii

62) Jesse: Move Y2 Gumby Gojira

63) Cerulean: Move G1 Cerulean Jetou

64) Jesse: Move G2 Wywun Jetou

65) Cerulean: Sacrifice R1 Jetou
Attack G2S Jetou

66) Jesse: Move G2 Wywun Jetou
Catastrophe Jetou G

67) Cerulean: Build G1 Cerulean

68) Jesse: Build Y1 Gumby

69) Cerulean: Discover G1 Cerulean R2 Artou

70) Jesse: Move B3 Wywun Artou

71) Cerulean: Sacrifice G1 Artou
Build Y1 Bethrii

72) Jesse: Build R1 Gojira

73) Cerulean: Discover Y1 Bethrii G1 Jiwun

74) Jesse: Move Y3 Jesse Jiwun

75) Cerulean: Move Y1 Jiwun Bethrii

76) Jesse: Move Y2 Gumby Artou

77) Cerulean: Build G2 Cerulean

78) Jesse: Move B1 Gumby Artou

79) Cerulean: Discover R3 Cerulean G2 Jetou

80) Jesse: Discover B3 Gumby G2 Sputum

81) Cerulean: Move Y1 Bethrii Jetou

82) Jesse: Move Y2 Gojira Sputum

83) Cerulean: Move Y1 Cerulean Jetou

84) Jesse: Move B3 Sputum Cerulean

85) Cerulean: Attack B3S Cerulean

86) Jesse: Move B3 Artou Cerulean

87) Cerulean: Attack B3S Cerulean

88) Jesse: Move B1 Artou Cerulean
Catastrophe Cerulean B

89) Cerulean: Move R3 Jetou Gumby

90) Jesse: Sacrifice Y3 Jiwun
Move Y2 Artou Cerulean
Move Y1 Gumby Cerulean
Move Y2 Sputum Cerulean
Catastrophe Cerulean Y



5178)
Started: 2006.11.25, Ended: 2006.12.16
Participants: jeep (S), Hedge_o_Matic (N)
Winner: jeep

1) Hedge_o_Matic: Homeworld G3 Y1 B3
	_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

P.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.

2) jeep: Homeworld B2 G1 Y3

3) Hedge_o_Matic: Build B1 Hedge_o_matic

4) jeep: Build Y1 Jeep
	Hedge_o_Matic: Darn!  I started with the wrong color ship!  Grr...

5) Hedge_o_Matic: Trade B3 Y3 Hedge_o_matic

6) jeep: Trade Y1 R1 Jeep

7) Hedge_o_Matic: Build Y1 Hedge_o_matic

8) jeep: Build Y1 Jeep

9) Hedge_o_Matic: Build Y2 Hedge_o_matic

10) jeep: Build R1 Jeep
Catastrophe Hedge_o_matic Yellow

	Hedge_o_Matic: Geh!  Peak Oil did me in.  I really suck at this game, online, it seems.  Without physical pyramids, I'm totally lost.  I'd say "good game", but this can't have been a very satisfying victory for you.
I'll do better next time!
	jeep: :(  I was actually hoping that there was some sneak attack in there someplace that I didn't see.  Thanks for the game.
	Hedge_o_Matic: I'll play a few more online games, and challenge you when I think I can actually offer a challenge...
	jeep: I'm not very good at the game, so it shouldn't take long.  ;)


5179)
Started: 2006.11.25, Ended: 2006.12.16
Participants: Aaron (S), Lexicon (N)
Winner: Lexicon

1) Lexicon: Homeworld B3 G2 Y3
	_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

P.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.

2) Aaron: Homeworld Y1 B2 G3
	Lexicon: Good luck!
	Aaron: And to you!

3) Lexicon: Build Y1 Lexicon

4) Aaron: Build G1 Aaron

5) Lexicon: Trade Y1 G1 Lexicon

6) Aaron: Trade G1 R1 Aaron

7) Lexicon: Build G1 Lexicon

8) Aaron: Build R1 Aaron

9) Lexicon: Discover G1 Lexicon Y1 Gopher

10) Aaron: Discover R1 Aaron Y3 Bananas

11) Lexicon: Build Y1 Lexicon

12) Aaron: Move R1 Bananas Gopher

13) Lexicon: Discover G1 Gopher B3 Ftp
	Aaron: uhm, how on earth did I miss that shutout?

14) Aaron: Move R1 Gopher Ftp

15) Lexicon: Build G1 Ftp
	Lexicon: Sneakiness. :)

16) Aaron: Attack G1 Ftp

17) Lexicon: Build G2 Ftp

18) Aaron: Build G2 Ftp
Catastrophe Ftp Green

19) Lexicon: Build Y1 Lexicon

20) Aaron: Build G1 Aaron
	Lexicon: OK, we'll try that again...

21) Lexicon: Discover Y1 Lexicon G1 Gopher

22) Aaron: Trade G3 Y3 Aaron

23) Lexicon: Build G2 Lexicon

24) Aaron: Build Y2 Aaron

25) Lexicon: Build Y2 Gopher

26) Aaron: Move Y2 Aaron Ftp

27) Lexicon: Move G2 Lexicon Gopher

28) Aaron: Sacrifice Y2 Ftp
Move R1 Ftp Gopher
Move R1 Gopher Lexicon

29) Lexicon: Trade Y3 R3 Lexicon

30) Aaron: Attack G1 Lexicon
	Aaron: Not many people remember what Gopher was =)
	Lexicon: It was just dying when I first got on the internet in 1994.  It worked, but kinda barely.  But kinda like a treasure chest. :)
	Lexicon: I just don't know what to make of that move.
	Aaron: gotta keep you on your toes!  I never said I was any *good* at this game =D

31) Lexicon: Attack G1 Lexicon

32) Aaron: Attack G1 Lexicon

33) Lexicon: Sacrifice Y2 Gopher
Discover G2 Gopher B3 Http
Move Y1 Gopher Http
	Lexicon: Uh oh.  This may prove difficult. 

34) Aaron: Build G1 Lexicon

35) Lexicon: Build Y2 Lexicon

36) Aaron: Build G2 Lexicon
Catastrophe Lexicon G

37) Lexicon: Sacrifice Y2 Lexicon
Move Y1 Lexicon Aaron
Move Y1 Http Aaron
Catastrophe Aaron Y

38) Aaron: Build G1 Aaron
	Aaron: oh what the heck...I'm in a destructive mood.

39) Lexicon: Attack R1 Lexicon
	Lexicon: You just have too many game commitments and want to be risky. :)

40) Aaron: Trade G1 Y1 Aaron
	Lexicon: BOOM
	Aaron: all too true
	Aaron: I neglected to see how I would be the one with no 3's.  That pretty much ends the game for me.  I'll slog through a little bit.

41) Lexicon: Trade R1 Y1 Lexicon

42) Aaron: Build G1 Aaron
	Lexicon: I made the same trade once thinking I could pull it off, but it didn't work out so well for me.

43) Lexicon: Build G1 Http

44) Aaron: Discover G1 Aaron Y3 Archie

45) Lexicon: Sacrifice G1 Http
Build R1 Lexicon

46) Aaron: Pass

47) Lexicon: Sacrifice Y1 Lexicon
Move G2 Http Aaron

	Aaron: All over.  Thanks for the game Lexicon!  Sorry I sucked =D
	Lexicon: Thanks for the game. :)


5180)
Started: 2006.11.25, Ended: 2007.2.8
Participants: ldd23 (S), bigby (N)
Winner: bigby

1) bigby: Homeworld G1 B2 Y3
	_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

P.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.

2) ldd23: Homeworld B3 Y2 G3

3) bigby: Build Y1 Bigby

4) ldd23: Build G1 Ldd23

5) bigby: Trade Y1 G1 Bigby

6) ldd23: Discover G1 Ldd23 B1 Balas

7) bigby: Build G2 Bigby

8) ldd23: Build G2 Ldd23

9) bigby: Discover G2 Bigby Y3 Webster

10) ldd23: Trade G2 R2 Ldd23

11) bigby: Build G2 Webster

12) ldd23: Build G2 Balas

13) bigby: Build G3 Bigby

14) ldd23: Build G3 Ldd23

15) bigby: Trade G1 B1 Bigby
	ldd23: Sorry I'm going so slow.  Trying to deal with the end of the semester and the game keeps slipping my mind.

16) ldd23: Trade G3 R3 Ldd23

17) bigby: Move B1 Bigby Webster
	ldd23: Woah, sorry about that.  I've been without internet access for the past several days.  I should be able to be more prompt now.
	bigby: No problem.  End of the year is always busy.

18) ldd23: Trade G1 Y1 Balas

19) bigby: Trade G2 R2 Webster

20) ldd23: Move R3 Ldd23 Balas

21) bigby: Build G1 Webster

22) ldd23: Build R1 Balas

23) bigby: Discover G2 Webster Y1 Roget

24) ldd23: Move R3 Balas Webster

25) bigby: Sacrifice G2 Roget
Build R1 Webster
Build R1 Webster
Catastrophe Webster Red

26) ldd23: Build Y1 Balas
	bigby: Wasn't expecting you to attack so soon.
	ldd23: I figured hey, why not?  Nice response

27) bigby: Build B1 Webster
	bigby: build r1 webster
	bigby: haha
	bigby: Doesn't work anyway.  Hmmm...

28) ldd23: Build R1 Ldd23

29) bigby: Trade B1 R1 Webster

30) ldd23: Trade R2 B2 Ldd23

31) bigby: Build B1 Webster

32) ldd23: Move B2 Ldd23 Balas

33) bigby: Sacrifice Y3 Bigby
Move B1 Webster Balas
Move B1 Webster Balas
Pass
Catastrophe Balas Blue

34) ldd23: Trade R1 B1 Ldd23
	ldd23: Oops

35) bigby: Build G1 Bigby

36) ldd23: Build G2 Ldd23

37) bigby: Trade G3 Y3 Bigby



5181)
Started: 2006.11.25, Ended: 2007.1.6
Participants: Uglyfoot (S), Personman (N)
Winner: Personman

1) Personman: Homeworld B2 Y1 G3
	_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

P.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.

2) Uglyfoot: Homeworld Y3 B2 G3
	Uglyfoot: greetings and good luck!


3) Personman: Build G1 Personman
	Personman: To you as well!

4) Uglyfoot: Build G1 Uglyfoot

5) Personman: Trade G1 Y1 Personman

6) Uglyfoot: Discover G1 Uglyfoot R1 Battlestar

7) Personman: Build G1 Personman

8) Uglyfoot: Build G1 Uglyfoot

9) Personman: Build G2 Personman

10) Uglyfoot: Build G2 Battlestar

11) Personman: Discover G2 Personman Y3 Y3a

12) Uglyfoot: Trade G1 R1 Uglyfoot

13) Personman: Build Y1 Personman

14) Uglyfoot: Build G1 Uglyfoot

15) Personman: Sacrifice G3 Personman
Build G2 Y3a
Build G3 Y3a
Build G3 Personman

16) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build R1 Uglyfoot
Build R2 Uglyfoot

17) Personman: Discover Y1 Personman B3 B3a

18) Uglyfoot: Trade R2 Y2 Uglyfoot

19) Personman: Sacrifice G3 Personman
Build Y2 Personman
Build Y2 B3a
Build G3 Personman

20) Uglyfoot: Sacrifice Y2 Uglyfoot
Move G1 Battlestar Y3a
Move G2 Battlestar B3a
Catastrophe Y3a G

21) Personman: Trade Y2 R2 B3a

22) Uglyfoot: Sacrifice R1 Uglyfoot
Attack R2 B3a

23) Personman: Discover Y1 B3a B1 B1a

24) Uglyfoot: Trade R2 Y2 B3a

25) Personman: Trade Y1 R1 Personman

26) Uglyfoot: Discover G1 Uglyfoot B1 Welcomemat

27) Personman: Build R1 Personman

28) Uglyfoot: Build G1 Uglyfoot

29) Personman: Sacrifice G1 Personman
Build R2 Personman

30) Uglyfoot: Build G1 Welcomemat

31) Personman: Build G2 Personman

32) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 B3a

33) Personman: Discover G2 Personman Y3 Y3a

34) Uglyfoot: Trade G2 Y2 Uglyfoot

35) Personman: Move G2 Y3a B1a

36) Uglyfoot: Trade G2 R2 B3a

37) Personman: Trade R1 B1 Personman

38) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 B3a
Build G2 Welcomemat
Build G3 Uglyfoot

39) Personman: Build B2 Personman

40) Uglyfoot: Trade G3 B3 B3a

41) Personman: Sacrifice Y2 Personman
Move B1 Personman B3a
Move B2 Personman B3a
Catastrophe B3a B

42) Uglyfoot: Trade G1 Y1 Welcomemat

43) Personman: Build G1 Personman
	Uglyfoot: Wow.  That sure cleaned up the board...

44) Uglyfoot: Discover G1 Welcomemat Y3 Forward

45) Personman: Sacrifice G3 Personman
Build G2 B1a
Build G3 Personman
Build Y2 B1a

46) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Forward
Build Y2 Welcomemat

47) Personman: Move G2 B1a Uglyfoot

48) Uglyfoot: Attack G2 Uglyfoot

49) Personman: Move G2 B1a Uglyfoot
Catastrophe Uglyfoot G

50) Uglyfoot: Sacrifice Y2 Welcomemat
Move G1 Forward Personman
Move G3 Forward Personman
Catastrophe Personman G

51) Personman: Move Y2 B1a Uglyfoot

52) Uglyfoot: Attack Y2 Uglyfoot
	Uglyfoot: one good turn deserves another...

53) Personman: Move Y1 B1a Uglyfoot
Catastrophe Uglyfoot Y

54) Uglyfoot: Build G1 Welcomemat

55) Personman: Trade R1 G1 Personman

56) Uglyfoot: Discover G1 Welcomemat Y3 Nexus

57) Personman: Build R1 Personman

58) Uglyfoot: Move G2 Welcomemat Uglyfoot

59) Personman: Trade R1 B1 Personman

60) Uglyfoot: Build G1 Nexus

61) Personman: Build R1 Personman

62) Uglyfoot: Build G2 Uglyfoot

63) Personman: Move R2 Personman Nexus

64) Uglyfoot: Build G2 Nexus

65) Personman: Attack G2 Nexus

66) Uglyfoot: Build G3 Nexus

67) Personman: Build G3 Personman
Catastrophe Nexus G

68) Uglyfoot: Trade G2 Y2 Uglyfoot

69) Personman: Move G3 Personman Nexus

70) Uglyfoot: Build G1 Uglyfoot

71) Personman: Build G1 Nexus

72) Uglyfoot: Discover G1 Uglyfoot Y3 Breakout

73) Personman: Move G3 Nexus Uglyfoot

74) Uglyfoot: Build G2 Uglyfoot

75) Personman: Sacrifice R1 Personman
Attack R1 Uglyfoot

76) Uglyfoot: Build G2 Uglyfoot
Catastrophe Uglyfoot G

77) Personman: Move R2 Nexus Uglyfoot



5182)
Started: 2006.11.25, Ended: 2007.1.6
Participants: Subhan64 (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld Y2 B1 G3
	_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

P.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.
	Laurie_Menke: Good luck, Subhan!  :o)

2) Subhan64: Homeworld B2 Y1 G3

3) Laurie_Menke: Build G1 Laurie_menke

4) Subhan64: Build G1 Subhan64

5) Laurie_Menke: Discover G1 Laurie_menke Y3 Luella

6) Subhan64: Trade G1 R1 Subhan64

7) Laurie_Menke: Build G1 Luella

8) Subhan64: Build R1 Subhan64

9) Laurie_Menke: Move G1 Luella Laurie_menke

10) Subhan64: Move R1 Subhan64 Luella

11) Laurie_Menke: Discover G1 Luella Y2 Sharon

12) Subhan64: Move R1 Luella Sharon

13) Laurie_Menke: Discover G1 Sharon R3 Mars

14) Subhan64: Build G1 Subhan64

15) Laurie_Menke: Trade G1 B1 Laurie_menke

16) Subhan64: Discover G1 Subhan64 Y3 Omicronpersei8

17) Laurie_Menke: Build G1 Mars

18) Subhan64: Build G2 Subhan64

19) Laurie_Menke: Build G2 Laurie_menke

20) Subhan64: Sacrifice G3 Subhan64
Build G2 Subhan64
Build R1 Subhan64
Build R2 Subhan64

21) Laurie_Menke: Trade G2 Y2 Laurie_menke

22) Subhan64: Move G2 Subhan64 Omicronpersei8

23) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move G3 Laurie_menke Mars
Move G3 Mars Subhan64

24) Subhan64: Trade G2 Y2 Subhan64

25) Laurie_Menke: Build G2 Subhan64

26) Subhan64: Sacrifice Y2 Subhan64
Move G2 Omicronpersei8 Subhan64
Move G1 Omicronpersei8 Subhan64
Catastrophe Subhan64 Green

27) Laurie_Menke: Trade B1 G1 Laurie_menke

28) Subhan64: Move R2 Subhan64 Mars
	Subhan64: I think that will be the game for me
	Subhan64: or maybe not, I'm not actually sure on second thought

29) Laurie_Menke: Build G2 Laurie_menke
	Laurie_Menke: I can't remember what the playing field looked like before, but I do remember that I expected you to do what you did the first time, and wasn't worried.  So I think you were right to change your move.
	Laurie_Menke: I'm now officially worried.  ;o)

30) Subhan64: Attack G1 Mars

31) Laurie_Menke: Trade G2 R2 Laurie_menke
	Laurie_Menke: OK, you've got me now.  Would you rather play it out or accept my resignation?

32) Subhan64: Trade R1 Y1 Subhan64
	Laurie_Menke: Well, actually...I may have a trick or two left up my sleeve.  Do you mind if we play a little longer?
	Subhan64: no, certainly let's play it out!  I'm not convinced it's a lost cause for you either!
	Subhan64: move r2 mars laurie_menke

33) Laurie_Menke: Attack G1 Mars

34) Subhan64: Attack G1 Mars

35) Laurie_Menke: Build G2 Laurie_menke

36) Subhan64: Attack G1 Mars
	Laurie_Menke: Just curious...do you know why the timer is frozen?
	Subhan64: not a clue

	Laurie_Menke: Oh...I just visited the Forums...Aaron froze all the tournament clocks for the holidays.
	Subhan64: Oh, OK

37) Laurie_Menke: Discover G1 Laurie_menke Y3 Luella

38) Subhan64: Move Y1 Subhan64 Mars

39) Laurie_Menke: Sacrifice G2 Laurie_menke
Build G2 Luella
Build G2 Luella

40) Subhan64: Move R2 Mars Sharon
	Subhan64: move y1 subhan64 mars

41) Laurie_Menke: Move G2 Luella Laurie_menke

42) Subhan64: Move R2 Sharon Luella

43) Laurie_Menke: Sacrifice G2 Luella
Build R1 Laurie_menke
Build G2 Laurie_menke

44) Subhan64: Attack G1 Luella

45) Laurie_Menke: Trade G2 Y2 Laurie_menke

46) Subhan64: Sacrifice G1 Mars
Build R2 Subhan64

47) Laurie_Menke: Discover R1 Laurie_menke Y3 Old

48) Subhan64: Move R2 Subhan64 Mars
	Subhan64: D'oh!  That looks like it for me now

49) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move R2 Laurie_menke Old
Move R2 Old Subhan64
	Subhan64: OK, maybe I should stop saying that! ;-)
	Laurie_Menke: Darn!  I thought I had you, too.  :o/

50) Subhan64: Sacrifice G1 Mars
Build R3 Subhan64

51) Laurie_Menke: Move R1 Old Subhan64
Catastrophe Subhan64 Red

	Laurie_Menke: Wow, that one was a nailbiter!  Thanks for the fun, Subhan!  :o)
	Subhan64: D'oh!  Thought that move was going to save me, forgot about a couple of details though!
Good game!



5284)
Started: 2006.12.1, Ended: 2007.1.23
Participants: antihero (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B1 G3

2) antihero: Homeworld B2 G1 Y3

3) zoltar: Build G1 Zoltar

4) antihero: Build Y1 Antihero

5) zoltar: Trade G1 Y1 Zoltar

6) antihero: Trade Y1 G1 Antihero

7) zoltar: Build Y1 Zoltar

8) antihero: Discover G1 Antihero Y3 Bigyella

9) zoltar: Discover Y1 Zoltar G2 Banana

10) antihero: Build Y1 Antihero

11) zoltar: Build Y2 Zoltar

12) antihero: Trade Y1 R1 Antihero

13) zoltar: Trade Y1 R1 Zoltar

14) antihero: Build Y1 Antihero

15) zoltar: Move R1 Zoltar Banana

16) antihero: Discover Y1 Antihero G3 Biggreen

17) zoltar: Build G1 Zoltar

18) antihero: Build G2 Bigyella

19) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build Y1 Zoltar

20) antihero: Build Y2 Antihero

21) zoltar: Discover G1 Zoltar B2 Blueberry

22) antihero: Move G2 Bigyella Blueberry

23) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Blueberry
Build Y2 Banana

24) antihero: Move G1 Bigyella Blueberry
Catastrophe Blueberry Green

25) zoltar: Sacrifice G2 Zoltar
Build Y3 Zoltar
Build Y3 Banana

26) antihero: Move Y1 Biggreen Banana
Catastrophe Banana Yellow

27) zoltar: Move Y3 Zoltar Banana
	zoltar: Hey, you keep blowin' up my stuff! :)

28) antihero: Trade Y2 G2 Antihero
	antihero: well, you're coming out of it all alright. :)

29) zoltar: Build G1 Zoltar

30) antihero: Build Y1 Antihero

31) zoltar: Build G1 Zoltar
	zoltar: Yes, I ended up with an advanced outpost for free!

32) antihero: Discover G2 Antihero Y3 Oldyeller

33) zoltar: Discover G1 Zoltar Y2 New_caprica

34) antihero: Build R1 Antihero

35) zoltar: Sacrifice G3 Zoltar
Build G2 New_caprica
Build G3 Zoltar
Build G3 Zoltar

36) antihero: Build G3 Oldyeller

37) zoltar: Sacrifice Y2 Zoltar
Move G2 New_caprica Oldyeller
Move G1 New_caprica Oldyeller
Catastrophe Oldyeller G

38) antihero: Trade Y1 G1 Antihero
	antihero: I am in sooo much trouble.

39) zoltar: Discover G3 Zoltar B2 Blueberry
	zoltar: Yes, I think so, as you force me to sacrifice, leaving me with a distinct edge in firepower.

40) antihero: Build G2 Antihero

41) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build G3 Blueberry

	antihero: gah this is silly. Good game, sir. You outplayed me from the very beginning.


5300)
Started: 2006.12.2, Ended: 2006.12.3
Participants: Keith (S), DavidF (N)
Winner: Keith

	Keith: Hello DavidF.  Have you played Homeworlds before?


4726)
Started: 2006.12.7, Ended: 2007.1.11
Participants: Lexicon (S), DavidF (W), tcerier (N), Uglyfoot (E)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B3 Y1 G3
	DavidF: Hello All - I've played Homeworlds a number of times in the materail world, but never in Cyberspace before, so please be frogiving in my awkwardness with some of the movement of pieces. Also, in the material game a key element to the fun is the desgination of players being either "good" or "evil". I'm not seeing anything like that here. Am I missing something?


	Lexicon: Wow, I didn't even notice this game had started.  Wonder where tcerier is.  Anyway, DavidF, this variant is Last Man Standing, so you have to kill everyone else.  There is also the sinister variant, where you have to kill the player to your left.
	Lexicon: Anyway, tcerier isn't around anymore, so I'm just going to resign him.

2) Lexicon: Homeworld B2 Y3 G3

3) DavidF: Homeworld G3 B1 Y3

4) Uglyfoot: Build G1 Uglyfoot
	DavidF: Can someone give me lesson on how to submit orders? I can't seem to find any better reference than what's on this page. I've tried a number of variations but keep getting "nothing left in stash" messages. Here's what i most recently typed: Homeworld (G3, B1, Y3)
	Lexicon: no parentheses or commas.  every command on a separate line.  so your first command would be
homeworld g3 b1 y3
	Lexicon: And actually, you just have to type the first letter of each command, so "h g3 b1 y3" would work.  A lot of stuff about homeworlds here is discussed in its wiki, which is linked at the top of the page.  

5) Lexicon: Build G1 Lexicon
	DavidF: Thanx

6) DavidF: Build Y1 Davidf

7) Uglyfoot: Discover G1 Uglyfoot B2 Welcomemat

8) Lexicon: Trade G1 R1 Lexicon

9) DavidF: Discover Y1 Davidf G2 Yorn

10) Uglyfoot: Build G1 Uglyfoot
	DavidF: So how do i create a new systme called Yorn? I've tried different perambulations of  "discover y1 DavidF g1 yorn" and i keep being refused? Help?
	Lexicon: You can't move to a size 1 system, only a size 2.  So try "d y1 DavidF g1 yorn"
	Lexicon: ack.  I mean, 'd y1 DavidF g2 yorn"
	DavidF: I tried that. I geta "these systmes aren't connected message." I'm confused; I'm trying to create a new system.
	Lexicon: Hm.  if "discover y1 DavidF g2 yorn" doesn't work, I don't know what to tell you.  Your system is definitely connected to a g2, but not a g1.

11) Lexicon: Build G1 Lexicon
	DavidF: thanx again, Lexicon. i think i'm beginning to understand, although i've never played this way. i've always played with the direct capacity to send a ship and create whatever size system, without taking into consideration the size i'm sending from. an interesting difference in rules. 
	Lexicon: If the last time you played was with the older version rules, then you have a lot to learn.  I did the same thing; it was quite confusing for a while.

12) DavidF: Build Y1 Davidf

13) Uglyfoot: Trade G1 R1 Uglyfoot

14) Lexicon: Discover G1 Lexicon Y1 Hydrogen
	DavidF: UglyFoot and Lexicon - i'll be out of town 5-6 days and at house with no computer. There's a chance i can get to mysister's computer but not definite. Might be a slow go as well until i'm back.
	Uglyfoot: no problem.  I'm on vacation but with ready access to computers.  I'm a member of a really geeky family...   :>

15) DavidF: Trade Y3 R3 Davidf
	Lexicon: My family's geekiness did not extend all the way to grandma's house. Sorry to be late myself. :)

16) Uglyfoot: Build G1 Uglyfoot

17) Lexicon: Build G1 Lexicon

18) DavidF: Build Y1 Davidf

19) Uglyfoot: Trade G3 Y3 Uglyfoot

20) Lexicon: Trade G1 B1 Lexicon

21) DavidF: Trade Y1 R1 Davidf

22) Uglyfoot: Build Y1 Uglyfoot

23) Lexicon: Move B1 Lexicon Hydrogen

24) DavidF: Build Y2 Davidf

25) Uglyfoot: Move Y1 Uglyfoot Welcomemat

26) Lexicon: Build B1 Hydrogen

27) DavidF: Move R1 Davidf Welcomemat

28) Uglyfoot: Build Y2 Welcomemat
	Lexicon: DavidF: Unless I'm mistaken, you could have nuked Uglyfoot last round by putting a yellow in his system.  Very sporting of you not to. :)

29) Lexicon: Build G1 Hydrogen

30) DavidF: Move R3 Davidf Welcomemat

31) Uglyfoot: Sacrifice Y2 Welcomemat
Move G1 Welcomemat Davidf
Move Y1 Welcomemat Davidf

32) Lexicon: Discover G1 Hydrogen Y2 Helium
	DavidF: Lexicon, oh yes, i see what you mean. Can't quite take credit for being sporting. Now i'm a bit overextended but it promises to be fun anyway.

33) DavidF: Sacrifice Y2 Davidf
Move R1 Welcomemat Davidf
Move R3 Welcomemat Uglyfoot
	Uglyfoot: ok.  we'll commence with the invasion!

34) Uglyfoot: Attack R3W Uglyfoot

35) Lexicon: Move B1 Hydrogen Helium

36) DavidF: Attack Y1E Davidf
	DavidF: Lexicon, I probably should have asked for a rules clarification before my last move, but i was needing to get some stuff done around here, work, etc. So, does a little red ship in Uglyfoot's system enable Uglyfoot to attack my R3 with his Y3? If so, that would be a good move on his/her part and not good news for you either. If so, sorry and good luck
	Lexicon: That is correct.  He will own your R3.  Feel free to undo your move and try something else, as far as I'm concerned.
	Uglyfoot: DavidF, Please go ahead and undo that.  We can continue from there...
	DavidF: UglyFoot, that's very generous of you. It would make the game more interesting, particularly for me, but it's a moot point now, it seems. I have lost the 'undo' move function. I tried to call an administrator, to have it reinstated but the operator has timed out. Uglyfoot and lexicon, i suggest we go ahead, and i'll chalk this up as an aflo (another frigging learning opportunity).  
	DavidF: Okay, I clearly don't know what I'm doing.An administrator e-mailed back, and so I'll send this out, with another Administrator call. 
	DavidF: Administrator - we are all agreed, Lexicon, Uglyfoot and myself, for me, DavidF, to undo my last move. Could you reinstate my "Undo Last Move" button?
	DavidF: Thanks for the offer, Uglyfoot. I cannot connect with the administator. If someone else is willing and wanting me to undo my last move, please feel free to contact the Adminsitrator. I'm okay with proceeding. 

37) Uglyfoot: Sacrifice R3 Uglyfoot
Attack R1W Davidf
Attack Y1W Davidf
Attack Y1W Davidf

38) Lexicon: Build G1 Hydrogen
	DavidF: Do either of you know a better command for attacking the y1 ship in my system. a y1 DavidF doesn't work and i suspect the presence of two y1 ships in the sytem is complicating things.
	Lexicon: read the little text below the command list.  a y1e davidf

39) Uglyfoot: Build G2 Uglyfoot
	DavidF: thanx

40) Lexicon: Build G2 Helium

41) Uglyfoot: Move G1 Davidf Helium

42) Lexicon: Move G1 Helium Uglyfoot

43) Uglyfoot: Trade G2 R2 Uglyfoot

44) Lexicon: Build G2 Uglyfoot

45) Uglyfoot: Build G2 Helium

46) Lexicon: Trade G1 B1 Uglyfoot

47) Uglyfoot: Sacrifice R2 Uglyfoot
Attack G2S Uglyfoot
Attack G2S Helium

48) Lexicon: Sacrifice G1 Hydrogen
Build B1 Uglyfoot

49) Uglyfoot: Move G2 Helium Hydrogen

50) Lexicon: Sacrifice G1 Hydrogen
Build B2 Uglyfoot

51) Uglyfoot: Build Y2 Davidf

52) Lexicon: Trade B1 G1 Uglyfoot

53) Uglyfoot: Attack G1S Uglyfoot

54) Lexicon: Build G1 Lexicon

55) Uglyfoot: Move G1 Helium Hydrogen

56) Lexicon: Sacrifice R1 Lexicon
Attack R1E Uglyfoot

57) Uglyfoot: Sacrifice R1 Davidf
Attack R1S Uglyfoot

58) Lexicon: Trade G3 R3 Lexicon

59) Uglyfoot: Trade Y2 R2 Davidf

60) Lexicon: Move B1 Hydrogen Helium

61) Uglyfoot: Sacrifice R2 Davidf
Attack B1S Helium
Attack B1S Helium

62) Lexicon: Sacrifice R3 Lexicon
Attack R1E Uglyfoot
Attack G2E Uglyfoot
Attack G1E Uglyfoot

63) Uglyfoot: Move G2 Hydrogen Lexicon

64) Lexicon: Trade B2 Y2 Uglyfoot

65) Uglyfoot: Trade Y3 R3 Uglyfoot

66) Lexicon: Attack G1E Uglyfoot

67) Uglyfoot: Attack R1S Uglyfoot

68) Lexicon: Build G1 Uglyfoot
Catastrophe Uglyfoot G

69) Uglyfoot: Sacrifice R1 Uglyfoot
Attack G1S Lexicon

	Lexicon: OK this has gone on too long. :)
	Uglyfoot: Let me solve that.  Good game.


5422)
Started: 2006.12.10, Ended: 2007.5.19
Participants: apollotiger (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G2 Y1 B3

2) apollotiger: Homeworld G1 B2 Y3

3) MatrixFrog: Build B1 Matrixfrog

4) apollotiger: Build Y1 Apollotiger

5) MatrixFrog: Build B1 Matrixfrog

6) apollotiger: Discover Y3 Apollotiger G3 Quercorium
	MatrixFrog: The conventional wisdom is that you don't want your homeworld to be size-identical to your opponent's, because it effectively puts you closer together. But the disadvantage is symmetrical, so it works out.

7) MatrixFrog: Trade B1 G1 Matrixfrog

8) apollotiger: Build Y1 Apollotiger

9) MatrixFrog: Build B1 Matrixfrog
	MatrixFrog: it's generally considered a bad idea to leave your homeworld without a large ship, especially if you can't build a new large ship in the near future

10) apollotiger: Trade Y1 R1 Apollotiger

11) MatrixFrog: Build G1 Matrixfrog
	MatrixFrog: Already? Are you expecting to be invaded?

12) apollotiger: Trade R1 B1 Apollotiger
	apollotiger: I could. I want to have ships of different types.

13) MatrixFrog: Trade B1 Y1 Matrixfrog

14) apollotiger: Build Y2 Apollotiger

15) MatrixFrog: Discover B1 Matrixfrog Y3 Alpha

16) apollotiger: Trade Y2 G2 Apollotiger
	MatrixFrog: you just traded y1->r1->b1...

17) MatrixFrog: Trade G1 R1 Matrixfrog

18) apollotiger: Move B1 Apollotiger Alpha

19) MatrixFrog: Move B1 Alpha Apollotiger

20) apollotiger: Move B1 Alpha Matrixfrog

21) MatrixFrog: Attack B1 Matrixfrog

22) apollotiger: Move G2 Apollotiger Quercorium

23) MatrixFrog: Build B1 Apollotiger
	MatrixFrog: What's the problem?

24) apollotiger: Trade Y1 R1 Apollotiger

25) MatrixFrog: Build B2 Apollotiger

26) apollotiger: Attack B1 Apollotiger

27) MatrixFrog: Sacrifice R1 Matrixfrog
Attack R1 Apollotiger

28) apollotiger: Move Y3 Quercorium Apollotiger

29) MatrixFrog: Build B2 Apollotiger

30) apollotiger: Move B1 Apollotiger Quercorium

31) MatrixFrog: Build B3 Apollotiger

	MatrixFrog: I think you have a really interesting choice to make here.


5390)
Started: 2006.12.15, Ended: 2007.1.2
Participants: Keith (S), papa_bear (N)
Winner: Keith

1) papa_bear: Homeworld G2 B1 Y3
	papa_bear: Hi.

2) Keith: Homeworld B1 Y3 G3
	Keith: Hello papa_bear.

3) papa_bear: Build Y1 Papa_bear
	papa_bear: Have you played this before? I know I could check your profile, but it would take so long to load :)

4) Keith: Build G1 Keith
	Keith: The page load times can be a bear.  This is my 23rd game.  My track record is 15-7.

5) papa_bear: Trade Y1 G1 Papa_bear
	papa_bear: Intimidating. I'm watching and learning...

6) Keith: Trade G1 B1 Keith
	Keith: Have you played before?  We can make it an unrated game if you want.

7) papa_bear: Build Y1 Papa_bear
	papa_bear: build y1 papa_bear
	papa_bear: Boy that was stupid.

8) Keith: Build G1 Keith
	papa_bear: It is my first time, but I am happy to leave it rated. I came to SDG to play Castle Danger. That's the only game in which my rating matters much to me. I will try my best in other games, though, for the sport of it if not for the rating. I think I figured out why your first ship was a g3. Are you going to sacrifice it relatively early to get ahead on production?
	Keith: I will leave the game a rated one then.  I came to SDG to play Cannon and discovered Homeworlds which has become my strong second interest.  Matt is currently schooling me in the ways of Castle Danger.

You are sort of on the right track with the g3.  I will eventually sacrifice it for growth but not now for two reasons.  1) it would leave me without a 3-pointer to defend my homeworld and 2) If I did it now it is a one shot deal.  I want to be able to recruit a g3 when I sacrifice it so I can repeat the process.

I started off this game playing hardball.  For example I just made it more difficult for you to develop blue.


9) papa_bear: Build Y1 Papa_bear
	papa_bear: I think I can just begin to see the kind of complexities involved in playing this game well. I have not been thinking seriously about the limitations on the global reserve stash. I have little notion what to do next, but I will think of something...

10) Keith: Trade G1 Y1 Keith
	Keith: Resource management (both acquisition and distribution) is a substantial part of the game.  The resource management aspect is part of why I tried Castle Danger.  

What to do in Homeworlds after you get started comes up often enough that there is an entry on it in the wiki.

11) papa_bear: Build G1 Papa_bear
	papa_bear: build g1 papa_bear
	papa_bear: Oops. Second time for that idiocy. By the way, did you enjoy Castle Danger?

12) Keith: Build G1 Keith
	Keith: I am enjoying Castle Danger.  I like the piece entry decision each turn and the space management.

13) papa_bear: Trade Y1 R1 Papa_bear

14) Keith: Build B2 Keith
	papa_bear: I am very happy if you like Castle Danger. I hope it will catch on. Personally, I think it's a great game.

15) papa_bear: Build R1 Papa_bear
	papa_bear: Oh... I thought all the 1-point pieces had to go before we could build 2-point ships.

16) Keith: Trade B2 R2 Keith
	Keith: All the 1-point pieces of that color.  To put it another way you build the smallest available piece of the color being built.
	Keith: A green 2-pointer is available to you but your green piece density in your homeworld does not allow you to safely build one there.

17) papa_bear: Build R1 Papa_bear

18) Keith: Discover G1 Keith R2 Mustafar

19) papa_bear: Discover R1 Papa_bear B3 Mahalalel

20) Keith: Build G2 Keith
	Keith: Mahalalel =  Genesis 5:12-17

21) papa_bear: Move G1 Papa_bear Mahalalel
	papa_bear: Do you celebrate Christmas because you celebrate Christ?

22) Keith: Sacrifice G3 Keith
Build G2 Mustafar
Build G3 Keith
Build B2 Keith
	Keith: Yes.  Though I am no longer the Bible thumping no smoking, no drinking, no dancing, sin and damnation hard core Southern Baptist I was raised to be.

23) papa_bear: Build G3 Mahalalel
	Keith: I am now operating what is known as "the factory."
	papa_bear: Now, if I were a hardcore Southern Baptist I might feel insulted. I'm not, though. But to compare to your checklist: I'm cool with moderate drinking. I can't justify even moderate smoking, as hard as I've tried. I used to be a smoker, and even after I came to the conclusion that there was no justification for it, it took me a long time to quit. I don't dance, but that's not an ethical thing. Well, maybe it is: it would be wrong to subject people to seeing me try to dance :). I take sin and damnation very seriously, but I think that doing nothing but yelling at people about their sins is itself a sinful thing to do, as well as counterproductive and unbiblical. I'm not positive what Bible-thumping is, but I'm probably guilty of that one. I derive all my doctrine, as much as possible, from the Bible rather than from other sources. That might make me a thumper.
By naming that new system "Mahalalel" I was putting up a flag. I'm glad to know that we celebrate Christmas for the same reason.
Will you be sacrificing those g2's soon? I need to think a bit before I proceed with my next turn.
	Keith: Moderate drinking is okay.  I never get around to it much because I don't like beer.

Smoking is flat out.  I have seen what it does to lung tissue, the amount of money people spend in a year on smoking instead of their families and what it does to work productivity (smoke breaks, working one handed).  

Dancing.  I have tried it.  Never liked it.  Even with more than moderate drink in me.

I grew up with hell fire and damnation sermons.  One example of my Bible thumping was going out to Mardi Gras parades and trying to convert parade goers.


	Keith: I am not likely to sacrifice a g2 soon.  I need to  keep a second green with the g3 so I can sacrifice and re-build the g3.
	papa_bear: Wow. That is hardcore. If Bible-thumping involves thumping others with the Bible, then I'm not in that camp. I am a hundred percent with you on smoking. I hate to think how much money I wasted on cigarrettes. Every dollar could have gone to my kids instead, or to any of the millions of people around the world with insufficient food, medical care, and other necessities. I have a confession: I like whiskey. I drink only rarely and never much, but I feel I have to be very careful with a strong drink. It would be easy to consume more than I intend.
About the sacrificing ships, I see now. I had forgotten that new g3 was destined for sacrifice.

24) Keith: Move B2 Keith Mustafar
	Keith: We are on the same page when it comes to whiskey.  I do drink sake.  I usually get a bottle on my birthday and for Christmas.
	Keith: I have worked myself into a bit of a corner.  If I build the g3 in Keith then you can sacrifice your y3, move a g1 into Keith and cause a catastrophe destroying all my green in Keith.  More importantly it would leave me without a 3-pointer.  If I don't grab the g3 you will and you will have three 3-pointers to my one.  If I build the g3 in Mustafar you can sacrifice a y1 and cause a green catastrophe.

25) papa_bear: Sacrifice G3 Mahalalel
Build G3 Mahalalel
Build Y1 Papa_bear
Build R2 Papa_bear
	papa_bear: Well, giving your opponent advice may not be part of a healthy strategy ;)

26) Keith: Sacrifice G3 Keith
Build G3 Keith
Build R3 Keith
Build Y2 Keith
	Keith: True.  Can't really describe it as wise.  I am more interested in your learning curve than my rating points.

27) papa_bear: Move Y1 Papa_bear Mahalalel
	papa_bear: That's very much appreciated, Keith. However, in the unlikely event that this game terminates in my favor, I would insist it do so unrated. As when Solomon received both wisdom and riches, so you would enjoy both the opportunity to help me and also that for which you had not asked: a safe rating :)
	Keith: My concern is that this game is has run on the dull side for you.  There is a certain common experience of "Okay I am building a bunch of ships now what" though it is usually punctuated by more threats and less buildup than the present case.
	Keith: Your offer if the game goes in your favor is appreciated.  I will endeavor to not have the issue come up.

28) Keith: Move Y1 Keith Mustafar
	papa_bear: I expect nothing less from you :)
I hope this turn was safe enough. Sacrificing either my g3 or my y3 was tempting, but in either case I think I would have been falling into a trap. Let me know if I'm thinking along the right lines. If I sacrifice y3 and move a y1 into Keith and trigger the catastrophe, your r3 can then, thanks to the collapse of your y3 star, enter Mahalalel and reorient my g3. If I sacrifice my g3, any combination of 3 ships I might build would necessarily leave one or the other of my systems vulnerable to catastrophe.
There's no danger of boredom here. I can feel the tension in the game. Non-chessplayers sometimes think it involves tremendous patience to play chess, but when you're really playing it no patience is required. I think it's the same here. I'm new to the game, but -- thanks in large part to a kind and instructive opponent -- I am gaining some sense of the thrusts and parries which can occur under the surface of a "buildup" game of Homeworlds.
	Keith: It is best you did not make either sacrifice.  You are right about the g3 sacrifice.  I am going to go ahead and go into a lengthy explanation, even thought this is a rated game since the move is past.  I will leave the explanation up until I make my move tomorrow to make it easier to track with the current board position.

The y3 is more complicated.  It is good that your are keeping in mind that distances between systems would change.  However, if I followed a yellow homeworld catastrophe by moving my r3 into Mahalalel you would be able to reorient my r3.  Your r1 in Mahalalel gives any of your ships in that system the power to attack just as a yellow ship gives any friendly local ship the power to move, in this case your g3.  

The y3 sacrifice would be expensive for you.  You would lose a y3 and y1, I would lose a y2, y1, and a system.  I follow up by trading for a y2 in Mustafar.  If you retreat your g3 I sacrifice my y2, move a g1 into your homeworld and green catastrophe.  You have are down one system, your remaining system is blue and I have a head start on blue ships and you have no 3-pointers while I have two.  The end is near.  If you don't move your g3 back then I sacrifice my y2 and move in one of my 3-pointers in.  If I move in the g3 you have to destroy it or I will sacrifice my r2 next attack your r2 and g1 and the end is near.  Your only defense would be to build a green and blow up your own ships and system along with my g3.  Alternatively I move the r3 in and trigger a red catastrophe and your home system is down to only a g1 ship.  Your in a lot more trouble than your original yellow catastrophe put me in.

	papa_bear: Immediately after I made the move and sent the message, I realized that you couldn't move the r3 and attack the g3 on the same turn. But I wasn't sure whether that meant the y3 sacrifice was a good idea. I was pretty sure you wouldn't have allowed it if it was. Thanks for your explanation.

29) papa_bear: Trade R2 B2 Papa_bear

30) Keith: Move G2 Mustafar Mahalalel

31) papa_bear: Sacrifice Y1 Mahalalel
Move G3 Mahalalel Mustafar
	papa_bear: Am I correct in thinking that I'm in trouble here?
	papa_bear: Don't answer that, actually.

32) Keith: Sacrifice R2 Keith
Attack R1 Mahalalel
Attack G1 Mahalalel
	papa_bear: Most unsatisfactory, but I couldn't see much else.
	Keith: You were going to suffer some loss.  Though I am not sure why you moved the g1 and b2 into Mahalalel.  I can attack them by sacrificing my r3.  Here were a few possibile alternatives.

move g3 mahalalel mustafar - you threaten to attack my ships in mustafar while I attack your ships in Mahalalel. 

Sacrifice your g1 in Mahalalel and pass on the build leaving only two greens in Mahalalel and I can't cause a green catastrophe next turn.

Sacrifice the y1 in Mahalalel and discover a new system with the g3.  The g3 is safe and only two 1-point ships of yours remain for me to attack.

Sacrifice the g3, build two green ships in Mahalalel and either a y2 or r2.  Cause a green catastrophe in Mahalalel.
	Keith: Feel free to undo and give any of these a try if you want.  The g1 sacrifice below also puts the g1 back in the stash and prevents my building a g3 in Mustafar.
	papa_bear: Ah. I forgot that a sacrifice allows you to perform activities in any system you occupy. I also had not considered sacrificing one of my ships and passing on the available activity. I did consider discovering with my g3 or moving it to Mustafar, but I felt uncomfortable having to put it in a 2-pt system where it is closer to your Homeworld than to mine. Would discovering with the g3 require the sacrifice of the y1? Can't it move anyway since I have access to yellow technology in that system? I will undo, but I'm not sure which course I'll choose. Preventing you from building a g3 sounds good, but so does moving g3 to Mustafar and attacking. I'll think about it some more while I await your next message.
	Keith: You don't really need to sacrifice the y1 to move the g3 out.  It is just a way of denying me the y1.  I could catastrophe the g3 if it ends up at Mustafar.  I could not build two more green ships there to cause the catastrophe because there is only one left in the stash.  To do so I would need to sacrfice a y2, a g2, another g2 and lose the g1 already there.  Expensive.  
	papa_bear: Cool. That y1 sacrifice is a nifty finesse. But I'm still not sure which course I want to choose. I'll probably move tomorrow morning (GMT+8).
	Keith: No rush.  I am plenty busy.  You see there is this other finished game where I am consuming lots of time with some very enjoyable analysis...
	papa_bear: Sounds familiar. Odd that a game in progress is sitting, while a finished game is consuming time and energy...

33) papa_bear: Attack B2 Mustafar
	Keith: I just spotted another way to go after your g3 at Mustafar.  Since I did not mention it I before I won't take it.  There is only one green in the stash now but if I sacrifice the g2 at Keith there is now two greens in the stash and I can build them both in Mustafar and create a green catasrophe.

34) Keith: Move Y1 Mustafar Mahalalel

35) papa_bear: Build B2 Mustafar

36) Keith: Sacrifice Y2 Keith
Move Y1 Mahalalel Papa_bear
Move G1 Mahalalel Papa_bear

37) papa_bear: Trade Y3 B3 Papa_bear
	Keith: Looks like I am headed for a blue catastrophe in Keith.  Here is a distraction for you.

38) Keith: Sacrifice G2 Mahalalel
Build G2 Papa_bear
Build Y1 Papa_bear
Catastrophe Papa_bear Green
	papa_bear: That certainly gives me something to think about. However, I wasn't so much planning a blue catastrophe. It seems to me that two 2pt ships would be a heavy cost, and I'm not sure that closing the distance between our homeworlds would be in my favor. Of course, that's all history. Now I need to do something about your invasion before it has catastrophic consequences... 

39) papa_bear: Trade B3 G3 Papa_bear
	Keith: I commend you on keeping the change in distance between homeworlds in mind.  Most players learn that one the hard way.

Another thing to keep in mind in choosing how to deal with my invastion of your homeworld system is that I can use your system piece colors as well as my ship colors without having to resort to sacrifices.

40) Keith: Sacrifice B1 Keith
Trade Y1 B1 Papa_bear
	papa_bear: Oh that's ugly.

41) papa_bear: Attack Y1 Papa_bear
	Keith: It is.  It was tempting last turn to trade the y1 for a blue and blue catastrophe instead.  I see that you have taken the move that directly avoids that.

42) Keith: Sacrifice R3 Keith
Attack R1 Papa_bear
Attack R1 Papa_bear
Attack Y1 Papa_bear

43) papa_bear: Trade B2 G2 Papa_bear

44) Keith: Sacrifice G2 Keith
Build B2 Papa_bear
Build B3 Papa_bear
Catastrophe Papa_bear Blue
	papa_bear: Argh.

	Keith: Once there gets to be a lot of ships the possiblities two or three moves out get pretty wild.
	Keith: Thank you for the game.  You see things better than most first time Homeworlds players.

I hope this game gave you a good glimpse of Homeworlds and you found it worth further play.  I don't want my playing rough the last three turns to be discouraging.
	papa_bear: I keep overlooking that sacrifices give you access to that technology in all occupied systems.
No, your playing rough is not discouraging. If I may quote another of my pearls of wisdom which I so graciously bestow upon my young students: Always play your best moves, even against beginners; it's the best way for them to learn.
So far from being discouraging, your playing hard was encouraging, in the sense that it helped me see the possibilities in this game. My interest is definitely excited.
However, I have not long to go before my next semester of classes starts (I'm a student myself), and I think I'm going to hold off getting into Homeworlds for a while. My time is going to running very short very soon.


5553)
Started: 2006.12.19, Ended: 2007.2.2
Participants: dsheldon (S), gundam_blade (N)
Winner: dsheldon

1) gundam_blade: Homeworld B3 G2 Y3

2) dsheldon: Homeworld B1 Y2 G3

3) gundam_blade: Build Y1 Gundam_blade

4) dsheldon: Build G1 Dsheldon

5) gundam_blade: Trade Y1 R1 Gundam_blade

6) dsheldon: Discover G1 Dsheldon B3 Sirius

7) gundam_blade: Build Y1 Gundam_blade

8) dsheldon: Build G1 Sirius

9) gundam_blade: Trade Y1 B1 Gundam_blade

10) dsheldon: Trade G1 Y1 Sirius

11) gundam_blade: Discover B1 Gundam_blade G1 Boobies

12) dsheldon: Build G1 Dsheldon

13) gundam_blade: Build B1 Boobies

14) dsheldon: Build G2 Sirius

	dsheldon: Are we still playing?  I'll give another week before I force your resignation.


5615)
Started: 2006.12.28, Ended: 2007.1.12
Participants: Keith (S), Preacher (W), GameBrain42 (N), akiva (E)
Winner: Preacher



5649)
Variants: "Unrated"
Started: 2006.12.29, Ended: 2007.1.3
Participants: Keith (S), Preacher (N)
Winner: Keith

1) Preacher: Homeworld B2 Y1 G3

2) Keith: Homeworld B1 Y3 G3
	Keith: Hello Preacher,
Let me know if you have any questions as the game progresses.

3) Preacher: Build G1 Preacher

4) Keith: Build G1 Keith
	Preacher: I will, Keith.  This is my very first go at this one (i am in another game but awaiting my first turn).  I've read the rules - of course :) - multiple times.  Also, I found some strategy articles at the wiki sites last night that i read through.  Additionally, I followed the log of one of your games where you were teaching a fella to play.  All those things have been very helpful ... I think :).
	Keith: You have certainly done a more extensive preparation for your first game than most have.  This game will help clarify what you have read.

5) Preacher: Trade G1 B1 Preacher

6) Keith: Trade G1 Y1 Keith

7) Preacher: Discover B1 Preacher G3 Orion

8) Keith: Build Y1 Keith
	Keith: So what happens if I build and take the last y1?  How do you develop yellow pieces?
	Preacher: Trade in other pieces for yellow, I think.  Aren't you in the same situation re: blue? (??) :)
	Keith: Yes to trading and yes I am in the same situation.

9) Preacher: Build B1 Orion

10) Keith: Discover Y1 Keith G2 Midworld

11) Preacher: Build B2 Orion

12) Keith: Build Y2 Keith

13) Preacher: Trade B2 Y2 Orion

14) Keith: Trade Y2 B2 Keith

15) Preacher: Build Y2 Orion

16) Keith: Trade Y1 R1 Keith

17) Preacher: Trade Y2 R2 Orion

18) Keith: Move B2 Keith Midworld

19) Preacher: Trade B1 Y1 Orion

20) Keith: Build G1 Keith

21) Preacher: Move Y1 Orion Preacher

22) Keith: Build Y2 Midworld

23) Preacher: Build Y2 Orion

24) Keith: Sacrifice Y2 Midworld
Move Y1 Midworld Orion
Move Y1 Orion Preacher
	Keith: You seem to have a better grasp of the game than most first time players.  You avoid dangerous buildups of one color in a system, avoid getting locked out of a color, and manipulate the stash to your advantage.

25) Preacher: Trade Y1 R1 Preacher
	Preacher: Thanks, Keith.  Be prepared for some major rookie blunders, though :).

26) Keith: Sacrifice R1 Keith
Attack R1 Preacher
	Keith: That is okay.  I just made one of my own.  I can't build yellow ships in your homeworld to pressure you into sacrificing your r2.

27) Preacher: Sacrifice R2 Orion
Attack R1 Preacher
Attack Y1 Preacher

28) Keith: Trade G1 R1 Keith

29) Preacher: Trade Y2 R2 Orion

30) Keith: Build G1 Keith

31) Preacher: Build G1 Preacher

32) Keith: Trade G1 Y1 Keith

33) Preacher: Build Y2 Orion

34) Keith: Move Y1 Keith Midworld
	Preacher: Hitting the sack here, Keith.  I'm learning a lot here.  This is great!
	Keith: Okay, tommorrow then.

35) Preacher: Trade Y2 R2 Orion

36) Keith: Build G1 Keith
	Preacher: REALLY the last one tonight this time :).

37) Preacher: Build Y2 Orion

38) Keith: Build Y2 Midworld
	Keith: I will temp you with a quick response so you have time for just one more.
	Keith: That should be tempt not temp.

39) Preacher: Discover Y2 Orion B1 Mars

40) Keith: Trade Y1 R1 Midworld

41) Preacher: Move G1 Preacher Orion

42) Keith: Build R2 Keith

43) Preacher: Build R3 Preacher

44) Keith: Build R3 Midworld
	Preacher: build r3 preacher

45) Preacher: Move G3 Preacher Orion
	Preacher: lol. :)
	Keith: Yeah, that order entry box is so far away it is easy, and fairly common, to chat an order at least once.

46) Keith: Move R1 Midworld Orion

47) Preacher: Move G3 Orion Preacher
	Keith: You might want to rethink that move.  Let me demonstrate.  I will undo in a few minutes.

48) Keith: Sacrifice Y2 Midworld
Move R1 Keith Midworld
Move R1 Midworld Orion
Catastrophe Orion Red

49) Preacher: Move R3 Preacher Orion
	Keith: I was going to undo my move.
	Preacher: can i undo and then you undo?
	Keith: Lets try it.
	Preacher: now you try
	Keith: That worked.  I can make a different move now but we are limited to one undo each so you can't undo the g3 move.

50) Keith: Trade G1 Y1 Keith

51) Preacher: Build Y2 Preacher

52) Keith: Move Y1 Keith Midworld
	Keith: I am attempting to enter the following order:
sacrifice y2 midworld
move r1 keith midworld
move r1 keith orion
catastrophe orion red
I get an error that I do not own an R1 in keith.
	Aaron: once you move the r2 from keith to midworld you no longer have an r1 in keith.  I assume one of those r1's needs to be an r2.
	Aaron: once you move the r1 from keith, that is.
	Keith: Doh!  User error.  Sorry for the interruption Aaron.  Thanks.

53) Preacher: Build Y3 Orion

54) Keith: Build Y3 Midworld

55) Preacher: Discover Y1 Preacher B3 Pluto
	Keith: You are just not going to let me get a 3-pointer safely into Orion are you?

56) Keith: Build G1 Keith

57) Preacher: Build R1 Preacher

58) Keith: Move R3 Midworld Mars

59) Preacher: Move Y2 Mars Midworld

60) Keith: Move Y3 Midworld Mars

61) Preacher: Build B2 Orion

62) Keith: Build B3 Midworld

63) Preacher: Build G1 Preacher

64) Keith: Discover B3 Midworld R3 Miranda

65) Preacher: Trade G3 B3 Preacher

66) Keith: Build R1 Keith

67) Preacher: Build G2 Preacher

68) Keith: Sacrifice R1 Keith
Attack Y2 Midworld

69) Preacher: Discover G1 Preacher G3 Tatooine

70) Keith: Sacrifice Y3 Mars
Move B2 Midworld Miranda
Move B2 Miranda Preacher
Move B3 Miranda Preacher
Catastrophe Preacher Blue

71) Preacher: Move B2 Orion Midworld

72) Keith: Move Y2 Midworld Preacher

	Preacher: I think that probably does it. :).

Thanks for the game Keith!
	Keith: Yes it does.  You have been tough to pin down.  You put your pre-game prep to good use.  Thank you for the good game.
	Preacher: Thanks, Keith.  I look forward to learning more from you if you're interested...


5639)
Started: 2007.1.1, Ended: 2007.3.14
Participants: jeep (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B1 Y2 G3
	Keith: Hello Jeep.  Did you have a good holiday?

2) jeep: Homeworld B3 Y1 G3
	jeep: Hey!  Yes, I had a great time.  Very tiring, though.  I am glad to have a couple days before going to work.

3) Keith: Build G1 Keith
	Keith: Same here.  I had visitors - 2 siblings, 3 cousins, 3 dogs for 4 days.

4) jeep: Build G1 Jeep

5) Keith: Trade G1 Y1 Keith

6) jeep: Trade G1 Y1 Jeep

7) Keith: Build G1 Keith

8) jeep: Build G1 Jeep

9) Keith: Discover Y1 Keith G3 Behemoth

10) jeep: Build Y2 Jeep

11) Keith: Build Y2 Behemoth

12) jeep: Discover Y1 Jeep G2 Grower

13) Keith: Move Y2 Behemoth Grower

14) jeep: Sacrifice G3 Jeep
Build Y3 Grower
Build Y3 Grower
Build Y3 Jeep
Catastrophe Grower Yellow

15) Keith: Discover Y1 Behemoth G2 Bend

16) jeep: Trade Y2 R2 Jeep

17) Keith: Build Y1 Bend

18) jeep: Trade Y3 G3 Jeep
	jeep: I see now that I made a poor play last move.  Hmm...

19) Keith: Trade G1 R1 Keith
	Keith: Sorry to take so long to move.

20) jeep: Trade G1 B1 Jeep
	jeep: No problem

21) Keith: Build G1 Keith

22) jeep: Discover B1 Jeep Y2 Yonkers

23) Keith: Build Y2 Bend

24) jeep: Build R1 Jeep
	jeep: I never understand how I manage to get myself into this position... Which means it's something my opponent does that I don't see.  I need to review my games where I end up like this.

25) Keith: Discover Y1 Bend G1 Prineville

26) jeep: Move G3 Jeep Bend

27) Keith: Sacrifice Y1 Bend
Discover Y2 Bend G3 Madras
	jeep: You're building Oregon... ;)
	Keith: At one time I was a big frog in the small pond of Prineville.
	Keith: You moved your 3-pointer out of your homeworld!  Gutsy move.  Even when it looks safe I am always worried that I am overlooking something and making a game ending mistake.

28) jeep: Sacrifice B1 Yonkers
Trade G3 Y3 Bend
	jeep: Yeah, it frightens me too, but not as much as you having a Yellow Monopoly.
	jeep: Of course, I got "unlucky" and forgot to consider something.

We had some cousins who lived in Prineville.  Wonder if you knew them... It was a no-stoplight town when they first lived there and just moved away a year or two ago...

29) Keith: Build Y1 Prineville

30) jeep: Move Y3 Bend Jeep
	Keith: I left Prineville 8 years ago.  They had 3 stoplights and one blinker at that time.  Wheeler county still had only one blinking light.

31) Keith: Build Y2 Madras

32) jeep: Discover R2 Jeep B2 Tigard

33) Keith: Build Y3 Prineville

34) jeep: Trade R2 G2 Tigard

35) Keith: Sacrifice Y3 Prineville
Discover Y1 Prineville B2 Beaverton
Move Y1 Beaverton Jeep
Move Y2 Madras Tigard

36) jeep: Trade Y3 G3 Jeep

37) Keith: Sacrifice R1 Keith
Attack R1 Jeep

38) jeep: Trade G3 R3 Jeep
	jeep: *sigh*  I am just not thinking this game. 

39) Keith: Sacrifice G3 Keith
Build G1 Keith
Build R1 Jeep
Build R1 Jeep
Catastrophe Jeep Red
	Keith: You have not played at your usual level this game.   Between moving and trading you have spent 5 turns juggling your 3-pointer in your home system.  This time it has caught up with you.  
	jeep: Yeah, no idea what happened.  In HW and Alien City, it seems that once I make a mistake, I get over flustered and can't recover.  Most likely a mental thing on my part.



5645)
Started: 2007.1.2, Ended: 2007.1.15
Participants: Keith (S), Uglyfoot (N)
Winner: Keith

1) Uglyfoot: Homeworld Y3 B1 G3

2) Keith: Homeworld Y1 B2 G3

3) Uglyfoot: Build G1 Uglyfoot
	Uglyfoot: hey, keith.  Good Luck!

4) Keith: Build G1 Keith
	Keith: Hello Uglyfoot.  Have a good game.

5) Uglyfoot: Trade G1 R1 Uglyfoot

6) Keith: Trade G1 Y1 Keith

7) Uglyfoot: Build G1 Uglyfoot

8) Keith: Build Y1 Keith

9) Uglyfoot: Discover G1 Uglyfoot B2 Themall

10) Keith: Discover Y1 Keith G3 Behemoth

11) Uglyfoot: Build G1 Uglyfoot

12) Keith: Build Y2 Behemoth

13) Uglyfoot: Build G1 Themall

14) Keith: Build G2 Keith

15) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Themall
Build G2 Uglyfoot
Build G3 Uglyfoot

16) Keith: Move G2 Keith Behemoth

17) Uglyfoot: Trade G2 Y2 Uglyfoot

18) Keith: Move G2 Behemoth Themall
Catastrophe Themall Green

19) Uglyfoot: Discover Y2 Uglyfoot G2 Work

20) Keith: Trade Y1 R1 Keith

21) Uglyfoot: Move G1 Uglyfoot Work

22) Keith: Build G1 Keith

23) Uglyfoot: Build G1 Uglyfoot

24) Keith: Trade G1 B1 Keith

25) Uglyfoot: Discover G1 Work B3 Commerce

26) Keith: Move B1 Keith Behemoth

27) Uglyfoot: Build G1 Commerce

28) Keith: Build G2 Keith

29) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build Y1 Work

30) Keith: Sacrifice G3 Keith
Build G3 Keith
Build B1 Behemoth
Build B2 Behemoth

31) Uglyfoot: Sacrifice Y2 Work
Move G1 Commerce Keith
Move G1 Commerce Keith
Catastrophe Keith G

32) Keith: Trade B1 G1 Behemoth

33) Uglyfoot: Build Y2 Work
	Keith: Ouch.  I should have seen that coming.  Better stop to think... if it is not too late already.

34) Keith: Sacrifice Y2 Behemoth
Move G1 Behemoth Work
Move G1 Work Uglyfoot
Catastrophe Uglyfoot Green

35) Uglyfoot: Move Y2 Work Uglyfoot

36) Keith: Build Y2 Behemoth

37) Uglyfoot: Trade Y2 G2 Uglyfoot

38) Keith: Move Y2 Behemoth Keith

39) Uglyfoot: Build Y2 Work

40) Keith: Trade Y2 G2 Keith

41) Uglyfoot: Discover Y2 Work Y3 Moving

42) Keith: Move B2 Behemoth Work

43) Uglyfoot: Build Y2 Work

44) Keith: Trade B2 Y2 Work

45) Uglyfoot: Move Y2 Work Behemoth
	Keith: I guess I had better not take the y2 bait.

46) Keith: Build Y3 Work

47) Uglyfoot: Move Y2 Moving Work
Catastrophe Work Y

48) Keith: Build B1 Behemoth

49) Uglyfoot: Build R1 Uglyfoot

50) Keith: Build Y1 Behemoth

51) Uglyfoot: Sacrifice R1 Uglyfoot
Attack B1 Behemoth

52) Keith: Build B2 Behemoth

53) Uglyfoot: Build B2 Behemoth
Catastrophe Behemoth B

54) Keith: Discover Y1 Behemoth G2 Midworld

55) Uglyfoot: Build G1 Uglyfoot

56) Keith: Build Y2 Behemoth

57) Uglyfoot: Sacrifice R1 Uglyfoot
Attack Y2 Behemoth

58) Keith: Build Y2 Behemoth
Catastrophe Behemoth Yellow

59) Uglyfoot: Trade G1 Y1 Uglyfoot

60) Keith: Build Y2 Midworld

61) Uglyfoot: Build G1 Uglyfoot

62) Keith: Move Y2 Midworld Uglyfoot

63) Uglyfoot: Trade Y1 R1 Uglyfoot

64) Keith: Sacrifice R1 Keith
Attack R1 Uglyfoot

65) Uglyfoot: Trade G2 R2 Uglyfoot

66) Keith: Attack R2 Uglyfoot

67) Uglyfoot: Build G1 Uglyfoot

68) Keith: Sacrifice R2 Uglyfoot
Attack G1 Uglyfoot
Attack G1 Uglyfoot

	Keith: And unusual and tough game.  We both knocked eash other down multiple times.  It came down to I had a red ship and you did not.  Good game.
	Uglyfoot: Thank you.  It was quite a struggle.


5768)
Started: 2007.1.4, Ended: 2007.1.27
Participants: Keith (S), GreedyAlgorithm (N)
Winner: GreedyAlgorithm

1) GreedyAlgorithm: Homeworld Y1 B2 G3

2) Keith: Homeworld B1 Y3 G3
	GreedyAlgorithm: Hi, I haven't played a lot, but don't go easy on me. :)

First time playing online, though, or any game on SDG, so hopefully there won't be any problems there.
	Keith: Then welcome to SDG.  Plenty of friendly opponents and a bunch of good games.  I recommend checking out the forums and giving Cannon a Castle Danger a try.

As for this game.  Feel free to ask questions.  I won't give advice on future moves but I would be happy to explain or give feedback on past moves.

3) GreedyAlgorithm: Build G1 Greedyalgorithm

4) Keith: Build G1 Keith

5) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm

6) Keith: Trade G1 B1 Keith

7) GreedyAlgorithm: Build G1 Greedyalgorithm
	Keith: Not that I want to mimic your moves.  I just don't want you putting me in a bind by grabbing the last b1.

8) Keith: Build B2 Keith

9) GreedyAlgorithm: Discover B1 Greedyalgorithm G3 Cornucopia

10) Keith: Discover B2 Keith G2 Midworld

11) GreedyAlgorithm: Build G1 Greedyalgorithm

12) Keith: Build G1 Keith

13) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Extension

14) Keith: Sacrifice G3 Keith
Build B2 Midworld
Build B3 Midworld
Build B3 Keith

15) GreedyAlgorithm: Build B3 Cornucopia

16) Keith: Sacrifice B2 Midworld
Trade B3 Y3 Midworld
Trade B3 G3 Keith

17) GreedyAlgorithm: Trade B1 Y1 Cornucopia

18) Keith: Discover B1 Keith R2 Akai

19) GreedyAlgorithm: Discover B3 Cornucopia Y2 Interloper

20) Keith: Trade G1 R1 Keith

21) GreedyAlgorithm: Build Y1 Cornucopia

22) Keith: Build G1 Keith

23) GreedyAlgorithm: Build Y2 Cornucopia

24) Keith: Move Y3 Midworld Cornucopia
Catastrophe Cornucopia Yellow

25) GreedyAlgorithm: Trade G1 Y1 Greedyalgorithm

26) Keith: Trade G1 Y1 Keith

27) GreedyAlgorithm: Build Y2 Greedyalgorithm
	GreedyAlgorithm: build y2 GreedyAlgorithm

28) Keith: Move Y1 Keith Midworld
	GreedyAlgorithm: Heh, wrong box. :)
	Keith: A fairly frequent event during ones first game online.  That order box is so far way from the text of your opponents last turn or chat.

29) GreedyAlgorithm: Discover Y1 Greedyalgorithm G3 Horn-of-plenty

30) Keith: Build G1 Keith

31) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm
Build Y2 Horn-of-plenty
Build Y3 Greedyalgorithm
Build B1 Interloper

32) Keith: Move B2 Midworld Horn-of-plenty

33) GreedyAlgorithm: Sacrifice Y2 Greedyalgorithm
Discover Y1 Horn-of-plenty Y2 Alpha
Discover Y2 Horn-of-plenty G2 Beta

34) Keith: Build B2 Horn-of-plenty

35) GreedyAlgorithm: Build G1 Extension
	Keith: What a yellow denial sequence.  Good job.
	Keith: I was going to start stocking up on yellow this turn.
	GreedyAlgorithm: Thanks. I'm not 100% sure where I'm going with the line, but it was too cute to pass up.

36) Keith: Move G1 Keith Akai

37) GreedyAlgorithm: Move B1 Interloper Horn-of-plenty

38) Keith: Build B3 Akai

39) GreedyAlgorithm: Sacrifice G1 Extension
Build B3 Interloper

40) Keith: Build R1 Keith

41) GreedyAlgorithm: Trade B3 R3 Interloper

42) Keith: Sacrifice Y1 Midworld
Move B2 Horn-of-plenty Alpha

43) GreedyAlgorithm: Build B3 Horn-of-plenty

44) Keith: Trade B1 Y1 Akai

45) GreedyAlgorithm: Sacrifice G1 Extension
Build Y3 Beta
	Keith: Oh wow.  You have four 3-pointers to my two, I have lost my grip on blue and you still have most of your control over yellow.   Good thing for me you havn't played Homeworlds a lot.  ;) 

46) Keith: Build B1 Horn-of-plenty
Catastrophe Horn-of-plenty Blue
	GreedyAlgorithm: I'd played chess a good bit before, and this strikes me as very similar to amateur-level chess (I mean before you can tell that moving you bishop innocuously move 3 will have such-and-such an impact 10 moves from now). Also I think I've pretty much lost my yellow control based on akai and Alpha, but 4-2 does seem pretty helpful.

47) GreedyAlgorithm: Sacrifice Y2 Beta
Move Y3 Beta Keith
Move B3 Interloper Keith
	Keith: I did not think I could get to Extension before you harvested it.  Too shy of yellow ships.  Better do something about the now five to two 3-pointer situation.
	Keith: I did not think I could get to Extension before you harvested it.  Too shy of yellow ships.  Better do something about the now five to two 3-pointer situation.

	Keith: If there is a way out of this it is beyond my ability to see it.  Well done.  Have you considered joining the Homeworlds ladder?  I think you could make a good run at the top rung.
	GreedyAlgorithm: Thanks. I just joined! We'll see. :) Good game!


5719)
Started: 2007.1.5, Ended: 2007.1.19
Participants: GameBrain42 (S), Preacher (N)
Winner: Preacher

1) Preacher: Homeworld B2 Y1 G3

2) GameBrain42: Homeworld Y3 G1 B3

3) Preacher: Build G1 Preacher
	Preacher: looks like you got it :)

4) GameBrain42: Build B1 Gamebrain42

5) Preacher: Build G1 Preacher
	GameBrain42: Sorry bout the wait.  The GameBrain Consul apparently thought that they would like you to make a free move before constucting another of our transmogrifier ships..

	Preacher: build g1 preacher

6) GameBrain42: Discover B1 Gamebrain42 G2 Alderaan

7) Preacher: Trade G3 R3 Preacher
	GameBrain42: Ahhhh Alderaan..  And oh look!  It has a small Moon! (that is a moon right?).

8) GameBrain42: Build B1 Alderaan

9) Preacher: Build G2 Preacher

10) GameBrain42: Build B1 Gamebrain42

11) Preacher: Trade G2 B2 Preacher

12) GameBrain42: Build B2 Alderaan

13) Preacher: Build B3 Preacher

14) GameBrain42: Trade B1 Y1 Alderaan

15) Preacher: Trade B3 Y3 Preacher



5849)
Variants: "Unrated"
Started: 2007.1.10, Ended: 2007.1.16
Participants: MatrixFrog (S), papa_bear (N)
Winner: MatrixFrog

1) papa_bear: Homeworld Y1 B2 G3

2) MatrixFrog: Homeworld Y1 B3 G3

3) papa_bear: Build G1 Papa_bear

4) MatrixFrog: Build G1 Matrixfrog

5) papa_bear: Trade G1 Y1 Papa_bear

6) MatrixFrog: Build G1 Matrixfrog

7) papa_bear: Build G1 Papa_bear

8) MatrixFrog: Discover G1 Matrixfrog Y2 Candlelight

9) papa_bear: Trade G1 B1 Papa_bear

10) MatrixFrog: Trade G1 B1 Matrixfrog

11) papa_bear: Build G1 Papa_bear

12) MatrixFrog: Build G1 Candlelight

13) papa_bear: Build G2 Papa_bear
	papa_bear: build g2 papa_bear
	papa_bear: I'm an idiot.


14) MatrixFrog: Build G2 Matrixfrog

15) papa_bear: Discover G2 Papa_bear R3 Mahalalel

16) MatrixFrog: Trade G3 Y3 Matrixfrog

17) papa_bear: Build Y2 Papa_bear

18) MatrixFrog: Build B1 Matrixfrog

19) papa_bear: Build B2 Papa_bear

20) MatrixFrog: Build G2 Matrixfrog

21) papa_bear: Move B2 Papa_bear Mahalalel

22) MatrixFrog: Sacrifice B1 Matrixfrog
Trade G1 B1 Candlelight

23) papa_bear: Move Y1 Papa_bear Mahalalel

24) MatrixFrog: Build B2 Candlelight

25) papa_bear: Build G1 Mahalalel

26) MatrixFrog: Build G3 Candlelight

27) papa_bear: Build B3 Mahalalel

28) MatrixFrog: Discover B2 Candlelight Y3 Grumblecakes

29) papa_bear: Trade B1 R1 Papa_bear

30) MatrixFrog: Move G1 Candlelight Grumblecakes

31) papa_bear: Sacrifice G3 Papa_bear
Build G3 Papa_bear
Build R1 Papa_bear
Build Y2 Mahalalel

32) MatrixFrog: Sacrifice G3 Candlelight
Build B1 Grumblecakes
Build B3 Grumblecakes
Build G3 Grumblecakes

33) papa_bear: Sacrifice Y2 Mahalalel
Move B2 Mahalalel Candlelight
Move B2 Candlelight Grumblecakes
Catastrophe Grumblecakes Blue

34) MatrixFrog: Trade B1 R1 Candlelight

35) papa_bear: Move G1 Papa_bear Mahalalel

36) MatrixFrog: Trade G2 R2 Matrixfrog

37) papa_bear: Trade G1 B1 Mahalalel

38) MatrixFrog: Trade B1 G1 Matrixfrog

39) papa_bear: Sacrifice G2 Mahalalel
Build Y2 Papa_bear
Build Y3 Mahalalel

40) MatrixFrog: Discover Y3 Matrixfrog R2 Flame

41) papa_bear: Sacrifice Y2 Papa_bear
Move G3 Papa_bear Mahalalel
Move B3 Mahalalel Papa_bear

42) MatrixFrog: Build R2 Matrixfrog

43) papa_bear: Move G1 Mahalalel Papa_bear

44) MatrixFrog: Build R3 Matrixfrog

45) papa_bear: Move R1 Papa_bear Mahalalel

46) MatrixFrog: Sacrifice Y3 Flame
Move R2 Matrixfrog Candlelight
Move R1 Candlelight Mahalalel
Move R2 Candlelight Mahalalel
Catastrophe Mahalalel R
	MatrixFrog: I'm not sure if this is going to turn out to be a bad idea or not, but I'm going for it.

47) papa_bear: Build G2 Papa_bear
	papa_bear: Wow. I'd say that the resulting position looks favorable for you. Wow.

48) MatrixFrog: Trade G1 B1 Matrixfrog

49) papa_bear: Move G1 Papa_bear Grumblecakes

50) MatrixFrog: Discover G3 Grumblecakes Y2 Alpha

51) papa_bear: Trade B3 G3 Papa_bear

52) MatrixFrog: Build B1 Matrixfrog

53) papa_bear: Sacrifice G2 Papa_bear
Build G1 Grumblecakes
Build G2 Papa_bear

54) MatrixFrog: Discover G3 Alpha Y3 Beta

55) papa_bear: Trade G2 B2 Papa_bear

56) MatrixFrog: Discover B1 Matrixfrog Y2 Gamma

57) papa_bear: Build B1 Papa_bear

58) MatrixFrog: Move B1 Gamma Beta

59) papa_bear: Move B2 Papa_bear Grumblecakes

60) MatrixFrog: Sacrifice R2 Matrixfrog
Attack G1 Grumblecakes
Attack G1 Grumblecakes

61) papa_bear: Trade B2 G2 Grumblecakes
Catastrophe Grumblecakes Green
	papa_bear: I don't know what part of the world you're in, but if you hear the faint echoes of a slapping sound, that was me smacking my forehead. I keep forgetting that a sacrificed red ship allows you to attack in systems where you otherwise have no access to red technology.

I am taking the family out for dinner tonight. When I get back, I'll decide whether to resign yet or not :)

And I'll start thinking about what game to challenge you to next...
	MatrixFrog: No! Don't resign. That's deeply unsatisfying for both players. And I may be winning (though I'm not even sure about that) but it's hardly reached the point of being inevitable. I think concepts of "who's winning" and such are very hard to define in this game.
	papa_bear: Ok. I'll hang in there.
	papa_bear: However, I should note that I have a philosophy about resignation. In a truly hopeless position, I consider it rude not to resign. I'll trust your judgment on this matter for now, but I don't play on in positions I recognise as hopeless. Part of good play, in my view, is being able to tell when a game is lost. Sometimes resignation is the strongest move.

This may come from my background in chess, and perhaps other gaming cultures are different. However, I have internalized the concept of timely resignation as an integral part of good sportsmanship, honor, and respect for my opponent. So I reserve the right to resign when I see fit, though I won't do it just yet.

62) MatrixFrog: Build B2 Beta
	MatrixFrog: That makes sense.

63) papa_bear: Build R1 Papa_bear

64) MatrixFrog: Move B1 Beta Papa_bear

65) papa_bear: Discover B1 Papa_bear R3 Aleph

66) MatrixFrog: Sacrifice G2 Matrixfrog
Build B2 Papa_bear
Build B3 Papa_bear
Catastrophe Papa_bear B

67) papa_bear: Build G1 Papa_bear

68) MatrixFrog: Trade B2 Y2 Beta

69) papa_bear: Move G1 Papa_bear Aleph

70) MatrixFrog: Discover Y2 Beta G2 Gamma

71) papa_bear: Move Y2 Papa_bear Aleph

72) MatrixFrog: Build Y1 Gamma

73) papa_bear: Build Y2 Aleph

74) MatrixFrog: Discover Y1 Gamma R3 Delta

75) papa_bear: Move Y2 Aleph Gamma

76) MatrixFrog: Build G1 Beta

77) papa_bear: Build Y3 Aleph

78) MatrixFrog: Discover Y2 Gamma Y3 Epsilon
	papa_bear: Well, it still looks pretty grim, but I must concede that it was not as dire as I had thought. Thanks for sparing me the unnecessary resignation.

79) papa_bear: Trade Y2 B2 Aleph

80) MatrixFrog: Build G1 Beta

81) papa_bear: Sacrifice Y2 Gamma
Move G1 Aleph Papa_bear
Move G1 Papa_bear Beta
Catastrophe Beta Green

82) MatrixFrog: Trade R3 G3 Matrixfrog
	MatrixFrog: Uh oh.

83) papa_bear: Build G1 Papa_bear

84) MatrixFrog: Build G1 Matrixfrog

85) papa_bear: Move B1 Aleph Papa_bear

86) MatrixFrog: Sacrifice G1 Matrixfrog
Build Y2 Delta

87) papa_bear: Build B1 Papa_bear

88) MatrixFrog: Sacrifice Y2 Epsilon
Move Y2 Delta Papa_bear
Move Y1 Delta Papa_bear

89) papa_bear: Attack Y2 Papa_bear

90) MatrixFrog: Sacrifice G3 Matrixfrog
Build Y2 Papa_bear
Pass
Pass
Catastrophe Papa_bear Y

	papa_bear: That was pretty cool. Would you like to play another game?
	MatrixFrog: Yeah. I thought you were going to challenge me to something else, right? So go ahead and do that, in addition to another Homeworlds game, or instead of it... whatever you want to do.


5861)
Variants: "Hard time"
Started: 2007.1.11, Ended: 2007.3.28
Participants: Laurie_Menke (S), unic (N)
Winner: unic

1) unic: Homeworld B3 Y2 G3

2) Laurie_Menke: Homeworld Y1 B3 G3
	Laurie_Menke: Hi unic!  Good luck!  :o)

3) unic: Build G1 Unic

4) Laurie_Menke: Build G1 Laurie_menke

5) unic: Discover G1 Unic Y1 Gul

6) Laurie_Menke: Discover G1 Laurie_menke Y2 Roses

7) unic: Build G1 Unic

8) Laurie_Menke: Build G2 Laurie_menke

9) unic: Build G2 Gul

10) Laurie_Menke: Discover G2 Laurie_menke Y2 Ribbon

11) unic: Trade G1 Y1 Unic

12) Laurie_Menke: Discover G2 Ribbon Y3 Bellied

13) unic: Build Y2 Unic

14) Laurie_Menke: Move G1 Roses Gul

15) unic: Trade Y1 R1 Unic

16) Laurie_Menke: Sacrifice G2 Bellied
Build G1 Gul
Build G2 Laurie_menke
Catastrophe Gul G

17) unic: Discover Y2 Unic G1 Lego

18) Laurie_Menke: Trade G2 Y2 Laurie_menke

19) unic: Discover R1 Unic Y1 Clay

20) Laurie_Menke: Discover Y2 Laurie_menke R2 Mars
	Laurie_Menke: Again, I'm very sorry for the long delay, unic.  Please forgive me.  :o(

21) unic: Build G1 Unic

22) Laurie_Menke: Build G1 Laurie_menke

23) unic: Build G2 Unic

24) Laurie_Menke: Trade G1 R1 Laurie_menke

25) unic: Build Y1 Lego

26) Laurie_Menke: Move G3 Laurie_menke Mars

27) unic: Discover G1 Unic B1 Ground

28) Laurie_Menke: Sacrifice G3 Mars
Build R1 Laurie_menke
Build Y3 Mars
Build R2 Laurie_menke

29) unic: Sacrifice Y2 Lego
Discover R1 Clay Y2 Temp
Move R1 Temp Laurie_menke
Catastrophe Laurie_menke Red
	unic: That was a bit sudden!  Thanks for the game.
	Laurie_Menke: Wow...yeah, it was!  I sure didn't see that coming!  Congratulations, unic...nicely played!  Thanks for the fun!  :o)



5869)
Started: 2007.1.11, Ended: 2007.1.15
Participants: clockwise (S), Uglyfoot (N)
Winner: clockwise

1) Uglyfoot: Homeworld B1 Y3 G3
	Uglyfoot: Greetings!  I'm looking to change my standings as the worst player in Homeworlds...  Good luck.

2) clockwise: Homeworld G1 B2 Y3

3) Uglyfoot: Build G1 Uglyfoot
	clockwise: Hello, this is my very first game on sdg, but not my first of Homeworlds.  GL
	Uglyfoot: let me know when I do something stupid.  I keep missing something...

4) clockwise: Build Y1 Clockwise

5) Uglyfoot: Discover G1 Uglyfoot B2 Xchg

6) clockwise: Trade Y1 G1 Clockwise

7) Uglyfoot: Build G2 Xchg

8) clockwise: Discover G1 Clockwise Y3 Peanut

9) Uglyfoot: Build G2 Uglyfoot

10) clockwise: Build Y1 Clockwise

11) Uglyfoot: Trade G2 Y2 Xchg

12) clockwise: Build G2 Peanut

13) Uglyfoot: Build G2 Xchg

14) clockwise: Move G1 Peanut Xchg

15) Uglyfoot: Trade G2 R2 Xchg

16) clockwise: Sacrifice Y3 Clockwise
Move G1 Xchg Uglyfoot
Move G2 Peanut Xchg
Move G2 Xchg Uglyfoot
Catastrophe Uglyfoot Green
	clockwise: So your mistake here was that you didn't recognize that my prior move was a double threat.  With the primary threat being the annihilation of your homeworld and the secondary threat being a subsequent catastrophy in xchg. You saw and responded to the secondary threat, but did not see the primary threat.
	clockwise: Always pay attention to your opponents large pieces and what they are capable of.  Here the fact that my y3 gave me near instant access to your homeworld meant you should have played more defensively.



5897)
Started: 2007.1.12, Ended: 2007.2.1
Participants: jbj77 (S), Uglyfoot (N)
Winner: jbj77

1) Uglyfoot: Homeworld Y1 B3 G3
	Uglyfoot: Greetings and well met.

2) jbj77: Homeworld B1 G2 Y3

3) Uglyfoot: Build G1 Uglyfoot
	jbj77: Thank you.

4) jbj77: Build Y1 Jbj77

5) Uglyfoot: Build G1 Uglyfoot

6) jbj77: Trade Y1 G1 Jbj77

7) Uglyfoot: Discover G1 Uglyfoot B2 Library

8) jbj77: Build G2 Jbj77

9) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Library
Build G3 Library
Build G3 Uglyfoot

10) jbj77: Discover G1 Jbj77 Y3 Alpha

11) Uglyfoot: Trade G3 Y3 Library

12) jbj77: Build G3 Alpha

13) Uglyfoot: Move G1 Library Alpha

14) jbj77: Discover G3 Alpha Y2 Beta

15) Uglyfoot: Sacrifice Y3 Library
Move G1 Alpha Jbj77
Move G2 Library Alpha
Move G2 Alpha Jbj77
Catastrophe Jbj77 G

16) jbj77: Build G1 Beta
	Uglyfoot: I just had that one used on me (and I lost).

17) Uglyfoot: Trade G1 R1 Uglyfoot

18) jbj77: Move G1 Beta Jbj77

19) Uglyfoot: Build G1 Uglyfoot

20) jbj77: Trade G1 R1 Jbj77

21) Uglyfoot: Discover G1 Uglyfoot B2 Nyse

22) jbj77: Build G1 Beta

23) Uglyfoot: Build G2 Nyse

24) jbj77: Build G2 Beta

25) Uglyfoot: Trade G2 Y2 Nyse

26) jbj77: Move G2 Beta Jbj77

27) Uglyfoot: Build G2 Nyse

28) jbj77: Sacrifice G3 Beta
Build G2 Alpha
Build G3 Beta
Build G3 Jbj77

29) Uglyfoot: Build Y1 Nyse

30) jbj77: Sacrifice G2 Jbj77
Build R1 Jbj77
Build R2 Jbj77

31) Uglyfoot: Build R2 Uglyfoot

32) jbj77: Move R1 Jbj77 Beta

33) Uglyfoot: Discover R2 Uglyfoot Y2 Djia

34) jbj77: Trade R1 B1 Jbj77

35) Uglyfoot: Trade G1 B1 Nyse

36) jbj77: Sacrifice G3 Beta
Build G1 Beta
Build G2 Beta
Build G3 Jbj77

37) Uglyfoot: Sacrifice Y2 Nyse
Move G2 Nyse Jbj77
Move G2 Jbj77 Beta
Catastrophe Beta G

38) jbj77: Move R2 Jbj77 Nyse
	jbj77: Oh no, you killed my factory!

39) Uglyfoot: Build G1 Uglyfoot

40) jbj77: Attack Y1 Nyse

41) Uglyfoot: Move G1 Uglyfoot Djia

42) jbj77: Sacrifice G3 Jbj77
Build Y1 Jbj77
Build Y2 Nyse
Build Y3 Nyse

43) Uglyfoot: Build G1 Uglyfoot

44) jbj77: Move G2 Alpha Nyse

45) Uglyfoot: Move G1 Djia Jbj77

46) jbj77: Sacrifice Y3 Jbj77
Move G2 Nyse Uglyfoot
Move G1 Alpha Beta
Move G1 Beta Uglyfoot
Catastrophe Uglyfoot Green

47) Uglyfoot: Move R2 Djia Uglyfoot

48) jbj77: Move Y3 Nyse Uglyfoot

49) Uglyfoot: Build G1 Jbj77

50) jbj77: Sacrifice R2 Nyse
Attack R2 Uglyfoot
Attack R1 Uglyfoot
	Uglyfoot: Thank you for the game.
	jbj77: Thank you.  It was fun.  It was unexpected when you blew up half of my homeworld.  You had me scared for a little bit.
	Uglyfoot: I just couldn't get the momentum back toweard your system.  I am working on improving my play...
	jbj77: Yah, I think you sacrificed too much to blow me up.



5893)
Started: 2007.1.12, Ended: 2007.1.22
Participants: zoltar (S), jbj77 (N)
Winner: jbj77

1) jbj77: Homeworld Y1 B2 G3

2) zoltar:
Homeworld B3 Y1 G3
	zoltar: h b3 y1 g3

3) jbj77: Build G1 Jbj77

4) zoltar: Build G1 Zoltar
	zoltar: b g1 zoltar

5) jbj77: Trade G1 Y1 Jbj77
	zoltar: Oops! I keep putting the moves in the wrong field!

6) zoltar: Trade G3 Y3 Zoltar
	jbj77: Np problem.  I thought you just wanted to make doubly sure I knew what move you were making.

7) jbj77: Build Y2 Jbj77

8) zoltar: Build Y2 Zoltar

9) jbj77: Trade Y2 R2 Jbj77

10) zoltar: Trade Y2 R2 Zoltar

11) jbj77: Build Y2 Jbj77

12) zoltar: Build Y2 Zoltar

13) jbj77: Discover Y2 Jbj77 B3 Alpha

14) zoltar: Discover Y2 Zoltar G2 Greenbelt

15) jbj77: Build G1 Jbj77

16) zoltar: Build G1 Zoltar

17) jbj77: Move G1 Jbj77 Alpha

18) zoltar: Trade G1 B1 Zoltar

19) jbj77: Build R1 Jbj77

20) zoltar: Build R1 Zoltar

21) jbj77: Trade R1 B1 Jbj77

22) zoltar: Move B1 Zoltar Greenbelt

23) jbj77: Build G1 Alpha

24) zoltar: Build G2 Zoltar

25) jbj77: Build G2 Alpha

26) zoltar: Sacrifice G2 Zoltar
Build Y2 Zoltar
Build Y3 Greenbelt

27) jbj77: Sacrifice G2 Alpha
Build Y3 Alpha
Build G2 Jbj77

28) zoltar: Trade Y3 G3 Zoltar

29) jbj77: Discover Y2 Alpha G2 Gamma

30) zoltar: Sacrifice Y2 Greenbelt
Discover G1 Zoltar B2 Beta
Move Y2 Zoltar Beta
	jbj77: Oops, I guess I skipped beta.  So much for my predictable names.

31) jbj77: Sacrifice G3 Jbj77
Build G3 Jbj77
Build Y2 Alpha
Build Y3 Gamma
	zoltar: I seem to be falling behind!  I think I'm in trouble.

32) zoltar: Build G3 Zoltar
	jbj77: We'll see whether I can keep this slim edge.

33) jbj77: Discover B1 Jbj77 R3 Delta

34) zoltar: Move R2 Zoltar Greenbelt

35) jbj77: Trade G1 R1 Alpha

36) zoltar: Sacrifice G3 Zoltar
Build G1 Zoltar
Build G3 Beta
Build R1 Greenbelt

37) jbj77: Move Y3 Gamma Delta
	jbj77: I hated to lose that green.

38) zoltar: Discover R1 Greenbelt B1 Blueberry

39) jbj77: Move B1 Delta Gamma

40) zoltar: Sacrifice G3 Beta
Build R2 Zoltar
Build R3 Blueberry
Build R3 Greenbelt

41) jbj77: Sacrifice G3 Jbj77
Build G3 Jbj77
Build B2 Gamma
Build B3 Gamma

42) zoltar: Sacrifice Y3 Greenbelt
Move B1 Greenbelt Blueberry
Move B1 Blueberry Gamma
Move R3 Blueberry Gamma
Catastrophe Gamma B

43) jbj77: Sacrifice G3 Jbj77
Build G3 Jbj77
Build G3 Alpha
Build Y3 Delta

44) zoltar: Attack Y2 Gamma

45) jbj77: Move Y3 Delta Beta
	zoltar: This is useless; I think I'm toast no matter what, but this is my best try.

	zoltar: Ok, I have no chance.  gg
	jbj77: Thanks for the great game.  We'll have to have a rematch some time.
	zoltar: Ok. That would be great.  I could have played longer, as I have the red ships, but your advantage with the Yellow, and you're eventually going to get the Blues again and blow up my star and I can't prevent it, so I figured it was hopeless.
	jbj77: Yah, I was really worried about you having all of the reds, but my plan was to deprive you of all yellows so you would be immobilized and couldn't really use your red advantage.  I'm still not certain I would have won had you not resigned.


5965)
Variants: "Hard time"
Started: 2007.1.16, Ended: 2007.2.1
Participants: Kermit (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B1 Y3 G3

2) Kermit: Homeworld G2 Y3 B3

3) Uglyfoot: Build G1 Uglyfoot

4) Kermit: Build B1 Kermit

5) Uglyfoot: Discover G1 Uglyfoot B2 Amex

6) Kermit: Trade B1 G1 Kermit

7) Uglyfoot: Build G1 Uglyfoot

8) Kermit: Discover G1 Kermit Y1 Nymex

9) Uglyfoot: Build G2 Amex

10) Kermit: Build G2 Nymex

11) Uglyfoot: Trade G2 Y2 Amex

12) Kermit: Build B1 Kermit

13) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Amex

14) Kermit: Discover G1 Nymex B2 Nyse

15) Uglyfoot: Move G2 Uglyfoot Nyse
	Aaron: Howdy...what seems to be the problem?
	Kermit: well I was trying to do the following... sac g2 nymex ~ b g2 amex ~ b g3 amex ~ Cat amex green but i get the error that I cannot build in amex. I should be able to after I sacrifice. (or so i thought.
	Kermit: I would still like to do that even though I should have done it in his home system (hint/warning to Uglyfoot)
	Kermit: I just realized the bit about his home system but will stick with my original intended move since if it had executed i wouldn't be able to take it back now.
	Aaron: I'm afraid you are misunderstanding how green sacrifices work.  You don't own any ships in Amex, therefore you can't build there, no matter the sacrifice.  The sacrifice simply lets you build in other sectors, but only sectors where you already own a ship of the appropriate colour (such as blue in Kermit).  Page me again if this is unclear or if you have other questions.  Cheers!

16) Kermit: Sacrifice G2 Nymex
Build G2 Nyse
Build G3 Nyse
Catastrophe Nyse Green

17) Uglyfoot: Discover G3 Amex R1 Mars

18) Kermit: Build B1 Kermit

19) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Amex
Build G2 Mars
Build G2 Uglyfoot

20) Kermit: Discover B1 Kermit Y1 Apollo
	Kermit: btw i didn't mean to sound like a pompous ass earlier. i just didn't know how much experience you had with the game. One time I played a multi game (which I prefer to the binary) and when I used sacrifice  two of the players quit because They thought I was being mean (they were new to the game, I didn't know). now i realize you know what you're doing so nevermind me.
	Uglyfoot: Don't worry about it.  I have a rather thick skin (& skull  ;> ).  I also realize that I am the worst player of Homeworlds on the site and will listen to any advice.  It HAS to be better than mine...

21) Uglyfoot: Sacrifice G3 Mars
Build G3 Mars
Build G3 Uglyfoot
Build G3 Amex

22) Kermit: Build B2 Kermit
	Kermit: I don't do as well in binary homeworlds. I have won the multi-game once or twice. The sacrifice is often the key ( for instance when you had three green ships at your home were I able to sac a yellow to make multiple moves it would have been the game. Another strategy is to move a small green to a 3 pip piece of another color just as storeage and when tht color is all gone you can sac the green 1 pip and build a 3 pip anywhere on the board you have a ship of that color.
	Kermit: but seeing those opportunities ahead of time is the trick. I don't always do that so well

23) Uglyfoot: Trade G3 B3 Amex

24) Kermit: Trade B3 Y3 Kermit

25) Uglyfoot: Move B3 Amex Apollo

26) Kermit: Trade B1 R1 Kermit

27) Uglyfoot: Trade G1 R1 Uglyfoot

28) Kermit: Trade B1 G1 Apollo

29) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build R2 Uglyfoot
Build B1 Apollo

30) Kermit: Build G3 Apollo

31) Uglyfoot: Sacrifice R2 Uglyfoot
Attack G3 Apollo
Attack G1 Apollo

32) Kermit: Build B1 Kermit

33) Uglyfoot: Move B3 Apollo Kermit

34) Kermit: Trade Y3 R3 Kermit

35) Uglyfoot: Sacrifice R1 Uglyfoot
Attack R3 Kermit
	Kermit: Ouch, I seriously misread the rules on attacks. Oh well. From here on down its all uphill.

	Uglyfoot: did you guess it?

	Kermit: nope...I thought you were going to move the other b1 in and catostrophe the blues. I thought you were going to do that or something like it a while back (with the 2 pip yellow). If I had thought of that I could have done the same with my 1 pip red. ( a sign i wasn't thinking that way)
	Kermit: in any case my BIGGEST mistake was sacrificing my greens for the catastrophe wayyyy back and allowing you to build so many I couldn't really get back into the game. 
	Kermit: Good game.
	Uglyfoot: Thanks for the game!


5980)
Started: 2007.1.16, Ended: 2007.1.19
Participants: MatrixFrog (S), papa_bear (N)
Winner: papa_bear

1) papa_bear: Homeworld B2 Y1 G3

2) MatrixFrog: Homeworld B3 G1 Y3
	papa_bear: If you choose to accept Castle Danger, it is unrated I have set it for you to play first player, which is a significant advantage. I am also prepared to suggest undos in case of serious mistakes, especially in the opening. Certain mistakes which are bad enough to ruin a game can nevertheless be difficult for new players to spot. If you accept it and prefer for me to keep my suggestions to myself, I can do that too :) Finally, if for any reason you'd rather not accept that challenge, there would be no hard feelings.
	MatrixFrog: I'm a little busy for a few days. I'll read the rules sometime this weekend probably and get that started.

3) papa_bear: Build G1 Papa_bear

4) MatrixFrog: Build Y1 Matrixfrog

5) papa_bear: Build G1 Papa_bear

6) MatrixFrog: Discover Y1 Matrixfrog G2 Mat

7) papa_bear: Discover G1 Papa_bear R3 Bet

8) MatrixFrog: Build Y1 Matrixfrog

9) papa_bear: Build G2 Papa_bear

10) MatrixFrog: Build Y2 Matrixfrog

11) papa_bear: Trade G2 Y2 Papa_bear

12) MatrixFrog: Discover Y1 Mat G3 Rix

13) papa_bear: Move Y2 Papa_bear Bet

14) MatrixFrog: Build Y2 Rix

15) papa_bear: Discover Y2 Bet G2 Gimmel

16) MatrixFrog: Trade Y1 B1 Matrixfrog
	papa_bear: How did you come up with the name MatrixFrog?
	MatrixFrog: i used to really like the movie, and then i played a frog in Honk

17) papa_bear: Build G2 Papa_bear

18) MatrixFrog: Trade Y2 G2 Matrixfrog
	papa_bear: I'm afraid I'm unfamiliar with Honk. What is it?

I enjoyed The Matrix, although I thought the sequels left a bit to be desired. Great action and sound effects, but the story grew in disappointing ways in the sequels.
	MatrixFrog: It's a musical based on the Ugly Duckling.

19) papa_bear: Trade G1 B1 Papa_bear

20) MatrixFrog: Move Y1 Rix Papa_bear
	papa_bear: Ah... I must confess that musicals are mostly outside my familiarity. I did, in high school, participate in the "pit orchestra" for three of them. Apparently, shoving an adolescent marching band into a dark cave under a stage transforms them into an "orchestra" :)
	MatrixFrog: No, it doesn't. You also need to have music stands and pencils and wear black. THEN you're an orchestra.

21) papa_bear: Move Y2 Gimmel Rix
	papa_bear: Aha! I knew we weren't an orchestra. We didn't wear black.

Guys and Dolls, Anything Goes, Oklahoma. I've never actually seen any of them, because the view from the pit was no good.

22) MatrixFrog: Sacrifice G2 Matrixfrog
Build Y1 Papa_bear
Build Y2 Papa_bear
Catastrophe Papa_bear Y

23) papa_bear: Sacrifice Y2 Rix
Move B1 Papa_bear Matrixfrog
Move G1 Bet Papa_bear
	papa_bear: Argh.

24) MatrixFrog: Trade B1 R1 Matrixfrog

25) papa_bear: Build B1 Matrixfrog

26) MatrixFrog: Build Y1 Matrixfrog
	MatrixFrog: I think perhaps t y3 r3 matrixfrog is what I should have done.

27) papa_bear: Build B1 Matrixfrog
Catastrophe Matrixfrog Blue
	papa_bear: Probably. I would likely have sacrificed my g2 to get the catastrophe, but then you'd be standing better anyway.

28) MatrixFrog: Discover Y1 Matrixfrog B3 Frog

29) papa_bear: Trade G2 Y2 Papa_bear

30) MatrixFrog: Build Y1 Rix

31) papa_bear: Build G1 Papa_bear

32) MatrixFrog: Build Y1 Matrixfrog

33) papa_bear: Sacrifice Y2 Papa_bear
Move G1 Papa_bear Matrixfrog
Move G1 Papa_bear Matrixfrog

34) MatrixFrog: Attack G1 Matrixfrog

35) papa_bear: Build G2 Matrixfrog
Catastrophe Matrixfrog Green
	papa_bear: Thanks for another great game. Feel free to send another if you like.



5901)
Started: 2007.1.17, Ended: 2007.1.28
Participants: zoltar (S), clockwise (N)
Winner: clockwise

1) clockwise: Homeworld B1 Y2 G3

2) zoltar: Homeworld R1 B3 G3
	clockwise: Hello, I anticipate being soundly beaten, but will try to put up a valiant struggle.  

3) clockwise: Build G1 Clockwise
	zoltar: Good luck, then!

4) zoltar: Build G1 Zoltar

5) clockwise: Trade G1 B1 Clockwise

6) zoltar: Trade G1 Y1 Zoltar

7) clockwise: Build B1 Clockwise

8) zoltar: Build Y1 Zoltar

9) clockwise: Discover B1 Clockwise G3 Smurftopia

10) zoltar: Discover Y1 Zoltar G2 Greenbelt

11) clockwise: Build B2 Clockwise

12) zoltar: Build Y1 Greenbelt
	clockwise: Hmm, I just saw a bad wrinkle in plan A, enacting plan B, possibly just as foolhardy.

13) clockwise: Discover B2 Clockwise Y3 Umbrella

14) zoltar: Build Y2 Zoltar

15) clockwise: Build B2 Smurftopia

16) zoltar: Discover Y1 Greenbelt B3 Blueridge

17) clockwise: Trade B2 Y2 Smurftopia

18) zoltar: Trade Y2 B2 Zoltar
	clockwise: I'm not sure if this is a good idea or not, but I seem to have painted myself into a bit of a corner... we'll see how it turns out.

19) clockwise: Build B2 Smurftopia

20) zoltar: Sacrifice G3 Zoltar
Build Y2 Blueridge
Build Y3 Greenbelt
Build Y3 Zoltar
	clockwise: Sorry for the undo, need to think about this a bit longer

21) clockwise: Discover B2 Smurftopia G2 Earth

22) zoltar: Move B2 Zoltar Greenbelt
	zoltar: No problem.  

23) clockwise: Build B3 Earth

24) zoltar: Trade Y1 R1 Greenbelt
	zoltar: Now I need to think longer!

25) clockwise: Sacrifice B2 Umbrella
Trade B3 Y3 Earth
Trade B1 R1 Clockwise

26) zoltar: Trade Y1 G1 Zoltar

27) clockwise: Build R2 Clockwise
	clockwise: 
	clockwise: I need to think about this position, but probably won't have time to sit down with it until Wed evening.

28) zoltar: Build R2 Greenbelt

29) clockwise: Build Y1 Earth

30) zoltar: Trade Y1 G1 Blueridge

31) clockwise: Move Y3 Earth Blueridge

32) zoltar: Move Y3 Greenbelt Smurftopia

33) clockwise: Build Y1 Smurftopia

34) zoltar: Sacrifice B2 Greenbelt
Trade Y3 R3 Smurftopia
Trade Y3 G3 Zoltar

35) clockwise: Sacrifice Y2 Smurftopia
Discover Y1 Smurftopia G2 Flight
Move B1 Smurftopia Flight

	zoltar: Yeah, it's hopeless. gg.
	clockwise: Thanks for the game!


5999)
Started: 2007.1.20, Ended: 2007.2.11
Participants: eriinfo (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B1 Y2 G3

2) eriinfo: Homeworld B3 Y1 G3
	Uglyfoot: greetings and good luck


3) Uglyfoot: Build G1 Uglyfoot

4) eriinfo: Build G1 Eriinfo

5) Uglyfoot: Discover G1 Uglyfoot R3 Defender

6) eriinfo: Discover G1 Eriinfo B2 Cire

7) Uglyfoot: Build G1 Uglyfoot

8) eriinfo: Build G2 Eriinfo

9) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Defender
Build G2 Uglyfoot
Build G3 Uglyfoot
	eriinfo: Sorry I did not see your earlier message, as this is my first time playing online. Good luck to you as well.

10) eriinfo: Build G3 Cire

11) Uglyfoot: Trade G2 Y2 Uglyfoot

12) eriinfo: Trade G2 B2 Eriinfo

13) Uglyfoot: Move Y2 Uglyfoot Defender

14) eriinfo: Build G2 Eriinfo

15) Uglyfoot: Move G2 Defender Cire

16) eriinfo: Trade G1 R1 Cire

17) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Cire
Build G2 Defender
Build G3 Uglyfoot

18) eriinfo: Attack G2 Cire

19) Uglyfoot: Move G1 Defender Cire
Catastrophe Cire G

20) eriinfo: Move G2 Eriinfo Cire

21) Uglyfoot: Build G1 Defender

22) eriinfo: Build G1 Eriinfo

23) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Defender

24) eriinfo: Trade G1 R1 Eriinfo

25) Uglyfoot: Move G3 Defender Cire

26) eriinfo: Build G1 Eriinfo

27) Uglyfoot: Trade G2 R2 Uglyfoot

28) eriinfo: Trade G2 Y2 Cire

29) Uglyfoot: Sacrifice R2 Uglyfoot
Attack Y2 Cire
Attack R1 Cire

30) eriinfo: Trade G1 Y1 Eriinfo

31) Uglyfoot: Build G1 Cire

32) eriinfo: Build R1 Eriinfo

33) Uglyfoot: Trade G1 B1 Cire

34) eriinfo: Discover R1 Eriinfo G2 Rice

35) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Cire
Build G2 Cire
Build G3 Uglyfoot

36) eriinfo: Build R2 Eriinfo

37) Uglyfoot: Trade G3 Y3 Cire

38) eriinfo: Move Y1 Eriinfo Rice

39) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Cire
Build R2 Cire

40) eriinfo: Move R1 Eriinfo Rice

41) Uglyfoot: Move G3 Cire Eriinfo

42) eriinfo: Attack G3 Eriinfo

43) Uglyfoot: Sacrifice Y2 Cire
Move G1 Cire Eriinfo
Move G2 Cire Eriinfo
Catastrophe Eriinfo G

44) eriinfo: Trade B2 G2 Eriinfo

45) Uglyfoot: Move Y3 Cire Eriinfo

46) eriinfo: Build R2 Eriinfo

47) Uglyfoot: Sacrifice R2 Cire
Attack R2 Eriinfo
Attack R2 Eriinfo

48) eriinfo: Move R1 Rice Eriinfo

49) Uglyfoot: Sacrifice R2 Eriinfo
Attack G2 Eriinfo
Attack R1 Eriinfo

	Uglyfoot: Thanks for the game.

	eriinfo: Thank you, I had fun.


6014)
Variants: "Hard time"
Started: 2007.1.20, Ended: 2007.6.13
Participants: jeep (S), eriinfo (N)
Winner: jeep

1) eriinfo: Homeworld Y3 B1 G3

2) jeep: Homeworld Y1 B2 G3
	jeep: Hello.  Good luck.

3) eriinfo: Build G1 Eriinfo

4) jeep: Build G1 Jeep

5) eriinfo: Trade G1 B1 Eriinfo

6) jeep: Trade G1 B1 Jeep

7) eriinfo: Build B2 Eriinfo

8) jeep: Build B2 Jeep

9) eriinfo: Discover B2 Eriinfo G2 Wise

10) jeep: Trade B2 Y2 Jeep
	eriinfo: Sorry I did not see your message earlier, as this is my first time playing online. Good luck to you as well.

11) eriinfo: Build G1 Eriinfo

12) jeep: Discover B1 Jeep Y3 Cowardly

13) eriinfo: Trade G1 R1 Eriinfo

14) jeep: Build Y1 Jeep

15) eriinfo: Trade B2 Y2 Wise

16) jeep: Build G1 Jeep

17) eriinfo: Build Y1 Wise

18) jeep: Discover Y1 Jeep Y3 Lion

19) eriinfo: Build G1 Eriinfo

20) jeep: Trade G1 R1 Jeep

21) eriinfo: Discover Y2 Wise G3 Owl

22) jeep: Build G1 Jeep

23) eriinfo: Build Y2 Wise

24) jeep: Move G1 Jeep Cowardly

25) eriinfo: Move B1 Eriinfo Wise

26) jeep: Build B2 Cowardly

27) eriinfo: Move B1 Wise Owl

28) jeep: Build G1 Jeep

29) eriinfo: Discover G1 Eriinfo B2 Cire

30) jeep: Discover B1 Cowardly G2 Tin

31) eriinfo: Build B3 Owl

32) jeep: Build B3 Tin

33) eriinfo: Build G2 Cire

34) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build B3 Cowardly
Build R1 Jeep

35) eriinfo: Build R2 Eriinfo
	eriinfo: No problem. Get better.

36) jeep: Trade B3 R3 Tin

37) eriinfo: Move R1 Eriinfo Cire

38) jeep: Move G1 Jeep Lion

39) eriinfo: Move B1 Owl Cire

40) jeep: Build B3 Tin

41) eriinfo: Build R2 Cire

42) jeep: Move Y1 Lion Tin

43) eriinfo: Move Y2 Wise Lion

44) jeep: Move R1 Jeep Cowardly

45) eriinfo: Move Y2 Owl Cire

46) jeep: Move G1 Lion Jeep

47) eriinfo: Move G1 Cire Eriinfo

48) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build R2 Tin
Build R3 Jeep

49) eriinfo: Build R3 Eriinfo

50) jeep: Move G3 Jeep Lion

51) eriinfo: Move G2 Cire Owl

52) jeep: Sacrifice R1 Jeep
Attack Y2N Lion

53) eriinfo: Move R2 Cire Owl

54) jeep: Move Y2 Lion Tin

55) eriinfo: Move Y2 Cire Owl

56) jeep: Discover Y1 Tin R1 Baron

57) eriinfo: Move G2 Owl Wise

58) jeep: Sacrifice G3 Lion
Build Y3 Baron
Build G3 Cowardly
Pass

59) eriinfo: Move Y1 Wise Owl

60) jeep: Move B3 Cowardly Wise

61) eriinfo: Move Y1 Owl Cire

62) jeep: Move R1 Cowardly Wise

63) eriinfo: Sacrifice R1 Cire
Attack R1 Wise

64) jeep: Sacrifice R2 Tin
Attack R1N Wise
Attack G2N Wise

65) eriinfo: Move G1 Eriinfo Cire

66) jeep: Sacrifice G3 Cowardly
Build G3 Cowardly
Build R1 Wise
Build R2 Jeep

67) eriinfo: Move R3 Eriinfo Cire

68) jeep: Move Y1 Baron Wise

69) eriinfo: Move R3 Cire Owl

70) jeep: Sacrifice Y3 Baron
Move R1 Wise Owl
Move R1 Wise Owl
Discover G2 Wise Y3 Bank
Catastrophe Owl Red

71) eriinfo: Move G1 Cire Bank

72) jeep: Sacrifice R2 Jeep
Attack G1N Bank
Pass

73) eriinfo: Build R1 Eriinfo

74) jeep: Move G1 Bank Wise

75) eriinfo: Move R1 Eriinfo Wise

76) jeep: Sacrifice G3 Cowardly
Build G3 Cowardly
Build R1 Tin
Build R1 Jeep

77) eriinfo: Attack Y1 Wise

78) jeep: Sacrifice R3 Tin
Attack Y1N Wise
Attack R1N Wise
Pass

79) eriinfo: Move Y2 Owl Cire

80) jeep: Move G3 Cowardly Cire

81) eriinfo: Move Y2 Cire Cowardly
	jeep: Sorry, thought one thing, typed another.

82) jeep: Sacrifice R3 Jeep
Attack Y2N Cowardly
Attack Y1N Cire
Attack B1N Cire

83) eriinfo: Discover R2 Eriinfo R2 Rice

84) jeep: Sacrifice G3 Cire
Build G3 Jeep
Build R2 Tin
Build R3 Wise

	jeep: Thanks for the game.


6114)
Variants: "Hard time"
Started: 2007.1.24, Ended: 2007.2.11
Participants: antihero (S), Personman (N)
Winner: antihero

1) Personman: Homeworld B2 Y3 G3

2) antihero: Homeworld B1 Y2 G3

3) Personman: Build G1 Personman

4) antihero: Build G1 Antihero

5) Personman: Trade G1 Y1 Personman

6) antihero: Build G1 Antihero

7) Personman: Build G1 Personman

8) antihero: Trade G1 Y1 Antihero



6167)
Started: 2007.1.27, Ended: 2007.4.23
Participants: jan (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B1 Y2 G3

2) jan: Homeworld G2 Y3 B3
	Keith: Hello jan.  Welcome to SDG and have a good game.
	jan: Hey Kieth, i am excited to try this. i have played the table top version of homeworlds before. i think im getting how to write orders. thanks jan
	jan: Kieth, Do you know why i am getting the message that there are no G2 or Y3pieces in the stash left?
	Keith: That is a mystery to me.  My order looked like this:

homeworld b1 y2 g3

3) Keith: Build G1 Keith

4) jan: Build B1 Jan
	jan: hey thanks i got it!  is there a way to name your systems? also what does the setting 2/2/8 mean?   

5) Keith: Discover G1 Keith Y3 Midworld
	Keith: Whenever you discover a new system you will get to name it.  For example "discover g1 keith y3 Midworld"

6) jan: Build B1 Jan
	Keith: The 2/2/8 means you start with two days to make a move, each move adds to days to your remaining time, the maximum is 8 days.  That way if you run into an emergency or even take a week off you don't run out of time to move.  Though I won't force a surrender if I know the other player needs extra time.

7) Keith: Build G1 Keith

8) jan: Trade B1 G1 Jan

9) Keith: Trade G1 B1 Keith
	jan: hey Kieth i saw someone posted a homeworlds challenge that says "hard time"  and ladder challenge or something and it didn't have a join game option on the right do you know what this means?

10) jan: Build B2 Jan

11) Keith: Build B2 Keith
	Keith: There is a Homeworlds ladder.  Sort of like an ongoing king of the hill competition Homeworlds style.  GreedyAlgorithm has directly challenged eugman to a match.  Hard time means there would be an automatic forfeit if someone ran out of time to make their move.

12) jan: Discover B2 Jan G1 Gio

13) Keith: Trade B1 Y1 Keith

14) jan: Build G2 Jan

15) Keith: Build G2 Midworld

16) jan: Discover G1 Jan B1 Droo

17) Keith: Build G3 Keith

18) jan: Build G3 Droo

19) Keith: Move B2 Keith Midworld

20) jan: Trade G3 R3 Droo

21) Keith: Sacrifice G3 Keith
Build G3 Keith
Build G3 Midworld
Build Y1 Keith

22) jan: Trade B2 Y2 Gio

23) Keith: Trade G1 R1 Midworld

24) jan: Move B1 Jan Gio

25) Keith: Discover G2 Midworld Y1 Darebase

26) jan: Build R1 Droo

27) Keith: Build R1 Midworld

28) jan:
Build Y2 Gio

29) Keith: Move Y1 Keith Midworld

30) jan: Discover Y2 Gio B3 Fenu

31) Keith: Move R1 Midworld Droo

32) jan: Trade R1 G1 Droo

33) Keith: Sacrifice G3 Keith
Build G3 Keith
Build R1 Droo
Build R2 Droo
Catastrophe Droo Red

34) jan: Build Y3 Gio

35) Keith: Move Y1 Midworld Gio

36) jan: Trade G2 R2 Jan

37) Keith: Sacrifice G2 Darebase
Build Y1 Gio
Build R1 Midworld
Catastrophe Gio Yellow

38) jan: Build G2 Droo

39) Keith: Move G3 Midworld Droo
Catastrophe Droo Green
	jan: that looks a little more reasonable ...
	Keith: The homeworld yellow catastrophe would have been a disadvantage for me but not as much as my being able to put a g3 in your home system backed by an r1.  Now that you have a red backup I better do something about the yellow situation.

40) jan: Build R1 Jan

41) Keith: Move G3 Keith Fenu

42) jan: Move Y2 Fenu Gio

43) Keith: Build G1 Keith

44) jan: Build Y1 Gio

45) Keith: Sacrifice Y1 Keith
Move G3 Fenu Gio

46) jan: Discover Y2 Gio G3 Eden
	jan: well i guess so

47) Keith: Sacrifice R1 Midworld
Attack B1 Gio

48) jan: Sacrifice R1 Jan
Attack B1 Gio

49) Keith: Sacrifice R1 Midworld
Attack B1 Gio

50) jan: Build B1 Jan

51) Keith: Trade G1 R1 Keith

52) jan: Move Y1 Gio Eden

53) Keith: Trade G3 Y3 Gio

54) jan: Trade B3 G3 Jan

55) Keith: Build G1 Keith

56) jan: Build B2 Jan

57) Keith: Move G1 Keith Midworld

58) jan: Sacrifice B1 Jan
Trade Y1 B1 Eden

59) Keith: Build G1 Keith

60) jan: Sacrifice Y2 Eden
Move B1 Eden Keith
Move R2 Jan Gio

61) Keith: Sacrifice R1 Keith
Attack R2 Gio

62) jan: Build B2 Jan

63) Keith: Sacrifice G3 Keith
Build G2 Midworld
Build G2 Midworld
Build G3 Keith

64) jan: Trade B2 R2 Jan

65) Keith: Sacrifice R2 Gio
Attack B1 Keith
Pass

66) jan: Build B2 Jan

67) Keith: Sacrifice G3 Keith
Build G3 Keith
Build B3 Gio
Build B3 Midworld

68) jan: Discover B2 Jan Y1 Elf

69) Keith: Move G1 Midworld Gio

70) jan: Move B2 Elf Midworld

71) Keith: Sacrifice Y3 Gio
Move B3 Gio Jan
Move G1 Gio Jan
Move B1 Gio Jan

72) jan: Attack B3 Jan

73) Keith: Sacrifice G2 Midworld
Build G1 Jan
Build B3 Jan
Catastrophe Jan Green
Catastrophe Jan Blue

74) jan: Discover B2 Midworld G1 Goblin

75) Keith: Trade B3 R3 Midworld

76) jan: Trade B2 Y2 Goblin

77) Keith: Move G3 Keith Jan

78) jan: Build Y1 Goblin

79) Keith: Sacrifice R3 Midworld
Attack R2 Jan
Pass
Pass
	jan: sorry my internet has been down 
	Keith: Glad to see you made it back and that it was not something like your health going down.

	jan: good game
	jan: i will start a new life on the lovely planet of goblin
	Keith: Thank you for the game.  Have you thought about joining the Ladder?
	jan: Im afraid im a poor play by internet player. i find that i am constantly getting sucked up into other aspects of life and keep going over time.

	Keith: Your going overtime was not a problem for me.  Perhaps we will have that SDG face to face gathering some day and you can have at me in real time.


6174)
Variants: "Hard time"
Started: 2007.1.28, Ended: 2007.2.25
Participants: eugman (S), GreedyAlgorithm (N)
Winner: eugman

1) GreedyAlgorithm: Homeworld Y1 B2 G3

2) eugman: Homeworld B3 G2 Y3
	GreedyAlgorithm: Hi. Keith suggested I join the ladder, so here I am. Have fun!
	eugman: Haven't played in a while so I may be rusty at first.


3) GreedyAlgorithm: Build G1 Greedyalgorithm

4) eugman: Build Y1 Eugman

5) GreedyAlgorithm: Build G1 Greedyalgorithm

6) eugman: Discover Y1 Eugman G1 Newireland

7) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Motieprime

8) eugman: Build Y1 Eugman

9) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm
Build G2 Motieprime
Build G2 Greedyalgorithm
Build G3 Greedyalgorithm
	eugman: Talk about last minute decision.

10) eugman: Trade Y3 G3 Eugman

11) GreedyAlgorithm: Trade G2 Y2 Greedyalgorithm

12) eugman: Build Y2 Newireland



6182)
Started: 2007.1.29, Ended: 2007.2.13
Participants: clockwise (S), GreedyAlgorithm (N)
Winner: clockwise

1) GreedyAlgorithm: Homeworld Y1 B2 G3

2) clockwise: Homeworld B3 G1 Y3

3) GreedyAlgorithm: Build G1 Greedyalgorithm

4) clockwise: Build Y1 Clockwise

5) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm

6) clockwise: Build Y1 Clockwise

7) GreedyAlgorithm: Build G1 Greedyalgorithm

8) clockwise: Trade Y3 G3 Clockwise

9) GreedyAlgorithm: Build G1 Greedyalgorithm

10) clockwise: Build G2 Clockwise

11) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Tosystem

12) clockwise: Discover G2 Clockwise Y2 Gyro

13) GreedyAlgorithm: Build G2 Tosystem

14) clockwise: Build Y2 Clockwise

15) GreedyAlgorithm: Move G2 Tosystem Gyro

16) clockwise: Discover G2 Gyro G3 Denial

17) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm
Build G2 Gyro
Build G3 Greedyalgorithm
Build B1 Greedyalgorithm
	clockwise: I should have paid more attention in the opening...

18) clockwise: Sacrifice Y1 Clockwise
Move G2 Denial Greedyalgorithm

19) GreedyAlgorithm: Sacrifice G2 Gyro
Build G2 Tosystem
Build G3 Gyro

20) clockwise: Trade G2 B2 Greedyalgorithm
Catastrophe Greedyalgorithm Blue

21) GreedyAlgorithm: Discover G2 Tosystem B2 Blue

22) clockwise: Discover Y1 Clockwise G2 Hovercraft

23) GreedyAlgorithm: Trade G2 R2 Blue

24) clockwise: Sacrifice G3 Clockwise
Build Y1 Hovercraft
Build Y2 Hovercraft
Build Y3 Clockwise

25) GreedyAlgorithm: Move G3 Gyro Clockwise

26) clockwise: Sacrifice Y3 Clockwise
Move Y1 Hovercraft Greedyalgorithm
Move Y1 Hovercraft Greedyalgorithm
Move Y2 Hovercraft Greedyalgorithm
Catastrophe Greedyalgorithm Yellow
	GreedyAlgorithm: What is correct etiquette at SDG, to resign like chess or play to the end like Warcraft?
	clockwise: I'm not entirely sure, this is only my third game on SDG.  In my game against Zoltar (who has been around awhile) he resigned quite early in the endgame.
	clockwise: My own feeling is that Homeworlds is very unforgiving of mistakes so playing to the end is pretty reasonable.
	clockwise: Thanks for the game, I thought you had me for a while there!
	GreedyAlgorithm: Yeah, I'm not sure how I missed the blue catastrophe. But it is _very_ unforgiving. :)
	GreedyAlgorithm: Good game!



6204)
Started: 2007.1.30, Ended: 2007.2.6
Participants: dsheldon (S), wmreed (N)
Winner: dsheldon

1) wmreed: Homeworld B2 G1 Y3

2) dsheldon: Homeworld B3 R2 G3
	wmreed: Interesting that the north seat is at the bottom.  Or does the game orient itself to me?  Hmm.  This will take some getting used to.  I'm new to SuperDuper, and Homeworlds!  LOL.
	dsheldon: Yes, you are always at the bottom and your pieces always point up.

3) wmreed: Trade Y3 R3 Wmreed

4) dsheldon: Build G1 Dsheldon

5) wmreed: Build R1 Wmreed
	dsheldon: You said you were new to both SDG and Homeworlds, right?  Would you like me to try and teach you some strategy?  I can't guarantee that it will be great; even though I've been playing Homeworlds for a long time, I don't play it very often.

That being said, I don't think your last move (G3->R3) was very good.  Only in very rare situations do you want to do anything but build a second ship on your first regular move.  If you're worried about my red star and are trying to defend yourself, don't be.  Neither of us has the capacity to begin an offensive yet.
	wmreed: Strategy hints will be much appreciated.  I'll remember your suggestion here.

Not really knowing what to do, I thought that I should have had a red to begin with (an error in my opening), and this was a way to get a large red before the game went too much farther.

6) dsheldon: Trade G1 Y1 Dsheldon
	dsheldon: There are several schools of thought on that.  Firstly (and the one I subscribe to, generally) is that red is among the least useful colors as it is only useful once you and your opponent are physically near each other.  At this point neither of us could easily get our ship near each other, hence red is useless in the early game.  All other colors are necessary for sustained growth and, therefore, you want to start with them.

The second school (which I'm trying out here) is that red has great defensive powers as a deterrent.  As I have a red star I will always be able to defend myself in my homeworld.  I also will probably have a large ship in my homeworld at most points in the game, making that defense even stronger.

The third school (and there may be more still) is that a red ship gives you a jump on the attack.  This would probably only be greatly useful if you were able to engineer your homeworld to be closer than normal (say your opponent has a 1-2 world, like yours in this game.  if you make a 3-3 world then they are actually adjacent.  having a red ship in that case could be very advantageous).

At least, that's how I figure it.

7) wmreed: Trade R1 Y1 Wmreed

8) dsheldon: Build G1 Dsheldon

9) wmreed: Discover Y1 Wmreed B3 Andy

10) dsheldon: Discover G1 Dsheldon B1 Lichen
	dsheldon: That was a good change for your last move.  Diversification of your Homeworld is a great way to start.

11) wmreed: Build R1 Wmreed

12) dsheldon: Build G1 Dsheldon

13) wmreed: Trade R1 Y1 Wmreed

14) dsheldon: Discover G1 Dsheldon B1 Tooth

15) wmreed: Build Y2 Wmreed

16) dsheldon: Build G2 Dsheldon
	dsheldon: You're in a pretty bad position here because you don't have any green ships.  Early on, green is key because it's how you get more ships.  There are also no small greens left, so you can't swap your other small ships to get greens that way.  What I strongly recommend you do is build a medium yellow this turn and swap it for a medium green next turn.  Otherwise I will rapidly overcome you in fleet size.
	wmreed: I see.  Thanks!


17) wmreed: Trade Y2 G2 Wmreed

18) dsheldon: Sacrifice G3 Dsheldon
Build G2 Lichen
Build G3 Tooth
Build G3 Dsheldon

19) wmreed: Build G3 Wmreed

20) dsheldon: Sacrifice G3 Dsheldon
Build G3 Dsheldon
Build Y2 Dsheldon
Build Y2 Dsheldon

21) wmreed: Build Y2 Wmreed

22) dsheldon: Sacrifice Y2 Dsheldon
Move G1 Lichen Andy
Move G1 Andy Wmreed
Catastrophe Wmreed G

23) wmreed: Move R3 Wmreed Tooth

24) dsheldon: Sacrifice Y2 Dsheldon
Discover G3 Tooth Y3 Bus
Discover G1 Tooth Y3 Jerome
	wmreed: nice move


25) wmreed: Trade R3 Y3 Tooth
	dsheldon: Be careful now, losing one of the stars in your homeworld changes the shape of the board.  Our homeworlds are now just two moves from each other instead of three.

Also, in case it wasn't already obvious, Catastrophies are the killer move of the game.  Unlike Red actions, there's no chance to fight back.  Catastrophies let you "move and shoot" all in one turn.
	dsheldon: Good move!  Way to go on the aggressive.
	wmreed: yeah, i know.  i was so busy setting up a similar move on you that I wasn't paying attention to how many jumps away you were.


26) dsheldon: Build G1 Lichen

27) wmreed: Trade Y2 G2 Wmreed

28) dsheldon: Move G1 Jerome Wmreed
	dsheldon: My next move will take a while, I have to go pick up my wife at work now.

29) wmreed: Trade Y1 R1 Andy

30) dsheldon: Trade G1 B1 Wmreed

31) wmreed: Sacrifice Y1 Wmreed
Move R1 Andy Wmreed

32) dsheldon: Sacrifice G2 Dsheldon
Build B2 Wmreed
Build B2 Wmreed
Catastrophe Wmreed B

	dsheldon: Good game.  I look forward to playing against you again.
	wmreed: Thank you!



6227)
Started: 2007.1.30, Ended: 2007.2.22
Participants: Preacher (S), NateStraight (N)
Winner: NateStraight

1) NateStraight: Homeworld B3 G2 R3

2) Preacher: Homeworld Y2 G1 B3
	NateStraight: Hey! :)

I'm glad I started with Alien City before trying to play this game. I think I would have been scared away from the site entirely. I can see why they chose a command-line system instead of something simple like a drag-and-drop from the reserve, but it'll probably take me a minute to figure it out. :)

3) NateStraight: Build R1 Natestraight
	Preacher: you get used to it pretty quickly :)

4) Preacher: Build B1 Preacher

5) NateStraight: Trade R1 Y1 Natestraight

6) Preacher: Trade B1 R1 Preacher

7) NateStraight: Discover Y1 Natestraight B1 Blue

8) Preacher: Build R1 Preacher

9) NateStraight: Trade Y1 G1 Blue

10) Preacher: Trade R1 Y1 Preacher

11) NateStraight: Build R1 Natestraight

12) Preacher: Build B1 Preacher

13) NateStraight: Trade R1 Y1 Natestraight

14) Preacher: Trade B1 G1 Preacher

15) NateStraight: Build G2 Blue

16) Preacher: Discover G1 Preacher B3 Sol

17) NateStraight: Trade G2 R2 Blue

18) Preacher: Trade G1 Y1 Sol

19) NateStraight: Build Y2 Natestraight

20) Preacher: Build B1 Preacher

21) NateStraight: Move Y2 Natestraight Blue

22) Preacher: Build R1 Preacher

23) NateStraight: Build Y2 Natestraight

24) Preacher: Discover Y1 Preacher G3 Mars

25) NateStraight: Build Y3 Blue

26) Preacher: Build Y3 Mars

27) NateStraight: Move Y2 Blue Sol

28) Preacher: Move Y1 Mars Preacher

29) NateStraight: Build Y3 Blue

30) Preacher: Move R1 Preacher Mars

31) NateStraight: Move R2 Blue Sol

32) Preacher: Sacrifice Y3 Mars
Move Y1 Sol Blue
Move Y1 Preacher Sol
Move Y1 Sol Blue
Catastrophe Blue Yellow

33) NateStraight: Trade Y2 G2 Sol
	NateStraight: Ahahahaha... that was fun. :p

34) Preacher: Trade B1 Y1 Preacher

35) NateStraight: Move Y1 Natestraight Blue

36) Preacher: Build B1 Preacher

37) NateStraight: Build R1 Sol

38) Preacher: Build R2 Preacher

39) NateStraight: Trade R2 Y2 Sol

40) Preacher: Build R2 Mars

41) NateStraight: Build G1 Sol

42) Preacher: Move Y1 Preacher Mars

43) NateStraight: Trade G2 B2 Sol

44) Preacher: Move R1 Mars Blue

45) NateStraight: Sacrifice Y1 Blue
Move G1 Blue Sol

46) Preacher: Build R2 Mars

47) NateStraight: Build R3 Sol

48) Preacher: Trade B3 Y3 Preacher

49) NateStraight: Sacrifice Y2 Sol
Move R1 Sol Preacher
Move R3 Sol Preacher
Catastrophe Preacher Red

50) Preacher: Move R2 Mars Blue

51) NateStraight: Trade B2 R2 Sol

52) Preacher: Build Y1 Mars

53) NateStraight: Build G2 Sol

54) Preacher: Trade R2 G2 Blue

55) NateStraight: Trade G2 Y2 Sol

56) Preacher: Build G2 Blue

57) NateStraight: Build Y1 Sol

58) Preacher: Trade G2 R2 Blue

59) NateStraight: Sacrifice Y2 Natestraight
Move Y1 Sol Preacher
Move Y2 Sol Preacher
Catastrophe Preacher Yellow



6258)
Started: 2007.2.1, Ended: 2007.2.28
Participants: jbj77 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B2 R1 G3

2) jbj77: Homeworld R3 B1 G3

3) TwoShort: Build G1 Twoshort

4) jbj77: Build G1 Jbj77

5) TwoShort: Trade G1 Y1 Twoshort

6) jbj77: Trade G1 Y1 Jbj77

7) TwoShort: Build G1 Twoshort

8) jbj77: Build G1 Jbj77

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) jbj77: Discover G1 Jbj77 Y2 Alpha

11) TwoShort: Build Y1 Twoshort

12) jbj77: Build Y2 Jbj77
	TwoShort: So, looking at your game history, I notice that in your first game you beat Zoltar, who I know to be  a pretty good player.  May I conclude you've played a bit of "in person" Homeworlds before?
	jbj77: I've played four in-person games.  I didn't think I had any chance against Zoltar...maybe just beginner's luck?!

13) TwoShort: Discover Y1 Twoshort B3 Bluestar

14) jbj77: Discover Y1 Jbj77 B2 Beta

15) TwoShort: Build G1 Twoshort

16) jbj77: Trade Y1 R1 Beta

17) TwoShort: Build Y1 Twoshort

18) jbj77: Move G1 Alpha Yolonda

19) TwoShort: Discover G1 Yolonda Y2 Yellonia

20) jbj77: Build G2 Jbj77

21) TwoShort: Move Y1 Twoshort Yolonda

22) jbj77: Sacrifice R1 Beta
Attack Y1 Yolonda

23) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y3 Bluestar
Build Y3 Twoshort

24) jbj77: Sacrifice Y2 Jbj77
Move Y1 Yolonda Twoshort
Move Y1 Twoshort Bluestar
Catastrophe Bluestar Yellow

25) TwoShort: Build G2 Yellonia

26) jbj77: Trade G2 Y2 Jbj77

27) TwoShort: Build G2 Twoshort
	jbj77: I hate to have to do this...
	TwoShort: I was hoping you'd hate to have to do it so much that you wouldn't...

28) jbj77: Build G2 Yolonda

29) TwoShort: Trade G2 R2 Twoshort

30) jbj77: Build Y1 Jbj77

31) TwoShort: Move R2 Twoshort Yolonda

32) jbj77: Discover G2 Yolonda B2 Beta

33) TwoShort: Trade Y3 G3 Twoshort

34) jbj77: Sacrifice G3 Jbj77
Build G2 Beta
Build G3 Beta
Build G3 Yolonda
	jbj77: I seem to have fallen behind.

35) TwoShort: Move G1 Yellonia Yolonda

36) jbj77: Move G3 Yolonda Twoshort

37) TwoShort: Sacrifice R2 Yolonda
Attack G1S Yolonda
Attack G3S Twoshort

38) jbj77: Sacrifice Y2 Jbj77
Move G2 Beta Yolonda
Move G2 Yolonda Twoshort
Catastrophe Twoshort Green

39) TwoShort: Move G2 Yellonia Jbj77

40) jbj77: Sacrifice Y1 Jbj77
Move G3 Beta Jbj77

41) TwoShort: Build G1 Jbj77

42) jbj77: Trade G3 Y3 Jbj77

43) TwoShort: Build G2 Jbj77

44) jbj77: Build G3 Beta

45) TwoShort: Build G3 Yolonda

46) jbj77: Trade G3 Y3 Beta

47) TwoShort: Move G1 Yolonda Twoshort

48) jbj77: Build G3 Beta

49) TwoShort: Sacrifice G3 Yolonda
Build G3 Twoshort
Build G3 Yolonda
Build Y1 Twoshort

50) jbj77: Trade G2 R2 Beta

51) TwoShort: Trade G1 R1 Twoshort

52) jbj77: Attack G2 Jbj77

53) TwoShort: Sacrifice G3 Yolonda
Build G1 Jbj77
Build G2 Yolonda
Build G3 Twoshort
Catastrophe Jbj77 Green

54) jbj77: Build G1 Beta

55) TwoShort: Discover G1 Yolonda B2 Banzai

56) jbj77: Discover G3 Beta B3 Gamma

57) TwoShort: Trade Y1 B1 Twoshort

58) jbj77: Build Y1 Beta

59) TwoShort: Trade G1 B1 Banzai

60) jbj77: Trade Y3 B3 Beta

61) TwoShort: Sacrifice G3 Twoshort
Build B3 Banzai
Build Y1 Twoshort
Build Y2 Twoshort

62) jbj77: Discover B3 Beta Y3 Delta

63) TwoShort: Discover Y1 Twoshort G3 Grogar

64) jbj77: Sacrifice G3 Gamma
Build B3 Delta
Build Y2 Jbj77
Build Y2 Beta

65) TwoShort: Sacrifice Y2 Twoshort
Move B1 Twoshort Delta
Move B1 Banzai Delta
Catastrophe Delta Blue

66) jbj77: Trade Y2 G2 Jbj77

67) TwoShort: Build Y2 Grogar

68) jbj77: Discover G1 Beta Y3 Epsilon

69) TwoShort: Move Y1 Grogar Banzai

70) jbj77: Move Y1 Beta Yolonda

71) TwoShort: Trade B3 R3 Banzai

72) jbj77: Build Y2 Jbj77

73) TwoShort: Move R3 Banzai Epsilon

74) jbj77: Move G1 Epsilon Beta

75) TwoShort: Sacrifice R1 Twoshort
Attack Y1S Yolonda

76) jbj77: Move R2 Beta Yolonda

77) TwoShort: Move Y1 Yolonda Beta

78) jbj77: Trade Y2 R2 Jbj77

79) TwoShort: Move R3 Epsilon Beta

80) jbj77: Attack G2 Yolonda
	jbj77: I knew I was dead meat when I made that blunder with the blues.

81) TwoShort: Attack Y2S Beta

	jbj77: There is no need to prolong my misery.
Great game.  Thanks a ton.


6256)
Started: 2007.2.1, Ended: 2007.2.8
Participants: jbj77 (S), morganfitzp (N)
Winner: morganfitzp

1) morganfitzp: Homeworld G3 Y1 B3

2) jbj77: Homeworld B2 R1 G3

3) morganfitzp: Build B1 Morganfitzp

4) jbj77: Build G1 Jbj77

5) morganfitzp: Discover B1 Morganfitzp G2 Sourdough

6) jbj77: Trade G1 Y1 Jbj77

7) morganfitzp: Build B1 Morganfitzp

8) jbj77: Build Y1 Jbj77

9) morganfitzp: Trade B3 G3 Morganfitzp

10) jbj77: Discover Y1 Jbj77 B3 Alpha

11) morganfitzp: Build B1 Morganfitzp

12) jbj77: Trade G3 B3 Jbj77

13) morganfitzp: Sacrifice G3 Morganfitzp
Build B2 Sourdough
Build B2 Sourdough
Build B3 Morganfitzp

14) jbj77: Trade Y1 G1 Jbj77
	jbj77: Ouch!

15) morganfitzp: Trade B1 Y1 Sourdough

16) jbj77: Build G1 Jbj77

17) morganfitzp: Build Y2 Sourdough

18) jbj77: Sacrifice G1 Jbj77
Build Y2 Alpha
	jbj77: I think I'm toast.
	morganfitzp: ...Toast is better than stale bread.

19) morganfitzp: Discover B2 Sourdough G3 Kvass

20) jbj77: Discover Y1 Alpha G2 Beta

21) morganfitzp: Trade B3 G3 Morganfitzp

22) jbj77: Build Y2 Beta

23) morganfitzp: Build B1 Kvass

24) jbj77: Trade B3 R3 Jbj77

25) morganfitzp: Trade B2 R2 Kvass
	jbj77: You seem to like blue.

26) jbj77: Sacrifice G1 Jbj77
Build Y3 Alpha

27) morganfitzp: Sacrifice Y2 Sourdough
Move B1 Kvass Jbj77
Move R2 Kvass Jbj77
	morganfitzp: Yes. Blue feels very calm and peaceful. Mix it with yellow, and you get green. But you don't have to mix it with anything in this game to make it green, yellow, or even red.

28) jbj77: Sacrifice Y2 Beta
Move Y3 Alpha Jbj77
Move R3 Jbj77 Alpha
	jbj77: Normally I would agree that blue is very peaceful, but in this game it has made me uneasy.  Red seems very threatening right now too.  Yellow is looking a bit better to me.

29) morganfitzp: Sacrifice G3 Morganfitzp
Build R1 Jbj77
Build R1 Jbj77
Build B2 Jbj77
Catastrophe Jbj77 Red

30) jbj77: Sacrifice R3 Alpha
Attack B2 Jbj77
Attack B1 Jbj77
Pass
	jbj77: I almost made a big blunder there.  I didn't see this coming...things are not looking good for South.

31) morganfitzp: Move B1 Morganfitzp Jbj77
Catastrophe Jbj77 Blue

	morganfitzp: Now your people have been set free!


6259)
Variants: "Hard time"
Started: 2007.2.1, Ended: 2007.3.18
Participants: Kermit (S), jbj77 (N)
Winner: jbj77

1) jbj77: Homeworld B2 G3 Y3

2) Kermit: Homeworld G1 B3 Y3

3) jbj77: Build Y1 Jbj77

4) Kermit: Build Y1 Kermit

5) jbj77: Trade Y1 R1 Jbj77

6) Kermit: Discover Y1 Kermit B2 Ipaq

7) jbj77: Build R1 Jbj77

8) Kermit: T Y1 G1 Ipaq

9) jbj77: Trade R1 G1 Jbj77

10) Kermit: Build G2 Ipaq

11) jbj77: Discover G1 Jbj77 Y1 Alpha

12) Kermit: Build Y1 Kermit

13) jbj77: Build G2 Alpha

14) Kermit: Trade Y1 B1 Kermit

15) jbj77: Build G2 Alpha

16) Kermit: Trade G1 Y1 Ipaq

17) jbj77: Discover G1 Alpha B2 Beta

18) Kermit: Build B1 Kermit

19) jbj77: Discover G2 Alpha Y2 Gamma

20) Kermit: Trade B1 R1 Kermit

21) jbj77: Trade G1 B1 Beta

22) Kermit: Build G1 Ipaq

23) jbj77: Build G1 Alpha

24) Kermit: Discover G1 Ipaq B3 Visor

25) jbj77: Discover G1 Alpha B3 Delta

26) Kermit: Build G3 Visor

27) jbj77: Build G3 Alpha

28) Kermit: Trade G2 Y2 Ipaq

29) jbj77: Move G2 Alpha Beta

30) Kermit: Sacrifice Y1 Ipaq
Move G1 Visor Alpha

31) jbj77: Discover G3 Alpha Y3 Epsilon

32) Kermit: Build G2 Alpha

33) jbj77: Trade G2 Y2 Beta

34) Kermit: Sacrifice G2 Alpha
Build R1 Kermit
Build R2 Kermit

35) jbj77: Discover B1 Beta R3 Phi

36) Kermit: Build Y1 Kermit

37) jbj77: Build R2 Jbj77

38) Kermit: Build G2 Alpha

39) jbj77: Build G2 Gamma

40) Kermit: Move R2 Kermit Ipaq

41) jbj77: Discover R2 Jbj77 Y1 Zeta

42) Kermit: Sacrifice Y2 Ipaq
Move G2 Alpha Gamma
Move G1 Alpha Gamma
Catastrophe Gamma Green

43) jbj77: Sacrifice G3 Epsilon
Build R2 Jbj77
Build R3 Jbj77
Build R3 Zeta
	Kermit: a mild reset.  :{)}
	jbj77: Yah, I was hoping you weren't going to do that.

44) Kermit: Sacrifice Y1 Kermit
Move G3 Visor Ipaq

45) jbj77: Discover R3 Jbj77 B1 Theta

46) Kermit: Build Y1 Kermit

47) jbj77: Sacrifice G1 Delta
Build B3 Phi

48) Kermit: Discover Y1 Kermit G2 Snark

49) jbj77: Trade B3 G3 Phi

50) Kermit: Move R1 Kermit Snark

51) jbj77: Build B3 Phi

52) Kermit: Discover B1 Kermit G2 Weasel

53) jbj77: Move R3 Zeta Weasel

54) Kermit: Sacrifice Y1 Snark
Discover B1 Weasel G1 Xerxes

55) jbj77: Move Y2 Beta Xerxes

56) Kermit: Build B2 Xerxes

57) jbj77: Sacrifice R2 Jbj77
Attack B2 Xerxes
Attack B1 Xerxes



6269)
Started: 2007.2.2, Ended: 2007.2.12
Participants: eriinfo (S), jbj77 (N)
Winner: jbj77

1) jbj77: Homeworld B1 G2 R3
	eriinfo: Hey.

2) eriinfo: Homeworld Y3 B1 G3

3) jbj77: Build R1 Jbj77

4) eriinfo: Build G1 Eriinfo
	jbj77: Oh man, bet you weren't expecting that move!

5) jbj77: Trade R3 Y3 Jbj77

6) eriinfo: Trade G1 R1 Eriinfo

7) jbj77: Build Y1 Jbj77
	eriinfo: Red ships are comin' out, yo'

8) eriinfo: Build G1 Eriinfo

9) jbj77: Trade Y1 G1 Jbj77

10) eriinfo: Trade G1 Y1 Eriinfo

11) jbj77: Build Y1 Jbj77

12) eriinfo: Build G1 Eriinfo

13) jbj77: Trade Y1 B1 Jbj77

14) eriinfo: Trade G3 B3 Eriinfo

15) jbj77: Build B2 Jbj77

16) eriinfo: Build Y1 Eriinfo

17) jbj77: Discover B1 Jbj77 G3 Alpha

18) eriinfo: Discover Y1 Eriinfo B2 Cire2

19) jbj77: Build B2 Alpha

20) eriinfo: Trade B3 G3 Eriinfo

21) jbj77: Build B3 Alpha

22) eriinfo: Build R1 Eriinfo

23) jbj77: Trade B2 Y2 Alpha

24) eriinfo: Build R2 Eriinfo

25) jbj77: Build R2 Jbj77

26) eriinfo: Move R2 Eriinfo Cire2

27) jbj77: Move R1 Jbj77 Alpha

28) eriinfo: Move G1 Eriinfo Cire2

29) jbj77: Trade B3 G3 Alpha

30) eriinfo: Move R1 Eriinfo Cire2

31) jbj77: Move G3 Alpha Cire2

32) eriinfo: Build G1 Cire2

33) jbj77: Sacrifice R2 Jbj77
Attack R2 Cire2
Attack R1 Cire2

34) eriinfo: Build R2 Eriinfo

35) jbj77: Sacrifice Y3 Jbj77
Move G3 Cire2 Eriinfo
Move R1 Cire2 Eriinfo
Move R2 Cire2 Eriinfo
Catastrophe Eriinfo Red

36) eriinfo: Build G2 Eriinfo

37) jbj77: Trade G3 R3 Eriinfo

38) eriinfo: Sacrifice G3 Eriinfo
Build G2 Eriinfo
Build G3 Cire2
Build Y1 Cire2

39) jbj77: Attack G2 Eriinfo

40) eriinfo: Sacrifice G3 Cire2
Build G3 Cire2
Build G3 Eriinfo
Build Y2 Eriinfo

41) jbj77: Attack G3 Eriinfo

42) eriinfo: Move G1 Cire2 Eriinfo
Catastrophe Eriinfo G

43) jbj77: Attack Y2 Eriinfo

44) eriinfo: Move G3 Cire2 Eriinfo

45) jbj77: Attack G3 Eriinfo

46) eriinfo: Move G1 Cire2 Eriinfo

47) jbj77: Sacrifice R3 Eriinfo
Attack G1 Eriinfo
Attack Y1 Eriinfo
Pass

	jbj77: Thanks for the game.  It was fun.
	eriinfo: Thank you. I had a good time.


6284)
Started: 2007.2.2, Ended: 2007.2.10
Participants: jan (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B1 R2 G3

2) jan: Homeworld G1 B2 Y3
	TwoShort: Howdy...


3) TwoShort: Build G1 Twoshort
	jan: Hi, nice to be playing with you. how did you come up with the name two short , are there two of you? 

4) jan: Build Y1 Jan
	TwoShort: Sadly, there's only one of me.  There are *supposed* to be three of me, but currently I'm two short.

5) TwoShort: Trade G1 Y1 Twoshort

6) jan: Trade Y1 G1 Jan
	TwoShort: Seriously though, TwoShort doesn't actually mean anything.  Many years ago I signed up for an account somewhere that would only allow a 6 charachter username, and none of my ususal handles fit.  In frustration, I came up with "2Short", as in 6 letters was too short, and eventually I decided I liked the sound of it.  Then when I ran into places (like here) that wouldn't let you start with a digit, I decied to spell out the 2 just to stay cryptic.  At at this point TwoShort has been my informal online persona for years, so I'm kind of attached to it, even thought the origin is sort of silly.
	jan: Thats great! I love that story. i had a similar experience trying to get my first email account. i tried many different versions of my name Jan Burger but to my suprise they were all taken. the closest i could get was jan burger 116 or something. my sweety sugested janthehero and it wasn't taken so i said i guess that's it.

7) TwoShort: Build Y1 Twoshort

8) jan: Build G1 Jan

9) TwoShort: Build G2 Twoshort
	TwoShort: Eek.  I just realized we're in a small universe.  Was that intentional?

10) jan: Discover G1 Jan Y3 Wolo
	jan: i noticed that to. but no it wasn't concious on my part.

11) TwoShort: Move G2 Twoshort Wolo

12) jan: Build G2 Wolo

13) TwoShort: Move G2 Wolo Jan

14) jan: Discover G1 Jan B3 Zed

15) TwoShort: Build G2 Jan

16) jan: Build G3 Zed

17) TwoShort: Trade G2 B2 Jan

18) jan: Sacrifice G3 Zed
Build G2 Zed
Build G3 Wolo
Build G3 Zed
	jan: Whoops. i made a mistake. i learned to play homeworlds from a fellow who plays with his kids in school. some of the rules he simplifys for them. there was one that we always played with that for some reason i didn't question, and check the rulebook. i thought you couldn't use another players homeworld powers. i guess me and my friend just played that way. 

19) TwoShort: Sacrifice Y1 Twoshort
Move G2 Jan Zed
Catastrophe Zed Green

20) jan: Trade Y3 R3 Jan

21) TwoShort: Build B1 Jan

22) jan: Move G2 Wolo Jan

23) TwoShort: Build B1 Jan
Catastrophe Jan Blue

24) jan: Discover G3 Wolo B2 New Zed

25) TwoShort: Build G1 Twoshort

26) jan: Build G2 New
	jan: You sent me back to the stone age!

27) TwoShort: Discover G1 Twoshort Y3 Yoyodyne

28) jan: Sacrifice G3 New
Build G2 New
Build G3 Wolo
Build R1 Jan

29) TwoShort: Build G3 Yoyodyne

30) jan: Trade G2 Y2 New

31) TwoShort: Move G1 Yoyodyne Jan

32) jan: Sacrifice G2 Jan
Build G2 New
Build G2 New
	TwoShort: gotcha. :)

33) TwoShort: Sacrifice G3 Twoshort
Build G3 Jan
Pass
Pass

34) jan: Sacrifice Y2 New
Move G3 Wolo Twoshort
Move G1 Wolo Twoshort

35) TwoShort: Move G3 Yoyodyne Jan
Catastrophe Jan Green
	jan: wow looks like you got me. one last move.... that was a strange game being so close you did a great job keeping me guessing.

	TwoShort: Yeah, usually my problem is being too agressive, but the small universe really rewards that.  Thanks for the game!


6308)
Variants: "Hard time"
Started: 2007.2.4, Ended: 2007.2.20
Participants: Uglyfoot (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) Uglyfoot: Homeworld B3 Y1 G3
	TwoShort: Howdy...

3) TwoShort: Build G1 Twoshort

4) Uglyfoot: Build G1 Uglyfoot

5) TwoShort: Trade G1 Y1 Twoshort

6) Uglyfoot: Discover G1 Uglyfoot B2 Bflat

7) TwoShort: Build G1 Twoshort

8) Uglyfoot: Build G1 Uglyfoot

9) TwoShort: Build G2 Twoshort

10) Uglyfoot: Build G2 Bflat

11) TwoShort: Trade G2 Y2 Twoshort

12) Uglyfoot: Trade G2 Y2 Bflat

13) TwoShort: Discover Y1 Twoshort G3 Grogar

14) Uglyfoot: Build G2 Bflat

15) TwoShort: Discover G1 Twoshort Y3 Yolonda

16) Uglyfoot: Trade G1 R1 Uglyfoot

17) TwoShort: Build G1 Twoshort

18) Uglyfoot: Build G2 Uglyfoot

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build Y1 Grogar
Build G3 Twoshort

20) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build Y2 Bflat
Build R1 Uglyfoot

21) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y3 Twoshort
Build Y3 Grogar

22) Uglyfoot: Move Y2 Bflat Grogar
Catastrophe Grogar Y

23) TwoShort: Trade Y2 R2 Twoshort

24) Uglyfoot: Trade G2 R2 Bflat

25) TwoShort: Discover G1 Yolonda Y2 Yellonia

26) Uglyfoot: Discover R2 Bflat Y3 Gminor

27) TwoShort: Sacrifice G3 Twoshort
Build G2 Yellonia
Build G3 Yolonda
Build G3 Twoshort

28) Uglyfoot: Move R1 Uglyfoot Yellonia

29) TwoShort: Sacrifice Y3 Twoshort
Move G2 Yellonia Uglyfoot
Move G1 Yellonia Uglyfoot
Move G3 Yolonda Yellonia
Catastrophe Uglyfoot Green

30) Uglyfoot: Move G1 Bflat Uglyfoot

31) TwoShort: Move G3 Yellonia Uglyfoot

32) Uglyfoot: Build G1 Uglyfoot

33) TwoShort: Sacrifice G3 Twoshort
Build G2 Uglyfoot
Build G2 Yolonda
Build G3 Twoshort
	Uglyfoot: I'll keep struggling even though it looks like I'm finished.

34) Uglyfoot: Build R2 Uglyfoot
Catastrophe Uglyfoot G
	TwoShort: Hmm... It sure looks like you're finished, but I can't come up with bullet proof way to finish you off.

35) TwoShort: Trade G1 Y1 Twoshort

36) Uglyfoot: Trade R2 G2 Uglyfoot

37) TwoShort: Discover R2 Twoshort Y3 Yak

38) Uglyfoot: Build R2 Uglyfoot

39) TwoShort: Sacrifice G2 Yolonda
Build R3 Yak
Build Y1 Twoshort

40) Uglyfoot: Build R3 Uglyfoot

41) TwoShort: Discover Y1 Twoshort R3 Rosie

42) Uglyfoot: Trade R3 G3 Uglyfoot

43) TwoShort: Sacrifice G2 Yolonda
Build Y2 Twoshort
Build Y3 Rosie

44) Uglyfoot: Sacrifice G2 Uglyfoot
Build R3 Gminor
Build G1 Uglyfoot

45) TwoShort: Move R3 Yak Bflat

46) Uglyfoot: Move Y2 Bflat Gminor

47) TwoShort: Trade Y2 G2 Twoshort

48) Uglyfoot: Trade R2 B2 Uglyfoot

49) TwoShort: Build Y2 Twoshort

50) Uglyfoot: Sacrifice B2 Uglyfoot
Trade R2 G2 Gminor
Trade R3 B3 Gminor

51) TwoShort: Discover Y1 Rosie G2 Gloria

52) Uglyfoot: Build G1 Gminor

53) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Twoshort Gminor
Move Y1 Gloria Gminor
Catastrophe Gminor Yellow

54) Uglyfoot: Move G1 Uglyfoot Yellonia

55) TwoShort: Move R2 Yak Yellonia
	Uglyfoot: So your saying I had too much stacked in gminor?  ;>

56) Uglyfoot: Build R2 Yellonia
	TwoShort: Something like that :)  You were way over the effective limit of "what it will cost me to blow it up."

57) TwoShort: Sacrifice G2 Twoshort
Build R2 Yellonia
Build R3 Bflat
Catastrophe Yellonia Red

58) Uglyfoot: Build R1 Uglyfoot

59) TwoShort: Trade R3 G3 Bflat
	Uglyfoot: nicely played

60) Uglyfoot: Move R1 Uglyfoot Yellonia

61) TwoShort: Build R2 Bflat

62) Uglyfoot: Build R2 Yellonia

63) TwoShort: Move Y3 Rosie Yellonia

64) Uglyfoot: Build R2 Uglyfoot

65) TwoShort: Sacrifice R3 Bflat
Attack R2S Yellonia
Attack R1S Yellonia
Attack G1S Yellonia

66) Uglyfoot: Trade R2 Y2 Uglyfoot

67) TwoShort: Build G1 Twoshort

68) Uglyfoot: Build R2 Uglyfoot

69) TwoShort: Sacrifice Y3 Yellonia
Move R1 Yellonia Uglyfoot
Move R2 Bflat Uglyfoot
Move G3 Bflat Uglyfoot
Catastrophe Uglyfoot Red

70) Uglyfoot: Build G1 Uglyfoot

71) TwoShort: Sacrifice R2 Yellonia
Attack G3S Uglyfoot
Attack Y2S Uglyfoot
	TwoShort: Thanks for the game...  I thought I had you early on there, but it turned into quite an epic!

72) Uglyfoot: Build G2 Uglyfoot

73) TwoShort: Pass
Catastrophe Uglyfoot Green



6318)
Started: 2007.2.4, Ended: 2007.3.28
Participants: jbj77 (S), larry (N)
Winner: jbj77

1) larry: Homeworld G3 B1 R3
	jbj77: Is this my long lost Texan brother Larry?

2) jbj77: Homeworld Y1 B2 G3
	larry: Yep, Larry from Texas.  Hey, I don't remember any strategies, and despite our three day playing period, I don't spend a lot of time thinking about it.  So, tell me if I've done something obviously retarded.
	jbj77: OK.  I just realized I've gotten myself into 5 simultaneous games, so I won't have much time to think either.

3) larry: Build R1 Larry

4) jbj77: Build G1 Jbj77

5) larry: Trade R1 Y1 Larry

6) jbj77: Trade G1 R1 Jbj77
	larry: Sorry Bro, I went over on my time.  Thanks for not forcing my surrender.

7) larry: Build R1 Larry
	jbj77: No problem.

8) jbj77: Build G1 Jbj77
	larry: All right, looks like I was late again, but I did try to get on yesterday and the website wouldn't let me.

9) larry: Trade R3 G3 Larry
	jbj77: That's OK.  I'm stuck in Baltimore right now.
	larry: I didn't know you were going to Baltimore, are you doing the polygraph for NSA or something?  Did you get snowed in?

10) jbj77: Build G1 Jbj77
	larry: By the way, I don't get how the timing works.  I guess that's why I always run out of time.
	jbj77: Yah, I got snowed in.

11) larry: Discover G3 Larry Y2 Clubron

12) jbj77: Trade G3 Y3 Jbj77
	jbj77: Wow, that's an unorthodox move.  Almost like moving your queen out early in chess.  Of course I have no way to  threaten your unprotected homeworld, so it's probably not a bad move.

13) larry: Build Y1 Larry

14) jbj77: Build Y2 Jbj77
	larry: Do you like the name Clubron?
	jbj77: Umm.  I don't think I get it.

15) larry: Build Y2 Larry

16) jbj77: Sacrifice Y2 Jbj77
Discover G1 Jbj77 Y3 Alpha
Discover G1 Jbj77 Y3 Beta
	larry: There's nothing to get-I just thought it was a funny name.
	jbj77: Oh, well it is a good name.

17) larry: Build G1 Clubron

18) jbj77: Build G2 Beta
	larry: I finally went.

19) larry: Move R1 Larry Clubron

20) jbj77: Sacrifice G2 Beta
Build Y2 Jbj77
Build G2 Beta

21) larry: Build R1 Clubron

22) jbj77: Sacrifice Y3 Jbj77
Move Y2 Jbj77 Alpha
Move Y2 Alpha Clubron
Move Y2 Clubron Larry
Catastrophe Larry Yellow



6271)
Started: 2007.2.5, Ended: 2007.3.26
Participants: Uglyfoot (S), zoltar (W), morganfitzp (N), jan (E)
Winner: jan

1) morganfitzp: Homeworld G2 Y1 B3

2) jan: Homeworld B3 Y2 G3
	morganfitzp: Good morning!

3) Uglyfoot: Homeworld B3 Y1 G3
	jan: hey folks .   Zoltar is that movie on the website "zoltar from zoron" one that you made or one that you are a fan of ? it looks amazing!

4) zoltar: Homeworld R2 B1 G3

5) morganfitzp: Build B1 Morganfitzp
	zoltar: No, I've never seen it, much less had anything to do with making it, but it looked cool to me as well, so I chose it as my alias here for fun.

6) jan: Build G1 Jan

7) Uglyfoot: Build G1 Uglyfoot
	Uglyfoot: Greetings everyone!

8) zoltar: Build G1 Zoltar

9) morganfitzp: Build B1 Morganfitzp

10) jan: Build G1 Jan

11) Uglyfoot: Build G1 Uglyfoot

12) zoltar: Build G2 Zoltar
	zoltar: b g2 zoltar

13) morganfitzp: Trade B3 G3 Morganfitzp
	zoltar: Let's see, build one more ship each, and we could all blow up together!

14) jan: Discover G1 Jan B1 First World
	morganfitzp: (i just guffawed at zoltar's message)

15) Uglyfoot: Discover G1 Uglyfoot B2 Nyse

16) zoltar: Trade G1 Y1 Zoltar

17) morganfitzp: Build B1 Morganfitzp

18) jan: Build G1 First

19) Uglyfoot: Build G2 Nyse

20) zoltar: Discover G2 Zoltar Y3 Yellowstone

21) morganfitzp: Discover B1 Morganfitzp G3 Brasil

22) jan: Trade G1 Y1 First

23) Uglyfoot: Trade G1 R1 Nyse

24) zoltar: Build G1 Zoltar

25) morganfitzp: Build B2 Brasil

26) jan: Build G1 Jan

27) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Nyse
Build G2 Uglyfoot
Build G3 Uglyfoot

28) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar
Build Y2 Zoltar

29) morganfitzp: Trade B1 R1 Morganfitzp

30) jan: Trade G1 R1 Jan

31) Uglyfoot: Trade G2 Y2 Uglyfoot

32) zoltar: Discover Y2 Zoltar B3 Blueridge

33) morganfitzp: Trade B2 Y2 Brasil

34) jan: Build Y2 First

35) Uglyfoot: Build Y3 Uglyfoot

36) zoltar: Sacrifice G1 Zoltar
Build Y3 Blueridge

37) morganfitzp: Sacrifice G3 Morganfitzp
Build Y3 Brasil
Build B1 Morganfitzp
Build B2 Brasil

38) jan: Discover Y1 First G3 Triclops

39) Uglyfoot: Discover Y3 Uglyfoot R2 Guardian

40) zoltar: Trade Y1 G1 Zoltar

41) morganfitzp: Move Y3 Brasil Nyse

42) jan: Build R1 Jan

43) Uglyfoot: Sacrifice Y2 Uglyfoot
Move G2 Nyse Yellowstone
Move G2 Yellowstone Morganfitzp

44) zoltar: Trade Y2 B2 Blueridge

45) morganfitzp: Sacrifice R1 Morganfitzp
Attack R1S Nyse

46) jan: Sacrifice G3 Jan
Build G1 First
Build G2 First
Build G3 Jan

47) Uglyfoot: Trade G1 R1 Uglyfoot

48) zoltar: Discover B2 Blueridge G1 Greenbelt

49) morganfitzp: Attack G2S Nyse

50) jan: Trade G2 B2 First

51) Uglyfoot: Build G2 Uglyfoot

52) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Blueridge
Build Y2 Zoltar

53) morganfitzp: Sacrifice G2 Nyse
Build Y2 Nyse
Build Y3 Brasil

54) jan: Move B2 First Triclops

55) Uglyfoot: Trade G2 R2 Uglyfoot

56) zoltar: Discover Y2 Zoltar B3 Bluemoon

57) morganfitzp: Sacrifice Y3 Nyse
Move Y3 Brasil Morganfitzp
Move B1 Brasil Zoltar
Move B2 Brasil Zoltar

58) jan: Build Y3 Triclops

59) Uglyfoot: Build G2 Morganfitzp

60) zoltar: Sacrifice Y3 Blueridge
Move Y1 Blueridge Morganfitzp
Move Y2 Bluemoon Morganfitzp
Move G2 Yellowstone Morganfitzp
Catastrophe Morganfitzp Y
Catastrophe Morganfitzp G

61) jan: Move B2 Triclops Zoltar
Catastrophe Zoltar Blue

62) Uglyfoot: Build R1 Uglyfoot

63) zoltar: Trade B2 R2 Greenbelt

64) jan: Move R1 Jan First
	zoltar: Hey wait a second -- can't let morgan attack my homeworld like that without repercussions! 

65) Uglyfoot: Sacrifice Y3 Guardian
Move R1 Uglyfoot Zoltar
Move R1 Uglyfoot Zoltar
Move R2 Uglyfoot Zoltar
Catastrophe Zoltar R

66) jan: Sacrifice Y2 First
Move G1 First Nyse
Move G1 First Nyse
	jan: hey wait a second -- you can't destroy Morgan without reprecussions!

67) Uglyfoot: Build G1 Uglyfoot
	zoltar: Yeah, I'm dead too, I see. Oh well.


68) jan: Sacrifice Y3 Triclops
Move G1 Nyse Uglyfoot
Move G1 Nyse Uglyfoot
Pass
Catastrophe Uglyfoot Green
	zoltar: But I avoided last place in a four player game for the first time ever, so I'm happy to die now.
	morganfitzp: Yeah, looks like those sacrifices may have cost more than just my game...Enjoy the rest—I'm with you all in spirit!
	morganfitzp: Question: What happens to those pieces in the nyse system? Nothing?
	zoltar: They just sit there until someone captures them

	jan: BOOOOOOOOOOOOOOOOOMMMMM!!!! (sorry but that was satisfying)  thanks guys
	Uglyfoot: Thanks for the game.
	zoltar: You too.  We all fell in one turn.  Wow.


6334)
Started: 2007.2.5, Ended: 2007.2.23
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld Y2 B1 G3

2) TwoShort: Homeworld G3 B1 B3 *
	zoltar: Hi, TwoShort!  Ok, I'll try this silly opening again which I still think is the best but which I can't seem to win with.  :)
	TwoShort: In that case, I'll have to try my response to that opening that I think should be good, but can't seem to make work.

3) zoltar: Build G1 Zoltar
	TwoShort: You know it's a good idea when the system makes you put in an asterix to prove you really want to do it :)


4) TwoShort: Build B1 Twoshort

5) zoltar: Trade G1 Y1 Zoltar

6) TwoShort: Trade B3 Y3 Twoshort

7) zoltar: Build Y1 Zoltar

8) TwoShort: Build B2 Twoshort

9) zoltar: Trade Y1 R1 Zoltar

10) TwoShort: Trade B2 R2 Twoshort

11) zoltar: Build Y1 Zoltar

12) TwoShort: Build B2 Twoshort
	zoltar: Looks like my position is already lost after the 4th move!

13) zoltar: Discover Y1 Zoltar G3 Greenbelt

14) TwoShort: Discover B1 Twoshort G2 Grogar

15) zoltar: Build Y1 Greenbelt

16) TwoShort: Build B2 Twoshort

17) zoltar: Discover Y1 Greenbelt B2 Blueberry

18) TwoShort: Discover B2 Twoshort G2 Globulus

19) zoltar: Build Y2 Greenbelt

20) TwoShort: Build B3 Grogar

21) zoltar: Sacrifice G3 Zoltar
Build Y2 Blueberry
Build Y3 Greenbelt
Build Y3 Zoltar

22) TwoShort: Build B3 Globulus

23) zoltar: Move R1 Zoltar Greenbelt
	TwoShort: Dammit!  I thought you wouldn't do that.  Not sure why.

24) TwoShort: Build B3 Twoshort
	zoltar: I figured it was a trap and I was about to die, but as I was lost if I didn't do it, my only choice besides resigning was to grab the rest of the yellow pieces, as now at least you are contained for a while.

25) zoltar: Build R1 Greenbelt

26) TwoShort: Build R1 Twoshort

27) zoltar: Build R2 Greenbelt

28) TwoShort: Move Y3 Twoshort Blueberry

	zoltar: Yep, there's nothing I can do to stop you at this point.  I analyzed the game, and figured that if you move your Y3 out, even if I blow up the star, then you trade a B3 immediately for a Y3 again, and I'm out that many yellow ships, etc.  I now realize that the first person can never build a small blue star, given the opening response of yours.  GG.
	TwoShort: Um, OK...  I would have said I narrowly snuck out of the total domination you had imposed on me, and that after you blew up the star and we broke each others monopolies, I'd be up by a couple ships, but nothing devastating.  I certainly don't see how I could possibly have won in any kind of short term.  Sorry, but it's really frustrating to have you resign at the first reversal; I've played games that have covered 4 or 5 lead-changes of this magnitude.  This game was just about to get interesting. 
	zoltar: I didn't see that I had anything; also I was over at Andy Looney's, and showed him the position, and he said also that I was toast and didn't have a chance.  You have the blue industry, you can get all the rest of the big ships, and now I can't stop you from getting Yellow ones either.  I have nothing I can do at this point, as your yellow ship can march down and if I blow it up, you trade a blue ship for the Y3, and build your B3 again, and then you can always trade your B3's for R3's and rebuild your B3's whenever you want, and then just march them into my homeworld.  I don't have anything I can do to attack you except to sit around and get the r1's while you get more of the 3-sized ships. 
	TwoShort: It seems to me after you blow it up and I trade a B3 to get my only yellow back, you can trade for the B3 at your homeworld or move from Greenbelt to the b2.  I don't know, maybe you thought it through further than me, maybe I had you.  But I didn't see it, and I'd have liked to.  Personally, I never resign until I can see the exact, short series of moves that will finish me off.  I don't know, I guess you've got to call them like you see them, but I think you'd be surprised ocasionally if you kept trying even when it seemed hopeless.  If nothing else, you give me the chance to screw it up :)


6344)
Variants: "Hard time"
Started: 2007.2.5, Ended: 2007.2.11
Participants: dsheldon (S), morganfitzp (N)
Winner: morganfitzp

1) morganfitzp: Homeworld B1 Y2 G3

2) dsheldon: Homeworld B3 R2 G3

3) morganfitzp: Build G1 Morganfitzp

4) dsheldon: Build G1 Dsheldon

5) morganfitzp: Trade G1 Y1 Morganfitzp

6) dsheldon: Build G1 Dsheldon

7) morganfitzp: Build Y1 Morganfitzp

8) dsheldon: Trade G1 Y1 Dsheldon

9) morganfitzp: Discover Y1 Morganfitzp G3 Ur

10) dsheldon: Discover G1 Dsheldon B1 Frankfurt

11) morganfitzp: Build Y2 Ur

12) dsheldon: Build G1 Frankfurt

13) morganfitzp: Build Y2 Morganfitzp

14) dsheldon: Build Y3 Dsheldon

15) morganfitzp: Trade Y1 B1 Morganfitzp

16) dsheldon: Discover Y1 Dsheldon G1 Kermit

17) morganfitzp: Build G2 Morganfitzp

18) dsheldon: Build G2 Dsheldon

19) morganfitzp: Discover Y1 Ur G2 Babylon
	dsheldon: You are much better than my last opponent.  The system says this is your first game of Homeworlds, but I suspect that you have some face-to-face experience ;)

20) dsheldon: Sacrifice G3 Dsheldon
Build G3 Dsheldon
Build Y1 Kermit
Build Y3 Dsheldon
	morganfitzp: True, I'm new to Homeworlds, though I've been acquainted with these colors and shapes for most of my life.

21) morganfitzp: Sacrifice G3 Morganfitzp
Build G3 Morganfitzp
Build B2 Morganfitzp
Build Y3 Ur

22) dsheldon: Trade G1 R1 Frankfurt

23) morganfitzp: Trade B2 R2 Morganfitzp

24) dsheldon: Sacrifice Y3 Dsheldon
Move Y1 Kermit Ur
Move Y1 Kermit Ur
Discover G1 Frankfurt Y3 Memphis
Catastrophe Ur Y

25) morganfitzp: Move R2 Morganfitzp Memphis
	dsheldon: It was getting too crowded out there.

26) dsheldon: Move G1 Memphis Morganfitzp
	morganfitzp: Yes, overpopulation was a problem in Ur. But there seems to be lots of room in Memphis.

27) morganfitzp: Trade G3 R3 Morganfitzp
	dsheldon: I thought Ur's problems were mostly floods... and that Memphis was the same.

28) dsheldon: Sacrifice G3 Dsheldon
Build G1 Morganfitzp
Build G1 Morganfitzp
Build G3 Dsheldon
Catastrophe Morganfitzp G
	morganfitzp: My only problems with Memphis have involved humorless administrators, flaky anarchists, and inebriated punks listening to country music.

29) morganfitzp: Trade R3 G3 Morganfitzp
	dsheldon: Different Memphis, but valid concerns to be sure.  I'm starting to wonder if I'm overly fond of catastrophies.  What do you think?

30) dsheldon: Discover G3 Dsheldon Y1 Cairo
	morganfitzp: I think that my ships think that they're traffic lights.

31) morganfitzp: Build B2 Morganfitzp

32) dsheldon: Build G1 Dsheldon

33) morganfitzp: Move B2 Morganfitzp Memphis

34) dsheldon: Move G1 Dsheldon Frankfurt

35) morganfitzp: Build B2 Morganfitzp

36) dsheldon: Build Y1 Dsheldon

37) morganfitzp: Move B1 Morganfitzp Memphis

38) dsheldon: Move Y1 Dsheldon Frankfurt

39) morganfitzp: Discover B2 Memphis G1 Beirut

40) dsheldon: Build Y2 Frankfurt

41) morganfitzp: Build Y3 Babylon

42) dsheldon: Discover Y1 Frankfurt G3 Eridu

43) morganfitzp: Discover Y2 Morganfitzp B3 Beijing

44) dsheldon: Sacrifice G3 Cairo
Build G1 Frankfurt
Build G2 Frankfurt
Build G3 Dsheldon

45) morganfitzp: Sacrifice Y3 Babylon
Move B2 Beirut Dsheldon
Move B1 Memphis Frankfurt
Move B1 Frankfurt Dsheldon


46) dsheldon: Sacrifice Y2 Frankfurt
Discover G1 Frankfurt B3 Paris
Discover G1 Frankfurt B2 Versailles

47) morganfitzp: Sacrifice Y2 Beijing
Move R2 Memphis Frankfurt
Move R2 Frankfurt Dsheldon

48) dsheldon: Sacrifice G2 Dsheldon
Build Y1 Eridu
Build Y2 Eridu

49) morganfitzp: Sacrifice G3 Morganfitzp
Build B3 Dsheldon
Build R1 Dsheldon
Build R1 Dsheldon
Catastrophe Dsheldon Red
Catastrophe Dsheldon Blue

	dsheldon: This is getting pretty intense.
	morganfitzp: Yes. Intense like a super nova.
	dsheldon: I knew I was losing one star.  I failed to recognize I was going to lose both.  I might have been able to hold you off for another turn or two, but my defeat was assured a good while ago.

My major blunder was in failing to diversify my fleet sooner (or at all really...).  Thanks for a very eye-opening defeat.
	morganfitzp: Yeah - That was an amazing game! Very interesting moves on your part. I was sure that I was getting your blue star a turn earlier. Thanks for playing!


6367)
Started: 2007.2.8, Ended: 2007.2.10
Participants: nycavri (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 Y1 G3
	nycavri: Hi, Z.  My first shot at Homeworlds.  I'm happy to be playing someone who clearly knows what they're doing - please mention any blinding errors I make.  Thanks!  a
	zoltar: Sure, no problem.  Good luck.

2) nycavri: Homeworld Y3 G2 R3 *

3) zoltar: Build G1 Zoltar
	nycavri: You too.  By the way, playing GRY rather than BGY for an opening is intentional, rather than an error.  I understand the reasons for starting with access to Blue, but humor me.....

4) nycavri: Build R1 Nycavri
	zoltar: No problem.  The point is that you are forced to build red, and then to move a red out (probably to a blue star) or else build one more red and then move a red out, before you can switch colors.  You have few options, whereas I can trade my g1 to any of the 3 colors or build another green or move my green out next turn, so I have more options to start with, and hopefully (for me) can manipulate exhausting smalls of one color and building larger ships sooner than you.  But there are so many tricks I haven't learned yet, maybe you can find one this way.  I'll be interested to see what you are up to here!

5) zoltar: Build G1 Zoltar
	nycavri: Yup.  Unorthodox, but since I'm all but flying blind anyway, I'm just looking to have a little fun.  Success would just be gravy.....
	zoltar: b g1 zoltar

6) nycavri: Discover R1 Nycavri B1 Downtown
	zoltar: Oops, I typed that in the wrong field!
	zoltar: If your large star were a blue instead of a yellow, you could now trade the r1 for a y1, and you'd have yellow as well as blue tech in your system.  But as it stands, you can't get blue tech for a while, which will limit your options considerably.

7) zoltar: Trade G1 R1 Zoltar

8) nycavri: Trade R1 G1 Downtown
	nycavri: As I said, i understand the theory, but after just 3 turns I now have access to Blue, and I figure an R3 on the Homeworld is a solid defence for a rookie to have up his sleeve.....

9) zoltar: Trade G1 Y1 Zoltar
	zoltar: Yes, though it would be nice to have a blue on your homeworld as well, as you can only build reds there until you get one.  In the meantime, I'm going to follow the standard opening rule that if your opponent builds a red, you should build one immediately, and considering that *all* your ships are red, it's never too soon to have a defensive piece at home, even though you are many moves from making any threat.

10) nycavri: Build G1 Downtown
	nycavri: Long way to go.  I'm a big Icehouse fan, and have read all the Homeworld strategy.  Want to put some of it into practice, but need to be convinced first-hand of the insistence of a BGY opening.  Likely you'll be the one to show me, but in the meantime, the game seems as intuitive and fun as I had hoped.

11) zoltar: Build Y1 Zoltar

12) nycavri: Trade G1 B1 Downtown

13) zoltar: Discover Y1 Zoltar G2 Greenbelt
	zoltar: Well, obviously I wanted to build the last y1 piece here, so that you couldn't immediately trade a green piece for it.  Now your pieces on 'downtown' are grounded or landlocked until you get a yellow piece, which will take more moves.  So you have to either build more red in your homeworld, or build another green, letting me get the first mid-sized green, or trade your green for a blue, a tech you already have at Downtown, or trade a green for a red, a tech you already can make anyway back in your homeworld.  None of them are great options, though you aren't in bad shape yet, but without even trying yet, I'm able to slow down your getting yellow tech to expand, so you're gonna be cramped for a while.  

This is similar to a chess game where you've locked your own Bishops in with pawn moves so that they don't have much scope and your position has thus become rather cramped.  Again, I have no threats or anything, but later on, this will be trouble if you don't get yellow to expand further.  

14) nycavri: Build G1 Downtown
	nycavri: Yup again.  I see that you've stalled me.  You can tell it's my first game - I wasn't expecting you to grab that last y1, and I should have been.  

15) zoltar: Build Y2 Zoltar
	zoltar: b g2 zoltar

16) nycavri: Trade G1 B1 Downtown

17) zoltar: Trade Y2 B2 Zoltar
	zoltar: Oops, I used the wrong field again, and I meant to say Y2 anyway.  

Yep, building the Y1 was my only reasonable move, given that you could use one and there was only one left.  When you have more flexibility, you have an option of different pieces to make, so that your opponent can't easily block you by taking the single piece that you need.

18) nycavri: Build R1 Nycavri
	zoltar: Now I can build any of the four colors in my homeworld.
	nycavri: I really feel like rookie.  Keep trying to do things and running into the rules head first.....  But I don't know that I've ever enjoyed being thrashed as much as this. (Although the thrashing hasn't actually begun, we both know it's coming)

19) zoltar: Build B2 Zoltar
	zoltar: Btw, trading your R3 for a Y3 here, and then building a Y2 next move may look like a simple way out, but it would be a horrible game-ending blunder.   I would build a Y2 (at either star) and then when you built a Y2, I would sacrifice my Y2 that I had built for two movements, and I would move my Y1 from Greenbelt to nycavri immediately, cause a catastrophe (with four yellows total), destroy all your ships at nycavri, and the game would be over!
	zoltar: I meant to say if you sacrificed a b1 so you could trade your R3 for a Y3 that it wouldn't have worked.  Building reds and eventually getting a r2 to your blue star and trading it for a y2 is the only way to get yellow for now, but I might have them all by the time you do it.

20) nycavri: Trade B1 R1 Downtown
	nycavri: Thanks for the sacrifice tip.  Not sure I would have spotted it as an option, but can see why it's a game ender.  There may be a way to open GRY, but I sure didn't find it!

21) zoltar: Move B2 Zoltar Greenbelt

22) nycavri: Build R2 Downtown

23) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build Y2 Greenbelt
Build Y2 Greenbelt
	nycavri: Sorry - gotta run.  I'll be back tomorrow to pick up.  Thanks again for talking strategy with a newbie - it's appreciated. 

24) nycavri: Build R2 Nycavri
	zoltar: ...just in time

25) zoltar: Discover Y2 Greenbelt G3 Greendale
	zoltar: You may wish to take that move back, as it's now mate in three or so.

I can sac my Y2 in zoltar to move a Y2 from Greenbelt to nycavri.  As you are defenseless without the R3, you can't capture the Y2, nor can you move your R3 back to your homeworld.  So next move I sac my R1 in Zoltar and take your R1 and win the game.  Or you can build an R2 in your homeworld and I sac my R1 and take your R2 and it's checkmate the move after that!

26) nycavri: Discover R2 Nycavri G1 Sunset
	nycavri: Thanks again - spending too much time worrying about my position, and too little about yours.  Good lesson to learn.

27) zoltar: Trade B2 G2 Zoltar
	zoltar: It's almost always deadly to move or sacrifice your defending 3-size piece in your homeworld.  The only reason I've got away with it is to keep you out of yellow production, so while you can't reach my homeworld, I'm safe without a large piece, but eventually I'll want to restore one there as well.

28) nycavri: Build R2 Sunset

29) zoltar: Sacrifice G2 Zoltar
Build R3 Zoltar
Build R3 Zoltar

30) nycavri: Trade R2 G2 Downtown

31) zoltar: Trade R3 G3 Zoltar

32) nycavri: Sacrifice B1 Downtown
Trade R3 Y3 Nycavri
	nycavri: So, you successfully demonstrated why a Yellow is necessary in the opening!  Happy to play it out anyway....

33) zoltar: Move R3 Zoltar Greenbelt
	zoltar: Actually, it was the blue that was necessary, along with green, as if you created another green or blue, you could immediately trade it for a yellow piece.
	nycavri: Right, right, that's what I said.  ;)

34) nycavri: Build Y3 Nycavri

35) zoltar: Sacrifice Y2 Zoltar
Move Y1 Greenbelt Downtown
Move Y1 Downtown Nycavri
Catastrophe Nycavri Y
	zoltar: Oops, I want to think about this for a minute or two first, actually.

36) nycavri: Trade G1 Y1 Downtown
	zoltar: Well, at least you finally got your yellow ship!

37) zoltar: Sacrifice G3 Zoltar
Build R2 Zoltar
Build R3 Zoltar
Build R3 Greenbelt

38) nycavri: Discover Y1 Downtown G3 Ues
	zoltar: Of course if you try to get a third yellow, I can blow up all your yellow ships and your star, but you had few other options

39) zoltar: Move R2 Zoltar Nycavri

40) nycavri: Move Y1 Ues Sunset
	zoltar: I think I can win right away my moving my y2 ship into your homeworld, but I'll retract that and play it more slowly as I usually would.
	nycavri: Ooooh.  You got in just in time - I had entered my move.....
	nycavri: But yes, I assumed you had the win next turn with y2 to my Homeworld.

41) zoltar: Attack R1 Nycavri
	zoltar: Actually, moving my G3 from my homeworld to yours (which is possible now that your small star is gone) would have won the most decisively.  But getting all the red ships first is the safe way to proceed as I can attack next move if I wish.

	nycavri: If you are happy to continue playing a rookie, send me a direct challenge.  I'm flying back to New York tomorrow, and will be back at my computer regularly after Tuesday.  Thanks for taking the time to coach me - it's appreciated.  And yes, you can bet on seeing a BGY opening from me in future!


6403)
Started: 2007.2.9, Ended: 2007.3.16
Participants: zoltar (S), GreedyAlgorithm (N)
Winner: zoltar

1) GreedyAlgorithm: Homeworld B1 Y2 G3

2) zoltar: Homeworld B3 Y2 G3

3) GreedyAlgorithm: Build G1 Greedyalgorithm

4) zoltar: Build G1 Zoltar

5) GreedyAlgorithm: Trade G1 Y1 Greedyalgorithm

6) zoltar: Trade G1 Y1 Zoltar

7) GreedyAlgorithm: Build G1 Greedyalgorithm

8) zoltar: Build G1 Zoltar

9) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm

10) zoltar: Trade G1 B1 Zoltar

11) GreedyAlgorithm: Build G1 Greedyalgorithm

12) zoltar: Build B2 Zoltar

13) GreedyAlgorithm: Build B2 Greedyalgorithm

14) zoltar: Trade B2 R2 Zoltar

15) GreedyAlgorithm: Discover B1 Greedyalgorithm B3 Teh

16) zoltar: Build B2 Zoltar

17) GreedyAlgorithm: Build B2 Greedyalgorithm

18) zoltar: Discover B1 Zoltar Y1 Yellowstone



6440)
Started: 2007.2.10, Ended: 2007.2.15
Participants: zoltar (S), nycavri (N)
Winner: zoltar

1) nycavri: Homeworld G3 Y2 B3
	nycavri: Thanks for the long start time - I'm going to need some of it.

2) zoltar: Homeworld B3 Y1 G3

3) nycavri: Build B1 Nycavri
	zoltar: Well, you said you'd be away, so I figure I'd change the start time so we could get underway.

4) zoltar: Build G1 Zoltar
	nycavri: Back home in New York now.  Should be reasonably active M-F, 9-5 EST now that I'm back at work.  Where are you based?
	zoltar: I'm in Greenbelt, MD, just outside of the Washington, DC Beltway.

5) nycavri: Discover B1 Nycavri G1 Deacon

6) zoltar: Discover G1 Zoltar B2 Blues

7) nycavri: Build B1 Deacon

8) zoltar: Build G1 Zoltar

9) nycavri: Trade B1 Y1 Deacon

10) zoltar: Build G2 Blues

11) nycavri: Build Y1 Deacon

12) zoltar: Trade G2 Y2 Blues

13) nycavri: Build B1 Nycavri

14) zoltar: Build G2 Blues

15) nycavri: Trade Y1 R1 Deacon

16) zoltar: Trade G2 R2 Blues

17) nycavri: Build R1 Deacon

18) zoltar: Build G2 Blues
	nycavri: Homeworlds is a fascinating game when I don't needlessly handicap myself.

19) nycavri: Trade B1 Y1 Nycavri
	zoltar: Yes, I know the feeling.  Right now I'm playing against a much better player, and he already has the upper hand after 5 moves and is into the middle sized pieces as I am here, and is going to get a bigger advantage, and I have no idea where I went wrong.  The game seems to have the complexity almost of chess, though it is mostly tactics.

20) zoltar: Move G2 Blues Deacon

21) nycavri: Build Y2 Nycavri

22) zoltar: Sacrifice G3 Zoltar
Build G2 Blues
Build G2 Deacon
Build G3 Zoltar

23) nycavri: Move B1 Deacon Nycavri

24) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Blues
Build Y3 Blues

25) nycavri: Trade B3 R3 Nycavri

26) zoltar: Discover Y2 Blues B1 Blueberry

27) nycavri: Build Y3 Deacon

28) zoltar: Sacrifice G2 Blues
Build Y3 Blueberry
Build G2 Deacon
Catastrophe Deacon G

29) nycavri: Trade Y1 G1 Nycavri
	zoltar: How was that for a sophisticated tactical move: I sacked my g2, grew the last y3, then grew my g2 back  in the system with all your pieces and created a catastrophe, leaving a simplified position where I have 3 extra large ships!

30) zoltar: Discover Y2 Blueberry G2 Greenbelt
	nycavri: Yes, but I thought you were going to blow up my y2 planet, so we'll call it a push.  *grin*
	zoltar: I had that choice, but this way I had such a material advantage at the end that it seemed to be a much safer move, and now you even had to spend a move to stop the threat to your yellow star; the other way, I take out one of your binary stars, but you have the Y3 which you could do trouble with. 
	nycavri: I'm still expecting to lose, but at least now it will take a couple of turns longer.  I hope.....

31) nycavri: Move Y2 Nycavri Blueberry

32) zoltar: Sacrifice R2 Blues
Attack Y2 Blueberry
Pass
	zoltar: Well, I'm playing slowly now, spreading out my forces so I can build up more forces before I attack.

33) nycavri: Build R1 Nycavri

34) zoltar: Sacrifice G3 Blues
Build G2 Zoltar
Build G2 Blues
Build G3 Blues
	nycavri: You're able to do that when your opponent appears incapable of creating any offense of his own.....

35) nycavri: Discover R3 Nycavri Y1 May

36) zoltar: Trade Y3 R3 Blueberry

37) nycavri: Move R3 May Nycavri
	zoltar: That is an insane move, leaving your homeworld undefendend.  You're lucky that I don't have any red pieces!

38) zoltar: Sacrifice G3 Blues
Build G3 Blues
Build R1 Blueberry
Build Y1 Blueberry
	nycavri: You're just toying with me now - you can blow me up almost at will.  The fact is you have no Reds, and I'm going to try and steal a move from you somewhere to try and make some sort of comeback.  Again, not expecting it to work, but what do I have to lose?
	zoltar: Well, if you don't run your r3 back to your homeworld, it's all over.
	nycavri: Yup.  I keep looking for you to make a mistake, but no.....

39) nycavri: Trade R1 Y1 Nycavri

40) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Blues
Build Y3 Greenbelt

41) nycavri: Discover Y1 Nycavri R1 Mercury

42) zoltar: Move Y2 Greenbelt Blueberry

43) nycavri: Move G1 Nycavri Mercury

44) zoltar: Move G2 Blues Mercury

45) nycavri: Sacrifice Y1 Mercury
Discover G1 Mercury B2 Taylor

46) zoltar: Sacrifice Y3 Blues
Move Y1 Blueberry Nycavri
Move Y2 Blueberry Nycavri
Move Y2 Blueberry Nycavri
Catastrophe Nycavri Y

47) nycavri: Trade G1 Y1 Taylor

48) zoltar: Sacrifice Y3 Blues
Move G1 Blues Nycavri
Move G2 Mercury Nycavri
Move G3 Blues Nycavri
Catastrophe Nycavri G
	zoltar: Too bad you don't have another y1 ship, or you'd be threatening "the blueberry" checkmate, as all my homeworld ships are green (the ideal setup would be to have a large green and one other ship red, so all four colors are represented, and no more than one of each color for maximum stability.  I haven't traded, say my g2 to r2, which I would have done the move after I built the third green ship, only because you didn't have any yellow tech to reach it.
	zoltar: Sorry, that would be called the 'bluebird' checkmate, when you sacrifice to move to an opponent's homeworld where they have only one color, and you destroy all of their ships

	zoltar: Here the story from the Homeworlds World Champion himself:

http://www.youtube.com/profile?user=AndrewLooney

And look for the video called "The Bluebird Mistake"  
	zoltar: Well, gg again. You're doing great as a beginner.  Took me a dozen games till I won one, as this is hard, like chess, but worth the initial frustration as it's a wonderful fun game.
	nycavri: Thanks.  This is one of the few gamse I seem to enjoy even when being trounced.  Looking forward to eventually being able to teach this face to face - I imagine it's even *more* fun with players getting into the space opera theme.


6420)
Started: 2007.2.12, Ended: 2007.2.22
Participants: dsheldon (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3
	dsheldon: So you're like... the best there is, huh?  I'm looking forward to a good whupin'.

2) dsheldon: Homeworld B3 R2 G3
	TwoShort: Hmmm...  I'll be the first to say I think Jesse is better than me.  I've driven my rating higher than his because I spend more time than him handing out whupin's...  :)

3) TwoShort: Build G1 Twoshort

4) dsheldon: Build G1 Dsheldon

5) TwoShort: Discover G1 Twoshort Y3 Yoyo

6) dsheldon: Trade G1 Y1 Dsheldon

7) TwoShort: Build G1 Twoshort

8) dsheldon: Build G1 Dsheldon

9) TwoShort: Build G2 Twoshort

10) dsheldon: Discover G1 Dsheldon Y1 Buttercup

11) TwoShort: Discover G2 Twoshort B3 Bluestar

12) dsheldon: Build G2 Dsheldon

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Yoyo
Build G3 Bluestar
Build G3 Twoshort

14) dsheldon: Build Y2 Dsheldon

15) TwoShort: Trade G2 Y2 Bluestar

16) dsheldon: Build G2 Buttercup

17) TwoShort: Trade G1 R1 Twoshort

18) dsheldon: Discover Y2 Dsheldon B1 Capillary

19) TwoShort: Move G1 Yoyo Buttercup

20) dsheldon: Trade G2 B2 Dsheldon

21) TwoShort: Sacrifice G3 Bluestar
Build G1 Buttercup
Build G2 Yoyo
Build G3 Twoshort
Catastrophe Buttercup Green

22) dsheldon: Build G1 Dsheldon

23) TwoShort: Move G2 Yoyo Capillary

24) dsheldon: Trade Y2 R2 Capillary

25) TwoShort: Sacrifice R1 Twoshort
Attack R2S Capillary

26) dsheldon: Discover G1 Dsheldon G1 Vinyard

27) TwoShort: Sacrifice G3 Twoshort
Build G1 Yoyo
Build G2 Capillary
Build G3 Twoshort

28) dsheldon: Build Y1 Dsheldon

29) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build R1 Capillary
Build G3 Twoshort
	dsheldon: Hmm, having half the ships definitely has me worried.

30) dsheldon: Move Y1 Dsheldon Vinyard

31) TwoShort: Move Y2 Bluestar Vinyard

32) dsheldon: Sacrifice G3 Dsheldon
Build Y2 Vinyard
Build Y3 Dsheldon
Build G3 Vinyard

33) TwoShort: Sacrifice Y2 Vinyard
Move G1 Yoyo Vinyard
Move Y2 Bluestar Capillary
Catastrophe Vinyard Green

34) dsheldon: Trade Y3 G3 Dsheldon

35) TwoShort: Build R1 Capillary

36) dsheldon: Discover B2 Dsheldon G1 Escape Hatch

37) TwoShort: Sacrifice Y2 Capillary
Move R1 Capillary Dsheldon
Move R1 Capillary Dsheldon

38) dsheldon: Build B1 Escape

39) TwoShort: Sacrifice G2 Yoyo
Build R1 Dsheldon
Build R2 Capillary
Catastrophe Dsheldon Red

40) dsheldon: Trade B2 Y2 Escape

41) TwoShort: Move G3 Twoshort Dsheldon

42) dsheldon: Move Y2 Escape Dsheldon

43) TwoShort: Sacrifice R2 Capillary
Attack G3S Dsheldon
Attack Y2S Dsheldon

44) dsheldon: Build B1 Escape

45) TwoShort: Sacrifice R2 Capillary
Attack Y1S Dsheldon
Pass
	dsheldon: You've got me.  It might take you two moves, but I'm as good as dead.
	TwoShort: Yeah, if you'd taken a red last turn instead of yellow, you might have drawn it out more; but behind on ships I don't think you could have stopped me from amassing enough blues to take out your other star.  Anyway, thanks for the game!



6498)
Variants: "Hard time"
Started: 2007.2.13, Ended: 2007.2.20
Participants: dsheldon (S), clockwise (N)
Winner: clockwise

1) clockwise: Homeworld R1 B2 G3

2) dsheldon: Homeworld Y3 B2 G3
	clockwise: Greetings dsheldonites, the people of Clockwise Prime wish to challenge you to a little game we like to call "destroying your homeworld".  May the best triangular lifeform win.

3) clockwise: Build G1 Clockwise

4) dsheldon: Build G1 Dsheldon
	dsheldon: Destruction is not necessary, simply depopulation.  But I do agree that I find destruction to be easier.  Allow me to demonstrate...

(mmm, semi-rp homeworlds trashtalking.  fun.)

5) clockwise: Trade G1 Y1 Clockwise

6) dsheldon: Discover G1 Dsheldon Y1 Babycorn

7) clockwise: Build G1 Clockwise

8) dsheldon: Build G1 Dsheldon

9) clockwise: Build G2 Clockwise

10) dsheldon: Sacrifice G3 Dsheldon
Build G2 Babycorn
Build G2 Babycorn
Build G3 Dsheldon

11) clockwise: Discover G2 Clockwise G3 Kermit

12) dsheldon: Discover G2 Babycorn B2 Reststop

13) clockwise: Sacrifice G3 Clockwise
Build G3 Clockwise
Build Y1 Clockwise
Build Y2 Clockwise

14) dsheldon: Trade G2 Y2 Reststop

15) clockwise: Discover Y1 Clockwise B3 Cookie

16) dsheldon: Move G1 Babycorn Cookie

17) clockwise: Sacrifice G3 Clockwise
Build G2 Kermit
Build G3 Clockwise
Build Y2 Cookie

18) dsheldon: Move G2 Babycorn Kermit
Catastrophe Kermit G

19) clockwise: Trade Y2 R2 Cookie
	clockwise: You monster!  All those frogs... wasted...

20) dsheldon: Sacrifice G1 Cookie
Build Y1 Reststop

21) clockwise: Discover Y1 Clockwise G3 Kermit

22) dsheldon: Trade Y1 R1 Reststop

23) clockwise: Build Y1 Kermit

24) dsheldon: Build G1 Dsheldon

25) clockwise: Sacrifice G3 Clockwise
Build Y2 Clockwise
Build Y3 Clockwise
Build Y3 Cookie

26) dsheldon: Discover G1 Dsheldon R1 Skirmish

27) clockwise: Trade Y3 G3 Clockwise

28) dsheldon: Sacrifice G3 Dsheldon
Build Y3 Reststop
Build R2 Reststop
Build G2 Dsheldon

29) clockwise: Sacrifice Y2 Clockwise
Move Y1 Kermit Reststop
Move Y1 Cookie Reststop
Catastrophe Reststop Yellow

30) dsheldon: Trade R2 Y2 Reststop

31) clockwise: Sacrifice Y2 Clockwise
Move Y3 Cookie Skirmish
Move Y3 Skirmish Dsheldon

32) dsheldon: Sacrifice Y2 Reststop
Move R1 Reststop Skirmish
Move R1 Skirmish Dsheldon
	clockwise: The move I should have made last turn.

33) clockwise: Sacrifice R2 Cookie
Attack G2S Dsheldon
Attack R1S Dsheldon
	dsheldon: Wait... no, you have other non-explodey avenues of attack.  Oh, this'll be hard.

34) dsheldon: Build G2 Dsheldon
	dsheldon: This could go a couple different ways, all of them bad.

35) clockwise: Sacrifice G3 Clockwise
Build G2 Dsheldon
Build G3 Clockwise
Build G3 Clockwise
Catastrophe Dsheldon Green
	clockwise: Your move actually makes this a little easier.
	dsheldon: I figured you'd either nuke my Y3 star, or switch your Y3 to an R3 and just take over everything.  At least this way you lose a ship in the process.

So I have one ship that can't move, and one small in my homeworld.  All I can do is make green ships and all the ones I'll make you can steal until there are four and all my forces die...

I've lost, do you want to play it through or should I just resign?

	clockwise: Actually, this way I get an extra g3 in the process, not that it really matters.
	clockwise: Thanks for the game!
	dsheldon: You're quite welcome.  Every time I lose I learn something.

I've been learning a lot lately...


6463)
Variants: "Hard time"
Started: 2007.2.13, Ended: 2007.4.5
Participants: zoltar (S), Personman (N)
Winner: zoltar

1) Personman: Homeworld B3 Y1 G3

2) zoltar: Homeworld R3 B2 G3

3) Personman: Build G1 Personman

4) zoltar: Build G1 Zoltar

5) Personman: Discover G1 Personman Y2 Y2a
	zoltar: Greetingz Earthling: We meet again, Personman!
	Personman: :) Hi! It has been a while, hasn't it? I wonder if I've learned anything since last time. Probably not!
	zoltar: Well, I was on a losing streak for a while, but all that's about to change, I hope! 

6) zoltar: Trade G1 Y1 Zoltar

7) Personman: Build G1 Personman

8) zoltar: Build Y1 Zoltar

9) Personman: Build G1 Y2a

10) zoltar: Discover Y1 Zoltar B1 Blueberry

11) Personman: Build G2 Personman

12) zoltar: Build G2 Zoltar

13) Personman: Trade G2 Y2 Personman

14) zoltar: Build Y2 Zoltar

15) Personman: Build G2 Personman

16) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Blueberry
Build Y3 Blueberry

17) Personman: Trade G1 R1 Personman

18) zoltar: Trade Y3 R3 Zoltar

19) Personman: Trade G2 B2 Personman

20) zoltar: Trade Y3 G3 Blueberry
	zoltar: Yeah, gotta go for the Yellow superiority.

21) Personman: Move G1 Y2a Blueberry

22) zoltar: Sacrifice G3 Blueberry
Build Y3 Blueberry
Build Y3 Zoltar
Build R1 Zoltar

23) Personman: Build G1 Blueberry

24) zoltar: Move Y3 Blueberry Y2a

25) Personman: Sacrifice Y2 Personman
Discover R1 Personman Y2 Y2b
Discover G1 Y2a B1 B1a

26) zoltar: Move R3 Zoltar B1a

27) Personman: Trade G1 R1 Blueberry

28) zoltar: Trade Y3 G3 Zoltar

29) Personman: Attack Y1 Blueberry

30) zoltar: Sacrifice G2 Zoltar
Build R2 B1a
Build Y3 Blueberry

31) Personman: Sacrifice G1 B1a
Build R2 Y2b

32) zoltar: Sacrifice R3 B1a
Attack R1 Blueberry
Attack G1 Blueberry
Attack Y1 Blueberry

33) Personman: Build G1 Personman

34) zoltar: Sacrifice G3 Zoltar
Build R2 Zoltar
Build R3 B1a
Build R3 Blueberry

35) Personman: Move R1 Y2b Personman

36) zoltar: Move R3 Blueberry Y2b

37) Personman: Discover R2 Y2b G1 G1a

38) zoltar: Move Y1 Zoltar B1a

39) Personman: Build B1 Personman

40) zoltar: Move R1 Zoltar Blueberry

41) Personman: Discover B1 Personman G2 G2a

42) zoltar: Move R3 B1a G2a

43) Personman: Build B2 G2a

44) zoltar: Move Y3 Blueberry Zoltar

45) Personman: Build G2 Personman

46) zoltar: Sacrifice Y3 Blueberry
Move G1 Blueberry Y2a
Move G1 Y2a Personman
Move Y3 Y2a Personman
Catastrophe Personman G

47) Personman: Build B3 G2a

48) zoltar: Sacrifice R3 Y2b
Attack B3 G2a
Attack B2 Personman
Attack R1 Personman

	zoltar: gg Earthling!


6481)
Started: 2007.2.14, Ended: 2007.2.20
Participants: eriinfo (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) eriinfo: Homeworld B1 Y3 G3

3) TwoShort: Build G1 Twoshort
	TwoShort: howdy...


4) eriinfo: Build G1 Eriinfo

5) TwoShort: Trade G1 Y1 Twoshort
	eriinfo: hello, good luck.

6) eriinfo: Trade G1 B1 Eriinfo

7) TwoShort: Build G1 Twoshort

8) eriinfo: Build G1 Eriinfo

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) eriinfo: Discover G1 Eriinfo Y2 Cire

11) TwoShort: Build G1 Twoshort

12) eriinfo: Build G2 Cire

13) TwoShort: Build G2 Twoshort

14) eriinfo: Move G1 Cire Eriinfo

15) TwoShort: Discover G2 Twoshort G3 Landgrab

16) eriinfo: Build G2 Eriinfo

17) TwoShort: Sacrifice G2 Landgrab
Build G2 Twoshort
Build G3 Yolonda

18) eriinfo: Trade G2 Y2 Eriinfo

19) TwoShort: Trade G2 R2 Twoshort

20) eriinfo: Build G2 Cire

21) TwoShort: Discover G3 Yolonda Y2 Threat

22) eriinfo: Trade G1 R1 Eriinfo

23) TwoShort: Sacrifice G3 Twoshort
Build G1 Threat
Build G2 Yolonda
Build G3 Twoshort

24) eriinfo: Discover G2 Cire Y3 Rice

25) TwoShort: Build Y1 Twoshort

26) eriinfo: Build Y1 Eriinfo

27) TwoShort: Discover Y1 Twoshort B3 Bluestar

28) eriinfo: Move Y1 Eriinfo Cire

29) TwoShort: Move G3 Threat Rice

30) eriinfo: Move B1 Eriinfo Cire

31) TwoShort: Sacrifice G1 Threat
Build Y2 Bluestar

32) eriinfo: Build G1 Eriinfo

33) TwoShort: Build R1 Twoshort

34) eriinfo: Build R2 Eriinfo

35) TwoShort: Sacrifice R1 Twoshort
Attack G2S Rice

36) eriinfo: Trade R1 B1 Eriinfo

37) TwoShort: Trade Y2 R2 Bluestar

38) eriinfo: Build B2 Eriinfo

39) TwoShort: Move G3 Rice Cire

40) eriinfo: Discover B2 Eriinfo Y2 Icer

41) TwoShort: Sacrifice G2 Rice
Build Y3 Bluestar
Build R1 Bluestar

42) eriinfo: Sacrifice G2 Cire
Build B2 Eriinfo
Build B3 Icer

43) TwoShort: Sacrifice R2 Bluestar
Attack Y1S Cire
Attack B1S Cire

44) eriinfo: Sacrifice Y2 Eriinfo
Move G1 Eriinfo Icer
Discover B1 Eriinfo G2 Crie

45) TwoShort: Sacrifice G3 Twoshort
Build G2 Cire
Build B3 Cire
Build G3 Twoshort

46) eriinfo: Trade B3 R3 Icer

47) TwoShort: Sacrifice G1 Yolonda
Build Y2 Twoshort

48) eriinfo: Move B2 Eriinfo Icer

49) TwoShort: Sacrifice G2 Yolonda
Build B3 Cire
Build Y3 Cire

50) eriinfo: Build G1 Eriinfo

51) TwoShort: Sacrifice Y3 Cire
Move B1 Cire Eriinfo
Move B3 Cire Eriinfo
Move B3 Cire Eriinfo
Catastrophe Eriinfo Blue

52) eriinfo: Build B1 Crie

53) TwoShort: Sacrifice Y3 Bluestar
Move Y1 Cire Eriinfo
Move Y2 Twoshort Eriinfo
Move Y1 Twoshort Eriinfo
Catastrophe Eriinfo Yellow
	TwoShort: Your resistance to being finished off is quite impressive, but now I think I've got you. :)



6465)
Started: 2007.2.14, Ended: 2007.2.18
Participants: nycavri (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B1 Y3 G3

2) nycavri: Homeworld G2 Y1 B3

3) Uglyfoot: Build G1 Uglyfoot

4) nycavri: Build B1 Nycavri

5) Uglyfoot: Discover G1 Uglyfoot B2 Thestrip

6) nycavri: Build B1 Nycavri

7) Uglyfoot: Build G1 Uglyfoot

8) nycavri: Trade B1 G1 Nycavri

9) Uglyfoot: Build G2 Thestrip

10) nycavri: Build G2 Nycavri
	nycavri: Hello again!  This is only my third attempt at playing Homeworlds, and I was severely thumped in my first two games!  I hope I've learned something from those losses, though.  What's your Icehouse background?

11) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Thestrip
	Uglyfoot: I have been a Mad Lab Rabbit for 3 years, doing several conventions around the Kansas City area.  I've been learning as many games as possible to support my 10+ stashes.  Volcano is a face-to-face favorite.

	Uglyfoot: For Homeworlds, I have been getting thumped at it for over a year now and last time I checked I had the worst rating.

12) nycavri: Trade B3 Y3 Nycavri

13) Uglyfoot: Trade G3 Y3 Uglyfoot
	nycavri: Rabbit since December, when I discovered the Icehouse games at BGG, bought a bunch of Treehouse sets, Volcano caps, boards, books, stickers, coasters, and awndered over to SDG to play smoe of the more complicated games on a regular basis.  Homeworlds is clearly my favorite, despite my mediocre play, but I've loved playing Pikemen and BBT, both of which I had played elsewhere.  I've introduced everyone I've met to Icehouse, played Treehouse in bars and restaurants on 2 continents and will be whipping them out next week at the slightest provocation at the NY ComicCon.  Pity the Looneys can't be there.
	nycavri: I should read my posts before hitting send, 'specially when I'm excited.  I "sound" like a teenager.....

14) nycavri: Discover G1 Nycavri B3 Mv

15) Uglyfoot: Trade G2 R2 Thestrip

16) nycavri: Trade G1 Y1 Mv

17) Uglyfoot: Trade G1 Y1 Thestrip

18) nycavri: Sacrifice G2 Nycavri
Build Y2 Mv
Build B1 Nycavri

19) Uglyfoot: Move G3 Thestrip Mv
	nycavri: Any interest in my Blam! challenge?  That's the only Icehouse game I haven't played on SDG.

20) nycavri: Trade Y3 R3 Nycavri

21) Uglyfoot: Sacrifice R2 Thestrip
Attack Y2 Mv
Attack Y1 Mv

22) nycavri: Build B2 Nycavri

23) Uglyfoot: Trade Y1 R1 Mv

24) nycavri: Trade B2 R2 Nycavri

25) Uglyfoot: Build R1 Mv

26) nycavri: Discover R2 Nycavri Y3 Iw

27) Uglyfoot: Build R1 Mv

28) nycavri: Trade R3 G3 Nycavri

29) Uglyfoot: Move R1 Mv Nycavri

30) nycavri: Move R2 Iw Nycavri

31) Uglyfoot: Build R2 Nycavri

32) nycavri: Attack R2 Nycavri

33) Uglyfoot: Build R2 Nycavri
Catastrophe Nycavri R

34) nycavri: Trade B1 R1 Nycavri

35) Uglyfoot: Build G1 Mv

36) nycavri: Build B1 Nycavri

37) Uglyfoot: Sacrifice Y3 Uglyfoot
Move G1 Mv Nycavri
Move G3 Mv Nycavri
Move Y2 Mv Nycavri
Catastrophe Nycavri G

38) nycavri: Trade B1 G1 Nycavri

39) Uglyfoot: Sacrifice G3 Uglyfoot
Build Y1 Nycavri
Build Y2 Nycavri
Build G1 Uglyfoot
Catastrophe Nycavri Y
	Uglyfoot: Thank you for the game.  Annihilation turned out to be key...
	nycavri: Well played.  I'm sure we'll play again in future.



6478)
Variants: "Unrated, Sinister"
Started: 2007.2.15, Ended: 2007.6.18
Participants: jan (S), dsheldon (W), Gort (N), zoltar (E)
Winner: zoltar

1) Gort: Homeworld G3 B2 Y3
	dsheldon: OK!  This game filled up sooner than I expected.  This should be great.

Phooey, why do I /always/ go last?

2) zoltar: H B2 R1 G3
	Gort: If I take too long to move, send me an email, Zoltar. Then don't wait long before you resign me. Thanks, and Good Skill!

3) jan: Homeworld B3 Y1 G3
	zoltar: Ok.  How do you play 'sinister' btw?  

4) dsheldon: Homeworld R2 B1 G3
	jan: yes what are the differences with sinister? dsheldon. ...playing this game i can't being reminded of H. Sheldon. Harry Sheldon from Issac Asimov's Foundation trilogy. have you read it?
	jan: or was it Harry Seldon?
	zoltar: No, I haven't read it.  But I think you have to destroy one particular opponent to win, and each has to destroy a different one, but I don't know which one. 
	dsheldon: Everyone has to destroy the player to their left (sinister:left::dexter:right, get it?).  If someone else destroys the player to your left, play continues and you now target the new person to your left (your former target's target).

And no, I haven't read The Foundation Trilogy, but I do have a cat named Asimov. ;)

5) Gort: Build Y1 Gort

6) zoltar: Build G1 Zoltar
	zoltar: b g1 zoltar

7) jan: Build G1 Jan
	zoltar: Ok, that makes sense!  I suppose that makes the opponent across from you your ally, unless they are about to kill your worst enemy, and which case ironically you'd want to save the team trying to destroy you.
	dsheldon: Less of an ally, more of a guy that really doesn't care.  It's not like he's going to intentionally destroy huge numbers of his own ships to help you out.

For additionally irony, if the player to your left is about to win, it is very likely that you will want to destroy the player across from you.  That way, the game continues with three players.

So yeah, not an ally at all.

8) dsheldon: Build G1 Dsheldon

9) Gort: Discover Y1 Gort G1 Gone

10) zoltar: Trade G3 Y3 Zoltar

11) jan: Trade G1 R1 Jan

12) dsheldon: Trade G1 Y1 Dsheldon
	dsheldon: Just looking at this board and seeing four players is so awesome.  I don't mean to gush, but wow.

13) Gort: Build Y1 Gort

14) zoltar: Build G1 Zoltar

15) jan: Build G1 Jan

16) dsheldon: Build G1 Dsheldon

17) Gort: Trade Y3 G3 Gort

18) zoltar: Build G2 Zoltar

19) jan: Discover G1 Jan B2 Dolphin

20) dsheldon: Discover G1 Dsheldon B3 Deep

21) Gort: Build G2 Gort

22) zoltar: Trade G1 R1 Zoltar

23) jan: Build G1 Dolphin
	Gort: Didn't think you'd do it, Zol... I'm in trouble now!
	zoltar: Yup. The problem is that dsheldon can checkmate you in 3 moves or so, and the game is over, so weakening myself to weaken you more doesn't help me.

24) dsheldon: Build G2 Deep
	zoltar: So I'll just make a wimpy move instead...
	Gort: I figured three moves gave enough time for me to come up with something... but no matter; our people persevere. Your alien ways are strange and disturbing to us. We must eradicate you.
	Gort: PS: Thanks for using your time machine.

25) Gort: Trade G2 R2 Gort

26) zoltar: Discover G2 Zoltar B3 Bluemoon

27) jan: Build G2 Jan

28) dsheldon: Trade G2 Y2 Deep

29) Gort: Build R1 Gort
	jan: sorry i took so long im not such an avid computer user. but if you want to move faster i don't mind if you nix me.
	zoltar: In no hurry is Zoltar.

30) zoltar: Build G2 Bluemoon

31) jan: Discover G2 Jan B2 Exos

32) dsheldon: Build G2 Dsheldon

33) Gort: Move R2 Gort Gone

34) zoltar: Trade G2 Y2 Bluemoon

35) jan: Build G2 Exos

36) dsheldon: Sacrifice G3 Dsheldon
Build G2 Deep
Build G3 Deep
Build G3 Dsheldon
	dsheldon: Once Jan goes I won't be moving until at least Tuesday.  I'll be out of town all weekend and then some.  Sorry in advance for the delay that will cause.

37) Gort: Move Y1 Gone Deep

38) zoltar: Move G1 Zoltar Deep
Catastrophe Deep G

39) jan: Trade G2 Y2 Exos

40) dsheldon: Move G2 Dsheldon Deep
	dsheldon: zoltar, buddy, pal, why'd you have to go and do that?  You're, um... just making your true enemies more powerful.  Yeah, that's it!
	zoltar: It would be irrational to allow you to maintain a lead of a large ship when I could neutralize your advanced fleet with only the sacrifice of a pawn.

41) Gort: Trade Y1 G1 Deep

42) zoltar: Move R1 Zoltar Bluemoon

43) jan: Build G1 Jan

44) dsheldon: Build G2 Dsheldon

45) Gort: Build G2 Deep

46) zoltar: Build G3 Bluemoon

47) jan: Sacrifice G3 Jan
Build R1 Jan
Build Y1 Exos
Build G3 Jan

48) dsheldon: Trade G2 R2 Deep

49) Gort: Sacrifice R2 Gone
Attack R2W Deep
Attack Y2W Deep

50) zoltar: Move G3 Bluemoon Zoltar

51) jan: Move R1 Jan Exos

52) dsheldon: Build Y1 Dsheldon

53) Gort: Sacrifice Y2 Deep
Move R2 Deep Zoltar
Move G1 Deep Zoltar
	dsheldon: Woah.  Sucks to be me.

54) zoltar: Attack R2N Zoltar
	Gort: Just need to use the Deep system as a hyperspace bypass.

55) jan: Build R2 Exos

56) dsheldon: Discover G2 Dsheldon R3 Apple

57) Gort: Sacrifice G3 Gort
Build G1 Zoltar
Build G2 Zoltar
Build G3 Deep

58) zoltar: Sacrifice G3 Zoltar
Build G3 Bluemoon
Build Y2 Bluemoon
Build R2 Bluemoon

59) jan: Discover R1 Exos Y3 Plato

60) dsheldon: Trade Y1 B1 Dsheldon

61) Gort: Sacrifice G3 Deep
Build G3 Deep
Build R2 Gort
Build R3 Gort
	zoltar: Geez Gort, with an undefended homeworld, aren't you dead in 2 moves?
	zoltar: Then again, it's dsheldon that would have to kill you to win, and he's weak right now.  That explains your crazy aggression.
	dsheldon: hey, just because I've got four ships to jan's nine, uh...  yeah, little help here?
	zoltar: Perhaps Gort will help you and is planning to invade  Exos, in which case I have no reason to attack him; but as he has three ships in my homeworld, if he attacks further I'll have to place my G3 in his homeworld next turn; as for now, Jan is still not an immediate threat to you, having no ships within one jump of your homeworld.
	zoltar: Then again, Gort has only one yellow piece and can't attack anyone right now; if jan moves tons of pieces into orbits of large stars, by then my homeworld crisis will hopefully be over and Gort will have yellow ships, so we can attack the ships right outside your homeworld.  

62) zoltar: Sacrifice Y2 Bluemoon
Discover R1 Bluemoon Y1 Wormhole
Move R1 Wormhole Gort
Catastrophe Gort R

63) jan: Sacrifice G3 Jan
Build G3 Jan
Build R1 Jan
Build R1 Plato

64) dsheldon: Move B1 Dsheldon Apple

65) Gort: Trade G2 B2 Deep

66) zoltar: Attack G2N Zoltar
	jan: im realy sorry folks my internet has been down all this time . hopefully it will be fine now.

67) jan: Sacrifice Y2 Exos
Move R1 Plato Dsheldon
Move R1 Plato Dsheldon

68) dsheldon: Attack R1S Dsheldon

69) Gort: Build G2 Deep

70) zoltar: Move G3 Bluemoon Exos

71) jan: Sacrifice G3 Jan
Build G3 Jan
Build R2 Dsheldon
Build Y1 Exos
Catastrophe Dsheldon Red
	zoltar: Wow -- I accidentally attacked my own ship by mistake and it worked! I suppose that is technically  isomorphic to passing one's turn.  Anyway, I undid it and swallowed a green ship instead.  Yum. 

72) dsheldon: Build Y2 Dsheldon

73) Gort: Build Y2 Gort

74) zoltar: Sacrifice R2 Zoltar
Attack R2S Exos
Attack G2S Exos

75) jan: Trade G3 B3 Jan
	zoltar: jan's internet must still be down

76) dsheldon: Move Y1 Dsheldon Gort

77) Gort: Trade Y2 R2 Gort

78) zoltar: Sacrifice G3 Exos
Build G3 Exos
Build G3 Bluemoon
Build Y2 Bluemoon

79) jan: Sacrifice Y1 Exos
Move Y1 Exos Jan
	zoltar: Wear ease Jan????

80) dsheldon: Discover Y1 Gort B1 Harumph
	jan: here i am ,  sorry
	zoltar: Jan is back!  Whew Who!!!

81) Gort: Sacrifice Y1 Gort
Move B2 Deep Dsheldon

82) zoltar: Move G2 Bluemoon Harumph

83) dsheldon: Sacrifice G2 Apple
Build B1 Apple
Build B1 Apple

84) Gort: Sacrifice G3 Deep
Build B3 Dsheldon
Build G2 Zoltar
Build R1 Gort

85) zoltar: Sacrifice G3 Exos
Build G3 Exos
Build G3 Harumph
Build Y1 Zoltar
Catastrophe Zoltar G

86) dsheldon: Trade G3 R3 Dsheldon

87) Gort: Sacrifice R2 Gort
Attack Y2W Dsheldon
Attack R3W Dsheldon

88) zoltar: Sacrifice Y2 Bluemoon
Move G3 Harumph Gort
Move G3 Bluemoon Zoltar
	zoltar: Jan has been gone for 4 days again...
	dsheldon: I've noticed.  I am loathe to eject him from the game however, as he's the one trying to kill me and I don't want to appear vindictive.  That, and you (Zoltar) will likely annihilate me in short order.
	zoltar: I'd hate to eject anyone because their time was up.  Jan had internet trouble before. This is my first "Sinister" game -- and it's rather interesting.
	Gort: I certainly don't mind waiting.
	zoltar: Attention: Jan hazz knot moved in one cycle of Earth's moon, Luna.  Perhaps the Earthling hazz been sucked into a black hole.  Shall we terminate Jan's fleet now?

89) Gort: Sacrifice Y2 Dsheldon
Move R3 Dsheldon Gort
Move B2 Dsheldon Gort
	dsheldon: Woah, good thing I came and checked on the game.  I didn't get any email notification when Jan resigned.

Also: now we're down to three players, and that's sad.

90) zoltar: Sacrifice R2 Exos
Attack R1N Gort
Attack R3N Gort
	Gort: I thought Jan had excellent position. Sorry to see the species begin its slow tumble into the dark ages. Our race intends to die out sooner, but more gloriously.

91) Gort: Sacrifice G2 Deep
Build B3 Gort
Pass

92) zoltar: Sacrifice R2 Bluemoon
Attack B2N Gort
Attack B3N Gort
	Gort: that'll teach me to wait on catastrophes.
	dsheldon: I got nuthin'.  Looks like I'm done for.

	zoltar: Very well.  Zoltar will not destroy your species and supernova your homeworld, but will instead claim your ships for the Zoronian Armada, and make your species loyal minions under the protection of the Great Galactic Emperor Zoltar!!!


6541)
Started: 2007.2.15, Ended: 2007.2.17
Participants: zoltar (S), nycavri (N)
Winner: zoltar

1) nycavri: Homeworld B2 Y3 G3
	nycavri: "Hey, didn't we just leave this patry?"

2) zoltar: Homeworld R3 B1 G3

3) nycavri: Build G1 Nycavri
	zoltar: Did you watch the 'bluebird' video?
	nycavri: I did, thanks - good stuff.  And the "real" game looks so pretty in progress.

4) zoltar: Build G1 Zoltar

5) nycavri: Trade G1 R1 Nycavri

6) zoltar: Trade G1 Y1 Zoltar

7) nycavri: Build G1 Nycavri

8) zoltar: Build Y1 Zoltar

9) nycavri: Trade G1 Y1 Nycavri

10) zoltar: Build Y2 Zoltar

11) nycavri: Build Y2 Nycavri

12) zoltar: Discover Y1 Zoltar G2 Greenbelt

13) nycavri: Sacrifice Y2 Nycavri
Discover R1 Nycavri R1 Hop
Move R1 Hop Greenbelt

14) zoltar: Discover Y1 Greenbelt G1 Greendale

15) nycavri: Build G1 Nycavri

16) zoltar: Build Y2 Greendale

17) nycavri: Move Y1 Nycavri Greendale

18) zoltar: Discover Y2 Zoltar B2 Blueridge

19) nycavri: Build Y2 Greendale

20) zoltar: Build G1 Zoltar

21) nycavri: Build Y3 Greendale

22) zoltar: Build Y3 Zoltar
Catastrophe Greendale Y

23) nycavri: Trade G1 Y1 Nycavri
	nycavri: And I've gone and given you the edge again.....

24) zoltar: Move G1 Zoltar Blueridge

25) nycavri: Build G1 Nycavri
	zoltar: yes, you have!

26) zoltar: Build G1 Blueridge

27) nycavri: Trade G1 B1 Nycavri

28) zoltar: Trade G1 B1 Blueridge

29) nycavri: Discover B1 Nycavri Y1 Jw

30) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build Y2 Blueridge
Build Y3 Blueridge

31) nycavri: Move B1 Jw Greenbelt
	zoltar: hold on a sec, I need to think for a minute about this -- I may have an interesting sacrifice

32) zoltar: Trade Y3 G3 Zoltar
	zoltar: This would usually be suicidal, leaving two of my systems so vulnerable with three yellows in each, especially my homeworld, but as you only have a y1, I can get away with it and then separate my pieces or change colors if you threaten to blow up a system.
	nycavri: I saw this move, and figured it was 50/50 you doing it.  Gives you strong color position, but leaves you potentially vulnerable.  I took into account my response if you did go for it.....  

33) nycavri: Trade R1 Y1 Greenbelt
	nycavri: At this point in my Homeworlds career, I understand the game, I see dangers one (or sometimes 2) move away, but haven't yet enough experience to spot problems before that, or to disguise my attacks against you.  I feel like I've improved in each of my 3 games, but at some point I lose ground in the "arms race" and spend the rest of the time unsuccessfully trying to catch up again.  Usually ends with me hoping you make a mistake, which to date you have avoided.  In all, this speaks to a well designed game.....

34) zoltar: Trade Y1 R1 Zoltar

35) nycavri: Build Y1 Greenbelt

36) zoltar: Build Y3 Zoltar
	zoltar: I can get a red ship and stop you from getting a Y3 all in one move, so that was a very efficient move, I figure!

37) nycavri: Build B2 Greenbelt

38) zoltar: Build B3 Blueridge

39) nycavri: Discover Y1 Greenbelt G1 Fr

40) zoltar: Sacrifice Y2 Blueridge
Move B3 Blueridge Fr
Move B3 Fr Nycavri
	zoltar: Well, I'm grabbing the big ships, and now have to hope I can stop you from blowing them up before I can spread them out...

41) nycavri: Build Y2 Fr

42) zoltar: Sacrifice R1 Zoltar
Attack G3 Nycavri
	zoltar: Hey wait a second, you got rid of your red ship and you don't have a red star in your homeworld -- no need to chase the pawns when I can go for the checkmate!

43) nycavri: Sacrifice B1 Greenbelt
Trade Y2 R2 Fr

44) zoltar: Trade B3 R3 Nycavri
	zoltar: You needed to trade your yellow for a red again that last move, as with my having a red ship and you without one, and my having 3-sized ships that can reach your homeworld in one move with a yellow sacrifice, I have checkmate if you don't build a 'gun' somewhere to defend your homeworld.

45) nycavri: Build Y2 Fr

46) zoltar: Attack Y1 Nycavri
	nycavri: I hear what you're saying, but it's not like I'd have been in any better shape if I'd traded for red last turn....
	zoltar: Sure you would, as you could sac your r1 and capture my B3 if I put it in your homeworld!  Now it's mate in 1.

	zoltar: The crucial thing to remember is to always have a 3-sized ship in your homeworld and a red ship somewhere, so that you are defended from 3-sized ships attacking.
	nycavri: Right, a turn or two earlier I could have rebuilt a red.


6551)
Started: 2007.2.17, Ended: 2007.2.19
Participants: zoltar (S), nycavri (N)
Winner: zoltar

1) nycavri: Homeworld B1 Y2 G3
	nycavri: Hello again.  You can tell a good game when you want to play again even after being thrashed 3 games in a row.....

2) zoltar: Homeworld G3 B1 B3 *
	nycavri: One game at a time, I think.  *grin*

3) nycavri: Build G1 Nycavri

4) zoltar: Build B1 Zoltar
	zoltar: Ah, I think you accepted my generic challenge while I was issuing a personal one.  Ok, I'll just create another generic one for other players again.  Meanwhile, going to try a 'trick' opening that a better player just pulled on me for the first time, which is this one, where you start with two blues and a green, the idea being to try to get into 2-sized ships first by using up all the b1's.  I don't know if it works, but I didn't make the best moves and got behind early.

5) nycavri: Build G1 Nycavri

6) zoltar: Trade B3 Y3 Zoltar
	nycavri: And you threw me with your Red opening last game.  I'm trying to go by the book for now - builder opening with a G3.

7) nycavri: Trade G1 Y1 Nycavri

8) zoltar: Build B2 Zoltar

9) nycavri: Build Y1 Nycavri

10) zoltar: Discover B2 Zoltar G2 Greendale
	zoltar: Yes, the red stars are more tricky, and are difficult in the opening, as red comes into play only in the later stages of the game (as you just saw), so that you have a slower start with a red star because it's the least used in the opening.

The strongest, safest opening is the one you have now, with yellow, blue, and green, and the small and medium stars, and this is called "the banker" because you can put green ships on 3-sized stars, and then when the color of the star is gone, you can sack your green, destroying the star, then build the 3-sized color that was the star, thus cashing in your 'investment'.  If you play the blue as small star and yellow as medium as you did, it allows this new trick response, which I just saw for the first time and am trying now.  If my trick is successful, then maybe a yellow small star and blue medium star would prevent any tricks.  We'll have to see.  I know very little about openings, and am learning them as I go.

11) nycavri: Build G1 Nycavri

12) zoltar: Build B2 Greendale
	nycavri: Yup - I meant banker, not builder.   Concentrating hard of the stash right now, but you're off to a flyer this time.

13) nycavri: Discover Y1 Nycavri B3 Hl

14) zoltar: Build B2 Zoltar

15) nycavri: Move G1 Nycavri Hl
	zoltar: I think I'm going to call this response to the banker the "bankrobber"!

16) zoltar: Build B3 Greendale

17) nycavri: Build Y1 Hl
	nycavri: Not sure how much more I could be doing to stop you hoarding blue.....
	nycavri: Bankrobber is a good name, though!

18) zoltar: Trade B3 Y3 Greendale

19) nycavri: Discover Y1 Nycavri B3 Tl

20) zoltar: Build B3 Greendale

21) nycavri: Build G1 Nycavri

22) zoltar: Sacrifice B2 Zoltar
Trade B2 R2 Greendale
Trade B3 G3 Greendale

23) nycavri: Trade G1 R1 Nycavri

24) zoltar: Sacrifice G3 Greendale
Build Y2 Zoltar
Build Y2 Zoltar
Build Y3 Greendale
	zoltar: You avoided my sneaky bluebird checkmate, I see!
	nycavri: I do *try* to pay attention.  *grin*

25) nycavri: Discover Y1 Hl B2 Bh

26) zoltar: Move Y2 Zoltar Bh

27) nycavri: Move Y1 Bh Zoltar

28) zoltar: Discover Y2 Zoltar B2 Blueberry

29) nycavri: Move Y1 Tl Bh

30) zoltar: Build B3 Zoltar

31) nycavri: Trade G3 B3 Nycavri

32) zoltar: Trade B3 R3 Zoltar

33) nycavri: Move Y1 Bh Zoltar

34) zoltar: Sacrifice R2 Greendale
Attack Y1 Zoltar
Attack Y1 Zoltar

35) nycavri: Move Y1 Hl Bh

36) zoltar: Move Y3 Zoltar Blueberry

37) nycavri: Sacrifice G1 Hl
Build R1 Nycavri

38) zoltar: Build B3 Greendale

39) nycavri: Build R1 Nycavri

40) zoltar: Trade B3 G3 Greendale

41) nycavri: Discover R1 Nycavri B3 Sw

42) zoltar: Sacrifice G3 Greendale
Build B3 Greendale
Build R2 Zoltar
Build R2 Zoltar

43) nycavri: Move Y1 Bh Sw
	nycavri: I have to run.  Back tonight or tomorrow.  Lots to think about for me in this position - none of it good!

44) zoltar: Move Y2 Blueberry Sw

45) nycavri: Build G1 Nycavri

46) zoltar: Sacrifice R2 Zoltar
Attack Y1 Sw
Attack R1 Sw

47) nycavri: Build R2 Nycavri

48) zoltar: Sacrifice Y3 Greendale
Move R1 Sw Nycavri
Move Y3 Blueberry Sw
Move Y3 Sw Nycavri
Catastrophe Nycavri R

49) nycavri: Build G1 Nycavri

50) zoltar: Sacrifice R3 Zoltar
Attack G1 Nycavri
Attack G1 Nycavri
Attack G1 Nycavri
	nycavri: Have to biuld or I lose this turn.  If I build blue you blow up half my world.  So I build a green, which just delays the inevitable by a turn.  Did I miss anything?

51) nycavri: Pass
	zoltar: No, it's mate in two no matter what at this point.
	nycavri: I lost this one very early - when I did nothing to prevent your Bankrobber.  Have to look at that offline to see if there's a defense.

52) zoltar: Sacrifice R2 Zoltar
Attack B3 Nycavri
Pass



6570)
Started: 2007.2.19, Ended: 2007.2.27
Participants: nycavri (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R1 G3

2) nycavri: Homeworld Y1 B2 G3

3) zoltar: Build G1 Zoltar

4) nycavri: Build G1 Nycavri

5) zoltar: Trade G1 Y1 Zoltar

6) nycavri: Trade G1 Y1 Nycavri

7) zoltar: Build Y2 Zoltar

8) nycavri: Build G1 Nycavri
	nycavri: Didn't think that one through.....

9) zoltar: Discover Y1 Zoltar G2 Greenhills

10) nycavri: Discover Y1 Nycavri G3 Jd

11) zoltar: Build Y2 Greenhills

12) nycavri: Build Y2 Jd

13) zoltar: Discover Y2 Greenhills B3 Bluemoon

14) nycavri: Build Y3 Jd

15) zoltar: Move Y1 Greenhills Jd
Catastrophe Jd Y

16) nycavri: Build G1 Nycavri

17) zoltar: Build Y1 Zoltar

18) nycavri: Trade G1 R1 Nycavri

19) zoltar: Trade Y2 R2 Zoltar

20) nycavri: Build R1 Nycavri

21) zoltar: Build R2 Zoltar

22) nycavri: Trade R1 Y1 Nycavri

23) zoltar: Build Y2 Zoltar

24) nycavri: Discover Y1 Nycavri G3 Sk

25) zoltar: Discover Y2 Zoltar G2 Greenbelt

26) nycavri: Trade G1 B1 Nycavri

27) zoltar: Build G1 Zoltar

28) nycavri: Build Y2 Sk

29) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Bluemoon
Build Y3 Greenbelt

30) nycavri: Build R1 Nycavri
	zoltar: Yellow power!

31) zoltar: Move Y3 Greenbelt Sk
	nycavri: Just another Homeworlds humiliation.....

32) nycavri: Move R1 Nycavri Sk

33) zoltar: Sacrifice R2 Zoltar
Attack Y2 Sk
Attack R1 Sk

34) nycavri: Discover Y1 Sk B2 Klf

35) zoltar: Trade Y3 G3 Zoltar

36) nycavri: Sacrifice G3 Nycavri
Build Y3 Klf
Build R2 Nycavri
Build R2 Nycavri
	nycavri: Ouch.....
	zoltar: The Death Star is almost fully functional...
	nycavri: Where's Luke when you need him?  Or Lando?  Hell, I'd take Jar Jar at this point.....

37) zoltar: Sacrifice Y2 Bluemoon
Move R1 Sk Nycavri
Move Y3 Sk Nycavri
Catastrophe Nycavri R
	zoltar: Actually I meant to trade the Y3 at zoltar, but it makes no difference: either way, zee Zoronian fleet has monopolized zee warp drive technology and plans to expand and expel zee earthlingz from zee galaxy!  Whew Who!

38) nycavri: Sacrifice Y3 Klf
Move Y1 Klf Sk
Move Y1 Sk Nycavri
Pass

39) zoltar: Sacrifice R2 Zoltar
Attack B1 Nycavri
Attack Y1 Nycavri
	zoltar: The nycavri homeworld has fallen to the great Zoltarian fleet!
	nycavri: Yup - that's game.  I think I'm done with Homeworlds on SDG for a little while.  0 for 6 is a little depressing.  Thanks for schooling me again, though.  *grin*

	zoltar: Hey, try playing someone else at it, as I'm one of the three best players -- you now have the experience to have an even game against many of the other players.  Also, try a 4 player homeworlds game, as there is less pressure, and you can lay low and build your fleet while the others attack each other sometimes.


6582)
Started: 2007.2.19, Ended: 2007.3.1
Participants: Uglyfoot (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B1 G3

2) Uglyfoot: Homeworld Y1 B2 G3
	Uglyfoot: Oh no.  I just moved out of last place.  ;>  How's it goin' Emporer?

3) zoltar: Build G1 Zoltar

4) Uglyfoot: Build G1 Uglyfoot

5) zoltar: Trade G1 Y1 Zoltar

6) Uglyfoot: Trade G1 Y1 Uglyfoot

7) zoltar: Build Y2 Zoltar

8) Uglyfoot: Build Y2 Uglyfoot

9) zoltar: Build Y2 Zoltar

10) Uglyfoot: Discover Y2 Uglyfoot G3 Lee

11) zoltar: Trade Y1 R1 Zoltar

12) Uglyfoot: Build G1 Uglyfoot
	zoltar: I've been on a losing streak, but I'm trying to make my comeback.  

13) zoltar: Discover Y2 Zoltar G2 Greenhills
	Uglyfoot: Please forgive me if I try to continue your streak...  ;>

14) Uglyfoot: Trade G1 R1 Uglyfoot

15) zoltar: Build G1 Zoltar

16) Uglyfoot: Build G1 Uglyfoot

17) zoltar: Trade G1 B1 Zoltar

18) Uglyfoot: Build G1 Uglyfoot

19) zoltar: Build B1 Zoltar

20) Uglyfoot: Trade G3 B3 Uglyfoot

21) zoltar: Move B1 Zoltar Greenhills

22) Uglyfoot: Discover G1 Uglyfoot B3 Bigun

23) zoltar: Build B2 Greenhills

24) Uglyfoot: Discover Y1 Uglyfoot B3 Largess

25) zoltar: Build B2 Greenhills

26) Uglyfoot: Build Y1 Lee

27) zoltar: Build Y3 Greenhills

28) Uglyfoot: Build G1 Uglyfoot

29) zoltar: Build Y3 Zoltar

30) Uglyfoot: Build G2 Bigun

31) zoltar: Move Y3 Greenhills Largess

32) Uglyfoot: Move Y2 Lee Greenhills

33) zoltar: Build Y3 Greenhills

34) Uglyfoot: Move Y1 Largess Greenhills
Catastrophe Greenhills Y

35) zoltar: Trade B2 Y2 Greenhills

36) Uglyfoot: Trade G2 Y2 Bigun

37) zoltar: Trade Y3 G3 Zoltar

38) Uglyfoot: Build G2 Bigun

39) zoltar: Sacrifice G3 Zoltar
Build Y1 Largess
Build Y3 Greenhills
Build Y3 Zoltar

40) Uglyfoot: Trade G2 B2 Bigun

41) zoltar: Move B2 Greenhills Bigun

42) Uglyfoot: Discover B2 Bigun R2 Battlestar

43) zoltar: Sacrifice R1 Zoltar
Attack Y2 Bigun

44) Uglyfoot: Trade B3 G3 Uglyfoot
	zoltar: The Death Star is now fully functional. Prepare to fire on the rebel base....stand by...

45) zoltar: Build B3 Greenhills

46) Uglyfoot: Move G1 Uglyfoot Lee

47) zoltar: Move Y3 Zoltar Battlestar

48) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Bigun
Build G2 Bigun
Build G3 Uglyfoot

49) zoltar: Trade B3 R3 Greenhills

50) Uglyfoot: Build R1 Uglyfoot

51) zoltar: Build B3 Greenhills



6612)
Variants: "Hard time"
Started: 2007.2.20, Ended: 2007.3.4
Participants: TwoShort (S), antihero (N)
Winner: TwoShort

1) antihero: Homeworld G2 B1 Y3

2) TwoShort: Homeworld G3 B1 B3 *

3) antihero: Build Y1 Antihero
	TwoShort: Greetings...

	antihero: Hello. I fear I am in much trouble here. ;)

4) TwoShort: Build B1 Twoshort

5) antihero: Build Y1 Antihero
	TwoShort: Hmm, we'll see.  Against the particular homeworld set up you picked, I feel compelled to yet again attempt my wacky "Blue freeze-out" opening, which I like becaus it's different, and seems like it should be effective.  My record with it so far has been considerably less than stellar though.
	antihero: It is wacky. After a beating at Keith's hands I made a mental note to always watch out when small blues are in both towers, but I didn't imagine playing an opening like that. It looks like it could work pretty well. We'll see.
	antihero: towers = homeworlds. I just lost horribly at alien city, so it's on my mind.

6) TwoShort: Trade B3 Y3 Twoshort

7) antihero: Discover Y1 Antihero G3 Evergreen

8) TwoShort: Build B2 Twoshort

9) antihero: Build Y1 Evergreen

10) TwoShort: Discover B1 Twoshort B2 Bluestar

11) antihero: Trade Y3 B3 Antihero

12) TwoShort: Build B2 Twoshort
	antihero: this could go badly very quickly

13) antihero: Build Y2 Antihero

14) TwoShort: Trade B2 Y2 Twoshort

15) antihero: Discover Y1 Evergreen G2 Greenstar

16) TwoShort: Discover Y2 Twoshort B2 Bluesville

17) antihero: Move Y1 Greenstar Twoshort

18) TwoShort: Trade B2 R2 Twoshort

19) antihero: Build Y2 Twoshort

20) TwoShort: Trade Y3 G3 Twoshort

21) antihero: Build Y3 Evergreen
	antihero: snap, didn't see that. Should pay more attention.

22) TwoShort: Sacrifice R2 Twoshort
Attack Y2N Twoshort
Attack Y1N Twoshort
	TwoShort: You had me worried for a bit there

23) antihero: Sacrifice Y2 Antihero
Move Y1 Evergreen Bluesville
Move Y1 Bluesville Twoshort
	antihero: I realize this is a competitive game and all, but did I have a better follow up move than b y3 evergreen?
	TwoShort: Not necessarily; When you first put the y1 in my homeworld, I figured the whole point was to give yourself room to grow the y3 and throw a wrench in my plans to grab the b3s; both of which you've now done.  What I was worried you might do last turn is sacrifice your b3 to turn both of the ys in my homeworld to green and cause a catastrophe, taking my 3 point and one of my stars.  The result of that might have been to your advantage, but any game with the 3 pointers gone is going to be pretty volatile.  In any case, getting a Y3 is hard to argue with.

24) TwoShort: Trade Y2 R2 Twoshort
	antihero: <-- flying by the seat of his pants!
	TwoShort: Hmm...  That one I don't think was such a good idea.

	antihero: yeah, I'm making backwards progress here.. woo!
	antihero: whoops. Sorry. I wish I hadn't done that.


6568)
Started: 2007.2.21, Ended: 2007.3.16
Participants: zoltar (S), beanbagboy (N)
Winner: zoltar

1) beanbagboy: Homeworld B2 G1 Y3

2) zoltar: Homeworld R3 B1 G3
	beanbagboy: Hi, I'm new to SuperDuperGames (but not to Homeworlds. ;)) so how do you name your homeworld?
Thanks.

3) beanbagboy: Build Y1 Beanbagboy

4) zoltar: Build G1 Zoltar
	beanbagboy: I just realized that you can't name the homesystem. So never mind.

5) beanbagboy: Discover Y1 Beanbagboy G3 Megafactory

6) zoltar: Trade G1 Y1 Zoltar

7) beanbagboy: Trade Y3 G3 Beanbagboy

8) zoltar: Build G1 Zoltar



6649)
Started: 2007.2.23, Ended: 2007.3.4
Participants: papa_bear (S), clockwise (N)
Winner: clockwise

1) clockwise: Homeworld B2 Y1 G3

2) papa_bear: Homeworld Y3 B2 G3
	clockwise: Hello, and good luck.
	papa_bear: You too. Are you fairly new to SDG?

3) clockwise: Build G1 Clockwise

4) papa_bear: Build G1 Papa_bear
	clockwise: Relatively yes, I just signed up in January.
	papa_bear: Welcome. What do you think of it?

5) clockwise: Trade G1 Y1 Clockwise

6) papa_bear: Trade G1 B1 Papa_bear
	clockwise: I've enjoyed it thusfar, though I haven't done anything other than Homeworlds yet.

7) clockwise: Build G1 Clockwise

8) papa_bear: Build B1 Papa_bear

9) clockwise: Trade G1 B1 Clockwise

10) papa_bear: Trade B1 Y1 Papa_bear
	papa_bear: Do you play Homeworlds offline, with physical pieces?

11) clockwise: Build Y2 Clockwise
	clockwise: Yes, though not very often.  It's hard to convince my friends to start playing when I beat them all the time.  Plus my preferred icehous game is really Gnostica.

12) papa_bear: Build Y2 Papa_bear
	papa_bear: Sounds like you won't have much trouble beating me in Homeworlds, then. But my understanding is that some of the guys here at SDG are very sharp players.

I'm unfamiliar with Gnostica. I'll do a search later and have a look at it. Homeworlds is the only Icehouse game I've ever played, and I've only played it here.

13) clockwise: Discover Y1 Clockwise G3 Ham
	clockwise: If the forums are to be believed there are a couple people working on an sdg adaption of Gnostica.  But we'll see, it's a pretty complicated game.

14) papa_bear: Discover Y1 Papa_bear R1 Shem
	papa_bear: It does look complicated. I have a low threshhold for complexity when first coming to a game. I prefer a game in which I can get my head around the rules in a matter of minutes, and then spend years or decades trying to get my head around actually playing well. Homeworlds and Chase are about the most complicated games I think I've tried out here at SDG.

15) clockwise: Build G1 Clockwise
	clockwise: And aside from it's complexity it also doesn't work particularly well as a two player game, which I think is a second mark against it for being a good candidate for sdg.  But it's a good game.

16) papa_bear: Build G1 Papa_bear
	papa_bear: Is there something about the processing of multiple players' turns which would be more difficult to program than in the cases of other 3+ player games on SDG?

17) clockwise: Discover G1 Clockwise Y3 Spam
	clockwise: No, not really.  I just find that asynchronous play gets more annoying the more people you add, esp with the possibility of dropouts disrupting the game.
	papa_bear: Ah, yes. Dropouts would be a problem. I have yet to play any 3+ player games here, and I'm not really excited about trying it.

18) papa_bear: Move G1 Papa_bear Shem

19) clockwise: Build G1 Clockwise
	clockwise: Yes, that rather sums up my thoughts.

20) papa_bear: Build B1 Papa_bear

21) clockwise: Build B2 Clockwise

22) papa_bear: Move B1 Papa_bear Shem

23) clockwise: Trade B1 R1 Clockwise

24) papa_bear: Build Y2 Shem

25) clockwise: Build Y3 Ham

26) papa_bear: Build G2 Shem

27) clockwise: Sacrifice Y2 Clockwise
Discover Y3 Ham R1 Viper
Move Y3 Viper Papa_bear

28) papa_bear: Trade Y2 R2 Papa_bear

29) clockwise: Sacrifice R1 Clockwise
Attack R2S Papa_bear

	papa_bear: Doh! I always forget about sacrificing red ones. I better think about this for a bit...
	papa_bear: I can't see a way to survive. Thanks for the game!
	clockwise: The two main mistakes you made were not following me into red and letting me build the y3, both of which compounded each other.  
	clockwise: Thanks for the game!
	papa_bear: I didn't feel comfortable letting you have the y3, so I should have "gone with my gut" that time. As for not developing red, I didn't realize the problem until it was too late :)
	papa_bear: Oh, thanks for the feedback, by the way.


6615)
Variants: "Hard time"
Started: 2007.2.23, Ended: 2007.3.3
Participants: TwoShort (S), Greo (N)
Winner: TwoShort

1) Greo: Homeworld B3 Y2 G3

2) TwoShort: Homeworld B1 R2 G3

3) Greo: Build G1 Greo

4) TwoShort: Build G1 Twoshort
	TwoShort: Howdy.

5) Greo: Discover G1 Greo Y1 Loller
	Greo: Hello :D

6) TwoShort: Trade G1 Y1 Twoshort

7) Greo: Build G1 Loller

8) TwoShort: Build G1 Twoshort

9) Greo: Build G2 Greo

10) TwoShort: Build Y1 Twoshort

11) Greo: Trade G2 B2 Greo

12) TwoShort: Discover Y1 Twoshort G3 Grogar

13) Greo: Build G2 Loller

14) TwoShort: Discover G1 Twoshort Y3 Yolonda

15) Greo: Move B2 Greo Loller

16) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y2 Grogar
Build Y3 Twoshort

	TwoShort: ???!?


6725)
Variants: "Hard time"
Started: 2007.2.26, Ended: 2007.3.15
Participants: eugman (S), clockwise (N)
Winner: clockwise

1) clockwise: Homeworld R1 B2 G3

2) eugman: Homeworld Y3 B1 G3
	clockwise: Hello, and good luck!
	eugman: Interesting start. You are either very foolish or very smart.

3) clockwise: Build G1 Clockwise

4) eugman: Build G1 Eugman
	clockwise: Oh good, I was hoping I wouldn't win this by timing you out before you built your homeworld.

5) clockwise: Trade G1 Y1 Clockwise

6) eugman: Build G1 Eugman

7) clockwise: Build G1 Clockwise
	eugman: Well that should give me a decent buffer of time.

8) eugman: Trade G1 B1 Eugman
	eugman: Will make a move tomorrow.

9) clockwise: Build Y1 Clockwise

	eugman: Oh shoot. I must apologize. My graduation project has taken up my focus.
	clockwise: Ah, that's understandable, perhaps we can have another game sometime when you have more time.


6696)
Variants: "Hard time"
Started: 2007.2.27, Ended: 2007.3.2
Participants: lurker123 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R2 B1 G3



6754)
Variants: "Sinister"
Started: 2007.2.27, Ended: 2008.3.9
Participants: kteague (S), A_TRAIN (N), josser (E)
Winner: josser

1) A_TRAIN: Homeworld G2 B1 Y3
	josser: Hi guys. Just reminding you that this is sinister homeworlds so you have to kill the next person in player order. Adam you lucky guy, you get to kill Kev.

2) josser: Homeworld Y3 G2 B3
	A_TRAIN: I think I'm killing you, cause your next. Your the lucky one.
	josser: You're right Adam, I was looking at the play list. Yay! I get to kill Kev!

3) kteague: Homeworld R1 G2 B3

4) A_TRAIN: Build Y1 A_train
	kteague: i forget how to play ...
	kteague: does this game system allow you to say fuck? I like to say fuck.
	josser: looks like you can say fuck!

5) josser: Build B1 Josser

6) kteague: Build B1 Kteague

7) A_TRAIN: Trade Y1 G1 A_train

8) josser: Discover B1 Josser R1 Kevsux

9) kteague: Trade B1 Y1 Kteague

10) A_TRAIN: Build Y1 A_train

11) josser: Build B1 Josser



6790)
Variants: "Hard time"
Started: 2007.3.1, Ended: 2007.5.4
Participants: nycavri (S), dsheldon (N)
Winner: dsheldon

1) dsheldon: Homeworld R1 B2 G3

2) nycavri: Homeworld B2 Y3 G3
	dsheldon: Don't I remember you from the Icehouse list?
	nycavri: Could be - I recently signed up.  I asked about literature on openings for a couple of games.

3) dsheldon: Build G1 Dsheldon

4) nycavri: Build G1 Nycavri

5) dsheldon: Trade G1 Y1 Dsheldon

6) nycavri: Build G1 Nycavri

7) dsheldon: Build G1 Dsheldon

8) nycavri: Trade G1 Y1 Nycavri

9) dsheldon: Discover G1 Dsheldon Y3 Jerome

10) nycavri: Discover Y1 Nycavri B1 Deacon

11) dsheldon: Build G1 Jerome

12) nycavri: Build G2 Nycavri

13) dsheldon: Build G2 Dsheldon

14) nycavri: Trade G2 Y2 Nycavri

15) dsheldon: Move G1 Jerome Deacon

16) nycavri: Trade Y1 R1 Deacon

17) dsheldon: Sacrifice G3 Dsheldon
Build G2 Deacon
Build G2 Jerome
Build G3 Dsheldon

18) nycavri: Sacrifice G3 Nycavri
Build G3 Nycavri
Build R1 Deacon
Build R2 Deacon

19) dsheldon: Trade G2 R2 Deacon
Catastrophe Deacon R

20) nycavri: Trade G1 R1 Nycavri
	dsheldon: I'm going away for the weekend and a bit more.  I might not make another move until Tuesday, so don't worry if I'm a little late.

21) dsheldon: Sacrifice G3 Dsheldon
Build G1 Jerome
Build G2 Deacon
Build G3 Dsheldon
	nycavri: No problem.  Have a good trip.

22) nycavri: Build G3 Nycavri
	dsheldon: ok... maybe one more, but that's it.

23) dsheldon: Trade G2 Y2 Deacon

24) nycavri: Move Y2 Nycavri Deacon
	nycavri: Welcome back!

25) dsheldon: Discover G1 Jerome Y1 Buttercup
	dsheldon: Thanks.  I had actually forgotten how much I like my family.  15 months will do that, I suppose.

26) nycavri: Sacrifice R1 Nycavri
Attack Y2 Deacon

27) dsheldon: Move G1 Buttercup Nycavri

28) nycavri: Trade G3 R3 Nycavri

29) dsheldon: Sacrifice G3 Dsheldon
Build G2 Nycavri
Build G3 Nycavri
Build G3 Dsheldon
Catastrophe Nycavri G

30) nycavri: Trade R3 G3 Nycavri

31) dsheldon: Build G1 Deacon

32) nycavri: Trade Y2 R2 Deacon

33) dsheldon: Sacrifice G3 Dsheldon
Build G2 Jerome
Build G3 Dsheldon
Build G3 Dsheldon

34) nycavri: Attack G1 Deacon

35) dsheldon: Trade G3 Y3 Dsheldon

36) nycavri: Move G1 Deacon Jerome
Catastrophe Jerome G

37) dsheldon: Sacrifice Y1 Dsheldon
Move G1 Deacon Nycavri
	nycavri: *Not* smart.....

38) nycavri: Move R2 Deacon Nycavri

39) dsheldon: Build G1 Nycavri

40) nycavri: Trade G3 R3 Nycavri

41) dsheldon: Build G1 Nycavri

42) nycavri: Attack G1 Nycavri

43) dsheldon: Sacrifice G3 Dsheldon
Build G2 Nycavri
Build G2 Dsheldon
Build G3 Dsheldon
Catastrophe Nycavri G

44) nycavri: Trade R3 G3 Nycavri

45) dsheldon: Trade G2 R2 Dsheldon

46) nycavri: Build G1 Nycavri

47) dsheldon: Discover R2 Dsheldon Y3 Busstop

48) nycavri: Move G1 Nycavri Deacon

49) dsheldon: Move R2 Busstop Deacon

50) nycavri: Sacrifice R2 Nycavri
Attack R2 Deacon
Pass

51) dsheldon: Discover G2 Dsheldon R3 Caution

52) nycavri: Build G1 Nycavri
	dsheldon: I didn't expect you to leave your homeworld so undefended.  But now that I look at it, I'm in no condition to make an attack, so I guess you made the right choice.

53) dsheldon: Build Y1 Dsheldon
	nycavri: That's what I'm hoping anyway.  In this, my seventh Homeworlds game, I've still yet to be on the front foot.  Needless to say, I'm 0-6 so far.....

54) nycavri: Build Y1 Deacon
	dsheldon: My record's not much better.  The one win I do have was against an exceedingly unskilled opponent.

55) dsheldon: Trade Y1 B1 Dsheldon

56) nycavri: Trade Y1 B1 Deacon
	nycavri: Yup.  The quality of Homeworlds play on SDG is seriously high!

57) dsheldon: Move B1 Dsheldon Caution

58) nycavri: Discover R2 Deacon Y3 May

59) dsheldon: Build B2 Caution

60) nycavri: Discover Y2 Deacon G3 Mercury

61) dsheldon: Trade B2 Y2 Caution

62) nycavri: Trade B1 Y1 Deacon

63) dsheldon: Discover G2 Caution R1 Pom

64) nycavri: Trade G1 R1 Nycavri

65) dsheldon: Build G1 Pom

66) nycavri: Move G1 Deacon May

67) dsheldon: Trade Y2 R2 Caution

68) nycavri: Build R2 Nycavri

69) dsheldon: Build Y1 Dsheldon

70) nycavri: Build R3 May

71) dsheldon: Build G1 Dsheldon

72) nycavri: Build G2 May

73) dsheldon: Trade G1 B1 Dsheldon

74) nycavri: Move R1 Nycavri Deacon

75) dsheldon: Sacrifice B1 Dsheldon
Trade G1 B1 Pom

76) nycavri: Build R3 Nycavri

77) dsheldon: Build B2 Pom

78) nycavri: Move R3 Nycavri Pom

79) dsheldon: Sacrifice Y3 Dsheldon
Move G2 Pom Caution
Discover B1 Pom B3 Chase
Discover B2 Pom G2 Pacific

80) nycavri: Move R1 Deacon Chase

81) dsheldon: Build B3 Caution

82) nycavri: Attack B1 Chase

83) dsheldon: Build B3 Pacific

84) nycavri: Sacrifice B1 Chase
Trade R3 Y3 Pom

85) dsheldon: Sacrifice B2 Pacific
Trade B3 R3 Pacific
Trade B1 Y1 Caution

86) nycavri: Sacrifice Y3 Pom
Move R1 Chase Dsheldon
Move R2 May Dsheldon
Move R3 May Dsheldon
Catastrophe Dsheldon R
	dsheldon: Uh oh.  I didn't think much of your trade in Chase, but now I am quite worried.
	dsheldon: Err, not trade, move to.  I am so kicking myself for not seeing that.

87) dsheldon: Build Y2 Dsheldon

88) nycavri: Move G1 May Dsheldon
	nycavri: Worried with good reason it turned out....  First time I've taken out an opponent's home planet on SDG.  Apparently I *was* learning something in all those previous thrashings!

89) dsheldon: Sacrifice B3 Caution
Trade G3 R3 Dsheldon
Trade Y1 B1 Dsheldon
Trade Y1 B1 Caution

90) nycavri: Build G1 Nycavri

91) dsheldon: Attack G1S Dsheldon

92) nycavri: Move Y2 Mercury Deacon
	dsheldon: I'm a big fan of unorthodox defenses

93) dsheldon: Build B2 Caution

94) nycavri: Move G1 Nycavri Deacon
	dsheldon: y'know what, that's the first time I ever captured a ship.  huh.

95) dsheldon: Build B3 Dsheldon

96) nycavri: Build G1 Nycavri

97) dsheldon: Move B3 Dsheldon Deacon

98) nycavri: Sacrifice G3 Nycavri
Build G3 Nycavri
Build G3 Deacon
Build G3 May

99) dsheldon: Sacrifice R3 Pacific
Attack G3S Deacon
Attack Y2S Deacon
Attack G1S Deacon

100) nycavri: Trade G1 Y1 Nycavri

101) dsheldon: Trade G3 R3 Deacon

102) nycavri: Trade G3 B3 Nycavri

103) dsheldon: Attack Y1S Deacon
	nycavri: Ooops.....

104) nycavri: Trade Y1 R1 Nycavri

105) dsheldon: Sacrifice Y1 Deacon
Discover B1 Caution G1 Penny

106) nycavri: Discover G3 May Y2 Mercury
	nycavri: That wasn't it.  Don't know why I thought Deacon had a Yellow star.....

107) dsheldon: Build B3 Penny

108) nycavri: Trade B3 Y3 Nycavri

109) dsheldon: Move R3 Deacon May

110) nycavri: Discover G2 May Y1 Taylor

111) dsheldon: Build G2 Dsheldon

112) nycavri: Build G3 Taylor

113) dsheldon: Sacrifice Y2 Deacon
Move G2 Caution Taylor
Move G1 Dsheldon Taylor
Catastrophe Taylor G
	dsheldon: That was a really good move.  Very frustrating ;)

114) nycavri: Build G1 Mercury

115) dsheldon: Sacrifice B3 Penny
Trade R3 G3 May
Trade R2 Y2 Caution
Trade B3 R3 Deacon

116) nycavri: Discover G3 Mercury B3 Taylor

117) dsheldon: Trade B1 Y1 Penny

118) nycavri: Sacrifice G3 Taylor
Build R1 Nycavri
Build G2 Mercury
Build G2 Mercury

119) dsheldon: Sacrifice Y2 Caution
Move G1 Deacon Mercury
Move R3 Deacon Nycavri
Catastrophe Nycavri R
Catastrophe Mercury G

120) nycavri: Trade Y3 R3 Nycavri

121) dsheldon: Build R1 Dsheldon

	nycavri: Ah, right you are.  Well played.  I'm now 0 for 9.....


6856)
Started: 2007.3.3, Ended: 2007.3.3
Participants: josser (S), guymauve (N)
Winner: guymauve

1) guymauve: Homeworld G3 B2 Y3

2) josser: Homeworld G3 B2 Y3

3) guymauve: Build Y1 Guymauve

4) josser: Build Y1 Josser

5) guymauve: Discover Y3 Guymauve R1 Kaka

6) josser: Trade Y3 G3 Josser

7) guymauve: Build Y1 Guymauve

8) josser: Sacrifice G3 Josser
Build Y2 Josser
Build Y2 Josser
Pass

9) guymauve: Build Y2 Guymauve

10) josser: Build Y3 Josser

11) guymauve: Move Y2 Guymauve Kaka
Catastrophe Josser Y



6823)
Started: 2007.3.3, Ended: 2008.2.22
Participants: kteague (S), josser (N)
Winner: josser

1) josser: Homeworld G3 B2 Y3

2) kteague: Homeworld G3 B1 R3

3) josser: Build Y1 Josser

4) kteague: Build R1 Kteague

5) josser: Trade Y1 R1 Josser

6) kteague: Trade R1 Y1 Kteague

7) josser: Build Y1 Josser



6862)
Variants: "Hard time"
Started: 2007.3.5, Ended: 2007.5.3
Participants: antihero (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B3 R1 G3

2) antihero: Homeworld B1 Y2 G3

3) Uglyfoot: Build G1 Uglyfoot

4) antihero: Build G1 Antihero

5) Uglyfoot: Trade G1 Y1 Uglyfoot

6) antihero: Trade G1 Y1 Antihero

7) Uglyfoot: Build G1 Uglyfoot

8) antihero: Build G1 Antihero

9) Uglyfoot: Trade G1 R1 Uglyfoot

10) antihero: Trade G1 R1 Antihero

11) Uglyfoot: Discover R1 Uglyfoot G2 Aleph

12) antihero: Build G1 Antihero

13) Uglyfoot: Build R2 Aleph

14) antihero: Build R2 Antihero

15) Uglyfoot: Build G1 Uglyfoot

16) antihero: Discover G1 Antihero Y3 Gamma

17) Uglyfoot: Build Y1 Uglyfoot

18) antihero: Build Y2 Antihero

19) Uglyfoot: Move Y1 Uglyfoot Aleph

20) antihero: Discover Y2 Antihero G3 Biggreen

21) Uglyfoot: Move R2 Aleph Gamma

22) antihero: Discover G1 Gamma B2 Switch

23) Uglyfoot: Build R2 Aleph

24) antihero: Build G1 Switch

25) Uglyfoot: Move G1 Uglyfoot Switch

26) antihero: Build G2 Antihero

27) Uglyfoot: Sacrifice R2 Aleph
Attack G1 Switch
Attack G1 Switch

28) antihero: Build G2 Antihero

29) Uglyfoot: Build Y2 Aleph

30) antihero: Sacrifice G2 Antihero
Build Y3 Biggreen
Pass

31) Uglyfoot: Build Y3 Uglyfoot

32) antihero: Discover G2 Antihero B3 Delta

33) Uglyfoot: Move Y2 Aleph Biggreen

34) antihero: Sacrifice Y2 Biggreen
Move R2 Antihero Delta
Move R2 Delta Switch

35) Uglyfoot: Sacrifice Y3 Uglyfoot
Move G1 Switch Gamma
Move G1 Switch Delta
Move G1 Switch Biggreen



6859)
Started: 2007.3.6, Ended: 2007.3.18
Participants: TwoShort (S), clockwise (N)
Winner: clockwise

1) clockwise: Homeworld Y2 B1 G3

2) TwoShort: Homeworld R3 B1 G3
	clockwise: Greetings

3) clockwise: Build G1 Clockwise
	TwoShort: Howdy.

4) TwoShort: Build G1 Twoshort

5) clockwise: Trade G1 B1 Clockwise

6) TwoShort: Build G1 Twoshort

7) clockwise: Build B2 Clockwise
	TwoShort: I was wondering if you would go for that... 

8) TwoShort: Trade G1 Y1 Twoshort

9) clockwise: Discover B2 Clockwise G3 Spawningpool
	clockwise: I generally think it's a terrible idea to start with a small of the same color as the starting player. If you were a weaker player I'd assume it was just bad play, but right now I'm wondering if instead it is some sort of trap.
	TwoShort: Lately I've been responding to your opening (or any with a b1 star) with G3 B1 B3, enabling me to grow the final B1 on the first turn before the opponent can do anything about it.  This has been fairly effective, but I theorize that this is because my opponents don't handle it well.  So in order to test this theory, I was somewhat interested in having someone put the freeze-out on me for a change.  So, a trap?  Not really.  I wanted you to do it, but I don't have a concrete plan what to do next, and I'm wondering if it was really a bad idea...

10) TwoShort: Build Y1 Twoshort
	clockwise: In this case I think I have three main advantages that the G3 B1 B3 opening doesn't have: Tempo, immediate access to yellow, and the ability to safely factory in my homesystem.  I guess we'll see how it turns out.

11) clockwise: Build B2 Spawningpool

12) TwoShort: Discover Y1 Twoshort B2 Bluestar

13) clockwise: Build B3 Spawningpool

14) TwoShort: Build Y1 Twoshort

15) clockwise: Trade B3 Y3 Spawningpool
	TwoShort: Did I say something about having any theory whatsoever about what the bleep I'm doing?  
Heh.

16) TwoShort: Discover Y1 Twoshort Y2 Yolonda
	clockwise: Well two good things about this game are that it is different from most, and that it is moving quickly...

17) clockwise: Build Y2 Spawningpool
	clockwise: Nice play
	TwoShort: Well, my basic theory for dealing with the blue freeze-out (mostly ignore it, and push yellow) seems to be working out; but I hope your delay in making the next move isn't from discouragement, because I think your position is still pretty strong.  I'm having to resist posting an extensive analysis of what I think you should do :)  
	clockwise: No, not discouragement, but need to sit down and work things through, and I've been pretty busy with other things.
	clockwise: You can give me an analysis of what you think I should do at this point once the game is done ;)

18) TwoShort: Sacrifice G3 Twoshort
Build Y3 Bluestar
Build Y3 Twoshort
Build G1 Twoshort
	clockwise: My own analysis is that unless I have a second yellow it will be very hard to win... though I don't like letting you into the large pieces.
	TwoShort: That's essentially what I was thinking, except to note that letting me into the Y3s was not avoidable :)

19) clockwise: Build B3 Spawningpool

20) TwoShort: Discover Y1 Yolonda B3 Borbor

21) clockwise: Build B3 Clockwise

22) TwoShort: Sacrifice G1 Twoshort
Build Y2 Borbor

23) clockwise: Discover Y3 Spawningpool G2 Ultralisk
	clockwise: So, I'm guessing you're Robert over on the icehouse list.  Does that mean I could win the zpips if I win this game, or would that only apply to a game where you hadn't intentionally crippled yourself at the start?  :)
	TwoShort: Yes I am, but sorry, you'll have to start a new game if you want the ZPIPs.  I think "pursued a dubious experimental strategy" sounds better than "intentionally crippled yourself", but yeah... :)
	clockwise: Only reasonable I suppose.

24) TwoShort: Trade Y2 R2 Borbor

25) clockwise: Trade B2 R2 Spawningpool

26) TwoShort: Trade Y3 G3 Twoshort

27) clockwise: Move B3 Clockwise Borbor

28) TwoShort: Sacrifice Y1 Borbor
Discover R2 Borbor G1 Glenwood

29) clockwise: Build R1 Spawningpool

30) TwoShort: Trade Y1 G1 Bluestar

31) clockwise: Move R1 Spawningpool Ultralisk

32) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G2 Bluestar
Build G3 Twoshort

33) clockwise: Build R1 Ultralisk

34) TwoShort: Sacrifice Y3 Bluestar
Move G1 Bluestar Spawningpool
Move G2 Bluestar Spawningpool
Move G2 Bluestar Spawningpool
Catastrophe Spawningpool Green

35) clockwise: Build G1 Clockwise

36) TwoShort: Discover G1 Twoshort B2 Bluonia
	clockwise: doh!

	clockwise: Well, I guess this game isn't just about over afterall.

37) clockwise: Build R1 Ultralisk

38) TwoShort: Sacrifice Y1 Twoshort
Move R2 Glenwood Ultralisk
Catastrophe Ultralisk Red
	TwoShort: I can't say I'm thrilled with my chances, but I imagine I can make you work for it :)

39) clockwise: Build Y1 Ultralisk
	clockwise: Yeah I do still have a strong advantage; I just have to be careful so that I don't make some little mistake which lets you turn the tides...  For the tides, they are fickle in homeworlds.

40) TwoShort: Build G1 Twoshort
	clockwise: I was wondering if you'd accept that exchange.

41) clockwise: Build B2 Clockwise

42) TwoShort: Build G2 Bluonia
	TwoShort: I wasn't crazy about it, but if I let you blow up my red star, I wasn't going to be able to stop you from taking out the blue one in short order.

43) clockwise: Trade B2 R2 Clockwise

44) TwoShort: Trade G2 Y2 Bluonia

45) clockwise: Trade G3 Y3 Clockwise

46) TwoShort: Trade Y2 R2 Bluonia

47) clockwise: Sacrifice Y1 Ultralisk
Move B3 Borbor Bluonia
	clockwise: You'd have been better off trading the g1.
	TwoShort: And you'd have been better off not saying anything... I might not have seen it :) The wasted turn isn't what I needed though.


	clockwise: I probably would have kept quiet, except that I believe it was already to late.
	TwoShort: Ahh... so it is.  Great game.  Whenever you're ready for a rematch, let me know!


6915)
Started: 2007.3.9, Ended: 2007.4.28
Participants: Personman (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld Y3 B1 G3
	_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!
	Jesse: Have a good game.

2) Personman: Homeworld Y2 B1 G3
	Personman: Ganbatte.

3) Jesse: Build G1 Jesse

4) Personman: Build G1 Personman

5) Jesse: Trade G1 B1 Jesse

6) Personman: Trade G1 Y1 Personman

7) Jesse: Build B2 Jesse

8) Personman: Build Y1 Personman
	Personman: 

9) Jesse: Discover B2 Jesse G2 Wens

10) Personman: Discover Y1 Personman G3 G3a

11) Jesse: Build B2 Wens

12) Personman: Move Y1 G3a Wens

13) Jesse: Trade B2 R2 Wens

14) Personman: Move Y1 Wens Jesse

15) Jesse: Sacrifice R2 Wens
Attack Y1 Jesse
Pass

16) Personman: Build G1 Personman

17) Jesse: Build B2 Wens

18) Personman: Build G1 Personman

19) Jesse: Trade B2 Y2 Wens

20) Personman: Discover G1 Personman B3 B3a

21) Jesse: Build B2 Wens

22) Personman: Build G1 B3a

23) Jesse: Build G2 Jesse

24) Personman: Trade G1 Y1 B3a

25) Jesse: Discover B2 Wens G3 Scrim

26) Personman: Sacrifice G3 Personman
Build G1 B3a
Build G2 Personman
Build G3 Personman

27) Jesse: Sacrifice G3 Jesse
Build B2 Wens
Build B3 Scrim
Build G3 Jesse

28) Personman: Sacrifice G3 Personman
Build Y2 Personman
Build Y3 B3a
Build G3 Personman

29) Jesse: Trade B3 R3 Scrim

30) Personman: Sacrifice Y2 Personman
Discover Y1 B3a R2 Temp
Move Y1 Temp Jesse

31) Jesse: Sacrifice Y1 Jesse
Move R3 Scrim Personman



6916)
Started: 2007.3.9, Ended: 2007.4.15
Participants: Lexicon (S), jeep (N)
Winner: jeep

1) jeep: Homeworld Y1 B2 G3
	_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

2) Lexicon: Homeworld Y1 B3 G3

3) jeep: Build G1 Jeep
	jeep: b g1 jeep
	jeep: *laugh*  I suck.. I shouldn't be making moves right now I guess.  Still pretty out of it.  Had the flu all week.

4) Lexicon: Build G1 Lexicon
	Lexicon: I have at least half a dozen chat messages saved in my Notebook. :)

5) jeep: Trade G1 Y1 Jeep

6) Lexicon: Build G1 Lexicon

7) jeep: Build Y2 Jeep

8) Lexicon: Discover G1 Lexicon G2 Alanine

9) jeep: Discover Y1 Jeep G3 Thumb

10) Lexicon: Trade G1 R1 Lexicon

11) jeep: Build Y2 Jeep

12) Lexicon: Build G1 Lexicon

13) jeep: Build G1 Jeep

14) Lexicon: Discover G1 Lexicon B2 Candle

15) jeep: Discover Y2 Jeep B3 Wind

16) Lexicon: Build G2 Lexicon

17) jeep: Sacrifice G3 Jeep
Build G2 Jeep
Build G3 Jeep
Build Y2 Thumb

18) Lexicon: Trade G1 B1 Candle

19) jeep: Sacrifice G3 Jeep
Build Y3 Jeep
Build Y3 Wind
Build Y3 Wind

20) Lexicon: Sacrifice G3 Lexicon
Build G1 Alanine
Build G3 Lexicon
Build B1 Candle

21) jeep: Build G3 Jeep

22) Lexicon: Sacrifice B1 Candle
Trade G1 B1 Alanine

23) jeep: Trade G2 B2 Jeep

24) Lexicon: Discover G2 Lexicon R2 Lysine

25) jeep: Move G1 Jeep Wind

26) Lexicon: Build G1 Lexicon

27) jeep: Build G2 Wind

28) Lexicon: Sacrifice G3 Lexicon
Build G3 Lexicon
Build R1 Lexicon
Build R1 Lexicon

29) jeep: Trade G2 R2 Wind

30) Lexicon: Move R1 Lexicon Alanine

31) jeep: Sacrifice G3 Jeep
Build G2 Wind
Build G3 Wind
Build R2 Wind

32) Lexicon: Sacrifice G3 Lexicon
Build B1 Candle
Build B3 Alanine
Build G3 Lexicon

33) jeep: Build R3 Wind

34) Lexicon: Build R3 Alanine
	Lexicon: I feel a hurtin' comin' on.

35) jeep: Move R2 Wind Candle

36) Lexicon: Move R1 Lexicon Lysine
	jeep: Yeah, I think so.  I'm just paranoid that I'm going to give up what looks like a locked up game.

37) jeep: Sacrifice G2 Wind
Build G2 Wind
Build R3 Candle

38) Lexicon: Pass

39) jeep: Move G2 Wind Candle
	Lexicon: I honestly would have resigned like ten moves ago (whenever you hoarded the yellows), but tournament etiquette suggests I shouldn't I suppose and hey, maybe you'll screw up. :)
	jeep: I won't be offended if you resign.  But yeah, I might screw up...

	Lexicon: meh.  I doubt this is much fun for either of us.  I have been trounced.  Good game! :)
	jeep: Yeah, not really, but I think I had it in hand.  I think I could have won it faster, but I was paranoid I'd screw up.
	Lexicon: Better safe than sorry for the tournament.  :)


6917)
Started: 2007.3.9, Ended: 2007.3.20
Participants: Uglyfoot (S), bigby (N)
Winner: bigby

1) bigby: Homeworld B1 G2 Y3
	_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

2) Uglyfoot: Homeworld B3 Y1 G3

3) bigby: Build Y1 Bigby

4) Uglyfoot: Build G1 Uglyfoot

5) bigby: Trade Y1 G1 Bigby

6) Uglyfoot: Trade G1 Y1 Uglyfoot

7) bigby: Build G1 Bigby

8) Uglyfoot: Discover Y1 Uglyfoot B2 Leo

9) bigby: Build Y1 Bigby

10) Uglyfoot: Build G1 Uglyfoot

11) bigby: Build Y2 Bigby

12) Uglyfoot: Move G1 Uglyfoot Leo

13) bigby: Discover Y2 Bigby R3 Fallback

14) Uglyfoot: Build G2 Uglyfoot

15) bigby: Move G1 Bigby Fallback

16) Uglyfoot: Build Y2 Leo

17) bigby: Discover G1 Fallback B2 Roget

18) Uglyfoot: Discover Y2 Leo G3 Geo

19) bigby: Build G2 Roget

20) Uglyfoot: Build G3 Leo

21) bigby: Sacrifice Y2 Fallback
Move G1 Roget Uglyfoot
Move G2 Roget Uglyfoot
Catastrophe Uglyfoot G
	bigby: By the skin of my teeth.  Thanks for the game!
	Uglyfoot: Nicely played.  



6918)
Started: 2007.3.9, Ended: 2007.4.28
Participants: Aaron (S), ldd23 (N)
Winner: Aaron

1) ldd23: Homeworld B3 Y1 G3
	_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

2) Aaron: Homeworld B2 Y1 G3
	Aaron: You live!  Welcome back!  I hope all is well.

	Aaron: Sorry, ldd.  I sure hope all is well!


6919)
Started: 2007.3.9, Ended: 2007.4.13
Participants: Cerulean (S), Subhan64 (N)
Winner: Cerulean

1) Subhan64: Homeworld B1 Y3 G3
	_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!

2) Cerulean: Homeworld G2 B1 Y3
	Subhan64: good luck!


3) Subhan64: Build G1 Subhan64

4) Cerulean: Build Y1 Cerulean

5) Subhan64: Trade G1 Y1 Subhan64

6) Cerulean: Trade Y1 G1 Cerulean

7) Subhan64: Build G1 Subhan64

8) Cerulean: Build Y1 Cerulean

9) Subhan64: Discover G1 Subhan64 G2 Omicronpersei8

10) Cerulean: Discover Y1 Cerulean G3 Jithrii

11) Subhan64: Build G1 Subhan64

12) Cerulean: Build Y1 Cerulean

13) Subhan64: Sacrifice G3 Subhan64
Build G2 Omicronpersei8
Build G3 Subhan64
Build G3 Subhan64

14) Cerulean: Move G1 Cerulean Jithrii

15) Subhan64: Trade G3 R3 Subhan64

16) Cerulean: Build Y2 Jithrii

17) Subhan64: Trade G1 B1 Subhan64

18) Cerulean: Build Y2 Cerulean

19) Subhan64: Sacrifice B1 Subhan64
Trade G2 Y2 Omicronpersei8

20) Cerulean: Trade Y2 R2 Cerulean

21) Subhan64: Move R3 Subhan64 Omicronpersei8

22) Cerulean: Discover Y1 Jithrii B2 Betou

23) Subhan64: Sacrifice Y2 Omicronpersei8
Move R3 Omicronpersei8 Jithrii
Move R3 Jithrii Cerulean

24) Cerulean: Attack R3N Cerulean

25) Subhan64: Trade Y1 R1 Subhan64

26) Cerulean: Trade R2 G2 Cerulean
	Cerulean: uh, thanks!
	Subhan64: D'oh!  Misread the rules I guess, was thinking you couldn't capture it as it was bigger than your red ship :-(

27) Subhan64: Build R1 Subhan64

28) Cerulean: Move Y1 Cerulean Jithrii

29) Subhan64: Trade R1 Y1 Subhan64

30) Cerulean: Build Y2 Cerulean

31) Subhan64: Build Y2 Subhan64

32) Cerulean: Move Y1 Betou Subhan64
Catastrophe Subhan64 Y

	Subhan64: Ouch.  At this point I think I should just resign,rather than drag this on & on
	Subhan64: gg!


6920)
Started: 2007.3.9, Ended: 2007.4.19
Participants: Hedge_o_Matic (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld B1 Y3 G3
	_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"!  Your tournament directors include: Aaron.  Please contact them if you have any questions or problems.  For detailed information as to the rules and state of this tournament, please visit the wiki.  Good luck!
	Laurie_Menke: Have a good game, Hedge!

2) Hedge_o_Matic: Homeworld Y3 B1 G3

3) Laurie_Menke: Build G1 Laurie_menke
	Hedge_o_Matic: Thanks!  Sorry for that delay!
	Laurie_Menke: No problem.

4) Hedge_o_Matic: Build G1 Hedge_o_matic

5) Laurie_Menke: Trade G1 B1 Laurie_menke

6) Hedge_o_Matic: Build G1 Hedge_o_matic

7) Laurie_Menke: Build B2 Laurie_menke

8) Hedge_o_Matic: Trade G1 Y1 Hedge_o_matic

9) Laurie_Menke: Discover B1 Laurie_menke Y2 Luella

10) Hedge_o_Matic: Discover G1 Hedge_o_matic R2 Penrose

11) Laurie_Menke: Build G1 Laurie_menke

12) Hedge_o_Matic: Build G1 Penrose

13) Laurie_Menke: Move G1 Laurie_menke Luella

14) Hedge_o_Matic: Build G2 Hedge_o_matic

15) Laurie_Menke: Move G1 Luella Hedge_o_matic

16) Hedge_o_Matic: Trade G2 R2 Hedge_o_matic
	Hedge_o_Matic: Alert!  Alert!  Bug-eyed monsters have invaded!
	Laurie_Menke: Hey now!  Who you calling bug-eyed?!?  ;o)

17) Laurie_Menke: Move G1 Hedge_o_matic Luella

18) Hedge_o_Matic: Move R2 Hedge_o_matic Luella

19) Laurie_Menke: Move G1 Luella Hedge_o_matic
	Hedge_o_Matic: Ha!  My tracking device worked!
	Laurie_Menke: For now...we're just orbiting the planet.  ;o)

20) Hedge_o_Matic: Discover Y1 Hedge_o_matic G2 Phi

21) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Hedge_o_matic
Build G2 Hedge_o_matic
Build G3 Hedge_o_matic
Catastrophe Hedge_o_matic Green
	Laurie_Menke: Surprise!  ;o)  Thanks for the fun, Hedge_o_Matic!  :o)



6882)
Started: 2007.3.11, Ended: 2007.3.11
Participants: TwoShort (S), colodo (N)
Winner: TwoShort

1) colodo: Pass
	TwoShort: Howdy.



6815)
Started: 2007.3.11, Ended: 2007.3.22
Participants: Uglyfoot (S), MikeYarrum (N)
Winner: Uglyfoot

1) MikeYarrum: Homeworld G2 Y1 B3

2) Uglyfoot: Homeworld B3 Y1 G3

3) MikeYarrum: Build B1 Mikeyarrum

4) Uglyfoot: Build G1 Uglyfoot

5) MikeYarrum: Trade B1 Y1 Mikeyarrum

6) Uglyfoot: Trade G3 Y3 Uglyfoot

7) MikeYarrum: Build Y2 Mikeyarrum

8) Uglyfoot: Build Y2 Uglyfoot

9) MikeYarrum: Trade Y2 G2 Mikeyarrum

10) Uglyfoot: Discover Y2 Uglyfoot B2 Thestrip

11) MikeYarrum: Build Y2 Mikeyarrum

12) Uglyfoot: Build G1 Uglyfoot

13) MikeYarrum: Discover Y2 Mikeyarrum B3 Zone

14) Uglyfoot: Move G1 Uglyfoot Thestrip

15) MikeYarrum: Move G2 Mikeyarrum Zone

16) Uglyfoot: Build G1 Thestrip

17) MikeYarrum: Build Y2 Zone

18) Uglyfoot: Build G2 Uglyfoot

19) MikeYarrum: Trade Y2 R2 Zone

20) Uglyfoot: Trade G2 R2 Uglyfoot

21) MikeYarrum: Build R1 Zone

22) Uglyfoot: Build G2 Uglyfoot

23) MikeYarrum: Move R1 Zone Thestrip

24) Uglyfoot: Move G1 Thestrip Zone

25) MikeYarrum: Attack G1 Zone

26) Uglyfoot: Build G3 Thestrip

27) MikeYarrum: Attack G1 Thestrip

28) Uglyfoot: Sacrifice R2 Uglyfoot
Attack R1 Thestrip
Attack G1 Thestrip

29) MikeYarrum: Sacrifice Y2 Zone
Move G1 Zone Thestrip
Move G2 Zone Thestrip
Catastrophe Thestrip Green

30) Uglyfoot: Build Y2 Uglyfoot

31) MikeYarrum: Trade B3 G3 Mikeyarrum

32) Uglyfoot: Move G2 Uglyfoot Thestrip

33) MikeYarrum: Move G3 Mikeyarrum Zone

34) Uglyfoot: Sacrifice Y2 Uglyfoot
Move Y2 Thestrip Zone
Move Y2 Zone Mikeyarrum

35) MikeYarrum: Sacrifice Y1 Mikeyarrum
Move R2 Zone Mikeyarrum

36) Uglyfoot: Sacrifice R1 Thestrip
Attack R2 Mikeyarrum



6774)
Started: 2007.3.11, Ended: 2007.3.24
Participants: MikeYarrum (S), dsheldon (N)
Winner: dsheldon

1) dsheldon: Homeworld Y1 B2 G3
	dsheldon: Woah, I don't even remember placing this challenge.  Sorry for the slow response, I was out of town all weekend and yesterday.

2) MikeYarrum: Homeworld Y1 B3 G3
	MikeYarrum: No problem.

3) dsheldon: Build G1 Dsheldon

4) MikeYarrum: Build G1 Mikeyarrum

5) dsheldon: Trade G1 Y1 Dsheldon

6) MikeYarrum: Trade G1 B1 Mikeyarrum

7) dsheldon: Build G1 Dsheldon

8) MikeYarrum: Build G1 Mikeyarrum

9) dsheldon: Build Y2 Dsheldon

10) MikeYarrum: Build B1 Mikeyarrum

11) dsheldon: Discover G1 Dsheldon Y3 Jerome

12) MikeYarrum: Discover B1 Mikeyarrum G2 Eugene

13) dsheldon: Move Y2 Dsheldon Jerome

14) MikeYarrum: Build B1 Mikeyarrum

15) dsheldon: Build Y2 Jerome

16) MikeYarrum: Build B2 Eugene

17) dsheldon: Build G1 Dsheldon

18) MikeYarrum: Trade B2 Y2 Eugene

19) dsheldon: Sacrifice G3 Dsheldon
Build G2 Jerome
Build G2 Dsheldon
Build G3 Dsheldon

20) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G3 Mikeyarrum
Build Y3 Eugene
Build B2 Eugene

21) dsheldon: Trade G3 R3 Dsheldon

22) MikeYarrum: Trade Y3 R3 Eugene

23) dsheldon: Discover Y2 Jerome R2 Phobos

24) MikeYarrum: Move R3 Eugene Jerome

25) dsheldon: Sacrifice Y2 Jerome
Move G1 Jerome Eugene
Move G2 Jerome Eugene

26) MikeYarrum: Trade G3 R3 Mikeyarrum

27) dsheldon: Build G3 Dsheldon

28) MikeYarrum: Trade B2 R2 Eugene

29) dsheldon: Sacrifice G3 Dsheldon
Build G3 Eugene
Build Y2 Dsheldon
Build Y3 Phobos
Catastrophe Eugene G

30) MikeYarrum: Trade B1 G1 Mikeyarrum

31) dsheldon: Trade Y2 B2 Dsheldon

32) MikeYarrum: Build G2 Mikeyarrum

33) dsheldon: Sacrifice G2 Dsheldon
Build Y2 Phobos
Build G2 Dsheldon

34) MikeYarrum: Discover G1 Mikeyarrum B2 Apollo

35) dsheldon: Sacrifice B2 Dsheldon
Trade Y2 B2 Phobos
Trade Y2 G2 Phobos

36) MikeYarrum: Build G3 Apollo

37) dsheldon: Build G3 Phobos

38) MikeYarrum: Trade G2 Y2 Mikeyarrum

39) dsheldon: Trade G3 B3 Phobos

40) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move R3 Jerome Phobos
Move R3 Mikeyarrum Phobos

41) dsheldon: Sacrifice Y3 Phobos
Move B2 Phobos Mikeyarrum
Move B3 Phobos Mikeyarrum
Move G2 Phobos Mikeyarrum
Catastrophe Mikeyarrum B

42) MikeYarrum: Build G2 Mikeyarrum

43) dsheldon: Build G3 Mikeyarrum
Catastrophe Mikeyarrum G

	dsheldon: Any time is fine.  I wouldn't force you to continue if you felt you had no chance, but I would also gladly play through with you just for the experience.  In any event, it will be moot in about thirty seconds.
	dsheldon: I was actually quite worried until you over extended yourself into Phobos right near the end.


6956)
Variants: "Hard time"
Started: 2007.3.12, Ended: 2007.3.26
Participants: Werebear (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) Werebear: Homeworld G2 Y1 B3
	TwoShort: Howdy.

3) TwoShort: Build G1 Twoshort
	Werebear: Greetings!

4) Werebear: Build B1 Werebear

5) TwoShort: Trade G1 Y1 Twoshort

6) Werebear: Discover B1 Werebear G3 Harvest

7) TwoShort: Build G1 Twoshort

8) Werebear: Build B1 Harvest

9) TwoShort: Build Y1 Twoshort

10) Werebear: Build B1 Werebear

11) TwoShort: Discover Y1 Twoshort B3 Borbor

12) Werebear: Build B2 Werebear

13) TwoShort: Build Y2 Twoshort
	TwoShort: Dangit, the blue freeze-out is supposed to be my trademark tactic.

14) Werebear: Build B2 Harvest

15) TwoShort: Discover Y1 Twoshort G3 Grogar
	Werebear: Hrm... Well, I've had a bit of practice at it...
	TwoShort: Clearly :)

16) Werebear: Trade B2 Y2 Harvest

17) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Borbor
Build Y3 Twoshort

18) Werebear: Discover B2 Werebear G3 Charity

19) TwoShort: Move Y1 Grogar Werebear

20) Werebear: Build Y3 Harvest

21) TwoShort: Sacrifice Y2 Twoshort
Move Y2 Grogar Werebear
Move Y1 Borbor Werebear
Catastrophe Werebear Yellow

22) Werebear: Trade B3 G3 Werebear

23) TwoShort: Build G1 Twoshort

24) Werebear: Sacrifice G3 Werebear
Build B2 Charity
Build B3 Harvest
Build B3 Werebear

25) TwoShort: Build G1 Twoshort



6972)
Variants: "Hard time"
Started: 2007.3.12, Ended: 2007.4.15
Participants: TwoShort (S), jeep (N)
Winner: TwoShort

1) jeep: Homeworld B1 Y2 G3
	jeep: ZPIP challenge?  I suspect that that challenge could  gain you a handful more rating points.  ;)

2) TwoShort: Homeworld B1 G3 B3 *
	TwoShort: Well, the idea was to get me more games :) 

3) jeep: Build G1 Jeep
	jeep: I like that start, if I was you.  Hmm...

4) TwoShort: Build B1 Twoshort

5) jeep: Trade G3 B3 Jeep
	TwoShort: I'm rather fond of it, because it's different.  I've been doing it lately when my opponent starts with a b1 star, and gone back and forth about it's true worthiness.  I debated this time, since I'm intending to avoid wacky experiments and just play my best game for the ZPIP challenge.  But my current theory is that it really is a good idea, so here we go...

6) TwoShort: Trade B1 Y1 Twoshort

7) jeep: Build G1 Jeep

8) TwoShort: Build Y1 Twoshort

9) jeep: Discover G1 Jeep Y3 Brickroad

10) TwoShort: Build Y1 Twoshort

11) jeep: Build B1 Jeep

12) TwoShort: Discover Y1 Twoshort G2 Grogar

13) jeep: Trade B3 Y3 Jeep

14) TwoShort: Build Y2 Grogar

15) jeep: Build B2 Jeep
	jeep: Gah, how did I get myself here?

16) TwoShort: Build Y2 Twoshort

17) jeep: Trade B2 R2 Jeep

18) TwoShort: Build Y3 Grogar

19) jeep: Build B2 Jeep

20) TwoShort: Trade Y2 R2 Twoshort

21) jeep: Build G1 Jeep

22) TwoShort: Build Y2 Twoshort

23) jeep: Build G2 Brickroad

24) TwoShort: Discover Y2 Grogar B3 Bluzilla

25) jeep: Discover B1 Jeep G3 Builder

26) TwoShort: Sacrifice Y3 Grogar
Move Y1 Grogar Bluzilla
Move Y1 Bluzilla Jeep
Move Y2 Bluzilla Jeep
Catastrophe Jeep Yellow

	jeep: Thanks for the game.  I got myself in a fix early... I liked your opening.


6962)
Variants: "Unrated"
Started: 2007.3.12, Ended: 2007.3.15
Participants: Cinnibar (S), MikeYarrum (N)
Winner: Cinnibar

1) MikeYarrum: Homeworld B1 Y2 G3

2) Cinnibar: Homeworld Y1 B2 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) Cinnibar: Build G1 Cinnibar

5) MikeYarrum: Discover G1 Mikeyarrum B3 Deep

6) Cinnibar: Trade G1 R1 Cinnibar
	MikeYarrum: This should be a quick game - we're right next door to each other.

7) MikeYarrum: Build G1 Deep
	Cinnibar: Indeed, See what happens. :)

8) Cinnibar: Move R1 Cinnibar Deep

9) MikeYarrum: Build G1 Mikeyarrum

10) Cinnibar: Build G2 Cinnibar

11) MikeYarrum: Build G2 Mikeyarrum

12) Cinnibar: Attack G1 Deep

13) MikeYarrum: Trade G3 R3 Mikeyarrum

14) Cinnibar: Build R1 Deep

15) MikeYarrum: Trade G1 Y1 Mikeyarrum

16) Cinnibar: Trade G2 Y2 Cinnibar

17) MikeYarrum: Discover Y1 Mikeyarrum G3 Mean

18) Cinnibar: Build G1 Cinnibar

19) MikeYarrum: Sacrifice G1 Deep
Build Y1 Mean

20) Cinnibar: Move Y2 Cinnibar Mean

21) MikeYarrum: Build G1 Mikeyarrum

22) Cinnibar: Build G2 Deep

23) MikeYarrum: Move Y1 Mean Cinnibar
	MikeYarrum: Would you mind if I resigned? You've had me on the defensive for awhile, and I don't think I can recover.

24) Cinnibar: Sacrifice Y2 Mean
Move G1 Deep Mikeyarrum
Move G2 Deep Mikeyarrum
Catastrophe Mikeyarrum G
	Cinnibar: No problem, Mike.  Thanks for the game!



6977)
Variants: "Hard time"
Started: 2007.3.13, Ended: 2007.4.5
Participants: Lexicon (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3
	Lexicon: I'm guessing this is just a ploy to get you more Homeworlds games. :)

2) Lexicon: Homeworld R1 B3 G3
	TwoShort: Uh oh, he's on to me...

3) TwoShort: Build G1 Twoshort

4) Lexicon: Build G1 Lexicon

5) TwoShort: Trade G1 Y1 Twoshort

6) Lexicon: Trade G1 R1 Lexicon

7) TwoShort: Build Y1 Twoshort

8) Lexicon: Build R2 Lexicon

9) TwoShort: Build Y1 Twoshort

10) Lexicon: Trade R2 Y2 Lexicon

11) TwoShort: Discover Y1 Twoshort G3 Grogar

12) Lexicon: Build Y2 Lexicon

13) TwoShort: Discover Y1 Twoshort B3 Bluonia

14) Lexicon: Build R2 Lexicon

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluonia
Build Y3 Twoshort
Build Y3 Twoshort

16) Lexicon: Discover Y2 Lexicon G2 Pyori

17) TwoShort: Discover Y1 Twoshort Y3 Canary

18) Lexicon: Move R1 Lexicon Pyori

19) TwoShort: Trade Y2 R2 Bluonia

20) Lexicon: Build Y2 Pyori

21) TwoShort: Discover R2 Bluonia G2 Glenda

22) Lexicon: Discover Y2 Pyori B3 Pombe

23) TwoShort: Move Y3 Twoshort Pombe

24) Lexicon: Move Y2 Pyori Bluonia

25) TwoShort: Trade Y3 R3 Pombe

26) Lexicon: Build Y3 Lexicon

27) TwoShort: Attack Y2S Pombe

28) Lexicon: Sacrifice Y2 Lexicon
Move R2 Lexicon Pyori
Move R2 Pyori Bluonia

29) TwoShort: Discover Y1 Bluonia G2 Gorgon

30) Lexicon: Sacrifice G3 Lexicon
Build R2 Pyori
Build R3 Bluonia
Build Y2 Bluonia

31) TwoShort: Build R3 Glenda

32) Lexicon: Sacrifice Y2 Bluonia
Move R1 Pyori Bluonia
Move R1 Bluonia Twoshort

33) TwoShort: Build Y2 Gorgon

34) Lexicon: Move R2 Bluonia Twoshort

35) TwoShort: Discover Y1 Canary B2 Blaze

36) Lexicon: Trade Y3 G3 Lexicon

37) TwoShort: Build Y3 Grogar

38) Lexicon: Build G1 Lexicon

39) TwoShort: Build Y3 Grogar

40) Lexicon: Move R3 Bluonia Gorgon

41) TwoShort: Sacrifice Y2 Gorgon
Discover Y1 Gorgon G1 Lupus
Discover Y3 Grogar Y2 Yonderboy

42) Lexicon: Move Y2 Bluonia Gorgon

43) TwoShort: Attack R2S Twoshort

44) Lexicon: Move R3 Gorgon Lupus

45) TwoShort: Move Y1 Lupus Pombe
	Lexicon: this was a fairly interesting game for a while, but it's looking grim now.

46) Lexicon: Sacrifice Y2 Gorgon
Move R2 Pyori Pombe
Move R2 Pombe Twoshort
Catastrophe Twoshort Red

47) TwoShort: Build Y2 Grogar
	TwoShort: Yeah, I was pretty worried a little while back; but at this point you are looking at a slight disadvantage in material. :)

48) Lexicon: Trade G1 B1 Lexicon
	Lexicon: at least I have the satisfaction of taking out half your system.  of course, I can't move anymore.......

49) TwoShort: Trade Y2 B2 Pombe

50) Lexicon: Build R1 Lupus

51) TwoShort: Move B2 Pombe Glenda

52) Lexicon: Sacrifice B1 Lexicon
Trade R1 B1 Lupus

53) TwoShort: Trade R3 G3 Pombe

54) Lexicon: Build G1 Lexicon

55) TwoShort: Sacrifice G3 Pombe
Build R1 Glenda
Build B1 Glenda
Build B1 Glenda

56) Lexicon: Build B3 Lupus

57) TwoShort: Sacrifice Y3 Grogar
Move B1 Glenda Lexicon
Move B1 Glenda Lexicon
Move B2 Glenda Lexicon
Catastrophe Lexicon Blue

58) Lexicon: Sacrifice G3 Lexicon
Build G1 Lexicon
Build G2 Lexicon
Build G2 Lexicon
	Lexicon: Looks like you've got this pretty well sorted out now. :)
	TwoShort: Yeah, once I got you entirely locked out of yellow, there wasn't much chance of my letting you make a comeback :)

59) TwoShort: Pass
Catastrophe Lexicon Green
	Lexicon: Funny thing is, jeep locked me out of yellow the next day in another game.  I don't think I'll ever forget this lesson. :)



6980)
Variants: "Hard time"
Started: 2007.3.13, Ended: 2007.3.28
Participants: Cochise (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) Cochise: Homeworld B1 G2 Y3
	Cochise: This is my first time trying to play this, so please bear with me as I fuddle moves. :)

3) TwoShort: Build G1 Twoshort
	TwoShort: Howdy

4) Cochise: Build Y1 Cochise

5) TwoShort: Build G1 Twoshort
	Cochise: Hey there. This looks like a fun game. I only have one TreeHouse set so far, but wanted to try the game out to get a better grasp on the rules. Nothing like a few games of actually playing to help solidify some learning.
	TwoShort: Well, I certainly think it's a fun game, but it does have a bit of a learning curve.  I don't know if it was intentional, but one thing to note is that by choosing both the same size stars as me, you've put us in a "small universe", with our Homeworlds only 2 moves from each other.  Not necessarily a bad idea, but it does make the game more quick and brutal.

6) Cochise: Build Y1 Cochise

7) TwoShort: Trade G1 Y1 Twoshort
	Cochise: Hmm, now I'm confused.  I thought that travel between stars had to be of different sizes, so by choosing the same size as you have I was making the trip longer. Did I read or understand that rule wrong?
	TwoShort: We can each move from our homeworlds only to 3 point stars, and from there to the other homeworld.  If you had chosen a 1 and a 3, we would still not be ajacent thanks to the 1s, and I for example, would have to go to a 3 then a 2 then to your world.  

8) Cochise: Trade Y1 G1 Cochise

9) TwoShort: Discover G1 Twoshort Y3 Yolonda
	TwoShort: You should undo that.  With 4 of the same color in one system, I can call a catastrophe and remove them all. 
	Cochise: Oops!  Many thanks on that 

10) Cochise: Move G1 Cochise Yolonda

11) TwoShort: Build G1 Twoshort

12) Cochise: Build G2 Yolonda

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Twoshort
Build G3 Twoshort
Catastrophe Yolonda Green

14) Cochise: Build Y1 Cochise
	TwoShort: well, this is too fun to resist...

15) TwoShort: Discover G3 Twoshort B3 Bluonia

16) Cochise: Trade Y1 G1 Cochise

17) TwoShort: Trade G3 R3 Bluonia

18) Cochise: Move G1 Cochise Bluonia

19) TwoShort: Sacrifice Y1 Twoshort
Move R3 Bluonia Cochise

20) Cochise: Trade Y3 R3 Cochise

21) TwoShort: Attack R3S Cochise

22) Cochise: Build G1 Bluonia

23) TwoShort: Attack Y1S Cochise



6995)
Variants: "Hard time"
Started: 2007.3.13, Ended: 2007.3.16
Participants: TwoShort (S), ts52 (N)
Winner: TwoShort

1) ts52: Homeworld B1 G2 Y3
	ts52: I'm sure I don't have a shot in heck at the ZPIPs, but I'd love to get back into playing Homeworlds.

2) TwoShort: Homeworld B1 G3 B3 *

3) ts52: Build Y1 Ts52
	TwoShort: Well, I'm glad to have lured you back in!  I hadn't actually played in a while, and when I came back, couldn't find many opponents; Hence the challenge...
	ts52: Seems like a good way to get opponents.

4) TwoShort: Build B1 Twoshort

5) ts52: Discover Y1 Ts52 B3 Blueberry

6) TwoShort: Trade B3 Y3 Twoshort

7) ts52: Build Y1 Ts52

8) TwoShort: Build B2 Twoshort

9) ts52: Trade Y1 G1 Blueberry

10) TwoShort: Discover B1 Twoshort G2 Grogar

11) ts52: Build Y1 Ts52

12) TwoShort: Build B2 Twoshort

13) ts52: Move Y1 Ts52 Blueberry

14) TwoShort: Discover B2 Twoshort B2 Blutacular

15) ts52: Discover Y1 Ts52 G3 Oscar

16) TwoShort: Build B3 Grogar

17) ts52: Build G1 Blueberry
	ts52: Wow, how did I not notice the blues go so quickly...

18) TwoShort: Build B3 Twoshort
	TwoShort: They were gone when I set up my homeworld :)  Or at least, that guaranteed I could get the last b1 before you got a chance at it.

19) ts52: Move G1 Blueberry Ts52

20) TwoShort: Trade B3 R3 Grogar
	ts52: Which just goes to show, there's still a lot I need to learn about this game.
	TwoShort: Well, it's only recently I've gotten this startegy to the point where I think starting with a small blue star as first player is inherently a bad idea.

21) ts52: Trade Y3 B3 Ts52
	ts52: Ok then, time to try something different.

22) TwoShort: Sacrifice Y3 Twoshort
Move R3 Grogar Blueberry
Move R3 Blueberry Ts52
Pass
	TwoShort: The Gun Rule: When the other guy draws a gun, draw your gun.  
Sorry. :)

23) ts52: Trade G1 R1 Ts52
	ts52: No problem. That's what I get for trying something different. Thanks for the game.

24) TwoShort: Attack B3N Ts52

25) ts52: Build R1 Ts52
	ts52: So, is it better to resign, or play it out?
It's only one more turn, I guess. Thanks again for the game.

26) TwoShort: Sacrifice R3 Ts52
Attack R1N Ts52
Attack R1N Ts52
Pass
	TwoShort: Thanks for the game :)



7017)
Variants: "Hard time"
Started: 2007.3.14, Ended: 2007.6.6
Participants: TwoShort (S), Keith (N)
Winner: TwoShort

1) Keith: Homeworld B1 Y2 G3
	Keith: When I last met you I was but the learner. Now I am ...?

Hello TwoShort.  Don't count this game as part of your ZPIP challenge.  I had already decided not to enter that fray because, while it would be a nice trophy, others are more likely to get to play a face to face game with the pocket set.   

2) TwoShort: Homeworld B1 G3 B3 *
	TwoShort: If you don't want to count it, that's no problem.  I've been enjoying my ZPIPs even thought I can count the in-person opponents I've had on my thumbs.  It's that much less space to clear on my notoriously messy desk when I want to set up a tricky position.

3) Keith: Build G1 Keith
	Keith: Good point about using the ZPIP to set up tricky problems.  I use a virtual piece set in Illustrator for the same purpose.

4) TwoShort: Build B1 Twoshort

5) Keith: Build G1 Keith

6) TwoShort: Trade B3 Y3 Twoshort

7) Keith: Discover G1 Keith Y3 Amazons
	Keith: I am interested in seeing how your Homeworld startng setup works out.  I had actually typed in the command window for a y1 b2 g3 start when I remembered your chat in your game with jeep and changed it so I had a b1.

8) TwoShort: Build B2 Twoshort

9) Keith: Build G1 Amazons

10) TwoShort: Discover B1 Twoshort B2 Blitz

11) Keith: Build G2 Keith

12) TwoShort: Build B2 Twoshort

13) Keith: Discover G1 Amazons G2 Fanorona
	Keith: I am going to continue on my risky course.  I was interested in seeing how your blue ploy went because I had two games (one against Zoltar) where going for blue worked out in my favor.  Tried it in a third game against a relatively new player and it all fell apart.

At this point I find your blue efforts quite threatening.  I am going to continue on my course.  Can't tell if it will make for an interesting game or a very short one in your favor.

14) TwoShort: Discover B2 Twoshort G2 Grogar

15) Keith: Build G3 Amazons

16) TwoShort: Build B3 Grogar

17) Keith: Trade G3 B3 Keith

18) TwoShort: Trade B3 G3 Grogar

19) Keith: Trade G2 R2 Keith

20) TwoShort: Trade B2 R2 Twoshort

21) Keith: Build G2 Amazons

22) TwoShort: Sacrifice G3 Grogar
Build B2 Blitz
Build B3 Grogar
Build B3 Grogar

23) Keith: Build G3 Keith
	Keith: Sigh.  I should have gone with move g3 Amazons Grogar.  If you attacked it I send in another green and destroy the system.  Otherwise I could have attacked ships.  Grabbing that g2 with the idea of not having to lose a g3 just put your blue strategy in high gear.

24) TwoShort: Trade B3 Y3 Grogar

25) Keith: Sacrifice G3 Keith
Build G3 Keith
Build R1 Keith
Build R1 Keith

26) TwoShort: Trade B3 R3 Grogar

27) Keith: Trade R2 Y2 Keith

28) TwoShort: Build Y1 Grogar

29) Keith: Sacrifice Y2 Keith
Move G3 Amazons Grogar
Move G2 Amazons Grogar

30) TwoShort: Sacrifice Y3 Grogar
Move R3 Grogar Amazons
Move B2 Grogar Twoshort
Move R2 Twoshort Fanorona
	TwoShort: Well that looks like trouble...

31) Keith: Sacrifice G2 Grogar
Build G2 Fanorona
Build B3 Keith

32) TwoShort: Sacrifice Y1 Grogar
Discover B1 Blitz Y3 Yoyodyne

33) Keith: Move B3 Keith Yoyodyne

34) TwoShort: Build B3 Twoshort

35) Keith: Sacrifice R1 Keith
Attack R2 Fanorona

36) TwoShort: Attack G1N Amazons

37) Keith: Sacrifice B3 Keith
Trade G2 Y2 Fanorona
Trade G1 Y1 Fanorona
Trade G1 Y1 Keith

38) TwoShort: Move B3 Twoshort Fanorona

39) Keith: Move Y2 Fanorona Twoshort

40) TwoShort: Sacrifice R3 Amazons
Attack Y2N Twoshort
Attack R2N Fanorona
Attack Y1N Fanorona

41) Keith: Build R1 Keith
	Keith: Wow, talk about brain lock.  I never considered your applying your sacrificed R3 to more than one sector.  I think your move will turn out to be the decisive move of the game.

42) TwoShort: Build B3 Fanorona

43) Keith: Sacrifice R1 Keith
Attack B1 Yoyodyne

44) TwoShort: Move B3 Fanorona Yoyodyne

45) Keith: Build R1 Keith

46) TwoShort: Sacrifice R2 Fanorona
Attack B3N Yoyodyne
Attack B1N Yoyodyne

	Keith: Forgot about the threat to my B3.  I am just not able to give this game the time and energy it deserves.  Welcome to the top rung of the Homeworlds ladder.


7027)
Variants: "Sinister"
Started: 2007.3.16, Ended: 2007.4.16
Participants: jimpurbrick (S), Cinnibar (N), MikeYarrum (E)
Winner: Cinnibar

1) Cinnibar: Homeworld G3 B2 Y3

2) MikeYarrum: Homeworld B1 Y2 G3

3) jimpurbrick: Homeworld B3 G1 Y3
	jimpurbrick: homeworld B3 G1 Y3

4) Cinnibar: Build Y1 Cinnibar

5) MikeYarrum: Build G1 Mikeyarrum

6) jimpurbrick: Build Y1 Jimpurbrick

7) Cinnibar: Discover Y1 Cinnibar G1 Vivat

8) MikeYarrum: Discover G1 Mikeyarrum B3 Connie

9) jimpurbrick: Discover Y1 Jimpurbrick G2 Disco

10) Cinnibar: Build Y1 Vivat

11) MikeYarrum: Build G1 Mikeyarrum

12) jimpurbrick: Build Y1 Disco

13) Cinnibar: Build Y2 Cinnibar

14) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Mikeyarrum
Build G2 Mikeyarrum
Build G2 Connie

15) jimpurbrick: Build Y2 Jimpurbrick

16) Cinnibar: Trade Y3 G3 Cinnibar

17) MikeYarrum: Trade G2 Y2 Connie

18) jimpurbrick: Trade Y3 G3 Jimpurbrick

19) Cinnibar: Build Y3 Cinnibar

20) MikeYarrum: Trade G2 R2 Mikeyarrum

21) jimpurbrick: Build Y3 Jimpurbrick

22) Cinnibar: Trade Y3 R3 Cinnibar

23) MikeYarrum: Move G1 Connie Disco

24) jimpurbrick: Trade Y3 R3 Jimpurbrick

25) Cinnibar: Build Y3 Cinnibar

26) MikeYarrum: Sacrifice R2 Mikeyarrum
Attack Y1S Disco
Attack Y1S Disco

27) jimpurbrick: Build Y3 Jimpurbrick

28) Cinnibar: Sacrifice Y2 Cinnibar
Move Y1 Vivat Connie
Move Y1 Connie Mikeyarrum

29) MikeYarrum: Trade G2 R2 Mikeyarrum

30) jimpurbrick: Trade Y3 R3 Jimpurbrick

31) Cinnibar: Sacrifice G3 Cinnibar
Build Y2 Mikeyarrum
Build Y3 Mikeyarrum
Build Y3 Cinnibar
Catastrophe Mikeyarrum Y

32) MikeYarrum: Build G2 Mikeyarrum

33) jimpurbrick: Move R3 Jimpurbrick Disco

34) Cinnibar: Trade Y3 R3 Cinnibar

35) MikeYarrum: Sacrifice Y1 Disco
Move G1 Disco Connie

36) jimpurbrick: Attack Y1E Disco

37) Cinnibar: Build Y1 Cinnibar

38) MikeYarrum: Build G2 Mikeyarrum

39) jimpurbrick: Build R1 Disco

40) Cinnibar: Discover Y1 Vivat G3 Osmosis

41) MikeYarrum: Build G1 Connie

42) jimpurbrick: Build R1 Jimpurbrick

43) Cinnibar: Build Y1 Osmosis

44) MikeYarrum: Trade G2 Y2 Mikeyarrum

45) jimpurbrick: Discover R1 Jimpurbrick B2 Funk

46) Cinnibar: Discover Y1 Osmosis G2 Gemini

47) MikeYarrum: Discover G1 Mikeyarrum G3 Yomi

48) jimpurbrick: Build Y2 Disco

49) Cinnibar: Build Y3 Osmosis

50) MikeYarrum: Sacrifice G2 Mikeyarrum
Build Y3 Connie
Build Y3 Mikeyarrum

51) jimpurbrick: Move Y2 Jimpurbrick Funk

52) Cinnibar: Move Y1 Gemini Mikeyarrum

53) MikeYarrum: Attack Y1N Mikeyarrum

54) jimpurbrick: Trade Y2 G2 Funk

55) Cinnibar: Move Y1 Osmosis Mikeyarrum
Catastrophe Mikeyarrum Y

56) MikeYarrum: Sacrifice Y2 Connie
Move Y3 Connie Mikeyarrum
Move G1 Yomi Mikeyarrum

57) jimpurbrick: Build G2 Funk

58) Cinnibar: Trade Y1 B1 Cinnibar

59) MikeYarrum: Build G2 Mikeyarrum

60) jimpurbrick: Trade G2 Y2 Funk

61) Cinnibar: Sacrifice B1 Cinnibar
Trade Y3 B3 Osmosis

62) MikeYarrum: Discover G1 Mikeyarrum Y3 Chihiro

63) jimpurbrick: Build R1 Jimpurbrick

64) Cinnibar: Trade R3 G3 Cinnibar

65) MikeYarrum: Build G2 Mikeyarrum

66) jimpurbrick: Trade R1 Y1 Jimpurbrick

67) Cinnibar: Sacrifice G3 Cinnibar
Build B1 Osmosis
Build B1 Osmosis
Build Y1 Cinnibar

68) MikeYarrum: Build G3 Chihiro

69) jimpurbrick: Build R1 Funk

70) Cinnibar: Sacrifice Y3 Cinnibar
Move B1 Osmosis Mikeyarrum
Move B1 Osmosis Mikeyarrum
Move B3 Osmosis Mikeyarrum
Catastrophe Mikeyarrum B



7061)
Variants: "Hard time"
Started: 2007.3.17, Ended: 2007.3.20
Participants: TwoShort (S), timotab (N)
Winner: TwoShort

1) timotab: Homeworld G1 B2 Y3
	timotab: relative newbie here.  played 3 games on Binary Homeworlds so far, and I got your name from the IceHouse list in the ZPIP discussion.

2) TwoShort: Homeworld R1 B3 G3

3) timotab: Build Y1 Timotab

4) TwoShort: Build G1 Twoshort

5) timotab: Discover Y1 Timotab B3 Treehouse
	TwoShort: Howdy.  Always nice to have more homeworlds players!

6) TwoShort: Build G1 Twoshort
	timotab: I think I like the game so far.  I really haven't got a clue, having played only 3 games.  So, analysis after the game welcomed :)


7) timotab: Build Y1 Timotab
	timotab: oops.  mistake number 1 :)

8) TwoShort: Trade G1 Y1 Twoshort

9) timotab: Build Y2 Timotab

10) TwoShort: Build G1 Twoshort
	TwoShort: You're doing OK so far...  As general strategic advice, the early game is largely about stash management: jockeying for position so that you'll get to grab more 3 pointers when they become available in some particular color.

11) timotab: Trade Y2 G2 Timotab

12) TwoShort: Discover G1 Twoshort B2 Bluonia

13) timotab: Move G2 Timotab Treehouse

14) TwoShort: Build G2 Twoshort

15) timotab: Build Y2 Treehouse

16) TwoShort: Discover G2 Twoshort Y2 Yolonda

17) timotab: Build G2 Treehouse

18) TwoShort: Sacrifice G3 Twoshort
Build G3 Bluonia
Build G3 Yolonda
Build G3 Twoshort

19) timotab: Sacrifice Y2 Treehouse
Move G2 Treehouse Bluonia
Move G2 Treehouse Bluonia
Catastrophe Bluonia Green
	timotab: ahh... nicely done.  I like it.

20) TwoShort: Move G3 Yolonda Treehouse
	TwoShort: If I were giving you a proper tutorial, I'd have mentioned a couple basic tactics before we got there, including "the Factory", wherein a sacrificed g3 leads to growing itself back again.

21) timotab: Trade Y1 G1 Treehouse

22) TwoShort: Trade G3 R3 Treehouse
	timotab: well, tell you what, how about we just play this one, and once you've beaten me, we can do a tutorial :)


23) timotab: Trade Y1 R1 Timotab

24) TwoShort: Attack G1N Treehouse

25) timotab: Build R1 Timotab
	TwoShort: Well, I really just mean that I usually throw in a little more discussion, particularly when playing newer players.  I still play to win because I'm not really capable of making anything but the best move I see.  But with the ZPIP challenge I've got a few more games going at once than I'm used to :)

26) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Yolonda
Build G3 Twoshort
	timotab: oh, yes, that's fine, I'm happy with more discussion next game :)


27) timotab: Build Y1 Timotab
	TwoShort: woops...

28) TwoShort: Discover G2 Yolonda Y3 Yoyodyne

29) timotab: Move R1 Timotab Yoyodyne

30) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Yoyodyne
Build G3 Treehouse

31) timotab: Build R2 Timotab

32) TwoShort: Trade G3 Y3 Twoshort
	timotab: I can't see any way to recover.  You've monopolised all the greens.  Nicely done.

33) timotab: Move R2 Timotab Yoyodyne

34) TwoShort: Sacrifice R3 Treehouse
Attack R2 Yoyodyne
Attack R1 Yoyodyne
Pass
	TwoShort: Yeah, I think you're pretty doomed.  I'll be happy to play it out if you want to see how long you can fend me off.

	timotab: heh.  OK.  I'd done that myself on other people, but didn't expect you to pass one of your attacks, so thought I was safe for another turn.  I'm very hosed



7073)
Started: 2007.3.21, Ended: 2007.3.29
Participants: ts52 (S), MikeYarrum (N)
Winner: ts52

1) MikeYarrum: Homeworld Y2 B3 G3

2) ts52: Homeworld G2 B1 Y3

3) MikeYarrum: Build G1 Mikeyarrum
	ts52: Have a good game!
	MikeYarrum: Thanks! You too.

4) ts52: Build Y1 Ts52

5) MikeYarrum: Build G1 Mikeyarrum

6) ts52: Trade Y1 G1 Ts52

7) MikeYarrum: Trade G1 Y1 Mikeyarrum

8) ts52: Build Y1 Ts52

9) MikeYarrum: Discover G1 Mikeyarrum B1 Dot

10) ts52: Trade Y1 B1 Ts52

11) MikeYarrum: Build Y1 Mikeyarrum

12) ts52: Discover B1 Ts52 G3 Kermit

13) MikeYarrum: Build G1 Dot

14) ts52: Build G2 Ts52

15) MikeYarrum: Build G2 Mikeyarrum

16) ts52: Discover G2 Ts52 G3 Oscar

17) MikeYarrum: Trade G1 R1 Dot

18) ts52: Trade G1 R1 Ts52

19) MikeYarrum: Build G1 Dot

20) ts52: Trade B1 G1 Kermit

21) MikeYarrum: Trade G1 Y1 Dot

22) ts52: Build Y2 Ts52

23) MikeYarrum: Build Y2 Dot

24) ts52: Move Y2 Ts52 Kermit

25) MikeYarrum: Move Y2 Dot Oscar

26) ts52: Sacrifice G2 Oscar
Build Y3 Ts52
Build Y3 Kermit

27) MikeYarrum: Move Y1 Mikeyarrum Dot

28) ts52: Discover Y3 Kermit B1 Gonzo

29) MikeYarrum: Move Y1 Dot Kermit

30) ts52: Trade Y3 R3 Ts52

31) MikeYarrum: Build Y3 Dot

32) ts52: Move R3 Ts52 Oscar

33) MikeYarrum: Trade G3 R3 Mikeyarrum

34) ts52: Attack Y2N Oscar

35) MikeYarrum: Build R1 Dot

36) ts52: Build R2 Ts52

37) MikeYarrum: Build R2 Mikeyarrum

38) ts52: Move R2 Ts52 Kermit

39) MikeYarrum: Build G1 Dot

40) ts52: Move G1 Kermit Gonzo

41) MikeYarrum: Move R1 Dot Oscar

42) ts52: Attack R1N Oscar

43) MikeYarrum: Discover Y3 Dot R3 Piggy

44) ts52: Build R2 Kermit

45) MikeYarrum: Move G1 Dot Piggy

46) ts52: Move R3 Oscar Dot

47) MikeYarrum: Move G1 Dot Piggy

48) ts52: Attack Y1N Dot

49) MikeYarrum: Move G1 Piggy Ts52

50) ts52: Attack G1N Ts52

51) MikeYarrum: Build G2 Piggy

52) ts52: Move G1 Ts52 Oscar

	MikeYarrum: You've got me. How about a new game?
	ts52: Sure, I'd be happy to start another.


7110)
Variants: "Hard time"
Started: 2007.3.21, Ended: 2007.3.26
Participants: MikeYarrum (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld Y1 B2 G3

2) MikeYarrum: Homeworld B3 G2 Y3
	TwoShort: Howdy.

3) TwoShort: Build G1 Twoshort
	MikeYarrum: Hey.

4) MikeYarrum: Build Y1 Mikeyarrum

5) TwoShort: Build G1 Twoshort

6) MikeYarrum: Build Y1 Mikeyarrum

7) TwoShort: Discover G1 Twoshort Y3 Yellonia

8) MikeYarrum: Discover Y1 Mikeyarrum B1 Bluey

9) TwoShort: Build G1 Twoshort

10) MikeYarrum: Build Y2 Mikeyarrum

11) TwoShort: Discover G1 Twoshort B3 Bluonia

12) MikeYarrum: Move Y1 Mikeyarrum Bluey

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Twoshort
Build G3 Twoshort

14) MikeYarrum: Build Y2 Mikeyarrum

15) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Bluonia
Build G3 Yellonia

16) MikeYarrum: Move Y1 Bluey Bluonia

17) TwoShort: Trade G3 R3 Bluonia

18) MikeYarrum: Move Y2 Mikeyarrum Bluey

19) TwoShort: Attack Y1S Bluonia

20) MikeYarrum: Trade Y2 R2 Bluey

21) TwoShort: Discover G2 Twoshort Y3 Yonderboy

22) MikeYarrum: Trade Y3 G3 Mikeyarrum

23) TwoShort: Trade G3 Y3 Twoshort

24) MikeYarrum: Move R2 Bluey Yonderboy

25) TwoShort: Sacrifice G3 Yellonia
Build Y2 Bluonia
Build G3 Twoshort
Build G3 Yonderboy

26) MikeYarrum: Attack G2 Yonderboy

27) TwoShort: Sacrifice R3 Bluonia
Attack R2S Yonderboy
Attack G2S Yonderboy
Pass

	MikeYarrum: Well, I fought to the last. Thanks for the game!


7130)
Started: 2007.3.22, Ended: 2007.3.22
Participants: MikeYarrum (S), Moueska (N)
Winner: MikeYarrum

1) Moueska: Homeworld G2 R3 B3



2) MikeYarrum: Homeworld Y2 B1 G3



7131)
Variants: "Hard time"
Started: 2007.3.22, Ended: 2007.3.28
Participants: MikeYarrum (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B2 G1 Y3

2) MikeYarrum: Homeworld B3 Y1 G3

3) mneme: Build Y1 Mneme

4) MikeYarrum: Build G1 Mikeyarrum

5) mneme: Discover Y1 Mneme G3 Fir

6) MikeYarrum: Discover G1 Mikeyarrum Y2 Thor

7) mneme: Build Y1 Fir
	mneme: We are so not continuing at this pace.  But that's ok.

8) MikeYarrum: Build G1 Thor

9) mneme: Build Y2 Mneme
	MikeYarrum: Heh, that's okay... as long as I'm playing.

10) MikeYarrum: Build G2 Mikeyarrum

11) mneme: Trade Y2 G2 Mneme

12) MikeYarrum: Trade G2 Y2 Mikeyarrum

13) mneme: Discover G2 Mneme B3 Pine

14) MikeYarrum: Build Y2 Mikeyarrum

15) mneme: Build Y3 Mneme

16) MikeYarrum: Discover Y2 Mikeyarrum G2 Loki

17) mneme: Build Y3 Fir

18) MikeYarrum: Move Y2 Loki Fir
Catastrophe Fir Yellow

19) mneme: Build G2 Pine

20) MikeYarrum: Build G2 Mikeyarrum

21) mneme: Trade G2 Y2 Pine

22) MikeYarrum: Discover G1 Thor Y3 Frigg

23) mneme: Trade Y3 R3 Mneme

24) MikeYarrum: Build G2 Frigg

25) mneme: Build G3 Pine

26) MikeYarrum: Build G3 Thor

27) mneme: Sacrifice Y2 Pine
Move R3 Mneme Frigg
Move R3 Frigg Thor

28) MikeYarrum: Move G3 Thor Frigg

29) mneme: Move R3 Thor Mikeyarrum

30) MikeYarrum: Build Y1 Mikeyarrum

31) mneme: Attack G3 Mikeyarrum
	MikeYarrum: I'm not quite clear on the rules here - Can you now sacrifice your r3 to attack the ships in my homeworld?
	mneme: no -- I'd need to have another ship in your system for that.  but I can keep taking your ships until they're all gone, and there's pretty much no way out.  (play it out, to see how it works, I think)

32) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move G1 Frigg Mneme
Move G2 Frigg Mneme
	MikeYarrum: Ouch, that's right. I was hoping I could at least take out one of your stars before too long.
	mneme: unless I'm miscalculating or you do something unexpected, I win next turn -- build, and I cause a catastrophe.  anything else, and I sac the red and take your home system.

33) mneme: Sacrifice R3 Mikeyarrum
Attack G2 Mikeyarrum
Attack Y1 Mikeyarrum
Attack G2 Mneme
	mneme: good game!  Again?
	MikeYarrum: Definitely.



7137)
Variants: "Hard time"
Started: 2007.3.22, Ended: 2007.4.2
Participants: morganfitzp (S), jbj77 (N)
Winner: jbj77

1) jbj77: Homeworld Y1 B2 G3
	jbj77: A chance to redeem myself after our last game!  I hope I don't mess it up.

2) morganfitzp: Homeworld B3 Y2 G3
	morganfitzp: Yup. Welcome back.

3) jbj77: Build G1 Jbj77

4) morganfitzp: Build G1 Morganfitzp

5) jbj77: Trade G1 Y1 Jbj77

6) morganfitzp: Trade G1 Y1 Morganfitzp

7) jbj77: Discover Y1 Jbj77 G3 Alpha

8) morganfitzp: Build Y2 Morganfitzp

9) jbj77: Build Y2 Alpha

10) morganfitzp: Discover Y1 Morganfitzp G1 Ri

11) jbj77: Discover Y1 Alpha G1 Beta

12) morganfitzp: Trade Y2 G2 Morganfitzp

13) jbj77: Build G1 Jbj77

14) morganfitzp: Discover G2 Morganfitzp B1 Cn

15) jbj77: Trade G1 B1 Jbj77

16) morganfitzp: Build G1 Morganfitzp

17) jbj77: Build G2 Jbj77

18) morganfitzp: Sacrifice G3 Morganfitzp
Build G2 Cn
Build G3 Morganfitzp
Build Y2 Ri

19) jbj77: Sacrifice G3 Jbj77
Build Y3 Alpha
Build Y3 Beta
Build G3 Jbj77

20) morganfitzp: Trade G2 R2 Cn

21) jbj77: Sacrifice B1 Jbj77
Trade Y3 R3 Alpha

22) morganfitzp: Sacrifice G3 Morganfitzp
Build G2 Cn
Build Y3 Ri
Build G3 Morganfitzp

23) jbj77: Build Y3 Alpha

24) morganfitzp: Sacrifice Y2 Ri
Move G2 Cn Alpha
Move G2 Cn Alpha
	jbj77: I struggled with this one, but in the end I couldn't overcome my greed.
	morganfitzp: I must say, I am surprised.

25) jbj77: Sacrifice R3 Alpha
Attack G2 Alpha
Attack G2 Alpha
Pass

26) morganfitzp: Sacrifice Y3 Ri
Move G1 Morganfitzp Ri
Move G1 Ri Alpha
Discover R2 Cn B3 Me
Catastrophe Alpha Green
	jbj77: I don't think that I had much choice here.

27) jbj77: Discover Y1 Beta B3 Gamma
	morganfitzp: Neither did I.

28) morganfitzp: Build G1 Morganfitzp
	jbj77: I suspected you were going to do that.

29) jbj77: Build G2 Jbj77

30) morganfitzp: Sacrifice G1 Morganfitzp
Build R1 Me

31) jbj77: Trade G2 R2 Jbj77

32) morganfitzp: Trade R1 G1 Me

33) jbj77: Move Y3 Beta Me

34) morganfitzp: Sacrifice G1 Me
Build Y2 Ri

35) jbj77: Sacrifice R2 Jbj77
Attack R2 Me
Pass

36) morganfitzp: Discover Y2 Ri B2 Nh

37) jbj77: Discover Y3 Me G1 Delta

38) morganfitzp: Trade Y2 R2 Nh

39) jbj77: Build Y2 Delta

40) morganfitzp: Build G1 Morganfitzp

41) jbj77: Move Y2 Delta Me

42) morganfitzp: Trade G1 B1 Morganfitzp

43) jbj77: Build G1 Jbj77

44) morganfitzp: Build G2 Morganfitzp

45) jbj77: Move G1 Jbj77 Me

46) morganfitzp: Move B1 Morganfitzp Ri

47) jbj77: Sacrifice G3 Jbj77
Build G2 Jbj77
Build G3 Jbj77
Build G3 Me

48) morganfitzp: Sacrifice G3 Morganfitzp
Build G3 Morganfitzp
Build B1 Ri
Build B1 Ri

49) jbj77: Sacrifice G3 Jbj77
Build Y2 Me
Build Y3 Gamma
Build Y3 Delta

50) morganfitzp: Sacrifice G2 Morganfitzp
Build G2 Morganfitzp
Build R1 Nh

51) jbj77: Sacrifice Y2 Me
Move G3 Me Ri
Move G3 Ri Morganfitzp

52) morganfitzp: Trade G3 R3 Morganfitzp
	morganfitzp: Slow death, or quick death?

53) jbj77: Sacrifice R2 Me
Attack R3 Morganfitzp
Attack G2 Morganfitzp
	morganfitzp: Slow death.
	jbj77: Quick death.  This makes us one and one, so we'll have to have another match-up sometime.
	morganfitzp: Ah! Didn't see it. Nice work, though it felt inevitable from the get-go.
	jbj77: That's OK, because I totally missed the death blow that you dealt me on our first game.



7072)
Started: 2007.3.25, Ended: 2007.3.31
Participants: ts52 (S), clockwise (N)
Winner: clockwise

1) clockwise: Homeworld R1 B2 G3

2) ts52: Homeworld Y1 B2 G3
	clockwise: Hello and good luck

3) clockwise: Build G1 Clockwise
	ts52: thanks. Good luck to you too.

4) ts52: Build G1 Ts52

5) clockwise: Trade G1 Y1 Clockwise

6) ts52: Discover G1 Ts52 B3 Gonzo

7) clockwise: Build Y1 Clockwise

8) ts52: Build G1 Gonzo

9) clockwise: Build Y2 Clockwise

10) ts52: Trade G1 R1 Gonzo

11) clockwise: Trade Y2 R2 Clockwise

12) ts52: Build G1 Gonzo

13) clockwise: Build Y2 Clockwise

14) ts52: Build G1 Ts52

15) clockwise: Move Y2 Clockwise Gonzo

16) ts52: Build G2 Gonzo

17) clockwise: Sacrifice R2 Clockwise
Attack G2S Gonzo
Attack R1S Gonzo

18) ts52: Trade G1 R1 Ts52

19) clockwise: Trade G2 R2 Gonzo

20) ts52: Build R2 Ts52

21) clockwise: Sacrifice R2 Gonzo
Attack G1S Gonzo
Attack G1S Gonzo

22) ts52: Trade R2 Y2 Ts52

23) clockwise: Build Y2 Gonzo

24) ts52: Discover Y2 Ts52 G3 Oscar

25) clockwise: Build Y3 Gonzo

26) ts52: Build Y3 Oscar

27) clockwise: Sacrifice Y2 Gonzo
Move Y1 Clockwise Oscar
Move Y1 Clockwise Oscar
Catastrophe Oscar Yellow

28) ts52: Build R2 Ts52

29) clockwise: Build G1 Clockwise

30) ts52: Discover R2 Ts52 B3 Grover

31) clockwise: Build G2 Gonzo

32) ts52: Trade G3 R3 Ts52

33) clockwise: Build R2 Gonzo

34) ts52: Discover R1 Ts52 Y3 Bigbird

35) clockwise: Build R2 Gonzo

36) ts52: Trade R3 Y3 Ts52
	clockwise: Heh, I don't think I've ever overdeveloped a system so much.  :)
	ts52: It is pretty impressive.

37) clockwise: Move Y3 Gonzo Ts52
	ts52: I'm pretty sure this is just about over, but I have to try...

38) ts52: Sacrifice R1 Bigbird
Attack Y3N Ts52
	clockwise: The correct choice was blue, but I think that would have just given a few more turns.
	ts52: Ah right, as you didn't have any blue ships. Ah well. Thanks for playing.

39) clockwise: Move Y2 Gonzo Ts52
Catastrophe Ts52 Yellow
	clockwise: Thanks for the game



7202)
Variants: "Hard time"
Started: 2007.3.28, Ended: 2007.4.4
Participants: TwoShort (S), MikeYarrum (N)
Winner: TwoShort

1) MikeYarrum: Homeworld B1 Y2 G3

2) TwoShort: Homeworld B1 G3 B3 *

3) MikeYarrum: Build G1 Mikeyarrum

4) TwoShort: Build B1 Twoshort

5) MikeYarrum: Build G1 Mikeyarrum

6) TwoShort: Trade B3 Y3 Twoshort

7) MikeYarrum: Discover G1 Mikeyarrum Y3 Chiyo

8) TwoShort: Build B2 Twoshort

9) MikeYarrum: Build G1 Chiyo

10) TwoShort: Discover B1 Twoshort B2 Blitz

11) MikeYarrum: Build G2 Mikeyarrum

12) TwoShort: Build B2 Twoshort

13) MikeYarrum: Discover G2 Mikeyarrum B3 Osa

14) TwoShort: Discover B2 Twoshort G2 Grogar

15) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Chiyo
Build G3 Osa
Build G3 Mikeyarrum

16) TwoShort: Build B3 Grogar

17) MikeYarrum: Trade G3 R3 Osa

18) TwoShort: Build B3 Twoshort

19) MikeYarrum: Discover G1 Chiyo Y2 Tomo

20) TwoShort: Trade B3 G3 Grogar

21) MikeYarrum: Sacrifice G3 Mikeyarrum
Build R1 Osa
Build R1 Osa
Build G3 Mikeyarrum

22) TwoShort: Build B3 Grogar

23) MikeYarrum: Trade R1 Y1 Osa

24) TwoShort: Trade B3 R3 Grogar

25) MikeYarrum: Move R1 Osa Blitz

26) TwoShort: Sacrifice G3 Grogar
Build B3 Blitz
Build R1 Grogar
Build Y1 Twoshort

27) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G3 Mikeyarrum
Build G3 Tomo
Build R1 Osa

28) TwoShort: Sacrifice R1 Grogar
Attack R1N Blitz

29) MikeYarrum: Trade G1 Y1 Mikeyarrum

30) TwoShort: Build R1 Grogar

31) MikeYarrum: Sacrifice G3 Tomo
Build Y2 Osa
Build G1 Tomo
Build G3 Tomo

32) TwoShort: Sacrifice Y3 Twoshort
Move R1 Grogar Osa
Move R1 Blitz Osa
Move R3 Grogar Chiyo
Catastrophe Osa Red

33) MikeYarrum: Trade G3 R3 Mikeyarrum

34) TwoShort: Attack G2N Chiyo

35) MikeYarrum: Sacrifice Y2 Osa
Move G1 Tomo Twoshort
Move G1 Tomo Twoshort
	MikeYarrum: According to the SDG wiki, you are the second-best Homeworlds player in the world. I knew you were good, but I can't help but feel a little intimidated now.

Hopefully I'll learn some good strategies! =D
	TwoShort: Hmm... I don't really agree with that; there's at least two people I'd expect to lose to next time we played.  In any case, you've been playing an excellent game, I've really been feeling the pressure.  
  In fact, you've only made one move I'd say was a mistake; unfortunately, it's the one you just made :)

36) TwoShort: Build G3 Chiyo

37) MikeYarrum: Move G3 Tomo Chiyo
Catastrophe Chiyo Green

38) TwoShort: Sacrifice R3 Chiyo
Attack G1N Twoshort
Attack G1N Twoshort
Pass

39) MikeYarrum: Build Y2 Osa

40) TwoShort: Trade G1 R1 Twoshort

41) MikeYarrum: Discover Y1 Osa G2 Yomi

42) TwoShort: Trade B3 Y3 Blitz

43) MikeYarrum: Sacrifice G2 Osa
Build Y2 Yomi
Build Y3 Osa

44) TwoShort: Build B3 Grogar

45) MikeYarrum: Discover Y1 Yomi G3 Nyamo

46) TwoShort: Build Y3 Twoshort

47) MikeYarrum: Trade Y3 G3 Osa

48) TwoShort: Sacrifice Y1 Twoshort
Move B3 Grogar Nyamo

49) MikeYarrum: Trade Y1 R1 Mikeyarrum

50) TwoShort: Trade B3 R3 Twoshort

51) MikeYarrum: Build G1 Osa

52) TwoShort: Sacrifice Y3 Twoshort
Move B3 Nyamo Mikeyarrum
Move Y3 Blitz Nyamo
Move Y3 Nyamo Mikeyarrum

53) MikeYarrum: Sacrifice Y2 Osa
Move G3 Osa Mikeyarrum
Move G1 Osa Mikeyarrum

54) TwoShort: Sacrifice R3 Twoshort
Attack R3N Mikeyarrum
Attack G3N Mikeyarrum
Attack G1N Mikeyarrum

55) MikeYarrum: Move Y1 Nyamo Mikeyarrum

56) TwoShort: Sacrifice R3 Mikeyarrum
Attack R1N Mikeyarrum
Attack Y1N Mikeyarrum
Pass

	TwoShort: I'm a big fan of trying to put off the end as long as possible, though in this case the end is here.  But anyway, thanks for an excellent game!  You really made me work for it.
	MikeYarrum: No problem. I usually resign when I'm doomed, but I figured you'd want me to fight it out. =D


7226)
Variants: "Hard time"
Started: 2007.3.28, Ended: 2007.4.20
Participants: MikeYarrum (S), Lexicon (N)
Winner: Lexicon

1) Lexicon: Homeworld B3 R2 G3

2) MikeYarrum: Homeworld Y3 B1 G3

3) Lexicon: Build G1 Lexicon

4) MikeYarrum: Build G1 Mikeyarrum

5) Lexicon: Trade G1 Y1 Lexicon

6) MikeYarrum: Discover G1 Mikeyarrum Y2 Kagu

7) Lexicon: Build G1 Lexicon

8) MikeYarrum: Build G1 Mikeyarrum

9) Lexicon: Build G2 Lexicon

10) MikeYarrum: Build G2 Kagu

11) Lexicon: Discover G2 Lexicon Y1 Nature

12) MikeYarrum: Discover G1 Kagu B1 Tomo

13) Lexicon: Sacrifice G3 Lexicon
Build G2 Lexicon
Build G3 Nature
Build G3 Lexicon

14) MikeYarrum: Trade G1 R1 Mikeyarrum
	MikeYarrum: I just pulled that same trick in another homeworlds game... I'm learning, but still a n00b.

15) Lexicon: Discover G2 Nature B2 Science
	Lexicon: Factories are Fun!  So long as you're the one who has one, anyway. :)

16) MikeYarrum: Build R1 Mikeyarrum

17) Lexicon: Sacrifice G2 Lexicon
Build G1 Science
Build G2 Science

18) MikeYarrum: Move R1 Mikeyarrum Science

19) Lexicon: Trade G2 R2 Science

20) MikeYarrum: Attack G1 Science

21) Lexicon: Attack R1 Science

22) MikeYarrum: Trade G1 R1 Science

23) Lexicon: Sacrifice G3 Lexicon
Build G1 Nature
Build G2 Science
Build G3 Lexicon

24) MikeYarrum: Build R2 Mikeyarrum

25) Lexicon: Trade R2 Y2 Science

26) MikeYarrum: Attack R1 Science

27) Lexicon: Sacrifice G3 Nature
Build G3 Nature
Build Y1 Science
Build Y2 Science

28) MikeYarrum: Attack Y1 Science

29) Lexicon: Sacrifice Y2 Science
Move G2 Science Mikeyarrum
Move G2 Science Mikeyarrum

30) MikeYarrum: Trade G3 B3 Mikeyarrum

31) Lexicon: Trade G2 B2 Mikeyarrum

32) MikeYarrum: Sacrifice R2 Mikeyarrum
Attack G2 Mikeyarrum
Attack B2 Mikeyarrum

33) Lexicon: Discover G3 Nature Y2 Cell

34) MikeYarrum: Move B2 Mikeyarrum Science
	Lexicon: somehow I planned that attack all wrong. :)

35) Lexicon: Sacrifice G3 Lexicon
Build G2 Cell
Build G3 Lexicon
Build G3 Nature
	MikeYarrum: At first, I thought you had something sneaky planned. You almost had me.

36) MikeYarrum: Build R2 Mikeyarrum
	Lexicon: Yeah, I think I was over confident or something.  I'll have to reevaluate the situation a bit before proceeding. :)

37) Lexicon: Sacrifice G3 Lexicon
Build G3 Lexicon
Build Y3 Lexicon
Build Y3 Science

38) MikeYarrum: Attack Y2 Science

39) Lexicon: Trade G1 B1 Lexicon

40) MikeYarrum: Move B2 Science Tomo

41) Lexicon: Sacrifice B1 Lexicon
Trade G3 B3 Cell

42) MikeYarrum: Trade B2 R2 Tomo

43) Lexicon: Sacrifice G3 Nature
Build G1 Lexicon
Build G3 Cell
Build B1 Cell

44) MikeYarrum: Build G3 Kagu

45) Lexicon: Move B1 Cell Mikeyarrum

46) MikeYarrum: Move B3 Mikeyarrum Science

47) Lexicon: Sacrifice G1 Nature
Build Y1 Science
Catastrophe Science Yellow

48) MikeYarrum: Trade B3 Y3 Science

49) Lexicon: Sacrifice G2 Cell
Build B2 Mikeyarrum
Build B2 Mikeyarrum
Catastrophe Mikeyarrum Blue

50) MikeYarrum: Sacrifice G3 Kagu
Build G1 Kagu
Build G2 Tomo
Build G3 Mikeyarrum

51) Lexicon: Trade G3 R3 Cell

52) MikeYarrum: Discover R1 Science Y1 Chiyo

53) Lexicon: Sacrifice G3 Lexicon
Build G3 Lexicon
Build R3 Cell
Build Y1 Lexicon

54) MikeYarrum: Trade G2 Y2 Tomo

55) Lexicon: Discover Y1 Lexicon B1 Plos

56) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Kagu
Build G3 Tomo
Build G3 Mikeyarrum

57) Lexicon: Move R3 Cell Chiyo

58) MikeYarrum: Sacrifice Y3 Science
Move G1 Kagu Tomo
Move G1 Tomo Lexicon
Move G1 Tomo Lexicon
Catastrophe Lexicon Green

59) Lexicon: Trade B3 G3 Cell

60) MikeYarrum: Build R3 Tomo

61) Lexicon: Build G1 Cell

62) MikeYarrum: Build Y3 Tomo

63) Lexicon: Move G3 Cell Mikeyarrum

64) MikeYarrum: Attack G3 Mikeyarrum

65) Lexicon: Move G1 Cell Mikeyarrum
Catastrophe Mikeyarrum Green

66) MikeYarrum: Move G3 Tomo Mikeyarrum

67) Lexicon: Trade Y3 G3 Lexicon

68) MikeYarrum: Move R1 Chiyo Lexicon

69) Lexicon: Build Y3 Lexicon

70) MikeYarrum: Sacrifice Y3 Tomo
Move R2 Tomo Lexicon
Move R3 Tomo Lexicon
Move R1 Science Plos
Catastrophe Lexicon R

71) Lexicon: Sacrifice G3 Lexicon
Build Y3 Plos
Build R1 Cell
Build R2 Chiyo

72) MikeYarrum: Discover G2 Kagu B1 Koneko

73) Lexicon: Sacrifice R1 Cell
Attack R1 Plos

74) MikeYarrum: Build G1 Koneko
	MikeYarrum: Ugh, I was afraid you'd do that.

Anyway, I tried taking my turn, but Homeworlds won't let me name my new system, even though it's a legal name. Last time something like this happened, it cleared up on its own...

75) Lexicon: Move R3 Chiyo Mikeyarrum
	MikeYarrum: There, it worked.

76) MikeYarrum: Attack R3 Mikeyarrum

77) Lexicon: Move R2 Chiyo Mikeyarrum
Catastrophe Mikeyarrum Red

78) MikeYarrum: Trade G2 R2 Koneko

79) Lexicon: Move R3 Cell Tomo

80) MikeYarrum: Build R1 Koneko

81) Lexicon: Attack Y2 Tomo

82) MikeYarrum: Trade R2 Y2 Koneko

83) Lexicon: Sacrifice Y3 Lexicon
Move Y1 Plos Mikeyarrum
Move Y3 Plos Mikeyarrum
Move Y2 Tomo Mikeyarrum
Catastrophe Mikeyarrum Yellow

	Lexicon: Thanks for the game! :)
	MikeYarrum: My pleasure.


7227)
Started: 2007.3.28, Ended: 2007.4.3
Participants: mneme (S), MikeYarrum (N)
Winner: mneme

1) MikeYarrum: Homeworld B1 Y2 G3

2) mneme: Homeworld G3 Y2 B3

3) MikeYarrum: Build G1 Mikeyarrum
	mneme: Oh, good -- you took banker.  I was going to ask you to do that to help with the experience gap, since it's a slightly easier position.  You should seek down and read Andy Looney's strategy guide if you get a chance -- it's short and good.

4) mneme: Build B1 Mneme
	MikeYarrum: It's my usual opening move. Now that I've had time to get a handle on the game, that's really not a bad idea. Thank you!

5) MikeYarrum: Build G1 Mikeyarrum

6) mneme: Discover B1 Mneme G1 Emerald

7) MikeYarrum: Discover G1 Mikeyarrum Y3 Saka

8) mneme: Build B1 Mneme

9) MikeYarrum: Build G2 Saka

10) mneme: Trade B3 G3 Mneme

11) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Saka
Build G2 Mikeyarrum
Build G3 Mikeyarrum
	mneme: s b3 g3 mneme
	mneme: s b3 g3 mneme

12) mneme: Build B2 Mneme

13) MikeYarrum: Discover G2 Saka B2 Yuka

14) mneme: Build B2 Mneme

15) MikeYarrum: Trade G2 R2 Mikeyarrum

16) mneme: Build B3 Emerald

17) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Yuka
Build G3 Mikeyarrum
Build R1 Mikeyarrum

18) mneme: Discover B2 Mneme Y1 Jacinth

19) MikeYarrum: Move R2 Mikeyarrum Saka

20) mneme: Build B3 Mneme

21) MikeYarrum: Build R1 Mikeyarrum

22) mneme: Trade B3 R3 Emerald

23) MikeYarrum: Trade G2 Y2 Yuka

24) mneme: Build B3 Emerald

25) MikeYarrum: Build G2 Yuka

26) mneme: Trade B3 Y3 Emerald

27) MikeYarrum: Move G2 Yuka Jacinth

28) mneme: Discover B2 Jacinth Y3 Jasper

29) MikeYarrum: Move G2 Yuka Jacinth

30) mneme: Discover G3 Mneme Y1 Tigereye

31) MikeYarrum: Trade G1 Y1 Mikeyarrum

32) mneme: Build B3 Emerald

33) MikeYarrum: Move G2 Jacinth Mneme

34) mneme: Trade B3 R3 Mneme

35) MikeYarrum: Build G1 Mneme

36) mneme: Move R3 Emerald Saka

37) MikeYarrum: Move G2 Jacinth Mneme
Catastrophe Mneme Green

38) mneme: Attack R2 Saka

39) MikeYarrum: Move G2 Saka Yuka
	mneme: It's an interesting matchup -- green factory vs mean blue machine.
	MikeYarrum: Definitely. You are an interesting opponent. =D

40) mneme: Sacrifice Y3 Emerald
Move B3 Emerald Saka
Move B3 Saka Mikeyarrum
Move R3 Saka Mikeyarrum

41) MikeYarrum: Build R1 Mikeyarrum
Catastrophe Mikeyarrum Red
	mneme: planning on making a move some time soon?
/me is impatient.  :)

BTW, trying MC as a 4p game is a good idea -- it's very different; lighter, and easier, as a multiplayer game than as a duel.


42) mneme: Sacrifice R2 Saka
Attack G3 Mikeyarrum
Attack Y1 Mikeyarrum
	MikeYarrum: Sorry about that. Sometimes I wait a bit before I take my turn, 'cuz I'm "not in the mood".

And I'm easily frustrated sometimes, but I kind of calmed down about MC and I'd heard it's different with 4 players.
	mneme: It's ok -- I was just getting impatient because my brain was spinning circles in planning ahead -- witch is kinda stupid, but there it is.  
	mneme: It's ok -- I was just getting impatient because my brain was spinning circles in planning ahead -- which is kinda stupid, but there it is.  

	MikeYarrum: Doomsday device?
	mneme: doomsday device = the setup for blowing up a player's homeworld in two moves.  Yours was slower, but the same concept.

Good game -- again?
	MikeYarrum: I'm always up for another game!


7220)
Variants: "Hard time"
Started: 2007.3.29, Ended: 2007.5.11
Participants: jeep (S), unic (N)
Winner: jeep

1) unic: Homeworld B3 Y2 G3

2) jeep: Homeworld Y1 B2 G3

3) unic: Build G1 Unic

4) jeep: Build G1 Jeep

5) unic: Discover G1 Unic Y1 Zato

6) jeep: Trade G1 Y1 Jeep

7) unic: Build G1 Unic

8) jeep: Build Y2 Jeep

9) unic: Trade G1 R1 Unic

10) jeep: Discover Y1 Jeep G3 Bob

11) unic: Build G1 Unic

12) jeep: Build G1 Jeep

13) unic: Build G2 Unic

14) jeep: Sacrifice G3 Jeep
Build Y2 Bob
Build Y3 Bob
Build Y3 Jeep



7159)
Started: 2007.3.29, Ended: 2007.4.13
Participants: MikeYarrum (S), ts52 (N), morganfitzp (E)
Winner: morganfitzp

1) ts52: Homeworld Y1 B2 G3

2) morganfitzp: Homeworld R2 B3 G3
	ts52: Have a great game everyone!
	MikeYarrum: I like playing this with three players, so thanks for joining.
	morganfitzp: Aye!

3) MikeYarrum: Homeworld Y1 B3 G3

4) ts52: Build G1 Ts52

5) morganfitzp: Build G1 Morganfitzp

6) MikeYarrum: Build G1 Mikeyarrum

7) ts52: Discover G1 Ts52 B3 Gonzo

8) morganfitzp: Trade G1 Y1 Morganfitzp

9) MikeYarrum: Build G1 Mikeyarrum

10) ts52: Build G1 Gonzo

11) morganfitzp: Build G2 Morganfitzp

12) MikeYarrum: Discover G1 Mikeyarrum Y2 Tomo

13) ts52: Trade G1 Y1 Gonzo

14) morganfitzp: Build Y2 Morganfitzp

15) MikeYarrum: Build G1 Tomo

16) ts52: Build G2 Ts52

17) morganfitzp: Discover Y1 Morganfitzp B1 Prospero

18) MikeYarrum: Build G2 Mikeyarrum

19) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Ts52

20) morganfitzp: Sacrifice G3 Morganfitzp
Build Y2 Morganfitzp
Build Y2 Prospero
Build G3 Morganfitzp

21) MikeYarrum: Discover G1 Tomo Y3 Kagu

22) ts52: Discover G3 Ts52 Y3 Bigbird

23) morganfitzp: Build Y3 Morganfitzp

24) MikeYarrum: Trade G3 Y3 Mikeyarrum

25) ts52: Discover G2 Ts52 G3 Kermit

26) morganfitzp: Discover Y2 Morganfitzp B1 Miranda

27) MikeYarrum: Discover Y3 Mikeyarrum B2 Kao

28) ts52: Discover G2 Gonzo B2 Grover

29) morganfitzp: Trade Y1 B1 Prospero

30) MikeYarrum: Trade G1 Y1 Mikeyarrum

31) ts52: Sacrifice G3 Bigbird
Build Y3 Gonzo
Build G1 Ts52
Build G3 Grover

32) morganfitzp: Sacrifice G2 Morganfitzp
Build G2 Morganfitzp
Build B1 Prospero

33) MikeYarrum: Sacrifice G1 Kagu
Build Y3 Kao

34) ts52: Trade G1 R1 Ts52

35) morganfitzp: Trade B1 R1 Prospero

36) MikeYarrum: Trade Y3 R3 Kao

37) ts52: Move Y1 Gonzo Grover

38) morganfitzp: Sacrifice G2 Morganfitzp
Build Y3 Prospero
Build G1 Morganfitzp

39) MikeYarrum: Sacrifice G1 Tomo
Build Y2 Kao

40) ts52: Build G1 Ts52

41) morganfitzp: Move G1 Morganfitzp Prospero

42) MikeYarrum: Move Y3 Kao Kermit

43) ts52: Trade G3 R3 Grover

44) morganfitzp: Build G1 Morganfitzp

45) MikeYarrum: Build G2 Mikeyarrum

46) ts52: Move R3 Grover Mikeyarrum

47) morganfitzp: Sacrifice Y2 Morganfitzp
Discover Y2 Miranda G3 Caliban
Discover Y2 Prospero B3 Ariel

48) MikeYarrum: Trade Y1 R1 Mikeyarrum

49) ts52: Attack R1S Mikeyarrum

50) morganfitzp: Build Y1 Caliban

51) MikeYarrum: Move R3 Kao Mikeyarrum

52) ts52: Attack R3S Mikeyarrum

53) morganfitzp: Sacrifice G3 Morganfitzp
Build R1 Prospero
Build Y2 Morganfitzp
Build G3 Morganfitzp

54) MikeYarrum: Trade G2 R2 Mikeyarrum
Catastrophe Mikeyarrum Red

55) ts52: Discover Y3 Gonzo B1 Jax
	ts52: Sorry about the undo. I confused two games I'm in because my browser went back a page unexpectedly. Re-made the same move.
	MikeYarrum: No problem. Well, I have a problem, but it's in-game, not out-of-game. :)

56) morganfitzp: Sacrifice Y3 Morganfitzp
Move Y2 Ariel Ts52
Move Y2 Caliban Ts52
Move Y1 Caliban Ts52
Catastrophe Ts52 Yellow
	morganfitzp: Your problems are interesting to me, and for every problem there is a solution. Even in Homeworlds two wrongs don't make a right, but three rights do make a left. And four of any one thing makes....
	MikeYarrum: Nice point, Morgan. :)

I feel a little like I'm playing king maker by not just accepting this attack... I'll be pretty weakened after it. On the other hand, if I just gave in, it really WOULD be playing king maker.

57) MikeYarrum: Build G2 Mikeyarrum

58) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Gonzo
Build Y1 Jax
	morganfitzp: Well, how about I make it easier for you two to access each other's homeworlds?

59) morganfitzp: Discover B1 Prospero Y3 Boatswain
	MikeYarrum: For some reason, I thought we were playing Sinister Homeworlds instead of standard last-man-standing. Kind of explains a few things.

60) MikeYarrum: Build Y1 Kermit

61) ts52: Trade G1 B1 Gonzo

62) morganfitzp: Sacrifice G3 Morganfitzp
Build G1 Prospero
Build G3 Morganfitzp
Build Y2 Prospero

63) MikeYarrum: Trade Y2 R2 Kao
	MikeYarrum: As long as we're being chatty, I appreciate your naming system, morgan. ;)

64) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Grover
Build R1 Ts52

65) morganfitzp: Sacrifice Y2 Prospero
Move G1 Prospero Ts52
Move G1 Prospero Ts52
Catastrophe Ts52 Green

66) MikeYarrum: Move Y1 Kermit Kao

67) ts52: Sacrifice Y1 Grover
Move G3 Gonzo Ts52

68) morganfitzp: Trade R1 G1 Prospero

69) MikeYarrum: Trade Y1 R1 Kao

70) ts52: Trade Y1 G1 Jax

71) morganfitzp: Build R2 Prospero

72) MikeYarrum: Sacrifice R1 Kao
Attack G2N Kermit

73) ts52: Trade R1 Y1 Ts52

74) morganfitzp: Discover R1 Prospero G3 Trinculo
	MikeYarrum: The game keeps insisting that there's no system named "kermit". Yes, I'm sure I spelled it right.
	MikeYarrum: Should I Call an Admin?
	MikeYarrum: Thanks. :)
	Aaron: Could you please post the orderset?  I'll run an offline test and see what happens.

75) MikeYarrum: Build Y1 Kermit
	MikeYarrum: I tried to submit the same order to double-check, but for some reason it's working now. Thanks a lot for getting to us so quickly!
	MikeYarrum: If you were wondering, it was

sacrifice r1 kao
attack g2n kermit

I tried a few other orders regarding the same system and checked the spelling before realizing something was wrong.
	Aaron: how odd =/  I apologize.  If it happens again beep me.  Cheers!

76) ts52: Build G1 Grover

77) morganfitzp: Sacrifice G3 Morganfitzp
Build Y1 Prospero
Build Y2 Morganfitzp
Build G3 Morganfitzp

78) MikeYarrum: Move Y3 Kermit Grover

79) ts52: Sacrifice Y2 Grover
Move G2 Grover Mikeyarrum
Move G1 Grover Mikeyarrum
Catastrophe Mikeyarrum Green

80) morganfitzp: Move Y3 Prospero Grover

81) ts52: Build G1 Ts52

82) morganfitzp: Sacrifice R1 Trinculo
Attack Y3S Grover

83) ts52: Build G2 Jax

84) morganfitzp: Sacrifice G1 Morganfitzp
Build B2 Boatswain

85) ts52: Move G1 Jax Gonzo

86) morganfitzp: Trade Y3 B3 Grover

87) ts52: Trade B1 Y1 Gonzo

88) morganfitzp: Sacrifice Y2 Morganfitzp
Move B1 Boatswain Ts52
Move B2 Boatswain Ts52

89) ts52: Attack B2E Ts52

90) morganfitzp: Sacrifice G1 Prospero
Build B1 Ts52
Catastrophe Ts52 Blue

	morganfitzp: Good game y'all! Thanks for playing!
	MikeYarrum: My pleasure!
	ts52: Thanks again. 3 is much different from 2.


7116)
Started: 2007.3.29, Ended: 2007.4.13
Participants: MikeYarrum (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) MikeYarrum: Homeworld B3 Y2 G3
	ts52: Have a good game!
	MikeYarrum: You too.

3) ts52: Build G1 Ts52

4) MikeYarrum: Build G1 Mikeyarrum

5) ts52: Discover G1 Ts52 G3 Kermit

6) MikeYarrum: Trade G1 Y1 Mikeyarrum

7) ts52: Build G1 Ts52

8) MikeYarrum: Discover Y1 Mikeyarrum G1 Chi

9) ts52: Build G2 Ts52

10) MikeYarrum: Build G2 Mikeyarrum

11) ts52: Trade G2 Y2 Ts52

12) MikeYarrum: Trade G2 Y2 Mikeyarrum

13) ts52: Build G2 Ts52

14) MikeYarrum: Build G2 Mikeyarrum

15) ts52: Discover G1 Ts52 B3 Gonzo

16) MikeYarrum: Build Y1 Mikeyarrum

17) ts52: Move Y2 Ts52 Gonzo

18) MikeYarrum: Build Y3 Chi

19) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build Y3 Gonzo

20) MikeYarrum: Discover Y1 Chi Y3 Saka

21) ts52: Discover G2 Gonzo B1 Grover

22) MikeYarrum: Trade Y1 R1 Mikeyarrum

23) ts52: Trade G2 R2 Ts52

24) MikeYarrum: Move G2 Mikeyarrum Grover

25) ts52: Build G2 Grover

26) MikeYarrum: Sacrifice G2 Grover
Build Y1 Chi
Build G2 Mikeyarrum

27) ts52: Move Y2 Gonzo Grover

28) MikeYarrum: Move Y3 Chi Kermit

29) ts52: Build R1 Ts52

30) MikeYarrum: Sacrifice R1 Mikeyarrum
Attack G1 Kermit

31) ts52: Move R1 Ts52 Saka

32) MikeYarrum: Trade G2 R2 Mikeyarrum

33) ts52: Attack Y1S Saka

34) MikeYarrum: Move Y3 Kermit Grover

35) ts52: Sacrifice Y2 Grover
Move G2 Grover Mikeyarrum
Move G2 Grover Mikeyarrum

36) MikeYarrum: Trade G3 R3 Mikeyarrum

37) ts52: Sacrifice G2 Mikeyarrum
Build Y2 Gonzo
Build G2 Gonzo

38) MikeYarrum: Attack G2 Mikeyarrum

39) ts52: Build R1 Ts52

40) MikeYarrum: Build G2 Mikeyarrum

41) ts52: Build G3 Ts52

42) MikeYarrum: Move Y3 Grover Saka

43) ts52: Discover R1 Saka B1 Berry

44) MikeYarrum: Move R2 Mikeyarrum Chi

45) ts52: Move R2 Ts52 Kermit

46) MikeYarrum: Sacrifice G1 Kermit
Build R1 Chi

47) ts52: Move Y2 Gonzo Berry

48) MikeYarrum: Discover Y3 Saka G1 Osaka

49) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Kermit
Build R3 Berry

50) MikeYarrum: Build R3 Mikeyarrum

51) ts52: Move G3 Ts52 Saka

52) MikeYarrum: Move R3 Mikeyarrum Osaka

53) ts52: Discover Y1 Saka B1 Fozzie

54) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move R2 Chi Kermit
Move R1 Chi Kermit
Catastrophe Kermit Red

55) ts52: Build G3 Saka

56) MikeYarrum: Discover R3 Osaka B3 Yukari

57) ts52: Move G3 Saka Fozzie

58) MikeYarrum: Build Y2 Chi

59) ts52: Move G1 Gonzo Berry

60) MikeYarrum: Build R1 Mikeyarrum

61) ts52: Sacrifice G3 Saka
Build G3 Gonzo
Build Y3 Fozzie
Build R2 Ts52

62) MikeYarrum: Move R1 Mikeyarrum Osaka

63) ts52: Sacrifice Y2 Berry
Move G1 Berry Mikeyarrum
Move G3 Fozzie Mikeyarrum
Catastrophe Mikeyarrum Green

64) MikeYarrum: Move Y3 Osaka Mikeyarrum

65) ts52: Move Y3 Fozzie Mikeyarrum

66) MikeYarrum: Trade Y3 G3 Mikeyarrum

67) ts52: Sacrifice R2 Ts52
Attack R3S Mikeyarrum
Attack G3S Mikeyarrum

	ts52: Thanks for the game!
	MikeYarrum: My pleasure.


7246)
Started: 2007.3.29, Ended: 2007.5.1
Participants: ts52 (S), nycavri (N)
Winner: ts52

1) nycavri: Homeworld Y1 B2 G3
	nycavri: Looking to find another opponent to beat me at Homeworlds.....  TaGG.

2) ts52: Homeworld Y1 B3 G3
	ts52: I'm happy to try...

3) nycavri: Build G1 Nycavri

4) ts52: Build G1 Ts52

5) nycavri: Trade G1 Y1 Nycavri

6) ts52: Build G1 Ts52

7) nycavri: Build Y2 Nycavri

8) ts52: Discover G1 Ts52 B2 Berry

9) nycavri: Discover Y2 Nycavri B3 Deacon

10) ts52: Build G1 Berry

11) nycavri: Sacrifice G3 Nycavri
Build Y2 Deacon
Build Y2 Deacon
Build Y3 Nycavri

12) ts52: Build G2 Berry

13) nycavri: Trade Y2 G2 Deacon

14) ts52: Trade G2 Y2 Berry

15) nycavri: Sacrifice Y2 Deacon
Move G2 Deacon Berry
Move G2 Berry Ts52

16) ts52: Trade G3 R3 Ts52

17) nycavri: Trade Y1 R1 Nycavri

18) ts52: Attack G2N Ts52

19) nycavri: Trade Y2 G2 Deacon

20) ts52: Discover G1 Berry B3 Grover

21) nycavri: Build G2 Deacon

22) ts52: Build G3 Grover

23) nycavri: Trade G2 Y2 Deacon

24) ts52: Trade G1 Y1 Berry

25) nycavri: Build Y2 Deacon

26) ts52: Move Y2 Berry Grover

27) nycavri: Trade Y3 R3 Nycavri

28) ts52: Sacrifice G2 Ts52
Build Y3 Berry
Build Y3 Grover

29) nycavri: Trade Y2 B2 Deacon

30) ts52: Sacrifice Y2 Grover
Move G3 Grover Nycavri
Move Y3 Grover Nycavri

31) nycavri: Attack G3 Nycavri

32) ts52: Sacrifice R3 Ts52
Attack G3N Nycavri
Attack R3N Nycavri
Attack R1N Nycavri
	ts52: Thanks for the game!
	nycavri: Well played.



7230)
Variants: "Hard time"
Started: 2007.3.30, Ended: 2007.4.6
Participants: mneme (S), eugman (N)
Winner: mneme

1) eugman: Homeworld B3 Y1 G3

2) mneme: Homeworld G3 Y2 B3



7228)
Variants: "Hard time"
Started: 2007.4.1, Ended: 2007.4.4
Participants: TwoShort (S), colodo (N)
Winner: TwoShort



7273)
Variants: "Hard time"
Started: 2007.4.1, Ended: 2007.4.21
Participants: TwoShort (S), nycavri (N)
Winner: TwoShort

1) nycavri: Homeworld Y1 B2 G3
	nycavri: Hi, there.  I'll pass on the ZPIPs challenge in exchange for a "friendly" game.  I've had my butt handed to me in 6 straight, although I look to have my first ladder match sewn up and feel comfortable early in my other current game.  I would appreciate any words of wisdom as we proceed, thanks.  TaGG.

2) TwoShort: Homeworld R1 B3 G3

3) nycavri: Build G1 Nycavri

4) TwoShort: Build G1 Twoshort

5) nycavri: Trade G1 Y1 Nycavri

6) TwoShort: Trade G1 Y1 Twoshort
	TwoShort: So I guess I should be coming up with some words of wisdom here...  

7) nycavri: Build Y2 Nycavri
	TwoShort: Much of the game, particularly the early game, is about jockeying for access to the bigger peices in the stash.  But I'm thinking you know that and that you took the y1 despite having access to yellow just to force me to let you have the 2 pointer.

8) TwoShort: Build Y2 Twoshort
	nycavri: That, and stalling you from getting the first g2.  Now I need to make my Homeworld a little less catastrophe-ready..... 

9) nycavri: Trade Y2 R2 Nycavri

10) TwoShort: Discover Y1 Twoshort G2 Grogar

11) nycavri: Discover Y1 Nycavri G3 Deacon

12) TwoShort: Build Y2 Grogar

13) nycavri: Build G1 Nycavri

14) TwoShort: Discover Y2 Grogar B3 Bluonia

15) nycavri: Build Y2 Deacon
	TwoShort: So I'm setting a bit of a bad example here; I'd generally recommend obtaining a sacrificeable red ship immediately when your opponent does.  But I frequently flaunt that rule when I think I can get away with it, and I think you took red a bit early;  it doesn't really help you much until you can threaten to move in with stuff it would be worth sacrificing you r2 for.

16) TwoShort: Sacrifice G3 Twoshort
Build Y3 Twoshort
Build Y3 Grogar
Build Y3 Bluonia
	nycavri: I have heard that before, and understand the wisdom, but see why you didn't need to respond yet.  How about now?
	TwoShort: Well, I was going to mention that the reason I didn't want to respond was to chase the really big prize of the early game (or even in general): 3 pointers, particularly yellow ones.  So, sorry, not yet... :)

17) nycavri: Move Y2 Deacon Grogar

18) TwoShort: Trade Y2 R2 Bluonia

19) nycavri: Build Y2 Deacon

20) TwoShort: Trade Y3 G3 Twoshort

21) nycavri: Discover Y2 Deacon B2 May

22) TwoShort: Sacrifice G3 Twoshort
Build Y3 Twoshort
Build R1 Bluonia
Build R1 Bluonia

23) nycavri: Build R2 Nycavri

24) TwoShort: Sacrifice Y3 Grogar
Move Y3 Bluonia Nycavri
Move R1 Bluonia Nycavri
Move R1 Bluonia Nycavri
Catastrophe Nycavri Red
	TwoShort: Very well played game to this point, but that last move was a mistake I'm afraid...

25) nycavri: Build G1 Nycavri

26) TwoShort: Sacrifice R2 Bluonia
Attack G3N Nycavri
Attack G1N Nycavri
	nycavri: I had to build or lose to an r2 attack, right?  Although I guess I could have moved in a Yellow.  Either way, this is all but done..... 
	nycavri: Building the r2 was clearly a game breaker, but if I recall correctly, it was over if I didn't get access to Red at home.....  Did I miss something?
	TwoShort: Well, you had the first r2 at home, the game breaker was building the second, thus allowing me to blow up your red while keeping one of my own and getting a three into your homeworld.  If you hit the "history" link at the top of the page you can step through stuff... I'm not entirely sure what you should have done instead of building the second red, maybe moved the first out to Bluonia to blow up all our red.

27) nycavri: Build Y3 Grogar

28) TwoShort: Build G1 Nycavri
Catastrophe Nycavri Green
	nycavri: Ooops!  Well played, and thanks for the tips.



7286)
Variants: "Hard time"
Started: 2007.4.2, Ended: 2007.5.6
Participants: morganfitzp (S), Kermit (N)
Winner: morganfitzp

1) Kermit: Homeworld Y3 G1 B3

2) morganfitzp: Homeworld G2 Y1 B3

3) Kermit: Build B1 Kermit
	morganfitzp: Hi Kermit
	Kermit: hello, prepare to win. I like Homeworlds a lot but I suck (generally) at the binary version, doing much better at multiplayer.

4) morganfitzp: Build B1 Morganfitzp

5) Kermit: Discover B1 Kermit G2 Chronos

6) morganfitzp: Discover B1 Morganfitzp G3 Couve

7) Kermit: Build B1 Chronos

8) morganfitzp: Build B2 Couve

9) Kermit: Trade B1 Y1 Chronos

10) morganfitzp: Trade B2 Y2 Couve

11) Kermit: Build B1 Kermit

12) morganfitzp: Build B2 Couve

13) Kermit: Trade B1 G1 Kermit

14) morganfitzp: Discover B2 Couve Y2 Aboborinha

15) Kermit: Trade B1 R1 Chronos

16) morganfitzp: Build B1 Couve

17) Kermit: Discover Y1 Chronos B3 Phobos

18) morganfitzp: Trade B1 R1 Couve

19) Kermit: Build B1 Kermit

20) morganfitzp: Build B1 Couve



7290)
Started: 2007.4.3, Ended: 2007.6.12
Participants: jeep (S), jbj77 (N)
Winner: jeep

1) jbj77: Homeworld B1 Y2 G3

2) jeep: Homeworld B1 G3 B3 *

3) jbj77: Build G1 Jbj77

4) jeep: Build B1 Jeep

5) jbj77: Discover G1 Jbj77 Y3 Alpha

6) jeep: Trade B3 Y3 Jeep

7) jbj77: Build G1 Jbj77

8) jeep: Build B2 Jeep

9) jbj77: Build G1 Jbj77

10) jeep: Trade B2 G2 Jeep

11) jbj77: Trade G1 Y1 Jbj77

12) jeep: Build B2 Jeep

13) jbj77: Build G1 Alpha

14) jeep: Trade B2 R2 Jeep

15) jbj77: Trade G1 R1 Jbj77

16) jeep: Build B2 Jeep

17) jbj77: Build G1 Alpha

18) jeep: Discover B2 Jeep Y2 Wanderer

19) jbj77: Build G2 Jbj77

20) jeep: Build G2 Jeep

21) jbj77: Discover G1 Alpha Y2 Beta

22) jeep: Discover B2 Wanderer G3 Gamma

23) jbj77: Move G1 Beta Jeep
Catastrophe Jeep Green

24) jeep: Trade B1 G1 Jeep
	jeep: I didn't notice they were connected.  *sigh*

25) jbj77: Trade G2 B2 Jbj77
	jbj77: I thought it was a blunder, or else I was walking into a very well concealed trap.

26) jeep: Build G2 Jeep

27) jbj77: Build G2 Jbj77
	jeep: I've looked and looked and I see nothing good coming.  :(

28) jeep: Build Y1 Jeep

29) jbj77: Discover G1 Alpha Y2 Delta

30) jeep: Move Y1 Jeep Gamma

31) jbj77: Sacrifice G3 Jbj77
Build G2 Alpha
Build G3 Delta
Build G3 Jbj77

32) jeep: Build Y1 Gamma

33) jbj77: Sacrifice B2 Jbj77
Trade G2 Y2 Alpha
Trade G3 Y3 Delta

34) jeep: Discover G1 Jeep B3 Stage

	jeep: Thanks for the game... did you resign or lose on time?


7302)
Variants: "Hard time"
Started: 2007.4.3, Ended: 2007.4.27
Participants: jbj77 (S), clockwise (N)
Winner: clockwise

1) clockwise: Homeworld B2 R1 G3

2) jbj77: Homeworld B1 Y2 G3

3) clockwise: Build G1 Clockwise

4) jbj77: Build G1 Jbj77

5) clockwise: Trade G1 Y1 Clockwise

6) jbj77: Trade G1 Y1 Jbj77
	jbj77: Oops, I really meant that to be a y3 instead of a y2, oh well.  I never have bought the argument that you should always be distance 3 from your opponent's homeworld.  In fact, I think I'm glad that I used a y2 instead of a y3.

7) clockwise: Build G1 Clockwise
	clockwise: Ah, I was wondering about that.  The last game I played someone did the same thing, though I don't know if it was intentional or not.  Hopefully I can show you why it's a bad idea ;)

8) jbj77: Discover Y1 Jbj77 G3 Alpha

9) clockwise: Trade G1 R1 Clockwise
	jbj77: In any case I should learn something here.
	jbj77: I notice that you are doing quite well with Homeworlds: no losses so far.

10) jbj77: Build G1 Jbj77

11) clockwise: Build R1 Clockwise

12) jbj77: Trade G3 R3 Jbj77
	clockwise: I'm going to be out of town for the weekend, so you shouldn't expect any more moves from me before Monday.

13) clockwise: Move R1 Clockwise Alpha

14) jbj77: Discover Y1 Alpha G2 Beta

15) clockwise: Trade R1 B1 Clockwise

16) jbj77: Build Y1 Beta

17) clockwise: Build Y2 Clockwise

18) jbj77: Build Y2 Beta

19) clockwise: Sacrifice Y2 Clockwise
Discover Y1 Clockwise Y3 Flux
Move Y1 Flux Beta
Catastrophe Beta Yellow

20) jbj77: Build G1 Jbj77

21) clockwise: Build B1 Clockwise

22) jbj77: Build G1 Jbj77

23) clockwise: Build G2 Clockwise

24) jbj77: Discover G1 Jbj77 B3 Gamma

25) clockwise: Trade G2 Y2 Clockwise

26) jbj77: Trade G1 Y1 Jbj77

27) clockwise: Move B1 Clockwise Alpha

28) jbj77: Build R1 Jbj77

29) clockwise: Build B2 Clockwise

30) jbj77: Move R1 Jbj77 Gamma

31) clockwise: Move B2 Clockwise Gamma

32) jbj77: Build R2 Jbj77

33) clockwise: Sacrifice G3 Clockwise
Build B2 Alpha
Build R2 Alpha
Build B3 Clockwise

34) jbj77: Discover R2 Jbj77 B3 Delta

35) clockwise: Sacrifice R2 Alpha
Attack R1S Gamma
Attack G1S Gamma

36) jbj77: Build G1 Jbj77

37) clockwise: Trade B3 G3 Clockwise

38) jbj77: Discover G1 Jbj77 B3 Epsilon

39) clockwise: Build Y1 Clockwise
	clockwise: Out of curiosity... do you still feel that the proximity of our homeworlds is not to your disadvantage?  

Or do you feel the added pressure that it has enabled me to place you under?  If so, do you feel that the advantage it gives in control over the large pieces is adequate compensation?
	jbj77: Hmmm...I'll just say that I'm not yet convinced that it is to my disadvantage.

40) jbj77: Move Y1 Jbj77 Delta
	jbj77: I do feel that my efforts are rather futile at this point.  But, I don't blame it on the proximity of our homeworlds.  I think that I would be toast without the ability to keep these large pieces out of your hands.
	clockwise: You are definitely suffering more from my blue monopoly, but I feel that the reason that came about was back when I first assaulted the alpha system with my r1 forcing you to lose tempo retreating.  With the extra tempo I was able to push both blue and red and you were only able to prevent one of the monopolies.

Similarly I was able to use the proximity and tempo advantage in overtaking gamma.  Which was mostly an even exchange from my perspective except that it also gave me additional development while taking away what was your only developed system.  Plus even exchanges almost always favor the leader.
	clockwise: So, yes, at the moment it is helping you a bit, but on the other hand it's also part of how we got to this situation to begin with.

41) clockwise: Move Y1 Clockwise Gamma
	jbj77: Well yes, I suppose so.  I can see how being closer amplifies the tempo advantage of the first player.  So in that case, why doesn't the first player choose her/his homeworld markers to be of the same size?  Then the other player can be at most distance 2.

42) jbj77: Build G2 Epsilon

43) clockwise: Sacrifice G3 Clockwise
Build Y1 Gamma
Build Y2 Gamma
Build Y3 Clockwise
	clockwise: Good question.  It's actually something I've been wondering about testing, but have not yet done so.  I'm guessing that it starts out as an advantage, but if the game goes on too long you will start suffering from the fact that your opponent has more choices for staging attacks.  So if it gives enough of an early advantage it may be worthwhile, otherwise it is probably a net disadvantage.  One of these days I'll give it a try.

44) jbj77: Sacrifice G2 Epsilon
Build G2 Epsilon
Build Y3 Delta

45) clockwise: Sacrifice Y2 Clockwise
Move Y1 Gamma Jbj77
Move Y1 Gamma Jbj77

46) jbj77: Sacrifice Y3 Delta
Move R2 Delta Jbj77
Move R3 Jbj77 Gamma
Move G2 Epsilon Jbj77

47) clockwise: Sacrifice B2 Alpha
Trade B2 R2 Gamma
Trade Y2 R2 Gamma
Catastrophe Gamma Red

48) jbj77: Move R2 Jbj77 Alpha

49) clockwise: Build G2 Gamma
	clockwise: Hmm, nice move
	jbj77: Very much an act of desperation.  I was about to resign when I thought of this.

50) jbj77: Trade G1 R1 Jbj77

51) clockwise: Sacrifice R1 Alpha
Attack R1S Jbj77
	clockwise: The B2 move was more elegant, but sadly flawed.  Claiming your yellow star was also tempting, but ultimately I'll just have to accept being a large ship up even though this position is less than ideal.
	jbj77: I'm going to have to think about this one for a little bit.

52) jbj77: Attack B1 Alpha

53) clockwise: Sacrifice G2 Gamma
Build Y2 Jbj77
Build Y2 Clockwise
Catastrophe Jbj77 Yellow

54) jbj77: Build B2 Alpha

55) clockwise: Move Y3 Clockwise Alpha

56) jbj77: Sacrifice R2 Alpha
Attack R1 Jbj77
Pass

57) clockwise: Trade Y2 R2 Clockwise

58) jbj77: Build R1 Jbj77

59) clockwise: Sacrifice R2 Clockwise
Attack B1S Alpha
Attack B2S Alpha

60) jbj77: Sacrifice Y1 Delta
Move R1 Jbj77 Gamma

61) clockwise: Build B2 Alpha

62) jbj77: Attack G1 Gamma

63) clockwise: Sacrifice Y3 Alpha
Move B1 Alpha Jbj77
Move B2 Alpha Jbj77
Move B2 Alpha Jbj77
Catastrophe Jbj77 Blue
	clockwise: Isn't blue pretty?
	clockwise: The red build is a nice counter, I had been expecting you to move the y1 back.  Of course my response would have been the same.  I think you loose in 2 turns (3 if you do a failed kamakazi on my homeworld), but you've surprised me once already so perhaps you have another trick to pull out.

	jbj77: Thanks for allowing me that.  And thanks for the game.  I guess you did teach me some things!  :)
	clockwise: Great game, thanks


7287)
Started: 2007.4.4, Ended: 2007.4.24
Participants: jbj77 (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B1 Y2 G3

2) jbj77: Homeworld B1 G3 B3 *
	jbj77: I think I'll try this TwoShort response to that opening (it seems to work for him).

3) mneme: Build G1 Mneme

4) jbj77: Build B1 Jbj77
	mneme: I'm curious as to how this will work.  I've played b3 vs g3 and won, but not starting with Y in your home system is pretty ballsy.
	jbj77: Yah, it's a bit scary for me.  I hope I'm not messing it up already.

5) mneme: Build G1 Mneme
	mneme: messing it up on the second move would be tricky, I'd think.

6) jbj77: Trade B3 Y3 Jbj77

7) mneme: Discover G1 Mneme Y3 Diamant
	mneme: hmm.  Intrestnng.  I see some of the logic here.

8) jbj77: Build B2 Jbj77
	jbj77: Yup, look at those blues, ripe for the picking.

9) mneme: Build G1 Diamant

10) jbj77: Discover B2 Jbj77 B2 Alpha

11) mneme: Build G2 Mneme
	jbj77: Of course I have this sinking feeling that I'm going to be hard pressed to get any greens...

12) jbj77: Build B2 Jbj77
	mneme: I'm going to have problems backing my way into blues, though.
	mneme: eh.  should have scooped 2.  or maybe not

13) mneme: Discover G2 Mneme B3 Bazaar

14) jbj77: Discover B1 Jbj77 G2 Beta

15) mneme: Sacrifice G3 Mneme
Build G2 Mneme
Build G3 Mneme
Build G3 Bazaar

16) jbj77: Build B3 Jbj77

17) mneme: Discover G2 Mneme B3 Alhambra

18) jbj77: Trade B3 R3 Jbj77

19) mneme: Trade G3 R3 Bazaar

20) jbj77: Build B3 Beta

21) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build G3 Bazaar
Build R1 Bazaar

22) jbj77: Trade B3 Y3 Beta

23) mneme: Discover G1 Mneme B3 Hacienda

24) jbj77: Move R3 Jbj77 Beta

25) mneme: Trade G2 Y2 Bazaar

26) jbj77: Move R3 Beta Alhambra

27) mneme: Sacrifice G2 Alhambra
Build G2 Bazaar
Build Y1 Bazaar

28) jbj77: Trade B2 G2 Alpha

29) mneme: Discover Y1 Bazaar B2 Ingenious

30) jbj77: Build Y1 Beta

31) mneme: Sacrifice G3 Bazaar
Build Y1 Ingenious
Build Y2 Ingenious
Build G3 Bazaar

32) jbj77: Move Y1 Beta Alhambra

33) mneme: Move Y1 Ingenious Jbj77

34) jbj77: Trade B2 R2 Jbj77

35) mneme: Sacrifice Y2 Bazaar
Move Y1 Ingenious Jbj77
Move Y2 Ingenious Jbj77
Catastrophe Jbj77 Y

36) jbj77: Build B2 Beta

37) mneme: Trade G2 Y2 Bazaar

38) jbj77: Move Y3 Beta Jbj77

39) mneme: Sacrifice G3 Bazaar
Build G2 Mneme
Build G3 Hacienda
Build Y1 Bazaar

40) jbj77: Sacrifice G2 Alpha
Build Y1 Alhambra
Build Y2 Alhambra

41) mneme: Trade G3 Y3 Hacienda

42) jbj77: Trade Y2 G2 Alhambra

43) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build G3 Hacienda
Build Y2 Hacienda

44) jbj77: Build B2 Beta
	jbj77: Darn, I didn't think of that.

45) mneme: Move Y3 Hacienda Beta

46) jbj77: Build B2 Beta
	mneme: I've got a pretty good position now.  the question is whether I can keep it, given my lack of 1337 endgame skills.

47) mneme: Move G1 Diamant Beta
Catastrophe Beta B
	jbj77: I agree that you do have a very good position.

48) jbj77: Build R1 Jbj77

49) mneme: Sacrifice G1 Diamant
Build Y3 Hacienda
	jbj77: Half a league, half a league,
     Half a league onward,

50) jbj77: Build G1 Alhambra

51) mneme: Sacrifice Y2 Hacienda
Move G2 Mneme Alhambra
Move G1 Beta Alhambra
Catastrophe Alhambra G

52) jbj77: Build R1 Jbj77

53) mneme: Sacrifice Y2 Bazaar
Move R1 Bazaar Beta
Move R1 Beta Jbj77
Catastrophe Jbj77 R

54) jbj77: Trade Y1 G1 Alhambra

55) mneme: Build Y1 Beta

56) jbj77: Build Y2 Alhambra

57) mneme: Discover G3 Hacienda B2 Niagra

58) jbj77: Discover Y1 Alhambra G2 Gamma

59) mneme: Trade G3 R3 Mneme

60) jbj77: Build Y2 Gamma

61) mneme: Move Y1 Bazaar Niagra

62) jbj77: Sacrifice Y2 Gamma
Move R3 Alhambra Gamma
Move R3 Gamma Jbj77

63) mneme: Build Y2 Niagra

	jbj77: I might as well give it up.  I have no chance.  Good  game though.  I'm going to have to study this B1 G3 B3 opening some more.  I'm not sure if I just messed it up or what.  In any case you played very well, and deserve the victory.
	mneme: thanks -- good game!  You mean b1 g3 Y3?

	jbj77: No I mean Homeworldd (B1 G3 B3) which was my opening move.  Trying to get a blue monopoly quickly.  It seems difficult to get it to work.
	mneme: Not sure.  Looking at the full log, it did let you get three large ships early, but you weren't able to capitalize on the advantage (and then I started causing catastrophes)


7311)
Variants: "Hard time"
Started: 2007.4.4, Ended: 2007.4.13
Participants: mneme (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) mneme: Homeworld G3 B1 Y3
	TwoShort: Howdy.
	mneme: Hey!  I figure my butt needs some more kicking, after a several-seson gap.  Has anyone won that ultra-small challenge?

3) TwoShort: Build G1 Twoshort
	TwoShort: Not so far...

4) mneme: Build Y1 Mneme

5) TwoShort: Trade G1 Y1 Twoshort

6) mneme: Trade Y1 B1 Mneme

7) TwoShort: Build G1 Twoshort

8) mneme: Build B1 Mneme

9) TwoShort: Build G1 Twoshort

10) mneme: Discover B1 Mneme B2 Azure
	TwoShort: Trying to turn my favorite blue freeze-out tactic against me eh?
	mneme: Might as well. (actially, I used it before it was used against me, so...)

11) TwoShort: Discover G1 Twoshort B3 Bluonia

12) mneme: Build B2 Mneme
	TwoShort: I just mean I've been playing it a lot lately; It's a great tactic, and I'm annoyed I let you get it started.  I guess I get to test my latest theory on how to respond...
	mneme: we'll see how it works -- I'm playing against it in another game, so I'm curious as to how your response will work.

13) TwoShort: Discover G1 Twoshort B3 Bluotron

14) mneme: Discover B2 Mneme G2 John
	mneme: I was wondering if you'd do that.

15) TwoShort: Discover Y1 Twoshort B3 Bluzilla
	TwoShort: Well, this wasn't actually my plan, but it looks too fun to resist :)

16) mneme: Trade B2 R2 John
	mneme: Heh.  No way I could have predicted that. :)

I should have moved to green before building -- that would have been, well, smarter.  :)

17) TwoShort: Build G1 Twoshort

18) mneme: Build Y1 Mneme
	mneme: and this...is where it gets ugly.  Ah well

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Bluotron
Build G3 Twoshort

20) mneme: Sacrifice Y1 Mneme
Move R2 John Bluotron

21) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluotron
Build G3 Bluonia
Build G3 Twoshort

22) mneme: Attack G2 Bluotron

23) TwoShort: Trade G2 R2 Bluonia

24) mneme: Sacrifice R2 Bluotron
Attack G1 Bluotron
Attack G2 Bluotron

25) TwoShort: Sacrifice Y1 Bluzilla
Move G1 Twoshort Bluotron
Catastrophe Bluotron Green

26) mneme: Build B2 Mneme
	TwoShort: Dangit; I was hoping you'd do what you did first :)

27) TwoShort: Trade G1 Y1 Bluonia
	mneme: heh.  Yeah.  That one lets you get away with a cheap solution, if one that doesn't cost me as much either.  Despite the insane amount by which I'm losing...one of my choices lets me get into blue freeze mode again, and is therefore clearly superior.

28) mneme: Discover B2 Mneme G2 Emerald

29) TwoShort: Move G3 Bluonia Emerald

30) mneme: Build B3 Mneme

31) TwoShort: Sacrifice R2 Bluonia
Attack B2 Emerald
Pass
	mneme: yeah, I was afraid of that.  This game is over -- but it's interesting, at least.

32) mneme: Trade B3 R3 Mneme

33) TwoShort: Trade G3 R3 Emerald

34) mneme: Trade B1 G1 Azure

35) TwoShort: Build B1 Emerald

36) mneme: Discover B1 Mneme G2 Forest

37) TwoShort: Trade B2 Y2 Emerald

38) mneme: Build Y1 Mneme

39) TwoShort: Build G1 Twoshort

40) mneme: Trade Y3 G3 Mneme

41) TwoShort: Trade G1 Y1 Twoshort

42) mneme: Build Y2 Mneme

43) TwoShort: Sacrifice G3 Twoshort
Build Y2 Emerald
Build Y3 Twoshort
Build Y3 Bluonia

44) mneme: Move Y2 Mneme Forest

45) TwoShort: Discover R3 Emerald Y3 Yonderboy

46) mneme: Build G1 Mneme

47) TwoShort: Sacrifice Y2 Emerald
Move Y2 Emerald Mneme
Move B1 Emerald Mneme
	mneme: yeah -- knew that was a mistake at the time -- but too late now.

48) mneme: Sacrifice G3 Mneme
Build B2 Forest
Build Y2 Forest
Build G1 Azure

49) TwoShort: Build B3 Mneme
	TwoShort: Hmmm... I'm always suspicious of the plan that jumps into my head before coffee in the morning :) but I don't see why it won't work...

50) mneme: Attack B3 Mneme

51) TwoShort: Build B3 Mneme
	mneme: we'll see.  it certainly forces the green sac (or I lose green in my home system, which is...ungood).  I don't see a checkmate here, but I may be missing something.
	TwoShort: I didn't see a checkmate either; I just thought I was forcing you to lose green :)  I hadn't really considered the green sac... so we'll see...

52) mneme: Attack Y2 Mneme
Catastrophe Mneme B
	TwoShort: DO NOT BLUEBIRD!
	TwoShort: Oops, that was supposed to go in the notebook. :) I guess I've given away my cunning plan to avoid screwing up.
	mneme: hmm.  Now I need to figure out wtf that means...

53) TwoShort: Trade Y3 G3 Twoshort
	TwoShort: It means I need to be sure I don't let you get to where you can throw two yellows into my homeworld and win.  I picked up this name for such a blunder from Andy Looney, who named it after an Amsterdam cofeehouse he once made it in, as detailed in his YouTube video "The Bluebird Mistake".

54) mneme: Sacrifice Y2 Mneme
Move Y2 Forest Bluonia
Move Y2 Forest Bluonia
Catastrophe Bluonia Y
	mneme: Ah.  I was kinda hoping you'd let me get two yellows into your homeworld and win. :)

55) TwoShort: Build G2 Twoshort
	TwoShort: Between the blue catastrophe suddenly putting your homeworld next to mine, and me getting all over-eager to finish you off, it's exactly where I might have screwed that up...

56) mneme: Sacrifice B1 Forest
Trade G1 B1 Mneme
	mneme: *nod*.  I was keeping it (and the threat forcing you to take non-growing action) in mind.  I didn't expect you to fall for it, but it was worth a try. :)

57) TwoShort: Build G1 Twoshort

58) mneme: Build B1 Mneme
	mneme: *@*#@.  The system should force you to pass if you don't cause a catastrophe and one is available, just like it forces you to pass to avoid other optional moves.  Is that why you didn't catastrophe my home system, or did you decide that if I didn't, it was a win for you anyway?
	TwoShort: I agree it should force you to explicitly pass.  In my case, I intentionally skipped it because I figured you had to trigger it or waste a move capturing my B3 if you really wanted to force me to trigger it.  By making you do it, the pieces aren't in the stash and your homeworlds adjacency doesn't change until the end of your turn.  I don't know that it made any difference in this case, but I just habitually try to inflict whatever inconveniences I can :)

59) TwoShort: Move G1 Twoshort Mneme

60) mneme: Attack G1 Mneme

61) TwoShort: Move G2 Twoshort Mneme

62) mneme: Discover G1 Mneme G2 Emerald

63) TwoShort: Sacrifice G3 Twoshort
Build G3 Mneme
Build G3 Mneme
Pass
Catastrophe Mneme Green

	TwoShort: Yeah, I'm afraid so.  Excellent game though, thanks!


7322)
Variants: "Unrated, Sinister"
Started: 2007.4.5, Ended: 2007.4.5
Participants: Cinnibar (S), Magni (N)
Winner: Cinnibar

1) Magni: Homeworld B3 Y2 G3

2) Cinnibar: Homeworld Y1 B2 G3

3) Magni: Discover G3 Magni Y1 Void



7323)
Variants: "Unrated, Sinister"
Started: 2007.4.5, Ended: 2007.4.29
Participants: Magni (S), Cinnibar (N)
Winner: Cinnibar

1) Cinnibar: Homeworld B3 G1 Y3

2) Magni: Homeworld Y2 B1 G3

3) Cinnibar: Build Y1 Cinnibar

4) Magni: Build G1 Magni

5) Cinnibar: Build Y1 Cinnibar

6) Magni: Trade G1 Y1 Magni

7) Cinnibar: Discover Y1 Cinnibar G2 Vivat

8) Magni: Build G1 Magni

9) Cinnibar: Build Y2 Vivat

10) Magni: Build G1 Magni

11) Cinnibar: Build Y2 Cinnibar

12) Magni: Discover G1 Magni Y3 Void

13) Cinnibar: Build Y3 Vivat

14) Magni: Discover Y1 Magni R3 Fire

15) Cinnibar: Move Y2 Vivat Fire

16) Magni: Discover G1 Magni B3 Water

17) Cinnibar: Attack Y1 Fire



7329)
Started: 2007.4.5, Ended: 2007.4.10
Participants: MikeYarrum (S), Magni (N)
Winner: MikeYarrum

1) Magni: Homeworld B2 Y3 G3

2) MikeYarrum: Homeworld Y1 B2 G3

3) Magni: Build G1 Magni

4) MikeYarrum: Build G1 Mikeyarrum

5) Magni: Build G1 Magni

6) MikeYarrum: Build G2 Mikeyarrum

7) Magni: Trade G1 R1 Magni

8) MikeYarrum: Trade G1 R1 Mikeyarrum

9) Magni: Discover G1 Magni Y1 Shangrala

10) MikeYarrum: Build G1 Mikeyarrum

11) Magni: Build G1 Shangrala
	MikeYarrum: You play aggressively, I notice.

12) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki



7341)
Variants: "Hard time"
Started: 2007.4.9, Ended: 2007.4.13
Participants: Personman (S), mneme (N)
Winner: mneme

1) mneme: Homeworld G3 Y1 B3



7425)
Variants: "Unrated"
Started: 2007.4.12, Ended: 2007.4.17
Participants: dsheldon (S), gypsydog (N)
Winner: dsheldon

1) gypsydog: Homeworld G3 B2 Y3

2) dsheldon: Homeworld Y1 B2 G3

3) gypsydog: Build Y1 Gypsydog

4) dsheldon: Build G1 Dsheldon
	dsheldon: Good so far.  I'm holding back from spewing forth the various theories on how to play the midgame until we get there.

In the beginning you want to get a good spread of ships, both colorwise and locationwise.

You also want to try and finagle things such that you get more large ships than I do.

Make sure you understand Sacrifice actions and Catastrophies (these mostly come up later, I'll point them out when we get closer), re-read those parts of the rules since they're pretty much how the game is won and lost.

5) gypsydog: Build Y1 Gypsydog

6) dsheldon: Discover G1 Dsheldon Y3 Jerome
	dsheldon: See, right now you've got what is normally considered a dangerous situation: having three pieces of the same color in a system.

Right now it's OK because there is no way I could get a fourth there (and destroy them all), but after the opening rush of the game it would be a Bad Idea (tm) to repeat that.

7) gypsydog: Trade Y1 G1 Gypsydog

8) dsheldon: Build G1 Dsheldon

9) gypsydog: Discover G1 Gypsydog Y1 Yzerman
	gypsydog: so how exactly do I get larger ships?

10) dsheldon: Trade G1 B1 Dsheldon
	dsheldon: When you build ships you get the smallest one available in the color you are making.  The way to get large ships is run out of smaller pieces.

The game, in the end, is about manipulating the global stash.  Board position is a close second, but it's all about the stash.

11) gypsydog: Build Y2 Gypsydog

12) dsheldon: Build G1 Dsheldon

13) gypsydog: Build G2 Yzerman

14) dsheldon: Discover G1 Dsheldon G3 Bank

15) gypsydog: Discover G2 Yzerman R2 Datsyuk

16) dsheldon: Build G2 Dsheldon

17) gypsydog: Trade Y1 B1 Gypsydog

18) dsheldon: Trade B1 Y1 Dsheldon

19) gypsydog: Build G2 Datsyuk

20) dsheldon: Sacrifice G2 Dsheldon
Build G2 Bank
Build Y2 Dsheldon

21) gypsydog: Move B1 Gypsydog Yzerman
	dsheldon: now, I've set up two dangerous situations for myself.  see if you can do some damage (if you want to).

22) dsheldon: Sacrifice Y1 Dsheldon
Discover G1 Bank B1 Colony

23) gypsydog: Move B1 Yzerman Datsyuk

24) dsheldon: Sacrifice G2 Bank
Build G2 Dsheldon
Build G3 Colony
	dsheldon: A note on topography: Because of the nature of the rules, the galaxy ends up being kind of triangular.  All the ones can get to all the twos and threes, all the twos to the ones and threes, and so on - but a two can't get to a two.  Homeworlds are a special case because they have two stars.  Usually (and this is true for this game as well) each of our Homeworlds only connects to one size of star.  Yours goes to ones, mine goes to threes.  Twos then, are kinda out in no-man's land.  Now, this can change if one of our home stars is lost to a catastrophe, but that looks to be a ways off.

You're building up all these guys at Datsyuk and they can't get anywhere.  Now, it can be good to have them out there for sacrifice actions, but that's pretty much it.  Comprende?

25) gypsydog: Trade G2 R2 Datsyuk
	gypsydog: I was actually kinda counting on that.  I don't know if this strategy will work or not, but we're about to find out.

26) dsheldon: Trade G2 R2 Dsheldon

27) gypsydog: Build R1 Datsyuk
	gypsydog: Wait a sec!  I thought you needed one of a color to build that color in a system!  How'd you do that?

28) dsheldon: Sacrifice G3 Colony
Build G2 Dsheldon
Build G2 Jerome
Build G3 Colony
	dsheldon: Where, in dsheldon?  I built a g2 there last turn (which I could do because I had a g3 even though the actual action came from the sacrifice of that same g2 in a system which no longer exists) and then this turn traded it for an r2 (which I can do because there is a blue star).

Trading (with the blue action) lets you go to any color, even ones you don't have access to yet.  Was that your point of confusion?
	dsheldon: And now, a lesson in denying your enemy pieces:

29) gypsydog: Trade R1 Y1 Datsyuk

30) dsheldon: Discover G2 Jerome R1 Striker
	gypsydog: Yeah, I thought you could only trade for colors of ships you had colors in a system.  Ugh.  That would have made planning much easier.  Ah well.

31) gypsydog: Build R1 Datsyuk
	dsheldon: Now, what I've done here is position myself with three Green ships all one hop away from your homeworld (2 at Colony and 1 at Striker).  The plan is, once I have a large Yellow ship, to sacrifice it and move all three green ships to gypsydog and triggering a Green catastrophe (because 3 ships + 1 star = 4 = BOOM!).  This will obliterate half of your stars and make your homeworld (theoretically) much more vulnerable.  It will also change the shape of the board because gypsydog will now be adjacent to 1s AND 3s because there will only be a size 2 star left in it.

Also, you really should diversify your homeworld fleet (yeah, I know, you thought you couldn't) because one catastrophe of the right color can knock you out completely.

32) dsheldon: Sacrifice Y2 Dsheldon
Move R2 Dsheldon Jerome
Move R2 Jerome Datsyuk
Catastrophe Datsyuk R
	dsheldon: Now it's time to learn about sacrifice and catastrophe first hand:

33) gypsydog: Trade Y2 R2 Gypsydog

34) dsheldon: Trade G2 R2 Dsheldon

35) gypsydog: Move R2 Gypsydog Striker

36) dsheldon: Attack R2N Striker
	dsheldon: Do you realize that this was a poor decision?

37) gypsydog: Build G2 Yzerman
	dsheldon: Because Striker is a red star, any ships there can make attacks.
	gypsydog: ah crap.  yeah, i lost this one.  this can only end badly now.

38) dsheldon: Sacrifice G3 Colony
Build G2 Striker
Build G3 Colony
Build R1 Dsheldon
	dsheldon: Yeah, well, that was true a while ago.  But do you understand enough to play a /real/ game yet?  We haven't even begun the really deep stash manipulation stuff yet.

I lied, there isn't really anything that deep about, but it's a ton of fun to say stuff like that.

	gypsydog: yeah, i think i could.


7317)
Variants: "Hard time"
Started: 2007.4.12, Ended: 2007.5.11
Participants: lambda (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3
	lambda: Hello! I look forward to playing you again, and hope that I can keep up with SDG this time around. Have a great game!

2) lambda: Homeworld G3 B2 Y3
	TwoShort: Howdy...  A great game to you too.

3) TwoShort: Build G1 Twoshort

4) lambda: Build Y1 Lambda

5) TwoShort: Build G1 Twoshort

6) lambda: Build Y1 Lambda

7) TwoShort: Trade G1 Y1 Twoshort

8) lambda: Trade Y1 G1 Lambda

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) lambda: Discover G1 Lambda B1 Rigel

11) TwoShort: Build Y1 Twoshort

12) lambda: Build Y2 Lambda

13) TwoShort: Discover Y1 Twoshort G3 Grogar

14) lambda: Discover Y1 Lambda G1 Deneb

15) TwoShort: Build Y2 Grogar

16) lambda: Build G2 Rigel

17) TwoShort: Move Y1 Grogar Deneb

18) lambda: Trade Y2 R2 Lambda

19) TwoShort: Sacrifice G3 Twoshort
Build Y2 Deneb
Build Y2 Grogar
Build Y3 Twoshort

20) lambda: Build R1 Lambda

21) TwoShort: Discover Y2 Grogar B1 Jeans

22) lambda: Sacrifice R1 Lambda
Attack Y1 Deneb

23) TwoShort: Trade Y2 R2 Jeans

24) lambda: Discover Y1 Deneb G3 Antares

25) TwoShort: Sacrifice R2 Jeans
Attack Y1S Deneb
Pass

26) lambda: Build Y2 Antares

27) TwoShort: Trade Y1 R1 Twoshort

28) lambda: Move Y1 Antares Rigel

29) TwoShort: Build G2 Yolonda

30) lambda: Discover G1 Rigel B3 Arcturus

31) TwoShort: Discover G1 Yolonda B1 Blewstar

32) lambda: Trade Y1 B1 Rigel

33) TwoShort: Build G2 Blewstar

34) lambda: Build Y1 Antares

35) TwoShort: Sacrifice G2 Yolonda
Build Y1 Twoshort
Build Y3 Grogar

36) lambda: Build B2 Rigel

37) TwoShort: Sacrifice Y2 Grogar
Move G2 Blewstar Lambda
Move G1 Blewstar Lambda

	lambda: Sorry, I don't think I have the time for this game any more.


7426)
Variants: "Hard time"
Started: 2007.4.13, Ended: 2007.5.1
Participants: mneme (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3
	mneme: *g*  I'm nothing if not persistent. :)  Will you be at Origins?

2) mneme: Homeworld Y1 B3 G3
	TwoShort: I'm afraid not; I live in Colorado and have 2 small children...

3) TwoShort: Build G1 Twoshort

4) mneme: Build G1 Mneme

5) TwoShort: Trade G1 Y1 Twoshort

6) mneme: Build G1 Mneme

7) TwoShort: Build Y1 Twoshort

8) mneme: Discover G1 Mneme B2 Aramis

9) TwoShort: Discover Y1 Twoshort G3 Grogar

10) mneme: Build G1 Mneme

11) TwoShort: Build Y2 Twoshort

12) mneme: Build G2 Aramis
	mneme: distance isn't always a showstopper -- it's not like transportation is the largest expense.  Children can be, of course.

13) TwoShort: Discover Y2 Twoshort B3 Bluonia
	TwoShort: I went to various cons "back in the day", but now I occasionally go to cons I can drive to for the day, (which these days means "in Denver"); but anything far enough away that you have to stay overnight is a radically different proposition in terms of budget and time away from family.  It's just not that kind of priority for me at this point in my life.  Come to think of it, even when I've driven to Denver recently, one or more old friends was a guest of honor...

14) mneme: Trade G2 Y2 Aramis

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Bluonia
Build Y3 Twoshort

16) mneme: Build Y3 Aramis
	mneme: *nod*  If you haven't done Origins, it's worth doing when/if life intervenes less, as the big LL con.  And, of course, organized sf, gaming, and other styles have very different whys and wherefores.  (which isn't to say that I, as a fairly heavily con-going 30-something, don't have a bit much con on the brain, but then, I'm not planning on kids).
	TwoShort: Yeah, Origins is the one I would do if I did... I went once long ago when it was in Philadelphia, and before that I used to go to Disclave because that was the big Icehouse Games con... When it was Icehouse Games and Disclave existed :)  

17) TwoShort: Trade Y3 G3 Twoshort

18) mneme: Discover G1 Mneme B2 Portho

19) TwoShort: Build Y3 Twoshort
	mneme: Yup!  I played Icehouse then (and east coast cons) but never did Disclave before it, er, washed out.

20) mneme: Discover Y2 Aramis B3 D'artanian

21) TwoShort: Build G2 Twoshort

22) mneme: Sacrifice G3 Mneme
Build G2 Aramis
Build G2 Portho
Build G3 Mneme

23) TwoShort: Trade Y3 R3 Bluonia

24) mneme: Trade G3 R3 Mneme

25) TwoShort: Move R3 Bluonia Portho

26) mneme: Build Y3 Aramis

27) TwoShort: Sacrifice Y2 Bluonia
Move Y2 Grogar Aramis
Move Y1 Grogar Aramis
Catastrophe Aramis Yellow

28) mneme: Build G3 Mneme

29) TwoShort: Attack G2S Portho

30) mneme: Sacrifice G2 Aramis
Build G2 Portho
Build G3 Portho
Catastrophe Portho G

31) TwoShort: Discover Y1 Twoshort G3 Planchet

32) mneme: Build R1 Mneme

33) TwoShort: Build Y1 Planchet

34) mneme: Move R3 Mneme Aramis

35) TwoShort: Discover Y1 Planchet Y2 Cyrano

36) mneme: Trade R3 Y3 Aramis

37) TwoShort: Sacrifice G2 Twoshort
Build Y2 Twoshort
Build Y3 Planchet

38) mneme: Build R1 Mneme

39) TwoShort: Build G1 Twoshort

40) mneme: Build G2 Aramis

41) TwoShort: Sacrifice Y2 Twoshort
Move G3 Twoshort D'artanian
Move R3 Portho D'artanian

42) mneme: Discover Y2 D'artanian G2 Portho

43) TwoShort: Build R2 D'artanian

44) mneme: Move R1 Mneme Aramis

45) TwoShort: Sacrifice Y3 Planchet
Move G3 D'artanian Aramis
Move R3 D'artanian Aramis
Move G3 Aramis Mneme

46) mneme: Attack G3 Mneme

47) TwoShort: Sacrifice R2 D'artanian
Attack Y3S Aramis
Attack G2S Aramis
	mneme: clever

48) mneme: Sacrifice G3 Mneme
Build R2 Aramis
Build R2 Aramis
Build R2 Mneme
Catastrophe Aramis R

49) TwoShort: Trade G2 R2 Aramis
	TwoShort: With so many pieces in play, I was sure there was something good there. I was pretty pleased when I finally saw it :)  

50) mneme: Discover G1 Mneme B2 Athos

51) TwoShort: Build G2 Twoshort

52) mneme: Trade G1 B1 Aramis

53) TwoShort: Sacrifice G2 Twoshort
Build Y2 Twoshort
Build Y3 Planchet

54) mneme: Build G1 Mneme

55) TwoShort: Attack B1S Aramis

56) mneme: Discover R1 Mneme G2 Dewinter

57) TwoShort: Trade Y3 G3 Aramis

58) mneme: Sacrifice G3 Mneme
Build G2 Athos
Build G3 Mneme
Build Y3 Portho

59) TwoShort: Sacrifice Y3 Planchet
Move Y1 Cyrano Planchet
Move Y1 Planchet Portho
Move Y1 Planchet Portho
Catastrophe Portho Yellow

60) mneme: Trade G2 Y2 Athos
	TwoShort: My favorite Homeworlds strategy maxim:  It's better to be slightly ahead in a simpler game than slightly ahead in a more complex one.  Also, it's fun to blow stuff up :)

61) TwoShort: Build G2 Aramis
	mneme: It's very true.


62) mneme: Sacrifice G3 Mneme
Build G2 Athos
Build G3 Athos
Build G3 Mneme

63) TwoShort: Sacrifice Y2 Twoshort
Move G2 Aramis Mneme
Move G2 Mneme Athos
Catastrophe Athos Green

64) mneme: Build R1 Dewinter

65) TwoShort: Build G1 Aramis

66) mneme: Sacrifice G3 Mneme
Build R2 Dewinter
Build R3 Mneme
Build Y1 Athos

67) TwoShort: Build R3 Aramis

68) mneme: Trade R3 G3 Mneme

69) TwoShort: Sacrifice Y3 Twoshort
Move G3 Aramis Mneme
Move G1 Aramis Mneme
Move R3 Aramis Mneme
Catastrophe Mneme Green

	mneme: see: blunder. A really nice one, too.


7439)
Variants: "Hard time"
Started: 2007.4.14, Ended: 2007.4.19
Participants: zoltar (S), mneme (N)
Winner: zoltar

1) mneme: Homeworld Y1 G2 B3

2) zoltar: Homeworld B3 G1 Y3

3) mneme: Build B1 Mneme

4) zoltar: Build Y1 Zoltar

5) mneme: Build B1 Mneme

6) zoltar: Build Y1 Zoltar

7) mneme: Discover B1 Mneme Y3 Canary

8) zoltar: Trade Y1 B1 Zoltar

9) mneme: Trade B1 Y1 Mneme

10) zoltar: Trade Y1 R1 Zoltar

11) mneme: Build B1 Mneme

12) zoltar: Build B2 Zoltar

13) mneme: Trade B1 R1 Mneme

14) zoltar: Discover B2 Zoltar G2 Greenbelt

15) mneme: Discover Y1 Mneme G3 Parrot

16) zoltar: Discover B1 Zoltar G2 Greenhills

17) mneme: Trade B1 G1 Canary

18) zoltar: Trade B2 Y2 Greenbelt

19) mneme: Build G1 Canary

20) zoltar: Move Y2 Greenbelt Canary

21) mneme: Build G2 Canary

22) zoltar: Sacrifice R1 Zoltar
Attack G2 Canary

23) mneme: Build G3 Canary
Catastrophe Canary G

24) zoltar: Build B1 Greenhills

25) mneme: Build R1 Mneme

26) zoltar: Trade B1 R1 Greenhills

27) mneme: Build R2 Mneme

28) zoltar: Build R2 Greenhills

29) mneme: Move R2 Mneme Parrot

30) zoltar: Trade R2 Y2 Greenhills

31) mneme: Build R2 Parrot

32) zoltar: Build R2 Greenhills

33) mneme: Discover R2 Parrot G2 Sparrow

34) zoltar: Trade R1 G1 Greenhills

35) mneme: Build B1 Mneme

36) zoltar: Build G1 Greenhills

37) mneme: Trade B3 G3 Mneme

38) zoltar: Move G1 Greenhills Canary

39) mneme: Discover R1 Mneme G3 Crow

40) zoltar: Discover G1 Greenhills Y3 Vulture

41) mneme: Sacrifice G3 Mneme
Build R1 Crow
Build R3 Mneme
Build R3 Parrot
	mneme: nice

42) zoltar: Build R3 Greenhills

43) mneme: Discover R1 Mneme G3 Fledge

44) zoltar: Move R2 Greenhills Fledge

45) mneme: Discover R3 Parrot Y2 Frank

46) zoltar: Attack R1 Fledge

47) mneme: Move R3 Frank Canary

48) zoltar: Build Y1 Canary

49) mneme: Attack G1 Canary

50) zoltar: Build Y2 Greenhills

51) mneme: Attack Y2 Canary

52) zoltar: Sacrifice G1 Vulture
Build Y3 Zoltar

53) mneme: Move Y2 Canary Sparrow

54) zoltar: Move Y3 Zoltar Sparrow

55) mneme: Attack Y1 Canary

56) zoltar: Sacrifice R2 Fledge
Attack R2 Sparrow
Attack Y2 Sparrow

57) mneme: Build R2 Parrot

58) zoltar: Move Y3 Sparrow Parrot

59) mneme: Move R3 Canary Sparrow

60) zoltar: Sacrifice R2 Sparrow
Attack R2 Parrot
Attack R2 Parrot

61) mneme: Attack Y2 Sparrow

62) zoltar: Move R3 Greenhills Canary

63) mneme: Sacrifice Y2 Sparrow
Move R3 Sparrow Parrot
Move R3 Parrot Greenhills

64) zoltar: Sacrifice Y2 Greenhills
Move Y2 Greenhills Crow
Move B1 Greenhills Zoltar

65) mneme: Move Y1 Parrot Greenhills

66) zoltar: Sacrifice Y3 Parrot
Move R1 Fledge Mneme
Move R2 Parrot Mneme
Move R2 Parrot Mneme
Catastrophe Mneme R

67) mneme: Build Y2 Canary
	mneme: I'm clearly doomed, of course.  But playing this out isn't necessarily a bad learning experience

68) zoltar: Move R3 Canary Mneme



7437)
Started: 2007.4.15, Ended: 2007.4.24
Participants: ts52 (S), zoltar (N)
Winner: zoltar

1) zoltar: H Y1 B3 G3

2) ts52: Homeworld B1 Y2 G3

3) zoltar: Build G1 Zoltar

4) ts52: Build G1 Ts52

5) zoltar: Trade G1 Y1 Zoltar
	ts52: Have a good game!


6) ts52: Trade G1 Y1 Ts52

7) zoltar: Build Y2 Zoltar
	zoltar: Greetingz Earthling!

8) ts52: Discover Y1 Ts52 G3 Kermit

9) zoltar: Trade Y1 R1 Zoltar

10) ts52: Build G1 Ts52

11) zoltar: Build R1 Zoltar
	zoltar: Red Alert!  Prepare for Battle!

12) ts52: Trade G1 R1 Ts52
	zoltar: b r1 zoltar

13) zoltar: Discover R1 Zoltar G2 Greenbelt

14) ts52: Build R2 Ts52

15) zoltar: Build R2 Zoltar

16) ts52: Move R2 Ts52 Kermit

17) zoltar: Move Y2 Zoltar Greenbelt

18) ts52: Build G1 Ts52

19) zoltar: Discover R1 Zoltar G2 Greenhills

20) ts52: Build G1 Ts52

21) zoltar: Build G1 Zoltar

22) ts52: Discover G1 Ts52 Y3 Bigbird

23) zoltar: Build G2 Zoltar

24) ts52: Discover G1 Bigbird Y2 Sol

25) zoltar: Move G2 Zoltar Sol

26) ts52: Move G1 Sol Kermit

27) zoltar: Sacrifice G3 Zoltar
Build R2 Greenhills
Build R3 Greenbelt
Build R3 Zoltar

28) ts52: Build R3 Ts52

29) zoltar: Build G3 Zoltar

30) ts52: Discover R3 Ts52 Y3 Lemon

31) zoltar: Trade G3 Y3 Zoltar

32) ts52: Move R3 Lemon Sol

33) zoltar: Sacrifice G2 Sol
Build G2 Zoltar
Build G3 Zoltar

34) ts52: Move G1 Kermit Sol

35) zoltar: Move G1 Zoltar Greenbelt

36) ts52: Discover G1 Sol Y3 Daffodil

37) zoltar: Move R3 Greenbelt Kermit

38) ts52: Move Y1 Kermit Sol

39) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Greenbelt
Build Y3 Greenbelt

40) ts52: Discover Y1 Sol B3 Gonzo

41) zoltar: Move Y3 Greenbelt Daffodil

42) ts52: Move R3 Sol Gonzo

43) zoltar: Sacrifice R2 Greenhills
Attack G1 Daffodil
Attack R2 Kermit

44) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build Y2 Gonzo

45) zoltar: Sacrifice Y3 Zoltar
Move G1 Greenbelt Daffodil
Move G1 Daffodil Ts52
Move G1 Daffodil Ts52
Catastrophe Ts52 G

46) ts52: Trade R1 G1 Ts52

47) zoltar: Sacrifice Y2 Greenbelt
Move Y3 Daffodil Ts52
Move R3 Kermit Ts52

48) ts52: Build R1 Ts52
	zoltar: All ships: storm zee ts52 Homeworld!  Attack!
	ts52: Ouch!
	ts52: Well, this wont last long. Thanks for the game.

49) zoltar: Sacrifice R3 Zoltar
Attack G1 Ts52
Attack R1 Ts52
Attack R2 Ts52
	zoltar: s y2 greenbelt
m y3 daffodil ts52
m r3 kermit ts52

	ts52: Sure.


7434)
Variants: "Hard time"
Started: 2007.4.17, Ended: 2007.4.20
Participants: sordros (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) sordros: Homeworld Y1 G3 B3
	TwoShort: Howdy.

3) TwoShort: Build G1 Twoshort
	sordros: Hello there!
Where are you from?

4) sordros: Build B1 Sordros
	TwoShort: I'm in Boulder, Colorado... How about you?

5) TwoShort: Build G1 Twoshort
	sordros: I'm in Heredia, Costa Rica.

6) sordros: Build B1 Sordros
	TwoShort: Are you a student?  I had a friend in school who spent a year in Heredia, so I know it's a college town, but that's the extent of my knowledge :), except that my friend thought it was great. 

7) TwoShort: Trade G1 B1 Twoshort

8) sordros: Trade B1 G1 Sordros
	sordros: Nope, I'm not a student anymore.  Heredia is both the town name and the "province" name.  I'm in the province Heredia but not exactly in the town.  This is a very small country anyway, so I'm close college you refer. Sorry about the undo.  This is my first homeworld game, so I'm kind of confused :-)

9) TwoShort: Trade G1 Y1 Twoshort

10) sordros: Build G1 Sordros

11) TwoShort: Build G1 Twoshort

12) sordros: Trade G1 R1 Sordros

13) TwoShort: Build Y1 Twoshort

14) sordros: Build R1 Sordros

15) TwoShort: Discover Y1 Twoshort G3 Grogar

16) sordros: Build R2 Sordros

17) TwoShort: Build Y2 Grogar

18) sordros: Trade R2 Y2 Sordros

19) TwoShort: Discover Y1 Grogar Y2 Yolonda

20) sordros: Build Y3 Sordros

21) TwoShort: Move Y1 Yolonda Sordros
Catastrophe Sordros Yellow

22) sordros: Build R2 Sordros

23) TwoShort: Sacrifice Y2 Grogar
Move G1 Twoshort Sordros
Move G3 Twoshort Sordros
Catastrophe Sordros Green



7473)
Started: 2007.4.18, Ended: 2007.4.23
Participants: dsheldon (S), gypsydog (N)
Winner: dsheldon

1) gypsydog: Homeworld Y1 B2 G3

2) dsheldon: Homeworld R2 B3 G3

3) gypsydog: Build G1 Gypsydog
	gypsydog: Interesting.  I'll be rather fascinated to find out how you develop that.  I saw mention that using a red star was in vogue with the "pros" but I'll watch with fascination, I'm sure, as I get pwnzor'd ;)

4) dsheldon: Build G1 Dsheldon

5) gypsydog: Discover G1 Gypsydog B3 Howe

6) dsheldon: Trade G1 Y1 Dsheldon
	dsheldon: My theory red home stars is that it allows me to always defend myself without appearing aggressive.  It's not like I can bring the thing with me.

7) gypsydog: Build G1 Gypsydog

8) dsheldon: Build Y1 Dsheldon
	dsheldon: ugh.  I can't believe I mistyped that...

9) gypsydog: Build G1 Howe

10) dsheldon: Discover Y1 Dsheldon B1 Berry
	gypsydog: right.  other than catastrophes, you'll always get first shot off in your home system.  highly defensive.  seems compatible with the style people are talking about for the Fortress opening.  i kinda like it in a way.

11) gypsydog: Build G2 Howe
	gypsydog: also, you are a jerk and i hate you and your superior strategy knowledge :P

12) dsheldon: Build G2 Dsheldon

13) gypsydog: Trade G2 Y2 Howe

14) dsheldon: Sacrifice G2 Dsheldon
Build G2 Dsheldon
Build Y2 Berry

15) gypsydog: Build G2 Gypsydog

16) dsheldon: Trade Y2 G2 Berry
	dsheldon: and I'm only 50/50 in my record.  competition around here is tough.  i once read through the log of the top two players against each other (TwoShort and, uh, I forget the other guy's name).  wow.  let me see if I can find the text around here some place.  it was quite long.

17) gypsydog: Build Y2 Howe

18) dsheldon: Sacrifice G3 Dsheldon
Build G3 Dsheldon
Build Y2 Dsheldon
Build Y3 Berry

19) gypsydog: Move Y2 Howe Gypsydog

20) dsheldon: Sacrifice Y2 Dsheldon
Move G2 Berry Howe
Move G2 Howe Gypsydog
Catastrophe Gypsydog G

21) gypsydog: Trade G1 R1 Howe

22) dsheldon: Discover Y1 Berry B3 Bruise

23) gypsydog: Build R1 Howe

24) dsheldon: Sacrifice G3 Dsheldon
Build Y2 Berry
Build Y3 Bruise
Build Y3 Dsheldon

25) gypsydog: Trade Y2 G2 Gypsydog

26) dsheldon: Move Y3 Bruise Gypsydog

27) gypsydog: Build R1 Howe

28) dsheldon: Trade Y3 R3 Dsheldon

29) gypsydog: Move R1 Howe Gypsydog

30) dsheldon: Sacrifice R3 Dsheldon
Attack G2N Gypsydog
Attack R1N Gypsydog
Pass
	dsheldon: You really need to have defended your homeworld better.

	dsheldon: There was nothing you could have done in your last turn.


7463)
Started: 2007.4.18, Ended: 2007.5.11
Participants: lambda (S), morganfitzp (N)
Winner: morganfitzp

1) morganfitzp: Homeworld B1 R2 G3

2) lambda: Homeworld B2 Y3 G3
	morganfitzp: Hello "^" !

3) morganfitzp: Build G1 Morganfitzp
	lambda: Hi! Have a great game!

4) lambda: Build G1 Lambda

5) morganfitzp: Trade G1 Y1 Morganfitzp

6) lambda: Build G1 Lambda

7) morganfitzp: Build Y1 Morganfitzp

8) lambda: Trade G1 Y1 Lambda

9) morganfitzp: Discover Y1 Morganfitzp G3 Cama

10) lambda: Discover Y1 Lambda G1 Altair

11) morganfitzp: Build Y2 Morganfitzp

12) lambda: Build Y2 Altair

13) morganfitzp: Build Y2 Cama

14) lambda: Discover Y1 Altair B3 Betelgeuse

15) morganfitzp: Trade Y1 B1 Morganfitzp

16) lambda: Trade G1 B1 Lambda

17) morganfitzp: Move B1 Morganfitzp Cama

18) lambda: Build G1 Lambda

19) morganfitzp: Build B2 Cama

20) lambda: Discover B1 Lambda G1 Mira

21) morganfitzp: Trade B1 R1 Cama

22) lambda: Build G2 Lambda

23) morganfitzp: Move Y2 Cama Mira

24) lambda: Trade G2 R2 Lambda

25) morganfitzp: Build G2 Morganfitzp

26) lambda: Build G2 Lambda

27) morganfitzp: Sacrifice G3 Morganfitzp
Build Y1 Cama
Build Y3 Mira
Build Y3 Morganfitzp

28) lambda: Discover G2 Lambda B1 Sirius

29) morganfitzp: Discover Y1 Cama R1 Fogo

30) lambda: Sacrifice G3 Lambda
Build G2 Sirius
Build G3 Sirius
Build G3 Lambda

31) morganfitzp: Sacrifice Y2 Mira
Move G2 Morganfitzp Cama
Move G2 Cama Sirius
Catastrophe Sirius Green

32) lambda: Build Y2 Altair

33) morganfitzp: Trade Y2 G2 Morganfitzp

34) lambda: Discover G1 Lambda B1 Sirius

35) morganfitzp: Trade Y3 G3 Morganfitzp

	lambda: Sorry, I don't think I have enough time for this game any more.


7460)
Variants: "Hard time"
Started: 2007.4.20, Ended: 2007.5.25
Participants: Nupanick (S), sordros (W), Cinnibar (N), MikeYarrum (E)
Winner: Cinnibar

1) Cinnibar: Homeworld G2 B3 Y3

2) MikeYarrum: Homeworld Y1 B2 G3

3) Nupanick: Homeworld B1 G3 Y3
	Nupanick: This is my first time with this engine, hope I entered it right.

4) sordros: Homeworld G1 Y2 B3

5) Cinnibar: Build Y1 Cinnibar

6) MikeYarrum: Build G1 Mikeyarrum

7) Nupanick: Build Y1 Nupanick

8) sordros: Build B1 Sordros

9) Cinnibar: Build Y1 Cinnibar

10) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

11) Nupanick: Build Y1 Nupanick

12) sordros: Build B1 Sordros

13) Cinnibar: Trade Y1 R1 Cinnibar

14) MikeYarrum: Build G1 Mikeyarrum
	Cinnibar: So tempting

15) Nupanick: Trade Y1 G1 Nupanick

16) sordros: Trade B1 G1 Sordros

17) Cinnibar: Build R1 Cinnibar

18) MikeYarrum: Build G2 Sakaki

19) Nupanick: Discover G1 Nupanick B2 Damogran

20) sordros: Trade B1 Y1 Sordros
	Nupanick: Damogran consists of a few small islands seperated by inconveniently large stretches of ocean. Because of this trade is vital to its inhabitants' survival.

21) Cinnibar: Build R1 Cinnibar

22) MikeYarrum: Trade G1 Y1 Mikeyarrum

23) Nupanick: Trade Y1 R1 Nupanick

24) sordros: Build B1 Sordros

25) Cinnibar: Discover R1 Cinnibar Y1 Hyperion

26) MikeYarrum: Discover G2 Sakaki B2 Kaorin

27) Nupanick: Build Y2 Nupanick

28) sordros: Discover B1 Sordros G3 Verdega

29) Cinnibar: Move R1 Hyperion Verdega

30) MikeYarrum: Trade G2 R2 Kaorin

31) Nupanick: Build G1 Damogran

32) sordros: Move B3 Sordros Verdega

33) Cinnibar: Sacrifice Y1 Cinnibar
Move R1 Verdega Sordros

34) MikeYarrum: Build G2 Sakaki

35) Nupanick: Build G2 Damogran

36) sordros: Build G2 Sordros

37) Cinnibar: Attack Y1W Sordros
	Cinnibar: I tried to 'attack Y1 sordros' and got error that ship Y1 is not in system sordros.  I see it though.

38) MikeYarrum: Move G1 Sakaki Kaorin
	Cinnibar: Never mind, found the small print showing the correct format.  My bad.  Sorry.

39) Nupanick: Move Y2 Nupanick Damogran

40) sordros: Move G1 Sordros Verdega

41) Cinnibar: Build Y1 Sordros

42) MikeYarrum: Trade G1 B1 Kaorin

43) Nupanick: Trade G1 R1 Damogran

44) sordros: Sacrifice B1 Verdega
Trade G2 R2 Sordros

45) Cinnibar: Build Y1 Sordros
Catastrophe Sordros Y

46) MikeYarrum: Build G1 Sakaki

47) Nupanick: Build R2 Damogran

48) sordros: Trade G1 Y1 Verdega

49) Cinnibar: Build R2 Sordros

50) MikeYarrum: Build G1 Mikeyarrum

51) Nupanick: Move R1 Damogran Sordros
Catastrophe Sordros Red

52) Cinnibar: Build Y1 Cinnibar
	Nupanick: Take that, SordroS and Cinnibar!

53) MikeYarrum: Move G1 Sakaki Kaorin
	MikeYarrum: Shoot, what do I do now?

54) Nupanick: Build R1 Damogran

55) Cinnibar: Discover R1 Cinnibar Y1 Hyperion

56) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi

57) MikeYarrum: Build Y2 Yomi

58) Cinnibar: Move R1 Hyperion Damogran
	MikeYarrum: Resignation? Why are his pieces still around? Don't leave me all alone against Cinnibar!

59) MikeYarrum: Build B1 Kaorin

60) Cinnibar: Attack G1S Damogran
	Cinnibar: Hard time. :)  Forced surrender when time rounds out.  I imagine Nupanick will be surprised when finally logs back in. :)

61) MikeYarrum: Trade B1 Y1 Kaorin
	MikeYarrum: Oh! I missed that thing about Hard Time.

62) Cinnibar: Attack R1S Damogran

63) MikeYarrum: Build Y2 Kaorin

64) Cinnibar: Sacrifice Y1 Cinnibar
Move R1 Damogran Nupanick

65) MikeYarrum: Build B1 Kaorin

66) Cinnibar: Attack R1S Nupanick

67) MikeYarrum: Build G1 Kaorin

68) Cinnibar: Build Y1 Cinnibar

69) MikeYarrum: Build Y2 Kaorin

70) Cinnibar: Trade R1 B1 Nupanick

71) MikeYarrum: Build R1 Kaorin

72) Cinnibar: Sacrifice Y1 Cinnibar
Move B1 Nupanick Kaorin
Catastrophe Kaorin B

73) MikeYarrum: Trade G1 R1 Mikeyarrum

74) Cinnibar: Build Y1 Cinnibar

75) MikeYarrum: Build G1 Sakaki

76) Cinnibar: Build R1 Cinnibar

77) MikeYarrum: Build R2 Mikeyarrum

78) Cinnibar: Build R2 Damogran

79) MikeYarrum: Trade R1 B1 Mikeyarrum

80) Cinnibar: Sacrifice R1 Damogran
Attack R2S Damogran

81) MikeYarrum: Build R1 Mikeyarrum

82) Cinnibar: Sacrifice R2 Damogran
Attack G2S Damogran
Attack Y2S Damogran

83) MikeYarrum: Build G1 Mikeyarrum

84) Cinnibar: Build R1 Damogran

85) MikeYarrum: Move R2 Mikeyarrum Yomi

86) Cinnibar: Build R2 Nupanick

87) MikeYarrum: Build R2 Mikeyarrum

88) Cinnibar: Move R2 Damogran Verdega

89) MikeYarrum: Move B1 Mikeyarrum Yomi

90) Cinnibar: Sacrifice G2 Damogran
Build R2 Damogran
Build R3 Verdega

91) MikeYarrum: Build R3 Yomi

92) Cinnibar: Sacrifice R2 Damogran
Attack B3W Verdega
Attack Y1W Verdega

93) MikeYarrum: Move R3 Yomi Damogran

94) Cinnibar: Trade Y2 R2 Damogran

95) MikeYarrum: Build R3 Yomi

96) Cinnibar: Trade R2 B2 Nupanick

97) MikeYarrum: Attack G1N Damogran

98) Cinnibar: Attack G1E Damogran

99) MikeYarrum: Attack R2N Damogran

100) Cinnibar: Build R2 Damogran
Catastrophe Damogran R

101) MikeYarrum: Move R2 Yomi Damogran

102) Cinnibar: Sacrifice Y1 Cinnibar
Move G1 Damogran Verdega

103) MikeYarrum: Move G1 Sakaki Damogran

104) Cinnibar: Build Y1 Cinnibar

105) MikeYarrum: Build G1 Sakaki

106) Cinnibar: Move R3 Verdega Damogran

107) MikeYarrum: Build B1 Yomi

108) Cinnibar: Attack R2E Damogran

109) MikeYarrum: Build B1 Yomi

110) Cinnibar: Attack G1E Damogran

111) MikeYarrum: Discover Y2 Yomi G1 Osaka

112) Cinnibar: Sacrifice Y1 Cinnibar
Move R3 Damogran Osaka

113) MikeYarrum: Sacrifice Y2 Osaka
Move B1 Yomi Osaka
Move B1 Osaka Sakaki

114) Cinnibar: Build Y1 Verdega

115) MikeYarrum: Discover G1 Sakaki Y2 Kaorin

116) Cinnibar: Sacrifice Y1 Verdega
Move R3 Osaka Kaorin

	Nupanick: wtf is hard time? I didn't get a warning or anything? I didn't even know it was my turn!
	MikeYarrum: Hard Time means you are automatically resigned when your time is up. Sorry if you didn't know.


7489)
Started: 2007.4.21, Ended: 2007.4.26
Participants: zoltar (S), sordros (N)
Winner: zoltar

1) sordros: Homeworld G1 B2 Y3

2) zoltar: Homeworld B3 Y1 G3

3) sordros: Build Y1 Sordros

4) zoltar: Build G1 Zoltar

5) sordros: Build Y1 Sordros

6) zoltar: Build G1 Zoltar

7) sordros: Discover Y1 Sordros G3 Picolino

8) zoltar: Discover G1 Zoltar B2 Bluemoon

9) sordros: Build Y2 Picolino

10) zoltar: Build G2 Bluemoon

11) sordros: Build Y2 Sordros

12) zoltar: Trade G2 Y2 Bluemoon

13) sordros: Trade Y2 B2 Sordros

14) zoltar: Build Y2 Bluemoon

15) sordros: Build B1 Sordros

16) zoltar: Discover Y2 Bluemoon G3 Greengiant

17) sordros: Move Y2 Picolino Bluemoon

18) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build Y3 Bluemoon
Build Y3 Greengiant

19) sordros: Move Y1 Picolino Bluemoon
Catastrophe Bluemoon Yellow
	sordros: Nice move.  I'll have to take note of that :-)

20) zoltar: Build G2 Bluemoon

21) sordros: Trade Y1 R1 Sordros
	zoltar: Thanx, Earthling!

22) zoltar: Trade G2 R2 Zoltar

23) sordros: Trade B2 G2 Sordros

24) zoltar: Build G2 Bluemoon

25) sordros: Discover G2 Sordros Y3 Mugie

26) zoltar: B G3 Zoltar

27) sordros: Move G2 Mugie Bluemoon
Catastrophe Bluemoon Green

28) zoltar: Discover Y3 Greengiant G1 Greenpea

29) sordros: Build B1 Sordros

30) zoltar: Build G2 Zoltar

31) sordros: Discover B1 Sordros G3 Verdega

32) zoltar: Trade G2 B2 Zoltar

33) sordros: Build Y1 Sordros

34) zoltar: Build G2 Zoltar

35) sordros: Build B1 Verdega

36) zoltar: Discover B2 Zoltar Y2 Banana

37) sordros: Trade B1 Y1 Verdega

38) zoltar: Sacrifice G2 Zoltar
Build Y2 Greengiant
Build Y3 Greenpea

39) sordros: Build B1 Verdega

40) zoltar: Sacrifice Y3 Greenpea
Move Y3 Greenpea Verdega
Move Y2 Greengiant Sordros
Move Y2 Greengiant Sordros
Catastrophe Sordros Y

41) sordros: Build Y1 Verdega

42) zoltar: Move Y3 Verdega Sordros

43) sordros: Build B2 Sordros

44) zoltar: Sacrifice R2 Zoltar
Attack R1 Sordros
Attack B2 Sordros

45) sordros: Build B3 Sordros

46) zoltar: Sacrifice Y3 Sordros
Move B2 Banana Verdega
Move B2 Verdega Sordros
Move R1 Sordros Verdega
Catastrophe Sordros B
	zoltar: gg. Play again?
	sordros: GG.
Play again? Sure! This was my second game, and even though I'm getting all beaten up, I really like it! :-)



7470)
Variants: "Hard time"
Started: 2007.4.23, Ended: 2007.7.25
Participants: TwoShort (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B1 Y2 G3
	Jesse: It's been a while since I've played you.  This should be fun.

2) TwoShort: Homeworld B1 G3 B3 *
	Jesse: Ooh, I just noticed your ZPip challenge.  Obviously, I haven't been following either the Icehouse list or SDG forums much, lately.  This is the first I've heard of Andy's video.  I believe it's the first time I've ever been mentioned on YouTube, and it feels good.  :D

Is your challenge still on?  If so, let me just declare myself ineligible up front.  I've already got a set, you see.

3) Jesse: Build G1 Jesse
	TwoShort: Good to be playing you again too.  The ZPip challenge is still on... At some point I noted that the two people on SDG I'd give a better than 50-50 chance of beating me the next time we played were the same two people who already had ZPips, i.e. you and Andy. 
	Jesse: Heh heh.  Well, we'll see how this game goes...

4) TwoShort: Build B1 Twoshort

5) Jesse: Trade G3 B3 Jesse

6) TwoShort: Trade B3 Y3 Twoshort

7) Jesse: Build B2 Jesse

8) TwoShort: Build B2 Twoshort

9) Jesse: Discover B2 Jesse G3 Gruber

10) TwoShort: Discover B2 Twoshort G2 Ed

11) Jesse: Build G1 Jesse

12) TwoShort: Build Y1 Twoshort

13) Jesse: Trade G1 Y1 Jesse

14) TwoShort: Move Y1 Twoshort Ed

15) Jesse: Move Y1 Jesse Gruber

16) TwoShort: Trade B2 R2 Ed

17) Jesse: Build B2 Gruber

18) TwoShort: Move R2 Ed Gruber
	Jesse: I should have waited, last night, instead of playing hastily.

19) Jesse: Trade G1 R1 Jesse

20) TwoShort: Attack B2N Gruber
	TwoShort: Speaking of playing too hastily...
	Jesse: This has its drawbacks for me, as well.  I think I would have been better off if I'd done something like building another green at the HW, or a blue at Gruber, instead of moving out my y2, a couple of turns back.
	Jesse: But yeah, I looked at this sequence before I decided it was okay to build another blue instead of swapping for a red.  I really couldn't afford losing the moves that would have cost me, especially after scrambling into blue like I did.

21) Jesse: Sacrifice R1 Jesse
Attack R2 Gruber

22) TwoShort: Build B2 Gruber

23) Jesse: Sacrifice R2 Gruber
Attack B2 Gruber
Attack B2 Gruber

24) TwoShort: Build B3 Twoshort

25) Jesse: Discover B2 Gruber G2 Munch

26) TwoShort: Trade B3 R3 Twoshort

27) Jesse: Trade B2 R2 Gruber

28) TwoShort: Move R3 Twoshort Munch

29) Jesse: Build B2 Munch

30) TwoShort: Attack B2N Munch

31) Jesse: Build B3 Gruber

32) TwoShort: Attack B2N Munch

33) Jesse: Trade B3 G3 Jesse
	Jesse: I wish I'd discovered a y2 instead of a g2, there.  Oh well.

34) TwoShort: Build B3 Twoshort

35) Jesse: Discover B2 Gruber G2 Bjorn

36) TwoShort: Sacrifice B2 Munch
Trade B2 Y2 Munch
Trade B3 R3 Twoshort

37) Jesse: Build Y1 Gruber

38) TwoShort: Move R3 Twoshort Bjorn

39) Jesse: Build G1 Jesse

40) TwoShort: Build Y2 Ed

41) Jesse: Discover Y1 Gruber G1 Leroy

42) TwoShort: Build Y3 Munch

43) Jesse: Sacrifice G3 Jesse
Build G1 Jesse
Build G3 Jesse
Build Y3 Leroy

44) TwoShort: Sacrifice Y2 Munch
Move Y2 Ed Leroy
Move Y1 Ed Leroy
Catastrophe Leroy Yellow

45) Jesse: Discover G1 Jesse B3 Harvey

46) TwoShort: Move R3 Munch Harvey

47) Jesse: Sacrifice G1 Harvey
Build B2 Gruber

48) TwoShort: Attack B2N Bjorn

49) Jesse: Trade B2 R2 Gruber

50) TwoShort: Build B2 Bjorn

51) Jesse: Move R2 Gruber Jesse

52) TwoShort: Trade B2 Y2 Bjorn

53) Jesse: Build B2 Gruber

54) TwoShort: Sacrifice Y3 Munch
Move B1 Twoshort Bjorn
Move B1 Bjorn Gruber
Move B2 Bjorn Gruber
Catastrophe Gruber Blue

55) Jesse: Build R1 Gruber

56) TwoShort: Build Y1 Twoshort

57) Jesse: Build Y1 Gruber
	Jesse: I'm torm between sticking it out and giving in to the apparently inevitable.

58) TwoShort: Build Y2 Twoshort

59) Jesse: Discover Y1 Gruber G2 Sam

60) TwoShort: Trade Y2 G2 Twoshort
	TwoShort: Sorry for the slow play... that "life" thing...
As far as sticking it out or not, it's your call... I certainly like my position, but I can't find any short route to victory.
	Jesse: No, sometimes the most reliable victory is a long, slow process.  Still, it's not over yet.  It's just Very Long Odds(TM).

The slow play is not a problem, except that I would hate to win this one on time.

61) Jesse: Discover R1 Gruber G1 Johnny

62) TwoShort: Trade R3 Y3 Harvey

63) Jesse: Discover R2 Jesse Y3 Rrrrr

64) TwoShort: Build Y2 Bjorn

65) Jesse: Trade G1 B1 Jesse

66) TwoShort: Move R3 Bjorn Gruber

67) Jesse: Build R1 Gruber

68) TwoShort: Sacrifice Y1 Twoshort
Move R3 Gruber Sam

69) Jesse: Move Y1 Sam Johnny

70) TwoShort: Build R1 Sam

71) Jesse: Build Y1 Johnny

	Jesse: Aw, that's a shame.  Let me know when you're finished traveling.  We can start a fresh game.
	TwoShort: Sorry about that; I thought I'd get a chance to get online and make some moves while on the road, then it didn't work out that way.


7527)
Started: 2007.4.24, Ended: 2007.5.4
Participants: zoltar (S), ts52 (N)
Winner: zoltar

1) ts52: Homeworld Y1 B2 G3

2) zoltar: Homeworld Y3 B1 G3

3) ts52: Build G1 Ts52

4) zoltar: Build G1 Zoltar

5) ts52: Trade G1 B1 Ts52

6) zoltar: Trade G1 B1 Zoltar

7) ts52: Discover B1 Ts52 G3 Kermit

8) zoltar: Build B2 Zoltar

9) ts52: Build B2 Kermit

10) zoltar: Trade B2 R2 Zoltar

11) ts52: Trade B1 R1 Kermit

12) zoltar: Build R1 Zoltar

13) ts52: Build G1 Ts52

14) zoltar: Trade R1 Y1 Zoltar

15) ts52: Build B1 Kermit

16) zoltar: Discover B1 Zoltar G2 Greendale

17) ts52: Trade B2 G2 Kermit

18) zoltar: Build B2 Greendale

19) ts52: Trade G1 Y1 Ts52

20) zoltar: Trade B2 Y2 Greendale

21) ts52: Build Y2 Ts52

22) zoltar: Build Y2 Greendale

23) ts52: Move Y1 Ts52 Kermit

24) zoltar: Trade Y1 G1 Zoltar

25) ts52: Build G1 Ts52

26) zoltar: Build B2 Greendale

27) ts52: Discover G1 Ts52 Y3 Zoe

28) zoltar: Move B2 Greendale Zoe

29) ts52: Build G1 Ts52

30) zoltar: Build R1 Zoltar

31) ts52: Discover Y2 Ts52 B3 Gonzo

32) zoltar: Trade Y2 R2 Greendale

33) ts52: Discover G1 Zoe Y2 Bert

34) zoltar: Move R2 Zoltar Bert

35) ts52: Sacrifice G3 Ts52
Build G2 Bert
Build G3 Ts52
Build R1 Kermit

36) zoltar: Sacrifice R2 Greendale
Attack G1 Bert
Attack G2 Bert

37) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Kermit
Build Y3 Gonzo

38) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B2 Zoe
Build B3 Greendale

39) ts52: Build B3 Kermit

40) zoltar: Sacrifice Y2 Greendale
Move G1 Bert Kermit
Move G2 Bert Kermit
Catastrophe Kermit G

41) ts52: Trade G1 R1 Ts52

42) zoltar: Trade B2 G2 Zoe

43) ts52: Build G1 Ts52

44) zoltar: Build G1 Zoe

45) ts52: Move G1 Ts52 Gonzo

46) zoltar: Discover G1 Zoe Y1 Yellowstone

47) ts52: Trade Y3 R3 Gonzo

48) zoltar: Sacrifice G3 Zoltar
Build G2 Zoe
Build G3 Yellowstone
Build G3 Zoltar

49) ts52: Move R3 Gonzo Bert

50) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build R1 Bert
Build R2 Bert
Catastrophe Bert R

51) ts52: Build Y1 Gonzo
	zoltar: Jihadists strike in Bert! 

52) zoltar: Trade B3 Y3 Greendale

53) ts52: Trade Y1 R1 Gonzo

54) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build B1 Zoe
Build B2 Greendale

55) ts52: Build R2 Ts52

56) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build B3 Greendale
Build B3 Zoe

57) ts52: Build R2 Gonzo

58) zoltar: Sacrifice B2 Zoe
Trade B3 R3 Zoe
Trade B3 R3 Greendale

59) ts52: Build Y1 Gonzo

60) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Zoe
Build R3 Zoltar

61) ts52: Discover R1 Gonzo Y2 Sol

62) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build Y2 Greendale
Build B2 Zoe

63) ts52: Move R2 Gonzo Sol

64) zoltar: Sacrifice Y2 Greendale
Move R1 Zoltar Sol
Move R2 Zoe Sol
Catastrophe Sol R

65) ts52: Move R1 Ts52 Gonzo

66) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build B3 Greendale
Build B3 Zoe

67) ts52: Build R1 Ts52

68) zoltar: Move B3 Greendale Gonzo
	zoltar: The Blue Fleet is mine, all mine!!! [Insert sinister Evil Overlord laughter here.]
	ts52: Ah yes, I wont be much longer for this world then. Thanks for the game.

69) ts52: Discover Y2 Gonzo R2 Deetoo
	zoltar: m b3 greendale gonzo

70) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build R1 Greendale
Build R2 Zoltar
	zoltar: oops
	zoltar: Let me know if you wish to play another after this.
	zoltar: Thanks for the game too.

71) ts52: Build Y2 Gonzo

72) zoltar: Sacrifice R3 Zoltar
Attack Y2 Gonzo
Attack Y1 Gonzo
Attack R1 Gonzo

73) ts52: Sacrifice G1 Gonzo
Build Y2 Deetoo

74) zoltar: Sacrifice G3 Yellowstone
Build G1 Zoe
Build G3 Yellowstone
Build R3 Gonzo

	ts52: I don't think I've ever seen the reserve run out before. Thanks again for the game.
	zoltar: gg -- play again?


7523)
Variants: "Hard time"
Started: 2007.4.24, Ended: 2007.4.25
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) zoltar: Homeworld B2 Y2 G3 *

3) TwoShort: Build G1 Twoshort

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G1 Y1 Twoshort

6) zoltar: Trade G1 Y1 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build G1 Zoltar

9) TwoShort: Discover G1 Twoshort B3 Bluonia

10) zoltar: Trade G1 R1 Zoltar

11) TwoShort: Trade G1 Y1 Bluonia

12) zoltar: Move Y1 Zoltar Bluonia

13) TwoShort: Build Y2 Twoshort

14) zoltar: Sacrifice R1 Zoltar
Attack Y1 Bluonia

15) TwoShort: Trade Y2 R2 Twoshort

16) zoltar: Discover Y1 Bluonia G1 Greenpea

17) TwoShort: Build Y2 Twoshort

18) zoltar: Build Y2 Greenpea

19) TwoShort: Sacrifice Y2 Twoshort
Move G3 Twoshort Bluonia
Move G3 Bluonia Zoltar

	zoltar: Oops, I should have stuck with my first try.  Well that sucks!  gg.


7531)
Variants: "Hard time"
Started: 2007.4.24, Ended: 2007.5.1
Participants: mneme (S), zoltar (N)
Winner: mneme

1) zoltar: Homeworld R1 B3 G3

2) mneme: Homeworld R2 B1 G3

3) zoltar: Build G1 Zoltar
	mneme: bah.  I'd been planning on trying out the "no yellows" opening for a while, but I didn't really want a nigh-identical setup.

4) mneme: Build G1 Mneme

5) zoltar: Trade G1 Y1 Zoltar

6) mneme: Trade G1 Y1 Mneme

7) zoltar: Build G1 Zoltar
	zoltar: b g1 zoltar

8) mneme: Build G1 Mneme

9) zoltar: Trade G1 R1 Zoltar

10) mneme: Build G1 Mneme
	zoltar: I'm not used to the red star setup either, and I don't think I've played a symmetrical red-blue star game before.

11) zoltar: Build R1 Zoltar
	mneme: Nor have I.  Should be interesting, at least.

12) mneme: Discover G1 Mneme R3 Hunter

13) zoltar: Trade R1 B1 Zoltar

14) mneme: Discover G1 Mneme B3 Harper

15) zoltar: Discover B1 Zoltar G2 Greenbelt

16) mneme: Build G1 Mneme

17) zoltar: Move R1 Zoltar Greenbelt

18) mneme: Build G2 Harper
	zoltar: I think I'm way behind in this one -- probably in big trouble here.

19) zoltar: Build G2 Zoltar
	mneme: I hope so... :)  We'll see

20) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build G3 Hunter
Build Y1 Mneme
	zoltar: I just lost a Homeworlds game in 8 moves.  That must be a record.
	mneme: wow.  To whom?


21) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Zoltar
Build Y2 Zoltar

22) mneme: Move Y1 Mneme Harper

23) zoltar: Discover Y2 Zoltar B2 Blueberry

24) mneme: Sacrifice G3 Mneme
Build Y2 Mneme
Build Y3 Mneme
Build Y3 Harper

25) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Blueberry
Build R1 Greenbelt

26) mneme: Move Y2 Mneme Hunter

27) zoltar: Sacrifice Y2 Zoltar
Move G2 Zoltar Blueberry
Move Y2 Blueberry Harper
	zoltar: I'm pretty much doomed unless you make a major mistake.
	mneme: true, but that's not that unlikely.

28) mneme: Sacrifice G3 Hunter
Build G3 Hunter
Build G3 Mneme
Build Y2 Hunter

29) zoltar: Build R2 Greenbelt

30) mneme: Trade Y3 R3 Harper

31) zoltar: Build Y3 Zoltar

32) mneme: Attack Y2 Harper

33) zoltar: Sacrifice Y3 Blueberry
Move R1 Greenbelt Hunter
Move R1 Greenbelt Hunter
Move R2 Greenbelt Hunter
Catastrophe Hunter R

34) mneme: Move R3 Harper Blueberry

35) zoltar: Sacrifice G2 Blueberry
Build B1 Greenbelt
Build B2 Greenbelt

36) mneme: Sacrifice Y2 Harper
Move R3 Blueberry Harper
Move R3 Harper Greenbelt

37) zoltar: Sacrifice B2 Greenbelt
Trade B1 R1 Greenbelt
Trade B1 R1 Greenbelt

38) mneme: Sacrifice Y1 Mneme
Move R3 Greenbelt Harper

39) zoltar: Move Y3 Zoltar Greenbelt

40) mneme: Build R2 Harper

41) zoltar: Discover R1 Greenbelt Y1 Yellowstone

42) mneme: Discover R2 Harper G2 Grocer

43) zoltar: Build Y2 Greenbelt

44) mneme: Discover G2 Harper B2 Archer

45) zoltar: Build G1 Zoltar

46) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build G3 Archer
Build Y2 Mneme

47) zoltar: Discover Y3 Greenbelt B3 Desperation

48) mneme: Sacrifice Y3 Mneme
Move G1 Harper Archer
Move G2 Archer Zoltar
Move G1 Archer Zoltar
Catastrophe Zoltar G

49) zoltar: Sacrifice Y3 Desperation
Move R1 Yellowstone Greenbelt
Move Y1 Zoltar Greenbelt
Pass

	zoltar: gg -- well done.
	mneme: Cool game (and nice to win one occasionally) -- thanks!


7529)
Variants: "Hard time"
Started: 2007.4.24, Ended: 2007.4.28
Participants: MikeYarrum (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) MikeYarrum: Homeworld Y1 B3 G3
	TwoShort: Howdy.
	MikeYarrum: Hello again. (darn, I wanted banker...)

3) TwoShort: Build G1 Twoshort

4) MikeYarrum: Build G1 Mikeyarrum
	TwoShort: I noticed if you go through the "New Challenge" screen you can specify who goes first.  If you challenge me that way next time, I'll be happy to go second.

5) TwoShort: Trade G1 Y1 Twoshort
	MikeYarrum: Thanks, but it's no big deal. =D I need to learn to be flexible.

6) MikeYarrum: Trade G1 Y1 Mikeyarrum

7) TwoShort: Build Y2 Twoshort

8) MikeYarrum: Build Y2 Mikeyarrum

9) TwoShort: Discover Y1 Twoshort G3 Grogar

10) MikeYarrum: Discover Y1 Mikeyarrum Y2 Kaorin

11) TwoShort: Build Y3 Grogar
	MikeYarrum: Kaorin is relatively isolated in space, and colonists must rely on advanced transport technology for contact with other worlds.

12) MikeYarrum: Build G1 Mikeyarrum
	TwoShort: They should be careful; advanced technology can be dangerous.

13) TwoShort: Build Y3 Twoshort

14) MikeYarrum: Discover Y2 Mikeyarrum G2 Yomi

15) TwoShort: Discover Y2 Twoshort Y3 Niroak
	MikeYarrum: Yomi is rich in natural resources and an ideal system for construction.

16) MikeYarrum: Trade G1 R1 Mikeyarrum

17) TwoShort: Build G1 Twoshort

18) MikeYarrum: Build G1 Mikeyarrum

19) TwoShort: Move G1 Twoshort Niroak

20) MikeYarrum: Trade G1 B1 Mikeyarrum

21) TwoShort: Discover Y2 Niroak B2 Bluonia

22) MikeYarrum: Build G1 Mikeyarrum

23) TwoShort: Sacrifice G1 Niroak
Build Y3 Bluonia

24) MikeYarrum: Discover G1 Mikeyarrum B2 Chihiro

25) TwoShort: Trade Y2 R2 Bluonia

26) MikeYarrum: Build Y2 Yomi

27) TwoShort: Trade Y3 R3 Bluonia

	MikeYarrum: I know this probably seems like a really short game, but I think I made way too many mistakes, and you're really far ahead. Mind if we start over?
	TwoShort: I'd be happy to.  For what it's worth, I believe it's mate in 3:  Next turn I sacrifice my y3 at twoshort to move my other y3 and my r3 into your homeworld.  You can only take one of them, so next I sac my r2 to take it back and your g3 as well. Finally I sac the r3 to take whatever is left.  I'm pretty sure there's nothing you can do to derail that.  I don't mean to gloat, it's just that I almost never can figure things out that far in advance, so if you're going to resign I had to at least tell you about it :)
	MikeYarrum: No, I don't mind. =D Explaining how something is a mistake is the best way to learn.


7530)
Variants: "Hard time"
Started: 2007.4.24, Ended: 2007.4.29
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld B1 Y2 G3

2) zoltar: Homeworld B1 G3 B3 *

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build B1 Zoltar

5) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

6) zoltar: Trade B3 Y3 Zoltar

7) MikeYarrum: Build G1 Mikeyarrum
	MikeYarrum: The lovely but perilous mountains of Sakaki have made her inhabitants naturals at transport technology

8) zoltar: Build B2 Zoltar

9) MikeYarrum: Trade G1 Y1 Mikeyarrum

10) zoltar: Trade B2 R2 Zoltar

11) MikeYarrum: Build G1 Mikeyarrum

12) zoltar: Build B2 Zoltar

13) MikeYarrum: Discover G1 Mikeyarrum Y3 Kagura

14) zoltar: Discover B2 Zoltar G2 Greenhills

15) MikeYarrum: Build G1 Mikeyarrum

16) zoltar: Trade Y3 G3 Zoltar

17) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Sakaki
Build G2 Sakaki
Build G3 Mikeyarrum

18) zoltar: Sacrifice G3 Zoltar
Build B2 Greenhills
Build B2 Greenhills
Build B3 Zoltar

19) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G3 Kagura
Build Y1 Mikeyarrum
Build G3 Mikeyarrum

20) zoltar: Trade B3 Y3 Zoltar

21) MikeYarrum: Discover Y1 Mikeyarrum B3 Nyamo

22) zoltar: Build B3 Zoltar

23) MikeYarrum: Trade G1 R1 Mikeyarrum

24) zoltar: Trade B3 R3 Zoltar

25) MikeYarrum: Sacrifice G2 Sakaki
Build Y1 Nyamo
Build Y2 Nyamo

26) zoltar: Trade B2 Y2 Greenhills

27) MikeYarrum: Discover Y2 Nyamo B2 Yukari

28) zoltar: Build B3 Greenhills

29) MikeYarrum: Trade G3 R3 Mikeyarrum

30) zoltar: Trade B3 R3 Greenhills

31) MikeYarrum: Move G2 Sakaki Yukari

32) zoltar: Move R3 Zoltar Yukari

33) MikeYarrum: Sacrifice Y2 Yukari
Move G2 Yukari Nyamo
Move G3 Kagura Mikeyarrum

34) zoltar: Move R3 Greenhills Nyamo

35) MikeYarrum: Trade Y1 R1 Nyamo

36) zoltar: Build B3 Greenhills

37) MikeYarrum: Move G2 Nyamo Greenhills

38) zoltar: Sacrifice R2 Zoltar
Attack G2 Greenhills
Attack R1 Nyamo

39) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G1 Kagura
Build G2 Sakaki
Build Y1 Nyamo

40) zoltar: Sacrifice G2 Greenhills
Build B3 Zoltar
Build Y2 Greenhills

41) MikeYarrum: Move G1 Kagura Greenhills

42) zoltar: Sacrifice R3 Yukari
Attack G1 Greenhills
Attack Y1 Nyamo
Attack Y1 Nyamo

43) MikeYarrum: Move G1 Kagura Greenhills

44) zoltar: Sacrifice Y2 Greenhills
Move Y1 Nyamo Mikeyarrum
Move Y1 Nyamo Mikeyarrum
Catastrophe Mikeyarrum Y

45) MikeYarrum: Move G1 Sakaki Greenhills
Catastrophe Greenhills Green

46) zoltar: Sacrifice Y3 Zoltar
Move R1 Nyamo Mikeyarrum
Move R3 Nyamo Mikeyarrum
Pass
Catastrophe Mikeyarrum R
	zoltar: Zoltar to fleet: all ships storm the MikeYarrum homeworld! Attack!

	MikeYarrum: But we're not going down without a fight! Kamikaze Green, this is your finest hour! Move all 'zig' for great justice!

(oh, and yes please to the new game!)


7535)
Variants: "Hard time"
Started: 2007.4.26, Ended: 2007.5.4
Participants: sordros (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld Y2 B3 G3

2) sordros: Homeworld Y1 B2 G3

3) zoltar: Build G1 Zoltar

4) sordros: Build G1 Sordros

5) zoltar: Trade G1 Y1 Zoltar

6) sordros: Trade G1 Y1 Sordros

7) zoltar: Build Y2 Zoltar

8) sordros: Discover Y1 Sordros G3 Gamma

9) zoltar: Trade Y1 R1 Zoltar

10) sordros: Build G1 Sordros

11) zoltar: Discover Y2 Zoltar G1 Greenpea

12) sordros: Trade G1 B1 Sordros

13) zoltar: Build R1 Zoltar

14) sordros: Build B1 Sordros

15) zoltar: Trade R1 B1 Zoltar

16) sordros: Trade B1 R1 Sordros

17) zoltar: Build G1 Zoltar

18) sordros: Move B1 Sordros Gamma

19) zoltar: Move B1 Zoltar Greenpea

20) sordros: Build G1 Sordros

21) zoltar: Build G2 Zoltar

22) sordros: Build G2 Sordros

23) zoltar: Discover G2 Zoltar Y1 Yellowstone

24) sordros: Discover G2 Sordros Y3 Flavega

25) zoltar: Build G2 Yellowstone

26) sordros: Build Y2 Gamma

27) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Greenpea
Build B1 Greenpea

28) sordros: Discover Y2 Gamma R1 Rugeta

29) zoltar: Move G2 Yellowstone Flavega
	zoltar: I am soooo stuck.  I'll have to sleep on this one and take a break and come back tomorrow to find something to do here.

30) sordros: Sacrifice G3 Sordros
Build Y3 Rugeta
Build B2 Gamma
Build G3 Sordros

31) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Zoltar
Build R2 Zoltar

32) sordros: Sacrifice G3 Sordros
Build G3 Sordros
Build R2 Sordros
Build R3 Sordros

33) zoltar: Sacrifice R1 Zoltar
Attack G2 Flavega

34) sordros: Move R3 Sordros Flavega

35) zoltar: Sacrifice Y2 Greenpea
Move G2 Flavega Sordros
Move G2 Flavega Sordros
Catastrophe Sordros G

36) sordros: Build Y2 Gamma

37) zoltar: Sacrifice Y3 Greenpea
Move G3 Zoltar Yellowstone
Move G3 Yellowstone Flavega
Move G3 Flavega Sordros

38) sordros: Move R3 Flavega Sordros

39) zoltar: Trade G3 R3 Sordros
Catastrophe Sordros R
	zoltar: Thanks for the game.  You were winning all the way to last two moves when you blundered by building that y2 instead of sacking your other y2 and sending your y3 back to your homeworld.  You can't leave your homeworld without a 3-pip ship even for  one turn in a situation like this!
	sordros: Thanks for the game and for the feedback Zoltar!
I'm liking this game more and more.  Should buy some pyramids and get a live partner as well.  Hopefully our next game I'll be a little more challenging.  



7537)
Variants: "Hard time"
Started: 2007.4.26, Ended: 2007.5.16
Participants: TwoShort (S), sordros (N)
Winner: TwoShort

1) sordros: Homeworld Y2 B3 G3

2) TwoShort: Homeworld Y1 B2 G3

3) sordros: Build G1 Sordros

4) TwoShort: Build G1 Twoshort

5) sordros: Trade G1 Y1 Sordros

6) TwoShort: Build G1 Twoshort

7) sordros: Build Y1 Sordros

8) TwoShort: Discover G1 Twoshort Y3 Yellonia

9) sordros: Discover Y1 Sordros G1 Verdeto

10) TwoShort: Build G2 Twoshort

11) sordros: Sacrifice G3 Sordros
Build Y2 Verdeto
Build Y2 Verdeto
Build Y3 Sordros

12) TwoShort: Sacrifice G3 Twoshort
Build G2 Yellonia
Build G2 Yellonia
Build G3 Twoshort

13) sordros: Trade Y3 G3 Sordros

14) TwoShort: Discover G2 Twoshort G3 Greensville

15) sordros: Build Y3 Sordros

16) TwoShort: Trade G1 R1 Twoshort

17) sordros: Trade Y1 R1 Sordros

18) TwoShort: Build G1 Twoshort

19) sordros: Build Y1 Sordros

20) TwoShort: Move G2 Yellonia Verdeto

21) sordros: Sacrifice R1 Sordros
Attack G2 Verdeto

22) TwoShort: Move G1 Yellonia Verdeto

23) sordros: Sacrifice Y2 Verdeto
Discover G2 Verdeto B3 Zuleo
Move Y2 Verdeto Zuleo

24) TwoShort: Sacrifice R1 Twoshort
Attack Y1N Verdeto

25) sordros: Trade Y1 R1 Sordros

26) TwoShort: Trade G1 R1 Twoshort

27) sordros: Move Y3 Sordros Verdeto

28) TwoShort: Build G1 Verdeto

29) sordros: Build Y1 Verdeto

30) TwoShort: Sacrifice G2 Greensville
Build G2 Verdeto
Build G3 Twoshort
Catastrophe Verdeto Green

31) sordros: Build Y1 Zuleo

32) TwoShort: Move G3 Twoshort Zuleo

33) sordros: Build G1 Sordros

34) TwoShort: Sacrifice R1 Twoshort
Attack G2N Zuleo

35) sordros: Trade Y2 G2 Zuleo

36) TwoShort: Trade G3 R3 Zuleo

37) sordros: Build G1 Zuleo

38) TwoShort: Sacrifice R3 Zuleo
Attack G2N Zuleo
Attack G1N Zuleo
Attack Y1N Zuleo

39) sordros: Build R1 Sordros

40) TwoShort: Discover G1 Zuleo G1 Greedo

41) sordros: Discover G1 Sordros Y1 Flaveta

42) TwoShort: Sacrifice G2 Zuleo
Build G2 Twoshort
Build G3 Zuleo

43) sordros: Trade R1 B1 Sordros

44) TwoShort: Sacrifice G3 Zuleo
Build G3 Zuleo
Build Y2 Zuleo
Build Y2 Zuleo

45) sordros:
Build R1 Sordros

46) TwoShort: Move Y2 Zuleo Greedo

47) sordros: Build B1 Sordros

48) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y3 Greedo
Build Y3 Greedo

49) sordros: Move B1 Sordros Flaveta

50) TwoShort: Trade G3 R3 Zuleo

51) sordros:
Build G3 Sordros

52) TwoShort: Sacrifice Y2 Greedo
Move Y3 Greedo Sordros
Move Y3 Greedo Sordros

53) sordros: Attack Y3 Sordros

54) TwoShort: Sacrifice R3 Zuleo
Attack R1N Sordros
Attack R1N Sordros
Attack G3N Sordros

	sordros: Thanks for the game!


7500)
Variants: "Sinister"
Started: 2007.4.26, Ended: 2007.6.6
Participants: Jesse (S), sordros (W), MikeYarrum (N), zoltar (E)
Winner: Jesse

1) MikeYarrum: Homeworld R3 G2 B3
	Jesse: Yah!  Look at all those pieces.  Heh heh.  It's been a while since I've played anything other than Binary.  Have a good game, all.
	MikeYarrum: Yep! Nice to meet you Jesse, I don't think we've played before.
	MikeYarrum: My first try playing something besides b-y-g banker.

2) zoltar: Homeworld Y1 B2 G3

3) Jesse: Homeworld R1 B3 G3

4) sordros: Homeworld B1 Y2 G3

5) MikeYarrum: Build B1 Mikeyarrum

6) zoltar: Build G1 Zoltar

7) Jesse: Build G1 Jesse

8) sordros: Build G1 Sordros

9) MikeYarrum: Trade B1 Y1 Mikeyarrum

10) zoltar: Trade G1 Y1 Zoltar

11) Jesse: Trade G1 Y1 Jesse

12) sordros: Trade G1 Y1 Sordros

13) MikeYarrum: Build Y2 Mikeyarrum

14) zoltar: Build Y2 Zoltar

15) Jesse: Build Y2 Jesse

16) sordros: Discover Y1 Sordros G3 Verdosia

17) MikeYarrum: Build B1 Mikeyarrum

18) zoltar: Trade Y1 R1 Zoltar

19) Jesse: Discover Y2 Jesse G2 Boz

20) sordros: Build G1 Sordros

21) MikeYarrum: Trade B1 R1 Mikeyarrum

22) zoltar: Discover Y2 Zoltar G3 Greenbelt

23) Jesse: Build Y1 Boz

24) sordros: Build Y2 Verdosia

25) MikeYarrum: Discover Y2 Mikeyarrum G1 Chiyo

26) zoltar: Build Y3 Greenbelt

27) Jesse: Build Y3 Jesse

28) sordros: Discover Y2 Verdosia G1 Galatea

29) MikeYarrum: Build Y3 Mikeyarrum

30) zoltar: Move Y3 Greenbelt Chiyo

31) Jesse: Build Y3 Jesse

32) sordros: Build Y3 Galatea

33) MikeYarrum: Move Y2 Chiyo Verdosia

34) zoltar: Build R1 Zoltar

35) Jesse: Trade Y1 R1 Jesse

36) sordros: Trade G1 B1 Sordros

37) MikeYarrum: Discover R1 Mikeyarrum G1 Osaka

38) zoltar: Sacrifice Y2 Greenbelt
Move Y3 Chiyo Verdosia
Move Y3 Verdosia Sordros

39) Jesse: Discover Y3 Jesse G2 Squa

40) sordros: Build G1 Sordros

41) MikeYarrum: Build R2 Osaka

42) zoltar: Sacrifice R1 Zoltar
Attack G3W Sordros

43) Jesse: Move R1 Jesse Squa

44) sordros: Build G1 Sordros

45) MikeYarrum: Build B1 Mikeyarrum

46) zoltar: Discover G3 Sordros B3 Bluemoon

47) Jesse: Build G1 Jesse

48) sordros: Build B1 Sordros

49) MikeYarrum: Sacrifice R1 Osaka
Attack Y1W Verdosia

50) zoltar: Move Y3 Sordros Bluemoon

51) Jesse: Discover G3 Jesse B2 Schnook

52) sordros: Discover B1 Sordros G3 Verdesia

53) MikeYarrum: Move B1 Mikeyarrum Osaka

54) zoltar: Build G2 Bluemoon

55) Jesse: Build G2 Schnook

56) sordros: Sacrifice Y2 Galatea
Move Y3 Galatea Verdesia
Move Y3 Verdesia Sordros

57) MikeYarrum: Trade B1 Y1 Osaka

58) zoltar: Sacrifice G3 Bluemoon
Build Y2 Bluemoon
Build G1 Zoltar
Build G3 Bluemoon

59) Jesse: Sacrifice G3 Schnook
Build R1 Squa
Build R1 Squa
Build G3 Schnook

60) sordros: Build B1 Verdesia

61) MikeYarrum: Build Y2 Osaka

62) zoltar: Discover Y3 Bluemoon B2 Blueberry

63) Jesse: Trade G3 R3 Schnook

64) sordros: Build G3 Sordros

65) MikeYarrum: Build R2 Osaka

66) zoltar: Build R2 Zoltar

67) Jesse: Sacrifice Y2 Boz
Move R3 Schnook Bluemoon
Move R3 Bluemoon Sordros

68) Jesse: Attack G3W Sordros

69) MikeYarrum: Discover Y1 Osaka R3 Kimura
	Jesse: Hrm.  That's pretty uncool, in a sinister game.  At least I didn't have to make a big, crippling sacrifice to get in there.

70) zoltar: Move G2 Bluemoon Sordros
Catastrophe Sordros G
	sordros: Oops, my mistake Jesse... This is my first sinister game.  I thought it would grant you the win if I resigned.  I apologize.

71) Jesse: Attack Y3W Sordros

72) MikeYarrum: Sacrifice Y2 Osaka
Move Y1 Kimura Sordros
Move Y1 Verdosia Sordros
Catastrophe Sordros Yellow
	Jesse: Okay, Sordros.  Now you know.  Of course, if it *had* given me the win, that would have been unfair to someone who might have been able to defeat their target before me.  (You never know!)  In a sinister game, it's best to stick it out.
	Jesse: On another topic, you do know what your big mistake was, don't you?
	zoltar: Not as big as mine, which was to weaken but not obliterate Sordros after his big mistake!

73) zoltar: Move R2 Zoltar Verdesia
	Jesse: Indeed, Zoltar.  That's risky business.  You did profit well from it, however.

74) Jesse: Discover R1 Squa G1 Rutabaga

75) MikeYarrum: Move Y1 Mikeyarrum Osaka

76) zoltar: Move Y3 Blueberry Rutabaga

77) Jesse: Attack B1W Sordros

78) MikeYarrum: Move R2 Osaka Boz

79) zoltar: Build R2 Verdesia

80) Jesse: Move Y1 Boz Sordros

81) MikeYarrum: Build Y1 Osaka

82) zoltar: Sacrifice R2 Verdesia
Attack B1W Verdesia
Attack R1S Rutabaga

83) Jesse: Build Y1 Jesse

84) MikeYarrum: Build Y2 Verdosia

85) zoltar: Attack B1W Verdesia

86) Jesse: Move B1 Sordros Squa

87) MikeYarrum: Build Y2 Mikeyarrum

88) zoltar: Build R2 Rutabaga

89) Jesse: Trade Y3 G3 Jesse

90) MikeYarrum: Sacrifice Y2 Verdosia
Move Y1 Osaka Squa
Move Y1 Osaka Squa
	zoltar: Can anyone see the stashes at the top?  I click on refresh and then tried another computer, but they don't show up for me.
	MikeYarrum: I can't. It's a bug that's hit another Homeworlds game I'm in.
	Aaron: Had a major permissions snafu the other day.  I missed this directory.  Fixed.

91) zoltar: Move Y2 Bluemoon Squa
Catastrophe Squa Y

92) Jesse: Sacrifice G2 Schnook
Build R2 Sordros
Build R3 Squa

93) MikeYarrum: Build R3 Osaka

94) zoltar: Move R1 Rutabaga Squa
Catastrophe Squa R
	Jesse: <sigh>  Nothing like being consistently teamed against to spoil my game.  Congratulations to Zoltar on his impending win.  I only hope it's premature.  XD
	MikeYarrum: Well, he wins pretty much every game he and I play against each other. Why should this be any different?
	zoltar: Actually, up until this move, I thought Jesse had the game, but seeing those two y1 ships, I had no choice but to sac my y2.  Now I'm stronger, but it's far from over, as now that I've prevented you from wiping out the yellows of MikeYarrum's homeworld, Mike is stronger as well, and has a chance to attack me if I'm overtaxed going after the Jesse homeworld.  Btw, I've never won one of these multi-player games yet, and Mike, I'm having as hard a time with Jesse in one-to-one games as you are with me (wait till you play TwoShort -- you won't even see it coming and then BOOM), so you have a reasonable chance here. I have less of an advantage now than Jesse had 3 moves ago. My biggest advantage is that you might not get the timing and sharp tactics right to attack me just when I'm weak and sacrificing to attack Jesse, but if you do, you could pull off the win, letting us go at it while you build and then striking at me at the right moment when I'm weak.

95) Jesse: Move R3 Sordros Verdesia
	Jesse: Mike, I believe it's in both of our interests for everyone to get stronger at this point.  That may even make what Zoltar says about not having a big advantage true.

Zoltar, I think you're nuts to think I had a big advantage, before.  Maybe I could have, if Mike hadn't blasted yellow at Sordros.  After that, I'd spent about 4 turns on that attack with no profit (and minus a Y2 sacrifice) to show for it, and had ship distribution problems besides.  Having that b1 at Sordros was a particular problem, given your then-impending collection of blues at Verdesia.  Besides that, you had a significant lead in production potential (close to achieving a factory lock-out).

96) MikeYarrum: Build Y1 Verdosia

97) zoltar: Trade B1 R1 Verdesia
	Jesse: Argh.  I'm blind.  That'll teach me to chat and play at the same time, I suppose.  :P
	zoltar: Well, it's not like it's a real time game and you don't have time for both!  Now Mike has the strongest fleet...

98) Jesse: Sacrifice B1 Squa
Trade R3 Y3 Verdesia

99) MikeYarrum: Build R1 Boz

100) zoltar: Sacrifice G3 Zoltar
Build R1 Verdesia
Build R3 Rutabaga
Build R3 Zoltar

101) Jesse: Sacrifice G1 Jesse
Build R3 Sordros

102) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move R1 Boz Rutabaga
Move R2 Boz Rutabaga
Catastrophe Rutabaga Red

103) zoltar: Sacrifice Y3 Rutabaga
Move R1 Zoltar Bluemoon
Move R1 Verdesia Sordros
Move R1 Verdesia Sordros
Catastrophe Sordros R

104) Jesse: Trade Y1 R1 Sordros

105) MikeYarrum: Sacrifice Y1 Verdosia
Move R3 Osaka Verdosia

106) zoltar: Sacrifice R2 Verdesia
Pass
Pass

107) Jesse: Build G1 Jesse

108) MikeYarrum: Build R1 Verdosia

109) zoltar: Build G1 Zoltar

110) Jesse: Trade G1 R1 Jesse

111) MikeYarrum: Build R2 Osaka

112) zoltar: Build R2 Bluemoon
	MikeYarrum: I hate it when this happens - three pointers are so hard to get.
	zoltar: Hey, you do have three of them, you know!
	zoltar: b g1 zoltar

113) Jesse: Sacrifice R1 Jesse
Attack B1E Verdesia

114) MikeYarrum: Build Y1 Verdosia

115) zoltar: Trade R2 Y2 Bluemoon

116) Jesse: Build G1 Jesse

117) MikeYarrum: Build Y1 Mikeyarrum

118) zoltar: Trade G1 B1 Zoltar

119) Jesse: Build B1 Verdesia

120) MikeYarrum: Move Y1 Verdosia Osaka

121) zoltar: Move B1 Zoltar Bluemoon

122) Jesse: Discover B1 Verdesia G1 Gortisol

123) MikeYarrum: Discover R2 Osaka B3 Yukari

124) zoltar: Discover B1 Bluemoon G1 Greenpea

125) Jesse: Discover G1 Jesse Y2 Bert

126) MikeYarrum: Build B1 Mikeyarrum

127) zoltar: Build G2 Bluemoon

128) Jesse: Build G2 Jesse

129) MikeYarrum: Move B1 Mikeyarrum Osaka

130) zoltar: Build B2 Greenpea

131) Jesse: Build B2 Gortisol

132) MikeYarrum: Build B2 Osaka

133) zoltar: Trade B1 Y1 Greenpea

134) Jesse: Trade B2 Y2 Gortisol

135) MikeYarrum: Move Y3 Mikeyarrum Osaka

136) zoltar: Sacrifice G2 Bluemoon
Build Y2 Bluemoon
Build Y3 Greenpea

137) Jesse: Sacrifice G2 Jesse
Build Y3 Jesse
Build Y3 Gortisol

138) MikeYarrum: Trade B2 G2 Osaka

139) zoltar: Build G2 Zoltar

140) Jesse: Build G2 Jesse

141) MikeYarrum: Build R1 Osaka
	MikeYarrum: This is more complicated than I expected it would get...

142) zoltar: Discover G2 Zoltar B3 Regula

143) Jesse: Trade Y2 R2 Gortisol

144) MikeYarrum: Build Y2 Verdosia

145) zoltar: Build R2 Bluemoon

146) Jesse: Sacrifice G2 Jesse
Build R2 Gortisol
Build R3 Sordros

147) MikeYarrum: Sacrifice Y2 Verdosia
Move R3 Verdosia Zoltar
Move R2 Yukari Zoltar

148) zoltar: Attack R3N Zoltar

149) Jesse: Trade R3 G3 Sordros

150) MikeYarrum: Sacrifice Y3 Osaka
Move R2 Osaka Verdosia
Move Y2 Verdosia Zoltar
Move R1 Verdosia Zoltar
Catastrophe Zoltar Red

151) zoltar: Sacrifice G3 Bluemoon
Build G2 Regula
Build G2 Regula
Build G3 Zoltar

152) Jesse: Sacrifice Y3 Jesse
Move R2 Gortisol Bert
Discover G1 Bert Y3 Superbert
Move Y3 Gortisol Regula

153) MikeYarrum: Sacrifice G2 Osaka
Build Y2 Osaka
Build Y3 Mikeyarrum

154) zoltar: Sacrifice Y2 Bluemoon
Move B2 Greenpea Mikeyarrum
Move Y1 Greenpea Mikeyarrum

155) Jesse: Sacrifice G3 Sordros
Build G2 Superbert
Build R1 Gortisol
Build R2 Sordros

156) MikeYarrum: Sacrifice R2 Verdosia
Attack Y1E Mikeyarrum
Attack B2E Mikeyarrum

157) zoltar: Sacrifice Y2 Bluemoon
Move R1 Bluemoon Zoltar
Move Y3 Greenpea Mikeyarrum
Catastrophe Mikeyarrum Y
	zoltar: Well. since you crippled me and now I am doomed in any case, I will emotionally counterattack your homeworld in a blind jihad, Mike!

158) Jesse: Sacrifice Y3 Verdesia
Move B1 Gortisol Mikeyarrum
Move B1 Verdesia Gortisol
Move B1 Gortisol Mikeyarrum
Catastrophe Mikeyarrum B

	Jesse: Here, I've got my doomsday machine all set up, but need to take a couple of extra turns to make sure Zoltar can't blast the green marker after I blast the red... and he opens up the opportunity for me to blast ships instead, making my last few moves irreleant.
	Jesse: Good game, guys.
	MikeYarrum: Well, it was wait until you got your machine in gear, or try to catch zoltar with a surprise move. In retrospect, it might not have been the best idea, but things were sticky in this game since way back.


7555)
Variants: "Sinister"
Started: 2007.4.27, Ended: 2007.5.15
Participants: Jesse (S), mneme (N)
Winner: Jesse

1) mneme: Homeworld R1 B2 G3

2) Jesse: Homeworld B1 R3 G3

3) mneme: Build G1 Mneme
	Jesse: Hello, and have a good game.
	mneme: You too.  (hmm.  Another symetrical game.)

4) Jesse: Build G1 Jesse

5) mneme: Trade G1 Y1 Mneme

6) Jesse: Trade G1 Y1 Jesse

7) mneme: Build G1 Mneme

8) Jesse: Build G1 Jesse

9) mneme: Discover G1 Mneme B3 Tsalmoth

10) Jesse: Discover G1 Jesse B2 Eliot

11) mneme: Build Y1 Mneme
	Jesse: Now the little asymmetries begin to build.

12) Jesse: Build Y2 Jesse
	mneme: Yup.

	mneme: You've got tempo here.  Interesting.

13) mneme: Build Y2 Mneme

14) Jesse: Build Y2 Jesse

15) mneme: Move Y1 Mneme Tsalmoth

16) Jesse: Trade Y1 B1 Jesse

17) mneme: Discover Y1 Mneme B3 Jhegalla

18) Jesse: Move Y2 Jesse Eliot

19) mneme: Build G1 Mneme

20) Jesse: Build G2 Jesse

21) mneme: Discover G1 Mneme Y3 Yendi

22) Jesse: Discover G2 Jesse B2 Tommy

23) mneme: Sacrifice G3 Mneme
Build Y1 Jhegalla
Build Y3 Mneme
Build Y3 Tsalmoth

24) Jesse: Build G2 Jesse

25) mneme: Trade Y1 R1 Tsalmoth

26) Jesse: Trade G2 R2 Jesse

27) mneme: Build G2 Tsalmoth

28) Jesse: Build G2 Jesse

29) mneme: Build G3 Yendi

30) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build G3 Eliot
Build Y1 Eliot

31) mneme: Trade Y1 B1 Jhegalla

32) Jesse: Sacrifice Y2 Eliot
Move G1 Eliot Yendi
Move G2 Tommy Yendi
Catastrophe Yendi G

33) mneme: Sacrifice G2 Tsalmoth
Build R1 Tsalmoth
Build B2 Jhegalla

34) Jesse: Discover B1 Jesse Y2 Emmet

35) mneme: Discover Y2 Mneme B3 Holdout

36) Jesse: Move R2 Jesse Eliot

37) mneme: Trade B2 G2 Jhegalla

38) Jesse: Sacrifice G3 Jesse
Build Y1 Eliot
Build Y3 Jesse
Build R2 Eliot

39) mneme: Move R1 Tsalmoth Emmet

40) Jesse: Sacrifice R2 Eliot
Attack R1 Emmet
Pass

41) mneme: Build R2 Tsalmoth
	mneme: bah.  was wondering about that.

42) Jesse: Build G1 Jesse

43) mneme: Discover R2 Tsalmoth G2 Orca
	mneme: ok, that was fairly dumb.  

44) Jesse: Sacrifice G2 Jesse
Build R2 Eliot
Build R3 Emmet

45) mneme: Build R3 Orca

46) Jesse: Move R3 Emmet Jhegalla

47) mneme: Sacrifice Y2 Holdout
Move G2 Jhegalla Emmet
Move B1 Jhegalla Emmet
	Jesse: That's weird; my move got rolled back.

48) Jesse: Attack Y1 Jhegalla

49) mneme: Sacrifice R2 Orca
Attack B1 Emmet
Attack R1 Emmet

50) Jesse: Move R3 Jhegalla Emmet

51) mneme: Sacrifice G2 Emmet
Build R2 Orca
Build B2 Emmet
	mneme: It probably crossed with my undo.

	Jesse: I kind of doubt that's it.  Another of my games was rolled back 3 moves, all of which occurred within a few minutes of my move in this game which was rolled back.  But who knows?

52) Jesse: Build Y2 Eliot

53) mneme: Move G1 Tsalmoth Mneme
	mneme: dunno.  maybe a db hiccough?


54) Jesse: Build G1 Eliot

55) mneme: Sacrifice Y3 Tsalmoth
Move R3 Orca Jesse
Move B2 Emmet Jesse
Move R1 Emmet Jesse

56) Jesse: Sacrifice R2 Eliot
Attack R3 Jesse
Attack B1 Emmet

57) mneme: Sacrifice Y3 Mneme
Move R1 Tsalmoth Orca
Move R1 Orca Jesse
Move B1 Emmet Jesse
Catastrophe Jesse R

58) Jesse: Sacrifice R2 Eliot
Attack B1 Jesse
Attack B2 Jesse

	Jesse: I know I can save a turn by leaving them there.  I just feel better this way.
	mneme: You were winning sufficiently that I figured it was worth launching a suicide attack on the hope that you'd make a mistake -- thanks for the game! (You making Origins?)
	Jesse: I certainly can't blame you for launching a desperation attack.  I was in a fine position to squeeze you slowly out of the game.  It was a good game, thanks.
	Jesse: And yes, I do plan to attend Origins.  Do I know you?
	mneme: We've met.  Joshua Kronengold.  I made the Dicehouse set.
	Jesse: Ah, yes.  It's nice to make the connection between you and your SDG name.  See you at Origins!
	mneme: Heh.  I actually use "mneme" nearly everywhere (including my username on the lists).  And definitely.



7570)
Variants: "Hard time"
Started: 2007.4.28, Ended: 2007.5.24
Participants: TwoShort (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld Y1 B2 G3

2) TwoShort: Homeworld Y1 B3 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) TwoShort: Build G1 Twoshort

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) TwoShort: Build G1 Twoshort

7) MikeYarrum: Build Y2 Mikeyarrum

8) TwoShort: Discover G1 Twoshort B2 Bluonia

9) MikeYarrum: Discover Y2 Mikeyarrum B3 Nyamo

10) TwoShort: Build G1 Twoshort

11) MikeYarrum: Build G2 Mikeyarrum

12) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Bluonia
Build G3 Twoshort

13) MikeYarrum: Build G3 Mikeyarrum

14) TwoShort: Trade G2 Y2 Bluonia

15) MikeYarrum: Move G3 Mikeyarrum Nyamo

16) TwoShort: Discover G1 Twoshort B2 Borbor

17) MikeYarrum: Build G2 Nyamo

18) TwoShort: Trade G1 B1 Bluonia

19) MikeYarrum: Discover G2 Mikeyarrum Y3 Sakaki

20) TwoShort: Discover B1 Bluonia Y3 Yoyodyne

21) MikeYarrum: Sacrifice G2 Nyamo
Build Y2 Nyamo
Build Y3 Mikeyarrum

22) TwoShort: Sacrifice G3 Twoshort
Build G1 Bluonia
Build G2 Borbor
Build G3 Twoshort

23) MikeYarrum: Trade G3 R3 Nyamo

24) TwoShort: Trade G2 R2 Bluonia
	TwoShort: I'll be travelling on and off  for the next week.  Just so you don't think my slow play is *exclusively* stalling because you're kicking my ass :)

25) MikeYarrum: Discover Y2 Nyamo R2 Tadakichi
	MikeYarrum: No problem. Thanks for the heads-up!

26) TwoShort: Sacrifice G3 Twoshort
Build G2 Borbor
Build G3 Bluonia
Build G3 Twoshort

27) MikeYarrum: Move R3 Nyamo Borbor

28) TwoShort: Sacrifice B1 Yoyodyne
Trade G3 Y3 Bluonia

29) MikeYarrum: Build G3 Sakaki

30) TwoShort: Sacrifice Y3 Bluonia
Move Y2 Bluonia Nyamo
Move Y2 Nyamo Mikeyarrum
Move R2 Bluonia Twoshort
Catastrophe Mikeyarrum Yellow

31) MikeYarrum: Attack G2 Borbor

32) TwoShort: Trade G1 B1 Twoshort

33) MikeYarrum: Attack G2 Borbor

34) TwoShort: Build B1 Twoshort

35) MikeYarrum: Sacrifice Y2 Tadakichi
Move G2 Borbor Twoshort
Move G2 Borbor Twoshort

	TwoShort: OK, now I'm just stalling...  Excellent game, well done!  I'm not sure whether you're even aware of my "ZPIP Challenge", but this makes you the probable winner... (My game vs. Keith started before this one, but I'm pretty confident I'll win that one.)
	MikeYarrum: Cool, thanks! As you probably figured out, I learned almost everything I know about Homeworlds through trial and (mostly) error on SDG, so it's cool to finally see myself making a bit of progress.

It's funny how zoltar has warned me about playing against you, when I've yet to win a game against him. 

And a quick Google led me to a blog which I guess is yours. Good job on those zero pointers! I'd make some myself, but I'm not ready to butcher my 3-pointers.


7582)
Started: 2007.4.29, Ended: 2007.5.1
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld Y1 B2 G3

2) zoltar: Homeworld B1 G3 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build Y1 Zoltar

5) MikeYarrum: Build G1 Mikeyarrum

6) zoltar: Build Y1 Zoltar

7) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

8) zoltar: Discover Y1 Zoltar G2 Greenbelt

9) MikeYarrum: Trade G1 B1 Mikeyarrum

10) zoltar: Build Y2 Zoltar

11) MikeYarrum: Build B1 Mikeyarrum

12) zoltar: Discover Y1 Zoltar G2 Greendale

13) MikeYarrum: Discover B1 Mikeyarrum G3 Yomi

14) zoltar: Build Y2 Greendale

15) MikeYarrum: Build B2 Yomi

16) zoltar: Build Y2 Zoltar

17) MikeYarrum: Discover B1 Mikeyarrum Y3 Kagura

18) zoltar: Trade Y3 R3 Zoltar

19) MikeYarrum: Trade G3 R3 Mikeyarrum

20) zoltar: Build Y3 Zoltar

21) MikeYarrum: Trade B2 G2 Yomi

22) zoltar: Trade Y3 G3 Zoltar

23) MikeYarrum: Sacrifice G2 Yomi
Build B2 Kagura
Build B2 Yomi

24) zoltar: Build Y3 Greendale

25) MikeYarrum: Build B3 Yomi

26) zoltar: Move Y3 Greendale Yomi

	MikeYarrum: Your game. I figured you wouldn't mind, since we've got a few others going.
	zoltar: That's cool.  I didn't see the winning move at first, and then when I realized that your R3 was 'pinned' and thus just like not having any red pieces at all, I saw that I could simply win all three blue ships the next move and you could do nothing to stop me!
	MikeYarrum: I really should have moved another ship to my homeworld, but I kept putting it off with the idea that I had to utilize every move.


7591)
Started: 2007.4.30, Ended: 2007.5.1
Participants: Forscyvus (S), lackerhill (N)
Winner: lackerhill

1) lackerhill: Homeworld G1 B3 R3

2) Forscyvus: Homeworld G3 Y2 B3

3) lackerhill: Build R1 Lackerhill

4) Forscyvus: Build B1 Forscyvus

5) lackerhill: Trade R1 Y1 Lackerhill

6) Forscyvus: Trade B1 Y1 Forscyvus

7) lackerhill: Build R1 Lackerhill

8) Forscyvus: Discover Y1 Forscyvus B1 Omgflotzorz

9) lackerhill: Trade R1 B1 Lackerhill

10) Forscyvus: Build B1 Forscyvus

11) lackerhill: Build B2 Lackerhill

12) Forscyvus: Trade B1 G1 Forscyvus

13) lackerhill: Discover B2 Lackerhill Y2 Foxtrot

14) Forscyvus: Move G1 Forscyvus Omgflotzorz

15) lackerhill: Build B1 Lackerhill

16) Forscyvus: Build B2 Forscyvus

17) lackerhill: Trade B1 G1 Lackerhill

18) Forscyvus: Trade B2 Y2 Forscyvus

19) lackerhill: Move G1 Lackerhill Foxtrot

20) Forscyvus: Move Y2 Forscyvus Omgflotzorz

21) lackerhill: Build B1 Foxtrot

22) Forscyvus: Trade Y2 G2 Omgflotzorz

23) lackerhill: Build B2 Lackerhill

24) Forscyvus: Discover G2 Omgflotzorz Y3 Dontkillme

25) lackerhill: Sacrifice B2 Lackerhill
Trade B1 Y1 Lackerhill
Trade B2 Y2 Foxtrot

26) Forscyvus: Build G2 Omgflotzorz

27) lackerhill: Build Y3 Lackerhill

28) Forscyvus: Build Y3 Omgflotzorz

29) lackerhill: Sacrifice Y3 Lackerhill
Move R3 Lackerhill Foxtrot
Move R3 Foxtrot Omgflotzorz
Move R3 Omgflotzorz Forscyvus

30) Forscyvus: Sacrifice G2 Omgflotzorz
Build B1 Forscyvus
Build Y3 Omgflotzorz


31) lackerhill: Attack B3S Forscyvus



7585)
Started: 2007.4.30, Ended: 2007.5.2
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld G2 R3 B3

2) zoltar: Homeworld Y1 B2 G3

3) MikeYarrum: Build B1 Mikeyarrum

4) zoltar: Build G1 Zoltar

5) MikeYarrum: Build B1 Mikeyarrum

6) zoltar: Discover G1 Zoltar B3 Bluemoon

7) MikeYarrum: Trade B1 Y1 Mikeyarrum

8) zoltar: Build G1 Zoltar

9) MikeYarrum: Discover B1 Mikeyarrum Y1 Tomo

10) zoltar: Build G1 Bluemoon

11) MikeYarrum: Build Y2 Mikeyarrum

12) zoltar: Build G2 Bluemoon

13) MikeYarrum: Build Y2 Mikeyarrum

14) zoltar: Trade G2 Y2 Bluemoon

15) MikeYarrum: Trade Y2 G2 Mikeyarrum

16) zoltar: Sacrifice G3 Zoltar
Build G2 Bluemoon
Build G3 Zoltar
Build G3 Zoltar

17) MikeYarrum: Move G2 Mikeyarrum Tomo

18) zoltar: Trade G1 R1 Zoltar
	zoltar: Threatening mate-in-one with the old "Bluebird", eh?

19) MikeYarrum: Trade Y1 R1 Mikeyarrum
	MikeYarrum: Gotta keep you on your toes somehow. ;)

20) zoltar: Discover G2 Bluemoon B2 Blueberry

21) MikeYarrum: Build G1 Tomo

22) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Blueberry
Build Y1 Bluemoon

23) MikeYarrum: Build B1 Tomo

24) zoltar: Trade G3 Y3 Blueberry

25) MikeYarrum: Trade B3 Y3 Mikeyarrum

26) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Blueberry
Build Y2 Blueberry

27) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move G1 Tomo Blueberry
Move G2 Tomo Blueberry
Catastrophe Blueberry Green

28) zoltar: Sacrifice G3 Zoltar
Build Y2 Blueberry
Build Y3 Bluemoon
Build G1 Zoltar

29) MikeYarrum: Discover B1 Tomo G3 Yomi
	zoltar: Well if you are going to blow up my greens, I'll go for a lock on the Yellow Tech. Warp drive is mine!

30) zoltar: Sacrifice Y2 Blueberry
Move Y2 Bluemoon Tomo
Discover G1 Bluemoon R1 Redrover

31) MikeYarrum: Build Y2 Mikeyarrum

32) zoltar: Sacrifice Y3 Blueberry
Move Y1 Bluemoon Tomo
Move Y1 Tomo Mikeyarrum
Move Y2 Tomo Mikeyarrum
Catastrophe Mikeyarrum Y

33) MikeYarrum: Trade B1 Y1 Yomi

34) zoltar: Sacrifice Y2 Blueberry
Move Y3 Bluemoon Redrover
Move Y3 Redrover Mikeyarrum

35) MikeYarrum: Move B1 Tomo Mikeyarrum

36) zoltar: Trade G3 R3 Zoltar

37) MikeYarrum: Pass

38) zoltar: Sacrifice R3 Zoltar
Attack R1 Mikeyarrum
Attack B1 Mikeyarrum
Pass



7592)
Started: 2007.5.1, Ended: 2007.5.3
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld G3 Y2 B3

2) zoltar: Homeworld R1 B2 G3

3) MikeYarrum: Build B1 Mikeyarrum

4) zoltar: Build G1 Zoltar

5) MikeYarrum: Build B1 Mikeyarrum

6) zoltar: Trade G1 Y1 Zoltar

7) MikeYarrum: Discover B1 Mikeyarrum G1 Tomo

8) zoltar: Build Y1 Zoltar

9) MikeYarrum: Trade B1 Y1 Tomo

10) zoltar: Trade Y1 B1 Zoltar

11) MikeYarrum: Trade B1 G1 Mikeyarrum

12) zoltar: Build B1 Zoltar

13) MikeYarrum: Build B1 Mikeyarrum

14) zoltar: Trade B1 R1 Zoltar

15) MikeYarrum: Move B1 Mikeyarrum Tomo

16) zoltar: Discover B1 Zoltar G3 Greenbelt

17) MikeYarrum: Build G1 Mikeyarrum

18) zoltar: Build G2 Zoltar

19) MikeYarrum: Discover G1 Mikeyarrum R1 Osaka

20) zoltar: Build R2 Zoltar

21) MikeYarrum: Build G2 Osaka

22) zoltar: Move R2 Zoltar Greenbelt

23) MikeYarrum: Sacrifice B1 Tomo
Trade G2 R2 Osaka

24) zoltar: Discover R1 Zoltar Y3 Yellowstone

25) MikeYarrum: Build G2 Osaka

26) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build R2 Yellowstone

27) MikeYarrum: Sacrifice G2 Osaka
Build Y1 Tomo
Build Y2 Tomo

28) zoltar: Sacrifice G2 Zoltar
Build Y2 Zoltar
Build R3 Greenbelt

29) MikeYarrum: Sacrifice Y1 Tomo
Move R2 Osaka Mikeyarrum

30) zoltar: Sacrifice G2 Zoltar
Build R3 Yellowstone
Build R3 Greenbelt

31) MikeYarrum: Sacrifice Y2 Tomo
Move R2 Mikeyarrum Tomo
Move R2 Tomo Greenbelt
Catastrophe Greenbelt Red

32) zoltar: Sacrifice Y2 Zoltar
Move R3 Yellowstone Osaka
Move R3 Osaka Mikeyarrum

33) MikeYarrum: Pass

34) zoltar: Sacrifice R2 Yellowstone
Attack G1 Mikeyarrum
Attack B3 Mikeyarrum



7600)
Started: 2007.5.1, Ended: 2007.6.11
Participants: KaneGreyfeather (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) KaneGreyfeather: Homeworld G3 Y2 B3
	ts52: Have a great game!

3) ts52: Build G1 Ts52

4) KaneGreyfeather: Build B1 Kanegreyfeather

5) ts52: Trade G1 B1 Ts52

6) KaneGreyfeather: Build B2 Kanegreyfeather

7) ts52: Build G1 Ts52

8) KaneGreyfeather: Trade B1 R1 Kanegreyfeather

9) ts52: Trade G1 R1 Ts52



7599)
Started: 2007.5.1, Ended: 2007.5.20
Participants: MikeYarrum (S), KaneGreyfeather (N)
Winner: MikeYarrum

1) KaneGreyfeather: Homeworld G3 Y2 B3

2) MikeYarrum: Homeworld R1 G2 B3

3) KaneGreyfeather: Build B1 Kanegreyfeather

4) MikeYarrum: Build B1 Mikeyarrum

5) KaneGreyfeather: Trade B1 R1 Kanegreyfeather

6) MikeYarrum: Trade B1 Y1 Mikeyarrum

7) KaneGreyfeather: Build B1 Kanegreyfeather

8) MikeYarrum: Build B1 Mikeyarrum

9) KaneGreyfeather: Trade B1 G1 Kanegreyfeather

10) MikeYarrum: Build Y1 Mikeyarrum

11) KaneGreyfeather: Build G1 Kanegreyfeather

12) MikeYarrum: Trade B1 G1 Mikeyarrum

13) KaneGreyfeather: Discover G1 Kanegreyfeather B1 Thenewworld

14) MikeYarrum: Build G2 Mikeyarrum

15) KaneGreyfeather: Build G2 Thenewworld

16) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

17) KaneGreyfeather: Trade G2 Y2 Thenewworld

18) MikeYarrum: Build B1 Mikeyarrum

19) KaneGreyfeather: Build Y1 Thenewworld

20) MikeYarrum: Build G2 Sakaki

21) KaneGreyfeather: Build G3 Thenewworld

22) MikeYarrum: Sacrifice B1 Mikeyarrum
Trade G2 Y2 Sakaki

23) KaneGreyfeather: Build G2 Kanegreyfeather

24) MikeYarrum: Build G3 Sakaki

25) KaneGreyfeather: Move Y1 Thenewworld Kanegreyfeather

26) MikeYarrum: Sacrifice Y2 Sakaki
Move G1 Sakaki Thenewworld
Move G1 Thenewworld Kanegreyfeather
Catastrophe Kanegreyfeather Green

27) KaneGreyfeather: Build Y2 Thenewworld

28) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi



7610)
Started: 2007.5.3, Ended: 2007.5.10
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld B2 Y1 G3

2) zoltar: Homeworld Y2 B3 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build G1 Zoltar

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) zoltar: Trade G1 Y1 Zoltar

7) MikeYarrum: Build Y2 Mikeyarrum

8) zoltar: Build Y2 Zoltar

9) MikeYarrum: Discover Y2 Mikeyarrum G3 Yomi

10) zoltar: Discover Y1 Zoltar G1 Greendale

11) MikeYarrum: Build Y3 Yomi

12) zoltar: Build Y3 Greendale

13) MikeYarrum: Build G1 Mikeyarrum

14) zoltar: Discover Y3 Greendale B3 Blueridge

15) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

16) zoltar: Trade Y2 R2 Zoltar

17) MikeYarrum: Trade Y1 R1 Mikeyarrum

18) zoltar: Build R1 Zoltar

19) MikeYarrum: Build R1 Mikeyarrum

20) zoltar: Trade R1 B1 Zoltar

21) MikeYarrum: Discover Y2 Yomi B1 Chiyo

22) zoltar: Build B1 Zoltar

23) MikeYarrum: Trade Y2 B2 Chiyo

24) zoltar: Move B1 Zoltar Greendale

25) MikeYarrum: Discover R1 Mikeyarrum B3 Nyamo

26) zoltar: Build B2 Greendale

27) MikeYarrum: Trade B2 Y2 Chiyo

28) zoltar: Move B2 Greendale Sakaki

29) MikeYarrum: Move Y3 Yomi Greendale

30) zoltar: Trade B1 Y1 Greendale

31) MikeYarrum: Discover Y3 Greendale G3 Yomi2

32) zoltar: Build Y2 Greendale

33) MikeYarrum: Move G1 Sakaki Chiyo

34) zoltar: Trade B2 G2 Sakaki

35) MikeYarrum: Build G1 Chiyo

36) zoltar: Build G2 Sakaki

37) MikeYarrum: Sacrifice Y2 Chiyo
Move G1 Chiyo Sakaki
Move G1 Chiyo Sakaki
Catastrophe Sakaki Green

38) zoltar: Discover Y1 Greendale G2 Greenhills

39) MikeYarrum: Build G1 Mikeyarrum

40) zoltar: Build Y2 Greenhills

41) MikeYarrum: Discover G1 Mikeyarrum Y3 Kagura

42) zoltar: Build B1 Zoltar

43) MikeYarrum: Build G1 Mikeyarrum

44) zoltar: Build G2 Zoltar

45) MikeYarrum: Build G2 Kagura

46) zoltar: Trade Y3 R3 Blueridge

47) MikeYarrum: Trade G3 Y3 Mikeyarrum

48) zoltar: Trade G3 R3 Zoltar

49) MikeYarrum: Build G3 Mikeyarrum

50) zoltar: Build G3 Zoltar

51) MikeYarrum: Discover G1 Kagura B1 Chiyo

52) zoltar: Move G3 Zoltar Chiyo

53) MikeYarrum: Trade G1 R1 Chiyo

54) zoltar: Move Y2 Greendale Nyamo

55) MikeYarrum: Build R2 Mikeyarrum

56) zoltar: Sacrifice R2 Zoltar
Attack R1 Chiyo
Attack R1 Nyamo

57) MikeYarrum: Trade R2 B2 Mikeyarrum

58) zoltar: Move B1 Zoltar Greendale

59) MikeYarrum: Move B2 Mikeyarrum Yomi2

60) zoltar: Sacrifice Y2 Nyamo
Move Y2 Greenhills Kagura
Move G3 Chiyo Yomi2

61) MikeYarrum: Sacrifice R1 Mikeyarrum
Attack G3 Yomi2

62) zoltar: Sacrifice Y1 Greenhills
Move R3 Blueridge Mikeyarrum

63) MikeYarrum: Sacrifice G3 Yomi2
Build G1 Mikeyarrum
Build B2 Yomi2
Build Y1 Yomi2

64) zoltar: Attack Y3 Mikeyarrum
	zoltar: Hey, you can't do that and squander your only red ship!

65) MikeYarrum: Sacrifice Y3 Yomi2
Move B2 Yomi2 Greendale
Move B2 Greendale Zoltar
Move B2 Yomi2 Greendale
	MikeYarrum: Not like you weren't ahead anyway.

66) zoltar: Trade Y3 G3 Mikeyarrum
Catastrophe Mikeyarrum G



7612)
Started: 2007.5.3, Ended: 2007.5.10
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld Y1 B2 G3

2) zoltar: Homeworld R1 B3 G3
	MikeYarrum: I was concerned I might not be enough of a challenge, but if you keep playing against me, I must be doing something right!

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build G1 Zoltar

5) MikeYarrum: Trade G1 Y1 Mikeyarrum
	zoltar: It's more that I'm too much of a wimp to keep playing the best players, such as TwoShort, who destroyed me in about 10 moves last week!

6) zoltar: Trade G3 Y3 Zoltar

7) MikeYarrum: Build G1 Mikeyarrum
	MikeYarrum: LOL, I guess this is hazing the new guy.

8) zoltar: Build G1 Zoltar

9) MikeYarrum: Build G2 Mikeyarrum

10) zoltar: Sacrifice Y3 Zoltar
Discover G1 Zoltar Y2 Wormhole-1
Discover G1 Wormhole-1 Y3 Wormhole-2
Move G1 Wormhole-2 Mikeyarrum
Catastrophe Mikeyarrum G

11) MikeYarrum: Trade Y1 G1 Mikeyarrum
	MikeYarrum: ... I was wondering if discovering, then abandoning a world in the same turn was legal. Quite an interesting move you've made, there.

12) zoltar: Build G1 Zoltar

13) MikeYarrum: Build G2 Mikeyarrum

14) zoltar: Build G2 Zoltar

15) MikeYarrum: Build G2 Mikeyarrum
	zoltar: yes, though I seem to have given you a slight advantage, as you get the first g2.

16) zoltar: Trade G1 Y1 Zoltar

17) MikeYarrum: Trade G2 Y2 Mikeyarrum
	MikeYarrum: Sorry, had a second thought.

18) zoltar: Trade G1 R1 Zoltar

19) MikeYarrum: Build G1 Mikeyarrum

20) zoltar: Build R1 Zoltar

21) MikeYarrum: Trade G2 R2 Mikeyarrum

22) zoltar: Trade R1 B1 Zoltar

23) MikeYarrum: Trade G1 B1 Mikeyarrum

24) zoltar: Build G1 Zoltar

25) MikeYarrum: Discover R2 Mikeyarrum G3 Yomi

26) zoltar: Discover R1 Zoltar G2 Yummy

27) MikeYarrum: Build G1 Mikeyarrum

28) zoltar: Discover G1 Zoltar B2 Bluemoon

29) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

30) zoltar: Build G2 Bluemoon

31) MikeYarrum: Build G3 Sakaki

32) zoltar: Sacrifice G2 Bluemoon
Build G2 Bluemoon
Build G3 Zoltar

33) MikeYarrum: Build Y1 Mikeyarrum

34) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Zoltar
Build Y2 Zoltar

35) MikeYarrum: Move Y1 Mikeyarrum Yomi

36) zoltar: Sacrifice Y1 Zoltar
Move Y2 Zoltar Bluemoon

37) MikeYarrum: Build B1 Mikeyarrum

38) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Bluemoon
Build Y3 Zoltar

39) MikeYarrum: Move B1 Mikeyarrum Yomi

40) zoltar: Sacrifice Y2 Zoltar
Move G1 Bluemoon Sakaki
Move G2 Bluemoon Sakaki
Catastrophe Sakaki G

41) MikeYarrum: Build G1 Mikeyarrum

42) zoltar: Discover Y1 Bluemoon G3 Yippee

43) MikeYarrum: Trade Y2 R2 Mikeyarrum

44) zoltar: Build Y2 Yippee

45) MikeYarrum: Discover R2 Yomi G2 Chihiro

46) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build Y3 Bluemoon
Build Y3 Yippee

47) MikeYarrum: Build B2 Yomi

48) zoltar: Move B1 Zoltar Yummy

49) MikeYarrum: Move B1 Yomi Chihiro

50) zoltar: Sacrifice Y2 Bluemoon
Move Y3 Bluemoon Yomi
Move Y3 Yippee Chihiro

51) MikeYarrum: Trade B2 Y2 Yomi

52) zoltar: Sacrifice R1 Yummy
Attack R2 Chihiro

53) MikeYarrum: Build B2 Chihiro

54) zoltar: Attack B2 Chihiro

55) MikeYarrum: Build B2 Chihiro

56) zoltar: Sacrifice R2 Chihiro
Attack Y1 Yomi
Attack Y2 Yomi

57) MikeYarrum: Trade B2 R2 Chihiro

58) zoltar: Move B2 Chihiro Yomi

59) MikeYarrum: Build R1 Mikeyarrum

60) zoltar: Sacrifice Y3 Zoltar
Move B1 Yummy Yomi
Move B1 Yomi Mikeyarrum
Move B2 Yomi Mikeyarrum
Catastrophe Mikeyarrum B

61) MikeYarrum: Build B1 Chihiro
	zoltar: Retreat!!!

62) zoltar: Sacrifice Y3 Yomi
Move Y1 Yomi Mikeyarrum
Move Y2 Yomi Mikeyarrum
Move Y1 Yippee Mikeyarrum
Catastrophe Mikeyarrum Y
	zoltar: Attack!!!

	zoltar: There's a name for the double-sacrifice to blow up both homeworld stars in consecutive moves, but I forgot what it is.  An important tactic in a close game, if you don't want your opponent to have time to mount a counterattack after your first sacrifice, so you wait and then do it all at once. gg.


7614)
Variants: "Hard time"
Started: 2007.5.3, Ended: 2007.5.31
Participants: clockwise (S), Uglyfoot (N)
Winner: clockwise

1) Uglyfoot: Homeworld Y1 B3 G3

2) clockwise: Homeworld B1 G2 Y3

3) Uglyfoot: Build G1 Uglyfoot

4) clockwise: Build Y1 Clockwise

5) Uglyfoot: Trade G1 Y1 Uglyfoot

6) clockwise: Trade Y1 B1 Clockwise

7) Uglyfoot: Discover Y1 Uglyfoot G2 Assembly

8) clockwise: Build B1 Clockwise

9) Uglyfoot: Build G1 Uglyfoot

10) clockwise: Discover B1 Clockwise G3 Godzilla

11) Uglyfoot: Trade G1 R1 Uglyfoot

12) clockwise: Build B2 Godzilla

13) Uglyfoot: Build G1 Uglyfoot

14) clockwise: Trade B2 R2 Godzilla

15) Uglyfoot: Build Y1 Assembly

16) clockwise: Build Y2 Clockwise

17) Uglyfoot: Build Y2 Assembly

18) clockwise: Move Y2 Clockwise Godzilla

19) Uglyfoot: Discover Y2 Assembly G3 Forward

20) clockwise: Build Y2 Godzilla

21) Uglyfoot: Build Y3 Forward

22) clockwise: Build Y3 Clockwise

23) Uglyfoot: Move Y2 Forward Clockwise

24) clockwise: Discover Y3 Clockwise B3 Leviathan

25) Uglyfoot: Trade Y2 B2 Clockwise

26) clockwise: Trade B1 R1 Clockwise

27) Uglyfoot: Discover G1 Uglyfoot B2 Exchange

28) clockwise: Build Y2 Clockwise
	clockwise: Are you having the same problem as me, where the global reserve stash isn't showing up?

29) Uglyfoot: Build G1 Exchange
	Uglyfoot: Yes, I was.

30) clockwise: Attack B2N Clockwise

31) Uglyfoot: Move Y3 Forward Exchange
	clockwise: Hmm, yes it seems to have fixed itself.

32) clockwise: Move B1 Godzilla Assembly

33) Uglyfoot: Move Y1 Assembly Godzilla

34) clockwise: Sacrifice R2 Godzilla
Attack Y1N Assembly
Attack Y1N Godzilla

35) Uglyfoot: Build G1 Uglyfoot

36) clockwise: Sacrifice Y2 Godzilla
Move Y2 Godzilla Assembly
Discover Y1 Godzilla B2 Kraken

37) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Exchange

38) clockwise: Build B1 Assembly

39) Uglyfoot: Discover G3 Exchange R3 Firebase

40) clockwise: Sacrifice Y3 Leviathan
Move Y1 Assembly Uglyfoot
Move Y2 Assembly Uglyfoot
Move Y1 Kraken Uglyfoot
Catastrophe Uglyfoot Yellow

41) Uglyfoot: Sacrifice Y3 Exchange
Move G1 Uglyfoot Assembly
Move G2 Uglyfoot Assembly
Move G3 Firebase Assembly
Catastrophe Assembly G
	clockwise: The green strategy was, I believe, the correct one to pursue this game, but you only started pushing it once it was too late.

42) clockwise: Build B1 Clockwise
	Uglyfoot: That clears the board...

43) Uglyfoot: Build G1 Uglyfoot

44) clockwise: Sacrifice Y2 Clockwise
Discover B1 Clockwise Y3 Mothra
Discover B1 Mothra G2 Mechagodzilla

45) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Exchange
Build G3 Uglyfoot

46) clockwise: Build B1 Mechagodzilla

47) Uglyfoot: Trade G3 Y3 Uglyfoot

48) clockwise: Sacrifice Y3 Clockwise
Move B2 Clockwise Uglyfoot
Move B1 Mechagodzilla Uglyfoot
Move B1 Mechagodzilla Uglyfoot
Catastrophe Uglyfoot Blue
	Uglyfoot: So I survived a couple extra turns....
	clockwise: Pretty much
	clockwise: Overall I'd say you played much better than our first game back in April.  

Thanks for the game.



7628)
Started: 2007.5.4, Ended: 2007.5.12
Participants: zoltar (S), ts52 (N)
Winner: zoltar

1) ts52: Homeworld Y1 B2 G3

2) zoltar: Homeworld R2 B3 G3

3) ts52: Build G1 Ts52

4) zoltar: Build G1 Zoltar

5) ts52: Trade G1 Y1 Ts52

6) zoltar: Trade G1 Y1 Zoltar

7) ts52: Build Y2 Ts52

8) zoltar: Build Y2 Zoltar

9) ts52: Build G1 Ts52

10) zoltar: Build Y2 Zoltar

11) ts52: Trade Y1 R1 Ts52

12) zoltar: Trade Y2 R2 Zoltar

13) ts52: Build G1 Ts52

14) zoltar: Discover Y1 Zoltar G1 Greenpea

15) ts52: Discover G1 Ts52 Y3 Sol

16) zoltar: Build G2 Zoltar

17) ts52: Trade G1 B1 Ts52

18) zoltar: Discover G2 Zoltar Y1 Yellowjacket

19) ts52: Discover Y2 Ts52 G3 Frogstar

20) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenpea
Build Y3 Zoltar
Build Y3 Zoltar

21) ts52: Sacrifice G1 Sol
Build Y3 Frogstar

22) zoltar: Sacrifice Y2 Zoltar
Move Y1 Greenpea Frogstar
Move Y2 Greenpea Frogstar
Catastrophe Frogstar Y

23) ts52: Discover B1 Ts52 G3 Frogstar

24) zoltar: Trade Y3 G3 Zoltar

25) ts52: Build B1 Frogstar

26) zoltar: Build Y1 Zoltar

27) ts52: Build R1 Ts52

28) zoltar: Build Y2 Zoltar

29) ts52: Build G1 Ts52

30) zoltar: Discover Y3 Zoltar G1 Greenpea

31) ts52: Discover G1 Ts52 Y3 Sol

32) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenpea
Build Y2 Greenpea
Build Y3 Zoltar

33) ts52: Move R1 Ts52 Sol

34) zoltar: Move Y2 Greenpea Sol

35) ts52: Build R1 Sol

36) zoltar: Sacrifice R2 Zoltar
Attack R1 Sol
Attack R1 Sol

37) ts52: Build R2 Ts52

38) zoltar: Attack G1 Sol

39) ts52: Move R1 Ts52 Frogstar

40) zoltar: Move R1 Sol Yellowjacket

41) ts52: Build R2 Frogstar

42) zoltar: Build R3 Sol

43) ts52: Build R3 Ts52

44) zoltar: Sacrifice Y3 Greenpea
Move R1 Yellowjacket Sol
Move R1 Sol Ts52
Move R1 Sol Ts52
Catastrophe Ts52 R

45) ts52: Build R1 Frogstar

46) zoltar: Build Y3 Greenpea

47) ts52: Trade B1 G1 Frogstar

48) zoltar: Sacrifice G2 Yellowjacket
Build G2 Sol
Build G2 Sol

49) ts52: Trade G3 B3 Ts52

50) zoltar: Discover G1 Sol Y1 Luna

51) ts52: Build B1 Frogstar

52) zoltar: Build G2 Luna

53) ts52: Sacrifice G1 Frogstar
Build B1 Ts52

54) zoltar: Trade Y2 B2 Zoltar

55) ts52: Discover B1 Ts52 G3 Kermit

56) zoltar: Build Y2 Greenpea

57) ts52: Trade B1 G1 Kermit

58) zoltar: Build G3 Luna

59) ts52: Trade B3 R3 Ts52

60) zoltar: Sacrifice G3 Luna
Build G3 Luna
Build R1 Sol
Build R2 Sol

61) ts52: Trade R3 B3 Ts52

62) zoltar: Sacrifice B2 Zoltar
Trade R3 B3 Sol
Trade R2 B2 Sol

63) ts52: Trade B3 R3 Ts52

64) zoltar: Sacrifice G3 Luna
Build G3 Sol
Build R2 Sol
Build R3 Sol

65) ts52: Sacrifice G1 Kermit
Build R3 Ts52
	ts52: You know, this game is really hard when you don't have any yellow ships... ;) Thanks for the game.

66) zoltar: Sacrifice Y3 Greenpea
Move R1 Sol Ts52
Move R2 Sol Ts52
Move G3 Sol Ts52
Catastrophe Ts52 R
	zoltar: Yes, when I "locked you out" of yellow tech, the game was pretty much over, and I just had to slowly build up and then destroy your homeworld (there may have been a tactically more precise faster victory, but the slow build-up was unstoppable.  Thanks.  Play again?
	ts52: Sure, I'd be happy to play again. Thanks.



7637)
Variants: "Hard time"
Started: 2007.5.4, Ended: 2007.6.7
Participants: nycavri (S), Lexicon (N)
Winner: Lexicon

1) Lexicon: Homeworld R1 B2 G3

2) nycavri: Homeworld B1 G3 Y3

3) Lexicon: Build G1 Lexicon

4) nycavri: Build Y1 Nycavri

5) Lexicon: Trade G1 Y1 Lexicon

6) nycavri: Trade Y1 B1 Nycavri

7) Lexicon: Build G1 Lexicon

8) nycavri: Build Y1 Nycavri

9) Lexicon: Discover G1 Lexicon B3 Drosophila

10) nycavri: Discover Y1 Nycavri G2 Deacon

11) Lexicon: Build G1 Drosophila

12) nycavri: Discover Y1 Deacon G3 May

13) Lexicon: Build G1 Lexicon

14) nycavri: Build Y1 May

15) Lexicon: Build Y2 Lexicon
	nycavri: Looks like a bunch of games hiccoughed, but no harm done here.

16) nycavri: Move Y1 May Lexicon

17) Lexicon: Move Y2 Lexicon Drosophila

18) nycavri: Build Y2 May

19) Lexicon: Discover G1 Drosophila B2 Bostaurus

20) nycavri: Trade B1 R1 Nycavri

21) Lexicon: Build G2 Bostaurus

22) nycavri: Attack G1 Lexicon

23) Lexicon: Build G2 Drosophila

24) nycavri: Build G2 Lexicon

25) Lexicon: Attack G2 Lexicon

26) nycavri: Build Y2 Lexicon

27) Lexicon: Sacrifice G3 Lexicon
Build G3 Lexicon
Build Y3 Drosophila
Build Y3 Lexicon
Catastrophe Lexicon Yellow

28) nycavri: Build Y1 Nycavri

29) Lexicon: Attack G1 Lexicon

30) nycavri: Trade Y1 B1 Nycavri

31) Lexicon: Sacrifice Y2 Drosophila
Move G1 Bostaurus Nycavri
Move G2 Bostaurus Nycavri

32) nycavri: Attack G2 Nycavri

33) Lexicon: Sacrifice G1 Lexicon
Build G1 Nycavri
Catastrophe Nycavri Green

34) nycavri: Trade B1 G1 Nycavri

35) Lexicon: Discover G2 Drosophila B2 Rattus

36) nycavri: Build R1 Nycavri

37) Lexicon: Sacrifice G3 Lexicon
Build G1 Rattus
Build G2 Drosophila
Build G3 Lexicon

38) nycavri: Build G3 Nycavri

39) Lexicon: Trade G1 B1 Rattus

40) nycavri: Build R2 Nycavri

41) Lexicon: Trade G1 B1 Drosophila

42) nycavri: Move G1 Nycavri May

43) Lexicon: Sacrifice Y3 Drosophila
Move B1 Drosophila Nycavri
Move G2 Rattus Nycavri
Move B1 Rattus Nycavri

44) nycavri: Attack G2 Nycavri
	nycavri: Well played.  I think I'm now 0 for 10 now.....

45) Lexicon: Sacrifice G3 Lexicon
Build B2 Nycavri
Build B2 Nycavri
Build B3 Nycavri
Catastrophe Nycavri Blue

	Lexicon: party in nycavri's system!
	Lexicon: I was going to let it sit there a round, but that would just be mean. :)

Took me a while to get the hang of homeworlds.  And I'm still relatively bad at it. But it's the most popular game here, so there are no shortage of learning experiences...


7636)
Variants: "Hard time"
Started: 2007.5.4, Ended: 2007.6.9
Participants: jbj77 (S), dsheldon (N)
Winner: dsheldon

1) dsheldon: Homeworld B2 Y1 G3

2) jbj77: Homeworld B1 Y3 G3

3) dsheldon: Build G1 Dsheldon

4) jbj77: Build G1 Jbj77

5) dsheldon: Build G1 Dsheldon

6) jbj77: Build G2 Jbj77

7) dsheldon: Discover G1 Dsheldon Y3 Jerome

8) jbj77: Discover G2 Jbj77 Y2 Alpha

9) dsheldon: Trade G1 Y1 Dsheldon

10) jbj77: Trade G1 Y1 Jbj77

11) dsheldon: Discover Y1 Dsheldon B3 Hope

12) jbj77: Build Y2 Jbj77

13) dsheldon: Build G1 Dsheldon

14) jbj77: Discover Y2 Jbj77 G2 Beta

15) dsheldon: Trade G1 R1 Dsheldon

16) jbj77: Build Y2 Beta

17) dsheldon: Build G1 Dsheldon
	dsheldon: Somehow I have completely bungled my opening...

18) jbj77: Trade Y1 R1 Jbj77

19) dsheldon: Move G1 Dsheldon Hope

20) jbj77: Discover Y2 Beta G3 Gamma

21) dsheldon: Build G1 Dsheldon

22) jbj77: Build G2 Jbj77

23) dsheldon: Sacrifice G3 Dsheldon
Build G3 Dsheldon
Build Y1 Hope
Build Y3 Hope

24) jbj77: Move Y2 Beta Hope
Catastrophe Hope Yellow

25) dsheldon: Build G2 Hope

26) jbj77: Sacrifice G3 Jbj77
Build R1 Jbj77
Build R2 Jbj77
Build G3 Jbj77

27) dsheldon: Sacrifice G3 Dsheldon
Build G3 Dsheldon
Build R2 Dsheldon
Build R2 Dsheldon
	dsheldon: I should have mentioned that I was going to be out of town Wednesday and Thursday.  I'm back now!

	dsheldon: I like that plan...


7613)
Started: 2007.5.5, Ended: 2007.6.3
Participants: MikeYarrum (S), sordros (N)
Winner: sordros

1) sordros: Homeworld Y1 B2 G3

2) MikeYarrum: Homeworld B3 R2 G3

3) sordros: Build G1 Sordros

4) MikeYarrum: Build G1 Mikeyarrum

5) sordros: Trade G1 Y1 Sordros

6) MikeYarrum: Trade G1 Y1 Mikeyarrum

7) sordros: Discover Y1 Sordros G3 Verdolaga

8) MikeYarrum: Build Y2 Mikeyarrum

9) sordros: Build Y2 Verdolaga

10) MikeYarrum: Discover Y2 Mikeyarrum G1 Osaka

11) sordros: Build G1 Sordros

12) MikeYarrum: Build Y2 Osaka

13) sordros: Discover Y2 Verdolaga B1 Bluemoon

14) MikeYarrum: Build Y3 Mikeyarrum

15) sordros: Build Y3 Verdolaga

16) MikeYarrum: Discover Y2 Osaka Y3 Sakaki

17) sordros: Trade G1 B1 Sordros

18) MikeYarrum: Build G1 Mikeyarrum

19) sordros: Build B1 Sordros

20) MikeYarrum: Trade G1 R1 Mikeyarrum

21) sordros: Trade B1 R1 Sordros

22) MikeYarrum: Build G1 Mikeyarrum

23) sordros: Build B1 Sordros

24) MikeYarrum: Move G1 Mikeyarrum Osaka

25) sordros: Move B1 Sordros Verdolaga

26) MikeYarrum: Move Y3 Mikeyarrum Bluemoon

27) sordros: Move Y3 Verdolaga Osaka

28) MikeYarrum: Move G1 Osaka Sakaki

29) sordros: Build B2 Verdolaga

30) MikeYarrum: Build G1 Mikeyarrum

31) sordros: Trade B2 G2 Verdolaga

32) MikeYarrum: Build G2 Sakaki

33) sordros: Build G2 Sordros

34) MikeYarrum: Move R1 Mikeyarrum Bluemoon

35) sordros: Sacrifice R1 Sordros
Attack R1 Bluemoon

36) MikeYarrum: Trade G1 R1 Mikeyarrum

37) sordros: Sacrifice R1 Bluemoon
Attack Y2 Osaka

38) MikeYarrum: Sacrifice R1 Mikeyarrum
Attack Y2 Bluemoon

39) sordros: Sacrifice G3 Sordros
Build B2 Verdolaga
Build B2 Verdolaga
Build B3 Sordros

40) MikeYarrum: Trade Y2 R2 Bluemoon

41) sordros: Sacrifice B2 Verdolaga
Trade B2 R2 Verdolaga
Trade B3 R3 Sordros

42) MikeYarrum: Build Y2 Mikeyarrum

43) sordros: Build B2 Verdolaga

44) MikeYarrum: Move G1 Sakaki Bluemoon

45) sordros: Move B1 Verdolaga Osaka

46) MikeYarrum: Build R1 Bluemoon

47) sordros: Build R1 Sordros

48) MikeYarrum: Move R1 Bluemoon Sakaki

49) sordros: Trade R3 G3 Sordros

50) MikeYarrum: Move G2 Sakaki Sordros

51) sordros: Sacrifice G3 Sordros
Build B2 Verdolaga
Build B3 Sordros
Build B3 Osaka

52) MikeYarrum: Sacrifice R2 Bluemoon
Attack B1 Sordros
Attack G2 Sordros

53) sordros: Sacrifice R2 Verdolaga
Attack B1 Sordros
Attack G2 Sordros

54) MikeYarrum: Sacrifice R1 Sakaki
Attack R1 Sordros

55) sordros: Trade B3 R3 Sordros

56) MikeYarrum: Sacrifice G2 Sordros
Build R1 Sordros
Build R1 Sordros
Catastrophe Sordros Red

57) sordros: Build B3 Sordros

58) MikeYarrum: Trade Y1 R1 Mikeyarrum

59) sordros: Trade B3 R3 Sordros

60) MikeYarrum: Move R1 Mikeyarrum Bluemoon

61) sordros: Sacrifice Y2 Osaka
Move Y3 Osaka Mikeyarrum
Move B3 Osaka Mikeyarrum

62) MikeYarrum: Sacrifice Y3 Bluemoon
Move G1 Bluemoon Mikeyarrum
Move R1 Bluemoon Mikeyarrum
Move Y2 Sakaki Sordros

63) sordros: Attack G3 Mikeyarrum

	sordros: Thanks for the game
	MikeYarrum: My pleasure.


7641)
Started: 2007.5.6, Ended: 2007.5.18
Participants: MatrixFrog (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B1 Y2 G3

2) MatrixFrog: Homeworld G2 B3 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) MatrixFrog: Build Y1 Matrixfrog

5) MikeYarrum: Build G1 Mikeyarrum

6) MatrixFrog: Trade Y3 G3 Matrixfrog

7) MikeYarrum: Trade G1 Y1 Mikeyarrum

8) MatrixFrog: Build G1 Matrixfrog

9) MikeYarrum: Trade G3 Y3 Mikeyarrum

10) MatrixFrog: Discover G1 Matrixfrog B1 Grape

11) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi

12) MatrixFrog: Build G1 Matrixfrog

13) MikeYarrum: Build G2 Mikeyarrum

14) MatrixFrog: Sacrifice G3 Matrixfrog
Build G2 Grape
Build G3 Matrixfrog
Build G3 Grape

15) MikeYarrum: Sacrifice Y3 Mikeyarrum
Move G1 Mikeyarrum Yomi
Move G1 Yomi Grape
Move G1 Grape Matrixfrog
Catastrophe Matrixfrog Green

16) MatrixFrog: Sacrifice G1 Grape
Build Y1 Matrixfrog
	MatrixFrog: Yeah, that was stupid.

17) MikeYarrum: Build Y2 Yomi

18) MatrixFrog: Build G1 Grape
	MikeYarrum: Well, it did leave you the advantage in ships.

19) MikeYarrum: Build G1 Mikeyarrum

20) MatrixFrog: Sacrifice Y1 Matrixfrog
Move G3 Grape Matrixfrog

21) MikeYarrum: Trade G1 R1 Mikeyarrum

22) MatrixFrog: Build G1 Matrixfrog

23) MikeYarrum: Build R1 Mikeyarrum

24) MatrixFrog: Build Y1 Matrixfrog

25) MikeYarrum: Build G1 Mikeyarrum

26) MatrixFrog: Move Y1 Matrixfrog Grape

27) MikeYarrum: Trade G2 Y2 Mikeyarrum

28) MatrixFrog: Build Y3 Matrixfrog

29) MikeYarrum: Build G2 Mikeyarrum

30) MatrixFrog: Move Y3 Matrixfrog Mikeyarrum

31) MikeYarrum: Move Y2 Yomi Grape

32) MatrixFrog: Sacrifice G1 Grape
Build Y3 Mikeyarrum
Catastrophe Mikeyarrum Y

33) MikeYarrum: Sacrifice R1 Mikeyarrum
Attack G2 Grape

34) MatrixFrog: Move Y1 Grape Matrixfrog

35) MikeYarrum: Build G1 Grape

36) MatrixFrog: Trade Y1 R1 Matrixfrog

37) MikeYarrum: Move G1 Grape Matrixfrog

38) MatrixFrog: Move G3 Matrixfrog Mikeyarrum

39) MikeYarrum: Sacrifice Y2 Grape
Move G1 Matrixfrog Mikeyarrum
Move Y1 Yomi Mikeyarrum
Catastrophe Mikeyarrum Green

40) MatrixFrog: Build G1 Matrixfrog
	MikeYarrum: I was wondering when you'd finally hit me with that ship.

41) MikeYarrum: Build G1 Grape

42) MatrixFrog: Build R1 Matrixfrog

43) MikeYarrum: Trade G1 Y1 Grape

44) MatrixFrog: Build Y2 Matrixfrog

45) MikeYarrum: Build Y2 Grape

46) MatrixFrog: Trade Y2 R2 Matrixfrog

47) MikeYarrum: Move R1 Mikeyarrum Matrixfrog
Catastrophe Matrixfrog Red

48) MatrixFrog: Move Y1 Matrixfrog Mikeyarrum

49) MikeYarrum: Move G2 Grape Matrixfrog

50) MatrixFrog: Sacrifice G1 Matrixfrog
Build Y2 Mikeyarrum

51) MikeYarrum: Trade G2 R2 Matrixfrog

52) MatrixFrog: Build G1 Matrixfrog

53) MikeYarrum: Attack G1 Matrixfrog
	MatrixFrog: Good game.
	MatrixFrog: Ack. Nevermind.

54) MatrixFrog: Move Y2 Mikeyarrum Matrixfrog

55) MikeYarrum: Attack Y2 Matrixfrog

56) MatrixFrog: Move Y1 Mikeyarrum Matrixfrog

57) MikeYarrum: Attack G1 Matrixfrog

	MikeYarrum: Thanks for the game - I was pretty nervous for awhile.


7649)
Started: 2007.5.6, Ended: 2007.5.27
Participants: MikeYarrum (S), rkalajian (N)
Winner: MikeYarrum

1) rkalajian: Homeworld G3 B2 Y3

2) MikeYarrum: Homeworld B1 Y2 G3

3) rkalajian: Build Y1N Rkalajian

4) MikeYarrum: Build G1 Mikeyarrum

5) rkalajian: Discover Y1 Rkalajian R1 Redstarsystem

6) MikeYarrum: Trade G1 Y1 Mikeyarrum

7) rkalajian: Build Y1N Rkalajian

8) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi

9) rkalajian: Trade Y1 G1 Rkalajian

10) MikeYarrum: Build G1 Mikeyarrum

11) rkalajian: Move G1 Rkalajian Redstarsystem

12) MikeYarrum: Trade G1 R1 Mikeyarrum

13) rkalajian: Build Y1 Rkalajian

14) MikeYarrum: Build Y2 Yomi

15) rkalajian: Build Y2 Redstarsystem

16) MikeYarrum: Discover Y1 Yomi G1 Tomo

17) rkalajian: Trade Y1 B1 Rkalajian

18) MikeYarrum: Build R1 Mikeyarrum

19) rkalajian: Discover Y1 Redstarsystem B3 Bluestarsystem

20) MikeYarrum: Build R2 Mikeyarrum

21) rkalajian: Build Y1N Rkalajian

22) MikeYarrum: Build Y3 Yomi

23) rkalajian: Trade Y3 R3 Rkalajian

24) MikeYarrum: Build Y3 Tomo

25) rkalajian: Build R2 Rkalajian

26) MikeYarrum: Discover R1 Mikeyarrum Y3 Sakaki

27) rkalajian: Move R2 Rkalajian Redstarsystem

28) MikeYarrum: Trade R1 B1 Mikeyarrum

29) rkalajian: Move G1 Redstarsystem Bluestarsystem

30) MikeYarrum: Build B2 Mikeyarrum

31) rkalajian: Build B2N Rkalajian

32) MikeYarrum: Move B1 Mikeyarrum Yomi

33) rkalajian: Move B2 Rkalajian Redstarsystem

34) MikeYarrum: Build B3 Yomi

35) rkalajian: Build G1 Bluestarsystem

36) MikeYarrum: Move B3 Yomi Tomo

37) rkalajian: Build G2 Bluestarsystem

38) MikeYarrum: Build B3 Tomo

39) rkalajian: Move R2 Redstarsystem Bluestarsystem

40) MikeYarrum: Trade B3 R3 Tomo
	MikeYarrum: You should probably take that move back. Any player can cause a catastrophe if there are four or more pieces of any single color in a system (right now, I could take all of your green pieces in blueStarsystem without even doing anything).

41) rkalajian: Move G1 Bluestarsystem Redstarsystem
	rkalajian: Thanks for the heads up

42) MikeYarrum: Build B3 Tomo

43) rkalajian: Build G2 Bluestarsystem

44) MikeYarrum: Move R3 Tomo Bluestarsystem

45) rkalajian: Build G2 Redstarsystem

46) MikeYarrum: Attack R2 Bluestarsystem

47) rkalajian: Build R1 Rkalajian

48) MikeYarrum: Attack Y1 Bluestarsystem

49) rkalajian: Trade G2 R2 Bluestarsystem

50) MikeYarrum: Move R3 Bluestarsystem Redstarsystem

51) rkalajian: Attack R2 Bluestarsystem

52) MikeYarrum: Attack B2 Redstarsystem

53) rkalajian: Build R3 Bluestarsystem

54) MikeYarrum: Sacrifice Y2 Yomi
Move R1 Sakaki Tomo
Move R1 Tomo Bluestarsystem
Catastrophe Bluestarsystem Red

55) rkalajian: Build G2 Bluestarsystem

56) MikeYarrum: Attack G2 Redstarsystem

57) rkalajian: Move Y2 Redstarsystem Bluestarsystem

58) MikeYarrum: Attack G1 Redstarsystem

59) rkalajian: Trade G2 R2 Bluestarsystem

60) MikeYarrum: Trade B3 R3 Tomo

61) rkalajian: Attack Y1 Bluestarsystem

62) MikeYarrum: Build B3 Redstarsystem

63) rkalajian: Build Y2 Rkalajian

64) MikeYarrum: Sacrifice Y3 Tomo
Move G2 Redstarsystem Rkalajian
Move G1 Redstarsystem Rkalajian
Move R3 Redstarsystem Rkalajian

65) rkalajian: Attack R3 Rkalajian

66) MikeYarrum: Trade G1 R1 Rkalajian
Catastrophe Rkalajian Red

67) rkalajian: Build Y3 Rkalajian

68) MikeYarrum: Move Y1 Tomo Rkalajian
Catastrophe Rkalajian Yellow

69) rkalajian: Move G2 Bluestarsystem Redstarsystem

70) MikeYarrum: Sacrifice R2 Mikeyarrum
Attack B1 Rkalajian
Pass
	rkalajian: Guess my first game isn't going so well :)

	MikeYarrum: It's to be expected. There are a lot of good players on this site. But I'm sure you'll pick it up pretty quickly. =D
	MikeYarrum: Thanks for playing!
	rkalajian: Thanks for the game!


7668)
Variants: "Hard time"
Started: 2007.5.7, Ended: 2007.6.20
Participants: antihero (S), mneme (N)
Winner: antihero

1) mneme: Homeworld R1 B2 G3

2) antihero: Homeworld B2 Y3 G3

3) mneme: Build G1 Mneme

4) antihero: Build G1 Antihero

5) mneme: Trade G1 Y1 Mneme

6) antihero: Trade G1 Y1 Antihero

7) mneme: Build G1 Mneme

8) antihero: Build G1 Antihero

9) mneme: Discover G1 Mneme Y3 Alpha

10) antihero: Trade G1 R1 Antihero

11) mneme: Build G1 Mneme

12) antihero: Build R1 Antihero

13) mneme: Build Y1 Mneme

14) antihero: Build Y2 Antihero

15) mneme: Discover G1 Mneme Y3 Beta

16) antihero: Discover Y1 Antihero B1 Switch

17) mneme: Discover Y1 Mneme B3 Artist

18) antihero: Build R2 Antihero

19) mneme: Build Y2 Mneme

20) antihero: Move R2 Antihero Switch

21) mneme: Trade Y2 R2 Mneme

22) antihero: Move R1 Antihero Switch

23) mneme: Move R2 Mneme Beta

24) antihero: Trade R1 G1 Switch

25) mneme: Build G2 Mneme

26) antihero: Build Y2 Switch

27) mneme: Sacrifice G2 Mneme
Build G2 Alpha
Build Y2 Artist

28) antihero: Build R1 Switch

29) mneme: Sacrifice G1 Alpha
Build G1 Mneme

30) antihero: Move Y2 Switch Alpha

31) mneme: Sacrifice R2 Beta
Attack Y2 Alpha
Pass

32) antihero: Move R1 Switch Beta

33) mneme: Build G2 Beta

34) antihero: Move R2 Switch Alpha

35) mneme: Trade Y2 R2 Artist

36) antihero: Sacrifice G3 Antihero
Build R2 Beta
Build R3 Antihero
Build R3 Alpha

37) mneme: Sacrifice G2 Alpha
Build Y2 Artist
Build R3 Artist

38) antihero: Sacrifice R2 Alpha
Attack Y2 Alpha
Attack G2 Beta

39) mneme: Sacrifice G3 Mneme
Build G2 Beta
Build G2 Beta
Build G3 Mneme
Catastrophe Beta G

40) antihero: Trade R3 G3 Antihero

41) mneme: Trade R2 G2 Artist

42) antihero: Sacrifice Y2 Alpha
Move R1 Beta Mneme
Move R2 Beta Mneme

43) mneme: Sacrifice R3 Artist
Attack R2 Mneme
Attack R1 Mneme
Pass

44) antihero: Move R1 Antihero Switch

45) mneme: Move R2 Mneme Artist

46) antihero: Build R2 Switch

47) mneme: Build G1 Artist

48) antihero: Build G2 Switch

49) mneme: Sacrifice G2 Artist
Build Y2 Artist
Build Y3 Mneme

50) antihero: Move Y1 Switch Artist
Catastrophe Artist Y

51) mneme: Build G2 Artist

52) antihero: Discover R3 Alpha Y2 Sigmund

53) mneme: Move Y1 Mneme Artist

54) antihero: Move R3 Sigmund Artist

55) mneme: Sacrifice G3 Mneme
Build R2 Artist
Build R3 Artist
Build R3 Mneme
Catastrophe Artist R

56) antihero: Sacrifice Y2 Antihero
Discover R1 Switch B3 Wormhole
Move R1 Wormhole Mneme
Catastrophe Mneme R

57) mneme: Trade G2 R2 Artist

58) antihero: Build G2 Antihero

59) mneme: Build G2 Artist
	antihero: nice! (for you, not for me) :)

60) antihero: Trade G1 Y1 Switch
	mneme: I managed to even-up, anyway.  It's not amazing when I have to force a catastrophe in my own system to do it, though (but better than staying behind)

61) mneme: Trade G1 B1 Artist

62) antihero: Build G1 Switch

63) mneme: Build G1 Artist

64) antihero: Trade G1 B1 Switch

65) mneme: Discover G2 Artist Y1 Trucker

66) antihero: Trade G2 R2 Antihero

67) mneme: Build Y2 Mneme

68) antihero: Build Y2 Switch

69) mneme: Discover Y2 Mneme G3 Cookie

70) antihero: Discover Y1 Switch G3 Toy

71) mneme: Sacrifice G2 Trucker
Build G1 Mneme
Build G2 Artist

72) antihero: Move G2 Switch Mneme

73) mneme: Build G2 Mneme
Catastrophe Mneme G

74) antihero: Move B1 Switch Toy

75) mneme: Build R1 Artist

76) antihero: Build B2 Toy

77) mneme: Discover B1 Artist G1 Piper

78) antihero: Discover B2 Toy G1 Another

79) mneme: Build B3 Piper

80) antihero: Build B3 Toy

81) mneme: Trade B1 Y1 Piper

82) antihero: Sacrifice Y2 Switch
Move B2 Another Mneme
Move B1 Toy Mneme

	mneme: nicely done!
	antihero: Thanks! That was a good game for sure.


7653)
Started: 2007.5.10, Ended: 2007.6.12
Participants: nycavri (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B1 Y2 G3

2) nycavri: Homeworld Y2 B3 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) nycavri: Build G1 Nycavri

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) nycavri: Build G1 Nycavri

7) MikeYarrum: Build Y1 Mikeyarrum

8) nycavri: Trade G3 Y3 Nycavri

9) MikeYarrum: Trade Y1 B1 Mikeyarrum

10) nycavri: Discover G1 Nycavri Y1 Taylor

11) MikeYarrum: Build B1 Mikeyarrum

12) nycavri: Build G1 Taylor

13) MikeYarrum: Build G2 Mikeyarrum

14) nycavri: Build G2 Nycavri

15) MikeYarrum: Discover B1 Mikeyarrum G3 Yomi

16) nycavri: Trade G2 B2 Nycavri

17) MikeYarrum: Build B2 Yomi

18) nycavri: Discover G1 Taylor Y3 Mercury

19) MikeYarrum: Build B2 Yomi

20) nycavri: Build B3 Nycavri

21) MikeYarrum: Discover B1 Mikeyarrum G3 Kagura

22) nycavri: Move B2 Nycavri Taylor

23) MikeYarrum: Sacrifice Y1 Mikeyarrum
Discover B2 Yomi Y1 Tomo

24) nycavri: Trade B3 R3 Nycavri

25) MikeYarrum: Sacrifice G2 Mikeyarrum
Build B3 Tomo
Build B3 Kagura

26) nycavri: Move G1 Mercury Mikeyarrum

27) MikeYarrum: Sacrifice B2 Yomi
Trade B3 Y3 Kagura
Trade B3 R3 Tomo

28) nycavri: Build G2 Mikeyarrum

29) MikeYarrum: Trade G3 R3 Mikeyarrum

30) nycavri: Sacrifice B2 Taylor
Trade G1 R1 Mikeyarrum
Trade G2 R2 Mikeyarrum

31) MikeYarrum: Trade R3 G3 Mikeyarrum

32) nycavri: Trade R1 G1 Mikeyarrum

33) MikeYarrum: Build B2 Yomi

34) nycavri: Trade R2 B2 Mikeyarrum

35) MikeYarrum: Move B1 Kagura Taylor

36) nycavri: Build G2 Mikeyarrum

37) MikeYarrum: Trade G3 R3 Mikeyarrum

38) nycavri: Build B3 Mikeyarrum

39) MikeYarrum: Sacrifice R3 Tomo
Attack B3 Mikeyarrum
Attack G2 Mikeyarrum
Attack B2 Mikeyarrum

40) nycavri: Build G2 Taylor

41) MikeYarrum: Trade B3 Y3 Mikeyarrum

42) nycavri: Build G2 Mikeyarrum

43) MikeYarrum: Discover G2 Mikeyarrum B3 Nyamo

44) nycavri: Build G3 Nycavri

45) MikeYarrum: Attack G2 Mikeyarrum

46) nycavri: Sacrifice G3 Nycavri
Build G3 Nycavri
Build R1 Nycavri
Build R1 Nycavri

47) MikeYarrum: Trade B1 R1 Taylor

48) nycavri: Trade G1 B1 Mikeyarrum

49) MikeYarrum: Move B2 Mikeyarrum Kagura

50) nycavri: Move G3 Nycavri Tomo

51) MikeYarrum: Move R1 Taylor Nycavri
Catastrophe Nycavri Red

52) nycavri: Build G1 Nycavri

53) MikeYarrum: Build B3 Kagura

54) nycavri: Trade G1 R1 Nycavri

55) MikeYarrum: Trade B3 R3 Kagura

56) nycavri: Sacrifice R1 Nycavri
Attack B2 Tomo

57) MikeYarrum: Build B3 Kagura

58) nycavri: Trade B1 Y1 Mikeyarrum

59) MikeYarrum: Attack Y1 Mikeyarrum

60) nycavri: Sacrifice B2 Tomo
Trade G2 Y2 Taylor
Trade G1 B1 Taylor

61) MikeYarrum: Move R3 Kagura Tomo

62) nycavri: Discover Y2 Taylor R3 Edney

63) MikeYarrum: Attack G3 Tomo

64) nycavri: Move Y2 Edney Mikeyarrum
Catastrophe Mikeyarrum Y

65) MikeYarrum: Move G3 Tomo Nycavri

66) nycavri: Trade G1 R1 Nycavri
	nycavri: Forgot to pull the trigger!
	MikeYarrum: I was wondering if you'd try that.

67) MikeYarrum: Sacrifice R3 Tomo
Attack Y3 Nycavri
Attack R1 Nycavri
Pass

	MikeYarrum: Thank you for the game!
	nycavri: And you!


7695)
Started: 2007.5.10, Ended: 2007.5.14
Participants: MikeYarrum (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) MikeYarrum: Homeworld B1 G2 Y3

3) zoltar: Build G1 Zoltar

4) MikeYarrum: Build Y1 Mikeyarrum

5) zoltar: Trade G1 Y1 Zoltar

6) MikeYarrum: Trade Y1 G1 Mikeyarrum

7) zoltar: Build G1 Zoltar

8) MikeYarrum: Build Y1 Mikeyarrum

9) zoltar: Trade G1 R1 Zoltar

10) MikeYarrum: Build G1 Mikeyarrum

11) zoltar: Build G1 Zoltar

12) MikeYarrum: Trade G1 R1 Mikeyarrum

13) zoltar: Trade G1 B1 Zoltar

14) MikeYarrum: Build G1 Mikeyarrum
	MikeYarrum: This always seems to happen with us - both trying not to take the last smallest piece and give the opponent the first bigger one.

15) zoltar: Discover B1 Zoltar G1 Greendale

16) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

17) zoltar: Build G2 Zoltar

18) MikeYarrum: Build R1 Mikeyarrum

19) zoltar: Discover G2 Zoltar Y1 Yellowstone

20) MikeYarrum: Build Y2 Mikeyarrum

21) zoltar: Build Y2 Zoltar

22) MikeYarrum: Build R2 Mikeyarrum

23) zoltar: Move R1 Zoltar Greendale

24) MikeYarrum: Discover R1 Mikeyarrum G3 Yomi

25) zoltar: Move Y1 Zoltar Greendale

26) MikeYarrum: Move Y1 Mikeyarrum Yomi

27) zoltar: Build R2 Greendale

28) MikeYarrum: Move R2 Mikeyarrum Sakaki

29) zoltar: Move R2 Greendale Yomi

30) MikeYarrum: Move R2 Sakaki Greendale

31) zoltar: Sacrifice G2 Yellowstone
Build R2 Yomi
Build R3 Greendale

32) MikeYarrum: Build R3 Greendale
Catastrophe Greendale Red

33) zoltar: Sacrifice R2 Yomi
Attack R1 Yomi
Attack Y1 Yomi
	zoltar: Kaboom!  

34) MikeYarrum: Build G2 Sakaki

35) zoltar: Build G2 Zoltar

36) MikeYarrum: Build G3 Mikeyarrum

37) zoltar: Sacrifice G3 Zoltar
Build Y1 Yomi
Build Y2 Greendale
Build Y3 Zoltar

38) MikeYarrum: Build R1 Mikeyarrum

39) zoltar: Build G3 Zoltar

40) MikeYarrum: Discover G2 Sakaki B1 Tomo

41) zoltar: Sacrifice Y2 Greendale
Move Y1 Yomi Mikeyarrum
Move Y1 Yomi Mikeyarrum
Catastrophe Mikeyarrum Y

42) MikeYarrum: Move G1 Sakaki Tomo

43) zoltar: Sacrifice Y3 Zoltar
Move G2 Zoltar Greendale
Move G2 Greendale Yomi
Move G2 Yomi Mikeyarrum
Catastrophe Mikeyarrum G

44) MikeYarrum: Trade G1 Y1 Tomo

45) zoltar: Sacrifice Y2 Zoltar
Move R1 Yomi Mikeyarrum
Move R2 Yomi Mikeyarrum
Catastrophe Mikeyarrum R
	zoltar: Well, that one went from a close game to armageddon in 3 moves!



7728)
Started: 2007.5.13, Ended: 2007.5.22
Participants: zoltar (S), ts52 (N)
Winner: zoltar

1) ts52: Homeworld Y1 G2 B3

2) zoltar: Homeworld B3 Y2 G3
	ts52: Have a great game!

3) ts52: Build B1 Ts52

4) zoltar: Build G1 Zoltar

5) ts52: Trade B1 Y1 Ts52

6) zoltar: Trade G1 Y1 Zoltar

7) ts52: Build Y2 Ts52

8) zoltar: Build Y2 Zoltar

9) ts52: Discover Y2 Ts52 G3 Frogstar

10) zoltar: Trade Y1 R1 Zoltar

11) ts52: Trade Y1 R1 Ts52

12) zoltar: Discover Y2 Zoltar G1 Greenpea

13) ts52: Build B1 Ts52

14) zoltar: Build G1 Zoltar

15) ts52: Trade B1 G1 Ts52

16) zoltar: Discover G1 Zoltar Y1 Yellowjacket

17) ts52: Discover G1 Ts52 Y3 Crikket

18) zoltar: Build G2 Zoltar

19) ts52: Build B1 Ts52

20) zoltar: Trade G2 B2 Zoltar

21) ts52: Move B1 Ts52 Crikket

22) zoltar: Move B2 Zoltar Yellowjacket

23) ts52: Build B1 Ts52

24) zoltar: Build G2 Zoltar

25) ts52: Build G2 Crikket

26) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Yellowjacket
Build B1 Yellowjacket

27) ts52: Sacrifice Y2 Frogstar
Move G1 Crikket Yellowjacket
Move G2 Crikket Yellowjacket
Catastrophe Yellowjacket Green

28) zoltar: Discover B1 Yellowjacket G3 Greenland

29) ts52: Trade B1 G1 Crikket

30) zoltar: Build B1 Greenland

31) ts52: Trade B1 G1 Ts52

32) zoltar: Trade B1 Y1 Greenland

33) ts52: Build B1 Ts52

34) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenland
Build Y3 Greenland
Build Y3 Greenpea

35) ts52: Build G2 Crikket
	ts52: Aw man, here we go again... how did I not see that coming??

	ts52: (ie, well played, I am an idiot that doesn't learn. ;) )

36) zoltar: Sacrifice B2 Yellowjacket
Trade Y3 G3 Greenland
Trade Y3 G3 Greenpea
	zoltar: sacrifices are the hardest moves to see in Homeworlds.  When I play Jesse or TwoShort, sometimes I'm lost after about 10 moves, as they will make sacrificing combos that are devastating and that I don't see coming even though I've gotten pretty good at the game.

37) ts52: Trade B1 Y1 Ts52

38) zoltar: Sacrifice G3 Greenland
Build G3 Zoltar
Build Y3 Greenpea
Build Y3 Greenpea

39) ts52: Discover Y1 Ts52 B3 Grover

40) zoltar: Move Y2 Greenpea Grover

41) ts52: Discover Y1 Grover B2 Gonzo

42) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Greenland
Build B1 Greenland

43) ts52: Trade B3 R3 Ts52

44) zoltar: Trade B1 R1 Greenland

45) ts52: Move G1 Crikket Gonzo

46) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Zoltar
Build R2 Greenland

47) ts52: Discover R1 Ts52 B3 Grape

48) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Greenland
Build R3 Zoltar

49) ts52: Sacrifice G2 Crikket
Build G2 Gonzo
Build Y3 Gonzo

50) zoltar: Sacrifice Y3 Greenpea
Move Y2 Grover Gonzo
Move Y1 Greenland Gonzo
Move R1 Greenland Ts52
Catastrophe Gonzo Y

51) ts52: Trade G2 Y2 Gonzo

52) zoltar: Build R3 Ts52

53) ts52: Attack R3S Ts52

54) zoltar: Sacrifice Y3 Greenpea
Move R2 Greenland Ts52
Move G3 Greenpea Greenland
Move G3 Greenland Ts52
Catastrophe Ts52 R

55) ts52: Sacrifice Y2 Gonzo
Discover R1 Grape G1 Pebble
Move R1 Pebble Zoltar
Catastrophe Zoltar Red
	ts52: Thanks for another good game.

56) zoltar: Sacrifice G3 Zoltar
Build B1 Greenland
Build B2 Greenland
Build G1 Ts52
Catastrophe Greenland B
Catastrophe Ts52 G
	zoltar: Same to you as well.



7723)
Variants: "Hard time"
Started: 2007.5.13, Ended: 2007.6.6
Participants: zoltar (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3

2) zoltar: Homeworld B3 Y2 G3
	Jesse: Hey, Zoltar.  Have a good game.

3) Jesse: Build G1 Jesse
	zoltar: You as well!

4) zoltar: Build G1 Zoltar

5) Jesse: Trade G1 Y1 Jesse

6) zoltar: Trade G1 Y1 Zoltar

7) Jesse: Build G1 Jesse

8) zoltar: Build G1 Zoltar

9) Jesse: Build Y1 Jesse

10) zoltar: Build Y2 Zoltar

11) Jesse: Discover Y1 Jesse G2 Goedel

12) zoltar: Trade Y1 R1 Zoltar

13) Jesse: Build Y1 Jesse

14) zoltar: Discover Y2 Zoltar G1 Greenpea

15) Jesse: Discover Y1 Jesse B2 Leibniz
	Jesse: Ack.  Think "Jesse", type "Goedel".  :P

16) zoltar: Build G2 Zoltar

17) Jesse: Sacrifice G3 Jesse
Build Y2 Goedel
Build Y3 Leibniz
Build Y3 Jesse

18) zoltar: Build Y3 Greenpea

19) Jesse: Trade Y3 G3 Jesse

20) zoltar: Trade G3 Y3 Zoltar

21) Jesse: Sacrifice Y2 Goedel
Move Y1 Goedel Greenpea
Move Y1 Leibniz Greenpea
Catastrophe Greenpea Y

22) zoltar: Sacrifice G2 Zoltar
Build R1 Zoltar
Build R2 Zoltar
	zoltar: I think I'm lost already. This is like playing TwoShort!

23) Jesse: Move G1 Jesse Leibniz

24) zoltar: Discover R2 Zoltar Y1 Yellowjacket
	Jesse: TwoShort's stomping me, in our current game, too.  He's a fearsome opponent.  Though I used to be the #1 around here before he came along, I can't say I mind the comparison.  :D  It's good to have some others rated in the same neighborhood, such as yourself, too.

25) Jesse: Trade Y3 R3 Leibniz

26) zoltar: Build R2 Zoltar

27) Jesse: Build G1 Jesse

28) zoltar: Build G2 Zoltar

29) Jesse: Build G2 Leibniz

30) zoltar: Discover G2 Zoltar B1 Blueberry

31) Jesse: Trade G1 Y1 Leibniz

32) zoltar: Build Y2 Zoltar

33) Jesse: Sacrifice G3 Jesse
Build Y2 Jesse
Build Y3 Jesse
Build Y3 Leibniz

34) zoltar: Sacrifice Y2 Zoltar
Discover R1 Zoltar G1 Greenpea
Move R1 Zoltar Blueberry

35) Jesse: Move Y3 Leibniz Blueberry

36) zoltar: Sacrifice G2 Blueberry
Build R2 Yellowjacket
Build R3 Zoltar

37) Jesse: Build Y2 Leibniz

38) zoltar: Build R3 Greenpea

39) Jesse: Build G2 Leibniz

40) zoltar: Move Y3 Zoltar Greenpea

41) Jesse: Move G2 Leibniz Blueberry

42) zoltar: Discover R2 Zoltar B1 Bluejay

43) Jesse: Build G2 Leibniz

44) zoltar: Build G3 Zoltar

45) Jesse: Build G3 Leibniz

46) zoltar: Move G1 Zoltar Yellowjacket

47) Jesse: Sacrifice G2 Leibniz
Build G2 Jesse
Build G3 Blueberry

48) zoltar: Sacrifice Y3 Greenpea
Move R2 Bluejay Leibniz
Move R3 Zoltar Blueberry
Move G3 Zoltar Blueberry

	zoltar: I can't find anything to do and think my position is lost, but I'll wait and come back to it again.
	zoltar: Yup, I'm toast in this one as well.  gg.
	Jesse: Interesting.  SDG allows you to commit suicide, which is technically illegal.  (Not that it matters.)  Good game.


7701)
Started: 2007.5.13, Ended: 2007.5.22
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld B2 Y1 G3

2) zoltar: Homeworld B3 R1 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build G1 Zoltar

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) zoltar: Trade G3 Y3 Zoltar

7) MikeYarrum: Build G1 Mikeyarrum

8) zoltar: Build G1 Zoltar

9) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

10) zoltar: Trade G1 R1 Zoltar

11) MikeYarrum: Build G1 Mikeyarrum

12) zoltar: Build G2 Zoltar

13) MikeYarrum: Build G2 Sakaki

14) zoltar: Discover G1 Zoltar Y2 Yellowstone

15) MikeYarrum: Trade G1 B1 Mikeyarrum

16) zoltar: Build G1 Yellowstone

17) MikeYarrum: Build B1 Mikeyarrum

18) zoltar: Discover G1 Yellowstone Y3 Cornflake

19) MikeYarrum: Trade B1 R1 Mikeyarrum
	zoltar: I see that you are bidding on the Ice Towers set on eBay -- I bought one on eBay last year. I bid on a Zendo set (which unlike Ice Towers has the Homeworlds colors) a couple of months ago but I was outbid -- it sold for an outrageous $60.
	MikeYarrum: Yep, I figured that I might as well give it a shot - not planning on winning it, though. I mostly wanted the Zendo set because I already have a full set of Xeno pieces.

20) zoltar: Build G2 Cornflake

21) MikeYarrum: Build R2 Mikeyarrum

22) zoltar: Build G3 Zoltar

23) MikeYarrum: Move R2 Mikeyarrum Sakaki

24) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Yellowstone
Build R2 Zoltar

25) MikeYarrum: Move B1 Mikeyarrum Sakaki

26) zoltar: Move R1 Zoltar Yellowstone

27) MikeYarrum: Build B1 Sakaki

28) zoltar: Discover R2 Zoltar Y2 Yellowjacket

29) MikeYarrum: Discover G2 Sakaki B2 Kaorin

30) zoltar: Sacrifice G3 Yellowstone
Build G3 Yellowstone
Build Y1 Zoltar
Build Y2 Zoltar

31) MikeYarrum: Build B1 Sakaki

32) zoltar: Move Y1 Zoltar Yellowstone

33) MikeYarrum: Move B1 Sakaki Kaorin

34) zoltar: Trade Y3 R3 Zoltar

35) MikeYarrum: Build B2 Sakaki

36) zoltar: Build Y3 Yellowstone

37) MikeYarrum: Build B3 Kaorin

38) zoltar: Sacrifice G3 Zoltar
Build R2 Zoltar
Build R3 Yellowjacket
Build R3 Yellowstone

39) MikeYarrum: Build G3 Sakaki

40) zoltar: Move G1 Cornflake Yellowjacket

41) MikeYarrum: Move Y1 Mikeyarrum Sakaki

42) zoltar: Discover Y1 Yellowstone B3 Bluemoon

43) MikeYarrum: Move R2 Sakaki Kaorin
	MikeYarrum: ... out of pieces? This situation is... new to me. I guess it means I've been getting better if I can hold out this long.

44) zoltar: Sacrifice G2 Cornflake
Build G2 Yellowjacket
Build Y3 Bluemoon
	zoltar: Yup, it's not that common, though with the extra red and yellow ships, I have quite the advantage, though it will probably take a while to win.

45) MikeYarrum: Move Y1 Sakaki Kaorin

46) zoltar: Move R2 Zoltar Yellowstone

47) MikeYarrum: Move B1 Kaorin Zoltar

48) zoltar: Attack B1 Zoltar

49) MikeYarrum: Move B1 Sakaki Kaorin

50) zoltar: Sacrifice Y3 Bluemoon
Move G1 Yellowjacket Sakaki
Move G1 Yellowstone Sakaki
Move B1 Zoltar Kaorin
Catastrophe Sakaki G
Catastrophe Kaorin B
	zoltar: very sneaky, but you forgot that your plan to blow up my blue star could backfire...

51) MikeYarrum: Trade B2 G2 Sakaki
	MikeYarrum: True, but it's not as if I had much of a choice. You kinda got me up against a wall, here.

52) zoltar: Sacrifice G3 Yellowstone
Build Y1 Bluemoon
Build Y3 Bluemoon
Build R2 Zoltar
	MikeYarrum: Inside joke, Kaorin and Sakaki are characters from a Japanese cartoon, and K has a crush on S, but usually finds herself thwarted in her romantic attempts. So having her get supernova'ed right next to Sakaki... meh, I guess you'd have to get the reference.
	zoltar: I see -- I'd never heard of the cartoon.

53) MikeYarrum: Build G1 Sakaki
	zoltar: Yep, there was not much you could do, but giving me the b1 sped things up.

54) zoltar: Move R3 Yellowstone Sakaki

55) MikeYarrum: Discover G2 Sakaki B2 Nyamo

56) zoltar: Sacrifice R2 Zoltar
Attack G1 Sakaki
Attack B1 Sakaki

57) MikeYarrum: Build G1 Nyamo

58) zoltar: Build R2 Sakaki

59) MikeYarrum: Build G1 Mikeyarrum

60) zoltar: Build G3 Sakaki

61) MikeYarrum: Trade G1 B1 Nyamo
	zoltar: Your last move in the multi-player game was great, as it forced me to sac to wipe out the Y3 before it could escape, destroying all Jesse's threats against you.  Of course, now you've turned me into  an 'Iran' having weakened Jesse enough and have left me with an extra 3-pip ship.  Now you have to build and try to get the two of us to fight while you get strong and ready to attack -- you can't wait too long, and if I attack Jesse you have to respond, not only to keep me from winning, but because I'll be weak and over-extended at the same time -- so build fast and get ready for a big 3-way showdown!

62) zoltar: Sacrifice Y3 Yellowstone
Move Y3 Bluemoon Mikeyarrum
Move G3 Sakaki Mikeyarrum
Move R3 Sakaki Mikeyarrum

63) MikeYarrum: Attack R3 Mikeyarrum
	zoltar: Oh that was silly -- I don't need any more big ships -- I can attack right now!


64) zoltar: Sacrifice R2 Yellowjacket
Attack R3 Mikeyarrum
Attack G3 Mikeyarrum

65) MikeYarrum: Sacrifice G2 Nyamo
Build G1 Mikeyarrum
Build R2 Mikeyarrum
Catastrophe Mikeyarrum Green

66) zoltar: Sacrifice Y3 Mikeyarrum
Move R3 Yellowjacket Sakaki
Move R2 Sakaki Mikeyarrum
Move R3 Sakaki Mikeyarrum
Catastrophe Mikeyarrum R



7734)
Started: 2007.5.16, Ended: 2007.5.20
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld B3 R2 G3

2) zoltar: Homeworld B1 Y3 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build G1 Zoltar

5) MikeYarrum: Trade G3 Y3 Mikeyarrum
	zoltar: Hey we have a chance to win the 4-player game.  Jesse almost won (due to my mistake of weakening sordros and not killing him) but sordros resigned just as Jesse was pouncing on him.  So I sacked my green to blow up Jesse's green (else he sacks his G3, rebuilds it in his homeworld plus two more free builds, probably an r2 and y2) and your last move puts you in a position to move two y1's into the sardros system and blow up the star and the Y3 which Jesse is about to capture, and which would give Jesse the game (I can't stop him from blowing you up if he gets that Y3 for free).  But now if we weaken him, I have a chance to win if I then go after Jesse, and you have a chance to win if you can recover and then attack me when I weaken myself to go after Jesse, so he no longer has a lock on the game as he did a move ago.  All in all, the two player version is still better, but this 4-player one has gotten interesting, now that we can stop Jesse from winning and weaken him so that I can attack him before he can move his troops to your homeworld.
	MikeYarrum: Oh, secret plans. I forgot he left himself open there.

Due to two resignations in my 4-player game with Cinnibar, it's now a Binary game with a lot of extra pieces. I guess I know how that can be...

6) zoltar: Trade G1 R1 Zoltar

7) MikeYarrum: Build Y1 Mikeyarrum
	zoltar: I just want to make sure you don't let Jesse have an overwhelming lead and steamroll you before I have a chance to attack him.  Besides not letting him have a third y3 ship (meaning he could do consecutive sacs and swarm your homeworld with nasty beasties and threaten multiple catastrophes), you need to move your y3 out of your homeworld: it is 1) a liability, as you have two yellow ships together and a sac could send two ships in and blow them up, and 2) it's an attacking piece, as an r2 can be sacked and capture two pieces wherever your y3 is present, and 3) you have good defence with a red star, plus at least one r2 that could be sacked to destroy two attackers, and the most stable castle (the b3 and y1) with all colors represented only once after the y3 is gone.  

8) zoltar: Build G1 Zoltar

9) MikeYarrum: Build Y1 Mikeyarrum

10) zoltar: Trade G1 Y1 Zoltar

11) MikeYarrum: Discover Y1 Mikeyarrum G1 Osaka

12) zoltar: Discover Y1 Zoltar G2 Greendale

13) MikeYarrum: Build Y2 Osaka

14) zoltar: Build Y2 Greendale
	zoltar: In my personal game with Jesse, I'm already lost after about 10 moves.  I'm no match for Jesse or TwoShort, and it's like I'm playing my first game when I'm up against them.

15) MikeYarrum: Trade Y1 R1 Mikeyarrum
	MikeYarrum: For a game that's not even ten years old, Homeworlds is surprisingly deep!

Right now, I'm in 24 SDG matches, and half are Homeworlds. I'm wondering if this is healthy...

16) zoltar: Discover Y1 Greendale G1 Greenbelt
	zoltar: I think it's good brain exercise.  In our four player game, I don't know why you moved you little y1 out and not your y3 as an extra 3-pip at home doesn't do more, and you could have moved your y3 right into rutabaga, where Jesse has an r1 and wants to build reds to then move in and blow up your red star.  So I suppose I'll have to move my y3 to rutabaga and stop him from amassing a red fleet at your border!

17) MikeYarrum: Build G2 Mikeyarrum

18) zoltar: Build Y1 Greenbelt

19) MikeYarrum: Trade G1 B1 Mikeyarrum

20) zoltar: Build Y2 Greenbelt

21) MikeYarrum: Discover Y1 Osaka G2 Chiyo

22) zoltar: Build Y3 Greendale

23) MikeYarrum: Discover G2 Mikeyarrum B1 Tomo

24) zoltar: Sacrifice Y3 Greendale
Move Y1 Greenbelt Mikeyarrum
Move Y1 Greenbelt Mikeyarrum
Move Y2 Greenbelt Mikeyarrum
Catastrophe Mikeyarrum Y

25) MikeYarrum: Build Y1 Osaka

26) zoltar: Build Y1 Greendale

27) MikeYarrum: Build Y2 Chiyo

28) zoltar: Discover Y2 Greendale G1 Greenbelt

29) MikeYarrum: Move Y1 Chiyo Tomo

30) zoltar: Build Y3 Greenbelt

31) MikeYarrum: Build Y3 Tomo

32) zoltar: Move Y3 Greenbelt Mikeyarrum

33) MikeYarrum: Sacrifice Y3 Tomo
Move Y1 Tomo Mikeyarrum
Move Y1 Osaka Mikeyarrum
Move Y2 Osaka Mikeyarrum
Catastrophe Mikeyarrum Yellow

34) zoltar: Move Y2 Greenbelt Mikeyarrum



7733)
Variants: "Hard time"
Started: 2007.5.16, Ended: 2007.5.29
Participants: Jesse (S), MikeYarrum (N)
Winner: Jesse

1) MikeYarrum: Homeworld B3 R2 G3

2) Jesse: Homeworld R3 B1 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) Jesse: Build G1 Jesse
	Jesse: Have a good game.

5) MikeYarrum: Trade G3 Y3 Mikeyarrum
	MikeYarrum: Thanks, you too.

6) Jesse: Trade G1 Y1 Jesse

7) MikeYarrum: Build Y1 Mikeyarrum

8) Jesse: Build Y1 Jesse

9) MikeYarrum: Build Y2 Mikeyarrum

10) Jesse: Build Y2 Jesse

11) MikeYarrum: Build G1 Mikeyarrum

12) Jesse: Discover Y2 Jesse G2 Blork

13) MikeYarrum: Discover Y2 Mikeyarrum B1 Tomo

14) Jesse: Build Y2 Jesse

15) MikeYarrum: Move G1 Mikeyarrum Tomo

16) Jesse: Trade Y1 R1 Jesse

17) MikeYarrum: Trade Y1 R1 Mikeyarrum

18) Jesse: Trade Y1 B1 Jesse

19) MikeYarrum: Move R1 Mikeyarrum Tomo

20) Jesse: Move B1 Jesse Blork

21) MikeYarrum: Build R1 Tomo

22) Jesse: Build B2 Blork

23) MikeYarrum: Build Y1 Mikeyarrum

24) Jesse: Discover B2 Blork G3 Glog

25) MikeYarrum: Discover R1 Tomo G2 Yomi
	MikeYarrum: Nice names.

26) Jesse: Move R1 Jesse Blork

27) MikeYarrum: Build R2 Yomi

28) Jesse: Build B2 Blork

29) MikeYarrum: Build Y1 Tomo

30) Jesse: Trade B2 G2 Blork

31) MikeYarrum: Trade Y2 B2 Tomo

32) Jesse: Build B2 Blork

33) MikeYarrum: Discover B2 Tomo G3 Nyamo

34) Jesse: Build B3 Glog

35) MikeYarrum: Build B3 Nyamo

36) Jesse: Sacrifice Y2 Blork
Move B1 Blork Nyamo
Move B2 Blork Nyamo
Catastrophe Nyamo B

37) MikeYarrum: Trade Y1 B1 Tomo

38) Jesse: Trade B3 Y3 Glog

39) MikeYarrum: Move Y1 Mikeyarrum Tomo

40) Jesse: Move Y3 Glog Yomi

41) MikeYarrum: Build Y1 Tomo

42) Jesse: Sacrifice R1 Blork
Attack R2 Yomi



7751)
Started: 2007.5.16, Ended: 2007.6.4
Participants: MikeYarrum (S), Lexicon (N)
Winner: MikeYarrum

1) Lexicon: Homeworld R1 B2 G3

2) MikeYarrum: Homeworld B3 R2 G3

3) Lexicon: Build G1 Lexicon

4) MikeYarrum: Build G1 Mikeyarrum

5) Lexicon: Trade G1 Y1 Lexicon

6) MikeYarrum: Trade G3 Y3 Mikeyarrum

7) Lexicon: Build Y1 Lexicon

8) MikeYarrum: Build G1 Mikeyarrum

9) Lexicon: Discover Y1 Lexicon G3 One

10) MikeYarrum: Discover G1 Mikeyarrum B1 Tomo

11) Lexicon: Build Y1 One

12) MikeYarrum: Build Y2 Mikeyarrum

13) Lexicon: Build Y2 Lexicon

14) MikeYarrum: Move Y2 Mikeyarrum Tomo

15) Lexicon: Discover Y1 One B2 Two

16) MikeYarrum: Trade G1 B1 Mikeyarrum

17) Lexicon: Build G1 Lexicon

18) MikeYarrum: Discover B1 Mikeyarrum G1 Osaka

19) Lexicon: Build Y2 One

20) MikeYarrum: Build Y3 Tomo

21) Lexicon: Sacrifice G1 Lexicon
Build Y3 Two

22) MikeYarrum: Trade Y2 R2 Tomo

23) Lexicon: Trade Y1 G1 Two

24) MikeYarrum: Build G2 Tomo

25) Lexicon: Build G2 Two

26) MikeYarrum: Build R1 Tomo

27) Lexicon: Trade G2 R2 Two
	Lexicon: To me, the global reserve stash appears to be empty.  This seems pretty weird.
	MikeYarrum: Me too.
	Aaron: Had a major permissions snafu the other day.  I missed this directory.  Fixed.
	Lexicon: Ack,  those can be tricky.  Thanks!

28) MikeYarrum: Discover G2 Tomo R3 Yukari

29) Lexicon: Discover G1 Two B1 Three

30) MikeYarrum: Build G2 Yukari

31) Lexicon: Build G2 Three

32) MikeYarrum: Build G3 Tomo

33) Lexicon: Trade Y2 B2 Lexicon

34) MikeYarrum: Build B3 Osaka

35) Lexicon: Trade G1 Y1 Three

36) MikeYarrum: Build Y2 Tomo

37) Lexicon: Sacrifice Y3 Two
Move Y1 Lexicon One
Move Y1 One Tomo
Move Y1 One Tomo
Catastrophe Tomo Yellow

38) MikeYarrum: Trade B3 Y3 Osaka

39) Lexicon: Build G1 Three

40) MikeYarrum: Build B3 Osaka

41) Lexicon: Move G1 Three Yukari

42) MikeYarrum: Move B3 Osaka One

43) Lexicon: Sacrifice G2 Three
Build G2 Yukari
Build Y1 Three
Catastrophe Yukari Green

44) MikeYarrum: Sacrifice R1 Tomo
Attack Y2 One

45) Lexicon: Trade Y1 G1 Three

46) MikeYarrum: Trade B3 R3 One

47) Lexicon: Build G2 Lexicon

48) MikeYarrum: Move R3 One Two

49) Lexicon: Sacrifice Y1 Three
Discover R2 Two Y1 Four

50) MikeYarrum: Build B3 Osaka

51) Lexicon: Sacrifice G3 Lexicon
Build G2 Three
Build G2 Three
Build G3 Lexicon

52) MikeYarrum: Sacrifice Y2 One
Move G1 Tomo Two
Move G1 Two Three
Catastrophe Three Green

53) Lexicon: Trade G2 Y2 Lexicon

54) MikeYarrum: Discover B3 Osaka Y3 Kagura

55) Lexicon: Move B2 Lexicon Kagura

56) MikeYarrum: Build Y1 Osaka

57) Lexicon: Discover B2 Kagura G1 Five

58) MikeYarrum: Sacrifice Y1 Osaka
Move R3 Two Five

59) Lexicon: Sacrifice B2 Five
Trade R2 G2 Four
Trade Y2 G2 Lexicon

60) MikeYarrum: Build B1 Osaka

61) Lexicon: Build G1 Four
	Lexicon: tenacious game we've got here.
	MikeYarrum: Indeed!

62) MikeYarrum: Trade B3 G3 Kagura

63) Lexicon: Discover G1 Four B2 Six

64) MikeYarrum: Move B1 Osaka Kagura

65) Lexicon: Build G2 Six

66) MikeYarrum: Build B2 Kagura

67) Lexicon: Trade G1 R1 Six

68) MikeYarrum: Build B3 Osaka

69) Lexicon: Sacrifice G3 Lexicon
Build G1 Six
Build G3 Lexicon
Build R1 Six

70) MikeYarrum: Build B3 Kagura

71) Lexicon: Trade R1 Y1 Six

72) MikeYarrum: Sacrifice Y3 Osaka
Move B1 Kagura Lexicon
Move B2 Kagura Lexicon
Move B3 Kagura Lexicon

73) Lexicon: Sacrifice G3 Lexicon
Build G3 Lexicon
Build Y1 Six
Build Y2 Six
Catastrophe Lexicon Blue

74) MikeYarrum: Trade B3 Y3 Osaka
	Lexicon: blow up time?
	MikeYarrum: I suppose so...

75) Lexicon: Sacrifice G3 Lexicon
Build G3 Four
Build R1 Six
Build R2 Six
	Lexicon: You forgot a step.

76) MikeYarrum: Move G3 Kagura Lexicon
	MikeYarrum: Not really. I figured you'd be forced to do it yourself, or I would have attacked your Homeworld ships.

77) Lexicon: Sacrifice Y2 Six
Move G1 Six Lexicon
Move G2 Six Lexicon
Catastrophe Lexicon Green

	Lexicon: OK, that was satisfying.
	Lexicon: I messed up in the beginning because I meant to attack you from two, but it was the wrong size.  And then you kept too much pressure on for me to recover.
	MikeYarrum: Thanks for the game!


7748)
Started: 2007.5.17, Ended: 2007.6.4
Participants: MikeYarrum (S), Cinnibar (N)
Winner: Cinnibar

1) Cinnibar: Homeworld G1 B2 Y3
	Cinnibar: Ah, Binary?  Cool.  I'm no zoltan, but enjoy the game. ;)

2) MikeYarrum: Homeworld B3 R2 G3

3) Cinnibar: Build Y1 Cinnibar

4) MikeYarrum: Build G1 Mikeyarrum

5) Cinnibar: Build Y1 Cinnibar

6) MikeYarrum: Trade G3 Y3 Mikeyarrum
	MikeYarrum: Heh, I'm getting my butt kicked by him quite enough, thank you.

7) Cinnibar: Discover Y1 Cinnibar G3 Vitae

8) MikeYarrum: Build G1 Mikeyarrum

9) Cinnibar: Trade Y3 G3 Cinnibar

10) MikeYarrum: Build G2 Mikeyarrum

11) Cinnibar: Build Y1 Vitae

12) MikeYarrum: Build Y2 Mikeyarrum

13) Cinnibar: Discover Y1 Vitae B2 Morpheus

14) MikeYarrum: Discover G2 Mikeyarrum B1 Tomo

15) Cinnibar: Sacrifice G3 Cinnibar
Build Y2 Morpheus
Build Y2 Vitae
Build Y3 Cinnibar

16) MikeYarrum: Move Y2 Mikeyarrum Tomo

17) Cinnibar: Discover Y1 Morpheus Y3 Lained

18) MikeYarrum: Build G2 Tomo

19) Cinnibar: Trade Y2 G2 Morpheus

20) MikeYarrum: Discover G2 Tomo B3 Nyamo

21) Cinnibar: Build G3 Morpheus

22) MikeYarrum: Build G3 Nyamo

23) Cinnibar: Trade G2 R2 Morpheus

24) MikeYarrum: Sacrifice G3 Nyamo
Build G2 Tomo
Build Y2 Tomo
Build G3 Nyamo

25) Cinnibar: Build R1 Morpheus

26) MikeYarrum: Trade G2 R2 Tomo

27) Cinnibar: Build G2 Morpheus

28) MikeYarrum: Build R1 Tomo

29) Cinnibar: Sacrifice Y1 Cinnibar
Discover R1 Morpheus B1 Phase

30) MikeYarrum: Move R2 Tomo Lained

31) Cinnibar: Move Y1 Lained Phase

32) MikeYarrum: Trade G1 B1 Mikeyarrum

33) Cinnibar: Build Y1 Cinnibar

34) MikeYarrum: Move R2 Lained Phase

35) Cinnibar: Sacrifice Y1 Phase
Discover R1 Phase Y3 I-storm

36) MikeYarrum: Discover B1 Mikeyarrum G1 Chiyo

37) Cinnibar: Discover Y1 Cinnibar B3 Lained

38) MikeYarrum: Sacrifice G3 Nyamo
Build R1 Tomo
Build R3 Phase
Build G3 Nyamo

39) Cinnibar: Sacrifice G3 Morpheus
Build R3 Morpheus
Build G3 Morpheus
Build R3 I-storm

40) MikeYarrum: Sacrifice Y2 Tomo
Move R1 Tomo Morpheus
Move R1 Tomo Morpheus
Catastrophe Morpheus Red

41) Cinnibar: Move R3 I-storm Tomo

42) MikeYarrum: Sacrifice Y2 Tomo
Move G2 Tomo I-storm
Move R2 Phase Lained

43) Cinnibar: Move Y1 Lained Tomo

44) MikeYarrum: Trade G2 Y2 Nyamo

45) Cinnibar: Sacrifice G2 Morpheus
Build Y1 Tomo
Build G2 Morpheus

46) MikeYarrum: Build G2 Nyamo

47) Cinnibar: Sacrifice G3 Morpheus
Build Y2 Cinnibar
Build R1 I-storm
Build G3 Morpheus

48) MikeYarrum: Sacrifice R2 Lained
Attack R1 I-storm
Attack R1 I-storm

49) Cinnibar: Sacrifice Y2 Vitae
Move Y1 Tomo Mikeyarrum
Move Y1 Tomo Mikeyarrum

50) MikeYarrum: Trade Y3 B3 Mikeyarrum

51) Cinnibar: Attack G1S Mikeyarrum

52) MikeYarrum: Trade G3 R3 Nyamo

53) Cinnibar: Sacrifice G3 Morpheus
Build G3 Morpheus
Build R1 Tomo
Build G3 Mikeyarrum

54) MikeYarrum: Sacrifice R3 Phase
Attack G3 Mikeyarrum
Attack G1 Mikeyarrum
Attack Y1 Mikeyarrum

55) Cinnibar: Trade Y3 R3 Cinnibar

56) MikeYarrum: Sacrifice Y2 Nyamo
Move R1 I-storm Cinnibar
Move R1 I-storm Cinnibar

57) Cinnibar: Sacrifice R3 Tomo
Attack R1S Cinnibar
Attack R1S Cinnibar
Attack Y1S Mikeyarrum

58) MikeYarrum: Trade G2 Y2 Nyamo

59) Cinnibar: Sacrifice R1 Cinnibar
Attack G1S Mikeyarrum

60) MikeYarrum: Sacrifice Y2 Nyamo
Move R3 Nyamo Cinnibar
Move G2 I-storm Cinnibar

61) Cinnibar: Sacrifice R1 Cinnibar
Attack R3S Cinnibar

62) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Cinnibar
Build G3 Cinnibar
Build B1 Chiyo
Catastrophe Cinnibar Green

63) Cinnibar: Trade R3 B3 Cinnibar

64) MikeYarrum: Build B2 Chiyo

65) Cinnibar: Move R3 Cinnibar Chiyo

66) MikeYarrum: Sacrifice B2 Chiyo
Trade B1 R1 Chiyo
Trade B1 R1 Chiyo

67) Cinnibar: Sacrifice B3 Cinnibar
Trade Y1 B1 Mikeyarrum
Trade Y1 B1 Mikeyarrum
Pass
Catastrophe Mikeyarrum B



7806)
Variants: "Hard time"
Started: 2007.5.18, Ended: 2007.5.28
Participants: zoltar (S), morganfitzp (N)
Winner: zoltar

1) morganfitzp: Homeworld B1 R2 G3

2) zoltar: Homeworld B1 G3 B3 *

3) morganfitzp: Build G1 Morganfitzp

4) zoltar: Build B1 Zoltar

5) morganfitzp: Trade G3 B3 Morganfitzp

6) zoltar: Trade B3 Y3 Zoltar

7) morganfitzp: Build B2 Morganfitzp

8) zoltar: Build B2 Zoltar

9) morganfitzp: Trade B3 Y3 Morganfitzp

10) zoltar: Trade B2 R2 Zoltar

11) morganfitzp: Discover B2 Morganfitzp G3 Ganesh
	morganfitzp: I can't see the Global Reserve Stash. Can you?

12) zoltar: Discover B1 Zoltar G2 Greenbelt

13) morganfitzp: Build B2 Ganesh

14) zoltar: Build B2 Greenbelt

15) morganfitzp: Trade B2 Y2 Ganesh

16) zoltar: Trade B2 Y2 Greenbelt

17) morganfitzp: Build B2 Ganesh

18) zoltar: Build B2 Greenbelt

19) morganfitzp: Trade B2 R2 Ganesh

20) zoltar: Discover B2 Greenbelt G3 Greenhills

21) morganfitzp: Discover B2 Ganesh G2 Lakshmi

22) zoltar: Build B2 Greenhills

23) morganfitzp: Build B3 Lakshmi

24) zoltar: Build B3 Greenbelt

25) morganfitzp: Trade B2 G2 Lakshmi

26) zoltar: Trade B3 R3 Greenbelt

27) morganfitzp: Build Y1 Ganesh

28) zoltar: Trade B2 Y2 Greenhills

29) morganfitzp: Move Y1 Ganesh Lakshmi

30) zoltar: Build B2 Greenhills

31) morganfitzp: Build G1 Morganfitzp

32) zoltar: Build B2 Greenhills

33) morganfitzp: Build B3 Lakshmi

34) zoltar: Sacrifice Y2 Greenbelt
Move B2 Greenhills Lakshmi
Move B2 Greenhills Lakshmi
Catastrophe Lakshmi B

35) morganfitzp: Build G1 Lakshmi

36) zoltar: Build B2 Greenbelt

37) morganfitzp: Discover G1 Morganfitzp B3 Vishnu

38) zoltar: Build B2 Greenhills

39) morganfitzp: Build Y1 Lakshmi

40) zoltar: Build B3 Greenbelt

41) morganfitzp: Sacrifice Y1 Lakshmi
Discover G1 Vishnu Y2 Shiva

42) zoltar: Sacrifice Y2 Greenhills
Move B2 Greenhills Shiva
Move B3 Greenbelt Ganesh

43) morganfitzp: Sacrifice Y2 Ganesh
Move G1 Shiva Zoltar
Move G1 Lakshmi Zoltar

44) zoltar: Sacrifice R2 Zoltar
Attack G1 Zoltar
Attack R2 Ganesh

45) morganfitzp: Sacrifice G1 Morganfitzp
Build G1 Zoltar
Catastrophe Zoltar Green

46) zoltar: Trade B3 G3 Ganesh

47) morganfitzp: Build G1 Lakshmi
	zoltar: well, nothing I can do about that, but at least you're fleet will be weakened terribly in order to supernova my green star...

48) zoltar: Sacrifice G3 Ganesh
Build B3 Greenbelt
Build B3 Greenhills
Build B3 Shiva
	morganfitzp: My fleet is weak as it is. I've been losing this game for a while. It'll just be nice to knock out one of your suns before I go.

49) morganfitzp: Sacrifice G2 Lakshmi
Build Y1 Morganfitzp
Build Y1 Lakshmi

50) zoltar: Sacrifice B3 Greenhills
Trade Y3 R3 Zoltar
Trade B3 Y3 Greenbelt
Trade B3 G3 Shiva

	morganfitzp: Man, forget it.


7597)
Variants: "Hard time"
Started: 2007.5.18, Ended: 2007.5.21
Participants: mneme (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

	mneme: shit.  What I get for going away on the weekend. (and forgetting to play a move on Friday).



7801)
Started: 2007.5.18, Ended: 2007.6.6
Participants: mneme (S), MikeYarrum (N)
Winner: mneme

1) MikeYarrum: Homeworld B3 R2 G3

2) mneme: Homeworld R1 B2 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) mneme: Build G1 Mneme

5) MikeYarrum: Trade G3 Y3 Mikeyarrum

6) mneme: Trade G3 Y3 Mneme

7) MikeYarrum: Build Y1 Mikeyarrum

8) mneme: Build Y1 Mneme

9) MikeYarrum: Trade Y1 B1 Mikeyarrum

10) mneme: Build Y1 Mneme

11) MikeYarrum: Build B1 Mikeyarrum

12) mneme: Trade Y1 B1 Mneme

13) MikeYarrum: Discover B1 Mikeyarrum Y1 Tomo

14) mneme: Build B2 Mneme

15) MikeYarrum: Trade B1 R1 Mikeyarrum

16) mneme: Trade B2 R2 Mneme

17) MikeYarrum: Build G1 Mikeyarrum

18) mneme: Build G2 Mneme

19) MikeYarrum: Build G2 Mikeyarrum

20) mneme: Discover G2 Mneme G3 Greenacre

21) MikeYarrum: Move G2 Mikeyarrum Tomo

22) mneme: Discover R2 Mneme G3 Yule

23) MikeYarrum: Build B1 Tomo

24) mneme: Discover B1 Mneme G3 Emerald

25) MikeYarrum: Build G2 Tomo

26) mneme: Sacrifice G2 Greenacre
Build G2 Mneme
Build G3 Mneme

27) MikeYarrum: Discover G2 Tomo Y3 Yomi
	MikeYarrum: Oh shoot, I should've seen that coming!

28) mneme: Move G2 Mneme Emerald
	mneme: Yep.  :)

29) MikeYarrum: Move B1 Tomo Yomi

30) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build R1 Yule
Build B2 Emerald

31) MikeYarrum: Discover G1 Mikeyarrum Y1 Chiyo

32) mneme: Move Y1 Mneme Emerald

33) MikeYarrum: Build Y2 Mikeyarrum

34) mneme: Move G2 Emerald Chiyo

35) MikeYarrum: Build B2 Tomo

36) mneme: Move G3 Mneme Yomi

37) MikeYarrum: Sacrifice Y3 Mikeyarrum
Move B1 Tomo Yomi
Move B1 Yomi Mneme
Move B1 Yomi Mneme

38) mneme: Move B1 Emerald Mneme
Catastrophe Mneme B

39) MikeYarrum: Move R1 Mikeyarrum Tomo
	mneme: this is interesting.  Oh, now what?

40) mneme: Sacrifice G3 Yomi
Build G3 Mneme
Build Y2 Mneme
Build B1 Emerald

41) MikeYarrum: Sacrifice B2 Tomo
Trade G2 R2 Tomo
Trade G2 Y2 Yomi

42) mneme: Move G3 Mneme Mikeyarrum

43) MikeYarrum: Sacrifice Y2 Yomi
Move R1 Tomo Yule
Move R2 Tomo Yule
Catastrophe Yule Red

44) mneme: Attack Y2 Mikeyarrum

	mneme: good game.
	MikeYarrum: Yep, thanks for playing.


7813)
Started: 2007.5.20, Ended: 2007.5.27
Participants: MikeYarrum (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) MikeYarrum: Homeworld B1 Y2 G3

3) zoltar: Build G1 Zoltar

4) MikeYarrum: Build G1 Mikeyarrum

5) zoltar: Trade G1 Y1 Zoltar

6) MikeYarrum: Build G1 Mikeyarrum

7) zoltar: Build G1 Zoltar

8) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

9) zoltar: Discover G1 Zoltar Y1 Yeltar

10) MikeYarrum: Build G2 Sakaki

11) zoltar: Build G2 Yeltar

12) MikeYarrum: Discover G2 Sakaki B1 Tomo

13) zoltar: Sacrifice G2 Yeltar
Build Y1 Zoltar
Build Y2 Zoltar

14) MikeYarrum: Trade G2 Y2 Tomo
	zoltar: One thing I like about this game is that when I get to positions like this, where I think you have the advantage and I felt stuck, there are creative things one can do to break the symmetry, such as this sack and creating yellows.  Now instead of my being clearly behind and your getting the last G3 ship without a fight, this mixes things up, and there's another green in the stack, so I can both delay anyone getting the G3 for another move, as well as threaten to get ahead in yellow ships.
	MikeYarrum: Oh, I didn't think of things like that. But I have an idea about how I might counter it...

15) zoltar: Trade Y1 R1 Zoltar

16) MikeYarrum: Build G2 Sakaki

17) zoltar: Move Y2 Zoltar Tomo

18) MikeYarrum: Trade G1 R1 Mikeyarrum

19) zoltar: Sacrifice R1 Zoltar
Attack Y2 Tomo

20) MikeYarrum: Build R1 Mikeyarrum

21) zoltar: Trade Y2 R2 Tomo

22) MikeYarrum: Trade R1 B1 Mikeyarrum

23) zoltar: Build Y1 Zoltar

24) MikeYarrum: Build B2 Mikeyarrum

25) zoltar: Sacrifice G3 Zoltar
Build Y2 Tomo
Build Y3 Tomo
Build Y3 Zoltar

26) MikeYarrum: Move B2 Mikeyarrum Sakaki

27) zoltar: Move Y3 Tomo Sakaki



7881)
Started: 2007.5.26, Ended: 2007.6.1
Participants: zoltar (S), ts52 (N)
Winner: zoltar

1) ts52: Homeworld Y1 B2 G3

2) zoltar: Homeworld B3 R1 G3
	ts52: Let's see if I can manage to not get locked out of yellow this time. ;) Have a good game!


3) ts52: Build G1 Ts52

4) zoltar: Build G1 Zoltar

5) ts52: Trade G1 R1 Ts52

6) zoltar: Trade G1 Y1 Zoltar

7) ts52: Build G1 Ts52

8) zoltar: Build Y1 Zoltar

9) ts52: Build R1 Ts52

10) zoltar: Build Y2 Zoltar

11) ts52: Build R2 Ts52

12) zoltar: Discover Y1 Zoltar G2 Greendale

13) ts52: Trade R2 Y2 Ts52

14) zoltar: Discover Y1 Zoltar G2 Greenhills

15) ts52: Discover Y2 Ts52 G3 Kermit

16) zoltar: Build G1 Zoltar

17) ts52: Discover G1 Ts52 Y3 Sol

18) zoltar: Sacrifice G3 Zoltar
Build Y2 Greendale
Build Y3 Greenhills
Build Y3 Zoltar

19) ts52: Build G1 Ts52

20) zoltar: Trade Y3 R3 Zoltar

21) ts52: Sacrifice G3 Ts52
Build G2 Sol
Build G3 Ts52
Build G3 Sol

22) zoltar: Sacrifice Y2 Greendale
Move G1 Zoltar Greendale
Move G1 Greendale Sol
Catastrophe Sol G

23) ts52: Discover R1 Ts52 G3 Crikket

24) zoltar: Move Y3 Greenhills Crikket

25) ts52: Build G1 Ts52

26) zoltar: Build Y2 Crikket

27) ts52: Discover G1 Ts52 Y3 Wikket

28) zoltar: Build Y3 Greendale

29) ts52: Sacrifice G3 Ts52
Build G1 Wikket
Build G2 Wikket
Build G3 Ts52

30) zoltar: Move Y3 Greendale Wikket

31) ts52: Sacrifice Y2 Kermit
Discover G2 Wikket Y2 Lemon
Discover G1 Wikket B2 Berry

32) zoltar: Move Y3 Crikket Lemon

33) ts52: Build G3 Berry

34) zoltar: Sacrifice R3 Zoltar
Attack G2 Lemon
Attack G1 Wikket
Attack R1 Crikket

35) ts52: Build R2 Ts52
	zoltar: Hey, no fair! Only I'm allowed to get big ships!

36) zoltar: Build R2 Crikket

37) ts52: Discover R2 Ts52 B3 Grape

38) zoltar: Sacrifice G2 Lemon
Build R2 Crikket
Build G2 Wikket

39) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Grape
Pass

40) zoltar: Sacrifice Y3 Lemon
Move G1 Wikket Ts52
Move G2 Wikket Ts52
Move R2 Crikket Ts52
Catastrophe Ts52 G

41) ts52: Sacrifice G1 Berry
Build R3 Ts52

42) zoltar: Sacrifice Y3 Wikket
Move Y2 Crikket Ts52
Move R2 Crikket Ts52
Move R1 Crikket Ts52
Catastrophe Ts52 R

	ts52: Thanks for another good game. I think I'm learning, slowly...
	zoltar: Good game.  Don't get discouraged -- I lost my first dozen games before I won one -- it's a hard game to get the hang of.


7838)
Started: 2007.5.26, Ended: 2007.5.30
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld Y1 B2 G3

2) zoltar: Homeworld R3 B1 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build G1 Zoltar

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) zoltar: Trade G1 Y1 Zoltar

7) MikeYarrum: Build Y2 Mikeyarrum

8) zoltar: Build Y2 Zoltar

9) MikeYarrum: Discover Y2 Mikeyarrum G3 Yomi

10) zoltar: Discover Y1 Zoltar G2 Greenhills

11) MikeYarrum: Build G1 Mikeyarrum

12) zoltar: Build Y2 Zoltar

13) MikeYarrum: Build Y3 Yomi

14) zoltar: Build Y3 Greenhills

15) MikeYarrum: Discover Y3 Yomi G2 Tomo

16) zoltar: Trade Y2 R2 Zoltar

17) MikeYarrum: Trade Y1 R1 Mikeyarrum

18) zoltar: Move Y3 Greenhills Yomi

19) MikeYarrum: Move Y2 Yomi Greenhills

20) zoltar: Build G1 Zoltar

21) MikeYarrum: Build R1 Mikeyarrum

22) zoltar: Discover Y1 Greenhills G1 Greendale

23) MikeYarrum: Build R1 Mikeyarrum

24) zoltar: Discover R2 Zoltar G2 Greenbelt

25) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki

26) zoltar: Sacrifice Y1 Greendale
Move R2 Greenbelt Sakaki

	MikeYarrum: I'm beginning to think we shouldn't play each other anymore - you're too good!
	zoltar: Yeah, I avoid TwoShort for the same reason.  We learn the most when we lose, but several losses in a row isn't very fun -- I know that feeling well, so maybe you should continue to play me, but only a small percentage, and try to find others of differing strengths as well to balance things out.
	MikeYarrum: Sometimes I make a major mistake like this one, and I feel like scrapping the game. That doesn't bother you, does it? (I'm trying to be neither a quitter nor a sore loser here.)
	zoltar: No, not at all.  No need wasting time in a losing position, unless you think there is something to be learned about the endgame in some cases.
	zoltar: But you do seem to be winning in the multi-player game: as long as you can keep Jesse and me weak fighting each other, you have the best chance at winning.
	MikeYarrum: Thanks! It will be interesting to see how that game turns out...


7752)
Variants: "Sinister, Hard time"
Started: 2007.5.26, Ended: 2007.6.29
Participants: stoneaxe (S), MikeYarrum (W), mneme (N), zoltar (E)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) zoltar: Homeworld B3 Y2 G3

3) stoneaxe: Homeworld G2 B3 Y3

4) MikeYarrum: Homeworld B3 Y1 G3

5) mneme: Build G1 Mneme

6) zoltar: Build G1 Zoltar

7) stoneaxe: Build Y1 Stoneaxe

8) MikeYarrum: Build G1 Mikeyarrum

9) mneme: Build G1 Mneme

10) zoltar: Trade G1 R1 Zoltar

11) stoneaxe: Build Y1 Stoneaxe

12) MikeYarrum: Build G1 Mikeyarrum

13) mneme: Trade G3 Y3 Mneme

14) zoltar: Build R1 Zoltar

15) stoneaxe: Trade Y1 R1 Stoneaxe

16) MikeYarrum: Discover G1 Mikeyarrum B2 Tomo

17) mneme: Trade G1 R1 Mneme

18) zoltar: Trade R1 B1 Zoltar

19) stoneaxe: Build Y1 Stoneaxe

20) MikeYarrum: Build G1 Tomo

21) mneme: Build Y1 Mneme

22) zoltar: Discover B1 Zoltar G1 Greenpea

23) stoneaxe: Trade Y1 R1 Stoneaxe

24) MikeYarrum: Build G2 Tomo

25) mneme: Build G2 Mneme

26) zoltar: Build G2 Zoltar

27) stoneaxe: Move R1 Stoneaxe Greenpea

28) MikeYarrum: Trade G2 R2 Tomo

29) mneme: Discover G2 Mneme B3 Saph

30) zoltar: Move G2 Zoltar Greenpea

31) stoneaxe: Discover Y1 Stoneaxe B1 Zpm

32) MikeYarrum: Build R2 Tomo

33) mneme: Build G2 Saph

34) zoltar: Build R2 Zoltar

35) stoneaxe: Build R2 Stoneaxe

36) MikeYarrum: Trade G1 Y1 Tomo

37) mneme: Move R1 Mneme Saph

38) zoltar: Sacrifice R1 Zoltar
Attack R1S Greenpea

39) stoneaxe: Build R1 Stoneaxe

40) MikeYarrum: Trade G1 B1 Mikeyarrum

41) mneme: Trade G2 Y2 Saph

42) zoltar: Sacrifice G2 Greenpea
Build R2 Zoltar
Build R3 Greenpea

43) stoneaxe: Move R2 Stoneaxe Zpm

44) MikeYarrum: Move R2 Tomo Mikeyarrum

45) mneme: Build R3 Saph

46) zoltar: Trade R1 Y1 Greenpea

47) stoneaxe: Trade R1 G1 Stoneaxe

48) MikeYarrum: Build Y2 Tomo

49) mneme: Build Y2 Saph

50) zoltar: Discover R2 Zoltar G1 Greenbean

51) stoneaxe: Build G2 Stoneaxe

52) MikeYarrum: Build G2 Mikeyarrum

53) mneme: Trade Y3 G3 Mneme

54) zoltar: Build R1 Greenpea

55) stoneaxe: Move G1 Stoneaxe Zpm

56) MikeYarrum: Build B1 Mikeyarrum

57) mneme: Discover Y2 Saph B1 Aph

58) zoltar: Build B2 Greenpea

59) stoneaxe: Build Y2 Stoneaxe

60) MikeYarrum: Discover Y2 Tomo G3 Yomi

61) mneme: Sacrifice G3 Mneme
Build Y3 Mneme
Build Y3 Aph
Build Y3 Saph

62) zoltar: Build Y3 Greenpea

63) stoneaxe: Build G2 Stoneaxe

64) MikeYarrum: Discover B1 Mikeyarrum B2 Nyamo

65) mneme: Build G3 Saph

66) zoltar: Sacrifice G3 Zoltar
Build R1 Greenpea
Build R3 Greenbean
Build R3 Zoltar

67) stoneaxe: Build R3 Stoneaxe

68) MikeYarrum: Build G3 Tomo

69) mneme: Move R3 Saph Zpm

70) zoltar: Sacrifice B2 Greenpea
Trade R3 G3 Greenpea
Trade R2 B2 Zoltar

71) stoneaxe: Discover G1 Zpm B2 Ned

72) MikeYarrum: Sacrifice G3 Tomo
Build G3 Tomo
Build R2 Mikeyarrum
Build R3 Tomo

73) mneme: Attack R2S Zpm

74) zoltar: Build B3 Greenpea

75) stoneaxe: Move R3 Stoneaxe Aph

76) MikeYarrum: Move R3 Tomo Yomi

77) mneme: Sacrifice R1 Saph
Attack R3S Aph
	mneme: Er.  Is the syntax for attacking in multiplayer Homeworlds documented -anywhere-?  I had to basically guess until i figured it out ("a r2s zpm", in this case.
	MikeYarrum: It's hidden in the fine print below the list of recognized commands.

78) zoltar: Move G3 Greenpea Zoltar

79) stoneaxe: Build R1 Stoneaxe
	MikeYarrum: This must be the last episode of Homeworlds: The Series, because we just reached the end of the universe.

80) MikeYarrum: Move R2 Tomo Yomi

81) mneme: Attack Y1S Zpm

82) zoltar: Sacrifice Y3 Greenpea
Move R2 Greenbean Stoneaxe
Move R1 Greenpea Stoneaxe
Move B3 Greenpea Stoneaxe
Catastrophe Stoneaxe R

83) stoneaxe: Build Y3 Stoneaxe
	stoneaxe: Is there a TV series called "Clueless"?  Because thats what I am in this game.
	zoltar: If you're wondering why I retreated my G3 to my homeworld instead of the obvious move of moving it into your homeworld, where you are on the brink of catastrophe and blowing up your green star, it's because I'm already behind and losing a 3-pip ship would leave me really weak.  I figure it's better to lay low with a safe G3-R3 castle (after I move out my blue ship) and let someone else blow up your stars, rather than make myself a target by getting weaker.
	zoltar: The game will be over soon anyway, as I'm pretty much dead.

84) MikeYarrum: Move R2 Mikeyarrum Tomo

85) mneme: Move G3 Saph Zpm
	mneme: Zoltar: I'm not sure.  I've got a hefty advantage over you, but I'm not seeing a good way to finish you off quickly, especially with your castling up.
	mneme: And Yarrum probably -can- make a doomsday device that will take me out, given time.
	mneme: Oh, stoneaxe, if you're wondering why I targetted your stuff when it was Zoltar who's my "prey", it was an attack of opportunity.  I needed more material that was one step away from Zoltar's homeworld, and your stuff was convenienty situated and unprotected.
	zoltar: Since my yellow star is toast, I had to protect my homeworld I figure, but as soon as you get any blue ships I'm toast.
	zoltar: Well, the best I can do is to help Mike blow some of your stuff up, as it helps him and saves me...

86) zoltar: Sacrifice R3 Zoltar
Attack G2S Stoneaxe
Attack G2S Stoneaxe
Attack Y3S Stoneaxe
	zoltar: on second thought, maybe I'm being too defensive...

87) stoneaxe: Trade Y3 R3 Stoneaxe
	zoltar: Now that I'm castled, I'm going on a mad all-out attack, as I don't have the time to wait while either Mike or Mneme builds a doomsday device. Prepare for battle!
	mneme: Very nice.  I'm trying to figure out how to effect a rescue, and not seeing a good one.  Mike, any ideas?

I think this is a case where the person to the left of the weakest player has a sizable advantage.

	zoltar: Yep, I didn't see that move until I'd made the other one attacking mneme, and that I could take a red ship from both greenbean and greenpea, so that neither of you could ram the other with 2 red ships this turn, leaving my red fleet maximally dispersed and intact.  I went from thinking I was worst off to being best off, all because stoneaxe made a crazy move and set himself up for catastrophe.
	mneme: Pretty much.  By "counter" attacking me, he gave away nearly all his red.  

And mike's the only one who even -owns- enough blue to take out your invasion fleet, and it's not even close to positioned right for that. :(
	MikeYarrum: Aside from hitting mneme's homeworld (which would weaken me quite a bit), I'm out of ideas.
	zoltar: Then the Galaxy will be mine! All mine! [Insert Evil Overlord Laughter here]

88) MikeYarrum: Sacrifice Y2 Yomi
Move R2 Tomo Greenbean
Move R2 Yomi Greenbean
	stoneaxe: Aha!  Take that zoltar!
	zoltar: I plan to next turn, oh primitive carbon waterbag unit!

89) mneme: Sacrifice Y3 Saph
Move R2 Zpm Nyamo
Move R2 Nyamo Greenbean
Move G3 Zpm Zoltar
Catastrophe Greenbean R

90) zoltar: Sacrifice G2 Stoneaxe
Build G1 Zoltar
Build G2 Zoltar

91) stoneaxe: Attack B3E Stoneaxe
Catastrophe Zoltar G
	zoltar: Pray pear two meat yore DOOM, hyu-maahn beanz!
	mneme: Hmm.  Ok, I see a way out.  Stoneaxe, swap your large for a red.
Mike, if you put two reds in greenbean, I'll put another one in for the party.

	zoltar: Reziztanz ease few tile.
	zoltar: Yes, you can buy yourselves one more turn, in which you can pray to your respective deities for a better afterlife...

92) MikeYarrum: Sacrifice B1 Nyamo
Trade R3 Y3 Yomi

93) mneme: Move R3 Aph Zoltar
	mneme: Oh, two more turns at least.

94) zoltar: Sacrifice G2 Stoneaxe
Build B1 Zoltar
Build B2 Zoltar
	zoltar: Yep, that was the way to do it.  I'm toast.  Well, it was worth a try.  Good game.

95) stoneaxe: Attack Y3E Stoneaxe

96) MikeYarrum: Build R1 Mikeyarrum
	zoltar: Well, stoneaxe, your only way out is to capture one of my green and leave my red and yellow, and then cause a catastrophe in my homeworld at the end of your turn.  Then Mike will have to move a blue ship into my homeworld, so that on my turn I can sac my Y3 and bring my B3 and B1 back into my homeworld and destroy them.  Only way you can stop  mneme from winning next turn, after he moves another ship in.
	mneme: I'm honestly not sure how that would help -- the described catastrophe would depopulate your homeworld, zoltar, wouldn't it?
	zoltar: Well, yes, but it would stop you from instantly winning the game.
	mneme: Ah -- "eliminating a player to your left or across from you does not end the game or give someone else the victory".  Doesn't say anything about suicide, mind.  Mind, I'm not sure this -should- be true -- I think the game's probably more elegant if -anything- eliminating a player will cause the player to their right to win, thus avoiding "you can't kill him; I'll do it after you've weakened him!" nonsense.
	zoltar: Well, in any case, the 4 player version is 'broken' because of situations like this, where Mike got to be 'KingMaker' and choose whether you or I win.  I thought I had enough reds to force the issue but I did not.  So here perhaps I can commit suicide without your getting the victory, just to make it less then a binary choice.  I don't like the sinister version because of this.  The two player game is great, except that the good players always kick my butt and I kick everyone else's butt so I'm in this limbo in terms of strength.  Well, maybe with more players when the game catches on, that gap will close...
	MikeYarrum: It took me a few games to realize why the "standard" Homeworlds has Good and Evil alignments, though there was enough politics going on when I played it IRL with my friends.
	zoltar: What's IRL? I've never heard of it.
	MikeYarrum: In Real Life. Like, with the plastic pyramids.
	zoltar: Ahhh, "Real Life" -- oh I get it now.  That's something like Plato's heaven of ideal forms, isn't it, compared to which this is just a play of shadows, eh?
	MikeYarrum: Something like that. Brad kept taking the last pyramids of smallest size, so Matt easily took the lead, having first chance at all the 2 and 3 pointers. But it wasn't all bad - Brad ended up saving my butt when he wiped out Matt's doomsday machine for no other reason than he could.
	mneme: Zoltar: I don't know; we seem to be reasonably evenly matched in two player -- and unlike me, you've actually beaten TwoShort.  I don't know about "broken" -- you over-extended to hit stoneaxe, (a little) but in theory, people could do a lot of detent to force a situation where a player was going to die and nobody could stop it.
	zoltar: That's true, we're fairly evenly matched, but it's rare that I have an even game.  As for 4 player, any time someone is about to win the others can swoop in and attack him, so it's hard to see how the game can be as interesting.
	stoneaxe: This is (was?) my first game of this, so I am a little overwhelmed/confused.  I think I will just do this and see how it all works out.  Maybe next time I'll understand what the heck is goin on a little sooner-???

97) mneme: Sacrifice R3 Zpm
Attack B2E Zoltar
Attack B2E Zoltar
Attack B1E Zoltar

	mneme: *blink*.  I take it nobody else could create the catastrophe either?  Good game, everyone.
	zoltar: Or were the two of you asleep and simply forgot to type "c zoltar b" at the end of your turns (in which case mneme deserves the win)!?
	mneme: I...was wondering about that.  I think I deserve the win anyway, given that you'd have needed a suicide to stop it.  But the mind boggles.  I went for the attack win rather than the "c zoltar b" win because it seemed classier, of course.
	mneme: It's possible that the game prevents you from killing other players who aren't your prey -- which makes huge amounts of sense, if so, but should be spelled out in the rules in that case.

	zoltar: I really think that the game only prevents a player from ending a turn with none of the player's ships in that player's homeworld, and that's all, and that anyone else can cause a catastrophe anywhere except in their own homeworld  if none of there own ships are left there.
	MikeYarrum: I wasn't paying enough attention, sorry.

But on another note, we would have also had to deal with mneme's big ol' warship in the zoltar system. Could that have also given mneme the win, even if he didn't directly eliminate zoltar?
	zoltar: no, it would not have.


7936)
Started: 2007.5.27, Ended: 2007.6.1
Participants: MikeYarrum (S), kawotan (N)
Winner: MikeYarrum



7812)
Variants: "Hard time"
Started: 2007.5.27, Ended: 2007.5.31
Participants: TwoShort (S), Marcus (N)
Winner: TwoShort

1) Marcus: Homeworld B3 Y2 G3

2) TwoShort: Homeworld R1 B3 G3

3) Marcus: Build G1 Marcus

4) TwoShort: Build G1 Twoshort

5) Marcus: Discover G1 Marcus B1 Procyon

6) TwoShort: Trade G1 Y1 Twoshort

7) Marcus: Build G1 Procyon

8) TwoShort: Build Y1 Twoshort

9) Marcus: Trade G1 Y1 Procyon

10) TwoShort: Build G1 Twoshort

11) Marcus: Build G1 Procyon

12) TwoShort: Discover Y1 Twoshort G2 Grogar

13) Marcus: Build Y2 Procyon

14) TwoShort: Build Y2 Grogar

15) Marcus: Trade Y2 R2 Procyon

16) TwoShort: Discover Y2 Grogar B1 Bluonia

17) Marcus: Build G2 Marcus

18) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Bluonia
Build Y3 Twoshort

19) Marcus: Sacrifice G3 Marcus
Build G2 Marcus
Build G3 Marcus
Build G3 Procyon

20) TwoShort: Sacrifice Y3 Twoshort
Move G1 Twoshort Grogar
Move G1 Grogar Procyon
Move G1 Procyon Marcus
Catastrophe Marcus Green
	TwoShort: You had been doing well, but I'm afraid that's the infamous "Bluebird Mistake"...



7953)
Started: 2007.5.27, Ended: 2007.6.2
Participants: Marcus (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B3 R2 G3



7961)
Variants: "Unrated"
Started: 2007.5.28, Ended: 2007.5.30
Participants: Prock (S), kobeyu (N)
Winner: kobeyu

1) kobeyu: Homeworld B2 Y3 G3

2) Prock: Homeworld Y2 B1 G3

3) kobeyu: Build G1 Kobeyu

4) Prock: Build G1 Prock

5) kobeyu: Trade G1 Y1 Kobeyu

6) Prock: Trade G1 Y1 Prock
	kobeyu: are you just copying everything i do?

7) kobeyu: Build G1 Kobeyu

8) Prock: Sacrifice G3 Prock
Build Y1 Prock
Build Y2 Prock
Build Y2 Prock

9) kobeyu: Discover G1 Kobeyu B1 Fiji
Catastrophe Prock Yellow
	Prock: Bet you didn't expect that one!
	kobeyu: That is bold.
Which is a thing fortune favours, so I hear.
But there is no luck in this game...

	kobeyu: Foolhardy. Another?


7999)
Variants: "Hard time"
Started: 2007.5.31, Ended: 2007.7.30
Participants: Kermit (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld Y1 B2 G3
	MikeYarrum: Thanks for accepting my challenge.

2) Kermit: Homeworld G2 B1 Y3

3) MikeYarrum: Build G1 Mikeyarrum
	Kermit: no problem.

4) Kermit: Build Y1 Kermit

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) Kermit: Trade Y1 B1 Kermit

7) MikeYarrum: Build G1 Mikeyarrum

8) Kermit: Build Y1 Kermit

9) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi

10) Kermit: Discover Y1 Kermit G3 Semi

11) MikeYarrum: Build Y2 Yomi

12) Kermit: Trade B1 G1 Kermit

13) MikeYarrum: Trade G1 R1 Mikeyarrum

14) Kermit: Trade G1 R1 Kermit

15) MikeYarrum: Build Y2 Yomi

16) Kermit: Build Y2 Semi

17) MikeYarrum: Discover Y2 Yomi G2 Tomo

18) Kermit: Build Y3 Semi

19) MikeYarrum: Build Y3 Tomo

20) Kermit: Discover Y3 Semi B1 Noles

21) MikeYarrum: Build G1 Mikeyarrum

22) Kermit: Move Y1 Semi Noles

23) MikeYarrum: Discover Y2 Tomo B3 Kagura

24) Kermit: Trade Y1 G1 Noles

25) MikeYarrum: Build Y1 Tomo

26) Kermit: Discover G1 Noles B3 Muskogee

27) MikeYarrum: Move Y1 Tomo Kagura

28) Kermit: Build G1 Muskogee

29) MikeYarrum: Sacrifice Y2 Yomi
Move Y1 Yomi Kermit
Move Y1 Kagura Kermit

30) Kermit: Trade Y3 R3 Kermit Kermit

31) MikeYarrum: Trade Y1 R1 Kermit

32) Kermit: Sacrifice Y2 Semi
Move G1 Muskogee Mikeyarrum
Move G1 Muskogee Mikeyarrum
Catastrophe Mikeyarrum Green

33) MikeYarrum: Build R2 Kermit
Catastrophe Kermit Red
	MikeYarrum: Just an FYI - I can still, on my next move, build a red ship in your homeworld and cause a catastrophe, winning the game.
	MikeYarrum: Well, I have 3 hours left of my turn, I guess it's time.



8031)
Started: 2007.6.1, Ended: 2007.6.25
Participants: ts52 (S), papa_bear (N)
Winner: ts52

1) papa_bear: Homeworld Y3 B2 G3
	papa_bear: Hi.

2) ts52: Homeworld Y2 B1 G3
	ts52: Hi. Have a great game!

3) papa_bear: Build G1 Papa_bear
	papa_bear: You too!

4) ts52: Build G1 Ts52

5) papa_bear: Trade G1 B1 Papa_bear

6) ts52: Trade G1 B1 Ts52

7) papa_bear: Build B2 Papa_bear

8) ts52: Build G1 Ts52

9) papa_bear: Build G1 Papa_bear

10) ts52: Trade G1 Y1 Ts52

11) papa_bear: Trade B1 Y1 Papa_bear

12) ts52: Build G1 Ts52

13) papa_bear: Trade G1 R1 Papa_bear

14) ts52: Trade G1 R1 Ts52

15) papa_bear: Build G1 Papa_bear

16) ts52: Build G1 Ts52

17) papa_bear: Discover G1 Papa_bear R1 Aleph

18) ts52: Build R2 Ts52

19) papa_bear: Build R2 Papa_bear

20) ts52: Discover R2 Ts52 G3 Kermit

21) papa_bear: Move R2 Papa_bear Aleph

22) ts52: Move Y1 Ts52 Kermit

23) papa_bear: Move B2 Papa_bear Aleph

24) ts52: Sacrifice G3 Ts52
Build R2 Ts52
Build R3 Kermit
Build R3 Ts52

25) papa_bear: Trade B2 Y2 Aleph

26) ts52: Discover R2 Ts52 G3 Wikket

27) papa_bear: Build R3 Papa_bear

28) ts52: Build B1 Ts52

29) papa_bear: Move R2 Aleph Papa_bear

30) ts52: Move B1 Ts52 Kermit

31) papa_bear: Trade R2 B2 Papa_bear

32) ts52: Move R3 Kermit Aleph

33) papa_bear: Discover R3 Papa_bear G1 Bet

34) ts52: Attack Y2N Aleph

35) papa_bear: Sacrifice G1 Aleph
Build R2 Papa_bear

36) ts52: Build Y1 Kermit

37) papa_bear: Move Y1 Papa_bear Bet

38) ts52: Build G1 Ts52

39) papa_bear: Move R3 Bet Kermit

40) ts52: Move R2 Kermit Bet

41) papa_bear: Move Y1 Bet Kermit

42) ts52: Move Y1 Kermit Bet

43) papa_bear: Attack B1 Kermit

44) ts52: Move Y1 Kermit Bet

45) papa_bear: Build G2 Papa_bear

46) ts52: Sacrifice Y2 Aleph
Move R3 Aleph Kermit
Move R3 Kermit Bet

47) papa_bear: Trade R2 Y2 Papa_bear

48) ts52: Build G2 Ts52

49) papa_bear: Build G2 Papa_bear

50) ts52: Trade G2 Y2 Ts52

51) papa_bear: Discover Y2 Papa_bear R1 Gimmel

52) ts52: Move Y2 Ts52 Wikket

53) papa_bear: Build Y3 Kermit

54) ts52: Build Y3 Wikket

55) papa_bear: Move G2 Papa_bear Gimmel

56) ts52: Move Y3 Wikket Gimmel

57) papa_bear: Sacrifice Y2 Gimmel
Discover G2 Gimmel R2 Dalet
Move Y3 Kermit Dalet

58) ts52: Move B1 Ts52 Wikket

59) papa_bear: Build G2 Dalet

60) ts52: Build Y2 Wikket

61) papa_bear: Move G2 Dalet Kermit

62) ts52: Move Y2 Wikket Gimmel

63) papa_bear: Pass

64) ts52: Sacrifice Y3 Gimmel
Move Y1 Bet Papa_bear
Move Y1 Bet Papa_bear
Move Y2 Gimmel Papa_bear
Catastrophe Papa_bear Yellow

65) papa_bear: Build Y1 Kermit

66) ts52: Build B2 Wikket
	papa_bear: Oh.

67) papa_bear: Trade B2 Y2 Papa_bear

68) ts52: Discover G1 Ts52 Y3 Sol
	ts52: Sorry, did you not mean to pass before? I thought that was a bit odd...
	papa_bear: I did mean to pass :) I really didn't know what to do, so I passed.

I just hadn't seen that particular threat. "Oh" was understated surprise :)
	ts52: Ah, ok then. The sacrifices can be hard to see. 

69) papa_bear: Build R1 Kermit

70) ts52: Move B2 Wikket Bet

71) papa_bear: Sacrifice G3 Papa_bear
Build G3 Papa_bear
Build Y1 Dalet
Build Y3 Papa_bear

72) ts52: Build B2 Wikket

73) papa_bear: Move B1 Kermit Dalet

74) ts52: Sacrifice B1 Wikket
Trade G1 B1 Sol

75) papa_bear: Build G1 Dalet

76) ts52: Sacrifice Y2 Wikket
Move B2 Bet Papa_bear
Move B2 Wikket Papa_bear

77) papa_bear: Trade G3 B3 Papa_bear
Catastrophe Papa_bear Blue

	papa_bear: Good game!
	ts52: Thanks for the game.


8055)
Started: 2007.6.2, Ended: 2008.2.22
Participants: Homepie (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G2 B1 Y3



8056)
Started: 2007.6.2, Ended: 2007.6.19
Participants: MatrixFrog (S), DaDRK (N)
Winner: DaDRK

1) DaDRK: Homeworld G2 R3 B3

2) MatrixFrog: Homeworld G2 B1 Y3

3) DaDRK: Build B1 Dadrk

4) MatrixFrog: Build Y1 Matrixfrog

5) DaDRK: Trade B1 Y1 Dadrk

6) MatrixFrog: Build Y1 Matrixfrog
	DaDRK: good luck, this is one of my first games.
	MatrixFrog: It's generally considered a good idea to start out with some green and yellow, and usually blue in your homeworld. Green to start building a fleet, yellow so that you can start expanding, and blue because, well, red isn't going to be particularly helpful until later in the game. Not that you've completely screwed yourself over or anything, especially since you got to move first. But just giving you the sort of conventional wisdom for future games.

7) DaDRK: Build Y2 Dadrk

8) MatrixFrog: Discover Y1 Matrixfrog G3 Alpha

9) DaDRK: Discover Y2 Dadrk B1 First

10) MatrixFrog: Build Y2 Alpha

11) DaDRK: Build B1 Dadrk

12) MatrixFrog: Trade Y1 R1 Matrixfrog

13) DaDRK: Discover B1 Dadrk G1 Scnd

14) MatrixFrog: Build R1 Matrixfrog

15) DaDRK: Build B2 Scnd

16) MatrixFrog: Move Y2 Alpha Scnd

17) DaDRK: Trade Y1 R1 Dadrk

18) MatrixFrog: Sacrifice R1 Matrixfrog
Attack B2 Scnd

19) DaDRK: Build B2 Dadrk

20) MatrixFrog: Build Y1 Matrixfrog

21) DaDRK: Trade B3 R3 Dadrk

22) MatrixFrog: Sacrifice R1 Matrixfrog
Attack B1 Scnd

23) DaDRK: Trade R1 Y1 Dadrk

24) MatrixFrog: Build Y2 Alpha

25) DaDRK: Move R3 Dadrk Scnd

26) MatrixFrog: Move B2 Scnd Dadrk

27) DaDRK: Attack B2 Dadrk

28) MatrixFrog: Build B2 Scnd

29) DaDRK: Attack B2 Scnd
	DaDRK: hmm I seem to be in trouble from what I can tell

30) MatrixFrog: Build Y3 Alpha
	MatrixFrog: Well, I feel like I'm always one step behind you because you have red powers and I don't. So we'll see.

31) DaDRK: Move Y2 First Alpha
Catastrophe Alpha Y

32) MatrixFrog: Build Y1 Matrixfrog

33) DaDRK: Attack Y2 Scnd

34) MatrixFrog: Build B1 Scnd

35) DaDRK: Sacrifice B2 Scnd
Trade B2 Y2 Dadrk
Trade Y1 G1 Dadrk

36) MatrixFrog: Discover Y1 Matrixfrog G3 Beta

37) DaDRK: Attack B1 Scnd

38) MatrixFrog: Build Y1 Beta

39) DaDRK: Move R3 Scnd Beta

40) MatrixFrog: Sacrifice Y1 Beta
Move Y1 Beta Scnd

41) DaDRK: Sacrifice Y2 Dadrk
Move B1 Scnd Beta
Move R3 Beta Matrixfrog

42) MatrixFrog: Trade Y1 R1 Scnd
	DaDRK: I believe if I capture all your ships in your home world I win correct?
	DaDRK: If thats true I think this would be a checkmate. GG
	MatrixFrog: You're right, but it's not checkmate. At least not yet, because you can only do one attack at a time.
	MatrixFrog: On the other hand, I don't see a way out of thise. I think starting with a red star was actually pretty helpful for you.

43) DaDRK: Attack Y3 Matrixfrog
	DaDRK: I didn't know how well it would work out, just figured I should have access to attack ships

44) MatrixFrog: Build Y1 Matrixfrog

45) DaDRK: Build Y1 Matrixfrog
Catastrophe Matrixfrog Y
	DaDRK: good game



7960)
Started: 2007.6.2, Ended: 2007.6.12
Participants: DaDRK (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B3 R2 G3

2) DaDRK: Homeworld G2 B3 R3

3) MikeYarrum: Build G1 Mikeyarrum
	MikeYarrum: Hey! I almost thought you'd forgotten about the game.

4) DaDRK: Build R1 Dadrk

5) MikeYarrum: Build G1 Mikeyarrum

6) DaDRK: Trade R1 Y1 Dadrk

7) MikeYarrum: Trade G1 Y1 Mikeyarrum
	DaDRK: didn't notice this down here, so like to wish you good luck, probably don't need it I'm a complete noob at this gaem
	MikeYarrum: No problem - I probably lose 95% of the games I play on here. Enjoy!

8) DaDRK: Discover Y1 Dadrk G1 Frstyi
	DaDRK: ah I see

9) MikeYarrum: Build G1 Mikeyarrum

10) DaDRK: Build Y1 Frstyi
	DaDRK: er that was a stupid move, hope you don't mind me taking it back.
	MikeYarrum: Nah, there's a "No Undo" option which you can choose when issuing a challenge. I'd have picked that if I had a problem with it.

11) MikeYarrum: Build Y2 Mikeyarrum

12) DaDRK: Build R1 Dadrk

13) MikeYarrum: Discover G1 Mikeyarrum B1 Nyamo

14) DaDRK: Trade R1 B1 Dadrk

15) MikeYarrum: Build G2 Nyamo

16) DaDRK: Discover Y1 Frstyi G2 Scnd

17) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G3 Nyamo
Build G3 Mikeyarrum
Build G3 Mikeyarrum

18) DaDRK: Build Y2 Scnd

19) MikeYarrum: Trade G1 R1 Nyamo

20) DaDRK: Trade B1 G1 Dadrk

21) MikeYarrum: Discover G3 Mikeyarrum B1 Yukari

22) DaDRK: Build R1 Dadrk

23) MikeYarrum: Build R1 Nyamo

24) DaDRK: Move Y1 Scnd Frstyi

25) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move R1 Nyamo Dadrk
Move R1 Nyamo Dadrk
Catastrophe Dadrk Red

26) DaDRK: Trade G1 R1 Dadrk

27) MikeYarrum: Trade G3 R3 Nyamo

28) DaDRK: Move Y1 Frstyi Dadrk

29) MikeYarrum: Sacrifice Y1 Mikeyarrum
Move R3 Nyamo Dadrk

	DaDRK: well good game, I may not know much but I know I'm beat.
	MikeYarrum: Yeah, Homeworlds takes awhile to really get the hang of. But thanks for the game!


8078)
Started: 2007.6.6, Ended: 2007.6.29
Participants: sordros (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B3 Y1 G3

2) sordros: Homeworld Y1 B2 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) sordros: Build G1 Sordros

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) sordros: Discover G1 Sordros Y3 Flavega

7) MikeYarrum: Build Y2 Mikeyarrum

8) sordros: Build G1 Sordros

9) MikeYarrum: Discover Y2 Mikeyarrum G2 Yomi

10) sordros: Trade G1 B1 Sordros

11) MikeYarrum: Build Y2 Yomi

12) sordros: Build G1 Sordros

13) MikeYarrum: Build Y2 Yomi

14) sordros: Build G1 Flavega

15) MikeYarrum: Build G2 Mikeyarrum

16) sordros: Discover G1 Sordros Y3 Bigy

17) MikeYarrum: Discover Y2 Yomi G3 Tomo

18) sordros: Build G2 Sordros

19) MikeYarrum: Build Y3 Tomo

20) sordros: Build B1 Sordros

21) MikeYarrum: Trade G2 R2 Mikeyarrum

22) sordros: Trade B1 R1 Sordros

23) MikeYarrum: Build G2 Mikeyarrum

24) sordros: Build R1 Sordros

25) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G3 Mikeyarrum
Build R1 Mikeyarrum
Build R2 Mikeyarrum

26) sordros: Sacrifice G3 Sordros
Build G3 Sordros
Build R2 Sordros
Build B1 Sordros

27) MikeYarrum: Move R2 Mikeyarrum Yomi

28) sordros: Discover R1 Sordros B3 Zuleo

29) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G3 Mikeyarrum
Build R3 Yomi
Build R3 Yomi

30) sordros: Build R3 Sordros

31) MikeYarrum: Sacrifice Y2 Yomi
Move R2 Yomi Tomo
Move R2 Tomo Sordros
Catastrophe Sordros Red

32) sordros: Trade G2 Y2 Sordros

33) MikeYarrum: Move R3 Yomi Flavega

34) sordros: Sacrifice G1 Bigy
Build Y3 Sordros

35) MikeYarrum: Move Y2 Tomo Sordros
Catastrophe Sordros Yellow
	MikeYarrum: CAPTIAN! THE ENEMY HOMEWORLD IS VULNERABLE!

HMMM... IS THIS SOME KIND OF SORDROSIAN TRICK?

36) sordros: Trade B1 R1 Sordros
	sordros: hmm... not really, I think it is the poor sleep due to my dear newborn combined with greed for a large Y3... :-)

37) MikeYarrum: Build R2 Yomi

38) sordros: Build G1 Sordros
	MikeYarrum: Ah, congrats. I'm currently giving my opponent in another game a chance to undo, as he left himself with four green pieces in one of "his" systems.

39) MikeYarrum: Build G2 Mikeyarrum

40) sordros: Sacrifice G3 Sordros
Build G3 Sordros
Build R2 Sordros
Build R3 Zuleo

41) MikeYarrum: Sacrifice R2 Yomi
Attack G1 Flavega
Attack G1 Flavega

42) sordros: Trade R1 Y1 Sordros

43) MikeYarrum: Sacrifice Y2 Yomi
Move G2 Mikeyarrum Sordros
Move G2 Mikeyarrum Sordros
Catastrophe Sordros Green

44) sordros: Trade B1 G1 Sordros

45) MikeYarrum: Move R3 Flavega Sordros

	sordros: Great game Mike.  Thanks for the game
	MikeYarrum: Thank you sir!


8156)
Variants: "Hard time"
Started: 2007.6.7, Ended: 2007.10.11
Participants: TwoShort (S), jeep (N)
Winner: TwoShort

1) jeep: Homeworld G1 B2 Y3

2) TwoShort: Homeworld B1 R3 G3

3) jeep: Build Y1 Jeep

4) TwoShort: Build G1 Twoshort

5) jeep: Build Y1 Jeep
	jeep: I first saw this opening against Sketchwick.  It's interesting...  It will be interesting to see how you use it to destroy me.  ;)

6) TwoShort: Trade G1 Y1 Twoshort

7) jeep: Discover Y1 Jeep B3 Moon
	TwoShort: You mean the blue-red homeworld?  I've come to decide it's my favorite, mostly because you can have more Green and yellow ships without danger.
Recently I've been toying with the idea that the 1-3 is actually better than the 1-2, but I'm still undecided there.

8) TwoShort: Build Y2 Twoshort

9) jeep: Trade Y3 G3 Jeep

10) TwoShort: Build G1 Twoshort

11) jeep: Sacrifice G3 Jeep
Build Y2 Moon
Build Y2 Jeep
Build Y3 Jeep

12) TwoShort: Discover Y1 Twoshort G2 Grogar

13) jeep: Trade Y1 R1 Jeep

14) TwoShort: Build G1 Twoshort

15) jeep: Trade Y2 G2 Moon

16) TwoShort: Discover G1 Twoshort B2 Bluonia

17) jeep: Trade Y2 G2 Jeep

18) TwoShort: Sacrifice G3 Twoshort
Build G3 Bluonia
Build G3 Twoshort
Build G3 Twoshort
	jeep: I'm horribly inefficient...

19) jeep: Build R1 Jeep
	jeep: Nice, I missed that.
	jeep: *sigh* I thought I would be able to blow you up safely if you did that... but I see now that I can't.

20) TwoShort: Trade G1 Y1 Bluonia

21) jeep: Build G1 Moon

22) TwoShort: Sacrifice G3 Twoshort
Build G3 Bluonia
Build Y2 Bluonia
Pass

23) jeep: Sacrifice G2 Moon
Build Y2 Jeep
Build Y3 Moon

24) TwoShort: Sacrifice Y2 Bluonia
Move Y1 Bluonia Moon
Move Y1 Grogar Moon
Catastrophe Moon Yellow

25) jeep: Discover R1 Jeep Y3 Traveller

26) TwoShort: Trade G3 R3 Bluonia

27) jeep: Build G2 Moon

28) TwoShort: Build Y1 Twoshort

29) jeep: Trade G1 Y1 Moon

30) TwoShort: Build G1 Bluonia

31) jeep: Build G2 Moon

32) TwoShort: Discover G1 Twoshort Y2 Yolonda

33) jeep: Sacrifice G2 Moon
Build Y1 Jeep
Build Y3 Moon

34) TwoShort: Sacrifice G3 Bluonia
Build G2 Bluonia
Build G3 Yolonda
Build G3 Twoshort

35) jeep: Trade Y3 R3 Jeep

36) TwoShort: Move Y1 Twoshort Bluonia

37) jeep: Build Y3 Jeep

38) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Bluonia Moon
Move Y1 Moon Jeep
Catastrophe Jeep Yellow

39) jeep: Discover Y1 Moon B2 Stage

40) TwoShort: Trade G2 Y2 Bluonia

41) jeep: Build G2 Moon

42) TwoShort: Trade G3 Y3 Twoshort

43) jeep: Trade R1 Y1 Jeep

44) TwoShort: Sacrifice G3 Yolonda
Build G3 Yolonda
Build G3 Bluonia
Build R1 Bluonia

45) jeep: Move G2 Moon Stage

46) TwoShort: Move G3 Bluonia Traveller

47) jeep: Move R1 Traveller Stage

48) TwoShort: Sacrifice G3 Yolonda
Build Y1 Bluonia
Build Y2 Twoshort
Build G3 Yolonda

49) jeep: Sacrifice G2 Moon
Build G2 Stage
Build R1 Stage

50) TwoShort: Move Y3 Twoshort Stage

	jeep: I see nothing useful.  :(  I hope to get back to it before I time out, but if not, consider it a concession.
	TwoShort: I think you're pretty doomed :)  You've done an excellent job in not giving me an opening to go for the kill, but with the factory exclusive I've been able to keep the old take-all-the-pieces tactic rolling.  
	jeep: Yeah, thanks for the game.


8133)
Started: 2007.6.9, Ended: 2007.6.23
Participants: Uglyfoot (S), MikeYarrum (N)
Winner: Uglyfoot

1) MikeYarrum: Homeworld B1 Y2 G3

2) Uglyfoot: Homeworld B1 G3 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) Uglyfoot: Build Y1 Uglyfoot

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) Uglyfoot: Discover Y1 Uglyfoot G2 Egg

7) MikeYarrum: Build G1 Mikeyarrum

8) Uglyfoot: Build Y1 Uglyfoot

9) MikeYarrum: Build Y2 Mikeyarrum

10) Uglyfoot: Build Y2 Egg

11) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi

12) Uglyfoot: Discover Y1 Egg B3 Evo

13) MikeYarrum: Build Y3 Yomi

14) Uglyfoot: Build Y3 Egg

15) MikeYarrum: Trade G1 B1 Mikeyarrum

16) Uglyfoot: Trade Y1 R1 Uglyfoot

17) MikeYarrum: Build B2 Mikeyarrum

18) Uglyfoot: Move Y2 Egg Evo

19) MikeYarrum: Move B2 Mikeyarrum Yomi

20) Uglyfoot: Trade Y1 G1 Evo

21) MikeYarrum: Build B2 Yomi

22) Uglyfoot: Build Y1 Evo

23) MikeYarrum: Discover B2 Yomi G2 Tomo

24) Uglyfoot: Build Y1 Uglyfoot

25) MikeYarrum: Trade B2 R2 Tomo

26) Uglyfoot: Trade Y2 B2 Evo

27) MikeYarrum: Move Y1 Yomi Tomo

28) Uglyfoot: Build Y2 Egg

29) MikeYarrum: Build G1 Mikeyarrum

30) Uglyfoot: Move Y2 Egg Evo

31) MikeYarrum: Build B2 Yomi

32) Uglyfoot: Sacrifice Y3 Egg
Discover B2 Evo G2 Egg
Move Y1 Evo Mikeyarrum
Move Y2 Evo Mikeyarrum
Catastrophe Mikeyarrum Y

33) MikeYarrum: Move R2 Tomo Evo

34) Uglyfoot: Build G1 Evo
	Uglyfoot: That probably was a mistake but it was fun...
	MikeYarrum: Well, SOMEBODY made a mistake just there... (lol)

35) MikeYarrum: Move B2 Yomi Tomo

36) Uglyfoot: Build B3 Egg

37) MikeYarrum: Build B3 Tomo

38) Uglyfoot: Sacrifice Y3 Uglyfoot
Move B2 Egg Mikeyarrum
Move B3 Egg Mikeyarrum
Discover G1 Evo Y1 Vlp
Catastrophe Mikeyarrum B

	MikeYarrum: Good show!
	Uglyfoot: Thanks for the game



8223)
Variants: "Hard time"
Started: 2007.6.11, Ended: 2007.7.18
Participants: clockwise (S), dsheldon (N)
Winner: clockwise

1) dsheldon: Homeworld R1 B2 G3

2) clockwise: Homeworld B3 Y1 G3

3) dsheldon: Build G1 Dsheldon

4) clockwise: Build G1 Clockwise

5) dsheldon: Build G1 Dsheldon

6) clockwise: Build G2 Clockwise

7) dsheldon: Trade G1 Y1 Dsheldon

8) clockwise: Trade G2 Y2 Clockwise

9) dsheldon: Discover G1 Dsheldon G3 Greenback

10) clockwise: Discover G1 Clockwise Y2 Sophocles

11) dsheldon: Build G1 Dsheldon

12) clockwise: Build G2 Sophocles

13) dsheldon: Discover G1 Dsheldon Y3 Jerome

14) clockwise: Build G2 Clockwise

15) dsheldon: Build G2 Dsheldon

16) clockwise: Discover G2 Sophocles Y3 Aristotle

17) dsheldon: Discover G2 Dsheldon B3 Sky

18) clockwise: Discover G1 Sophocles Y3 Pascal

19) dsheldon: Build Y1 Dsheldon
	clockwise: I'm being very indecisive this game...

20) clockwise: Build Y2 Clockwise

21) dsheldon: Trade Y1 R1 Dsheldon

22) clockwise: Trade Y2 R2 Clockwise

23) dsheldon: Sacrifice G2 Sky
Build G2 Jerome
Build Y1 Dsheldon

24) clockwise: Sacrifice G3 Clockwise
Build G3 Clockwise
Build Y2 Clockwise
Build R1 Clockwise

25) dsheldon: Discover G1 Jerome B2 Puddle

26) clockwise: Move Y2 Clockwise Puddle

27) dsheldon: Sacrifice G1 Puddle
Build G1 Jerome

28) clockwise: Sacrifice G3 Clockwise
Build G3 Clockwise
Build Y2 Puddle
Build R2 Clockwise

29) dsheldon: Trade Y1 B1 Dsheldon

30) clockwise: Move R2 Clockwise Puddle

31) dsheldon: Discover G1 Jerome B1 Droplet

32) clockwise: Sacrifice G3 Clockwise
Build G3 Clockwise
Build R2 Puddle
Build R3 Puddle

33) dsheldon: Trade G1 Y1 Droplet

34) clockwise: Move R3 Puddle Jerome

35) dsheldon: Move R1 Dsheldon Pascal

36) clockwise: Sacrifice R2 Puddle
Attack R1N Pascal
Attack G2N Jerome

37) dsheldon: Build B1 Dsheldon

38) clockwise: Discover Y2 Puddle B3 Machiavelli

39) dsheldon: Move B1 Dsheldon Greenback

40) clockwise: Sacrifice G2 Aristotle
Build Y3 Machiavelli
Build R2 Jerome

41) dsheldon: Build B2 Greenback

42) clockwise: Sacrifice Y2 Puddle
Move R3 Jerome Dsheldon
Move Y3 Machiavelli Dsheldon

43) dsheldon: Attack Y3S Dsheldon

44) clockwise: Sacrifice R2 Puddle
Attack Y3N Dsheldon
Attack G3N Dsheldon

45) dsheldon: Trade B1 G1 Dsheldon

46) clockwise: Sacrifice R2 Clockwise
Attack G1N Dsheldon
Attack Y1N Dsheldon
	dsheldon: I rather certain that I have absolutely no chance of winning this.  Actually, I've been pretty certain of that for a while...



8194)
Started: 2007.6.14, Ended: 2007.6.28
Participants: dayleh (S), MikeYarrum (N)
Winner: dayleh

1) MikeYarrum: Homeworld B3 R2 G3

2) dayleh: Homeworld B1 G2 Y3

3) MikeYarrum: Build G1 Mikeyarrum
	dayleh: Hi and GL
	MikeYarrum: Hello.

4) dayleh: Build Y1 Dayleh

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) dayleh: Trade Y1 R1 Dayleh

7) MikeYarrum: Build G1 Mikeyarrum

8) dayleh: Build Y1 Dayleh

9) MikeYarrum: Build G1 Mikeyarrum

10) dayleh: Build R1 Dayleh

11) MikeYarrum: Discover G1 Mikeyarrum B1 Tomo

12) dayleh: Trade Y3 G3 Dayleh

13) MikeYarrum: Trade G1 B1 Mikeyarrum

14) dayleh: Discover Y1 Dayleh G3 Erin

15) MikeYarrum: Build B2 Mikeyarrum

16) dayleh: Build Y1 Erin

17) MikeYarrum: Build Y2 Mikeyarrum

18) dayleh: Move Y1 Erin Dayleh

19) MikeYarrum: Build Y2 Mikeyarrum

20) dayleh: Sacrifice G3 Dayleh
Build Y2 Erin
Build Y3 Dayleh
Build Y3 Dayleh

21) MikeYarrum: Move Y1 Mikeyarrum Tomo

22) dayleh: Trade Y1 G1 Dayleh

23) MikeYarrum: Move B2 Mikeyarrum Tomo

24) dayleh: Move Y2 Erin Tomo

25) MikeYarrum: Build B2 Tomo

26) dayleh: Sacrifice R1 Dayleh
Attack B2 Tomo

27) MikeYarrum: Build B2 Tomo
Catastrophe Tomo Blue

28) dayleh: Build R1 Dayleh

29) MikeYarrum: Trade Y2 R2 Mikeyarrum

30) dayleh: Trade Y3 G3 Dayleh

31) MikeYarrum: Discover R2 Mikeyarrum G1 Osaka

32) dayleh: Discover G3 Dayleh Y3 Callie

33) MikeYarrum: Build Y1 Mikeyarrum

34) dayleh: Build Y1 Dayleh

35) MikeYarrum: Build Y2 Mikeyarrum

36) dayleh: Build Y2 Erin

37) MikeYarrum: Move Y2 Mikeyarrum Osaka

38) dayleh: Discover G1 Dayleh Y3 Kadon

39) MikeYarrum: Build G1 Mikeyarrum

40) dayleh: Trade R1 B1 Dayleh

41) MikeYarrum: Move B1 Mikeyarrum Osaka

42) dayleh: Move B1 Dayleh Erin

43) MikeYarrum: Build B2 Osaka

44) dayleh: Build B2 Erin

45) MikeYarrum: Discover Y2 Mikeyarrum R1 Kimura

46) dayleh: Discover Y2 Erin G2 Tammy

47) MikeYarrum: Move R2 Osaka Kadon

48) dayleh: Sacrifice G1 Kadon
Build R1 Dayleh

49) MikeYarrum: Move B1 Osaka Kadon

50) dayleh: Trade B2 G2 Erin

51) MikeYarrum: Build B2 Osaka

52) dayleh: Move R1 Dayleh Callie

53) MikeYarrum: Move G1 Mikeyarrum Kimura

54) dayleh: Sacrifice G2 Erin
Build R2 Dayleh
Build R3 Callie

55) MikeYarrum: Sacrifice G1 Kimura
Build R3 Kadon

56) dayleh: Sacrifice Y2 Tammy
Move R1 Dayleh Kadon
Move R2 Dayleh Kadon
Catastrophe Kadon Red

57) MikeYarrum: Trade B2 R2 Osaka

58) dayleh: Move G3 Callie Osaka

59) MikeYarrum: Sacrifice Y2 Osaka
Move R2 Osaka Callie
Move B2 Osaka Callie

60) dayleh: Attack B2N Callie

61) MikeYarrum: Attack B2 Callie

62) dayleh: Move R1 Callie Osaka

63) MikeYarrum: Build G1 Mikeyarrum

64) dayleh: Attack R2N Callie

65) MikeYarrum: Move B2 Callie Dayleh

66) dayleh: Sacrifice R1 Osaka
Attack B2N Dayleh

67) MikeYarrum: Move B1 Kadon Dayleh

68) dayleh: Trade B2 R2 Dayleh

69) MikeYarrum: Build B2 Dayleh

70) dayleh: Sacrifice R2 Callie
Attack B1N Dayleh
Attack B2N Dayleh

71) MikeYarrum: Move G1 Mikeyarrum Osaka

72) dayleh: Sacrifice Y1 Dayleh
Discover G3 Osaka Y3 Kadon

73) MikeYarrum: Trade Y1 R1 Mikeyarrum

74) dayleh: Move B2 Dayleh Kadon

75) MikeYarrum: Sacrifice G1 Osaka
Build Y1 Kimura

76) dayleh: Discover B2 Kadon G1 Tammy

77) MikeYarrum: Build G1 Mikeyarrum

78) dayleh: Sacrifice G3 Kadon
Build B2 Erin
Build B2 Dayleh
Build B3 Tammy

	MikeYarrum: Sorry, I didn't like any of my available moves. Good game, though.
	dayleh: Thanks for the game.  Good Luck with our other game.


8244)
Variants: "Hard time"
Started: 2007.6.12, Ended: 2007.7.2
Participants: zoltar (S), nycavri (N)
Winner: zoltar

1) nycavri: Homeworld Y1 B3 G3
	nycavri: Hello once again.  Let's see how far I've come since you first helped me learn the game..... it's not far according to the ratings!  TaGG.

2) zoltar: Homeworld R1 B2 G3

3) nycavri: Build G1 Nycavri
	zoltar: Nice to see you again!

4) zoltar: Build G1 Zoltar
	nycavri: I think I'm 0 for 12, including the first 5 losses you handed me.  But I'm sticking with it until I figure it out.....

5) nycavri: Trade G1 Y1 Nycavri

6) zoltar: Build G1 Zoltar
	zoltar: I went at least 0 for 12 until I've won a game.  And the three top players, TwoShort, Jesse, and AndyLooney, beat me almost every single game, though I've now beat each of them once.  Just keep playing.  

7) nycavri: Build G1 Nycavri

8) zoltar: Trade G1 Y1 Zoltar

9) nycavri: Build Y2 Nycavri

10) zoltar: Build Y2 Zoltar

11) nycavri: Discover Y2 Nycavri G2 Jep

12) zoltar: Discover Y1 Zoltar G3 Greenbelt

13) nycavri: Trade Y1 B1 Nycavri

14) zoltar: Build Y1 Zoltar

15) nycavri: Build B1 Nycavri

16) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenbelt
Build Y3 Greenbelt
Build Y3 Zoltar

17) nycavri: Move Y2 Jep Greenbelt
Catastrophe Greenbelt Y

18) zoltar: Discover Y2 Zoltar G3 Greenbelt

19) nycavri: Discover B1 Nycavri G2 Jlb

20) zoltar: Build Y1 Greenbelt

21) nycavri: Trade G1 R1 Nycavri

22) zoltar: Build Y2 Zoltar

23) nycavri: Build B1 Jlb

24) zoltar: Discover Y2 Zoltar B3 Bluemoon

25) nycavri: Build B2 Jlb

26) zoltar: Build Y2 Zoltar

27) nycavri: Build G1 Nycavri

28) zoltar: Trade Y3 G3 Zoltar

29) nycavri: Trade G3 Y3 Nycavri
	nycavri: Ooops.  Miscounted there.....

30) zoltar: Sacrifice G3 Zoltar
Build G1 Zoltar
Build Y3 Zoltar
Build Y3 Bluemoon

31) nycavri: Build R1 Nycavri

32) zoltar: Trade Y3 G3 Bluemoon

33) nycavri: Build R2 Nycavri

34) zoltar: Trade Y3 R3 Zoltar

35) nycavri: Discover R2 Nycavri G2 Rcl

36) zoltar: Build Y3 Bluemoon

37) nycavri: Sacrifice Y3 Nycavri
Move B1 Jlb Bluemoon
Move B1 Jlb Bluemoon
Move B2 Jlb Bluemoon
Catastrophe Bluemoon B

38) zoltar: Sacrifice Y2 Zoltar
Move Y2 Greenbelt Rcl
Move Y2 Rcl Nycavri

39) nycavri: Build G2 Nycavri

40) zoltar: Sacrifice R3 Zoltar
Attack G2 Nycavri
Attack R1 Nycavri
Attack R1 Nycavri

41) nycavri: Sacrifice R2 Rcl
Attack R1 Nycavri
Attack R1 Nycavri

42) zoltar: Build G2 Zoltar

43) nycavri: Discover R1 Nycavri Y2 Bdw

44) zoltar: Trade G2 R2 Zoltar
	zoltar: This is getting exciting.  Don't think I can pull out a win, but rather after all the pieces are traded off, I'm hoping to end up with the edge with some extra small pieces.

45) nycavri: Move R1 Bdw Greenbelt

46) zoltar: Sacrifice R2 Zoltar
Attack R1 Greenbelt
Attack R1 Nycavri

47) nycavri: Build B1 Nycavri

48) zoltar: Build G2 Zoltar

49) nycavri: Discover B1 Nycavri Y2 Cmg

50) zoltar: Attack G1 Nycavri
	zoltar: Now you're in trouble!
	nycavri: I was already in trouble.  You had any number of 2 move wins.

51) nycavri: Discover B1 Cmg G3 Ct

52) zoltar: Attack B1 Nycavri

	zoltar: gg


8255)
Variants: "Hard time"
Started: 2007.6.14, Ended: 2007.9.29
Participants: zoltar (S), jeep (N)
Winner: zoltar

1) jeep: Homeworld Y1 B2 G3
	jeep: Hello again.
	jeep: I prefer going second.  I like being able to react to my opponents opening... esp when my opponent is a stronger player than I am.

2) zoltar: Homeworld B1 R3 G3
	zoltar: h b1 r3 g3

3) jeep: Build G1 Jeep
	zoltar: Hi again!
	jeep: Wow, that opening has taken off like wildfire.
	zoltar: Which opening?  The banker (yours) or mine?  Or using B-R stars?  I still suck at openings, and the good players (TwoShort, Jesse, and Andy Looney) get the advantage early every game before I know what hit me.  The banker opening you are using Andy thinks is strongest, but TwoShort devastates me in the opening every game when I play it.  Unlike with chess, where I have several opening books on my bookshelf, there ain't no book openings or, as the Japenese say, 'joseki' for this game yet.
	jeep: Yours.  I've heard TwoShort say he thought that Traveller was stronger than Banker.

4) zoltar: Build G1 Zoltar

5) jeep: Trade G1 Y1 Jeep

6) zoltar: Build G1 Zoltar
	zoltar: Aha! I just saw a comment of his spying on his game with you. I didn't even know it was called the "Traveler", as I've been calling it "Goldilocks" because it's between the Banker and the Fortress where you are barricaded behind the scarce 1-pip stars.  Well, I'm only using it because TwoShort beats me every time with it; but  then again, he beats me with the Banker every time as well. 

7) jeep: Build Y1 Jeep

8) zoltar: Trade G3 Y3 Zoltar

9) jeep: Trade Y1 G1 Jeep

10) zoltar: Build G2 Zoltar
	jeep: Hmm... This is quickly going downhill already
	zoltar: Well, I do get to sneak in the first 2-pip piece.

11) jeep: Discover G1 Jeep B3 Moon

12) zoltar: Trade G1 R1 Zoltar

13) jeep: Build G1 Jeep

14) zoltar: Trade G1 B1 Zoltar

15) jeep: Build G1 Moon

16) zoltar: Build G2 Zoltar

17) jeep: Sacrifice G3 Jeep
Build G2 Jeep
Build G3 Jeep
Build G3 Moon

18) zoltar: Build G3 Zoltar

19) jeep: Trade G1 R1 Jeep
	zoltar: Looks like you may have taken the lead back!

20) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo
	jeep: We'll see...

21) jeep: Trade G1 Y1 Moon

22) zoltar: Build Y2 Zoltar

23) jeep: Build Y2 Moon

24) zoltar: Discover Y2 Zoltar B2 Bloohoohoo

25) jeep: Trade Y1 R1 Moon

26) zoltar: Move R1 Zoltar Yabbadabbadoo

27) jeep: Discover Y1 Jeep B3 Changer

28) zoltar: Build R2 Yabbadabbadoo

29) jeep: Build R2 Moon

30) zoltar: Move R2 Yabbadabbadoo Changer

31) jeep: Sacrifice G3 Moon
Build Y1 Changer
Build Y3 Changer
Build Y3 Moon

32) zoltar: Move Y2 Bloohoohoo Changer
Catastrophe Changer Y
	zoltar: Yep, good move.  I'm in bad shape this game.

33) jeep: Move Y3 Moon Yabbadabbadoo

34) zoltar: Sacrifice G2 Yabbadabbadoo
Build R2 Yabbadabbadoo
Build R3 Changer

35) jeep: Sacrifice R2 Moon
Attack R2S Yabbadabbadoo
Attack R1S Yabbadabbadoo

36) zoltar: Trade R2 Y2 Changer

37) jeep: Move G1 Moon Yabbadabbadoo
	jeep: That was a tough choice... no idea if it was correct or not.

38) zoltar: Build Y1 Zoltar

39) jeep: Trade R1 B1 Moon

40) zoltar: Sacrifice Y3 Zoltar
Move Y1 Zoltar Yabbadabbadoo
Move Y2 Changer Yabbadabbadoo
Discover B1 Zoltar G2 Greenslime
Catastrophe Yabbadabbadoo Y

41) jeep: Build G1 Jeep

42) zoltar: Sacrifice G2 Zoltar
Build R1 Changer
Build B2 Greenslime

43) jeep: Move G1 Jeep Moon

44) zoltar: Trade B2 Y2 Greenslime

45) jeep: Build Y1 Moon

46) zoltar: Build B2 Greenslime

47) jeep: Discover B1 Moon G2 Grower

48) zoltar: Trade R3 G3 Changer

49) jeep: Build B2 Grower

50) zoltar: Discover B1 Greenslime Y1 Yabbadabbadoo
	zoltar: Oh, I can't find anything better...

51) jeep: Discover G2 Jeep B3 Moon2

52) zoltar: Build Y2 Greenslime

53) jeep: Move Y2 Moon Grower

54) zoltar: Trade Y2 R2 Greenslime

55) jeep: Build G1 Moon

56) zoltar: Build G1 Changer

57) jeep: Sacrifice G2 Moon2
Build G2 Jeep
Build B3 Grower

58) zoltar: Move B1 Yabbadabbadoo Grower
Catastrophe Grower B

59) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y1 Moon
Build Y2 Grower

60) zoltar: Sacrifice G3 Changer
Build G3 Changer
Build Y3 Greenslime
Build R1 Changer

61) jeep: Sacrifice Y2 Grower
Move Y1 Moon Greenslime
Move Y1 Moon Greenslime
Catastrophe Greenslime Y
	jeep: Hmm... I guess I wasn't paying attention. I thought you'd have to sac your y2 in GreenSlime to do that.

62) zoltar: Sacrifice G3 Changer
Build G3 Changer
Build B1 Greenslime
Build B1 Greenslime

63) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y1 Grower
Build Y1 Grower
	jeep: Hmm... I forgot you could make a R1... I shouldn't allow myself to get so rushed.  ;)

64) zoltar: T B2 Y2 Greenslime

65) jeep: Move Y1 Grower Moon
	zoltar: This is complicated -- maybe I shouldn't be so rushed either.

66) zoltar: Sacrifice G3 Changer
Build G3 Zoltar
Build R2 Changer
Build B2 Greenslime

67) jeep: Move R1 Jeep Changer
Catastrophe Changer R

68) zoltar: Sacrifice G3 Zoltar
Build G3 Changer
Build R1 Greenslime
Build R1 Greenslime

69) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y2 Grower
Build Y3 Moon

70) zoltar: Sacrifice Y2 Greenslime
Move G1 Changer Jeep
Move G3 Changer Jeep
Catastrophe Jeep G

	zoltar: Or can you? I'll have to look at this some more...
	zoltar: No, you can't.  If I just move the g3 in, you sac a y2, and move a g1 and y3 into your homeworld and blow up the greens, leaving you with a y3 defending.  But I still can send both the g3 and the g1 in immediately for a bluebird checkmate!
	jeep: Oops.  Thanks for the game.


8227)
Started: 2007.6.14, Ended: 2007.6.26
Participants: ts52 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R2 B3 G3

2) ts52: Homeworld Y1 B2 G3

3) zoltar: Build G1 Zoltar
	ts52: Have a great game!

4) ts52: Build G1 Ts52
	zoltar: You as well, human bean!

5) zoltar: Trade G1 Y1 Zoltar

6) ts52: Trade G1 Y1 Ts52

7) zoltar: Build Y2 Zoltar

8) ts52: Discover Y1 Ts52 G3 Kermit

9) zoltar: Trade Y1 R1 Zoltar

10) ts52: Build G1 Ts52

11) zoltar: Build G1 Zoltar

12) ts52: Trade G1 R1 Ts52

13) zoltar: Trade G1 B1 Zoltar

14) ts52: Build G1 Ts52

15) zoltar: Build B1 Zoltar

16) ts52: Trade G1 B1 Ts52

17) zoltar: Discover B1 Zoltar G1 Greenpea

18) ts52: Move B1 Ts52 Kermit

19) zoltar: Build B2 Greenpea

20) ts52: Build B2 Kermit

21) zoltar: Build B3 Zoltar

22) ts52: Trade B2 Y2 Kermit
	zoltar: I think I can get away with building a Big Blue.

23) zoltar: Sacrifice B1 Zoltar
Trade B2 Y2 Greenpea

24) ts52: Build G1 Ts52

25) zoltar: Move R1 Zoltar Greenpea

26) ts52: Discover Y1 Kermit G2 Wikket

27) zoltar: Build G1 Zoltar

28) ts52: Build G2 Ts52

29) zoltar: Discover B3 Zoltar R1 Redwarf

30) ts52: Build R2 Ts52

31) zoltar: Trade B3 Y3 Redwarf

32) ts52: Discover G2 Ts52 Y3 Bigstar

33) zoltar: Sacrifice G3 Zoltar
Build Y1 Greenpea
Build Y3 Zoltar
Build R2 Greenpea

34) ts52: Move R1 Ts52 Kermit

35) zoltar: Move Y3 Redwarf Kermit

36) ts52: Sacrifice Y2 Kermit
Move B1 Kermit Wikket
Move R1 Kermit Wikket

37) zoltar: Move Y3 Kermit Wikket

38) ts52: Sacrifice G3 Ts52
Build G2 Bigstar
Build G3 Ts52
Build G3 Bigstar

39) zoltar: Sacrifice Y2 Greenpea
Move G1 Zoltar Greenpea
Move G1 Greenpea Bigstar
Catastrophe Bigstar G

40) ts52: Build Y2 Wikket

41) zoltar: Sacrifice B1 Greenpea
Trade Y3 G3 Wikket

42) ts52: Discover Y2 Wikket B1 Dot

43) zoltar: Sacrifice R2 Greenpea
Attack R1 Wikket
Attack Y1 Wikket

44) ts52: Sacrifice G1 Ts52
Build Y2 Dot

45) zoltar: Trade Y3 G3 Zoltar

46) ts52: Build G1 Ts52

47) zoltar: Sacrifice G3 Wikket
Build Y3 Wikket
Build Y3 Greenpea
Build Y3 Zoltar

48) ts52: Discover G1 Ts52 G3 Easygreen

49) zoltar: Trade Y3 R3 Zoltar

50) ts52: Move Y2 Dot Easygreen

51) zoltar: Build Y3 Zoltar

52) ts52: Move G1 Easygreen Dot

53) zoltar: Move R3 Zoltar Dot

54) ts52: Sacrifice Y2 Dot
Move G1 Dot Easygreen
Pass

55) zoltar: Build Y2 Zoltar

56) ts52: Build G1 Ts52
	zoltar: With five Battlestars, I'm finally feeling safe...

57) zoltar: Attack B1 Wikket

58) ts52: Discover G1 Ts52 B3 Saphire
	ts52: Is that all it takes... :(

59) zoltar: Build G2 Zoltar

60) ts52: Build G2 Ts52
	zoltar: Wikket is mine! All mine!

61) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Wikket
Build B2 Wikket

62) ts52: Trade G2 B2 Ts52

63) zoltar: Discover B1 Wikket R3 Attackoutpost

64) ts52: Move B2 Ts52 Easygreen

65) zoltar: Sacrifice G2 Zoltar
Build G2 Zoltar
Build B3 Attackoutpost

66) ts52: Discover G1 Easygreen R1 Lasthope
	ts52: Subtle.

67) zoltar: Move Y3 Wikket Saphire

68) ts52: Build G2 Lasthope

69) zoltar: Sacrifice G2 Zoltar
Build R2 Greenpea
Build R3 Wikket

70) ts52: Move Y2 Easygreen Lasthope
	zoltar: With six Battlestars, I can go on the offensive!

71) zoltar: Move Y3 Zoltar Lasthope
	zoltar: But I need that 7th one to really feel confident...

72) ts52: Sacrifice Y2 Lasthope
Move G1 Lasthope Zoltar
Move G2 Lasthope Zoltar
	ts52: I can see that.

73) zoltar: Sacrifice R2 Greenpea
Attack G1 Zoltar
Attack G2 Zoltar
	zoltar: Now the Zoltarian Death Fleet is complete!  Prepare for battle!
	ts52: well, this should be quick...

74) ts52: Build G2 Ts52

75) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Saphire
Build R2 Greenpea
	zoltar: Attttackkkkk!!!
	zoltar: Reziztanz ease few tile!

76) ts52: Sacrifice G1 Saphire
Build G1 Ts52

77) zoltar: Sacrifice Y2 Zoltar
Move B2 Wikket Easygreen
Move Y1 Greenpea Easygreen
	zoltar: Your green ships have been assimilated. 

78) ts52: Sacrifice R2 Ts52
Attack B2N Easygreen
Attack Y1N Easygreen
	ts52: All according to plan?

79) zoltar: Sacrifice Y3 Lasthope
Move G1 Zoltar Dot
Move G1 Dot Saphire
Move G1 Saphire Ts52
Catastrophe Ts52 G

	zoltar: Good Game.  My 7 battlestars proved effective in the end!
	ts52: Indeed. Thanks for the game.


8148)
Variants: "Hard time"
Started: 2007.6.14, Ended: 2007.7.9
Participants: Jesse (S), zoltar (N)
Winner: Jesse

1) zoltar: Homeworld Y1 B2 G3

2) Jesse: Homeworld R3 B1 G3

3) zoltar: Build G1 Zoltar

4) Jesse: Build G1 Jesse

5) zoltar: Trade G1 Y1 Zoltar

6) Jesse: Trade G3 Y3 Jesse

7) zoltar: Build G1 Zoltar

8) Jesse: Build G1 Jesse

9) zoltar: Trade G1 R1 Zoltar

10) Jesse: Trade G1 R1 Jesse

11) zoltar: Build G1 Zoltar

12) Jesse: Build G1 Jesse

13) zoltar: Trade G1 B1 Zoltar

14) Jesse: Trade G1 B1 Jesse

15) zoltar: Discover B1 Zoltar G3 Greenbelt

16) Jesse: Build Y1 Jesse

17) zoltar: Build B2 Greenbelt

18) Jesse: Discover B1 Jesse G2 Cloud

19) zoltar: Trade B2 Y2 Greenbelt

20) Jesse: Build B2 Cloud

21) zoltar: Build Y2 Greenbelt

22) Jesse: Trade B2 Y2 Cloud

23) zoltar: Trade Y2 R2 Greenbelt

24) Jesse: Discover Y1 Jesse G2 Armchair

25) zoltar: Discover Y1 Zoltar G3 Greenhills

26) Jesse: Build Y2 Cloud

27) zoltar: Build Y3 Greenbelt

28) Jesse: Build Y3 Armchair

29) zoltar: Move Y2 Greenbelt Cloud

30) Jesse: Sacrifice Y2 Cloud
Discover Y2 Cloud R3 Electrodynamics
Move B1 Cloud Electrodynamics

31) zoltar: Build Y2 Greenbelt

32) Jesse: Discover Y1 Armchair B3 Lamppost

33) zoltar: Build B2 Greenbelt

34) Jesse: Move B1 Electrodynamics Armchair

35) zoltar: Move B1 Greenbelt Cloud

36) Jesse: Move R1 Jesse Armchair



7959)
Variants: "Hard time"
Started: 2007.6.14, Ended: 2007.7.12
Participants: zoltar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) zoltar: Homeworld B1 Y2 G3
	TwoShort: Did you mean to start two games?
	zoltar: No, I didn't, but may as well

3) TwoShort: Build G1 Twoshort

4) zoltar: Build G1 Zoltar

5) TwoShort: Trade G1 Y1 Twoshort

6) zoltar: Trade G1 Y1 Zoltar

7) TwoShort: Build G1 Twoshort

8) zoltar: Build G1 Zoltar

9) TwoShort: Build Y1 Twoshort

10) zoltar: Discover Y1 Zoltar G3 Greenbelt

11) TwoShort: Build Y2 Twoshort

12) zoltar: Build Y2 Greenbelt

13) TwoShort: Discover Y1 Twoshort G2 Grogar

14) zoltar: Discover Y2 Greenbelt G2 Greenhills

15) TwoShort: Trade Y2 R2 Twoshort

16) zoltar: Trade G1 R1 Zoltar

17) TwoShort: Discover G1 Twoshort B2 Bluestar

18) zoltar: Build G1 Zoltar

19) TwoShort: Build G1 Twoshort

20) zoltar: Trade G1 B1 Zoltar

21) TwoShort: Trade G1 B1 Twoshort

22) zoltar: Build B2 Zoltar

23) TwoShort: Move B1 Twoshort Grogar

24) zoltar: Move B2 Zoltar Greenbelt

25) TwoShort: Build G1 Twoshort

26) zoltar: Build G1 Zoltar

27) TwoShort: Build B2 Grogar

28) zoltar: Build B3 Greenbelt

29) TwoShort: Discover B1 Grogar Y3 Yoyodyne

30) zoltar: Trade B2 R2 Greenbelt

31) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build B2 Yoyodyne
Build Y3 Twoshort

32) zoltar: Build B3 Greenbelt

33) TwoShort: Sacrifice Y2 Grogar
Move B1 Yoyodyne Zoltar
Move B2 Yoyodyne Zoltar
Catastrophe Zoltar Blue

34) zoltar: Trade B3 Y3 Greenbelt

35) TwoShort: Build G2 Twoshort
	zoltar: Well, that just about does it for me! :(
	TwoShort: Whereas I just see a minefield of ways I could screw up and give you the opening blow up my 3 point...  I think I see the path though.
 

36) zoltar: Sacrifice Y3 Greenbelt
Move Y1 Greenbelt Greenhills
Move Y1 Greenhills Twoshort
Move Y2 Greenhills Twoshort
Catastrophe Twoshort Y

37) TwoShort: Build G2 Bluestar

38) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build R1 Greenbelt
	TwoShort: Gah! I thought I had a plan if you did that, but now it doesn't work.

39) TwoShort: Sacrifice Y1 Grogar
Move G1 Twoshort Zoltar
Catastrophe Zoltar Green

40) zoltar: Trade R2 Y2 Greenbelt
	zoltar: Well, it was my only move -- I'm still in deep trouble

41) TwoShort: Trade G2 Y2 Bluestar
	zoltar: Oops -- well, so much for that

42) zoltar: Sacrifice Y2 Greenbelt
Move B3 Greenbelt Bluestar
Move B3 Bluestar Twoshort

43) TwoShort: Sacrifice Y2 Bluestar
Move R2 Twoshort Zoltar
Move G1 Bluestar Twoshort
	TwoShort: I think you've got me...

	zoltar: Well, I was going to resign when you blew up my greens, but kept playing as to not piss you off.  If I had a chance in this game, I didn't see it.  At least I got to put a piece in your homeworld before I died.
	TwoShort: I feel bad that I got upset in that other game.  I over-reacted an I apologize.  It's obviously your right to resign if you don't think you can win, but this game is a good example of why I don't think you should.  If you built an r2 at Greenbelt, and (depending what I did) moved your b3 home before attacking, I didn't see a way to stop you.  
	zoltar: I'll have to set up the position and check it out.  I was still demoralized by missing that you could take out all my greens earlier.


8264)
Variants: "Hard time"
Started: 2007.6.14, Ended: 2007.7.15
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld Y1 B2 G3

2) TwoShort: Homeworld R1 B3 G3

3) zoltar: Build G1 Zoltar

4) TwoShort: Build G1 Twoshort

5) zoltar: Trade G1 Y1 Zoltar

6) TwoShort: Trade G1 Y1 Twoshort

7) zoltar: Build Y2 Zoltar

8) TwoShort: Build Y2 Twoshort

9) zoltar: Discover Y1 Zoltar G3 Greenbelt

10) TwoShort: Discover Y1 Twoshort G2 Twisty

11) zoltar: Build G1 Zoltar

12) TwoShort: Build G1 Twoshort

13) zoltar: Discover Y2 Zoltar B3 Bloohoohoo

14) TwoShort: Discover G1 Twoshort G2 Grozilla

15) zoltar: Trade G1 R1 Zoltar

16) TwoShort: Build G1 Twoshort

17) zoltar: Build R1 Zoltar

18) TwoShort: Sacrifice G3 Twoshort
Build G1 Grozilla
Build G2 Twoshort
Build G3 Twoshort

19) zoltar: Build R2 Zoltar

20) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twisty
Build Y3 Twoshort
Build G3 Twoshort

21) zoltar: Build Y3 Greenbelt

22) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Twisty Greenbelt
Move Y2 Twisty Greenbelt
Catastrophe Greenbelt Yellow

23) zoltar: Trade Y2 G2 Bloohoohoo

24) TwoShort: Trade G2 R2 Twoshort

25) zoltar: Trade R2 Y2 Zoltar

26) TwoShort: Discover G1 Twoshort B2 Bluonia

27) zoltar: Build R2 Zoltar

28) TwoShort: Sacrifice G1 Grozilla
Build G1 Twoshort

29) zoltar: Discover R1 Zoltar G3 Goodgrief

30) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Bluonia
Build Y1 Twoshort

31) zoltar: Discover R2 Zoltar Y3 Yuck

32) TwoShort: Discover Y1 Twoshort B2 Bluestar

33) zoltar: Sacrifice G3 Zoltar
Build R2 Yuck
Build R3 Zoltar
Build G3 Bloohoohoo

34) TwoShort: Sacrifice G3 Bluonia
Build Y1 Bluestar
Build Y2 Twoshort
Build G3 Bluonia

35) zoltar: Sacrifice G3 Bloohoohoo
Build G3 Bloohoohoo
Build R3 Goodgrief
Build R3 Zoltar

36) TwoShort: Sacrifice G3 Bluonia
Build G3 Bluonia
Build Y2 Twoshort
Build Y3 Bluestar

37) zoltar: Move R3 Zoltar Bloohoohoo

38) TwoShort: Move Y2 Twoshort Bluonia

39) zoltar: Move Y2 Zoltar Bloohoohoo

40) TwoShort: Trade Y1 B1 Bluestar

41) zoltar: Trade G3 B3 Bloohoohoo
	zoltar: m y2 zoltar bloohoohoo

42) TwoShort: Trade G1 B1 Bluonia

43) zoltar: Move R2 Yuck Grozilla

44) TwoShort: Sacrifice Y2 Twoshort
Move B1 Bluonia Bloohoohoo
Move B1 Bluestar Bloohoohoo
Catastrophe Bloohoohoo Blue

45) zoltar: Build R3 Grozilla

46) TwoShort: Sacrifice G3 Bluonia
Build Y1 Twoshort
Build Y2 Twoshort
Build Y2 Bluonia

	zoltar: Yep, I'm dead in this one too.  Good game.


7874)
Started: 2007.6.19, Ended: 2007.7.10
Participants: sudosub (S), dayleh (W), MikeYarrum (N), zoltar (E)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B3 R2 G3
	dayleh: Hello All .. and Good Luck
	MikeYarrum: Ships away!

2) zoltar: Homeworld B1 R2 G3

3) dayleh: Homeworld Y1 B2 G3

4) MikeYarrum: Build G1 Mikeyarrum

5) zoltar: Build G1 Zoltar
	MikeYarrum: Oh my, I forgot about this game... squeezed in with six hours left!

6) dayleh: Build G1 Dayleh

7) MikeYarrum: Build G1 Mikeyarrum

8) zoltar: Trade G1 Y1 Zoltar

9) dayleh: Trade G1 Y1 Dayleh

10) MikeYarrum: Trade G1 Y1 Mikeyarrum

11) zoltar: Build G1 Zoltar

12) dayleh: Build G1 Dayleh

13) MikeYarrum: Build G1 Mikeyarrum

14) zoltar: Trade G1 R1 Zoltar

15) dayleh: Build G1 Dayleh

16) MikeYarrum: Discover G1 Mikeyarrum B1 Kaorin

17) zoltar: Build R1 Zoltar

18) dayleh: Trade G1 R1 Dayleh

19) MikeYarrum: Build G1 Kaorin

20) zoltar: Trade R1 B1 Zoltar

21) dayleh: Build R1 Dayleh

22) MikeYarrum: Trade G1 R1 Kaorin

23) zoltar: Build G1 Zoltar

24) dayleh: Discover Y1 Dayleh G3 Kadon

25) MikeYarrum: Discover G1 Mikeyarrum B1 Chihiro

26) zoltar: Discover B1 Zoltar G3 Yabbadabbadoo

27) dayleh: Discover G1 Dayleh Y3 Callie

28) MikeYarrum: Build R1 Kaorin

29) zoltar: Trade R1 B1 Zoltar

30) dayleh: Move R1 Dayleh Yabbadabbadoo

31) MikeYarrum: Trade R1 Y1 Kaorin

32) zoltar: Build B2 Yabbadabbadoo

33) dayleh: Build Y2 Kadon

34) MikeYarrum: Build Y2 Kaorin

35) zoltar: Trade B2 R2 Yabbadabbadoo

36) dayleh: Sacrifice Y1 Kadon
Discover R1 Yabbadabbadoo G2 Erin

37) MikeYarrum: Build R1 Kaorin

38) zoltar: Build B2 Yabbadabbadoo

39) dayleh: Move Y2 Kadon Chihiro

40) MikeYarrum: Sacrifice G1 Chihiro
Build G1 Kaorin

41) zoltar: Trade B2 Y2 Yabbadabbadoo

42) dayleh: Trade Y2 G2 Chihiro

43) MikeYarrum: Build G1 Mikeyarrum

44) zoltar: Discover G1 Zoltar B3 Bloohoohoo

45) dayleh: Build G2 Chihiro

46) MikeYarrum: Discover R1 Kaorin G3 Boynamo

47) zoltar: Build G2 Zoltar

48) dayleh: Build G2 Dayleh

49) MikeYarrum: Discover Y1 Kaorin B3 Rachael

50) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B2 Yabbadabbadoo
Build B2 Yabbadabbadoo

51) dayleh: Trade G2 Y2 Chihiro

52) MikeYarrum: Move G1 Kaorin Rachael

53) zoltar: Sacrifice G3 Zoltar
Build G2 Bloohoohoo
Build G3 Zoltar
Build B2 Zoltar

54) dayleh: Sacrifice G3 Dayleh
Build G3 Dayleh
Build R1 Erin
Build R2 Dayleh

55) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G3 Mikeyarrum
Build R2 Boynamo
Build R3 Kaorin

56) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Yabbadabbadoo
Build Y1 Yabbadabbadoo

57) dayleh: Sacrifice Y2 Chihiro
Move R1 Erin Yabbadabbadoo
Move R1 Erin Yabbadabbadoo
Catastrophe Yabbadabbadoo Red

58) MikeYarrum: Build Y2 Rachael

59) zoltar: Sacrifice Y2 Yabbadabbadoo
Move G2 Bloohoohoo Dayleh
Move G1 Bloohoohoo Dayleh
Catastrophe Dayleh G

60) dayleh: Trade R2 G2 Dayleh

61) MikeYarrum: Build Y2 Kaorin

62) zoltar: Move B2 Zoltar Callie

63) dayleh: Trade G2 Y2 Chihiro

64) MikeYarrum: Move R3 Kaorin Yabbadabbadoo
	zoltar: Back at'cha!

65) zoltar: Discover Y1 Yabbadabbadoo G2 Hubbahubbahubba
	dayleh: Ouch.  Nice move.

66) dayleh: Build R1 Dayleh

67) MikeYarrum: Attack B2E Yabbadabbadoo

68) zoltar: Sacrifice G3 Zoltar
Build B2 Yabbadabbadoo
Build B3 Callie
Build B3 Zoltar
Catastrophe Yabbadabbadoo B

69) dayleh: Build G1 Dayleh

70) MikeYarrum: Build G2 Rachael

71) zoltar: Sacrifice G2 Zoltar
Build Y2 Zoltar
Build Y3 Hubbahubbahubba

72) dayleh: Sacrifice G2 Dayleh
Build Y3 Chihiro
Build G2 Dayleh
	MikeYarrum: I used to worry about capitalization, too - looks much nicer. Then I decided it would be more science-fictiony to enter my commands in all caps.

73) MikeYarrum: Build Y3 Mikeyarrum

74) zoltar: Sacrifice B2 Callie
Trade Y3 R3 Hubbahubbahubba
Trade B3 G3 Zoltar

75) dayleh: Trade Y3 G3 Chihiro

76) MikeYarrum: Discover Y2 Rachael G2 Perapera

77) zoltar: Build Y3 Hubbahubbahubba

78) dayleh: Build Y3 Chihiro

79) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Kaorin
Build G3 Mikeyarrum
Build Y3 Rachael

80) zoltar: Sacrifice Y2 Zoltar
Move B3 Callie Dayleh
Move Y3 Hubbahubbahubba Boynamo

81) dayleh: Trade R1 B1 Dayleh

82) MikeYarrum: Sacrifice Y1 Mikeyarrum
Move R3 Yabbadabbadoo Kaorin

83) zoltar: Sacrifice R3 Hubbahubbahubba
Attack R2N Boynamo
Attack B1W Dayleh
Attack G2W Dayleh

84) zoltar: Move B3 Dayleh Callie

85) MikeYarrum: Sacrifice Y2 Kaorin
Move R3 Kaorin Boynamo
Move R3 Boynamo Chihiro

	zoltar: Yep, that about does it for me.  No chance at this point.  If I build the G3 you just blow all my greens up and I'm dead in the water.  Good game!
	MikeYarrum: Thanks for playing, everyone! It didn't turn out as smoothly as the 1 day clock Zendo game, though.
	zoltar: No, it didn't.  My mistake was to attack, as after I trash dayleh's homeworld, you get to mop up and end up with all the big ships and I'm too weak to rebuild.  I had to, after my initial weakening of his forces, ignored him and built up.  I am terrible at these multi-player games and I always seem to choose the wrong strategy and tactics.
	zoltar: Thanks for the game.


8374)
Started: 2007.6.19, Ended: 2007.7.27
Participants: MatrixFrog (S), DaDRK (N)
Winner: DaDRK

1) DaDRK: Homeworld R3 G1 B3

2) MatrixFrog: Homeworld G1 B2 Y3
	DaDRK: hello again, good luck on the game :)

3) DaDRK: Build B1 Dadrk

4) MatrixFrog: Build Y1 Matrixfrog

5) DaDRK: Build B1 Dadrk

6) MatrixFrog: Build Y1 Matrixfrog

7) DaDRK: Trade B1 Y1 Dadrk

8) MatrixFrog: Trade Y1 R1 Matrixfrog

9) DaDRK: Build B1 Dadrk

10) MatrixFrog: Discover Y1 Matrixfrog G3 Gandalf

11) DaDRK: Discover B1 Dadrk G2 Frst

12) MatrixFrog: Build Y1 Gandalf

13) DaDRK: Build Y2 Dadrk

14) MatrixFrog: Build Y2 Matrixfrog

15) DaDRK: Trade Y2 R2 Dadrk

16) MatrixFrog: Discover Y1 Gandalf B2 Frodo

17) DaDRK: Move R2 Dadrk Frodo

18) MatrixFrog: Discover Y1 Frodo G1 Bilbo

19) DaDRK: Build B1 Frst

20) MatrixFrog: Build Y2 Bilbo
	MatrixFrog: I don't know how many character names I'm going to be able to remember...
	DaDRK: hehe

21) DaDRK: Trade B1 R1 Dadrk

22) MatrixFrog: Discover Y2 Bilbo B2 Elves

23) DaDRK: Trade B1 R1 Frst

24) MatrixFrog: Move Y1 Gandalf Elves

25) DaDRK: Build Y2 Dadrk
	DaDRK: hmm don't know how to proceed from this point
	MatrixFrog: Homeworlds is very open sometimes. You have a zillion things you COULD do, but which one is going to actually be useful?

26) MatrixFrog: Move Y1 Elves Dadrk

27) DaDRK: Sacrifice Y2 Dadrk
Move Y1 Dadrk Frodo
Move R2 Frodo Bilbo

28) MatrixFrog: Build Y2 Bilbo

29) DaDRK: Attack Y2 Bilbo

30) MatrixFrog: Build Y3 Bilbo

31) DaDRK: Build Y3 Bilbo
Catastrophe Bilbo Y

32) MatrixFrog: Build Y1 Dadrk

33) DaDRK: Sacrifice R2 Bilbo
Attack Y1 Dadrk
Attack Y1 Dadrk

34) MatrixFrog: Build R2 Matrixfrog

35) DaDRK: Build R2 Frst

36) MatrixFrog: Build Y2 Matrixfrog

37) DaDRK: Move Y1 Dadrk Frst

38) MatrixFrog: Discover Y2 Matrixfrog G3 Gigawatt

39) DaDRK: Build Y3 Dadrk

40) MatrixFrog: Build Y3 Gigawatt

41) DaDRK: Discover R2 Frst R3 Scnd

42) MatrixFrog: Trade R1 B1 Matrixfrog

43) DaDRK: Sacrifice Y3 Dadrk
Move R1 Dadrk Frodo
Move R2 Scnd Frodo
Move R2 Frodo Gigawatt

44) MatrixFrog: Move Y2 Gigawatt Frodo

45) DaDRK: Build Y3 Dadrk

46) MatrixFrog: Sacrifice R2 Matrixfrog
Attack R1 Frodo
Attack Y1 Frodo

47) DaDRK: Build B1 Frst

48) MatrixFrog: Trade Y3 G3 Matrixfrog

49) DaDRK: Build Y3 Frst

50) MatrixFrog: Build G1 Matrixfrog

51) DaDRK: Build B3 Dadrk

52) MatrixFrog: Sacrifice Y2 Elves
Move Y2 Frodo Dadrk
Move Y1 Frodo Dadrk
Catastrophe Dadrk Y

53) DaDRK: Sacrifice Y3 Frst
Move B1 Frst Gigawatt
Move B1 Gigawatt Matrixfrog
Move R2 Gigawatt Matrixfrog

54) MatrixFrog: Discover G1 Matrixfrog Y3 Cheese

55) DaDRK: Trade R2 B2 Matrixfrog
Catastrophe Matrixfrog Blue

56) MatrixFrog: Build Y1 Matrixfrog

57) DaDRK: Build R1 Frst

58) MatrixFrog: Trade R1 B1 Frodo

59) DaDRK: Move R1 Frst Cheese

60) MatrixFrog: Sacrifice G1 Cheese
Build G1 Matrixfrog

61) DaDRK: Build R1 Frst

62) MatrixFrog: Sacrifice B1 Frodo
Trade G1 B1 Matrixfrog

63) DaDRK: Trade R1 G1 Frst

64) MatrixFrog: Build B1 Matrixfrog
	DaDRK: funny move :p
	MatrixFrog: I love doing that. I feel so clever. I've only played this with real pieces a few times, but I think I would actually move the piece to the stash, then take it out again.

65) DaDRK: Trade B3 G3 Dadrk

66) MatrixFrog: Move Y3 Gigawatt Frst
	DaDRK: would probably work like that

67) DaDRK: Move G1 Frst Matrixfrog

68) MatrixFrog: Trade G3 R3 Matrixfrog

69) DaDRK: Sacrifice G3 Dadrk
Build G2 Matrixfrog
Build G2 Matrixfrog
Build G3 Matrixfrog
Catastrophe Matrixfrog Green

	DaDRK: gg
	DaDRK: quick question, how does this rating system work?
	MatrixFrog: I don't know the details, but obviously your rating goes up if you win, down if you lose. If you win against a better player, your rating goes up more than against a so-so player. The exact formulas, I don't know.


8271)
Started: 2007.6.19, Ended: 2007.6.29
Participants: DaDRK (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B2 Y1 G3

2) DaDRK: Homeworld R3 G1 B3

3) MikeYarrum: Build G1 Mikeyarrum

4) DaDRK: Build B1 Dadrk

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) DaDRK: Build B1 Dadrk
	DaDRK: a little late but good luck

7) MikeYarrum: Build Y1 Mikeyarrum
	MikeYarrum: Thanks, you too!

8) DaDRK: Trade B1 G1 Dadrk

9) MikeYarrum: Discover Y1 Mikeyarrum G3 Sakaki

10) DaDRK: Build G1 Dadrk

11) MikeYarrum: Build Y2 Sakaki

12) DaDRK: Build G2 Dadrk

13) MikeYarrum: Build G2 Mikeyarrum
Catastrophe Dadrk Green
	MikeYarrum: You may want to undo that move. Now that you have four green pieces in a system, I can cause a catastrophe at the end of my turn.
	MikeYarrum: Sorry - waited as long as I could.

	DaDRK: I actually thought I undid that, oh well
	DaDRK: well good game I don't think I can do much now, thanks for the game even if I did such a stupid move.
	MikeYarrum: I was worried you had left the site, as many sometimes do. It's best to just start a new game when an old one goes sour.


8265)
Variants: "Hard time"
Started: 2007.6.19, Ended: 2007.6.28
Participants: dayleh (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) dayleh: Homeworld B1 G2 Y3
	TwoShort: Howdy...

3) TwoShort: Build G1 Twoshort

4) dayleh: Build Y1 Dayleh

5) TwoShort: Trade G1 Y1 Twoshort

6) dayleh: Trade Y1 R1 Dayleh

7) TwoShort: Build G1 Twoshort

8) dayleh: Build R1 Dayleh

9) TwoShort: Build G1 Twoshort

10) dayleh: Build R2 Dayleh

11) TwoShort: Discover G1 Twoshort B2 Bluonia
	dayleh: How are you today... sorry, didn't notice the salutation until now.

12) dayleh: Discover R1 Dayleh G3 Tammy

13) TwoShort: Build G1 Twoshort

14) dayleh: Trade R2 G2 Dayleh

15) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G3 Bluonia
Build G3 Twoshort

16) dayleh: Sacrifice G2 Dayleh
Build R2 Dayleh
Build R2 Tammy

17) TwoShort: Trade G2 R2 Bluonia

18) dayleh: Build R3 Dayleh

19) TwoShort: Sacrifice G3 Bluonia
Build R3 Bluonia
Build R3 Bluonia
Build G2 Bluonia

20) dayleh: Sacrifice Y3 Dayleh
Move R1 Tammy Bluonia
Discover R1 Bluonia Y3 Temp
Move R1 Temp Bluonia
Catastrophe Bluonia R

21) TwoShort: Discover G1 Twoshort Y2 Yolonda

22) dayleh: Trade R3 G3 Dayleh

23) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build Y1 Twoshort
Build G3 Twoshort

24) dayleh: Trade R2 Y2 Dayleh

25) TwoShort: Trade G2 R2 Bluonia

26) dayleh: Build G2 Dayleh

27) TwoShort: Trade G2 Y2 Bluonia

28) dayleh: Sacrifice G2 Dayleh
Build Y1 Dayleh
Build Y3 Dayleh

29) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Yolonda
Build G3 Twoshort

30) dayleh: Discover Y2 Dayleh Y3 Callie

31) TwoShort: Sacrifice G3 Twoshort
Build Y3 Bluonia
Build R1 Bluonia
Build G3 Twoshort

32) dayleh: Build R2 Dayleh

33) TwoShort: Move Y3 Bluonia Tammy

34) dayleh: Sacrifice Y2 Callie
Discover Y3 Dayleh R3 Temp
Move Y3 Temp Bluonia

35) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluonia
Build Y3 Bluonia
Build G3 Twoshort
Catastrophe Bluonia Yellow

36) dayleh: Build Y2 Dayleh

37) TwoShort: Sacrifice R1 Bluonia
Attack R2S Tammy

38) dayleh: Discover R1 Dayleh Y3 Kadon

39) TwoShort: Trade G1 B1 Bluonia

40) dayleh: Trade Y1 B1 Dayleh

41) TwoShort: Sacrifice G3 Twoshort
Build G1 Bluonia
Build G3 Twoshort
Build Y1 Tammy

42) dayleh: Discover R2 Dayleh Y3 Callie

43) TwoShort: Trade G2 Y2 Bluonia

	dayleh: Good Game.  Thanks.


8379)
Started: 2007.6.20, Ended: 2007.7.27
Participants: rkalajian (S), maka (N)
Winner: rkalajian

1) maka: Homeworld B3 G2 Y3

2) rkalajian: Homeworld B2 G3 Y3
	maka: Hello! 

3) maka: Build Y1 Maka
	rkalajian: Hey there!

4) rkalajian: Build Y1 Rkalajian

5) maka: Trade Y1 G1 Maka

6) rkalajian: Trade Y1 G1 Rkalajian

7) maka: Discover G1 Maka R1 Reddwarf

8) rkalajian: Discover G1 Rkalajian B1 Fei

9) maka: Build G1 Reddwarf

10) rkalajian: Build G2 Fei

11) maka: Build Y1 Maka

12) rkalajian: Trade G1 Y1 Fei

13) maka: Build G1 Reddwarf

14) rkalajian: Discover Y1 Fei G3 Elly

15) maka: Sacrifice Y3 Maka
Move G1 Reddwarf Rkalajian
Move G1 Reddwarf Rkalajian
Move G1 Reddwarf Rkalajian
Catastrophe Rkalajian Green

16) rkalajian: Build G1 Fei
	maka: kamikaze attack! :)

17) maka: Build Y1 Maka

18) rkalajian: Build Y2 Elly

19) maka: Build Y2 Maka

20) rkalajian: Trade Y3 G3 Rkalajian

21) maka: Trade Y1 G1 Maka

22) rkalajian: Build G1 Rkalajian

23) maka: Move Y1 Maka Fei

24) rkalajian: Trade G2 R2 Fei

25) maka: Move Y1 Fei Elly

26) rkalajian: Build G2 Fei

27) maka: Move Y1 Elly Rkalajian

28) rkalajian: Trade G3 R3 Rkalajian

29) maka: Discover Y1 Rkalajian B1 Bool

30) rkalajian: Build G2 Fei

31) maka: Move G1 Maka Fei
Catastrophe Fei Green

32) rkalajian: Move Y1 Elly Fei

33) maka: Build Y1 Maka

34) rkalajian: Build G1 Rkalajian

35) maka: Trade Y2 G2 Maka

36) rkalajian: Trade R2 G2 Fei

37) maka: Move G2 Maka Bool

38) rkalajian: Build Y2 Fei

39) maka: Sacrifice G2 Bool
Build Y2 Bool
Build Y3 Maka

40) rkalajian: Trade Y2 R2 Fei

41) maka: Trade Y2 G2 Bool

42) rkalajian: Build Y2 Fei

43) maka: Build Y2 Bool

44) rkalajian: Build Y3 Elly

45) maka: Trade Y3 B3 Maka

46) rkalajian: Build G1 Fei

47) maka: Sacrifice Y2 Bool
Discover G2 Bool G3 Yay
Move Y1 Bool Yay

48) rkalajian: Build G3 Fei

49) maka: Sacrifice G2 Yay
Build Y2 Yay
Build Y3 Maka

50) rkalajian: Sacrifice Y3 Elly
Move R2 Fei Maka
Move G3 Fei Maka
Move Y2 Fei Maka

51) maka: Sacrifice B3 Maka
Trade Y1 R1 Yay
Trade Y3 R3 Maka
Trade Y1 R1 Maka

52) rkalajian: Attack R3 Maka

53) maka: Build R1 Maka

54) rkalajian: Sacrifice R3 Rkalajian
Attack R1 Maka
Attack R1 Maka
Pass
	maka: ok. you got me :) there's nothing I can do... Well played! 

	maka: Ok. Want to try out the new Volcano? I've played it at home, but haven't tried it here yet
	rkalajian: Sure, I've never played Volcano before.  Setup and I'll join.


8375)
Started: 2007.6.20, Ended: 2007.6.25
Participants: dayleh (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) dayleh: Homeworld B1 G2 Y3

3) zoltar: Build G1 Zoltar

4) dayleh: Build Y1 Dayleh

5) zoltar: Trade G1 Y1 Zoltar

6) dayleh: Trade Y1 R1 Dayleh

7) zoltar: Build G1 Zoltar

8) dayleh: Build Y1 Dayleh

9) zoltar: Build Y1 Zoltar

10) dayleh: Build Y2 Dayleh

11) zoltar: Build Y2 Zoltar

12) dayleh: Discover Y2 Dayleh G3 Tammy

13) zoltar: Discover Y1 Zoltar G2 Greenbelt

14) dayleh: Trade Y1 G1 Dayleh
	dayleh: Hey Zoltar .. Are you local to MD 'burbs?  You named the system Greenbelt.  Just Wondering

15) zoltar: Trade Y2 R2 Zoltar
	zoltar: Affirmative, I reside in Old Greenbelt, just down the street from the creator of Homeworlds, Gort.

16) dayleh: Build Y1 Dayleh

17) zoltar: Build Y2 Zoltar
	dayleh: Kewl.  I work in Lanham and line in Columbia.  We eat at Beijing frequently.  Are you going to Origins?
	zoltar: The "Chef's Secret" Thai restaurant is the best in Greenbelt, btw.  No, I'm in Florida through the 4th of July visiting my family that live down here, but I'll make it to Origins next year I hope.

18) dayleh: Trade Y3 G3 Dayleh

19) zoltar: Discover Y2 Zoltar B2 Blueridge

20) dayleh: Sacrifice Y1 Dayleh
Discover G1 Dayleh Y3 Callie

21) zoltar: Build Y1 Greenbelt

22) dayleh: Build G1 Callie

23) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenbelt
Build Y3 Blueridge
Build Y3 Zoltar

24) dayleh: Move Y2 Tammy Greenbelt
Catastrophe Greenbelt Y

25) zoltar: Build G2 Zoltar
	zoltar: Owe Know!!! You destroyed Greenbelt!

26) dayleh: Discover G1 Callie B1 Erin

27) zoltar: Trade Y3 G3 Blueridge
	dayleh: I often thought about destroying greenbelt, but its such a pretty, serene place ... lol

28) dayleh: Build R1 Dayleh

29) zoltar: Build R2 Zoltar

30) dayleh: Trade G1 Y1 Erin

31) zoltar: Discover Y1 Zoltar B2 Bluemoon

32) dayleh: Discover Y1 Erin G3 Kadon

33) zoltar: Move R2 Zoltar Bluemoon

34) dayleh: Trade R1 Y1 Dayleh

35) zoltar: Move R2 Bluemoon Callie

36) dayleh: Discover G1 Callie Y2 Tammy

37) zoltar: Sacrifice G2 Zoltar
Build Y2 Blueridge
Build Y3 Bluemoon

38) dayleh: Build G1 Tammy

39) zoltar: Move R2 Zoltar Tammy

40) dayleh: Build G2 Tammy
	dayleh: Not Looking Good in this Solar System

41) zoltar: Attack G2 Tammy
	zoltar: Yes, that last sacrifice gives me a powerful lead.



8376)
Started: 2007.6.20, Ended: 2007.8.18
Participants: antihero (S), MikeYarrum (N)
Winner: antihero

1) MikeYarrum: Homeworld B3 Y1 G3

2) antihero: Homeworld B2 Y3 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) antihero: Build G1 Antihero

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) antihero: Trade G1 Y1 Antihero

7) MikeYarrum: Build Y2 Mikeyarrum

8) antihero: Build Y2 Antihero

9) MikeYarrum: Discover Y1 Mikeyarrum G2 Kagura

10) antihero: Discover Y1 Antihero G1 Greenie

11) MikeYarrum: Build G1 Mikeyarrum

12) antihero: Build G1 Antihero

13) MikeYarrum: Build G2 Mikeyarrum

14) antihero: Build G2 Antihero

15) MikeYarrum: Discover G2 Mikeyarrum B2 Boynamo

16) antihero: Trade G1 R1 Antihero
	antihero: hmm this was not a well-thought-out plan... :)

17) MikeYarrum: Trade G1 R1 Mikeyarrum

18) antihero: Discover G2 Antihero B1 Switch

19) MikeYarrum: Build G1 Mikeyarrum

20) antihero: Move Y1 Greenie Kagura

21) MikeYarrum: Build G1 Boynamo

22) antihero: Build G1 Switch

23) MikeYarrum: Trade G2 R2 Boynamo

24) antihero: Trade G1 R1 Switch

25) MikeYarrum: Build R2 Boynamo

26) antihero: Build R2 Switch

27) MikeYarrum: Build R3 Mikeyarrum

28) antihero: Build R3 Antihero

29) MikeYarrum: Discover R3 Mikeyarrum G2 Rachael

30) antihero: Sacrifice R1 Antihero
Attack Y1 Kagura

31) MikeYarrum: Move Y2 Mikeyarrum Rachael

32) antihero: Move Y2 Antihero Switch

33) MikeYarrum: Discover R3 Rachael B1 Chihiro

34) antihero: Build Y2 Kagura

35) MikeYarrum: Build Y3 Rachael

36) antihero: Build Y3 Switch

37) MikeYarrum: Sacrifice Y2 Rachael
Move R2 Boynamo Switch
Move R2 Boynamo Switch
Catastrophe Switch Red

38) antihero: Move Y1 Kagura Mikeyarrum

39) MikeYarrum: Build Y2 Rachael

40) antihero: Move Y1 Kagura Mikeyarrum

41) MikeYarrum: Build R1 Mikeyarrum

42) antihero: Move Y2 Kagura Mikeyarrum
Catastrophe Mikeyarrum Y

43) MikeYarrum: Move Y3 Rachael Mikeyarrum

44) antihero: Build R1 Antihero

	antihero: Wait, did I have a winning move here that I didn't see?
	MikeYarrum: Sorry, I just didn't like where this game was headed, and I didn't think I had any good moves.
	antihero: Ah, no problem. Always fun to play you. I'll accept another challenge again some time. 
	MikeYarrum: =D


8387)
Started: 2007.6.21, Ended: 2007.8.19
Participants: antihero (S), Kermit (N)
Winner: antihero

1) Kermit: Homeworld G1 B2 Y3

2) antihero: Homeworld B1 G3 Y3

3) Kermit: Build Y1 Kermit

4) antihero: Build Y1 Antihero

5) Kermit: Discover Y1 Kermit B3 Slinky

6) antihero: Discover Y1 Antihero G2 Builder

7) Kermit: Trade Y1 G1 Slinky

8) antihero: Build Y1 Antihero

9) Kermit: Build G1 Slinky

10) antihero: Build Y1 Builder

11) Kermit: Build G2 Slinky

12) antihero: Build Y2 Antihero

13) Kermit: Build Y2 Kermit

14) antihero: Trade Y2 G2 Antihero

15) Kermit: Trade G2 R2 Slinky

16) antihero: Trade Y1 R1 Antihero

17) Kermit: Move Y2 Kermit Slinky

18) antihero: Discover Y1 Builder G3 Biggreen

19) Kermit: Move G1 Slinky Builder

20) antihero: Move Y1 Biggreen Kermit

21) Kermit: Build R1 Slinky

22) antihero: Sacrifice G2 Antihero
Build Y1 Kermit
Build Y2 Kermit
Catastrophe Kermit Y
	antihero: thanks for playing! I'm sorry for all the delays.



8386)
Started: 2007.6.22, Ended: 2007.7.3
Participants: discord35 (S), MikeYarrum (N)
Winner: discord35

1) MikeYarrum: Homeworld R3 B2 G3
	discord35: Hello! This is my first time playing here.
	MikeYarrum: Hello! I think I noticed your watching another game of mine. Hope you enjoy!

2) discord35: Homeworld G1 B2 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) discord35: Build Y1 Discord35

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) discord35: Trade Y1 G1 Discord35

7) MikeYarrum: Build Y1 Mikeyarrum

8) discord35: Discover G1 Discord35 G3 Dakota

9) MikeYarrum: Discover Y1 Mikeyarrum B1 Osaka
	discord35: That will be my last move for tonight, I think. I've got to focus on other things.

10) discord35: Build Y1 Discord35

11) MikeYarrum: Build Y2 Mikeyarrum

12) discord35: Move Y1 Discord35 Dakota

13) MikeYarrum: Build Y2 Mikeyarrum

14) discord35: Build Y2 Dakota

15) MikeYarrum: Trade Y1 G1 Osaka

16) discord35: Sacrifice Y2 Dakota
Move Y1 Dakota Osaka
Move Y1 Osaka Mikeyarrum
Catastrophe Mikeyarrum Y

17) MikeYarrum: Build G2 Osaka

18) discord35: Build Y1 Discord35

19) MikeYarrum: Build G2 Mikeyarrum

20) discord35: Move Y1 Discord35 Dakota

21) MikeYarrum: Trade G2 Y2 Osaka

22) discord35: Build G2 Dakota

23) MikeYarrum: Move G1 Osaka Dakota
Catastrophe Dakota Green

24) discord35: Build Y1 Discord35

25) MikeYarrum: Build G1 Mikeyarrum

26) discord35: Trade Y1 R1 Discord35

27) MikeYarrum: Trade G1 Y1 Mikeyarrum

28) discord35: Build Y1 Discord35

29) MikeYarrum: Build G1 Mikeyarrum

30) discord35: Discover Y1 Discord35 B3 Dakota

31) MikeYarrum: Trade G1 B1 Mikeyarrum

32) discord35: Trade Y1 G1 Dakota

33) MikeYarrum: Build Y1 Mikeyarrum

34) discord35: Build R1 Discord35

35) MikeYarrum: Trade G2 R2 Mikeyarrum

36) discord35: Build G1 Dakota

37) MikeYarrum: Build G2 Mikeyarrum

38) discord35: Trade G1 Y1 Dakota

39) MikeYarrum: Trade G2 Y2 Mikeyarrum

40) discord35: Build Y2 Dakota

41) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move Y1 Mikeyarrum Osaka
Discover Y2 Osaka G3 Sakaki

42) discord35: Trade Y2 G2 Dakota

43) MikeYarrum: Build Y2 Sakaki

44) discord35: Sacrifice G2 Dakota
Build Y2 Discord35
Build Y3 Dakota

45) MikeYarrum: Build Y3 Mikeyarrum

46) discord35: Discover Y1 Dakota G2 Carolina

47) MikeYarrum: Move R2 Mikeyarrum Osaka

48) discord35: Move R1 Discord35 Dakota

49) MikeYarrum: Move Y3 Mikeyarrum Osaka

50) discord35: Build R1 Dakota

51) MikeYarrum: Sacrifice B1 Mikeyarrum
Trade Y2 G2 Sakaki

52) discord35: Build Y2 Dakota

53) MikeYarrum: Move G2 Sakaki Osaka

54) discord35: Move R1 Dakota Carolina

55) MikeYarrum: Build R2 Osaka

56) discord35: Build R2 Carolina

57) MikeYarrum: Move R2 Osaka Sakaki

58) discord35: Build R3 Discord35

59) MikeYarrum: Build R3 Osaka

60) discord35: Sacrifice Y2 Dakota
Move R1 Dakota Osaka
Move R1 Carolina Osaka
Catastrophe Osaka R

61) MikeYarrum: Build R1 Sakaki

62) discord35: Build Y2 Dakota

63) MikeYarrum: Sacrifice Y2 Sakaki
Move R1 Sakaki Discord35
Move R2 Sakaki Discord35
Catastrophe Discord35 Red

64) discord35: Sacrifice Y2 Discord35
Move Y1 Carolina Osaka
Move Y2 Dakota Osaka
Catastrophe Osaka Y

65) MikeYarrum: Build Y1 Mikeyarrum

66) discord35: Move Y3 Dakota Osaka

67) MikeYarrum: Move Y1 Mikeyarrum Osaka

68) discord35: Sacrifice R2 Carolina
Attack G2N Osaka
Attack Y1N Osaka

	MikeYarrum: I think that's checkmate. Thank you for the game!
	discord35: Thank you as well!


8377)
Variants: "Hard time"
Started: 2007.6.24, Ended: 2007.7.22
Participants: JeffW (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) JeffW: Homeworld Y1 G3 B3

3) TwoShort: Build G1 Twoshort

4) JeffW: Build B1 Jeffw

5) TwoShort: Trade G1 Y1 Twoshort

6) JeffW: Trade B1 Y1 Jeffw

7) TwoShort: Build Y2 Twoshort

8) JeffW: Build Y2 Jeffw

9) TwoShort: Sacrifice Y2 Twoshort
Discover Y1 Twoshort R2 Boomtime
Move Y1 Boomtime Jeffw
Catastrophe Jeffw Yellow

10) JeffW: Build B1 Jeffw

11) TwoShort: Build G1 Twoshort

12) JeffW: Trade B1 Y1 Jeffw

13) TwoShort: Build G1 Twoshort

14) JeffW: Build Y1 Jeffw

15) TwoShort: Trade G3 Y3 Twoshort

16) JeffW: Trade Y1 R1 Jeffw

17) TwoShort: Discover G1 Twoshort R2 Rosy



8483)
Started: 2007.6.26, Ended: 2007.7.15
Participants: nycavri (S), JeffW (N)
Winner: nycavri

1) JeffW: Homeworld Y1 G3 B3

2) nycavri: Homeworld Y2 B1 G3
	nycavri: h y2 b1 g3
	nycavri: *blush*

3) JeffW: Build B1 Jeffw

4) nycavri: Build G1 Nycavri

5) JeffW: Trade B1 Y1 Jeffw

6) nycavri: Build G1 Nycavri

7) JeffW: Build Y1 Jeffw

8) nycavri: Discover G1 Nycavri Y3 Mvb

9) JeffW: Build Y2 Jeffw

10) nycavri: Discover G1 Mvb Y2 Mvg
Catastrophe Jeffw Y

11) JeffW: Build B1 Jeffw
	nycavri: Anyone can trigger a catastrophe in any system...

12) nycavri: Move G1 Mvg Jeffw
	JeffW: I must admit I don't understand the strategy of this game yet
	nycavri: Steepest learning curve of any game on SDG, imo.  I feel like I know what I'm doing, but have still yet to win my first game here.  Says something about the design, however, that I keep coming back for more!

13) JeffW: Trade B3 R3 Jeffw

14) nycavri: Sacrifice G3 Nycavri
Build G1 Jeffw
Build G2 Jeffw
Build G2 Jeffw
Catastrophe Jeffw G
	nycavri: Thanks for the game.  The early game strategy is to work towards getting bigger ships while preventing you opponent doing the same.  If you can shut them out of ships of one color entirely, so much the better.  Easier said than done however, as seen by my sub 1500 rating!  Feel free to challenge again, unrated if you prefer.



8496)
Started: 2007.6.27, Ended: 2007.7.22
Participants: Pensator (S), hellboy79 (W), Maeglor (N), tesla (E)
Winner: Pensator

1) Maeglor: Homeworld Y1 B2 G3

2) tesla: Homeworld Y2 B3 G3

3) Pensator: Homeworld Y3 B2 G3

4) hellboy79: Homeworld B1 G3 Y3

5) Maeglor: Build G1 Maeglor

6) tesla: Build G1 Tesla

7) Pensator: Build G1 Pensator

8) hellboy79: Build Y1 Hellboy79

9) Maeglor: Build G1 Maeglor

10) tesla: Trade G1 Y1 Tesla

11) Pensator: Discover G1 Pensator Y1 Pensaluna

12) hellboy79: Build Y1 Hellboy79

13) Maeglor: Discover G1 Maeglor Y3 Maedhros

14) tesla: Build Y2 Tesla

15) Pensator: Build G1 Pensator

16) hellboy79: Discover Y1 Hellboy79 Y2 Terminus

17) Maeglor: Build G1 Maeglor

18) tesla: Discover Y2 Tesla B1 Altes

19) Pensator: Build G2 Pensaluna

20) hellboy79: Trade Y3 G3 Hellboy79

21) Maeglor: Build G2 Maedhros

22) tesla: Build G2 Tesla

23) Pensator: Discover G1 Pensaluna Y3 Clon

24) hellboy79: Sacrifice G3 Hellboy79
Build Y2 Terminus
Build Y2 Hellboy79
Build Y3 Hellboy79

25) Maeglor: Sacrifice G2 Maedhros
Build G2 Maedhros
Build G2 Maedhros

26) tesla: Sacrifice G2 Tesla
Build G2 Tesla
Build Y3 Altes

27) Pensator: Move G1 Clon Maeglor
Catastrophe Maeglor G

28) tesla: Sacrifice Y3 Altes
Move G2 Tesla Altes
Move Y2 Altes Terminus
Move Y2 Terminus Hellboy79
Catastrophe Hellboy79 Y

29) Pensator: Trade G1 R1 Pensator

30) tesla: Build G1 Altes

31) Pensator: Move G2 Pensaluna Terminus
	tesla: me he unido al carro de los sacrificios

32) tesla: Move Y1 Tesla Altes
	Pensator: Lo siento :S

33) Pensator: Build R1 Pensator
	tesla: está el tema bastante sangriento, perdona hellboy
	Maeglor: Esto es que me he muerto, ¿no? :P
	hellboy79: ...
	hellboy79: si es que soy un torpe...

34) tesla: Build G1 Tesla

35) Pensator: Sacrifice R1 Pensator
Attack Y2W Terminus

36) tesla: Trade G2 R2 Altes

37) Pensator: Move Y2 Terminus Maedhros

38) tesla: Trade G3 R3 Tesla
	tesla: miedo me das

39) Pensator: Build R1 Pensator
	Pensator: Ummm.. Como no me termino de aclarar con las normas quizás me líe, ¿No puedo atacar al Y2 de terminus (después de sacrificar un rojo) porque ya no pertenece a nadie? Pensaba que si ains. Conrfimame si es así o es que lo estoy haciendo mal

Estaba escribiendo, Sacrifice r1 Pensator
Attack Y2 Terminus
	tesla: s r1 Pensator
a y2w Terminus
espero que así te deje

40) tesla: Move G1 Altes Maedhros
Catastrophe Maedhros G
	Pensator: Gracias por la ayuda con los comandos

41) Pensator: Build G1 Pensator
	tesla: no hay de qué, ya casi ni me acordaba

42) tesla: Build R1 Tesla

43) Pensator: Discover R1 Pensator Y1 Quarto

44) tesla: Trade R2 G2 Altes

45) Pensator: Discover R1 Pensator G1 Quorridor
	tesla: voy a hacer un undo de esos

46) tesla: Trade R3 Y3 Tesla

47) Pensator: Trade G3 Y3 Pensator

48) tesla: Build Y1 Altes

49) Pensator: Sacrifice R1 Quorridor
Attack Y1W Terminus

50) tesla: Discover G2 Altes Y3 Telas

51) Pensator: Build G1 Terminus

52) tesla: Build G1 Telas

53) Pensator: Build G1 Pensator

54) tesla: Move G2 Telas Quarto
	Pensator: Yo también he provado el undo :)


55) Pensator: Trade G1 R1 Pensator

56) tesla: Move R1 Tesla Quarto

57) Pensator: Attack R1E Quarto

58) tesla: Trade G1 R1 Tesla

59) Pensator: Move G2 Terminus Quarto

60) tesla: Move G2 Quarto Telas

61) Pensator: Move Y1 Terminus Altes

62) tesla: Sacrifice R1 Tesla
Attack Y1S Altes

63) Pensator: Sacrifice Y2 Maedhros
Move Y3 Pensator Quarto
Move Y3 Quarto Tesla

64) tesla: Trade Y3 R3 Tesla
	tesla: bien, creí que al tener yo una pieza mayor no podías hacer eso... bueno es saberlo

65) Pensator: Sacrifice R1 Quarto
Attack R3E Tesla

	tesla: el cambio de color es por plantar cara :-))
volveré...
	Pensator: Me ha encantado el juego, esta muy bien. Y la partida ha sido muy emocionante :) Gracias por organizar la partida :)


8508)
Variants: "Hard time"
Started: 2007.6.28, Ended: 2007.9.8
Participants: antihero (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R3 B1 G3

2) antihero: Homeworld B1 Y2 G3
	antihero: hello again!

3) mneme: Build G1 Mneme

4) antihero: Build G1 Antihero

5) mneme: Trade G1 B1 Mneme

6) antihero: Build G1 Antihero

7) mneme: Build B2 Mneme

8) antihero: Discover G1 Antihero B3 Trader
	mneme: *waves*


9) mneme: Trade B2 Y2 Mneme

10) antihero: Build G1 Trader

11) mneme: Build G2 Mneme

12) antihero: Build G2 Antihero

13) mneme: Discover G2 Mneme B2 Gambit

14) antihero: Trade G2 B2 Antihero

15) mneme: Build G2 Mneme

16) antihero: Trade G1 Y1 Trader

17) mneme: Build Y1 Mneme

18) antihero: Trade G1 R1 Antihero

19) mneme: Discover B1 Mneme G2 Giant

20) antihero: Move Y1 Trader Giant

21) mneme: Sacrifice Y2 Mneme
Discover G2 Gambit R3 Nova
Move B1 Giant Nova

22) antihero: Build R1 Antihero

23) mneme: Trade G2 R2 Mneme

24) antihero: Discover B2 Antihero G3 Builder

25) mneme: Build B2 Nova

26) antihero: Build G1 Trader

27) mneme: Build G1 Mneme

28) antihero: Build G2 Antihero

29) mneme: Move R2 Mneme Giant

30) antihero: Move Y1 Giant Builder

31) mneme: Trade B2 Y2 Nova

32) antihero: Trade G1 Y1 Trader

33) mneme: Sacrifice G3 Mneme
Build G1 Nova
Build G3 Mneme
Build B2 Nova

34) antihero: Move R1 Antihero Builder

35) mneme: Sacrifice Y2 Nova
Move G2 Nova Antihero
Move G1 Nova Antihero
Catastrophe Antihero G

36) antihero: Move B2 Builder Antihero

37) mneme: Build Y2 Mneme

38) antihero: Trade B2 G2 Antihero
	antihero: Well that was a pretty large oversight on my part. Bummer. :)

39) mneme: Sacrifice Y1 Mneme
Move R2 Giant Trader
	mneme: Yep.  Sorry about that; I certainly didn't expect for you to miss the check.

	antihero: good game! Next time I won't ignore the obvious. :)
	mneme: I hope so -- that was too easy.



8513)
Variants: "Hard time"
Started: 2007.6.28, Ended: 2007.7.31
Participants: clockwise (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B2 R1 G3
	clockwise: Hello again

2) clockwise: Homeworld R3 B1 G3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort
	clockwise: Those zpips still up for the winning?
	TwoShort: I'm afraid not; Mike Yarrum finally took me down.  You remind me I should make an official announcement though...

4) clockwise: Build G1 Clockwise

5) TwoShort: Trade G1 B1 Twoshort

6) clockwise: Trade G1 B1 Clockwise

7) TwoShort: Build B2 Twoshort

8) clockwise: Build B2 Clockwise

9) TwoShort: Trade B2 Y2 Twoshort

10) clockwise: Trade B1 Y1 Clockwise

11) TwoShort: Build Y1 Twoshort

12) clockwise: Build B1 Clockwise

13) TwoShort: Build B2 Twoshort

14) clockwise: Discover B1 Clockwise G2 Avocado

15) TwoShort: Trade B2 R2 Twoshort

16) clockwise: Trade B1 R1 Avocado
	clockwise: Sorry for my lack of internet presence recently.  I've been a little preoccupied with other things.


17) TwoShort: Build G1 Twoshort



8497)
Started: 2007.6.29, Ended: 2007.7.31
Participants: clockwise (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) clockwise: Homeworld Y2 B1 G3

3) zoltar: Build G1 Zoltar

4) clockwise: Build G1 Clockwise

5) zoltar: Trade G1 Y1 Zoltar

6) clockwise: Trade G1 R1 Clockwise

7) zoltar: Build Y1 Zoltar

8) clockwise: Build R1 Clockwise

9) zoltar: Build Y1 Zoltar

10) clockwise: Build R2 Clockwise

11) zoltar: Discover Y1 Zoltar G2 Gabbagabbahey

12) clockwise: Trade R2 Y2 Clockwise
	clockwise: Well... this could certainly go very badly.

13) zoltar: Discover Y1 Zoltar B2 Bloohoohoo

14) clockwise: Discover Y2 Clockwise G3 Peppercorn

15) zoltar: Sacrifice G3 Zoltar
Build Y2 Bloohoohoo
Build Y3 Gabbagabbahey
Build Y3 Zoltar

16) clockwise: Move Y2 Peppercorn Gabbagabbahey

17) zoltar: Trade Y2 G2 Bloohoohoo

18) clockwise: Build Y2 Gabbagabbahey
Catastrophe Gabbagabbahey Y

19) zoltar: Build Y1 Bloohoohoo

20) clockwise: Build R2 Clockwise

21) zoltar: Build Y2 Bloohoohoo
	clockwise: I am not in the slightest pleased about this...

22) clockwise: Discover R2 Clockwise Y3 Hyperion

23) zoltar: Trade Y2 R2 Bloohoohoo

	clockwise: Sorry, I just haven't had time for sdg recently.  Perhaps we can play again when my schedule opens up.


8481)
Started: 2007.6.29, Ended: 2007.7.9
Participants: dayleh (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) dayleh: Homeworld B1 R2 G3

3) zoltar: Build G1 Zoltar

4) dayleh: Build G1 Dayleh

5) zoltar: Trade G1 Y1 Zoltar

6) dayleh: Build G1 Dayleh

7) zoltar: Build Y1 Zoltar

8) dayleh: Trade G1 Y1 Dayleh

9) zoltar: Trade Y1 R1 Zoltar

10) dayleh: Build G1 Dayleh

11) zoltar: Build R1 Zoltar

12) dayleh: Discover G1 Dayleh Y3 George

13) zoltar: Discover R1 Zoltar G2 Gertrude

14) dayleh: Build G1 George

15) zoltar: Sacrifice Y1 Zoltar
Move R1 Gertrude George

16) dayleh: Build G2 George

17) zoltar: Attack G1 George

18) dayleh: Discover G2 George B2 B2

19) zoltar: Sacrifice G3 Zoltar
Build R2 George
Build R2 George
Build R3 Zoltar

20) dayleh: Trade G1 B1 Dayleh

21) zoltar: Move R2 George B2

22) dayleh: Build Y1 Dayleh

23) zoltar: Attack G2 B2
	dayleh: How the hell do I keep getting into these positions .. {doh}

24) dayleh: Discover Y1 Dayleh R3 R3

25) zoltar: Build R3 B2
	zoltar: Beats me!
	dayleh: lol

26) dayleh: Discover G1 George Y1 Y1

27) zoltar: Trade R3 Y3 B2

28) dayleh: Build Y2 Dayleh

29) zoltar: Trade R3 Y3 Zoltar

30) dayleh: Build B1 Dayleh

31) zoltar: Build R3 B2

32) dayleh: Move B1 Dayleh R3

33) zoltar: B R3 George

34) dayleh: Sacrifice G3 Dayleh
Build B2 R3
Build B2 R3
Build B3 Dayleh

35) zoltar: Move R3 B2 R3
	zoltar: And the Red Fleet is mine! All mine!

	dayleh: Good Game


8468)
Started: 2007.6.29, Ended: 2007.7.4
Participants: zoltar (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) zoltar: Homeworld B1 G3 B3 *

3) ts52: Build G1 Ts52

4) zoltar: Build B1 Zoltar

5) ts52: Build G1 Ts52

6) zoltar: Trade B3 Y3 Zoltar

7) ts52: Discover G1 Ts52 Y3 Sol

8) zoltar: Build B2 Zoltar

9) ts52: Build G1 Sol

10) zoltar: Trade B2 G2 Zoltar

11) ts52: Discover G1 Ts52 Y3 Wikket

12) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo

13) ts52: Build G2 Ts52

14) zoltar: Trade Y3 G3 Zoltar

15) ts52: Discover G1 Sol Y2 Krikket
	zoltar: I think my position is hopeless.

16) zoltar: Build G2 Yabbadabbadoo
	ts52: Don't worry, I'm sure I can screw something up.

17) ts52: Move G1 Krikket Zoltar

18) zoltar: Move G2 Yabbadabbadoo Wikket

19) ts52: Sacrifice G1 Wikket
Build G1 Zoltar
Catastrophe Zoltar Green
	zoltar: That doesn't work either.

	zoltar: Yup. GG. I was lost from the start.


8518)
Started: 2007.7.4, Ended: 2007.7.9
Participants: ts52 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) ts52: Homeworld B1 Y2 G3

3) zoltar: Build G1 Zoltar

4) ts52: Build G1 Ts52

5) zoltar: Trade G1 Y1 Zoltar

6) ts52: Build G1 Ts52

7) zoltar: Build Y1 Zoltar

8) ts52: Trade G1 Y1 Ts52

9) zoltar: Build Y2 Zoltar

10) ts52: Discover G1 Ts52 Y3 Sol

11) zoltar: Discover Y1 Zoltar G2 Greenarrow

12) ts52: Discover Y1 Ts52 G3 Kermit

13) zoltar: Discover Y2 Zoltar G2 Greenlantern

14) ts52: Build G1 Ts52

15) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenlantern
Build Y3 Greenarrow
Build Y3 Zoltar

16) ts52: Sacrifice G3 Ts52
Build G1 Sol
Build G2 Ts52
Build G3 Ts52

17) zoltar: Trade Y3 G3 Zoltar

18) ts52: Build Y3 Kermit

19) zoltar: Sacrifice Y3 Greenarrow
Move G3 Zoltar Greenlantern
Move G3 Greenlantern Sol
Move G3 Sol Ts52
Catastrophe Ts52 G

	zoltar: Hey wait a second -- you can't do that -- I've got the "bluebird" checkmate!


8579)
Started: 2007.7.5, Ended: 2007.8.1
Participants: ts52 (S), discord35 (N)
Winner: ts52

1) discord35: Homeworld G2 B1 Y3

2) ts52: Homeworld Y3 B2 G3
	ts52: Have a great game!

3) discord35: Build Y1 Discord35

4) ts52: Build G1 Ts52
	discord35: Thanks! This should be fun!

5) discord35: Trade Y1 G1 Discord35

6) ts52: Trade G1 Y1 Ts52

7) discord35: Discover G1 Discord35 Y3 Y3-1

8) ts52: Build G1 Ts52

9) discord35: Build Y1 Discord35

10) ts52: Discover G1 Ts52 B1 Berry

11) discord35: Trade Y1 R1 Discord35

12) ts52: Trade Y1 R1 Ts52

13) discord35: Build Y1 Discord35

14) ts52: Build G1 Berry

15) discord35: Build G2 Y3-1

16) ts52: Trade G1 Y1 Berry

17) discord35: Discover G2 Y3-1 Y2 Y2-1

18) ts52: Build G1 Ts52

19) discord35: Move G2 Y2-1 Berry

20) ts52: Sacrifice G3 Ts52
Build G2 Berry
Build G3 Berry
Build G3 Ts52

21) discord35: Build G3 Y3-1
Catastrophe Berry G

22) ts52: Move G1 Ts52 Berry

23) discord35: Move G3 Y3-1 Berry

24) ts52: Build G1 Berry

25) discord35: Trade G3 R3 Berry

26) ts52: Build G2 Ts52

27) discord35: Attack Y1S Berry

28) ts52: Discover G2 Ts52 B1 Grape

29) discord35: Attack G1S Berry

30) ts52: Sacrifice G2 Grape
Build G2 Berry
Build G2 Berry
Catastrophe Berry Green

31) discord35: Build G1 Y3-1

32) ts52: Build G1 Ts52

33) discord35: Move G1 Y3-1 Berry

34) ts52: Trade G1 Y1 Ts52

35) discord35: Build Y2 Berry

36) ts52: Discover Y1 Ts52 B1 Grape

37) discord35: Move Y2 Berry Ts52

38) ts52: Attack Y2N Ts52

39) discord35: Build Y2 Berry

40) ts52: Move Y2 Ts52 Grape

41) discord35: Discover Y1 Berry Y2 Y2-1

42) ts52: Trade Y2 R2 Grape

43) discord35: Build Y2 Berry

44) ts52: Build G1 Ts52

45) discord35: Move Y1 Discord35 Y3-1

46) ts52: Move G1 Ts52 Grape

47) discord35: Discover Y1 Y3-1 R1 R1-1

48) ts52: Build R2 Ts52

49) discord35: Sacrifice G1 Y3-1
Build Y3 Discord35

50) ts52: Move R2 Ts52 R1-1

51) discord35: Sacrifice Y3 Discord35
Move Y1 R1-1 Ts52
Move Y2 Berry Ts52
Move Y2 Berry Ts52
Catastrophe Ts52 Y

52) ts52: Build R2 Grape

53) discord35: Build R3 Discord35

54) ts52: Build R3 Ts52

55) discord35: Move Y1 Y2-1 Berry

56) ts52: Build G1 Ts52

57) discord35: Discover Y3 Discord35 G3 G3-1

58) ts52: Discover R2 Grape Y3 Sol

59) discord35: Move Y3 G3-1 Grape

60) ts52: Move R2 Sol Discord35

61) discord35: Attack R2S Discord35

62) ts52: Discover R2 Grape Y3 Sol

63) discord35: Sacrifice R2 Discord35
Attack Y1S Grape
Attack G1S Grape

64) ts52: Trade R3 Y3 Ts52

65) discord35: Trade R1 Y1 Discord35

66) ts52: Move G3 Ts52 Sol

67) discord35: Build Y2 Berry

68) ts52: Build R1 Ts52

69) discord35: Sacrifice Y3 Grape
Move Y1 Grape Ts52
Move Y1 Berry Ts52
Move Y2 Berry Ts52
Catastrophe Ts52 Y

70) ts52: Move G3 Sol Ts52

71) discord35: Build G2 Berry

72) ts52: Trade R1 Y1 Ts52

73) discord35: Trade G2 Y2 Berry

74) ts52: Move G1 Ts52 R1-1

75) discord35: Build G2 Grape

76) ts52: Build Y1 Ts52

77) discord35: Move R3 Berry Sol

78) ts52: Move R2 Sol Grape

79) discord35: Move R3 Sol Grape

80) ts52: Attack G2N Grape

81) discord35: Attack R2S Grape

82) ts52: Sacrifice G2 Grape
Build G2 R1-1
Pass

83) discord35: Trade R2 Y2 Grape

84) ts52: Move Y1 Ts52 R1-1

85) discord35: Discover R3 Grape Y3 Y3-1

86) ts52: Discover R2 R1-1 Y3 Sol

87) discord35: Build R1 Discord35

88) ts52: Build R2 Ts52

89) discord35: Trade R3 G3 Discord35

90) ts52: Sacrifice G2 R1-1
Build Y2 Ts52
Build Y3 R1-1

91) discord35: Sacrifice G1 Grape
Build R2 Y3-1

92) ts52: Trade R2 B2 Ts52

93) discord35: Move R2 Y3-1 Grape

94) ts52: Move B2 Ts52 R1-1

95) discord35: Sacrifice G3 Discord35
Build R2 Y3-1
Build R3 Grape
Build R3 Discord35

96) ts52: Build G1 Ts52

97) discord35: Move R3 Grape Sol

98) ts52: Discover R2 Sol B2 Blueish

99) discord35: Move R3 Y3-1 Blueish

100) ts52: Build B3 R1-1

101) discord35: Attack R2S Blueish

102) ts52: Move B3 R1-1 Y3-1

103) discord35: Move R2 Y3-1 Discord35

104) ts52: Build G2 R1-1

105) discord35: Build G2 Berry

106) ts52: Move G1 Ts52 Y3-1

107) discord35: Move G1 Berry Sol

108) ts52: Build G3 Y3-1

109) discord35: Sacrifice Y2 Grape
Move R3 Sol R1-1
Move R3 Blueish R1-1

110) ts52: Attack R3N R1-1

111) discord35: Sacrifice R2 Grape
Attack R3S R1-1
Attack Y3S R1-1

112) ts52: Trade B2 R2 R1-1
Catastrophe R1-1 Red

113) discord35: Build G1 Berry

114) ts52: Sacrifice Y2 Ts52
Move R1 Ts52 Sol
Move R1 Sol Discord35
Catastrophe Discord35 Red

115) discord35: Move Y2 Berry Y3-1

116) ts52: Move B3 Y3-1 Discord35

117) discord35: Sacrifice G2 Berry
Build Y1 Y3-1
Build Y2 Y3-1
Catastrophe Y3-1 Y

118) ts52: Trade B3 R3 Discord35



8610)
Started: 2007.7.9, Ended: 2007.7.24
Participants: zoltar (S), ts52 (N)
Winner: zoltar

1) ts52: Homeworld R1 B2 G3

2) zoltar: Homeworld B1 R3 G3 Zoltar

3) ts52: Build G1 Ts52

4) zoltar: Build G1 Zoltar

5) ts52: Trade G1 Y1 Ts52

6) zoltar: Trade G1 Y1 Zoltar

7) ts52: Build G1 Ts52

8) zoltar: Build G1 Zoltar

9) ts52: Trade G1 B1 Ts52

10) zoltar: Trade G1 R1 Zoltar

11) ts52: Trade B1 R1 Ts52

12) zoltar: Build R2 Zoltar

13) ts52: Discover R1 Ts52 G3 Kermit

14) zoltar: Trade R1 B1 Zoltar

15) ts52: Build G1 Ts52

16) zoltar: Build G1 Zoltar

17) ts52: Discover G1 Ts52 Y3 Krikket

18) zoltar: Discover G1 Zoltar B2 Blueberry

19) ts52: Build G1 Ts52

20) zoltar: Build G2 Zoltar

21) ts52: Sacrifice G3 Ts52
Build G2 Krikket
Build G2 Ts52
Build G3 Ts52

22) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar
Build Y2 Zoltar

23) ts52: Discover G2 Ts52 Y3 Wikket

24) zoltar: Sacrifice Y2 Zoltar
Move Y1 Zoltar Blueberry
Move R2 Zoltar Blueberry

25) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Ts52
Build Y2 Ts52

26) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Zoltar
Build Y3 Blueberry

27) ts52: Move Y2 Ts52 Kermit

28) zoltar: Move Y3 Blueberry Kermit

29) ts52: Move R1 Kermit Ts52

30) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Zoltar
Build R1 Blueberry

31) ts52: Discover Y2 Ts52 B3 Gameyed

32) zoltar: Move R1 Blueberry Kermit

33) ts52: Sacrifice R1 Ts52
Attack R1S Kermit

34) zoltar: Sacrifice R2 Blueberry
Attack R1 Kermit
Attack Y2 Kermit

35) ts52: Move G1 Ts52 Gameyed

36) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R1 Kermit
Build R2 Kermit

37) ts52: Sacrifice G2 Wikket
Build G2 Ts52
Build Y3 Gameyed

38) zoltar: Sacrifice Y2 Zoltar
Move Y2 Kermit Blueberry
Move Y2 Blueberry Gameyed

39) ts52: Trade Y3 R3 Gameyed

40) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Blueberry
Build Y3 Zoltar

41) ts52: Attack Y2S Gameyed

42) zoltar: Move R1 Kermit Blueberry

43) ts52: Trade Y2 B2 Gameyed

44) zoltar: Discover B1 Zoltar Y2 Yukkieposition

45) ts52: Move B2 Gameyed Yukkieposition

46) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Blueberry
Build R2 Blueberry

47) ts52: Move R3 Gameyed Blueberry
Catastrophe Blueberry Red

48) zoltar: Move R2 Kermit Yukkieposition

49) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Yukkieposition
Build B3 Yukkieposition
Catastrophe Yukkieposition Blue

50) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R1 Kermit
Build R2 Yukkieposition

51) ts52: Move G2 Ts52 Gameyed

52) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Kermit
Build R3 Yukkieposition

53) ts52: Discover G1 Gameyed B2 Lasthope

54) zoltar: Move R3 Yukkieposition Krikket

55) ts52: Move G2 Krikket Lasthope

56) zoltar: Sacrifice G2 Zoltar
Build G2 Blueberry
Build R3 Krikket

57) ts52: Sacrifice G1 Krikket
Build G1 Gameyed

58) zoltar: Sacrifice Y2 Blueberry
Move Y3 Kermit Ts52
Move R3 Krikket Ts52

59) ts52: Attack R3S Ts52
	zoltar: Zee Death Star ease now fully functional! Attack!!
	zoltar: My extra 7 red sheeps and 2 giant yellow sheeps should give me zee edge!

60) zoltar: Sacrifice R3 Krikket
Attack Y1 Ts52
Attack R3 Ts52
Attack G3 Ts52

	zoltar: Yup. Thanks for the game, Earthling!


8646)
Variants: "Unrated"
Started: 2007.7.10, Ended: 2007.11.13
Participants: cobaltstarfire (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R2 B3 G3

2) cobaltstarfire: Homeworld B2 Y1 G3

3) Jesse: Build G1 Jesse

4) cobaltstarfire: Build G1 Cobaltstarfire

5) Jesse: Trade G1 Y1 Jesse

6) cobaltstarfire: Discover G1 Cobaltstarfire B3 Cactus

7) Jesse: Build G1 Jesse

8) cobaltstarfire: Trade G3 R3 Cobaltstarfire

9) Jesse: Discover G1 Jesse B1 Muffin

10) cobaltstarfire: Trade R3 G3 Cobaltstarfire

11) Jesse: Build G1 Jesse

12) cobaltstarfire: Build G2 Cactus

13) Jesse: Build G2 Muffin

14) cobaltstarfire: Trade G1 Y1 Cactus

15) Jesse: Trade G2 Y2 Muffin

16) cobaltstarfire: Build G1 Cobaltstarfire

17) Jesse: Build G2 Muffin

18) cobaltstarfire: Build Y2 Cactus

19) Jesse: Trade G2 R2 Muffin

20) cobaltstarfire: Trade Y1 R1 Cactus

21) Jesse: Build Y1 Muffin

22) cobaltstarfire: Trade G1 R1 Cobaltstarfire

23) Jesse: Discover Y1 Muffin G3 Starboard

24) cobaltstarfire: Build G1 Cactus

25) Jesse: Build Y2 Starboard

26) cobaltstarfire: Build Y3 Cactus

27) Jesse: Build Y3 Muffin

28) cobaltstarfire: Sacrifice Y2 Cactus
Discover Y3 Cactus R1 Balls
Move G1 Cactus Balls

29) Jesse: Discover Y2 Muffin B3 Reddwarf

30) cobaltstarfire: Sacrifice G2 Cactus
Build R2 Cactus
Build Y2 Balls

31) Jesse: Build Y3 Jesse

32) cobaltstarfire: Move G1 Balls Cactus

33) Jesse: Build R3 Muffin

34) cobaltstarfire: Build G2 Cactus

35) Jesse: Move R3 Muffin Reddwarf

36) cobaltstarfire: Move Y2 Balls Cactus

37) Jesse: Build G2 Muffin

	cobaltstarfire: I think this game is just too hard for me to play and really have it be worth your time :|


8400)
Started: 2007.7.16, Ended: 2007.9.18
Participants: MikeYarrum (S), nycavri (N)
Winner: MikeYarrum

1) nycavri: Homeworld B1 Y2 G3
	nycavri: Howdy!

2) MikeYarrum: Homeworld B3 R2 G3
	MikeYarrum: Hello again. =D

3) nycavri: Build G1 Nycavri

4) MikeYarrum: Build G1 Mikeyarrum

5) nycavri: Build G1 Nycavri

6) MikeYarrum: Build G2 Mikeyarrum

7) nycavri: Discover G1 Nycavri Y3 Fr

8) MikeYarrum: Trade G1 Y1 Mikeyarrum

9) nycavri: Build G1 Nycavri

10) MikeYarrum: Discover G2 Mikeyarrum B1 Boynamo

11) nycavri: Discover G1 Nycavri Y3 Hl

12) MikeYarrum: Build G2 Mikeyarrum

13) nycavri: Sacrifice G3 Nycavri
Build G2 Fr
Build G3 Hl
Build G3 Nycavri

14) MikeYarrum: Build Y1 Mikeyarrum

15) nycavri: Discover G3 Hl Y1 Iw

16) MikeYarrum: Build Y2 Mikeyarrum

17) nycavri: Move G1 Hl Iw

18) MikeYarrum: Trade Y1 R1 Mikeyarrum

19) nycavri: Trade G1 B1 Nycavri

20) MikeYarrum: Move R1 Mikeyarrum Boynamo

21) nycavri: Trade B1 R1 Nycavri

22) MikeYarrum: Move Y2 Mikeyarrum Boynamo

23) nycavri: Build G1 Nycavri

24) MikeYarrum: Build Y1 Mikeyarrum

25) nycavri: Trade G1 B1 Nycavri

26) MikeYarrum: Build Y2 Boynamo

27) nycavri: Sacrifice B1 Nycavri
Trade G3 Y3 Iw

28) MikeYarrum: Discover Y2 Boynamo G3 Perapera

29) nycavri: Build G1 Iw

30) MikeYarrum: Build Y3 Perapera

31) nycavri: Sacrifice Y3 Iw
Move G1 Iw Mikeyarrum
Move G1 Iw Mikeyarrum
Pass
Catastrophe Mikeyarrum G

32) MikeYarrum: Build Y1 Boynamo

33) nycavri: Build G1 Nycavri
	nycavri: b g1 nycavri

34) MikeYarrum: Build Y3 Perapera

35) nycavri: Trade G1 B1 Nycavri

36) MikeYarrum: Build G1 Boynamo

37) nycavri: Build B2 Nycavri

38) MikeYarrum: Trade G2 B2 Boynamo

39) nycavri: Move B1 Nycavri Fr

40) MikeYarrum: Trade B2 R2 Boynamo

41) nycavri: Trade G1 R1 Fr

42) MikeYarrum: Discover R2 Boynamo G3 Chihiro

43) nycavri: Build R2 Fr

44) MikeYarrum: Build R3 Chihiro

45) nycavri: Build R3 Nycavri

46) MikeYarrum: Build R3 Boynamo

47) nycavri: Move R2 Fr Boynamo

48) MikeYarrum: Sacrifice Y2 Perapera
Move R3 Boynamo Fr
Move R3 Fr Nycavri
	nycavri: "Chaaaaaaaaaaaaaarge!"

49) nycavri: Attack R3 Nycavri

50) MikeYarrum: Attack R2 Boynamo

51) nycavri: Move R3 Nycavri Perapera

52) MikeYarrum: Sacrifice R1 Boynamo
Attack R3 Perapera

53) nycavri: Trade G2 Y2 Fr

54) MikeYarrum: Sacrifice Y3 Perapera
Move R3 Chihiro Boynamo
Move R3 Boynamo Fr
Move Y2 Boynamo Mikeyarrum

55) nycavri: Discover Y2 Fr R1 Iw

56) MikeYarrum: Trade Y2 G2 Mikeyarrum

57) nycavri: Sacrifice G3 Nycavri
Build Y2 Iw
Build Y3 Iw
Build B2 Nycavri

58) MikeYarrum: Move Y1 Mikeyarrum Iw
Catastrophe Iw Yellow

59) nycavri: Trade B2 G2 Nycavri

60) MikeYarrum: Attack B1 Fr

61) nycavri: Discover B2 Nycavri Y3 Tl

62) MikeYarrum: Build G1 Boynamo

63) nycavri: Build G1 Nycavri

64) MikeYarrum: Sacrifice G1 Boynamo
Build B2 Fr

65) nycavri: Discover B2 Tl Y1 Bk

66) MikeYarrum: Move R3 Fr Bk

67) nycavri: Attack B1 Fr

68) MikeYarrum: Attack B2 Bk

69) nycavri: Sacrifice G1 Nycavri
Build B2 Fr

70) MikeYarrum: Discover B2 Fr G2 Kimura

71) nycavri: Discover B2 Fr Y2 Ad

72) MikeYarrum: Build B3 Kimura

73) nycavri: Sacrifice G2 Nycavri
Build B3 Ad
Build R1 Fr

	MikeYarrum: You may want to take that move back. I can win if I sac my 3-point yellow and move a few reds into your Homeworld
	nycavri: No, 'sok.  You got me.  I have real trouble with this game online when it gets bigger than a couple of systems.  I think I'll give it a rest for a while, especially now I have some face to face opponents for Homeworlds . . .  Well played.
	MikeYarrum: I knew you were experienced enough to probably catch that, but I thought I'd let you know anyway. Thanks for the game!


8733)
Variants: "Hard time"
Started: 2007.7.21, Ended: 2007.9.12
Participants: nycavri (S), dsheldon (N)
Winner: dsheldon

1) dsheldon: Homeworld G1 B2 Y3

2) nycavri: Homeworld Y2 B3 G3
	nycavri: Hi, there.  TaGG.

3) dsheldon: Build Y1 Dsheldon

4) nycavri: Build G1 Nycavri
	dsheldon: fancy seeing you here again ;)

5) dsheldon: Trade Y3 G3 Dsheldon

6) nycavri: Trade G1 Y1 Nycavri

7) dsheldon: Build G1 Dsheldon

8) nycavri: Build G1 Nycavri

9) dsheldon: Discover G1 Dsheldon B3 Ocean

10) nycavri: Discover G1 Nycavri Y1 Fr

11) dsheldon: Build G2 Dsheldon

12) nycavri: Build Y2 Nycavri

13) dsheldon: Sacrifice G3 Dsheldon
Build G2 Ocean
Build Y2 Dsheldon
Build Y3 Dsheldon

14) nycavri: Discover Y2 Nycavri R1 Hl

15) dsheldon: Trade Y2 R2 Dsheldon

16) nycavri: Build G2 Fr

17) dsheldon: Move Y1 Dsheldon Ocean

18) nycavri: Trade Y1 B1 Nycavri

19) dsheldon: Discover G1 Ocean B1 Pond

20) nycavri: Sacrifice G1 Fr
Build Y1 Hl

21) dsheldon: Sacrifice G2 Ocean
Build Y2 Dsheldon
Build Y3 Ocean

22) nycavri: Build G1 Nycavri

23) dsheldon: Trade Y3 G3 Ocean

24) nycavri: Trade G1 R1 Nycavri

25) dsheldon: Build Y3 Ocean

26) nycavri: Discover G2 Fr Y3 Iw

27) dsheldon: Move G3 Ocean Hl

28) nycavri: Sacrifice Y2 Hl
Discover Y1 Hl G3 Tl
Move R1 Nycavri Pond

29) dsheldon: Move Y3 Ocean Pond

30) nycavri: Trade B1 Y1 Nycavri

31) dsheldon: Sacrifice G1 Pond
Build Y2 Ocean

32) nycavri: Build G1 Iw

33) dsheldon: Move G2 Dsheldon Tl

34) nycavri: Sacrifice Y1 Tl
Move R1 Pond Nycavri

35) dsheldon: Discover Y1 Ocean G1 Eden

36) nycavri: Move Y1 Nycavri Eden

37) dsheldon: Move Y3 Pond Iw

38) nycavri: Build Y1 Eden

39) dsheldon: Sacrifice R2 Dsheldon
Attack G2 Iw
Attack Y1 Eden

40) nycavri: Build G2 Iw

41) dsheldon: Trade Y3 R3 Dsheldon

42) nycavri: Build Y3 Eden
Catastrophe Eden Y

43) dsheldon: Build G1 Iw
Catastrophe Iw G

44) nycavri: Build G1 Nycavri

45) dsheldon: Sacrifice Y3 Iw
Move G2 Tl Hl
Move G2 Hl Nycavri
Move G3 Hl Nycavri
Catastrophe Nycavri G

46) nycavri: Trade R1 G1 Nycavri
	dsheldon: I think that might seal my victory.  You'll have to trade to green, I'll take a step forward from Ocean.  You'll have to build another ship.  I'll move in to your homeworld.  No matter what you do next I'll capture your entire fleet.
	nycavri: I remain terrible at this game.  I do seem to do better in person, rather than the "stop-start" nature of concentration online.  Happy to play it out as ever.

47) dsheldon: Discover Y2 Ocean R1 Reaper

48) nycavri: Build G1 Nycavri
	dsheldon: That wasn't terrible at all!  It's got to end sometime.  That's the real problem with these games, eventually someone has to win ;)

From what I remember of our last encounter, you've definitely improved.  This was not easy.
	nycavri: As I've commented before, there's an unforgiving learning curve.  I may have "improved", but I have still lost 15 out of 16 games here . . . and the one was against another newbie who began by building one color in his Homeworld his first 3 turns and allowing me to blow up one of his stars!

I don't mind losing - it's losing this consistently!

49) dsheldon: Move Y2 Reaper Nycavri

	dsheldon: Hmm, I wish I had any kind of useful advice.  I'll see if I can look over the log of this game and try to point out any glaring mistakes once it's over.

Here's a thought, take a look at the log yourself and tell me if there are any of my moves that really surprised you, and we'll see what you did to get to that situation.
	nycavri: Thanks, I appreciate the offer of help - I'll see about looking back over this the next few days.
	nycavri: Well played, by the way!
	dsheldon: My pleasure.  It's an especially satisfying victory because you were quite a worthy opponent.
	nycavri: *blush*


8688)
Started: 2007.7.22, Ended: 2007.8.24
Participants: scottobear (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld R3 B2 G3
	MikeYarrum: Hello, and happy starship captain-ing!

2) scottobear: Homeworld G3 B2 R3

3) MikeYarrum: Build G1 Mikeyarrum

4) scottobear: Build R1 Scottobear
	scottobear: Thank you! this is my very first game of homeworlds!

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) scottobear: Trade R1 Y1 Scottobear

7) MikeYarrum: Build G1 Mikeyarrum

8) scottobear: Build R1 Scottobear

9) MikeYarrum: Trade G1 R1 Mikeyarrum

10) scottobear: Trade R1 B1 Scottobear

11) MikeYarrum: Build G1 Mikeyarrum

12) scottobear: Build B1 Scottobear

13) MikeYarrum: Discover Y1 Mikeyarrum G1 Chiyo

14) scottobear: Trade R3 G3 Scottobear

15) MikeYarrum: Build R1 Mikeyarrum

16) scottobear: Move B1 Scottobear Chiyo

17) MikeYarrum: Sacrifice R1 Mikeyarrum
Attack B1 Chiyo

18) scottobear: Build G1 Scottobear

19) MikeYarrum: Build G2 Mikeyarrum

20) scottobear: Move Y1 Scottobear Chiyo

21) MikeYarrum: Sacrifice R1 Mikeyarrum
Attack Y1 Chiyo
	MikeYarrum: You should take that move back, otherwise I can catastrophe your system.
	scottobear: thank you!


22) scottobear: Trade G1 R1 Scottobear

23) MikeYarrum: Build Y1 Chiyo

24) scottobear: Trade G3 Y3 Scottobear

25) MikeYarrum: Trade Y1 R1 Chiyo
	scottobear: I need to develop some strategy here! :D

26) scottobear: Trade Y3 R3 Scottobear
	MikeYarrum: no worries - it takes time and many, many lost games.

27) MikeYarrum: Trade G2 Y2 Mikeyarrum

28) scottobear: Trade B1 Y1 Scottobear

29) MikeYarrum: Build R1 Chiyo

30) scottobear: Move R1 Scottobear Chiyo

31) MikeYarrum: Attack R1 Chiyo

32) scottobear: Build Y2 Scottobear

33) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move R1 Chiyo Scottobear
Move R1 Chiyo Scottobear
	scottobear: nice! I'm glad you're showing me how this works. :D

34) scottobear: Attack R1 Scottobear
	MikeYarrum: No problem.

35) MikeYarrum: Build R2 Scottobear

36) scottobear: Attack R2 Scottobear
	scottobear: uhoh... am I getting set up for a bluebird?
	MikeYarrum: I don't think it's technically a bluebird, because you'd still be able to diversify your homeworld ships before I launched another attack... but it will still be difficult to recover once I take out your only 3-pointer.

37) MikeYarrum: Discover Y1 Chiyo G2 Sakaki
Catastrophe Scottobear Red

38) scottobear: Move Y1 Scottobear Chiyo

39) MikeYarrum: Attack Y1 Chiyo

40) scottobear: Build Y2 Scottobear
	MikeYarrum: You might want to take that move back. If I move my y1 from chiyo to your homeworld, I can win with a catastrophe.
	scottobear: yikes... thank you


41) MikeYarrum: Build Y2 Sakaki

42) scottobear: Trade Y2 R2 Scottobear

43) MikeYarrum: Build R1 Chiyo

44) scottobear: Move R2 Scottobear Chiyo
	blackhellkat: trade y2 r2 scottobear

45) MikeYarrum: Sacrifice Y2 Sakaki
Move Y1 Chiyo Scottobear
Move Y1 Chiyo Scottobear
	MikeYarrum: Rawr, you do have a decent second-in-command, but it'll take more than that to stop me! ;D

46) scottobear: Attack R1 Chiyo
	scottobear: haha! Nobody can call my number one a number 2!

47) MikeYarrum: Build Y2 Scottobear
Catastrophe Scottobear Yellow

	scottobear: arrrrgh!

	MikeYarrum: You would have put me on the defensive, except that I had the finishing move.


8671)
Variants: "Hard time"
Started: 2007.7.22, Ended: 2007.7.25
Participants: Bob (S), TwoShort (N)
Winner: Bob

	Bob: homeworld g3,b3,g3
 


8745)
Started: 2007.7.23, Ended: 2007.8.24
Participants: DaDRK (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld R3 B2 G3

2) DaDRK: Homeworld B1 G2 R3
	MikeYarrum: Hey again! Happy gaming!

3) MikeYarrum: Build G1 Mikeyarrum

4) DaDRK: Build R1 Dadrk

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) DaDRK: Build R1 Dadrk

7) MikeYarrum: Build Y1 Mikeyarrum

8) DaDRK: Trade R1 Y1 Dadrk
	DaDRK: sorry bout that thought I could have possibly screwed myself over big time, oh and good luck.
	MikeYarrum: No problem. Good luck for too.
	MikeYarrum: *you, too

9) MikeYarrum: Build Y2 Mikeyarrum

10) DaDRK: Discover R1 Dadrk G3 Frst

11) MikeYarrum: Trade Y1 R1 Mikeyarrum

12) DaDRK: Build Y1 Dadrk

13) MikeYarrum: Build Y2 Mikeyarrum

14) DaDRK: Build Y2 Dadrk

15) MikeYarrum: Discover Y1 Mikeyarrum G1 Osaka

16) DaDRK: Trade Y1 G1 Dadrk

17) MikeYarrum: Move R1 Mikeyarrum Osaka

18) DaDRK: Discover G1 Dadrk B3 Scnd

19) MikeYarrum: Discover Y1 Osaka G3 Kagura

20) DaDRK: Build G1 Scnd

21) MikeYarrum: Build Y1 Mikeyarrum

22) DaDRK: Build G2 Scnd

23) MikeYarrum: Build Y3 Kagura

24) DaDRK: Move Y1 Dadrk Kagura

25) MikeYarrum: Discover Y3 Kagura B2 Tomo
	DaDRK: whoops, bad move sorry bout that.
	MikeYarrum: No problem.

26) DaDRK: Sacrifice Y2 Dadrk
Move Y1 Kagura Osaka
Move Y1 Osaka Mikeyarrum
Catastrophe Mikeyarrum Y

27) MikeYarrum: Build Y1 Kagura

28) DaDRK: Trade G1 Y1 Scnd

29) MikeYarrum: Move Y1 Kagura Osaka

30) DaDRK: Discover G2 Scnd R1 Thrd

31) MikeYarrum: Build Y2 Kagura

32) DaDRK: Build G1 Thrd

33) MikeYarrum: Build G2 Mikeyarrum

34) DaDRK: Trade R3 Y3 Dadrk

35) MikeYarrum: Build Y2 Kagura

36) DaDRK: Trade Y3 R3 Dadrk

37) MikeYarrum: Sacrifice G3 Mikeyarrum
Build Y2 Osaka
Build R2 Osaka
Build G3 Mikeyarrum

38) DaDRK: Build R2 Dadrk

39) MikeYarrum: Move R2 Osaka Scnd

40) DaDRK: Move Y1 Scnd Thrd

41) MikeYarrum: Sacrifice Y1 Kagura
Move R2 Scnd Dadrk

	DaDRK: good game I know when I'm beat
	MikeYarrum: Thanks. =D


8737)
Started: 2007.7.23, Ended: 2007.7.26
Participants: mnviii (S), The_Horrible_DrB (N)
Winner: The_Horrible_DrB

1) The_Horrible_DrB: Homeworld G2 B1 Y3

2) mnviii: Homeworld G3 B1 Y3

3) The_Horrible_DrB: Build Y1 The_horrible_drb

4) mnviii: Discover Y3 Mnviii G2 Star1



8817)
Started: 2007.7.28, Ended: 2007.8.10
Participants: Mr_Shine (S), MatrixFrog (N)
Winner: Mr_Shine

1) MatrixFrog: Homeworld R1 G3 Y3 *

2) Mr_Shine: Homeworld B2 Y3 G3

3) MatrixFrog: Build Y1 Matrixfrog

4) Mr_Shine: B G1 Mr_shine

5) MatrixFrog: Build Y1 Matrixfrog

6) Mr_Shine: Build G1 Mr_shine

7) MatrixFrog: Discover Y1 Matrixfrog B2 Zip

8) Mr_Shine: Discover G1 Mr_shine B1 Kobol

9) MatrixFrog: Trade Y1 G1 Zip

10) Mr_Shine: B G2 Mr_shine

11) MatrixFrog: Build G2 Zip

12) Mr_Shine: Trade G1 Y1 Mr_shine

13) MatrixFrog: Trade G1 B1 Zip

14) Mr_Shine: Trade G2 B2 Mr_shine

15) MatrixFrog: Build G1 Zip

16) Mr_Shine: Discover B2 Mr_shine G1 Caprica

17) MatrixFrog: Trade G2 Y2 Zip

18) Mr_Shine: Build G2 Mr_shine

19) MatrixFrog: Build G2 Zip

20) Mr_Shine: Build G2 Kobol

21) MatrixFrog: Discover G1 Zip Y1 Zap

22) Mr_Shine: Trade G1 R1 Kobol

23) MatrixFrog: Build G1 Zap

24) Mr_Shine: Trade G2 R2 Mr_shine

25) MatrixFrog: Build Y2 Zip

26) Mr_Shine: Build B1 Caprica

27) MatrixFrog: Move Y2 Zip Matrixfrog

28) Mr_Shine: Trade B2 Y2 Caprica

29) MatrixFrog: Sacrifice B1 Zip
Trade Y3 G3 Matrixfrog

30) Mr_Shine: Build Y3 Caprica

31) MatrixFrog: Build Y3 Zip

32) Mr_Shine: Move Y3 Caprica Zip

33) MatrixFrog: Move Y3 Zip Caprica

34) Mr_Shine: Sacrifice R2 Mr_shine
Attack Y2 Zip
Attack G2 Zip

35) MatrixFrog: Discover G1 Zap B2 Zop

36) Mr_Shine: Build G2 Zip

37) MatrixFrog: Sacrifice Y2 Matrixfrog
Move G1 Zap Mr_shine
Move Y3 Caprica Mr_shine

38) Mr_Shine: Sacrifice Y2 Zip
Move G2 Zip Matrixfrog
Move G2 Zip Matrixfrog
Catastrophe Matrixfrog G

39) MatrixFrog: Build Y1 Mr_shine
Catastrophe Mr_shine Y

40) Mr_Shine: Move Y3 Zip Matrixfrog

41) MatrixFrog: Sacrifice G1 Zop
Build G1 Mr_shine

42) Mr_Shine: Attack Y1 Matrixfrog

	Mr_Shine: Thanks for the game.


8766)
Started: 2007.7.28, Ended: 2007.8.5
Participants: MikeYarrum (S), Mr_Shine (N)
Winner: MikeYarrum

1) Mr_Shine: Homeworld G1 B3 Y3

2) MikeYarrum: Homeworld R3 B2 G3
	Mr_Shine: Hi, and good luck!
	MikeYarrum: Hello, happy starshiping!

3) Mr_Shine: Build Y1 Mr_shine
	Mr_Shine: b y1 mr_shine

4) MikeYarrum: Build G1 Mikeyarrum

5) Mr_Shine: Trade Y3 G3 Mr_shine

6) MikeYarrum: Trade G1 Y1 Mikeyarrum

7) Mr_Shine: Build G1 Mr_shine

8) MikeYarrum: Build G1 Mikeyarrum

9) Mr_Shine: D G1 Mr_shine B2 Earth

10) MikeYarrum: Build G2 Mikeyarrum

11) Mr_Shine: Build G2 Mr_shine
	MikeYarrum: What a silly name for a planet!

12) MikeYarrum: Discover G2 Mikeyarrum B1 Osaka
	Mr_Shine: It wasn't my idea. It's what the locals call it. I decided I'd let them keep their name as they're such good slave labour.

13) Mr_Shine: Trade G2 Y2 Mr_shine

14) MikeYarrum: Build G2 Osaka

15) Mr_Shine: Build G2 Mr_shine

16) MikeYarrum: Trade G2 Y2 Osaka

17) Mr_Shine: Discover G2 Mr_shine B2 Pluto

18) MikeYarrum: Trade G1 R1 Mikeyarrum

19) Mr_Shine: Trade Y1 R1 Mr_shine

20) MikeYarrum: Build Y1 Osaka

21) Mr_Shine: Sacrifice G2 Pluto
Build G1 Mr_shine
Build G2 Mr_shine
Catastrophe Mr_shine G

	MikeYarrum: Would you like to try again? That was a bit unexpected...


8848)
Variants: "Hard time"
Started: 2007.7.29, Ended: 2007.7.31
Participants: Mr_Shine (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B2 G3

2) Mr_Shine: Homeworld B2 Y3 G3

3) zoltar: Build G1 Zoltar
	zoltar: Greetingz, Earthling.

4) Mr_Shine: Build G1 Mr_shine
	Mr_Shine: What is this Earth of which you speak? Is it that medium blue planet I conquered and abandoned awhile back?

Greetings to you as well.

5) zoltar: Trade G1 Y1 Zoltar

6) Mr_Shine: Build G1 Mr_shine

7) zoltar: Build G1 Zoltar

8) Mr_Shine: Trade G1 Y1 Mr_shine

9) zoltar: Trade G1 R1 Zoltar

10) Mr_Shine: Trade G1 R1 Mr_shine

11) zoltar: Build R2 Zoltar

12) Mr_Shine: Build R2 Mr_shine

13) zoltar: Discover R2 Zoltar G3 Greengiant

14) Mr_Shine: Trade R2 B2 Mr_shine

15) zoltar: Build R2 Zoltar

16) Mr_Shine: Discover B2 Mr_shine G1 New_eden

17) zoltar: Trade R1 B1 Zoltar

18) Mr_Shine: Build G1 Mr_shine

19) zoltar: Move B1 Zoltar Greengiant

20) Mr_Shine: Trade G1 B1 Mr_shine

21) zoltar: Build G1 Zoltar

22) Mr_Shine: Move Y1 Mr_shine New_eden

23) zoltar: Discover G1 Zoltar B3 Bloohoohoo

24) Mr_Shine: B G1 Mr_shine

25) zoltar: Build G2 Zoltar

26) Mr_Shine: Discover G1 Mr_shine B1 Sapphire

27) zoltar: Sacrifice G3 Zoltar
Build G2 Bloohoohoo
Build G2 Zoltar
Build G3 Zoltar

28) Mr_Shine: Sacrifice G3 Mr_shine
Build G3 Sapphire
Build B3 Mr_shine
Build B3 New_eden

29) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar
Build Y2 Zoltar
	zoltar: wow -- looks like I've lost this game already!

30) Mr_Shine: Trade B3 Y3 Mr_shine

31) zoltar: Sacrifice G2 Zoltar
Build B3 Greengiant
Build R1 Greengiant

32) Mr_Shine: Sacrifice Y1 New_eden
Move G1 Sapphire Mr_shine

33) zoltar: Trade B3 Y3 Greengiant

34) Mr_Shine: Build G2 Sapphire

35) zoltar: Sacrifice Y2 Zoltar
Move G1 Bloohoohoo Sapphire
Move G2 Bloohoohoo Sapphire
Catastrophe Sapphire G

36) Mr_Shine: Build R2 Mr_shine

37) zoltar: Discover R2 Greengiant Y1 Attackoutpost
	Mr_Shine: Looks like victory. Congrats.

38) Mr_Shine: Sacrifice R1 Mr_shine
Pass
	zoltar: Victory? You're as pessimistic as I! More like gone from lost to a close game...

39) zoltar: Build Y2 Greengiant

40) Mr_Shine: Trade B2 Y2 New_eden

41) zoltar: Build Y2 Zoltar

42) Mr_Shine: Discover B1 Mr_shine B1 Lonelybluestar

	Mr_Shine: Well done. There was no way I was going to blunt your attack from there. Cheers for the game.


8776)
Started: 2007.7.31, Ended: 2007.9.3
Participants: ts52 (S), wmreed (N)
Winner: ts52

1) wmreed: Homeworld G3 B1 R3

2) ts52: Homeworld G1 B2 R3
	wmreed: Hello!  Good luck!
	ts52: Thanks! Good luck to you too!

3) wmreed: Build R1 Wmreed

4) ts52: Build R1 Ts52

5) wmreed: Trade R1 Y1 Wmreed

6) ts52: Trade R1 Y1 Ts52

7) wmreed: Build Y1 Wmreed

8) ts52: Build Y2 Ts52

9) wmreed: Build Y2 Wmreed

10) ts52: Trade Y1 G1 Ts52

11) wmreed: Trade Y1 B1 Wmreed

12) ts52: Build Y1 Ts52

13) wmreed: Discover B1 Wmreed G2 Bendon

14) ts52: Discover G1 Ts52 B3 Grover

15) wmreed: Build R1 Wmreed

16) ts52: Build R1 Ts52

17) wmreed: Move R1 Wmreed Bendon

18) ts52: Move Y1 Ts52 Grover

19) wmreed: Move Y1 Wmreed Bendon

20) ts52: Move R1 Ts52 Grover

21) wmreed: Build Y1 Bendon

22) ts52: Build R1 Ts52

23) wmreed: Discover B1 Bendon Y3 Telgar

24) ts52: Discover R1 Ts52 Y3 Sol

25) wmreed: Build R2 Bendon

26) ts52: Build R2 Grover

27) wmreed: Move Y1 Bendon Wmreed

28) ts52: Trade R2 G2 Grover

29) wmreed: Build R2 Wmreed

30) ts52: Sacrifice G2 Grover
Build Y2 Ts52
Build Y3 Grover

31) wmreed: Trade R2 G2 Wmreed

32) ts52: Build R2 Ts52

33) wmreed: Sacrifice G2 Wmreed
Build B1 Telgar
Build B2 Telgar

34) ts52: Sacrifice Y2 Ts52
Move Y3 Grover Bendon
Move Y3 Bendon Telgar

35) wmreed: Move B1 Telgar Bendon

36) ts52: Sacrifice R2 Ts52
Attack B2N Telgar
Attack B1N Telgar

37) wmreed: Discover R1 Bendon G3 Ista

38) ts52: Build Y2 Ts52
	wmreed: Crap.  Well done.


39) wmreed: Build R2 Ista
	ts52: It's far from over. But thanks.

40) ts52: Trade B2 G2 Telgar

41) wmreed: Build B2 Bendon

42) ts52: Sacrifice G2 Telgar
Build R2 Sol
Build R3 Grover

43) wmreed: Trade B2 G2 Bendon

44) ts52: Move Y3 Telgar Bendon

45) wmreed: Sacrifice Y2 Wmreed
Discover R2 Bendon G1 Fort
Move G2 Bendon Fort

46) ts52: Move R1 Sol Bendon
	wmreed: Hm.  I'm not sure what to do next, darn you.

47) wmreed: Sacrifice Y1 Bendon
Move B1 Bendon Wmreed

48) ts52: Move R3 Grover Fort
	ts52: It's ok. I'm not so sure myself.

49) wmreed: Sacrifice G2 Fort
Build Y1 Wmreed
Build Y2 Wmreed

50) ts52: Sacrifice Y2 Ts52
Move Y1 Grover Bendon
Move Y1 Bendon Wmreed
Catastrophe Wmreed Yellow

51) wmreed: Sacrifice B1 Wmreed
Trade R2 G2 Ista

52) ts52: Attack R2N Fort

53) wmreed: Build R2 Wmreed

54) ts52: Build Y1 Bendon

55) wmreed: Trade R2 Y2 Wmreed

56) ts52: Sacrifice Y1 Bendon
Move R3 Fort Bendon

57) wmreed: Build G2 Ista

58) ts52: Build G3 Grover

59) wmreed: Build Y1 Wmreed

60) ts52: Sacrifice Y2 Ts52
Move Y3 Bendon Wmreed
Move R3 Bendon Wmreed

61) wmreed: Attack R3 Wmreed

62) ts52: Sacrifice R2 Fort
Attack R3N Wmreed
Attack R3N Wmreed

	wmreed: Good game!  Thank you!


8831)
Started: 2007.7.31, Ended: 2007.8.6
Participants: MikeYarrum (S), Freemonty (N)
Winner: MikeYarrum

1) Freemonty: Homeworld Y2 G1 R3 *
	Freemonty: look, I'm new with this system. Seince I tried playing I can't get it to make my first move. Is there something that I don't know, or am I just putting in the commands wrong? You might not know the answer to that Question.

2) MikeYarrum: Homeworld G3 Y1 B3
	Freemonty: ignore my first comment. I'm a N00b, it might show in my move.
	MikeYarrum: No problem, it takes awhile to get used to, but it'll become second-nature soon.

3) Freemonty: Build R1 Freemonty

4) MikeYarrum: Build B1 Mikeyarrum
	Freemonty: Is it just standard convention to start with green/blue, or are there other ways to start? [look at my starting position]
	MikeYarrum: Actually, it's highly recommended that you start with both green and blue, whether it's in your homeworld or your ship. Some advanced players like to start with green/blue/red and trade for yellow ASAP, but most start with green/blue/yellow and trade for red later. The problem with your set-up is, if you want any other color ship besides red, you're going to have to discover a blue star system, then trade for other colors besides red, and then possibly move them back to your homeworld. It's not very efficient. I, on the other hand, can build and trade more easily with my setup.

Don't worry, it takes a game or two to see the strategy in establishing a homeworld. Try reading the SDG wiki and any other pages you can find on the game.

5) Freemonty: Discover R1 Freemonty B3 Sevensevenseven

6) MikeYarrum: Trade B1 R1 Mikeyarrum
	Freemonty: Ok. I guess we'll see how this ends up then.

7) Freemonty: Trade R1 B1 Sevensevenseven

	Freemonty: I hope this rectifies my mistake.
	MikeYarrum: It's going to take more than that, I'm afraid. Without yellow ships to sacrifice, that blue ship is pretty much stuck there. It might have made sense if you traded for green, so you could build more green ships then trade for other colors, but you'd still be playing catch-up against me.

I wouldn't mind ending this game and starting another, if you want a fair shot.
	Freemonty: Sounds fair to me. [last time I argue with a computer]


8864)
Started: 2007.8.1, Ended: 2007.8.5
Participants: Mr_Shine (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B2 R3 G3

2) Mr_Shine: Homeworld Y1 B2 G3

3) zoltar: Build G1 Zoltar

4) Mr_Shine: Build G1 Mr_shine

5) zoltar: Trade G1 Y1 Zoltar

6) Mr_Shine: Build G1 Mr_shine

7) zoltar: Build Y1 Zoltar

8) Mr_Shine: Discover G1 Mr_shine B3 Kobol

9) zoltar: Build Y2 Zoltar

10) Mr_Shine: Build G1 Mr_shine

11) zoltar: Build G2 Zoltar

12) Mr_Shine: Build G2 Kobol

13) zoltar: Build G2 Zoltar

14) Mr_Shine: Trade G2 Y2 Kobol

15) zoltar: Discover G2 Zoltar B1 Blueberry

16) Mr_Shine: Trade G1 R1 Mr_shine

17) zoltar: Trade Y1 R1 Zoltar

18) Mr_Shine: Build R1 Mr_shine

19) zoltar: Build R2 Zoltar

20) Mr_Shine: Move R1 Mr_shine Kobol

21) zoltar: Trade R1 B1 Zoltar

22) Mr_Shine: Build R1 Kobol

23) zoltar: Move R2 Zoltar Blueberry

24) Mr_Shine: Build Y1 Kobol

25) zoltar: Move Y1 Zoltar Blueberry

26) Mr_Shine: Trade R1 B1 Kobol

27) zoltar: Sacrifice G2 Zoltar
Build Y2 Zoltar
Build Y3 Blueberry

28) Mr_Shine: Discover Y1 Kobol G1 Caprica

29) zoltar: Sacrifice Y2 Zoltar
Move B1 Zoltar Caprica
Move Y3 Blueberry Kobol
	Mr_Shine: Bravo. I think I'm well and truly beaten now:)
	Mr_Shine: Sorry about that. Building  Caprica was a very bad move.

30) Mr_Shine: Sacrifice G3 Mr_shine
Build Y2 Kobol
Build Y3 Kobol
Build Y3 Caprica
Catastrophe Kobol Y
	Mr_Shine: Slight adjustment, as I can't think of anything better to do. (After the game would it be possible for you to tell me what you would have done here?)
	zoltar: Actually, I would have made one of those moves as well.  I'm getting pretty good at the game, but in positions like these I'm usually in a fog as well, and still am not too sure what I'm doing, and just try to make the most tactical threats at once and go for getting bigger pieces. I'm super busy so I'll have to put this on hold and think about it, as this is a tough position for me as well.

31) zoltar: Sacrifice Y2 Zoltar
Move G2 Blueberry Kobol
Move G2 Kobol Mr_shine

32) Mr_Shine: Pass

33) zoltar: Sacrifice R2 Blueberry
Attack R1 Mr_shine
Attack G1 Mr_shine

	Mr_Shine: Congratulations. Good game.
	zoltar: You were doing fine up till that last sack, and you'd be fine now if you only had another y2 to sack to bring your y3 back home, or if your y3 were only one jump away.  Without a 3-pip ship able to get to your homeworld the next turn, it's almost always disastrous to leave your homeworld unprotected by a 3-pip ship.
	zoltar: Thanks. Good game.


8961)
Started: 2007.8.6, Ended: 2007.9.1
Participants: Freemonty (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld R3 B2 G3

2) Freemonty: Homeworld B1 G2 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) Freemonty: Build Y1 Freemonty

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) Freemonty: Trade Y1 R1 Freemonty

7) MikeYarrum: Build G1 Mikeyarrum

8) Freemonty: Build R1 Freemonty

9) MikeYarrum: Build G1 Mikeyarrum

10) Freemonty: Build Y1 Freemonty

11) MikeYarrum: Discover G1 Mikeyarrum B1 Yotsuba

12) Freemonty: Trade R1 B1 Freemonty

13) MikeYarrum: Build G1 Yotsuba

14) Freemonty: Discover R1 Freemonty Y3 Sevensevenseven

15) MikeYarrum: Build G2 Yotsuba

16) Freemonty: Move B1 Freemonty Sevensevenseven

17) MikeYarrum: Trade G1 Y1 Yotsuba

18) Freemonty: Trade B1 G1 Sevensevenseven

19) MikeYarrum: Build Y2 Yotsuba

20) Freemonty: Build G2 Sevensevenseven

21) MikeYarrum: Trade G1 R1 Yotsuba

22) Freemonty: Sacrifice Y3 Freemonty
Move R1 Sevensevenseven Yotsuba
Move G1 Sevensevenseven Yotsuba
Move G2 Sevensevenseven Yotsuba

23) MikeYarrum: Attack G2 Yotsuba

24) Freemonty: Attack R1N Yotsuba

25) MikeYarrum: Discover Y2 Yotsuba G3 Asagi

26) Freemonty: Trade Y1 R1 Freemonty

27) MikeYarrum: Trade G2 R2 Yotsuba

28) Freemonty: Build R2 Yotsuba
Catastrophe Yotsuba R

29) MikeYarrum: Trade G2 R2 Yotsuba

30) Freemonty: Build R1 Freemonty

31) MikeYarrum: Sacrifice Y2 Asagi
Discover R2 Yotsuba B3 Fuuka
Move R2 Fuuka Freemonty

32) Freemonty: Trade G1 R1 Yotsuba
	Freemonty: Nice knowing ya...

33) MikeYarrum: Build R2 Freemonty
Catastrophe Freemonty Red
	MikeYarrum: ^_^ It was a good game.



8617)
Variants: "Hard time"
Started: 2007.8.8, Ended: 2007.8.9
Participants: Jesse (S), Horowits (N)
Winner: Jesse

1) Horowits: Homeworld G3 B2 R3

2) Jesse: Homeworld G3 B1 Y3
	Horowits: The people of planet Gwar celebrate as they launch their first ship.

3) Horowits: Build R1 Horowits
	Jesse: The people of planet Gwar are clearly gwarlike.  In the interest of galactic gpeace, something must be done.  The people of planet Gpolice prepare for action.

4) Jesse: Build Y1 Jesse

5) Horowits: Trade R1 Y1 Horowits

6) Jesse: Discover Y1 Jesse G2 Riotgear
	Horowits: Planet Gwar throws another bash celebrating a shiny new yellow ship.

7) Horowits: Discover Y1 Horowits G1 Greenjello

8) Jesse: Build Y1 Jesse

9) Horowits: Build Y2 Greenjello

10) Jesse: Discover Y1 Jesse G2 Baton

11) Horowits: Build R1 Horowits

12) Jesse: Build Y2 Jesse

13) Horowits: Trade R1 B1 Horowits

14) Jesse: Trade Y2 R2 Jesse

15) Horowits: Move Y2 Greenjello Horowits

16) Jesse: Build Y2 Jesse

17) Horowits: Move B1 Horowits Greenjello

18) Jesse: Trade Y2 B2 Jesse

19) Horowits: Trade Y1 R1 Greenjello

20) Jesse: Move B2 Jesse Riotgear

21) Horowits: Build Y1 Horowits

22) Jesse: Build Y2 Riotgear

23) Horowits: Move Y2 Horowits Greenjello

24) Jesse: Trade Y2 G2 Riotgear

25) Horowits: Move R1 Greenjello Baton

26) Jesse: Build Y2 Baton

27) Horowits: Attack Y1 Baton

28) Jesse: Sacrifice R2 Jesse
Attack Y1 Baton
Attack R1 Baton



8867)
Started: 2007.8.9, Ended: 2007.9.2
Participants: inundator (S), MikeYarrum (N)
Winner: inundator

1) MikeYarrum: Homeworld R3 B2 G3

2) inundator: Homeworld B1 G2 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) inundator: Build Y1 Inundator

5) MikeYarrum: Build G1 Mikeyarrum

6) inundator: Build Y1 Inundator

7) MikeYarrum: Trade G1 Y1 Mikeyarrum

8) inundator: Trade Y1 R1 Inundator

9) MikeYarrum: Build G1 Mikeyarrum

10) inundator: Build R1 Inundator
	inundator: Sorry for the delay. I was at Gencon and my hotel's wi-fi sucked.

11) MikeYarrum: Discover G1 Mikeyarrum B1 Ena
	MikeYarrum: no problem. =D

12) inundator: Discover R1 Inundator Y3 Galahad

13) MikeYarrum: Trade G1 R1 Mikeyarrum

14) inundator: Build R2 Inundator

15) MikeYarrum: Build G1 Ena

16) inundator: Move R2 Inundator Galahad

17) MikeYarrum: Move R1 Mikeyarrum Ena

18) inundator: Move R2 Galahad Ena

19) MikeYarrum: Build R2 Ena

20) inundator: Attack R2 Ena

21) MikeYarrum: Build R2 Ena
Catastrophe Ena Red

22) inundator: Move R1 Galahad Ena

23) MikeYarrum: Build G1 Mikeyarrum

24) inundator: Attack G1 Ena

25) MikeYarrum: Sacrifice G3 Mikeyarrum
Build G2 Ena
Build G2 Mikeyarrum
Build G3 Mikeyarrum

26) inundator: Sacrifice Y1 Inundator
Move G1 Ena Mikeyarrum
Catastrophe Mikeyarrum Green

	MikeYarrum: Shoot, I forgot you had that move. Unless you're prone to bigger mistakes than that, it's your game.


9014)
Started: 2007.8.10, Ended: 2008.2.21
Participants: MatrixFrog (S), Horowits (N)
Winner: MatrixFrog

1) Horowits: Homeworld G2 B1 R3

2) MatrixFrog: Homeworld B3 G2 Y3

3) Horowits: Build R1 Horowits

4) MatrixFrog: Build Y1 Matrixfrog

5) Horowits: Trade R1 Y1 Horowits

6) MatrixFrog: Discover Y1 Matrixfrog Y1 Bom

7) Horowits: Build Y2 Horowits

8) MatrixFrog: Build Y2 Matrixfrog

9) Horowits: Discover Y1 Horowits G3 Gwar

10) MatrixFrog: Trade Y2 G2 Matrixfrog

11) Horowits: Build Y2 Gwar

12) MatrixFrog: Build G1 Matrixfrog

13) Horowits: Build R1 Horowits

14) MatrixFrog: Build Y2 Matrixfrog

15) Horowits: Trade R1 G1 Horowits

16) MatrixFrog: Discover Y1 Bom G3 Zip



8874)
Started: 2007.8.11, Ended: 2007.8.11
Participants: Mr_Shine (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Mr_Shine: Homeworld Y3 B1 G3

	ts52: Did you really mean to resign?


8995)
Started: 2007.8.13, Ended: 2007.9.20
Participants: Horowits (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld R3 B2 G3

2) Horowits: Homeworld Y3 B1 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) Horowits: Build G1 Horowits

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) Horowits: Discover G1 Horowits G2 Greenjello

7) MikeYarrum: Build G1 Mikeyarrum



8484)
Started: 2007.8.14, Ended: 2008.1.22
Participants: Uglyfoot (S), DaDRK (W), JeffW (N), nycavri (E)
Winner: Uglyfoot

1) nycavri: Homeworld B1 G2 Y3
	DaDRK: good luck on the game :)

2) Uglyfoot: Homeworld Y3 B1 G3
	nycavri: My first ever multi-player Homeworlds. . . TaGG.

3) DaDRK: Homeworld G3 B2 R3
	DaDRK: same here

4) nycavri: Build Y1 Nycavri

5) Uglyfoot: Build G1 Uglyfoot

6) DaDRK: Build R1 Dadrk

7) nycavri: Build Y1 Nycavri

8) Uglyfoot: Build G1 Uglyfoot

9) DaDRK: Build R1 Dadrk

10) nycavri: Trade Y1 B1 Nycavri

11) Uglyfoot: Discover G1 Uglyfoot B2 Themall

12) DaDRK: Trade R1 Y1 Dadrk

13) nycavri: Build Y1 Nycavri

14) Uglyfoot: Build G1 Themall

15) DaDRK: Discover R1 Dadrk B1 Frst

16) nycavri: Discover Y1 Nycavri G3 Mvb

17) Uglyfoot: Trade G1 Y1 Themall

18) DaDRK: Build Y1 Dadrk

19) nycavri: Build Y2 Mvb

20) Uglyfoot: Build Y2 Themall

21) DaDRK: Move Y1 Dadrk Frst

22) nycavri: Trade Y1 G1 Nycavri

23) Uglyfoot: Trade Y1 R1 Themall

24) DaDRK: Trade Y1 G1 Frst

25) nycavri: Trade B1 R1 Nycavri

26) Uglyfoot: Build Y1 Themall

27) DaDRK: Build G1 Frst

28) nycavri: Discover Y2 Mvb R2 Mvg

29) Uglyfoot: Build G2 Themall

30) DaDRK: Trade G1 Y1 Frst

31) nycavri: Build R1 Nycavri

32) Uglyfoot: Move G2 Themall Mvb

33) DaDRK: Build R1 Frst

34) nycavri: Move Y1 Mvb Mvg

35) Uglyfoot: Build R2 Themall

36) DaDRK: Build R2 Dadrk

37) nycavri: Discover Y1 Mvg B1 Iw

38) Uglyfoot: Trade R1 B1 Themall

39) DaDRK: Move R2 Dadrk Iw

40) nycavri: Move Y1 Iw Mvg

41) Uglyfoot: Move B1 Themall Mvb

42) DaDRK: Discover R1 Frst Y2 Scnd

43) nycavri: Move G1 Nycavri Mvb

44) Uglyfoot: Trade G2 R2 Mvb

45) DaDRK: Move R1 Scnd Uglyfoot

46) nycavri: Sacrifice G1 Mvb
Build Y1 Nycavri

47) Uglyfoot: Sacrifice R2 Themall
Attack R1W Uglyfoot
Pass

48) DaDRK: Move R1 Frst Themall

49) nycavri: Discover Y1 Nycavri G3 Jw

50) Uglyfoot: Build B2 Mvb

51) DaDRK: Build G1 Frst

52) nycavri: Build Y2 Jw

53) Uglyfoot: Trade B2 Y2 Mvb

54) DaDRK: Build Y2 Dadrk

55) nycavri: Build Y3 Nycavri
	DaDRK: for some reason I can't attack in themall

56) Uglyfoot: Build Y3 Mvb
	nycavri: I'm guessing this was the problem: 

"Stars and Ships are referred to by their colour and size (eg. R1, Y3) with the sole exception of the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E)."

57) DaDRK: Attack G1S Themall

58) nycavri: Sacrifice Y3 Nycavri
Move Y1 Mvg Uglyfoot
Move Y1 Jw Mvg
Move Y2 Mvg Uglyfoot

59) Uglyfoot: Sacrifice Y2 Themall
Move Y2 Mvb Nycavri
Move Y3 Mvb Nycavri

60) DaDRK: Sacrifice Y2 Dadrk
Move Y1 Frst Mvg
Move Y1 Mvg Uglyfoot
Catastrophe Uglyfoot Y

61) nycavri: Attack Y3S Nycavri


62) Uglyfoot: Build Y1 Nycavri
Catastrophe Nycavri Y

63) DaDRK: Attack Y1S Themall

64) nycavri: Move Y2 Jw Nycavri

65) Uglyfoot: Build B2 Mvb

66) DaDRK: Build Y1 Themall
	nycavri: For some reason I blanked on the fact that you could use the green star inmy Homeworld . . .

67) nycavri: Build Y1 Nycavri

68) Uglyfoot: Trade B2 Y2 Mvb

69) DaDRK: Build Y2 Dadrk

70) nycavri: Trade Y2 B2 Nycavri

71) Uglyfoot: Build B2 Mvb

72) DaDRK: Build Y2 Dadrk

73) nycavri: Build Y2 Nycavri

74) Uglyfoot: Build Y2 Mvb

75) DaDRK: Move Y2 Dadrk Frst

76) nycavri: Trade Y2 G2 Nycavri

77) Uglyfoot: Sacrifice Y2 Mvb
Move B1 Mvb Nycavri
Move B2 Mvb Nycavri
Catastrophe Nycavri B

78) DaDRK: Sacrifice Y2 Frst
Move G1 Frst Nycavri
Move G1 Frst Nycavri
Catastrophe Nycavri G

79) Uglyfoot: Move R2 Mvb Themall

80) DaDRK: Sacrifice Y1 Themall
Move G1 Themall Uglyfoot

81) Uglyfoot: Attack G1W Uglyfoot

82) DaDRK: Trade Y1 G1 Dadrk

83) Uglyfoot: Sacrifice Y2 Mvb
Move G1 Uglyfoot Dadrk
Move G1 Uglyfoot Dadrk
Catastrophe Dadrk G

84) DaDRK: Sacrifice Y1 Themall
Move R1 Themall Iw

85) Uglyfoot: Build R1 Uglyfoot

86) DaDRK: Trade R2 G2 Iw

87) Uglyfoot: Build R1 Uglyfoot

88) DaDRK: Build G1 Iw

89) Uglyfoot: Trade R1 Y1 Uglyfoot

90) DaDRK: Build R1 Iw

91) Uglyfoot: Trade R2 G2 Themall

92) DaDRK: Trade R1 Y1 Iw

93) Uglyfoot: Build G1 Uglyfoot

94) DaDRK: Sacrifice G2 Iw
Build G1 Iw
Build Y1 Dadrk

95) Uglyfoot: Sacrifice Y1 Uglyfoot
Move G2 Themall Iw

96) DaDRK: Sacrifice Y2 Dadrk
Move G1 Iw Dadrk
Move G1 Iw Mvg

97) Uglyfoot: Sacrifice R1 Uglyfoot
Attack R1W Iw

98) DaDRK: Sacrifice Y1 Iw
Move G1 Mvg Uglyfoot

99) Uglyfoot: Trade G3 Y3 Uglyfoot

100) DaDRK: Build G1 Uglyfoot

101) Uglyfoot: Build R1 Iw

102) DaDRK: Trade R3 B3 Dadrk

103) Uglyfoot: Discover G1 Uglyfoot Y3 Grande

104) DaDRK: Build G1 Uglyfoot

105) Uglyfoot: Move G1 Grande Uglyfoot
Catastrophe Uglyfoot G

106) DaDRK: Build G1 Dadrk

107) Uglyfoot: Trade R1 Y1 Iw

108) DaDRK: Trade G1 R1 Dadrk

109) Uglyfoot: Build G1 Iw

110) DaDRK: Build G1 Dadrk

111) Uglyfoot: Trade G1 B1 Iw

112) DaDRK: Move G1 Dadrk Uglyfoot

113) Uglyfoot: Build B1 Iw

114) Uglyfoot: Sacrifice Y3 Uglyfoot
Move B1 Iw Dadrk
Move B1 Iw Dadrk
Move G2 Iw Mvg
Catastrophe Dadrk B



9025)
Started: 2007.8.16, Ended: 2007.8.16
Participants: Mr_Shine (S), ts52 (N)
Winner: ts52

	Mr_Shine: Sorry. Accidently clicked the link


9072)
Variants: "Hard time"
Started: 2007.8.17, Ended: 2007.8.31
Participants: MikeYarrum (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) MikeYarrum: Homeworld G1 B2 Y3

3) zoltar: Build G1 Zoltar

4) MikeYarrum: Build Y1 Mikeyarrum

5) zoltar: Build G1 Zoltar

6) MikeYarrum: Build Y1 Mikeyarrum

7) zoltar: Trade G3 Y3 Zoltar

8) MikeYarrum: Discover Y1 Mikeyarrum B3 Asagi
	MikeYarrum: I was wondering what your next move would be.

9) zoltar: Build G2 Zoltar

10) MikeYarrum: Build Y1 Mikeyarrum

11) zoltar: Build Y2 Zoltar
	zoltar: I think trading the large G3 for a Y3 was a 'forced' move, as I needed yellow, and trading a small gives you 2-pip yellows a move earlier.

12) MikeYarrum: Discover Y1 Mikeyarrum G3 Fuuka
	MikeYarrum: My problem is, I should've snatched up a green 1-pip earlier. Now you can shut me out of them for good.

13) zoltar: Discover Y2 Zoltar B2 Plorrgh

14) MikeYarrum: Build Y2 Fuuka
	zoltar: One of the reasons I've been using the red-blue star system is that if you had red-blue now you could easily trade a Y3 for a G3; but now if you do so, as soon as you build another green I send a green in and blow it up; the red-blue allows you to build both green and yellow without having to have 3 of a color in your system.
	MikeYarrum: Ah, that's very true.

15) zoltar: Sacrifice G2 Zoltar
Build Y2 Zoltar
Build Y3 Plorrgh

16) MikeYarrum: Trade Y1 R1 Mikeyarrum

17) zoltar: Trade Y2 R2 Plorrgh

18) MikeYarrum: Discover Y2 Fuuka B2 Ena
	zoltar: Btw, you'd better go for broke now and fire off all your guesses in the Zendo game, because I doubt you'll get another turn...
	MikeYarrum: Dude, if I had ANY idea of what to guess, I'd have done it a long time ago. The reason I asked to be kicked out is because I seriously have no clue whatsoever of any kind of rule that would be accepted. Everytime I think I've got a pattern, one of the koans busts it.

I appreciate your belief in me, but... man, stuff's hard.

19) zoltar: Move G1 Zoltar Plorrgh
	zoltar: Well, then sit back in awe and watch Ryan do what Gort did in the last game and then ask him how he did it.  Can't give you any hints as that would be cheating, but look how ryan's last koan was so close to several others and revealed a lot of information -- more than enough for you to win with 3 stones (or with one stone if you are Ryan or Gort). Just try to formulate any rule at all that works on all the koans, and then when I give a counterexample, use that as a clue, and so forth. Of course as you say, you have to have some hunch to get the ball initially rolling when you have 3 guesses to burn. Well, good luck.
	zoltar: Btw, I really love my rules -- I think I'm coming up with great rules that are easy to formulate (six English words or so) but very hard to crack, but not too hard so that Ryan or Gort still get them easily whilst everyone else is stumped.  If you are still stumped and Ryan gets it easily, besides illustrating how amazing Ryan is (I'm actually not much better than you, but I come up with better koans to test things than you do), it will show that I'm making really good rules.

20) MikeYarrum: Trade Y2 G2 Ena

21) zoltar: Build G2 Plorrgh

	MikeYarrum: Sorry, I just didn't have any moves I liked.


9049)
Started: 2007.8.18, Ended: 2007.9.6
Participants: weevilgenius (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B3 R2 G3

2) weevilgenius: Homeworld G2 B1 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) weevilgenius: Build Y1 Weevilgenius

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) weevilgenius: Trade Y1 G1 Weevilgenius

7) MikeYarrum: Build G1 Mikeyarrum

8) weevilgenius: Discover G1 Weevilgenius B3 Andromeda

9) MikeYarrum: Build Y1 Mikeyarrum

10) weevilgenius: Build G1 Andromeda

11) MikeYarrum: Build G2 Mikeyarrum

12) weevilgenius: Trade G1 R1 Andromeda

13) MikeYarrum: Trade G1 R1 Mikeyarrum

14) weevilgenius: Build G1 Andromeda

15) MikeYarrum: Discover G2 Mikeyarrum B1 Ena

16) weevilgenius: Build Y1 Weevilgenius

17) MikeYarrum: Move Y1 Mikeyarrum Ena

18) weevilgenius: Build Y2 Weevilgenius

19) MikeYarrum: Build Y2 Ena

20) weevilgenius: Trade Y2 R2 Weevilgenius

21) MikeYarrum: Build Y2 Mikeyarrum

22) weevilgenius: Build Y2 Weevilgenius

23) MikeYarrum: Sacrifice Y2 Mikeyarrum
Move Y1 Ena Andromeda
Move Y1 Andromeda Weevilgenius
Catastrophe Weevilgenius Yellow

24) weevilgenius: Trade G1 Y1 Andromeda
	weevilgenius: Kabloey!

25) MikeYarrum: Build G1 Mikeyarrum

26) weevilgenius: Build R1 Andromeda

27) MikeYarrum: Move R1 Mikeyarrum Ena

28) weevilgenius: Build R2 Weevilgenius

29) MikeYarrum: Build R3 Ena

30) weevilgenius: Build R3 Weevilgenius

31) MikeYarrum: Sacrifice Y2 Ena
Move R1 Ena Andromeda
Move R1 Andromeda Weevilgenius
Catastrophe Weevilgenius Red



9098)
Variants: "Hard time"
Started: 2007.8.27, Ended: 2007.8.29
Participants: Mr_Shine (S), SpaceHobo (N)
Winner: Mr_Shine

1) SpaceHobo: Homeworld G1 B2 Y3

2) Mr_Shine: Homeworld B1 Y3 G3

3) SpaceHobo: Build Y1 Spacehobo

4) Mr_Shine: B G1 Mr_shine

5) SpaceHobo: Discover Y1 Spacehobo G3 Devaloka

6) Mr_Shine: Build G1 Mr_shine

7) SpaceHobo: Build Y1 Spacehobo

8) Mr_Shine: Discover G1 Mr_shine Y2 Sol

9) SpaceHobo: Discover Y1 Spacehobo G3 Urbanka

10) Mr_Shine: Discover G1 Sol B3 Whirlpool

11) SpaceHobo: Build Y1 Spacehobo

12) Mr_Shine: Build G2 Whirlpool

13) SpaceHobo: Build Y2 Urbanka

14) Mr_Shine: Trade G2 Y2 Whirlpool

15) SpaceHobo: Trade Y1 B1 Spacehobo

16) Mr_Shine: Trade G1 R1 Mr_shine

17) SpaceHobo: Move B1 Spacehobo Urbanka

18) Mr_Shine: Build G1 Whirlpool

19) SpaceHobo: Trade Y2 G2 Urbanka

20) Mr_Shine: Build G2 Whirlpool

21) SpaceHobo: Move Y1 Devaloka Spacehobo

22) Mr_Shine: Build G2 Mr_shine

23) SpaceHobo: Build G3 Urbanka

24) Mr_Shine: Sacrifice Y2 Whirlpool
Move G1 Whirlpool Spacehobo
Move G1 Spacehobo Urbanka
Catastrophe Urbanka G

25) SpaceHobo: Trade Y1 G1 Spacehobo

26) Mr_Shine: Trade G2 Y2 Whirlpool

27) SpaceHobo: Build G2 Spacehobo

28) Mr_Shine: Move G1 Whirlpool Spacehobo
Catastrophe Spacehobo G

29) SpaceHobo: Trade Y3 G3 Spacehobo

30) Mr_Shine: Move G3 Mr_shine Spacehobo

31) SpaceHobo: Trade G3 R3 Spacehobo

32) Mr_Shine: Sacrifice R1 Mr_shine
Attack R3 Spacehobo



9165)
Started: 2007.8.28, Ended: 2007.8.29
Participants: SpaceHobo (S), Polyhymnia (N)
Winner: SpaceHobo

1) Polyhymnia: Homeworld Y1 G2 B3

2) SpaceHobo: Homeworld B1 Y2 G3

3) Polyhymnia: Build B1 Polyhymnia

4) SpaceHobo: Build G1 Spacehobo

5) Polyhymnia: Build B1 Polyhymnia

6) SpaceHobo: Build G1 Spacehobo

7) Polyhymnia: Build B2 Polyhymnia

8) SpaceHobo: Discover G1 Spacehobo B3 Marylebone

9) Polyhymnia: Move B2 Polyhymnia Marylebone

10) SpaceHobo: Build G1 Marylebone

11) Polyhymnia: Trade B2 G2 Marylebone
	SpaceHobo: That guy isn't watching the game any more.

12) SpaceHobo: Trade G1 Y1 Marylebone

13) Polyhymnia: Build G1 Marylebone

14) SpaceHobo: Build G2 Marylebone

15) Polyhymnia: Build G3 Marylebone

16) SpaceHobo: Trade G2 B2 Marylebone

17) Polyhymnia: Trade G3 R3 Marylebone

18) SpaceHobo: Move B2 Marylebone Polyhymnia
Catastrophe Polyhymnia B



9183)
Started: 2007.8.29, Ended: 2007.8.29
Participants: SpaceHobo (S), Polyhymnia (N)
Winner: Polyhymnia

1) Polyhymnia: Homeworld G2 B1 Y3

2) SpaceHobo: Homeworld Y1 B3 G3

3) Polyhymnia: Build Y1 Polyhymnia

4) SpaceHobo: Build G1 Spacehobo

5) Polyhymnia: Discover Y1 Polyhymnia G3 Botanico

6) SpaceHobo: Trade G1 Y1 Spacehobo

7) Polyhymnia: Build Y2 Botanico

8) SpaceHobo: Build Y2 Spacehobo

9) Polyhymnia: Discover Y2 Botanico Y2 Citagazze

10) SpaceHobo: Discover Y2 Spacehobo B2 Svalbard

11) Polyhymnia: Build Y3 Polyhymnia

12) SpaceHobo: Build Y3 Spacehobo

13) Polyhymnia: Move Y2 Citagazze Spacehobo
Catastrophe Spacehobo Yellow

14) SpaceHobo: Build G1 Spacehobo

15) Polyhymnia: Build Y1 Botanico

16) SpaceHobo: Trade G3 Y3 Spacehobo

17) Polyhymnia: Trade Y3 B3 Polyhymnia

18) SpaceHobo: Build G1 Spacehobo

19) Polyhymnia: Move B3 Polyhymnia Botanico

20) SpaceHobo: Build G1 Spacehobo

21) Polyhymnia: Build Y1 Polyhymnia

22) SpaceHobo: Build G2 Spacehobo

23) Polyhymnia: Move Y1 Polyhymnia Spacehobo
Catastrophe Spacehobo Green

24) SpaceHobo: Trade Y3 G3 Spacehobo

25) Polyhymnia: Build Y2 Polyhymnia

26) SpaceHobo: Move Y2 Svalbard Spacehobo

27) Polyhymnia: Build Y2 Botanico

28) SpaceHobo: Sacrifice G3 Spacehobo
Build Y3 Spacehobo
Build Y3 Spacehobo
Pass

29) Polyhymnia: Move Y2 Polyhymnia Spacehobo
Catastrophe Spacehobo Yellow



8749)
Variants: "Hard time"
Started: 2007.8.29, Ended: 2007.9.16
Participants: mneme (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R3 B1 G3

2) mneme: Homeworld R1 G2 B3

3) TwoShort: Build G1 Twoshort
	TwoShort: Howdy...

4) mneme: Build B1 Mneme
	mneme: hey.  When was the last time you -lost- a game of this?


5) TwoShort: Trade G1 B1 Twoshort

6) mneme: Build B2 Mneme
	TwoShort: Well, besides an accidental time-out over my summer vacation, Mike Yarrum beat me in May.  He played a really excellent game right after losing a couple via newbie blunders that lulled me into a false sense of security.  Unfortunately, I already know you're pretty good :) 

7) TwoShort: Build B2 Twoshort
	mneme: Yeah, that one doesn't help me too much, even though I've never beaten you.


8) mneme: Trade B3 Y3 Mneme

9) TwoShort: Trade B2 Y2 Twoshort

10) mneme: Trade B2 G2 Mneme

11) TwoShort: Build B2 Twoshort

12) mneme: Build B2 Mneme

13) TwoShort: Discover B1 Twoshort G2 Grogar

14) mneme: Discover B2 Mneme G3 Apple

15) TwoShort: Build G1 Twoshort

16) mneme: Build Y1 Mneme

17) TwoShort: Discover G1 Twoshort Y2 Yolonda

18) mneme: Move Y1 Mneme Apple

19) TwoShort: Build G1 Twoshort

20) mneme: Discover G2 Mneme G3 Stash

21) TwoShort: Sacrifice G3 Twoshort
Build G1 Yolonda
Build G3 Twoshort
Build Y1 Twoshort

22) mneme: Build Y1 Mneme

23) TwoShort: Move Y1 Twoshort Grogar

24) mneme: Sacrifice G2 Stash
Build B2 Apple
Build B3 Mneme
	mneme: eh -- should have traded y for g in my home system rather than letting you freeze me out of effective g.  :(

25) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yolonda
Build G3 Twoshort
	TwoShort: Agreed... and as long as I'm freezing you out of green, I guess I'll push it. :)

26) mneme: Trade B2 R2 Apple

27) TwoShort: Sacrifice G3 Yolonda
Build G3 Yolonda
Build Y2 Grogar
Build Y3 Twoshort

28) mneme: Build Y3 Apple

29) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Grogar Apple
Move Y2 Grogar Apple
Catastrophe Apple Yellow

30) mneme: Move Y1 Mneme Apple

31) TwoShort: Trade G2 R2 Twoshort

32) mneme: Build Y1 Apple

33) TwoShort: Sacrifice G3 Yolonda
Build G2 Yolonda
Build G3 Twoshort
Build Y1 Twoshort

34) mneme: Build Y2 Mneme

35) TwoShort: Move Y1 Twoshort Grogar

36) mneme: Discover B3 Mneme Y3 Winter

37) TwoShort: Build Y2 Grogar

38) mneme: Build R1 Apple

39) TwoShort: Discover Y1 Grogar B3 Bluestar

40) mneme: Move B3 Winter Yolonda

41) TwoShort: Sacrifice Y3 Twoshort
Move G1 Yolonda Apple
Move G1 Yolonda Apple
Move G2 Yolonda Apple
Catastrophe Apple Green

42) mneme: Trade B3 G3 Yolonda

43) TwoShort: Trade G3 Y3 Twoshort

44) mneme: Build G1 Yolonda

45) TwoShort: Sacrifice G3 Twoshort
Build Y1 Grogar
Build Y1 Bluestar
Build Y3 Twoshort

46) mneme: Build B2 Mneme

47) TwoShort: Sacrifice Y2 Grogar
Move Y1 Bluestar Mneme
Move Y1 Bluestar Mneme
Catastrophe Mneme Yellow

48) mneme: Trade B2 Y2 Mneme

49) TwoShort: Move Y3 Twoshort Yolonda

50) mneme: Discover G3 Yolonda Y3 Tmp

51) TwoShort: Discover Y3 Yolonda B3 Boom

52) mneme: Move G3 Tmp Mneme

53) TwoShort: Trade Y3 G3 Boom
	mneme: I'd kinda rather you had gone for the quick kill -- dropping a 3 in my home system the turn after the catastrophe.  Why didn't you?

	TwoShort: I'd have gone for it if I thought it would work :)  Let's see... After you flipped your 2 to yellow, if I sacrificed one of my y3s to put the other one in your homeworld, you could have sacrificed your g3 to build a two yellows (and a b2), causing a catastrophe and leaving nobody with any 3s.  So, not a kill, and while I'd have been at an advantage, I think I'm at a bigger one this way.
	TwoShort: I was fully expecting to go for the kill, and when you traded to yellow I was surprised and impressed you found the way to fend me off.

54) mneme: Build B2 Mneme
	mneme: Fair enough -- I did flip to green to try to head you off for a few more turns.  Very much a forgone conclusion at this point, though.

55) TwoShort: Build G1 Boom

56) mneme: Discover B2 Mneme Y3 Jacinth

57) TwoShort: Move B2 Twoshort Yolonda

58) mneme: Sacrifice G3 Mneme
Build B2 Mneme
Build B3 Mneme
Build B3 Jacinth

59) TwoShort: Sacrifice Y3 Twoshort
Move G3 Boom Mneme
Move B1 Grogar Boom
Move B1 Boom Mneme
Catastrophe Mneme Blue

	TwoShort: Thanks for the game!


8997)
Variants: "Hard time"
Started: 2007.8.29, Ended: 2007.10.8
Participants: Jesse (S), mneme (N)
Winner: Jesse

1) mneme: Homeworld R1 B2 G3

2) Jesse: Homeworld R3 B1 G3
	Jesse: Have a good game.

3) mneme: Build G1 Mneme

4) Jesse: Build G1 Jesse

5) mneme: Trade G1 Y1 Mneme

6) Jesse: Trade G1 Y1 Jesse

7) mneme: Build G1 Mneme

8) Jesse: Build G1 Jesse

9) mneme: Trade G1 B1 Mneme

10) Jesse: Trade G1 B1 Jesse

11) mneme: Build G1 Mneme

12) Jesse: Build G1 Jesse

13) mneme: Build B2 Mneme

14) Jesse: Build B2 Jesse

15) mneme: Discover B2 Mneme G3 Verdant

16) Jesse: Trade B2 Y2 Jesse

17) mneme: Trade B1 R1 Mneme

18) Jesse: Discover Y2 Jesse G2 Purple

19) mneme: Build R1 Mneme

20) Jesse: Trade G3 R3 Jesse

21) mneme: Move R1 Mneme Verdant

22) Jesse: Build R2 Jesse

23) mneme: Build R2 Verdant

24) Jesse: Move R2 Jesse Purple

25) mneme: Trade R2 Y2 Verdant

26) Jesse: Build R2 Purple

27) mneme: Build Y1 Verdant

28) Jesse: Trade R3 Y3 Jesse

29) mneme: Build R2 Verdant

30) Jesse: Discover R2 Purple Y3 Ecru

31) mneme: Trade R1 B1 Verdant

32) Jesse: Move B1 Jesse Purple

33) mneme: Discover Y2 Verdant G2 Brilliant

34) Jesse: Build B2 Purple

35) mneme: Move B1 Verdant Brilliant

36) Jesse: Discover B2 Purple Y3 Olive

37) mneme: Build B3 Brilliant

38) Jesse: Build B3 Purple

39) mneme: Build B3 Verdant

40) Jesse: Trade B3 G3 Purple

41) mneme: Trade B2 Y2 Verdant

42) Jesse: Move G3 Purple Ecru

43) mneme: Move Y1 Verdant Brilliant

44) Jesse: Discover Y1 Jesse G2 Aqua

45) mneme: Discover R1 Mneme B3 Bluebird

46) Jesse: Build G1 Ecru

47) mneme: Move G1 Mneme Bluebird

48) Jesse: Sacrifice G3 Ecru
Build G3 Ecru
Build R1 Ecru
Build R3 Purple

49) mneme: Build R3 Bluebird

50) Jesse: Build B2 Purple

51) mneme: Sacrifice Y2 Brilliant
Move R2 Verdant Purple
Move R1 Bluebird Purple
Catastrophe Purple R

52) Jesse: Move B2 Olive Aqua

53) mneme: Build R1 Bluebird

54) Jesse: Sacrifice G3 Ecru
Build G3 Ecru
Build Y2 Jesse
Build Y3 Aqua

55) mneme: Sacrifice Y2 Verdant
Move R3 Bluebird Purple
Move R1 Bluebird Purple

56) Jesse: Sacrifice Y2 Jesse
Move R2 Ecru Purple
Move R1 Ecru Purple
Catastrophe Purple R

57) mneme: Sacrifice G1 Bluebird
Build B3 Verdant

58) Jesse: Sacrifice G3 Ecru
Build G1 Ecru
Build G3 Ecru
Build Y2 Jesse

59) mneme: Trade B3 R3 Brilliant

60) Jesse: Trade B1 R1 Purple

61) mneme: Trade B3 R3 Verdant

62) Jesse: Trade Y1 R1 Aqua

63) mneme: Build Y1 Brilliant

64) Jesse: Sacrifice G3 Ecru
Build G3 Ecru
Build Y2 Aqua
Build R2 Purple

65) mneme: Move Y1 Brilliant Jesse

66) Jesse: Discover Y2 Jesse R2 White

67) mneme: Attack G1 Jesse

68) Jesse: Sacrifice R2 Purple
Attack Y1 Jesse
Attack G1 Jesse

69) mneme: Build R2 Brilliant

70) Jesse: Sacrifice G3 Ecru
Build G3 Ecru
Build B1 Aqua
Build B3 Purple

71) mneme: Build B3 Brilliant

72) Jesse: Build R2 Purple

73) mneme: Move Y1 Brilliant Verdant

74) Jesse: Move B2 Purple Ecru
	mneme: your game to lose.


75) mneme: Move B3 Verdant White

76) Jesse: Sacrifice Y2 White
Discover G1 Ecru Y2 Elbow
Move R1 Purple Ecru

77) mneme: Move R3 Verdant Elbow

78) Jesse: Move G1 Elbow Ecru

79) mneme: Move R3 Elbow Verdant

80) Jesse: Build Y2 Purple

81) mneme: Move Y1 Verdant Brilliant

82) Jesse: Move G1 Ecru Brilliant

83) mneme: Move B3 Brilliant Verdant

84) Jesse: Sacrifice Y2 Purple
Move G1 Ecru Brilliant
Move G1 Jesse Brilliant
Catastrophe Brilliant G

85) mneme: Build G1 Mneme

86) Jesse: Build G1 Ecru

87) mneme: Discover G1 Mneme R3 Ack

88) Jesse: Move B3 Purple Ack

89) mneme: Sacrifice G1 Ack
Build R2 Verdant

90) Jesse: Move R2 Purple Ecru

91) mneme: Trade R2 Y2 Verdant

92) Jesse: Build B1 Ecru

93) mneme: Build Y1 Verdant

94) Jesse: Sacrifice Y3 Aqua
Move B3 Ack Mneme
Move B2 Ecru Mneme
Move B1 Ecru Mneme
Catastrophe Mneme B

95) mneme: Build Y3 Mneme

96) Jesse: Sacrifice Y3 Jesse
Move R1 Aqua Mneme
Move R2 Ecru Mneme
Move R1 Ecru Mneme
Catastrophe Mneme R
	mneme: gg


	Jesse: You too.


9063)
Started: 2007.8.29, Ended: 2007.9.24
Participants: ts52 (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) ts52: Homeworld R3 B2 G3

3) mneme: Build G1 Mneme

4) ts52: Build G1 Ts52

5) mneme: Trade G1 Y1 Mneme

6) ts52: Trade G1 Y1 Ts52

7) mneme: Build G1 Mneme

8) ts52: Build G1 Ts52

9) mneme: Trade G1 R1 Mneme

10) ts52: Build G1 Ts52

11) mneme: Build R1 Mneme

12) ts52: Discover G1 Ts52 B1 Blueberry

13) mneme: Discover R1 Mneme G3 Redwood

14) ts52: Build Y1 Ts52

15) mneme: Build R2 Mneme

16) ts52: Build Y2 Ts52

17) mneme: Build Y2 Mneme

18) ts52: Trade Y2 R2 Ts52

19) mneme: Build R2 Redwood

20) ts52: Move R2 Ts52 Blueberry

21) mneme: Trade R2 B2 Mneme

22) ts52: Build Y2 Ts52

23) mneme: Move Y1 Mneme Redwood

24) ts52: Move Y2 Ts52 Blueberry

25) mneme: Discover B2 Mneme Y3 Sirius

26) ts52: Move G1 Ts52 Blueberry

27) mneme: Sacrifice G3 Mneme
Build Y2 Mneme
Build Y3 Mneme
Build Y3 Redwood

28) ts52: Trade G1 B1 Blueberry

29) mneme: Trade Y2 G2 Mneme

30) ts52: Build Y2 Blueberry

31) mneme: Discover Y3 Redwood B1 Outpost

32) ts52: Discover B1 Blueberry G3 Oscar

33) mneme: Move Y3 Outpost Oscar

34) ts52: Trade B1 G1 Oscar

35) mneme: Sacrifice R1 Redwood
Attack G1 Oscar

36) ts52: Build G1 Ts52

37) mneme: Sacrifice B2 Sirius
Trade Y3 B3 Oscar
Trade G1 R1 Oscar

38) ts52: Discover Y2 Blueberry B3 Grover

39) mneme: Sacrifice Y1 Redwood
Move B3 Oscar Blueberry

40) ts52: Sacrifice G3 Ts52
Build Y1 Grover
Build Y3 Blueberry
Build Y3 Ts52

41) mneme: Sacrifice R2 Redwood
Attack Y3 Blueberry
Attack R2 Blueberry

42) ts52: Trade Y2 R2 Grover

43) mneme: Sacrifice Y2 Mneme
Move Y3 Blueberry Ts52
Move B3 Blueberry Ts52
Catastrophe Ts52 Y

44) ts52: Build G1 Ts52
	mneme: and...we're done.  good game.

45) mneme: Sacrifice R2 Blueberry
Attack G1 Ts52
Attack G1 Ts52
	ts52: Wow. Thanks for the game.



9086)
Started: 2007.8.29, Ended: 2007.11.27
Participants: mneme (S), MikeYarrum (N)
Winner: mneme

1) MikeYarrum: Homeworld G3 Y1 B3

2) mneme: Homeworld R1 B2 G3

3) MikeYarrum: Build B1 Mikeyarrum

4) mneme: Build G1 Mneme

5) MikeYarrum: Build B1 Mikeyarrum

6) mneme: Trade G1 B1 Mneme

7) MikeYarrum: Discover B1 Mikeyarrum G2 Chihiro

8) mneme: Build B2 Mneme

9) MikeYarrum: Build B2 Chihiro

10) mneme: Trade B2 Y2 Mneme

11) MikeYarrum: Trade B2 Y2 Chihiro

12) mneme: Discover B1 Mneme G3 Pine

13) MikeYarrum: Trade B1 R1 Chihiro

14) mneme: Build G1 Mneme

15) MikeYarrum: Move R1 Chihiro Pine

16) mneme: Build G1 Mneme

17) MikeYarrum: Attack B1 Pine

18) mneme: Build Y1 Mneme

19) MikeYarrum: Trade B1 G1 Pine

20) mneme: Trade G1 R1 Mneme

21) MikeYarrum: Build R2 Pine

22) mneme: Discover Y2 Mneme R3 Disaster

23) MikeYarrum: Build B1 Mikeyarrum

24) mneme: Trade G1 B1 Mneme

25) MikeYarrum: Trade B1 Y1 Mikeyarrum

26) mneme: Discover R1 Mneme Y3 Sign

27) MikeYarrum: Move Y1 Mikeyarrum Chihiro

28) mneme: Build Y2 Mneme

29) MikeYarrum: Move Y1 Chihiro Pine

30) mneme: Trade Y2 G2 Mneme

31) MikeYarrum: Move R1 Pine Chihiro

32) mneme: Move G2 Mneme Sign

33) MikeYarrum: Build R2 Chihiro

34) mneme: Discover B1 Mneme Y3 Beauty

35) MikeYarrum: Move R2 Chihiro Beauty

36) mneme: Sacrifice G2 Sign
Build Y2 Disaster
Build Y3 Mneme

37) MikeYarrum: Attack B1 Beauty

38) mneme: Trade Y1 B1 Mneme



9143)
Variants: "Unrated, Hard time"
Started: 2007.8.29, Ended: 2007.8.30
Participants: mneme (S), scottobear (N)
Winner: mneme

1) scottobear: Homeworld G2 B3 Y3

2) mneme: Homeworld R1 B2 G3

3) scottobear: Discover Y3 Scottobear R1 Boog
	scottobear: whoops. 
	scottobear: sorry about that.. I couldn't undo!
	mneme: doh!  I though the system stopped you from such silliness, but I guess not.




9185)
Variants: "Hard time"
Started: 2007.8.29, Ended: 2007.9.2
Participants: mneme (S), Mr_Shine (N)
Winner: mneme

1) Mr_Shine: Homeworld B1 Y3 G3

2) mneme: Homeworld R1 B2 G3

3) Mr_Shine: Build G1 Mr_shine

4) mneme: Build G1 Mneme

5) Mr_Shine: Discover G1 Mr_shine B2 Kobol

6) mneme: Trade G1 Y1 Mneme

7) Mr_Shine: Build G1 Mr_shine

8) mneme: Build Y1 Mneme

9) Mr_Shine: Discover G1 Mr_shine B2 Caprica

10) mneme: Build Y1 Mneme

11) Mr_Shine: Build G1 Kobol

12) mneme: Build G2 Mneme

13) Mr_Shine: Build G2 Mr_shine

14) mneme: Discover Y1 Mneme G3 Rough

15) Mr_Shine: Build G2 Caprica

16) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build Y2 Rough
Build Y2 Mneme

17) Mr_Shine: Trade G2 Y2 Caprica

18) mneme: Trade Y1 B1 Mneme

19) Mr_Shine: Trade G1 B1 Kobol

20) mneme: Move B1 Mneme Rough



9197)
Started: 2007.8.29, Ended: 2007.8.29
Participants: Polyhymnia (S), SpaceHobo (N)
Winner: SpaceHobo

1) SpaceHobo: Homeworld Y1 B2 G3

2) Polyhymnia: Homeworld B2 G3 Y3

3) SpaceHobo: Build G1 Spacehobo

4) Polyhymnia: Build Y1 Polyhymnia

5) SpaceHobo: Discover G1 Spacehobo Y3 Pimlico

6) Polyhymnia: Discover Y1 Polyhymnia G1 Mornington

7) SpaceHobo: Build G1 Spacehobo

8) Polyhymnia: Build Y1 Mornington

9) SpaceHobo: Sacrifice G3 Spacehobo
Build G2 Spacehobo
Build G2 Spacehobo
Build G2 Spacehobo

10) Polyhymnia: Build Y2 Mornington

11) SpaceHobo: Trade G2 Y2 Spacehobo

12) Polyhymnia: Build Y2 Polyhymnia

13) SpaceHobo: Build Y3 Spacehobo

14) Polyhymnia: Trade Y2 G2 Polyhymnia

15) SpaceHobo: Build G3 Pimlico

16) Polyhymnia: Build G3 Polyhymnia

17) SpaceHobo: Move Y2 Spacehobo Pimlico

18) Polyhymnia: Move Y1 Mornington Pimlico

19) SpaceHobo: Discover G3 Pimlico B1 Plaistow

20) Polyhymnia: Trade G3 R3 Polyhymnia

21) SpaceHobo: Build G3 Plaistow

22) Polyhymnia: Build Y2 Polyhymnia

23) SpaceHobo: Trade G3 R3 Plaistow

24) Polyhymnia: Move Y2 Mornington Pimlico

25) SpaceHobo: Build G3 Plaistow

26) Polyhymnia: Move Y2 Pimlico Spacehobo

27) SpaceHobo: Sacrifice Y2 Pimlico
Move G3 Plaistow Polyhymnia
Move G3 Plaistow Polyhymnia

28) Polyhymnia: Attack G3 Polyhymnia

29) SpaceHobo: Sacrifice R3 Plaistow
Attack R3 Polyhymnia
Attack G3 Polyhymnia
Attack Y3 Polyhymnia

30) Polyhymnia: Move Y1 Mornington Polyhymnia
Catastrophe Polyhymnia Green

31) SpaceHobo: Sacrifice R3 Polyhymnia
Attack Y2 Polyhymnia
Attack Y1 Polyhymnia
Pass



9202)
Started: 2007.8.30, Ended: 2008.2.22
Participants: Polyhymnia (S), SpaceHobo (N)
Winner: SpaceHobo

1) SpaceHobo: Homeworld B3 Y2 G3

2) Polyhymnia: Homeworld G3 B1 Y3

3) SpaceHobo: Build G1 Spacehobo

4) Polyhymnia: Build Y1 Polyhymnia

5) SpaceHobo: Trade G1 Y1 Spacehobo

6) Polyhymnia: Discover Y1 Polyhymnia B2 Neverwhere

7) SpaceHobo: Discover Y1 Spacehobo G1 Signaltonoise

8) Polyhymnia: Build Y1 Polyhymnia

9) SpaceHobo: Build G1 Spacehobo

10) Polyhymnia: Build Y2 Polyhymnia

11) SpaceHobo: Build G1 Spacehobo

12) Polyhymnia: Move Y1 Polyhymnia Neverwhere

13) SpaceHobo: Move G1 Spacehobo Signaltonoise

14) Polyhymnia: Move Y1 Neverwhere Signaltonoise

15) SpaceHobo: Build G2 Spacehobo

16) Polyhymnia: Build Y2 Signaltonoise

17) SpaceHobo: Discover G1 Spacehobo B1 Sandman

18) Polyhymnia: Build Y3 Polyhymnia

19) SpaceHobo: Discover G1 Signaltonoise B2 Stardust

20) Polyhymnia: Trade Y3 R3 Polyhymnia

21) SpaceHobo: Sacrifice G3 Spacehobo
Build G2 Stardust
Build G2 Stardust
Build G3 Spacehobo

22) Polyhymnia: Build Y3 Polyhymnia

23) SpaceHobo: Sacrifice G3 Spacehobo
Build G3 Spacehobo
Build G3 Spacehobo
Build Y3 Signaltonoise

24) Polyhymnia: Move Y2 Signaltonoise Neverwhere

25) SpaceHobo: Trade G3 R3 Spacehobo

26) Polyhymnia: Move Y3 Polyhymnia Stardust

27) SpaceHobo: Build G3 Spacehobo



9192)
Variants: "Unrated, Hard time"
Started: 2007.8.30, Ended: 2007.9.6
Participants: scottobear (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) scottobear: Homeworld R2 B1 G3
	scottobear: thanks!

3) mneme: Build G1 Mneme

4) scottobear: Build G1 Scottobear

5) mneme: Trade G1 Y1 Mneme

6) scottobear: Trade G1 Y1 Scottobear

7) mneme: Build G1 Mneme

8) scottobear: Build G1 Scottobear

9) mneme: Trade G1 B1 Mneme

10) scottobear: Trade G1 B1 Scottobear

11) mneme: Build B2 Mneme

12) scottobear: Build B2 Scottobear

13) mneme: Discover B1 Mneme Y3 Bb

14) scottobear: Discover B1 Scottobear Y3 Ips

15) mneme: Sacrifice G3 Mneme
Build B3 Mneme
Build B3 Bb
Build B3 Bb
	mneme: huh.  didn't remember this was a small universe game!

16) scottobear: Move B1 Ips Mneme
	scottobear: wow... I have no idea how you did that!

17) mneme: Sacrifice B2 Mneme
Trade B3 G3 Mneme
Trade B3 R3 Bb

18) scottobear: Trade B2 R2 Scottobear
	mneme: it was actually a blunder -- but you forgot to actually -cause- the catastrophe that would have decimated my homeworld.

	mneme: And...um...read the rules on sacrifices.  they're important.

	scottobear: that was my plan, to blow up the system.


19) mneme: Attack B1 Mneme
	mneme: Yes.  But to do that, you have to specify the catastrophe at the end of the move where you cause it.  Otherwise, I can act to prevent the catastrophe, if possible

20) scottobear: Build Y1 Scottobear
	scottobear: I see... I just failed to activate it?

21) mneme: Build Y2 Mneme
	mneme: yes.  you have to explicitly cause a catastrophe at the end of your turn, or it doesn't happen.

22) scottobear: Move Y1 Scottobear Bb
	scottobear: that'll teach me!

23) mneme: Attack Y1 Bb

24) scottobear: Move R2 Scottobear Bb

25) mneme: Attack R2 Bb
	mneme: this whole "moving your ships into my systems with r" plan doesn't work all that well, you know.

26) scottobear: Trade Y1 R1 Scottobear
	scottobear: so it would appear!

27) mneme: Discover B1 Mneme G3 Gnu

28) scottobear: Trade R1 Y1 Scottobear

29) mneme: Move Y2 Mneme Gnu
	scottobear: oh, I see.. it took me a sec to realize you came from your home world, rather than bb. 
	scottobear: let's see if gnu is easier. :D

30) scottobear: Build Y2 Scottobear
	scottobear: trade r1 y1 scottobear


31) mneme: Sacrifice Y2 Gnu
Move R3 Bb Scottobear
Move B3 Bb Scottobear

32) scottobear: Trade G3 R3 Scottobear

33) mneme: Sacrifice R3 Scottobear
Attack R3 Scottobear
Attack Y2 Scottobear
Attack Y1 Scottobear
	mneme: ok, let's finish this.



9213)
Started: 2007.8.30, Ended: 2008.2.22
Participants: geoperry (S), SpaceHobo (N)
Winner: geoperry

1) SpaceHobo: Homeworld G1 Y2 B3

2) geoperry: Homeworld B1 Y3 G3

3) SpaceHobo: Build B1 Spacehobo

4) geoperry: Build G1 Geoperry

5) SpaceHobo: Discover B1 Spacehobo Y3 Cockfosters

6) geoperry: Discover G1 Geoperry R2 Clever

7) SpaceHobo: Build B1 Spacehobo

8) geoperry: Build G1 Clever

9) SpaceHobo: Move B1 Spacehobo Cockfosters

10) geoperry: Build G2 Clever

11) SpaceHobo: Build B2 Spacehobo

12) geoperry: Build G2 Clever

13) SpaceHobo: Trade B3 G3 Spacehobo

14) geoperry: Build G2 Geoperry



9214)
Started: 2007.8.30, Ended: 2007.8.30
Participants: SpaceHobo (S), rattus (N)
Winner: SpaceHobo

1) rattus: Homeworld B1 Y3 G3

2) SpaceHobo: Homeworld Y2 G1 B3

3) rattus: Build G1 Rattus

4) SpaceHobo: Build B1 Spacehobo

5) rattus: Discover G1 Rattus Y2 Themoon

6) SpaceHobo: Discover B1 Spacehobo G3 Upminster

7) rattus: Build G1 Rattus

8) SpaceHobo: Build B1 Upminster

9) rattus: Trade G1 Y1 Rattus

10) SpaceHobo: Build B2 Spacehobo

11) rattus: Sacrifice G3 Rattus
Build Y1 Rattus
Build Y1 Rattus
Build Y2 Rattus

12) SpaceHobo: Build B2 Upminster

13) rattus: Build G1 Themoon

14) SpaceHobo: Build B2 Spacehobo

15) rattus:
Build G2 Themoon
Catastrophe Rattus Y



9189)
Started: 2007.8.30, Ended: 2008.2.22
Participants: Zen (S), SpaceHobo (N)
Winner: SpaceHobo

1) SpaceHobo: Homeworld B1 Y2 G3



9198)
Variants: "Hard time"
Started: 2007.9.8, Ended: 2007.9.28
Participants: zoltar (S), SpaceHobo (N)
Winner: zoltar

1) SpaceHobo: Homeworld B1 Y2 G3

2) zoltar: Homeworld B1 G3 B3 *

3) SpaceHobo: Build G1 Spacehobo

4) zoltar: Build B1 Zoltar

5) SpaceHobo: Build G1 Spacehobo

6) zoltar: Trade B3 Y3 Zoltar

7) SpaceHobo: Discover G1 Spacehobo Y3 Cockfosters

8) zoltar: Build B2 Zoltar

9) SpaceHobo: Build G1 Cockfosters

10) zoltar: Trade B2 G2 Zoltar

11) SpaceHobo: Trade G1 Y1 Spacehobo

12) zoltar: Build B2 Zoltar
	zoltar: Oops. You have 4 greens in your homeworld.  If it were not for this fact, your move would be a good one.  Unfortunately, I can make any move (such as building the last green ship) and then add "c SpaceHobo g" as the last line of my move, and all your greens will blow up and your homeworld will be empty and you will lose the game.  So why don't you undo that move and make a different one, such as moving a green out or trading a green for another color.

13) SpaceHobo: Build G1 Spacehobo

14) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo

15) SpaceHobo: Trade G1 R1 Spacehobo

16) zoltar: Trade B2 R2 Zoltar

17) SpaceHobo: Discover G1 Cockfosters G1 Upminster

18) zoltar: Build B2 Zoltar



9203)
Variants: "Unrated, Hard time"
Started: 2007.9.8, Ended: 2007.9.18
Participants: zoltar (S), scottobear (N)
Winner: zoltar

1) scottobear: Homeworld B2 G3 Y3

2) zoltar: Homeworld B1 R2 G3

3) scottobear: Build Y1 Scottobear

4) zoltar: Build G1 Zoltar

5) scottobear: Trade Y1 R1 Scottobear

6) zoltar: Trade G1 Y1 Zoltar

7) scottobear: Discover R1 Scottobear G1 Xx

8) zoltar: Build G1 Zoltar

9) scottobear: Build R1 Xx

10) zoltar: Build G1 Zoltar

11) scottobear: Build Y1 Scottobear

12) zoltar: Discover G1 Zoltar B3 Bloohoohoo

13) scottobear: Move Y1 Scottobear Xx

14) zoltar: Build G2 Bloohoohoo

15) scottobear: Move R1 Xx Bloohoohoo

16) zoltar: Build G2 Bloohoohoo

17) scottobear:

Attack G1 Bloohoohoo

18) zoltar: Trade G2 R2 Bloohoohoo

19) scottobear: Build R1 Bloohoohoo

20) zoltar: Sacrifice R2 Bloohoohoo
Attack R1 Bloohoohoo
Attack R1 Bloohoohoo

21) scottobear: Build R2 Xx

22) zoltar: Attack G1 Bloohoohoo

23) scottobear: Move R2 Xx Bloohoohoo

24) zoltar: Sacrifice R1 Bloohoohoo
Attack R2 Bloohoohoo

25) scottobear: Build R1 Xx

26) zoltar: Sacrifice G3 Zoltar
Build G2 Bloohoohoo
Build G2 Zoltar
Build G3 Zoltar

27) scottobear: Move R1 Xx Scottobear

28) zoltar: Sacrifice Y1 Zoltar
Move G2 Bloohoohoo Xx

29) scottobear: Build Y1 Scottobear

30) zoltar: Sacrifice G2 Zoltar
Build G2 Xx
Build G3 Bloohoohoo

31) scottobear: Move R1 Xx Scottobear
	scottobear: ack! :D

32) zoltar: Sacrifice R1 Bloohoohoo
Attack Y1 Xx

33) scottobear: Build R1 Scottobear

34) zoltar: Trade G3 Y3 Bloohoohoo

35) scottobear: Move R1 Scottobear Xx

36) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Bloohoohoo
Build Y1 Xx

37) scottobear: Move R1 Scottobear Xx

38) zoltar: Sacrifice R2 Bloohoohoo
Attack R1 Xx
Attack R1 Xx

39) scottobear: Trade Y3 R3 Scottobear
	zoltar: The xx system has been conquered by the Imperial Zoltarian Fleet.  Hail Zoltar, Mighty Galactic Evil Overlord! [Insert sinister evil overlord laughter here]
	scottobear: oh, the humanity!!

40) zoltar: Sacrifice Y3 Bloohoohoo
Move R1 Xx Scottobear
Move R1 Xx Scottobear
Move G2 Xx Scottobear
Catastrophe Scottobear R

41) scottobear: Build Y2 Scottobear

42) zoltar: Trade G3 R3 Bloohoohoo
	zoltar: Prepare to be boarded, hyu-maahn beanz!
	scottobear: ah, well. Humanity had a good run. Let's hear it for our new zoltarian masters!

43) scottobear: Trade Y2 R2 Scottobear

44) zoltar: Sacrifice R3 Bloohoohoo
Attack Y1 Scottobear
Attack R2 Scottobear
Pass
	zoltar: Play again, primitive carbon waterbag unit?
	scottobear: sure, I'm for it!



9312)
Variants: "Hard time"
Started: 2007.9.9, Ended: 2007.10.7
Participants: mneme (S), MikeYarrum (N)
Winner: mneme

1) MikeYarrum: Homeworld R2 B3 G3

2) mneme: Homeworld R1 B2 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) mneme: Build G1 Mneme

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) mneme: Trade G1 Y1 Mneme

7) MikeYarrum: Build G1 Mikeyarrum

8) mneme: Build G1 Mneme

9) MikeYarrum: Discover G1 Mikeyarrum B1 Chubbz

10) mneme: Discover G1 Mneme B3 Bluebird

11) MikeYarrum: Build G1 Mikeyarrum

12) mneme: Build G2 Bluebird

13) MikeYarrum: Build G2 Chubbz

14) mneme: Trade G2 R2 Bluebird

15) MikeYarrum: Trade G1 R1 Chubbz

16) mneme: Build G1 Mneme

17) MikeYarrum: Trade G2 Y2 Chubbz

18) mneme: Build G2 Bluebird

19) MikeYarrum: Build G2 Mikeyarrum

20) mneme: Sacrifice G3 Mneme
Build G2 Bluebird
Build G3 Mneme
Build G3 Mneme



9308)
Variants: "Unrated, Hard time"
Started: 2007.9.10, Ended: 2007.9.19
Participants: scottobear (S), Visible (N)
Winner: Visible

1) Visible: Homeworld G2 Y1 B3
	Visible: Hey there. my first game of Homeworlds. Good luck!

2) scottobear: Homeworld B3 G2 Y3

3) Visible: Build B1 Visible

4) scottobear: Build Y1 Scottobear
	scottobear: great! I'm still very new, too! have fun!

5) Visible: Discover B1 Visible Y3 Invisible

6) scottobear: Trade Y1 R1 Scottobear

7) Visible: Build B1 Visible

8) scottobear: Discover R1 Scottobear G1 Shiny

9) Visible: Trade B1 R1 Invisible

10) scottobear: Build R1 Shiny

11) Visible: Discover R1 Invisible Y1 Devisible

12) scottobear:
Build Y1 Scottobear

13) Visible: Trade B3 G3 Visible

14) scottobear: Build Y2 Scottobear

15) Visible: Move R1 Devisible Scottobear

16) scottobear: Trade Y2 R2 Scottobear

17) Visible: Attack Y1 Scottobear

18) scottobear: Attack R1 Scottobear
	Visible: Hmmm.

19) Visible: Discover Y1 Scottobear G1 Revisible

20) scottobear: Move R2 Scottobear Revisible

21) Visible: Discover Y1 Revisible B2 Unvisible
	scottobear: pretty spiffy!

22) scottobear: Trade R1 Y1 Scottobear

23) Visible: Trade Y1 G1 Unvisible
	Visible: heh. very spiffy, indeed!

24) scottobear: Move Y1 Scottobear Shiny

25) Visible: Sacrifice G3 Visible
Build G2 Unvisible
Build G3 Unvisible
Build B1 Visible
	Visible: hmm. that may have been a mistake. guess we'll see.

26) scottobear: Build Y1 Scottobear

27) Visible: Trade G2 Y2 Unvisible

28) scottobear: Trade Y1 R1 Scottobear

29) Visible: Trade G3 R3 Unvisible

30) scottobear: Move R1 Shiny Unvisible

31) Visible: Attack R1 Unvisible

32) scottobear: Discover R1 Shiny G3 Bright

33) Visible: Move R3 Unvisible Revisible

34) scottobear: Build R2 Bright

35) Visible: Attack R2 Revisible

36) scottobear: Move Y1 Shiny Bright

37) Visible: Sacrifice Y2 Unvisible
Move R2 Revisible Bright
Move R1 Unvisible Bright
Catastrophe Bright Red

38) scottobear: Discover R1 Scottobear B1 Dark

39) Visible: Trade B1 Y1 Visible
	scottobear: very neat!
	Visible: Heh. Well, still not sure it was the right thing to do. Whatever, though.

40) scottobear: Build Y2 Bright


41) Visible: Sacrifice Y1 Visible
Move R3 Revisible Scottobear

42) scottobear: Trade Y3 R3 Scottobear

43) Visible: Attack R3 Scottobear

	Visible: Good game!
	scottobear: good game! kudos on winning!!
	Visible: Thanks! It was a pretty close game.


9314)
Variants: "Unrated, Hard time"
Started: 2007.9.11, Ended: 2007.9.14
Participants: scottobear (S), daengle (N)
Winner: scottobear



9329)
Variants: "Hard time"
Started: 2007.9.12, Ended: 2008.2.24
Participants: dsheldon (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) dsheldon: Homeworld B2 G3 Y3

3) zoltar: Build G1 Zoltar

4) dsheldon: Build Y1 Dsheldon

5) zoltar: Trade G1 Y1 Zoltar

6) dsheldon: Discover Y1 Dsheldon B1 Berry

7) zoltar: Build G1 Zoltar

8) dsheldon: Trade Y1 G1 Berry

9) zoltar: Build Y1 Zoltar

10) dsheldon: Build Y1 Dsheldon

11) zoltar: Build Y2 Zoltar

12) dsheldon: Build Y2 Dsheldon

13) zoltar: Discover Y1 Zoltar G2 Greenslime

14) dsheldon: Trade Y2 G2 Dsheldon

15) zoltar: Build Y2 Greenslime

16) dsheldon: Trade Y1 R1 Dsheldon

17) zoltar: Trade Y2 R2 Zoltar

18) dsheldon: Build G1 Berry

19) zoltar: Discover G1 Zoltar Y2 Yabbadabbadoo

20) dsheldon: Trade G1 Y1 Berry

21) zoltar: Move Y2 Greenslime Berry

22) dsheldon: Sacrifice Y1 Berry
Discover G1 Berry Y2 Shortbus

23) zoltar: Move R2 Zoltar Shortbus

24) dsheldon: Build Y1 Dsheldon
	dsheldon: Hmm, I seem to find myself in a very poor position.

25) zoltar: Build Y3 Greenslime

26) dsheldon: Discover Y1 Dsheldon G1 Hope

27) zoltar: Build Y3 Zoltar

28) dsheldon: Discover Y1 Hope B2 Deep

29) zoltar: Attack G1 Shortbus

30) dsheldon: Build R1 Dsheldon

31) zoltar: Build G1 Zoltar

32) dsheldon: Build R2 Dsheldon

33) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Shortbus
Build G3 Yabbadabbadoo

34) dsheldon: Discover R1 Dsheldon B1 Sigh

35) zoltar: Trade G2 B2 Zoltar

36) dsheldon: Move G2 Dsheldon Sigh

37) zoltar: Sacrifice G3 Shortbus
Build G2 Zoltar
Build G3 Shortbus
Build B1 Zoltar

38) dsheldon: Build R2 Sigh

39) zoltar: Build R3 Shortbus

40) dsheldon: Move Y1 Deep Sigh

41) zoltar: Move R3 Shortbus Berry

42) dsheldon: Move R1 Dsheldon Berry

43) zoltar: Sacrifice G3 Shortbus
Build G3 Shortbus
Build R3 Shortbus
Build R3 Berry

44) dsheldon: Move R2 Dsheldon Berry
Catastrophe Berry R

45) zoltar: Move Y3 Greenslime Sigh
	zoltar: With seven battlestars, the Zoltarian fleet is prepared for zee final assault on zee dsheldon homeworld. Battlestations!

46) dsheldon: Sacrifice Y3 Dsheldon
Move G2 Sigh Dsheldon
Move R1 Sigh Shortbus
Move R2 Sigh Shortbus
Catastrophe Shortbus R
	dsheldon: The best choice of several bad options...
	zoltar: Yep, and the one that holds out the longest, I think.  And my response is the most agressive reply I can find, as well.

47) zoltar: Move G3 Shortbus Sigh
	dsheldon: I'm trying to do this and it's not working:

s y3 dsheldon
m g2 sigh dsheldon
m r1 sigh shortbus
m r2 sigh shortbus
c shortbus r

It gives the error "the dsheldon system does not exist."  I wonder if this is a failure to implement the "temporarily leaving your homeworld" rule.
	zoltar: I think that the rule doesn't work, as your homeworld disappears before the other ship returns to it. I don't think the game will let you temporarily abandon your homeworld without destroying it.
	dsheldon: Well, it is a pretty extreme action.  It also means I'm left without large ships and in a poor position to ever get one again.  I'm considering just resigning.  It's been pretty clear for most of the game that I will be defeated.
	Aaron: I was sure that this had been tested in the past and worked fine.  I will need to run some tests.  The orderset looks fine though.  I'm going to freeze the clock.  I have a paper due tomorrow but I hope to have a little time over the weekend to catch up a little bit and will look then.  Thanks for your patience.
	dsheldon: That sounds just fab.  Thanks for the quick response.
	zoltar: Cool.  We can wait and see what happens.  In the meantime, if you want to start another game, that's fine with me.  You're toast in this one no matter what, I think, but this way Aaron can fix the problem with the program in general.
	Aaron: "Fixed."  I'm very sorry for the extreme delay.  Please see the forums for additional comments regarding this situation.
	zoltar: Whew Who!

48) dsheldon: Trade G2 B2 Dsheldon
	dsheldon: I have no recollection of what I was doing, so I just pasted my old command in from previous comments.  It worked!  Yeah!

49) zoltar: Sacrifice G3 Yabbadabbadoo
Build G2 Yabbadabbadoo
Build G3 Sigh
Build Y3 Berry

50) dsheldon: Build B3 Dsheldon

51) zoltar: Sacrifice Y3 Zoltar
Move B1 Zoltar Shortbus
Move B1 Shortbus Sigh
Move B1 Sigh Dsheldon
Catastrophe Dsheldon B
	dsheldon: Well, here goes my last move...

	zoltar: Ok, the game will let me move my blue ship in, but it won't let me blow up the dsheldon homeworld.  I suppose this move will do, unless Aaron's fix prevents catastrophes from ever occurring in a homeworld, which would make for an interesting handicap actually...
	dsheldon: Well, I must say that I'm quite glad I didn't resign then because I'm always glad to help find bugs.

Still, I'm starting to feel bad for the rest of the ladder participants.
	Aaron: Can you copy and paste the top part of the error screen please?  Sorry for the trouble.  I was afraid I would blow something up.  Homeworlds is a complex beast.
	zoltar: Sure: let's see, I can undo my move, and then redo it with the catastrophe to get the white screen of death, and I'll paste that in for you.
	zoltar: System error
error:  	S at /home/html/games/lib/Homeworlds/Pos.pm line 641.
context:  	
...  	
352:  	}
353:  	
354:  	# These are the originals
355:  	sub realwarn { CORE::warn(@_); }
356:  	sub realdie { CORE::die(@_); }
357:  	
358:  	sub id {
359:  	my $level = shift;
360:  	my($pack,$file,$line,$sub) = caller($level);
...  	
code stack:  	/usr/local/lib/perl5/site_perl/5.8.8/CGI/Carp.pm:356
/usr/local/lib/perl5/site_perl/5.8.8/CGI/Carp.pm:437
/home/html/games/lib/Homeworlds/Pos.pm:641
/usr/local/lib/perl5/site_perl/5.8.8/Games/Sequential.pm:161
/home/html/games/lib/SDG/Game2.pm:938
/home/html/games/HTML/mhtml/play_homeworlds.mhtml:375
/home/html/games/HTML/main.html:36
/home/html/games/HTML/autohandler:10

	Aaron: Try again please.
	zoltar: Hey, it worked. The binary star system blew up instead of the program this time!  Cool.  GG.


9190)
Variants: "Hard time"
Started: 2007.9.13, Ended: 2007.9.14
Participants: Visible (S), TwoShort (N)
Winner: Visible

1) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy.

2) Visible: Homeworld R2 B2 G3 *

3) TwoShort: Build G1 Twoshort
	Visible: Hey there. We'll see how this plays out...
Good luck!

4) Visible: Build G1 Visible

5) TwoShort: Trade G1 Y1 Twoshort

6) Visible: Trade G1 Y1 Visible

7) TwoShort: Build G1 Twoshort

8) Visible: Build G1 Visible

9) TwoShort: Move G1 Twoshort Visible

10) Visible: Attack G1 Visible

11) TwoShort: Build G1 Twoshort

12) Visible: Move G1 Visible Twoshort

13) TwoShort: Move G1 Twoshort Visible

14) Visible: Attack Y1 Twoshort

15) TwoShort: Build G2 Visible
Catastrophe Visible Green

16) Visible: Build G1 Twoshort
	Visible: oops.

17) TwoShort: Trade G3 R3 Twoshort

18) Visible: Trade Y1 R1 Twoshort
	TwoShort: I think we're headed for a draw here...

19) TwoShort: Attack G1 Twoshort
	Visible: how exactly are draws handled?
	TwoShort: In more draw-prone games (e.g. Fanorona) there's a button to offer a draw; I guess it hasn't come up enough in Homeworlds.  We'd have to get Aaron to do it manually.  But actually now I'm wondering if I can stop you...  This is a freaky game :)

20) Visible: Build R1 Twoshort
Catastrophe Twoshort Red

21) TwoShort: Trade G1 R1 Twoshort

22) Visible: Sacrifice G1 Twoshort
Build Y1 Visible
	Visible: sorry for the undo. forgot to actually cause my catastrophe... ;)
I think you would have been better off sac'ing your 3r and taking all 3 of my ships.
	Visible: MAN this game is fun. :)

23) TwoShort: Trade R1 G1 Twoshort
	TwoShort: I couldn't sac the 3, it was my only ship and I'd have had nothing to actually perform the attack actions with.

24) Visible: Trade Y1 R1 Visible
	Visible: ooooh yeah. hmmm.
	TwoShort: Oh... and don't worry about the undo; I personally don't see any problem with undoing even just because I see a better move.
	Visible: Gotcha. Good to know. =)

25) TwoShort: Trade G1 R1 Twoshort

26) Visible: Trade Y1 G1 Visible

27) TwoShort: Trade R1 G1 Twoshort

28) Visible: Build R1 Visible

29) TwoShort: Build G1 Twoshort

30) Visible: Trade R1 Y1 Visible

31) TwoShort: Trade G1 R1 Twoshort

32) Visible: Build Y1 Visible

33) TwoShort: Build R1 Twoshort

34) Visible: Build R2 Visible

35) TwoShort: Build G1 Twoshort

36) Visible: Move R2 Visible Twoshort
	TwoShort: Hmmm, I'm beginning to think I might not win this one.

37) TwoShort: Build R2 Twoshort
Catastrophe Twoshort Red
	Visible: Eh, well. All it'll take is a mistake on my part to turn it around.

38) Visible: Move G1 Visible Twoshort
	TwoShort: Certainly, though it will take a pretty crazy blunder at this point... not that you should let that stop you from making one :)

39) TwoShort: Trade G1 R1 Twoshort
	Visible: Mmm. Decisions, decisions.

40) Visible: Sacrifice R1 Visible
Attack R1 Twoshort

	Visible: good game!
	TwoShort: Good game to you too!  


9340)
Variants: "Hard time"
Started: 2007.9.14, Ended: 2007.9.29
Participants: TwoShort (S), Visible (N)
Winner: TwoShort

1) Visible: Pass
	Visible: Hey there. Feel like a rematch?

2) TwoShort: Homeworld B3 R1 G3
	Visible: Heh. Couldn't decide on an opening, so I figured I'd find out if it lets you pass your first turn... =X

3) Visible: Homeworld Y2 B2 G3 *

4) TwoShort: Build G1 Twoshort

5) Visible: Build G1 Visible
	TwoShort: Couldn't decide on an opening, or wanted to force another micro-universe game? :) Not that it matters, I think the microverse favors player 1 despite my screwing it up last time.
	Visible: Didn't really want to force the same game. I just think it's the optimal response to your homeworld.
It puts the game on rails, as far as I can tell. Optimal or near-optimal play by both players results in victory for me.
I think. =P

6) TwoShort: Trade G1 Y1 Twoshort

7) Visible: Trade G1 R1 Visible
	Visible: And honestly, I couldn't decide on an opening. Most of the possibilities are just... so... not good.

8) TwoShort: Build Y1 Twoshort
	TwoShort: You may be right, I haven't given the micro-universe all that much thought.  Out of curiosity, how much analysis are you basing your conclusion on?  

9) Visible: Build G1 Visible
	Visible: Not a great deal. If you run through our last game, though, you'll notice a LOT of cause and effect. 
I think taking a yellow star instead of red may mess that up, for this game. I didn't give it much thought; just wanted to change it up.

	TwoShort: As far as openings as first player, my only current debate is whether the blue should be a 2 or a 3 :)  But I do think it's better to go first under the rules in use here.

10) TwoShort: Build Y1 Twoshort
	Visible: Well, taking any single-pip first is probably a handicap. The 1r 3b 3g means that you'll almost always take -two- small pieces first. 
	TwoShort: I just wanted to make sure your answer was "mostly our last game" rather than "extensive computer modeling" :)  The game is certainly constrained in this set up, but I think the last game is mostly down to one stupid move I made.  Which I'll be happy to point out after I don't make it this time :)
	Visible: Heh. Pretty sure it was when you moved your 1g into my homeworld without any way to make use of it. -_^

11) Visible: Build R1 Visible
	Visible: Hmmm. Yeah... was afraid this would happen. Definately a mistake taking a yellow star.

12) TwoShort: Discover Y1 Twoshort Y2 Yolonda

13) Visible: Build R2 Visible

14) TwoShort: Build Y2 Twoshort

15) Visible: Discover R1 Visible Y3 Invisible
	TwoShort: So have you played much Homeworlds off-line?

16) TwoShort: Discover Y2 Twoshort B2 Bluonia
	Visible: None at all. Actually, our previous game was the first that I've completed. I've got one in progress which I started prior to that, though.

17) Visible: Discover R2 Visible Y3 Unvisible

18) TwoShort: Build Y3 Twoshort
	Visible: This is absolutely bizarre.
	TwoShort: Sigh.  I was afraid it was your first game.  I guess I'll blame your unconventional tactics for throwing me off :)  

19) Visible: Sacrifice G3 Visible
Build R2 Invisible
Build R2 Unvisible
Build R3 Visible
	Visible: Well, if it's any comfort, you seem to be stomping all over me this time around. ;)
This'll be my last move for this evening, incidentally.

20) TwoShort: Trade Y3 R3 Twoshort
	TwoShort: Hmmm, I think I'll feel better if I crush you a half-dozen times or so. :) I mean, nothing personal, but I'm the highest rated Homeworlds player here.  I'm supposed to be an unstoppable juggernaut; not get tripped up by first-timers who don't know enough to be intimidated ;)  Seriously though, you're playing shockingly well for a newbie.

21) Visible: Move R1 Invisible Yolonda
	Visible: Oh, I knew who you were when I joined the game. ;)
Was the whole reason I went with the aggressive strategy.
Anyway, you don't learn anything playing against newbs.

22) TwoShort: Move R3 Twoshort Yolonda

23) Visible: Move R2 Unvisible Bluonia
	Visible: Good move. 

24) TwoShort: Sacrifice R3 Yolonda
Attack R2N Bluonia
Attack R1N Yolonda
Pass
	TwoShort: Well, I'm learning a lot, having never played a game with adjacent homeworlds before.  The last one was exactly the sort of desperately constricted game I'd always assumed it would be, but this one is fascinating.  It's too dangerous to build up the forces for a direct assault in one's own homeworld, so you have to also expand around the long way, making it like a normal 3-hop universe bent into a circle.  Room to grow, but not to breathe.
	Visible: I meant that I, as a newbie, wasn't going to learn much playing other newbies.
It has been an extremely interesting game.
I think same-size stars in your homeworld may be an extremely strong opening. It basically halves your initial movement costs, while doubling your initial movement options.
	Visible: As you said, though, you do probably sacrifice breathing room.

25) Visible: Sacrifice G1 Visible
Build R3 Invisible
	Visible: Ooooof. Not good.

26) TwoShort: Build Y3 Twoshort

27) Visible: Move R3 Invisible Bluonia

28) TwoShort: Discover R2 Bluonia G3 Threatamantic
	TwoShort: So out of curiosity, where are you? 
(I'm in Boulder, Colorado)
	Visible: Minneapolis, Minnesota.
Boulder, eh? Starting to get cold over there, too?

29) Visible: Sacrifice R1 Visible
Attack Y2 Bluonia

30) TwoShort: Trade Y1 R1 Twoshort
	Visible: =/

31) Visible: Move R2 Unvisible Yolonda

32) TwoShort: Discover R1 Yolonda B3 Bluestar

33) Visible: Trade R3 G3 Visible
	Visible: WOW. I didn't think that was a great move, when I made it...
but... just WOW. talk about oversight. =X

34) TwoShort: Build G1 Twoshort



9191)
Started: 2007.9.15, Ended: 2007.9.15
Participants: MikeYarrum (S), Metroidfans (N)
Winner: MikeYarrum



9307)
Variants: "Hard time"
Started: 2007.9.17, Ended: 2007.9.23
Participants: stoneaxe (S), SpaceHobo (N)
Winner: stoneaxe

1) SpaceHobo: Homeworld Y1 B2 G3

2) stoneaxe: Homeworld B1 Y3 G3

	stoneaxe: Interstellar greetings to you.  I'm a relative newbie at this game, so prepare to battle my awesome powers of beginners luck!!!


9315)
Variants: "Unrated, Hard time"
Started: 2007.9.18, Ended: 2007.9.24
Participants: zoltar (S), scottobear (N)
Winner: zoltar

1) scottobear: Homeworld G3 B2 Y3

2) zoltar: Homeworld B1 R2 G3

3) scottobear: Build Y1 Scottobear

4) zoltar: Build G1 Zoltar
	scottobear: I've never seen a red homeworld!

5) scottobear: Trade Y1 R1 Scottobear

6) zoltar: Trade G1 Y1 Zoltar

7) scottobear: Discover R1 Scottobear G1 Teeth

8) zoltar: Build G1 Zoltar

9) scottobear: Build Y1 Scottobear
	zoltar: I usually use red/blue homeworlds, because I don't have to worry about not having a red ship and having my homeworld invaded -- it always has defense abilities to capture an invader -- and I can build more greens and yellows without worrying as much about catastrophes, so if I build a 'factory' (when all the greens are used and I have a G3 and another green ship in my homeworld and can sacrifice the green and immediately rebuild it and get two more grow turns at once) a single green ship won't be able to blow up my factory.
	scottobear: sounds like a good strategy! i'm still developing mine..I'm new!

10) zoltar: Discover G1 Zoltar B3 Bluemoon

11) scottobear: Move Y1 Scottobear Teeth

12) zoltar: Build G1 Bluemoon

13) scottobear: Move R1 Teeth Bluemoon
	scottobear: move r1 teeth bluemoon
	scottobear: oops!

14) zoltar: Build G2 Bluemoon

15) scottobear:
Build Y1 Scottobear
	zoltar: So I'm going to ignore your attack, and let you waste 2 moves to move your red ship and capture my green, while I develop larger green ships.
	scottobear: thank you for showing me the ropes!

16) zoltar: Trade G2 R2 Bluemoon

17) scottobear: Build Y2 Teeth

18) zoltar: Attack R1 Bluemoon

19) scottobear: Build Y2 Scottobear

20) zoltar: Trade R2 Y2 Bluemoon

21) scottobear: Trade Y3 R3 Scottobear

22) zoltar: Build Y3 Zoltar
	zoltar: You're playing much better this game. Now I have to go for some very dangerous tricks to catch up in development here.

23) scottobear: Build Y3 Teeth
	zoltar: Actually, that's too dangerous, I think.

24) zoltar: Move Y2 Bluemoon Teeth
Catastrophe Teeth Y
	zoltar: Ok, I like my position now, with two battlestars defending my homeworld.
	scottobear: thank you again for the hints and tips!

25) scottobear: Trade Y1 R1 Scottobear

26) zoltar: Move Y3 Zoltar Bluemoon
	zoltar: Time to send in a jihadist!

27) scottobear: Discover R1 Scottobear B1 Monkey
	zoltar: Building the Y3 in your homeworld would have been much better, as I would have to sac my Y3 in my homeworld to send my y1 into your homeworld to blow up the yellow ships, and then forces would remain equal.  In this case, however, I got to sacrifice only my y2 to take out your Y3 and blow up the entire system, leaving me with two large ships to your one after the simplification.
	zoltar: And you're welcome -- I love discussing this game, as it's the most interesting new game I've discovered in years -- and I live just down the street from the designer/author of the game. 
	zoltar: And you're welcome -- I love discussing this game, as it's the most interesting new game I've discovered in years -- and I live just down the street from the designer/author of the game. 
	scottobear: It is a fascinating one.. probably the most interesting icehouse game I've seen yet. 

I'm in Maryland - not very far from the Looneys.

28) zoltar: Build Y1 Bluemoon

29) scottobear: Build R1 Scottobear

30) zoltar: Build R2 Bluemoon

31) scottobear: Build Y1 Scottobear

32) zoltar: Move Y3 Bluemoon Monkey

33) scottobear: Move Y2 Scottobear Monkey

34) zoltar: Sacrifice R2 Bluemoon
Attack Y2 Monkey
Attack R1 Monkey

35) scottobear: Trade R1 B1 Scottobear

36) zoltar: Build Y2 Bluemoon

37) scottobear: Build Y2 Scottobear
	zoltar: Resistance is futile -- you will be assimilated.
	scottobear: aw, pah!

38) zoltar: Discover Y1 Bluemoon R1 Attackoutpost
	scottobear: trade r1 b1 scottobear


39) scottobear: Build Y3 Scottobear

40) zoltar: Move Y1 Attackoutpost Scottobear
Catastrophe Scottobear Y

41) scottobear: Build B2 Scottobear

42) zoltar: Move G1 Bluemoon Monkey
	scottobear: sacrifice y2 scottobear
move r3 scottobear monkey
attack y3 r3 monkey

am I missing something, it says I'm out of actions. 

43) scottobear: Trade B2 R2 Scottobear
	zoltar: Yes, you can't both move and attack in one round. If you sac a Y2, you get two movements. If you sac an R2, you get two attacks.  But you can't sac a Y2 (nor an R2) and get one movement and one attack.  So you can't both move your R3 and then attack my Y3 in the same turn.

Obviously you don't want to simply move your R3, as I can now capture it. So click on undo and find another move, but be careful, as the software only lets you undo your move once per turn.
	scottobear: thanks!

44) zoltar: Sacrifice Y3 Monkey
Move R1 Bluemoon Monkey
Move R1 Monkey Scottobear
Move R1 Monkey Scottobear
Catastrophe Scottobear R
	scottobear: aw, nuts. 

45) scottobear: Build B2 Scottobear
	zoltar: Hey, I invited you to my Zendo game, because one of the players never showed up yet, and I saw that you've signed up for a couple of Zendo games. Zendo and Homeworlds are now my two favorites.

Btw, I live in Greenbelt, close to the Looneys as well, and down the street from John Cooper (aka Gort here), the author of Homeworlds.
	scottobear: Very keen... I'm in north beach - I go to work in greenbelt every weekday!
	scottobear: I'd love to try zendo... I've been wanting to learn for ages!

46) zoltar: Build G1 Zoltar

47) scottobear: Trade B2 R2 Scottobear

48) zoltar: Build G2 Monkey

49) scottobear: Build B2 Scottobear
	scottobear: uh-oh! 

50) zoltar: Sacrifice G3 Zoltar
Build G2 Bluemoon
Build G2 Bluemoon
Build G3 Zoltar

51) scottobear: Trade B2 Y2 Scottobear

52) zoltar: Sacrifice G3 Zoltar
Build G3 Monkey
Build G3 Zoltar
Build Y1 Monkey

53) scottobear: Build B2 Scottobear

54) zoltar: Sacrifice G3 Zoltar
Build Y1 Monkey
Build Y3 Bluemoon
Build Y3 Zoltar

55) scottobear: Trade B2 R2 Scottobear

56) zoltar: Sacrifice G3 Monkey
Build G3 Monkey
Build G3 Zoltar
Build Y3 Bluemoon

57) scottobear: Pass
	scottobear: that's a whole lot of green goin' on!

58) zoltar: Trade G3 R3 Monkey

59) scottobear: Build B2 Scottobear

60) zoltar: Trade Y3 B3 Bluemoon

61) scottobear: Move Y2 Scottobear Monkey
Catastrophe Monkey Y
	scottobear: I have no idea! 

62) zoltar: Sacrifice Y3 Bluemoon
Move B3 Bluemoon Monkey
Move B3 Monkey Scottobear
Move R3 Monkey Scottobear
Catastrophe Scottobear B

63) scottobear: Build R1 Scottobear
Catastrophe Scottobear R

	zoltar: Though actually, this move is cuter, as it puts you in what chessplayers call "Zugzwang", which means that every possible move spells doom for you.
	scottobear: that's no moon!!


9370)
Variants: "Hard time"
Started: 2007.9.19, Ended: 2007.9.22
Participants: Kermit (S), Visible (N)
Winner: Kermit



9382)
Variants: "Unrated"
Started: 2007.9.20, Ended: 2007.11.13
Participants: wyons (S), MikeYarrum (N)
Winner: wyons

1) MikeYarrum: Homeworld R3 B2 G3
	MikeYarrum: Okay, here's your training game. Pardon me if I go over something you already know.

The most important thing is picking a good Homeworld. If you don't have any green technology to start with, you'll either have to trade for it (and waste a valuable turn). It's also good to start with blue, or you'll be stuck with only one kind of color in your Homeworld, unless you waste turns moving different colors back to your Homeworld.

For beginningers, a Homeworld of one small and one medium is recommended, with a combination of yellow-blue-green technology. Some advanced players, myself included, prefer a large-medium Homeworld with blue-red-green technology.

You can pick whatever size ship you'd like to start with, but there's no reason you'd want to go with anything except a 3-pointer.

2) wyons: Homeworld G1 B2 Y3

3) MikeYarrum: Build G1 Mikeyarrum
	wyons: thanks that is all just the help I need
	MikeYarrum: Okay, but if you have any questions at all, feel free to ask. =D

4) wyons: Build Y1 Wyons
	wyons: --I wasnt saying that was enough - I was saying it was good. :) please keep going. :)

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) wyons: Discover Y1 Wyons G3 Spinach
	MikeYarrum: Oh, my bad! I'll keep going.

Well, right now my red technology isn't helping, which puts you at the advantage. You'll want to build as many yellow ships as possible, to keep me from getting any. But I took the first opportunity I had to trade an extra ship for yellow (again, some new players will waste time trading instead of building - but this was a good time to trade). Now, it wouldn't be wise of you to build another yellow ship, because that puts you at three yellow ships in your Homeworld - if you built any after that, I could catastrophe and destroy all of your ships. Plus, I could build a 2-point yellow if you took the last 1-point yellow.

So, this gives you several options. You could trade your 1-point yellow for a blue or a green, but you already have those technologies in your Homeworld (it's always wise to have ships of different colors, but one-pointers of colors you already have don't help much). Also, trading for red at this point might not be a good idea, since you wouldn't have any use for it yet.

I'd recommend discovering a 3-point Green system with your one-point yellow. This not only takes away a 3-point Green that I would definitely want to build later in the game, but gives you another place to safely build more yellow ships (that's the big reason to discover new systems - room to build).

7) MikeYarrum: Build G1 Mikeyarrum
	wyons: OK, that all makes sense.... I shall certainly take your advice!

8) wyons: Build Y1 Wyons
	MikeYarrum: Besides discovering a new system like you did, I can only build another green ship. I could trade it my next turn, or maybe use it for discovery later. Keeping at least one green ship around also allows me to have a "factory" later in the game (which means sacrificing a green 3 pointer, building twice, then re-building the green 3 pointer I just sacrificed). Naturally, I can only do this much later in the game - otherwise, I'd be forced to build the smallest green ship available, which would usually mean losing my 3 pointer.

This puts you in a tricky situation - You're in a much better position to build yellow ships than I am, because you already have two systems to do it in. However, building any more yellow ships would mean I get first chance to build a 2-point yellow.

Let's just see how it plays out. =D (make sure you play against other people - my strategy isn't the only one you can use!)
	wyons: if you sacrifice a yellow two pointer can you hop from system a to b to c (assuming they are connected)?

9) MikeYarrum: Build Y2 Mikeyarrum
	wyons: OK so I am going to allow you a two pointer yellow because I dont really see how else I can develop effectively...   :)
	MikeYarrum: Yes, that's right. Also, because you can only attack ships that are the same size or smaller, larger ships mean you have more opportunities to attack, but can more easily defend.
	MikeYarrum: Oh, and don't forget - it's entirely legal (at least in the SDG system) to "discover" a system, then abandon it the same turn. So, for example, you could sacrifice your 3 point yellow, "discover" a 1 point system, then move directly into my homeworld in one turn, abandoning spinach and the 1 point system in the process.

Not that you'd want to, but if a similar situation comes up...

10) wyons: Build Y2 Spinach

11) MikeYarrum: Trade Y1 R1 Mikeyarrum
	wyons: thanks, I hadnt realised that and it is a useful tactic. 

12) wyons: Trade Y1 R1 Wyons

13) MikeYarrum: Discover G1 Mikeyarrum B1 Ena

14) wyons: Build Y1 Wyons

15) MikeYarrum: Build G1 Mikeyarrum
	MikeYarrum: Oh, by the way, I noticed how you traded that one point yellow away - that's always a good tactic to keep the higher-pointers away, if you didn't already know.

Doesn't work later in the game, when there's barely anything to trade for, though.

16) wyons: Trade Y1 B1 Wyons
	wyons: hmm , I've let you get a nice line in green..

17) MikeYarrum: Build G2 Ena
	MikeYarrum: Yes... apparently, this wasn't the best strategy for you.

Unfortunately, I seem to run into a similar problem in my games against zoltar - we get into a game of "chicken" about giving the other first crack at the big pieces, and he always seems to come out ahead. So I really didn't have much advice about the situation - try playing against some others. ^_^
	MikeYarrum: *by "others", I mean both more games, and against other people.

18) wyons: Move B1 Wyons Spinach

19) MikeYarrum: Trade G2 R2 Ena
	wyons: I am playing several other games.... :) And I am also not sure now about the wisdom of building a green star in the home world. I'd rather have a green ship and a red and blue star. A green star means you also have to have a green ship in order to build green- and that opens you up to easier attack. :)
	MikeYarrum: True, but usually you build whatever color ship you started with, then discover either blue systems to either trade for green or green systems.

20) wyons: Trade Y2 G2 Spinach

21) MikeYarrum: Build G2 Ena

22) wyons: Build Y1 Wyons



9378)
Variants: "Unrated, Hard time"
Started: 2007.9.21, Ended: 2007.10.1
Participants: scottobear (S), wyons (N)
Winner: wyons

1) wyons: Homeworld Y1 B2 G3

2) scottobear: Homeworld G3 B2 Y3
	wyons: Hi again :). You will have to bear with me (no pun intended!) as this is my first game!
	scottobear: no worries! I'm *very* new, too... still getting sacrifices worked out. :D

3) wyons: Build G1 Wyons

4) scottobear: Build Y1 Scottobear

5) wyons: Trade G1 R1 Wyons
	wyons: why am I labelled North but in the south?? 



6) scottobear: Trade Y1 R1 Scottobear
	scottobear: I think it's just to make it look like it's from your perspective - your pieces facing away from you.
	scottobear: you're off to a good start!

7) wyons: Build G1 Wyons
	wyons: but thats not the way it seems to work in other ongoing games and ah thank you (that I am off to a good start) though I dont really understand why you think so.

8) scottobear: Discover R1 Scottobear G1 Teeth
	scottobear: just that you seemed to start doing very similar moves to me. :D

9) wyons: Trade G1 Y1 Wyons

10) scottobear: Build Y1 Scottobear

11) wyons: Build Y2 Wyons

12) scottobear: Move Y1 Scottobear Teeth

13) wyons: Discover Y2 Wyons G3 Gondola

14) scottobear: Build Y2 Scottobear
	scottobear: build y2 scottobear

15) wyons: Trade Y1 B1 Wyons

16) scottobear: Trade Y3 R3 Scottobear

17) wyons: Trade G3 R3 Wyons

18) scottobear: Move Y2 Scottobear Teeth

19) wyons: Trade R1 G1 Wyons

20) scottobear: Move R1 Teeth Gondola

21) wyons: Build R1 Wyons

22) scottobear: Move Y2 Teeth Scottobear

23) wyons: Sacrifice R1 Wyons
Attack R1S Gondola

24) scottobear: Build Y1 Scottobear

25) wyons: Move B1 Wyons Gondola

26) scottobear: Trade Y2 R2 Scottobear

27) wyons: Build Y2 Gondola

28) scottobear: Move R2 Scottobear Teeth

29) wyons: Build B1 Gondola

30) scottobear: Build Y2 Scottobear

31) wyons: Discover Y2 Gondola G2 Kayak

32) scottobear: Build Y3 Scottobear

33) wyons: Build Y3 Kayak

34) scottobear: Trade Y3 R3 Scottobear

35) wyons: Build Y3 Gondola

36) scottobear: Move R2 Teeth Gondola
	wyons: is red your favourite colour (its got me nervous) :)

37) wyons: Attack R2 Gondola
	scottobear: I do like red!

38) scottobear: Discover Y2 Scottobear B1 Claws

39) wyons: Trade Y3 G3 Gondola
	wyons: phew! I thought I could attack your ship in that way but had not been able to check the rules as they were frozen up. Me - my favourite colour is yellow!
	scottobear: yellow is a good color! I didn't know if you could attack that way, either! :D

40) scottobear: Build Y3 Scottobear

41) wyons: Build Y3 Gondola

42) scottobear: Move Y3 Scottobear Teeth

43) wyons: Discover Y3 Gondola G1 Punt

44) scottobear: Trade Y2 R2 Claws

45) wyons: Build G2 Wyons
	scottobear: this is the biggest system I've ever played in!

46) scottobear: Discover Y3 Teeth B3 Eyes

47) wyons: Build G2 Gondola
	wyons: yes... and it is getting very complicated!

48) scottobear: Build Y2 Teeth

49) wyons: Sacrifice Y2 Kayak
Move B1 Gondola Punt
Move R1 Gondola Punt

50) scottobear: Trade R2 Y2 Claws

51) wyons: Sacrifice G3 Gondola
Build R1 Punt
Build R1 Wyons
Build G3 Gondola

52) scottobear: Move R3 Scottobear Teeth

53) wyons: Sacrifice G3 Gondola
Build B2 Punt
Build B3 Gondola
Build G3 Gondola

54) scottobear: Build R2 Scottobear

55) wyons: Sacrifice Y3 Kayak
Move R1 Punt Scottobear
Move R1 Punt Scottobear
Move Y3 Punt Scottobear
Catastrophe Scottobear Red

56) scottobear: Build Y3 Scottobear

57) wyons: Sacrifice R2 Gondola
Attack Y3S Scottobear
Attack Y1S Scottobear

	wyons: many thanks for the game. Happy to play another.
	scottobear: thank you!


9417)
Started: 2007.9.24, Ended: 2007.10.3
Participants: wyons (S), stoneaxe (N)
Winner: wyons

1) stoneaxe: Homeworld Y1 B3 G3
	wyons: Hiya, I'm a newbie too!

2) wyons: Homeworld Y1 B2 G3
	stoneaxe: Okay, thanks for playing and good luck!
	stoneaxe: I like the games Golem, Generatorb, and Pikemen pretty well too.  This site rocks!

3) stoneaxe: Build G1 Stoneaxe

4) wyons: Build G1 Wyons
	wyons: I dont know those games yet- I am pretty new to this site as well.

5) stoneaxe: Build G1 Stoneaxe

6) wyons: Build G2 Wyons

7) stoneaxe: Build G2 Stoneaxe

8) wyons: Trade G1 R1 Wyons
Catastrophe Stoneaxe Green
	wyons: many thanks- your mistake was to have four of one colour in your homeworld- all I had to do was trigger a catastrophe. Do challenge me again if you want to.



9356)
Started: 2007.9.27, Ended: 2008.2.22
Participants: NMcCoy (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B3 R2 G3

2) NMcCoy: Homeworld Y1 B2 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) NMcCoy: Build G1 Nmccoy

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) NMcCoy: Trade G1 Y1 Nmccoy

7) MikeYarrum: Build Y2 Mikeyarrum

8) NMcCoy: Discover Y1 Nmccoy G3 Meganium

9) MikeYarrum: Build Y2 Mikeyarrum

10) NMcCoy: Build Y2 Meganium

11) MikeYarrum: Discover Y1 Mikeyarrum G1 Ena



9247)
Started: 2007.9.27, Ended: 2007.10.10
Participants: ts52 (S), Sunnan (N)
Winner: ts52

1) Sunnan: Homeworld Y2 B1 G3

2) ts52: Homeworld B3 Y1 G3

3) Sunnan: Build G1 Sunnan
	ts52: Have a great game!

4) ts52: Build G1 Ts52
	Sunnan: Oh, thanks! You too! This is the first time I play Homeworlds and the first time I play on SDG; but I've read a lot about the game and I just yesterday got a real set.

5) Sunnan: Discover G1 Sunnan B3 Alice
	ts52: Well, welcome! Homeworlds is a great game, with more depth than I've even found yet. And SDG is just fantastic, as I can't get any of my friends to play.

6) ts52: Trade G1 Y1 Ts52

7) Sunnan: Build G1 Sunnan

8) ts52: Build Y1 Ts52

9) Sunnan: Trade G3 Y3 Sunnan

10) ts52: Discover Y1 Ts52 G2 Kermit

11) Sunnan: Build Y2 Sunnan

12) ts52: Discover Y1 Ts52 G2 Oscar

13) Sunnan: Discover Y2 Sunnan B3 Ruth

14) ts52: Build Y2 Kermit

15) Sunnan: Sacrifice G1 Sunnan
Build Y3 Ruth

16) ts52: Build Y3 Oscar

17) Sunnan: Trade Y3 G3 Ruth

18) ts52: Discover Y1 Kermit G3 Frogstar

19) Sunnan: Trade Y3 R3 Sunnan

20) ts52: Build Y3 Frogstar

21) Sunnan: Trade G1 R1 Alice

22) ts52: Build Y3 Kermit

23) Sunnan: Sacrifice Y2 Ruth
Move G3 Ruth Kermit
Move G3 Kermit Ts52

24) ts52: Sacrifice Y2 Kermit
Move Y3 Kermit Ts52
Move Y3 Oscar Ts52

25) Sunnan: Sacrifice R1 Alice
Attack G3 Ts52

26) ts52: Trade Y3 R3 Ts52

27) Sunnan: Sacrifice G3 Ts52
Build G1 Ts52
Build G1 Ts52
Build R1 Sunnan

28) ts52: Sacrifice R3 Ts52
Attack G3N Ts52
Attack G1N Ts52
Attack G1N Ts52

29) Sunnan: Move R1 Sunnan Frogstar

30) ts52: Trade G1 R1 Ts52

31) Sunnan: Attack Y1 Frogstar

32) ts52: Sacrifice R1 Ts52
Attack R1N Frogstar

33) Sunnan: Discover Y1 Frogstar R2 Manhattan

34) ts52: Build Y2 Oscar

35) Sunnan: Trade R3 G3 Sunnan

36) ts52: Move Y3 Frogstar Sunnan

37) Sunnan: Build G1 Sunnan

38) ts52: Sacrifice R1 Frogstar
Attack G3N Sunnan

39) Sunnan: Build G1 Sunnan

40) ts52: Build G2 Sunnan
Catastrophe Sunnan Green

	ts52: Thanks for the game!


9438)
Started: 2007.9.27, Ended: 2007.9.27
Participants: NMcCoy (S), MikeYarrum (N)
Winner: MikeYarrum



9368)
Variants: "Hard time"
Started: 2007.9.27, Ended: 2007.9.30
Participants: NMcCoy (S), SpaceHobo (N)
Winner: NMcCoy



9390)
Variants: "Unrated, Hard time"
Started: 2007.9.27, Ended: 2007.10.3
Participants: NMcCoy (S), scottobear (N)
Winner: NMcCoy

1) scottobear: Homeworld B3 G2 Y3

2) NMcCoy: Homeworld B2 Y1 G3

3) scottobear: Build Y1 Scottobear
	scottobear: hello!

4) NMcCoy: Build G1 Nmccoy

5) scottobear: Discover Y1 Scottobear G1 Point
	NMcCoy: Hello! I'm interested to see how this game goes, since you led off with a notably different setup than most of my other opponents I'm currently playing. I look forward to seeing your strategy. :)
	scottobear: well, I'm still very new! I'm still trying to work out my best course of action.. I don't always get it right. :D

6) NMcCoy: Discover G1 Nmccoy Y3 Ampharos

7) scottobear: Build Y1 Scottobear
	NMcCoy: I've just found out due to the rules handling of this version that I've been misunderstanding the rules in my offline games the whole time, so that changes my understanding of strategy significantly.
	scottobear: I haven't played many games yet, myself... I still don't quite get the sacrifice part right all the time. 

8) NMcCoy: Build G1 Nmccoy

9) scottobear: Trade Y1 B1 Scottobear

10) NMcCoy: Build G2 Ampharos

11) scottobear: Trade B1 R1 Scottobear

12) NMcCoy: Discover G2 Ampharos B1 Mudkip

13) scottobear: Build Y1 Point

14) NMcCoy: Build G2 Mudkip

15) scottobear: Build Y2 Scottobear

16) NMcCoy: Sacrifice G3 Nmccoy
Build G3 Nmccoy
Build G3 Ampharos
Build G3 Mudkip

17) scottobear: Trade Y2 B2 Scottobear

18) NMcCoy: Trade G3 Y3 Mudkip

19) scottobear: Move B2 Scottobear Point

20) NMcCoy: Sacrifice G3 Ampharos
Build G3 Mudkip
Build G3 Ampharos
Build Y2 Mudkip

21) scottobear: Build B1 Point

22) NMcCoy: Trade G3 R3 Nmccoy

23) scottobear: Trade B1 R1 Point

24) NMcCoy: Sacrifice Y2 Mudkip
Move Y3 Mudkip Scottobear
Move G3 Mudkip Scottobear

25) scottobear: Attack Y3 Scottobear

26) NMcCoy: Sacrifice R3 Nmccoy
Attack Y3N Scottobear
Attack Y3N Scottobear
Attack R1N Scottobear
	NMcCoy: Good game!
	scottobear: thanks!!



9439)
Started: 2007.9.27, Ended: 2007.10.5
Participants: NMcCoy (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) NMcCoy: Homeworld B3 Y1 G3
	ts52: Have a great game!

3) ts52: Build G1 Ts52
	NMcCoy: Thanks. First time playing online, and against someone other than family.

4) NMcCoy: Build G1 Nmccoy
	ts52: Having family that plays must be pretty cool. Online is the only place I can find people to play...

5) ts52: Trade G1 Y1 Ts52
	NMcCoy: Family plays intermittently - My girlfriend (who shares my apartment) isn't all that interested, and I'm not around the rest of my family all that much. This is one of my favorite Icehouse games - tactically rich, and much more engaging to me than chess for example.

6) NMcCoy: Trade G3 Y3 Nmccoy
	NMcCoy: Oh, wow, I've been playing the game wrong the whole time. Never knew about the rule for matching ship color when building.

7) ts52: Discover Y1 Ts52 G3 Kermit
	ts52: Oh wow, yeah. That's going to make a huge difference.

8) NMcCoy: Build Y2 Nmccoy

9) ts52: Build Y2 Kermit

10) NMcCoy: Discover Y2 Nmccoy G2 Bayleef

11) ts52: Discover Y1 Kermit G2 Oscar

12) NMcCoy: Build G1 Nmccoy

13) ts52: Build Y2 Oscar

14) NMcCoy: Trade Y3 G3 Nmccoy
	NMcCoy: Erk. Not good...

15) ts52: Build Y3 Kermit
	NMcCoy: Not a lot I can do at this point...

16) NMcCoy: Build Y3 Bayleef

17) ts52: Build G1 Ts52

18) NMcCoy: Sacrifice Y2 Bayleef
Discover Y3 Bayleef Y3 Raichu
Discover G3 Nmccoy Y2 Pikachu

19) ts52: Move Y2 Oscar Nmccoy

20) NMcCoy: Sacrifice Y3 Raichu
Move G3 Pikachu Nmccoy
Discover G1 Nmccoy G2 Grovyle
Discover G1 Nmccoy G2 Ivysaur

21) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Nmccoy
Build Y3 Nmccoy
Catastrophe Nmccoy Yellow
	NMcCoy: *cackles madly*

22) NMcCoy: Sacrifice G1 Grovyle
Build G1 Nmccoy

23) ts52: Build G2 Ts52

24) NMcCoy: Trade G3 Y3 Nmccoy

25) ts52: Discover G2 Ts52 Y3 Bigbird

26) NMcCoy: Build G3 Nmccoy

27) ts52: Trade G1 R1 Ts52

28) NMcCoy: Sacrifice Y3 Nmccoy
Move G1 Ivysaur Bigbird
Move G1 Bigbird Ts52
Move G1 Nmccoy Ts52

29) ts52: Trade G3 B3 Ts52

30) NMcCoy: Build G1 Nmccoy

31) ts52: Attack G1S Ts52

32) NMcCoy: Trade G3 R3 Nmccoy
	NMcCoy: Okay, it clearly looks like I have no way to survive at this point...

33) ts52: Attack G1S Ts52

34) NMcCoy: Build G2 Nmccoy
	ts52: It's not looking too good, but it's not over yet...

35) ts52: Build G3 Bigbird

36) NMcCoy: Trade G2 Y2 Nmccoy

37) ts52: Build B1 Ts52

38) NMcCoy: Build G2 Nmccoy

39) ts52: Sacrifice Y2 Kermit
Move B3 Ts52 Nmccoy
Move B1 Ts52 Nmccoy
	NMcCoy: Don't think there's any way I can stop you killing me with blue now.

40) NMcCoy: Sacrifice Y2 Nmccoy
Move G2 Nmccoy Ts52
Move G1 Nmccoy Ts52
Catastrophe Ts52 Green

41) ts52: Sacrifice G3 Bigbird
Build B1 Nmccoy
Build B1 Nmccoy
Build B2 Nmccoy
Catastrophe Nmccoy Blue
	NMcCoy: Might as well go out with a bang. Good game.
	ts52: Thanks for the game. 



9443)
Started: 2007.9.28, Ended: 2007.12.15
Participants: NMcCoy (S), wyons (N)
Winner: wyons

1) wyons: Homeworld Y1 B2 G3
	wyons: hiya, we've not met before I think, have a good game!

2) NMcCoy: Homeworld Y3 B1 G3

3) wyons: Build G1 Wyons
	NMcCoy: You too! I'm new to playing online here, though I've done a few games in person with family before.

4) NMcCoy: Build G1 Nmccoy

5) wyons: Trade G1 Y1 Wyons

6) NMcCoy: Discover G1 Nmccoy B2 Wartortle

7) wyons: Build G1 Wyons

8) NMcCoy: Trade G1 R1 Wartortle

9) wyons: Build G1 Wyons

10) NMcCoy: Build G1 Nmccoy

11) wyons: Trade G1 R1 Wyons

12) NMcCoy: Move G1 Nmccoy Wartortle

13) wyons: Trade G1 B1 Wyons

14) NMcCoy: Build G1 Nmccoy

15) wyons: Discover Y1 Wyons G3 Headington

16) NMcCoy: Trade G1 Y1 Wartortle

17) wyons: Build Y2 Headington

18) NMcCoy: Move G1 Nmccoy Wartortle

19) wyons: Move Y1 Headington Wyons

20) NMcCoy: Build Y2 Wartortle

21) wyons: Build Y2 Headington

22) NMcCoy: Move Y2 Wartortle Nmccoy

23) wyons: Discover Y2 Headington G1 Oxford

24) NMcCoy: Build Y3 Wartortle

25) wyons: Build Y3 Headington

26) NMcCoy: Build G1 Wartortle

27) wyons: Build G2 Wyons

28) NMcCoy: Build G2 Nmccoy

29) wyons: Discover G2 Wyons B3 Oxfordshire

30) NMcCoy: Trade G2 R2 Nmccoy

31) wyons: Move B1 Wyons Headington

32) NMcCoy: Build G2 Nmccoy

33) wyons: Build G2 Wyons

34) NMcCoy: Trade G1 B1 Wartortle

35) wyons: Sacrifice G3 Wyons
Build G1 Oxfordshire
Build B2 Headington
Build G3 Wyons

36) NMcCoy: Move Y3 Wartortle Oxfordshire

37) wyons: Move Y3 Headington Wartortle

38) NMcCoy: Move R1 Wartortle Oxfordshire

39) wyons: Trade G2 R2 Wyons

40) NMcCoy: Attack G2N Oxfordshire

41) wyons: Sacrifice R2 Wyons
Attack G1S Wartortle
Attack B1S Wartortle

42) NMcCoy: Move G2 Oxfordshire Wartortle

43) wyons: Build B3 Wartortle

44) NMcCoy: Sacrifice R1 Oxfordshire
Attack B1N Wartortle

45) wyons: Trade B3 R3 Wartortle

46) NMcCoy: Sacrifice G2 Wartortle
Build B3 Wartortle
Build B3 Wartortle
Catastrophe Wartortle Blue

47) wyons: Build R1 Wyons

48) NMcCoy: Discover G2 Nmccoy R2 Charmeleon

49) wyons: Trade R1 B1 Wyons

50) NMcCoy: Build G1 Charmeleon

51) wyons: Build G2 Wyons

52) NMcCoy: Build G2 Nmccoy

53) wyons: Sacrifice G3 Wyons
Build G3 Wyons
Build Y1 Oxford
Build Y3 Headington

54) NMcCoy: Build R1 Nmccoy

55) wyons: Sacrifice G3 Wyons
Build B2 Wyons
Build B3 Headington
Build G3 Wyons

56) NMcCoy: Sacrifice Y2 Nmccoy
Move G1 Charmeleon Headington
Move G2 Charmeleon Headington

57) wyons: Sacrifice Y2 Headington
Move B3 Headington Oxford
Discover G2 Wyons R3 England

58) NMcCoy: Sacrifice G2 Nmccoy
Build G2 Nmccoy
Build Y2 Oxfordshire

59) wyons: Sacrifice G2 England
Build B3 Oxford
Build Y2 Headington

60) NMcCoy: Build G2 Headington
Catastrophe Headington Green

61) wyons: Sacrifice Y2 Oxford
Move Y1 Oxford Oxfordshire
Move Y1 Wyons Oxfordshire
Catastrophe Oxfordshire Yellow

62) NMcCoy: Discover G2 Nmccoy B2 Prinplup

63) wyons: Trade B3 Y3 Oxford

64) NMcCoy: Trade R1 Y1 Nmccoy

65) wyons: Build B1 Oxford

66) NMcCoy: Trade G3 B3 Nmccoy

67) wyons: Build Y1 Oxford

68) NMcCoy: Discover Y1 Nmccoy G2 Ivysaur

69) wyons: Trade B3 R3 Oxford

70) NMcCoy: Build G1 Prinplup

71) wyons: Build B3 Oxford

	wyons: well, you've had a months leeway- I am presuming you arent returning


9442)
Variants: "Hard time"
Started: 2007.9.28, Ended: 2007.10.1
Participants: zoltar (S), SpaceHobo (N)
Winner: zoltar



9444)
Variants: "Unrated, Hard time"
Started: 2007.9.28, Ended: 2007.10.4
Participants: zoltar (S), scottobear (N)
Winner: zoltar

1) scottobear: Homeworld G3 B2 Y3

2) zoltar: Homeworld R1 B2 G3

3) scottobear: Build Y1 Scottobear

4) zoltar: Build G1 Zoltar

5) scottobear: Discover Y1 Scottobear G1 Camera

6) zoltar: Trade G1 Y1 Zoltar

7) scottobear: Build Y1 Camera

8) zoltar: Build Y2 Zoltar

9) scottobear: Build Y2 Scottobear

10) zoltar: Discover Y1 Zoltar G3 Greengiant

11) scottobear: Trade Y2 R2 Scottobear

12) zoltar: Build Y2 Greengiant

13) scottobear: Discover Y1 Camera B3 Glove

14) zoltar: Move Y2 Greengiant Camera

15) scottobear: Build Y2 Camera

16) zoltar: Build Y3 Zoltar

17) scottobear: Move Y1 Camera Glove

18) zoltar: Build Y3 Greengiant

19) scottobear: Trade Y1 R1 Glove

20) zoltar: Move Y2 Camera Glove

21) scottobear: Trade Y1 G1 Glove

22) zoltar: Trade Y2 R2 Zoltar
	zoltar: Hey if it's ok with you for me to add Gort to the Zendo game (8639), then let Gort know in a comment in that game, as he doesn't want to join unless it's ok with everyone.
	zoltar: And I'm not sure what the best move was, but there must have been some way for you to get one of those two large yellow ships.  Or maybe trade for a red ship earlier so that I could only build a small yellow.
	scottobear: sure, it's ok with me!
	zoltar: Cool.  So tell Gort in the other game, and then he'll make his move.

23) scottobear: Build Y1 Camera

24) zoltar: Sacrifice R2 Zoltar
Attack R1 Glove
Attack G1 Glove

25) scottobear:
Move Y2 Camera Glove

26) zoltar: Attack Y2 Glove

27) scottobear: Build R1 Scottobear

28) zoltar: Build R2 Glove

29) scottobear: Move R1 Scottobear Camera

30) zoltar: Move Y2 Glove Camera

31) scottobear: Build R2 Camera

32) zoltar: Sacrifice R2 Glove
Attack R2 Camera
Attack R1 Camera

33) scottobear: Build Y1 Camera

34) zoltar: Sacrifice R2 Camera
Attack Y1 Camera
Attack Y1 Camera

35) scottobear: Move Y3 Scottobear Camera
Catastrophe Camera Y
	scottobear: aw, nuts!

36) zoltar: Sacrifice Y2 Glove
Move Y3 Greengiant Camera
Move Y3 Camera Scottobear

37) scottobear: Build R2 Scottobear
	zoltar: The camera and glove systems have been totally liberated by the Zoltarian Empire! 

38) zoltar: Sacrifice Y3 Zoltar
Move R1 Glove Camera
Move R1 Camera Scottobear
Move R1 Camera Scottobear
Catastrophe Scottobear R

	zoltar: Good game. Play again?


9446)
Started: 2007.9.29, Ended: 2008.1.4
Participants: zoltar (S), NMcCoy (W), Charlemagne (N), wyons (E)
Winner: wyons

1) Charlemagne: Homeworld G2 B1 Y3

2) wyons: Homeworld B3 Y2 G3
	Charlemagne: Hi All
Is this the version where we aim to eliminate the player on our left, or are we doing the good/evil thing?
	NMcCoy: As I understand it, SDG's default mode of play is "last man standing".
	wyons: agreed, and that there is no good/evil provision here..

3) zoltar: Homeworld R3 B1 G3

4) NMcCoy: Homeworld G3 B1 Y3

5) Charlemagne: Build Y1 Charlemagne

6) wyons: Build G1 Wyons

7) zoltar: Build G1 Zoltar
	Charlemagne: Well, I am good, in case you interested...:)
	Charlemagne: In an evil kind of way, you understand ....
	wyons: well, I see that your species is as confused as ours... 

8) NMcCoy: Build Y1 Nmccoy

9) Charlemagne: Trade Y1 G1 Charlemagne

10) wyons: Discover G1 Wyons B1 Mongoose
	NMcCoy: Don't mind me, I'm just chaotic neutral.
	Charlemagne: Chaotic neutral? Ah, that takes me back... the most popular alignment.....

11) zoltar: Trade G1 B1 Zoltar

12) NMcCoy: Trade Y1 G1 Nmccoy

13) Charlemagne: Build Y1 Charlemagne

14) wyons: Build G1 Wyons

15) zoltar: Build B2 Zoltar

16) NMcCoy: Discover G1 Nmccoy B2 Croconaw

17) Charlemagne: Trade Y3 B3 Charlemagne

18) wyons: Trade G3 B3 Wyons

19) zoltar: Trade B2 Y2 Zoltar

20) NMcCoy: Build Y1 Nmccoy

21) Charlemagne: Build B2 Charlemagne

22) wyons: Build B2 Wyons

23) zoltar: Build B2 Zoltar

24) NMcCoy: Trade Y3 B3 Nmccoy

25) Charlemagne: Discover B2 Charlemagne R3 Frogstar

26) wyons: Move B2 Wyons Mongoose

27) zoltar: Discover B1 Zoltar G2 Plastogalepsus

28) NMcCoy: Build Y1 Nmccoy

29) Charlemagne: Build B2 Charlemagne

30) wyons: Build B3 Wyons

31) zoltar: Sacrifice Y2 Zoltar
Move B1 Plastogalepsus Mongoose
Move B1 Mongoose Wyons
Catastrophe Wyons B

32) NMcCoy: Trade Y1 R1 Nmccoy

33) Charlemagne: Move B2 Charlemagne Frogstar
	wyons: yaargh! I feared that you might do that Zoltar- but it was a gamble I couldnt resist. I thought you wouldnt do it because it weakens you...  :)
	zoltar: It does weaken me a little, but it weakens you a lot, so it is worth a slight weakening; also, now that I'm more weak, (I was the strongest, getting the first 2-pip ship), now I'm less of a target, being 3 ships and several tempi behing the other two; the two strong players will be keeping each other in check while you and I try to catch up.

The alternative, not take responsibility and allow you to have two 3-pip ships and a commanding lead, might have just come back to haunt me, and I'd find myself in your position now, had I neglected to stop you when I did. 

If this were instead a 'sinister' variation, where you win when you kill the fleet to your left, I never would have made the move, as now Charlemagne would go for the kill and finish you off and win the game.  But in a standard game, it would be a waste of Charlemagne's resources to attack you, as it's of no benefit and you pose no threat; and again, I can catch up with some extra free moves as soon as the two leaders lock horns, I figure.  
	wyons: Yes I feared you might make an analysis along those lines- time will tell if the disadvantage to both of us is terminal.
	wyons: --- but you are forgiven in the interests of cosmic compassion. 

34) wyons: Build G1 Mongoose
	NMcCoy: Wait, I'm a leader now? Eep!
	zoltar: Not only that, but now you're the only one with a gun...
	NMcCoy: It's for self-defense! Really!
Actually, I mostly wanted another color to build. I didn't want to overload on yellow, or take the last small blue or green.

35) zoltar: Build G2 Zoltar

36) NMcCoy: Build G2 Croconaw

37) Charlemagne: Build G2 Charlemagne

38) wyons: Trade G1 Y1 Mongoose

39) zoltar: Trade G2 Y2 Zoltar

40) NMcCoy: Trade G1 Y1 Croconaw

41) Charlemagne: Move G1 Charlemagne Frogstar

42) wyons: Move B2 Mongoose Wyons

43) zoltar: Discover B2 Zoltar G2 Greenschlyme

44) NMcCoy: Build G1 Croconaw

45) Charlemagne: Trade B2 Y2 Frogstar
	wyons: looks like a busy anti-clockwise roundabout

46) wyons: Build G1 Mongoose

47) zoltar: Build G2 Zoltar

48) NMcCoy: Trade G2 Y2 Croconaw

49) Charlemagne: Discover G2 Charlemagne G3 Vortex1

50) wyons: Trade G1 R1 Mongoose

51) zoltar: Discover G2 Zoltar B2 Bloozebrotherz

52) NMcCoy: Trade B3 G3 Nmccoy

53) Charlemagne: Trade B3 G3 Charlemagne

54) wyons: Build R1 Mongoose

55) zoltar: Build G1 Zoltar

56) NMcCoy: Build G2 Croconaw

57) Charlemagne: Sacrifice G2 Vortex1
Build G2 Charlemagne
Build G3 Frogstar

58) wyons: Move R1 Mongoose Wyons

59) zoltar: Sacrifice Y2 Zoltar
Move G2 Bloozebrotherz Frogstar
Move G2 Frogstar Charlemagne
Catastrophe Charlemagne G

60) NMcCoy: Sacrifice Y2 Croconaw
Move G2 Croconaw Zoltar
Move G1 Croconaw Zoltar
Catastrophe Zoltar Green
	zoltar: Banzai!!!

61) Charlemagne: Move G3 Frogstar Charlemagne
	wyons: hey guys (N & W)... I think Zoltar might be a klingon!
	NMcCoy: Well, it's risky and you guys might gang up on me, but I feel compelled to secure the position of Not Last.

62) wyons: Build G1 Wyons
	Charlemagne: ouch - thanks for the action, Zoltar
and thanks for the not last McCoy.... I may even feel happier now 

63) NMcCoy: Build R1 Nmccoy
	zoltar: I figured it was in NMcCoy's best interest to not kill me but to take out the G3 in frogstar, before it could retreat to the Charlemagne homeworld.

That would have left NMcCoy in the best position by far, with me having weakened myself twice and both Charlemagne and Wyons without a 3-pip ship.

Now Charlemagne is stronger than I would have been after weakening myself -- I didn't think NMcCoy would choose the scenario where he's clearly in second place to one where he's clearly the alpha player, but he went against his own self-interest, which I didn't at all expect. 

And you should feel happier now, Charlemagne, as you're in a great position since NMcCoy allowed you to move your new Battlestar to your homeworld and retain the lead in the game.

64) Charlemagne: Trade B2 R2 Frogstar
	NMcCoy: Ack, I hadn't considered that. I'm still pretty new to the game ,especially multiplayer, and hadn't thought of what /everyone/'s next move might be.

65) wyons: Build B1 Wyons
	zoltar: Well, there is something to be said for eliminating any player at low cost, as now your winning chances increase from 1/4 to 1/3 if everything else were equal.

66) NMcCoy: Move R1 Nmccoy Croconaw

67) Charlemagne: Move R2 Frogstar Charlemagne

68) wyons: Discover B1 Wyons G3 Meercat

69) NMcCoy: Build R1 Nmccoy

70) Charlemagne: Build R2 Charlemagne

71) wyons: Build R2 Mongoose
	NMcCoy: Sorry to keep you waiting - life's been hectic lately.

72) NMcCoy: Move R1 Nmccoy Greenschlyme

73) Charlemagne: Move R2 Charlemagne Greenschlyme

74) wyons: Build R2 Wyons

75) NMcCoy: Sacrifice G3 Nmccoy
Build R2 Greenschlyme
Build R3 Croconaw
Build R3 Nmccoy

76) Charlemagne: Sacrifice G3 Charlemagne
Build R3 Charlemagne
Build R3 Greenschlyme
Build G1 Frogstar
Catastrophe Greenschlyme Red

77) wyons: Build G2 Mongoose

78) wyons: Move R2 Mongoose Greenschlyme



9441)
Started: 2007.9.29, Ended: 2008.2.22
Participants: MikeYarrum (S), Charlemagne (N)
Winner: MikeYarrum

1) Charlemagne: Homeworld G3 B2 Y3

2) MikeYarrum: Homeworld Y1 B2 G3
	Charlemagne: Hi Mike - enjoy this friendly little war :)
	MikeYarrum: Hey, I'm sure I will!

3) Charlemagne: Build Y1 Charlemagne

4) MikeYarrum: Build G1 Mikeyarrum

5) Charlemagne: Trade Y1 G1 Charlemagne

6) MikeYarrum: Trade G1 Y1 Mikeyarrum

7) Charlemagne: Discover Y3 Charlemagne G1 Fido

8) MikeYarrum: Discover Y1 Mikeyarrum B3 Torako

9) Charlemagne: Build Y1 Fido

10) MikeYarrum: Build G1 Mikeyarrum

11) Charlemagne: Build G2 Charlemagne

12) MikeYarrum: Move G1 Mikeyarrum Torako



9369)
Variants: "Hard time"
Started: 2007.10.1, Ended: 2007.10.4
Participants: Jesse (S), Visible (N)
Winner: Jesse

	Jesse: Have a good game.
	Jesse: Or not.


9468)
Started: 2007.10.2, Ended: 2008.2.22
Participants: kreiger (S), MikeYarrum (N)
Winner: kreiger

1) MikeYarrum: Homeworld R3 B2 G3
	kreiger: This is my first game on SDG, so sorry if i make any mistakes.
	MikeYarrum: No problem, it happens to everyone.

2) kreiger: Homeworld Y1 B3 G3

3) MikeYarrum: Build G1 Mikeyarrum
	kreiger: I'm sorry, i have to go to bed. I hope you're not disappointed if the game takes a long time.
	MikeYarrum: No problem - this site is designed for games where people can log on when they are free and play when they can. Games usually take quite a while.

4) kreiger: Build G1 Kreiger

	kreiger: Do you want me to terminate the game?
	Keith: I believe Mike is gone.  He has not been logged into SDG for 44+ days.
	MikeYarrum: Um... I'm back, if you want to continue.


9496)
Variants: "Unrated"
Started: 2007.10.3, Ended: 2008.2.22
Participants: Sunnan (S), kreiger (N)
Winner: Sunnan

1) kreiger: Homeworld Y3 B1 G3
	Sunnan: I'm sorry we called you a sopa the other day.

2) Sunnan: Homeworld B1 R2 G3

3) kreiger: Build G1 Kreiger

4) Sunnan: Build G1 Sunnan

5) kreiger: Discover G1 Kreiger B2 Slylandro

6) Sunnan: Trade G1 Y1 Sunnan

7) kreiger: Build G1 Slylandro

8) Sunnan: Build Y1 Sunnan

9) kreiger: Trade G1 Y1 Slylandro

10) Sunnan: Discover Y1 Sunnan G3 Alonzo

11) kreiger: Build Y2 Slylandro

12) Sunnan: Build Y2 Sunnan

13) kreiger: Move Y1 Slylandro Alonzo

14) Sunnan: Discover Y1 Sunnan B3 Veronica

15) kreiger: Discover Y2 Slylandro Y3 Orz

16) Sunnan: Sacrifice G3 Sunnan
Build Y2 Veronica
Build Y3 Sunnan
Pass

17) kreiger: Build G1 Slylandro

18) Sunnan: Trade Y1 G1 Veronica

19) kreiger: Trade G1 Y1 Slylandro

20) Sunnan: Discover Y2 Sunnan B3 Knuth

21) kreiger: Move Y2 Orz Slylandro

22) Sunnan: Build Y3 Veronica

23) kreiger: Trade Y1 R1 Slylandro

24) Sunnan: Discover Y1 Alonzo G2 Compose

25) kreiger: Build G1 Kreiger

26) Sunnan: Build Y1 Compose

27) kreiger: Move Y1 Alonzo Compose

28) Sunnan: Move Y1 Compose Kreiger

29) kreiger: Sacrifice R1 Slylandro
Attack Y1 Compose

30) Sunnan: Sacrifice Y2 Veronica
Move Y2 Knuth Compose
Move Y2 Compose Kreiger

31) kreiger: Build Y2 Slylandro

32) Sunnan: Trade Y3 B3 Veronica

33) kreiger: Sacrifice G3 Kreiger
Build G2 Slylandro
Build G2 Slylandro
Build G3 Kreiger

34) Sunnan: Sacrifice Y1 Kreiger
Move G1 Veronica Slylandro
Catastrophe Slylandro Green

35) kreiger: Trade G1 R1 Kreiger

36) Sunnan: Discover Y2 Kreiger R2 Earth

37) kreiger: Build G1 Kreiger

38) Sunnan: Trade Y3 G3 Sunnan

39) kreiger: Sacrifice Y2 Slylandro
Move G3 Kreiger Slylandro
Move G3 Slylandro Veronica

40) Sunnan: Sacrifice Y2 Earth
Move B3 Veronica Compose
Move B3 Compose Kreiger

41) kreiger: Sacrifice Y2 Slylandro
Move G3 Veronica Compose
Move G3 Compose Kreiger

42) Sunnan: Discover B3 Kreiger R2 Zebedee

43) kreiger: Discover Y1 Compose G3 Melnorme

44) Sunnan: Build G1 Sunnan

45) kreiger: Build Y1 Compose

46) Sunnan: Trade G1 R1 Sunnan

47) kreiger: Build Y2 Melnorme

48) Sunnan: Trade B3 Y3 Zebedee



9508)
Variants: "Hard time"
Started: 2007.10.3, Ended: 2007.11.15
Participants: Kermit (S), nycavri (N)
Winner: nycavri

1) nycavri: Homeworld G3 Y2 B3
	nycavri: TaGG.

2) Kermit: Homeworld Y1 B2 G3

3) nycavri: Build B1 Nycavri

4) Kermit: B G1 Kermit

5) nycavri: Build B1 Nycavri

6) Kermit: Build G1 Kermit

7) nycavri: Discover B1 Nycavri Y1 Jb

8) Kermit: Discover G1 Kermit B3 Beaudelaire

9) nycavri: Discover B1 Jb Y3 Db

10) Kermit: Trade G1 R1 Kermit

11) nycavri: Trade B1 Y1 Nycavri

12) Kermit: Move R1 Kermit Db

13) nycavri: Move B1 Db Kermit

14) Kermit: Sacrifice R1 Db
Attack B1 Kermit

15) nycavri: Build B1 Nycavri

16) Kermit: Build G1 Beaudelaire

17) nycavri: Trade B1 R1 Nycavri

18) Kermit: Trade G1 R1 Beaudelaire

19) nycavri: Build B1 Nycavri

20) Kermit: Build G1 Kermit

21) nycavri: Discover B1 Nycavri Y1 Indeep



9503)
Variants: "Unrated"
Started: 2007.10.4, Ended: 2008.2.22
Participants: Sunnan (S), kreiger (N)
Winner: Sunnan

1) kreiger: Homeworld R1 G3 B3
	Sunnan: What's with all the unrated games? Why can't we play normally?
	kreiger: I don't want to be rated until i stop sucking.

2) Sunnan: Homeworld Y1 B2 G3

3) kreiger: Build B1 Kreiger

4) Sunnan: Build G1 Sunnan

5) kreiger: Build B1 Kreiger

6) Sunnan: Discover G1 Sunnan G3 Orson
	Sunnan: I think that's unfair.

7) kreiger: Trade B1 Y1 Kreiger

8) Sunnan: Build G1 Sunnan

9) kreiger: Discover B1 Kreiger G2 Syreen

10) Sunnan: Discover G1 Sunnan Y3 Thistlesun

11) kreiger: Trade Y1 G1 Kreiger

12) Sunnan: Build G2 Sunnan

13) kreiger: Build G2 Kreiger

14) Sunnan: Trade G2 Y2 Sunnan

15) kreiger: Trade G1 Y1 Kreiger

16) Sunnan: Build G1 Sunnan

17) kreiger: Discover Y1 Kreiger G2 Arilou

18) Sunnan: Discover G1 Thistlesun Y2 Farrah

19) kreiger: Trade G2 Y2 Kreiger

20) Sunnan: Build G2 Orson

21) kreiger: Build B1 Syreen

22) Sunnan: Sacrifice G1 Orson
Build G1 Farrah

23) kreiger: Build Y1 Kreiger

24) Sunnan: Sacrifice G2 Orson
Build G2 Farrah
Build G3 Sunnan

25) kreiger: Build Y3 Arilou

26) Sunnan: Discover Y2 Sunnan B3 Laura

27) kreiger: Build Y3 Kreiger

28) Sunnan: Discover G1 Sunnan Y3 Johnny

29) kreiger: Move Y3 Kreiger Syreen

30) Sunnan: Trade G3 R3 Sunnan

31) kreiger: Trade B1 R1 Syreen

32) Sunnan: Sacrifice G2 Farrah
Build G2 Sunnan
Build G3 Farrah



9509)
Started: 2007.10.4, Ended: 2007.10.21
Participants: wyons (S), stoneaxe (N)
Winner: wyons

1) stoneaxe: Homeworld B2 Y3 G3

2) wyons: Homeworld R1 B3 G3
	stoneaxe: Thanks for playing again!  I need the practice!  I learned an important lesson last game though.

3) stoneaxe: Build G1 Stoneaxe
	wyons: no worries, I'm learning too!

4) wyons: Build G1 Wyons

5) stoneaxe: Trade G1 Y1 Stoneaxe

6) wyons: Trade G1 Y1 Wyons

7) stoneaxe: Discover G3 Stoneaxe Y1 Zpm

8) wyons: Build Y2 Wyons

9) stoneaxe: Build G1 Zpm

10) wyons: Trade Y1 R1 Wyons

11) stoneaxe: Build G1 Zpm

12) wyons: Build G1 Wyons

13) stoneaxe: Move G3 Zpm Stoneaxe

14) wyons: Build G2 Wyons

15) stoneaxe: Build G2 Stoneaxe

16) wyons: Discover G2 Wyons Y2 Live Alley

17) stoneaxe: Trade G2 R2 Stoneaxe

18) wyons: Build G2 Live

19) stoneaxe: Move G1 Zpm Live

20) wyons: Move G2 Live Zpm

21) stoneaxe: Build G2 Stoneaxe

22) wyons: Sacrifice R1 Wyons
Attack G1N Live

23) stoneaxe: Build G3 Zpm

24) wyons: Move G1 Live Zpm
Catastrophe Zpm Green

25) stoneaxe: Discover G2 Stoneaxe Y1 Kronos

26) wyons: Trade G1 R1 Wyons

27) stoneaxe: Build Y1 Stoneaxe

28) wyons: Build Y2 Wyons

29) stoneaxe: Trade Y1 B1 Stoneaxe

30) wyons: Build G1 Wyons

31) stoneaxe: Build G1 Stoneaxe

32) wyons: Move Y2 Wyons Live

33) stoneaxe: Move R2 Stoneaxe Kronos

34) wyons: Sacrifice G3 Wyons
Build Y1 Wyons
Build Y3 Live
Build Y3 Wyons

35) stoneaxe: Move G3 Stoneaxe Kronos

36) wyons: Sacrifice Y2 Live
Move Y3 Live Kronos
Move Y3 Kronos Stoneaxe

37) stoneaxe: Sacrifice B1 Stoneaxe
Trade G2 Y2 Kronos
	stoneaxe: I moved a little too hastily.  Probably doesn't matter, I sense my destruction is near.


38) wyons: Trade Y3 R3 Stoneaxe
	stoneaxe: There, that seems like a better defense.

39) stoneaxe: Sacrifice G3 Kronos
Build G1 Stoneaxe
Build R1 Kronos
Build R2 Kronos
	stoneaxe: well, maybe not.   Okay, now what....

40) wyons: Attack G1N Stoneaxe

41) stoneaxe: Build Y3 Stoneaxe

42) wyons: Attack Y3N Stoneaxe
	stoneaxe: You would just catastrophe me if I did that last move, but I think I need to do something drastic like that.
	stoneaxe: too late for it now I guess.

43) stoneaxe: Move R2 Kronos Live
	stoneaxe: I suppose the lesson  "never move the 3 pointer out of your HW" has to be learned somehow.  That will teach me.
	wyons: yes, I think that must be another one to me. But this match was tougher than the last and I am happy to play again if you wish... :)
	wyons: no, I spoke too soon! I thought i could sacrifice my r3 ship and take over your three little ones, but of course, once it is sacrificed there isnt a ship in the sytem so the red cant operate..so the fight continues!!

44) wyons: Sacrifice R3 Stoneaxe
Attack G1N Stoneaxe
Attack Y1N Stoneaxe
Attack R2N Live

	stoneaxe: Sounds good, that will give me more practice anyways!
	wyons: fine, just challenge me as you want. Thanks for the game. :)



9515)
Variants: "Unrated, Hard time"
Started: 2007.10.4, Ended: 2007.10.15
Participants: scottobear (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R1 G3

2) scottobear: Homeworld R2 B3 G3

3) zoltar: Build G1 Zoltar

4) scottobear: Build G1 Scottobear

5) zoltar: Trade G1 Y1 Zoltar

6) scottobear: Trade G3 Y3 Scottobear

7) zoltar: Build G1 Zoltar

8) scottobear: Build Y1 Scottobear

9) zoltar: Discover G1 Zoltar B2 Blueberry

10) scottobear: Build G1 Scottobear

11) zoltar: Build G2 Blueberry

12) scottobear: Discover G1 Scottobear B1 Thor

13) zoltar: Trade G1 R1 Blueberry

14) scottobear: Trade G1 R1 Thor

15) zoltar: Build R2 Blueberry

16) scottobear: Build G1 Scottobear

17) zoltar: Trade R2 Y2 Blueberry

18) scottobear: Move G1 Scottobear Thor

19) zoltar: Move Y2 Blueberry Thor

20) scottobear: Build R2 Thor

21) zoltar: Sacrifice R1 Blueberry
Attack R2 Thor

22) scottobear: Trade Y3 R3 Scottobear
	scottobear: eek!

23) zoltar: Sacrifice R2 Thor
Attack R1 Thor
Attack G1 Thor

24) scottobear: Move R3 Scottobear Thor

25) zoltar: Sacrifice G2 Blueberry
Build R1 Thor
Build R2 Thor
Catastrophe Thor R
	zoltar: Very, very dangerous, and though I'm ahead a couple of small pieces, it doesn't warrant taking your 3-pip defender out of your homeworld.  It's worth it to me, then, to sacrifice lots of stuff to blow up your battlestar, as we'll be left with a simplified position where I have a large defender and you don't.

Now either I'll build fast and invade and win outright, or else, in the best case for you, I'll only build a huge lead while you scramble to defend your homeworld and get another 3-pip ship.

In sum, it's a cardinal sin in homeworlds to leave your homeworld without a 3-pip ship, unless you are threatening checkmate and your opponent has to respond.  

26) scottobear: Build Y1 Scottobear
	scottobear: ah, I see... maybe for home defense, I should've tried a r3 planet!

27) zoltar: Build Y2 Thor

28) scottobear: Move Y1 Scottobear Thor
	scottobear: move y1 thor
	scottobear: move y1 scottobear thor

29) zoltar: Move Y2 Thor Scottobear

30) scottobear: Build Y2 Scottobear

31) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Zoltar
Build Y3 Scottobear
Catastrophe Scottobear Y

32) scottobear: Build G1 Scottobear

33) zoltar: Move Y2 Thor Scottobear
	zoltar: Attack!!!

34) scottobear: Discover Y1 Thor G2 Loki

35) zoltar: Trade Y3 R3 Zoltar

36) scottobear: Build G2 Scottobear

37) zoltar: Sacrifice Y3 Zoltar
Move Y2 Scottobear Thor
Move G1 Thor Scottobear
Move Y2 Thor Loki
Catastrophe Scottobear G



9497)
Variants: "Unrated"
Started: 2007.10.4, Ended: 2007.11.18
Participants: kreiger (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R1 G3

2) kreiger: Homeworld Y1 B2 G3

3) zoltar: Build G1 Zoltar

4) kreiger: Build G1 Kreiger

5) zoltar: Trade G1 Y1 Zoltar

6) kreiger: Build G1 Kreiger

7) zoltar: Build Y1 Zoltar

8) kreiger: Discover G1 Kreiger Y3 Shofixti

9) zoltar: Build Y2 Zoltar

10) kreiger: Discover G1 Kreiger Y3 Mycon

11) zoltar: Discover Y1 Zoltar G2 Gonorrhea

12) kreiger: Build G1 Kreiger

13) zoltar: Sacrifice G3 Zoltar
Build Y2 Gonorrhea
Build Y2 Gonorrhea
Build Y3 Zoltar

14) kreiger: Sacrifice G3 Kreiger
Build G2 Mycon
Build G2 Shofixti
Build G3 Kreiger

15) zoltar: Trade Y3 G3 Zoltar

16) kreiger: Trade G3 Y3 Kreiger

17) zoltar: Build G3 Zoltar

18) kreiger: Build G3 Kreiger

19) zoltar: Trade Y2 R2 Zoltar

20) kreiger: Trade G1 R1 Kreiger

21) zoltar: Move R2 Zoltar Gonorrhea

22) kreiger: Build G1 Kreiger

23) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build R1 Gonorrhea
Build G3 Zoltar

24) kreiger: Sacrifice Y3 Kreiger
Move G1 Mycon Gonorrhea
Move G1 Shofixti Gonorrhea
Move G2 Shofixti Gonorrhea
Catastrophe Gonorrhea Green

25) zoltar: Discover G3 Zoltar B2 Bluehoohoo

26) kreiger: Trade G1 B1 Kreiger

27) zoltar: Build G1 Bluehoohoo
	zoltar: Yikes!  

28) kreiger: Build G1 Mycon

29) zoltar: Trade G1 Y1 Bluehoohoo

30) kreiger: Sacrifice B1 Kreiger
Trade G2 Y2 Mycon

31) zoltar: Discover Y2 Zoltar B2 Blooze

32) kreiger: Move Y2 Mycon Blooze

33) zoltar: Sacrifice G3 Zoltar
Build Y2 Blooze
Build Y3 Bluehoohoo
Build Y3 Zoltar

34) kreiger: Build R1 Kreiger

35) zoltar: Trade Y3 R3 Bluehoohoo

36) kreiger: Sacrifice G1 Mycon
Build Y3 Blooze
Catastrophe Blooze Yellow

37) zoltar: Build Y2 Bluehoohoo

38) kreiger: Build G1 Kreiger

39) zoltar: Build Y2 Bluehoohoo

40) kreiger: Build R2 Kreiger

41) zoltar: Build R2 Bluehoohoo
	zoltar: Battlestations!

42) kreiger: Trade R2 Y2 Kreiger

43) zoltar: Discover Y2 Bluehoohoo B3 Bluesbrothers

44) kreiger: Discover R1 Kreiger B3 Spathi

45) zoltar: Trade Y3 G3 Zoltar

46) kreiger: Sacrifice G3 Kreiger
Build R2 Kreiger
Build R2 Kreiger
Build R3 Spathi

47) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Bluesbrothers
Build Y3 Bluehoohoo

48) kreiger: Build G1 Kreiger

49) zoltar: Move R2 Bluehoohoo Bluesbrothers

50) kreiger: Discover R2 Kreiger G3 Vux

51) zoltar: Build R3 Bluehoohoo

52) kreiger: Move Y2 Kreiger Spathi

53) zoltar: Sacrifice Y2 Bluehoohoo
Move R3 Bluehoohoo Vux
Discover Y1 Zoltar B2 Bloozebrotherz

54) kreiger: Sacrifice G1 Kreiger
Build Y2 Spathi

55) zoltar: Attack R2 Vux

	zoltar: Sure, and we can start another game when you get back, if you wish.


9495)
Started: 2007.10.4, Ended: 2007.11.5
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar

1) MikeYarrum: Homeworld R3 B2 G3

2) zoltar: Homeworld B1 R2 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) zoltar: Build G1 Zoltar



9462)
Variants: "Hard time"
Started: 2007.10.4, Ended: 2007.10.7
Participants: SpaceHobo (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R1 G3



9519)
Variants: "Hard time"
Started: 2007.10.6, Ended: 2007.10.9
Participants: SpaceHobo (S), Charlemagne (N)
Winner: Charlemagne

1) Charlemagne: Homeworld G2 B1 Y3

	Charlemagne: Enjoy


9518)
Started: 2007.10.6, Ended: 2007.10.12
Participants: Metroidfans (S), MikeYarrum (N)
Winner: Metroidfans



9466)
Variants: "Hard time"
Started: 2007.10.9, Ended: 2007.10.15
Participants: TwoShort (S), stoneaxe (N)
Winner: TwoShort

1) stoneaxe: Homeworld Y1 B3 G3

2) TwoShort: Homeworld B1 R2 G3

3) stoneaxe: Build G1 Stoneaxe

4) TwoShort: Build G1 Twoshort
	TwoShort: Howdy.

5) stoneaxe: Trade G1 Y1 Stoneaxe
	stoneaxe: Hi There.  I see you are the current highest ranking Homeworlds expert.  I'm a newbie, so feel free to impart some galactic wisdom!  Just getting into this game... there is a lot of strategy to it!!!

6) TwoShort: Trade G1 Y1 Twoshort

7) stoneaxe: Build G1 Stoneaxe
	TwoShort: Hmmm, there is definitely a lot of strategy to it; as far as galactic wisdom:  In the early game, don't get locked out of a color and don't let me get more 3 pointers than you.

8) TwoShort: Build Y2 Twoshort

9) stoneaxe: Build Y2 Stoneaxe

10) TwoShort: Build G1 Twoshort
	stoneaxe: I need to learn better when to sacrifice ships to do something else.
	TwoShort: Sacrifices are somewhat rare;  you might sacrifice a 1 or 2 if you need to use that color in different system and it's just worth the cost.  If you sacrifice a g3, you generally want to be growing a new 3 pointer as part of the action; the most common sacrifice is a g3 that lets you regrow the very same g3 (plus two other things)- we call that the factory.  Sacrificing a yellow 3 should mean you're going for the kill.

11) stoneaxe: Trade Y2 B2 Stoneaxe

12) TwoShort: Discover Y1 Twoshort G3 Grogar

13) stoneaxe: Build B1 Stoneaxe

14) TwoShort: Discover G1 Twoshort Y3 Yolonda

15) stoneaxe: Discover G1 Stoneaxe G2 Bespin

16) TwoShort: Build Y2 Grogar
	TwoShort: As long as I'm throwing around advice, that's a bit of an odd move; you won't really be able to do much with that ship or star in the future.  I do essentially that move from similar position, but the point is to suck up the g2 in order to affect who gets a chance to grow 3 point greens, and that doesn't currently apply.  It might have been better to move to a different color, so you'd have more options, or to move out a y or b, neither of which can grow further in your homeworld without danger.

17) stoneaxe: Move B1 Stoneaxe Bespin
	stoneaxe: I see.  Thank you!  Keep the advice coming!  

18) TwoShort: Discover Y2 Grogar B2 Bluestar

19) stoneaxe: Build Y2 Stoneaxe
	stoneaxe: I feel like if I MOVE pieces, then i'm not building pieces, so I'm probly falling behind.  Well, I should've planned it better.  

20) TwoShort: Sacrifice G3 Twoshort
Build Y3 Bluestar
Build Y3 Twoshort
Build G1 Yolonda
	TwoShort: I know the feeling, but I think the key realization for the early game is that it doesn't really matter too much if you fall behind in 1s & 2s, the key is the timing on building the 3 points.  So you want to have a safe place to build any color that's getting close, and to set up your opponent to build the last 2.  Alternatively, you can set up several places to safely build a particular color, so that you can sacrifice a g3 to build the last 2 pointer of that color yourself and immediately plow into building the 3s.

21) stoneaxe: Move Y2 Stoneaxe Bluestar
	TwoShort: Hmm, I'm not sure if you realize that lets me move my y2 in from BlueStar to blow up half your homeworld, or if you just don't se a better option (which there may not be)   In any case, you'll get away with it for a turn at least, because I think the grow more firmly ensures my victory :)

22) TwoShort: Trade Y3 R3 Bluestar
	stoneaxe: I did not realize that, but I see how now... you would've moved in and caused catastrophe on yellow.

23) stoneaxe: Trade B2 R2 Stoneaxe
	stoneaxe: Its probably dumb, but I will threaten to do the same thing in BlueStar.  Should I have done something else?  You will probably sac and still catastrophe Y in my homeworld, right?
	TwoShort: You didn't have great options, because I'm winning :)  You might have moved the y2 out to a new star, but I'm saying that knowing what I'm going to do this turn. It's easy to think an extra move ahead if you wait a turn to do it :)  I could still blow up half your homeworld, but it would be expensive, and I have no immediate threat vs the other half.  By flipping my y3 to red, you must spend next turn turning something red or lose, so I can take your y2 the turn after that, then you still won't be able to safely grow the y3, so I'll probably get that back too.

24) TwoShort: Attack Y2N Bluestar

25) stoneaxe: Build G2 Stoneaxe

26) TwoShort: Move G1 Yolonda Bluestar

27) stoneaxe: Sacrifice Y1 Stoneaxe
Move G1 Bespin Yolonda

28) TwoShort: Sacrifice Y3 Twoshort
Move G1 Yolonda Bluestar
Move G1 Bluestar Stoneaxe
Move G1 Bluestar Stoneaxe
Catastrophe Stoneaxe Green

29) stoneaxe: Build B1 Bespin

30) TwoShort: Move R3 Bluestar Stoneaxe

31) stoneaxe: Move G1 Yolonda Twoshort

32) TwoShort: Attack R2N Stoneaxe

	stoneaxe: I sense my destruction is near!  (didn't see any way out)  Good game!  I feel like I learned a lot in this game.  Also read some of your Archive games.  Thanks for all the tips.  Can you play another?
	TwoShort: Thanks for the game!
	TwoShort: I'll be happy to play another...


9517)
Variants: "Unrated, Hard time"
Started: 2007.10.9, Ended: 2007.11.4
Participants: stoneaxe (S), scottobear (N)
Winner: stoneaxe

1) scottobear: Homeworld R3 B2 G3

2) stoneaxe: Homeworld Y1 B3 G3

3) scottobear: Build G1 Scottobear

4) stoneaxe: Build G1 Stoneaxe

5) scottobear: Trade G1 Y1 Scottobear

6) stoneaxe: Build G1 Stoneaxe

7) scottobear: Discover Y1 Scottobear B1 Hoth

8) stoneaxe: Discover G1 Stoneaxe B2 Romulus

9) scottobear: Trade Y1 G1 Hoth

10) stoneaxe: Build G2 Romulus

11) scottobear: Build G2 Hoth

12) stoneaxe: Discover G1 Stoneaxe Y2 Vulcan
	stoneaxe: Hi again,  I'm new to this game, but this is about my 4th or 5th game.  I'm trying to learn more about it.  Good luck!

13) scottobear: Build G2 Scottobear

14) stoneaxe: Build G3 Vulcan

15) scottobear: Trade G3 Y3 Scottobear

16) stoneaxe: Build G3 Stoneaxe

17) scottobear: Trade G1 Y1 Hoth

18) stoneaxe: Trade G3 R3 Stoneaxe

19) scottobear: Build Y1 Hoth

20) stoneaxe: Trade G2 Y2 Romulus

21) scottobear: Trade Y1 G1 Hoth

22) stoneaxe: Build R1 Stoneaxe

23) scottobear: Trade G2 R2 Hoth

24) stoneaxe: Move G3 Vulcan Hoth

25) scottobear: Move R2 Hoth Romulus

26) stoneaxe: Sacrifice R1 Stoneaxe
Attack R2 Romulus

27) scottobear: Build G2 Hoth

28) stoneaxe: Sacrifice G3 Hoth
Build G2 Vulcan
Build G3 Romulus
Build G3 Stoneaxe
	stoneaxe: Sorry, I had to do it!  :-)  Its happened to me before too, the sacrifice of R1 in my homeworld let me attack in any other world where I control a big enough ship.
	scottobear: no worries! eek!

29) scottobear: Build Y1 Scottobear

30) stoneaxe: Move R2 Romulus Hoth
	scottobear: nice home fleet!

31) scottobear: Build Y2 Hoth

32) stoneaxe: Build Y3 Romulus
	stoneaxe: Thanks!  Yours is doing good too.  We have another good match going here.  Which of these games do you like the best?
	scottobear: I like homeworlds, but haven't mastered sacrifice strategy yet. martian chess is pretty sold. how about you?

33) scottobear: Build Y3 Scottobear
	stoneaxe: Funny, I told someone the same thing about sacrifices a couple weeks ago.  I like both games, but I currently think Homeworlds is more interesting.

34) stoneaxe: Attack Y2 Hoth

35) scottobear: Move G2 Hoth Romulus

36) stoneaxe: Sacrifice Y2 Romulus
Move G3 Romulus Hoth
Move Y3 Romulus Hoth

37) scottobear: Trade Y3 B3 Scottobear

38) stoneaxe: Sacrifice Y2 Hoth
Move Y3 Hoth Scottobear
Move G3 Hoth Scottobear

39) scottobear: Attack G3 Scottobear

40) stoneaxe: Sacrifice R3 Stoneaxe
Attack G3N Scottobear
Attack B3N Scottobear
Attack Y3N Scottobear

	scottobear: holy cow!!
	scottobear: good game!!


9557)
Variants: "Hard time"
Started: 2007.10.11, Ended: 2007.10.31
Participants: sordros (S), wyons (N)
Winner: wyons

1) wyons: Homeworld R3 B2 G3

2) sordros: Homeworld B1 Y2 G3
	wyons: Hi there! Enjoy the game.

3) wyons: Build G1 Wyons
	sordros: Hi there, have a good game!

4) sordros: Build G1 Sordros

5) wyons: Trade G1 Y1 Wyons

6) sordros: Discover G1 Sordros Y3 Flavega

7) wyons: Build G1 Wyons

8) sordros: Build G1 Sordros

9) wyons: Build G2 Wyons

10) sordros: Build G2 Flavega

11) wyons: Trade G1 R1 Wyons

12) sordros: Trade G1 Y1 Sordros

13) wyons: Discover G2 Wyons B1 Sa-fire

14) sordros: Build G1 Sordros

15) wyons: Build Y1 Wyons

16) sordros: Build Y2 Sordros

17) wyons: Build Y2 Wyons

18) sordros: Trade Y1 R1 Sordros

19) wyons: Trade Y1 B1 Wyons

20) sordros: Build Y1 Sordros

21) wyons: Build B2 Wyons

22) sordros: Trade Y2 B2 Sordros

23) wyons: Trade B2 G2 Wyons

24) sordros: Discover G1 Flavega Y2 Flava

25) wyons: Sacrifice G3 Wyons
Build G1 Wyons
Build G3 Wyons
Build G3 Sa-fire

26) sordros: Discover G1 Sordros Y3 Amarella

27) wyons: Sacrifice Y1 Wyons
Move G3 Sa-fire Flavega

28) sordros: Sacrifice G2 Flavega
Build G2 Amarella
Build Y1 Sordros

29) wyons: Sacrifice G3 Wyons
Build Y1 Wyons
Build G3 Sa-fire
Build Y3 Wyons

30) sordros: Sacrifice G2 Amarella
Build G2 Sordros
Build B2 Sordros

31) wyons: Sacrifice G2 Sa-fire
Build G2 Flavega
Build B3 Wyons

32) sordros: Move B2 Sordros Amarella

33) wyons: Sacrifice Y3 Wyons
Move Y1 Wyons Sa-fire
Move Y1 Sa-fire Flavega
Move Y1 Flavega Sordros
Catastrophe Sordros Yellow

34) sordros: Trade G2 Y2 Sordros

	sordros: Thanks for the game.


9556)
Started: 2007.10.12, Ended: 2007.10.29
Participants: Charlemagne (S), wyons (N)
Winner: wyons

1) wyons: Homeworld R3 B2 G3
	Charlemagne: Enjoy
	wyons: and U

2) Charlemagne: Homeworld B2 Y1 G3
	Charlemagne: Ooh you are experiementing with an aggressive one, then, good stuff

3) wyons: Build G1 Wyons
	wyons: actually, it is more about wanting greater freedom to create yellow and green (if one of these colours are the stars then that restricts building capacity)... erm, thats my current theory anyway though I am finding the tactics of this game very elusive.

4) Charlemagne: Build G1 Charlemagne
	Charlemagne: ok, I see.
I love the green expansion strategy idea which I am now shamelessly stealing from you :)

5) wyons: Trade G1 Y1 Wyons
	wyons: as I stole from others..

6) Charlemagne: Trade G1 Y1 Charlemagne

7) wyons: Build Y2 Wyons

8) Charlemagne: Build Y2 Charlemagne
	Charlemagne: nice

9) wyons: Build Y2 Wyons

10) Charlemagne: Discover Y2 Charlemagne G3 Blogspot

11) wyons: Trade Y1 R1 Wyons

12) Charlemagne: Sacrifice G3 Charlemagne
Build Y1 Blogspot
Build Y3 Blogspot
Build Y3 Charlemagne

13) wyons: Sacrifice Y2 Wyons
Discover Y2 Wyons R1 Ephemeral
Move Y2 Ephemeral Blogspot
Catastrophe Blogspot Yellow

14) Charlemagne: Trade Y3 G3 Charlemagne
	wyons: ooh no, I couldnt allow that.

15) wyons: Trade R1 Y1 Wyons
	Charlemagne: ah well, back to square one then

16) Charlemagne: Build Y2 Charlemagne
	wyons: similar except you have sente this time...

17) wyons: Build Y2 Wyons
	Charlemagne: hmmmmmm....
Oh, by the way, I won't be able to play games in person on Friday this week... diary filling up with work type things.... Ian x

18) Charlemagne: Discover Y2 Charlemagne G3 Puttyx

19) wyons: Discover Y2 Wyons G1 Emma-rald

20) Charlemagne: Discover Y1 Charlemagne R3 Grundon

21) wyons: Build Y2 Emma-rald

22) Charlemagne: Build Y3 Puttyx

23) wyons: Build Y3 Wyons

24) Charlemagne: Move Y2 Puttyx Emma-rald

25) wyons: Trade Y1 R1 Wyons

26) Charlemagne: Build G1 Charlemagne
	wyons: ooooh I like this game- so many different possibilities to try and hold...

27) wyons: Build G1 Wyons

28) Charlemagne: Move G1 Charlemagne Grundon

29) wyons: Move Y2 Emma-rald Grundon

30) Charlemagne: Build G2 Charlemagne

31) wyons: Attack G1S Grundon

32) Charlemagne: Trade G2 R2 Charlemagne

33) wyons: Sacrifice R1 Wyons
Attack Y2S Emma-rald

34) Charlemagne: Build G2 Charlemagne

35) wyons: Build G2 Grundon

36) Charlemagne: Build R1 Charlemagne

37) wyons: Sacrifice Y2 Emma-rald
Move G2 Grundon Charlemagne
Move G1 Grundon Charlemagne
Catastrophe Charlemagne Green

	wyons: --oh?! I didnt expect you to resign then... Thanks for the game and yes - see you on Friday.


9523)
Started: 2007.10.12, Ended: 2007.11.2
Participants: ts52 (S), sordros (N)
Winner: ts52

1) sordros: Homeworld B1 Y2 G3
	sordros: Hi there! Have fun

2) ts52: Homeworld Y1 B3 G3

3) sordros: Build G1 Sordros

4) ts52: Build G1 Ts52
	ts52: Thanks. You too.

5) sordros: Discover G1 Sordros Y3 Amarega

6) ts52: Trade G1 B1 Ts52

7) sordros: Build G1 Sordros

8) ts52: Build B1 Ts52

9) sordros: Trade G1 Y1 Sordros

10) ts52: Discover B1 Ts52 G2 Oscar

11) sordros: Build G1 Sordros

12) ts52: Build B2 Oscar

13) sordros: Build Y1 Sordros

14) ts52: Trade B2 Y2 Oscar

15) sordros: Trade Y1 R1 Sordros

16) ts52: Trade B1 R1 Ts52

17) sordros: Trade G1 B1 Sordros

18) ts52: Build B2 Oscar

19) sordros: Build B2 Sordros

20) ts52: Move B2 Oscar Amarega

21) sordros: Discover B2 Sordros G3 Duamarega

22) ts52: Trade B2 R2 Amarega

23) sordros: Discover G1 Amarega B2 Blua

24) ts52: Build G1 Ts52

25) sordros: Sacrifice G3 Sordros
Build B2 Duamarega
Build B3 Sordros
Build B3 Duamarega

26) ts52: Sacrifice Y2 Oscar
Move B1 Oscar Amarega
Move B1 Amarega Sordros
Catastrophe Sordros Blue

27) sordros: Sacrifice B2 Duamarega
Trade B3 R3 Duamarega
Trade B2 Y2 Duamarega

28) ts52: Move R2 Amarega Sordros

	sordros: GG


9467)
Variants: "Hard time"
Started: 2007.10.13, Ended: 2008.1.22
Participants: stoneaxe (S), jeep (N)
Winner: stoneaxe

1) jeep: Homeworld R1 B2 G3

2) stoneaxe: Homeworld Y2 B3 G3

3) jeep: Build G1 Jeep
	stoneaxe: Hello and thanks for playing.  I'm pretty new to this game, so feel free to comment on my moves! 
	jeep: *laugh* with as badly as I've been sucking lately, you should get a second opinion on anything I tell you.  ;)

Thanks for playing.  I just found out that I'm heading to Brazil in a couple weeks.  There might be a slight lag then.

4) stoneaxe: Build G1 Stoneaxe

5) jeep: Trade G1 Y1 Jeep

6) stoneaxe: Trade G1 Y1 Stoneaxe

7) jeep: Build G1 Jeep

8) stoneaxe: Build G1 Stoneaxe

9) jeep: Trade G3 Y3 Jeep

10) stoneaxe: Build Y1 Stoneaxe

11) jeep: Build Y2 Jeep

12) stoneaxe: Discover Y1 Stoneaxe G1 Gruno

13) jeep: Build G2 Jeep

14) stoneaxe: Sacrifice G3 Stoneaxe
Build Y2 Gruno
Build Y3 Gruno
Build Y3 Stoneaxe

15) jeep: Sacrifice Y2 Jeep
Discover Y1 Jeep B3 Temp
Move Y1 Temp Gruno
Catastrophe Gruno Yellow

16) stoneaxe: Discover Y1 Stoneaxe G1 Tiz

17) jeep: Discover G2 Jeep Y3 Submarine

18) stoneaxe: Build G2 Stoneaxe

19) jeep: Build G2 Jeep

20) stoneaxe: Trade G1 B1 Stoneaxe

21) jeep: Trade G2 Y2 Jeep
	stoneaxe: Deep strategy in this game....  Homeworlds is such a cool game!

22) stoneaxe: Build B1 Stoneaxe

23) jeep: Trade Y2 R2 Jeep

24) stoneaxe: Trade B1 R1 Stoneaxe

25) jeep: Build Y1 Jeep

26) stoneaxe: Build B1 Stoneaxe

27) jeep: Trade Y1 B1 Jeep

28) stoneaxe: Trade Y3 G3 Stoneaxe

29) jeep: Build B2 Jeep

30) stoneaxe: Move B1 Stoneaxe Tiz

31) jeep: Move B1 Jeep Submarine

32) stoneaxe: Trade B1 R1 Tiz

33) jeep: Move R2 Jeep Submarine
	jeep: The stash image is gone for me... do you see it?
	stoneaxe: The image is gone for me too.  I noticed it disappeared after my last move (the trade).
	stoneaxe: feel free to make a move and then undo it to see if that fixes it...  I could try to undo my last one too.  Just a thought...
	jeep: I'll be traveling tomorrow.  Please don't unfreeze it tomorrow.  ;)  When I get to my destination on Monday, I'll see about setting up the game so I know the stash contents without having to figure it out repeatedly.

34) stoneaxe: Build R2 Tiz

35) jeep: Build Y1 Jeep
	stoneaxe: Welcome back!  Glad to see that our game is fixed.

36) stoneaxe: Build R2 Stoneaxe

37) jeep: Build R3 Submarine

38) stoneaxe: Build R3 Stoneaxe

39) jeep: Sacrifice Y3 Jeep
Move R3 Submarine Jeep
Move R2 Submarine Tiz
Move R2 Tiz Stoneaxe
Catastrophe Stoneaxe Red

40) stoneaxe: Sacrifice B1 Stoneaxe
Trade R1 G1 Tiz

41) jeep: Trade B2 Y2 Jeep
	stoneaxe: Hmmm.  I think I might have moved too fast there, but we'll see how this goes.

42) stoneaxe: Move R2 Tiz Submarine

	jeep: Gah!  Sorry about that.  Life got in the way.  Sick child.  :(
	stoneaxe: No sweat.  I know how it is.  Hope everyone is feeling better.  I'm sure we'll play again sometime; take care.


9549)
Variants: "Hard time"
Started: 2007.10.15, Ended: 2007.11.15
Participants: stoneaxe (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B3 R1 G3

2) stoneaxe: Homeworld Y3 B2 G3

3) TwoShort: Build G1 Twoshort

4) stoneaxe: Build G1 Stoneaxe

5) TwoShort: Trade G1 Y1 Twoshort

6) stoneaxe: Trade G1 Y1 Stoneaxe

7) TwoShort: Build G1 Twoshort

8) stoneaxe: Build G1 Stoneaxe

9) TwoShort: Trade G1 B1 Twoshort

10) stoneaxe: Build G1 Stoneaxe

11) TwoShort: Build G1 Twoshort

12) stoneaxe: Trade G1 R1 Stoneaxe

13) TwoShort: Build G1 Twoshort

14) stoneaxe: Trade G1 B1 Stoneaxe

15) TwoShort: Discover G1 Twoshort Y2 Yellonia
	stoneaxe: This move was very stressful!  There are so many options to consider, and all of them have their advantages... Not sure how to choose, so I just went with this one!
	TwoShort: Well, you avoided taking the g2 bait :)

16) stoneaxe: Discover Y1 Stoneaxe G1 Grax

17) TwoShort: Build G2 Yellonia

18) stoneaxe: Build R1 Stoneaxe

19) TwoShort: Discover B1 Twoshort G2 Grogar

20) stoneaxe: Build R2 Stoneaxe

21) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Yellonia

22) stoneaxe: Move R2 Stoneaxe Grax

23) TwoShort: Trade G2 R2 Twoshort

24) stoneaxe: Sacrifice G3 Stoneaxe
Build R2 Grax
Build R3 Stoneaxe
Build R3 Grax

25) TwoShort: Move R2 Twoshort Yellonia

26) stoneaxe: Discover R2 Grax R3 Rez

27) TwoShort: Discover G2 Yellonia B1 Bluzon

28) stoneaxe: Move R3 Stoneaxe Bluzon

29) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Yellonia

30) stoneaxe: Attack G2N Bluzon

31) TwoShort: Discover G3 Yellonia Y1 Yolonda

32) stoneaxe: Move R3 Grax Stoneaxe

33) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build B2 Grogar
Build Y2 Twoshort

34) stoneaxe: Move Y1 Grax Rez

35) TwoShort: Sacrifice Y2 Twoshort
Move R2 Yellonia Grax
Move R2 Grax Stoneaxe
Catastrophe Stoneaxe Red

36) stoneaxe: Move Y1 Rez Bluzon

37) TwoShort: Trade B2 R2 Grogar

38) stoneaxe: Move R3 Bluzon Stoneaxe

39) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build B2 Grogar
Build G3 Twoshort

40) stoneaxe: Move G2 Bluzon Stoneaxe

41) TwoShort: Move Y1 Twoshort Grogar
	stoneaxe: Wow, G3's are really powerful when all the green is gone!!!  Sac and re-build!!!
	TwoShort: We call that "the Factory", and yeah, it's pretty huge. 

42) stoneaxe: Sacrifice G2 Stoneaxe
Build Y2 Bluzon
Build Y3 Bluzon

43) TwoShort: Move Y1 Grogar Bluzon
Catastrophe Bluzon Yellow
	stoneaxe: That was a terrible move, but what else was I supposed to do...
	TwoShort: Not that :)

44) stoneaxe: Move B1 Stoneaxe Grax
	TwoShort: But seriously, you're pretty doomed in any case.  The Factory domination is pretty unstoppable.  Unless you could force me to let you get your own g3, I can just keep sucking up all the pieces, leaving you with fewer and fewer options.

45) TwoShort: Move G3 Yellonia Grax

46) stoneaxe: Build B1 Grax

47) TwoShort: Sacrifice R2 Grogar
Attack R2 Grax
Attack B1 Grax
	stoneaxe: Yeah, I should just give up on this one and resign.

48) stoneaxe: Build B2 Grax

49) TwoShort: Sacrifice R2 Grax
Attack B2S Grax
Attack B1S Grax

50) stoneaxe: Pass

51) TwoShort: Sacrifice G3 Twoshort
Build B3 Grogar
Build G2 Yellonia
Build G3 Twoshort

52) stoneaxe: Sacrifice R2 Rez
Pass
Pass

53) TwoShort: Trade B3 R3 Grogar
	stoneaxe: Aha, take that!

54) stoneaxe: Pass
	TwoShort: Ack!  Now what!

55) TwoShort: Sacrifice Y2 Twoshort
Move G3 Grax Stoneaxe
Move G3 Yolonda Stoneaxe

56) stoneaxe: Attack G3N Stoneaxe

57) TwoShort: Sacrifice R3 Grogar
Attack G3S Stoneaxe
Attack R3S Stoneaxe
Pass
	TwoShort: Thanks for the game!



9608)
Variants: "Unrated, Hard time"
Started: 2007.10.17, Ended: 2007.11.26
Participants: stoneaxe (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B3 R1 G3

2) stoneaxe: Homeworld Y3 B2 G3

3) mneme: Build G1 Mneme

4) stoneaxe: Build G1 Stoneaxe

5) mneme: Trade G1 Y1 Mneme

6) stoneaxe: Trade G1 R1 Stoneaxe

7) mneme: Build Y1 Mneme

8) stoneaxe: Build R1 Stoneaxe

9) mneme: Build Y1 Mneme

10) stoneaxe: Build R2 Stoneaxe

11) mneme: Discover Y1 Mneme G2 Apple

12) stoneaxe: Discover R1 Stoneaxe G1 Zed

13) mneme: Build Y2 Mneme
	stoneaxe: Was that a fatal error?  I know I need to build some yellow, but i seemed to be playing right into your 'sac G3 and build all the rest of yellow trap', so I went with this move instead.
	mneme: Not sure -- we're both playing serious freeze strategies, which keeps things interesting.

14) stoneaxe: Trade R2 Y2 Stoneaxe

15) mneme: Trade Y2 R2 Mneme

16) stoneaxe: Build R2 Stoneaxe

17) mneme: Move R2 Mneme Apple

18) stoneaxe: Move R2 Stoneaxe Zed

19) mneme: Build Y2 Apple

20) stoneaxe: Sacrifice G3 Stoneaxe
Build R2 Zed
Build R3 Stoneaxe
Build R3 Stoneaxe

21) mneme: Sacrifice Y2 Apple
Move R2 Apple Zed
Move R2 Zed Stoneaxe
Catastrophe Stoneaxe R

22) stoneaxe: Trade Y2 G2 Stoneaxe
	mneme: that...might have been a mistake.


23) mneme: Build Y2 Mneme

24) stoneaxe: Build G1 Stoneaxe

25) mneme: Discover Y2 Mneme G2 Gambit
	stoneaxe: Crap.  Where did my 3 pointer go!?!  :-)  Nice catastrophe.

26) stoneaxe: Discover G1 Stoneaxe G1 Gamma

27) mneme: Discover Y1 Apple G3 Heart
	stoneaxe: I need to get the G3 back to have any glimmer of hope.  This might give you 2 3's, but at least I get one 3.  Or, if you sac and go for all the yellows, then I get some choices... I think.  
	mneme: on the contrary, my best dodge is to keep you out of 3s.  

28) stoneaxe: Sacrifice G1 Gamma
Build G1 Stoneaxe
	mneme: I'm pretty sure I've failed to leave you any options here.  Not accidentally.

29) mneme: Sacrifice G3 Mneme
Build Y2 Gambit
Build Y2 Heart
Build Y3 Mneme

30) stoneaxe: Trade G1 B1 Stoneaxe

31) mneme: Build Y3 Gambit
	stoneaxe: Hmmm no Yellow for me.  Thats spells certain defeat, doesn't it.

32) stoneaxe: Build B1 Stoneaxe
	mneme: that was pretty much the case when you got both of your larges blown, but yeah, now I get to monopolize y -and- churn out larges -and- be the only one who can move ships around or make catastrophes.  Not so good for you.

33) mneme: Trade Y3 G3 Mneme

34) stoneaxe: Move B1 Stoneaxe Zed

35) mneme: Build Y3 Mneme

36) stoneaxe: Build B1 Zed

37) mneme: Trade Y3 R3 Mneme

38) stoneaxe: Build B2 Stoneaxe

39) mneme: Sacrifice Y2 Gambit
Move Y3 Gambit Zed
Move Y3 Zed Stoneaxe

40) stoneaxe: Build B2 Stoneaxe
	mneme: It's time...

41) mneme: Sacrifice R3 Mneme
Attack B2 Stoneaxe
Attack G2 Stoneaxe
Attack B2 Stoneaxe
Catastrophe Stoneaxe B
	mneme: good game!



9602)
Variants: "Hard time"
Started: 2007.10.17, Ended: 2008.3.11
Participants: jeep (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) jeep: Homeworld G1 B3 Y3

3) TwoShort: Build G1 Twoshort
	jeep: You're probably too good for me to make this work, but it's been working out for me irl.

4) jeep: Build Y1 Jeep

5) TwoShort: Build G1 Twoshort

6) jeep: Build Y1 Jeep
	jeep: D'oh.  I should have had my homeworld be b1 g3...  I  should have remembered that.

7) TwoShort: Trade G1 Y1 Twoshort

8) jeep: Trade Y1 G1 Jeep

9) TwoShort: Discover G1 Twoshort Y2 Yellonia

10) jeep: Move G1 Jeep Yellonia

11) TwoShort: Build G2 Twoshort

12) jeep: Trade Y1 R1 Jeep
	jeep: Gah, what was I thinking.

13) TwoShort: Build G2 Yellonia

14) jeep: Build R1 Jeep

15) TwoShort: Sacrifice G3 Twoshort
Build G2 Yellonia
Build G3 Twoshort
Build G3 Twoshort
Catastrophe Yellonia Green

16) jeep: Build R2 Jeep

17) TwoShort: Trade G2 R2 Twoshort

18) jeep: Trade R2 Y2 Jeep

19) TwoShort: Trade G3 Y3 Twoshort

20) jeep: Build R2 Jeep

21) TwoShort: Discover R2 Twoshort G2 Grogar

22) jeep: Trade R2 G2 Jeep

23) TwoShort: Build G1 Twoshort

24) jeep: Discover R1 Jeep G2 Thumb

25) TwoShort: Discover G1 Twoshort Y2 Yolonda

26) jeep: Build R2 Thumb

27) TwoShort: Build G1 Twoshort

28) jeep: Build R2 Jeep

29) TwoShort: Move Y3 Twoshort Thumb

30) jeep: Build R3 Thumb

31) TwoShort: Sacrifice R2 Grogar
Attack R3S Thumb
Attack R2S Thumb

32) jeep: Sacrifice G2 Jeep
Build R2 Thumb
Build R3 Jeep
Catastrophe Thumb Red

33) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Twoshort
Build G3 Twoshort

34) jeep: Move R3 Jeep Yolonda
	jeep: I'm nervously and anxiously waiting to see what I missed there...
	TwoShort: You missed the possibility that I screwed up when I moved into thumb in the first place :)

Out of curiosity, do you see the stash image above?  It's not showing up for me.

35) TwoShort: Sacrifice G2 Twoshort
Build G2 Yolonda
Build G3 Twoshort
	jeep: Nope, stash is gone. :(
	TwoShort: The stash is back...

36) jeep: Attack G2N Yolonda
	jeep: Thanks, I haven't been checking.

37) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Yolonda
Build Y1 Thumb
Catastrophe Yolonda Green

38) jeep: Trade R2 G2 Jeep

39) TwoShort: Sacrifice Y3 Thumb
Move Y1 Twoshort Thumb
Move Y1 Thumb Jeep
Move Y1 Thumb Jeep
Catastrophe Jeep Yellow

40) jeep: Trade G2 Y2 Jeep

41) TwoShort: Trade G3 Y3 Twoshort
	jeep: ouch

42) jeep: Move R3 Yolonda Jeep

43) TwoShort: Build G1 Twoshort

44) jeep: Trade R3 G3 Jeep

45) TwoShort: Discover G1 Twoshort Y2 Yolonda

46) jeep: Build Y1 Jeep

47) TwoShort: Sacrifice Y3 Twoshort
Move G1 Twoshort Yolonda
Move G1 Yolonda Jeep
Move G1 Yolonda Jeep
Catastrophe Jeep Green

48) jeep: Trade Y1 G1 Jeep

49) TwoShort: Build G1 Twoshort

50) jeep: Build G1 Jeep

51) TwoShort: Trade G3 Y3 Twoshort

52) jeep: Build G2 Jeep

53) TwoShort: Build G2 Twoshort

54) jeep: Discover G1 Jeep Y2 Mover

55) TwoShort: Trade G2 B2 Twoshort

56) jeep: Build G2 Mover

57) TwoShort: Build B1 Twoshort

58) jeep: Sacrifice G2 Jeep
Build R1 Jeep
Build R2 Jeep

59) TwoShort: Build G2 Twoshort

60) jeep: Build G2 Jeep

61) TwoShort: Discover B2 Twoshort R2 Rosie

62) jeep: Trade R1 B1 Jeep

	TwoShort: Good game.
	TwoShort: Hmm, seems to be a problem here...
	jeep: I didn't even notice you had a blue in you home.  I SHOULD have moved into Rosie instead.
	jeep: It's tempting to try to build a homeworld... see if it works.  ;)
	TwoShort: Heck, you could blow up my greens and see if you win :)

	jeep: *laugh*  That would be funny...
	Aaron: Sorry about that.


9625)
Variants: "Hard time"
Started: 2007.10.18, Ended: 2007.11.13
Participants: kawotan (S), stoneaxe (N)
Winner: stoneaxe

1) stoneaxe: Homeworld R3 B2 G3

2) kawotan: Homeworld G2 B1 Y3
	stoneaxe: Hi, thanks for playing!  Good luck!

3) stoneaxe: Build G1 Stoneaxe
	kawotan: Hi, this is my first game of Homeworlds.
Enjoy game !

	stoneaxe: I'm new to it too.  Its a fascinating game though.  Deep strategy. 

4) kawotan: Build Y1 Kawotan

5) stoneaxe: Trade G1 Y1 Stoneaxe

6) kawotan: Trade Y3 R3 Kawotan

7) stoneaxe: Build G1 Stoneaxe

8) kawotan: Build Y1 Kawotan

9) stoneaxe: Build Y2 Stoneaxe

10) kawotan: Build R1 Kawotan

11) stoneaxe: Build Y2 Stoneaxe

12) kawotan: Build Y2 Kawotan

13) stoneaxe: Discover Y2 Stoneaxe G1 Jupiter

14) kawotan: Discover Y1 Kawotan R3 Saturn

15) stoneaxe: Sacrifice G3 Stoneaxe
Build Y3 Stoneaxe
Build Y3 Jupiter
Build G1 Stoneaxe

16) kawotan: Build Y3 Kawotan

17) stoneaxe: Move Y3 Jupiter Saturn

18) kawotan: Discover Y3 Kawotan B3 Pluto

19) stoneaxe: Move Y1 Stoneaxe Jupiter

20) kawotan: Trade Y3 G3 Pluto

21) stoneaxe: Build Y3 Stoneaxe

22) kawotan: Move R3 Kawotan Saturn

23) stoneaxe: Attack R3S Saturn

24) kawotan: Build G2 Pluto
	stoneaxe: Sorry, I had to do it!   Because I had a 3-pointer and the Star is red (giving access to attack technology), I was able to attack your R3 and take over your ship!

25) stoneaxe: Move R3 Saturn Kawotan

26) kawotan: Build R1 Kawotan

27) stoneaxe: Attack Y2S Kawotan

28) kawotan: Sacrifice G3 Pluto
Build R1 Kawotan
Build R2 Kawotan
Build R2 Kawotan

29) stoneaxe: Attack R2S Kawotan

30) kawotan: Attack Y2 Kawotan

31) stoneaxe: Sacrifice R2 Kawotan
Attack R2S Kawotan
Attack Y2S Kawotan

32) kawotan: Sacrifice G2 Pluto
Build R2 Kawotan
Build R2 Kawotan


33) stoneaxe: Move R3 Kawotan Saturn
Catastrophe Kawotan R

34) kawotan: Trade Y1 R1 Kawotan

35) stoneaxe: Sacrifice R3 Saturn
Attack R1S Kawotan
Attack Y1S Saturn
Pass
	stoneaxe: Good game!



9534)
Started: 2007.10.18, Ended: 2007.12.4
Participants: MikeYarrum (S), taniss99 (N)
Winner: MikeYarrum



9566)
Started: 2007.10.19, Ended: 2008.2.22
Participants: liamjake (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3



9668)
Variants: "Hard time"
Started: 2007.10.24, Ended: 2007.11.29
Participants: TwoShort (S), wyons (N)
Winner: wyons

1) wyons: Homeworld R1 B2 G3

2) TwoShort: Homeworld R3 B1 G3
	wyons: great, glad you wanted to play. I am relatively new at this game and I see you have a good track record, so I am hoping you might be willing to teach me a few tricks along the way.  :)

3) wyons: Build G1 Wyons

4) TwoShort: Build G1 Twoshort

5) wyons: Trade G1 Y1 Wyons

6) TwoShort: Trade G1 B1 Twoshort

7) wyons: Build Y1 Wyons
	TwoShort: I'm pretty much always happy to play.  As far as teaching tricks, I can give you general strategic advice (like "Get more 3 points than the other guy").  Specific tactics I often notice only after they come up, and I presumably wouldn't want to tell you exactly what I'm up to anyway.  But I'm happy to teach by example and expound after the fact as though I knew what I was doing all along :)

8) TwoShort: Build B1 Twoshort
	wyons: sounds good to me and TTFN

9) wyons: Build Y1 Wyons

10) TwoShort: Build G1 Twoshort

11) wyons: Discover Y1 Wyons G3 Headington

12) TwoShort: Trade G3 Y3 Twoshort

13) wyons: Build Y2 Wyons

14) TwoShort: Build Y2 Twoshort

15) wyons: Build Y2 Headington

16) TwoShort: Discover Y2 Twoshort B2 Bluonia

17) wyons: Trade Y2 B2 Wyons

18) TwoShort: Discover B1 Twoshort G2 Grogar

19) wyons: Discover B2 Wyons G3 Oxford

20) TwoShort: Build B3 Grogar

21) wyons: Build B3 Oxford

22) TwoShort: Trade B3 R3 Grogar

23) wyons: Trade B2 R2 Oxford

24) TwoShort: Build Y2 Twoshort

25) wyons: Move Y1 Wyons Oxford

26) TwoShort: Trade Y2 G2 Twoshort

27) wyons: Discover Y2 Headington R2 Uk

28) TwoShort: Sacrifice G2 Twoshort
Build Y2 Twoshort
Build Y3 Bluonia

29) wyons: Build Y3 Headington

30) TwoShort: Move Y2 Twoshort Grogar

31) wyons: Sacrifice Y2 Uk
Move Y1 Headington Bluonia
Move Y1 Oxford Bluonia
Catastrophe Bluonia Yellow

32) TwoShort: Build B2 Grogar

33) wyons: Build Y1 Wyons

34) TwoShort: Discover B1 Grogar Y3 Yolonda

35) wyons: Move Y1 Wyons Oxford

36) TwoShort: Build B2 Grogar

37) wyons: Build B3 Oxford

38) TwoShort: Sacrifice Y2 Grogar
Move B2 Grogar Oxford
Move B2 Grogar Oxford
Catastrophe Oxford Blue

39) wyons: Build Y1 Headington

40) TwoShort: Build Y2 Twoshort

41) wyons: Build Y2 Wyons
	wyons: nice line you've got on the blues..
	TwoShort: Yeah, but I can't grab them very fast, and if I try, you'll grab all the yellow.  I am feeling a lot better now that the 3-point balance is even...
	wyons: indeed,  yellow grabbing was my plan... :)

42) TwoShort: Move Y2 Twoshort Grogar

43) wyons: Trade Y2 B2 Wyons

44) TwoShort: Move R3 Grogar Oxford

45) wyons: Move R2 Oxford Grogar

46) TwoShort: Attack Y1N Oxford

47) wyons: Attack Y2S Grogar

48) TwoShort: Sacrifice Y1 Oxford
Move R3 Oxford Grogar

49) wyons: Sacrifice Y2 Grogar
Move R2 Grogar Yolonda
Move B2 Wyons Headington

50) TwoShort: Move B1 Yolonda Grogar

51) wyons: Build G1 Wyons

52) TwoShort: Build R1 Grogar

53) wyons: Trade Y1 R1 Headington

54) TwoShort: Trade R3 G3 Grogar

55) wyons: Build R2 Headington

56) TwoShort: Build G1 Twoshort

57) wyons: Move G1 Wyons Yolonda

58) TwoShort: Discover B1 Twoshort Y2 Yoyo

59) wyons: Build G2 Wyons

60) TwoShort: Move G1 Twoshort Yoyo

61) wyons: Sacrifice G3 Wyons
Build G2 Yolonda
Build G3 Wyons
Build Y1 Headington

62) TwoShort: Sacrifice G3 Grogar
Build G3 Yoyo
Build B2 Yoyo
Build B3 Grogar

63) wyons: Sacrifice G3 Wyons
Build G3 Wyons
Build B3 Headington
Build Y1 Wyons

64) TwoShort: Sacrifice G3 Yoyo
Build Y2 Twoshort
Build R2 Grogar
Build G3 Yoyo

65) wyons: Sacrifice G3 Wyons
Build R3 Yolonda
Build G3 Wyons
Build Y2 Wyons

66) TwoShort: Trade G3 R3 Yoyo

67) wyons: Trade B3 G3 Headington
	wyons: whooey  - this is getting a bit hot.

68) TwoShort: Move B1 Yoyo Headington
	TwoShort: It is a tad complex :)

69) wyons: Attack B1S Headington

70) TwoShort: Sacrifice B2 Yoyo
Trade Y3 B3 Twoshort
Trade B3 Y3 Grogar

71) wyons: Sacrifice Y2 Wyons
Discover G3 Headington Y2 Solsys
Move B1 Headington Solsys

72) TwoShort: Discover R1 Grogar B3 Blueit
	wyons: hmmm, nice move, I hadnt seen that line before.

73) wyons: Sacrifice G3 Wyons
Build G3 Wyons
Build B2 Solsys
Build B3 Headington

74) TwoShort: Move R3 Yoyo Twoshort

75) wyons: Move B3 Headington Yoyo

	TwoShort: For the record, I was meaning to resign anyway: you have crushed me.  
	TwoShort: Actually, the ZPIP challenge is over - you're the third person to beat me since I made it.

But in any case- Great game!  I'll be wanting a rematch sometime soon.
	wyons: thank you for your honour in admitting that. Did someone else win the icehouse peices??
	wyons: looks like our messages crossed, and - yes I am up for a rematch


9674)
Variants: "Hard time"
Started: 2007.10.24, Ended: 2007.11.8
Participants: Keith (S), stoneaxe (N)
Winner: Keith

1) stoneaxe: Homeworld R1 B3 G3
	Keith: Hello stoneaxe.  Decided to bypass Wyons I see.
	stoneaxe: He already has another Ladder challenge going.  Plus, he and I are already playing a non-ladder game. Is it unorthodox to bypass someone in the Ladder?  If so I was not aware!  Well in any case, thanks for accepting.  Good luck!

2) Keith: Homeworld Y2 B3 G3
	Keith: Trying to move up more than one rung is fair game and happens often. It lets you pick the opponent you think you have the best chance against. 

Wyons happens to be my favorite opponent in Grim Reaper.

3) stoneaxe: Build G1 Stoneaxe
	stoneaxe: I've been thinking of trying a game of Grim Reaper soon!  Sounds fun.

4) Keith: Build G1 Keith

5) stoneaxe: Trade G1 Y1 Stoneaxe

6) Keith: Trade G1 Y1 Keith

7) stoneaxe: Build G1 Stoneaxe

8) Keith: Build G1 Keith

9) stoneaxe: Build G1 Stoneaxe

10) Keith: Build G2 Keith

11) stoneaxe: Discover G1 Stoneaxe Y2 Rez

12) Keith: Trade G1 Y1 Keith

13) stoneaxe: Trade G1 B1 Stoneaxe

14) Keith: Discover Y1 Keith G1 Midori

15) stoneaxe: Build B1 Stoneaxe

16) Keith: Sacrifice G3 Keith
Build Y2 Midori
Build Y3 Midori
Build Y3 Keith
	Keith: It has been a while since I played and I am a little rusty... still my gut says this will work in my favor.

17) stoneaxe: Build Y3 Stoneaxe
	stoneaxe: Yeah, that was a nice sac!

18) Keith: Trade Y1 B1 Keith

19) stoneaxe: Build G1 Rez

20) Keith: Sacrifice Y3 Midori
Move B1 Keith Midori
Move B1 Midori Rez
Move B1 Rez Stoneaxe
Catastrophe Stoneaxe Blue
	Keith: I feel a little bit bad about doing this but since it is a ladder game I will play hardball.

21) stoneaxe: Discover Y3 Stoneaxe B3 Pez

22) Keith: Build G2 Keith
	stoneaxe: Thats okay.  It will make my revenge all that much sweeter!!!  Mwaaahaha.

23) stoneaxe: Move G1 Rez Stoneaxe

24) Keith: Sacrifice Y2 Midori
Move G2 Keith Stoneaxe
Move G2 Keith Stoneaxe
Catastrophe Stoneaxe Green
	Keith: I must say I admire your willingness to jump into the deep end by choosing highly rated opponents.

25) stoneaxe: Build G1 Rez
	stoneaxe: Thanks!  I wasn't really trying to choose the highest rated opponents, just searching for some games.  The ladder seems like a fun little mini-tournament.  Plus, I'm learning a ton by watching all you experts tear me to shreds.   :)  This is a really cool game.  Its a lot like Chess somehow...

26) Keith: Trade Y3 R3 Keith
	Keith: I am glad to learn it is not discouraging you.  We should try an unrated game.  Then we can ask questions and discuss the game since learning, rather than winning, will be the goal.

My favorite games at SDG are Cannon, Grim Reaper and HomeWorlds.

27) stoneaxe: Move Y3 Pez Stoneaxe
	stoneaxe: An unrated game after this one sounds great!

28) Keith: Move Y1 Midori Keith

29) stoneaxe: Build G1 Rez

30) Keith: Trade Y1 R1 Keith
	Keith: Good move.  I can't swap for green and my growth is temporarily suspended.

31) stoneaxe: Discover G1 Rez B3 Bluegrass
	stoneaxe: I'm trying to make a game out of this, but with half my homeworld gone... its not going to be pretty.

32) Keith: Trade R3 G3 Keith

33) stoneaxe: Trade G1 Y1 Bluegrass
	Keith: Well you have blue powers back now.

34) Keith: Build R1 Keith

35) stoneaxe: Sacrifice G1 Rez
Build Y1 Bluegrass

36) Keith: Build R2 Keith

37) stoneaxe: Move G1 Rez Stoneaxe

38) Keith: Trade R2 G2 Keith

39) stoneaxe: Trade Y1 B1 Bluegrass

40) Keith: Build R2 Keith

41) stoneaxe: Move B1 Bluegrass Stoneaxe

42) Keith: Move R1 Keith Stoneaxe

43) stoneaxe: Attack R1S Stoneaxe

44) Keith: Move R1 Keith Stoneaxe
	stoneaxe: Thanks.  I think...
	Keith: Well then have another.

45) stoneaxe: Move R1 Stoneaxe Bluegrass
	Keith: :)

46) Keith: Sacrifice G2 Keith
Build R2 Stoneaxe
Build R2 Stoneaxe
Catastrophe Stoneaxe Red
	stoneaxe: I think I figured out your generous plan, but I'm not sure how I will stop it once you get more ships.
	Keith: That is the reason I delayed sending in reds till I had a green 2-ship.  Otherwise you could move them out before I had enough.
	Keith: I have at this point watched some of your moves in all of your current games.  Your learning very quickly.  I expect you will be climbing the challenge ladder soon.



9632)
Started: 2007.10.28, Ended: 2007.11.18
Participants: zoltar (S), liamjake (N)
Winner: zoltar



9551)
Variants: "Unrated, Hard time"
Started: 2007.10.28, Ended: 2007.11.9
Participants: zoltar (S), scottobear (N)
Winner: zoltar

1) scottobear: Homeworld R3 B2 G3

2) zoltar: Homeworld B1 R2 G3

3) scottobear: Build G1 Scottobear

4) zoltar: Build G1 Zoltar

5) scottobear: Trade G1 Y1 Scottobear

6) zoltar: Trade G1 Y1 Zoltar

7) scottobear: Build G1 Scottobear

8) zoltar: Build G1 Zoltar

9) scottobear: Discover G1 Scottobear B1 Monkey

10) zoltar: Discover G1 Zoltar B3 Kingkong

11) scottobear: Build Y1 Scottobear
	scottobear: copycat! :D


12) zoltar: Build Y2 Zoltar

13) scottobear: Move Y1 Scottobear Monkey
	zoltar: I got the first 2-pip ship.  Ha-ha-ha-HA-ha!
	scottobear: Argh! neener neener!

14) zoltar: Trade Y1 B1 Zoltar

15) scottobear: Trade Y1 R1 Monkey

16) zoltar: Build B2 Zoltar

17) scottobear: Build Y1 Scottobear
	scottobear: ohhhh.. ok, I see what you did there. 

18) zoltar: Discover B2 Zoltar Y3 Yabbadabbadoo

19) scottobear: Build R1 Monkey

20) zoltar: Sacrifice G3 Zoltar
Build B2 Yabbadabbadoo
Build B3 Yabbadabbadoo
Build B3 Zoltar

21) scottobear: Move Y1 Scottobear Monkey
	scottobear: my, what a lovely blue fleet you have there!

22) zoltar: Sacrifice B2 Yabbadabbadoo
Trade B3 G3 Yabbadabbadoo
Trade B3 G3 Zoltar
	zoltar: My fleet has decided to go environmentalist...

23) scottobear: Move R1 Monkey Kingkong

24) zoltar: Sacrifice G3 Zoltar
Build B2 Yabbadabbadoo
Build B3 Yabbadabbadoo
Build B3 Zoltar
	zoltar: You may have all the little ships, if you wish -- I have no time to worry about scout ships...

25) scottobear: Attack G1 Kingkong

26) zoltar: Sacrifice B2 Yabbadabbadoo
Trade B3 R3 Yabbadabbadoo
Trade B3 G3 Zoltar
	scottobear: yikes.. 

27) scottobear: Trade R1 G1 Monkey
	zoltar: Well if you're gonna play THAT way, I'm gettin' me a red ship!
	scottobear: sure, sure.. I see how it is!!
	scottobear: hmm.. I'm trying to sacrifice my red in monkey to build 2 greens, but I can't seem to do it.. am I missing a rules point?
	zoltar: Yes, two rules points apply here.

First, you can only sacrifice red to attack, not to build; if you wish to build, you would have to sacrifice a green.

Second, you can only sacrifice a 1-pip ship for 1 action, and a 2-pip ship for two actions, and a 3-pip ship for 3 actions.  

Hence, you'd need to sacrifice a green 2-pip ship to be able to have 2 grows.  (In my 2-step 'factory' I've created, I sac my G3 for a B2, and 2 B3s, then sac the B2 to convert one of the B3s to a G3 and the other to either a Y3 or R3; the net result after two moves is an extra 3-pip ship built by my 'factory'.) 

Hope that answers your rule question.
	scottobear: ohh... I was only totally confused there! thanks

28) zoltar: Sacrifice G3 Zoltar
Build B2 Yabbadabbadoo
Build B3 Yabbadabbadoo
Build B3 Zoltar
	scottobear: a lot of observers, eh?

29) scottobear: Build G2 Kingkong

30) zoltar: Sacrifice B2 Yabbadabbadoo
Trade B3 Y3 Yabbadabbadoo
Trade B3 G3 Zoltar
	scottobear: I've got a sinking feeling here. 

31) scottobear: Trade G1 Y1 Kingkong
	zoltar: But you have 8 ships and I have only 7... heh
	scottobear: trade ya!

32) zoltar: Sacrifice G3 Yabbadabbadoo
Build B2 Yabbadabbadoo
Build B3 Yabbadabbadoo
Build B3 Zoltar

33) scottobear: Build Y2 Kingkong

34) zoltar: Sacrifice B2 Yabbadabbadoo
Trade B3 G3 Yabbadabbadoo
Trade B3 Y3 Zoltar

35) scottobear: Build Y2 Scottobear
	scottobear: ok... is this right? 
sacrifice y1 monkey
move y1 kingkong zoltar
move y2 kingkong zoltar
catastrophe zoltar yellow
	zoltar: No. You would have to sac a y2 to get 2 moves; sacking a y1 only gets you one move.  Hence, if you had a y2 in monkey instead of a y1, you could sack it and move the two yellows from KingKong to Zoltar and catastrophe the yellows.  However, the only y2 you can sac is in KingKong, which is one of the yellows you wanted to move; so the action isn't possible.  

You could sac a g1 to build another y2 in KingKong, so that on your next turn you could sack it and send the other two yellows in KingKong to Zoltar.  But -- seeing you were about to do that, I'd simply move my y2 from Zoltar to KingKong and catastrophe the yellows in KingKong first, so that my Y3 would remain and all of your KingKong yellows would go away, which would favor me (from the position as it is now, I'd lose a y2; you'd lose a Y2, a Y1, and a G1).  

So your best move might be to build a y2 in Scottobear and threaten to sack it next turn.  This forces me to scatter my yellow ships.

36) zoltar: Sacrifice Y2 Zoltar
Discover Y3 Yabbadabbadoo R1 Redrover
Discover B2 Yabbadabbadoo Y2 Mellowyellow
	scottobear: thanks.. I appreciate the help!!

37) scottobear: Trade Y2 B2 Kingkong

38) zoltar: Sacrifice G3 Yabbadabbadoo
Build B3 Mellowyellow
Build Y2 Redrover
Build R1 Yabbadabbadoo

39) scottobear: Build B3 Kingkong
	zoltar: Hey, you're not spos'ta get any blue ships!

40) zoltar: Sacrifice Y2 Redrover
Move R1 Yabbadabbadoo Monkey
Move B1 Zoltar Kingkong
Catastrophe Kingkong B
	scottobear: Whoops!
	zoltar: That'll teach ya to muscle in on my blue monopoly!

41) scottobear: Trade G1 R1 Monkey

42) zoltar: Attack R1 Monkey
	scottobear: sakes! all a guy wants is a matched set!

43) scottobear: Trade Y2 R2 Scottobear
	zoltar: munch munch munch
	zoltar: Screw the blue! The red monopoly is mine! Awl Mine! 
[Insert Evil Overlord Sinister Laughter Here]
	scottobear: you're hopped up on red! you zoltarian fiend!

44) zoltar: Sacrifice Y3 Zoltar
Move Y3 Redrover Scottobear
Move R1 Monkey Scottobear
Move R1 Monkey Scottobear
Catastrophe Scottobear R

45) scottobear: Trade Y1 R1 Scottobear
	zoltar: Banzai!!!
	scottobear: hey, wha???

I had no idea you could blow up planets!

46) zoltar: Sacrifice R3 Yabbadabbadoo
Attack R1 Scottobear
Attack G3 Scottobear
Pass
	zoltar: Yep, and indeed, while it was checkmate in 5 moves the other way, I think, now I have checkmate immediately.

What I was going to do was move my B2 to a small star (in reach of your homeworld, then trade the B3 for a G3, sac the G3 for two blues and a red, then sack a Y3 and send all three reds in and blow up your red star, and the next move sac the other Y3 and blow up your blue star.  That's called the "doomsday machine".  

But you saved yourself all the fancy fireworks by letting me do this cheap maneuver instead, knocking out the red star and slipping a 3-pip ship into your homeworld with my third movement so I can take all your pieces before you could get a red ship to defend.  Play again?
	zoltar: Yep, and indeed, while it was checkmate in 5 moves the other way, I think, now I have checkmate immediately.

What I was going to do was move my B2 to a small star (in reach of your homeworld, then trade the B3 for a G3, sac the G3 for two blues and a red, then sack a Y3 and send all three reds in and blow up your red star, and the next move sac the other Y3 and blow up your blue star.  That's called the "doomsday machine".  

But you saved yourself all the fancy fireworks by letting me do this cheap maneuver instead, knocking out the red star and slipping a 3-pip ship into your homeworld with my third movement so I can take all your pieces before you could get a red ship to defend.  Play again?



9540)
Started: 2007.10.28, Ended: 2007.11.18
Participants: kreiger (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3



9590)
Variants: "Hard time"
Started: 2007.10.29, Ended: 2007.10.29
Participants: TwoShort (S), Personman (N)
Winner: TwoShort

	Personman: I'm terribly sorry, but starting this game was a complete accident, due to a misclick.


9718)
Started: 2007.10.31, Ended: 2007.11.6
Participants: sordros (S), kreiger (N)
Winner: sordros



9746)
Started: 2007.10.31, Ended: 2007.12.17
Participants: sordros (S), antihero (N)
Winner: sordros

1) antihero: Homeworld B1 Y2 G3

2) sordros: Homeworld R3 B2 G3

3) antihero: Build G1 Antihero

4) sordros: Build G1 Sordros

5) antihero: Discover G1 Antihero Y3 Bigyella

6) sordros: Trade G1 Y1 Sordros

7) antihero: Build G1 Antihero

8) sordros: Build Y1 Sordros

9) antihero: Trade G1 Y1 Antihero

10) sordros: Build Y2 Sordros

11) antihero: Build Y2 Antihero

12) sordros: Discover Y1 Sordros G1 Amareto

13) antihero: Discover Y1 Antihero G3 Krez

14) sordros: Build Y3 Amareto

15) antihero: Build Y3 Krez

16) sordros: Trade Y1 R1 Sordros

17) antihero: Trade Y2 R2 Antihero

18) sordros: Build Y1 Sordros

19) antihero: Build R1 Antihero

20) sordros: Trade Y1 B1 Sordros

21) antihero: Move R1 Antihero Krez

22) sordros: Build B1 Sordros

23) antihero: Build R1 Antihero

24) sordros: Move B1 Sordros Amareto

25) antihero: Build R2 Krez

26) sordros: Trade Y3 R3 Amareto

27) antihero: Discover R1 Krez G1 Arnn

28) sordros: Build G2 Sordros

29) antihero: Sacrifice Y3 Krez
Move R1 Arnn Sordros
Move R2 Krez Amareto
Move R2 Amareto Sordros
Catastrophe Sordros R

30) sordros: Sacrifice G3 Sordros
Build B2 Amareto
Build B2 Amareto
Build B3 Sordros
	antihero: I may regret that, but let's see what happens. :)

31) antihero: Move G1 Bigyella Sordros

32) sordros: Trade B3 R3 Sordros

33) antihero: Build G1 Sordros
	sordros: Hi Antihero, are you still up to see what happens?
	antihero: hey sordros. Sorry. Everytime I look at this game I try to figure out what I can do and then can't see anything good. So I'll just make a move and let you finish this off. :)

34) sordros: Attack G1 Sordros

35) antihero: Build G2 Sordros
Catastrophe Sordros G

36) sordros: Trade R3 G3 Sordros

37) antihero: Trade G3 B3 Antihero

38) sordros: Build B3 Sordros



9745)
Started: 2007.10.31, Ended: 2007.11.28
Participants: kreiger (S), DaDRK (N)
Winner: DaDRK

1) DaDRK: Homeworld B3 G2 R3
	DaDRK: good luck



9748)
Variants: "Hard time"
Started: 2007.10.31, Ended: 2008.3.2
Participants: antihero (S), wyons (N)
Winner: wyons

1) wyons: Homeworld R1 B2 G3

2) antihero: Homeworld Y1 B3 G3

3) wyons: Build G1 Wyons
	wyons: Hi there- enjoy the game!

4) antihero: Build G1 Antihero

5) wyons: Trade G1 Y1 Wyons
	antihero: thanks, you too!

6) antihero: Build G1 Antihero

7) wyons: Build G1 Wyons

8) antihero: Discover G1 Antihero Y2 Crater

9) wyons: Build G2 Wyons

10) antihero: Build G2 Crater

11) wyons: Sacrifice G2 Wyons
Build Y1 Wyons
Build Y2 Wyons

12) antihero: Build G2 Antihero

13) wyons: Discover Y2 Wyons G3 Solsys

14) antihero: Trade G3 Y3 Antihero

15) wyons: Sacrifice G3 Wyons
Build Y2 Solsys
Build Y3 Wyons
Build G2 Wyons

16) antihero: Discover G1 Crater Y3 Pha

17) wyons: Trade G1 R1 Wyons

18) antihero: Trade G1 R1 Antihero

19) wyons: Move R1 Wyons Solsys

20) antihero: Build R2 Antihero

21) wyons: Build R2 Solsys

22) antihero: Move R2 Antihero Crater

23) wyons: Discover R2 Solsys G1 Milkyway

24) antihero: Build G1 Antihero

25) wyons: Build G3 Wyons

26) antihero: Build G3 Crater

27) wyons: Move Y3 Wyons Solsys

28) antihero: Move G2 Crater Pha

29) wyons: Sacrifice G3 Wyons
Build R2 Milkyway
Build R3 Solsys
Build G3 Wyons

30) antihero: Sacrifice G2 Pha
Build R3 Antihero
Build R3 Crater

31) wyons: Sacrifice Y2 Solsys
Move R1 Solsys Crater
Move R2 Milkyway Crater
Catastrophe Crater Red

32) antihero: Build G2 Pha
	antihero: the stash won't show up for me... Aaron, I'd really appreciate it if you'd freeze the clock (or email me or something) when you un-page-admin the game, otherwise I might time out on this one.
	antihero: seems to have fixed itself. hmm, now to figure out how not to lose. :)

33) wyons: Discover G2 Wyons B3 Andromclust

34) antihero: Discover Y3 Antihero B2 Bb

35) wyons: Build Y2 Wyons

36) antihero: Trade G1 B1 Antihero

37) wyons: Move Y3 Solsys Milkyway

38) antihero: Move B1 Antihero Crater

39) wyons: Move Y1 Wyons Solsys
	wyons: yes, thank you for the game of GR- just challenge me if you want another (I am always up for it) :)

40) antihero: Sacrifice G1 Pha
Build B1 Crater

41) wyons: Build G1 Wyons

42) antihero: Build B1 Crater

43) wyons: Sacrifice G3 Wyons
Build G1 Andromclust
Build G3 Wyons
Build R1 Milkyway

44) antihero: Sacrifice G2 Pha
Build Y3 Bb
Build G2 Antihero

45) wyons: Sacrifice Y2 Wyons
Move Y1 Solsys Bb
Move Y2 Solsys Bb
Catastrophe Bb Yellow

46) antihero: Discover B1 Crater Y3 Aplace
	wyons: arch! need to think about that more, sorry.

47) wyons: Sacrifice G3 Wyons
Build G3 Wyons
Build Y1 Milkyway
Build Y2 Wyons
	wyons: back to where I stated

48) antihero: Trade G2 Y2 Antihero

49) wyons: Sacrifice G3 Wyons
Build G2 Andromclust
Build G3 Wyons
Build Y3 Wyons

50) antihero: Build B2 Crater

51) wyons: Move Y3 Wyons Aplace

52) antihero: Discover Y2 Antihero R2 Rockin'

53) wyons: Sacrifice R1 Milkyway
Attack B1S Aplace

54) antihero: Move B1 Crater Aplace

55) wyons: Sacrifice G3 Wyons
Build R1 Milkyway
Build R2 Solsys
Build G3 Wyons

	wyons: I am inclined to agree with you- however there are so many twists and turns in this beautiful game that I am fending off any complacency!
	antihero: Ack, I'm so bad about that sometimes. Sorry. This comes of only checking SDG every 2 days or so. My bad.

You were going to win anyways, but it's too bad we didn't get to play it out.


9545)
Variants: "Hard time"
Started: 2007.11.1, Ended: 2007.11.16
Participants: wmreed (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3
	wmreed: Hello!  I'm pretty much a newb at Homeworlds, but I love it.  Do you mind if I ask you questions as we play about strategies, or why you made certain moves?
	Jesse: Not at all.  Have a good game.

2) wmreed: Homeworld B2 G1 Y3

3) Jesse: Build G1 Jesse
	wmreed: You, too!  okay, first question:  when sacrificing a piece, does that sacrificed piece become available for use ON that turn?  In other words, if I sacrifice a G3 piece, can I build that same G3 piece as one of those builds?  Is there any difference between the face-to-face implementation and the SDG implementation of that rule?
	Jesse: Yes, the sacrificed piece becomes immediately available.  The G3 sacrifice you mention is a particularly common example known as the factory.  If you sacrifice the last ship in a star system, that system's marker likewise becomes immediately available.  SDG's implementation of this is correct.

4) wmreed: Build Y1 Wmreed

5) Jesse: Trade G1 Y1 Jesse

6) wmreed: Trade Y1 R1 Wmreed

7) Jesse: Build G1 Jesse

8) wmreed: Build Y1 Wmreed

9) Jesse: Trade G1 R1 Jesse

10) wmreed: Build R2 Wmreed

11) Jesse: Build G1 Jesse

12) wmreed: Build R2 Wmreed

13) Jesse: Discover G1 Jesse B2 Blarg

14) wmreed: Trade R2 G2 Wmreed

15) Jesse: Move R1 Jesse Blarg

16) wmreed: Build G1 Wmreed

17) Jesse: Build G2 Blarg

18) wmreed: Discover G1 Wmreed B3 Logan

19) Jesse: Trade G2 Y2 Blarg

20) wmreed: Build G2 Logan

21) Jesse: Build G2 Jesse

22) wmreed: Trade G1 Y1 Logan

23) Jesse: Build Y2 Blarg
	wmreed: Is it correct that your g1 in blarg is two hops from my homeworld?  You could get it there by sacrificing a y2, correct?
	Jesse: Yes.

24) wmreed: Move R1 Wmreed Logan

25) Jesse: Discover Y2 Blarg G3 Grr

26) wmreed: Build R2 Logan

27) Jesse: Sacrifice G3 Jesse
Build Y2 Grr
Build Y3 Blarg
Build Y3 Jesse

28) wmreed: Discover R2 Logan B2 Jessica

29) Jesse: Sacrifice Y2 Blarg
Move Y2 Grr Wmreed
Move Y2 Grr Wmreed
Catastrophe Wmreed Y

30) wmreed: Sacrifice G2 Logan
Build R2 Logan
Build R3 Wmreed

31) Jesse: Build R3 Blarg

32) wmreed: Trade R2 Y2 Wmreed

33) Jesse: Discover R3 Blarg G3 Sniffle

34) wmreed: Discover R1 Logan Y2 Ballard

35) Jesse: Build G1 Jesse

36) wmreed: Sacrifice G2 Wmreed
Build R2 Ballard
Build R3 Logan

37) Jesse: Build G2 Blarg

38) wmreed: Trade R3 Y3 Logan

39) Jesse: Build R3 Blarg

40) wmreed: Sacrifice Y3 Logan
Move R2 Jessica Jesse
Move R2 Ballard Jesse
Move R1 Ballard Jesse
Catastrophe Jesse Red

41) Jesse: Build G2 Blarg

42) wmreed: Build Y1 Wmreed
	Jesse: I think you will find that, although you did knock out half my homeworld, without being able to follow it up to finish the job quickly, you've hurt yourself more than you have me.

43) Jesse: Build G3 Jesse
	wmreed: Yes, I was woried about that, but I can't yet see more than one or two moves ahead in Homeworlds.  Not seeing where else to go, I decided to try and press.
	Jesse: It's often difficult to see very far ahead in the middle game, even for me, but I know it's especially difficult for new players.  It is also typical for new players to try to attack when they don't know what else to do.  Attacking is difficult and costly in Homeworlds, though.  It is usually better to build your forces.  Have your red pieces poised?  Start building blue so you can hit me with an unstoppable 1-2 smash.  Have a numerical superiority in red?  See if you can cause a red catastrophe or force a sacrifice that reduces me to one red ship, while you retain a few, and try to increase that advantage.  If I have more large ships, you should probably be trying to get more of them yourself, rather than sacrificing them.

44) wmreed: Trade Y1 B1 Wmreed

45) Jesse: Sacrifice Y3 Blarg
Move Y3 Jesse Wmreed
Move G3 Jesse Wmreed
Move R3 Sniffle Wmreed

46) wmreed: Sacrifice R2 Logan
Attack R3 Wmreed
Attack Y3 Wmreed
	Jesse: Another thing that new players often seem to overlook is the ship capture strategy.  I find it's often easier to drop a bunch of large ships into the opponent's home system and capture all his defenders than it is to destroy both his stars.  It doesn't work if the defender has a large red he is able to sacrifice to capture all my attackers in one shot, though.

47) Jesse: Sacrifice R3 Blarg
Attack R3 Wmreed
Attack R3 Wmreed
Attack Y3 Wmreed
	wmreed: If I had sacrificed the R3 in wmreed, is it correct that I would not have been able to attack your large ships?
	Jesse: Yes.  After the sacrifice, you would have no ships large enough to make the captures.

	Jesse: You played a pretty good game, really.  You had a strong opening, taking control of red, and kept your homeworld protected.  The g2 sacrifice to restore a large ship to your homeworld and simultaneously keep me from it was particularly nice.  Trading the R3 for a Y3, letting me build another R3, was not so good though.  It would be better to save that for a time when it was difficult for me to build a red ship.
	wmreed: 
	wmreed: 
	wmreed: Thank you for the game, Jesse!


9717)
Variants: "Unrated, Hard time"
Started: 2007.11.2, Ended: 2007.11.15
Participants: scottobear (S), sordros (N)
Winner: sordros

1) sordros: Homeworld Y1 B2 G3

2) scottobear: Homeworld R3 B2 G3

3) sordros: Build G1 Sordros

4) scottobear: Build G1 Scottobear

5) sordros: Trade G1 Y1 Sordros

6) scottobear: Trade G1 Y1 Scottobear

7) sordros: Build Y2 Sordros

8) scottobear: Build Y2 Scottobear

9) sordros: Trade Y1 B1 Sordros

10) scottobear: Build G1 Scottobear

11) sordros: Build B1 Sordros

12) scottobear: Discover G1 Scottobear B1 Chimp

13) sordros: Discover B1 Sordros Y3 Amarego

14) scottobear: Build G1 Chimp

15) sordros: Sacrifice G3 Sordros
Build B2 Amarego
Build B3 Amarego
Build B3 Sordros

16) scottobear: Move Y1 Scottobear Chimp

17) sordros: Discover B3 Amarego R1 Rugxeto

18) scottobear: Build G1 Scottobear

19) sordros: Sacrifice B2 Amarego
Trade B3 G3 Rugxeto
Trade B3 G3 Sordros

20) scottobear: Trade G1 R1 Scottobear

21) sordros: Sacrifice G3 Sordros
Build B2 Amarego
Build B3 Amarego
Build B3 Sordros

22) scottobear: Build R1 Scottobear

23) sordros: Move B3 Amarego Rugxeto

24) scottobear: Move R1 Scottobear Chimp

25) sordros: Build B3 Rugxeto

26) scottobear: Build R2 Chimp

27) sordros: Trade B2 R2 Amarego

28) scottobear: Trade R2 B2 Chimp

29) sordros: Sacrifice Y2 Sordros
Move B3 Rugxeto Scottobear
Move G3 Rugxeto Scottobear

30) scottobear: Attack G3 Scottobear

31) sordros: Sacrifice R2 Amarego
Attack G3 Scottobear
Attack G3 Scottobear

32) scottobear:
Build R2 Chimp

33) sordros: Trade B3 R3 Sordros

34) scottobear: Build B3 Chimp

35) sordros: Sacrifice R3 Sordros
Attack Y2 Scottobear
Attack R1 Scottobear
Pass

	sordros: Good game.  Thanks!


9775)
Variants: "Unrated"
Started: 2007.11.6, Ended: 2007.11.29
Participants: stoneaxe (S), Keith (N)
Winner: stoneaxe

1) Keith: Homeworld B1 Y3 G3
	Keith: Hello again,  This will ba a good game for asking questions or trying things.  I will play to give you a challenge but not to overwhelm.

2) stoneaxe: Homeworld R1 B2 G3

3) Keith: Build G1 Keith
	stoneaxe: Sounds great!
	Keith: I have two questions for you.  1) have you read the SDG wiki on Homeworlds?  2) you seem to prefer a red homeworld.  Why?

4) stoneaxe: Build G1 Stoneaxe
	stoneaxe: 1) Yes, I have read the wiki and looked at some Archive games.  2)  Seems like a strong defensive position and TwoShort does it!  What are the considerations of doing this?

5) Keith: Discover G1 Keith Y2 Bend
	Keith: TwoShort doing it is certainly a strong endorsement.  I think I tried it a few times and decided it was an advanced technique I was not ready for that seemed to slow down my early game development.

6) stoneaxe: Trade G1 Y1 Stoneaxe

7) Keith: Build G1 Keith

8) stoneaxe: Build Y1 Stoneaxe
	stoneaxe: For all I know, TwoShort does that just to make it more challenging for himself!  Ha.  I definitely need to guard against that pair of catastrophe that you got me with last game.  Nice play, by the way!

9) Keith: Trade G1 B1 Keith
	Keith: Thank you,  I was given many hard lessons by Zoltar.  Having three of a color at your homeworld is dangerous if the other player has a lot of mobility.

10) stoneaxe: Build G1 Stoneaxe

11) Keith: Move B1 Keith Bend
	Keith: One possibility on your last move would be to take the last y1 making it harder for me to get into yellow.  I could swap my g3 for a y3 but then I would fall behind a turn, two if I have not created another green ship in my homeworld first.  It would leave you with 3 yellows in your homeworld but I don't have one to move in.

12) stoneaxe: Build Y1 Stoneaxe

13) Keith: Build G1 Keith
	stoneaxe: I see.  Ok, I will try that strategy on this move.
	Keith: Well there is that.  I am going to have to shut down for the day soon.  1:04AM here and I get up at 5:30AM.

14) stoneaxe: Discover Y1 Stoneaxe B3 Broke
	stoneaxe: yeah, it was 1AM for me too.  I signed off right after my last move and didn't see your last note.  Hope you got some sleep that night.

15) Keith: Build G2 Bend
	Keith: About 4 hours.  The sleeping part was easy.  Getting up though...  
	Keith: Bend, Broke.   Ha ha.  How do you decide on system names?

16) stoneaxe: Move G1 Stoneaxe Broke
	Keith: This does give me a way to get into Yellow.  To prevent it you would have to do something fairly extreme like sacrifice your G3 and build to Y2s in Broke and a Y3 in stoneaxe.  Safe for the moment till I got a yellow.

17) Keith: Trade G2 Y2 Bend
	stoneaxe: Awww shoot.  I shouldve done what you said.  But this way I'm threatening to fight you for some green , so which would be better?  I Still think what you said wouldve be better. 
	stoneaxe: System names:  I like names of planets or Star Trek worlds or making the first letter of the systems match their color, but then I forget and use a "G" system name on a yellow color and then I try to blow up that system just so I can rename it at the expense of losing the game.    ;)
	Keith: This is probably safer.  If I did get a yellow you would really be in a scramble.  Also, there would be the risk that I would dominate green.  Though with your move I can't build a green in Bend without you moving a green in and causing a catastrophe.
	Keith: I will keep your system naming strategy, and quirks, in mind.  I usually pick a subject like Firefly, towns in Oregon, Japanese names.

18) stoneaxe: Build Y2 Broke

19) Keith: Discover Y2 Bend G3 Boring

20) stoneaxe: Build Y3 Broke

21) Keith: Build Y3 Boring
	stoneaxe: Whoa!  I can't do that!  What was I thinking?

22) stoneaxe: Sacrifice Y2 Broke
Move Y1 Stoneaxe Boring
Move Y1 Stoneaxe Boring
Catastrophe Boring Yellow
	Keith: I would have pointed it out and let you take it back if you had not noticed.

23) Keith: Discover G1 Keith B2 Prineville

24) stoneaxe: Build G2 Stoneaxe
	stoneaxe: Was that dumb?  Thats enough mental anguish for me for tonight.  :)  Goodnite!  signing off, for now.
	Keith: You blew me up! At least you burned 3 ships doing it.
	Keith: It was as expensive as I could make it.  Probably still worth it on your part.  Good night.
	Keith: Look at it this way.  We both have 4 ships.  You have two 3-pointers and two 1-pointers.  I have one 3-pointer and three 1-pointers.  I have some initiative because it is my move but it won't make up for the material difference.

25) Keith: Build G2 Keith

26) stoneaxe: Sacrifice G3 Stoneaxe
Build G2 Broke
Build G3 Stoneaxe
Build G3 Stoneaxe

27) Keith: Sacrifice G3 Keith
Build G3 Keith
Build B1 Bend
Build B2 Bend

28) stoneaxe: Trade Y1 R1 Broke
	Keith: Very good.  The absence of yellow ships on my part makes that a safe move.

29) Keith: Trade B2 Y2 Bend

30) stoneaxe: Trade G2 Y2 Stoneaxe

31) Keith: Build B2 Bend

32) stoneaxe: Move G2 Broke Bend

33) Keith: Sacrifice Y2 Bend
Move B2 Bend Broke
Move B1 Bend Broke
	Keith: Do you see the threat I have built that uses blue?

34) stoneaxe: Sacrifice Y3 Broke
Move G3 Stoneaxe Broke
Move G3 Broke Bend
Move G3 Bend Keith
	stoneaxe: I think I saw the blue threat:  if I would've traded for blue in Broke, you would've moved in 2 more blues and cat'd, right?
	Keith: You are on the right track.  Though I could provide the fourth blue myself.  Two on one turn and one on the next.  You have partially diffused it by moving a ship out.  

35) Keith: Trade G3 Y3 Keith

36) stoneaxe: Trade G3 R3 Stoneaxe
	Keith: You have a number of choices here.  You can make a sacrifice and capture my two blues but then I will move in another one and you would lose your y3.  You can sacrifice the y3 to evacuate your other ships from Broke.  Expensive.  It might have been worth it if the g2 was still there.  You can sacrifice the r1 and capture my other blue in Bend, though I could then build another one with a green sacrifice.  You can run with the y3 and leave the others behind.  Or you can sacrifice the y3 and...
	Keith: I can build another blue with a green sacrifice and you wouldl lose your ships at Broke.  Take it back and see what your best play is involving the Y3.

37) Keith: Sacrifice Y3 Keith
Move B1 Bend Keith
Move G1 Bend Keith
Move G1 Prineville Keith
Catastrophe Keith Green
	stoneaxe: Thanks for the help!  I'm still learning!  This one seems like a better move, but?  

(signing off for tonight... until next time!)

	Keith: Good night then.

You almost had it.  The y3 sacrifice was right.  But you could have moved the g1 in Broke to Keith and the g2 in Bend to Keith and catastrophied green in Keith and won the game.  Though this still gives me a severe problem.  

I ignored a general rule.  If the other person pulls a gun (red ship) you had better pull one too.
	Keith: If you sacrifice your r1 and convert my g3 at Keith then I am a gonner.  

38) stoneaxe: Move G2 Bend Keith
	Keith: Guess I am done for because blowing up Broke still leaves you able to move from Bend to Keith with that fourth green.

39) Keith: Trade B2 G2 Broke

40) stoneaxe: Sacrifice R1 Broke
Attack B1 Keith

	stoneaxe: You were very generous in this game... Thanks for the help!
	Keith: Your welcome.  Hope you learned something and enjoyed it.  


9630)
Started: 2007.11.8, Ended: 2007.11.30
Participants: MikeYarrum (S), sordros (N)
Winner: sordros

1) sordros: Homeworld B2 R3 G3

	sordros: Hi, good luck.


9761)
Variants: "Unrated, Hard time"
Started: 2007.11.9, Ended: 2007.12.3
Participants: scottobear (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) scottobear: Homeworld G3 R2 B3

3) zoltar: Build G1 Zoltar

4) scottobear: Build B1 Scottobear

5) zoltar: Trade G1 Y1 Zoltar

6) scottobear: Trade B1 Y1 Scottobear

7) zoltar: Build G1 Zoltar

8) scottobear: Build B1 Scottobear

9) zoltar: Trade G1 R1 Zoltar

10) scottobear: Trade B1 R1 Scottobear

11) zoltar: Build R2 Zoltar

12) scottobear: Build B1 Scottobear

13) zoltar: Trade R1 B1 Zoltar

14) scottobear: Discover B1 Scottobear G1 Gorgon

15) zoltar: Discover B1 Zoltar G2 Greenslime

16) scottobear: Build B1 Gorgon

17) zoltar: Build B2 Greenslime

18) scottobear: Build B2 Gorgon

19) zoltar: Sacrifice Y1 Zoltar
Move B1 Greenslime Gorgon
Catastrophe Gorgon B

20) scottobear: Build Y1 Scottobear

21) zoltar: Build B1 Greenslime

22) scottobear: Discover Y1 Scottobear G1 Oz

23) zoltar: Trade B2 Y2 Greenslime

24) scottobear: Move R1 Scottobear Oz

25) zoltar: Build G1 Zoltar

26) scottobear: Build B1 Scottobear

27) zoltar: Trade G1 Y1 Zoltar

28) scottobear: Build Y2 Oz

29) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build Y3 Zoltar
Build Y3 Greenslime

30) scottobear: Build Y3 Scottobear

31) zoltar: Discover Y1 Zoltar B2 Blooze

32) scottobear: Trade Y1 B1 Scottobear

33) zoltar: Sacrifice Y2 Greenslime
Move B1 Greenslime Oz
Move B1 Oz Scottobear
Catastrophe Scottobear B

34) scottobear: Move Y2 Oz Blooze

35) zoltar: Trade Y3 G3 Zoltar
	zoltar: Whoops! You know better than to grow a third of the same color in your homeworld when I have a ship of the same color!
	scottobear: you're right.. I do! Silly mistake!

36) scottobear: Move R1 Oz Blooze

37) zoltar: Sacrifice G3 Zoltar
Build Y1 Blooze
Build Y2 Greenslime
Build Y3 Zoltar

38) scottobear: Trade Y2 B2 Blooze
	zoltar: Retreat!!!

39) zoltar: Trade Y3 G3 Zoltar

40) scottobear: Attack Y1 Blooze
	zoltar: Attack!

41) zoltar: Sacrifice R2 Zoltar
Attack R1 Blooze
Attack Y1 Blooze

42) scottobear: Build Y2 Oz

43) zoltar: Build Y3 Zoltar

44) scottobear: Move Y2 Oz Blooze

45) zoltar: Sacrifice Y3 Zoltar
Move Y2 Greenslime Oz
Discover Y1 Blooze G1 Vim
Discover Y1 Blooze G1 Vigor

46) scottobear: Build Y3 Oz

47) zoltar: Sacrifice Y3 Greenslime
Move Y2 Oz Scottobear
Move Y1 Vim Scottobear
Move Y1 Vigor Scottobear
Catastrophe Scottobear Y

	zoltar: Gotta watchout for those check-mate in ones, especially if you only have one color of ship in your homeworld.  Ready to try again?


9760)
Started: 2007.11.9, Ended: 2007.12.21
Participants: ts52 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) ts52: Homeworld Y1 B2 G3

3) zoltar: Build G1 Zoltar
	ts52: Sorry I didn't respond for so long. Missed the email notice.
	zoltar: no problem

4) ts52: Build G1 Ts52

5) zoltar: Trade G1 Y1 Zoltar
	ts52: huh, no email for that move either, must look into it more. Thanks again for waiting.

6) ts52: Trade G1 Y1 Ts52

7) zoltar: Build Y2 Zoltar

8) ts52: Build Y2 Ts52

9) zoltar: Build Y2 Zoltar

10) ts52: Discover Y2 Ts52 G3 Kermit

11) zoltar: Trade Y1 R1 Zoltar

12) ts52: Trade Y1 R1 Ts52

13) zoltar: Discover R1 Zoltar G2 Proxima

14) ts52: Build R2 Ts52

15) zoltar: Move Y2 Zoltar Proxima

16) ts52: Move R2 Ts52 Kermit

17) zoltar: Build R2 Proxima

18) ts52: Build G1 Ts52

19) zoltar: Discover R2 Proxima G1 Greenpea

20) ts52: Discover G1 Ts52 B3 Grover

21) zoltar: Build Y1 Zoltar

22) ts52: Build G1 Grover

23) zoltar: Build G2 Zoltar

24) ts52: Build G2 Ts52

25) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Greenpea
Build R3 Proxima

26) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Ts52
Build R3 Kermit

27) zoltar: Sacrifice Y2 Zoltar
Move R1 Proxima Kermit
Move R2 Greenpea Kermit
Catastrophe Kermit R

28) ts52: Trade G1 R1 Grover

29) zoltar: Build R2 Proxima

30) ts52: Move R1 Ts52 Kermit

31) zoltar: Move R2 Proxima Grover

32) ts52: Sacrifice G3 Ts52
Build R2 Ts52
Build R3 Grover
Build G1 Grover

33) zoltar: Sacrifice Y2 Proxima
Discover G2 Zoltar B2 Orion
Move R2 Greenpea Grover
Catastrophe Grover R

34) ts52: Move R2 Ts52 Grover

35) zoltar: Build Y1 Zoltar

36) ts52: Build R1 Grover

37) zoltar: Move Y1 Zoltar Proxima

38) ts52: Build Y2 Kermit

39) zoltar: Sacrifice G2 Orion
Build Y2 Zoltar
Build Y3 Proxima

40) ts52: Discover Y2 Kermit G2 Robin

41) zoltar: Sacrifice Y1 Zoltar
Move Y3 Proxima Grover

42) ts52: Sacrifice Y2 Robin
Move R1 Grover Proxima
Move R2 Grover Proxima

43) zoltar: Sacrifice Y1 Proxima
Move R3 Proxima Grover

44) ts52: Sacrifice G1 Grover
Build G1 Ts52

45) zoltar: Attack G1 Grover

46) ts52: Build Y1 Kermit

47) zoltar: Build G1 Zoltar

48) ts52: Discover G2 Ts52 G3 Oscar

49) zoltar: Sacrifice G3 Zoltar
Build G2 Grover
Build G3 Zoltar
Build Y1 Grover

50) ts52: Move Y1 Kermit Proxima

51) zoltar: Discover Y3 Grover B1 Blueberry

52) ts52: Build Y2 Proxima

53) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Grover
Build Y3 Zoltar

54) ts52: Build R2 Ts52

55) zoltar: Trade Y1 B1 Grover

56) ts52: Trade R2 B2 Ts52

57) zoltar: Trade Y3 B3 Zoltar

58) ts52: Sacrifice B2 Ts52
Trade R2 B2 Proxima
Trade Y1 B1 Proxima

59) zoltar: Sacrifice Y2 Zoltar
Discover B3 Zoltar B2 Bloohoohoo
Discover B1 Grover Y1 Oldyeller

60) ts52: Build R2 Proxima

61) zoltar: Trade B3 R3 Bloohoohoo

62) ts52: Build Y1 Proxima

63) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Grover
Build Y3 Blueberry
	zoltar: Ack! I've built all this firepower, yet I'm running around on the defensive trying to not let my star get blown up.  Yikes!

64) ts52: Sacrifice Y2 Kermit
Move Y1 Proxima Blueberry
Move Y2 Proxima Blueberry
Catastrophe Blueberry Yellow
	zoltar: Well, I lost 2 moves and a ship for nothing.  Well done.  Hopefully I will do something with my massive fleet of 5 big ships, if I can keep them from being blown up.
	zoltar: Have to come back to this -- there must be a better way to save both stars in a less painful way.
	zoltar: Have to come back to this -- there must be a better way to save both stars in a less painful way.

65) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Bloohoohoo
Build R2 Grover

66) ts52: Trade B2 Y2 Proxima

67) zoltar: Move R3 Grover Proxima
	zoltar: There -- I'm happy now.
	ts52: I can't get the page to show me the global reserve stash, and I know there should be at least 1 yellow of each size. On a mac, 10,4, running firefox 2.0.0.11.
	zoltar: I can's tee the global reserve stash either, and I couldn't see it in another homeworlds game yesterday as well using Opera.
	ts52: I'm also still not getting any email notifications.
	ts52: Ok, not sure how the call an admin thing really works, but I've set up a physical set of the game, so I can see the reserve here. b3, y1, y2, y3, r2, r2. I'm going to take my move so we don't stagnate here forever.

68) ts52: Build Y1 Proxima

69) zoltar: Sacrifice R3 Bloohoohoo
Attack Y2 Proxima
Attack R2 Proxima
Attack R1 Proxima
	zoltar: With 6 battlestars to your 1, I'm finally feeling confident...
	ts52: I'm feeling a certain sense of deja'vu.
	ts52: Hey, I can see the global reserve again! Woot!
	ts52: Email still isn't working though.

70) ts52: Build R3 Ts52
	ts52: Sigh, reserve stash is gone again.
	zoltar: Sigh, so is my yellow fleet :(

71) zoltar: Sacrifice Y3 Grover
Move R2 Grover Ts52
Move R1 Proxima Grover
Move R1 Grover Ts52
Catastrophe Ts52 R

72) ts52: Sacrifice Y1 Proxima
Move R1 Kermit Ts52

73) zoltar: Move G2 Grover Ts52
	zoltar: The fleet has returned to liberate Proxima!

74) ts52: Build G3 Ts52
	ts52: We will not give up Proxima without a fight!
	zoltar: Proxima has been liberated in the name of the Zoltarian Empire!  Hurrah!

75) zoltar: Sacrifice Y2 Proxima
Move Y2 Grover Ts52
Move G1 Grover Ts52
Catastrophe Ts52 G
	zoltar: The Zoltarian fleet may soon be down from 5 to 2 battlestars, but the liberation of Proxima was worth the sacrifice of many brave Zoltarian freedom fighters. Long Live Zoltar! 

76) ts52: Sacrifice G2 Oscar
Build R1 Ts52
Build R2 Ts52
	zoltar: Zoltar to fleet: sacrifice everything and storm the ts52 homeworld! All-out blitz! Attack!

77) zoltar: Sacrifice R3 Proxima
Attack R2 Ts52
Attack R1 Ts52
Attack R1 Ts52
	zoltar: Three attacking Zoltarian battlestars have been destroyed, but as a result, victory is at hand -- Our last red battlestar will arrive at the undefended ts52 homeworld next move -- the galaxy has been restored to Pax Zoltar once again! 

	zoltar: gg
	ts52: Thanks for the game. One of these days I'll figure out how to keep you from getting the upper hand with all those large ships....
	Aaron: Are you still unable to see the stashes and stuff?  Call me again if so.  Cheers!
	ts52: Sorry, I
	ts52: Sorry, I am getting email again. Thanks!


9747)
Started: 2007.11.9, Ended: 2007.11.18
Participants: kreiger (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3



9791)
Started: 2007.11.9, Ended: 2008.1.4
Participants: MikeYarrum (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) MikeYarrum: Homeworld B3 R2 G3

3) zoltar: Build G1 Zoltar

4) MikeYarrum: Build G1 Mikeyarrum

5) zoltar: Trade G1 Y1 Zoltar



9802)
Started: 2007.11.9, Ended: 2007.12.8
Participants: sordros (S), kreiger (N)
Winner: sordros



9804)
Started: 2007.11.11, Ended: 2007.11.18
Participants: TheDunwichHorror (S), kreiger (N)
Winner: TheDunwichHorror



9812)
Variants: "Unrated"
Started: 2007.11.12, Ended: 2007.11.15
Participants: ahoodedfigure (S), peio (N)
Winner: ahoodedfigure

1) peio: Homeworld G2 B1 Y3
	ahoodedfigure: SPACE!!
	peio: I couldn't find the time yet to go thru the whole rules... promise, i'll do it !

2) ahoodedfigure: Homeworld G3 Y3 R3 *
	ahoodedfigure: It's been so long since I read the rules, now I have to do it again.
	ahoodedfigure: i'm going to experiment, then we can reset it if I screw everything up

3) peio: Discover Y3 Peio R3 Weardahel-r-whe
	peio: shit, I think I over estimated my chances ....
*actually: LOTS of laughing*
	peio: please challenge me again on this one. I'm too ashamed of doing it (i'm sure the button is going to refuse me clicking on it, just to make fun of me)
	ahoodedfigure: Hello Peio. you made my husband laugh hysterically just now. - The Wife
	ahoodedfigure: NEWSFLASH: Darth Vader blew up Coruscant.
	peio: Me too, i was laughing so hard of my stupidity ... !!

DV: Hey, Palpat, what's the orange button on the dashboard ?
P : Dunno,... just press it to see whahapen ...



9803)
Started: 2007.11.12, Ended: 2008.2.22
Participants: TheDunwichHorror (S), MikeYarrum (N)
Winner: TheDunwichHorror

1) MikeYarrum: Homeworld R3 B2 G3

2) TheDunwichHorror: Homeworld G3 B1 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) TheDunwichHorror: Build Y1 Thedunwichhorror



9830)
Started: 2007.11.13, Ended: 2009.10.13
Participants: Nupanick (S), MikeYarrum (N)
Winner: Nupanick

1) MikeYarrum: Homeworld R3 B2 G3

2) Nupanick: Homeworld B1 G2 Y3

3) MikeYarrum: Build G1 Mikeyarrum

4) Nupanick: Build Y1 Nupanick

5) MikeYarrum: Trade G1 Y1 Mikeyarrum

6) Nupanick: Discover Y1 Nupanick G3 Slippery

7) MikeYarrum: Build G1 Mikeyarrum

8) Nupanick: Build Y1 Slippery

9) MikeYarrum: Build Y2 Mikeyarrum

10) Nupanick: Build Y2 Nupanick

11) MikeYarrum: Discover Y2 Mikeyarrum G1 Yotsuba

12) Nupanick: Discover Y1 Slippery B1 Damogran

13) MikeYarrum: Trade G1 B1 Mikeyarrum

14) Nupanick: Trade Y1 G1 Damogran

15) MikeYarrum: Build B2 Mikeyarrum

16) Nupanick: Build G1 Damogran

17) MikeYarrum: Trade B2 R2 Mikeyarrum

18) Nupanick: Build G2 Damogran

19) MikeYarrum: Build B2 Mikeyarrum

20) Nupanick: Trade G2 B2 Damogran

21) MikeYarrum: Move B2 Mikeyarrum Damogran

22) Nupanick: Trade B2 G2 Damogran

23) MikeYarrum: Sacrifice R2 Mikeyarrum
Attack G2 Damogran
Attack G1 Damogran

24) Nupanick: Build G2 Damogran
Catastrophe Damogran G

25) MikeYarrum: Trade B2 G2 Damogran

26) Nupanick: Build Y1 Slippery

	Nupanick: Yeah... are you coming back or do I need to call time up on this game?


9719)
Variants: "Hard time"
Started: 2007.11.13, Ended: 2007.11.16
Participants: TwoShort (S), MXX (N)
Winner: TwoShort

1) MXX: Homeworld G2 Y3 R3 *

2) TwoShort: Homeworld B1 Y2 G3

3) MXX: Build R1 Mxx
	TwoShort: Howdy.

4) TwoShort: Build G1 Twoshort
	MXX: Hi.

5) MXX: Discover R1 Mxx B1 Centi

6) TwoShort: Trade G1 B1 Twoshort

7) MXX: Trade R1 G1 Centi

8) TwoShort: Build B2 Twoshort

9) MXX: Build G1 Centi

10) TwoShort: Trade B2 R2 Twoshort

11) MXX: Trade G1 Y1 Centi

12) TwoShort: Build B2 Twoshort

13) MXX: Build G1 Centi

14) TwoShort: Discover B2 Twoshort Y3 Yolonda

15) MXX: Trade G1 Y1 Centi

16) TwoShort: Build B2 Twoshort

17) MXX: Move Y1 Centi Yolonda

18) TwoShort: Discover B2 Twoshort Y3 Yoyodyne

19) MXX: Build Y1 Centi

20) TwoShort: Build B2 Twoshort

21) MXX: Build Y2 Centi

22) TwoShort: Discover B2 Twoshort G3 Grogar

23) MXX: Trade Y1 R1 Centi

24) TwoShort: Sacrifice G3 Twoshort
Build B3 Twoshort
Build B3 Grogar
Build B3 Yoyodyne

25) MXX: Move Y2 Centi Yolonda

26) TwoShort: Trade B2 Y2 Yolonda
Catastrophe Yolonda Yellow

27) MXX: Build R1 Centi

28) TwoShort: Trade B3 Y3 Twoshort

29) MXX: Build Y1 Centi

30) TwoShort: Move B3 Yoyodyne Centi

31) MXX: Move Y1 Centi Yoyodyne
	TwoShort: So, not to be presumptuous, but I'm guessing you haven't played this much before?   I ask because I feel a little bad just systematically destroying you (which I will, 2 turns from now).  Usually when I play new players I try to give out some advice along the way; though in this case it would just be "Have some blue in your homeworld" :)

32) TwoShort: Sacrifice Y3 Twoshort
Move B3 Grogar Centi
Move B3 Centi Mxx
Move B3 Centi Mxx

33) MXX: Attack B3S Mxx
	MXX: Thanks, I'll keep that in mind

34) TwoShort: Sacrifice R2 Twoshort
Attack B3N Mxx
Attack R3N Mxx

	TwoShort: I mainly hoping you won't be discouraged; the game is a lot more fun if you're not crippled right out of the box.
	TwoShort: In any case, thanks for the game!


9823)
Variants: "No undo"
Started: 2007.11.16, Ended: 2007.12.23
Participants: Nupanick (S), sordros (N)
Winner: sordros

1) sordros: Homeworld Y1 B2 G3

2) Nupanick: Homeworld G3 B2 Y3

3) sordros: Build G1 Sordros

4) Nupanick: Build Y1 Nupanick

5) sordros: Trade G1 B1 Sordros

6) Nupanick: Trade Y1 R1 Nupanick

7) sordros: Build B1 Sordros

8) Nupanick: Build Y1 Nupanick

9) sordros: Trade B1 R1 Sordros

10) Nupanick: Discover Y1 Nupanick B1 Damogran

11) sordros: Build G1 Sordros

12) Nupanick: Build Y1 Nupanick

13) sordros: Discover G1 Sordros Y3 Amarego

14) Nupanick: Trade Y1 G1 Nupanick

15) sordros: Build B1 Sordros

16) Nupanick: Move G1 Nupanick Damogran

17) sordros: Move B1 Sordros Amarego

18) Nupanick: Build Y1 Nupanick

19) sordros: Sacrifice G3 Sordros
Build B2 Amarego
Build B3 Amarego
Build B3 Sordros

20) Nupanick: Build Y2 Damogran

21) sordros: Sacrifice B2 Amarego
Trade B3 G3 Sordros
Trade B3 Y3 Amarego

22) Nupanick: Trade Y2 B2 Damogran

23) sordros: Build B3 Amarego

	sordros: Hi Nupanick, are you still up to finish this game? or should we just terminate it?
	Nupanick: Oops, sorry about that. I forgot it was my turn.

	sordros: It's ok, perhaps we'll play again sometime.  Happy new year!


9846)
Variants: "Unrated"
Started: 2007.11.17, Ended: 2007.11.20
Participants: peio (S), ahoodedfigure (N)
Winner: ahoodedfigure

1) ahoodedfigure: Homeworld G3 B3 R3 *
	ahoodedfigure: Oh, shit.  I'm first.  Watch me screw up.  I never did get to experiment like I wanted to before.  You mind starting a new one if my experiment doesn't work?

2) peio: Homeworld Y3 G3 R3 *

3) ahoodedfigure: Build R1 Ahoodedfigure
	peio: no prblm, I know the feeling  ;) 
	ahoodedfigure: My tactic works better if I go second.

4) peio: Build R1 Peio
	ahoodedfigure: Sheesh.  About damn time.  I don't know how many commands I did before that worked.

5) ahoodedfigure: Trade R1 Y1 Ahoodedfigure
	peio: same ! Each turn it takes me 4 times b4 it takes my order.
I thought one could build a given color in a system as long as the system piece is of that color ?!
	ahoodedfigure: I thought that was what the rules said.  Apparently this thing thinks it has to match a ship type.  So, what good are the planet colors?

6) peio: Discover R3 Peio B2 Whrdahellrwee2
	ahoodedfigure: I had a baby!  I always wanted to have a baby!!

7) ahoodedfigure: Build Y1 Ahoodedfigure
	peio: Finally, I get to name a system ! (2nd move of 2nd game !!)
	ahoodedfigure: Yeah...  and that's a real nice...  name.  "name."

8) peio: Build R1 Peio

9) ahoodedfigure: Trade Y1 B1 Ahoodedfigure

10) peio: Move R1 Peio Whrdahellrwee2

11) ahoodedfigure: Build Y1 Ahoodedfigure
	peio: I sorta don't know what to do to win...
	ahoodedfigure: wipe out my homeworld's defenses, I think
	ahoodedfigure: I'll have to leave this one hanging.  Should be in bed.  Later.

12) peio: Trade R1 G1 Whrdahellrwee2
	ahoodedfigure: Actually, according to the rules, you can't take an action that will destroy your own homeworld.  It's not allowed.  Which means your Palpatine Manuever was an illegal move.

13) ahoodedfigure: Discover Y1 Ahoodedfigure B2 Lappland

14) peio: Build R1 Peio
	ahoodedfigure: wow, I managed to do it right the first time

15) ahoodedfigure: Build B1 Ahoodedfigure
	peio: not me... I fnd it (a bit) annoying I must say. Each time i try to do smtg it is first denied because i missed a rule detail. Then it takes for ever to perform smtg ... Will see how the game evolves as we move on.

16) peio: Build R1 Whrdahellrwee2
	ahoodedfigure: Since there are a lot of factors at work it's understandable.  If we were playing this in person moves would take seconds.  Then again, if we were playing my space conquering game, once you understood the basic principles, movement would be even MORE intuitive...  :)
	ahoodedfigure: There's a video game called Mass Effect coming out now that's going to make me space-obsessed for many, many weeks.  Just warning you.

17) ahoodedfigure: Trade B1 G1 Ahoodedfigure
	peio: oookay

18) peio: Move R1 Peio Whrdahellrwee2

19) ahoodedfigure: Move G1 Ahoodedfigure Lappland

20) peio: Trade R1 Y1 Whrdahellrwee2

21) ahoodedfigure: Build Y2 Lappland

22) peio: Build R1 Peio
	ahoodedfigure: The rising tension...  OF THE STARS!!
	ahoodedfigure: did you actually make up the name of your planet, or was that just randomly given?
	ahoodedfigure: ...  IN THE GREAT VOID!!
	peio: i decided the name. 2 comes from previous game. I named the new sytsem the same way on the previous game

23) ahoodedfigure: Move Y2 Lappland Peio

24) peio: Build R2 Peio
	ahoodedfigure: Right, I gathered that it was a sequel...  but what the heck did the original mean?  :)
	peio: Where the hell are we !?

25) ahoodedfigure: Sacrifice R3 Ahoodedfigure
Attack R1 Peio
Attack R1 Peio
Attack R2 Peio
	ahoodedfigure: You're totally going to hate me.  Don't give up on this game yet =)
	ahoodedfigure: Oh, I get it.  Where the hell are we.



9871)
Started: 2007.11.26, Ended: 2007.11.30
Participants: kreiger (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3



9934)
Started: 2007.11.28, Ended: 2008.2.22
Participants: kreiger (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld B2 G1 Y3



9891)
Variants: "Unrated, Hard time"
Started: 2007.11.29, Ended: 2007.12.12
Participants: scottobear (S), Mr_Shine (N)
Winner: scottobear

1) Mr_Shine: Homeworld B1 Y3 G3

2) scottobear: Homeworld B3 G2 Y3
	scottobear: mr shine, him diamond!

3) Mr_Shine: Build G1 Mr_shine

4) scottobear: Build Y1 Scottobear
	Mr_Shine: Mountain crush me no
Sun stop me no
Hammer me break me no:)


5) Mr_Shine: Build G1 Mr_shine

6) scottobear: Discover Y1 Scottobear B1 Library

7) Mr_Shine: Discover G1 Mr_shine Y2 Propellor

8) scottobear: Build Y1 Scottobear

9) Mr_Shine: Discover G1 Propellor B1 Flux

10) scottobear: Trade Y1 G1 Scottobear

11) Mr_Shine: Build G2 Flux

12) scottobear: Build G2 Scottobear

13) Mr_Shine: Trade G1 Y1 Flux

14) scottobear: Trade G2 R2 Scottobear

15) Mr_Shine: Trade G1 R1 Mr_shine

16) scottobear: Move G1 Scottobear Library

17) Mr_Shine: Build G1 Mr_shine



9838)
Variants: "Hard time"
Started: 2007.11.30, Ended: 2008.3.17
Participants: wyons (S), TwoShort (N)
Winner: wyons

1) TwoShort: Homeworld R1 B3 G3
	wyons: your chance of revenge!
	wyons: your chance of revenge!

2) wyons: Homeworld R1 B2 G3

3) TwoShort: Build G1 Twoshort

4) wyons: Build G1 Wyons

5) TwoShort: Trade G1 Y1 Twoshort

6) wyons: Trade G1 R1 Wyons

7) TwoShort: Build Y1 Twoshort

8) wyons: Build R2 Wyons

9) TwoShort: Discover Y1 Twoshort B2 Bluonia

10) wyons: Trade R2 Y2 Wyons

11) TwoShort: Build Y1 Twoshort

12) wyons: Discover Y2 Wyons G3 Astralweeks

13) TwoShort: Discover Y1 Twoshort Y2 Yonderboy

14) wyons: Build R2 Wyons

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build Y3 Bluonia
Build Y3 Twoshort

16) wyons: Move Y2 Astralweeks Wyons

17) TwoShort: Trade Y2 G2 Twoshort
	wyons: yep.. I think I made a mistake discovering astral weeks...  :{

18) wyons: Trade R2 G2 Wyons

19) TwoShort: Sacrifice G2 Twoshort
Build Y2 Twoshort
Build Y3 Bluonia
	TwoShort: Yeah, moving out before you grew a second one just put your only spot to grow yellow closer to me without helping you particularly.  The competing-monopolies situation we were heading into demands growing efficiently while not getting blown up.
	wyons: oh dear- this seems to be going from bad to worse..

20) wyons: Build R2 Wyons
	wyons: whilst you polish me off can I tempt you to a game of grim reaper.. I think you might have the right sort of brain..?

21) TwoShort: Trade Y2 G2 Twoshort

22) wyons: Build Y2 Wyons

23) TwoShort: Discover Y3 Bluonia B3 Wedge

24) wyons: Discover Y2 Wyons G3 Stargazer

25) TwoShort: Trade Y3 R3 Wedge

26) wyons: Build Y3 Wyons

27) TwoShort: Move Y1 Yonderboy Wedge

28) wyons: Build Y2 Stargazer

29) TwoShort: Trade Y3 G3 Twoshort

30) wyons: Sacrifice Y2 Wyons
Discover G3 Wyons Y3 Stella
Move R1 Wyons Stella
	wyons: I have also lost the picture of the global stash
	wyons: oh--- and after  my move it came back!  :)
	TwoShort: I didn't mean to blow off your suggestion of a game of grim reaper - I'm just a bit short on attention cycles at the moment...  issue a challenge in January and I'll be happy to play.  Also, I'm not sure "polishing you off" is quite where this game is at :)  Someone (Steely-eyed Russell?) once referred to monopolizing yellow to the point that you have nothing else as "the sand trap", but this is the first time I've understood what he meant.  Anyway, I mention it just to point out my dumb golf reference: Using a Wedge to get out of the sand trap.  Now on to the green...

31) TwoShort: Trade Y3 R3 Bluonia
	wyons: no offence taken. I shall challenge you to GR in January.
	wyons: ...and I still feel like I have barely a head above the sand.

32) wyons: Sacrifice G2 Wyons
Build Y2 Stargazer
Build Y3 Wyons

33) TwoShort: Move Y1 Bluonia Stargazer
Catastrophe Stargazer Yellow

34) wyons: Discover Y3 Wyons G3 Stardust

35) TwoShort: Move G2 Twoshort Bluonia

36) wyons: Trade R2 G2 Wyons

37) TwoShort: Build R2 Bluonia
	wyons: Aaron- happy Xmas! Do you know that the global stash picture is only functioning intermittently
	wyons: TwoShort- you can still play on I believe (even though it says frozen).

38) wyons: Build G1 Wyons

39) TwoShort: Trade R2 Y2 Bluonia

40) wyons: Build R2 Stella

41) TwoShort: Build R2 Bluonia

42) wyons: Discover R2 Stella Y2 Nickoftime
	wyons: the display is back!

43) TwoShort: Trade R2 B2 Bluonia

44) wyons: Sacrifice G3 Stella
Build R2 Stella
Build R2 Stella
Build R3 Nickoftime

45) TwoShort: Move R3 Bluonia Stella
Catastrophe Stella Red

46) wyons: Discover G2 Wyons Y3 Startrek

47) TwoShort: Build B1 Bluonia

48) wyons: Build G1 Wyons

49) TwoShort: Build G1 Twoshort

50) wyons: Trade G1 B1 Wyons

51) TwoShort: Discover B2 Bluonia G3 Greenfly

52) wyons: Discover R2 Nickoftime B3 Cosmicgorilla

53) TwoShort: Sacrifice Y2 Bluonia
Move B1 Bluonia Wedge
Move B2 Greenfly Wyons

54) wyons: Move B1 Wyons Stardust

55) TwoShort: Sacrifice G2 Bluonia
Build B1 Wyons
Build B2 Wyons
Catastrophe Wyons Blue

56) wyons: Build B1 Stardust

57) TwoShort: Trade B1 R1 Wedge
	wyons: hmmm... that was very unpleasant. I fear I am about to lose my first game of homeworlds. 
	wyons: I am also challenging you to GR as agreed. :)

58) wyons: Move B1 Stardust Wyons

59) TwoShort: Discover R1 Wedge G2 Grogar

60) wyons: Build G1 Startrek

61) TwoShort: Sacrifice G1 Twoshort
Build R2 Wedge

62) wyons: Sacrifice G2 Startrek
Build R2 Nickoftime
Build R3 Cosmicgorilla

63) TwoShort: Discover R2 Wedge Y2 Yolonda

64) wyons: Sacrifice Y3 Stardust
Discover R2 Cosmicgorilla Y1 Warp1
Discover R3 Cosmicgorilla Y2 Warp2
Discover R3 Nickoftime Y3 Warp3

65) TwoShort: Move R3 Wedge Nickoftime

66) wyons: Sacrifice G1 Startrek
Build Y3 Wyons

67) TwoShort: Attack R2S Nickoftime

68) wyons: Move Y3 Wyons Stardust

69) TwoShort: Move R2 Yolonda Wyons

70) wyons: Sacrifice R2 Warp1
Attack R2N Wyons
Pass

71) TwoShort: Move R2 Nickoftime Wedge

72) wyons: Trade R2 Y2 Wyons

73) TwoShort: Build R2 Grogar

74) wyons: Build G1 Wyons

75) TwoShort: Discover R3 Nickoftime B3 Bluonia

76) wyons: Discover G1 Wyons Y2 Wormhole

77) TwoShort: Sacrifice Y1 Wedge
Move R3 Bluonia Wormhole
	wyons: shouldnt nickoftime have been abandoned??
	wyons: ah you must have been undoing that when I wrote it!....
	TwoShort: yeah, something was wrong there.  Besides my move that is... the move is going to require more thought.
	wyons: I have just noticed that Aaron is tinkering with the code. 
	wyons: and oh good- glad you are having to think! :)

78) wyons: Sacrifice G1 Wormhole
Build R2 Warp2

79) TwoShort: Build G1 Twoshort

80) wyons: Build B1 Stardust

81) TwoShort: Build Y1 Twoshort

82) wyons: Build G1 Wyons

83) TwoShort: Move Y1 Twoshort Grogar

84) wyons: Move G1 Wyons Warp2

85) TwoShort: Move R3 Wormhole Wyons

86) wyons: Attack R3N Wyons

87) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build Y1 Twoshort
Build Y2 Grogar
	wyons: I just challenged you on the ladder. I know it will be our third game but I couldnt resist a shot at the top!

88) wyons: Sacrifice Y2 Wyons
Move R3 Wyons Grogar
Move R3 Warp3 Grogar
Catastrophe Grogar Red

89) TwoShort: Trade Y1 R1 Twoshort

90) wyons: Sacrifice Y3 Stardust
Move G1 Wyons Grogar
Move G1 Grogar Twoshort
Move G1 Warp2 Twoshort
Catastrophe Twoshort Green

91) TwoShort: Move Y2 Grogar Twoshort

	TwoShort: Oh, I don't have green, so my suicide defense plan wont work.  Well, it wasn't going to stave you off for more than another turn or two anyway :)  Good job, and thanks for the game!


9834)
Started: 2007.11.30, Ended: 2007.12.13
Participants: MikeYarrum (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G3 B2 Y3

2) MikeYarrum: Homeworld B1 Y2 G3

3) alexcobo: Build Y1 Alexcobo

4) MikeYarrum: Build G1 Mikeyarrum

5) alexcobo: Trade Y1 R1 Alexcobo



9940)
Started: 2007.11.30, Ended: 2008.1.4
Participants: kreiger (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3



9949)
Started: 2007.12.3, Ended: 2008.2.22
Participants: MikeYarrum (S), Annagul (N)
Winner: Annagul

1) Annagul: Homeworld B3 G2 R3

2) MikeYarrum: Homeworld R1 B3 G3

3) Annagul: Build R1 Annagul

4) MikeYarrum: Build G1 Mikeyarrum

5) Annagul: Trade R1 Y1 Annagul



9955)
Started: 2007.12.3, Ended: 2008.2.22
Participants: Annagul (S), kreiger (N)
Winner: Annagul



9942)
Variants: "Unrated, Hard time"
Started: 2007.12.3, Ended: 2007.12.23
Participants: zoltar (S), scottobear (N)
Winner: zoltar

1) scottobear: Homeworld B3 G2 Y3

2) zoltar: Homeworld B1 R2 G3

3) scottobear: Build Y1 Scottobear

4) zoltar: Build G1 Zoltar

5) scottobear: Trade Y1 G1 Scottobear

6) zoltar: Trade G1 Y1 Zoltar

7) scottobear: Build Y1 Scottobear

8) zoltar: Build G1 Zoltar

9) scottobear: Discover G1 Scottobear B1 Whoopsie

10) zoltar: Trade G1 B1 Zoltar

11) scottobear: Build G1 Whoopsie

12) zoltar: Build B2 Zoltar

13) scottobear: Trade G1 R1 Whoopsie

14) zoltar: Trade B2 R2 Zoltar

15) scottobear: Move Y1 Scottobear Whoopsie

16) zoltar: Build B2 Zoltar

17) scottobear: Build Y1 Scottobear

18) zoltar: Discover B2 Zoltar G3 Daisy

19) scottobear: Build Y2 Whoopsie

20) zoltar: Build Y2 Zoltar



9960)
Variants: "Hard time"
Started: 2007.12.4, Ended: 2007.12.10
Participants: MikeYarrum (S), nycavri (N)
Winner: nycavri

1) nycavri: Homeworld Y2 B3 G3

2) MikeYarrum: Homeworld R3 B1 G3

3) nycavri: Build G1 Nycavri



9969)
Started: 2007.12.6, Ended: 2008.2.22
Participants: MikeYarrum (S), Bryce (N)
Winner: MikeYarrum



9968)
Started: 2007.12.6, Ended: 2007.12.13
Participants: alexcobo (S), kreiger (N)
Winner: alexcobo



10009)
Started: 2007.12.6, Ended: 2008.2.22
Participants: MikeYarrum (S), Teraphim (N)
Winner: Teraphim

1) Teraphim: Homeworld G3 B2 Y3



10014)
Started: 2007.12.6, Ended: 2007.12.7
Participants: Teraphim (S), MisterMorn (N)
Winner: Teraphim

1) MisterMorn: Homeworld G2 Y1 B3

2) Teraphim: Homeworld G3 B2 Y3

3) MisterMorn: Build B1 Mistermorn

4) Teraphim: Build Y1 Teraphim

5) MisterMorn: Discover B1 Mistermorn R3 Mars

6) Teraphim: Build Y1 Teraphim

7) MisterMorn: Trade B1 G1 Mars

8) Teraphim: Discover Y1 Teraphim G1 February

9) MisterMorn: Build B1 Mistermorn

10) Teraphim: Build Y2 February

11) MisterMorn: Build B1 Mistermorn

12) Teraphim: Trade Y1 R1 Teraphim

13) MisterMorn: Trade B1 Y1 Mistermorn
	MisterMorn: Hey. Check this out. There's a little chat dealy down here by the system messages. Let's see how it works.

14) Teraphim: Build Y2 Teraphim
	Teraphim: hehe neat, ffxi just went down for emerg. maint.
so I'll play you, you've got some evil plan dont you?


15) MisterMorn: Move Y1 Mistermorn Mars
	MisterMorn: My plan has already come to fruition... well, as soon as I send the check off to the good people at S-E for setting up maintenance.
	Teraphim: You bastard I'll kill you
so is mine btw(evil plan, not check)

	MisterMorn: Is it just me or did the system glitch out, since it says you made a y2, but the picture says you didn't...

16) Teraphim: Sacrifice Y2 Teraphim
Move Y3 Teraphim February
Move Y3 February Mars
	Teraphim: it glitched


17) MisterMorn: Build Y2 Mars

18) Teraphim: Sacrifice Y2 February
Move Y1 February Teraphim
Move Y3 Mars Mistermorn

19) MisterMorn: Build B1 Mistermorn

20) Teraphim: Sacrifice R1 Teraphim
Attack B3N Mistermorn

21) MisterMorn: Sacrifice Y2 Mars
Move B1 Mistermorn Mars
Discover B1 Mars G1 Bundtcake
	Teraphim: I think I got you

	MisterMorn: And now we see why you don't put building in your homeworld. I suck

22) Teraphim: Trade B3 R3 Mistermorn

23) MisterMorn: Build B1 Mistermorn
	MisterMorn: ...actually, it's a lack of red that screws me. Not my choice of homeworld. In any event...
	Teraphim: Suicide if you want I still claiming the win ^.-

	Teraphim: I'm*


24) Teraphim: Sacrifice R3 Mistermorn
Attack B1N Mistermorn
Attack B1N Mistermorn
Pass
	MisterMorn: I never said the game was over. I said I suck. There's a difference.



9853)
Variants: "Hard time"
Started: 2007.12.6, Ended: 2007.12.9
Participants: Jesse (S), kepesman (N)
Winner: Jesse



10012)
Started: 2007.12.6, Ended: 2007.12.12
Participants: MikeYarrum (S), kepesman (N)
Winner: MikeYarrum



9986)
Variants: "Unrated, Hard time"
Started: 2007.12.6, Ended: 2007.12.10
Participants: kepesman (S), scottobear (N)
Winner: scottobear

1) scottobear: Homeworld G3 B2 Y3



9985)
Started: 2007.12.6, Ended: 2009.12.9
Participants: kevbo082 (S), cworth (N)
Winner: cworth

1) cworth: Homeworld G3 B2 Y3



10018)
Variants: "No undo"
Started: 2007.12.7, Ended: 2007.12.7
Participants: Teraphim (S), MisterMorn (N)
Winner: Teraphim

1) MisterMorn: Homeworld G2 B1 Y3
	Teraphim: XP

2) Teraphim: Homeworld Y3 B2 G3
	MisterMorn: So, didja get your order placed?

3) MisterMorn: Build Y1 Mistermorn

4) Teraphim: Build G1 Teraphim
	Teraphim: no not yet


5) MisterMorn: Trade Y1 R1 Mistermorn

6) Teraphim: Trade G1 R1 Teraphim
	Teraphim: hahahahahahaha nice 

7) MisterMorn: Build R1 Mistermorn

8) Teraphim: Build R2 Teraphim
	MisterMorn: I believe it's called "learning from your mistakes."

9) MisterMorn: Discover R1 Mistermorn Y3 Twinkie

10) Teraphim: Build G1 Teraphim
	MisterMorn: I still suck, though. ^_~

11) MisterMorn: Build Y1 Mistermorn

12) Teraphim: Discover G1 Teraphim Y1 Ol

13) MisterMorn: Trade Y1 G1 Mistermorn

14) Teraphim: Build R2 Teraphim
	MisterMorn: Wow. OI looks like a neat system. What kind of stuff do they do there?
	Teraphim: WE are the Borg. You will be assimilated. We will add your biological and technological distinctiveness to our own. Your culture will adapt to service us. Resistance is futile.

15) MisterMorn: Build R2 Mistermorn

16) Teraphim: Move R2 Teraphim Ol
	MisterMorn: God damn Borg. But, wait... those ships look like triangles! Borg only travel in cubes... YOU'RE IMPOSTERS!

17) MisterMorn: Discover R1 Twinkie G1 Angelfood

18) Teraphim: Build R3 Ol
	Teraphim: Small words from a small being, trying to attack what it doesn't understand.(Ps nice try but you'd be wrong about the only cubes, never seen a triangle though)
	MisterMorn: Oh, that's right... they have spheres too, don't they?

19) MisterMorn: Trade R2 Y2 Mistermorn

20) Teraphim: Move R2 Teraphim Angelfood
	Teraphim: Watch your future's end. 
(yep and wierd little diamond shaped ones)
	MisterMorn: (neat)
Your armada is certainly impressive, oh Borg King, but we shall see how this battle plays itself out.

21) MisterMorn: Build R2 Angelfood

22) Teraphim: Build R3 Angelfood
Catastrophe Angelfood R
	Teraphim: You are an imperfect being, created by an imperfect being. Finding your weakness is only a matter of time.(yes these are all borg quotes)
	MisterMorn: (In case you're wondering, I did build that r2 on purpose as bait.)

23) MisterMorn: Trade G1 B1 Mistermorn
	MisterMorn: Nicely done. Thank you for taking the bait.

24) Teraphim: Build R1 Teraphim
	Teraphim: Mistermorn: Yes, I... I remember you. You were there all the time. But... that ship... and all the Borg on it were destroyed...
Borg King: You think in such three-dimensional terms. How small you've become. 
	MisterMorn: [insert laughter here]

25) MisterMorn: Build R2 Mistermorn

26) Teraphim: Trade R1 B1 Teraphim
	Teraphim: Borg King: Do you always talk this much?
Mistermorn: Not always, but often.

27) MisterMorn: Sacrifice Y2 Mistermorn
Discover R2 Mistermorn Y3 Twinkie
Discover R2 Twinkie G1 Angelfood

28) Teraphim: Trade B1 Y1 Teraphim
	MisterMorn: I found my old Angelfood system. It's a little less pretty than it last was, thanks to your horrible weapons experiments. I didn't think the Borg made mistakes.
	Teraphim: Brave words. I've heard them before, from thousands of species across thousands of worlds, since long before you were created. But, now they are all Borg.

29) MisterMorn: Build B1 Mistermorn

30) Teraphim: Build Y1 Teraphim

31) MisterMorn: Build Y2 Mistermorn

32) Teraphim: Discover R2 Ol B3 Lo

33) MisterMorn: Sacrifice Y2 Mistermorn
Move B1 Mistermorn Lo
Move B1 Lo Angelfood

34) Teraphim: Move Y1 Teraphim Ol
	Teraphim: Former people of lO: Borg? Sounds Swedish.
[after having seen the Borg]
Former people of lO: Definitely not Swedish. 

35) MisterMorn: Build B2 Angelfood

36) Teraphim: Build Y2 Ol

37) MisterMorn: Build B2 Angelfood

38) Teraphim: Sacrifice Y2 Ol
Move R3 Ol Lo
Move R3 Lo Angelfood

39) MisterMorn: Sacrifice Y3 Mistermorn
Move B1 Angelfood Teraphim
Move B2 Angelfood Teraphim
Move B2 Angelfood Teraphim
Catastrophe Teraphim Blue
	MisterMorn: You forced me to pull the trigger a little early. Congratulations there...

40) Teraphim: Sacrifice Y1 Ol
Move R2 Lo Mistermorn
	Teraphim: You flatter yourself! I've overseen the assimilition of countless millions. You were no different! 

41) MisterMorn: Build R1 Mistermorn

42) Teraphim: Sacrifice R3 Angelfood
Attack R1N Mistermorn
Attack R1N Mistermorn
Attack B1N Mistermorn
	Teraphim: I am the beginning. The end. The one who is many. I am the Borg. 
	Teraphim: And ow so are you.
	Teraphim: And os so are you.
	Teraphim: And now so are you.
	Teraphim: Resistance was futile. 
	MisterMorn: Exercises in futility are still a good workout.
	Teraphim: This game has now concluded due to Assimilition OF ALL OPPOSITION. The winner was the Borg King.



10020)
Started: 2007.12.8, Ended: 2007.12.8
Participants: Teraphim (S), CakePan (N)
Winner: Teraphim

1) CakePan: Homeworld G3 B1 Y3
	CakePan: Why do I always seem to go first? I pick "random" when I set the rules, and, so, I assume, did you...

2) Teraphim: Homeworld Y2 G2 R3 *

3) CakePan: Build Y1 Cakepan
	Teraphim: idk just bad luck for me?


4) Teraphim: Build R1 Teraphim

5) CakePan: Build Y1 Cakepan

6) Teraphim: Move R3 Teraphim Cakepan

7) CakePan: Move Y3 Cakepan Teraphim

8) Teraphim: Attack Y1N Cakepan

9) CakePan: Build Y1 Cakepan

10) Teraphim: Sacrifice R3 Cakepan
Attack Y1N Cakepan
Attack Y1N Cakepan
Pass
	CakePan: I know it's over, but I'm going to keep struggling, out of penalty for you making such a short game.
	Teraphim: Resistance is futile.
	CakePan: Yes. Yes it is. But, as I've said, exercises in futility still burn calories.



10016)
Started: 2007.12.9, Ended: 2007.12.13
Participants: MikeYarrum (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G3 B2 R3



10030)
Variants: "No undo, Hard time"
Started: 2007.12.9, Ended: 2007.12.18
Participants: CakePan (S), Borg_King (N)
Winner: CakePan

1) Borg_King: Homeworld R2 G1 Y3 *

2) CakePan: Homeworld R3 B2 G3

3) Borg_King: Build Y1 Borg_king
	CakePan: Attention all units! The Borg has entered the galaxy! Repeat, the Borg has entered the Galaxy! Prepare defensive measures immediately!
	Borg_King: We are the Borg. Lower your shields and prepare to be assimilated. 

4) CakePan: Build G1 Cakepan

5) Borg_King: Discover Y1 Borg_king B3 One

6) CakePan: Trade G1 Y1 Cakepan

7) Borg_King: Trade Y1 B1 One

8) CakePan: Build G1 Cakepan
	Borg_King: All drones report to terminals for regeneration. I am the one who is many and the many who are one. Now rest.
	CakePan: (was that a mistake?)

9) Borg_King: Build Y1 Borg_king

10) CakePan: Discover G1 Cakepan B1 Redvelvet

11) Borg_King: Move Y1 Borg_king One

12) CakePan: Build G1 Redvelvet



10081)
Variants: "Hard time"
Started: 2007.12.17, Ended: 2008.1.18
Participants: sordros (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B3 Y1 G3

2) sordros: Homeworld B1 Y2 G3
	Keith: Hello Sordos.  Thank you for accepting my challenge.

3) Keith: Build G1 Keith
	sordros: Hi Keith.  You are welcome.  Good luck!

4) sordros: Build G1 Sordros

5) Keith: Trade G1 Y1 Keith

6) sordros: Trade G1 B1 Sordros

7) Keith: Build Y1 Keith

8) sordros: Build B1 Sordros

9) Keith: Discover Y1 Keith G2 Midori

10) sordros: Discover B1 Sordros G3 Verdego

11) Keith: Build Y2 Keith

12) sordros: Build B2 Verdego

13) Keith: Build Y2 Midori

14) sordros: Discover B1 Sordros Y3 Flavega
	Keith: Whew.  Bad typo, wrong system.

15) Keith: Build Y3 Midori
	sordros: That was close :-)

16) sordros: Build G1 Sordros

17) Keith: Trade Y2 B2 Keith

18) sordros: Trade B2 Y2 Verdego

19) Keith: Move Y1 Midori Verdego

20) sordros: Build B2 Verdego
	Keith: That was probably a mistake on my part, letting you break into yellow ships.  Good pickup on that opening.

21) Keith: Build Y3 Keith
	sordros: Thanks, but only time will tell if it is a mistake. Let's see what happens next.

22) sordros: Trade B1 R1 Verdego

23) Keith: Sacrifice Y1 Keith
Move Y2 Midori Verdego

24) sordros: Attack Y2 Verdego

25) Keith: Build Y1 Verdego
Catastrophe Verdego Yellow

26) sordros: Build G1 Sordros
	Keith: Now you will see why I sacrificed a yellow ship to move a yellow ship.

27) Keith: Sacrifice Y3 Midori
Discover G3 Keith G2 Midworld
Move G3 Midworld Flavega
Move G3 Flavega Sordros
Catastrophe Sordros Green
	sordros: Very clever. I didn't see that coming.

	Keith: Alas, I don't think you saw this next thing coming either.  Though I have dragged my feet before taking my turn on the off chance you would look over the board and catch it.
	Keith: With a yellow 3-pointer I could sacrifice and reach any system on the board from any other system.  So any system with three of the same color was subject to catastrophe.

Thank you very much for taking up my challenge.  Three others before you did not.  

I feel a bit bad about playing hardball though such is the nature of a ladder game.  Had this been an unrated game I would have offered a warning and encouraged you to redo your move.
	sordros: You are right, I didn't see that coming either.  
Don't feel bad about winning a game if you are following all the rules!  I am the one that should apologize for not providing a suitable challenge!
Thanks for the game, and good luck climbing up the charts.
	Keith: It is the nature of the ladder system to create some mis-matches since newcomers to the ladder always start at the bottom.  No need to be concerned about your level of challenge.  Homeworlds has a lot of learning curve.  FWIW I beat Zoltar once using your grab the blue strategy while he used my grab the yellow strategy.  So your approach was viable.


10022)
Started: 2007.12.17, Ended: 2008.1.18
Participants: kreiger (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G3 B2 Y3



10032)
Started: 2008.1.2, Ended: 2008.4.11
Participants: loopywolf (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld Y1 B2 G3



10159)
Started: 2008.1.2, Ended: 2008.1.2
Participants: MikeYarrum (S), loopywolf (N)
Winner: MikeYarrum



10105)
Started: 2008.1.6, Ended: 2008.1.19
Participants: ts52 (S), MatrixFrog (N)
Winner: ts52

1) MatrixFrog: Homeworld G3 B2 Y3

2) ts52: Homeworld B1 Y2 G3

3) MatrixFrog: Build Y1 Matrixfrog

4) ts52: Build G1 Ts52

5) MatrixFrog: Build Y1 Matrixfrog
	ts52: Have a good game!

6) ts52: Build G1 Ts52

7) MatrixFrog: Discover Y1 Matrixfrog G1 Zoop

8) ts52: Discover G1 Ts52 B3 Grover

9) MatrixFrog: Build Y1 Zoop

10) ts52: Build G2 Grover

11) MatrixFrog: Trade Y3 G3 Matrixfrog

12) ts52: Trade G2 Y2 Grover

13) MatrixFrog: Discover Y1 Zoop B3 Zeep

14) ts52: Build G2 Grover

15) MatrixFrog: Sacrifice G3 Matrixfrog
Build Y2 Zeep
Build Y3 Matrixfrog
Build Y3 Zoop

16) ts52: Build Y3 Grover

17) MatrixFrog: Trade Y2 G2 Zeep

18) ts52: Discover G2 Grover Y2 Sol

19) MatrixFrog: Move G2 Zeep Ts52

20) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Sol
Build G3 Ts52

21) MatrixFrog: Trade G2 R2 Ts52

22) ts52: Trade G2 R2 Grover

23) MatrixFrog: Attack G1 Ts52

24) ts52: Sacrifice R2 Grover
Attack R2 Ts52
Attack G1 Ts52

25) MatrixFrog: Trade Y3 B3 Matrixfrog

26) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Sol
Build G3 Ts52

27) MatrixFrog: Build Y3 Matrixfrog

28) ts52: Trade G2 B2 Grover

29) MatrixFrog: Move Y3 Zoop Zeep

30) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build R1 Ts52

31) MatrixFrog: Trade Y1 R1 Zeep

32) ts52: Discover G2 Grover Y1 Zoe

33) MatrixFrog: Trade Y1 R1 Matrixfrog

34) ts52: Move G2 Sol Zoe

35) MatrixFrog: Build Y1 Zoop

36) ts52: Move B2 Grover Zoe

37) MatrixFrog: Build R2 Matrixfrog

38) ts52: Move R2 Ts52 Grover

39) MatrixFrog: Move Y1 Zoop Zeep

40) ts52: Move G2 Sol Zoe

41) MatrixFrog: Sacrifice Y3 Zeep
Move Y1 Zoop Grover
Discover Y1 Zeep R2 Flash
Move Y1 Flash Grover
Catastrophe Grover Y

42) ts52: Build G1 Sol
	MatrixFrog: Homeworld: safe. For now. Presence throughout the galaxy: decimated.

Hopefully that will prove to have been "worth it"

43) MatrixFrog: Trade R1 Y1 Zeep

44) ts52: Build R1 Grover

45) MatrixFrog: Build Y1 Matrixfrog

46) ts52: Trade R2 Y2 Grover

47) MatrixFrog: Build Y3 Matrixfrog

48) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Grover
Build B1 Zoe

49) MatrixFrog: Discover B3 Matrixfrog B1 Llama

50) ts52: Sacrifice Y3 Grover
Move G2 Zoe Matrixfrog
Move G2 Zoe Matrixfrog
Move G2 Zoe Matrixfrog
Catastrophe Matrixfrog Green

51) MatrixFrog: Move R2 Matrixfrog Zoe

52) ts52: Sacrifice R1 Grover
Attack R2 Zoe

53) MatrixFrog: Trade Y3 G3 Matrixfrog

54) ts52: Sacrifice Y2 Grover
Move B2 Zoe Matrixfrog
Move B1 Zoe Matrixfrog

	ts52: Thanks for the game.


9947)
Variants: "Hard time"
Started: 2008.1.6, Ended: 2008.1.8
Participants: cheinzmann (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3
	TwoShort: Howdy.

2) cheinzmann: Homeworld B1 G3 R3


3) TwoShort: Build G1 Twoshort
	cheinzmann: Never played before, have my sets at home but want to learn. Please be patient
	TwoShort: No problem.  I'm always happy to teach new players. Lesson 1:  Don't start with a red ship... :)  Red isn't useful until we're in range of each other.

4) cheinzmann: Trade R3 Y3 Cheinzmann

5) TwoShort: Build G1 Twoshort

6) cheinzmann: Discover Y3 Cheinzmann G2 Grogg
	cheinzmann: Oops I should have built another ship or two
	cheinzmann: I am willing to try again if you dont mind.
	TwoShort: I thought that it wouldn't let you do that.  Well, in any case, I'm happy to start again...



10210)
Variants: "Hard time"
Started: 2008.1.8, Ended: 2008.2.3
Participants: cheinzmann (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) cheinzmann: Homeworld Y1 B3 G3

3) TwoShort: Build G1 Twoshort

4) cheinzmann: Build G1 Cheinzmann

5) TwoShort: Trade G1 Y1 Twoshort

6) cheinzmann: Build G1 Cheinzmann

7) TwoShort: Build Y1 Twoshort

8) cheinzmann: Trade G3 Y3 Cheinzmann

9) TwoShort: Build Y2 Twoshort

10) cheinzmann: Build G1 Cheinzmann

11) TwoShort: Build G2 Twoshort

12) cheinzmann: Discover Y3 Cheinzmann G2 Grogg

13) TwoShort: Discover G2 Twoshort Y3 Yolonda

14) cheinzmann: Trade G1 R1 Cheinzmann
	TwoShort: Check.

15) TwoShort: Build G1 Twoshort
	cheinzmann: Why can't I build a G2 ship in Grogg, and how do I attack if necessary?
	TwoShort: You can only build a ship of the same color as a ship you have in the system, (the star being green means you can grow there, but not that you can grow green).  To attack, you need access to red (a red ship or star) in a system containing a ship of mine, and a ship of yours as big as mine or bigger.  
  Finally, you ought to undo that move.  With 4 of the same color in a system, I can call a catastrophe and since it's your homeworld, and that's all that's there, you'll lose.  I said "Check" to indicate that I would win on the next turn if you didn't stop me.  Even with just 3 greens, I could sacrifice my y2 to move my g2 twice into your Homeworld to trigger the catastrophe.

16) cheinzmann: Build G2 Cheinzmann
	cheinzmann: thanks!
	cheinzmann: probably should have built a Y2

17) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Yolonda
Build G3 Twoshort
	TwoShort: Well, you probably shouldn't have moved your 3 pointer out of your Homeworld; typically, that never happens before you get another big piece.  If I get a piece in your Homeworld (like my g2), you need a piece the same size or bigger to attack it.  It's not threat this turn because I don't have a red of my own to sacrifice, so my g2 would just sit there.  In general, "Always have a 3 pointer at home" is one of the more bedrock maxims of Homeworlds strategy.

18) cheinzmann: Move G1 Cheinzmann Grogg
	TwoShort: So again I could blow up your greens in exchange for my y2 & g2.  But instead I'm going demonstrate a key tactic, called "the factory"...

19) TwoShort: Sacrifice Y2 Twoshort
Move G3 Yolonda Grogg
Move G2 Yolonda Grogg
Catastrophe Grogg Green
	cheinzmann: So by doing a sacrifice of you G3, you get 3 actions points then you built 3 ships with that.
	cheinzmann: I will read up on catastrophe not sure how it works. Let me try a smaller factory

20) cheinzmann: Trade G2 Y2 Cheinzmann

21) TwoShort: Trade G3 Y3 Twoshort
	TwoShort: Catastrophe:  At the end of your turn, if any system has 4 or more pieces of the same color (including both players ships and the star(s)) you can trigger a catastrophe, which removes all pieces of the relevant color from that system.  If one of the pieces was the (only) star, any remaining ships are going to go away too.  Despite red being "attack", causing catastrophes to blow up your opponents ships is frequently the dominant offensive mechanic of the game.
  For example... :)

22) cheinzmann: Build Y2 Cheinzmann
	cheinzmann: You forgot to say "This will hurt me a lot more than it does you".

23) TwoShort: Trade G3 R3 Twoshort

24) cheinzmann: Build G1 Cheinzmann

25) TwoShort: Sacrifice Y3 Twoshort
Discover Y1 Twoshort R3 Boom
Discover Y1 Boom R2 Boomboom
Move Y1 Boomboom Cheinzmann
Catastrophe Cheinzmann Yellow

26) cheinzmann: Trade G1 Y1 Cheinzmann

27) TwoShort: Build G1 Twoshort
	TwoShort: This will hurt you a lot more than it does me...

28) cheinzmann: Build G2 Cheinzmann
	cheinzmann: holy crap

29) TwoShort: Discover G1 Twoshort B3 Backup

30) cheinzmann: Discover Y1 Cheinzmann Y2 Newone

31) TwoShort: Build G2 Backup



10231)
Started: 2008.1.9, Ended: 2008.1.18
Participants: peterh (S), icheyne (N)
Winner: peterh

1) icheyne: Homeworld B1 G2 Y3
	icheyne: This game is a weird one. Here goes...

2) peterh: Homeworld G2 Y3 B3

3) icheyne: Discover Y3 Icheyne G3 Oddball
	peterh: Yes indeed - I've always wanted to play this FTF, this is next best thing
	icheyne: Sorry for the delay, but I've been away...



10160)
Started: 2008.1.9, Ended: 2008.1.12
Participants: random56 (S), MikeYarrum (N)
Winner: random56



10017)
Variants: "Unrated, Hard time"
Started: 2008.1.9, Ended: 2008.1.12
Participants: scottobear (S), smilingra (N)
Winner: smilingra

1) smilingra: Homeworld Y1 B2 G3



10241)
Started: 2008.1.10, Ended: 2008.1.22
Participants: airbender (S), random56 (N)
Winner: random56

1) random56: Homeworld G3 B2 R3

2) airbender: Homeworld G3 B1 R3

3) random56: Build R1 Random56

4) airbender: Build R1 Airbender


5) random56: Trade R1 Y1 Random56

6) airbender: Build R1 Airbender

7) random56: Discover R3 Random56 G1 Otown

8) airbender: Trade R1 Y1 Airbender

9) random56: Build Y1 Random56

10) airbender: Build Y2 Airbender

11) random56: Build Y2 Random56

12) airbender: Trade Y2 R2 Airbender

13) random56: Move Y1 Random56 Otown

14) airbender: Build Y2 Airbender

15) random56: Sacrifice Y2 Random56
Discover R3 Otown Y2 Monkey
Move R3 Monkey Airbender
Catastrophe Airbender R

16) airbender: Trade Y2 R2 Airbender

17) random56: Build Y2 Random56

18) airbender: Build Y2 Airbender
	random56: the jedi are going to feel that one ( and a many red were lost)

19) random56: Trade Y2 R2 Random56

20) airbender: Discover R2 Airbender Y2 Zombiezone

21) random56: Build R1 Random56

22) airbender: Move R2 Zombiezone Otown

23) random56: Build Y2 Random56

24) airbender: Attack Y1 Otown

25) random56: Discover Y1 Random56 G1 O-ma-cron

26) airbender: Trade Y2 R2 Airbender

27) random56: Build Y2 O-ma-cron

28) airbender: Build R1 Airbender

29) random56: Trade Y2 G2 Random56

30) airbender: Build R1 Otown

31) random56: Sacrifice Y1 O-ma-cron
Move R1 Random56 O-ma-cron

32) airbender: Discover R1 Otown Y2 Fafsa

33) random56: Build R3 O-ma-cron

34) airbender: Build R3 Otown

35) random56: Build R3 Random56

	airbender: this takes too long I kinda lost interest
	random56: do you not want toplay anymore ?????


10033)
Variants: "Hard time"
Started: 2008.1.12, Ended: 2008.1.12
Participants: Jesse (S), coleman (N)
Winner: Jesse



10256)
Variants: "Hard time"
Started: 2008.1.14, Ended: 2008.1.24
Participants: smilingra (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B3 G3
	Jesse: Hello.  Welcome to SDG, and have a good game.

2) smilingra: Homeworld G1 B2 Y3

3) Jesse: Build G1 Jesse

4) smilingra: Build Y1 Smilingra

5) Jesse: Build G1 Jesse
	smilingra: Thanks for playing - this is my first game, so I'm interested to see how it will turn out!
	Jesse: Let me know if you have any questions.  I'm happy to help.

6) smilingra: Discover Y1 Smilingra G3 Alpha

7) Jesse: Trade G3 Y3 Jesse

8) smilingra: Trade Y3 G3 Smilingra
	Jesse: This may be a little advanced, but notice how trading my large for a yellow, rather than one of my smalls, has done a couple of things.  It allows me to shortly start building medium sized ships, and makes it difficult for you to get into the green economy.  See if you can figure out why I was able to do this, and you were not in a position to do the same thing with yellow.
	smilingra: trade y3 g3 smilingra

9) Jesse: Discover G1 Jesse B2 Broog
	smilingra: I understand how you can build medium sized ships, but I don't know how it makes it hard to get me into the green economy, as well as why I'm not in the same position with yellow.
	Jesse: If you now build a green ship in your homeworld, there will be 3 green pieces there.  One more, and it's an overpopulation.  I could sacrifice my Y3 to fly in a green piece and cause a catastrophe which costs you your defense and half your system.  If you didn't first get a ship of a different color there before this even happened, it would immediately cost you the game.  This is why trading your large ship for a green doesn't get you into the green economy easily.
	Jesse: You would do better to build green ships away from your homeworld, due to having a green system marker.  If you had a medium yellow there, it would be reasonable to trade it for a green, then move it to another system so you won't be in danger of a catastrophe when you try to build more greens.  The problem here is that there are still 2 more small yellows to build before you can even get a medium yellow piece to trade for green, and meanwhile I'll be building medium green ships.  (You generally don't want to move your large ship away from your homeworld, if you can help it, because it leaves you undefended.  You might try it briefly, to make another green piece, but it's risky, and you'll definitely need another ship there, first.)  So, it's hard to get into green without trading your large, too.
	Jesse: There's nothing wrong with a blue-green homeworld, by the way.  You just need to be aware that you don't want to keep green pieces there any more than you have to, just as I don't want to keep blue or red pieces in my homeworld.
	Jesse: Where your homeworld choice is problematic is that your small system marker is the same color as my initial ship.  That means it only takes two builds for me to exhaust the small green pieces, and there's very little you can do about it.
	Jesse: Is that instructive, or just overloading you?
	Jesse: disc g1 b2 Broog

10) smilingra: Build Y1 Alpha
	Jesse: Arr.  Not only the wrong syntax, but the wrong place as well.  How embarrassing.  XD

11) Jesse: Build G2 Broog
	smilingra: Actually, it does make sense.  I totally forgot that you could move in a fourth piece of a given color and cause a catastrophe.  I doubt that I'm going to win this game, but I'll chalk it up to a valuable learning experience. :)
	Jesse: You should be prepared to have continuing valuable learning experiences for a long time to come.  I know I still do.

12) smilingra: Move Y1 Alpha Smilingra

13) Jesse: Trade G2 Y2 Broog
	smilingra: Thanks for the pointers - keep 'em coming!

14) smilingra: Discover G3 Smilingra R3 Gamma
	Jesse: This move diversifies my holdings at Broog, and gives me greater mobility.  Y2s are nice, because they extend your reach with a piece that you can sacrifice a lot more easily than a large, especially early on.  This also leaves the last Y1 still in the pool, so if you build it, I can grab another Y2 directly.  (And if you grabbed the other, a large would be available for me.)
	Jesse: If you would like a sporting chance, I'll give you the opportunity to build a G2 in your home system.  Instead of immediately smashing you, I'll make a build of my own to give you the opportunity to fix your green concentration.

15) Jesse: Build G2 Broog
	smilingra: Thanks for the offer, but I'm going to still make the move I wanted to, just to see how it will pan out.  I'm just stubborn that way. :)
	smilingra: Still, if you'd like to prolong my demise, you could point out how you could blow me away. :)
	Jesse: If you'd rather play it out straight up, that is absolutely fine by me.  I was referring to blowing you away if you just built a green in your home system.  I cannot immediately blow you away, in the current position.

16) smilingra: Build Y1 Smilingra
	Jesse: Although, now that I have a second green ship one step from Gamma, if you build another green there I can blow your green ships away at the cost of everything at Broog.  Leaving you without a large ship would be quite advantageous, even if it doesn't take out half your home system.
	Jesse: It's worth noting additionally that it is quite dangerous to leave your home system without the defense of a large ship.  Consider what happens when I now sacrifice my Y2 to move my G2 into your system.

17) Jesse: Build Y2 Jesse
	smilingra: I'm now beginning to understand how using up the supply of small ships is critical.  At this point, I can see that I'm in big trouble.
	smilingra: Although, my system is not connected to Broog, so your g2 can't get to my system, correct?
	Jesse: Broog is two steps from your home system, so I would have to sacrifice the Y2.

18) smilingra: Build Y2 Alpha

19) Jesse: Build Y3 Broog
	smilingra: Ah, it had not occurred to me that you could move one ships twice.  I think I'm learning something on every move! :)
	Jesse: Yup, you get N completely independent actions to use when you sacrifice.  Also note that the sacrificed ship goes back into the pool before you do any of the actions.

20) smilingra: Move Y1 Smilingra Gamma
	Jesse: Notice that with two yellow ships in each of your systems with yellows, building the remaining Y3 will put you close to an overconcentration.

21) Jesse: Trade G2 R2 Broog
	smilingra: Yes, I'm painfully aware of that. :)
	Jesse: Just making sure.  Now, what's the next lesson?  Hmm...
	Jesse: The Banker is tempting, taking that Y3 out of circulation by sending my g2 to a Y3 system.  That would work towards increasing my material advantage.  But I think, actually, a sharper threat is in order.  Something to drive home the importance of keeping your home system protected.

22) smilingra: Build Y3 Smilingra
	Jesse: Hmm, I should have traded the Y2, instead, to keep the Y3 in the stash one more step away.  In any case, there are two important proverbs that apply here: Never leave your homeworld undefended; and, When your opponent picks up a gun, you must pick up a gun.  You can take care of either one with one turn, but not both.  After my next turn, you will likely find yourself with my Y3 in your home system, ready to capture two ships with the sacrifice of the R2.  What you would like very much to have is a large ship and a red of your own there, to capture it first.  But since you can only get one of those things, you're a move behind.

23) Jesse: Sacrifice Y2 Jesse
Move Y3 Broog Alpha
Move Y3 Alpha Smilingra

24) smilingra: Trade Y3 R3 Smilingra
	smilingra: Yes, you've made it *painfully* obvious that I need to defend my homeworld.  I know that I need to have a large ship in my homeworld area; otherwise, you can take me over.  At least I recognized (thanks to your comment) that I can build a y3 there, thus allowing me to have two large ships.  I at least get to hang on for a couple more turns this way. :)

25) Jesse: Sacrifice R2 Broog
Attack R3 Smilingra
Attack Y1 Smilingra

	Jesse: So, now you see where being a move late in picking up a gun can kill you.  Not a bad first game, especially given that you stumbled into that problem early on with the greens, which I would not expect a new player to see coming anyway.  If you want another game, you're welcome to it.
	Jesse: By the way, I think the move you could have made to last the longest would have been: Sacrifice your Y2.  Move your G3 and a Y1 into your home system.  Trigger a yellow catastrophe, wiping out my attacking Y3.  That leaves you with just a G3 and a Y1, and the same trouble developing that you had before, but it would take me a few turns to get into a position in which I could attack again.
	smilingra: Thanks for all the pointers!  I'm going to accept a new challenge.  I was wondering about how to prolong the game - I hadn't thought about the catastrophe!


10294)
Variants: "Unrated"
Started: 2008.1.20, Ended: 2008.1.20
Participants: axeman (S), pete_asman (N)
Winner: pete_asman

1) pete_asman: Homeworld B2 G1 Y3

2) axeman: Homeworld G2 B1 Y3

3) pete_asman: Build Y1 Pete_asman

4) axeman: Build Y1 Axeman

5) pete_asman: Trade Y3 R3 Pete_asman

6) axeman: Discover Y1 Axeman G3 Ds9

7) pete_asman: Move R3 Pete_asman Ds9

8) axeman: Trade Y3 R3 Axeman

9) pete_asman: Attack Y1 Ds9

10) axeman: Build R1 Axeman

11) pete_asman: Build R1 Ds9

12) axeman: Build R1 Axeman

13) pete_asman: Move R3 Ds9 Axeman
Catastrophe Axeman R



10295)
Variants: "Unrated"
Started: 2008.1.20, Ended: 2008.2.17
Participants: pete_asman (S), axeman (N)
Winner: axeman

1) axeman: Homeworld G1 B2 R3

2) pete_asman: Homeworld G1 B2 Y3

3) axeman: Build R1 Axeman

4) pete_asman: Build Y1 Pete_asman

5) axeman: Trade R1 Y1 Axeman

6) pete_asman: Trade Y3 R3 Pete_asman

7) axeman: Build Y1 Axeman

8) pete_asman: Build Y2 Pete_asman

9) axeman: Build Y2 Axeman

10) pete_asman: Discover Y1 Pete_asman G3 Sol

11) axeman: Trade Y2 R2 Axeman

12) pete_asman: Build Y2 Pete_asman

13) axeman: Trade Y1 B1 Axeman

14) pete_asman: Build R1 Pete_asman

15) axeman: Build B1 Axeman

16) pete_asman: Move R3 Pete_asman Sol

17) axeman: Trade B1 Y1 Axeman

18) pete_asman: Build R1 Sol

19) axeman: Build Y2 Axeman

20) pete_asman: Sacrifice Y2 Pete_asman
Move R1 Sol Axeman
Move R3 Sol Axeman
Catastrophe Axeman R

21) axeman: Trade Y2 R2 Axeman

22) pete_asman: Build Y2 Pete_asman

23) axeman: Move R2 Axeman Sol

24) pete_asman: Move Y1 Sol Pete_asman

25) axeman: Move Y1 Axeman Sol

26) pete_asman: Trade Y2 R2 Pete_asman

27) axeman: Build Y2 Sol

28) pete_asman: Discover R2 Pete_asman Y3 Alphac

29) axeman: Move R2 Sol Axeman

30) pete_asman: Trade Y1 B1 Pete_asman

31) axeman: Move Y2 Sol Axeman

32) pete_asman: Build R1 Pete_asman

33) axeman: Trade Y2 R2 Axeman

34) pete_asman: Build B1 Pete_asman

35) axeman: Build Y1 Sol

36) pete_asman: Build Y2 Pete_asman

37) axeman: Build Y2 Axeman

38) pete_asman: Move Y2 Pete_asman Alphac

39) axeman: Sacrifice Y2 Axeman
Move B1 Axeman Sol
Move B1 Sol Pete_asman
Catastrophe Pete_asman Blue

40) pete_asman: Discover Y2 Alphac B2 Betazed

41) axeman: Move R2 Axeman Sol

42) pete_asman: Build Y2 Pete_asman

43) axeman: Move R2 Sol Pete_asman

44) pete_asman: Attack R2 Pete_asman

45) axeman: Build Y3 Axeman

46) pete_asman: Sacrifice Y2 Pete_asman
Move R1 Pete_asman Alphac
Move R1 Pete_asman Betazed

47) axeman: Trade Y3 R3 Axeman

48) pete_asman: Sacrifice Y2 Betazed
Move R1 Alphac Axeman
Move R2 Alphac Axeman
Catastrophe Axeman R

49) axeman: Build Y2 Axeman

50) pete_asman: Build R1 Pete_asman

51) axeman: Trade Y2 R2 Axeman

52) pete_asman: Build Y2 Pete_asman

53) axeman: Build Y2 Axeman

54) pete_asman: Move Y2 Pete_asman Betazed

55) axeman: Build R1 Axeman

56) pete_asman: Move R2 Pete_asman Sol

57) axeman: Build Y3 Sol

58) pete_asman: Move Y2 Betazed Sol
Catastrophe Sol Y

59) axeman: Discover Y1 Axeman B3 Backwater

60) pete_asman: Build Y1 Pete_asman

61) axeman: Move R2 Axeman Backwater

62) pete_asman: Trade R1 B1 Betazed

63) axeman: Move R2 Backwater Betazed

64) pete_asman: Sacrifice Y1 Pete_asman
Move B1 Betazed Pete_asman

65) axeman: Build Y1 Axeman

66) pete_asman: Build Y1 Pete_asman

67) axeman: Sacrifice Y1 Axeman
Move R2 Betazed Backwater

68) pete_asman: Build R1 Pete_asman

69) axeman: Build Y1 Axeman

70) pete_asman: Move Y1 Pete_asman Sol

71) axeman: Trade Y1 G1 Axeman

72) pete_asman: Build B1 Pete_asman

73) axeman: Move G1 Axeman Backwater

74) pete_asman: Move B1 Pete_asman Sol

75) axeman: Build G2 Backwater

76) pete_asman: Build R2 Sol

77) axeman: Build G2 Backwater

78) pete_asman: Discover R2 Sol Y2 Sigma957

79) axeman: Move G1 Backwater Pete_asman

80) pete_asman: Build R3 Sol

81) axeman: Sacrifice Y2 Axeman
Move G2 Backwater Pete_asman
Move G2 Backwater Pete_asman
Catastrophe Pete_asman Green



10292)
Started: 2008.1.21, Ended: 2008.1.30
Participants: ts52 (S), wmreed (N)
Winner: ts52

1) wmreed: Homeworld G2 B1 R3

2) ts52: Homeworld B2 Y3 G3
	wmreed: Hello!


	ts52: Hi! Have a good game!

3) wmreed: Build R1 Wmreed

4) ts52: Build G1 Ts52
	wmreed: Thanks!  You, too.  Are you a fan of LooneyLabs games?

5) wmreed: Build R1 Wmreed
	ts52: I am. I used to go to Origins every year and demo for them. But life's gotten in the way the past couple years.
	wmreed: Cool. I go to Origins every year myself. I spend a lot of time in the Big Experiment room. 

6) ts52: Trade G1 R1 Ts52

7) wmreed: Trade R1 Y1 Wmreed

8) ts52: Build G1 Ts52

9) wmreed: Build Y1 Wmreed

10) ts52: Build G1 Ts52

11) wmreed: Discover Y1 Wmreed G3 Ballard
	ts52: Cool, if you were there in 2005-2002 we've probably met!
	wmreed: I was thinking the same thing. Are you planning on attending this summer?

12) ts52: Discover G1 Ts52 B1 Grover

13) wmreed: B Y1 Wmreed

14) ts52: Build G1 Grover

15) wmreed: Build Y2 Wmreed

16) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Ts52
Build G3 Ts52

17) wmreed: Trade R3 G3 Wmreed

	wmreed: THAT was a beautiful play.

18) ts52: Trade G2 Y2 Grover

19) wmreed: Trade Y1 B1 Wmreed
	ts52: Thanks. I've been on the other end of it too many times...

20) ts52: Build G2 Grover

21) wmreed: B B2 Wmreed

22) ts52: Trade G2 B2 Grover

23) wmreed: Build G2 Wmreed

24) ts52: Sacrifice Y2 Grover
Move B2 Grover Ballard
Move B2 Ballard Wmreed
Catastrophe Wmreed Blue

25) wmreed: S G3 Wmreed
Build R1 Wmreed
Build Y1 Ballard
Build G3 Wmreed
	wmreed: I knew I shouldn't be playing when I'm sick. How did I miss that when I was specifically watching for the double jump catastrophe?!  Nice play. 

26) ts52: Trade G2 Y2 Ts52

27) wmreed: Discover Y1 Wmreed B3 Frances
	ts52: Thanks, I was a bit surprised you left it there.
Sorry to hear your sick, colds suck.

28) ts52: Sacrifice Y2 Ts52
Move G1 Grover Wmreed
Move G1 Grover Wmreed
Catastrophe Wmreed Green
	ts52: Thanks for the game.



10237)
Variants: "Hard time"
Started: 2008.1.28, Ended: 2008.2.29
Participants: alexcobo (S), smilingra (W), Uglyfoot (N), spearjr (E)
Winner: smilingra

1) Uglyfoot: Homeworld B3 Y2 G3
	spearjr: Hope you all don't mind, this will be my first game of Homeworlds here at SDG. I've played 3 times in person so I'm not at a total loss, but I may have some trouble with the interface.
	smilingra: No worries - I've only played one game ever.  I'm excited to see how this work with 4 players.  Good luck everyone, and thanks for accepting my invite!

2) spearjr: Homeworld Y2 B1 G3

3) alexcobo: Homeworld G3 B2 Y3

4) smilingra: Homeworld Y1 B2 G3
	alexcobo: This is my firts Homeworld game ever! :-)
Good luck!

5) Uglyfoot: Build G1 Uglyfoot
	smilingra: Glad to see that everyone has taken their turn in a timely manner.  I was a bit worried that since I sent out the challenge a couple of weeks ago, that someone might not actually play!

6) spearjr: Build G1 Spearjr
	Uglyfoot: Looks like we're all here!  Have fun everyone.

7) alexcobo: Build Y1 Alexcobo

8) smilingra: Build G1 Smilingra

9) Uglyfoot: Discover G1 Uglyfoot B1 Xchg

10) spearjr: Discover G1 Spearjr Y3 Endor

11) alexcobo: Discover Y1 Alexcobo G1 Ariel
	spearjr: With online play, do we have that whole good/evil thing going on, or just kill everyone else?

12) smilingra: Discover G1 Smilingra B3 Beta

13) Uglyfoot: Build G1 Uglyfoot
	smilingra: We kill everyone else.  This is last man standing, so you have to kill *everyone* else.

14) spearjr: Build G2 Endor

15) alexcobo: Build Y1 Alexcobo

16) smilingra: Build G2 Beta

17) Uglyfoot: Trade G1 Y1 Xchg

18) spearjr: Build G1 Spearjr

19) alexcobo: Build Y1 Ariel

20) smilingra: Trade G2 Y2 Beta

21) Uglyfoot: Move G1 Uglyfoot Xchg

22) spearjr: Trade G1 B1 Spearjr

23) alexcobo: Trade Y1 B1 Alexcobo

24) smilingra: Build Y1 Beta

25) Uglyfoot: Build Y2 Xchg

26) spearjr: Move B1 Spearjr Endor

27) alexcobo: Discover Y1 Ariel G3 Breta

28) smilingra: Discover Y2 Beta G2 Gamma

29) Uglyfoot: Build G1 Uglyfoot

30) spearjr: Trade G2 Y2 Endor

31) alexcobo: Trade B1 R1 Alexcobo

32) smilingra: Build Y3 Beta

33) Uglyfoot: Trade Y1 R1 Xchg

34) spearjr: Build G2 Spearjr

35) alexcobo: Build Y1 Ariel

36) smilingra: Build Y3 Gamma

37) Uglyfoot: Build Y3 Xchg

38) spearjr: Build G2 Endor

39) alexcobo: Move Y1 Ariel Beta

40) smilingra: Trade Y3 R3 Beta

41) Uglyfoot: Discover Y3 Xchg R3 Heat

42) spearjr: Sacrifice Y2 Endor
Move G1 Endor Smilingra
Move G2 Endor Smilingra

43) alexcobo: Build Y2 Ariel

44) smilingra: Trade G3 R3 Smilingra

45) Uglyfoot: Build Y3 Xchg

46) spearjr: Build G2 Smilingra
	smilingra: spearjr, what did I ever do to you? :)

47) alexcobo: Build R1 Alexcobo
	spearjr: smilinigra -> Nothing, just saw an opportunity.

48) smilingra: Sacrifice R3 Beta
Attack G2E Smilingra
Attack G1E Smilingra
Attack G2E Smilingra

49) Uglyfoot: Sacrifice Y2 Xchg
Move G1 Xchg Beta
Move G1 Beta Smilingra
Catastrophe Smilingra G

50) spearjr: Trade G2 Y2 Spearjr

51) alexcobo: Move R1 Alexcobo Ariel

52) smilingra: Build G1 Beta

53) Uglyfoot: Move G1 Uglyfoot Xchg

54) spearjr: Discover B1 Endor G1 Home

55) alexcobo: Build Y3 Breta

56) smilingra: Discover G1 Beta B2 Zeta

57) Uglyfoot: Build G2 Uglyfoot

58) spearjr: Build G2 Spearjr

59) alexcobo: Sacrifice R1 Ariel
Attack Y1W Beta

60) smilingra: Build G2 Beta

61) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Xchg
Build G3 Uglyfoot
Build R1 Xchg
	alexcobo: Nothing personal...

62) spearjr: Build G3 Spearjr

63) alexcobo: Sacrifice Y2 Ariel
Move Y1 Beta Spearjr
Move Y1 Breta Spearjr
Catastrophe Spearjr Y
	smilingra: I know, but why does everyone have to come after *me*? :)

64) smilingra: Trade G2 R2 Beta

65) Uglyfoot: Sacrifice Y3 Xchg
Move G2 Xchg Heat
Move R1 Xchg Heat
Move R1 Xchg Zeta

66) spearjr: Trade G3 Y3 Spearjr
	alexcobo: My palms are sweaty as I do this!

67) alexcobo: Build Y1 Ariel
	spearjr: Boo

68) smilingra: Sacrifice R2 Beta
Attack Y1S Beta
Attack R1N Zeta

69) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Heat
Build G3 Xchg
Build G3 Uglyfoot

70) spearjr: Build Y1 Spearjr
	smilingra: double boo - I thought I could pass on it, since Uglyfoot would take care of it.

71) alexcobo: Build Y2 Breta
	Uglyfoot: My only defense is that I didn't want all those green ships in the supply just yet.  If I cripple myself will my opponents give me time to recover?  Nope, it is a competitive crowd.

72) smilingra: Build Y2 Beta

73) Uglyfoot: Build Y2 Heat

74) spearjr: Discover G2 Spearjr B3 Tichu

75) alexcobo: Move Y1 Ariel Beta

76) smilingra: Trade Y1 R1 Beta

77) spearjr: Sacrifice Y3 Spearjr
Move G2 Tichu Home
Move G2 Home Alexcobo
Discover B1 Home Y2 Fort
Catastrophe Alexcobo Green

78) alexcobo: Move R1 Alexcobo Ariel

79) smilingra: Sacrifice Y3 Gamma
Move R1 Zeta Heat
Move R1 Beta Gamma
Move R1 Gamma Heat
Catastrophe Heat R

80) Uglyfoot: Trade G2 R2 Uglyfoot
	Uglyfoot: Hmm...  The xchg system should have disappeared when I moved my last ship out of the system.  It is a minor annoyance to this game but the <b1> should be back in supply.
	Aaron: *sighs* I guess I really did blow something up with my change yesterday.  I'll take a look asap.
	Aaron: Let me know if anything else odd happens.  Cheers!

81) spearjr: Build G1 Spearjr

82) alexcobo: Build R1 Ariel
	alexcobo: Hmm. Lousy situation. Do I intercep the fleet at Heat or do I deal with the fleat at Homeworld?
Alas! Homeworld security first!

83) smilingra: Build G1 Zeta

84) Uglyfoot: Move R2 Uglyfoot Ariel
	smilingra: Please don't force Uglyfoot to surrender, as something went wrong and it now appears that he is out of time (when he in fact, is not).  This is due to a bug in the system, it appears.
	Aaron: Corrected.
	smilingra: Thanks, Aaron.  Also, alexcobo, I'm sure you'll appreciate my move.  Uglyfoot probably does not. :p
	alexcobo: Beautiful move! Your earned my gratitud for the rest of the game!
	Uglyfoot: Wow.  I had too many eggs in one basket.  And yes, smilingra, that was a good move.

85) spearjr: Build G2 Spearjr
	alexcobo: I will be out for a few days, starting Saturday, due to a surgery I need to have done. I once saw an automated message for a player that went out for a few days. Do you know how to set up a message like that?
	smilingra: Click on My SDG.  When that page loads, scroll down to User Information for alexcobo (it's the first line in red).  Below that, in small text, there are three links in parenthesis.  The middle one is Manage Aways.  Click on that and follow the instructions on the next page.  Hope that the surgery goes well and you'll be back playing soon!

Thanks for the compliments on my move.  I just hope that you won't return the favor. :)

86) alexcobo: Move Y3 Breta Ariel

87) smilingra: Build G2 Beta

88) Uglyfoot: Build R1 Ariel
Catastrophe Ariel R

89) spearjr: Sacrifice G3 Spearjr
Build Y1 Spearjr
Build Y3 Spearjr
Build B1 Fort

90) alexcobo: Build Y3 Breta

91) smilingra: Build Y3 Gamma

92) Uglyfoot: Build G2 Uglyfoot

93) spearjr: Sacrifice Y3 Spearjr
Move G2 Spearjr Uglyfoot
Move G1 Spearjr Uglyfoot
Move B1 Fort Ariel
Catastrophe Uglyfoot G
	Uglyfoot: Not really what I wanted to do but it'll have to do.

94) alexcobo: Sacrifice Y2 Breta
Move Y1 Beta Spearjr
Move Y3 Breta Spearjr
Catastrophe Spearjr Y

95) smilingra: Move Y2 Beta Alexcobo

96) alexcobo: Trade Y3 R3 Alexcobo

97) smilingra: Move Y2 Alexcobo Beta

98) alexcobo: Move Y1 Ariel Alexcobo

99) smilingra: Discover G1 Beta B1 Zzz

100) alexcobo: Trade Y1 R1 Alexcobo
	alexcobo: Fortunately for me the surgery was not necesary.
I am not sure how this works but, after East eliminated North. Wasn't my turn?

101) smilingra: Build G1 Zzz
	smilingra: I froze the game, because it does look like we skipped Alex's (South) turn.
	Aaron: So who's turn should it be?  That I can fix right away.  Please leave the admin page active so I don't lose track of the game, but I won't be able to fix the underlying problem for a little bit.
	smilingra: Well, we need to undo the last three turns, and then set it to South.  Aaron, can you do that, or do you need each one of us to undo our last turn?
	smilingra: Well, we need to undo the last three turns, and then set it to South.  Aaron, can you do that, or do you need each one of us to undo our last turn?
	smilingra: Oops!  Needed to leave the admin page button active!
	Aaron: Let me know if that didn't work.

102) alexcobo: Move Y3 Ariel Fort
	alexcobo: I eliminated East player (spearjr). Now it should be West player's turn (smilingra)
	alexcobo: And b1 ship at ariel and the system fort should be gone also
	Aaron: Sorry, I haven't been able to track down the fundamental problem.  I'll get this specific instance fixed and take a look at the code just as soon as I can.
	Aaron: Sorry, why should the b1 ship in Ariel not be there?
	spearjr: The ships should be gone because it belonged to the East seat. Which has been eliminated.
	Aaron: My reading of the rules does not say this.  Any remaining ships are left stranded and unable to complete any actions as their government has collapsed.  They are still open to attack.

Fixing the "Current Player" flag now...
	Aaron: Done.

103) smilingra: Trade G1 R1 Zzz

104) alexcobo: Sacrifice R1 Alexcobo
Attack B1E Fort

105) smilingra: Build R1 Zzz

106) alexcobo: Discover B1 Fort G3 Cow

107) smilingra: Sacrifice Y2 Gamma
Move R1 Zzz Alexcobo
Move R1 Zzz Alexcobo

108) alexcobo: Trade R3 B3 Alexcobo

109) smilingra: Sacrifice Y3 Gamma
Move R3 Smilingra Beta
Move R3 Beta Alexcobo
Move Y2 Beta Smilingra

110) alexcobo: Trade B1 R1 Cow

111) smilingra: Attack B3S Alexcobo

	smilingra: Good game, all!
	alexcobo: Good game! I did not know this game could have such twistes!
	Uglyfoot: Congrats, smilingra.  Good game everyone!
	spearjr: Congrats. Good game all.
	Aaron: I'm clearing the page because I don't see any chat regarding a problem.  If there is something that needs my attention, please don't hesitate to page me again.  Cheers!


10331)
Variants: "Hard time"
Started: 2008.1.28, Ended: 2008.2.25
Participants: smilingra (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3
	smilingra: I'm a glutton for punishment!  Looking forward to learning a bunch more...
	Jesse: Very well.

2) smilingra: Homeworld B1 Y2 G3
	Jesse: So, what kind of small system marker are you not going to choose? XD

3) Jesse: Build G1 Jesse
	smilingra: Yeah, no green planets to make it hard to get into the green economy. :)
	Jesse: A medium or large green would be okay.  Of course, choosing the same color ship as your opponent makes it easier to maintain a color balance in the early game.

4) smilingra: Build G1 Smilingra

5) Jesse: Trade G1 Y1 Jesse
	smilingra: I'll stop copying you at some time - I promise :)

6) smilingra: Discover G1 Smilingra B3 Alpha

7) Jesse: Build G1 Jesse

8) smilingra: Build G1 Alpha

9) Jesse: Build G2 Jesse

10) smilingra: Trade G1 Y1 Alpha

11) Jesse: Discover G2 Jesse Y2 Transience
	Jesse: Ordinarily, I wouldn't want to build three greens in my home system, but in the early game it's often possible to get away with things like this temporarily.  You have no means of moving a ship here, so I'm not concerned about being near to catastrophe.

12) smilingra: Build G1 Alpha

13) Jesse: Build G2 Transience
	smilingra: Understood.  I still built a y1 just in case you weren't going to do anything about it. :)

14) smilingra: Build G2 Smilingra

15) Jesse: Discover G2 Transience B3 Directionality
	Jesse: So, you leave the G3 for me...

16) smilingra: Discover G2 Smilingra G3 Beta
	Jesse: Rather than taking it directly (at Jesse, where you can't reach), I'm going to spread out first, since you're too concentrated to build another green safely.  Moving a green up close to your home system increases the pressure on you to diversify there, and prevents you from simply building the G3 yourself.
	Jesse: There is another way to deny me the G3, which I will leave for you to discover.

17) Jesse: Trade G1 R1 Jesse
	smilingra: How was that?
	Jesse: That's the way.

18) smilingra: Trade G1 R1 Alpha
	Jesse: Time to pick up a gun, I think.

19) Jesse: Move R1 Jesse Transience

20) smilingra: Move R1 Alpha Smilingra

21) Jesse: Build G1 Directionality

22) smilingra: Build R2 Smilingra

23) Jesse: Build R2 Transience

24) smilingra: Move R2 Smilingra Alpha

25) Jesse: Move R2 Transience Directionality
	smilingra: I'm not sure how all of this is going to play out... you'll have to give me pointers when it's all over (as I'm sure that doing so now would spoil it).
	Jesse: Well, you're developing just fine.  One fault I can point out is that you've wasted one of your last three turns, by moving the R1 home before building the R2.  If you'd built first, you wouldn't have used an extra turn moving the R2 back.  You can't avoid inefficient play like that all the time.  (Sometimes it's forced.)  But you obviously want to avoid wasting turns if you can help it.

26) smilingra: Build G1 Smilingra

27) Jesse: Trade G2 Y2 Directionality

28) smilingra: Build G2 Alpha

29) Jesse: Sacrifice G3 Jesse
Build Y1 Directionality
Build Y3 Jesse
Build Y3 Jesse

30) smilingra: Sacrifice G3 Smilingra
Build G3 Smilingra
Build Y3 Alpha
Build G3 Beta

31) Jesse: Sacrifice Y2 Directionality
Move G2 Transience Beta
Discover Y1 Jesse B2 Discernment
Catastrophe Beta G

32) smilingra: Discover G2 Alpha B2 Gamma
	Jesse: Clever.  Hmm...

33) Jesse: Trade Y3 G3 Jesse

34) smilingra: Build G2 Gamma

35) Jesse: Build G2 Jesse

36) smilingra: Build G3 Alpha
	Jesse: I've got myself into a somewhat difficult situation, here.  I must be more careful.

37) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y2 Discernment
Build Y3 Directionality

38) smilingra: Sacrifice G3 Alpha
Build G3 Alpha
Build R2 Smilingra
Build R3 Alpha
	smilingra: At least I'm not quite experienced enough to take advantage of it. :)

39) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R3 Directionality
Build R3 Transience
	Jesse: If I'm going to lose the advantage in green, at least I can grab a yellow advantage in return.

40) smilingra: Move R3 Alpha Discernment

41) Jesse: Sacrifice Y2 Discernment
Discover Y1 Discernment B1 Vastness
Move R3 Directionality Gamma

42) smilingra: Sacrifice Y3 Alpha
Move G2 Gamma Jesse
Move G2 Gamma Jesse
Move G1 Alpha Discernment
Catastrophe Jesse G

43) Jesse: Build G2 Directionality

44) smilingra: Build G2 Alpha

45) Jesse: Sacrifice G2 Directionality
Build Y2 Jesse
Build Y3 Vastness

46) smilingra: Discover R2 Smilingra G3 Zeta

47) Jesse: Build G2 Directionality

48) smilingra: Move R2 Alpha Transience

49) Jesse: Move R3 Transience Zeta
	Jesse: It's painful to be frozen, or nearly frozen, out of any color.  But of all colors, it is perhaps most painful to be short on yellow, as I'm sure you're seeing now.

50) smilingra: Attack R1 Transience

51) Jesse: Sacrifice Y3 Vastness
Move G1 Directionality Smilingra
Move G2 Directionality Smilingra
Move Y3 Directionality Smilingra
Catastrophe Smilingra G
	Jesse: Oh, hmm.  That wasn't necessary.  Oh well.

52) smilingra: Move G3 Alpha Smilingra

53) Jesse: Sacrifice R3 Gamma
Attack R2 Zeta
Attack R1 Smilingra
Attack G3 Smilingra
	Jesse: I'm really not sure why I was focused on getting that r3 into position, rather than using a y3.

	smilingra: not that it makes much difference...
	Jesse: I'm sure there's a lesson in there somewhere, but I'm not sure how to formulate it beyond, "Watch what's on your doorstep."  Good game.  You seem to be picking it up quickly.  I'll have to remember to be careful when I play against you.
	smilingra: Thanks for the words of encouragement.  I'm holding my own in a four-player game - we've already eliminated one of them.  I think that the main lesson to hold is that you need to keep diversified.  When I got frozen out of yellow, I was in big trouble.  It's been fun, and I look forward to another match soon.
	smilingra: Thanks for the words of encouragement.  I'm holding my own in a four-player game - we've already eliminated one of them.  I think that the main lesson to hold is that you need to keep diversified.  When I got frozen out of yellow, I was in big trouble.  It's been fun, and I look forward to another match soon.


10304)
Variants: "Hard time"
Started: 2008.2.4, Ended: 2008.2.7
Participants: jeep (S), matteo (N)
Winner: jeep



10238)
Variants: "Unrated, Hard time"
Started: 2008.2.4, Ended: 2008.2.7
Participants: scottobear (S), sordros (N)
Winner: sordros

1) sordros: Homeworld B3 Y1 G3

	sordros: Hi!


10397)
Variants: "Unrated, Hard time"
Started: 2008.2.5, Ended: 2008.2.8
Participants: scottobear (S), divreon (N)
Winner: divreon

1) divreon: Homeworld Y3 G2 B3

	divreon: I'm new at homeworlds on Superduper. If I make a mistake in the order process, please tell me.


10235)
Started: 2008.2.5, Ended: 2008.2.8
Participants: divreon (S), MikeYarrum (N)
Winner: divreon

	divreon: I'm new at homeworlds on Superduper. If I make a mistake in the order process, please tell me.


10490)
Variants: "Hard time"
Started: 2008.2.13, Ended: 2008.3.25
Participants: nycavri (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R3 B2 G3

2) nycavri: Homeworld Y1 B2 G3

3) mneme: Build G1 Mneme

4) nycavri: Build G1 Nycavri
	mneme: Have fun!
	nycavri: 'hanks, you too . . .

5) mneme: Trade G1 Y1 Mneme

6) nycavri: Build G1 Nycavri

7) mneme: Build Y1 Mneme

8) nycavri: Discover G1 Nycavri Y3 Mvb

9) mneme: Build Y2 Mneme

10) nycavri: Trade G1 B1 Nycavri

11) mneme: Discover Y1 Mneme G1 Jolly

12) nycavri: Build G1 Nycavri

13) mneme: Build G2 Mneme

14) nycavri: Build G2 Nycavri

15) mneme: Discover Y1 Jolly B2 Harpo

16) nycavri: Trade G2 Y2 Nycavri

17) mneme: Sacrifice G3 Mneme
Build Y2 Harpo
Build Y3 Harpo
Build Y3 Mneme

18) nycavri: Discover Y2 Nycavri G3 Mvg

19) mneme: Trade Y2 G2 Harpo

20) nycavri: Trade G1 R1 Nycavri

21) mneme: Trade Y3 R3 Harpo

22) nycavri: Build R1 Nycavri

23) mneme: Discover Y2 Mneme R1 Danger

24) nycavri: Build R2 Nycavri

25) mneme: Build R2 Harpo

26) nycavri: Move R2 Nycavri Mvb

27) mneme: Discover Y2 Danger B3 River

28) nycavri: Build G1 Nycavri

29) mneme: Move R3 Harpo Mvg

30) nycavri: Discover Y2 Mvg B1 Iw

31) mneme: Sacrifice G2 Harpo
Build Y2 River
Build Y3 Harpo

32) nycavri: Build G1 Mvb

33) mneme: Move Y3 Harpo Mvb

34) nycavri: Move R2 Mvb Iw

35) mneme: Sacrifice R2 Harpo
Attack G1 Mvb
Attack G1 Mvb

36) nycavri: Discover B1 Nycavri G3 Jw

37) mneme: Sacrifice Y3 Mneme
Move G1 Mvb Nycavri
Move G1 Mvb Nycavri
Move Y3 Mvb Nycavri
Catastrophe Nycavri G

38) nycavri: Move Y2 Iw Mneme

39) mneme: Sacrifice R3 Mvg
Attack R1 Nycavri
Attack R1 Nycavri
Attack Y2 Mneme
	mneme: I believe it is time to make an end to this.

	mneme: thanks for the game!
	nycavri: Still never won a real game here on SDG . . .
	mneme: How do you define "real game"?  Or do you mean "real game of Binary Homeworlds?"  It's a pretty hard game, very inelastic in terms of skill/victory.

	nycavri: I mean that, technically, I've won two games on SDG, but both were against 100% first timers who literally didn't know what they were doing.

I understand that the competition here is very stiff - the fact is, I win more than I lose face to face - but it can get frustrating.  I don't feel that I'm especially bad, just the locals are especially good!

I guess now I know how people feel playing me at Penguin Soccer . . .

*grin*
	mneme: Ah, gotcha, yeah.  I -never- beat TwoShort, but do reasonably well against everyone else (I think I'm a little better than zoltar; not sure who else is up in the top echeon)
	mneme: If we found one another at the NYC thing, I suppose I could try to help you with that "winning in person" thing too.  :P  FWIW, my livejournal has a decent pic: http://mnemex.livejournal.com
	mneme: Oh, right, Andy.  I lose to Andy too, though I may have gotten better than the last time I played him.



9359)
Variants: "Hard time"
Started: 2008.2.10, Ended: 2008.2.16
Participants: theodorelogan (S), tibuga (N), kohen (E)
Winner: theodorelogan



10372)
Started: 2008.2.10, Ended: 2008.11.15
Participants: ts52 (S), theodorelogan (N)
Winner: ts52



10398)
Variants: "Unrated"
Started: 2008.2.10, Ended: 2008.3.6
Participants: theodorelogan (S), BenBen (N)
Winner: BenBen

1) BenBen: Homeworld B3 R2 G3



10402)
Started: 2008.2.10, Ended: 2008.4.20
Participants: theodorelogan (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld Y2 B1 G3



10415)
Variants: "Hard time"
Started: 2008.2.11, Ended: 2008.3.7
Participants: random56 (S), jeep (N)
Winner: jeep

1) jeep: Homeworld B3 Y1 G3
	jeep: I canceled this standing challenge...  I'll play one more, but I'll be playing at the slowest rate, I'm sure.

2) random56: Homeworld B1 G2 R3

3) jeep: Build G1 Jeep

4) random56: Build R1 Random56

5) jeep: Build G1 Jeep

6) random56: Trade R1 Y1 Random56

7) jeep: Discover G1 Jeep Y2 Mover

8) random56: Build Y1 Random56

9) jeep: Build G1 Mover

10) random56: Discover Y1 Random56 G3 O-ma-cron

11) jeep: Discover G1 Mover B3 Changer



10453)
Started: 2008.2.13, Ended: 2008.2.18
Participants: MikeYarrum (S), sordros (N)
Winner: sordros

1) sordros: Homeworld B3 Y1 G3



10477)
Variants: "Hard time"
Started: 2008.2.13, Ended: 2008.3.3
Participants: sordros (S), Keith (N)
Winner: Keith

1) Keith: Homeworld Y3 B3 G3 *
	Keith: Hello Sordos.  Nice to see you on the other side again.

2) sordros: Homeworld Y1 B3 G3
	sordros: Hello there!
Good luck

3) Keith: Build G1 Keith
	sordros: whoops, didn't realize I was moving second :-)

4) sordros: Build G1 Sordros
	Keith: I thought I would start out by trying to throw you a curve.  :)

5) Keith: Trade G1 R1 Keith

6) sordros: Trade G1 R1 Sordros

7) Keith: Build G1 Keith

8) sordros: Build G1 Sordros

9) Keith: Trade G1 Y1 Keith

10) sordros: Trade G1 B1 Sordros

11) Keith: Build Y1 Keith

12) sordros: Build G1 Sordros

13) Keith: Discover Y1 Keith G2 Midworld

14) sordros: Build G1 Sordros

15) Keith: Build Y2 Midworld

16) sordros: Discover G1 Sordros G2 Eco2

17) Keith: Build G1 Keith

18) sordros: Discover G1 Sordros Y2 Sol2

19) Keith: Discover G1 Keith Y2 Born

20) sordros: Discover G1 Sol2 G3 Sol3

21) Keith: Build G2 Keith

22) sordros: Build B1 Sordros

23) Keith: Sacrifice G3 Keith
Build G3 Keith
Build Y2 Midworld
Build Y3 Keith

24) sordros: Sacrifice G1 Eco2
Build G1 Sordros

25) Keith: Sacrifice Y3 Keith
Move G1 Born Sordros
Move G2 Keith Midworld
Move G2 Midworld Sordros
Catastrophe Sordros Green

	sordros: Hmm... definitely need more practice, didn't see that coming :-)
Thanks for the game.
	Keith: It was the small universe.  We were only two apart rather than three.  Where three of a color are easily threatend with a y3, here, two of a kind are easily threatened if one ship is one away.

It was heavier handed than I like, however, it is in keeping with the ladder system.  I am available for a less heavy handed unrated game if you like.
	sordros: Ok, let me finish up some of my unfinished games and I'll start one up.  I think I can learn a lot from playing with you :-)


10403)
Variants: "Unrated, Hard time"
Started: 2008.2.14, Ended: 2008.2.17
Participants: sordros (S), scottobear (N)
Winner: sordros



10215)
Variants: "Hard time"
Started: 2008.2.14, Ended: 2008.2.26
Participants: TwoShort (S), spearjr (N)
Winner: TwoShort

1) spearjr: Homeworld G3 B1 Y3

2) TwoShort: Homeworld B1 G2 B3 *
	spearjr: Hello, Good luck and have fun.

3) spearjr: Build Y1 Spearjr
	TwoShort: Howdy

4) TwoShort: Build B1 Twoshort

5) spearjr: Trade Y3 B3 Spearjr
	spearjr: I imagine you will smash me, I only hope to learn something from the experience. Feel free to tell me when I do something truly stupid.

6) TwoShort: Trade B3 Y3 Twoshort

7) spearjr: Build B2 Spearjr

8) TwoShort: Build B2 Twoshort
	TwoShort: OK...  So far you're doing fine.  I'd generally recommend against a small blue star as first player, because it lets me play this opening... but you've found the right response to it.

9) spearjr: Discover B2 Spearjr G2 Alpha

10) TwoShort: Discover B2 Twoshort G3 Grogar

11) spearjr: Build B2 Alpha

12) TwoShort: Build B3 Grogar
	TwoShort: Hmm, I wouldn't call that move stupid, but if I'm correctly predicting where it will lead in a few moves I think you'll regret it.  One should generaly be wary of growing the last 2 pointer of a color.

13) spearjr: Build B3 Alpha

14) TwoShort: Trade B3 G3 Grogar

15) spearjr: Sacrifice B2 Alpha
Trade B3 Y3 Alpha
Trade B2 G2 Alpha

16) TwoShort: Build B2 Grogar

17) spearjr: Build Y1 Spearjr

18) TwoShort: Trade B2 Y2 Grogar

19) spearjr: Trade Y1 R1 Spearjr

20) TwoShort: Trade B1 R1 Twoshort

21) spearjr: Build Y1 Alpha
	spearjr: If this was in person, I think I could formulate some sort of strategy, but I'm totally floundering here. Sigh.

22) TwoShort: Build B1 Grogar
	TwoShort: Actually, I was thinking you were doing really well, and despite your claims, I'd better stop looking for you to make newbie mistakes.  Have you played much off-line?
  It is interesting how playing here differs from face-to-face... I'm actually not nearly as good in person. 

23) spearjr: Discover G2 Alpha B3 Beta
	spearjr: I'm in the midst of a 4 player game here and I've played 7 games off-line. However we had a number of rules wrong for all but 2 of those. (We forgot sacrifice completely!! And we were allowing players to create a new ship in a system, so long as they had the green power in the system, regardless if they already had a ship of that color there.)

24) TwoShort: Discover B1 Grogar B2 Boomtime

25) spearjr: Trade B3 Y3 Spearjr

26) TwoShort: Sacrifice G3 Grogar
Build B2 Boomtime
Build B3 Grogar
Build B3 Grogar

27) spearjr: Build G1 Beta
	spearjr: You're freakin me out with all those blue on my boarder.

28) TwoShort: Discover B3 Grogar Y2 Yolonda
	spearjr: And don't have a clue how to stop it.

29) spearjr: Build G1 Beta

30) TwoShort: Sacrifice B2 Boomtime
Trade B3 G3 Yolonda
Trade B3 R3 Grogar

31) spearjr: Sacrifice Y3 Alpha
Move G1 Beta Twoshort
Move G1 Beta Twoshort
Move G2 Beta Twoshort
Catastrophe Twoshort Green

32) TwoShort: Sacrifice G3 Yolonda
Build B2 Grogar
Build B3 Boomtime
Build B3 Grogar

33) spearjr: Build Y1 Alpha

34) TwoShort: Move B2 Grogar Alpha

35) spearjr: Build Y2 Alpha

36) TwoShort: Sacrifice R3 Grogar
Attack Y2 Alpha
Attack Y1 Alpha
Attack Y1 Alpha

37) spearjr: Build R1 Spearjr

38) TwoShort: Build B3 Alpha

39) spearjr: Discover Y1 Spearjr G2 Thatsnomoon

40) TwoShort: Trade B3 R3 Grogar

41) spearjr: Trade Y3 B3 Spearjr

42) TwoShort: Sacrifice Y3 Twoshort
Move B1 Boomtime Spearjr
Move B2 Alpha Spearjr
Move Y2 Alpha Spearjr
Catastrophe Spearjr Blue

	spearjr: Good game.


10513)
Variants: "Unrated"
Started: 2008.2.16, Ended: 2008.9.29
Participants: msolis_cr (S), sordros (N)
Winner: sordros

1) sordros: Homeworld Y1 B3 G3

	sordros: Idiay Mau? se rinde?


10478)
Started: 2008.2.21, Ended: 2008.2.25
Participants: Horowits (S), MikeYarrum (N)
Winner: Horowits



10504)
Variants: "Hard time"
Started: 2008.2.22, Ended: 2008.3.13
Participants: TwoShort (S), Horowits (N)
Winner: TwoShort

1) Horowits: Homeworld B3 G2 R3

2) TwoShort: Homeworld R1 B3 G3

3) Horowits: Build R1 Horowits
	TwoShort: Greetings

4) TwoShort: Build G1 Twoshort
	Horowits: ahoy

5) Horowits: Trade R1 G1 Horowits

6) TwoShort: Trade G1 Y1 Twoshort

7) Horowits: Build G1 Horowits

8) TwoShort: Build G1 Twoshort

9) Horowits: Trade G1 Y1 Horowits

10) TwoShort: Discover G1 Twoshort B2 Bluestar

11) Horowits: Build R1 Horowits

12) TwoShort: Build G1 Twoshort

13) Horowits: Build G2 Horowits

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Bluestar
Build G3 Twoshort

15) Horowits: Discover G2 Horowits R1 Doom

16) TwoShort: Trade G2 R2 Bluestar

17) Horowits: Move R1 Horowits Doom

18) TwoShort: Discover G1 Twoshort Y2 Yolonda

19) Horowits: Build R2 Horowits

20) TwoShort: Sacrifice G3 Bluestar
Build G2 Twoshort
Build G3 Yolonda
Build G3 Bluestar

21) Horowits: Move R2 Horowits Doom

22) TwoShort: Trade G3 Y3 Bluestar

23) Horowits: Move G1 Horowits Doom

24) TwoShort: Move R2 Bluestar Doom
Catastrophe Doom Red

25) Horowits: Trade Y1 G1 Horowits

26) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Bluestar
Build G3 Twoshort

27) Horowits: Build R1 Horowits

28) TwoShort: Trade G2 R2 Bluestar
	Horowits: Happy Extra-Day-In-Febuary-Every-Four-Years.

29) Horowits: Trade R1 Y1 Horowits

30) TwoShort: Trade G3 B3 Bluestar

31) Horowits: Build R1 Horowits

32) TwoShort: Discover B3 Bluestar B1 Checkmate



10573)
Started: 2008.2.22, Ended: 2008.3.30
Participants: velgarath (S), maka (N)
Winner: velgarath

1) maka: Homeworld G2 B1 Y3

2) velgarath: Homeworld B3 G1 Y3

3) maka: Build Y1 Maka

4) velgarath: Build Y1 Velgarath

5) maka: Discover Y1 Maka G3 Loko

6) velgarath: Discover Y1 Velgarath B2 Friki

7) maka: Move Y1 Loko Maka

8) velgarath: Build Y1 Velgarath

9) maka: Trade Y1 B1 Maka

10) velgarath: Trade Y1 G1 Velgarath

11) maka: Build Y1 Maka

12) velgarath: Build G1 Velgarath

13) maka: Discover Y1 Maka G3 Keke

14) velgarath: Move G1 Velgarath Friki

15) maka: Move B1 Maka Keke

16) velgarath: Build G2 Friki

17) maka: Trade Y1 R1 Keke

18) velgarath: Trade G2 R2 Friki

19) maka: Build B1 Keke

20) velgarath: Build R1 Friki

21) maka: Build B2 Keke

22) velgarath: Move R2 Friki Keke

23) maka: Build R1 Keke

24) velgarath: Attack B2 Keke
	maka: Yo a este juego soy malisimo :)

25) maka: Build R2 Keke
Catastrophe Keke Red

26) velgarath: Trade B2 R2 Keke

27) maka: Build Y1 Maka

28) velgarath: Attack B1 Keke

29) maka: Trade Y1 R1 Maka

30) velgarath: Attack B1 Keke

31) maka: Build R1 Maka

32) velgarath: Build R2 Keke

33) maka: Discover R1 Maka B3 Loko

34) velgarath: Build Y1 Friki

35) maka: Trade R1 Y1 Loko

36) velgarath: Build G2 Friki

37) maka: Build Y2 Maka

38) velgarath: Move Y1 Friki Keke

39) maka: Trade Y2 G2 Maka

40) velgarath: Build G3 Velgarath

41) maka: Build G3 Maka

42) velgarath: Build Y2 Keke

43) maka: Discover G3 Maka R3 Fire

44) velgarath: Build Y2 Friki

45) maka: Build Y2 Maka

46) velgarath: Sacrifice Y2 Friki
Move Y2 Keke Maka
Move Y1 Keke Maka
Catastrophe Maka Y

47) maka: Sacrifice Y1 Loko
Discover G3 Fire Y2 Sun

48) velgarath: Trade B1 Y1 Keke

49) maka: Move G3 Sun Velgarath
Catastrophe Velgarath Green

50) velgarath: Move G1 Friki Velgarath

51) maka: Build G1 Maka

52) velgarath: Trade Y3 R3 Velgarath

53) maka: Trade G2 Y2 Maka

54) velgarath: Build G1 Velgarath

55) maka: Trade G1 B1 Maka

56) velgarath: Sacrifice Y1 Friki
Move R3 Velgarath Maka

57) maka: Build R1 Maka

58) velgarath: Sacrifice R2 Keke
Attack R1 Maka
Attack R1 Maka

59) maka: Trade Y2 R2 Maka
Catastrophe Maka Red

60) velgarath: Move R2 Keke Maka
	maka: lo tengo chungo :)

61) maka: Build B2 Maka

62) velgarath: Move B1 Keke Maka
Catastrophe Maka B
	velgarath: creo que esta es mia, si no hay sorpresas

	maka: muy bien. la verdad es que este juego con todo lo bueno que me parece no acabo de pillarle el truco... me cuesta mogollon...


10560)
Started: 2008.2.24, Ended: 2008.12.22
Participants: slyfordtrabbit (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld G1 B2 Y3
	slyfordtrabbit: Homeworld b3 y2 g3

2) slyfordtrabbit: Homeworld B3 Y1 G3

3) MatrixFrog: Build Y1 Matrixfrog
	slyfordtrabbit: Just FYI -- this is my first game, so I may not be much of a challenge.  :(

4) slyfordtrabbit: Build G1 Slyfordtrabbit

5) MatrixFrog: Build Y1 Matrixfrog

6) slyfordtrabbit: Discover G1 Slyfordtrabbit Y2 Flotsam
	slyfordtrabbit: build y2 at slyfordtrabbit

7) MatrixFrog: Trade Y1 B1 Matrixfrog

8) slyfordtrabbit: Build G1 Slyfordtrabbit
	slyfordtrabbit: build b1 floatsam

9) MatrixFrog: Build B1 Matrixfrog

10) slyfordtrabbit: Trade G1 B1 Slyfordtrabbit

11) MatrixFrog: Trade B1 G1 Matrixfrog

12) slyfordtrabbit: Build G2 Slyfordtrabbit

13) MatrixFrog: Build G2 Matrixfrog

14) slyfordtrabbit: Discover G1 Flotsam Y3 Jetsam

15) MatrixFrog: Discover G2 Matrixfrog Y3 Beach

16) slyfordtrabbit: Move G1 Jetsam Matrixfrog

17) MatrixFrog: Trade G1 R1 Matrixfrog
	slyfordtrabbit: Just an FYI -- I may or may not be able to make moves between Tuesday and Friday -- I'll be out of town.

18) slyfordtrabbit: Sacrifice G3 Slyfordtrabbit
Build G1 Matrixfrog
Build G2 Matrixfrog
Build G3 Slyfordtrabbit
Catastrophe Matrixfrog Green

19) MatrixFrog: Move G2 Beach Matrixfrog
	MatrixFrog: How did I allow this to happen in two different games at the same time? I must be tired this week.

20) slyfordtrabbit: Trade G2 R2 Slyfordtrabbit
	slyfordtrabbit: I'm surprised it actually worked.  o.o  Don't worry; i'm sure I'll make a terrible error in the next few moves.

21) MatrixFrog: Build G1 Matrixfrog

22) slyfordtrabbit: Discover B1 Slyfordtrabbit Y2 Driftwood

23) MatrixFrog: Build R1 Matrixfrog



10563)
Started: 2008.2.24, Ended: 2008.2.24
Participants: MikeYarrum (S), slyfordtrabbit (N)
Winner: MikeYarrum



10589)
Started: 2008.2.26, Ended: 2008.3.1
Participants: spearjr (S), MikeYarrum (N)
Winner: spearjr



10459)
Variants: "Hard time"
Started: 2008.2.26, Ended: 2008.5.26
Participants: Uglyfoot (S), sordros (W), alexcobo (N), smilingra (E)
Winner: Uglyfoot

1) alexcobo: Homeworld G3 B2 Y3

2) smilingra: Homeworld B1 G2 Y3
	alexcobo: Hello! Good luck, everyone!

3) Uglyfoot: Homeworld B1 Y3 G3

4) sordros: Homeworld R1 B2 G3

5) alexcobo: Build Y1 Alexcobo

6) smilingra: Build Y1 Smilingra

7) Uglyfoot: Build G1 Uglyfoot

8) sordros: Build G1 Sordros

9) alexcobo: Discover Y1 Alexcobo G1 Andromeda

10) smilingra: Trade Y1 G1 Smilingra

11) Uglyfoot: Discover G1 Uglyfoot B2 Mall
	smilingra: sorry about the delay - I was moving and was out of town recently.

12) sordros: Trade G1 Y1 Sordros

13) alexcobo: Build Y1 Alexcobo

14) smilingra: Discover G1 Smilingra B3 Boron

15) Uglyfoot: Build G1 Uglyfoot

16) sordros: Build Y1 Sordros

17) alexcobo: Trade Y1 R1 Alexcobo

18) smilingra: Build G1 Boron

19) Uglyfoot: Build G2 Mall

20) sordros: Build G2 Sordros

21) alexcobo: Build Y1 Andromeda

22) smilingra: Trade G1 Y1 Boron

23) Uglyfoot: Trade G2 Y2 Mall

24) sordros: Trade Y1 B1 Sordros

25) alexcobo: Move R1 Alexcobo Andromeda

26) smilingra: Build Y1 Smilingra

27) Uglyfoot: Build Y2 Mall

28) sordros: Build Y2 Sordros

29) alexcobo: Build Y2 Alexcobo

30) smilingra: Trade Y1 R1 Smilingra

31) Uglyfoot: Trade Y2 B2 Mall

32) sordros: Discover B1 Sordros G3 Verdego

33) alexcobo: Move Y1 Andromeda Mall

34) smilingra: Build R1 Smilingra

35) Uglyfoot: Move B2 Mall Andromeda

36) sordros: Build B1 Verdego

37) alexcobo: Build Y1 Andromeda

38) smilingra: Build Y2 Boron

39) Uglyfoot: Trade G1 R1 Uglyfoot

40) sordros: Trade G2 R2 Sordros

41) alexcobo: Move R1 Andromeda Verdego

42) smilingra: Build Y2 Smilingra

43) Uglyfoot: Build R2 Uglyfoot

44) sordros: Move R2 Sordros Verdego

45) alexcobo: Build R2 Verdego

46) smilingra: Move R1 Smilingra Verdego
Catastrophe Verdego R

47) Uglyfoot: Sacrifice R2 Uglyfoot
Attack Y1N Andromeda
Attack Y1N Andromeda

48) sordros: Move Y2 Sordros Verdego

49) alexcobo: Trade Y3 R3 Alexcobo

50) smilingra: Trade Y2 R2 Smilingra

51) Uglyfoot: Trade Y1 B1 Andromeda

52) sordros: Trade B1 R1 Verdego

53) alexcobo: Discover Y1 Mall G3 Donthitme

54) smilingra: Move Y3 Smilingra Verdego

55) Uglyfoot: Build G1 Mall

56) sordros: Build Y1 Verdego

57) alexcobo: Build Y2 Donthitme

58) smilingra: Sacrifice R1 Smilingra
Attack R1W Verdego

59) Uglyfoot: Move Y1 Andromeda Verdego
Catastrophe Verdego Y

60) sordros: Build Y1 Sordros

61) alexcobo: Build R1 Alexcobo

62) smilingra: Attack B1W Verdego

63) Uglyfoot: Move G1 Mall Boron

64) sordros: Build G1 Sordros

65) alexcobo: Build Y1 Alexcobo

66) smilingra: Build R1 Smilingra

67) Uglyfoot: Build G2 Boron

68) sordros: Trade Y1 B1 Sordros

69) alexcobo: Discover Y2 Donthitme B2 Trader

70) smilingra: Build B3 Verdego

71) Uglyfoot: Build R2 Uglyfoot

72) sordros: Discover G1 Sordros B3 Azurra

73) alexcobo: Trade Y2 G2 Trader

74) smilingra: Trade B3 Y3 Verdego

75) Uglyfoot: Discover R2 Uglyfoot Y2 Move

76) sordros: Build G2 Sordros

77) alexcobo: Build Y1 Donthitme

78) smilingra: Sacrifice Y2 Boron
Move Y3 Verdego Smilingra
Move R2 Smilingra Boron

79) Uglyfoot: Sacrifice R1 Uglyfoot
Attack R2E Boron

80) sordros: Sacrifice G3 Sordros
Build G2 Azurra
Build G3 Sordros
Build Y2 Sordros

81) alexcobo: Move Y1 Donthitme Trader

82) smilingra: Build B3 Verdego

83) Uglyfoot: Sacrifice Y2 Mall
Move G2 Boron Smilingra
Move G1 Boron Smilingra

84) sordros: Trade G2 R2 Azurra

85) alexcobo: Build Y2 Donthitme

86) smilingra: Trade B3 Y3 Verdego

87) Uglyfoot: Build G2 Smilingra
Catastrophe Smilingra G

88) sordros: Move Y2 Sordros Azurra

89) alexcobo: Build G1 Trader

90) smilingra: Move Y3 Verdego Trader

91) Uglyfoot: Attack G1E Boron

92) sordros: Build Y2 Sordros

93) alexcobo: Sacrifice Y2 Alexcobo
Move G2 Trader Verdego
Move Y1 Trader Verdego

94) smilingra: Build B3 Verdego

95) Uglyfoot: Build G2 Uglyfoot

96) sordros: Build G2 Azurra

97) alexcobo: Sacrifice R1 Alexcobo
Attack R1E Verdego

98) smilingra: Trade B3 R3 Verdego

99) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Boron
Build G3 Uglyfoot
Build R1 Move

100) sordros: Sacrifice G3 Sordros
Build Y2 Azurra
Build Y3 Azurra
Build G3 Sordros

101) alexcobo: Sacrifice G2 Verdego
Build R1 Verdego
Build R2 Verdego
Catastrophe Verdego R

102) smilingra: Build B3 Verdego
	alexcobo: It was either that or keep running...

103) Uglyfoot: Attack Y1E Boron

104) sordros: Trade Y3 R3 Azurra

105) alexcobo: Build Y3 Alexcobo

106) smilingra: Trade B3 R3 Verdego

107) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Mall
Build G3 Uglyfoot
Build Y3 Boron

108) sordros: Trade R3 B3 Azurra

109) alexcobo: Move Y1 Verdego Mall

110) smilingra: Move Y3 Trader Verdego

111) Uglyfoot: Sacrifice Y3 Boron
Move G1 Mall Andromeda
Move B1 Andromeda Azurra
Move B2 Andromeda Azurra
Catastrophe Azurra B

112) sordros: Discover G2 Sordros B3 Azurra2

113) alexcobo: Build G1 Trader

114) smilingra: Build Y2 Verdego

115) Uglyfoot: Trade G2 R2 Uglyfoot

116) sordros: Build G2 Sordros

117) alexcobo: Build R1 Alexcobo

118) smilingra: Trade Y2 G2 Verdego

119) Uglyfoot: Build Y2 Boron
	smilingra: Going down to the wire there, eh Alex?

120) sordros: Trade Y2 R2 Sordros

121) alexcobo: Move Y2 Donthitme Andromeda

122) smilingra: Move R3 Verdego Trader

123) Uglyfoot: Move R1 Move Smilingra

124) sordros: Build Y2 Sordros

125) Uglyfoot: Sacrifice Y2 Boron
Move G1 Boron Sordros
Move G2 Boron Sordros
Catastrophe Sordros G

126) sordros: Trade Y2 G2 Sordros

127) Uglyfoot: Build G1 Uglyfoot

128) sordros: Build Y2 Sordros
	smilingra: That sucks!  I just resigned on two games because it didn't say that any games were waiting on me!  Good luck, you two!
	alexcobo: Same for me here. It did not say it was my turn!

129) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Andromeda
Build G3 Uglyfoot
Build G3 Mall

	sordros: Too weak to keep going on.  Congrats Uglyfoot!
	Uglyfoot: Thanks.



10590)
Started: 2008.2.27, Ended: 2008.3.3
Participants: MatrixFrog (S), wmshub (N)
Winner: MatrixFrog

1) wmshub: Homeworld G1 B2 Y3

2) MatrixFrog: Homeworld B1 G2 Y3
	wmshub: Hi, this is my first superdupergames game ever and my first homeworlds game
hope you don't mind if I'm just learning the game&system
	MatrixFrog: no problem. i'm hardly the homeworlds expert of the world, but let me know if you want any little tips or whatever

3) wmshub: Build Y1 Wmshub

4) MatrixFrog: Build Y1 Matrixfrog

5) wmshub: Trade Y1 G1 Wmshub

6) MatrixFrog: Build Y1 Matrixfrog

7) wmshub: Build G1 Wmshub

8) MatrixFrog: Trade Y3 G3 Matrixfrog

9) wmshub: Discover G1 Wmshub B3 Bigblue

10) MatrixFrog: Build G2 Matrixfrog

11) wmshub: Build G2 Bigblue

12) MatrixFrog: Discover G2 Matrixfrog Y3 Bigyellow

13) wmshub: Sacrifice Y3 Wmshub
Move G1 Bigblue Matrixfrog
Move G2 Bigblue Matrixfrog
Pass
Catastrophe Matrixfrog Green

14) MatrixFrog: Move G2 Bigyellow Wmshub
	MatrixFrog: This is why you don't create homeworlds that are size-identical to your opponent's homeworld. Oops.

15) wmshub: Trade G1 R1 Wmshub
	wmshub: Wow, I'm screwed now, aren't I?

Well, might as well get it over with...

16) MatrixFrog: Trade G2 R2 Wmshub
	MatrixFrog: Well, we're both relatively screwed, so don't give up hope just yet.

17) wmshub: Build R1 Wmshub

18) MatrixFrog: Build R1 Wmshub
Catastrophe Wmshub R
	wmshub: I see no way out for me! You can keep capturing my ships, I can only build red, eventually there will be a catastrophe and all my ships will be gone...
	MatrixFrog: Right, but you can trade one of your reds for another color. I probably have this game, but just in case, your best bet is probably to switch to yellow, and get to my homeworld asap.



10561)
Variants: "Hard time"
Started: 2008.2.29, Ended: 2008.3.3
Participants: alexcobo (S), Horowits (N)
Winner: alexcobo



10625)
Variants: "Hard time"
Started: 2008.3.2, Ended: 2008.3.13
Participants: slyfordtrabbit (S), h3d0 (N)
Winner: h3d0

1) h3d0: Homeworld B1 Y2 G3

2) slyfordtrabbit: Homeworld B3 G2 Y3

3) h3d0: Build G1 H3d0

4) slyfordtrabbit: Build Y1 Slyfordtrabbit

5) h3d0: Trade G1 R1 H3d0

6) slyfordtrabbit: Build Y1 Slyfordtrabbit

7) h3d0: Build R1 H3d0

8) slyfordtrabbit: Trade Y1 G1 Slyfordtrabbit

9) h3d0: Discover R1 H3d0 R3 C3p0

10) slyfordtrabbit: Build G1 Slyfordtrabbit

11) h3d0: Move G3 H3d0 C3p0



10626)
Variants: "Hard time"
Started: 2008.3.2, Ended: 2008.3.14
Participants: Snow (S), slyfordtrabbit (N)
Winner: Snow

1) slyfordtrabbit: Homeworld G2 Y1 B3

2) Snow: Homeworld G3 Y2 B3

3) slyfordtrabbit: Build B1 Slyfordtrabbit

4) Snow: Build B1 Snow (s)

5) slyfordtrabbit: Trade B1 G1 Slyfordtrabbit

6) Snow: Discover B1 Snow G1 Tf

7) slyfordtrabbit: Build B1 Slyfordtrabbit

8) Snow: Trade B1 Y1 Tf

9) slyfordtrabbit: Trade B1 Y1 Slyfordtrabbit

10) Snow: Build B1 Snow

11) slyfordtrabbit: Build Y2 Slyfordtrabbit

12) Snow: Trade B1 R1 Snow

13) slyfordtrabbit: Discover Y1 Slyfordtrabbit G3 Flotsam

14) Snow: Move R1 Snow Tf
	Snow: I'm not sure how you got that Y2... ah, the star had the third Y1.



10581)
Started: 2008.3.3, Ended: 2008.3.23
Participants: ts52 (S), Nupanick (N)
Winner: ts52

1) Nupanick: Homeworld B2 G3 Y3

2) ts52: Homeworld B1 Y2 G3

3) Nupanick: Build Y1 Nupanick
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) Nupanick: Build Y1 Nupanick

6) ts52: Build G1 Ts52

7) Nupanick: Trade Y1 R1 Nupanick

8) ts52: Trade G1 R1 Ts52

9) Nupanick: Discover Y1 Nupanick B1 Damogran

10) ts52: Discover G1 Ts52 Y3 Sol

11) Nupanick: Trade Y1 G1 Damogran

12) ts52: Build G1 Ts52

13) Nupanick: Build G2 Damogran

14) ts52: Build G2 Sol

15) Nupanick: Trade G2 R2 Damogran

16) ts52: Trade G1 B1 Ts52

17) Nupanick: Build G1 Damogran

18) ts52: Build G2 Ts52

19) Nupanick: Trade G1 Y1 Damogran

20) ts52: Move B1 Ts52 Sol

21) Nupanick: Move R2 Damogran Sol

22) ts52: Sacrifice R1 Ts52
Attack R2N Sol

23) Nupanick: Build R1 Nupanick
	Nupanick: whoops, forgot about the sacrificing rules as they apply to red.

24) ts52: Discover G2 Ts52 B3 Grover

25) Nupanick: Build G1 Damogran

26) ts52: Build B2 Sol

27) Nupanick: Build Y1 Damogran

28) ts52: Move R2 Sol Damogran

29) Nupanick: Move G1 Damogran Sol

30) ts52: Attack G1N Damogran

31) Nupanick: Move Y1 Damogran Sol

32) ts52: Attack Y1 Damogran

33) Nupanick: Build Y1 Sol

34) ts52: Sacrifice R2 Damogran
Attack Y1 Sol
Attack Y1 Sol

35) Nupanick: Move R1 Nupanick Damogran

36) ts52: Trade G2 R2 Sol
	Nupanick: Nice move, btw. I like having to think with catastrophes.

37) Nupanick: Build R1 Nupanick

38) ts52: Sacrifice R2 Sol
Attack R1 Damogran
Attack G1 Sol

39) Nupanick: Build Y2 Nupanick
	ts52: Thanks, catastrophes and sacrifices are the toughest things to get a handle on in this game.

40) ts52: Build G2 Damogran

41) Nupanick: Trade Y2 B2 Nupanick

42) ts52: Move B1 Sol Damogran

43) Nupanick: Trade B2 Y2 Nupanick

44) ts52: Move Y1 Sol Damogran

45) Nupanick: Build R2 Nupanick

46) ts52: Build Y2 Sol

47) Nupanick: Sacrifice Y2 Nupanick
Move R2 Nupanick Damogran
Discover R2 Damogran B3 Catan

48) ts52: Sacrifice G2 Grover
Build G2 Ts52
Build R2 Damogran

49) Nupanick: Move R1 Nupanick Damogran
	Nupanick: I like coming up with names for the systems. That's probably the one thing I prefer in the online version.

50) ts52: Attack R1 Damogran

51) Nupanick: Move R1 Nupanick Damogran
Catastrophe Damogran R

52) ts52: Trade G2 R2 Damogran

53) Nupanick: Build Y2 Nupanick

54) ts52: Sacrifice Y2 Sol
Move Y1 Damogran Nupanick
Move Y1 Damogran Nupanick
Catastrophe Nupanick Yellow

	ts52: Thanks for the game!
	Nupanick: Good game, you got me early on and I guess I lost any chance of survival. Good job!


10634)
Started: 2008.3.3, Ended: 2008.4.19
Participants: wmshub (S), MatrixFrog (N)
Winner: wmshub

1) MatrixFrog: Homeworld G2 B3 Y3
	wmshub: OK, let's try again...

2) wmshub: Homeworld G1 B2 Y3

3) MatrixFrog: Build Y1 Matrixfrog

4) wmshub: Build Y1 Wmshub

5) MatrixFrog: Trade Y1 B1 Matrixfrog

6) wmshub: Trade Y1 G1 Wmshub

7) MatrixFrog: Build Y1 Matrixfrog

8) wmshub: Build Y1 Wmshub

9) MatrixFrog: Build B1 Matrixfrog

10) wmshub: Discover Y1 Wmshub G3 Biggreen

11) MatrixFrog: Trade B1 R1 Matrixfrog

12) wmshub: Build G1 Wmshub

13) MatrixFrog: Build R1 Matrixfrog

14) wmshub: Trade G1 B1 Wmshub

15) MatrixFrog: Trade R1 G1 Matrixfrog

16) wmshub: Build G2 Wmshub

17) MatrixFrog: Discover G1 Matrixfrog Y1 One

18) wmshub: Discover G2 Wmshub Y3 Bigyellow

19) MatrixFrog: Build G2 One

20) wmshub: Build Y2 Wmshub

21) MatrixFrog: Discover G2 One B3 Two

22) wmshub: Move G1 Wmshub Two

23) MatrixFrog: Move G1 One Bigyellow

24) wmshub: Discover G2 Bigyellow Y1 Smallyellow

25) MatrixFrog: Sacrifice G2 Two
Build G2 Bigyellow
Build G3 Bigyellow

26) wmshub: Move G2 Smallyellow Bigyellow
Catastrophe Bigyellow Green

27) MatrixFrog: Trade Y3 G3 Matrixfrog

28) wmshub: Move Y3 Wmshub Two

29) MatrixFrog: Build Y1 Matrixfrog

30) wmshub: Build Y2 Two

31) MatrixFrog: Discover Y1 Matrixfrog G1 H4

32) wmshub: Build G2 Two

33) MatrixFrog: Move Y1 H4 Biggreen

34) wmshub: Trade Y2 R2 Wmshub

35) MatrixFrog: Build R1 Matrixfrog

36) wmshub: Sacrifice Y2 Two
Discover G2 Two R1 Temp
Move G2 Temp Matrixfrog

37) MatrixFrog: Sacrifice G3 Matrixfrog
Build Y2 Matrixfrog
Build B1 Matrixfrog
Build Y2 Biggreen

38) wmshub: Build G1 Matrixfrog

39) MatrixFrog: Sacrifice R1 Matrixfrog
Attack Y1 Biggreen

40) wmshub: Sacrifice B1 Wmshub
Trade G1 B1 Matrixfrog
Catastrophe Matrixfrog Blue

41) MatrixFrog: Attack G2 Matrixfrog

42) wmshub: Build G1 Two

43) MatrixFrog: Sacrifice Y2 Biggreen
Move Y1 Biggreen Wmshub
Move Y1 Biggreen Wmshub

44) wmshub: Sacrifice Y3 Two
Move G1 Two Matrixfrog
Move G1 Two Matrixfrog
Pass
Catastrophe Matrixfrog Green

45) MatrixFrog: Move Y2 Matrixfrog Wmshub
	wmshub: Wait...isn't your homeworld gone? I thought this would be a win for me...
	wmshub: Not sure how all this works, I call an admin. Admin - when you come, I have read the rules carefully, it looks like all of m.f.'s ships in his homeworld should be gone, and it should be my game...shouldn't it?
	MatrixFrog: Yup. Looks like a bug to me.

46) wmshub: Build R1 Wmshub
	MatrixFrog: Cool. Apparently the empty space where my homeworld used to be is connected to your homeworld.

47) MatrixFrog: Sacrifice Y1 Matrixfrog
Move R1 Matrixfrog Wmshub
	MatrixFrog: Let's see how this goes...
	MatrixFrog: Re-paging the admin... I effectively resigned, but I should have lost a few turns ago.
	wmshub: Thanks for the game! And thanks for fiddling around, I guess we had to empty your homeworld to end things.
	Aaron: Hoh boy.  Yes indeed this should be game over.  Checking the code again.
	Aaron: Oh.  Yeah, the game should have ended as soon as your starts went supernova.  Hoh boy, not good.  Still checking...
	Aaron: oh wow, how long was Matrix's homeworld starless?  As soon as a system has no stars it should cease to exist.
	Aaron: The problem that happened 4 moves ago was fixed a while back and should not happen again.  Sorry for the extreme delay!
	MatrixFrog: Sorry we kept playing after the bug happened. Thanks for the fix!



10629)
Started: 2008.3.4, Ended: 2008.3.28
Participants: Nupanick (S), virx61 (N)
Winner: Nupanick

1) virx61: Homeworld G3 B2 Y3

2) Nupanick: Homeworld Y1 B3 G3

3) virx61: Build Y1 Virx61

4) Nupanick: Build G1 Nupanick
	virx61: Hi. I hope this game is as fun as it looks. Good luck.
	Nupanick: I've played this game a couple times and it can get pretty good, although I honestly prefer it in real life because at only one action per turn, quicker play is better. Although I've played some rapid games here, so who cares?

5) virx61: Discover Y1 Virx61 G1 Tina

6) Nupanick: Trade G1 R1 Nupanick

7) virx61: Trade Y3 G3 Virx61

8) Nupanick: Build G1 Nupanick

9) virx61: Build Y1 Tina

10) Nupanick: Discover G1 Nupanick B2 Atlantis

11) virx61: Build G1 Virx61

12) Nupanick: Build G2 Atlantis

13) virx61: Sacrifice Y1 Tina
Move G1 Virx61 Tina

14) Nupanick: Trade G2 Y2 Atlantis

15) virx61: Discover G1 Tina R3 Aries

16) Nupanick: Build G2 Atlantis

17) virx61: Discover Y1 Tina B2 Daniel

18) Nupanick: Discover G2 Atlantis R1 Zena

19) virx61: Trade Y1 G1 Daniel

20) Nupanick: Move G1 Atlantis Zena

21) virx61: Build G2 Daniel

22) Nupanick: Sacrifice Y2 Atlantis
Move G1 Zena Virx61
Move G2 Zena Virx61
Catastrophe Virx61 G
	Nupanick: Tip: look out for sacrifices and catastrophes. They can finish up a game quite effectively when enough ships are built up.



10500)
Variants: "Unrated, Hard time"
Started: 2008.3.5, Ended: 2008.3.8
Participants: benji_stein (S), scottobear (N)
Winner: benji_stein

	benji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.


10633)
Started: 2008.3.6, Ended: 2008.3.15
Participants: MatrixFrog (S), benji_stein (N)
Winner: benji_stein

1) benji_stein: Homeworld Y3 B1 G3
	benji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.

2) MatrixFrog: Homeworld G3 B2 Y3
	MatrixFrog: Sure. There seems to be a sudden influx of new Homeworlds players lately. It's great!

3) benji_stein: Build G1 Benji_stein

4) MatrixFrog: Build Y1 Matrixfrog

5) benji_stein: Build G1 Benji_stein
	benji_stein: Yeah. I love that I can play people online, instead of struggling to find others irl. Though it does make it a slower game.  

6) MatrixFrog: Build Y1 Matrixfrog
	MatrixFrog: It's also harder to keep track of multi-move plans. That's what the notebook is for, but it's just not the same.

7) benji_stein: Trade G1 Y1 Benji_stein

8) MatrixFrog: Trade Y1 B1 Matrixfrog

9) benji_stein: Build G1 Benji_stein

10) MatrixFrog: Discover Y1 Matrixfrog G1 Alpha

11) benji_stein: Discover G1 Benji_stein G2 Upchuck

12) MatrixFrog: Build Y1 Matrixfrog

13) benji_stein: Build G2 Upchuck

14) MatrixFrog: Discover Y1 Alpha G2 Beta

15) benji_stein: Move Y1 Benji_stein Upchuck

16) MatrixFrog: Build Y2 Beta
	MatrixFrog: You now have three yellow ships in your homeworld, and I have one only a step away from it. You probably didn't notice it moved because it's in the same place on the screen. Make sure you read the log if it's not obvious what happened.
	benji_stein: Wow. You're right. I'm not sure how I missed that - possibly I thought I had a 3/2 system as in a different game I'm playing. But it's still pretty bad of me to not notice. I'm guessing you've not moved yourself to let me undo it. Thanks!

17) benji_stein: Build Y2 Upchuck

18) MatrixFrog: Build B1 Matrixfrog

19) benji_stein: Discover G2 Upchuck B3 Hurl

20) MatrixFrog: Build Y2 Beta

21) benji_stein: Sacrifice G3 Benji_stein
Build G1 Hurl
Build G3 Benji_stein
Build G3 Hurl
	MatrixFrog: The system you've just created is not connected to anyone's homeworld. I guess this makes it a fairly safe place, but it will take two moves to get from it to my homeworld, or from your homeworld to it. Just checking...
	benji_stein: I realize, but thanks. I wanted to move to a new location, and wanted blue, which meant I either had to move to a b3, or move out my second-to-last ship in my homeworld to get to a b2. I suppose I could take an extra turn to get to it, but I thought I'd try it this way. Plus, it might be a good out-of-the-way place to store some ships to sacrifice.
	MatrixFrog: Okay that makes sense.

22) MatrixFrog: Sacrifice Y2 Beta
Move Y1 Beta Benji_stein
Move Y2 Beta Benji_stein

23) benji_stein: Trade G2 B2 Hurl

24) MatrixFrog: Trade Y2 G2 Benji_stein

25) benji_stein: Trade G3 R3 Benji_stein

26) MatrixFrog: Trade G2 Y2 Benji_stein

27) benji_stein: Attack Y2 Benji_stein

28) MatrixFrog: Sacrifice Y3 Matrixfrog
Discover Y1 Matrixfrog R1 Zip
Discover Y1 Zip R2 Zop
Move Y1 Zop Benji_stein
Catastrophe Benji_stein Y

29) benji_stein: Sacrifice Y2 Upchuck
Discover B2 Hurl R1 Boom
Move B2 Boom Matrixfrog
Catastrophe Matrixfrog B
	benji_stein: Can I ask what you're threatening here?
If it was to catastrophe yellow, you could have done that last turn instead of building the green. If it's green, you're destroying more ships of yours than mine. You have to sacrifice too much to destroy upchuck, and otherwise I'm not seeing it.
I can think of a variety of moves that could be useful, but I want to make sure I'm not missing something...
	MatrixFrog: I guess I didn't totally think it through... the advantage of a green catastrophe is that you have no green ships, so in order to build anything new will require an extra turn. It's probably not worth it, but I'll stick with it and see how it goes.
	benji_stein: I have a bunch of green ships in other systems, though. In fact, one of the moves I was considering was sacrificing my g3, rebuilding it, and causing the catastrophe myself, to prevent your doing the yellow one. I'll wait and let you undo it, if you'd like, since you let me undo a mistake of mine when you pointed it out. Your call.
	MatrixFrog: Okay, good point. Thanks.

	benji_stein: I guess you missed my blue ship in hurl threatening your homeworld. :(
	benji_stein: Good game. Care for another? 


10592)
Variants: "Hard time"
Started: 2008.3.6, Ended: 2008.3.7
Participants: Jesse (S), benji_stein (N)
Winner: Jesse

1) benji_stein: Homeworld B1 G3 Y3
	benji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.

2) Jesse: Homeworld B3 G2 Y3
	Jesse: Certainly.  Have a good game.

3) benji_stein: Build Y1 Benji_stein

4) Jesse: Build Y1 Jesse

5) benji_stein: Trade Y1 B1 Benji_stein

6) Jesse: Trade Y1 B1 Jesse

7) benji_stein: Build B2 Benji_stein

8) Jesse: Build B2 Jesse

9) benji_stein: Sacrifice Y3 Benji_stein
Discover B1 Benji_stein Y2 Goes
Discover B1 Goes Y1 Boom
Move B1 Boom Jesse
Catastrophe Jesse B
	benji_stein: You going to copy everything I do? :P

	benji_stein: You going to copy everything I do? :P

	benji_stein: Hmm. This is probably a really bad idea. But I'll risk it.

10) Jesse: Build Y1 Jesse

11) benji_stein: Build B1 Benji_stein

12) Jesse: Move Y3 Jesse Benji_stein
	Jesse: The first few moves are often roughly symmetrical.  It's not necessarily the only way, but it's often a good way to avoid being cut off from something important.  In this case, the blue economy, which was the quickest path to medium-sized ships.

And to your second point, yes.  I do believe that was too aggressive.  You damage my home system, but you leave yours without the defense of a large ship, so that I can likely just stroll in and capture your ships.

13) benji_stein: Trade B2 G2 Benji_stein
	benji_stein: Oh, I realize that the early moves can be similar, I've just never see it so move-for-move identical, other than the sizes of the pieces in our homeworlds. I was mostly just teasing.

You're probably right about not having a big ship; I somehow missed that it now brings our worlds next to each other. :(

14) Jesse: Trade Y3 R3 Benji_stein
	Jesse: Yeah, that's an easy oversight to make.

	Jesse: A green ship doesn't really help you, at this point.  To counter-attack, you need red and yellow.  If you'd traded for a red ship before I did, it would have given me some problems.
	benji_stein: Yeah. I had a brain-fart. I'd wanted to sacrifice the green ship and then build two others. I would have loved two red, but realized after I did it that the only thing I could build was blue, which doesn't help any.

With red, it's a little better, but I think we just end in a stalemate, or you sacrifice your big ship to attack more of mine.
	benji_stein: But you're right. Far too agressive a move so early in the game; it's yours. Care for another?
	benji_stein: Out of curiosity, and so I can learn more strategy, what would you have done if I'd swapped my b2 for a r2 instead?
	Jesse: If you had swapped for a red, I couldn't have swapped for a red.  (You could build another red, then another, and blow up my large ship.  I could only have forestalled that by capturing your blue, but you could just capture it back endlessly.)  So, I could either withdraw my y3 to defend my home system, essentially wasting two turns, or I could leave it there, and start building in my home system.  My objective would be to get a medium piece at home for defense, and to move out to a blue system to obtain reds I could sacrifice to take over your system.  It would be an awkward operation, and if I'd read that possibility before I moved into your home system, I might have played more conservatively.

And yes, I'm always happy to help a new player on the road.
	benji_stein: Interesting. I'm kind of curious as to how a game like that would have panned out, but I'm pretty sure I would have slipped up some other way to lose. If you'd like, I'd be willing to play it out, and offer to resign if I end up in a winning position.

Otherwise, we can play a fresh game (eg without my taking a huge risk so early). I've gone ahead and started a new game with you, I'll let it be your call, though I think there'll need to be a pass at some point to get it to the same turn order.


10575)
Variants: "Hard time"
Started: 2008.3.7, Ended: 2008.3.13
Participants: benji_stein (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3
	benji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.

2) benji_stein: Homeworld G3 B1 Y3

3) TwoShort: Build G1 Twoshort

4) benji_stein: Build Y1 Benji_stein

5) TwoShort: Trade G1 Y1 Twoshort

6) benji_stein: Trade Y1 B1 Benji_stein

7) TwoShort: Build Y1 Twoshort

8) benji_stein: Build B1 Benji_stein

9) TwoShort: Discover Y1 Twoshort G3 Grogar

10) benji_stein: Trade B1 R1 Benji_stein

11) TwoShort: Build G1 Twoshort

12) benji_stein: Build R1 Benji_stein

13) TwoShort: Build Y1 Grogar

14) benji_stein: Build R2 Benji_stein
	TwoShort: Just in the realm of general strategy advice, red isn't useful until we're in contact, so taking much this early is odd unless you're trying to rush into it so fast I don't get any.  Dominating a color is a fine idea, but it's hard to do effectively with red.

15) TwoShort: Build Y2 Twoshort
	benji_stein: Makes sense, and I appreciate the tips. I took one just so I had one, and then decided it might be a good route into the 2pip ships.

16) benji_stein: Build Y2 Benji_stein

17) TwoShort: Discover Y1 Grogar Y2 Yellorama

18) benji_stein: Trade Y2 G2 Benji_stein

19) TwoShort: Discover G1 Twoshort Y3 Jethro

20) benji_stein: Trade R2 B2 Benji_stein

21) TwoShort: Build G1 Twoshort

22) benji_stein: Build R2 Benji_stein

23) TwoShort: Trade Y2 R2 Twoshort

24) benji_stein: Build Y2 Benji_stein

25) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Twoshort
Build G1 Twoshort

26) benji_stein: Discover Y2 Benji_stein G2 Upchuck

27) TwoShort: Build G2 Jethro

28) benji_stein: Move G2 Benji_stein Upchuck

29) TwoShort: Discover G1 Twoshort B3 Bluestar

30) benji_stein: Discover G2 Upchuck G3 Hurl

31) TwoShort: Trade G1 B1 Bluestar

32) benji_stein: Move R2 Benji_stein Yellorama

33) TwoShort: Sacrifice Y2 Grogar
Move B1 Bluestar Yellorama
Move B1 Yellorama Benji_stein
Catastrophe Benji_stein Blue

34) benji_stein: Sacrifice Y2 Upchuck
Move R1 Benji_stein Twoshort
Move R1 Benji_stein Twoshort
Catastrophe Twoshort Red
	benji_stein: Ouch. Very nice.

35) TwoShort: Sacrifice G2 Jethro
Build G1 Twoshort
Build G2 Twoshort

36) benji_stein: Sacrifice Y3 Benji_stein
Move R2 Yellorama Benji_stein
Move G2 Hurl Twoshort
Pass
Catastrophe Twoshort Green
	benji_stein: Yikes. I think this is my only move, though it's a painful one...

37) TwoShort: Trade Y3 R3 Twoshort
	benji_stein: Hmm. I thought I'd had one more ship somewhere. Well, now I'm trapped at my homeworld with only red, and I'm pretty sure there's nothing I can do to prevent you from biding your time and building up enough of a fleet to move in and catastrophe my system in one move.
	TwoShort: Yeah, this was the only way you could stop me from blowing you up immediately, but now you're stuck.  I can end it slightly faster than building up to the next catastrophe though...

38) benji_stein: Build R1 Benji_stein

39) TwoShort: Move R3 Twoshort Benji_stein
	benji_stein: Well, if ou're going to do that, I'll at least take you out with me! :P

40) benji_stein: Build R1 Benji_stein
Catastrophe Benji_stein R
	TwoShort: Thanks for the game.  Sorry if I didn't come up with too much strategy advice, but I figure you got the part about paying attention to where your opponent can cause catastrophes :)
	benji_stein: That's fair. It's definitely something I sometimes don't catch. I probably should have waited a little longer in retaliating to catastrophe your homeworld. 
Good game. Care for another? (No is a fine answer, I won't take offense.) 
	TwoShort: I'm happy to play another, any time.



10658)
Variants: "Hard time"
Started: 2008.3.7, Ended: 2008.3.26
Participants: benji_stein (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3
	benji_stein: Also see comment at http://superdupergames.org/main.html?page=play_homeworlds&num=10592, if interested. Let me know which you decide.

2) benji_stein: Homeworld Y3 B2 G3
	Jesse: I'd really rather start fresh.
	benji_stein: Sure. That's fine, too.

3) Jesse: Build G1 Jesse


4) benji_stein: Build G1 Benji_stein

5) Jesse: Trade G1 Y1 Jesse

6) benji_stein: Build G1 Benji_stein

7) Jesse: Build G1 Jesse

8) benji_stein: Trade G1 Y1 Benji_stein

9) Jesse: Discover G1 Jesse B2 Moooo

10) benji_stein: Trade G1 B1 Benji_stein

11) Jesse: Build G1 Jesse


12) benji_stein: Build B1 Benji_stein

13) Jesse: Trade G1 B1 Jesse


14) benji_stein: Trade B1 R1 Benji_stein

15) Jesse: Build G1 Jesse

16) benji_stein: Discover B1 Benji_stein G1 Upchuck

17) Jesse: Build G2 Moooo

18) benji_stein: Build G2 Benji_stein

19) Jesse: Sacrifice G3 Jesse
Build G2 Moooo
Build G3 Jesse
Build G3 Jesse

20) benji_stein: Sacrifice G3 Benji_stein
Build G3 Benji_stein
Build Y1 Benji_stein
Build Y2 Benji_stein
	benji_stein: Nice. Didn't see that one.

21) Jesse: Trade G2 R2 Moooo

22) benji_stein: Trade Y2 R2 Benji_stein
	benji_stein: Gah. I'm tired and can't count. Those should have been red, and it won't let me re-undo it. *sigh*
	Jesse: Well, we can correct it.  I'll go ahead and take my turn, then you can spend the next two turns trading those ships for red, while I pass.  How's that?


23) Jesse: Pass

24) benji_stein: Trade Y1 R1 Benji_stein
	benji_stein: Works for me. You're very kind. Thanks!

25) Jesse: Pass

26) benji_stein: Sacrifice G3 Benji_stein
Build G2 Benji_stein
Build G3 Benji_stein
Build B1 Upchuck

27) Jesse: Trade G2 Y2 Moooo
	Jesse: No problem.  It would be a shame for the game to be derailed by a silly technical issue like that.

28) benji_stein: Move G2 Benji_stein Upchuck
	benji_stein: I agree, but it's still appreciated!

29) Jesse: Discover B1 Jesse G2 Oinkoink

30) benji_stein: Move Y1 Benji_stein Upchuck

31) Jesse: Trade G3 Y3 Jesse

32) benji_stein: Discover B1 Upchuck G3 Hurl
	benji_stein: Sorry; I should stop undoing moves. I realize if I did that, you'd be able to sac a green ship to build a lot of big blues, leaving me unable to build a big green ship or blue ship for fear of your destroying them.

33) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R2 Moooo
Build R3 Moooo
	Jesse: You're right that it's better practice to read the consequences of your moves before submitting, but don't worry about putting me out with undos.  As for me building a bunch of blues, if I built two of them, I would have three in one system.  Even if your yellow was still at your home system, you could sacrifice it to move one of your small blues to OinkOink and destroy my three blues.  That said, moving out the little yellow is still better.  You don't want three yellow pieces in your home system.  (I don't want three greens for any longer than necessary, either.)  You do want more mobility from Upchuck, and a place to safely build more yellow ships.  And, it is usually preferable to build new ships, than to trade a ship for a color you already have in the system.  (My move here will be an exception.)  You should be wanting to spread out your reds and build more of them, as well.

34) benji_stein: Move R1 Benji_stein Upchuck
	Jesse: I reduce myself to two greens in my home system, so I don't have to worry so much about my defenses being destroyed if you can get another green piece there.  And since there are already two green pieces everywhere you have a green ship, you can't build the large green without bringing the total to three.  (Notice that my medium yellow allows me to reach your home system with the G1 at Moooo.)  You can't really afford to build it, so I expect to be able to build it on my next turn.  I've essentially snagged a Y3 without having to exhaust the pool of smaller yellow pieces first.
	benji_stein: Yes, I had noticed that, actually. It's a similar situation with blues, but not quite as beneficial to you. I had been thinking of doing it before your comment, but I like the idea of preventing you from getting the free green. 

35) Jesse: Move R3 Moooo Hurl

36) benji_stein: Sacrifice G3 Benji_stein
Build G3 Benji_stein
Build R3 Benji_stein
Build R3 Upchuck

37) Jesse: Attack B1 Hurl
	benji_stein: Out of curiosity, is it wiser to move out and threaten your three reds, or to sacrifice a green to build some bigger ships - probably the g3 (otherwise you get it), a b2 and b3, letting you get the final b3?
	Jesse: If you'd built the blues, I would have had the opportunity to be first to move out a red in preparation for building more.  I can't say definitively which is better, but I would prefer the move you chose, myself.

38) benji_stein: Trade R3 Y3 Benji_stein

39) Jesse: Sacrifice G3 Jesse
Build G3 Moooo
Build R3 Hurl
Build Y1 Moooo
	benji_stein: That makes sense, and is probably why I liked it better. I realize the move I just made makes my reds vulnerable for catastrophe, but it was better than letting you get if cheaply, and you'll have to give up a y2 and r2 to destroy my r1 and r2, and the r3 which I otherwise got for free.

40) benji_stein: Move R3 Upchuck Oinkoink
	Jesse: Taking out the reds at your home world is certainly a strong possibility, even though it weakens my position in yellow.  On balance, I think I prefer this, though.

41) Jesse: Sacrifice G3 Moooo
Build G3 Moooo
Build B2 Oinkoink
Build B3 Hurl
	benji_stein: Hmm. Interesting choice. I'm not sure I see the advantage. It lets you get a bunch of blues, but you could have done that before. I don't have any particularly thrilling moves. I think I'd like to move to a new system, but I can't do a whole lot in it for several turns unless I move a green, ewhich leaves my reds still exposed...
	Jesse: If I'd built more than one blue before, you could have destroyed them all.  This way, I have the advantage in how my blues are dispersed.

42) benji_stein: Sacrifice G3 Benji_stein
Build G3 Benji_stein
Build Y2 Upchuck
Build B3 Upchuck
	benji_stein: Hmph. Probably shouldn't have told you I wanted to move out. You stle the last small piece. :P

43) Jesse: Sacrifice Y2 Moooo
Move B1 Oinkoink Upchuck
Move B2 Oinkoink Upchuck
Catastrophe Upchuck B
	benji_stein: Gee, there are so many tempting moves. I was toying with blowing up your two big reds, but decided it was probably unwise.
	Jesse: Yeah, that would have been very costly.
	benji_stein: Yes, but it would have been two r3's of yours for a y3 and two r1s of mine. I'd still have an r3, and you wouldn't be able to swap them for other colors. In pip-count I end up a little ahead, but I'm not sure about positionally.

There was also the "build more stuff" move, but I think I'm getting a little cramped, and I wouldn't want you to destory my fleet too easily, and it lets you get to the big blues for free, since I'd have to build the medium one.

44) benji_stein: Sacrifice Y3 Benji_stein
Move G2 Benji_stein Upchuck
Move G2 Upchuck Moooo
Move G2 Upchuck Moooo
Catastrophe Moooo G

45) Jesse: Sacrifice Y1 Jesse
Discover R3 Hurl Y1 Meow
	benji_stein: Yikes. Sure is getting crowded in this galaxy. I don't think I've ever seen so many pieces in use before!
	Jesse: Well then, let's clean it up a bit.

46) benji_stein: Move Y1 Upchuck Oinkoink
	benji_stein: Yikes. Excellent move. I'm having a hard time coming up with what to do for mine.
	benji_stein: The one thing that I think this system could do with is a before/after picture. Or specify what ships get destroyed in catastrophes.

47) Jesse: Trade B3 Y3 Hurl
	benji_stein: In the end I was torn between destroying your reds in hurl, or your green in Moooo. The latter was a lot more expensive for me, but you now have only a single g1).

Out of curiosity, what would you have done? A different choice from my final two is also a fine answer. 

48) benji_stein: Con Y2 Oinkoink

49) Jesse: Build Y2 Hurl

50) benji_stein: Move R3 Oinkoink Upchuck
	benji_stein: I'm confused. What are you threatening, here? You don't have enough greens, blues or yellows to catastrophe my star, and blowing up the reds hurts you more than me. You could potentially move in a couple of big ships, but I could sacrifice an r2 or r3 to capture them at the same time.

I guess I'm just not sure how to respond or plan... :(
	Jesse: It's not necessarily an immediate threat.  I want to have my R3s separated, to protect them.  I want a foothold adjacent to your homeworld, so I can attack eventually, and to keep the pressure on.  Trading for the Y3 is to make sure you can't take the advantage in yellow, increase my maneuverability, and improve my rebuilding (medium ships).
	Jesse: It does become difficult to plan at this stage of the game.  Beginners especially have difficulty figuring out what they should be doing.  With both sides having solid positions, it can take a while of jockeying for advantage before either side gains a position to strike a decisive blow.

51) Jesse: Trade R2 G2 Moooo
	benji_stein: OK. That makes sense. I just wanted to make sure that I wasn't missing something critical.

Feel free to point out whatever you think migt be useful. I don't normally get to this part, since the other people I play with are beginners as well. 

52) benji_stein: Move R3 Upchuck Moooo

53) Jesse: Sacrifice G2 Moooo
Build B1 Hurl
Build R2 Moooo

54) benji_stein: Attack R2 Moooo

55) Jesse: Move R3 Meow Moooo
Catastrophe Moooo R

56) benji_stein: Build R2 Upchuck

57) Jesse: Move Y3 Hurl Moooo

58) benji_stein: Build Y1 Upchuck

59) Jesse: Trade Y3 G3 Moooo


60) benji_stein: Trade R1 B1 Benji_stein

61) Jesse: Build Y3 Moooo

62) benji_stein: Move Y2 Upchuck Benji_stein

63) Jesse: Discover Y1 Moooo G1 Neigh
	benji_stein: Ick. I botched that one up. I thought I had blue somewhere else... gave you a free 3-pointer. *sigh* 
	Jesse: One option would have been to use it as a system marker, but that has its own issues.

64) benji_stein: Discover Y2 Benji_stein R1 Retch

65) Jesse: Build G2 Moooo

66) benji_stein: Build G2 Benji_stein

67) Jesse: Move B1 Hurl Neigh
	Jesse: Why did you move that to your home world, rather than discovering a new system?
	benji_stein: Hmm. I'm not entirely sure. I undid the blue move because if I left two yellows in both systems it allowed you to do the swap-yellow+rebuild from the previous two turns. There hadn't been much that I'd wanted to remove from the stash, since taking a blue, or green would give you access to the bigger ships. But you're right, I should have seen your move coming, so I effectively wasted a turn.

68) benji_stein: Move B1 Benji_stein Retch

69) Jesse: Sacrifice G3 Moooo
Build B2 Hurl
Build B3 Neigh
Build G3 Moooo


70) benji_stein: Sacrifice G3 Benji_stein
Build G3 Benji_stein
Build R2 Benji_stein
Build B3 Retch

71) Jesse: Trade B3 R3 Neigh

72) benji_stein: Trade B3 R3 Retch

73) Jesse: Sacrifice G3 Moooo
Build G3 Moooo
Build B3 Neigh
Build B3 Hurl

74) benji_stein: Move B1 Retch Hurl
Catastrophe Hurl B
	benji_stein: I feel like that was probably not a great move, but there's not much better I can do, I think.

75) Jesse: Move G3 Moooo Upchuck

76) benji_stein: Move G2 Benji_stein Retch

77) Jesse: Sacrifice R3 Neigh
Attack R1 Upchuck
Attack R2 Upchuck
Attack Y1 Upchuck

78) benji_stein: Discover R3 Retch B2 Spew

79) Jesse: Build B1 Neigh

80) benji_stein: Discover Y1 Oinkoink B3 Barf

81) Jesse: Move B3 Neigh Benji_stein
	benji_stein: Ouch. I saw that coming, but there wasn't a whole lot I could do. I felt the threat of blowing up my greens was worse. *sigh* 

82) benji_stein: Attack B3 Benji_stein
	benji_stein: Hmm. Seems like the backend system could do with a little work in organizing the stars. 
	Jesse: Yeah, it just sorts them in alphabetical order, which is almost never what you want.  And the systems could be shown with much less space, and the ships organized within the systems, as well.  Easy enough to do for binary games (my own software does a fine job of resizing things), but SDG needs to cope with 3- and 4-player games, as well, where the ideal organization is less obvious.

83) Jesse: Sacrifice Y2 Hurl
Move B1 Neigh Benji_stein
Move B1 Neigh Benji_stein
Catastrophe Benji_stein B
	benji_stein: True, I'd forgotten about 3/4 player. 4 Would be odd, but 2 or 3 seems doable by arranging them so that the stars that are connected are nearest, in groups of the same size. So for this game, you'd have my homeworld, all the 1s, all the 3s all the 2s, and then your homeworld. Yes, the 1s connect to the 2s, but at least the groups are easily seen.

84) benji_stein: Build Y2 Oinkoink
	benji_stein: *sigh* I think I know what you're about to do, and there's nothing I can do to stop it.
	Jesse: Yes, that's exactly how we arrange the systems when we play binary face to face.

85) Jesse: Sacrifice Y3 Jesse
Move Y3 Moooo Benji_stein
Move Y1 Upchuck Benji_stein
Move Y1 Neigh Benji_stein
Catastrophe Benji_stein Y
	Jesse: If you were expecting me to sac a Y3 and throw all the blues in at once, here's a lesson in resource conservation.

	Jesse: Yes, it's expensive.  Blasting someone's home system always is.  That's why I prefer to capture their ships, if possible.  Or, failing that, wait until I'm sure I can finish the job.  Notice that by saving my Y3s, I now have 3 yellows adjacent to your world, and another Y3 ready to sacrifice.
	Jesse: Good game.  Do you feel like you're getting the hang of it?
	benji_stein: Very nice. I saw the yellows getting close (why I'd moved a yellow out earlier), but I'd missed the threat of the third one closer once you'd catastrophed my blues.

I think I'm getting a little better (you would probably be a better judge), but I still don't have the middle game, as you mentioned. I felt like I was always struggling to respond to your moves, and not doing much offensively, myself. Particularly in those cases where I can see it coming (probably too late), but not do anything about it.

I'd be up for another if you'd like, but don't feel obliged if you're tired of it. I'm sure I'm not a terribly challenging opponent.


10668)
Variants: "Hard time"
Started: 2008.3.10, Ended: 2008.4.24
Participants: alexcobo (S), stoneaxe (N)
Winner: stoneaxe

1) stoneaxe: Homeworld B3 Y2 G3

2) alexcobo: Homeworld G3 B2 Y3
	stoneaxe: Hi!  Thanks for playing- good luck!

3) stoneaxe: Build G1 Stoneaxe

4) alexcobo: Build Y1 Alexcobo
	alexcobo: Hello. Thank you! Good luvk.

5) stoneaxe: Trade G1 R1 Stoneaxe

6) alexcobo: Trade Y1 R1 Alexcobo

7) stoneaxe: Build G1 Stoneaxe

8) alexcobo: Build Y1 Alexcobo

9) stoneaxe: Build G1 Stoneaxe

10) alexcobo: Trade Y1 G1 Alexcobo

11) stoneaxe: Discover G1 Stoneaxe Y1 Copper

12) alexcobo: Discover R1 Alexcobo Y1 Highway

13) stoneaxe: Build G2 Copper

14) alexcobo: Trade G1 R1 Alexcobo

15) stoneaxe: Build R2 Stoneaxe

16) alexcobo: Build Y1 Alexcobo

17) stoneaxe: Discover G2 Copper B2 Bluesband

18) alexcobo: Move R1 Alexcobo Highway

19) stoneaxe: Build G1 Stoneaxe

20) alexcobo: Build Y2 Alexcobo

21) stoneaxe: Trade R2 Y2 Stoneaxe

22) alexcobo: Trade Y2 B2 Alexcobo

23) stoneaxe: Sacrifice G3 Stoneaxe
Build G2 Copper
Build G2 Bluesband
Build G3 Stoneaxe

24) alexcobo: Build Y2 Alexcobo

25) stoneaxe: Sacrifice G3 Stoneaxe
Build G3 Bluesband
Build G3 Stoneaxe
Build R2 Stoneaxe

26) alexcobo: Trade Y3 R3 Alexcobo

27) stoneaxe: Discover Y2 Stoneaxe B1 Bonham

28) alexcobo: Move R3 Alexcobo Copper

29) stoneaxe: Sacrifice Y2 Bonham
Move G3 Bluesband Highway
Move G3 Highway Alexcobo

30) alexcobo: Attack G2N Copper

31) stoneaxe: Sacrifice R2 Stoneaxe
Attack B2 Alexcobo
Attack Y2 Alexcobo

32) alexcobo: Move G2 Copper Stoneaxe
Catastrophe Stoneaxe G

33) stoneaxe: Sacrifice G1 Copper
Build R2 Stoneaxe
	alexcobo: Alas! Too little too late. Good game!

34) alexcobo: Build Y2 Alexcobo
	stoneaxe: Ahh!  Nice sacrifice. Close one!  Let me see if I can be careful and not screw this one up...

35) stoneaxe: Sacrifice R2 Stoneaxe
Attack Y2 Alexcobo
Attack Y1 Alexcobo



10689)
Variants: "Hard time"
Started: 2008.3.11, Ended: 2008.3.24
Participants: TwoShort (S), wyons (N)
Winner: TwoShort

1) wyons: Homeworld R1 B2 G3

2) TwoShort: Homeworld B1 Y3 G3

3) wyons: Build G1 Wyons

4) TwoShort: Build G1 Twoshort

5) wyons: Trade G1 R1 Wyons

6) TwoShort: Trade G1 B1 Twoshort

7) wyons: Build G1 Wyons

8) TwoShort: Build B1 Twoshort

9) wyons: Trade G1 Y1 Wyons

10) TwoShort: Discover B1 Twoshort G2 Grogar

11) wyons: Build G1 Wyons

12) TwoShort: Build B2 Twoshort
	wyons: yaarg! this looks unpleasant rather quickly- I inderestimated the value of an early blue monopoly

13) wyons: Discover G1 Wyons Y3 Portsalut

14) TwoShort: Discover B1 Twoshort B2 Blitz

15) wyons: Build G1 Portsalut

16) TwoShort: Sacrifice G3 Twoshort
Build B3 Grogar
Build B3 Blitz
Build B3 Twoshort

17) wyons: Move G1 Portsalut Grogar
	wyons: :(   I think I am pretty near resigning!.. but will play on a bit just to see what happens.  

18) TwoShort: Trade B3 G3 Blitz
	wyons: g1 portsalut grogar

19) wyons: Build G1 Wyons

20) TwoShort: Discover B2 Twoshort Y2 Yolonda

21) wyons: Build G2 Portsalut

22) TwoShort: Discover B2 Yolonda G3 Greenland

23) wyons: Sacrifice G3 Wyons
Build G2 Wyons
Build R1 Wyons
Build G3 Grogar

24) TwoShort: Sacrifice B2 Greenland
Trade B3 G3 Grogar
Trade B3 R3 Twoshort

25) wyons: Sacrifice G3 Grogar
Build G3 Wyons
Build Y1 Wyons
Build Y1 Wyons

26) TwoShort: Sacrifice G3 Grogar
Build G3 Blitz
Build B2 Grogar
Build B3 Blitz

27) wyons: Sacrifice R1 Wyons
Attack B1S Grogar

28) TwoShort: Sacrifice G3 Blitz
Build G3 Blitz
Build B3 Grogar
Build R1 Twoshort

29) wyons: Sacrifice B1 Grogar
Trade G1 B1 Portsalut

30) TwoShort: Sacrifice B2 Grogar
Trade B3 Y3 Blitz
Trade R1 G1 Twoshort

31) wyons: Sacrifice G2 Wyons
Build G2 Grogar
Build B2 Portsalut

32) TwoShort: Sacrifice G3 Blitz
Build G3 Twoshort
Build Y2 Blitz
Build R1 Twoshort

33) wyons: Sacrifice G1 Wyons
Build G1 Grogar
Catastrophe Grogar Green

	wyons: Although I just about seem to have been hanging  in there for some time it has been pretty hopeless since about the 11th move and I am sure the end is only a matter of time. Well played and thanks for the game- the first I have lost!


10683)
Started: 2008.3.11, Ended: 2008.3.12
Participants: gui_jim (S), velgarath (N)
Winner: velgarath

1) velgarath: Homeworld G1 B2 Y3

2) gui_jim: Homeworld Y1 G2 B3

3) velgarath: Build Y1 Velgarath

4) gui_jim: Build B1 Gui_jim

5) velgarath: Discover Y1 Velgarath B3 Friki

6) gui_jim: Trade B1 Y1 Gui_jim

7) velgarath: Build Y2 Velgarath

8) gui_jim: Discover Y1 Gui_jim G3 Kaito

9) velgarath: Move Y2 Velgarath Friki

10) gui_jim: Build Y2 Kaito

11) velgarath: Trade Y2 R2 Friki

12) gui_jim: Build B1 Gui_jim

13) velgarath: Move R2 Friki Gui_jim

14) gui_jim: Trade B3 Y3 Gui_jim

15) velgarath: Attack B1 Gui_jim

16) gui_jim: Build Y2 Gui_jim

17) velgarath: Trade R2 Y2 Gui_jim
Catastrophe Gui_jim Y

	velgarath: JAJAJAJAJAJAJA.
CUIDADO CON LAS CATASTROFES!!!!!


10701)
Started: 2008.3.13, Ended: 2008.3.17
Participants: velgarath (S), gui_jim (N)
Winner: gui_jim

1) gui_jim: Homeworld B3 G2 Y3

2) velgarath: Homeworld B1 G2 Y3

3) gui_jim: Build Y1 Gui_jim

4) velgarath: Build Y1 Velgarath

5) gui_jim: Discover Y1 Gui_jim G1 Kaito

6) velgarath: Discover Y1 Velgarath B3 Trantor

7) gui_jim: Build Y1 Kaito

8) velgarath: Build Y2 Velgarath

9) gui_jim: Build Y2 Gui_jim

10) velgarath: Move Y2 Velgarath Trantor

11) gui_jim: Discover Y1 Kaito B3 Krypton

12) velgarath: Trade Y2 R2 Trantor

13) gui_jim: Build Y2 Kaito

14) velgarath: Move R2 Trantor Kaito

15) gui_jim: Sacrifice Y2 Gui_jim
Move Y2 Kaito Krypton
Move Y1 Kaito Trantor

16) velgarath: Move Y1 Trantor Kaito

17) gui_jim: Build Y2 Gui_jim

18) velgarath: Build Y2 Kaito

19) gui_jim: Sacrifice Y3 Gui_jim
Move Y1 Trantor Velgarath
Move Y1 Krypton Velgarath
Move Y2 Krypton Velgarath
Catastrophe Velgarath Y



10657)
Variants: "Hard time"
Started: 2008.3.14, Ended: 2008.3.16
Participants: benji_stein (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) benji_stein: Homeworld B2 G3 Y3

3) TwoShort: Build G1 Twoshort

4) benji_stein: Build Y1 Benji_stein

5) TwoShort: Build G1 Twoshort

6) benji_stein: Build Y1 Benji_stein

7) TwoShort: Trade G1 Y1 Twoshort

8) benji_stein: Trade Y1 B1 Benji_stein

9) TwoShort: Build G1 Twoshort

10) benji_stein: Trade Y1 G1 Benji_stein

11) TwoShort: Discover G1 Twoshort B2 Bluonia

12) benji_stein: Build G2 Benji_stein

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Bluonia
Build G3 Twoshort
	benji_stein: Fast moves, these. It's great when the opponent happens to be at their computer and we can hammer out a bunch at once. Then again, the early moves don't require as much thinking. ;)
	benji_stein: Ha. Murphy's law. Right when I comment, you go off. *sigh*

14) benji_stein: Sacrifice G2 Benji_stein
Build Y1 Benji_stein
Build B1 Benji_stein
	TwoShort: I'm at work, so when the email comes in, if I've got a second and the move is clear, I'll make it.  It means you don't get so much in the way of strategy advice though.
	TwoShort: Anyway, the general strategy advice is in the early game, focus mainly on trying to get more 3 pointers than the other guy.
  Tactics-wise, sacrificing a g3 such that you regrow the same piece you sacrificed is called the "Factory", and can be devastating if I can keep doing it and you can't.  Also note that by growing that 3rd G in your homeworld, you have no place to  build another G so I was free to leave the last g3 available.
	benji_stein: Ouch. You're right; I'd missed that move. Very nice. Makes sense about work, I do the same, though I try not to check my personal mail too often.

The advice is always appreciated, but I do understand being busy. I probably shouldn't do this, but at least it prevents you from getting the final green so easily...

15) TwoShort: Trade G2 Y2 Bluonia

16) benji_stein: Discover G1 Benji_stein B1 Retch

17) TwoShort: Discover G2 Bluonia Y1 Yolonda

18) benji_stein: Move B1 Benji_stein Retch

19) TwoShort: Build G2 Yolonda
	TwoShort: Forgot you were playing a 2-3 Homeworld.  FYI, conventional wisdom holds that 1-2 is the best...

20) benji_stein: Build G2 Retch
	benji_stein: No problem. I often play a 1-2, but they all have advantages. With a 2-3, I can lock you out of a large piece, plus it's harder to reach my homeworld if there aren't many small pieces left in the stash.

21) TwoShort: Sacrifice G3 Twoshort
Build G3 Bluonia
Build G3 Twoshort
Build Y2 Bluonia

22) benji_stein: Build B2 Retch
	benji_stein: I know you're about to use your factory to get the last two greens, but there's nothing I can do to stop you. swapping a green out only cuts me out of it entirely, and building a green just lets you get something of a different color as well (probably yellow)

23) TwoShort: Trade G3 B3 Bluonia
	benji_stein: aww, screw it. I can't afford to only have one green ship. *sigh*

24) benji_stein: Sacrifice Y1 Benji_stein
Discover B1 Retch G3 Hurl

25) TwoShort: Sacrifice G3 Twoshort
Build B3 Bluonia
Build G3 Twoshort
Build Y1 Twoshort

26) benji_stein: Sacrifice Y3 Benji_stein
Move G2 Retch Benji_stein
Move B2 Retch Hurl
Move B1 Hurl Bluonia
Catastrophe Bluonia B

27) TwoShort: Move G2 Yolonda Benji_stein

28) benji_stein: Trade B1 R1 Benji_stein
	benji_stein: Ha. I knew there was a reason I was keeping a y1 around - I can't easily get into that system.
This is probably a really bad idea, but I feel like that system is just too powerful to pass it up.

29) TwoShort: Sacrifice G3 Twoshort
Build G1 Benji_stein
Build Y2 Twoshort
Build G3 Twoshort
Catastrophe Benji_stein Green
	TwoShort: Yeah, giving up your 3 point pretty much spells doom;  it means my 3 is invulnerable to red, so I can win if I take a red and march the three to your Homeworld without your getting a 3 of blowing mine up.  In this case, I'm going to start by shortening the march :)

30) benji_stein: Sacrifice G1 Retch
Build R1 Benji_stein

31) TwoShort: Trade Y2 R2 Twoshort

32) benji_stein: Trade R1 G1 Benji_stein
	benji_stein: Yeah, I figure it'll be difficult, but I think if I hadn't done it I would have been doomed pretty quickly, as well.
	benji_stein: crud. I knew there was a reason I'd wanted to swap the green one. I switched it to the 1-pointer so I could keep my green in case I wanted to build several ships at once. *sigh* 

33) TwoShort: Move G3 Twoshort Benji_stein

34) benji_stein: Build R1 Benji_stein

	benji_stein: Yeah, it's yours. I thought I could stave it off a little longer, but you just sac your red ship to take both of my reds. I build another green, and you blow them all up with the g1 from your homeworld.

Interesting game, though I must say it was pretty miserable on my part.


10650)
Variants: "Hard time"
Started: 2008.3.14, Ended: 2008.4.24
Participants: benji_stein (S), jeep (N)
Winner: benji_stein

1) jeep: Homeworld B3 Y1 G3
	benji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them. 

2) benji_stein: Homeworld G2 B3 Y3
	jeep: I'll give it a shot, but I'm not great at this game either.
	benji_stein: That's fair. I just thought I'd give you a warning. ;)

3) jeep: Build G1 Jeep

4) benji_stein: Build Y1 Benji_stein

5) jeep: Build G1 Jeep

6) benji_stein: Build Y1 Benji_stein

7) jeep: Discover G1 Jeep B2 Changer

8) benji_stein: Trade Y1 B1 Benji_stein

9) jeep: Trade G1 Y1 Changer

10) benji_stein: Build Y2 Benji_stein

11) jeep: Build G1 Jeep

12) benji_stein: Trade Y2 G2 Benji_stein

13) jeep: Move G1 Jeep Changer
	benji_stein: Could we try to pick up the pace a little? Your moves all seem to take several days.
	jeep: Not really.  I chose 3/2/10 because that is the pace I can maintain.  When I'm not too busy, I speed up and clear the queue every day.  But my moves will generally take close to 2 days per move.

14) benji_stein: Build Y2 Benji_stein

15) jeep: Build Y2 Changer
	benji_stein: OK, I guess...

16) benji_stein: Trade Y1 R1 Benji_stein
	jeep: Sorry if it's too slow...  You can always start another game.  Then you're more likely to have a play to make every day.
	benji_stein: That's OK. I was actually playing a few others, but they ended recently. I realize that it doesn't have to be played as fast, but all ther others seemed to be. I guess I'm just a little impatient about it. I'll try not to be - work and other things are a good reason to take your time.

17) jeep: Sacrifice G3 Jeep
Build G1 Changer
Build G2 Changer
Build G3 Jeep

18) benji_stein: Discover G2 Benji_stein B1 Retch

19) jeep: Trade G1 R1 Changer

20) benji_stein: Move Y2 Benji_stein Retch
	jeep: Tough decision there... I was tempted to go for the green monopoly.

21) jeep: Discover G2 Changer Y3 Mover

22) benji_stein: Discover G2 Retch Y2 Hurl
	benji_stein: If you had tried, I would have destroyed a lot of your ships...
	jeep: Impossible.  I would not have built, I would have moved into large green worlds.  Taken them out of circulation instead of building them.  Then later, I could have probably cashed them in.

23) jeep: Discover G1 Changer Y3 Cache

24) benji_stein: Build R1 Benji_stein

25) jeep: Discover Y1 Changer G3 Grower

26) benji_stein: Build R2 Benji_stein

27) jeep: Sacrifice G3 Jeep
Build G1 Cache
Build G3 Jeep
Build G3 Mover

28) benji_stein: Move R2 Benji_stein Retch

29) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y1 Changer
Build R2 Changer

30) benji_stein: Move R2 Retch Cache

31) jeep: Move G3 Mover Retch

32) benji_stein: Attack G1 Cache

33) jeep: Sacrifice R1 Changer
Attack Y2S Retch

34) benji_stein: Sacrifice Y3 Benji_stein
Move G1 Cache Hurl
Move G1 Hurl Jeep
Move G2 Hurl Jeep
Catastrophe Jeep Green

	benji_stein: Good game. Thanks!
	jeep: *laugh* Caught me not paying attention. Thanks for the game.


10763)
Started: 2008.3.23, Ended: 2008.3.28
Participants: xeger (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) xeger: Homeworld Y2 B1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) xeger: Build G1 Xeger

5) ts52: Discover G1 Ts52 B3 Grover

6) xeger: Discover G1 Xeger Y3 Countrywide

7) ts52: Trade G1 R1 Grover

8) xeger: Build G1 Xeger

9) ts52: Build G1 Ts52

10) xeger: Build G2 Xeger

11) ts52: Move G1 Ts52 Countrywide

12) xeger: Move G2 Xeger Grover

13) ts52: Move G1 Countrywide Xeger

14) xeger: Trade G1 R1 Xeger

15) ts52: Sacrifice R1 Grover
Attack R1S Xeger

16) xeger: Move G1 Countrywide Ts52
	xeger: Erm ... how were you able to take over my r1 when I had a g3 in the system? Perhaps I need to brush up on the rules!

17) ts52: Trade G3 R3 Ts52
	xeger: Ahh, I see -- I thought my larger ship would protect ANY of the smaller ships from being attacked. Live and learn!

18) xeger: Trade G2 R2 Grover
	ts52: Yeah, you can attack any ship up to the size of your largest ship in the system.

19) ts52: Build G1 Xeger

20) xeger: Trade G3 R3 Xeger
	xeger: Goodbye, cruel world!

21) ts52: Build R1 Xeger

22) xeger: Attack R1 Xeger

23) ts52: Build R1 Xeger
Catastrophe Xeger Red
	ts52: Thanks for the game. A few tips, creating a 'small universe' (using the same size pieces in your homeworld as your opponents) makes the game much tougher, as it's one fewer step for your enemy to get to your homeworld.
	xeger: Thanks for the tip.



10771)
Variants: "Hard time"
Started: 2008.3.24, Ended: 2008.5.27
Participants: wyons (S), jeep (N)
Winner: wyons

1) jeep: Homeworld Y1 B2 G3

2) wyons: Homeworld B1 R3 G3

3) jeep: Build G1 Jeep

4) wyons: Build G1 Wyons

5) jeep: Trade G1 Y1 Jeep
	wyons: hi there, enjoy the game!

6) wyons: Trade G1 Y1 Wyons

7) jeep: Build Y2 Jeep

8) wyons: B Y2 Wyons

9) jeep: Discover Y1 Jeep G3 Grower

10) wyons: Discover Y1 Wyons G2 Bag

11) jeep: Build G1 Jeep

12) wyons: Build G1 Wyons

13) jeep: Discover Y2 Jeep B3 Changer

14) wyons: Trade G1 B1 Wyons

15) jeep: Discover G1 Jeep Y3 Cache

16) wyons: Build B1 Wyons

17) jeep: Build G1 Jeep

18) wyons: Move B1 Wyons Bag

19) jeep: Trade G1 R1 Jeep

20) wyons: Build B2 Bag

21) jeep: Build G1 Jeep

22) wyons: Build B2 Wyons
	jeep: Yeah, after staring at things for 3 days, it still hasn't improved for me.

23) jeep: Build R1 Jeep

24) wyons: Build B3 Bag
	wyons: I agree you might be in trouble. But there are so many twists and turns with this game........:)

25) jeep: Discover R1 Jeep B3 Sigh

26) wyons: Trade B3 R3 Bag

27) jeep: Discover G1 Jeep B3 Scary

28) wyons: Build R1 Bag

29) jeep: Build G1 Jeep

30) wyons: Build G2 Wyons

31) jeep: Sacrifice G3 Jeep
Build G2 Scary
Build G3 Jeep
Build R2 Sigh

32) wyons: Move R3 Bag Scary

	jeep: Sorry.  *sigh*  Life has taken over my time.


10777)
Variants: "Hard time"
Started: 2008.3.26, Ended: 2008.6.1
Participants: dsheldon (S), nycavri (N)
Winner: dsheldon

1) nycavri: Homeworld B1 Y2 G3
	nycavri: Hello again!  TaGG.

2) dsheldon: Homeworld B3 Y1 G3

3) nycavri: Build G1 Nycavri

4) dsheldon: Build G1 Dsheldon

5) nycavri: Trade G1 Y1 Nycavri
	dsheldon: Hello yourself.  I haven't had a game in months, I hope I'm not too rusty.
	nycavri: I can only hope . . . *grin*

6) dsheldon: Discover G1 Dsheldon B2 Chip

7) nycavri: Build G1 Nycavri

8) dsheldon: Build G1 Chip

9) nycavri: Build G2 Nycavri

10) dsheldon: Build G2 Dsheldon

11) nycavri: Discover G1 Nycavri Y3 Mvb

12) dsheldon: Sacrifice G3 Dsheldon
Build G2 Dsheldon
Build G3 Dsheldon
Build G3 Chip

13) nycavri: Discover G1 Mvb Y2 Mvg

14) dsheldon: Discover G2 Dsheldon Y2 Frito

15) nycavri: Move G1 Mvg Dsheldon
	nycavri: Ack.  Was right the first time . . .

16) dsheldon: Trade G2 R2 Dsheldon

17) nycavri: Sacrifice G2 Nycavri
Build G2 Dsheldon
Build G2 Dsheldon
Catastrophe Dsheldon G

18) dsheldon: Trade G1 Y1 Chip

19) nycavri: Build G1 Nycavri
	dsheldon: Oh yeah... you can sacrifice stuff to go back in the pool too.  Somehow I thought there was no Green available to you.  This could be... hard.

20) dsheldon: Build G1 Frito
	nycavri: When you didn't respond to the threat, I assumed I must have made a mistake!

21) nycavri: Build G2 Nycavri

22) dsheldon: Move G3 Chip Dsheldon

23) nycavri: Discover G2 Nycavri Y3 Iw

24) dsheldon: Sacrifice G1 Frito
Build Y2 Chip

25) nycavri: Trade G1 R1 Nycavri

26) dsheldon: Build Y3 Chip

27) nycavri: Discover G2 Iw B2 Jw

28) dsheldon: Discover Y2 Chip G3 Hulk

29) nycavri: Discover Y1 Nycavri B3 Fr

30) dsheldon: Build Y3 Hulk

31) nycavri: Build G1 Nycavri

32) dsheldon: Sacrifice Y2 Hulk
Move Y3 Hulk Jw
Move Y3 Chip Fr

33) nycavri: Build G1 Jw

34) dsheldon: Sacrifice R2 Dsheldon
Attack G1N Jw
Attack G2N Jw

35) nycavri: Sacrifice G1 Nycavri
Build Y2 Fr
	dsheldon: I'm not sure it will help you much this time, but you need to be much more aggresive.  Since the beginning of the game you've overdeveloped near your homeworld.  So far you've brought one medium ship within a jump of my homeworld while I frequently have had several larges threatening yours.  I put some notes on the Icehousegames wiki about this last week:

http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy#The_Early_Game_-__Building_Up

We're past the opening, but it's still something to think about.  For reference, the simple rubric here gives you a score of 11 to my 21, which doesn't even give an accounting of your unfavorable color distribution.

I hope this doesn't come across as grandstanding and is taken as the constructive advice it is intended to be.
	nycavri: No problem, d.  I know I can use the help!

I've found when I'm agressive, I lose quickly.  Of course, when I'm defensive, I still end up losing, but less quickly!

I was concentrating on stalling you with my green catastrophe gambit, but since it has looked to me that I was always one move away from losing a home star, and have played the only move I could see which defended against this.

I have to go back and see if there was somewhere where I could have been more agressive, but if memory serves, this would only have been possible if you missed an obvious opening . . .


I continue to either get greamed by experts, or beat rookies on silly mistakes.  Neither is especially satisfying.  I really would like to play Homeworlds with someone at my own level . . .
	nycavri: I think the pace of play also hurts me here, where it doesn't on other SDG games.

I have a pretty good idea of my/your next few moves once I look over the board but, even with the notes, I often miss something when I come bac for my move sometimes days later . . .

36) dsheldon: Sacrifice G2 Jw
Build Y3 Fr
Build G1 Dsheldon
Catastrophe Fr Y

37) nycavri: Build G2 Nycavri
	dsheldon: Maybe you would have an easier time if you don't have so many active games.  Our game is he only one I'm in right now.  It makes it pretty easy to concentrate, even with several days between moves.

I would be overjoyed if I could ever play against you face to face.

Have you tried looking for SDG players with a similar ranking?  The interface to do that is pretty clunky, but I'm pretty sure it's possible.
	nycavri: It's true, I do prefer a certain type of game here - one where I can see the whole situation in one look.  Penguin Soccer is like that, and Blam!  Also games like Photonic Attack and Diagonals.

Where are you based?  I'm in New York.  My full time job in Summer Camping means I don't get to do any of the big f2f cons (althought I did get to NonCon this year, which was great).

The problem with the ranking system is that to get a score as low as mine, you have to have an awful lot of games under your belt.  Most people quit on a game long before their score gets into the 1400s . . .

38) dsheldon: Sacrifice G3 Dsheldon
Build G2 Frito
Build G3 Chip
Build G3 Dsheldon

39) nycavri: Build R1 Nycavri
	dsheldon: I'm in Pittsburgh, I also never get out to cons and, with a baby on the way in September, it's not something I expect to be able to do for a while.  But my sister lives in New York City and it's not impossible that I would find my way out there sometime.
	nycavri: Congrats on your "package in the mail"!  My wife goes off the pill this summer . . .

40) dsheldon: Discover G2 Frito R3 Strawberry

41) nycavri: Trade R1 B1 Nycavri
	dsheldon: Thank you.  It's an exciting time, to be sure.  Best of luck once you get started ;)

42) dsheldon: Sacrifice Y3 Jw
Move G1 Chip Strawberry
Move G1 Strawberry Nycavri
Move G2 Strawberry Nycavri
Catastrophe Nycavri G

43) nycavri: Trade B1 G1 Nycavri

44) dsheldon: Discover G3 Chip Y3 Sun

45) nycavri: Build G2 Nycavri

46) dsheldon: Sacrifice G3 Dsheldon
Build G2 Frito
Build G3 Jw
Build G3 Dsheldon

47) nycavri: Discover G1 Nycavri Y3 Tl

48) dsheldon: Sacrifice G3 Jw
Build G3 Jw
Build Y1 Chip
Build Y2 Chip

49) nycavri: Discover G1 Tl B1 Bk

50) dsheldon: Trade Y2 R2 Chip

51) nycavri: Build R1 Nycavri

52) dsheldon: Move G3 Sun Nycavri

	nycavri: Not sure why I've tried to play this one out.  Good Game.


10806)
Started: 2008.4.1, Ended: 2008.4.26
Participants: wyons (S), ts52 (N)
Winner: wyons

1) ts52: Homeworld B1 Y2 G3

2) wyons: Homeworld G3 Y1 B3
	ts52: Have a good game!
	wyons: and you

3) ts52: Build G1 Ts52

4) wyons: Build B1 Wyons

5) ts52: Discover G1 Ts52 B3 Grover

6) wyons: Build B1 Wyons

7) ts52: Build G1 Ts52

8) wyons: Discover B1 Wyons B2 Bluemeanies
	ts52: Oops, sorry. Typo there I noticed just after I hit send. D'oh!

9) ts52: Build G1 Ts52
	wyons: no worries. I think it is fine to change moves anyway.

10) wyons: Build B2 Wyons

11) ts52: Build G2 Grover

12) wyons: Discover B1 Wyons B2 Trueblue

13) ts52: Discover G1 Ts52 B3 Cookie_monster

14) wyons: Trade B3 G3 Wyons

15) ts52: Sacrifice G3 Ts52
Build G2 Cookie_monster
Build G2 Cookie_monster
Build G3 Ts52

16) wyons: Build B3 Wyons

17) ts52: Trade G2 Y2 Cookie_monster

18) wyons: Discover G3 Wyons Y2 Grassgreener

19) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build Y1 Cookie_monster

20) wyons: Discover G3 Grassgreener Y3 Xanthrophyl

21) ts52: Discover G2 Ts52 Y3 Bigbird

22) wyons: Trade B3 R3 Wyons

23) ts52: Trade G2 R2 Cookie_monster

24) wyons: Build B3 Wyons

25) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build Y1 Cookie_monster

26) wyons: Trade B3 Y3 Wyons

27) ts52: Discover Y2 Cookie_monster R2 Elmo

28) wyons: Discover R3 Wyons Y2 Orange

29) ts52: Move R2 Cookie_monster Trueblue

30) wyons: Build B3 Wyons

31) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Trueblue
Build R1 Trueblue

32) wyons: Move R3 Orange Bigbird

33) ts52: Sacrifice Y2 Elmo
Move G2 Bigbird Bluemeanies
Move G2 Bigbird Bluemeanies

34) wyons: Trade B3 R3 Wyons

35) ts52: Attack B1 Trueblue

36) wyons: Build B3 Wyons

37) ts52: Build Y2 Cookie_monster

38) wyons: Move Y3 Wyons Bluemeanies

39) ts52: Sacrifice Y2 Cookie_monster
Move Y1 Cookie_monster Bluemeanies
Move Y1 Cookie_monster Bluemeanies

40) wyons: Sacrifice Y3 Bluemeanies
Move B2 Wyons Trueblue
Move B1 Bluemeanies Bigbird
Move B1 Bigbird Trueblue
Catastrophe Trueblue Blue

41) ts52: Trade Y1 R1 Bluemeanies

42) wyons: Move G3 Xanthrophyl Ts52

43) ts52: Sacrifice R1 Bluemeanies
Attack G3 Ts52

44) wyons: Move R3 Bigbird Ts52

45) ts52: Trade G3 R3 Ts52

46) wyons: Sacrifice R3 Wyons
Attack R3N Ts52
Attack G3N Ts52
Attack G1N Ts52

	ts52: Well played. Thanks for the game.
	wyons: thank you too! Interesting game. I thought I was losing for a large part of it. 


10821)
Started: 2008.4.1, Ended: 2008.7.25
Participants: Keith (S), wyons (N)
Winner: wyons

1) wyons: Homeworld B3 R1 G3

2) Keith: Homeworld Y1 B2 G3
	wyons: since we have been talking so much about all this I thought it would be good to try it and see. Also I dont think we have ever played any other game appart from GR. Hope your computer woes are over.
	Keith: A good idea.  I see you have risen through the ranks rather quickly.  You seem to have quickly become one of the sophisticated strategists.  I remember reading about those starting position/play styles once though I have not put any real effort into understanding them.  It is probably something I need to do if I am ever to break out of the group that lags behind the top tier of players by 100 to 150 points.
	Keith: My computer woes may be over by this weekend.  It will probably be a day before I make my opening move.

3) wyons: Build G1 Wyons

4) Keith: Build G1 Keith
	wyons: so many considerations for the first move, then the second move is forced...
	Keith: It is an odd element of the design.  Things do tend to pick up quickly after that though we will probably see a few low tension turns before fighting for control of the stash makes things interesting.

5) wyons: Trade G1 Y1 Wyons
	Keith: "... I remember reading about those starting position/play styles once..."  

I took a second look.  I am the one that posted it to the wiki!

6) Keith: Trade G1 Y1 Keith
	wyons: Interesting- I think I may have read what your wrote. Homeworlds is an awesome game I think- full of unexpected twists. Sometimes when I am losing if I stare at it for long enough suddenly a completely unexpected escape pops up that has been staring me in the face but which I just did not see...
	Keith: Actually I did not write it, Zoltar did in a game that I was monitoring.  I just posted it.  

I don't think of my start in terms of Banker.  I think g3 ship can I crank a factory.  I only remember banking a ship once.  FWIW my event horizon is probably only about 3 to 5 ply.  I go on gut as much as anything and it easy with all the possibilities to overlook something.

7) wyons: Build Y2 Wyons

8) Keith: Build Y2 Keith

9) wyons: Build Y2 Wyons

10) Keith: Discover Y1 Keith G3 Geeliwan
	wyons: I only usually go to about 3 ply aswell. Given that once this game is underway there must be around 40+ options each ply we are talking 40 cubed for a three ply search (76,000!). The only hope is to prune the tree and this is where gut/intuition comes in. I dont like it when games are purely logical. See my entry under too many options (towards the end): http://forums.superdupergames.org/viewtopic.php?t=648&postdays=0&postorder=asc&start=90&sid=b6d6be28a3f0a06b6d9661c4011b075e

11) wyons: Discover Y1 Wyons G2 Greengenie

12) Keith: Build Y3 Geeliwan
	Keith: I looked up your post.  That topic was one of the most interesting discussions in the forums.  I tracked it all the way through page 6 but had missed your input.  It helped me decide the move I just made in my Cannon tournament game against Meadmaker.  I was in a situation of being able to decide to initiate an exchange of cannon fire or to initiate both sides moving to avoid the cannon fire.  I played out on a physical board half a dozen moves ahead then mentally looked another 4 to 6 ply beyond that.  I did not see any advantage looking 10 to 12 ply forward between cannon fire or avoidence.  This is where your post comes in.  After reading it I went with the move that my gut said would make more of a difference in the end game, which is probably 20 moves or more down the line.

13) wyons: Build Y3 Greengenie
	wyons: good, I am glad it might have been helpful. Guts arent always right of course! By the way I finally cracked around offering a prize for GR (forums, general)

14) Keith: Move Y1 Geeliwan Greengenie
	Keith: Saw that.  Sent you an email via my litigation email address.

15) wyons: Discover Y1 Greengenie Y3 Mellowyellow

16) Keith: Build G1 Keith
	wyons: Thanks for your email. I have responded directly to it

17) wyons: Build G1 Wyons

18) Keith: Trade G1 R1 Keith

19) wyons: Trade Y2 R2 Wyons

20) Keith: Build Y2 Geeliwan
	Keith: So far in the game I have been working to avoid having stash troubles rather than to give you stash troubles.  My gut says I need to be careful on the next move but I have not had a good chunk of sit down and think time.

21) wyons: Build G1 Wyons

22) Keith: Build G1 Keith
	wyons: yes, it certainly seems to take 'sit down and think time' - there are so many twists and turns..

23) wyons: Trade G1 B1 Wyons

24) Keith: Trade G1 B1 Keith

25) wyons: Build G1 Wyons
	wyons: b g1 wyons

26) Keith: Build G1 Keith

27) wyons: Discover G1 Wyons B2 Bluegreens

28) Keith: Build R1 Keith

29) wyons: Build R2 Wyons

30) Keith: Move R1 Keith Mellowyellow

31) wyons: Sacrifice R2 Wyons
Attack R1S Mellowyellow
Attack Y1S Greengenie
	Keith: maybe not.
	Keith: I was originally okay with your being able to build a red two.  My thought being that could sacrifice a yellow three and make one home system star and all of your reds go boom.  I failed to factor in that your homeworld would then be only one system away from mine.  You can then sacrifice your yellow three and make my greens go away.  You then have a 3-pointer and I don't.  Can't be good.

32) Keith: Move B1 Keith Geeliwan
	wyons: I agree with your analysis. I think it is rarely good going for a home star. :)

33) wyons: Sacrifice G3 Wyons
Build G2 Bluegreens
Build G2 Bluegreens
Build G3 Wyons
	Keith: Ahem!  Well at least I am better off than if I had done the red catstrophe.  Not much, but better off.

Well I would have it you would have ended up two systems away.  a 3-pointer and a 1-pointer for two 2-pointers and a home star would have been worth it.

34) Keith: Sacrifice Y2 Geeliwan
Move G1 Keith Geeliwan
Move G1 Geeliwan Bluegreens
Catastrophe Bluegreens Green

35) wyons: Build Y2 Wyons

36) Keith: Build R2 Keith

37) wyons: Move R1 Mellowyellow Greengenie

38) Keith: Move R2 Keith Geeliwan

39) wyons: Move B1 Wyons Greengenie

40) Keith: Build G1 Keith

41) wyons: Discover Y1 Mellowyellow G2 Xanthrophyl

42) Keith: Sacrifice G3 Keith
Build Y3 Geeliwan
Build R2 Geeliwan
Build R3 Keith

43) wyons: Sacrifice Y2 Wyons
Move Y1 Greengenie Geeliwan
Move Y1 Xanthrophyl Geeliwan
Catastrophe Geeliwan Yellow
	wyons: I wasnt atall sure about that move but time is running out..
	Keith: I am not sure about all the rammifications of this next move but most of the options that fall out of it seem to be in my favor.

44) Keith: Trade R3 G3 Keith

45) wyons: Build R3 Greengenie
	wyons: well that is what I expected you to do, so I have only myself to blame if I got it wrong.

46) Keith: Build R3 Keith

47) wyons: Discover R3 Greengenie Y3 O-range

48) Keith: Trade R3 B3 Keith

49) wyons: Build R3 Greengenie

50) Keith: Build R3 Keith

51) wyons: Trade R3 Y3 Greengenie

52) Keith: Sacrifice B3 Keith
Trade R2 Y2 Geeliwan
Trade B1 Y1 Geeliwan
Pass
	Keith: I am slowly going under here.  Four 3-pointers to two. 
	Keith: Perhaps three to two but given that you are spread out over three sectors with yours to my one I am going to run into trouble adding 3-pointers before you will.

53) wyons: Discover Y3 Greengenie G1 Dewshine
	Keith: I mean four to three.  Ghaaa.  I can't think straight anymore.

54) Keith: Move R3 Keith Geeliwan
	wyons: I think you are right in assessing that 3-pointers are crucial. It seems to be far more important to have one 3-pointer -say- than several smaller ones..

55) wyons: Build G2 Wyons

56) Keith: Discover G1 Keith R3 Brightlygo

57) wyons: Sacrifice G1 Wyons
Build B1 Greengenie

58) Keith: Build G1 Keith
	wyons: thanks for all the work you've been doing with 
GR AI

59) wyons: Move Y3 Dewshine Brightlygo

60) Keith: Sacrifice G1 Brightlygo
Build R2 Keith
	wyons: hmm need to think on that some more...

61) wyons: Move G2 Wyons Greengenie
	Keith: Did you get my GR4 email?

62) Keith: Move G1 Keith Geeliwan
	wyons: I did, but I havent had a chance to study it yet as its at home (and I seem to be living at work at present!)
	Keith: No problem.  I did not expect feedback on it yet.  I am just not sure what email gets through to you.  At one time email from my personal account was not making it through.

63) wyons: Build G1 Wyons

64) Keith: Build G1 Keith

65) wyons: Sacrifice Y3 Greengenie
Move G2 Greengenie Geeliwan
Move G1 Wyons Greengenie
Move G1 Greengenie Geeliwan
Catastrophe Geeliwan Green

66) Keith: Discover Y2 Keith G3 Midworld

67) wyons: Discover R2 Wyons R2 Redperil

68) Keith: Trade R2 Y2 Keith

69) wyons: Build G1 Wyons
	Keith: Hmmmm... I had the same thing in mind for greengeni.
	Keith: As long as you don't make a critical error you are going to win this one.  Your play has been sharper than mine all the way through.

70) Keith: Build R2 Keith
	wyons: and a critical error is easy in this game!

71) wyons: Build R3 Greengenie

72) Keith: Move G1 Keith Midworld

73) wyons: Trade R3 Y3 Greengenie

74) Keith: Build G1 Keith

75) wyons: Build R3 Greengenie

76) Keith: Build G2 Midworld

77) wyons: Sacrifice Y3 Brightlygo
Discover R1 Greengenie B1 Purpleheart
Move G1 Wyons Greengenie
Move G1 Greengenie Midworld
Catastrophe Midworld Green
	wyons: thanks for your emails. I havent had time to study them yet.
	Keith: Your welcome.

I am still consistently failing to see ply ahead.

	Keith: My Homeworlds fu has become weak while yours has become strong.  I am just dragging things out at this point.  Well done.

Grim Reaper weekend for me.  The family is out of the country and I have only a bathroom's worth of wallpapering to do.  I hae probably gotten 80% of the improvement I am going to be able to get with the limited look ahead and two of my five evaluation elements having some accuracy issues.  I am hoping that playing a bunch of games this weeked, instead of watching them be played, will give me the information for squeezing out the remaining 20% of possible improvement.
	wyons: Many thanks for the game and I dont blame you for resigning! The GR outcomes should be interesting.


10847)
Variants: "Hard time"
Started: 2008.4.2, Ended: 2008.4.7
Participants: TwoShort (S), mneme (N)
Winner: TwoShort

1) mneme: Homeworld R1 B2 G3

2) TwoShort: Homeworld B1 Y3 G3

3) mneme: Build G1 Mneme
	TwoShort: Howdy

4) TwoShort: Build G1 Twoshort
	mneme: Heya.  Should be enjoyable to lose to you (again).

5) mneme: Trade G1 Y1 Mneme
	TwoShort: I'm not sure whether to argue with that attitude or encourage it. :)

6) TwoShort: Trade G1 B1 Twoshort

7) mneme: Build Y1 Mneme
	mneme: Hey, might as well take the psych advantage you have.

8) TwoShort: Build B1 Twoshort

9) mneme: Build Y1 Mneme

10) TwoShort: Discover B1 Twoshort G2 Grogar

11) mneme: Discover Y1 Mneme G3 Applesauce

12) TwoShort: Build B2 Twoshort

13) mneme: Build Y2 Applesauce

14) TwoShort: Discover B1 Twoshort B2 Bluzilla

15) mneme: Discover Y1 Mneme B3 Bluebird

16) TwoShort: Build B3 Grogar

17) mneme: Build Y2 Mneme

18) TwoShort: Trade B3 Y3 Grogar

19) mneme: Trade Y2 G2 Mneme

20) TwoShort: Sacrifice G3 Twoshort
Build B3 Bluzilla
Build B3 Twoshort
Build Y2 Grogar

21) mneme: Sacrifice G2 Mneme
Build Y2 Mneme
Build Y3 Bluebird

22) TwoShort: Trade B3 G3 Twoshort

23) mneme: Sacrifice Y2 Mneme
Move Y1 Applesauce Grogar
Move Y1 Bluebird Grogar
Catastrophe Grogar Y

24) TwoShort: Build B3 Grogar

25) mneme: Build G1 Mneme

26) TwoShort: Trade B3 Y3 Grogar

27) mneme: Trade G3 B3 Mneme

28) TwoShort: Trade B3 G3 Bluzilla

	mneme: no point.  blue freeze out = death in this case.


10593)
Started: 2008.4.3, Ended: 2008.4.25
Participants: dl33t (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B1 Y2 G3



10851)
Started: 2008.4.3, Ended: 2009.12.9
Participants: dl33t (S), MikeYarrum (N)
Winner: MikeYarrum

1) MikeYarrum: Homeworld B3 R2 G3



10848)
Variants: "Hard time"
Started: 2008.4.5, Ended: 2008.5.6
Participants: MikeYarrum (S), Keith (N)
Winner: Keith

1) Keith: Homeworld B1 Y3 G3
	Keith: This is a suprise.  I was beginning to think you had moved on from SDG.

2) MikeYarrum: Homeworld R3 B2 G3
	MikeYarrum: Moved on? To where?

It was a whole series of unfortunate events. But Now I'm back.

3) Keith: Build G1 Keith

4) MikeYarrum: Build G1 Mikeyarrum

5) Keith: Trade G1 B1 Keith

6) MikeYarrum: Trade G1 Y1 Mikeyarrum

7) Keith: Build G1 Keith

8) MikeYarrum: Build Y1 Mikeyarrum

9) Keith: Trade G1 Y1 Keith

10) MikeYarrum: Discover Y1 Mikeyarrum G1 Yotsuba

11) Keith: Build Y2 Keith



10644)
Variants: "Unrated, Hard time"
Started: 2008.4.8, Ended: 2008.4.11
Participants: scottobear (S), sordros (N)
Winner: sordros

1) sordros: Homeworld Y1 B2 G3



10704)
Variants: "Hard time"
Started: 2008.4.10, Ended: 2008.7.19
Participants: TwoShort (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3

2) TwoShort: Homeworld B1 Y2 G3

3) Jesse: Build G1 Jesse

4) TwoShort: Build G1 Twoshort

5) Jesse: Build G1 Jesse

6) TwoShort: Build G2 Twoshort

7) Jesse: Trade G1 Y1 Jesse

8) TwoShort: Discover G2 Twoshort Y3 Yolonda

9) Jesse: Build Y1 Jesse

10) TwoShort: Build G1 Twoshort

11) Jesse: Discover G1 Jesse B2 Honeybee

12) TwoShort: Discover G1 Twoshort B3 Bluonia

13) Jesse: Move Y1 Jesse Honeybee

14) TwoShort: Discover G2 Yolonda G2 Greenland

15) Jesse: Discover Y1 Honeybee G3 Apogee

16) TwoShort: Build G2 Bluonia

17) Jesse: Build Y1 Jesse

18) TwoShort: Trade G2 Y2 Bluonia

19) Jesse: Build G2 Jesse

20) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Bluonia
Build Y3 Bluonia

21) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y3 Apogee
Build Y3 Apogee

22) TwoShort: Sacrifice Y2 Bluonia
Move G2 Greenland Jesse
Discover G1 Bluonia Y2 Yonderboy

23) Jesse: Sacrifice Y3 Apogee
Move Y1 Jesse Honeybee
Move G2 Jesse Honeybee
Discover G2 Honeybee Y3 Wonderwhy

24) TwoShort: Trade G1 R1 Twoshort
	TwoShort: Well that looks grim.

25) Jesse: Attack G2 Jesse

26) TwoShort: Build G1 Yonderboy

27) Jesse: Trade G2 R2 Jesse

28) TwoShort: Discover Y2 Bluonia G2 Gordon

29) Jesse: Move R2 Jesse Yonderboy

30) TwoShort: Move Y3 Bluonia Yonderboy
	TwoShort: OK, I've stalled long enough to win my other game and hit 1900.  Woo-hoo!  The way things are going here, I think I should bask in the glory quickly :)

31) Jesse: Move R2 Yonderboy Apogee

32) TwoShort: Build R1 Twoshort

33) Jesse: Sacrifice G2 Wonderwhy
Build Y3 Jesse
Build R2 Apogee

34) TwoShort: Build G2 Twoshort

35) Jesse: Sacrifice Y3 Apogee
Move R2 Apogee Honeybee
Move Y1 Jesse Yonderboy
Move Y1 Apogee Yonderboy
Catastrophe Yonderboy Y

36) TwoShort: Discover R1 Twoshort B3 Bluestar

37) Jesse: Build G1 Jesse

38) TwoShort: Move G2 Twoshort Bluestar

39) Jesse: Build G1 Honeybee

40) TwoShort: Build G2 Twoshort

41) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y1 Jesse
Build Y1 Honeybee

42) TwoShort: Discover G2 Twoshort Y3 Yolonda

43) Jesse: Move Y1 Honeybee Apogee

44) TwoShort: Sacrifice G2 Bluestar
Build R2 Twoshort
Build R3 Bluestar

45) Jesse: Sacrifice G3 Jesse
Build G2 Honeybee
Build G3 Jesse
Build R3 Honeybee

46) TwoShort: Trade R3 Y3 Bluestar

47) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y2 Apogee
Build R3 Apogee

48) TwoShort: Sacrifice G2 Yolonda
Build R3 Bluestar
Build Y3 Gordon

49) Jesse: Discover Y3 Jesse G2 Perigee

50) TwoShort: Sacrifice Y2 Gordon
Move R1 Twoshort Apogee
Move R2 Twoshort Apogee
Catastrophe Apogee Red

51) Jesse: Build Y2 Honeybee

52) TwoShort: Move R3 Bluestar Twoshort

53) Jesse: Move R2 Honeybee Apogee

54) TwoShort: Build R1 Twoshort

55) Jesse: Build R2 Apogee

56) TwoShort: Trade R1 B1 Twoshort

57) Jesse: Trade G1 B1 Honeybee

58) TwoShort: Build G1 Twoshort

59) Jesse: Move R2 Apogee Perigee

60) TwoShort: Build R1 Twoshort

61) Jesse: Sacrifice G3 Jesse
Build R2 Perigee
Build R3 Apogee
Build G3 Jesse

62) TwoShort: Build B2 Twoshort

63) Jesse: Sacrifice Y3 Perigee
Move B1 Honeybee Apogee
Move B1 Apogee Twoshort
Discover G1 Jesse B2 Frisbee
Catastrophe Twoshort B

	Jesse: I almost fell into your tricky trap.
	TwoShort: Shucks :)  Not that I really expected to get away with it, but it seemed like it was worth a try.  Anyway, now you have me for sure.  
   Great game, thanks!


10749)
Started: 2008.4.11, Ended: 2008.5.2
Participants: larry (S), smilingra (N)
Winner: smilingra

1) smilingra: Homeworld R1 B2 G3



10711)
Started: 2008.4.11, Ended: 2008.4.30
Participants: MatrixFrog (S), Wheatberry (N)
Winner: MatrixFrog

1) Wheatberry: Homeworld G2 Y1 B3

2) MatrixFrog: Homeworld B3 G2 Y3
	Wheatberry: Hiya! Been wanting to learn Homeworlds for awhile now, but haven't been able to get any of my local friends interested in it. Feel free to trounce me if I make any newbish mistakes? ;)

3) Wheatberry: Build B1 Wheatberry

4) MatrixFrog: Build Y1 Matrixfrog

5) Wheatberry: Trade B1 Y1 Wheatberry

6) MatrixFrog: Build Y2 Matrixfrog

7) Wheatberry: Build Y2 Wheatberry

8) MatrixFrog: Discover Y2 Matrixfrog G1 Bing
	Wheatberry: Oh snap! Can you use sacrifice actions sequentially? i.e. could you sacrifice your Y3 to make 3 jumps in a row with a single piece? i.e. can you send your y1 out to discover a small star, then send it from *there* to discover a large star, then move it from *there* into my homeworld, triggering a catastrophe on yellow?
	MatrixFrog: I could indeed, however, I probably won't do something that drastic, this early in the game. I would probably use my smallest ship to do that, which is y1 here. So I would be left with a single y2. On the other hand, you would be left with a single b3, plus a 1-star homeworld, which is easier for me to get to. So maybe it would be worth it. I won't do it now, in any case, but you should probably move one of your y ships out or trade them, pretty soon.

9) Wheatberry: Discover Y1 Wheatberry B3 Crosby

10) MatrixFrog: Trade Y1 G1 Matrixfrog
	Wheatberry: Okay, phew. Glad I asked. That's a cool rule, makes the galaxy seem a whole lot smaller. :)

11) Wheatberry: Move Y2 Wheatberry Crosby

12) MatrixFrog: Build G1 Matrixfrog

13) Wheatberry: Trade Y2 R2 Crosby

14) MatrixFrog: Trade G1 R1 Matrixfrog

15) Wheatberry: Move R2 Crosby Bing

16) MatrixFrog: Discover Y2 Bing G3 Jello

17) Wheatberry: Move Y1 Crosby Bing

18) MatrixFrog: Build R1 Matrixfrog

19) Wheatberry: Build R1 Bing

20) MatrixFrog: Build Y1 Jello

21) Wheatberry: Build B1 Wheatberry

22) MatrixFrog: Build Y2 Matrixfrog

23) Wheatberry: Build Y2 Bing

24) MatrixFrog: Build G1 Matrixfrog

25) Wheatberry: Trade B3 Y3 Wheatberry

26) MatrixFrog: Sacrifice Y2 Matrixfrog
Move Y2 Jello Wheatberry
Move Y1 Jello Wheatberry
Catastrophe Wheatberry Y

27) Wheatberry: Move R2 Bing Wheatberry

28) MatrixFrog: Discover G1 Matrixfrog Y1 Bang

29) Wheatberry: Build R2 Wheatberry
	Wheatberry: Ooof. Don't know what I was thinking there... Well played.

30) MatrixFrog: Build G2 Bang

31) Wheatberry: Sacrifice Y2 Bing
Move Y1 Bing Wheatberry
Move R1 Bing Matrixfrog

32) MatrixFrog: Attack R1 Matrixfrog

33) Wheatberry: Move R2 Wheatberry Bang
	Wheatberry: Nothing much I could do to stop you at this point, lacking green...

34) MatrixFrog: Sacrifice R1 Matrixfrog
Attack R2 Bang

35) Wheatberry: Discover B1 Wheatberry Y3 Bounce

36) MatrixFrog: Sacrifice Y3 Matrixfrog
Move G1 Bang Wheatberry
Move G2 Bang Wheatberry
Move R2 Bang Wheatberry

37) Wheatberry: Attack G2 Wheatberry

38) MatrixFrog: Build G1 Wheatberry
Catastrophe Wheatberry G

	Wheatberry: Surrender? NEVER! ;)

Good game.


10792)
Variants: "Hard time"
Started: 2008.4.13, Ended: 2008.5.18
Participants: Jesse (S), Wheatberry (N)
Winner: Jesse

1) Wheatberry: Homeworld B3 G2 Y3

2) Jesse: Homeworld R3 B1 G3
	Jesse: Hello.  Welcome, and have a good game.

3) Wheatberry: Build Y1 Wheatberry

4) Jesse: Build G1 Jesse
	Wheatberry: Hi & thanks. Still new to Homeworlds but it's a nifty game. I'll give it my best shot.

5) Wheatberry: Trade Y1 G1 Wheatberry
	Jesse: Let me know if you have any questions.  I'm always pleased to help a new player get oriented.

6) Jesse: Trade G1 Y1 Jesse

7) Wheatberry: Discover G1 Wheatberry R1 Algol

8) Jesse: Build Y1 Jesse

	Wheatberry: Heh! I love that you get to name each new star system, instead of just getting something random.

9) Wheatberry: Build G1 Algol
	Jesse: First tip: It is unusual to discover red star systems, especially early in the game.  It makes it harder to develop, because the red doesn't do anything but give you limited local protection.  The home system is kind of a special case, though.  I happen to like that a red-blue system gives me a little more flexibility to go with either a green or yellow large defender.

10) Jesse: Build G1 Jesse
	Wheatberry: Okay, good to know. I was just going with a "get a little of everything" strategy
	Jesse: That's a good instinct.

11) Wheatberry: Build Y1 Wheatberry

12) Jesse: Discover G1 Jesse B2 Ocaml

13) Wheatberry: Build Y2 Wheatberry

14) Jesse: Move Y1 Jesse Ocaml

15) Wheatberry: Trade Y2 R2 Wheatberry

16) Jesse: Build Y2 Ocaml

17) Wheatberry: Move Y1 Wheatberry Algol

18) Jesse: Build G2 Jesse

19) Wheatberry: Build Y2 Algol

20) Jesse: Trade Y2 R2 Ocaml

21) Wheatberry: Build Y2 Wheatberry

22) Jesse: Sacrifice G3 Jesse
Build G2 Ocaml
Build G3 Jesse
Build Y2 Ocaml

23) Wheatberry: Discover G1 Algol B2 Simula
	Wheatberry: WHOA. Very clever.

24) Jesse: Trade G1 B1 Ocaml
	Wheatberry: Heh. Sorry. Just realized I couldn't pull the same trick, lacking another green ship in my home system...

25) Wheatberry: Move G1 Algol Simula
	Jesse: Yeah, that's called "the factory".  It is a common and very useful tactic.

26) Jesse: Discover Y2 Ocaml G3 Erlang

27) Wheatberry: Sacrifice Y2 Wheatberry
Move G1 Simula Jesse
Move G1 Simula Jesse
Catastrophe Jesse Green
	Jesse: It's better to have diversity at each system and spread out your ships of like colors, than to clump them.  For instance, you could have moved one of the yellows to Simula, instead, so both Algol and Simula could have served production purposes.  Being a red star, Algol doesn't help you diversify, which slows you down in the opening, but with both a green and a yellow ship there, it's not something you need to abandon.

28) Jesse: Sacrifice G2 Ocaml
Build Y2 Ocaml
Build Y3 Jesse

29) Wheatberry: Discover Y1 Algol B2 Simula
	Wheatberry: True. Though in this case I had other plans... mwahaha ;-)

30) Jesse: Trade Y3 G3 Jesse
	Jesse: I really must stop being incautious with mew players.

31) Wheatberry: Trade Y1 G1 Simula

32) Jesse: Trade Y1 G1 Ocaml

33) Wheatberry: Build G1 Simula

34) Jesse: Build R1 Ocaml

35) Wheatberry: Move Y2 Algol Simula

36) Jesse: Build G2 Ocaml


37) Wheatberry: Build Y1 Simula

38) Jesse: Discover G1 Ocaml Y3 Self

39) Wheatberry: Trade Y1 R1 Simula

40) Jesse: Build G2 Self

41) Wheatberry: Build Y1 Simula

42) Jesse: Build G3 Ocaml

43) Wheatberry: Move G1 Simula Self

44) Jesse: Sacrifice G3 Ocaml
Build G3 Ocaml
Build Y1 Erlang
Build Y3 Ocaml

45) Wheatberry: Trade Y1 B1 Simula

46) Jesse: Sacrifice Y3 Ocaml
Discover G3 Ocaml Y3 Intercal
Discover G1 Self Y1 Scheme
Move B1 Ocaml Erlang

47) Wheatberry: Move R2 Wheatberry Scheme

48) Jesse: Sacrifice G3 Intercal
Build G3 Scheme
Build Y3 Ocaml
Build B2 Erlang

49) Wheatberry: Move R2 Scheme Wheatberry

50) Jesse: Sacrifice Y3 Ocaml
Move R2 Ocaml Self
Move B2 Erlang Scheme
Discover G3 Scheme Y3 Unlambda

51) Wheatberry: Discover G1 Self R1 Algol

52) Jesse: Sacrifice G3 Unlambda
Build G3 Scheme
Build Y3 Ocaml
Build B3 Scheme

53) Wheatberry: Move B1 Simula Algol

54) Jesse: Sacrifice G3 Scheme
Build G3 Scheme
Build B3 Erlang
Build R2 Ocaml

55) Wheatberry: Build R3 Simula

56) Jesse: Sacrifice Y2 Ocaml
Move B3 Erlang Scheme
Move B3 Scheme Wheatberry

57) Wheatberry: Build R3 Wheatberry

58) Jesse: Sacrifice R2 Ocaml
Attack R3 Wheatberry
Attack Y3 Wheatberry

59) Wheatberry: Pass

60) Jesse: Attack R2 Wheatberry

	Wheatberry: It appears that you've got me. Good show. :)
	Jesse: Thanks for the game.  I hope you learned a few things to get you started on your Homeworlds career.
	Wheatberry: I can see how stash control becomes critical in the one-on-one game. I'll be sure to get in on the arms race faster next time.


10852)
Started: 2008.4.14, Ended: 2011.8.19
Participants: inundator (S), MikeYarrum (N)
Winner: inundator

1) MikeYarrum: Homeworld Y1 B2 G3

2) inundator: Homeworld Y3 B2 G3

3) MikeYarrum: Build G1 Mikeyarrum

4) inundator: Build G1 Inundator

5) MikeYarrum: Discover G1 Mikeyarrum Y3 Asagi

6) inundator: Trade G1 R1 Inundator

7) MikeYarrum: Build G1 Mikeyarrum

8) inundator: Discover R1 Inundator Y1 Tiny

9) MikeYarrum: Trade G1 Y1 Mikeyarrum

10) inundator: Move R1 Tiny Asagi

11) MikeYarrum: Discover G1 Asagi R1 Ena

12) inundator: Build G1 Inundator

13) MikeYarrum: Build Y1 Mikeyarrum

14) inundator: Move R1 Asagi Mikeyarrum

15) MikeYarrum: Trade Y1 R1 Mikeyarrum

16) inundator: Attack R1 Mikeyarrum

17) MikeYarrum: Discover Y1 Mikeyarrum R3 Asagi

18) inundator: Trade R1 G1 Mikeyarrum



10897)
Started: 2008.4.14, Ended: 2008.6.14
Participants: JJ12121616 (S), MikeYarrum (N)
Winner: JJ12121616

1) MikeYarrum: Homeworld B3 R2 G3

2) JJ12121616: Homeworld G2 B1 Y3

3) MikeYarrum: Build G1 Mikeyarrum
	JJ12121616: Good luck.
	MikeYarrum: Thanks, same to you!

4) JJ12121616: Build Y1 Jj12121616
	JJ12121616: I'm sorry for the extended absence. My Internet was knocked out by roofers nudging our satellite while repairing storm damage. I'm back in now.

5) MikeYarrum: Trade G1 Y1 Mikeyarrum
	MikeYarrum: Not a problem. Glad to have you back.

6) JJ12121616: Discover Y1 Jj12121616 B3 Market

7) MikeYarrum: Build G1 Mikeyarrum
	JJ12121616: I am fairly new to the game. Don't go light on me, though. Might I ask why the red homestar?
	MikeYarrum: No problem. It's something I picked up here from advanced players - it makes it really difficult to attack my homeworld. Combine this with the fact that it will also be difficult to attack later in the game when 1 point pieces will be rare (2 and 3 point homestars).

It does put me at a slight disadvantage early in the game, as I have to trade for a yellow ship ASAP. But it tends to pay off later.

8) JJ12121616: Build Y1 Jj12121616

9) MikeYarrum: Build Y2 Mikeyarrum

10) JJ12121616: Build Y2 Jj12121616
	JJ12121616: I understand. Basically I'm going to have to sac Y1's to get to your home. Your going to lock up all the small pieces all over the smalls, and just move a fat attacker out and dominate.

I don't mind my setup. I've used it the most. Just make dudes and catastrophes, getting all the 3's to use.

This could be interesting. I'll end up locking up the 3's and you locking your home world entirely.

11) MikeYarrum: Discover Y1 Mikeyarrum G1 Yotsuba

12) JJ12121616: Discover Y1 Jj12121616 G3 Slime

13) MikeYarrum: Build G1 Mikeyarrum
	JJ12121616: You won't get me like that. This time anyways.

14) JJ12121616: Trade Y2 R2 Jj12121616

15) MikeYarrum: Build Y2 Yotsuba

16) JJ12121616: Build Y2 Slime

	JJ12121616: When your timer gets to -14d, I will force surrender. I would prefer not to, but I would not like to leave the game hanging.


10902)
Started: 2008.4.15, Ended: 2009.12.9
Participants: MikeYarrum (S), mick (N)
Winner: MikeYarrum

1) mick: Homeworld B3 G1 Y3

2) MikeYarrum: Homeworld Y1 B2 G3
	mick: HI Mike.  Go easy on me.  This is my first ever game.  I just got my stash last week, and I haven't found anyone to play with.  
	MikeYarrum: Hello. I'll be forgiving. This site is a great place to learn the ins and outs of a game before you try to teach anyone.

3) mick: Build Y1 Mick


4) MikeYarrum: Build G1 Mikeyarrum

5) mick: Discover Y1 Mick B2 Orion
	mick: ?? how do I move my ship to a new system?  What's the command?

6) MikeYarrum: Trade G1 Y1 Mikeyarrum
	MikeYarrum: I think you figured it out. =D

7) mick: Trade Y1 G1 Orion

8) MikeYarrum: Discover Y1 Mikeyarrum G3 Sakaki

9) mick: Trade Y3 G3 Mick

10) MikeYarrum: Build Y1 Sakaki
	MikeYarrum: You might want to take that move back. When you take the last small piece like that, it means you're giving me a medium ship.
	mick: thanks for the advice.

11) mick: Build G1 Orion

12) MikeYarrum: Build G2 Mikeyarrum

13) mick: Build G2 Orion
	mick: Hi Mike.  Sorry for the delay.  Was off sick.
	MikeYarrum: Not a problem.



10751)
Variants: "Sinister, Hard time"
Started: 2008.4.19, Ended: 2008.11.12
Participants: Wheatberry (S), smilingra (W), wyons (N), wmreed (E)
Winner: wyons

1) wyons: Homeworld B2 R1 G3

2) wmreed: Homeworld B3 G2 Y3
	wmreed: homeworld b3 g2 y3
	wmreed: duh.  I should wake up before I play this game.



3) Wheatberry: Homeworld R2 G1 B3
	wyons: enjoy the game everyone...

4) smilingra: Homeworld B2 R3 G3

5) wyons: Build G1 Wyons
	smilingra: Yes, good luck to all.  Hope we can have some fun...

6) wmreed: Build Y1 Wmreed
	Wheatberry: Lotsa red out there, this should be interesting... May the best Martian win. :)

7) Wheatberry: Build B1 Wheatberry
	wmreed: I was noticing that, too.  Lots of red green and blue.

8) smilingra: Build G1 Smilingra

9) wyons: Trade G1 Y1 Wyons
	smilingra: I guess they made me West because I was the only one whose name did not start with a 'w' :)
	wyons: *laughs* - that's exactly the brand of absurd humour I love.

10) wmreed: Trade Y1 R1 Wmreed

11) Wheatberry: Trade B1 Y1 Wheatberry

12) smilingra: Trade G1 Y1 Smilingra

13) wyons: Build Y1 Wyons

14) wmreed: Build R1 Wmreed

15) Wheatberry: Build B1 Wheatberry

16) smilingra: Build G1 Smilingra
	smilingra: Glad you appreciated it.  I'll try to keep them coming. :)

17) wyons: Discover Y1 Wyons G3 Xanthrophyl

18) wmreed: Trade R1 G1 Wmreed

19) Wheatberry: Trade B3 G3 Wheatberry

20) smilingra: Discover G1 Smilingra B1 Alpha

21) wyons: Build G1 Wyons

22) wmreed: Build R1 Wmreed

23) Wheatberry: Build B1 Wheatberry

24) smilingra: Build G1 Alpha

25) wyons: Build G2 Wyons

26) wmreed: Build Y1 Wmreed

27) Wheatberry: Build Y2 Wheatberry

28) smilingra: Build G2 Smilingra

29) wyons: Build Y2 Wyons

30) wmreed: Move G1 Wmreed Alpha

31) Wheatberry: Move B1 Wheatberry Xanthrophyl

32) smilingra: Build Y2 Smilingra

33) wyons: Discover G1 Wyons Y3 Mellowyellow

34) wmreed: Build Y2 Wmreed

35) Wheatberry: Discover Y1 Wheatberry G3 Metric

36) smilingra: Trade G1 R1 Alpha

37) wyons: Sacrifice Y2 Wyons
Move Y1 Xanthrophyl Alpha
Move Y1 Alpha Wmreed
Catastrophe Wmreed Yellow

38) wmreed: Sacrifice R1 Wmreed
Attack R1W Alpha

39) Wheatberry: Trade B1 G1 Xanthrophyl

40) smilingra: Trade G2 R2 Smilingra

41) wyons: Trade G2 R2 Wyons

42) wmreed: Build R1 Wmreed

43) Wheatberry: Build Y1 Wheatberry

44) smilingra: Move R2 Smilingra Alpha

45) wyons: Move R2 Wyons Mellowyellow

46) wmreed: Build G2 Alpha

47) Wheatberry: Move Y2 Wheatberry Xanthrophyl

48) smilingra: Attack G2E Alpha

49) wyons: Discover R2 Mellowyellow Y1 Orange

50) wmreed: Pass

51) Wheatberry: Move G1 Xanthrophyl Alpha

52) smilingra: Trade G2 Y2 Alpha
	wmreed: I'm screwed.  Gods I suck at this game.  Why do I even like it?

53) wyons: Move R2 Orange Wmreed

54) wmreed: Trade R1 Y1 Wmreed

55) Wheatberry: Sacrifice Y1 Metric
Move G1 Alpha Wmreed
	Wheatberry: Huh. Just realized that if I trigger that catastrophe, wmreed would have no way to recover & it'd be game over in a couple turns. This is where the Sinister rules get a bit wacky sometimes; I basically have to defend my enemy just to keep from losing.
	Wheatberry: So let's try this... smilingra, please sacrifice your y1 to move your g1 from alpha to wmreed's homesystem. In exchange, you could capture my g1 in alpha next turn.
	Wheatberry: Otherwise, wyons jumps his R2 from orange to wmreed, builds another red in wmreed next turn, and it's checkmate.
	Wheatberry: Oh, wait a second. wmreed can just trade his r1 for something else on his turn, using his blue star. I am an idiot. Please ignore previous messages. :)

56) smilingra: Attack R1E Alpha
	smilingra: Thanks for the running commentary, Wheatberry. :)

57) wyons: Attack R1E Wmreed

58) wmreed: Build Y1 Wmreed
	wmreed: it doesn't really save me though. He's got me on his next turn. 
	wmreed: unless I'm confused on a rule.  Which I often am. 

59) Wheatberry: Trade G1 R1 Wmreed
	Wheatberry: This should keep things interesting then. If he steals your yellow, steal my green. Sorry wyons. ;)

60) smilingra: Move R1 Alpha Wmreed
Catastrophe Wmreed Red

61) wyons: Build Y2 Wyons
	wmreed: I don't see a way out of this one. 

62) wmreed: Trade Y1 R1 Wmreed

63) Wheatberry: Build B1 Wheatberry
	Wheatberry: There's always a way. *grin*
Assuming smilingra's willing to help out, of course...

64) smilingra: Attack G1E Alpha
	smilingra: You mean like that?

65) wyons: Trade Y2 R2 Wyons

66) wmreed: Build Y1 Wmreed

67) Wheatberry: Trade B1 R1 Wheatberry
	Wheatberry: Yep, like that. :)

68) smilingra: Move R2 Alpha Xanthrophyl

69) wyons: Build Y2 Wyons

70) wmreed: Discover Y1 Wmreed G1 Logan

71) Wheatberry: Sacrifice R1 Wheatberry
Attack R2W Xanthrophyl

72) smilingra: Build Y2 Alpha

73) wyons: Trade Y1 B1 Wyons

74) wmreed: Build Y1 Wmreed


75) Wheatberry: Sacrifice G3 Wheatberry
Build Y3 Wheatberry
Build Y3 Wheatberry
Build Y3 Xanthrophyl
	Wheatberry: Yoink! :-D

76) smilingra: Trade G1 R1 Alpha
	smilingra: grrr... nice move!

77) wyons: Build Y3 Wyons

78) wmreed: Trade Y1 B1 Wmreed

79) Wheatberry: Trade Y3 G3 Wheatberry

80) smilingra: Build R1 Alpha

81) wyons: Discover Y3 Wyons G3 Leafshine

82) wmreed: Move B1 Wmreed Logan


83) Wheatberry: Move Y3 Xanthrophyl Alpha

84) smilingra: Discover R1 Alpha B3 Zeta

85) wyons: Discover Y3 Leafshine G1 Dewdrop

86) wmreed: Build R1 Wmreed

87) Wheatberry: Trade Y3 G3 Alpha

88) smilingra: Build G2 Alpha

89) wyons: Move R2 Wyons Mellowyellow

90) wmreed: Build B1 Logan

91) Wheatberry: Sacrifice R2 Xanthrophyl
Attack G2W Alpha
Attack R1W Alpha

92) smilingra: Sacrifice R1 Zeta
Attack R1S Alpha

93) wyons: Move R2 Mellowyellow Logan

94) wmreed: Sacrifice Y1 Logan
Move B1 Logan Xanthrophyl

95) Wheatberry: Trade G2 R2 Alpha

96) smilingra: Attack R2S Alpha

97) wyons: Build R1 Logan

98) wmreed: Build B2 Xanthrophyl

99) Wheatberry: Trade Y3 R3 Wheatberry

100) Wheatberry: Pass
	Wheatberry: Oh, crud. For some reason I was thinking you couldn't attack my 2s with a 3 in the system. Invasion: BOTCHED.
	Wheatberry: (hastily hides his "MISSION ACCOMPLISHED!" banner) :-D
	wyons: b r1 logan

101) wyons: Sacrifice Y2 Wyons
Move R2 Logan Wmreed
Move Y3 Dewdrop Wmreed

102) wmreed: Trade B2 G2 Xanthrophyl

103) Wheatberry: Move Y2 Xanthrophyl Alpha

104) wyons: Sacrifice G3 Wyons
Build Y1 Wmreed
Build Y1 Wmreed
Build R2 Wmreed
Catastrophe Wmreed Red
Catastrophe Wmreed Yellow
	wyons: In this situation (with smilingra timing out) surely the move should continue passing clockwise (to me!)- otherwise Wheatberry will get two moves (one after the other).
	wmreed: I agree. 
	smilingra: My deepest apologies.  I thought that I had made my move, but I guess not.   Good luck to you all.
	wyons: Aaron: any chance you can bring smilingra back- that would solve the problem and also save the game from suddenly having a different dynamic?
	smilingra: wyons, you are quite kind.  As long as the others are willing to have me back, I'd gladly hop back in!
	wmreed: i'm willing to allow smilingra to return to play.
	wyons: just up to wheatberry and aaron then?
	wmreed: What's happening with this game?  Anything?

	wyons: Well, nothing at present- but I have been hoping Aaron will be able to fix it when he is back from his travels.
	Wheatberry: This game has sort of slipped off my radar, but I'm willing to hop back into it anytime. And I agree with wyons: we should either (A) have an admin reset smilingra's timer & pass the turn to him, or (B) drop down to a 3-person game & pass the turn to wyons. If smilingra's still around and wants back in, I have no problem doing option A.

	Wheatberry: Hi all! I'm back. I've completely forgetten what my strategy even was in this game, though, so this should be interesting... heh heh
	wyons: sorry guys- that's it. My reading was that Smilingra could not have prevented that attack. But I could be wrong...


10884)
Variants: "Hard time"
Started: 2008.4.20, Ended: 2008.5.2
Participants: TwoShort (S), YourEternalGod (N)
Winner: TwoShort

1) YourEternalGod: Homeworld G1 Y2 B3

2) TwoShort: Homeworld Y1 B3 G3

3) YourEternalGod: Build B1 Youreternalgod

4) TwoShort: Build G1 Twoshort

5) YourEternalGod: Build B1 Youreternalgod

6) TwoShort: Build G1 Twoshort

7) YourEternalGod: Discover B1 Youreternalgod Y3 Wanderer

8) TwoShort: Discover G1 Twoshort Y2 Yolonda

9) YourEternalGod: Build B1 Youreternalgod

10) TwoShort: Build G2 Yolonda

11) YourEternalGod: Trade B1 R1 Wanderer

12) TwoShort: Build G2 Twoshort

13) YourEternalGod: Move R1 Wanderer Yolonda

14) TwoShort: Trade G2 R2 Twoshort

15) YourEternalGod: Attack G1 Yolonda

16) TwoShort: Sacrifice R2 Twoshort
Attack R1 Yolonda
Attack G1 Yolonda

17) YourEternalGod: Discover B3 Youreternalgod G3 Go

18) TwoShort: Discover G2 Yolonda Y3 Ynot

19) YourEternalGod: Trade B1 R1 Youreternalgod

20) TwoShort: Sacrifice G3 Twoshort
Build G2 Ynot
Build G2 Twoshort
Build G3 Twoshort



10928)
Variants: "Hard time"
Started: 2008.4.20, Ended: 2008.5.2
Participants: YourEternalGod (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) YourEternalGod: Homeworld B1 G1 Y3 *

3) TwoShort: Build G1 Twoshort

4) YourEternalGod: Build Y1 Youreternalgod

5) TwoShort: Build G1 Twoshort

6) YourEternalGod: Build Y1 Youreternalgod

7) TwoShort: Trade G1 Y1 Twoshort

8) YourEternalGod: Discover Y1 Youreternalgod B2 Tyco

9) TwoShort: Build G1 Twoshort

10) YourEternalGod: Build Y2 Youreternalgod

11) TwoShort: Discover G1 Twoshort Y3 Jethro

12) YourEternalGod: Move Y1 Youreternalgod Tyco

13) TwoShort: Build G2 Twoshort

14) YourEternalGod: Trade Y2 G2 Youreternalgod

15) TwoShort: Discover G1 Twoshort B3 Bluzilla

16) YourEternalGod: Build Y2 Youreternalgod

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluzilla
Build G3 Jethro
Build G3 Twoshort

18) YourEternalGod: Build G3 Youreternalgod

19) TwoShort: Move G1 Jethro Youreternalgod
Catastrophe Youreternalgod Green



10929)
Variants: "Hard time"
Started: 2008.4.20, Ended: 2008.5.2
Participants: TwoShort (S), YourEternalGod (N)
Winner: TwoShort

1) YourEternalGod: Homeworld Y3 B2 G3

2) TwoShort: Homeworld B1 Y2 G3

3) YourEternalGod: Build G1 Youreternalgod
	TwoShort: Howdy... out of curiosity, did you intend to start 3 games at once?

4) TwoShort: Build G1 Twoshort
	YourEternalGod: Not horribly, But I'm more then happy to play them out. Lets me try different options

5) YourEternalGod: Discover G1 Youreternalgod Y1 Amber
	TwoShort: Sounds good to me.  

6) TwoShort: Trade G1 B1 Twoshort

7) YourEternalGod: Build G1 Youreternalgod

8) TwoShort: Build B1 Twoshort

9) YourEternalGod: Trade G1 Y1 Youreternalgod

10) TwoShort: Discover B1 Twoshort Y3 Yolonda

11) YourEternalGod: Build G1 Youreternalgod

12) TwoShort: Build B2 Twoshort

13) YourEternalGod: Discover G1 Amber B3 Azure

14) TwoShort: Trade B2 R2 Twoshort

15) YourEternalGod: Sacrifice G3 Youreternalgod
Build G1 Youreternalgod
Build G2 Youreternalgod
Build G2 Azure

16) TwoShort: Move R2 Twoshort Azure



10907)
Started: 2008.4.26, Ended: 2009.12.9
Participants: MikeYarrum (S), lostsoul (N)
Winner: MikeYarrum

1) lostsoul: Homeworld G1 B3 R3
	lostsoul: Hi -- I'm very, very new to this game.  I hope that is ok?

2) MikeYarrum: Homeworld B2 Y1 G3
	MikeYarrum: No problem, we were all new at one point. =D

3) lostsoul: Trade R3 G3 Lostsoul



10959)
Variants: "Hard time"
Started: 2008.4.26, Ended: 2008.5.19
Participants: spearjr (S), jeep (N)
Winner: jeep

1) jeep: Homeworld R1 B2 G3

2) spearjr: Homeworld B3 G2 Y3

3) jeep: Build G1 Jeep

4) spearjr: Build Y1 Spearjr

5) jeep: Trade G1 Y1 Jeep

6) spearjr: Trade Y1 B1 Spearjr

7) jeep: Build G1 Jeep

8) spearjr: Build Y1 Spearjr

9) jeep: Build G1 Jeep

10) spearjr: Build Y1 Spearjr
	spearjr: build y1 spearjr


11) jeep: Discover G1 Jeep Y3 Cache

12) spearjr: Trade Y1 G1 Spearjr

13) jeep: Trade G1 B1 Jeep



10971)
Variants: "Hard time"
Started: 2008.4.28, Ended: 2008.6.1
Participants: stoneaxe (S), sordros (N)
Winner: sordros

1) sordros: Homeworld B1 Y2 G3

2) stoneaxe: Homeworld Y1 B3 G3
	sordros: Good luck.  Have fun.

3) sordros: Build G1 Sordros

4) stoneaxe: Build G1 Stoneaxe

5) sordros: Discover G1 Sordros Y3 Itani

6) stoneaxe: Trade G1 B1 Stoneaxe

7) sordros: Build G1 Sordros
	stoneaxe: Forgot to respond to your greeting.  Having fun so far!  Good luck to you too.

8) stoneaxe: Build B1 Stoneaxe

9) sordros: Trade G1 Y1 Sordros

10) stoneaxe: Discover B1 Stoneaxe G2 Opter

11) sordros: Build Y1 Sordros

12) stoneaxe: Build B2 Opter

13) sordros: Discover Y1 Sordros B3 Uit

14) stoneaxe: Trade B2 Y2 Opter

15) sordros: Build G1 Sordros

16) stoneaxe: Build B2 Stoneaxe

17) sordros: Build Y2 Sordros

18) stoneaxe: Build Y3 Opter

19) sordros: Move G1 Sordros Uit

	stoneaxe: Gaaahhhhh..... Sorry bout that!  Got into a busy weekend and forgot to make my move.  Well, nice game!  Apologies for the timeout!


10963)
Started: 2008.4.28, Ended: 2008.8.23
Participants: MikeYarrum (S), Cinnibar (N)
Winner: Cinnibar

1) Cinnibar: Homeworld G1 B3 Y3



10997)
Variants: "Hard time"
Started: 2008.5.1, Ended: 2008.5.22
Participants: fnord (S), Horowits (N)
Winner: Horowits

1) Horowits: Homeworld B3 G2 Y3

2) fnord: Homeworld B2 G1 Y3
	Horowits: Ahoy mon.  If you need to contact me - 20camels@gmail.com.  good luck... not that you will need it

3) Horowits: Build Y1 Horowits

4) fnord: B Y1 Fnord
	fnord: Greetings, and to all the spectators as well.  Sure is a big crowd.

5) Horowits: Trade Y1 G1 Horowits

6) fnord: Discover Y1 Fnord R3 Discord

7) Horowits: Discover G1 Horowits B1 Doom

8) fnord: Build Y1 Fnord

9) Horowits: Build Y1 Horowits

10) fnord: Discover Y1 Fnord B3 Kallisti

11) Horowits: Move Y1 Horowits Doom

12) fnord: Build Y2 Fnord

13) Horowits: Build Y2 Doom

	fnord: Frell, sorry about that! I realized I didn't have much time left yesterday, but couldn't get to the site. Again, my apologies.


10931)
Variants: "Hard time"
Started: 2008.5.2, Ended: 2008.5.18
Participants: TwoShort (S), smilingra (N)
Winner: TwoShort

1) smilingra: Homeworld B3 R1 G3
	TwoShort: Howdy
	smilingra: hi there


2) TwoShort: Homeworld B1 Y2 G3

3) smilingra: Build G1 Smilingra

4) TwoShort: Build G1 Twoshort

5) smilingra: Trade G1 Y1 Smilingra

6) TwoShort: Trade G1 B1 Twoshort

7) smilingra: Build G1 Smilingra

8) TwoShort: Build B1 Twoshort

9) smilingra: Discover G1 Smilingra B2 Beta

10) TwoShort: Discover B1 Twoshort G3 Grogar

11) smilingra: Build G1 Beta

12) TwoShort: Build B2 Twoshort



10876)
Variants: "Unrated, Hard time"
Started: 2008.5.2, Ended: 2008.5.5
Participants: scottobear (S), Horowits (N)
Winner: Horowits

1) Horowits: Homeworld G2 B3 Y3



10962)
Started: 2008.5.8, Ended: 2008.5.13
Participants: Horowits (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) Horowits: Homeworld B3 G2 Y3

3) ts52: Build G1 Ts52
	Horowits: Greetings
	ts52: Salutations. Have a good game!

4) Horowits: Build Y1 Horowits

5) ts52: Trade G1 B1 Ts52

6) Horowits: Trade Y1 G1 Horowits

7) ts52: Build B1 Ts52

8) Horowits: Build Y1 Horowits

9) ts52: Build G1 Ts52

10) Horowits: Discover Y1 Horowits R1 Doom

11) ts52: Discover B1 Ts52 R3 Elmo

12) Horowits: Trade G1 R1 Horowits

13) ts52: Trade G1 R1 Ts52

14) Horowits: Build R2 Horowits

15) ts52: Build R2 Ts52

16) Horowits: Trade R2 G2 Horowits

17) ts52: Build G1 Ts52

18) Horowits: Move G2 Horowits Doom

19) ts52: Sacrifice G1 Ts52
Build B2 Elmo

20) Horowits: Build R2 Horowits

21) ts52: Build G1 Ts52

22) Horowits: Build Y1 Doom

23) ts52: Move G1 Ts52 Elmo

24) Horowits: Discover Y1 Doom G3 Tinygreen

25) ts52: Build B2 Elmo

26) Horowits: Trade R1 G1 Horowits

27) ts52: Trade B2 Y2 Elmo

28) Horowits: Trade R2 B2 Horowits

29) ts52: Build G1 Ts52

30) Horowits: Trade Y3 G3 Horowits

31) ts52: Sacrifice Y2 Elmo
Move G1 Elmo Doom
Move G1 Doom Horowits
Catastrophe Horowits Green

32) Horowits: Move G2 Doom Horowits

33) ts52: Move B1 Ts52 Horowits
	Horowits: haha wow. what a fool i am

34) Horowits: Trade B2 R2 Horowits

35) ts52: Sacrifice G3 Ts52
Build B2 Horowits
Build B2 Horowits
Build B3 Horowits
Catastrophe Horowits Blue

	ts52: Thanks for the game. Catasrophes can be hard to see coming.
	Horowits: indeed.  learned something though :) thanks


10984)
Started: 2008.5.10, Ended: 2008.5.10
Participants: wastelands (S), MikeYarrum (N)
Winner: MikeYarrum



11019)
Variants: "Hard time"
Started: 2008.5.12, Ended: 2008.6.11
Participants: mneme (S), Keith (N)
Winner: mneme

1) Keith: Homeworld Y1 B3 G3

2) mneme: Homeworld R2 B3 G3

3) Keith: Build G1 Keith

4) mneme: Build G1 Mneme

5) Keith: Discover G1 Keith Y2 Brightlygo

6) mneme: Trade G1 Y1 Mneme

7) Keith: Build G1 Keith

8) mneme: Build Y1 Mneme

9) Keith: Trade G1 B1 Keith

10) mneme: Discover Y1 Mneme G1 Grape

11) Keith: Move B1 Keith Brightlygo

12) mneme: Build Y2 Grape

13) Keith: Build G1 Keith
	Keith: Getting myself locked out of yellow. I saw it coming and decided I could wait a turn to do something about it.

14) mneme: Sacrifice G3 Mneme
Build Y2 Grape
Build Y3 Mneme
Build Y3 Mneme

15) Keith: Build G2 Brightlygo

16) mneme: Trade Y3 G3 Mneme

17) Keith: Build G2 Keith

18) mneme: Sacrifice Y3 Mneme
Move G3 Mneme Grape
Move G3 Grape Brightlygo
Move G3 Brightlygo Keith
Catastrophe Keith G
	mneme: um  Oddly enough...
	mneme: And yeah, the yellow lockout was nasty -- though taking advantage of your blunder was arguably moreso.

	Keith: Wow, way to go.  Nice lesson in factoring in the possibility of your moving your 3-pointer out.  Alas, I was never in this game enough to give you a challenge.  I will be back for a re-match after I learn to think Homeworlds again.
	mneme: Looking forward to it.  Meanwhile, Andy challenged me to a game at Origins; will have to see how it goes.



11027)
Started: 2008.5.14, Ended: 2008.6.12
Participants: ts52 (S), Horowits (N)
Winner: ts52

1) Horowits: Homeworld G3 B2 Y3
	Horowits: best of 3 ;)

2) ts52: Homeworld B1 Y2 G3
	ts52: Sure, sounds good to me

3) Horowits: Build Y1 Horowits

4) ts52: Build G1 Ts52

5) Horowits: Trade Y1 G1 Horowits

6) ts52: Trade G1 B1 Ts52

7) Horowits: Build G1 Horowits

8) ts52: Build B1 Ts52

9) Horowits: Build Y1 Horowits

10) ts52: Discover B1 Ts52 G3 Kermit

11) Horowits: Discover G1 Horowits Y1 Wolley

12) ts52: Build B2 Kermit

13) Horowits: Trade Y3 B3 Horowits

14) ts52: Trade B2 Y2 Kermit

15) Horowits: Discover B3 Horowits R1 Der

16) ts52: Build B2 Kermit

17) Horowits: Build G1 Horowits

18) ts52: Build G2 Ts52

19) Horowits: Build G2 Wolley

20) ts52: Build G2 Ts52

21) Horowits: Sacrifice G1 Horowits
Build B2 Der

22) ts52: Build B3 Ts52

23) Horowits: Trade B2 Y2 Der

24) ts52: Sacrifice B2 Kermit
Trade B3 R3 Ts52
Trade G2 R2 Ts52

25) Horowits: Sacrifice G2 Wolley
Build Y1 Der
Build Y3 Horowits

26) ts52: Move R3 Ts52 Kermit

27) Horowits: Trade Y1 R1 Horowits

28) ts52: Build B2 Kermit

29) Horowits: Trade Y2 G2 Der

30) ts52: Build B2 Ts52

31) Horowits: Discover B3 Der Y3 Move

32) ts52: Trade B2 Y2 Ts52

33) Horowits: Sacrifice G2 Der
Build Y1 Horowits
Build Y3 Der

34) ts52: Move B2 Kermit Wolley

35) Horowits: Move G1 Wolley Move

36) ts52: Sacrifice G2 Ts52
Build B2 Kermit
Build B3 Wolley

37) Horowits: Build B3 Move

38) ts52: Sacrifice Y2 Ts52
Move B3 Wolley Move
Move B2 Wolley Move
Catastrophe Move Blue

39) Horowits: Build R1 Horowits

40) ts52: Move R2 Ts52 Move

41) Horowits: Move G1 Move Ts52

42) ts52: Build B2 Kermit

43) Horowits: Sacrifice R1 Horowits
Attack B1S Ts52

44) ts52: Sacrifice R2 Move
Attack G1N Ts52
Attack B1N Ts52

45) Horowits: Move G1 Horowits Der

46) ts52: Build B3 Ts52

47) Horowits: Discover Y1 Der B3 Eulb
	Horowits: sorry for delay internet was down :P

48) ts52: Discover B2 Kermit G1 Oscar

49) Horowits: Move G1 Der Eulb
	ts52: no problem

50) ts52: Build B3 Oscar

51) Horowits: Move Y1 Eulb Ts52

52) ts52: Trade B3 R3 Ts52

53) Horowits: Build G2 Eulb

54) ts52: Attack Y1N Ts52

55) Horowits: Move Y3 Der Eulb

56) ts52: Trade B3 R3 Oscar

57) Horowits: Move G1 Eulb Ts52

58) ts52: Discover G3 Ts52 Y3 Bigbird

59) Horowits: Trade G1 Y1 Ts52

60) ts52: Move Y1 Ts52 Kermit

61) Horowits: Build Y2 Eulb

62) ts52: Attack Y1N Ts52

63) Horowits: Trade Y3 B3 Eulb

64) ts52: Build B3 Oscar

65) Horowits: Build Y3 Eulb

66) ts52: Sacrifice Y2 Kermit
Move R3 Oscar Horowits
Move B3 Oscar Horowits

67) Horowits: Sacrifice G2 Eulb
Build R1 Horowits
Build R1 Horowits
Catastrophe Horowits Red

68) ts52: Sacrifice R3 Kermit
Attack Y3N Horowits
Attack Y1N Horowits
Pass

	ts52: Thanks for the game
	Horowits: was fun


11002)
Variants: "Hard time"
Started: 2008.5.18, Ended: 2008.5.21
Participants: Danner (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) Danner: Homeworld R2 B1 G3

3) TwoShort: Build G1 Twoshort

4) Danner: Build G1 Danner

5) TwoShort: Trade G1 B1 Twoshort

6) Danner: Trade G1 Y1 Danner

7) TwoShort: Build B1 Twoshort

8) Danner: Build Y1 Danner

9) TwoShort: Trade B1 Y1 Twoshort

10) Danner: Build Y2 Danner

11) TwoShort: Build Y2 Twoshort

12) Danner: Discover Y1 Danner G3 Stargate

13) TwoShort: Discover Y1 Twoshort G2 Grogar

14) Danner: Trade Y1 B1 Danner

15) TwoShort: Build Y1 Grogar

16) Danner: Move Y1 Stargate Grogar

17) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Twoshort
Build Y3 Twoshort
Catastrophe Grogar Yellow

18) Danner: Discover B1 Danner G3 Stargate
	Danner: Wow, you are great!

19) TwoShort: Trade Y3 G3 Twoshort
	TwoShort: Thanks, but you didn't give me much choice :)

20) Danner: Build B2 Stargate

21) TwoShort: Discover B1 Twoshort G2 Greenland

22) Danner: Trade B1 Y1 Stargate

23) TwoShort: Move Y3 Twoshort Greenland

24) Danner: Build Y1 Stargate

25) TwoShort: Build G1 Twoshort

26) Danner: Trade Y1 G1 Stargate

27) TwoShort: Build Y1 Greenland

28) Danner: Build G1 Danner

29) TwoShort: Discover Y1 Greenland Y1 Yellonia

30) Danner: Move Y1 Stargate Greenland

31) TwoShort: Sacrifice G3 Twoshort
Build Y2 Yellonia
Build Y3 Greenland
Build Y3 Twoshort

32) Danner: Sacrifice Y2 Danner
Discover G1 Stargate R2 Mars
Pass
	Danner: Lol, I have calculated a lot to prevent this event, but I was wrong. I thought it is enough to be able to create one catastrophe, but now I can only destroy lesser ships :D

33) TwoShort: Discover Y2 Yellonia Y2 Yolonda
	Danner: Now, I have no chance to win :D
	TwoShort: I don't suppose this will make you feel better...

34) Danner: Move Y1 Greenland Yellonia
	Danner: Exactly what? :)

35) TwoShort: Trade B1 R1 Greenland

36) Danner: Build G2 Mars
	TwoShort: Oh, I meant that in response to your noting that you could only destroy lesser ships; my move took away your chance for any catastrophe at all.
	Danner: indeed

37) TwoShort: Sacrifice R1 Greenland
Attack Y1 Yellonia

38) Danner: Sacrifice G3 Danner
Build G2 Danner
Build G3 Danner
Build G3 Danner
Catastrophe Danner G
	Danner: woohoo, you control all the yellow pieces! I have no chance to make any yellow catastrophe, what is more, my ships are stuck :D
	Danner: Congratulation! :)



11036)
Variants: "Hard time"
Started: 2008.5.18, Ended: 2008.6.25
Participants: Jesse (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R3 B2 G3

2) Jesse: Homeworld R2 B1 G3

3) Danner: Build G1 Danner
	Jesse: Hello.  Have a good game.
	Danner: Hi. Thx, the same to you.

4) Jesse: Build G1 Jesse

5) Danner: Trade G1 Y1 Danner

6) Jesse: Trade G1 Y1 Jesse

7) Danner: Build G1 Danner

8) Jesse: Build G1 Jesse

9) Danner: Trade G1 R1 Danner

10) Jesse: Build G1 Jesse

11) Danner: Build G1 Danner

12) Jesse: Discover G1 Jesse B3 Cheese

13) Danner: Discover G1 Danner Y1 Moon

14) Jesse: Build G2 Cheese


15) Danner: Build Y2 Danner

16) Jesse: Trade G2 R2 Cheese

17) Danner: Build G2 Danner

18) Jesse: Build G2 Cheese

19) Danner: Sacrifice G3 Danner
Build G2 Danner
Build G3 Moon
Build G3 Danner

20) Jesse: Trade G2 Y2 Cheese

21) Danner: Sacrifice Y2 Danner
Move G3 Danner Moon
Move G3 Moon Cheese

22) Jesse: Sacrifice G3 Jesse
Build G2 Cheese
Build G3 Jesse
Build R1 Cheese

23) Danner: Trade G3 B3 Cheese

24) Jesse: Build G3 Jesse

25) Danner: Sacrifice G3 Moon
Build G3 Moon
Build B1 Cheese
Build B1 Cheese
Catastrophe Cheese B

26) Jesse: Trade G1 R1 Jesse

27) Danner: Build Y2 Danner

28) Jesse: Build Y2 Jesse

29) Danner: Discover Y1 Danner G1 Hyperspace

30) Jesse: Discover G3 Jesse Y3 Oscar

31) Danner: Sacrifice G3 Moon
Build Y2 Hyperspace
Build Y3 Danner
Build Y3 Danner

32) Jesse: Discover Y2 Jesse B3 Smellify

33) Danner: Move Y1 Hyperspace Oscar

34) Jesse: Build G1 Jesse

35) Danner: Build G2 Moon

36) Jesse: Discover R1 Jesse G3 Thbt

37) Danner: Move G2 Moon Oscar

	Jesse: 
	Jesse: Sorry about that.  You certainly had control of the game, anyway.  Well played.
	Danner: Thanks.


10999)
Started: 2008.5.19, Ended: 2008.6.11
Participants: Danner (S), MatrixFrog (N)
Winner: Danner

1) MatrixFrog: Homeworld G2 B1 Y3

2) Danner: Homeworld R1 B2 G3

3) MatrixFrog: Build Y1 Matrixfrog

4) Danner: Build G1 Danner

5) MatrixFrog: Build Y1 Matrixfrog

6) Danner: Trade G1 Y1 Danner

7) MatrixFrog: Discover Y1 Matrixfrog G3 Bop

8) Danner: Build Y2 Danner

9) MatrixFrog: Build Y2 Bop

10) Danner: Move Y1 Danner Bop

11) MatrixFrog: Trade Y1 R1 Matrixfrog

12) Danner: Sacrifice G3 Danner
Build Y1 Bop
Build Y2 Danner
Build Y3 Danner
Catastrophe Bop Y

13) MatrixFrog: Build Y1 Matrixfrog

14) Danner: Trade Y3 G3 Danner

15) MatrixFrog: Build R1 Matrixfrog

16) Danner: Trade Y2 R2 Danner

17) MatrixFrog: Discover R1 Matrixfrog Y3 Bip

18) Danner: Move R2 Danner Bip

19) MatrixFrog: Build R2 Matrixfrog

20) Danner: Attack R1N Bip

21) MatrixFrog: Trade R2 G2 Matrixfrog

22) Danner: Build G1 Danner

23) MatrixFrog: Discover G2 Matrixfrog Y3 Bap

24) Danner: Discover R2 Bip Y2 Bup

25) MatrixFrog: Build G1 Bap

26) Danner: Sacrifice G3 Danner
Build R2 Bup
Build R2 Bup
Build R3 Bip

27) MatrixFrog: Build R3 Matrixfrog

28) Danner: Move R3 Bip Matrixfrog

29) MatrixFrog: Sacrifice R1 Matrixfrog
Attack R3 Matrixfrog

30) Danner: Move R1 Bip Matrixfrog

31) MatrixFrog: Trade R3 Y3 Matrixfrog

32) Danner: Trade R1 Y1 Matrixfrog
Catastrophe Matrixfrog Y

33) MatrixFrog: Trade R3 Y3 Matrixfrog

34) Danner: Move R2 Bup Bap

35) MatrixFrog: Build Y1 Matrixfrog

36) Danner: Sacrifice R2 Bup
Attack G1N Bap
Attack G2N Bap

37) MatrixFrog: Build Y1 Matrixfrog

38) Danner: Move R2 Bap Matrixfrog

39) MatrixFrog: Trade Y1 G1 Matrixfrog

40) Danner: Attack G1N Matrixfrog

41) MatrixFrog: Trade Y1 R1 Matrixfrog

42) Danner: Attack R1 Matrixfrog

43) MatrixFrog: Build Y1 Matrixfrog

44) Danner: Attack Y1N Matrixfrog

	Danner: Thx the game!


11042)
Started: 2008.5.20, Ended: 2008.7.24
Participants: Cerulean (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) Cerulean: Homeworld Y3 B1 G3

3) Danner: Build G1 Danner

4) Cerulean: Build G1 Cerulean

5) Danner: Trade G1 Y1 Danner

6) Cerulean: Discover G1 Cerulean Y2 Wytu

7) Danner: Build G1 Danner

8) Cerulean: Move G1 Wytu Cerulean

9) Danner: Discover G1 Danner Y3 Treshold

10) Cerulean: Trade G1 R1 Cerulean
	Danner: ooops, mispelled :D
	Danner: lol, again... I must be tired

11) Danner: Build Y1 Danner

12) Cerulean: Build G1 Cerulean

13) Danner: Discover Y1 Danner G3 Cube

14) Cerulean: Discover G1 Cerulean Y2 Wytu

15) Danner: Build Y1 Cube

16) Cerulean: Build G1 Cerulean

17) Danner: Sacrifice G3 Danner
Build Y2 Cube
Build Y2 Danner
Build Y3 Danner

18) Cerulean: Build G2 Wytu

19) Danner: Discover Y1 Cube G2 Earth

20) Cerulean: Trade G1 B1 Cerulean

21) Danner: Trade Y3 R3 Danner

22) Cerulean: Trade G3 Y3 Cerulean

23) Danner: Move Y1 Cube Earth

24) Cerulean: Trade Y3 G3 Cerulean

25) Danner: Build Y3 Cube

26) Cerulean: Move G1 Wytu Cube

27) Danner: Discover Y3 Cube G2 Refuge

28) Cerulean: Move B1 Cerulean Earth

29) Danner: Move G1 Treshold Danner

30) Cerulean: Trade B1 R1 Earth

31) Danner: Build Y3 Earth

32) Cerulean: Attack Y1N Earth

33) Danner: Sacrifice R3 Danner
Attack R1S Earth
Attack Y1S Earth
Attack G1S Cube

34) Cerulean: Build R2 Cerulean

35) Danner: Build R2 Earth

36) Cerulean: Trade R1 B1 Cerulean

37) Danner: Move R2 Earth Cube

38) Cerulean: Build B1 Cerulean

39) Danner: Discover Y3 Refuge B3 Garrett

40) Cerulean: Move B1 Cerulean Wytu

41) Danner: Trade Y3 B3 Garrett

42) Cerulean: Move B1 Wytu Garrett

43) Danner: Build Y3 Danner

44) Cerulean: Move B1 Cerulean Wytu

45) Danner: Trade B3 R3 Garrett

46) Cerulean: Trade B1 R1 Garrett

47) Danner: Trade Y3 G3 Danner

48) Cerulean: Build B1 Wytu

49) Danner: Sacrifice G3 Danner
Build Y3 Danner
Build R2 Cube
Build R3 Earth

50) Cerulean: Build R3 Cerulean

51) Danner: Move R3 Earth Cerulean

52) Cerulean: Attack R3N Cerulean

53) Danner: Sacrifice Y2 Danner
Move R1 Earth Cerulean
Move Y3 Earth Cerulean
Catastrophe Cerulean R

54) Cerulean: Sacrifice R1 Garrett
Attack Y3N Cerulean

55) Danner: Sacrifice Y2 Cube
Move R3 Garrett Earth
Move R3 Earth Cerulean

56) Cerulean: Trade G2 R2 Wytu

57) Danner: Sacrifice R2 Cube
Attack G3S Cerulean
Attack Y3S Cerulean

	Danner: Thanks the game.
	Danner: Hm, it was longer than 2 months. :)
	Cerulean: i hope i posed something of a challenge.  great game design, but i have better luck herding cats.
	Danner: Then, don't you want another one?


11055)
Variants: "Hard time"
Started: 2008.5.24, Ended: 2008.6.27
Participants: Horowits (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G3 B2 Y3

2) Horowits: Homeworld Y2 B1 G3

3) alexcobo: Build Y1 Alexcobo
	Horowits: Greetings

4) Horowits: Build G1 Horowits

5) alexcobo: Build Y1 Alexcobo

6) Horowits: Trade G1 Y1 Horowits

7) alexcobo: Discover Y1 Alexcobo G1 G1

8) Horowits: Build G1 Horowits
	alexcobo: Hello. Good luck!

9) alexcobo: Build Y2 Alexcobo
	Horowits: hehe yeah luck is something i need.  You online folk are better players then my circle of friends ;)

10) Horowits: Discover Y1 Horowits G3 Neerg

11) alexcobo: Trade Y1 B1 Alexcobo

12) Horowits: Build G1 Horowits

13) alexcobo: Move B1 Alexcobo G1

14) Horowits: Discover G1 Horowits B3 Eulb

15) alexcobo: Build Y1 G1
	Horowits: sorry for delay internet was down :P

16) Horowits: Build G2 Eulb

17) alexcobo: Build Y2 Alexcobo

18) Horowits: Build Y3 Neerg

19) alexcobo: Sacrifice Y2 Alexcobo
Move Y1 G1 Neerg
Move Y1 G1 Neerg
Catastrophe Neerg Y

20) Horowits: Trade G1 Y1 Eulb

21) alexcobo: Trade B1 G1 G1

22) Horowits: Build G2 Eulb

23) alexcobo: Build G2 G1

24) Horowits: Discover G2 Eulb Y1 Tiny

25) alexcobo: Build Y1 Alexcobo

26) Horowits: Build G3 Tiny

27) alexcobo: Trade Y2 R2 Alexcobo

28) Horowits: Trade G1 R1 Horowits

29) alexcobo: Build Y2 Alexcobo

30) Horowits: Build R1 Horowits

31) alexcobo: Trade Y1 B1 Alexcobo



11065)
Variants: "Hard time"
Started: 2008.5.27, Ended: 2008.5.27
Participants: fuguru (S), neoprofin (N)
Winner: fuguru

1) neoprofin: Homeworld G1 B2 Y3

2) fuguru: Homeworld B1 Y3 G3

3) neoprofin: Discover Y3 Neoprofin R3 Minbar



11068)
Started: 2008.5.27, Ended: 2008.5.28
Participants: neoprofin (S), fuguru (N)
Winner: fuguru

1) fuguru: Homeworld B3 Y2 G3

2) neoprofin: Homeworld G2 B1 Y3

3) fuguru: Build G1 Fuguru

4) neoprofin: Build Y1 Neoprofin

5) fuguru: Discover G1 Fuguru B1 Centauri Prime

6) neoprofin: Trade Y3 R3 Neoprofin
	fuguru: Dammit.  That was supposed to be Centauri Prime

7) fuguru: Build G1 Centauri
	neoprofin: londo is gonig to be pissed


8) neoprofin: Discover R3 Neoprofin R3 Minbar

9) fuguru: Trade G1 Y1 Centauri
	fuguru: Minbar is HUGE!

10) neoprofin: Build Y1 Neoprofin
	neoprofin: that's what she said

11) fuguru: Discover G1 Centauri B2 Narn

12) neoprofin: Move Y1 Neoprofin Minbar

13) fuguru: Build G1 Narn

14) neoprofin: Move R3 Minbar Centauri

15) fuguru: Move Y1 Centauri Narn
	neoprofin: in some ways the drazi have taught us that sometimes genocide is the answer


16) neoprofin: Move Y1 Minbar Centauri

17) fuguru: Trade G3 R3 Fuguru
	fuguru: If the Centauri's have the audacity to invade Narn, then Narns _will_ fight back!  We are a peaceful race moving across the universe and multiplying!

18) neoprofin: Build Y2 Neoprofin

19) fuguru: Build Y2 Narn
	neoprofin: That was a peaceful research colony!

20) neoprofin: Trade Y1 G1 Centauri

21) fuguru: Trade Y2 R2 Narn

22) neoprofin: Build G2 Centauri
	neoprofin: I wish I could remember what my strategy was from each turn, it's like starting the game all over again every time.

23) fuguru: Discover R2 Narn Y3 Minbar

24) neoprofin: Discover Y1 Neoprofin R3 Vorlonworld

25) fuguru: Move R2 Minbar Neoprofin
	fuguru: My Minbar wasn't big enough.

26) neoprofin: Trade G1 Y1 Centauri

27) fuguru: Attack Y2S Neoprofin
	fuguru: DUH DUH DUUUUUN



11066)
Variants: "Hard time"
Started: 2008.5.27, Ended: 2008.8.16
Participants: wyons (S), TwoShort (N)
Winner: wyons

1) TwoShort: Homeworld R1 B2 G3

2) wyons: Homeworld B1 R3 G3

3) TwoShort: Build G1 Twoshort

4) wyons: Build G1 Wyons

5) TwoShort: Trade G1 Y1 Twoshort

6) wyons: Trade G1 Y1 Wyons

7) TwoShort: Build G1 Twoshort

8) wyons: Build G1 Wyons

9) TwoShort: Trade G1 B1 Twoshort

10) wyons: Build Y1 Wyons

11) TwoShort: Build Y2 Twoshort

12) wyons: Build Y2 Wyons

13) TwoShort: Discover Y1 Twoshort G3 Grogar

14) wyons: Discover Y1 Wyons G2 Xanthrophyl

15) TwoShort: Build G1 Twoshort

16) wyons: Trade Y1 B1 Wyons

17) TwoShort: Build G1 Twoshort

18) wyons: Build G2 Wyons

19) TwoShort: Discover G1 Twoshort B3 Bluonia

20) wyons: Trade G1 R1 Wyons

21) TwoShort: Sacrifice G3 Twoshort
Build G1 Twoshort
Build G2 Bluonia
Build G3 Twoshort

22) wyons: Sacrifice G3 Wyons
Build G3 Wyons
Build R1 Wyons
Build B2 Wyons

23) TwoShort: Trade G2 R2 Bluonia

24) wyons: Move R1 Wyons Xanthrophyl

25) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G3 Twoshort
Build B2 Twoshort

26) wyons: Move B2 Wyons Xanthrophyl

27) TwoShort: Sacrifice B2 Twoshort
Trade G1 Y1 Twoshort
Trade G2 R2 Bluonia

28) wyons: Discover B1 Wyons B2 Bluemeanies

29) TwoShort: Discover Y1 Grogar G2 Grozuki

30) wyons: Sacrifice G2 Wyons
Build B3 Bluemeanies
Build B3 Xanthrophyl

31) TwoShort: Sacrifice Y2 Twoshort
Move B1 Twoshort Bluonia
Move B1 Bluonia Bluemeanies
Catastrophe Bluemeanies Blue

32) wyons: Trade B3 G3 Xanthrophyl

33) TwoShort: Sacrifice G3 Twoshort
Build G1 Bluonia
Build G2 Bluonia
Build G3 Twoshort

34) wyons: Sacrifice G3 Xanthrophyl
Build G3 Wyons
Build R2 Xanthrophyl
Build R3 Wyons

35) TwoShort: Trade G2 Y2 Bluonia

36) wyons: Move R3 Wyons Grozuki
	TwoShort: I'm about to leave on vacation for two weeks, and I'm not entirely sure how much internet access I'll have.  Would you mind if we froze the clock for a bit?
	wyons: yep thats fine, please can you unfreeze it in two weeks (I dont know how to)
	TwoShort: I'm back...

	TwoShort: Ack! Timed out during a server outage; I guess that will teach me to let it run down to the last day.  In any case, you had me pretty thoroughly cornered; I'm just sorry to be a lame ass and deny you the satisfaction of finishing me off.
	wyons: No worries, thank you for the game!


11062)
Started: 2008.5.27, Ended: 2008.6.1
Participants: Daarck (S), MikeYarrum (N)
Winner: Daarck



11073)
Started: 2008.5.28, Ended: 2008.5.29
Participants: neoprofin (S), fuguru (N)
Winner: neoprofin

1) fuguru: Homeworld G1 B3 Y3

2) neoprofin: Homeworld B3 G2 R3

3) fuguru: Build Y1 Fuguru

4) neoprofin: Build R1 Neoprofin

5) fuguru: Build Y1 Fuguru

6) neoprofin: Trade R1 Y1 Neoprofin

7) fuguru: Discover Y1 Fuguru Y2 Tattooine
	neoprofin: there is a hole in your mind

8) neoprofin: Build Y2 Neoprofin

9) fuguru: Discover Y1 Fuguru Y2 Dantooine

10) neoprofin: Discover Y2 Neoprofin G1 Dagobah

11) fuguru: Build Y3 Fuguru

12) neoprofin: Build Y3 Dagobah

13) fuguru: Discover Y1 Tattooine G1 Endor

14) neoprofin: Discover Y2 Dagobah B2 Coruscant

15) fuguru: Build Y2 Fuguru

16) neoprofin: Move Y2 Coruscant Fuguru
Catastrophe Fuguru Y



11040)
Variants: "Hard time"
Started: 2008.5.28, Ended: 2008.5.29
Participants: mneme (S), jeep (N)
Winner: mneme

	jeep: This challenge is supposed to be suspended... I'm not going to take on any new games right now.  When I return, I'm happy to play.
	mneme: Cool -- have a good trip!


11049)
Variants: "Hard time"
Started: 2008.5.28, Ended: 2008.6.5
Participants: mneme (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) mneme: Homeworld B1 R3 G3

3) TwoShort: Build G1 Twoshort

4) mneme: Build G1 Mneme

5) TwoShort: Trade G1 Y1 Twoshort

6) mneme: Trade G1 Y1 Mneme

7) TwoShort: Build G1 Twoshort

8) mneme: Build G1 Mneme
	mneme: Ok, so where did all the spectators come from?
Not that I mind seeing people watch me get my ass handed to me (again) :)

9) TwoShort: Trade G1 B1 Twoshort
	mneme: Particularly since...oh, look, not only playing HW against Twoshort, but with him going first...as banker...

10) mneme: Trade G1 B1 Mneme
	TwoShort: Must be because I'm a big celebrity :)  I'm not clear what it actually means that they are there.  You can look at any game right?  Are they getting emails when a move is made or something?  

	TwoShort: Hey! Spectators!  You're always there, but are any of you actually actively watching my every move?  That'd be weird.

11) TwoShort: Build B2 Twoshort
	mneme: I think it means the game appears on their display.


12) mneme: Build G1 Mneme

13) TwoShort: Discover B1 Twoshort G3 Grogar

14) mneme: Trade G1 R1 Mneme

15) TwoShort: Build G1 Twoshort

16) mneme: Build R1 Mneme

17) TwoShort: Discover G1 Twoshort B3 Bluzilla

18) mneme: Discover R1 Mneme G2 Jade

19) TwoShort: Sacrifice G3 Twoshort
Build B2 Grogar
Build B3 Grogar
Build B3 Twoshort

20) mneme: Build R2 Jade

21) TwoShort: Sacrifice B2 Grogar
Trade B3 Y3 Grogar
Trade B3 G3 Twoshort

22) mneme: Build Y1 Mneme

23) TwoShort: Sacrifice G3 Twoshort
Build B2 Grogar
Build B3 Grogar
Build B3 Twoshort
	mneme: sweet.  Also, toast.


24) mneme: Sacrifice Y1 Mneme
Move R1 Jade Bluzilla

25) TwoShort: Sacrifice B2 Grogar
Trade B3 R3 Grogar
Trade B3 G3 Twoshort
	TwoShort: Well, if you liked it the first time... :)
	mneme: mnnn.  Toast.  It was the blue sacrifice refinement I didn't expect.

26) mneme: Attack G1 Bluzilla

27) TwoShort: Sacrifice G3 Twoshort
Build B2 Grogar
Build B3 Grogar
Build B3 Twoshort

28) mneme: Build R2 Bluzilla

29) TwoShort: Sacrifice B2 Grogar
Trade B3 R3 Grogar
Trade B3 G3 Twoshort

30) mneme: Trade R2 B2 Bluzilla

31) TwoShort: Build B3 Grogar

32) mneme: Build B3 Bluzilla
	TwoShort: This is getting addictive :)

33) TwoShort: Move B2 Twoshort Bluzilla
Catastrophe Bluzilla Blue

	mneme: Ok, that's enough; I wanted to see if you'd make a mistake, but I didn't have enough yellow to take advantage of one even if you had made such a mistake.  grats.


11071)
Started: 2008.5.28, Ended: 2008.6.3
Participants: mneme (S), MikeYarrum (N)
Winner: mneme

	mneme: you taking a move?


11003)
Variants: "Unrated, Hard time"
Started: 2008.5.28, Ended: 2008.6.10
Participants: mneme (S), scottobear (N)
Winner: mneme

1) scottobear: Homeworld B3 G2 Y3

2) mneme: Homeworld B1 R3 G3

3) scottobear: Build Y1 Scottobear

4) mneme: Build G1 Mneme

5) scottobear: Trade Y1 G1 Scottobear

6) mneme: Trade G1 Y1 Mneme

7) scottobear: Discover G1 Scottobear B1 Monkey

8) mneme: Build G1 Mneme

9) scottobear: Build Y1 Scottobear

10) mneme: Trade G1 B1 Mneme

11) scottobear: Build G1 Monkey

12) mneme: Build B2 Mneme

13) scottobear: Trade Y1 R1 Scottobear

14) mneme: Discover B2 Mneme Y2 Daffodil

15) scottobear: Trade Y3 B3 Scottobear

16) mneme: Sacrifice G3 Mneme
Build B2 Daffodil
Build B2 Daffodil
Build B3 Mneme

17) scottobear: Build G1 Monkey

18) mneme: Sacrifice B2 Daffodil
Trade B2 Y2 Daffodil
Trade B3 G3 Mneme

19) scottobear: Trade G1 Y1 Monkey

20) mneme: Sacrifice G3 Mneme
Build B2 Daffodil
Build B2 Daffodil
Build B3 Mneme

21) scottobear: Build R1 Scottobear
	scottobear: I'm still getting the hang of sacrifcies for moves.. that was nice!

22) mneme: Trade B3 G3 Mneme
	mneme: *nod*  I actually stole a few moves from TwoShort, who's kicking my ass in another game.

23) scottobear: Build B3 Scottobear

24) mneme: Sacrifice Y2 Daffodil
Move B2 Daffodil Monkey
Move B2 Monkey Scottobear
Catastrophe Scottobear B
	mneme: You have chosen...poorly.
But hey, learning experience, right?

25) scottobear: Build Y1 Monkey
	mneme: If you want to see how the endgame works, just keep playing -- I'm killing you in 3 moves no matter what you do, so there's not that much reason to short circuit it if you want to see the endgame.  (hmm.  Crazy play on your part can push it to 4 rounds; I don't see it going past that).


	scottobear: thanks! I appreciate the strategy assist!

26) mneme: Move G3 Mneme Scottobear

27) scottobear: Move G1 Monkey Scottobear
	mneme: I could fairly easily kill you with red...swap blue for red in daffodil, then move from mneme to your home system, then sac red to take 2 pieces from your home system.  But you could delay it -- grow a red in your home system, move stuff back to keep going, etc.  This way...I move to your home system, next turn I grow a green...after that, there's no hope; no matter what you do, I catastrophe your home system on t3; no more star = game over.
	mneme: normally, moving my g3 out of my home system would be foolish.  But in this case, with your only controlling smalls, it's quite safe.

28) mneme: Build G1 Scottobear
Catastrophe Scottobear G
	mneme: Well, that makes it faster...thanks for the game!  
	mneme: Oh, FWIW, the "crazy play that can push it to four rounds" was, on move 25, "m r1 scottobear mneme".  This threatened either a stalemate or a win if I didn't deal with it -- so instead of a three move win (was 2, but only because you helped by moving a g in), I'd have to spend 1 round capturing the red, (then you only had one ship in your home system, so you couldn't repeat the trick), one moving the g into your home system, and then either swap b for r and take both ships (a sure win only if you had only two ships in your home system and no drones) or grow twice to win by catastrophe.




11086)
Variants: "Unrated"
Started: 2008.5.29, Ended: 2008.7.23
Participants: Danner (S), LordTom (N), Factorial (E)
Winner: Danner

1) LordTom: Homeworld B1 Y2 G3

2) Factorial: Homeworld G1 B2 Y3

3) Danner: Homeworld R1 B2 G3

4) LordTom: Build G1 Lordtom

5) Factorial: Build Y1 Factorial

6) Danner: Build G1 Danner

7) LordTom: Trade G1 R1 Lordtom

8) Factorial: Build Y1 Factorial

9) Danner: Trade G1 Y1 Danner
	LordTom: Írjunk már ide valami magyar szöveget is!

10) LordTom: Discover R1 Lordtom R3 Mars

11) Factorial: Trade Y1 R1 Factorial

12) Danner: Build G1 Danner



11083)
Started: 2008.5.30, Ended: 2010.2.9
Participants: scottobear (S), MikeYarrum (N)
Winner: scottobear



11090)
Started: 2008.6.2, Ended: 2008.6.20
Participants: neoprofin (S), fuguru (N)
Winner: fuguru

1) fuguru: Homeworld B3 Y2 G3
	neoprofin: 23 hours bitch!

2) neoprofin: Homeworld G1 B3 R3

3) fuguru: Build G1 Fuguru

4) neoprofin: Build R1 Neoprofin

5) fuguru: Discover G1 Fuguru G1 Aa

6) neoprofin: Trade R1 Y1 Neoprofin

7) fuguru: Build G2 Fuguru

8) neoprofin: Build Y1 Neoprofin

9) fuguru: Trade G3 Y3 Fuguru

10) neoprofin: Build R1 Neoprofin

11) fuguru: Build G2 Fuguru

12) neoprofin: Discover Y1 Neoprofin Y2 Xxx

13) fuguru: Build G2 Fuguru

14) neoprofin: Discover Y1 Neoprofin Y2 Nambla
	fuguru: I'm only double A but I'm thinkin' triple X.

15) fuguru: Discover G2 Fuguru B1 Nafta

16) neoprofin: Trade R1 B1 Neoprofin

17) fuguru: Build G3 Nafta

18) neoprofin: Build B1 Neoprofin

19) fuguru: Trade G3 R3 Nafta

20) neoprofin: Trade B1 Y1 Neoprofin

21) fuguru: Build G3 Nafta

22) neoprofin: Build Y3 Neoprofin

23) fuguru: Trade G3 Y3 Nafta

24) neoprofin: Build R1 Neoprofin

25) fuguru: Move R3 Nafta Nambla

26) neoprofin: Move Y1 Nambla Aa

27) fuguru: Build G3 Nafta

28) neoprofin: Trade Y3 G3 Neoprofin

29) fuguru: Trade G3 R3 Nafta

30) neoprofin: Build Y3 Neoprofin

31) fuguru: Move R3 Nafta Xxx

32) neoprofin: Sacrifice Y3 Neoprofin
Move Y1 Aa Fuguru
Move Y1 Xxx Aa
Move Y1 Aa Fuguru
Catastrophe Fuguru Y

33) fuguru: Move Y3 Nafta Xxx

34) neoprofin: Build G3 Neoprofin
	neoprofin: OH NOOOOOO! CATASTROPHE!!!!

35) fuguru: Build G3 Fuguru

36) neoprofin: Trade G3 Y3 Neoprofin

37) fuguru: Trade G3 Y3 Fuguru

38) neoprofin: Sacrifice Y3 Neoprofin
Discover R1 Neoprofin Y2 Fafsa
Move G3 Neoprofin Fafsa
Move G3 Fafsa Fuguru

39) fuguru: Trade G2 R2 Fuguru

40) neoprofin: Build R1 Neoprofin

41) fuguru: Sacrifice Y3 Fuguru
Move R3 Xxx Neoprofin
Move Y3 Xxx Neoprofin
Move R3 Nambla Fuguru

42) neoprofin: Attack R3 Neoprofin

43) fuguru: Sacrifice R3 Fuguru
Attack R3 Neoprofin
Attack R3 Neoprofin
Attack R1 Neoprofin

44) neoprofin: Move R1 Fafsa Neoprofin
Catastrophe Neoprofin R

45) fuguru: Sacrifice R2 Fuguru
Attack B1 Neoprofin
Attack Y1 Neoprofin
	fuguru: BWAHAHAHA!

	neoprofin: I do not know what weapons WWIII will be fought with, but I know WWIV will be fought with stones.
	fuguru: There will always be hidden stockpiles!


11082)
Variants: "Hard time"
Started: 2008.6.3, Ended: 2008.6.12
Participants: inundator (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy.

2) inundator: Homeworld B3 Y2 G3

3) TwoShort: Build G1 Twoshort

4) inundator: Build G1 Inundator

5) TwoShort: Trade G1 Y1 Twoshort

6) inundator: Trade G1 R1 Inundator

7) TwoShort: Build G1 Twoshort

8) inundator: Build G1 Inundator

9) TwoShort: Discover G1 Twoshort Y2 Yolonda

10) inundator: Discover G1 Inundator B1 Akihabara

11) TwoShort: Build Y1 Twoshort

12) inundator: Build G1 Inundator

13) TwoShort: Build G2 Twoshort

14) inundator: Build G2 Akihabara

15) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yolonda
Build G3 Twoshort

16) inundator: Sacrifice G3 Inundator
Build G3 Inundator
Build R1 Inundator
Build R2 Inundator

17) TwoShort: Trade G2 R2 Twoshort

18) inundator: Discover R1 Inundator Y1 Shibuya

19) TwoShort: Move G3 Yolonda Shibuya

20) inundator: Move R1 Shibuya Yolonda

21) TwoShort: Sacrifice G2 Twoshort
Build G2 Shibuya
Build Y2 Twoshort

22) inundator: Sacrifice G2 Akihabara
Build G2 Akihabara
Build R2 Yolonda

23) TwoShort: Discover Y1 Twoshort B2 Bluestar

24) inundator: Move R1 Yolonda Twoshort

25) TwoShort: Sacrifice R2 Twoshort
Attack R1S Twoshort
Pass

26) inundator: Sacrifice G2 Akihabara
Build R2 Yolonda
Build R3 Inundator

27) TwoShort: Sacrifice G3 Shibuya
Build Y3 Bluestar
Build Y3 Bluestar
Build Y3 Twoshort

28) inundator: Move R3 Inundator Shibuya

29) TwoShort: Sacrifice Y3 Twoshort
Move G1 Yolonda Shibuya
Move G1 Shibuya Inundator
Move G2 Shibuya Inundator
Catastrophe Inundator Green

30) inundator: Trade R2 G2 Inundator

31) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Bluestar Shibuya
Move Y3 Shibuya Inundator

32) inundator: Move R3 Shibuya Inundator

33) TwoShort: Sacrifice R1 Twoshort
Attack R3S Inundator

34) inundator: Build R1 Inundator

35) TwoShort: Sacrifice R3 Inundator
Attack R1S Inundator
Attack R1S Inundator
Attack G2S Inundator
	inundator: I thinks that's game. Thank you!



11095)
Variants: "Unrated, Hard time"
Started: 2008.6.3, Ended: 2008.6.27
Participants: MadWuher (S), scottobear (N)
Winner: MadWuher

1) scottobear: Homeworld B3 G2 Y3

2) MadWuher: Homeworld G1 B2 Y3

3) scottobear: Build Y1 Scottobear
	scottobear: wow.. look at all the spectators!

4) MadWuher: Build Y1 Madwuher

5) scottobear: Trade Y1 B1 Scottobear

6) MadWuher: Trade Y1 G1 Madwuher

7) scottobear: Build Y1 Scottobear

8) MadWuher: Build Y1 Madwuher

9) scottobear: Discover Y1 Scottobear B1 Hershey

10) MadWuher: Discover G1 Madwuher Y3 Mars

11) scottobear: Trade Y1 G1 Hershey
	scottobear: isn't mars a red planet?? ;)

12) MadWuher: Trade Y1 R1 Madwuher

13) scottobear: Build Y1 Scottobear

14) MadWuher: Build G2 Mars

15) scottobear: Build G2 Hershey

16) MadWuher: Build Y1 Madwuher

17) scottobear: Build B1 Scottobear

	MadWuher: I know Mars is red, I just saw the Hershey name and I thought of chocolate. =)  MMMmmmmm chocolate....
	scottobear: yummy! 

18) MadWuher: Discover G1 Mars Y1 Aero

19) scottobear: Trade G2 Y2 Hershey

20) MadWuher: Build G2 Aero

21) scottobear: Trade Y3 R3 Scottobear

22) MadWuher: Build G3 Mars

23) scottobear: Move R3 Scottobear Aero

24) MadWuher: Sacrifice G2 Aero
Build G2 Mars
Build Y2 Madwuher

25) scottobear: Move G1 Hershey Mars
Catastrophe Mars Green

26) MadWuher: Trade Y2 B2 Madwuher

27) scottobear: Attack G1 Aero

28) MadWuher: Trade Y1 G1 Madwuher

29) scottobear: Build G2 Aero

30) MadWuher: Build R1 Madwuher

31) scottobear: Trade Y2 G2 Hershey

32) MadWuher: Build G3 Madwuher

33) scottobear: Build G3 Hershey

34) MadWuher: Sacrifice Y3 Madwuher
Discover B2 Madwuher G3 Hmmm
Move B2 Hmmm Hershey
Move B2 Hershey Scottobear
Catastrophe Scottobear Blue

35) scottobear: Build G3 Hershey

36) MadWuher: Trade G1 Y1 Madwuher

37) scottobear: Trade G3 Y3 Hershey
	scottobear: nicely done!

38) MadWuher: Build Y2 Madwuher
	MadWuher: Thanks. These are my first games, so I thought I might as well go for the gusto. =) 

39) scottobear: Discover G3 Hershey B3 Quisp
	scottobear: kudos! :D

40) MadWuher: Trade Y1 B1 Madwuher

41) scottobear: Build Y1 Scottobear

42) MadWuher: Discover B1 Madwuher G3 Crisp

43) scottobear: Build G1 Quisp

44) MadWuher: Build B1 Crisp

45) scottobear: Move R3 Aero Crisp

46) MadWuher: Sacrifice Y2 Madwuher
Move G3 Madwuher Crisp
Move G3 Crisp Scottobear

47) scottobear: Trade G3 R3 Quisp

48) MadWuher: Sacrifice B1 Crisp
Trade R1 B1 Madwuher

49) scottobear: Trade Y3 B3 Hershey

50) MadWuher: Build G3 Scottobear

51) scottobear: Move Y1 Scottobear Quisp

52) MadWuher: Sacrifice B1 Crisp
Trade G3 R3 Scottobear

53) scottobear: Move R3 Quisp Madwuher

54) MadWuher: Attack Y1N Scottobear



11116)
Variants: "Unrated, Hard time"
Started: 2008.6.3, Ended: 2008.6.27
Participants: MadWuher (S), scottobear (N)
Winner: MadWuher

1) scottobear: Homeworld Y3 B2 G3

2) MadWuher: Homeworld G1 B3 Y3

3) scottobear: Build G1 Scottobear

4) MadWuher: Build Y1 Madwuher

5) scottobear: Trade G1 B1 Scottobear

6) MadWuher: Trade Y1 G1 Madwuher

7) scottobear: Build B1 Scottobear

8) MadWuher: Build Y1 Madwuher

9) scottobear: Discover B1 Scottobear G1 Eye

10) MadWuher: Build G2 Madwuher

11) scottobear: Build G2 Scottobear

12) MadWuher: Discover G2 Madwuher Y2 Dagger

13) scottobear: Build B1 Eye

14) MadWuher: Build Y1 Madwuher

15) scottobear: Build B2 Eye

16) MadWuher: Trade Y3 B3 Madwuher

17) scottobear: Trade B2 G2 Eye

18) MadWuher: Build B2 Madwuher

19) scottobear: Trade G2 R2 Eye

20) MadWuher: Trade Y1 R1 Madwuher

21) scottobear: Trade G3 Y3 Scottobear

22) MadWuher: Move B3 Madwuher Dagger

23) scottobear: Trade B1 Y1 Eye

24) MadWuher: Build G2 Dagger

25) scottobear: Move R2 Eye Dagger

26) MadWuher: Sacrifice R1 Madwuher
Attack R2 Dagger

27) scottobear: Build G3 Scottobear

28) MadWuher: Trade G2 R2 Dagger

29) scottobear: Trade G3 R3 Scottobear

30) MadWuher: Build G2 Madwuher

31) scottobear: Build G3 Scottobear

32) MadWuher: Build G3 Dagger

33) scottobear: Move R3 Scottobear Eye

34) MadWuher: Trade G2 Y2 Madwuher

35) scottobear: Build R1 Eye

36) MadWuher: Sacrifice Y2 Madwuher
Move G3 Dagger Madwuher
Move G1 Madwuher Dagger

37) scottobear: Trade G3 R3 Scottobear

38) MadWuher: Discover G1 Dagger Y1 Axe

39) scottobear: Build Y2 Eye

40) MadWuher: Build G2 Axe

41) scottobear: Move R3 Scottobear Axe

42) MadWuher: Sacrifice G3 Madwuher
Build Y2 Madwuher
Build Y3 Madwuher
Build G3 Dagger

43) scottobear: Attack G2 Axe

44) MadWuher: Sacrifice G3 Dagger
Build G3 Dagger
Build G3 Axe
Build G3 Axe

45) scottobear: Build B1 Scottobear
Catastrophe Axe Green

46) MadWuher: Sacrifice Y2 Madwuher
Discover B3 Dagger R1 Boomtime
Move B3 Boomtime Scottobear
Catastrophe Scottobear B

47) scottobear: Move R3 Axe Scottobear

48) MadWuher: Discover Y1 Madwuher G2 Axe

49) scottobear: Move R3 Eye Scottobear

50) MadWuher: Sacrifice G2 Dagger
Build Y1 Axe
Build Y2 Madwuher

51) scottobear: Move R3 Scottobear Dagger

52) MadWuher: Sacrifice R2 Dagger
Attack R3N Dagger
Pass

53) scottobear: Build B1 Eye

54) MadWuher: Sacrifice Y2 Madwuher
Move Y1 Axe Scottobear
Move Y1 Axe Scottobear
Catastrophe Scottobear Y



11115)
Variants: "Hard time"
Started: 2008.6.5, Ended: 2008.6.12
Participants: TwoShort (S), patwillis (N)
Winner: TwoShort

1) patwillis: Homeworld G1 B2 Y3

2) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy

3) patwillis: Build Y1 Patwillis
	TwoShort: Woops, didn't mean to make a small universe there...

4) TwoShort: Build G1 Twoshort

5) patwillis: Trade Y1 G1 Patwillis

6) TwoShort: Build G2 Twoshort
	patwillis: Hi. Enjoy the game...

7) patwillis: Build G2 Patwillis

8) TwoShort: Trade G2 Y2 Twoshort

9) patwillis: Discover G2 Patwillis B3 Blue3

10) TwoShort: Discover G1 Twoshort Y2 Yolonda

11) patwillis: Build G2 Blue3

12) TwoShort: Build G2 Twoshort

13) patwillis: Trade G1 R1 Patwillis

14) TwoShort: Sacrifice G3 Twoshort
Build G1 Yolonda
Build G3 Yolonda
Build G3 Twoshort

15) patwillis: Build Y1 Patwillis

16) TwoShort: Discover G1 Yolonda Y3 Yellonia

17) patwillis: Discover R1 Patwillis G3 Greenland

18) TwoShort: Trade G2 R2 Twoshort

19) patwillis: Move Y1 Patwillis Blue3

20) TwoShort: Sacrifice G3 Yolonda
Build G2 Yolonda
Build G3 Twoshort
Build Y1 Twoshort

21) patwillis: Move G2 Blue3 Yolonda

22) TwoShort: Sacrifice G3 Twoshort
Build G3 Yellonia
Build R1 Twoshort
Build Y1 Twoshort

23) patwillis: Build Y2 Patwillis

24) TwoShort: Discover G1 Yolonda Y3 Yellamatic

25) patwillis: Sacrifice Y2 Patwillis
Move R1 Greenland Yolonda
Move R1 Yolonda Twoshort
Catastrophe Twoshort Red

26) TwoShort: Build G3 Yellamatic

27) patwillis: Build Y2 Blue3

28) TwoShort: Discover Y1 Twoshort B2 Bluonia

29) patwillis: Trade Y1 B1 Blue3

30) TwoShort: Trade Y2 R2 Twoshort

31) patwillis: Build Y1 Patwillis

32) TwoShort: Move G3 Yellamatic Patwillis

33) patwillis: Trade Y1 R1 Patwillis

34) TwoShort: Sacrifice R2 Twoshort
Attack R1 Patwillis
Attack Y3 Patwillis

	TwoShort: That's it I'm afraid...  Thanks for the game!
	patwillis: Thanks - only my 2nd game ever - so picked up a few tips.


11118)
Variants: "Unrated, Hard time"
Started: 2008.6.6, Ended: 2008.6.25
Participants: patwillis (S), scottobear (N)
Winner: patwillis

1) scottobear: Homeworld G3 B2 Y3 Scottobear

2) patwillis: Homeworld R1 B2 G3

3) scottobear: Build Y1 Scottobear

4) patwillis: Build G1 Patwillis

5) scottobear: Discover Y1 Scottobear B1 Fria

6) patwillis: Trade G1 Y1 Patwillis

7) scottobear: Trade Y1 G1 Fria

8) patwillis: Build Y1 Patwillis

9) scottobear: Build G1 Fria

10) patwillis: Discover Y1 Patwillis G3 Greenland

11) scottobear: Trade G1 Y1 Fria

12) patwillis: Build Y2 Greenland

13) scottobear: Build Y2 Fria

14) patwillis: Build G1 Patwillis



11130)
Started: 2008.6.10, Ended: 2008.6.24
Participants: patwillis (S), Danner (N)
Winner: patwillis

1) Danner: Homeworld R1 B2 G3

2) patwillis: Homeworld Y1 B3 G3
	Danner: Hi, have a good game!

3) Danner: Build G1 Danner

4) patwillis: Build G1 Patwillis

5) Danner: Trade G1 Y1 Danner

6) patwillis: Build G1 Patwillis

7) Danner: Build Y1 Danner

8) patwillis: Trade G1 R1 Patwillis

9) Danner: Build Y2 Danner

10) patwillis: Build R1 Patwillis

11) Danner: Discover Y1 Danner G3 Earth

12) patwillis: Trade G3 Y3 Patwillis

13) Danner: Discover Y1 Earth R2 Mars

14) patwillis: Move Y3 Patwillis Mars

15) Danner: Sacrifice G3 Danner
Build Y2 Mars
Build Y2 Mars
Build Y3 Danner
Catastrophe Mars Y

16) patwillis: Build R2 Patwillis

17) Danner: Trade Y2 R2 Danner

18) patwillis: Discover R2 Patwillis G2 Greenland

19) Danner: Sacrifice Y3 Danner
Discover R2 Danner R3 Temporal
Move R2 Temporal Greenland
Move R2 Greenland Patwillis

20) patwillis: Build R2 Patwillis
Catastrophe Patwillis Red

21) Danner: Trade Y1 G1 Danner

22) patwillis: Build G1 Patwillis

23) Danner: Build G2 Danner

24) patwillis: Trade G1 Y1 Patwillis

25) Danner: Trade G1 Y1 Danner

26) patwillis: Build Y2 Patwillis

27) Danner: Build Y2 Danner

28) patwillis: Move Y2 Patwillis Greenland

29) Danner: Discover Y2 Danner R3 Mars

30) patwillis: Build G1 Patwillis

31) Danner: Build Y2 Danner

32) patwillis: Build Y3 Greenland

33) Danner: Build Y3 Danner

34) patwillis: Sacrifice Y3 Greenland
Move Y1 Patwillis Greenland
Move Y1 Greenland Mars
Move Y1 Mars Danner
Catastrophe Danner Yellow

35) Danner: Build G1 Danner

36) patwillis: Discover G1 Patwillis Y2 Yellonia

37) Danner: Trade G1 Y1 Danner

38) patwillis: Build G1 Patwillis

39) Danner: Discover G2 Danner Y3 Sun

40) patwillis: Sacrifice Y2 Greenland
Move R2 Greenland Mars
Move R2 Mars Danner

41) Danner: Sacrifice G2 Sun
Build Y1 Danner
Build Y2 Danner

42) patwillis: Attack Y2 Danner

	Danner: I give up. Congrats!
	patwillis: Thanks - set up another if you like

	Danner: Ok, I will :)


11151)
Started: 2008.6.11, Ended: 2008.6.29
Participants: MatrixFrog (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) MatrixFrog: Homeworld B3 G1 Y3

3) Danner: Build G1 Danner

4) MatrixFrog: Build Y1 Matrixfrog

5) Danner: Trade G1 Y1 Danner

6) MatrixFrog: Build Y1 Matrixfrog

7) Danner: Build Y2 Danner

8) MatrixFrog: Trade Y1 B1 Matrixfrog

9) Danner: Discover Y1 Danner G3 Earth

10) MatrixFrog: Discover Y1 Matrixfrog G2 Mars

11) Danner: Build Y1 Earth

12) MatrixFrog: Build Y2 Matrixfrog

13) Danner: Move Y1 Earth Mars

14) MatrixFrog: Move Y1 Mars Earth

15) Danner: Sacrifice G3 Danner
Build Y2 Earth
Build Y3 Mars
Build Y3 Danner

16) MatrixFrog: Trade Y2 R2 Matrixfrog

17) Danner: Trade Y3 G3 Danner

18) MatrixFrog: Build R1 Matrixfrog

19) Danner: Trade Y2 R2 Danner

20) MatrixFrog: Sacrifice B1 Matrixfrog
Trade Y1 R1 Earth

21) Danner: Move Y1 Earth Danner

22) MatrixFrog: Build R2 Earth

23) Danner: Sacrifice R2 Danner
Attack R1S Earth
Attack R2S Earth

24) MatrixFrog: Build Y1 Matrixfrog

25) Danner: Move Y3 Mars Matrixfrog

26) MatrixFrog: Trade Y3 G3 Matrixfrog

27) Danner: Sacrifice R2 Earth
Attack G3S Matrixfrog
Attack R2S Matrixfrog

28) MatrixFrog: Build R2 Matrixfrog

29) Danner: Sacrifice G3 Matrixfrog
Build R2 Matrixfrog
Build Y2 Matrixfrog
Build Y2 Matrixfrog
Catastrophe Matrixfrog R
Catastrophe Matrixfrog Y
	MatrixFrog: *sigh* this isn't looking good

	Danner: Indeed.
Thanks the game.


11085)
Variants: "Hard time"
Started: 2008.6.13, Ended: 2008.6.13
Participants: Koukaakiva (S), jeep (N)
Winner: Koukaakiva

	jeep: This standing challenge is supposed to be suspended.  Sorry.  Aaron is aware that suspended challenges are still cropping up.


11091)
Started: 2008.6.13, Ended: 2009.12.9
Participants: MikeYarrum (S), Koukaakiva (N)
Winner: MikeYarrum



11122)
Variants: "Hard time"
Started: 2008.6.13, Ended: 2008.6.16
Participants: TwoShort (S), Koukaakiva (N)
Winner: TwoShort



11138)
Variants: "Hard time"
Started: 2008.6.13, Ended: 2008.6.18
Participants: Danner (S), Koukaakiva (N)
Winner: Danner

	Danner: oh well...


11147)
Variants: "Unrated, Hard time"
Started: 2008.6.13, Ended: 2008.6.13
Participants: scottobear (S), Koukaakiva (N)
Winner: Koukaakiva



11159)
Started: 2008.6.13, Ended: 2008.11.15
Participants: ts52 (S), Koukaakiva (N)
Winner: ts52



11166)
Started: 2008.6.14, Ended: 2009.7.8
Participants: Horowits (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) Horowits: Homeworld G2 B3 Y3
	Danner: Welcome! Good luck!
	Horowits: Thanks! You too.

3) Danner: Build G1 Danner

4) Horowits: Build Y1 Horowits

5) Danner: Trade G1 R1 Danner

6) Horowits: Trade Y1 G1 Horowits

7) Danner: Build R1 Danner

8) Horowits: Build G1 Horowits

9) Danner: Build G1 Danner

10) Horowits: Trade Y3 R3 Horowits

11) Danner: Trade R1 Y1 Danner

12) Horowits: Trade G1 Y1 Horowits

13) Danner: Discover G1 Danner Y3 Sun



11161)
Variants: "Hard time"
Started: 2008.6.17, Ended: 2008.6.18
Participants: TwoShort (S), MadWuher (N)
Winner: TwoShort

1) MadWuher: Homeworld Y1 B2 G3
	TwoShort: Howdy

2) TwoShort: Homeworld R1 B3 G3

3) MadWuher: Build G1 Madwuher

4) TwoShort: Build G1 Twoshort

5) MadWuher: Trade G1 Y1 Madwuher

6) TwoShort: Trade G1 Y1 Twoshort

7) MadWuher: Build G1 Madwuher

8) TwoShort: Build Y2 Twoshort
	MadWuher: Hi there. Looking forward to a good game. =)

9) MadWuher: Discover G1 Madwuher Y3 Yuuzhan'tar

10) TwoShort: Discover Y1 Twoshort G2 Grogar

11) MadWuher: Build Y2 Madwuher

12) TwoShort: Sacrifice Y2 Twoshort
Discover Y1 Grogar R3 Boomtime
Move Y1 Boomtime Madwuher
Catastrophe Madwuher Yellow

13) MadWuher: Build G1 Madwuher

14) TwoShort: Build G1 Twoshort
	MadWuher: Yeah, I thought that might happen.

15) MadWuher: Build G2 Yuuzhan'tar

16) TwoShort: Trade G1 Y1 Twoshort

17) MadWuher: Trade G1 Y1 Madwuher

18) TwoShort: Build G1 Twoshort

19) MadWuher: Build G1 Madwuher

20) TwoShort: Trade G1 B1 Twoshort

21) MadWuher: Trade G1 B1 Madwuher

22) TwoShort: Move B1 Twoshort Madwuher
	TwoShort: Gotcha :)  Thanks for the game.

23) MadWuher: Sacrifice G3 Madwuher
Build B1 Madwuher
Pass
Pass
Catastrophe Madwuher B
	MadWuher: Very Nice....



11169)
Variants: "Hard time"
Started: 2008.6.17, Ended: 2008.6.18
Participants: jeep (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B3 G3

	jeep: Sorry, these standing challenges are suspended, they weren't supposed to appear.


11177)
Started: 2008.6.18, Ended: 2008.6.28
Participants: MadWuher (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) MadWuher: Homeworld B3 R1 G3

3) Danner: Build G1 Danner
	Danner: Good luck!

4) MadWuher: Build G1 Madwuher

5) Danner: Trade G1 R1 Danner

6) MadWuher: Trade G1 Y1 Madwuher
	MadWuher: You too.

7) Danner: Build R2 Danner

8) MadWuher: Build G1 Madwuher

9) Danner: Trade R2 Y2 Danner

10) MadWuher: Trade G3 R3 Madwuher

11) Danner: Build R2 Danner

12) MadWuher: Build R2 Madwuher

13) Danner: Discover R1 Danner G3 Earth

14) MadWuher: Discover R2 Madwuher G2 Googleplex

15) Danner: Sacrifice G3 Danner
Build R2 Earth
Build R3 Earth
Build R3 Danner

16) MadWuher: Build G1 Madwuher

17) Danner: Sacrifice R1 Earth
Pass

18) MadWuher: Build G1 Madwuher

19) Danner: Trade R3 G3 Danner

20) MadWuher: Trade G1 Y1 Madwuher

21) Danner: Sacrifice Y2 Danner
Discover R2 Earth Y2 Alpha
Discover R3 Earth Y2 Beta

22) MadWuher: Build Y1 Madwuher

23) Danner: Move R3 Beta Madwuher

24) MadWuher: Attack R3 Madwuher
	MadWuher: Nice.... Don't know why I didn't see this coming....

25) Danner: Move R2 Alpha Madwuher
Catastrophe Madwuher R

26) MadWuher: Move Y1 Madwuher Googleplex

27) Danner: Trade R2 Y2 Danner

28) MadWuher: Build Y2 Googleplex

29) Danner: Build Y2 Danner

30) MadWuher: Sacrifice Y2 Googleplex
Move Y1 Madwuher Danner
Move Y1 Madwuher Danner
Catastrophe Danner Y

31) Danner: Build G1 Danner

32) MadWuher: Build G2 Madwuher

33) Danner: Trade G1 Y1 Danner

34) MadWuher: Trade G2 Y2 Madwuher

35) Danner: Build G1 Danner

36) MadWuher: Discover G1 Madwuher B2 Blutopia

37) Danner: Trade G1 B1 Danner

38) MadWuher: Build G1 Madwuher

39) Danner: Build B1 Danner

40) MadWuher: Build G2 Blutopia

41) Danner: Move B1 Danner Madwuher

42) MadWuher: Sacrifice G2 Blutopia
Build G2 Blutopia
Build R1 Googleplex

43) Danner: Sacrifice G3 Danner
Build B1 Madwuher
Build B2 Madwuher
Pass
Catastrophe Madwuher B

	Danner: Thx the game. How about an another one?
	MadWuher: Didn't see that G3 in your system.... Wow, big mistake.


11160)
Started: 2008.6.18, Ended: 2008.6.23
Participants: MadWuher (S), MikeYarrum (N)
Winner: MadWuher



11183)
Started: 2008.6.21, Ended: 2008.11.8
Participants: Sunnan (S), MikeYarrum (N)
Winner: Sunnan



11182)
Variants: "Hard time"
Started: 2008.6.23, Ended: 2008.6.28
Participants: TwoShort (S), MadWuher (N)
Winner: TwoShort

1) MadWuher: Homeworld B1 R2 G3

2) TwoShort: Homeworld B1 G3 B3 *

3) MadWuher: Build G1 Madwuher
	MadWuher: Hopefully, I last longer than last time. =)

4) TwoShort: Build B1 Twoshort
	MadWuher: Great homeworld. Way to take advantage of the blue pyramids quickly.

5) MadWuher: Build G1 Madwuher

6) TwoShort: Trade B3 Y3 Twoshort
	TwoShort: Yeah, I love this opening, but most people have learned not to take a b1 star as first player against me :)

7) MadWuher: Trade G1 Y1 Madwuher

8) TwoShort: Build B2 Twoshort
	MadWuher: Still learning. Thanks for the schooling last time. =) I know I have a long way to go.

9) MadWuher: Build Y1 Madwuher

10) TwoShort: Discover B1 Twoshort G2 Grogar

11) MadWuher: Discover Y1 Madwuher G3 Gimble

12) TwoShort: Build B2 Twoshort

13) MadWuher: Trade G1 R1 Madwuher

14) TwoShort: Build B2 Grogar

15) MadWuher: Build Y1 Gimble

16) TwoShort: Build B3 Grogar

17) MadWuher: Build G1 Madwuher

18) TwoShort: Discover B2 Twoshort Y2 Yellonia

19) MadWuher: Discover G1 Madwuher B3 Bluto

20) TwoShort: Build B3 Twoshort

21) MadWuher: Build G1 Madwuher

22) TwoShort: Sacrifice B2 Twoshort
Trade B2 R2 Grogar
Trade B3 Y3 Grogar

23) MadWuher: Build Y2 Madwuher

24) TwoShort: Build B2 Grogar

25) MadWuher: Trade Y2 B2 Madwuher

26) TwoShort: Build B3 Grogar

27) MadWuher: Build G1 Bluto

28) TwoShort: Move B3 Grogar Gimble

29) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G2 Bluto
Build G3 Madwuher

30) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Grogar Gimble
Move B3 Gimble Madwuher
Move Y3 Gimble Madwuher

31) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y2 Madwuher
Build Y2 Madwuher
Catastrophe Madwuher Y
	MadWuher: Nice move.

32) TwoShort: Sacrifice R2 Grogar
Attack G3N Madwuher
Attack B2N Madwuher

33) MadWuher: Attack B2S Madwuher

34) TwoShort: Sacrifice B2 Grogar
Trade B3 R3 Madwuher
Trade G3 Y3 Madwuher

35) MadWuher: Sacrifice G2 Bluto
Build G2 Bluto
Build R1 Madwuher
Catastrophe Madwuher R

36) TwoShort: Sacrifice Y3 Madwuher
Move B1 Grogar Madwuher
Move B2 Yellonia Madwuher
Pass
Catastrophe Madwuher Blue
	MadWuher: Wow, after doing the Red Catastrophe, totally missed the blue catastrophe coming my way.  Nice Game.
	MadWuher: Was there any option for me to get out of that mess??
	TwoShort: Depends which mess you mean :)  Once I moved the 3s into your homeworld it was definitely over.  Before that, you were hurting pretty bad because my blue monopoly was getting me 3s that you weren't getting.  To get out of that you should have either broken the monopoly immediately by trading your 3 to blue on turn 2 or so, or agressively pushed for your own monopoly in another color, probably yellow.  Or, optimally, don't take a b1 star as first player :)
  In any case, thanks for the game!



11210)
Started: 2008.6.25, Ended: 2008.8.6
Participants: Danner (S), iwilson (N)
Winner: Danner

1) iwilson: Homeworld Y3 B2 G3

2) Danner: Homeworld R1 B2 G3
	iwilson: 
	Danner: homeworld R1 B2 G3
	Danner: Oh, sorry, I'm tired :D
Anyway, welcome and good luck!

3) iwilson: Build G1 Iwilson

4) Danner: Build G1 Danner
	iwilson: 

5) iwilson: Trade G1 R1 Iwilson

6) Danner: Trade G1 R1 Danner

7) iwilson: Build G1 Iwilson

8) Danner: Build R2 Danner

9) iwilson: Build R2 Iwilson

10) Danner: Trade R1 Y1 Danner

11) iwilson: Trade R2 Y2 Iwilson

12) Danner: Build Y1 Danner

13) iwilson: Build G1 Iwilson

14) Danner: Build G1 Danner

15) iwilson: Build G2 Iwilson

16) Danner: Build G2 Danner
Catastrophe Iwilson G

17) iwilson: Trade Y2 G2 Iwilson

18) Danner: Discover Y1 Danner G3 Earth

19) iwilson: Build R1 Iwilson

20) Danner: Build R2 Danner

21) iwilson: Build R2 Iwilson


22) Danner: Trade R2 Y2 Danner

	Danner: Thx the game


11212)
Started: 2008.6.25, Ended: 2008.7.18
Participants: Danner (S), patwillis (N)
Winner: Danner

1) patwillis: Homeworld G1 B2 Y3

2) Danner: Homeworld R1 B2 G3

3) patwillis: Build Y1 Patwillis

4) Danner: Build G1 Danner

5) patwillis: Trade Y1 G1 Patwillis

6) Danner: Trade G1 R1 Danner

7) patwillis: Build Y1 Patwillis

8) Danner: Build R1 Danner

9) patwillis: Trade Y3 R3 Patwillis

10) Danner: Trade R1 Y1 Danner

11) patwillis: Build G1 Patwillis

12) Danner: Build G2 Danner

13) patwillis: Discover G1 Patwillis Y3 Yelland

14) Danner: Move G2 Danner Yelland

15) patwillis: Discover G1 Patwillis Y3 Venus

16) Danner: Build G2 Danner

17) patwillis: Build G2 Yelland

18) Danner: Sacrifice G2 Danner
Build G2 Yelland
Build G3 Danner
Catastrophe Yelland G

19) patwillis: Build G1 Venus

20) Danner: Discover G3 Danner Y3 Sun

21) patwillis: Build G2 Venus

22) Danner: Build G2 Danner

23) patwillis: Sacrifice G2 Venus
Build Y1 Patwillis
Build Y2 Patwillis

24) Danner: Sacrifice G2 Danner
Build G2 Sun
Build Y2 Danner

25) patwillis: Discover Y1 Patwillis G3 Greenland

26) Danner: Discover Y1 Danner B3 Cube

27) patwillis: Build R1 Patwillis

28) Danner: Sacrifice G2 Sun
Build Y2 Danner
Build Y3 Cube

29) patwillis: Build G2 Venus

30) Danner: Move R1 Danner Sun

31) patwillis: Move R1 Patwillis Greenland

32) Danner: Build R2 Sun

33) patwillis: Build R2 Greenland

34) Danner: Discover R1 Sun G2 Trickster

35) patwillis: Move G2 Venus Danner

36) Danner: Attack G2N Danner
	Danner: uhh, I was not watchful

37) patwillis: Sacrifice Y2 Patwillis
Move G1 Venus Danner
Move G1 Venus Danner
Catastrophe Danner Green

38) Danner: Move Y3 Cube Trickster

39) patwillis: Build Y2 Patwillis

40) Danner: Sacrifice Y1 Cube
Move G3 Sun Danner

41) patwillis: Discover R1 Greenland G2 Fred

42) Danner: Trade Y2 G2 Danner

43) patwillis: Build R2 Fred

44) Danner: Sacrifice G2 Danner
Build R3 Sun
Build R3 Trickster

45) patwillis: Trade R3 G3 Patwillis

46) Danner: Move R3 Trickster Greenland

47) patwillis: Build R3 Greenland

48) Danner: Attack R3N Greenland

49) patwillis: Sacrifice Y1 Greenland
Move R1 Fred Greenland
Catastrophe Greenland Red

50) Danner: Move R3 Sun Fred

51) patwillis: Sacrifice Y1 Patwillis
Discover R2 Fred Y3 Yellonia

52) Danner: Build R1 Trickster

53) patwillis: Build G1 Patwillis

54) Danner: Sacrifice Y3 Trickster
Move R3 Fred Yellonia
Move G3 Danner Yellonia
Move G3 Yellonia Patwillis
Catastrophe Patwillis G

	Danner: Thx the game.


11194)
Started: 2008.6.25, Ended: 2008.6.26
Participants: whippingboy (S), MikeYarrum (N)
Winner: MikeYarrum



11204)
Variants: "Hard time"
Started: 2008.6.25, Ended: 2008.6.26
Participants: whippingboy (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3



11202)
Started: 2008.6.26, Ended: 2009.12.9
Participants: jdcc789 (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

	Danner: Hi, good luck!


11214)
Variants: "Hard time"
Started: 2008.6.26, Ended: 2008.8.7
Participants: Jesse (S), MadWuher (N)
Winner: Jesse

1) MadWuher: Homeworld R1 B2 G3

2) Jesse: Homeworld Y3 B1 G3
	Jesse: Hello, and have a good game.

3) MadWuher: Build G1 Madwuher
	MadWuher: Good luck to you too.
Play this much? This (I think) is my 6th game. Still learning the ropes.

4) Jesse: Build G1 Jesse

5) MadWuher: Trade G1 B1 Madwuher

6) Jesse: Trade G1 B1 Jesse

7) MadWuher: Build B2 Madwuher
	Jesse: I have played quite a lot.  If you have any questions, I'm happy to help.

8) Jesse: Build B2 Jesse
	MadWuher: Feel free to point out my mistakes, so I can learn from them.

9) MadWuher: Trade B2 Y2 Madwuher

10) Jesse: Trade B1 R1 Jesse

11) MadWuher: Trade B1 R1 Madwuher

12) Jesse: Build R2 Jesse
	Jesse: It's good to get a red as soon as possible after your opponent does, but you could have afforded a turn or two delay, since I can't reach you, and you have red in your system markers for defense.  What you've done isn't necessarily bad, but now it will cost you an extra turn to get back into the blue economy.

13) MadWuher: Build R2 Madwuher

14) Jesse: Discover R2 Jesse G2 Papawaio

15) MadWuher: Discover R2 Madwuher G3 Edora

16) Jesse: Move B2 Jesse Papawaio

17) MadWuher: Trade R1 B1 Madwuher

18) Jesse: Build R1 Papawaio


19) MadWuher: Move B1 Madwuher Edora

20) Jesse: Trade R1 Y1 Papawaio

21) MadWuher: Build Y1 Madwuher

22) Jesse: Build Y1 Papawaio

23) MadWuher: Build Y2 Madwuher

24) Jesse: Discover Y1 Papawaio G1 Ulkesh

25) MadWuher: Move Y2 Madwuher Edora

26) Jesse: Build Y2 Ulkesh

27) MadWuher: Build Y3 Edora

28) Jesse: Build Y3 Papawaio

29) MadWuher: Build G1 Madwuher

30) Jesse: Build G1 Jesse

31) MadWuher: Discover G1 Madwuher B3 Blarney

32) Jesse: Discover G1 Jesse B2 Twiki

33) MadWuher: Build G2 Madwuher

34) Jesse: Build G2 Jesse

35) MadWuher: Discover Y2 Edora R2 Amber

36) Jesse: Sacrifice G3 Jesse
Build B1 Papawaio
Build B3 Papawaio
Build G3 Jesse

37) MadWuher: Move B1 Edora Papawaio
Catastrophe Papawaio Blue

38) Jesse: Sacrifice G3 Jesse
Build R1 Papawaio
Build R3 Jesse
Build G3 Jesse

39) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R3 Edora
Pass

40) Jesse: Sacrifice Y2 Ulkesh
Move R1 Papawaio Edora
Move R2 Papawaio Edora
Catastrophe Edora R

41) MadWuher: Build Y2 Edora

42) Jesse: Move R3 Jesse Papawaio

43) MadWuher: Trade Y1 R1 Madwuher

44) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R2 Papawaio
Build Y1 Ulkesh

45) MadWuher: Move R1 Madwuher Blarney

46) Jesse: Move R2 Papawaio Blarney

47) MadWuher: Sacrifice Y2 Edora
Move G1 Blarney Amber
Move R1 Blarney Twiki

48) Jesse: Sacrifice R2 Blarney
Attack R1 Twiki
Pass

49) MadWuher: Sacrifice G2 Madwuher
Build G2 Amber
Build Y2 Edora

50) Jesse: Discover G2 Jesse B2 Gurgi

51) MadWuher: Move Y3 Edora Madwuher

52) Jesse: Move Y1 Ulkesh Twiki

53) MadWuher: Trade Y2 R2 Madwuher

54) Jesse: Build Y2 Twiki

55) MadWuher: Move R2 Madwuher Edora

56) Jesse: Move R3 Papawaio Edora

57) MadWuher: Sacrifice G2 Amber
Build R2 Edora
Build G2 Madwuher

58) Jesse: Sacrifice G3 Jesse
Build G3 Twiki
Build R3 Jesse
Build R3 Edora
Catastrophe Edora R

59) MadWuher: Trade G2 R2 Madwuher

60) Jesse: Build G2 Gurgi

61) MadWuher: Move R2 Madwuher Edora

62) Jesse: Move R1 Jesse Papawaio


63) MadWuher: Sacrifice G3 Madwuher
Build R2 Edora
Build G3 Amber
Pass

64) Jesse: Sacrifice G3 Twiki
Build G3 Twiki
Build R3 Twiki
Build R3 Papawaio

65) MadWuher: Pass

66) Jesse: Sacrifice Y3 Papawaio
Discover G3 Twiki Y3 Orochi
Move R1 Twiki Edora
Move R1 Papawaio Edora
Catastrophe Edora R
	MadWuher: I think I gave up many turns ago..... Now I'm just playing to see how diabolically ruthless you can be in the end.

67) MadWuher: Move Y2 Edora Madwuher
	Jesse: You've certainly been in a tight spot, and it only gets tighter as I squeeze to extend my advantage.  I can't point to any particular mistake you've made along the way.  It's just been a gradual slide.

68) Jesse: Sacrifice G3 Orochi
Build G3 Twiki
Build Y3 Papawaio
Build R1 Twiki
	MadWuher: I love the way you denied me a Y3 by moving your green into position. Very nice move. Where did you learn that one from? (Or, are there any archived battles where might I find other examples of you pulling this move or similar)

69) MadWuher: Trade Y3 G3 Madwuher
	Jesse: This is something called the Super Factory.  I think Andy Looney was the first to discover it.  The other half of the maneuver goes like this...

70) Jesse: Sacrifice G3 Twiki
Build G3 Twiki
Build Y3 Ulkesh
Build R1 Papawaio
	Jesse: As for archived games, you might look at the games histories of the top rated players here, and look at some of the games between them.
	MadWuher: How do you find a list of the top rated players?

71) MadWuher: Sacrifice G3 Amber
Build G3 Madwuher
Pass
Pass

72) Jesse: Sacrifice Y3 Papawaio
Discover G3 Twiki Y3 Vash
Discover R3 Papawaio B3 Spike
Discover R3 Twiki B3 Tetsuo
	Jesse: Click the "Players" link at the top of the page.  Select Homeworlds in the list of games, and click "View Game Ratings".  Click the Homeworlds tab at the top of the player list to sort by Homeworlds rating.  Viola!
	MadWuher: Thanks.... I kept looking under leaderboard and games tabs. Thought the players tab would just list the names of all the registered users. D'oh!!!

73) MadWuher: Pass

74) Jesse: Sacrifice Y2 Twiki
Move G3 Vash Madwuher
Move R3 Spike Madwuher

75) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y2 Madwuher
Build Y3 Madwuher

76) Jesse: Sacrifice R3 Tetsuo
Attack Y3 Madwuher
Attack G3 Madwuher
Attack G3 Madwuher
	Jesse: Party at your place!

77) MadWuher: Sacrifice Y2 Amber
Discover G1 Amber B3 Noboomyet
Move G1 Noboomyet Madwuher

78) Jesse: Trade G3 B3 Madwuher
	MadWuher: OK... Is it possible for us to get 4 of each colour in to the homeworld and do a catastrophe with all four colours at once???? 

79) MadWuher: Build G3 Madwuher
	MadWuher: Let's see how the system handles it. =)
	Jesse: I suspect it handles it just as through four catastrophes happen in sequence.  We can try it, though.

80) Jesse: Attack G3 Madwuher

81) MadWuher: Build Y2 Madwuher

82) Jesse: Sacrifice G3 Madwuher
Build G3 Madwuher
Build B1 Madwuher
Build B1 Madwuher
	Jesse: Just as a matter of principle, I can't let you keep the large.  ;)  Now if you build the y2, I can build a couple of blues and blow it all away.

83) MadWuher: Pass

84) Jesse: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R2 Madwuher
Build R2 Madwuher
Catastrophe Madwuher R
Catastrophe Madwuher B
Catastrophe Madwuher Y
Catastrophe Madwuher G
	Jesse: Oh, right.  The reds...

	Jesse: Interesting.  I thought possibly it would choke after the second marker was eliminated, complaining that the system no longer existed.  But apparently not.
	MadWuher: Yes. I thought it might act strangely, but I guess not.


11232)
Started: 2008.6.28, Ended: 2009.12.9
Participants: syluxtrace (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

	Danner: Hi, good luck!


11236)
Variants: "Hard time"
Started: 2008.6.28, Ended: 2008.7.1
Participants: syluxtrace (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B3 G3

	MadWuher: Hi there syluxtrace. Welcome to the game.



11242)
Started: 2008.6.28, Ended: 2008.7.18
Participants: Danner (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B3 G3

2) Danner: Homeworld R1 B2 G3

3) MadWuher: Build G1 Madwuher

4) Danner: Build G1 Danner
	MadWuher: And so, we meet again......

5) MadWuher: Trade G1 R1 Madwuher
	Danner: And not for the last time :)

6) Danner: Trade G3 R3 Danner

7) MadWuher: Build R2 Madwuher

8) Danner: Build R2 Danner

9) MadWuher: Trade R2 Y2 Madwuher

10) Danner: Trade R2 Y2 Danner

11) MadWuher: Build R2 Madwuher

12) Danner: Build R2 Danner

13) MadWuher: Discover R2 Madwuher B2 Abydos

14) Danner: Discover R2 Danner Y3 Dakara
	MadWuher: A planet once under the rule of Ra. The first planet modern Tau'ri travelled to via Stargate, it was liberated by Jack O'Neill's company and is the home of Skaara and Sha're (AKA Sha'uri from the original movie). From Stargate and "Children of the Gods". Destroyed by Anubis using the Eye of Ra at the end of Season 6.

15) MadWuher: Build Y1 Madwuher
	Danner: Home of the ancient super-weapon, that destroyed all replicators in the Milky way :( (it is my favourite "race")
	Danner: Here it's 0:05 AM, I go to bed :) bye

16) Danner: Build Y1 Danner
	MadWuher: Ciao for now....

17) MadWuher: Discover R1 Madwuher G2 Chulak

18) Danner: Sacrifice G1 Danner
Build R2 Dakara
	MadWuher: A homeworld of the Jaffa and the name of the only city on the planet. Was a source of soldiers and slaves to Apophis until Teal'c rebelled. After the defeat of the Goa'uld, Chulak became a major stronghold for the Free Jaffa Nation. But after their victory at the Battle of P3Y-229, the Ori forces moved on to Chulak, where they took control after a ferocious battle
	Danner: That battle is in the tenth season, isn't it?

19) MadWuher: Sacrifice G3 Madwuher
Build R3 Chulak
Build R3 Abydos
Build Y1 Madwuher
	Danner: You play very well!

20) Danner: Sacrifice Y2 Danner
Move R2 Dakara Abydos
Move R2 Dakara Abydos
Catastrophe Abydos R
	MadWuher: Carp..... sorry for the spoiler. I'm pulling the information off a wiki.

21) MadWuher: Sacrifice Y1 Madwuher
Move R3 Chulak Madwuher
	Danner: No problem.

22) Danner: Trade R3 G3 Danner

23) MadWuher: Build R2 Chulak

24) Danner: Build Y1 Danner

25) MadWuher: Trade Y1 G1 Madwuher

26) Danner: Discover Y1 Danner G3 Tollana

27) MadWuher: Build R2 Madwuher

28) Danner: Build G1 Danner
	Danner: The new homeworld for the Tollan people. The planet was originally settled by ships, and had no Stargate. The Nox helped the Tollan to construct a new gate for their new home.
The species' original homeworld, Tollan, was destroyed after the inhabitants of the neighboring world of Serita destroyed themselves with advanced technology given them by the Tollan.

29) MadWuher: Discover R2 Madwuher G2 Tartarus

30) Danner: Build Y1 Danner

31) MadWuher: Build Y2 Madwuher
	MadWuher: Tartarus - Homeworld of the Kull Warriors.

32) Danner: Build Y2 Tollana

33) MadWuher: Move Y2 Madwuher Tartarus

34) Danner: Sacrifice G3 Danner
Build Y3 Tollana
Build Y3 Danner
Build G1 Danner

35) MadWuher: Build Y3 Tartarus

36) Danner: Discover Y3 Tollana B2 Earth

37) MadWuher: Build G2 Madwuher

38) Danner: Build G3 Danner
	Danner: Earth - Homeworld of the Tau'ri

39) MadWuher: Trade G2 B2 Madwuher

40) Danner: Discover Y3 Danner G3 Abydos

41) MadWuher: Sacrifice Y2 Madwuher
Move R2 Chulak Tollana
Move B2 Madwuher Chulak

42) Danner: Discover Y2 Tollana B1 Dakara
	Danner: Abydos - see below :)

43) MadWuher: Build R2 Chulak

44) Danner: Move G1 Danner Abydos

45) MadWuher: Attack Y1 Tollana

46) Danner: Trade Y3 R3 Earth

47) MadWuher: Build R3 Tollana

48) Danner: Build G2 Danner

49) MadWuher: Sacrifice Y3 Tartarus
Move G1 Madwuher Chulak
Move G1 Chulak Abydos
Move G1 Abydos Danner
Catastrophe Danner G

50) Danner: Sacrifice Y1 Danner
Move Y3 Abydos Danner

51) MadWuher: Sacrifice B2 Chulak
Trade R3 Y3 Tollana
Trade R3 G3 Madwuher

52) Danner: Sacrifice G1 Abydos
Build R3 Earth

53) MadWuher: Sacrifice Y2 Tartarus
Move Y3 Tollana Danner
Move Y1 Tollana Danner
Catastrophe Danner Y

	MadWuher: Booooooom. Wish it had come from dakara though.
	Danner: :D
Congrats!


11224)
Started: 2008.6.29, Ended: 2008.10.3
Participants: MadWuher (S), MikeYarrum (N)
Winner: MadWuher



11247)
Started: 2008.6.29, Ended: 2008.7.25
Participants: Danner (S), MatrixFrog (N)
Winner: Danner

1) MatrixFrog: Homeworld B1 Y2 G3

2) Danner: Homeworld R1 B2 G3
	Danner: homeworld R1 B2 G3

3) MatrixFrog: Build G1 Matrixfrog
	Danner: oops, I made this mistake for the second time...

4) Danner: Build G1 Danner

5) MatrixFrog: Trade G1 R1 Matrixfrog

6) Danner: Trade G1 R1 Danner

7) MatrixFrog: Build R2 Matrixfrog

8) Danner: Build R2 Danner

9) MatrixFrog: Build G1 Matrixfrog

10) Danner: Trade R1 Y1 Danner

11) MatrixFrog: Build G1 Matrixfrog

12) Danner: Build G1 Danner

13) MatrixFrog: Trade G1 B1 Matrixfrog

14) Danner: Trade G1 B1 Danner

15) MatrixFrog: Trade G1 Y1 Matrixfrog

16) Danner: Build B2 Danner

17) MatrixFrog: Build G1 Matrixfrog

18) Danner: Trade B2 Y2 Danner

19) MatrixFrog: Discover G1 Matrixfrog Y3 Sploosh

20) Danner: Build B2 Danner

21) MatrixFrog: Build G1 Matrixfrog

22) Danner: Discover Y1 Danner G3 Earth

23) MatrixFrog: Build G1 Sploosh

24) Danner: Sacrifice G3 Danner
Build Y1 Danner
Build Y2 Earth
Build Y3 Danner

25) MatrixFrog: Build Y3 Matrixfrog

26) Danner: Move Y1 Earth Matrixfrog
Catastrophe Matrixfrog Y

27) MatrixFrog: Trade G1 Y1 Matrixfrog

28) Danner: Move B1 Danner Earth

29) MatrixFrog: Build Y1 Matrixfrog

30) Danner: Build B2 Earth

31) MatrixFrog: Sacrifice B1 Matrixfrog
Trade G1 R1 Sploosh

32) Danner: Build B1 Earth

33) MatrixFrog: Move R1 Sploosh Danner

34) Danner: Sacrifice Y3 Danner
Move B1 Earth Matrixfrog
Move B1 Earth Matrixfrog
Move B2 Earth Matrixfrog
Catastrophe Matrixfrog B

	Danner: Thx the game.


11264)
Variants: "Hard time"
Started: 2008.7.1, Ended: 2008.7.14
Participants: zingor (S), cordgrote (N)
Winner: zingor

1) cordgrote: Homeworld B3 R1 G3

2) zingor: Homeworld Y1 B2 G3

3) cordgrote: Build G1 Cordgrote

4) zingor: Build G1 Zingor

5) cordgrote: Trade G1 Y1 Cordgrote

6) zingor: Build G1 Zingor

7) cordgrote: Build Y1 Cordgrote

8) zingor: Trade G1 R1 Zingor

9) cordgrote: Build Y2 Cordgrote

10) zingor: Build R1 Zingor

11) cordgrote: Discover Y1 Cordgrote G2 Genevive

12) zingor: Build G1 Zingor

13) cordgrote: Trade Y1 G1 Cordgrote
	cordgrote: I'm out for tonight, see you tomorrow.

14) zingor: Trade G1 Y1 Zingor
	zingor: Ok, thanks. I made that bad choice a couple moves ago and I'm still... sleep will help.

15) cordgrote: Build Y2 Genevive

16) zingor: Build Y2 Zingor

17) cordgrote: Discover Y1 Genevive Y3 Yarrow

18) zingor: Discover Y1 Zingor G3 Guava

19) cordgrote: Build Y3 Genevive

20) zingor: Build Y3 Guava

21) cordgrote: Build G1 Cordgrote

22) zingor: Move Y1 Guava Genevive

23) cordgrote: Trade Y2 R2 Cordgrote

24) zingor: Build Y2 Guava

25) cordgrote: Trade G1 B1 Cordgrote

26) zingor: Trade G1 B1 Zingor

27) cordgrote: Move Y2 Genevive Cordgrote

28) zingor: Build G1 Zingor



11246)
Started: 2008.7.1, Ended: 2008.7.15
Participants: MadWuher (S), MatrixFrog (N)
Winner: MadWuher

1) MatrixFrog: Homeworld R2 G1 B3

2) MadWuher: Homeworld G1 B3 G3 *

3) MatrixFrog: Build B1 Matrixfrog

4) MadWuher: Build G1 Madwuher
	MadWuher: Hello. Sorry about the "Undo". Just thought I'd try this start out. Looking forward to seeing how it all pans out.

5) MatrixFrog: Build B1 Matrixfrog

6) MadWuher: Trade G3 Y3 Madwuher

7) MatrixFrog: Trade B3 Y3 Matrixfrog

8) MadWuher: Build G2 Madwuher

9) MatrixFrog: Build Y1 Matrixfrog

10) MadWuher: Discover G2 Madwuher B2 Ambleside

11) MatrixFrog: Trade Y3 G3 Matrixfrog

12) MadWuher: Build G2 Madwuher

13) MatrixFrog: Build Y1 Matrixfrog

14) MadWuher: Trade G2 Y2 Madwuher

15) MatrixFrog: Build Y1 Matrixfrog

16) MadWuher: Build G2 Ambleside

17) MatrixFrog: Discover Y1 Matrixfrog G3 Ping

18) MadWuher: Build G2 Madwuher

19) MatrixFrog: Build Y2 Ping

20) MadWuher: Build G3 Ambleside

21) MatrixFrog: Move Y2 Ping Ambleside

22) MadWuher: Trade G2 R2 Ambleside

23) MatrixFrog: Build Y2 Ping

24) MadWuher: Attack Y2 Ambleside

25) MatrixFrog: Discover Y1 Ping G2 Pong

26) MadWuher: Build Y3 Ambleside

27) MatrixFrog: Build Y3 Pong

28) MadWuher: Sacrifice G2 Madwuher
Build G2 Ambleside
Build R1 Ambleside

29) MatrixFrog: Trade B1 R1 Matrixfrog

30) MadWuher: Sacrifice Y2 Madwuher
Discover G2 Ambleside B3 Sunnybrook
Move Y2 Ambleside Sunnybrook

31) MatrixFrog: Sacrifice B1 Matrixfrog
Trade Y2 R2 Ping

32) MadWuher: Move R1 Ambleside Sunnybrook

33) MatrixFrog: Sacrifice G3 Matrixfrog
Build R1 Ping
Build R3 Ping
Build Y2 Pong

34) MadWuher: Sacrifice G3 Ambleside
Build G3 Ambleside
Build R3 Sunnybrook
Build R3 Ambleside

35) MatrixFrog: Discover Y3 Pong B3 Pang

36) MadWuher: Sacrifice Y3 Ambleside
Move R2 Ambleside Sunnybrook
Move R2 Sunnybrook Matrixfrog
Move R1 Sunnybrook Matrixfrog
Catastrophe Matrixfrog Red

37) MatrixFrog: Sacrifice Y3 Pang
Move Y1 Pong Madwuher
Move Y2 Pong Madwuher
Move R3 Ping Matrixfrog

38) MadWuher: Sacrifice Y3 Madwuher
Move G3 Ambleside Matrixfrog
Move G2 Ambleside Matrixfrog
Move G2 Sunnybrook Matrixfrog
Catastrophe Matrixfrog G

	MadWuher: Good game, want to play another?
	MatrixFrog: Sure, if you want.


11240)
Started: 2008.7.3, Ended: 2009.12.9
Participants: Danner (S), kreiger (N)
Winner: Danner

1) kreiger: Homeworld B3 Y2 G3

2) Danner: Homeworld R1 B2 G3

3) kreiger: Build G1 Kreiger

4) Danner: Build G1 Danner

5) kreiger: Discover G1 Kreiger Y1 Mycon

6) Danner: Trade G1 Y1 Danner



11225)
Variants: "Hard time"
Started: 2008.7.3, Ended: 2008.7.7
Participants: kreiger (S), TwoShort (N)
Winner: kreiger

	TwoShort: Hey - I wasn't actually able to get to the site at all before Hard Time triggered... Looks like it's back up now, so I'll be happy to play if you start another one.


11241)
Variants: "Unrated, Hard time"
Started: 2008.7.8, Ended: 2008.8.13
Participants: MadWuher (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B3 G3

2) MadWuher: Homeworld R2 B1 G3
	MadWuher: Howdy....

3) mneme: Build G1 Mneme
	mneme: Heya.  Mirror start?

4) MadWuher: Build G1 Madwuher
	MadWuher: Looks like it.....

5) mneme: Trade G1 Y1 Mneme
	MadWuher: So far that is .....

6) MadWuher: Trade G1 Y1 Madwuher

7) mneme: Build G1 Mneme

8) MadWuher: Build G1 Madwuher

9) mneme: Trade G1 B1 Mneme

10) MadWuher: Trade G1 B1 Madwuher

11) mneme: Build B2 Mneme

12) MadWuher: Build B2 Madwuher

13) mneme: Discover B2 Mneme Y2 Ector

14) MadWuher: Discover B1 Madwuher G3 Edora
	mneme: there's a problem with the "strategy" of repeating every move your opponent makes.

15) mneme: Sacrifice G3 Mneme
Build B2 Ector
Build B3 Mneme
Build Y1 Mneme

16) MadWuher: Build B3 Edora

17) mneme: Trade B2 G2 Ector
	mneme: *sigh*  that was dumb of me.  Ah well.

18) MadWuher: Build Y2 Madwuher

19) mneme: Trade B3 G3 Mneme

20) MadWuher: Move Y1 Madwuher Edora

21) mneme: Discover Y1 Mneme B2 Friendly

22) MadWuher: Build B3 Madwuher

23) mneme: Sacrifice G3 Mneme
Build Y2 Mneme
Build Y3 Mneme
Build Y3 Friendly

24) MadWuher: Sacrifice B2 Madwuher
Trade B1 R1 Edora
Trade B3 Y3 Madwuher

25) mneme: Trade Y1 R1 Mneme

26) MadWuher: Build R2 Edora

27) mneme: Discover B1 Mneme B2 Bomber

28) MadWuher: Move R2 Edora Bomber

29) mneme: Sacrifice G2 Ector
Build B1 Bomber
Build B3 Ector

30) MadWuher: Attack B1 Bomber

31) mneme: Trade Y1 G1 Friendly

32) MadWuher: Attack B1 Bomber

33) mneme: Sacrifice Y2 Mneme
Move B2 Ector Edora
Move B2 Edora Bomber
Catastrophe Bomber B

34) MadWuher: Build R2 Edora

35) mneme: Move R1 Mneme Friendly

36) MadWuher: Discover R2 Edora Y2 Bologna

37) mneme: Build G1 Friendly

38) MadWuher: Build G1 Madwuher

39) mneme: Move G1 Friendly Mneme

40) MadWuher: Sacrifice Y2 Madwuher
Move G1 Madwuher Edora
Move G1 Edora Bologna

41) mneme: Build G2 Friendly

42) MadWuher: Build G2 Madwuher

43) mneme: Discover G2 Friendly G3 Hector

44) MadWuher: Sacrifice G3 Madwuher
Build G2 Bologna
Build G3 Madwuher
Build R2 Edora

45) mneme: Sacrifice G2 Hector
Build G2 Mneme
Build G3 Friendly

46) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R3 Bologna
Build R3 Bologna

47) mneme: Sacrifice G3 Friendly
Build G3 Friendly
Build R3 Friendly
Build B1 Ector

48) MadWuher: Trade G2 Y2 Madwuher

49) mneme: Sacrifice Y3 Friendly
Move R1 Friendly Edora
Move R1 Edora Bologna
Move G2 Mneme Ector
Catastrophe Bologna R

50) MadWuher: Build G2 Madwuher

51) mneme: Trade G3 Y3 Friendly

52) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build G3 Bologna
Build B1 Edora

53) mneme: Move G1 Mneme Bologna
Catastrophe Bologna G

54) MadWuher: Discover B1 Edora G2 Bologna

55) mneme: Build G1 Friendly

56) MadWuher: Build B2 Bologna

57) mneme: Sacrifice Y3 Friendly
Move G1 Friendly Edora
Move G1 Friendly Edora
Move G2 Ector Edora
Catastrophe Edora G

58) MadWuher: Build B2 Bologna

59) mneme: Trade B3 G3 Ector

60) MadWuher: Sacrifice B1 Bologna
Trade B2 Y2 Bologna

61) mneme: Build B1 Ector

62) MadWuher: Sacrifice G2 Madwuher
Build B2 Bologna
Build B3 Bologna

63) mneme: Discover B1 Ector G3 Artis

64) MadWuher: Sacrifice B2 Bologna
Trade Y2 G2 Madwuher
Trade B3 R3 Bologna

65) mneme: Sacrifice G3 Ector
Build B2 Ector
Build B3 Ector
Build B3 Artis

66) MadWuher: Sacrifice Y2 Bologna
Move B2 Bologna Artis
Move B2 Artis Ector
Catastrophe Ector B

67) mneme: Trade B3 Y3 Artis

68) MadWuher: Build G1 Madwuher

69) mneme: Build B1 Artis

70) MadWuher: Trade G2 B2 Madwuher
	mneme: sweet!

71) mneme: Move B1 Artis Madwuher

72) MadWuher: Trade B2 R2 Madwuher

73) mneme: Attack G1 Madwuher

74) MadWuher: Sacrifice R2 Madwuher
Attack B1 Madwuher
Attack G1 Madwuher

75) mneme: Build B2 Artis

76) MadWuher: Discover B1 Madwuher G3 Caviar

77) mneme: Build Y1 Artis

78) MadWuher: Build B2 Caviar

79) mneme: Sacrifice Y1 Artis
Move R3 Friendly Caviar

80) MadWuher: Sacrifice Y3 Madwuher
Move B2 Caviar Bologna
Discover B1 Caviar G2 Edora
Pass

81) mneme: Move B2 Artis Edora

82) MadWuher: Build R1 Bologna

83) mneme: Build R1 Caviar

84) MadWuher: Sacrifice B1 Edora
Trade R1 Y1 Bologna

85) mneme: Build B1 Artis

86) MadWuher: Build G1 Madwuher

87) mneme: Trade B1 R1 Artis

88) MadWuher: Trade G1 Y1 Madwuher

89) mneme: Build R2 Artis

90) MadWuher: Build B1 Bologna

91) mneme: Trade R2 G2 Artis

92) MadWuher: T B1 G1 Bologna

93) mneme: Sacrifice G2 Artis
Build Y1 Mneme
Build B1 Artis

94) MadWuher: B Y2 Madwuher

95) mneme: Sacrifice Y3 Artis
Move R1 Artis Madwuher
Move R1 Caviar Madwuher
Move R3 Caviar Madwuher
Catastrophe Madwuher R

96) MadWuher: Move Y1 Bologna Mneme

97) mneme: Sacrifice Y3 Mneme
Move B1 Artis Madwuher
Move B1 Artis Madwuher
Move B2 Edora Madwuher
Catastrophe Madwuher B

	mneme: *nod*  I'm not even sure you had a sequence that would avoid inevitable doom once I grew the r2--the big turning point was, I think, when I got ahead on larges, and you didn't find a way to capitalize on my limited growth and smaller number of pieces.  Good game!


11244)
Started: 2008.7.8, Ended: 2008.8.26
Participants: MikeYarrum (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 G3 B3



11275)
Variants: "Hard time"
Started: 2008.7.8, Ended: 2008.9.5
Participants: mneme (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) mneme: Homeworld G1 R2 B3

3) TwoShort: Build G1 Twoshort

4) mneme: Build B1 Mneme

5) TwoShort: Build G1 Twoshort

6) mneme: Build B1 Mneme
	TwoShort: I'm quite curious if you have a master plan with the blue-ship opening or if you're just trying to throw me off by being different.

7) TwoShort: Trade G1 Y1 Twoshort
	mneme: TS: me too!  Really, within the GBR range, I think there are valid strategies for G and B.  I'm actually curious for R -- since the color of your lead ship has =more= to do with what you can expand/try to freeze your opponent out of, I could see a game plan -- though of course, for G and B, it's very useful to be able to sac for powers.  I got Andy with the blue freeze engine at Origins, btw.


8) mneme: Trade B3 Y3 Mneme

9) TwoShort: Build G1 Twoshort

10) mneme: Build B1 Mneme

11) TwoShort: Discover G1 Twoshort B2 Bluonia

12) mneme: Discover B1 Mneme G3 Hastor

13) TwoShort: Build G2 Twoshort

14) mneme: Build B2 Hastor

15) TwoShort: Discover G1 Twoshort G2 Greensville

16) mneme: Discover B1 Mneme G3 Chiles

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build Y1 Twoshort
Build G3 Twoshort

18) mneme: Build B2 Chiles

19) TwoShort: Trade G2 R2 Bluonia

20) mneme: Trade B2 R2 Hastor

21) TwoShort: Trade G2 B2 Twoshort

22) mneme: Build B3 Mneme

23) TwoShort: Build G2 Twoshort

24) mneme: Build B3 Hastor

25) TwoShort: Discover B2 Twoshort Y2 Yellonia

26) mneme: Trade B2 Y2 Chiles

27) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G3 Twoshort
Build R1 Bluonia

28) mneme: Trade B3 Y3 Hastor

29) TwoShort: Move Y1 Twoshort Bluonia

30) mneme: Build B2 Chiles

31) TwoShort: Sacrifice G3 Twoshort
Build B3 Yellonia
Build Y1 Bluonia
Build G3 Twoshort

32) mneme: Sacrifice Y2 Chiles
Move B1 Chiles Yellonia
Move B1 Hastor Yellonia
Catastrophe Yellonia B

33) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build Y2 Twoshort
Build G3 Twoshort

34) mneme: Discover B3 Mneme Y3 Yenta

35) TwoShort: Discover R1 Bluonia B3 Bluestar

36) mneme: Move B3 Yenta Bluonia

37) TwoShort: Sacrifice Y1 Bluonia
Discover R2 Bluonia Y3 Yolonda

38) mneme: Sacrifice R2 Hastor
Attack G2 Bluonia
Attack G1 Bluonia

39) TwoShort: Sacrifice G2 Twoshort
Build G2 Greensville
Build R1 Bluestar

40) mneme: Trade B3 R3 Bluonia

41) TwoShort: Sacrifice Y2 Twoshort
Move R1 Bluestar Mneme
Move R1 Bluestar Mneme

42) mneme: Attack Y1 Bluonia

43) TwoShort: Sacrifice G2 Greensville
Build G2 Greensville
Build R2 Mneme
Catastrophe Mneme Red

44) mneme: Build Y1 Bluonia

45) TwoShort: Sacrifice Y2 Twoshort
Move G1 Greensville Mneme
Discover G3 Twoshort Y2 Skinofmyteeth
	TwoShort: I'm about to leave on vacation for two weeks, and I'm not entirely sure how much internet access I'll have. Would you mind if we froze the clock for a bit?
	mneme: It's cool.


46) mneme: Sacrifice Y3 Mneme
Move R3 Bluonia Mneme
Move G2 Bluonia Twoshort
Move B1 Mneme Greensville
	TwoShort: I'm back, but yikes this is thorny.  I've come up with about a dozen moves that look good but when I look closer they all lose.
	TwoShort: Got it.

47) TwoShort: Move G3 Skinofmyteeth Twoshort
	mneme: mn...  Yeah, I think that's it.  :(  

48) mneme: Attack G1 Mneme

49) TwoShort: Attack G2S Twoshort
	mneme: Alas, I think that was the only move that didn't lead to inevitable obvious doom.  Still, might as well play it out.  

50) mneme: Sacrifice Y3 Hastor
Move G1 Mneme Bluonia
Move G1 Bluonia Twoshort
Move G1 Bluonia Twoshort
Catastrophe Twoshort G
	TwoShort: attack g2s twoshort
	TwoShort: oops

51) TwoShort: Sacrifice G2 Greensville
Build Y2 Twoshort
Build R1 Yolonda

52) mneme: Trade B2 Y2 Chiles

53) TwoShort: Trade Y2 G2 Twoshort

54) mneme: Build Y2 Chiles

55) TwoShort: Build Y2 Twoshort

56) mneme: Move Y2 Chiles Greensville

57) TwoShort: Sacrifice Y2 Twoshort
Discover Y1 Twoshort G2 Grogar
Move R2 Yolonda Greensville

58) mneme: Sacrifice Y2 Chiles
Move Y2 Greensville Mneme
Move B1 Greensville Mneme

59) TwoShort: Build Y2 Grogar

60) mneme: Build Y2 Mneme

61) TwoShort: Sacrifice Y1 Grogar
Move R2 Greensville Twoshort

62) mneme: Trade Y2 R2 Mneme

63) TwoShort: Build G1 Twoshort

64) mneme: Trade R3 Y3 Mneme

65) TwoShort: Move Y2 Grogar Twoshort

66) mneme: Trade Y1 G1 Bluonia

67) TwoShort: Discover G2 Twoshort Y2 Yak

68) mneme: Build G2 Bluonia

69) TwoShort: Build G2 Yak

70) mneme: Trade G1 Y1 Bluonia

71) TwoShort: Sacrifice Y2 Twoshort
Move G1 Twoshort Yak
Move G1 Yak Mneme
	mneme: you know, somewhere in here, I"m either going to win or make a horrible mistake.

72) mneme: Attack G1 Mneme
	TwoShort: I expect one of us will win brilliantly or mess up horribly very soon.  But I've been expecting that for a couple dozen moves now :)

73) TwoShort: Move G2 Yak Mneme



11287)
Started: 2008.7.11, Ended: 2008.7.11
Participants: smartmo (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld Y1 B3 G3
	smartmo: pass
	smartmo: I have no idea what I am supposed to do now kevin !?? :D
	MadWuher: First step: Make a homeworld.
The command for creating one is at the top of this page. type "homeworld star1 star2 ship" where you replace ship and each star# with a color and size (ie R2 or Y3). I'll set mine up to show you. 

2) smartmo: Homeworld B1 Y2 G3
	MadWuher: I typed in "homeworld y1 b3 g3" to make my system. Its just like the game we played in the lab, only a play by post game, so it may take a bit longer for it to play out.

3) MadWuher: Build G1 Madwuher

4) smartmo: Build G1 Smartmo
	MadWuher: Now, you will want to start building ships and discovering new systems. Your I typed in "build g1 MadWuher" to build a green 1-pip in my system.

5) MadWuher: Trade G1 R1 Madwuher

6) smartmo: Build G1 Smartmo
	smartmo: Please check your sfu email kevin !!! :) 

7) MadWuher: Build G1 Madwuher

8) smartmo: Build G2 Smartmo

9) MadWuher: Pass
Catastrophe Smartmo G



11300)
Started: 2008.7.12, Ended: 2008.7.31
Participants: MadWuher (S), smartmo (N)
Winner: MadWuher

1) smartmo: Homeworld B3 Y2 G3

2) MadWuher: Homeworld R1 B3 G3
	smartmo: Last game was so funny ... lool ... I wanted to take easy on you (you knew it riiight !??) looolll
I remember you said the system gives us a hint if something like that is possible to happen !!!

3) smartmo: Build G1 Smartmo
	MadWuher: Take a look at the wiki link and/or the rules link at the top of this game. Some hints are given by the system, but not all. =)

4) MadWuher: Build G1 Madwuher

5) smartmo: Trade G1 Y1 Smartmo

6) MadWuher: Trade G1 Y1 Madwuher

7) smartmo: Build G1 Smartmo

8) MadWuher: Build G1 Madwuher

9) smartmo: Discover G1 Smartmo G1 Matrix

10) MadWuher: Build G2 Madwuher

11) smartmo: Build G2 Smartmo

12) MadWuher: Discover G2 Madwuher B2 Edora

13) smartmo: Sacrifice G3 Smartmo
Build G2 Smartmo
Build G3 Smartmo
Build Y1 Smartmo

14) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build G3 Edora
Build Y2 Madwuher

15) smartmo: Discover G2 Smartmo R1 Eigenspace

16) MadWuher: Build Y2 Madwuher

17) smartmo: Sacrifice G2 Smartmo
Build G2 Smartmo
Build Y3 Smartmo

18) MadWuher: Move Y2 Madwuher Edora
Catastrophe Smartmo Y

19) smartmo: Trade G2 Y2 Smartmo

20) MadWuher: Trade G1 R1 Madwuher

21) smartmo: Sacrifice G1 Matrix
Build Y1 Smartmo

22) MadWuher: Sacrifice Y2 Edora
Move G3 Edora Eigenspace
Move G3 Eigenspace Smartmo

23) smartmo: Trade Y2 R2 Smartmo

24) MadWuher: Sacrifice R1 Madwuher
Attack R2 Smartmo

25) smartmo: Sacrifice G3 Smartmo
Build Y1 Smartmo
Build Y2 Smartmo
Build Y2 Smartmo
	smartmo: with a green ship are u able to attack my red ship !??

26) MadWuher: Build R1 Smartmo
Catastrophe Smartmo Y
	MadWuher: In a manner of speaking..... yes



11307)
Started: 2008.7.13, Ended: 2008.10.3
Participants: smartmo (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld Y1 B3 G3

2) smartmo: Homeworld R3 B2 G3

3) MadWuher: Build G1 Madwuher

4) smartmo: Build G1 Smartmo

5) MadWuher: Discover G1 Madwuher B2 Edora

6) smartmo: Trade G1 Y1 Smartmo

7) MadWuher: Build G1 Madwuher

8) smartmo: Build G1 Smartmo

9) MadWuher: Build G2 Edora

10) smartmo: Discover G1 Smartmo B1 Alpha

11) MadWuher: Trade G2 Y2 Edora

12) smartmo: Build G2 Smartmo

13) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G2 Edora
Build G3 Madwuher

14) smartmo: Sacrifice G3 Smartmo
Build G3 Smartmo
Build Y1 Smartmo
Build Y2 Smartmo

15) MadWuher: Sacrifice G1 Madwuher
Build Y2 Edora

16) smartmo: Move Y1 Smartmo Alpha

17) MadWuher: Trade G2 R2 Madwuher

18) smartmo: Build Y3 Alpha

19) MadWuher: Discover Y2 Edora B1 Bologna

	MadWuher: Mo???


11309)
Variants: "No undo, Unrated"
Started: 2008.7.14, Ended: 2008.7.30
Participants: MadWuher (S), smartmo (N)
Winner: MadWuher

1) smartmo: Homeworld G3 Y3 G3 *

2) MadWuher: Homeworld R1 B3 G3

3) smartmo: Build G1 Smartmo

4) MadWuher: Build G1 Madwuher

5) smartmo: Discover G1 Smartmo Y2 Delta

6) MadWuher: Trade G1 Y1 Madwuher

7) smartmo: Build G1 Smartmo

8) MadWuher: Build G1 Madwuher

9) smartmo: Build G2 Delta

10) MadWuher: Build G2 Madwuher

11) smartmo: Move G1 Delta Madwuher
Catastrophe Madwuher G

12) MadWuher: Trade Y1 G1 Madwuher

13) smartmo: Discover G1 Smartmo B1 Gamma

14) MadWuher: Build G1 Madwuher



11310)
Variants: "No undo, Unrated"
Started: 2008.7.14, Ended: 2008.10.3
Participants: smartmo (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld Y2 B3 G3

2) smartmo: Homeworld G3 Y1 B3

3) MadWuher: Build G1 Madwuher

4) smartmo: Build B1 Smartmo

5) MadWuher: Build G1 Madwuher

6) smartmo: Build B1 Smartmo

7) MadWuher: Discover G1 Madwuher B1 Bluetopia

8) smartmo: Trade B1 Y1 Smartmo

9) MadWuher: Build G1 Madwuher

10) smartmo: Build B1 Smartmo

11) MadWuher: Build G2 Bluetopia

12) smartmo: Trade B3 G3 Smartmo

13) MadWuher: Build G2 Bluetopia

14) smartmo: Build B2 Smartmo

15) MadWuher: Trade G2 Y2 Bluetopia

16) smartmo: Discover B1 Smartmo B2 Alpha

17) MadWuher: Trade G2 B2 Bluetopia



11318)
Started: 2008.7.15, Ended: 2008.8.17
Participants: MatrixFrog (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B3 G3

2) MatrixFrog: Homeworld B2 Y1 G3

3) MadWuher: Build G1 Madwuher

4) MatrixFrog: Build G1 Matrixfrog

5) MadWuher: Trade G3 Y3 Madwuher

6) MatrixFrog: Trade G1 B1 Matrixfrog

7) MadWuher: Build G1 Madwuher

8) MatrixFrog: Build G1 Matrixfrog

9) MadWuher: Discover G1 Madwuher B2 Edora

10) MatrixFrog: Build B1 Matrixfrog

11) MadWuher: Build G2 Madwuher

12) MatrixFrog: Trade G1 Y1 Matrixfrog

13) MadWuher: Discover G1 Madwuher Y2 Bologna

14) MatrixFrog: Build G1 Matrixfrog

15) MadWuher: Build G2 Edora

16) MatrixFrog: Trade B1 R1 Matrixfrog

17) MadWuher: Trade G2 R2 Edora

18) MatrixFrog: Discover G1 Matrixfrog Y3 Beep

19) MadWuher: Build G2 Edora

20) MatrixFrog: Discover G1 Beep B2 Beeep

21) MadWuher: Trade G2 Y2 Edora

22) MatrixFrog: Build G2 Matrixfrog

23) MadWuher: Discover G1 Bologna Y3 Caviar

24) MatrixFrog: Build G2 Beeep

25) MadWuher: Build G3 Caviar

26) MatrixFrog: Sacrifice G2 Matrixfrog
Build R1 Matrixfrog
Build B1 Matrixfrog

27) MadWuher: Sacrifice G3 Caviar
Build G2 Madwuher
Build G3 Edora
Build G3 Caviar

28) MatrixFrog: Trade G1 Y1 Beeep

29) MadWuher: Trade G1 B1 Edora

30) MatrixFrog: Discover B1 Matrixfrog Y3 Boop

31) MadWuher: Move B1 Edora Caviar

32) MatrixFrog: Build G1 Beeep

33) MadWuher: Sacrifice G3 Caviar
Build B3 Caviar
Build Y2 Edora
Build Y2 Madwuher

34) MatrixFrog: Move G1 Beeep Madwuher

35) MadWuher: Sacrifice B1 Caviar
Trade G2 R2 Madwuher

36) MatrixFrog: Sacrifice G2 Beeep
Build G1 Madwuher
Build G2 Madwuher
Catastrophe Madwuher G

37) MadWuher: Trade Y2 G2 Madwuher

38) MatrixFrog: Build G1 Matrixfrog

39) MadWuher: Build Y2 Madwuher

40) MatrixFrog: Move G1 Matrixfrog Boop

41) MadWuher: Sacrifice G2 Madwuher
Build B1 Caviar
Build B3 Caviar

42) MatrixFrog: Move B1 Matrixfrog Caviar
Catastrophe Caviar B

43) MadWuher: Build R2 Edora

44) MatrixFrog: Move R1 Matrixfrog Caviar

45) MadWuher: Sacrifice R2 Edora
Attack R1 Caviar
Pass

46) MatrixFrog: Build G1 Matrixfrog

47) MadWuher: Build G2 Caviar

48) MatrixFrog: Sacrifice G3 Matrixfrog
Build G2 Boop
Build B1 Boop
Build R2 Matrixfrog

49) MadWuher: Sacrifice G3 Edora
Build R3 Edora
Build R3 Caviar
Build R3 Madwuher

50) MatrixFrog: Move Y1 Beeep Madwuher

51) MadWuher: Attack Y1 Madwuher

52) MatrixFrog: Sacrifice R1 Matrixfrog
Pass

53) MadWuher: Move R3 Caviar Matrixfrog



11294)
Started: 2008.7.15, Ended: 2008.7.17
Participants: MadWuher (S), DJAnyReason (N)
Winner: MadWuher

1) DJAnyReason: Homeworld R2 B1 G3

2) MadWuher: Homeworld B1 G3 B3 *

3) DJAnyReason: Build G1 Djanyreason
	MadWuher: heya.....

4) MadWuher: Build B1 Madwuher

5) DJAnyReason: Trade G3 Y3 Djanyreason

6) MadWuher: Trade B3 Y3 Madwuher

7) DJAnyReason: Build G1 Djanyreason

8) MadWuher: Build B2 Madwuher

9) DJAnyReason: Discover G1 Djanyreason Y3 N1

10) MadWuher: Discover B2 Madwuher Y2 Edora

11) DJAnyReason: Build G1 Djanyreason

12) MadWuher: Trade B2 G2 Edora

13) DJAnyReason: Discover G1 Djanyreason B3 N2

14) MadWuher: Build B2 Madwuher

15) DJAnyReason: Build G2 Djanyreason

16) MadWuher: Move B2 Madwuher Edora

17) DJAnyReason: Discover G1 Djanyreason R3 N3

18) MadWuher: Move B2 Edora N3

19) DJAnyReason: Trade Y3 G3 Djanyreason

20) MadWuher: Attack G1 N3

21) DJAnyReason: Sacrifice G3 Djanyreason
Build G2 N1
Build G3 N2
Build G3 Djanyreason

22) MadWuher: Sacrifice G2 Edora
Build G2 N3
Build Y1 Madwuher

23) DJAnyReason: Trade G2 B2 Djanyreason

24) MadWuher: Build B2 N3

25) DJAnyReason: Sacrifice B2 Djanyreason
Trade G1 R1 N1
Trade G3 Y3 N2

26) MadWuher: Build B2 Madwuher

27) DJAnyReason: Discover R1 N1 G1 N4

28) MadWuher: Build B3 N3

29) DJAnyReason: Sacrifice G2 N1
Build R1 N4
Build R1 N4

30) MadWuher: Sacrifice Y3 Madwuher
Move B3 N3 Djanyreason
Move B2 N3 Djanyreason
Move G2 N3 Djanyreason

31) DJAnyReason: Attack B3S Djanyreason

32) MadWuher: Build G2 Djanyreason

33) DJAnyReason: Sacrifice B3 Djanyreason
Trade G3 Y3 Djanyreason
Trade Y3 R3 N2
Pass

34) MadWuher: Sacrifice G2 Djanyreason
Build G2 Djanyreason
Build B3 Djanyreason

35) DJAnyReason: Sacrifice R3 N2
Attack B3S Djanyreason
Attack G2S Djanyreason
Attack G2S Djanyreason

36) MadWuher: Sacrifice G1 N3
Build B3 Djanyreason
Catastrophe Djanyreason B

37) DJAnyReason: Trade G1 B1 N2

38) MadWuher: Trade B2 R2 Madwuher

39) DJAnyReason: Sacrifice Y3 Djanyreason
Move R1 N4 N2
Move R1 N4 Djanyreason
Move B1 N2 Djanyreason

40) MadWuher: Build Y1 Madwuher

41) DJAnyReason: Trade R1 Y1 Djanyreason

42) MadWuher: Build Y2 Madwuher

43) DJAnyReason: Move Y1 Djanyreason Madwuher
Catastrophe Madwuher Yellow

44) MadWuher: Build B2 Madwuher

45) DJAnyReason: Sacrifice G2 Djanyreason
Build B2 Djanyreason
Build B3 Djanyreason

46) MadWuher: Trade B2 Y2 Madwuher
	MadWuher: Wow.... Stupid move by me. I wish there was a way to see the result before you commit it. Grrrrr.

47) DJAnyReason: Sacrifice B1 Djanyreason
Trade B3 Y3 Djanyreason

48) MadWuher: Build Y1 Madwuher

49) DJAnyReason: Build Y1 Djanyreason

50) MadWuher: Trade B2 R2 N3

51) DJAnyReason: Sacrifice G2 Djanyreason
Build R1 N2
Build R3 N2

52) MadWuher: Build R3 Madwuher

53) DJAnyReason: Move Y3 Djanyreason Madwuher

54) MadWuher: Attack Y3 Madwuher

55) DJAnyReason: Move Y1 Djanyreason Madwuher
Catastrophe Madwuher Yellow

56) MadWuher: Trade B1 Y1 Madwuher

57) DJAnyReason: Trade R3 Y3 N2

58) MadWuher: Move R3 Madwuher Djanyreason

59) DJAnyReason: Move Y3 N2 Djanyreason

60) MadWuher: Sacrifice R2 Madwuher
Attack Y3 Djanyreason
Attack B2 Djanyreason



11320)
Started: 2008.7.15, Ended: 2008.7.16
Participants: DJAnyReason (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3
	MadWuher: Hello..

2) DJAnyReason: Homeworld G3 B2 Y3

3) MadWuher: Build G1 Madwuher

4) DJAnyReason: Build Y1 Djanyreason

5) MadWuher: Trade G1 Y1 Madwuher

6) DJAnyReason: Trade Y1 R1 Djanyreason

7) MadWuher: Build G1 Madwuher

8) DJAnyReason: Build R1 Djanyreason

9) MadWuher: Discover G1 Madwuher Y3 Edora

10) DJAnyReason: Build R2 Djanyreason

11) MadWuher: Build G1 Madwuher

12) DJAnyReason: Discover R2 Djanyreason G1 S1

13) MadWuher: Build G2 Madwuher

14) DJAnyReason: Trade R1 B1 Djanyreason

15) MadWuher: Trade G2 R2 Madwuher

16) DJAnyReason: Move B1 Djanyreason S1

17) MadWuher: Build G2 Edora

18) DJAnyReason: Trade B1 Y1 S1

19) MadWuher: Discover G1 Edora B1 Bologna

20) DJAnyReason: Move R2 S1 Edora

21) MadWuher: Sacrifice R2 Madwuher
Attack R2 Edora
Pass

22) DJAnyReason: Move Y1 S1 Djanyreason

23) MadWuher: Build G1 Bologna



11321)
Started: 2008.7.15, Ended: 2008.7.17
Participants: DJAnyReason (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld B2 Y3 G3
	MadWuher: Howdy...

2) DJAnyReason: Homeworld R3 G1 B3

3) MadWuher: Build G1 Madwuher

4) DJAnyReason: Build B1 Djanyreason

5) MadWuher: Build G1 Madwuher

6) DJAnyReason: Trade B3 G3 Djanyreason

7) MadWuher: Discover G1 Madwuher Y1 Edora

8) DJAnyReason: Build G2 Djanyreason

9) MadWuher: Sacrifice G3 Madwuher
Build G2 Edora
Build G2 Madwuher
Build G3 Madwuher

10) DJAnyReason: Trade G2 Y2 Djanyreason

11) MadWuher: Trade G2 B2 Madwuher

12) DJAnyReason: Build B1 Djanyreason

13) MadWuher: Move B2 Madwuher Edora

14) DJAnyReason: Trade B1 R1 Djanyreason

15) MadWuher: Discover G2 Edora B2 Bologna

16) DJAnyReason: Discover R1 Djanyreason Y2 S1

17) MadWuher: Sacrifice G3 Madwuher
Build G2 Edora
Build G2 Bologna
Build G3 Madwuher

18) DJAnyReason: Build G3 Djanyreason

19) MadWuher: Sacrifice B2 Edora
Trade G2 Y2 Bologna
Trade G2 R2 Edora

20) DJAnyReason: Trade G3 B3 Djanyreason

21) MadWuher: Sacrifice G3 Madwuher
Build G2 Edora
Build G2 Bologna
Build G3 Madwuher

22) DJAnyReason: Sacrifice Y2 Djanyreason
Move G3 Djanyreason Bologna
Move G3 Bologna Edora

23) MadWuher: Sacrifice G2 Bologna
Build G2 Edora
Build G3 Bologna
Catastrophe Edora G

24) DJAnyReason: Move R1 S1 Djanyreason

25) MadWuher: Sacrifice G2 Bologna
Build G1 Bologna
Build G2 Bologna

26) DJAnyReason: Trade B3 Y3 Djanyreason

27) MadWuher: Sacrifice G2 Bologna
Build G2 Bologna
Build R1 Edora

28) DJAnyReason: Build B1 Djanyreason

29) MadWuher: Move G1 Bologna Djanyreason

30) DJAnyReason: Attack G1N Djanyreason

31) MadWuher: Sacrifice Y2 Bologna
Move G3 Bologna Djanyreason
Move G2 Bologna Djanyreason
Catastrophe Djanyreason G

32) DJAnyReason: Trade B1 G1 Djanyreason

33) MadWuher: Trade G3 Y3 Madwuher

34) DJAnyReason: Trade R1 B1 Djanyreason

35) MadWuher: Build G1 Madwuher

36) DJAnyReason: Build G2 Djanyreason

37) MadWuher: Sacrifice G1 Madwuher
Build R1 Edora



11308)
Started: 2008.7.16, Ended: 2008.7.20
Participants: smartmo (S), MikeYarrum (N)
Winner: smartmo

	smartmo: yooohooo I won !!!! lool


11324)
Started: 2008.7.16, Ended: 2009.12.9
Participants: DJAnyReason (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) DJAnyReason: Homeworld B3 G2 Y3

3) Danner: Build G1 Danner

4) DJAnyReason: Build Y1 Djanyreason

5) Danner: Trade G1 R1 Danner

6) DJAnyReason: Trade Y3 R3 Djanyreason

7) Danner: Build G1 Danner

8) DJAnyReason: Build Y1 Djanyreason

9) Danner: Trade G1 Y1 Danner

10) DJAnyReason: Build Y2 Djanyreason

11) Danner: Build Y2 Danner

12) DJAnyReason: Trade Y2 G2 Djanyreason

13) Danner: Build Y2 Danner

14) DJAnyReason: Discover Y1 Djanyreason G1 S1

15) Danner: Trade Y1 B1 Danner

16) DJAnyReason: Build G1 Djanyreason

17) Danner: Build G1 Danner

18) DJAnyReason: Trade G1 B1 Djanyreason

19) Danner: Discover Y2 Danner G3 Earth

20) DJAnyReason: Trade R3 G3 Djanyreason

21) Danner: Discover G1 Danner Y3 Sun

22) DJAnyReason: Trade G2 R2 Djanyreason

23) Danner: Build G1 Danner

24) DJAnyReason: Build G2 Djanyreason

25) Danner: Sacrifice Y2 Earth
Move G1 Sun S1
Move G1 S1 Djanyreason
Catastrophe Djanyreason G

	Danner: Hey! You regularry log in and make moves in other games! Make your move in this game too, I have been waiting enough
	Danner: Okay, you used to log in and make moves in other games.
	Danner: [checking time zone]


11327)
Started: 2008.7.16, Ended: 2008.7.21
Participants: DJAnyReason (S), MikeYarrum (N)
Winner: DJAnyReason



11322)
Started: 2008.7.17, Ended: 2008.7.24
Participants: DJAnyReason (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B3 G3

2) DJAnyReason: Homeworld B1 R2 G3

3) MadWuher: Build G1 Madwuher

4) DJAnyReason: Build G1 Djanyreason

5) MadWuher: Trade G1 Y1 Madwuher

6) DJAnyReason: Trade G1 Y1 Djanyreason

7) MadWuher: Build G1 Madwuher

8) DJAnyReason: Build G1 Djanyreason

9) MadWuher: Trade G1 B1 Madwuher

10) DJAnyReason: Trade Y1 R1 Djanyreason

11) MadWuher: Build B1 Madwuher

12) DJAnyReason: Trade G1 Y1 Djanyreason
	DJAnyReason: uhh... can't undo that undo, huh?

13) MadWuher: Discover B1 Madwuher G2 Edora

14) DJAnyReason: Build R1 Djanyreason

15) MadWuher: Build B2 Edora

16) DJAnyReason: Discover R1 Djanyreason B3 S1

17) MadWuher: Trade B2 R2 Edora

18) DJAnyReason: Build G1 Djanyreason

19) MadWuher: Build B2 Edora

20) DJAnyReason: Move G1 Djanyreason S1

21) MadWuher: Trade B2 Y2 Edora

22) DJAnyReason: Build G1 Djanyreason

23) MadWuher: Build B2 Madwuher

24) DJAnyReason: Build R2 S1

25) MadWuher: Build R3 Edora

26) DJAnyReason: Discover R1 Djanyreason G3 S2

27) MadWuher: Trade R2 Y2 Edora

28) DJAnyReason: Trade R2 B2 S1

29) MadWuher: Discover Y2 Edora B3 Bologna

30) DJAnyReason: Trade G1 Y1 S1

31) MadWuher: Sacrifice G3 Madwuher
Build Y2 Edora
Build Y3 Bologna
Build Y3 Madwuher

32) DJAnyReason: Build Y3 Djanyreason

33) MadWuher: Sacrifice B1 Madwuher
Trade B2 G2 Madwuher

34) DJAnyReason: Trade G1 B1 Djanyreason

35) MadWuher: Build B2 Edora

36) DJAnyReason: Sacrifice Y1 S1
Discover B2 S1 B2 S3

37) MadWuher: Sacrifice Y2 Edora
Move Y3 Bologna Djanyreason
Move B2 Edora Bologna

38) DJAnyReason: Attack Y3N Djanyreason

39) MadWuher: Move Y2 Bologna Djanyreason
Catastrophe Djanyreason Y

40) DJAnyReason: Trade R1 G1 S1

41) MadWuher: Move R3 Edora S1

42) DJAnyReason: Build G1 S1

43) MadWuher: Attack G1 S1

44) DJAnyReason: Build G1 S1

45) MadWuher: Move B1 Edora S1

46) DJAnyReason: Build G2 Djanyreason

47) MadWuher: Build G3 Madwuher

48) DJAnyReason: Trade B2 Y2 S3

49) MadWuher: Sacrifice Y2 Edora
Move B2 Bologna Djanyreason
Move B1 S1 Djanyreason
Catastrophe Djanyreason B

50) DJAnyReason: Sacrifice Y2 S3
Move G2 Djanyreason Madwuher
Discover G1 S1 Y2 S4

51) MadWuher: Sacrifice Y3 Madwuher
Move G3 Madwuher Djanyreason
Move G1 S1 Djanyreason
Move G2 Madwuher Djanyreason
Catastrophe Djanyreason G



11336)
Started: 2008.7.17, Ended: 2008.7.21
Participants: MikeYarrum (S), DJAnyReason (N)
Winner: DJAnyReason

1) DJAnyReason: Homeworld R1 B2 G3



11343)
Started: 2008.7.18, Ended: 2008.8.4
Participants: patwillis (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) patwillis: Homeworld Y1 B3 G3

3) Danner: Build G1 Danner

4) patwillis: Build G1 Patwillis

5) Danner: Trade G1 Y1 Danner

6) patwillis: Trade G1 Y1 Patwillis

7) Danner: Build Y2 Danner

8) patwillis: Build Y2 Patwillis

9) Danner: Discover Y1 Danner G3 Earth

10) patwillis: Discover Y1 Patwillis G2 Greenland

11) Danner: Build Y2 Earth

12) patwillis: Build Y3 Greenland

13) Danner: Build Y3 Danner

14) patwillis: Discover Y3 Greenland G1 Littlegreenland

15) Danner: Move Y1 Earth Greenland

16) patwillis: Build Y3 Greenland

17) Danner: Move Y2 Earth Greenland
Catastrophe Greenland Y

18) patwillis: Build G1 Patwillis

19) Danner: Discover Y2 Danner G3 Earth

20) patwillis: Discover G1 Patwillis Y2 Yellonia

21) Danner: Sacrifice G3 Danner
Build Y1 Earth
Build Y1 Earth
Build Y3 Danner

22) patwillis: Build G1 Patwillis

23) Danner: Trade Y3 G3 Danner

24) patwillis: Trade Y2 R2 Patwillis

25) Danner: Build G2 Danner

26) patwillis: Discover G1 Yellonia Y3 Sun

27) Danner: Move Y1 Earth Littlegreenland

28) patwillis: Discover Y3 Littlegreenland R3 Mars

29) Danner: Build Y2 Littlegreenland

30) patwillis: Sacrifice G3 Patwillis
Build G2 Patwillis
Build G2 Patwillis
Build G3 Sun

31) Danner: Build Y2 Danner

32) patwillis: Move G1 Sun Danner

33) Danner: Move G3 Danner Sun

34) patwillis: Sacrifice R2 Patwillis
Attack G3 Sun
Pass

35) Danner: Sacrifice Y3 Danner
Move G2 Danner Sun
Discover G2 Sun R2 Temporal
Move G2 Temporal Patwillis
Catastrophe Patwillis G

	Danner: Thx the game.


11347)
Started: 2008.7.18, Ended: 2008.7.27
Participants: MadWuher (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) MadWuher: Homeworld Y1 B3 G3

3) Danner: Build G1 Danner

4) MadWuher: Build G1 Madwuher

5) Danner: Trade G1 Y1 Danner

6) MadWuher: Discover G1 Madwuher B2 Abydos

7) Danner: Build Y1 Danner

8) MadWuher: Build G1 Madwuher

9) Danner: Build Y2 Danner

10) MadWuher: Build G1 Abydos

11) Danner: Discover Y1 Danner G3 Earth

12) MadWuher: Build G2 Abydos

13) Danner: Sacrifice G3 Danner
Build Y2 Earth
Build Y2 Earth
Build Y3 Danner

14) MadWuher: Discover G1 Madwuher B2 Chulak

15) Danner: Trade Y3 G3 Danner

16) MadWuher: Trade G2 R2 Abydos

17) Danner: Discover Y1 Danner B3 Atlantis

18) MadWuher: Trade G3 Y3 Madwuher

19) Danner: Build Y3 Danner
	MadWuher: It's amazing how little I actually think of strategy when I play. I have been totally screwing up the idea of locking someone out of a colour.

20) MadWuher: Build G2 Chulak

21) Danner: Build Y3 Danner

22) MadWuher: Trade Y3 G3 Madwuher

23) Danner: Discover Y3 Danner R3 P3r-118

24) MadWuher: Build G2 Madwuher

25) Danner: Build G2 Danner

26) MadWuher: Trade G3 Y3 Madwuher

27) Danner: Build G3 Danner

28) MadWuher: Sacrifice Y3 Madwuher
Move G1 Abydos Atlantis
Move R2 Abydos Earth
Move G1 Atlantis Danner
Catastrophe Danner G

29) Danner: Sacrifice Y2 Earth
Move Y3 P3r-118 Abydos
Move Y3 Abydos Madwuher

30) MadWuher: Build G1 Abydos

31) Danner: Trade Y3 R3 Danner

32) MadWuher: Sacrifice G2 Chulak
Build G2 Madwuher
Build G2 Madwuher

33) Danner: Trade Y3 G3 Madwuher
Catastrophe Madwuher G
	Danner: Thx the game.



11329)
Started: 2008.7.18, Ended: 2008.7.24
Participants: DJAnyReason (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld Y2 B3 G3

2) DJAnyReason: Homeworld B1 R3 G3

3) MadWuher: Build G1 Madwuher

4) DJAnyReason: Build G1 Djanyreason

5) MadWuher: Discover G1 Madwuher B1 Edora

6) DJAnyReason: Trade G1 Y1 Djanyreason

7) MadWuher: Build G1 Madwuher

8) DJAnyReason: Build Y1 Djanyreason

9) MadWuher: Trade G1 Y1 Edora

10) DJAnyReason: Trade Y1 B1 Djanyreason

11) MadWuher: Build G1 Madwuher

12) DJAnyReason: Build G1 Djanyreason

13) MadWuher: Move G1 Madwuher Edora

14) DJAnyReason: Trade G1 R1 Djanyreason

15) MadWuher: Trade G1 R1 Madwuher

16) DJAnyReason: Build B2 Djanyreason

17) MadWuher: Build G1 Madwuher

18) DJAnyReason: Discover B2 Djanyreason Y2 S1

19) MadWuher: Build G1 Edora

20) DJAnyReason: Build G2 Djanyreason

21) MadWuher: Discover G1 Edora B2 Bologna

22) DJAnyReason: Sacrifice G3 Djanyreason
Build B2 S1
Build B3 S1
Build B3 Djanyreason

23) MadWuher: Sacrifice G3 Madwuher
Build G2 Bologna
Build G2 Edora
Build G3 Madwuher

24) DJAnyReason: Build G3 Djanyreason
	MadWuher: Excellent use of sacrificing in the past few games we've played. I'm learning a lot about it from you.
	DJAnyReason: Seriously? Learning? You've been kicking my ass with it! ;)

25) MadWuher: Build G3 Edora

26) DJAnyReason: Move G3 Djanyreason S1

27) MadWuher: Trade G2 Y2 Edora

28) DJAnyReason: Trade R1 Y1 Djanyreason

29) MadWuher: Move Y1 Edora S1

30) DJAnyReason: Discover G3 S1 R3 S2

31) MadWuher: Sacrifice G3 Edora
Build Y3 Edora
Build Y3 S1
Build Y3 S1
Catastrophe S1 Y

32) DJAnyReason: Discover B1 Djanyreason G2 S3

33) MadWuher: Build G3 Edora

34) DJAnyReason: Sacrifice G3 S2
Build B2 S3
Build B2 S3
Build G3 Djanyreason

35) MadWuher: Move Y3 Edora Bologna

36) DJAnyReason: Build B3 Djanyreason

37) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R1 Madwuher
Build R1 Madwuher

38) DJAnyReason: Discover G3 Djanyreason R2 S4

39) MadWuher: Move R1 Madwuher Edora

40) DJAnyReason: Trade B3 R3 Djanyreason

41) MadWuher: Sacrifice G3 Edora
Build G3 Edora
Build Y1 Bologna
Build R2 Edora

42) DJAnyReason: Sacrifice Y1 Djanyreason
Move Y1 Djanyreason S4

43) MadWuher: Move R1 Edora Bologna

44) DJAnyReason: Build B3 Djanyreason

45) MadWuher: Sacrifice G3 Madwuher
Build R2 Bologna
Build R3 Edora
Build G3 Madwuher

46) DJAnyReason: Trade B3 Y3 Djanyreason

47) MadWuher: Sacrifice Y2 Edora
Move R1 Bologna Djanyreason
Move R2 Bologna Djanyreason
Catastrophe Djanyreason R

48) DJAnyReason: Sacrifice Y3 Djanyreason
Move B2 S3 Edora
Move B2 S3 Edora
Move B1 S3 Edora
Catastrophe Edora B

49) MadWuher: Move Y3 Bologna Djanyreason

50) DJAnyReason: Move Y1 S4 Djanyreason

51) MadWuher: Sacrifice R1 Madwuher
Attack B3 Djanyreason

52) DJAnyReason: Sacrifice G3 S4
Build Y1 Djanyreason
Build Y2 Djanyreason
Build G1 Djanyreason
Catastrophe Djanyreason Y

53) MadWuher: Sacrifice G2 Bologna
Build B1 Djanyreason
Build B1 Djanyreason
Catastrophe Djanyreason B



11352)
Started: 2008.7.19, Ended: 2009.12.9
Participants: bang (S), surfball1028 (N)
Winner: surfball1028

1) surfball1028: Homeworld G3 B2 Y3

2) bang: Homeworld G1 Y2 B3
	surfball1028: MOVE!!
haha 
dan u r slow!

3) surfball1028: Build Y1 Surfball1028

4) bang: Build B1 Bang

5) surfball1028: Build Y1 Surfball1028

6) bang: Trade B1 Y1 Bang

7) surfball1028: Discover Y1 Surfball1028 B1 Playalinda

8) bang: Build Y2 Bang

9) surfball1028: Trade Y1 G1 Playalinda

10) bang: Trade Y1 G1 Bang

11) surfball1028: Build G2 Playalinda

12) bang: Build G2 Bang

13) surfball1028: Trade G2 R2 Playalinda

14) bang: Trade G1 R1 Bang

15) surfball1028: Build Y1 Surfball1028

16) bang: Discover G2 Bang B3 Boom

17) surfball1028: Move Y1 Surfball1028 Playalinda

18) bang: Build R1 Bang

19) surfball1028: Build Y1 Playalinda

20) bang: Discover R1 Bang Y3 Bing

21) surfball1028: Trade Y1 B1 Surfball1028

22) bang: Discover Y2 Bang G3 Bump

23) surfball1028: Build G1 Playalinda

24) bang: Build G2 Boom

25) surfball1028: Move G1 Playalinda Boom

26) bang: Trade G2 R2 Boom

27) surfball1028: Build G2 Playalinda

28) bang: Attack G1 Boom

29) surfball1028: Discover G1 Playalinda Y3 Cocobeach

30) bang: Sacrifice Y2 Bump
Move G1 Boom Playalinda
Move G1 Playalinda Surfball1028

31) surfball1028: Trade B1 R1 Surfball1028

32) bang: Sacrifice R1 Bing
Attack R1 Surfball1028

33) surfball1028: Build R1 Playalinda

34) bang: Build G2 Boom

35) surfball1028: Sacrifice R2 Playalinda
Attack R1 Surfball1028
Attack G1 Surfball1028

36) bang: Trade G2 Y2 Boom

37) surfball1028: Build G2 Cocobeach

38) bang: Build G3 Boom

39) surfball1028: Build G3 Playalinda

40) bang: Build R2 Bang

41) surfball1028: Trade Y1 B1 Playalinda

42) bang: Move B3 Bang Cocobeach

43) surfball1028: Discover G2 Cocobeach B1 Jfkspacecenter

44) bang: Sacrifice R1 Bang
Attack G1 Cocobeach

45) surfball1028: Trade G2 Y2 Jfkspacecenter

46) bang: Move B3 Cocobeach Bang

47) surfball1028: Move G1 Surfball1028 Jfkspacecenter

48) bang: Discover R2 Boom Y1 Base

49) surfball1028: Build G2 Jfkspacecenter

50) bang: Trade G3 R3 Boom

51) surfball1028: Trade G2 B2 Jfkspacecenter

52) bang: Move R3 Boom Jfkspacecenter

53) surfball1028: Sacrifice Y2 Jfkspacecenter
Move B2 Jfkspacecenter Surfball1028
Move G1 Jfkspacecenter Cocobeach

54) bang: Build R1 Bang

55) surfball1028: Sacrifice G2 Playalinda
Build R2 Surfball1028
Build R3 Playalinda

56) bang: Sacrifice Y2 Boom
Move R3 Jfkspacecenter Cocobeach
Move R1 Bang Cocobeach

57) surfball1028: Move R3 Playalinda Boom



11341)
Started: 2008.7.20, Ended: 2008.7.20
Participants: w00t (S), MadWuher (N)
Winner: MadWuher



11342)
Started: 2008.7.20, Ended: 2009.12.9
Participants: w00t (S), MikeYarrum (N)
Winner: MikeYarrum



11353)
Started: 2008.7.20, Ended: 2008.10.3
Participants: w00t (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B3 G3

2) w00t: Homeworld G3 B2 Y3

3) MadWuher: Build G1 Madwuher

4) w00t: Build Y1 W00t

5) MadWuher: Trade G1 Y1 Madwuher

6) w00t: Discover Y1 W00t B1 O_o

7) MadWuher: Build G1 Madwuher

8) w00t: Trade Y1 G1 O_o

9) MadWuher: Discover G1 Madwuher B2 Edora

10) w00t: Build Y1 W00t

11) MadWuher: Build G1 Madwuher

12) w00t: Build G2 O_o

13) MadWuher: Build G2 Edora

14) w00t: Trade G1 Y1 O_o

15) MadWuher: Trade G2 Y2 Edora

16) w00t: Discover G2 O_o G3 Reactor

17) MadWuher: Build Y2 Edora

18) w00t: Trade Y1 R1 W00t

19) MadWuher: Trade Y2 R2 Edora

20) w00t: Build R1 W00t

21) MadWuher: Build R2 Edora

22) w00t: Move R1 W00t O_o

23) MadWuher: Discover R2 Edora G1 Bologna

24) w00t: Sacrifice G2 Reactor
Build Y1 W00t
Build Y2 O_o

25) MadWuher: Sacrifice G3 Madwuher
Build Y2 Edora
Build G2 Edora
Build G2 Madwuher



11357)
Started: 2008.7.20, Ended: 2009.12.9
Participants: MikeYarrum (S), smartmo (N)
Winner: MikeYarrum

1) smartmo: Homeworld B3 Y2 G3



11356)
Started: 2008.7.21, Ended: 2008.7.22
Participants: DJAnyReason (S), w00t (N)
Winner: DJAnyReason

1) w00t: Homeworld Y2 R1 G3 *

2) DJAnyReason: Homeworld R3 B3 G3 *

3) w00t: Build G1 W00t

4) DJAnyReason: Build G1 Djanyreason

5) w00t: Discover G1 W00t B3 O_o

6) DJAnyReason: Trade G3 Y3 Djanyreason

7) w00t: Build G1 O_o

8) DJAnyReason: Build G2 Djanyreason

9) w00t: Build G2 W00t

10) DJAnyReason: Move G1 Djanyreason W00t

11) w00t: Discover G2 W00t G3 X1

12) DJAnyReason: Sacrifice G2 Djanyreason
Build G2 W00t
Build G2 W00t
Catastrophe W00t G



11354)
Started: 2008.7.21, Ended: 2009.7.8
Participants: Horowits (S), w00t (N)
Winner: w00t

1) w00t: Homeworld B3 R1 G3

2) Horowits: Homeworld G3 B2 Y3

3) w00t: Build G1 W00t
	Horowits: Im going to ding the doom song.  Doom doom doom doomy doom doom dooooooooooooom doom doomy doom doom. the end.

4) Horowits: Build Y1 Horowits
	w00t: fear my 1 pip green!  fear it!

5) w00t: Trade G1 Y1 W00t

6) Horowits: Trade Y1 G1 Horowits

7) w00t: Discover Y1 W00t B2 O_o
	Horowits: so are you playing on your pda?

	w00t: I am playing on the pda :)
	w00t: slacker :)


11355)
Started: 2008.7.21, Ended: 2008.10.3
Participants: DJAnyReason (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld B2 Y3 G3

2) DJAnyReason: Homeworld B1 R2 G3

3) MadWuher: Build G1 Madwuher

4) DJAnyReason: Build G1 Djanyreason

5) MadWuher: Trade G1 B1 Madwuher

6) DJAnyReason: Trade G1 Y1 Djanyreason

7) MadWuher: Build B1 Madwuher

8) DJAnyReason: Build Y1 Djanyreason

9) MadWuher: Discover B1 Madwuher G1 Edora

10) DJAnyReason: Discover Y1 Djanyreason G3 S1

11) MadWuher: Build B2 Edora

12) DJAnyReason: Build G1 Djanyreason

13) MadWuher: Trade B2 Y2 Edora

14) DJAnyReason: Build G1 Djanyreason

15) MadWuher: Build G2 Madwuher

16) DJAnyReason: Discover G1 Djanyreason B3 S2

17) MadWuher: Sacrifice G3 Madwuher
Build B2 Edora
Build B2 Edora
Build B3 Madwuher

18) DJAnyReason: Discover G1 Djanyreason B3 S3

19) MadWuher: Sacrifice B2 Edora
Trade B3 G3 Madwuher
Trade B2 R2 Edora

20) DJAnyReason: Build G2 Djanyreason

21) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G3 Madwuher
Build B2 Edora

22) DJAnyReason: Trade G2 B2 Djanyreason

23) MadWuher: Build B3 Edora

24) DJAnyReason: Discover B2 Djanyreason Y3 S4

25) MadWuher: Sacrifice B1 Edora
Trade B3 Y3 Edora

26) DJAnyReason: Build G2 Djanyreason

27) MadWuher: Move R2 Edora S2

28) DJAnyReason: Move Y1 S1 Edora

29) MadWuher: Sacrifice B2 Edora
Trade Y3 R3 Edora
Trade G2 Y2 Madwuher

30) DJAnyReason: Move Y1 Edora Madwuher

31) MadWuher: Sacrifice R2 S2
Attack Y1 Madwuher
Pass

32) DJAnyReason: Sacrifice G3 Djanyreason
Build G2 S2
Build G3 Djanyreason
Build G3 Djanyreason

33) MadWuher: Sacrifice Y1 Madwuher
Move B1 Madwuher Edora

34) DJAnyReason: Sacrifice B2 S4
Trade G1 B1 S2
Trade G2 B2 Djanyreason

35) MadWuher: Build B2 Edora

36) DJAnyReason: Sacrifice B2 Djanyreason
Trade G3 B3 Djanyreason
Trade G2 Y2 S2

37) MadWuher: Discover B2 Edora G3 Bologna

38) DJAnyReason: Sacrifice Y2 S2
Move G1 S3 Edora
Move G1 Edora Madwuher

39) MadWuher: Trade G3 R3 Madwuher

40) DJAnyReason: Build G1 Madwuher

41) MadWuher: Attack G1 Madwuher

42) DJAnyReason: Build G2 Madwuher
Catastrophe Madwuher G

43) MadWuher: Trade Y2 G2 Madwuher

44) DJAnyReason: Build Y1 Djanyreason

45) MadWuher: Build B2 Edora

46) DJAnyReason: Trade B1 G1 S2

47) MadWuher: Build B1 Bologna

48) DJAnyReason: Discover B3 Djanyreason R3 S3

49) MadWuher: Build B3 Bologna

50) DJAnyReason: Sacrifice G1 S2
Build B3 S3

51) MadWuher: Sacrifice Y2 Edora
Move B1 Edora S3
Move B2 Edora S3
Catastrophe S3 B



11358)
Started: 2008.7.24, Ended: 2009.8.16
Participants: MikeYarrum (S), virx61 (N)
Winner: virx61

1) virx61: Homeworld R2 B3 G3



11364)
Started: 2008.7.24, Ended: 2008.10.3
Participants: DJAnyReason (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) DJAnyReason: Homeworld B1 R3 G3

3) MadWuher: Build G1 Madwuher

4) DJAnyReason: Build G1 Djanyreason

5) MadWuher: Trade G1 Y1 Madwuher

6) DJAnyReason: Trade G1 Y1 Djanyreason

7) MadWuher: Build G1 Madwuher

8) DJAnyReason: Build G1 Djanyreason

9) MadWuher: Trade G1 R1 Madwuher

10) DJAnyReason: Trade G1 R1 Djanyreason

11) MadWuher: Build R2 Madwuher



11380)
Started: 2008.7.25, Ended: 2008.11.18
Participants: Danner (S), Cerulean (N)
Winner: Danner

1) Cerulean: Homeworld G3 B2 Y3

2) Danner: Homeworld R1 B2 G3

3) Cerulean: Build Y1 Cerulean

4) Danner: Build G1 Danner

5) Cerulean: Build Y1 Cerulean

6) Danner: Trade G1 Y1 Danner

7) Cerulean: Trade Y1 G1 Cerulean

8) Danner: Build G1 Danner

9) Cerulean: Trade Y1 R1 Cerulean

10) Danner: Trade G1 R1 Danner

11) Cerulean: Build Y1 Cerulean

12) Danner: Build R2 Danner

13) Cerulean: Build R2 Cerulean

14) Danner: Discover R2 Danner Y3 Sun

15) Cerulean: Build G1 Cerulean

16) Danner: Build G1 Danner

17) Cerulean: Trade G1 B1 Cerulean

18) Danner: Trade G1 B1 Danner

19) Cerulean: Discover Y1 Cerulean G1 Jiwun

20) Danner: Move R2 Sun Jiwun

21) Cerulean: Discover Y1 Jiwun G3 Jithree

22) Danner: Build R2 Danner

23) Cerulean: Discover R1 Cerulean Y1 Wywun

24) Danner: Trade R1 G1 Danner

25) Cerulean: Build G2 Cerulean

26) Danner: Build G2 Danner

27) Cerulean: Move G2 Cerulean Wywun

28) Danner: Discover R2 Danner Y3 Sun

29) Cerulean: Build G2 Wywun

30) Danner: Sacrifice G3 Danner
Build G3 Danner
Build Y2 Danner
Build B1 Danner

31) Cerulean: Move G2 Wywun Jithree

32) Danner: Move G1 Danner Sun

33) Cerulean: Build Y2 Jithree

34) Danner: Discover B1 Danner Y3 Highway

35) Cerulean: Move Y1 Jithree Danner

36) Danner: Attack Y1N Danner

37) Cerulean: Move G2 Jithree Danner

38) Danner: Move G2 Danner Highway

39) Cerulean: Trade G2 Y2 Danner
Catastrophe Danner Y

40) Danner: Build G2 Danner

41) Cerulean: Build Y1 Jithree

42) Danner: Trade G2 Y2 Highway

43) Cerulean: Build G2 Wywun

44) Danner: Sacrifice G3 Danner
Build G3 Danner
Build B2 Danner
Build B3 Highway

45) Cerulean: Move B1 Cerulean Wywun

46) Danner: Sacrifice B1 Highway
Trade B2 Y2 Danner

47) Cerulean: Build Y1 Cerulean

48) Danner: Sacrifice G2 Danner
Build G2 Danner
Build B1 Highway

49) Cerulean: Move G2 Wywun Jithree

50) Danner: Move G2 Danner Highway

51) Cerulean: Move B1 Wywun Jithree

52) Danner: Move B1 Danner Sun

53) Cerulean: Trade Y2 B2 Jithree

54) Danner: Sacrifice G3 Danner
Build G3 Sun
Build B3 Sun
Build B3 Sun

55) Cerulean: Build Y2 Jithree

56) Danner: Move B3 Sun Wywun

57) Cerulean: Sacrifice G2 Wywun
Build R1 Wywun
Build R3 Cerulean
	Danner: Ji means green, Wy means yellow, wun means one, eh, I didn't notice it before.

58) Danner: Move G3 Sun Danner

59) Cerulean: Move R1 Wywun Jithree

60) Danner: Sacrifice G2 Highway
Build R3 Jiwun
Build R3 Sun

61) Cerulean: Sacrifice Y1 Cerulean
Discover R3 Cerulean Y1 Wywuntu

62) Danner: Sacrifice Y2 Highway
Move R3 Jiwun Jithree
Move B1 Highway Wywun

63) Cerulean: Sacrifice Y2 Jithree
Move Y1 Jithree Danner
Move G2 Jithree Danner

64) Danner: Attack G2N Danner

65) Cerulean: Move R1 Wywun Highway

66) Danner: Attack Y1N Danner
	Danner: I can't see the point.

67) Cerulean: Trade B2 Y2 Jithree

68) Danner: Attack Y2N Jithree

69) Cerulean: Move R1 Highway Wywuntu

70) Danner: Build Y2 Jithree

71) Cerulean: Move R3 Wywuntu Cerulean

72) Danner: Attack R1N Jithree

73) Cerulean: Move R3 Cerulean Jiwun

74) Danner: Sacrifice Y2 Danner
Discover R2 Jiwun Y2 Honeymaker
Move G2 Danner Highway

75) Cerulean: Sacrifice R1 Wywuntu
Attack R1S Jithree

76) Danner: Build Y1 Danner

77) Cerulean: Build R1 Cerulean

78) Danner: Sacrifice Y2 Jithree
Move G1 Sun Jiwun
Move G1 Jiwun Cerulean

79) Cerulean: Sacrifice R1 Cerulean
Attack G1S Cerulean

80) Danner: Sacrifice Y2 Jithree
Move G2 Highway Jiwun
Move G2 Jiwun Cerulean
Catastrophe Cerulean G

81) Cerulean: Trade R2 G2 Cerulean

82) Danner: Move B1 Wywun Cerulean

83) Cerulean: Build Y2 Cerulean

84) Danner: Move B1 Sun Cerulean

85) Cerulean: Sacrifice R3 Jiwun
Attack B1S Cerulean
Attack B1S Cerulean
Pass

86) Danner: Move B3 Highway Cerulean
Catastrophe Cerulean B

	Danner: Thanks the game.


11382)
Started: 2008.7.25, Ended: 2008.8.8
Participants: Jesse (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) Jesse: Homeworld B1 R3 G3

3) Danner: Build G1 Danner

4) Jesse: Build G1 Jesse

5) Danner: Trade G1 Y1 Danner

6) Jesse: Trade G1 Y1 Jesse

7) Danner: Build G1 Danner

8) Jesse: Build G1 Jesse

9) Danner: Trade G1 R1 Danner

10) Jesse: Trade G1 R1 Jesse

11) Danner: Build R2 Danner

12) Jesse: Build R2 Jesse

13) Danner: Discover R1 Danner Y3 Sun

14) Jesse: Discover R2 Jesse G2 One

15) Danner: Sacrifice G3 Danner
Build R2 Sun
Build R3 Sun
Build R3 Danner

16) Jesse: Build Y1 Jesse

17) Danner: Move R3 Sun One

18) Jesse: Sacrifice Y1 Jesse
Discover R2 One G3 Two

19) Danner: Trade R2 G2 Danner

20) Jesse: Build R2 Two

21) Danner: Sacrifice Y1 Danner
Move R3 One Two

	Jesse: I hate to give up, but I can't see any realistic chance to get through this.
	Danner: Thanx the game.


11381)
Started: 2008.7.25, Ended: 2008.8.12
Participants: Danner (S), MatrixFrog (N)
Winner: Danner

1) MatrixFrog: Homeworld B2 Y1 G3

2) Danner: Homeworld R2 B1 G3

3) MatrixFrog: Build G1 Matrixfrog

4) Danner: Build G1 Danner

5) MatrixFrog: Discover G1 Matrixfrog Y3 Bounce

6) Danner: Trade G1 Y1 Danner

7) MatrixFrog: Build G1 Matrixfrog

8) Danner: Build Y1 Danner

9) MatrixFrog: Trade G1 B1 Matrixfrog

10) Danner: Discover Y1 Danner G3 Earth

11) MatrixFrog: Build G1 Matrixfrog

12) Danner: Build Y2 Danner

13) MatrixFrog: Trade G1 R1 Matrixfrog

14) Danner: Build Y2 Earth

15) MatrixFrog: Build G1 Bounce

16) Danner: Build Y2 Earth

17) MatrixFrog: Build R1 Matrixfrog

18) Danner: Build Y3 Danner

19) MatrixFrog: Build B1 Matrixfrog

20) Danner: Trade Y3 B3 Danner

21) MatrixFrog: Move R1 Matrixfrog Earth

22) Danner: Trade Y2 R2 Danner

23) MatrixFrog: Sacrifice G3 Matrixfrog
Build R1 Matrixfrog
Build R2 Earth
Build G1 Bounce

24) Danner: Sacrifice R2 Danner
Attack R1 Earth
Attack R2 Earth

25) MatrixFrog: Move G1 Bounce Matrixfrog

26) Danner: Move Y2 Earth Matrixfrog

27) MatrixFrog: Move R1 Matrixfrog Bounce

28) Danner: Sacrifice R2 Earth
Attack R1N Matrixfrog
Attack B1N Matrixfrog

29) MatrixFrog: Build R2 Bounce

30) Danner: Sacrifice G3 Danner
Build Y2 Matrixfrog
Build Y3 Matrixfrog
Build B2 Matrixfrog
Catastrophe Matrixfrog Y
Catastrophe Matrixfrog B

	Danner: Thx the game


11365)
Started: 2008.7.26, Ended: 2008.9.14
Participants: MadWuher (S), wmreed (N)
Winner: MadWuher

1) wmreed: Homeworld G2 B1 R3

2) MadWuher: Homeworld B1 G3 B3 *
	wmreed: Hello!

3) wmreed: Build R1 Wmreed

4) MadWuher: Build B1 Madwuher

5) wmreed: Trade R3 Y3 Wmreed

6) MadWuher: Trade B3 Y3 Madwuher

7) wmreed: Build Y1 Wmreed


8) MadWuher: Build B2 Madwuher

9) wmreed: Trade Y1 G1 Wmreed

10) MadWuher: Trade B2 R2 Madwuher

11) wmreed: Build Y1 Wmreed


12) MadWuher: Build B2 Madwuher

13) wmreed: Trade Y3 B3 Wmreed


14) MadWuher: Trade B2 Y2 Madwuher

15) wmreed: Discover B3 Wmreed G3 Ruatha

16) MadWuher: Build B2 Madwuher

17) wmreed: Build B2 Ruatha

18) MadWuher: Trade B2 Y2 Madwuher

19) wmreed: Sacrifice Y1 Wmreed
Move B3 Ruatha Wmreed

20) MadWuher: Build B2 Madwuher

21) wmreed: Build B2 Ruatha


22) MadWuher: Sacrifice Y2 Madwuher
Discover B1 Madwuher G2 Camelot
Move Y2 Madwuher Camelot

23) wmreed: Trade B3 Y3 Wmreed

24) MadWuher: Build B3 Camelot

25) wmreed: Trade B2 Y2 Ruatha

26) MadWuher: Trade B1 R1 Camelot

27) wmreed: Build R1 Wmreed

28) MadWuher: Build R2 Camelot

29) wmreed: Move R1 Wmreed Ruatha


30) MadWuher: Trade R1 G1 Camelot

31) wmreed: Build B1 Ruatha

32) MadWuher: Build Y1 Madwuher

33) wmreed: Trade B2 R2 Ruatha

34) MadWuher: Build B2 Camelot

35) wmreed: Discover R2 Ruatha G2 Bendon

36) MadWuher: Discover G1 Camelot Y3 Edora

37) wmreed: Build B2 Ruatha

38) MadWuher: Move B3 Camelot Edora

39) wmreed: Move B1 Ruatha Bendon
	wmreed: oops.

40) MadWuher: Build B3 Camelot

41) wmreed: Build B3 Bendon


42) MadWuher: Sacrifice B2 Camelot
Trade B2 Y2 Madwuher
Trade Y1 G1 Madwuher

43) wmreed: Trade B3 G3 Bendon

44) MadWuher: Sacrifice Y2 Madwuher
Move G1 Madwuher Bendon
Move G1 Edora Bendon
Catastrophe Bendon G

45) wmreed: Build Y1 Wmreed

46) MadWuher: Build Y1 Madwuher

47) wmreed: Discover Y1 Wmreed B3 Tillek

48) MadWuher: Trade B3 G3 Edora

49) wmreed: Build R1 Ruatha

50) MadWuher: Build G1 Edora

51) wmreed: Build R2 Wmreed

52) MadWuher: Sacrifice G3 Edora
Build G1 Edora
Build R3 Camelot
Build R3 Madwuher

53) wmreed: Move G1 Wmreed Tillek

54) MadWuher: Move R3 Camelot Edora

55) wmreed: Build G2 Tillek

56) MadWuher: Build G3 Edora

57) wmreed: Sacrifice Y2 Ruatha
Move G1 Tillek Camelot
Move G1 Camelot Edora
Catastrophe Edora G

58) MadWuher: Move B3 Camelot Tillek

59) wmreed: Sacrifice G2 Tillek
Build Y1 Tillek
Build Y2 Wmreed

60) MadWuher: Build Y2 Camelot

61) wmreed: Move Y2 Wmreed Ruatha

62) MadWuher: Sacrifice R2 Madwuher
Attack Y1 Tillek
Attack Y1 Tillek

63) wmreed: Discover R1 Ruatha G2 Fort


64) MadWuher: Trade B3 G3 Tillek
	wmreed: hmmm.

65) wmreed: Build B1 Ruatha

66) MadWuher: Build G1 Tillek

67) wmreed: Move B2 Ruatha Fort

68) MadWuher: Sacrifice G3 Tillek
Build R2 Edora
Build R3 Camelot
Build G1 Tillek

69) wmreed: Build B2 Fort


70) MadWuher: Move R3 Edora Fort

	wmreed: I feel like anything I'm doing at this point is just prolonging the my inevitable loss.
	MadWuher: I will admit that letting me control the R3's and control the flow of much of the Yellow stack caused you some problems. I have a few means of making you submit, but they are not setup yet and may take a few turns. There are ways to disrupt my plans (and maybe thwart them) but I think I have you on the ropes.
	wmreed: Would you prefer to end the game now, or play it out?
	MadWuher: It's up to you. Would you rather start another?
	wmreed: let's start another. Are you willing to teach as you play?
	wmreed: thanks for playing!
	MadWuher: Sure, I'm happy to teach while we play. (I'll do my best)


11384)
Started: 2008.7.27, Ended: 2008.8.27
Participants: Danner (S), MadWuher (N)
Winner: Danner

1) MadWuher: Homeworld R1 B2 G3

2) Danner: Homeworld R3 B2 G3

3) MadWuher: Build G1 Madwuher

4) Danner: Build G1 Danner

5) MadWuher: Trade G1 Y1 Madwuher

6) Danner: Trade G1 Y1 Danner

7) MadWuher: Build G1 Madwuher

8) Danner: Build G1 Danner

9) MadWuher: Trade G1 B1 Madwuher

10) Danner: Trade G1 R1 Danner

11) MadWuher: Build G1 Madwuher

12) Danner: Build R1 Danner

13) MadWuher: Build B1 Madwuher

14) Danner: Discover R1 Danner Y1 Abydos

15) MadWuher: Discover B1 Madwuher G3 Chulak

16) Danner: Move R1 Abydos Chulak

17) MadWuher: Sacrifice B1 Chulak
Trade G1 B1 Madwuher

18) Danner: Build R2 Danner

19) MadWuher: Discover B1 Madwuher Y3 Earth

20) Danner: Discover R2 Danner Y1 Abydos

21) MadWuher: Build G1 Madwuher

22) Danner: Sacrifice G3 Danner
Build R2 Abydos
Build R2 Abydos
Build R3 Danner

23) MadWuher: Build B1 Madwuher

24) Danner: Build R3 Chulak

25) MadWuher: Discover B1 Madwuher G3 Atlantis

26) Danner: Move R2 Abydos Earth

27) MadWuher: Build Y2 Madwuher

28) Danner: Attack B1N Earth

29) MadWuher: Build Y2 Madwuher

30) Danner: Move R2 Abydos Atlantis

31) MadWuher: Sacrifice B1 Atlantis
Trade Y2 G2 Madwuher
	MadWuher: Wow..... This is going nowhere fast for me.......

32) Danner: Discover R2 Abydos Y3 Tollan

33) MadWuher: Discover G2 Madwuher B3 Madrona

34) Danner: Trade R1 G1 Danner

35) MadWuher: Trade G1 R1 Madwuher

36) Danner: Move R2 Earth Madwuher

37) MadWuher: Sacrifice R1 Madwuher
Attack R2 Madwuher

38) Danner: Build G1 Danner
	Danner: uh oh I forgot this...

39) MadWuher: Move R2 Madwuher Madrona

40) Danner: Build Y1 Danner

41) MadWuher: Move Y1 Madwuher Madrona

42) Danner: Sacrifice Y1 Danner
Discover R3 Chulak Y2 Tollana

43) MadWuher: Build G1 Madwuher

44) Danner: Move R3 Tollana Madrona

45) MadWuher: Sacrifice Y1 Madrona
Move R2 Madrona Madwuher

46) Danner: Attack G2 Madrona

47) MadWuher: Build Y1 Madwuher

48) Danner: Build G2 Madrona
	MadWuher: I have to ask. Where did you pickup this 3-pip pyramid denying strategy? Did you lookup a past game from someone? If so, where might I find it. Any other strategies you might suggest looking up?
	Danner: As I remember, I have never examined archive (or ongoing) games to learn strategies :)
I think I have seen Jesse or TwoShort using this strategy against me (using discovery to modify stash in order to alter ship building opportunities - I hope I used proper expressions :D)

49) MadWuher: Discover G1 Madwuher B3 Aschen
	MadWuher: I have no clue what I can do from this point.

50) Danner: Build G2 Danner

51) MadWuher: Sacrifice Y2 Madwuher
Discover G1 Aschen B1 Kallana
Move G1 Kallana Danner
Catastrophe Danner G

52) Danner: Build R1 Madrona

53) MadWuher: Build G1 Madwuher

54) Danner: Trade R3 Y3 Madrona

55) MadWuher: Trade G1 Y1 Madwuher
	MadWuher: Yup. Here comes the pain.....

56) Danner: Build R3 Madrona

57) MadWuher: Build G1 Madwuher
	Danner: not yet. I need some more ships :)

58) Danner: Sacrifice Y3 Madrona
Move G2 Madrona Madwuher
Move G2 Madrona Madwuher
Move R3 Madrona Madwuher
Catastrophe Madwuher G

59) MadWuher: Trade B1 G1 Madwuher
	Danner: well, you have built what I needed
	MadWuher: Yup..... thought I'd speed things up a bit


60) Danner: Attack R2N Madwuher

61) MadWuher: Build Y2 Madwuher

62) Danner: Trade R2 Y2 Madwuher
Catastrophe Madwuher Y

63) MadWuher: Build G1 Madwuher

64) Danner: Sacrifice R2 Tollan
Attack G1N Madwuher
Attack G1N Madwuher
	Danner: Thx the game
	MadWuher: Thank you for kickin my buttttttt. =)
	Danner: :D
If you want to play more with me, you can challenge me anytime



11375)
Started: 2008.7.29, Ended: 2008.9.30
Participants: MikeYarrum (S), Lexicon (N)
Winner: Lexicon

1) Lexicon: Homeworld G1 B2 Y3



11387)
Started: 2008.8.1, Ended: 2008.9.19
Participants: nycavri (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld B2 Y3 G3

2) nycavri: Homeworld B1 Y2 G3
	nycavri: h b1 y2 g3

3) MadWuher: Build G1 Madwuher
	nycavri: Doh!

4) nycavri: Build G1 Nycavri

5) MadWuher: Trade G1 B1 Madwuher

6) nycavri: Discover G1 Nycavri B3 Fr94

7) MadWuher: Build B1 Madwuher

8) nycavri: Build G1 Fr94

9) MadWuher: Discover B1 Madwuher Y1 Edora

10) nycavri: Trade G1 Y1 Fr94

11) MadWuher: Build B2 Madwuher

12) nycavri: Build G1 Nycavri

13) MadWuher: Trade B2 R2 Madwuher

14) nycavri: Trade G1 R1 Nycavri

15) MadWuher: Build G1 Madwuher

16) nycavri: Build R1 Nycavri

17) MadWuher: Move G1 Madwuher Edora

18) nycavri: Discover Y1 Fr94 G1 Hl95

19) MadWuher: Build G2 Madwuher

20) nycavri: Build G2 Nycavri

21) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G3 Madwuher
Build G3 Edora

22) nycavri: Trade G2 Y2 Nycavri

23) MadWuher: Sacrifice G2 Madwuher
Build B2 Edora
Build B2 Madwuher

24) nycavri: Sacrifice G3 Nycavri
Build Y1 Hl95
Build Y2 Hl95
Build Y3 Nycavri

25) MadWuher: D B2 Edora Y3 Bologna

26) nycavri: Sacrifice Y2 Nycavri
Move Y1 Hl95 Madwuher
Move Y1 Hl95 Madwuher

27) MadWuher: Sacrifice G3 Edora
Build B3 Bologna
Build B3 Bologna
Build G2 Edora

28) nycavri: Sacrifice G1 Fr94
Build Y2 Madwuher
Catastrophe Madwuher Y

29) MadWuher: Sacrifice B2 Madwuher
Trade B2 Y2 Bologna
Trade G2 R2 Edora

30) nycavri: Trade Y3 G3 Nycavri

31) MadWuher: Sacrifice Y2 Bologna
Move B3 Bologna Nycavri
Move B3 Bologna Nycavri

32) nycavri: Build G1 Nycavri

33) MadWuher: Sacrifice R2 Madwuher
Attack G3 Nycavri
Attack G1 Nycavri

34) nycavri: Attack G1 Nycavri

35) MadWuher: Sacrifice R2 Edora
Attack R1 Nycavri
Attack R1 Nycavri

	MadWuher: Are you up for another? Maybe an unrated game?
	nycavri: Thanks, but I keep timing out of games atm - apartment hunting.  Maybe when I get on top of my current crop . . .
	MadWuher: Good luck with the apartment hunting.


11397)
Started: 2008.8.11, Ended: 2009.12.9
Participants: MikeYarrum (S), skybean (N)
Winner: MikeYarrum



11472)
Started: 2008.8.19, Ended: 2008.8.28
Participants: random56 (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) random56: Homeworld R1 B2 G3

3) MadWuher: Build G1 Madwuher

4) random56: Build G1 Random56

5) MadWuher: Trade G1 R1 Madwuher

6) random56: Trade G1 Y1 Random56

7) MadWuher: Build R2 Madwuher

8) random56: Build G1 Random56

9) MadWuher: Build G1 Madwuher

10) random56: Discover G1 Random56 B3 Alma

11) MadWuher: Trade R2 Y2 Madwuher

12) random56: Sacrifice G3 Random56
Build G1 Alma
Build G2 Alma
Build Y1 Random56

13) MadWuher: Build R2 Madwuher

14) random56: Trade G2 Y2 Alma

15) MadWuher: Sacrifice Y2 Madwuher
Move G3 Madwuher Alma
Move G3 Alma Random56

16) random56: Move G1 Alma Random56

17) MadWuher: Attack G1 Random56

18) random56: Attack G1 Random56


19) MadWuher: Sacrifice R2 Madwuher
Attack G1 Random56
Attack Y1 Random56

20) random56: Attack G1 Random56

21) MadWuher: Build R2 Madwuher

22) random56: Build Y1 Random56

23) MadWuher: Build Y2 Random56
Catastrophe Random56 Y

24) random56: Move Y2 Alma Random56

25) MadWuher: Sacrifice R2 Madwuher
Attack Y2 Random56
Attack G1 Random56

	random56: gg this was my first game in a while. i will do better next time
	MadWuher: Not to worry. Want to try again??
	random56: shure


11532)
Variants: "Hard time"
Started: 2008.8.24, Ended: 2008.8.25
Participants: Danner (S), alexcobo (N)
Winner: Danner

1) alexcobo: Homeworld G3 B2 Y3

2) Danner: Homeworld R2 B1 G3

3) alexcobo: Build Y1 Alexcobo

4) Danner: Build G1 Danner

5) alexcobo: Build Y1 Alexcobo

6) Danner: Trade G1 Y1 Danner

7) alexcobo: Trade Y1 B1 Alexcobo

8) Danner: Build Y1 Danner

9) alexcobo: Discover B1 Alexcobo G1 Geeone

10) Danner: Discover Y1 Danner G3 Earth

11) alexcobo: Build B1 Geeone

12) Danner: Build Y2 Earth

13) alexcobo: Build Y2 Alexcobo

14) Danner: Sacrifice Y2 Earth
Move Y1 Earth Geeone
Move Y1 Geeone Alexcobo
Catastrophe Alexcobo Y
	Danner: Thx the game



11546)
Started: 2008.8.25, Ended: 2009.12.9
Participants: nilesdavid (S), elpepe (N)
Winner: nilesdavid



11470)
Started: 2008.8.27, Ended: 2008.9.18
Participants: MadWuher (S), MatrixFrog (N)
Winner: MadWuher

1) MatrixFrog: Homeworld B2 G1 Y3

2) MadWuher: Homeworld G1 B3 G3 *

3) MatrixFrog: Build Y1 Matrixfrog

4) MadWuher: Build G1 Madwuher

5) MatrixFrog: Discover Y1 Matrixfrog G3 Apple

6) MadWuher: Trade G3 Y3 Madwuher

7) MatrixFrog: Build Y1 Matrixfrog

8) MadWuher: Build G2 Madwuher

9) MatrixFrog: Discover Y1 Apple G2 Pear

10) MadWuher: Discover G2 Madwuher B2 Edora

11) MatrixFrog: Build Y1 Pear

12) MadWuher: B G2 Edora

13) MatrixFrog: Build Y2 Matrixfrog

14) MadWuher: Build G3 Edora

15) MatrixFrog: Sacrifice Y2 Matrixfrog
Move Y1 Pear Madwuher
Move Y1 Pear Madwuher

16) MadWuher: Trade Y3 R3 Madwuher

17) MatrixFrog: Move Y1 Madwuher Edora

18) MadWuher: Attack Y1 Madwuher

19) MatrixFrog: Build Y2 Matrixfrog

20) MadWuher: Trade G2 R2 Edora

21) MatrixFrog: Discover Y1 Edora G3 Efora

22) MadWuher: Trade G2 Y2 Edora

23) MatrixFrog: Trade Y2 R2 Matrixfrog

24) MadWuher: Build G2 Edora

25) MatrixFrog: Trade Y1 B1 Matrixfrog

26) MadWuher: Sacrifice G3 Edora
Build G2 Edora
Build G2 Madwuher
Build G3 Edora

27) MatrixFrog: Discover Y1 Efora B2 Pandora

28) MadWuher: Discover G2 Edora B3 Bologna

29) MatrixFrog: Build Y1 Matrixfrog

30) MadWuher: Sacrifice G3 Edora
Build G3 Bologna
Build G3 Edora
Build G3 Bologna

31) MatrixFrog: Build Y2 Matrixfrog

32) MadWuher: Trade G3 Y3 Bologna

33) MatrixFrog: Discover Y1 Matrixfrog G3 Scarcity

34) MadWuher: Sacrifice G3 Bologna
Build G3 Bologna
Build Y2 Edora
Build Y3 Madwuher

35) MatrixFrog: Build R1 Matrixfrog

36) MadWuher: Sacrifice G3 Edora
Build G3 Bologna
Build R1 Edora
Build R1 Madwuher

37) MatrixFrog: Move Y2 Matrixfrog Scarcity

38) MadWuher: Sacrifice Y3 Madwuher
Move G3 Bologna Matrixfrog
Move G3 Bologna Matrixfrog
Move Y3 Bologna Matrixfrog

39) MatrixFrog: Attack Y3 Matrixfrog

40) MadWuher: Sacrifice R3 Madwuher
Attack Y3 Matrixfrog
Attack Y3 Matrixfrog
Attack R2 Matrixfrog

	MadWuher: Up to another??? How about an unrated game?


11427)
Started: 2008.8.29, Ended: 2008.9.5
Participants: random56 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3
	TwoShort: Howdy

2) random56: Homeworld G1 B3 G3 *

3) TwoShort: Build G1 Twoshort

4) random56: Build G1 Random56

5) TwoShort: Build G2 Twoshort

6) random56: Trade G1 R1 Random56

7) TwoShort: Trade G2 Y2 Twoshort

8) random56: Build R1 Random56

9) TwoShort: Discover G1 Twoshort Y3 Yolonda

10) random56: Build R2 Random56

11) TwoShort: Build G1 Twoshort

12) random56: Trade R1 Y1 Random56

13) TwoShort: Build G2 Yolonda

14) random56: Discover R2 Random56 Y2 Dixy

15) TwoShort: Discover G1 Yolonda Y2 Yellonia

16) random56: Move R2 Dixy Yolonda

17) TwoShort: Discover G2 Yolonda Y2 Yonderboy

18) random56: Move G3 Random56 Yonderboy

19) TwoShort: Move G2 Yonderboy Random56

20) random56: Move R1 Random56 Yonderboy

21) TwoShort: Build G2 Random56

22) random56: Build Y1 Random56

23) TwoShort: Trade G2 R2 Random56

24) random56: Move R2 Yolonda Twoshort

25) TwoShort: Sacrifice R2 Random56
Attack Y1S Random56
Attack Y1S Random56



11432)
Started: 2008.8.30, Ended: 2008.10.5
Participants: Danner (S), MadWuher (N)
Winner: Danner

1) MadWuher: Homeworld R1 B3 G3

2) Danner: Homeworld B1 R2 G3

3) MadWuher: Build G1 Madwuher
	Danner: Hello again :)
Good luck!
(Oh, I think you haven't answered my last PM. It was a few months ago :D)

4) Danner: Build G1 Danner

5) MadWuher: Trade G1 Y1 Madwuher

6) Danner: Trade G1 Y1 Danner

7) MadWuher: Build G1 Madwuher

8) Danner: Build G1 Danner

9) MadWuher: Trade G1 B1 Madwuher

10) Danner: Trade G1 B1 Danner

11) MadWuher: Build B2 Madwuher

12) Danner: Build B2 Danner

13) MadWuher: Build G1 Madwuher

14) Danner: Trade B2 R2 Danner

15) MadWuher: Trade B2 R2 Madwuher

16) Danner: Build B2 Danner

17) MadWuher: Build B2 Madwuher

18) Danner: Discover B1 Danner Y3 Sun

19) MadWuher: Discover B1 Madwuher G2 Earth

20) Danner: Build R1 Danner

21) MadWuher: Discover B2 Madwuher Y2 Abydos

22) Danner: Trade R2 G2 Danner

23) MadWuher: Discover B2 Abydos Y3 Chulak

24) Danner: Discover Y1 Danner B3 Tollan

25) MadWuher: Build G1 Madwuher

26) Danner: Build G1 Danner

27) MadWuher: Discover G1 Madwuher Y2 Abydos

28) Danner: Trade G1 Y1 Danner

29) MadWuher: Sacrifice G3 Madwuher
Build B2 Chulak
Build B3 Earth
Build Y2 Madwuher

30) Danner: Discover B2 Danner G3 Tollana

31) MadWuher: Move G1 Abydos Chulak

32) Danner: Build Y2 Danner

33) MadWuher: Move Y1 Madwuher Earth

34) Danner: Sacrifice G2 Danner
Build Y2 Danner
Build Y3 Tollan

35) MadWuher: Sacrifice Y2 Madwuher
Move Y1 Earth Chulak
Move Y1 Chulak Danner
Catastrophe Danner Y

36) Danner: Discover Y3 Tollan R2 Abydos

37) MadWuher: Sacrifice B2 Chulak
Trade B3 G3 Earth
Trade G1 Y1 Madwuher
	MadWuher: I so realize I am going to get hurt for this. =P

38) Danner: Move Y3 Abydos Madwuher
	Danner: I think it would have been better if you had moved your B3 to your homeworld.
	MadWuher: I have been totally behind on my thinking. I thought I'd have one more turn before you'd get to my homeworld. Just thinking if there is anything I can do to fix this.......

Now I'm just wondering what I can do to not make this timing mistake again.
	MadWuher: Still thinking.... sorry for the delay.
	Danner: No problem, feel free to continue thinking as long as you want :)
	MadWuher: Yeah, you're sitting here thinking "there isn't anything he can possibly do to escape the inevitable" while I'm trying to think if there is any way to grasp victory from the arms of defeat (which I highly doubt).
	Danner: Stop reading my mind :D
	MadWuher: Yeah. I'm not seeing anything....

39) MadWuher: Sacrifice G3 Earth
Build Y1 Madwuher
Build Y2 Madwuher
Build G1 Chulak
Catastrophe Madwuher Y

40) Danner: Build R1 Danner
	Danner: Hm. Now you can destroy my Y3 at the cost of your big ship. But, if you had traded your B2 to G2, you would be able to do that without sacrificing your big ship...or am I wrong? This idea came to my mind only when I saw your move.
	MadWuher: yes, you're right.  I should have thought of that. I thought that the g3 was necessary. Boy, am I off my game.

41) MadWuher: Discover G1 Chulak Y2 Madrona

42) Danner: Trade R1 Y1 Danner

43) MadWuher: Discover G1 Madrona B3 Atlantis

44) Danner: Build B2 Tollana

45) MadWuher: Sacrifice G1 Atlantis
Build B3 Earth

46) Danner: Build Y1 Danner

47) MadWuher: Trade B3 Y3 Earth

48) Danner: Trade B2 Y2 Tollana
	Danner: Wow, great trick

49) MadWuher: Build Y2 Earth

50) Danner: Build Y2 Tollana

51) MadWuher: Move Y3 Earth Madwuher

52) Danner: Trade B1 G1 Sun

53) MadWuher: Build B1 Chulak

54) Danner: Sacrifice G1 Sun
Build Y3 Danner

55) MadWuher: Build G1 Chulak

56) Danner: Move Y3 Danner Chulak

57) MadWuher: Move B2 Chulak Earth

58) Danner: Build B2 Tollana

59) MadWuher: Move B2 Earth Tollan

60) Danner: Trade B2 R2 Tollana

61) MadWuher: Move G1 Chulak Earth

62) Danner: Move R1 Danner Chulak
	MadWuher: Nice one...

63) MadWuher: Move G1 Earth Madwuher

64) Danner: Attack G1N Chulak

65) MadWuher: Discover B1 Chulak G2 Abydos

66) Danner: Move Y3 Chulak Earth

67) MadWuher: Move Y2 Earth Tollan

68) Danner: Move R2 Tollana Abydos

69) MadWuher: Build B2 Abydos

70) Danner: Attack B2N Abydos

71) MadWuher: Build B3 Abydos
	MadWuher: It seems like all I will be doing is running away.....

72) Danner: Move B2 Tollana Abydos
Catastrophe Abydos B
	Danner: Then I will keep chasing you :)

73) MadWuher: Build B1 Earth

74) Danner: Sacrifice R2 Abydos
Attack B1N Earth
Attack B1N Earth

75) MadWuher: Discover B2 Tollan G2 Hanka

76) Danner: Trade B1 R1 Earth

77) MadWuher: Move R2 Madwuher Hanka

78) Danner: Move Y3 Earth Tollan
	MadWuher: This is an uphill battle......

79) MadWuher: Move Y2 Tollan Earth

80) Danner: Move Y3 Tollan Earth
	MadWuher: Planet whose inhabitants and an SG team are wiped out by Nirrti using a virus, except for Cassandra.
A very poignant name for a planet if I do say so myself. =)
	MadWuher: Poignant was the wrong word..... I meant to say "a very fitting planet for me to discover." =)

81) MadWuher: Move Y2 Earth Chulak
	Danner: :D

82) Danner: Move Y3 Earth Chulak

83) MadWuher: Move Y2 Chulak Earth

84) Danner: Move Y3 Chulak Earth

85) MadWuher: Move Y2 Earth Madwuher

86) Danner: Move Y3 Earth Madwuher

87) MadWuher: Attack Y3 Madwuher
	Danner: What to do now?
	MadWuher: I dunno, cry?? =P

88) Danner: Sacrifice Y2 Tollana
Move Y1 Tollan Earth
Move Y1 Earth Madwuher
Catastrophe Madwuher Y

89) MadWuher: Trade B2 Y2 Hanka

90) Danner: Build G1 Danner

91) MadWuher: Build R2 Hanka

92) Danner: Sacrifice G3 Danner
Build G2 Chulak
Build G3 Danner
Build G3 Chulak
	MadWuher: Yeah, I know what's coming.....
	Danner: Yeah, I know you know it :)

93) MadWuher: Move R2 Hanka Madwuher

94) Danner: Sacrifice G3 Chulak
Build G3 Chulak
Build R3 Chulak
Build R3 Earth

95) MadWuher: Build R3 Hanka

96) Danner: Sacrifice Y2 Tollana
Move G3 Chulak Earth
Move G3 Earth Madwuher

97) MadWuher: Sacrifice Y2 Hanka
Move R3 Hanka Madwuher
Move R2 Hanka Madwuher
Catastrophe Madwuher R
	MadWuher: Well, I think I'm toast...... 
Lets make this easy for you.... =)

98) Danner: Sacrifice G3 Danner
Build G2 Madwuher
Build G3 Madwuher
Build G3 Danner
Catastrophe Madwuher G
	Danner: oh, thx :)

	Danner: Thx the game. How about another one?
	MadWuher: why don't we run a few unrated ones at the same time and try out a few different strategies in each? Up to a few??
	Danner: Well, until 20th october I haven't got much time, and I haven't read the Homeworlds strategies yet. It would be better if we run that experimentals after I read that page.
	MadWuher: OK.... I'll catch up with you around the end of the month then. Talk to you later.


11622)
Variants: "Hard time"
Started: 2008.9.1, Ended: 2008.9.29
Participants: random56 (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) random56: Homeworld B3 G1 R3

3) MadWuher: Build G1 Madwuher

4) random56: Build R1 Random56

5) MadWuher: Build G1 Madwuher

6) random56: Trade R1 Y1 Random56

7) MadWuher: Trade G3 Y3 Madwuher

8) random56: Build Y1 Random56

9) MadWuher: Discover G1 Madwuher B3 Edora

10) random56: Build Y1 Random56

11) MadWuher: Build Y2 Madwuher

12) random56: Trade Y1 R1 Random56

13) MadWuher: Build G2 Edora

14) random56: Build R1 Random56

15) MadWuher: Sacrifice G2 Edora
Build G2 Edora
Build G2 Madwuher

16) random56: Discover R3 Random56 Y2 Nephi

17) MadWuher: Trade Y3 R3 Madwuher

18) random56: Build R2 Random56

19) MadWuher: Sacrifice G2 Edora
Build G2 Edora
Build G2 Madwuher

20) random56: Discover R1 Random56 Y2 Alma

21) MadWuher: Discover G2 Madwuher Y3 Bologna

22) random56: Move R3 Nephi Bologna

23) MadWuher: Sacrifice G2 Bologna
Build G2 Madwuher
Build G3 Edora
	random56: move r3 Nephi bologna

24) random56: Move R1 Alma Edora

25) MadWuher: Trade G2 R2 Edora

26) random56: Trade R2 G2 Random56

27) MadWuher: Trade G1 Y1 Edora

28) random56: Build G1 Random56

29) MadWuher: Attack R1 Edora

30) random56: Discover G1 Random56 Y2 Steve

31) MadWuher: Sacrifice Y2 Madwuher
Discover G2 Madwuher G3 Yogurt
Discover G2 Madwuher G3 Raisin

32) random56: Build R2 Random56

33) MadWuher: Sacrifice G2 Raisin
Build G2 Edora
Build G3 Madwuher

34) random56: Move R1 Random56 Steve

35) MadWuher: Move G3 Edora Steve

36) random56: Sacrifice G2 Random56
Build R2 Steve
Build R3 Steve

37) MadWuher: Sacrifice R2 Edora
Attack R3 Steve
Attack R2 Steve

38) random56: Move R3 Bologna Steve
Catastrophe Steve R

39) MadWuher: Sacrifice G3 Madwuher
Build G2 Edora
Build G3 Madwuher
Build Y2 Edora

40) random56: Build Y2 Random56

41) MadWuher: Move G3 Steve Random56



11446)
Started: 2008.9.3, Ended: 2009.12.9
Participants: bassbum (S), MikeYarrum (N)
Winner: MikeYarrum



11436)
Variants: "Hard time"
Started: 2008.9.7, Ended: 2008.10.7
Participants: Jesse (S), AnalogKid (N)
Winner: Jesse

1) AnalogKid: Homeworld B2 R1 G3

2) Jesse: Homeworld B1 Y3 G3
	AnalogKid: Hi!

This is my first time playing on SDG (and my first Homeworlds game) so I am just learning how all of this works.  :)
	Jesse: Hello.  Welcome to SDG, and I hope you enjoy Homeworlds.  It can be a difficult game to wrap your head around at first, so feel free to ask about anything that comes up.

3) AnalogKid: Build G1 Analogkid
	AnalogKid: Thanks.  I've been reading up on Homeworlds so I hope that I won't have too many questions about how to play. (Playing well is different issue ^_^ )

4) Jesse: Build G1 Jesse


5) AnalogKid: Trade G3 Y3 Analogkid

6) Jesse: Trade G1 B1 Jesse

7) AnalogKid: Build G1 Analogkid

8) Jesse: Build B1 Jesse

9) AnalogKid: Discover G1 Analogkid B3 Aldebaran

10) Jesse: Discover B1 Jesse G2 Pollux

11) AnalogKid: Trade Y3 B3 Analogkid

12) Jesse: Build B2 Pollux


13) AnalogKid: Build B2 Analogkid

14) Jesse: Build B3 Pollux

15) AnalogKid: Trade G1 Y1 Analogkid

16) Jesse: Trade B3 Y3 Pollux

17) AnalogKid: Move B2 Analogkid Aldebaran
	Jesse: I think you'll find that giving up your green there will make things difficult in the upcoming turns.  It's usually better to diversify when you have the chance.

18) Jesse: Build B3 Pollux

19) AnalogKid: Build G1 Aldebaran
	AnalogKid: I am in central Ohio and we are without electricity now and my laptop battery is almost gone so I will not be able to play for a few days ...
	Jesse: I am also in central Ohio.  I hope your power is restored soon, if it is not already.
	AnalogKid: Hello, I'm back now.  Sorry for the one week delay.  Power was out until Saturday and it then took a couple of days for things to return to normal.

20) Jesse: Trade B3 Y3 Pollux
	AnalogKid: I see a little better now what you meant about giving up my green in my home system.  I was a little focused on issues of blue though ...
	Jesse: Yeah, blue was awkward for you, which is why I rushed it.  You did the right thing, getting in.  You don't necessarily need a lot of blue to stop me from abusing it, so you would probably have been better off trading your B3 back to yellow, rather than your green.  Another possibility would be building another green first, and trading that one.  I'd lean towards trading the B3, though, since you don't want to keep it blue in the long term anyway.
	Jesse: t b3 y3 pollux
	Jesse: Grr.  I hate when I do that.  XD

21) AnalogKid: Move Y1 Analogkid Aldebaran

22) Jesse: Discover B2 Pollux G3 Markab

23) AnalogKid: Trade B3 G3 Analogkid
	Jesse: Do you see the immediate threat I'm making?
	AnalogKid: No -- I'm not sure that I see any "immediate threat" but I can foresee a few possible problems 3-4 turns from now ...

24) Jesse: Build B3 Pollux
	Jesse: That was a good move, because I was threatening to destroy your large ship and half your home system.  With a Y3 sacrifice, I could make three moves: Move my B1 from Pollux to Markab, then move the B1 and B2 from Markab to your home system.  That would have left four blue pieces there, so I could call a catastrophe to send them all back to the global reserve.

25) AnalogKid: Discover B2 Aldebaran G2 Altair
	AnalogKid: Well, that was lucky then because I thought it would take at least two turns for you to do that :)  And it would have ended the game unless I had moved another ship home.  I had no idea that you could move the same ship more than once in a turn -- it had never occurred to me.

26) Jesse: Build B3 Markab

27) AnalogKid: Move Y1 Aldebaran Pollux
	Jesse: It's an easy thing for a beginner to overlook or not realize, which is why I'm pointing it out.
	AnalogKid: Thanks :)

28) Jesse: Trade Y3 R3 Pollux

29) AnalogKid: Build Y1 Pollux
	Jesse: I may not hold back much, but I do believe in helping new players with advice and second chances.  :)

30) Jesse: Move Y3 Pollux Markab

31) AnalogKid: Move Y1 Pollux Markab

32) Jesse: Trade B2 R2 Markab

33) AnalogKid: Move Y1 Pollux Markab

34) Jesse: Move Y3 Markab Altair

35) AnalogKid: Build B2 Altair

36) Jesse: Sacrifice R3 Pollux
Attack B2 Altair
Attack B2 Altair
Attack Y1 Markab

37) AnalogKid: Move Y1 Markab Analogkid
	Jesse: Sending in your little yellows to try to blow up my Y3 was a nice idea, but it didn't have much chance of working, and it left them vulnerable to capture when I got some red ships.  On the other hand, with your material disadvantage pretty much any course available to you is unlikely to help much.
	AnalogKid: Hello - sorry for the long delay!  BGF is now over so I should have more time now to play on SDG.
	AnalogKid: Well, I did not necessarily think that I would be successful but I was trying to disrupt a perceived threat.  Of course, I did not think my efforts would end in my being completely shut out of blue!  (BTW, I had a chance to play Homeworlds last night with another local player at BGF).

38) Jesse: Sacrifice Y3 Altair
Move B3 Pollux Markab
Move B3 Markab Analogkid
Move B3 Markab Analogkid
	Jesse: Cool.  How'd it go?

39) AnalogKid: Attack B3S Analogkid
	AnalogKid: Well, I lost half of my homeworld very early in the game, but then both my opponent and I floundered around for awhile, uncertain of what to do.  Finally, I saw an opening, got lucky, and managed to destroy the only ship in the opposing homeworld.

40) Jesse: Sacrifice R2 Markab
Attack G3 Analogkid
Attack B3 Analogkid
	Jesse: Yeah, in the middle game it can be difficult for beginning players to figure out what they need to be doing.

41) AnalogKid: Sacrifice G1 Aldebaran
Build Y1 Analogkid

42) Jesse: Trade B3 R3 Analogkid


43) AnalogKid: Trade Y1 G1 Analogkid
	AnalogKid: Well, looks like this is just about over ... thanks for the game ^_^

44) Jesse: Sacrifice R3 Analogkid
Attack G1 Analogkid
Attack Y1 Analogkid
Pass
	Jesse: My pleasure.  I hope it's been educational.



11695)
Variants: "Unrated, Hard time"
Started: 2008.9.10, Ended: 2008.9.10
Participants: rikko (S), demerzel (N)
Winner: rikko

1) demerzel: Homeworld G3 B1 R3

2) rikko: Homeworld G2 R1 B3

3) demerzel: Build R1 Demerzel

4) rikko: Build B1 Rikko

5) demerzel: Trade R1 Y1 Demerzel

6) rikko: Build B1 Rikko

7) demerzel: Discover R3 Demerzel Y2 Dagobah

8) rikko: Trade B1 Y1 Rikko

9) demerzel: Discover R3 Dagobah Y3 Corusan

10) rikko: Trade B1 R1 Rikko

11) demerzel: Move R3 Corusan Rikko

12) rikko: Attack R3 Rikko

13) demerzel: Build Y1 Demerzel

14) rikko: Discover B3 Rikko Y3 Dagobah

15) demerzel: Build Y2 Demerzel

16) rikko: Move R3 Rikko Dagobah

17) demerzel: Trade Y2 R2 Demerzel

18) rikko: Discover R3 Dagobah Y2 Corusan

19) demerzel: Trade Y1 R1 Demerzel

20) rikko: Move R1 Rikko Dagobah

21) demerzel: Trade R1 G1 Demerzel

22) rikko: Move B3 Dagobah Corusan

23) demerzel: Move Y1 Demerzel Corusan

24) rikko: Move R3 Corusan Demerzel

25) demerzel: Build R1 Demerzel

26) rikko: Attack R1N Demerzel

27) demerzel: Attack R1 Demerzel

28) rikko: Move B3 Corusan Demerzel

29) demerzel: Move Y1 Corusan Dagobah

30) rikko: Sacrifice R3 Demerzel
Attack R1N Demerzel
Attack R2N Demerzel
Attack G1N Demerzel



11644)
Started: 2008.9.13, Ended: 2008.9.16
Participants: ben (S), MikeYarrum (N)
Winner: ben



11715)
Variants: "Unrated, Hard time"
Started: 2008.9.15, Ended: 2008.9.30
Participants: wmreed (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld Y1 B2 G3
	wmreed: Currently, my favorite Homeworld is a blue-green combo.  I think it's best because it allows me to build and change no matter what else happens.  I've lately been starting with a Y3 ship, to take advantage of an opponent's careless Bluebird mistake.  What are your thoughts on openings?

2) wmreed: Homeworld B3 G2 Y3

3) MadWuher: Build G1 Madwuher

4) wmreed: Build Y1 Wmreed

5) MadWuher: Trade G1 Y1 Madwuher

6) wmreed: Build Y2 Wmreed


7) MadWuher: Build G1 Madwuher

8) wmreed: Trade Y1 G1 Wmreed

9) MadWuher: Discover G1 Madwuher Y3 Edora

10) wmreed: Discover Y2 Wmreed R1 Arthur

11) MadWuher: Discover G1 Edora Y1 Bologna

12) wmreed: Build Y2 Wmreed

13) MadWuher: Move G1 Bologna Wmreed

14) wmreed: Trade Y2 R2 Wmreed

15) MadWuher: Build G1 Wmreed
Catastrophe Wmreed G

16) wmreed: Move Y2 Arthur Wmreed


17) MadWuher: Trade Y1 R1 Madwuher
	wmreed: nicely done.  how foolish  of me.

18) wmreed: T Y2 G2 Wmreed

19) MadWuher: Build G1 Madwuher

20) wmreed: Build Y1 Wmreed


21) MadWuher: Discover G1 Madwuher Y3 Edora

	MadWuher: Wow, I never realized how quickly the Hard Time variant sets in. I've played quite a few hard time games and this is only the second (as I remember) that triggered hard time. 


11315)
Variants: "Sinister, Hard time"
Started: 2008.9.15, Ended: 2008.10.20
Participants: alexcobo (S), smilingra (W), MadWuher (N), random56 (E)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) random56: Homeworld G1 B3 R3

3) alexcobo: Homeworld G3 B2 Y3
	random56: this is a long time comming

4) alexcobo: Build Y1 Alexcobo

5) MadWuher: Build G1 Madwuher
	smilingra: sorry guys... just had my first baby and hadn't logged in recently. gl to you all

6) random56: Build R1 Random56

7) alexcobo: Build Y1 Alexcobo

8) MadWuher: Trade G1 Y1 Madwuher

9) random56: Build R1 Random56

10) alexcobo: Trade Y1 R1 Alexcobo

11) MadWuher: Build Y1 Madwuher
	MadWuher: Quick question: Do your accounts all organize this game in the "opponents time is up" section?
	random56: 

12) random56: Trade R1 G1 Random56

13) alexcobo: Build R1 Alexcobo

14) MadWuher: Trade Y1 R1 Madwuher

15) random56: Build G1 Random56

16) alexcobo: Trade R1 B1 Alexcobo

17) MadWuher: Build G1 Madwuher

18) alexcobo: Discover R1 Alexcobo Y1 Waypoint

19) MadWuher: Build G1 Madwuher

20) alexcobo: Discover R1 Waypoint Y2 Wp

21) MadWuher: Discover G1 Madwuher B3 Edora

22) alexcobo: Move R1 Wp Random56

23) MadWuher: Build G2 Edora

24) alexcobo: Attack R1E Random56

25) MadWuher: Build G2 Edora

26) alexcobo: Attack G1E Random56
	alexcobo: I am trying to attack the r1 ship at random56 system, but I get this message "The R1 ship could not be found at random56 system"
	MadWuher: Stars and Ships are referred to by their colour and size (eg. R1, Y3) with the sole exception of the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E). Systems are referred to by their given names and are case insensitive.

27) MadWuher: Trade G2 Y2 Edora
	alexcobo: Thank you for your help!
I cancelled the call to Admin

28) alexcobo: Attack G1E Random56

29) MadWuher: Build G2 Edora

30) alexcobo: Trade G1 Y1 Random56

31) MadWuher: Trade G1 R1 Edora

32) alexcobo: Trade Y3 R3 Alexcobo

33) MadWuher: Build R2 Edora

34) alexcobo: Build R2 Alexcobo

35) MadWuher: Build R2 Madwuher

36) alexcobo: Build Y1 Alexcobo

37) MadWuher: Trade R2 Y2 Madwuher


38) alexcobo: Discover R1 Random56 G2 Aldebaran

39) MadWuher: Move R2 Edora Aldebaran

40) alexcobo: Sacrifice Y1 Alexcobo
Discover R1 Aldebaran G1 Antares

41) MadWuher: Build R2 Edora

42) alexcobo: Build R2 Antares

43) MadWuher: Trade R1 Y1 Edora

44) alexcobo: Build Y1 Random56

45) MadWuher: Trade Y1 B1 Edora

46) alexcobo: Build Y1 Alexcobo

47) MadWuher: Sacrifice Y1 Madwuher
Move B1 Edora Aldebaran

48) alexcobo: Discover R3 Alexcobo Y1 Waypoint

49) MadWuher: Sacrifice G2 Edora
Build Y2 Edora
Build Y2 Madwuher

50) alexcobo: Move R3 Waypoint Aldebaran

51) MadWuher: Sacrifice G2 Edora
Build R1 Aldebaran
Build R2 Aldebaran
Catastrophe Aldebaran R

52) alexcobo: Build B1 Alexcobo

53) MadWuher: Sacrifice Y2 Edora
Move B1 Aldebaran Antares
Move B1 Antares Alexcobo
Catastrophe Alexcobo B

54) alexcobo: Trade G1 B1 Random56

55) MadWuher: Move G3 Madwuher Alexcobo

56) alexcobo: Build R1 Alexcobo

57) MadWuher: Build G1 Alexcobo

58) alexcobo: Build Y1 Alexcobo

59) MadWuher: Sacrifice G3 Alexcobo
Build G1 Alexcobo
Build G2 Alexcobo
Build G2 Madwuher
Catastrophe Alexcobo G



11769)
Variants: "Hard time"
Started: 2008.9.23, Ended: 2008.10.1
Participants: alexcobo (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) alexcobo: Homeworld G2 B3 Y3

3) MadWuher: Build G1 Madwuher

4) alexcobo: Build Y1 Alexcobo

5) MadWuher: Trade G1 Y1 Madwuher

6) alexcobo: Trade Y1 B1 Alexcobo

7) MadWuher: Build G1 Madwuher

8) alexcobo: Build Y1 Alexcobo

9) MadWuher: Trade G1 R1 Madwuher

10) alexcobo: Discover B1 Alexcobo G1 Scorpia

11) MadWuher: Build G1 Madwuher

12) alexcobo: Build B1 Scorpia

13) MadWuher: Build G1 Madwuher

14) alexcobo: Build B1 Scorpia

15) MadWuher: Discover G1 Madwuher B3 Edora

16) alexcobo: Trade B1 Y1 Scorpia

17) MadWuher: Build G2 Edora

18) alexcobo: Build Y2 Scorpia

19) MadWuher: Sacrifice G2 Edora
Build G2 Edora
Build G2 Madwuher

20) alexcobo: Build Y2 Scorpia

21) MadWuher: Discover G2 Madwuher Y3 Bologna

22) alexcobo: Trade Y2 R2 Scorpia

23) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build G3 Edora
Build G3 Bologna

24) alexcobo: Build Y2 Scorpia

25) MadWuher: Trade G3 Y3 Edora

26) alexcobo: Build Y2 Alexcobo

27) MadWuher: Discover G2 Bologna R1 Camelot

28) alexcobo: Build R2 Scorpia

29) MadWuher: Sacrifice G3 Bologna
Build G3 Camelot
Build G3 Edora
Build Y3 Madwuher

30) alexcobo: Build B1 Scorpia

31) MadWuher: Sacrifice Y3 Madwuher
Move Y3 Edora Camelot
Move Y3 Camelot Alexcobo
Move G3 Camelot Alexcobo
Catastrophe Alexcobo Y



11780)
Variants: "Hard time"
Started: 2008.9.23, Ended: 2008.12.11
Participants: wyons (S), mneme (N)
Winner: wyons

1) mneme: Homeworld R1 B2 G3
	wyons: Hi there and goodness- you bring a lot of spectators with you!

2) wyons: Homeworld B1 R3 G3
	mneme: So it seems.  I'm not quite sure where they came from -- maybe my matches against twoshort?  (almost beat him last time, too)
	mneme: (hmm.  Actually, are you sure?  Don't see any right now)

3) mneme: Build G1 Mneme
	wyons: yep, my display is showing 10 spectators...
	mneme: ah, it is now.  w3rd; didn't see them before.

4) wyons: Build G1 Wyons

5) mneme: Trade G1 R1 Mneme

6) wyons: Trade G1 R1 Wyons

7) mneme: Build R2 Mneme

8) wyons: Build R2 Wyons

9) mneme: Trade R2 Y2 Mneme

10) wyons: Trade R2 Y2 Wyons

11) mneme: Build R2 Mneme

12) wyons: Build R2 Wyons

13) mneme: Discover R2 Mneme G3 Bootiful

14) wyons: Discover R2 Wyons G2 Chillies

15) mneme: Discover R1 Mneme Y3 Poet

16) wyons: Trade R1 B1 Wyons

17) mneme: Build Y1 Mneme

18) wyons: Build B1 Wyons

19) mneme: Trade Y2 B2 Mneme

20) wyons: Discover B1 Wyons B2 Trueblues

21) mneme: Move B2 Mneme Bootiful

22) wyons: Build B3 Wyons

23) mneme: Build B3 Bootiful

24) wyons: Move B1 Wyons Chillies

25) mneme: Trade B2 Y2 Bootiful

26) wyons: Build B2 Chillies

27) mneme: Discover Y1 Mneme B3 Holdover

28) wyons: Trade B3 Y3 Wyons

29) mneme: Build Y1 Bootiful

30) wyons: Build B3 Chillies

31) mneme: Move B3 Bootiful Chillies
Catastrophe Chillies B

32) wyons: Move Y3 Wyons Chillies

33) mneme: Move Y1 Bootiful Mneme
	mneme: bah.  I was better off making you make that move.  

34) wyons: Build Y1 Wyons
	wyons: hmm yes, I think you are probably right. But there is still everything to play for.

35) mneme: Sacrifice G3 Mneme
Build Y2 Holdover
Build Y3 Mneme
Build R1 Bootiful

36) wyons: Move Y3 Chillies Bootiful

37) mneme: Sacrifice Y2 Bootiful
Move R1 Bootiful Trueblues
Discover R2 Bootiful Y2 Desert

38) wyons: Sacrifice B1 Trueblues
Trade Y2 R2 Wyons

39) mneme: Trade R1 G1 Trueblues

40) wyons: Build Y2 Wyons

41) mneme: Trade Y2 G2 Holdover

42) wyons: Build Y2 Bootiful

43) mneme: Discover Y1 Mneme R3 Haze

44) wyons: Trade R2 G2 Wyons

45) mneme: Build G1 Trueblues

46) wyons: Discover G2 Wyons B2 Neverbeseen

47) mneme: Trade G1 B1 Trueblues

48) wyons: Trade Y1 B1 Wyons

49) mneme: Build Y1 Holdover

50) wyons: Build G1 Wyons

51) mneme: Trade G1 R1 Trueblues

52) wyons: Trade G3 R3 Wyons

53) mneme: Sacrifice Y1 Haze
Move R1 Trueblues Wyons

54) wyons: Build Y1 Bootiful

55) mneme: Trade Y3 G3 Mneme

56) wyons: Trade R3 Y3 Wyons
	wyons: I'm enjoying this. You are a tough nut.
	mneme: Thanks.  It's a good game.
I do try not to make too many mistakes.

57) mneme: Sacrifice G2 Holdover
Build R2 Wyons
Build R3 Desert

58) wyons: Build R3 Chillies

59) mneme: Move Y1 Holdover Mneme

60) wyons: Move Y1 Bootiful Chillies

61) mneme: Attack B1 Wyons

62) wyons: Sacrifice R2 Chillies
Attack R2N Wyons
Attack B1N Wyons

63) mneme: Move R2 Desert Wyons
Catastrophe Wyons R

64) wyons: Trade Y2 R2 Wyons

65) mneme: Build Y2 Mneme

66) wyons: Move B1 Wyons Bootiful

67) mneme: Sacrifice Y1 Mneme
Discover B1 Trueblues G3 Pretty

68) wyons: Move R3 Chillies Pretty
	wyons: that was your turn to put me in check!

69) mneme: Sacrifice Y1 Holdover
Discover B1 Pretty G1 Giggle
	mneme: pretty much.

70) wyons: Sacrifice Y1 Chillies
Move R3 Pretty Giggle
	mneme: bah.  You're too good a player for me to try that trick and hope you won't see the escape.

71) mneme: Sacrifice B1 Giggle
Trade R1 B1 Poet
	wyons: this is very close, I think.

72) wyons: Move Y2 Bootiful Giggle
	mneme: Indeed.

73) mneme: Build G1 Mneme

74) wyons: Build G2 Wyons

75) mneme: Build Y1 Mneme

76) wyons: Build Y1 Bootiful

77) mneme: Discover Y2 Mneme G3 Emerald

78) wyons: Build Y1 Giggle

79) mneme: Move G1 Mneme Emerald

80) wyons: Build G2 Neverbeseen

81) mneme: Move G1 Emerald Mneme

82) wyons: Sacrifice G2 Neverbeseen
Build R1 Giggle
Build R1 Wyons

83) mneme: Move G1 Mneme Poet

84) wyons: Build G2 Neverbeseen

85) mneme: Move G1 Poet Desert

86) wyons: Sacrifice Y2 Giggle
Move R3 Giggle Emerald
Move R2 Wyons Poet

87) mneme: Sacrifice Y2 Emerald
Move B1 Poet Desert
Pass

88) wyons: Sacrifice G2 Neverbeseen
Build Y2 Giggle
Build Y2 Giggle

89) mneme: Build G2 Mneme

90) wyons: Sacrifice Y3 Bootiful
Move Y1 Bootiful Desert
Move Y1 Giggle Desert
Move Y2 Giggle Desert
Catastrophe Desert Yellow

91) mneme: Trade G2 B2 Mneme

92) wyons: Build B1 Bootiful

93) mneme: Discover B2 Mneme Y3 Knife
	wyons: that should at least churn things up a bit. I think I have been playing more like a boar constrictor than a cobra....
	mneme: Don't sell yourself short -- I got nothing here.  But I can hope you'll blunder.


94) wyons: Build B3 Bootiful

95) mneme: Build G1 Mneme
	wyons: and of course a blunder is well possible.

96) wyons: Sacrifice Y2 Giggle
Move R3 Emerald Mneme
Move B3 Bootiful Mneme

	mneme: good game
	wyons: oh it was a super game - I dont mind admitting that I totted up hours looking at it. You also taught me a bit- particularly the value of g2s. And I thought you stemmed off the blue monopoly attack masterfully. At the end of course you were stuck with a fork between developing blue or red and elected blue- I think developing red would also not have worked at that stage (because of what I could then do with blue). Thanks very much though, I really enjoyed it!
	mneme: I'm glad.  The endgame was a bit painful (yay, walking wounded), but yeah -- it was superb.

I love g2s, yeah -- they let you threaten larges without saccing your own larges -- which does -so- many things, even aside from, you know, the ability to get more larges.



11819)
Variants: "Hard time"
Started: 2008.9.26, Ended: 2008.10.29
Participants: Keith (S), Danner (N)
Winner: Danner

1) Danner: Homeworld R1 B2 G3

2) Keith: Homeworld Y2 B3 G3
	Danner: Hi! Good luck!
	Keith: Thank you. May you do your best.

3) Danner: Build G1 Danner

4) Keith: Build G1 Keith

5) Danner: Trade G1 Y1 Danner

6) Keith: Trade G1 Y1 Keith

7) Danner: Build G1 Danner

8) Keith: Build G1 Keith

9) Danner: Trade G1 R1 Danner

10) Keith: Trade G1 R1 Keith

11) Danner: Build R2 Danner

12) Keith: Build R2 Keith

13) Danner: Discover R2 Danner Y3 Sun

14) Keith: Build G1 Keith

15) Danner: Build G1 Danner

16) Keith: Discover G1 Keith Y1 Kiro

17) Danner: Build Y2 Danner

18) Keith: Move R2 Keith Kiro

19) Danner: Discover Y1 Danner G3 Earth

20) Keith: Move R2 Kiro Earth

21) Danner: Sacrifice G3 Danner
Build Y2 Earth
Build Y3 Earth
Build Y3 Danner

22) Keith: Attack Y2 Earth
	Keith: Oh my.  I knew my rating no longer relfected my Homeworlds ability.  I have just been too inactive.  However, I thought I would still be able to give you more of a challenge than this.

23) Danner: Sacrifice R2 Sun
Attack R2 Earth
Attack Y2 Earth

24) Keith: Discover Y1 Keith B1 Dimm
	Danner: If you are interested, I can give you a link where Homeworlds strategies can be found, so you can regain your abilities. (In fact, I haven't read them due to lack of time, but I'm going to do so)
	Keith: I would like to have the link.  I have read what I could find on strategy.  The area i am primarily falling short in from being out of practice is not being able to see 4+ moves ahead anymore.

25) Danner: Move Y3 Earth Dimm
	Danner: http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy
It's from MadWuher.

	Keith: Thanks for the link.  I am too far gone here.  By the way I evaluate material you have about a 3x material advantage and are about to make significant gains.

If I decide to reinvest in Homeworlds I will come looking for a rematch.
	Danner: Thanks for the game. You can challenge me anytime.


11745)
Started: 2008.10.3, Ended: 2008.10.29
Participants: MadWuher (S), MatrixFrog (N)
Winner: MadWuher

1) MatrixFrog: Homeworld B2 G1 Y3

2) MadWuher: Homeworld R1 B3 G3

3) MatrixFrog: Build Y1 Matrixfrog

4) MadWuher: Build G1 Madwuher

5) MatrixFrog: Build Y1 Matrixfrog

6) MadWuher: Trade G1 Y1 Madwuher

7) MatrixFrog: Discover Y1 Matrixfrog G3 Time

8) MadWuher: Build Y2 Madwuher

9) MatrixFrog: Build Y2 Time

10) MadWuher: Build G1 Madwuher

11) MatrixFrog: Trade Y1 B1 Matrixfrog

12) MadWuher: Discover G1 Madwuher B2 Edora

13) MatrixFrog: Build Y1 Matrixfrog

14) MadWuher: Move Y2 Madwuher Edora

15) MatrixFrog: Build B1 Matrixfrog

16) MadWuher: Build Y2 Madwuher

17) MatrixFrog: Trade B1 R1 Matrixfrog

18) MadWuher: Build Y3 Edora

19) MatrixFrog: Build B1 Matrixfrog

20) MadWuher: Trade Y1 R1 Madwuher

21) MatrixFrog: Trade B1 G1 Matrixfrog

22) MadWuher: Build G2 Madwuher

23) MatrixFrog: Discover Y2 Time G2 Space

24) MadWuher: Discover G1 Edora Y3 Bologna

25) MatrixFrog: Build B1 Matrixfrog

26) MadWuher: Sacrifice G3 Madwuher
Build G2 Bologna
Build G3 Madwuher
Build Y1 Madwuher

27) MatrixFrog: Discover G1 Matrixfrog G3 Dreams

28) MadWuher: Move R1 Madwuher Edora

29) MatrixFrog: Move Y1 Time Space

30) MadWuher: Sacrifice Y2 Edora
Move G2 Bologna Edora
Discover G2 Edora G3 Camelot

31) MatrixFrog: Sacrifice Y3 Matrixfrog
Move Y1 Space Madwuher
Move Y2 Space Madwuher
Discover G1 Dreams Y2 Cheese
Catastrophe Madwuher Y

32) MadWuher: Sacrifice G3 Madwuher
Build G2 Camelot
Build G3 Bologna
Build G3 Madwuher

33) MatrixFrog: Move G1 Cheese Camelot
Catastrophe Camelot G

34) MadWuher: Move G3 Bologna Matrixfrog

35) MatrixFrog: Move B1 Matrixfrog Bologna

36) MadWuher: Sacrifice R1 Edora
Attack R1 Matrixfrog

	MadWuher: Thanks for the game. Want to play another???
	MatrixFrog: To be honest... not really


11707)
Started: 2008.10.4, Ended: 2009.10.13
Participants: MikeYarrum (S), Nupanick (N)
Winner: Nupanick

1) Nupanick: Homeworld G3 B1 Y3

	Nupanick: Yeah... You start lots of games.


11474)
Started: 2008.10.6, Ended: 2008.11.6
Participants: MadWuher (S), hasse (N)
Winner: MadWuher

1) hasse: Homeworld B1 G3 Y3

2) MadWuher: Homeworld R1 B2 G3

3) hasse: Build Y1 Hasse

4) MadWuher: Build G1 Madwuher

5) hasse: Discover Y3 Hasse G2 Qwerty

6) MadWuher: Trade G1 Y1 Madwuher

7) hasse: Build Y1 Hasse

8) MadWuher: Build Y2 Madwuher

9) hasse: Trade Y1 R1 Hasse

10) MadWuher: Build G1 Madwuher

11) hasse: Build R1 Hasse

12) MadWuher: Discover Y2 Madwuher B3 Edora

13) hasse: Move R1 Hasse Qwerty

14) MadWuher: Move G1 Madwuher Edora

15) hasse: Move Y3 Qwerty Edora

16) MadWuher: Discover Y2 Edora B2 Bologna

17) hasse: Build Y1 Hasse

18) MadWuher: Build Y2 Madwuher

19) hasse: Move Y1 Hasse Qwerty

20) MadWuher: Build Y2 Madwuher

21) hasse: Move Y3 Edora Madwuher
Catastrophe Madwuher Yellow

22) MadWuher: Build G1 Madwuher

23) hasse: Build Y1 Qwerty

24) MadWuher: Build G1 Edora

25) hasse: Move Y1 Qwerty Edora

26) MadWuher: Build G2 Madwuher

27) hasse: Move R1 Qwerty Edora

28) MadWuher: Sacrifice G3 Madwuher
Build G2 Edora
Build G3 Madwuher
Build Y2 Bologna

29) hasse: Attack G1 Edora

30) MadWuher: Sacrifice G2 Madwuher
Build G2 Edora
Build G3 Madwuher
Catastrophe Edora G

31) hasse: Build Y2 Qwerty

32) MadWuher: Move Y2 Bologna Hasse

33) hasse: Build R2 Hasse

34) MadWuher: Sacrifice G3 Madwuher
Build Y3 Bologna
Build Y3 Hasse
Build Y3 Hasse
Catastrophe Hasse Y

35) hasse: Move Y2 Qwerty Edora

36) MadWuher: Trade Y2 R2 Bologna

37) hasse: Trade Y2 G2 Edora

38) MadWuher: Move Y3 Bologna Hasse

39) hasse: Trade R1 Y1 Hasse

40) MadWuher: Sacrifice R2 Bologna
Attack R2 Hasse
Attack Y1 Hasse

	MadWuher: Hasse, I'd recommend not letting your size 3 ship out of your home system. You should always keep it home (and have a red ship elsewhere) so you can secure your homeworld. By moving it out (and by me destroying your size 3 ship), it made it possible for me to take over your home planet (while you are left trying to get back up to a size 3 ship). Do you want to try again?


11582)
Started: 2008.10.7, Ended: 2008.10.26
Participants: MadWuher (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) MadWuher: Homeworld B1 R2 G3
	TwoShort: Howdy
	MadWuher: Hey there. It's been a while.

3) TwoShort: Build G1 Twoshort

4) MadWuher: Build G1 Madwuher

5) TwoShort: Trade G1 Y1 Twoshort

6) MadWuher: Trade G1 Y1 Madwuher

7) TwoShort: Build G1 Twoshort

8) MadWuher: Build G1 Madwuher

9) TwoShort: Discover G1 Twoshort Y2 Yolonda

10) MadWuher: Discover G1 Madwuher Y3 Edora

11) TwoShort: Build Y1 Twoshort

12) MadWuher: Build Y2 Madwuher

13) TwoShort: Discover Y1 Twoshort G2 Grogar

14) MadWuher: Discover Y1 Madwuher G3 Bologna

15) TwoShort: Build G1 Twoshort

16) MadWuher: Build G2 Madwuher


17) TwoShort: Discover G1 Yolonda Y3 Yak

18) MadWuher: Sacrifice G2 Madwuher
Build G2 Madwuher
Build Y2 Bologna

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build Y2 Grogar
Build Y3 Twoshort

20) MadWuher: Sacrifice G1 Edora
Build Y3 Madwuher

21) TwoShort: Discover Y1 Grogar G3 Grody

22) MadWuher: Discover G2 Madwuher B3 Edora

23) TwoShort: Sacrifice G1 Yak
Build Y3 Grody

24) MadWuher: Move Y3 Madwuher Edora

25) TwoShort: Trade G1 R1 Twoshort

26) MadWuher: Build G1 Edora

27) TwoShort: Sacrifice Y2 Grogar
Discover Y3 Grody R1 Gunrule
Move Y3 Gunrule Edora

28) MadWuher: Build Y2 Edora

29) TwoShort: Trade Y3 R3 Edora

30) MadWuher: Sacrifice Y2 Edora
Discover Y3 Edora R2 Camelot
Move G2 Edora Camelot

31) TwoShort: Trade Y1 B1 Twoshort

32) MadWuher: Sacrifice G1 Edora
Build Y1 Madwuher

33) TwoShort: Sacrifice G2 Twoshort
Build Y2 Twoshort
Build Y3 Grody

34) MadWuher: Trade Y2 B2 Madwuher

35) TwoShort: Trade Y2 R2 Twoshort

36) MadWuher: Build Y2 Camelot

37) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Grody Madwuher
Move R3 Edora Madwuher
Pass

38) MadWuher: Sacrifice Y2 Camelot
Move Y1 Bologna Madwuher
Move Y2 Bologna Madwuher

39) TwoShort: Sacrifice R2 Twoshort
Attack G3S Madwuher
Attack Y2S Madwuher
	TwoShort: I think that's checkmate; thanks for the game.  You had me really worried for a while there.
	MadWuher: If I might ask, where did I make my first bonehead move?
I see that you like to move ships to planets of size 3 right away (and of course it puts the pressure on me). Any comments or hints as to when you came up with your strategy here?
	MadWuher: Since it's game. Want to go for a big bang? Suppose we fill up my system with as many ships as possible (I think the max is 16, but I digress) and do one giant catastrophe. Up for it?

40) MadWuher: Sacrifice G2 Camelot
Build B1 Madwuher
Build B2 Madwuher
	TwoShort: Eh... I'm not that intrigued by a big catastrophe; but I'll always rehash strategy :)

I didn't come up with this specific strategy until two moves ago when I took the R2; but I basically always try to get more big stuff in range of moving in than you can take in one turn, and get a sacable R2 in the backfield; and also some ships of the color of the other guys stars and a bunch of big yellow.  I just try to push whatever threats I can.  So as far as where you went wrong, it's where I was able to switch from making the moves you forced me to, to making ones that forced you to do things.  
  You were doing well when I took the r1: it was because I couldn't figure out how to stop you from getting more 3 points than me.  According to the "Gun Rule" (if the other guy draws a gun, draw your gun), you should have taken a red yourself, which would have thrown you off your grow pace only slightly, but it was the best I could do.  When you didn't take the red, I was able to jump on the offensive and force the action a few turns.  Once you got your ships out of there to Camelot though, you were back in control: poised to sacrifice your G2 to take the remaining y2 & y3, which would have given you a commanding lead in 3s and in yellow.  So I flipped the y1 to blue mainly to put it back in the stash and force you to use the g3 if you wanted all that yellow, which would have been more painful, but you probably should have done it.  At the least, you should not have taken the y1 there. Letting me take the big Ys is probably the move I'd say decided the game.  Obviously you didn't see the threat represented by my taking the r2, but by that point the defense options would have been pretty drastic and probably just delayed the inevitable. 

Hmmm, did I mention a willingness to yack on about Homeworlds strategy?

41) TwoShort: Sacrifice G3 Madwuher
Build R1 Madwuher
Build R2 Madwuher
Pass
Catastrophe Madwuher Blue
Catastrophe Madwuher Yellow
Catastrophe Madwuher Red
	MadWuher: Time for a quick death....... and bow out gracefully.
	MadWuher: RUNNNNN!!!!!!
	MadWuher: ARGH!!!!! I am trying to go out either in a blaze of glory, or just by running away, but it won't allow me to leave the system undefended. =(

Oh well, guess you get to take me out in style....

	TwoShort: Thanks for the game!
	MadWuher: Anytime..... Still trying to figure out the multitude of strategies that people use. If I might ask, how many moves ahead do you typically plan out. Another few questions, since you are the highest rated player here, do you find yourself using any similar game ending moves against your opponents?
	TwoShort: Hmmm, I don't really plan ahead in the sense of a strategy I'm going to follow; I'll re-evaluate that each turn.  As far as thinking ahead the results of a particular move, for the critical ones I'll set it up, make my move, and look through the responses I see, playing out the most obvious chain of moves.  But generally I don't think you need to look at much more than a couple moves ahead.  In most cases, a Homeworlds player has so much power to affect the board that purely tactical advantages are short lived;  If I'm trading material for position, I want to be pretty sure I see a payoff that gets me back to a material advantage in fairly short order.
  As far as ending moves... My basic strategy is to threaten to blow up stars or move in and sacrifice red so they'll be forced to spend moves dealing with the threats and I can take more pieces.  If that works you eventually get enough of an advantage that they can't stop everything.  But at least as often, they don't notice that I'm forcing them to do something particular or be destroyed, and they do something else.  That seems to most often be leaving themselves open for me to move in more big pieces than they can take in a turn while I have a big red in my backfield.
  But really, the actual game-ending sequence is usually academic; it's just a matter of what turns out to work for the guy in control of the game, which is generally the guy with more 3 pointers. 


11893)
Started: 2008.10.10, Ended: 2008.10.24
Participants: shadowfirebird (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) shadowfirebird: Homeworld Y3 B2 G3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort

4) shadowfirebird: Build G1 Shadowfirebird
	shadowfirebird: Hi there.  What is it about Homeworlds that people either seem to love it or hate it?  I've got a bunch of gamer friends, but none of them will play :(

5) TwoShort: Trade G1 Y1 Twoshort

6) shadowfirebird: Trade G1 B1 Shadowfirebird

7) TwoShort: Build G1 Twoshort

8) shadowfirebird: Build G1 Shadowfirebird
	TwoShort: Hmmm, not sure... I too have a bunch of gamer friends who aren't that into pure abstract strategy games.  I don't suppose you're in Colorado?
	shadowfirebird: Unfortunately, no -- Manchester, UK!

9) TwoShort: Build Y1 Twoshort

10) shadowfirebird: Build B1 Shadowfirebird

11) TwoShort: Trade G1 B1 Twoshort

12) shadowfirebird: Trade B1 G1 Shadowfirebird

13) TwoShort: Build G1 Twoshort

14) shadowfirebird: Discover B1 Shadowfirebird Y1 Frogstarb

15) TwoShort: Discover Y1 Twoshort G3 Grogar

16) shadowfirebird: Move G1 Shadowfirebird Frogstarb
	shadowfirebird: Sorry.  Very rude of me.  I'll try not to do that in future.  It's not as if I don't have two weeks to move or anything!

17) TwoShort: Build Y2 Grogar

18) shadowfirebird: Build G2 Frogstarb
	TwoShort: Actually, I don't mind at all.  I myself periodically notice something bad about a move immediately after I make it, and I'd like to feel free to hit undo in those situations.  It will only let you hit it once per move; and just naturally you don't wind up doing it except right after making a move, so the chances of the other guy putting much time into considering the wrong position are inherently small.  So anyway, don't worry about it, and be advised that I won't. :)

19) TwoShort: Discover Y2 Grogar B1 Bluestar
	shadowfirebird: Cool.

20) shadowfirebird: Trade G2 B2 Frogstarb

21) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y2 Grogar
Build Y3 Twoshort

22) shadowfirebird: Move B1 Frogstarb Shadowfirebird

23) TwoShort: Trade Y3 G3 Twoshort
	shadowfirebird: Gaah.  I think I'm outclassed  :)

24) shadowfirebird: Sacrifice G3 Shadowfirebird
Build B3 Frogstarb
Build B3 Frogstarb
Build B3 Shadowfirebird

25) TwoShort: Sacrifice G3 Twoshort
Build Y3 Twoshort
Build Y3 Bluestar
Build G2 Twoshort
	shadowfirebird: Either I've just made the smartest move of my life or the dumbest.  

26) shadowfirebird: Sacrifice B2 Frogstarb
Trade B3 G3 Frogstarb
Trade B3 R3 Shadowfirebird

27) TwoShort: Trade Y2 B2 Bluestar

28) shadowfirebird: Move R3 Shadowfirebird Bluestar

29) TwoShort: Sacrifice Y2 Bluestar
Move B2 Bluestar Shadowfirebird
Move Y3 Bluestar Shadowfirebird

30) shadowfirebird: Build B3 Shadowfirebird
Catastrophe Shadowfirebird B

31) TwoShort: Sacrifice G2 Twoshort
Build Y2 Shadowfirebird
Build Y2 Shadowfirebird
Catastrophe Shadowfirebird Yellow

	TwoShort: Yeah, the yellow monopoly is pretty devastaing.   Thanks for the game!
	shadowfirebird: Any time!


11864)
Started: 2008.10.10, Ended: 2009.2.11
Participants: MikeYarrum (S), shadowfirebird (N)
Winner: shadowfirebird

1) shadowfirebird: Homeworld G3 B1 Y3

	shadowfirebird: Hi!  I'm afraid I'm unlikely to be much of a challenge... Frankly it's just nice to be playing Homeworlds -- I can't persuade anyone else here to play!
	shadowfirebird: I'm new to the site and clicked on a challenge only to find that MikeYarrum hasn't been active for 103 days.
Is there any way you can remove his standing challenges from the challenge page?
	Aaron: I am very sorry for the delayed response, shadow.  Things have been a little crazy over here.  I will suspend his standing challenges.  Thanks, and welcome!


11781)
Started: 2008.10.22, Ended: 2009.3.3
Participants: smilingra (S), MadWuher (W), alexcobo (N), shadowfirebird (E)
Winner: MadWuher

1) alexcobo: Homeworld G3 B2 Y3

2) shadowfirebird: Homeworld B2 Y1 G3

3) smilingra: Homeworld R3 B2 Y3 *
	shadowfirebird: Hi all!

4) MadWuher: Homeworld R1 B3 G3
	smilingra: Welcome!  I've seem to have had problems in my last two games with not taking my turn in a timely manner (due to very extenuating circumstances); hope to respond quickly and have a fun game!

5) alexcobo: Build Y1 Alexcobo
	MadWuher: Glad to see we got a game going. =)

6) shadowfirebird: Build G1 Shadowfirebird

7) smilingra: Trade Y3 G3 Smilingra
	shadowfirebird: I've just played out my first 3 person game in RL and I couldn't believe how *long* it took.  Or how complicated it was!
	smilingra: Be prepared for a month or two of some delightful decision-making!

8) MadWuher: Build G1 Madwuher
	smilingra: grrr... wasted a whole move there by being dumb with the setup!  It's true that I needed green and blue tech; what was I thinking?

9) alexcobo: Trade Y1 R1 Alexcobo
	MadWuher: Woo hoo...... Month of fun? Here we go......

10) shadowfirebird: Trade G1 B1 Shadowfirebird

11) smilingra: Build G1 Smilingra

12) MadWuher: Trade G1 Y1 Madwuher
	shadowfirebird: Hmm.  Am I missing something or is there no way to send conspiratorial notes to other players?

13) alexcobo: Build Y1 Alexcobo

14) shadowfirebird: Build G1 Shadowfirebird

15) smilingra: Build G1 Smilingra

16) MadWuher: Build G1 Madwuher

17) alexcobo: Trade Y1 G1 Alexcobo

18) shadowfirebird: Trade G1 Y1 Shadowfirebird

19) smilingra: Trade G1 Y1 Smilingra

20) MadWuher: Trade G1 B1 Madwuher

21) alexcobo: Build R1 Alexcobo

22) shadowfirebird: Build G1 Shadowfirebird

23) smilingra: Discover G1 Smilingra B1 Alpha

24) MadWuher: Build G1 Madwuher

25) alexcobo: Move R1 Alexcobo Alpha

26) shadowfirebird: Build B1 Shadowfirebird

27) smilingra: Build G1 Smilingra

28) MadWuher: Discover G1 Madwuher B2 Beta

29) alexcobo: Attack G1S Alpha

30) shadowfirebird: Build G2 Shadowfirebird
	shadowfirebird: build g2 shadowfirebird

31) smilingra: Trade G1 R1 Smilingra
	shadowfirebird: Huh.  Not enough sleep, obviously.

32) MadWuher: Move B1 Madwuher Beta

33) alexcobo: Build Y1 Alexcobo

34) shadowfirebird: Discover G2 Shadowfirebird B3 Formica
	MadWuher: I guess I cannot blame hitting the UNDO button on lack of sleep. Will "my kid grabbed a hold of the mouse" do?

35) smilingra: Build Y2 Smilingra

36) MadWuher: Build Y2 Madwuher

37) alexcobo: Move Y1 Alexcobo Alpha

38) shadowfirebird: Build Y2 Shadowfirebird

39) smilingra: Move Y2 Smilingra Alpha

40) MadWuher: Trade Y2 R2 Madwuher

41) alexcobo: Build Y2 Alexcobo
	MadWuher: shadowfirebird, I'm so tempted to create a blue catastrophe in your home system and leave you open to a one system jump from the other two players homeworlds. I'll wait a day and see if anything else comes to mind (ie, you ask me not to, if the others want to start a bloodbath right away, etc...) 
	alexcobo: Blood! Blood! Blood! Blood! Blood!
	shadowfirebird: Well, of course I'm going to ask you not to. :)
I would also suggest that at this stage of the game it would leave you with no 2-point pieces and make you vulnerable to attacks from other others later.  (Which may be why Alex is screaming for blood.  Or maybe he does that all the time, I don't know.)



	shadowfirebird: You could also build another y2.  Only Smilinggra and I have y2s at the moment, and neither of us have (another) yellow piece out of their home system, so that should be safe; it would put you ahead in the piece-gathering part of the game.
But, of course, you should do what you think is best...
	MadWuher: alexcobo? Any input? =D

42) shadowfirebird: Sacrifice Y1 Shadowfirebird
Move B1 Shadowfirebird Formica
	MadWuher: Though it would be fun to start the blood early, I figure, if we're going to enjoy the game, I better put together a more devious long term plan (Just you wait....... You'll get yours...... heh heh)
	shadowfirebird: Figure I will, if I'm going to make mistakes like that...
	alexcobo: I really do not think so far ahead when I play, so I have no devious scheme in mind yet.
And yes: I always scream for blood (specialy when I know it will not be mine) >:¬)

43) smilingra: Sacrifice R1 Smilingra
Attack R1N Alpha

44) MadWuher: Move R2 Madwuher Beta
	shadowfirebird: Thus removing temptation and slowing the run on y2s at one go...
	smilingra: Blood!  Blood!  (sound of crickets chirping)
Crap! I knew I should have logged in earlier...

45) alexcobo: Sacrifice R1 Alexcobo
Attack R1S Alpha

46) shadowfirebird: Trade G1 R1 Shadowfirebird

47) smilingra: Trade Y2 R2 Alpha

48) MadWuher: Build G1 Madwuher
	shadowfirebird: Goodness! Such violence!  :)


49) alexcobo: Trade Y2 B2 Alexcobo
	smilingra: And it's only just begun... :)

50) shadowfirebird: Build G1 Formica
	MadWuher: And here I thought we were playing for fun. =)

51) smilingra: Attack G1N Alpha

52) MadWuher: Build G2 Beta
	shadowfirebird: Well, we Shadowfirebirdians are a peaceful people.  Sarcastic, but peaceful...

53) alexcobo: Attack G1S Alpha

54) shadowfirebird: Trade G2 R2 Formica

55) smilingra: Attack R1N Alpha

56) MadWuher: Sacrifice G2 Beta
Build G2 Beta
Build R1 Beta

57) alexcobo: Sacrifice Y1 Alpha
Discover G1 Alpha B3 Alba

58) shadowfirebird: Build G2 Shadowfirebird
	shadowfirebird: You know, I'm not sure it should have let you do that, strictly speaking.  After you sacrificed the G2 you didn't have any green ships in beta.
	shadowfirebird: Oh wait, forget I said anything so dumb.  Yes you did.
	alexcobo: I know this will put me in a weak position... but I always scream for blood...
	alexcobo: Duh! Well... It would have left me in an even weaker position if I could pull it off... :-(

59) smilingra: Build G2 Smilingra

60) MadWuher: Trade R1 Y1 Beta
	shadowfirebird: The SHadowfirebirdianians welcome their new neighbours with open arms and weapons ports -- which is a sign of friendship, of course...

61) alexcobo: Build G2 Alba

62) shadowfirebird: Sacrifice Y2 Shadowfirebird
Move B1 Shadowfirebird Alba
Move G2 Shadowfirebird Alba

63) smilingra: Build Y1 Smilingra

64) MadWuher: Discover G2 Beta Y3 Gamma
	shadowfirebird: The shadowfirebirdian embassy would like to apologise for this unfortunate navigational error.  Be assured we will rectify the situation as soon as possible.

65) alexcobo: Build Y2 Alexcobo

66) shadowfirebird: Trade G2 Y2 Alba

67) smilingra: Move Y1 Smilingra Alpha

68) MadWuher: Sacrifice G3 Madwuher
Build G2 Beta
Build G2 Gamma
Build G3 Madwuher

69) alexcobo: Trade G1 R1 Alba

70) shadowfirebird: Sacrifice R1 Shadowfirebird
Attack G2N Alba

71) smilingra: Build Y2 Smilingra

72) MadWuher: Build Y2 Madwuher

73) alexcobo: Attack B1E Alba

74) shadowfirebird: Move G2 Alba Shadowfirebird

75) smilingra: Move R2 Alpha Gamma

76) MadWuher: Sacrifice R2 Beta
Attack R2S Gamma
Pass
	shadowfirebird: ::sigh:: so many wasted moves...

77) alexcobo: Discover Y2 Alexcobo G1 Green

78) shadowfirebird: Build G3 Formica
	MadWuher: What is this intrusion upon my turf? For this, you will be punished. So says the harbinger of DOOM!!!

79) smilingra: Trade Y2 R2 Smilingra

80) MadWuher: Move B1 Beta Gamma
	shadowfirebird: Thanks for the freebie, Alex...
	smilingra: uh, we meant nothing by that... got off-course, or something...

81) alexcobo: Build Y2 Green

82) shadowfirebird: Trade G2 R2 Shadowfirebird

83) smilingra: Move R2 Smilingra Alpha

84) MadWuher: Discover G2 Beta Y3 Delta
	shadowfirebird: first things first...

85) alexcobo: Build Y2 Alexcobo

86) shadowfirebird: Sacrifice G1 Formica
Build Y3 Alba

87) smilingra: Build Y3 Smilingra

88) MadWuher: Sacrifice G3 Madwuher
Build G1 Delta
Build G2 Beta
Build G3 Madwuher

89) alexcobo: Sacrifice Y2 Alexcobo
Move Y2 Green Alba
Move Y2 Green Alba
Catastrophe Alba Y
	shadowfirebird: Ta again Alex ;)

90) shadowfirebird: Trade R2 Y2 Formica

91) smilingra: Build G1 Smilingra

92) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R1 Gamma
Build Y2 Beta
	alexcobo: No strategy! No technique! No plan! Just being anoying... :-)

93) alexcobo: Build Y2 Alexcobo

94) shadowfirebird: Build Y2 Formica

95) smilingra: Move G2 Smilingra Alpha

96) MadWuher: Discover G2 Beta Y3 Juniper

97) alexcobo: Trade B2 R2 Alexcobo

98) shadowfirebird: Move Y2 Formica Shadowfirebird

99) smilingra: Sacrifice Y3 Smilingra
Move G1 Smilingra Alpha
Move G1 Alpha Alexcobo
Move G2 Alpha Alexcobo
Catastrophe Alexcobo G

100) MadWuher: Discover Y2 Madwuher B2 Jessica

101) alexcobo: Discover Y2 Alexcobo G3 G3

102) shadowfirebird: Build Y3 Formica
	smilingra: had to shake things up a bit...

103) smilingra: Move R2 Alpha G3

104) MadWuher: Sacrifice G2 Juniper
Build Y3 Jessica
Build G1 Beta

105) alexcobo: Trade B1 G1 Alba

106) shadowfirebird: Build R1 Shadowfirebird

107) smilingra: Attack Y2N G3

108) MadWuher: Move R1 Gamma Beta

109) alexcobo: Build G2 Alba

110) shadowfirebird: Sacrifice Y2 Shadowfirebird
Move Y3 Formica Shadowfirebird
Move Y3 Shadowfirebird Alba

111) smilingra: Discover R2 G3 Y2 Epsilon

112) MadWuher: Discover G1 Beta R3 Talbot

113) alexcobo: Sacrifice G2 Alba
Build R2 Alba
Build R3 Alba

114) shadowfirebird: Sacrifice R2 Shadowfirebird
Attack R3N Alba
Attack R2N Alba

115) smilingra: Move R1 Alpha Epsilon

116) MadWuher: Sacrifice G3 Madwuher
Build G2 Beta
Build G2 Talbot
Build G3 Madwuher

117) alexcobo: Build R2 Alba
Catastrophe Alba R

118) shadowfirebird: Build R1 Shadowfirebird

119) smilingra: Move R2 Epsilon Delta

120) MadWuher: Sacrifice R2 Gamma
Attack R2S Delta
Pass

121) alexcobo: Sacrifice G1 Alba
Build R2 Alexcobo

122) shadowfirebird: Build G1 Shadowfirebird

123) smilingra: Trade Y1 B1 Alpha

124) MadWuher: D G2 Beta B3 Magna

125) alexcobo: Move R2 Alexcobo Gamma
	alexcobo: Mommy, why do all the other kids have more ships than I do? :'-(
	shadowfirebird: ::grin:: my personal theory?  This only *looks* like a space combat game.

126) shadowfirebird: Sacrifice Y2 Formica
Move Y3 Alba Shadowfirebird
Move Y3 Shadowfirebird Delta

127) smilingra: Build Y1 Smilingra
	smilingra: can someone blow something else up??

128) MadWuher: Sacrifice Y2 Beta
Move G1 Talbot Shadowfirebird
Move G1 Delta Shadowfirebird
Catastrophe Shadowfirebird G

129) alexcobo: Attack G2W Gamma

130) shadowfirebird: Sacrifice R1 Shadowfirebird
Attack R2W Delta

131) smilingra: Build G1 Smilingra

132) MadWuher: Sacrifice Y3 Jessica
Move G2 Delta Shadowfirebird
Move Y1 Beta Delta
Move Y2 Jessica Delta
Catastrophe Delta Y

133) alexcobo: Attack G2W Gamma

134) shadowfirebird: Trade B1 Y1 Formica
	shadowfirebird: That was interesting.  I guess you can afford to do that, Mad', since you have both the positional and the piece advantage on me...  still, you have your own problems...

135) smilingra: Build Y2 G3
	smilingra: now THAT's what I'm talking about!  Nice work, shadow and Mad!

136) MadWuher: Trade G2 B2 Shadowfirebird
	MadWuher: had to do something eh??

137) alexcobo: Attack B1W Gamma
	MadWuher: Now that the new year has begun, I figure I might as well have a bit o' fun before I go back to work. =)
	shadowfirebird: Nice.  Should have seen that.  You've got me, I think...
	shadowfirebird: I guess I wasn't expecting you to spend so many resources on me!

138) shadowfirebird: Move G3 Formica Shadowfirebird

139) smilingra: Sacrifice Y2 G3
Move G1 Smilingra Alpha
Move Y1 Smilingra Alpha
	shadowfirebird: Well, here it is.  Are you going to sacrifice your last r1 to finish me off (and perhaps leave yourself vulnerable to North and South)?  Or not?

140) MadWuher: Sacrifice G2 Talbot
Build B1 Shadowfirebird
Build B1 Shadowfirebird
Catastrophe Shadowfirebird B
	smilingra: If he does, I'll miss your chattiness, shadow.  And maybe he might spare you?

141) alexcobo: Move R2 Gamma Beta
	MadWuher: I figure, since alexcobo is down to a single planet system, why not try to do the same to everybody else. (I'm looking at you next smilingra) =D

142) shadowfirebird: Build R1 Shadowfirebird

143) smilingra: Discover B1 Alpha G2 Delta
	shadowfirebird: ::grins and bows:: Thank you kindly...

144) MadWuher: Sacrifice G2 Magna
Build R2 Beta
Build Y2 Madwuher

145) alexcobo: Attack G1W Beta
	MadWuher: All right. Time to regroup, find smilingra's weaknesses, and start picking him apart. <insert evil laugh here>

146) shadowfirebird: Move R1 Shadowfirebird Beta
Catastrophe Beta R

147) smilingra: Build Y2 Smilingra

148) MadWuher: Discover Y2 Madwuher G2 Aleph-not

149) alexcobo: Move G2 Gamma Alexcobo

150) shadowfirebird: Build G1 Shadowfirebird

151) smilingra: Build Y2 G3

152) MadWuher: Build Y3 Aleph-not
	shadowfirebird: Oops!

153) alexcobo: Build Y3 Alexcobo

154) shadowfirebird: Move G1 Shadowfirebird Formica

155) smilingra: Build Y3 Alpha

156) MadWuher: Trade G1 R1 Madwuher

157) alexcobo: Move Y3 Alexcobo G3

158) shadowfirebird: Build R1 Shadowfirebird

159) smilingra: Sacrifice Y2 Smilingra
Move Y2 G3 Delta
Move Y2 G3 Delta

160) MadWuher: Move R1 Madwuher Aleph-not

161) alexcobo: Build Y2 G3

162) shadowfirebird: Move R1 Shadowfirebird Formica

163) smilingra: Build G1 Alpha

164) MadWuher: Build R2 Aleph-not

165) alexcobo: Build R2 Alexcobo

166) shadowfirebird: Build R2 Shadowfirebird

167) smilingra: Move G1 Alpha Epsilon

168) MadWuher: Build G1 Madwuher

169) alexcobo: Build G2 Gamma

170) shadowfirebird: Build G3 Formica

171) smilingra: Build B1 Delta

172) MadWuher: Discover R2 Aleph-not B1 Sliced-ham

173) alexcobo: Move Y3 G3 Delta

174) shadowfirebird: Discover G1 Formica B2 Fintlewoddlewix

175) smilingra: Sacrifice Y2 Delta
Move B1 Delta Madwuher
Move B1 Delta Madwuher

176) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R2 Sliced-ham
Build R3 Aleph-not

177) alexcobo: Sacrifice R2 Alexcobo
Attack Y2S Delta
Pass

178) shadowfirebird: Build Y2 Formica

179) smilingra: Sacrifice G1 Alpha
Build B2 Madwuher
Catastrophe Madwuher B

180) MadWuher: Sacrifice Y2 Aleph-not
Move R2 Sliced-ham Smilingra
Move R2 Sliced-ham Smilingra

181) alexcobo: Sacrifice Y2 Delta
Move R2 Alexcobo Alpha
Move R2 Alpha Smilingra
Catastrophe Smilingra R

182) shadowfirebird: Move R2 Shadowfirebird Fintlewoddlewix
	MadWuher: Woo-hoo. Looks like we're all going to be in the same boat soon enough. =)

183) smilingra: Build Y2 Smilingra

184) MadWuher: Build Y2 Madwuher

185) alexcobo: Trade G2 R2 Gamma

186) shadowfirebird: Build G1 Formica

187) smilingra: Build G2 Epsilon

188) MadWuher: Discover Y2 Madwuher B3 Boo-hoo

189) alexcobo: Build R2 Gamma

190) shadowfirebird: Move Y2 Formica Fintlewoddlewix

191) smilingra: Build R2 Epsilon

192) MadWuher: Move R3 Aleph-not Boo-hoo

193) alexcobo: Move B1 Gamma Delta

194) shadowfirebird: Sacrifice G3 Formica
Build R2 Shadowfirebird
Build R3 Formica
Build R3 Fintlewoddlewix

195) smilingra: Build G3 Smilingra

196) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R3 Aleph-not
Build R3 Boo-hoo

197) alexcobo: Build B1 Delta

198) shadowfirebird: Trade R2 B2 Fintlewoddlewix

199) smilingra: Sacrifice Y3 Alpha
Move G3 Smilingra Shadowfirebird
Move G2 Epsilon Shadowfirebird
Move G1 Epsilon Shadowfirebird
Catastrophe Shadowfirebird G

200) MadWuher: Build Y3 Madwuher
	shadowfirebird: Sorry about the wait.  Hope that was worth it...

201) alexcobo: Sacrifice Y2 G3
Move R2 Gamma Shadowfirebird
Move R2 Gamma Shadowfirebird
Catastrophe Shadowfirebird R

202) smilingra: Build G1 Smilingra

203) MadWuher: Move R3 Boo-hoo Fintlewoddlewix

204) alexcobo: Trade G2 R2 Alexcobo

205) smilingra: Trade Y1 R1 Smilingra
	smilingra: Had to shake things up a bit... we needed to get some pieces back in the supply!
	shadowfirebird: Wow.  I would never have guessed that you would do that.

206) MadWuher: Sacrifice R3 Aleph-not
Attack R3E Fintlewoddlewix
Attack B2E Fintlewoddlewix
Attack Y2E Fintlewoddlewix

207) alexcobo: Build G2 Gamma
	alexcobo: Sorry. But someone had to go first...

208) smilingra: Trade Y1 B1 Alpha
	smilingra: Sorry, shadowfirebird.  But you had so many ships...

209) MadWuher: Move R3 Fintlewoddlewix Gamma

210) alexcobo: Sacrifice Y3 Delta
Move G2 Gamma Madwuher
Move G2 Gamma Madwuher
Pass
Catastrophe Madwuher G

211) smilingra: Build Y1 Smilingra

212) MadWuher: Move Y3 Aleph-not Formica

213) alexcobo: Build G1 Beta

214) smilingra: Sacrifice Y1 Smilingra
Discover B1 Alpha G3 New_alpha
	shadowfirebird: I'm flattered.  Nice work, guys.  Hope to play again soon...

215) MadWuher: Move B2 Fintlewoddlewix Gamma
	alexcobo: Oh... you should not done that MadWuher...


216) alexcobo: Build G2 Beta

217) smilingra: Build B1 New_alpha
	MadWuher: knew it was coming..... Just awaiting the onslaught. =)

218) MadWuher: Sacrifice R1 Aleph-not
Attack R3E Formica

219) alexcobo: Trade G2 Y2 Beta

220) smilingra: Sacrifice Y2 Smilingra
Move B1 New_alpha Alexcobo
Move B1 New_alpha Alexcobo

221) MadWuher: Sacrifice Y3 Madwuher
Move R3 Formica Smilingra
Move R3 Boo-hoo Smilingra
Move Y3 Formica Smilingra

222) alexcobo: Attack B1S Alexcobo

223) smilingra: Build R1 Smilingra
Catastrophe Smilingra R

224) MadWuher: Sacrifice R3 Gamma
Attack G1E Fintlewoddlewix
Attack G3S Smilingra
Attack G1S Smilingra

225) alexcobo: Move Y3 Alexcobo Madwuher

226) MadWuher: Move B2 Gamma Alexcobo
Catastrophe Alexcobo B

	MadWuher: Thanks for the game.


11920)
Started: 2008.10.24, Ended: 2009.12.9
Participants: ajwill (S), MikeYarrum (N)
Winner: MikeYarrum



12052)
Started: 2008.10.29, Ended: 2008.10.30
Participants: MadWuher (S), MatrixFrog (N)
Winner: MadWuher



11919)
Started: 2008.10.31, Ended: 2008.11.4
Participants: MrMoto (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) MrMoto: Homeworld R2 G1 B3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort
	MrMoto: Hello! This is my first game of Homeworlds.

4) MrMoto: Build B1 Mrmoto

5) TwoShort: Trade G1 Y1 Twoshort

6) MrMoto: Trade B1 Y1 Mrmoto

7) TwoShort: Build G1 Twoshort

8) MrMoto: Discover Y1 Mrmoto G3 Plasmulon

9) TwoShort: Build G1 Twoshort

10) MrMoto: Build Y1 Plasmulon

11) TwoShort: Discover G1 Twoshort B2 Bluonia

12) MrMoto: Build Y2 Plasmulon

13) TwoShort: Build G2 Twoshort

14) MrMoto: Build B1 Mrmoto

15) TwoShort: Discover G1 Twoshort G2 Grognar

16) MrMoto: Discover Y1 Plasmulon B1 Arachne

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G3 Bluonia
Build G3 Twoshort

18) MrMoto: Build B1 Mrmoto

19) TwoShort: Trade G2 Y2 Bluonia

20) MrMoto: Sacrifice Y1 Plasmulon
Move B1 Mrmoto Plasmulon
	TwoShort: oops, sorry

21) TwoShort: Sacrifice G3 Bluonia
Build G2 Bluonia
Build G3 Bluonia
Build Y1 Bluonia

22) MrMoto: Build Y2 Plasmulon
	MrMoto: No problem.

23) TwoShort: Discover Y1 Bluonia B3 Blitz

24) MrMoto: Build Y3 Plasmulon

25) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y3 Blitz
Build Y3 Twoshort

26) MrMoto: Trade Y3 R3 Plasmulon
	TwoShort: So I feel a little guilty - normally for someones first game, I'd be giving them a fair amount of pointers and advice, but that takes more attention than I've had during this game, so I've just been systematically destroying you :)
  Anyway, tip number 1: try starting with a green ship, it's usually best.  
 Tip number 2: watch out for catastrophes.  I could move my y2 from Bluonia into Plasmulon, and cause a catastrophe that would cost me little and leave you crippled.
  Typically, that's exactly what I'd do, but in this case, I think I see an even faster route to victory...

27) TwoShort: Trade G2 R2 Bluonia
	MrMoto: Don't worry about it -- I see that I have a lot to learn! Your strategy of sacrificing green ships to build up your fleet makes a lot of sense.

As for catastrophes, I was concentrating on just not building four like-coloured ships in one system. Clearly I must start to consider your moves -- I thought there would be more build-up before I would have to do so.

And finally I am honoured to lose against the second-best player in the world! :)

28) MrMoto: Trade Y2 G2 Plasmulon
	MrMoto: Oh dear. I thought I would blow up the whole system, but I've just lost a bunch of ships. Hm ...

29) TwoShort: Sacrifice Y2 Bluonia
Move G1 Bluonia Plasmulon
Move G1 Grognar Plasmulon
Catastrophe Plasmulon Green

	MrMoto: Pla- Plasmulon!
	MrMoto: Thanks for the game.


12098)
Variants: "Hard time"
Started: 2008.11.3, Ended: 2008.11.23
Participants: MathGod (S), fnord (N)
Winner: MathGod

1) fnord: Homeworld B2 Y1 G3

2) MathGod: Homeworld R1 B3 G3
	fnord: Greetings!  Hope you have fun!
	MathGod: Ola! Hope you have fun too.

3) fnord: Build G1 Fnord

4) MathGod: Build G1 Mathgod

5) fnord: Discover G1 Fnord B3 Discordia

6) MathGod: Trade G1 Y1 Mathgod

7) fnord: Build G1 Discordia

8) MathGod: Build Y1 Mathgod

9) fnord: Trade G1 B1 Discordia

10) MathGod: Build Y2 Mathgod

11) fnord: Build G1 Fnord

12) MathGod: Discover Y2 Mathgod R2 Midway

	fnord: Sorry about that, my weekend got out of hand and I forgot to sign on in time.
	MathGod: It's OK. Want to play another? (Non-hardtime that is)
	fnord: Sure!  I could use the practice.  I tried playing this game a long while ago, and didn't do so well at it.


12025)
Started: 2008.11.4, Ended: 2009.1.14
Participants: MathGod (S), MikeYarrum (N)
Winner: MathGod



12103)
Started: 2008.11.4, Ended: 2008.11.8
Participants: MrMoto (S), MikeYarrum (N)
Winner: MrMoto



11891)
Started: 2008.11.4, Ended: 2008.11.7
Participants: MadWuher (S), MrMoto (N)
Winner: MadWuher

1) MrMoto: Homeworld Y3 B2 G3

2) MadWuher: Homeworld R1 B2 G3
	MrMoto: I come in peace.
	MadWuher: "Nanu-nanu" - Welcome.

3) MrMoto: Build G1 Mrmoto

4) MadWuher: Build G1 Madwuher

5) MrMoto: Discover G1 Mrmoto B1 Denebula

6) MadWuher: Trade G1 Y1 Madwuher

7) MrMoto: Build G1 Denebula

8) MadWuher: Build Y1 Madwuher

9) MrMoto: Trade G1 Y1 Denebula

10) MadWuher: Trade Y1 G1 Madwuher

11) MrMoto: Build G1 Denebula

12) MadWuher: Build G2 Madwuher

13) MrMoto: Build G2 Mrmoto

14) MadWuher: Discover G2 Madwuher G3 Bologna

15) MrMoto: Sacrifice G3 Mrmoto
Build G2 Mrmoto
Build G3 Mrmoto
Build Y1 Denebula

16) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y2 Madwuher
Build Y2 Madwuher

17) MrMoto: Trade G2 R2 Mrmoto

18) MadWuher: Trade Y2 R2 Madwuher

19) MrMoto: Discover G2 Mrmoto B1 Fragrance

20) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G3 Madwuher
Build Y2 Madwuher

21) MrMoto: Discover Y1 Denebula R2 Dawn

22) MadWuher: S Y2 Madwuher
D G2 Madwuher B3 Edora
M Y1 Madwuher Edora

23) MrMoto: Sacrifice G3 Mrmoto
Build Y2 Dawn
Build Y2 Denebula
Build G3 Fragrance

24) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y3 Madwuher
Build Y3 Edora

25) MrMoto: Trade G3 R3 Fragrance

26) MadWuher: Sacrifice Y3 Madwuher
Move Y3 Edora Fragrance
Move Y3 Fragrance Mrmoto
Discover G1 Madwuher Y3 Camelot

27) MrMoto: Sacrifice Y1 Dawn
Move R3 Fragrance Mrmoto

28) MadWuher: S R2 Madwuher
A R3 Mrmoto
A R2 Mrmoto

	MadWuher: thanks for da game. Up to another?
	MrMoto: Ah, zut! I didn't see that coming.
Thanks, and sure, let's play again.


11897)
Variants: "Hard time"
Started: 2008.11.5, Ended: 2008.11.22
Participants: Jesse (S), MrMoto (N)
Winner: Jesse

1) MrMoto: Homeworld G3 Y1 B3

2) Jesse: Homeworld B2 R1 G3
	Jesse: Hello, and have a good game.

3) MrMoto: Build B1 Mrmoto
	MrMoto: You too!

4) Jesse: Build G1 Jesse

5) MrMoto: Trade B3 G3 Mrmoto

6) Jesse: Trade G1 Y1 Jesse

7) MrMoto: Build G1 Mrmoto

8) Jesse: Build Y1 Jesse

9) MrMoto: Discover G1 Mrmoto R2 Woolly

10) Jesse: Build G1 Jesse

11) MrMoto: Build G1 Woolly

12) Jesse: Build Y2 Jesse

13) MrMoto: Build G2 Mrmoto

14) Jesse: Discover Y2 Jesse B3 Chompy

15) MrMoto: Discover G2 Mrmoto Y2 Dandelion

16) Jesse: Discover Y1 Jesse B3 Bitey

17) MrMoto: Build G2 Mrmoto

18) Jesse: Sacrifice G3 Jesse
Build G2 Jesse
Build G3 Jesse
Build Y2 Jesse

19) MrMoto: Trade G3 Y3 Mrmoto
	Jesse: You have a serious problem developing in your lack of yellow ships.  You will quickly find yourself frozen out and unable to move your ships where you want them.  To avoid this in the future, you'll want to make sure you get into any given color before your opponent can run away with all the smaller pieces.  One good idea for retaining the flexibility to do that is when you're sending small green ships out from your homeworld, discover blue systems.  Then you can quickly build more green ships and trade them for yellow (or whatever color you need).  Red single stars are particularly limiting.
	MrMoto: Hm, you are right. I don't have many yellow ships. Thank you for the advice; I am new to this game.

20) Jesse: Discover G2 Jesse B3 Nibbly

21) MrMoto: Build G3 Dandelion
	Jesse: It's my pleasure to help new players.  The problem you have now is that you can't effectively use your Y3 to build new yellow ships, because you also have a yellow system marker.  If you build another yellow, that puts you at three yellow pieces, on the brink of a catastrophe.  That situation can be alright as long as I don't have any yellow ships within movement range, but I can now sacrifice a Y2 to move a piece two steps from Bitey to your home system.
	MrMoto: Ah, right -- thanks for pointing that out. I see that it was important not to build a green ship in my homeworld this turn for the same reason.

22) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y3 Chompy
Build Y3 Jesse
	Jesse: Yes, exactly.  It's usually best to defend the home world with ships of colors different from either of your system markers.  Even if you don't plan to use them for production, it's relatively easy for your opponent to two ships into range to sacrifice to get them both into your system in one turn.

Although your last couple of moves don't do as much as you would like for keeping you in the yellow economy, they do help.  And, by the way, they are also a good example of using the weakness of my green concentration against me.  Because I could not build another green, trading your large green for another color and rebuilding it on the following turn was an inexpensive way for you to get another large ship.  But that's okay with me, because now I get to exploit my yellow advantage...

23) MrMoto: Build B1 Mrmoto

24) Jesse: Trade Y2 R2 Chompy
	Jesse: In case you don't know it, this maneuver of sacrificing a G3 for two free builds is a common tactic called the factory.  Another thing to note: Although having three of the same color in your system is generally bad, I wanted another large ship there, and I feel safe because you cannot immediately reach me and I have several possible development plans to correct the issue well before you could get there.
	Jesse: You *could* have done the same thing to build two small blues, here.  You may undo and try that, if you like.  I'll leave it to your judgement whether building one or two at this moment is better.

25) MrMoto: Discover Y3 Mrmoto B2 Potato
	MrMoto: Thanks for the advice, and sorry for the wait. I have learned the strategy of trading in G3s, but maybe I ruled it out because there were no greens left in stash, and I forgot I could get my G3 back. I'll know for next time.

26) Jesse: Sacrifice Y2 Jesse
Move Y3 Chompy Potato
Move Y3 Potato Mrmoto
	Jesse: Yes, the fact that sacrificed ships and abandoned systems go directly to the stash can be quite important.


27) MrMoto: Sacrifice B1 Mrmoto
Trade G3 R3 Dandelion

28) Jesse: Sacrifice R2 Chompy
Attack G2 Mrmoto
Attack B1 Mrmoto
	Jesse: There are two strategic rules of thumb that this situation should show the importance of.  One is, never leave your homeworld undefended.  That almost always means having a large ship there, because mediums and smalls cannot capture large ships on their own.  The other is, when your opponent picks up a gun, you should pick up a gun.  Guns, in this context, are red ships.  Red system markers can allow captures only in that system.  Red ships can be sacrificed to provide captures anywhere.  Sometimes one of these can be violated temporarily to gain an advantage, but that's usually quite early on.
	Jesse: Thanks for the game.  I hope it's been helpful.
	MrMoto: Argh! Thank you, you have been very helpful indeed.



12090)
Started: 2008.11.6, Ended: 2008.11.13
Participants: TwoShort (S), MrMoto (N)
Winner: TwoShort

1) MrMoto: Homeworld G3 Y2 B3

2) TwoShort: Homeworld B1 R2 G3

3) MrMoto: Build B1 Mrmoto

4) TwoShort: Build G1 Twoshort

5) MrMoto: Trade B3 G3 Mrmoto
	TwoShort: Wacky -  Here I was about to tell you that you're ignoring my "start with a green ship" advice, and that you shouldn't start with a blue except in the rare case the opponent takes a b1 star, which you also shouldn't do.  But apparently you psychically predicted I'd typo my homeworld and flip the colors...
	MrMoto: I see the trans-galactic psychomodulator orbiting my homeworld has met with success.

6) TwoShort: Trade G1 Y1 Twoshort

7) MrMoto: Build G1 Mrmoto

8) TwoShort: Build G1 Twoshort

9) MrMoto: Build B1 Mrmoto

10) TwoShort: Discover G1 Twoshort Y3 Yolonda

11) MrMoto: Discover B1 Mrmoto G1 Delivery

12) TwoShort: Build G2 Twoshort

13) MrMoto: Sacrifice G3 Mrmoto
Build B2 Mrmoto
Build B2 Mrmoto
Build B2 Delivery

14) TwoShort: Build G2 Yolonda
	TwoShort: Not the way I expected you to grab the blue monopoly...  Usually leaving yourself without a 3 is a bad idea, but I guess I can't get a red and get my 3 to your home world before you move a blue out and grow a new 3...  Nice.

15) MrMoto: Build B3 Delivery

16) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yolonda
Build G3 Twoshort
	MrMoto: Well, I'm still learning and experimenting -- we'll find out soon enough if it was a clever move or a disaster.
	TwoShort: It was clever as long as you get 3 in your homeworld before I do.  Long term, I think green beats blue...

17) MrMoto: Sacrifice B2 Mrmoto
Trade B2 Y2 Delivery
Trade B3 R3 Delivery

18) TwoShort: Trade G2 R2 Twoshort

19) MrMoto: Build G2 Mrmoto

20) TwoShort: Discover G1 Yolonda Y1 Yak

21) MrMoto: Trade G1 R1 Mrmoto

22) TwoShort: Sacrifice G3 Twoshort
Build G1 Yak
Build G3 Twoshort
Build Y1 Twoshort

23) MrMoto: Move R3 Delivery Yolonda

24) TwoShort: Sacrifice R2 Twoshort
Attack R3N Yolonda
Pass

25) MrMoto: Trade B2 Y2 Mrmoto

26) TwoShort: Sacrifice Y1 Twoshort
Move G1 Yak Mrmoto

27) MrMoto: Move G2 Mrmoto Yak

28) TwoShort: Sacrifice G3 Yolonda
Build G3 Mrmoto
Build Y1 Twoshort
Build R1 Yolonda

	MrMoto: Thanks for the game.


12114)
Started: 2008.11.8, Ended: 2008.11.21
Participants: MadWuher (S), MrMoto (N)
Winner: MadWuher

1) MrMoto: Homeworld Y3 B2 G3

2) MadWuher: Homeworld B1 R2 G3

3) MrMoto: Build G1 Mrmoto

4) MadWuher: Build G1 Madwuher

5) MrMoto: Discover G1 Mrmoto B1 Riel

6) MadWuher: Trade G1 B1 Madwuher

7) MrMoto: Build G1 Mrmoto

8) MadWuher: Build B2 Madwuher

9) MrMoto: Discover G1 Mrmoto Y1 Crawford

10) MadWuher: Trade B2 Y2 Madwuher

11) MrMoto: Build G1 Mrmoto

12) MadWuher: Build G2 Madwuher

13) MrMoto: Sacrifice G3 Mrmoto
Build G2 Riel
Build G2 Crawford
Build G3 Mrmoto

14) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build G3 Madwuher
Build Y1 Madwuher

15) MrMoto: Trade G2 Y2 Riel

16) MadWuher: Sacrifice Y2 Madwuher
Discover G3 Madwuher Y3 Edora
Move B1 Madwuher Edora

17) MrMoto: Build G2 Riel

18) MadWuher: S G3 Madwuher
B G3 Madwuher
B B2 Edora
B B2 Edora


19) MrMoto: Trade G1 R1 Riel

20) MadWuher: Trade B2 R2 Edora

21) MrMoto: Sacrifice G3 Mrmoto
Build G1 Mrmoto
Build G3 Mrmoto
Build R1 Riel

22) MadWuher: Discover B2 Edora Y1 Bologna

23) MrMoto: Discover R1 Riel Y3 Ion

24) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y2 Madwuher
Build Y2 Madwuher

25) MrMoto: Trade G1 R1 Mrmoto

26) MadWuher: Move Y2 Madwuher Edora

27) MrMoto: Build R2 Riel

28) MadWuher: Build R3 Edora

29) MrMoto: Discover R2 Riel B3 Gradus

30) MadWuher: Move R3 Edora Bologna

31) MrMoto: Sacrifice G1 Crawford
Build R3 Gradus

32) MadWuher: Build R3 Edora

33) MrMoto: Move R1 Ion Madwuher

34) MadWuher: Build Y3 Madwuher

35) MrMoto: Sacrifice Y2 Riel
Move R2 Gradus Madwuher
Move R3 Gradus Madwuher
Catastrophe Madwuher R

36) MadWuher: Sacrifice Y2 Edora
Move G3 Madwuher Mrmoto
Move R3 Bologna Mrmoto

37) MrMoto: Attack R3 Mrmoto

38) MadWuher: Sacrifice R3 Edora
Attack R3 Mrmoto
Attack G3 Mrmoto
Attack R1 Mrmoto

	MadWuher: Just a few quick comments (in case it helps you in your next game). In the first few turns I was able to get control of the Blue tech (I did this because I saw a lot of B1's already being used on the table). If you had switched from producing Green tech to Blue tech, you would have forced me to abandon my control over Blue and I would have had to trade over to yellow or red right away. A bit part of this game is to control the colours (or at least force your opponents into doing something that will help you). 
	MadWuher: There was one turn where you sacrificed your Green 3 to create two Green 2's and a Green 3. This left a Green 3 open for me to take. Then you traded some Green tech and rebuilt your Green tech, letting me use the green production strategy against you. You did all the work, but I got to use it. I've seen others try to do similar work, but instead sacrifice their G3 when they control another colour, letting them get to other 3 pointers (then trading them back for the G3) and not letting your opponents have a production centre.
	MadWuher: Later in the game, I was able to control most of the Yellow tech (leaving you with only size 1 and/or 2 Yellow). This seemed to cause some trouble for you as you then had to navigate a little more carefully to get the catastrophe in my home system. Knowing that you didn't have either Blue tech ready to destroy my other star, or that you would use up most of your Red tech to destroy one of my stars, I chose to keep my Red tech out of the way and force a fight in your home system. Since I had a Red 3 to sacrifice and you had at most an R1 to fight back, I chose to overwhelm you in your home system with two size 3 ships (different colours in case you tried to make a catastrophe at your home planet). 
	MadWuher: I would recommend using your small ships to create catastrophes, only using your big ships if a catastrophe would allow you to destroy more points of ships on my side than on yours. The player TwoShort likes to think around two moves ahead, destroying ships if he will be in a better position (pointwise and/or endgame I think) within the next 2 turns. Also, TwoShort does a great job controlling the size 3 pyramids, and the colours. If you get a chance, you might want to check out some of his games to see how he does it. He has a few unorthodox starts and does similar steps in the first few turns, which, if you don't keep aware of, will hurt you later on in the game. 
	MrMoto: I- I thought I was winning! Hm, I have a lot to learn. Thanks for all your advice; it helps to see where I went wrong.
	MadWuher: Up to another? I played 3 games at the same time once to try different starts and different moves. If you select my "Hard Time, Unrated" challenge we can play without effecting ratings and if one of us times out, it will resign us from the game.


12133)
Started: 2008.11.8, Ended: 2008.11.13
Participants: TwoShort (S), Sunnan (N)
Winner: TwoShort

1) Sunnan: Homeworld R3 Y1 G3 *

2) TwoShort: Homeworld B1 R2 G3

3) Sunnan: Build G1 Sunnan

4) TwoShort: Build G1 Twoshort

5) Sunnan: Discover G1 Sunnan B2 Penny

6) TwoShort: Trade G1 Y1 Twoshort

7) Sunnan: Build G1 Penny

8) TwoShort: Build Y1 Twoshort

9) Sunnan: Build G1 Sunnan

10) TwoShort: Build G2 Twoshort

11) Sunnan: Sacrifice G3 Sunnan
Build G2 Penny
Build G2 Sunnan
Build G3 Sunnan

12) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build G3 Twoshort
Build G3 Twoshort

13) Sunnan: Trade G2 Y2 Penny

14) TwoShort: Sacrifice Y2 Twoshort
Discover G2 Twoshort Y3 Nickel
Discover Y1 Twoshort B3 Dime

15) Sunnan: Discover G1 Penny Y3 Quarter

16) TwoShort: Sacrifice G3 Twoshort
Build Y2 Dime
Build Y2 Dime
Build Y3 Twoshort

17) Sunnan: Sacrifice G2 Sunnan
Build G2 Penny
Build G2 Quarter

18) TwoShort: Sacrifice Y3 Twoshort
Move G3 Twoshort Quarter
Move G3 Quarter Penny
Move G3 Penny Sunnan

19) Sunnan: Move G2 Quarter Twoshort

	Sunnan: There was nothing I could've done. Guess I really do need blue at the base. (It's so dangerous to have a blue star, though... (since opponents can go in and change to your color and call catastrophe) otoh, this time my red hurt me arguably more than blue would've.) Thanks for the game!


12172)
Variants: "Hard time"
Started: 2008.11.11, Ended: 2008.12.21
Participants: Keith (S), stoneaxe (N)
Winner: Keith

1) stoneaxe: Homeworld Y3 B2 G3

2) Keith: Homeworld Y1 B2 G3

3) stoneaxe: Build G1 Stoneaxe

4) Keith: Build G1 Keith
	stoneaxe: Hi and good luck.  Thanks for playing!
	Keith: You welcome.  Have a good game.

5) stoneaxe: Discover G1 Stoneaxe Y1 Yanni

6) Keith: Trade G1 Y1 Keith

7) stoneaxe: Build G1 Stoneaxe

8) Keith: Build Y2 Keith

9) stoneaxe: Build G1 Yanni

10) Keith: Build G2 Keith

11) stoneaxe: Trade G1 B1 Stoneaxe

12) Keith: Discover Y2 Keith G3 Behemoth

13) stoneaxe: Build G1 Stoneaxe

14) Keith: Discover G2 Keith Y3 Daikiro

15) stoneaxe: Trade G3 Y3 Stoneaxe

16) Keith: Build Y2 Behemoth

17) stoneaxe: Discover G1 Yanni G3 Gor

18) Keith: Build Y2 Keith

19) stoneaxe: Build G2 Stoneaxe

20) Keith: Build G2 Keith

21) stoneaxe: Build B1 Stoneaxe

22) Keith: Trade Y2 B2 Keith

23) stoneaxe: Move B1 Stoneaxe Yanni

24) Keith: Build Y2 Keith

25) stoneaxe: Sacrifice G2 Stoneaxe
Build B1 Yanni
Build B3 Yanni

26) Keith: Sacrifice Y2 Keith
Move B2 Keith Gor
Move B2 Gor Yanni
Catastrophe Yanni Blue

27) stoneaxe: Build G2 Stoneaxe

28) Keith: Build Y2 Keith

29) stoneaxe: Move B1 Stoneaxe Yanni

30) Keith: Trade Y2 R2 Keith

31) stoneaxe: Build B1 Yanni

32) Keith: Sacrifice G3 Keith
Build G3 Keith
Build R1 Keith
Build Y2 Keith

33) stoneaxe: Trade G1 B1 Stoneaxe

34) Keith: Sacrifice G2 Daikiro
Build R1 Keith
Build Y3 Behemoth

35) stoneaxe: Trade B1 R1 Stoneaxe

36) Keith: Sacrifice Y2 Keith
Move Y3 Behemoth Yanni
Move Y3 Yanni Stoneaxe

37) stoneaxe: Attack Y3 Stoneaxe

	stoneaxe: Sorry I wasn't more of a challenge!  I'm going to resign now because this is such a Rout.  Well played!
	Keith: Thank you.  Your game was off from your usual.  


12113)
Started: 2008.11.13, Ended: 2008.11.13
Participants: MikeYarrum (S), willynch (N)
Winner: MikeYarrum



12140)
Started: 2008.11.15, Ended: 2008.12.7
Participants: MadWuher (S), Uglyfoot (N)
Winner: MadWuher

1) Uglyfoot: Homeworld B3 Y2 G3

2) MadWuher: Homeworld R1 B2 G3

3) Uglyfoot: Build G1 Uglyfoot
	MadWuher: Hello. Have a good game.
	Uglyfoot: Have a good game.

4) MadWuher: Build G1 Madwuher

5) Uglyfoot: Discover G1 Uglyfoot R1 Newton

6) MadWuher: Trade G1 Y1 Madwuher

7) Uglyfoot: Build G1 Newton

8) MadWuher: Build Y1 Madwuher

9) Uglyfoot: Build G1 Uglyfoot

10) MadWuher: Build Y1 Madwuher

11) Uglyfoot: Build G2 Uglyfoot

12) MadWuher: Build G2 Madwuher

13) Uglyfoot: Trade G2 Y2 Uglyfoot

14) MadWuher: Sacrifice Y1 Madwuher
Discover G2 Madwuher B3 Edora

15) Uglyfoot: Move Y2 Uglyfoot Newton

16) MadWuher: Build G2 Madwuher

17) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Newton
Build G3 Uglyfoot
Build G3 Uglyfoot

18) MadWuher: Discover G2 Madwuher Y3 Bologna

19) Uglyfoot: Move G1 Newton Bologna

20) MadWuher: Trade Y1 R1 Madwuher

21) Uglyfoot: Trade G3 Y3 Uglyfoot

22) MadWuher: Build G3 Edora

23) Uglyfoot: Trade G1 B1 Uglyfoot

24) MadWuher: Trade G3 Y3 Edora

25) Uglyfoot: Sacrifice Y3 Uglyfoot
Move G1 Newton Bologna
Move G1 Bologna Madwuher
Move G1 Bologna Madwuher

26) MadWuher: Sacrifice G2 Bologna
Build G1 Madwuher
Build R2 Madwuher
Catastrophe Madwuher G
	MadWuher: Sorry. Doing these moves from my iPod and I'm still learning how to type on it. My big thumb keeps hitting the wrong keys.

27) Uglyfoot: Move B1 Uglyfoot Newton

28) MadWuher: Trade R2 G2 Madwuher

29) Uglyfoot: Build G1 Newton

30) MadWuher: Build R2 Madwuher

31) Uglyfoot: Build G1 Uglyfoot

32) MadWuher: Build G1 Madwuher

33) Uglyfoot: Trade G2 R2 Newton

34) MadWuher: Move R1 Madwuher Edora

35) Uglyfoot: Discover R2 Newton Y3 Tesla

36) MadWuher: Discover R2 Madwuher Y3 Bologna

37) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Newton
Build G3 Uglyfoot
Build Y1 Newton

38) MadWuher: Sacrifice G2 Madwuher
Build G2 Edora
Build G3 Madwuher

39) Uglyfoot: Trade G2 R2 Newton

40) MadWuher: Sacrifice G2 Edora
Build R3 Edora
Build R3 Bologna

41) Uglyfoot: Move R2 Newton Uglyfoot

42) MadWuher: Trade R1 Y1 Edora

43) Uglyfoot: Build G2 Newton

44) MadWuher: Move R3 Bologna Newton

45) Uglyfoot: Sacrifice Y2 Newton
Move G2 Newton Tesla
Move B1 Newton Tesla

46) MadWuher: Sacrifice R2 Bologna
Attack G1 Newton
Attack Y1 Newton

47) Uglyfoot: Discover G1 Uglyfoot R1 Franklin

48) MadWuher: Sacrifice G3 Madwuher
Build Y2 Newton
Build Y2 Madwuher
Build Y3 Madwuher

49) Uglyfoot: Move R2 Uglyfoot Newton

50) MadWuher: Sacrifice Y2 Newton
Move R3 Newton Tesla
Move Y1 Newton Tesla

51) Uglyfoot: Sacrifice G2 Tesla
Build R2 Tesla
Build R3 Tesla
Catastrophe Tesla R

52) MadWuher: Sacrifice G1 Newton
Build Y2 Edora

53) Uglyfoot: Build G1 Uglyfoot

54) MadWuher: Build G2 Madwuher

55) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Franklin
Build G3 Uglyfoot
Build G3 Franklin

56) MadWuher: Sacrifice G2 Madwuher
Build G2 Edora
Build G3 Madwuher

	Uglyfoot: I have no moves that will benefit me...


12198)
Started: 2008.11.18, Ended: 2008.12.7
Participants: ts52 (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld Y3 B2 G3

2) ts52: Homeworld G1 B2 Y3

3) MadWuher: Build G1 Madwuher

4) ts52: Build Y1 Ts52

5) MadWuher: Build G1 Madwuher
	ts52: Have a good game!
	MadWuher: You too

6) ts52: D Y1 Ts52 G3 Kermit

7) MadWuher: Discover G1 Madwuher B1 Edora

8) ts52: Build Y1 Ts52

9) MadWuher: Build G2 Edora

10) ts52: Build Y1 Kermit

11) MadWuher: Build G2 Edora

12) ts52: Build Y2 Ts52

13) MadWuher: Trade G2 Y2 Edora

14) ts52: Discover Y1 Ts52 G3 Oscar

15) MadWuher: Trade G1 R1 Edora

16) ts52: Trade Y2 R2 Ts52

17) MadWuher: Build Y2 Edora

18) ts52: Build R1 Ts52

19) MadWuher: Discover Y2 Edora B3 Bologna

20) ts52: Build Y2 Oscar

21) MadWuher: Sacrifice G1 Madwuher
Build Y3 Bologna

22) ts52: Trade R1 G1 Ts52

23) MadWuher: Build G1 Madwuher

24) ts52: Discover G1 Ts52 B3 Gonzo

25) MadWuher: Move G2 Edora Gonzo

26) ts52: Build G2 Gonzo
	ts52: b g2 gonzo
	ts52: oops, wrong window

27) MadWuher: Sacrifice G3 Madwuher
Build G2 Gonzo
Build G3 Madwuher
Build R1 Edora
Catastrophe Gonzo G

28) ts52: Build R1 Ts52

29) MadWuher: Build G1 Madwuher

30) ts52: Trade R2 G2 Ts52

31) MadWuher: Move G1 Madwuher Edora

32) ts52: Build R2 Ts52

33) MadWuher: Build G2 Edora

34) ts52: Move R2 Ts52 Kermit

35) MadWuher: Move R1 Edora Bologna

36) ts52: Build R2 Ts52

37) MadWuher: Move G1 Edora Bologna

38) ts52: Move R1 Ts52 Oscar

39) MadWuher: Sacrifice G3 Madwuher
Build G2 Bologna
Build G3 Madwuher
Pass

40) ts52: Move Y1 Oscar Ts52

41) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R2 Bologna
Build R3 Edora

42) ts52: Sacrifice G2 Ts52
Build R3 Oscar
Build R3 Kermit

43) MadWuher: Build G2 Edora

44) ts52: Sacrifice Y2 Oscar
Move R1 Oscar Edora
Move R2 Kermit Edora
Catastrophe Edora Red

45) MadWuher: Trade G1 R1 Madwuher

46) ts52: Move R3 Kermit Edora

47) MadWuher: Sacrifice Y2 Edora
Discover G2 Edora Y2 Camelot
Discover G2 Edora Y2 Farthington

48) ts52: Move Y1 Ts52 Oscar

49) MadWuher: Build G1 Madwuher

50) ts52: Move Y1 Kermit Edora

51) MadWuher: Move R2 Bologna Camelot

52) ts52: Move R3 Oscar Camelot

53) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R1 Camelot
Build R2 Camelot
Catastrophe Camelot R

54) ts52: M R3 Edora Camelot

55) MadWuher: Sacrifice G2 Camelot
Build G2 Farthington
Build R1 Bologna

56) ts52: Move R3 Camelot Edora

57) MadWuher: Move R1 Bologna Farthington

58) ts52: Build Y2 Ts52

59) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R2 Bologna
Build R2 Madwuher

60) ts52: Build R3 Ts52

61) MadWuher: Build R3 Farthington

62) ts52: Move R2 Ts52 Oscar

63) MadWuher: Move G2 Farthington Kermit

64) ts52: Move R3 Ts52 Kermit

65) MadWuher: Sacrifice G2 Kermit
Build G2 Bologna
Pass

66) ts52: Move Y1 Kermit Edora

67) MadWuher: Move Y3 Bologna Ts52

68) ts52: Move R2 Oscar Ts52

69) MadWuher: Sacrifice R3 Farthington
Attack Y3 Ts52
Attack Y2 Ts52
Attack R2 Ts52



12199)
Started: 2008.11.23, Ended: 2009.1.9
Participants: MathGod (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) MathGod: Homeworld B1 G3 B3 *
	MathGod: Hi there. Thanks for the game.

3) ts52: Build G1 Ts52
	ts52: Have a good game.

4) MathGod: Build B1 Mathgod

5) ts52: Discover G1 Ts52 B3 Gonzo

6) MathGod: Trade B3 Y3 Mathgod

7) ts52: Build G1 Ts52

8) MathGod: Build B2 Mathgod

9) ts52: Build G1 Ts52

10) MathGod: Trade B2 G2 Mathgod

11) ts52: Discover G1 Ts52 B3 Grover

12) MathGod: Build G2 Mathgod

13) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Grover
Build G3 Ts52

14) MathGod: Discover G2 Mathgod Y2 Yell-o

15) ts52: T G2 R2 Gonzo

16) MathGod: Trade G2 R2 Mathgod

17) ts52: B G2 Gonzo

18) MathGod: Build G2 Yell-o

19) ts52: Sacrifice G3 Grover
B G3 Grover
B R1 Gonzo
B R1 Gonzo

20) MathGod: Build B2 Mathgod

21) ts52: T R1 Y1 Gonzo

22) MathGod: Move B2 Mathgod Yell-o

23) ts52: Build Y1 Gonzo

24) MathGod: Sacrifice G2 Yell-o
Build B2 Yell-o
Build B2 Mathgod

25) ts52: D G1 Ts52 B3 Rosalita

26) MathGod: Move B2 Yell-o Rosalita

27) ts52: Move R2 Gonzo Ts52

28) MathGod: Trade B2 G2 Rosalita

29) ts52: Build R1 Gonzo

30) MathGod: Build B2 Yell-o

31) ts52: Move Y1 Gonzo Ts52

32) MathGod: Sacrifice B2 Mathgod
Trade G2 R2 Rosalita
Trade B2 G2 Yell-o

33) ts52: Sacrifice G3 Grover
Build G3 Rosalita
Build R1 Gonzo
Build R3 Ts52

34) MathGod: Sacrifice G2 Yell-o
Build G2 Yell-o
Build R3 Mathgod

35) ts52: Sacrifice R1 Gonzo
Attack R2S Rosalita

36) MathGod: Move R3 Mathgod Yell-o

37) ts52: Sacrifice G3 Rosalita
Build G3 Grover
Build R1 Gonzo
Build R3 Rosalita

38) MathGod: Build B2 Yell-o

39) ts52: Discover R1 Gonzo Y2 Zoe

40) MathGod: Discover G2 Yell-o Y3 Barry

41) ts52: Sacrifice G3 Grover
Build G3 Grover
Build Y1 Ts52
Build Y3 Gonzo

42) MathGod: Sacrifice G2 Barry
Build G2 Yell-o
Build Y3 Mathgod

43) ts52: Discover G2 Gonzo B2 Cookie

44) MathGod: Move B1 Mathgod Yell-o

45) ts52: Move Y1 Ts52 Rosalita

46) MathGod: Sacrifice Y3 Mathgod
Move B1 Yell-o Gonzo
Move B2 Yell-o Gonzo
Move B2 Yell-o Gonzo
Catastrophe Gonzo B

47) ts52: Build G1 Ts52

48) MathGod: Discover G2 Yell-o Y3 Y-too
	MathGod: Ohh well. Not much else to do.

49) ts52: Sacrifice G3 Grover
Build G3 Grover
Build Y1 Ts52
Build Y3 Rosalita

50) MathGod: Sacrifice G2 Y-too
Build G2 Yell-o
Build Y3 Mathgod

51) ts52: Move Y1 Ts52 Grover

52) MathGod: Discover Y3 Mathgod B2 Blue-toe

53) ts52: Move R2 Rosalita Cookie

54) MathGod: Move G2 Yell-o Grover

55) ts52: Move R3 Ts52 Grover

56) MathGod: Sacrifice G2 Grover
Build G2 Yell-o
Build R1 Yell-o

57) ts52: Move G3 Grover Zoe

58) MathGod: Discover G2 Yell-o B3 Bell-o

59) ts52: Build R1 Zoe

60) MathGod: Move R1 Yell-o Bell-o

61) ts52: Move G3 Zoe Bell-o

62) MathGod: Sacrifice G2 Bell-o
Build G2 Yell-o
Pass

63) ts52: Sacrifice R1 Zoe
Attack R1 Bell-o

64) MathGod: Discover G2 Yell-o B1 Blue

65) ts52: Build R1 Cookie

66) MathGod: Move Y3 Mathgod Cookie

67) ts52: Sacrifice Y3 Rosalita
Move R3 Grover Cookie
Move R3 Cookie Mathgod
Move R3 Rosalita Cookie
	MathGod: I have no clue what to do.

68) MathGod: Sacrifice R3 Yell-o
Attack R3 Cookie
Attack R2 Cookie
Attack G2 Cookie
	MathGod: Yes, I know this is suicide. 

69) ts52: Attack R2 Mathgod
	ts52: It's been an interesting game.

	ts52: Thanks for the game.
	MathGod: Thank you


12256)
Variants: "Hard time"
Started: 2008.11.24, Ended: 2008.12.27
Participants: alexcobo (S), MathGod (N)
Winner: MathGod

1) MathGod: Homeworld R1 B2 G3

2) alexcobo: Homeworld G3 B2 Y3

3) MathGod: Build G1 Mathgod

4) alexcobo: Build Y1 Alexcobo

5) MathGod: Trade G1 Y1 Mathgod

6) alexcobo: Trade Y1 R1 Alexcobo

7) MathGod: Build G1 Mathgod

8) alexcobo: Build Y1 Alexcobo

9) MathGod: Trade G1 R1 Mathgod

10) alexcobo: Build R2 Alexcobo

11) MathGod: Discover R1 Mathgod G3 Green-ee

12) alexcobo: Build R2 Alexcobo

13) MathGod: Build G1 Mathgod

14) alexcobo: Discover R2 Alexcobo B1 Azure

15) MathGod: Build G1 Mathgod

16) alexcobo: Trade Y1 G1 Alexcobo

17) MathGod: Discover G1 Mathgod R3 Rendil-ee

18) alexcobo: Build Y1 Alexcobo

19) MathGod: Discover G1 Mathgod R3 Bell-ee-flop

20) alexcobo: Build G2 Alexcobo

21) MathGod: Build G2 Mathgod

22) alexcobo: Sacrifice G1 Alexcobo
Build R2 Azure

23) MathGod: Build R3 Green-ee

24) alexcobo: Trade R2 Y2 Alexcobo

25) MathGod: Trade G2 Y2 Mathgod

26) alexcobo: Trade R2 Y2 Azure

27) MathGod: Build G1 Mathgod

28) alexcobo: Build G2 Alexcobo

29) MathGod: Sacrifice Y2 Mathgod
Move G1 Bell-ee-flop Azure
Move G1 Azure Alexcobo
Catastrophe Alexcobo G

30) alexcobo: Discover Y2 Alexcobo G3 Green

31) MathGod: Build G1 Mathgod

32) alexcobo: Trade Y2 G2 Azure

33) MathGod: Discover G1 Mathgod Y3 Yellow-ee

34) alexcobo: Build G2 Azure

35) MathGod: Build G2 Yellow-ee

36) alexcobo: Build Y1 Green

37) MathGod: Build Y2 Mathgod

38) alexcobo: Build R2 Azure

39) MathGod: Move Y1 Mathgod Green-ee

40) alexcobo: Trade R2 B2 Azure

41) MathGod: Sacrifice G3 Mathgod
Build G3 Mathgod
Build Y2 Green-ee
Build Y3 Mathgod

42) alexcobo: Sacrifice Y1 Alexcobo
Move R2 Azure Rendil-ee

43) MathGod: Sacrifice Y1 Green-ee
Move G1 Rendil-ee Azure

44) alexcobo: Trade G2 R2 Azure

45) MathGod: Sacrifice G3 Mathgod
Build G2 Mathgod
Build G3 Azure
Build Y1 Green-ee

46) alexcobo: Sacrifice G2 Azure
Build R2 Rendil-ee
Build R3 Alexcobo

47) MathGod: Trade G1 B1 Mathgod

48) alexcobo: Attack G1N Azure

49) MathGod: Sacrifice R3 Green-ee
Attack B2 Azure
Attack G1 Azure
Attack R2 Azure

50) alexcobo: Trade R1 G1 Alexcobo

51) MathGod: Sacrifice G2 Yellow-ee
Build R1 Azure
Build R3 Green-ee

52) alexcobo: Build G2 Alexcobo

53) MathGod: Move B1 Mathgod Green-ee

54) alexcobo: Build Y1 Alexcobo

55) MathGod: Move Y2 Green-ee Azure

56) alexcobo: Sacrifice Y2 Green
Move R2 Rendil-ee Alexcobo
Move R2 Alexcobo Yellow-ee

57) MathGod: Sacrifice G3 Azure
Build G2 Mathgod
Build G3 Azure
Build B1 Green-ee

58) alexcobo: Attack G1N Yellow-ee

59) MathGod: Sacrifice Y3 Mathgod
Move B1 Green-ee Alexcobo
Move B1 Green-ee Alexcobo
Move B2 Azure Alexcobo
Catastrophe Alexcobo B

	MathGod: Thanks for the game.


12240)
Started: 2008.11.25, Ended: 2009.3.10
Participants: stoneaxe (S), MrMoto (W), MadWuher (N), Trollkin (E)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) Trollkin: Homeworld B2 G1 Y3
	MadWuher: Welcome, One and All to this wonderful game we call Homeworlds. Prepare yourself for a real slobber-knocker as our four contestants vie for the coveted Homeworlds Champion Title. Now entering the arena, MadWuher! (And the fans go wild)

3) stoneaxe: Homeworld B3 R1 G3

4) MrMoto: Homeworld G3 Y2 B3
	stoneaxe: 4 players- wow!  This is going to be a wild game!  Good luck all.

5) MadWuher: Build G1 Madwuher
	MrMoto: Galactic greetings from the MrMotonians.
	Trollkin: Good luck. First time player here. :-/
	MadWuher: Welcome Trollkin (does that mean we hafta go easy on him??? guys???) j/k

6) Trollkin: Build Y1 Trollkin
	stoneaxe: MadWuher, you need to go easy on All of us!!!  By the way, I liked your introduction! LOL

7) stoneaxe: Build G1 Stoneaxe

8) MrMoto: Build B1 Mrmoto
	stoneaxe: Trollkin, welcome to the game!  Make sure you don't build 4 of the same color in your homeworld, or someone will 'Catastrophe' you!    I did it in one of my first games.  Haha!  The 2 player version of this game is easier to "strategize" about.  4 player is just too many variables for me to think about, so I will just take it one move at a time.  This is only my 2nd game of 4-player.  My very first Homeworlds game was also 4-player, and its harder to learn the strategies this way.  But you are off to a good start!

Some may disagree, but I think Homeworlds is similar to Chess; or it exercises similar parts of the brain, or something.   Alien City is cool like that too.
	stoneaxe: Just curious:  What do you 3 have as far as real-life Icehouse pieces (stashes)?  I only have some homemade ones made out of card-stock.  I've played Martian Chess with them and a crude game of Homeworlds, but they worked.  Maybe I'll place an order for some 'real' plastic ones around Christmas.    Any Recommendations?
	MadWuher: I have 5 sets of the Rainbow colour treehouse sets giving me a total of 5 full stashes (Red, Green, Blue, Yellow and Black). I also bought the Grey stash from Looneylabs (so I can play Volcano) and am thinking of getting the Pink stash (just so I can play Volcano with all opaque colours). I want to create some card stock pyramids so I can keep them in my office in case I have a tricky move to make (in Homeworlds of course) and then I can keep my plastics ones safe and sound at home.

9) MadWuher: Trade G1 Y1 Madwuher

10) Trollkin: Discover Y1 Trollkin R3 Omicronpersei8

11) stoneaxe: Build G1 Stoneaxe

12) MrMoto: Build B1 Mrmoto

13) MadWuher: Build G1 Madwuher

14) Trollkin: Trade Y3 B3 Trollkin

15) stoneaxe: Trade G1 Y1 Stoneaxe

16) MrMoto: Discover B1 Mrmoto G1 Maillot

17) MadWuher: Discover G1 Madwuher B3 Decapod10

18) Trollkin: Build B1 Trollkin

19) stoneaxe: Build Y1 Stoneaxe

20) MrMoto: Build B1 Maillot

21) MadWuher: Build G1 Madwuher

22) Trollkin: Trade B3 G3 Trollkin

23) stoneaxe: Build G2 Stoneaxe

24) MrMoto: Trade B3 G3 Mrmoto

25) MadWuher: B G2 Decapod10

26) Trollkin: Build G2 Trollkin


27) stoneaxe: Discover Y1 Stoneaxe G2 Newgondor

28) MrMoto: Build G2 Mrmoto

29) MadWuher: Trade G2 Y2 Decapod10
	MrMoto: Trollkin, you might want to avoid building so many Green ships in one spot. Remember that if a system has four pieces of one colour, including stars, then they can be wiped out in a catastrophe -- and Decapod10 isn't far away ...

30) Trollkin: Move Y1 Omicronpersei8 Maillot


31) stoneaxe: Build Y1 Newgondor

32) MrMoto: Trade G2 Y2 Mrmoto

33) MadWuher: Build Y2 Decapod10
	MadWuher: Just to warn both Trollkin and Stoneaxe, I have the ability to reach either of your homeworlds with a green ship and cause a catastrophe. I see Mr. Moto traded a green away so he is safe (for the moment). I would suggest fixing this ASAP as next turn, I may not feel so generous as to leave the two of you alone. <insert evil laugh here>

34) Trollkin: Sacrifice Y1 Maillot
Discover G2 Trollkin Y3 Quacky

35) stoneaxe: Trade G2 R2 Stoneaxe

36) MrMoto: Discover Y2 Mrmoto B1 Popcorn
	stoneaxe: Thanks for the warning!

37) MadWuher: Build G2 Decapod10

38) Trollkin: Build G2 Quacky

39) stoneaxe: Move R2 Stoneaxe Newgondor

40) MrMoto: Build B2 Mrmoto

41) MadWuher: Build G2 Decapod10

42) Trollkin: Move G2 Quacky Maillot


43) stoneaxe: Move R2 Newgondor Decapod10

44) MrMoto: Build B2 Maillot

45) MadWuher: Sacrifice Y2 Decapod10
Move G1 Decapod10 Newgondor
Move G1 Newgondor Stoneaxe

46) Trollkin: Trade B1 Y1 Trollkin


47) stoneaxe: Attack Y2N Decapod10

48) MrMoto: Trade B2 Y2 Maillot

49) MadWuher: Sacrifice G2 Decapod10
Build G2 Stoneaxe
Build Y2 Madwuher
Catastrophe Stoneaxe G

50) Trollkin: Build Y3 Trollkin

51) stoneaxe: Attack G2N Decapod10

52) MrMoto: Sacrifice G3 Mrmoto
Build Y3 Popcorn
Build Y3 Maillot
Build B1 Mrmoto

53) MadWuher: Discover Y2 Madwuher G3 Newbury

54) Trollkin: Move Y3 Trollkin Decapod10

55) stoneaxe: Sacrifice G2 Decapod10
Build Y3 Stoneaxe
Build R1 Decapod10

56) MrMoto: Trade Y3 R3 Maillot

57) MadWuher: Build Y3 Madwuher

58) Trollkin: Build G1 Quacky

59) stoneaxe: Trade Y1 G1 Stoneaxe

60) MrMoto: Attack G2E Maillot

61) MadWuher: Discover G1 Madwuher B3 Blarney

62) Trollkin: Build Y1 Trollkin


63) stoneaxe: Build G2 Stoneaxe

64) MrMoto: Sacrifice Y2 Popcorn
Discover R3 Maillot R3 Hereicome
Move R3 Hereicome Trollkin

65) MadWuher: Trade Y1 R1 Madwuher

66) Trollkin: Move Y1 Trollkin Decapod10



67) stoneaxe: Discover G1 Stoneaxe Y2 Solace

68) MrMoto: Attack G3E Trollkin

69) MadWuher: Build G2 Blarney

70) Trollkin: Trade Y3 B3 Decapod10

71) stoneaxe: Build G3 Stoneaxe

72) MrMoto: Trade B1 R1 Mrmoto

73) MadWuher: Move R1 Madwuher Blarney

74) Trollkin: Build Y1 Trollkin

75) stoneaxe: Sacrifice G3 Stoneaxe
Build Y3 Stoneaxe
Build R2 Decapod10
Build G3 Stoneaxe

76) MrMoto: Build R2 Mrmoto

77) MadWuher: Sacrifice G2 Blarney
Build G2 Madwuher
Build R2 Blarney

78) Trollkin: Move B3 Decapod10 Popcorn


79) stoneaxe: Move R2 Decapod10 Newgondor

80) MrMoto: Attack Y1E Trollkin

81) MadWuher: Trade R1 B1 Blarney

82) Trollkin: Trade B3 R3 Popcorn

83) stoneaxe: Sacrifice G1 Solace
Build R1 Decapod10

84) MrMoto: Attack Y1E Trollkin

85) MadWuher: Sacrifice G3 Madwuher
Build G1 Blarney
Build G3 Madwuher
Build Y2 Madwuher

86) stoneaxe: Trade R2 B2 Decapod10

87) MrMoto: Discover B1 Maillot R2 Glomp

88) MadWuher: Discover G2 Madwuher R3 Helios

89) stoneaxe: Sacrifice G3 Stoneaxe
Build R2 Newgondor
Build R3 Newgondor
Build G3 Stoneaxe

90) MrMoto: Build B2 Maillot
	stoneaxe: I'm sorry, that was a typo.

91) MadWuher: Build R3 Blarney

92) stoneaxe: Discover R3 Newgondor B3 Bree

93) MrMoto: Sacrifice Y2 Maillot
Discover B1 Maillot Y2 Sticky
Move B2 Maillot Sticky

94) MadWuher: Sacrifice Y2 Madwuher
Move R3 Blarney Sticky
Move G1 Blarney Madwuher
	stoneaxe: This board is too large for my brain to process.

95) stoneaxe: Sacrifice Y2 Decapod10
Move R3 Bree Maillot
Move R3 Maillot Mrmoto
	MrMoto: If you think this is bad, I bet real-life outer space is at least twice as big!

96) MrMoto: Sacrifice Y3 Popcorn
Move B1 Sticky Stoneaxe
Move B2 Sticky Stoneaxe
Move B1 Glomp Stoneaxe
Catastrophe Stoneaxe B

97) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R2 Sticky
Build Y2 Newbury

98) stoneaxe: Sacrifice Y3 Stoneaxe
Move R1 Decapod10 Sticky
Move R1 Decapod10 Sticky
Move R2 Newgondor Newbury
Catastrophe Sticky Red

99) MrMoto: Build R1 Mrmoto
Catastrophe Mrmoto R

100) MadWuher: Sacrifice R2 Blarney
Attack R2S Newbury
Pass
	stoneaxe: If you think real-life outer space is bad, check out.... uhm... oh wait.  nevermind.

	stoneaxe: Observation:  It kind of makes it tough because the System's squares keep moving around anytime something changes.  It would be nicer if once a System was in one spot, it stayed there.  Its like you have to "re-learn" all the locations of Systems every time turn.  I doubt if I have the energy to start hacking away at the code though.  
Doesn't seem like it would do this if we played over a real board.  Do you think the enhancement would justify a Forum posting though? That could help in 2P games too.
	MrMoto: I agree very much, it's very disorienting. I think it definitely justifies a forum post.

101) stoneaxe: Sacrifice Y1 Newgondor
Move B2 Decapod10 Maillot

102) MrMoto: Trade B2 R2 Mrmoto

103) MadWuher: Build Y1 Madwuher

104) stoneaxe: Build Y2 Newgondor

105) MrMoto: Sacrifice G2 Maillot
Build B1 Mrmoto
Build R1 Mrmoto

106) MadWuher: Move Y2 Newbury Popcorn

107) stoneaxe: Move G3 Stoneaxe Mrmoto

108) MrMoto: Move R3 Trollkin Quacky

109) MadWuher: Sacrifice G3 Madwuher
Build G2 Blarney
Build G3 Madwuher
Build R1 Newbury

110) stoneaxe: Sacrifice R2 Newgondor
Attack R2W Mrmoto
Attack B1W Mrmoto

111) MrMoto: Attack B1S Mrmoto
	MadWuher: Sorry. Been sick for the past 6 days.

112) MadWuher: Discover R2 Newbury B2 Hera

113) stoneaxe: Attack R1W Mrmoto

114) MrMoto: Move G3 Trollkin Quacky

115) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R1 Newbury
Build R2 Hera

116) stoneaxe: Sacrifice R2 Mrmoto
Attack B1W Mrmoto
Attack B1W Mrmoto

117) MadWuher: Sacrifice Y3 Madwuher
Move R1 Newbury Stoneaxe
Move R1 Newbury Stoneaxe
Move R2 Hera Stoneaxe
Catastrophe Stoneaxe R

	stoneaxe: Well, Great game to all of you!  It was fun!  There was a critical moment in the game where if I went after wuher, then moto would wipe me out, and if I went after moto, then wuher would wipe me out.  I wavered, and ended up attacking moto, which cost me some extra moves.  He seemed the more immediate threat, but by the time I got into position, you had built up.   I must learn more patience............ :)   And now the unstoppable MadWuher empire will rule the galaxy!
	MrMoto: Thanks for the game! I think I was too impatient as well, going for the attack instead of waiting for the other two players to weaken themselves ...

It was fun though!
	MadWuher: Thank you all for the game. These multiplayer games are a lot of fun. Trying to keep everything clear though is difficult.



12058)
Variants: "Unrated, Hard time"
Started: 2008.11.27, Ended: 2008.12.8
Participants: MadWuher (S), MrMoto (N)
Winner: MrMoto

1) MrMoto: Homeworld Y3 B2 G3

2) MadWuher: Homeworld B1 Y2 G3
	MrMoto: Have fun!

3) MrMoto: Build G1 Mrmoto

4) MadWuher: Build G1 Madwuher

5) MrMoto: Discover G1 Mrmoto B1 Supertonic

6) MadWuher: Discover G1 Madwuher B3 Edora

7) MrMoto: Build G1 Supertonic

8) MadWuher: Build G2 Madwuher

9) MrMoto: Trade G1 Y1 Supertonic

10) MadWuher: Discover G2 Madwuher Y3 Bologna

11) MrMoto: Build G1 Mrmoto

12) MadWuher: Build G2 Madwuher

13) MrMoto: Sacrifice G3 Mrmoto
Build G2 Supertonic
Build G3 Mrmoto
Build G3 Mrmoto

14) MadWuher: Trade G1 R1 Edora

15) MrMoto: Discover G3 Mrmoto Y1 Morley

16) MadWuher: Sacrifice G3 Madwuher
Build G1 Bologna
Build G3 Madwuher
Build R1 Edora

17) MrMoto: Sacrifice G3 Mrmoto
Build G3 Mrmoto
Build Y1 Supertonic
Build Y2 Supertonic

18) MadWuher: Move G2 Bologna Supertonic

19) MrMoto: Discover Y2 Supertonic R3 Toque

20) MadWuher: Sacrifice R1 Edora
Attack Y1 Supertonic

21) MrMoto: Sacrifice G3 Mrmoto
Build G3 Mrmoto
Build Y2 Toque
Build Y3 Supertonic

22) MadWuher: Sacrifice G1 Bologna
Build Y3 Supertonic
Catastrophe Supertonic Y

23) MrMoto: Sacrifice Y2 Toque
Discover G2 Supertonic Y3 Runcible
Discover G1 Supertonic B3 Spoon
	MadWuher: Couldn't help myself..... =)
	MrMoto: Ah! This game is truly complex. It took me a while to see how that was possible.

24) MadWuher: Sacrifice G3 Madwuher
Build G1 Supertonic
Build G3 Madwuher
Build R1 Edora

25) MrMoto: Sacrifice Y2 Toque
Move G1 Spoon Madwuher
Move G2 Runcible Madwuher
Catastrophe Madwuher G
	MadWuher: It's too much fun to blow things up like that. Now it looks like we'll both be doing similar moves for a little while. =)
	MrMoto: It sure is fun to blow things up! ;)
	MadWuher: =) Upto another unrated game?



12257)
Started: 2008.11.30, Ended: 2008.12.7
Participants: agentofchaos (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) agentofchaos: Homeworld G3 Y1 B3

3) ts52: Build G1 Ts52
	agentofchaos: Hi, enjoy the game. 

4) agentofchaos: Build B1 Agentofchaos
	ts52: Thanks, you too!

5) ts52: Discover G1 Ts52 B3 Grover

6) agentofchaos: Discover B1 Agentofchaos G2 Castrafoon

7) ts52: Build G1 Ts52

8) agentofchaos: Build B1 Castrafoon

9) ts52: Build G1 Grover

10) agentofchaos: Build B2 Agentofchaos

11) ts52: Build G2 Ts52

12) agentofchaos: Build B2 Castrafoon

13) ts52: Discover G2 Ts52 B3 Gonzo

14) agentofchaos: Trade B1 Y1 Castrafoon

15) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Grover

16) agentofchaos: Build Y1 Castrafoon

17) ts52: Trade G3 Y3 Grover

18) agentofchaos: Trade B3 G3 Agentofchaos

19) ts52: Trade G2 Y2 Gonzo

20) agentofchaos: Build G2 Agentofchaos

21) ts52: Sacrifice Y2 Gonzo
Move G1 Grover Castrafoon
Move G1 Castrafoon Agentofchaos
Catastrophe Agentofchaos Green

22) agentofchaos: Trade B2 G2 Agentofchaos

23) ts52: Move G1 Grover Agentofchaos
	agentofchaos: Clever play, didn't see that coming. 

24) agentofchaos: Build G1 Agentofchaos

25) ts52: Build G3 Agentofchaos
Catastrophe Agentofchaos G
	ts52: Yeah, the sacrifice => catastrophe can be hard to see coming.

	ts52: thanks for the game
	agentofchaos: Thanks well played


12142)
Started: 2008.11.30, Ended: 2008.12.28
Participants: TwoShort (S), agentofchaos (N)
Winner: TwoShort

1) agentofchaos: Homeworld G1 Y2 B3

2) TwoShort: Homeworld R1 B3 G3

3) agentofchaos: Build B1 Agentofchaos
	TwoShort: Howdy
	agentofchaos: Hi there. I'm new to this game, looks like fun. 

4) TwoShort: Build G1 Twoshort

5) agentofchaos: Discover B1 Agentofchaos G3 Spiderworld
	TwoShort: Well then, I'll engage in my typical practice of giving new players pointers slightly too late for it to help them :) ... 
  I'd recommend starting with a green ship; it's easiest, and usually best in any case.
	agentofchaos: OK, I'll keep that in my mind in later games (so it will help eventually!)

6) TwoShort: Build G1 Twoshort

7) agentofchaos: Build B1 Agentofchaos

8) TwoShort: Trade G1 Y1 Twoshort

9) agentofchaos: Build B1 Spiderworld

10) TwoShort: Build G1 Twoshort

11) agentofchaos: Build B2 Spiderworld

12) TwoShort: Discover G1 Twoshort Y2 Yellonia

13) agentofchaos: Build B2 Agentofchaos

14) TwoShort: Build G2 Yellonia

15) agentofchaos: Trade B1 Y1 Spiderworld

16) TwoShort: Build Y1 Twoshort
	TwoShort: OK, since you're new I'm going to give you the chance to undo that... Otherwise I'm just going to call a catastrophe.  
	agentofchaos: Thanks for pointing that out, i forgot that catastrophes could be triggered even if you don't have  a ship in the system. 

17) agentofchaos: Build Y2 Spiderworld

18) TwoShort: Discover Y1 Twoshort G2 Grogar

19) agentofchaos: Trade Y2 R2 Spiderworld

20) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yellonia
Build G3 Twoshort

21) agentofchaos: Build Y2 Spiderworld

22) TwoShort: Sacrifice G3 Twoshort
Build Y3 Grogar
Build Y3 Twoshort
Build G3 Twoshort

23) agentofchaos: Build R1 Spiderworld
	agentofchaos: That was a clever sacrifice tactic, I'll remember to use that technique to build extra ships. 
	TwoShort: That's called "the Factory", and it's a big part of why I recommend starting with a green ship.  Because if your opponent gets a factory going and you don't, it's really bad... :)

24) TwoShort: Trade G2 R2 Twoshort
	agentofchaos: The factory system is awesome!

25) agentofchaos: Trade B3 Y3 Agentofchaos

26) TwoShort: Sacrifice Y1 Twoshort
Discover Y3 Grogar R3 Deathstar

27) agentofchaos: Trade Y3 R3 Agentofchaos

28) TwoShort: Sacrifice G3 Twoshort
Build Y1 Deathstar
Build Y3 Grogar
Build G2 Twoshort

29) agentofchaos: Discover B1 Agentofchaos R3 Ectopia

30) TwoShort: Move Y3 Deathstar Agentofchaos

31) agentofchaos: Attack Y3 Agentofchaos

32) TwoShort: Sacrifice Y3 Grogar
Move Y1 Grogar Deathstar
Move Y1 Deathstar Agentofchaos
Move Y1 Deathstar Agentofchaos
Catastrophe Agentofchaos Yellow

33) agentofchaos: Trade B2 G2 Spiderworld

34) TwoShort: Sacrifice Y3 Twoshort
Move G1 Yellonia Agentofchaos
Move G2 Yellonia Agentofchaos
Move G3 Yellonia Agentofchaos
Catastrophe Agentofchaos Green

	agentofchaos: Clever play. I'm starting to get a clearer sense of the strategy in this game.
	TwoShort: Three-pointers are the key; they represent such a huge ability to affect the game that if you can get any more 3 pointers than the other guy you can usually find a way to turn that into victory.
	agentofchaos: Well played. Thanks for the playing tips, I'll keep them in mind. 


12183)
Started: 2008.11.30, Ended: 2008.12.7
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld G3 Y1 B3



12220)
Started: 2008.11.30, Ended: 2009.1.9
Participants: agentofchaos (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R2 B3 G3

2) agentofchaos: Homeworld G1 B2 Y3

3) MadWuher: Build G1 Madwuher
	agentofchaos: Hi, enjoy the game. 
	MadWuher: Same to you.

4) agentofchaos: Build Y1 Agentofchaos

5) MadWuher: Build G1 Madwuher

6) agentofchaos: Discover Y1 Agentofchaos G3 Leviathan

7) MadWuher: Trade G3 Y3 Madwuher

8) agentofchaos: Build Y1 Leviathan

9) MadWuher: Discover G1 Madwuher B1 Edora

10) agentofchaos: Build Y1 Agentofchaos

11) MadWuher: Build G2 Madwuher

12) agentofchaos: Build Y2 Agentofchaos

13) MadWuher: Build G2 Edora

14) agentofchaos: Trade Y3 G3 Agentofchaos

15) MadWuher: Build Y2 Madwuher

16) agentofchaos: Build G2 Agentofchaos

17) MadWuher: Sacrifice Y2 Madwuher
Move G1 Edora Leviathan
Move G1 Leviathan Agentofchaos
Catastrophe Agentofchaos G

18) agentofchaos: Trade Y2 R2 Agentofchaos
	agentofchaos: Oh crud, good move :-)

19) MadWuher: Build Y2 Madwuher

20) agentofchaos: Trade Y1 G1 Agentofchaos

21) MadWuher: Discover G2 Madwuher B1 Bologna

22) agentofchaos: Build G1 Agentofchaos

23) MadWuher: Build G2 Madwuher

24) agentofchaos: Build R1 Agentofchaos

25) MadWuher: Build G3 Edora

26) agentofchaos: Trade G1 Y1 Agentofchaos

27) MadWuher: Trade G2 R2 Madwuher

28) agentofchaos: Build G1 Agentofchaos

29) MadWuher: Sacrifice G3 Edora
Build G2 Madwuher
Build G3 Edora
Build G3 Bologna

30) agentofchaos: Build R1 Agentofchaos

31) MadWuher: Move Y2 Madwuher Edora

32) agentofchaos: Build Y2 Agentofchaos

33) MadWuher: Sacrifice G3 Edora
Build G3 Edora
Build Y2 Madwuher
Build Y3 Edora

34) agentofchaos: Discover Y1 Leviathan B2 Cryoferno

35) MadWuher: Move G3 Edora Agentofchaos

36) agentofchaos: Move G1 Agentofchaos Leviathan

37) MadWuher: Sacrifice Y2 Edora
Move Y2 Madwuher Bologna
Move R2 Madwuher Bologna

38) agentofchaos: Move R1 Agentofchaos Leviathan

39) MadWuher: Sacrifice G3 Bologna
Build G3 Bologna
Build Y2 Edora
Build Y3 Bologna

40) agentofchaos: Move G1 Leviathan Cryoferno

41) MadWuher: Sacrifice R2 Bologna
Attack R2 Agentofchaos
Attack Y2 Agentofchaos

	agentofchaos: well played
	MadWuher: thanks. whenever you're up to another, just start one of my challenges.


12252)
Variants: "Hard time"
Started: 2008.11.30, Ended: 2009.1.8
Participants: Jesse (S), agentofchaos (N)
Winner: Jesse

1) agentofchaos: Homeworld G1 B2 Y3

2) Jesse: Homeworld B3 R1 G3

3) agentofchaos: Build Y1 Agentofchaos
	Jesse: Have a good game.
	agentofchaos: Thanks you too! I only just started playing as of yesterday, looks like fun. 

4) Jesse: Build G1 Jesse

5) agentofchaos: Discover Y1 Agentofchaos G3 Wendigo
	Jesse: Since your profile says you like Chess variants, I expect you will enjoy it.  I'll be happy to help you along the way to learning Homeworlds strategy.

6) Jesse: Build G1 Jesse

7) agentofchaos: Build Y1 Wendigo

8) Jesse: Trade G3 Y3 Jesse

9) agentofchaos: Build Y1 Wendigo
	agentofchaos: Yes another player recommended this game to me based on my liking of chess variants. i also like space themes, so that's good too. Any strategy tips would be welcome. 

10) Jesse: Build Y2 Jesse

11) agentofchaos: Discover Y1 Wendigo B1 Freehold
	Jesse: The games require similar skills, have similar issues of attack and defense, and have similar scope in space and piece variety.  Yet, they do no feel the same to me.  Homeworlds feels more strategically driven, with most of the decisions being decided on fuzzy reasoning about trade-offs of strengths in different areas.  Chess has sharper decisions, I think.  They are still more similar than, say, Chess and Go.  It's more the Chess variants that make me think you are likely to enjoy Homeworlds than Chess itself.  It shows you like different things in roughly the same vein.

As for strategy tips, let's start with this: To avoid catastrophes, you generally want to spread out your ships of the same color, and diversify the colors in any given system.  It's harder and much more expensive for your opponent to drop two ships into your system to cause a catastrophe than it is for him to drop in one, and it's harder and more expensive still to drop in three.  Spread and diversification of your ships also improves your economic strength.  Control of the global stash economy is sort of like control of the center in Chess.  It gives you the strength and flexibility to do what you want.  Without it, you are forced into awkward positions from which it is difficult to gain the advantage.

12) Jesse: Discover Y2 Jesse B2 Bloom
	agentofchaos: Thanks for the tips, the analogies with chess are quite interesting. 

13) agentofchaos: Build Y2 Wendigo

14) Jesse: Build G2 Jesse

15) agentofchaos: Trade Y3 G3 Agentofchaos

16) Jesse: Move G1 Jesse Bloom

17) agentofchaos: Move Y2 Wendigo Freehold
	Jesse: Careful with that.  Four pieces of the same color can trigger a catastrophe.  If you build another green, that makes three, and I now have a g1 two steps from your homeworld, which means I can get it there in one turn with a y2 sacrifice.
	agentofchaos: Thanks for the heads up. deeper and deeper... :-)

18) Jesse: Build Y2 Bloom

19) agentofchaos: Trade G3 Y3 Agentofchaos

20) Jesse: Build Y3 Jesse

21) agentofchaos: Trade Y2 G2 Freehold

22) Jesse: Trade Y2 R2 Bloom

23) agentofchaos: Trade G2 R2 Freehold
	Jesse: There is an ancient Homeworlds proverb: When your opponent picks up a gun, you should pick up a gun.  It refers to not leaving yourself vulnerable to capture when your opponent gets a red ship.

24) Jesse: Build G2 Bloom
	agentofchaos: Sounds like a wise proverb!

25) agentofchaos: Build Y2 Agentofchaos

26) Jesse: Build G2 Bloom

27) agentofchaos: Trade Y3 G3 Agentofchaos

28) Jesse: Discover G2 Bloom Y3 Tide

29) agentofchaos: Trade G3 R3 Agentofchaos
	Jesse: Your home is one step from Tide and two steps from Bloom, so a Y3 sacrifice can put two of my ships there.

30) Jesse: Build G3 Tide

31) agentofchaos: Build R1 Agentofchaos

32) Jesse: Sacrifice G3 Tide
Build G3 Tide
Build G3 Bloom
Build Y2 Bloom
	agentofchaos: Thanks for the heads up, I'll watch out for sacrifice opportunities. 

33) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y1 Freehold Bloom
Move Y1 Wendigo Bloom
Catastrophe Bloom Y
	Jesse: This is a common maneuver called "the factory".
	agentofchaos: Yes, another player told me about the factory, it's an awesome tactic. 

34) Jesse: Trade G2 Y2 Bloom

35) agentofchaos: Build Y1 Wendigo

36) Jesse: Move R2 Bloom Wendigo


37) agentofchaos: Move Y1 Wendigo Freehold

38) Jesse: Attack Y1 Wendigo

39) agentofchaos: Trade R1 Y1 Agentofchaos

40) Jesse: Sacrifice G3 Bloom
Build G2 Bloom
Build G3 Bloom
Build R1 Wendigo

41) agentofchaos: Build Y2 Agentofchaos

42) Jesse: Trade G3 R3 Bloom

43) agentofchaos: Discover R2 Freehold G3 Titian

44) Jesse: Sacrifice G3 Tide
Build G3 Tide
Build Y2 Wendigo
Build R1 Bloom

45) agentofchaos: Build R2 Agentofchaos
	Jesse: Nice move, blocking me from rebuilding the g3, by the way.

46) Jesse: Sacrifice Y3 Jesse
Move R1 Wendigo Agentofchaos
Move R2 Wendigo Agentofchaos
Move G3 Tide Agentofchaos
Catastrophe Agentofchaos R
	Jesse: Ah, now that's trouble for you.

47) agentofchaos: Build Y3 Agentofchaos

48) Jesse: Sacrifice R3 Bloom
Attack Y3 Agentofchaos
Attack Y2 Agentofchaos
Attack Y1 Agentofchaos
	agentofchaos: Feeling quite disarmed I am...
	Jesse: Thanks for the game.  I hope you learned a few things.



12269)
Variants: "Unrated"
Started: 2008.12.1, Ended: 2009.1.23
Participants: fnord (S), MathGod (N)
Winner: MathGod

1) MathGod: Homeworld Y1 B2 G3

2) fnord: Homeworld B3 Y2 G3

3) MathGod: Build G1 Mathgod

4) fnord: Build G1 Fnord

5) MathGod: Discover G1 Mathgod Y3 Yelena

6) fnord: Trade G1 Y1 Fnord

7) MathGod: Build G1 Mathgod

8) fnord: Build Y1 Fnord

9) MathGod: Trade G1 R1 Mathgod

10) fnord: Discover Y1 Fnord B1 Eris

11) MathGod: Build G1 Mathgod

12) fnord: Trade Y1 G1 Eris

13) MathGod: Build G2 Mathgod

14) fnord: Build G2 Fnord

15) MathGod: Sacrifice G3 Mathgod
Build G2 Yelena
Build G3 Yelena
Build G3 Mathgod

16) fnord: Trade G2 R2 Fnord

17) MathGod: Discover G2 Yelena B1 Belena
	fnord: Gah, I can't count, can I.

18) fnord: Build G2 Eris

19) MathGod: Trade G1 B1 Mathgod

20) fnord: Move R2 Fnord Eris

21) MathGod: Build B2 Mathgod

22) fnord: Trade G2 Y2 Eris

23) MathGod: Move B2 Mathgod Yelena

24) fnord: Build R1 Eris

25) MathGod: Sacrifice G3 Mathgod
Build G1 Belena
Build G2 Belena
Build G3 Mathgod

26) fnord: Sacrifice Y2 Eris
Move G1 Eris Yelena
Move G1 Yelena Belena
Catastrophe Belena Green

27) MathGod: Move G3 Yelena Eris

28) fnord: Trade R2 Y2 Eris

29) MathGod: Sacrifice R1 Mathgod
Attack R1 Eris

30) fnord: Build G1 Fnord

31) MathGod: Attack Y2 Eris

32) fnord: Trade G3 R3 Fnord

33) MathGod: Build B1 Yelena

34) fnord: Build R1 Fnord

35) MathGod: Discover B1 Yelena Y2 Hail

36) fnord: Discover Y1 Fnord G1 Chaos

37) MathGod: Sacrifice G3 Mathgod
Build B2 Yelena
Build B3 Mathgod
Build B3 Hail

38) fnord: Build G2 Fnord

39) MathGod: Build G2 Eris

40) fnord: Move G1 Fnord Eris

41) MathGod: Sacrifice G3 Eris
Build G3 Mathgod
Build G3 Mathgod
Build G3 Yelena

42) fnord: Trade R3 Y3 Fnord

43) MathGod: Attack G1 Eris

44) fnord: Sacrifice Y3 Fnord
Move G2 Fnord Chaos
Move G2 Chaos Yelena
Move G2 Yelena Mathgod
Catastrophe Mathgod Green

45) MathGod: Move G2 Eris Fnord

46) fnord: Move Y1 Chaos Fnord

47) MathGod: Sacrifice R1 Eris
Attack R1 Fnord

48) fnord: Trade Y1 G1 Fnord

49) MathGod: Attack G1 Fnord

	MathGod: Thank you for the game
	fnord: And thank you, too!


12295)
Started: 2008.12.1, Ended: 2008.12.21
Participants: MathGod (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) MathGod: Homeworld Y1 B2 G3
	MathGod: Hi there. Hope you enjoy the game

3) TwoShort: Build G1 Twoshort
	TwoShort: Howdy... have a good game.

4) MathGod: Build G1 Mathgod

5) TwoShort: Trade G1 Y1 Twoshort

6) MathGod: Build G1 Mathgod

7) TwoShort: Build Y1 Twoshort

8) MathGod: Discover G1 Mathgod Y3 Yelonia

9) TwoShort: Build Y2 Twoshort

10) MathGod: Trade G3 Y3 Mathgod
	TwoShort: Hmmm... "Yelonia" is a name I use periodically; coincidence, or are you subtly telling me you've been perusing my past games?

11) TwoShort: Discover Y1 Twoshort G2 Grogar
	MathGod: Saw it once, didn't know it was yours. Want me to take it back? =D

12) MathGod: Trade G1 R1 Mathgod

13) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y2 Grogar
Build Y3 Twoshort

14) MathGod: Build G1 Yelonia

15) TwoShort: Trade Y2 R2 Twoshort

16) MathGod: Move G1 Yelonia Mathgod

17) TwoShort: Move Y2 Grogar Yelonia

18) MathGod: Discover G1 Yelonia Y2 Yell-o

19) TwoShort: Move R2 Twoshort Yell-o

20) MathGod: Build G1 Yell-o

21) TwoShort: Trade Y3 G3 Twoshort

22) MathGod: Build G2 Mathgod

23) TwoShort: Attack G1S Yell-o

24) MathGod: Sacrifice G2 Mathgod
Build G2 Yell-o
Build G2 Mathgod

25) TwoShort: Attack G2S Yell-o

26) MathGod: Sacrifice G2 Mathgod
Build G2 Yell-o
Build G3 Mathgod
Catastrophe Yell-o G

27) TwoShort: Build Y3 Twoshort
	MathGod: Woo-hoo!!!!

28) MathGod: Discover Y3 Mathgod B3 Bellyflop
	MathGod: D'oh

29) TwoShort: Build G1 Twoshort

30) MathGod: Move G1 Mathgod Bellyflop

31) TwoShort: Trade G1 B1 Twoshort

32) MathGod: Build G1 Bellyflop

33) TwoShort: Move B1 Twoshort Grogar

34) MathGod: Discover G1 Bellyflop B2 Gumboot

35) TwoShort: Discover B1 Grogar G3 Deathstar

36) MathGod: Build G1 Mathgod

37) TwoShort: Build B1 Deathstar

38) MathGod: Sacrifice G3 Mathgod
Build G2 Bellyflop
Build G2 Gumboot
Build G3 Mathgod

39) TwoShort: Discover Y2 Grogar B3 Blitzen

40) MathGod: Build R1 Mathgod

41) TwoShort: Sacrifice Y2 Yelonia
Move B1 Deathstar Mathgod
Move B1 Deathstar Mathgod

42) MathGod: Build G3 Gumboot

43) TwoShort: Sacrifice G3 Twoshort
Build B1 Mathgod
Build Y2 Blitzen
Build Y3 Blitzen
Catastrophe Mathgod Blue

44) MathGod: Sacrifice Y3 Bellyflop
Move G1 Bellyflop Grogar
Move G2 Bellyflop Grogar
Move G1 Mathgod Grogar
Catastrophe Grogar G
	MathGod: Ohhhh. Now I'm in trouble. Thanks for the game.
	TwoShort: Thanks for the game,

45) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Blitzen Mathgod
Move Y2 Blitzen Mathgod
Move Y2 Blitzen Mathgod
Catastrophe Mathgod Yellow
	MathGod: Is it be better etiquette to let my opponent playout the win? Or should I bow out gracefully by resigning?
	TwoShort: When the game is completely decided, it's certainly not impolite to resign - nobody expects you to slog on once it's hopeless.  But I, at least, also have no problem with playing it out to the very end.  If nothing else, it's good practice to see if you can stave off the end for even one more turn.  
	TwoShort: All of which is academic for this game, I'm afraid :)
	MathGod: Thanks for the information and the game. I really appreciate it.



12296)
Started: 2008.12.7, Ended: 2008.12.23
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



12359)
Started: 2008.12.7, Ended: 2008.12.23
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld G3 B1 Y3
	agentofchaos: G3 B1 Y2 

	agentofchaos: Hi, enjoy the game!


12307)
Started: 2008.12.7, Ended: 2008.12.11
Participants: TwoShort (S), MadWuher (N)
Winner: TwoShort

1) MadWuher: Homeworld R2 B3 G3

2) TwoShort: Homeworld R1 B2 G3

3) MadWuher: B G1 Madwuher

4) TwoShort: Build G1 Twoshort

5) MadWuher: T G1 Y1 Madwuher

6) TwoShort: Trade G1 Y1 Twoshort

7) MadWuher: Build G1 Madwuher

8) TwoShort: Build G1 Twoshort

9) MadWuher: Discover G1 Madwuher B1 Edora

10) TwoShort: Discover G1 Twoshort Y3 Yolonda

11) MadWuher: Build G1 Madwuher

12) TwoShort: Build G2 Twoshort

13) MadWuher: Build G2 Edora

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yolonda
Build G3 Twoshort

15) MadWuher: Trade G2 Y2 Edora

16) TwoShort: Trade G2 R2 Twoshort

17) MadWuher: Sacrifice G3 Madwuher
Build G2 Edora
Build G2 Madwuher
Build G3 Madwuher

18) TwoShort: Discover G1 Yolonda Y1 Yak

19) MadWuher: Trade G1 R1 Madwuher

20) TwoShort: Discover R2 Twoshort Y3 Yoyo

21) MadWuher: Sacrifice G3 Madwuher
Build Y2 Edora
Build Y2 Madwuher
Build Y3 Madwuher

22) TwoShort: Move G2 Twoshort Yoyo

23) MadWuher: Sacrifice Y1 Madwuher
Discover G2 Edora G3 Bologna

24) TwoShort: Build R1 Yoyo

25) MadWuher: Build R2 Madwuher

26) TwoShort: Discover R2 Yoyo Y1 Yanyan

27) MadWuher: Sacrifice Y2 Madwuher
Move R1 Madwuher Edora
Discover R2 Madwuher G1 Camelot

28) TwoShort: Sacrifice G2 Yoyo
Build R3 Yoyo
Build R3 Yanyan

29) MadWuher: Build R3 Edora

30) TwoShort: Build Y2 Twoshort

31) MadWuher: Build G2 Edora

32) TwoShort: Discover Y2 Twoshort B3 Bluestar

33) MadWuher: Sacrifice G2 Bologna
Build G2 Edora
Build G3 Madwuher

34) TwoShort: Sacrifice G3 Yolonda
Build G3 Yak
Build Y3 Bluestar
Pass

35) MadWuher: Trade G2 B2 Edora

36) TwoShort: Sacrifice Y2 Bluestar
Move R3 Yoyo Edora
Move R1 Yoyo Edora
Catastrophe Edora Red

37) MadWuher: Sacrifice Y2 Edora
Move G3 Madwuher Edora
Move G2 Edora Madwuher

38) TwoShort: Sacrifice G3 Yak
Build Y2 Twoshort
Build Y2 Twoshort
Build Y3 Bluestar
	TwoShort: Sorry.
	MadWuher: Not a problem.....

39) MadWuher: Discover G2 Madwuher B1 Bologna

40) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Bluestar Edora
Move Y3 Bluestar Camelot

41) MadWuher: Sacrifice R2 Camelot
Attack Y3 Edora
Pass

42) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Camelot Madwuher
Move R3 Yanyan Madwuher

43) MadWuher: Sacrifice Y2 Edora
Move G3 Edora Madwuher
Move Y3 Edora Madwuher

44) TwoShort: Sacrifice R3 Madwuher
Attack Y3N Madwuher
Attack Y3N Madwuher
Attack G3N Madwuher

45) MadWuher: Sacrifice G2 Bologna
Build G1 Madwuher
Build G2 Madwuher
	MadWuher: D'oh....... Didn't see that one coming so quickly.

46) TwoShort: Pass
Catastrophe Madwuher Green
	MadWuher: Oh well, C'est la vie.

Any way I could have gotten out of that mess?
	MadWuher: How many moves ago did you plan this/see this coming?
	TwoShort: Well, you shouldn't have let me get ahead on 3 points way back at the beginning.  But you were doing a remarkably good job holding me off after that until right after the red catastrophe.  I think I was expecting you to go after the big yellows at that point, but instead you let me take them.  At that point it was probably over; once I jumped into your systems with the y3s you could have done something desperate to preserve the r2 and live a bit longer, but it would have been ugly.
  Anyway, thanks for the game!

	MadWuher: Thanks for the game. I'll replay that game again with my pieces and see what I could do better for the next time we play. (After all, I have to beat you at least once, right?)
	TwoShort: I hadn't seen your "how many moves" question when I wrote that last message, so to answer that: I guess I thought through this sequence when I was considering the move that built the 3 yellow pieces.  But not really as what I expected to happen; rather as "If I do that, he could set up to take the g3, but if he does I can threaten Edora and his r2, and he'll have to sacrifice a yellow and run away with whatever he can, because if he leaves the r2 I can take it and threaten to pounce on his homeworld, or if he uses it I can pounce immediately."  So I guess that's 2 of my moves in advance, but it's not like I considered every other thing you could have done; I tend to just look for what the other guy could do that might make my move not worth it, and see if I can respond to that.
  In any case, I'm happy to play anytime...


12362)
Started: 2008.12.7, Ended: 2009.1.18
Participants: MadWuher (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) MadWuher: Homeworld R2 B3 G3
	ts52: Have a good game!
	MadWuher: You too.

3) ts52: Build G1 Ts52

4) MadWuher: Build G1 Madwuher

5) ts52: Trade G1 R1 Ts52

6) MadWuher: Trade G1 Y1 Madwuher

7) ts52: Build G1 Ts52

8) MadWuher: Build G1 Madwuher

9) ts52: Discover G1 Ts52 B3 Grover

10) MadWuher: Discover G1 Madwuher Y1 Edora

11) ts52: Build R1 Ts52

12) MadWuher: Build Y1 Madwuher

13) ts52: Trade R1 B1 Ts52

14) MadWuher: Build Y2 Madwuher

15) ts52: Discover B1 Ts52 G3 Kermit

16) MadWuher: Trade Y2 B2 Madwuher

17) ts52: Build G1 Ts52

18) MadWuher: Build G2 Madwuher

19) ts52: Build G2 Grover

20) MadWuher: Build G2 Edora

21) ts52: Trade G2 Y2 Grover

22) MadWuher: Sacrifice Y1 Madwuher
Discover G2 Edora Y3 Bologna

23) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build R1 Ts52

24) MadWuher: Move B2 Madwuher Edora

25) ts52: Move R1 Ts52 Grover

26) MadWuher: Trade G1 R1 Edora

27) ts52: Build R2 Ts52

28) MadWuher: Trade G2 Y2 Madwuher

29) ts52: Move R2 Ts52 Kermit

30) MadWuher: Build G1 Madwuher

31) ts52: Build B1 Kermit

32) MadWuher: Sacrifice G3 Madwuher
Build B2 Edora
Build G2 Bologna
Build G3 Madwuher

33) ts52: Trade B1 Y1 Kermit

34) MadWuher: Sacrifice Y2 Madwuher
Move G2 Bologna Ts52
Move G2 Bologna Ts52
Catastrophe Ts52 G

35) ts52: Sacrifice G2 Grover
Build R2 Grover
Build R3 Ts52
	MadWuher: Had to do something eh? I was hoping to find time to setup a better move but felt I better do something soon. I'll be in and out of touch for a few days but I should be able to login on Sunday (by the earliest).

36) MadWuher: Sacrifice G1 Madwuher
Build R3 Edora
	ts52: No problem. Happy Holidays!

37) ts52: Trade R1 G1 Ts52

38) MadWuher: Trade B2 G2 Edora

39) ts52: Trade R2 G2 Grover

40) MadWuher: Build G1 Madwuher

41) ts52: Sacrifice G2 Grover
Build Y2 Grover
Build Y3 Kermit

42) MadWuher: Build Y3 Madwuher

43) ts52: Build Y3 Grover

44) MadWuher: Sacrifice Y3 Madwuher
Move Y1 Madwuher Edora
Move Y1 Edora Grover
Move G2 Edora Grover
Catastrophe Grover Y

45) ts52: Build G2 Ts52

46) MadWuher: Sacrifice G3 Madwuher
Build G2 Grover
Build G3 Grover
Build G3 Madwuher
Catastrophe Grover G

47) ts52: Move G2 Ts52 Grover

48) MadWuher: Trade G1 Y1 Madwuher

49) ts52: Build G1 Grover

50) MadWuher: Build Y2 Madwuher

51) ts52: Trade G2 Y2 Grover

52) MadWuher: Trade Y1 G1 Madwuher

53) ts52: Build G2 Grover

54) MadWuher: Move G1 Madwuher Edora

55) ts52: Sacrifice G2 Grover
Build Y1 Kermit
Build Y3 Grover

56) MadWuher: Build Y3 Madwuher

57) ts52: Sacrifice Y3 Kermit
Move Y1 Kermit Edora
Move Y1 Kermit Edora
Move Y2 Grover Edora
Catastrophe Edora Yellow

58) MadWuher: Build G1 Madwuher

59) ts52: Build G2 Grover

60) MadWuher: Discover G3 Madwuher B1 Edora

61) ts52: Move Y3 Grover Edora

62) MadWuher: Sacrifice Y2 Madwuher
Discover G3 Edora Y3 Bologna
Pass
	MadWuher: Wow, I seem to be getting stomped be you. I have no idea where my minds been lately.

63) ts52: Build G2 Grover

64) MadWuher: Build G2 Bologna

65) ts52: Build G3 Ts52

66) MadWuher: Build Y1 Madwuher

67) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Edora
Build B2 Kermit

68) MadWuher: Discover Y1 Madwuher R1 Camelot

69) ts52: Move Y1 Edora Kermit

70) MadWuher: Sacrifice G3 Bologna
Build G3 Madwuher
Build Y1 Camelot
Build Y2 Madwuher

71) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Edora
Build B2 Kermit

72) MadWuher: Discover Y1 Camelot B3 Marco

73) ts52: Move B2 Kermit Camelot

74) MadWuher: Sacrifice G2 Bologna
Build Y3 Camelot
Pass

75) ts52: Attack Y1S Camelot

76) MadWuher: Attack B2 Camelot

77) ts52: Move Y1 Camelot Grover

78) MadWuher: Trade Y1 R1 Marco

79) ts52: Move G1 Grover Edora

80) MadWuher: Move G1 Madwuher Camelot

81) ts52: Sacrifice G3 Ts52
Build G2 Edora
Build G3 Ts52
Build Y1 Grover

82) MadWuher: Build B2 Camelot

83) ts52: Sacrifice Y3 Edora
Move Y2 Edora Madwuher
Move G2 Edora Madwuher
Move G1 Edora Madwuher

84) MadWuher: Sacrifice B2 Camelot
Trade Y3 R3 Madwuher
Trade Y2 B2 Madwuher

85) ts52: Sacrifice B2 Kermit
Trade G2 B2 Madwuher
Trade G1 B1 Madwuher
Catastrophe Madwuher Blue

86) MadWuher: Sacrifice G3 Madwuher
Build R2 Marco
Build R3 Marco
Build B1 Camelot

87) ts52: Sacrifice Y1 Grover
Discover G2 Grover Y1 Zoe
	MadWuher: Woo hoo. I can go out in style !!!
	MadWuher: Thanks for the game

88) MadWuher: Attack Y2 Madwuher

89) ts52: Sacrifice G3 Ts52
Build Y2 Kermit
Build Y3 Grover
Build B2 Kermit

90) MadWuher: Sacrifice B2 Camelot
Trade R3 G3 Madwuher
Trade R2 G2 Marco

91) ts52: Sacrifice G2 Grover
Build R2 Grover
Build R3 Kermit

92) MadWuher: Build Y3 Camelot

93) ts52: Sacrifice Y2 Kermit
Move Y1 Kermit Camelot
Move Y1 Grover Camelot
Catastrophe Camelot Yellow

94) MadWuher: Build B2 Camelot
	MadWuher: I'm trying to figure out why you haven't just taken me out yet. 

95) ts52: Trade B2 Y2 Kermit
	ts52: I haven't seen a certain way to take you out. I'm working on it though...

96) MadWuher: Build G1 Madwuher
	MadWuher: What? The red catastrophe in my home system doesn't work for you? 

97) ts52: Sacrifice Y3 Grover
Move R1 Grover Madwuher
Move R2 Grover Madwuher
Move R2 Kermit Madwuher
Catastrophe Madwuher Red
	ts52: Wow, I forgot about being able to get there straight from 3s. Sorry about that.
	ts52: Now I feel like an idiot. Sorry about that. Thanks for the game.
	MadWuher: Not a`problem. I just thought you were trying to rub it in or something. =) 



12366)
Started: 2008.12.11, Ended: 2008.12.29
Participants: apeloverage (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) apeloverage: Homeworld B1 G2 Y3
	TwoShort: Howdy.

3) TwoShort: Build G1 Twoshort
	apeloverage: Hi!

4) apeloverage: Build Y1 Apeloverage

5) TwoShort: Build G1 Twoshort

6) apeloverage: Discover Y1 Apeloverage B3 Apeloverage1

7) TwoShort: Trade G1 Y1 Twoshort

8) apeloverage: Trade Y1 G1 Apeloverage1

9) TwoShort: Build Y1 Twoshort

10) apeloverage: Build Y1 Apeloverage

11) TwoShort: Build Y2 Twoshort

12) apeloverage: Discover Y3 Apeloverage B3 Apeloverage2

13) TwoShort: Discover Y1 Twoshort G2 Grogar

14) apeloverage: Discover Y3 Apeloverage2 B2 Apeloverage0

15) TwoShort: Trade G1 R1 Twoshort

16) apeloverage: Trade Y3 R3 Apeloverage0

17) TwoShort: Build Y2 Grogar

18) apeloverage: Build Y2 Apeloverage

19) TwoShort: Build Y3 Grogar

20) apeloverage: Build Y3 Apeloverage

21) TwoShort: Sacrifice Y2 Grogar
Discover Y1 Grogar B3 Bluebird
Move Y1 Bluebird Apeloverage
Catastrophe Apeloverage Yellow




12294)
Variants: "Hard time"
Started: 2008.12.15, Ended: 2009.2.22
Participants: MrMoto (S), MadWuher (W), apeloverage (N), agentofchaos (E)
Winner: agentofchaos

1) apeloverage: Homeworld B1 G2 Y3
	agentofchaos: Hi everybody, thanks for joining - I think this will be a great game!
	MrMoto: Have fun!

2) agentofchaos: Homeworld Y3 B1 G3

3) MrMoto: Homeworld G3 Y2 B3

4) MadWuher: Homeworld R1 B2 G3

5) apeloverage: Build Y1 Apeloverage
	apeloverage: Thanks agentofchaos.

6) agentofchaos: Build G1 Agentofchaos
	MadWuher: Let the battle begin!!!!
	MadWuher: Uhhh. I mean, have a good game.
	agentofchaos: Same thing! :-)

7) MrMoto: Build B1 Mrmoto

8) MadWuher: Build G1 Madwuher

9) apeloverage: Discover Y3 Apeloverage G3 Apeloverage1

10) agentofchaos: Build G1 Agentofchaos

11) MrMoto: Discover B1 Mrmoto Y1 Stout

12) MadWuher: Trade G1 Y1 Madwuher

13) apeloverage: Build Y1 Apeloverage1
	MadWuher: apeloverage, you may not want to move your size 3 ship out of your home system. If someone moves their size 3 ship in, you will have no defense against their attack. Just sayin'.

14) agentofchaos: Trade G1 R1 Agentofchaos
	agentofchaos: t g1 r1 agentofchaos
	agentofchaos: oops sorry, keep getting the boxes mixed up...


15) MrMoto: Build B1 Mrmoto

16) MadWuher: Build G1 Madwuher

17) apeloverage: Discover Y1 Apeloverage1 G1 Apeloverage2

18) agentofchaos: Build G1 Agentofchaos

19) MrMoto: Build B1 Mrmoto

20) MadWuher: Discover G1 Madwuher Y3 Edora

21) apeloverage: Build Y1 Apeloverage1

22) agentofchaos: Discover G1 Agentofchaos Y2 Zurvan

23) MrMoto: Trade B1 G1 Mrmoto

24) MrMoto: Build G2 Mrmoto

25) apeloverage: Build Y2 Apeloverage

26) agentofchaos: Discover G1 Agentofchaos Y2 Argo
	MadWuher: D'oh.  Sorry guys. Guess I'll be sitting this one out. Hope to play against each of you soon.

27) MrMoto: Move G2 Mrmoto Stout

28) apeloverage: Move Y3 Apeloverage1 Apeloverage
	agentofchaos: Oops, our first casualty! Hope everyone else survives a bit longer! ;-)

29) agentofchaos: Build G2 Zurvan

30) MrMoto: Move B1 Stout Edora

31) apeloverage: Trade Y3 R3 Apeloverage

32) agentofchaos: Build G2 Agentofchaos

33) MrMoto: Build G2 Stout

34) apeloverage: Build Y2 Apeloverage1

35) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Agentofchaos
Build G3 Argo
Build R1 Agentofchaos

36) MrMoto: Trade B1 R1 Edora

37) apeloverage: Build Y3 Apeloverage

38) agentofchaos: Trade G3 Y3 Agentofchaos

39) MrMoto: Trade B3 Y3 Mrmoto

40) apeloverage: Move R3 Apeloverage Edora

41) agentofchaos: Build G3 Agentofchaos

42) MrMoto: Move R1 Edora Apeloverage

43) apeloverage: Trade Y3 R3 Apeloverage

44) agentofchaos: Trade Y3 R3 Agentofchaos

45) MrMoto: Trade G1 R1 Mrmoto

46) apeloverage: Attack R1S Apeloverage

47) agentofchaos: Move R3 Agentofchaos Zurvan

48) MrMoto: Discover G2 Stout B2 Fil

49) apeloverage: Attack G1W Edora

50) agentofchaos: Move R3 Zurvan Apeloverage2

51) MrMoto: Build R2 Mrmoto

52) apeloverage: Move Y1 Apeloverage2 Apeloverage1

53) agentofchaos: Trade G3 Y3 Agentofchaos
	apeloverage: Y1 apeloverage2 apeloverage1

54) MrMoto: Build B1 Mrmoto

55) apeloverage: Move R3 Edora Fil

56) agentofchaos: Sacrifice G3 Argo
Build Y3 Agentofchaos
Build G1 Agentofchaos
Build G3 Argo
	apeloverage: move R3 Edora Fil

57) MrMoto: Sacrifice G2 Fil
Build G2 Stout
Build R2 Mrmoto

58) apeloverage: Build G3 Edora

59) agentofchaos: Move Y3 Agentofchaos Argo

60) MrMoto: Move R2 Mrmoto Stout

61) apeloverage: Build R2 Apeloverage

62) agentofchaos: Sacrifice Y3 Argo
Move G1 Zurvan Stout
Move G1 Argo Stout
Move R3 Apeloverage2 Edora
Catastrophe Stout G

63) MrMoto: Move R2 Stout Apeloverage1

64) apeloverage: Move R3 Apeloverage Apeloverage1

65) agentofchaos: Attack G3N Edora

66) MrMoto: Sacrifice R2 Mrmoto
Attack Y2N Apeloverage1
Attack Y1N Apeloverage1

67) apeloverage: Sacrifice R2 Apeloverage
Attack R2S Apeloverage1
Attack Y2S Apeloverage1

68) agentofchaos: Move R3 Edora Madwuher

69) MrMoto: Discover Y1 Apeloverage1 G1 Tam

70) apeloverage: Build R2 Apeloverage

71) agentofchaos: Attack G3W Madwuher

72) MrMoto: Build Y1 Tam

73) apeloverage: Build Y3 Apeloverage1

74) agentofchaos: Attack Y1W Madwuher

75) MrMoto: Move Y1 Tam Apeloverage1
Catastrophe Apeloverage1 Y

76) apeloverage: Build R2 Apeloverage

77) agentofchaos: Move R3 Madwuher Edora

78) MrMoto: Build R2 Mrmoto

79) apeloverage: Discover R2 Apeloverage Y3 Apeloverage2

80) agentofchaos: Attack G1N Edora

81) MrMoto: Trade R2 G2 Mrmoto

82) apeloverage: Sacrifice Y2 Apeloverage
Move R3 Apeloverage1 Tam
Move R3 Tam Mrmoto

83) agentofchaos: Build G1 Madwuher

84) MrMoto: Attack R3N Mrmoto

85) apeloverage: Build R2 Apeloverage

86) agentofchaos: Sacrifice G3 Edora
Build G1 Edora
Build G2 Argo
Build G3 Zurvan

87) MrMoto: Build Y1 Tam

88) apeloverage: Build R2 Apeloverage1

89) agentofchaos: Sacrifice G3 Madwuher
Build G3 Madwuher
Build R3 Edora
Build Y1 Madwuher

90) MrMoto: Build R3 Mrmoto

91) apeloverage: Build Y2 Apeloverage

92) agentofchaos: Move R3 Edora Tam

93) MrMoto: Discover R3 Mrmoto B1 Dogsled

94) apeloverage: Build Y2 Apeloverage

95) agentofchaos: Attack Y1S Tam

96) MrMoto: Sacrifice Y1 Tam
Move R3 Dogsled Apeloverage2

97) apeloverage: Discover R2 Apeloverage2 B2 Apeloverage3

98) agentofchaos: Build Y1 Tam

99) MrMoto: Sacrifice Y3 Mrmoto
Discover R1 Mrmoto B1 Hop
Discover R1 Hop B3 Skip
Move R1 Skip Apeloverage
Catastrophe Apeloverage R

100) apeloverage: Trade R3 Y3 Fil

101) agentofchaos: Discover G2 Argo R3 Klaatu

102) MrMoto: Move R3 Apeloverage2 Apeloverage

103) apeloverage: Sacrifice Y3 Fil
Move R2 Apeloverage3 Apeloverage1
Move R2 Apeloverage1 Apeloverage
Move R2 Apeloverage1 Apeloverage

104) agentofchaos: Build Y3 Agentofchaos

105) MrMoto: Attack Y2N Apeloverage

106) apeloverage: Sacrifice Y1 Apeloverage
Move R2 Apeloverage1 Apeloverage
Catastrophe Apeloverage R

107) agentofchaos: Move R3 Edora Apeloverage

108) MrMoto: Discover Y2 Apeloverage G3 Telly

109) apeloverage: Build Y1 Apeloverage

110) agentofchaos: Attack Y2N Apeloverage

111) MrMoto: Build Y3 Telly

112) apeloverage: Pass

113) agentofchaos: Discover Y3 Agentofchaos B2 Xenon

114) MrMoto: Discover Y3 Telly R2 Supertonic

115) apeloverage: Pass

116) agentofchaos: Sacrifice Y2 Apeloverage
Move Y1 Tam Mrmoto
Move Y1 Tam Mrmoto

117) MrMoto: Build Y2 Telly

118) apeloverage: Pass

119) agentofchaos: Sacrifice Y3 Agentofchaos
Move Y1 Madwuher Telly
Move Y1 Telly Tam
Move Y1 Tam Mrmoto
Catastrophe Mrmoto Y

120) MrMoto: Move Y3 Supertonic Agentofchaos

121) apeloverage: Build Y1 Apeloverage

122) agentofchaos: Sacrifice Y3 Xenon
Move G2 Zurvan Mrmoto
Move G1 Madwuher Mrmoto
Pass
Catastrophe Mrmoto G

123) apeloverage: Build Y1 Apeloverage

124) agentofchaos: Sacrifice R3 Tam
Attack Y1N Apeloverage
Attack Y1N Apeloverage
Attack Y1N Apeloverage

	agentofchaos: Thankyou also Apeloverage, it was fun playing you, we can play again anytime if you like :-)
	MrMoto: Ah, congratulations! Thanks for the game, it was fun. :)
	apeloverage: Congratulations agentofchaos!
	MadWuher: Good job.
	agentofchaos: Thanks guys! :-)


12424)
Started: 2008.12.25, Ended: 2009.3.3
Participants: agentofchaos (S), nycavri (N)
Winner: agentofchaos

1) nycavri: Homeworld B1 Y2 G3

2) agentofchaos: Homeworld Y3 B2 G3 Agentofchaos

3) nycavri: Build G1 Nycavri
	agentofchaos: Hi, enjoy the game. 
	nycavri: Thanks, you too . . .

4) agentofchaos: Build G1 Agentofchaos

5) nycavri: Trade G1 Y1 Nycavri

6) agentofchaos: Build G1 Agentofchaos

7) nycavri: Discover Y1 Nycavri G3 Mvb

8) agentofchaos: Discover G1 Agentofchaos Y1 Icarus

9) nycavri: Build Y1 Mvb

10) agentofchaos: Build G1 Icarus

11) nycavri: Build G2 Nycavri

12) agentofchaos: Build G2 Icarus

13) nycavri: Sacrifice G3 Nycavri
Build G2 Nycavri
Build G3 Nycavri
Build Y2 Mvb

14) agentofchaos: Move G1 Icarus Mvb

15) nycavri: Trade G2 R2 Nycavri

16) agentofchaos: Build G2 Agentofchaos

17) nycavri: Sacrifice Y2 Mvb
Move Y1 Mvb Icarus
Move Y1 Icarus Agentofchaos

18) agentofchaos: Trade G1 R1 Agentofchaos

19) nycavri: Sacrifice G2 Nycavri
Build Y2 Agentofchaos
Build Y2 Agentofchaos
Catastrophe Agentofchaos Y

20) agentofchaos: Trade G3 R3 Agentofchaos

21) nycavri: Build R1 Nycavri

22) agentofchaos: Trade R1 Y1 Agentofchaos

23) nycavri: Trade R1 G1 Nycavri

24) agentofchaos: Build Y2 Agentofchaos

25) nycavri: Build Y2 Mvb

26) agentofchaos: Discover Y1 Agentofchaos G3 Hades

27) nycavri: Build Y3 Mvb

28) agentofchaos: Move Y2 Agentofchaos Mvb
Catastrophe Mvb Y

29) nycavri: Build R1 Nycavri

30) agentofchaos: Discover Y1 Hades G2 Io

31) nycavri: Move R2 Nycavri Mvb

32) agentofchaos: Build G3 Mvb

33) nycavri: Trade G1 Y1 Nycavri

34) agentofchaos: Sacrifice G3 Mvb
Build G1 Agentofchaos
Build Y2 Io
Build G3 Mvb

35) nycavri: Move Y1 Nycavri Mvb

36) agentofchaos: Discover G1 Icarus Y2 Agon

37) nycavri: Build Y3 Mvb

38) agentofchaos: Move Y1 Io Icarus

39) nycavri: Build R1 Nycavri

40) agentofchaos: Sacrifice R3 Agentofchaos
Attack Y3N Mvb
Attack Y1N Mvb
Attack R2N Mvb

41) nycavri: Discover R1 Nycavri Y3 Mvg

42) agentofchaos: Move R2 Mvb Agentofchaos

43) nycavri: Build R1 Nycavri

44) agentofchaos: Sacrifice G3 Mvb
Build Y3 Io
Build R2 Agentofchaos
Build G3 Agon

45) nycavri: Trade R1 B1 Nycavri

46) agentofchaos: Move Y1 Mvb Agentofchaos

47) nycavri: Build B1 Nycavri

48) agentofchaos: Trade G2 B2 Agentofchaos

49) nycavri: Move B1 Nycavri Mvg

50) agentofchaos: Move R2 Agentofchaos Mvg

51) nycavri: Move B1 Mvg Agentofchaos

52) agentofchaos: Attack B1N Agentofchaos

53) nycavri: Move R1 Mvg Agentofchaos

54) agentofchaos: Attack R1N Agentofchaos

55) nycavri: Build R1 Nycavri

56) agentofchaos: Sacrifice G3 Agon
Build G2 Agon
Build G3 Agentofchaos
Build R2 Mvg

57) nycavri: Trade G3 B3 Nycavri

58) agentofchaos: Sacrifice Y2 Io
Move B1 Agentofchaos Mvb
Move B1 Mvb Nycavri
Catastrophe Nycavri B

59) nycavri: Move R1 Nycavri Icarus

60) agentofchaos: Move R2 Mvg Nycavri

61) nycavri: Move R1 Icarus Agentofchaos

62) agentofchaos: Attack R1N Nycavri

	agentofchaos: Thanks for a good game!
	nycavri: Thank you!


12388)
Started: 2008.12.27, Ended: 2009.1.12
Participants: TwoShort (S), agentofchaos (N)
Winner: TwoShort

1) agentofchaos: Homeworld Y1 B2 G3

2) TwoShort: Homeworld B3 R1 G3
	agentofchaos: Hi again! I've taken your advice about starting with a green ship. Let's see how I fair in this game. Merry christmas! :)

3) agentofchaos: Build G1 Agentofchaos

4) TwoShort: Build G1 Twoshort

5) agentofchaos: Build G1 Agentofchaos

6) TwoShort: Build G2 Twoshort

7) agentofchaos: Discover G1 Agentofchaos Y3 Klingsor

8) TwoShort: Trade G1 Y1 Twoshort

9) agentofchaos: Build G1 Klingsor

10) TwoShort: Discover G2 Twoshort Y2 Yolonda

11) agentofchaos: Discover G1 Klingsor Y1 Odin

12) TwoShort: Build Y2 Twoshort

13) agentofchaos: Build G2 Klingsor

14) TwoShort: Discover Y1 Twoshort G2 Grogar

15) agentofchaos: Discover G2 Klingsor B1 Extensor

16) TwoShort: Build G3 Twoshort

17) agentofchaos: Trade G2 Y2 Extensor

18) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build Y3 Twoshort
Build Y3 Grogar

19) agentofchaos: Build G3 Klingsor

20) TwoShort: Trade G2 R2 Twoshort

21) agentofchaos: Move G3 Klingsor Extensor

22) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Grogar Klingsor
Move Y3 Klingsor Agentofchaos

23) agentofchaos: Trade G3 R3 Agentofchaos
	TwoShort: So, you did a good job controlling green, to the point I had to bail out of that race and threaten to lock you out of yellow, so now you probably see that it's also essential to diversify into multiple colors early.  That's why I don't usually bother with a yellow star: I'm going to want a yellow ship in the first few turns anyway.  So now I've got more 3 points and most of the yellow, so it's looking bad for you, even if that last move wasn't a critical error :)


24) TwoShort: Sacrifice R2 Twoshort
Attack R3N Agentofchaos
Attack G1N Agentofchaos
	TwoShort: Now might be a good time to mention the "Gun rule": If your opponent draws their gun (takes a red ship), immediately draw your gun.  You can occasionally ignore it for a turn if the opponent can't reach you, but in general, the turn after the other guy first takes a red ship, you need to do the same.

	agentofchaos: Thanks, I'll remember the gun rule. 


12278)
Variants: "Unrated, Hard time"
Started: 2008.12.28, Ended: 2009.1.22
Participants: MadWuher (S), agentofchaos (N)
Winner: MadWuher

1) agentofchaos: Homeworld B1 Y2 G3

2) MadWuher: Homeworld R2 B3 G3
	agentofchaos: Hi, enjoy the game. 

3) agentofchaos: Build G1 Agentofchaos
	MadWuher: You too

4) MadWuher: Build G1 Madwuher

5) agentofchaos: Discover G1 Agentofchaos Y3 Elysia

6) MadWuher: Trade G1 Y1 Madwuher

7) agentofchaos: Build G1 Elysia

8) MadWuher: Build Y1 Madwuher

9) agentofchaos: Build G1 Agentofchaos

10) MadWuher: Build G2 Madwuher

11) agentofchaos: Discover G1 Elysia B2 Hades

12) MadWuher: Discover G2 Madwuher Y1 Edora

13) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Hades
Build G2 Elysia
Build G3 Agentofchaos

14) MadWuher: Build G3 Edora

15) agentofchaos: Trade G2 Y2 Hades

16) MadWuher: Build G2 Madwuher

17) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Agentofchaos
Build Y2 Hades
Build Y3 Hades

18) MadWuher: Discover Y1 Madwuher B1 Bologna

19) agentofchaos: Trade Y3 R3 Hades

20) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y3 Madwuher
Build Y3 Bologna

21) agentofchaos: Move R3 Hades Edora

22) MadWuher: Sacrifice Y3 Madwuher
Move G3 Edora Hades
Move G2 Edora Hades
Move G2 Hades Bologna

23) agentofchaos: Move G1 Elysia Edora

24) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y3 Madwuher
Pass

25) agentofchaos: Move R3 Edora Madwuher

26) MadWuher: Attack R3 Madwuher

	MadWuher: Hmmmm, not what you thought would happen eh?
	agentofchaos: No it isn't, clearly the wrong move by me!


12297)
Started: 2008.12.28, Ended: 2009.1.8
Participants: MadWuher (S), mschlat (N)
Winner: MadWuher

1) mschlat: Homeworld Y3 B1 G3

2) MadWuher: Homeworld R1 B2 G3
	mschlat: First game I've ever played, so I just learning how this works.

3) mschlat: Build G1 Mschlat
	MadWuher: I'll do my best to guide you as we go along.

4) MadWuher: Build G1 Madwuher
	mschlat: Thanks, but don't take it easy on me either.

5) mschlat: Trade G1 Y1 Mschlat
	MadWuher: will do. =)

6) MadWuher: Trade G1 Y1 Madwuher

7) mschlat: Discover Y1 Mschlat G2 Oneaway1

8) MadWuher: Build G1 Madwuher

9) mschlat: Build G1 Mschlat

10) MadWuher: Trade G1 B1 Madwuher

11) mschlat: Build G1 Mschlat

12) MadWuher: Build B1 Madwuher

13) mschlat: Move G1 Mschlat Oneaway1

14) MadWuher: Discover B1 Madwuher G3 Edora

15) mschlat: Trade G1 R1 Mschlat

16) MadWuher: Build B2 Edora
	mschlat: Okay, this is about the place where I'm feeling pretty lost.  About the only thing I'm focused on is not giving you a chance to build a 2 ship.
	MadWuher: you'll notice that I already have access to the size 2 ships (blue in this case) while you don't have any blues available. Some ways to fix this: trade your G3 for a B3 and then create B ships, take control of another colour (all that seems to be left that I don't have is Red).You'll notice I chose blue because a b1 was already used in your homeworld giving me a quicker monopoly.

17) mschlat: Build R1 Mschlat
	MadWuher: At this point, I have a few options. Keep building the blues until I get to size 3, or start diversifying my colours at the Edora system. Let me warn you, that if you trade your g3 for a b3, you will be 1 step closer to a blue catastrophe in your homeworld (and you won't be able to build anything there anymore).

18) MadWuher: Build B2 Madwuher
	mschlat: Yes, I don't like the G3 for B3 option.  I'll try more focus on red.

19) mschlat: Build R2 Mschlat

20) MadWuher: Discover B2 Madwuher Y3 Camelot

21) mschlat: Move R2 Mschlat Oneaway1

22) MadWuher: Sacrifice G3 Madwuher
Build B3 Madwuher
Build B3 Camelot
Build B3 Edora

23) mschlat: Sacrifice G3 Mschlat
Build R2 Mschlat
Build R2 Oneaway1
Build R3 Oneaway1

24) MadWuher: Sacrifice B2 Edora
Trade B3 R3 Camelot
Trade B3 G3 Madwuher

25) mschlat: Move R2 Oneaway1 Edora

26) MadWuher: Sacrifice G3 Madwuher
Build B2 Camelot
Build B3 Edora
Build B3 Madwuher

27) mschlat: Build R3 Edora

28) MadWuher: Sacrifice R3 Camelot
Attack R3 Edora
Attack R2 Edora
Pass

29) mschlat: Move R3 Oneaway1 Camelot
	mschlat: Ah, I didn't realize how the red sacrifice could work in that way.  I think I'm toast.

30) MadWuher: Sacrifice B2 Camelot
Trade B3 G3 Madwuher
Trade B3 Y3 Edora

31) mschlat: Discover R1 Mschlat G2 Oneaway2
	MadWuher: One thing to think about, you have no size 3 ships in your home system. If I can move a size 3 ship there then you cannot attack it (you can only attack ships the same size or less than the largest ship you have there) and I can start to attack your ships. The other thing you should think about, since I now have access to yellow (and can use a sacrifice to move any of my ships) I can move my R2 from Edora into your home system (discovering another planet if I have to) and cause a catastrophe there, leaving you no ships in your homeworld (so I would win).

32) MadWuher: Sacrifice Y3 Edora
Move B3 Edora Oneaway2
Move B3 Oneaway2 Mschlat
Discover B2 Camelot Y2 Bologna

33) mschlat: Build R3 Oneaway2
	MadWuher: I'm just taking advantage of the fact that you have no size three ships to defend your system.

34) MadWuher: Sacrifice G3 Madwuher
Build B2 Edora
Build B3 Madwuher
Build B3 Bologna

35) mschlat: Move R3 Camelot Oneaway1

36) MadWuher: Sacrifice R2 Edora
Attack R2 Mschlat
Attack R1 Mschlat
	MadWuher: Thanks for the game. Want to play another? Feel free to ask me any questions you may have about homeworlds.
	mschlat: Yeah, I'd like to play another, but I don't understand what happened in this one.  It's hard for me to see what happens as a result of sacrifice (so I don't understand the last turn and how I've lost).  I'm going to try and review with some Icehouse pieces.
	MadWuher: sacrifice a red piece and attack at any system (as long as the ship I use is = or greater in size than yours). sacrifice an r2, get 2 attacks.
	mschlat: I finally figured that out - I was thinking the B3 was in my system to set up a catastrophe later on, not give you a chance to use a red sacrifice.
	mschlat: Yes, I'd like to play another.  How do we do that?
	MadWuher: I was about to say "choose one of my challenges from the challenges screen" but I think it might be better for you to setup a new challenge against me. Select the "challenges" screen, scroll down to homeworlds, and click "New Challenge". In the next screen, you can choose any of the options you want, and choose MadWuher from the "challenge whom" option. This sets up a challenge against me of your choosing. Otherwise, you can select any of the other open challenges that I or other players have available.



12475)
Variants: "Hard time"
Started: 2008.12.31, Ended: 2009.1.3
Participants: dsheldon (S), stoneaxe (N)
Winner: dsheldon



12465)
Variants: "Unrated, Hard time"
Started: 2009.1.7, Ended: 2009.1.19
Participants: Sgeo (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld B3 R2 G3
	Sgeo: Hello! Have fun and good luck! This is my first time on SDG, as well as playing Homeworlds.
	MadWuher: Welcome. I'll try to remember to make some comments as we go along to help you out. If you have any questions, just ask.

2) Sgeo: Homeworld G1 B2 Y3

3) MadWuher: Build G1 Madwuher
	Sgeo: How do I spectate on games?
	Sgeo: Ok figured it out.

4) Sgeo: Build Y1 Sgeo

5) MadWuher: Build G1 Madwuher

6) Sgeo: Trade Y3 R3 Sgeo

7) MadWuher: Trade G3 Y3 Madwuher

8) Sgeo: Trade R3 G3 Sgeo
	Sgeo: ..I didn't realize that you need a _ship_ of the color in order to build a ship, I thought a star would work too.. I'm screwed, aren't I?

9) MadWuher: Sacrifice G1 Madwuher
Build Y1 Madwuher
	MadWuher: not necessarily.



12363)
Started: 2009.1.9, Ended: 2009.1.17
Participants: MikeYarrum (S), array (N)
Winner: array

1) array: Homeworld G3 Y2 B3



12583)
Started: 2009.1.9, Ended: 2009.1.14
Participants: mschlat (S), MikeYarrum (N)
Winner: mschlat

	Tester1: 


12589)
Started: 2009.1.9, Ended: 2009.1.21
Participants: MadWuher (S), mschlat (N)
Winner: MadWuher

1) mschlat: Homeworld B1 Y2 G3
	MadWuher: Thanx for starting another game.
	mschlat: No problem.

2) MadWuher: Homeworld B3 R2 G3

3) mschlat: Build G1 Mschlat

4) MadWuher: Build G1 Madwuher

5) mschlat: Trade G1 Y1 Mschlat

6) MadWuher: Trade G1 Y1 Madwuher

7) mschlat: Build G1 Mschlat

8) MadWuher: Build G1 Madwuher

9) mschlat: Build G1 Mschlat

10) MadWuher: Build G2 Madwuher

11) mschlat: Trade G1 R1 Mschlat
	MadWuher: Sorry about that Undo


12) MadWuher: Trade G2 R2 Madwuher

13) mschlat: Trade G1 B1 Mschlat

14) MadWuher: Trade G1 B1 Madwuher

15) mschlat: Build B2 Mschlat

16) MadWuher: Build B2 Madwuher

17) mschlat: Discover B1 Mschlat G3 Adama

18) MadWuher: Discover B2 Madwuher Y1 Edora

19) mschlat: Build B2 Adama

20) MadWuher: Sacrifice G3 Madwuher
Build B3 Madwuher
Build B3 Edora
Build Y2 Madwuher

21) mschlat: Build Y2 Mschlat

22) MadWuher: Trade B3 G3 Madwuher


23) mschlat: Sacrifice Y2 Mschlat
Move B1 Adama Edora
Move B2 Adama Edora
Pass
Catastrophe Edora B

24) MadWuher: Build G1 Madwuher

25) mschlat: Build Y1 Mschlat

26) MadWuher: Discover Y1 Madwuher G1 Edora

27) mschlat: Discover Y1 Mschlat G3 Adama

28) MadWuher: Move B1 Madwuher Edora

29) mschlat: Build R1 Mschlat

30) MadWuher: Move R2 Madwuher Edora

31) mschlat: Build G1 Mschlat

32) MadWuher: Build B1 Edora

33) mschlat: Move B2 Mschlat Adama

34) MadWuher: Discover B1 Edora G2 Bologna

35) mschlat: Build B2 Adama

36) MadWuher: Build B2 Bologna

37) mschlat: Trade B2 R2 Adama

38) MadWuher: Build G2 Madwuher

39) mschlat: Move R2 Adama Bologna

40) MadWuher: Sacrifice R2 Edora
Attack R2 Bologna
Pass

41) mschlat: Build Y2 Adama

42) MadWuher: Sacrifice G2 Madwuher
Build Y3 Edora
Build Y3 Madwuher
	mschlat: Yep, I forgot you could do that _again_.  I do not have a solid understanding of red attacks and sacrifice.

43) mschlat: Trade Y2 G2 Adama

44) MadWuher: Trade Y1 R1 Edora

45) mschlat: Build G2 Adama

46) MadWuher: Sacrifice Y2 Madwuher
Move G1 Madwuher Edora
Move G1 Edora Adama
Catastrophe Adama G

	mschlat: I'll give.  You have more and bigger ships and I can't follow sacrifices.  A couple of questions:

1) Why did you build the Bologna system?  I didn't see any particular reason for building something not adjacent to me?

2) I keep on being behind on ship sizes.  Is this connected to going first?  Is this a game where first or second is an advantage?

3) How and where do you learn strategy for this game?  I'm willing to lose many games to understand the game better (I did so with go), but I'd like some direction.
	MadWuher: I built the other size 2 system thinking that it will connect to yours if I get a yellow catastrophe in your home system and/or a safe haven for me to build up my ships and hold onto some kind of piece advantage. When I was making it, I felt that the size 3 system would be easy for you to get to and attack, thereby losing some of my ships in the process.

I don't think it is a matter of going first or second. I just saw what size 3 ships were available in the least number of turns while sacrificing the size 1 ships when you finally had access to that color. (Maybe that didn't come up in this game, but it's something I tend to think about) As I have read from other players, it is important to leverage the reserve stash by creating some planets and ships at opportune times.

I learned most of my strategy by losing lots of times. It has been stated that SDG-Homeworld players can be too good as many beginners leave the game after losing a few times to the veterans. I found some strategies using the Wiki here at SDG http://wiki.superdupergames.org/games/homeworlds and from the IceHouse Wiki http://www.icehousegames.org/wiki/index.php?title=Homeworlds which has a link to a few strategy pages. I can't think of where else to get help besides the book Playing with Pyramids which includes only a few other tidbits of information you can't seem to find elsewhere. Not earthshaking information mind you.

I hope this helps.




12599)
Variants: "Hard time"
Started: 2009.1.11, Ended: 2009.6.19
Participants: wyons (S), TwoShort (N)
Winner: wyons

1) TwoShort: Homeworld R1 B2 G3

2) wyons: Homeworld B1 R3 G3

3) TwoShort: Build G1 Twoshort
	wyons: I thought you wouldnt let me rest on my laurels for long.

4) wyons: Build G1 Wyons

5) TwoShort: Trade G1 Y1 Twoshort

6) wyons: Trade G1 Y1 Wyons

7) TwoShort: Build G1 Twoshort

8) wyons: Build G1 Wyons

9) TwoShort: Discover G1 Twoshort B3 Bluonia

10) wyons: Trade G1 B1 Wyons

11) TwoShort: Build G1 Twoshort
	wyons: you just departed from game 11066.. :)
	TwoShort: That's funny.  Taking the b1 was the other move I was considering, but I recalled I had tried some tricky/agressive move early last time and it hadn't worked out, so I decided to play it a little safer.  I had no (conscious) idea it was exactly the same decision though.

12) wyons: Build B1 Wyons
	wyons: well we will have to see if the early tricky/aggressive pays off for me....

13) TwoShort: Build G1 Twoshort

14) wyons: Build G2 Wyons

15) TwoShort: Build G2 Bluonia

16) wyons: Discover B1 Wyons B2 Trueblue

17) TwoShort: Discover G1 Twoshort B3 Blunderbuss

18) wyons: Sacrifice G2 Wyons
Build B2 Trueblue
Build B3 Wyons

19) TwoShort: Build G2 Twoshort

20) wyons: Trade B3 G3 Wyons

21) TwoShort: Discover G1 Twoshort B3 Blutacular

22) wyons: Trade B2 R2 Trueblue

23) TwoShort: Trade G2 B2 Twoshort

24) wyons: Sacrifice G3 Wyons
Build Y1 Wyons
Build Y2 Wyons
Build G2 Wyons

25) TwoShort: Sacrifice G2 Bluonia
Build G2 Twoshort
Build Y2 Twoshort

26) wyons: Sacrifice Y1 Wyons
Discover R2 Trueblue G3 Zoo

27) TwoShort: Discover B2 Twoshort Y3 Ynot

28) wyons: Move B1 Wyons Trueblue
	TwoShort: This is my weirdest game in quite a while.

29) TwoShort: Discover B2 Ynot Y2 Yonderboy
	wyons: I nearly gave myself a cerebal haemorrage looking at this lot and I do not really know if this is the best option. But time is running out. I also think you have me beat.
	TwoShort: Hmmm, I am feeling better about it than I was a few moves ago.  But it feels like a festival of ways to screw up...

30) wyons: Trade B1 Y1 Trueblue

31) TwoShort: Build Y3 Twoshort
	wyons: I think I became unhinged when I made the r2 ship. I had missed you could safely create a b2 in your homeworld. Now it is damage control but I think you have a compelling advantage.
	TwoShort: The red you haven't been able to seriously threaten me with yet may have been a mistake.  As to overall advantage, I guess the view depends on where you sit :)  That last move may have been damage control to you, but it looks like a crushing reversal to me.  I'll be happy to come out of the next couple turns only slightly behind.

32) wyons: Sacrifice G2 Wyons
Build Y3 Wyons
Build Y3 Trueblue

33) TwoShort: Move Y1 Twoshort Bluonia

34) wyons: Move Y3 Wyons Yonderboy

35) TwoShort: Trade G2 R2 Twoshort

36) wyons: Build G2 Wyons

37) TwoShort: Move Y3 Twoshort Zoo

38) wyons: Sacrifice R2 Zoo
Attack B2N Yonderboy
Pass

39) TwoShort: Build G2 Twoshort

40) wyons: Trade Y1 R1 Trueblue

41) TwoShort: Sacrifice G3 Twoshort
Build Y1 Bluonia
Build G2 Blutacular
Build G3 Twoshort
	TwoShort: So if you undid because you saw a better move, you'd have made it. So you must have undid because you saw some fatal flaw.  But I've looked at this until I gave up on finding something I could commit to at least twice, so how did I miss it?  Or maybe you undid as a clever psych-out strategy.  If that's it, it's working :)

42) wyons: Sacrifice G3 Wyons
Build R1 Trueblue
Build B1 Trueblue
Build G3 Wyons
	wyons: not a psycho-out strategy- nor did I see a better move. I thought I saw a fatal flaw- but this is such a complex situation I couldnt be sure even of that...

43) TwoShort: Trade G2 R2 Blutacular

44) wyons: Move R1 Trueblue Wyons
	wyons: I do hope we are building up to some casualties soon as this is beginning to do my head in!

45) TwoShort: Discover Y3 Zoo G2 Gonzo

46) wyons: Discover Y3 Yonderboy G3 Xanthrophyl
	wyons: sadly work is so busy at present I have not had time to think this one through fully (lame excuse I know)
	TwoShort: Well, the last couple moves I've spent a long time trying to think them through, but in the end felt like it hadn't got me anywhere and I was just guessing :)  
	wyons: I think sooner or later- especially when there are this many pieces in play it starts to default to intuition  rather than logic. The trouble is without the logical analysis as well intuition isnt enough on its own....

47) TwoShort: Sacrifice Y2 Twoshort
Move G1 Blutacular Gonzo
Move G1 Gonzo Wyons

48) wyons: Sacrifice G2 Wyons
Build R2 Trueblue
Build R3 Trueblue
	wyons: In early April I am off on holiday for a couple of weeks. If you havent beaten me by then do you know a way that we might suspend play for the period and would that be OK with you?  :)
	TwoShort: Actually, I'm off the week after next.  I've figured out how to freeze the clock in the past, so sometime before I go I'll figure it out again...

49) TwoShort: Sacrifice G3 Twoshort
Build G2 Wyons
Build R3 Blutacular
Build G3 Twoshort
	TwoShort: Just coming by for a visit

50) wyons: Sacrifice R2 Trueblue
Attack G2N Wyons
Attack G1N Wyons
	wyons: What an unexpected visit! Welcome to Wyons and do lets party!

51) TwoShort: Sacrifice Y3 Gonzo
Discover G1 Bluonia G2 Gonzo
Move Y1 Bluonia Gonzo
Move G1 Gonzo Wyons
Catastrophe Wyons Green

52) wyons: Sacrifice B2 Yonderboy
Trade R3 G3 Trueblue
Trade Y2 G2 Wyons

53) TwoShort: Trade R3 Y3 Blutacular
	TwoShort: I think if you type "~vote accept freeze" as a chat, that will do it.  I also beleive we can keep playing with the clock frozen.  I'm departing on Monday and coming back the following Monday...
	TwoShort: actually, maybe it's  "~vote accept clock freeze"
	wyons: as a matter of interest: how did you set up the clock freeze request? was it ~clock freeze   ?
	TwoShort: yes, that was it.  more to the point, what I remember each time is "search the wiki for 'freeze'"...
	wyons: thanks, and have a good holiday

54) wyons: Build G1 Trueblue
	TwoShort: I'm back from my vacation, but I guess you're just headed to yours.  In any case, feel free to thaw the clock whenever you are ready.

55) TwoShort: Sacrifice G3 Twoshort
Build G1 Blunderbuss
Build G3 Twoshort
Build Y2 Bluonia
	wyons: b g1 trueblue

56) wyons: Sacrifice G3 Trueblue
Build G3 Wyons
Build Y2 Trueblue
Build Y2 Xanthrophyl

57) TwoShort: Trade G2 B2 Twoshort

58) wyons: Move B1 Trueblue Xanthrophyl

59) TwoShort: Sacrifice Y2 Bluonia
Discover B2 Twoshort R3 Rover
Move G1 Blunderbuss Trueblue

60) wyons: Sacrifice G2 Wyons
Build R2 Wyons
Build R3 Trueblue

61) TwoShort: Sacrifice G1 Blunderbuss
Build B3 Rover

62) wyons: Sacrifice Y2 Xanthrophyl
Move R3 Trueblue Bluonia
Move B1 Trueblue Bluonia

63) TwoShort: Build Y2 Gonzo

64) wyons: Sacrifice R2 Wyons
Attack G1N Trueblue
Attack Y1N Bluonia

65) TwoShort: Build G1 Twoshort

66) wyons: Move G1 Trueblue Bluonia

67) TwoShort: Sacrifice Y1 Gonzo
Move G1 Twoshort Blutacular

68) wyons: Build G2 Bluonia

69) TwoShort: Build R2 Blutacular

70) wyons: Sacrifice G2 Bluonia
Build Y1 Xanthrophyl
Build Y2 Bluonia

71) TwoShort: Move R2 Blutacular Gonzo

72) wyons: Build G2 Bluonia

73) TwoShort: Build G2 Blutacular

74) wyons: Move G1 Trueblue Xanthrophyl

75) TwoShort: Move Y3 Blutacular Twoshort

76) wyons: Move Y3 Trueblue Blutacular

	TwoShort: Got me again.  Good game.


12466)
Started: 2009.1.12, Ended: 2009.2.13
Participants: zoltar (S), MadWuher (N)
Winner: zoltar

1) MadWuher: Homeworld R1 B2 G3
	MadWuher: Hello Zoltar. Hope you have a good game.

2) zoltar: Homeworld B1 R3 G3

3) MadWuher: Build G1 Madwuher
	zoltar: Hi, I haven't played in months.  Should be fun!

4) zoltar: Build G1 Zoltar

5) MadWuher: Trade G1 Y1 Madwuher

6) zoltar: Trade G1 Y1 Zoltar

7) MadWuher: Build G1 Madwuher

8) zoltar: Build G1 Zoltar

9) MadWuher: Trade G1 B1 Madwuher

10) zoltar: Trade G1 B1 Zoltar

11) MadWuher: Discover B1 Madwuher G3 Edora

12) zoltar: Build B2 Zoltar

13) MadWuher: Build B2 Edora

14) zoltar: Discover B1 Zoltar G2 Greenbelt

15) MadWuher: Trade B1 R1 Edora
	zoltar: Hmm -- somehow I seem to be a whole move behind.

16) zoltar: Build Y1 Zoltar
	MadWuher: I wouldn't worry. =) You'll be in control (i think) soon enough
	zoltar: I'm better in the middle-game, but I always suck at openings in this game

17) MadWuher: Build Y2 Madwuher

18) zoltar: Build Y2 Zoltar

19) MadWuher: Move Y1 Madwuher Edora

20) zoltar: Trade Y1 R1 Zoltar

21) MadWuher: Build R2 Edora

22) zoltar: Move Y2 Zoltar Greenbelt

23) MadWuher: Discover R2 Edora Y2 Bologna

24) zoltar: Move R1 Zoltar Greenbelt

25) MadWuher: Build R2 Edora

26) zoltar: Build R2 Greenbelt

27) MadWuher: Trade R1 G1 Edora

28) zoltar: Trade R1 G1 Greenbelt

29) MadWuher: Move G1 Edora Bologna

30) zoltar: Discover G1 Greenbelt Y3 Yellowstone

31) MadWuher: Build G1 Madwuher

32) zoltar: Build G2 Yellowstone

33) MadWuher: Sacrifice G1 Madwuher
Build R1 Bologna

34) zoltar: Sacrifice G3 Zoltar
Build Y1 Zoltar
Build Y3 Zoltar
Build Y3 Greenbelt

35) MadWuher: Discover R1 Bologna B3 Camelot

36) zoltar: Move Y3 Greenbelt Edora

37) MadWuher: Sacrifice B2 Edora
Trade Y1 G1 Edora
Trade R2 G2 Edora

38) zoltar: Move Y3 Edora Bologna

39) MadWuher: Sacrifice G2 Edora
Build G2 Bologna
Build G3 Madwuher

40) zoltar: Sacrifice Y2 Greenbelt
Move G1 Yellowstone Madwuher
Move G2 Yellowstone Madwuher
Catastrophe Madwuher G

41) MadWuher: Move G2 Bologna Camelot

42) zoltar: Sacrifice Y3 Zoltar
Move Y1 Zoltar Greenbelt
Move Y3 Bologna Camelot
Move Y3 Camelot Madwuher
	MadWuher: I knew I made a mistake a long time ago. =)  Oh well.



	zoltar: Yeah, without a 3-pip ship, I don't see any way for you to defend your homeworld at this point.  Play again?
	MadWuher: Sure.


12567)
Started: 2009.1.12, Ended: 2009.2.13
Participants: zoltar (S), Trollkin (N)
Winner: zoltar

1) Trollkin: Homeworld G1 B2 Y3

2) zoltar: Homeworld B1 R3 G3

3) Trollkin: Build Y1 Trollkin
	zoltar: Hi from Greenbelt, MD

4) zoltar: Build G1 Zoltar
	zoltar: Oops, I better pick a different setup than you so it isn't one of those weird short-worlds.

5) Trollkin: Build Y1 Trollkin

6) zoltar: Trade G1 Y1 Zoltar

7) Trollkin: Trade Y1 B1 Trollkin

8) zoltar: Build G1 Zoltar

9) Trollkin: Discover B1 Trollkin G3 Ensiferum

10) zoltar: Trade G1 B1 Zoltar

11) Trollkin: Build B2 Ensiferum


12) zoltar: Build G1 Zoltar

13) Trollkin: Trade B2 G2 Ensiferum

14) zoltar: Build B2 Zoltar

15) Trollkin: Build G1 Ensiferum

16) zoltar: Trade B1 R1 Zoltar

17) Trollkin: Trade G2 B2 Ensiferum

18) zoltar: Discover G1 Zoltar Y2 Korpiklaani

19) Trollkin: Trade B2 Y2 Ensiferum

20) zoltar: Build G2 Korpiklaani

21) Trollkin: Trade Y1 R1 Trollkin

22) zoltar: Build G2 Zoltar

23) Trollkin: Build Y1 Trollkin

24) zoltar: Move G1 Korpiklaani Ensiferum

25) Trollkin: Trade G1 R1 Ensiferum

26) zoltar: Build G1 Ensiferum

27) Trollkin: Attack G1S Ensiferum

28) zoltar: Sacrifice G3 Zoltar
Build G2 Ensiferum
Build G3 Korpiklaani
Build G3 Zoltar
Catastrophe Ensiferum G

29) Trollkin: Trade Y3 R3 Trollkin

30) zoltar: Move B2 Zoltar Korpiklaani

31) Trollkin: Discover R1 Trollkin Y3 Tranquillity

32) zoltar: Move G3 Korpiklaani Tranquillity

33) Trollkin: Trade Y1 G1 Trollkin

34) zoltar: Sacrifice R1 Zoltar
Attack R1 Tranquillity

35) Trollkin: Build R1 Trollkin

36) zoltar: Sacrifice G3 Zoltar
Build G1 Tranquillity
Build G2 Korpiklaani
Build G3 Zoltar

37) Trollkin: Build G3 Trollkin

38) zoltar: Move G1 Tranquillity Trollkin
Catastrophe Trollkin G

39) Trollkin: Trade R1 Y1 Trollkin

40) zoltar: Discover B2 Korpiklaani G1 Greenpeace

41) Trollkin: Trade Y1 G1 Trollkin

42) zoltar: Sacrifice G3 Zoltar
Build G1 Tranquillity
Build G3 Korpiklaani
Build G3 Zoltar

43) Trollkin: Build R1 Trollkin

44) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Greenpeace
Build B1 Greenpeace



12604)
Started: 2009.1.15, Ended: 2009.3.7
Participants: dkthegm (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3
	MadWuher: Hi there. Hope you have a good game.



12646)
Variants: "Hard time"
Started: 2009.1.19, Ended: 2009.4.21
Participants: Keith (S), MadWuher (N)
Winner: Keith

1) MadWuher: Homeworld R1 B2 G3

2) Keith: Homeworld B1 Y2 G3

3) MadWuher: Build G1 Madwuher
	Keith: Hello MadWuher.  Experimenting against a player with your track record is probably a mistake.  However, I am a bit out of practice and I hope to steer the game into territory that is new to both of us.
	MadWuher: Sounds good to me. Always wanting to try out new things.

4) Keith: Build G1 Keith
	Keith: Well I am already having second thoughts.  As much as I find having a green homeworld risky I think it would have been better to have a yellow ship at start and gain mobility first.  We shall see...

5) MadWuher: Trade G1 Y1 Madwuher

6) Keith: Trade G1 Y1 Keith

7) MadWuher: Build G1 Madwuher

8) Keith: Build G1 Keith

9) MadWuher: Trade G1 B1 Madwuher

10) Keith: Trade G1 R1 Keith

11) MadWuher: Build B1 Madwuher

12) Keith: Discover Y1 Keith G3 Midori

13) MadWuher: Discover B1 Madwuher Y3 Edora

14) Keith: Move R1 Keith Edora

15) MadWuher: Discover B1 Edora R2 Bologna

16) Keith: Build Y1 Midori

17) MadWuher: Build B2 Madwuher

18) Keith: Discover Y1 Midori G1 Chisai

19) MadWuher: Trade B2 R2 Madwuher

20) Keith: Build Y2 Midori

21) MadWuher: Build B2 Madwuher

22) Keith: Move Y2 Midori Bologna

23) MadWuher: Sacrifice B1 Bologna
Trade B2 Y2 Madwuher

24) Keith: Build Y3 Midori

25) MadWuher: Move R2 Madwuher Edora
	MadWuher: Wow..... I am so lagging behind in this game. Sorry about the lack of competition here.

26) Keith: Move R1 Edora Keith
	Keith: Lack of competition?  Your blue build and covert situation had me under a lot of pressure.  If you mean how fast you take your turns don't worry.  I usually keep a light game schedule because of my job and I am fine with a slow moving game.

27) MadWuher: Build B1 Madwuher

28) Keith: Build Y3 Chisai

29) MadWuher: Discover B1 Madwuher B3 Camelot

30) Keith: Build R1 Keith

31) MadWuher: Build G1 Madwuher

32) Keith: Move R1 Keith Midori

33) MadWuher: Sacrifice G1 Madwuher
Build R2 Edora

34) Keith: Build R3 Midori

35) MadWuher: Build B2 Madwuher

36) Keith: Build R3 Keith

37) MadWuher: Discover R2 Edora G1 Pi

38) Keith: Move R3 Keith Edora

39) MadWuher: Build R3 Pi

40) Keith: Move R3 Midori Pi

41) MadWuher: Sacrifice R2 Edora
Attack R3 Pi
Pass

42) Keith: Move R1 Midori Pi
Catastrophe Pi Red

43) MadWuher: Trade B1 R1 Camelot

44) Keith: Move Y3 Chisai Camelot

45) MadWuher: Discover B2 Madwuher B3 Blarney

46) Keith: Trade Y3 R3 Camelot

47) MadWuher: Sacrifice Y1 Madwuher
Move R1 Camelot Chisai

48) Keith: Sacrifice Y2 Bologna
Move Y3 Midori Madwuher
Move R3 Camelot Madwuher

49) MadWuher: Sacrifice G3 Madwuher
Build B1 Blarney
Build B2 Blarney
Build B3 Madwuher
	MadWuher: I think you've got me. Thanks for the game. 

50) Keith: Sacrifice R3 Madwuher
Attack Y2 Madwuher
Attack B3 Madwuher
Attack B1 Madwuher
	Keith: Good game.  I can see why you have the track record you have.  If I had not been able to grab that last G3 before you had a chance to your blue machine would have groud me under.



12643)
Started: 2009.1.21, Ended: 2009.5.6
Participants: Laurie_Menke (S), nycavri (N)
Winner: nycavri

1) nycavri: Homeworld Y3 B2 G3

2) Laurie_Menke: Homeworld B1 Y3 G3
	Laurie_Menke: Ack!  I am so sorry, Avri!  First I invite you to a game, then I skip out on you.  Please forgive me.  I kept putting it off because I needed to refresh my memory on the rules, and then life got in the way and here I am timed out and apologetic.  Please forgive me.  :o(

3) nycavri: Build G1 Nycavri

4) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: And then I make an error right off the bat.  Grrr.   Sorry.
	nycavri: Don't sweat it, Laurie.  Enjoy . . .

5) nycavri: Discover G1 Nycavri Y1 Mvb
	Laurie_Menke: Thanks.  :o)  You, too!

6) Laurie_Menke: Discover G1 Laurie_menke B2 Blue

7) nycavri: Build G1 Mvb

8) Laurie_Menke: Build G2 Blue
	nycavri: You need to undo that, Laurie - I can cause a catastrophe (in green) in your homeworld . . .
	Laurie_Menke: Oops...sorry.  I didn't see your note earlier.  Thanks for the warning, but how so?  You aren't directly connected to my homeworld at the moment, are you?
	nycavri: Either player can trigger a catastrophe whenever there are 4 or more pyramids of one color in a system . . .
	Laurie_Menke: Ahhh.... you're right.  It says catastrophes can be triggered from anywhere.  I was thinking you had to be in the homeworld to trigger it.  Duh.  Sorry for the long delay while I got my head on straight.  :o/  Thanks for the "do over."  ;o)

9) nycavri: Build G2 Nycavri

10) Laurie_Menke: Trade G1 Y1 Blue

11) nycavri: Discover G1 Mvb Y2 Mvg

12) Laurie_Menke: Move G2 Blue Laurie_menke

13) nycavri: Move G1 Mvg Laurie_menke

14) Laurie_Menke: Trade G3 R3 Laurie_menke
	Laurie_Menke: OK, I've gotta ask... how do you name your star systems?

15) nycavri: Sacrifice G2 Nycavri
Build G1 Laurie_menke
Build G2 Laurie_menke
Catastrophe Laurie_menke G
	nycavri: lol.  I name them for the units at my summer camp - Mountainview Boys, Moutainview Girls.  Next will be Idyllwood (IW), then Journey's Way (JW) . . .

I used to name them Deacon, May, Mercury, Taylor, etc . . .

16) Laurie_Menke: Move Y1 Blue Mvb
	Laurie_Menke: LOL... that works.  :o)

17) nycavri: Trade G3 R3 Nycavri

18) Laurie_Menke: Discover Y1 Mvb G3 Green

19) nycavri: Build G1 Mvb

20) Laurie_Menke: Build Y1 Green

21) nycavri: Discover G1 Mvb Y2 Iw

22) Laurie_Menke: Discover Y1 Green B1 Blue

23) nycavri: Sacrifice G1 Mvb
Build R1 Nycavri

24) Laurie_Menke: Build Y1 Green

25) nycavri: Trade R3 G3 Nycavri

26) Laurie_Menke: Build Y2 Green

27) nycavri: Build G1 Nycavri

28) Laurie_Menke: Move Y1 Green Blue

29) nycavri: Build G1 Iw

30) Laurie_Menke: Build Y2 Green

31) nycavri: Build G2 Nycavri

32) Laurie_Menke: Move Y2 Green Blue

33) nycavri: Trade G2 R2 Nycavri
	Laurie_Menke: Sorry for the delay, Avri.  I've been having internet trouble.  :o(

34) Laurie_Menke: Build Y3 Green
	nycavri: Wecome back . . .

35) nycavri: Move G1 Iw Laurie_menke
	Laurie_Menke: Thanks.  :o)

36) Laurie_Menke: Attack G1 Laurie_menke

37) nycavri: Move G1 Iw Laurie_menke

38) Laurie_Menke: Attack G1 Laurie_menke

39) nycavri: Discover R2 Nycavri B1 Jw

40) Laurie_Menke: Discover Y1 Blue Y2 Yellow

41) nycavri: Sacrifice G1 Nycavri
Build R1 Jw

42) Laurie_Menke: Move Y2 Green Blue

43) nycavri: Build R1 Nycavri

44) Laurie_Menke: Sacrifice Y3 Green
Move Y2 Blue Nycavri
Move Y2 Blue Nycavri
Move Y1 Blue Nycavri
Catastrophe Nycavri Y
	Laurie_Menke: Whew... that was close.  I almost didn't see what you were doing.

45) nycavri: Trade R2 Y2 Jw

46) Laurie_Menke: Build R2 Laurie_menke

47) nycavri: Build R2 Nycavri

48) Laurie_Menke: Move R2 Laurie_menke Nycavri
Catastrophe Nycavri R

49) nycavri: Trade Y2 G2 Jw

50) Laurie_Menke: Move R3 Laurie_menke Nycavri

51) nycavri: Sacrifice R1 Jw
Attack R3 Nycavri

52) Laurie_Menke: Trade G1 R1 Laurie_menke

53) nycavri: Sacrifice G2 Jw
Build R1 Nycavri
Build G1 Nycavri

54) Laurie_Menke: Build Y1 Green

55) nycavri: Trade R3 Y3 Nycavri
	Laurie_Menke: Ouch!

56) Laurie_Menke: Discover Y1 Green G2 Alsogreen

57) nycavri: Build Y2 Nycavri

58) Laurie_Menke: Build Y2 Alsogreen

59) nycavri: Move Y2 Nycavri Laurie_menke

60) Laurie_Menke: Build R1 Laurie_menke

61) nycavri: Move Y3 Nycavri Laurie_menke
	nycavri: lol.  Love your naming conventions!

62) Laurie_Menke: Move Y1 Alsogreen Laurie_menke
Catastrophe Laurie_menke Y
	Laurie_Menke: :oD

63) nycavri: Trade G3 Y3 Nycavri

64) Laurie_Menke: Sacrifice Y2 Alsogreen
Move Y1 Green Laurie_menke
Move Y1 Yellow Laurie_menke

65) nycavri: Build R2 Nycavri

66) Laurie_Menke: Build R2 Laurie_menke

67) nycavri: Move R1 Nycavri Laurie_menke
Catastrophe Laurie_menke R

68) Laurie_Menke: Trade Y1 R1 Laurie_menke

69) nycavri: Move R2 Nycavri Laurie_menke
	Laurie_Menke: Wow... cool board right now.  But this is getting much too tense!  ;o)

70) Laurie_Menke: Build R1 Laurie_menke

71) nycavri: Build Y1 Nycavri

72) Laurie_Menke: Build R1 Laurie_menke

73) nycavri: Attack G1 Laurie_menke
Catastrophe Laurie_menke R

74) Laurie_Menke: Trade Y1 G1 Laurie_menke

75) nycavri: Trade G1 R1 Laurie_menke

76) Laurie_Menke: Build G1 Laurie_menke

77) nycavri: Attack G1 Laurie_menke

78) Laurie_Menke: Build G2 Laurie_menke

79) nycavri: Build G2 Laurie_menke
Catastrophe Laurie_menke G

	Laurie_Menke: Good game, Avri!  It is much more fun to play when we're more closely matched... even though you're still better than me!  ;o)  I'd be more than happy to play again now or at a later time if you'd like.  In any case, congrats on the win and thanks for the fun!  :o)
	nycavri: Thanks, Laurie!  I'll have to pass on another game - I'm scaling back a litle, since my wife is 37 weeks pregnant!

Stay tuned . . .
	Laurie_Menke: I definitely will stay tuned!  Congratulations!  :o)


12459)
Started: 2009.1.21, Ended: 2009.1.24
Participants: TwoShort (S), xpdf (N)
Winner: TwoShort

	xpdf: discover


12659)
Variants: "Hard time"
Started: 2009.1.22, Ended: 2009.1.25
Participants: Danner (S), dsheldon (N)
Winner: dsheldon

1) dsheldon: Homeworld Y1 B2 G3

	Danner: Sorry, I haven't played on SDG so long that I forgot to check it regularly.


12526)
Variants: "Unrated, Hard time"
Started: 2009.1.23, Ended: 2009.2.1
Participants: MadWuher (S), Mouce (N)
Winner: MadWuher

1) Mouce: Homeworld B3 G2 R3

2) MadWuher: Homeworld B1 Y2 G3

3) Mouce: Build R1 Mouce

4) MadWuher: Build G1 Madwuher
	MadWuher: Sorry, changed my homeworld. (I hit enter before I thought about it)

Have a good game

5) Mouce: Trade R1 Y1 Mouce
	Mouce: Hi, this is my first game of homeworlds; looks like a great game... Best of luck!

6) MadWuher: Discover G1 Madwuher B3 Edora
	MadWuher: Welcome. Enjoy!

Just ask if you have any questions. I'll do my best to help.

7) Mouce: Build Y1 Mouce

8) MadWuher: Build G1 Madwuher

9) Mouce: Discover Y1 Mouce G1 Xombargle

10) MadWuher: Sacrifice G3 Madwuher
Build G2 Edora
Build G2 Madwuher
Build G3 Madwuher

11) Mouce: Move Y1 Xombargle Edora

12) MadWuher: Trade G2 R2 Madwuher

13) Mouce: Discover R3 Mouce Y1 Whoops

14) MadWuher: Trade G2 R2 Edora
	Mouce: Oops, a slight misunderstanding of the rules... Oh, well - that's what first games are for!

15) Mouce: Build Y2 Mouce

16) MadWuher: Attack Y1 Edora

17) Mouce: Sacrifice Y2 Mouce
Move R3 Whoops Edora
Move R3 Edora Madwuher

	Mouce: Thanks for the game! I made a pretty critical error mid-game (I didn't read the "attack" command closely enough...) and it wasn't the best starting ship choice. Still I like the game a lot, and am grateful for the introduction to it. Happy future gaming!


12650)
Started: 2009.1.27, Ended: 2009.2.5
Participants: TwoShort (S), Trollkin (N)
Winner: TwoShort

1) Trollkin: Homeworld G1 R3 B3
	Trollkin: Hello, good luck

2) TwoShort: Homeworld R1 B2 G3

3) Trollkin: Build B1 Trollkin
	TwoShort: Howdy

4) TwoShort: Build G1 Twoshort

5) Trollkin: Trade B1 Y1 Trollkin

6) TwoShort: Build G1 Twoshort

7) Trollkin: Discover Y1 Trollkin G2 Bozo

8) TwoShort: Trade G3 Y3 Twoshort

9) Trollkin: Build Y1 Bozo

10) TwoShort: Build G2 Twoshort

11) Trollkin: Build B1 Trollkin

12) TwoShort: Discover G1 Twoshort Y3 Yolonda

13) Trollkin: Trade B3 G3 Trollkin

14) TwoShort: Discover G1 Yolonda Y2 Yonderboy

15) Trollkin: Trade G3 Y3 Trollkin

16) TwoShort: Build G2 Twoshort

17) Trollkin: Trade B1 R1 Trollkin

18) TwoShort: Build G3 Yonderboy

19) Trollkin: Discover Y1 Bozo B3 Heinlein

20) TwoShort: Sacrifice G3 Yonderboy
Build G3 Yonderboy
Build Y1 Twoshort
Build G3 Yonderboy

21) Trollkin: Build Y2 Bozo

22) TwoShort: Trade G2 R2 Twoshort

23) Trollkin: Move R1 Trollkin Yonderboy

24) TwoShort: Sacrifice Y3 Twoshort
Move G3 Yonderboy Trollkin
Move G3 Yonderboy Trollkin
Pass

25) Trollkin: Attack G3S Trollkin

26) TwoShort: Sacrifice R2 Twoshort
Attack G3N Trollkin
Attack Y3N Trollkin

	TwoShort: thanks for the game


12755)
Variants: "Hard time"
Started: 2009.2.1, Ended: 2009.2.15
Participants: Mouce (S), Uglyfoot (N)
Winner: Mouce

1) Uglyfoot: Homeworld B3 Y2 G3

2) Mouce: Homeworld G3 Y1 B3

3) Uglyfoot: Build G1 Uglyfoot

4) Mouce: Build B1 Mouce
	Uglyfoot: Greetings, Mouce.  Have a good game!
	Mouce: Hi, enjoy the game!

5) Uglyfoot: Discover G1 Uglyfoot Y1 Txfr

6) Mouce: Discover B1 Mouce G2 Shangrilala

7) Uglyfoot: Build G1 Uglyfoot

8) Mouce: Build B1 Shangrilala

9) Uglyfoot: Build G1 Txfr

10) Mouce: Trade B1 Y1 Shangrilala

11) Uglyfoot: Discover G1 Txfr B2 Path

12) Mouce: Build B1 Mouce

13) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Path
Build G2 Path
Build G3 Uglyfoot

14) Mouce: Build Y2 Shangrilala

15) Uglyfoot: Trade G2 Y2 Path

16) Mouce: Build Y3 Shangrilala

17) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Txfr
Build G3 Uglyfoot
Build Y3 Path

18) Mouce: Trade Y3 R3 Shangrilala

19) Uglyfoot: Trade G1 R1 Uglyfoot

20) Mouce: Sacrifice Y2 Shangrilala
Move R3 Shangrilala Txfr
Move R3 Txfr Path

21) Uglyfoot: Sacrifice R1 Uglyfoot
Attack R3 Path

22) Mouce: Trade B1 R1 Mouce

23) Uglyfoot: Build G1 Uglyfoot

24) Mouce: Build Y2 Shangrilala

25) Uglyfoot: Sacrifice Y3 Path
Move Y2 Path Mouce
Move G2 Path Mouce
Move G1 Path Mouce

26) Mouce: Attack Y2 Mouce

27) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Mouce
Build R1 Path
Catastrophe Mouce G

28) Mouce: Build Y3 Shangrilala

29) Uglyfoot: Trade R3 Y3 Path

30) Mouce: Trade Y2 R2 Shangrilala

31) Uglyfoot: Move G1 Txfr Path

32) Mouce: Sacrifice Y2 Mouce
Move Y3 Shangrilala Mouce
Move B3 Mouce Uglyfoot

33) Uglyfoot: Sacrifice R1 Path
Attack B3 Uglyfoot

34) Mouce: Move Y3 Mouce Uglyfoot

35) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Txfr
Build G2 Txfr
Build G3 Uglyfoot

36) Mouce: Sacrifice R2 Shangrilala
Attack G3 Uglyfoot
Attack B3 Uglyfoot

37) Uglyfoot: Sacrifice Y3 Path
Move G2 Txfr Uglyfoot
Move G2 Txfr Path
Move G2 Path Mouce

38) Mouce: Trade Y3 G3 Uglyfoot
Catastrophe Uglyfoot Green

	Mouce: Thank you for the exciting game! Play you again sometime...


12757)
Variants: "Hard time"
Started: 2009.2.2, Ended: 2009.8.1
Participants: dsheldon (S), Danner (N)
Winner: dsheldon

1) Danner: Homeworld B1 R2 G3
	Danner: Hi again! Good luck! I hope this game will be longer :)

2) dsheldon: Homeworld Y3 G2 B3

3) Danner: Build G1 Danner
	Danner: A blue starter ship? Unusuall, at least for me. I guess you chose that because I have a small blue star.

4) dsheldon: Build B1 Dsheldon

5) Danner: Trade G1 B1 Danner
	dsheldon: It's true.  I'm hoping to beat you to the g2's.  We'll see how it works out, I haven't really tried it before.

6) dsheldon: Build B2 Dsheldon
	Danner: I'm curious.

7) Danner: Build B2 Danner

8) dsheldon: Discover B2 Dsheldon G1 Penny

9) Danner: Trade B1 Y1 Danner

10) dsheldon: Build B1 Penny

11) Danner: Discover B2 Danner G3 Existenz

12) dsheldon: Trade B2 G2 Penny

13) Danner: Build B2 Existenz

14) dsheldon: Trade B1 Y1 Penny

15) Danner: Trade B2 Y2 Existenz

16) dsheldon: Discover G2 Penny R3 Albiorix

17) Danner: Build Y1 Existenz

18) dsheldon: Build Y2 Penny

19) Danner: Discover Y2 Existenz G1 Garrett

20) dsheldon: Build G1 Albiorix

21) Danner: Sacrifice G3 Danner
Build Y2 Garrett
Build Y3 Existenz
Build Y3 Danner

22) dsheldon: Trade B1 R1 Dsheldon

23) Danner: Trade Y3 R3 Existenz

24) dsheldon: Sacrifice Y2 Penny
Discover G1 Albiorix B2 Tube
Discover G1 Tube Y3 Knox

25) Danner: Build Y2 Existenz

26) dsheldon: Build G2 Albiorix

27) Danner: Trade Y3 G3 Danner

28) dsheldon: Build Y3 Penny

29) Danner: Sacrifice Y2 Garrett
Move Y1 Existenz Penny
Move Y2 Existenz Penny
Catastrophe Penny Y

30) dsheldon: Build B1 Dsheldon

31) Danner: Build Y1 Garrett
	dsheldon: Sorry for the delay, I was sick for two days and then so were my wife and son all weekend.

32) dsheldon: Sacrifice B1 Dsheldon
Trade G2 Y2 Albiorix
	Danner: No problem, I hope you are all well now.

33) Danner: Sacrifice Y2 Garrett
Move R3 Existenz Garrett
Move R3 Garrett Albiorix

34) dsheldon: Sacrifice Y2 Albiorix
Move G2 Albiorix Garrett
Discover G2 Garrett B3 Poseidon

35) Danner: Trade B2 Y2 Existenz

36) dsheldon: Build G1 Poseidon

37) Danner: Sacrifice G3 Danner
Build Y1 Garrett
Build Y2 Existenz
Build Y2 Danner

38) dsheldon: Build G2 Knox

39) Danner: Build Y3 Existenz

40) dsheldon: Build G3 Knox

41) Danner: Move Y3 Existenz Danner

42) dsheldon: Sacrifice G3 Knox
Build G3 Knox
Build G3 Poseidon
Build R1 Dsheldon

43) Danner: Move Y1 Garrett Albiorix

44) dsheldon: Move G2 Knox Garrett

45) Danner: Move Y1 Garrett Albiorix

46) dsheldon: Sacrifice G3 Knox
Build G3 Knox
Build B1 Dsheldon
Build B1 Dsheldon

47) Danner: Move R3 Albiorix Danner

48) dsheldon: Sacrifice G2 Garrett
Build G1 Knox
Build R1 Dsheldon

49) Danner: Move R3 Danner Existenz

50) dsheldon: Trade G2 R2 Poseidon

51) Danner: Build R2 Existenz

52) dsheldon: Build R3 Poseidon

53) Danner: Move R3 Existenz Danner

54) dsheldon: Build G2 Poseidon

55) Danner: Move R2 Existenz Danner
	Danner: Sorry for the big delay, last week there was 4 rounds of a competition, and the next one is on Friday, which requires preparation.

56) dsheldon: Trade R2 B2 Poseidon
	dsheldon: Not like I haven't done the same before.

57) Danner: Trade R2 G2 Danner

58) dsheldon: Sacrifice G2 Poseidon
Build R2 Poseidon
Build R2 Poseidon
	dsheldon: I'll be a bit before my next move.  Emergency cross-country trip.

59) Danner: Build G2 Danner
	Danner: Ok.

60) dsheldon: Move G1 Knox Danner

61) Danner: Move G2 Danner Albiorix

62) dsheldon: Sacrifice R1 Dsheldon
Attack Y1N Danner


63) Danner: Attack Y1S Danner

64) dsheldon: Attack Y1N Danner
	Danner: Sorry for the delay, it's an interesting setting, and I sat for my final examinations this week.

65) Danner: Attack Y1S Danner
	dsheldon: No problem.  I was worried you'd time out on me.  It'd be terrible if that happened now.

66) dsheldon: Attack Y1N Danner

67) Danner: Attack Y1S Danner
	dsheldon: We can do this forever, unless you want to try something different.

68) dsheldon: Sacrifice B1 Dsheldon
Trade G1 B1 Knox
	Danner: I don't have much choice

69) Danner: Build G1 Albiorix
	dsheldon: Well, at least we know where our conflict lies.  You should totally sac your R3 and take both my ships in your homeworld.
	Danner: It wouldn't help, because after a few moves there will be the same situation again. (You bring your other G1 ship, I remove my G1 from my HW, and there is it.)

70) dsheldon: Build B2 Knox
	Danner: Oh no! You have only 12 hours left! :S
I undo my last move. I dunno how the time bank will be changed exactly. Let's hope the best.
	Danner: Well, you didn't get any time back, but at least your clock is stopped. Now you have about 6 days to return. Tell me when I can redo my move.
	dsheldon: Eek!  Has it been a week already?  Thanks so much for stalling.  I'm ready now.
	Danner: Np.

71) Danner: Attack G1S Danner

72) dsheldon: Discover G3 Knox B2 Sidebet
	dsheldon: guess it's only fair that I try something different to break this stalemate

73) Danner: Move R3 Danner Knox
	Danner: Thx.

74) dsheldon: Move B2 Knox Danner

75) Danner: Attack B2S Danner

76) dsheldon: Move B1 Knox Sidebet

77) Danner: Build B3 Danner

78) dsheldon: Sacrifice B2 Poseidon
Pass
Pass

79) Danner: Discover Y2 Existenz R1 Deathstar
	Danner: Oh no! You have only 6 hours left!
	dsheldon: Hit me, I'm ready.  (All I need to do is check again before midnight.)

80) dsheldon: Sacrifice B1 Sidebet
Trade G1 B1 Poseidon

81) Danner: Move B3 Danner Knox

82) dsheldon: Build G1 Poseidon

83) Danner: Move B3 Knox Deathstar

84) dsheldon: Move B1 Dsheldon Deathstar
	dsheldon: Uh oh... aptly named.

85) Danner: Attack B1 Deathstar
	Danner: :)

86) dsheldon: Move R1 Dsheldon Deathstar

87) Danner: Attack R1S Deathstar
	dsheldon: Things do not look good.  Being immobilized has been un-good.
	Danner: You're right.

88) dsheldon: Sacrifice R2 Poseidon
Pass
Pass
	Danner: Oh no, the stash is empty! What will I build now?
	Danner: Sorry, I have changed my mind.

89) Danner: Sacrifice G2 Danner
Build G2 Danner
Build R2 Knox

90) dsheldon: Sacrifice B1 Poseidon
Pass

91) Danner: Sacrifice G2 Danner
Build G2 Danner
Build B1 Deathstar

92) dsheldon: Trade R2 B2 Poseidon

93) Danner: Sacrifice G2 Danner
Build G2 Danner
Build R2 Knox
	Danner: Special offer: free ships! Available until stocks are exhausted! Only at DeathStar!

94) dsheldon: Pass

95) Danner: Move R1 Deathstar Existenz
	dsheldon: Without any yellow, this game becomes very difficult.

96) dsheldon: Pass
	Danner: Indeed.

97) Danner: Move R3 Knox Deathstar

98) dsheldon: Pass

	Danner: Oh no, you have only 12 hours left...
	Danner: Oh, my god...


12672)
Variants: "Unrated, Hard time"
Started: 2009.2.4, Ended: 2009.2.9
Participants: Hix (S), MadWuher (N)
Winner: Hix

1) MadWuher: Homeworld B1 Y3 G3

2) Hix: Homeworld B2 Y1 G3
	Hix: homeworld b2 y1 g3

	MadWuher: Sorry about that. Forgot to setup my vacation message before I left.


12587)
Started: 2009.2.6, Ended: 2009.7.9
Participants: MikeYarrum (S), pmagnus (N)
Winner: pmagnus

1) pmagnus: Homeworld G2 B3 Y3



12676)
Started: 2009.2.6, Ended: 2009.7.9
Participants: mschlat (S), pmagnus (N)
Winner: mschlat

1) pmagnus: Homeworld G1 Y2 B3

2) mschlat: Homeworld Y3 B1 G3

3) pmagnus: Build B1 Pmagnus

4) mschlat: Build G1 Mschlat

5) pmagnus: Discover B1 Pmagnus Y3 Barnard

6) mschlat: Trade G1 Y1 Mschlat

7) pmagnus: Build B1 Pmagnus

8) mschlat: Build G1 Mschlat

9) pmagnus: Trade B1 G1 Barnard

10) mschlat: Build G2 Mschlat

11) pmagnus: Build G2 Barnard

12) mschlat: Trade G2 Y2 Mschlat

13) pmagnus: Build G2 Barnard


14) mschlat: Sacrifice Y2 Mschlat
Discover G1 Mschlat R2 Temp
Move G1 Temp Barnard
Catastrophe Barnard Green

15) pmagnus: Trade B1 G1 Pmagnus

16) mschlat: Build Y1 Mschlat

17) pmagnus: Build B1 Pmagnus

18) mschlat: Trade Y1 R1 Mschlat

19) pmagnus: Trade B1 Y1 Pmagnus

20) mschlat: Build R1 Mschlat



12588)
Started: 2009.2.8, Ended: 2009.2.28
Participants: agentofchaos (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) agentofchaos: Homeworld Y1 B3 G3
	ts52: Have a good game. 
	agentofchaos: Thanks, you too. 

3) ts52: Build G1 Ts52

4) agentofchaos: Build G1 Agentofchaos

5) ts52: Trade G1 Y1 Ts52

6) agentofchaos: Build G1 Agentofchaos

7) ts52: Build G1 Ts52

8) agentofchaos: Discover G1 Agentofchaos B2 Jophur

9) ts52: Build G2 Ts52

10) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Agentofchaos
Build G2 Jophur
Build G3 Agentofchaos

11) ts52: Discover G2 Ts52 G3 Kermit

12) agentofchaos: Trade G2 Y2 Jophur

13) ts52: Discover G1 Ts52 Y3 Bigbird

14) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Jophur
Build Y1 Jophur
Build G3 Agentofchaos

15) ts52: Sacrifice G2 Kermit
Build G2 Bigbird
Build G3 Ts52

16) agentofchaos: Move Y1 Jophur Agentofchaos

17) ts52: Discover Y1 Ts52 B3 Grover

18) agentofchaos: Sacrifice G3 Agentofchaos
Build Y2 Jophur
Build Y3 Agentofchaos
Build G3 Agentofchaos

19) ts52: Sacrifice G2 Bigbird
Build G2 Bigbird
Build Y3 Grover

20) agentofchaos: Discover Y1 Agentofchaos R2 Orocore

21) ts52: Trade Y1 R1 Grover

22) agentofchaos: Trade G1 R1 Jophur

23) ts52: Discover G1 Bigbird Y1 Zoe

24) agentofchaos: Trade G1 R1 Agentofchaos

25) ts52: Sacrifice G1 Zoe
Build Y1 Grover

26) agentofchaos: Build R2 Jophur

27) ts52: Move Y3 Grover Orocore

28) agentofchaos: Discover Y1 Orocore G1 Abaddon

29) ts52: Build G1 Bigbird

30) agentofchaos: Sacrifice G3 Agentofchaos
Build G1 Jophur
Build R2 Agentofchaos
Build G3 Agentofchaos

31) ts52: Sacrifice G2 Bigbird
Build G2 Bigbird
Build R3 Grover

32) agentofchaos: Sacrifice Y2 Jophur
Move R1 Jophur Grover
Move R2 Jophur Grover
Catastrophe Grover R

33) ts52: Sacrifice G2 Bigbird
Build G2 Bigbird
Build Y2 Grover

34) agentofchaos: Trade R1 B1 Agentofchaos

35) ts52: Trade Y1 R1 Grover

36) agentofchaos: Trade G2 R2 Jophur

37) ts52: Move G1 Bigbird Orocore

38) agentofchaos: Move G2 Agentofchaos Jophur

39) ts52: Build Y1 Orocore

40) agentofchaos: Discover Y3 Agentofchaos G2 Kakradoom

41) ts52: Sacrifice G2 Bigbird
Build Y3 Grover
Build G2 Orocore

42) agentofchaos: Discover Y2 Jophur B3 Icefall

43) ts52: Move G1 Orocore Grover

44) agentofchaos: Build R1 Jophur

45) ts52: Discover G3 Ts52 R3 Elmo

46) agentofchaos: Move Y1 Abaddon Jophur

47) ts52: Build G1 Ts52

48) agentofchaos: Sacrifice G2 Jophur
Build B1 Agentofchaos
Build G2 Agentofchaos

49) ts52: Trade Y2 B2 Grover

50) agentofchaos: Move B1 Agentofchaos Kakradoom

51) ts52: Move B2 Grover Orocore

52) agentofchaos: Sacrifice G3 Agentofchaos
Build Y2 Icefall
Build B2 Kakradoom
Build G3 Agentofchaos

53) ts52: Sacrifice Y3 Orocore
Move G1 Grover Orocore
Move G1 Orocore Agentofchaos
Move G2 Orocore Agentofchaos
Catastrophe Agentofchaos G

54) agentofchaos: Build Y3 Jophur

55) ts52: Build G1 Elmo

56) agentofchaos: Trade Y3 G3 Jophur

57) ts52: Sacrifice G1 Elmo
Build Y3 Orocore

58) agentofchaos: Move G3 Jophur Agentofchaos

59) ts52: Build G1 Elmo

60) agentofchaos: Discover Y1 Jophur R3 Threndor

61) ts52: Trade G3 R3 Ts52

62) agentofchaos: Trade B1 R1 Kakradoom

63) ts52: Sacrifice G1 Elmo
Build B1 Orocore

64) agentofchaos: Move B1 Agentofchaos Kakradoom

65) ts52: B G1 Ts52

66) agentofchaos: Build G2 Jophur

67) ts52: Move G1 Ts52 Grover

68) agentofchaos: Discover B1 Kakradoom G3 Ghede

69) ts52: Sacrifice G3 Elmo
Build R3 Ts52
Build G2 Grover
Build G3 Ts52

70) agentofchaos: Sacrifice Y3 Kakradoom
Move Y2 Icefall Ts52
Move Y2 Icefall Ts52
Move Y1 Threndor Ts52
Catastrophe Ts52 Y

71) ts52: Move Y3 Grover Jophur

72) agentofchaos: Build R3 Kakradoom

73) ts52: Sacrifice G2 Grover
Build G2 Grover
Build B3 Orocore

74) agentofchaos: Trade R2 Y2 Jophur

75) ts52: Sacrifice R3 Ts52
Attack Y2S Jophur
Attack R1S Jophur
Attack G2S Jophur

76) agentofchaos: Build R2 Agentofchaos

77) ts52: Sacrifice Y3 Jophur
Move B1 Orocore Agentofchaos
Move B2 Orocore Agentofchaos
Move B3 Orocore Agentofchaos
Catastrophe Agentofchaos B

78) agentofchaos: Trade R1 Y1 Kakradoom

79) ts52: Build Y2 Jophur

80) agentofchaos: Build B1 Ghede

81) ts52: Sacrifice Y3 Orocore
Move Y1 Orocore Agentofchaos
Move Y2 Jophur Agentofchaos
M Y2 Jophur Agentofchaos
C Agentofchaos Yellow



12700)
Started: 2009.2.9, Ended: 2009.2.15
Participants: agentofchaos (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) agentofchaos: Homeworld B2 Y1 G3

3) TwoShort: Build G1 Twoshort
	agentofchaos: Hi, enjoy the game. 

4) agentofchaos: Build G1 Agentofchaos
	TwoShort: Howdy.

5) TwoShort: Trade G1 Y1 Twoshort

6) agentofchaos: Build G1 Agentofchaos

7) TwoShort: Build Y1 Twoshort

8) agentofchaos: Discover G1 Agentofchaos Y3 Synchron

9) TwoShort: Build Y2 Twoshort

10) agentofchaos: Build G1 Synchron

11) TwoShort: Discover Y1 Twoshort B2 Bluonia

12) agentofchaos: Build G2 Agentofchaos

13) TwoShort: Build G2 Twoshort

14) agentofchaos: Trade G2 Y2 Agentofchaos

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluonia
Build Y3 Bluonia
Build Y3 Twoshort

16) agentofchaos: Move Y2 Agentofchaos Synchron

17) TwoShort: Trade Y2 R2 Bluonia

18) agentofchaos: Trade G1 R1 Agentofchaos

19) TwoShort: Discover Y1 Twoshort G2 Grogar

20) agentofchaos: Move R1 Agentofchaos Synchron

21) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Grogar Synchron
Move Y1 Bluonia Synchron
Catastrophe Synchron Yellow

22) agentofchaos: Build G1 Agentofchaos

23) TwoShort: Sacrifice Y3 Twoshort
Discover Y3 Bluonia R3 Doomtime
Move Y3 Doomtime Agentofchaos
Pass

24) agentofchaos: Trade G1 R1 Agentofchaos

25) TwoShort: Sacrifice R2 Bluonia
Attack G3S Agentofchaos
Attack R1S Agentofchaos



12625)
Started: 2009.2.9, Ended: 2009.6.8
Participants: agentofchaos (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld B2 R3 G3

2) agentofchaos: Homeworld Y1 B2 G3

3) MadWuher: Build G1 Madwuher
	agentofchaos: Hi again. 
	MadWuher: Hi there. Good luck.

4) agentofchaos: Build G1 Agentofchaos

5) MadWuher: Trade G1 Y1 Madwuher

6) agentofchaos: Build G1 Agentofchaos

7) MadWuher: Build Y1 Madwuher

8) agentofchaos: Discover G1 Agentofchaos B3 Tchad

9) MadWuher: Discover Y1 Madwuher B1 Edora

10) agentofchaos: Build G1 Tchad

11) MadWuher: Build G2 Madwuher

12) agentofchaos: Trade G1 R1 Agentofchaos

13) MadWuher: Trade G2 R2 Madwuher

14) agentofchaos: Build G1 Agentofchaos

15) MadWuher: Build G2 Madwuher

16) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Agentofchaos
Build G2 Tchad
Build G3 Agentofchaos

17) MadWuher: Build G3 Madwuher

18) agentofchaos: Trade G2 Y2 Tchad

19) MadWuher: Move G3 Madwuher Edora

20) agentofchaos: Sacrifice G2 Agentofchaos
Build Y2 Tchad
Build R1 Agentofchaos

21) MadWuher: Build Y2 Edora

22) agentofchaos: Trade Y2 R2 Tchad

23) MadWuher: Move R2 Madwuher Edora

24) agentofchaos: Build Y2 Tchad

25) MadWuher: Discover Y2 Edora B3 Bologna

26) agentofchaos: Discover Y2 Tchad G2 Quasmer

27) MadWuher: Sacrifice G3 Madwuher
Build Y3 Edora
Build Y3 Madwuher
Build Y3 Bologna

28) agentofchaos: Build R1 Tchad

29) MadWuher: Build G2 Edora

30) agentofchaos: Move R1 Tchad Quasmer

31) MadWuher: Build G3 Madwuher

32) agentofchaos: Trade R1 B1 Agentofchaos

33) MadWuher: Move Y3 Edora Tchad

34) agentofchaos: Sacrifice Y2 Tchad
Move G1 Tchad Edora
Move G1 Tchad Edora
Catastrophe Edora G

35) MadWuher: Sacrifice G2 Madwuher
Build G1 Madwuher
Build Y2 Edora

36) agentofchaos: Discover R1 Quasmer G3 Gloam

37) MadWuher: Move G1 Madwuher Edora

38) agentofchaos: Trade R2 G2 Tchad

39) MadWuher: Build G1 Madwuher

40) agentofchaos: Trade G2 B2 Tchad

41) MadWuher: Sacrifice R2 Edora
Attack B2 Tchad
Pass

42) agentofchaos: Move B1 Agentofchaos Gloam

43) MadWuher: Trade B2 R2 Tchad

44) agentofchaos: Build B1 Gloam

45) MadWuher: Sacrifice Y3 Madwuher
Discover G1 Edora Y3 Camelot
Move Y2 Edora Gloam
Move Y1 Edora Tchad

46) agentofchaos: Build B1 Gloam

47) MadWuher: Sacrifice G1 Camelot
Build Y3 Madwuher

48) agentofchaos: Build R1 Agentofchaos

49) MadWuher: Sacrifice G1 Madwuher
Build R2 Tchad

50) agentofchaos: Discover Y2 Quasmer B3 Seti

51) MadWuher: Sacrifice R2 Tchad
Attack R1 Gloam
Attack B1 Gloam

52) agentofchaos: Build B2 Gloam
Catastrophe Gloam B

53) MadWuher: Build R2 Gloam

54) agentofchaos: Move R1 Agentofchaos Seti

55) MadWuher: Discover R2 Gloam B2 Edora

56) agentofchaos: Sacrifice G1 Agentofchaos
Build R2 Seti

57) MadWuher: Build R3 Gloam

58) agentofchaos: Build R3 Agentofchaos

59) MadWuher: Build G1 Madwuher

60) agentofchaos: Trade R1 B1 Agentofchaos

61) MadWuher: Trade G1 B1 Madwuher

62) agentofchaos: Build G1 Agentofchaos

63) MadWuher: Build G1 Madwuher

64) agentofchaos: Move B1 Agentofchaos Seti

65) MadWuher: Discover Y3 Madwuher B1 Camelot

66) agentofchaos: Discover R2 Seti G2 Tenebrus

67) MadWuher: Move Y3 Camelot Seti

68) agentofchaos: Move Y2 Seti Tenebrus

69) MadWuher: Sacrifice R2 Edora
Attack R1 Seti
Attack B1 Seti

70) agentofchaos: Build R1 Tenebrus

71) MadWuher: Trade R1 G1 Seti

72) agentofchaos: Move R1 Tenebrus Gloam

73) MadWuher: Sacrifice R1 Gloam
Attack R1 Gloam

74) agentofchaos: Build R1 Tenebrus

75) MadWuher: Discover R1 Gloam G2 Edora

76) agentofchaos: Build R1 Agentofchaos

77) MadWuher: Sacrifice G3 Madwuher
Build G2 Seti
Build G3 Madwuher
Build R2 Edora

78) agentofchaos: Discover R1 Tenebrus B1 Kobold

79) MadWuher: Build B2 Seti

80) agentofchaos: Move R2 Tenebrus Kobold

81) MadWuher: Move Y3 Tchad Kobold

82) agentofchaos: Sacrifice Y2 Tenebrus
Move R2 Kobold Edora
Move R1 Kobold Edora
Catastrophe Edora R

83) MadWuher: Sacrifice G2 Seti
Build G2 Seti
Build Y2 Madwuher

84) agentofchaos: Move R3 Agentofchaos Tchad

85) MadWuher: Sacrifice Y1 Tchad
Discover R2 Tchad Y1 Monopoly

86) agentofchaos: Move G1 Agentofchaos Tchad

87) MadWuher: Move G1 Seti Monopoly

88) agentofchaos: Build G2 Agentofchaos

89) MadWuher: Sacrifice Y3 Kobold
Move G2 Seti Agentofchaos
Move G1 Monopoly Seti
Move G1 Seti Agentofchaos
Catastrophe Agentofchaos G

	agentofchaos: Thanks for the game. 
	MadWuher: Thank you.


12825)
Started: 2009.2.11, Ended: 2009.2.14
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld Y1 B2 G3



12579)
Variants: "Hard time"
Started: 2009.2.11, Ended: 2009.2.15
Participants: SuperDelete (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B3 G3
	Jesse: Hello, and have a good game.



12842)
Started: 2009.2.11, Ended: 2009.5.8
Participants: pedrop (S), Hix (N), agentofchaos (E)
Winner: agentofchaos

1) Hix: Homeworld B3 G1 Y3

2) agentofchaos: Homeworld R1 B2 G3

3) pedrop: Homeworld Y1 B3 G3
	agentofchaos: Hi everyone, thanks for playing. Enjoy the game. 

4) Hix: Build Y1 Hix
	pedrop: Hi! Thanks to You too!:)

5) agentofchaos: Build G1 Agentofchaos

6) pedrop: Build G1 Pedrop

7) Hix: Build Y1 Hix

8) agentofchaos: Trade G1 Y1 Agentofchaos
	Hix: Yes, Hello!  And thanks for the game.

9) pedrop: Discover G1 Pedrop Y2 Transka

10) Hix: Discover Y1 Hix G2 Bubble

11) agentofchaos: Build Y2 Agentofchaos
	pedrop: Are the rules of Good & Evil implemented on SDG?

12) pedrop: Build G1 Pedrop
	agentofchaos: No, there are no good and evil designations in this version as far as I know. 

13) Hix: Build Y2 Bubble

14) agentofchaos: Build G1 Agentofchaos
	pedrop: Sorry, for undo, but it was quite sensless move...:)

15) pedrop: Build G2 Transka

16) Hix: Trade Y1 B1 Hix

17) agentofchaos: Discover Y2 Agentofchaos G3 Kakra

18) pedrop: Sacrifice G3 Pedrop
Build G2 Pedrop
Build G2 Transka
Build G3 Pedrop

19) Hix: Trade Y3 G3 Hix

20) agentofchaos: Sacrifice G3 Agentofchaos
Build Y1 Agentofchaos
Build Y2 Kakra
Build G3 Agentofchaos

21) pedrop: Trade G1 B1 Pedrop

22) Hix: Build B1 Hix

23) agentofchaos: Trade Y1 B1 Agentofchaos

24) pedrop: Discover G2 Transka G1 Techlord

25) Hix: Trade B1 R1 Hix

26) agentofchaos: Sacrifice G3 Agentofchaos
Build Y1 Agentofchaos
Build B1 Agentofchaos
Build G3 Agentofchaos

27) pedrop: Sacrifice B1 Pedrop
Trade G2 R2 Techlord
	pedrop: This is Sinister variant(I have to eliminate Hix to win) or last man standing?
	pedrop: Ok, I have figured it out myself: default is "last man standing" - good:)

28) Hix: Move Y2 Bubble Hix

29) agentofchaos: Sacrifice B1 Agentofchaos
Trade Y2 R2 Kakra

30) pedrop: Trade G2 Y2 Pedrop

31) Hix: Build Y3 Hix

32) agentofchaos: Build Y3 Kakra

33) pedrop: Build G2 Pedrop

34) Hix: Sacrifice Y3 Hix
Move Y2 Hix Bubble
Move Y2 Bubble Pedrop
Move Y1 Bubble Pedrop
Catastrophe Pedrop Y

35) agentofchaos: Discover G1 Agentofchaos Y3 Kalki

36) pedrop: Trade G2 Y2 Pedrop

37) Hix: Trade G3 Y3 Hix

38) agentofchaos: Build G2 Agentofchaos

39) pedrop: Build G2 Pedrop

40) agentofchaos: Sacrifice G2 Agentofchaos
Build G2 Kalki
Build R1 Kakra

41) pedrop: Discover G2 Transka R3 Ziemia

42) agentofchaos: Move Y3 Kakra Transka

43) pedrop: Sacrifice G3 Pedrop
Build G2 Transka
Build G3 Ziemia
Build G3 Pedrop
	agentofchaos: I don't know where Hix disappeared to, I sent a PM a couple of days ago, but there was no response, so I've forced surrender so we can continue the game. So all Hix's ships are up for grabs!! 

44) agentofchaos: Sacrifice R2 Kakra
Attack G2S Transka
Attack G1S Transka

45) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build Y1 Pedrop
Build R1 Techlord
	agentofchaos: Hi pedrop, nice to see you've come back, hope everything is OK :-)

46) agentofchaos: Move Y3 Transka Hix

47) pedrop: Trade Y1 B1 Pedrop
	agentofchaos: Come back soon! ;-)

48) agentofchaos: Trade Y3 R3 Hix
	pedrop: Ok... ;)

49) pedrop: Move B1 Pedrop Techlord

50) agentofchaos: Sacrifice Y2 Kakra
Move G1 Transka Pedrop
Move G2 Transka Pedrop
Catastrophe Pedrop G

51) pedrop: Build B1 Techlord

52) agentofchaos: Attack Y3N Hix

53) pedrop: Sacrifice B1 Techlord
Trade G2 Y2 Ziemia

54) agentofchaos: Discover Y3 Hix R2 Haema

55) pedrop: Build G1 Ziemia

56) agentofchaos: Move Y3 Haema Pedrop

57) pedrop: Sacrifice Y2 Ziemia
Move G3 Ziemia Techlord
Move G3 Techlord Pedrop

58) agentofchaos: Sacrifice R3 Hix
Attack G3S Pedrop
Attack Y2S Pedrop
Pass

	pedrop: Thanks for the game, when Hix has broken my system, I was already "dead";) Cheers!
	agentofchaos: Thanks for staying in the game. I know what you mean, it's hard to make a comeback when you lose a system marker!
Cheers! :-)


12795)
Variants: "Unrated, Hard time"
Started: 2009.2.12, Ended: 2009.3.3
Participants: Mouce (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3
	MadWuher: Enjoy the game


2) Mouce: Homeworld Y1 B3 G3
	Mouce: You too!

3) MadWuher: Build G1 Madwuher

4) Mouce: Build G1 Mouce

5) MadWuher: Trade G1 Y1 Madwuher

6) Mouce: Discover G1 Mouce B2 Rathome

7) MadWuher: Build G1 Madwuher

8) Mouce: Build G1 Mouce

9) MadWuher: Build G2 Madwuher

10) Mouce: Sacrifice G3 Mouce
Build G2 Rathome
Build G2 Mouce
Build G3 Mouce

11) MadWuher: Discover G2 Madwuher G3 Edora

12) Mouce: Trade G1 Y1 Rathome

13) MadWuher: Build Y2 Madwuher

14) Mouce: Discover G2 Mouce B2 Scamper

15) MadWuher: Discover G1 Madwuher B3 Camelot

16) Mouce: Sacrifice G3 Mouce
Build G1 Scamper
Build Y2 Rathome
Build G3 Mouce

17) MadWuher: Sacrifice G2 Edora
Build G2 Madwuher
Build G3 Camelot

18) Mouce: Discover Y2 Rathome B3 Scritch

19) MadWuher: Move Y1 Madwuher Camelot

20) Mouce: Sacrifice G3 Mouce
Build G3 Mouce
Build Y2 Rathome
Build Y3 Scritch

21) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y3 Madwuher
Build Y3 Camelot

22) Mouce: Sacrifice Y2 Rathome
Move G2 Scamper Scritch
Move G1 Scamper Scritch

23) MadWuher: Discover G3 Camelot Y2 Edora

24) Mouce: Trade Y3 R3 Scritch

25) MadWuher: Sacrifice Y3 Madwuher
Move G1 Camelot Edora
Move G1 Edora Mouce
Move G3 Edora Mouce
Catastrophe Mouce G
	MadWuher: Thanks for the game. Just a quick question, why trade away your y3 for an r3?
	Mouce: Heh, I didn't see that at all!  I just made a stupid move, not noticing your threat... I traded the y3 for an r3, as you had no safe space to construct another y3, and I could have safely (perhaps) gained the y3 back in the next turn. A good move if you had no threat, obviously not a nice move given the position. I felt that I was playing nicely up until that point, too. Oh well! Live and learn. Thanks!



12838)
Started: 2009.2.12, Ended: 2009.2.20
Participants: ts52 (S), Mouce (N)
Winner: ts52

1) Mouce: Homeworld Y1 B2 G3

2) ts52: Homeworld Y3 B2 G3

3) Mouce: Build G1 Mouce

4) ts52: Build G1 Ts52
	Mouce: Enjoy the game!
	ts52: Thanks, you too!

5) Mouce: Discover G1 Mouce B3 Rathome

6) ts52: Discover G1 Ts52 B1 Gonzo

7) Mouce: Build G1 Mouce

8) ts52: Build G2 Ts52

9) Mouce: Build G2 Rathome

10) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Gonzo

11) Mouce: Trade G1 Y1 Rathome

12) ts52: Trade G3 Y3 Gonzo

13) Mouce: Sacrifice G3 Mouce
Build G1 Rathome
Build Y1 Rathome
Build G3 Mouce

14) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Ts52
Build Y2 Gonzo

15) Mouce: Move Y1 Rathome Gonzo

16) ts52: Trade Y3 R3 Gonzo

17) Mouce: Sacrifice G3 Mouce
Build Y2 Gonzo
Build Y2 Rathome
Build G3 Mouce

18) ts52: Discover G3 Ts52 R1 Elmo

19) Mouce: Sacrifice Y2 Gonzo
Move G1 Rathome Gonzo
Move G1 Gonzo Ts52

20) ts52: Trade G3 R3 Ts52

21) Mouce: Sacrifice G3 Mouce
Build Y2 Gonzo
Build Y3 Gonzo
Build G3 Mouce
Catastrophe Gonzo Yellow

22) ts52: Build G3 Elmo

23) Mouce: Sacrifice Y2 Rathome
Move G1 Ts52 Elmo
Move G2 Rathome Elmo
Catastrophe Elmo Green
	ts52: Wow, I totally missed the part where you moved a ship into Gonzo. Not that I could do anything differently... nice play.

24) ts52: Trade G2 Y2 Gonzo

25) Mouce: Trade G1 R1 Mouce

26) ts52: Move R3 Gonzo Rathome
	ts52: Man, where is my head today.
	Mouce: You remain *very* ahead in development nevertheless... I am enjoying this game quite a bit, as I have only kept you from crushing me via sacrifices! I enjoy playing against stronger players.

27) Mouce: Discover Y1 Rathome G1 Scurry

28) ts52: Build R1 Ts52

29) Mouce: Build Y1 Scurry

30) ts52: Build Y2 Gonzo

31) Mouce: Build G1 Mouce

32) ts52: Build G2 Gonzo

33) Mouce: Discover Y1 Scurry B3 Hole

34) ts52: Move Y2 Gonzo Rathome

35) Mouce: Discover Y1 Hole G2 Nest

36) ts52: Build G3 Ts52

37) Mouce: Sacrifice G3 Mouce
Build G3 Mouce
Build Y2 Nest
Build Y3 Scurry

38) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Gonzo
Build Y3 Gonzo

39) Mouce: Sacrifice G3 Mouce
Build G3 Mouce
Build R1 Mouce
Build R2 Mouce

40) ts52: Move G2 Gonzo Rathome

41) Mouce: Sacrifice Y3 Scurry
Move Y1 Nest Scurry
Move Y1 Scurry Ts52
Move Y1 Scurry Ts52

42) ts52: Sacrifice R3 Ts52
Attack Y1N Ts52
Attack Y1N Ts52
Pass

43) Mouce: Discover Y2 Nest B1 Mercury

44) ts52: Discover Y1 Ts52 B1 Grover

45) Mouce: Discover R2 Mouce Y3 Sniffle

46) ts52: Build R2 Rathome

47) Mouce: Trade Y2 G2 Mercury

48) ts52: Sacrifice G3 Ts52
Build G1 Rathome
Build G3 Ts52
Build Y2 Rathome

49) Mouce: Move R1 Mouce Rathome

50) ts52: M R3 Rathome Gonzo

51) Mouce: Sacrifice G3 Mouce
Build G3 Mouce
Build R2 Sniffle
Build R3 Mouce

52) ts52: Build R3 Gonzo

53) Mouce: Move R3 Mouce Rathome

54) ts52: Sacrifice Y3 Gonzo
Move G1 Rathome Mouce
Move G2 Rathome Mouce
Move R2 Rathome Mouce
Catastrophe Mouce G

55) Mouce: Sacrifice R2 Sniffle
Attack Y2 Rathome
Attack Y2 Rathome

56) ts52: Attack R1N Mouce
	Mouce: sorry,typo

	Mouce: Kudos for the win! You have taught me quite a bit...  I enjoyed our game thoroughly!
	ts52: Thanks! And thanks for the game. I'd be happy to play you again any time.


12840)
Started: 2009.2.12, Ended: 2009.2.26
Participants: jgabin1 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) jgabin1: Homeworld G2 B1 Y3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort

4) jgabin1: Build Y1 Jgabin1

5) TwoShort: Build G1 Twoshort
	jgabin1: Hello
	jgabin1: This is my first time on this site

6) jgabin1: Discover Y1 Jgabin1 G3 Bob

7) TwoShort: Trade G1 Y1 Twoshort

8) jgabin1: Build Y1 Bob

9) TwoShort: Build Y2 Twoshort

10) jgabin1: Build Y2 Bob

11) TwoShort: Discover Y1 Twoshort B2 Bluonia

12) jgabin1: Build Y2 Jgabin1

13) TwoShort: Build Y3 Twoshort
	TwoShort: Since you're new, a couple words of strategy advice: First, I'd generally recommend starting with a green ship, it's easiest and usually best.  Second, you don't usually want to build up to three of the same color in one system.  I could move my y1 from Bluonia into bob right now and cause a catastophe.  I won't this turn because I'd rather take the y3 while I can get it.  Also note that you can't take the other y3 at your homeworld because I'll sacrifice my y2 to move the y1 twice, and win with a catastrophe in your home.

14) jgabin1: Trade Y3 G3 Jgabin1
	jgabin1: Thanks man, im still trying to get the basics, i see what your saying. hopefully next time ill be a big challenge for you!! I really appreciate the advice.

15) TwoShort: Move Y1 Bluonia Bob
Catastrophe Bob Yellow



12841)
Started: 2009.2.12, Ended: 2009.3.7
Participants: MadWuher (S), jgabin1 (N)
Winner: MadWuher

1) jgabin1: Homeworld G2 B1 Y3

2) MadWuher: Homeworld R2 B3 G3
	jgabin1: Hay this is my first time on the site


3) jgabin1: Build Y1 Jgabin1 (n)

4) MadWuher: Build G1 Madwuher

5) jgabin1: Discover Y1 Jgabin1 G3 Bob
	MadWuher: Welcome. Hope you enjoy the game. Feel free to ask any questions you may have.

6) MadWuher: Trade G1 Y1 Madwuher
	jgabin1: Thanks Man, I think i'v got the hang of the basics

7) jgabin1: Trade Y3 G3 Jgabin1

8) MadWuher: Build G1 Madwuher



12855)
Started: 2009.2.12, Ended: 2009.2.18
Participants: pedrop (S), MikeYarrum (N)
Winner: pedrop



12871)
Started: 2009.2.12, Ended: 2009.2.16
Participants: CanisFirebrand (S), xmiyux (N)
Winner: xmiyux

1) xmiyux: Homeworld B3 G1 Y3

2) CanisFirebrand: Homeworld B3 G1 Y3

3) xmiyux: Trade Y3 B3 Xmiyux

4) CanisFirebrand: Build Y1 Canisfirebrand
	xmiyux: At some point we will in fact puzzle out this game. :lol:
	CanisFirebrand: I'm learning as I go.. Never played before, and trying to make sense of the directions.

5) xmiyux: Build B1 Xmiyux

6) CanisFirebrand: Trade Y1 R1 Canisfirebrand

7) xmiyux: Trade B1 G1 Xmiyux
	CanisFirebrand: I could not figure out the discover command or what that middle portion of the map is for.

8) CanisFirebrand: Discover R1 Canisfirebrand R2 Canis2
	xmiyux: Perhaps this evening we can chat in the chatbox or on Live and i can explain it to you?
	CanisFirebrand: That would be cool.. It seems like a complex and fun game, but I can't make heads or tails with the wiki page you linked with the rules.

9) xmiyux: Build G2 Xmiyux

10) CanisFirebrand: Build Y1 Canisfirebrand

11) xmiyux: Trade G1 Y1 Xmiyux

12) CanisFirebrand: Build Y1 Canisfirebrand

13) xmiyux: Build Y2 Xmiyux

14) CanisFirebrand: Trade Y1 G1 Canisfirebrand

15) xmiyux: Discover G2 Xmiyux B2 Miranda

16) CanisFirebrand: Build G2 Canisfirebrand

17) xmiyux: Move Y1 Xmiyux Miranda

18) CanisFirebrand: Move G2 Canisfirebrand Canis2

19) xmiyux: Build Y1 Miranda

20) CanisFirebrand: Build R1 Canis2

21) xmiyux: Move Y1 Miranda Canisfirebrand

22) CanisFirebrand: Move Y1 Canisfirebrand Canis2

23) xmiyux: Build Y2 Canisfirebrand

24) CanisFirebrand: Move R1 Canis2 Xmiyux

25) xmiyux: Trade Y2 R2 Xmiyux

26) CanisFirebrand: Build R1 Xmiyux

27) xmiyux: Sacrifice Y2 Canisfirebrand
Move R2 Xmiyux Canis2
Move G2 Miranda Canisfirebrand

28) CanisFirebrand: Build R2 Xmiyux

29) xmiyux: Build G2 Canisfirebrand
Catastrophe Canisfirebrand G

30) CanisFirebrand: Attack R2 Canis2

31) xmiyux: Trade Y1 G1 Canisfirebrand

32) CanisFirebrand: Trade R1 Y1 Xmiyux

33) xmiyux: Build G1 Canisfirebrand

34) CanisFirebrand: Build G2 Canis2

35) xmiyux: Trade G1 R1 Canisfirebrand

36) CanisFirebrand: Build R3 Xmiyux

37) xmiyux: Sacrifice R1 Canisfirebrand
Attack R3 Xmiyux

38) CanisFirebrand: Build R1 Xmiyux
Catastrophe Xmiyux R

39) xmiyux: Build G1 Canisfirebrand

40) CanisFirebrand: Build G2 Canis2

41) xmiyux: Trade G1 B1 Canisfirebrand

42) CanisFirebrand: Sacrifice R1 Canis2
Attack G1 Canisfirebrand

43) xmiyux: Trade B3 R3 Xmiyux

44) CanisFirebrand: Trade Y1 R1 Xmiyux

45) xmiyux: Attack R1 Xmiyux

46) CanisFirebrand: Trade G1 R1 Canisfirebrand

47) xmiyux: Sacrifice R1 Xmiyux
Attack R1 Canisfirebrand

48) CanisFirebrand: Sacrifice R2 Canis2
Attack R1 Canisfirebrand
Attack B1 Canisfirebrand

49) xmiyux: Build R1 Xmiyux

50) CanisFirebrand: Move G2 Canis2 Canisfirebrand

51) xmiyux: Trade R1 G1 Xmiyux

52) CanisFirebrand: Move R1 Canisfirebrand Miranda

53) xmiyux: Move Y1 Miranda Xmiyux

54) CanisFirebrand: Trade Y3 R3 Canisfirebrand

55) xmiyux: Build R1 Xmiyux

56) CanisFirebrand: Build Y1 Canis2

57) xmiyux: Build Y2 Xmiyux

58) CanisFirebrand: Sacrifice Y1 Canis2
Move R3 Canisfirebrand Canis2

59) xmiyux: Trade Y1 B1 Xmiyux

60) CanisFirebrand: Sacrifice G2 Canis2
Build Y1 Canis2
Build G1 Canis2

61) xmiyux: Build Y1 Xmiyux

62) CanisFirebrand: Move Y1 Canis2 Canisfirebrand

63) xmiyux: Discover Y2 Xmiyux R2 Serenityvalley

64) CanisFirebrand: Build G2 Canisfirebrand

65) xmiyux: Move Y2 Serenityvalley Canisfirebrand

66) CanisFirebrand: Sacrifice R1 Miranda
Attack Y2 Canisfirebrand

67) xmiyux: Build Y2 Xmiyux

68) CanisFirebrand: Sacrifice G2 Canisfirebrand
Build Y2 Canis2
Build Y3 Canis2

69) xmiyux: Move Y1 Xmiyux Canis2
Catastrophe Canis2 Yellow

70) CanisFirebrand: Move Y2 Canisfirebrand Canis2

71) xmiyux: Build Y1 Xmiyux

72) CanisFirebrand: Sacrifice Y2 Canis2
Move G1 Canis2 Xmiyux
Move G2 Canis2 Xmiyux
Catastrophe Xmiyux G

73) xmiyux: Discover Y2 Xmiyux G2 Miranda

74) CanisFirebrand: Build G1 Canisfirebrand

75) xmiyux: Move Y2 Miranda Canisfirebrand

76) CanisFirebrand: Move G2 Canisfirebrand Canis2

77) xmiyux: Sacrifice R3 Xmiyux
Attack Y1 Canisfirebrand
Attack G1 Canisfirebrand
Attack B1 Canisfirebrand



12861)
Started: 2009.2.13, Ended: 2009.2.21
Participants: agentofchaos (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) agentofchaos: Homeworld B3 R2 G3
	TwoShort: Two games at once?

3) TwoShort: Build G1 Twoshort
	agentofchaos: Why not? Might be interesting to compare how they go :)

4) agentofchaos: Build G1 Agentofchaos

5) TwoShort: Trade G1 Y1 Twoshort

6) agentofchaos: Build G1 Agentofchaos

7) TwoShort: Build Y1 Twoshort

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) TwoShort: Build Y2 Twoshort

10) agentofchaos: Build Y2 Agentofchaos

11) TwoShort: Discover Y1 Twoshort G3 Grognard

12) agentofchaos: Build Y2 Agentofchaos

13) TwoShort: Build Y3 Grognard

14) agentofchaos: Build G1 Agentofchaos

15) TwoShort: Discover Y2 Twoshort B3 Bluestar

16) agentofchaos: Discover Y2 Agentofchaos B1 Agrajag

17) TwoShort: Sacrifice G3 Twoshort
Build Y3 Twoshort
Build Y3 Bluestar
Pass

18) agentofchaos: Discover Y1 Agentofchaos B1 Kakrafoon

19) TwoShort: Trade Y1 G1 Twoshort

20) agentofchaos: Move G1 Agentofchaos Kakrafoon

21) TwoShort: Trade Y2 R2 Bluestar

22) agentofchaos: Build G2 Kakrafoon

23) TwoShort: Move Y3 Bluestar Kakrafoon

24) agentofchaos: Move G2 Kakrafoon Grognard

25) TwoShort: Sacrifice R2 Bluestar
Attack G2 Grognard
Attack G1 Kakrafoon

26) agentofchaos: Move G1 Agentofchaos Agrajag

27) TwoShort: Sacrifice G2 Grognard
Build G2 Kakrafoon
Build G2 Twoshort

28) agentofchaos: Move Y2 Agrajag Grognard

29) TwoShort: Move Y3 Grognard Agrajag

30) agentofchaos: Trade G1 Y1 Agrajag

31) TwoShort: Trade G2 R2 Kakrafoon

32) agentofchaos: Build Y2 Grognard

33) TwoShort: Attack Y1 Kakrafoon

34) agentofchaos: Trade Y2 R2 Agentofchaos

35) TwoShort: Build R1 Kakrafoon

36) agentofchaos: Trade R2 Y2 Agentofchaos

37) TwoShort: Move Y1 Kakrafoon Grognard
Catastrophe Grognard Yellow

38) agentofchaos: Trade Y1 R1 Agrajag

39) TwoShort: Trade Y3 B3 Agrajag

40) agentofchaos: Build G1 Agentofchaos

41) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Kakrafoon Agentofchaos
Move B3 Agrajag Agentofchaos
Move G1 Kakrafoon Agentofchaos

42) agentofchaos: Trade G1 Y1 Agentofchaos

43) TwoShort: Sacrifice R2 Kakrafoon
Attack G3 Agentofchaos
Attack Y2 Agentofchaos
	agentofchaos: Very clever attack. 

	TwoShort: I like to say that you win by getting more pieces than the other guy (which you'll notice I did), but the actual end comes either by catastrophe ( generally in the star colors), or by throwing multiple 3s into the homeworld when they don't have an r2/3 and you do.  I generally avoid taking an r1 if I can; when you need a red, they're not enough.
It's generally a good idea to have an r2 (or 3), because otherwise I can throw in more 
	agentofchaos: Thanks for the tips and the game, I learned a few things (hopefully) :-)


12872)
Started: 2009.2.13, Ended: 2009.2.21
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld R1 B2 G3

2) TwoShort: Homeworld R1 B3 G3

3) zoltar: Build G1 Zoltar

4) TwoShort: Build G1 Twoshort

5) zoltar: Trade G1 Y1 Zoltar

6) TwoShort: Trade G1 Y1 Twoshort

7) zoltar: Build G1 Zoltar

8) TwoShort: Build G1 Twoshort

9) zoltar: Trade G1 B1 Zoltar

10) TwoShort: Build G1 Twoshort

11) zoltar: Build B1 Zoltar

12) TwoShort: Trade G1 R1 Twoshort

13) zoltar: Discover B1 Zoltar G3 Greenbelt

14) TwoShort: Build R2 Twoshort

	zoltar: Well, you did it again -- I'm already lost this early in the opening -- I'm locked out of the reds and I don't see anything I can possibly do.
	TwoShort: Hypothetically, if I saw something I thought you could try, I might decide I was better off not saying anything about it, particularly since I might be missing some obvious reason it couldn't work in any case.  Potentially.
	zoltar: Well, I set up the position and studied it, and I can only conclude my position is hopeless.  I'd rather resign and start over where I have a chance! 
	TwoShort: Fair enough.  I also set up the position and tried to figure out what you should do. The only option I was hinting at as build at greenbelt, sac the y1 to move to a b2, sac the green to build all the remaining blue, sac a b2 to flip the 3 pointers to red and green or yellow.  Everything else I saw for you was doom, I probably could have figured out how to stop that, I just hadn't yet...
 Anyway, that's the first time I've ever tried a red lock-out; I sort of backed into when I didn't see anything else good. 


12860)
Variants: "Unrated, Hard time"
Started: 2009.2.13, Ended: 2009.2.13
Participants: suniltrip (S), MadWuher (N)
Winner: MadWuher



12862)
Started: 2009.2.13, Ended: 2009.5.18
Participants: MadWuher (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R2 G3

2) MadWuher: Homeworld R1 B2 G3

3) zoltar: Build G1 Zoltar

4) MadWuher: Build G1 Madwuher

5) zoltar: Trade G1 Y1 Zoltar

6) MadWuher: Trade G1 Y1 Madwuher

7) zoltar: Build G1 Zoltar

8) MadWuher: Build G1 Madwuher

9) zoltar: Trade G1 R1 Zoltar

10) MadWuher: Trade G1 R1 Madwuher

11) zoltar: Build R2 Zoltar

12) MadWuher: Build R2 Madwuher

13) zoltar: Discover R2 Zoltar G1 Greenbelt

14) MadWuher: Discover R2 Madwuher Y3 Edora

15) zoltar: Build R3 Greenbelt

16) MadWuher: Build R3 Madwuher

17) zoltar: Build R3 Zoltar

18) MadWuher: Trade R1 B1 Madwuher

19) zoltar: Trade R1 B1 Zoltar

20) MadWuher: Build G1 Madwuher

21) zoltar: Move B1 Zoltar Greenbelt

22) MadWuher: Move R3 Madwuher Edora

23) zoltar: Trade R3 Y3 Greenbelt

24) MadWuher: Move B1 Madwuher Edora

25) zoltar: Build Y1 Greenbelt

26) MadWuher: Build Y2 Madwuher

27) zoltar: Build Y2 Zoltar

28) MadWuher: Discover Y2 Madwuher G3 Bologna

29) zoltar: Discover Y1 Zoltar G1 Greenarrow

30) MadWuher: Discover G1 Madwuher Y3 Camelot

31) zoltar: Move R3 Zoltar Greenarrow

32) MadWuher: Build Y2 Madwuher

33) zoltar: Move R3 Greenarrow Camelot

34) MadWuher: Sacrifice G1 Camelot
Build G1 Madwuher

35) zoltar: Build G2 Zoltar

36) MadWuher: Move G1 Madwuher Edora

37) zoltar: Discover G2 Zoltar R1 Reddwarf

38) MadWuher: Build G2 Madwuher

39) zoltar: Build G2 Zoltar

40) MadWuher: Move R2 Edora Greenarrow

41) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R1 Camelot
Build R3 Greenbelt

42) MadWuher: Attack Y1 Greenarrow

43) zoltar: Move R3 Camelot Greenarrow

44) MadWuher: Move R2 Greenarrow Camelot

45) zoltar: Sacrifice R1 Camelot
Attack Y1 Greenarrow

46) MadWuher: Sacrifice G2 Madwuher
Build R1 Camelot
Build G2 Edora

47) zoltar: Move R3 Greenbelt Camelot

48) MadWuher: Sacrifice Y2 Bologna
Discover R2 Camelot Y2 Bologna
Move G1 Edora Bologna

49) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Reddwarf
Build B1 Greenbelt

50) MadWuher: Build B2 Edora

51) zoltar: Attack R1 Camelot

52) MadWuher: Move B1 Edora Bologna

53) zoltar: Move B1 Greenbelt Camelot

54) MadWuher: Sacrifice G1 Bologna
Build G1 Madwuher

55) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B2 Greenbelt
Build B3 Camelot

56) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build B3 Bologna
Pass

57) zoltar: Sacrifice Y2 Zoltar
Move B1 Camelot Bologna
Move B1 Greenbelt Bologna
Catastrophe Bologna B

58) MadWuher: Build B1 Edora

59) zoltar: Sacrifice G3 Reddwarf
Build G3 Reddwarf
Build Y2 Greenarrow
Build B1 Camelot

60) MadWuher: Move B1 Edora Bologna

61) zoltar: Sacrifice Y2 Greenarrow
Move G3 Reddwarf Bologna
Discover G2 Reddwarf B3 Bluemoon

62) MadWuher: Move R2 Bologna Bluemoon

63) zoltar: Sacrifice G3 Bologna
Build G3 Bluemoon
Build Y2 Greenarrow
Build R1 Greenbelt

64) MadWuher: Attack G2 Bluemoon

65) zoltar: Sacrifice R2 Greenbelt
Attack R2 Bluemoon
Attack G2 Bluemoon

66) MadWuher: Move G1 Madwuher Edora

67) zoltar: Sacrifice G3 Bluemoon
Build G3 Bluemoon
Build R2 Greenbelt
Build B1 Greenbelt

68) MadWuher: Sacrifice Y1 Madwuher
Discover G1 Edora Y1 Dung

69) zoltar: Move Y3 Greenbelt Zoltar

70) MadWuher: Sacrifice G1 Dung
Build Y1 Madwuher
	zoltar: Retreat!!!

71) zoltar: Move B1 Greenbelt Bluemoon

72) MadWuher: Build G1 Edora

73) zoltar: Move B3 Camelot Madwuher

74) MadWuher: Attack B3 Madwuher

75) zoltar: Sacrifice Y2 Greenarrow
Move B1 Bluemoon Madwuher
Move B1 Camelot Madwuher
Catastrophe Madwuher Blue
	zoltar: The Death Star is now fully operational.  Prepare to fire on the rebel base. Stand by...
	MadWuher: Commence primary ignition.......

76) MadWuher: Build Y2 Madwuher

77) zoltar: Sacrifice Y3 Zoltar
Move R1 Camelot Madwuher
Move R2 Bluemoon Madwuher
Move R3 Camelot Madwuher
Catastrophe Madwuher Red

	MadWuher: Thanx for the game
	zoltar: gg -- want to play again?
	MadWuher: I think I'll take some time off for a bit. Got bogged down at work lately. Maybe in a few weeks? (Once everything is settled that is)



12874)
Started: 2009.2.13, Ended: 2009.6.11
Participants: sordros (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R2 B3 G3

2) sordros: Homeworld B1 Y3 G3

3) MadWuher: Build G1 Madwuher

4) sordros: Build G1 Sordros

5) MadWuher: Trade G1 Y1 Madwuher

6) sordros:
Trade G1 B1 Sordros
	sordros: t g1 b1 sordros
	sordros: oops :-)

7) MadWuher: Build Y1 Madwuher

8) sordros: Build B1 Sordros

9) MadWuher: Discover Y1 Madwuher Y1 Edora

10) sordros: Discover B1 Sordros B2 Blua

11) MadWuher: Build Y2 Madwuher

12) sordros: Build G1 Sordros

13) MadWuher: Trade Y2 B2 Madwuher

14) sordros: Trade G3 Y3 Sordros

15) MadWuher: Build Y2 Madwuher

16) sordros: Build G1 Sordros

17) MadWuher: Build Y2 Madwuher

18) sordros: Discover B1 Sordros G2 Verda

19) MadWuher: Discover B2 Madwuher G1 Bologna

20) sordros: Build B2 Verda

21) MadWuher: Build B3 Bologna

22) sordros: Trade B2 Y2 Verda

23) MadWuher: Trade Y2 G2 Madwuher

24) sordros: Build Y2 Verda

25) MadWuher: Trade B2 R2 Bologna

26) sordros: Trade Y3 R3 Sordros

27) MadWuher: Move Y1 Madwuher Bologna



12873)
Variants: "Unrated, Hard time"
Started: 2009.2.13, Ended: 2009.4.17
Participants: pedrop (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R2 B3 G3

2) pedrop: Homeworld Y1 B2 G3

3) MadWuher: Build G1 Madwuher

4) pedrop: Build G1 Pedrop

5) MadWuher: Trade G1 Y1 Madwuher

6) pedrop: Trade G1 Y1 Pedrop

7) MadWuher: Build Y2 Madwuher
	pedrop: Wow... so many spectators... I haven't known that so many people are just watching;) Or... You - MadWuher - are very famous Homeworlds gamer? :) Hello all and good luck MadWuher:)

8) pedrop: Build Y2 Pedrop

9) MadWuher: Discover Y1 Madwuher G1 Edora

10) pedrop: Discover Y1 Pedrop G3 Ziemia

11) MadWuher: Build G1 Madwuher
	MadWuher: Good luck to you too. (never seen that many before.... hmmm)

12) pedrop: Build G1 Pedrop

13) MadWuher: Trade G1 R1 Madwuher

14) pedrop: Discover G1 Pedrop B3 Dupa

15) MadWuher: Sacrifice G3 Madwuher
Build Y2 Edora
Build Y3 Edora
Build Y3 Madwuher
	pedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)

16) pedrop: Move Y1 Ziemia Edora
Catastrophe Edora Y

17) MadWuher: Trade Y3 G3 Madwuher

18) pedrop: Build G1 Dupa

19) MadWuher: Build R1 Madwuher

20) pedrop: Trade G1 R1 Dupa

21) MadWuher: Trade R1 G1 Madwuher

22) pedrop: Build G1 Dupa

23) MadWuher: Discover G1 Madwuher B1 Edora

24) pedrop: Build R1 Dupa

25) MadWuher: Build G2 Edora

26) pedrop: Build G2 Pedrop

27) MadWuher: Trade G1 Y1 Edora

28) pedrop: Move Y2 Pedrop Dupa

29) MadWuher: Build G1 Edora

30) pedrop: Discover G1 Dupa B2 Ziemia

31) MadWuher: Discover G2 Edora G3 Bologna

32) pedrop: Sacrifice G3 Pedrop
Build G2 Ziemia
Build G3 Pedrop
Build Y1 Dupa

33) MadWuher: Sacrifice G2 Bologna
Build G2 Madwuher
Build G3 Edora

34) pedrop: Discover Y1 Dupa B1 Niebo

35) MadWuher: Move R1 Madwuher Edora

36) pedrop: Move R1 Dupa Niebo

37) MadWuher: Discover G1 Edora B3 Bologna

	pedrop: Sorry, had no time nowadays:/
	MadWuher: Totally understand. Not a problem. Hope to play against you again when you have more time.


12882)
Variants: "Hard time"
Started: 2009.2.14, Ended: 2009.3.29
Participants: pedrop (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B3 G3

2) pedrop: Homeworld Y1 B2 G3
	agentofchaos: Hi again :)

3) agentofchaos: Build G1 Agentofchaos
	pedrop: Hi:) Seeing You played so many games, I have decided to chellange You in hope for quite fast and dynamic game:) Good luck.

4) pedrop: Build G1 Pedrop
	agentofchaos: I usually play pretty quickly, and try to logon everyday. I've only played this game a few times, so I'm no expert, but I think it's fun :-)

5) agentofchaos: Trade G1 Y1 Agentofchaos
	pedrop: heh:) Those Homeworld games i'm playing now... are my first ever, so You may be an expert for me;) But I will be concetrated, so the game shouldn't be bad:) I also think this game is fun and maybe the most interesting on SDG - for me.

6) pedrop: Trade G1 Y1 Pedrop

7) agentofchaos: Build Y2 Agentofchaos

8) pedrop: Build Y2 Pedrop

9) agentofchaos: Build G1 Agentofchaos

10) pedrop: Discover Y2 Pedrop B3 Blues

11) agentofchaos: Discover Y2 Agentofchaos G2 Kantele

12) pedrop: Move Y1 Pedrop Blues

13) agentofchaos: Build G1 Agentofchaos

14) pedrop: Trade Y1 B1 Blues

15) agentofchaos: Discover G1 Agentofchaos Y2 Squid

16) pedrop: Move B1 Blues Pedrop

17) agentofchaos: Build G1 Squid

18) pedrop: Build G2 Pedrop

19) agentofchaos: Discover G1 Squid Y3 Kalki

20) pedrop: Move G2 Pedrop Blues

21) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Kalki
Build G3 Agentofchaos
Build Y1 Kantele

22) pedrop: Sacrifice G2 Blues
Build Y3 Blues
Build Y3 Blues
	pedrop: Sorry for that "undo", but sytuation is getting more n more interesting;)
	agentofchaos: That's alright I use the undo button myself quite often ;-)

23) agentofchaos: Move Y1 Kantele Blues
Catastrophe Blues Y

24) pedrop: Build B1 Pedrop

25) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Squid
Build G3 Squid
Build G3 Agentofchaos
	agentofchaos: Be careful to avoid overpopulating your systems! ;-)
	pedrop: So... the overpopulation in binary(for two players) homeworlds is triggered when there are 3 elements of the same color? Not 4 like for Homewolrds for 3 and more players?
	pedrop: So... the overpopulation in binary(for two players) homeworlds is triggered when there are 3 elements of the same color? Not 4 like for Homewolrds for 3 and more players?
	agentofchaos: No it's still triggered by 4 elements of the same color. You had 3 of your own y elements in Blues, but I had a y ship in a connected system, so I sent it to Blues and triggered a catastrophe. So be careful of having 3 elements in a system that is connected to an opponent's system. 
	pedrop: Oh...! I should predict it...;))) Thanks for answer:) Ok, let see what I can do now...:)

26) pedrop: Trade B1 Y1 Pedrop

27) agentofchaos: Sacrifice G3 Agentofchaos
Build Y2 Agentofchaos
Build Y3 Agentofchaos
Build G3 Agentofchaos

28) pedrop: Discover B1 Pedrop Y3 Hard

29) agentofchaos: Trade G1 B1 Agentofchaos

30) pedrop: Build G1 Pedrop
	pedrop: By sacrifcing of yellow ship(2 or 3 size) can one discover a new system in first action, and then in secound action abendon it, an move furher?
	agentofchaos: Yes you can, I've known players to do that. 

31) agentofchaos: Move B1 Agentofchaos Squid

32) pedrop: Trade Y1 R1 Pedrop
	pedrop: Thanks for answer. Knowing of such posibility may be vary handy:)
	agentofchaos: Yes it can be a very effective strategy :)

33) agentofchaos: Build Y1 Kantele

34) pedrop: Sacrifice G3 Pedrop
Build R1 Pedrop
Build R2 Pedrop
Build G3 Pedrop

35) agentofchaos: Build B1 Squid

36) pedrop: Move R1 Pedrop Kalki

37) agentofchaos: Move B1 Squid Kalki

38) pedrop: Sacrifice G3 Pedrop
Build R2 Pedrop
Build R2 Kalki
Build G3 Pedrop

39) agentofchaos: Sacrifice Y3 Agentofchaos
Move G1 Kalki Pedrop
Move G2 Kalki Pedrop
Move B1 Kalki Kantele
Catastrophe Pedrop G

40) pedrop: Trade B1 G1 Hard

41) agentofchaos: Trade G3 R3 Squid

42) pedrop: Move R2 Kalki Kantele

43) agentofchaos: Sacrifice R3 Squid
Attack R2S Kantele
Pass
Pass

44) pedrop: Trade R1 G1 Pedrop

45) agentofchaos: Build Y3 Agentofchaos

46) pedrop: Build G2 Hard

47) agentofchaos: Build G3 Agentofchaos

48) pedrop: Build G3 Pedrop

49) agentofchaos: Trade B1 R1 Squid

50) pedrop: Trade R2 B2 Pedrop

51) agentofchaos: Sacrifice G3 Agentofchaos
Build R2 Squid
Build R3 Kantele
Build G3 Agentofchaos

52) pedrop: Sacrifice G3 Pedrop
Build R3 Pedrop
Build R3 Kalki
Build G3 Pedrop
	pedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)

53) agentofchaos: Move Y3 Agentofchaos Squid
	agentofchaos: I've never played those games, will think about it. 

54) pedrop: Move R3 Pedrop Hard

55) agentofchaos: Sacrifice Y2 Kantele
Move R2 Kantele Kalki
Move R1 Squid Kalki
Catastrophe Kalki R

56) pedrop: Trade B2 Y2 Pedrop

57) agentofchaos: Sacrifice G3 Agentofchaos
Build Y3 Kantele
Build B1 Kantele
Build G3 Agentofchaos

58) pedrop: Build R1 Pedrop

59) agentofchaos: Sacrifice G3 Agentofchaos
Build R1 Squid
Build B1 Kantele
Build G3 Agentofchaos

60) pedrop: Trade R2 B2 Pedrop

61) agentofchaos: Discover B1 Kantele B3 Juvar

62) pedrop: Move B2 Pedrop Hard

63) agentofchaos: Build R2 Kantele

64) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build R2 Hard
Build R3 Pedrop

65) agentofchaos: Move R3 Kantele Juvar

66) pedrop: Discover R2 Hard B2 Never

67) agentofchaos: Discover G1 Squid B3 Oa

68) pedrop: Move R3 Pedrop Hard

69) agentofchaos: Move B1 Kantele Oa

70) pedrop: Move G1 Pedrop Oa

71) agentofchaos: Move R2 Squid Oa

72) pedrop: Move R3 Hard Never

73) agentofchaos: Sacrifice Y2 Agentofchaos
Move B1 Oa Pedrop
Move B1 Juvar Pedrop

74) pedrop: Trade R2 Y2 Never

75) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Squid
Build R2 Squid
Pass

76) pedrop: Move R3 Never Oa

77) agentofchaos: Sacrifice Y3 Squid
Move B1 Kantele Juvar
Move B1 Juvar Pedrop
Move Y1 Kantele Juvar
Catastrophe Pedrop B

78) pedrop: Discover Y2 Pedrop Y3 Ziemia

79) agentofchaos: Move R2 Squid Ziemia

80) pedrop: Sacrifice R3 Hard
Attack R2 Ziemia
Attack R2 Oa
Attack G1 Oa

81) agentofchaos: Build R3 Kantele

82) pedrop: Move G1 Hard Squid

83) agentofchaos: Move G2 Squid Juvar

84) pedrop: Move G1 Squid Hard

85) agentofchaos: Move R3 Kantele Ziemia
	pedrop: It looks like this is the end...:(

86) pedrop: Sacrifice Y2 Ziemia
Move G1 Oa Kantele
Move G1 Oa Kantele

87) agentofchaos: Build Y2 Juvar
	agentofchaos: Could be, but you're not making it easy! ;-)

88) pedrop: Move G1 Hard Kantele
Catastrophe Kantele G

89) agentofchaos: Build Y3 Agentofchaos
	pedrop: And I won't...:)

90) pedrop: Move Y2 Never Oa

91) agentofchaos: Move Y1 Agentofchaos Squid

92) pedrop: Discover R3 Oa G2 Theend

93) agentofchaos: Sacrifice Y3 Agentofchaos
Move Y1 Juvar Pedrop
Move Y2 Juvar Pedrop
Move Y1 Squid Pedrop
Catastrophe Pedrop Y

	pedrop: So now it is the end for sure:) Thanks for a realy good game and see You in return match some day(now I have to many games;). 
	agentofchaos: Thanks for a great game, and for your sportsmanship! Let me know when you would like a return match :-)


12876)
Started: 2009.2.15, Ended: 2009.6.2
Participants: MadWuher (S), agentofchaos (N)
Winner: MadWuher

1) agentofchaos: Homeworld B1 R3 G3

2) MadWuher: Homeworld R1 B2 G3

3) agentofchaos: Build G1 Agentofchaos

4) MadWuher: Build G1 Madwuher

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) MadWuher: Trade G1 Y1 Madwuher

7) agentofchaos: Build G1 Agentofchaos

8) MadWuher: Build G1 Madwuher

9) agentofchaos: Discover G1 Agentofchaos Y2 Shaka

10) MadWuher: Discover G1 Madwuher Y3 Edora

11) agentofchaos: Build Y1 Agentofchaos

12) MadWuher: Build Y2 Madwuher

13) agentofchaos: Discover Y1 Agentofchaos B2 Zoovar

14) MadWuher: Discover Y1 Madwuher B3 Bologna

15) agentofchaos: Build G1 Agentofchaos

16) MadWuher: Sacrifice G3 Madwuher
Build Y2 Madwuher
Build Y3 Madwuher
Build Y3 Bologna

17) agentofchaos: Build G2 Shaka

18) MadWuher: Trade Y2 G2 Madwuher

19) agentofchaos: Sacrifice G2 Shaka
Build Y2 Zoovar
Build G2 Shaka

20) MadWuher: Build G2 Madwuher

21) agentofchaos: Trade G1 R1 Agentofchaos

22) MadWuher: Trade Y2 R2 Madwuher

23) agentofchaos: Build G1 Agentofchaos

24) MadWuher: Build G3 Edora

25) agentofchaos: Build Y2 Agentofchaos

26) MadWuher: Trade Y1 R1 Bologna

27) agentofchaos: Move R1 Agentofchaos Shaka

28) MadWuher: Discover G2 Madwuher G3 Camelot

29) agentofchaos: Build R2 Shaka

30) MadWuher: Move R2 Madwuher Edora

31) agentofchaos: Move R2 Shaka Camelot

32) MadWuher: Sacrifice G2 Camelot
Build G2 Madwuher
Build Y1 Madwuher

33) agentofchaos: Sacrifice G3 Agentofchaos
Build R2 Camelot
Build R3 Shaka
Build G3 Agentofchaos

34) MadWuher: Sacrifice G2 Madwuher
Build G2 Madwuher
Build R3 Bologna

35) agentofchaos: Trade Y1 B1 Agentofchaos

36) MadWuher: Trade G2 B2 Madwuher

37) agentofchaos: Build Y1 Agentofchaos

38) MadWuher: Sacrifice G3 Edora
Build G2 Madwuher
Build G3 Edora
Build B1 Madwuher

39) agentofchaos: Move B1 Agentofchaos Shaka

40) MadWuher: Move B2 Madwuher Edora

41) agentofchaos: Move Y1 Zoovar Camelot

42) MadWuher: Build B3 Edora

43) agentofchaos: Build B3 Shaka

44) MadWuher: Move R3 Bologna Zoovar

45) agentofchaos: Sacrifice Y2 Zoovar
Move B3 Shaka Camelot
Move B1 Shaka Camelot

46) MadWuher: Sacrifice B1 Madwuher
Trade B2 Y2 Edora

47) agentofchaos: Trade G1 B1 Agentofchaos

48) MadWuher: Build B2 Edora

49) agentofchaos: Move B1 Agentofchaos Shaka

50) MadWuher: Move Y2 Edora Zoovar

51) agentofchaos: Move G1 Shaka Edora

52) MadWuher: Move G1 Edora Zoovar

53) agentofchaos: Move G1 Edora Madwuher

54) MadWuher: Sacrifice G2 Madwuher
Build G1 Edora
Build G2 Zoovar

55) agentofchaos: Sacrifice Y2 Agentofchaos
Move B1 Camelot Madwuher
Move B3 Camelot Madwuher

56) MadWuher: Sacrifice R3 Zoovar
Attack G1 Madwuher
Attack B3 Madwuher
Attack B1 Madwuher

57) agentofchaos: Build Y2 Camelot

58) MadWuher: Move B3 Madwuher Camelot

59) agentofchaos: Build R3 Camelot

60) MadWuher: Sacrifice R2 Edora
Attack R3 Camelot
Attack Y2 Camelot

61) agentofchaos: Build R2 Camelot
Catastrophe Camelot R

62) MadWuher: Sacrifice G2 Zoovar
Build G2 Zoovar
Build R2 Bologna

63) agentofchaos: Move R1 Shaka Bologna

64) MadWuher: Sacrifice R1 Bologna
Attack R1 Bologna

65) agentofchaos: Build R1 Shaka

66) MadWuher: Move R2 Bologna Zoovar

67) agentofchaos: Discover R3 Shaka R3 Irae

68) MadWuher: Sacrifice G3 Edora
Build G3 Edora
Build R2 Bologna
Build R2 Zoovar

69) agentofchaos: Sacrifice Y1 Agentofchaos
Move R3 Irae Zoovar

70) MadWuher: Sacrifice G3 Edora
Build G3 Edora
Build Y1 Zoovar
Build R3 Zoovar
Catastrophe Zoovar R

71) agentofchaos: Build R2 Shaka

72) MadWuher: Move R1 Bologna Zoovar

73) agentofchaos: Move R1 Shaka Bologna

74) MadWuher: Attack R1 Bologna

75) agentofchaos: Build R2 Shaka

76) MadWuher: Sacrifice R1 Bologna
Attack Y1 Camelot



12904)
Variants: "Hard time"
Started: 2009.2.15, Ended: 2009.3.27
Participants: pedrop (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B3 G3

2) pedrop: Homeworld B2 Y1 G3
	Jesse: Hello, and have a good game.

3) Jesse: Build G1 Jesse
	pedrop: Hi. The same to You! Are You experienced player?

4) pedrop: Build G1 Pedrop
	Jesse: Yes, I am a very experienced player.  I see from your comments in another game that you are new.  It is always my pleasure to help a new player get better, so let me know if you have any questions.

5) Jesse: Trade G1 Y1 Jesse
	pedrop: Thanks for that, and I hope that beacouse of the other games I won't do any more basic mistakes and be some challenge for You:)

6) pedrop: Trade G1 Y1 Pedrop

7) Jesse: Build Y2 Jesse
	pedrop: Of course feel free to comment my bad moves, if You will see such ones:)

8) pedrop: Discover Y1 Pedrop G3 Newhope
	Jesse: Certainly.

9) Jesse: Trade Y1 R1 Jesse

10) pedrop: Build G1 Pedrop
	Jesse: There's a saying that when your opponent picks up a gun (red piece), you must pick up a gun.  You do have a little time before you really have to, because it's hard for me to get to you this early in the game.  Just don't wait too long...

11) Jesse: Build R1 Jesse
	pedrop: Ok, I won't, thanks:) (You are fast with guns then... ;P ;) )

12) pedrop: Trade G1 Y1 Pedrop
	Jesse: I was fast with the guns mostly because I saw the opportunity to make it awkward for you to grab one yourself.

13) Jesse: Discover R1 Jesse G2 Pripyat
	pedrop: I see:) (hmm... openinig with red small planet...;) ) 

14) pedrop: Build Y2 Pedrop
	Jesse: The r1 system marker is mostly for defense early on, and the flexibility offered by defending with G3 and Y3 later.  Jumping into red quickly makes the first point less important.
	Jesse: It's also good for developing green and yellow early on, since you can have a couple of each at the homeworld without getting into danger of a catastrophe.

15) Jesse: Discover R1 Jesse G2 Kyzyl
	pedrop: Thanks for advices:) I already have experienced that having yellow star on me starting system is 
"not-so-good";) I had to "loose" 1 action to move yellow ships out of it if i wanted to develop them further. And this action is usually very valuable...;) So I agree that this is very useful opening and advice from You.
	Jesse: Having yellow in your system can also be good, because you can immediately start moving things out without taking a turn to trade for yellow.  So there are pros and cons either way.

16) pedrop: Trade Y2 R2 Pedrop

17) Jesse: Build Y2 Jesse

18) pedrop: Build R2 Pedrop

19) Jesse: Move Y2 Jesse Pripyat

20) pedrop: Move R2 Pedrop Newhope

21) Jesse: Build G1 Jesse

22) pedrop: Build G1 Pedrop

23) Jesse: Trade G1 B1 Jesse

24) pedrop: Trade G1 B1 Pedrop

25) Jesse: Discover B1 Jesse G2 Suzdal

26) pedrop: Build G1 Pedrop
	pedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)

27) Jesse: Build G1 Jesse

28) pedrop: Build G1 Pedrop
	Jesse: I think I'll pass, for now.

29) Jesse: Build B1 Suzdal

30) pedrop: Discover Y1 Pedrop B3 Ziemia

31) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y2 Jesse
Build Y3 Pripyat

32) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build Y3 Ziemia
Build Y3 Newhope
	Jesse: Have you seen this maneuver yet?  If not, it's called the factory.  If you have, it's still called the factory.

33) Jesse: Sacrifice B1 Suzdal
Trade Y3 B3 Pripyat
	pedrop: Yes I have seen it:) But didn't know how it's called:) But now I do:) Thanks.

34) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build R2 Newhope
Build R3 Pedrop

35) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y3 Pripyat
Build R3 Kyzyl

36) pedrop: Move G1 Pedrop Ziemia

37) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R3 Pripyat
Build B1 Pripyat
	Jesse: I wonder why that registered that red build as a pass, the first time.

38) pedrop: Move Y3 Ziemia Suzdal

39) Jesse: Move R3 Pripyat Ziemia

40) pedrop: Sacrifice Y1 Ziemia
Move R2 Newhope Suzdal

41) Jesse: Sacrifice Y2 Jesse
Move B1 Suzdal Ziemia
Move Y2 Pripyat Ziemia


	pedrop: Sorry, one of my family member was taken to hospital, so I haven't time to play.
	Jesse: I'm sorry to hear that.  I hope it turned out okay.  It's too bad about the game, but there are more important things.
	pedrop: Thanks. It's better now with her. See You in other games.


12918)
Variants: "Unrated"
Started: 2009.2.16, Ended: 2009.2.25
Participants: dsheldon (S), xmiyux (N)
Winner: dsheldon

1) xmiyux: Homeworld B3 Y1 G3

2) dsheldon: Homeworld B2 Y1 G3
	dsheldon: I see that you've gone with what's called a "Goldilocks" homeworld.  It gives you direct access to medium stars.  I'm going to go with a "Banker," which gives access to large stars.  The general thinking is that the banker is the easiest to play but my personal experience has been an even split of success and failure.

3) xmiyux: Build G1 Xmiyux
	xmiyux: I have absolutely no idea what Goldilocks is other than a child in a fairy tale. *laugh* My thought process was that blue and green are both important in the beginning. I like being able to explore quickly so I wanted yellow. And when I was taught the game the person told me it is always best to take a large and a small for your first stars.

4) dsheldon: Build G1 Dsheldon
	dsheldon: Goldilocks refers to the size of the stars, not their colors.  Because you have a large and a small, your homeworld is adjacent to mediums.  Mediums are neither too large nor too small.  My homeworld is next to larges.  The strategy I will be employing is to discover large stars with small green ships.  This will take these pieces out of circulation until I'm ready to build them, stopping you from building them.  As far as colors go, you're dead on.  Only very extreme strategies suggest anything other than blue yellow and green for your opening.

5) xmiyux: Trade G1 Y1 Xmiyux
	dsheldon: Your next move you have a very interesting choice.  If you build another g1, you'll give me access to the g2s.  Your other choices are to send your ship out exploring or to change it to a different color.  Out of the two, I recommend exploration.  Early on, since there's no danger to your homeworld, exploration is a very good idea.  That, and every step away from home is a step toward your enemy and aggressiveness is good.

6) dsheldon: Discover G1 Dsheldon Y3 Investment
	dsheldon: Very good move.  See how I can't get a yellow ship at all since there are no y1's left in the stash?  (I could, technically, trade my g3 for a y3, but that doesn't seem like a good idea right now.)

7) xmiyux: Discover Y1 Xmiyux G2 Miranda

8) dsheldon: Build G1 Dsheldon
	xmiyux: So with the banker strategy you build the small greens, explore the large stars (most likely yellow so you can move the new ship out), and control the access to large yellows?
	dsheldon: Here's why my homeworld is called the Banker.  Later, when I get some yellow (so not any time soon) I can sacrifice the g1 on Investment, anihilating the star, and then build the y3 wherever I have a yellow ship (assuming there aren't any y1s or y2s in the stash).  In the end game yellow is very important because it's very easy to use to set up catastrophes.

9) xmiyux: Build Y2 Miranda

10) dsheldon: Build G1 Dsheldon
	dsheldon: Oh no, you don't move the little greenies away, you sacrifice them to /immediately/ build the large.  It works for every color but green (you need a medium green to sacrifice because you'll have to build the g2 and the g3 or your investment is sort of wasted).

11) xmiyux: Discover Y2 Miranda G3 Serenityvalley

12) dsheldon: Sacrifice G3 Dsheldon
Build G2 Investment
Build G2 Investment
Build G3 Dsheldon
	dsheldon: Ah, now the problem here is that there are a lot of green ships in play, and now I'm going to take the rest of them, which will be a problem for you since you only have one.

13) xmiyux: Build Y2 Miranda
	dsheldon: This is a classic move.  Sac a green and rebuild it.  You might think I should worry about the huge piles of green ships waiting for catastrophe, but since you only control one green ship, and it's alone in your homeworld, I have nothing to fear.  You're seeing a prime example of having spread yourself too thin when there were good routes for growth toward reinforcement.

14) dsheldon: Trade G1 B1 Dsheldon
	xmiyux: I can definitely feel the pinch on green right now.
	dsheldon: Now I'm looking to transform my fleet.  I'm going to try and get some of that yellow.  I can't swap the 1Gs in my homeworld, and I don't want to give up my 3G because then you could build it.  So I'll have to take a few extra steps to get where I want.

15) xmiyux: Build G1 Xmiyux
	dsheldon: Now you can build another green ship, which is a really good idea because then you can sac and rebuild the g3 in your homeworld.

16) dsheldon: Sacrifice B1 Dsheldon
Trade G1 B1 Investment
	xmiyux: Although had we been being competitive, you never would have given me that green would you?
	dsheldon: It's a calculated risk.  I'm playing sort of "fast and loose," but I'm not intentionally playing poorly.  I needed blue in my homeworld more than I needed you to not have green.  Besides, I have more tricks up my sleeve to control the stash.

17) xmiyux: Build G1 Xmiyux

18) dsheldon: Trade G2 Y2 Investment
	dsheldon: Now, even when you do sac your g3, between having to build through the g1 I just put back in the stash and rebuilding your g3 ('cuz you've gotta keep that) you'll only be able to get one more build elsewhere (which you could have had anyway from the stars) and you won't be able to build a y3 this turn.  Next turn looks a little sticky for me though.
	dsheldon: OK, you're just too fast.  How's a guy supposed to pontificate if you're making your move while I'm still explaining my last one? ;)
	dsheldon: Ah, here's why I can make a good suggestion.  If you had instead made this move:

s g3 xmiyux
b g1 xmiyux
b g3 xmiyux
b y2 serenityvalley

You'd be in the same position you are now, but with one more ship.  Since I have no yellow there's no danger of me building up to the y3s and you'd be pretty much just better off than you are now.

19) xmiyux: Discover G1 Xmiyux G2 Aker's
	dsheldon: Check.  Watch out!  If I "s y2 investment, d g2 investment r2 blah, m g2 blah xmiyux, c g xmiyux" you will lose.  So trade or move some of that green.

20) dsheldon: Move Y2 Investment Aker's
	xmiyux: I knew you needed two moves to get to that system so I knew I was safe for a turn.  I'm trying to prevent you from s the g3, rebuilding it and some mediums. On retrospect I should have traded that g1 instead of moving it so there would be at least a single g1 in the stash to make it rougher to rebuild a sacced g3.
	dsheldon: Sounds like you know more about what you're doing than you first implied.  OK, what I *really* want to do right now is get a y3, but that makes me too vulnerable to catastrophe, and that makes me sad.  I think I can still take a good stab at your homeworld though.  If I move in my g2, there's not enough to nuke it yet, but you would have a very few options on how to respond.

21) xmiyux: Build Y3 Serenityvalley
	dsheldon: Yeah, I decided against it.  Discovering that g2 was a very smart move.

22) dsheldon: Build Y3 Aker's
	xmiyux: Well, i have been simultaneously playing against another total rookie and we have went through a couple games so i am getting more a grasp of the game.

Also, i run an after school board game club for kids and i made them sit down and play Homeworlds with me a couple times so i could puzzle out things. :lol:

23) xmiyux: Move Y1 Miranda Xmiyux
	dsheldon: Not a lot to say on this move.  I've got to have me that y3.
	xmiyux: If you didn't take it i would have tried. :D

24) dsheldon: Trade B1 R1 Investment

25) xmiyux: Trade G1 B1 Xmiyux
	dsheldon: Sorry for the delay.  Work and family conspired to keep me busy.

26) dsheldon: Move Y3 Aker's Xmiyux
	xmiyux: No worries at all. Between the beginning explanation and a few other games I have been playing I think I have a grasp of the general game right now if you would rather abandon this one if you are busy and such.
	dsheldon: By no means would I want to end the game, I just usually hope to able to play more than one move in four days.  That's my apology to you, not a request to be released from the "obligation" of entertainment.

27) xmiyux: Move Y2 Miranda Xmiyux
Catastrophe Xmiyux Y
	dsheldon: Moving on with the lesson: now I'm got a three in your homeworld and a red on table.  It looks like you'll have a tough time maintaining control of any large ships at home.  You never got any red, so you can't take my y3 from me.  You could move your g3 away, so that you don't lose it, but then you still won't have any large ships in your homeworld.  I thought you might be able to destroy Investment (and my red ship), but you don't have enough yellow in the right places to do that either.

It's a tough position.

28) dsheldon: Sacrifice R1 Investment
Attack G1N Aker's
	xmiyux: Yep.  With your red you would take the G3. Then you my blue star to get a R3 and mate. I was pretty much stuck.  I think the game is actually over now, but my only foreseen chance was to kill my own star to take out the Y3.

This connects our galaxies. Unfortunately I axed my own yellow abilities so it will take a turn or two to even get set up.  Hypothetically if you sat on your hands without any threats I oculd move a G3 to your base, sac a R2 or R3 if I had them to try to attack.

That, however, is not going to happen. :lol:
	dsheldon: Woah, drastic.  But I'm still in an awkward position to try any follow up attacks.
	dsheldon: Funny thing is, you're one move from destroying my homeworld: s y3 serenity valley; m g3 xmiyux dsheldon; m g1 aker's xmiyux; m g1 xmiyux dsheldon; c dsheldon g.  So my first goal is to prevent that.

29) xmiyux: Trade B1 R1 Xmiyux

30) dsheldon: Trade G1 R1 Dsheldon

31) xmiyux: Discover Y3 Serenityvalley G2 Miranda
	dsheldon: Allow me to commend your tenacity.
	xmiyux: *laugh* Nothing ventured I guess.

32) dsheldon: Build G1 Dsheldon
	xmiyux: Almost handed you the win

33) xmiyux: Build Y1 Miranda

34) dsheldon: Sacrifice G3 Dsheldon
Build G1 Aker's
Build G3 Dsheldon
Build Y1 Aker's

35) xmiyux: Move Y1 Miranda Xmiyux

36) dsheldon: Trade G1 B1 Dsheldon

37) xmiyux: Trade Y1 G1 Xmiyux

38) dsheldon: Sacrifice Y2 Aker's
Move G1 Aker's Xmiyux
Move G1 Aker's Xmiyux
Catastrophe Xmiyux G

39) xmiyux: Trade R1 B1 Xmiyux
	dsheldon: It's important in your end game to have multiple attack avenues and to limit the possible moves available to your opponent.  It is very unsafe for you to build green which is hampering your growth and, while that holds you down, I'm now building up a blue attack in my diversified homeworld.  I don't think you need my advice anymore, you seem to have a really good handle on the game now.
	dsheldon: Wait... really?  You could just *build* a g1, why the trade?  And you've opened yourself to an even worse catastrophe.  That doesn't look like a very good move.
	dsheldon: I guess if you were going to undo you'd have done it by now.

40) dsheldon: Move B1 Dsheldon Xmiyux
	xmiyux: Doh - yeah - a complete oversight.  I had foreseen that move before. Then turned around and did it again. :lol: Thanks for punishing the mistake. The only way I will learn. :)

41) xmiyux: Pass
	xmiyux: Finish me off. I can't bring myself to resign. :lol:
	dsheldon: These are among the reasons I wish SDG had an easy way to notify players that you have a game related message for them.  I guess I could have emailed you, I have your address... somewhere.

42) dsheldon: Sacrifice G2 Investment
Build Y1 Aker's
Build B1 Xmiyux
Catastrophe Xmiyux B
	dsheldon: I totally understand your preference to play out a game you've lost rather than to resign, I'm the same way.
	xmiyux: Indeed. Well thanks for the game and the help.  To be honest I think there needs to be a Facebook plugin for Super Duper so everyone could play through that site.

I also think Homeworlds would make an absolute killer Community Game on Xbox Live.  Andy needs to hook up with some programmers and make a little money on that front.

	dsheldon: I totally agree.  I even downloaded some instructions once, long ago, about writing facebook aps for precisely that reason.  I hadn't thought of it as far as XBL goes but that would rule too.  Catan and Carcassone are raking it in, how about a little love for the icehouse set?
	dsheldon: Always have to finish with a bang.  Glad I could help, I think you'll do well, you seemed to really learn a lot and quickly.  Just be a bit more careful of catastrophes and you'll be a real competitor.


12921)
Started: 2009.2.16, Ended: 2009.2.17
Participants: CanisFirebrand (S), xmiyux (N)
Winner: xmiyux

1) xmiyux: Homeworld Y2 B1 G3

2) CanisFirebrand: Homeworld B2 Y1 G3

3) xmiyux: Build G1 Xmiyux

4) CanisFirebrand: Build G1 Canisfirebrand

5) xmiyux: Trade G1 Y1 Xmiyux

6) CanisFirebrand: Discover G1 Canisfirebrand Y3 Inverness

7) xmiyux: Build G1 Xmiyux

8) CanisFirebrand: Build G1 Canisfirebrand

9) xmiyux: Discover Y1 Xmiyux G3 Miranda

10) CanisFirebrand: Build G2 Canisfirebrand

11) xmiyux: Discover G1 Xmiyux B3 Serenityvalley

12) CanisFirebrand: Discover G1 Canisfirebrand R3 Erebus

13) xmiyux: Build G2 Xmiyux

14) CanisFirebrand: Build G2 Erebus

15) xmiyux: Build Y1 Miranda

16) CanisFirebrand: Trade G2 B2 Canisfirebrand

17) xmiyux: Sacrifice G3 Xmiyux
Build G2 Serenityvalley
Build G3 Xmiyux
Build Y2 Miranda

18) CanisFirebrand: Move B2 Canisfirebrand Erebus

19) xmiyux: Discover Y1 Miranda Y2 Aker's

20) CanisFirebrand: Move G1 Inverness Canisfirebrand

21) xmiyux: Sacrifice G3 Xmiyux
Build G3 Xmiyux
Build Y3 Miranda
Build Y3 Aker's

22) CanisFirebrand: Sacrifice G3 Canisfirebrand
Build G3 Canisfirebrand
Build B1 Erebus
Build B1 Erebus

23) xmiyux: Sacrifice Y2 Miranda
Move G1 Serenityvalley Canisfirebrand
Move G2 Serenityvalley Canisfirebrand
Catastrophe Canisfirebrand Green

	CanisFirebrand: That is a pretty good strategy to take almost all playable pieces of one color. Makes it difficult for your opponent to do much.


12935)
Started: 2009.2.17, Ended: 2009.2.24
Participants: xmiyux (S), CanisFirebrand (N)
Winner: xmiyux

1) CanisFirebrand: Homeworld G3 B1 R3

2) xmiyux: Homeworld B2 Y1 G3

3) CanisFirebrand: Build R1 Canisfirebrand

4) xmiyux: Build G1 Xmiyux

5) CanisFirebrand: Trade R1 G1 Canisfirebrand

6) xmiyux: Trade G1 Y1 Xmiyux

7) CanisFirebrand: Build R1 Canisfirebrand

8) xmiyux: Build G1 Xmiyux

9) CanisFirebrand: Trade G1 Y1 Canisfirebrand

10) xmiyux: Discover G1 Xmiyux G3 Miranda

11) CanisFirebrand: Trade R1 G1 Canisfirebrand

12) xmiyux: Build Y2 Xmiyux

13) CanisFirebrand: Discover G1 Canisfirebrand B2 Inverness

14) xmiyux: Discover Y1 Xmiyux B3 Serenity

15) CanisFirebrand: Build R1 Canisfirebrand

16) xmiyux: Build Y2 Xmiyux

17) CanisFirebrand: Trade R3 B3 Canisfirebrand

18) xmiyux: Discover Y2 Xmiyux B3 Aker's

19) CanisFirebrand: Build Y2 Canisfirebrand

20) xmiyux: Build G1 Xmiyux

21) CanisFirebrand: Discover Y1 Canisfirebrand G2 Erebus

22) xmiyux: Move Y2 Xmiyux Miranda

23) CanisFirebrand: Build Y3 Erebus

24) xmiyux: Build Y3 Miranda

25) CanisFirebrand: Build G2 Inverness

26) xmiyux: Trade G1 R1 Xmiyux

27) CanisFirebrand: Sacrifice Y3 Erebus
Move Y2 Canisfirebrand Inverness
Move G1 Inverness Miranda
Move G2 Inverness Miranda
Catastrophe Miranda G

28) xmiyux: Move Y2 Aker's Inverness

29) CanisFirebrand: Sacrifice R1 Canisfirebrand
Attack Y2 Inverness

30) xmiyux: Build R1 Xmiyux

31) CanisFirebrand: Build Y2 Erebus

32) xmiyux: Build G1 Xmiyux

33) CanisFirebrand: Move Y2 Inverness Canisfirebrand

34) xmiyux: Trade G3 Y3 Xmiyux

35) CanisFirebrand: Build Y3 Canisfirebrand

36) xmiyux: Build G1 Xmiyux

37) CanisFirebrand: Discover Y1 Erebus Y3 Dunsinane

38) xmiyux: Move R1 Xmiyux Serenity

39) CanisFirebrand: Build B1 Canisfirebrand

40) xmiyux: Move G1 Xmiyux Serenity

41) CanisFirebrand: Discover Y2 Inverness G3 Nottingham

42) xmiyux: Trade Y3 G3 Xmiyux

43) CanisFirebrand: Build Y3 Nottingham

44) xmiyux: Build G1 Serenity

45) CanisFirebrand: Sacrifice B3 Canisfirebrand
Trade Y1 B1 Dunsinane
Trade Y2 B2 Nottingham
Trade Y3 B3 Nottingham

46) xmiyux: Discover G1 Serenity Y2 Akers

47) CanisFirebrand: Sacrifice Y3 Canisfirebrand
Move B3 Nottingham Erebus
Move B2 Nottingham Erebus
Move B1 Canisfirebrand Erebus

48) xmiyux: Discover R1 Serenity G2 Valley

49) CanisFirebrand: Discover B1 Erebus B3 Inverness

50) xmiyux: Sacrifice G3 Xmiyux
Build G2 Serenity
Build G3 Xmiyux
Build G3 Akers

51) CanisFirebrand: Build B2 Erebus

52) xmiyux: Sacrifice G3 Xmiyux
Build G3 Xmiyux
Build R1 Xmiyux
Build R2 Valley

53) CanisFirebrand: Build Y1 Erebus

54) xmiyux: Move G3 Akers Canisfirebrand

55) CanisFirebrand: Sacrifice Y2 Erebus
Move B2 Erebus Canisfirebrand
Move B2 Erebus Canisfirebrand

56) xmiyux: Sacrifice R2 Valley
Attack Y2 Canisfirebrand
Attack B2 Canisfirebrand

57) CanisFirebrand: Move B3 Erebus Canisfirebrand

58) xmiyux: Sacrifice G3 Xmiyux
Build G3 Xmiyux
Build R2 Valley
Build R2 Valley
Catastrophe Canisfirebrand Blue



12934)
Started: 2009.2.18, Ended: 2009.3.17
Participants: slitt_vicious (S), xmiyux (N), CanisFirebrand (E)
Winner: slitt_vicious

1) xmiyux: Homeworld Y1 B2 G3

2) CanisFirebrand: Homeworld G3 B1 R3

3) slitt_vicious: Homeworld R3 B2 G3

4) xmiyux: Build G1 Xmiyux

5) CanisFirebrand: Build R1 Canisfirebrand

6) slitt_vicious: Build G1 Slitt_vicious

7) xmiyux: Trade G1 B1 Xmiyux

8) CanisFirebrand: Trade R1 G1 Canisfirebrand

9) slitt_vicious: Trade G3 R3 Slitt_vicious

10) xmiyux: Build B1 Xmiyux

11) CanisFirebrand: Build G1 Canisfirebrand

12) slitt_vicious: Build R1 Slitt_vicious

13) xmiyux: Discover B1 Xmiyux R3 Serenity

14) CanisFirebrand: Trade G1 Y1 Canisfirebrand

15) slitt_vicious: Trade R1 Y1 Slitt_vicious

16) xmiyux: Build G1 Xmiyux

17) CanisFirebrand: Build Y1 Canisfirebrand

18) slitt_vicious: Build Y2 Slitt_vicious

19) xmiyux: Build G1 Xmiyux

20) CanisFirebrand: Discover G1 Canisfirebrand B2 Inverness

21) slitt_vicious: Build G2 Slitt_vicious

22) xmiyux: Discover G1 Xmiyux Y3 Miranda

23) CanisFirebrand: Build G2 Inverness

24) slitt_vicious: Build G2 Slitt_vicious

25) xmiyux: Trade B1 R1 Xmiyux

26) CanisFirebrand: Move Y1 Canisfirebrand Inverness
	xmiyux: Careful Slitt, you have 3 green in your home system - if you end up with 4 (or if someone moves in a 4th) they could declare a catastrophe and all the green in that system would die.

27) slitt_vicious: Discover G2 Slitt_vicious B1 Poopy

28) xmiyux: Discover R1 Xmiyux G3 Akers
	slitt_vicious: fuck me.  This would be fun in person, but this website is just painful.

29) CanisFirebrand: Build Y2 Canisfirebrand

30) slitt_vicious: Move Y2 Slitt_vicious Poopy

31) xmiyux: Build R1 Akers

32) CanisFirebrand: Discover G1 Inverness B3 Erebus

33) slitt_vicious: Build Y2 Poopy

	CanisFirebrand:  I agree.. Unfortunetly I think continuing this game as a 2 player game won't work either since many pieces are out there. Probably best to quit the game and if slitt wants to learn still, challenge one of us to a  2 player game.


12877)
Variants: "Unrated, Hard time"
Started: 2009.3.1, Ended: 2009.3.19
Participants: acirruscloud (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld B2 R1 G3
	acirruscloud: homeworld g1 y2 y3

2) acirruscloud: Homeworld B3 G1 Y3
	acirruscloud: Hallo and good luck. This and one other game are my first on the site. Sort of messed up already.

3) MadWuher: Build G1 Madwuher
	MadWuher: not to worry. Feel free to ask any questions as we go along.

4) acirruscloud: Build Y1 Acirruscloud

5) MadWuher: Build G1 Madwuher

6) acirruscloud: Discover Y1 Acirruscloud B2 Onett

7) MadWuher: Trade G3 Y3 Madwuher

8) acirruscloud: Build Y1 Acirruscloud

9) MadWuher: Build G2 Madwuher

10) acirruscloud: Trade Y3 G3 Acirruscloud

11) MadWuher: Discover G2 Madwuher B3 Edora



12895)
Started: 2009.3.1, Ended: 2009.3.28
Participants: agentofchaos (S), acirruscloud (N)
Winner: agentofchaos

1) acirruscloud: Homeworld B2 G1 Y3
	acirruscloud: homeworld g1 b2 y3

2) agentofchaos: Homeworld R1 B3 G3
	agentofchaos: Hi, enjoy the game. 

3) acirruscloud: Build Y1 Acirruscloud
	acirruscloud: Hi, thanks. You too. This is my first time on SDG.

4) agentofchaos: Build G1 Agentofchaos

5) acirruscloud: Trade Y3 G3 Acirruscloud
	agentofchaos: I've been on here a couple of months. Homeworlds is my favourite game here. 

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) acirruscloud: Build G1 Acirruscloud

8) agentofchaos: Build G1 Agentofchaos

9) acirruscloud: Discover G1 Acirruscloud Y3 Porre

10) agentofchaos: Build G2 Agentofchaos

11) acirruscloud: Discover G1 Porre B2 Enhasa

12) agentofchaos: Trade G2 R2 Agentofchaos



12961)
Started: 2009.3.1, Ended: 2009.3.31
Participants: agentofchaos (S), wmreed (N)
Winner: wmreed

1) wmreed: Homeworld G2 B1 R3

2) agentofchaos: Homeworld R1 B3 G3
	wmreed: Hello!
	agentofchaos: Hello, enjoy the game!

3) wmreed: B R1 Wmreed

4) agentofchaos: Build G1 Agentofchaos
	wmreed: How long have you been playing Homeworlds?
	agentofchaos: I started playing it about 2 months ago. You?

5) wmreed: T R1 G1 Wmreed

6) agentofchaos: Trade G1 Y1 Agentofchaos
	wmreed: Longer. I get a game in every couple of months. 

7) wmreed: B R1 Wmreed

8) agentofchaos: Build Y1 Agentofchaos

9) wmreed: Build G1 Wmreed

10) agentofchaos: Trade Y1 R1 Agentofchaos

11) wmreed: Trade G1 Y1 Wmreed

12) agentofchaos: Build R2 Agentofchaos

13) wmreed: B R2 Wmreed

14) agentofchaos: Build Y1 Agentofchaos

15) wmreed: T R3 Y3 Wmreed

16) agentofchaos: Discover R2 Agentofchaos Y2 Eris

17) wmreed: Trade Y1 B1 Wmreed

18) agentofchaos: Build G1 Agentofchaos

19) wmreed: Build B1 Wmreed

20) agentofchaos: Move G1 Agentofchaos Eris

21) wmreed: Discover B1 Wmreed G3 Odin

22) agentofchaos: Build R2 Eris

23) wmreed: Build B2 Odin

24) agentofchaos: Build G1 Agentofchaos

25) wmreed: Build R3 Wmreed

26) agentofchaos: Discover Y1 Agentofchaos G2 Zurvan

27) wmreed: Move R3 Wmreed Odin

28) agentofchaos: Build R3 Eris

29) wmreed: Trade B2 Y2 Odin

30) agentofchaos: Discover R2 Eris Y3 Quasgar

31) wmreed: M Y3 Wmreed Quasgar

32) agentofchaos: Sacrifice G1 Agentofchaos
Build R3 Quasgar

33) wmreed: Sacrifice R1 Wmreed
Attack R3 Quasgar

34) agentofchaos: Move R3 Eris Quasgar

35) wmreed: Sacrifice R3 Quasgar
Attack R3 Quasgar
Attack R2 Quasgar
Pass

36) agentofchaos: Build Y1 Zurvan

37) wmreed: Move R3 Quasgar Zurvan

38) agentofchaos: Discover Y1 Zurvan Y3 Elysia

39) wmreed: Attack Y1 Zurvan

40) agentofchaos: Build G1 Agentofchaos

41) wmreed: Move Y3 Quasgar Wmreed

42) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Eris
Build R1 Eris
Build G3 Agentofchaos

43) wmreed: M R2 Quasgar Zurvan

44) agentofchaos: Discover R1 Agentofchaos Y2 Hades

45) wmreed: Build Y3 Zurvan

46) agentofchaos: Move G1 Agentofchaos Hades

47) wmreed: Move R3 Odin Eris

48) agentofchaos: Build R3 Eris
Catastrophe Eris R

49) wmreed: Move R3 Zurvan Odin


50) agentofchaos: Build G3 Agentofchaos

51) wmreed: M R3 Odin Eris

52) agentofchaos: Move G2 Eris Elysia

53) wmreed: Attack G1 Eris

54) agentofchaos: Sacrifice G3 Agentofchaos
Build R1 Hades
Build R2 Hades
Build G3 Agentofchaos

55) wmreed: M R3 Eris Elysia

56) agentofchaos: Move Y1 Agentofchaos Hades

57) wmreed: Attack G2 Elysia

58) agentofchaos: Discover Y1 Elysia B2 Morgoth

59) wmreed: Build R3 Zurvan

	wmreed: Here's something I can't remember: if I sacrifice the last ship in a system, to build for example, does that star become available in the pool to build right then?
	agentofchaos: Hi, I've been a bit busy last few days but didn't forget our game. 
I think sacrificing the last ship in a system would make the system marker available immediately. 

60) agentofchaos: Discover Y1 Hades B3 Skurve

61) wmreed: Sacrifice Y3 Zurvan
Move G2 Elysia Eris
Move G2 Eris Agentofchaos
Move G1 Eris Agentofchaos
Catastrophe Agentofchaos Green


	wmreed: I almost missed that.  Thank you for the game!
	agentofchaos: Good game, well played. 


13003)
Started: 2009.3.2, Ended: 2009.6.18
Participants: pedrop (S), Orl (N)
Winner: pedrop

1) Orl: Homeworld R2 B1 G3

2) pedrop: Homeworld B3 R1 G3
	Orl: hi

3) Orl: Build G1 Orl
	pedrop: Hi! Good luck:)
	Orl: thanks. This is my first game

4) pedrop: Build G1 Pedrop

5) Orl: Trade G1 R1 Orl
	pedrop: Those games I'm currently playing are my first too, so I'm not an experienced player either:) What is good - beacouse this match should be balanced, I think:)

6) pedrop: Trade G1 Y1 Pedrop

7) Orl: Build G1 Orl

8) pedrop: Build Y1 Pedrop

9) Orl: Trade G1 Y1 Orl

10) pedrop: Discover Y1 Pedrop G2 Ziemia

11) Orl: Build G1 Orl

12) pedrop: Build G1 Pedrop

13) Orl: Discover G1 Orl Y3 Nova

14) pedrop: Build Y2 Pedrop

15) Orl: Build Y2 Orl

16) pedrop: Build Y2 Pedrop

17) Orl: Move Y1 Orl Nova

18) pedrop: Trade Y1 R1 Pedrop

19) Orl: Build G1 Orl

20) pedrop: Discover G1 Pedrop B2 Niebo

21) Orl: Trade G1 B1 Orl

22) pedrop: Move Y2 Pedrop Niebo

23) Orl: Move R1 Orl Nova

24) pedrop: Move R1 Pedrop Niebo

25) Orl: Build R2 Nova

26) pedrop: Build Y1 Niebo

27) Orl: Build Y3 Nova

28) pedrop: Move Y1 Niebo Nova
Catastrophe Nova Y

29) Orl: Build Y1 Orl
	Orl: the Nova system has gone supernova...he he he

30) pedrop: Build R1 Niebo
	pedrop: Hehe:) Maybe You have predicted it the moment You gave the name to the star? ;)

31) Orl: Trade Y2 R2 Orl

32) pedrop: Trade R1 B1 Niebo
	Orl: nope. I didn't even knew how SDG tells the loss of a system...

33) Orl: Discover R2 Orl Y3 Nova2

34) pedrop: Build B2 Niebo

35) Orl: Build B2 Orl

36) pedrop: Discover B2 Niebo G3 Ogien

37) Orl: Move B2 Orl Ogien

38) pedrop: Build B3 Ogien

39) Orl: Build B3 Ogien
Catastrophe Ogien B

40) pedrop: Build R1 Niebo

41) Orl: Build B2 Orl

42) pedrop: Discover R1 Niebo G3 Ogien

43) Orl: Move B1 Orl Nova2

44) pedrop: Move B1 Niebo Ogien
	pedrop: Sorry, for delay:/
	Orl: No problem!

45) Orl: Build G1 Orl


46) pedrop: Build Y1 Ziemia

47) Orl: Move R2 Nova2 Ziemia

48) pedrop: Sacrifice G3 Pedrop
Build Y2 Niebo
Build Y3 Pedrop
Build Y3 Ziemia

49) Orl: Move G1 Orl Nova2

50) pedrop: Sacrifice R1 Niebo
Attack R2 Ziemia

51) Orl: Discover B1 Nova2 G2 Li

52) pedrop: Build G1 Niebo

53) Orl: Sacrifice G1 Nova2
Build Y3 Orl

54) pedrop: Move Y3 Ziemia Ogien

55) Orl: Discover B2 Orl G3 Esab

56) pedrop: Move G1 Niebo Pedrop

57) Orl: Build B2 Esab

58) pedrop: Build B3 Ogien

59) Orl: Build B3 Li

60) pedrop: Move B3 Ogien Ziemia

61) Orl: Sacrifice Y3 Orl
Move B3 Li Pedrop
Move B2 Esab Li
Move B2 Li Pedrop


62) pedrop: Build Y3 Pedrop

63) Orl: Attack Y3 Pedrop

64) pedrop: Sacrifice R2 Ziemia
Attack Y3 Pedrop
Attack B3 Pedrop

65) Orl: Move Y1 Orl Esab

66) pedrop: Move B3 Pedrop Ziemia

67) Orl: Move B2 Esab Li

68) pedrop: Attack B2 Pedrop

69) Orl: Move Y1 Esab Li

70) pedrop: Move Y3 Pedrop Li

71) Orl: Discover B2 Li G1 G1

72) pedrop: Build R1 Ogien

73) Orl: Move Y1 Li G1

74) pedrop: Build R2 Ogien

75) Orl: Trade B2 R2 G1

76) pedrop: Sacrifice Y3 Li
Move R2 Ogien Orl
Move R1 Ogien Orl
Move R1 Ogien Orl
Catastrophe Orl R

77) Orl: Move R2 G1 Niebo

78) pedrop: Sacrifice Y3 Pedrop
Move B1 Ogien Orl
Move B3 Ziemia Orl
Move B3 Ziemia Orl
Catastrophe Orl B

	pedrop: Thanks for the game.
	Orl: To you, too. I am way better with real pyramids... this way I can't concentrate.
	pedrop: I haven't play real piramides... so maybe thats the reson? :)


13047)
Variants: "Unrated"
Started: 2009.3.3, Ended: 2009.3.8
Participants: Ageless (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R3 G3

	agentofchaos: Hi, I hope you enjoy the game. I think it's fun. 
	Ageless: I am sure I will. But please, wait a few days for me to begin. I am not understanding the notation. Sorry.
	Ageless: Sorry, but i did not understando how to play. English is not my first language.


13040)
Started: 2009.3.3, Ended: 2009.4.22
Participants: pedrop (S), Mouce (N)
Winner: Mouce

1) Mouce: Homeworld Y1 B2 G3

2) pedrop: Homeworld B3 R1 G3

3) Mouce: Build G1 Mouce

4) pedrop: Build G1 Pedrop
	Mouce: Have a great game!

5) Mouce: Build G1 Mouce
	pedrop: The same to You!

6) pedrop: Trade G1 Y1 Pedrop

7) Mouce: Discover G1 Mouce B3 Skrich

8) pedrop: Build Y1 Pedrop

9) Mouce: Build G1 Mouce

10) pedrop: Build Y2 Pedrop

11) Mouce: Build G2 Skrich

12) pedrop: Build G2 Pedrop

13) Mouce: Trade G2 Y2 Skrich

14) pedrop: Discover Y1 Pedrop G2 Ziemia

15) Mouce: Trade G1 R1 Mouce

16) pedrop: Discover Y2 Pedrop G2 Niebo

17) Mouce: Discover G1 Skrich B2 Gnaw

18) pedrop: Sacrifice G3 Pedrop
Build Y2 Ziemia
Build Y3 Pedrop
Build Y3 Niebo

19) Mouce: Sacrifice G3 Mouce
Build G1 Gnaw
Build G3 Mouce
Build Y3 Skrich

20) pedrop: Build G3 Pedrop

21) Mouce: Sacrifice Y2 Skrich
Move Y3 Skrich Gnaw
Move G1 Gnaw Pedrop

22) pedrop: Trade G2 R2 Pedrop

23) Mouce: Sacrifice G3 Mouce
Build G2 Pedrop
Build G3 Gnaw
Build G3 Mouce

24) pedrop: Discover G3 Pedrop Y2 Ogien

25) Mouce: Trade G1 R1 Gnaw

26) pedrop: Build G1 Ogien

27) Mouce: Move R1 Gnaw Pedrop

28) pedrop: Move R2 Pedrop Ziemia

29) Mouce: Sacrifice G3 Mouce
Build R2 Pedrop
Build R2 Pedrop
Build G3 Mouce
Catastrophe Pedrop Red

30) pedrop: Trade Y1 B1 Pedrop

31) Mouce: Trade G2 B2 Pedrop

32) pedrop: Sacrifice R2 Ziemia
Attack B2 Pedrop
Attack G1 Pedrop

33) Mouce: Move G3 Gnaw Pedrop

34) pedrop: Sacrifice Y3 Pedrop
Move B1 Pedrop Mouce
Move B2 Pedrop Mouce
Move Y1 Ziemia Pedrop

35) Mouce: Trade G3 B3 Pedrop

36) pedrop: Sacrifice Y3 Niebo
Move G1 Pedrop Mouce
Move G1 Ogien Pedrop
Move G1 Pedrop Mouce
Catastrophe Mouce G
	Mouce: I'll wait for you awhile yet... I've been enjoying our game.

37) Mouce: Trade Y3 G3 Gnaw
	pedrop: Sorry, for delay - I have not much time nowdays:/ Thanks for waiting:) And I enjoy this game too. It is very interesting. And... before this game I didn't know that one can be agressive in Homewordls, like You(I mean Your strategy of course! ;). Thanks for that.

38) pedrop: Sacrifice G3 Ogien
Build B1 Mouce
Build Y1 Niebo
Build Y2 Ziemia
Catastrophe Mouce B

39) Mouce: Sacrifice G3 Gnaw
Build B1 Pedrop
Build B1 Pedrop
Build R1 Mouce
Catastrophe Pedrop Blue

	pedrop: Thanks for the game. It was realy interesting. Cheers.
	Mouce: What a wacky game (and ending!); I really enjoyed it! I'm glad that i could introduce to you a different play-style. This game has a surprising amount of depth (I feel that I am scratching the surface as yet), and seems to have been well-honed on this server. I hope we will play again in the near future!


13043)
Started: 2009.3.3, Ended: 2009.3.7
Participants: Mouce (S), MikeYarrum (N)
Winner: Mouce

	Mouce: Hi, enjoy the game!


13004)
Started: 2009.3.4, Ended: 2009.8.11
Participants: pedrop (S), Orl (W), agentofchaos (N), alexcobo (E)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B3 G3

2) alexcobo: Homeworld G3 B2 Y3
	agentofchaos: Hi everybody, thanks for playing. I hope you all enjoy the game. 

3) pedrop: Homeworld R1 B2 G3

4) Orl: Homeworld R2 B1 G3

5) agentofchaos: Build G1 Agentofchaos

6) alexcobo: Build Y1 Alexcobo

7) pedrop: Build G1 Pedrop

8) Orl: Build G1 Orl
	Orl: hi

9) agentofchaos: Build G1 Agentofchaos
	alexcobo: Hello. Good luck!
	agentofchaos: Thanks, you too!

10) alexcobo: Trade Y1 R1 Alexcobo

11) pedrop: Trade G1 Y1 Pedrop

12) Orl: Trade G1 Y1 Orl
	pedrop: Good luck to You all! :)

13) agentofchaos: Trade G1 Y1 Agentofchaos

14) alexcobo: Build Y1 Alexcobo

15) pedrop: Build G1 Pedrop

16) Orl: Build G1 Orl

17) agentofchaos: Build Y1 Agentofchaos

18) alexcobo: Build Y2 Alexcobo

19) pedrop: Build Y2 Pedrop

20) Orl: Trade G1 B1 Orl

21) agentofchaos: Build G1 Agentofchaos

22) alexcobo: Trade Y1 G1 Alexcobo

23) pedrop: Discover Y2 Pedrop G3 Ziemia

24) Orl: Move B1 Orl Ziemia

25) agentofchaos: Discover G1 Agentofchaos Y2 Skurj

26) alexcobo: Discover G1 Alexcobo G1 Venia

27) pedrop: Trade G1 R1 Pedrop

28) Orl: Build B1 Ziemia

29) agentofchaos: Discover Y1 Agentofchaos B2 Morgoth

30) alexcobo: Build R1 Alexcobo

31) pedrop: Move R1 Pedrop Ziemia

32) Orl: Build G1 Orl
	Orl: a question: are we playing with the sinister homeworlds variant? I can't see nothing that states my alignment...

33) agentofchaos: Build G2 Skurj
	pedrop: :) Not so long ago, I was asking for the same thing:) AFAIK the sinister variant is about that, who first beat oponent on his left - is the winner of whole game(and he doesn't have to beat others to be the winner). So I presume You are asking about standard Homeworlds rules, where there are good-evil designatons. This is not implemented on SDG. The standard rules(and those we are playing in this game) have one-man-standing winning condition.
	pedrop: There should be:
"(...)The default rules on SDG(and those we are(...)"
Couse those are not the standard rules for board game, I think.
	Orl: Ok, understood, thanks! But I think it would be very nice if SDG implemented standard rules.

34) alexcobo: Trade R1 B1 Alexcobo

35) pedrop: Build G2 Pedrop

36) Orl: Build G2 Orl

37) agentofchaos: Sacrifice G2 Skurj
Build Y1 Agentofchaos
Build Y2 Morgoth

38) alexcobo: Sacrifice Y2 Alexcobo
Move G1 Venia Ziemia
Move G1 Ziemia Orl
Catastrophe Orl G

39) pedrop: Attack B1W Ziemia
	pedrop: Sorry, but I had to call an admin, couse I could'n attack b1 in Ziemia. I got the "The ship B1 could not be found in the Ziemia system." message.
	alexcobo: Try this, pedrop: "attack b1w Ziemia".
You have to declare the position of the player you are attacking.
	Aaron: aye

40) Orl: Trade Y1 G1 Orl
	pedrop: Yes, You were right:/ I didn't read this notice, about 3+ Homeworlds games:/ Realy sorry for delay and making problems for Aron:/
	Aaron: np at all

41) agentofchaos: Trade Y1 R1 Morgoth

42) alexcobo: Build R2 Alexcobo

43) pedrop: Discover G2 Pedrop Y3 Niebo

44) Orl: Build G1 Orl

45) agentofchaos: Move G1 Agentofchaos Morgoth

46) alexcobo: Build Y1 Alexcobo

47) pedrop: Build R2 Ziemia

48) Orl: Trade G1 Y1 Orl

49) agentofchaos: Build R2 Morgoth

50) alexcobo: Discover B1 Alexcobo G1 Inga

51) pedrop: Move R2 Ziemia Skurj

52) Orl: Build Y2 Orl

53) agentofchaos: Discover G1 Skurj Y3 Orcus

54) alexcobo: Trade R1 B1 Alexcobo

55) pedrop: Build Y2 Ziemia

56) Orl: Discover Y1 Orl G3 Glomi

57) agentofchaos: Build Y3 Morgoth

58) alexcobo: Build B2 Inga

59) pedrop: Build Y3 Pedrop

60) Orl: Build G1 Orl

61) agentofchaos: Build G2 Orcus

62) alexcobo: Trade B2 G2 Inga

63) pedrop: Build G2 Pedrop

64) Orl: Move G1 Orl Glomi

65) agentofchaos: Build G2 Morgoth

66) alexcobo: Build B2 Inga

67) pedrop: Move B1 Ziemia Skurj

68) Orl: Move G1 Glomi Orl

69) agentofchaos: Move R1 Morgoth Orcus

70) alexcobo: Trade B1 R1 Inga

71) pedrop: Attack B1W Ziemia

72) Orl: Trade G1 B1 Orl


73) agentofchaos: Sacrifice G2 Orcus
Build R2 Morgoth
Build R3 Orcus

74) alexcobo: Build R3 Alexcobo

75) pedrop: Sacrifice G2 Pedrop
Build R3 Skurj
Build R3 Ziemia

76) Orl: Move B1 Orl Glomi


77) agentofchaos: Build G1 Agentofchaos

78) alexcobo: Build R3 Inga

79) pedrop: Build G2 Pedrop

80) Orl: Build G2 Orl

81) agentofchaos: Move R3 Orcus Orl

82) alexcobo: Move Y3 Alexcobo Inga

83) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build B2 Skurj
Build B3 Ziemia

84) Orl: Build B3 Glomi

85) agentofchaos: Attack Y2W Orl

86) alexcobo: Build B3 Inga

87) pedrop: Discover Y3 Pedrop B3 Nowy

88) Orl: Move B3 Glomi Inga

89) agentofchaos: Sacrifice Y2 Morgoth
Move G1 Morgoth Inga
Move G1 Orcus Inga
Catastrophe Inga G

90) alexcobo: Build Y2 Alexcobo

91) pedrop: Build Y3 Pedrop

92) Orl: Build G1 Orl

93) agentofchaos: Attack G2W Orl

94) alexcobo: Trade R2 G2 Alexcobo

95) pedrop: Discover R3 Ziemia G1 Ogien

96) Orl: Move B1 Glomi Orl

97) agentofchaos: Move G2 Orl Orcus

98) alexcobo: Discover Y2 Alexcobo G1 G1

99) pedrop: Move B1 Skurj Niebo

100) Orl: Move Y1 Glomi Orl

101) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Orcus
Build R1 Orcus
Build G3 Agentofchaos

102) alexcobo: Build R2 Alexcobo

103) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build B2 Skurj
Build B3 Niebo



13036)
Variants: "Unrated, Hard time"
Started: 2009.3.8, Ended: 2009.4.8
Participants: a_magical_me (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B3 G3

2) a_magical_me: Homeworld G3 B2 Y3
	a_magical_me: Hi.

3) MadWuher: Build G1 Madwuher

4) a_magical_me: Build Y1 A_magical_me
	MadWuher: Hi there. Hope you enjoy the game. If you have any questions, feel free to ask.

5) MadWuher: Trade G1 Y1 Madwuher
	a_magical_me: Sure. I've played a couple games, but don't really grok it yet. We'll see what happens.

6) a_magical_me: Trade Y1 B1 A_magical_me

7) MadWuher: Build G1 Madwuher

8) a_magical_me: Build B1 A_magical_me

9) MadWuher: Build G1 Madwuher

10) a_magical_me: Discover B1 A_magical_me G1 Goo

11) MadWuher: Discover G1 Madwuher Y2 Edora

12) a_magical_me: Build B1 Goo

13) MadWuher: Build G2 Edora

14) a_magical_me: Build B2 Goo

15) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G2 Edora
Build G3 Madwuher



13057)
Started: 2009.3.9, Ended: 2009.3.12
Participants: MikeYarrum (S), Skotte (N)
Winner: Skotte

1) Skotte: Homeworld G1 Y3 R3 *



13087)
Started: 2009.3.11, Ended: 2009.4.29
Participants: MikeYarrum (S), dethdukk (N)
Winner: dethdukk

1) dethdukk: Homeworld B2 Y1 G3
	dethdukk: I assume this is were I talk to you in?

	dethdukk: Just so you know, this is my first game on this system, give me some time to get used to it, I may have to ask a few questions.



12913)
Started: 2009.3.11, Ended: 2009.3.15
Participants: dethdukk (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy

2) dethdukk: Homeworld B2 Y1 G3

3) TwoShort: Build G1 Twoshort
	dethdukk: evening.  This is my first game using this system (SDG that is) and my first homeworlds game against anyone outside of my immediate friends group.  any suggestions or corrections at the end of the game would be appreciated

4) dethdukk: Build G1 Dethdukk
	TwoShort: Sure.  My typical approach with new players is to give them advice a little too late to actually help :) Only semi-intentionally though.  It's hard to know what advice to give in advance, and no fun just telling people what to do in any case.

5) TwoShort: Trade G1 Y1 Twoshort
	TwoShort: "evening"?  you must be in a different time zone than me :)

6) dethdukk: Build G1 Dethdukk
	dethdukk: I agree wholeheartedly.  As I said, END of the game.  I like to make my mistakes and learn from them, it helps imprint the lesson better.  In any case, I think I understand most of the basis, its the details that'll get me.

7) TwoShort: Build Y1 Twoshort
	dethdukk: I should have said "morning" or perhaps "afternoon".  I tend to greet peaple with evening no matter the time of day.  I am in the mountains.

8) dethdukk: Discover G1 Dethdukk B3 Lauch
	TwoShort: I don't always remember the advice at the end of the game, which is why I figure "too late to help" is equivalent.. for example, be careful about letting your opponent get the last 1 point of a color you don't have before you have any 2 pointers...

	TwoShort: Where in the mountains? (he wonders from Boulder, CO)
	dethdukk: Denver actually.  (gasps in astonishment as he realizes what just happened)

9) TwoShort: Build Y2 Twoshort

10) dethdukk: Build G1 Lauch

11) TwoShort: Discover Y1 Twoshort G2 Grogar

12) dethdukk: Sacrifice G3 Dethdukk
Build G2 Lauch
Build G2 Dethdukk
Build G3 Dethdukk

13) TwoShort: Build G3 Twoshort
	dethdukk: there, that worked out pretty well...  not to get my number of greens down.  Thanks again for playing.  I understand that you are a rather high-level player, hopefully playing against a completely new person isnt too annoying :P
	dethdukk: hm... is there a way to get the past turns, or perhaps review the game as a whole?  I can save the pictures from here on out, but it would be nice to get the first few turns.
	dethdukk: for review.  I want the past turns so I can review how the game went.

14) dethdukk: Trade G2 Y2 Lauch
	TwoShort: You can step through past games once they are over by going to the homepage -> games history-> pick the specific game.

15) TwoShort: Discover G3 Twoshort B2 Bluebird
	dethdukk: thanks
	TwoShort: Oh, and as far as playing new players, I don't mind at all.  When people have no idea what they are doing it can be a little annoying because I don't always have time for a good tutorial, and I feel guilty just crushing them.  But using a factory to escape my yellow lock means you're well beyond that.

16) dethdukk: Trade G2 R2 Dethdukk
	dethdukk: So what you are saying is that you wont feel guilty after crushing me?  Oh, and I dont think you will get a bluebird on me.  Unless I have somehow mis-judged my position...

17) TwoShort: Build G2 Twoshort
	TwoShort: I tend to name systems by free association; I was vaguely worried you'd leave yourself open to a bluebird right after I said how well you were doing.  In any case, if I manage to crush you, I won't feel guilty at all :)

18) dethdukk: Build Y2 Lauch

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluebird
Build G3 Twoshort
Build Y3 Grogar
	dethdukk: well I will try to give you a run for your money.  I think I can do some damage, but I think you may have me because of your 2 builder ships.

20) dethdukk: Sacrifice Y2 Lauch
Move G1 Lauch Bluebird
Move G1 Lauch Bluebird
Catastrophe Bluebird G

21) TwoShort: Discover Y1 Twoshort B2 Blitz

22) dethdukk: Move Y2 Lauch Grogar

23) TwoShort: Discover Y3 Grogar B3 Bonanza

24) dethdukk: Discover G1 Dethdukk B3 Colony

25) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bonanza
Build Y3 Twoshort
Build Y3 Blitz

26) dethdukk: Build G1 Dethdukk

27) TwoShort: Trade Y3 G3 Bonanza

28) dethdukk: Discover G1 Dethdukk Y3 Standing

29) TwoShort: Build G1 Twoshort

30) dethdukk: Build G2 Standing
	dethdukk: so the point of the game is not neccesarily to kill off the other player in one stroke, but rather to cut them down slowly by gaining control of the ship stash.  which would mean that green is extremely important, yellow ia second most important, and perhaps even most important, red is helpfun but not needed except perhaps as surgical stikes, meant to cut someone out or a color, and blue is used almost exclusively for systems.
	dethdukk: yellow is second*, red is helpful*, any others I missed

31) TwoShort: Trade G2 R2 Twoshort
	TwoShort: 3 pointers are the most important :) But yes, barring any big blunders, you win by buildign enough of a ship advantage that the exact mechanics of finishing the guy off become academic.

Green is essential early, and devastating if you can get the only factory ( a g3 you can sac to build 2 ships and itself right back).

Yellow has the biggest ability to transform the board; getting most of the big ones will be a big advantage.

Blue is sometimes mostly systems like in this game, but there's a great strategy if you can get a complete monopoly (you can continually flip a b3 to something else and regrow it).

I've only once had a red monopoly.  Generally, you want an r2 (or 3, but a 2 is about as good) you can sacrifice somewhere, and "the gun rule" says you should take a red somewhere as soon as your opponent does.  This is excellent advice, even though I'm currently ignoring it :)

32) dethdukk: Move Y2 Grogar Colony
	dethdukk: I have been reading a bit...  you believe that a small/large homeworld is better than a small/medium homeworld correct?  Is this simply because you can explore mediums, and thus get to larges faster, or some other reason?  Also, red seems to be the starting color of choice over yellow nowadays.  I assume that that is simply because you can get a greater benifit out of a red system later on, where a yellow system looses its usefulness so long as you have even a single yellow ship.

33) TwoShort: Move Y3 Blitz Colony

34) dethdukk: Sacrifice Y2 Colony
Discover G1 Colony Y2 Point
Move R2 Dethdukk Bonanza
	TwoShort: As far as goldilocks (1-3) vs. banker (1-2), I've probably changed my mind a half dozen times since I wrote that.  Today I think they are about comparable.  Both are better than Fortress (2-3). Certain good players (named Andy Looney) strongly prefer banker, and crush me with it. 
  I like the red-blue homeworld best, mostly because you can grow more green and yellow ships without getting close to a catastrophe.  The red is nice defensively, but that's secondary.

35) TwoShort: Sacrifice R2 Twoshort
Attack R2 Bonanza
Pass

36) dethdukk: Build G2 Dethdukk
	dethdukk: thanks again for your help.  I have 3 more questions, all of them unrelated to this game:  Are you planning on going to origins?  do you play icehouse at all?  and would you play another homeworlds game against me after this one?

37) TwoShort: Move G3 Bonanza Dethdukk
	TwoShort: - I'm not going to Origins (young children, limited budget, other commitments).
- Back in the day (1992) I played vast amounts of Icehouse and was part of the team that won the fourth tournament.  I haven't played it much in years though.
 - I'm always happy to play more homeworlds.  I am going on vacation without net access the week after next, so if you start another game before then you'll wind up waiting a week for my next move at some point.


38) dethdukk: Trade G2 R2 Dethdukk

39) TwoShort: Sacrifice R2 Bonanza
Attack G3 Dethdukk
Attack R2 Dethdukk

	dethdukk: good game.  I think you had me no matter what I did that turn.  I will send you a challange, accept it when you wish.  Thanks againfor the game/suggestions.


12896)
Started: 2009.3.11, Ended: 2009.6.11
Participants: nilesenator (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R2 B3 G3

2) nilesenator: Homeworld G3 B1 R3
	MadWuher: sorry for not being online sooner. hope you enjoy the game.
	nilesenator: No problem! Thanks for playing

3) MadWuher: Build G1 Madwuher

4) nilesenator: Build R1 Nilesenator

5) MadWuher: Trade G1 Y1 Madwuher

6) nilesenator: Trade R1 Y1 Nilesenator

7) MadWuher: Build G1 Madwuher

8) nilesenator: Build R1 Nilesenator

9) MadWuher: Build G1 Madwuher

10) nilesenator: Trade R1 G1 Nilesenator

11) MadWuher: Discover G1 Madwuher B1 Bologna

12) nilesenator: Build Y1 Nilesenator

13) MadWuher: Build Y2 Madwuher

14) nilesenator: Build R1 Nilesenator

15) MadWuher: Build G2 Bologna

16) nilesenator: Discover R1 Nilesenator G2 Emptyspace

17) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G3 Madwuher
Build G3 Bologna



12951)
Started: 2009.3.29, Ended: 2009.4.7
Participants: ts52 (S), pam (N)
Winner: ts52

1) pam: Homeworld Y1 B2 G3
	ts52: Have a good game! Hey, two different games with you at once. Should be fun!
	pam: how do i make a move on this game?sorry,i thought i was going to be an observer!

2) ts52: Homeworld B1 Y3 G3
	ts52: No problem, first you need to create a homeworld. You only do this once, at the beginning of the game, with the homeworld command. A standard opening is 'homeworld y1 b2 g3' which gives you a homeworld with small yellow and medium blue stars with a large green ship.

3) pam: Build G1 Pam
	pam: thanks!

4) ts52: Build G1 Ts52
	pam: now what?

5) pam: Build G1 Pam
	pam: 
	ts52: That's good.

6) ts52: Discover G1 Ts52 B2 Grover
	ts52: Now you can discover a new star, build another green ship, or trade one of your green ships for another color.

	pam: i'm sorry,maybe i can play this later after i watch some games
	ts52: No problem. It's a game probably best learned in person. I'm probably not the best teacher, but if you'd like to challenge me to an unrated game, any time, I'd be happy to try to answer any questions. My only problem with SDG is you can't tell the system to notify you of new messages in a game.


13194)
Variants: "Hard time"
Started: 2009.3.30, Ended: 2009.4.21
Participants: fnord (S), jeep (N)
Winner: jeep

1) jeep: Homeworld R1 B2 G3

2) fnord: Homeworld Y3 B1 G3
	jeep: Have a good game!

3) jeep: Build G1 Jeep

4) fnord: Build G1 Fnord
	fnord: Thanks, hope you do too!

5) jeep: Trade G1 Y1 Jeep

6) fnord: Discover G1 Fnord B2 Discordia

7) jeep: Build Y1 Jeep

8) fnord: Build G1 Fnord

9) jeep: Build Y1 Jeep

10) fnord: Build G1 Fnord

11) jeep: Discover Y1 Jeep G3 Thumb

12) fnord: Build G2 Discordia

13) jeep: Build G2 Jeep

14) fnord: Trade G2 Y2 Discordia

15) jeep: Sacrifice G3 Jeep
Build Y2 Thumb
Build Y2 Thumb
Build Y3 Jeep

16) fnord: Move Y2 Discordia Thumb
Catastrophe Thumb Yellow

17) jeep: Sacrifice Y3 Jeep
Discover G2 Jeep Y3 Temp
Move G2 Temp Discordia
Move G2 Discordia Fnord
Catastrophe Fnord Green

	jeep: Thanks for the game.


13060)
Variants: "Unrated, Hard time"
Started: 2009.3.31, Ended: 2009.4.18
Participants: Mouce (S), agentofchaos (N)
Winner: Mouce

1) agentofchaos: Homeworld R1 B2 G3

2) Mouce: Homeworld B1 R3 G3
	agentofchaos: Hi there, enjoy the game. 

3) agentofchaos: Build G1 Agentofchaos

4) Mouce: Build G1 Mouce

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Mouce: Build G1 Mouce

7) agentofchaos: Build Y1 Agentofchaos

8) Mouce: Trade G1 Y1 Mouce

9) agentofchaos: Build Y2 Agentofchaos

10) Mouce: Build Y2 Mouce

11) agentofchaos: Trade Y2 G2 Agentofchaos

12) Mouce: Build Y2 Mouce

13) agentofchaos: Build Y2 Agentofchaos

14) Mouce: Discover Y2 Mouce B2 Nest

15) agentofchaos: Discover Y1 Agentofchaos G3 Freakout

16) Mouce: Sacrifice G1 Mouce
Build Y3 Nest

17) agentofchaos: Build Y3 Freakout

18) Mouce: Trade Y2 G2 Nest

19) agentofchaos: Trade Y1 B1 Agentofchaos

20) Mouce: Build G1 Nest

21) agentofchaos: Build Y1 Agentofchaos

22) Mouce: Move G1 Nest Freakout

23) agentofchaos: Discover Y3 Freakout B2 Glurge

24) Mouce: Sacrifice G2 Nest
Build Y2 Mouce
Build Y3 Nest

25) agentofchaos: Move Y3 Glurge Mouce
Catastrophe Mouce Y

26) Mouce: Build G1 Mouce

27) agentofchaos: Discover G2 Agentofchaos Y3 Midas

28) Mouce: Trade G1 Y1 Mouce

29) agentofchaos: Trade Y1 R1 Agentofchaos

30) Mouce: Build G1 Mouce

31) agentofchaos: Sacrifice R1 Agentofchaos
Attack G1 Freakout

32) Mouce: Move G1 Mouce Nest

33) agentofchaos: Move B1 Agentofchaos Midas

34) Mouce: Discover Y3 Nest B3 Droppings

35) agentofchaos: Build Y1 Agentofchaos

36) Mouce: Move G1 Nest Droppings

37) agentofchaos: Build Y2 Freakout

38) Mouce: Build Y2 Mouce

39) agentofchaos: Build G1 Agentofchaos

40) Mouce: Build G2 Droppings

41) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Midas
Build B1 Midas
Build G3 Agentofchaos

42) Mouce: Sacrifice Y3 Nest
Move Y3 Droppings Agentofchaos
Move G1 Droppings Agentofchaos
Move G2 Droppings Agentofchaos
Catastrophe Agentofchaos Green

	agentofchaos: well played
	Mouce: thanks for the game, i'm glad we have another going! this game is pretty amazing. it's a bit like abstract wrestling 


12843)
Started: 2009.4.1, Ended: 2009.4.14
Participants: gregcrowe (S), Trollkin (W), soapdog (N), agentofchaos (E)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B3 G3

	agentofchaos: Three people sign up and no-one's playing, what a disappointment!!


13205)
Variants: "Unrated"
Started: 2009.4.1, Ended: 2009.4.8
Participants: TwoShort (S), jeep (N)
Winner: TwoShort

1) jeep: Homeworld R1 B2 G3

2) TwoShort: Homeworld R1 B3 G3
	jeep: pass first build
	jeep: Heh, that was supposed to be a note.  I think that your flip to red strategy can be worse.   You can actually take a R3 ship, grow, then flip the large on turn 2.  Not sure it is any different than your way, but it sure feels worse to be locked out first turn.
	TwoShort: I need green and blue, so if I take the red ship, I have need to grow twice to get both 1s, so it's the same.

3) jeep: Pass
	TwoShort: For maximum pain, I probably should have made a small universe...

4) TwoShort: Build G1 Twoshort

5) jeep: Build G1 Jeep

6) TwoShort: Trade G1 R1 Twoshort
	jeep: Wow, we have a lot of spectators.

7) jeep: Trade G1 Y1 Jeep
	TwoShort: Oh, that's just my adoring fans; they follow me everywhere :)  Actually, I don't think any of them are there.  Once you start "watching" a player, it takes an actual action to stop, so if they don't come back to the site, their ghost haunts me forever.  Notably, only a couple of the names do I even vaguely remember as someone I might have played once.  Also I periodically say "Hey, spectators, if you're really there PM me!" and they never do.

8) TwoShort: Build R2 Twoshort

9) jeep: Build G1 Jeep
	jeep: Wow... I don't even know how I'm going to deal with this.  ;)

10) TwoShort: Trade R2 Y2 Twoshort
	jeep: I'm now a man with a plan.

11) jeep: Trade G3 R3 Jeep
	jeep: Yeah, small universe would be tough here.

12) TwoShort: Discover R1 Twoshort G2 Noescape
	TwoShort: So this will get you out if I don't do something extreme, but knowing I was going to play this way, would you still play Banker, or would you go to fortress to avoid it?
	jeep: Fortress is better in this case.
	TwoShort: Well in any case, time to try something extreme :)


13) jeep: Build G1 Jeep
	jeep: How is that extreme?  Pretty rough on me, though.  Have to think a little more than the 5 min while compiling.

14) TwoShort: Build R2 Noescape

15) jeep: Discover G1 Jeep R3 Onlyhope
	TwoShort:  I was thinking the straight forward thing for me to do there was to build the r2 before moving out which would let you build an r2 and break the monopoly, and we'd emerge from the early game with me at a clear advantage, but the game still in play.  This is the first step of a more extreme plan, which if it doesn't work, I'll be in a tough spot.  But I think now it will work, and you'll be inescapably doomed :) 
	jeep: Yep, the switch to red was bad.

16) TwoShort: Build R2 Noescape

17) jeep: Trade R3 G3 Jeep

18) TwoShort: Sacrifice Y2 Twoshort
Move R2 Noescape Onlyhope
Move R1 Noescape Twoshort
	jeep: Okay, I want overs after this game.  ;)  

19) jeep: Sacrifice G1 Onlyhope
Build Y1 Jeep

20) TwoShort: Build G1 Twoshort

21) jeep: Discover Y1 Jeep R3 Reserve

22) TwoShort: Sacrifice G3 Twoshort
Build R2 Noescape
Build R3 Twoshort
Build G1 Twoshort

23) jeep: Build G2 Jeep

24) TwoShort: Trade R3 G3 Twoshort

25) jeep: Trade G3 R3 Jeep

26) TwoShort: Trade G1 Y1 Twoshort

27) jeep: Discover G1 Jeep Y3 Mover

28) TwoShort: Build Y2 Twoshort

29) jeep: Trade R3 G3 Jeep

30) TwoShort: Build R3 Noescape

31) jeep: Sacrifice G2 Jeep
Build Y2 Jeep
Build Y2 Reserve
	jeep: Too much flipping in my homeworld.  Bleh.

32) TwoShort: Sacrifice Y2 Twoshort
Discover R2 Onlyhope B2 Bluestar
Move R3 Noescape Reserve

33) jeep: Sacrifice Y1 Reserve
Discover Y2 Reserve B2 Stage

34) TwoShort: Build R3 Twoshort

35) jeep: Discover Y1 Jeep Y3 Shaker

36) TwoShort: Trade R3 Y3 Twoshort

37) jeep: Build Y1 Jeep

38) TwoShort: Sacrifice G1 Twoshort
Build R3 Reserve

39) jeep: Sacrifice G1 Mover
Build Y2 Stage

40) TwoShort: Sacrifice Y3 Twoshort
Move R2 Noescape Reserve
Move R3 Reserve Jeep
Move R3 Reserve Jeep
	TwoShort: I've been pretty sure you were stuck since move 1, but it has certainly taken a long while to work that around into actual victory.  Quite the valiant fight!



13240)
Variants: "Hard time"
Started: 2009.4.6, Ended: 2009.4.16
Participants: Subhan64 (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3
	agentofchaos: Hi, enjoy the game. 

2) Subhan64: Homeworld G3 B2 Y3

3) agentofchaos: Build G1 Agentofchaos

4) Subhan64: Build Y1 Subhan64

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Subhan64: Discover Y1 Subhan64 R1 Omecronpersei8

7) agentofchaos: Build G1 Agentofchaos

8) Subhan64: Build Y1 Subhan64

9) agentofchaos: Build Y2 Agentofchaos

10) Subhan64: Build Y2 Subhan64

11) agentofchaos: Build G1 Agentofchaos

12) Subhan64: Trade Y2 G2 Subhan64

13) agentofchaos: Discover Y2 Agentofchaos G3 Seti

14) Subhan64: Sacrifice Y3 Subhan64
Move G2 Subhan64 Omecronpersei8
Move G2 Omecronpersei8 Seti
Move G2 Seti Agentofchaos
Catastrophe Agentofchaos Green

15) agentofchaos: Build Y2 Seti

16) Subhan64: Trade Y1 G1 Subhan64

17) agentofchaos: Sacrifice Y2 Seti
Move Y2 Seti Omecronpersei8
Move Y2 Omecronpersei8 Subhan64

18) Subhan64: Build G1 Subhan64

19) agentofchaos: Trade Y2 G2 Subhan64
Catastrophe Subhan64 G

	Subhan64: GG, thanks!  Totally spaced on your being able to use the star tech in my home system!
	agentofchaos: I didn't really understand that I could use another player's tech in their home system, until someone did it to me once - quite a learning experience! Thanks for the game :-)


13080)
Variants: "Unrated, Hard time"
Started: 2009.4.6, Ended: 2009.6.27
Participants: efwin (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld Y1 B3 G3
	efwin: Hi -- I'm trying this one for the first time, so any advice is appreciated
	MadWuher: I'll do my best. Have you read up on the rules and how the colours work?

2) efwin: Homeworld G3 B2 Y3

3) MadWuher: Build G1 Madwuher
	efwin: I've read the rules and think I've understood them enough to give the game a try (we'll see how well soon enough, I imagine)

4) efwin: Build Y1 Efwin

5) MadWuher: Build G1 Madwuher

6) efwin: Build Y1 Efwin

7) MadWuher: Discover G1 Madwuher B2 Edora

8) efwin: Trade Y1 B1 Efwin

9) MadWuher: Trade G1 Y1 Edora
	efwin: Oops -- set up a catastrophe situation....  Need to do something different than that, or it will be a very short game

10) efwin: Build Y2 Efwin

11) MadWuher: Move G1 Madwuher Edora
	MadWuher: Good catch. It just gives me an opportunity to get into the yellow.

12) efwin: Discover B1 Efwin G1 Enoneergtod
	efwin: Perhaps I should venture forth soon...

13) MadWuher: Build Y2 Edora
	MadWuher: If there was any way I could get to your homeworld with my yellow, I would. =) Too bad you're going to start moving out of there shortly.

14) efwin: Move Y1 Efwin Enoneergtod
	efwin: I better do something about my yellow situation next turn....

15) MadWuher: Build G1 Madwuher

16) efwin: Build Y2 Enoneergtod

17) MadWuher: Discover Y1 Edora B1 Bologna

18) efwin: Trade Y2 G2 Enoneergtod

19) MadWuher: Build G2 Edora

20) efwin: Build Y2 Enoneergtod

21) MadWuher: Sacrifice G2 Edora
Build Y3 Edora
Build Y3 Bologna

22) efwin: Trade Y2 G2 Efwin

23) MadWuher: Trade G1 R1 Madwuher

24) efwin: Discover G2 Enoneergtod Y2 Owtwolleytod
	efwin: Defense seemed like the prudent choice

25) MadWuher: Build G1 Madwuher

26) efwin: Build G2 Owtwolleytod

27) MadWuher: Build G3 Edora

28) efwin: Trade Y1 R1 Enoneergtod

29) MadWuher: Trade G3 R3 Edora

30) efwin: Move B1 Enoneergtod Owtwolleytod
	efwin: Strategy question -- I see that I could have sacrificed one of my yellow ships and moved greens to your homeworld or yellows to Bolonga to cause a catastrophe -- but it seemed like I would have had to have spent too many resources for what would have been a more or less even tradeoff of the ships -- am I thinking about that right?  Do you typically only catastrophe if you hurt the opponent more than yourself? 
	MadWuher: Right. Typically only cause catastrophes if you will end up ahead in the numbers game, or you take out more points of ships than you are losing. Right now, I could cause you to lose your 2 green 2's by losing only 4 points of ships (sac a y2 and move my g1's into owtwolleytod (DotYellowTwo??? interesting naming habit)) I'm just looking to see if there are any other options available for me. 

31) MadWuher: Build G3 Edora

32) efwin: Trade G2 R2 Owtwolleytod
	efwin: OK, thanks for confirming that -- Not sure if I'll stick with the naming thing - when I had to name the first one, I thought "one green dot" and then just flipped each word -- but I guess "green one dot" or "one dot green" are really more accurate so maybe I'll have to switch things around the next game...
	MadWuher: Oh-oh. You might want to take that move back.......


	efwin: Thanks -- I only counted two green ships and thought I was safe (still learning)

33) MadWuher: Discover G3 Edora Y1 Camelot

34) efwin: Build G2 Owtwolleytod

35) MadWuher: Move G1 Madwuher Edora

36) efwin: Build R1 Enoneergtod

37) MadWuher: Build R2 Madwuher

38) efwin: Build R2 Owtwolleytod

39) MadWuher: Discover R2 Madwuher B2 Dualla

40) efwin: Discover G2 Owtwolleytod R3 Eerhtdertod

41) MadWuher: Sacrifice G1 Edora
Build R3 Dualla
	efwin: I'm thinking that the fact that you have five size 3 ships and I have one, is not so good for me

42) efwin: Sacrifice Y2 Enoneergtod
Move R1 Enoneergtod Dualla
Move R1 Enoneergtod Dualla
Catastrophe Dualla R

43) MadWuher: Build Y2 Edora

44) efwin: Discover R2 Owtwolleytod G1 Enoneergtod

45) MadWuher: Move Y3 Edora Enoneergtod

46) efwin: Build R1 Owtwolleytod

47) MadWuher: Sacrifice R1 Madwuher
Attack R2 Enoneergtod
	efwin: Sacrifice question (v. hypothetical - I'm not planning anything) -- if you sacrifice a red ship, do you affect only ships up to the size of the sacrificed red ship in the other star systems, or can you affect a ship up to the largest size of a ship you have in that star system -- for example, I foolishly move my Y3 to Bologna, can you sacrifice your R1 @ MadWuher and attack my Y3 with your Y3 there, or not?
	MadWuher: Here are some options:
If you move an R3 into MadWuher I can attack it without sacrificing my r1 there. I have access to the technology at my homeworld so I can use it. 
If instead you get your y3 to Camelot then I cannot attack your y3 without a sacrifice because I do not have access to red at that system. By sacrificing any size red at any system I can use the red power (attacking) at any system. If I sacrifice a sized 2 red ship, then I can make two attacks (each at different systems if I'd like). If I sacrifice a sized 2 ship, and I only wanted one attack action, then I type pass as my second attack action.

Does this make sense??

48) efwin: Build G1 Owtwolleytod

49) MadWuher: Move R3 Edora Madwuher
	efwin: OK, thanks -- that makes sense.  I think I was confused by the red having the size comparison aspect...  and I wasn't considering that access to technology = ability to use that technology with any ship in the system

50) efwin: Build B1 Owtwolleytod

51) MadWuher: Move Y3 Bologna Owtwolleytod
	efwin: Nice demonstration!

52) efwin: Move R2 Owtwolleytod Bologna
	MadWuher: Always glad to show a bit of finesse, if I get the chance. =D

53) MadWuher: Sacrifice Y1 Bologna
Discover G1 Edora Y1 Darfur
	efwin: Lack of yellow is going to be problematic for implementing any kind of galaxy-wide plans

54) efwin: Move B1 Owtwolleytod Bologna

55) MadWuher: Sacrifice R2 Enoneergtod
Attack R1 Owtwolleytod
Attack G2 Owtwolleytod

56) efwin: Sacrifice G2 Eerhtdertod
Build B2 Owtwolleytod
Build B3 Bologna

57) MadWuher: Build G2 Camelot

58) efwin: Trade B3 R3 Bologna

59) MadWuher: Attack B2 Owtwolleytod

60) efwin: Move G1 Owtwolleytod Bologna

61) MadWuher: Attack B1 Owtwolleytod

62) efwin: Trade G2 R2 Efwin

63) MadWuher: Build G2 Owtwolleytod

64) efwin: Build R1 Efwin

65) MadWuher: Move B1 Owtwolleytod Camelot
	efwin: Didn't seem to have any better options, but maybe I missed something

66) efwin: Move R2 Efwin Darfur

67) MadWuher: Sacrifice G3 Madwuher
Build G3 Darfur
Build B3 Camelot
Build B3 Owtwolleytod

68) efwin: Attack G1 Darfur

69) MadWuher: Sacrifice R1 Owtwolleytod
Attack R2 Darfur

70) efwin: Discover G1 Darfur R3 Eerhtdertodii

71) MadWuher: Move G2 Owtwolleytod Madwuher

72) efwin: Build R1 Efwin

73) MadWuher: Sacrifice G3 Camelot
Build G3 Camelot
Build R1 Darfur
Build R2 Madwuher
	efwin: not sure why trading an R2 for a G1 seemed like a good idea to me two moves ago....

74) efwin: Move R1 Efwin Camelot

75) MadWuher: Sacrifice R1 Darfur
Attack R1 Camelot

76) efwin: Build R1 Efwin

77) MadWuher: Move B2 Owtwolleytod Darfur
	efwin: Is the goal of this game to own all of the stuff? :-)

78) efwin: Move R1 Efwin Enoneergtod
	MadWuher: I thought I'd give it a try. =)

79) MadWuher: Sacrifice Y3 Owtwolleytod
Move B1 Camelot Efwin
Move B3 Camelot Efwin
Move B2 Darfur Efwin
Catastrophe Efwin B

80) efwin: Sacrifice Y3 Efwin
Move G1 Eerhtdertodii Camelot
Move G1 Bologna Edora
Move G1 Edora Camelot
Catastrophe Camelot G

81) MadWuher: Move G3 Darfur Efwin

82) efwin: Build R3 Efwin

83) MadWuher: Sacrifice G2 Madwuher
Build G1 Efwin
Build G1 Efwin
Catastrophe Efwin G
	MadWuher: One down.

One to go.

	efwin: well, you'll have to do a little extra typing to win, this way :-)  Thanks for the game and the advice
	MadWuher: Thanks for the game.


13101)
Started: 2009.4.8, Ended: 2011.2.6
Participants: Bubba_G (S), MikeYarrum (N)
Winner: MikeYarrum

	Bubba_G: homeworld green 3 yellow 1 3 red
	Bubba_G: homeworld G3 Y1 3R


13247)
Variants: "Unrated"
Started: 2009.4.8, Ended: 2009.6.23
Participants: jeep (S), TwoShort (N)
Winner: jeep

1) TwoShort: Homeworld B1 R2 G3

2) jeep: Homeworld B1 R2 G3
	jeep: Wow, didn't take fortress because you want to see if you can get out of it?  I'm sure you won't have quite so many wasted moves.  ;)

3) TwoShort: Pass

4) jeep: Build G1 Jeep
	TwoShort: Well, I figured the point of playing an unrated game was to do the experiment.  If taking fortress is the way to go, then I'm convinced 2nd1st is worse than 1st1st; ditto for the other opening I considered: g1b2-G3.  They might stop the one strategy, but even if they do I think they're not as good as being second in 1st1st.

5) TwoShort: Build G1 Twoshort

6) jeep: Trade G1 B1 Jeep

7) TwoShort: Trade G1 Y1 Twoshort

8) jeep: Build B2 Jeep

9) TwoShort: Build Y1 Twoshort

10) jeep: Trade B2 Y2 Jeep

11) TwoShort: Discover Y1 Twoshort G3 Grogar

12) jeep: Build B2 Jeep

13) TwoShort: Build Y1 Grogar

14) jeep: Build Y2 Jeep

15) TwoShort: Build Y2 Twoshort

16) jeep: Discover Y2 Jeep B3 Moon

17) TwoShort: Trade Y2 B2 Twoshort
	jeep: I think making this a small universe was a mistake.

18) jeep: Move B2 Jeep Grogar
	jeep: Hmm... I feel like I should go total aggro to get you out of blue again, but wonder if that is smart.  ;)
	TwoShort: I agree about the small universe.  If I'd done it with red I could have immediately attacked everything you moved out of your Homeworld.  But in terms of going for the monopoly, Goldilocks is better because you could have built a b2 instead of your second y2, then moved to the last b2 before I got it.
	TwoShort: As far as the all out attack to get me out of blue again, I'm refraining from comment at the insistence of my competitive nature :)

19) TwoShort: Discover B2 Twoshort Y3 Yolonda

20) jeep: Sacrifice G3 Jeep
Build Y2 Moon
Build Y3 Jeep
Build B2 Grogar

21) TwoShort: Build Y3 Twoshort

22) jeep: Sacrifice Y2 Jeep
Move Y2 Moon Twoshort
Move Y2 Moon Twoshort
Catastrophe Twoshort Yellow

23) TwoShort: Build G1 Twoshort

24) jeep: Trade B2 R2 Grogar
	TwoShort: I saw that catastrophe coming and decided the net result of my build and that was a positive for me.  But, ouch! Somehow I feel much more doomed now.
	jeep: Nod, it was net positive for you.  Now I have three different things that I want to do... I need to determine what the right order is.
	jeep: Sorry, Easter yesterday and tonight is busy, so probably no move until tomorrow.

25) TwoShort: Trade G1 Y1 Twoshort

26) jeep: Attack Y1N Grogar

27) TwoShort: Build Y2 Grogar

28) jeep: Attack Y2N Grogar

29) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build Y2 Grogar
Build Y3 Twoshort
Catastrophe Grogar Yellow

30) jeep: Build B2 Grogar

31) TwoShort: Trade Y3 G3 Twoshort
	jeep: I missed something important... oops.  Oh well.

32) jeep: Build B3 Grogar

33) TwoShort: Sacrifice Y2 Twoshort
Move B2 Yolonda Twoshort
Move B2 Twoshort Grogar
Catastrophe Grogar Blue

34) jeep: Trade Y3 G3 Jeep
	jeep: I forgot I needed to spend a turn to get green... boy, I suck.

35) TwoShort: Build G1 Twoshort

36) jeep: Build B2 Jeep

37) TwoShort: Build Y1 Twoshort

38) jeep: Trade B2 Y2 Jeep

39) TwoShort: Discover Y1 Twoshort B3 Bluestar

40) jeep: Build B2 Jeep

41) TwoShort: Build Y1 Twoshort

42) jeep: Discover B2 Jeep Y3 Submarine

43) TwoShort: Build Y2 Twoshort

44) jeep: Build B2 Jeep

45) TwoShort: Discover Y1 Twoshort B3 Bonbon

46) jeep: Build Y2 Jeep
	jeep: Sorry for the delay.  This is hard and I haven't had time to really study this.

47) TwoShort: Trade Y2 B2 Twoshort

48) jeep: Move B2 Jeep Grogar

49) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y3 Bonbon
Build Y3 Twoshort

50) jeep: Move Y2 Jeep Bluestar

51) TwoShort: Trade Y1 R1 Bonbon
	jeep: You never let me complete any of my plans... I guess I need better plans.

52) jeep: Sacrifice R2 Grogar
Attack Y2N Bluestar
Attack Y1N Bluestar

53) TwoShort: Move Y1 Twoshort Bluestar
Catastrophe Bluestar Yellow

54) jeep: Build B3 Grogar

55) TwoShort: Discover B2 Twoshort G3 Guessso

56) jeep: Build B3 Grogar

57) TwoShort: Build G1 Twoshort
	jeep: Hmm... Eventually, I'll figure out how to get into a situation where I can pull the trigger, but it's taking me forever to figure it out.

58) jeep: Trade B2 R2 Grogar

59) TwoShort: Build B2 Guessso

60) jeep: Trade B3 R3 Grogar
	TwoShort: sorry to take so long... life has been hectic, and I keep wanting to find a good move where there isn't one...
	jeep: No problem.  I know the feeling.  ;)
	jeep: Yeah, I feel I have a couple good moves... not sure which one I want to take... immediate gain or trying to set up a checkmate.

61) TwoShort: Trade Y3 R3 Bonbon

62) jeep: Build B3 Grogar

63) TwoShort: Build G1 Twoshort
	jeep: So last turn, should I have moved the two B3s into your homeworld and forced you to catastrophe them away?  I figured this forced you to spend a turn changing color and keeps me moving towards doomsday.
	TwoShort: I think you probably made the right choice.  One of the classic ways to blow a dominant position like yours is to use up all your piece advantage destroying half a homeworld.  You don't necessarily need to wait for a full doomsday machine, but you want to be looking at the situation after blowing up the first half, and feel like there's no way they can stop you.  And my general rule is any move that forces the opponent to make one specific move in response is probably good, because that's probably not what they wanted to be doing.

64) jeep: Trade B3 Y3 Grogar

65) TwoShort: Move G1 Twoshort Grogar

66) jeep: Build G2 Jeep

67) TwoShort: Trade B2 Y2 Guessso

68) jeep: Sacrifice Y2 Jeep
Discover R3 Grogar Y2 Movers
Discover Y3 Grogar G2 Shakers
	jeep: Sorry, thinking.
	jeep: Or, more accurately, waiting for some time to think... should move tomorrow.
	TwoShort: No rush

69) TwoShort: Build B2 Guessso
	jeep: I almost didn't check tonight.  Sorry for the delay, we're two weeks behind schedule and I have family in town. ;)

70) jeep: Build B3 Grogar

71) TwoShort: Sacrifice G1 Grogar
Build R1 Bonbon

72) jeep: Move R3 Movers Bonbon
Catastrophe Bonbon Red

73) TwoShort: Sacrifice Y2 Guessso
Move B2 Guessso Jeep
Move B2 Guessso Jeep
Catastrophe Jeep Blue

74) jeep: Sacrifice G2 Jeep
Build B1 Submarine
Build B1 Submarine

75) TwoShort: Trade G1 R1 Twoshort

76) jeep: Sacrifice Y3 Shakers
Move B3 Grogar Twoshort
Move B3 Grogar Twoshort
Move B2 Submarine Jeep

	TwoShort: good game!
	jeep: Thanks, it was a good game.  I think that is a decent handicap for us.  ;)  I still had to think to get the win and you were able to hold out for a long time.  I think that it shows that 2nd1st is pretty unbalanced.


13102)
Started: 2009.4.9, Ended: 2009.4.22
Participants: TwoShort (S), Orl (N)
Winner: TwoShort

1) Orl: Homeworld B2 Y1 G3
	TwoShort: Howdy

2) TwoShort: Homeworld R1 B3 G3

3) Orl: Build G1 Orl
	Orl: Hi, have a good game!

4) TwoShort: Build G1 Twoshort

5) Orl: Discover G1 Orl B3 Nova

6) TwoShort: Trade G1 Y1 Twoshort

7) Orl: Build G1 Nova

8) TwoShort: Build Y1 Twoshort

9) Orl: Build G1 Nova

10) TwoShort: Discover Y1 Twoshort G2 Grogar

11) Orl: Build G2 Orl

12) TwoShort: Build Y2 Grogar

13) Orl: Trade G2 Y2 Orl

14) TwoShort: Build G2 Twoshort

15) Orl: Trade G1 R1 Nova

16) TwoShort: Discover Y2 Grogar B3 Bluestar

17) Orl: Move Y2 Orl Nova

18) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Twoshort
Build Y3 Bluestar

19) Orl: Build Y3 Nova

20) TwoShort: Sacrifice Y2 Bluestar
Move Y1 Grogar Nova
Move Y2 Grogar Nova
Catastrophe Nova Yellow

21) Orl: Trade G1 Y1 Nova

22) TwoShort: Build Y2 Twoshort

23) Orl: Build Y2 Nova

24) TwoShort: Discover Y1 Twoshort B2 Bonanza

25) Orl: Build G1 Nova

26) TwoShort: Sacrifice G2 Twoshort
Build Y2 Bluestar
Build Y3 Bonanza

27) Orl: Trade G1 B1 Nova

28) TwoShort: Trade Y2 R2 Bluestar

29) Orl: Build G1 Orl


30) TwoShort: Trade Y3 G3 Bonanza

31) Orl: Move Y1 Nova Orl

	TwoShort: Red Alert

32) TwoShort: Sacrifice Y3 Twoshort
Move G3 Bonanza Bluestar
Move G3 Bluestar Orl
Move Y3 Bluestar Orl

33) Orl: Move R1 Nova Orl

34) TwoShort: Sacrifice R2 Bluestar
Attack G3 Orl
Attack R1 Orl

35) Orl: Move G1 Nova Orl
Catastrophe Orl G

36) TwoShort: Attack Y1 Orl
	Orl: good game. I have to learn more this game...
	TwoShort: Thanks for the game.



13253)
Started: 2009.4.11, Ended: 2009.5.2
Participants: TwoShort (S), agentofchaos (N)
Winner: TwoShort

1) agentofchaos: Homeworld R1 B2 G3

2) TwoShort: Homeworld B1 R3 G3
	agentofchaos: Hi again, enjoy the game. 

3) agentofchaos: Build G1 Agentofchaos

4) TwoShort: Build G1 Twoshort

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) TwoShort: Trade G1 Y1 Twoshort

7) agentofchaos: Build G1 Agentofchaos

8) TwoShort: Build G1 Twoshort

9) agentofchaos: Discover Y1 Agentofchaos G3 Myxo

10) TwoShort: Discover G1 Twoshort B2 Bluestar

11) agentofchaos: Trade G1 R1 Agentofchaos

12) TwoShort: Build Y1 Twoshort

13) agentofchaos: Build Y2 Myxo

14) TwoShort: Move Y1 Twoshort Bluestar

15) agentofchaos: Build R1 Agentofchaos

16) TwoShort: Build Y2 Bluestar

17) agentofchaos: Move Y2 Myxo Bluestar

18) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y3 Twoshort
Build Y3 Twoshort
Catastrophe Bluestar Yellow

19) agentofchaos: Trade R1 Y1 Agentofchaos

20) TwoShort: Trade Y3 G3 Twoshort

21) agentofchaos: Build Y2 Myxo

22) TwoShort: Move Y3 Twoshort Bluestar

23) agentofchaos: Build Y2 Agentofchaos

24) TwoShort: Discover G1 Bluestar Y3 Yolonda

25) agentofchaos: Trade Y1 B1 Agentofchaos

26) TwoShort: Build G1 Twoshort

27) agentofchaos: Build G1 Agentofchaos

28) TwoShort: Build G2 Yolonda

29) agentofchaos: Discover G1 Agentofchaos Y3 Zurvan

30) TwoShort: Move G1 Yolonda Bluestar

31) agentofchaos: Discover Y2 Myxo B2 Seti

32) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Bluestar
Build G3 Twoshort

33) agentofchaos: Move R1 Agentofchaos Myxo

34) TwoShort: Trade G2 R2 Bluestar

35) agentofchaos: Move Y1 Myxo Seti

36) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Twoshort
Build Y1 Bluestar

37) agentofchaos: Build Y2 Agentofchaos

38) TwoShort: Trade G1 B1 Bluestar

39) agentofchaos: Trade Y1 G1 Seti

40) TwoShort: Move B1 Bluestar Yolonda

41) agentofchaos: Move B1 Agentofchaos Zurvan

42) TwoShort: Sacrifice G3 Twoshort
Build B3 Yolonda
Build B3 Yolonda
Build G3 Twoshort

43) agentofchaos: Sacrifice Y2 Agentofchaos
Move B1 Zurvan Seti
Move B1 Seti Yolonda
Catastrophe Yolonda B

44) TwoShort: Trade Y1 B1 Bluestar

45) agentofchaos: Build Y1 Seti

46) TwoShort: Move G2 Bluestar Zurvan

47) agentofchaos: Trade G3 R3 Agentofchaos

48) TwoShort: Sacrifice G2 Yolonda
Build G2 Zurvan
Build G3 Yolonda

49) agentofchaos: Discover G1 Zurvan Y2 Titan

50) TwoShort: Trade G1 B1 Twoshort

51) agentofchaos: Build G1 Titan

52) TwoShort: Sacrifice G2 Yolonda
Build B3 Bluestar
Build B3 Twoshort

53) agentofchaos: Build G2 Seti

54) TwoShort: Sacrifice Y3 Bluestar
Move B3 Bluestar Yolonda
Move B3 Yolonda Agentofchaos
Move G3 Yolonda Agentofchaos

55) agentofchaos: Attack B3 Agentofchaos

56) TwoShort: Sacrifice R2 Bluestar
Attack R3 Agentofchaos
Attack B3 Agentofchaos

57) agentofchaos: Sacrifice G2 Seti
Build Y1 Agentofchaos
Build Y3 Agentofchaos

58) TwoShort: Trade B3 Y3 Agentofchaos
Catastrophe Agentofchaos Yellow
	agentofchaos: gg

	TwoShort: Thanks for the game!


13193)
Started: 2009.4.13, Ended: 2009.4.30
Participants: ts52 (S), jeep (N)
Winner: jeep

1) jeep: Homeworld R1 B2 G3

2) ts52: Homeworld R2 B3 G3

3) jeep: Build G1 Jeep
	ts52: Have a good game!
	jeep: You too.

4) ts52: Build G1 Ts52

5) jeep: Trade G1 Y1 Jeep

6) ts52: Trade G1 Y1 Ts52

7) jeep: Build G1 Jeep

8) ts52: Build G1 Ts52

9) jeep: Discover G1 Jeep B3 Moon

10) ts52: Discover G1 Ts52 B1 Grover

11) jeep: Discover Y1 Jeep G3 Thumb

12) ts52: Move Y1 Ts52 Grover

13) jeep: Build G1 Moon

14) ts52: Build G2 Ts52

15) jeep: Trade G1 Y1 Moon
	jeep: BAH!  That was supposed to be build in jeep, not Moon... *sigh*  sloppy

16) ts52: Build Y2 Grover

17) jeep: Build Y2 Moon

18) ts52: Move Y1 Grover Ts52

19) jeep: Build G1 Jeep

20) ts52: Build G2 Grover

21) jeep: Trade G1 R1 Jeep

22) ts52: Trade G1 R1 Grover

23) jeep: Build G1 Jeep

24) ts52: Build R2 Grover

25) jeep: Move Y1 Moon Jeep

26) ts52: Discover R2 Grover Y3 Bigbird

27) jeep: Sacrifice G3 Jeep
Build Y2 Thumb
Build Y3 Moon
Build Y3 Jeep

28) ts52: Discover R1 Grover G3 Kermit

29) jeep: Move Y3 Moon Grover

30) ts52: Move Y2 Grover Kermit

31) jeep: Sacrifice R1 Jeep
Attack G2S Grover

32) ts52: Discover G2 Ts52 B1 Gonzo

33) jeep: Build G1 Grover

34) ts52: Build G2 Gonzo

35) jeep: Discover G1 Moon B1 Stage

36) ts52: Trade G3 R3 Ts52

37) jeep: Build G3 Stage

38) ts52: Move Y2 Kermit Gonzo

39) jeep: Trade G2 R2 Grover

40) ts52: Sacrifice G2 Gonzo
Build R1 Kermit
Build R3 Bigbird

41) jeep: Sacrifice G3 Stage
Build G2 Grover
Build G2 Stage
Build G3 Jeep

42) ts52: Move R3 Bigbird Stage

43) jeep: Sacrifice G2 Stage
Build R3 Grover
Build G2 Grover

44) ts52: Sacrifice Y2 Gonzo
Move R1 Kermit Grover
Move R1 Kermit Grover
Catastrophe Grover Red

45) jeep: Trade G2 R2 Grover

46) ts52: Build G2 Gonzo

47) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build G3 Grover
Build Y2 Grover

48) ts52: Attack G1 Stage

49) jeep: Build R1 Grover

50) ts52: Sacrifice Y1 Ts52
Move R3 Stage Thumb

51) jeep: Sacrifice Y2 Thumb
Move R1 Grover Ts52
Move R2 Grover Ts52
Catastrophe Ts52 Red
	jeep: Thanks for the game.
	ts52: Thanks. Good game. 
	jeep: Want to play again?
	ts52: Sure, I'd be happy to play again.



13105)
Started: 2009.4.13, Ended: 2009.6.16
Participants: jeep (S), MadWuher (N)
Winner: jeep

1) MadWuher: Homeworld R1 B2 G3

2) jeep: Homeworld B1 R2 G3

3) MadWuher: Build G1 Madwuher

4) jeep: Build G1 Jeep
	jeep: Heh, oops, I didn't mean to create a small universe... I meant to go goldilocks. This will be interesting.

5) MadWuher: Trade G1 Y1 Madwuher

6) jeep: Trade G1 Y1 Jeep
	MadWuher: I am so unprepared for the small universe start. Well, it should be interesting. 

7) MadWuher: Build G1 Madwuher

8) jeep: Build G1 Jeep

9) MadWuher: Discover G1 Madwuher Y3 Edora

10) jeep: Discover G1 Jeep Y3 Submarine

11) MadWuher: Build G1 Madwuher

12) jeep: Build G2 Jeep

13) MadWuher: Trade G1 B1 Madwuher

14) jeep: Discover G2 Jeep B3 Moon

15) MadWuher: Build G1 Madwuher

16) jeep: Move G1 Submarine Madwuher

17) MadWuher: Trade G3 Y3 Madwuher

18) jeep: Build G2 Moon
	jeep: Bah! I was going to factory... but forgot I can't put another green in my homeworld.

19) MadWuher: Attack G1 Madwuher

20) jeep: Trade G2 Y2 Moon

21) MadWuher: Build G2 Edora

22) jeep: Build G2 Moon

23) MadWuher: Trade G1 R1 Madwuher

24) jeep: Build Y1 Moon

25) MadWuher: Discover Y1 Madwuher G3 Bologna

26) jeep: Trade Y1 R1 Moon

27) MadWuher: Move R1 Madwuher Edora

28) jeep: Sacrifice G2 Moon
Build Y1 Moon
Build Y2 Moon

29) MadWuher: Build Y2 Bologna

30) jeep: Build Y3 Jeep

31) MadWuher: Build R2 Edora

32) jeep: Build R2 Moon

33) MadWuher: Discover R2 Edora B1 Camelot

34) jeep: Move Y1 Moon Madwuher

35) MadWuher: Attack Y1 Madwuher

36) jeep: Sacrifice Y3 Jeep
Move Y2 Moon Madwuher
Move Y2 Moon Madwuher
Move G2 Moon Madwuher
Catastrophe Madwuher Yellow

37) MadWuher: Sacrifice G2 Edora
Build G1 Madwuher
Build G2 Madwuher
Catastrophe Madwuher G

38) jeep: Sacrifice Y1 Jeep
Move R2 Moon Madwuher

39) MadWuher: Sacrifice Y2 Bologna
Move R2 Camelot Bologna
Move R2 Bologna Madwuher
	MadWuher: The small universe start really threw me. No chance to recover since then. =)

40) jeep: Attack R2N Madwuher

41) MadWuher: Move R1 Edora Madwuher
Catastrophe Madwuher R

42) jeep: Build G1 Jeep

43) MadWuher: Build Y1 Bologna
	jeep: Yeah, it's quite the uphill battle for you now. I'm good at screwing up won positions, though.

44) jeep: Trade G1 Y1 Jeep

45) MadWuher: Trade B1 R1 Madwuher

46) jeep: Build Y2 Jeep

47) MadWuher: Move Y1 Bologna Madwuher

48) jeep: Sacrifice Y1 Jeep
Discover Y2 Jeep G3 Thumb

49) MadWuher: Build G1 Edora

50) jeep: Move Y2 Thumb Madwuher

51) MadWuher: Sacrifice G1 Edora
Build R1 Madwuher
	jeep: Sorry for the delay.
	MadWuher: Not a problem. 

52) jeep: Build G1 Jeep

53) MadWuher: Build G1 Edora

54) jeep: Trade G3 R3 Jeep

55) MadWuher: Sacrifice G1 Edora
Build R2 Madwuher

56) jeep: Sacrifice R3 Jeep
Attack R1N Madwuher
Attack R1N Madwuher
Attack R2N Madwuher

	MadWuher: Thanks for the game. I was trying to think of what I could do to stave off elimination, but to no avail.
	jeep: Thanks for the game.


13173)
Variants: "Hard time"
Started: 2009.4.14, Ended: 2009.4.30
Participants: Wheatberry (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3
	Jesse: Hello, and have a good game.

2) Wheatberry: Homeworld R2 G1 B3

3) Jesse: Build G1 Jesse

	Wheatberry: Hi, Jesse. Back atcha. :)

4) Wheatberry: Build B1 Wheatberry
	Jesse: It's generally not a good idea to make your small system marker the same color as your opponent's ship.  This will quickly make it difficult for you to get into green.

5) Jesse: Build G1 Jesse
	Wheatberry: Hrm, thanks. I'll remember that next time...

6) Wheatberry: Trade B1 Y1 Wheatberry

7) Jesse: Trade G3 Y3 Jesse

8) Wheatberry: Build Y1 Wheatberry

9) Jesse: Discover G1 Jesse B2 Disc

10) Wheatberry: Trade B3 G3 Wheatberry

11) Jesse: Build G2 Jesse
	Wheatberry: Hmm... that's not going to work either... this is a miserable start.

12) Wheatberry: Discover G3 Wheatberry B3 Donjon

13) Jesse: Build G2 Disc
	Wheatberry: When in doubt, try something crazy... :)

14) Wheatberry: Build G2 Donjon

15) Jesse: Sacrifice Y3 Jesse
Move G2 Jesse Disc
Move G1 Disc Donjon
Move G2 Disc Donjon
Catastrophe Donjon G

16) Wheatberry: Discover Y1 Wheatberry B3 Deep

17) Jesse: Build G1 Disc


18) Wheatberry: Build Y1 Wheatberry

19) Jesse: Build G2 Jesse


20) Wheatberry: Build Y2 Wheatberry

21) Jesse: Build G2 Jesse

22) Wheatberry: Trade Y1 B1 Deep

23) Jesse: Build G3 Disc

24) Wheatberry: Move Y1 Wheatberry Deep

25) Jesse: Trade G3 Y3 Disc

26) Wheatberry: Move B1 Deep Wheatberry

27) Jesse: Discover G2 Disc Y3 Ring

28) Wheatberry: Trade Y1 R1 Wheatberry

29) Jesse: Build G3 Disc

30) Wheatberry: Build Y1 Wheatberry

31) Jesse: Sacrifice G3 Disc
Build G3 Disc
Build G3 Ring
Build G3 Disc

	Wheatberry: Pah, no point in playing out this massacre from here. I won't be able to build a large ship in time to stop you from sweeping my homeworld. Well done.


13196)
Variants: "Unrated, Hard time"
Started: 2009.4.14, Ended: 2009.5.5
Participants: agentofchaos (S), Mouce (N)
Winner: Mouce

1) Mouce: Homeworld B1 Y2 G3

2) agentofchaos: Homeworld R1 B3 G3

3) Mouce: Build G1 Mouce

4) agentofchaos: Build G1 Agentofchaos

5) Mouce: Discover G1 Mouce B3 Hole

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) Mouce: Build G1 Hole

8) agentofchaos: Build Y1 Agentofchaos

9) Mouce: Trade G1 Y1 Hole

10) agentofchaos: Build Y2 Agentofchaos

11) Mouce: Build Y2 Hole

12) agentofchaos: Discover Y2 Agentofchaos G2 Galdr

13) Mouce: Move Y1 Hole Galdr

14) agentofchaos: Trade Y1 R1 Agentofchaos

15) Mouce: Discover Y1 Galdr B3 Twitch

16) agentofchaos: Build G1 Agentofchaos

17) Mouce: Build G1 Mouce

18) agentofchaos: Move G1 Agentofchaos Galdr

19) Mouce: Build G2 Hole

20) agentofchaos: Build G2 Agentofchaos

21) Mouce: Move G1 Hole Galdr

22) agentofchaos: Discover G1 Galdr Y3 Spunk

23) Mouce: Build G3 Hole

24) agentofchaos: Sacrifice G3 Agentofchaos
Build Y1 Galdr
Build Y3 Agentofchaos
Build G3 Spunk

25) Mouce: Trade G3 R3 Mouce
	agentofchaos: 'Abstract wrestling' - that's a clever way of describing this game, quite apt. 

26) agentofchaos: Trade Y1 B1 Agentofchaos

27) Mouce: Sacrifice G3 Hole
Build G3 Hole
Build Y1 Hole
Build Y3 Twitch

28) agentofchaos: Sacrifice G3 Spunk
Build G3 Agentofchaos
Build B1 Agentofchaos
Build G3 Spunk

29) Mouce: Sacrifice Y1 Twitch
Move G1 Galdr Agentofchaos

30) agentofchaos: Move G2 Agentofchaos Galdr

31) Mouce: Sacrifice G2 Hole
Build G2 Agentofchaos
Build R1 Mouce

32) agentofchaos: Discover G3 Agentofchaos R2 Panik

33) Mouce: Trade G2 B2 Agentofchaos
Catastrophe Agentofchaos Blue

34) agentofchaos: Attack G1 Agentofchaos

35) Mouce: Trade Y2 R2 Hole

36) agentofchaos: Move R1 Agentofchaos Spunk

37) Mouce: Build R2 Hole

38) agentofchaos: Build R3 Spunk

39) Mouce: Sacrifice Y3 Twitch
Move R2 Hole Agentofchaos
Move R2 Hole Agentofchaos
Move R1 Mouce Hole

40) agentofchaos: Attack R2 Agentofchaos
	Mouce: Glad you started yet another game! I look forward to it.

41) Mouce: Move R1 Hole Agentofchaos
Catastrophe Agentofchaos Red
	agentofchaos: Looks like the end is nigh! I'm hoping I'll do better in our other game. :-)



13344)
Variants: "Hard time"
Started: 2009.4.23, Ended: 2009.8.6
Participants: fnord (S), Subhan64 (N)
Winner: Subhan64

1) Subhan64: Homeworld B2 G3 Y3

2) fnord: Homeworld Y1 B2 G3

3) Subhan64: Build Y1 Subhan64

4) fnord: Build G1 Fnord

5) Subhan64: Trade Y1 G1 Subhan64

6) fnord: Discover G1 Fnord B3 Eris

7) Subhan64: Build Y1 Subhan64

8) fnord: Build G1 Eris

9) Subhan64: Build G2 Subhan64

10) fnord: Trade G1 Y1 Eris

11) Subhan64: Trade G2 R2 Subhan64

12) fnord: Build G1 Fnord

13) Subhan64: Build G2 Subhan64

14) fnord: Sacrifice G3 Fnord
Build G2 Fnord
Build G2 Fnord
Build G3 Eris

15) Subhan64: Discover Y1 Subhan64 B1 Vogon12

16) fnord: Trade G2 R2 Fnord

17) Subhan64: Build Y2 Subhan64

18) fnord: Trade Y1 R1 Eris

19) Subhan64: Trade G2 R2 Subhan64

20) fnord: Build R1 Fnord

21) Subhan64: Trade Y3 R3 Subhan64

22) fnord: Trade G1 B1 Fnord

23) Subhan64: Move R3 Subhan64 Vogon12

24) fnord: Trade G1 Y1 Eris
	fnord: Gah!  Thank you, for unknowingly pointing out a misunderstanding I've had in the ruled for quite a long time!

25) Subhan64: Sacrifice Y2 Subhan64
Move R3 Vogon12 Eris
Move R3 Eris Fnord

26) fnord: Sacrifice Y1 Eris
Move R1 Eris Fnord
Catastrophe Fnord Red

27) Subhan64: Trade R2 Y2 Subhan64

28) fnord: Build G1 Eris

29) Subhan64: Move R2 Subhan64 Vogon12

30) fnord: Trade G2 R2 Fnord

31) Subhan64: Move R2 Vogon12 Eris

32) fnord: Trade G1 Y1 Eris

33) Subhan64: Attack Y1 Eris

34) fnord: Trade R2 Y2 Fnord

35) Subhan64: Move R2 Eris Fnord

36) fnord: Sacrifice Y2 Fnord
Move G3 Eris Fnord
Pass

37) Subhan64: Build Y2 Subhan64

38) fnord: Trade G3 R3 Fnord

39) Subhan64: Sacrifice Y2 Subhan64
Move R2 Fnord Eris
Move R2 Eris Vogon12

40) fnord: Trade B1 G1 Fnord

41) Subhan64: Build Y2 Subhan64

42) fnord: Build G1 Fnord

43) Subhan64: Build G2 Subhan64

44) fnord: Build G2 Fnord

45) Subhan64: Move G1 Subhan64 Vogon12

46) fnord: Move G2 Fnord Eris

47) Subhan64: Trade Y2 R2 Subhan64

48) fnord: Build G2 Eris

49) Subhan64: Trade G1 R1 Vogon12

50) fnord: Trade G2 Y2 Eris

51) Subhan64: Move R2 Vogon12 Eris

52) fnord: Move R3 Fnord Eris

53) Subhan64: Sacrifice Y2 Subhan64
Move R1 Vogon12 Eris
Move R1 Eris Fnord

54) fnord: Move Y2 Eris Fnord

55) Subhan64: Move R2 Eris Fnord

56) fnord: Sacrifice G2 Eris
Build Y2 Fnord
Build G1 Fnord

57) Subhan64: Move Y1 Eris Fnord
Catastrophe Fnord Yellow

58) fnord: Trade R3 Y3 Eris

59) Subhan64: Trade R2 G2 Fnord
Catastrophe Fnord Green

	Subhan64: GG, thanks!
	fnord: Thanks for the game.  I think I'm learning more, bit by bit, but this is a dense game.
	Subhan64: yeah, there's a lot going on!


13279)
Started: 2009.4.28, Ended: 2009.5.1
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R3 B2 G3



13361)
Started: 2009.4.28, Ended: 2009.5.1
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13362)
Started: 2009.4.28, Ended: 2009.5.1
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B2 R3 G3



13363)
Started: 2009.4.28, Ended: 2009.5.1
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13364)
Started: 2009.4.28, Ended: 2009.5.2
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B2 R3 G3



13365)
Started: 2009.4.28, Ended: 2009.5.2
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13277)
Variants: "Hard time"
Started: 2009.4.29, Ended: 2009.5.10
Participants: CheshireSwift (S), headphoned (N), agentofchaos (E)
Winner: agentofchaos

1) headphoned: Homeworld G1 B2 Y3
	agentofchaos: Hi everybody, thanks for playing, enjoy the game :-)
	CheshireSwift: You too!

2) agentofchaos: Homeworld R3 B1 G3
	headphoned: I apologise in advance if I'm not very good. I can never talk anyone into playing icehouse games with me in real life, so this is my first time trying out Homeworlds. :)
	agentofchaos: Don't worry if you're not too good, I've only played a few games on this site, myself. The main thing is to have fun! :-)

3) CheshireSwift: Homeworld G2 Y3 B3
	CheshireSwift: Well that makes two and a half of us, this is my first game too...

4) headphoned: Build Y1 Headphoned

5) agentofchaos: Build G1 Agentofchaos
	CheshireSwift: Eep. Not a good start =P

6) CheshireSwift: Build B1 Cheshireswift

7) headphoned: Discover Y1 Headphoned G3 Copernicus

8) agentofchaos: Build G1 Agentofchaos

9) CheshireSwift: Discover B1 Cheshireswift Y1 Aleph

10) headphoned: Build Y1 Headphoned

11) agentofchaos: Trade G1 Y1 Agentofchaos

12) CheshireSwift: Discover B1 Aleph G2 Bet

13) headphoned: Discover Y1 Copernicus R2 Elektro

14) agentofchaos: Trade G1 R1 Agentofchaos

15) CheshireSwift: Trade B1 G1 Bet

16) headphoned: Trade Y1 R1 Headphoned

17) agentofchaos: Move R1 Agentofchaos Bet

18) CheshireSwift: Build B1 Cheshireswift

19) headphoned: Build R1 Headphoned

20) agentofchaos: Attack G1S Bet

21) CheshireSwift: Trade B1 G1 Cheshireswift

22) headphoned: Trade R1 G1 Headphoned

23) agentofchaos: Build Y1 Agentofchaos

24) CheshireSwift: Build G2 Cheshireswift

25) headphoned: Build G2 Headphoned

26) agentofchaos: Build G3 Agentofchaos

27) CheshireSwift: Build G3 Cheshireswift

28) headphoned: Build R1 Headphoned
Catastrophe Cheshireswift G

29) agentofchaos: Move Y1 Agentofchaos Bet

30) CheshireSwift: Trade B3 G3 Cheshireswift

31) headphoned: Build Y1 Headphoned

32) agentofchaos: Build Y2 Bet

33) CheshireSwift: Build G1 Cheshireswift

34) headphoned: Sacrifice G2 Headphoned
Build G2 Headphoned
Build Y2 Headphoned

35) agentofchaos: Sacrifice Y2 Bet
Discover G1 Bet R3 Mjolnir
Move G1 Mjolnir Headphoned
Catastrophe Headphoned G

36) CheshireSwift: Move G1 Cheshireswift Elektro

37) headphoned: Move Y1 Elektro Cheshireswift

38) agentofchaos: Move Y1 Agentofchaos Headphoned
Catastrophe Headphoned Y

39) CheshireSwift: Sacrifice G1 Elektro
Build G1 Cheshireswift

40) headphoned: Trade R1 Y1 Headphoned

41) agentofchaos: Sacrifice Y1 Bet
Move G3 Agentofchaos Headphoned

42) CheshireSwift: Move G1 Cheshireswift Headphoned

43) headphoned: Sacrifice R1 Headphoned
Attack G1S Headphoned

44) agentofchaos: Trade G3 R3 Headphoned

45) CheshireSwift: Build G1 Cheshireswift

46) headphoned: Sacrifice G1 Headphoned
Build Y1 Cheshireswift

47) agentofchaos: Attack Y1N Headphoned

48) agentofchaos: Pass

49) CheshireSwift: Move G1 Cheshireswift Headphoned

50) agentofchaos: Move Y1 Headphoned Cheshireswift
Catastrophe Cheshireswift Y

	agentofchaos: Thanks for a fun game guys! :-)
	CheshireSwift: Likewise :)


13276)
Started: 2009.4.29, Ended: 2009.7.7
Participants: MadWuher (S), dethdukk (N)
Winner: MadWuher

1) dethdukk: Homeworld B1 Y3 G3

2) MadWuher: Homeworld B1 G2 B3 *

3) dethdukk: Build G1 Dethdukk
	dethdukk: sorry about that... I didnt get an email letting me know it was my turn

4) MadWuher: Build B1 Madwuher
	MadWuher: Not a problem


5) dethdukk: Trade G3 B3 Dethdukk

6) MadWuher: Trade B3 Y3 Madwuher

7) dethdukk: Build B2 Dethdukk
	dethdukk: yeah, twoshort used this same strategy... I think I can break it if I stop you from locking me out.

8) MadWuher: Build B2 Madwuher

9) dethdukk: Discover B2 Dethdukk Y2 Time

10) MadWuher: Discover B2 Madwuher G3 Edora

11) dethdukk: Move B2 Time Edora

12) MadWuher: Trade B1 R1 Madwuher

13) dethdukk: Build B1 Edora

14) MadWuher: Trade B2 R2 Edora



13375)
Started: 2009.4.30, Ended: 2009.6.3
Participants: TwoShort (S), dethdukk (N)
Winner: TwoShort

1) dethdukk: Homeworld B1 Y3 G3

2) TwoShort: Homeworld B1 G2 B3 *

3) dethdukk: Build G1 Dethdukk
	dethdukk: taking a handicap?  or just trying a strategy?

4) TwoShort: Build B1 Twoshort
	TwoShort: Demonstrating the error in taking a b1 star as first player. :)

5) dethdukk: Build G1 Dethdukk
	dethdukk: hm...  never seen this one.  should be interesting.

6) TwoShort: Trade B3 Y3 Twoshort

7) dethdukk: Discover G1 Dethdukk Y2 Launch
	TwoShort: It's a wacky tactic (which I'm inherently a sucker for), and at least reverses the 1st player advantage.  Looking at it now, it appears it is actually slightly less devastating since you started with Goldilocks and not Banker.

8) TwoShort: Build B2 Twoshort

9) dethdukk: Build G1 Dethdukk

10) TwoShort: Discover B2 Twoshort G3 Greed

11) dethdukk: Sacrifice G3 Dethdukk
Build G2 Launch
Build G2 Launch
Build G3 Dethdukk

12) TwoShort: Build B2 Twoshort

13) dethdukk: Discover G1 Launch Y3 Point

14) TwoShort: Discover B1 Twoshort G3 Grogar

15) dethdukk: Discover G1 Dethdukk Y2 Move

16) TwoShort: Build B2 Grogar

17) dethdukk: Discover G2 Launch B3 Trader

18) TwoShort: Build B3 Grogar

19) dethdukk: Discover G2 Launch B3 Pull

20) TwoShort: Trade B2 R2 Grogar

21) dethdukk: Trade G2 R2 Pull

22) TwoShort: Build B2 Grogar

23) dethdukk: Build G2 Move

24) TwoShort: Trade B2 Y2 Grogar
	dethdukk: hm.  it is interesting.  I wouldnt have thought you could lock me down quite that easily.  I probably should have explored medium greens and gotten some G3 ships before you locked them into worlds

25) dethdukk: Move G2 Move Pull
	TwoShort: Meanwhile, I've been thinking this strategy is really tough to pull off starting from banker; I usually do it from Goldilocks so I'm able to move out to a b2 and lock them down a turn faster.  

26) TwoShort: Build B2 Grogar

27) dethdukk: Build R1 Pull

28) TwoShort: Move B2 Grogar Move

29) dethdukk: Trade R2 Y2 Pull

30) TwoShort: Sacrifice B2 Greed
Trade B3 G3 Grogar
Trade B2 R2 Move

31) dethdukk: Build Y1 Pull

32) TwoShort: Attack G1 Move

33) dethdukk: Trade G3 R3 Dethdukk

34) TwoShort: Build G3 Move

35) dethdukk: Build R1 Pull

36) TwoShort: Discover G3 Grogar B2 Boomer
	dethdukk: so MadWuher tried using this same strategy with the game I am in with him...  unless I am mistaken (which I might be) I believe I have escaped it by trading my G3 starting ship for a B3.

37) dethdukk: Discover Y1 Pull Y1 Mobile
	TwoShort: Nice work.  It's clear that this opening isn't effective vs. as many first player homeworlds as I previously thought.

38) TwoShort: Sacrifice G3 Move
Build B2 Grogar
Build B3 Grogar
Build G3 Move

	dethdukk: ya got me, not much I can do about it now.  good game, I learned a lot that I should be able to use.


13366)
Started: 2009.5.1, Ended: 2009.5.4
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13384)
Started: 2009.5.1, Ended: 2009.5.4
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13288)
Variants: "Hard time"
Started: 2009.5.2, Ended: 2009.5.30
Participants: heavytanhat (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B2 G3

2) heavytanhat: Homeworld G1 B3 Y3
	heavytanhat: homeworld b1 b3 y3

3) agentofchaos: Build G1 Agentofchaos

4) heavytanhat: Build Y1 Heavytanhat

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) heavytanhat: Discover Y1 Heavytanhat G2 Halver

7) agentofchaos: Build G1 Agentofchaos

8) heavytanhat: Build Y1 Halver

9) agentofchaos: Build Y2 Agentofchaos

10) heavytanhat: Build Y2 Heavytanhat

11) agentofchaos: Discover Y2 Agentofchaos G3 Axolotl

12) heavytanhat: Trade Y2 G2 Heavytanhat

13) agentofchaos: Build Y2 Axolotl

14) heavytanhat: Trade Y3 G3 Heavytanhat

15) agentofchaos: Build Y2 Agentofchaos

16) heavytanhat: Move Y1 Halver Heavytanhat

17) agentofchaos: Build Y3 Agentofchaos



13385)
Started: 2009.5.4, Ended: 2009.5.8
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13283)
Variants: "Unrated, Hard time"
Started: 2009.5.4, Ended: 2009.5.27
Participants: Mouce (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B2 R3 G3

2) Mouce: Homeworld Y1 B2 G3

3) agentofchaos: Build G1 Agentofchaos

4) Mouce: Build G1 Mouce

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Mouce: Build G1 Mouce

7) agentofchaos: Build Y1 Agentofchaos

8) Mouce: Discover G1 Mouce B3 Crumbz

9) agentofchaos: Build Y2 Agentofchaos

10) Mouce: Build G1 Crumbz

11) agentofchaos: Discover Y2 Agentofchaos B1 Ghost

12) Mouce: Build G2 Crumbz

13) agentofchaos: Build G2 Agentofchaos

14) Mouce: Trade G2 Y2 Crumbz

15) agentofchaos: Move G2 Agentofchaos Ghost

16) Mouce: Discover G1 Crumbz B1 Nibble

17) agentofchaos: Sacrifice G2 Ghost
Build Y2 Agentofchaos
Build Y3 Ghost

18) Mouce: Build Y3 Crumbz

19) agentofchaos: Trade Y3 R3 Ghost

20) Mouce: Trade G1 R1 Mouce

21) agentofchaos: Trade Y2 G2 Agentofchaos

22) Mouce: Move Y3 Crumbz Nibble

23) agentofchaos: Move G2 Agentofchaos Ghost

24) Mouce: Build G1 Mouce

25) agentofchaos: Build G2 Agentofchaos



13394)
Started: 2009.5.4, Ended: 2009.5.8
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R2 B3 G3



13395)
Started: 2009.5.4, Ended: 2009.5.8
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B2 R3 G3



13396)
Started: 2009.5.4, Ended: 2009.5.8
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13397)
Started: 2009.5.4, Ended: 2009.5.8
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13398)
Started: 2009.5.4, Ended: 2009.5.8
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B2 R3 G3



13399)
Started: 2009.5.4, Ended: 2009.5.8
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13400)
Started: 2009.5.4, Ended: 2009.5.8
Participants: MikeYarrum (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B2 R3 G3



13401)
Started: 2009.5.4, Ended: 2009.5.8
Participants: agentofchaos (S), MikeYarrum (N)
Winner: agentofchaos



13266)
Started: 2009.5.4, Ended: 2009.5.6
Participants: TwoShort (S), headphoned (N)
Winner: TwoShort

1) headphoned: Homeworld B3 G1 Y3

2) TwoShort: Homeworld B1 R2 G3
	TwoShort: Howdy

3) headphoned: Build Y1 Headphoned

4) TwoShort: Build G1 Twoshort

5) headphoned: Trade Y1 B1 Headphoned

6) TwoShort: Build G1 Twoshort

7) headphoned: Build B1 Headphoned

8) TwoShort: Trade G1 Y1 Twoshort

9) headphoned: Build Y1 Headphoned

10) TwoShort: Build G1 Twoshort

11) headphoned: Trade B1 R1 Headphoned

12) TwoShort: Discover G1 Twoshort B3 Bluonia

13) headphoned: Build R1 Headphoned

14) TwoShort: Build G2 Bluonia

15) headphoned: Trade Y3 G3 Headphoned

16) TwoShort: Trade G2 Y2 Bluonia

17) headphoned: Build Y1 Headphoned

18) TwoShort: Build G2 Bluonia

19) headphoned: Build G2 Headphoned

20) TwoShort: Sacrifice Y2 Bluonia
Discover G1 Bluonia B2 Boomtime
Move G1 Boomtime Headphoned
Catastrophe Headphoned Green



13393)
Variants: "Unrated, Hard time"
Started: 2009.5.4, Ended: 2009.5.11
Participants: headphoned (S), Mouce (N)
Winner: Mouce

1) Mouce: Homeworld Y1 B2 G3
	Mouce: Welcome; have a great game!

2) headphoned: Homeworld B3 G2 Y3

3) Mouce: Build G1 Mouce

4) headphoned: Build Y1 Headphoned

5) Mouce: Build G1 Mouce

6) headphoned: Build Y1 Headphoned

7) Mouce: Discover G1 Mouce B3 Wisker

8) headphoned: Trade Y3 G3 Headphoned

9) Mouce: Build G1 Mouce

10) headphoned: Build Y2 Headphoned

11) Mouce: Discover G1 Mouce B3 Scritch

12) headphoned: Build G2 Headphoned

13) Mouce: Sacrifice G3 Mouce
Build G2 Scritch
Build G3 Wisker
Build G3 Mouce

14) headphoned: Trade Y1 B1 Headphoned

15) Mouce: Trade G2 Y2 Scritch

16) headphoned: Discover G3 Headphoned Y1 Khat

17) Mouce: Sacrifice Y2 Scritch
Move G1 Wisker Khat
Move G1 Khat Headphoned

18) headphoned: Sacrifice Y2 Headphoned
Move G3 Khat Scritch
Move G3 Scritch Mouce

19) Mouce: Trade G3 R3 Mouce

20) headphoned: Sacrifice G2 Headphoned
Build Y1 Headphoned
Build Y2 Headphoned

21) Mouce: Attack G3 Mouce

22) headphoned: Trade Y1 R1 Headphoned

23) Mouce: Sacrifice R3 Mouce
Attack B1 Headphoned
Attack R1 Headphoned
Attack Y1 Headphoned

24) headphoned: Build Y1 Headphoned

25) Mouce: Build Y2 Headphoned
Catastrophe Headphoned Yellow

	Mouce: Thanks for the game - keep it up, it can take a little while to get used to homeworlds, but it's a great game! Challenge me anytime...


13407)
Variants: "Unrated, Hard time"
Started: 2009.5.6, Ended: 2009.5.21
Participants: zoltar (S), Mouce (N)
Winner: zoltar

1) Mouce: Homeworld B1 Y2 G3
	Mouce: hi, have a great game

you aren't an automated fortune teller, by chance?

2) zoltar: Homeworld R1 B3 G3

3) Mouce: Build G1 Mouce
	zoltar: Nope, I'm just a run of the mill alien!
Have a fun game as well.

4) zoltar: Build G1 Zoltar

5) Mouce: Discover G1 Mouce B3 Skitter

6) zoltar: Trade G1 Y1 Zoltar

7) Mouce: Build G1 Skitter

8) zoltar: Build Y1 Zoltar

9) Mouce: Build G1 Mouce

10) zoltar: Build G2 Zoltar

11) Mouce: Trade G1 Y1 Skitter

12) zoltar: Trade Y1 R1 Zoltar

13) Mouce: Build G1 Skitter

14) zoltar: Discover G2 Zoltar Y2 Yippee

15) Mouce: Discover G1 Skitter B2 Squeak

16) zoltar: Move G2 Yippee Skitter

17) Mouce:
Build G2 Skitter

18) zoltar: Trade G2 R2 Skitter
	zoltar: Nice move.  I'm going to spend a day or two and look at this more carefully when I have the time before I reply.
	zoltar: On second thought, I now see a defense.

19) Mouce: Sacrifice G2 Skitter
Build G2 Squeak
Build G2 Squeak

20) zoltar: Attack G1 Skitter

21) Mouce: Trade G1 Y1 Squeak
	zoltar: By imperial order of Zoltar the Evil Overlord, I hereby commandeer this vessel!

22) zoltar: Attack Y1 Skitter

23) Mouce: Sacrifice G2 Squeak
Build G1 Squeak
Build Y2 Squeak

24) zoltar: Sacrifice G3 Zoltar
Build G2 Skitter
Build Y2 Skitter
Build Y3 Zoltar

25) Mouce: Trade G1 R1 Mouce

26) zoltar: Discover Y2 Skitter R2 Redrum
	zoltar: Alright -- my turn for a fancy sacrifice!

27) Mouce: Trade G2 R2 Squeak

28) zoltar: Sacrifice G2 Skitter
Build Y3 Skitter
Build Y3 Redrum

29) Mouce: Move Y1 Squeak Zoltar

30) zoltar: Sacrifice Y2 Redrum
Discover Y1 Zoltar G2 Greenbelt
Move Y3 Skitter Squeak

31) Mouce: Sacrifice Y2 Squeak
Move R2 Squeak Zoltar
Move G1 Squeak Zoltar

32) zoltar: Sacrifice R1 Zoltar
Attack R2 Zoltar

	Mouce: well played!
	zoltar: Thanks.  I thought it was a great, close game until I sacked the g2 for the two remaining y3s.  I figured you were going after 2 of the 3 r3s (I'd get one of them), and I've have the advantage, with all the yellow power, but far from a won game.  Your trading pieces instead and letting my Y3s chase and destroy your fleet proved instead disastrous.  Play again?
	Mouce: yeah, take me up for another challenge


13430)
Started: 2009.5.10, Ended: 2009.6.5
Participants: nycavri (S), molnar (N)
Winner: nycavri

1) molnar: Homeworld Y3 B1 G3
	molnar: OK, hopefully I can figure out the interface...

2) nycavri: Homeworld Y1 B2 G3

3) molnar: Build G1 Molnar

4) nycavri: Build G1 Nycavri

5) molnar: Trade G1 R1 Molnar

6) nycavri: Discover G1 Nycavri Y3 Mvb

7) molnar: Build G1 Molnar

8) nycavri: Build G1 Mvb

9) molnar: Discover G1 Molnar Y2 Poop

10) nycavri: Build G2 Nycavri

11) molnar: Move R1 Molnar Poop

12) nycavri: Build G2 Nycavri

13) molnar: Move G1 Poop Mvb

14) nycavri: Build G2 Mvb
Catastrophe Mvb G

15) molnar: Build G1 Molnar
	molnar: on purpose?
isn't that a lot of work for nothing?

16) nycavri: Trade G2 Y2 Nycavri
	nycavri: Gives me a size advantage.  You're building size 1s, while I already have size 2s . . .

17) molnar: Move G3 Molnar Poop

18) nycavri: Discover G2 Nycavri Y3 Mvg

19) molnar: Move G3 Poop Mvg

20) nycavri: Trade Y2 R2 Nycavri

21) molnar: Build G1 Molnar

22) nycavri: Move G2 Mvg Poop

23) molnar: Move G3 Mvg Poop

24) nycavri: Move G2 Poop Molnar

25) molnar: Build R1 Poop

26) nycavri: Build G1 Molnar
Catastrophe Molnar G
	nycavri: Thanks for the game.  Challenge anytime, and feel free to ask questions as swe play . . .



13412)
Variants: "Unrated, Hard time"
Started: 2009.5.21, Ended: 2009.5.27
Participants: Mouce (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R1 G3

2) Mouce: Homeworld B1 Y2 G3

3) zoltar: Build G1 Zoltar
	Mouce: here we go again! enjoy the game

4) Mouce: Build G1 Mouce

5) zoltar: Trade G1 Y1 Zoltar

6) Mouce: Build G1 Mouce

7) zoltar: Build Y1 Zoltar

8) Mouce: Discover G1 Mouce B3 Squeak

9) zoltar: Trade Y1 R1 Zoltar

10) Mouce: Trade G1 R1 Mouce

11) zoltar: Build R2 Zoltar

12) Mouce: Build R2 Mouce

13) zoltar: Trade R1 B1 Zoltar

14) Mouce: Build G1 Squeak

15) zoltar: Build Y1 Zoltar

16) Mouce: Trade G1 Y1 Squeak

17) zoltar: Discover Y1 Zoltar G2 Greenbelt

18) Mouce: Build Y2 Squeak

19) zoltar: Build Y2 Zoltar



13402)
Started: 2009.5.22, Ended: 2009.5.25
Participants: MikeYarrum (S), skykingt13 (N)
Winner: skykingt13

1) skykingt13: Homeworld Y2 G1 R3 *



13409)
Started: 2009.5.22, Ended: 2009.5.27
Participants: TwoShort (S), skykingt13 (N)
Winner: TwoShort

1) skykingt13: Homeworld G1 B2 R3

2) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy

3) skykingt13: Build R1 Skykingt13

	skykingt13: 'ello

4) TwoShort: Build G1 Twoshort
	skykingt13: good luck



5) skykingt13: Trade R1 G1 Skykingt13

6) TwoShort: Trade G1 Y1 Twoshort

7) skykingt13: Build R1 Skykingt13

8) TwoShort: Build G1 Twoshort

9) skykingt13: Trade R1 Y1 Skykingt13

10) TwoShort: Build G2 Twoshort

11) skykingt13: Build G2 Skykingt13

12) TwoShort: Discover G1 Twoshort G2 Graben

13) skykingt13: Discover G1 Skykingt13 Y3 Space

14) TwoShort: Sacrifice G3 Twoshort
Build G3 Graben
Build G3 Twoshort
Build G3 Twoshort

15) skykingt13: Move G1 Space Graben
Catastrophe Graben Green

16) TwoShort: Discover G3 Twoshort B2 Bluonia

17) skykingt13: Discover R3 Skykingt13 Y3 Space

18) TwoShort: Trade G2 R2 Twoshort

19) skykingt13: Move R3 Space Bluonia

20) TwoShort: Sacrifice R2 Twoshort
Attack R3 Bluonia
Pass
	TwoShort: I think you must have missed how sacrifices work?  Sometimes with new players, I'd encourage you to undo the first time you do something you obviously should not; but even doing something else now you'd be pretty doomed, so I'm just going to destroy you, sorry :)  If you want pointers for next time: start with a green ship, and never move it out of your homeworld.

21) skykingt13: Build Y1 Skykingt13

22) TwoShort: Trade G3 Y3 Bluonia



13380)
Variants: "Hard time"
Started: 2009.5.22, Ended: 2009.5.26
Participants: skykingt13 (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 Y1 G3
	Jesse: Hello, and have a good game.

2) skykingt13: Homeworld B1 Y2 G3
	skykingt13: 'ello good luck

3) Jesse: Build G1 Jesse

4) skykingt13: Build G1 Skykingt13

5) Jesse: Discover G1 Jesse B2 Time

6) skykingt13: Discover G1 Skykingt13 B3 Space


7) Jesse: Build G1 Time

8) skykingt13: Build G2 Space

9) Jesse: Build G2 Jesse

10) skykingt13: Trade G2 Y2 Space

11) Jesse: Trade G1 Y1 Time


12) skykingt13: Build G1 Skykingt13

13) Jesse: Build Y1 Time

14) skykingt13: Build G2 Space

15) Jesse: Discover Y1 Time G3 Energy


16) skykingt13: Trade G2 R2 Space

17) Jesse: Sacrifice G2 Jesse
Build Y2 Energy
Build Y3 Time

18) skykingt13: Build Y3 Space

19) Jesse: Trade Y1 R1 Time

20) skykingt13: Trade Y2 G2 Space


21) Jesse: Build G2 Jesse

22) skykingt13: Build R1 Space

23) Jesse: Sacrifice G3 Jesse
Build G2 Time
Build G3 Jesse
Build R1 Time

24) skykingt13: Discover R2 Space Y2 Sky

25) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y1 Time
Build Y3 Energy

26) skykingt13: Sacrifice G3 Skykingt13
Build R2 Sky
Build R2 Space
Build R3 Sky

27) Jesse: Sacrifice Y2 Energy
Move Y3 Energy Skykingt13
Discover G1 Time B3 Will

28) skykingt13: Sacrifice Y3 Space
Move R3 Sky Jesse
Move R2 Sky Jesse
Pass
	Jesse: That would have been a good way to gain a red advantage, if it hadn't left your homeworld undefended.  You could almost get away with it, but I think I have it covered.  A better alternative would have been to trade your g3 for an r3, a move I had been considering myself to improve my homeworld defense and my red distribution.

29) Jesse: Sacrifice R1 Time
Attack G1 Skykingt13
	Jesse: Thanks for the game.  You played an excellent opening, forcing me to let you take a few small advantages.  Things didn't go wrong for you until your discovery of Sky let me grab the remainder of the yellow.



13461)
Variants: "Unrated, Hard time"
Started: 2009.5.22, Ended: 2009.6.11
Participants: MadWuher (S), skykingt13 (N)
Winner: MadWuher

1) skykingt13: Homeworld B2 R1 G3


2) MadWuher: Homeworld R2 B3 G3

3) skykingt13: Build G1 Skykingt13

4) MadWuher: Build G1 Madwuher

5) skykingt13: Trade G1 Y1 Skykingt13

6) MadWuher: Trade G1 Y1 Madwuher

7) skykingt13: Build G1 Skykingt13

8) MadWuher: Build G1 Madwuher

9) skykingt13: Discover G1 Skykingt13 Y3 Space

10) MadWuher: Discover G1 Madwuher B1 Bologna

11) skykingt13: Build G1 Skykingt13

12) MadWuher: Build G2 Madwuher

13) skykingt13: Build Y1 Skykingt13

14) MadWuher: Build Y2 Madwuher

15) skykingt13: Move Y1 Skykingt13 Space

16) MadWuher: Build G2 Bologna

17) skykingt13: Discover Y1 Space R1 Sky

18) MadWuher: Move Y2 Madwuher Sky

19) skykingt13: Sacrifice G1 Skykingt13
Build Y2 Sky

20) MadWuher: Attack Y2 Sky

21) skykingt13: Sacrifice G3 Skykingt13
Build Y2 Sky
Build Y3 Skykingt13
Build Y3 Skykingt13
Catastrophe Sky Yellow

22) MadWuher: Trade G2 Y2 Bologna

23) skykingt13: Trade Y3 G3 Skykingt13

24) MadWuher: Build Y1 Bologna

25) skykingt13: Discover Y1 Skykingt13 B3 Sky

26) MadWuher: Discover G1 Bologna Y3 Edora

27) skykingt13: Move G1 Space Bologna

28) MadWuher: Trade Y1 R1 Bologna

29) skykingt13: Trade Y1 R1 Sky

30) MadWuher: Attack G1 Bologna

31) skykingt13: Build Y1 Skykingt13


32) MadWuher: Build R2 Bologna

33) skykingt13: Move Y1 Skykingt13 Sky

34) MadWuher: Build G1 Edora

35) skykingt13: Move G3 Skykingt13 Sky

36) MadWuher: Move R2 Bologna Edora

	MadWuher: Thanx for the game.


13289)
Variants: "Hard time"
Started: 2009.5.22, Ended: 2009.6.8
Participants: Qat (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B2 G3

2) Qat: Homeworld Y3 B1 G3
	agentofchaos: Hi there, sorry I didn't start sooner, I've been very busy recently. Enjoy the game. 

3) agentofchaos: Build G1 Agentofchaos
	Qat: No problem. Have fun yourself.

4) Qat: Build G1 Qat

5) agentofchaos: Build G1 Agentofchaos

6) Qat: Build G2 Qat

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) Qat: Discover G2 Qat B2 Chaos

9) agentofchaos: Trade G1 R1 Agentofchaos

10) Qat: Build G1 Qat

11) agentofchaos: Build Y1 Agentofchaos

12) Qat: Trade G1 Y1 Qat

13) agentofchaos: Build G1 Agentofchaos

14) Qat: Build Y2 Qat

15) agentofchaos: Build Y2 Agentofchaos

16) Qat: Move Y1 Qat Chaos

17) agentofchaos: Discover Y1 Agentofchaos G3 Zool

18) Qat: Trade G1 R1 Qat

19) agentofchaos: Build R2 Agentofchaos

20) Qat: Build R2 Qat

21) agentofchaos: Move R2 Agentofchaos Zool

22) Qat: Discover R2 Qat G2 Produce

23) agentofchaos: Build R2 Zool

24) Qat: Sacrifice G2 Chaos
Build R3 Qat
Build R3 Produce

25) agentofchaos: Move R2 Zool Chaos

26) Qat: Discover Y1 Chaos B3 Whoosh

27) agentofchaos: Build R3 Zool

28) Qat: Move R3 Qat Chaos

29) agentofchaos: Sacrifice Y1 Zool
Discover R2 Chaos Y3 Kakradoom

30) Qat: Sacrifice Y2 Qat
Move R3 Produce Whoosh
Move R2 Produce Whoosh

31) agentofchaos: Move Y1 Agentofchaos Zool

32) Qat: Trade R2 G2 Whoosh

33) agentofchaos: Trade R1 B1 Agentofchaos

34) Qat: Trade R3 B3 Whoosh

35) agentofchaos: Move B1 Agentofchaos Kakradoom

36) Qat: Discover B3 Whoosh G2 Produce

37) agentofchaos: Build Y1 Zool

38) Qat: Build Y2 Whoosh

39) agentofchaos: Trade B1 G1 Kakradoom

40) Qat: Sacrifice Y2 Whoosh
Move R3 Chaos Whoosh
Move B3 Produce Kakradoom

41) agentofchaos: Discover R2 Kakradoom Y2 Kastria

42) Qat: Sacrifice G2 Whoosh
Build Y2 Whoosh
Build Y3 Whoosh

43) agentofchaos: Move Y2 Agentofchaos Whoosh
Catastrophe Whoosh Y

44) Qat: Sacrifice R1 Qat
Attack G1 Kakradoom

45) agentofchaos: Trade G1 Y1 Agentofchaos

46) Qat: Build G1 Qat



13483)
Started: 2009.5.22, Ended: 2009.6.19
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld R1 B3 G3

2) TwoShort: Homeworld B1 R2 G3

3) zoltar: Build G1 Zoltar

4) TwoShort: Build G1 Twoshort

5) zoltar: Trade G1 Y1 Zoltar

6) TwoShort: Trade G1 Y1 Twoshort

7) zoltar: Build G1 Zoltar

8) TwoShort: Build G1 Twoshort

9) zoltar: Trade G1 B1 Zoltar

10) TwoShort: Trade G1 B1 Twoshort

11) zoltar: Build B2 Zoltar

12) TwoShort: Build B2 Twoshort

13) zoltar: Trade B1 R1 Zoltar

14) TwoShort: Build G1 Twoshort

15) zoltar: Build G1 Zoltar

16) TwoShort: Discover B1 Twoshort G3 Grogar

17) zoltar: Discover B2 Zoltar G2 Greenbelt

18) TwoShort: Build G1 Twoshort

19) zoltar: Build G2 Zoltar

20) TwoShort: Discover G1 Twoshort B3 Bonanza

21) zoltar: Sacrifice G2 Zoltar
Build Y1 Zoltar
Build Y2 Zoltar

22) TwoShort: Sacrifice G3 Twoshort
Build G2 Bonanza
Build G2 Twoshort
Build G3 Twoshort

23) zoltar: Move Y1 Zoltar Greenbelt

24) TwoShort: Sacrifice B2 Twoshort
Trade G2 Y2 Bonanza
Trade G2 R2 Twoshort

25) zoltar: Discover Y2 Zoltar G2 Greendale

26) TwoShort: Discover G1 Twoshort Y3 Yolonda

27) zoltar: S G3 Zoltar
Build Y2 Greendale
Build Y3 Greenbelt
Build Y3 Zoltar

28) TwoShort: Sacrifice G1 Yolonda
Build Y3 Twoshort

29) zoltar: Move R1 Zoltar Greenbelt

30) TwoShort: Build G1 Twoshort

31) zoltar: Build R1 Greenbelt

32) TwoShort: Discover R2 Twoshort G3 Gondor

33) zoltar: Move Y2 Greendale Grogar

34) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Bonanza
Build B1 Grogar
	zoltar: yep -- I'm doomed!

	zoltar: Yep, with the factory, the rest of the ships are yours.  Good game, as always!


13482)
Started: 2009.5.22, Ended: 2009.5.28
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar



13290)
Variants: "Hard time"
Started: 2009.5.22, Ended: 2009.6.12
Participants: zoltar (S), agentofchaos (N)
Winner: zoltar

1) agentofchaos: Homeworld R3 B1 G3

2) zoltar: Homeworld B2 R3 G3

3) agentofchaos: Build G1 Agentofchaos

4) zoltar: Build G1 Zoltar

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) zoltar: Trade G1 Y1 Zoltar

7) agentofchaos: Build G1 Agentofchaos

8) zoltar: Build G1 Zoltar

9) agentofchaos: Discover Y1 Agentofchaos B2 Groove

10) zoltar: Trade G1 B1 Zoltar

11) agentofchaos: Build G1 Agentofchaos

12) zoltar: Build B1 Zoltar

13) agentofchaos: Trade G1 R1 Agentofchaos

14) zoltar: Trade B1 R1 Zoltar

15) agentofchaos: Build G1 Agentofchaos

16) zoltar: Build B1 Zoltar

17) agentofchaos: Trade G1 Y1 Agentofchaos

18) zoltar: Discover B1 Zoltar G1 Greenbelt

19) agentofchaos: Build Y2 Agentofchaos

20) zoltar: Build B2 Greenbelt

21) agentofchaos: Build Y2 Agentofchaos

22) zoltar: Build B3 Greenbelt

23) agentofchaos: Build G1 Agentofchaos

24) zoltar: Trade B3 Y3 Greenbelt

25) agentofchaos: Discover Y2 Agentofchaos G2 Blackguard

26) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenbelt
Build Y3 Zoltar
Build B3 Zoltar

27) agentofchaos: Build Y3 Blackguard

28) zoltar: Trade B3 G3 Zoltar

29) agentofchaos: Move G1 Agentofchaos Blackguard

30) zoltar: Build G2 Zoltar

31) agentofchaos: Move G1 Agentofchaos Groove

32) zoltar: Sacrifice Y3 Greenbelt
Move G3 Zoltar Greenbelt
Discover G3 Greenbelt Y3 Yellowstone
Move B2 Greenbelt Groove

33) agentofchaos: Move G1 Groove Agentofchaos

34) zoltar: Sacrifice G3 Yellowstone
Build Y3 Greenbelt
Build B3 Greenbelt
Build B3 Groove

35) agentofchaos: Discover Y1 Groove R1 Heme

36) zoltar: Build B3 Zoltar

37) agentofchaos: Move R1 Agentofchaos Blackguard

38) zoltar: Sacrifice B2 Groove
Trade B3 R3 Greenbelt
Trade B3 G3 Zoltar

39) agentofchaos: Build R2 Blackguard

40) zoltar: Sacrifice G3 Zoltar
Build B2 Groove
Build B3 Greenbelt
Build B3 Zoltar

41) agentofchaos: Move R2 Blackguard Heme

42) zoltar: Trade B3 G3 Zoltar

43) agentofchaos: Sacrifice Y3 Blackguard
Move R2 Heme Zoltar
Move R1 Blackguard Heme
Move R1 Heme Zoltar
Catastrophe Zoltar R

44) zoltar: Sacrifice Y3 Greenbelt
Move G2 Zoltar Agentofchaos
Move G3 Zoltar Agentofchaos
Move B3 Groove Agentofchaos
Catastrophe Agentofchaos G

45) agentofchaos: Build Y3 Blackguard

46) zoltar: Sacrifice Y2 Greenbelt
Move Y1 Zoltar Agentofchaos
Move Y3 Zoltar Agentofchaos
Catastrophe Agentofchaos Y

	zoltar: Well, I had the extra 3 big blue ships, so I just had to bide my time and grab as many big ships left as possible and then slowly attack, but this ended things quickly.  Play again?
	agentofchaos: Sure I'd like a rematch, see if I can do better :-)


13275)
Started: 2009.5.22, Ended: 2009.6.19
Participants: zoltar (S), ts52 (N)
Winner: zoltar

1) ts52: Homeworld B1 Y2 G3

2) zoltar: Homeworld R1 B3 G3
	ts52: Have a good game.

3) ts52: Build G1 Ts52

4) zoltar: Build G1 Zoltar

5) ts52: Trade G1 B1 Ts52

6) zoltar: Trade G1 Y1 Zoltar

7) ts52: Discover B1 Ts52 G3 Kermit

8) zoltar: Build G1 Zoltar

9) ts52: Build B1 Kermit

10) zoltar: Trade G3 B3 Zoltar

11) ts52: Build B2 Kermit

12) zoltar: Build B2 Zoltar

13) ts52: Trade B2 Y2 Kermit

14) zoltar: Trade B3 G3 Zoltar

15) ts52: Build G1 Ts52

16) zoltar: Trade G1 R1 Zoltar

17) ts52: Trade B1 R1 Kermit

18) zoltar: Discover B2 Zoltar G2 Greenbelt

19) ts52: Build R2 Kermit

20) zoltar: Move R1 Zoltar Greenbelt

21) ts52: M R2 Kermit Ts52

22) zoltar: Build R2 Greenbelt

23) ts52: Sacrifice G3 Ts52
Build R2 Ts52
Build R3 Ts52
Build R3 Kermit

24) zoltar: Trade R2 Y2 Greenbelt

25) ts52: Trade R3 G3 Ts52
	zoltar: Good Job. I think I'm toast.

26) zoltar: Build R2 Greenbelt

27) ts52: D R3 Kermit Y1 Slimey

28) zoltar: Discover R2 Greenbelt Y1 Yellowstone

29) ts52: Build Y3 Kermit

30) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build R3 Yellowstone
Build R3 Greenbelt

31) ts52: Discover R2 Ts52 Y3 Bigbird

32) zoltar: Trade Y3 G3 Zoltar

33) ts52: Sacrifice Y2 Kermit
Move R1 Kermit Yellowstone
Move R2 Bigbird Yellowstone
Catastrophe Yellowstone Red

34) zoltar: Build G1 Zoltar

35) ts52: Discover R3 Slimey Y3 Bigbird

36) zoltar: Discover B2 Greenbelt Y3 Yellowstone

37) ts52: Move G1 Ts52 Bigbird

38) zoltar: Build Y1 Greenbelt

39) ts52: Build G1 Ts52

40) zoltar: Build Y1 Greenbelt

41) ts52: Build Y2 Kermit

42) zoltar: Sacrifice Y2 Greenbelt
Move Y1 Greenbelt Kermit
Move Y1 Greenbelt Kermit
Catastrophe Kermit Y

43) ts52: Build R1 Bigbird

44) zoltar: Build Y1 Zoltar

45) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G2 Ts52
Build G3 Ts52

46) zoltar: Move Y1 Zoltar Greenbelt

47) ts52: Move R2 Ts52 Kermit

48) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar
Build Y2 Greenbelt

49) ts52: Trade G2 Y2 Ts52

50) zoltar: Build Y3 Greenbelt

51) ts52: Move Y2 Ts52 Kermit

52) zoltar: Move Y3 Greenbelt Kermit

53) ts52: Discover Y2 Kermit G2 Robin

54) zoltar: Sacrifice R1 Greenbelt
Attack R2 Kermit

55) ts52: Move R1 Bigbird Robin

56) zoltar: Attack B1 Kermit

57) ts52: Build R1 Robin

58) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Yellowstone
Build B2 Kermit

59) ts52: Move R1 Robin Yellowstone

60) zoltar: Discover B1 Yellowstone B2 Blueridge

61) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Yellowstone
Build R2 Yellowstone

62) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Kermit
Build B3 Yellowstone

63) ts52: Attack B2 Yellowstone

64) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B3 Yellowstone
Pass

65) ts52: Move R2 Yellowstone Blueridge

66) zoltar: Sacrifice R2 Kermit
Attack R2 Yellowstone
Attack B2 Yellowstone

67) ts52: Sacrifice G2 Bigbird
Build G2 Bigbird
Build R2 Blueridge

68) zoltar: Move Y3 Kermit Blueridge

69) ts52: Attack B1 Blueridge

70) zoltar: Move B3 Yellowstone Robin
	zoltar: My ships are bigger than your ships!

71) ts52: Sacrifice Y2 Robin
Discover R3 Bigbird Y2 Littlebird
Move G2 Bigbird Littlebird

72) zoltar: Move Y1 Greenbelt Kermit

73) ts52: Move G1 Bigbird Littlebird

74) zoltar: Sacrifice G1 Zoltar
Build Y3 Zoltar

75) ts52: Build G1 Littlebird

76) zoltar: Sacrifice Y3 Zoltar
Move B1 Kermit Ts52
Move B2 Kermit Ts52
Move B3 Yellowstone Ts52

77) ts52: Trade G3 Y3 Ts52

78) zoltar: Sacrifice R2 Yellowstone
Attack G1 Ts52
Attack Y3 Ts52

	zoltar: Good game, though it got rather one-sided after I got the advantage and slowly maneuvered to grab most of the pieces.  Play again?
	ts52: Wow. I'm really out of it today. I knew it was all but over a while ago, but I totally missed the fact that you'd moved all those ships into my homeworld. Sigh, just out of it toady. Anyway, well played. Thanks for the game.
	ts52: Sure, I'd be glad to play again.


13486)
Started: 2009.5.23, Ended: 2009.5.29
Participants: Deudanann (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Deudanann: Homeworld R1 B2 G3
	ts52: Have a good game.

3) ts52: Build G1 Ts52

4) Deudanann: Build G1 Deudanann

5) ts52: Trade G1 B1 Ts52

6) Deudanann: Trade G1 Y1 Deudanann

7) ts52: Discover B1 Ts52 G3 Kermit

8) Deudanann: Discover Y1 Deudanann R3 Yipyip

9) ts52: Build G1 Ts52

10) Deudanann: Build G1 Deudanann

11) ts52: Build B1 Kermit



13485)
Started: 2009.5.23, Ended: 2009.5.27
Participants: Deudanann (S), MikeYarrum (N)
Winner: Deudanann



13478)
Variants: "Unrated, Hard time"
Started: 2009.5.25, Ended: 2009.5.27
Participants: Mouce (S), mzmzmz (N)
Winner: mzmzmz

1) mzmzmz: Homeworld R1 G3 B3

2) Mouce: Homeworld B1 Y2 G3

3) mzmzmz: Build B1 Mzmzmz

4) Mouce: Build G1 Mouce
	Mouce: have a great game!

5) mzmzmz: Trade B1 Y1 Mzmzmz
	mzmzmz: You too.  This is my first time playing this, it seems like a good game.

6) Mouce: Build G1 Mouce

7) mzmzmz: Build B1 Mzmzmz
	Mouce: i've only played it a handful of times, but it has great depth and a lot of possibility for creativity. the community here has some very strong players, too
	mzmzmz: cool.  I'll have to get a set of these pieces and try it out offline some time :)

8) Mouce: Discover G1 Mouce B3 Whisker

9) mzmzmz: Discover B1 Mzmzmz G2 Vigor

	mzmzmz: ?


13481)
Variants: "Unrated, Hard time"
Started: 2009.5.27, Ended: 2009.7.8
Participants: mzmzmz (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) mzmzmz: Homeworld G3 Y1 B3
	MadWuher: Hi there.

3) MadWuher: Build G1 Madwuher

4) mzmzmz: Build B1 Mzmzmz

5) MadWuher: Trade G1 Y1 Madwuher
	mzmzmz: Hello

6) mzmzmz: Discover B1 Mzmzmz G2 Carpet

7) MadWuher: Build Y1 Madwuher

8) mzmzmz: Build B1 Carpet

9) MadWuher: Discover Y1 Madwuher G3 Edora

10) mzmzmz: Trade B1 R1 Carpet

11) MadWuher: Build Y2 Edora

12) mzmzmz: Build B1 Mzmzmz

13) MadWuher: Discover Y1 Edora G2 Bologna

14) mzmzmz: Build B1 Carpet

15) MadWuher: Build Y2 Bologna

16) mzmzmz: Build B2 Carpet

17) MadWuher: Build Y2 Madwuher

18) mzmzmz: Build B2 Mzmzmz

19) MadWuher: Sacrifice G3 Madwuher
Build Y3 Edora
Build Y3 Madwuher
Build Y3 Bologna

20) mzmzmz: Trade B2 G2 Carpet

21) MadWuher: Trade Y3 G3 Madwuher

22) mzmzmz: Build B2 Carpet

23) MadWuher: Build Y3 Madwuher

24) mzmzmz: Trade B3 R3 Mzmzmz

25) MadWuher: Trade Y3 R3 Madwuher

26) mzmzmz: Build B3 Mzmzmz

27) MadWuher: Build Y3 Madwuher

28) mzmzmz: Trade B1 G1 Carpet

29) MadWuher: Build G1 Madwuher

30) mzmzmz: Move B3 Mzmzmz Carpet

31) MadWuher: Discover G1 Madwuher R3 Camelot

32) mzmzmz: Move B2 Mzmzmz Bologna

33) MadWuher: Sacrifice Y1 Bologna
Discover Y2 Bologna Y1 Abydos

34) mzmzmz: Build B1 Bologna

35) MadWuher: Build R1 Madwuher

36) mzmzmz: Build B3 Bologna

37) MadWuher: Sacrifice R3 Madwuher
Attack B3 Bologna
Attack B2 Bologna
Attack B1 Bologna

38) mzmzmz: Move B1 Mzmzmz Bologna
Catastrophe Bologna B

39) MadWuher: Build G1 Madwuher

40) mzmzmz: Build R2 Mzmzmz

41) MadWuher: Build R2 Madwuher

	mzmzmz: Good game.


13494)
Started: 2009.5.27, Ended: 2009.7.24
Participants: zoltar (S), skykingt13 (N)
Winner: zoltar

1) skykingt13: Homeworld Y3 B2 G3

2) zoltar: Homeworld R1 B3 G3

3) skykingt13: Build G1 Skykingt13

4) zoltar: Build G1 Zoltar

5) skykingt13: Trade G1 R1 Skykingt13

6) zoltar: Trade G1 Y1 Zoltar

7) skykingt13: Discover R1 Skykingt13 G1 Space

8) zoltar: Build Y1 Zoltar

9) skykingt13: Build G1 Skykingt13

10) zoltar: Build Y1 Zoltar

11) skykingt13: Build R1 Space

12) zoltar: Discover Y1 Zoltar G2 Greenbelt

13) skykingt13: Build R2 Space

14) zoltar: Build Y2 Greenbelt

15) skykingt13: Trade G1 B1 Skykingt13

16) zoltar: Build Y2 Zoltar

17) skykingt13: Move B1 Skykingt13 Space

18) zoltar: Trade Y2 R2 Zoltar

19) skykingt13: Trade R2 Y2 Space


20) zoltar: Trade Y1 B1 Zoltar

21) skykingt13: Move R1 Space Skykingt13

22) zoltar: Discover R2 Zoltar G2 Greendale

23) skykingt13: Build R2 Space

24) zoltar: Move B1 Zoltar Greendale

25) skykingt13: Move R2 Space Greenbelt

26) zoltar: Sacrifice R2 Greendale
Attack R2 Greenbelt
Pass

27) skykingt13: Build R2 Space

28) zoltar: Build G1 Zoltar

29) skykingt13: Discover R2 Space B2 Sky

30) zoltar: Discover Y2 Greenbelt B1 Blueberry

31) skykingt13: Build R2 Space

32) zoltar: Build R3 Greenbelt

33) skykingt13: Sacrifice G3 Skykingt13
Build R3 Sky
Build R3 Skykingt13
Build B2 Space

34) zoltar: Build B3 Greendale

35) skykingt13: Move B1 Space Greendale


36) zoltar: Trade B1 Y1 Greendale

37) skykingt13: Trade R3 G3 Sky

38) zoltar: Sacrifice G3 Zoltar
Build Y2 Greendale
Build Y3 Blueberry
Build Y3 Zoltar

39) skykingt13: Sacrifice G3 Sky
Build B1 Greendale
Build R3 Sky
Build B3 Space

40) zoltar: Sacrifice Y2 Blueberry
Discover R3 Greenbelt G1 Greenville
Move B3 Greendale Space

41) skykingt13: Move R1 Skykingt13 Greenville

42) zoltar: Sacrifice R3 Greenville
Attack B3 Space
Attack Y2 Space
Attack R1 Space

43) skykingt13: Build R3 Greenville

44) zoltar: Sacrifice Y3 Zoltar
Discover R1 Space Y2 Yellowstone
Discover Y2 Space G2 Greenacres
Discover Y1 Greendale Y3 Oldyeller

45) skykingt13: Trade R3 G3 Skykingt13

46) zoltar: Build G3 Zoltar

47) skykingt13: Build G3 Skykingt13

48) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Yellowstone
Pass

49) skykingt13: Pass

50) zoltar: Move R3 Yellowstone Space

51) skykingt13: Pass

52) zoltar: Attack R2 Space

53) skykingt13: Pass

54) zoltar: Attack B2 Space

55) skykingt13: Pass

56) zoltar: Move G3 Zoltar Greendale

57) skykingt13: Pass

58) zoltar: Move G3 Greendale Oldyeller

59) skykingt13: Pass

60) zoltar: Move Y1 Oldyeller Space



13267)
Variants: "Hard time"
Started: 2009.5.27, Ended: 2009.6.15
Participants: agentofchaos (S), headphoned (W), zoltar (N), skykingt13 (E)
Winner: agentofchaos

1) zoltar: Homeworld R1 B2 G3

2) skykingt13: Homeworld B3 Y2 G3

3) agentofchaos: Homeworld B3 R1 G3

4) agentofchaos: Build G1 Agentofchaos
	agentofchaos: Hi everyone, enjoy the game. 

5) zoltar: Build G1 Zoltar

6) skykingt13: Build G1 Skykingt13

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) zoltar: Trade G1 Y1 Zoltar

9) skykingt13: Trade G1 R1 Skykingt13

10) agentofchaos: Build G1 Agentofchaos

11) zoltar: Build Y1 Zoltar

12) skykingt13: Build R1 Skykingt13

13) agentofchaos: Trade G1 R1 Agentofchaos

14) zoltar: Build Y1 Zoltar



13488)
Started: 2009.5.28, Ended: 2009.6.12
Participants: zoltar (S), MikeYarrum (N)
Winner: zoltar



13529)
Started: 2009.5.29, Ended: 2009.7.23
Participants: ts52 (S), jeep (N)
Winner: jeep

1) jeep: Homeworld R1 B2 G3

2) ts52: H Y2 B3 G3

3) jeep: Build G1 Jeep
	ts52: Have a good game. 

4) ts52: B G1 Ts52

5) jeep: Trade G1 Y1 Jeep

6) ts52: Trade G1 R1 Ts52

7) jeep: Build G1 Jeep

8) ts52: Build G1 Ts52

9) jeep: Build Y1 Jeep

10) ts52: Discover G1 Ts52 B1 Grover

11) jeep: Discover Y1 Jeep G3 Thumb

12) ts52: Build R1 Ts52
	jeep: Sorry for the delay.

13) jeep: Build Y1 Thumb
	ts52: no problem

14) ts52: Build R2 Ts52

15) jeep: Build Y2 Jeep

16) ts52: Move R2 Ts52 Grover

17) jeep: Build Y2 Thumb

18) ts52: Build R2 Ts52

19) jeep: Build Y3 Jeep

20) ts52: Build R2 Grover

21) jeep: Sacrifice Y3 Jeep
Discover G1 Jeep Y3 Temp
Discover Y1 Jeep Y3 Movement
Discover Y2 Jeep Y3 Lock

22) ts52: Build G1 Ts52
	ts52: Wow, well played. I didn't see that one coming...

23) jeep: Build G2 Jeep
	jeep: Thanks, now, can I take advantage?

24) ts52: Discover R2 Ts52 B1 Cookiemonster

25) jeep: Sacrifice G1 Temp
Build Y3 Movement

26) ts52: Move G1 Ts52 Cookiemonster

27) jeep: Sacrifice Y3 Movement
Discover G2 Jeep Y3 Temp
Discover Y1 Thumb B2 Cache
Discover Y2 Thumb B2 Cache2
	jeep: Sorry, late night.  I thought I'd already cashed the Y3.

28) ts52: Discover R1 Ts52 B1 Gonzo

29) jeep: Build G1 Jeep

30) ts52: Build G2 Ts52

31) jeep: Sacrifice G2 Temp
Build Y3 Cache
Build G2 Jeep

32) ts52: Sacrifice G3 Ts52
Build G2 Cookiemonster
Build G3 Ts52
Build R3 Ts52

33) jeep: Trade G3 B3 Jeep

34) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build R3 Cookiemonster

35) jeep: Move Y3 Cache Lock

36) ts52: Sacrifice G2 Ts52
Build G2 Ts52
Build R3 Gonzo

37) jeep: Build B3 Jeep
	jeep: I built that in the wrong place.  :(

38) ts52: Move G2 Ts52 Gonzo

39) jeep: Move Y3 Lock Jeep
	jeep: And now the slow plod towards the doomsday machine...

40) ts52: Pass

41) jeep: Move G2 Jeep Thumb

42) ts52: Pass
	ts52: This is very curious. I'm sure I'm going to lose, but I'm not sure how.... And I know I don't want to do anything. Not sure if it's really legal to pass, but SDG seems to accept it.
	jeep: I think passing is actually legal.  If nothing else, you could do a "no op" type move like: s g1 cookiemonster; b g1 cookiemonster

43) jeep: Move Y1 Thumb Jeep
	ts52: Right, that makes sense.

44) ts52: Pass

45) jeep: Move B3 Jeep Movement

46) ts52: Pass
	ts52: This is tough. With no transportation, I'm left to wait and watch you make your move...
	jeep: Nod, I'm about to make a move that would take several moves to undo if I later decide it's wrong, so I'm going to think about this for a little bit and not make the move at midnight.  ;)
	jeep: Okay, here's a move I can undo if needed and I know I want to make it. ;)

47) jeep: Move B3 Jeep Movement

48) ts52: Pass

49) jeep: Move Y1 Jeep Thumb

50) ts52: Pass

51) jeep: Move G2 Thumb Cache2
	jeep: *sigh* changed plans and had to undo a move I made earlier.  :(
	ts52: I'm still curious to see how you're going to get through. I'm starting to wonder if we've hit a stalemate.

52) ts52: Pass

53) jeep: Move Y2 Cache2 Thumb
	jeep: No, pretty sure my new plan will work, it's just slow.
	jeep: Bah, I guess I got off a line in my planned moves.  I wasn't supposed to move both blue3 to movement, only 1...  yet another wasted move.  Good thing there isn't a 50 move rule here.  ;)

54) ts52: Pass

55) jeep: Sacrifice G2 Cache2
Build G2 Jeep
Build B2 Movement

56) ts52: Pass

57) jeep: Move B3 Movement Jeep

58) ts52: Pass

59) jeep: Move G2 Jeep Thumb

60) ts52: Pass

61) jeep: Move G2 Thumb Cache

62) ts52: Pass

63) jeep: Move Y1 Cache Movement

64) ts52: Pass

65) jeep: Sacrifice G2 Cache
Build G2 Jeep
Build B2 Movement

66) ts52: Pass

67) jeep: Move Y1 Thumb Jeep
	ts52: Yep, that's going to hurt. But at least I'll be able to get some yellow...

68) ts52: Pass
	jeep: I hope not. ;)  But it's a tricky plan, so I don't want to make it in a rush.  I'm on vacation and will make my move when I'm settled at my destination and not on the road.

69) jeep: Move G2 Jeep Thumb

70) ts52: Pass
	ts52: Sorry for the delay. I was away on vacation.

71) jeep: Move Y2 Thumb Jeep

72) ts52: Pass

73) jeep: Sacrifice G2 Thumb
Build G2 Jeep
Build G3 Jeep

74) ts52: Pass

75) jeep: Move G1 Jeep Lock

76) ts52: Pass

77) jeep: Move G3 Jeep Lock

78) ts52: Pass

79) jeep: Move B3 Jeep Lock
	jeep: Woo Hoo, the action is about to start...

80) ts52: Pass
	ts52: Ok, let's see it! :)
	jeep: Gah!  Stupid typo... 

81) jeep: Move B2 Movement Grover

82) ts52: Attack B2 Grover

83) jeep: Sacrifice Y3 Jeep
Discover G2 Jeep Y3 Cache
Move B2 Movement Grover
Move B3 Movement Grover
Catastrophe Grover Blue

84) ts52: Build G1 Ts52
	ts52: Aha, the slow and painful death, I see... :)

85) jeep: Sacrifice G3 Lock
Build G3 Lock
Build G3 Lock
Build B1 Lock
	jeep: Yeah, I hope to make you dwindle down to just your homeworld and in the meantime, I'll recover faster the extra material faster than you do.  Then I'll have the opportunity to set up the doomsday and I'll be able to execute it before you have a chance to invade my space.  At least, that's the plan.

86) ts52: Trade R3 B3 Ts52
	ts52: Sorry for the delay.

87) jeep: Discover G3 Lock B2 Slow

88) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build R2 Ts52

89) jeep: Sacrifice G2 Cache
Build G2 Lock
Build Y3 Jeep

90) ts52: Build R3 Gonzo

91) jeep: Build B2 Lock

92) ts52: Sacrifice G1 Cookiemonster
Pass

93) jeep: Build G1 Slow

94) ts52: Sacrifice R1 Gonzo
Pass

95) jeep: Discover B3 Lock R1 Slayer

96) ts52: Sacrifice R1 Ts52
Pass
	jeep: I guess I need a red to make this plan work, eh?  Hmm...

97) jeep: Discover G3 Lock R1 Slayer2

98) ts52: Pass
	ts52: Yeah, I really didn't want to give one up, but I think it's my only shot at survival... ironically it may hasten my demise. :)

99) jeep: Move B1 Lock Slayer2
	ts52: And since I have no yellow, I can't move two ships in there to be able to take either of those systems. Yeah, I'm pretty much screwed...

	ts52: Yeah, unfortunately the only way to stop you was to get a small star of my own that I could park blues on, to keep you from building the doomsday machine. But there was just no way that was going to work. Excellent game. Now I know, never let yourself get shut out of yellow!
	jeep: Thanks for the game. It was good.  Shut out of any color is bad.  Shut out of yellow is really bad.  


13533)
Variants: "Unrated"
Started: 2009.5.29, Ended: 2009.6.10
Participants: johannz (S), riddick (N)
Winner: johannz

1) riddick: Homeworld B2 Y1 G3

2) johannz: Homeworld Y3 B2 G3

3) riddick: Build G1 Riddick

4) johannz: Build G1 Johannz

5) riddick: Discover G3 Riddick Y3 Nomansland

6) johannz: Discover G3 Johannz R1 Gateway

7) riddick: Build G1 Nomansland

8) johannz: Build G2 Johannz

9) riddick: Build G2 Riddick

10) johannz: Trade G2 Y2 Johannz

11) riddick: Trade G1 B1 Riddick

12) johannz: Move Y2 Johannz Gateway

13) riddick: Move B1 Riddick Nomansland

14) johannz: Build G1 Johannz

15) riddick: Build G2 Riddick

16) johannz: Move G1 Johannz Gateway

17) riddick: Build G2 Nomansland

18) johannz: Move G1 Gateway Nomansland
Catastrophe Nomansland Green

19) riddick: Move G2 Riddick Nomansland

20) johannz: Build G1 Johannz
	johannz: Sorry Bryan, I just had to do it :)
	johannz: Think of it as a learning experience

21) riddick: Build G1 Riddick

22) johannz: Trade G1 B1 Johannz

23) riddick: Trade G2 R2 Nomansland

24) johannz: Move B1 Johannz Gateway

25) riddick: Move G2 Riddick Nomansland
	riddick: Crap! If you think about it, I think you win this next turn. Think planetary sacrifice....
	riddick: Actually -- maybe I'm still safe -- for some reason I though you could sacrifice system markers, but I guess it's only ships.

26) johannz: Build Y1 Gateway
	johannz: Not sure why you thought I could win this turn, even with planetary sacrifice. Don't have enough green close enough.
But I can seriously weaken you.
Build y1 in gateway
sacrifice y2 in gateway, move b1 through nomansland into riddick
sacrifice g3 in gateway, build 2 b's in riddick, catastrope blue (including planets) in riddick, build y1 in gateway.
Now riddick is a y1 system, and directly accessible from my home world.
You still have some easy options to prevent this.

27) riddick: Trade G1 R1 Riddick

28) johannz: Trade G3 R3 Gateway

29) riddick: Move G2 Nomansland Riddick

30) johannz: Sacrifice Y2 Gateway
Move R3 Gateway Nomansland
Move R3 Nomansland Riddick

31) riddick: Build G1 Riddick

32) johannz: Attack G2 Riddick

	riddick: You the man! I think at this point I'd just be creating ships that you'll then attach until you can catastrophe the whole system. I bow before you're interplanetary prowess!!


13523)
Variants: "Hard time"
Started: 2009.5.30, Ended: 2009.7.6
Participants: zoltar (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B2 R1 G3
	Jesse: So, we meet again.  Have a good game.

2) zoltar: Homeworld B1 R3 G3

3) Jesse: Build G1 Jesse

4) zoltar: Build G1 Zoltar

5) Jesse: Trade G1 Y1 Jesse

6) zoltar: Trade G1 Y1 Zoltar

7) Jesse: Build G1 Jesse

8) zoltar: Build G1 Zoltar

9) Jesse: Trade G1 B1 Jesse

10) zoltar: Trade G1 B1 Zoltar

11) Jesse: Build B2 Jesse

12) zoltar: Build B2 Zoltar

13) Jesse: Discover B2 Jesse G3 Golem

14) zoltar: Trade B1 R1 Zoltar

15) Jesse: Build B1 Golem

16) zoltar: Build B3 Zoltar

17) Jesse: Build B3 Golem


18) zoltar: Trade B3 Y3 Zoltar

19) Jesse: Trade B1 R1 Golem

20) zoltar: Build R2 Zoltar

21) Jesse: Trade B3 Y3 Golem


22) zoltar: Discover R1 Zoltar G2 Greenbelt

23) Jesse: Build R2 Golem

24) zoltar: Move Y3 Zoltar Greenbelt

25) Jesse: Discover R2 Golem G2 Gorgon

26) zoltar: Build G1 Zoltar

27) Jesse: Build G1 Jesse

28) zoltar: Discover R2 Zoltar Y2 Yellowstone

29) Jesse: Build B1 Golem

30) zoltar: Move B2 Zoltar Greenbelt

31) Jesse: Move B1 Golem Gorgon


32) zoltar: Build B3 Greenbelt

33) Jesse: Build B3 Gorgon

34) zoltar: Trade B3 R3 Greenbelt

35) Jesse: Trade B3 Y3 Gorgon

36) zoltar: Build B3 Greenbelt

37) Jesse: Build B3 Gorgon


38) zoltar: Discover R3 Greenbelt B3 Bluemoon

39) Jesse: Build R2 Gorgon

40) zoltar: Build R3 Greenbelt

41) Jesse: Discover R1 Golem Y2 Yeti

42) zoltar: Sacrifice Y3 Greenbelt
Move R1 Greenbelt Bluemoon
Move R1 Bluemoon Gorgon
Move R3 Bluemoon Gorgon
Catastrophe Gorgon R

43) Jesse: Trade B3 R3 Gorgon
	zoltar: Yeah, looks like you've got a doomsday machine there and I'm pretty much doomed!
	Jesse: Yes, I'm afraid your turns are numbered, my friend.

44) zoltar: Sacrifice Y1 Zoltar
Discover B3 Greenbelt Y3 Yellowbelly

45) Jesse: Build R1 Gorgon

46) zoltar: Build B3 Greenbelt

47) Jesse: Move R3 Gorgon Zoltar

	zoltar: Yep, it's mate in 2.  Good game!


13547)
Variants: "No undo, Hard time"
Started: 2009.5.30, Ended: 2009.5.31
Participants: Qat (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B1 R3 G3

2) Qat: Homeworld B2 Y1 G3

3) zoltar: Build G1 Zoltar
	Qat: Hi there, good luck to you

4) Qat: Build G1 Qat

5) zoltar: Trade G1 Y1 Zoltar

6) Qat: Discover G1 Qat B3 Chaos

7) zoltar: Build G1 Zoltar

8) Qat: Build G1 Qat

9) zoltar: Trade G1 B1 Zoltar

10) Qat: Discover G1 Qat B3 Whoosh

11) zoltar: Build B1 Zoltar

12) Qat: Build G1 Qat

13) zoltar: Build G2 Zoltar

14) Qat: Build G2 Whoosh

15) zoltar: Trade G2 Y2 Zoltar

16) Qat: Trade G2 B2 Whoosh

17) zoltar: Build G2 Zoltar

18) Qat: Build G2 Whoosh

19) zoltar: Discover B1 Zoltar Y2 Yellowstone

20) Qat: Trade G2 Y2 Whoosh

21) zoltar: Discover B1 Zoltar G2 Greenbelt

22) Qat: Sacrifice G3 Qat
Build G2 Whoosh
Build G3 Chaos
Build G3 Qat

23) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B2 Greenbelt
Build B3 Yellowstone

24) Qat: Move B2 Whoosh Yellowstone

25) zoltar: Trade B3 R3 Yellowstone

26) Qat: Discover B2 Yellowstone Y1 Endgame

27) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Zoltar
Build B3 Yellowstone

	Qat: Cheers.
	zoltar: I thought you had the upper hand for a while when you threatened to get all the Greens, but breaking open with the Blue industry gave me the lead.


13484)
Started: 2009.6.3, Ended: 2009.6.10
Participants: TwoShort (S), aleis (N)
Winner: TwoShort

1) aleis: Homeworld G2 B3 Y3

2) TwoShort: Homeworld R1 B2 G3
	aleis: Hi there, just to let you know I'm new to both homeworld and SDG so bare with me if you will.

3) aleis: Build Y1 Aleis
	TwoShort: Welcome! I'll try to give you some tips from time to time, but they'll probably mostly be slightly to late to help you :)  For example, I'd recomend starting with a green ship.

4) TwoShort: Build G1 Twoshort

5) aleis: Build Y1 Aleis

6) TwoShort: Trade G1 Y1 Twoshort

7) aleis: Trade Y1 B1 Aleis

8) TwoShort: Build G1 Twoshort

9) aleis: Discover B1 Aleis G1 Acentari

10) TwoShort: Build G1 Twoshort

11) aleis: Build B1 Acentari

12) TwoShort: Discover G1 Twoshort B3 Bluonia

13) aleis: Trade B1 R1 Acentari

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Bluonia
Build G3 Twoshort

15) aleis: Move Y1 Aleis Acentari
	TwoShort: Essential Homeworlds tactic #1: The Factory. (this is a big part of why to start with a green ship)

16) TwoShort: Trade G2 R2 Bluonia

17) aleis: Build R1 Acentari

18) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Bluonia
Build G3 Twoshort

19) aleis: Trade Y3 G3 Aleis

20) TwoShort: Trade G3 Y3 Bluonia

21) aleis: Move R1 Acentari Aleis
	TwoShort: Unfortunately, it's too late to take the green now.  If you build another one, I'll sacrifice my big yellow to move a green of my own all the way to your Homeworld and cause a catastrophe.

22) TwoShort: Discover G2 Bluonia Y1 Yolonda

23) aleis: Build R2 Acentari

24) TwoShort: Sacrifice Y3 Bluonia
Move G1 Bluonia Yolonda
Move G1 Yolonda Aleis
Move G2 Yolonda Aleis
Catastrophe Aleis Green

25) aleis: Move R2 Acentari Aleis

26) TwoShort: Move G3 Twoshort Aleis



13530)
Started: 2009.6.3, Ended: 2010.6.29
Participants: MikeYarrum (S), aleis (N)
Winner: MikeYarrum

1) aleis: Homeworld G2 Y3 B3



13550)
Started: 2009.6.3, Ended: 2009.10.28
Participants: aleis (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) aleis: Homeworld G3 Y2 B3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) aleis: Build B1 Aleis

5) ts52: Trade G1 B1 Ts52

6) aleis: Trade B1 G1 Aleis
	aleis: Will try still fairly new at this,  

7) ts52: Build G1 Ts52

8) aleis: Build B1 Aleis

9) ts52: Discover B1 Ts52 G3 Kermit

10) aleis: Trade B1 R1 Aleis

11) ts52: Build B1 Kermit

12) aleis: Discover R1 Aleis G1 Porcky

13) ts52: Trade B1 R1 Kermit

14) aleis: Build B1 Aleis

15) ts52: Build G2 Ts52

16) aleis: Build R1 Porcky

17) ts52: Build R2 Kermit
	aleis: What command do i use to grow a ship?

18) aleis: Build R2 Porcky
	ts52: You can't actually grow a ship. You can only build a new ship with the green power (cloning the color of a ship you have in that system, using the smallest available size from the stash)

19) ts52: Trade B1 Y1 Kermit

20) aleis: Trade B1 Y1 Aleis

21) ts52: Move R1 Kermit Porcky
Catastrophe Porcky Red

22) aleis: Build B1 Aleis

23) ts52: B Y2 Kermit

24) aleis: Trade B1 R1 Aleis

25) ts52: Discover G2 Ts52 Y3 Bigbird

26) aleis: Discover Y1 Aleis G1 Elmer

27) ts52: Discover Y2 Kermit B1 Grover

28) aleis: Build Y2 Elmer

29) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G2 Ts52
Build G3 Ts52

30) aleis: Build Y3 Elmer

31) ts52: Move Y1 Kermit Elmer
Catastrophe Elmer Yellow

32) aleis: Trade B3 Y3 Aleis

33) ts52: Discover G2 Ts52 Y3 Zoe

34) aleis: Move G1 Aleis Grover

35) ts52: Sacrifice G3 Ts52
Build G1 Zoe
Build G3 Ts52
Build R1 Kermit



13284)
Variants: "Hard time"
Started: 2009.6.4, Ended: 2009.6.4
Participants: agentofchaos (S), Joe (N)
Winner: agentofchaos

1) Joe: Homeworld G1 Y2 B3

2) agentofchaos: Homeworld R3 B1 G3
	Joe: Hi agentofchaos, good luck (maybe you dont even need it, this is my first game ;) )

	agentofchaos: Hi Joe, thanks, I could always use some luck! I've played this a few times, but I'm no expert. I hope you enjoy it :-)

3) Joe: Discover B3 Joe R3 Dilant
	Joe: Hmmm some serious mistake here...
	Joe: Ahh indeed, no ships in my homeworld :( Shall I set up a new game and we will begin the same as here?




13580)
Variants: "Unrated"
Started: 2009.6.5, Ended: 2009.6.13
Participants: fumanstu (S), Joe (N)
Winner: Joe

1) Joe: Homeworld G1 Y2 B3
	Joe: Hi fumantsu! Good luck! (And smack me if I do something wrong...)



13584)
Variants: "Hard time"
Started: 2009.6.5, Ended: 2009.6.12
Participants: Joe (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B3 R2 G3

2) Joe: Homeworld G1 Y2 B3
	agentofchaos: Hi again Joe. I think it takes a while to get the hang of the rules in this game, it's a bit complicated I know. I hope you enjoy it anyway :-)
	Joe: Well, after reading I guess it is not THAT complicated, but such simple mistakes happen ;)


3) agentofchaos: Build G1 Agentofchaos

4) Joe: Build B1 Joe

5) agentofchaos: Build G1 Agentofchaos

6) Joe: Build B1 Joe

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) Joe: Trade B1 G1 Joe

9) agentofchaos: Build G2 Agentofchaos

10) Joe: Build G2 Joe

11) agentofchaos: Trade G1 B1 Agentofchaos

12) Joe: Build B1 Joe

13) agentofchaos: Build B2 Agentofchaos

14) Joe: Trade B1 R1 Joe

15) agentofchaos: Trade B2 Y2 Agentofchaos

16) Joe: Trade B3 Y3 Joe

17) agentofchaos: Discover G2 Agentofchaos Y1 Cymru

18) Joe: Discover G2 Joe Y3 Prok

19) agentofchaos: Build G1 Agentofchaos

20) Joe: Trade Y3 R3 Joe

21) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Agentofchaos
Build G3 Cymru
Build G3 Agentofchaos

22) Joe: Move R3 Joe Prok

23) agentofchaos: Trade G1 R1 Agentofchaos

24) Joe: Move R3 Prok Cymru

25) agentofchaos: Sacrifice R1 Agentofchaos
Attack R3 Cymru

26) Joe: Build B1 Joe

27) agentofchaos: Sacrifice Y2 Agentofchaos
Move R3 Cymru Prok
Move R3 Prok Joe

28) Joe: Move B1 Joe Prok

29) agentofchaos: Sacrifice B1 Agentofchaos
Trade G3 R3 Cymru

30) Joe: Build R1 Joe

31) agentofchaos: Sacrifice R3 Cymru
Attack R1 Joe
Attack R1 Joe
Attack G1 Joe

32) Joe: Move G2 Prok Joe

33) agentofchaos: Attack G2 Joe
	Joe: Tough one there...

	Joe: m g2 prok joe

	agentofchaos: Yes, once I got my r3 into your homeworld you were pretty well lost :-)
	Joe: I will resign with dignity then ;)
	Joe: Thx, enlightening experience!

	agentofchaos: Thanks for a fun game! We can play again any time :-)


13607)
Variants: "Unrated"
Started: 2009.6.8, Ended: 2009.6.11
Participants: ZackStack (S), Joe (N)
Winner: ZackStack

1) Joe: Homeworld Y1 G2 B3
	Joe: HI Zack! Good luck and... smack me if I make a BIG mistake ;)

2) ZackStack: Homeworld B3 R1 G3
	ZackStack: Hey Joe!  There's no luck in Homeworlds :-P  Have fun anyway! :D  I've only played around 10 games myself, but I'll point out anything really strange I see.

3) Joe: Build B1 Joe

4) ZackStack: Build G1 Zackstack

5) Joe: Build B1 Joe
	ZackStack: Well... I just learned a rule I had missed in my tabletop games!  I thought you could build any color of ship if you had green tech... The restriction on like color ships will require more planning!
	Joe: Yup, thought about it also in that way...


6) ZackStack: Trade G1 Y1 Zackstack

7) Joe: Discover B1 Joe G3 Prinsh

8) ZackStack: Build G1 Zackstack

9) Joe: Build B1 Prinsh

10) ZackStack: Discover G1 Zackstack B2 Azure

11) Joe: Build B2 Prinsh
	ZackStack: Nice work blocking up the blue ships for a bit!  It looks like I'm behind the learning curve now that I can't spawn any color ship I want!

12) ZackStack: Build G1 Azure
	Joe: That may be pure luck, not a strategy (for now) ;)


13) Joe: Trade B2 R2 Prinsh

14) ZackStack: Build Y1 Zackstack
	ZackStack: chuckle...  I know when I'm getting sharked :-D

15) Joe: Trade B3 Y3 Joe

16) ZackStack: Build Y2 Zackstack
	Joe: Ha! The longer road then...
	ZackStack: Of course my move should buy me a little time :-)
	ZackStack: Hmmm... Unexpected.  Nice move!

17) Joe: Move Y3 Joe Prinsh

18) ZackStack: Sacrifice Y2 Zackstack
Discover G1 Azure Y3 Sunshine
Move G1 Azure Sunshine
	Joe: We shall see... I am off home so dont know about playing today yet. Maaan this is interesting, I might get it on a table at home (though proxying with one Xeno stash instead of a Rainbow...).


19) Joe: Build B2 Joe
	ZackStack: I know what you mean about interesting!  This is my favorite Icehouse game and it got even better now that I'm playing the build tech right.
	ZackStack: Good luck with any table top play too!  I hope the colors don't end up confusing anyone too much.  Also, there is a three player unrated game waiting on the challenge board if you really want to break your brain (I've never played with more than two players...)

20) ZackStack: Move G1 Sunshine Joe

21) Joe: Trade Y3 R3 Prinsh

22) ZackStack: Build G1 Joe

23) Joe: Build B2 Joe
	ZackStack: Did you get a chance to play tabletop yesterday?
	Joe: Nope... all my tabletop plays (also with other games) happen rather irregularly, as my wife is not that interested in gaming, maybe except Stone Age a couple of times, so I have to resort to scarce playing with my Dad and my brother, who live nearby... And I have a lot of work around the house ;) So sometimes I invite them both to help me out and after that we can play a game or two. But I plan to soon!

24) ZackStack: Build G2 Sunshine

25) Joe: Sacrifice R2 Prinsh
Attack G1 Joe
Attack G1 Joe
	ZackStack: I know the feeling... My wife loves Alhambra and Ingenious so I get to play plenty of those.  I do have a weekly game club, but I rarely have sucess bringing out the pyramids there.

26) ZackStack: Move G1 Sunshine Joe
Catastrophe Joe Green
	Joe: Whew... I fought! :)
	ZackStack: Indeed.  I wondered how long until you zapped those guys... now to learn about catastrophes!

27) Joe: Trade B2 Y2 Joe

28) ZackStack: Build Y2 Zackstack
	ZackStack: Sorry about the undo... I forgot about the carriage return between commands...
	Joe: Ah, yes. Now I know the effect ;)

29) Joe: Build B2 Prinsh

30) ZackStack: Build G1 Zackstack
	ZackStack: Of course now I have to be a little less aggressive since I used so many of my own ships to do that...

31) Joe: Trade B2 Y2 Prinsh

32) ZackStack: Discover Y2 Zackstack R2 Crimson

33) Joe: Trade B1 R1 Joe

34) ZackStack: Sacrifice G3 Zackstack
Build Y3 Crimson
Build Y3 Zackstack
Build G1 Sunshine

35) Joe: Move R3 Prinsh Joe

36) ZackStack: Sacrifice Y3 Zackstack
Move Y3 Crimson Joe
Move G2 Sunshine Crimson
Move Y2 Crimson Joe
Catastrophe Joe Yellow

	ZackStack: Thanks for playing!  I'm looking forward to the rematch!


13595)
Started: 2009.6.8, Ended: 2009.6.28
Participants: Joe (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld G2 B1 Y3
	Joe: Hi Laurie! Good luck!
	Laurie_Menke: Hi Joe... you, too!  Sorry for the delay in getting started.  I moved this weekend and am just getting back into "normal" life.  ;o)

Let me know if you have any questions!

2) Joe: Homeworld R1 B2 G3
	Joe: No probs Laurie! Sure, if I will have some, I will shout out. Or if you see something utterly stupid :) shout back...

3) Laurie_Menke: Build Y1 Laurie_menke

4) Joe: Build G1 Joe

5) Laurie_Menke: Build Y1 Laurie_menke

6) Joe: Build G1 Joe

7) Laurie_Menke: Discover Y3 Laurie_menke G3 Jollygreengiant

8) Joe: Trade G3 R3 Joe

9) Laurie_Menke: Build Y1 Laurie_menke

10) Joe: Trade G1 B1 Joe

11) Laurie_Menke: Build Y2 Jollygreengiant

12) Joe: Build G1 Joe

13) Laurie_Menke: Discover Y1 Laurie_menke Y3 Bigyellowsun

14) Joe: Pass

15) Laurie_Menke: Discover Y1 Laurie_menke Y3 Bigyellowmoon

16) Joe: Build G1 Joe

17) Laurie_Menke: Discover Y2 Jollygreengiant Y2 Yellowsubmarine

18) Joe: Build B1 Joe
	Laurie_Menke: Hey, Joe... I just realized that I meant to make this an unrated game, but accidentally made it rated.  I'm sorry.  :o(  If you want to play another game (it takes a few to get the hang of it), feel free to challenge me any time, and definitely make it unrated.  :o)
	Joe: That's no problem :) And I cannot move effectively, as I forgot to include yellow in my starting point :D

19) Laurie_Menke: Build Y2 Laurie_menke
	Laurie_Menke: Right.  And I took advantage of that and used up all the yellow so it would be hard for you to trade for some.  ;o)  That's how I learned... just played a few games until I got the hang of what kind of mischief my opponent could cook up.  ;o)

20) Joe: Pass
	Joe: So I sit tight and wait...

21) Laurie_Menke: Trade Y2 B2 Laurie_menke

22) Joe: Build R1 Joe

23) Laurie_Menke: Sacrifice Y2 Yellowsubmarine
Move B2 Laurie_menke Bigyellowmoon
Move B2 Bigyellowmoon Joe
Catastrophe Joe B

24) Joe: Pass
	Laurie_Menke: Sorry... this game can be brutal sometimes.  :o(
	Joe: Yes, especially when you start weirdly ;)
I guess I am done for, as you can bash me with catastrophes on and on (one red and I am dead). Shall we call it quits now, rather than later?

25) Laurie_Menke: Build Y2 Laurie_menke
	Laurie_Menke: Sure.  You actually did quite well for one of your first games.  It took me several games just to understand what to do without having to ask my opponent for help all the time.  :o)  If you'd like to go again, feel free to challenge me any time.  And thanks for the fun!  :o)

	Joe: Thx for the game also! I will sure come back again ;)


13608)
Started: 2009.6.8, Ended: 2009.7.1
Participants: Joe (S), molnar (N)
Winner: Joe

1) molnar: Homeworld Y3 B1 G3
	Joe: Hi molnar! And good luck! :)

2) Joe: Homeworld B1 G2 Y3

3) molnar: Build G1 Molnar

4) Joe: Build Y1 Joe

5) molnar: Trade G1 R1 Molnar

6) Joe: Build Y1 Joe

7) molnar: Build G1 Molnar

8) Joe: Trade Y1 G1 Joe

9) molnar: Discover G1 Molnar Y2 Xxx

10) Joe: Build G1 Joe

11) molnar: Build G2 Molnar

12) Joe: Trade G1 B1 Joe

13) molnar: Move R1 Molnar Xxx

14) Joe: Discover G1 Joe Y3 Bob

15) molnar: Move G2 Molnar Xxx

16) Joe: Trade Y3 R3 Joe

17) molnar: Move G1 Xxx Molnar

18) Joe: Build R1 Joe

19) molnar: Trade G3 B3 Molnar

20) Joe: Move B1 Joe Bob

21) molnar: Build B2 Molnar

22) Joe: Build Y1 Joe

23) molnar: Move B3 Molnar Xxx

24) Joe: Build B2 Bob

25) molnar: Trade B2 R2 Molnar

26) Joe: Trade B2 R2 Bob

27) molnar: Build B2 Xxx

28) Joe: Move R1 Joe Bob

29) molnar: Trade B3 R3 Xxx

30) Joe: Build R1 Joe

31) molnar: Build B2 Xxx

32) Joe: Build G1 Bob

33) molnar: Trade B2 Y2 Xxx

34) Joe: Move R3 Joe Bob

35) molnar: Move R1 Xxx Bob
Catastrophe Bob Red

36) Joe: Move G1 Bob Joe

37) molnar: Move R3 Xxx Bob

38) Joe: Build G2 Joe

	molnar: huh? did I time out?
	Joe: Yup, unfortunately....


13643)
Variants: "Unrated, Sinister"
Started: 2009.6.11, Ended: 2010.1.25
Participants: johannz (S), untcodegeek (N), riddick (E)
Winner: riddick

1) untcodegeek: Homeworld B1 Y2 G3

2) riddick: Homeworld Y1 B2 G3

3) johannz: Homeworld G3 Y1 B3

4) untcodegeek: Build G1 Untcodegeek
	riddick: From the Homeworlds website -- http://www.wunderland.com/WTS/Ginohn/games/Homeworlds/HomeworldsRules.html -- "Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected." -- So wouldn't that mean that my 1 and 2 sized star system homeworld is correct? Phil shouldn't be able to get to me if my star sizes match his.
	johannz: I didn't say they were connected. I said they were "close together". Phil can go to a whatever-3, then straight to your homeworld. But if you had built a Y1, B3, he would have to go to a 2, then a 3, then your homeworld. Instead of 2 jumps away, you would be 3.

5) riddick: Build G1 Riddick
	riddick: Thanks man -- Phil and I will just be close to each other then this game.

6) johannz: Build B1 Johannz

	johannz: See forum message #7611 for details of issue 
	Aaron: Is riddick not able to play?  My tests show he is the current player.
	johannz: No, he is able to. The problem was earlier, on 2009-06-18 10:18:47, when untcodegeek accidently abandoned his homeworld. It glitched, but self-fixed when he undid the move.


13639)
Variants: "Unrated"
Started: 2009.6.12, Ended: 2009.6.22
Participants: ZackStack (S), Joe (N)
Winner: ZackStack

1) Joe: Homeworld Y3 B2 G3

2) ZackStack: Homeworld Y3 B1 G3
	Joe: And off we go! Good luck!

3) Joe: Build G1 Joe
	ZackStack: Nice looking color choices to begin... I think I'll borrow them :-) Enjoy the game!

4) ZackStack: Build G1 Zackstack
	Joe: Indeed ;)
You too!

5) Joe: Build G1 Joe

6) ZackStack: Discover G1 Zackstack B2 Grover

7) Joe: Trade G1 Y1 Joe

8) ZackStack: Build G1 Zackstack

9) Joe: Discover G1 Joe Y1 Fogo

10) ZackStack: Build G2 Grover

11) Joe: Move G1 Fogo Grover

12) ZackStack: Trade G2 R2 Grover

13) Joe: Build G2 Joe

14) ZackStack: Attack G1 Grover

15) Joe: Trade G3 R3 Joe

16) ZackStack: Trade G1 R1 Zackstack
	ZackStack: I sure wish I had enough room to sacrafice my big green ship... I'll just have to take your little one instead :-)

17) Joe: Build R1 Joe
	Joe: Well well... fighting, eh?

18) ZackStack: Trade G1 Y1 Grover

19) Joe: Discover R3 Joe Y1 Pope

20) ZackStack: Discover R2 Grover G1 Oscar

21) Joe: Move R3 Pope Joe

22) ZackStack: Build G1 Zackstack
	ZackStack: Ever get the 'Vader' theme in your head when you move those big warships? :-)

23) Joe: Build G2 Joe

24) ZackStack: Sacrifice G3 Zackstack
Build G2 Grover
Build G3 Grover
Build G3 Zackstack
	Joe: Hehe, nope, but I hummed it right now! :)

25) Joe: Move R3 Joe Oscar

26) ZackStack: Sacrifice Y1 Grover
Move R2 Oscar Grover

27) Joe: Build G3 Joe
	ZackStack: I sure like that trick :-)

28) ZackStack: Trade G2 Y2 Grover

29) Joe: Trade G3 R3 Joe

30) ZackStack: Sacrifice G3 Zackstack
Build G2 Zackstack
Build G3 Grover
Build G3 Zackstack

31) Joe: Build R1 Oscar
	ZackStack: I see you have a couple SDG games running... So, how are you liking Homeworlds so far?  

32) ZackStack: Discover G3 Grover Y1 Bigbird
	Joe: I like it! Mainly the thing that you have to think about many small things and im my phase now I am playing more or less intuitively. But once all of them *click* together, I will be able to foresee certain developments... Gotta buy another Rainbow stash or two ;)

33) Joe: Move Y1 Joe Oscar

34) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build R2 Grover
Build R2 Zackstack

35) Joe: Build R3 Joe

36) ZackStack: Sacrifice Y2 Grover
Move R2 Grover Bigbird
Move R2 Bigbird Joe
Catastrophe Joe Red

37) Joe: Trade G2 B2 Joe

38) ZackStack: Move G3 Bigbird Joe

39) Joe: Move R3 Oscar Joe
	ZackStack: Maybe 3 turns was optimistic... but possible.  Pull out the stops and show me I'm wrong :-)

40) ZackStack: Sacrifice R2 Zackstack
Attack R3 Joe
Attack G2 Joe
	Joe: Hehe, the space is vaaaaaaaaaaaaaast...


	ZackStack: Sorry Joe... the defense was a move to late I fear...
	Joe: Ah yesI forgot about the "attack where your ships are" part ;)

	Joe: Congrats! Will create a new one...



13634)
Started: 2009.6.12, Ended: 2009.9.8
Participants: MrStickman (S), face (N)
Winner: face

1) face: Homeworld R3 B2 G3
	MrStickman: Hiya! Glad you could make it!
	MrStickman: Hiya! Glad you could make it!

2) MrStickman: Homeworld G1 Y2 B3
	face: going to take some time getting used to these commands.

3) face: Build G1 Face
	MrStickman: You do know the clock is currently set to never refill, right? That might hurt during your trip. We can change it later, if you want...
	face: nope. had no idea what refill is. thought i was setting it to allow 60 days for each turn.

4) MrStickman: Build B1 Mrstickman

5) face: Trade G3 Y3 Face

6) MrStickman: Build B1 Mrstickman

7) face: Build Y1 Face
	MrStickman: Type "~vote accept 85" (without the quotation marks) to make the clock do what you wanted.

8) MrStickman: Trade B1 G1 Mrstickman

9) face: Build G2 Face

10) MrStickman: Discover G1 Mrstickman Y3 Lorem

11) face: Trade G2 R2 Face
	face: trade g2 r2 face
	face: i just put that in the wrong place. sorry.

12) MrStickman: Build G2 Lorem

13) face: Discover R2 Face Y1 Jabulani

14) MrStickman: Build G2 Lorem

15) face: Move R2 Jabulani Lorem
	MrStickman: Welcome back to the Kingdom of Loathing. Noob.

16) MrStickman: Move G2 Lorem Mrstickman

17) face: Attack G2 Lorem

18) MrStickman: Discover G1 Lorem Y2 Ipsum

19) face: Trade Y1 B1 Face

20) MrStickman: Trade B3 R3 Mrstickman

21) face: Discover B1 Face Y1 Algebra Chainsaw

22) MrStickman: Discover G1 Ipsum Y3 Dolor

23) face: Move B1 Algebra Lorem

24) MrStickman: Build R1 Mrstickman

25) face: Build G2 Face

26) MrStickman: Build G3 Dolor

27) face: Build G3 Lorem

28) MrStickman: Build G3 Dolor

29) face: Discover G1 Face Y1 Saveseats
	MrStickman: You're playing more quickly. If you back from camp, do you mind if I speed the clock up a tad?
	MrStickman: You're playing more quickly. If you back from camp, do you mind if I speed the clock up a tad?

30) MrStickman: Discover G3 Dolor B1 Sit

31) face: Trade G3 R3 Lorem
	face: i am officially done with the camp thing.

32) MrStickman: Sacrifice G3 Dolor
Build G3 Dolor
Build G3 Sit
Build B2 Mrstickman

33) face: Build B2 Lorem
	MrStickman: Type "~vote accept 87" (without the quotes) to speed things up a bit.
	MrStickman: By the way, Zach left town, so I informed him that he was signing up for this site. His handle is "Griffandor".
	face: geez this is getting interesting. had to break out the real pieces to better visualize what is going on.

34) MrStickman: Trade G2 Y2 Mrstickman
	MrStickman: This *is* a scary good game, so far. I figure ten more moves before I crack and revert to my usual bad gameplay. :)

35) face: Build G2 Saveseats

36) MrStickman: Move R1 Mrstickman Dolor

37) face: Move B2 Lorem Saveseats

38) MrStickman: Build R1 Dolor

39) face: Build B3 Saveseats

40) MrStickman: Move R1 Dolor Sit

41) face: Build B3 Lorem

42) MrStickman: Move B1 Mrstickman Dolor

43) face: Trade B2 Y2 Saveseats

44) MrStickman: Sacrifice G3 Sit
Build G3 Sit
Build B2 Dolor
Build B3 Mrstickman

45) face: Build Y1 Saveseats

46) MrStickman: Trade B1 Y1 Dolor

47) face: Move Y1 Saveseats Lorem
	MrStickman: Have I mentioned lately that I love the notepad section on these pages?

48) MrStickman: Sacrifice G3 Sit
Build G3 Sit
Build R1 Sit
Build B1 Dolor

49) face: Move G1 Saveseats Lorem
	MrStickman: Also, I think I like this game more on SDG than in real life. I can take ten minutes for my turn and not bother anybody.

50) MrStickman: Sacrifice Y2 Mrstickman
Move R1 Sit Lorem
Move R1 Sit Lorem
Catastrophe Lorem Red

51) face: Sacrifice Y2 Saveseats
Move G1 Lorem Sit
Move G2 Lorem Sit
Catastrophe Sit Green
	face: huh. i didn't think that move was worth your time. but it surprisingly doesn't change my move.

52) MrStickman: Discover B2 Dolor G1 Amet

53) face: Trade B3 G3 Lorem

54) MrStickman: Discover G1 Dolor B1 Adipiscing

55) face: Build B3 Lorem

56) MrStickman: Move R3 Mrstickman Lorem

57) face: Sacrifice Y3 Face
Move B1 Lorem Mrstickman
Move B3 Lorem Mrstickman
Discover G3 Lorem Y2 Goodgame
Catastrophe Mrstickman Blue



13501)
Variants: "Unrated"
Started: 2009.6.12, Ended: 2009.8.17
Participants: ZackStack (S), agentofchaos (N), mzmzmz (E)
Winner: ZackStack

1) agentofchaos: Homeworld R1 B2 G3

2) mzmzmz: Homeworld R2 G3 B3
	ZackStack: This will be my first game of Homeworlds with more than two players... Enjoy taking advantage of my noobness!  Have fun!

3) ZackStack: Homeworld Y1 B3 G3
	mzmzmz: My first with more than two too, and only my third game ever :)

4) agentofchaos: Build G1 Agentofchaos
	ZackStack: Well, clearly we need to gang up on Agent then ;-)  Have fun!
	agentofchaos: Looks like I could be in trouble...;-)

5) mzmzmz: Build B1 Mzmzmz

6) ZackStack: Build G1 Zackstack

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) mzmzmz: Build B1 Mzmzmz

9) ZackStack: Discover G1 Zackstack B2 Zaan

10) agentofchaos: Build G1 Agentofchaos

11) mzmzmz: Trade B1 Y1 Mzmzmz

12) ZackStack: Build G1 Zaan

13) agentofchaos: Trade G1 B1 Agentofchaos

14) mzmzmz: Discover B1 Mzmzmz G1 Clot

15) ZackStack: Trade G1 Y1 Zaan

16) agentofchaos: Build Y2 Agentofchaos

17) mzmzmz: Build B1 Clot

18) ZackStack: Build Y2 Zaan

19) agentofchaos: Trade Y2 R2 Agentofchaos

20) mzmzmz: Build Y2 Mzmzmz

21) ZackStack: Build G1 Zackstack

22) agentofchaos: Build Y2 Agentofchaos

23) mzmzmz: Move Y2 Mzmzmz Clot

24) ZackStack: Trade G1 R1 Zackstack

25) agentofchaos: Discover Y2 Agentofchaos G3 Draco

26) mzmzmz: Build Y2 Mzmzmz

27) ZackStack: Trade Y1 R1 Zaan

28) agentofchaos: Build G1 Agentofchaos

29) mzmzmz: Move B1 Clot Draco

30) ZackStack: Build G1 Zackstack

31) agentofchaos: Move R2 Agentofchaos Draco

32) mzmzmz: Trade B1 R1 Clot

33) ZackStack: Discover G1 Zaan Y3 Lemon

34) agentofchaos: Attack B1E Draco

35) mzmzmz: Build R2 Clot

36) ZackStack: Build G2 Lemon

37) agentofchaos: Build Y1 Agentofchaos
	ZackStack: Hey guys... sorry if this slows us down, but I'm leaving for a wedding out of state this weekend and will have no internet access while at my inlaws... I might get a chance to check in on Saturday... Otherwise, I'll check back in on Monday.

38) mzmzmz: Build Y3 Clot
	agentofchaos: Enjoy the wedding! :-)
	mzmzmz: Yeah, have fun.

39) ZackStack: Sacrifice G2 Lemon
Build Y3 Zaan
Build R2 Zackstack

40) agentofchaos: Build Y3 Draco

41) mzmzmz: Move R1 Clot Mzmzmz

42) ZackStack: Discover Y3 Zaan R3 Clifford

43) agentofchaos: Build R3 Draco

44) mzmzmz: Build R3 Clot

45) ZackStack: Sacrifice G1 Zackstack
Build R3 Zaan

46) agentofchaos: Trade R2 G2 Draco

47) mzmzmz: Build B1 Mzmzmz

48) ZackStack: Sacrifice G1 Lemon
Build Y3 Zaan

49) agentofchaos: Build R2 Draco

50) mzmzmz: Trade B1 G1 Mzmzmz

51) ZackStack: Trade R1 G1 Zackstack

52) agentofchaos: Build B1 Draco

53) mzmzmz: Build G2 Mzmzmz

54) ZackStack: Sacrifice Y3 Zaan
Move G1 Zackstack Zaan
Move G1 Zaan Clot
Move G1 Clot Mzmzmz
Catastrophe Mzmzmz Green
	ZackStack: Sorry mz... you made this too easy...

55) agentofchaos: Build B1 Draco

56) mzmzmz: Sacrifice Y2 Mzmzmz
Move B3 Mzmzmz Clot
Move Y3 Clot Mzmzmz
	mzmzmz: Yeah, I always forget that sacrifice rule.  I thought those greens would be safe for 1 turn . . .

57) ZackStack: Build G1 Zackstack

58) agentofchaos: Discover R3 Draco Y2 Trog

59) mzmzmz: Build B2 Clot

60) ZackStack: Trade R3 G3 Zaan

61) agentofchaos: Move B1 Draco Trog

62) mzmzmz: Trade B2 G2 Clot

63) ZackStack: Build G1 Zaan

64) agentofchaos: Sacrifice G2 Draco
Build R1 Trog
Build R3 Draco

65) mzmzmz: Build Y3 Clot

66) ZackStack: Move G1 Zaan Clifford

67) agentofchaos: Move G1 Agentofchaos Draco

68) mzmzmz: Build B2 Clot

69) ZackStack: Build G2 Zaan

70) agentofchaos: Build G2 Agentofchaos

71) mzmzmz: Move G2 Clot Mzmzmz

72) ZackStack: Sacrifice Y2 Zaan
Move G2 Zaan Draco
Move G3 Zaan Draco
Catastrophe Draco Green

73) agentofchaos: Discover G2 Agentofchaos Y3 Fallen

74) mzmzmz: Move R3 Clot Zaan

75) ZackStack: Build R2 Zackstack

76) agentofchaos: Build Y2 Agentofchaos
	ZackStack: I don't know if I'm being to aggressive in a multi-player game... but that was also too good to pass up!
	agentofchaos: Alas, all my beautiful ships...

77) mzmzmz: Trade B2 G2 Clot

78) ZackStack: Build Y2 Clifford

79) agentofchaos: Build G1 Agentofchaos

80) mzmzmz: Build R3 Clot

81) ZackStack: Move R2 Zackstack Mzmzmz

82) agentofchaos: Sacrifice Y2 Agentofchaos
Move R1 Trog Clot
Move R1 Clot Mzmzmz
Catastrophe Mzmzmz R

83) ZackStack: Move Y3 Clifford Clot

84) agentofchaos: Move R3 Trog Clifford
	ZackStack: Care to do the honors Agent?

85) ZackStack: Sacrifice Y2 Clifford
Move G1 Clifford Zaan
Move R1 Zaan Clot
	agentofchaos: Sorry Mz, this is too tempting to resist! ;-)

86) agentofchaos: Sacrifice Y1 Agentofchaos
Move R3 Clifford Zaan

87) ZackStack: Trade G1 R1 Zaan

88) agentofchaos: Trade R3 Y3 Zaan

89) ZackStack: Attack R3E Clot

90) agentofchaos: Trade B1 R1 Agentofchaos

91) ZackStack: Move R3 Clot Fallen

92) agentofchaos: Sacrifice G2 Fallen
Build Y1 Zaan
Build Y1 Agentofchaos

93) ZackStack: Attack B3E Clot

94) agentofchaos: Sacrifice R1 Agentofchaos
Attack R3E Zaan

95) ZackStack: Discover Y3 Clot G3 Rygel

96) agentofchaos: Attack R1S Zaan

97) ZackStack: Build Y2 Rygel

98) agentofchaos: Trade Y1 B1 Zaan

99) ZackStack: Attack Y3E Clot

100) agentofchaos: Sacrifice G1 Agentofchaos
Build B1 Trog

101) ZackStack: Move B3 Clot Rygel

102) agentofchaos: Sacrifice Y3 Zaan
Move B1 Trog Zackstack
Move B1 Trog Zackstack
Move B1 Zaan Zackstack
Catastrophe Zackstack B

103) ZackStack: Build B1 Rygel

104) agentofchaos: Trade Y1 G1 Agentofchaos

105) ZackStack: Move R1 Clot Rygel

106) agentofchaos: Trade R1 Y1 Zaan

107) ZackStack: Build B1 Rygel

108) agentofchaos: Discover G1 Agentofchaos Y3 Krakadoom

109) ZackStack: Sacrifice Y3 Clot
Move B1 Rygel Agentofchaos
Move B1 Rygel Agentofchaos
Move B3 Rygel Agentofchaos
Catastrophe Agentofchaos Blue

110) agentofchaos: Build G1 Agentofchaos

111) ZackStack: Build R1 Rygel

112) agentofchaos: Build Y1 Agentofchaos

113) ZackStack: Sacrifice Y3 Rygel
Move R1 Rygel Agentofchaos
Move R1 Rygel Agentofchaos
Move R3 Fallen Agentofchaos
Catastrophe Agentofchaos Red

	ZackStack: Good game Agent!  Perhaps we'll have to try with just the two of us sometime...


13647)
Variants: "No undo, Hard time"
Started: 2009.6.12, Ended: 2009.6.17
Participants: Qat (S), agentofchaos (N)
Winner: Qat

1) agentofchaos: Homeworld R2 B3 G3

2) Qat: Homeworld B1 Y2 G3

3) agentofchaos: Build G1 Agentofchaos

4) Qat: Build G1 Qat

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Qat: Build G1 Qat

7) agentofchaos: Build Y1 Agentofchaos

8) Qat: Discover G1 Qat B3 Whoosh

9) agentofchaos: Trade Y1 B1 Agentofchaos

10) Qat: Trade G1 B1 Qat

11) agentofchaos: Build Y1 Agentofchaos

12) Qat: Build B2 Qat

13) agentofchaos: Build B2 Agentofchaos

14) Qat: Discover B2 Qat G3 Verte

15) agentofchaos: Trade B2 R2 Agentofchaos

16) Qat: Sacrifice G3 Qat
Build B2 Verte
Build B2 Verte
Build B3 Qat

17) agentofchaos: Discover R2 Agentofchaos Y1 Krombe

18) Qat: Trade B2 R2 Verte

19) agentofchaos: Build B2 Agentofchaos

20) Qat: Sacrifice G1 Whoosh
Build B3 Verte

21) agentofchaos: Build Y2 Agentofchaos

22) Qat: Trade B3 Y3 Verte

23) agentofchaos: Discover R2 Krombe B3 Glurgon

24) Qat: Trade B3 G3 Qat

25) agentofchaos: Build G1 Agentofchaos

26) Qat: Build B3 Qat

27) agentofchaos: Trade R2 Y2 Glurgon

28) Qat: Discover B3 Qat Y3 Northward_ho

29) agentofchaos: Build G1 Agentofchaos

30) Qat: Discover B2 Verte Y1 Sandy

31) agentofchaos: Discover B2 Agentofchaos G1 Hagrol

32) Qat: Build Y3 Verte

33) agentofchaos: Move Y2 Agentofchaos Hagrol

34) Qat: Move R2 Verte Hagrol

35) agentofchaos: Trade G1 R1 Agentofchaos

36) Qat: Attack B2 Hagrol

37) agentofchaos: Sacrifice R1 Agentofchaos
Attack R2 Hagrol

38) Qat: Sacrifice B2 Hagrol
Trade B1 R1 Qat
Trade B3 R3 Northward_ho

39) agentofchaos: Move R2 Hagrol Glurgon

40) Qat: Sacrifice Y3 Verte
Move B2 Verte Sandy
Move B2 Sandy Agentofchaos
Move B2 Sandy Agentofchaos
Catastrophe Agentofchaos B

41) agentofchaos: Build Y1 Hagrol

42) Qat: Build Y3 Verte

43) agentofchaos: Sacrifice Y2 Glurgon
Move Y1 Hagrol Verte
Move Y1 Agentofchaos Verte
Catastrophe Verte Y

44) Qat: Discover R3 Northward_ho B1 Sapphire

45) agentofchaos: Build G1 Agentofchaos

46) Qat: Build G2 Qat

47) agentofchaos: Move G1 Agentofchaos Glurgon

48) Qat: Sacrifice G2 Qat
Build G2 Qat
Build R1 Sapphire

49) agentofchaos: Build G2 Glurgon

50) Qat: Discover G2 Qat Y3 Sahara

51) agentofchaos: Sacrifice G2 Glurgon
Build Y1 Hagrol
Build Y1 Hagrol

52) Qat: Build R1 Qat

53) agentofchaos: Build Y2 Agentofchaos

54) Qat: Trade G3 Y3 Qat

55) agentofchaos: Build Y3 Agentofchaos

56) Qat: Sacrifice Y3 Qat
Move R3 Sapphire Agentofchaos
Move R1 Sapphire Agentofchaos
Discover R1 Qat Y3 Gameover



13578)
Started: 2009.6.15, Ended: 2009.7.29
Participants: TwoShort (S), skykingt13 (N)
Winner: TwoShort

1) skykingt13: Homeworld B3 R2 G3

2) TwoShort: Homeworld R1 B3 G3

3) skykingt13: Build G1 Skykingt13


4) TwoShort: Build G1 Twoshort

5) skykingt13: Trade G1 Y1 Skykingt13

6) TwoShort: Trade G1 Y1 Twoshort

7) skykingt13: Build G1 Skykingt13

8) TwoShort: Build G1 Twoshort

9) skykingt13: Trade G1 B1 Skykingt13

10) TwoShort: Build G1 Twoshort

11) skykingt13: Build B1 Skykingt13

12) TwoShort: Trade G1 B1 Twoshort

13) skykingt13: Trade B1 R1 Skykingt13

14) TwoShort: Build G1 Twoshort



13663)
Variants: "Hard time"
Started: 2009.6.15, Ended: 2009.6.16
Participants: Qat (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) Qat: Homeworld G1 Y2 B3

3) zoltar: Build G1 Zoltar

4) Qat: Build B1 Qat

5) zoltar: Build G1 Zoltar

6) Qat: Trade B3 G3 Qat

7) zoltar: Trade G1 Y1 Zoltar

8) Qat: Build B1 Qat

9) zoltar: Trade G1 B1 Zoltar

10) Qat: Trade B1 Y1 Qat

11) zoltar: Build G1 Zoltar

12) Qat: Build B1 Qat

13) zoltar: Discover B1 Zoltar G2 Greenbelt

14) Qat: Build B2 Qat

15) zoltar: Build B2 Greenbelt

16) Qat: Discover B2 Qat G3 Verte

17) zoltar: Trade B2 Y2 Greenbelt

18) Qat: Build B2 Verte

19) zoltar: Build Y1 Greenbelt

20) Qat: Trade B1 R1 Qat

21) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build Y3 Zoltar
Build Y3 Greenbelt

22) Qat: Build R1 Qat
	Qat: Ouch

23) zoltar: Move Y3 Greenbelt Verte



13579)
Started: 2009.6.15, Ended: 2009.6.19
Participants: MikeYarrum (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3



13667)
Started: 2009.6.15, Ended: 2009.7.23
Participants: zoltar (S), agentofchaos (N)
Winner: zoltar

1) agentofchaos: Homeworld B3 R2 G3

2) zoltar: Homeworld R1 B3 G3
	agentofchaos: Hi again!

3) agentofchaos: Build G1 Agentofchaos

4) zoltar: Build G1 Zoltar

5) agentofchaos: Trade G1 Y1 Agentofchaos
	zoltar: Hi!

6) zoltar: Trade G1 Y1 Zoltar

7) agentofchaos: Build G1 Agentofchaos

8) zoltar: Build G1 Zoltar

9) agentofchaos: Trade G1 R1 Agentofchaos

10) zoltar: Trade G1 R1 Zoltar

11) agentofchaos: Build G1 Agentofchaos

12) zoltar: Build R2 Zoltar

13) agentofchaos: Build Y1 Agentofchaos

14) zoltar: Build Y2 Zoltar

15) agentofchaos: Build Y2 Agentofchaos

16) zoltar: Discover Y1 Zoltar G2 Greenbelt

17) agentofchaos: Trade Y1 B1 Agentofchaos

18) zoltar: Trade R1 B1 Zoltar

19) agentofchaos: Discover Y2 Agentofchaos G1 Drogue

20) zoltar: Move R2 Zoltar Greenbelt

21) agentofchaos: Move R1 Agentofchaos Drogue

22) zoltar: Move B1 Zoltar Greenbelt

23) agentofchaos: Move G1 Agentofchaos Drogue

24) zoltar: Build B1 Greenbelt

25) agentofchaos: Build G1 Agentofchaos

26) zoltar: Discover B1 Greenbelt G3 Greengiant

27) agentofchaos: Build G2 Agentofchaos

28) zoltar: Build G2 Zoltar

29) agentofchaos: Move B1 Agentofchaos Drogue

30) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B2 Greenbelt
Build B2 Greengiant

31) agentofchaos: Sacrifice G3 Agentofchaos
Build B2 Drogue
Build Y1 Agentofchaos
Build G3 Agentofchaos

32) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Greenbelt
Build Y3 Zoltar

33) agentofchaos: Sacrifice G3 Agentofchaos
Build Y3 Drogue
Build R1 Drogue
Build G3 Agentofchaos

34) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Greenbelt
Build B3 Greenbelt

35) agentofchaos: Move Y2 Drogue Greenbelt
Catastrophe Greenbelt Y

36) zoltar: Sacrifice B2 Greenbelt
Trade B3 Y3 Greenbelt
Trade B2 R2 Greengiant

37) agentofchaos: Discover R1 Drogue Y2 Gathlok

38) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Greenbelt
Build R3 Greengiant

39) agentofchaos: Sacrifice G1 Agentofchaos
Build R3 Gathlok

40) zoltar: Build B2 Greengiant

41) agentofchaos: Discover R1 Drogue Y2 Flame

42) zoltar: Sacrifice Y3 Zoltar
Move R2 Greenbelt Greengiant
Move R2 Greengiant Gathlok
Move R2 Greengiant Gathlok
Catastrophe Gathlok R

43) agentofchaos: Trade B2 Y2 Drogue

44) zoltar: Sacrifice G2 Zoltar
Build Y1 Greenbelt
Build Y3 Zoltar

45) agentofchaos: Move R1 Flame Zoltar

46) zoltar: Attack R1 Zoltar

47) agentofchaos: Build Y2 Agentofchaos
	zoltar: Sorry, I was sick the last couple of days and have been distracted.  I want to look this over when I have more time tomorrow or the day after.

48) zoltar: Sacrifice Y2 Zoltar
Move Y1 Greenbelt Greengiant
Move R3 Greenbelt Drogue
	zoltar: On second thought, I just went for the most greedy move. When in doubt, hoard big ships.
	agentofchaos: Take as much time as you need, there's no rush.
Hoarding big ships seems to work pretty well!

49) agentofchaos: Sacrifice Y2 Drogue
Discover Y3 Drogue G2 Karnak
Move B1 Drogue Agentofchaos

50) zoltar: Attack G1 Drogue

51) agentofchaos: Trade Y1 R1 Agentofchaos

52) zoltar: Move B1 Greengiant Drogue

53) agentofchaos: Discover R1 Agentofchaos Y1 Grump

54) zoltar: Build B2 Drogue

55) agentofchaos: Build Y2 Karnak

56) zoltar: Build Y2 Greengiant

57) agentofchaos: Move R1 Grump Karnak

58) zoltar: Build G1 Zoltar

59) agentofchaos: Build R2 Karnak

60) zoltar: Move R1 Zoltar Greenbelt

61) agentofchaos: Discover B1 Agentofchaos Y1 Ghast

62) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B2 Greengiant
Build B3 Greenbelt

63) agentofchaos: Move B1 Ghast Karnak

64) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Drogue
Build R3 Greenbelt

65) agentofchaos: Discover G2 Agentofchaos Y1 Kakradoom

66) zoltar: Sacrifice Y2 Greengiant
Move R3 Greenbelt Kakradoom
Move B3 Greenbelt Kakradoom

67) agentofchaos: Build Y2 Agentofchaos

68) zoltar: Sacrifice Y3 Greenbelt
Move R2 Drogue Agentofchaos
Move R3 Drogue Agentofchaos
Move R3 Kakradoom Agentofchaos
Catastrophe Agentofchaos R

	zoltar: The Death Star is now in range of the Rebel Base. Prepare to Fire!
	agentofchaos: The rebels better surrender while they still have the chance! Well played. 


13666)
Started: 2009.6.18, Ended: 2009.6.23
Participants: MikeYarrum (S), CheshireSwift (N)
Winner: CheshireSwift

1) CheshireSwift: Homeworld B2 R1 G3



13677)
Started: 2009.6.19, Ended: 2009.6.29
Participants: MikeYarrum (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3



13672)
Variants: "Hard time"
Started: 2009.6.19, Ended: 2009.6.20
Participants: zoltar (S), Qat (N)
Winner: zoltar

1) Qat: Homeworld B1 Y2 G3

2) zoltar: Homeworld R1 B3 G3

3) Qat: Build G1 Qat

4) zoltar: Build G1 Zoltar

5) Qat: Trade G1 B1 Qat

6) zoltar: Trade G1 B1 Zoltar

7) Qat: Build B2 Qat

8) zoltar: Build B2 Zoltar

9) Qat: Discover B2 Qat G3 Verte

10) zoltar: Trade B1 Y1 Zoltar

11) Qat: Build B1 Verte

12) zoltar: Discover B2 Zoltar G2 Greenbelt

13) Qat: Trade B1 Y1 Verte

14) zoltar: Build G1 Zoltar

15) Qat: Build G1 Qat

16) zoltar: Trade G1 R1 Zoltar

17) Qat: Trade G1 R1 Qat

18) zoltar: Build G1 Zoltar

19) Qat: Build R2 Qat

20) zoltar: Build R2 Zoltar

21) Qat: Move R2 Qat Verte

22) zoltar: Move R2 Zoltar Greenbelt

23) Qat: Build B1 Verte

24) zoltar: Trade R2 Y2 Greenbelt

25) Qat: Trade B2 Y2 Verte

26) zoltar: Move R1 Zoltar Greenbelt

27) Qat: Discover Y2 Verte G2 Produce

28) zoltar: Build R2 Greenbelt

29) Qat: Sacrifice G3 Qat
Build B2 Verte
Build R2 Verte
Build R3 Qat

30) zoltar: Discover R2 Greenbelt Y1 Yellowstone

31) Qat: Build Y3 Produce

32) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Greenbelt
Build R3 Yellowstone

33) Qat: Sacrifice Y2 Produce
Move R2 Verte Yellowstone
Move R2 Verte Yellowstone
Catastrophe Yellowstone R

34) zoltar: Build R2 Greenbelt

35) Qat: Trade R1 G1 Qat

	zoltar: Why resign in such a close game? Am I missing something?


13679)
Started: 2009.6.19, Ended: 2009.11.20
Participants: MikeYarrum (S), MatrixFrog (N)
Winner: MatrixFrog

1) MatrixFrog: Homeworld B2 G1 Y3



13682)
Started: 2009.6.20, Ended: 2009.7.7
Participants: ts52 (S), ZackStack (N)
Winner: ts52

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Hi TS!  I've played a bit more Homeworlds on the tabletop than I have of Volcano... but I'm still interested in learning some new tricks!  I hope I'm more of a challenge here than I turned out to be in Volcano :-)

2) ts52: Homeworld Y2 B3 G3
	ts52: Hey, happy to play either game. I'm still trying to work out homeworlds strategy. But I have a lot of fun playing.

3) ZackStack: Build G1 Zackstack
	ZackStack: Strategy would involve thinking, so I try to stay away from the stuff :-p

4) ts52: Build G1 Ts52
	ts52: Heh, good plan, (or unplan).

5) ZackStack: Trade G1 Y1 Zackstack

6) ts52: Discover G1 Ts52 B1 Gonzo

7) ZackStack: Build G1 Zackstack

8) ts52: Build G1 Gonzo

9) ZackStack: Discover G1 Zackstack B3 Grover

10) ts52: Build G2 Ts52

11) ZackStack: Build Y1 Zackstack

12) ts52: Trade G2 Y2 Ts52

13) ZackStack: Build G2 Grover

14) ts52: Build G2 Ts52

15) ZackStack: Trade G1 R1 Grover

16) ts52: Trade G2 R2 Ts52

17) ZackStack: Build G1 Zackstack

18) ts52: Build G2 Ts52

19) ZackStack: Move Y1 Zackstack Grover

20) ts52: Move Y2 Ts52 Gonzo

21) ZackStack: Sacrifice G3 Zackstack
Build G2 Zackstack
Build G3 Grover
Build G3 Zackstack

22) ts52: Sacrifice Y2 Gonzo
Move G1 Gonzo Grover
Move G1 Grover Zackstack
Catastrophe Zackstack Green

23) ZackStack: Move G2 Grover Gonzo
	ZackStack: I expected that might happen, but there was a chance you'd overlook it :-)

24) ts52: Trade G3 Y3 Ts52

25) ZackStack: Move G3 Grover Zackstack
	ts52: Only a very, very small chance... (-:

26) ts52: Build G1 Ts52

27) ZackStack: Trade G2 R2 Gonzo

28) ts52: Discover G2 Ts52 B1 Blueberry

29) ZackStack: Attack G1S Gonzo

30) ts52: Build Y1 Ts52

31) ZackStack: Move Y1 Grover Gonzo

32) ts52: Trade Y3 G3 Ts52

33) ZackStack: Build Y2 Zackstack

34) ts52: Move Y1 Ts52 Blueberry

35) ZackStack: Build G1 Zackstack

36) ts52: Move R2 Ts52 Blueberry

37) ZackStack: Move Y2 Zackstack Grover

38) ts52: Discover G2 Blueberry Y3 Bigbird

39) ZackStack: Sacrifice G3 Zackstack
Build Y2 Grover
Build Y3 Zackstack
Build Y3 Gonzo

40) ts52: Move G1 Ts52 Blueberry
	ZackStack: Mmmm... Bright shiny yellow...

41) ZackStack: Discover Y2 Grover R1 Elmo

42) ts52: Sacrifice G2 Bigbird
Build Y3 Blueberry
Build G2 Ts52

43) ZackStack: Discover Y2 Grover B1 Herry
	ZackStack: Clever move turning that star into a big ship! I like it!

44) ts52: Build G2 Blueberry

45) ZackStack: Build G2 Zackstack

46) ts52: Discover G2 Blueberry B3 Grape

47) ZackStack: Build G3 Gonzo

48) ts52: Sacrifice G2 Ts52
Build G2 Grape
Build G3 Blueberry

49) ZackStack: Sacrifice Y3 Gonzo
Move G1 Gonzo Ts52
Move G3 Gonzo Ts52
Move R2 Gonzo Ts52


50) ts52: Sacrifice R2 Blueberry
Attack G3N Ts52
Attack R2N Ts52

51) ZackStack: Sacrifice G2 Zackstack
Build G2 Ts52
Build Y3 Elmo
Catastrophe Ts52 Green

52) ts52: Move G3 Blueberry Ts52

53) ZackStack: Trade Y2 G2 Herry

54) ts52: Move Y1 Blueberry Grape
	ZackStack: Hmmm... I would have been much better off moving a Y to your system than that R... I am still learning a lot of the nuances!

55) ZackStack: Build G1 Herry

56) ts52: Build G3 Blueberry

57) ZackStack: Build G3 Zackstack

58) ts52: Sacrifice G3 Blueberry
Build G3 Blueberry
Build Y2 Blueberry
Build R2 Ts52

59) ZackStack: Trade G2 R2 Herry

60) ts52: Move R2 Ts52 Gonzo

61) ZackStack: Sacrifice G3 Zackstack
Build G2 Herry
Build G3 Zackstack
Build R3 Herry

62) ts52: Attack Y1N Gonzo

63) ZackStack: Sacrifice Y3 Elmo
Move G1 Herry Ts52
Move R3 Herry Ts52
Move G2 Herry Ts52

64) ts52: Sacrifice R2 Ts52
Attack R3N Ts52
Attack G2N Ts52

65) ZackStack: Sacrifice G1 Zackstack
Build G1 Ts52
Catastrophe Ts52 Green
	ZackStack: I thought that was a pretty solid attack, but wondered what response I'd missed... Thanks for another lesson :-)

66) ts52: Move G3 Blueberry Ts52

67) ZackStack: Move Y1 Zackstack Grover

68) ts52: Sacrifice G2 Grape
Build R2 Ts52
Build R3 Gonzo
	ts52: Sorry for the delay, I was away on vacation.
	ZackStack: Not a problem.  I hope you had a good time!

69) ZackStack: Trade R1 G1 Grover

70) ts52: Move R3 Ts52 Herry

71) ZackStack: Sacrifice Y1 Grover
Move R2 Herry Grover

72) ts52: Move R3 Gonzo Grover

73) ZackStack: Sacrifice G1 Grover
Build Y1 Elmo

74) ts52: Attack R2 Grover
	ZackStack: I know I should resign, but its interesting to see such a methodical endgame :-)

75) ZackStack: Discover Y1 Elmo G3 Kermit

76) ts52: Build Y3 Grape
	ts52: My theory is not to resign until doom is absolutely certain. Never underestimate your opponents ability to really screw things up. ;)

77) ZackStack: Discover Y1 Kermit B2 Beetle
	ZackStack: Heh.  I hear the fat lady singing and see the writing on the wall, but am pretty interested to see how it finishes :-)

78) ts52: Move Y1 Grape Herry

79) ZackStack: Trade Y1 G1 Beetle

80) ts52: Sacrifice G2 Grape
Build R1 Herry
Build R3 Grover

81) ZackStack: Move Y2 Elmo Beetle

82) ts52: Sacrifice Y2 Blueberry
Move R3 Grover Zackstack
Move R3 Grover Zackstack

83) ZackStack: Attack R3S Zackstack

84) ts52: Sacrifice R3 Herry
Attack R3N Zackstack
Attack G3N Zackstack
Attack Y3N Zackstack
	ZackStack: And here I pictured you blowing up my red star... Nicely done!  And thanks for the game!

	ts52: I wasn't sure how this one was going to end for a while either. Thanks for the game.


13700)
Variants: "Hard time"
Started: 2009.6.22, Ended: 2009.6.26
Participants: Joe (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld G1 Y2 R3 *
	ZackStack: And here we go again!  Time to try an unconventional starting setup... let's see how bad an idea this is :-)

2) Joe: Homeworld R1 Y3 G3 *
	Joe: Yup! Let's go!

3) ZackStack: Build R1 Zackstack
	Joe: Countersetup! 
	ZackStack: No blue for you either?  Now we're both in trouble :-)

4) Joe: Build G1 Joe

5) ZackStack: Build R1 Zackstack
	Joe: Trouble among the stars... :)

6) Joe: Build G1 Joe

7) ZackStack: Discover R1 Zackstack B3 Bigblue

8) Joe: Discover G3 Joe B2 Mb

9) ZackStack: Build R2 Zackstack

10) Joe: Build G2 Joe

11) ZackStack: Move R2 Zackstack Bigblue

12) Joe: Move G1 Joe Mb

13) ZackStack: Trade R2 G2 Bigblue

14) Joe: Trade G3 R3 Mb

15) ZackStack: Build R2 Bigblue

16) Joe: Build G2 Mb

17) ZackStack: Build G3 Bigblue

18) Joe: Build R2 Mb

19) ZackStack: Trade R2 Y2 Bigblue

20) Joe: Trade G1 Y1 Mb

21) ZackStack: Discover G3 Bigblue Y2 Oldyeller

22) Joe: Move R2 Mb Joe
	ZackStack: I'm still having a mighty fine time playing Homeworlds (and will happily play as many games as you'd like)... but I wondered if you'd like to try any games that are brand new to both of us. I'm interested in Alien City and Pikemen.  Alien you could play tabletop if you made up some tiles and had another game to borrow some cubes for.  Pikemen it will be a while for tabletop, but its a popular chesslike icehouse game.  Let me know and I can set up a challenge (or we can just focus on Homeworlds for the time being...)  

23) ZackStack: Move G3 Oldyeller Joe
	ZackStack: Hey Joe!  You know to take over a ship you need one ship of equal size in the system right? In other words... moving that R2 to your homeworld wasn't a defense against my G3 ship.  Feel free to undo if you'd like (or we can just see what happens...)
	Joe: Yup, I know that I cannot destroy it with the R2 ;)
And I will happily play Alien City, cause it is just the game I am tinkering about (and read the rules two days ago!). I have issued a challenge already so you can jump on that vagon if you like...

24) Joe: Move R3 Mb Bigblue

25) ZackStack: Sacrifice R3 Zackstack
Attack G1S Joe
Attack G2S Joe
Attack R2S Joe
	ZackStack: Sorry Joe... you missed a big one!
	Joe: Ah, yes - attacking in a system with your ship, sacrificing R3 far far away ;)



13664)
Started: 2009.6.23, Ended: 2009.6.25
Participants: CheshireSwift (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) CheshireSwift: Homeworld B2 R1 G3
	TwoShort: howdy

3) TwoShort: Build G1 Twoshort
	CheshireSwift: Hey. Good luck.

4) CheshireSwift: Build G1 Cheshireswift

5) TwoShort: Trade G1 R1 Twoshort

6) CheshireSwift: Build G1 Cheshireswift

7) TwoShort: Build R2 Twoshort

8) CheshireSwift: Trade G3 R3 Cheshireswift

9) TwoShort: Trade R2 Y2 Twoshort

10) CheshireSwift: Build R2 Cheshireswift

11) TwoShort: Discover R1 Twoshort G2 Grogar

12) CheshireSwift: Trade R3 Y3 Cheshireswift

13) TwoShort: Build R2 Grogar

14) CheshireSwift: Discover R2 Cheshireswift Y3 Aleph

15) TwoShort: Build Y1 Twoshort

16) CheshireSwift: Discover G1 Cheshireswift R3 Bet

17) TwoShort: Build G1 Twoshort

18) CheshireSwift: Build G2 Bet

19) TwoShort: Move Y1 Twoshort Grogar

20) CheshireSwift: Build Y1 Cheshireswift

21) TwoShort: Discover R1 Grogar G3 Gordo

22) CheshireSwift: Discover G1 Cheshireswift Y3 Gimel

23) TwoShort: Move R2 Grogar Gimel

24) CheshireSwift: Move G1 Gimel Grogar

25) TwoShort: Sacrifice R1 Gordo
Attack G1 Grogar

26) CheshireSwift: Trade Y1 B1 Cheshireswift

27) TwoShort: Move G1 Grogar Gimel

28) CheshireSwift: Trade Y3 G3 Cheshireswift

29) TwoShort: Sacrifice G3 Twoshort
Build G2 Gimel
Build G3 Twoshort
Build G3 Twoshort

30) CheshireSwift: Move R2 Aleph Grogar

31) TwoShort: Move G3 Twoshort Grogar

32) CheshireSwift: Attack Y1N Grogar

33) TwoShort: Sacrifice R2 Gimel
Attack R2 Grogar
Attack Y1 Grogar

34) CheshireSwift: Trade B1 R1 Cheshireswift

35) TwoShort: Sacrifice G3 Grogar
Build G3 Gimel
Build Y1 Grogar
Build R2 Grogar

36) CheshireSwift: Trade R1 Y1 Cheshireswift

37) TwoShort: Move G3 Gimel Cheshireswift

38) CheshireSwift: Attack G3 Cheshireswift

39) TwoShort: Sacrifice Y2 Twoshort
Move G1 Gimel Cheshireswift
Move G2 Gimel Cheshireswift
Catastrophe Cheshireswift Green

40) CheshireSwift: Sacrifice Y1 Cheshireswift
Move G2 Bet Grogar
	CheshireSwift: There really isn't much hope for me here, is there? =P
	CheshireSwift: I don't know why, but I find Homeworld really hard on SDG. Playing it offline I somehow find it easier to see strategies. That said, good game, thanks :)
	TwoShort: Part of it might be the organization of the pieces - for really tough moves I set them up with real pyramids or copy the picture into a paint program to organize them the way I like.  In any case, thanks for the game!
	CheshireSwift: Nice idea, I may try that. Thanks.



13683)
Started: 2009.6.25, Ended: 2009.7.6
Participants: MikeYarrum (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Greetings Mike!  I'm fairly new to the site and only have about 10 games of Homeworlds under my belt between tabletop and SDG... but I'm always interested in learning new ways to loose :-)  Have Fun!



13748)
Variants: "Hard time"
Started: 2009.6.26, Ended: 2009.7.8
Participants: ZackStack (S), Joe (N)
Winner: ZackStack

1) Joe: Homeworld Y1 B2 G3

2) ZackStack: Homeworld R2 B3 G3
	ZackStack: Glutton for punishment? :-D  Have a good game!

3) Joe: Build G1 Joe

4) ZackStack: Build G1 Zackstack
	Joe: Hell yeah!

5) Joe: Build G1 Joe

6) ZackStack: Build G2 Zackstack

7) Joe: Discover G1 Joe B3 Ann

8) ZackStack: Trade G2 Y2 Zackstack

9) Joe: Build G2 Ann

10) ZackStack: Discover G1 Zackstack Y1 Tina

11) Joe: Trade G1 Y1 Ann

12) ZackStack: Build G1 Zackstack

13) Joe: Build G2 Ann

14) ZackStack: Sacrifice G3 Zackstack
Build G2 Zackstack
Build G3 Zackstack
Build G3 Tina

15) Joe: Trade G3 R3 Joe
	ZackStack: Hey Joe!  Something to keep in mind strategically is supply control.  Your creating the G2 ship on your last move allowed me to make my sacrifice move.  Sometimes its worth making odd trades and other builds to keep an opponent from getting more and bigger ships than you.  
	ZackStack: Also, I haven't read it all, but you have enough understanding of how the game works that this strategy article might be very useful to you if you have the time: http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy

16) ZackStack: Discover G3 Tina R3 Gwen

17) Joe: Build G3 Joe

18) ZackStack: Discover G1 Zackstack B1 Belle

19) Joe: Trade G2 R2 Ann

20) ZackStack: Sacrifice G3 Zackstack
Build G2 Belle
Build G3 Zackstack
Build Y2 Zackstack

21) Joe: Move R2 Ann Belle

22) ZackStack: Sacrifice Y2 Zackstack
Discover G1 Belle Y3 Gina
Move G2 Belle Gina

23) Joe: Build Y2 Ann

24) ZackStack: Move G1 Gina Joe

25) Joe: Sacrifice Y2 Ann
Move G1 Joe Gina
Move G3 Joe Ann

26) ZackStack: Discover G1 Joe Y3 Daisy

27) Joe: Trade G3 R3 Ann
	ZackStack: Nice evade :-)

28) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build Y2 Zackstack
Build G3 Daisy
	Joe: Phew, and a close one ;)

29) Joe: Build Y2 Ann

30) ZackStack: Move G1 Tina Gwen

31) Joe: Trade Y2 R2 Ann

32) ZackStack: Trade Y2 B2 Zackstack

33) Joe: Build Y1 Ann

34) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build B1 Zackstack
Build Y2 Zackstack

35) Joe: Move Y1 Ann Belle

36) ZackStack: Sacrifice B2 Zackstack
Trade G1 B1 Daisy
Trade G2 B2 Gina

37) Joe: Move R2 Belle Gina

38) ZackStack: Sacrifice G3 Daisy
Build B2 Daisy
Build B3 Daisy
Build G1 Zackstack

39) Joe: Attack B2 Gina
	Joe: There is another Alien City game waiting, you can join ;)
	ZackStack: On my way :-)  Though I'll have to log off soon to make supper...

40) ZackStack: Move B1 Daisy Joe

41) Joe: Build R1 Ann

42) ZackStack: Move B2 Daisy Joe

43) Joe: Move R1 Ann Belle

44) ZackStack: Discover G2 Zackstack R1 Pippi

45) Joe: Build Y2 Ann

46) ZackStack: Move Y2 Zackstack Pippi

47) Joe: Move R3 Ann Pippi

48) ZackStack: Sacrifice Y2 Zackstack
Move Y2 Pippi Daisy
Move G2 Pippi Daisy

49) Joe: Sacrifice Y1 Ann
Move R3 Pippi Daisy

50) ZackStack: Sacrifice Y2 Daisy
Move B3 Daisy Joe
Discover G2 Daisy Y2 Mae
Catastrophe Joe Blue

51) Joe: Build Y1 Ann
	ZackStack: Tired of waiting for catastrophe to strike? :-)

52) ZackStack: Trade G3 Y3 Zackstack

53) Joe: Build G2 Gina

54) ZackStack: Sacrifice G3 Gwen
Build G3 Zackstack
Build Y2 Zackstack
Build G3 Gwen
	Joe: well, it was a matter of time so I pursue my own course of action...

55) Joe: Move R3 Daisy Belle

56) ZackStack: Sacrifice B1 Zackstack
Trade G3 Y3 Gwen

57) Joe: Build B1 Gina

58) ZackStack: Sacrifice G2 Mae
Build G2 Gwen
Build Y2 Gwen

59) Joe: Move Y1 Ann Belle

60) ZackStack: Sacrifice Y3 Zackstack
Move Y2 Zackstack Joe
Move Y2 Gwen Joe
Move Y3 Gwen Joe
Catastrophe Joe Yellow

	ZackStack: You did a great job limiting my access to yellow in the mid-game, but you made that trade and let me get more yellow ships...  Good game though!  That was quite a fleet you were building up!


13711)
Started: 2009.6.28, Ended: 2009.7.29
Participants: TwoShort (S), skykingt13 (N)
Winner: TwoShort

1) skykingt13: Homeworld R3 B2 G3

2) TwoShort: Homeworld B1 R2 G3



13719)
Variants: "Hard time"
Started: 2009.6.28, Ended: 2009.7.3
Participants: skykingt13 (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B2 G3

2) skykingt13: Homeworld B3 R2 G3

3) agentofchaos: Build G1 Agentofchaos



13768)
Variants: "Hard time"
Started: 2009.6.30, Ended: 2009.7.8
Participants: wyons (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B1 R3 G3

2) wyons: Homeworld R2 B1 G3

3) mneme: Build G1 Mneme
	wyons: have a gg
	mneme: yt.  

4) wyons: Build G1 Wyons

5) mneme: Trade G1 B1 Mneme

6) wyons: Trade G1 Y1 Wyons

7) mneme: Build B2 Mneme
	wyons: hmmm. not such a gd start for me..  :)

8) wyons: Build Y1 Wyons
	mneme: Indeed not.  I think matching my b1 in your home system was a blunder.

	wyons: I agree. :{

9) mneme: Trade B2 Y2 Mneme

10) wyons: Build G1 Wyons

11) mneme: Build B2 Mneme

	wyons: I think this has to be hopeless! Thank you!
	mneme: Thanks for the game.  I usually continue them farther than this, but there's no shame in deciding it was lost once I got that kind of advantage.



13761)
Started: 2009.7.1, Ended: 2009.7.20
Participants: MikeYarrum (S), Joe (N)
Winner: Joe

1) Joe: Homeworld Y1 B2 G3
	Joe: Hi Mike, good luck! ;)



13774)
Started: 2009.7.2, Ended: 2009.7.6
Participants: mindloss (S), MikeYarrum (N)
Winner: mindloss



13783)
Variants: "Unrated"
Started: 2009.7.4, Ended: 2009.7.4
Participants: mindloss (S), AnalogKid (N)
Winner: AnalogKid

1) AnalogKid: Homeworld Y3 B1 G3
	AnalogKid: Hello, how are you?

2) mindloss: Homeworld B1 G2 Y3

3) AnalogKid: Build G1 Analogkid

4) mindloss: Discover Y3 Mindloss B3 Lorenzo
	mindloss: Good, my first game. How are you?
	AnalogKid: I'm fine.  Is there an Undo button for your last move??  If not, do you want to start another game?



13762)
Started: 2009.7.4, Ended: 2009.7.10
Participants: mindloss (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) mindloss: Homeworld B1 G2 Y3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort
	mindloss: howdy... first game for me, maybe i'll learn a little something :)

4) mindloss: Build Y1 Mindloss

5) TwoShort: Build G1 Twoshort

6) mindloss: Discover Y1 Mindloss G3 Lorenzo
	TwoShort: So when I play new players, I try to give a few pointers, but usually a bit too late to actually help :)  For example, I'd recommend starting with a green ship. 

7) TwoShort: Trade G1 Y1 Twoshort

8) mindloss: Build Y1 Mindloss

9) TwoShort: Build Y2 Twoshort

10) mindloss: Build Y2 Lorenzo

11) TwoShort: Discover Y1 Twoshort G2 Grogar

12) mindloss: Trade Y1 R1 Mindloss

13) TwoShort: Build Y1 Grogar

14) mindloss: Build Y2 Mindloss

15) TwoShort: Build Y3 Twoshort

16) mindloss: Build Y3 Lorenzo
	TwoShort: You probably didn't want to take the last y2.  You can't build a y3 this turn because I'll blow it up, so now I have more 3 pointers, which is a big advantage.

17) TwoShort: Move Y1 Grogar Lorenzo
Catastrophe Lorenzo Yellow

18) mindloss: Discover Y2 Mindloss B3 Sophia

19) TwoShort: Discover Y3 Twoshort G2 Gonzo

20) mindloss: Build Y1 Mindloss

21) TwoShort: Build G1 Twoshort

22) mindloss: Trade Y1 G1 Mindloss

23) TwoShort: Discover G1 Twoshort B2 Bomber

24) mindloss: Build G3 Mindloss

25) TwoShort: Sacrifice Y2 Twoshort
Discover G1 Bomber B3 Boomtime
Move G1 Boomtime Mindloss
Catastrophe Mindloss Green

26) mindloss: Move Y2 Sophia Grogar

27) TwoShort: Move Y1 Grogar Twoshort

28) mindloss: Trade R1 G1 Mindloss

29) TwoShort: Trade G1 B1 Twoshort

30) mindloss: Build G1 Mindloss

31) TwoShort: Move B1 Twoshort Gonzo

32) mindloss: Trade G1 R1 Mindloss

33) TwoShort: Sacrifice G3 Twoshort
Build B1 Gonzo
Build B2 Gonzo
Pass

34) mindloss: Move R1 Mindloss Gonzo

35) TwoShort: Sacrifice Y3 Gonzo
Move B1 Gonzo Mindloss
Move B1 Gonzo Mindloss
Move B2 Gonzo Mindloss
Catastrophe Mindloss Blue

	mindloss: gg :)
	TwoShort: Thanks for the game :)


13718)
Variants: "Hard time"
Started: 2009.7.4, Ended: 2009.9.10
Participants: mindloss (S), Mandrel (W), agentofchaos (N), Uglyfoot (E)
Winner: Uglyfoot

1) agentofchaos: Homeworld R2 B1 G3

2) Uglyfoot: Homeworld Y3 B2 G3
	agentofchaos: Hi everybody, thanks for joining the game, enjoy! 

3) mindloss: Homeworld R1 B2 G3

4) Mandrel: Homeworld B3 Y1 G3

5) agentofchaos: Build G1 Agentofchaos

6) Uglyfoot: Build G1 Uglyfoot

7) mindloss: Build G1 Mindloss

8) Mandrel: Build G1 Mandrel

9) agentofchaos: Trade G1 Y1 Agentofchaos

10) Uglyfoot: Build G1 Uglyfoot

11) mindloss: Trade G1 Y1 Mindloss

12) Mandrel: Build G1 Mandrel

13) agentofchaos: Build G1 Agentofchaos

14) Uglyfoot: Trade G1 Y1 Uglyfoot

15) mindloss: Build G1 Mindloss

16) Mandrel: Trade G1 Y1 Mandrel

17) agentofchaos: Build Y2 Agentofchaos

18) Uglyfoot: Build Y2 Uglyfoot

19) mindloss: Build Y2 Mindloss

20) Mandrel: Build Y2 Mandrel

21) agentofchaos: Discover G1 Agentofchaos Y3 Krome

22) Uglyfoot: Discover Y2 Uglyfoot R1 Alpha

23) mindloss: Trade Y1 R1 Mindloss

24) Mandrel: Trade Y2 R2 Mandrel

25) agentofchaos: Trade Y1 R1 Agentofchaos

26) Uglyfoot: Move G1 Uglyfoot Alpha

27) mindloss: Move G3 Mindloss Krome

28) Mandrel: Discover G1 Mandrel R2 Happy

29) agentofchaos: Move G1 Krome Agentofchaos

30) Uglyfoot: Discover Y2 Alpha G3 Beta

31) mindloss: Build Y1 Mindloss

32) Mandrel: Move G3 Mandrel Happy

33) agentofchaos: Build Y1 Agentofchaos

34) Uglyfoot: Build Y2 Beta

35) mindloss: Move Y2 Mindloss Krome

36) Mandrel: Move Y1 Mandrel Happy

37) agentofchaos: Trade Y2 R2 Agentofchaos

38) Uglyfoot: Build Y2 Uglyfoot

39) mindloss: Build G1 Mindloss

40) Mandrel: Move G1 Happy Mandrel

41) agentofchaos: Build Y2 Agentofchaos

42) Uglyfoot: Trade Y2 R2 Uglyfoot

43) mindloss: Move R1 Mindloss Krome

44) Mandrel: Build G2 Mandrel

45) agentofchaos: Discover R2 Agentofchaos Y3 Kazam

46) Uglyfoot: Trade Y1 B1 Uglyfoot

47) mindloss: Trade G1 B1 Mindloss

48) Mandrel: Trade G1 B1 Mandrel

49) agentofchaos: Trade Y1 B1 Agentofchaos

50) Uglyfoot: Build B2 Uglyfoot

51) mindloss: Build G1 Krome

52) Mandrel: Build Y1 Happy

53) agentofchaos: Move G1 Agentofchaos Kazam

54) Uglyfoot: Move B2 Uglyfoot Alpha

55) mindloss: Move B1 Mindloss Krome

56) Mandrel: Move B1 Mandrel Happy

57) agentofchaos: Build G1 Kazam

58) Uglyfoot: Build B2 Alpha

59) mindloss: Trade G3 R3 Krome

60) Mandrel: Build G2 Mandrel

61) agentofchaos: Move R1 Agentofchaos Kazam

62) Uglyfoot: Move Y2 Beta Mindloss

63) mindloss: Move R3 Krome Agentofchaos

64) Mandrel: Build G2 Happy

65) agentofchaos: Attack R3S Agentofchaos

66) Uglyfoot: Sacrifice R2 Uglyfoot
Attack G1S Mindloss
Attack Y1S Mindloss
	Uglyfoot: The eastern world gives welcome.  Trade good offered at reasonable rates...

67) Mandrel: Move G2 Happy Krome

68) agentofchaos: Move R3 Agentofchaos Krome

69) Uglyfoot: Build G2 Uglyfoot

70) Mandrel: Sacrifice G2 Krome
Build G2 Happy
Build B2 Happy

71) agentofchaos: Attack Y2S Krome

72) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Alpha
Build G3 Uglyfoot
Build G3 Mindloss

73) Mandrel: Trade G2 Y2 Mandrel

74) agentofchaos: Build G2 Agentofchaos

75) Uglyfoot: Sacrifice Y1 Mindloss
Move B2 Alpha Beta

76) Mandrel: Build Y1 Mandrel

77) agentofchaos: Move R3 Krome Alpha

78) Uglyfoot: Sacrifice Y2 Mindloss
Discover G2 Alpha Y3 Delta
Move B2 Alpha Delta

79) Mandrel: Build R1 Mandrel

80) agentofchaos: Attack G1E Alpha

81) Uglyfoot: Trade G3 R3 Uglyfoot

82) Mandrel: Build G3 Mandrel

83) agentofchaos: Sacrifice B1 Agentofchaos
Trade G1 Y1 Alpha

84) Uglyfoot: Sacrifice G3 Mindloss
Build G1 Delta
Build G3 Mindloss
Build Y2 Beta

85) Mandrel: Move G3 Happy Kazam

86) agentofchaos: Sacrifice G2 Agentofchaos
Build G2 Kazam
Build Y3 Alpha
Catastrophe Kazam G

87) Uglyfoot: Sacrifice Y2 Beta
Move Y2 Beta Happy
Move Y2 Happy Mandrel
Catastrophe Mandrel Y

88) Mandrel: Trade G2 Y2 Mandrel

89) agentofchaos: Build G1 Agentofchaos

90) Uglyfoot: Trade B2 Y2 Beta

91) Mandrel: Build G1 Happy

92) agentofchaos: Sacrifice R2 Kazam
Attack B1S Krome
Attack G1S Krome

93) Uglyfoot: Sacrifice Y2 Beta
Move G1 Delta Agentofchaos
Move G2 Delta Agentofchaos
Catastrophe Agentofchaos G

94) Mandrel: Sacrifice Y2 Mandrel
Move R1 Mandrel Alpha
Move R2 Mandrel Alpha
Catastrophe Alpha Red

95) agentofchaos: Trade Y2 G2 Krome

96) Uglyfoot: Trade B2 Y2 Delta

97) Mandrel: Trade G3 R3 Mandrel

98) agentofchaos: Build B1 Krome

99) Uglyfoot: Sacrifice Y2 Delta
Move G3 Mindloss Kazam
Move G3 Kazam Agentofchaos

100) Mandrel: Move G1 Happy Mandrel

101) agentofchaos: Trade Y2 G2 Agentofchaos

102) Uglyfoot: Attack G2N Agentofchaos

103) Uglyfoot: Discover B1 Uglyfoot R1 Pool

104) Mandrel: Build R1 Mandrel

105) Uglyfoot: Trade G3 Y3 Agentofchaos
	agentofchaos: Alas, darkness has fallen.... arrgghhh....

106) Mandrel: Build G1 Happy

107) Uglyfoot: Trade G2 B2 Agentofchaos

108) Mandrel: Trade G2 R2 Happy

109) Uglyfoot: Sacrifice G1 Mindloss
Build B2 Pool

110) Mandrel: Trade R3 Y3 Mandrel

111) Uglyfoot: Sacrifice Y3 Agentofchaos
Move B2 Agentofchaos Mandrel
Move B2 Pool Mandrel
Move B1 Pool Mandrel
Catastrophe Mandrel B

	Uglyfoot: Thanks for the game everyone!


13788)
Variants: "Unrated"
Started: 2009.7.5, Ended: 2009.7.5
Participants: mindloss (S), zxcv411 (N)
Winner: zxcv411

1) zxcv411: Homeworld G3 Y1 B3



13781)
Started: 2009.7.5, Ended: 2009.7.8
Participants: zxcv411 (S), MikeYarrum (N)
Winner: zxcv411



13799)
Started: 2009.7.5, Ended: 2009.7.8
Participants: zxcv411 (S), MikeYarrum (N)
Winner: zxcv411



13801)
Variants: "Unrated"
Started: 2009.7.7, Ended: 2009.7.14
Participants: zxcv411 (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B3 G3
	ZackStack: Hi zx!  Have you played much homeworlds or is this a learning game for you?  Either way... have fun!

2) zxcv411: Homeworld R3 B2 G3

3) ZackStack: Build G1 Zackstack

4) zxcv411: Build G1 Zxcv411

5) ZackStack: Trade G1 Y1 Zackstack
	zxcv411: learning, but dont go too easy on me. Can't learn that way >.<
	ZackStack: I won't :-)  But I might point out any moves that seem strange.

6) zxcv411: Build G1 Zxcv411

7) ZackStack: Discover Y1 Zackstack G2 Emerald

8) zxcv411: Trade G1 Y1 Zxcv411

9) ZackStack: Build G1 Zackstack

10) zxcv411: Discover G1 Zxcv411 B1 Richard

11) ZackStack: Trade G1 B1 Zackstack

12) zxcv411: Build G1 Richard

13) ZackStack: Build B1 Zackstack

14) zxcv411: Trade G1 R1 Richard

15) ZackStack: Build G1 Zackstack

16) zxcv411: Build R1 Richard

17) ZackStack: Trade B1 Y1 Zackstack

18) zxcv411: Build R2 Richard

19) ZackStack: Move B1 Zackstack Emerald

20) zxcv411: Build Y2 Zxcv411

21) ZackStack: Build Y2 Emerald

22) zxcv411: Trade R2 Y2 Richard

23) ZackStack: Trade Y2 R2 Emerald

24) zxcv411: Discover R1 Richard B2 Dave

25) ZackStack: Build Y2 Emerald

26) zxcv411: Discover Y2 Richard R2 Mark

27) ZackStack: Discover B1 Emerald G1 Lime

28) zxcv411: Move Y1 Zxcv411 Richard

29) ZackStack: Move Y1 Emerald Lime

30) zxcv411: Move G1 Richard Mark

31) ZackStack: Sacrifice G3 Zackstack
Build Y3 Zackstack
Build Y3 Lime
Build Y3 Emerald

32) zxcv411: Build G2 Mark

33) ZackStack: Move R2 Emerald Lime

34) zxcv411: Build G2 Zxcv411
	ZackStack: So, what's on your mind these days zx?
	zxcv411: Nothing much, starting to build giant Icehouse pieces for a local game store's game day. You?

35) ZackStack: Build G3 Zackstack
	ZackStack: Heh, that's much cooler than anything I'm up too.  What games are you planning to play?

My wife and I are starting to get into Go.  Other than that new obsession its pretty much the same old stay at home Dad stuff... I just like to live vicariously throgh others sometimes :-)

36) zxcv411: Move G2 Mark Richard
	zxcv411: Yeah, currently for now just Ice Towers, but if I can get enough stashes made, maybe a giant Volcano.

37) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build B1 Lime
Build B2 Lime
	ZackStack: That would be quite a sight!  Be sure to post some pics to BGG if they're worth the effort!

38) zxcv411: Build G3 Zxcv411

39) ZackStack: Sacrifice Y3 Emerald
Move G1 Zackstack Dave
Move G1 Dave Lime
Move G1 Lime Zxcv411
Catastrophe Zxcv411 Green
	ZackStack: Ooo... 3 ships of the same color in the same place is always dangerous at this point in the game.

40) zxcv411: Build G1 Mark

41) ZackStack: Move Y3 Lime Zxcv411

42) zxcv411: Sacrifice G2 Richard
Build R2 Richard
Build R3 Richard

43) ZackStack: Attack Y2S Zxcv411
	ZackStack: Thanks for the game!  I think you played fairly well and have a nice assault on my homeworld set up.  I was just more aggresive and beat you too it...  Let me know how those big icehouse pieces turn out and challenge me to a rematch any time!



13811)
Started: 2009.7.7, Ended: 2009.7.8
Participants: ts52 (S), zxcv411 (N)
Winner: zxcv411

1) zxcv411: Homeworld B2 R1 G3

2) ts52: Homeworld Y2 B3 G3

3) zxcv411: Build G1 Zxcv411
	ts52: Have a good game.
	zxcv411: Why is it not letting me sacrifice my green to build 3 ships?

4) ts52: Build G1 Ts52
	zxcv411: Nevermind, sorry first time playing Homeworlds >.<

5) zxcv411: Trade G1 Y1 Zxcv411
	ts52: No problem. It's generally a good idea to keep a large ship in your homeworld anyway.

6) ts52: Trade G1 Y1 Ts52

7) zxcv411: Build Y1 Zxcv411

8) ts52: Discover Y1 Ts52 G1 Robin

9) zxcv411: Build Y2 Zxcv411

10) ts52: Build Y2 Robin

11) zxcv411: Sacrifice Y1 Zxcv411
Discover Y2 Zxcv411 R3 Reddwarf

12) ts52: Build G1 Ts52

13) zxcv411: Build Y1 Zxcv411
	ts52: You might have meant to sacrifice the y1, but you didn't need to in order to move the y2. FYI.

14) ts52: Discover Y1 Robin G3 Kermit
	zxcv411: Really, oh. I just wasted a turn then...

15) zxcv411: Discover Y1 Zxcv411 Y3 Starbug

16) ts52: Build Y3 Kermit

17) zxcv411: Build Y3 Zxcv411

18) ts52: Trade G1 B1 Ts52

19) zxcv411: Trade Y1 G1 Zxcv411

20) ts52: Move B1 Ts52 Robin

21) zxcv411: Move G1 Zxcv411 Starbug

22) ts52: Build B1 Robin

23) zxcv411: Build G1 Starbug

24) ts52: Build G2 Ts52

25) zxcv411: Build G2 Zxcv411

26) ts52: Move B1 Robin Kermit

27) zxcv411: Move G2 Zxcv411 Reddwarf

28) ts52: Discover B1 Robin G2 Oscar

29) zxcv411: Discover G1 Starbug B1 Rimmer

30) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Kermit
Build B2 Oscar

31) zxcv411: Sacrifice Y3 Zxcv411
Move G1 Starbug Rimmer
Move G1 Rimmer Ts52
Move G1 Rimmer Ts52
Catastrophe Ts52 Green
	zxcv411: Good game
	ts52: Wow, I totally didn't see that coming. Well played.



13800)
Started: 2009.7.7, Ended: 2009.7.11
Participants: MikeYarrum (S), zxcv411 (N)
Winner: zxcv411

1) zxcv411: Homeworld B2 R1 G3



13807)
Variants: "Hard time"
Started: 2009.7.10, Ended: 2009.8.1
Participants: Jesse (S), headphoned (N)
Winner: Jesse

1) headphoned: Homeworld B3 G2 Y3

2) Jesse: Homeworld G1 B3 Y3

3) headphoned: Build Y1 Headphoned
	Jesse: Hello.  Have a good game.

4) Jesse: Build Y1 Jesse

5) headphoned: Trade Y1 R1 Headphoned

6) Jesse: Trade Y1 R1 Jesse

7) headphoned: Build Y1 Headphoned

8) Jesse: Build Y1 Jesse


9) headphoned: Trade Y1 G1 Headphoned

10) Jesse: Trade Y1 G1 Jesse


11) headphoned: Build Y1 Headphoned

12) Jesse: Build Y1 Jesse


13) headphoned: Discover Y1 Headphoned B1 Alcatraz

14) Jesse: Discover Y1 Jesse G2 Tomato

15) headphoned: Discover G1 Headphoned Y1 Phlebas

16) Jesse: Discover G1 Jesse B2 Newt

17) headphoned: Build Y2 Headphoned

18) Jesse: Build Y2 Jesse

19) headphoned: Trade Y2 B2 Headphoned

20) Jesse: Move Y2 Jesse Newt

21) headphoned: Build Y2 Headphoned

22) Jesse: Trade Y2 R2 Newt

23) headphoned: Build G2 Phlebas

24) Jesse: Build G3 Newt

25) headphoned: Sacrifice Y2 Headphoned
Move G2 Phlebas Newt
Move G1 Phlebas Newt
Catastrophe Newt Green

26) Jesse: Trade R2 G2 Newt

27) headphoned: Build B1 Headphoned

28) Jesse: Build G1 Newt



13825)
Started: 2009.7.11, Ended: 2009.7.14
Participants: zxcv411 (S), TwoShort (N)
Winner: zxcv411

	TwoShort: I'm headed to vacation; I had meant to suspend the standing challenges sooner.  Anyway, if you want to just leave this game active, I'll be able to play in a couple weeks.


13829)
Started: 2009.7.11, Ended: 2009.7.14
Participants: zxcv411 (S), TwoShort (N)
Winner: zxcv411

	TwoShort: I'm about to head off on vacation to the land of no internet.  I'll be happy to play a game in a couple weeks.


13778)
Started: 2009.7.12, Ended: 2009.9.19
Participants: iwilson (S), rogwyn (N)
Winner: rogwyn

1) rogwyn: Pass

2) iwilson: Homeworld G3 B2 Y3

3) rogwyn: Homeworld Y2 B1 G3

4) iwilson: Build Y1 Iwilson

5) rogwyn: Pass

6) iwilson: Trade Y1 B1 Iwilson

7) rogwyn: Build G1 Rogwyn

8) iwilson: Trade B1 R1 Iwilson

9) rogwyn: Trade G1 R1 Rogwyn

10) iwilson: Discover R1 Iwilson Y1 Newone

11) rogwyn: Build G1 Rogwyn

12) iwilson: Move Y3 Iwilson Newone



13779)
Started: 2009.7.12, Ended: 2009.12.11
Participants: rogwyn (S), iwilson (N)
Winner: rogwyn

1) iwilson: Homeworld G3 B2 Y3

2) rogwyn: Homeworld B3 G2 R3

3) iwilson: Build Y1 Iwilson

4) rogwyn: Pass

5) iwilson: Trade Y1 G1 Iwilson

6) rogwyn: Build R1 Rogwyn

7) iwilson: Build Y1 Iwilson

8) rogwyn: Build R1 Rogwyn

9) iwilson: Trade Y1 R1 Iwilson

10) rogwyn: Build R2 Rogwyn

11) iwilson: Build Y1 Iwilson

12) rogwyn: Build R2 Rogwyn

13) iwilson: Discover Y3 Iwilson G1 Newone

14) rogwyn: Trade R1 Y1 Rogwyn

15) iwilson: Move R1 Iwilson Newone

16) rogwyn: Move R3 Rogwyn Newone

17) iwilson: Build Y1 Iwilson

18) rogwyn: Build Y2 Rogwyn

19) iwilson: Build G1 Iwilson

20) rogwyn: Trade R1 B1 Rogwyn

21) iwilson: Move G1 Iwilson Newone

22) rogwyn: Attack Y3 Newone

23) iwilson: Trade Y1 R1 Iwilson

24) rogwyn: Trade Y2 G2 Rogwyn

25) iwilson: Move R1 Iwilson Newone

26) rogwyn: Move R3 Newone Iwilson

27) iwilson: Trade Y1 B1 Iwilson

28) rogwyn: Attack G1 Iwilson

29) iwilson: Build B1 Iwilson

30) rogwyn: Attack B1 Iwilson

31) iwilson: Build B2 Iwilson

32) rogwyn: Attack B1 Iwilson

33) iwilson: Trade B2 R2 Iwilson

34) rogwyn: Attack R2 Iwilson



13834)
Started: 2009.7.12, Ended: 2009.7.12
Participants: Twoflower (S), PottyTroll (N)
Winner: PottyTroll

1) PottyTroll: Homeworld G2 B1 Y3

2) Twoflower: Homeworld B1 G2 Y3
	Twoflower: homeworld b1 g2 y3

3) PottyTroll: Build Y1 Pottytroll

4) Twoflower: Build Y1 Twoflower

5) PottyTroll: Discover Y1 Pottytroll R3 Grundletown

6) Twoflower: Trade Y1 G1 Twoflower

7) PottyTroll: Build Y1 Pottytroll

8) Twoflower: Discover G1 Twoflower B3 Theface

9) PottyTroll: Trade Y1 B1 Pottytroll

10) Twoflower: Build G1 Theface

11) PottyTroll: Build B2 Pottytroll

12) Twoflower: Trade G1 Y1 Theface

13) PottyTroll: Trade B2 R2 Pottytroll

14) Twoflower: Build Y1 Theface

15) PottyTroll: Move R2 Pottytroll Theface

16) Twoflower: Build Y2 Twoflower

17) PottyTroll: Attack Y1 Theface

18) Twoflower: Trade Y2 G2 Twoflower

19) PottyTroll: Attack G1 Theface

20) Twoflower: Build Y2 Twoflower

21) PottyTroll: Sacrifice Y3 Pottytroll
Move Y1 Grundletown Twoflower
Move Y1 Theface Twoflower
Move R2 Theface Twoflower
Catastrophe Twoflower Y



13835)
Started: 2009.7.12, Ended: 2009.7.13
Participants: PottyTroll (S), Twoflower (N)
Winner: Twoflower

1) Twoflower: Homeworld R2 G3 B3

2) PottyTroll: Homeworld B3 G1 Y3

3) Twoflower: Build B1 Twoflower

4) PottyTroll: Build Y1 Pottytroll

5) Twoflower: Build B1 Twoflower

6) PottyTroll: Discover Y1 Pottytroll G2 Pigtesticles

7) Twoflower: Trade B1 Y1 Twoflower

8) PottyTroll: Build Y1 Pottytroll

9) Twoflower: Build Y2 Twoflower

10) PottyTroll: Build Y2 Pottytroll

11) Twoflower: Trade Y2 R2 Twoflower

12) PottyTroll: Trade Y2 B2 Pottytroll

13) Twoflower: Build Y2 Twoflower

14) PottyTroll: Move B2 Pottytroll Pigtesticles

15) Twoflower: Discover R2 Twoflower B1 Cmot-dibbler

16) PottyTroll: Trade Y1 R1 Pottytroll

17) Twoflower: Trade Y2 G2 Twoflower

18) PottyTroll: Build R1 Pottytroll

19) Twoflower: Build G1 Twoflower

20) PottyTroll: Move R1 Pottytroll Pigtesticles

21) Twoflower: Move G1 Twoflower Cmot-dibbler

22) PottyTroll: Discover R1 Pigtesticles B1 Cameltoe

23) Twoflower: Sacrifice G2 Twoflower
Build G1 Cmot-dibbler
Build G2 Cmot-dibbler

24) PottyTroll: Build B2 Pigtesticles

25) Twoflower: Trade G2 B2 Cmot-dibbler

26) PottyTroll: Trade B2 Y2 Pigtesticles

27) Twoflower: Build G2 Cmot-dibbler

28) PottyTroll: Move Y2 Pigtesticles Cameltoe

29) Twoflower: Trade G1 Y1 Cmot-dibbler

30) PottyTroll: Trade Y2 G2 Cameltoe

31) Twoflower: Discover G1 Cmot-dibbler G3 Brainpick

32) PottyTroll: Sacrifice Y1 Pigtesticles
Move B2 Pigtesticles Cameltoe

33) Twoflower: Discover G2 Cmot-dibbler Y2 Zombietestes

34) PottyTroll: Trade B2 Y2 Cameltoe

35) Twoflower: Sacrifice G2 Zombietestes
Build B2 Twoflower
Build B2 Cmot-dibbler

36) PottyTroll: Sacrifice G2 Cameltoe
Build R1 Cameltoe
Build R2 Cameltoe

37) Twoflower: Sacrifice G1 Brainpick
Build R3 Cmot-dibbler

38) PottyTroll: Build R3 Pottytroll

39) Twoflower: Discover B2 Cmot-dibbler G2 Poobag

40) PottyTroll: Sacrifice Y3 Pottytroll
Move R1 Cameltoe Twoflower
Move R1 Cameltoe Twoflower
Move R2 Cameltoe Twoflower
Catastrophe Twoflower Red

41) Twoflower: Build B3 Poobag

42) PottyTroll: Build R1 Pottytroll

43) Twoflower: Move R3 Cmot-dibbler Poobag

44) PottyTroll: Trade R1 Y1 Pottytroll

45) Twoflower: Build Y2 Twoflower

46) PottyTroll: Build Y2 Pottytroll

47) Twoflower: Sacrifice Y2 Twoflower
Move R3 Poobag Pottytroll
Move B3 Poobag Pottytroll

48) PottyTroll: Attack R3 Pottytroll

49) Twoflower: Sacrifice R2 Cmot-dibbler
Attack R3 Pottytroll
Attack R3 Pottytroll

50) PottyTroll: Build R1 Pottytroll
Catastrophe Pottytroll R

51) Twoflower: Trade B3 R3 Twoflower



13813)
Started: 2009.7.13, Ended: 2009.7.17
Participants: MikeYarrum (S), PottyTroll (N)
Winner: PottyTroll

1) PottyTroll: Homeworld G3 Y1 B3



13837)
Started: 2009.7.14, Ended: 2009.7.19
Participants: MikeYarrum (S), zxcv411 (N)
Winner: zxcv411

1) zxcv411: Homeworld R2 B1 G3



13822)
Variants: "Hard time"
Started: 2009.7.15, Ended: 2009.9.3
Participants: agentofchaos (S), ZackStack (W), zxcv411 (N), headphoned (E)
Winner: ZackStack

1) zxcv411: Homeworld R1 B2 G3
	ZackStack: I'm having enough trouble keeping track of what I'm doing in my first three player game... this should get really interesting :-)

Have fun everyone!

2) headphoned: Homeworld G1 B3 Y3

3) agentofchaos: Homeworld R2 B3 G3
	agentofchaos: Multiplayer games can be confusing, but that's part of the fun! Enjoy the game :-)

4) ZackStack: Homeworld R1 B3 G3

5) zxcv411: Build G1 Zxcv411

6) headphoned: Build Y1 Headphoned

7) agentofchaos: Build G1 Agentofchaos

8) ZackStack: Build G1 Zackstack

9) zxcv411: Build G1 Zxcv411

10) headphoned: Trade Y1 R1 Headphoned

11) agentofchaos: Build G2 Agentofchaos

12) ZackStack: Trade G1 Y1 Zackstack

13) zxcv411: Trade G1 Y1 Zxcv411

14) headphoned: Build R1 Headphoned

15) agentofchaos: Trade G1 Y1 Agentofchaos

16) ZackStack: Build G1 Zackstack

17) zxcv411: Trade G3 Y3 Zxcv411

18) agentofchaos: Build Y1 Agentofchaos

19) ZackStack: Build G1 Zackstack

20) zxcv411: Discover Y1 Zxcv411 G3 Starbug

21) agentofchaos: Trade Y1 R1 Agentofchaos

22) ZackStack: Discover G1 Zackstack Y2 Criton

23) zxcv411: Build Y1 Starbug

24) agentofchaos: Build G1 Agentofchaos

25) ZackStack: Build G2 Criton

26) zxcv411: Move Y1 Starbug Zxcv411

27) agentofchaos: Build R2 Agentofchaos

28) ZackStack: Move G2 Criton Headphoned

29) zxcv411: Trade Y1 B1 Zxcv411

30) agentofchaos: Discover R2 Agentofchaos Y1 Quasgar

31) ZackStack: Build G2 Headphoned

32) zxcv411: Move B1 Zxcv411 Starbug

33) agentofchaos: Build R2 Agentofchaos

34) ZackStack: Trade G2 R2 Headphoned

35) zxcv411: Build G2 Zxcv411

36) agentofchaos: Move G1 Agentofchaos Quasgar

37) ZackStack: Build G2 Zackstack

38) zxcv411: Trade G2 R2 Zxcv411

39) agentofchaos: Move R2 Quasgar Criton

40) ZackStack: Discover G1 Criton B1 Lister

41) zxcv411: Build R3 Zxcv411

42) agentofchaos: Move R2 Agentofchaos Quasgar

43) ZackStack: Sacrifice R2 Headphoned
Attack R1E Headphoned
Attack R1E Headphoned

44) zxcv411: Move R3 Zxcv411 Starbug

45) agentofchaos: Sacrifice G2 Agentofchaos
Build R2 Criton
Build R3 Quasgar

46) ZackStack: Build G2 Lister

47) zxcv411: Build R3 Starbug

48) agentofchaos: Discover R2 Criton Y3 Io

49) ZackStack: Trade G2 Y2 Lister

50) zxcv411: Build R3 Zxcv411

51) agentofchaos: Move R2 Io Zxcv411
Catastrophe Zxcv411 R

52) ZackStack: Build G2 Lister

53) zxcv411: Move R3 Starbug Zxcv411

54) agentofchaos: Build G2 Quasgar

55) ZackStack: Trade G2 Y2 Zackstack

56) zxcv411: Move R3 Starbug Criton

57) agentofchaos: Sacrifice G2 Quasgar
Build R1 Criton
Build R2 Criton
Catastrophe Criton R

58) ZackStack: Trade G1 R1 Lister

59) zxcv411: Build B1 Starbug

60) agentofchaos: Move R3 Quasgar Starbug
	ZackStack: On second thought... that would probably be a bit too tempting for you zx :-)

61) ZackStack: Build R2 Lister

62) zxcv411: Build R2 Zxcv411

63) agentofchaos: Discover R1 Agentofchaos Y1 Demento

64) ZackStack: Build Y2 Lister

65) zxcv411: Move R2 Zxcv411 Demento

66) agentofchaos: Discover R1 Demento Y2 Yorgmoss

67) ZackStack: Sacrifice Y2 Lister
Move R1 Lister Agentofchaos
Move R2 Lister Agentofchaos

68) zxcv411: Trade Y3 R3 Zxcv411

69) agentofchaos: Build Y2 Agentofchaos

70) ZackStack: Sacrifice Y2 Zackstack
Move R1 Headphoned Zxcv411
Move R1 Headphoned Zxcv411
Catastrophe Zxcv411 Red

71) zxcv411: Move R2 Demento Agentofchaos
Catastrophe Agentofchaos Red

72) agentofchaos: Move R2 Quasgar Zxcv411

73) ZackStack: Build G1 Lister
	ZackStack: Looking for some revenge zx?

74) zxcv411: Build G2 Zxcv411

75) agentofchaos: Attack G2N Zxcv411
	ZackStack: Sigh... by revenge I meant blow up Agent's red star! :-)

76) ZackStack: Trade G1 B1 Zackstack

77) zxcv411: Build B1 Starbug
	agentofchaos: Yes well that has happened anyway!

78) agentofchaos: Attack G1N Zxcv411
	ZackStack: I figured some incentive was in order :-)

79) agentofchaos: Trade G2 B2 Zxcv411

80) ZackStack: Discover B1 Zackstack Y2 Holly

81) agentofchaos: Attack Y1N Starbug

82) ZackStack: Build G1 Zackstack

83) agentofchaos: Build G2 Agentofchaos
	agentofchaos: Payback time!

84) ZackStack: Trade G2 B2 Lister

85) agentofchaos: Sacrifice Y1 Agentofchaos
Move B2 Zxcv411 Starbug
Catastrophe Starbug B

86) ZackStack: Sacrifice G2 Headphoned
Build B1 Holly
Build B1 Holly

87) agentofchaos: Move R3 Starbug Holly

88) ZackStack: Sacrifice Y2 Lister
Move B1 Holly Agentofchaos
Move B1 Holly Agentofchaos

89) agentofchaos: Sacrifice R2 Zxcv411
Attack B1W Agentofchaos
Attack B1W Agentofchaos

90) ZackStack: Move B1 Holly Agentofchaos
Catastrophe Agentofchaos Blue

	ZackStack: Thanks for the game!  Now I need to find a 4 player where one of the players doesn't drop out...
	agentofchaos: Yes seems to be hard to find four reliable players. 


13851)
Variants: "Unrated"
Started: 2009.7.16, Ended: 2009.7.23
Participants: ZackStack (S), umfpt (N)
Winner: ZackStack

1) umfpt: Homeworld B3 G1 Y3

2) ZackStack: Homeworld Y1 B2 G3

3) umfpt: Build Y1 Umfpt

4) ZackStack: Build G1 Zackstack
	ZackStack: Sorry about the undo... forgot what sizes I needed when I scrolled to the top... :-/  Have a good game!

5) umfpt: Discover Y1 Umfpt B2 Tola

6) ZackStack: Build G1 Zackstack

7) umfpt: Build Y1 Umfpt

8) ZackStack: Discover G1 Zackstack Y3 Daisy
	ZackStack: Having 3 of a color in one place is dangerous later... but for now I'm safe from reprisal.
	umfpt: Yeah, there's no way for me to get there and I don't have any green ships anyway.

9) umfpt: Build Y2 Umfpt

10) ZackStack: Build G2 Daisy

11) umfpt: Trade Y2 G2 Umfpt

12) ZackStack: Discover G2 Daisy B2 Bluebell

13) umfpt: Move G2 Umfpt Tola

14) ZackStack: Sacrifice G3 Zackstack
Build G2 Bluebell
Build G3 Daisy
Build G3 Zackstack

15) umfpt: Build G3 Tola
	ZackStack: This is a neat move to make with big green ships. :-)

16) ZackStack: Trade G2 Y2 Bluebell

17) umfpt: Discover G2 Tola Y3 Ohnoes
	umfpt: Nice


18) ZackStack: Sacrifice G3 Daisy
Build Y2 Bluebell
Build G2 Daisy
Build G3 Bluebell
	ZackStack: Are you going to be at DP tomorrow (Tuesday)?  Or are we skipping construction week?

19) umfpt: Move G2 Ohnoes Zackstack
	umfpt: I'll probably go on Tuesday to check out the setup.  I could see it being difficult for you if you have Hazel with you.

20) ZackStack: Trade G1 R1 Zackstack
	ZackStack: I'll just have to keep it short... though Gwen might be able to pick her up.  We'll see.

21) umfpt: Sacrifice G2 Zackstack
Build G1 Tola
Build Y2 Tola
	ZackStack: Bold, but dangerous :-)

22) ZackStack: Build G2 Zackstack

23) umfpt: Trade Y1 R1 Umfpt

24) ZackStack: Discover G2 Daisy R2 Rose
	ZackStack: Be careful with that homeworld...

25) umfpt: Move G3 Tola Daisy

26) ZackStack: Sacrifice Y2 Bluebell
Move G2 Rose Umfpt
Move G2 Bluebell Umfpt

27) umfpt: Trade Y1 R1 Tola

28) ZackStack: Sacrifice G1 Daisy
Build G1 Umfpt
Catastrophe Umfpt Green

29) umfpt: Move R1 Tola Daisy
	umfpt: Sorry about that. It seemed like a wasted move based on what I'm guessing your next move will be.

30) ZackStack: Build R2 Zackstack
	ZackStack: Good call on the wasted move.  ;-)

31) umfpt: Build R2 Daisy

32) ZackStack: Trade Y2 R2 Bluebell

33) umfpt: Sacrifice Y3 Umfpt
Move G3 Daisy Zackstack
Move R1 Daisy Zackstack
Move R2 Daisy Zackstack
Catastrophe Zackstack R

34) ZackStack: Trade G2 R2 Zackstack

35) umfpt: Move G3 Zackstack Umfpt

36) ZackStack: Build G1 Bluebell
	ZackStack: Hey! Retaliation!  Good times :-)

37) umfpt: Build R1 Umfpt
	umfpt: If only I had a plan of what to do now.

38) ZackStack: Build G1 Zackstack
	ZackStack: If it makes you feel better, I think I missed a chance to win on my last move... now we build up again :-)

39) umfpt: Build G2 Umfpt

40) ZackStack: Trade G3 Y3 Bluebell

41) umfpt: Sacrifice G3 Umfpt
Build G2 Tola
Build Y1 Tola
Build Y1 Tola

42) ZackStack:
Move Y3 Bluebell Umfpt

43) umfpt: Move Y1 Tola Umfpt

44) ZackStack: Sacrifice R2 Bluebell
Attack R1 Umfpt
Attack R1 Umfpt
	ZackStack: You probably shouldn't have destroyed your only size 3 ship... the G3 sacrifice is best when you get a size three or two out of it.  Though I am curious how this plays out!

45) umfpt: Sacrifice G2 Tola
Build Y2 Umfpt
Build Y2 Umfpt
Catastrophe Umfpt Y
	umfpt: I couldn't move it and figured you would trigger a catastrophy if I didn't sacrifice it myself.  That's if I'm remembering the game position correctly. 

46) ZackStack: Trade R1 B1 Umfpt

47) umfpt: Move G1 Tola Umfpt

48) ZackStack: Sacrifice G3 Zackstack
Build B1 Umfpt
Build B1 Umfpt
Build G2 Zackstack
Catastrophe Umfpt Blue

	umfpt: Good game. I couldn't stop you winning this turn.
	ZackStack: Good game.  You're getting better fast!


13845)
Variants: "Unrated"
Started: 2009.7.17, Ended: 2009.10.15
Participants: jonaskoelker (S), AnalogKid (N)
Winner: AnalogKid

1) AnalogKid: Homeworld Y3 B1 G3

2) jonaskoelker: Homeworld Y2 B1 G3
	AnalogKid: Hello! Thanks for accepting my challenge :)
Have you played Homeworlds before?

3) AnalogKid: Build G1 Analogkid
	jonaskoelker: No, this is my first game.  I don't even have IceHouse pieces, though I have ordered my first set very recently.  I've read the game between Andy and Russell and a few strategy discussions on the icehouse mailing list.  I felt tempted to open with "homeworld G2 Y2 R3", then build, move, attack, but I think that fails when you make the first (real) move (you build, I build, you convert small to red, then I can't move)... oh well...

4) jonaskoelker: Build G1 Jonaskoelker
	AnalogKid: I think you chose a much better opening.  The "banker" homeworld is a good option for new players and the supposedly choosing a homeworld only one hop away from your opponent is not.

I have only played Homeworlds twice now myself.  So, I am a newbie too.  I like playing on SDG because you can take several days to think about a turn ^_^
	jonaskoelker: Yeah, that's what I hear.  I also hear Andy prefers "homeworld B2 R1 G3", but maybe yellow will work out fine.

In any case, behold the constructive power of my fully armed an operational battlestati... erm, factory ;-)


5) AnalogKid: Trade G1 Y1 Analogkid
	jonaskoelker: By the way, instead of building a small green, could I have sacrificed my large green an built three small ones?

Or would I lose because I didn't have any ships in my homeworld?  What if I had G3 R1 in some other system; could I sacrifice the G3 and build three greens?  What if I had just the G3?

My interpretation is that star systems "die" "as soon as possible", so I when I sacrifice the lonely G3, its star system disappears before I can use my three build actions. Similarly, the green-producing ability it gave itself would be gone (but other green ships could give it to compensate).

Do you know what SDG's interpretation is?

	jonaskoelker: "supposedly choosing a homeworld only one hop away from your opponent is not [good for newbies]."

That's interesting.  I think it might--the game would be more tactical (as opposed to strategic)--you need to think a few moves ahead and examine them thoroughly, but you don't need to understand much of the broader, long term strategies that are useful if you want to conquer a large(st) world.

I think it's also easier to know how good your position is---you'll probably either be thinking "I could win if only he didn't have that damn..." or "Whew, I would have lost if I hadn't found the defense against [maneuver]."  I think the mid-game in large worlds are closer to "roughly evn", "slightly advantageous" and "moderately advantageous" in range.

But I speculate :)

6) jonaskoelker: Trade G1 Y1 Jonaskoelker
	AnalogKid: The 3HOUSE booklet, in the "Game Over" section says:

"It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over."

(I believe SDG follows this rule).  Additionally, the rule about immediately returning abandoned stars to the bank only applies to non-homeworld star-systems.

However, you still could not have sacrificed your large green effectively because you can only build ships of the same color as another ship you control in the target system.  i.e. The colors of your stars and the sacrificed green ship are not usable.  So, you would not have been allowed to build ANY ships if you had sac'd the G3.  If you had had other ships anywhere, you could build new ships of the same color(s) in their systems, being careful to have a ship at your homeworld in the end.
	AnalogKid: I have read of some advanced players starting with a small universe (and presumably a red ship).  I am too new of a player to judge the effectiveness of that strategy or to judge the relative merits of starting with red vs. yellow in the homeworld.  I want to explore the B-Y G3 option for awhile before I move on to the others. :)

7) AnalogKid: Discover Y1 Analogkid G2 Ramandu
	jonaskoelker: So, for instance, if I had (only) a Y3 at my homeworld, I could sacrifice it if I used (at least one of) the moves to move something back there.  Isn't that also the only way in which I can temporarily leave my homeworld empty?

8) jonaskoelker: Discover Y1 Jonaskoelker G3 Alderaan
	AnalogKid: Yes, my understanding is that sacrificing a yellow ship as you describe would be OK.  I was also thinking you could sac your last ship at the homeworld if it was red and take control of an opponent's ship in that system.  However, I see now that that fails too.  The G, R, and B actions all require a ship in the target system (as do sacrifice actions).

9) AnalogKid: Build G1 Analogkid
	jonaskoelker: "We are on a diplomatic mission.  These aren't the death star blueprints you're looking for" ;-)


10) jonaskoelker: Build G1 Jonaskoelker

11) AnalogKid: Trade G1 B1 Analogkid

12) jonaskoelker: Trade G3 B3 Jonaskoelker

13) AnalogKid: Build B2 Analogkid

14) jonaskoelker: Build B2 Jonaskoelker
	AnalogKid: I'm very curious to see how this series of moves works out :)

15) AnalogKid: Discover Y1 Ramandu G3 Coriakin
	jonaskoelker: So am I...

16) jonaskoelker: Move B2 Jonaskoelker Alderaan

17) AnalogKid: Build G1 Analogkid
	jonaskoelker: I'll be interested to see how your plan develops :)

18) jonaskoelker: Build B2 Alderaan

19) AnalogKid: Trade B1 R1 Analogkid

20) jonaskoelker: Trade B2 G2 Alderaan

21) AnalogKid: Discover B2 Analogkid G2 Ramandu

22) jonaskoelker: Build B1 Alderaan

23) AnalogKid: Build Y1 Coriakin
	jonaskoelker: I'm not sure I like how the board looks...
	AnalogKid: Sorry for the long delay!  I was finding it rather difficult to choose a move ...

24) jonaskoelker: Build Y2 Alderaan
	jonaskoelker: That's fine--I have not been left homworlds-less in the meantime :)

25) AnalogKid: Move Y1 Coriakin Ramandu

26) jonaskoelker: Trade Y2 R2 Alderaan

27) AnalogKid: Build Y2 Ramandu

	AnalogKid: Hi, I see that you've been swamped for awhile with your games, but I'm wondering whether you intend to continue this one.  If so, I'm willing to wait, but if not, I'd like to start another Homeworlds game with someone. (But I don't want two games going at once ...)
	jonaskoelker: Hey, AnalogKid.  Sorry for falling off the planet.  Resigning me was fine.


13828)
Variants: "No undo, Sinister, Hard time"
Started: 2009.7.17, Ended: 2009.7.27
Participants: zoltar (S), headphoned (W), zxcv411 (N), mindloss (E)
Winner: zxcv411

1) zxcv411: Homeworld R1 B2 G3

2) mindloss: Homeworld B2 R3 G3

3) zoltar: Homeworld B1 R2 G3

4) headphoned: Homeworld R1 B3 G3

5) zxcv411: Build G1 Zxcv411

6) mindloss: Build G1 Mindloss

7) zoltar: Build G1 Zoltar

8) headphoned: Build G1 Headphoned

9) zxcv411: Trade G3 Y3 Zxcv411

10) zoltar: Trade G1 Y1 Zoltar

	zoltar: With two of them gone, we should either play a new multi-player game or else just start a two-player one.


13844)
Started: 2009.7.17, Ended: 2009.7.21
Participants: zoltar (S), TwoShort (N)
Winner: zoltar



13857)
Started: 2009.7.17, Ended: 2009.8.5
Participants: TwoShort (S), mick71 (N)
Winner: TwoShort

1) mick71: Homeworld B1 G3 R3

2) TwoShort: Homeworld B1 R2 G3
	TwoShort: I had meant to suspend my standing challenge during my vacation.  Sorry; I'm back now.  Also, you appear to be a new player, and you've made, in my opinion, no offense, a disastrous opening.  Which all adds up to probably nobody is reading this.  On the other hand, if you want to play, or drop this game in favor of an unrated tutorial, or whatever, what the heck...



13821)
Variants: "Hard time"
Started: 2009.7.18, Ended: 2009.7.27
Participants: agentofchaos (S), PottyTroll (N)
Winner: agentofchaos

1) PottyTroll: Homeworld G3 B1 Y3

2) agentofchaos: Homeworld B3 R2 G3
	PottyTroll: good luck
	agentofchaos: Thanks, good luck to you too!

3) PottyTroll: Build Y1 Pottytroll

4) agentofchaos: Build G1 Agentofchaos

5) PottyTroll: Build Y1 Pottytroll

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) PottyTroll: Discover Y1 Pottytroll R2 Hogdumpling

8) agentofchaos: Build Y2 Agentofchaos

9) PottyTroll: Build Y2 Pottytroll

10) agentofchaos: Build G1 Agentofchaos

11) PottyTroll: Move Y2 Pottytroll Hogdumpling

12) agentofchaos: Trade Y1 R1 Agentofchaos

13) PottyTroll: Trade Y1 B1 Pottytroll

14) agentofchaos: Trade G1 B1 Agentofchaos

15) PottyTroll: Build B2 Pottytroll

16) agentofchaos: Discover B1 Agentofchaos Y1 Dreamzone

17) PottyTroll: Move B2 Pottytroll Hogdumpling

18) agentofchaos: Build Y1 Agentofchaos

19) PottyTroll: Trade Y2 G2 Hogdumpling

20) agentofchaos: Build G1 Agentofchaos

21) PottyTroll: Build Y2 Hogdumpling

22) agentofchaos: Move Y2 Agentofchaos Dreamzone

23) PottyTroll: Trade Y2 R2 Hogdumpling

24) agentofchaos: Build Y2 Agentofchaos

25) PottyTroll: Move R2 Hogdumpling Dreamzone

26) agentofchaos: Sacrifice R1 Agentofchaos
Attack R2 Dreamzone

27) PottyTroll: Build Y2 Hogdumpling

28) agentofchaos: Trade Y2 G2 Dreamzone
	PottyTroll: oops
	agentofchaos: :-)

29) PottyTroll: Trade B1 R1 Pottytroll

30) agentofchaos: Build R1 Dreamzone

31) PottyTroll: Sacrifice G2 Hogdumpling
Build Y2 Pottytroll
Build Y3 Pottytroll

32) agentofchaos: Discover Y2 Agentofchaos G1 Earthroot

33) PottyTroll: Trade Y2 G2 Hogdumpling

34) agentofchaos: Sacrifice G2 Dreamzone
Build Y2 Agentofchaos
Build Y3 Earthroot

35) PottyTroll: Discover Y3 Pottytroll B2 Baitmaster

36) agentofchaos: Move Y3 Earthroot Hogdumpling

37) PottyTroll: Move G2 Hogdumpling Earthroot

38) agentofchaos: Discover Y2 Earthroot B2 Terrorworld

39) PottyTroll: Trade Y2 G2 Pottytroll

40) agentofchaos: Sacrifice R2 Dreamzone
Attack B2 Hogdumpling
Attack Y1 Hogdumpling

41) PottyTroll: Build Y2 Pottytroll

42) agentofchaos: Move B1 Dreamzone Terrorworld

43) PottyTroll: Move Y2 Pottytroll Terrorworld

44) agentofchaos: Sacrifice Y2 Terrorworld
Move B1 Terrorworld Pottytroll
Move B2 Hogdumpling Pottytroll

45) PottyTroll: Build G1 Earthroot

46) agentofchaos: Move G1 Agentofchaos Earthroot
Catastrophe Earthroot G

47) PottyTroll: Trade Y2 R2 Terrorworld

48) agentofchaos: Build B1 Pottytroll
Catastrophe Pottytroll B

49) PottyTroll: Build G1 Pottytroll

50) agentofchaos: Sacrifice Y2 Agentofchaos
Move G3 Agentofchaos Dreamzone
Move G3 Dreamzone Pottytroll
Catastrophe Pottytroll G

	agentofchaos: Thanks for a fun game :-)
	PottyTroll: yeah it was a good one, learned a few things there.  thanks for playing


13863)
Started: 2009.7.18, Ended: 2009.7.22
Participants: PottyTroll (S), umfpt (N)
Winner: PottyTroll

1) umfpt: Homeworld Y2 B1 G3

2) PottyTroll: Homeworld G3 B1 Y3
	umfpt: Good luck.

3) umfpt: Build G1 Umfpt
	PottyTroll: you too

4) PottyTroll: Build Y1 Pottytroll

5) umfpt: Build G1 Umfpt

6) PottyTroll: Build Y1 Pottytroll

7) umfpt: Discover G1 Umfpt B3 Tola

8) PottyTroll: Discover Y1 Pottytroll R2 Spud

9) umfpt: Build G1 Tola

10) PottyTroll: Trade Y3 G3 Pottytroll

11) umfpt: Trade G1 Y1 Tola

12) PottyTroll: Build Y2 Pottytroll

13) umfpt: Build Y2 Tola

14) PottyTroll: Build Y3 Pottytroll

15) umfpt: Sacrifice Y2 Tola
Move Y1 Tola Spud
Move Y1 Spud Pottytroll
Catastrophe Pottytroll Y

16) PottyTroll: Build G1 Pottytroll

17) umfpt: Build G2 Tola

18) PottyTroll: Trade G3 Y3 Pottytroll

19) umfpt: Trade G2 Y2 Tola

20) PottyTroll: Build G2 Pottytroll

21) umfpt: Sacrifice Y2 Tola
Move G1 Tola Spud
Move G1 Spud Pottytroll
Catastrophe Pottytroll G

22) PottyTroll: Trade Y3 G3 Pottytroll

23) umfpt: Discover G1 Umfpt Y3 Tola

24) PottyTroll: Build G1 Pottytroll

25) umfpt: Build G1 Umfpt

26) PottyTroll: Trade G1 Y1 Pottytroll

27) umfpt: Move G1 Tola Pottytroll

28) PottyTroll: Trade Y1 R1 Pottytroll

29) umfpt: Trade G1 Y1 Umfpt

30) PottyTroll: Attack G1 Pottytroll

31) umfpt: Discover Y1 Umfpt B3 Tola

32) PottyTroll: Move Y1 Spud Pottytroll

33) umfpt: Build G1 Umfpt

34) PottyTroll: Move R1 Pottytroll Tola

35) umfpt: Move Y1 Tola Pottytroll

36) PottyTroll: Trade G1 R1 Pottytroll

37) umfpt: Discover G1 Umfpt B3 Ohnoes

38) PottyTroll: Attack Y1 Pottytroll

39) umfpt: Build G1 Ohnoes

40) PottyTroll: Move Y1 Pottytroll Tola

41) umfpt: Trade G3 R3 Umfpt

42) PottyTroll: Build G1 Pottytroll

43) umfpt: Build G2 Ohnoes

44) PottyTroll: Move G1 Pottytroll Ohnoes
Catastrophe Ohnoes G

45) umfpt: Trade R3 G3 Umfpt
	umfpt: Ouch.


46) PottyTroll: Build G1 Pottytroll

47) umfpt: Build G1 Umfpt

48) PottyTroll: Move G1 Pottytroll Tola

49) umfpt: Trade G1 R1 Umfpt

50) PottyTroll: Build R2 Tola

51) umfpt: Build G1 Umfpt

52) PottyTroll: Trade R1 Y1 Tola

53) umfpt: Trade G1 B1 Umfpt

54) PottyTroll: Build Y2 Tola

55) umfpt: Build B2 Umfpt

56) PottyTroll: Trade Y2 B2 Tola

57) umfpt: Discover B1 Umfpt Y3 Ohnoes

58) PottyTroll: Build Y2 Pottytroll

59) umfpt: Build B2 Umfpt

60) PottyTroll: Move B2 Tola Umfpt
Catastrophe Umfpt B

61) umfpt: Build G1 Umfpt

62) PottyTroll: Build Y2 Tola

63) umfpt: Move B1 Ohnoes Umfpt

64) PottyTroll: Move Y2 Tola Umfpt

65) umfpt: Attack Y2S Umfpt

66) PottyTroll: Sacrifice Y2 Pottytroll
Move Y1 Tola Umfpt
Move Y1 Tola Umfpt
Catastrophe Umfpt Y

	PottyTroll: good game man
	umfpt: Thanks for the game.  I've only played a couple of times before so I'm still learning.
	PottyTroll: hey, no worries, I'm learning too :)


13823)
Variants: "Hard time"
Started: 2009.7.19, Ended: 2009.10.15
Participants: agentofchaos (S), PottyTroll (N), umfpt (E)
Winner: agentofchaos

1) PottyTroll: Homeworld B2 Y1 G3

2) umfpt: Homeworld Y3 B1 G3

3) agentofchaos: Homeworld B3 R2 G3
	agentofchaos: Hi guys, enjoy the game :-)

4) PottyTroll: Build G1 Pottytroll

5) umfpt: Build G1 Umfpt

6) agentofchaos: Build G1 Agentofchaos

7) PottyTroll: Discover G1 Pottytroll Y3 Flapjacks

8) umfpt: Discover G1 Umfpt B2 Tola

9) agentofchaos: Trade G1 Y1 Agentofchaos

10) PottyTroll: Build G1 Pottytroll

11) umfpt: Build G1 Umfpt

12) agentofchaos: Build G2 Agentofchaos

13) PottyTroll: Build G2 Pottytroll

14) umfpt: Build G2 Tola

15) agentofchaos: Build G2 Agentofchaos

16) PottyTroll: Build G3 Flapjacks

17) umfpt: Trade G2 Y2 Tola

18) agentofchaos: Build Y1 Agentofchaos

19) PottyTroll: Trade G1 B1 Pottytroll

20) umfpt: Build Y1 Tola

21) agentofchaos: Trade G2 R2 Agentofchaos

22) PottyTroll: Move B1 Pottytroll Flapjacks

23) umfpt: Trade G1 R1 Umfpt

24) agentofchaos: Discover Y1 Agentofchaos G1 Ixion

25) PottyTroll: Trade G3 R3 Flapjacks

26) umfpt: Build R1 Umfpt

27) agentofchaos: Discover Y1 Ixion G3 Dagon

28) PottyTroll: Move R3 Flapjacks Tola

29) umfpt: Sacrifice Y2 Tola
Move G1 Tola Flapjacks
Move G1 Flapjacks Pottytroll

30) agentofchaos: Sacrifice G2 Agentofchaos
Build Y2 Agentofchaos
Build Y2 Dagon

31) PottyTroll: Trade G3 R3 Pottytroll

32) umfpt: Move Y1 Tola Flapjacks

33) agentofchaos: Build Y2 Dagon

34) PottyTroll: Attack G1E Pottytroll
	PottyTroll: is there any reason the game isn't letting me attack the g1 ship in my homeworld?
	agentofchaos: In a multiplayer game the attack command has to specify the seat of the ship being attacked, i.e. the attack command for you would be 'a g1e pottytroll'. If you leave out the 'e' the command won't work. 
	PottyTroll: ahh thanks :)

35) umfpt: Build G1 Umfpt

36) agentofchaos: Build Y2 Agentofchaos

37) PottyTroll: Build R1 Pottytroll

38) umfpt: Discover Y1 Flapjacks B1 Ohnoes

39) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y2 Dagon Pottytroll
Move Y1 Dagon Pottytroll

40) PottyTroll: Move G2 Pottytroll Flapjacks

41) umfpt: Trade Y1 G1 Ohnoes

42) agentofchaos: Move Y2 Dagon Pottytroll
Catastrophe Pottytroll Y

43) PottyTroll: Trade R1 Y1 Pottytroll

44) umfpt: Build G2 Ohnoes

45) agentofchaos: Build G2 Agentofchaos

46) PottyTroll: Build G2 Pottytroll

47) umfpt: Sacrifice G3 Umfpt
Build G3 Ohnoes
Build G3 Umfpt
Build G3 Umfpt

48) agentofchaos: Move G2 Agentofchaos Ohnoes
Catastrophe Ohnoes G

49) PottyTroll: Move G1 Pottytroll Umfpt
Catastrophe Umfpt G

50) umfpt: Trade R1 G1 Umfpt
	PottyTroll: sorry bud :(

51) agentofchaos: Build R1 Agentofchaos
	umfpt: lol well I expected one of the systems to get hit.

52) PottyTroll: Build Y1 Pottytroll

53) umfpt: Build G1 Umfpt

54) agentofchaos: Build G1 Agentofchaos

55) PottyTroll: Sacrifice Y1 Pottytroll
Move R3 Tola Umfpt

56) umfpt: Build R1 Umfpt

57) agentofchaos: Trade R1 B1 Agentofchaos

58) PottyTroll: Discover R3 Umfpt G2 Porkslap

59) umfpt: Trade R1 Y1 Umfpt

60) agentofchaos: Build G2 Agentofchaos

61) PottyTroll: Build G3 Pottytroll

62) umfpt: Build R1 Umfpt

63) agentofchaos: Discover G3 Agentofchaos Y1 Lionheart

64) PottyTroll: Build Y2 Pottytroll

65) umfpt: Discover G1 Umfpt B2 Tola

66) agentofchaos: Sacrifice Y2 Agentofchaos
Move G2 Agentofchaos Lionheart
Move G3 Lionheart Agentofchaos

67) PottyTroll: Move Y2 Pottytroll Umfpt

68) umfpt: Move R1 Umfpt Tola

69) agentofchaos: Build G3 Lionheart

70) PottyTroll: Sacrifice G1 Flapjacks
Build Y2 Umfpt
Catastrophe Umfpt Y

71) umfpt: Trade R1 Y1 Tola

72) agentofchaos: Build Y2 Agentofchaos

73) PottyTroll: Build Y2 Pottytroll

74) umfpt: Build Y2 Tola

75) agentofchaos: Move G3 Lionheart Tola

76) PottyTroll: Sacrifice Y1 Pottytroll
Move R3 Porkslap Lionheart

77) umfpt: Build G1 Umfpt

78) agentofchaos: Discover G2 Lionheart Y2 Braveheart

79) PottyTroll: Move G2 Pottytroll Lionheart

80) umfpt: Build G2 Tola

81) agentofchaos: Trade G3 R3 Tola

82) PottyTroll: Build R1 Lionheart

83) umfpt: Sacrifice Y2 Tola
Move G2 Tola Flapjacks
Move Y1 Tola Flapjacks

84) agentofchaos: Move R2 Agentofchaos Umfpt

85) PottyTroll: Build G3 Lionheart

86) umfpt: Build Y1 Flapjacks

87) agentofchaos: Move G1 Agentofchaos Umfpt

88) PottyTroll: Move G2 Flapjacks Umfpt
Catastrophe Umfpt G

89) umfpt: Sacrifice G2 Flapjacks
Build R1 Umfpt
Build Y2 Flapjacks

90) agentofchaos: Attack R1E Umfpt
Catastrophe Flapjacks Y

91) PottyTroll: Build Y1 Pottytroll

92) umfpt: Attack R1S Umfpt

93) agentofchaos: Attack G1E Tola

94) PottyTroll: Discover G2 Lionheart B2 Baconwave

95) umfpt: Trade R1 Y1 Umfpt

96) agentofchaos: Discover Y2 Agentofchaos G1 Kirilthrendor

97) PottyTroll: Trade Y1 B1 Pottytroll

98) umfpt: Trade R1 G1 Umfpt

99) agentofchaos: Sacrifice G2 Braveheart
Build G1 Agentofchaos
Build G2 Tola

100) PottyTroll: Build G2 Lionheart

101) umfpt: Build G2 Umfpt

102) agentofchaos: Trade G1 R1 Agentofchaos

103) PottyTroll: Move B1 Pottytroll Lionheart

104) umfpt: Trade G1 R1 Umfpt

105) agentofchaos: Discover R1 Agentofchaos Y1 Kakrafoon

106) PottyTroll: Build B1 Lionheart

107) umfpt: Attack R2S Umfpt

108) agentofchaos: Move B1 Agentofchaos Kirilthrendor

109) PottyTroll: Build Y2 Pottytroll

110) umfpt: Build Y2 Umfpt

111) agentofchaos: Sacrifice G2 Tola
Build Y3 Agentofchaos
Build Y3 Kirilthrendor

112) PottyTroll: Trade G3 Y3 Lionheart

113) umfpt: Build Y3 Umfpt

114) agentofchaos: Build B2 Kirilthrendor

115) PottyTroll: Move Y2 Pottytroll Umfpt
Catastrophe Umfpt Y

116) umfpt: Trade R1 Y1 Umfpt

117) agentofchaos: Trade R3 B3 Tola

118) PottyTroll: Sacrifice Y3 Lionheart
Move B1 Lionheart Tola
Move B1 Lionheart Tola
Move R1 Lionheart Baconwave
Catastrophe Tola B

119) umfpt: Build Y2 Umfpt

120) agentofchaos: Sacrifice B2 Kirilthrendor
Trade Y2 B2 Kirilthrendor
Trade R1 B1 Kakrafoon

121) PottyTroll: Build Y2 Pottytroll

122) umfpt: Build R1 Umfpt

123) agentofchaos: Sacrifice Y3 Kirilthrendor
Move B1 Kirilthrendor Pottytroll
Move B1 Kakrafoon Pottytroll
Move B2 Kirilthrendor Pottytroll
Catastrophe Pottytroll B

124) umfpt: Move R2 Umfpt Baconwave

125) agentofchaos: Move Y3 Agentofchaos Lionheart

126) umfpt: Attack G2N Baconwave

127) agentofchaos: Trade Y1 R1 Agentofchaos

128) umfpt: Sacrifice Y1 Umfpt
Move R2 Baconwave Umfpt

129) agentofchaos: Sacrifice R1 Agentofchaos
Attack R3N Lionheart

130) umfpt: Build G1 Umfpt

131) agentofchaos: Attack G2N Lionheart

132) umfpt: Sacrifice Y2 Umfpt
Move G2 Umfpt Agentofchaos
Move G1 Umfpt Agentofchaos

133) agentofchaos: Sacrifice R3 Lionheart
Attack G1E Agentofchaos
Attack G2E Agentofchaos
Pass

134) umfpt: Trade R2 Y2 Umfpt

135) agentofchaos: Trade G2 R2 Agentofchaos

136) umfpt: Sacrifice G2 Baconwave
Build R1 Umfpt
Build Y1 Umfpt

137) agentofchaos: Trade R2 Y2 Agentofchaos

138) umfpt: Trade Y1 G1 Umfpt

139) agentofchaos: Move Y3 Lionheart Baconwave

140) umfpt: Build G1 Umfpt

141) agentofchaos: Move G1 Agentofchaos Lionheart

142) umfpt: Build Y1 Umfpt

143) agentofchaos: Move Y3 Baconwave Umfpt

144) umfpt: Sacrifice Y2 Umfpt
Move R1 Umfpt Agentofchaos
Move R1 Umfpt Agentofchaos

145) agentofchaos: Sacrifice Y2 Agentofchaos
Move G2 Lionheart Baconwave
Move G2 Baconwave Umfpt

146) umfpt: Sacrifice G1 Umfpt
Build R1 Agentofchaos
Catastrophe Agentofchaos R

147) agentofchaos: Trade Y3 R3 Umfpt

148) umfpt: Build G1 Umfpt

149) agentofchaos: Sacrifice G1 Lionheart
Build G1 Umfpt
Catastrophe Umfpt G

150) umfpt: Trade Y1 G1 Umfpt

151) agentofchaos: Attack G1E Umfpt

	agentofchaos: Thanks for the game and for hanging in there. I enjoyed playing you :)


13818)
Started: 2009.7.20, Ended: 2009.8.12
Participants: ts52 (S), wmreed (N)
Winner: wmreed

1) wmreed: Homeworld G2 B1 Y3

2) ts52: Homeworld Y3 B2 G3

3) wmreed: Build Y1 Wmreed
	wmreed: Hello!

4) ts52: Build G1 Ts52

5) wmreed: Trade Y1 G1 Wmreed

6) ts52: Trade G1 Y1 Ts52

7) wmreed: Build G1 Wmreed

8) ts52: Discover Y1 Ts52 G1 Robin
	wmreed: Just FYI, I will be out of town Thurs. - Sun. if our game is still going on.

9) wmreed: Discover G1 Wmreed B3 Ballard

10) ts52: Build G2 Ts52
	ts52: Ok, no problem. Thanks for the heads up.

11) wmreed: B Y1 Wmreed

12) ts52: D G2 Ts52 B1 Grover

13) wmreed: T G1 R1 Wmreed

14) ts52: Build G1 Grover

15) wmreed: T Y3 G3 Wmreed

16) ts52: Sacrifice Y1 Robin
Discover G2 Grover G3 Kermit

17) wmreed: M G3 Wmreed Kermit

18) ts52: Build G1 Kermit
Catastrophe Kermit Green

19) wmreed: Build R1 Wmreed

20) ts52: Trade G3 R3 Ts52
	wmreed: Nice play following my stupid move.


21) wmreed: Build Y1 Wmreed

22) ts52: Sacrifice G1 Grover
Build R1 Ts52

23) wmreed: Build R2 Wmreed

24) ts52: Trade R1 G1 Ts52

25) wmreed: Move R1 Wmreed Ballard

26) ts52: Build G1 Ts52

27) wmreed: Build G2 Ballard

28) ts52: Discover G1 Ts52 B1 Gonzo

29) wmreed: Discover Y1 Wmreed G3 Logan

30) ts52: Build R1 Ts52

31) wmreed: Move R1 Wmreed Logan

32) ts52: Move R1 Ts52 Gonzo

33) wmreed: Build Y1 Logan

34) ts52: Build R2 Gonzo

35) wmreed: Sacrifice G2 Ballard
Build R2 Logan
Build R3 Wmreed

36) ts52: Build R3 Ts52

37) wmreed: Build Y2 Wmreed

38) ts52: Trade R2 Y2 Gonzo

39) wmreed: Discover R2 Wmreed Y3 Jessica

40) ts52: Discover R3 Ts52 B1 Grover

41) wmreed: Move Y2 Wmreed Ballard
	wmreed: man, that's a lot of red.


42) ts52: Build G2 Ts52

43) wmreed: Build Y2 Wmreed

44) ts52: Discover G1 Gonzo Y3 Bigbird

45) wmreed: Sacrifice Y1 Logan
Discover R2 Logan Y1 Francis

46) ts52: Sacrifice G2 Ts52
Build G2 Ts52
Build R2 Gonzo

47) wmreed: Trade R3 G3 Wmreed

48) ts52: Move G2 Ts52 Gonzo

49) wmreed: Move R1 Ballard Wmreed

50) ts52: Move G2 Gonzo Bigbird

51) wmreed: Sacrifice G3 Wmreed
Build R3 Wmreed
Build G2 Ballard
Build G3 Ballard

52) ts52: Build G3 Ts52

53) wmreed: Move G3 Ballard Gonzo

54) ts52: Move R2 Gonzo Ballard

55) wmreed: Sacrifice R2 Jessica
Attack R2 Ballard
Attack Y2 Gonzo

56) ts52: Trade R3 Y3 Grover

57) wmreed: Sacrifice R1 Logan
Attack R1 Gonzo

58) ts52: Move R3 Ts52 Grover

59) wmreed: Move G1 Ballard Francis

60) ts52: Move R3 Grover Logan

61) wmreed: Sacrifice Y2 Gonzo
Move G3 Gonzo Ts52
Move G1 Francis Ts52
Catastrophe Ts52 Green

	wmreed: Thank you for the game.
	ts52: Well played. I somehow missed that you had the green ships in place to do that.
Thanks for the game.


13861)
Variants: "Unrated, Hard time"
Started: 2009.7.21, Ended: 2009.9.6
Participants: agentofchaos (S), jonaskoelker (N)
Winner: agentofchaos

1) jonaskoelker: Homeworld B2 R1 G3

2) agentofchaos: Homeworld B3 R2 G3

3) jonaskoelker: Build G1 Jonaskoelker
	agentofchaos: Hi, enjoy the game. 

4) agentofchaos: Build G1 Agentofchaos
	jonaskoelker: Hi.  Thanks, You too :)

Are you an experienced player?  This is my second game of homeworlds, and my first is still in progress.  Expect me to make a mistake or two ;)

Maybe we can have a post-game strategy discussion?

	agentofchaos: I'm moderately experienced, I've played about a dozen games or so. I'd be happy to have a discussion about strategy afterwards. 

5) jonaskoelker: Trade G1 Y1 Jonaskoelker

6) agentofchaos: Build G1 Agentofchaos
	jonaskoelker: cool, I'm looking forward to the post-game discussion :)

As a tangent, what do you think about micro-world openings (i.e. B2 Y1 G3 vs B3 Y3 G3)?  How about extremely offensive microworlds, such as B2 Y1 G3 vs G3 Y3 R3?
	agentofchaos: I'm not sure if the rules allow you to have 2 stars of the same size in your homeworld but I could be wrong on that point. I think microworlds like b2 y1 g3 are fine, as I don't think the size of your homeworld stars matters too much. Personally I prefer to start with a red star in my homeworld so I can always protect it even if I don't have a red ship. 

7) jonaskoelker: Build Y1 Jonaskoelker

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) jonaskoelker: Build Y2 Jonaskoelker

10) agentofchaos: Build Y2 Agentofchaos

11) jonaskoelker: Discover Y1 Jonaskoelker G3 Lush

12) agentofchaos: Trade Y1 R1 Agentofchaos

13) jonaskoelker: Trade Y1 R1 Jonaskoelker

14) agentofchaos: Build Y1 Agentofchaos
	jonaskoelker: Sorry for the long delay, I'll try and play faster.
	agentofchaos: That's alright, how you use your time is up to you. 

15) jonaskoelker: Build R2 Jonaskoelker

16) agentofchaos: Discover R1 Agentofchaos G1 Ykron

17) jonaskoelker: Move R2 Jonaskoelker Lush

18) agentofchaos: Build R2 Ykron

19) jonaskoelker: Build R3 Lush

20) agentofchaos: Sacrifice Y1 Agentofchaos
Discover R2 Ykron Y3 Jeroboam
	jonaskoelker: Planet wide celebration was held on Lush, in honor of the planet's first large ship.  She has been christened "Red 3".

(For bonus geek credit, name the pilot of Red 3 in A New Hope :D)


21) jonaskoelker: Build R3 Lush
	agentofchaos: A joyous occasion I'm sure!
I'll have to pass on the geek credit, my Star Wars trivia is a bit rusty :-)
	jonaskoelker: The answer is Biggs :)

22) agentofchaos: Sacrifice Y2 Agentofchaos
Move R1 Ykron Lush
Pass
Catastrophe Lush R
	jonaskoelker: Another large warship was constructed on Lush.  The people celebrated yet again, and in honor of King Arthur, the greatest counter of numbers among men, named this ship "Red 5".

Rumor has it that our neighbors (with whom we have a friendly but tense relationship) wants to participate in the space race as well.  But they are no match for jonaskoelkerian nor lushian proud red cosmonauts!
	agentofchaos: I'm getting a bit nervous about all those large red ships, time for drastic measures...

23) jonaskoelker: Build G1 Jonaskoelker

24) agentofchaos: Trade G1 Y1 Agentofchaos
	jonaskoelker: Yay, my plan worked :)

25) jonaskoelker: Build Y1 Lush
	agentofchaos: A very dark design, I'll wager...

26) agentofchaos: Build Y2 Agentofchaos

27) jonaskoelker: Discover Y1 Lush B1 Smallblue

28) agentofchaos: Trade Y1 G1 Agentofchaos
	jonaskoelker: Let's see what you will do about my next sinister plan... :)

29) jonaskoelker: Build Y1 Lush
	agentofchaos: I shudder to think...

30) agentofchaos: Build G1 Agentofchaos

31) jonaskoelker: Sacrifice G3 Jonaskoelker
Build Y2 Smallblue
Build Y3 Jonaskoelker
Build Y3 Lush

32) agentofchaos: Trade G1 B1 Agentofchaos

33) jonaskoelker: Trade Y1 B1 Smallblue
	agentofchaos: Ooh you greedy so and so... ;-)

34) agentofchaos: Build Y1 Agentofchaos

35) jonaskoelker: Trade Y3 G3 Jonaskoelker

36) agentofchaos: Discover Y1 Agentofchaos G1 Superfreak
	jonaskoelker: Yes, I am greedy.  Very, very greedy! :)


37) jonaskoelker: Build Y3 Jonaskoelker

38) agentofchaos: Move Y1 Superfreak Lush
Catastrophe Lush Y

39) jonaskoelker: Move G3 Jonaskoelker Jeroboam
	jonaskoelker: You bunning castard! ;-)
	agentofchaos: I have my bunning moments!

40) agentofchaos: Discover R2 Jeroboam Y1 Jehannum

41) jonaskoelker: Discover Y2 Jonaskoelker G3 Large_green

42) agentofchaos: Build Y1 Agentofchaos

	jonaskoelker: Aww crap, you overrun your time by a week and hard time triggers :(

Sorry for disappearing off the face of the earth for so long.  I'd like to finish this game.  How about you?  (If you feel like it's just "going through the motions", that's okay...)

We can either recreate it here on SDG, or play by plain old email, or some other solution.
	agentofchaos: OK we can try recreating the game, email might get confusing as I don't have a set of icehouse pieces. Send me a challenge and we can set it up. 


13877)
Started: 2009.7.22, Ended: 2009.7.25
Participants: PottyTroll (S), TwoShort (N)
Winner: PottyTroll



13881)
Variants: "No undo"
Started: 2009.7.22, Ended: 2009.7.22
Participants: uncledan (S), MangoToque (N)
Winner: MangoToque

1) MangoToque: Homeworld G2 Y1 B3
	uncledan: homeworld G3 B1 R3

2) uncledan: Homeworld G3 B1 R3

3) MangoToque: Build B1 Mangotoque
	MangoToque: done


4) uncledan: Build R1 Uncledan

5) MangoToque: Discover B1 Mangotoque G3 Bob

6) uncledan: Trade R1 Y1 Uncledan

7) MangoToque: Build B1 Bob

8) uncledan: Build R1 Uncledan

9) MangoToque: Build B2 Mangotoque

10) uncledan: Discover R1 Uncledan B2 Jim

11) MangoToque: Discover B2 Mangotoque G3 Ken

12) uncledan: Sacrifice Y1 Uncledan
Move R1 Jim Ken

13) MangoToque: Build B2 Ken

14) uncledan: Build R1 Uncledan

15) MangoToque: Build B2 Mangotoque

16) uncledan: Trade R1 Y1 Uncledan

17) MangoToque: Build B3 Bob

18) uncledan: Discover R3 Uncledan Y2 Jim

19) MangoToque: Sacrifice B3 Mangotoque
Trade B2 Y2 Ken
Trade B3 R3 Bob
Trade B1 R1 Bob

20) uncledan: Discover R3 Jim Y3 Jack

21) MangoToque: Sacrifice Y2 Ken
Discover R3 Bob Y2 Bill
Move R3 Bill Uncledan

22) uncledan: Build Y1 Uncledan

23) MangoToque: Attack Y1 Uncledan

24) uncledan: Build Y2 Uncledan

25) MangoToque: Attack Y2 Uncledan

26) uncledan: Build Y2 Uncledan

27) MangoToque: Pass
Catastrophe Uncledan Y



13882)
Variants: "No undo"
Started: 2009.7.22, Ended: 2009.7.28
Participants: uncledan (S), MangoToque (N)
Winner: uncledan

1) MangoToque: Homeworld Y2 G1 B3

2) uncledan: Homeworld B3 G2 R3

3) MangoToque: Build B1 Mangotoque

4) uncledan: Build R1 Uncledan

5) MangoToque: Discover B1 Mangotoque G3 Bob

6) uncledan: Build R1 Uncledan

7) MangoToque: Build B1 Mangotoque

8) uncledan: Trade R1 Y1 Uncledan

9) MangoToque: Build B1 Mangotoque

10) uncledan: Build Y1 Uncledan

11) MangoToque: Build B2 Bob

12) uncledan: Build R1 Uncledan

13) MangoToque: Build B2 Bob

14) uncledan: Discover R1 Uncledan G1 Zog

15) MangoToque: Sacrifice B2 Bob
Trade B3 G3 Mangotoque
Trade B2 Y2 Bob

16) uncledan: Build R1 Zog

17) MangoToque: Build B2 Bob

18) uncledan: Build R2 Zog

19) MangoToque: Build B2 Mangotoque

20) uncledan: Sacrifice Y1 Uncledan
Move R2 Zog Bob

21) MangoToque: Sacrifice Y2 Bob
Discover B2 Bob B2 Ken
Move B1 Bob Ken

22) uncledan: Build R2 Bob

23) MangoToque: Discover B2 Mangotoque R3 Bill

24) uncledan: Build R2 Zog

25) MangoToque: Discover B1 Mangotoque R3 Joe

26) uncledan: Discover R3 Uncledan Y1 Gred

27) MangoToque: Build G1 Mangotoque

28) uncledan: Move R3 Gred Ken

29) MangoToque: Sacrifice G3 Mangotoque
Build B3 Mangotoque
Build B3 Mangotoque
Build G2 Mangotoque

30) uncledan: Attack B2 Ken

31) MangoToque: Sacrifice B2 Bill
Trade B3 R3 Mangotoque
Trade G1 Y1 Mangotoque

32) uncledan: Trade B2 Y2 Ken

33) MangoToque: Move R3 Mangotoque Bob

34) uncledan: Move R3 Ken Joe

35) MangoToque: Sacrifice Y1 Mangotoque
Discover R3 Bob Y1 Tim

36) uncledan: Sacrifice Y2 Ken
Move R3 Joe Zog
Move R3 Zog Uncledan

37) MangoToque: Sacrifice B1 Joe
Trade B3 R3 Mangotoque

38) uncledan: Build Y1 Uncledan

39) MangoToque: Build G1 Mangotoque

40) uncledan: Move Y1 Uncledan Zog

41) MangoToque: Trade G2 Y2 Mangotoque

42) uncledan: Build Y2 Uncledan

43) MangoToque: Discover R3 Mangotoque Y3 Dave

44) uncledan: Build Y3 Uncledan

45) MangoToque: Discover Y2 Mangotoque Y3 Bill

46) uncledan: Sacrifice Y3 Uncledan
Move R3 Uncledan Tim
Move R3 Tim Bob
Move R3 Bob Mangotoque

47) MangoToque: Sacrifice Y2 Bill
Move R3 Tim Uncledan
Move R3 Dave Mangotoque

48) uncledan: Sacrifice R2 Bob
Attack R3 Mangotoque
Attack B1 Mangotoque

49) MangoToque: Attack Y2 Uncledan

50) uncledan: Attack G1 Mangotoque



13860)
Variants: "Hard time"
Started: 2009.7.23, Ended: 2009.9.4
Participants: tikimcfee (S), PottyTroll (W), agentofchaos (N), umfpt (E)
Winner: PottyTroll

1) agentofchaos: Homeworld B2 R3 G3

2) umfpt: Homeworld G3 B1 Y3
	agentofchaos: Hi guys, enjoy the game :-)

3) tikimcfee: Homeworld B1 R2 G3

4) PottyTroll: Homeworld Y3 G1 B3

5) agentofchaos: Build G1 Agentofchaos

6) umfpt: Build Y1 Umfpt

7) tikimcfee: Build G1 Tikimcfee

8) PottyTroll: Build B1 Pottytroll

9) agentofchaos: Build G1 Agentofchaos

10) umfpt: Trade Y1 G1 Umfpt

11) tikimcfee: Build G2 Tikimcfee

12) PottyTroll: Discover B1 Pottytroll G2 Trampstamp

13) agentofchaos: Trade G1 Y1 Agentofchaos

14) umfpt: Build G1 Umfpt

15) tikimcfee: Trade G1 Y1 Tikimcfee

16) PottyTroll: Build B1 Trampstamp

17) agentofchaos: Trade G1 B1 Agentofchaos

18) umfpt: Move G1 Umfpt Trampstamp

19) tikimcfee: Build Y1 Tikimcfee

20) PottyTroll: Build B2 Pottytroll

21) agentofchaos: Build B2 Agentofchaos

22) umfpt: Build Y1 Umfpt

23) tikimcfee: Trade Y1 R1 Tikimcfee

24) PottyTroll: Trade B1 R1 Trampstamp

25) agentofchaos: Trade B1 R1 Agentofchaos

26) umfpt: Discover Y1 Umfpt B2 Tola

27) tikimcfee: Trade G3 B3 Tikimcfee

28) PottyTroll: Attack G1E Trampstamp

29) agentofchaos: Build G1 Agentofchaos

30) umfpt: Trade G1 R1 Umfpt

31) tikimcfee: Discover R1 Tikimcfee G3 Gobligook

32) PottyTroll: Trade B2 Y2 Pottytroll

33) agentofchaos: Build B1 Agentofchaos

34) umfpt: Build R1 Umfpt

35) tikimcfee: Build R2 Gobligook

36) PottyTroll: Build R2 Trampstamp

37) agentofchaos: Trade B2 Y2 Agentofchaos

38) umfpt: Move R1 Umfpt Tola

39) tikimcfee: Build B1 Tikimcfee

40) PottyTroll: Build B2 Pottytroll

41) agentofchaos: Discover Y2 Agentofchaos G1 Goldome

42) umfpt: Build R2 Umfpt

43) tikimcfee: Sacrifice Y1 Tikimcfee
Move R2 Gobligook Tola

44) PottyTroll: Trade G1 Y1 Trampstamp

45) agentofchaos: Move R1 Agentofchaos Goldome

46) umfpt: Sacrifice Y1 Tola
Move R1 Tola Umfpt

47) tikimcfee: Trade B3 Y3 Tikimcfee

48) PottyTroll: Move R1 Trampstamp Umfpt
Catastrophe Umfpt R

49) agentofchaos: Move B1 Agentofchaos Goldome

50) umfpt: Build Y1 Umfpt

51) tikimcfee: Move B1 Tikimcfee Gobligook

52) PottyTroll: Build Y1 Trampstamp

53) agentofchaos: Build B2 Goldome

54) umfpt: Trade Y1 R1 Umfpt

55) tikimcfee: Build B2 Gobligook

56) PottyTroll: Trade B2 R2 Pottytroll

57) agentofchaos: Trade B2 G2 Goldome

58) umfpt: Build Y1 Umfpt

59) tikimcfee: Trade B1 Y1 Gobligook

60) PottyTroll: Sacrifice Y2 Pottytroll
Move Y1 Trampstamp Umfpt
Move Y1 Trampstamp Umfpt
Catastrophe Umfpt Y

61) agentofchaos: Trade G2 R2 Goldome

62) umfpt: Build R1 Umfpt

63) tikimcfee: Sacrifice G2 Tikimcfee
Build R1 Tola
Build R3 Gobligook

64) PottyTroll: Build R3 Pottytroll

65) agentofchaos: Discover R2 Goldome G3 Agragore

66) umfpt: Build R3 Umfpt

67) tikimcfee: Sacrifice Y1 Gobligook
Move R1 Tola Umfpt
Catastrophe Umfpt R

68) agentofchaos: Build Y1 Agentofchaos

69) tikimcfee: Trade R1 Y1 Gobligook

70) PottyTroll: Trade R2 Y2 Pottytroll

71) agentofchaos: Build R1 Agragore

72) tikimcfee: Build Y1 Gobligook

73) PottyTroll: Build R1 Trampstamp

74) agentofchaos: Sacrifice Y2 Goldome
Move R1 Agragore Tikimcfee
Move R2 Agragore Tikimcfee

75) tikimcfee: Attack R2N Tikimcfee

76) PottyTroll: Build B1 Trampstamp

77) agentofchaos: Sacrifice G1 Agentofchaos
Build R1 Tikimcfee
Catastrophe Tikimcfee R

78) tikimcfee: Trade B2 G2 Gobligook

79) PottyTroll: Trade R1 G1 Trampstamp

80) agentofchaos: Trade R1 Y1 Goldome

81) tikimcfee: Move Y1 Gobligook Tola

82) PottyTroll: Discover Y2 Pottytroll G2 Slippyfist

83) agentofchaos: Discover B1 Goldome G3 Mjolnir

84) tikimcfee: Trade Y1 G1 Tola

85) PottyTroll: Build R1 Pottytroll

86) agentofchaos: Build B1 Mjolnir

87) tikimcfee: Sacrifice Y1 Gobligook
Move R2 Tola Mjolnir

88) PottyTroll: Build B2 Pottytroll

89) agentofchaos: Sacrifice Y1 Goldome
Move B1 Mjolnir Tikimcfee

90) tikimcfee: Attack B1N Mjolnir

91) PottyTroll: Sacrifice Y2 Slippyfist
Move B1 Trampstamp Tikimcfee
Move B1 Trampstamp Tikimcfee
Catastrophe Tikimcfee B

92) agentofchaos: Trade Y1 R1 Agentofchaos

93) PottyTroll: Move B2 Pottytroll Trampstamp

94) agentofchaos: Build G1 Agentofchaos

95) PottyTroll: Trade G1 Y1 Trampstamp

96) agentofchaos: Build Y1 Agentofchaos

97) PottyTroll: Discover R2 Trampstamp G1 Porkslap

98) agentofchaos: Discover Y1 Agentofchaos G1 Feldspar

99) PottyTroll: Build R1 Porkslap

100) agentofchaos: Move Y1 Feldspar Gobligook

101) PottyTroll: Move B2 Trampstamp Porkslap

102) agentofchaos: Build Y1 Gobligook

103) PottyTroll: Move Y1 Trampstamp Porkslap

104) agentofchaos: Trade G1 B1 Agentofchaos

105) PottyTroll: Trade R2 Y2 Porkslap

106) agentofchaos: Build Y1 Agentofchaos

107) PottyTroll: Build B1 Porkslap

108) agentofchaos: Discover B1 Agentofchaos G1 Dreamland

109) PottyTroll: Build B1 Porkslap

110) agentofchaos: Move Y1 Gobligook Porkslap

111) PottyTroll: Move Y2 Porkslap Tola

112) agentofchaos: Build Y2 Porkslap

113) PottyTroll: Move B1 Porkslap Agentofchaos

114) agentofchaos: Build Y2 Porkslap
Catastrophe Porkslap Y

115) PottyTroll: Sacrifice Y2 Tola
Move B1 Porkslap Agentofchaos
Move B2 Porkslap Agentofchaos
Catastrophe Agentofchaos B

116) agentofchaos: Build G1 Agentofchaos

117) PottyTroll: Build B1 Pottytroll
	agentofchaos: You blackguard! ;-)

118) agentofchaos: Trade B1 Y1 Dreamland

119) PottyTroll: Move R3 Pottytroll Tola

120) agentofchaos: Build G2 Agentofchaos

121) PottyTroll: Attack G1S Tola

122) agentofchaos: Sacrifice G2 Agentofchaos
Build Y1 Agentofchaos
Build Y2 Gobligook

123) PottyTroll: Build G2 Tola

124) agentofchaos: Build Y2 Dreamland

125) PottyTroll: Trade G2 Y2 Tola

126) agentofchaos: Sacrifice Y1 Agentofchaos
Discover R1 Agentofchaos Y1 Troubletimes

127) PottyTroll: Sacrifice Y2 Tola
Move R3 Tola Agentofchaos
Move R1 Porkslap Agentofchaos

128) agentofchaos: Attack R3W Agentofchaos

129) PottyTroll: Sacrifice G1 Tola
Build R1 Agentofchaos
Catastrophe Agentofchaos R

	PottyTroll: good game
	agentofchaos: well done


13889)
Variants: "Hard time"
Started: 2009.7.26, Ended: 2009.8.12
Participants: Horowits (S), agentofchaos (N)
Winner: Horowits

1) agentofchaos: Homeworld R3 B2 G3

2) Horowits: Homeworld G3 Y1 B3
	agentofchaos: Hi enjoy the game. 

3) agentofchaos: Build G1 Agentofchaos
	Horowits: thanks, you too

4) Horowits: Build B1 Horowits

5) agentofchaos: Build G1 Agentofchaos

6) Horowits: Build B1 Horowits

7) agentofchaos: Trade G1 B1 Agentofchaos

8) Horowits: Trade B1 R1 Horowits

9) agentofchaos: Build G1 Agentofchaos

10) Horowits: Discover B1 Horowits G2 Greens

11) agentofchaos: Trade G1 Y1 Agentofchaos

12) Horowits: Build R1 Horowits

13) agentofchaos: Trade G1 R1 Agentofchaos

14) Horowits: Build R2 Horowits

15) agentofchaos: Build R2 Agentofchaos

16) Horowits: Move R1 Horowits Greens

17) agentofchaos: Build Y1 Agentofchaos

18) Horowits: Trade R2 Y2 Horowits

19) agentofchaos: Trade R1 G1 Agentofchaos

20) Horowits: Build B1 Horowits

21) agentofchaos: Sacrifice Y1 Agentofchaos
Discover R2 Agentofchaos Y1 Myxo

22) Horowits: Build B2 Greens

23) agentofchaos: Build Y2 Agentofchaos

24) Horowits: Trade B2 Y2 Greens

25) agentofchaos: Discover Y2 Agentofchaos G1 Glaucous

26) Horowits: Build Y3 Greens

27) agentofchaos: Build Y3 Glaucous

28) Horowits: Sacrifice Y2 Horowits
Discover B1 Horowits G2 Gwar
Discover Y3 Greens R1 Gir

29) agentofchaos: Build G1 Agentofchaos

30) Horowits: Build B2 Gwar

31) agentofchaos: Sacrifice G1 Agentofchaos
Build R2 Myxo

32) Horowits: Build B2 Horowits

33) agentofchaos: Move B1 Agentofchaos Glaucous

34) Horowits: Build B3 Greens

35) agentofchaos: Build B3 Glaucous

36) Horowits: Sacrifice Y2 Greens
Move B1 Greens Glaucous
Move B1 Gwar Glaucous
Catastrophe Glaucous Blue

37) agentofchaos: Build Y2 Glaucous

38) Horowits: Trade B3 Y3 Greens

39) agentofchaos: Discover Y2 Glaucous G2 Zurwheel

40) Horowits: Trade B2 R2 Gwar

41) agentofchaos: Build Y2 Agentofchaos

42) Horowits: Build R3 Horowits

43) agentofchaos: Move Y2 Glaucous Zurwheel

44) Horowits: Move R3 Horowits Zurwheel

45) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y2 Zurwheel Horowits
Move Y2 Zurwheel Horowits

46) Horowits: Build R3 Horowits

47) agentofchaos: Build Y2 Horowits
Catastrophe Horowits Y

48) Horowits: Sacrifice Y3 Greens
Move R1 Horowits Myxo
Move R2 Gwar Myxo
Discover B3 Horowits B1 Bluish
Catastrophe Myxo Red

49) agentofchaos: Trade G1 R1 Agentofchaos

50) Horowits: Sacrifice Y3 Gir
Move B3 Bluish Agentofchaos
Move R3 Zurwheel Glaucous
Move R3 Glaucous Agentofchaos

51) agentofchaos: Attack R3 Agentofchaos

52) Horowits: Sacrifice R3 Horowits
Attack R3N Agentofchaos
Attack G3N Agentofchaos
Attack Y1N Agentofchaos
	agentofchaos: Hmm, a very bold move...
	Horowits: sorry for undo
	agentofchaos: confused me for a moment, didn't know what was happening!
	Horowits: yeah, shameful moment but a big error on my part :S

	agentofchaos: Arrgghhh, I'm overrun!! Very well played, your cunning plans have paid off :-)
	Horowits: thakns for your time, I had a lot of fun. :) good game.


13879)
Started: 2009.7.27, Ended: 2009.8.11
Participants: PottyTroll (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B3 G3
	ZackStack: Hey Potty!  Have a good game!

2) PottyTroll: Homeworld B2 Y1 G3

3) ZackStack: Build G1 Zackstack

4) PottyTroll: Build G1 Pottytroll

5) ZackStack: Trade G1 Y1 Zackstack

6) PottyTroll: Discover G1 Pottytroll B3 Porkslap

7) ZackStack: Build G1 Zackstack

8) PottyTroll: Build G1 Porkslap

9) ZackStack: Discover G1 Zackstack B2 Meatpunch

10) PottyTroll: Build G2 Porkslap

11) ZackStack: Build G2 Zackstack
	ZackStack: Tempting for a catastrophe there... but that would just set us back to square one I suppose :-)

12) PottyTroll: Trade G2 Y2 Porkslap
	PottyTroll: haha I was wondering if you'd do it

13) ZackStack: Build G2 Meatpunch

14) PottyTroll: Build G2 Pottytroll

15) ZackStack: Sacrifice Y1 Zackstack
Discover G2 Meatpunch G3 Hamkick

16) PottyTroll: Trade G2 R2 Pottytroll
	ZackStack: Have I mentioned I like your naming convention for systems? :-)

17) ZackStack: Trade G2 Y2 Zackstack
	PottyTroll: sure seems like it :)

18) PottyTroll: Build G2 Pottytroll

19) ZackStack: Build G2 Meatpunch

20) PottyTroll: Build R1 Pottytroll

21) ZackStack: Trade G2 Y2 Meatpunch

22) PottyTroll: Trade G2 B2 Pottytroll

23) ZackStack: Build G2 Zackstack

24) PottyTroll: Move G1 Porkslap Meatpunch

25) ZackStack: Sacrifice G3 Zackstack
Build G2 Meatpunch
Build G3 Zackstack
Build Y1 Meatpunch

26) PottyTroll: Move G1 Porkslap Meatpunch
Catastrophe Meatpunch G

27) ZackStack: Trade Y2 R2 Meatpunch

28) PottyTroll: Trade B2 G2 Pottytroll

29) ZackStack: Move R2 Meatpunch Hamkick

30) PottyTroll: Move G2 Pottytroll Porkslap

31) ZackStack: Move G2 Zackstack Meatpunch

32) PottyTroll: Build G1 Porkslap

33) ZackStack: Build R1 Hamkick

34) PottyTroll: Trade G2 R2 Porkslap

35) ZackStack: Build G1 Meatpunch

36) PottyTroll: Discover R2 Porkslap G2 Sausagepunt

37) ZackStack: Trade G1 B1 Meatpunch

38) PottyTroll: Build R3 Sausagepunt

39) ZackStack: Discover G2 Meatpunch R3 Spamgrapple

40) PottyTroll: Trade R2 Y2 Pottytroll

41) ZackStack: Sacrifice G2 Hamkick
Build Y1 Zackstack
Build Y3 Meatpunch

42) PottyTroll: Build Y3 Porkslap

43) ZackStack: Move Y1 Meatpunch Hamkick

44) PottyTroll: Move Y2 Porkslap Sausagepunt

45) ZackStack: Build Y3 Hamkick

46) PottyTroll: Build R2 Pottytroll

47) ZackStack: Sacrifice Y2 Zackstack
Move Y1 Hamkick Pottytroll
Move Y3 Hamkick Pottytroll
Catastrophe Pottytroll Yellow

48) PottyTroll: Trade R2 Y2 Pottytroll

49) ZackStack: Move B1 Meatpunch Hamkick

50) PottyTroll: Build R2 Pottytroll

51) ZackStack: Sacrifice G2 Spamgrapple
Build B1 Hamkick
Build B1 Hamkick

52) PottyTroll: Build Y1 Sausagepunt
	PottyTroll: ahh.  Well played man.

53) ZackStack: Sacrifice Y3 Meatpunch
Move B1 Hamkick Pottytroll
Move B1 Hamkick Pottytroll
Move B1 Hamkick Pottytroll
Catastrophe Pottytroll Blue
	ZackStack: Thanks!  You too.  It was a fun one!



13892)
Started: 2009.7.31, Ended: 2009.10.1
Participants: jonaskoelker (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	jonaskoelker: Hi, TwoShort.  This'll be my 6th game of Homeworlds, with two of my previous games still in progress, so I'm kinda' new.  Feel free to give tips "too late" as I've seen you do before.

I think I got the basics down: start with a green ship; have more large pieces than your opponent; don't get locked out of any color; always have a large ship in your homeworld.

I also think it tends to be a good idea to have a diverse fleet, color-wise, that's spread out (so it's easier to make good use of a G3 sacrifice); and that it's good to have your pieces close to your opponent's homeworld (and your opponents pieces in general) so it's easier to threaten invasion or catastrophe.

In any case, I'd love to have a strategy-and-tactics discussion during and/or after the game.  You up for it?

In any case, good luck and have fun :)

2) jonaskoelker: Homeworld B1 R2 G3
	TwoShort: I'm generally up for strategy discussions.  I should note that when I give people "late" tips, it's not generally because I want to make sure I win.  Mostly it's just that it's not clear what tips to give until they're too late.  

3) TwoShort: Build G1 Twoshort

4) jonaskoelker: Build G1 Jonaskoelker
	jonaskoelker: Well, let me kick off some strategy discussion already, then:

I've been looking a bit at http://superdupergames.org/?page=archive_play&gid=2121&idx=26

In the final move, you invade Andy's homeworld, threatening either conquest (by sacrificing R2 @home) or yellow catastrophe by building yellow @Andy.

Instead of building G3 (@B3), how do you think Andy should have continued?

I see three main lines; either trade Y3 to R3 @home; or sacrifice G2 to build R1 and R2 @B1; or trade Y2 to R2 @B1.

As far as I can tell, "trade Y3 R3 @home" is answered by "build G3 @B1", forcing Andy to sacrifice G2 to build R1 and R2 @(a mix of B1 and home).  Then you have a 3-to-1 lead in large ships with a large "forward deployment" giving you a lot of initiative and putting Andy under pressure; maybe continue by building red @home and moving one forward (to a large star), threatening red catastrophe if Andy isn't careful.  Or chase down the G1@B3 and try to monopolize the green pieces?  Or maybe just hang back and grab all the large pieces and build 'em up slowly, banker-style.

If Andy continues with "sacrifice G2, build R1 and R2 @B1" instead, things get more interesting.  One good next move might be "build R2 @home", threatening "sacrifice Y3 @home, move R2 home b1 (with red catastrophe), move Y3 b1 Andy", with conquest the next turn.  Moving a red piece from B1 to Andy seems to counter this threat, and I'm not sure how to best proceed.  What do you think?

I'm not sure how to best proceed if Andy trades his Y2 for R2 @B1.  How would you proceed?

Also, do you think you had the lead when Andy screwed up?  What was the most decisive move in the game besides Andy's blunder?  What helped tip the scales?

5) TwoShort: Trade G1 Y1 Twoshort

6) jonaskoelker: Trade G1 Y1 Jonaskoelker
	TwoShort: Well, really I think Andy was doomed, and the previous move, when I advanced the g2, was the game winner.  Before that, he had moved his Gs apart, threatening to grow and getting the better end of the g3s.  He missed the immediate threat my move represented, but at the time I expected he would see it and be forced to deal with it, and none of his options there are any good.  Since he can't build a G3 or immediately threaten me, I get to build a G3 the next turn, and wind up with at least one of the two remaining ones.  Depending how that all works out, I get 4 or 5 3 points to his 1 or 2, and that's game over, pretty much whatever the details.


7) TwoShort: Build G1 Twoshort

8) jonaskoelker: Build G1 Jonaskoelker
	jonaskoelker: "the previous move, when I advanced the g2, was the game winner."

Instead of moving the G2 forward, I think you can sacrifice the Y3 at home, move your Y1 and Y3 from B1 into Andy's homeworld, and move the G2 to the Y1 (where Andy has a G2).  Your R2 at home threatens to take Andy's ships, so he has to get rid of your invaders; the only way I can see of doing that is to sacrifice a Y2 (or his Y3) and move his remaining yellow(s) and some other piece back home.  Then you build G3 at Y1, and Andy can't defend against the impending invasion.

Your thoughts?

[but if instead you move G2 to B1 as you did] "I get to build a G3 the next turn" -- not if Andy sacrifices his G2 to build R1 and R2 at B1; it's not clear to me how to get an overwhelming material advantage (say a 3-pointer lead of at least two).  What are your thoughts?


9) TwoShort: Trade G1 B1 Twoshort
	TwoShort: My main thought is that you've analyzed this more deeply than I did at the time or have since :)

Let's see - if he sacs to build the 2 reds, I build a 2 (@B1), he builds a 3 (@B3), I build a 3 (@Y2).  He can then catastrophe my G3 (and 
G1) at the cost of his G3, G1, and Y2; or separate his gs to go after the last 3 at the cost of a y2, which I can block by moving something to g3.  So best case (for him) I still have the single 3 advantage I started with, and I gain ground in the little stuff.

Honestly, I seldom bother to think more than a move or two in advance.  I figure out what happens if everyone does the most straightforward growing thing (like above), and hope I'll find as many clever twists as the other guy.

  Homeworlds positions in a developed game offer so many options, it's a struggle to not miss a good one considering a single position, once you get a few moves into speculation, the chance you're considering a position you'll actually reach vs. a real opponent is tiny...  I look for ways to grab material; ways to force my opponent to do something other than grab material, and that's about it.  Tactical, positional advantages are obviously what determines who gets to grab stuff, and are where all the action is.  But if you can't turn them into a material advantage in a pretty short term, straightforward way, they may be illusory.

The other question is what constitutes an overwhelming material advantage.  By my count, I had a pretty good lead before the g2 move, and was really only looking to prevent him using his tactical position to change that.

10) jonaskoelker: Trade G1 B1 Jonaskoelker
	jonaskoelker: "My main thought is that you've analyzed this more deeply than I did at the time or have since :)"

Probably true :)  I think it's an interesting game with a lot of sharp variations near the (premature?) end, which illustrate the tactics of homeworlds very well.

By the way, as I look at the line of play I suggest instead of "14. move g2; ...", I don't think building G3 at Y1 in the end is good enough; then Andy can build G at Y1 and trigger a green catastrophe.  But I better look at a board before I make any definitive claims about that.

[Just got home from vacation.  I'll move soon]

	jonaskoelker: Ah crap, I looked at the wrong position on SDG.  Instead of "14. move g2", do the sac Y3 as suggested earlier.  Then Andy has to move all his yellows home, and either R1 or G2.  If he moves R1 home, invade with G2 and win; if he moves G2 home, build a G3 (which is safe from catastrophe, but wasn't in the position I looked at), invade and win.


11) TwoShort: Build B2 Twoshort
	jonaskoelker: I'm not really sure this is the right move.  It lets you get the B2s first; but alternatively I might get locked out of blue, which is no good either.  Probably letting you get the first B2 is no problem, since you can't get the last too, unless you let me get the first B3.

Oh well, we'll see...
	jonaskoelker: Going back to your game vs. Andy (please let me know if you get bored of it), I've come to the conclusion that "13. ..., discover g1 different b3 BigBlueFrog" is the definitively losing move.  But even in that position, I'd rather bet on you winning than him.

But how did you get to have the advantageous position?  I may be going out on a limb here, but I think it might be on the strength of the banker opening; that, combined with your plays, got you the second Y3 which makes your position preferable.

Your thoughts?

12) jonaskoelker: Discover B1 Jonaskoelker G3 Biggreen

13) TwoShort: Discover B2 Twoshort G2 Grogar

14) jonaskoelker: Build B2 Biggreen

15) TwoShort: Build B2 Grogar
	jonaskoelker: Do you think I made the right move here?

I'm worried about you setting up a "green/blue factory", alternating between [sac g3, build b2/b3/b3] and [sac b2, trade b3/g3 and b3/*], netting you a big ship every other turn.

Meanwhile, I of course want one of those.  But I'm starting to suspect that sending out my blue was a bad move.  Instead I should have built a b2, then ventured out.  Maybe.

What do you think?

	TwoShort: build b2 grogar

16) jonaskoelker: Trade B2 Y2 Biggreen
	TwoShort: I'm not sure if building first would be better.  I'd have done something different if you did - flip my initial b2 to red or yellow, then grow it again.

As long as you have blue somewhere that can grow, I can't do flip green and sac to get it back thing - you can take it in the middle.  The threat I'm pursuing here is that I can sac my g3 to build both b3s, getting a 3 pointer lead.  The hope is really that you'll have to do unproductive things to prevent this, while I can do productive things that also keep the threat going.  Or you can build a 3 now, I'll blow it up, and I'll be ahead by a 2 point beyond my homeworld...  Which is reasonably good from my perspective; from yours it's a question of whether you can do better, which is not clear to me...

I used to think you should never take a b1 star as first player, but someone recently wiggled out of my response to that.  My new theory is that you should never take a b1 star playing Banker; but I haven't played enough against people doing so as second player to be sure.
	jonaskoelker: hmm... you probably have a good point wrt. regrowing your blue.  And wrt. me stopping your blue/green factory.

Hmm...  let's see if there's something I can do about your evul schemes ;-)
	TwoShort: So the other reason I avoid giving timely advice is that opponents seem to think I have things all figured out, which isn't true...  Just hope you're not stressing too much and thinking I have you entirely boxed in; I'm happy with my position, but you've certainly got options that I can't calculate the results of...
	jonaskoelker: I think I'm stressing out just enough ;-)

I'd be happy with your position too, it seems better right now.  But I still got a fighting chance, it's not just a matter of losing more slowly.


17) TwoShort: Trade B2 R2 Grogar
	jonaskoelker: I hope this was one of the options you couldn't quite figure out ;-)
	TwoShort: Well, when I said you had good options, I really meant just that one :)  On the other hand, I thought I had only a single obvious response, but it wasn't this...

18) jonaskoelker: Trade Y1 R1 Jonaskoelker

19) TwoShort: Build B2 Grogar
	jonaskoelker: That was not funny.  Not funny at all :(

I think my move was bad but the alternatives I could come up with were worse.

If I built b2 at biggreen, you'd move your b2 from Grogar to biggreen (sac y1 home), threatening to take my last blue ship.  I can build and trigger catastrophe, but then you build b1 at home and I'm left... erm... "blueless" ;-)

What do you think?
	TwoShort: I don't think your being blueless would have been a problem since there would have been plenty in the stash... which is why I would have moved in the r2 instead, expecting you to sac the y2 to run away with the other two.  Which would have been not great for you.  Better or worse than this, I'm not sure...

20) jonaskoelker: Build B2 Biggreen

21) TwoShort: Trade B2 Y2 Grogar

22) jonaskoelker: Discover B2 Biggreen G2 Medium_green

23) TwoShort: Build R1 Grogar

24) jonaskoelker: Build B2 Biggreen
	jonaskoelker: eek... my position keeps getting worse :\

25) TwoShort: Build B3 Grogar

26) jonaskoelker: Build B3 Medium_green

27) TwoShort: Discover R1 Grogar Y3 Yolonda



13923)
Started: 2009.8.1, Ended: 2009.8.6
Participants: TwoShort (S), agentofchaos (N)
Winner: TwoShort

1) agentofchaos: Homeworld R3 B1 G3

2) TwoShort: Homeworld B1 G1 B3 *
	agentofchaos: Hi there, enjoy the game. 

3) agentofchaos: Build G1 Agentofchaos

4) TwoShort: Build B1 Twoshort

5) agentofchaos: Build G1 Agentofchaos

6) TwoShort: Trade B3 Y3 Twoshort

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) TwoShort: Build B2 Twoshort

9) agentofchaos: Build G1 Agentofchaos

10) TwoShort: Discover B1 Twoshort G3 Grogar

11) agentofchaos: Build Y1 Agentofchaos

12) TwoShort: Build B2 Twoshort

13) agentofchaos: Trade G3 B3 Agentofchaos

14) TwoShort: Discover B2 Twoshort Y2 Yak

15) agentofchaos: Build G2 Agentofchaos

16) TwoShort: Build B2 Grogar

17) agentofchaos: Trade G1 R1 Agentofchaos

18) TwoShort: Build B3 Twoshort

19) agentofchaos: Discover G2 Agentofchaos Y2 Hakra

20) TwoShort: Sacrifice Y3 Twoshort
Move B1 Grogar Yak
Move B1 Yak Agentofchaos
Move B2 Yak Agentofchaos
Catastrophe Agentofchaos Blue

21) agentofchaos: Build Y1 Agentofchaos

22) TwoShort: Trade B2 Y2 Twoshort

	agentofchaos: Nothing more I can do here, very well played
	TwoShort: Thanks for the game!


13930)
Started: 2009.8.1, Ended: 2009.11.20
Participants: MatrixFrog (S), jonaskoelker (N)
Winner: MatrixFrog

1) jonaskoelker: Homeworld R1 B2 G3

2) MatrixFrog: Homeworld B2 Y3 G3
	jonaskoelker: Hi.  I was on vacation and didn't see that the game begun.  Would you mind cutting me a bit of slack on the time until I get a day or two saved up?  I should be available for daily gaming in the near future (i.e. _at least_ a couple of months)


3) jonaskoelker: Build G1 Jonaskoelker
	MatrixFrog: Sure, I usually just let it go anyway because what do I gain by forcing resignation? Then I just have to start a whole new game and what fun is that...

4) MatrixFrog: Build G1 Matrixfrog

5) jonaskoelker: Trade G1 Y1 Jonaskoelker

6) MatrixFrog: Build G1 Matrixfrog
	jonaskoelker: Behold!  We have invented... THE HYPER DRIVE.  Do not fly near our hyper drive test zones: a catastrophic collision might happen.  We shall launch our convoy to share this wonderful technology with you in the near future.

:-)


7) jonaskoelker: Build G1 Jonaskoelker

8) MatrixFrog: Trade G1 R1 Matrixfrog

9) jonaskoelker: Build Y1 Jonaskoelker

10) MatrixFrog: Discover G1 Matrixfrog Y1 Littlecheese

11) jonaskoelker: Build Y2 Jonaskoelker
	jonaskoelker: Ahh, I see your people have a native understanding of physical principles behind THE HYPER DRIVE.

How pleasant to observe you venture forth, although we are not quite comfortable about your long-ranging artillery, and will be forced to take due precautions.

Our scientists, military strategists and diplomats are working together to find the plan which will best enable the prosperity of my---I mean both our peoples.


12) MatrixFrog: Build R1 Matrixfrog

13) jonaskoelker: Trade Y2 R2 Jonaskoelker

14) MatrixFrog: Build R2 Matrixfrog

15) jonaskoelker: Build Y2 Jonaskoelker

16) MatrixFrog: Trade R2 G2 Matrixfrog

17) jonaskoelker: Discover G1 Jonaskoelker B3 Large_blue

18) MatrixFrog: Build G1 Littlecheese

19) jonaskoelker: Build G2 Jonaskoelker

20) MatrixFrog: Build R2 Matrixfrog

21) jonaskoelker: Sacrifice G3 Jonaskoelker
Build G2 Large_blue
Build G3 Jonaskoelker
Build G3 Jonaskoelker
	jonaskoelker: I'll be making a move very soon; please be patient?
	MatrixFrog: ok no problem

22) MatrixFrog: Trade R2 Y2 Matrixfrog

	jonaskoelker: Hmm... interesting play...
	MatrixFrog: Sometimes I don't quite know what I'm doing. It seemed like a good idea, kind of...


13977)
Variants: "Hard time"
Started: 2009.8.2, Ended: 2009.8.25
Participants: TwoShort (S), Danner (N)
Winner: Danner

1) Danner: Homeworld B1 R2 G3

2) TwoShort: Homeworld B1 G3 B3 *
	Danner: Hello, and good luck!

3) Danner: Build G1 Danner
	TwoShort: Howdy; have a good game.
	Danner: Oh, instant blue monopoly? This game might teach me not to start with a little star.

4) TwoShort: Build B1 Twoshort
	Danner: Ooops, never mind

5) Danner: Trade G3 B3 Danner
	TwoShort: Never mind?  Because an instant monopoly that will teach you not to start with a little blue star was totally the idea :)
	Danner: :D

6) TwoShort: Trade B3 Y3 Twoshort

7) Danner: Build B2 Danner

8) TwoShort: Build B2 Twoshort

9) Danner: Trade B3 Y3 Danner

10) TwoShort: Discover B2 Twoshort G2 Grogar

11) Danner: Discover B2 Danner G3 Garrett

12) TwoShort: Build Y1 Twoshort

13) Danner: Build Y1 Danner

14) TwoShort: Discover B1 Twoshort G2 Gloom

15) Danner: Move Y1 Danner Garrett

16) TwoShort: Move Y1 Twoshort Grogar

17) Danner: Build G1 Danner

18) TwoShort: Build Y1 Twoshort

19) Danner: Build Y2 Garrett

20) TwoShort: Build Y2 Grogar

21) Danner: Build Y2 Danner

22) TwoShort: Trade Y3 G3 Twoshort

23) Danner: Trade Y2 R2 Garrett

24) TwoShort: Discover Y2 Grogar B3 Bluestar

25) Danner: Discover G1 Danner Y3 Sun

26) TwoShort: Build B2 Gloom

27) Danner: Build B3 Garrett

28) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y3 Twoshort
Build B3 Grogar

29) Danner: Sacrifice Y2 Danner
Move B3 Garrett Grogar
Move B3 Grogar Twoshort

	TwoShort: Ack!  Well, that was dumb.
	TwoShort: Ack!  Well, that was dumb.
	TwoShort: Dumb enough to say it twice, apparently :)
	TwoShort: Good game.
	Danner: Thanks the game :)


13894)
Variants: "Hard time"
Started: 2009.8.4, Ended: 2009.10.16
Participants: agentofchaos (S), zxcv411 (N), PottyTroll (E)
Winner: agentofchaos

1) zxcv411: Homeworld R1 B2 G3

2) PottyTroll: Homeworld G3 B2 Y3

3) agentofchaos: Homeworld R1 B3 G3

4) zxcv411: Build G1 Zxcv411

5) PottyTroll: Build Y1 Pottytroll

6) agentofchaos: Build G1 Agentofchaos

7) zxcv411: Trade G1 Y1 Zxcv411

8) PottyTroll: Build Y1 Pottytroll

9) agentofchaos: Trade G1 Y1 Agentofchaos

10) zxcv411: Build Y2 Zxcv411

11) PottyTroll: Trade Y1 B1 Pottytroll

12) agentofchaos: Build G1 Agentofchaos

13) zxcv411: Discover Y1 Zxcv411 G3 Starbug

14) PottyTroll: Discover B1 Pottytroll G1 Spankmaster

15) agentofchaos: Trade G1 R1 Agentofchaos

16) zxcv411: Build G1 Zxcv411

17) PottyTroll: Build B1 Spankmaster

18) agentofchaos: Build G1 Agentofchaos

19) zxcv411: Build G1 Zxcv411

20) PottyTroll: Trade Y1 R1 Pottytroll

21) agentofchaos: Build G2 Agentofchaos

22) zxcv411: Trade Y2 R2 Zxcv411

23) PottyTroll: Build R2 Pottytroll

24) agentofchaos: Trade G2 Y2 Agentofchaos

25) zxcv411: Trade G1 Y1 Zxcv411

26) PottyTroll: Trade B1 Y1 Spankmaster

27) agentofchaos: Discover Y2 Agentofchaos B2 Domesday

28) zxcv411: Build R2 Zxcv411

29) PottyTroll: Build Y2 Spankmaster

30) agentofchaos: Build Y2 Agentofchaos

31) zxcv411: Move R2 Zxcv411 Starbug

32) PottyTroll: Build Y2 Pottytroll

33) agentofchaos: Sacrifice G1 Agentofchaos
Build Y3 Domesday

34) zxcv411: Build Y3 Zxcv411

35) PottyTroll: Trade Y2 R2 Spankmaster

36) agentofchaos: Trade Y3 R3 Domesday

37) zxcv411: Trade G3 B3 Zxcv411

38) PottyTroll: Build R3 Spankmaster

39) agentofchaos: Trade Y2 G2 Domesday

40) zxcv411: Build R3 Starbug

41) PottyTroll: Discover R2 Spankmaster G2 Slippyfist

42) agentofchaos: Build R3 Domesday

43) zxcv411: Pass

44) PottyTroll: Build Y2 Spankmaster

45) agentofchaos: Move Y1 Agentofchaos Domesday

46) zxcv411: Build G1 Zxcv411

47) PottyTroll: Move Y1 Spankmaster Slippyfist

48) agentofchaos: Sacrifice G2 Domesday
Build Y2 Agentofchaos
Build Y3 Domesday

49) zxcv411: Build Y3 Starbug

50) PottyTroll: Build B1 Spankmaster

51) agentofchaos: Build G1 Agentofchaos

52) zxcv411: Move B3 Zxcv411 Starbug

53) PottyTroll: Move B1 Spankmaster Slippyfist

54) agentofchaos: Trade G1 B1 Agentofchaos

55) zxcv411: Build B1 Starbug

56) PottyTroll: Trade Y2 G2 Pottytroll

57) agentofchaos: Sacrifice Y1 Domesday
Discover R3 Domesday Y1 Iago

58) zxcv411: Move B3 Starbug Zxcv411

59) PottyTroll: Build Y2 Slippyfist

60) agentofchaos: Move R1 Agentofchaos Domesday

61) zxcv411: Build B2 Starbug

62) PottyTroll: Build B3 Slippyfist

63) agentofchaos: Discover Y3 Domesday B3 Kakrafooge

64) zxcv411: Move G1 Zxcv411 Starbug

65) PottyTroll: Sacrifice Y2 Slippyfist
Move B3 Slippyfist Agentofchaos
Move B1 Slippyfist Agentofchaos
Catastrophe Agentofchaos B

66) agentofchaos: Sacrifice Y2 Agentofchaos
Move R1 Domesday Kakrafooge
Move R3 Domesday Kakrafooge

67) zxcv411: Build G1 Zxcv411

68) PottyTroll: Build Y2 Slippyfist

69) agentofchaos: Build Y2 Agentofchaos

70) zxcv411: Discover G1 Starbug G2 Rimmer

71) agentofchaos: Sacrifice Y2 Agentofchaos
Move R1 Kakrafooge Zxcv411
Move R3 Kakrafooge Zxcv411
Catastrophe Zxcv411 R

72) zxcv411: Move R3 Starbug Zxcv411

73) agentofchaos: Move Y3 Kakrafooge Spankmaster

74) zxcv411: Pass

75) agentofchaos: Sacrifice R3 Iago
Attack R3E Spankmaster
Attack Y2E Spankmaster
Attack B1E Spankmaster

76) zxcv411: Move G1 Zxcv411 Starbug

77) agentofchaos: Build B1 Spankmaster

78) zxcv411: Build G2 Zxcv411

79) agentofchaos: Sacrifice Y2 Spankmaster
Move B1 Spankmaster Zxcv411
Move B1 Spankmaster Zxcv411
Catastrophe Zxcv411 B

	agentofchaos: Thanks for a great game :-)


13936)
Started: 2009.8.6, Ended: 2009.8.21
Participants: ZackStack (S), jonaskoelker (N)
Winner: jonaskoelker

1) jonaskoelker: Homeworld B1 Y2 G3
	ZackStack: Hi Jonas!  I understand you're pretty new to Icehouse.  If you'd like I'd be happy to point out any particularly dangerous moves you make.  Have a good game and have fun!

2) ZackStack: Homeworld R1 B3 G3
	jonaskoelker: Good luck, have fun.

At http://www.superdupergames.org/?page=archive_play&gid=2121&idx=25 I think TwoShort has a better move than "14. move g2 yonder bluonia; ...".  What do you think?  [I'll give my answer below]

I think I know some of the important strategic considerations: always have a large ship in your homeworld; try to have more large ships than your opponents; having your ships near your opponent's homeworld (and secondarily near your opponent's ships) is good since you can threaten invasion and either conquest or catastrophe more often (and generally make it harder for your opponent to build up a fleet); similarly, you want your opponent's ships away from your homeworld and your ships; ideally both, by having more and bigger yellow ships than your opponent.  Don't get locked out of a color.  *Really* don't get locked out of yellow.  Pick the banker opening if you can.  The gun rule (get red the turn after your opponent).  Did I miss anything major?

At the position I pointed to, I think TwoShort should instead sacrifice his Y3 at home to move Y3 and Y1 to Andy's homeworld, and his G2 to the small yellow star.  This threatens both a yellow catastrophe at Andy's homeworld, and a takeover of Andy's ships.  This forces Andy to sacrifice a yellow ship, bring all his yellows and one other ship home, and trigger a yellow catastrophe himself.  If he brings home his R1, TwoShort can then invade Andy's homeworld with the G2 at Y1, and Andy is defenseless.  If instead Andy brings home his G2, TwoShort can build a G3 at Y1 and invade with that the next turn, against which Andy can build no adequate defense.

I think TwoShort was already ahead in the position where he moved his g2, but I'm not quite sure which strategic element put him ahead.  I'm leaning somewhat to the strength of the banker opening, which gave him an easy investment in the Y3 which he later cashed in on.  But it's not clear to me how the race for big greens will turn out if both players play optimally.

How am I doing for a newbie? ;-)

3) jonaskoelker: Build G1 Jonaskoelker
	ZackStack: You've clearly done your research.  I look forward to seeing you put it into practice! :-)

I think you might be right about that better move... but it would have left TwoShort without a large at his Homeworld and if Andy got out of his impending predicament somehow it would have left Two at a disadvantage.  I've been learning patience is an important tactic in this game...

4) ZackStack: Build G1 Zackstack

5) jonaskoelker: Trade G1 B1 Jonaskoelker

6) ZackStack: Build G1 Zackstack

7) jonaskoelker: Build B1 Jonaskoelker

8) ZackStack: Trade G1 Y1 Zackstack
	jonaskoelker: Oh, you don't need any small blues?  I guess I'll have to keep them for myself then ;-)


9) jonaskoelker: Discover B1 Jonaskoelker G3 Biggreen
	ZackStack: Not right now... :-p

10) ZackStack: Discover G1 Zackstack B2 Tooblue

11) jonaskoelker: Build B2 Jonaskoelker

12) ZackStack: Build G1 Tooblue

13) jonaskoelker: Discover B1 Jonaskoelker Y3 Bigyellow

14) ZackStack: Trade G1 Y1 Tooblue

15) jonaskoelker: Sacrifice G3 Jonaskoelker
Build B2 Bigyellow
Build B3 Biggreen
Build B3 Jonaskoelker

16) ZackStack: Discover Y1 Tooblue G3 Verygreen
	jonaskoelker: You don't need any blue? :-p

	ZackStack: You'll have to trade them in for something else eventually :-)

17) jonaskoelker: Trade B3 Y3 Biggreen

18) ZackStack: Build G1 Zackstack
	jonaskoelker: How will you make use of a blue piece in the stash?  Trade to it?  Build it?

I think I have strong answers to that until you have a second large ship; and I think I can build the large ships faster than you can.

Oh well, I guess I'll see :)
	ZackStack: You are correct on all counts.  That is a pretty nice blue strategy you put together.  I'll have to try that myself sometime! :-)

19) jonaskoelker: Build B3 Biggreen

20) ZackStack: Build G1 Tooblue

21) jonaskoelker: Trade B3 Y3 Biggreen

22) ZackStack: Trade G1 Y1 Tooblue

23) jonaskoelker: Build B3 Biggreen

24) ZackStack: Build Y2 Tooblue

25) jonaskoelker: Discover B3 Biggreen Y2 Medium_yellow

26) ZackStack: Build G1 Tooblue

27) jonaskoelker: Trade B3 R3 Jonaskoelker

28) ZackStack: Discover Y2 Tooblue B3 Moreblue
	jonaskoelker: Behold the power of my fully armed and operational battle station!  I foresee millions of ZackStack'ian souls crying out in terror, then being suddenly silenced.

;-)

	ZackStack: Eek!  Just do me a favor and hum the Darth Vader Theme whenever you move that sucker :-)

29) jonaskoelker: Sacrifice Y3 Biggreen
Move Y3 Biggreen Medium_yellow
Move Y3 Medium_yellow Zackstack
Move B3 Medium_yellow Zackstack

30) ZackStack: Build Y2 Tooblue
	jonaskoelker: I don't think humming will be necessary.  My battle station has long-ranged weapons, capable of destroying a planet from afar, so it will stay behind and let the star destroyers do the invasion.

	ZackStack: Wow.  Well played sir!  

31) jonaskoelker: Sacrifice R3 Jonaskoelker
Attack G3S Zackstack
Attack G1S Zackstack
Attack Y1S Zackstack
	ZackStack: That thinking about your moves strategy of yours really worked out nicely... I'll have to try it sometime :-p
	jonaskoelker: Thank you :)

I think you could have stayed alive longer if you traded to a medium red instead of discovering the b3.

I'm surprised you never invaded biggreen with a green ship, threatening disaster in a few moves.  Answering that threat would definitely delay and obstruct me.

Also, "capturing" the big pieces as stars seems like a good counter-move; if you could have done that earlier (I think--maybe--you could).  It's hard for me to capture back those stars and letting myself rebuild them as ships without giving you the opportunity to re-steal them, which would delay and obstruct my amassing of large ships further.

But yeah, monopolizing blue works wonders :)

Thanks for the game, it was fun.  I hope it was fun for you as well.
	ZackStack: It was fun! And educational too...  I had the same thought about big stars about two turns too late and didn't see the big 3 sacrifice coming (you'd been so focused on building on your "half" the sudden shift to the offense caught me totally by suprise!)  I'm looking forward to a rematch sometime!



13932)
Started: 2009.8.11, Ended: 2009.8.21
Participants: zxcv411 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld B1 R3 G3

2) zxcv411: Homeworld R1 B2 G3

3) TwoShort: Build G1 Twoshort

4) zxcv411: Build G1 Zxcv411

5) TwoShort: Trade G1 Y1 Twoshort

6) zxcv411: Build G1 Zxcv411

7) TwoShort: Build G1 Twoshort

8) zxcv411: Trade G1 Y1 Zxcv411

9) TwoShort: Trade G1 B1 Twoshort
	TwoShort: I'm going to suggest you undo that...

10) zxcv411: Discover G1 Zxcv411 Y3 Starbug
	zxcv411: Oh, that's right, you can call it too >.<

11) TwoShort: Build B1 Twoshort

12) zxcv411: Build G1 Zxcv411

13) TwoShort: Discover B1 Twoshort G2 Grogar

14) zxcv411: Trade G1 R1 Zxcv411

15) TwoShort: Build B2 Twoshort

16) zxcv411: Trade G3 Y3 Zxcv411

17) TwoShort: Discover B1 Twoshort B2 Bonanza

18) zxcv411: Build G1 Starbug

19) TwoShort: Sacrifice G3 Twoshort
Build B3 Twoshort
Build B3 Grogar
Build B3 Bonanza

20) zxcv411: Move G1 Starbug Zxcv411

21) TwoShort: Sacrifice B2 Twoshort
Trade B3 G3 Bonanza
Trade B3 Y3 Grogar

22) zxcv411: Build R1 Zxcv411

23) TwoShort: Sacrifice G3 Bonanza
Build B2 Twoshort
Build B3 Bonanza
Build B3 Grogar

24) zxcv411: Move R1 Zxcv411 Starbug

25) TwoShort: Discover B3 Grogar R3 Rosy

26) zxcv411: Build R2 Starbug

27) TwoShort: Sacrifice B2 Twoshort
Trade B3 R3 Twoshort
Trade B3 G3 Bonanza

28) zxcv411: Discover R1 Starbug B2 Rimmer

29) TwoShort: Sacrifice G3 Bonanza
Build B3 Rosy
Build B3 Bonanza
Build Y1 Twoshort

30) zxcv411: Sacrifice Y3 Zxcv411
Move R2 Starbug Rimmer
Move R2 Rimmer Twoshort
Move R1 Rimmer Twoshort
Catastrophe Twoshort Red

31) TwoShort: Trade B3 R3 Bonanza

32) zxcv411: Build Y2 Zxcv411

33) TwoShort: Sacrifice Y3 Grogar
Move B3 Rosy Zxcv411
Move R3 Bonanza Twoshort
Move B3 Rosy Twoshort

34) zxcv411: Build Y2 Zxcv411

35) TwoShort: Sacrifice R3 Twoshort
Attack Y2 Zxcv411
Attack Y2 Zxcv411
Attack G1 Zxcv411

36) zxcv411: Attack G1 Zxcv411

37) TwoShort: Sacrifice B3 Twoshort
Trade Y2 B2 Zxcv411
Trade Y2 R2 Zxcv411
Trade B3 G3 Zxcv411

38) zxcv411: Build R1 Zxcv411
Catastrophe Zxcv411 Red

39) TwoShort: Sacrifice G3 Zxcv411
Build B3 Zxcv411
Build B3 Zxcv411
Pass
Catastrophe Zxcv411 Blue

	TwoShort: Thanks for the game!


13990)
Started: 2009.8.11, Ended: 2009.9.8
Participants: zxcv411 (S), jonaskoelker (N)
Winner: zxcv411

1) jonaskoelker: Homeworld R1 B2 G3

2) zxcv411: Homeworld R1 B2 G3

3) jonaskoelker: Build G1 Jonaskoelker

4) zxcv411: Build G1 Zxcv411

5) jonaskoelker: Trade G1 Y1 Jonaskoelker

6) zxcv411: Build G1 Zxcv411

7) jonaskoelker: Build G1 Jonaskoelker

8) zxcv411: Trade G1 Y1 Zxcv411

9) jonaskoelker: Discover G1 Jonaskoelker Y3 Large_yellow

10) zxcv411: Build Y1 Zxcv411
	jonaskoelker: I must say I find your symmetric plays interesting.  I look forward to seeing how the game develops.

Oh by the way, hi, and good luck have fun, and such ;-)  May the best ("most stellar"? :D) man win.

11) jonaskoelker: Build Y2 Jonaskoelker

12) zxcv411: Trade Y1 B1 Zxcv411

13) jonaskoelker: Trade Y1 R1 Jonaskoelker

14) zxcv411: Move G1 Zxcv411 Large_yellow

15) jonaskoelker: Build R2 Jonaskoelker

16) zxcv411: Trade G3 Y3 Zxcv411



14000)
Started: 2009.8.11, Ended: 2009.9.8
Participants: zxcv411 (S), jonaskoelker (N)
Winner: zxcv411

1) jonaskoelker: Homeworld B1 Y2 G3

2) zxcv411: Homeworld R1 B2 G3

3) jonaskoelker: Build G1 Jonaskoelker

4) zxcv411: Build G1 Zxcv411

5) jonaskoelker: Trade G1 R1 Jonaskoelker

6) zxcv411: Build G1 Zxcv411

7) jonaskoelker: Build G1 Jonaskoelker

8) zxcv411: Trade G1 Y1 Zxcv411

9) jonaskoelker: Discover G1 Jonaskoelker Y3 Large_yellow

10) zxcv411: Build Y1 Zxcv411

11) jonaskoelker: Build G1 Large_yellow

12) zxcv411: Trade Y1 R1 Zxcv411

13) jonaskoelker: Build R2 Jonaskoelker

14) zxcv411: Build R2 Zxcv411

15) jonaskoelker: Move R2 Jonaskoelker Large_yellow

16) zxcv411: Trade R2 B2 Zxcv411



14001)
Started: 2009.8.11, Ended: 2009.9.8
Participants: jonaskoelker (S), zxcv411 (N)
Winner: zxcv411

1) zxcv411: Homeworld B1 R2 G3

2) jonaskoelker: Homeworld B2 R3 G3

3) zxcv411: Build G1 Zxcv411

4) jonaskoelker: Build G1 Jonaskoelker

5) zxcv411: Trade G1 Y1 Zxcv411

6) jonaskoelker: Trade G1 Y1 Jonaskoelker

7) zxcv411: Build G1 Zxcv411

8) jonaskoelker: Build G1 Jonaskoelker

9) zxcv411: Trade G3 Y3 Zxcv411

10) jonaskoelker: Trade G1 B1 Jonaskoelker

11) zxcv411: Build G1 Zxcv411

12) jonaskoelker: Build B1 Jonaskoelker

13) zxcv411: Trade G1 R1 Zxcv411

14) jonaskoelker: Discover B1 Jonaskoelker G1 Small_green

15) zxcv411: Build R1 Zxcv411

16) jonaskoelker: Build B2 Small_green

17) zxcv411: Discover R1 Zxcv411 G3 Starbug

18) jonaskoelker: Build B2 Jonaskoelker

19) zxcv411: Move Y1 Zxcv411 Starbug

20) jonaskoelker: Build B3 Small_green

21) zxcv411: Build R1 Starbug



14002)
Started: 2009.8.11, Ended: 2009.8.11
Participants: jonaskoelker (S), navn (N)
Winner: jonaskoelker

1) navn: Homeworld Y2 B1 G3

2) jonaskoelker: Homeworld R2 B3 G3

3) navn: Build G1 Navn

4) jonaskoelker: Build G1 Jonaskoelker

5) navn: Trade G1 Y1 Navn

6) jonaskoelker: Trade G1 Y1 Jonaskoelker

7) navn: Discover Y1 Navn G3 Co

8) jonaskoelker: Build G1 Jonaskoelker

9) navn: Build G1 Navn

10) jonaskoelker: Discover G1 Jonaskoelker B1 Hoth

11) navn: Discover G1 Navn Y3 Ctrn

12) jonaskoelker: Build G1 Jonaskoelker

13) navn: Build G2 Navn

14) jonaskoelker: Sacrifice G3 Jonaskoelker
Build G2 Hoth
Build G2 Hoth
Build G3 Jonaskoelker

15) navn: Move G1 Ctrn Hoth
Catastrophe Hoth G

16) jonaskoelker: Build G1 Jonaskoelker

17) navn: Move G3 Navn Co

18) jonaskoelker: Discover G1 Jonaskoelker B1 Hoth

19) navn: Discover Y1 Co G1 Nc

20) jonaskoelker: Build G2 Hoth

21) navn: Build G2 Navn

22) jonaskoelker: Trade G2 Y2 Hoth

23) navn: Discover G2 Navn Y3 Cost

24) jonaskoelker: Build Y1 Hoth

25) navn: Build G2 Navn

26) jonaskoelker: Sacrifice G3 Jonaskoelker
Build G3 Jonaskoelker
Build Y2 Jonaskoelker
Build Y3 Hoth

27) navn: Discover G2 Navn Y3 Coster

28) jonaskoelker: Sacrifice Y2 Hoth
Move Y3 Hoth Co
Move Y3 Co Navn

29) navn: Sacrifice G3 Co
Build G3 Cost
Build G3 Coster
Build Y2 Nc

30) jonaskoelker: Trade G3 R3 Jonaskoelker



13933)
Variants: "Hard time"
Started: 2009.8.12, Ended: 2010.1.6
Participants: PottyTroll (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3
	Jesse: Hello, and have a good game.


2) PottyTroll: Homeworld Y3 B1 G3
	PottyTroll: hey, you too

3) Jesse: Build G1 Jesse

4) PottyTroll: Build G1 Pottytroll
	Jesse: Have you played Homeworlds much?

5) Jesse: Trade G1 Y1 Jesse
	PottyTroll: still kind of new but I've played a few games. You?

6) PottyTroll: Discover G1 Pottytroll B2 Porkslap
	Jesse: I have played a lot, and I am one of the stronger players on SDG.  I'm always happy to help a new player out, so let me know if there's an area where you would like some guidance.

7) Jesse: Build G1 Jesse


8) PottyTroll: Build G1 Pottytroll

9) Jesse: Build G2 Jesse

10) PottyTroll: Build G2 Porkslap

11) Jesse: Discover G2 Jesse G3 Blop

12) PottyTroll: Trade G2 Y2 Porkslap

13) Jesse: Build Y1 Jesse

14) PottyTroll: Build G2 Porkslap

15) Jesse: Discover G1 Jesse Y3 Dollop

16) PottyTroll: Move G1 Porkslap Blop

17) Jesse: Build G2 Dollop

18) PottyTroll: Build Y1 Porkslap

19) Jesse: Trade Y1 R1 Jesse

20) PottyTroll: Trade Y1 B1 Porkslap

21) Jesse: Move G2 Dollop Porkslap

22) PottyTroll: Trade G1 R1 Pottytroll

23) Jesse: Sacrifice R1 Jesse
Attack Y2 Porkslap

24) PottyTroll: Sacrifice R1 Pottytroll
Attack Y2 Porkslap

25) Jesse: Trade G2 R2 Porkslap


26) PottyTroll: Sacrifice B1 Porkslap
Trade G1 R1 Blop

27) Jesse: Attack Y2 Porkslap

28) PottyTroll: Sacrifice R1 Blop
Attack R2 Porkslap

29) Jesse: Discover Y2 Porkslap B3 Smidge

30) PottyTroll: Build R1 Porkslap

31) Jesse: Sacrifice G2 Blop
Build Y1 Smidge
Build G1 Jesse

32) PottyTroll: Trade R1 Y1 Porkslap

33) Jesse: Trade Y1 R1 Smidge

34) PottyTroll: Build G1 Pottytroll

35) Jesse: Build G2 Dollop

36) PottyTroll: Trade G1 R1 Pottytroll

37) Jesse: Sacrifice G1 Jesse
Build R2 Smidge

38) PottyTroll: Sacrifice G2 Porkslap
Build R2 Pottytroll
Build R3 Porkslap

39) Jesse: Discover R2 Smidge G2 Pinch

40) PottyTroll: Trade R2 G2 Porkslap

41) Jesse: Sacrifice G2 Dollop
Build R2 Pinch
Build R3 Smidge

	Jesse: Well, that time it did the move I asked for.  I don't know what was different before, but I certainly didn't put "pass" instead of "b r3 smidge".
	Aaron: I'm glad it worked!  I'll do a quick look-over the code anyway.  Call me again if something odd happens.


14007)
Started: 2009.8.12, Ended: 2009.12.10
Participants: jonaskoelker (S), Horowits (N)
Winner: Horowits

1) Horowits: Homeworld G3 Y2 B3

2) jonaskoelker: Homeworld R1 B2 G3
	Horowits: ahoy. good luck and have fun :)

3) Horowits: Build B1 Horowits
	jonaskoelker: Ahoy!  Interesting opening, I don't think I've played against a big *blue* ship (opening) before.   Let's see what will come of it.

Good luck, have fun, and may the best interstellar commodore win ;-)

4) jonaskoelker: Build G1 Jonaskoelker

5) Horowits: Build B1 Horowits

6) jonaskoelker: Trade G1 B1 Jonaskoelker

7) Horowits: Discover B1 Horowits G1 Rawg
	jonaskoelker: Hmm... I figure you're a sneaky bastard trying to monopolize the blue color.  Wanna' discuss your opening strategy once it's no longer relevant (i.e. at the latest when the game is over, but before if you feel like it)?


8) jonaskoelker: Build B2 Jonaskoelker
	Horowits: sure thing mon :)

9) Horowits: Build B2 Horowits

10) jonaskoelker: Trade B2 Y2 Jonaskoelker

11) Horowits: Discover B2 Horowits G1 Megadeth

12) jonaskoelker: Discover B1 Jonaskoelker G3 Large_green

13) Horowits: Move B1 Horowits Rawg
	jonaskoelker: Were you hoping to have both the remaining two large blue ships for yourself? ;-)




14021)
Started: 2009.8.14, Ended: 2009.10.28
Participants: ts52 (S), Horowits (N)
Winner: ts52

1) Horowits: Homeworld G3 R1 B3

2) ts52: Homeworld Y1 B2 G3
	Horowits: ahoy. have fun and good luck :)

3) Horowits: Build B1 Horowits
	ts52: Good luck to you too. Have a good game!

4) ts52: Build G1 Ts52

5) Horowits: Build B1 Horowits

6) ts52: Build G1 Ts52

7) Horowits: Trade B3 Y3 Horowits

8) ts52: Discover G1 Ts52 B3 Grover

9) Horowits: Discover B1 Horowits G2 Gwar

10) ts52: Build G1 Ts52

11) Horowits: Build B1 Gwar

12) ts52: Build G2 Grover

13) Horowits: Build B2 Horowits

14) ts52: Discover G1 Ts52 B3 Gonzo

15) Horowits: Sacrifice B2 Horowits
Trade B1 Y1 Gwar
Trade B1 R1 Gwar

16) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Grover

17) Horowits: Build R1 Gwar

18) ts52: Trade G3 R3 Grover

19) Horowits: Trade Y3 G3 Horowits

20) ts52: Build R2 Grover

21) Horowits: Move R1 Gwar Gonzo

22) ts52: Trade R2 Y2 Grover



14053)
Started: 2009.8.18, Ended: 2009.9.29
Participants: ZackStack (S), agentofchaos (N)
Winner: ZackStack

1) agentofchaos: Homeworld B3 R1 G3
	ZackStack: Have a good game Agent!  
	agentofchaos: Thanks you too Zack!

2) ZackStack: Homeworld R1 B2 G3

3) agentofchaos: Build G1 Agentofchaos

4) ZackStack: Build G1 Zackstack

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) ZackStack: Build G1 Zackstack

7) agentofchaos: Build Y1 Agentofchaos

8) ZackStack: Trade G1 Y1 Zackstack

9) agentofchaos: Build Y2 Agentofchaos

10) ZackStack: Discover G1 Zackstack B3 Cookie

11) agentofchaos: Trade Y1 R1 Agentofchaos

12) ZackStack: Build G1 Zackstack

13) agentofchaos: Build R2 Agentofchaos

14) ZackStack: Build G1 Cookie
	ZackStack: Ahhh... that's better :-) 

15) agentofchaos: Build G2 Agentofchaos

16) ZackStack: Build G2 Zackstack

17) agentofchaos: Discover Y2 Agentofchaos B2 Hearthome

18) ZackStack: Trade G2 R2 Zackstack

19) agentofchaos: Build G2 Agentofchaos

20) ZackStack: Trade G1 Y1 Cookie

21) agentofchaos: Move R2 Agentofchaos Hearthome

22) ZackStack: Move R2 Zackstack Cookie

23) agentofchaos: Build Y2 Agentofchaos

24) ZackStack: Discover G1 Zackstack Y3 Zoe

25) agentofchaos: Move R2 Hearthome Zoe

26) ZackStack: Discover G1 Zoe R2 Elmo

27) agentofchaos: Sacrifice G2 Agentofchaos
Build R3 Zoe
Build Y2 Hearthome

28) ZackStack: Build Y3 Zackstack

29) agentofchaos: Move Y2 Agentofchaos Elmo

30) ZackStack: Sacrifice Y3 Zackstack
Move G1 Cookie Elmo
Move G1 Elmo Agentofchaos
Move G1 Elmo Agentofchaos
Catastrophe Agentofchaos Green

31) agentofchaos: Trade R1 G1 Agentofchaos

32) ZackStack: Sacrifice G3 Zackstack
Build Y3 Zackstack
Build Y3 Cookie
Build R1 Cookie
	ZackStack: Clearly I'm better at this when there is someone else around to distract you :-)

33) agentofchaos: Sacrifice Y2 Hearthome
Move R3 Zoe Hearthome
Move R3 Hearthome Agentofchaos
	agentofchaos: Oh bugger...

34) ZackStack: Discover R2 Cookie Y2 Abbie

35) agentofchaos: Sacrifice G1 Agentofchaos
Build R3 Zoe

36) ZackStack: Sacrifice Y3 Cookie
Move R2 Abbie Agentofchaos
Move R1 Cookie Elmo
Move R1 Elmo Agentofchaos
Catastrophe Agentofchaos Red

37) agentofchaos: Sacrifice Y2 Hearthome
Move R3 Zoe Elmo
Move R3 Elmo Agentofchaos

38) ZackStack: Trade Y3 G3 Zackstack
	ZackStack: And my glut of undo's continues...  I guess my first instinct is to play conservatively, but once I make the conservative move I decide the field would look better if I went aggressive...

39) agentofchaos: Trade Y1 G1 Agentofchaos
	agentofchaos: Sometimes the grass is greener... ;-)

40) ZackStack: Build G1 Zackstack
	agentofchaos: Looks like it's all downhill from here...

41) agentofchaos: Build G1 Agentofchaos

42) ZackStack: Move G1 Zackstack Cookie
	ZackStack: I'll do my best to make it quick and painless :-)

43) agentofchaos: Trade G1 Y1 Agentofchaos
	agentofchaos: That's right kindly of you...

44) ZackStack: Build Y2 Cookie

45) agentofchaos: Build Y2 Agentofchaos

46) ZackStack: Trade Y1 B1 Cookie

47) agentofchaos: Trade Y1 B1 Agentofchaos

48) ZackStack: Sacrifice Y2 Cookie
Discover G1 Cookie Y1 Tweetie
Move B1 Cookie Tweetie


49) agentofchaos: Build G1 Agentofchaos
	ZackStack: Hmmm... why the heck am I building up Cookie system?

50) ZackStack: Build B1 Tweetie
	agentofchaos: Are you a fan of cookie monster perhaps?

51) agentofchaos: Move G1 Agentofchaos Elmo
	ZackStack: Well... who isn't? :-)

52) ZackStack: Move B1 Tweetie Agentofchaos

53) agentofchaos: Sacrifice B1 Agentofchaos
Trade R2 B2 Zoe

54) ZackStack: Sacrifice G3 Zackstack
Build B1 Agentofchaos
Build B2 Agentofchaos
Build Y1 Zackstack
Catastrophe Agentofchaos Blue

	ZackStack: Thanks for the game agent!


14057)
Variants: "Hard time"
Started: 2009.8.20, Ended: 2010.1.1
Participants: alexcobo (S), Subhan64 (N)
Winner: alexcobo

1) Subhan64: Homeworld G3 B2 Y3

2) alexcobo: Homeworld G3 B2 Y3

3) Subhan64: Build Y1 Subhan64

4) alexcobo: Build Y1 Alexcobo

5) Subhan64: Trade Y1 G1 Subhan64

6) alexcobo: Discover Y1 Alexcobo G1 Geneva

7) Subhan64: Build Y1 Subhan64

8) alexcobo: Build Y1 Alexcobo

9) Subhan64: Move Y1 Subhan64 Geneva

10) alexcobo: Trade Y1 R1 Alexcobo

11) Subhan64: Trade G1 R1 Subhan64

12) alexcobo: Sacrifice R1 Alexcobo
Attack Y1N Geneva

13) Subhan64: Build R1 Subhan64

14) alexcobo: Build Y1 Alexcobo

15) Subhan64: Move R1 Subhan64 Geneva

16) alexcobo: Build Y2 Geneva

17) Subhan64: Attack Y1 Geneva

18) alexcobo: Trade Y1 R1 Alexcobo

19) Subhan64: Build R2 Geneva

20) alexcobo: Sacrifice R1 Alexcobo
Attack R2N Geneva

21) Subhan64: Build Y1 Geneva
Catastrophe Geneva Yellow

22) alexcobo: Attack R1N Geneva

23) Subhan64: Build Y1 Subhan64

24) alexcobo: Build Y1 Alexcobo

25) Subhan64: Trade Y1 G1 Subhan64

26) alexcobo: Trade Y1 G1 Alexcobo

27) Subhan64: Discover G1 Subhan64 Y1 Omicronpersei8

28) alexcobo: Build Y1 Alexcobo

29) Subhan64: Build G2 Omicronpersei8

30) alexcobo: Discover G1 Alexcobo Y1 Ono

31) Subhan64: Sacrifice G2 Omicronpersei8
Build G2 Omicronpersei8
Build G2 Omicronpersei8

32) alexcobo: Build Y2 Alexcobo

33) Subhan64: Sacrifice G2 Omicronpersei8
Build Y2 Subhan64
Build G2 Omicronpersei8

34) alexcobo: Sacrifice Y2 Alexcobo
Move G1 Ono Subhan64
Move G1 Subhan64 Omicronpersei8
Catastrophe Omicronpersei8 G

35) Subhan64: Trade Y2 G2 Subhan64

36) alexcobo: Build Y1 Alexcobo

37) Subhan64: Build R1 Subhan64

38) alexcobo: Trade Y3 R3 Alexcobo
	Subhan64: trade y2 g2 subhan64

39) Subhan64: Build Y1 Subhan64

40) alexcobo: Build R2 Alexcobo

41) Subhan64: Move R1 Subhan64 Geneva

42) alexcobo: Attack R1N Geneva

43) Subhan64: Move R1 Subhan64 Geneva
Catastrophe Geneva Red

44) alexcobo: Discover R2 Alexcobo G1 Genevaagain

45) Subhan64: Trade Y3 R3 Subhan64

46) alexcobo: Build Y2 Alexcobo

47) Subhan64: Build Y2 Subhan64

48) alexcobo: Discover Y2 Alexcobo G1 Copy

49) Subhan64: Move Y2 Subhan64 Copy

50) alexcobo: Sacrifice R2 Genevaagain
Attack Y2N Copy
Pass

51) Subhan64: Trade G2 R2 Subhan64

52) alexcobo: Build R1 Alexcobo

53) Subhan64: Build Y2 Subhan64

54) alexcobo: Trade Y1 B1 Alexcobo

55) Subhan64: Trade Y2 G2 Subhan64

56) alexcobo: Sacrifice B1 Alexcobo
Trade Y2 R2 Copy

57) Subhan64: Build Y1 Subhan64

58) alexcobo: Build Y2 Alexcobo

59) Subhan64: Discover Y1 Subhan64 G1 Sirius7

60) alexcobo: Discover R2 Copy Y2 Waypoint

61) Subhan64: Build Y3 Sirius7

62) alexcobo: Build Y3 Copy

63) Subhan64: Trade Y1 B1 Subhan64

64) alexcobo: Move R2 Waypoint Copy

65) Subhan64: Build B1 Subhan64

66) alexcobo: Trade R1 G1 Alexcobo

67) Subhan64: Sacrifice B1 Subhan64
Trade Y3 R3 Sirius7

68) alexcobo: Build G2 Alexcobo

69) Subhan64: Trade G2 Y2 Subhan64

70) alexcobo: Discover G2 Alexcobo R1 Titus

71) Subhan64: Move R2 Subhan64 Titus

72) alexcobo: Attack R2N Titus

73) Subhan64: Sacrifice Y2 Subhan64
Move R3 Sirius7 Alexcobo
Move R3 Alexcobo Titus

74) alexcobo: Sacrifice Y2 Copy
Move R2 Copy Alexcobo
Move R2 Alexcobo Titus
Catastrophe Titus R

75) Subhan64: Trade B1 Y1 Subhan64

76) alexcobo: Trade Y1 R1 Alexcobo
	Subhan64: D'oh!

77) Subhan64: Build R1 Subhan64

78) alexcobo: Build G2 Alexcobo

79) Subhan64: Build Y1 Subhan64

80) alexcobo: Move R3 Alexcobo Sirius7

81) Subhan64: Discover Y1 Sirius7 G2 Sirius9

82) alexcobo: Sacrifice Y3 Copy
Move R1 Alexcobo Sirius7
Move R1 Sirius7 Subhan64
Move R3 Sirius7 Subhan64
Catastrophe Subhan64 R

83) Subhan64: Build Y2 Subhan64

84) alexcobo: Build Y2 Alexcobo

85) Subhan64: Trade Y2 G2 Subhan64

86) alexcobo: Trade G2 R2 Alexcobo

87) Subhan64: Discover Y1 Sirius9 B1 Sirius8

88) alexcobo: Sacrifice Y2 Alexcobo
Move R2 Alexcobo Sirius8
Move R2 Sirius8 Subhan64

89) Subhan64: Build Y2 Subhan64

90) alexcobo: Attack Y2N Subhan64

91) Subhan64: Sacrifice G2 Subhan64
Build Y2 Sirius8
Build Y3 Sirius8

92) alexcobo: Sacrifice R2 Subhan64
Attack Y1N Subhan64
Attack Y1N Subhan64

	alexcobo: Thank you for the game.
Have a very happy 2010!


14062)
Started: 2009.8.25, Ended: 2009.8.31
Participants: JimTarnung (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) JimTarnung: Homeworld B1 G2 Y3
	TwoShort: Howdy.

3) TwoShort: Build G1 Twoshort
	JimTarnung: To the stars and beyond!

4) JimTarnung: Build Y1 Jimtarnung

5) TwoShort: Trade G1 Y1 Twoshort

6) JimTarnung: Trade Y1 G1 Jimtarnung
	JimTarnung: It's my first game of Homeworlds. I hope i don't suck too hard. I'm quite sure that I understand the rules, as I translated them to German.

7) TwoShort: Build G1 Twoshort

8) JimTarnung: Build Y1 Jimtarnung

9) TwoShort: Discover G1 Twoshort B2 Bluonia

10) JimTarnung: Trade Y1 R1 Jimtarnung
	TwoShort: I usually try to give new players a few strategy pointers, but be aware that by the time I figure out what pointers to give, it's usually to late to use them :)  For example, I'd generally reccomend starting with a green ship.

11) TwoShort: Build G1 Twoshort

12) JimTarnung: Build Y1 Jimtarnung
	JimTarnung: Sacrificing a big green surely seems very powerful. I guess I'll learn by doing. Don't hesitate to give advice as you see fit. Even if it is to late..

13) TwoShort: Build G2 Bluonia
	TwoShort: Well, as far as too late advice... don't take a red before there is any threat of your using it.  It's not hurting you, but you could have done something better with that turn.

14) JimTarnung: Trade Y3 G3 Jimtarnung
	TwoShort: "The Factory" - sacrificing a g3 to grow 3 ships including a replacement g3, is definitely a key tactic.  If your opponent gets that set up and you don't, you'll have a big problem. 

15) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Bluonia
Build G3 Twoshort
	TwoShort: That will get you a factory, but note that it's only safe because I can't get a green to your Homeworld for a catastrophe.  If I took a y2, you'd need to move a green out, and wouldn't be able to use the factory without moving your 3 out.
  But for this turn at least,I'm more interested in using the factory myself...

16) JimTarnung: Build Y1 Jimtarnung
	JimTarnung: Oh no! I didn't realise that you can rebuild the ship you just sacrificed. I traded for a big green to avoid that you get two big ones in one turn. Well, I learned something new again..

17) TwoShort: Trade G3 Y3 Bluonia
	TwoShort: Yes, sacrificed ships go tot the stash imediately.  The same is true of abandoned system markers; so if you sacrifice a green that was alone at a star, you can grow the star as a ship.

18) JimTarnung: Discover G1 Jimtarnung Y3 Yello

19) TwoShort: Trade G2 R2 Bluonia

20) JimTarnung: Build Y2 Jimtarnung

21) TwoShort: Discover G2 Twoshort B2 Blitzen
	JimTarnung: Yellow catastrophe? Are you willing to do it?

22) JimTarnung: Trade Y1 B1 Jimtarnung

23) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G3 Blitzen
Build G3 Twoshort
	TwoShort: The yellow catastrophe would have cost me a y3 & y1 for your y2 and 2 y1s, which I'd rate as a big loss for me.  My super-crude rule of thumb is a 2-point is worth 3 1-points, and a 3-point is worth 3 2-points.  So I'll pretty much never give up a 3 without getting one in return.

24) JimTarnung: Move B1 Jimtarnung Yello

25) TwoShort: Discover G2 Bluonia B3 Boomtime

26) JimTarnung: Sacrifice G3 Jimtarnung
Build G3 Yello
Build B1 Yello
Build B2 Yello

27) TwoShort: Sacrifice Y3 Bluonia
Move G3 Blitzen Boomtime
Move G3 Boomtime Jimtarnung
Pass
	JimTarnung: Lord have mercy..

28) JimTarnung: Move B2 Yello Jimtarnung

29) TwoShort: Sacrifice R2 Bluonia
Attack B2 Jimtarnung
Attack Y2 Jimtarnung

30) JimTarnung: Move G3 Yello Jimtarnung

31) TwoShort: Sacrifice G2 Blitzen
Build G2 Jimtarnung
Build B2 Jimtarnung
Catastrophe Jimtarnung Green

32) JimTarnung: Build G2 Yello

33) TwoShort: Sacrifice G1 Bluonia
Build B2 Jimtarnung
Catastrophe Jimtarnung Blue
	TwoShort: Thanks for the game.  Hope it wasn't too demoralizing :)
	JimTarnung: Thank you too. I learned a few basic moves, but there's a long way to go. This won't be my last time playing..



13841)
Started: 2009.8.27, Ended: 2009.9.1
Participants: MikeYarrum (S), Werebear (N)
Winner: Werebear

1) Werebear: Homeworld G3 Y2 B3
	Werebear: Greetings!



13868)
Variants: "Hard time"
Started: 2009.8.27, Ended: 2009.10.4
Participants: agentofchaos (S), Werebear (N)
Winner: Werebear

1) Werebear: Homeworld B3 Y2 G3
	Werebear: Hello!

2) agentofchaos: Homeworld B3 R1 G3
	agentofchaos: Hi there, thanks for playing me!

3) Werebear: Build G1 Werebear
	Werebear: My pleasure. Do you like a quiet game with no chatter, or are you a social player? I'll conform to whatever you like, but I do tend to be chattery if my fellow players enjoy that. Either way, I'll adhere to your pleasure.

4) agentofchaos: Build G1 Agentofchaos
	agentofchaos: I'm quite open to a bit of chatter, it can be fun to get to know players. 

5) Werebear: Discover G1 Werebear Y1 Pergi

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) Werebear: Build G1 Werebear

8) agentofchaos: Build G1 Agentofchaos

9) Werebear: Discover G1 Pergi B3 Mengubah
	Werebear: Sorry, kind sir - got called away for a few days.

10) agentofchaos: Build G2 Agentofchaos

11) Werebear: Sacrifice G3 Werebear
Build G2 Mengubah
Build G2 Mengubah
Build G3 Werebear
	agentofchaos: Not to worry, nature calls sometimes ;-)
	Werebear: We are a watery people, we who are called by our friends the Todak. We have nothing but peaceful intentions and a love of nature. And nature called us away, to our meditations. But now, we come to meet with you, our newest found friend! Greetings from the Todak!

12) agentofchaos: Sacrifice G3 Agentofchaos
Build Y1 Agentofchaos
Build Y1 Agentofchaos
Build G3 Agentofchaos
	Werebear: *squinting*
Ahh. Our meditations bear fruit. Blessings!
	agentofchaos: Nothing but peaceful intentions?? Says the wolf-in-sheep's-clothing!

13) Werebear: Build G3 Werebear

14) agentofchaos: Discover G2 Agentofchaos Y2 Dhamballa
	Werebear: My friend, we've meditated on your thoughts. Surely, we're not wolves. Perhaps gentle bears? Perhaps your angry red sun tints your view of our peaceful people.

15) Werebear: Discover G3 Werebear B1 Alkimia
	agentofchaos: How about locusts in gentle bears' clothing then? The peaceful blue sun balances the angry red one...

16) agentofchaos: Trade Y1 B1 Agentofchaos
	Werebear: Oh, yes, my friend, we know about peaceful blue suns.

17) Werebear: Trade G2 Y2 Mengubah

18) agentofchaos: Build B1 Agentofchaos

19) Werebear: Build G2 Alkimia

20) agentofchaos: Move B1 Agentofchaos Dhamballa

21) Werebear: Sacrifice G3 Alkimia
Build G3 Alkimia
Build Y1 Mengubah
Build Y3 Mengubah

22) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Agentofchaos
Build B2 Dhamballa
Build B2 Dhamballa

23) Werebear: Discover Y2 Mengubah B2 Berbeda

24) agentofchaos: Move B1 Dhamballa Mengubah

25) Werebear: Sacrifice G3 Alkimia
Build G3 Alkimia
Build Y3 Mengubah
Build Y3 Berbeda
	Werebear: Pray tell, have you come to visit? Or are you delivering a message? In all truth, it is wonderful to have met you, finally!

26) agentofchaos: Move B2 Dhamballa Mengubah

27) Werebear: Sacrifice Y3 Mengubah
Discover G2 Mengubah R2 Pintu
Move Y3 Mengubah Dhamballa
Move Y1 Mengubah Pintu
	agentofchaos: Always happy to visit the neighbours I am and bring glad tidings! 
	Werebear: Methinks you are delivering some sort of eviction notice? Is that what's in this envelope?

28) agentofchaos: Sacrifice Y1 Agentofchaos
Move B1 Mengubah Alkimia

29) Werebear: Sacrifice Y3 Berbeda
Move G1 Mengubah Pintu
Move G1 Pintu Agentofchaos
Move G2 Pintu Agentofchaos
Catastrophe Agentofchaos Green
	agentofchaos: Actually fireworks to celebrate our wonderful meeting!
	Werebear: You like you some fireworks? We like fireworks too! Here's some for you!

30) agentofchaos: Trade B2 G2 Mengubah
	Werebear: Intergalatic News Services has learned that a horrible calamity has struck in the agentofchaos home system. During a brilliantly executed fireworks display, that drew fascinated audiences from as far away as Mengubah, the star fleets orbiting the home world began colliding. Apparently, the fireworks had a mesmerizing quality that distracted the star ship crews, and before it was all done, thousands of lifeboats had launched down. All hands from all vessels survived, and the agentofchaosians thought that the gigantic star ship explosions were just part of the show. Happy partying continued long into the night, as the lifeboats landed with great relief and celebration.
	agentofchaos: Hmm, an investigation is being launched into those fireworks... Foul play is suspected...

31) Werebear: Sacrifice Y2 Berbeda
Discover G3 Alkimia B2 Berbeda
Move Y3 Dhamballa Agentofchaos

32) agentofchaos: Sacrifice G2 Mengubah
Build Y1 Agentofchaos
Build Y2 Agentofchaos
	Werebear: As per your request, we'll send investigators to assist you. We definitely want to find out about those fireworks problems, before it can happen again.

33) Werebear: Trade Y3 R3 Agentofchaos
	agentofchaos: Hmm, we'd really prefer to conduct an independent investigation, but something tells me it's too late for that....

34) agentofchaos: Trade Y1 G1 Agentofchaos
	Werebear: Sorry about the delay, mate! But we think we've finally found the problem. The results of investigation will be released to two star days.

35) Werebear: Attack G1S Agentofchaos
	agentofchaos: I wait with baited breath...

36) agentofchaos: Trade Y1 G1 Agentofchaos
	Werebear: I think I found the problem - right 'cheer... Should be all better now. Troublesome green ship stirring up troubles...
	agentofchaos: Alas, I fear an age of darkness is falling upon the agentofchaos system...

37) Werebear: Trade G3 R3 Berbeda

	Werebear: Here, that'll help...


14091)
Variants: "Hard time"
Started: 2009.8.27, Ended: 2009.9.26
Participants: Werebear (S), mzmzmz (N)
Winner: Werebear

1) mzmzmz: Homeworld G2 Y1 B3
	Werebear: Howdy!

2) Werebear: Homeworld Y2 B1 G3

3) mzmzmz: Build B1 Mzmzmz
	Werebear: Oy! It is such a joy to find friendly peoples so close to us! We look forward to much trade and happiness between our peoples! Greetings!
	mzmzmz: Greetings to you as well.  We foresee great cultural exchanges between our peoples in the near future.

4) Werebear: Build G1 Werebear

5) mzmzmz: Trade B1 G1 Mzmzmz

6) Werebear: Discover G1 Werebear Y3 Banana

7) mzmzmz: Build B1 Mzmzmz

8) Werebear: Build G1 Werebear
	Werebear: So sorry - started thinking too much.

9) mzmzmz: Move G1 Mzmzmz Banana

10) Werebear: Trade G1 R1 Werebear

11) mzmzmz: Trade B1 Y1 Mzmzmz

12) Werebear: Build R1 Werebear
	Werebear: Oy! We dance! What joy! Oy!

13) mzmzmz: Build B1 Mzmzmz

14) Werebear: Discover R1 Werebear G3 Spinach

15) mzmzmz: Move B1 Mzmzmz Banana

16) Werebear: Move R1 Werebear Banana

	mzmzmz: oops, sorry about that.  I didn't mean to let the time expire.


32026)
Variants: "Hard time"
Started: 2017.4.23, Ended: 2017.6.28
Participants: SilentTitan (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) SilentTitan: Homeworld B2 R3 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) SilentTitan: Build G1 Silenttitan

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Draw5PlayAll: Build G1 Draw5playall

8) SilentTitan: Build G1 Silenttitan

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) SilentTitan: Trade G1 R1 Silenttitan

11) Draw5PlayAll: Build B1 Draw5playall

12) SilentTitan: Build R1 Silenttitan

13) Draw5PlayAll: Build Y1 Draw5playall

14) SilentTitan: Build Y2 Silenttitan

15) Draw5PlayAll: Build Y2 Draw5playall
	Draw5PlayAll: UH OH.

16) SilentTitan: Discover Y1 Silenttitan G1 Sol

17) Draw5PlayAll: Trade Y2 R2 Draw5playall

18) SilentTitan: Build Y2 Sol

19) Draw5PlayAll: Discover R2 Draw5playall G2 G2

20) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Silenttitan
Build Y3 Silenttitan

21) Draw5PlayAll: Move Y1 Draw5playall G2

22) SilentTitan: Sacrifice Y2 Sol
Move Y3 Silenttitan Sol
Move Y3 Sol G2

23) Draw5PlayAll: Sacrifice Y1 G2
Discover R2 G2 Y1 Y1

24) SilentTitan: Discover R1 Silenttitan G1 Soul

25) Draw5PlayAll: Discover B1 Draw5playall G2 G2b

26) SilentTitan: Trade Y3 G3 Silenttitan

27) Draw5PlayAll: Build B1 G2b

28) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 G2
Build Y3 Silenttitan
Build Y3 Silenttitan

29) Draw5PlayAll: Build B2 G2b

30) SilentTitan: Trade Y3 B3 Silenttitan

31) Draw5PlayAll: Build Y3 Draw5playall

32) SilentTitan: Sacrifice Y2 Sol
Move Y2 G2 Draw5playall
Move Y3 G2 Draw5playall
Catastrophe Draw5playall Yellow

33) Draw5PlayAll: Trade B2 R2 G2b

34) SilentTitan: Trade Y3 G3 Silenttitan

35) Draw5PlayAll: Trade B1 Y1 G2b
	Draw5PlayAll: Thanks!

36) SilentTitan: Move B3 Silenttitan Y1
	Draw5PlayAll: You gave more than I lost...

37) Draw5PlayAll: Discover R2 Y1 Y3 Y3

38) SilentTitan: Move B3 Y1 G2b

39) Draw5PlayAll: Move R2 G2b Sol

40) SilentTitan: Build R2 Soul

41) Draw5PlayAll: Attack Y1 Sol

42) SilentTitan: Sacrifice R2 Soul
Attack B1 G2b
Attack Y1 G2b

43) Draw5PlayAll: Trade B1 Y1 Draw5playall

44) SilentTitan: Build Y2 G2b

45) Draw5PlayAll: Build Y2 Draw5playall

46) SilentTitan: Move G3 Silenttitan Sol

47) Draw5PlayAll: Discover Y1 Sol G3 G3

48) SilentTitan: Sacrifice Y2 G2b
Discover B1 G2b Y3 Sole
Discover R1 Soul Y3 Tic

49) Draw5PlayAll: Build Y2 G3

	SilentTitan: I've done that in the past but I'm not a good speller and I always have to look up how it is spelt
	dlwillson: Now you're both pushing ships aside! What kind of game is this?!
	dlwillson: Investments on the side... :-)
	Felix: Odd game indeed! I've never seen such a tidy row of Y3 stars.
	dlwillson: And 3's aren't in anyone's orbit! Most of the action is in deep space!
	Draw5PlayAll: Odd game. I have never had THIS many spectator comments in 28 hours.
	dlwillson: The Peanut Gallery is very noisy.
	Felix: Man, it's tragic to see a ladder game go the way of the hard time. :(
	SilentTitan: Good game. Sometimes life gets in the way. 
	Draw5PlayAll: It is even worse to have to wait so long only to lose... and my position is doubtful at best.


14093)
Started: 2009.9.1, Ended: 2009.9.5
Participants: MikeYarrum (S), Werebear (N)
Winner: Werebear

1) Werebear: Homeworld R3 G1 B3
	Werebear: Quake in fear, for I have arrived.
You may not even want to dare enter this game!
I shall wait.



14125)
Started: 2009.9.2, Ended: 2009.9.11
Participants: braino (S), Werebear (N)
Winner: Werebear

1) Werebear: Homeworld G3 Y1 B3
	Werebear: Greetings! We come in Peace. (That's the name of our ship, there, you see?). Peace.

2) braino: Homeworld B3 Y2 G3

3) Werebear: Build B1 Werebear
	Werebear: Our peoples seem so like each other. We sure we be fast friends, our peoples likes, much trade and happiness.

4) braino: Build G1 Braino

5) Werebear: Discover B1 Werebear G2 Kabbar
	braino: I have some nuclear waste I would like to dispose of. Mind if I deliver to your homeworld?

6) braino: Discover G1 Braino B1 Dismemberment
	Werebear: Oye? You like-uh the glowing blue stuff, you do? We does! We eats it for breakfasts, our peoples glow happily. Yes, please deliver promised delicious breakfasts to us! We bring gifts to you, as well!

7) Werebear: Build B1 Werebear

8) braino: Build G1 Dismemberment
	Werebear: Oops... one of our lifeboats fell out of our starship! Please avert your gazes, our peoples are embarrassed.

9) Werebear: Build B2 Kabbar
	braino: Bad move #1 ---->South's ship G1 ventured forth from braino and discovered a new B1 star system! It has been named Dismemberment. 

10) braino: Trade G3 B3 Braino

11) Werebear: Trade B3 G3 Werebear
	Werebear: The Kabbar system peoples throws a huge party, builds a new Blue Cruiser for the peaceful Iblesors Peoples.
	Werebear: Why you thinka that moves be bad?
	braino: It was bad because I shortened the blue stack for you.
	Werebear: Ahh, yes, the economy... that will gets peoples sometimes, 'twill.

12) braino: Build G1 Dismemberment
	Werebear: We like the ways you peoples dance. We Iblesors dance counter point?
	braino: this game f***s with my brain. 

13) Werebear: Sacrifice G3 Werebear
Build B2 Kabbar
Build B2 Werebear
Build B3 Werebear
	Werebear: We was just gonna say, you peoples need some green, it calms you peoples all down. Oh. No. Not there!

14) braino: Trade G1 Y1 Dismemberment
	Werebear: You peoples stay calm there. Anythings can happen. And usually does.

15) Werebear: Discover B2 Werebear Y2 Dubbiena
	braino: Abanadon ships! Abandon Ships! 
	braino: I think the best bet is to restart this one. I have blown it. It is only a matter of time before I lose my base. Then you could just pick me away.

16) braino: Trade G1 R1 Dismemberment
	Werebear: You peoples need some rescueing? We send ships, we help you peoples, you see. We come see you very soon. No worry.

17) Werebear: Sacrifice B2 Kabbar
Trade B3 G3 Werebear
Trade B1 R1 Kabbar

18) braino: Discover G1 Dismemberment B3 Statue

19) Werebear: Build G1 Werebear
	Werebear: We peoples scared - why you peoples got gun? Surely no reason to fear nice little Iblesors peoples. We peoples thinkas you peoples must see real scary other bad peoples somewhere behinds you planet. We get ready to help you peoples.

20) braino: Discover R1 Dismemberment G3 Postal
	braino: I am exploring for space fish... Have you seen any out this way?

21) Werebear: Move G1 Werebear Dubbiena
	Werebear: Oooohhh.... Space Fish? Oh, my. My peoples calls those "stilla huta". We send some peoples to come help you look. Theys very good with some saucy sweet. Yummy. Wes be right there, you wait, peoples, please?

22) braino: Build G1 Statue

23) Werebear: Build G2 Werebear
	Werebear: Is lonely in Dubienna. And that yellow star glow so brights. My peoples miss each other. We sends company and snacks.

24) braino: Trade G1 Y1 Statue
	braino: Ship is complete captain...

25) Werebear: Sacrifice G3 Werebear
Build G1 Dubbiena
Build G2 Dubbiena
Build G3 Werebear
	Werebear: Did you find you the space fishes? My peoples wants to see.

26) braino: Build Y2 Statue
	braino: No fishes here...

27) Werebear: Sacrifice B2 Dubbiena
Trade G2 R2 Dubbiena
Trade G3 Y3 Werebear
	Werebear: If you peoples are sure, we peoples believe you. We is sorely tempted to come see for our peoples selves, though.
	Werebear: ***buuurrrpppp***
Oh, my so sorry

28) braino: Build Y3 Statue
	braino: oh fishy fishy fishy, where are you sir fishy?

29) Werebear: Discover G1 Dubbiena Y3 Anzen

30) braino: Trade B3 G3 Braino
	braino: "look at what I found Mom"

31) Werebear: Build G2 Dubbiena
	Werebear: A nice new toy for you! Excellent. Our peoples are most pleased!

32) braino: Discover Y1 Dismemberment B2 Hugs

33) Werebear: Trade Y3 B3 Werebear

34) braino: Trade Y2 B2 Statue
	Werebear: I see you peoples. You peoples be very sneaky wise, you are. You must have eaten of the fishies, we peoples think.

35) Werebear: Trade B2 Y2 Kabbar
	Werebear: We think this big pretty blue be one of our lost peoples. Happy happy, we dance, we peoples party!

36) braino: Move Y3 Statue Kabbar

37) Werebear: Sacrifice G1 Anzen
Build Y3 Kabbar
	Werebear: We peoples appreciate making these peaceful trades with yous peoples. The Ilbesors are pleased that you take such good care of your wessels. We peoples likes the decorations. Fuzzy dices be a nice touch.

38) braino: Move Y3 Kabbar Postal
	Werebear: Finally our peoples meet! What joy! Party party party!

39) Werebear: Move Y3 Kabbar Statue
	Werebear: And you brought us a gift! So Sweet! Our peoples are very happy! Joy Joy! Party Party! Have some punch!

40) braino: Build Y3 Postal
	braino: "Just flying through"
	Werebear: Already our peoples miss yous peoples. 'twas so nice to have met yous.

41) Werebear: Sacrifice R2 Dubbiena
Attack B2S Statue
Attack Y1S Statue

42) braino: Move Y3 Postal Hugs
	Werebear: Fishy, fishy? Any space fishies here for our peoples?

43) Werebear: Trade B2 R2 Statue
	braino: no fishies here, I heard they were that way!
	Werebear: Wait, we find something. Ooohhh... the fishies ARE here... look, look deep into the fishies eyes. You peoples love the fishies, don't you? Now, just you peoples turn those little shippys around for the Ilbesors, like good peoples, you do. Yesss... Nice! Happy joy party!

44) braino: Trade Y3 R3 Hugs

45) Werebear: Build Y3 Kabbar

46) braino: Build G1 Braino

47) Werebear: Discover G1 Dubbiena B1 Bieb

48) braino: Move R3 Hugs Bieb
	Werebear: Thankee!
	braino: grrr....

49) Werebear: Sacrifice Y3 Statue
Move G1 Bieb Braino
Move G2 Dubbiena Bieb
Move G2 Bieb Braino
Catastrophe Braino Green

	braino: OH NOOOOsss!!! The fishies are gone!
	Werebear: And quite tasty, they were. Our peoples thanks yous peoples! yummmmmmmy! *smacks lips*
	Werebear: Thanks for playing! Good Game! Our peoples thanks yous peoples!


14005)
Started: 2009.9.5, Ended: 2010.1.29
Participants: pedrop (S), JimTarnung (W), ZackStack (N), Mandrel (E)
Winner: ZackStack

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Have a good game everyone!

2) Mandrel: Homeworld Y3 B1 G3

3) pedrop: Homeworld B3 Y2 G3

4) JimTarnung: Homeworld Y1 B2 G3
	pedrop: The same to You.

5) ZackStack: Build G1 Zackstack

6) Mandrel: Build G1 Mandrel

7) pedrop: Build G1 Pedrop

8) JimTarnung: Build G1 Jimtarnung

9) ZackStack: Trade G1 Y1 Zackstack

10) Mandrel: Trade G1 R1 Mandrel

11) pedrop: Discover G1 Pedrop B1 Ziemia

12) JimTarnung: Discover G1 Jimtarnung B3 Blub

13) ZackStack: Build G1 Zackstack

14) Mandrel: Build G1 Mandrel

15) pedrop: Build G1 Ziemia

16) JimTarnung: Build G2 Jimtarnung

17) ZackStack: Discover G1 Zackstack B3 Azure

18) Mandrel: Build G2 Mandrel

19) pedrop: Trade G1 Y1 Ziemia

20) JimTarnung: Build G1 Blub

21) ZackStack: Build G2 Zackstack

22) Mandrel: Discover G1 Mandrel B2 Prosperity

23) pedrop: Build G2 Ziemia

24) JimTarnung: Trade G1 Y1 Blub

25) ZackStack: Trade G2 Y2 Zackstack

26) Mandrel: Build G1 Prosperity

27) pedrop: Build G2 Pedrop

28) JimTarnung: Sacrifice G3 Jimtarnung
Build G2 Blub
Build G3 Jimtarnung
Build Y1 Blub

29) ZackStack: Build G3 Azure

30) Mandrel: Trade G2 Y2 Mandrel

31) pedrop: Trade G1 R1 Ziemia

32) JimTarnung: Trade Y1 R1 Blub

33) ZackStack: Sacrifice Y2 Zackstack
Move G3 Azure Jimtarnung
Move G1 Azure Jimtarnung
Catastrophe Jimtarnung Green

34) Mandrel: Build G1 Mandrel
	ZackStack: My apologies Jim... you made this just a little too easy for me.

35) pedrop: Build R1 Ziemia

36) ZackStack: Build G1 Zackstack

37) Mandrel: Build R2 Mandrel

38) pedrop: Discover R1 Ziemia G3 Niebo

39) ZackStack: Build Y1 Zackstack

40) Mandrel: Trade G1 Y1 Prosperity

41) pedrop: Build Y2 Ziemia

42) ZackStack: Discover G1 Zackstack B3 Boo

43) Mandrel: Build Y2 Prosperity

44) pedrop: Trade Y1 B1 Ziemia

45) ZackStack: Build G1 Zackstack

46) Mandrel: Build G2 Prosperity

47) pedrop: Sacrifice G3 Pedrop
Build G2 Ziemia
Build G3 Pedrop
Build Y1 Ziemia

48) ZackStack: Build G3 Boo

49) Mandrel: Trade G2 R2 Prosperity

50) pedrop: Move Y2 Ziemia Niebo

51) ZackStack: Move Y1 Zackstack Boo

52) Mandrel: Move R2 Prosperity Blub

53) pedrop: Move B1 Ziemia Niebo

54) ZackStack: Sacrifice G3 Boo
Build Y2 Zackstack
Build Y3 Boo
Build G2 Boo

55) Mandrel: Build G3 Prosperity

56) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build Y3 Ziemia
Build Y3 Niebo

57) ZackStack: Trade G2 R2 Boo

58) Mandrel: Discover G1 Prosperity B1 Funland

59) pedrop: Discover Y2 Niebo B1 Ogien

60) ZackStack: Move Y3 Boo Funland

61) Mandrel: Build G2 Funland

62) pedrop: Sacrifice G3 Pedrop
Build G3 Pedrop
Build Y3 Ogien
Build R2 Niebo

63) ZackStack: Sacrifice R2 Boo
Attack G2E Funland
Attack G1E Funland

64) Mandrel: Move Y2 Prosperity Funland

65) pedrop: Move R1 Niebo Ogien

66) ZackStack: Sacrifice Y2 Zackstack
Move G2 Funland Pedrop
Move G1 Funland Pedrop
Catastrophe Pedrop Green

67) Mandrel: Build Y2 Prosperity
	ZackStack: ... and then there were two... I think you have the edge Mandrel.  But I'll go down swinging :-)

68) ZackStack: Discover Y3 Funland G2 Rowan
	pedrop: Hehe... nice one:) But I think it should be a little harder for You to destroy my... but, of course its my fault...;) Let the best win now! :)
	ZackStack: Hey pedrop!  Thanks for taking your demise so well :-)  Shoot me a one on one challenge if you up for some revenge! :-)
	pedrop: I probably will, but now I have to many games and to much work:) Take care.
	Mandrel: I'm not so sure, still not entirely sure what I'm doing, not sure how I've managed to last this long!

69) Mandrel: Move Y1 Prosperity Blub
	ZackStack: Since I ended up whacking the other two... perhaps it was because I wasn't focusing on you... now I am <cue evil laughter> :-p

70) ZackStack: Build Y2 Rowan
	Mandrel: I feel the fear now, I can no longer hide in the shadows, it's maddening!

71) Mandrel: Trade Y1 G1 Blub

72) ZackStack: Move Y2 Rowan Mandrel

73) Mandrel: Move Y2 Mandrel Rowan

74) ZackStack: Sacrifice G1 Boo
Build Y1 Mandrel
	ZackStack: Don't mind me... just visiting :-)
	Mandrel: Phew! I was worried for a minute thhat you had ill intentions in your heart.

75) Mandrel: Trade R2 G2 Blub

76) ZackStack: Move Y3 Rowan Mandrel
Catastrophe Mandrel Yellow
Catastrophe Blub Green
	ZackStack: Not at all... though I did invite the kid along :-p

77) Mandrel: Build G1 Prosperity
	Mandrel: As long as it's all in good will, welcome!
	ZackStack: Do you want to undo that last move?  I'm pretty sure I can cause a catastrophe in blub even though I don't have prescense there...
	ZackStack: Got your geekmail!  Here we go...

78) ZackStack: Move G1 Zackstack Boo
	ZackStack: Its not too often I get to type catastrophe twice on my turn! :-)
	Mandrel: Oh dear. Things appear to have taken a slight turn for the worse.

79) Mandrel: Discover G3 Prosperity Y3 Fear
	ZackStack: You still have a major ship advantage.  That should help.

80) ZackStack: Build G1 Zackstack

81) Mandrel: Build G1 Fear

82) ZackStack: Move G1 Zackstack Fear

83) Mandrel: Sacrifice Y2 Funland
Move G1 Fear Zackstack
Move G3 Fear Zackstack

84) ZackStack: Attack G3E Zackstack

85) Mandrel: Sacrifice G3 Mandrel
Build G2 Zackstack
Build Y1 Rowan
Build Y2 Prosperity
Catastrophe Zackstack Green
	ZackStack: Ooo.... That's not good...

86) ZackStack: Sacrifice G1 Boo
Build Y2 Zackstack

87) Mandrel: Discover Y2 Rowan G3 Winter
	Mandrel: vengeance!

88) ZackStack: Trade Y2 G2 Zackstack
	ZackStack: Yup.  Looking pretty ugly over here!

89) Mandrel: Build Y2 Winter

90) ZackStack: Build G1 Zackstack

91) Mandrel: Build Y3 Rowan

92) ZackStack: Trade Y1 G1 Boo
	ZackStack: Merry Christmas!
	Mandrel: You too (belatedly!)


93) Mandrel: Build G2 Prosperity

94) ZackStack: Build G3 Boo

95) Mandrel: Sacrifice Y2 Prosperity
Move Y3 Rowan Blub
Move Y3 Blub Zackstack

96) ZackStack: Sacrifice G3 Boo
Build Y1 Zackstack
Build Y2 Zackstack
Build G3 Boo
Catastrophe Zackstack Yellow

97) Mandrel: Sacrifice Y2 Winter
Move G1 Prosperity Winter
Move G1 Winter Zackstack

98) ZackStack: Trade G1 Y1 Zackstack
	ZackStack: I dont think I've ever created a catastrophe at my own homeworld before :-)
	Mandrel: It has become a game of unusual catastrophes!

99) Mandrel: Move Y2 Winter Zackstack

100) ZackStack: Attack Y2E Zackstack

101) Mandrel: Build G1 Zackstack

102) ZackStack: Trade G2 R2 Zackstack
	ZackStack: Why... thank you :-)
	Mandrel: That wasn't very bright of me!

103) Mandrel: Build G2 Mandrel
	ZackStack: You are persistent though...

104) ZackStack: Trade G3 Y3 Boo

105) Mandrel: Build G3 Prosperity

106) ZackStack: Move Y3 Boo Mandrel

107) Mandrel: Trade G3 B3 Prosperity

108) ZackStack: Attack G1E Zackstack
	ZackStack: I am now humming the Darth Vader theme ;-)
	Mandrel: Oh dear, I feel just like alderon.

109) Mandrel: Build G3 Zackstack
	ZackStack: Nice move with that trade!

110) ZackStack: Sacrifice R2 Zackstack
Attack R2E Mandrel
Attack R1E Mandrel

111) Mandrel: Move Y1 Rowan Mandrel

112) ZackStack: Sacrifice R2 Mandrel
Attack G2E Mandrel
Attack G1E Mandrel
	ZackStack: I sure hope I didn't miss an R3 lurking out there somewhere...

113) Mandrel: Build G2 Zackstack
Catastrophe Zackstack Green
	Mandrel: Oh dear, its all looking rather grim.
	ZackStack: Bought yourself another turn huh? :-)

114) ZackStack: Attack Y1E Mandrel

	Mandrel: I was lookin 4 the most dramatic final move I could muster, thats the best I could manage. Good game!
	ZackStack: Well done.  A catastrophe is always fun to go out on!  Thanks for the game!


14166)
Started: 2009.9.9, Ended: 2009.12.11
Participants: face (S), MrStickman (N)
Winner: face

1) MrStickman: Homeworld Y2 B3 G3

2) face: Homeworld R3 B1 G3
	MrStickman: I can't promise a better performance than last time, unfortunately....

3) MrStickman: Build G1 Mrstickman

4) face: Build G1 Face

5) MrStickman: Trade G1 R1 Mrstickman

6) face: Trade G3 Y3 Face

7) MrStickman: Build R1 Mrstickman

8) face: Build Y1 Face

9) MrStickman: Build R1 Mrstickman

10) face: Build G1 Face
	MrStickman: Sorry for the delay; I was temporarily homeless.
	face: oh noes! is there a story worth telling?

11) MrStickman: Discover R1 Mrstickman G1 Lorem

12) face: Build G2 Face
	MrStickman: Not really; Candle brought a case of Ebola back from Burning Man and warned me not to be around.

13) MrStickman: Build R2 Lorem

14) face: Trade G2 R2 Face

15) MrStickman: Build G2 Mrstickman
	MrStickman: So I injured my arm (no typing), then left town (no internet), then caught Martian Death Plague (no brain). Not the best month for using this site.

16) face: Build G2 Face
	face: you injured your arm? what'd you do, get hit by a car?

17) MrStickman: Discover R1 Mrstickman Y1 Ipsum
	MrStickman: Bicep strain, acquired through working at a job that I have.

18) face: Discover Y1 Face B2 Waste

19) MrStickman: Discover R1 Ipsum G3 Dolor

20) face: Discover R2 Face Y2 Plaster

21) MrStickman: Build R2 Dolor

22) face: Move G2 Face Plaster

23) MrStickman: Build R3 Mrstickman

24) face: Build R3 Plaster

25) MrStickman: Discover G2 Mrstickman B1 Sit

26) face: Move G1 Face Waste

27) MrStickman: Trade R1 Y1 Mrstickman

28) face: Discover R2 Plaster Y1 Blitz

29) MrStickman: Build R1 Mrstickman

30) face: Build Y2 Face

31) MrStickman: Move Y1 Mrstickman Lorem

32) face: Build Y3 Waste
	MrStickman: You're in town in like two days for Reversi, right?
	face: ha. ha. ha.

33) MrStickman: Build Y3 Lorem

34) face: Move R3 Plaster Sit

35) MrStickman: Sacrifice G2 Sit
Build G2 Mrstickman
Pass

36) face: Trade Y2 B2 Face

37) MrStickman: Discover Y1 Lorem G2 Amet

38) face: Build G3 Plaster

39) MrStickman: Build Y2 Amet

40) face: Move B2 Face Plaster

41) MrStickman: Move Y1 Amet Dolor

42) face: Build B1 Plaster

43) MrStickman: Trade R3 B3 Mrstickman

44) face: Sacrifice G2 Plaster
Build G2 Plaster
Build R3 Blitz

45) MrStickman: Move B3 Mrstickman Lorem

46) face: Move B1 Plaster Blitz

47) MrStickman: Build B2 Lorem

48) face: Build B3 Plaster

49) MrStickman: Move B3 Lorem Amet
	face: lol @ global reserve stash.

50) face: Move G1 Waste Blitz

51) MrStickman: Move R1 Lorem Amet

52) face: Sacrifice Y3 Waste
Move G1 Blitz Mrstickman
Move G2 Plaster Blitz
Move G2 Blitz Mrstickman
Catastrophe Mrstickman Green

53) MrStickman: Move Y3 Lorem Mrstickman

54) face: Build Y3 Face

55) MrStickman: Sacrifice Y3 Mrstickman
Move Y1 Dolor Amet
Move Y2 Amet Face
Move Y1 Amet Face
Catastrophe Face Y

56) face: Move R3 Blitz Mrstickman

	MrStickman: Double monkey fuck damn christpunching son of a bitch.

I mean, good game! Wanna start a new game (of something else?)
	face: worth noting that i took the time to set up the board with real pieces about three moves back and was actually hoping you would do exactly what you did.


14188)
Started: 2009.9.10, Ended: 2009.10.21
Participants: Uglyfoot (S), Werebear (N)
Winner: Werebear

1) Werebear: Homeworld G3 Y1 B3

2) Uglyfoot: Homeworld Y3 B2 G3
	Werebear: Greetings! Thanks for accepting my challenge. I see that you do not always open Banker, so I will not, either. If you'd like to, that's cool, but that's of course up to you. Game on, Cap'n Uglyfoot!

3) Werebear: Build B1 Werebear
	Uglyfoot: greetings.  open banker?

4) Uglyfoot: Build G1 Uglyfoot

5) Werebear: Discover B1 Werebear R2 Juang

6) Uglyfoot: Discover G1 Uglyfoot R1 Basestar

7) Werebear: Trade B1 G1 Juang

8) Uglyfoot: Build G1 Uglyfoot

9) Werebear: Build G2 Juang

10) Uglyfoot: Build G2 Basestar
	Werebear: Oy, the joys of a red system... argh.

11) Werebear: Sacrifice G1 Juang
Build B1 Werebear

12) Uglyfoot: Trade G1 B1 Uglyfoot

13) Werebear: Trade B1 Y1 Werebear

14) Uglyfoot: Move B1 Uglyfoot Basestar

15) Werebear: Move Y1 Werebear Juang

16) Uglyfoot: Trade G2 Y2 Basestar

17) Werebear: Build B1 Werebear

18) Uglyfoot: Build G1 Uglyfoot

19) Werebear: Move B1 Werebear Juang

20) Uglyfoot: Trade G1 R1 Uglyfoot

21) Werebear: Build G1 Juang

22) Uglyfoot: Discover B1 Basestar G2 Forward

23) Werebear: Build B1 Werebear

24) Uglyfoot: Build B2 Forward

25) Werebear: Trade B3 R3 Werebear

26) Uglyfoot: Trade B2 R2 Forward

27) Werebear: Build B2 Werebear

28) Uglyfoot: Build G1 Uglyfoot

29) Werebear: Sacrifice G2 Juang
Build B2 Werebear
Build B3 Juang

30) Uglyfoot: Sacrifice G3 Uglyfoot
Build B3 Forward
Build G2 Basestar
Build G2 Uglyfoot

31) Werebear: Build G3 Juang
	Werebear: Oops... sorry! Silly me...

32) Uglyfoot: Sacrifice Y2 Basestar
Move B1 Forward Werebear
Move G1 Basestar Forward
Catastrophe Werebear B

33) Werebear: Build G3 Juang

34) Uglyfoot: Build R1 Forward
	Werebear: Touche'...

35) Werebear: Move B3 Juang Werebear

36) Uglyfoot: Trade R2 Y2 Forward

37) Werebear: Discover G3 Juang Y1 Pisang

38) Uglyfoot: Sacrifice Y2 Forward
Move B3 Forward Pisang
Move B3 Pisang Uglyfoot

39) Werebear: Sacrifice G3 Juang
Build G3 Juang
Build R2 Werebear
Build Y2 Juang

40) Uglyfoot: Trade G2 Y2 Uglyfoot

41) Werebear: Discover Y2 Juang B1 Bidla

42) Uglyfoot: Build R2 Uglyfoot

43) Werebear: Discover R2 Werebear Y2 Matahari

44) Uglyfoot: Move Y2 Uglyfoot Basestar

45) Werebear: Sacrifice G3 Juang
Build Y3 Bidla
Build Y3 Juang
Build R3 Matahari

46) Uglyfoot: Build R3 Forward

47) Werebear: Build B1 Juang

48) Uglyfoot: Discover G2 Basestar B3 Outback

49) Werebear: Move B1 Juang Pisang

50) Uglyfoot: Build G2 Outback

51) Werebear:
Build G3 Juang

52) Uglyfoot: Move Y2 Basestar Forward

53) Werebear: Sacrifice G3 Juang
Build G3 Juang
Build B2 Juang
Build B2 Pisang

54) Uglyfoot: Move R1 Forward Werebear

55) Werebear: Discover B1 Juang R1 Pedang

56) Uglyfoot: Move R1 Uglyfoot Pisang

57) Werebear: Sacrifice Y3 Juang
Move R3 Matahari Bidla
Move B1 Pedang Uglyfoot
Move B1 Pisang Uglyfoot
Catastrophe Uglyfoot Blue

58) Uglyfoot: Build Y3 Forward

59) Werebear: Sacrifice Y2 Bidla
Move R3 Bidla Uglyfoot
Move G3 Pisang Uglyfoot

60) Uglyfoot: Sacrifice Y3 Forward
Move R3 Forward Werebear
Move R1 Pisang Forward
Move R1 Forward Werebear
Catastrophe Werebear R

61) Werebear: Sacrifice R2 Matahari
Attack R2S Uglyfoot
Attack G1S Uglyfoot

	Werebear: Thank you very much for playing!


14194)
Started: 2009.9.14, Ended: 2011.5.21
Participants: braino (S), Werebear (N)
Winner: Werebear

1) Werebear: Homeworld G1 Y3 B3
	Werebear: Oy, we meet again! Greetings, old friend!

2) braino: Homeworld B3 Y1 G3

3) Werebear: Build B1 Werebear
	braino: "No, No, No"


4) braino: Build G1 Braino
	Werebear: "Yes, Yes, Yes!"

5) Werebear: Discover B1 Werebear Y2 Gobon
	braino: "Oh, No!"

6) braino: Discover G1 Braino Y2 Quinn
	Werebear: *tap tap tap*
*tap tapity tap tap    tap*
"Attention! We come in Peace!
(That's the name of our little ship. Ain't she pretty?)

7) Werebear: Trade B1 G1 Gobon
	braino: "Know thy neighbor..."

8) braino: Build G2 Braino
	Werebear: You know the old saw about "Imitation is the best flattery", right?

9) Werebear: Build B1 Werebear
	braino: "Know... of course we know. We know everything!"

10) braino: Discover G2 Braino Y2 Cribbs

11) Werebear: Build G2 Gobon
	braino: "No Justice, No Peace!"

12) braino: Build G2 Braino
	Werebear: "Know Justice. Know Peace."
Preach it, brother...

13) Werebear: Sacrifice B1 Werebear
Trade G1 B1 Gobon
	braino: "Fools!"

14) braino: Sacrifice G3 Braino
Build G1 Cribbs
Build G3 Quinn
Build G3 Braino

15) Werebear: Build G3 Gobon
	braino: "What do you have in your sleeve?"

16) braino: Trade G3 Y3 Braino
	Werebear: "There is nothing up my sleeve! Nothing!"

17) Werebear: Discover G2 Gobon Y3 Stilla
	braino: I think I see something, let me get a closer look...

18) braino: Sacrifice G3 Quinn
Build G3 Quinn
Build G3 Braino
Build Y1 Braino
	braino: "..oops!"

19) Werebear: Build B1 Gobon
	Werebear: Nice save

20) braino: Sacrifice Y3 Braino
Move G1 Cribbs Werebear
Move G2 Cribbs Werebear
Move G1 Quinn Werebear
Catastrophe Werebear G

21) Werebear: Move B1 Gobon Stilla

22) braino: Trade G2 R2 Braino

23) Werebear: Trade B1 R1 Gobon
	braino: "why is it so quiet in here..."

24) braino: Build Y1 Braino

25) Werebear: Build G1 Gobon

26) braino: Discover Y1 Braino B2 Jackson

27) Werebear: Discover G1 Gobon Y3 Gwardja
	Werebear: "huh? Hrmbph... eh? You talking to me?"

28) braino: Build R1 Braino

29) Werebear: Trade G2 Y2 Stilla

30) braino: Move G3 Quinn Stilla

31) Werebear: Discover Y2 Stilla G2 Andar
	Werebear: I is back.

32) braino: Sacrifice R1 Braino
Attack B1 Stilla
	braino: I was hoping that you weren't dead...

33) Werebear: Build Y2 Andar

34) braino: Build R1 Braino

35) Werebear: Discover Y2 Andar R3 Strajk
	braino: Nice move. I like it.

Made me think....

36) braino: Trade B1 R1 Stilla

37) Werebear: Sacrifice G1 Gwardja
Build Y3 Strajk

38) braino: Discover Y1 Braino G2 Anderson

39) Werebear: Build R2 Gobon

40) braino: Move R1 Braino Jackson

41) Werebear: Move R2 Gobon Werebear

42) braino: Sacrifice G3 Stilla
Build R2 Braino
Build R3 Stilla
Build R3 Jackson

43) Werebear: Build G1 Gobon

44) braino: Trade R3 G3 Jackson

45) Werebear: Build R3 Gobon

46) braino: Move R1 Stilla Anderson

47) Werebear: Move G3 Gobon Werebear

48) braino: Move R3 Stilla Andar

49) Werebear: Sacrifice Y2 Andar
Discover Y2 Strajk G1 Anggur
Discover G1 Gobon Y3 Bersinar
	braino: Sorry 'bout that
	braino: more r3 Stilla Andar

50) braino: Build Y2 Jackson
	Werebear: Welcome back.... Some party, eh?

51) Werebear: Sacrifice G1 Bersinar
Build Y3 Strajk

52) braino: Sacrifice Y2 Jackson
Move Y1 Jackson Strajk
Move Y1 Anderson Strajk
Catastrophe Strajk Y

53) Werebear: Build R3 Werebear

54) braino: Trade R2 Y2 Braino

55) Werebear: Build B1 Werebear

56) braino: Move Y2 Braino Jackson

57) Werebear: Build G1 Werebear

58) braino: Build Y1 Jackson

59) Werebear: Move R3 Werebear Anggur

60) braino: Move Y1 Jackson Braino

61) Werebear: Trade B3 Y3 Werebear

62) braino: Sacrifice G3 Jackson
Build Y1 Jackson
Build Y3 Jackson
Build R2 Jackson

63) Werebear: Move Y2 Anggur Jackson
Catastrophe Jackson Yellow

64) braino: Build Y1 Braino

65) Werebear: Move Y3 Werebear Anderson
	braino: damn. I can't undo twice!

66) braino: Move Y1 Braino Andar
	Werebear: Whew... much neater now.

67) Werebear: Build Y2 Anderson

68) braino: Build Y2 Andar
	Werebear: Been meaning to visit. Look, I brought coffee-cake!

69) Werebear: Move Y2 Anderson Anggur



14016)
Variants: "Unrated, Sinister, Hard time"
Started: 2009.9.19, Ended: 2009.11.7
Participants: JimTarnung (S), koikaze (N), agentofchaos (E)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3

2) JimTarnung: Homeworld B3 Y1 G3

3) agentofchaos: Build G1 Agentofchaos
	agentofchaos: Enjoy the game! I suppose that other guy didn't want a 3-player game...but then why did he sign up in the first place?? I can't figure out some players...

4) JimTarnung: Build G1 Jimtarnung
	JimTarnung: I hope you'll enjoy it too. I'm a bloody Beginner so don't expect a lot..
	agentofchaos: It's all a learning experience, have fun along the way :-)

5) agentofchaos: Build G1 Agentofchaos

6) JimTarnung: Build G1 Jimtarnung

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) JimTarnung: Discover G1 Jimtarnung B2 Blu

9) agentofchaos: Discover G1 Agentofchaos Y3 Dagon7

10) JimTarnung: Trade G1 R1 Jimtarnung

11) agentofchaos: Trade Y1 R1 Agentofchaos

12) JimTarnung: Build G1 Blu

13) agentofchaos: Build R1 Agentofchaos

14) JimTarnung: Trade G1 Y1 Blu

15) agentofchaos: Trade R1 Y1 Agentofchaos

16) JimTarnung: Build G1 Blu

17) agentofchaos: Move R1 Agentofchaos Dagon7

18) JimTarnung: Trade G1 R1 Blu

19) agentofchaos: Build G1 Agentofchaos

20) JimTarnung: Discover Y1 Blu G3 Gren

21) agentofchaos: Build G1 Agentofchaos

22) JimTarnung: Build G2 Blu

23) agentofchaos: Build G2 Dagon7

24) JimTarnung: Trade G2 Y2 Blu

25) agentofchaos: Trade G1 B1 Agentofchaos

26) JimTarnung: Build Y1 Blu

27) agentofchaos: Build Y2 Agentofchaos

28) JimTarnung: Build Y2 Gren

29) agentofchaos: Discover Y2 Agentofchaos B3 Trigger

30) JimTarnung: Trade Y1 B1 Blu

31) agentofchaos: Move B1 Agentofchaos Dagon7

32) JimTarnung: Move B1 Blu Gren

33) agentofchaos: Discover B1 Dagon7 Y2 Kakron4

34) JimTarnung: Discover Y2 Blu R3 Re

35) agentofchaos: Sacrifice G1 Dagon7
Build B1 Kakron4



14116)
Started: 2009.10.9, Ended: 2009.11.4
Participants: ExKirby (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	TwoShort: howdy

2) ExKirby: Homeworld Y3 G1 B3
	ExKirby: Hey, how do you make a homeworld? I'm new to this, so...

3) TwoShort: Build G1 Twoshort
	ExKirby: NM, sorted.

4) ExKirby: Build B1 Exkirby
	TwoShort: Out of curiosity, have you played Homeworlds before? (off-line)
	ExKirby: No, this would be my first game.

5) TwoShort: Build G1 Twoshort

6) ExKirby: Trade B1 Y1 Exkirby

7) TwoShort: Trade G1 Y1 Twoshort
	TwoShort: In that case, I'll throw out a few strategy tips... As second player, you usually want a star of the size I didn't use so we're three hops from each other; this way we're two.  Also, most people think the 1-2 homeworld is best; I took the 1-3 homeworld partly to be nice :)
  Also, you usually want to start with a green ship.
	ExKirby: OK... do you know how to make a new system?

8) ExKirby: Discover Y1 Exkirby G2 Newstarname
	TwoShort: You could, for example, move your y1 to a new g2 with:
discover y1 ExKirby g2 NewStarName

9) TwoShort: Discover Y1 Twoshort B2 Bluestar
	ExKirby: Thanks.

10) ExKirby: Build B1 Exkirby

11) TwoShort: Build G1 Twoshort

12) ExKirby: Move B1 Exkirby Bluestar

13) TwoShort: Trade G1 Y1 Twoshort



14163)
Started: 2009.10.13, Ended: 2009.11.2
Participants: nycavri (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Hi Avri!  Have a good game!

2) nycavri: Homeworld B3 Y2 G3
	nycavri: You too.  I'm extraordinarily ordinary at this game . . .

3) ZackStack: Build G1 Zackstack

4) nycavri: Build G1 Nycavri

5) ZackStack: Trade G1 Y1 Zackstack

6) nycavri: Build G1 Nycavri

7) ZackStack: Discover Y1 Zackstack G3 Blob

8) nycavri: Trade G1 Y1 Nycavri

9) ZackStack: Build G1 Zackstack

10) nycavri: Trade G1 R1 Nycavri
	ZackStack: At this point in live games I start cackling maniacly to unnerve my opponent :-)
	nycavri: Consider your opponent unnerved . . .

11) ZackStack: Build G1 Zackstack

12) nycavri: Discover Y1 Nycavri B1 Deacon

13) ZackStack: Trade G1 Y1 Zackstack

14) nycavri: Build G1 Nycavri

15) ZackStack: Sacrifice G3 Zackstack
Build Y2 Blob
Build Y2 Zackstack
Build Y3 Zackstack

16) nycavri: Sacrifice G1 Nycavri
Build Y3 Deacon

17) ZackStack: Sacrifice Y2 Zackstack
Move Y1 Blob Deacon
Move Y2 Blob Deacon
Catastrophe Deacon Yellow

18) nycavri: Trade R1 Y1 Nycavri

19) ZackStack: Build G1 Zackstack

20) nycavri: Discover Y1 Nycavri B1 May

21) ZackStack: Discover G1 Zackstack B3 June

22) nycavri: Discover Y1 May B3 Mercury
	nycavri: Funny man . . .

23) ZackStack: Trade Y1 R1 Zackstack

24) nycavri: Build G1 Nycavri

25) ZackStack: Build G2 June

26) nycavri: Discover G1 Nycavri Y1 Taylor

27) ZackStack: Trade G2 Y2 June

28) nycavri: Build G2 Nycavri

29) ZackStack: Sacrifice Y2 June
Move G1 June Taylor
Move G1 Taylor Nycavri
	ZackStack: Either you lured me in with the "extrodinarily ordinary" comment and I'm in trouble... or you missed this...

30) nycavri: Trade G2 R2 Nycavri

31) ZackStack: Build G2 Nycavri
	nycavri: I saw that, but didn't I also have the counter (this move) set up . . . ?

32) nycavri: Trade G3 Y3 Nycavri
	ZackStack: Very true.  I think I thought I had more greens clustered around my Homeworld :-)

33) ZackStack: Sacrifice R1 Zackstack
Attack R2 Nycavri

34) nycavri: Move G1 Taylor Mercury

35) ZackStack: Trade Y3 B3 Zackstack

36) nycavri: Build G2 Mercury
	ZackStack: Remember that maniacal laughing from earlier? :-)  You'll have to school me in pikemen when we're done with this.  Some practice as the tournament begins wouldn't hurt!

37) ZackStack: Sacrifice B3 Zackstack
Trade G1 Y1 Nycavri
Trade G2 Y2 Nycavri
Trade R2 Y2 Nycavri
Catastrophe Nycavri Yellow
	ZackStack: Thanks for the game!  That's one of the emptier end game boards I've seen...



14412)
Started: 2009.10.21, Ended: 2010.1.23
Participants: face (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld B2 Y1 G3

2) face: Homeworld R3 B2 G3

3) Mandrel: Build G1 Mandrel

4) face: Build G1 Face

5) Mandrel: Trade G1 Y1 Mandrel

6) face: Trade G3 Y3 Face

7) Mandrel: Build G1 Mandrel

8) face: Build G1 Face

9) Mandrel: Discover G1 Mandrel Y3 Awesome

10) face: Build G2 Face

11) Mandrel: Build G2 Mandrel

12) face: Trade G1 R1 Face

13) Mandrel: Trade G2 R2 Mandrel

14) face: Discover G2 Face B1 Tank

15) Mandrel: Build G1 Awesome

16) face: Build G2 Face

17) Mandrel: Build G2 Mandrel

18) face: Build G3 Tank

19) Mandrel: Trade G2 Y2 Mandrel

20) face: Trade G3 Y3 Tank

21) Mandrel: Move Y1 Mandrel Awesome

22) face: Move R1 Face Tank

23) Mandrel: Discover G1 Awesome B1 Honour

24) face: Build Y1 Tank

25) Mandrel: Move G1 Awesome Honour

26) face: Discover G2 Face R1 Blitz

27) Mandrel: Build G2 Mandrel

28) face: Build G3 Blitz

29) Mandrel: Trade G2 B2 Mandrel

30) face: Discover Y1 Tank G3 Plaster

31) Mandrel: Move Y2 Mandrel Plaster

32) face: Build Y2 Tank

33) Mandrel: Move Y1 Awesome Tank

34) face: Discover Y3 Tank R3 Smash

35) Mandrel: Build Y2 Plaster

36) face: Attack Y1 Tank

37) Mandrel: Build G2 Mandrel

38) face: Sacrifice G3 Blitz
Build G3 Blitz
Build Y3 Smash
Build R1 Tank

39) Mandrel: Move G2 Mandrel Plaster

40) face: Discover Y1 Tank R3 Waste

41) Mandrel: Move G2 Plaster Blitz

42) face: Sacrifice G2 Blitz
Build G2 Tank
Pass

43) Mandrel: Build R2 Mandrel

44) face: Attack G2 Blitz

45) Mandrel: Move R2 Mandrel Waste

46) face: Move Y1 Plaster Mandrel

47) Mandrel: Move Y2 Plaster Honour

48) face: Move Y1 Waste Mandrel

49) Mandrel: Build R2 Mandrel

50) face: Move Y3 Smash Mandrel
Catastrophe Mandrel Yellow

51) Mandrel: Trade G3 Y3 Mandrel

52) face: Move Y3 Smash Blitz

53) Mandrel: Build Y1 Honour

54) face: Discover R1 Tank B3 Intoxicate

55) Mandrel: Build Y1 Plaster

56) face: Sacrifice G3 Blitz
Build G3 Blitz
Build R3 Intoxicate
Build Y1 Tank

57) Mandrel: Sacrifice Y2 Plaster
Move Y1 Honour Face
Move Y2 Honour Face

58) face: Trade Y3 B3 Face

59) Mandrel: Sacrifice B2 Mandrel
Trade Y2 B2 Face
Trade Y1 B1 Face
Catastrophe Face Blue

60) face: Move Y3 Blitz Face

61) Mandrel: Sacrifice Y1 Plaster
Move G1 Honour Mandrel
	face: haha i'm an idiot... that was a very nice move.

62) face: Build Y1 Face

63) Mandrel: Move R2 Mandrel Face
	Mandrel: Kinda came from nowhere, spot of luck!

64) face: Attack R2 Face

65) Mandrel: Sacrifice Y3 Mandrel
Move R2 Mandrel Face
Move R2 Waste Mandrel
Move R2 Mandrel Face
Catastrophe Face Red
	face: wow i royally screwed that one up... i have been sorely outplayed. good game.

	Mandrel: Not sure how that happened really, think I just had a run of luck at the end there, good game!


14123)
Started: 2009.10.22, Ended: 2009.12.13
Participants: face (S), MikeYarrum (N)
Winner: face



14352)
Started: 2009.10.22, Ended: 2009.11.14
Participants: TwoShort (S), face (N)
Winner: TwoShort

1) face: Homeworld R3 B2 G3

2) TwoShort: Homeworld R1 B3 G3

3) face: Build G1 Face

4) TwoShort: Build G1 Twoshort

5) face: Trade G3 Y3 Face

6) TwoShort: Trade G1 Y1 Twoshort

7) face: Build Y1 Face

8) TwoShort: Build G1 Twoshort

9) face: Trade Y1 R1 Face

10) TwoShort: Build Y1 Twoshort

11) face: Discover R1 Face Y1 Plaster

12) TwoShort: Build Y2 Twoshort

13) face: Build Y2 Face

14) TwoShort: Discover Y1 Twoshort G2 Grogar

15) face: Move Y2 Face Plaster

16) TwoShort: Build G1 Twoshort

17) face: Build G2 Face

18) TwoShort: Discover G1 Twoshort B2 Bonanza

19) face: Move G2 Face Plaster

20) TwoShort: Trade Y2 R2 Twoshort

21) face: Build Y2 Face

22) TwoShort: Build Y2 Grogar

23) face: Discover Y2 Face B1 Trash

24) TwoShort: Sacrifice G3 Twoshort
Build G2 Bonanza
Build G3 Twoshort
Build Y3 Twoshort

25) face: Build Y3 Face

26) TwoShort: Sacrifice G3 Twoshort
Build G3 Bonanza
Build G3 Twoshort
Build G3 Twoshort

27) face: Sacrifice Y2 Trash
Move G2 Plaster Grogar
Move G2 Grogar Twoshort
Catastrophe Twoshort Green

28) TwoShort: Sacrifice Y2 Grogar
Move G3 Bonanza Plaster
Move G1 Bonanza Twoshort

29) face: Sacrifice Y2 Plaster
Discover R1 Plaster G2 Buzz
Discover Y3 Face R1 Tank

30) TwoShort: Discover Y1 Grogar G3 Gonzo

31) face: Build Y2 Face

32) TwoShort: Build G1 Plaster

33) face: Build R2 Buzz

34) TwoShort: Discover R2 Twoshort Y2 Yolonda

35) face: Build R2 Buzz

36) TwoShort: Sacrifice G3 Plaster
Build G2 Twoshort
Build G3 Bonanza
Build G3 Plaster

37) face: Move Y3 Tank Yolonda

38) TwoShort: Move R2 Yolonda Plaster

39) face: Sacrifice Y3 Yolonda
Move R2 Buzz Twoshort
Move R2 Buzz Twoshort
Move R1 Buzz Twoshort
Catastrophe Twoshort Red

40) TwoShort: Trade G3 R3 Bonanza
	face: my gut tells me that move puts me in too weak a position, but let's see.

41) face: Trade Y2 B2 Face
	TwoShort: I agree with your gut :)  But I don't think you had a better option.

42) TwoShort: Sacrifice Y3 Twoshort
Move R3 Bonanza Plaster
Move R3 Plaster Face
Move G3 Plaster Face

43) face: Build G2 Face
	face: very nice.

44) TwoShort: Sacrifice R3 Face
Attack Y3 Face
Attack G2 Face
Attack B2 Face

45) face: Build G3 Face

46) TwoShort: Pass
Catastrophe Face Green
	TwoShort: Thanks for the game!
	face: going out on my terms!
	face: ha. was going to cause a green catastrophe in face, but it says "You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn."

	TwoShort: Don't worry, I'll help you out :)


14386)
Started: 2009.10.22, Ended: 2009.11.11
Participants: ZackStack (S), face (N)
Winner: ZackStack

1) face: Homeworld R3 B2 G3

2) ZackStack: Homeworld B1 R2 G3
	ZackStack: Hey Face!  Thanks for the game.  Have a good one!

3) face: Build G1 Face

4) ZackStack: Build G1 Zackstack

5) face: Trade G3 Y3 Face

6) ZackStack: Trade G1 Y1 Zackstack

7) face: Build Y1 Face

8) ZackStack: Build G1 Zackstack

9) face: Build G1 Face

10) ZackStack: Discover G1 Zackstack B3 Crush

11) face: Build G2 Face

12) ZackStack: Build G2 Zackstack

13) face: Trade G1 R1 Face

14) ZackStack: Build Y1 Zackstack

15) face: Discover Y1 Face G1 Trash

16) ZackStack: Sacrifice G3 Zackstack
Build G2 Zackstack
Build G3 Zackstack
Build G3 Crush

17) face: Build G3 Face

18) ZackStack: Trade G2 R2 Zackstack

19) face: Move G3 Face Trash

20) ZackStack: Move R2 Zackstack Crush

21) face: Move R1 Face Trash

22) ZackStack: Sacrifice G3 Zackstack
Build G2 Crush
Build G3 Zackstack
Build Y2 Zackstack

23) face: Trade G2 B2 Face

24) ZackStack: Trade G2 Y2 Crush

25) face: Discover G3 Trash Y3 Plaster

26) ZackStack: Discover G3 Crush B1 Stomp

27) face: Discover Y1 Trash R3 Buzz

28) ZackStack: Move Y2 Zackstack Buzz

29) face: Discover Y1 Buzz B2 Waste

30) ZackStack: Sacrifice G3 Zackstack
Build G2 Stomp
Build G2 Crush
Build G3 Zackstack

31) face: Move G3 Plaster Waste

32) ZackStack: Move R2 Crush Trash

33) face: Trade B2 R2 Face

34) ZackStack: Attack R1 Trash

35) face: Discover R2 Face R1 Plaster

36) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build Y2 Crush
Build Y3 Buzz

37) face: Build Y3 Waste

38) ZackStack: Move Y3 Buzz Plaster

39) face: Sacrifice Y1 Waste
Move R2 Plaster Waste

40) ZackStack: Move G1 Crush Plaster

41) face: Build Y1 Face

42) ZackStack: Move Y2 Crush Trash

43) face: Discover Y1 Face R1 Tank

44) ZackStack: Trade G3 R3 Stomp

45) face: Build G3 Waste

46) ZackStack: Sacrifice Y3 Plaster
Move R3 Stomp Face
Move R2 Trash Face
Move R1 Trash Face
Catastrophe Face Red
	ZackStack: You just had to make me do this the hard way didn't you? :-)

47) face: Sacrifice G3 Waste
Build G3 Waste
Build Y3 Tank
Build R1 Waste
	face: i do my best.

48) ZackStack: Trade Y1 B1 Zackstack

49) face: Move G3 Waste Plaster

50) ZackStack: Move B1 Zackstack Buzz

51) face: Move G3 Waste Buzz

52) ZackStack: Sacrifice Y2 Buzz
Move B1 Buzz Trash
Move G1 Plaster Face

53) face: Move R2 Waste Trash

54) ZackStack: Sacrifice G2 Zackstack
Build B2 Trash
Build B3 Trash
	ZackStack: I knew letting you get that large advantage was going to be ugly :-)

55) face: Sacrifice G3 Buzz
Build G2 Plaster
Build R2 Waste
Build R3 Trash
	face: maybe. but you're in a good enough position that you can afford a mistake or two.

56) ZackStack: Sacrifice Y2 Trash
Move B1 Trash Face
Move B2 Trash Face
	ZackStack: I do try to keep the pressure on! :-)  Though you're doing a good job of that yourself!

57) face: Sacrifice Y3 Tank
Move G3 Plaster Face
Move G2 Plaster Face
Discover R1 Waste B3 Goodgame
Catastrophe Face Green
	ZackStack: Eek!

58) ZackStack: Sacrifice Y1 Zackstack
Move B3 Trash Face
Catastrophe Face Blue
	face: was the "eek" just for show? i'm not sure if i can get out of this... should have build another r3 instead of the g2. may have to think about this one for a bit.
	ZackStack: It was my initial reaction to the large red ships popping up all over my space...  As you say, I might have found my one way out :-)

	face: after staring at the board off and on for a couple of days, i figure you got me good. very well played. care to play another? i'll try to be more competative.
	ZackStack: Dont sell yourself short!  You played the ship supply part of the game better than I did... I just got after your Homeworld a little sooner.  I'm looking forward to the rematch!


14423)
Started: 2009.10.24, Ended: 2009.10.26
Participants: TwoShort (S), winner (N)
Winner: TwoShort

1) winner: Homeworld G1 B2 Y3

2) TwoShort: Homeworld R1 B3 G3

3) winner: Build Y1 Winner

4) TwoShort: Build G1 Twoshort

5) winner: Build Y1 Winner

6) TwoShort: Trade G1 Y1 Twoshort

7) winner: Trade Y1 G1 Winner

8) TwoShort: Build G1 Twoshort

9) winner: Build G2 Winner

10) TwoShort: Discover G1 Twoshort Y2 Yolonda

11) winner: Discover Y3 Winner B3 Hello

12) TwoShort: Build G2 Twoshort

13) winner: Trade Y3 R3 Hello

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Yolonda
Build G3 Twoshort

15) winner: Build G3 Winner

16) TwoShort: Trade G2 R2 Twoshort
Catastrophe Winner Green

17) winner: Trade R3 G3 Hello

18) TwoShort: Move G3 Twoshort Winner
	TwoShort: Not sure what happened there - I was going to suggest you undo your move, but since you redid it I guess you can't...  I'll be happy to play again if you like, but in any case, thanks for the game...



14457)
Variants: "Unrated"
Started: 2009.10.30, Ended: 2009.12.13
Participants: captncavern (S), supergnouf (N)
Winner: supergnouf

1) supergnouf: Homeworld B3 G1 Y3

2) captncavern: Homeworld B3 G2 Y3

3) supergnouf: Build Y1 Supergnouf
	captncavern: Ouverture classique :)

4) captncavern: Build Y1 Captncavern

5) supergnouf: Discover Y1 Supergnouf G2 Loki

6) captncavern: Trade Y1 R1 Captncavern

7) supergnouf: Build Y1 Supergnouf

8) captncavern: Build R1 Captncavern
	supergnouf: c'est pas exactement les memes regles que celles qu'on utilisait...
	captncavern: Ah bon ? C'est quoi les différences ?

9) supergnouf: Trade Y1 R1 Supergnouf
	supergnouf: essaie de fabriqué un vaisseau vert ou bleu

10) captncavern: Discover R1 Captncavern Y1 Kaori
	captncavern: Ah oui, en fait, c'est écrit dans les règles. Bon, ben, on va faire comme ça, alors.

11) supergnouf: Build R2 Supergnouf
	captncavern: D'ailleurs, je viens de vérifier, c'était écrit comme ça aussi dans 3HOUSE. Pas la première erreur de lecture de règles que j'aurai faite... ni la dernière.

12) captncavern: Build R2 Captncavern

13) supergnouf: Move R2 Supergnouf Loki

14) captncavern: Trade R1 G1 Captncavern

15) supergnouf: Build R1 Supergnouf

16) captncavern: Move G1 Captncavern Kaori

17) supergnouf: Move R2 Loki Kaori

18) captncavern: Build R2 Kaori

19) supergnouf: Build R3 Supergnouf

20) captncavern: Build R3 Captncavern

21) supergnouf: Move R3 Supergnouf Loki
	captncavern: T'es à Dampierre, là ?

22) captncavern: Discover G1 Kaori Y2 Kiiro

23) supergnouf: Attack R2 Kaori
	supergnouf: ouaip, pour le week end, mais j'ai pas mal de boulot à faire pour lundi...

24) captncavern: Move R1 Kaori Kiiro

25) supergnouf: Build R3 Loki
	captncavern: Et tu perds du temps à jouer ! :p
Moi aussi, je bosse, aujourd'hui... Trop de boulot en ce moment.

26) captncavern: Build G1 Kiiro

27) supergnouf: Move R2 Kaori Kiiro

28) captncavern: Move R3 Captncavern Kaori

29) supergnouf: Sacrifice R2 Kaori
Attack G1 Kiiro
Attack R1 Kiiro

30) captncavern: Move R3 Kaori Kiiro

31) supergnouf: Move R1 Supergnouf Kiiro
Catastrophe Kiiro R

32) captncavern: Build Y1 Captncavern

33) supergnouf: Sacrifice R1 Supergnouf
Attack G1 Kiiro

34) captncavern: Build R1 Captncavern

35) supergnouf: Discover R3 Loki Y1 Fall

36) captncavern: Discover Y1 Captncavern B1 Alaide
	captncavern: Pfff... Je suis mal barré, moi !

37) supergnouf: Build Y2 Loki

38) captncavern: Discover Y1 Alaide B2 Coucou
	supergnouf: je dois dire qu'a certain moment, je n'ai pas compris tes choix, du coup je respire un peu parce qu'à un moment, je le sentais pas :)

39) supergnouf: Move G1 Kiiro Supergnouf

40) captncavern: Move Y1 Coucou Supergnouf

41) supergnouf: Build R1 Loki
	captncavern: T'as retrouvé Internet, ça y est ?

42) captncavern: Build Y2 Supergnouf
	supergnouf: ouaip, c'est mieux du coup chez moi, mais il y a encore pas mal de boulot avant que ce soit agréable à vivre...

43) supergnouf: Build Y3 Loki

44) captncavern: Trade R2 B2 Captncavern
	supergnouf: petit con va :)
qu'est ce que je vais bien pouvoir faire de ce suicidaire...

45) supergnouf: Sacrifice Y2 Loki
Move R3 Loki Supergnouf
Discover G1 Supergnouf Y2 Omely

46) captncavern: Sacrifice B2 Captncavern
Trade Y2 B2 Supergnouf
Trade Y1 B1 Supergnouf
	captncavern: Ah, ben ça... À toi de voir, mais il se multiplie, à ta place, j'agirais vite ;)
	supergnouf: je sais je sais, mais je vais pas sacrifier un trois rouge pour un 1 jaune...
	supergnouf: aller, il faut savoir prendre des risques dans la vie

47) supergnouf: Sacrifice R3 Supergnouf
Attack B1 Supergnouf
Attack B2 Supergnouf
Pass

48) captncavern: Build R1 Captncavern
	captncavern: Y a du monde à Loki, dis-moi :)
	supergnouf: c'est quoi ca ? des menaces :)
ben ouai, mais la j'ai trop de trucs à faire et qu'un coup à jouer alors...

49) supergnouf: Discover G1 Kiiro Y1 Mer

50) captncavern: Build Y2 Captncavern
	supergnouf: mouai, pas mal comme tactique, mais je suis pas sur que ce soit réelement à ton avantage

51) supergnouf: Move R1 Loki Mer

52) captncavern: Discover R1 Captncavern B1 Hop
	captncavern: Fallait bien que je tente quelque chose, et dans ma position, je n'avais pas trop le choix :(

53) supergnouf: Move Y3 Loki Hop

54) captncavern: Build R2 Captncavern

55) supergnouf: Build R2 Mer

56) captncavern: Discover R2 Captncavern B1 Aie

57) supergnouf: Sacrifice R1 Mer
Attack R1 Hop

58) captncavern: Trade R2 B2 Aie

59) supergnouf: Discover Y1 Loki R1 Mad

60) captncavern: Sacrifice Y2 Captncavern
Move B2 Aie Omely
Move B2 Omely Supergnouf
Catastrophe Supergnouf B

61) supergnouf: Sacrifice G1 Omely
Build Y2 Mad

62) captncavern: Build R2 Captncavern

63) supergnouf: Build Y2 Supergnouf
	captncavern: Bon, je tente un truc, mais ce sera surement pas ça qui va me sauver

64) captncavern: Move R1 Captncavern Supergnouf

65) supergnouf: Sacrifice Y3 Hop
Move Y1 Mad Captncavern
Move Y2 Mad Captncavern
Move Y2 Supergnouf Captncavern
Catastrophe Captncavern Y
	captncavern: J'avais oublié de déclarer la catastrophe :)

66) captncavern: Build R1 Captncavern

67) supergnouf: Move R3 Fall Captncavern

68) captncavern: Trade R1 Y1 Captncavern
	captncavern: Ca sent très mauvais pour moi !

69) supergnouf: Sacrifice R2 Mer
Attack R2 Captncavern
Attack Y1 Captncavern
	supergnouf: fait chier, je peux pas faire de troisieme ordre après une catastrophe

	captncavern: Bah, les carottes sont cuites !
	captncavern: Si t'as du temps à tuer, Grim Reaper est bien chouette, comme jeu
	captncavern: Ah ah ! Et t'as quand même failli faire la boulette :)


14510)
Started: 2009.11.3, Ended: 2010.1.12
Participants: ZackStack (S), agentofchaos (N)
Winner: ZackStack

1) agentofchaos: Homeworld R1 B2 G3

2) ZackStack: Homeworld B3 R1 G3
	agentofchaos: Hi again, enjoy the game. 
	ZackStack: Hey Agent!  Thanks for the challenge.  Have fun!

3) agentofchaos: Build G1 Agentofchaos

4) ZackStack: Build G1 Zackstack
	agentofchaos: Sure will! :)

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) ZackStack: Build G1 Zackstack

7) agentofchaos: Build Y1 Agentofchaos

8) ZackStack: Trade G1 Y1 Zackstack

9) agentofchaos: Build Y2 Agentofchaos

10) ZackStack: Discover G1 Zackstack B2 Gooey

11) agentofchaos: Trade Y1 G1 Agentofchaos

12) ZackStack: Build G1 Zackstack

13) agentofchaos: Build G2 Agentofchaos

14) ZackStack: Sacrifice G3 Zackstack
Build G2 Gooey
Build G2 Zackstack
Build G3 Zackstack

15) agentofchaos: Discover G2 Agentofchaos Y3 Despero

16) ZackStack: Trade G2 Y2 Gooey

17) agentofchaos: Sacrifice Y2 Agentofchaos
Move G2 Despero Gooey
Move G2 Gooey Zackstack
Catastrophe Zackstack G

18) ZackStack: Build G1 Gooey

19) agentofchaos: Trade G1 R1 Agentofchaos
	ZackStack: Oooo... That's really bad.  I havent made that particular mistake before :-)

20) ZackStack: Move G1 Gooey Zackstack

21) agentofchaos: Build R2 Agentofchaos

22) ZackStack: Build Y1 Gooey

23) agentofchaos: Discover R2 Agentofchaos Y3 Phreniaville
	agentofchaos: i thought it seemed unlike you :-)

24) ZackStack: Trade Y2 R2 Gooey

25) agentofchaos: Build Y2 Agentofchaos

26) ZackStack: Build Y2 Zackstack

27) agentofchaos: Build G1 Agentofchaos

28) ZackStack: Build Y2 Gooey

29) agentofchaos: Discover Y1 Agentofchaos G3 Aporia

30) ZackStack: Discover Y1 Zackstack G2 Gummy
	ZackStack: So... am I only still alive out of kindness over there? :-)

31) agentofchaos: Build Y3 Agentofchaos

32) ZackStack: Build Y3 Zackstack

33) agentofchaos: Move R1 Agentofchaos Aporia

34) ZackStack: Discover Y2 Gooey G3 Slimey

35) agentofchaos: Sacrifice G1 Agentofchaos
Build R2 Aporia

36) ZackStack: Build R3 Gooey
	agentofchaos: Sorry to keep you waiting, the site was offline for a while I didn't know it was back up. 

37) agentofchaos: Move R2 Aporia Gummy

38) ZackStack: Move Y1 Gummy Slimey
	ZackStack: No problem!  I just figured you were on holiday.  

39) agentofchaos: Trade Y2 G2 Agentofchaos

40) ZackStack: Move R3 Gooey Aporia

41) agentofchaos: Move Y1 Aporia Gummy

42) ZackStack: Build R3 Gooey

43) agentofchaos: Build R3 Gummy

44) ZackStack: Attack R1 Aporia

45) agentofchaos: Build Y2 Gummy

46) ZackStack: Sacrifice Y2 Slimey
Move R1 Aporia Agentofchaos
Move R3 Aporia Agentofchaos

47) agentofchaos: Sacrifice R2 Phreniaville
Attack R3 Agentofchaos
Attack R1 Agentofchaos

48) ZackStack: Sacrifice Y2 Zackstack
Move R2 Gooey Slimey
Move R2 Slimey Agentofchaos
Catastrophe Agentofchaos Red
	ZackStack: Might as well go out with a bang :-)

49) agentofchaos: Trade G2 R2 Agentofchaos
	agentofchaos: indeed...

50) ZackStack: Build Y2 Gooey

51) agentofchaos: Build R1 Agentofchaos

52) ZackStack: Build G1 Zackstack

53) agentofchaos: Sacrifice Y2 Gummy
Move R1 Agentofchaos Zackstack
Move R2 Gummy Zackstack

54) ZackStack: Build Y2 Slimey

55) agentofchaos: Build Y2 Gummy

56) ZackStack: Trade Y1 B1 Gooey

57) agentofchaos: Build R1 Gummy

58) ZackStack: Move B1 Gooey Slimey

59) agentofchaos: Move R3 Gummy Slimey

60) ZackStack: Sacrifice Y2 Slimey
Discover B1 Slimey Y1 Binky
Move Y1 Slimey Binky

61) agentofchaos: Build R2 Slimey

62) ZackStack: Build R3 Gooey

63) agentofchaos: Move R1 Gummy Zackstack
Catastrophe Zackstack R

64) ZackStack: Trade G1 B1 Zackstack

65) agentofchaos: Build R1 Agentofchaos

66) ZackStack: Build B1 Zackstack

	ZackStack: Thanks for the game agent!  I still can't beleive I came back from that early blunder...


14436)
Started: 2009.11.4, Ended: 2009.11.5
Participants: shmil1 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) shmil1: Homeworld B3 G1 R3

3) TwoShort: Build G1 Twoshort
	TwoShort: Howdy

4) shmil1: Build R1 Shmil1

5) TwoShort: Trade G1 Y1 Twoshort

6) shmil1: Trade R1 Y1 Shmil1

7) TwoShort: Build G1 Twoshort

8) shmil1: Discover Y1 Shmil1 G2 Shmil2

9) TwoShort: Build G1 Twoshort

10) shmil1: Trade R3 G3 Shmil1

11) TwoShort: Discover G1 Twoshort Y2 Threat

12) shmil1: Build G2 Shmil1

13) TwoShort: Move G1 Threat Shmil1
Catastrophe Shmil1 Green



14520)
Variants: "Hard time"
Started: 2009.11.4, Ended: 2009.11.11
Participants: shmil1 (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R3 B2 G3

2) shmil1: Homeworld B3 G3 Y3 *
	agentofchaos: Hi, enjoy the game

3) agentofchaos: Build G1 Agentofchaos

4) shmil1: Build Y1 Shmil1

5) agentofchaos: Build G1 Agentofchaos

6) shmil1: Trade Y3 R3 Shmil1

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) shmil1: Build R1 Shmil1

9) agentofchaos: Build G1 Agentofchaos

10) shmil1: Trade R1 G1 Shmil1

11) agentofchaos: Trade G1 R1 Agentofchaos

12) shmil1: Build R1 Shmil1

13) agentofchaos: Discover R1 Agentofchaos Y1 Terrorworld

14) shmil1: Build Y2 Shmil1

15) agentofchaos: Build Y2 Agentofchaos

16) shmil1: Move R3 Shmil1 Terrorworld

17) agentofchaos: Move R1 Terrorworld Agentofchaos

18) shmil1: Move R3 Terrorworld Agentofchaos

19) agentofchaos: Attack R3 Agentofchaos

20) shmil1: Sacrifice Y2 Shmil1
Discover R1 Shmil1 G1 Giborum
Move R1 Giborum Agentofchaos
Catastrophe Agentofchaos Red

21) agentofchaos: Move G3 Agentofchaos Shmil1

22) shmil1: Trade G1 R1 Shmil1

23) agentofchaos: Trade Y2 R2 Agentofchaos

24) shmil1: Trade R1 B1 Shmil1

25) agentofchaos: Sacrifice R2 Agentofchaos
Attack B1 Shmil1
Attack Y1 Shmil1
	agentofchaos: Thanks for the game :)



14015)
Variants: "Hard time"
Started: 2009.11.11, Ended: 2010.3.25
Participants: shmil1 (S), MadWuher (W), agentofchaos (N), alexcobo (E)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B2 G3
	MadWuher: Have a good game. (First time playing in months so I may be a bit rusty)

2) alexcobo: Homeworld G3 B2 R3
	agentofchaos: Have fun everyone!

3) shmil1: Homeworld B2 R1 G3

4) MadWuher: H B1 R3 G3

5) agentofchaos: Build G1 Agentofchaos

6) alexcobo: Build R1 Alexcobo

7) shmil1: Build G1 Shmil1

8) MadWuher: B G1 Madwuher

9) agentofchaos: Trade G1 Y1 Agentofchaos

10) alexcobo: Trade R1 Y1 Alexcobo

11) shmil1: Build G1 Shmil1

12) MadWuher: Trade G1 Y1 Madwuher

13) agentofchaos: Build G1 Agentofchaos

14) alexcobo: Build Y1 Alexcobo

15) MadWuher: Build G1 Madwuher

16) agentofchaos: Discover Y1 Agentofchaos G3 Krome

17) alexcobo: Trade Y1 G1 Alexcobo

18) MadWuher: Build G2 Madwuher

19) agentofchaos: Build G2 Agentofchaos

20) alexcobo: Build G2 Alexcobo

21) MadWuher: Discover G1 Madwuher Y2 Edora

22) agentofchaos: Trade G2 Y2 Agentofchaos

23) alexcobo: Discover G2 Alexcobo R1 Hot

24) MadWuher: Build G2 Edora

25) agentofchaos: Build G2 Agentofchaos

26) alexcobo: Build G2 Hot

27) MadWuher: Discover G1 Edora B3 Bologna

28) agentofchaos: Trade G1 R1 Agentofchaos

29) alexcobo: Build R1 Alexcobo

30) MadWuher: Sacrifice G3 Madwuher
Build G1 Bologna
Build G3 Madwuher
Build Y1 Madwuher

31) agentofchaos: Sacrifice G3 Agentofchaos
Build Y1 Agentofchaos
Build Y2 Agentofchaos
Build G3 Agentofchaos

32) alexcobo: Build Y2 Alexcobo

33) MadWuher: Discover Y1 Madwuher B2 Camelot

34) agentofchaos: Trade Y2 B2 Agentofchaos

35) alexcobo: Trade Y1 B1 Alexcobo

36) MadWuher: Trade G1 B1 Bologna

37) agentofchaos: Move B2 Agentofchaos Krome

38) alexcobo: Build Y1 Alexcobo

39) MadWuher: Sacrifice G3 Madwuher
Build G1 Edora
Build G3 Madwuher
Build Y2 Camelot

40) agentofchaos: Sacrifice G3 Agentofchaos
Build Y2 Krome
Build R2 Agentofchaos
Build G3 Agentofchaos

41) alexcobo: Build Y3 Alexcobo

42) MadWuher: Sacrifice G3 Madwuher
Build G3 Madwuher
Build Y3 Madwuher
Build Y3 Camelot

43) agentofchaos: Move Y1 Krome Camelot
Catastrophe Camelot Y

44) alexcobo: Sacrifice Y2 Alexcobo
Move G2 Hot Bologna
Move G2 Bologna Shmil1

45) MadWuher: Sacrifice B1 Bologna
Trade G2 R2 Edora
Catastrophe Shmil1 G

46) agentofchaos: Move R1 Agentofchaos Krome

47) alexcobo: Build G1 Hot

48) MadWuher: Trade Y1 B1 Madwuher

49) agentofchaos: Build B1 Krome

50) alexcobo: Move Y3 Alexcobo Hot

51) MadWuher: Move B1 Madwuher Edora

52) agentofchaos: Move R2 Agentofchaos Bologna

53) alexcobo: Build Y1 Hot

54) MadWuher: Sacrifice G1 Bologna
Build Y1 Madwuher

55) agentofchaos: Trade R2 Y2 Bologna

56) alexcobo: Move B1 Alexcobo Hot

57) MadWuher: Discover G2 Madwuher B2 Camelot

58) agentofchaos: Sacrifice G2 Agentofchaos
Build Y1 Krome
Build Y2 Bologna

59) alexcobo: Build Y3 Alexcobo

60) MadWuher: Move Y3 Madwuher Camelot

61) agentofchaos: Sacrifice Y2 Bologna
Discover B1 Krome G2 Klaatu
Discover B2 Krome G2 Plasmor

62) alexcobo: Build B1 Hot

63) MadWuher: Build G1 Madwuher

64) agentofchaos: Build B2 Klaatu

65) alexcobo: Move Y3 Hot Edora

66) MadWuher: Trade R2 Y2 Edora

67) agentofchaos: Move Y1 Krome Edora
Catastrophe Edora Y

68) alexcobo: Move R1 Alexcobo Hot

69) MadWuher: Trade G2 R2 Camelot

70) agentofchaos: Build G1 Agentofchaos

71) alexcobo: Discover G2 Hot R2 Heat
	MadWuher: =) Thanks agentofchaos..... That's what I had planned for the system too. 

72) MadWuher: Move G1 Madwuher Camelot
	agentofchaos: Don't tell me I'm doing you're dirty work for you!?

73) agentofchaos: Discover R1 Krome Y2 Dagon

74) alexcobo: Build G1 Heat

75) MadWuher: Build G2 Madwuher

76) agentofchaos: Sacrifice Y2 Bologna
Move B1 Klaatu Madwuher
Move B2 Klaatu Madwuher

77) alexcobo: Sacrifice Y3 Alexcobo
Move G1 Hot Camelot
Move G1 Camelot Madwuher
Move G1 Heat Madwuher
Catastrophe Madwuher G

78) MadWuher: Move Y3 Camelot Madwuher

79) agentofchaos: Sacrifice B2 Plasmor
Trade B1 Y1 Madwuher
Trade B2 Y2 Madwuher
Catastrophe Madwuher Y

80) alexcobo: Build G1 Heat

81) agentofchaos: Move Y2 Krome Camelot

82) alexcobo: Move G1 Alexcobo Hot
	agentofchaos: Sorry Madwuher, thanks for playing with us :-)

83) agentofchaos: Sacrifice R1 Dagon
Attack R2W Camelot
	MadWuher: not a prob....... thanks for the game.......

84) alexcobo: Build Y1 Alexcobo

85) agentofchaos: Attack G1W Camelot

86) alexcobo: Build R1 Alexcobo

87) agentofchaos: Build R1 Camelot

88) alexcobo: Build R2 Hot

89) agentofchaos: Move R1 Camelot Hot
Catastrophe Hot R

90) alexcobo: Discover Y1 Alexcobo G1 Waypoint

91) agentofchaos: Build R1 Camelot

92) alexcobo: Build Y1 Waypoint

93) agentofchaos: Move R2 Camelot Waypoint

94) alexcobo: Sacrifice Y1 Waypoint
Move Y1 Waypoint Heat

95) agentofchaos: Build R1 Waypoint

96) alexcobo: Build Y1 Heat

97) agentofchaos: Build R1 Camelot

98) alexcobo: Build Y1 Alexcobo

99) agentofchaos: Build Y2 Camelot

100) alexcobo: Build Y2 Heat

101) agentofchaos: Sacrifice Y2 Camelot
Discover Y1 Agentofchaos R3 Thanax
Move Y1 Thanax Heat
Catastrophe Heat Y

102) alexcobo: Trade Y1 G1 Alexcobo

103) agentofchaos: Build R2 Camelot

104) alexcobo: Build Y1 Alexcobo

105) agentofchaos: Trade R2 Y2 Camelot

106) alexcobo: Build G2 Heat

107) agentofchaos: Sacrifice Y2 Camelot
Move R1 Waypoint Alexcobo
Move R2 Waypoint Alexcobo
Catastrophe Alexcobo R

108) alexcobo: Build G1 Alexcobo

109) agentofchaos: Sacrifice Y2 Agentofchaos
Discover G1 Camelot Y1 Dagon
Move G1 Dagon Alexcobo
Catastrophe Alexcobo G

110) agentofchaos: Discover Y2 Camelot G3 Dagon

	agentofchaos: Thanks for the game!


14438)
Variants: "Sinister"
Started: 2009.11.11, Ended: 2010.9.17
Participants: agentofchaos (S), shmil1 (W), alexcobo (N), Mandrel (E)
Winner: agentofchaos

1) alexcobo: Homeworld G3 B2 Y3
	agentofchaos: Hi everyone, enjoy the game :)
	alexcobo: Hello. Good luck, everyone.

2) Mandrel: Homeworld Y1 B3 G3
	Mandrel: Oops, sorry. Have a good game!

3) agentofchaos: Homeworld R1 B2 G3

4) shmil1: Homeworld R1 B2 G3

5) alexcobo: Build Y1 Alexcobo

6) Mandrel: Build G1 Mandrel

7) agentofchaos: Build G1 Agentofchaos

8) shmil1: Build G1 Shmil1

9) alexcobo: Build Y1 Alexcobo

10) Mandrel: Build G1 Mandrel

11) agentofchaos: Trade G1 Y1 Agentofchaos

12) shmil1: Trade G1 B1 Shmil1

13) alexcobo: Trade Y1 R1 Alexcobo

14) Mandrel: Trade G1 Y1 Mandrel

15) agentofchaos: Build G1 Agentofchaos

16) shmil1: Build B1 Shmil1

17) alexcobo: Trade Y1 G1 Alexcobo

18) Mandrel: Discover G1 Mandrel Y2 Party

19) agentofchaos: Trade G1 R1 Agentofchaos

20) shmil1: Trade B1 Y1 Shmil1

21) alexcobo: Build Y1 Alexcobo

22) Mandrel: Build G1 Party

23) agentofchaos: Build Y2 Agentofchaos

24) shmil1: Build Y2 Shmil1

25) alexcobo: Trade Y1 G1 Alexcobo

26) Mandrel: Build G1 Mandrel

27) agentofchaos: Build G2 Agentofchaos

28) shmil1: Build G2 Shmil1

29) alexcobo: Build G2 Alexcobo

30) Mandrel: Trade G1 B1 Mandrel

31) agentofchaos: Discover G2 Agentofchaos Y3 Kakrafoon

32) shmil1: Build B1 Shmil1

33) alexcobo: Discover G2 Alexcobo B1 Trade

34) Mandrel: Move B1 Mandrel Party

35) agentofchaos: Build G1 Agentofchaos

36) shmil1: Move G2 Shmil1 Kakrafoon

37) alexcobo: Build G2 Trade

38) Mandrel: Build G2 Mandrel

39) agentofchaos: Sacrifice R1 Agentofchaos
Attack G2W Kakrafoon

40) shmil1: Build G3 Shmil1

41) alexcobo: Build R1 Alexcobo

42) Mandrel: Trade G2 R2 Mandrel

43) agentofchaos: Sacrifice Y2 Agentofchaos
Discover G2 Kakrafoon R1 Death
Move G2 Death Alexcobo
Catastrophe Alexcobo G

44) shmil1: Move G3 Shmil1 Kakrafoon
	shmil1: move g3 shmil1 kakrafoon

45) alexcobo: Trade G2 R2 Trade

46) Mandrel: Discover G1 Party B3 Joy

47) agentofchaos: Trade G1 R1 Agentofchaos

48) shmil1: Sacrifice Y2 Shmil1
Move B1 Shmil1 Kakrafoon
Move B1 Shmil1 Kakrafoon

49) alexcobo: Build R2 Trade

50) Mandrel: Build R2 Mandrel

51) agentofchaos: Trade Y1 B1 Agentofchaos

52) shmil1: Move G3 Kakrafoon Alexcobo

53) alexcobo: Attack G3W Alexcobo

54) Mandrel: Build B2 Party
	alexcobo: That was a nice gift. Not quite a Green Star, but it will work. Thank you very much.

55) agentofchaos: Build G1 Agentofchaos

56) shmil1: Trade B1 G1 Kakrafoon

57) alexcobo: Build Y1 Alexcobo

58) Mandrel: Move Y1 Mandrel Party

59) agentofchaos: Trade G1 Y1 Agentofchaos

60) shmil1: Build B1 Kakrafoon

61) alexcobo: Trade R2 Y2 Trade

62) Mandrel: Build G1 Mandrel

63) agentofchaos: Sacrifice B1 Agentofchaos
Trade G2 R2 Kakrafoon

64) shmil1: Move B1 Kakrafoon Alexcobo

65) alexcobo: Attack B1W Alexcobo

66) Mandrel: Trade B2 G2 Party

67) agentofchaos: Attack G1W Kakrafoon

68) shmil1: Build Y2 Shmil1

69) alexcobo: Sacrifice Y2 Trade
Move R1 Alexcobo Mandrel
Move R1 Alexcobo Mandrel
Catastrophe Mandrel R

70) Mandrel: Trade G1 R1 Mandrel

71) agentofchaos: Attack B1W Kakrafoon

72) shmil1: Build Y2 Shmil1

73) alexcobo: Trade B1 R1 Alexcobo

74) Mandrel: Build G1 Joy

75) agentofchaos: Build Y2 Agentofchaos

76) shmil1: Sacrifice Y2 Shmil1
Move Y1 Shmil1 Joy
Move Y1 Joy Alexcobo

77) alexcobo: Attack Y1W Alexcobo

78) Mandrel: Build R2 Mandrel

79) agentofchaos: Build R2 Kakrafoon

80) shmil1: Build Y2 Shmil1

81) alexcobo: Build R2 Trade

82) Mandrel: Move R2 Mandrel Party

83) agentofchaos: Discover R2 Kakrafoon G2 Kirilthrendor

84) shmil1: Move Y2 Shmil1 Joy

85) alexcobo: Build R3 Alexcobo

86) Mandrel: Build R3 Mandrel

87) agentofchaos: Build R3 Kakrafoon

88) shmil1: Move Y2 Joy Alexcobo
Catastrophe Alexcobo Yellow

89) alexcobo: Build G1 Alexcobo

90) Mandrel: Build G2 Mandrel

91) agentofchaos: Build R3 Kirilthrendor

92) shmil1: Build G2 Shmil1

93) alexcobo: Trade R2 Y2 Trade

94) Mandrel: Trade G1 Y1 Joy

95) agentofchaos: Move Y1 Agentofchaos Kakrafoon

96) shmil1: Discover G2 Shmil1 G3 Zelenina

97) alexcobo: Build G1 Alexcobo

98) Mandrel: Trade G3 Y3 Mandrel

99) agentofchaos: Build G3 Kakrafoon

100) shmil1: Build Y1 Shmil1

101) alexcobo: Build R2 Trade

102) Mandrel: Build R3 Party

103) agentofchaos: Move Y1 Kakrafoon Kirilthrendor

104) shmil1: Trade Y1 B1 Shmil1

105) Mandrel: Move R2 Party Joy

106) agentofchaos: Build B1 Kakrafoon

107) shmil1: Move B1 Shmil1 Zelenina

108) Mandrel: Sacrifice Y3 Mandrel
Move R3 Party Joy
Move R2 Joy Agentofchaos
Move R3 Joy Agentofchaos
Catastrophe Agentofchaos Red

109) agentofchaos: Move R3 Kakrafoon Party

110) shmil1: Build B2 Zelenina

111) Mandrel: Sacrifice G2 Party
Build G2 Joy
Build Y1 Joy
	agentofchaos: Didn't see that coming...

112) agentofchaos: Move R2 Kirilthrendor Zelenina

113) shmil1: Sacrifice Y2 Shmil1
Move B1 Zelenina Agentofchaos
Move G2 Zelenina Agentofchaos

114) Mandrel: Move G2 Joy Agentofchaos

115) agentofchaos: Sacrifice R3 Kirilthrendor
Attack G2W Agentofchaos
Attack G2E Agentofchaos
Attack B1W Agentofchaos

116) shmil1: Trade B2 Y2 Zelenina

117) Mandrel: Move G1 Joy Agentofchaos
Catastrophe Agentofchaos Green

118) agentofchaos: Move G3 Kakrafoon Agentofchaos
	agentofchaos: I'm not going down without a fight!!

119) shmil1: Build G1 Shmil1

120) Mandrel: Move B1 Party Mandrel

121) agentofchaos: Attack Y2W Zelenina

122) shmil1: Trade G3 Y3 Shmil1

123) Mandrel: Build G2 Mandrel

124) agentofchaos: Build Y2 Zelenina

125) shmil1: Build G2 Shmil1

126) Mandrel: Sacrifice G2 Mandrel
Build G2 Mandrel
Build Y3 Joy

127) agentofchaos: Attack Y1E Party

128) shmil1: Discover G1 Shmil1 Y3 Budanebo

129) Mandrel: Move Y3 Joy Trade

130) agentofchaos: Move R3 Party Kakrafoon

131) shmil1: Move G1 Budanebo Alexcobo
Catastrophe Alexcobo Green

132) Mandrel: Sacrifice R1 Mandrel
Attack R2N Trade

133) agentofchaos: Build Y3 Kirilthrendor

134) shmil1: Build Y3 Shmil1

135) Mandrel: Sacrifice R2 Trade
Attack R2N Trade
Attack G2N Trade

136) agentofchaos: Trade B1 R1 Agentofchaos

137) shmil1: Discover Y3 Shmil1 B3 Modrina

138) Mandrel: Trade Y1 B1 Joy

139) agentofchaos: Build B2 Kakrafoon

140) shmil1: Build G1 Shmil1

141) Mandrel: Trade G2 B2 Trade

142) agentofchaos: Sacrifice Y2 Zelenina
Move B1 Kakrafoon Trade
Move B1 Kakrafoon Trade
Catastrophe Trade B

143) shmil1: Move G2 Shmil1 Modrina

144) Mandrel: Build G1 Party

145) agentofchaos: Move R3 Kakrafoon Party

146) shmil1: Build G1 Modrina

147) Mandrel: Sacrifice G1 Party
Build Y1 Joy

148) agentofchaos: Attack G1E Party

149) shmil1: Trade G2 R2 Modrina

150) Mandrel: T G2 Y2 Mandrel

151) agentofchaos: Build Y2 Zelenina

152) shmil1: Build G1 Modrina

153) Mandrel: Build G2 Mandrel

154) agentofchaos: Move B2 Kakrafoon Party

155) shmil1: Sacrifice Y3 Modrina
Move G1 Modrina Agentofchaos
Move G1 Modrina Agentofchaos
Move R2 Modrina Agentofchaos

156) Mandrel: Build R1 Mandrel

157) agentofchaos: Sacrifice R3 Party
Attack R2W Agentofchaos
Attack G1W Agentofchaos
Attack G1W Agentofchaos

158) shmil1: Build G2 Shmil1

159) Mandrel: Move G2 Mandrel Agentofchaos
Catastrophe Agentofchaos Green

160) agentofchaos: Sacrifice G1 Party
Build Y3 Agentofchaos
	agentofchaos: You scoundrel!!

161) shmil1: Build Y3 Shmil1

162) Mandrel: Build G1 Mandrel

163) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y2 Zelenina Shmil1
Move Y2 Zelenina Shmil1
Catastrophe Shmil1 Y

164) shmil1: Trade G2 Y2 Shmil1

165) Mandrel: D B1 Mandrel G2 Calm

166) agentofchaos: Move Y3 Kirilthrendor Kakrafoon

167) shmil1: Build Y2 Shmil1

168) Mandrel: B B1 Calm

169) agentofchaos: Sacrifice Y3 Kakrafoon
Move Y1 Kirilthrendor Mandrel
Move Y1 Party Mandrel
Move B2 Party Joy
Catastrophe Mandrel Y

170) shmil1: Build G1 Shmil1

171) Mandrel: T G2 Y2 Mandrel

172) agentofchaos: Sacrifice R2 Agentofchaos
Attack B1E Joy
Attack Y1E Joy

173) shmil1: Trade Y2 R2 Shmil1

174) Mandrel: S Y1 Joy
Move B1 Calm Mandrel

175) agentofchaos: Discover B2 Joy Y2 Volapuk

176) shmil1: Move R2 Shmil1 Joy
	Mandrel: Ouch!

177) Mandrel: B B1 Calm
	agentofchaos: A bit of payback! ;-)

178) agentofchaos: Discover B1 Joy Y2 Sacher

179) shmil1: Build Y1 Shmil1

180) Mandrel: Trade B1 Y1 Calm

181) agentofchaos: Sacrifice G1 Kakrafoon
Build B1 Volapuk

182) shmil1: Move G1 Shmil1 Joy

183) Mandrel: Build B1 Calm
	shmil1: system says there´s no y1 in joy. i see it? and you?
	Mandrel: Is it an attack command? You have to put n/e/s/w after the ship you're attacking for attack. If so I had the same problem for ages, I thought it was the system having a problem after someone dropping out.

184) agentofchaos: Move B1 Volapuk Mandrel
	shmil1: yes, i have tried it out in many different ways. 

185) shmil1: Build G1 Joy

186) Mandrel: Discover B1 Mandrel Y1 Inspiration

187) agentofchaos: Move B1 Sacher Mandrel

188) shmil1: Trade G1 Y1 Joy

189) Mandrel: Build Y2 Calm

190) agentofchaos: Move B2 Volapuk Mandrel
Catastrophe Mandrel B

191) agentofchaos: Move R2 Kakrafoon Calm

192) shmil1: Build Y2 Joy

193) agentofchaos: Sacrifice R2 Zelenina
Attack Y2E Calm
Attack Y1E Calm

194) shmil1: Move Y1 Joy Agentofchaos

195) agentofchaos: Attack Y1W Agentofchaos

196) shmil1: Sacrifice Y2 Shmil1
Move Y2 Joy Agentofchaos
Move G1 Joy Agentofchaos
	agentofchaos: Thanks for playing Mandrel :-)

197) agentofchaos: Sacrifice R2 Calm
Attack Y2W Agentofchaos
Attack G1W Agentofchaos
	Mandrel: Cheers, It's been fun, have a good rest of game you two.

198) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y2 Calm Joy
Move Y2 Joy Shmil1

	agentofchaos: did you try the command 'a y1s joy'?


14558)
Started: 2009.11.11, Ended: 2009.12.16
Participants: ZackStack (S), face (N)
Winner: face

1) face: Homeworld R3 B2 G3

2) ZackStack: Homeworld B1 R2 G3
	ZackStack: Hey face! Enjoy the rematch!

3) face: Build G1 Face

4) ZackStack: Build G1 Zackstack

5) face: Trade G3 Y3 Face

6) ZackStack: Trade G1 Y1 Zackstack
	ZackStack: Hmmm... I'm tempted to tempt you to take us both out in one turn :-)

7) face: Build Y1 Face

8) ZackStack: Build G1 Zackstack

9) face: Trade Y1 R1 Face

10) ZackStack: Discover G1 Zackstack B3 Bigboy

11) face: Discover R1 Face Y1 Blitz

12) ZackStack: Build G1 Zackstack

13) face: Build G2 Face

14) ZackStack: Build G2 Bigboy

15) face: Move G2 Face Blitz

16) ZackStack: Trade G1 Y1 Bigboy

17) face: Build Y2 Face

18) ZackStack: Build Y2 Bigboy

19) face: Trade Y2 B2 Face

20) ZackStack: Trade Y1 R1 Bigboy

21) face: Move B2 Face Blitz

22) ZackStack: Discover Y2 Bigboy G1 Pea

23) face: Build B1 Blitz

24) ZackStack: Build R1 Bigboy

25) face: Discover B1 Blitz Y3 Smash

26) ZackStack: Trade R1 B1 Bigboy

27) face: Build Y1 Face

28) ZackStack: Sacrifice G3 Zackstack
Build G2 Bigboy
Build G3 Zackstack
Build Y2 Pea

29) face: Discover Y1 Face R1 Plaster

30) ZackStack: Trade G2 Y2 Bigboy

31) face: Build Y3 Face

32) ZackStack: Sacrifice Y2 Bigboy
Move Y2 Pea Face
Move Y2 Pea Face
Catastrophe Face Yellow
	ZackStack: I think that was a mistake...

33) face: Sacrifice G2 Blitz
Build B2 Smash
Build B3 Blitz
	face: haha yeah.
i'm still having trouble visualizing with the arrangement of the board. i tend not to make mistakes when i take the time to set up the game with real icehouse pieces.

34) ZackStack: Build Y2 Zackstack
	face: pretty sure that was game, but i'll still try to put up a fight.
	ZackStack: I prefer playing in person too... but I get to play a lot more here!  I wish I was in position to take better advantage... I don't think this is over by a longshot!

35) face: Move B3 Blitz Face

36) ZackStack: Build R2 Bigboy

37) face: Trade B3 Y3 Face

38) ZackStack: Sacrifice Y2 Zackstack
Move R2 Bigboy Blitz
Move G2 Bigboy Blitz

39) face: Attack R2 Blitz

40) ZackStack: Move G2 Blitz Bigboy
	ZackStack: Oops

41) face: Build G1 Face

42) ZackStack: Build R2 Bigboy

43) face: Move G1 Face Blitz

44) ZackStack: Trade R2 Y2 Bigboy

45) face: Build B3 Blitz

46) ZackStack: Build Y2 Zackstack

47) face: Trade B3 G3 Blitz

48) ZackStack: Move Y2 Bigboy Plaster

49) face: Discover Y1 Plaster G3 Tank

50) ZackStack: Sacrifice Y2 Zackstack
Move B1 Bigboy Plaster
Move G2 Bigboy Plaster

51) face: Build Y2 Tank
	ZackStack: Have I complimented your pyramid advantage lately? :-)

52) ZackStack: Build B3 Plaster
	face: heh. still having trouble turning "advantage" into "win."

53) face: Build B3 Blitz

54) ZackStack: Move Y1 Zackstack Tank

55) face: Discover Y2 Tank G2 Waste

56) ZackStack: Sacrifice G3 Zackstack
Build G2 Plaster
Build Y2 Plaster
Build G3 Zackstack

57) face: Build Y3 Waste

58) ZackStack: Sacrifice R1 Bigboy
Attack Y1 Tank

59) face: Discover Y2 Waste B3 Buzz

60) ZackStack: Trade B1 R1 Plaster

61) face: Move G1 Blitz Buzz

62) ZackStack: Move Y1 Tank Zackstack

63) face: Move R2 Blitz Tank

64) ZackStack: Discover Y1 Tank B1 Speck

65) face: Sacrifice G3 Blitz
Build G3 Buzz
Build R2 Tank
Build R3 Blitz

66) ZackStack: Sacrifice Y2 Plaster
Move G2 Plaster Buzz
Move G1 Zackstack Buzz
Catastrophe Buzz Green
	ZackStack: Its only a matter of time now... but I'll try to do some damage on my way out :-)

67) face: Move B1 Smash Zackstack

68) ZackStack: Build Y2 Plaster

69) face: Sacrifice Y3 Waste
Move B2 Blitz Smash
Move B2 Smash Zackstack
Move B2 Smash Zackstack
Catastrophe Zackstack Blue
	ZackStack: Bye bye blue star...

70) ZackStack: Move B3 Plaster Tank

71) face: Sacrifice Y3 Face
Move R2 Tank Zackstack
Move R2 Tank Zackstack
Move R1 Blitz Zackstack
Catastrophe Zackstack Red
	face: still not certain how i recovered from that early mistake. very well played.
	ZackStack: Well played indeed.  You were able to get a new large ship built and back to your homeworld very quickly while I simply tried to recover the ships I had burnt to blow up your first one...  Then you did a much better job building a large fleet of large ships!  Very good game!



32028)
Variants: "Hard time"
Started: 2017.4.24, Ended: 2017.5.3
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3

2) wil: H Y3 R2 G3 *

3) Felix: Build G1 Felix
	Felix: Here we go again. Interesting starting setup! I thought you'd go for the classic yellow/blue banker.

4) wil: B G1 Wil

5) Felix: Trade G1 Y1 Felix

6) wil: D G1 Wil B1 B1

7) Felix: Build G1 Felix
	wil: I like playing around with openings... This one might be too deep a hole to dig myself out if
	wil: Of
	Felix: I like to do the same, but I've found that the ladder world is typically too aggressive for experimentation :P

8) wil: B G1 B1

9) Felix: Build G2 Felix

10) wil: B G2 B1
	wil: Meh... I want to see the responses... Look at my record...losing is not a thing that bothers me much.

11) Felix: Trade G1 B1 Felix
	Felix: Well I'll be more experimental with you in the future :)

12) wil: T G1 R1 B1
	wil: That would be to your benefit... My failure here is the same as chess...I don't have the patience, attention, or interest to take the time and look for the best move... I shoot from the hip, and often to my detriment.
	Felix: I often do the same when playing on here, actually. I'd be more inclined to strategize when playing in real life, but I often make moves on here while at work and can't afford more than a minute or two to think over my move.

13) Felix: Trade G2 R2 Felix

14) wil: T G1 B1 B1

15) Felix: Build B2 Felix

16) wil: B B2 B1

17) Felix: Discover B2 Felix G2 G2

18) wil: T B1 Y1 B1

19) Felix: Build G1 Felix

20) wil: B R1 B1

21) Felix: Move R2 Felix G2

22) wil: B R2 B1

23) Felix: Build R3 G2

24) wil: M R1 B1 G2

25) Felix: Sacrifice R2 G2
Attack R1 G2
Pass

26) wil: Move B2 B1 Wil
	wil: I like taking unknown paths
	wil: Anybody scouted these rapids before we started?

27) Felix: Trade R1 Y1 G2
	Felix: My ol' grandpappy Cletus did once, but he ain't been heard from since.
	wil: that was an elegant solution

28) wil: B Y2 B1

29) Felix: Build Y2 G2
	Felix: Why, thank you!

30) wil: D Y2 B1 B2 B2

31) Felix: Discover Y1 G2 G1 Rasp

32) wil: B G1 B1

33) Felix: Sacrifice G3 Felix
Build Y2 Rasp
Build Y3 G2
Build Y3 Felix

34) wil: Move G1 B1 B2

35) Felix: Move Y3 G2 B1

36) wil: Move R2 B1 B2

37) Felix: Sacrifice R3 G2
Attack R1 B1
Attack Y1 B1
Attack G2 B1

38) wil: B G2 Wil

39) Felix: Build G3 B1
	Felix: Ah, a three for one deal.
	wil: yeah...I am behind on this one...awaiting you to make a mistake

40) wil: S G3 Wil
B G3 Wil
B G3 B2
B R1 B2
	Felix: I had the early advantage thanks to your experimental opening, so it's a bitter upper hand I bear :P

41) Felix: Sacrifice Y3 Felix
Move G3 B1 Wil
Move G2 B1 Wil
Move Y3 B1 Wil
Catastrophe Wil Green

42) wil: S G3 B2
B B1 Wil
B B3 Wil
B Y3 B2

43) Felix: Sacrifice B1 Felix
Trade Y3 B3 Wil
Catastrophe Wil Blue
	wil: Sweet

	Felix: Beginning without blue is a difficult opening to pull off, but I'd love to experiment with it more myself and see if it's possible to turn it to an advantage. It's hard to see it as anything but a handicap right now...
	wil: It is fun to try things..  Make mistakes and learn...  Thx for the game!


14699)
Variants: "Hard time"
Started: 2009.12.3, Ended: 2010.1.21
Participants: Uglyfoot (S), fnord (N)
Winner: Uglyfoot

1) fnord: Homeworld Y1 B2 G3
	fnord: Hi there!  Thanks for the challenge!  Just FYI, I'm leaving for a week-long cruise tomorrow morning.  I expect to have some internet access on board the ship, but I'm hoping to get enough moves in before going away that I can ride out the timer.

2) Uglyfoot: Homeworld B3 Y2 G3

3) fnord: Build G1 Fnord

4) Uglyfoot: Build G1 Uglyfoot

5) fnord: Discover G1 Fnord Y3 Eris

6) Uglyfoot: Trade G1 Y1 Uglyfoot

7) fnord: Build G1 Fnord

8) Uglyfoot: Discover Y1 Uglyfoot R1 Fort

9) fnord: Trade G1 B1 Fnord

10) Uglyfoot: Build G1 Uglyfoot
	fnord: *waves to the audience*

11) fnord: Move B1 Fnord Eris

12) Uglyfoot: Move G1 Uglyfoot Fort

13) fnord: Build B1 Eris

14) Uglyfoot: Build G1 Uglyfoot

15) fnord: Build G2 Fnord

16) Uglyfoot: Build G2 Fort

17) fnord: Trade G2 Y2 Fnord

18) Uglyfoot: Discover G2 Fort B3 Dogstar

19) fnord: Trade B1 Y1 Eris

20) Uglyfoot: Build G2 Fort

21) fnord: Build G2 Eris

22) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Dogstar
Build Y2 Fort

23) fnord: Trade Y2 R2 Fnord

24) Uglyfoot: Move Y2 Fort Dogstar

25) fnord: Build R1 Fnord

26) Uglyfoot: Sacrifice G3 Dogstar
Build G3 Dogstar
Build Y2 Dogstar
Build Y3 Fort

	fnord: Sorry about the Resignation, I've not been able to get to the site from work, where I usually log on.


14748)
Variants: "Hard time"
Started: 2009.12.9, Ended: 2010.2.7
Participants: mneme (S), Danner (N)
Winner: mneme

1) Danner: Homeworld B1 R2 G3
	Danner: Hi! Good luck!

2) mneme: Homeworld G3 R1 B3

3) Danner: Build G1 Danner

4) mneme: Build B1 Mneme

5) Danner: Trade G1 B1 Danner

6) mneme: Build B2 Mneme

7) Danner: Build B2 Danner

8) mneme: Trade B2 Y2 Mneme

9) Danner: Trade B2 Y2 Danner

10) mneme: Discover B1 Mneme G2 Alpha

11) Danner: Discover B1 Danner G3 Beta

12) mneme: Build B2 Mneme

13) Danner: Build B2 Beta

14) mneme: Build B2 Alpha

15) Danner: Trade B2 Y2 Beta

16) mneme: Discover B2 Mneme G2 Gamma

17) Danner: Build G1 Danner

18) mneme: Trade B2 R2 Alpha

19) Danner: Build B2 Beta

20) mneme: Build B2 Alpha

21) Danner: Discover B1 Beta G2 Delta

22) mneme: Build B3 Mneme

23) Danner: Build B3 Delta

24) mneme: Move B3 Mneme Delta

25) Danner: Sacrifice Y2 Danner
Discover B1 Delta Y3 Epsilon
Discover B3 Delta Y3 Zeta

26) mneme: Trade B2 Y2 Alpha

27) Danner: Trade G1 R1 Danner

28) mneme: Trade B3 Y3 Delta

29) Danner: Move B3 Zeta Alpha

30) mneme: Sacrifice Y2 Alpha
Move R2 Alpha Epsilon
Move Y3 Delta Beta

31) Danner: Build Y1 Beta

32) mneme: Sacrifice B1 Alpha
Trade Y3 R3 Beta

33) Danner: Sacrifice Y2 Beta
Move Y1 Beta Alpha
Discover B2 Beta Y2 Delta

34) mneme: Attack B1 Epsilon

35) Danner: Build G1 Danner

36) mneme: Build B1 Gamma

37) Danner: Build Y1 Alpha

38) mneme: Trade B2 G2 Gamma

39) Danner: Discover Y1 Alpha B3 Zeta

40) mneme: Build B2 Gamma

41) Danner: Build B2 Alpha

42) mneme: Trade B2 R2 Gamma

43) Danner: Sacrifice Y1 Alpha
Discover R1 Danner Y3 Eta

44) mneme: Sacrifice G2 Gamma
Build R1 Gamma
Build R3 Epsilon

45) Danner: Sacrifice G1 Danner
Build R3 Eta

46) mneme: Sacrifice Y2 Mneme
Move R2 Gamma Eta
Move R1 Gamma Eta
Catastrophe Eta R

	Danner: Sorry for my slowness. And congratulations!
	mneme: Thanks.  So it goes; I'd have preferred to play it out--I only had a minor advantage!



14750)
Variants: "Hard time"
Started: 2009.12.9, Ended: 2009.12.21
Participants: Horowits (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) Horowits: Homeworld G3 B1 Y3

3) MadWuher: Build G1 Madwuher

4) Horowits: Build Y1 Horowits

5) MadWuher: Trade G1 Y1 Madwuher

6) Horowits: Trade Y1 B1 Horowits

7) MadWuher: Build G1 Madwuher

8) Horowits: Build B1 Horowits

9) MadWuher: Build G1 Madwuher

10) Horowits: Discover B1 Horowits G2 Jello



14017)
Variants: "Hard time"
Started: 2009.12.11, Ended: 2009.12.16
Participants: ExKirby (S), zoltar (N), agentofchaos (E)
Winner: agentofchaos

1) zoltar: Homeworld R1 B2 G3

2) agentofchaos: Homeworld B3 R1 G3



11422)
Started: 2009.12.11, Ended: 2010.5.3
Participants: Danner (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) Danner: Homeworld B1 Y2 G3

3) zoltar: Build G1 Zoltar
	Danner: Hi! Have a good game!
	Danner: Did you choose the nickname 'zoltar' after the Iceland character?
	zoltar: No I didn't, it was from a silly movie, actually. Have a great game!

4) Danner: Build G1 Danner

5) zoltar: Trade G1 Y1 Zoltar

6) Danner: Trade G1 R1 Danner

7) zoltar: Build Y1 Zoltar

8) Danner: Build R1 Danner

9) zoltar: Build Y1 Zoltar

10) Danner: Build R2 Danner
	zoltar: b y1 zoltar

11) zoltar: Discover Y1 Zoltar G2 Greenbelt

12) Danner: Trade R2 Y2 Danner

13) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenbelt
Build Y3 Greenbelt
Build Y3 Zoltar

14) Danner: Discover Y2 Danner G3 Garrett
	zoltar: Yellow Alert!
	Danner: :D

15) zoltar: Sacrifice Y1 Zoltar
Discover Y1 Greenbelt G1 Greendale

16) Danner: Build G1 Danner

17) zoltar: T Y3 G3 Zoltar

18) Danner: Discover G1 Danner Y3 Zombie

19) zoltar: Discover Y2 Greenbelt B3 Bluebeard

20) Danner: Build G1 Danner

21) zoltar: Build G2 Zoltar

22) Danner: Discover G1 Danner Y3 Artemus

23) zoltar: Trade Y2 R2 Bluebeard

24) Danner: Build G2 Danner

25) zoltar: Sacrifice G2 Zoltar
Build G2 Zoltar
Build R2 Bluebeard

26) Danner: Move R1 Danner Artemus

27) zoltar: Move Y3 Greenbelt Artemus

28) Danner: Discover G1 Artemus Y2 Yellowbelt

29) zoltar: Move G2 Zoltar Yellowbelt

30) Danner: Discover G1 Yellowbelt Y1 Freeway

31) zoltar: Move G2 Yellowbelt Zombie

32) Danner: Sacrifice G3 Danner
Build G2 Zombie
Build G3 Danner
Build Y2 Garrett

33) zoltar: Sacrifice R2 Bluebeard
Attack R1 Artemus
Attack G2 Zombie

34) Danner: Move G1 Freeway Zombie
Catastrophe Zombie G

35) zoltar: Sacrifice G3 Zoltar
Build Y1 Greendale
Build Y3 Zoltar
Build R2 Bluebeard

36) Danner: Move Y2 Garrett Greendale

37) zoltar: Trade R2 G2 Bluebeard

38) Danner: Build R2 Danner

39) zoltar: Discover Y1 Zoltar R2 Redriver

40) Danner: Sacrifice R1 Danner
Attack Y1N Greendale

41) zoltar: Move Y1 Redriver Greendale
Catastrophe Greendale Y

42) Danner: Build R1 Danner

43) zoltar: Sacrifice G2 Bluebeard
Build R2 Bluebeard
Build R3 Artemus

44) Danner: Move R2 Danner Garrett

45) zoltar: Trade R2 G2 Bluebeard

46) Danner: Build Y1 Garrett

47) zoltar: Build G1 Bluebeard

48) Danner: Sacrifice G2 Danner
Build R2 Danner
Build R3 Garrett

49) zoltar: Build R3 Bluebeard

50) Danner: Sacrifice Y2 Garrett
Move R1 Danner Bluebeard
Move R2 Danner Bluebeard
Catastrophe Bluebeard R

51) zoltar: Build G1 Bluebeard

52) Danner: Move R3 Garrett Danner

53) zoltar: Trade G2 Y2 Bluebeard

54) Danner: Build Y1 Garrett

55) zoltar: Sacrifice G1 Bluebeard
Build Y1 Zoltar

56) Danner: Discover Y1 Garrett Y2 Gamall

57) zoltar: Move R3 Artemus Gamall

58) Danner: Discover Y1 Gamall R3 Orland

59) zoltar: Build G1 Bluebeard

60) Danner: Build R1 Garrett
	Danner: Oh yeah, the most stable homeworld.
	Danner: Pardon me, that I don't make my next move now, but I must go to the parliament.

61) zoltar: Sacrifice G1 Bluebeard
Build R2 Artemus

62) Danner: Build G1 Danner

63) zoltar: Trade Y1 G1 Zoltar

64) Danner: Build Y1 Garrett

65) zoltar: Build G2 Bluebeard

66) Danner: Discover G1 Danner B3 Caduca

67) zoltar:
Build G2 Bluebeard

68) Danner: Discover Y1 Garrett B2 Builder

69) zoltar: Sacrifice G2 Bluebeard
Build G2 Bluebeard
Build R2 Artemus

70) Danner: Move R2 Garrett Builder

71) zoltar: Sacrifice Y3 Artemus
Move R1 Artemus Danner
Move R2 Artemus Danner
Move R2 Artemus Danner
Catastrophe Danner R

72) Danner: Move R1 Garrett Danner

73) zoltar: Sacrifice G2 Bluebeard
Build Y3 Bluebeard
Build Y3 Zoltar

74) Danner: Build G2 Caduca

75) zoltar: Build G2 Bluebeard

76) Danner: Trade G1 R1 Caduca

77) zoltar: Move G1 Bluebeard Danner

78) Danner: Sacrifice G3 Danner
Build R2 Builder
Build R2 Builder
Build R3 Danner

79) zoltar: Trade G2 B2 Bluebeard

80) Danner: Move R2 Builder Bluebeard

81) zoltar: Move Y3 Zoltar Builder

82) Danner: Sacrifice R2 Builder
Attack B2N Bluebeard
Attack Y2N Bluebeard
	Danner: Victory is near... too bad it isn't mine
	zoltar: Well, then I'd better start attacking, eh?

83) zoltar: Sacrifice R3 Gamall
Attack R2 Bluebeard
Attack Y2 Bluebeard
Attack B2 Bluebeard

84) Danner: Sacrifice R2 Builder
Attack G1N Danner
Pass
	Danner: Maybe.

85) zoltar: Build Y2 Zoltar
	zoltar: Banzai!!!

86) Danner: Move Y1 Garrett Builder

87) zoltar: Move Y3 Builder Caduca
	Danner: Red Alert! The Homeworld is under seige!
	zoltar: nice defense!

88) Danner: Move Y1 Builder Zoltar
	zoltar: Yeah, I don't even think it's worth wasting a move saving my 'invasion force'. I have more pieces, but your defense was great. Had I seen that coming I would have sacked to move all three green ships into your homeworld and blow up your G3 immediately before you could have sacked it.
	Danner: Thanks!

89) zoltar: Move Y2 Zoltar Builder

90) Danner: Attack G1N Zoltar

91) zoltar: Build R2 Bluebeard

92) Danner: Discover R1 Danner G3 Garrett

93) zoltar: Sacrifice R2 Bluebeard
Attack Y1 Builder
Attack R1 Caduca

94) Danner: Sacrifice G2 Caduca
Build G1 Zoltar
Build G2 Zoltar

95) zoltar: Attack G2 Zoltar

96) Danner: Trade G1 B1 Zoltar

97) zoltar: Sacrifice G2 Zoltar
Build R2 Bluebeard
Build B1 Bluebeard

98) Danner: Build R2 Garrett

99) zoltar: Build R3 Bluebeard

100) Danner: Trade R3 G3 Danner

101) zoltar: Trade R2 G2 Bluebeard
	Danner: Garrett is back, hurray!

102) Danner: Sacrifice G1 Danner
Build B2 Zoltar

103) zoltar: Build G1 Bluebeard

104) Danner: Sacrifice Y1 Orland
Move R2 Garrett Danner

105) zoltar: Attack B2 Zoltar

106) Danner: Build Y1 Zoltar

107) zoltar: Move Y2 Builder Garrett

108) Danner: Build G1 Zoltar

109) zoltar: Sacrifice R3 Bluebeard
Attack R1 Garrett
Attack G1 Zoltar
Attack G1 Zoltar

110) Danner: Attack G1N Zoltar

111) zoltar: Sacrifice G2 Bluebeard
Build R2 Garrett
Build R3 Caduca


112) Danner: Discover B1 Zoltar G2 Karras

113) zoltar: Move B2 Bluebeard Karras

114) Danner: Attack G1N Zoltar

115) zoltar: Sacrifice G2 Bluebeard
Build R3 Bluebeard
Build R3 Garrett

116) Danner: Build G2 Zoltar

117) zoltar: Attack G2 Zoltar

118) Danner: Move G1 Zoltar Builder

119) zoltar: Sacrifice R3 Garrett
Attack G1 Zoltar
Attack Y1 Zoltar
Attack Y1 Zoltar

120) Danner: Build G2 Builder

121) zoltar: Sacrifice G2 Zoltar
Build G2 Bluebeard
Build G3 Zoltar

122) Danner: Pass

123) zoltar: Build R3 Garrett

124) Danner: Pass

125) zoltar: Move R3 Garrett Builder

126) Danner: Pass

127) zoltar: Sacrifice R3 Bluebeard
Attack B1 Karras
Attack G2 Builder
Attack G1 Builder

128) Danner: Pass

129) zoltar: Sacrifice G2 Builder
Build G2 Bluebeard
Build R3 Bluebeard

130) Danner: Pass

131) zoltar: Move R2 Bluebeard Danner
	Danner: I bet null-move heuristic would not work with HomeWorlds. :D

132) Danner: Sacrifice R2 Danner
Attack R2N Danner
Pass
	Danner: Even the Global Reserve Stash has gone bankrupt.

133) zoltar: Sacrifice Y3 Zoltar
Move Y1 Zoltar Karras
Move B2 Karras Caduca
Move B1 Karras Caduca

134) Danner: Pass
	zoltar: My starfleet now rules the known galaxy!
	Danner: My starfleet is getting tired of doing nothing.

135) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Caduca
Build R2 Bluebeard

136) Danner: Pass

137) zoltar: Sacrifice Y3 Caduca
Move R1 Caduca Danner
Move R1 Garrett Danner
Move R2 Bluebeard Danner
Catastrophe Danner R

138) Danner: Pass
	Danner: Nice fleet!

139) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Garrett
Build R1 Caduca
	zoltar: Thanks. I guess it's time to attack!

140) Danner: Move G3 Danner Bluebeard
Catastrophe Bluebeard G

	Danner: Oh, then this was cruel :(
I didn't really think it will allow me to do this. HW rules don't allow this.
	Danner: "Oh, then this was cruel" I mean, what I did. I'm not sure how well I can express myself in English.
I remembered that this rule was implemented, but it seems, not completly, or I'm just wrong.
	Danner: Anyway, congratulations on your victory, and sorry for the sudden end.
	zoltar: Oh, well, I was planning to assimilate the Danner homeworld peacefully.... But that's interesting to know. You used to not be able to abandon your homeworld, and I wonder what happens if you blow the other guy's up in the same move?
	Danner: Yeah, rightful question.


14476)
Started: 2009.12.11, Ended: 2010.1.4
Participants: zoltar (S), shmil1 (N)
Winner: zoltar

1) shmil1: Homeworld R1 B3 G3

2) zoltar: Homeworld B2 R3 G3

3) shmil1: Build G1 Shmil1

4) zoltar: Build G1 Zoltar

5) shmil1: Sacrifice G3 Shmil1
Build G1 Shmil1
Build G2 Shmil1
Build G2 Shmil1

6) zoltar: Trade G1 Y1 Zoltar

7) shmil1: Trade G2 Y2 Shmil1

8) zoltar: Build Y1 Zoltar

9) shmil1: Discover G2 Shmil1 R2 K25

10) zoltar: Trade Y1 R1 Zoltar

11) shmil1: Trade G1 B1 Shmil1

12) zoltar: Build Y1 Zoltar

13) shmil1: Move B1 Shmil1 K25

14) zoltar: Trade Y1 B1 Zoltar

15) shmil1: Sacrifice G2 K25
Build B1 K25
Build B2 K25

16) zoltar: Build B2 Zoltar

17) shmil1: Sacrifice Y2 Shmil1
Discover B2 K25 Y1 Mac
Move B1 K25 Mac

18) zoltar: Move B2 Zoltar Mac

19) shmil1: Move B2 Mac Zoltar

20) zoltar: Sacrifice R1 Zoltar
Attack B1 Mac

21) shmil1: Build G1 Shmil1

22) zoltar: Sacrifice B1 Zoltar
Trade B2 R2 Mac

23) shmil1: Sacrifice B1 K25
Trade B2 R2 Zoltar

24) zoltar: Attack R2 Zoltar

25) shmil1: Build G1 Shmil1
	zoltar: Zoronians cheer in celebration as the Zoltar homeworld has been successfully defended from alien barbarians!

26) zoltar: Discover R2 Mac Y2 Deathstar

27) shmil1: Trade G1 R1 Shmil1

28) zoltar: Move R2 Deathstar Shmil1

29) shmil1: Trade G1 Y1 Shmil1

30) zoltar: Sacrifice R2 Zoltar
Attack G1 Shmil1
Attack Y1 Shmil1



14561)
Started: 2009.12.11, Ended: 2010.1.25
Participants: zoltar (S), ZackStack (N)
Winner: zoltar

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Thanks for the challenge Zoltar!  Have a good game.

2) zoltar: Homeworld B1 R3 G3

3) ZackStack: Build G1 Zackstack

4) zoltar: Build G1 Zoltar

5) ZackStack: Trade G1 Y1 Zackstack

6) zoltar: Trade G1 Y1 Zoltar

7) ZackStack: Build G1 Zackstack

8) zoltar: Build G1 Zoltar

9) ZackStack: Discover G1 Zackstack B3 Or
	zoltar: Hi, ZackStack!
	ZackStack: Hello zoltar!  I see we play similar opens... now to name a system something that strikes fear into all Zendo players... ;-)

10) zoltar: Trade G1 B1 Zoltar
	zoltar: "Mu" perhaps?

11) ZackStack: Build G1 Or

12) zoltar: Build B1 Zoltar

13) ZackStack: Build G1 Or

14) zoltar: Build G2 Zoltar

15) ZackStack: Build G2 Zackstack

16) zoltar: Discover G2 Zoltar Y2 Yellowstone

17) ZackStack: Trade G1 Y1 Or

18) zoltar: Build Y2 Zoltar

19) ZackStack: Build Y2 Or

20) zoltar: Discover Y1 Zoltar B2 Blueridge

21) ZackStack: Trade Y2 B2 Or

22) zoltar: Move B1 Zoltar Yellowstone

23) ZackStack: Discover B2 Or G2 Greengorge

24) zoltar: Sacrifice G2 Yellowstone
Build B3 Yellowstone
Build B3 Yellowstone

25) ZackStack: Build Y2 Or
	ZackStack: Ooo... Nice move! And Merry Christmas!

26) zoltar: Trade B3 R3 Yellowstone
	zoltar: Thanks, and Merry Christmas to you too.

27) ZackStack: Build B3 Greengorge

28) zoltar: Sacrifice B1 Zoltar
Trade B3 Y3 Yellowstone

29) ZackStack: Trade B2 R2 Greengorge

30) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Blueridge
Build R1 Yellowstone
	zoltar: Well, I'll try something fancy again!

31) ZackStack: Trade G1 R1 Or

32) zoltar: Trade R1 G1 Yellowstone
	ZackStack: Yup.  You're getting way too fancy for me over there :-)

33) ZackStack: Build R1 Greengorge

34) zoltar: Build R2 Yellowstone

35) ZackStack: Discover R1 Or G2 With

36) zoltar: Move R3 Yellowstone Or
	zoltar: Now I'm really confused. So many colors and planets and possibilities.

37) ZackStack: Sacrifice Y2 Or
Move R1 With Zoltar
Move R1 Greengorge Zoltar
	ZackStack: Isn't that why we play this game? ;-)

Also... I find it is manditory to hum Vader's Theme whenever moving a big red ship :-)

38) zoltar: Sacrifice R2 Yellowstone
Attack G1 Or
Attack Y1 Or

39) ZackStack: Sacrifice G2 Zackstack
Build R2 Zoltar
Build Y2 Zackstack
Catastrophe Zoltar Red


40) zoltar: Sacrifice Y2 Zoltar
Discover Y3 Yellowstone B3 Bluemoon
Discover G1 Yellowstone B1 Blueberry
	zoltar: Well, I may be doomed now...
	ZackStack: I'm sure you'll find a way to keep things interesting!

41) ZackStack: Discover Y2 Zackstack G3 Greengiant

42) zoltar: Trade Y3 G3 Bluemoon
	zoltar: Well, this is the best I can come up with. I can for now try to not let you get more than one blue piece so I may stay alive!
	ZackStack: Effective... now I need a new plan :-)

43) ZackStack: Trade B3 Y3 Greengorge

44) zoltar: Sacrifice G3 Bluemoon
Build Y2 Or
Build B2 Yellowstone
Build B3 Yellowstone

45) ZackStack: Build G1 Zackstack
	ZackStack: On second thought...

46) zoltar: Build G2 Or

47) ZackStack: Trade G1 R1 Zackstack
	zoltar: Yeah, I was afraid if I traded in a Y3 you'd grab it: I liked my position much better when I had all 3 Y3 ships. 
	zoltar: But now I've successfully hoarded the Blues!
	ZackStack: Well... I wasn't going to break in on the blue market any time soon... so snagging some movement seemed like the most valuable move.

48) zoltar: Move B3 Yellowstone Greengiant

49) ZackStack: Discover Y2 Greengiant R2 Redsun

50) zoltar: Build B3 Greengiant

51) ZackStack: Move R2 Greengorge Blueberry
	ZackStack: Sorry for the delay... I haven't had much time to sit an puzzle through games lately...  I should be back on track now!  Erm... in RL anyway.  I'm feeling quite in trouble here :-)

52) zoltar: Sacrifice G1 Blueberry
Build G1 Or

53) ZackStack: Discover R1 Zackstack G3 Greenglob
	ZackStack: I even saw that coming... what to do about it? Not sure...

54) zoltar: Trade B3 R3 Greengiant

55) ZackStack: Sacrifice Y2 Redsun
Move R2 Blueberry Yellowstone
Move R1 Greenglob Zoltar
	zoltar: Retreat!
	ZackStack: How have you not turned that ship advantage into a win yet? :-p

56) zoltar: Sacrifice R3 Greengiant
Attack R1 Zoltar
Attack R2 Yellowstone
Pass

57) ZackStack: Build Y2 Greengorge
	zoltar: I'm working on it! But I'd like more big ships first.
	ZackStack: Well... who wouldn't :-p

58) zoltar: Move G1 Or Zackstack

59) ZackStack: Move Y3 Greengorge Zoltar
	zoltar: I knew having a second red ship would come in handy!

60) zoltar: Sacrifice Y3 Blueridge
Move G2 Or Zackstack
Move G1 Or Zackstack
Move B3 Greengiant Zackstack
Catastrophe Zackstack G

61) ZackStack: Move Y2 Greengorge Zoltar
	zoltar: Attack!!!
	ZackStack: I'm not even in position to go down swinging here... good game!  I'll enjoy watching the end of my homeworld :-)

62) zoltar: Sacrifice R3 Or
Attack Y2 Zoltar
Attack Y3 Zoltar
Attack Y1 Zackstack

	ZackStack: I think we'll watch from here where its safe :-)
	zoltar: gg -- wanna play again?
	ZackStack: I don't think I've ever lost *all* of my ships before :-)  And yes, I'd enjoy another game!


14718)
Started: 2009.12.11, Ended: 2009.12.17
Participants: zoltar (S), larry (N)
Winner: zoltar



14769)
Variants: "Hard time"
Started: 2009.12.12, Ended: 2010.1.29
Participants: wyons (S), zoltar (N)
Winner: wyons

1) zoltar: Homeworld R1 B3 G3

2) wyons: Homeworld R2 B1 G3

3) zoltar: Build G1 Zoltar

4) wyons: Build G1 Wyons

5) zoltar: Trade G1 Y1 Zoltar

6) wyons: Trade G1 Y1 Wyons

7) zoltar: Build G1 Zoltar
	zoltar: b g1 zoltar

8) wyons: Build G1 Wyons

9) zoltar: Trade G1 B1 Zoltar

10) wyons: Trade G1 B1 Wyons

11) zoltar: Build B2 Zoltar

12) wyons: Build B2 Wyons

13) zoltar: Trade B2 R2 Zoltar

14) wyons: Trade B1 R1 Wyons

15) zoltar: Build G1 Zoltar

16) wyons: Build G1 Wyons

17) zoltar: Discover G1 Zoltar B2 Blueridge

18) wyons: Discover G1 Wyons Y3 Armadillo

19) zoltar: Discover B1 Zoltar G2 Greenbelt

20) wyons: Move B2 Wyons Armadillo

21) zoltar: Move R2 Zoltar Blueridge

22) wyons: Move R1 Wyons Armadillo

23) zoltar: Build G1 Zoltar

24) wyons: Build Y1 Wyons

25) zoltar: Build Y2 Zoltar

26) wyons: Build Y2 Wyons

27) zoltar: Move Y1 Zoltar Blueridge

28) wyons: Discover Y1 Wyons G3 Zebra

29) zoltar: Build G2 Blueridge

30) wyons: Trade Y1 R1 Wyons

31) zoltar: Discover G2 Blueridge Y3 Yellowsun

32) wyons: Build G2 Wyons

33) zoltar: Discover G1 Blueridge Y3 Yellowjacket

34) wyons: Move B2 Armadillo Greenbelt

35) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Greenbelt
Build B2 Greenbelt
Catastrophe Greenbelt B

36) wyons: Sacrifice G3 Wyons
Build Y1 Wyons
Build G2 Armadillo
Build G3 Wyons

37) zoltar: Build Y2 Zoltar

38) wyons: Trade Y1 B1 Wyons

39) zoltar: Sacrifice Y2 Zoltar
Move G1 Yellowjacket Wyons
Move G2 Yellowsun Wyons
Catastrophe Wyons G

40) wyons: Move G1 Armadillo Wyons
	wyons: woops, I missed that.

41) zoltar: Discover R2 Blueridge Y3 Yellowstone
	wyons: ...and it may be fatal

42) wyons: Build B1 Wyons
	zoltar: Yeah, but I have no easy way to exploit it yet, but only if I can attack before we both grow more 3-pip ships, then you're done for.
	zoltar: Actually, I better undo my move and think about this tomorrow, as I'm sleepy and I've had an exhaustive weekend of partying!

43) zoltar: Move G1 Zoltar Blueridge

44) wyons: Move B1 Wyons Armadillo

45) zoltar: Discover G1 Blueridge Y3 Mellowyellow

46) wyons: Build B2 Armadillo

47) zoltar: Build Y1 Zoltar

48) wyons: Build B2 Armadillo

49) zoltar: Build Y2 Zoltar

50) wyons: Build B3 Wyons
	zoltar: Wow, I'm about ready to resign. I think I'm lost.

	zoltar: Yeah, that is just as good as knocking out all my yellows. I'm shut out of the Blues, and you can simply swap them for all the other larges and then grow them back immediately again. I don't have a chance. Well played. We can play again if you wish. Thanks!


14804)
Started: 2009.12.13, Ended: 2009.12.23
Participants: supergnouf (S), captncavern (N)
Winner: supergnouf

1) captncavern: Homeworld B2 G3 R3

2) supergnouf: Homeworld G3 B1 Y3

3) captncavern: Build R1 Captncavern

4) supergnouf: Build Y1 Supergnouf
	supergnouf: ca t'as pas suffit la derniere fois :)

5) captncavern: Trade R1 Y1 Captncavern
	captncavern: Ben, on va essayer de se rattraper ce coup-ci :)

6) supergnouf: Trade Y1 R1 Supergnouf

7) captncavern: Build R1 Captncavern

8) supergnouf: Build Y1 Supergnouf

9) captncavern: Trade R1 G1 Captncavern

10) supergnouf: Trade Y1 G1 Supergnouf

11) captncavern: Build Y1 Captncavern
	captncavern: Ben alors, tu joues, mais tu réponds plus aux mails ?

12) supergnouf: Build R1 Supergnouf

13) captncavern: Discover Y1 Captncavern B1 Un

14) supergnouf: Discover R1 Supergnouf Y2 Picoro

15) captncavern: Build R1 Captncavern

16) supergnouf: Build R2 Supergnouf

17) captncavern: Build R2 Captncavern

18) supergnouf: Build R2 Supergnouf

19) captncavern: Move R2 Captncavern Un
	captncavern: Oh ! Qu'est-ce que tu fais ? Tu veux plus me parler ? :p

20) supergnouf: Sacrifice G1 Supergnouf
Build R3 Picoro
	supergnouf: non, mais j'ai pas grand chose à dire et je suis un peu occupé :)
par ailleurs, je peux maintenant jouer de mon lieu de travail :D je suis pas sur que ce soit une bonne chose, m'enfin, comme ca les journées passent plus vite.

21) captncavern: Discover R2 Un Y2 Deux

22) supergnouf: Discover R2 Supergnouf Y2 Bou

23) captncavern: Build R3 Captncavern

24) supergnouf: Sacrifice Y3 Supergnouf
Move R1 Picoro Un
Move R1 Un Captncavern
Discover R3 Picoro Y1 Freeze
Catastrophe Captncavern R

25) captncavern: Build Y2 Captncavern

26) supergnouf: Move R3 Freeze Captncavern
	captncavern: Je croyais pas que tu ferais ça, mais c'est vrai que ça me fout dans la m...

27) captncavern: Trade G1 R1 Captncavern

28) supergnouf: Sacrifice R2 Bou
Attack Y2 Captncavern
Attack R1 Captncavern
	captncavern: Tiens, tu peux aller sur cette page et me dire ce que tu penses de l'idée de logo de Fumie : http://forums.superdupergames.org/viewtopic.php?p=7954#7954 ?
	captncavern: Fumie dit qu'elle préfèrerait un cercle entier autour...

29) captncavern: Build Y1 Captncavern

30) supergnouf: Sacrifice R2 Supergnouf
Attack Y1 Captncavern
Attack Y1 Captncavern
	captncavern: Vite vu, celle-là !



14846)
Variants: "Hard time"
Started: 2009.12.16, Ended: 2010.1.31
Participants: jeep (S), stoneaxe (N)
Winner: jeep

1) stoneaxe: Homeworld B2 Y3 G3

2) jeep: Homeworld B1 R2 G3

3) stoneaxe: Build G1 Stoneaxe

4) jeep: Build G1 Jeep

5) stoneaxe: Trade G1 Y1 Stoneaxe

6) jeep: Trade G1 Y1 Jeep
	stoneaxe: Hi Jeep.  Thanks for the game of HW!  I haven't played this one in awhile, so I might be rusty.
	jeep: Yeah, me too. ;)

7) stoneaxe: Build G1 Stoneaxe

8) jeep: B G1 Jeep

9) stoneaxe: Trade G1 R1 Stoneaxe

10) jeep: D G1 Jeep Y3 Bank

11) stoneaxe: Build G1 Stoneaxe

12) jeep: D Y1 Jeep Y3 Submarine

13) stoneaxe: Discover G1 Stoneaxe B1 Bogey

14) jeep: Build G1 Jeep

15) stoneaxe: Build G2 Stoneaxe

16) jeep: Trade G1 Y1 Jeep

17) stoneaxe: Build Y2 Stoneaxe

18) jeep: Build Y2 Jeep



14850)
Variants: "Hard time"
Started: 2009.12.19, Ended: 2010.1.25
Participants: agentofchaos (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B2 G3

2) agentofchaos: Homeworld R1 B3 G3
	ZackStack: Here's to a better game than that last one... :-)

3) ZackStack: Build G1 Zackstack
	agentofchaos: We'll see...

4) agentofchaos: Build G1 Agentofchaos

5) ZackStack: Trade G1 Y1 Zackstack

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) ZackStack: Build G1 Zackstack

8) agentofchaos: Build G1 Agentofchaos

9) ZackStack: Discover G1 Zackstack B3 Bigblue

10) agentofchaos: Build Y1 Agentofchaos

11) ZackStack: Build Y2 Zackstack

12) agentofchaos: Build Y2 Agentofchaos

13) ZackStack: Build G1 Bigblue

14) agentofchaos: Build G2 Agentofchaos

15) ZackStack: Sacrifice Y2 Zackstack
Discover G1 Bigblue Y2 Jump
Move G1 Jump Agentofchaos
Catastrophe Agentofchaos Green
	ZackStack: Returning a favor from last game? :-)

16) agentofchaos: Trade Y2 G2 Agentofchaos
	agentofchaos: oops...

17) ZackStack: Build Y2 Zackstack

18) agentofchaos: Build Y2 Agentofchaos

19) ZackStack: Build G1 Bigblue

20) agentofchaos: Build G1 Agentofchaos

21) ZackStack: Build G2 Zackstack

	ZackStack: Lousy hard time...


14525)
Started: 2009.12.21, Ended: 2010.1.17
Participants: rawg (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy...  I'm travelling on vacation right now, so while I'm happy to play, my moves might not be very prompt for a bit...

2) rawg: Homeworld G3 B2 Y3

3) TwoShort: Build G1 Twoshort
	rawg: Hello. No worries. Enjoy your vacation :)

4) rawg: Build Y1 Rawg

5) TwoShort: Trade G1 Y1 Twoshort

6) rawg: Trade Y1 B1 Rawg

7) TwoShort: Build G1 Twoshort

8) rawg: Build Y1 Rawg
	rawg: a happy new year to you

9) TwoShort: Build G1 Twoshort

10) rawg: Discover B1 Rawg G1 Smalls

11) TwoShort: Discover G1 Twoshort B2 Bluonia

12) rawg: Sacrifice Y1 Rawg
Discover B1 Smalls G2 Med

13) TwoShort: Build G1 Bluonia



14456)
Started: 2009.12.22, Ended: 2009.12.22
Participants: ts52 (S), matthulgan (N)
Winner: ts52

	ts52: Sorry about that. I apparently missed several new game emails.


14893)
Started: 2009.12.25, Ended: 2010.3.27
Participants: ts52 (S), face (N)
Winner: ts52

1) face: Homeworld R3 B2 G3

2) ts52: Homeworld Y1 B2 G3

3) face: Build G1 Face
	ts52: Have a good game.

4) ts52: B G1 Ts52

5) face: Trade G3 Y3 Face

6) ts52: Trade G1 Y1 Ts52

7) face: Build G1 Face

8) ts52: Discover Y1 Ts52 G3 Grover

9) face: Trade G1 R1 Face

10) ts52: Build G1 Ts52

11) face: Discover R1 Face Y1 Smash

12) ts52: B Y2 Grover

13) face: Build Y2 Face

14) ts52: T G1 B1 Ts52

15) face: Build G1 Face
	face: build g1 face

16) ts52: M B1 Ts52 Grover

17) face: Trade Y2 R2 Face

18) ts52: Trade Y2 R2 Grover

19) face: Build Y2 Face

20) ts52: Build Y2 Grover

21) face: Move R2 Face Smash

22) ts52: Build R1 Grover

23) face: Move G1 Face Smash

24) ts52: B B1 Grover

25) face: Trade Y2 B2 Face

26) ts52: Move R1 Grover Ts52

27) face: Build Y2 Face

28) ts52: B R1 Grover

29) face: Move B2 Face Smash

30) ts52: Discover R2 Grover G2 Kermit

31) face: Move Y2 Face Smash

32) ts52: M Y1 Grover Kermit

33) face: Discover Y2 Smash R3 Waste

34) ts52: M B1 Grover Kermit

35) face: Build G1 Smash

36) ts52: Build G2 Ts52

37) face: Move G1 Smash Waste

38) ts52: D G2 Ts52 R3 Elmo

39) face: Discover R1 Smash G3 Plaster

40) ts52: Build G2 Ts52

41) face: Build R2 Plaster

42) ts52: D G2 Ts52 Y3 Bigbird

43) face: Build B1 Smash

44) ts52: S G2 Elmo
B G2 Ts52
B R3 Grover

45) face: Move G1 Smash Plaster

46) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Grover
Build Y3 Kermit

47) face: Sacrifice Y2 Waste
Move G1 Waste Ts52
Move G1 Plaster Ts52
Catastrophe Ts52 Green

48) ts52: Sacrifice Y2 Grover
Move Y3 Kermit Grover
Move Y3 Grover Ts52

49) face: Move B1 Smash Plaster

50) ts52: Build R3 Kermit
	ts52: Nice move. I should have seen that coming.
	face: thanks... still thinking this is going to be your game in the long run.

51) face: Build B3 Plaster

52) ts52: T Y3 G3 Ts52

53) face: Trade B3 Y3 Plaster

54) ts52: M R3 Grover Smash

55) face: Discover R2 Smash Y2 Waste

56) ts52: Attack B2 Smash

57) face: Build Y2 Plaster

58) ts52: Discover R1 Grover G1 Robin

59) face: Build B3 Plaster

60) ts52: Sacrifice Y2 Grover
Move B1 Kermit Plaster
Move B2 Smash Plaster
Catastrophe Plaster Blue

61) face: Build G1 Face

62) ts52: Build G2 Ts52

63) face: Trade G1 B1 Face

64) ts52: Sacrifice G3 Ts52
Build G1 Bigbird
Build G3 Ts52
Build Y2 Kermit

65) face: Discover B1 Face B1 Tank

66) ts52: Move Y2 Kermit Grover

67) face: Move R2 Plaster Robin

68) ts52: Move G1 Bigbird Smash

69) face: Attack R1 Robin

70) ts52: S G2 Bigbird
B G2 Smash
B Y3 Grover

71) face: Move Y2 Plaster Tank

72) ts52: Move R3 Kermit Tank

73) face: Move Y3 Plaster Kermit

74) ts52: Attack Y2 Tank

75) face: Sacrifice R2 Robin
Attack Y1 Kermit
Attack R2 Kermit

76) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build B2 Grover

77) face: Move Y1 Kermit Plaster

78) ts52: Attack B1 Tank

79) face: Discover R2 Kermit B3 Trash

80) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Grover
Build B3 Tank

81) face: Move Y1 Plaster Robin

82) ts52: Move R2 Ts52 Plaster

83) face: Move R1 Robin Plaster

84) ts52: Move G2 Smash Grover

85) face: Sacrifice Y3 Kermit
Move R1 Plaster Ts52
Move R1 Plaster Ts52
Move R2 Trash Ts52

86) ts52: Sacrifice G3 Ts52
Build G2 Smash
Build G3 Ts52
Build Y3 Tank
Catastrophe Ts52 Red

	face: now i concede. just wanted to have a little fun first.
i got sorely outplayed.
	ts52: It was fun, thanks for the game.


14948)
Variants: "Unrated"
Started: 2010.1.4, Ended: 2010.1.6
Participants: face (S), logikal (N)
Winner: face

1) logikal: Homeworld G2 B1 Y3

2) face: Homeworld R3 B2 G3
	makertron: I want to play.

3) logikal: Trade Y3 G3 Logikal




14904)
Started: 2010.1.5, Ended: 2010.1.17
Participants: ts52 (S), MatrixFrog (N)
Winner: ts52

1) MatrixFrog: Homeworld G2 B3 Y3

2) ts52: Homeworld Y1 B2 G3

3) MatrixFrog: Build Y1 Matrixfrog
	ts52: Have a good game.

4) ts52: Build G1 Ts52

5) MatrixFrog: Build Y1 Matrixfrog

6) ts52: Discover G1 Ts52 Y3 Bigbird

7) MatrixFrog: Discover Y1 Matrixfrog G1 Pea

8) ts52: Build G1 Bigbird

9) MatrixFrog: Build Y2 Matrixfrog

10) ts52: B G2 Ts52

11) MatrixFrog: Discover Y1 Pea G3 Broccoli

12) ts52: Trade G2 Y2 Ts52

13) MatrixFrog: Build Y2 Broccoli

14) ts52: Discover Y2 Ts52 G3 Kermit

15) MatrixFrog: Trade Y2 G2 Matrixfrog

16) ts52: M G1 Bigbird Ts52

17) MatrixFrog: Trade Y1 B1 Matrixfrog

18) ts52: S G3 Ts52
B G1 Bigbird
B G2 Bigbird
B G3 Ts52

19) MatrixFrog: Build Y1 Broccoli

20) ts52: Discover G2 Bigbird B1 Gonzo

21) MatrixFrog: Sacrifice G2 Matrixfrog
Build Y2 Matrixfrog
Pass

22) ts52: Sacrifice G3 Ts52
Build Y3 Kermit
Build G2 Gonzo
Build G3 Ts52

23) MatrixFrog: Sacrifice Y3 Matrixfrog
Move Y1 Broccoli Ts52
Move Y1 Broccoli Ts52
Move Y2 Broccoli Ts52
Catastrophe Ts52 Y

24) ts52: B G3 Gonzo

25) MatrixFrog: Build Y1 Matrixfrog

26) ts52: T G3 R3 Gonzo

27) MatrixFrog: Trade Y1 R1 Matrixfrog

28) ts52: B G3 Gonzo

29) MatrixFrog: Build Y1 Matrixfrog

30) ts52: T G3 R3 Gonzo

31) MatrixFrog: Discover Y1 Matrixfrog B1 Wokka

32) ts52: S Y3 Kermit
M R3 Gonzo Matrixfrog
M G2 Gonzo Matrixfrog
M G2 Gonzo Matrixfrog

33) MatrixFrog: Build Y1 Matrixfrog

34) ts52: S R3 Matrixfrog
A R1 Matrixfrog
A Y2 Matrixfrog
A Y1 Matrixfrog

35) MatrixFrog: Build B2 Matrixfrog

36) ts52: T G2 B2 Matrixfrog
C Matrixfrog Blue



15056)
Started: 2010.1.6, Ended: 2010.2.2
Participants: Asur (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld G2 Y3 B3
	ZackStack: Hey Ze' Mario!  Welcome to SDG.  Let me know if you have any questions about how things work.

2) Asur: Homeworld G1 Y2 B3
	Asur: Hello! I'll review the manual in a minute and play. Thanks.
	Asur: How do I see if I'm evil or good?

3) ZackStack: Build B1 Zackstack
	ZackStack: Evil and good are not necessary in 2 player games.  We just have to take out the other player's homeworld!
	ZackStack: Also... its a good idea to have different sized stars in your homeworld than I have in mine (say, small green and medium yellow).  With the movement rules that would keep me "farther away"  Feel free to undo, or we can just try this the way it is!

4) Asur: Build B1 Asur
	Asur: Ok, Thanks!

5) ZackStack: Discover B1 Zackstack G1 Emerald
	ZackStack: I should have thought to mention it when I placed my Homeworld... 

6) Asur: Discover B1 Asur Y3 Saphire
	Asur: No problem ;)
	Asur: You should construct another small blue ship, right? :P
	ZackStack: Yup.  You pretty well need to start with blue and green at your homeworld... and your first move is always to make a small ship.  From there you slowly get more options... but the game doesn't really get going for a few turns.

7) ZackStack: Build B1 Emerald
	ZackStack: Also... if you had left your homeworld sizes as they were... my small blue ship at emerald would have been "right next" to your homeworld instead of needing to visit a large first.

8) Asur: Build B2 Asur

9) ZackStack: Build B2 Zackstack

10) Asur: Trade B2 R2 Asur

11) ZackStack: Trade B1 Y1 Emerald
	ZackStack: Turn based works pretty well for this game... but I prefer having my opponent across the table to make it easier to chat about tactics :-)
	Asur: I know. I'm not a big fan of online versions for games. I tend to get lost... :)

12) Asur: Move R2 Asur Saphire

13) ZackStack: Trade B2 R2 Zackstack

14) Asur: Move R2 Saphire Emerald

15) ZackStack: Sacrifice Y1 Emerald
Move B1 Emerald Saphire

16) Asur: Build B1 Asur
	ZackStack: Good move... pleasantly aggressive.  I probably should have traded for a yellow on my last turn so I could sacrifice for two moves...

17) ZackStack: Trade B1 G1 Saphire
	Asur: Oh, you can move two ships at once? I didn't know that :)

18) Asur: Trade B1 R1 Saphire
	ZackStack: If you sacrifice a ship you may perform its technology actions once for each pip on the icehouse piece.  On my turn I sacrificed my little yellow ship to make one move with my blue ship (mostly to keep you from getting either).  Its generally a more valuable move when you sacrifice larger ships :-)

19) ZackStack: Sacrifice R2 Zackstack
Attack R1 Saphire
Pass

20) Asur: Build R1 Emerald

21) ZackStack: Build G2 Saphire
	ZackStack: Here I thought we could coexist peacfully around that star :-p  

22) Asur: Build B1 Asur
	Asur: Eheh. Sorry I took so long. I was kind of stuck regarding what I should do... :P I just realized I can't bring my red ships back home, ahah
	ZackStack: No problem.  One of my friend's comments during his first couple games was: "I can never do what I want to do!"  There is definitely a large amount of planning ahead necessary in this one!

23) ZackStack: Build B1 Zackstack

24) Asur: Discover B1 Asur G3 Diamond

25) ZackStack: Sacrifice B1 Zackstack
Trade G1 B1 Saphire

26) Asur: Move B1 Asur Diamond

27) ZackStack: Build B2 Zackstack
	ZackStack: There.  Now I'm ready to cause some trouble :-)

28) Asur: Trade B1 Y1 Diamond
	Asur: Eheh 

	ZackStack: That's a really bad move.  I can simply move my b1 ship from Saphire to Asur to cause a blue catastrophe.  You would loose all your ships at your homeworld and loose the game.  Feel free to undo!
	Asur: Just checking if you were paying attention.
-blush- :P

29) ZackStack: Discover B2 Zackstack Y1 Topaz

30) Asur: Move Y1 Diamond Emerald
	Asur: Sigh... I completely messed up the colors.

31) ZackStack: Build G1 Saphire
	ZackStack: Bummer.  Its no fun when your ships won't do what you think they should! :-)

32) Asur: Build Y1 Emerald

33) ZackStack: Discover B2 Topaz G3 Garnet

34) Asur: Discover Y1 Emerald R2 Stall

35) ZackStack: Build B1 Garnet
	ZackStack: Saphire is actually defended from that right now.  My G2 ship can use the attack action on your R2 ship since I have red technology in the system (my R1). Please undo or I will simply flip your ship to the dark... I mean... my side :-)

36) Asur: Build B2 Asur

37) ZackStack: Trade B2 Y2 Garnet

38) Asur: Move Y1 Emerald Diamond

39) ZackStack: Build B2 Garnet

40) Asur: Move B2 Asur Diamond

41) ZackStack: Build B2 Saphire

42) Asur: Build B3 Diamond
	ZackStack: Be careful... or its going to be business time! :-p

43) ZackStack: Trade B1 Y1 Saphire
	Asur: Garnet: Sacrificing your Y2 to move both blues to my homeworld, right, causing overpopulation?

44) Asur: Move B3 Diamond Emerald
	ZackStack: Yes.  Leaving two blue at your home would have won me the game.  I'll have to try something else now :-)

45) ZackStack: Sacrifice Y2 Garnet
Move B1 Garnet Asur
Move B2 Garnet Asur
	Asur: You wish. :P

46) Asur: Trade B3 R3 Asur

47) ZackStack: Sacrifice B2 Saphire
Trade B1 R1 Asur
Trade B2 R2 Asur

48) Asur: Sacrifice B1 Diamond
Trade R3 B3 Asur

49) ZackStack: Move R2 Asur Saphire
	ZackStack: Let's see how this goes ;-)

50) Asur: Move Y1 Diamond Emerald
	Asur: Hummm
	ZackStack: I should have taken a longer look at the ships availible in the stacks before I did that... lets see how this works!

51) ZackStack: Build B1 Zackstack

52) Asur: Trade B3 R3 Emerald
	Asur: Talk about prolonging your eventual death. :)
	Asur: *my 
	ZackStack: Yeah... I should have picked yellow or green to blow up one of your home stars this turn.  I was greedy and hoped for another bad mistake :-D

53) ZackStack: Move R1 Saphire Emerald
Catastrophe Emerald Red

54) Asur: Build Y2 Emerald

55) ZackStack: Move Y1 Saphire Asur

56) Asur: Sacrifice Y1 Stall
Move B2 Diamond Emerald
	ZackStack: I feel a little dirty for doing this...

57) ZackStack: Build Y1 Asur
	Asur: Nooooo
	Asur: Enemies forever, Santa! :)
	ZackStack: Well... at least until the end of this game :-)

58) Asur: Trade Y1 B1 Emerald

59) ZackStack: Trade B1 R1 Zackstack

60) Asur: Trade B3 R3 Asur

61) ZackStack: Sacrifice G2 Saphire
Build R1 Asur
Build R2 Asur
Catastrophe Asur Red

	Asur: No, no more undos :) I'm on my own, now. 

(prepare yourself for a pikemen or alien city play after this :))
	ZackStack: Bad time to pick being on your own I fear :-)

I'll be happy to play either game (or both) send me a challenge and I'll accept!

Thanks for trying out Homeworlds as well.  I prefer 2 player person... but have played the vast majority of games on here.


15040)
Variants: "Unrated"
Started: 2010.1.6, Ended: 2010.3.31
Participants: makertron (S), logikal (N)
Winner: logikal

1) logikal: Homeworld R2 B1 G3

2) makertron: Homeworld R2 B1 G3

3) logikal: Build G1 Logikal

4) makertron: Build G1 Makertron

5) logikal: Trade G1 Y1 Logikal

6) makertron: Trade G1 Y1 Makertron

7) logikal: Discover Y1 Logikal Y3 L1

8) makertron: Trade Y1 R1 Makertron

9) logikal: Move Y1 L1 Logikal

10) makertron: Trade R1 Y1 Makertron

11) logikal: Build G1 Logikal

12) makertron: Build G1 Makertron

13) logikal: Discover G1 Logikal G3 L1

14) makertron: Discover G1 Makertron Y3 L2

15) logikal: Build Y1 Logikal

16) makertron: Build G1 L2

17) logikal: Sacrifice G1 L1
Build Y2 Logikal

18) makertron: Build Y2 Makertron

19) logikal: Build G1 Logikal

20) makertron: Build G2 L2

21) logikal: Trade Y1 B1 Logikal

22) makertron: Build Y1 Makertron

23) logikal: Build B2 Logikal

24) makertron: Trade Y2 B2 Makertron

25) logikal: Discover G1 Logikal Y3 L1

26) makertron: Build Y2 Makertron

27) logikal: Sacrifice Y2 Logikal
Move G1 L1 Logikal
Move G1 Logikal L2
Catastrophe L2 Green

28) makertron: Discover Y1 Makertron Y3 Spacehat

29) logikal: Discover B1 Logikal G3 L1

30) makertron: Trade Y1 G1 Makertron

31) logikal: Build B2 L1

32) makertron: Discover Y2 Makertron B3 Jhaze

33) logikal: Trade B1 G1 L1

34) makertron: Trade G1 Y1 Makertron

35) logikal: Build G1 Logikal

36) makertron: Build G1 Makertron

37) logikal: Build Y2 Logikal

38) makertron: Build Y2 Makertron

39) logikal: Move Y1 Logikal L1

40) makertron: Move G1 Makertron Spacehat

41) logikal: Build B1 L1

42) makertron: Build B3 Makertron

43) logikal: Build Y3 L1

44) makertron: Move B2 Makertron Spacehat

45) logikal: Build Y3 Logikal

46) makertron: Build B3 Spacehat

47) logikal: Trade B2 R2 Logikal

48) makertron: Trade B3 R3 Spacehat

49) logikal: Sacrifice Y2 Logikal
Move B1 L1 Makertron
Move B2 L1 Makertron
Catastrophe Makertron Blue

50) makertron: Build B1 Spacehat

51) logikal: Build Y2 Logikal

52) makertron: Move B1 Spacehat Makertron

53) logikal: Move R2 Logikal L1

54) makertron: Build G2 Spacehat

55) logikal: Discover Y2 Logikal B3 L2

56) makertron: Build G2 Makertron



15061)
Variants: "Unrated"
Started: 2010.1.7, Ended: 2010.1.28
Participants: makertron (S), mathochist (N)
Winner: mathochist

1) mathochist: Homeworld R1 G2 B3
	mathochist: It's my first time, be gentle :)
On my first turn, do I just set up my homeworld, or do I do that and then also take an action?

2) makertron: Homeworld R2 B1 G3

3) mathochist: Build B1 Mathochist

4) makertron: Build G1 Makertron

5) mathochist: Trade B1 Y1 Mathochist

6) makertron: Trade G1 Y1 Makertron

7) mathochist: Build B1 Mathochist

8) makertron: Discover Y1 Makertron Y3 L2

9) mathochist: Trade B1 R1 Mathochist

10) makertron: Build G1 Makertron

11) mathochist: Build R1 Mathochist

12) makertron: Build G1 Makertron

13) mathochist: Discover R1 Mathochist B3 Fred

14) makertron: Trade G1 Y1 Makertron

15) mathochist: B R2 Mathochist

16) makertron: Build G1 Makertron

17) mathochist: Build Y2 Mathochist

18) makertron: Build G1 Makertron

19) mathochist: B Y2 Mathochist
C Makertron Green

20) makertron: Trade Y1 G1 Makertron

21) mathochist: M R2 Mathochist L2

22) makertron: Build G1 Makertron

23) mathochist: Move R2 L2 Makertron

24) makertron: Build G1 Makertron

25) mathochist: Attack G1 Makertron

26) makertron: Build G2 Makertron

27) mathochist: P
C Makertron G



15063)
Variants: "Hard time"
Started: 2010.1.7, Ended: 2010.3.24
Participants: alexcobo (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: Homeworld R1 B2 G3

2) alexcobo: Homeworld G3 B2 Y3

3) MadWuher: Build G1 Madwuher

4) alexcobo: Build Y1 Alexcobo

5) MadWuher: Trade G1 Y1 Madwuher

6) alexcobo: Discover Y1 Alexcobo G1 Grow

7) MadWuher: Build G1 Madwuher

8) alexcobo: Build Y1 Alexcobo

9) MadWuher: Build Y2 Madwuher

10) alexcobo: Build Y2 Grow

11) MadWuher: Discover Y1 Madwuher G3 Edora

12) alexcobo: Trade Y1 R1 Alexcobo

13) MadWuher: Build G1 Madwuher

14) alexcobo: Build R1 Alexcobo

15) MadWuher: Discover G1 Madwuher Y3 Camelot

16) alexcobo: Build R2 Alexcobo

17) MadWuher: Build G2 Camelot

18) alexcobo: Move Y2 Grow Camelot

19) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G2 Camelot
Build G3 Madwuher

20) alexcobo: Sacrifice R2 Alexcobo
Attack G2N Camelot
Attack G2N Camelot

21) MadWuher: Sacrifice G1 Madwuher
Build G1 Camelot
Catastrophe Camelot G

22) alexcobo: Trade R1 G1 Alexcobo

23) MadWuher: T G2 R2 Madwuher

24) alexcobo: Build G1 Alexcobo

25) MadWuher: Build G2 Madwuher

26) alexcobo: Trade G1 B1 Alexcobo

27) MadWuher: Discover G2 Madwuher Y3 Bologna
	MadWuher: Sorry..... Just moved and don't have internet access at home yet. Sorry if I'm a bit delayed in my turns.

28) alexcobo: Move B1 Alexcobo Grow

29) MadWuher: Build G1 Madwuher

30) alexcobo: Build B1 Grow

31) MadWuher: Sacrifice G3 Madwuher
Build G2 Madwuher
Build G2 Madwuher
Build G3 Bologna

32) alexcobo: Move B1 Grow Camelot

33) MadWuher: Move G3 Bologna Grow

34) alexcobo: Sacrifice Y1 Grow
Move B1 Grow Camelot

35) MadWuher: Move G2 Madwuher Edora

36) alexcobo: Build R1 Alexcobo

37) MadWuher: Move R2 Madwuher Edora

38) alexcobo: Trade Y2 R2 Camelot

39) MadWuher: Sacrifice Y1 Edora
Move G3 Grow Camelot

40) alexcobo: Discover R2 Camelot G1 Grow

41) MadWuher: Move G3 Camelot Grow

42) alexcobo: Build Y1 Alexcobo

43) MadWuher: Sacrifice R2 Edora
Attack R2 Grow
Pass

44) alexcobo: Discover R1 Alexcobo Y1 Waypoint

45) MadWuher: Discover G2 Madwuher B3 Endor

46) alexcobo: Build R2 Alexcobo

47) MadWuher: Sacrifice G2 Edora
Build G2 Endor
Build G3 Madwuher

48) alexcobo: Move G1 Alexcobo Waypoint

49) MadWuher: Move G2 Bologna Waypoint

50) alexcobo: Move G1 Waypoint Camelot

51) MadWuher: Sacrifice R2 Grow
Attack R1 Waypoint
Pass

52) alexcobo: Move Y3 Alexcobo Waypoint

53) MadWuher: Sacrifice Y2 Madwuher
Move G3 Grow Alexcobo
Move R1 Waypoint Endor

54) alexcobo: Sacrifice R2 Alexcobo
Attack G2N Waypoint
Pass

55) MadWuher: Trade G3 R3 Madwuher



15072)
Started: 2010.1.8, Ended: 2010.1.8
Participants: GrantHenninger (S), logikal (N)
Winner: logikal

1) logikal: Homeworld R2 B1 G3
	GrantHenninger: homeworld C2 Y1 R3

2) GrantHenninger: Homeworld G2 Y1 R3 *
	GrantHenninger: homeworld C2 Y1 R3

3) logikal: Build G1 Logikal

4) GrantHenninger: Build R1 Granthenninger

5) logikal: Build G1 Logikal

6) GrantHenninger: Build R1 Granthenninger

7) logikal: Trade G1 Y1 Logikal

8) GrantHenninger: Build R1 Granthenninger

9) logikal: Discover G1 Logikal Y3 L1

10) GrantHenninger: Build R2 Granthenninger

11) logikal: Build Y1 Logikal
Catastrophe Granthenninger Red



15073)
Variants: "Unrated"
Started: 2010.1.8, Ended: 2010.1.10
Participants: logikal (S), GrantHenninger (N)
Winner: logikal

1) GrantHenninger: Homeworld B1 Y2 G3

2) logikal: Homeworld R3 B2 G3

3) GrantHenninger: Build G1 Granthenninger

4) logikal: Build G1 Logikal

5) GrantHenninger: Trade G3 R3 Granthenninger

6) logikal: Build G1 Logikal

7) GrantHenninger: Build G2 Granthenninger

8) logikal: Trade G1 Y1 Logikal

9) GrantHenninger: Build R1 Granthenninger

10) logikal: Discover G1 Logikal B1 L1

11) GrantHenninger: Discover G2 Granthenninger R3 Gmh1

12) logikal: Build G1 L1

13) GrantHenninger: Build G2 Gmh1

14) logikal: Build G2 L1

15) GrantHenninger: Build G3 Gmh1

16) logikal: Sacrifice G2 L1
Build G2 Logikal
Build G3 L1

17) GrantHenninger: Trade R1 B1 Granthenninger

18) logikal: Build Y1 Logikal

19) GrantHenninger: Move B1 Granthenninger Gmh1

20) logikal: Trade G1 Y1 L1

21) GrantHenninger: Trade G2 R2 Gmh1

22) logikal: Build Y2 L1

23) GrantHenninger: Build B2 Gmh1

24) logikal: Trade Y2 B2 L1

25) GrantHenninger: Build B3 Gmh1

26) logikal: Move B2 L1 Gmh1
Catastrophe Gmh1 Blue

27) GrantHenninger: Build R1 Granthenninger

28) logikal: Discover Y1 Logikal G1 L2

29) GrantHenninger: Build G2 Granthenninger

30) logikal: Sacrifice G3 L1
Build G3 L1
Build Y2 L2
Build Y2 L2

31) GrantHenninger: Trade G1 B1 Granthenninger

32) logikal: Sacrifice G2 Logikal
Build Y3 Logikal
Build Y3 Logikal

33) GrantHenninger: Move B1 Granthenninger Gmh1

34) logikal: Build Y3 L1

35) GrantHenninger: Build B2 Gmh1

36) logikal: Sacrifice G3 L1
Build G1 L1
Build G2 L1
Build G3 Logikal

37) GrantHenninger: Build B2 Gmh1

38) logikal: Trade G3 B3 Logikal

39) GrantHenninger: Trade R3 B3 Granthenninger

40) logikal: Build B3 Logikal

41) GrantHenninger: Build G3 Granthenninger

42) logikal: Discover G1 L1 R3 L3

43) GrantHenninger: Sacrifice G3 Granthenninger
Build G3 Granthenninger
Build R1 Granthenninger
Build R1 Granthenninger

44) logikal: Move G2 L1 Logikal

45) GrantHenninger: Sacrifice G3 Gmh1
Build G3 Gmh1
Build R2 Gmh1
Build R2 Gmh1

46) logikal: Move B3 Logikal L1
Catastrophe Gmh1 Red

47) GrantHenninger: Move R1 Granthenninger L3

48) logikal: Attack R1 L3

49) GrantHenninger: Trade G3 R3 Granthenninger

50) logikal: Sacrifice G3 Logikal
Build G2 L1
Build G3 L3
Build G3 Logikal

51) GrantHenninger: Build G3 Granthenninger

52) logikal: Move B3 L1 L3

53) GrantHenninger: Sacrifice G2 Granthenninger
Build G2 Granthenninger
Build B1 Granthenninger

54) logikal: Sacrifice Y2 L2
Move B3 L3 Granthenninger
Move R1 L3 Granthenninger
Catastrophe Granthenninger Blue
Catastrophe Granthenninger Red

55) GrantHenninger: Move G3 Granthenninger L2

56) logikal: Sacrifice Y3 Logikal
Move Y1 L2 Granthenninger
Move Y2 L2 Granthenninger
Move Y1 L1 Granthenninger
Catastrophe Granthenninger Yellow



15080)
Variants: "No undo, Unrated"
Started: 2010.1.9, Ended: 2010.1.20
Participants: GrantHenninger (S), makertron (N)
Winner: GrantHenninger

1) makertron: Homeworld B1 Y2 G3

2) GrantHenninger: Homeworld Y1 B2 G3

3) makertron: Build G1 Makertron

4) GrantHenninger: Build G1 Granthenninger

5) makertron: Discover G1 Makertron Y3 L2

6) GrantHenninger: Trade G1 Y1 Granthenninger

7) makertron: Build G1 L2

8) GrantHenninger: Build Y1 Granthenninger

9) makertron: Build G1 Makertron

10) GrantHenninger: Trade Y1 R1 Granthenninger

11) makertron: Trade G1 R1 Makertron

12) GrantHenninger: Build G1 Granthenninger

13) makertron: Move R1 Makertron L2

14) GrantHenninger: Trade G1 B1 Granthenninger

15) makertron: Build G1 Makertron

16) GrantHenninger: Build G2 Granthenninger

17) makertron: Trade G1 B1 Makertron

18) GrantHenninger: Sacrifice G2 Granthenninger
Build B2 Granthenninger
Build B2 Granthenninger

19) makertron: Build G1 Makertron

20) GrantHenninger: Trade B2 R2 Granthenninger

21) makertron: Build B2 Makertron

22) GrantHenninger: Discover B1 Granthenninger Y3 Gmh1

23) makertron: Trade B1 Y1 Makertron

24) GrantHenninger: Build G2 Granthenninger

25) makertron: Build G2 L2

26) GrantHenninger: Sacrifice G3 Granthenninger
Build G2 Granthenninger
Build G3 Granthenninger
Build G3 Granthenninger

27) makertron: Trade G1 R1 Makertron

28) GrantHenninger: Move G2 Granthenninger L2
Catastrophe L2 G

29) makertron: Build G1 Makertron

30) GrantHenninger: Build Y2 Granthenninger

31) makertron: Build R2 Makertron

32) GrantHenninger: Move R1 Granthenninger Gmh1

33) makertron: Build Y2 Makertron

34) GrantHenninger: Sacrifice Y2 Granthenninger
Move Y1 Granthenninger Gmh1
Move Y1 Gmh1 Makertron
Catastrophe Makertron Y

35) makertron: Trade G1 Y1 Makertron

36) GrantHenninger: Sacrifice G3 Granthenninger
Build B1 Gmh1
Build B3 Gmh1
Build B3 Granthenninger

37) makertron: Build G1 Makertron

38) GrantHenninger: Trade B1 G1 Gmh1

39) makertron: Move G1 Makertron L2

40) GrantHenninger: Trade B3 Y3 Granthenninger

41) makertron: Build R2 Makertron

42) GrantHenninger: Sacrifice G3 Granthenninger
Build R3 Gmh1
Build R3 Gmh1
Build R3 Granthenninger

43) makertron: Build B1 Makertron

44) GrantHenninger: Move B1 Gmh1 Makertron
Catastrophe Makertron B



15084)
Variants: "Unrated"
Started: 2010.1.10, Ended: 2010.1.11
Participants: melktart (S), logikal (N)
Winner: logikal

1) logikal: Homeworld B1 R2 G3

2) melktart: Homeworld R1 B3 G3

3) logikal: Build G1 Logikal

4) melktart: Build G1 Melktart

5) logikal: Trade G1 Y1 Logikal

6) melktart: Trade G1 Y1 Melktart

7) logikal: Build G1 Logikal

8) melktart: Build G1 Melktart

9) logikal: Discover G1 Logikal G3 L1

10) melktart: Trade G1 R1 Melktart

11) logikal: Build G1 Logikal

12) melktart: Discover R1 Melktart R2 M2

13) logikal: Build G1 Logikal

14) melktart: Build G2 Melktart

15) logikal: Discover G1 Logikal Y3 L2

16) melktart: Move G2 Melktart M2

17) logikal: Sacrifice G3 Logikal
Build G2 L2
Build G2 Logikal
Build G3 Logikal

18) melktart: Build Y1 Melktart

19) logikal: Discover G1 Logikal Y3 L3

20) melktart: Move Y1 Melktart M2

21) logikal: Sacrifice G3 Logikal
Build G3 Logikal
Build Y2 Logikal
Build Y2 Logikal

22) melktart: Move R1 M2 L3

23) logikal: Trade G2 B2 Logikal

24) melktart: Attack G1 L3

25) logikal: Move G2 L2 Logikal

26) melktart: Build G2 M2

27) logikal: Move Y2 Logikal L1

28) melktart: Build Y2 Melktart

29) logikal: Sacrifice G3 Logikal
Build Y3 Logikal
Build G3 Logikal
Build B1 Logikal

30) melktart: Trade Y1 R1 Melktart

31) logikal: Trade B2 R2 Logikal

32) melktart: Build R3 Melktart

33) logikal: Sacrifice G3 Logikal
Build G3 Logikal
Build R3 Logikal
Build Y1 L1

34) melktart: Move R3 Melktart M2

35) logikal: Sacrifice G1 L2
Build Y3 L1

36) melktart: Move R3 M2 L1

37) logikal: Move R3 Logikal L1

38) melktart: Attack R3 L1

39) logikal: Sacrifice Y2 L1
Discover Y3 L1 B2 L4
Move G1 L1 L4

40) melktart: Attack Y1 L1

41) logikal: Move R2 Logikal L3

42) melktart: Move R3 L1 M2

43) logikal: Attack R1 L3

44) melktart: Move R3 M2 L3

45) logikal: Move R2 L3 L4

46) melktart: Attack R1 L3

47) logikal: Build R3 L4

48) melktart: Move R1 Melktart M2

49) logikal: Build Y2 L4

50) melktart: Move R3 L3 M2

51) logikal: Sacrifice Y2 L4
Move R2 L4 L3
Move R2 L3 M2
Catastrophe M2 Red

52) melktart: Move Y1 L1 Logikal
Catastrophe Logikal Yellow

53) logikal: Build R1 L4

54) melktart: Build R2 L1

55) logikal: Discover R3 L4 G1 L5

56) melktart: Build G2 Melktart

57) logikal: Sacrifice G3 Logikal
Build G2 L4
Build Y1 L4
Build G3 Logikal

58) melktart: Sacrifice Y2 Melktart
Move G2 Melktart L4
Move G3 Melktart L4
Catastrophe L4 Green

	logikal: This seems to have let melktart make a move that caused her to abandon her system, which shouldn't be legal. neither of us can remember if there was another ship in her home system, but the game shouldn't have let her make that move.
	logikal: Request that an admin rollback the game to the previous turn (if possible)
	logikal: after checking the history, the game allowed melktart to abandon her homeworld, which should not be a legal move.
	logikal: from the rules PDF: "You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of 
your turn. You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of 
your turn. "
	Aaron: You are correct.  I will examine the code.  Normally such moves are caught.


15086)
Variants: "Unrated"
Started: 2010.1.11, Ended: 2010.1.13
Participants: logikal (S), GrantHenninger (N)
Winner: logikal

1) GrantHenninger: Homeworld Y1 B2 G3

2) logikal: Homeworld Y1 B3 G3

3) GrantHenninger: Build G1 Granthenninger

4) logikal: Build G1 Logikal

5) GrantHenninger: Trade G1 Y1 Granthenninger

6) logikal: Build G1 Logikal

7) GrantHenninger: Build Y2 Granthenninger

8) logikal: Discover G1 Logikal Y2 L1

9) GrantHenninger: Discover Y2 Granthenninger Y3 Gmh1

10) logikal: Discover G1 L1 Y3 L2

11) GrantHenninger: Build G1 Granthenninger

12) logikal: Build G2 L2

13) GrantHenninger: Move G1 Granthenninger Gmh1

14) logikal: Discover G2 L2 B2 L3

15) GrantHenninger: Build G2 Granthenninger

16) logikal: Sacrifice G3 Logikal
Build G2 L3
Build G3 Logikal
Build G3 Logikal

17) GrantHenninger: Sacrifice G3 Granthenninger
Build Y2 Granthenninger
Build G3 Granthenninger
Build Y2 Gmh1

18) logikal: Trade G3 Y3 Logikal

19) GrantHenninger: Build G3 Gmh1

20) logikal: Sacrifice G1 L2
Build Y3 Logikal

21) GrantHenninger: Sacrifice Y2 Granthenninger
Move Y2 Gmh1 L3
Move Y2 L3 Logikal
Catastrophe Logikal Y

22) logikal: Trade G1 R1 Logikal

23) GrantHenninger: Trade G3 R3 Granthenninger

24) logikal: Trade G2 Y2 L3

25) GrantHenninger: Build G1 Granthenninger

26) logikal: Build Y1 L3

27) GrantHenninger: Move G3 Gmh1 Granthenninger

28) logikal: Sacrifice Y2 L3
Move G2 L3 Gmh1
Move G2 Gmh1 Granthenninger
Catastrophe Granthenninger Green

29) GrantHenninger: Trade Y1 G1 Granthenninger

30) logikal: Move Y1 L3 Logikal

31) GrantHenninger: Build R1 Granthenninger

32) logikal: Build G1 Logikal

33) GrantHenninger: Build G2 Gmh1

34) logikal: Build Y1 Logikal

35) GrantHenninger: Build G2 Granthenninger

36) logikal: Discover G1 Logikal Y2 L1

37) GrantHenninger: Sacrifice Y2 Gmh1
Move R3 Granthenninger Gmh1
Move R3 Gmh1 L1

38) logikal: Discover G1 L1 B3 L2

39) GrantHenninger: Move G1 Gmh1 L1

40) logikal: Build G2 Logikal

41) GrantHenninger: Sacrifice G2 Granthenninger
Build G2 Granthenninger
Build G3 L1

42) logikal: Build G3 L2

43) GrantHenninger: Trade G2 Y2 Granthenninger

44) logikal: Trade G2 B2 Logikal

45) GrantHenninger: Trade G1 B1 Granthenninger

46) logikal: Build B1 Logikal

47) GrantHenninger: Move B1 Granthenninger Gmh1

48) logikal: Discover B2 Logikal G1 L3

49) GrantHenninger: Move B1 Gmh1 L1

50) logikal: Trade B2 Y2 L3

51) GrantHenninger: Trade G3 R3 L1

52) logikal: Trade G3 R3 L2

53) GrantHenninger: Sacrifice Y2 Granthenninger
Move R3 L1 Logikal
Move R3 L1 Logikal

54) logikal: Sacrifice R3 L2
Attack R3 Logikal
Attack R3 Logikal
Pass

55) GrantHenninger: Move R1 Granthenninger Logikal
Catastrophe Logikal R



15087)
Variants: "Unrated"
Started: 2010.1.11, Ended: 2010.1.28
Participants: GrantHenninger (S), logikal (N), makertron (E)
Winner: GrantHenninger

1) logikal: Homeworld Y1 B2 G3

2) makertron: Homeworld B2 Y3 G3

3) GrantHenninger: Homeworld B3 Y2 G3

4) logikal: Build G1 Logikal

5) makertron: Build G1 Makertron

6) GrantHenninger: Build G1 Granthenninger

7) logikal: Discover G1 Logikal G3 L1

8) makertron: Build G1 Makertron

9) GrantHenninger: Discover G1 Granthenninger Y1 Gmh1

10) logikal: Build G2 Logikal

11) makertron: Discover G1 Makertron Y1 Spacehat

12) GrantHenninger: Build G2 Granthenninger

13) logikal: Build G2 Logikal

14) makertron: Build G2 Makertron

15) GrantHenninger: Move G1 Gmh1 Makertron
Catastrophe Makertron G

16) logikal: Trade G2 B2 Logikal

17) GrantHenninger: Trade G2 Y2 Granthenninger

18) logikal: Move B2 Logikal L1

19) GrantHenninger: Build Y1 Granthenninger

20) logikal: Build G1 Logikal

21) GrantHenninger: Trade Y1 R1 Granthenninger

22) logikal: Trade G1 Y1 Logikal

23) GrantHenninger: Move R1 Granthenninger Spacehat

24) logikal: Trade G1 Y1 L1

25) GrantHenninger: Move R1 Spacehat Granthenninger

26) logikal: Pass

27) GrantHenninger: Build Y2 Granthenninger

28) GrantHenninger: Move R1 Granthenninger Spacehat



14890)
Started: 2010.1.11, Ended: 2010.1.12
Participants: MaxL (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) MaxL: Homeworld B1 G3 R3
	TwoShort: Howdy
	MaxL: Hi, this is my first game. I've read about it in the book but I'm just trying to learn.

3) TwoShort: Build G1 Twoshort

4) MaxL: Build R1 Maxl
	TwoShort: I'll try to give you some pointers as we go...  for example, in future games, I'd recommend starting with a green ship.

5) TwoShort: Trade G1 Y1 Twoshort

6) MaxL: Trade R1 Y1 Maxl

7) TwoShort: Build G1 Twoshort

8) MaxL: Discover Y1 Maxl B2 Beta

9) TwoShort: Build G1 Twoshort
	TwoShort: You probably wanted to grow again before moving out.  Having 4 colors (or at least Green and Yellow) at each world (or at least your Homeworld) lets you build faster.  

10) MaxL: Move Y1 Beta Maxl

11) TwoShort: Discover G1 Twoshort B2 Bluestar

12) MaxL: Build R1 Maxl

13) TwoShort: Build G1 Twoshort

14) MaxL: Move R1 Maxl Bluestar

15) TwoShort: Build G2 Bluestar

16) MaxL: Attack G1 Bluestar

17) TwoShort: Discover G1 Twoshort G2 Grogar

18) MaxL: Move R3 Maxl Grogar

19) TwoShort: Sacrifice G3 Twoshort
Build G2 Grogar
Build G3 Bluestar
Build G3 Twoshort

20) MaxL: Attack G2 Grogar
	TwoShort: So there's why you wanted a G3 :)
	MaxL: Ohhhhh.

Bluebird mistake?

21) TwoShort: Sacrifice G2 Bluestar
Build G2 Grogar
Build Y1 Twoshort
Catastrophe Grogar Green
	TwoShort: No, the "Bluebird mistake" is having only one color ships in your homeworld when the opponent can move in enough to cause a catastrophe.
  What I just did, sacrificing a G3 to grow 3 ships, one of which is the same G3 back again, we call the "Factory".  If your opponent gets the factory going and you don't, you're in trouble. It's easiest to avoid that if you start with a g3 to begin with (and Green is a good color to have early anyway.)
  I believe Andy refers to "the prime directive": Don't leave your homeworld without a 3 point.
  And there's no special name for putting your only 3 point at a star the opponent can blow up, but...
	MaxL: No wait, Bluebird would be if I had all the same colour.

22) MaxL: Discover Y1 Maxl Y2 Gamma
	MaxL: woops
	MaxL: forgot about that

thanks for playing
	TwoShort: Weird, I didn't think it would let you abandon the Homeworld.  You couldn't have stopped me moving my g3 in then turning it red and taking over, so it wasn't long to go in any case.
I hope it wasn't too demoralizing :)  One's first game is pretty much certain to be a disaster, because early missteps are generally impossible to recover from.
  As a general guideline, try to concentrate at first on growing as efficiently as possible; the longer you can focus on expanding your forces rather than attacking the other guy, the better.
  I mostly ignore the final goal at first, and pretend the whole game is to see who has more 3 pointers when we run out of one or two colors in the stash.  If you win that race, you'll probably win the game.  



15092)
Variants: "Unrated"
Started: 2010.1.11, Ended: 2010.1.20
Participants: melktart (S), logikal (N)
Winner: logikal

1) logikal: Homeworld R1 B2 G3

2) melktart: Homeworld R1 B3 G3 Melktart

3) logikal: Build G1 Logikal

4) melktart: Build G1 Melktart

5) logikal: Trade G1 Y1 Logikal

6) melktart: Trade G1 Y1 Melktart

7) logikal: Build G1 Logikal

8) melktart: Build G1 Melktart

9) logikal: Discover G1 Logikal Y3 L1

10) melktart: Trade G1 R1 Melktart

11) logikal: Build G1 Logikal

12) melktart: Discover R1 Melktart G2 M2

13) logikal: Build G1 Logikal

14) melktart: Build Y1 Melktart

15) logikal: Build G2 L1

16) melktart: Move Y1 Melktart M2

17) logikal: Trade G1 B1 Logikal

18) melktart: Move R1 M2 L1

19) logikal: Sacrifice B1 Logikal
Trade G2 R2 L1

20) melktart: Move R1 L1 M2

21) logikal: Build G1 L1

22) melktart: Build R2 M2

23) logikal: Build Y2 Logikal

24) melktart: Build Y2 M2

25) logikal: Trade Y1 B1 Logikal

26) melktart: Sacrifice Y2 M2
Move R1 M2 L1
Move R2 M2 L1

27) logikal: Attack R2 L1

28) melktart: Build G2 Melktart

29) logikal: Sacrifice G3 Logikal
Build G2 Logikal
Build G3 Logikal
Build G3 L1

30) melktart: Move G2 Melktart M2

31) logikal: Discover G1 L1 B1 L2

32) melktart: Move R1 L1 M2

33) logikal: Move R2 L1 L2

34) melktart: Discover R1 M2 Y3 M3

35) logikal: Move R2 L1 M2

36) melktart: Move G2 M2 M3

37) logikal: Trade G2 Y2 Logikal

38) melktart: Build G2 Melktart

39) logikal: Sacrifice G3 Logikal
Build G3 Logikal
Build B1 Logikal
Build R2 M2

40) melktart: Trade G2 B2 Melktart

41) logikal: Sacrifice G3 Logikal
Build G2 L2
Build G3 Logikal
Build R3 L2

42) melktart: Build R3 M3

43) logikal: Move B1 Logikal L1

44) melktart: Move Y1 M2 M3

45) logikal: Move Y2 Logikal L1

46) melktart: Discover R3 M3 B2 M4

47) logikal: Trade G2 Y2 L2

48) melktart: Move B2 Melktart M4

49) logikal: Sacrifice G3 L1
Build G2 L2
Build G3 L1
Build B3 L1

50) melktart: Trade R3 Y3 M4

51) logikal: Build Y1 Logikal

52) melktart: Sacrifice G2 M3
Build R3 M3
Build R3 M3

53) logikal: Move R2 L2 M3
Catastrophe M3 Red

54) melktart: Build G2 Melktart

55) logikal: Move R3 L2 M4

56) melktart: Move Y3 M4 L1

57) logikal: Attack B2 M4

58) melktart: Trade G3 B3 Melktart

59) logikal: Sacrifice Y1 Logikal
Move R3 M4 L1

60) melktart: Move Y1 M3 M4

61) logikal: Trade Y2 R2 L1

62) melktart: Move G2 Melktart M4

63) logikal: Move R2 L1 M4

64) melktart: Move Y3 L1 L2

65) logikal: Sacrifice G3 Logikal
Build G3 Logikal
Build R1 L1
Build R3 M4

66) melktart: Move G2 M4 L2

67) logikal: Build R3 L1

68) melktart: Trade B3 G3 Melktart

69) logikal: Sacrifice Y2 Logikal
Move R3 L1 L2
Move R3 L1 M2

70) melktart: Move G3 Melktart M4

71) logikal: Attack Y3 L2

72) melktart: Move G3 M4 Melktart

73) logikal: Sacrifice Y3 L2
Move R3 M4 Melktart
Move G3 L1 M4
Move G3 M4 Melktart

74) melktart: Attack R3 Melktart

75) logikal: Sacrifice R3 L2
Attack R3 Melktart
Attack G3 Melktart
Attack Y1 Melktart



15088)
Started: 2010.1.12, Ended: 2012.1.8
Participants: makertron (S), MaxL (N), GrantHenninger (E)
Winner: GrantHenninger

1) MaxL: Homeworld B3 R1 G3

2) GrantHenninger: Homeworld Y1 B2 G3

3) makertron: Homeworld Y2 B1 G3
	MaxL: Howdy, this is my second game. I'm still a little fresh.

4) MaxL: Build G1 Maxl

5) GrantHenninger: Build G1 Granthenninger

6) makertron: Build G1 Makertron

7) MaxL: Trade G1 Y1 Maxl

8) GrantHenninger: Build G1 Granthenninger

9) makertron: Build G1 Makertron

10) MaxL: Build G2 Maxl

11) GrantHenninger: Trade G1 R1 Granthenninger

12) makertron: Trade G1 R1 Makertron

13) MaxL: Build Y1 Maxl

14) GrantHenninger: Build G1 Granthenninger

15) makertron: Build G1 Makertron

16) MaxL: Discover Y1 Maxl R2 Sectorx

17) GrantHenninger: Trade G1 B1 Granthenninger

18) makertron: Build G1 Makertron

19) MaxL: Move G2 Maxl Sectorx
Catastrophe Makertron Green

20) GrantHenninger: Discover G1 Granthenninger B3 Gmh1

21) makertron: Trade R1 G1 Makertron

22) MaxL: Build G1 Maxl

23) GrantHenninger: Build G1 Gmh1

24) makertron: Build G2 Makertron

25) MaxL: Build G2 Maxl

26) GrantHenninger: Trade G1 Y1 Gmh1

27) makertron: Trade G1 B1 Makertron

28) MaxL: Trade G1 R1 Maxl

29) GrantHenninger: Build Y2 Gmh1

30) makertron: Build G1 Makertron

31) MaxL: Build Y2 Sectorx

32) GrantHenninger: Move Y1 Gmh1 Granthenninger

33) makertron: Discover G1 Makertron R3 Onoff

34) MaxL: Move Y2 Sectorx Onoff

35) GrantHenninger: Build Y2 Gmh1

36) makertron: Move B1 Makertron Onoff

37) MaxL: Build Y3 Maxl

38) GrantHenninger: Trade Y2 R2 Gmh1

39) makertron: Build G1 Makertron

40) MaxL: Build G1 Sectorx

41) GrantHenninger: Build G2 Gmh1

42) makertron: Trade G1 R1 Makertron

43) MaxL: Move G1 Sectorx Onoff

44) GrantHenninger: Build R2 Granthenninger

45) makertron: Build R2 Makertron

46) MaxL: Build G1 Maxl

47) GrantHenninger: Sacrifice G2 Gmh1
Build G2 Gmh1
Build G3 Granthenninger

48) GrantHenninger: Sacrifice G3 Granthenninger
Build G3 Granthenninger
Build R3 Gmh1
Build R3 Granthenninger

49) MaxL: Sacrifice G3 Maxl
Build G3 Maxl
Build G3 Sectorx
Build R3 Maxl

50) GrantHenninger: Discover G1 Gmh1 Y2 Gmh2



15091)
Started: 2010.1.12, Ended: 2010.1.16
Participants: MaxL (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	MaxL: Hello again!
	TwoShort: Hello again.  Here's my chance to get a pointer in when it can help:  You probably want one of your stars to be a 2.  That will put your homeworld 3 hops from mine instead of 2.  the "small universe" we played last time makes for a more quickly aggressive game, but that's generally thought to be to the first players advantage.  Most people think a 1/2 homeworld ("Banker") is best, and I agree.  My habit of taking 1/3 ("Goldilocks") vs. new players is mostly to be nice, as opposed to an example to follow...

2) MaxL: Homeworld B3 Y2 G3

3) TwoShort: Build G1 Twoshort

4) MaxL: Build G1 Maxl

5) TwoShort: Trade G1 Y1 Twoshort

6) MaxL: Build G1 Maxl

7) TwoShort: Build Y1 Twoshort

8) MaxL: Trade G1 Y1 Maxl

9) TwoShort: Build Y2 Twoshort

10) MaxL: Build G1 Maxl

11) TwoShort: Discover Y1 Twoshort G2 Grogar

12) MaxL: Trade G1 R1 Maxl

13) TwoShort: Build G1 Twoshort

14) MaxL: Discover Y1 Maxl B1 Abc
	TwoShort: Don't flip it back now, but as a general guideline, I wouldn't take red before you need to.  Until having a red means you could get to me and do real damage, or that I can't do real damage even though I could get to you, it's not doing anything for you.  

15) TwoShort: Build G1 Twoshort

16) MaxL: Move R1 Maxl Abc

17) TwoShort: Discover G1 Twoshort B2 Bonanza

18) MaxL: Move R1 Abc Grogar

19) TwoShort: Discover Y1 Grogar B1 Blitzen

20) MaxL: Move Y1 Abc Maxl

21) TwoShort: Build G2 Bonanza

22) MaxL: Trade G1 R1 Maxl
	TwoShort: Not sure I understand that; moving backward is seldom a good idea.  Note that if you build yellow at home, I can move in and blow it up.
	TwoShort: Green too.

23) TwoShort: Discover Y1 Twoshort G2 Gonzo

24) MaxL: Build R2 Grogar

25) TwoShort: Sacrifice G3 Twoshort
Build G1 Twoshort
Build G3 Twoshort
Build G3 Bonanza

26) MaxL: Build R2 Grogar

27) TwoShort: Trade G2 R2 Bonanza

28) MaxL: Build Y2 Maxl

29) TwoShort: Move Y1 Blitzen Maxl
Catastrophe Maxl Yellow

30) MaxL: Trade R1 Y1 Maxl

31) TwoShort: Sacrifice G3 Bonanza
Build R1 Bonanza
Build Y1 Twoshort
Build Y2 Gonzo

32) MaxL: Build Y2 Maxl

33) TwoShort: Sacrifice G3 Twoshort
Build G2 Bonanza
Build G3 Twoshort
Build Y3 Twoshort


34) MaxL: Discover Y1 Maxl B1 Zeus
	MaxL: I've started teaching some people how to play IRL, I just wanted to know if you could move if there was only a yellow ship in the system and not a yellow star.

35) TwoShort: Sacrifice Y3 Twoshort
Move R1 Bonanza Maxl
Move R1 Maxl Grogar
Move G2 Bonanza Maxl
Catastrophe Grogar Red
	MaxL: Sorry, the thing early was me explaining why I reversed my last move.

36) MaxL: Move Y1 Zeus Maxl

37) TwoShort: Trade G2 B2 Maxl

38) MaxL: Trade Y2 R2 Maxl

39) TwoShort: Sacrifice G3 Twoshort
Build B1 Maxl
Build B1 Maxl
Pass
Catastrophe Maxl Blue

	MaxL: Oh damn!

I didn't even realize that move!

Good game.


15094)
Started: 2010.1.12, Ended: 2010.2.4
Participants: ZackStack (S), MaxL (N)
Winner: ZackStack

1) MaxL: Homeworld B3 R1 G3

2) ZackStack: Homeworld B1 R2 G3
	ZackStack: Hey Max!  Thanks for the challenge.  Have a good game!

3) MaxL: Build G1 Maxl
	MaxL: No problem!

I'm still trying to get a solid gameplay plan out, I'm fairly new to homeworlds but I think it's a pretty sweet game.

If you have any constructive critism or pointers please tell me!

4) ZackStack: Build G1 Zackstack
	ZackStack: Will do!  I really enjoy playing also... but can't seem to interest anyone in actually playing in person :-(

5) MaxL: Build G1 Maxl
	MaxL: See, I am the person starting Icehouse where I live. Everyone learns the games because I teach them, so I need to know the rules solidly, which I can't say I know about Homeworlds.

So I'm just trying to learn the rules inside and out and be a better player.

6) ZackStack: Build G2 Zackstack
	ZackStack: I'm in the same boat where I live... but few of the regular guys at my club are into abstracts.  I still get to play plenty of other games though :-)

Playing Homeworlds here definitely gave me a great grasp of how the game works though!

7) MaxL: Trade G1 Y1 Maxl
	ZackStack: One warning: If you leave a possible catastrophe on the board I can set it off on my turn...

8) ZackStack: Trade G2 Y2 Zackstack
	ZackStack: Hey Max!  That was what I meant!  On my turn I could cause a catastrophe to blow up all your green ships and win the game...  Undo that last build and try something else :-)

9) MaxL: Discover G1 Maxl B2 Jupiter
	ZackStack: Much Better ;-)

10) ZackStack: Discover G1 Zackstack B3 Zeus

11) MaxL: Trade G1 Y1 Jupiter

12) ZackStack: Build G1 Zackstack

13) MaxL: Build G1 Maxl

14) ZackStack: Build G2 Zeus

15) MaxL: Move G1 Maxl Jupiter

16) ZackStack: Trade G1 Y1 Zeus

17) MaxL: Build Y2 Maxl

18) ZackStack: Build G1 Zeus
	ZackStack: That is a very dangerous move!  I can sacrifice the Y2 in my system to move my G1 at Zeus to your homeworld and cause a green catastrophe there.  Not insurmountable perhaps... but a major setback for you all the same. 
	ZackStack: ... feel free to undo!

19) MaxL: Build G2 Jupiter

20) ZackStack: Sacrifice G2 Zeus
Build Y2 Zackstack
Build Y3 Zeus

21) MaxL: Build Y3 Jupiter

22) ZackStack: Trade Y3 R3 Zeus

23) MaxL: Trade Y1 R1 Jupiter

24) ZackStack: Discover R3 Zeus G2 Gaia
	ZackStack: So... what do you think so far?

25) MaxL: Build G2 Maxl

26) ZackStack: Sacrifice G3 Zackstack
Build G3 Zeus
Build G3 Zackstack
Build R1 Gaia

27) MaxL: Build R2 Jupiter

28) ZackStack: Move Y1 Zeus Gaia

29) MaxL: Discover G2 Maxl B2 Bluestar
	ZackStack: Now here's a neat trick... ;-)

30) ZackStack: Move Y2 Zackstack Zeus

31) MaxL: Move Y1 Maxl Bluestar

32) ZackStack: Sacrifice G3 Zackstack
Build Y1 Zeus
Build Y3 Gaia
Build Y3 Zackstack

33) MaxL: Sacrifice Y2 Maxl
Move G1 Jupiter Zeus
Move G2 Jupiter Zeus
Catastrophe Zeus Green

34) ZackStack: Trade Y2 R2 Zeus

35) MaxL: Discover R1 Jupiter G1 Saturn

36) ZackStack: Discover R2 Zeus Y2 Apollo

37) MaxL: Build G1 Maxl

38) ZackStack: Sacrifice G1 Zackstack
Build R3 Apollo
	ZackStack: I didn't see that coming... nice work!  Its always fun to blow up big ships :-)

39) MaxL: Build R3 Saturn

40) ZackStack: Move R3 Apollo Maxl

41) MaxL: Attack R3 Maxl

42) ZackStack: Sacrifice Y2 Zackstack
Move R2 Apollo Maxl
Move R1 Gaia Maxl
Catastrophe Maxl Red

43) MaxL: Build Y2 Bluestar

44) ZackStack: Trade Y3 G3 Zackstack

45) MaxL: Trade G1 R1 Maxl

46) ZackStack: Move Y1 Zeus Zackstack
	ZackStack: Boom!

47) MaxL: Move Y1 Bluestar Saturn

48) ZackStack: Build Y2 Zackstack

49) MaxL: Build G1 Bluestar

50) ZackStack: Trade Y1 B1 Zackstack

51) MaxL: Build G1 Maxl

52) ZackStack: Build B1 Zackstack

53) MaxL: Trade G1 Y1 Maxl

54) ZackStack: Discover B1 Zackstack Y3 Hera

55) MaxL: Build Y2 Maxl

56) ZackStack: Move B1 Hera Gaia

57) MaxL: Build Y3 Saturn

58) ZackStack: Build B2 Gaia

59) MaxL: Discover G1 Bluestar B3 Kefka

60) ZackStack: Sacrifice Y3 Gaia
Move B2 Gaia Maxl
Move B1 Gaia Maxl
Move B1 Zackstack Maxl
Catastrophe Maxl Blue

	ZackStack: Thanks for the game Max!  I hope you enjoyed it and got a better handle on some of the rules.  Shoot me a challenge for another... or a different game if you're in the mood.  Good Gaming!


15108)
Variants: "Unrated"
Started: 2010.1.13, Ended: 2010.1.14
Participants: tvgide (S), grico (N)
Winner: grico

1) grico: Homeworld R3 G2 B3
	grico: whore
	tvgide: bitch

2) tvgide: Homeworld B1 Y2 G3
	grico: start the game already
	tvgide: monk, i need a monk!

3) grico: Build B1 Grico
	tvgide: monk, i need a monk!

4) tvgide: Build G1 Tvgide

5) grico: Trade B1 Y1 Grico

6) tvgide: Trade G1 R1 Tvgide

7) grico: Build Y1 Grico

8) tvgide: Trade R1 Y1 Tvgide

9) grico: Discover Y1 Grico G1 Teamslack

10) tvgide: Discover Y1 Tvgide R3 Tvgide2
	tvgide: i'm just moving the king through, i promise.

11) grico: Build Y2 Teamslack

12) tvgide: Build G1 Tvgide

13) grico: Build Y2 Grico

14) tvgide: Trade G1 R1 Tvgide

15) grico: Build Y3 Grico

16) tvgide: Build R1 Tvgide

17) grico: Trade Y3 R3 Grico

18) tvgide: Build G1 Tvgide

19) grico: Build Y3 Grico

20) tvgide: Move G1 Tvgide Tvgide2

21) grico: Move R3 Grico Teamslack

22) tvgide: Build G1 Tvgide2

23) grico: Move Y1 Teamslack Tvgide2

24) tvgide: Attack Y1 Tvgide2

25) grico: Build Y3 Teamslack

26) tvgide: Build Y3 Tvgide2

27) grico: Move Y2 Teamslack Tvgide2
Catastrophe Tvgide2 Y

28) tvgide: Trade R1 Y1 Tvgide

29) grico: Build Y1 Teamslack

30) tvgide: Move G3 Tvgide Tvgide2

31) grico: Sacrifice Y2 Grico
Move R3 Teamslack Tvgide2
Move R3 Tvgide2 Tvgide

32) tvgide: Pass

33) grico: Attack R1 Tvgide

34) tvgide: Build G2 Tvgide2

35) grico: Pass Catastrophe Tvgide2 G

36) tvgide: Trade Y1 B1 Tvgide
Catastrophe Tvgide2 G

37) grico: Attack B1 Tvgide



15120)
Variants: "Unrated"
Started: 2010.1.14, Ended: 2010.1.20
Participants: tvgide (S), grico (N)
Winner: tvgide

1) grico: Homeworld Y3 G1 B3

2) tvgide: Homeworld G2 B1 Y3

3) grico: Build B1 Grico

4) tvgide: Build Y1 Tvgide

5) grico: Trade B1 Y1 Grico

6) tvgide: Discover Y1 Tvgide B3 T1

7) grico: Build B1 Grico

8) tvgide: Build Y1 Tvgide

9) grico: Build Y2 Grico

10) tvgide: Trade Y1 R1 Tvgide

11) grico: Trade B1 R1 Grico

12) tvgide: Trade Y1 G1 T1

13) grico: Discover Y1 Grico G2 G1

14) tvgide: Build R1 Tvgide

15) grico: Build R2 Grico

16) tvgide: Move R1 Tvgide T1

17) grico: Move R2 Grico G1

18) tvgide: Build R2 T1

19) grico: Build B1 Grico

20) tvgide: Trade R2 Y2 T1

21) grico: Trade B1 G1 Grico

22) tvgide: Build R2 Tvgide

23) grico: Move G1 Grico G1

24) tvgide: Discover R2 Tvgide G3 T2

25) grico: Build G2 G1

26) tvgide: Move G1 T1 G1
Catastrophe G1 Green

27) grico: Build R2 Grico

28) tvgide: Trade R1 G1 T1

29) grico: Build B1 Grico

30) tvgide: Build Y1 T1

31) grico: Trade B1 G1 Grico

32) tvgide: Discover Y2 T1 R2 T3

33) grico: Discover G1 Grico G2 G1

34) tvgide: Build Y1 Tvgide

35) grico: Build Y1 Grico

36) tvgide: Sacrifice Y2 T3
Move Y1 T1 G1
Move Y1 G1 Grico
Catastrophe Grico Yellow

37) grico: Build B1 Grico

38) tvgide: Move Y1 Tvgide T2

39) grico: Trade B1 Y1 Grico

40) tvgide: Move R2 T2 G1

41) grico: Build Y1 Grico

42) tvgide: Attack G1 G1

43) grico: Build R1 Grico

44) tvgide: Build G2 T1

45) grico: Discover R2 Grico B3 G2

46) tvgide: Trade G2 Y2 T1

47) grico: Move Y1 Grico G2

48) tvgide: Build Y2 T1

49) grico: Build Y2 Grico

50) tvgide: Build Y3 T2

51) grico: Move Y1 Grico G2

52) tvgide: Trade Y2 G2 T1

53) grico: Sacrifice Y2 Grico
Move R2 G2 Grico
Move R2 Grico T1

54) tvgide: Sacrifice R1 Tvgide
Attack R2 T1

55) grico: Build R1 Grico

56) tvgide: Build Y2 Tvgide

57) grico: Build R2 Grico

58) tvgide: Build R3 G1
Catastrophe Grico Red

59) grico: Move Y1 G2 Tvgide

60) tvgide: Sacrifice Y2 Tvgide
Move R3 G1 Grico
Pass

61) grico: Move Y1 G2 Grico

62) tvgide: Sacrifice R2 G1
Attack B3 Grico
Attack Y1 Grico



15122)
Started: 2010.1.14, Ended: 2010.1.14
Participants: logikal (S), tvgide (N)
Winner: tvgide

1) tvgide: Homeworld G3 B2 Y3

2) logikal: Homeworld R1 B2 G3

3) tvgide: Build Y1 Tvgide

4) logikal: Build G1 Logikal

5) tvgide: Build Y1 Tvgide

6) logikal: Build G1 Logikal

7) tvgide: Discover Y1 Tvgide Y1 T1

8) logikal: Trade G3 Y3 Logikal

9) tvgide: Build Y2 Tvgide

10) logikal: Discover G1 Logikal B3 L1

11) tvgide: Trade Y1 R1 Tvgide

12) logikal: Build Y1 Logikal

13) tvgide: Sacrifice Y2 Tvgide
Move R1 Tvgide T1
Move R1 T1 L1

14) logikal: Build G1 Logikal

15) tvgide: Attack G1 L1

16) logikal: Build Y2 Logikal

17) tvgide: Build Y2 Tvgide

18) logikal: Trade Y2 B2 Logikal

19) tvgide: Trade Y2 R2 Tvgide

20) logikal: Trade G1 R1 Logikal

21) tvgide: Build R2 L1

22) logikal: Discover R1 Logikal Y3 L2

23) tvgide: Trade R2 Y2 L1

24) logikal: Build G1 Logikal

25) tvgide: Build R2 L1

26) logikal: Move R1 L2 T1

27) tvgide: Move R2 L1 T1

28) logikal: Discover R1 T1 B3 L2

29) tvgide: Build Y2 Tvgide

30) logikal: Move B2 Logikal L2

31) tvgide: Move Y2 Tvgide T1

32) logikal: Move Y1 Logikal L2

33) tvgide: Discover Y2 T1 R3 T2

34) logikal: Move Y3 Logikal T2

35) tvgide: Build G2 L1

36) logikal: Trade G1 B1 Logikal

37) tvgide: Sacrifice G2 L1
Build Y2 Tvgide
Build Y3 L1

38) logikal: Discover Y3 T2 B1 L3

39) tvgide: Trade Y3 R3 L1

40) logikal: Trade Y3 G3 L3

41) tvgide: Move R3 L1 Logikal

42) logikal: Sacrifice G3 L3
Build Y3 L2
Build B1 L2
Build B1 L2

43) tvgide: Sacrifice R2 T1
Attack B1 Logikal
Attack G1 Logikal



15132)
Started: 2010.1.15, Ended: 2010.2.10
Participants: GrantHenninger (S), tvgide (N)
Winner: GrantHenninger

1) tvgide: Homeworld G3 B2 Y3

2) GrantHenninger: Homeworld Y1 B2 G3

3) tvgide: Build Y1 Tvgide

4) GrantHenninger: Build G1 Granthenninger

5) tvgide: Trade Y1 R1 Tvgide

6) GrantHenninger: Build G1 Granthenninger

7) tvgide: Discover R1 Tvgide G1 T1

8) GrantHenninger: Trade G1 R1 Granthenninger

9) tvgide: Build Y1 Tvgide

10) GrantHenninger: Discover G1 Granthenninger B3 Gmh1

11) tvgide: Trade Y1 R1 Tvgide

12) GrantHenninger: Build R2 Granthenninger

13) tvgide: Build R2 T1

14) GrantHenninger: Move R1 Granthenninger Gmh1

15) tvgide: Build Y1 Tvgide

16) GrantHenninger: Sacrifice G3 Granthenninger
Build R2 Gmh1
Build R3 Granthenninger
Build R3 Gmh1

17) tvgide: Move Y1 Tvgide T1

18) GrantHenninger: Trade R2 Y2 Gmh1

19) tvgide: Build Y1 Tvgide

20) GrantHenninger: Trade R2 Y2 Granthenninger

21) tvgide: Build Y2 T1

22) GrantHenninger: Build Y3 Gmh1

23) tvgide: Sacrifice Y2 T1
Move R1 T1 Gmh1
Move R2 T1 Gmh1
Catastrophe Gmh1 Red

24) GrantHenninger: Trade Y3 G3 Gmh1

25) tvgide: Trade Y1 B1 Tvgide

26) GrantHenninger: Discover G1 Gmh1 Y1 Gmh2

27) tvgide: Build R1 Tvgide

28) GrantHenninger: Build Y2 Gmh1

29) tvgide: Build Y3 Tvgide

30) GrantHenninger: Build Y3 Gmh1

31) tvgide: Move Y1 T1 Gmh1
Catastrophe Gmh1 Yellow

32) GrantHenninger: Build G1 Gmh1

33) tvgide: Move Y3 Tvgide Gmh2

34) GrantHenninger: Trade G1 Y1 Gmh1

35) tvgide: Move R1 Tvgide Gmh2

36) GrantHenninger: Trade Y1 R1 Gmh1

37) tvgide: Attack G1 Gmh2

38) GrantHenninger: Build R2 Gmh1

39) tvgide: Build Y1 Gmh2

40) GrantHenninger: Trade R2 Y2 Gmh1

41) tvgide: Build B1 Tvgide

42) GrantHenninger: Build R2 Gmh1

43) tvgide: Move B1 Tvgide Gmh2

44) GrantHenninger: Trade R2 G2 Gmh1

45) tvgide: Trade Y3 G3 Gmh2

46) GrantHenninger: Move G2 Gmh1 Granthenninger

47) tvgide: Build R2 Gmh2

48) GrantHenninger: Build Y2 Gmh1

49) tvgide: Trade Y1 B1 Gmh2

50) GrantHenninger: Sacrifice G2 Granthenninger
Build Y1 Gmh1
Build Y3 Granthenninger

51) tvgide: Discover G3 Gmh2 B3 T1

52) GrantHenninger: Build R2 Gmh1

53) tvgide: Trade G3 Y3 T1

54) GrantHenninger: Discover Y2 Granthenninger B3 Gmh3

55) tvgide: Build G1 Gmh2

56) GrantHenninger: Discover Y2 Gmh1 G1 Gmh4

57) tvgide: Move G1 Gmh2 T1

58) GrantHenninger: Move R2 Gmh1 Gmh4

59) tvgide: Move R1 Gmh2 T1

60) GrantHenninger: Build G2 Gmh1

61) tvgide: Build G2 T1

62) GrantHenninger: Move G2 Gmh1 Granthenninger

63) tvgide: Build B2 Gmh2

64) GrantHenninger: Build G2 Gmh1

65) tvgide: Sacrifice Y3 T1
Move G2 T1 Granthenninger
Move G1 T1 Granthenninger
Move R1 T1 Granthenninger

66) GrantHenninger: Attack R1 Granthenninger

67) tvgide: Sacrifice G2 Granthenninger
Build B3 Tvgide
Build Y3 Tvgide

68) GrantHenninger: Sacrifice G3 Gmh1
Build R2 Gmh1
Build R3 Gmh4
Build R3 Granthenninger

69) tvgide: Move R2 Gmh2 Gmh3

70) GrantHenninger: Move R3 Granthenninger Gmh3

71) tvgide: Sacrifice Y3 Tvgide
Move B1 Gmh2 Gmh3
Move B1 Gmh2 Gmh3
Move B2 Gmh2 Gmh3
Catastrophe Gmh3 Blue

72) GrantHenninger: Attack G1 Granthenninger

73) tvgide: Build G2 Gmh2

74) GrantHenninger: Build G3 Gmh1

75) tvgide: Build Y2 Tvgide

76) GrantHenninger: Sacrifice G3 Gmh1
Build Y3 Gmh4
Build G3 Gmh1
Build G3 Granthenninger

77) tvgide: Sacrifice Y2 Tvgide
Move G1 Gmh2 Gmh1
Move G1 Gmh1 Granthenninger
Catastrophe Granthenninger Green

78) GrantHenninger: Trade R1 B1 Gmh1

79) tvgide: Move B3 Tvgide Gmh2

80) GrantHenninger: Move B1 Gmh1 Gmh4

81) tvgide: Trade B3 R3 Gmh2

82) GrantHenninger: Trade R2 G2 Gmh4

83) tvgide: Move B1 Tvgide Gmh2

84) GrantHenninger: Sacrifice Y2 Gmh1
Move R3 Granthenninger Gmh1
Move R3 Gmh1 Gmh4

85) tvgide: Build G1 Gmh2

86) GrantHenninger: Sacrifice Y2 Gmh4
Move R3 Gmh4 Tvgide
Move R3 Gmh4 Tvgide



15149)
Started: 2010.1.16, Ended: 2010.1.23
Participants: captncavern (S), supergnouf (N)
Winner: supergnouf

1) supergnouf: Homeworld G3 B1 Y3
	captncavern: J'en déduis qu'Ordo ne t'intéresse pas ;)

2) captncavern: Homeworld G3 B2 Y3

3) supergnouf: Build Y1 Supergnouf

4) captncavern: Build Y1 Captncavern

5) supergnouf: Trade Y1 R1 Supergnouf

6) captncavern: Build Y1 Captncavern

7) supergnouf: Build R1 Supergnouf

8) captncavern: Trade Y1 G1 Captncavern

9) supergnouf: Trade R1 G1 Supergnouf

10) captncavern: Trade Y1 R1 Captncavern

11) supergnouf: Build Y1 Supergnouf

12) captncavern: Discover G1 Captncavern Y1 Jaune

13) supergnouf: Discover Y1 Supergnouf G2 Kilman

14) captncavern: Build G1 Jaune

15) supergnouf: Build Y1 Supergnouf

16) captncavern: Build G2 Jaune

17) supergnouf: Build Y2 Kilman

18) captncavern: Build Y2 Captncavern

19) supergnouf: Build Y2 Supergnouf

20) captncavern: Build R1 Captncavern

21) supergnouf: Sacrifice Y2 Supergnouf
Move G1 Supergnouf Kilman
Move G1 Kilman Jaune
Catastrophe Jaune G

22) captncavern: Discover Y2 Captncavern G1 Vert

23) supergnouf: Build R2 Supergnouf

24) captncavern: Build R2 Captncavern

25) supergnouf: Discover Y1 Kilman B1 Tort

26) captncavern: Trade R1 G1 Captncavern

27) supergnouf:
Discover Y3 Supergnouf G2 Tiaw

28) captncavern: Move G1 Captncavern Vert

29) supergnouf: Sacrifice Y2 Kilman
Move Y3 Tiaw Vert
Move Y1 Tort Captncavern

30) captncavern: Discover Y2 Vert G2 Plus

31) supergnouf: Build Y1 Captncavern

32) captncavern: Sacrifice R2 Captncavern
Attack Y1 Captncavern
Attack Y1 Captncavern

33) supergnouf: Build Y2 Supergnouf

34) captncavern: Sacrifice G1 Vert
Build R1 Captncavern

35) supergnouf: Move Y3 Vert Captncavern
Catastrophe Captncavern Y

36) captncavern: Build R2 Captncavern

37) supergnouf: Discover R2 Supergnouf G2 Roto
	captncavern: Agressif le Nico !

38) captncavern: Trade R1 Y1 Captncavern

39) supergnouf: Move Y1 Supergnouf Roto

40) captncavern: Discover R1 Captncavern Y1 Hop

41) supergnouf: Build R1 Supergnouf

42) captncavern: Build Y2 Plus

43) supergnouf: Build Y3 Roto

44) captncavern: Build Y3 Captncavern

45) supergnouf: Build Y3 Supergnouf

46) captncavern: Discover Y2 Plus B1 Moins

47) supergnouf: Move Y3 Roto Hop

48) captncavern: Trade Y1 G1 Captncavern

49) supergnouf: Sacrifice R1 Supergnouf
Attack R1 Hop

50) captncavern: Build Y1 Plus

51) supergnouf: Discover Y2 Supergnouf B2 Atoa

52) captncavern: Build R1 Captncavern

53) supergnouf: Build R2 Supergnouf

54) captncavern: Move R2 Captncavern Moins

55) supergnouf: Build R3 Roto

56) captncavern: Build R3 Captncavern

57) supergnouf: Move R3 Roto Moins

58) captncavern: Move R2 Moins Plus

59) supergnouf: Build R3 Roto
	supergnouf: ca resemble a une course à l'armement ce qu'on fait la...

60) captncavern: Discover Y2 Moins G2 Loin
	captncavern: Y'a trop de monde, là, ça devient difficile de s'y retrouver.

61) supergnouf: Move Y3 Supergnouf Plus

62) captncavern: Sacrifice Y2 Loin
Move Y1 Plus Hop
Move Y2 Plus Hop
Catastrophe Hop Y
	supergnouf: ca deviendra vraiment le bordel quand on fera du vert et du bleu...

63) supergnouf: Sacrifice R1 Supergnouf
Attack R2 Plus

64) captncavern: Build G1 Captncavern

65) supergnouf: Build R1 Supergnouf

66) captncavern: Trade R3 Y3 Captncavern
	captncavern: Un peu de ménage, mais pas forcément à mon avantage :(

67) supergnouf: Trade R2 G2 Supergnouf
	supergnouf: j'ai fait un peu de promo pour ton site ice house sur trick track.
Par ailleur, je me disais que ca pourrais être bien que ton logo en haut à gauche (enfin, pour le moment ta pile de pyramide) soit en fait un lien vers la page d'accueil du site. Souvennt c'est comme ca sur les sites et du coup, quand t'es un peu perdu i3l suffit de cliquer en haut sur le logo et te revoila à l'entrée :)
tu me dira que ton site est pas encore dédalesque mais bon... de toute les manière, je ne fais que proposer :)
	captncavern: Merci pour la pub. Je comprends pas trop comment fonctionne tric-trac, mais c'est plus par flemme qu'autre chose, je pense. J'ai rajouté des liens sur les pages des jeux qui en ont, mais c'est tout, pour l'instant.
Très bonne idée, le lien sur l'image, et pas compliqué à faire. Ce sera fait dans le WE, normalement. Je vais aussi réfléchir à une galerie de photos, dès que j'aurai un peu de temps.
Ah, et je me demandais si le lien du Flux RSS était suffisamment clair. Je vais peut-être expliciter un peu plus dans l'info-bulle, mais je ne suis pas sûr que ça suffise. Il faudrait que je regarde comment c'est fait sur d'autres sites.

68) captncavern: Build R1 Captncavern
	supergnouf: je suis toujours pas convaincu par les fils rss du coup je me suis pas trop penché sur le tient.

69) supergnouf: Build R2 Plus

70) captncavern: Sacrifice Y3 Captncavern
Discover Y3 Captncavern Y1 Aa
Discover Y3 Aa Y2 Bb
Move Y3 Bb Supergnouf
	captncavern: Ben, les fils rss, c'est bien, mais il faut pas en avoir trop, sinon, tu les lis jamais. Ca t'évite juste d'avoir à faire le tour des sites où tu passes régulièrement alors qu'il n'y a rien de nouveau. C'est typiquement utile pour un petit site comme le mien où je rajoute un truc intéressant de temps en temps, et inutile pour un gros site qui brasse des tonnes d'infos, à mon avis.

71) supergnouf: Sacrifice Y2 Atoa
Move R3 Moins Captncavern
Move Y1 Roto Supergnouf
	supergnouf: je sais bien à quoi ca sert, mais les quelquesfois ou j'ai essayé de m'en servir, ca ne marchait pas suffisament bien pour que ca me soit vraiment utile (globalement ca foirais les dates d'un rss qui du coup n'apparaissait pas dans la liste)

72) captncavern: Sacrifice R1 Captncavern
Attack R1 Supergnouf

73) supergnouf: Sacrifice R3 Roto
Attack R1 Captncavern
Attack G1 Captncavern
Attack G1 Captncavern
	captncavern: Ca, c'est surement que le flux rss en question était mal foutu. Le mien, normalement il arrive bien, et avec la bonne date :D



15105)
Started: 2010.1.16, Ended: 2010.4.1
Participants: Mandrel (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B3 G3

2) Mandrel: Homeworld B2 Y1 G3

3) zoltar: Build G1 Zoltar
	Mandrel: Have a good game!
	zoltar: You too!

4) Mandrel: Build G1 Mandrel

5) zoltar: Trade G1 Y1 Zoltar

6) Mandrel: Trade G1 R1 Mandrel

7) zoltar: Build Y1 Zoltar

8) Mandrel: Build R1 Mandrel

9) zoltar: Build Y2 Zoltar

10) Mandrel: Build R2 Mandrel

11) zoltar: Trade Y2 R2 Zoltar

12) Mandrel: Trade R2 Y2 Mandrel

13) zoltar: Build Y2 Zoltar

14) Mandrel: Build R2 Mandrel

15) zoltar: Discover Y1 Zoltar G2 Greenbelt

16) Mandrel: Discover R2 Mandrel G3 Light

17) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenbelt
Build Y3 Greenbelt
Build Y3 Zoltar

18) Mandrel: Move Y2 Mandrel Light
	zoltar: oh wait -- I can try a more fancy move instead!

19) zoltar: Sacrifice Y1 Zoltar
Move Y3 Greenbelt Light
	Mandrel: Blimey, thats a bit scary!

20) Mandrel: Move Y2 Light Mandrel

21) zoltar: Sacrifice R2 Zoltar
Attack R2 Light
Pass

22) Mandrel: Build G1 Mandrel

23) zoltar: Trade Y3 G3 Zoltar

24) Mandrel: Discover G1 Mandrel Y3 Darkness

25) zoltar: Sacrifice G3 Zoltar
Build Y1 Light
Build R2 Light
Build Y3 Zoltar

26) Mandrel: Discover Y2 Mandrel B3 Grey

27) zoltar: Trade Y2 G2 Zoltar

28) Mandrel: Move R1 Mandrel Grey

29) zoltar: Sacrifice Y2 Greenbelt
Move Y3 Light Greenbelt
Move Y3 Greenbelt Grey

30) Mandrel: Sacrifice G1 Darkness
Build R2 Grey

31) zoltar: Sacrifice R2 Light
Attack R2 Grey
Attack Y2 Grey

32) Mandrel: Build R2 Mandrel

33) zoltar: Sacrifice G2 Zoltar
Build R3 Light
Build R3 Grey

34) Mandrel: Move R1 Mandrel Grey
Catastrophe Grey Red

35) zoltar: Build Y2 Light

36) Mandrel: Build G1 Mandrel

37) zoltar: Trade Y3 G3 Grey

38) Mandrel: Trade G3 Y3 Mandrel

39) zoltar: Sacrifice Y2 Grey
Move Y2 Light Mandrel
Move Y1 Light Mandrel
Catastrophe Mandrel Y

40) Mandrel: Build G1 Mandrel

41) zoltar: Trade G3 Y3 Grey

42) Mandrel: Build G1 Mandrel

43) zoltar: Move Y3 Grey Mandrel

44) Mandrel: Trade G1 B1 Mandrel

45) zoltar: Sacrifice R3 Light
Attack R2 Mandrel
Attack G1 Mandrel
Attack G1 Mandrel

46) Mandrel: Trade B1 G1 Mandrel

47) zoltar: Trade R2 G2 Mandrel
Catastrophe Mandrel G

	zoltar: Thanks for the game!


15103)
Started: 2010.1.17, Ended: 2010.1.25
Participants: MaxL (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Pass

2) MaxL: Homeworld B2 Y1 G3
	TwoShort: I'll let you go first, since it randomly picked me for the third time in a row...

3) TwoShort: Homeworld R1 B3 G3

4) MaxL: Build G1 Maxl

5) TwoShort: Build G1 Twoshort

6) MaxL: Discover G1 Maxl Y3 Jaune

7) TwoShort: Trade G1 Y1 Twoshort

8) MaxL: Build G1 Maxl

9) TwoShort: Build Y1 Twoshort

10) MaxL: Build G1 Jaune

11) TwoShort: Build G2 Twoshort

12) MaxL: Trade G1 R1 Maxl

13) TwoShort: Build G1 Twoshort
	TwoShort: You should have kept growing.  New players almost always over-value red.  I take a red star in my homeworld chiefly to give me more room to grow yellow & green.  I generally take a red ship only when it means I could use it to take a particularly critical piece within two turns or when it will prevent my opponent from doing so.  An r1 in your homeworld at this point I can just ignore.  
  If you'd grown a green & moved it out you could factory for the G3.  I can't factory green unless I get another, which would have been the last 2 and given you the 3 anyway.  I'd have had to take desperate measures to make sure you didn't get it either (by moving to a g3 star), which I'd have done, but forcing me to do unproductive things while you grow is good enough.
  Oh, and while I like giving strategy advice, if you'd rather I didn't jump in and tell you when I think you made a bad move, just tell me to shut up :)  

14) MaxL: Build G2 Maxl
	MaxL: The advice is much appreciated.

15) TwoShort: Discover G1 Twoshort Y2 Yolonda

16) MaxL: Discover G2 Maxl G3 Vertino
	TwoShort: OK.  I just sometimes feel bad because when I see what I think you should obviously do, I don't want to tell you until you get it wrong :) 

17) TwoShort: Build Y2 Twoshort

18) MaxL: Build G2 Maxl

19) TwoShort: Discover Y1 Twoshort B2 Bluestar

20) MaxL: Move G1 Jaune Yolonda

21) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Bluestar
Build Y3 Bluestar

22) MaxL: Sacrifice G2 Vertino
Build G2 Yolonda
Build G3 Jaune

23) TwoShort: Trade Y2 R2 Bluestar
	TwoShort: Nice move.  

24) MaxL: Trade G2 Y2 Maxl

25) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build Y3 Bluestar
Build G3 Twoshort
Catastrophe Yolonda Green

26) MaxL: Move G3 Jaune Maxl

27) TwoShort: Trade Y3 B3 Bluestar

28) MaxL: Build G1 Jaune
	TwoShort: Generally I'd say never move backward; and indeed, I don't see what it's doing for you here.  Eventually you might like to leave a green alone at Jaune so you can sac and build it, but you're not ready for that yet (and I can disrupt it).

29) TwoShort: Move B3 Bluestar Jaune

30) MaxL: Discover G1 Jaune B1 Plus

31) TwoShort: Sacrifice G2 Twoshort
Build Y2 Bluestar
Build Y3 Twoshort

32) MaxL: Build G1 Plus

33) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Bluestar Jaune
Move Y3 Jaune Maxl
Move B3 Jaune Maxl

34) MaxL: Attack B3 Maxl
	TwoShort: Gotcha :)  So the other reason to wait before you take red is that you really want to get an r2; it's much better than an r1.  

35) TwoShort: Sacrifice R2 Bluestar
Attack R1 Maxl
Attack B3 Maxl

36) MaxL: Trade Y2 R2 Maxl

37) TwoShort: Attack R2 Maxl

38) MaxL: Trade G1 R1 Plus

39) TwoShort: Sacrifice R2 Maxl
Attack G3 Maxl
Attack G3 Maxl



15060)
Variants: "Hard time"
Started: 2010.1.17, Ended: 2010.2.26
Participants: Jesse (S), MaxL (N)
Winner: Jesse

1) MaxL: Homeworld B2 Y1 G3

2) Jesse: Homeworld G3 B1 Y3

3) MaxL: Build G1 Maxl
	Jesse: Hello, and have a good game.

4) Jesse: Build Y1 Jesse

5) MaxL: Build G1 Maxl

6) Jesse: Build Y1 Jesse
	MaxL: Same to you!

7) MaxL: Discover G1 Maxl G3 Sectorz

8) Jesse: Discover Y1 Jesse B2 Moon

9) MaxL: Trade G1 B1 Maxl

10) Jesse: Build Y2 Jesse

11) MaxL: Move B1 Maxl Sectorz

12) Jesse: Trade Y2 B2 Jesse

13) MaxL: Build B1 Sectorz

14) Jesse: Build Y2 Jesse

15) MaxL: Build G1 Maxl

16) Jesse: Build B3 Jesse

17) MaxL: Trade B1 R1 Sectorz

18) Jesse: Discover Y2 Jesse G2 Groon

19) MaxL: Build R1 Sectorz

20) Jesse: Build Y2 Groon

21) MaxL: Discover G1 Maxl Y3 Saviour

22) Jesse: Build Y2 Jesse

23) MaxL: Build G1 Saviour

24) Jesse: Trade Y2 R2 Jesse

25) MaxL: Move G1 Saviour Groon

26) Jesse: Build Y2 Jesse

27) MaxL: Build G2 Groon

28) Jesse: Discover Y2 Jesse G2 Grood

29) MaxL: Move G1 Saviour Groon
Catastrophe Groon G

30) Jesse: Build Y2 Jesse

	Jesse: Thanks for the game.  Sorry if it was a frustrating one.  I know the yellow freeze-out can be a particularly annoying position to be in.


15173)
Variants: "Hard time"
Started: 2010.1.18, Ended: 2010.1.28
Participants: jonaskoelker (S), rootbier (N)
Winner: jonaskoelker

1) rootbier: Homeworld B1 R3 G3

2) jonaskoelker: Homeworld B2 R1 G3
	rootbier: hey. first timer here.
i have played the game face-to-face.
we'll see how it goes with coding my moves :)

3) rootbier: Build G1 Rootbier
	jonaskoelker: Hi, rootbier.  Good luck, have fun.

I've played a few games; I'm not that great, but I seem to have a firmer grasp of the game than the friends I play face-to-face.

I found the move encoding to be reasonably straightforward.  Once you grasp the homeworld command, the rest should be fairly easy.  You may also want to see Andy's game vs. Russell at http://www.wunderland.com/WTS/Andy/Games/HomeworldsPBEM/Game1Report1.html --- the notation is different, but it may help.

May the best intergalactic space fleet commander win! :)

	jonaskoelker: Captain's log, stardate 20100120: Our terraformers have just flown into the gravity well of a double system.  We have named the system after ourselves, jonaskoelker.  Headquarters informs us that settlers from an alien civilization may be occupying systems nearby in the galaxy.  We will proceed to make first contact immediately, in order to study these alcohol-based life forms.

	rootbier: *BURP* You she'here pal ... isch not really my fault. Isch jusch the una*URP*foidable an' unfor*URP*chunate composischun of my blood.

4) jonaskoelker: Build G1 Jonaskoelker

5) rootbier: Trade G1 B1 Rootbier
	jonaskoelker: Captain's Log, stardate 20100121: We have just received our first communication from the strange alcohol-based life forms.  It appears their are peaceful and even submissive towards us, yet they multiply at an alarming rate.  I have ordered the construction of more ships.  We may need them for our safety.


6) jonaskoelker: Trade G1 B1 Jonaskoelker

7) rootbier: Sacrifice G3 Rootbier
Build B2 Rootbier
Build B2 Rootbier
Build B3 Rootbier
	jonaskoelker: Captain's Log, stardate 20100127: We have reequipped one of our terraformer ships with trading technology, in anticipation of trade with our neighbours.

8) jonaskoelker: Build B3 Jonaskoelker
Catastrophe Rootbier Blue
	rootbier: Am I seein' dubble *HIC* or whud? Seems like I dun' gonen' shploded myschelf up innta big li'l bits *HIC*
	jonaskoelker: Captain's Log, stardate 20100128: Our radio astronomers have reported an unexpected supernova from the nearby stars, where the alien civilization lives.

Or rather used to live.  The radiation from the nearby blue giant's sudden explosion must have killed them.

There is nothing more to explore in this galaxy.  On to new adventures.

	jonaskoelker: Lesson: Keep the catastrophes in mind.  They limit the use of G3 in the early game.

Don't blame the G3's, though---they're good mid-game threats, when you have a few systems and some different colours.

Thanks for playing.  I'm up for another game if you are :)

	rootbier: yeah -- somehow it is too abstract for me in iconic pixel form -- i have never done such a move when i have the pyramids in front of me -- so yes -- let's do that again



15179)
Variants: "Hard time"
Started: 2010.1.19, Ended: 2010.4.22
Participants: captncavern (S), face (N)
Winner: face

1) face: Homeworld R3 B2 G3

2) captncavern: Homeworld G3 B1 Y3

3) face: Build G1 Face
	captncavern: Thanks for accepting the challenge!
	face: no problem. i joined the ladder to play more homeworld games... i really see no good reason to reject a challenge.

4) captncavern: Build Y1 Captncavern
	captncavern: Well I was rejected twice, so I was starting to believe I would never be able to play :)

5) face: Trade G3 Y3 Face

6) captncavern: Trade Y1 R1 Captncavern

7) face: Build Y1 Face

8) captncavern: Build R1 Captncavern

9) face: Build G1 Face

10) captncavern: Build Y1 Captncavern

11) face: Discover G1 Face B1 Smash

12) captncavern: Trade Y3 G3 Captncavern

13) face: Move Y1 Face Smash

14) captncavern: Build Y1 Captncavern

15) face: Build Y2 Smash

16) captncavern: Discover Y1 Captncavern B2 Out

17) face: Build Y2 Face

18) captncavern: Sacrifice G3 Captncavern
Build Y2 Out
Build Y3 Captncavern
Build R1 Captncavern

19) face: Discover Y1 Smash R2 Tank

20) captncavern: Move Y2 Out Smash

21) face: Move G1 Smash Tank

22) captncavern: Sacrifice R1 Captncavern
Attack Y2 Smash

23) face: Build Y3 Tank

24) captncavern: Move Y1 Captncavern Tank

25) face: Discover Y3 Tank R3 Waste

26) captncavern: Discover Y1 Tank B1 Big

27) face: Discover Y2 Face G1 Plaster

28) captncavern: Discover Y1 Out R1 Come

29) face: Move Y3 Waste Come

30) captncavern: Sacrifice Y2 Smash
Move Y1 Come Face
Move Y1 Big Face

31) face: Build Y2 Tank

32) captncavern: Move Y2 Smash Face

33) face: Build G2 Tank
Catastrophe Face Y

34) captncavern: Build R2 Captncavern
	face: that was... obnoxiously clever.
	captncavern: But you have a huge fleet now, and I have almost nothing!

35) face: Move Y3 Come Face

36) captncavern: Discover R2 Captncavern Y2 Not
	face: still, the next time someone asks me "why wouldn't you declare a catastrophe?" i'll finally have an answer other than "i don't know."
	captncavern: Oh! It's the first time I had an opportunity not to declare it too. I can't really see it work though, since you can always declare it on your turn.

37) face: Build G2 Face

38) captncavern: Move Y3 Captncavern Tank

39) face: Move G2 Tank Captncavern

40) captncavern: Move R2 Not Plaster

41) face: Build G2 Captncavern

42) captncavern: Attack Y2 Plaster

43) face: Trade G2 R2 Captncavern

44) captncavern: Move Y3 Tank Captncavern

45) face: Sacrifice G2 Face
Build R1 Captncavern
Build G2 Captncavern

46) captncavern: Sacrifice R2 Plaster
Attack G2 Captncavern
Attack G2 Captncavern
Catastrophe Captncavern R

47) face: Move G1 Tank Captncavern
Catastrophe Captncavern G

48) captncavern: Build Y1 Plaster

49) face: Build Y1 Face

50) captncavern: Trade Y3 G3 Captncavern

51) face: Build G1 Face

52) captncavern: Move Y1 Plaster Face

53) face: Discover Y1 Face R1 Smash

54) captncavern: Attack G1 Face

55) face: Attack G1 Face

56) captncavern: Move Y1 Face Captncavern

57) face: Move G1 Face Smash

58) captncavern: Trade Y1 R1 Captncavern

59) face: Build G2 Face

60) captncavern:
Build R1 Captncavern

61) face: Trade G1 B1 Face

62) captncavern: Trade R1 Y1 Captncavern

63) face: Build B1 Face

64) captncavern: Sacrifice G3 Captncavern
Build Y2 Plaster
Build Y3 Plaster
Build Y3 Captncavern

65) face: Move Y1 Tank Plaster
Catastrophe Plaster Y

66) captncavern: Trade Y1 G1 Captncavern

67) face: Sacrifice Y2 Tank
Move B1 Face Captncavern
Move B1 Face Captncavern

68) captncavern: Attack B1 Captncavern

69) face: Sacrifice G1 Smash
Build B2 Captncavern
Catastrophe Captncavern B

	face: good game, man.
	captncavern: Great game! I definitely suck at it, but I love it :)


15194)
Variants: "Unrated"
Started: 2010.1.20, Ended: 2010.5.10
Participants: makertron (S), grico (N)
Winner: makertron

1) grico: Homeworld R1 B3 G3

2) makertron: Homeworld B3 Y2 G3 Makertron

3) grico: Build G1 Grico

4) makertron: Build G1 Makertron

5) grico: Trade G1 Y1 Grico

6) makertron: Discover G1 Makertron R1 Tatu



15202)
Variants: "Unrated"
Started: 2010.1.21, Ended: 2010.1.29
Participants: logikal (S), melktart (N)
Winner: logikal

1) melktart: Homeworld R1 B2 G3

2) logikal: Homeworld B3 R1 G3

3) melktart: Build G1 Melktart

4) logikal: Build G1 Logikal

5) melktart: Trade G3 Y3 Melktart

6) logikal: Trade G1 Y1 Logikal

7) melktart: Build G1 Melktart

8) logikal: Build G1 Logikal

9) melktart: Discover G1 Melktart R3 M1

10) logikal: Discover G1 Logikal B2 L1

11) melktart: Build G2 M1

12) logikal: Build G2 L1

13) melktart: Build G2 Melktart

14) logikal: Trade G1 R1 L1

15) melktart: Trade G1 B1 Melktart

16) logikal: Build G1 L1

17) melktart: Move B1 Melktart M1

18) logikal: Trade G1 Y1 L1

19) melktart: Trade G1 Y1 M1

20) logikal: Build Y2 L1

21) melktart: Build Y2 M1

22) logikal: Build R2 L1

23) melktart: Trade Y2 R2 M1

24) logikal: Build G1 Logikal

25) melktart: Build G1 M1

26) logikal: Discover G1 Logikal B2 L2

27) melktart: Discover G1 M1 Y2 M2

28) logikal: Sacrifice Y2 L1
Move R2 L1 M1
Move R2 M1 M2

29) melktart: Move R2 M1 L2

30) logikal: Sacrifice G3 Logikal
Build G1 L1
Build G3 L2
Build Y2 Logikal

31) melktart: Attack G1 L2

32) logikal: Trade G3 R3 L2

33) melktart: Build G3 M2

34) logikal: Sacrifice G2 L1
Build R2 L2
Build R3 M2

35) melktart: Move G3 M2 M1

36) logikal: Trade Y2 G2 Logikal

37) melktart: Discover G3 M1 Y2 Dtms

38) logikal: Attack R2 L2

39) melktart: Build B1 M1

40) logikal: Move R3 M2 M1

41) melktart: Sacrifice G2 M1
Build G2 Dtms
Build B1 M1

42) logikal: Build G3 Logikal

43) melktart: Sacrifice Y3 Melktart
Move B1 M1 L2
Move B1 M1 L2
Move B1 M1 L2
Catastrophe L2 Blue

44) logikal: Sacrifice Y1 L1
Move R3 M1 Melktart

45) melktart: Build G1 Melktart

46) logikal: Sacrifice R2 M2
Attack G2 Melktart
Attack G1 Melktart



15248)
Started: 2010.1.25, Ended: 2010.2.13
Participants: dethdukk (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld Y3 B1 G3

2) dethdukk: Homeworld R1 B2 G3

3) dlwillson: Build G1 Dlwillson

4) dethdukk: Build G1 Dethdukk

5) dlwillson: Discover G1 Dlwillson Y2 Jimmy

6) dethdukk: Trade G1 Y1 Dethdukk

7) dlwillson: Build G1 Dlwillson

8) dethdukk: Build Y1 Dethdukk

9) dlwillson: Trade G1 Y1 Dlwillson

10) dethdukk: Build Y2 Dethdukk

11) dlwillson: Discover Y1 Dlwillson B2 Bobby

12) dethdukk: Discover Y1 Dethdukk B3 Smallstep

13) dlwillson: Build G1 Dlwillson

14) dethdukk: Build G1 Dethdukk

15) dlwillson: Sacrifice G3 Dlwillson
Build G2 Dlwillson
Build G2 Jimmy
Build Y2 Bobby

16) dethdukk: Discover G1 Dethdukk R3 Giantleap

17) dlwillson: Move Y2 Bobby Giantleap

18) dethdukk: Sacrifice G1 Giantleap
Build Y3 Smallstep

19) dlwillson: Sacrifice G2 Jimmy
Build Y3 Bobby
Build G1 Jimmy

20) dethdukk: Build G2 Dethdukk

21) dlwillson: Trade G2 R2 Dlwillson

22) dethdukk: Trade Y2 R2 Dethdukk

23) dlwillson: Move Y3 Bobby Dlwillson

24) dethdukk: Move G2 Dethdukk Smallstep

25) dlwillson: Sacrifice G1 Jimmy
Build Y2 Giantleap

26) dethdukk: Build G1 Dethdukk

27) dlwillson: Build G2 Jimmy

28) dethdukk: Build G2 Smallstep

29) dlwillson: Sacrifice G2 Jimmy
Build G2 Dlwillson
Build G3 Dlwillson

30) dethdukk: Sacrifice Y3 Smallstep
Move G2 Smallstep Bobby
Move G2 Bobby Dlwillson
Move G2 Smallstep Jimmy
Catastrophe Dlwillson Green

31) dlwillson: Sacrifice G1 Jimmy
Build Y3 Bobby

32) dethdukk: Build G1 Dethdukk
	dethdukk: *sound of gun cocking*...  POW!

33) dlwillson: Trade Y1 G1 Bobby

34) dethdukk: Move G1 Dethdukk Smallstep

35) dlwillson: Trade Y3 G3 Dlwillson
	dlwillson: Maybe it was the sound of a trap closing...  snap!  :-)  It's your turn.
	dlwillson: Why don't the systems arrange themselves by proximity?  It'd be easier to read the map.  And, why don't I own that spawning cruiser in Jimmy?
	dethdukk: Because I moved it there using my y3 sacrifice.  so its miiine.

36) dethdukk: Build Y1 Smallstep

37) dlwillson: Build Y3 Bobby

38) dethdukk: Trade Y1 R1 Smallstep

39) dlwillson: Sacrifice Y2 Giantleap
Move Y3 Bobby Smallstep
Move G1 Bobby Dlwillson

40) dethdukk: Move R1 Smallstep Jimmy

41) dlwillson: Build R1 Dlwillson

42) dethdukk: Build Y1 Smallstep

43) dlwillson: Sacrifice Y3 Smallstep
Move R1 Dlwillson Jimmy
Move R1 Jimmy Smallstep
Move R1 Smallstep Dethdukk

44) dethdukk: Sacrifice R2 Dethdukk
Attack R1 Dethdukk
Pass

45) dlwillson: Trade Y3 G3 Bobby

46) dethdukk: Sacrifice G3 Dethdukk
Build G2 Smallstep
Build G2 Smallstep
Build G3 Dethdukk
	dethdukk: I keep getting what I think are good ideas until you move and I see a flaw.

47) dlwillson: Sacrifice G3 Dlwillson
Build G3 Dlwillson
Build Y2 Giantleap
Build R2 Dlwillson

48) dethdukk: Sacrifice G3 Dethdukk
Build G3 Dethdukk
Build Y3 Dethdukk
Build Y3 Smallstep

49) dlwillson: Move Y2 Giantleap Bobby

50) dethdukk: Sacrifice G3 Dethdukk
Build G3 Dethdukk
Build R2 Jimmy
Build R3 Dethdukk

51) dlwillson: Move Y2 Bobby Smallstep
Catastrophe Smallstep Yellow

52) dethdukk: Sacrifice G3 Dethdukk
Build G3 Jimmy
Pass
Pass

53) dlwillson: Sacrifice Y2 Giantleap
Discover R2 Dlwillson Y2 Gambit
Move G1 Dlwillson Gambit
	dlwillson: Grr...  My red torpedo definitely didn't cause all the disruption I hoped it would.

54) dethdukk: Move R1 Dethdukk Smallstep

55) dlwillson: Sacrifice G3 Bobby
Build G3 Gambit
Build R3 Gambit
Build R3 Dlwillson

56) dethdukk: Trade R3 Y3 Dethdukk

57) dlwillson: Trade R2 Y2 Dlwillson

58) dethdukk: Move Y3 Dethdukk Smallstep

59) dlwillson: Move G1 Gambit Smallstep
Catastrophe Smallstep Green

60) dethdukk: Build G1 Dethdukk
	dethdukk: I think I have you in...  2-3 turns.
	dlwillson: I think you're frickin' mistaken.

61) dlwillson: Build G1 Dlwillson

62) dethdukk: Move G1 Dethdukk Smallstep

63) dlwillson: Discover R3 Gambit B3 Potato

64) dethdukk: Sacrifice G3 Jimmy
Build G2 Dethdukk
Build G2 Smallstep
Build G3 Jimmy
	dlwillson: Look, are you just fiddling around with me or what?

65) dlwillson: Sacrifice G3 Dlwillson
Build G3 Dlwillson
Build R2 Potato
Build R3 Gambit

66) dethdukk: Sacrifice G3 Jimmy
Build G3 Jimmy
Build Y1 Smallstep
Build Y1 Smallstep
	dethdukk: nah, looks like you found a move to hold me off for a bit.  still got you in a few more moves.

67) dlwillson: Discover Y2 Dlwillson B2 Carrot

68) dethdukk: Discover Y1 Smallstep B2 Finaljump

69) dlwillson: Discover R2 Gambit B3 Rutabaga

70) dethdukk: Move Y1 Smallstep Finaljump
	dlwillson: Any idea how I change my nick?


71) dlwillson: Move G3 Dlwillson Finaljump

72) dethdukk: Move Y1 Finaljump Dlwillson
	dethdukk: nah, no idea.  probably just make a new account...

73) dlwillson: Sacrifice R2 Potato
Attack Y1 Finaljump
Attack Y1 Dlwillson

74) dethdukk: Sacrifice Y3 Smallstep
Move R1 Smallstep Jimmy
Move R1 Jimmy Dlwillson
Move R1 Jimmy Dlwillson

75) dlwillson: Sacrifice G3 Gambit
Build G3 Dlwillson
Build Y3 Carrot
Build R2 Rutabaga

76) dethdukk: Sacrifice Y3 Dethdukk
Move G2 Jimmy Dlwillson
Move G1 Smallstep Jimmy
Move G1 Jimmy Dlwillson
Catastrophe Dlwillson Green

77) dlwillson: Sacrifice Y2 Carrot
Move R3 Gambit Potato
Move R3 Potato Dethdukk

78) dethdukk: Sacrifice G2 Smallstep
Build Y2 Dethdukk
Build Y2 Dethdukk
	dlwillson: So, my reaction was: AAAAH!  Holy crap!  Oh, wait... Nevermind.  :-)

79) dlwillson: Sacrifice R2 Rutabaga

Attack G1 Dethdukk
Attack G2 Dethdukk

80) dethdukk: Sacrifice Y2 Dethdukk
Move R2 Jimmy Dlwillson
Move G3 Jimmy Dlwillson
Catastrophe Dlwillson Red

81) dlwillson: Sac R3 Potato
Attack Y1 Dethdukk
Attack Y2 Dethdukk
Pass



14757)
Variants: "Hard time"
Started: 2010.1.25, Ended: 2010.2.26
Participants: mathochist (S), dethdukk (W), alexcobo (N), crysnamtodshire (E)
Winner: mathochist

1) alexcobo: Homeworld G3 B2 Y3

2) crysnamtodshire: Homeworld G2 B1 R3

3) mathochist: Homeworld R3 B1 G3
	mathochist: What's the goal? Defeat the player to your left, or defeat everyone, or what? I'm not sure what the default is, here.

4) dethdukk: Homeworld R3 B1 G3

5) alexcobo: Build Y1 Alexcobo
	dethdukk: this isnt sinister, so I am going to assume kill everyone but you.
	alexcobo: As far as I know, every Homeworld game at Superduper is LastOneStanding.

6) crysnamtodshire: Build R1 Crysnamtodshire
	mathochist: Alexcobo: no, sinister is offered as a variant. I had seen on the wiki that n the sinister version, killing another player other than your left-hand neighbor doesn't end the game.

Since it's offered as a variant but didn't show up in the offering or the title bar as such, I was pretty sure it wasn't that...  and I didn't see anything to indicate good or evil, so I didn't think it was that, either.  I just wasn't sure whether it might be something else I hadn't thought of.  Thanks!

	dethdukk: oh, good luck everyone.

7) mathochist: Build G1 Mathochist

8) dethdukk: Build G1 Dethdukk

9) alexcobo: Trade Y1 R1 Alexcobo

10) crysnamtodshire: Build R1 Crysnamtodshire
	alexcobo: I felt rather "naked" seeing how all of you had Red Tech and I didn't.
	mathochist: that's ok, I'm in another game where everybody chose the exact same 2 colors for their stars and the exact same color for their ships

11) mathochist: T G1 Y1 Mathochist

12) dethdukk: Build G1 Dethdukk

13) alexcobo: Build Y1 Alexcobo
	dethdukk: I just took the set I did hoping math was going to be a little slower on the start (due to his red star).  also, I happen to like red stars.

14) crysnamtodshire: Trade R1 Y1 Crysnamtodshire

15) mathochist: Build G1 Mathochist

16) dethdukk: Trade G1 Y1 Dethdukk

17) alexcobo: Build R1 Alexcobo

18) mathochist: Discover G1 Mathochist Y2 Magica

19) dethdukk: Trade G1 R1 Dethdukk

20) alexcobo: Discover Y1 Alexcobo G1 Beta

21) mathochist: Build G1 Mathochist

22) dethdukk: Build G1 Dethdukk

23) alexcobo: Trade R1 G1 Alexcobo

24) mathochist: Build G2 Mathochist

25) dethdukk: Build G2 Dethdukk

26) alexcobo: Build G2 Alexcobo

27) mathochist: Move G1 Magica Dethdukk
Catastrophe Dethdukk G

28) dethdukk: Trade R1 G1 Dethdukk

29) alexcobo: Build R1 Alexcobo
	dethdukk: whoh... yeah, didnt see that you could reach me.  serious mistake there...

30) mathochist: Trade G1 R1 Mathochist
	mathochist: yeah, you left yourself open. sorry!
	dethdukk: nah, my bad.  maybe I'll be able to pll off a miraculous recovery...

31) dethdukk: Build G1 Dethdukk

32) alexcobo: Build Y1 Beta

33) mathochist: Build Y2 Mathochist

34) dethdukk:
Build Y2 Dethdukk

35) alexcobo: Build Y2 Alexcobo

36) mathochist: Discover Y2 Mathochist G2 Meta

37) dethdukk: Discover Y1 Dethdukk B2 Twin

38) mathochist: B Y2 Mathochist

39) dethdukk: Move G1 Dethdukk Twin

40) mathochist: Trade Y1 B1 Mathochist
	mathochist: Wonder whether it's worth scavenging all those undefended ships.  .. prolly not, there are still plenty of good ships left.

	mathochist: You can resign if you like.  We can start a second 1v1 if you like, too...  I'm liking this game a lot, and I've put up a standing challenge.  :)

	dethdukk: k.  gl in our 1v1 then


15251)
Variants: "Unrated"
Started: 2010.1.25, Ended: 2010.2.1
Participants: johannz (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld Y3 B1 G3

2) johannz: Homeworld Y2 B1 G3
	johannz: homeworld y2 b1 g3

3) dlwillson: Build G1 Dlwillson
	johannz: Space. The final frontier. This is where Adam's brain is most days...
	dlwillson: :-)

4) johannz: Build G1 Johannz

5) dlwillson: Discover G1 Dlwillson Y2 Blarfo

6) johannz: Trade G3 Y3 Johannz

7) dlwillson: Build G1 Dlwillson

8) johannz: Build G2 Johannz

9) dlwillson: Sacrifice G3 Dlwillson
Build G2 Blarfo
Build G2 Blarfo
Build G3 Dlwillson

10) johannz: Trade G2 Y2 Johannz
	dlwillson: You're doing great, Adam.  Are you watching any other games while you play this one?  So you know, I'm going to try to shut you out of green.

11) dlwillson: Discover G2 Blarfo B3 Gungho
	johannz: No, I'm not watching any other games.
I realize that you are going for green. I have a vague plan in mind.

12) johannz: Move Y3 Johannz Gungho

13) dlwillson: Sacrifice G3 Dlwillson
Build G2 Blarfo
Build G3 Gungho
Build G3 Dlwillson

14) johannz: Build G3 Johannz

15) dlwillson: Trade G3 Y3 Gungho

16) johannz: Sacrifice Y2 Johannz
Move G1 Johannz Gungho
Move G1 Gungho Blarfo
Catastrophe Blarfo G

17) dlwillson: Trade G2 R2 Gungho
	johannz: I don't know if it was a good plan, I just know it was a vague plan. :)

18) johannz: Trade Y3 R3 Gungho
	dlwillson: Excellent!  I'd forgotten about that catastrophic possibility.

19) dlwillson: Sacrifice R2 Gungho
Attack R3 Gungho
Pass
	dlwillson: I thought of something even better...  I think I have you in a couple moves.  Not totally sure, but we'll see.

20) johannz: Build G1 Johannz
	johannz: Well, I think I saw the "y3 to johannz, let adam make a ship in johannz, sacrifice r2 in gungho to capture everything in johannz with the y3" move. Hopefully I countered it correctly.

21) dlwillson: Move Y3 Gungho Johannz
	johannz: Apparently I didn't counter it correctly.

22) johannz: Discover G3 Johannz Y3 Mxyzptlk

23) dlwillson: Sacrifice R3 Gungho
Attack G1 Johannz
Pass
Pass

	dlwillson: Good game.
	johannz: yes it was. I forgot you lost when you lost control of your home system. I thought you had to leave the system before I died. So I was going to move the G3 back in after you conquered the ships in the system.


15253)
Started: 2010.1.25, Ended: 2010.3.15
Participants: ZackStack (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) ZackStack: Homeworld B1 R2 G3

3) zoltar: Build G1 Zoltar

4) ZackStack: Build G1 Zackstack

5) zoltar: Trade G1 Y1 Zoltar

6) ZackStack: Trade G1 Y1 Zackstack

7) zoltar: Build G1 Zoltar

8) ZackStack: Build G1 Zackstack

9) zoltar: Trade G1 B1 Zoltar

10) ZackStack: Discover G1 Zackstack B3 Bluemoon

11) zoltar: Discover B1 Zoltar G1 Greenpea

12) ZackStack: Build G1 Bluemoon

13) zoltar: Build G2 Zoltar

14) ZackStack: Build G2 Zackstack

15) zoltar: Sacrifice G2 Zoltar
Build B1 Greenpea
Build B2 Greenpea

16) ZackStack: Trade G1 R1 Bluemoon

17) zoltar: Trade B2 Y2 Greenpea

18) ZackStack: Build R1 Bluemoon

19) zoltar: Build B2 Greenpea

20) ZackStack: Trade G2 B2 Zackstack

21) zoltar: Discover B2 Greenpea G3 Greengiant

22) ZackStack: Move B2 Zackstack Greengiant

23) zoltar: Build B3 Greenpea

24) ZackStack: Sacrifice R1 Bluemoon
Attack B2N Greengiant

25) zoltar: Sacrifice Y2 Greenpea
Move B1 Greenpea Greengiant
Move B1 Greenpea Greengiant
Catastrophe Greengiant B

26) ZackStack: Trade G1 Y1 Bluemoon

27) zoltar: Build Y2 Zoltar

28) ZackStack: Build Y2 Zackstack

29) zoltar: Move Y1 Zoltar Greenpea

30) ZackStack: Build G1 Zackstack

31) zoltar: Build B1 Greenpea

32) ZackStack: Move G1 Zackstack Bluemoon

33) zoltar: Build B1 Greenpea

34) ZackStack: Trade Y2 B2 Zackstack

35) zoltar: Trade B1 R1 Greenpea

36) ZackStack: Discover R1 Bluemoon G1 Greenpip

37) zoltar: Build G2 Zoltar

38) ZackStack: Move Y1 Bluemoon Greenpip

39) zoltar: Move G2 Zoltar Greenpip

40) ZackStack: Build G2 Zackstack

41) zoltar: Trade B3 G3 Greenpea

42) ZackStack: Sacrifice G3 Zackstack
Build G2 Bluemoon
Build Y2 Greenpip
Build G3 Zackstack

43) zoltar: Sacrifice G3 Greenpea
Build G3 Zoltar
Build Y2 Zoltar
Build Y3 Greenpea

44) ZackStack: Attack G2 Greenpip

45) zoltar: Move Y3 Greenpea Bluemoon

46) ZackStack: Sacrifice Y1 Greenpip
Discover G2 Bluemoon Y1 Yellowdot

47) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Bluemoon
Build Y3 Greenpea

48) ZackStack: Sacrifice Y2 Greenpip
Move G2 Greenpip Zoltar
Move G2 Yellowdot Zoltar
Catastrophe Zoltar Green

49) zoltar: Sacrifice R1 Greenpea
Attack G1 Bluemoon

50) ZackStack: Build Y1 Zackstack

51) zoltar: Trade Y3 G3 Bluemoon
	ZackStack: After that this is just a minor pyrric victory...

52) ZackStack: Discover G2 Zackstack Y3 Sunburst

53) zoltar: Trade G1 R1 Bluemoon
	zoltar: Yeah, that leaves me with a devastatingly powerful position, owning all the large yellow ships.

54) ZackStack: Discover Y1 Zackstack G3 Muchoverde
	ZackStack: Yeah... I need to starting thinking a few more moves in advance in our games :-)

55) zoltar: Move Y3 Greenpea Sunburst

56) ZackStack: Discover G2 Sunburst B1 Bluedot

57) zoltar: Build Y2 Greenpea

58) ZackStack: Move Y1 Muchoverde Greenpip

59) zoltar: Move Y2 Zoltar Greenpip

60) ZackStack: Move Y1 Greenpip Sunburst

61) zoltar: Move Y3 Sunburst Bluedot

62) ZackStack: Build G1 Zackstack

63) zoltar: Sacrifice R1 Bluemoon
Attack G2 Bluedot

64) ZackStack: Discover G1 Zackstack B3 Freefall

65) zoltar: Build G2 Bluemoon

66) ZackStack: Build R1 Greenpip
	ZackStack: Is it just me or am I doing even worse than last time? :-)

67) zoltar: Sacrifice G3 Bluemoon
Build G2 Bluemoon
Build G3 Bluemoon
Build G3 Bluedot

68) ZackStack: Move B2 Zackstack Sunburst
	zoltar: Yeah, you're in bad shape, and I'm just slowly building my lead. I have the same problem with TwoShort, who crushes me every game. I actually did beat him once, but have lost every one of the next half-dozen games since, and I'm losing my current game against him.
	ZackStack: Heh.  I'm at a point where I manhandle newbs and inexperienced players and have a winning record against moderate players... but you pros trounce me every time :-)  I need to start paying attention so I can stop making the same mistakes...

69) zoltar: Move G3 Bluemoon Zackstack

70) ZackStack: Attack G3 Zackstack

71) zoltar: Sacrifice Y3 Bluedot
Move G2 Bluemoon Zackstack
Move G2 Bluemoon Zackstack
Move Y3 Bluemoon Zackstack
Catastrophe Zackstack G

72) ZackStack: Move Y1 Sunburst Zackstack
	zoltar: I'm violating all the basic rules: I've left my homeworld without a large ship, and I don't have a gun; but just by sheer overwhelming numbers it just doesn't matter.
	ZackStack: Thanks for reminding me. :-p  Sorry I'm not the sort to resign... I enjoy seeing the manner of my demise :-)

73) zoltar: Sacrifice G3 Bluedot
Build Y3 Zackstack
Pass
Pass
Catastrophe Zackstack Y
	zoltar: I can win without a gun. My 'pacifist green army' is just going to march into your capital.



15153)
Started: 2010.1.26, Ended: 2010.1.28
Participants: TwoShort (S), mathochist (N)
Winner: TwoShort

1) mathochist: Homeworld B1 R2 G3

2) TwoShort: Homeworld B1 G3 B3 *
	TwoShort: Howdy

3) mathochist: Build G1 Mathochist
	mathochist: hiya!

4) TwoShort: Build B1 Twoshort

5) mathochist: Trade G1 Y1 Mathochist

6) TwoShort: Trade B3 Y3 Twoshort

7) mathochist: Discover Y1 Mathochist G3 George
	mathochist: neat trick, that

8) TwoShort: Build B2 Twoshort

9) mathochist: Build G1 Mathochist
	mathochist: typo

10) TwoShort: Discover B2 Twoshort G2 Grogar

11) mathochist: Trade G1 Y1 Mathochist

12) TwoShort: Build B2 Twoshort

13) mathochist: Build G1 Mathochist

14) TwoShort: Build B2 Grogar

15) mathochist: Discover G1 Mathochist B3 Sam

16) TwoShort: Build B3 Grogar

17) mathochist: D Y1 Mathochist B3 Fred

18) TwoShort: Trade B3 Y3 Grogar

19) mathochist: B G1 Mathochist

20) TwoShort: Trade B2 R2 Grogar

21) mathochist: B G1 Mathochist

22) TwoShort: Build B2 Grogar

23) mathochist: Build G2 Sam

24) TwoShort: Move B2 Grogar George

25) mathochist: Trade G2 R2 Sam

26) TwoShort: Build B3 George

27) mathochist: T G1 Y1 Mathochist

28) TwoShort: Trade B3 R3 George

29) mathochist: B Y2 Mathochist

30) TwoShort: Build R1 George

31) mathochist: M Y1 Mathochist Sam

32) TwoShort: Sacrifice Y3 Grogar
Move R3 George Mathochist
Move R1 George Mathochist
Discover R2 Grogar Y3 Yolonda

33) mathochist: A R3 Mathochist

34) TwoShort: Move R2 Yolonda Mathochist
Catastrophe Mathochist Red
	TwoShort: The Death Star is clear to fire... :)

35) mathochist: S Y2 Mathochist
M Y1 Sam Grogar
M R2 Sam Grogar


36) TwoShort: Sacrifice Y3 Twoshort
Move B2 Grogar Mathochist
Move B2 George Mathochist
Discover B2 Twoshort Y2 Boomtime

37) mathochist: M R2 Grogar Twoshort

38) TwoShort: Move B2 Boomtime Mathochist
Catastrophe Mathochist Blue

	mathochist: good game! that was a terrific opening for you, I'll have to remember that one.
	TwoShort: Thanks for the game!  I, indeed, love that opening.  I don't get to play it much, because nobody seems to take a b1 star as first player against me much anymore :)  Anyway, if you want to not take a b1 and have a more typical game, I'm up for a rematch any time...


15059)
Variants: "Hard time"
Started: 2010.1.28, Ended: 2010.1.31
Participants: Jesse (S), shmil1 (N)
Winner: shmil1

1) shmil1: Homeworld G3 Y1 G3 *

	Jesse: Sorry, this was not a good time for me to start a new game.


15247)
Started: 2010.1.28, Ended: 2010.2.22
Participants: ZackStack (S), shmil1 (N)
Winner: ZackStack

1) shmil1: Homeworld G3 B1 Y3

2) ZackStack: Homeworld R1 B2 G3
	ZackStack: Hey Schmil!  Have a good game!

3) shmil1: Build Y1 Shmil1

4) ZackStack: Build G1 Zackstack
	ZackStack: I noticed you haven't played many games... would you like me to point out particularly bad moves when I see them to help your learning the game?

5) shmil1: Discover Y1 Shmil1 G2 Eldor

6) ZackStack: Trade G1 Y1 Zackstack

7) shmil1: Discover Y1 Eldor G3 Techos

8) ZackStack: Build G1 Zackstack

9) shmil1: Move Y1 Techos Zackstack

10) ZackStack: Attack Y1 Zackstack

11) shmil1: Trade Y3 G3 Shmil1

12) ZackStack: Discover G1 Zackstack B3 Azure
	ZackStack: Hey Schmil!  You know I can just attack and capture your ship right?  Feel free to undo...
	ZackStack: Sorry Schmil... I don't want to time out here.

13) shmil1: Build G1 Shmil1


14) ZackStack: Move Y1 Zackstack Azure
	shmil1: Sorry for mistake. I had a busy days to check it out. :(
	ZackStack: Its okay.  Now you just have to trick me into giving it back :-)

15) shmil1: Trade G1 R1 Shmil1

16) ZackStack: Build Y1 Azure

17) shmil1: Build G1 Shmil1

18) ZackStack: Build Y2 Azure

19) shmil1: Trade G3 Y3 Shmil1
	shmil1: build g1 shmil1

20) ZackStack: Trade Y1 R1 Azure
	ZackStack: I'd love to, but I don't have any presence in that system yet :-p

21) shmil1: Build R2 Shmil1

22) ZackStack: Trade Y1 B1 Azure

23) shmil1: Discover R2 Shmil1 G2 Gramm

24) ZackStack: Build R2 Azure

25) shmil1: Build Y1 Shmil1

26) ZackStack: Discover B1 Azure G2 Verde

27) shmil1: Move Y1 Shmil1 Gramm

28) ZackStack: Build G1 Zackstack

29) shmil1: Build R2 Gramm

30) ZackStack: Sacrifice G3 Zackstack
Build G2 Azure
Build G3 Zackstack
Build G3 Azure

31) shmil1: Build R3 Shmil1

32) ZackStack: Move G3 Azure Verde

33) shmil1: Move R3 Shmil1 Verde
	ZackStack: That move always feels a little like cheating...

34) ZackStack: Sacrifice R1 Azure
Attack R3 Verde

35) shmil1: Trade Y3 B3 Shmil1

36) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build B1 Verde
Build Y1 Azure
	ZackStack: Hey schmil!  I hope you see this one in time...   I can sacrifice one of my red ships to capture your R3 there.  You might want to undo!
	ZackStack: Sorry... this might be the last time I log in until tomorrow night...

37) shmil1: Build Y2 Gramm

38) ZackStack: Sacrifice Y2 Azure
Move B1 Verde Shmil1
Move B1 Verde Shmil1
Catastrophe Shmil1 Blue

39) shmil1: Discover Y2 Gramm R3 Lastworld

40) ZackStack: Sacrifice Y1 Azure
Move G3 Verde Shmil1

41) shmil1: Sacrifice Y2 Lastworld
Move R2 Gramm Shmil1
Move R2 Gramm Shmil1

42) ZackStack: Sacrifice G1 Azure
Build G1 Shmil1
Catastrophe Shmil1 Green
	ZackStack: Ouch.  Not a very optimistic star name! 

	ZackStack: Thanks again for the game!  Sorry a couple of those moves got away from you... let me know if you'd like a rematch sometime! 
	shmil1: i would like to rematch although you are much more better. but it is good to have good teachers. once or twice i have played in a hurry in surgery. but it is no excuse...


15297)
Variants: "Unrated"
Started: 2010.1.28, Ended: 2010.4.5
Participants: MattWorden (S), makertron (N)
Winner: MattWorden

1) makertron: Homeworld R3 B1 G3
	MattWorden: Hi makertron ... I have not played this game before, but it looks very interesting.  Do you mind playing a newbie-learner? :-)

2) MattWorden: Homeworld G3 R1 Y3 *
	makertron: not at all. i'm pretty inexperienced myself.

3) makertron: Build G1 Makertron

4) MattWorden: Build Y1 Mattworden

5) makertron: Trade G1 Y1 Makertron

6) MattWorden: Discover Y1 Mattworden B2 Butterball

7) makertron: Build G1 Makertron

8) MattWorden: Trade Y1 G1 Butterball

9) makertron: Discover G1 Makertron B2 Ballbutter

10) MattWorden: Build Y1 Mattworden

11) makertron: Build Y1 Makertron

12) MattWorden: Move Y1 Mattworden Butterball

13) makertron: Move Y1 Makertron Ballbutter

14) MattWorden: Trade Y1 R1 Butterball

15) makertron: Build Y1 Ballbutter

16) MattWorden: Build Y2 Mattworden

17) makertron: Trade Y1 R1 Ballbutter

18) MattWorden: Move Y2 Mattworden Butterball

19) makertron: Build G1 Makertron

20) MattWorden: Trade Y2 R2 Butterball

21) makertron: Build R2 Ballbutter

22) MattWorden: Build G2 Butterball

23) makertron: Sacrifice G3 Makertron
Build G2 Ballbutter
Build G2 Ballbutter
Build G3 Makertron

24) MattWorden: Build G3 Butterball

25) makertron: Move G1 Makertron Butterball

26) MattWorden: Attack G1 Butterball

27) makertron: Build R2 Ballbutter
Catastrophe Butterball Green

28) MattWorden: Trade R1 G1 Butterball
	MattWorden: Wow -- nice one! :-p

29) makertron: Build G1 Makertron

30) MattWorden: Build Y1 Mattworden

31) makertron: Move G2 Ballbutter Makertron

32) MattWorden: Move Y1 Mattworden Butterball

33) makertron: Move R2 Ballbutter Makertron

34) MattWorden: Build G2 Butterball

35) makertron: Trade G2 Y2 Makertron

36) MattWorden: Sacrifice G2 Butterball
Build R1 Butterball
Build R3 Butterball

37) makertron: Build R3 Makertron

38) MattWorden: Move R1 Butterball Makertron
Catastrophe Makertron R

39) makertron: Move R1 Ballbutter Makertron

40) MattWorden: Build Y2 Butterball

41) makertron: Build Y2 Ballbutter

42) MattWorden: Move R2 Butterball Mattworden

43) makertron: Trade Y1 R1 Makertron

44) MattWorden: Build G2 Butterball

45) makertron: Trade G1 B1 Makertron

46) MattWorden: Build R2 Butterball

47) makertron: Build R3 Ballbutter

48) MattWorden: Trade G1 B1 Butterball

49) makertron: Trade R1 G1 Makertron

50) MattWorden: Move B1 Butterball Mattworden

51) makertron: Discover G1 Makertron R3 Sol

52) MattWorden: Trade G2 B2 Butterball

53) makertron: Sacrifice Y2 Ballbutter
Move R3 Ballbutter Mattworden
Move R2 Ballbutter Mattworden
Catastrophe Mattworden R

54) MattWorden: Build B3 Mattworden

55) makertron: Build B3 Makertron

56) MattWorden: Move B2 Butterball Makertron
Catastrophe Makertron B

	MattWorden: Thanks for the game, makertron.


15261)
Started: 2010.1.29, Ended: 2010.2.6
Participants: dethdukk (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) dethdukk: Homeworld R1 B2 G3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort
	dethdukk: g'day.  thanks for letting me take banker.

4) dethdukk: Build G1 Dethdukk
	dethdukk: so, after reviewing your past games, I notice that you never actually lost to andy looney...  so why is it that you are considered the second best?  as andy is the world champ at this point.

5) TwoShort: Trade G1 Y1 Twoshort

6) dethdukk: Build G1 Dethdukk

7) TwoShort: Build G1 Twoshort

8) dethdukk: Trade G1 Y1 Dethdukk

9) TwoShort: Build G1 Twoshort
	TwoShort: dangit, I've been composing a lengthy reply to your question and not paying enough attention :) should have built yellow.

10) dethdukk: Build G2 Dethdukk
	dethdukk: It worked! Actually, I really did just ask cause i was curious.  I am liking this start, but I have no clue how to run banker (I actually prefer fortress) so I guess we will see how this turns out.

11) TwoShort: Discover G1 Twoshort G2 Greenorama
	TwoShort: So, the lengthy response:  
Who says I'm second best?!  :)  Actually, I know someone wrote that in the wiki some number of years ago; but I don't know who or if they still think so.  Definitive Homeworlds rankings do not exist.  Andy is world champion because he won the annual tournament at the Origins game convention; but the tournament is not terribly well attended, and I've never been to it.  If I did go, I expect I'd lose.  I beat Andy all 3 times we played here, but I've played him in person maybe 6 times and lost every one. I expect there are several people who would ususally be better than me under the time constraints of in-person play.  Around here, when I can take 20 minutes (or 2 days) to think about a move any time I want, I'm pretty good :)  My completely stratospheric rating here should imply I'm completely dominant, but honestly there's at least 3 players I wouldn't bet beating the next time we play.
	TwoShort: How to play Banker:  Move greens out to 3s (often yellow) in hopes that when that color is gone you can sacrifice the ships to build stars as ships without my ever getting a crack at them.
  How to play Goldilocks: Move out to 2s, choosing the color based on what to pull out of the stash and control who gets the 3s.  for example...


12) dethdukk: Discover G2 Dethdukk G3 Smallstep
	TwoShort: A vast number of other strategies and guidelines also apply, but that's my nutshell analysis of the strategies uniquely available based on opening.
	dethdukk: hm, so next turn you sac the g3 to get 2 g3s and a g2...  I *think* the best move is...

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build Y1 Twoshort

14) dethdukk: Discover G1 Dethdukk B3 Giantleap

15) TwoShort: Trade G2 R2 Twoshort

16) dethdukk: Build Y2 Dethdukk

17) TwoShort: Move Y1 Twoshort Greenorama
	dethdukk: hm, that was annoying...  so judging by how you normally play, that means that you either see a way to use that ship soon, or you did that just to stop me from getting a g3.

18) dethdukk: Build G2 Dethdukk

19) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Twoshort
Build Y2 Greenorama
	TwoShort: I generally want to use it, or have it force you to take a red also (The Gun Rule); since you could safely ignore it, yes, it was just the best move that stopped you getting the 3.  Of course, now that I've got it, I'll try to develop the treat and force you to take a red when you'd rather do something else.
	dethdukk: hm, odd.  I undid my turn, and it says it is my turn (to me at least), but all i got is an undo button.

20) dethdukk: Move Y1 Dethdukk Giantleap

21) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y3 Twoshort
Build Y3 Greenorama
	dethdukk: hm.  yeah, either way I did that you took the advantage.  

22) dethdukk: Build Y3 Dethdukk

23) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Greenorama Giantleap
Move Y2 Greenorama Smallstep

24) dethdukk: Trade G3 R3 Dethdukk

25) TwoShort: Trade Y3 R3 Giantleap

26) dethdukk: Build G3 Dethdukk

27) TwoShort: Sacrifice R2 Twoshort
Attack G2 Smallstep
Attack G1 Giantleap

28) dethdukk: Move Y3 Dethdukk Smallstep

29) TwoShort: Sacrifice G3 Twoshort
Build G3 Giantleap
Build Y2 Smallstep
Build Y3 Greenorama
	dethdukk: ya got me.  you want to play it out, or call it?

30) dethdukk: Trade G2 B2 Dethdukk
	TwoShort: I'm always happy to play it out, but it's up to you; I'd rather you resign not be having fun.  
  By my reckoning, I've got only a slight material advantage at the moment; but I can gain a big one this turn.  Personally, I don't resign until I can see exactly how the opponent can force victory no matter what I do; and I don't see that here quite yet.

31) TwoShort: Sacrifice G3 Giantleap
Build G2 Giantleap
Build G3 Smallstep
Build R1 Giantleap

32) dethdukk: Discover Y3 Smallstep R2 Haven

33) TwoShort: Trade G2 B2 Giantleap

34) dethdukk: Discover B2 Dethdukk B3 Stall

35) TwoShort: Sacrifice Y3 Greenorama
Move R3 Giantleap Dethdukk
Move R1 Giantleap Dethdukk
Move B2 Giantleap Dethdukk
Catastrophe Dethdukk Red

	TwoShort: OK, now I've got you :)  You can make me take two more turns to win instead of one, but that's it.  Anyway, nice game; you were right with me until I got you in the grow-a-3-or-defend-vs-red bind, and  you made it awfully hard to finally close the door after that.
	dethdukk: Thank ya much.  Yeah, I felt that you were always just one step ahead.  Did much better than the last time I played against you in any case.  Thanks for the game, hope to do another when some of mine end and college slows down a bit.


15302)
Variants: "Hard time"
Started: 2010.1.29, Ended: 2010.2.4
Participants: dethdukk (S), shmil1 (N)
Winner: dethdukk

1) shmil1: Homeworld G1 B2 Y3

2) dethdukk: Homeworld R1 B3 G3

	dethdukk: Good luck, have fun.


15309)
Variants: "Hard time"
Started: 2010.1.29, Ended: 2010.4.4
Participants: TwoShort (S), zoltar (N)
Winner: TwoShort

1) zoltar: Homeworld B2 R1 G3

2) TwoShort: Homeworld B1 R3 G3

3) zoltar: Build G1 Zoltar
	TwoShort: Howdy
	zoltar: Hi!

4) TwoShort: Build G1 Twoshort

5) zoltar: Trade G1 Y1 Zoltar

6) TwoShort: Trade G1 Y1 Twoshort

7) zoltar: Build G1 Zoltar

8) TwoShort: Build G1 Twoshort

9) zoltar: Trade G1 B1 Zoltar

10) TwoShort: Trade G1 B1 Twoshort

11) zoltar: Build B2 Zoltar

12) TwoShort: Build B2 Twoshort

13) zoltar: Trade B2 R2 Zoltar

14) TwoShort: Trade B2 Y2 Twoshort

15) zoltar: Build B2 Zoltar

16) TwoShort: Build B2 Twoshort

17) zoltar: Trade B2 Y2 Zoltar

18) TwoShort: Discover B1 Twoshort G2 Grogar

19) zoltar: Discover B1 Zoltar G3 Greenbelt

20) TwoShort: Discover B2 Twoshort Y2 Yolonda

21) zoltar: Move Y2 Zoltar Greenbelt

22) TwoShort: Trade B2 R2 Yolonda

23) zoltar: Build B2 Greenbelt

24) TwoShort: Move Y1 Twoshort Grogar

25) zoltar: Move B2 Greenbelt Grogar

26) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y3 Twoshort
Build Y3 Grogar

27) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build B2 Greenbelt
Build B3 Grogar

28) TwoShort: Sacrifice Y1 Twoshort
Move Y3 Grogar Greenbelt

29) zoltar: Sacrifice B2 Greenbelt
Trade B1 Y1 Greenbelt
Trade B3 R3 Grogar

30) TwoShort: Sacrifice B1 Grogar
Trade Y3 R3 Greenbelt

31) zoltar: Sacrifice Y2 Greenbelt
Discover Y1 Greenbelt G2 Greendale
Discover Y1 Zoltar G3 Greenville
	zoltar: Once again, I never saw your big sack coming, and my counter-sack did little. I think I'm doomed!

32) TwoShort: Trade Y3 G3 Twoshort

33) zoltar: A Y1 Grogar

34) TwoShort: Move R2 Yolonda Greenville

35) zoltar: Build Y2 Greendale

36) TwoShort: Attack Y1 Greenville
	zoltar: I survived all that sacrifices stuff and somehow came out of it with a good position, unless I missed your next trick...
	TwoShort: I've thought your position was good throughout. I just didn't say anything because I figured if you wanted to psych yourself out I should let you :)  Of course, that might imply I'm saying so now to psych you out so you'll miss my next trick...  I guess it depends if I come up with one :)
	zoltar: Well, you're the only player that consistently plays moves I didn't anticipate -- usually I figure I know what all the candidate moves are and I'm not surprised. When you play something I didn't even consider, then I'm automatically scared.

37) zoltar: Trade R2 G2 Zoltar

38) TwoShort: Build G1 Twoshort

39) zoltar: Build Y2 Zoltar

40) TwoShort: Build Y3 Greenville

41) zoltar: Sacrifice Y2 Greendale
Move Y1 Grogar Greenville
Move Y1 Greendale Greenville
Catastrophe Greenville Y

42) TwoShort: Discover G1 Twoshort Y2 Yonderboy

43) zoltar: Build B1 Grogar

44) TwoShort: Build G1 Twoshort

45) zoltar: Trade B1 Y1 Grogar

46) TwoShort: Build G1 Yonderboy

47) zoltar: Build G2 Zoltar

48) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build R1 Greenbelt
Build G3 Twoshort

49) zoltar: Discover Y2 Zoltar B3 Bluemoon

50) TwoShort: Discover Y2 Twoshort B2 Bluestar

51) zoltar: Build B1 Grogar

52) TwoShort: Sacrifice G3 Twoshort
Build R1 Greenville
Build R2 Greenville
Build G3 Twoshort

53) zoltar: Discover G2 Zoltar Y3 Goldilox

54) TwoShort: Sacrifice G3 Twoshort
Build Y1 Bluestar
Build Y3 Twoshort
Build G3 Twoshort
	TwoShort: Sorry to be so slow... I'm having a busy week and and this game is getting more than a little bit complicated :) 

55) zoltar: Sacrifice G2 Goldilox
Build Y3 Grogar
Build R2 Grogar

56) TwoShort: Sacrifice Y2 Bluestar
Move R1 Greenville Grogar
Move R1 Greenbelt Grogar
Catastrophe Grogar Red
	zoltar: That's ok. I've pretty much given up on this one anyway.
	TwoShort: If your pessimism is motivated by a move you see for me, I wish you'd let me know what it is :)  I see a couple ways either of us could launch massive attacks that wouldn't quite be enough for victory and would cripple the attacker.  It seems like there should be a way for one of us to push it over the tipping point, but I don't see it yet. 
	zoltar: I don't see the victory, but I think I'm slowly being squeezed, and now you have a factory and I don't; nor do I have any plan of attack or way to threaten you. I am in the blue economy, but with your factory you can catch up and get most of the remaining pieces, I think. 
	zoltar: I just wish I could see more clearly in a position like this, the way I can in chess, where I know if my opponent's advantage is crushing, or if I have good drawing chances, etc. Here I only am in a fog with a feeling of impending doom at any moment...
	TwoShort: I guess I just want to assure you that I too feel like I'm in a fog of impending doom.  If I set up the position in real pyramids and make the moves I'm considering, I can see if you can crush me in any obvious way the very next turn, but that's about as far as it goes.  
  I'm happy to have the factory, but I can't beat you to the blues, or even get one without giving you the choice of blowing up half my world or taking both b3s.  If I take the red this turn, you catastrophe me and put the g3 you need in the stash so I spend a turn keeping it away from you.  If I take yellow, you can cash Goldilox, which I guess is what I'm leaning toward, but it's not much better than even.
  I don't see how to force catastrophes so I can get more of the pieces after.  So it seems like the game is reaching a stable detente.  Since that never happens, I assume one of us will find the killer move here somewhere, but I don't see it so far.
	zoltar: That makes sense. I created Goldilox as an investment to make sure I could get one of the Y3's as if you get them both I'm in big trouble, and I guess there's no way right now to use your factory in crushing way without my having powerful counter-moves. Making it an interesting game. I think my position has improved over the last few moves, too, and I'm holding my own much better than I usually do in my games with you. And, even given all that, I feel I'm in that fog of impending doom!

57) zoltar: Trade Y3 R3 Grogar

58) TwoShort: Discover G1 Yonderboy Y3 Yoyodyne

59) zoltar: Move R3 Grogar Yoyodyne

60) TwoShort: Sacrifice G3 Twoshort
Build G2 Yonderboy
Build G3 Twoshort
Build Y2 Bluestar

61) zoltar: Attack G1 Yoyodyne

62) TwoShort: Move Y3 Twoshort Grogar

63) zoltar: Move R3 Yoyodyne Yonderboy

64) TwoShort: Sacrifice G2 Yonderboy
Build R1 Greenbelt
Build R1 Greenville

65) zoltar: Sacrifice G1 Yoyodyne
Build Y3 Bluemoon

66) TwoShort: Sacrifice R2 Greenville
Attack B2 Grogar
Attack B1 Grogar

	zoltar: Well, that does it; my position has rapidly deteriorated, and now I lost all my blue pieces.


15249)
Started: 2010.2.4, Ended: 2010.2.17
Participants: dethdukk (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) dethdukk: Homeworld R1 B3 G3

3) zoltar: Build G1 Zoltar
	dethdukk: Hello, good luck in the game.
	zoltar: Hi, same to you!

4) dethdukk: Build G1 Dethdukk

5) zoltar: Trade G1 Y1 Zoltar

6) dethdukk: Trade G1 Y1 Dethdukk

7) zoltar: Build G1 Zoltar

8) dethdukk: Build G1 Dethdukk

9) zoltar: Trade G1 R1 Zoltar
	dethdukk: kind of weird... my best choice is really to just do what you have done (so far)

10) dethdukk: Build G1 Dethdukk

11) zoltar: Build R1 Zoltar

12) dethdukk: Discover G1 Dethdukk B2 Smallstep

13) zoltar: Discover R1 Zoltar B1 Blueberry

14) dethdukk: Trade G1 B1 Dethdukk

15) zoltar: Build R2 Zoltar

16) dethdukk: Build G1 Dethdukk

17) zoltar: Trade R2 Y2 Zoltar

18) dethdukk: Build G1 Dethdukk

19) zoltar: Build G2 Zoltar

20) dethdukk: Discover G1 Dethdukk Y2 Giantleap

21) zoltar: Move G2 Zoltar Blueberry

22) dethdukk: Build B1 Dethdukk

23) zoltar: Build R2 Blueberry

24) dethdukk: Move B1 Dethdukk Giantleap

25) zoltar: Sacrifice Y1 Zoltar
Move R2 Blueberry Giantleap

26) dethdukk: Build B2 Giantleap

27) zoltar: Attack B2 Giantleap

28) dethdukk: Build B3 Giantleap

29) zoltar: Sacrifice G2 Blueberry
Build R2 Blueberry
Build B3 Giantleap
Catastrophe Giantleap B

30) dethdukk: Discover G1 Giantleap R3 Pin

31) zoltar: Trade R2 G2 Blueberry

32) dethdukk: Build B1 Dethdukk

33) zoltar: Sacrifice G3 Zoltar
Build R2 Blueberry
Build R2 Giantleap
Build R3 Zoltar

34) dethdukk: Discover B1 Dethdukk B2 Chess

35) zoltar: Trade R3 G3 Zoltar

36) dethdukk: Build B3 Dethdukk

37) zoltar: Build R3 Blueberry
	dethdukk: interesting game so far.  never seen someone concentrate on red before.

38) dethdukk: Sacrifice G1 Dethdukk
Build B3 Chess

39) zoltar: Sacrifice Y2 Zoltar
Move R2 Blueberry Smallstep
Move R3 Blueberry Chess
	zoltar: Well, I've never tried concentrating on red before.
	dethdukk: doing pretty good so far... you've got my HW pinned down pretty well, and I keep feeling like I've got no gun while you've got a lot of them.

40) dethdukk: Sacrifice B3 Chess
Trade B1 G1 Chess
Trade G1 B1 Pin
Trade B3 G3 Dethdukk
	zoltar: Then I say it's time to start shootin'!

41) zoltar: Sacrifice R2 Giantleap
Attack G1 Chess
Attack G1 Smallstep
	dethdukk: I must admit that even if this game is completely odd, it is funny as hell trying to counter your attacks using blue...

42) dethdukk: Sacrifice G3 Dethdukk
Build B3 Dethdukk
Build B3 Pin
Build Y1 Dethdukk

43) zoltar: Build R2 Chess

44) dethdukk: Trade B3 G3 Pin

45) zoltar: Trade R3 Y3 Chess

46) dethdukk: Build B3 Pin

47) zoltar: Build R3 Smallstep
	dethdukk: not much I can do to stop whats coming...  fortunately its not quite the end of the game.

48) dethdukk: Discover Y1 Dethdukk Y2 Expansion

49) zoltar: Sacrifice Y3 Chess
Move R1 Blueberry Pin
Move R2 Giantleap Pin
Move R2 Smallstep Pin
Catastrophe Pin R
	zoltar: Well, you could have sacrificed that y1 and moved one of the big ships to 'expansion' instead, I think.
	dethdukk: true...  I think that I will be a little better off in the long run this way.  

50) dethdukk: Discover B3 Dethdukk R2 Reboot

51) zoltar: Build R1 Smallstep
	dethdukk: yeah, I knew it was gunna happen when you made the Y3.  I was trying to decide if I should try to save a ship or not.  I think you'll get me in the long run, it takes too long to grow using blues as a main I think, so you are slowly out-growing me...  but yet sure tho, we'll see.  I'm off for tonight.
	zoltar: Reboot is right -- it's a whole new game!
	zoltar: I'm going to bed -- will come back to this with a fresh look later!

52) dethdukk: Sacrifice G3 Dethdukk
Build B1 Reboot
Build B3 Dethdukk
Build Y1 Dethdukk

53) zoltar: Sacrifice G2 Blueberry
Build R2 Smallstep
Build R3 Chess

54) dethdukk: Trade B3 G3 Dethdukk

55) zoltar: Trade R3 Y3 Smallstep

56) dethdukk: Trade B3 R3 Reboot

57) zoltar: Trade R3 Y3 Chess
	dethdukk: I has guns!  bwahahahah.  or something like that.

58) dethdukk: Sacrifice G3 Dethdukk
Build B1 Reboot
Build B3 Dethdukk
Build B3 Reboot

59) zoltar: Sacrifice G3 Zoltar
Build R3 Zoltar
Build Y2 Chess
Build Y2 Smallstep
	zoltar: Yeah, I was afraid of that, but yellow is so crucial, that I was going to have to give up at least one R3 if I wanted to get into the Yellow industry. I might as well go for more yellow, then, now that you've got a red ship.

60) dethdukk: Move Y1 Dethdukk Reboot
	zoltar: Ok, I can do that too!

61) zoltar: Trade R3 Y3 Zoltar

62) dethdukk: Trade B3 G3 Dethdukk
	zoltar: There have been more large ship swaps and sacks in this game than in any homeworlds game I've ever played, I think.

63) zoltar: Discover R1 Smallstep B3 Blueyoudonthave
	dethdukk: I think its cause we both went for different colors, and we both succeeded.  or something.

64) dethdukk: Trade B1 G1 Reboot

65) zoltar: Sacrifice Y3 Smallstep
Discover R1 Zoltar B1 Wormhole
Move R1 Wormhole Reboot
Move R1 Blueyoudonthave Reboot
Catastrophe Reboot R
	zoltar: Well, this is looking too dangerous, so I think once again, I'll simplify us down, and take the interest I get after the simplification.

66) dethdukk: Build B1 Dethdukk
	dethdukk: narg, ya got me... that should be game in a couple turns.  didnt see that you could do that, I'da moved the red ship outta there.  cant believe I didnt see it actually.  well gg, I'd like to play you again when college calms down once more.

67) zoltar: Trade Y3 G3 Chess
	zoltar: I was expecting you to move your red ship to challenge my small red ship. Then I sack my Y2 and move my two R2's into the system and blow up your red ship, still retaining my Y3. But leaving both the B3 and R3 in the reboot system meant I could sac a Y3 and just the two R1's and take out two of your large ships leaving me with the two-to-one large ship ratio, which gives me too much of an advantage now. The move of the R1 was to both block your growing the B3 and threaten to blow up reboot so I figured I'd get to knock out your R3 and take away your only gun again when you moved it to respond.

	dethdukk: yeah, I'm gunna have to forfeit.  If I move out, you move and capture me, if I stay in my homeworld, you catastrophy my ships soon as I get past 2.  gg as before, I'll ask for another when I have more time.  was very fun
	zoltar: Ok. Yeah, you can't expand, and I'm gonna sack my G3 for all 3 remaining yellows next move, freezing you out of the yellow as well, and then just slowly build until I have a doomsday machine and can sack Y3's two turns in a row to move in and blow up your double star. There's really nothing you could do. I'd like to go back and have you redo the move before I blew up the reboot system, but the system isn't sophisticated enough to allow it. 


15424)
Variants: "Hard time"
Started: 2010.2.7, Ended: 2010.3.26
Participants: headphoned (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B3 Y2 G3

2) headphoned: Homeworld R1 B2 G3

3) Uglyfoot: Build G1 Uglyfoot

4) headphoned: Build G1 Headphoned

5) Uglyfoot: Discover G1 Uglyfoot R1 Fort

6) headphoned: Trade G1 Y1 Headphoned

7) Uglyfoot: Build G1 Uglyfoot

8) headphoned: Build Y1 Headphoned

9) Uglyfoot: Trade G1 Y1 Uglyfoot

10) headphoned: Build Y2 Headphoned

11) Uglyfoot: Build Y2 Uglyfoot

12) headphoned: Trade Y1 R1 Headphoned

13) Uglyfoot: Trade Y2 R2 Uglyfoot

14) headphoned: Build R2 Headphoned

15) Uglyfoot: Move Y1 Uglyfoot Fort

16) headphoned: Discover R2 Headphoned G3 Trof

17) Uglyfoot: Build Y1 Fort

18) headphoned: Trade Y1 B1 Headphoned

19) Uglyfoot: Discover Y1 Fort B3 Mall

20) headphoned: Move B1 Headphoned Trof

21) Uglyfoot: Build Y1 Fort

22) headphoned: Build G1 Headphoned

23) Uglyfoot: Build Y2 Fort

24) headphoned: Build Y3 Headphoned

25) Uglyfoot: Move Y1 Fort Mall

26) headphoned: Move Y2 Headphoned Trof

27) Uglyfoot: Build Y3 Fort

28) headphoned: Move Y2 Trof Fort
Catastrophe Fort Yellow

29) Uglyfoot: Build G1 Uglyfoot

30) headphoned: Move G1 Headphoned Trof

31) Uglyfoot: Build G2 Fort

32) headphoned: Trade R2 Y2 Trof

33) Uglyfoot: Move Y1 Mall Fort

34) headphoned: Discover G1 Trof B1 Kwest

35) Uglyfoot: Move G1 Fort Mall

36) headphoned: Move B1 Trof Kwest

37) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Fort
Build G2 Mall
Build G3 Uglyfoot

38) headphoned: Build B1 Kwest

39) Uglyfoot: Trade G2 B2 Mall

	headphoned: WTF. I didn't resign and I didn't get an e-mail that it was my turn. Goddamnit. Oh well. 
	Uglyfoot: Play again?  Without hard time?


15392)
Started: 2010.2.9, Ended: 2010.4.3
Participants: dethdukk (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B2 R1 G3

2) dethdukk: Homeworld R1 B3 G3
	agentofchaos: Hi, enjoy the game. 
	dethdukk: thanks, you too.

3) agentofchaos: Build G1 Agentofchaos

4) dethdukk: Build G1 Dethdukk

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) dethdukk: Trade G1 Y1 Dethdukk

7) agentofchaos: Build G1 Agentofchaos

8) dethdukk: Build G1 Dethdukk

9) agentofchaos: Trade G1 R1 Agentofchaos

10) dethdukk: Trade G1 B1 Dethdukk

11) agentofchaos: Build R2 Agentofchaos

12) dethdukk: Build B1 Dethdukk

13) agentofchaos: Trade R2 Y2 Agentofchaos

14) dethdukk: Discover B1 Dethdukk G2 Twin

15) agentofchaos: Build R2 Agentofchaos

16) dethdukk: Build B1 Dethdukk

17) agentofchaos: Trade R2 G2 Agentofchaos

18) dethdukk: Discover B1 Dethdukk R2 Bind

19) agentofchaos: Build R2 Agentofchaos

20) dethdukk: Sacrifice G3 Dethdukk
Build B2 Twin
Build B2 Bind
Build B3 Dethdukk

21) agentofchaos: Discover Y2 Agentofchaos B3 Sinistrex

22) dethdukk: Trade B3 G3 Dethdukk

23) agentofchaos: Trade G3 B3 Agentofchaos

24) dethdukk: Trade B2 R2 Twin

25) agentofchaos: Move R1 Agentofchaos Sinistrex

26) dethdukk: Build R3 Twin

27) agentofchaos: Build R3 Agentofchaos

28) dethdukk: Trade B2 Y2 Bind

29) agentofchaos: Move R3 Agentofchaos Sinistrex

30) dethdukk: Build B2 Dethdukk

31) agentofchaos: Build Y1 Agentofchaos

32) dethdukk: Trade B2 Y2 Dethdukk

33) agentofchaos: Build G1 Agentofchaos

34) dethdukk: Move Y1 Dethdukk Twin

35) agentofchaos: Move G1 Agentofchaos Sinistrex

36) dethdukk: Sacrifice G3 Dethdukk
Build Y3 Dethdukk
Build Y3 Bind
Build Y3 Twin

37) agentofchaos: Build G1 Agentofchaos



15486)
Variants: "Hard time"
Started: 2010.2.10, Ended: 2010.2.19
Participants: jake007 (S), shmil1 (N)
Winner: shmil1

1) shmil1: Homeworld G2 R1 B3

2) jake007: Homeworld G3 Y1 B3

3) shmil1: Build B1 Shmil1
	jake007: To nechápu...

4) jake007: Build B1 Jake007
	shmil1: koukni na pravidla :) http://mwe.cz/binaryhomeworldspravidla.html
	shmil1: v t&#283;ch p&#345;íkazech nahrazuješ barvy písmeny b=blue... a velikosti jsou 1-3. v každém koleš zvol typ p&#345;íkazu (build, move...) a pak to rozepiš...

5) shmil1: Trade B3 Y3 Shmil1

6) jake007: Trade B3 Y3 Jake007

7) shmil1: Discover B1 Shmil1 G3 Olddays

8) jake007: Build B1 Jake007

9) shmil1: Build B2 Olddays
	jake007: Nic jiného mi nefunguje, nevim, co mám d&#283;lat.

	jake007: nevim co mam delat, jak se mam pohnout, nic nefunguje
	jake007: nevim co mam delat, jak se mam pohnout, nic nefunguje, kdyz se skusim pohnout, pise to, ze systems are not connected
	shmil1: jasne, protoze jsou spolu spojene jen ruzne velke hvezdy. tak holt fungujou cervi diry. ty mas malou a velkou, tak jsi spojen jen se stredni. a tu musis teprve objevit...


15487)
Variants: "Hard time"
Started: 2010.2.10, Ended: 2010.3.14
Participants: Kermit (S), jeep (N)
Winner: jeep

1) jeep: H R1 B2 G3

2) Kermit: Homeworld Y1 B2 G3

3) jeep: B G1 Jeep

4) Kermit: Build G1 Kermit

5) jeep: T G1 Y1 Jeep

6) Kermit: Trade G1 B1 Kermit

7) jeep: B Y1 Jeep

8) Kermit: Discover B1 Kermit G3 Freebus

9) jeep: B Y2 Jeep

10) Kermit: B B1 Freebus
	jeep: Haha. I missed that this is a small universe. I really should have noticed immediately 

11) jeep: Discover Y1 Jeep B3 Moon

12) Kermit: Build G1 Kermit



13) jeep: Trade Y2 G2 Jeep

14) Kermit: Trade G1 R1 Kermit

15) jeep: Build Y2 Jeep

16) Kermit: Move R1 Kermit Moon

17) jeep: Discover Y1 Moon B2 Far

	Kermit: me be toast ... can't build yellow can't trade for it
	jeep: I don't think you were that bad off... You could have traded your G3 for yellow...


15301)
Started: 2010.2.11, Ended: 2010.2.17
Participants: TwoShort (S), umfpt (N)
Winner: TwoShort

1) umfpt: Homeworld B2 Y1 G3

2) TwoShort: Homeworld R1 B3 G3

3) umfpt: Build G1 Umfpt

4) TwoShort: Build G1 Twoshort

5) umfpt: Discover G1 Umfpt Y3 Tola

6) TwoShort: Trade G1 Y1 Twoshort

7) umfpt: Build G1 Umfpt

8) TwoShort: Build Y1 Twoshort

9) umfpt: Trade G1 B1 Umfpt

10) TwoShort: Build Y2 Twoshort

11) umfpt: Build G1 Tola

12) TwoShort: Discover Y1 Twoshort B2 Bluonia

13) umfpt: Move G1 Tola Bluonia

14) TwoShort: Discover Y1 Twoshort Y2 Yelly

15) umfpt: Build G1 Bluonia

16) TwoShort: Build G2 Twoshort

17) umfpt:

Build G2 Tola

18) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluonia
Build Y3 Bluonia
Build Y3 Twoshort

19) umfpt: Trade G1 R1 Bluonia

20) TwoShort: Trade Y2 R2 Bluonia

21) umfpt: Move B1 Umfpt Tola

22) TwoShort: Attack R1 Bluonia

23) umfpt: Move G2 Tola Yelly

24) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Bluonia Tola
Move Y3 Tola Umfpt

25) umfpt: Build G1 Umfpt

26) TwoShort: Sacrifice R2 Bluonia
Attack G3 Umfpt
Attack G1 Umfpt
	TwoShort: Thanks for the game.



15507)
Started: 2010.2.17, Ended: 2010.3.30
Participants: dethdukk (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y2 G3

2) dethdukk: Homeworld B1 Y2 G3

3) dlwillson: Build G1 Dlwillson

4) dethdukk: Build G1 Dethdukk
	dlwillson: Dood, that took FOREVER.  I know it's hard to select homeworld colors, though.  Especially when you're new...  ;-)

5) dlwillson: Discover G1 Dlwillson B1 Golly

6) dethdukk: Trade G1 B1 Dethdukk

7) dlwillson: Build G1 Dlwillson

8) dethdukk: Build B2 Dethdukk

9) dlwillson: Build G1 Golly

10) dethdukk: Discover B1 Dethdukk R3 Bounds

11) dlwillson: Trade G1 Y1 Golly

12) dethdukk: Sacrifice G3 Dethdukk
Build B2 Bounds
Build B2 Bounds
Build B3 Dethdukk

13) dlwillson: Trade G3 B3 Dlwillson
	dlwillson: wow!

14) dethdukk: Trade B2 Y2 Bounds

15) dlwillson: Discover B3 Dlwillson G1 Sprout

16) dethdukk: Trade B1 R1 Bounds

17) dlwillson: Build G2 Dlwillson

18) dethdukk: Trade B3 G3 Dethdukk
	dlwillson: I can never decide whether to be annoyed or proud that you're beating me.  Mumble...

19) dlwillson: Build G2 Golly

20) dethdukk: Build G2 Dethdukk

21) dlwillson: Discover G1 Golly B3 Whuhoo

22) dethdukk: Move G2 Dethdukk Bounds

23) dlwillson: Build G3 Golly

24) dethdukk: Build G3 Dethdukk

25) dlwillson: Trade G2 R2 Dlwillson

26) dethdukk: Sacrifice G3 Dethdukk
Build G2 Dethdukk
Build G3 Bounds
Build Y1 Bounds

27) dlwillson: Sacrifice G3 Golly
Build G3 Dlwillson
Build B1 Sprout
Build R1 Dlwillson

28) dethdukk: Sacrifice G3 Dethdukk
Build G3 Dethdukk
Build R1 Bounds
Build B2 Dethdukk

29) dlwillson: Trade B3 Y3 Sprout

30) dethdukk: Sacrifice B2 Dethdukk
Trade B2 R2 Dethdukk
Trade R1 Y1 Bounds

31) dlwillson: Move Y3 Sprout Whuhoo

32) dethdukk: Move Y2 Bounds Sprout

33) dlwillson: Sacrifice G3 Dlwillson
Build Y3 Golly
Build Y3 Whuhoo
Build G3 Dlwillson

34) dethdukk: Move Y1 Bounds Golly

35) dlwillson: Sacrifice Y3 Golly
Move Y1 Golly Whuhoo
Move Y3 Whuhoo Dethdukk
Move Y1 Whuhoo Dethdukk

36) dethdukk: Sacrifice R1 Bounds
Attack Y3 Dethdukk
	dlwillson: I think I got you, buddy.

37) dlwillson: S G1 Whuhoo
B Y3 Dethdukk
C Dethdukk Yellow



15156)
Started: 2010.2.20, Ended: 2010.2.24
Participants: mathochist (S), ts52 (N)
Winner: mathochist

1) ts52: Homeworld Y1 B2 G3

2) mathochist: Homeworld Y1 B3 G3
	ts52: Have a good game.

3) ts52: B G1 Ts52

4) mathochist: B G1 Mathochist

5) ts52: D G1 Ts52 B3 Gonzo

6) mathochist: Trade G1 Y1 Mathochist

7) ts52: Build G1 Ts52

8) mathochist: Build Y2 Mathochist

9) ts52: Trade G1 R1 Ts52

10) mathochist: Build G1 Mathochist

11) ts52: Build R1 Ts52

12) mathochist: Discover Y2 Mathochist B2 Kermit

13) ts52: Move R1 Ts52 Gonzo

14) mathochist: B Y2 Mathochist

15) ts52: Build R1 Ts52

16) mathochist: Move G1 Mathochist Kermit

17) ts52: Build R2 Ts52

18) mathochist: B Y2 Kermit

19) ts52: Discover R2 Ts52 Y3 Bigbird

20) mathochist: B Y3 Kermit

21) ts52: B R2 Ts52

22) mathochist: Trade Y3 R3 Kermit

23) ts52: Discover R2 Ts52 Y3 Zoe

24) mathochist: Build Y3 Kermit

25) ts52: Trade R1 B1 Ts52

26) mathochist: Build R1 Kermit
	ts52: I don't think this one's going to well for me. Should have seen you getting all the yellow. D'oh!
	mathochist: I've only played this game a handful of times, but I do seem to be picking up a few tricks.  :)  But I still have to figure out what to do with it now that I have it all.  

27) ts52: Build R2 Gonzo

28) mathochist: Move R3 Kermit Bigbird

29) ts52: Build R3 Ts52

30) mathochist: Build R3 Kermit

31) ts52: Move B1 Ts52 Zoe

32) mathochist: M G1 Kermit Bigbird

33) ts52: Attack G1 Bigbird

34) mathochist: A R2 Bigbird
	mathochist: Huh that was weird, thought I'd made another move

35) ts52: Move G1 Bigbird Ts52

36) mathochist: M Y2 Kermit Bigbird

37) ts52: Discover R3 Ts52 G3 Oscar

38) mathochist: M R3 Kermit Zoe

39) ts52: Pass

40) mathochist: Attack R2 Zoe

	ts52: yeah, I don't see a way out of this unless you make some serious goofs. But I'd love to play another if you're up for it.
	mathochist: This one was fun, anyway :) I started a rematch already.


15546)
Started: 2010.2.20, Ended: 2010.4.3
Participants: dethdukk (S), mathochist (N)
Winner: mathochist

1) mathochist: Homeworld R1 B2 G3

2) dethdukk: Homeworld B1 Y3 G3
	dethdukk: sorry that took a while, I lost internet for 5+ days

3) mathochist: Build G1 Mathochist
	mathochist: no problem.

4) dethdukk: Build G1 Dethdukk

5) mathochist: T G1 Y1 Mathochist

6) dethdukk: Build G1 Dethdukk

7) mathochist: Build Y1 Mathochist

8) dethdukk: Trade G1 Y1 Dethdukk

9) mathochist: Build Y2 Mathochist

10) dethdukk: Build Y2 Dethdukk

11) mathochist: Discover Y1 Mathochist G3 Dude

12) dethdukk: Trade G1 R1 Dethdukk

13) mathochist: Sacrifice Y2 Mathochist
Discover Y1 Dude G2 Babe
Move Y1 Babe Dethdukk
Catastrophe Dethdukk Yellow

14) dethdukk: Build R1 Dethdukk

15) mathochist: Build G1 Mathochist

16) dethdukk: Build R2 Dethdukk

17) mathochist: Build Y1 Mathochist

18) dethdukk: Trade R2 Y2 Dethdukk

19) mathochist: Discover G1 Mathochist Y3 Wishingstar

20) dethdukk: Move R1 Dethdukk Wishingstar

21) mathochist: Move G1 Wishingstar Mathochist



15587)
Variants: "Hard time"
Started: 2010.2.22, Ended: 2010.3.22
Participants: mneme (S), wyons (N)
Winner: mneme

1) wyons: Homeworld B1 R3 G3

2) mneme: Homeworld R1 G2 B3

3) wyons: Build G1 Wyons

4) mneme: Build B1 Mneme

5) wyons: Trade G1 B1 Wyons

6) mneme: Build B2 Mneme
	wyons: naaah , .. need to think!
	mneme: Understandable.


7) wyons: Build B2 Wyons

8) mneme: Trade B3 Y3 Mneme

9) wyons: Trade B1 Y1 Wyons

10) mneme: Discover B2 Mneme G3 Alpha

11) wyons: Discover B2 Wyons G2 Bonanza

12) mneme: Build Y1 Mneme

13) wyons: Build G1 Wyons

14) mneme: Build B1 Alpha

15) wyons: Trade G1 R1 Wyons

16) mneme: Trade B2 G2 Alpha

17) wyons: Build R1 Wyons

18) mneme: Build B2 Alpha

19) wyons: Move R1 Wyons Bonanza

20) mneme: Trade B2 R2 Alpha

21) wyons: Build R2 Bonanza

22) mneme: Build B2 Mneme

23) wyons: Trade R2 Y2 Bonanza

24) mneme: Discover B2 Mneme Y3 Beta

25) wyons: Discover Y2 Bonanza B3 Zardoz

26) mneme: Sacrifice G2 Alpha
Build B2 Alpha
Build B3 Mneme

27) wyons: Build B3 Bonanza

28) mneme: Sacrifice B1 Alpha
Trade B3 G3 Mneme

29) wyons: Sacrifice Y1 Wyons
Discover B2 Bonanza B3 Ypres

30) mneme: Build R2 Alpha

31) wyons: Trade B2 R2 Ypres

32) mneme: Trade R2 Y2 Alpha

33) wyons: Build G1 Wyons

34) mneme: Move G3 Mneme Ypres

	wyons: I'm out on this, sorry but you are a clear winner. thanks again.
	mneme: It's fair enough--you were in a bad place.  GG!



15600)
Variants: "Hard time"
Started: 2010.2.23, Ended: 2010.5.7
Participants: stoneaxe (S), Subhan64 (N)
Winner: Subhan64

1) Subhan64: Homeworld B1 G3 Y3

2) stoneaxe: Homeworld B1 R2 G3

3) Subhan64: Build Y1 Subhan64

4) stoneaxe: Build G1 Stoneaxe

5) Subhan64: Trade Y1 G1 Subhan64
	stoneaxe: Hello and good luck.  We're off to an interesting start so far.

6) stoneaxe: Trade G1 Y1 Stoneaxe

7) Subhan64: Build G1 Subhan64

8) stoneaxe: Build G1 Stoneaxe

9) Subhan64: Trade G1 B1 Subhan64

10) stoneaxe: Trade G1 R1 Stoneaxe

11) Subhan64: Build B2 Subhan64

12) stoneaxe: Build R1 Stoneaxe

13) Subhan64: Trade B2 R2 Subhan64

14) stoneaxe: Discover R1 Stoneaxe Y3 Yps

15) Subhan64: Build B2 Subhan64

16) stoneaxe: Build G1 Stoneaxe

17) Subhan64: Trade B2 G2 Subhan64

18) stoneaxe: Trade G3 B3 Stoneaxe

19) Subhan64: Discover B1 Subhan64 R2 Harlans_world

20) stoneaxe: Build G1 Stoneaxe

21) Subhan64: Sacrifice G2 Subhan64
Build R1 Subhan64
Build R3 Subhan64

22) stoneaxe: Sacrifice G1 Stoneaxe
Build R3 Yps

23) Subhan64: Move R1 Subhan64 Harlans_world

24) stoneaxe: Discover G1 Stoneaxe R3 Raz

25) Subhan64: Build Y1 Subhan64

26) stoneaxe: Move R3 Yps Harlans_world

27) Subhan64: Move R2 Subhan64 Harlans_world
Catastrophe Harlans_world Red

28) stoneaxe: Trade B3 G3 Stoneaxe

29) Subhan64: Build R1 Subhan64

30) stoneaxe: Build G1 Stoneaxe

31) Subhan64: Discover Y3 Subhan64 Y2 Sirius7

32) stoneaxe: Build G2 Raz

33) Subhan64: Move Y3 Sirius7 Raz

34) stoneaxe: Move G1 Stoneaxe Yps

35) Subhan64: Attack G2 Raz

36) stoneaxe: Build G2 Stoneaxe

37) Subhan64: Sacrifice G2 Raz
Build Y1 Subhan64
Build Y2 Raz


38) stoneaxe: Build R2 Yps

39) Subhan64: Discover R1 Subhan64 Y2 Dont_blink

40) stoneaxe: Sacrifice G3 Stoneaxe
Build G2 Raz
Build G2 Yps
Build G3 Stoneaxe

41) Subhan64: Build G3 Subhan64



15547)
Variants: "Hard time"
Started: 2010.2.24, Ended: 2010.3.16
Participants: dlwillson (S), shmil1 (N)
Winner: dlwillson

1) shmil1: Homeworld B2 Y1 G3

2) dlwillson: Homeworld B3 R1 G3

3) shmil1: Build G1 Shmil1
	dlwillson: Thanks for taking my challenge.  Why two games?

4) dlwillson: Build G1 Dlwillson

5) shmil1: Discover G1 Shmil1 B3 Modry

6) dlwillson: Trade G1 Y1 Dlwillson

7) shmil1: Build G1 Modry

8) dlwillson: Build Y1 Dlwillson

9) shmil1: Trade G1 R1 Modry

10) dlwillson: Build Y2 Dlwillson

11) shmil1: Build G1 Modry

12) dlwillson: Trade Y2 R2 Dlwillson

13) shmil1: Build R1 Modry

14) dlwillson: Build Y2 Dlwillson

15) shmil1: Build G1 Shmil1

16) dlwillson: Build G2 Dlwillson

17) shmil1: Build G2 Shmil1

18) dlwillson: Sacrifice Y2 Dlwillson
Discover R2 Dlwillson Y2 Temp
Move R2 Temp Modry

19) shmil1: Trade G2 R2 Shmil1

20) dlwillson: Sacrifice G2 Dlwillson
Build R2 Modry
Build G2 Dlwillson
Cat Modry Red

21) shmil1: Build G2 Modry

22) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Dlwillson
Build G2 Dlwillson
Build G3 Dlwillson

23) shmil1: Trade G2 Y2 Modry

24) dlwillson: Discover G2 Dlwillson B2 Dingo

25) shmil1: Move G1 Modry Dingo

26) dlwillson: Trade G2 R2 Dingo

27) shmil1: Sacrifice G3 Shmil1
Build G2 Modry
Build G2 Modry
Build G3 Shmil1

28) dlwillson: Sacrifice Y2 Dlwillson
Move G2 Dlwillson Dingo

Move G2 Dingo Modry
Catastrophe Modry Green

29) shmil1: Move G1 Shmil1 Modry

30) dlwillson: Move Y1 Dlwillson Dingo

31) shmil1: Build R1 Shmil1

32) dlwillson: Build Y2 Dlwillson

33) shmil1: Build G1 Dingo

34) dlwillson: Discover Y1 Dlwillson B2 Sparkle

35) shmil1: Sacrifice Y2 Modry
Move G1 Dingo Dlwillson
Move G1 Dingo Dlwillson

36) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Dingo
Build Y2 Sparkle
Build Y3 Dlwillson

37) shmil1: Trade G1 R1 Dlwillson

38) dlwillson: Attack R1 Dlwillson

39) shmil1: Attack R1 Dlwillson

40) dlwillson: Sacrifice R2 Dingo
Attack R1 Dlwillson
Attack G1 Dlwillson

41) shmil1: Build R2 Shmil1

42) dlwillson: Trade Y3 G3 Dlwillson

43) shmil1: Trade G3 Y3 Shmil1

44) dlwillson: Build Y3 Dlwillson

45) shmil1: Move R2 Shmil1 Modry

46) dlwillson: Move Y3 Dlwillson Dingo

47) shmil1: Sacrifice Y3 Shmil1
Move R2 Modry Dingo
Move R1 Shmil1 Modry
Move R1 Modry Sparkle

48) dlwillson: Sacrifice Y2 Dingo
Move Y3 Dingo Modry
Move Y3 Modry Shmil1



15500)
Started: 2010.2.24, Ended: 2010.3.2
Participants: shmil1 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) shmil1: Homeworld B2 Y1 G3

3) TwoShort: Build G1 Twoshort

4) shmil1: Build G1 Shmil1

5) TwoShort: Trade G1 Y1 Twoshort

6) shmil1: Discover G1 Shmil1 R3 Rudy

7) TwoShort: Build G1 Twoshort

8) shmil1: Build G1 Rudy

9) TwoShort: Build G2 Twoshort

10) shmil1: Build G2 Shmil1

11) TwoShort: Trade G2 Y2 Twoshort

12) shmil1: Build G2 Shmil1

13) TwoShort: Discover Y1 Twoshort B2 Bluonia

14) shmil1: Trade G2 B2 Shmil1

15) TwoShort: Build Y1 Twoshort

16) shmil1: Build G2 Rudy

17) TwoShort: Discover Y1 Twoshort Y2 Yolonda

18) shmil1: Move B2 Shmil1 Rudy

19) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluonia
Build Y3 Bluonia
Build Y3 Twoshort

20) shmil1: Trade G3 Y3 Shmil1

21) TwoShort: Discover Y2 Bluonia G3 Grogar

22) shmil1: Build G2 Shmil1

23) TwoShort: Sacrifice Y3 Bluonia
Move Y1 Yolonda Grogar
Move Y1 Grogar Shmil1
Move Y2 Grogar Shmil1
Catastrophe Shmil1 Yellow

24) shmil1: Trade G2 R2 Shmil1

25) TwoShort: Trade Y2 R2 Twoshort

26) shmil1: Trade G2 Y2 Rudy

27) TwoShort: Move Y3 Twoshort Shmil1

28) shmil1: Sacrifice Y2 Rudy
Move G1 Rudy Shmil1
Move G1 Rudy Shmil1

29) TwoShort: Sacrifice R2 Twoshort
Attack R2 Shmil1
Attack G2 Shmil1

30) shmil1: Sacrifice B2 Rudy
Trade G1 R1 Shmil1
Trade G1 Y1 Shmil1

31) TwoShort: Sacrifice R2 Shmil1
Attack R1 Shmil1
Attack Y1 Shmil1
	TwoShort: Thanks for the game!



15398)
Started: 2010.2.24, Ended: 2010.3.26
Participants: shmil1 (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld G1 R3 B3

2) shmil1: Homeworld B2 Y1 G3
	ZackStack: Hi shmil!  You should have mentioned you are a busy surgeon!  My wife is a Physician Assisstant in a surgical department...  I won't worry about time in this one :-)

3) ZackStack: Build B1 Zackstack

4) shmil1: Build G1 Shmil1

5) ZackStack: Build B1 Zackstack

6) shmil1: Discover G1 Shmil1 B3 Polar

7) ZackStack: Trade B1 Y1 Zackstack

8) shmil1: Build G1 Polar

9) ZackStack: Discover B1 Zackstack Y2 Sunburst

10) shmil1: Build G2 Polar

11) ZackStack: Discover B1 Sunburst G3 Oaktree

12) shmil1: Build G2 Shmil1

13) ZackStack: Build B1 Oaktree

14) shmil1: Move G2 Shmil1 Oaktree

15) ZackStack: Trade B1 Y1 Oaktree

16) shmil1: Build G2 Shmil1

17) ZackStack: Build Y2 Oaktree

18) shmil1: Trade G2 Y2 Polar

19) ZackStack: Trade Y1 R1 Oaktree

20) shmil1: Sacrifice Y2 Polar
Discover G1 Polar R2 Rudy
Move G2 Shmil1 Oaktree

21) ZackStack: Move Y2 Oaktree Rudy

22) shmil1: Sacrifice G2 Oaktree
Build G2 Rudy
Build G2 Rudy

23) ZackStack: Attack G2 Rudy

24) shmil1: Attack Y2 Rudy

25) ZackStack: Build G3 Rudy
Catastrophe Rudy Green

26) shmil1: Sacrifice G2 Oaktree
Build G1 Polar
Build G2 Polar

27) ZackStack: Build B1 Oaktree

28) shmil1: Build G2 Shmil1

29) ZackStack: Build B1 Zackstack

30) shmil1: Trade G1 Y1 Polar

31) ZackStack: Build B2 Oaktree

32) shmil1: Sacrifice Y2 Rudy
Discover G2 Polar Y2 Slunce
Move G1 Polar Slunce

33) ZackStack: Trade B2 Y2 Oaktree

34) shmil1: Trade G2 R2 Shmil1

35) ZackStack: Build B2 Oaktree

36) shmil1: Sacrifice G2 Slunce
Build G1 Slunce
Build G2 Slunce

37) ZackStack: Build Y2 Oaktree

38) shmil1: Move G1 Slunce Zackstack

39) ZackStack: Attack G1 Zackstack

40) shmil1: Move G1 Slunce Zackstack
	shmil1: so, who will be quicker?
	ZackStack: That will depend on what we're trying to do I suppose ;-)

41) ZackStack: Discover G1 Zackstack B2 Puddle

42) shmil1: Sacrifice G2 Slunce
Build G2 Zackstack
Build G2 Zackstack
Catastrophe Zackstack Green

43) ZackStack: Sacrifice Y2 Oaktree
Move B1 Oaktree Shmil1
Move B1 Oaktree Shmil1

44) shmil1: Move R2 Shmil1 Zackstack

45) ZackStack: Attack R2 Zackstack

46) shmil1: Build G1 Shmil1
	ZackStack: You really need to stop sending your ships over just to watch them get captured at red planets!

47) ZackStack: Build B3 Oaktree

48) shmil1: Move Y1 Polar Shmil1

49) ZackStack: Sacrifice R2 Zackstack
Attack Y1 Shmil1
Attack G1 Shmil1

50) shmil1: Trade G3 R3 Shmil1

51) ZackStack: Build Y2 Shmil1

52) shmil1: Attack G1 Shmil1

53) ZackStack: Move B2 Oaktree Shmil1
Catastrophe Shmil1 Blue

54) shmil1: Build G1 Shmil1

55) ZackStack: Move Y1 Zackstack Shmil1
Catastrophe Shmil1 Yellow

	ZackStack: Thanks for the game Shmil!  You are getting better.  But you really need to stop giving ships to your opponent!


15603)
Variants: "Unrated"
Started: 2010.2.24, Ended: 2010.3.4
Participants: ZackStack (S), shmil1 (N)
Winner: ZackStack

1) shmil1: Homeworld B2 Y1 G3

2) ZackStack: Homeworld Y1 G3 B3
	ZackStack: Ahhh... Yellow stars make such friendly targets I think I'll make one too :-)

3) shmil1: Build G1 Shmil1

4) ZackStack: Build B1 Zackstack

5) shmil1: Build G1 Shmil1

6) ZackStack: Discover B1 Zackstack B2 Bluemoon

7) shmil1: Discover G1 Shmil1 B3 Modry

8) ZackStack: Trade B1 G1 Bluemoon

9) shmil1: Build G2 Modry

10) ZackStack: Build B1 Zackstack

11) shmil1: Trade G2 Y2 Modry

12) ZackStack: Build G2 Bluemoon

13) shmil1: Build G2 Modry

14) ZackStack: Trade G2 Y2 Bluemoon

15) shmil1: Move G2 Modry Bluemoon

16) ZackStack: Trade B1 R1 Zackstack

17) shmil1: Trade G2 R2 Bluemoon

18) ZackStack: Sacrifice R1 Zackstack
Attack R2 Bluemoon

19) shmil1: Sacrifice Y2 Modry
Move G1 Modry Bluemoon
Move G1 Bluemoon Zackstack
	ZackStack: Thanks schmil!  It can be kind of hard to go on the attack in this game...

20) ZackStack: Build B1 Zackstack

21) shmil1: Sacrifice G3 Shmil1
Build G2 Zackstack
Build G2 Zackstack
Build G2 Zackstack
Catastrophe Zackstack Green

22) ZackStack: Sacrifice Y2 Bluemoon
Discover G1 Bluemoon Y3 Passingthrough
Move G1 Passingthrough Shmil1
	ZackStack: I thought you might try that.  Its always dangerous to leave yourself without a defensive large at your Homeworld!

23) shmil1: Trade G1 R1 Shmil1

24) ZackStack: Sacrifice R2 Bluemoon
Attack R1 Shmil1
Pass
	ZackStack: Good work on your attack to destroy one of my stars.  It might have been a good idea to wait until your defenses were better able to handle loosing that many ships...  



15612)
Variants: "Hard time"
Started: 2010.2.24, Ended: 2010.3.7
Participants: shmil1 (S), dlwillson (N)
Winner: shmil1

1) dlwillson: Homeworld B3 Y2 G3

2) shmil1: Homeworld B2 Y3 G3

3) dlwillson: Build G1 Dlwillson

4) shmil1: Build G1 Shmil1

5) dlwillson: Discover G1 Dlwillson B1 Lucky

6) shmil1: Trade G1 R1 Shmil1

7) dlwillson: Build G1 Lucky

8) shmil1: Move R1 Shmil1 Lucky

9) dlwillson: Build G1 Dlwillson

10) shmil1: Attack G1 Lucky

11) dlwillson: Build G2 Dlwillson

12) shmil1: Build G2 Shmil1

13) dlwillson: Discover G2 Dlwillson Y1 Rich

14) shmil1: Trade G2 R2 Shmil1
	dlwillson: I think I've got you in a few moves.  Maybe not, though...  How are you doing?  Do you ever play Dethdukk?  He's my son. 

15) dlwillson: Sacrifice G3 Dlwillson
Build G2 Lucky
Build G2 Rich
Build G3 Dlwillson

16) shmil1: Build G3 Shmil1

17) dlwillson: Move G2 Rich Shmil1

18) shmil1: Trade G3 Y3 Shmil1

19) dlwillson: Sacrifice G2 Lucky
Build G2 Shmil1
Build G3 Lucky

20) shmil1: Sacrifice Y3 Shmil1
Move G3 Shmil1 Rich
Move G3 Rich Dlwillson
Move G1 Lucky Dlwillson
Catastrophe Dlwillson Green
	dlwillson: Good game.  I forgot the universe was small. OOPS!



15308)
Started: 2010.2.24, Ended: 2010.8.24
Participants: mathochist (S), zoltar (W), shmil1 (N), pedrop (E)
Winner: zoltar

1) shmil1: Homeworld B2 Y1 G3

2) pedrop: Homeworld Y1 B3 G3

3) mathochist: Homeworld B1 G2 Y3

4) zoltar: Homeworld R3 B2 G3

5) shmil1: Build G1 Shmil1
	mathochist: have fun all!

6) pedrop: Build G1 Pedrop

7) mathochist: Build Y1 Mathochist

8) zoltar: Build G1 Zoltar

9) shmil1: Build G1 Shmil1

10) pedrop: Build G1 Pedrop

11) mathochist: Trade Y3 G3 Mathochist
	pedrop: The same to You!

12) zoltar: Build G2 Zoltar

13) shmil1: Discover G1 Shmil1 R3 Rudy

14) pedrop: Trade G1 Y1 Pedrop

15) mathochist: Build Y1 Mathochist

16) zoltar: Trade G2 Y2 Zoltar
	pedrop: (Czy&#380;by Polak? )
	mathochist: huh?

17) shmil1: Build G1 Rudy

18) pedrop: Discover G1 Pedrop B2 Begining

19) mathochist: Discover Y1 Mathochist G3 Tofu

20) zoltar: Build G2 Zoltar

21) shmil1: Build G2 Shmil1

22) pedrop: Build G2 Pedrop

23) mathochist: Build G2 Mathochist

24) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Zoltar
Build Y2 Zoltar

25) shmil1: Trade G2 Y2 Shmil1

26) pedrop: Sacrifice G3 Pedrop
Build G2 Begining
Build G3 Pedrop
Build Y2 Pedrop

27) mathochist: Sacrifice G3 Mathochist
Build Y3 Tofu
Build Y3 Mathochist
Build Y3 Mathochist

28) zoltar: Sacrifice Y2 Zoltar
Discover Y2 Zoltar B1 Blueberry
Move G2 Zoltar Blueberry

29) shmil1: Move Y2 Shmil1 Rudy

30) pedrop: Move Y2 Pedrop Begining

31) mathochist: Sacrifice Y1 Mathochist
Discover G2 Mathochist G3 Donut

32) zoltar: Pass

33) shmil1: Trade G1 R1 Shmil1

34) pedrop: Trade G1 B1 Begining

35) mathochist: Trade Y3 R3 Mathochist

36) zoltar: Build G1 Blueberry

37) shmil1: Move G1 Rudy Begining

38) pedrop: Trade G2 R2 Begining

39) mathochist: Build R1 Mathochist

40) zoltar: Trade G2 R2 Blueberry

41) shmil1: Sacrifice Y2 Rudy
Move G1 Rudy Begining
Move G1 Begining Pedrop

42) pedrop: Trade G2 R2 Pedrop

43) mathochist: B Y1 Mathochist

44) zoltar: Build Y2 Blueberry

45) shmil1: Build G1 Pedrop
	mathochist: Sorry! I actually fell asleep on this last night. :( still trying to get causght all the way up.

46) pedrop: Discover G3 Pedrop R2 Dont

47) mathochist: S Y3 Tofu
M R3 Mathochist Tofu
M R3 Tofu Dont
M R3 Dont Pedrop

48) zoltar: Discover Y2 Blueberry B3 Bluemoon

49) shmil1: Trade G1 R1 Pedrop

50) pedrop: Sacrifice G3 Dont
Build Y2 Begining
Build Y3 Pedrop
Build R1 Pedrop
Catastrophe Pedrop Red

51) mathochist: B Y3 Tofu

52) zoltar: Build Y3 Blueberry

53) shmil1: Build G1 Begining

54) pedrop: Trade Y1 R1 Pedrop

55) mathochist: Trade Y1 B1 Mathochist
	mathochist:  Pedrop? You there?
	pedrop: Sorry... been too busy lately:/ And this game requires much thinking... ;) I'm making my move now.

56) zoltar: Build G2 Blueberry

57) shmil1: Trade G1 Y1 Begining

58) pedrop: Trade Y2 G2 Begining

59) mathochist: Move B1 Mathochist Tofu

60) zoltar: Discover G2 Blueberry Y3 Goldmine

61) shmil1: Move Y1 Begining Pedrop

62) pedrop: Trade Y3 G3 Pedrop

63) mathochist: Build B1 Tofu

64) zoltar: Sacrifice G3 Zoltar
Build G1 Blueberry
Build G2 Goldmine
Build G3 Zoltar

65) shmil1: Build Y1 Pedrop

66) pedrop: Sacrifice R2 Begining
Attack Y1N Pedrop
Attack Y1N Pedrop

67) mathochist: Sacrifice Y3 Tofu
Move Y1 Tofu Begining
Move Y1 Begining Pedrop
Move B1 Tofu Begining
Catastrophe Pedrop Y

68) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Bluemoon
Build Y1 Bluemoon

69) shmil1: Build R1 Shmil1

70) pedrop: T B1 R1 Begining

71) mathochist: Build Y1 Mathochist

72) zoltar: Sacrifice Y2 Blueberry
Move Y1 Bluemoon Mathochist
Move Y1 Bluemoon Mathochist
Catastrophe Mathochist Y

73) shmil1: Sacrifice R1 Shmil1
Attack R1E Pedrop

74) pedrop: A B1S Begining

75) mathochist: Trade B1 Y1 Tofu

76) zoltar: Sacrifice Y2 Bluemoon
Move G1 Blueberry Pedrop
Move G1 Blueberry Pedrop
Catastrophe Pedrop G

77) shmil1: Trade R1 G1 Pedrop

78) mathochist: Build R1 Mathochist

79) zoltar: Move R2 Blueberry Begining
	mathochist: Dayamn!

80) shmil1: Build G1 Pedrop
	zoltar: Yeah, I decided to go wild and blow lots of stuff up.

81) mathochist: Trade R1 G1 Mathochist

82) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar

83) shmil1: Trade G1 Y1 Pedrop

84) mathochist: Build R1 Mathochist

85) zoltar: Attack Y2E Begining

86) shmil1: Build G1 Begining

87) mathochist: Build Y1 Tofu

88) zoltar: Sacrifice Y1 Zoltar
Move G3 Zoltar Blueberry

89) shmil1: Trade G1 Y1 Begining

90) mathochist: Move Y1 Tofu Mathochist

91) zoltar: Attack G1N Begining

92) shmil1: Discover Y1 Begining G1 Malazelena

93) mathochist: B Y2 Mathochist

94) zoltar: Discover G1 Begining Y3 Hummus

95) shmil1: Build Y2 Malazelena

96) mathochist: Discover G1 Mathochist Y3 Curry

97) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Blueberry
Build Y3 Begining

98) shmil1: Build R1 Shmil1

99) mathochist: Trade R1 B1 Mathochist

100) zoltar: Move Y2 Begining Curry

101) shmil1: Move R1 Shmil1 Pedrop

102) mathochist: B R1 Mathochist

103) zoltar: Sacrifice G1 Hummus
Build Y3 Zoltar

104) shmil1: Sacrifice Y2 Malazelena
Move G1 Pedrop Mathochist
Move Y1 Pedrop Mathochist

105) mathochist: Attack Y1N Mathochist

106) zoltar: Sacrifice Y2 Blueberry
Move G2 Goldmine Mathochist
Move Y2 Curry Mathochist
Catastrophe Mathochist Y

107) shmil1: Build G1 Mathochist
Catastrophe Mathochist Green

108) mathochist: Move G1 Curry Mathochist

109) zoltar: Attack R1E Begining

110) shmil1: Build Y1 Malazelena

111) mathochist: Build Y1 Tofu

112) zoltar: Move Y2 Zoltar Mathochist

113) shmil1: Move Y1 Malazelena Pedrop

114) zoltar: Attack G2E Begining
	mathochist: Ouch!  Ganging up on me, no fair :P

115) shmil1: Build Y2 Malazelena

116) zoltar: Build Y2 Blueberry

117) shmil1: Move R1 Pedrop Malazelena

118) zoltar: Move R2 Begining Donut

119) shmil1: Sacrifice Y2 Malazelena
Move R1 Malazelena Zoltar
Move Y1 Malazelena Zoltar

120) zoltar: Sacrifice G1 Zoltar
Build R2 Donut

121) shmil1: Sacrifice G3 Shmil1
Build R2 Zoltar
Build R2 Zoltar
Build Y2 Zoltar
Catastrophe Zoltar Red

122) zoltar: Sacrifice Y2 Blueberry
Move Y3 Zoltar Pedrop
Move Y3 Pedrop Shmil1

123) shmil1: Trade Y2 G2 Zoltar

124) zoltar: Sacrifice R2 Donut
Attack G2N Zoltar
Attack R1N Shmil1



15619)
Started: 2010.2.24, Ended: 2010.5.2
Participants: mathochist (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) mathochist: Homeworld B1 G3 B3 *
	ts52: Lets try this again. :)

3) ts52: Build G1 Ts52

4) mathochist: Build B1 Mathochist

5) ts52: T G3 B3 Ts52

6) mathochist: Trade B3 Y3 Mathochist

7) ts52: Build B2 Ts52

8) mathochist: Build B2 Mathochist

9) ts52: Trade B3 G3 Ts52

10) mathochist: D B1 Mathochist G2 Frito

11) ts52: Discover B2 Ts52 G3 Kermit

12) mathochist: Build Y1 Mathochist

13) ts52: Trade G1 Y1 Ts52

14) mathochist: Move Y1 Mathochist Frito

15) ts52: Move Y1 Ts52 Kermit

16) mathochist: T B2 R2 Mathochist

17) ts52: Build G1 Ts52

18) mathochist: Build B2 Frito

19) ts52: T G1 R1 Ts52

20) mathochist: Trade B1 R1 Frito

21) ts52: Build G1 Ts52

22) mathochist: D Y1 Frito B3 Dorito

23) ts52: Discover G1 Ts52 Y3 Bigbird

24) mathochist: B B1 Frito

25) ts52: Build G1 Ts52

26) mathochist: Trade B1 Y1 Frito

27) ts52: Build Y2 Kermit

28) mathochist: Build Y2 Frito

29) ts52: Discover Y2 Kermit G2 Robin

30) mathochist: B Y3 Mathochist

31) ts52: Sacrifice G1 Bigbird
Build Y3 Kermit

32) mathochist: M Y3 Mathochist Robin

33) ts52: Move Y2 Robin Dorito

34) mathochist: Move Y3 Robin Kermit

35) ts52: Move Y3 Kermit Frito

36) mathochist: M R1 Frito Kermit

37) ts52: Trade Y2 R2 Dorito

38) mathochist: T Y2 R2 Frito

39) ts52: Sacrifice R1 Ts52
Attack R2 Frito

40) mathochist: Sacrifice R1 Kermit
Attack R2 Frito

41) ts52: Attack Y1 Dorito

42) mathochist: M B2 Frito Kermit

43) ts52: Sacrifice R2 Dorito
Attack R2 Frito
Attack B2 Kermit

44) mathochist: B R1 Mathochist

45) ts52: Build R1 Frito

46) mathochist: Build Y2 Mathochist

47) ts52: Move G1 Ts52 Dorito

48) mathochist: Sacrifice R2 Mathochist
Attack B2 Kermit
Attack B2 Kermit

49) ts52: Build Y2 Kermit

50) mathochist: Build B1 Kermit

51) ts52: S R2 Frito
A B2 Kermit
A B2 Kermit

52) mathochist: Build B2 Kermit
Catastrophe Kermit Blue

53) ts52: Attack Y1 Frito

54) mathochist: Move Y2 Mathochist Frito

55) ts52: Attack Y2 Frito

56) mathochist: Move Y3 Kermit Frito
Catastrophe Frito Yellow

57) ts52: Build G1 Dorito

58) mathochist: B Y1 Mathochist

59) ts52: Move Y1 Kermit Frito

60) mathochist: Discover Y1 Mathochist G2 Waldo

61) ts52: Build G1 Ts52

62) mathochist: Build Y2 Mathochist

63) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build Y3 Dorito
Build Y3 Kermit

64) mathochist: Trade Y3 G3 Mathochist

65) ts52: B Y3 Frito

66) mathochist: B R1 Mathochist

67) ts52: Move Y3 Kermit Ts52

68) mathochist: D G3 Mathochist R2 Cheeto

69) ts52: Move Y3 Frito Mathochist

70) mathochist: M Y2 Mathochist Cheeto

71) ts52: S R1 Frito
A R1 Mathochist

72) mathochist: Attack R1 Mathochist

73) ts52: Trade Y3 R3 Mathochist
	mathochist: Ulp!

74) mathochist: M Y1 Waldo Mathochist

75) ts52: B Y3 Frito

76) mathochist: Build R1 Mathochist
Catastrophe Mathochist R

77) ts52: S Y2 Kermit
M Y1 Frito Mathochist
M Y3 Frito Mathochist

78) mathochist: Move G3 Cheeto Mathochist

79) ts52: Trade Y3 R3 Mathochist

	mathochist: Gleep!  I could delay another turn or two, but it's pointless.  Thanks for the game!

	ts52: Thanks for the game. 


15615)
Variants: "Hard time"
Started: 2010.2.27, Ended: 2010.4.12
Participants: dlwillson (S), ZackStack (N)
Winner: dlwillson

1) ZackStack: Homeworld B1 R2 G3

2) dlwillson: Homeworld Y1 B3 G3
	ZackStack: Hey DL!  Have a good game.

3) ZackStack: Build G1 Zackstack

4) dlwillson: Build G1 Dlwillson
	ZackStack: I noticed you've only played a couple of games here on SDG.  Have you played much on the tabletop?
	dlwillson: Half a dozen or so, I think.  I love Homeworlds, but it's hard to find players...
	dlwillson: How 'bout you?
	ZackStack: Pretty much just the games here on SDG.  I taught the game to a couple guys from my game group but they aren't interested to get good enough to be challenging :-(
	dlwillson: Where are you, geographically speaking?  I'm in CO.

5) ZackStack: Trade G1 Y1 Zackstack
	ZackStack: Minnesota.  Perhaps we could meet halfway sometime :-)

6) dlwillson: Trade G1 Y1 Dlwillson
	dlwillson: Sure.  But we'll have to play several games to make the trip worth it!  :-)

7) ZackStack: Build G1 Zackstack

8) dlwillson: Build Y2 Dlwillson

9) ZackStack: Build Y2 Zackstack
	dlwillson: You seem to have the lead...  :-)  You're good.
	ZackStack: Buttering me up so I make a mistake I see :-p

10) dlwillson: Discover Y2 Dlwillson G2 Spot

11) ZackStack: Discover Y2 Zackstack G3 Blob

12) dlwillson: Trade Y1 R1 Dlwillson

13) ZackStack: Discover G1 Zackstack B3 Blub

14) dlwillson: Move Y2 Spot Blub

15) ZackStack: Sacrifice G1 Blub
Build G1 Zackstack

16) dlwillson: Build G1 Dlwillson

17) ZackStack: Trade G1 B1 Zackstack

18) dlwillson: Build R1 Dlwillson

19) ZackStack: Move B1 Zackstack Blob

20) dlwillson: Trade Y2 R2 Blub
	dlwillson: Sorry for the delay, Zach.  I've been super-busy day and night, lately.  I'll try to get my turn in over lunch or this evening.
	ZackStack: Take your time.  We're not on hard time so nothing bad can happen if you need to take some time off :-)

21) ZackStack: Build Y1 Blob

22) dlwillson: Sacrifice G3 Dlwillson
Build R1 Blub
Build R2 Blub
Build R3 Dlwillson

23) ZackStack: Sacrifice G3 Zackstack
Build Y2 Zackstack
Build Y2 Blob
Build Y3 Zackstack
	dlwillson: Davey pulled off a blue rush on me the other day, and I about pissed myself.  Do red rushes work, too?  Let's find out...  :-}
	ZackStack: Hmmm... That would be a new one on me.  Good luck!

24) dlwillson: Trade R3 Y3 Dlwillson

25) ZackStack: Trade Y3 G3 Zackstack

26) dlwillson: Sacrifice Y3 Dlwillson
Move R2 Blub Zackstack
Move R1 Blub Zackstack
Discover R1 Dlwillson G2 Kitty

27) ZackStack: Attack R2 Zackstack

28) dlwillson: Build R3 Dlwillson

29) ZackStack: Build Y3 Zackstack
	ZackStack: Here I was hoping locking you out of yellow would benefit me a little longer... :-)

30) dlwillson: Trade R3 G3 Dlwillson

31) ZackStack: Move Y3 Zackstack Blub
	dlwillson: It seems I went after you one turn too early or something.  I can't quite get the earth-shattering kaboom I want.
	ZackStack: Heh.  Its okay.  I forgive you :-)

32) dlwillson: S G3 Dlwillson
B R3 Dlwillson
B R3 Blub
B R3 Zackstack
C Zackstack Red

33) ZackStack: Move Y3 Blub Kitty

34) dlwillson:
T R3 Y3 Blub
	ZackStack: Guess I should have seen that coming... :-)

35) ZackStack: Build Y3 Kitty

36) dlwillson: Trade R3 G3 Dlwillson
	dlwillson: Sorry for my lack of chat, Zack.  My phone can't submit chat messages.  Your yellow battleships in orbit are scaring me...

37) ZackStack: Discover Y2 Blob R2 Crimson
	ZackStack: No prob on the chat.  I'm glad they are scaring you... now to figure out what to do with them :-/

38) dlwillson: B R1 Kitty

39) ZackStack: Move Y2 Crimson Dlwillson

40) dlwillson: A Y2 Dlwillson
	ZackStack: Nice bind you're getting me into with the red supply.  Well done.

41) ZackStack: Sacrifice Y3 Kitty
Move Y3 Kitty Dlwillson
Move Y1 Blob Kitty
Move Y1 Kitty Dlwillson
Catastrophe Dlwillson Yellow

42) dlwillson: Move Y3 Blub Zackstack
	ZackStack: You have the upper hand here... use it well :-)
	dlwillson: Excellent!  I think I've still got you, but I suppose we'll see, eh?

43) ZackStack: Build Y1 Zackstack
Catastrophe Zackstack Yellow
	ZackStack: Probably... but I'm not afraid to try some drastic things here :-)

44) dlwillson: Sacrifice G3 Dlwillson
Build R2 Blub
Build R2 Blub
Build R3 Dlwillson
	dlwillson: Excellent choice. Sorry for the poor move on my part... :-/

45) ZackStack: Build G1 Zackstack
	ZackStack: No troubles... I'm still very much in trouble at the moment :-)

46) dlwillson: Trade R2 Y2 Blub

47) ZackStack: Discover B1 Blob G2 Goob

48) dlwillson: Trade R3 G3 Dlwillson

49) ZackStack: Build B1 Goob

50) dlwillson: S G3 Dlwillson
B R2 Kitty
B R3 Blub
B R3 Dlwillson

51) ZackStack: Trade G3 R3 Zackstack

52) dlwillson: Sacrifice Y2 Blub
Move R2 Blub Goob
Move R2 Kitty Blob

53) ZackStack: Sacrifice Y2 Blob
Discover B1 Goob Y1 Pip
Discover B1 Goob Y1 Speck

54) dlwillson: Trade R3 Y3 Dlwillson

55) ZackStack: Trade R3 Y3 Zackstack
	ZackStack: I'm so screwed... now I'm just waiting to see how you decide to finish me off :-)

56) dlwillson: Sacrifice Y3 Dlwillson
Move R3 Blub Zackstack
Move R1 Kitty Blub
Move R1 Kitty Speck

57) ZackStack: Sacrifice Y3 Zackstack
Move B1 Pip Dlwillson
Move B1 Speck Dlwillson
Pass
	dlwillson: I really wanted to get a red and a blue in, with a g2 sac'able, but I never had time. Way to keep pressure on me, even in a declining game. Great play!
	ZackStack: Thanks!  I didn't feel like I was causing you enough trouble... but I'm glad you appreciated what I could do :-) So close...

58) dlwillson: Attack G1 Zackstack
	dlwillson: Red rush can work! :-) Thanks for the great game, Zack! I'd challenge you to a ladder-match, if I weren't already in one. I have an open challenge, if you are up for a rematch.
	ZackStack: I don't think my ladder match has been accepted yet... I'll know in a day or two if I've been rejected.  If so I'll welcome your challenge :-)  Otherwise, I'll go find your open challenge.  Thanks for the good game!



15613)
Started: 2010.2.27, Ended: 2010.3.7
Participants: TwoShort (S), einhorn303 (N)
Winner: TwoShort

1) einhorn303: Homeworld G2 B3 Y3

2) TwoShort: Homeworld R1 B2 G3

3) einhorn303: Build Y1 Einhorn303 (n)
	einhorn303: Excuse me, this is my first time playing on SuperDuperGames. How do I find out the names of systems?
	TwoShort: When you use the yellow power, SuperDuper distinguishes between "move" to an existing system, or "discover" a new one.  If you discover a system, you give it a name.
 Just out of curiosity, have you played Homeworlds much off-line?

4) TwoShort: Build G1 Twoshort

5) einhorn303: Discover Y1 Einhorn303 B1 Abyss
	einhorn303: I wouldn't say I play it *much*, since I can't always find nearby gamers, but I have been playing it sparsely for about four/five years.

I was curious to know for "# build ship inSystem." I know that moving completely out of your home system is an illegal move, of course (ha).

6) TwoShort: Trade G1 Y1 Twoshort

7) einhorn303: Build Y1 Einhorn303

8) TwoShort: Build Y2 Twoshort

9) einhorn303: Build Y2 Einhorn303

10) TwoShort: Build Y2 Twoshort

11) einhorn303: Move Y2 Einhorn303 Abyss

12) TwoShort: Trade Y2 R2 Twoshort

13) einhorn303: Trade Y1 R1 Abyss

14) TwoShort: Discover Y1 Twoshort G3 Grogar

15) einhorn303: Trade Y1 B1 Einhorn303
	einhorn303: discover Y1 G1 Virga
	einhorn303: discover Y1 einhorn303 G1 Virga

16) TwoShort: Build G1 Twoshort

17) einhorn303: Discover B1 Einhorn303 G1 Virga

18) TwoShort: Build G1 Twoshort

19) einhorn303: Trade Y2 G2 Abyss

20) TwoShort: Discover G1 Twoshort Y3 Yolonda

21) einhorn303: Build Y1 Einhorn303

22) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yolonda
Build G3 Twoshort

23) einhorn303: Build B1 Virga

24) TwoShort: Sacrifice Y1 Grogar
Move G3 Yolonda Abyss

25) einhorn303: Trade Y3 G3 Einhorn303

26) TwoShort: Build Y1 Twoshort

27) einhorn303: Build B2 Virga

28) TwoShort: Sacrifice Y2 Twoshort
Move G3 Abyss Einhorn303
Discover G1 Yolonda Y1 Gotcha

29) einhorn303: Trade G3 R3 Einhorn303

30) TwoShort: Sacrifice R2 Twoshort
Attack R3 Einhorn303
Attack Y1 Einhorn303



15614)
Started: 2010.3.10, Ended: 2010.4.7
Participants: disk (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld B1 R2 G3
	ZackStack: Hey disk!  Thanks for the challenge and have a good game.



15623)
Started: 2010.3.13, Ended: 2010.6.8
Participants: mathochist (S), zoltar (N)
Winner: mathochist

1) zoltar: Homeworld B3 R1 G3

2) mathochist: H R1 B2 G3

3) zoltar: Build G1 Zoltar

4) mathochist: Build G1 Mathochist

5) zoltar: Trade G1 Y1 Zoltar

6) mathochist: T G1 R1 Mathochist

7) zoltar: Build Y1 Zoltar

8) mathochist: B R2 Mathochist

9) zoltar: Build Y1 Zoltar
	mathochist: Neh, I just saw the opportunity and thought I'd see how it worked.  :)

10) mathochist: T R2 Y2 Mathochist

11) zoltar: Discover Y1 Zoltar G2 Greenbelt

12) mathochist: Build Y2 Mathochist

13) zoltar: Build Y2 Zoltar

14) mathochist: Discover Y2 Mathochist R3 Redhat

15) zoltar: Trade Y2 R2 Zoltar

16) mathochist: Build G1 Mathochist

17) zoltar: Discover Y1 Zoltar B2 Bluemoon

18) mathochist: Sacrifice G3 Mathochist
Build Y2 Mathochist
Build Y3 Mathochist
Build Y3 Redhat
	zoltar: You're in trouble in our 4-player Homeworlds game. Shmil1 can sacrifice his Y2 and move his two G1's into your homeworld and destroy your green star and your G3 and G2, leaving you crippled with only two Y1's and one star left.
	zoltar: In the 4-player game, you're probably going to have to sack your G3 for three Yellow ships to avoid such a disaster.
	mathochist: Oh frak...  that won't even protect me.  Getting rid of one green ship would still leave one green ship and one green star, and he can wipe those out.  I'm not sure there's any way out of that.  Ouch!
	zoltar: Well, if you sac your G3 for three yellows, including a Y3 in your homeworld and a Y3 in your outpost, he might not waste his resources to blow up a star and a G2, figuring that he weakens himself as well this early; but if you leave your G3 there, it's too much of a target to resist. Btw, this is why I start with red and blue stars and never green ones.

19) zoltar: Build Y3 Greenbelt
	mathochist: true.  and I usually don't start with green stars either, but I'm pretty new to the game and still experimenting (like with grabbing the reds early in this game so I could get to the medium pieces quickly.  I'm not sure it really put me ahead of where I would have been anyway, by a couple turns later, y'know?)

20) mathochist: Discover Y2 Mathochist G3 Greensun

21) zoltar: Move R2 Zoltar Greenbelt

22) mathochist: Move Y2 Redhat Bluemoon
	mathochist: well, at least I wound up with 3 large yellows (in the 4 player game).  if he destroys my star, I still have several large pieces and am not *too* badly off, considering.  but I can still hope he doesn't.

23) zoltar: Build R2 Greenbelt
	zoltar: I don't think he well, as you could sack one of your Y3's to move your two Y2's into his homeworld and blow up his star, so he probably doesn't want to weaken both of you by attacking so early. If he doesn't attack, you're in the best position by far.

24) mathochist: Trade Y2 R2 Bluemoon

25) zoltar: Sacrifice Y1 Bluemoon
Discover R2 Greenbelt G3 Greendale
	zoltar: Wow, I'm pretty much doomed in this game!

26) mathochist: Move R1 Mathochist Greensun

27) zoltar: Build R3 Greendale

28) mathochist: B R3 Greensun

29) zoltar: Build G1 Zoltar

30) mathochist: B G1 Mathochist

31) zoltar: Trade G1 B1 Zoltar

32) mathochist: Trade Y2 B2 Mathochist

33) zoltar: Move B1 Zoltar Greenbelt
	mathochist: You don't look doomed.  Did I make a mistake?  :)

34) mathochist: Move G1 Mathochist Redhat
	zoltar: No, I'm still holding my own, and my position looks better to me now, but I don't think you made any mistake.

35) zoltar: Discover Y1 Greenbelt G1 Greentree

36) mathochist: M R1 Greensun Bluemoon

37) zoltar: Build G2 Zoltar

38) mathochist: B G2 Redhat

39) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar
Build Y2 Greentree

40) mathochist: Move R3 Greensun Greentree

41) zoltar: Sacrifice Y1 Greentree
Move Y2 Greentree Greendale

42) mathochist: Move G1 Redhat Bluemoon

43) zoltar: Discover G2 Zoltar Y2 Yellojello

44) mathochist: B Y1 Greensun

45) zoltar: Build B1 Greenbelt

46) mathochist: Move Y3 Redhat Bluemoon

47) zoltar: Move B1 Greenbelt Greendale

48) mathochist: Move B2 Mathochist Greensun

49) zoltar: Move Y3 Greenbelt Redhat

50) mathochist: S G2 Redhat
B G2 Bluemoon
B B1 Greensun


51) zoltar: Build B3 Greenbelt

52) mathochist: Build B3 Greensun

53) zoltar: Sacrifice Y1 Zoltar
Move B1 Greenbelt Greensun
Catastrophe Greensun B

54) mathochist: B Y1 Bluemoon

55) zoltar: Sacrifice G2 Yellojello
Build Y2 Greendale
Build B1 Greendale

56) mathochist: B G2 Mathochist
	mathochist: Yeah, I half expected that.

57) zoltar: Build B1 Greendale

58) mathochist: S Y3 Bluemoon
M G1 Bluemoon Greendale
M G2 Bluemoon Greendale
M G1 Mathochist Greendale
C Greendale G

59) zoltar: Trade B3 Y3 Greenbelt

60) mathochist: Build Y2 Mathochist

61) zoltar: Build Y2 Zoltar
	zoltar: Ouch! I didn't expect that.
	mathochist: Too many eggs in one basket.  

62) mathochist: Build G1 Mathochist

63) zoltar: Trade Y1 B1 Zoltar

64) mathochist: Trade R2 G2 Bluemoon

65) zoltar: Move Y3 Redhat Bluemoon

66) mathochist: Discover G2 Bluemoon G3 Greenmoon

67) zoltar: Move Y3 Greenbelt Greenmoon

68) mathochist: S G2 Greenmoon
B Y1 Bluemoon
B R2 Greentree



69) zoltar: Discover Y3 Bluemoon B3 Bluedeath

70) mathochist: Trade R1 B1 Bluemoon

71) zoltar: Move B1 Zoltar Greenbelt

72) mathochist: Move Y1 Bluemoon Greentree

73) zoltar: Build B1 Greenbelt

74) mathochist: M R3 Greentree Greenbelt

	zoltar: I looked at the position several times over the weekend and I don't see any way to save my pieces, and sacrificing a Y3 just lets you build it and get an even bigger advantage. Well done, good game.
	mathochist: Thanks!  This was sure an interesting one.  At one point didn't we have all but 1 or 2 of the pieces in play?  Amazing.


15721)
Variants: "Hard time"
Started: 2010.3.13, Ended: 2010.3.21
Participants: zoltar (S), dlwillson (N)
Winner: zoltar

1) dlwillson:
Homeworld B2 R1 G3

2) zoltar: Homeworld R3 B1 G3

3) dlwillson: Build G1 Dlwillson
	dlwillson: Hi Zoltar, thanks for choosing to take a game with me.  Couldn't say Hi before because I was on my phone...
	dlwillson: and the phone's browser won't post chat messages, for some reason...

4) zoltar: Build G1 Zoltar
	zoltar: Hi!

5) dlwillson: Trade G1 Y1 Dlwillson

6) zoltar: Trade G1 Y1 Zoltar

7) dlwillson: Build G1 Dlwillson

8) zoltar: Build G1 Zoltar

9) dlwillson: Trade G1 R1 Dlwillson

10) zoltar: Trade G1 B1 Zoltar

11) dlwillson: Build G1 Dlwillson

12) zoltar: Build B1 Zoltar

13) dlwillson: Discover R1 Dlwillson G3 Blueberry

14) zoltar: Discover B1 Zoltar G2 Greenbelt

15) dlwillson: Discover G1 Dlwillson B3 Luniversal

16) zoltar: Build B2 Greenbelt

17) dlwillson: Build G1 Dlwillson

18) zoltar: Build B2 Zoltar

19) dlwillson: Trade G3 B3 Dlwillson

20) zoltar: Trade B2 Y2 Greenbelt

21) dlwillson: Discover B3 Dlwillson Y3 Jumper

22) zoltar: Trade B2 R2 Zoltar

23) dlwillson: Build R1 Blueberry

24) zoltar: Build B2 Greenbelt

25) dlwillson: Build G1 Dlwillson

26) zoltar: Move B2 Greenbelt Blueberry

27) dlwillson: Discover G1 Dlwillson B3 Ring

28) zoltar: Build G2 Zoltar

29) dlwillson:
Build R2 Blueberry

30) zoltar: Sacrifice Y1 Zoltar
Move B2 Blueberry Dlwillson

	dlwillson: Good game.  Any advice for me?
	zoltar: Yeah: never, ever move your only large ship out of your homeworld. If you hadn't done that, it would still be a close game!


15643)
Variants: "Hard time"
Started: 2010.3.13, Ended: 2010.4.12
Participants: zoltar (S), Jesse (N)
Winner: zoltar

1) Jesse: Homeworld Y1 B2 G3
	Jesse: Greetings, Zoltar.

2) zoltar: Homeworld B3 R1 G3

3) Jesse: Build G1 Jesse
	zoltar: Greetings, Human!

4) zoltar: Build G1 Zoltar

5) Jesse: Trade G1 Y1 Jesse

6) zoltar: Trade G1 Y1 Zoltar

7) Jesse: Build Y2 Jesse

8) zoltar: Build Y2 Zoltar

9) Jesse: Trade Y1 R1 Jesse

10) zoltar: Trade Y1 R1 Zoltar

11) Jesse: Build R2 Jesse

12) zoltar: Build R2 Zoltar

13) Jesse: Discover R1 Jesse G3 Cabbage

14) zoltar: Trade R1 B1 Zoltar

15) Jesse: Build R1 Jesse

16) zoltar: Discover R2 Zoltar G2 Greenbelt

17) Jesse: Trade R1 B1 Jesse

18) zoltar: Move B1 Zoltar Greenbelt

19) Jesse: Move B1 Jesse Cabbage

20) zoltar: Build Y1 Zoltar

21) Jesse: Move Y2 Jesse Cabbage

22) zoltar: Move Y1 Zoltar Greenbelt

23) Jesse: Build R1 Jesse

24) zoltar: Build G1 Zoltar

25) Jesse: Build G1 Jesse

26) zoltar: Build Y1 Zoltar

27) Jesse: Build Y2 Cabbage

28) zoltar: Discover Y2 Zoltar B2 Bluecheese

29) Jesse: Discover Y2 Cabbage G2 Zucchini

30) zoltar: Sacrifice G3 Zoltar
Build Y3 Bluecheese
Build Y3 Greenbelt
Build Y3 Zoltar

	Jesse: Oops.  Sorry about that.  Oh well, I was probably going down anyway.  Well played.
	zoltar: Thanks -- it was close up until that last move -- having all three Y3's is a huge advantage, as I just need to get a couple more blues and then move my pieces into position for the Doomsday Machine.
	Jesse: Yeah, I don't know why I missed that.  I'd been looking at it earlier, but for some reason just at that moment I only saw yellows on two systems.  :/


31951)
Variants: "Unrated"
Started: 2017.4.23, Ended: 2017.5.9
Participants: wil (S), Personman (N)
Winner: wil

1) Personman: Homeworld B3 Y1 G3

2) wil: H B1 R2 G3

3) Personman: Build G1 Personman

4) wil: B G1 Wil

5) Personman: Trade G1 Y1 Personman

6) wil: T G1 Y1 Wil

7) Personman: Build Y2 Personman

8) wil: Build Y2 Wil

9) Personman: Discover Y2 Personman B2 B2

10) wil: T Y1 B1 Wil

11) Personman: Build G1 Personman

12) wil: B B1 Wil

13) Personman: Move G1 Personman B2

14) wil: D B1 Wil Y3 Y3

15) Personman: Build Y1 B2

16) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

17) Personman: Build Y2 Personman

18) wil: Discover Y2 Wil G3 G3

19) Personman: Trade Y1 R1 Personman

20) wil: T B3 G3 Wil

21) Personman: Move Y2 B2 Y3

22) wil: T B1 R1 Wil

23) Personman: Sacrifice R1 Personman
Attack B2 Y3

24) wil: T B2 R2 Y3

25) Personman: Sacrifice Y2 Y3
Discover Y2 Personman G2 G2
Move B2 Y3 G2

26) wil: Move R2 Y3 G2

27) Personman: Trade Y1 R1 B2

28) wil: A Y2 G2
	wil: I knew I should a went after the little ones

	Personman: i keep not making a move here because everything seems terrible, so I think I'll concede and start another one soon. Sorry for the wait!


15656)
Started: 2010.3.16, Ended: 2010.5.9
Participants: mathochist (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) mathochist: H R1 B2 G3

3) TwoShort: Build G1 Twoshort

4) mathochist: B G1 Mathochist

5) TwoShort: Trade G1 Y1 Twoshort

6) mathochist: T G1 R1 Mathochist

7) TwoShort: Build Y1 Twoshort

8) mathochist: B R2 Mathochist

9) TwoShort: Build Y1 Twoshort

10) mathochist: Trade R2 Y2 Mathochist

11) TwoShort: Discover Y1 Twoshort B2 Bluonia

12) mathochist: Build Y2 Mathochist

13) TwoShort: Build Y2 Twoshort

14) mathochist: Discover Y2 Mathochist G3 Greonia

15) TwoShort: Sacrifice Y1 Twoshort
Discover Y1 Twoshort B2 Bluestar

16) mathochist: Build G1 Mathochist

17) TwoShort: Build G1 Twoshort

18) mathochist: Sacrifice G3 Mathochist
Build Y1 Greonia
Build Y3 Mathochist
Build R2 Mathochist

19) TwoShort: Build Y3 Twoshort

20) mathochist: D G1 Mathochist Y3 Yellowstar

21) TwoShort: Move Y1 Bluonia Greonia

22) mathochist: Move Y1 Greonia Bluestar

23) TwoShort: Sacrifice Y3 Twoshort
Move Y1 Bluestar Greonia
Move Y1 Greonia Mathochist
Move Y1 Greonia Mathochist
Catastrophe Mathochist Yellow

24) mathochist: B G1 Yellowstar

25) TwoShort: Discover G3 Twoshort B2 Blitz

26) mathochist: Move G1 Yellowstar Mathochist
	mathochist: Damn, I need a large ship.  I think I'm done for.

27) TwoShort: Build G2 Twoshort

28) mathochist: B G2 Mathochist

29) TwoShort: Sacrifice G2 Twoshort
Build G2 Blitz
Build Y1 Twoshort

30) mathochist: Sacrifice Y2 Greonia
Discover G2 Mathochist G3 Fritz
Discover R1 Mathochist G3 Glitz
	TwoShort: You need a large, and I can prevent your getting one if I don't blow it, so I also think you're done for.  But it sure looks like you can stave it off for a long time.

31) TwoShort: Trade G2 R2 Blitz
	mathochist: Well, I can hold on to a couple larges, for now, even if I can't exactly put them to use.

32) mathochist: Build G2 Mathochist

33) TwoShort: Sacrifice Y1 Twoshort
Move R2 Blitz Yellowstar

34) mathochist: Move G1 Yellowstar Bluestar

35) TwoShort: Build Y1 Twoshort

36) mathochist: Build G2 Mathochist

37) TwoShort: Sacrifice G3 Blitz
Build G3 Twoshort
Build R2 Yellowstar
Build Y1 Twoshort

38) mathochist: Move Y1 Bluestar Twoshort
Catastrophe Twoshort Yellow

39) TwoShort: Move R2 Yellowstar Bluestar

40) mathochist: S G1 Bluestar
B R3 Glitz
	mathochist: Well, I still need a large, but I feel a little safer for the moment now.
	TwoShort: Yeah, I definitely jumped too fast in my haste to finish you.

41) TwoShort: Sacrifice G3 Twoshort
Build G1 Twoshort
Build G3 Twoshort
Build R3 Yellowstar

42) mathochist: Trade G2 Y2 Mathochist

43) TwoShort: Sacrifice G1 Twoshort
Build R3 Bluestar

44) mathochist: Sacrifice Y2 Mathochist
Move R3 Glitz Mathochist
Discover R2 Mathochist Y3 Zit

45) TwoShort: Move R3 Yellowstar Mathochist

46) mathochist: A R3 Mathochist
	mathochist: Well, I finally have a large piece at my homeworld. Whew!
	TwoShort: Unfortunately, it's only visiting briefly :)

47) TwoShort: Move R2 Yellowstar Mathochist
Catastrophe Mathochist Red

48) mathochist: T G2 Y2 Mathochist
	mathochist: Dammit.  This time I was in too much of a hurry.

49) TwoShort: Trade R2 Y2 Bluestar

50) mathochist: M R2 Zit Mathochist

51) TwoShort: Sacrifice Y2 Bluestar
Move G3 Twoshort Mathochist
Discover R3 Bluestar Y1 Yonder

52) mathochist: Sacrifice G2 Fritz
Build G1 Mathochist
Build G2 Mathochist
Catastrophe Mathochist Green

53) TwoShort: Move R3 Yonder Mathochist

54) mathochist: Move R2 Mathochist Twoshort

55) TwoShort: Attack Y2 Mathochist

	mathochist: I just need one more move, or one more piece!
	TwoShort: :) thanks for the game.
	mathochist: I actually didn't understand why you didn't move a large piece to my home system much earlier in the game.  I didn't think I'd be able to stop you from winning in a few turns, at the time.


15820)
Variants: "Hard time"
Started: 2010.3.16, Ended: 2010.4.2
Participants: SilentTitan (S), dlwillson (N)
Winner: SilentTitan

1) dlwillson: Homeworld R1 B3 G3

2) SilentTitan: Homeworld Y1 B2 G3

3) dlwillson: Build G1 Dlwillson

4) SilentTitan: Build G1 Silenttitan

5) dlwillson: Trade G1 Y1 Dlwillson

6) SilentTitan: Discover G1 Silenttitan Y3 Ook

7) dlwillson: Build G1 Dlwillson

8) SilentTitan: Build G1 Silenttitan

9) dlwillson: Discover G1 Dlwillson B2 Stuph

10) SilentTitan: Trade G1 R1 Silenttitan

11) dlwillson: Build Y1 Dlwillson

12) SilentTitan: Build G1 Ook

13) dlwillson: Build G2 Dlwillson

14) SilentTitan: Move G1 Ook Stuph
	dlwillson: Can you take back your last move?  You might want to build that g1 at your homeworld, or add a red so you can split them up.  If you build a g1 in ook, you won't be able to multi-build, even if I short the greens.
	dlwillson: And do you want me to make suggestions, or just shut up and play?  I can do either...
	SilentTitan: ok.. .thanks for the help.  I'll go ahead and do it my way this time.   Take your turn.

15) dlwillson: Build G2 Stuph

16) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Stuph
Build G3 Ook
Build G3 Ook
Catastrophe Stuph G

17) dlwillson: Build Y2 Dlwillson

18) SilentTitan: Move G3 Ook Silenttitan
	SilentTitan: Well I think you got me ..... but that was still fun :)
	dlwillson: Great Scott!  I actually didn't see that one coming!

19) dlwillson: Discover Y1 Dlwillson G2 Boogie

20) SilentTitan: Sacrifice G3 Ook
Build R1 Silenttitan
Build R2 Silenttitan
Build G1 Ook

21) dlwillson: Discover Y2 Dlwillson B2 Twist

22) SilentTitan: Discover G1 Ook B2 Eek

23) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Twist
Build Y2 Twist
Build Y3 Dlwillson

24) SilentTitan: Trade R2 G2 Silenttitan

25) dlwillson: Trade Y3 G3 Dlwillson

26) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Ook
Build G3 Silenttitan
Build G3 Eek

27) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B Y3 Dlwillson
B Y3 Boogie

28) SilentTitan: Move R1 Silenttitan Ook

29) dlwillson: Sacrifice Y3 Dlwillson
Discover Y3 Boogie R3 Samba
Discover Y2 Twist R3 Tango
Move Y1 Boogie Tango

30) SilentTitan: Trade G3 Y3 Eek

31) dlwillson: Trade G2 R2 Dlwillson

32) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Eek
Build G2 Eek
Build G3 Silenttitan

33) dlwillson: Sacrifice Y2 Twist
Move Y2 Twist Ook
Move Y1 Tango Silenttitan

34) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Silenttitan
Build R2 Silenttitan
Build R3 Ook

35) dlwillson: S Y2 Tango
M Y1 Silenttitan Ook
M Y3 Samba Silenttitan

36) SilentTitan: Sacrifice Y3 Eek
Move G2 Eek Dlwillson
Move G2 Eek Dlwillson
Move G1 Eek Dlwillson
Catastrophe Dlwillson G

37) dlwillson: S R2 Dlwillson

A G2 Silenttitan

A R2 Silenttitan

38) SilentTitan: Sacrifice R3 Ook
Attack R2 Silenttitan
Attack G2 Silenttitan
Attack Y1 Ook

39) dlwillson: T Y3 G3 Silenttitan

40) SilentTitan: Build Y2 Ook
Catastrophe Ook Y

41) dlwillson: T Y1 G1 Dlwillson

42) SilentTitan: Trade R2 Y2 Silenttitan

43) dlwillson: B G1 Dlwillson
	SilentTitan: SOoooooooo Let's go back to the Beginning?  eh?  only I'll start with a 2pip Green?  Maybe?

44) SilentTitan: Build G1 Silenttitan

45) dlwillson: B G2 Dlwillson

46) SilentTitan: Build G2 Silenttitan
Catastrophe Silenttitan G

47) dlwillson: T G1 Y1 Dlwillson

48) SilentTitan: Trade R2 G2 Silenttitan

49) dlwillson: Discover G1 Dlwillson B2 Mook

50) SilentTitan: Build R1 Silenttitan

51) dlwillson: Build G1 Dlwillson

52) SilentTitan: Build G1 Silenttitan

53) dlwillson: S G2 Dlwillson
B Y1 Dlwillson
B G2 Mook

54) SilentTitan: Discover R1 Silenttitan G3 Thunder

55) dlwillson: Move Y1 Dlwillson Mook

56) SilentTitan: Build R2 Thunder

57) dlwillson: Trade G2 R2 Mook

58) SilentTitan: Sacrifice Y2 Silenttitan
Move R2 Thunder Mook
Move R2 Mook Dlwillson

59) dlwillson: Move R2 Mook Dlwillson

60) SilentTitan: Attack R2 Dlwillson

	SilentTitan: I maybe be???? wow.. what I'm missing is any sort of gramatical ability. 
	dlwillson: Yep. You got me. Good play.


15778)
Started: 2010.3.18, Ended: 2010.10.17
Participants: mathochist (S), zoltar (W), agentofchaos (N), xoet (E)
Winner: zoltar

1) agentofchaos: Homeworld B1 R2 G3

2) xoet: Homeworld B3 G2 Y2 *

3) mathochist: Homeworld Y1 B2 G3

4) zoltar: Homeworld R3 B1 G3

5) agentofchaos: Build G1 Agentofchaos
	agentofchaos: Hi everybody!

6) xoet: Build Y1 Xoet
	mathochist: have fun!

7) mathochist: Build G1 Mathochist

8) zoltar: Build G1 Zoltar

9) agentofchaos: Trade G1 Y1 Agentofchaos

10) xoet: Trade Y1 G1 Xoet

11) mathochist: B G1 Mathochist

12) zoltar: Trade G1 Y1 Zoltar

13) agentofchaos: Build Y1 Agentofchaos

14) xoet: Build Y1 Xoet

15) mathochist: Discover G1 Mathochist Y3 Otter

16) zoltar: Build Y2 Zoltar

17) agentofchaos: Build Y2 Agentofchaos

18) xoet: Build Y2 Xoet

19) mathochist: Trade G3 Y3 Mathochist

20) zoltar: Discover Y1 Zoltar G2 Greenland
	mathochist: Wow, yellow is going like hotcakes.  I may have made a mistake not getting some earlier.

21) agentofchaos: Trade Y1 R1 Agentofchaos

22) xoet: Trade Y1 B1 Xoet
	agentofchaos: Get 'em while they're hot!

23) mathochist: Build G1 Mathochist
	zoltar: Well, it's mathochist's turn in no less than 40 games (that must be a record), but I hope he bothers to make a move in the next couple of days!
	mathochist: Sorry I've been slower than usual the past couple weeks.  I have chronic illness and it's been acting up lately, plus I had family here for half a week over Easter, and conventions to attend 2 weekends in a row, and now it's tax time.  I'll be able to really catch up once the taxes are done this week.

24) zoltar: Build Y1 Zoltar
	zoltar: No problem. I just thought you started too many games and had gotten overwhelmed and sick of them or something!

25) agentofchaos: Move R1 Agentofchaos Otter
	mathochist: Nah, no such thing.  :)

26) xoet: Build G1 Xoet

27) mathochist: Discover G1 Otter R1 Bear
	mathochist: Okay, so it's taken me a few more days past tax time...
	mathochist: sorry, guys!

28) zoltar: Build G2 Zoltar

29) agentofchaos: Build G2 Agentofchaos

30) xoet: Discover Y2 Xoet R1 Poet

31) mathochist: T Y3 G3 Mathochist

32) zoltar: Discover G2 Zoltar B2 Bluesky

33) agentofchaos: Move G2 Agentofchaos Otter

34) xoet: Trade G1 Y1 Xoet

35) mathochist: T G1 R1 Mathochist

36) zoltar: Move Y1 Zoltar Bluesky

37) agentofchaos: Build G1 Otter

38) xoet: Move G1 Xoet Poet

39) mathochist: Discover G1 Mathochist Y3 Tree

40) zoltar: Sacrifice G3 Zoltar
Build Y2 Bluesky
Build Y3 Greenland
Build Y3 Zoltar

41) agentofchaos: Trade Y1 B1 Agentofchaos

42) xoet: Build B1 Xoet

43) mathochist: B G1 Mathochist

44) zoltar: Trade Y3 G3 Zoltar

45) agentofchaos: Build B2 Agentofchaos

46) xoet: Move B1 Xoet Poet

47) mathochist: S G3 Mathochist
B G2 Bear
B G3 Tree
B G3 Mathochist

48) zoltar: Build G3 Bluesky

49) agentofchaos: Move B1 Agentofchaos Otter

50) xoet: Trade Y1 R1 Xoet

51) mathochist: Trade G1 Y1 Mathochist

52) zoltar: Trade G2 R2 Bluesky

53) agentofchaos: Build B2 Otter

54) xoet: Build B2 Poet

55) mathochist: Build R2 Mathochist

56) zoltar: Move Y3 Greenland Bear

57) agentofchaos: Trade B1 Y1 Otter

58) xoet: Trade B1 G1 Xoet

59) mathochist: Move G3 Tree Poet

60) zoltar: Sacrifice G3 Bluesky
Build G2 Zoltar
Build Y3 Greenland
Build Y3 Bear

61) agentofchaos: Build G3 Agentofchaos

62) xoet: Build R2 Xoet

63) mathochist: Attack Y2E Poet

64) zoltar: Move R2 Bluesky Tree
	mathochist: Huh.  I'm attempting to attack a ship, and it keeps telling me the ship cannot be found in that system.  I can see the ship, and I can see in the log when it came in, and that it hasn't left.  I've tried attacking every other ship in the system, too, with the same results.  Has anybody had that happen before?
	xoet: you either have no red ship or the size difference is wrong?
	mathochist: Neh.  It's the poet system.  Red star, my ship is large, the others are medium and small.  It should work, no?
	zoltar: You have to include the direction of the ship when you attack in a 4-player game, e.g., "a y2e poet" 
	mathochist: oh!  ok.  I never noticed that fine print under the "recognized commands".  Thanks!

65) agentofchaos: Move G3 Agentofchaos Tree

66) xoet: Move R1 Xoet Poet

67) mathochist: Move Y1 Mathochist Otter

68) zoltar: Sacrifice Y2 Bluesky
Move R2 Tree Poet
Move Y1 Greenland Otter
Catastrophe Otter Y
	xoet: i too am back and did not know how to set that away message thing just did the forum away post.

69) agentofchaos: Trade B2 R2 Agentofchaos

70) xoet: Build Y1 Xoet

71) mathochist: A R2W Poet

72) zoltar: Attack G2S Bear

73) agentofchaos: Move R2 Agentofchaos Tree

74) xoet: Trade B1 Y1 Poet

75) zoltar: Attack G1S Bear

76) agentofchaos: Attack G1S Tree

77) zoltar: Sacrifice G3 Zoltar
Build Y1 Greenland
Build Y2 Bluesky
Build Y3 Zoltar

78) agentofchaos: Move G3 Tree Mathochist

79) zoltar: Sacrifice Y2 Zoltar
Discover Y1 Greenland B3 Iceland
Move G2 Bear Iceland

80) agentofchaos: Build Y2 Agentofchaos

81) zoltar: Sacrifice Y3 Bear
Move G1 Bear Iceland
Move G1 Iceland Mathochist
Move G2 Iceland Mathochist
Catastrophe Mathochist G

82) agentofchaos: Build R1 Tree

83) zoltar: Build Y3 Zoltar

84) agentofchaos: Build R3 Tree

85) zoltar: Sacrifice Y3 Zoltar
Move Y3 Bear Tree
Move Y2 Bluesky Tree
Move Y1 Bluesky Tree
Catastrophe Tree Y

86) agentofchaos: Trade Y2 R2 Agentofchaos

87) zoltar: Build G1 Zoltar

88) agentofchaos: Build R1 Agentofchaos

89) zoltar: Trade Y1 R1 Iceland

90) agentofchaos: Discover R2 Agentofchaos Y3 Dread

91) zoltar: Sacrifice G1 Zoltar
Build R3 Iceland

92) agentofchaos: Trade R1 G1 Agentofchaos

93) zoltar: Trade R3 G3 Iceland

94) agentofchaos: Discover G1 Agentofchaos Y3 Deimos

95) zoltar: Build G1 Iceland

96) agentofchaos: Build G1 Deimos

97) zoltar: Build Y1 Greenland

98) agentofchaos: Build G2 Deimos

99) zoltar: Sacrifice G3 Iceland
Build G2 Zoltar
Build G3 Zoltar
Build G3 Iceland

	Cuc: Is this game being played? When does it end?

	zoltar: It ended in November.


15762)
Started: 2010.3.18, Ended: 2010.5.25
Participants: agentofchaos (S), mathochist (N)
Winner: mathochist

1) mathochist: H R1 B2 G3

2) agentofchaos: Homeworld B3 R2 G3

3) mathochist: Build G1 Mathochist

4) agentofchaos: Build G1 Agentofchaos

5) mathochist: Trade G1 Y1 Mathochist

6) agentofchaos: Build G1 Agentofchaos

7) mathochist: Build Y1 Mathochist

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) mathochist: Trade Y1 R1 Mathochist

10) agentofchaos: Trade G1 R1 Agentofchaos

11) mathochist: B G1 Mathochist

12) agentofchaos: Build G1 Agentofchaos

13) mathochist: Build R2 Mathochist

14) agentofchaos: Build R2 Agentofchaos

15) mathochist: Discover R2 Mathochist G3 Lgs

16) agentofchaos: Discover R2 Agentofchaos G1 Entanglement

17) mathochist: Build R3 Lgs

18) agentofchaos: Build R3 Entanglement

19) mathochist: Build R3 Mathochist

20) agentofchaos: Build G2 Agentofchaos

21) mathochist: Move G1 Mathochist Lgs

22) agentofchaos: Trade G2 Y2 Agentofchaos

23) mathochist: Trade R3 Y3 Mathochist

24) agentofchaos: Move Y1 Agentofchaos Entanglement

25) mathochist: Discover R1 Mathochist Y3 Lys

26) agentofchaos: Trade R1 B1 Agentofchaos

27) mathochist: Build G2 Mathochist

28) agentofchaos: Build B1 Agentofchaos

29) mathochist: Trade G2 B2 Mathochist

30) agentofchaos: Move B1 Agentofchaos Entanglement

31) mathochist: Build G2 Mathochist

32) agentofchaos: Move G1 Agentofchaos Entanglement

33) mathochist: Move G2 Mathochist Lys

34) agentofchaos: Build G2 Agentofchaos

35) mathochist: Build G2 Mathochist

36) agentofchaos: Build Y1 Agentofchaos

37) mathochist: Move Y1 Mathochist Lgs

38) agentofchaos: Build Y2 Entanglement

39) mathochist: S Y3 Mathochist
M G1 Lgs Entanglement
M G2 Lys Entanglement
M G2 Mathochist Lys
C Entanglement G

40) agentofchaos: Build Y1 Agentofchaos

41) mathochist: Build Y2 Lgs

42) agentofchaos: Discover Y1 Agentofchaos G1 Despero

43) mathochist: Move R2 Lgs Despero

44) agentofchaos: Discover Y1 Despero R3 Hades

45) mathochist: Sacrifice Y1 Lgs
Move B2 Mathochist Hades

	agentofchaos: Don't think I can do much here, good game
	mathochist: Thanks for the game!


15821)
Variants: "Hard time"
Started: 2010.3.18, Ended: 2010.4.24
Participants: SilentTitan (S), dethdukk (W), dlwillson (N), johannz (E)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

2) johannz: Homeworld Y2 B1 G3
	dlwillson: Sorry that took so long!  I'm on customer site.
	dlwillson: The rules, to review, are: 2 teams of 2.  Me and Tripp versus Davey and Adam.  The game is over as soon as one player falls.
	dlwillson: Now, hurry up you guys!  :-)

3) SilentTitan: Homeworld Y3 B1 G3
	johannz: Fine. I went. See what you made me do :)

4) dethdukk: Homeworld G3 B2 R3

5) dlwillson: Build G1 Dlwillson

6) johannz: Build G1 Johannz
	dlwillson: Umm...  I thought we were going to choose same size homeworlds for teams?
	dlwillson: Davey...  Weren't we going to have same size homeworlds for teams, so that you are closer to your team-mate, and more easily able to contribute ships and aid?
	dlwillson: Is this thing on?
	johannz: I actually am cool with him taking a different size. This way, you guys have to choose who to go after. You'll leave home to system 2, then you have to either go to a system 3 to attack me, or a system 1 to attack him. Either way, your intentions are clear.
	dlwillson: Hummm...  I'm not sure I'm OK with giving you guys an advantage, either!  But we'll go on with what we have and if Tripp and I lose, I can blame it on this...  :-D

7) SilentTitan: Build G1 Silenttitan

8) dethdukk: Build R1 Dethdukk
	dethdukk: my phone is on more than this thing is dad :P.  Also, having the same size homeworld is both helpful and hurtful.  I just dont like banker :/

9) dlwillson: Discover G1 Dlwillson B2 Zulu

10) johannz: Trade G1 Y1 Johannz

11) SilentTitan: Build G1 Silenttitan

12) dethdukk: Trade R1 Y1 Dethdukk

13) dlwillson: Build G1 Dlwillson

14) johannz: Build Y1 Johannz

15) SilentTitan: Discover G1 Silenttitan Y2 Xyzzy

16) dethdukk: Build Y1 Dethdukk

17) dlwillson: T G1 B1 Dlwillson

18) johannz: Discover Y1 Johannz G3 Jprime

19) SilentTitan: Build G1 Xyzzy

20) dethdukk: Build Y2 Dethdukk

21) dlwillson: Discover B1 Dlwillson G2 Warlord

22) johannz: Build Y2 Jprime

23) SilentTitan: Discover G1 Xyzzy Y3 Bankone

24) dethdukk: Discover Y2 Dethdukk G1 Lastchance

25) dlwillson: Build G2 Dlwillson

26) johannz: Build G2 Johannz

27) SilentTitan: Discover G1 Xyzzy Y3 Banktwo

28) dethdukk: Build R1 Dethdukk

29) dlwillson: Sacrifice G3 Dlwillson
Build G2 Dlwillson
Build G2 Dlwillson
Build G3 Zulu

30) johannz: Sacrifice Y2 Jprime
Move Y1 Jprime Zulu
Move Y1 Zulu Silenttitan
	dlwillson: Wow, Davey!  Like to let the timer run a little close, do we?  Where you been, kiddo?

31) SilentTitan: Build G3 Banktwo

32) dethdukk: Move R3 Dethdukk Lastchance

33) dlwillson: Trade G2 R2 Dlwillson
	dethdukk: yeah, a little close :p  I was busy with school, and I didn't realize my turn had come up so fast.

34) johannz: Sacrifice G3 Johannz
Build Y2 Silenttitan
Build Y2 Silenttitan
Build G2 Johannz
Catastrophe Silenttitan Y
	dlwillson: Like ONE HOUR close!

35) SilentTitan: Trade G3 R3 Silenttitan

36) dethdukk: Build Y1 Lastchance
	johannz: Just call me the Catastrophe King, Baby...
	johannz: When you sacrifice something, does it become available for building immediately? If so, I could do this without losing anything...Let's try it

37) dlwillson: Sacrifice G3 Zulu
Build G3 Zulu
Build G3 Zulu
Build G3 Dlwillson
	johannz: Cool. Same effect on SilentTitan, and all it cost was downgrading a G3 to a G2 ship instead of losing a g3.

38) johannz: Build Y2 Johannz
	dethdukk: probably should have sacced a g2 to cat instead of the g3.  my mistake, I meant to advise you of that earlier.  the way you did it leaves them open to grab all the g3 stuff. simple mistake tho, I have done it a couple times.

39) SilentTitan: Move G3 Banktwo Johannz

40) dethdukk: Build Y2 Dethdukk

41) dlwillson: Sacrifice G3 Dlwillson
Build B1 Warlord
Build B1 Warlord
Build G3 Dlwillson

42) johannz: Trade Y2 R2 Johannz

43) SilentTitan: Sacrifice R3 Silenttitan
Attack R2E Johannz
Attack G2E Johannz
Attack G2E Johannz



15814)
Started: 2010.3.21, Ended: 2010.4.14
Participants: TwoShort (S), Moves (N)
Winner: TwoShort

1) Moves: Homeworld B1 Y2 G3
	Moves: Hello! This is my first game of Homeworlds.

2) TwoShort: Homeworld R1 B3 G3

3) Moves: Build G1 Moves

4) TwoShort: Build G1 Twoshort

5) Moves: Discover G1 Moves G3 Kuat

6) TwoShort: Trade G1 Y1 Twoshort
	Moves: I love how you can name the planets yourself.
	TwoShort: Welcome to SDG.  I generally try to give new players a few pointers, but I'm having a hectic week, so you might not get as many as ususal...  Anyway, the standard early-game advice: the goal early on is generally to out-grow your opponent; particularly, to get more 3 point ships than the other guy.

7) Moves: Build G1 Moves
	Moves: Thanks TwoShort. I have read all the written up material about the tactics of the game I could find. Some by you! I'm actually happy that I go before you, since I have to learn and not just copy your move.

8) TwoShort: Build G1 Twoshort

9) Moves: Build G2 Moves

10) TwoShort: Build G2 Twoshort

11) Moves: Discover G2 Moves B3 Gunray

12) TwoShort: Discover G2 Twoshort B2 Bluonia

13) Moves: Trade G1 Y1 Moves

14) TwoShort: Sacrifice G3 Twoshort
Build G1 Twoshort
Build G2 Bluonia
Build G3 Twoshort

15) Moves: Discover Y1 Moves Y3 Kessel
	Moves: Oh wow! What a move.
	Moves: ah, I also did not know you could split it up into different locations. Nice.

16) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y2 Twoshort
Build G3 Twoshort
	Moves: Ok, now I know how a Green sacrifice works. So, how does a Red sacrifice work?
	TwoShort: So for any sacrifice, the piece you sac goes back in the stash, then you get the chance to perform the action associated with that color as many times as the size of the peice, and you can use those actions with any of your ships.  For a red sacrifice, you would first need a red peice, and you would need a different piece (any color) that was in the same system as one of my pieces.  Red sacrifices are somewhat unusual, except as the final coup de grace.  The threat of a red sac often makes the opponent do something less-than-optimal to block, but by the time they can't prevent it, the game is effectively won.
  The most common sacrifice is the tactic I just employed: sacrificing a g3 for three grows when you are able to use one of them to re-grow the same g3.  We call  this "the factory".  It's definitely a key stratagem since it lets you grow twice as fast as otherwise, and anywhere you have ships.  If your opponent gets a factory going and you don't, you're probably in trouble.
  In your current position, you've got a g3, so you're not entirely locked out, but you don't have the extra green at home to let you regrow there.  You could get either of your smaller greens back home by sacrificing it, and using the action to regrow it at home.  
   Generally, you don't want to move ships out to stars that are the same color; it means you have less options.  Unless you sac something somewhere elsewhere, all you can do at Kessel is leave, and you can't currently do anything at Kuat.  Even if there were greens available, if you grew one there, I could move one of mine in and cause a catastrophe.

17) Moves: Sacrifice G2 Gunray
Build G2 Moves
Build Y2 Kessel
	Moves: Whoah! Crazy!

18) TwoShort: Sacrifice Y2 Twoshort
Discover Y1 Twoshort R2 Temporary
Move Y1 Temporary Kessel
Catastrophe Kessel Yellow
	Moves: If the G sac was the most common, I wish the rules writer would have used that as the example instead of the yellow sac. :)
	TwoShort: Yellow sacs are also very important.  Most attacks will involve moving multiple pieces into an enemy system at once and/or moving one pieice multiple steps.  (An "attack" meaning generically either moving in more pieces than they can take with red while you have a sac-able red elsewhere, or moving in enough pieces to cause a catastrophe.)  So late in the game, Y3s are generally the most valuable pieces; and I'd really like to set up to take them now that they are available.
  But, for the super-topical example, if it were your turn now you could sac your y2 to move either your y1 or your g1 to a 3 star and then to my homeworld, and cause a catastrophe of the relevant color.  I lose more than you in either of those, so instead I'm going to take even losses by sac'ing my own y2....
  


19) Moves: Trade G2 Y2 Moves
	TwoShort: Where I said "3 star", I should have said "2 point star"
	Moves: heh, I forgot the star counted for catastrophe as well...

20) TwoShort: Discover G1 Twoshort G2 Grendel
	TwoShort: So I mentioned before that you generally don't want move ships to stars of the same color.  The reason you would want to do it sometimes is if your whole purpose is to pull the star piece out of the stash.

21) Moves: Build Y1 Moves

22) TwoShort: Trade G2 Y2 Bluonia

23) Moves: Build G2 Moves

24) TwoShort: Sacrifice G3 Twoshort
Build Y1 Bluonia
Build Y3 Twoshort
Build G3 Twoshort

25) Moves: Discover Y1 Moves Y3 Aimless

26) TwoShort: Sacrifice Y1 Twoshort
Discover G1 Grendel Y3 Yolonda

27) Moves: Trade G2 R2 Moves

28) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G2 Bluonia
Build G3 Twoshort

29) Moves: Move Y2 Moves Kuat

30) TwoShort: Trade G2 R2 Bluonia

31) Moves: Move G1 Kuat Moves

32) TwoShort: Sacrifice Y2 Bluonia
Move G2 Yolonda Moves
Move G1 Yolonda Moves
Catastrophe Moves Green

33) Moves: Trade R2 G2 Moves

34) TwoShort: Sacrifice Y3 Twoshort
Discover G3 Twoshort B2 Goodgame
Discover G3 Goodgame B3 Thanks
Move G3 Thanks Moves
	Moves: uhhgg...



15885)
Variants: "Hard time"
Started: 2010.3.21, Ended: 2010.3.24
Participants: shmil1 (S), dlwillson (N)
Winner: shmil1

1) dlwillson: Homeworld B3 R1 G3

2) shmil1: Homeworld B1 R2 G3
	dlwillson: Thanks for playing with me again, Shmil1.  :-)

3) dlwillson: Build G1 Dlwillson

4) shmil1: Build G1 Shmil1

5) dlwillson: Trade G1 Y1 Dlwillson

6) shmil1: Build G1 Shmil1

7) dlwillson: B Y1 Dlwillson

8) shmil1: Trade G1 B1 Shmil1

9) dlwillson: D Y1 Dlwillson B2 Potato

10) shmil1: Build G1 Shmil1

11) dlwillson: Build Y1 Dlwillson

12) shmil1: Build B1 Shmil1

13) dlwillson: Discover Y1 Dlwillson G2 Rutabaga

14) shmil1: Trade G1 R1 Shmil1

15) dlwillson: Build Y2 Dlwillson

16) shmil1: Build R1 Shmil1

17) dlwillson: Discover Y1 Rutabaga B3 Carrot-of-doom

18) shmil1: Pass

19) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Carrot-of-doom
Build Y2 Dlwillson
Build Y3 Carrot-of-doom

20) shmil1: Trade G3 Y3 Shmil1

21) dlwillson: Trade Y2 R2 Carrot-of-doom

22) shmil1: Build Y2 Shmil1

23) dlwillson: Move R2 Carrot-of-doom Shmil1 Cat Red Shmil1

24) shmil1: Sacrifice Y3 Shmil1
Move Y2 Shmil1 Carrot-of-doom
Move Y2 Carrot-of-doom Potato
Move Y2 Potato Dlwillson
Catastrophe Dlwillson Yellow

	dlwillson: Ha!  Same way as last time you won!  Apparently, I learn slowly.  AND my red catastrophe didn't get in.  Not that it would have mattered.  Good job, Shmil1.


15846)
Started: 2010.3.21, Ended: 2010.5.11
Participants: mathochist (S), Professor_Rabbit (N)
Winner: mathochist

1) Professor_Rabbit: Homeworld R1 G2 B3

2) mathochist: Homeworld R1 B3 G3

3) Professor_Rabbit: Build B1 Professor_rabbit


4) mathochist: Build G1 Mathochist

5) Professor_Rabbit: Trade B1 Y1 Professor_rabbit

6) mathochist: Trade G1 Y1 Mathochist

7) Professor_Rabbit: Discover Y1 Professor_rabbit G3 Alpha

8) mathochist: Build G1 Mathochist

9) Professor_Rabbit: Build Y1 Alpha

10) mathochist: Build Y2 Mathochist

11) Professor_Rabbit: Build Y2 Alpha

12) mathochist: Sacrifice Y2 Mathochist
Discover Y1 Mathochist B2 Beta
Move Y1 Beta Alpha
Catastrophe Alpha Yellow

13) Professor_Rabbit: Build B1 Professor_rabbit



14) mathochist: Trade G1 R1 Mathochist

15) Professor_Rabbit: Trade B1 Y1 Professor_rabbit


16) mathochist: Build R2 Mathochist

17) Professor_Rabbit: Discover Y1 Professor_rabbit Y3 Delta

18) mathochist: Trade R2 Y2 Mathochist

	mathochist: Hello?


15883)
Started: 2010.3.22, Ended: 2010.3.29
Participants: llasram (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) llasram: Homeworld R1 B2 G3

3) TwoShort: Build G1 Twoshort

4) llasram: Build G1 Llasram

5) TwoShort: Trade G1 Y1 Twoshort

6) llasram: Trade G1 Y1 Llasram

7) TwoShort: Build G1 Twoshort

8) llasram: Build G1 Llasram

9) TwoShort: Discover G1 Twoshort B2 Bluonia

10) llasram: Discover G1 Llasram B3 Starb3a

11) TwoShort: Build G1 Twoshort

12) llasram: Build G2 Llasram

13) TwoShort: Build Y1 Twoshort

14) llasram: Build Y2 Llasram

15) TwoShort: Build Y2 Twoshort

16) llasram: Trade Y1 B1 Llasram

17) TwoShort: Build G2 Bluonia

18) llasram: Sacrifice G3 Llasram
Build G2 Llasram
Build G3 Starb3a
Build G3 Llasram

19) TwoShort: Sacrifice Y2 Twoshort
Move G1 Bluonia Starb3a
Move G1 Starb3a Llasram
Catastrophe Llasram Green



15889)
Variants: "Hard time"
Started: 2010.3.23, Ended: 2010.4.15
Participants: agentofchaos (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld R3 B1 G3

2) agentofchaos: Homeworld B2 R1 G3

3) dlwillson: Build G1 Dlwillson
	agentofchaos: enjoy the game

4) agentofchaos: Build G1 Agentofchaos
	dlwillson: You too!  Thanks for taking one of my games!
	agentofchaos: My pleasure

5) dlwillson: Trade G1 Y1 Dlwillson

6) agentofchaos: Build G1 Agentofchaos

7) dlwillson: Build Y1 Dlwillson

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) dlwillson: Discover Y1 Dlwillson B2 Smorgasbord

10) agentofchaos: Build Y2 Agentofchaos

11) dlwillson: B Y2 Dlwillson

12) agentofchaos: Build G1 Agentofchaos

13) dlwillson: Discover Y1 Dlwillson G2 Buffet

14) agentofchaos: Trade G1 R1 Agentofchaos

15) dlwillson: Build G1 Dlwillson

16) agentofchaos: Discover Y2 Agentofchaos G3 Dagon

17) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Smorgasbord
Build Y3 Buffet
Build Y3 Dlwillson

18) agentofchaos: Build Y3 Dagon

19) dlwillson: Sacrifice Y2 Dlwillson
Move Y1 Buffet Dagon
Move Y1 Smorgasbord Dagon
Catastrophe Dagon Yellow

20) agentofchaos: Build R1 Agentofchaos

21) dlwillson: B G1 Dlwillson

22) agentofchaos: Build Y1 Agentofchaos

23) dlwillson: Move G1 Dlwillson Smorgasbord

	dlwillson: Agent...  You're running awfully short on time.  Are you still thinking?


15916)
Variants: "Hard time"
Started: 2010.3.24, Ended: 2010.4.8
Participants: rootbier (S), shmil1 (N)
Winner: rootbier

1) shmil1: Homeworld Y1 B3 G3

2) rootbier: Homeworld B2 R2 G3 *

3) shmil1: Build G1 Shmil1
	rootbier: if you have no homeworld defense i am going brutal style :) but then i always make dumb mistakes so don't worry too much. good luck :)

4) rootbier: Build G1 Rootbier

5) shmil1: Trade G1 R1 Shmil1

6) rootbier: Trade G1 Y1 Rootbier
	rootbier: right. guess that's all it takes eh. this is maybe my fifth or sixth game ever (including face-to-face with icehouse pieces)

7) shmil1: Build G1 Shmil1

8) rootbier: Build G1 Rootbier

9) shmil1: Trade G1 B1 Shmil1

10) rootbier: Trade G1 R1 Rootbier

11) shmil1: Build R1 Shmil1

12) rootbier: Discover R1 Rootbier G3 Bagatelle

13) shmil1: Build R2 Shmil1

14) rootbier: Build Y1 Rootbier

15) shmil1: Trade R2 Y2 Shmil1

16) rootbier: Move Y1 Rootbier Bagatelle

17) shmil1: Build R2 Shmil1

18) rootbier: Sacrifice G3 Rootbier
Build Y2 Bagatelle
Build Y2 Bagatelle
Build Y3 Rootbier

19) shmil1: Sacrifice Y2 Shmil1
Move R1 Shmil1 Rootbier
Move R1 Shmil1 Rootbier

20) rootbier: Build R2 Bagatelle

21) shmil1: Sacrifice G3 Shmil1
Build R3 Shmil1
Build B1 Shmil1
Build R3 Rootbier
Catastrophe Rootbier Red

22) rootbier: Trade Y3 R3 Rootbier

23) shmil1: Trade R2 G2 Shmil1

24) rootbier: Trade Y1 G1 Rootbier

25) shmil1: Move B1 Shmil1 Rootbier

26) rootbier: Attack B1 Rootbier

27) shmil1: Build B1 Shmil1

28) rootbier: Sacrifice Y1 Bagatelle
Move B1 Rootbier Shmil1
Catastrophe Shmil1 Blue
	rootbier: I like your style. Sacrifice kaboom... but don't you need one more blue to make that work? I take this one. You send the next. I take that one. We're still only at three here. Guess I'll find out.

29) shmil1: Discover G2 Shmil1 B3 Obloha

30) rootbier: Sacrifice Y2 Bagatelle
Move Y2 Bagatelle Rootbier
Move Y2 Rootbier Obloha

31) shmil1: Build G1 Obloha
	rootbier: or you could do that

32) rootbier: Sacrifice R2 Bagatelle
Attack G1 Obloha
Attack G2 Obloha

33) shmil1: Pass

34) rootbier: Build Y1 Obloha

	rootbier: you know this is going to take a while -- more or less for no reason. i build some yellows drop em in on you. bye bye homeworld.


15920)
Variants: "Hard time"
Started: 2010.3.24, Ended: 2010.4.2
Participants: dlwillson (S), dethdukk (N)
Winner: dlwillson

1) dethdukk: Homeworld R3 B1 G3

2) dlwillson: Homeworld B3 R2 G3

3) dethdukk: Build G1 Dethdukk

4) dlwillson: Build G1 Dlwillson



15914)
Variants: "Hard time"
Started: 2010.3.26, Ended: 2010.5.8
Participants: Danner (S), jeep (N)
Winner: Danner

1) jeep: Homeworld R1 B2 G3
	Danner: Hi! Have a great game!

2) Danner: Homeworld B1 G2 R3
	jeep: Thanks, you too.

3) jeep: B G1 Jeep

4) Danner: Build R1 Danner

5) jeep: Trade G1 Y1 Jeep

6) Danner: Build R1 Danner

7) jeep: Build G1 Jeep

8) Danner: Trade R3 Y3 Danner

9) jeep: Build Y1 Jeep

10) Danner: Build R2 Danner

11) jeep: B Y1 Jeep

12) Danner: Discover R1 Danner Y3 Garrett

13) jeep: Discover Y1 Jeep G3 Stage

14) Danner: Build R2 Danner

15) jeep: Build Y2 Jeep

16) Danner: Move R2 Danner Stage

17) jeep: Discover Y1 Stage Y2 Far

18) Danner: Build R2 Stage

19) jeep: Discover Y1 Jeep R3 Cornhuskers

20) Danner: Build R3 Danner

21) jeep: Sacrifice G3 Jeep
Build Y2 Cornhuskers
Build Y3 Jeep
Build G1 Jeep

22) Danner: Trade R3 B3 Danner

23) jeep: T G1 B1 Jeep

24) Danner: Build R3 Danner

25) jeep: Discover Y1 Jeep R3 Store
	jeep: Heh, oops, I got ahead of myself there. Was going to stop that...

26) Danner: Move B3 Danner Cornhuskers

27) jeep: Sacrifice Y2 Cornhuskers
Discover Y1 Cornhuskers Y2 Hrm
Pass

28) Danner: Trade R2 G2 Danner

29) jeep: Build G1 Jeep

30) Danner: Move G2 Danner Store

31) jeep: Discover Y1 Store R2 Depression

32) Danner: Move R1 Garrett Jeep

33) jeep: Build G1 Jeep

34) Danner: Sacrifice Y3 Danner
Move R2 Stage Jeep
Move R2 Stage Jeep
Move B3 Cornhuskers Jeep
Catastrophe Jeep R
	jeep: I sure wish I'd noticed the small universe immediately. ;) You've played it well and I've let you get me over the barrel.
	Danner: Thx :)



15946)
Variants: "Hard time"
Started: 2010.3.27, Ended: 2010.4.9
Participants: ZackStack (S), alexcobo (N)
Winner: ZackStack

1) alexcobo: Homeworld G3 B2 Y3

2) ZackStack: Homeworld R1 B2 G3
	ZackStack: Have a good game Alex!

3) alexcobo: Build Y1 Alexcobo
	alexcobo: You too Zack!

4) ZackStack: Build G1 Zackstack

5) alexcobo: Trade Y1 R1 Alexcobo

6) ZackStack: Trade G1 Y1 Zackstack

	ZackStack: Hmmm... that was unclimactic.  Shoot me a rematch when you have the time :-)


15891)
Started: 2010.3.28, Ended: 2010.8.11
Participants: wmreed (S), mathochist (N)
Winner: wmreed

1) mathochist: H R1 B2 G3

2) wmreed: Homeworld B3 G1 Y3

3) mathochist: B G1 Mathochist
	wmreed: Hello!  Have you been playing Homeworlds long?
	mathochist: Just learned a few weeks ago, actually.  You?

4) wmreed: B Y1 Wmreed

5) mathochist: T G1 Y1 Mathochist
	wmreed: A while, but not often. 

6) wmreed: D Y1 Wmreed G2 Alice

7) mathochist: Build G1 Mathochist

8) wmreed: B Y1 Wmreed

9) mathochist: Build Y2 Mathochist

10) wmreed: T Y1 R1 Wmreed

11) mathochist: Build G1 Mathochist

12) wmreed: Build Y1 Wmreed

13) mathochist: Discover G1 Mathochist B3 Hatter

14) wmreed: B Y2 Alice

15) mathochist: D Y1 Mathochist G3 Cheshire

16) wmreed: Trade Y1 B1 Wmreed

17) mathochist: S G3 Mathochist
B G2 Hatter
B G2 Mathochist
B G3 Mathochist

18) wmreed: Trade Y3 G3 Wmreed

19) mathochist: S G3 Mathochist
B G3 Mathochist
B Y1 Mathochist
B Y2 Cheshire

20) wmreed: M Y1 Alice Wmreed
	mathochist: Thought I was still in another game;  the command box still held the text from my move in that game. Oops

21) mathochist: Discover G1 Mathochist Y3 Tweedledee

22) wmreed: B B1 Wmreed

23) mathochist: Trade Y1 B1 Mathochist

24) wmreed: Move B1 Wmreed Alice

25) mathochist: S G3 Mathochist
B Y1 Mathochist
B Y3 Mathochist
B G3 Mathochist

26) wmreed: Build R1 Wmreed

27) mathochist: T Y2 R2 Mathochist

28) wmreed: Move R1 Wmreed Alice

29) mathochist: M R2 Mathochist Tweedledee

30) wmreed: Build R2 Alice

31) mathochist: T G2 R2 Hatter

32) wmreed: Trade R2 G2 Alice

33) mathochist: S Y2 Cheshire
M G1 Hatter Alice
M G1 Tweedledee Alice
C Alice G

34) wmreed: Build Y2 Wmreed

35) mathochist: Build Y2 Cheshire

36) wmreed: Discover Y2 Wmreed B2 Mock

37) mathochist: Move G2 Mathochist Tweedledee

38) wmreed: T Y2 G2 Mock

39) mathochist: B G1 Tweedledee

40) wmreed: Build R1 Wmreed

41) mathochist: Move R2 Tweedledee Mock

42) wmreed: Sacrifice R1 Wmreed
Attack R2 Mock

43) mathochist: D G1 Tweedledee Y2 Tweedledum

44) wmreed: T G3 R3 Wmreed

45) mathochist: Build G1 Mathochist
	mathochist: Foo!  I forgot you could do that :P

46) wmreed: B Y2 Wmreed

47) mathochist: Sacrifice G3 Mathochist
Build Y3 Mathochist
Build G2 Tweedledum
Build G3 Mathochist

48) wmreed: B G3 Mock

49) mathochist: Move Y3 Mathochist Hatter

50) wmreed: Sacrifice Y1 Wmreed
Move G3 Mock Cheshire

51) mathochist: S G3 Mathochist
B R1 Hatter
B Y1 Hatter
B G3 Mathochist

52) wmreed: Sacrifice R1 Wmreed
Attack Y2 Cheshire

53) mathochist: Sacrifice Y3 Mathochist
Move G1 Mathochist Cheshire
Move G1 Tweedledum Cheshire
Move R1 Hatter Tweedledum
Catastrophe Cheshire G

54) wmreed: Build Y1 Wmreed

55) mathochist: Build G1 Mathochist

56) wmreed: T Y1 G1 Wmreed

57) mathochist: Sacrifice G3 Mathochist
Build G3 Mathochist
Build G3 Tweedledee
Build G3 Tweedledum

58) wmreed: Build Y1 Wmreed

59) mathochist: Sacrifice G3 Mathochist
Build Y2 Mathochist
Build Y3 Mathochist
Build G3 Mathochist

60) wmreed: Move G1 Wmreed Mock

61) mathochist: S G3 Mathochist
B G3 Mathochist
B B1 Mathochist
B R1 Hatter

62) wmreed: Move Y1 Wmreed Mock

63) mathochist: Discover Y2 Mathochist R3 Cheshire
	wmreed: Everything OK?
	mathochist: Yeah, just lots going on.  Sorry!

64) wmreed: Sacrifice G2 Mock
Build R2 Wmreed
Build R3 Mock



15983)
Started: 2010.4.1, Ended: 2010.4.16
Participants: makertron (S), logikal (N)
Winner: logikal

1) logikal: Homeworld B1 Y2 G3

2) makertron: Homeworld R3 B2 G3

3) logikal: Build G1 Logikal

4) makertron: Build G1 Makertron

5) logikal: Discover G1 Logikal B3 L1

6) makertron: Trade G1 Y1 Makertron

7) logikal: Build G1 Logikal

8) makertron: Build G1 Makertron

9) logikal: Build G2 L1

10) makertron: Discover G1 Makertron B1 Underage

11) logikal: Trade G2 R2 L1

12) makertron: Build G2 Underage

13) logikal: Trade G1 Y1 L1

14) makertron: Trade G1 R1 Underage

15) logikal: Move G1 Logikal L1

16) makertron: Build G1 Underage

17) logikal: Build R1 L1

18) makertron: Trade G1 Y1 Underage

19) logikal: Build Y2 L1

20) makertron: Build Y2 Underage

21) logikal: Move Y1 L1 Logikal

22) makertron: Build Y3 Makertron

23) logikal: Build Y3 L1

24) makertron: Build G1 Underage

25) logikal: Discover Y1 Logikal Y3 L2

26) makertron: Discover G1 Underage G3 Cumdumpster

27) logikal: Move Y1 L2 Logikal

28) makertron: Move Y2 Underage Cumdumpster

29) logikal: Trade Y1 R1 Logikal

30) makertron: Build R2 Underage

31) logikal: Discover R2 L1 G2 L2

32) makertron: Trade R1 B1 Underage

33) logikal: Move Y3 L1 Underage

34) makertron: Move Y3 Makertron Underage

35) logikal: Sacrifice R2 L2
Attack Y3 Underage
Attack R2 Underage

36) makertron: Move Y2 Cumdumpster Underage
Catastrophe Underage Y

37) logikal: Attack G2 Underage

38) makertron: Build Y1 Makertron

39) logikal: Attack B1 Underage

40) makertron: Build G1 Makertron

41) logikal: Sacrifice G3 Logikal
Build G2 Underage
Build G2 L1
Build G3 L1

42) makertron: Discover G1 Makertron Y1 Spacehat

43) logikal: Move G2 L1 Logikal

44) makertron: Trade Y1 R1 Makertron

45) logikal: Sacrifice G3 L1
Build G3 L1
Build R2 L1
Build R2 Underage

46) makertron: Move R1 Makertron Spacehat

47) logikal: Move G3 L1 Spacehat

48) makertron: Build R3 Spacehat

49) logikal: Sacrifice R1 L1
Attack R3 Spacehat

50) makertron: Build Y1 Makertron

51) logikal: Sacrifice G3 Spacehat
Build G3 L1
Build R1 Logikal
Build R3 Spacehat

52) makertron: Move R1 Spacehat Makertron

53) logikal: Attack G1 Spacehat

54) makertron: Build Y2 Makertron

55) logikal: Build Y3 L1

56) makertron: Build Y3 Makertron

57) logikal: Build Y3 L1
Catastrophe Makertron Yellow

58) makertron: Trade R1 Y1 Makertron

59) logikal: Sacrifice Y3 L1
Move R3 Spacehat Makertron
Move Y3 L1 Underage
Move Y3 Underage Makertron

60) makertron: Move G3 Makertron Spacehat

61) logikal: Sacrifice R2 Underage
Attack G3 Spacehat
Attack Y1 Makertron



15899)
Started: 2010.4.4, Ended: 2010.4.28
Participants: TwoShort (S), dlwillson (N)
Winner: TwoShort

1) dlwillson: Homeworld B3 R1 G3

2) TwoShort: Homeworld B1 R2 G3

3) dlwillson: Build G1 Dlwillson

4) TwoShort: Build G1 Twoshort

5) dlwillson: Trade G1 Y1 Dlwillson

6) TwoShort: Trade G1 Y1 Twoshort

7) dlwillson:
B G1 Dlwillson

8) TwoShort: Build G1 Twoshort

9) dlwillson: Trade G1 R1 Dlwillson

10) TwoShort: Trade G1 B1 Twoshort

11) dlwillson: Discover R1 Dlwillson G2 Dingo

12) TwoShort: Build B1 Twoshort

13) dlwillson: B G1 Dlwillson

14) TwoShort: Discover B1 Twoshort G3 Grogar

15) dlwillson: B G1 Dlwillson

16) TwoShort: Build B2 Grogar
	TwoShort: Hadn't had coffee :)

17) dlwillson: Discover G1 Dlwillson R2 Bingo

18) TwoShort: Build G1 Twoshort

19) dlwillson: Sacrifice G3 Dlwillson
Build G2 Dlwillson
Build G2 Bingo
Build G3 Dlwillson

20) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build B2 Grogar
Build B2 Twoshort

21) dlwillson: Sacrifice G3 Dlwillson
Build R1 Dingo
Build R2 Dingo
Build G3 Dlwillson

22) TwoShort: Discover B1 Twoshort R3 Rover

23) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Dlwillson
Build Y2 Dlwillson
Build G3 Dlwillson

24) TwoShort: Sacrifice G3 Twoshort
Build B3 Twoshort
Build B3 Rover
Build G3 Twoshort

25) dlwillson: Move Y1 Dlwillson Dingo

26) TwoShort: Sacrifice B2 Grogar
Trade B3 R3 Twoshort
Trade B3 Y3 Rover

27) dlwillson: Sacrifice G2 Dlwillson
Build Y2 Dingo
Build Y2 Dingo

28) TwoShort: Sacrifice G3 Twoshort
Build B2 Rover
Build B3 Grogar
Build B3 Twoshort

29) dlwillson: S Y2 Dingo
D R1 Dingo Y3 Xerox
D R1 Dingo Y3 Ditto
	dlwillson: I'm unlikely to win this one, so I'll have to take satisfaction from your doubled moves. OK, it's not much, but it's what I've got.

30) TwoShort: Sacrifice Y3 Rover
Discover R3 Twoshort G3 Grover
Discover B2 Twoshort R3 Rogar
Move B3 Grogar Dingo
	dlwillson: Large ships? We don't need no steenkeeng large ships. OK, we do.

31) dlwillson: Sacrifice Y2 Dingo
Move R2 Dingo Ditto
Move R1 Ditto Twoshort

32) TwoShort: Attack R1 Twoshort

33) dlwillson: Sacrifice Y2 Dlwillson
Move R1 Xerox Twoshort
Move R2 Ditto Twoshort
Catastrophe Twoshort Red

34) TwoShort: Sacrifice B2 Rover
Trade B3 Y3 Twoshort
Trade B2 R2 Rogar

35) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Dlwillson
Build Y2 Dingo
Build G2 Dlwillson

36) TwoShort: Sacrifice Y3 Twoshort
Move R3 Grover Dingo
Move R3 Dingo Dlwillson
Move B3 Dingo Dlwillson
	TwoShort: I deduce from the Icehouse mailing list that you are in Denver? (I'm in Boulder) 

37) dlwillson: Sacrifice Y2 Dingo
Move G1 Bingo Twoshort
Move G2 Bingo Twoshort
	dlwillson: Yep, I'm in Denver. I'm Dethdukk's Dad. I hope you're not in a hurry for my turn; I haven't come up with any great ideas.
	TwoShort: No hurry... but I'll note that I don't see a way for you to stop me from victory in 3.  
	dlwillson: Neither do I. Ah well. Why'd you ask about the location? Want to play with real plastic sometime?

38) TwoShort: Sacrifice R2 Rogar
Attack G2 Dlwillson
Attack Y2 Dlwillson
	TwoShort: I'm always curious where online opponents are, and it's kind of neat to find one not all that far away.  I'm theoretically interested in playing in person some time, but practically, my schedule is often busy and I don't own a car :)   If you keep me apprised (directly or via the Icehouse mailing list) of the progress of this "Icehouse Games at Tacticon" concept, I'll most likely be there.

39) dlwillson: Build G3 Twoshort
Catastrophe Twoshort G
	dlwillson: Your playing a game with my brother-in-law, SilentTitan! Two more turns...

40) TwoShort: Sacrifice R3 Dlwillson
Attack G1 Dlwillson
Attack Y1 Dlwillson
Pass


	dlwillson: Good game. Let me know if you want to come to my next Pyramid Party. I have another friend in Boulder, and I could ask him to pick you up.
	TwoShort: Thanks for the game.  As far as pyramid parties, I'd certainly like to hear of such things, just don't be offended if I can't make it :) It's as much a question of scheduling as transportation, as I have many time-consuming activities (notably, two children).


16017)
Started: 2010.4.5, Ended: 2010.4.15
Participants: SilentTitan (S), dlwillson (N)
Winner: SilentTitan

1) dlwillson: Homeworld R3 Y1 G3 *

2) SilentTitan: Homeworld Y3 B2 G3
	dlwillson: Heh...  Let's see what happens here.  OOP!  Late for dinner is what happens!  Bye

3) dlwillson: Build G1 Dlwillson


4) SilentTitan: Build G1 Silenttitan

5) dlwillson: Discover G1 Dlwillson B2 Fungo

6) SilentTitan: Discover G1 Silenttitan Y1 Escort

7) dlwillson: Trade G1 Y1 Fungo

8) SilentTitan: Discover G1 Escort Y3 Vanbytheriver

9) dlwillson: B G1 Dlwillson

10) SilentTitan: Build G1 Silenttitan

11) dlwillson: Move G1 Dlwillson Fungo

12) SilentTitan: Build G2 Silenttitan

13) dlwillson: B G2 Dlwillson

14) SilentTitan: Trade G1 R1 Silenttitan

15) dlwillson: Build Y1 Fungo

16) SilentTitan: Trade G2 Y2 Silenttitan

17) dlwillson: B Y2 Fungo

18) SilentTitan: Move G1 Vanbytheriver Fungo

19) dlwillson: T Y2 R2 Fungo


20) SilentTitan: Discover Y2 Silenttitan G1 Fin

21) dlwillson: A G1 Fungo

22) SilentTitan: Build Y2 Fin

23) dlwillson: Discover Y1 Fungo B1 Dingo

24) SilentTitan: Discover Y2 Fin B2 Done

25) dlwillson: Sacrifice G2 Dlwillson
Build Y2 Fungo
Build Y3 Dingo

26) SilentTitan: Trade Y2 G2 Done

27) dlwillson: Build G2 Dlwillson

28) SilentTitan: Build G2 Done

29) dlwillson: Trade Y1 B1 Fungo

	dlwillson: Grr... Same oversight TWICE. Let's see if I can't win one of the other ones.
	dlwillson: By the way, you played an excellent game. Sorry for grumbling. I was just annoyed at myself.
	SilentTitan: I understand


15976)
Started: 2010.4.6, Ended: 2010.9.18
Participants: Mandrel (S), dethdukk (N)
Winner: Mandrel

1) dethdukk: Homeworld B3 R1 G3

2) Mandrel: Homeworld B2 R1 G3

3) dethdukk: Build G1 Dethdukk

4) Mandrel: Build G1 Mandrel

5) dethdukk: Trade G1 R1 Dethdukk

6) Mandrel: Trade G1 Y1 Mandrel

7) dethdukk: Build R2 Dethdukk

8) Mandrel: Build Y1 Mandrel

9) dethdukk: Trade R2 Y2 Dethdukk

10) Mandrel: Trade Y1 B1 Mandrel

11) dethdukk: Build R2 Dethdukk

12) Mandrel: Build Y1 Mandrel

13) dethdukk: Discover R1 Dethdukk G2 Leaps

14) Mandrel: Build G1 Mandrel

15) dethdukk: Build R2 Leaps

16) Mandrel: Discover Y1 Mandrel G3 Imposition

17) dethdukk: Build R2 Dethdukk

18) Mandrel: Build Y1 Mandrel

19) dethdukk: Build Y2 Dethdukk

20) Mandrel: Build Y2 Imposition



16027)
Variants: "Hard time"
Started: 2010.4.6, Ended: 2010.4.27
Participants: dlwillson (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld Y1 B2 G3

2) dlwillson: Homeworld B3 Y1 G3

3) SilentTitan: Build G1 Silenttitan

4) dlwillson: Build G1 Dlwillson

5) SilentTitan: Trade G1 Y1 Silenttitan

6) dlwillson: Build G1 Dlwillson

7) SilentTitan: Build Y2 Silenttitan

8) dlwillson: D G1 Dlwillson B2 Bell

9) SilentTitan: Discover Y1 Silenttitan G3 Dell

10) dlwillson: Discover G1 Dlwillson B2 Well

11) SilentTitan: Build Y2 Dell

12) dlwillson: Build G1 Dlwillson

13) SilentTitan: Build Y2 Silenttitan

14) dlwillson: B G2 Dlwillson

15) SilentTitan: Build Y3 Dell

16) dlwillson: Trade G1 R1 Dlwillson

17) SilentTitan: Move Y3 Dell Bell

18) dlwillson: Sacrifice G2 Dlwillson
Build G1 Dlwillson
Build G2 Well

19) SilentTitan: Trade Y3 R3 Bell

20) dlwillson: Sacrifice G3 Dlwillson
Build G2 Bell
Build G2 Well
Build G3 Dlwillson

21) SilentTitan: Attack G2 Bell

22) dlwillson: Trade G2 R2 Well

23) SilentTitan: Attack G1 Bell

24) dlwillson: Trade G1 B1 Dlwillson

25) SilentTitan: Sacrifice Y2 Silenttitan
Move G2 Bell Dlwillson
Move G1 Bell Dlwillson

26) dlwillson: Sacrifice R2 Well
Attack G1 Dlwillson
Attack G2 Dlwillson

27) SilentTitan: Build Y2 Dell

28) dlwillson: Trade G2 R2 Dlwillson

29) SilentTitan: Sacrifice Y2 Dell
Discover Y2 Dell R2 Sell
Discover Y1 Dell Y2 Cell

30) dlwillson: M G3 Dlwillson Sell

31) SilentTitan: Discover Y2 Sell G3 Pell

32) dlwillson: M R1 Dlwillson Cell

33) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Pell
Build Y3 Cell
Build Y3 Silenttitan
	dlwillson: Pell? What's Pell?

34) dlwillson: A Y1 Cell

35) SilentTitan: Sacrifice R3 Bell
Attack R1 Cell
Attack Y1 Cell
Pass

36) dlwillson: B G1 Sell

37) SilentTitan: Move Y3 Cell Dlwillson

38) dlwillson: Move R2 Dlwillson Cell

39) SilentTitan: Sacrifice R1 Cell
Attack G1S Dlwillson

40) dlwillson: Sacrifice R2 Cell
Attack G1 Dlwillson
Pass

41) SilentTitan: Trade Y3 R3 Silenttitan

42) dlwillson: Sacrifice G3 Sell
Build G2 Dlwillson
Build G2 Dlwillson
Build B1 Dlwillson

43) SilentTitan: Sacrifice R3 Silenttitan
Attack G2S Dlwillson
Attack G2S Dlwillson
Attack G1S Dlwillson

44) dlwillson: T B1 R1 Dlwillson

45) SilentTitan: Trade G1 B1 Dlwillson
	SilentTitan: Pell Mell... I thought you'd name the next system Mell.... 


46) dlwillson: Sacrifice G2 Well
Build B1 Dlwillson
Build G1 Well
Catastrophe Dlwillson Blue
	dlwillson: We never got to Mell.  I kept expecting Heck.

47) SilentTitan: Sacrifice Y3 Pell
Move Y1 Cell Pell
Move Y1 Pell Dlwillson
Move Y2 Pell Dlwillson
Catastrophe Dlwillson Y



16028)
Variants: "Hard time"
Started: 2010.4.6, Ended: 2010.5.10
Participants: dlwillson (S), SilentTitan (N)
Winner: dlwillson

1) SilentTitan: Homeworld G3 R2 B3

2) dlwillson: Homeworld R3 B1 G3

3) SilentTitan: Build B1 Silenttitan

4) dlwillson: Build G1 Dlwillson

5) SilentTitan: Trade B1 Y1 Silenttitan

6) dlwillson: Trade G1 Y1 Dlwillson

7) SilentTitan: Build B1 Silenttitan

8) dlwillson: B G1 Dlwillson

9) SilentTitan: Discover B1 Silenttitan B1 Runningaway

10) dlwillson: Build G1 Dlwillson

11) SilentTitan: Build B2 Silenttitan

12) dlwillson: Discover G1 Dlwillson Y2 Silentrunning

13) SilentTitan: Discover B2 Silenttitan R1 Cheeto

14) dlwillson: B G1 Silentrunning

15) SilentTitan: Build B2 Silenttitan

16) dlwillson: Discover G1 Silentrunning R1 Dorito

17) SilentTitan: Discover B2 Silenttitan Y1 Wrench

18) dlwillson: Sacrifice G3 Dlwillson
Build G2 Dorito
Build G2 Silentrunning
Build G2 Dlwillson

19) SilentTitan: Trade B3 G3 Silenttitan

20) dlwillson: Build G3 Dlwillson

21) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Cheeto
Build B3 Wrench
Build B3 Wrench

22) dlwillson: Sacrifice Y1 Dlwillson
Move G2 Dorito Silenttitan

23) SilentTitan: Move B3 Wrench Silenttitan

24) dlwillson: Sacrifice G2 Silentrunning
Build G2 Silenttitan
Build G3 Silenttitan
Catastrophe Silenttitan Green

25) SilentTitan: Sacrifice B2 Cheeto
Trade B2 Y2 Cheeto
Trade B3 G3 Wrench

26) dlwillson: T G2 Y2 Dlwillson

27) SilentTitan: Sacrifice G3 Wrench
Build Y1 Cheeto
Build Y3 Cheeto
Build Y3 Silenttitan

28) dlwillson: Build Y3 Dlwillson

29) SilentTitan: Sacrifice Y3 Cheeto
Move Y1 Silenttitan Cheeto
Discover Y1 Cheeto B2 Screwdriver
Discover Y1 Cheeto B2 Toast

30) dlwillson: D Y3 Dlwillson G2 Taco

31) SilentTitan: Trade B3 G3 Silenttitan

32) dlwillson: B Y3 Taco

33) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Runningaway
Build B3 Wrench
Build B3 Wrench

34) dlwillson: Sacrifice G3 Dlwillson
Build G2 Dlwillson
Build G2 Dorito
Build G3 Dlwillson

35) SilentTitan: Sacrifice B2 Wrench
Trade B3 R3 Wrench
Trade B3 G3 Runningaway

36) dlwillson: Sacrifice Y3 Taco
Discover G2 Dorito Y3 Cheese
Discover G1 Dorito B3 Justlikemoms
Discover G2 Dlwillson B2 Mysterymeat

37) SilentTitan: Sacrifice Y2 Cheeto
Move G3 Runningaway Cheese
Move B3 Wrench Taco

38) dlwillson: Sacrifice Y2 Dlwillson
Discover Y3 Taco R3 Spaghetti
Discover G1 Silentrunning B3 Burnt

39) SilentTitan: Sacrifice R3 Wrench
Attack G2S Cheese
Pass
Pass

40) dlwillson: Sacrifice G2 Mysterymeat
Build G2 Justlikemoms
Build G3 Burnt

41) SilentTitan: Sacrifice G3 Cheese
Build Y1 Silenttitan
Build Y2 Toast
Build G3 Cheese

42) dlwillson: Trade G3 R3 Burnt

43) SilentTitan: Sacrifice Y2 Toast
Move G3 Cheese Toast
Move G3 Toast Dlwillson

44) dlwillson: Sacrifice Y3 Spaghetti
Move R3 Burnt Toast
Move G2 Justlikemoms Runningaway
Move R3 Toast Dlwillson

45) SilentTitan: Sacrifice G3 Dlwillson
Build Y2 Toast
Build Y2 Screwdriver
Build G3 Cheese

46) dlwillson: T G3 Y3 Dlwillson

47) SilentTitan: Sacrifice B3 Taco
Trade B1 R1 Runningaway
Trade Y1 R1 Screwdriver
Trade Y1 R1 Toast

48) dlwillson: T R3 B3 Dlwillson

49) SilentTitan: Sacrifice G3 Cheese
Build R2 Toast
Build R2 Screwdriver
Build R3 Runningaway

50) dlwillson: S G2 Runningaway
B G2 Justlikemoms
B G2 Burnt

51) SilentTitan: Sacrifice G2 Cheese
Build Y1 Screwdriver
Build Y1 Toast

52) dlwillson: B G2 Justlikemoms

53) SilentTitan: Trade R3 G3 Runningaway

54) dlwillson: Build G3 Dlwillson

55) SilentTitan: Sacrifice G3 Runningaway
Build R3 Screwdriver
Build R3 Toast
Build Y2 Silenttitan

56) dlwillson: Move Y3 Dlwillson Silenttitan
Catastrophe Silenttitan Yellow

	SilentTitan: Geez.. I hope I don't need a third color anywhere
	dlwillson: Thanks Tripp! :-)
	SilentTitan: I had no idea you could do that... I thought you had to still maintain the enty point I started the game with .... I would have never had done that had I known. 


16044)
Started: 2010.4.8, Ended: 2010.5.24
Participants: dethdukk (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld R3 B1 G3

2) dethdukk: Homeworld G3 B1 B3 *

3) rootbier: Build G1 Rootbier

4) dethdukk: Build B1 Dethdukk

5) rootbier: Trade G1 Y1 Rootbier

6) dethdukk: Trade B1 Y1 Dethdukk

7) rootbier: Build G1 Rootbier

8) dethdukk: Build B1 Dethdukk

9) rootbier: Trade G3 B3 Rootbier

10) dethdukk: Discover B1 Dethdukk G2 Planetx

11) rootbier: Discover G1 Rootbier Y2 Bagatelle

12) dethdukk: Build B2 Planetx

13) rootbier: Build G1 Bagatelle

14) dethdukk: Build B2 Dethdukk

15) rootbier: Move G1 Bagatelle Dethdukk

16) dethdukk: Trade B2 R2 Dethdukk

17) rootbier: Build G1 Dethdukk



16069)
Variants: "Hard time"
Started: 2010.4.9, Ended: 2010.4.25
Participants: rootbier (S), jonaskoelker (N)
Winner: rootbier

1) jonaskoelker: Homeworld B1 R2 G3

2) rootbier: Homeworld R3 B1 G3

3) jonaskoelker: Build G1 Jonaskoelker

4) rootbier: Build G1 Rootbier

5) jonaskoelker: Trade G1 Y1 Jonaskoelker

6) rootbier: Trade G1 Y1 Rootbier

7) jonaskoelker: Build G1 Jonaskoelker

8) rootbier: Build G1 Rootbier

	rootbier: oh :( bad ladder hard time :(
	jonaskoelker: Evil, naughty, distracting girlfriend :D

	rootbier: lucky tricksy bastard :P


15967)
Started: 2010.4.9, Ended: 2010.5.11
Participants: sucotronic (S), mathochist (N)
Winner: mathochist

1) mathochist: Homeworld R1 B2 G3
	sucotronic: star1 star2 ship

2) sucotronic: Homeworld B3 G1 R3
	mathochist: you want to enter "homeworld colorsize colorsize colorsize", picking your stars & ship.  For example, "homeworld blue1 yellow3 green3" would give you a small blue and large yellow for stars, and a large green ship.
	sucotronic: homeworld Y3 B1 R3
	sucotronic: homeworld yellow3 blue1 red3

3) mathochist: B G1 Mathochist
	sucotronic: thanks for info, this is my first time in superdupergames and I'm a bit lost :P
	mathochist: Yeah, the interface isn't exactly intuitive.  Looks like you figured it out.  :)  you probably want to read the wiki (click the link in the red bar, above). You can abbreviate commands and colors to their first letters, too.

4) sucotronic: Build R1 Sucotronic

5) mathochist: Trade G1 Y1 Mathochist

6) sucotronic: Trade R1 Y1 Sucotronic

7) mathochist: B G1 Mathochist

8) sucotronic: Discover Y1 Sucotronic G2 Trantor

9) mathochist: Discover G1 Mathochist Y3 Renton

10) sucotronic: Build R1 Sucotronic

11) mathochist: Build G1 Mathochist

12) sucotronic: Trade R1 B1 Sucotronic

13) mathochist: Sacrifice G3 Mathochist
Build G2 Mathochist
Build G2 Renton
Build G3 Mathochist

14) sucotronic: Build R1 Sucotronic

15) mathochist: Discover G2 Mathochist G3 Kent

16) sucotronic: Build B1 Sucotronic

17) mathochist: Sacrifice G3 Mathochist
Build G3 Mathochist
Build G3 Mathochist
Build Y1 Mathochist

18) sucotronic: Build Y2 Trantor

19) mathochist: M Y1 Mathochist Kent

20) sucotronic: Discover Y2 Trantor B3 Terminus

21) mathochist: S G3 Mathochist
B G3 Mathochist
B Y2 Mathochist
B Y2 Kent



22) sucotronic: Build Y3 Trantor

23) mathochist: T Y1 B1 Mathochist

24) sucotronic: Sacrifice Y3 Trantor
Move Y2 Terminus Trantor
Move Y2 Trantor Kent
Move Y1 Trantor Kent

25) mathochist: S G3 Mathochist
B Y1 Mathochist
B Y3 Mathochist
B G2 Mathochist
C Kent Y


26) sucotronic: Trade R3 G3 Sucotronic

27) mathochist: S Y3 Mathochist
M B1 Mathochist Kent
D B1 Kent R2 Temp
M B1 Temp Sucotronic
C Sucotronic B


	sucotronic: good played, maybe I have to practice a bit more before next game :P
	mathochist: Challenge me again any time :)


16006)
Variants: "Hard time"
Started: 2010.4.13, Ended: 2010.4.19
Participants: ZackStack (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Pass

2) ZackStack: Homeworld B1 R2 G3
	dlwillson: I won the last game, you can have first turn if you like.
	ZackStack: That was unneccessary... but thanks.

3) dlwillson: H Y3 B2 G3

4) ZackStack: Build G1 Zackstack

5) dlwillson: Build G1 Dlwillson

6) ZackStack: Trade G1 Y1 Zackstack

7) dlwillson: T G1 B1 Dlwillson

8) ZackStack: Build Y1 Zackstack
	ZackStack: I see blue denial in my future :-)

9) dlwillson: Build B1 Dlwillson

10) ZackStack: Build Y1 Zackstack

11) dlwillson: D B1 Dlwillson G1 Frog

12) ZackStack: Discover Y1 Zackstack G3 Toad

13) dlwillson: B G1 Dlwillson
	dlwillson: We'll see... I've never tried the "Blue Denial" strategy before, but Davey (dethdukk) swears it's nearly unbeatable. Says TwoShort uses it to great effect.

	dlwillson: I reset my move, hoping it would add some time to your timer, but no dice. Sorry. I'll change the cap on my standing challenge.
	ZackStack: Thanks for trying... I just couldn't get free much to get on the computer this weekend.


16103)
Variants: "Hard time"
Started: 2010.4.14, Ended: 2010.5.5
Participants: mneme (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) mneme: Homeworld G3 B1 R3

3) TwoShort: Build G1 Twoshort

4) mneme: Build R1 Mneme

5) TwoShort: Build G1 Twoshort

6) mneme: Build R1 Mneme

7) TwoShort: Trade G1 Y1 Twoshort

8) mneme: Trade R3 Y3 Mneme

9) TwoShort: Build G1 Twoshort

10) mneme: Build R2 Mneme

11) TwoShort: Discover G1 Twoshort B3 Bluonia

12) mneme: Trade R2 G2 Mneme

13) TwoShort: Discover G1 Twoshort G3 Greedo

14) mneme: Build R2 Mneme

15) TwoShort: Build G1 Twoshort
	TwoShort: Sorry, saw the certain death right as I hit the button :)

16) mneme: Discover R2 Mneme Y2 Staging

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Greedo
Build G2 Twoshort
Build G3 Twoshort
	mneme: heh.  Yeah, that would have been kinda bad.  

18) mneme: Move R2 Staging Bluonia

19) TwoShort: Trade G2 R2 Twoshort

20) mneme: Attack G1 Bluonia

21) TwoShort: Discover G1 Twoshort Y3 Yolonda

22) mneme: Build Y1 Mneme

23) TwoShort: Sacrifice G1 Greedo
Build G1 Yolonda

24) mneme: Sacrifice G2 Mneme
Build R2 Mneme
Build R3 Bluonia

25) TwoShort: Discover G1 Yolonda G2 Grinder

26) mneme: Trade R3 Y3 Bluonia

27) TwoShort: Build G2 Twoshort

28) mneme: Build R3 Bluonia
	mneme: hmm.  I didn't realize until I did it what your plan was and that I'd just foiled it.  Kinda bemusing.  

29) TwoShort: Move R2 Twoshort Yolonda
	TwoShort: I'm excited to hear I had a plan :) Well, I guess I had faint hopes you'd do something else last turn, but that's about it.  Overall, my long held "ignore the early monopoly if it is red" theory is not seeming so solid in practice...

30) mneme: Discover R1 Mneme Y2 Hunter
	mneme: We'll see; I haven't beaten you yet.  

31) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build R3 Yolonda
Build Y1 Twoshort

32) mneme: Build R3 Mneme
	TwoShort: Oh certainly; I'm not despairing, I just had higher hopes for the stratagem.

33) TwoShort: Discover Y1 Twoshort B3 Blathe

34) mneme: Sacrifice Y3 Mneme
Move R1 Mneme Hunter
Move R1 Hunter Yolonda
Move R1 Hunter Yolonda
Catastrophe Yolonda R

35) TwoShort: Sacrifice G3 Twoshort
Build Y2 Blathe
Build Y2 Twoshort
Build G3 Twoshort

36) mneme: Build Y2 Mneme

37) TwoShort: Trade Y2 R2 Blathe

38) mneme: Sacrifice Y1 Mneme
Move R3 Bluonia Grinder

39) TwoShort: Sacrifice G2 Greedo
Build G2 Grinder
Build G3 Yolonda
	mneme: sorry.  My first analysis missed the r1 in hunter.

	TwoShort: No problem.  I was briefly excited you hadn't done that, but oh well :)

40) mneme: Sacrifice Y2 Mneme
Discover R3 Grinder Y3 Sign
Pass

41) TwoShort: Sacrifice G3 Twoshort
Build Y1 Blathe
Build R1 Blathe
Build G3 Twoshort

42) mneme: Trade R2 Y2 Mneme

43) TwoShort: Trade Y1 B1 Blathe

44) mneme: Move G1 Bluonia Grinder
Catastrophe Grinder G

45) TwoShort: Sacrifice Y2 Twoshort
Discover G1 Yolonda G2 Getit
Discover R1 Blathe G2 Gotit

46) mneme: Move R2 Bluonia Gotit

47) TwoShort: Sacrifice G3 Twoshort
Build G1 Yolonda
Build G1 Yolonda
Build G3 Twoshort

48) mneme: Attack R1 Gotit

49) TwoShort: Discover B1 Blathe Y2 Yelly

50) mneme: Build R1 Mneme
	mneme: that factory was really irritating, you know?
	TwoShort: I guess it depends what side of the board you're on :)

51) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y2 Blathe
Build G3 Twoshort

52) mneme: Move R1 Mneme Getit

53) TwoShort: Sacrifice G3 Yolonda
Build B1 Yelly
Build B2 Yelly
Build G3 Getit

54) mneme: Attack G1 Getit

55) TwoShort: Sacrifice Y2 Blathe
Move B2 Yelly Mneme
Move G1 Yolonda Yelly

56) mneme: Attack B2 Mneme

57) TwoShort: Move B1 Yelly Mneme

58) mneme: Move B2 Mneme Gotit

59) TwoShort: Sacrifice G3 Getit
Build B2 Mneme
Build B3 Mneme
Build G3 Yelly

60) mneme: Trade R2 Y2 Gotit
Catastrophe Mneme B

61) TwoShort: Move G1 Yelly Mneme

62) mneme: Attack G1 Mneme

63) TwoShort: Move G3 Twoshort Mneme

64) mneme: Sacrifice Y3 Bluonia
Move G1 Mneme Twoshort
Move B2 Gotit Mneme
Move R3 Sign Twoshort

65) TwoShort: Sacrifice R2 Blathe
Attack R3 Mneme
Attack B2 Mneme
	mneme: hmm? Oh, interesting!  Delaying the catastrophe preventing me from growing blue.  Hadn't thought of that one.

66) mneme: Attack G2 Twoshort
	TwoShort: That, and delaying when you were adjacent to my Homeworld.  I'm not sure if either mattered, but I hadn't thought through the possibilities, and you obviously had to call it.

67) TwoShort: Attack Y2 Mneme



16099)
Variants: "Hard time"
Started: 2010.4.14, Ended: 2010.5.27
Participants: ZackStack (S), sordros (N)
Winner: ZackStack

1) sordros: Homeworld B1 Y2 G3

2) ZackStack: Homeworld R1 B3 G3
	sordros: Hi there
	ZackStack: Hello!  Have a good game.

3) sordros: Build G1 Sordros

4) ZackStack: Build G1 Zackstack

5) sordros: Trade G1 B1 Sordros

6) ZackStack: Trade G1 Y1 Zackstack

7) sordros: Build G1 Sordros

8) ZackStack: Build Y1 Zackstack

9) sordros: Build G1 Sordros

10) ZackStack: Build Y1 Zackstack

11) sordros: Build B1 Sordros

12) ZackStack: Discover Y1 Zackstack G2 Globe

13) sordros: Discover B1 Sordros G3 Verdega

14) ZackStack: Build Y2 Zackstack

15) sordros: Build B2 Verdega

16) ZackStack: Build Y2 Globe

17) sordros: Trade B2 R2 Verdega

18) ZackStack: Trade Y2 R2 Zackstack

19) sordros: Build B2 Sordros

20) ZackStack: Build Y2 Zackstack

21) sordros: Discover B2 Sordros Y3 Flavega

22) ZackStack: Trade Y2 B2 Zackstack

23) sordros: Sacrifice G3 Sordros
Build B2 Verdega
Build B3 Flavega
Build B3 Sordros

24) ZackStack: Move B2 Zackstack Globe

25) sordros: Sacrifice B2 Flavega
Trade B3 G3 Sordros
Trade B2 Y2 Verdega

26) ZackStack: Trade Y1 G1 Globe



15940)
Started: 2010.4.20, Ended: 2010.5.13
Participants: ZackStack (S), rootbier (N)
Winner: ZackStack

1) rootbier: Homeworld G3 B1 B3 *

2) ZackStack: Homeworld R1 B2 G3
	ZackStack: Thanks for the challenge!  Have you played much?

3) rootbier: Build B1 Rootbier
	rootbier: couple games face to face with my pyramids. few more here with varying success. played one recently with a strange starting strategy that i didn't quite understand but thought i would try.

4) ZackStack: Build G1 Zackstack
	ZackStack: I must admit that based on your starting setup that I thought about blitzing you with blue ships... but I heard Admiral Ackbar yelling "Its a trap!" in the back of my mind and decided to play it straight :-)

5) rootbier: Trade B1 Y1 Rootbier
	rootbier: yeah. those were my first thoughts when I saw the set-up. i think maybe the other guy went second on setup... but basically - by the time you get mobile enough to do anything i'll be safe. (unsure)
	rootbier: "second on making his homeworld"*

6) ZackStack: Build G1 Zackstack
	ZackStack: I figured I couldn't get there fast enough to make a risky setup worthwhile :-)

7) rootbier: Build B1 Rootbier

8) ZackStack: Trade G1 B1 Zackstack

9) rootbier: Discover B1 Rootbier Y2 Bagatelle

10) ZackStack: Build B2 Zackstack

11) rootbier: Build B2 Rootbier

12) ZackStack: Trade B2 Y2 Zackstack

13) rootbier: Discover B1 Bagatelle G3 Pistachio

14) ZackStack: Discover B1 Zackstack Y3 Lemon

15) rootbier: Trade B2 R2 Rootbier

16) ZackStack: Build G1 Zackstack

17) rootbier: Build B2 Pistachio

18) ZackStack: Move G1 Zackstack Lemon

19) rootbier: Trade B2 Y2 Pistachio

20) ZackStack: Build B2 Lemon

21) rootbier: Build B2 Pistachio

22) ZackStack: Trade B1 R1 Lemon

23) rootbier: Sacrifice Y2 Pistachio
Move B1 Pistachio Zackstack
Move B2 Pistachio Zackstack

24) ZackStack: Attack B2 Zackstack
	ZackStack: Hmmm... Aggressive and dangerous... I think I like it :-)

25) rootbier: Trade Y1 G1 Rootbier
	rootbier: slight miscalculation on my part :)
	rootbier: makes the danger less dangery

26) ZackStack: Attack B1 Zackstack
	ZackStack: I didn't say who I thought it was dangerous for :-)  Pesky red worlds...

27) rootbier: Build R1 Rootbier
	rootbier: no no - i expected that.
just kind of forgot i had no green to dump.

28) ZackStack: Trade B2 Y2 Zackstack

29) rootbier: Trade R1 Y1 Rootbier

30) ZackStack: Build G2 Lemon

31) rootbier: Discover G1 Rootbier Y2 Banksy

32) ZackStack: Discover G2 Lemon B2 Grape

33) rootbier: Build G2 Banksy
	rootbier: regretting that starting "thing" i was trying. not liking having a green homestar.

34) ZackStack: Sacrifice G3 Zackstack
Build G2 Grape
Build G3 Lemon
Build G3 Zackstack
	ZackStack: Its too useful having a big green to sacrifice to pass it up (unless you really like blue denial).  

35) rootbier: Move G1 Banksy Lemon

36) ZackStack: Discover G1 Lemon R2 Cherry

37) rootbier: Build R1 Rootbier

38) ZackStack: Attack G1 Lemon
	rootbier: no no - i USUALLY have big green - just bleh - should have traded long ago
	ZackStack: Gotcha.  I've had my share of bleh playing Homeworlds too ;-)

39) rootbier: Move B3 Rootbier Grape

40) ZackStack: Sacrifice Y2 Zackstack
Move G2 Grape Rootbier
Move G2 Grape Rootbier
	rootbier: Aggress! The desperation begins.
	ZackStack: I see...

41) rootbier: Build R2 Rootbier
	rootbier: I was just happy to learn that "aggress" is a valid verb :) The desperation continues.

42) ZackStack: Sacrifice Y2 Zackstack
Move R1 Lemon Cherry
Move R1 Cherry Rootbier
Catastrophe Rootbier Red
	ZackStack: Hurrah for expanding vocabulary!  Sorry for the despair though...

43) rootbier: Trade B3 Y3 Grape
	rootbier: Nah. It's not actually me despairing - it's the sad fools of the short-lived Rootbier empire - and they're imaginary. Plus it's more like the "reckless abandon" than the "no more hope" kind of desperation.

44) ZackStack: Trade G2 R2 Rootbier
	ZackStack: <chuckle> 

45) rootbier: Move Y3 Grape Rootbier

46) ZackStack: Sacrifice B2 Lemon
Trade G2 Y2 Rootbier
Trade R2 Y2 Rootbier
Catastrophe Rootbier Yellow
	ZackStack: Thanks for the game.  I'm up for a rematch if you are!



15982)
Variants: "Unrated"
Started: 2010.4.20, Ended: 2012.2.27
Participants: makertron (S), sordros (N)
Winner: sordros

1) sordros: Homeworld Y1 B2 G3

2) makertron: Homeworld B3 Y1 G3
	sordros: Hi, let's have a good game. Cheers!

3) sordros: Build G1 Sordros
	makertron: Hi! You're going to win, but it will be fun for me regardless.

4) makertron: Build G1 Makertron

5) sordros: Trade G1 Y1 Sordros

6) makertron: Trade G1 R1 Makertron

7) sordros: Build Y2 Sordros

8) makertron: Build G1 Makertron

9) sordros: Build G1 Sordros

10) makertron: Discover G1 Makertron B2 Catastrophe

11) sordros: Trade Y2 B2 Sordros

12) makertron: Build G1 Makertron

13) sordros: Trade G1 R1 Sordros

14) makertron: Build R1 Makertron

15) sordros: Build Y2 Sordros

16) makertron: Build R2 Makertron

17) sordros: Discover Y2 Sordros B3 Azurra

18) makertron: Move R1 Makertron Catastrophe

19) sordros: Build R2 Sordros

20) makertron: Build R2 Catastrophe

21) sordros: Sacrifice G3 Sordros
Build Y2 Azurra
Build Y2 Azurra
Build Y3 Sordros

22) makertron: Build R3 Makertron

23) sordros: Sacrifice B2 Sordros
Trade Y3 G3 Sordros
Trade R2 B2 Sordros

24) makertron: Trade R2 G2 Catastrophe

25) sordros: Build R2 Sordros

26) makertron: Move R2 Makertron Catastrophe

27) sordros: Trade Y2 R2 Azurra



16013)
Started: 2010.4.21, Ended: 2010.5.18
Participants: sordros (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) sordros: Homeworld B1 Y2 G3

3) TwoShort: Build G1 Twoshort

4) sordros: Build G1 Sordros

5) TwoShort: Trade G1 Y1 Twoshort

6) sordros: Trade G1 Y1 Sordros

7) TwoShort: Build G1 Twoshort

8) sordros: Build G1 Sordros

9) TwoShort: Trade G1 B1 Twoshort

10) sordros: Trade G1 R1 Sordros

11) TwoShort: Build B1 Twoshort

12) sordros: Build R1 Sordros

13) TwoShort: Discover B1 Twoshort G2 Grogar

14) sordros: Build R2 Sordros

15) TwoShort: Build B2 Grogar

16) sordros: Trade R2 B2 Sordros

17) TwoShort: Trade B2 Y2 Grogar

18) sordros: Build R2 Sordros

19) TwoShort: Sacrifice G3 Twoshort
Build B2 Grogar
Build B2 Grogar
Build B3 Twoshort

20) sordros: Discover R2 Sordros B3 Bluega

21) TwoShort: Sacrifice B2 Grogar
Trade B2 R2 Grogar
Trade B3 G3 Twoshort

22) sordros: Build G1 Sordros

23) TwoShort: Sacrifice G3 Twoshort
Build B2 Grogar
Build B2 Grogar
Build B3 Twoshort

24) sordros: Build G1 Sordros

25) TwoShort: Sacrifice B2 Grogar
Trade B2 Y2 Grogar
Trade B3 G3 Twoshort

26) sordros: Build B2 Sordros

27) TwoShort: Sacrifice G3 Twoshort
Build Y1 Grogar
Build Y3 Twoshort
Build B2 Grogar

28) sordros: Sacrifice G3 Sordros
Build R2 Bluega
Build R3 Bluega
Build R3 Sordros

29) TwoShort: Sacrifice Y2 Grogar
Move B1 Grogar Bluega
Move B1 Bluega Sordros
Catastrophe Sordros Blue

30) sordros: Sacrifice Y1 Sordros
Move R3 Bluega Grogar

31) TwoShort: Discover Y2 Grogar G3 Greenland

32) sordros: Attack B2 Grogar

33) TwoShort: Sacrifice Y3 Twoshort
Move Y2 Greenland Sordros
Move Y1 Twoshort Sordros
Discover Y1 Grogar B3 Deathstar

34) sordros: Sacrifice R2 Bluega
Attack Y1 Sordros
Attack Y2 Sordros

35) TwoShort: Move Y1 Deathstar Sordros
Catastrophe Sordros Yellow
	sordros: Thanks for the game!
	TwoShort: Good Game!



16158)
Variants: "Unrated"
Started: 2010.4.23, Ended: 2010.5.28
Participants: radio414 (S), makertron (N)
Winner: radio414

1) makertron: Homeworld R2 B3 G3

2) radio414: Homeworld B2 R1 G3

3) makertron: Build G1 Makertron

4) radio414: Build G1 Radio414

5) makertron: Trade G1 Y1 Makertron

6) radio414: Trade G1 Y1 Radio414

7) makertron: Build G1 Makertron

8) radio414: Build G1 Radio414

9) makertron: Discover G1 Makertron B1 Sol

10) radio414: Trade G1 R1 Radio414

11) makertron: Build G1 Makertron

12) radio414: Discover Y1 Radio414 B3 Luna

13) makertron: Trade G1 B1 Makertron

14) radio414: Build G1 Radio414

15) makertron: Move B1 Makertron Sol

16) radio414: Trade G1 Y1 Radio414

17) makertron: Build Y2 Makertron

18) radio414: Trade Y1 G1 Luna

19) makertron: Trade Y2 R2 Makertron

20) radio414: Move R1 Radio414 Luna

21) makertron: Move R2 Makertron Sol

22) radio414: Build Y1 Radio414

23) makertron: Build Y2 Makertron

24) radio414: Build Y2 Radio414

25) makertron: Move Y1 Makertron Sol

26) radio414: Move Y2 Radio414 Luna

27) makertron: Build Y2 Makertron

28) radio414: Build Y3 Luna

29) makertron: Build Y3 Sol

30) radio414: Trade Y1 G1 Radio414

31) makertron: Build G2 Sol

32) radio414: Build G2 Luna

33) makertron: Move G2 Sol Makertron

34) radio414: Trade G1 B1 Luna

35) makertron: Trade Y2 R2 Makertron

36) radio414: Move G1 Radio414 Luna

37) makertron: Build G1 Sol

38) radio414: Build G2 Radio414

39) makertron: Build G3 Makertron

40) radio414: Sacrifice Y2 Luna
Move G1 Luna Sol
Move G1 Sol Makertron
Catastrophe Makertron G

41) makertron: Trade R2 G2 Makertron

42) radio414: Trade G2 R2 Radio414

43) makertron: Move Y3 Sol Makertron

44) radio414: Move Y3 Luna Sol

45) makertron: Sacrifice G2 Makertron
Build R1 Sol
Build R3 Sol

46) radio414: Sacrifice Y1 Radio414
Move R1 Luna Sol
Catastrophe Sol Red

47) makertron: Trade Y2 G2 Makertron

48) radio414: Sacrifice R2 Radio414
Attack Y1N Sol
Attack B1N Sol

49) makertron: Sacrifice G1 Sol
Build Y1 Makertron

50) radio414: Trade B1 R1 Sol

51) makertron: Build G1 Makertron

52) radio414: Attack G1N Sol

53) makertron: Discover G1 Makertron B1 Radion

54) radio414: Move Y3 Sol Makertron

55) makertron: Attack Y3 Makertron

56) radio414: Move Y1 Sol Makertron
Catastrophe Makertron Y

57) makertron: Build G1 Makertron

58) radio414: Build G2 Radio414

59) makertron: Sacrifice G2 Makertron
Build G2 Radion
Build G3 Makertron

60) radio414: Trade B1 Y1 Luna

61) makertron: Trade G1 Y1 Makertron

62) radio414: Sacrifice G3 Radio414
Build G1 Luna
Build G3 Sol
Build G3 Radio414

63) makertron: Trade G1 Y1 Radion

64) radio414: Build Y2 Luna

65) makertron: Build Y2 Makertron

66) radio414: Trade G2 Y2 Radio414

67) makertron: Build Y3 Radion

68) radio414: Build Y3 Radio414

69) makertron: Trade Y1 G1 Radion

70) radio414: Trade Y3 B3 Radio414

71) makertron: Trade G1 R1 Radion

72) radio414: Trade G1 B1 Sol

73) makertron: Build R2 Radion

74) radio414: Build R2 Sol

75) makertron: Move R1 Radion Makertron

76) radio414: Trade R1 G1 Sol

77) makertron: Move R2 Radion Luna

78) radio414: Sacrifice R2 Sol
Attack R2N Luna
Pass

79) makertron: Move R1 Makertron Radion

80) radio414: Build B2 Radio414

81) makertron: Build R1 Radion

82) radio414: Move B3 Radio414 Luna

83) makertron: Discover R1 Radion Y3 Radio

84) radio414: Sacrifice Y2 Luna
Move G1 Sol Makertron
Move G3 Sol Makertron

85) makertron: Attack G3 Makertron

86) radio414: Build G1 Makertron
Catastrophe Makertron Green

87) makertron: Trade Y1 G1 Makertron

88) radio414: Sacrifice Y2 Radio414
Move B3 Luna Radion
Move B3 Radion Makertron



16171)
Variants: "Unrated"
Started: 2010.4.24, Ended: 2011.5.21
Participants: rootbier (S), cnyh (N)
Winner: rootbier



16046)
Started: 2010.4.25, Ended: 2010.7.18
Participants: rootbier (S), bootdisk (N)
Winner: rootbier

1) bootdisk: Homeworld B1 G2 Y3
	bootdisk: incidentally i forgot the rules seth... -.- gimme a few days. my semester has going into its third week and it's beginning to become stressy. don't expect me to think a lot about this :P

2) rootbier: Homeworld Y1 B3 G3

3) bootdisk: Discover Y3 Bootdisk R3 R31
	bootdisk: d'oh!
this happens if you don't read the rules again - after a long time. for a moment i wondered what kind of strange view-mode it is that hides my homeworld :P

uhm.. rematch?
	rootbier: oops there. it shouldn't actually let you finish yourself but i guess they didn't code suicide prevention into it. i have a standing challenge out there. you can use it to start a new game any time you like.



16195)
Variants: "Hard time"
Started: 2010.4.25, Ended: 2010.4.28
Participants: dethdukk (S), captncavern (N)
Winner: captncavern

1) captncavern: Homeworld B3 G1 R3



16199)
Started: 2010.4.26, Ended: 2010.6.17
Participants: logikal (S), makertron (N)
Winner: makertron

1) makertron: Homeworld R3 B2 G3

2) logikal: Homeworld R1 B2 G3

3) makertron: Build G1 Makertron

4) logikal: Build G1 Logikal

5) makertron: Trade G1 Y1 Makertron

6) logikal: Trade G1 Y1 Logikal

7) makertron: Build G1 Makertron

8) logikal: Build G1 Logikal

9) makertron: Discover G1 Makertron B1 Sol

10) logikal: Trade G1 B1 Logikal

11) makertron: Build G1 Sol

12) logikal: Discover B1 Logikal G3 L1

13) makertron: Trade G1 R1 Sol

14) logikal: Trade B1 R1 L1

15) makertron: Build R2 Sol

16) logikal: Build R2 L1

17) makertron: Trade R1 Y1 Sol

18) logikal: Build Y2 Logikal

19) makertron: Build Y2 Makertron

20) logikal: Move Y1 Logikal L1

21) makertron: Trade Y2 G2 Makertron

22) logikal: Build Y2 L1

23) makertron: Sacrifice G2 Makertron
Build Y2 Makertron
Build Y3 Sol

24) logikal: Build Y3 Logikal

25) makertron: Trade Y1 B1 Sol

26) logikal: Discover Y2 L1 G1 L2

27) makertron: Build R1 Sol

28) logikal: Move G3 Logikal L1

29) makertron: Discover R1 Sol R3 Los

30) logikal: Move Y2 L2 Los

31) makertron: Build G1 Makertron

32) logikal: Trade Y2 G2 Logikal

33) makertron: Build R2 Sol

34) logikal: Attack R1 Los

35) makertron: Trade R2 G2 Sol

36) logikal: Move R1 L1 Sol

37) makertron: Discover G1 Sol Y3 Beta

38) logikal: Move G2 Logikal Beta

39) makertron: Sacrifice G3 Makertron
Build G1 Beta
Build G2 Sol
Build G3 Makertron

40) logikal: Move G2 Beta Logikal

41) makertron: Attack R1 Sol

42) logikal: Sacrifice G3 L1
Build G3 Logikal
Build Y1 L1
Build Y2 Logikal

43) makertron: Move R1 Sol Beta

44) logikal: Discover G3 Logikal R3 L2

45) makertron: Discover G1 Beta B1 Qo'nos



16164)
Started: 2010.4.26, Ended: 2010.5.5
Participants: SilentTitan (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) SilentTitan: Homeworld B1 Y2 G3

3) TwoShort: Build G1 Twoshort

4) SilentTitan: Build G1 Silenttitan

5) TwoShort: Trade G1 Y1 Twoshort

6) SilentTitan: Discover G1 Silenttitan Y3 Charm

7) TwoShort: Build G1 Twoshort

8) SilentTitan: Build G1 Silenttitan

9) TwoShort: Build G2 Twoshort

10) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Charm
Build G2 Silenttitan
Build G3 Silenttitan

11) TwoShort: Discover G1 Twoshort Y2 Yolonda

12) SilentTitan: Discover G2 Silenttitan G3 Roses

13) TwoShort: Trade G2 Y2 Twoshort

14) SilentTitan: Trade G1 R1 Silenttitan

15) TwoShort: Build G1 Twoshort

16) SilentTitan: Discover G2 Charm B2 Fear

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build Y1 Twoshort
Build G3 Twoshort

18) SilentTitan: Sacrifice G2 Roses
Build G2 Charm
Build G3 Silenttitan

19) TwoShort: Discover Y1 Twoshort B2 Bluonia

20) SilentTitan: Trade G3 Y3 Silenttitan

21) TwoShort: Sacrifice G3 Twoshort
Build Y1 Bluonia
Build Y3 Twoshort
Build G3 Yolonda

22) SilentTitan: Sacrifice Y3 Silenttitan
Move G2 Charm Bluonia
Move G1 Charm Yolonda
Move G2 Fear Twoshort
	TwoShort: Just out of curiosity, have you played much Homeworlds off line?

23) TwoShort: Sacrifice G3 Yolonda
Build G3 Yolonda
Build G3 Twoshort
Build Y3 Bluonia
Catastrophe Twoshort Green
	SilentTitan: yes... but I'm not very good off line
	TwoShort: I'm not at all as good off-line either.  Others I've played are much better at coming up with a reasonably good move in 30 seconds or so, but I'm better at coming up with a better move if I think for a half hour, or maybe wait a day until I'm in the right mood; which doesn't work so well with an opponent sitting there :)

24) SilentTitan: Sacrifice G2 Bluonia
Build G1 Yolonda
Build G2 Silenttitan
Catastrophe Yolonda G

25) TwoShort: Trade Y3 G3 Twoshort

26) SilentTitan: Discover G2 Silenttitan Y3 Toast

27) TwoShort: Discover Y1 Bluonia B3 Boomer

28) SilentTitan: Build G1 Silenttitan

29) TwoShort: Build G1 Twoshort

30) SilentTitan: Discover G1 Silenttitan Y3 Jelly

31) TwoShort: Build Y2 Twoshort

32) SilentTitan: Build G1 Silenttitan

33) TwoShort: Trade Y2 R2 Twoshort

34) SilentTitan: Build G2 Jelly

35) TwoShort: Build Y2 Twoshort

36) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Jelly
Build G3 Toast
Build G3 Silenttitan

37) TwoShort: Trade Y2 B2 Twoshort

38) SilentTitan: Discover G2 Jelly Y2 Snake

39) TwoShort: Move B2 Twoshort Snake

40) SilentTitan: Move G2 Snake Twoshort

41) TwoShort: Attack G2 Twoshort

42) SilentTitan: Trade G3 R3 Silenttitan

43) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build B1 Snake
Build B1 Snake

44) SilentTitan: Move G2 Jelly Snake

45) TwoShort: Sacrifice Y2 Twoshort
Discover G2 Twoshort Y2 Yolonda
Discover B1 Snake G3 Gonzo

46) SilentTitan: Discover R1 Silenttitan B3 Yrua

47) TwoShort: Sacrifice G2 Yolonda
Build Y2 Boomer
Build B2 Gonzo

48) SilentTitan: Sacrifice G3 Toast
Build G2 Silenttitan
Build G3 Snake
Build R1 Yrua

49) TwoShort: Sacrifice Y3 Bluonia
Move B2 Snake Boomer
Move B2 Boomer Silenttitan
Discover Y1 Bluonia R3 Rover

50) SilentTitan: Move G3 Snake Twoshort

51) TwoShort: Sacrifice R2 Twoshort
Attack G3 Twoshort
Attack G2 Silenttitan

52) SilentTitan: Move G2 Snake Twoshort
Catastrophe Twoshort G

53) TwoShort: Sacrifice G2 Silenttitan
Build B2 Silenttitan
Build Y3 Twoshort

54) SilentTitan: Sacrifice G2 Toast
Build R2 Yrua
Build R2 Silenttitan
	SilentTitan: oh... well my mistake. I missed calculating that you'd be able to take the g2 in my homeworld


55) TwoShort: Sacrifice Y3 Twoshort
Move Y1 Boomer Silenttitan
Move Y2 Boomer Silenttitan
Move Y1 Rover Silenttitan
Catastrophe Silenttitan Yellow
	TwoShort: I was glad when I spotted it, since I had missed the threat to my 3 pointer :)

56) SilentTitan: Sacrifice R2 Silenttitan
Attack B2N Silenttitan
Attack B2N Silenttitan

57) TwoShort: Move B1 Snake Silenttitan
Catastrophe Silenttitan Blue



16153)
Variants: "Hard time"
Started: 2010.4.26, Ended: 2010.6.12
Participants: dlwillson (S), radio414 (N)
Winner: dlwillson

1) radio414: Homeworld B2 R1 G3

2) dlwillson: H B3 Y2 G3

3) radio414: Build G1 Radio414

4) dlwillson: B G1 Dlwillson

5) radio414: Trade G1 Y1 Radio414

6) dlwillson: Build G1 Dlwillson

7) radio414: Build Y1 Radio414

8) dlwillson: Discover G1 Dlwillson B1 Funkytown

9) radio414: Trade Y1 B1 Radio414

10) dlwillson: Trade G1 Y1 Dlwillson

11) radio414: Discover B1 Radio414 G3 Lonelystreet

12) dlwillson: Build G1 Dlwillson

13) radio414: Build B1 Lonelystreet

14) dlwillson: Trade G1 R1 Dlwillson

15) radio414: Build B2 Lonelystreet

16) dlwillson: B G1 Dlwillson

17) radio414: Trade B2 R2 Lonelystreet

18) dlwillson: B G1 Dlwillson

19) radio414: Build B2 Lonelystreet

20) dlwillson: B G2 Funkytown

21) radio414: Build G2 Radio414

22) dlwillson: T G2 B2 Funkytown

23) radio414: Trade B1 Y1 Lonelystreet

24) dlwillson: Move Y1 Dlwillson Funkytown

25) radio414: Move G2 Radio414 Lonelystreet

26) dlwillson: Discover G1 Dlwillson B1 Electric_avenue

27) radio414: Build Y2 Radio414

28) dlwillson: Discover B2 Funkytown G2 Detroit

29) radio414: Move R2 Lonelystreet Funkytown

30) dlwillson: Sacrifice Y1 Funkytown
Discover G1 Funkytown B3 Heartbrk_hotel

31) radio414: Build G2 Radio414

32) dlwillson: Build B3 Detroit

33) radio414: Sacrifice Y2 Radio414
Move B1 Lonelystreet Detroit
Move B2 Lonelystreet Detroit
Catastrophe Detroit B

34) dlwillson: Sacrifice G3 Dlwillson
Build G2 Heartbrk_hotel
Build G3 Dlwillson
Build R1 Dlwillson

35) radio414: Trade G2 R2 Radio414

36) dlwillson: Move R1 Dlwillson Electric_avenue

37) radio414: Build G2 Radio414
	dlwillson: You're doing great! I'll have to think a minute on this one, and put in a move tonight.
	radio414: Thanks. I sometimes play with one of my friends who taught me this game. He's the player to beat.

38) dlwillson:
T G2 Y2 Heartbrk_hotel
	dlwillson: I need a couple more moves to get caught up, but that'll have to do for now. How long have you been playing? How many games? For me 2 years, and about a dozen or so... Maybe 2 dozen at most.

39) radio414: Move G2 Lonelystreet Funkytown
	radio414: I usually play on friday if i have free time. I started last year.

40) dlwillson: B G2 Electric_avenue

41) radio414: Trade R2 Y2 Radio414

42) dlwillson: T G1 Y1 Electric_avenue

43) radio414: Build Y3 Lonelystreet

44) dlwillson: Sacrifice G3 Dlwillson
Build G1 Heartbrk_hotel
Build G3 Dlwillson
Build Y3 Electric_avenue

45) radio414: Trade Y2 R2 Radio414

46) dlwillson: Sacrifice Y3 Electric_avenue
Move G1 Heartbrk_hotel Radio414
Move G1 Heartbrk_hotel Radio414
Move R1 Electric_avenue Heartbrk_hotel
Catastrophe Radio414 G

47) radio414: Move Y3 Lonelystreet Radio414

48) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Heartbrk_hotel
Build R2 Heartbrk_hotel
Build R3 Dlwillson

49) radio414: Trade R2 G2 Radio414

50) dlwillson: Build Y3 Electric_avenue

51) radio414: Build Y3 Lonelystreet

52) dlwillson: Sacrifice Y3 Electric_avenue
Move Y2 Heartbrk_hotel Radio414
Move R2 Heartbrk_hotel Radio414
Move G2 Electric_avenue Heartbrk_hotel

53) radio414: Sacrifice R2 Funkytown
Attack R2S Radio414
Attack Y2S Radio414

54) dlwillson: Move Y2 Heartbrk_hotel Radio414
Catastrophe Radio414 Y

55) radio414: Move Y3 Lonelystreet Radio414

56) dlwillson: Move R1 Dlwillson Electric_avenue

57) radio414: Build G1 Funkytown

58) dlwillson: Build G1 Heartbrk_hotel

59) radio414: Build G3 Radio414

60) dlwillson: Build G3 Dlwillson

61) radio414: Build Y1 Radio414

62) dlwillson: Sacrifice G3 Dlwillson
Build G3 Dlwillson
Build Y2 Electric_avenue
Build R2 Heartbrk_hotel

63) radio414: Trade R2 B2 Radio414

64) dlwillson: Sacrifice Y2 Electric_avenue
Move R1 Heartbrk_hotel Radio414
Move R2 Heartbrk_hotel Radio414

65) radio414: Build Y2 Lonelystreet

66) dlwillson: Sacrifice G3 Dlwillson
Build R2 Radio414
Build R2 Electric_avenue
Build R3 Dlwillson
Catastrophe Radio414 Red

67) radio414: Trade Y1 R1 Radio414

68) dlwillson: Sacrifice G2 Heartbrk_hotel
Build G2 Dlwillson
Build G3 Heartbrk_hotel

69) radio414: Sacrifice Y2 Lonelystreet
Move G2 Funkytown Heartbrk_hotel
Move G1 Funkytown Heartbrk_hotel
Catastrophe Heartbrk_hotel G

70) dlwillson: Trade R2 B2 Electric_avenue

71) radio414: Build Y1 Lonelystreet

72) dlwillson: T R3 Y3 Dlwillson

73) radio414: Move G3 Radio414 Electric_avenue

74) dlwillson: Sacrifice Y3 Dlwillson
Move R1 Electric_avenue Radio414
Move B2 Electric_avenue Radio414
Move Y1 Electric_avenue Radio414

	dlwillson: Checkmate?


16197)
Variants: "Hard time"
Started: 2010.4.26, Ended: 2010.5.14
Participants: Uglyfoot (S), rootbier (N)
Winner: Uglyfoot

1) rootbier: Homeworld B1 Y3 G3

2) Uglyfoot: Homeworld Y3 B2 G3

3) rootbier: Build G1 Rootbier
	rootbier: good luck mate.

4) Uglyfoot: Build G1 Uglyfoot

5) rootbier: Trade G1 R1 Rootbier
	Uglyfoot: thanks!  have a good game.

6) Uglyfoot: Build G1 Uglyfoot

7) rootbier: Build R1 Rootbier

8) Uglyfoot: Trade G1 Y1 Uglyfoot

9) rootbier: Discover R1 Rootbier B2 Ruination

10) Uglyfoot: Discover Y1 Uglyfoot R1 Moat

11) rootbier: Build R2 Rootbier

12) Uglyfoot: Build G1 Uglyfoot

13) rootbier: Build R2 Rootbier

14) Uglyfoot: Move G1 Uglyfoot Moat

15) rootbier: Move R2 Rootbier Ruination

16) Uglyfoot: Build G1 Moat

17) rootbier: Trade R1 Y1 Ruination

18) Uglyfoot: Build G2 Moat

19) rootbier: Trade R2 G2 Ruination

20) Uglyfoot: Discover G2 Moat Y2 Hub

21) rootbier: Discover G2 Ruination Y1 Falter

22) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Moat
Build G3 Uglyfoot
Build G3 Hub

23) rootbier: Trade R2 Y2 Rootbier
	rootbier: i been sleepin' something fierce here - nice fleet you've got there :)

24) Uglyfoot: Trade G1 B1 Uglyfoot

25) rootbier: Sacrifice G3 Rootbier
Build Y2 Ruination
Build Y3 Rootbier
Build R1 Rootbier

26) Uglyfoot: Move G1 Moat Uglyfoot
	rootbier: i swear my brain is on sideways right now - i somehow convinced myself i didn't see Ruination

27) rootbier: Move Y3 Rootbier Hub

28) Uglyfoot: Move G3 Hub Rootbier

29) rootbier: Move Y3 Hub Rootbier

30) Uglyfoot: Move Y1 Moat Hub

31) rootbier: Trade Y3 G3 Rootbier

32) Uglyfoot: Trade G3 Y3 Rootbier

33) rootbier: Trade Y2 B2 Rootbier

34) Uglyfoot: Move Y3 Rootbier Ruination

35) rootbier: Sacrifice G2 Falter
Build R2 Rootbier
Build Y1 Ruination
Catastrophe Ruination Y
	rootbier: i underestimated you based on your record. you're tricksy :) -- it's fun


36) Uglyfoot: Move B1 Uglyfoot Moat
	rootbier: i am trying to do the following

sacrifice g2 falter
build r2 rootbier
build y2 ruination
catastrophe ruination y

and am getting an error message telling me to choose the smallest Y piece... which in this case is indeed y2... am i confused or is there a problem here?
	Uglyfoot: I agree that you should be able to do that.  (Even if I don't like it.  ;> )
	Uglyfoot: Wait.  When you sacrifice a ruination the star (Y1) becomes available and you should build with it before triggering the catastrophe.
	Uglyfoot: 
	Uglyfoot: not ruination.  when you sacrifice at falter...
	rootbier: right right - i am pulling an all-nighter and space space out - thanks
cancelled the page that is...

37) rootbier: Move R2 Rootbier Hub

38) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Hub
Build G2 Hub
Build G3 Uglyfoot

39) rootbier: Attack G2 Hub

40) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build Y1 Hub
Build Y1 Hub
Catastrophe Hub Y

41) rootbier: Discover B2 Rootbier G2 Flax

42) Uglyfoot: Trade G2 Y2 Moat
	rootbier: wow. drastic. :)

43) rootbier: Discover R1 Rootbier B2 Bell

44) Uglyfoot: Build G1 Moat

45) rootbier: Build G2 Rootbier

46) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Moat

47) rootbier: Trade B2 Y2 Flax

48) Uglyfoot: Trade G2 R2 Uglyfoot

49) rootbier: Sacrifice Y2 Flax
Discover G2 Rootbier G2 Snap
Move G2 Snap Moat
Catastrophe Moat G

50) Uglyfoot: Move G1 Uglyfoot Moat

51) rootbier: Sacrifice G3 Rootbier
Build R2 Rootbier
Build R2 Bell
Build R3 Rootbier
	Uglyfoot: Oh Snap!

52) Uglyfoot: Move R2 Uglyfoot Moat

53) rootbier: Trade R3 G3 Rootbier

54) Uglyfoot: Build R3 Moat

55) rootbier: Trade R2 Y2 Bell

56) Uglyfoot: Move R3 Moat Bell

57) rootbier: Sacrifice Y2 Bell
Discover R1 Bell Y1 Offramp
Discover R1 Rootbier B2 Opine

58) Uglyfoot: Build G1 Uglyfoot

59) rootbier: Sacrifice G3 Rootbier
Build R2 Offramp
Build R3 Opine
Build R3 Rootbier

60) Uglyfoot: Move R2 Moat Bell

61) rootbier: Trade R2 G2 Rootbier

62) Uglyfoot: Move G1 Moat Bell

63) rootbier: Trade R3 G3 Opine

64) Uglyfoot: Trade R3 B3 Bell

65) rootbier: Trade R3 Y3 Rootbier

66) Uglyfoot: Build R2 Bell

67) rootbier: Sacrifice Y3 Rootbier
Move G3 Opine Moat
Move R1 Opine Rootbier
Move R2 Offramp Bell

68) Uglyfoot: Sacrifice Y2 Moat
Move B3 Bell Rootbier
Discover R2 Bell Y1 Fort

69) rootbier: Sacrifice G3 Moat
Build R3 Rootbier
Build R3 Rootbier
Build G1 Rootbier

70) Uglyfoot: Sacrifice R2 Bell
Attack R3 Rootbier
Attack R3 Rootbier
	rootbier: r2 not r2 :)

71) rootbier: Build G2 Rootbier

72) Uglyfoot: Sacrifice R3 Rootbier
Attack R1 Rootbier
Attack G2 Rootbier
Attack G2 Rootbier

73) rootbier: Build G2 Rootbier

74) Uglyfoot: Build G3 Bell
Catastrophe Rootbier G



15901)
Variants: "Hard time"
Started: 2010.4.27, Ended: 2010.5.6
Participants: agentofchaos (S), shmil1 (N)
Winner: shmil1

1) shmil1: Homeworld B1 Y2 G3

2) agentofchaos:
Homeworld B1 R3 G3
	agentofchaos: h b1 r3 g3

3) shmil1: Build G1 Shmil1
	agentofchaos: Hi enjoy the game. 

4) agentofchaos: Build G1 Agentofchaos

5) shmil1: Trade G1 R1 Shmil1

6) agentofchaos: Trade G1 R1 Agentofchaos

7) shmil1: Build G1 Shmil1



16215)
Variants: "Hard time"
Started: 2010.4.27, Ended: 2010.5.16
Participants: radio414 (S), shmil1 (N)
Winner: radio414

1) shmil1: Homeworld R1 B2 G3

2) radio414: Homeworld B3 R1 G3

3) shmil1: Build G1 Shmil1

4) radio414: Build G1 Radio414

5) shmil1: Trade G1 Y1 Shmil1

6) radio414: Trade G1 Y1 Radio414

7) shmil1: Build G1 Shmil1

8) radio414: Build G1 Radio414

9) shmil1: Trade G1 B1 Shmil1

10) radio414: Trade G1 B1 Radio414

11) shmil1: Build G1 Shmil1

12) radio414: Build G1 Radio414

13) shmil1: Discover G1 Shmil1 B3 Modry

14) radio414: Discover B1 Radio414 G2 Jaroslav

15) shmil1: Move B1 Shmil1 Modry

16) radio414: Move G1 Radio414 Jaroslav

17) shmil1: Move Y1 Shmil1 Modry

18) radio414: Build B1 Jaroslav

19) shmil1: Build B2 Modry

20) radio414: Sacrifice Y1 Radio414
Move B1 Jaroslav Modry
Catastrophe Modry B

21) shmil1: Build G1 Shmil1

22) radio414: Build B1 Jaroslav

23) shmil1: Trade G1 Y1 Shmil1

24) radio414: Build G1 Radio414

25) shmil1: Build Y1 Shmil1

26) radio414: Trade G1 B1 Radio414

27) shmil1: Build G1 Shmil1

28) radio414: Trade B1 R1 Jaroslav

29) shmil1: Discover G1 Shmil1 B3 Modradobra

30) radio414: Build R2 Jaroslav

31) shmil1: Move Y1 Shmil1 Modradobra

32) radio414: Trade R1 Y1 Jaroslav

33) shmil1: Build Y2 Modradobra

34) radio414: Build Y2 Jaroslav

35) shmil1: Trade Y1 B1 Modradobra

36) radio414: Move R2 Jaroslav Modradobra

37) shmil1: Sacrifice Y2 Modradobra
Move B1 Modradobra Jaroslav
Move G1 Modradobra Jaroslav

38) radio414: Trade B1 R1 Jaroslav

39) shmil1: Build G1 Jaroslav
Catastrophe Jaroslav Green

40) radio414: Build G1 Radio414

41) shmil1: Build G1 Shmil1

42) radio414: Trade B1 Y1 Radio414

43) shmil1: Discover G1 Shmil1 Y3 Zluta

44) radio414: Trade G1 B1 Radio414

45) shmil1: Discover G1 Zluta B2 Modra2

46) radio414: Move B1 Radio414 Modra2

47) shmil1: Build G1 Modra2

48) radio414: Sacrifice R2 Modradobra
Attack G1N Modra2
Attack G1N Modra2

49) shmil1: Build G1 Shmil1

50) radio414: Build G2 Radio414

51) shmil1: Discover G1 Shmil1 Y3 Zluty

52) radio414: Trade G1 R1 Modra2

53) shmil1: Discover G1 Zluty B2 Modry

54) radio414: Build R2 Modra2

55) shmil1: Build G1 Modry

56) radio414: Trade G2 Y2 Radio414

57) shmil1: Trade G1 Y1 Modry

58) radio414: Build B1 Modra2

59) shmil1: Build Y2 Shmil1

60) radio414: Move Y1 Radio414 Modry

61) shmil1: Sacrifice G3 Shmil1
Build Y2 Modry
Build Y3 Shmil1
Build G1 Modry

62) radio414: Sacrifice Y2 Radio414
Discover Y1 Modry R3 Goodgame
Move Y1 Goodgame Shmil1
Catastrophe Shmil1 Yellow



16184)
Started: 2010.4.29, Ended: 2010.5.2
Participants: rootbier (S), Teo (N)
Winner: rootbier

1) Teo: Homeworld G1 B2 Y3

2) rootbier: Homeworld Y3 B1 G3
	rootbier: Do you think you understand the game? We could do a round in person at some point - that would make it all clearer :) Thanks so much for coming last night.

3) Teo: Build Y1 Teo
	Teo: I'll read the rules a second time and try to concentrate myself...

4) rootbier: Build G1 Rootbier

5) Teo: Build Y1 Teo

6) rootbier: Trade G1 R1 Rootbier
	rootbier: be careful about building too many of one color. catastrophes can be triggered by anyone - even if they haven't had a part in shaping the situation. 

not a big deal now because i can't easily a yellow ship in there to mess with you. not yet :)

7) Teo: Trade Y1 G1 Teo

8) rootbier: Discover R1 Rootbier G2 Bagatelle

9) Teo: Trade Y1 R1 Teo

10) rootbier: Build G1 Rootbier

11) Teo: Discover R1 Teo Y3 Frisbee

12) rootbier: Trade G1 R1 Rootbier

13) Teo: Move G1 Teo Frisbee

14) rootbier: Build R2 Rootbier

15) Teo: Build R2 Frisbee

16) rootbier: Trade R2 Y2 Rootbier

17) Teo: Move R2 Frisbee Bagatelle

18) rootbier: Build R2 Bagatelle

19) Teo: Build R2 Frisbee

20) rootbier: Sacrifice G3 Rootbier
Build R3 Rootbier
Build R3 Bagatelle
Pass
Catastrophe Bagatelle Red

21) Teo: Build Y1 Teo

22) rootbier: Trade R3 G3 Rootbier

23) Teo: Trade Y1 B1 Teo

24) rootbier: Build Y1 Rootbier

25) Teo: Move B1 Teo Frisbee

26) rootbier: Sacrifice Y2 Rootbier
Discover R1 Rootbier G2 Whateva
Discover R1 Whateva B3 Pratfall

27) Teo: Discover R2 Frisbee Y2 Game

28) rootbier: Trade R1 Y1 Pratfall

29) Teo: Move R2 Game Pratfall

30) rootbier: Move Y1 Pratfall Teo

31) Teo: Trade Y3 R3 Teo

32) rootbier: Discover Y1 Teo G3 Pistachio

33) Teo: Trade R2 Y2 Pratfall

34) rootbier: Trade Y1 R1 Rootbier

35) Teo: Discover Y2 Pratfall G2 Intership

36) rootbier: Build Y1 Pistachio

37) Teo: Move R1 Frisbee Intership

38) rootbier: Discover Y1 Pistachio R2 Knuckles

39) Teo: Move B1 Frisbee Intership

40) rootbier: Trade G3 R3 Rootbier

41) Teo: Move G1 Frisbee Teo

42) rootbier: Move R3 Rootbier Intership

43) Teo: Move Y2 Intership Rootbier

44) rootbier: Sacrifice Y1 Pistachio
Move R3 Intership Rootbier

45) Teo: Move Y2 Rootbier Knuckles

46) rootbier: Move Y1 Knuckles Rootbier

47) Teo: Build R1 Intership

48) rootbier: Trade R3 G3 Rootbier

49) Teo: Build R2 Teo

50) rootbier: Discover R1 Rootbier Y2 Resignation

51) Teo: Trade R1 Y1 Intership

52) rootbier: Trade Y1 R1 Rootbier

53) Teo: Trade R3 Y3 Teo

54) rootbier: Build G1 Rootbier

55) Teo: Build Y1 Intership

56) rootbier: Sacrifice G3 Rootbier
Build G2 Rootbier
Build R2 Resignation
Build R3 Rootbier

57) Teo: Sacrifice Y3 Teo
Move Y1 Intership Rootbier
Move Y1 Intership Rootbier
Move Y2 Knuckles Rootbier
Catastrophe Rootbier Y

58) rootbier: Trade G1 Y1 Rootbier

59) Teo: Build R2 Intership

60) rootbier: Trade R1 B1 Rootbier

61) Teo: Trade G1 Y1 Teo

62) rootbier: Move R3 Rootbier Intership

63) Teo: Build R1 Intership
Catastrophe Intership R

64) rootbier: Discover R2 Resignation Y3 Focus

65) Teo: Build B2 Intership

66) rootbier: Move R2 Focus Intership

67) Teo: Sacrifice Y1 Teo
Move B2 Intership Rootbier

68) rootbier: Sacrifice R1 Resignation
Attack B2 Rootbier

69) Teo: Build B2 Intership

70) rootbier: Trade B1 R1 Rootbier

71) Teo: Build R1 Teo

72) rootbier: Attack B2 Intership

73) Teo: Build B1 Intership

74) rootbier: Build B3 Rootbier

75) Teo: Trade R1 Y1 Teo

76) rootbier: Sacrifice R2 Intership
Attack B1 Intership
Attack B1 Intership

77) Teo: Build R1 Teo

78) rootbier: Sacrifice B2 Rootbier
Trade B2 Y2 Intership
Trade B3 G3 Rootbier

79) Teo: Build Y1 Teo

80) rootbier: Sacrifice G3 Rootbier
Build Y2 Intership
Build Y2 Intership
Build Y3 Rootbier

81) Teo: Discover Y1 Teo G3 Upside

82) rootbier: Trade Y2 R2 Intership

83) Teo: Trade R2 B2 Teo

84) rootbier: Discover Y2 Intership R3 Bonus

85) Teo: Build Y2 Teo

86) rootbier: Sacrifice Y3 Rootbier
Move G2 Rootbier Bonus
Move G2 Bonus Teo
Move Y2 Bonus Teo

87) Teo: Attack G2 Teo

88) rootbier: Sacrifice R2 Intership
Attack R1 Teo
Attack G2 Teo

89) Teo: Sacrifice Y2 Teo
Move B2 Teo Upside
Move B2 Upside Rootbier

90) rootbier: Attack Y1 Teo



16239)
Started: 2010.4.30, Ended: 2010.5.14
Participants: ringebri (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld Y1 G2 B3
	ringebri: I guess it's your first move.  I looked at an archive game, step by step.  Still not sure exactly how to do this but will give it a try.

2) ringebri: Homeworld G1 B2 Y3
	MagicJohn: Here goes....
	MagicJohn: Here goes....  Isn't krepy going to try it?
	ringebri: Forgot to ask him.  He's staying at Wendy's until Saturday.

3) MagicJohn: Build B1 Magicjohn (n)
	ringebri: Certainly is a colorful game!

4) ringebri: Build Y1 Ringebri
	MagicJohn: Finally figured out how to construct a ship!!!! It was "build b1 MagicJohn (N)
	MagicJohn: Forgot the end quotes...

5) MagicJohn: Build B1 Magicjohn (n)
	ringebri: my command was "build y1 ringebri".  No seating designation.

6) ringebri: Build Y1 Ringebri
	ringebri: I'll try to play this one from home. Cell play not good.

7) MagicJohn: Build B1 Magicjohn

8) ringebri: Build Y2 Ringebri

9) MagicJohn: Trade B1 G1 Magicjohn

10) ringebri: Build Y2 Ringebri

11) MagicJohn: Build G1 Magicjohn

12) ringebri: Trade Y2 B2 Ringebri

13) MagicJohn: Build G2 Magicjohn

14) ringebri: Build B1 Ringebri

15) MagicJohn: Discover G1 Magicjohn R3 Patches1

16) ringebri: Discover Y2 Ringebri G3 Buffy1

17) MagicJohn: Build G2 Patches1
	ringebri: We both discovered dog stars!
	MagicJohn: Canis you ever be Sirius?

18) ringebri: Build Y2 Buffy1

19) MagicJohn: Build G3 Patches1

20) ringebri: Build Y2 Buffy1

21) MagicJohn: Move B1 Magicjohn Patches1

22) ringebri: Build Y3 Ringebri
	MagicJohn: Have you heard of the MIM? It's a new (as in just constructed)250 million dollar - 190,000-square foot Musical Instrument Museum. It's acquired 12,000 instruments so far. Thought you might be interested.

23) MagicJohn: Trade G1 R1 Patches1
Catastrophe Ringebri Y
	ringebri: Sounds interesting. Where is it? What an orchestra that would be!

24) ringebri: Trade B1 Y1 Ringebri
	MagicJohn: 
	MagicJohn: Global warming perhaps? : }
	ringebri: So. A catastrophe wiped out all my beautiful yellow ships! How dasterdly! And you've got an attack ship ready to pounce. I'll look at this later at home.

25) MagicJohn: Trade G1 Y1 Magicjohn

26) ringebri: Build Y3 Ringebri

27) MagicJohn: Move Y1 Magicjohn Buffy1
Catastrophe Buffy1 Y

28) ringebri: Trade B2 R2 Ringebri
	MagicJohn: Maybe if you monitored your CO2 emissions........
	ringebri: Woof!  Wimper! I didn't see that coming.


29) MagicJohn: Trade G3 R3 Patches1

30) ringebri: Move R2 Ringebri Patches1 Catastrophe Patches1 Red

31) MagicJohn: Attack R2 Patches1

32) ringebri: Trade Y3 R3 Ringebri
Catastrophe Patches1 Red

33) MagicJohn: Build G1 Magicjohn
	ringebri: I'm so sorry! I'll call the president.  Maybe he'll send in the national guard to help out!
	MagicJohn: You killed Patches. The President Hell,  I'm calling the ASPCA. 

34) ringebri: Trade Y1 G1 Ringebri

35) MagicJohn: Discover G1 Magicjohn B3 Patches2

36) ringebri: Build G2 Ringebri

37) MagicJohn: Trade G2 Y2 Magicjohn

38) ringebri: Build R1 Ringebri

39) MagicJohn: Move Y2 Magicjohn Patches2

40) ringebri: T G2 Y2 Ringebri D Y2 Ringebri Y3 Buffy2

41) MagicJohn: Trade B3 R3 Magicjohn


42) ringebri: Discover Y2 Ringebri Y3 Buffy2

43) MagicJohn: Trade Y2 R2 Patches2

44) ringebri: Trade R3 Y3 Ringebri

45) MagicJohn: Move R3 Magicjohn Buffy2

46) ringebri: Build G2 Ringebri

47) MagicJohn: Attack Y2 Buffy2

48) ringebri: Build R1 Ringebri

49) MagicJohn: Build B1 Magicjohn

50) ringebri: Build Y1 Ringebri

51) MagicJohn: Trade B1 Y1 Magicjohn

52) ringebri: Move G1 Ringebri Buffy2

53) MagicJohn: Attack G1 Buffy2
	ringebri: uh-oh!  bad guys here!

54) ringebri: Trade G2 R2 Ringebri
	MagicJohn: Not bad guys, simply superior beings.

55) MagicJohn: Build R1 Buffy2
	ringebri: Beings with big heads, you mean.

56) ringebri: Move R2 Ringebri Patches2
	MagicJohn: ET had a big head and he was cute!

57) MagicJohn: Attack R2 Patches2
	ringebri: "Where no man has gone before!" "I see a patchesite!"

58) ringebri: Build Y2 Ringebri

59) MagicJohn: Move Y2 Buffy2 Ringebri
Catastrophe Ringebri Y

60) ringebri: Trade R1 Y1 Ringebri
	ringebri: Aaaaaahhh!  the suffering and pain!

61) MagicJohn: Move R3 Buffy2 Ringebri
	MagicJohn: Remember, you are responsible for an entire civilization..... no matter how backwards they may be.

62) ringebri: Construct R1 Ringebri

63) MagicJohn: Attack Y1 Ringebri
	ringebri: My people are very apprehensive. Doom is in the atmosphere.

64) ringebri: Construct R2 Ringebri

65) MagicJohn: Build R3 Buffy2
Catastrophe Ringebri Red
	ringebri: Hmmm. We're dead. Ok.



15947)
Started: 2010.5.3, Ended: 2010.5.4
Participants: jims (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 R2 G3 *

	ts52: Have a good game.


16258)
Variants: "Hard time"
Started: 2010.5.3, Ended: 2010.6.22
Participants: SilentTitan (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3

2) SilentTitan: Homeworld B1 R3 G3

3) agentofchaos: Build G1 Agentofchaos

4) SilentTitan: Build G1 Silenttitan

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) SilentTitan: Trade G1 Y1 Silenttitan

7) agentofchaos: Build G1 Agentofchaos

8) SilentTitan: Build G1 Silenttitan

9) agentofchaos: Trade G1 R1 Agentofchaos

10) SilentTitan: Discover G1 Silenttitan Y2 Sol

11) agentofchaos: Discover Y1 Agentofchaos G3 Invictus

12) SilentTitan: Discover G1 Sol Y3 Sole

13) agentofchaos: Build G1 Agentofchaos

14) SilentTitan: Build G1 Sole

15) agentofchaos: Trade G1 Y1 Agentofchaos

16) SilentTitan: Build Y2 Silenttitan

17) agentofchaos: Build Y2 Invictus

18) SilentTitan: Discover Y1 Silenttitan G2 Soul

19) agentofchaos: Trade Y1 B1 Agentofchaos

20) SilentTitan: Build G1 Silenttitan

21) agentofchaos: Build B2 Agentofchaos

22) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Sole Agentofchaos
Move G1 Sole Agentofchaos

23) agentofchaos: Trade G3 Y3 Agentofchaos

24) SilentTitan: Trade G1 R1 Agentofchaos

25) agentofchaos: Move R1 Agentofchaos Invictus

26) SilentTitan: Build R1 Agentofchaos

27) agentofchaos: Attack G1 Agentofchaos

28) SilentTitan: Trade R1 Y1 Agentofchaos

29) agentofchaos: Attack Y1 Agentofchaos

30) SilentTitan: Trade G3 Y3 Silenttitan

31) agentofchaos: Attack R1 Agentofchaos

32) SilentTitan: Build Y2 Silenttitan

33) agentofchaos: Trade B2 G2 Agentofchaos

34) SilentTitan: Trade Y2 B2 Silenttitan

35) agentofchaos: Discover G2 Agentofchaos Y3 Plasmore

36) SilentTitan: Build Y2 Silenttitan

37) agentofchaos: Build R1 Agentofchaos

38) SilentTitan: Build G1 Silenttitan

39) agentofchaos: Build R2 Invictus

40) SilentTitan: Discover G1 Silenttitan Y2 Flash

41) agentofchaos: Build B2 Agentofchaos

42) SilentTitan: Sacrifice Y2 Silenttitan
Discover G1 Flash B3 Sump
Move Y1 Soul Sump

43) agentofchaos: Move B2 Agentofchaos Sump

	SilentTitan: good game.. Thanks


16250)
Variants: "Hard time"
Started: 2010.5.4, Ended: 2010.5.14
Participants: captncavern (S), jonaskoelker (N)
Winner: captncavern

1) jonaskoelker: Homeworld B1 R2 G3

2) captncavern: Homeworld G3 B1 Y3

3) jonaskoelker: Build G1 Jonaskoelker

4) captncavern: Build Y1 Captncavern

	jonaskoelker: I forgot to play AGAIN? :(  Seems to happen a lot these days.  I'm sorry.

	captncavern: Well, you lost it, so it doesn't really matter to me ;)
If you care about the ratings, however, maybe Aaron can cancel this game...
	jonaskoelker: Nah, the ratings don't matter (that) much; it's more the fact that I can't seem to stick to playing homeworlds.  No need to cancel the game.  And why aren't you disappointed---did you play to win and not to play? :O ;-)
	captncavern: Oh... well, If you look at my rating for Homeworlds, you'll see that I'm not playing this game for the ratings ;) I love the game, but I really can't get my head around it.

I'm actually (a little) more serious about Ordo, with the tournament going on right now and a chance to get the game from Nestorgames :)


16095)
Variants: "Hard time"
Started: 2010.5.6, Ended: 2010.5.13
Participants: Jesse (S), rootbier (N)
Winner: Jesse

1) rootbier: Homeworld B2 Y1 G3

2) Jesse: Homeworld R1 B3 G3
	rootbier: Impressive record.
I'll try to give you some challenge.

3) rootbier: Build G1 Rootbier
	Jesse: Thanks.  Have a good game.

4) Jesse: Build G1 Jesse

5) rootbier: Trade G1 R1 Rootbier

6) Jesse: Trade G1 Y1 Jesse

7) rootbier: Build G1 Rootbier

8) Jesse: Build Y1 Jesse

9) rootbier: D G1 Rootbier B3 Bagatelle

10) Jesse: Build Y2 Jesse

11) rootbier: Build R1 Rootbier

12) Jesse: Discover Y2 Jesse B2 Eggplanet

13) rootbier: Build R2 Rootbier

14) Jesse: Sacrifice G3 Jesse
Build Y2 Eggplanet
Build Y2 Eggplanet
Build Y3 Jesse

15) rootbier: Discover R2 Rootbier Y3 Aubergine

16) Jesse: Trade Y2 R2 Eggplanet

17) rootbier: Discover R1 Rootbier Y3 Mainfest
	rootbier: that's the second time i've moved when i should have traded for yellow. color control! :)

18) Jesse: Trade Y3 G3 Jesse

19) rootbier: Sacrifice G3 Rootbier
Build R2 Aubergine
Build R3 Mainfest
Build R3 Rootbier

20) Jesse: Sacrifice G3 Jesse
Build Y2 Eggplanet
Build Y3 Jesse
Build R3 Eggplanet
	Jesse: Yellow freeze out is especially painful, if you can't find a way out of it.

21) rootbier: Discover R3 Mainfest B1 Pony
	rootbier: I'm not sure why I am using this game (against super-pro you) to try new things. :)

22) Jesse: Trade Y2 G2 Eggplanet

23) rootbier: Discover R1 Mainfest B2 Typo

24) Jesse: Discover R2 Eggplanet Y3 Check

25) rootbier: Trade R1 B1 Rootbier

26) Jesse: Build Y2 Eggplanet
	rootbier: trying to bluebird me :D

27) rootbier: Move B1 Rootbier Aubergine
	Jesse: I'd rather not catch you with your pants down on that one, hence the warning in the system name.  Defending keeps you busy so I can grab that y2 back up again, though.

28) Jesse: Build R1 Eggplanet

29) rootbier: Discover R2 Aubergine G2 Pesto

30) Jesse: Sacrifice Y3 Jesse
Move R3 Eggplanet Check
Move R3 Check Rootbier
Move R2 Check Rootbier

31) rootbier: Sacrifice R2 Aubergine
Attack R2 Rootbier
Attack R3 Rootbier

32) Jesse: Sacrifice Y2 Eggplanet
Move R1 Eggplanet Aubergine
Move R1 Aubergine Rootbier
Catastrophe Rootbier R
	rootbier: might as well at least go out owning the ships :P

	rootbier: thanks for the game. i learned a valuable lesson (which i have already used once against a friend face-to-face)
	Jesse: Thanks for the game.


16276)
Started: 2010.5.7, Ended: 2010.8.7
Participants: rootbier (S), Mandrel (N)
Winner: rootbier

1) Mandrel: Homeworld B2 R1 G3
	Mandrel: Have a good game!

2) rootbier: Homeworld B1 Y3 G3
	rootbier: You're the first to take my standing challenge :) Have a good one yourself :)

3) Mandrel: Build G1 Mandrel

4) rootbier: Build G1 Rootbier

5) Mandrel: Trade G1 Y1 Mandrel

6) rootbier: Trade G1 R1 Rootbier

7) Mandrel: Build Y1 Mandrel

8) rootbier: Build R1 Rootbier

9) Mandrel: Build G1 Mandrel

10) rootbier: Trade R1 Y1 Rootbier

11) Mandrel: Build Y2 Mandrel

12) rootbier: Build Y2 Rootbier

13) Mandrel: Discover Y1 Mandrel G3 Queasy

14) rootbier: Trade Y1 B1 Rootbier

15) Mandrel: Build Y1 Mandrel

16) rootbier: Discover Y2 Rootbier G2 Pesto

17) Mandrel: T Y1 B1 Mandrel

18) rootbier: Build B2 Rootbier

19) Mandrel: Build B2 Mandrel

20) rootbier: Discover B1 Rootbier Y2 Stone

21) Mandrel: M B2 Mandrel Queasy

22) rootbier: Move B2 Rootbier Pesto

23) Mandrel: Build B3 Queasy

24) rootbier: Build B3 Pesto

25) Mandrel: Trade B3 R3 Queasy

26) rootbier: Discover B2 Pesto R3 Ungarn

27) Mandrel: Move R3 Queasy Stone

28) rootbier: Move B1 Stone Queasy

29) Mandrel: Move B1 Mandrel Queasy

30) rootbier: Build G1 Rootbier

31) Mandrel: Move B1 Queasy Stone

32) rootbier: Sacrifice Y2 Pesto
Move B2 Ungarn Mandrel
Move B1 Queasy Mandrel

33) Mandrel: Sacrifice R3 Stone
Attack B1S Mandrel
Attack B2S Mandrel
Pass

34) rootbier: Discover G1 Rootbier G2 Posthaste

35) Mandrel: Build Y1 Queasy

36) rootbier: Build B3 Pesto
	rootbier: If I had a plan when I made that last move - I've since forgotten it. Thanks for your patience while I was away.

37) Mandrel: Sacrifice G1 Mandrel
Build B3 Stone
	Mandrel: No worries! Often have the same thing, a move that seemed part of some grand plan that I can't remember a few days later.

38) rootbier: Trade B3 Y3 Pesto

39) Mandrel: Trade B2 R2 Mandrel

40) rootbier: Build B2 Pesto

41) Mandrel: Trade B3 R3 Stone

42) rootbier: Trade B3 R3 Pesto

43) Mandrel: Move B2 Queasy Posthaste

44) rootbier: Move B2 Pesto Queasy

45) Mandrel: S Y1 Queasy
Move Y1 Queasy Posthaste

46) rootbier: Build B3 Queasy

47) Mandrel: M B1 Mandrel Queasy

48) rootbier: Trade B2 R2 Queasy

49) Mandrel: Build B2 Posthaste

50) rootbier: Build G1 Rootbier

51) Mandrel: T B2 R2 Posthaste

52) rootbier: Sacrifice G3 Rootbier
Build G1 Posthaste
Build G2 Posthaste
Build G3 Rootbier
Catastrophe Posthaste G

53) Mandrel: Build G1 Mandrel

54) rootbier: Build R1 Queasy

55) Mandrel: Discover R2 Mandrel Y3 Hollow

56) rootbier: Move R3 Pesto Hollow
	rootbier: btw. it's your turn on our four-(now three)-way game. http://superdupergames.org/main.html?page=play_homeworlds&num=16201 i think the turn reporting might be messed up with that other player out.

57) Mandrel: M R2 Hollow Stone
	Mandrel: Cheers, I'd almost forgotten about that game at all

58) rootbier: Move R1 Rootbier Stone

59) Mandrel: Sacrifice B1 Stone
Trade R2 G2 Stone

60) rootbier: Sacrifice G3 Rootbier
Build R2 Stone
Build R2 Stone
Build R3 Hollow
Catastrophe Stone R

61) Mandrel: M G2 Stone Rootbier

62) rootbier: Move Y3 Pesto Rootbier

63) Mandrel: Build G1 Rootbier

64) rootbier: Sacrifice R2 Queasy
Attack G1 Rootbier
Attack G2 Rootbier
	rootbier: Welcome to rootbier. Can I take your order?

65) Mandrel: T G1 R1 Mandrel

66) rootbier: Trade G2 Y2 Rootbier
	Mandrel: Nothing for me thank you, just popping in briefly.
	rootbier: At rootbier we have and enforce a chain-wide $10.00 minimum order policy. I'm afraid I have to ask you to either order or kindly leave the establishment.

67) Mandrel: Build Y1 Mandrel

68) rootbier: Sacrifice Y2 Rootbier
Move B3 Queasy Mandrel
Move R3 Hollow Mandrel

69) Mandrel: B R2 Mandrel
C Mandrel Red
	Mandrel: Fair enough, i'll bear that in mind on any future visits.

70) rootbier: Sacrifice R3 Hollow
Attack G3 Mandrel
Attack Y2 Mandrel
Attack Y1 Mandrel

71) Mandrel: T Y1 R1 Mandrel

72) rootbier: Sacrifice R1 Queasy
Attack R1 Mandrel

	rootbier: Thanks for the game. Grab my standing if you want a rematch.
	Mandrel: Good game, well played.


16201)
Started: 2010.5.8, Ended: 2010.12.4
Participants: rootbier (S), Mandrel (W), radio414 (N), zoltar (E)
Winner: zoltar

1) radio414: Homeworld B2 R1 G3

2) zoltar: Homeworld R3 B2 G3

3) rootbier: Homeworld Y1 B3 G3

4) Mandrel: Homeworld B1 R2 G3

5) radio414: Build G1 Radio414

6) zoltar: Build G1 Zoltar

7) rootbier: Build G1 Rootbier

8) Mandrel: Build G1 Mandrel

9) radio414: Trade G1 Y1 Radio414

10) zoltar: Trade G1 Y1 Zoltar

11) rootbier: Trade G1 R1 Rootbier
	rootbier: last man standing is it?

12) Mandrel: Trade G1 Y1 Mandrel

13) radio414: Build G1 Radio414
	Mandrel: Yeah, that's the default setting for 3+ players.

14) zoltar: Build G1 Zoltar

15) rootbier: Build G1 Rootbier

16) Mandrel: B G1 Mandrel

17) radio414: Trade G1 B1 Radio414

18) zoltar: Trade G1 B1 Zoltar

19) rootbier: Trade G1 Y1 Rootbier

20) Mandrel: Build Y2 Mandrel

21) radio414: Build Y2 Radio414

22) zoltar: Build Y2 Zoltar

23) rootbier: Build Y2 Rootbier

24) Mandrel: D Y2 Mandrel G3 Recovery

25) radio414: Build G1 Radio414

26) zoltar: Discover Y1 Zoltar G1 Greenpea

27) rootbier: Discover Y2 Rootbier B2 Aubergine

28) Mandrel: Trade G1 R1 Mandrel

29) radio414: Build B1 Radio414

30) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenpea
Build Y3 Zoltar
Build Y3 Zoltar

31) rootbier: Discover Y2 Aubergine G3 Pesto

32) Mandrel: Build Y3 Recovery

33) radio414: Trade Y1 R1 Radio414

34) zoltar: Sacrifice Y2 Zoltar
Move Y2 Greenpea Recovery
Move Y1 Greenpea Recovery
Catastrophe Recovery Y

35) rootbier: Build G1 Rootbier

36) Mandrel: Build G1 Mandrel

37) radio414: Trade B1 Y1 Radio414

38) zoltar: Trade Y3 G3 Zoltar

39) rootbier: Trade G1 B1 Rootbier

40) Mandrel: Discover G1 Mandrel Y3 Anxiety

41) radio414: Discover Y2 Radio414 B3 Nothing

42) zoltar: Discover B1 Zoltar G1 Greenpea

43) rootbier: Discover Y1 Rootbier B2 Serendipity

44) Mandrel: Build G1 Anxiety

45) radio414: Move G1 Radio414 Nothing

46) zoltar: Build B1 Greenpea

47) rootbier: Move Y1 Serendipity Greenpea

48) Mandrel: Build G1 Mandrel

49) radio414: Build G2 Nothing

50) zoltar: Build B2 Greenpea

51) rootbier: Sacrifice Y2 Pesto
Discover B1 Rootbier R2 Nong
Move B1 Nong Greenpea
Catastrophe Greenpea B

52) Mandrel: Build G2 Anxiety

53) zoltar: Build G2 Zoltar

54) rootbier: Build G2 Rootbier

55) Mandrel: Discover G1 Anxiety B2 Empty

56) zoltar: Discover G3 Zoltar B1 Blueberry

57) rootbier: Trade G2 Y2 Rootbier

58) Mandrel: Build G2 Empty

59) zoltar: Build G2 Blueberry

60) rootbier: Build G3 Rootbier

61) Mandrel: Trade G2 Y2 Empty

62) zoltar: Sacrifice G3 Blueberry
Build G2 Blueberry
Build G3 Zoltar
Build Y1 Zoltar

63) rootbier: Sacrifice G3 Rootbier
Build Y2 Greenpea
Build G3 Rootbier
Build R1 Rootbier

64) Mandrel: B Y2 Empty

65) zoltar: Move Y3 Zoltar Blueberry

66) rootbier: Sacrifice Y2 Rootbier
Move G3 Rootbier Empty
Move Y2 Greenpea Nothing

67) Mandrel: B Y2 Mandrel

68) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Zoltar
Build Y3 Blueberry

69) rootbier: Build Y3 Greenpea

70) Mandrel: M G1 Anxiety Radio414

71) zoltar: Trade G2 R2 Blueberry

72) rootbier: Build G2 Rootbier

73) Mandrel: S Y2 Empty
Move Y2 Empty Rootbier
Move G1 Empty Rootbier

74) zoltar: Sacrifice Y3 Blueberry
Move G2 Blueberry Empty
Move G2 Empty Rootbier
Move R2 Blueberry Nothing
Catastrophe Rootbier G

75) rootbier: Sacrifice Y1 Greenpea
Move G3 Empty Rootbier

76) Mandrel: Move R1 Mandrel Anxiety

77) zoltar: Attack Y2S Nothing

78) Mandrel: B R2 Anxiety

79) zoltar: Attack G2N Nothing

80) Mandrel: Attack R1N Radio414

81) zoltar: Attack G1N Nothing

82) Mandrel: Attack Y1N Radio414
	zoltar: rootbier: are you back from your mega-business tour yet?

83) zoltar: Move Y3 Blueberry Anxiety

84) Mandrel: Sacrifice Y2 Mandrel
Move R2 Anxiety Greenpea
Move G2 Anxiety Greenpea

85) zoltar: Sacrifice Y3 Zoltar
Move G1 Nothing Mandrel
Move G2 Nothing Mandrel
Move Y3 Anxiety Mandrel
Catastrophe Mandrel G

86) Mandrel: Move R1 Anxiety Mandrel

87) zoltar: Sacrifice R2 Nothing
Attack Y1W Mandrel
Attack R1W Mandrel

	Mandrel: eep.
	zoltar: Yeah, the Y3 is the most dangerous ship in the game, when it comes to sacrificing.


16244)
Started: 2010.5.8, Ended: 2010.6.9
Participants: zoltar (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld R1 B2 G3

2) zoltar: Homeworld R3 B1 G3
	Mandrel: Have a good game.

3) Mandrel: Build G1 Mandrel

4) zoltar: Build G1 Zoltar

5) Mandrel: Trade G1 Y1 Mandrel

6) zoltar: Trade G1 Y1 Zoltar

7) Mandrel: Build G1 Mandrel

8) zoltar: Build G1 Zoltar

9) Mandrel: Trade G1 R1 Mandrel

10) zoltar: Trade G1 R1 Zoltar

11) Mandrel: Build R2 Mandrel

12) zoltar: Build R2 Zoltar

13) Mandrel: Build G1 Mandrel

14) zoltar: Trade R1 B1 Zoltar

15) Mandrel: D G1 Mandrel Y3 Grim

16) zoltar: Discover R2 Zoltar G2 Greenbelt

17) Mandrel: Build G1 Mandrel

18) zoltar: Sacrifice Y1 Zoltar
Move R2 Greenbelt Grim

19) Mandrel: Trade R2 Y2 Mandrel

20) zoltar: Attack G1 Grim

21) Mandrel: Trade G1 B1 Mandrel

22) zoltar: Build B2 Zoltar

23) Mandrel: Build R1 Mandrel

24) zoltar: Trade B2 Y2 Zoltar

25) Mandrel: Discover R1 Mandrel G3 Sleep

26) zoltar: Build R2 Grim

27) Mandrel: Build R2 Sleep

28) zoltar: Sacrifice Y2 Zoltar
Move R2 Grim Mandrel
Move R2 Grim Mandrel
Catastrophe Mandrel R

29) Mandrel: Sacrifice Y1 Mandrel
Discover R2 Sleep B2 Disappointment

30) zoltar: Build G1 Zoltar

31) Mandrel: Trade R2 B2 Disappointment

32) zoltar: Sacrifice B1 Zoltar
Trade G1 B1 Grim

33) Mandrel: Build G1 Mandrel

34) zoltar: Sacrifice G1 Zoltar
Build B3 Grim

35) Mandrel: Sacrifice Y2 Mandrel
Move G3 Mandrel Zoltar
Move G1 Mandrel Zoltar

	zoltar: Oh, I forgot about that. My blowing up your star was terribly premature and a standard beginners' mistake, and I realized I was lost after I did that and should've known better. I used to do better, but these days I've been losing every game these days, except the 4-player games. Good Game.
	Mandrel: Thanks for the game, still quite new to it, thought I'd lost when my star went, and was convinced I'd overlooked something in the last move, Good game!


16210)
Variants: "Hard time"
Started: 2010.5.8, Ended: 2010.5.9
Participants: dlwillson (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R1 G3



16298)
Variants: "Hard time"
Started: 2010.5.8, Ended: 2010.5.18
Participants: zoltar (S), SilentTitan (N)
Winner: zoltar

1) SilentTitan: Homeworld B1 R2 G3

2) zoltar: Homeworld B3 R1 G3

3) SilentTitan: Build G1 Silenttitan

4) zoltar: Build G1 Zoltar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) zoltar: Trade G1 Y1 Zoltar

7) SilentTitan: Build G1 Silenttitan

8) zoltar: Build G1 Zoltar

9) SilentTitan: Discover G1 Silenttitan Y3 Swing

10) zoltar: Discover G1 Zoltar B2 Bluemoon

11) SilentTitan: Build G1 Silenttitan

12) zoltar: Build G2 Bluemoon

13) SilentTitan: Build G2 Silenttitan

14) zoltar: Trade G1 R1 Bluemoon

15) SilentTitan: Discover G2 Silenttitan G3 Loaner

16) zoltar: Build G1 Zoltar

17) SilentTitan: Discover G1 Silenttitan R3 Wastenot

18) zoltar: Sacrifice G3 Zoltar
Build G2 Bluemoon
Build G3 Zoltar
Build R1 Bluemoon

19) SilentTitan: Sacrifice G2 Loaner
Build G2 Silenttitan
Build G3 Swing

20) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Zoltar
Build Y2 Zoltar

21) SilentTitan: Trade G3 Y3 Silenttitan

22) zoltar: Sacrifice Y2 Zoltar
Move G2 Bluemoon Swing
Move G2 Bluemoon Swing
Catastrophe Swing G

23) SilentTitan: Build Y2 Silenttitan

24) zoltar: Build Y2 Zoltar

25) SilentTitan: Discover Y1 Silenttitan B3 Simple

26) zoltar: Move Y1 Zoltar Bluemoon

27) SilentTitan: Trade Y2 R2 Silenttitan

28) zoltar: Discover Y2 Zoltar G2 Greenbelt

29) SilentTitan: Build G1 Silenttitan

30) zoltar: Move G1 Zoltar Bluemoon

31) SilentTitan: Discover G2 Silenttitan G3 Whippy

32) zoltar: Discover R1 Bluemoon G3 Greengiant

33) SilentTitan: Move R2 Silenttitan Simple

34) zoltar: Build G2 Zoltar

35) SilentTitan: Sacrifice G2 Whippy
Build G2 Wastenot
Build G3 Silenttitan

36) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Bluemoon
Build R3 Greengiant

37) SilentTitan: Sacrifice Y3 Silenttitan
Discover Y1 Simple B2 Ablaze
Discover G2 Wastenot Y2 Ablare
Discover G1 Wastenot Y2 Ablame

38) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Bluemoon
Build Y3 Zoltar

39) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Ablaze
Build R3 Simple
Build G3 Silenttitan

40) zoltar: Sacrifice Y3 Bluemoon
Move G3 Zoltar Greenbelt
Move G3 Greenbelt Greengiant
Move G3 Greengiant Silenttitan

	SilentTitan: good game ... thanks
	zoltar: gg -- I didn't see the win until the last move. I was aware you were vulnerable with only green in your homeworld, and my plan had been to sacrifice a Y2 to move my G1 from bluemoon into your homeworld to create a threat, but then I realized I can just put the large green in now, and you lose if you capture it and you lose if you don't. Your one defense was to sacrifice the Y3 to bring your own g1 back to your homeworld and blow up the greens, but use the other two moves of the sacrifice to bring your R3 and Y1 back as well: you'd still be alive, but down in material, and then I could sacrifice my other Y3 to move two red pieces to your homeworld and blow up your R3 and red star. That game got really exciting and was close to the end!


16047)
Started: 2010.5.8, Ended: 2010.5.23
Participants: zoltar (S), dethdukk (N)
Winner: zoltar

1) dethdukk: Homeworld R3 B2 G3

2) zoltar: Homeworld R3 B1 G3

3) dethdukk: Build G1 Dethdukk

4) zoltar: Build G1 Zoltar



16297)
Started: 2010.5.8, Ended: 2010.5.18
Participants: Teo (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B3 R1 G3
	Teo: homeworld b1 v2 y3
	Teo: oh I have to wait for you...

2) Teo: Homeworld B1 G2 Y3

3) rootbier: Build G1 Rootbier

4) Teo: Build Y1 Teo

5) rootbier: Trade G1 Y1 Rootbier

6) Teo: Trade Y1 G1 Teo

7) rootbier: Build Y1 Rootbier

8) Teo: Build G1 Teo

9) rootbier: Trade Y1 R1 Rootbier

10) Teo: Trade G1 B1 Teo

11) rootbier: Build R1 Rootbier

12) Teo: Build G1 Teo

13) rootbier: Discover R1 Rootbier B2 Springless

14) Teo: Trade Y3 R3 Teo

15) rootbier: Build Y1 Rootbier

16) Teo: Build R2 Teo

17) rootbier: Build Y1 Rootbier

18) Teo: Trade R2 Y2 Teo

19) rootbier: Discover Y1 Rootbier G2 Special

20) Teo: Build Y2 Teo

21) rootbier: Sacrifice G3 Rootbier
Build Y2 Special
Build Y3 Rootbier
Build R2 Springless

22) Teo: Build R2 Teo

23) rootbier: Discover Y1 Rootbier G2 Optimal

24) Teo: Discover Y2 Teo R3 Sun

25) rootbier: Build Y3 Optimal

26) Teo: Build Y3 Teo

27) rootbier: Trade Y3 G3 Rootbier

28) Teo: Move G1 Teo Sun

29) rootbier: Discover Y1 Special B3 Noteworthy

30) Teo: Move Y3 Teo Sun

31) rootbier: Trade Y1 G1 Noteworthy

32) Teo: Build G3 Sun

33) rootbier: Build G3 Noteworthy

34) Teo: Move Y3 Sun Springless

35) rootbier: Sacrifice G3 Noteworthy
Build G3 Noteworthy
Build Y1 Special
Build Y3 Rootbier

36) Teo: Move G1 Sun Springless

37) rootbier: Sacrifice Y2 Special
Move G1 Noteworthy Teo
Move G3 Noteworthy Teo
Catastrophe Teo G

38) Teo: Trade B1 G1 Teo

39) rootbier: Trade Y3 B3 Rootbier

40) Teo: Trade R2 B2 Teo

41) rootbier: Build Y2 Special

42) Teo: Build Y3 Teo

43) rootbier: Sacrifice B3 Rootbier
Trade Y2 B2 Special
Trade Y1 B1 Special
Trade Y1 B1 Optimal



16314)
Variants: "Hard time"
Started: 2010.5.8, Ended: 2010.6.2
Participants: zoltar (S), jeep (N)
Winner: zoltar

1) jeep: Homeworld R1 B2 G3

2) zoltar: Homeworld R3 B1 G3

3) jeep: Build G1 Jeep
	jeep: b g1 jeep
	jeep: heh, oops. My last two games have been small universes and I didn't notice until a couple moves in. This time, I actually looked at the starting position. ;)

4) zoltar: Build G1 Zoltar

5) jeep: Trade G1 Y1 Jeep

6) zoltar: Trade G1 Y1 Zoltar

7) jeep: Build G1 Jeep

8) zoltar: Build G1 Zoltar

9) jeep: Trade G1 B1 Jeep

10) zoltar: Build G1 Zoltar

11) jeep: Build B1 Jeep

12) zoltar: Trade G1 R1 Zoltar

13) jeep: Discover B1 Jeep G3 Builder

14) zoltar: Build R1 Zoltar

	zoltar: As usual, I think I'm utterly lost from the start. I'm almost ready to resign already. I think you can get all the blue pieces and I can't stop you
	jeep: Well, that became my plan. Monopolize blue... We'll see how it goes. I'm baffled by your "as usual" statement. Aren't you (at least) one of the top rated players on SDG? You can't be in this situation too often. And you can't be talking about games against me... I don't think I've beat you at Homeworlds. Or, is it the "think" part that is important? Do you always start off thinking you are losing, but win anyways? ;) 
	zoltar: .
I tend to get the worst of it in openings, even though I often play better and catch up in the middle. I whine the most with TwoShort, who beats me every game (I managed to beat him once a long time ago). So I do pull out of these situations, but I find myself in them with much lower-rated players. I'm always playing catch-up, it seems. This one seems especially bad. I can get reds, but you'll get blues first. I'm just surprised that I'm continuing my streak of getting far behind in the opening. Anyway, it's nice to be playing you again. 
	zoltar: Very good plan, btw, to get the advantage in blues right away, especially as they are the most easily cashed in for other colors, as you don't need a blue star or a sacrifice, as you do with the others. I'll have to try to get creative.
	zoltar: What the?  Damn, as I felt you had the upper hand, I was looking forward to try to catch up and play my best. I guess there's nothing I can do if it's set to 'hard time'. Oh well.
	jeep: *sigh* sorry. I just got too busy. I'm out of the country and have sporadic internet. When I had access, I didn't have time to play. :(


16301)
Variants: "Hard time"
Started: 2010.5.9, Ended: 2010.5.27
Participants: dlwillson (S), zoltar (N)
Winner: dlwillson

1) zoltar: Homeworld R3 B1 G3

2) dlwillson: Homeworld B2 Y1 G3

3) zoltar: Build G1 Zoltar

4) dlwillson: B G1 Dlwillson

5) zoltar: Trade G1 Y1 Zoltar

6) dlwillson: Trade G1 B1 Dlwillson

7) zoltar: Build Y1 Zoltar

8) dlwillson: Build B1 Dlwillson

9) zoltar: Build Y2 Zoltar

10) dlwillson: Discover B1 Dlwillson G3 Farmville

11) zoltar: Trade Y2 B2 Zoltar
	dlwillson: good to see you again, z. hope you're well.

12) dlwillson: Sacrifice G3 Dlwillson
Build B2 Farmville
Build B3 Farmville
Build B3 Dlwillson

13) zoltar: Build B3 Zoltar

14) dlwillson: Trade B3 Y3 Farmville

15) zoltar: Discover B2 Zoltar G2 Greenbelt
	zoltar: nice to see you again too!


16) dlwillson: Trade B3 G3 Dlwillson
	zoltar: never seen so much blue so early before!

17) zoltar: Build B3 Greenbelt
	dlwillson: Let's put some back then! ;-)

18) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Farmville
Build Y2 Farmville
Build B3 Dlwillson

19) zoltar: Sacrifice B2 Greenbelt
Trade B3 Y3 Greenbelt
Trade Y1 R1 Zoltar
	zoltar: Wow. I think I'm going to take a long time out here and come back to this position tomorrow. It's pretty interesting, and I see 3 interesting moves I can make.

20) dlwillson: Sacrifice B2 Farmville
Trade B3 G3 Dlwillson
Trade Y2 R2 Farmville

21) zoltar: Move B3 Zoltar Greenbelt

22) dlwillson: B G1 Dlwillson

23) zoltar: Build G1 Zoltar

24) dlwillson: Build B2 Farmville

25) zoltar: Build B2 Greenbelt

26) dlwillson: Sacrifice Y2 Farmville
Move B1 Farmville Greenbelt
Move B2 Farmville Greenbelt
Catastrophe Greenbelt B

27) zoltar: Trade G1 B1 Zoltar
	dlwillson: And now, there's hardly any blue anywhere... I'm sad. No wait, I'm blue... :-)

28) dlwillson: Move B1 Dlwillson Farmville

29) zoltar: Move B1 Zoltar Greenbelt

30) dlwillson: Trade G1 R1 Dlwillson

31) zoltar: Build B2 Greenbelt

32) dlwillson: Build R1 Farmville

33) zoltar: Trade B2 R2 Greenbelt

34) dlwillson: Discover R1 Farmville B2 Cafeworld

35) zoltar: Discover R1 Zoltar Y2 Yellowstone

36) dlwillson: Sacrifice G3 Dlwillson
Build R2 Cafeworld
Build R3 Farmville
Build R3 Dlwillson

37) zoltar: Move R1 Yellowstone Farmville

38) dlwillson: Move B1 Farmville Dlwillson
	dlwillson: Excellent move! I have to think some more...
	zoltar: Well, not as good as your 'factory' move, where you got a free large red ship: I had to try to do something in response and not just be a whole large ship behind.

39) zoltar: Move R2 Greenbelt Farmville
Catastrophe Farmville R
	dlwillson: Excellent move, like I said. Let's see if I can recover.

40) dlwillson: T B1 R1 Dlwillson
	dlwillson: Is that what you meant to do?
	zoltar: No, it wasn't. My position is lost probably, but somehow it didn't catastrophe; I thought I added that.

41) zoltar: Build B1 Greenbelt

42) dlwillson: Move Y3 Farmville Greenbelt

43) zoltar: Build Y1 Greenbelt

44) dlwillson: Sacrifice R2 Cafeworld
Attack B1 Greenbelt
Attack B1 Greenbelt

	zoltar: Yeah, I'm lost. Good game.
	dlwillson: Good game, Zoltar. I look forward to playing you again, anytime. You're a good opponent.


16315)
Variants: "Hard time"
Started: 2010.5.9, Ended: 2010.6.24
Participants: Danner (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) Danner: Homeworld B1 G2 R3
	Danner: Hi! Good luck!

3) TwoShort: Build G1 Twoshort

4) Danner: Build R1 Danner

5) TwoShort: Trade G1 R1 Twoshort

6) Danner: Trade R3 Y3 Danner

7) TwoShort: Build R2 Twoshort

8) Danner: Build R2 Danner

9) TwoShort: Trade R2 Y2 Twoshort

10) Danner: Build R2 Danner

11) TwoShort: Build R2 Twoshort

12) Danner: Trade R2 G2 Danner

13) TwoShort: Discover R2 Twoshort G3 Grogar

14) Danner: Move Y3 Danner Grogar

15) TwoShort: Build R2 Twoshort

16) Danner: Sacrifice R1 Danner
Attack R2N Grogar

17) TwoShort: Discover R1 Twoshort G3 Gonzo

18) Danner: Build G1 Danner

19) TwoShort: Build G1 Twoshort

20) Danner: Trade G1 Y1 Danner

21) TwoShort: Discover G1 Twoshort Y3 Yolonda

22) Danner: Move G2 Danner Yolonda

23) TwoShort: Build G1 Twoshort
	Danner: Sorry for not making moves lately. I'm in exam period, and the situation is not easy in the game either.
	TwoShort: No problem.

24) Danner: Build Y1 Danner

25) TwoShort: Sacrifice G3 Twoshort
Build G1 Yolonda
Build G2 Yolonda
Build G3 Twoshort

26) Danner: Discover Y1 Danner R3 Builder
Catastrophe Yolonda G

27) TwoShort: Sacrifice Y2 Twoshort
Move G3 Twoshort Gonzo
Move G3 Gonzo Danner

28) Danner: Build Y1 Danner

29) TwoShort: Sacrifice R2 Twoshort
Attack R2 Danner
Attack Y1 Danner
	Danner: Yeah, I hoped you won't notice it. I risked it because I didn't have much chance anyway.

30) Danner: Sacrifice Y3 Grogar
Move Y1 Builder Danner
Move R2 Grogar Danner
Pass
	Danner: I think that things have gone wrong because I didn't manage to get a Y2 long time ago.
	TwoShort: Great game.  I was feeling pretty cornered all the way up to a couple moves ago.

31) TwoShort: Sacrifice G3 Danner
Build Y2 Danner
Build R1 Danner
Build R2 Danner
Catastrophe Danner Yellow
Catastrophe Danner Red

	Danner: One more turn :)
	TwoShort: Nope :)
	Danner: Yeah :D
Thx for the game :)


16316)
Variants: "Hard time"
Started: 2010.5.10, Ended: 2010.5.12
Participants: dlwillson (S), makertron (N)
Winner: dlwillson

1) makertron: Homeworld B1 R3 G3

2) dlwillson: Homeworld B3 Y2 G3

	dlwillson: I hope you noticed that the timing is pretty tight on my standing challenge... You only get about a day per move, buildable to 10 days.


16306)
Started: 2010.5.10, Ended: 2012.2.27
Participants: makertron (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld Y1 B2 G3

2) makertron: Homeworld Y1 B2 G3

3) rootbier: Build G1 Rootbier

4) makertron: Build G1 Makertron

5) rootbier: Trade G1 Y1 Rootbier

6) makertron: Trade G1 R1 Makertron

7) rootbier: Build Y2 Rootbier

8) makertron: Build G1 Makertron

9) rootbier: Discover Y2 Rootbier B3 Palpate

10) makertron: Discover G1 Makertron B3 Homeworld

11) rootbier: Sacrifice G3 Rootbier
Build Y2 Palpate
Build Y2 Palpate
Build Y3 Rootbier

12) makertron: Trade G3 Y3 Makertron

13) rootbier: Sacrifice Y2 Palpate
Move Y2 Palpate Makertron
Move Y2 Palpate Makertron
Catastrophe Makertron Y

14) makertron: Trade R1 G1 Makertron

15) rootbier: Trade Y3 G3 Rootbier

16) makertron: Build G1 Makertron

17) rootbier: Build Y1 Rootbier

18) makertron: Build G2 Makertron

19) rootbier: Discover Y1 Rootbier B3 Bolus

	rootbier: poke.


16156)
Started: 2010.5.10, Ended: 2010.6.2
Participants: ZackStack (S), makertron (N)
Winner: ZackStack

1) makertron: Homeworld B1 R3 G3

2) ZackStack: Homeworld B2 R1 G3
	ZackStack: Thanks for the challenge!  Have a good game.



16228)
Started: 2010.5.10, Ended: 2010.5.13
Participants: makertron (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3



16322)
Variants: "Hard time"
Started: 2010.5.10, Ended: 2010.5.12
Participants: dlwillson (S), makertron (N)
Winner: dlwillson

1) makertron: Homeworld R3 B1 G3

2) dlwillson: Homeworld B3 Y2 G3

	dlwillson: why did you start two games exactly the same way
	dlwillson: Makertron, my standing challenge is hard time, and only allows about a day per turn. You might want to take a turn.


16321)
Started: 2010.5.11, Ended: 2010.5.14
Participants: radio414 (S), makertron (N)
Winner: radio414



31739)
Variants: "Unrated, Hard time"
Started: 2017.4.21, Ended: 2017.4.27
Participants: wil (S), Draw5PlayAll (N)
Winner: wil

1) Draw5PlayAll: Homeworld B3 R1 G3

2) wil: H Y2 B1 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) wil: B G1 Wil

5) Draw5PlayAll: Trade G1 B1 Draw5playall

6) wil: T G1 R1 Wil

7) Draw5PlayAll: Build B1 Draw5playall

8) wil: B R1 Wil

9) Draw5PlayAll: Build G1 Draw5playall

10) wil: B R2 Wil

11) Draw5PlayAll: Trade G1 Y1 Draw5playall
	wil: Somebody has left these cruise missiles everywhere...they must be good for something.

12) wil: D R1 Wil B3 B3

13) Draw5PlayAll: Discover B1 Draw5playall G2 G2

14) wil: S G3 Wil
B R2 B3
B R2 B3
B R3 Wil

15) Draw5PlayAll: Build B2 G2

16) wil: D R2 Wil G3 G3

17) Draw5PlayAll: Build B2 Draw5playall

18) wil: T R3 G3 Wil

19) Draw5PlayAll: Discover B1 Draw5playall Y2 Y2

20) wil: S G3 Wil
B R3 Wil
B R3 G3
B R3 Wil

21) Draw5PlayAll: Sacrifice G3 Draw5playall
Build B2 Y2
Build B3 Draw5playall
Build Y1 Draw5playall

22) wil: D R3 Wil Y3 Y3

23) Draw5PlayAll: Trade B3 G3 Draw5playall

24) wil: M R3 Y3 Y2

25) Draw5PlayAll: Build B3 G2
	Draw5PlayAll: Permission to resign?

26) wil: Attack B2 Y2
	wil: Any time, but i am not clear it is that bad.. this is such a game of capitalizing on mistakes...

	Draw5PlayAll: See, you even have blue now.


16343)
Variants: "Hard time"
Started: 2010.5.12, Ended: 2010.7.15
Participants: face (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

2) face: Homeworld R3 B2 G3

3) dlwillson: B G1 Dlwillson

4) face: Build G1 Face

5) dlwillson: Trade G1 R1 Dlwillson

6) face: Trade G3 Y3 Face

7) dlwillson: Build G1 Dlwillson

8) face: Build Y1 Face

9) dlwillson: B R1 Dlwillson

10) face: Trade Y1 B1 Face

11) dlwillson: Build R1 Dlwillson

12) face: Build Y1 Face

13) dlwillson: Discover R1 Dlwillson B2 Potato

14) face: Discover Y1 Face B1 Smash

15) dlwillson: Discover R1 Dlwillson Y2 Meat

16) face: Build Y1 Face

17) dlwillson: S G3 Dlwillson
B R2 Meat
B R2 Meat
B R2 Potato

18) face: Trade Y3 R3 Face

19) dlwillson: Build R3 Dlwillson

20) face: Build Y2 Face

21) dlwillson: M R2 Meat Smash

22) face: Discover Y1 Smash G3 Waste

23) dlwillson: T R3 Y3 Dlwillson

24) face: Trade R3 Y3 Face

25) dlwillson: B R3 Dlwillson

26) face: Discover Y2 Face G1 Trash

27) dlwillson: Build R3 Dlwillson

28) face: Build Y2 Waste

29) dlwillson: M Y3 Dlwillson Potato

30) face: Build Y3 Trash

31) dlwillson: T R3 G3 Dlwillson

32) face: Move B1 Face Trash

33) dlwillson: S G1 Dlwillson
B R3 Smash

34) face: Discover Y2 Trash G3 Tank

35) dlwillson: M R3 Dlwillson Meat

36) face: Build B1 Trash

37) dlwillson: Move R3 Meat Smash

38) face: Discover Y1 Waste G2 Plaster

39) dlwillson: S Y3 Potato
M R3 Smash Face
M R3 Smash Face
Pass

40) face: Discover Y2 Tank G2 Blitz

41) dlwillson: Sacrifice R3 Face
Attack Y3 Face
Attack Y1 Face
Attack G1 Face



16361)
Started: 2010.5.13, Ended: 2010.5.21
Participants: rootbier (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Have a good game!  And don't forget to count your ships before you attack ;-)

2) rootbier: Homeworld R1 B3 G3

3) ZackStack: Build G1 Zackstack

4) rootbier: Build G1 Rootbier

5) ZackStack: Trade G1 R1 Zackstack
	rootbier: here's where i see my first mistake and you put me in a temporary red freeze
	rootbier: though now i think i know a good way out of color control freeze-out -- i haven't gotten to use it yet - but it ought to work just fine
	ZackStack: Well... since you asked so nicely :-)

6) rootbier: Build G1 Rootbier

7) ZackStack: Build R2 Zackstack

8) rootbier: Trade G1 Y1 Rootbier

9) ZackStack: Trade R2 Y2 Zackstack

10) rootbier: Trade G1 B1 Rootbier

11) ZackStack: Build R2 Zackstack

12) rootbier: Discover B1 Rootbier Y2 Falls

13) ZackStack: Discover R2 Zackstack B3 Saphire

14) rootbier: Build Y1 Rootbier

15) ZackStack: Sacrifice G3 Zackstack
Build R2 Saphire
Build R2 Saphire
Build R3 Zackstack

16) rootbier: Discover Y1 Rootbier Y2 Otter
	ZackStack: Guess I'm feeling kind of warlike this game...
	rootbier: guess i pushed you that way - setting up the red freeze on myself
	rootbier: but don't worry - it's intimidating nonetheless

17) ZackStack: Trade R3 G3 Zackstack

18) rootbier: Discover B1 Falls R3 Bell
	ZackStack: Don't get me wrong... I do appreciate it :-)
	rootbier: i do have to get past the "intimidation" and figure out what makes sense -- that much red is stressful

19) ZackStack: Move Y2 Zackstack Bell

20) rootbier: Sacrifice B1 Bell
Trade Y1 G1 Otter
	ZackStack: I understand how you feel.  I got pummelled by a red rush a few games ago :-/

21) ZackStack: Build R3 Zackstack

22) rootbier: Build Y1 Rootbier
	rootbier: i'm definitely low on clever ideas here

23) ZackStack: Trade R2 Y2 Saphire
	ZackStack: I had a clever idea once... it didn't work out particularly well :-)

24) rootbier: Trade Y1 B1 Rootbier

25) ZackStack: Move R2 Saphire Otter

26) rootbier: Discover G1 Otter B1 Olive

27) ZackStack: Trade R3 Y3 Zackstack

28) rootbier: Trade G1 Y1 Olive

29) ZackStack: Sacrifice G3 Zackstack
Build R2 Zackstack
Build R3 Otter
Build R3 Otter
	ZackStack: sacrifice g3 zackstack
build r2 zackstack
build r3 otter
build r3 otter
	ZackStack: Oops. 

30) rootbier: Sacrifice G3 Rootbier
Build Y1 Olive
Build Y3 Rootbier
Build B1 Rootbier

31) ZackStack: Sacrifice Y2 Saphire
Move R3 Otter Rootbier
Move R3 Otter Rootbier
	rootbier: greenless universe
	ZackStack: Very strange.  I don't think I've ever seen that before...

	ZackStack: I would like you to know that I am humming "Vader's Theme" right now ;-)
	rootbier: you mean the imperial march?
	rootbier: do over :P
	ZackStack: Rematch indeed! :-)


16323)
Started: 2010.5.16, Ended: 2010.6.19
Participants: rootbier (S), MagicJohn (N)
Winner: rootbier

1) MagicJohn: Homeworld G1 B2 R3

2) rootbier: Homeworld B3 Y1 G3

3) MagicJohn: Build R1 Magicjohn

4) rootbier: Build G1 Rootbier
	rootbier: Thanks for taking the challenge. Have a good game.
	MagicJohn: This is my second game of HW.  I'm looking forward to seeing new approaches and strategies. Have a good game.

5) MagicJohn: Trade R1 Y1 Magicjohn
	rootbier: welcome to the game. i just flicked through the first few moves of your first (didn't know I could do that didja? :))

and i'll tell you one thing that definitely won't work -- building four of the same color straight out like both you and ringebri did - it is possible to call catastrophes from all the way across the universe - rengebri could have beat you without doing anything on just his fourth move-- you could have done it to him on your fifth and sixth

so. good plan on your next is trade. then start building up again. getting up to size 2 ships won't help if they can all just be catastrophied away. :)

i'm no super pro but i've been playing a bunch lately and getting better - ask along the way if you have questions or concerns

6) rootbier: Trade G1 Y1 Rootbier
	rootbier: I flipped through a bit more of the game. I see you started to get the catastrophe's after a bit. They are far and away the most dangerous part of the game. Attacking is more or a defensive threat than anything. Best of luck :)

7) MagicJohn: Build Y2 Magicjohn

8) rootbier: Build Y2 Rootbier

9) MagicJohn: Discover Y1 Magicjohn R3 Patches

10) rootbier: Discover Y1 Rootbier G2 Pickle

11) MagicJohn: Build R1 Magicjohn

12) rootbier: Discover Y2 Rootbier B2 Aubergine

13) MagicJohn: Move R1 Magicjohn Patches

14) rootbier: Build G1 Rootbier

15) MagicJohn: Build Y2 Magicjohn

16) rootbier: Build Y3 Pickle

17) MagicJohn: Build Y3 Magicjohn

18) rootbier: Sacrifice Y2 Aubergine
Move Y1 Pickle Patches
Move Y1 Patches Magicjohn
Catastrophe Magicjohn Y

19) MagicJohn: Build R1 Magicjohn

20) rootbier: Trade G1 R1 Rootbier

21) MagicJohn: Trade R1 Y1 Magicjohn
	MagicJohn: I wondered if you would sacrifice two ships to destroy three. Found out.....
	rootbier: you also have to consider the size of the ships - i lost a 1 and a 2 - you lost 2 2s and a 3. so yeah - i calc that as worth it.

22) rootbier: Move Y3 Pickle Patches

23) MagicJohn: Build Y2 Magicjohn
	MagicJohn: Kinda screws up my logistics too.

24) rootbier: Attack Y1 Patches
	rootbier: That's vague -- but yeah -- losing a technology will slow you down.

Be careful here. Minimize your losses.

25) MagicJohn: Trade Y1 G1 Magicjohn

26) rootbier: Discover Y1 Patches G2 Pickle

27) MagicJohn: Build Y1 Magicjohn

28) rootbier: Build G1 Rootbier

29) MagicJohn: Discover Y1 Magicjohn B3 Terra Yoda

30) rootbier: Build G2 Rootbier

31) MagicJohn: Build Y2 Magicjohn

32) rootbier: Discover G2 Rootbier B2 Olive

33) MagicJohn: Move Y2 Magicjohn Terra

34) rootbier: Sacrifice G3 Rootbier
Build G2 Rootbier
Build G3 Rootbier
Build G3 Olive

35) MagicJohn: Build G3 Magicjohn
	MagicJohn: Sorry about the time-warp. I was trying to make the game do something it objected to. Had to re-read the rules. Didn't know that all actions resulting from a sacrifice had to correspond to the color of the sacrificed ship.

36) rootbier: Sacrifice Y3 Patches
Move G2 Olive Patches
Move G2 Patches Magicjohn
Discover G3 Olive B3 Bakeware
Catastrophe Magicjohn G
	rootbier: Did we time-warp? OOH!
I'm unclear-- did you think sacrifice was "Do whatever the heck you want!" or... did you think it just meant "Take X number of legal actions."?

37) MagicJohn: Trade Y2 G2 Magicjohn
	MagicJohn: "B"

38) rootbier: Trade G2 Y2 Rootbier

39) MagicJohn: Move Y1 Terra Pickle

40) rootbier: Discover Y2 Rootbier B2 Porcelain

41) MagicJohn: Build G1 Magicjohn

42) rootbier: Trade G1 B1 Rootbier

43) MagicJohn: Move Y2 Terra Magicjohn

44) rootbier: M Y1 Pickle Bakeware

45) MagicJohn: Build Y2 Magicjohn

46) rootbier: Sacrifice G3 Bakeware
Build Y3 Bakeware
Build Y3 Porcelain
Build B1 Rootbier

47) MagicJohn: Sacrifice Y2 Magicjohn
Move Y2 Magicjohn Rootbier
Move Y1 Pickle Rootbier

48) rootbier: Sacrifice Y2 Porcelain
Move B1 Rootbier Magicjohn
Move B1 Rootbier Magicjohn

49) MagicJohn: Sacrifice G1 Magicjohn
Build Y2 Rootbier
Catastrophe Rootbier Yellow
	MagicJohn:  I know experienced players have an advantage...... but the system making excuses for you, geez......  :  )  Final exams in process.    Been there, done that, no fun. 

50) rootbier: Sacrifice G3 Rootbier
Build B1 Magicjohn
Build B2 Magicjohn
Build B3 Magicjohn
Catastrophe Magicjohn B
	MagicJohn: Aha!  Discovered life forms in the universe.

	MagicJohn: Kind of a "Spite Check".  BP must be at work on rootbier as well as TP.  Perhaps I could have captured a couple of blue ships and flown them out next turn, but this was more fun. 
	MagicJohn: Thanks for the game....... learned a lot
	rootbier: We'll do another one after I am back from this conference thing next Monday.
	MagicJohn: OK


16393)
Variants: "Hard time"
Started: 2010.5.17, Ended: 2010.6.21
Participants: radio414 (S), jonaskoelker (N)
Winner: jonaskoelker

1) jonaskoelker: Homeworld R1 B2 G3

2) radio414: Homeworld B3 R1 G3

3) jonaskoelker: Build G1 Jonaskoelker

4) radio414: Build G1 Radio414

5) jonaskoelker: Trade G1 R1 Jonaskoelker

6) radio414: Trade G3 R3 Radio414

7) jonaskoelker: Build R2 Jonaskoelker

8) radio414: Build R2 Radio414

9) jonaskoelker: Trade R2 Y2 Jonaskoelker

10) radio414: Trade R3 G3 Radio414

11) jonaskoelker: Build R2 Jonaskoelker

12) radio414: Build R2 Radio414

13) jonaskoelker: Discover R2 Jonaskoelker Y3 Big_yellow

14) radio414: Trade R2 Y2 Radio414

15) jonaskoelker: Build R2 Jonaskoelker

16) radio414: Build Y1 Radio414

17) jonaskoelker: Discover R2 Jonaskoelker B3 Big_blue

18) radio414: Discover Y2 Radio414 B2 Not_so_big_blue

19) jonaskoelker: Sacrifice G3 Jonaskoelker
Build R3 Jonaskoelker
Build R3 Big_yellow
Build R3 Big_blue

20) radio414: Move R2 Radio414 Not_so_big_blue

21) jonaskoelker: Trade R3 G3 Jonaskoelker

	jonaskoelker: I hope you have some good tricks up your sleeve ;-)


16379)
Started: 2010.5.17, Ended: 2010.5.17
Participants: AdamBadura (S), goulo (N)
Winner: goulo

1) goulo: Homeworld G1 B2 Y3

2) AdamBadura: Homeworld B1 G2 R3
	goulo: Hi!

3) goulo: Build Y1 Goulo
	AdamBadura: Hi!
	AdamBadura: Sorry for the delay but SuperDuperGames emails got into spam so I found them today.

4) AdamBadura: Build R1 Adambadura
	goulo: I wondered if the email got lost like that. :)
	goulo: I am amused that our homesystems are named "goulo" and "AdamBadura". They could both sound sort of like science fiction star system names. :)

5) goulo: Build Y1 Goulo

6) AdamBadura: Build R1 Adambadura

7) goulo: Trade Y1 R1 Goulo
	AdamBadura: I wonder how this game will end... This time I plan to use a different approach. But I guess you will win anyway... ;)

8) AdamBadura: Trade R1 Y1 Adambadura

9) goulo: Discover Y1 Goulo G3 Austin

10) AdamBadura: Move R1 Adambadura Austin

11) goulo: Move Y1 Austin Goulo
	AdamBadura: Why there are so many spectators here? Do those people really follow the game or they just came once by accident?
	goulo: I think they just set some setting so that they automatically watch every game that starts.

By the way, if your "new approach" was "hope that Russ does something stupid", it's working OK so far. I didn't pay attention that both our homesystems connect to large stars...

12) AdamBadura: Move R3 Adambadura Austin

13) goulo: Trade Y3 R3 Goulo

14) AdamBadura: Build Y1 Adambadura

15) goulo: Build Y2 Goulo

16) AdamBadura: Move Y1 Adambadura Austin

17) goulo: Sacrifice Y2 Goulo
Move R3 Goulo Austin
Move R3 Austin Adambadura

18) AdamBadura: Build Y2 Adambadura
	AdamBadura: No. Nooooooooooo!!! How didn't I see that coming?! I must be really stupid. Especially that I remebered about this trick and I tried to prevent it.

19) goulo: Attack Y2 Adambadura
	AdamBadura: From my current observation the main problem in this game is when to allow your oponent to build 2 ship and which should it be. And this time I failed to time it properly... ;)

	goulo: It's only fair; I made a mistake earlier, so then you made a mistake. :)
	AdamBadura: No point in continuing. I will lose it. I must produce a ship each turn so you will not win by capturing my last ship. But I can produce only yellow ships and after making forth in this solar system you will make catastroph and leave me with no ships...
	goulo: Technically, you could also move your red ships back home, but I think that will not work out much better. :)
	AdamBadura: I could have moved my small red ship back and count on your mistake to capture the yellow one rather than the red one and to not sacrifice the large ship. If you did so than I could produce red ships and the catastrophe would free me of your attack. It would be even quite good situation. But it is doubtfull you would make that.


16387)
Variants: "Unrated"
Started: 2010.5.17, Ended: 2010.8.11
Participants: radio414 (S), wmreed (N)
Winner: wmreed

1) wmreed: Homeworld G1 B2 Y3

2) radio414: Homeworld B3 R1 G3
	wmreed: Hi Felix!

3) wmreed: Build Y1 Wmreed

4) radio414: Build G1 Radio414
	radio414: Hi Bill

5) wmreed: Trade Y1 G1 Wmreed

6) radio414: Trade G1 Y1 Radio414

7) wmreed: Build Y1 Wmreed

8) radio414: Build Y1 Radio414

9) wmreed: Discover Y1 Wmreed B3 Gandalf

10) radio414: Build Y2 Radio414
	radio414: Gandalf? Really?

11) wmreed: B G1 Wmreed

12) radio414: Build G2 Radio414
	wmreed: Why not?

13) wmreed: Move G1 Wmreed Gandalf

14) radio414: Trade Y1 R1 Radio414

15) wmreed: B G2 Gandalf

16) radio414: Discover G2 Radio414 Y2 Eagle

17) wmreed: Trade G1 R1 Gandalf

18) radio414: Build G1 Radio414

19) wmreed: B R2 Gandalf

20) radio414: Build R2 Radio414

21) wmreed: Move R2 Gandalf Wmreed

22) radio414: Trade R1 B1 Radio414

23) wmreed: B R1 Gandalf

24) radio414: Build G2 Eagle

25) wmreed: Build G3 Gandalf
	radio414: Wrong ship, and wrong system. Oops

26) radio414: Sacrifice Y2 Radio414
Move G2 Eagle Gandalf
Move G2 Eagle Gandalf
Catastrophe Gandalf G

27) wmreed: Build G2 Wmreed

28) radio414: Build G2 Radio414
	radio414: Those eagles must have been comin'

29) wmreed: Move G2 Wmreed Gandalf

30) radio414: Discover G2 Radio414 B2 Bobadil

31) wmreed: Build G2 Gandalf

32) radio414: Trade R2 Y2 Radio414

33) wmreed: Move G2 Gandalf Bobadil

	wmreed: Are we still playing?


16397)
Started: 2010.5.17, Ended: 2010.5.18
Participants: goulo (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld B3 G2 R3

2) goulo: Homeworld G1 B2 Y3

3) AdamBadura: Build R1 Adambadura

4) goulo: Build Y1 Goulo

5) AdamBadura: Trade R1 Y1 Adambadura
	goulo: I am talking with planszoweczka Michal/meehau at bgg about ordering some more pyramids in the 'correct' rainbow colors for this game and for RAMbots (a robot combat programming game I think you'd enjoy and I want to try). :)

6) goulo: Trade Y3 R3 Goulo

7) AdamBadura: Build R1 Adambadura
	AdamBadura: If you establish anything then let me know and maybe I would join in the order.

8) goulo: Build R1 Goulo
	goulo: Right now the open question is whether he can get 5 Rainbow sets from rebel immediately or soon. I don't want partial (fewer than 15 pyramids in each color) sets again, that was frustrating. :) Meanwhile I am definitely ordering a full pink set. :) Also Martian Coasters. He said he orders from rebel.pl each Tuesday, so let him know before 11.00 tomorrow, it seems, or else wait a week. :) I will tell you what I learn about getting the set of 5 Rainbows.

9) AdamBadura: Trade R1 B1 Adambadura
	AdamBadura: I thought it was more complex thus. If he just tkaes them from Rebel then he may do it any time and there is no rush for me. Thanks for info.

10) goulo: Build R1 Goulo
	goulo: He might get a higher discount if more people order the same thing, I don't know. :)

But right, no rush. The advantage ordering through him is no shipping costs and a possible small discount.

11) AdamBadura: Build B1 Adambadura

12) goulo: Trade R1 G1 Goulo

13) AdamBadura: Build R1 Adambadura

14) goulo: Discover R3 Goulo G3 Zarkcity

15) AdamBadura: Pass
	AdamBadura: Let me know what price Micha³ offers (can offer). 5 sets costs in Rebel ~150 and it feels a bit much. After all I could get a good game with that price while here I get a set of plastic pyrmides... ;) (My wide would not understand that too... :)) Pity that book is out in Rebel.
	AdamBadura: Hmmmm... You forced me into bad situation here. I wonder what should I do now.

16) goulo: Build Y1 Goulo

17) AdamBadura: Build Y2 Adambadura
	goulo: I wonder if I would have passed also, if that would have ended the game in a tie...?

18) goulo: Build Y2 Goulo
	AdamBadura: That is a good question. :)

19) AdamBadura: Trade Y2 G2 Adambadura
	AdamBadura: By the way. Is this game playable with more than 2 players? I guess it is not. But I don't see technical reasons for not allowing it. There are at least 4 well distinguishable angles..

20) goulo: Move Y1 Goulo Zarkcity

21) AdamBadura: Build Y2 Adambadura
	goulo: Yes, it can have more than 2, and I want to play it that way. (I have in real life.) The rules talk about it.
	AdamBadura: Did you really wanted to make this move (catastrophe!)? If not then undo it.
	AdamBadura: Then we can try it here or in real life sometime. I would like to experience it.
	goulo: Thanks for the undo. That was indeed a lame move. :)

22) goulo: Build R1 Goulo
	goulo: This game is surprisingly and interestingly easy to make really bad mistakes in, considering how simple and elegant its rules are. :)
	goulo: I hope to get more people in the local club interested in playing! And not just Homeworlds; I suspect some people may enjoy RAMbots (which I've not played yet) as it seems to be similar to RoboRally but more elegant and without the randomness of card draws, just the chaos of simultaneous robot programming.

23) AdamBadura: Build R2 Adambadura
	AdamBadura: What you told me about this game indeed seems interesting so I would gladly try it out. Saddly I tend to come less often to locla club nowadays. I prefer playing at home (either my place or Max's) - but that doesn't happen that often either.

24) goulo: Build R2 Zarkcity

25) AdamBadura: Discover R2 Adambadura G1 Throughtheages

26) goulo: Move R3 Zarkcity Throughtheages

27) AdamBadura: Move R1 Adambadura Throughtheages
	AdamBadura: Are we going to build all the ships before we get to real action - I wonder? :)
	AdamBadura: And as it comes to how easy is to make really bad mistake let me remaind you that I lost previous three games due to the same stupid mistake... ;)

28) goulo: Attack R2 Throughtheages

29) AdamBadura: Build R2 Throughtheages
Catastrophe Throughtheages R

30) goulo: Trade Y1 B1 Goulo

31) AdamBadura: Discover B1 Adambadura Y1 Newbetterworld
	AdamBadura: Haven't you forseen that?
	goulo: ah, clever!
	goulo: No, I was thinking only that you might move your R3 from AdamBadura to ThroughTheAges. Forgot that it was a green star so you could construct there. Such a sneaky game! :)

32) goulo: Build B2 Goulo

33) AdamBadura: Build G1 Adambadura

34) goulo: Build G2 Goulo

35) AdamBadura: Move G1 Adambadura Newbetterworld

36) goulo: Discover G2 Goulo R3 Tzaar

37) AdamBadura: Sacrifice G2 Adambadura
Build G2 Newbetterworld
Build G3 Newbetterworld

38) goulo: Sacrifice Y1 Zarkcity
Move G2 Tzaar Newbetterworld
Catastrophe Newbetterworld G

39) AdamBadura: Trade Y1 G1 Adambadura
	AdamBadura: Actually I didn't plant that. When I saw your ship invade my solar system I paniced. ;) But after caliming down I thought to my self that now I have to do whatever I can. Obviously moving R3 there would be a suicide. But then I thought about moving R1 and taking advantage.

Also I think you should have instead of attacking me sacrifice Y1 or Y2 and run away. Unless you realized what was comming to you first when you actually saw it.

40) goulo: Build Y1 Goulo

41) AdamBadura: Build G2 Adambadura

42) goulo: Discover B1 Goulo Y3 Dvonn

43) AdamBadura: Move G2 Adambadura Newbetterworld

44) goulo: Move Y1 Goulo Zarkcity

45) AdamBadura: Build B2 Newbetterworld

46) goulo: Move B2 Goulo Zarkcity

47) AdamBadura: Trade B2 Y2 Newbetterworld

48) goulo: Build R1 Zarkcity

49) AdamBadura: Build G2 Newbetterworld

50) goulo: Build B2 Zarkcity

51) AdamBadura: Move G2 Newbetterworld Dvonn

52) goulo: Move B2 Zarkcity Goulo

53) AdamBadura: Sacrifice G2 Newbetterworld
Build G2 Dvonn
Build G3 Adambadura

54) goulo: Build R2 Goulo

55) AdamBadura: Sacrifice Y2 Newbetterworld
Move G2 Dvonn Goulo
Move G2 Dvonn Goulo
Catastrophe Goulo G

	AdamBadura: Show them no mercy as you will receive none! KILL THEM ALL!
	AdamBadura: Honestly there was time (at least one my round; but I think there were few such rounds) in which I could destroy your blue technology by moving my blue ship with sacrificed yellow ship. But when I realized that it was to late becase on your turn you moved away the blue ship.
	AdamBadura: This game is indeed interesting.

The interactions are deep. Shared usage of stars adds much to the game.

But I think with more than 2 players it will become a little chaotic. Still I want to try it that way. Does this system allow that?

I have browsed through rules briefly and saw with muylti-player there is Good/Evil and special victory conditions which do not go well with this game I guess as they introduce hidden information (but still might be interesting). This was surprising as I thought there will be "one man standing" mode...
	AdamBadura: If the RAMbots game is as interesting (and it sounds so) then I will reconsider buying pyrmids as 150 z³ for two good games is fine (also the games have the advantage of taking little space and being playable in travel or similar conditions).
	goulo: yes, i noticed that you had an opportunity to do a blue catastrophe a while back and was relieved that you didn't. but after i lost my 3-ship early on, it seems this game was very hard for me in any case. i see now that the 3-ship we start with must stay safe! :)
	goulo: Multiplayer homeworlds in its original form has the hidden good/evil stuff (like the werewolf/mafia type games), which indeed seems strange to me too. But there is also the "sinister" variant, where you win by killing the player to your left. And of course there is "last survivor wins" variant. So no problem, just don't play the good/evil version. :)

	AdamBadura: Yes. I think that loosing that ship was the beginning of the end (I think you will lose if I will not make any stupid move). Its not that one definitly looses after loosing 3-ship but it is much more defence later one.

Note thou that you had lots of opportunities to build a 3-ship (you still have).
	goulo: if you want to play on, we can, but i think i can safely resign this game and start a new one if you like. let me know... :)
	goulo: every chance i had to build a 3-ship, you could have then moved in to make a catastrophe. it was frustrating! :)
	AdamBadura: OK, lets play new game
	goulo: congrats. :)
	goulo: Not my day for playing well. I just got my butt kicked in online Hive tournament (opponent won 3 games, I won 1). Ouch!


16259)
Started: 2010.5.17, Ended: 2010.5.24
Participants: AltF4 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) AltF4: Homeworld B3 G2 R3

3) ts52: Build G1 Ts52

4) AltF4: Build R1 Altf4
	ts52: Have a good game.
	AltF4: thanks

5) ts52: Trade G1 R1 Ts52

6) AltF4: Trade R1 Y1 Altf4
	AltF4: you have a good game too

7) ts52: Discover R1 Ts52 G3 Kermit

8) AltF4: Build Y1 Altf4

9) ts52: Build R1 Kermit

10) AltF4: Discover Y1 Altf4 G1 Apophis

11) ts52: Build G1 Ts52

12) AltF4: Build Y2 Altf4

13) ts52: Trade G1 B1 Ts52

14) AltF4: Build Y2 Apophis

15) ts52: Discover B1 Ts52 G3 Oscar

16) AltF4: Move Y2 Apophis Kermit

17) ts52: Build G1 Ts52

18) AltF4: Build Y2 Kermit

19) ts52: Build B1 Oscar

20) AltF4: Build Y3 Apophis
	ts52: Sorry about the undo. I know I'm in hot water, but that would have been suicide.

21) ts52: Trade B1 R1 Oscar

22) AltF4: Build Y3 Kermit

23) ts52: Build R2 Kermit

24) AltF4: Move Y3 Kermit Ts52

25) ts52: Sacrifice R1 Kermit
Attack Y3 Ts52

26) AltF4: Move Y2 Kermit Ts52
	AltF4: that is okay, I sometimes undo

27) ts52: Trade Y3 R3 Ts52

28) AltF4: Move Y2 Kermit Ts52

29) ts52: Sacrifice R2 Kermit
Attack Y2 Ts52
Attack Y2 Ts52

30) AltF4: Sacrifice Y2 Altf4
Move Y1 Apophis Kermit
Move Y1 Kermit Ts52
Catastrophe Ts52 Y

31) ts52: Trade G1 Y1 Ts52
	AltF4: how do you sacrifice

32) AltF4: Build Y1 Apophis

33) ts52: B Y2 Ts52

34) AltF4: Build Y2 Altf4

35) ts52: Move Y2 Ts52 Oscar

36) AltF4: Trade Y2 B2 Altf4

37) ts52: Build Y2 Ts52

38) AltF4: Move B2 Altf4 Apophis
	AltF4: sorry I keep undoing moves
	ts52: No problem.

39) ts52: M R3 Ts52 Apophis

40) AltF4: Sacrifice R3 Altf4
Attack R3 Apophis
Pass
Pass

41) ts52: Sacrifice Y2 Ts52
Move G3 Ts52 Apophis
Move G3 Apophis Altf4

42) AltF4: Build Y2 Altf4

43) ts52: Sacrifice R1 Oscar
Attack Y2 Altf4

44) AltF4: Sacrifice Y3 Apophis
Move Y1 Apophis Altf4
Move B2 Apophis Altf4
Pass

45) ts52: Build Y2 Altf4
Catastrophe Altf4 Yellow



16365)
Variants: "Hard time"
Started: 2010.5.17, Ended: 2010.5.30
Participants: SilentTitan (S), AltF4 (N)
Winner: SilentTitan

1) AltF4: Homeworld B3 G2 R3

2) SilentTitan: Homeworld R1 B2 G3

3) AltF4: Build R1 Altf4

4) SilentTitan: Build G1 Silenttitan

5) AltF4: Trade R1 Y1 Altf4

6) SilentTitan: Trade G1 Y1 Silenttitan

7) AltF4: Build Y1 Altf4

8) SilentTitan: Build Y2 Silenttitan

9) AltF4: Discover Y1 Altf4 G1 Aquagoran

10) SilentTitan: Trade Y2 G2 Silenttitan

11) AltF4: Build Y2 Aquagoran

12) SilentTitan: Build Y2 Silenttitan

13) AltF4: Build Y2 Altf4

14) SilentTitan: Sacrifice Y1 Silenttitan
Discover G2 Silenttitan Y3 Sol

15) AltF4: Discover Y2 Aquagoran R3 Theunknown

16) SilentTitan: Trade Y2 G2 Silenttitan

17) AltF4: Trade Y2 B2 Altf4

18) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Sol
Build G1 Sol
Build G3 Silenttitan

19) AltF4: Build R1 Altf4

20) SilentTitan: Build G3 Silenttitan

21) AltF4: Discover Y1 Aquagoran G3 Gondor

22) SilentTitan: Discover G1 Sol Y1 Sole

23) AltF4: Move R1 Altf4 Sole

24) SilentTitan: Move G1 Sole Altf4

25) AltF4: Build Y2 Gondor

26) SilentTitan: Trade G3 B3 Silenttitan

27) AltF4: Build Y2 Altf4

28) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Altf4
Build G3 Sol
Build G3 Silenttitan

29) AltF4: Sacrifice R3 Altf4
Attack G1S Altf4
Attack G1S Altf4
Pass

30) SilentTitan: Move G2 Sol Sole

31) AltF4: Trade G1 R1 Altf4

32) SilentTitan: Sacrifice B3 Silenttitan
Trade G3 Y3 Sol
Trade G2 R2 Silenttitan
Pass

33) AltF4: Move R1 Sole Gondor

34) SilentTitan: Build G1 Silenttitan

35) AltF4: Build R2 Gondor

36) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Sole
Build G3 Sol
Build G3 Silenttitan



16405)
Started: 2010.5.18, Ended: 2010.5.19
Participants: AdamBadura (S), goulo (N)
Winner: AdamBadura

1) goulo: Homeworld Y3 G2 B3

2) AdamBadura: Homeworld B3 G1 R3
	goulo: I'll try a different opening for variety!

3) goulo: Build B1 Goulo
	AdamBadura: It is a disadviced strategy. But let us see the results...

4) AdamBadura: Build R1 Adambadura

5) goulo: Build B1 Goulo

6) AdamBadura: Trade R1 Y1 Adambadura

7) goulo: Trade B1 R1 Goulo

8) AdamBadura: Build R1 Adambadura

9) goulo: Trade B1 Y1 Goulo

10) AdamBadura: Trade R1 G1 Adambadura

11) goulo: Build B1 Goulo

12) AdamBadura: Build R1 Adambadura

13) goulo: Build B1 Goulo

14) AdamBadura: Discover R1 Adambadura Y2 Bombay

15) goulo: Trade B1 G1 Goulo

16) AdamBadura: Build G2 Adambadura

17) goulo: Build G2 Goulo

18) AdamBadura: Move G1 Adambadura Bombay

19) goulo: Discover G2 Goulo Y1 Mumbai

20) AdamBadura: Build G3 Bombay
	AdamBadura: I read the rules which are available here. There are two things which you tought me differently (or at least I understood it so):
1) You homeworld can be made up from two pieces of the same size or same color (however sam color is useless and very risky).
2) While using attack action you can capture an enemy ship which is not larger than your largest ship in that system; while I thought it is that you may capture a ship which is not larger than your largest red ship in that system.

21) goulo: Build G3 Mumbai
	goulo: Oh, I didn't remember/know your home system could have two pieces of the same size! Interesting!

The attack information indeed changes things. I'm not sure if I knew that or not. :)  This is one of those games where I find myself continually making silly errors (e.g. trying to build when I have no green, etc), so even though I "know" the rules theoretically, I don't "know" them deeply and automatically and instinctively yet. Which is interesting, because the rules really are pretty simple, yet somehow they are very mind-bending. :)

22) AdamBadura: Sacrifice G3 Bombay
Build G3 Bombay
Build Y2 Adambadura
Build G3 Adambadura
	goulo: BTW, thanks for reading and verifying the rules! :)

23) goulo: Sacrifice G3 Mumbai
Build G3 Mumbai
Build R1 Goulo
Build Y2 Goulo

24) AdamBadura: Discover G3 Adambadura B2 Newdelhi
	goulo: This game feels interestingly different from the previous ones. I guess we are learning or something! :)

25) goulo: Move R1 Goulo Mumbai

26) AdamBadura: Sacrifice G3 Bombay
Build G3 Bombay
Build Y3 Adambadura
Build R2 Adambadura

27) goulo: Move Y1 Goulo Mumbai

28) AdamBadura: Sacrifice Y3 Adambadura
Move G3 Bombay Mumbai
Move G3 Mumbai Goulo
Move G1 Bombay Mumbai

29) goulo: Discover G1 Goulo B1 Varkala
	AdamBadura: It's time to do some action. I hope I haven't missed any alternative and that in long term it will not be a mistake.

30) AdamBadura: Sacrifice R3 Adambadura
Attack B3 Goulo
Attack Y2 Goulo
Attack R1 Goulo

	goulo: Oh crap, I forgot about that whole "you don't need a red ship there to capture" thing. :/
	AdamBadura: I think you should have accepted the los of G. Now it seems you will loose the game instead. But maybe I'm mistaken?

Why do you think 3 and 2 initial stars are bad?
	goulo: Let's see, you have 11 ships, I have 6 ships...
	AdamBadura: I considered suggesting another undo but you already did one and also I didn't want to sound arrogant. :)

But if you want to we may start a new game and repeat it step by step to that point so you can chose a different approach. However it seems the situation was difficult for you anyway.
	AdamBadura: But I don't think the numer of ships we have has anything to do with sizes of stars we started with. Colors may do matter thou.
	goulo: 3 & 2 star seems bad because it really hurt my mobility to leave my star, as many of the 1-pyramids were gone when I wanted to move out.
	goulo: I doubt I was going to find a way to win this game after you pulled the trigger with the double invasion and threat to catastrophe in 2 places.
	goulo: BTW I just geekmailed the guy who taught me homeworlds to see if he wants to play 3-player with us. :)
	goulo: And now I pause to do "real world" stuff. :)
	AdamBadura: Great! Awaiting...


16324)
Started: 2010.5.19, Ended: 2010.6.9
Participants: AdamBadura (S), mathochist (N)
Winner: AdamBadura

1) mathochist: Homeworld R1 B2 G3
	mathochist: Hi there. Are you new to this game?
	AdamBadura: Not quite. But novious. I played 5 times.

2) AdamBadura: Homeworld B3 G1 R3

3) mathochist: B G1 Mathochist
	mathochist: I've played about twice that many.  It's a great game, I wish I had more people to play with offline.

4) AdamBadura: Build R1 Adambadura

5) mathochist: Trade G1 Y1 Mathochist

6) AdamBadura: Trade R1 Y1 Adambadura

7) mathochist: Build G1 Mathochist

8) AdamBadura: Build R1 Adambadura

9) mathochist: Build G1 Mathochist

10) AdamBadura: Trade R1 B1 Adambadura

11) mathochist: B Y1 Mathochist

12) AdamBadura: Build Y2 Adambadura

13) mathochist: Build Y2 Mathochist

14) AdamBadura: Trade Y2 G2 Adambadura

15) mathochist: Discover G1 Mathochist Y3 Cheerio

16) AdamBadura: Build Y2 Adambadura

17) mathochist: Sacrifice G3 Mathochist
Build G2 Cheerio
Build G2 Mathochist
Build G3 Mathochist

18) AdamBadura: Build G3 Adambadura

19) mathochist: Discover Y2 Mathochist G3 Kix

20) AdamBadura: Discover G3 Adambadura B2 Thevoid

21) mathochist: Sacrifice G3 Mathochist
Build Y2 Kix
Build Y3 Mathochist
Build G3 Mathochist

22) AdamBadura: Move Y1 Adambadura Thevoid

23) mathochist: Trade G1 R1 Mathochist

24) AdamBadura: Build Y3 Adambadura

25) mathochist: Move Y1 Mathochist Cheerio

26) AdamBadura: Build G1 Adambadura

27) mathochist: Sacrifice Y2 Kix
Move G1 Cheerio Thevoid
Move G1 Thevoid Adambadura
Catastrophe Adambadura G

28) AdamBadura: Trade G3 R3 Thevoid

29) mathochist: Trade Y1 B1 Mathochist

30) AdamBadura: Sacrifice Y2 Adambadura
Move Y3 Adambadura Mathochist
Move R3 Adambadura Mathochist

31) mathochist: Move B1 Mathochist Adambadura
	AdamBadura: A bit risky move but let us see the results... :)
	mathochist: well, that is a conundrum.
Hmm, this might take a little time.
	AdamBadura: I will wait... :)
	AdamBadura: But how long do I have to wait...?
	mathochist: Sorry, I had a busy start to the week and then I got sick and I've been sleeping a lot.  I'll get back to this tomorrow (after a few more hours' sleep).
	AdamBadura: OK No problem then...

32) AdamBadura: Sacrifice R3 Thevoid
Attack B1 Adambadura
Attack G3 Mathochist
Attack Y3 Mathochist

33) mathochist: Build R1 Mathochist
Catastrophe Mathochist R

34) AdamBadura: Sacrifice B1 Adambadura
Trade Y3 R3 Mathochist
	mathochist: Well, I had to try.
One more chance...  just to see what happens.

	AdamBadura: Yes. It seems that your next turn will be your last turn...
	mathochist: Yeah, you got me.  Good game!


16421)
Variants: "Sinister"
Started: 2010.5.19, Ended: 2010.5.23
Participants: zara2stra (S), goulo (N), AdamBadura (E)
Winner: goulo

1) goulo: Homeworld G1 B2 Y3
	AdamBadura: What are the victory conditions?
	zara2stra: Kill the one to the left?
	AdamBadura: Or be the last man standing?
	zara2stra: in f2f I usually play with kill the one to the left (or kill the bad/good one) because the victor of the first fight will usually be weakened and easier to attack.
	zara2stra: in a three player game that might lead to turtling... of course we can play LMS if you want :)
	AdamBadura: Hmmm... I haven't thought about the weakening aspect. Lets wait for goulo to see what he says.
	AdamBadura: And to establis some facts:
1) zara2stra is to the left of AdamBadura,
2) goulo is to the left of zara2stra
3) Adam Badura is to the left of goulo

right?
	AdamBadura: Also in case of "kill the one to the left" mode the winner is obvious. But what about second and third place? Is it so that eliminated player looses eliminating player wins and game continues? (In case of 3 players game only one player is left so he gets the second place.)
	zara2stra: Concerning the lefty compass - yes. Concerning the winner - in KTOTTL there's only the winner; the player who manages to destroy his neighbour fastest wins, the remaining players are loosers. I think that it's much nicer in the standard good/bad mode, but the standard game works best in f2f mode, and would be rather hard to pull off online.
	AdamBadura: There is another way in OMS mode. Untill now I only thought of two subvariants:
1) All ships of eliminated player are removed from the game (but not the homeworld - after all it can contain ships of other players).
2) All ships of eliminated player remain int he game as neutral (so they still can be captured or lead to overpopulation).

But there is a third subvariant which might solve the weakening problem:
3) The eliminating player takes control of all ships of the elimnated player.

However would that make him/her too strong? But on the other hand this would encourage players to try to eliminate one another ASAP.

Another question is what mode is implemented here.
	goulo: Hi! I selected the "sinister" (kill the guy on your left) variant.
	goulo: And I agree with the "who's on the left" summary earlier, given the north/east/south alignment we have. :)

2) AdamBadura: Homeworld G3 B1 R3

3) zara2stra: Homeworld G3 Y2 B3

4) goulo: Build Y1 Goulo

5) AdamBadura: Build R1 Adambadura

6) zara2stra: Build B1 Zara2stra

7) goulo: Build Y1 Goulo

8) AdamBadura: Trade R1 Y1 Adambadura
	goulo: Does the user interface show your homesystem at the bottom, as if you were looking at a live game on a table? I.e. I see zara at the top, adam on the left, and me on the bottom. Does adam see it with zara on left, adam on bottom, and goulo on right? Or is goulo on bottom for everyone?

9) zara2stra: Build B1 Zara2stra
	AdamBadura: I see me on bottom, goulo on right, zara2stra on left so the system is smart. And now it is easy to see whom I shall destroy :) and from who is going to attack me.

10) goulo: Trade Y1 R1 Goulo

11) AdamBadura: Build Y1 Adambadura

12) zara2stra: Trade B1 R1 Zara2stra

13) goulo: Build R1 Goulo

14) AdamBadura: Trade Y1 B1 Adambadura

15) zara2stra: Discover B1 Zara2stra G1 Alphacentauri

16) goulo: Build Y1 Goulo
	zara2stra: We come in peace :)

17) AdamBadura: Discover B1 Adambadura Y2 Coldandempty

18) zara2stra: Build B1 Alphacentauri

19) goulo: Discover R1 Goulo G3 Verda

20) AdamBadura: Trade B1 R1 Coldandempty

21) zara2stra: Move R1 Zara2stra Alphacentauri

22) goulo: Build R2 Verda

23) AdamBadura: Build R2 Adambadura
	goulo: We build in peace!

24) zara2stra: Trade B1 Y1 Alphacentauri

25) goulo: Move Y1 Goulo Verda

26) AdamBadura: Build Y2 Adambadura

27) zara2stra: Build R2 Alphacentauri

28) goulo: Trade Y1 B1 Goulo

29) AdamBadura: Trade Y1 B1 Adambadura

30) zara2stra: Move R1 Alphacentauri Zara2stra

31) goulo: Build B2 Goulo

32) AdamBadura: Build B2 Adambadura

33) zara2stra: Build B2 Alphacentauri

34) goulo: Move B1 Goulo Verda

35) AdamBadura: Trade B2 G2 Adambadura

36) zara2stra: Trade B1 G1 Alphacentauri

37) goulo: Build Y1 Verda

38) AdamBadura: Move G2 Adambadura Coldandempty

39) zara2stra: Discover B2 Alphacentauri G3 Mecatolrex

40) goulo: Discover R1 Verda Y2 Flava

41) AdamBadura: Move R2 Adambadura Flava

42) zara2stra: Move G1 Alphacentauri Mecatolrex

43) goulo: Move R1 Flava Verda

44) AdamBadura: Sacrifice G2 Coldandempty
Build R2 Coldandempty
Build R3 Flava

45) zara2stra: Move R2 Alphacentauri Mecatolrex
	AdamBadura: Its time to increase military fleet! Its time to go to war!

46) goulo: Build R3 Goulo

47) AdamBadura: Build R3 Adambadura

48) zara2stra: Move Y1 Alphacentauri Mecatolrex

49) goulo: Build Y1 Verda

50) AdamBadura: Move R3 Flava Mecatolrex
	goulo: Adam, you are dominating again!

BTW, are either or both of you interested in a game of Volcano or Martian Chess or Branches?

51) zara2stra: Sacrifice B2 Mecatolrex
Trade R2 G2 Mecatolrex
Trade Y1 G1 Mecatolrex
Catastrophe Mecatolrex G
	AdamBadura: I prefer this to Branches however I might try again. Those other two I don't know so I would better learn them first. :)
	zara2stra: I never played Martian Chess nor Branches, but I used to play Volcano with my wife - it's a fun game, and I'd be happy to play (although it would be best to start it during the weekend - I have a lot of work tommorow). 
	AdamBadura: This will be a bloody game... ;)

Pity that except for red ships I'm very weak... :)
	AdamBadura: goulo, we have to be careful! zara2stra is going into a very secure strategy. He wants us all to use all the 1-ships so we cannot use them as stars while invading his homeworld. We have to maintain at least one 1-size star system to terrorize him... :)
	AdamBadura: By the way, what are our policies for politics? :)

As it comes to me I am very pro-politics either explitly here or through private messages.

52) goulo: Trade R3 G3 Goulo
	zara2stra: This should mess things up a little :P
	zara2stra: I have nothing against politics, although IMO this game really shines with the standard alignment game; there's much more room for bluff and politics.
	goulo: for me the standard game seems very odd; there's simply no way to know if someone is good or evil, so it's essentially random guessing, or acting skills (like a party game like Werewolf, which I don't think of as very strategic or interesting, but maybe that's just me :)

53) AdamBadura: Discover R3 Adambadura G2 Thevoid

54) zara2stra: Build R2 Zara2stra

55) goulo: Sacrifice G3 Goulo
Build R3 Goulo
Build R3 Verda
Build B1 Verda
	zara2stra: Goulo, you're right that the game gets a new flavour - but which one you prefer is entirely a question of preferences. Contrary to what you say there is a way to know if a certain player is good or evil. It takes a good liar to deceive other players both with what he says and what he does.   
	zara2stra: All good players work in a team against the bad one(s). So usually they will be much more reluctant to actually attack someone, unless they are sure that they face an evil player. Evil players on the other hand, won't care who attacks who, and won't have any second thoughts on attacking other players - they have to kill only one player and that's it. 
	goulo: Except how do you know who the other good players are, to work "together" with them? And a bad player can also work in a team against the alleged bad ones. Then if he gets a chance to be the supposedly good player who kills the supposed bad player, he wins. And if some other good player kills another good player, the bad player is OK with that result too. :)

I agree there are psychological/social skills that can come into play, but it's a lot more nebulous. Usually in these kinds of games I end up with 2 different players staring at me with serious sincere faces pointing at each other and both saying "Russ, I'M not the evil one, HE is", and it's indistinguishable from random noise for me. Quite possibly I am simply too socially lame to do well in such games. :)

56) AdamBadura: Discover R2 Flava Y1 Nothingness

57) zara2stra: Build B2 Zara2stra

58) goulo: Move R3 Verda Coldandempty
	AdamBadura: The Good/Evil mode seems indeed like Mafia game.

I enjoyed that game a lot. However in this full-information-no-luck game it feels kind of wierd. But still I would gladly try it out.


By the way. What happens if someone kills a wrong player? If I would kill goulo than there is no way to win for zara2stra so the only possibilities are that either I win or non of us. Or maybe I would become zara2stra's new left player?


It is easy to see we are very militaristic this time. :) But I guess zara2stra that the catastrophe you made helped only goulo. I'm not sure whether that wasa good move... :)
	goulo: I believe if your left-hand target is eliminated by another player, then the former left-hand target of your now-dead target becomes your new left-hand target.
	goulo: I'm sure zara is happier having you and me each have 2 R3's instead of you, who wants to kill him, having 3 R3's. :)
	zara2stra: By killing goulo you would become my new target. 

As for the catastrophe; Any other move would get you 3 ships in a decent system (after sacrificing an R3). The situation was bad due to my error (not taking the r3 when it was available). Right now I helped goulo, but my military situation would be bad either way, and by aiding him I took a bit of strain off my back - after all, the only way for guolo to win is to kill you before you kill me.  

59) AdamBadura: Move R2 Nothingness Coldandempty
Catastrophe Coldandempty R

60) zara2stra: Discover B2 Zara2stra G1 Mostlyharmless
	AdamBadura: That costed me dearly. goulo keep in mind that if I am strong zara2stra have to play more defence against me than attack you. So in other words your safty is in my power. You should support me... :P

61) goulo: Discover Y1 Verda G2 Stelo
	zara2stra: Yeah, he should support you the same way you should support me: namely by trying to kill you at the same time ;)

62) AdamBadura: Build Y1 Adambadura

63) zara2stra: Trade B2 Y2 Mostlyharmless

64) goulo: Build B2 Goulo
	AdamBadura: I undid my move. Hope you didn't mind. Sorry. Somehow I missed that I can just build that Y ship...

65) AdamBadura: Move Y1 Adambadura Thevoid

66) zara2stra: Build B2 Zara2stra
	goulo: I don't mind an undo if it's done quickly. Otherwise there's the risk another player is already thinking about or typing their turn. :)

67) goulo: Build B3 Verda

68) AdamBadura: Build Y2 Thevoid

69) zara2stra: Move B2 Zara2stra Mostlyharmless

70) goulo: Discover B2 Goulo Y3 Freneza

71) AdamBadura: Build Y3 Adambadura

72) zara2stra: Build Y3 Mostlyharmless

73) goulo: Move B1 Verda Stelo

74) AdamBadura: Move B1 Adambadura Thevoid

75) zara2stra: Build B3 Mostlyharmless

76) goulo: Move B3 Verda Stelo

77) AdamBadura: Build B3 Thevoid

78) zara2stra: Sacrifice Y3 Mostlyharmless
Discover B3 Mostlyharmless G3 Betelgeuse
Move B2 Mostlyharmless Betelgeuse
Move Y2 Mostlyharmless Betelgeuse

79) goulo: Discover B2 Goulo Y3 Zamenhof

80) AdamBadura: Discover R3 Thevoid G1 Emptiness

81) zara2stra: Trade B2 G2 Betelgeuse

82) goulo: Discover B2 Zamenhof R2 Auld

83) AdamBadura: Move Y1 Thevoid Emptiness

84) zara2stra: Build G1 Betelgeuse

85) goulo: Build Y3 Goulo

86) AdamBadura: Move B1 Thevoid Emptiness

87) zara2stra: Trade G2 R2 Betelgeuse

88) goulo: Sacrifice Y3 Goulo
Move B2 Auld Adambadura
Move B3 Stelo Adambadura
Move B1 Stelo Adambadura
Catastrophe Adambadura Blue

89) AdamBadura: Build Y3 Thevoid

90) zara2stra: Build B1 Betelgeuse
	goulo: I just felt a disturbance in The Force...
	AdamBadura: :(

I knew you were trying to do that. Yet somehow I thought I am keeping my eyes on you... ;)

91) goulo: Trade B2 G2 Freneza
	AdamBadura: I think it is zara2stra's fault. He is not pushing you strong enough... ;D

92) AdamBadura: Sacrifice Y2 Adambadura
Discover Y2 Thevoid G1 Theendisnear
Move Y3 Thevoid Theendisnear
	zara2stra: Ships are needed to threaten, and you attacked me in a system where I was one step away from goulo - ideal place to take him off your back. Blame yourself :P

93) zara2stra: Sacrifice Y2 Betelgeuse
Move B1 Betelgeuse Goulo
Move B3 Betelgeuse Goulo
	goulo: Adam, it's all your fault, for not having won and ended the game before I had the chance to catastrophe your blue star. :)
	AdamBadura: :D
	AdamBadura: On the plus side now it will be difficult to catastrophe me as G is used mostly for stars... :)

94) goulo: Sacrifice R2 Verda
Attack B3S Goulo
Attack B1S Goulo

95) AdamBadura: Sacrifice Y3 Adambadura
Move Y1 Emptiness Zara2stra
Move Y2 Theendisnear Zara2stra
Move Y3 Theendisnear Zara2stra
Catastrophe Zara2stra Y

96) zara2stra: Build B1 Zara2stra
	zara2stra: here goes nothing - I hoped you would somehow miss it :)

97) goulo: Trade B1 G1 Goulo

98) AdamBadura: Trade B1 Y1 Emptiness

99) zara2stra: Trade R2 Y2 Zara2stra
	goulo: for some strange reason, there seem to be a lot more ships available again... :)
	AdamBadura: I'm considering group-attacking goulo... ;)

100) goulo: Trade B3 Y3 Goulo

101) AdamBadura: Move Y1 Emptiness Adambadura
	zara2stra: sorry 
	zara2stra: I forgot how close we all have become :P

102) zara2stra: Build Y2 Zara2stra

103) goulo: Build G2 Freneza

104) AdamBadura: Build Y2 Adambadura

105) zara2stra: Build R1 Zara2stra

106) goulo: Sacrifice Y3 Goulo
Move G2 Freneza Stelo
Move G2 Stelo Adambadura
Discover G2 Freneza Y2 Malfreneza

	AdamBadura: Good game. Another one?
	AdamBadura: (Obvioulsy I blame zara2stra for my failure... ;D)
	zara2stra: yeah obviously - were I to lay on my back and wait for you to rip my throat you would surely win :) Ok - I'm in for a rematch :)
	goulo: thanks! a good epic game! :)


16390)
Started: 2010.5.21, Ended: 2010.7.17
Participants: rootbier (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B3 G3

2) rootbier: Homeworld R2 B3 G3
	ZackStack: Rematch time! Have a good game :-)

3) ZackStack: Build G1 Zackstack

4) rootbier: Build G1 Rootbier

5) ZackStack: Trade G1 Y1 Zackstack

6) rootbier: Trade G1 Y1 Rootbier

7) ZackStack: Build G1 Zackstack

8) rootbier: Build G1 Rootbier

9) ZackStack: Discover G1 Zackstack B2 Globe

10) rootbier: Discover G1 Rootbier B1 Aubergine

11) ZackStack: Build G1 Zackstack

12) rootbier: Build G2 Rootbier

13) ZackStack: Move Y1 Zackstack Globe

14) rootbier: Discover G2 Rootbier B1 Uva

15) ZackStack: Trade G1 B1 Zackstack

16) rootbier: Build G1 Rootbier

17) ZackStack: Build Y1 Globe

18) rootbier: Sacrifice G3 Rootbier
Build G2 Uva
Build G2 Aubergine
Build G3 Rootbier

19) ZackStack: Build G3 Globe
	ZackStack: I hope you're enjoying your inside track to all the larger ships :-)
	rootbier: I'd say that's a pretty durn standard tactic - more bigger stronger.
	rootbier: You're not taking it easy on me I hope.

20) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build Y2 Rootbier
Build Y2 Rootbier
	ZackStack: Certainly not.  You put yourself in a good position.  I'll do my best to take you out of it :-)

21) ZackStack: Discover Y1 Globe R1 Crumb
	rootbier: Looks to be a pretty balanced spread right now.
	rootbier: No - I guess I'm a little better placed for growth.

22) rootbier: Trade Y1 R1 Rootbier

23) ZackStack: Sacrifice G3 Globe
Build G3 Globe
Build B2 Zackstack
Build Y1 Crumb

24) rootbier: Move Y2 Rootbier Aubergine

25) ZackStack: Trade B2 R2 Zackstack

26) rootbier: Sacrifice G3 Rootbier
Build Y2 Aubergine
Build Y3 Rootbier
Build R2 Rootbier

27) ZackStack: Sacrifice G3 Globe
Build G3 Globe
Build Y3 Globe
Build G3 Zackstack

28) rootbier: Sacrifice Y2 Rootbier
Move G1 Aubergine Globe
Move Y2 Aubergine Globe

29) ZackStack: Sacrifice Y3 Globe
Move G3 Globe Crumb
Move G1 Globe Crumb
Move Y1 Globe Zackstack

30) rootbier: Sacrifice Y2 Aubergine
Move G1 Globe Zackstack
Move G2 Uva Globe

31) ZackStack: Trade G3 Y3 Zackstack

32) rootbier: Sacrifice G1 Rootbier
Build G1 Zackstack

33) ZackStack: Sacrifice Y3 Zackstack
Move R2 Zackstack Globe
Move R2 Globe Aubergine
Move R2 Aubergine Rootbier
Catastrophe Rootbier Red
	rootbier: Thanks for your patience while I was away.

34) rootbier: Sacrifice G2 Aubergine
Build G2 Zackstack
Build G3 Uva
Catastrophe Zackstack G
	ZackStack: No problem.  I'm always willing to wait for a good opponent!  Nice move by the way...
	rootbier: Looked like a nice way to press you a little. Question now is: How much am I willing to lose to press you further?

35) ZackStack: Move Y1 Crumb Rootbier
	rootbier: Let's see where this goes.
	ZackStack: Noplace pleasant I'm sure... ;-)

36) rootbier: Move G2 Globe Rootbier

37) ZackStack: Sacrifice G3 Crumb
Build Y2 Rootbier
Build Y2 Rootbier
Build Y3 Zackstack
Catastrophe Rootbier Yellow
	rootbier: Ajjhh - you did indeed red warp cat me.
New shape of the known universe.

38) rootbier: Build G1 Rootbier

39) ZackStack: Build G1 Crumb
	rootbier: Too many options! Choice freeze!

40) rootbier: Trade G1 Y1 Rootbier
	ZackStack: Woot! That's why we play isn't it? :-)

41) ZackStack: Build Y2 Crumb
	rootbier: Bah! You did it without losing your 3 -- I didn't look far enough down that line.
	ZackStack: I forgive you ;-)

42) rootbier: Sacrifice G2 Uva
Build Y2 Globe
Build Y3 Rootbier
	rootbier: I made my big mistake there -- I'll keep it simple (and safe?) for now.

Actually of to Tel&#269; (Czech Republic) in the morning for some workshops/conferences -- won't hear from me again until some time on Monday. Sorry for the summer slowdown :)
	ZackStack: Enjoy your conference!  I'll be here when you get back :-)

43) ZackStack: Trade Y3 G3 Zackstack

44) rootbier: Discover Y1 Rootbier G2 Greengrape

45) ZackStack: Discover B1 Zackstack G2 Verde

46) rootbier: Move G2 Rootbier Verde

47) ZackStack: Build B1 Verde
	ZackStack: Whew... That was close.  I'd rather not hand you the game quite yet... ;-)

48) rootbier: Sacrifice G3 Uva
Build G1 Verde
Build G3 Verde
Build Y3 Rootbier
Catastrophe Verde G

49) ZackStack: Build Y3 Zackstack

50) rootbier: Sacrifice Y2 Globe
Move Y2 Globe Zackstack
Move Y1 Greengrape Zackstack
Catastrophe Zackstack Y

51) ZackStack: Build G1 Zackstack

52) rootbier: Trade Y3 G3 Rootbier

53) ZackStack: Trade G1 Y1 Zackstack
	ZackStack: Clearly that was unexpected :-)

54) rootbier: Build Y1 Rootbier
	rootbier: In past I have waited far too long to address threats on my second star.

55) ZackStack: Build Y2 Zackstack
	rootbier: Hmmm... not sure if I should - but yeah I will.

56) rootbier: Discover Y1 Rootbier G2 Huh
	ZackStack: You took my bait!  Now only if I knew *why* I set that bait... :-)

57) ZackStack: Trade Y1 B1 Zackstack
	rootbier: Ha hah. Well. You're not bad off. I have two 3s against your one 3 and many smaller :/ Not quite sure why I took it. Guess I love the destruction(?)

58) rootbier: Build Y1 Rootbier
	rootbier: "I guess I will do that," he said plaintively.

59) ZackStack: Discover B1 Zackstack Y2 Sunspot

60) rootbier: Build Y3 Huh

61) ZackStack: Move B1 Sunspot Rootbier

	rootbier: oh right - too long sighted to what was right there. one move action too far away to stop you.


16453)
Variants: "Sinister"
Started: 2010.5.23, Ended: 2010.5.27
Participants: goulo (S), zara2stra (N), AdamBadura (E)
Winner: goulo

1) zara2stra: Homeworld G3 Y1 B3

2) AdamBadura: Homeworld G1 B2 R3

3) goulo: Homeworld B3 G2 Y3

4) zara2stra: Build B1 Zara2stra
	goulo: have fun!

5) AdamBadura: Build R1 Adambadura
	zara2stra: Just after ending the previous game I realized the flaw of this mod. Since you exactly know who you are after and who's after you, the third player can choose exactly the same planet sizes for his homeworld to draw himself near to his designated enemy. No, I didn't want to share it before the start of this game ;)
	AdamBadura: Yes. Indeed. In two players mode this is not a good strategy but in this mode it might be.

6) goulo: Build Y1 Goulo
	goulo: maybe, maybe not. i think only testing would tell. :)

7) zara2stra: Build B1 Zara2stra

8) AdamBadura: Trade R1 Y1 Adambadura

9) goulo: Trade Y1 G1 Goulo

10) zara2stra: Trade B1 R1 Zara2stra

11) AdamBadura: Build Y1 Adambadura

12) goulo: Build G1 Goulo

13) zara2stra: Trade B1 G1 Zara2stra

14) AdamBadura: Trade Y1 B1 Adambadura

15) goulo: Trade G1 R1 Goulo

16) zara2stra: Build B1 Zara2stra

17) AdamBadura: Build Y1 Adambadura

18) goulo: Build R1 Goulo

19) zara2stra: Trade B1 Y1 Zara2stra

20) AdamBadura: Build Y2 Adambadura

21) goulo: Build Y2 Goulo

22) zara2stra: Build B1 Zara2stra

23) AdamBadura: Discover Y1 Adambadura G3 Neighbourhood

24) goulo: Discover Y2 Goulo G1 Arbeto

25) zara2stra: Discover G1 Zara2stra B2 Hyperion

26) AdamBadura: Build Y2 Neighbourhood

27) goulo: Move R1 Goulo Arbeto

28) zara2stra: Build G2 Hyperion

29) AdamBadura: Build B1 Adambadura

30) goulo: Build Y2 Goulo

31) zara2stra: Move Y1 Zara2stra Hyperion

32) AdamBadura: Move B1 Adambadura Neighbourhood

33) goulo: Build Y3 Arbeto

34) zara2stra: Build Y3 Hyperion

35) AdamBadura: Build Y3 Adambadura

36) goulo: Trade Y2 B2 Goulo

37) zara2stra: Trade G1 R1 Hyperion

38) AdamBadura: Discover Y1 Adambadura G3 Nextdoor

39) goulo: Build Y2 Goulo

40) zara2stra: Build R2 Hyperion

41) AdamBadura: Build R2 Adambadura

42) goulo: Build R2 Arbeto

43) zara2stra: Discover Y3 Hyperion B3 Endymion

44) AdamBadura: Move R2 Adambadura Neighbourhood

45) goulo: Move B2 Goulo Arbeto

46) zara2stra: Move R1 Hyperion Endymion

47) AdamBadura: Trade Y1 G1 Neighbourhood

48) goulo: Discover G1 Goulo Y1 Egiptujo

49) zara2stra: Build G2 Hyperion

50) AdamBadura: Discover Y1 Nextdoor B1 Nextstreet

51) goulo: Move Y3 Arbeto Hyperion

52) zara2stra: Sacrifice Y3 Endymion
Move G2 Hyperion Endymion
Move G2 Hyperion Endymion
Move Y1 Hyperion Endymion

53) AdamBadura: Build Y3 Neighbourhood
	zara2stra: Sorry guys, I'm still in work and I had a lot to do. Didn't have a chance to drop by earlier.

54) goulo: Sacrifice R1 Arbeto
Attack R2N Hyperion

55) zara2stra: Build G2 Endymion
	goulo: no problem, that's why we're playing by email/web and not real-time. :)

56) AdamBadura: Build B2 Neighbourhood

57) goulo: Build B3 Arbeto

58) zara2stra: Move G2 Endymion Adambadura

59) AdamBadura: Attack G2N Adambadura
	AdamBadura: I wonder what zara2stra meant with this move.

I am eager to see but somehow command:
attack G2 AdamBadura
claims that:
"The ship G2 could not be found in the AdamBadura system."

What to do now?

And by the way: if both of you would have the same ship in my system how would I tell which one to attack?
	zara2stra: in the help, it says you should attack with a player designation so to attack my g2 you should attack g2n adambadura

60) goulo: Trade B3 G3 Arbeto
	AdamBadura: It helped. Thanks! I two players mode it allowed to skip player mark and so I didn't new it is required.

61) zara2stra: Move G2 Endymion Adambadura

62) AdamBadura: Move G2 Adambadura Endymion

63) goulo: Build G3 Egiptujo

64) zara2stra: Attack G2E Endymion

65) AdamBadura: Attack G2N Adambadura

66) goulo: Move G3 Egiptujo Hyperion

67) zara2stra: Build R1 Endymion

68) AdamBadura: Build B3 Adambadura

69) goulo: Sacrifice Y2 Goulo
Move G1 Egiptujo Neighbourhood
Move G3 Arbeto Neighbourhood
Catastrophe Neighbourhood G

70) zara2stra: Move G2 Endymion Adambadura
	goulo: Who could resist killing 7 enemy ships in a supernova? :)
	goulo: Or 6, I forget how many exactly. :)

71) AdamBadura: Discover G2 Adambadura Y3 Endlessrage

72) goulo: Build G1 Hyperion
	AdamBadura: So as I see kill the one on your left was changed to kill AdamBadura... ;)
	goulo: No, just good old fashioned "hurt the guy with the most ships AND the most 3-ships". :) After that result, we all became more equal.

73) zara2stra: Sacrifice G2 Endymion
Build G1 Adambadura
Build G2 Adambadura
Catastrophe Adambadura G
	zara2stra: besides, as I see it, goulo needed the supplies in the yellow stash :P I see this as an opportunity to use a plan he thwarted few turns earlier
	zara2stra: Anyway, what does this button do?

74) AdamBadura: Sacrifice Y2 Adambadura
Discover B1 Adambadura G1 Runaways
Move B3 Adambadura Runaways

75) goulo: Sacrifice G3 Hyperion
Build Y1 Hyperion
Build Y2 Arbeto
Build Y2 Goulo
	zara2stra: forgot to add the catastrophe part
	AdamBadura: I don't know how I missed that way... :(
	zara2stra: The first time I tried it goulo took the last g ship from the stash

76) zara2stra: Trade R1 G1 Endymion
	AdamBadura: Now I have to twice that careful. The game really got complex with goulo attacking me instead of zara2stra ;) and now loosing one of my stars... :(
	zara2stra: But that was normal - your fleet heeded his way.
	zara2stra: I mean, most of the time players plot to get as close to their target with as large fleet as possible, occasionally thwarting plans of the player who tries to get them. 
	zara2stra: I mean, most of the time players plot to get as close to their target with as large fleet as possible, occasionally thwarting plans of the player who tries to get them. 
	goulo: Wow, i come back from lunch, and man! What a mess you guys have made in the galaxy!

77) AdamBadura: Trade Y1 B1 Nextstreet

78) goulo: Build G2 Hyperion

79) zara2stra: Build G2 Endymion

80) AdamBadura: Sacrifice Y3 Adambadura
Move B1 Runaways Goulo
Move B3 Runaways Goulo
Move B1 Nextstreet Goulo
Catastrophe Goulo B

81) goulo: Discover Y2 Arbeto R2 Rubeno

82) zara2stra: Trade G2 Y2 Endymion
	AdamBadura: However I am afraid this might have allowed zara2stra to win.

So consider goulo securing me for some time. As stupid as it sounds keep in mind that I am an easy target now and if zara2stra wins you will not... ;)

83) AdamBadura: Build G1 Endlessrage

84) goulo: Build R1 Hyperion

85) zara2stra: Sacrifice Y2 Endymion
Move B3 Zara2stra Adambadura
Move B1 Zara2stra Adambadura

86) AdamBadura: Attack B3N Adambadura

87) goulo: Sacrifice Y3 Hyperion
Move R1 Goulo Zara2stra
Move R1 Hyperion Zara2stra
Move R2 Hyperion Zara2stra
Catastrophe Zara2stra R
	zara2stra: check
	zara2stra: ooops, should probably take that back - but in a live game I would really miss that possibility :(
	zara2stra: Ok, I take the last statement back - it seems that it was a good move after all :) 
	zara2stra: for several minutes after the last move I thought that goulo will be able to catastrophe me with red in my HS
	zara2stra: oh but he will - excuse me, I'm really tired ;)
	zara2stra: shitshitshit - ROTFL. I just explained how to win to my oponent. Note to self for future plays: do not make hasty moves after a several hour brake from analysing the situation.
	zara2stra: I just described my hilarious mistake on Blip. Folko sends his regards :)
	AdamBadura: Hmmm... I agree to undo your last move since you have seen it before I did and I guess befor goulo did as well. So if you still want to undo and goulo doesn't mind the do it. Otherwise let me know to continue.
	goulo: Ummm. what a strange chat sequence! I guess take it back, given our convention so far in this game. And perhaps next game we should simply play with the No Undo option to avoid these confusing dilemmas. :) 
	goulo: By the way, convince Folko to start playing at superdupergames! I told him about it, but he is lazy and distracted. :)
	zara2stra: naah, I won't undo it - that's exactly the kind of error that often happens during a live game. I'll try to talk Folko into playing here - I think he would like it:) And BTW - Homeworlds once more? or maybe something light like Blam! I would also like to try the online interpretation of Alien City, but it's two player only. 

	AdamBadura: So lets goulo finish the game properly.

I would gladly play another one. Also I want to play Skurðir but they don't have it here.
	AdamBadura: By the way I wonder what did you intend to do now after moving those two B ships into my homeworld? Did you count on goulo to finish me off (as you already cooparted in the past agains me... :P)?
	AdamBadura: Sacrificing a G ship. Now I see it. Nice. A close game. Saddly not for me... ;)
	goulo: thanks for the game!
I will happily play this again, as well as Blam, Branches, Martian Chess, Subdivision, all of which are neat little pyramid games I've played in real life and here online. Adam, will you join us for Blam? And do either of you want to play any of the others as well?

I've never played Alien City but always heard it's good. Feel free to challenge me, zara.
	AdamBadura: I never played Blam. I don't know the rules so start without me if you want to as I don't know when I will read them.
	zara2stra: Ok, I'll challenge you during the weekend - I have a business trip to Pozna&#324; tommorow, so for most of the time I won't have access to a computer. As for Homeworlds and Blam, we can start today :) Thanks for the game.
	zara2stra: Adam, the rules for blam are easy - you place pyramids on a chessboard and all surrounding pyramids move away from the piece you place. The goal is for pyramids to fall from the board. You take your pyramids to use them again, and take any pieces from other players as trophies. that's all :)
	AdamBadura: Seems easy enogh. You may challange me as well... :)


16363)
Variants: "Hard time"
Started: 2010.5.24, Ended: 2010.6.16
Participants: Jesse (S), rootbier (N)
Winner: Jesse

1) rootbier: Homeworld B1 Y3 G3

2) Jesse: Homeworld G2 B1 B3 *

3) rootbier: Build G1 Rootbier

4) Jesse: Build B1 Jesse

5) rootbier: Build G1 Rootbier
	rootbier: all the tricks :) schooling again thanks.
	rootbier: or... no. that doesn't work that way... hmm.

6) Jesse: Trade B3 Y3 Jesse

7) rootbier: Discover G1 Rootbier Y2 Procra
	rootbier: who are you and what have you done with Jesse?
	Jesse: Heh.  Good question.  Apparently my brain has severe gas this morning.  I'll just correct that, if you don't mind.

8) Jesse: Build B2 Jesse
	rootbier: Some catastrophes you just can't feel good about eh?

9) rootbier: Build G1 Procra

10) Jesse: Discover B2 Jesse G3 Canada
	Jesse: Indeed.  Usually I'm the one giving a newbie a second chance when they make some silly oversight.  I guess karma has to count for something.
	rootbier: Feel free to pretend I am a newbie at some point.

11) rootbier: Discover G1 Procra B3 Stinat

12) Jesse: Build B2 Canada
	Jesse: Should the need arise, you've got a deal.

13) rootbier: Sacrifice G3 Rootbier
Build G2 Procra
Build G2 Stinat
Build G3 Rootbier

14) Jesse: Build B2 Jesse



16433)
Variants: "Hard time"
Started: 2010.5.24, Ended: 2010.6.8
Participants: rootbier (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B2 Y1 G3

2) rootbier: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) rootbier: Build G1 Rootbier

5) SilentTitan: Trade G1 B1 Silenttitan

6) rootbier: Trade G1 Y1 Rootbier

7) SilentTitan: Discover B1 Silenttitan G3 All

8) rootbier: Build Y1 Rootbier

9) SilentTitan: Build B1 All

10) rootbier: Discover Y1 Rootbier G2 Pesto

11) SilentTitan: Build B2 All

12) rootbier: Build Y2 Rootbier

13) SilentTitan: Trade B2 Y2 All

14) rootbier: Trade Y1 R1 Rootbier

15) SilentTitan: Build B2 All

16) rootbier: Trade Y2 B2 Rootbier

17) SilentTitan: Sacrifice Y2 All
Discover B1 All Y2 Ball
Move B2 All Silenttitan

18) rootbier: Move R1 Rootbier Ball

19) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Ball
Build B3 All
Build B3 Silenttitan

20) rootbier: Move B2 Rootbier Pesto

21) SilentTitan: Sacrifice B3 All
Trade B3 R3 Ball
Trade B3 G3 Silenttitan
Trade B1 R1 All

22) rootbier: Build G1 Rootbier

23) SilentTitan: Attack R1S Ball
	rootbier: Rinse and repeat :/

24) rootbier: Trade G3 R3 Rootbier

25) SilentTitan: Sacrifice G3 Silenttitan
Build B1 Ball
Build B3 Ball
Build B3 Silenttitan

26) rootbier: Build B3 Pesto

27) SilentTitan: Sacrifice B2 Silenttitan
Trade B3 Y3 Ball
Trade B1 R1 Ball

28) rootbier: Build G1 Rootbier

29) SilentTitan: Move R1 Ball Rootbier

30) rootbier: Sacrifice B2 Pesto
Trade R3 B3 Rootbier
Trade B3 R3 Pesto

31) SilentTitan: Trade R1 B1 Rootbier
	rootbier: What's that chirping sound?

32) rootbier: Trade B3 R3 Rootbier
	rootbier: Sounded a bit like an Eastern Bluebird, but without visual confirmation I can't really say with any certainty.

33) SilentTitan: Trade Y3 G3 Ball
	rootbier: all the jokey ribbing :P in the world wouldn't have saved me if i'd let that sit :)

34) rootbier: Attack B1 Rootbier

35) SilentTitan: Build B2 Ball
	rootbier: Ooh. I see that you do indeed have me in a bind. I'll end up having to sab my b3 to get out of this - knew i should have done it in the first place.

36) rootbier: Move B1 Rootbier Pesto

37) SilentTitan: Trade B2 Y2 Ball
	SilentTitan: I couldn't push the button fast enought to catch you on the no red in your homeworld move
	rootbier: Hmm... maybe you weren't planning what I thought you were planning. You really had me in trouble there.

38) rootbier: Build B2 Pesto
	rootbier: Why did you switch the y3? You could have totally pulled off the move I think you were planning with the y3 and the little reds.

39) SilentTitan: Sacrifice G3 Ball
Build B2 Ball
Build B3 Ball
Build B3 Silenttitan

40) rootbier: Trade R3 G3 Pesto

41) SilentTitan: Sacrifice B2 Ball
Trade B3 R3 Silenttitan
Trade B3 Y3 Silenttitan

42) rootbier: Discover B1 Pesto G3 Flaco

43) SilentTitan: Sacrifice Y2 Ball
Move R3 Silenttitan All
Move R3 All Pesto
	SilentTitan: you know ...  that's a good question...I thought I had a great idea ... but then I quess I much have lost track of what I was doing... happens I guess
	SilentTitan: much = must
	rootbier: way i saw it i was at best going to lose my size 3 at home along with your three little reds at the sacrifice of your y3 - now that doesn't seem like a great trade off but you'd have been a good deal ahead on position and remaining shipage -- might be okay either way

44) rootbier: Sacrifice G3 Pesto
Build B2 Pesto
Build B3 Flaco
Build R1 Rootbier

45) SilentTitan: Trade B3 Y3 Ball

46) rootbier: Move R1 Rootbier Pesto

47) SilentTitan: Sacrifice Y3 Ball
Move R3 Pesto Rootbier
Move R3 Ball Rootbier
Move B1 Ball Rootbier

48) rootbier: Build R2 Rootbier
Catastrophe Rootbier R

49) SilentTitan: Sacrifice R1 All
Attack G1S Rootbier

50) rootbier: Move B2 Pesto Rootbier

51) SilentTitan: Build B3 Rootbier
Catastrophe Rootbier B



16327)
Variants: "Hard time"
Started: 2010.5.24, Ended: 2010.6.9
Participants: dlwillson (S), rootbier (N)
Winner: dlwillson

1) rootbier: Homeworld Y1 B2 G3

2) dlwillson: Homeworld Y3 B1 G3

3) rootbier: Build G1 Rootbier

4) dlwillson: Build G1 Dlwillson

5) rootbier: Trade G1 Y1 Rootbier

6) dlwillson: Trade G1 B1 Dlwillson

7) rootbier: Build Y1 Rootbier

8) dlwillson: Build B1 Dlwillson

9) rootbier: Discover Y1 Rootbier G3 Calabash

10) dlwillson: Discover B1 Dlwillson G2 Bottlegourd

11) rootbier: Build Y2 Calabash

12) dlwillson: B B2 Bottlegourd

13) rootbier: Move Y2 Calabash Bottlegourd

14) dlwillson: B B2 Dlwillson

15) rootbier: Sacrifice G3 Rootbier
Build Y2 Calabash
Build Y2 Bottlegourd
Build Y3 Rootbier

16) dlwillson: Trade B2 R2 Dlwillson

17) rootbier: Build Y3 Bottlegourd

18) dlwillson: Sacrifice R2 Dlwillson
A Y2 Bottlegourd
A Y2 Bottlegourd

19) rootbier: Trade Y1 R1 Rootbier

20) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Bottlegourd
Build B2 Bottlegourd
Build B3 Dlwillson

21) rootbier: Sacrifice Y2 Calabash
Discover Y3 Bottlegourd G3 Butternut
Move Y1 Calabash Bottlegourd
Catastrophe Bottlegourd Y

22) dlwillson: Sacrifice B2 Bottlegourd
Trade B3 G3 Dlwillson
Trade B2 R2 Bottlegourd

23) rootbier: Trade Y3 G3 Rootbier

24) dlwillson: B B2 Dlwillson

	dlwillson: good game, thank you


16325)
Started: 2010.5.24, Ended: 2010.6.18
Participants: TwoShort (S), rootbier (N)
Winner: TwoShort

1) rootbier: Homeworld Y1 B2 G3

2) TwoShort: Homeworld R1 B3 G3

3) rootbier: Build G1 Rootbier

4) TwoShort: Build G1 Twoshort

5) rootbier: Trade G1 R1 Rootbier

6) TwoShort: Trade G1 Y1 Twoshort

7) rootbier: Build R1 Rootbier

8) TwoShort: Build Y1 Twoshort

9) rootbier: Build R2 Rootbier

10) TwoShort: Build Y2 Twoshort

11) rootbier: Trade R2 Y2 Rootbier

12) TwoShort: Discover Y1 Twoshort G2 Grogar

13) rootbier: Build R2 Rootbier
	rootbier: Professor Slogar is determind to creat the perfect groom for her daughter?

14) TwoShort: Trade Y2 R2 Twoshort
	TwoShort: Yes!  Well, sort of: Keith Baker and I are old friends and a long time ago we would both have thought of 'Grogar' as a giant green monster; add some years and some free-associating to get 'Grogar' the monstrous teddy bear in his mind and 'Grogar' the green star name in mine...

15) rootbier: Discover R2 Rootbier G3 Popsicle
	rootbier: Rad 'nuff.

I have to say it's a really pretty game and a great mechanic (stacking the clear cards) - but I don't get a lot of (re)play out of it.

You guys used to crawl/campaign together? Or?
Are you also a designer/writer?
Do you have a BGG account? Link me so I can check your collection :P :D
	TwoShort: Keith and I have been best friends since we met in college..let's see...20 years ago!?!  Yikes! I'm old!  We've mostly lived in the same cities since, until he moved a couple months ago :(

Anyway:
 -Gloom is fun, but not exactly my thing either. I go more for the gear-headed: recent game-night favorites are Dominion and Small World.
 -Professionally, I'm a software engineer.  I've got a play-tester credit on Gloom, and probably some D&D stuff, but that's about the extent of my game career.
 - No BGG account, but my collection is easily described:  Many Icehouse pyramids.  One of everything else by Looney Labs.  A random assortment of stuff that didn't fit in Keiths car when he moved :)

So how did you come across Homeworlds?  It shouldn't, but it still surprises me when people I don't know play Icehouse games. :)
	rootbier: First time I encountered pyramids was err... 8 years ago(?)... playing Zendo with a best friend's kind-of-brother-in-law and his geekforce. Kind of got sucked into gaming properly a couple years ago - hanging out with this German chick at the international student village we were living in (I've been studying in Norway for the last three years).

I hear good things about Small World but haven't gotten to play it yet. I only get to play things I buy - which means --- things I bought last summer when I was back home for the first time. Even still it's mostly been just a lot of Carcassonne - which is fun but --- I wish my friends here were a bit more willing to mix it up.

Anyway - one of the things I brought back here with me was 5 Treehouse/Icehouse sets. So I've been trying to spread a bit of homeworlds to other folks. ... I should be studying for tomorrow's exam. :/

16) TwoShort: Build Y2 Twoshort

17) rootbier: Discover R1 Rootbier B3 Aubergine
	rootbier: I was studying for the wrong exam -- genius. I think I still probably pulled off a C without having read a page. Which is considered fine here - not by my standards but by the country's. I am switching programs anyway - so I am not too bothered. Though I imagine I could have aced it had I checked to see which one was coming.

Extra bonus: I won't have to study much for the one that happens next week.

18) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Grogar
Build Y3 Twoshort

19) rootbier: Sacrifice G3 Rootbier
Build R2 Popsicle
Build R3 Aubergine
Build R3 Rootbier
	rootbier: such a tease - aaargh

20) TwoShort: Move Y3 Grogar Popsicle
	rootbier: forgot i had my own to do :)

21) rootbier: Sacrifice Y2 Rootbier
Discover R2 Popsicle Y2 Maniac
Move R2 Popsicle Maniac

22) TwoShort: Build Y3 Grogar

23) rootbier: Trade R1 G1 Aubergine

24) TwoShort: Move Y3 Popsicle Maniac

25) rootbier: Discover R2 Maniac G1 Pollen

26) TwoShort: Trade Y2 G2 Twoshort

27) rootbier: Move R2 Maniac Aubergine

28) TwoShort: Build Y2 Twoshort

29) rootbier: Trade R3 G3 Rootbier

30) TwoShort: Build G1 Twoshort

31) rootbier: Build G2 Rootbier

32) TwoShort: Build G3 Twoshort

33) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build G3 Aubergine
Build R1 Pollen

34) TwoShort: Trade G1 B1 Twoshort

35) rootbier: Trade G2 B2 Rootbier
	rootbier: you're going to do something exciting soon right... :/

36) TwoShort: Move B1 Twoshort Grogar
	TwoShort: Something exiting like sacrificing all my 3 pointers one after another to win?  Soon. :)
	rootbier: well there's only so much building i can still do and then i'll just have to pass pass pass

37) rootbier: Discover B2 Rootbier B3 Thpppbt

38) TwoShort: Sacrifice G3 Twoshort
Build B1 Grogar
Build B1 Grogar
Build G1 Twoshort
	TwoShort: Yeah, once I got the yellow monopoly it was just a matter of time.  Anyway... Victory in 5.

39) rootbier: Sacrifice G3 Aubergine
Build G2 Rootbier
Build R3 Rootbier
Build G3 Aubergine

40) TwoShort: Sacrifice Y3 Twoshort
Discover B1 Grogar Y3 Yonder
Move B1 Grogar Yonder
Move B1 Grogar Yonder

41) rootbier: Sacrifice B2 Thpppbt
Trade R3 B3 Aubergine
Trade R2 B2 Pollen

42) TwoShort: Sacrifice Y3 Grogar
Move B1 Yonder Rootbier
Move B1 Yonder Rootbier
Move B1 Yonder Rootbier
Catastrophe Rootbier Blue

	rootbier: Now I remember where we were :)
Thanks for your patience while I was away.


16452)
Started: 2010.5.24, Ended: 2010.11.7
Participants: dethdukk (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld Y1 B2 G3

2) dethdukk: Homeworld R3 B2 G3

3) rootbier: Build G1 Rootbier

4) dethdukk: Build G1 Dethdukk

5) rootbier: Trade G1 Y1 Rootbier

6) dethdukk: Trade G1 Y1 Dethdukk

7) rootbier: Build Y2 Rootbier

8) dethdukk: Build Y2 Dethdukk

9) rootbier: Trade Y1 R1 Rootbier

10) dethdukk: Build G1 Dethdukk

11) rootbier: Build G1 Rootbier

12) dethdukk: Discover G1 Dethdukk G1 Green

13) rootbier: Trade G1 B1 Rootbier
	rootbier: poke
	dethdukk: hey sorry, my life kicked my ass and I dropped out of sdg for a number of months...  I'll see if i can get back into it.



16462)
Variants: "Hard time"
Started: 2010.5.24, Ended: 2010.6.13
Participants: rootbier (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B3 Y2 G3

2) rootbier: Homeworld B1 Y3 G3

3) Uglyfoot: Build G1 Uglyfoot
	rootbier: I'm back for more school. :)
	Uglyfoot: OK.  Let the lesson in pain begin.  Mwua-ha-ha!

4) rootbier: Build G1 Rootbier
	Uglyfoot: ;>

5) Uglyfoot: Discover G1 Uglyfoot R1 Step

6) rootbier: Discover G1 Rootbier Y2 Son

7) Uglyfoot: Build G1 Uglyfoot

8) rootbier: Build G2 Rootbier

9) Uglyfoot: Trade G1 Y1 Uglyfoot

10) rootbier: Discover G1 Son B1 Daughter

11) Uglyfoot: Build G1 Uglyfoot

12) rootbier: Build G2 Daughter

13) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Step

14) rootbier: Trade G2 Y2 Daughter

15) Uglyfoot: Trade G2 R2 Uglyfoot

16) rootbier: Build G2 Daughter

17) Uglyfoot: Build G2 Step

18) rootbier: Sacrifice Y2 Daughter
Move G1 Daughter Uglyfoot
Move G1 Uglyfoot Step
Catastrophe Step G

19) Uglyfoot: Move R2 Uglyfoot Daughter

20) rootbier: Build G1 Daughter

21) Uglyfoot: Attack G2 Daughter

22) rootbier: Build G1 Daughter

23) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Daughter
Build G3 Uglyfoot
Build G3 Uglyfoot
Catastrophe Daughter G

24) rootbier: Trade G2 B2 Rootbier

25) Uglyfoot: Discover G3 Uglyfoot Y1 Links

26) rootbier: Build B1 Rootbier

27) Uglyfoot: Discover G3 Links Y2 Forward

28) rootbier: Trade B1 R1 Rootbier

29) Uglyfoot: Move Y1 Uglyfoot Daughter



16467)
Started: 2010.5.26, Ended: 2010.7.19
Participants: dethdukk (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) dethdukk: Homeworld B2 R3 G3
	SilentTitan: been playing for a while now.... time to take you down.


3) SilentTitan: Build G1 Silenttitan

4) dethdukk: Build G1 Dethdukk

5) SilentTitan: Trade G1 Y1 Silenttitan

6) dethdukk: Trade G1 Y1 Dethdukk

7) SilentTitan: Build G1 Silenttitan

8) dethdukk: Build G1 Dethdukk

9) SilentTitan: Discover G1 Silenttitan Y3 Crazy
	SilentTitan: ha .... I almost trapped you into that move


10) dethdukk: Trade G1 R1 Dethdukk
	dethdukk: yeah, I miscounted moves, then realized that I had when I submitted

11) SilentTitan: Build G1 Silenttitan

12) dethdukk: Build R1 Dethdukk
	dethdukk: gotcha out of red methinks... so the real question is if it will matter

13) SilentTitan: Build G1 Crazy

14) dethdukk: Build G2 Dethdukk

15) SilentTitan: Discover G1 Crazy B2 Mispelled

16) dethdukk: Discover G2 Dethdukk Y1 Leaps

17) SilentTitan: Build G2 Crazy

18) dethdukk: Move R1 Dethdukk Leaps

19) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Mispelled
Build G3 Silenttitan
Build G3 Silenttitan

20) dethdukk: Build R2 Leaps

21) SilentTitan: Trade G2 Y2 Mispelled

22) dethdukk: Move R2 Leaps Mispelled

23) SilentTitan: Sacrifice Y2 Mispelled
Discover G1 Mispelled R3 Danger
Discover G3 Silenttitan B3 Group



16360)
Started: 2010.5.27, Ended: 2010.6.2
Participants: ZackStack (S), goulo (N)
Winner: ZackStack

1) goulo: Homeworld G1 B2 Y3

2) ZackStack: Homeworld B1 R3 G3
	goulo: hi, have fun!
	ZackStack: You too! Thanks for the challenge!

3) goulo: Build Y1 Goulo

4) ZackStack: Build G1 Zackstack

5) goulo: Trade Y1 G1 Goulo
	ZackStack: Have you played Homeworlds very much?
	goulo: 10 times. More than a newbie, but less than you. :)

6) ZackStack: Build G2 Zackstack
	ZackStack: Fair enough!  I like to give the true newbies some tips when they do something particularly perplexing ;-)

7) goulo: Build G2 Goulo
	goulo: I'm open to tips, or general chat about strategy. Especially if I've already done something particularly perplexing. :)

8) ZackStack: Trade G2 Y2 Zackstack

9) goulo: Trade G1 R1 Goulo
	ZackStack: Well... I wondered if you'd try mutual annihilation last turn (I have yet to see what SDG makes of that... :-)
	goulo: I noticed that, but it is illegal to suicide according to the rules. So I assume the system would/should reject that order. But I didn't feel like testing that. :)

10) ZackStack: Discover G1 Zackstack B2 Berry

11) goulo: Discover G2 Goulo B3 Anna

12) ZackStack: Build G1 Zackstack

13) goulo: Build G2 Anna

14) ZackStack: Sacrifice G3 Zackstack
Build G2 Berry
Build G3 Zackstack
Build G3 Berry

15) goulo: Build Y1 Goulo

16) ZackStack: Trade G3 Y3 Berry

17) goulo: Trade G2 Y2 Anna

18) ZackStack: Discover G2 Berry Y3 Lemon

19) goulo: Trade Y3 G3 Goulo

20) ZackStack: Sacrifice G3 Zackstack
Build G2 Lemon
Build G3 Zackstack
Build G3 Berry

21) goulo: Move G3 Goulo Anna

22) ZackStack: Sacrifice Y2 Zackstack
Move G3 Berry Anna
Move G3 Anna Goulo

23) goulo: Move G3 Anna Goulo

24) ZackStack: Sacrifice G1 Berry
Build G1 Goulo
Catastrophe Goulo Green
	goulo: Wow, you are totally kicking my butt...! Thanks for the lesson in the power cycling through greens... :)
	ZackStack: You bet! ;-)  Big green ships are pretty darn awsome!

	goulo: Thanks! I will try another game with you when I am more of a challenge for you. :)
	ZackStack: I look forward too it!  Or I'd be happy to play an unrated challenge if you think you can learn from more games but are worried about your rating.
	goulo: I'm not worried about my rating. I prefer playing rated games, whether against weaker, stronger, or same-strength players, so that there is more data in the ratings pool and the ratings become more accurate. :)


16490)
Variants: "No undo, Sinister"
Started: 2010.5.27, Ended: 2010.6.4
Participants: AdamBadura (S), goulo (N), zara2stra (E)
Winner: goulo

1) goulo: Homeworld B1 G2 Y3

2) zara2stra: Homeworld Y3 G1 B3

3) AdamBadura: Homeworld B2 G1 R3

4) goulo: Build Y1 Goulo
	AdamBadura: Lets see how zara2stra idea works in reality... :)

5) zara2stra: Build B1 Zara2stra
	zara2stra: aww - we could all build same homesystems for a quick and brutal game.

6) AdamBadura: Build R1 Adambadura

7) goulo: Trade Y1 B1 Goulo

8) zara2stra: Build B1 Zara2stra

9) AdamBadura: Trade R1 G1 Adambadura

10) goulo: Build B2 Goulo

11) zara2stra: Trade B1 G1 Zara2stra

12) AdamBadura: Build G2 Adambadura

13) goulo: Trade B2 G2 Goulo

14) zara2stra: Discover G1 Zara2stra R2 Hopesend

15) AdamBadura: Trade G1 Y1 Adambadura

16) goulo: Build Y1 Goulo

17) zara2stra: Trade B1 R1 Zara2stra

18) AdamBadura: Build Y1 Adambadura

19) goulo: Trade Y1 R1 Goulo

20) zara2stra: Build B1 Zara2stra

21) AdamBadura: Discover Y1 Adambadura G3 Thevoid

22) goulo: Build Y1 Goulo

23) zara2stra: Build R1 Zara2stra

24) AdamBadura: Build R1 Adambadura

25) goulo: Build R2 Goulo

26) zara2stra: Trade R1 Y1 Zara2stra

27) AdamBadura: Build Y2 Thevoid

28) goulo: Discover Y1 Goulo G3 Smeraldo

29) zara2stra: Move Y1 Zara2stra Hopesend

30) AdamBadura: Move Y2 Thevoid Hopesend

31) goulo: Build Y2 Smeraldo

32) zara2stra: Build Y2 Hopesend

33) AdamBadura: Attack Y2E Hopesend
	zara2stra: Adam, I hope you're just passing by?

34) goulo: Move Y1 Smeraldo Hopesend
Catastrophe Hopesend Y
	AdamBadura: Yeah... It was a bad move. It wasted my two moves and a 2 ship. You will lose likely as well... :)

35) zara2stra: Trade B1 Y1 Zara2stra

36) AdamBadura: Trade R1 B1 Adambadura

37) goulo: Build R1 Goulo
	AdamBadura: I'm surprised goulo did that. I expected zara2stra to build Y ship in that system and catastrophe it.
	goulo: Unclear to me if zara would do that, so I figured it was worth it for me to do it. :)

38) zara2stra: Build B1 Zara2stra

39) AdamBadura: Move B1 Adambadura Thevoid

40) goulo: Move R2 Goulo Smeraldo

41) zara2stra: Build B2 Zara2stra

42) AdamBadura: Build B2 Thevoid

43) goulo: Move G2 Goulo Thevoid

44) zara2stra: Move B2 Zara2stra Hopesend

45) AdamBadura: Build B2 Thevoid

46) goulo: Move B1 Goulo Thevoid
Catastrophe Thevoid B

47) zara2stra: Move Y1 Zara2stra Hopesend

48) AdamBadura: Build R1 Adambadura

49) goulo: Sacrifice R1 Goulo
Attack Y1S Thevoid

50) zara2stra: Build B1 Hopesend

51) AdamBadura: Build Y1 Adambadura

52) goulo: Build Y2 Goulo

53) zara2stra: Build Y2 Hopesend

54) AdamBadura: Discover Y1 Adambadura G3 Nexttothevoid

55) goulo: Discover Y2 Smeraldo G2 Avokado

56) zara2stra: Sacrifice B2 Hopesend
Trade Y1 G1 Hopesend
Trade B3 G3 Zara2stra

57) AdamBadura: Trade R1 B1 Adambadura

58) goulo: Build Y1 Avokado

59) zara2stra: Build B2 Hopesend

60) AdamBadura: Sacrifice G2 Adambadura
Build Y2 Adambadura
Build Y3 Nexttothevoid

61) goulo: Build Y3 Thevoid

62) zara2stra: Sacrifice Y2 Hopesend
Move G1 Hopesend Thevoid
Move G1 Hopesend Thevoid
Catastrophe Thevoid G

63) AdamBadura: Build R1 Adambadura
	AdamBadura: Great! I like it when you are smashing your heads yourself... :)

64) goulo: Trade Y2 G2 Goulo

65) zara2stra: Trade B2 G2 Hopesend

66) AdamBadura: Move R1 Adambadura Nexttothevoid

67) goulo: Build G1 Goulo

68) zara2stra: Build B2 Hopesend

69) AdamBadura: Trade Y1 G1 Adambadura

70) goulo: Discover G1 Goulo G3 Piro

71) zara2stra: Trade B2 Y2 Hopesend

72) AdamBadura: Move B1 Adambadura Nexttothevoid

73) goulo: Discover Y2 Avokado Y1 Banano

74) zara2stra: Build B2 Hopesend

75) AdamBadura: Build B2 Nexttothevoid

76) goulo: Build Y1 Avokado

77) zara2stra: Discover G2 Hopesend Y3 Fria

78) AdamBadura: Build Y2 Adambadura

79) goulo: Sacrifice Y2 Banano
Move Y1 Avokado Zara2stra
Move Y1 Avokado Zara2stra

80) zara2stra: Build G2 Fria

81) AdamBadura: Trade Y2 B2 Adambadura
	zara2stra: This will hurt

82) goulo: Sacrifice G1 Piro
Build Y1 Zara2stra
Catastrophe Zara2stra Y

83) zara2stra: Sacrifice Y2 Hopesend
Move G2 Fria Adambadura
Move G2 Fria Adambadura
Catastrophe Adambadura G
	goulo: who knew 3 little y1 ships could do so much damage? :)

84) AdamBadura: Discover B2 Adambadura Y3 Bravenewworld

85) goulo: Build G1 Goulo

86) zara2stra: Trade G3 Y3 Zara2stra

87) AdamBadura: Sacrifice Y3 Nexttothevoid
Move B2 Bravenewworld Goulo
Move B2 Nexttothevoid Goulo
Move B1 Nexttothevoid Goulo
Catastrophe Goulo B

88) goulo: Discover G1 Goulo R3 Pomo

89) zara2stra: Build B1 Zara2stra

90) AdamBadura: Sacrifice Y2 Adambadura
Move R1 Nexttothevoid Zara2stra
Move Y1 Nexttothevoid Zara2stra
	AdamBadura: goulo, unless you stop zara2stra somehow he will destroy me in two moves...

91) goulo: Build G1 Goulo
	AdamBadura: This is just agony, but lets end this normally. Somehow I suck at multi-player version. I have srious problems with timing.

92) zara2stra: Attack R1S Zara2stra
	goulo: Then of course I must try to stop zara2stra! :)
	zara2stra: It's obvious since at least three turns, that I won't be able to stop goulo from eliminating me, nor will I be able to eliminate Adam first. So thanks for another nice game guys :) Maybe next time we should find another player to bring some variety to whom goulo eliminates :P 

93) AdamBadura: Build Y1 Zara2stra
	AdamBadura: :D

94) goulo: Sacrifice Y3 Goulo
Move G1 Pomo Zara2stra
Move G1 Goulo Zara2stra
Move G2 Goulo Zara2stra
Catastrophe Zara2stra G
	goulo: Thanks for the game! Very close!
a2na and I are going to Berlin for a long weekend. Feel free to start another game with me, just don't expect as frequent updates during the weekend. Maybe arturion would be a 4th for Homeworlds (feel free to ask him, Adam). Although then the players left and right of the newbie would have an advantage. :)
Or start another game of blam for now. :)



16464)
Variants: "Hard time"
Started: 2010.5.27, Ended: 2010.6.7
Participants: dlwillson (S), SilentTitan (N)
Winner: dlwillson

1) SilentTitan: Homeworld B1 Y2 G3

2) dlwillson: Homeworld R3 G1 B3
	SilentTitan: Ok.... Step1 DONE*  um... step to may be much harder...............
	SilentTitan: lol step2
	SilentTitan: oh... yeah.. I can see where this is going .... "flurry of turns" was the selling phrase I beleive.............
	SilentTitan: Hey... this is fun... maybe I should mock all the others ...... maybe they take turns faster then?


3) SilentTitan: Build G1 Silenttitan

4) dlwillson: Build B1 Dlwillson

5) SilentTitan: Discover G1 Silenttitan B3 Really

6) dlwillson: B B1 Dlwillson

7) SilentTitan: Build G1 Silenttitan

8) dlwillson: T B3 Y3 Dlwillson

9) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Really
Build G2 Really
Build G2 Silenttitan

10) dlwillson: B B2 Dlwillson
	dlwillson: Impressive!
	SilentTitan: only if it leads to a win
	dlwillson: Well, it's still impressive. Even if it's just 'Zilla bait.
	SilentTitan: did you have a turn you wanted to submit to counter that ... or just chat about it some more?

	dlwillson: Just chat. I'll do a turn later. At work now and plenty to do.

11) SilentTitan: Build G3 Silenttitan

12) dlwillson: Discover B2 Dlwillson B2 Illusion

13) SilentTitan: Trade G3 Y3 Silenttitan

14) dlwillson: D B1 Dlwillson B2 Mystery

15) SilentTitan: Build G3 Silenttitan

16) dlwillson: Build B3 Dlwillson

17) SilentTitan: Sacrifice Y3 Silenttitan
Discover G2 Really Y2 Crazy
Discover G2 Really Y2 Isdaveyhelpingu
Discover G2 Silenttitan B3 Uhhunsure

18) dlwillson: Trade B3 R3 Dlwillson

19) SilentTitan: Trade G1 R1 Silenttitan
	SilentTitan: oh.. come on... there are great system names... yet no comment?  

20) dlwillson: Build B3 Dlwillson

21) SilentTitan: Build G1 Silenttitan
	SilentTitan: wow.. I really screwed up this game .. sorry about that


22) dlwillson: Sacrifice Y3 Dlwillson
Discover B1 Mystery G3 Insanity
Discover B2 Illusion G3 Dementia
Move R3 Dlwillson Crazy
	dlwillson: :-) Yes, yes, you did. And yes, of course Davey is helping me. But never underestimate my ability to snatch defeat from the jaws of victory.

23) SilentTitan: Move G2 Crazy Dementia

24) dlwillson: B B2 Dementia

25) SilentTitan: Trade G2 B2 Uhhunsure

26) dlwillson: Sacrifice B2 Dementia
Trade B1 Y1 Dlwillson
Trade B1 Y1 Insanity

27) SilentTitan: Sacrifice G2 Dementia
Build G2 Isdaveyhelpingu
Build R1 Silenttitan

28) dlwillson: B Y1 Insanity

29) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Isdaveyhelpingu
Build G3 Silenttitan
Build R1 Silenttitan

30) dlwillson: B Y3 Dlwillson

31) SilentTitan: Move G2 Isdaveyhelpingu Dlwillson

32) dlwillson: A G2 Dlwillson

33) SilentTitan: Move G2 Isdaveyhelpingu Dlwillson

34) dlwillson: Sacrifice G2 Dlwillson
Build Y3 Dlwillson
Build Y3 Insanity

35) SilentTitan: Sacrifice G2 Isdaveyhelpingu
Build G2 Dlwillson
Build G2 Dlwillson
Catastrophe Dlwillson G

36) dlwillson: Trade Y3 R3 Dlwillson
	SilentTitan: OOK

37) SilentTitan: Move R1 Silenttitan Dlwillson

38) dlwillson: S R3 Dlwillson
A R1 Dlwillson
Pass
Pass
	SilentTitan: you're dead honey

39) SilentTitan: Trade B2 Y2 Uhhunsure

40) dlwillson: Sacrifice B2 Dementia
Trade R1 G1 Dlwillson
Trade Y1 R1 Insanity

41) SilentTitan: Build G2 Really

42) dlwillson: Build G2 Dlwillson

43) SilentTitan: Sacrifice G2 Really
Build Y1 Uhhunsure
Build G2 Really

44) dlwillson: Sacrifice Y3 Insanity
Move G1 Dlwillson Silenttitan
Move G2 Dlwillson Silenttitan
Move Y3 Dlwillson Silenttitan
Catastrophe Silenttitan G

45) SilentTitan: Sacrifice Y2 Uhhunsure
Move Y1 Uhhunsure Silenttitan
Move G1 Really Silenttitan

46) dlwillson: S R3 Crazy
A G1 Silenttitan
A R1 Silenttitan
A R1 Silenttitan
	dlwillson: Looks like you only turned me into a llama, or something...

	SilentTitan: yup... made the one mistake that let you win
	SilentTitan: of course... 5 battleships to 1 .. I should have never even had a chance at you.  
	dlwillson: Technically, you had a pretty good chance when you had me locked out of green. Want to play again?


16465)
Started: 2010.5.27, Ended: 2010.6.9
Participants: TwoShort (S), bhorner (N)
Winner: TwoShort

1) bhorner: Homeworld G2 B1 Y3

2) TwoShort: Homeworld B1 G3 B3 *
	TwoShort: Howdy

3) bhorner: Build Y1 Bhorner

4) TwoShort: Build B1 Twoshort
	bhorner: Hello.

5) bhorner: Build Y1 Bhorner
	bhorner: I can't wait to see what you're doing.  Your moves seem so unwise that I can't help but learn something.

6) TwoShort: Trade B3 Y3 Twoshort

7) bhorner: Trade Y1 G1 Bhorner

8) TwoShort: Build B2 Twoshort

9) bhorner: Build Y1 Bhorner

10) TwoShort: Discover B1 Twoshort G2 Grogar

11) bhorner: Discover G1 Bhorner B3 Stumpy

12) TwoShort: Build B2 Grogar

13) bhorner: Move Y1 Bhorner Stumpy

14) TwoShort: Build B2 Twoshort
	bhorner: It never seems like the right moment to make a blue...  I'm sure this will be my downfall somehow.
	bhorner: *seemed...

15) bhorner: Discover Y1 Stumpy G2 Toolate
	TwoShort: I think turn 1 was the only right moment.  Not that it would have made for a great opening, but that was the last time you could flip the three, grow a blue, and flip back or move out before I could get a y2 and throw in another for the catastrophe.  I also think this will be your downfall, but I know how :)

16) TwoShort: Build B3 Grogar

17) bhorner: Build Y1 Toolate

18) TwoShort: Sacrifice B2 Grogar
Trade B2 R2 Twoshort
Trade B3 G3 Grogar
	bhorner: That would have been funny if I'd caught you there.  :)

19) bhorner: Trade Y1 R1 Bhorner
	TwoShort: Yeah.  I was thinking the right move, just somehow typed the wrong one :)

20) TwoShort: Sacrifice G3 Grogar
Build B2 Grogar
Build B2 Twoshort
Build B3 Grogar

21) bhorner: Build G1 Stumpy
	bhorner: Can you give me a gauge on how far ahead of me you think you are?  Is it like 60-40, or worse?  I can't see anything obviously threatening me...  are you just building up material for a big strike?
	TwoShort: Big pieces are much more valuable than little ones.  My super-crude rule of thumb is 2s are worth 3 1s, 3s are worth 3 2s.  So by that, I'm up about 2-to-1.  That's subject to a lot of exceptions for position details of course.  But in this case, I've got the blue engine going that will keep getting me more big pieces.  I'm not threatening directly now, but that's how most games go; barring a big blunder by the opponent, the winner usually gets there by getting control of more/better material, building up until the actual attack is unstoppable.  I may threaten you shortly, but mostly to force you to deal with it rather than building.  Until I can get all the way to victory, if I can expand my 3 pointer advantage, that's the top priority.

22) TwoShort: Trade B2 Y2 Grogar

23) bhorner: Sacrifice Y1 Toolate
Move G1 Stumpy Toolate

24) TwoShort: Discover B3 Grogar G3 Gonzo

25) bhorner: Trade Y3 G3 Bhorner

26) TwoShort: Build B2 Grogar

27) bhorner: Build Y1 Toolate

28) TwoShort: Build B3 Gonzo

29) bhorner: Sacrifice Y1 Toolate
Move G1 Stumpy Bhorner

30) TwoShort: Sacrifice Y2 Grogar
Move B3 Gonzo Bhorner
Move B3 Gonzo Bhorner
	TwoShort: Red Alert.
	TwoShort:   So I typed that because "Red Alert" is the traditional warning to newer players meaning I have a crushing move next turn if you don't do something about it.  But now that I'm looking at it more, I don't think you can do anything about it.
  I feel a little guilty in that the fast blue monopoly opening I used is a bit of a special case response to someone taking a small blue as part of a 1-2 homeworld as first player.  It's hard to deal with, and doesn't necessarily teach you much about the more general game, so sometimes I don't do it vs. new players; but this time I was in a bit of a rush and didn't check how much you'd played...  Anyhow, I hope it wasn't too demoralizing :) 
  I'll be happy to play a more instructive game anytime; just don't take a b1 star :)
	bhorner: I bet this will hold you off for a move.  :)

31) bhorner: Trade G3 B3 Bhorner
Catastrophe Bhorner B

32) TwoShort: Move B2 Twoshort Bhorner

33) bhorner: Build R1 Bhorner

34) TwoShort: Sacrifice R2 Twoshort
Attack R1 Bhorner
Attack R1 Bhorner

35) bhorner: Move G1 Toolate Twoshort

36) TwoShort: Attack G1 Bhorner

	TwoShort: Thanks for the game!


16438)
Started: 2010.5.27, Ended: 2010.6.14
Participants: bhorner (S), rootbier (N)
Winner: bhorner

1) rootbier: Homeworld B1 Y2 G3

2) bhorner: Homeworld B3 G2 Y3
	rootbier: Welcome to the site Have you played homeworlds off-line?

3) rootbier: Build G1 Rootbier
	bhorner: Hello, yes a few times (maybe 4?) with 3 and 4 players, two players seems like it should be a better game.
	rootbier: Ahh good good - then good luck and good game and feel free to ask/discuss along the way.

4) bhorner: Build Y1 Bhorner

5) rootbier: Trade G1 Y1 Rootbier

6) bhorner: Build Y1 Bhorner

7) rootbier: Build G1 Rootbier

8) bhorner: Discover Y1 Bhorner G1 S1
	bhorner: I've started a couple games, and it seems like everyone against me uses BY for their world, and G for their ship...  Is there a reason?  I made my ship Yellow for later triple sacrifice catastrophe moves, couldn't think of any other reason...

9) rootbier: Discover Y1 Rootbier B3 Cornfed
	rootbier: The g3 sacrifice can be really powerful (green sacrifices in general can be). None of the other sacrifices will give you back a size 3 ship (save certain rare attack situations I suppose) -- the g3-sac can not only get you right back to a g3 but can give you two more ships. You could generate half a catastrophe without losing a 3. You could generate multiple additional 3s.

As far as not having red at home -- I think people mix it up and sometimes do take it... but your safer just having a single little red ship at home (not supplying attack tech to visitors). And of course if you have the g3 as your flagship you're not going to want or need a green star... hence BY homes.

I'm often angling for a g3sac -- so you'll probably see it soon enough. It's also sometimes easy to just repeat and repeat.

10) bhorner: Trade Y1 B1 Bhorner

11) rootbier: Build G1 Rootbier

12) bhorner: Discover Y1 S1 G3 Uncreative

13) rootbier: Move G1 Rootbier Cornfed

14) bhorner: Build Y1 Uncreative



16401)
Started: 2010.5.27, Ended: 2010.6.1
Participants: bhorner (S), ts52 (N)
Winner: bhorner

1) ts52: Homeworld B1 Y2 G3

2) bhorner: Homeworld B3 G2 Y3
	ts52: Have a good game.
	bhorner: You too!

3) ts52: Build G1 Ts52

4) bhorner: Build Y1 Bhorner

5) ts52: Build G1 Ts52

6) bhorner: Build Y1 Bhorner

7) ts52: Trade G1 Y1 Ts52

8) bhorner: Discover Y1 Bhorner G1 S1

9) ts52: Discover Y1 Ts52 G3 Oscar

10) bhorner: Build Y2 S1

11) ts52: Discover G1 Ts52 Y3 Bigbird

12) bhorner: Trade Y1 B1 Bhorner

13) ts52: Build G1 Ts52

14) bhorner: Move Y2 S1 Bigbird

15) ts52: Build G2 Bigbird

16) bhorner: Sacrifice B1 Bhorner
Trade Y2 R2 Bigbird

17) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Bigbird

18) bhorner: Attack G2 Bigbird

19) ts52: Discover G2 Ts52 Y3 Zoe
	bhorner: Thanks, I've learned something, I wonder if anyone could still pull this out?

20) bhorner: Attack G1 Bigbird
	ts52: It's probably possible. I've recovered from some pretty bad spots, and lost some games that looked like they should have been mine.

21) ts52: Discover G3 Bigbird Y2 Banana

22) bhorner: Move Y1 S1 Bhorner

23) ts52: Trade G1 B1 Ts52

24) bhorner: Sacrifice Y3 Bhorner
Move G2 Bigbird Ts52
Move G1 Bigbird Ts52
Move R2 Bigbird Ts52

25) ts52: Trade G3 Y3 Ts52
	bhorner: going for broke!

26) bhorner: Attack B1 Ts52
	ts52: Good move. 

27) ts52: Discover G3 Banana Y1 Lemon

28) bhorner: Build B1 Ts52

29) ts52: M G3 Lemon Bhorner

30) bhorner: Trade B1 Y1 Ts52

31) ts52: T Y3 R3 Ts52
	bhorner: Oh wow...  when you said good move, I thought you were just humoring me.  I think I've got you...?  Up until just now, I thought you were going to take me out, but I'd get half your homeworld first.
	ts52: Yeah, I failed to remember one of the central tenants of home worlds. When your enemy gets a gun, you get a gun.

32) bhorner: Sacrifice G2 Ts52
Build R1 Ts52
Build R1 Ts52
Catastrophe Ts52 R
	ts52: Thanks for the game.
	bhorner: Oops, I posted the same thing: "Thanks for the game!", but I put it in the notes section, instead of here.  So... Thanks for the game!



16419)
Started: 2010.5.27, Ended: 2010.6.28
Participants: mathochist (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld G2 B1 Y3

2) mathochist: Homeworld B1 Y3 G3

3) bhorner: Build Y1 Bhorner

4) mathochist: Build G1 Mathochist

5) bhorner: Build Y1 Bhorner

6) mathochist: Trade G1 B1 Mathochist

7) bhorner: Discover Y1 Bhorner G3 S1

8) mathochist: Build B2 Mathochist

9) bhorner: Build Y1 S1

10) mathochist: Discover B1 Mathochist G2 Oscar

11) bhorner: Trade Y3 G3 Bhorner

12) mathochist: Sacrifice G3 Mathochist
Build B2 Oscar
Build B2 Oscar
Build B3 Mathochist

13) bhorner: Build Y2 Bhorner

14) mathochist: Trade B3 G3 Mathochist

15) bhorner: Discover Y1 S1 G2 Namey

16) mathochist: Build B3 Mathochist

17) bhorner: Move Y1 Bhorner S1

18) mathochist: T B2 Y2 Oscar

19) bhorner: Sacrifice G3 Bhorner
Build Y2 S1
Build Y3 Bhorner
Build Y3 Namey

20) mathochist: Sacrifice B2 Oscar
Trade B3 G3 Mathochist
Trade B2 R2 Mathochist
	mathochist: Eep, there go all the yellows

21) bhorner: Trade Y2 R2 Bhorner

22) mathochist: Discover G3 Mathochist Y2 Ernie
	mathochist: This is an interesting game.
	bhorner: I think I'm behind, but I haven't played enough to know for certain.


23) bhorner: Discover Y1 S1 B2 Other

24) mathochist: Move Y2 Oscar S1
	mathochist: Hard to say, but by most counts, I think you're actually ahead.

25) bhorner: Move Y2 S1 Other
	bhorner: I hope I win then.  :)



16476)
Variants: "Hard time"
Started: 2010.5.28, Ended: 2010.6.13
Participants: dethdukk (S), mathochist (N)
Winner: mathochist

1) mathochist: Homeworld B1 R2 G3

2) dethdukk: Homeworld B1 G3 B3 *

3) mathochist: Build G1 Mathochist
	mathochist: Grar, I think I made a mistake.  Oh well.

4) dethdukk: Build B1 Dethdukk
	dethdukk: it depends... its pretty easy to beat if you do well, and i havent used it much so I might mess up.

5) mathochist: Build G1 Mathochist

6) dethdukk: Trade B1 Y1 Dethdukk
	mathochist: Hmm.  That's one possible way around it, but looking at it again, I can see the risk.  No good.

7) mathochist: Trade G1 B1 Mathochist

	mathochist: Eep, sorry you ran out of time!  Challenge me again without hard time, if you like.


16517)
Started: 2010.5.30, Ended: 2010.5.31
Participants: bhorner (S), TomClem (N)
Winner: bhorner

1) TomClem: Homeworld R1 B2 G3

2) bhorner: Homeworld B3 G2 Y3
	TomClem: Good Luck!

3) TomClem: Build G1 Tomclem
	bhorner: Can't move?

4) bhorner: Build Y1 Bhorner
	TomClem: I'll have yellow soon

5) TomClem: B G1 Tomclem

6) bhorner: Build Y1 Bhorner

7) TomClem: Trade G1 Y1 Tomclem

8) bhorner: Discover Y1 Bhorner G1 S1
	TomClem: how are your other games going?  feeling good about them?

9) TomClem: Build Y2 Tomclem
	bhorner: Can't tell about the other games, it concerns me that they all seem to be using the same homeworld setup against me...  and I don't know why.  I have a couple guesses though.

10) bhorner: Build Y2 S1

11) TomClem: Discover Y2 Tomclem G3 Badben
	TomClem: http://wiki.superdupergames.org/games/homeworlds
I assume you have read the openings section?
	bhorner: Section of what?

12) bhorner: Trade Y1 B1 Bhorner
	TomClem: of that wiki page.  they discuss what is considered the best starting position
	bhorner: I have now, sounds like it's all up in the air...  except for what we already thought about YBG at the homeworld...

13) TomClem: Move G1 Tomclem Badben

14) bhorner: Sacrifice B1 Bhorner
Trade Y2 R2 S1

15) TomClem: Build G1 Tomclem

16) bhorner: Move R2 S1 Badben

17) TomClem: Move Y2 Badben S1

18) bhorner: Attack G1 Badben

19) TomClem: Trade G1 B1 Tomclem

20) bhorner: Build Y1 Bhorner

21) TomClem: Build Y2 Tomclem

22) bhorner: Build R1 Badben

23) TomClem: Build G1 Tomclem

24) bhorner: Move Y1 S1 Badben

25) TomClem: Sacrifice B1 Tomclem
Trade Y2 R2 S1

26) bhorner: Discover Y1 Badben G2 Stall

27) TomClem: Move G1 Tomclem Badben

28) bhorner: Attack G1 Badben

29) TomClem: Build G2 Tomclem

30) bhorner: Sacrifice G1 Badben
Build Y2 Stall

31) TomClem: Move G2 Tomclem Badben

32) bhorner: Attack G2 Badben

33) TomClem: Sacrifice Y1 Tomclem
Move R2 S1 Stall

34) bhorner: Sacrifice R1 Badben
Attack R2 Stall

35) TomClem: Move G3 Tomclem Badben
Catastrophe Badben Green

36) bhorner: Discover Y1 Stall G3 Stage
	TomClem: gg
	bhorner: I don't see a fast way to win, though it seems I have a big advantage...

37) TomClem: Trade Y2 G2 Tomclem

38) bhorner: Trade Y3 G3 Bhorner

39) TomClem: Build G1 Tomclem

40) bhorner: Build Y1 Stage

41) TomClem: Trade G2 Y2 Tomclem

42) bhorner: Build R1 Stall

43) TomClem: Build G1 Tomclem

44) bhorner: Discover G3 Bhorner B1 Twoaway

45) TomClem: Build Y2 Tomclem

46) bhorner: Sacrifice G3 Twoaway
Build Y3 Stall
Build Y3 Bhorner
Build Y3 Bhorner

47) TomClem: Build G1 Tomclem

48) bhorner: Sacrifice Y2 Stall
Move Y1 Stage Tomclem
Move Y1 Stage Tomclem
Catastrophe Tomclem Y

49) TomClem: Trade G1 Y1 Tomclem

50) bhorner: Sacrifice Y3 Bhorner
Discover R2 Stall R3 Temp
Move R2 Temp Tomclem
Pass

51) TomClem: Build Y1 Tomclem

52) bhorner: Attack G1 Tomclem

53) TomClem: Build G1 Tomclem

54) bhorner: Attack Y1 Tomclem

55) TomClem: Build Y2 Tomclem

56) bhorner: Build Y2 Tomclem
Catastrophe Tomclem Y

57) TomClem: Sacrifice G1 Tomclem
Build G1 Tomclem

58) bhorner: Build G2 Tomclem
Catastrophe Tomclem G



16463)
Variants: "Hard time"
Started: 2010.6.3, Ended: 2010.6.19
Participants: toriano (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) toriano: Homeworld B2 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) toriano: Build G1 Toriano

5) SilentTitan: Trade G1 Y1 Silenttitan

6) toriano: Discover G1 Toriano Y1 Lucy

7) SilentTitan: Build Y1 Silenttitan

8) toriano: Build G1 Toriano

9) SilentTitan: Build Y2 Silenttitan

10) toriano: Trade G3 Y3 Toriano

11) SilentTitan: Trade Y1 B1 Silenttitan

12) toriano: Build G1 Toriano

13) SilentTitan: Discover Y2 Silenttitan R3 Burn

14) toriano: Build G2 Lucy

15) SilentTitan: Build G2 Silenttitan

16) toriano: Trade G1 B1 Toriano

17) SilentTitan: Move B1 Silenttitan Burn

18) toriano: Move B1 Toriano Lucy

19) SilentTitan: Move G2 Silenttitan Burn

	SilentTitan: I guess that game was too short for you ... we can play again if you'd like and use a longer time frame.


16565)
Variants: "Hard time"
Started: 2010.6.4, Ended: 2010.6.16
Participants: SilentTitan (S), ZackStack (N)
Winner: ZackStack

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Hi Titan.  Have a good game!

2) SilentTitan: Homeworld B2 G3 R3

3) ZackStack: Build G1 Zackstack
	SilentTitan: Hey, thanks you too

4) SilentTitan: Build R1 Silenttitan

5) ZackStack: Trade G1 R1 Zackstack

6) SilentTitan: Build R2 Silenttitan

7) ZackStack: Build R2 Zackstack

8) SilentTitan: Trade R2 Y2 Silenttitan

9) ZackStack: Trade R2 Y2 Zackstack

10) SilentTitan: Discover R1 Silenttitan Y1 Sol

11) ZackStack: Discover R1 Zackstack B3 Azure

12) SilentTitan: Build R2 Silenttitan

13) ZackStack: Build G1 Zackstack

14) SilentTitan: Trade R2 G2 Silenttitan

15) ZackStack: Move G1 Zackstack Azure

16) SilentTitan: Sacrifice G2 Silenttitan
Build R2 Sol
Build R2 Silenttitan

17) ZackStack: Build R2 Azure
	ZackStack: On second thought...

18) SilentTitan: Discover R2 Sol Y3 Sole

19) ZackStack: Trade R2 Y2 Azure

20) SilentTitan: Trade R2 B2 Silenttitan

21) ZackStack: Build R2 Azure

22) SilentTitan: Trade Y2 G2 Silenttitan

23) ZackStack: Trade R2 G2 Azure

24) SilentTitan: Sacrifice G2 Silenttitan
Build R2 Sol
Build B1 Silenttitan

25) ZackStack: Trade G1 B1 Azure

26) SilentTitan: Trade B2 Y2 Silenttitan

27) ZackStack: Discover B1 Azure G1 Pea

28) SilentTitan: Move B1 Silenttitan Sol

29) ZackStack: Build G1 Zackstack

30) SilentTitan: Trade R2 G2 Sol

31) ZackStack: Discover G1 Zackstack R3 Rojo

32) SilentTitan: Sacrifice G2 Sol
Build B1 Sol
Build R2 Sol

33) ZackStack: Build B2 Pea

34) SilentTitan: Discover B1 Sol G3 Soul

35) ZackStack: Trade B1 Y1 Pea

36) SilentTitan: Trade Y2 G2 Silenttitan

37) ZackStack: Sacrifice G2 Azure
Build B1 Pea
Build B3 Pea

38) SilentTitan: Sacrifice G2 Silenttitan
Build B3 Soul
Build R2 Sole
	ZackStack: Bah.  That didn't look as good as I thought it would :-)

39) ZackStack: Sacrifice Y2 Zackstack
Move B1 Pea Silenttitan
Move B2 Pea Silenttitan
	SilentTitan: well.. I don't know ... this has to be the most convoluted game of this I've played
	ZackStack: You haven't played very much? ;-)
	SilentTitan: true this is like only my 10th game I think

40) SilentTitan: Sacrifice B3 Soul
Trade R2 G2 Sole
Trade B1 G1 Soul
Trade R2 Y2 Sol
	dlwillson: Hey! You already used the "sole" theme!
	dlwillson: I always wondered if the peanut gallery could chime in. I guess they can.
	dlwillson: Hey Zack. Hey Tripp. I'm going back on radio silence now, unless you talk to me, then I'll pick it right back up. I promise not to shout advice, except in generic and unusable ways, like, "RUN SILENT!" or things like that.

41) ZackStack: Build B1 Silenttitan
Catastrophe Silenttitan Blue
	ZackStack: Hey DL!  I hope you're enjoying the view from the gallery ;-)  If you could take care of humming the imperial march for me I'll be able to focus on what I'm doing here better :-D
	SilentTitan: wow... you'd think that guy would spend more time trying to figure out how to win.

42) SilentTitan: Build G2 Sole
	ZackStack: HA!  Watching us is unlikely to help I think :-D

43) ZackStack: Trade B3 R3 Pea

44) SilentTitan: Sacrifice Y2 Sol
Move G1 Soul Zackstack
Move G2 Sole Zackstack
	dlwillson: Actually, I'm learning a lot. Good game both. Here's your Imperial March, Zack. :-)
http://www.youtube.com/watch?v=-bzWSJG93P8

45) ZackStack: Trade G3 Y3 Zackstack
	ZackStack: BOOM!  Now for the hard part...

46) SilentTitan: Trade G1 Y1 Zackstack

47) ZackStack: Sacrifice R3 Pea
Attack Y1 Zackstack
Attack G2 Zackstack
Pass
	ZackStack: On second thought...

48) SilentTitan: Build R2 Silenttitan

49) ZackStack: Move R1 Azure Pea

50) SilentTitan: Sacrifice B1 Sol
Trade R2 B2 Silenttitan

51) ZackStack: Sacrifice G2 Zackstack
Build Y2 Pea
Build Y2 Azure
	ZackStack: I hate to loose this large... but I don't see a better move.

52) SilentTitan: Build R2 Sole

53) ZackStack: Build R2 Pea

54) SilentTitan: Sacrifice G2 Sole
Build R3 Sol
Build B1 Silenttitan

55) ZackStack: Build Y3 Pea

56) SilentTitan: Move R3 Sol Azure

57) ZackStack: Sacrifice Y2 Azure
Discover Y2 Azure B2 Berry
Move R1 Pea Berry

58) SilentTitan: Trade B2 Y2 Silenttitan

59) ZackStack: Sacrifice G1 Rojo
Build R3 Berry

60) SilentTitan: Trade R3 G3 Silenttitan

61) ZackStack: Trade R1 G1 Berry

62) SilentTitan: Trade R3 G3 Azure

63) ZackStack: Build G1 Berry

64) SilentTitan: Trade G3 B3 Silenttitan

65) ZackStack: Sacrifice Y3 Pea
Move G1 Berry Silenttitan
Move G1 Berry Silenttitan
Move R3 Berry Silenttitan

	SilentTitan: good game
	ZackStack: Yes.  Thanks for playing!


16496)
Started: 2010.6.8, Ended: 2010.6.14
Participants: rootbier (S), cleverpun (N)
Winner: cleverpun

1) cleverpun: Homeworld B2 Y1 G3



16589)
Started: 2010.6.8, Ended: 2010.6.25
Participants: captncavern (S), supergnouf (N)
Winner: supergnouf

1) supergnouf: Homeworld G3 B1 Y3

2) captncavern: Homeworld B3 G2 Y3
	captncavern: Allez, encore une partie que je vais perdre ;)
	supergnouf: V'la l'optimisme ! En attendant si tu jouais ? :-)

3) supergnouf: Buil Y1 Supergnouf
	captncavern: Désolé, j'ai dû oublier de valider mon coup :)

4) captncavern: Build Y1 Captncavern

5) supergnouf: Trade Y1 B1 Supergnouf

6) captncavern: Build Y1 Captncavern

7) supergnouf: Build Y1 Supergnouf

8) captncavern: Discover Y1 Captncavern G1 Abc

9) supergnouf: Discover Y1 Supergnouf G2 Caraba
	supergnouf: Bravo, vive l'originalité pour le nom de ce système
pourquoi pas azerty tant qu'on y est... :-)

10) captncavern: Trade Y1 R1 Captncavern

11) supergnouf: Build B1 Supergnouf

12) captncavern: Build R1 Captncavern

13) supergnouf: Move B1 Supergnouf Caraba
	captncavern: Parce que c'est le premier nom qui m'est venu :)
	captncavern: Ah, et pour azerty, merci, je note l'idée ;)

14) captncavern: Build R1 Captncavern

15) supergnouf: Build B2 Caraba

16) captncavern: Move R1 Captncavern Abc

17) supergnouf: Trade B2 R2 Caraba

18) captncavern: Discover R1 Abc Y2 Azerty

19) supergnouf: Build R2 Caraba

20) captncavern: Trade R1 G1 Captncavern

21) supergnouf: Build B2 Caraba

22) captncavern: Build G1 Captncavern
	captncavern: T'as eu le temps de jeter un oeil à mes petits dessins ou t'es déjà en vacances ?

23) supergnouf: Trade B2 G2 Caraba
	supergnouf: Ni trop le temps ni trop les moyens de recarder tes productions, vite fait, je dirais qu'on s'attend a voir la deuxième "aile" des vaisseaux au fond, rien a dire sur le reste.

24) captncavern: Trade G1 R1 Captncavern

25) supergnouf: Build B2 Caraba

26) captncavern: Discover R1 Captncavern Y1 Xyz

27) supergnouf: Move R2 Caraba Supergnouf

28) captncavern: Build Y2 Abc

29) supergnouf: Sacrifice G2 Caraba
Build Y2 Supergnouf
Build Y3 Caraba

30) captncavern: Build G1 Captncavern

31) supergnouf: Trade B2 G2 Caraba

32) captncavern: Move G1 Captncavern Abc

33) supergnouf: Move G2 Caraba Xyz

34) captncavern: Move G1 Captncavern Xyz

35) supergnouf: Sacrifice R2 Caraba
Attack R1 Xyz
Attack G1 Xyz

36) captncavern: Build R2 Captncavern

37) supergnouf: Sacrifice Y3 Caraba
Move G1 Xyz Captncavern
Move G2 Xyz Captncavern
Move R1 Xyz Captncavern
	captncavern: C'est pas franchement la fête !

38) captncavern: Attack R1 Captncavern
	supergnouf: Ça va pas trop mal en ce qui me concerne :-)

	supergnouf: Aller, je tente un truc, on verra bien


39) supergnouf: Build G3 Captncavern
Catastrophe Captncavern G

40) captncavern: Move R2 Captncavern Caraba
	captncavern: Ouais, ben c'est pas ça qui va arranger mes bidons !

41) supergnouf: Move Y3 Supergnouf Caraba

42) captncavern: Sacrifice Y1 Abc
Discover R2 Caraba Y3 Bleu

43) supergnouf: Build B2 Caraba

44) captncavern: Trade R1 Y1 Captncavern

45) supergnouf: Discover B1 Supergnouf B2 Vandemaar

46) captncavern: Sacrifice Y3 Captncavern
Move Y1 Captncavern Caraba
Move Y2 Abc Caraba
Move G1 Abc Captncavern
Catastrophe Caraba Y

47) supergnouf: Sacrifice Y2 Supergnouf
Move B2 Caraba Captncavern
Pass

48) captncavern: Move R2 Bleu Caraba

49) supergnouf: Build R1 Supergnouf
	captncavern: Ah ! Ben on y voit plus clair :)

50) captncavern: Build R2 Captncavern

51) supergnouf: Sacrifice R2 Supergnouf
Attack R2 Captncavern
Attack R1 Captncavern
	captncavern: Tiens, j'ai fini mon jeu (aux playtests près, donc il peut encore beaucoup changer), tu peux voir ça là : http://www.boardgamegeek.com/boardgame/73209/spacebooters-sneaking-and-smuggling (il y a une erreur dans les composants actuels, la correction est en chemin) et les règles sont là : http://www.griffon-traduction.com/temp/Spacebooters-Sneaking_and_smuggling_V0.2.doc

52) captncavern: Build G1 Captncavern
	supergnouf: J'irais voir ça des que je suis chez moi, avec  un peu de chance lundi prochain, présentement, je suis enfermé dehors :-(
n'oublie pas de ramener une version de ton jeu
	captncavern: T'inquiètes, c'était bien prévu ;)
Comment tu t'es débrouillé pour te retrouver enfermé dehors ? Et où tu dors ?

53) supergnouf: Sacrifice R2 Captncavern
Attack G1 Captncavern
Attack G1 Captncavern

	captncavern: Bon, ben, comme d'hab.
On remet ça quand tu veux. Dis-moi si tu veux que je lance une partie.


16504)
Variants: "Unrated"
Started: 2010.6.9, Ended: 2010.6.12
Participants: makertron (S), Pename (N)
Winner: Pename

1) Pename: Homeworld G2 B1 Y3



16493)
Variants: "Hard time"
Started: 2010.6.9, Ended: 2010.6.22
Participants: dlwillson (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld G1 B2 Y3

2) dlwillson: H B3 R2 G3
	SilentTitan: I don't think I've tried this configuration yet

3) SilentTitan: Build Y1 Silenttitan

4) dlwillson: B G1 Dlwillson

5) SilentTitan: Trade Y1 G1 Silenttitan

6) dlwillson: Trade G3 Y3 Dlwillson

7) SilentTitan: Build G2 Silenttitan

8) dlwillson: B G2 Dlwillson
	SilentTitan: neh.... can't get me

9) SilentTitan: Trade G2 R2 Silenttitan

10) dlwillson: D G1 Dlwillson B1 First

11) SilentTitan: Build G2 Silenttitan

12) dlwillson: B G2 Dlwillson

13) SilentTitan: Discover G2 Silenttitan Y3 Tic

14) dlwillson: B G3 First

15) SilentTitan: Discover G2 Tic B1 Toe

16) dlwillson: S G2 Dlwillson
B G2 First
B G3 Dlwillson

17) SilentTitan: Build G3 Toe

18) dlwillson: Sacrifice Y3 Dlwillson
Move G2 Dlwillson Toe
Move G1 First Dlwillson
Move G1 Dlwillson Toe
Catastrophe Toe G

19) SilentTitan: Trade R2 Y2 Silenttitan

20) dlwillson: Trade G2 Y2 First
	dlwillson: That was expensive and I'm not sure I like it. Oh well. It'll have to do.

21) SilentTitan: Trade Y3 R3 Silenttitan

22) dlwillson: B G1 Dlwillson

23) SilentTitan: Discover G1 Silenttitan Y3 Banana

24) dlwillson: B G2 First

25) SilentTitan: Build R1 Silenttitan

26) dlwillson: Trade G1 Y1 Dlwillson

27) SilentTitan: Discover G1 Banana B1 Grape

28) dlwillson: T G3 R3 First
	SilentTitan: uh oh... I've forgotten what I was going to do next

29) SilentTitan: Build G1 Grape

30) dlwillson: Sacrifice G3 Dlwillson
Build Y1 First
Build R1 First
Build G2 First

31) SilentTitan: Trade G1 R1 Grape

32) dlwillson: Move G2 First Dlwillson

33) SilentTitan: Build R2 Grape

34) dlwillson: Build Y1 First

35) SilentTitan: Trade R2 Y2 Grape

36) dlwillson: T Y1 G1 First

37) SilentTitan: Trade R3 G3 Silenttitan

38) dlwillson: D R3 First B3 Second

39) SilentTitan: Build R2 Grape

40) dlwillson: Move Y1 First Second

41) SilentTitan: Discover R1 Grape Y3 Ugly

42) dlwillson: Sacrifice G2 First
Build Y1 Second
Build R2 Second

43) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Silenttitan
Build Y3 Grape
Build R3 Silenttitan
	dlwillson: Evan says to tell you that he's rootin' for you to win.

44) dlwillson: S Y2 First
M R3 Second First
M R3 First Dlwillson
	SilentTitan: well... tell Evan Thanks

45) SilentTitan: Sacrifice Y3 Grape
Move R1 Ugly Grape
Move R1 Grape Dlwillson
Move R2 Grape Dlwillson
Catastrophe Dlwillson Red
	dlwillson: Huh. I think Evan's team might win... I'll let you know if I think of a way to grow my foot back.

46) dlwillson: Sacrifice Y1 Second
Move R1 First Dlwillson

47) SilentTitan: Move Y3 Silenttitan Dlwillson



16610)
Variants: "Hard time"
Started: 2010.6.10, Ended: 2010.8.7
Participants: mneme (S), dlwillson (N)
Winner: mneme

1) dlwillson: H B2 R1 G3

2) mneme: Homeworld G3 B2 R3

3) dlwillson: B G1 Dlwillson

4) mneme: Build R1 Mneme

5) dlwillson: T G1 Y1 Dlwillson

6) mneme: Build R1 Mneme

7) dlwillson: Build Y1 Dlwillson

8) mneme: Trade R3 Y3 Mneme

9) dlwillson: B G1 Dlwillson

10) mneme: Build R2 Mneme

11) dlwillson: Build G1 Dlwillson

12) mneme: Trade R2 G2 Mneme

13) dlwillson: Trade G1 B1 Dlwillson

14) mneme: Build R2 Mneme

15) dlwillson: B B1 Dlwillson

16) mneme: Trade R2 B2 Mneme

17) dlwillson: Discover B1 Dlwillson G3 Suse

18) mneme: Discover B2 Mneme G1 Forest

19) dlwillson: M Y1 Dlwillson Suse

20) mneme: Build R2 Mneme

21) dlwillson: D G1 Dlwillson B3 Fedora

22) mneme: Trade R2 Y2 Mneme

23) dlwillson: Build G1 Dlwillson

24) mneme: Build G2 Mneme

25) dlwillson: Sacrifice G3 Dlwillson
Build G2 Fedora
Build Y1 Suse
Build G3 Dlwillson

26) mneme: Move Y2 Mneme Forest

27) dlwillson: T G2 R2 Fedora

28) mneme: Move R1 Mneme Forest

29) dlwillson: Sacrifice G3 Dlwillson
B G2 Fedora
B Y2 Dlwillson
B G3 Dlwillson

30) mneme: Sacrifice G2 Mneme
Build Y2 Forest
Build Y3 Mneme

31) dlwillson: Sacrifice Y2 Dlwillson
Move B1 Dlwillson Suse
Move B1 Suse Forest

32) mneme: Sacrifice Y2 Forest
Move Y3 Mneme Forest
Move Y3 Forest Fedora

33) dlwillson: Trade G1 B1 Fedora

34) mneme: Build B3 Forest

35) dlwillson: Build B3 Forest
Catastrophe Forest B

36) mneme: Build R2 Forest

37) dlwillson: Build B1 Fedora

38) mneme: Sacrifice R2 Forest
Attack R2 Fedora
Attack G2 Fedora

39) dlwillson: Sacrifice G3 Dlwillson
Build B2 Fedora
Build B3 Suse
Build B3 Suse
Catastrophe Fedora B

40) mneme: Discover R1 Forest Y2 Safe

41) dlwillson: Trade B3 R3 Suse

42) mneme: Build R2 Mneme

43) dlwillson: M B3 Suse Dlwillson

44) mneme: Move R2 Mneme Forest

45) dlwillson: Discover Y1 Suse G1 Mint

46) mneme: Build G2 Mneme

47) dlwillson: Trade B3 G3 Dlwillson

48) mneme: Sacrifice G2 Mneme
Build R2 Mneme
Build R2 Safe

49) dlwillson: S G3 Dlwillson
B Y2 Mint
B Y3 Suse
B Y3 Dlwillson

50) mneme: Sacrifice G2 Mneme
Build R3 Mneme
Build R3 Forest

51) dlwillson: B G2 Dlwillson

52) mneme: Trade R3 G3 Mneme

53) dlwillson: B R3 Suse

54) mneme: Sacrifice Y2 Forest
Move R1 Safe Suse
Move R2 Forest Suse
Catastrophe Suse R

55) dlwillson: Trade Y3 R3 Suse

56) mneme: Move R2 Safe Mint

57) dlwillson: B Y2 Mint

58) mneme: Attack Y2 Mint

59) dlwillson: S R3 Suse
A R2 Mint
A Y2 Mint
Pass

60) mneme: Move G3 Mneme Mint

61) dlwillson: Sacrifice Y2 Mint
Move R2 Mint Suse
Discover Y1 Mint B3 Fedora

62) mneme: Sacrifice R1 Mneme
Attack Y2 Mint

63) dlwillson: Move G2 Dlwillson Fedora

64) mneme: Move G3 Mint Suse

65) dlwillson: T R2 G2 Suse

66) mneme: Sacrifice R2 Mneme
Attack G2 Suse
Attack B1 Suse

67) dlwillson: M G1 Dlwillson Suse
C Suse G

68) mneme: Build Y1 Mneme

69) dlwillson: Trade Y1 R1 Fedora

70) mneme: Trade Y1 R1 Mneme

71) dlwillson: Move Y1 Dlwillson Fedora
	mneme: damn.  forgot about the g1 in your homeworld!

72) mneme: Build R2 Mneme

73) dlwillson: B R2 Fedora

74) mneme: Trade R2 G2 Mneme
	dlwillson: Good game so far. Extremely challenging for me. That brouhaha in SUSE was just like the one in fedora earlier in the game, as expensive for me as it was for you, maybe more. Only worth it for the reduction of opportunity, but very costly.
	mneme: Oh, the one in fedora was deliberate for me; I figured I was destroying enough of your material to be worth losing a Large for.  I think I could have done better in SUSE, though had I realized you really did have your hand on the trigger.



75) dlwillson: B G1 Fedora

76) mneme: Build R2 Mneme

77) dlwillson: Sacrifice G2 Fedora
Build Y1 Dlwillson
Build G2 Fedora

78) mneme: Build R2 Forest

79) dlwillson: Discover R2 Fedora Y1 Ydl

80) mneme: Trade R2 B2 Mneme

81) dlwillson: T Y3 G3 Dlwillson

82) mneme: Sacrifice Y2 Mint
Discover R3 Forest B3 Touchstone
Move B2 Mneme Forest

83) dlwillson: S G2 Fedora
Build R2 Ydl
B R3 Fedora

84) mneme: Build R3 Forest

85) dlwillson: B G1 Dlwillson

86) mneme: Trade R3 Y3 Forest

87) dlwillson: D R2 Ydl R3 Redhat

88) mneme: Build B1 Forest

89) dlwillson: Build G2 Fedora

90) mneme: Build Y2 Forest

91) dlwillson: M G1 Fedora Ydl

92) mneme: Discover B2 Forest G3 Harpershall

93) dlwillson: Sacrifice G3 Dlwillson
Build G2 Ydl
Build Y2 Fedora
Build G3 Dlwillson

94) mneme: Discover R2 Forest Y3 Harper

95) dlwillson: S Y2 Fedora
M G2 Ydl Mneme
M G1 Ydl Mneme
C Mneme G

96) mneme: Build B1 Harpershall

97) dlwillson: Discover R1 Fedora G1 Suse

98) mneme: Build B1 Harpershall

99) dlwillson: T R3 B3 Fedora

100) mneme: Sacrifice Y3 Forest
Move B1 Harpershall Dlwillson
Move B1 Harpershall Dlwillson
Move B2 Harpershall Dlwillson
Catastrophe Dlwillson B

	dlwillson: Excellent game, Mneme
	mneme: Thanks -- Excellent game!


16558)
Started: 2010.6.12, Ended: 2010.6.23
Participants: dlwillson (S), ZackStack (N)
Winner: dlwillson

1) ZackStack: Homeworld R1 B3 G3

2) dlwillson: H Y3 B2 G3
	ZackStack: Hey DL!  Have a good game.

3) ZackStack: Build G1 Zackstack

4) dlwillson: Build G1 Dlwillson
	ZackStack: I hope you won't be turning my strategy from my game against Titan against me ;-)

5) ZackStack: Trade G1 Y1 Zackstack
	dlwillson: I sure hope so! Actually, I'm intending to green-race or red-race, whichever one works out. They both look promising from here. You'll grab the other and beat me, or you'll go blue and beat me, or you'll lock me out of yellow and beat me.  :-))))
	ZackStack: Well... so long as we're clear on that point :-p

6) dlwillson: Trade G1 R1 Dlwillson

7) ZackStack: Build Y1 Zackstack
	dlwillson: "Red!" said Fred. :-)

8) dlwillson: Build R1 Dlwillson

9) ZackStack: Build Y1 Zackstack

10) dlwillson: B R2 Dlwillson

11) ZackStack: Discover Y1 Zackstack G2 Apple

12) dlwillson: Discover R2 Dlwillson B1 Ibm

13) ZackStack: Build Y2 Apple

14) dlwillson: Discover R1 Dlwillson B1 Novell
	ZackStack: Heh. Nice.

15) ZackStack: Build Y2 Apple

16) dlwillson: B R2 Dlwillson

17) ZackStack: Build Y2 Zackstack

18) dlwillson: B G1 Dlwillson

19) ZackStack: Discover Y2 Apple G1 Linux

20) dlwillson: Sacrifice G3 Dlwillson
Build R2 Novell
Build R3 Novell
Build R3 Ibm

21) ZackStack: Trade G3 R3 Zackstack

22) dlwillson: T R3 Y3 Novell
	dlwillson: Gotta tell you, I don't know what it is about this game in particular, but I think this is a new "most fun" I've had playing Homeworlds. :-)
	ZackStack: Great!  I'm glad you're enjoying the game.

23) ZackStack: Build Y3 Linux

24) dlwillson: Build R3 Dlwillson

25) ZackStack: Trade Y1 G1 Zackstack

26) dlwillson: Trade R3 G3 Dlwillson

27) ZackStack: Discover Y1 Apple B1 Macos

28) dlwillson: Trade R3 G3 Ibm

29) ZackStack: Sacrifice Y2 Apple
Move Y3 Linux Dlwillson
Move Y2 Linux Dlwillson

30) dlwillson: Sacrifice R2 Novell
Attack Y3 Dlwillson
Attack Y2 Dlwillson

31) ZackStack: Move Y1 Macos Dlwillson
Catastrophe Dlwillson Yellow

32) dlwillson: S Y3 Novell
M R2 Dlwillson Zackstack
M R1 Dlwillson Zackstack
M G3 Dlwillson Zackstack
C Zackstack R
	dlwillson: Hm... Hm... think, think... Sure do like playing this game with you. ... I think.  :-D

	dlwillson: I think that ends it, but not sure. Do you see something I missed?

	ZackStack: Nope.  I'm doomed! Doomed I tells ya!  Good game!
	dlwillson: Yes, excellent game, thank you!


16629)
Started: 2010.6.13, Ended: 2010.8.27
Participants: ZackStack (S), efwin (N)
Winner: efwin

1) efwin: Homeworld G1 B2 Y3

2) ZackStack: Homeworld B3 R2 G3
	efwin: Hello, again -- I only played this one once before, so we'll see what's what...
	ZackStack: I'll try to be gentle then ;-)  Have a good game!

3) efwin: Build Y1 Efwin

4) ZackStack: Build G1 Zackstack

5) efwin: Build Y1 Efwin

6) ZackStack: Trade G1 Y1 Zackstack

7) efwin: Discover Y1 Efwin G3 Neergeerht

8) ZackStack: Build Y2 Zackstack

9) efwin: Build Y2 Efwin

10) ZackStack: Discover Y1 Zackstack G1 Faargurt

11) efwin: Trade Y2 R2 Efwin
	ZackStack: Danger Will Robinson!  <waves arms about frantically>

12) ZackStack: Build Y2 Faargurt
	efwin: Thanks for the warning -- I remembered about the more than three of any one color being a problem
	ZackStack: I figured it was probably unneccessary... but am just too big a fan of frantically waving my arms around ;-)

13) efwin: Build Y2 Neergeerht

14) ZackStack: Build G1 Zackstack
	efwin: Well, it is best to do a lot of exercise due to the low gravity out here in space
	ZackStack: <chuckle>

15) efwin: Build R1 Efwin

16) ZackStack: Discover Y2 Faargurt B3 Biggbloo

17) efwin: Discover Y2 Neergeerht G2 Neergwot

18) ZackStack: Sacrifice G3 Zackstack
Build Y3 Zackstack
Build Y3 Biggbloo
Build G2 Zackstack

19) efwin: Trade R2 G2 Efwin

20) ZackStack: Discover G1 Zackstack B1 Lilbloo

21) efwin: Discover G2 Efwin R3 Dereerht

22) ZackStack: Build G3 Lilbloo
	ZackStack: You might want to Undo.  The green ship at LilBloo can make it to your Homeworld if I sac a yellow...
	efwin: Thanks -- I counted to two (ships) and figured I was OK -- I think I'll  try something different...

23) efwin: Trade Y1 B1 Efwin
	ZackStack: I also realized I can cause some serious damage if I sacrifice my y2 and send the ships from BigBloo to your home... just thought I'd point that out :-)

24) ZackStack: Build G3 Zackstack

25) efwin: Build Y1 Neergeerht
	efwin: hmmmmmmmmm -- there's so much to watch out for in the universe

26) ZackStack: Move Y2 Zackstack Lilbloo

27) efwin: Discover Y1 Neergeerht B1 Eulbeno

28) ZackStack: Move G3 Lilbloo Dereerht

29) efwin: Sacrifice G2 Dereerht
Build B2 Efwin
Build R1 Efwin

30) ZackStack: Trade G2 B2 Zackstack

31) efwin: Move B2 Efwin Neergeerht
	efwin: Figured I might as well get a little something from my ship rather than let you just flip it to your side...

32) ZackStack: Discover G1 Lilbloo B3 Largbloo
	ZackStack: I figured you would respond with something like that.  Well played.

33) efwin: Move B2 Neergeerht Eulbeno
	efwin: Thanks -- still doesn't quite make up for the fact that you have about 1000 size three ships and I have one

34) ZackStack: Move B2 Zackstack Faargurt

35) efwin: Move R1 Efwin Neergeerht

36) ZackStack: Sacrifice G1 Largbloo
Build B3 Faargurt

37) efwin: Build R1 Efwin

38) ZackStack: Move B2 Faargurt Dereerht

39) efwin: Build R2 Neergeerht

40) ZackStack: Trade Y2 R2 Biggbloo

41) efwin: Build Y2 Neergwot

42) ZackStack: Move Y2 Lilbloo Dereerht

43) efwin: Move R2 Neergeerht Neergwot

44) ZackStack: Build B1 Dereerht

45) efwin: Sacrifice Y2 Neergwot
Move B1 Efwin Dereerht
Move B2 Eulbeno Dereerht
Catastrophe Dereerht Blue

46) ZackStack: Build Y2 Dereerht

47) efwin: Build R3 Neergeerht
	efwin: Probably should have just moved the blue away from danger -- but figured I'd try something with a little bigger impact and see how that goes
	ZackStack: Well... it set back my immediate plans.  Well done! :-)

48) ZackStack: Sacrifice Y3 Zackstack
Move Y3 Biggbloo Efwin
Move Y2 Dereerht Efwin
Move Y2 Dereerht Efwin
Catastrophe Efwin Yellow

49) efwin: Sacrifice Y2 Neergwot
Move R3 Neergeerht Efwin
Discover R1 Efwin Y3 Wolleyeerht
	efwin: Thanks

50) ZackStack: Sacrifice G3 Dereerht
Build G1 Zackstack
Build R3 Biggbloo
Build Y2 Faargurt
	ZackStack: You're welcome ;-)

51) efwin: Trade R3 Y3 Efwin
	efwin: Well, your move was going to put me in a bad spot...  Hopefully, that gives me momentary safety

52) ZackStack: Move B3 Faargurt Neergeerht
	ZackStack: Good defense... but I'm hoping I can keep your back against the wall for a little while longer!

53) efwin: Build Y2 Efwin
	efwin: You are forcing my moves at the moment... 

54) ZackStack: Sacrifice R2 Biggbloo
Attack Y1 Neergeerht
Attack R1 Neergeerht

55) efwin: Trade Y2 G2 Efwin

56) ZackStack: Build Y2 Neergeerht

57) efwin: Build R2 Neergwot

58) ZackStack: Trade Y2 G2 Neergeerht

59) efwin: Build Y2 Efwin

60) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build R3 Biggbloo
Build B1 Neergeerht

61) efwin: Sacrifice Y2 Efwin
Move R2 Neergwot Biggbloo
Move R1 Efwin Biggbloo
Catastrophe Biggbloo Red

62) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build Y2 Neergeerht
Build R1 Neergeerht
	ZackStack: Sometimes that move feels like cheating...
	efwin: ... and yet, it seems to have been legal and something you can enjoy again

63) efwin: Build R2 Neergwot
	ZackStack: I wondered if I'd made that system too big a target... :-)

64) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build G3 Zackstack
Build Y2 Faargurt

65) efwin: Discover G2 Efwin Y3 Wolleyeerhtii
	efwin: I'm afraid I'm just managing to put off the inevitable at this point -- but maybe the fleet at neergeerht is contemplating vacation spots ;-)
	ZackStack: And here all I see is all my eggs in one basket!

66) ZackStack: Trade G3 B3 Zackstack
	ZackStack: Normally that move is insanely dangerous... but I think I have one turn to fix it before you can take advantage...

67) efwin: Sacrifice G2 Wolleyeerhtii
Build Y3 Eulbeno
Build R3 Wolleyeerht
	efwin: I couldn't see anything better to do than carry through with the threat...

68) ZackStack: Sacrifice Y2 Faargurt
Move B3 Zackstack Faargurt
Discover B3 Faargurt G3 Yohgeert
	ZackStack: Nice work denying the Y3 I wanted :-)

69) efwin: Move R3 Wolleyeerht Faargurt
	efwin: Thanks -- Sorry for the delay. A storm knocked out power to our area TH afternoon and we only got it back this afternoon (Sun)

70) ZackStack: Sacrifice Y2 Faargurt
Move Y1 Faargurt Yohgeert
Move B1 Neergeerht Efwin
	ZackStack: Sorry to hear about the power outage!  I hope it hasn't been as nasty hot there as it has been here...

71) efwin: Move Y1 Eulbeno Neergwot
	efwin: It's been hot here (DC) all summer -- but that's probably been the case around much of the country this year

72) ZackStack: Sacrifice G2 Neergeerht
Build B1 Efwin
Build B2 Efwin
Catastrophe Efwin Blue

73) efwin: Move R2 Neergwot Efwin
	efwin: I'm suspicious of the little blue visitor
	ZackStack: Visitors are always trouble in this game...

74) ZackStack: Trade Y2 G2 Neergeerht

75) efwin: Build R3 Efwin
	efwin: Sorry to have to put your plans to dominate the universe on hold, but I'll be away the rest of the week (no computer) so won't be able to move again until Sunday -- have a good week
	ZackStack: No problem!  Thanks for letting me know.  I'll be out of town from Thursday until Monday/Tuesday (also without a computer) so we'll finish up when we're both back! :-)

76) ZackStack: Move R1 Neergeerht Efwin

77) efwin: Sacrifice Y3 Efwin
Move Y3 Eulbeno Zackstack
Move R3 Efwin Zackstack
Move Y1 Neergwot Efwin

	efwin: I hope I thought that through correctly...
	ZackStack: You thought it through well.  Good Game!
	efwin: Thanks for the game


16636)
Variants: "No undo, Sinister"
Started: 2010.6.14, Ended: 2010.6.21
Participants: zara2stra (S), goulo (N), AdamBadura (E)
Winner: AdamBadura

1) goulo: Homeworld B1 G2 Y3

2) AdamBadura: Homeworld B2 G3 R3

3) zara2stra: Homeworld G3 Y1 B3

4) goulo: Build Y1 Goulo

5) AdamBadura: Build R1 Adambadura

6) zara2stra: Build B1 Zara2stra

7) goulo: Build Y1 Goulo

8) AdamBadura: Trade R3 Y3 Adambadura

9) zara2stra: Trade B1 Y1 Zara2stra

10) goulo: Trade Y1 G1 Goulo

11) AdamBadura: Discover R1 Adambadura B1 Bravenewworld

12) zara2stra: Build B1 Zara2stra

13) goulo: Discover Y1 Goulo G3 Smeraldo

14) AdamBadura: Build Y1 Adambadura

15) zara2stra: Build Y2 Zara2stra

16) goulo: Build Y2 Smeraldo

17) AdamBadura: Move Y1 Adambadura Bravenewworld

18) zara2stra: Discover Y2 Zara2stra R2 Alpha

19) goulo: Build Y2 Goulo

20) AdamBadura: Build Y2 Adambadura

21) zara2stra: Trade Y1 G1 Zara2stra

22) goulo: Trade Y2 R2 Goulo

23) AdamBadura: Move Y2 Adambadura Bravenewworld

24) zara2stra: Trade B1 R1 Zara2stra

25) goulo: Build R1 Goulo

26) AdamBadura: Trade Y3 G3 Adambadura

27) zara2stra: Build B1 Zara2stra
	AdamBadura: Another one of Branches? After winning previous game I suddenly started to like that game... ;)

28) goulo: Move R2 Goulo Smeraldo

29) AdamBadura: Trade Y2 R2 Bravenewworld

30) zara2stra: Move G1 Zara2stra Alpha

31) goulo: Discover G1 Goulo B3 Safiro

32) AdamBadura: Trade G3 B3 Adambadura

33) zara2stra: Move B1 Zara2stra Alpha

34) goulo: Discover Y2 Smeraldo G1 Verdeto

35) AdamBadura: Build B1 Adambadura

36) zara2stra: Build B2 Alpha

37) goulo: Build Y1 Goulo

38) AdamBadura: Trade B3 Y3 Adambadura

39) zara2stra: Build Y2 Alpha
	AdamBadura: Somehow I feel I'm lost in this game. I must have made some bad moves at the begining and now it seems difficult to progress... But we shall see what the future brings...
	goulo: I would not be surprised if we all feel that way. :)
BTW Adam, zara2stra and I just finished a game of Alien City and it's excellent! Strictly 2-player though. If you want to play a game with me, I'm happy to. :)

40) goulo: Build Y2 Smeraldo

41) AdamBadura: Build Y3 Adambadura

42) zara2stra: Move Y2 Alpha Smeraldo

43) goulo: Attack Y2S Smeraldo

44) AdamBadura: Move Y1 Bravenewworld Smeraldo
Catastrophe Smeraldo Y
	AdamBadura: Some how I feel goulo is ploting against me... ;)

45) zara2stra: Build B2 Zara2stra

46) goulo: Build Y1 Verdeto

47) AdamBadura: Move Y3 Adambadura Verdeto

48) zara2stra: Move Y2 Alpha Verdeto
Catastrophe Verdeto Y
	AdamBadura: Oh... A bad move... :) Pity!

49) goulo: Build R1 Smeraldo

50) AdamBadura: Trade R1 G1 Bravenewworld

51) zara2stra: Trade B2 Y2 Alpha
	AdamBadura: goule: I started reading Alien City rules... I will challange you as soon as I'm ready.

52) goulo: Move Y1 Goulo Smeraldo

53) AdamBadura: Build B2 Adambadura

54) zara2stra: Move B2 Zara2stra Alpha

55) goulo: Build Y1 Goulo

56) AdamBadura: Build R1 Bravenewworld

57) zara2stra: Discover B2 Alpha R3 Beta

58) goulo: Build R2 Goulo

59) AdamBadura: Trade R1 Y1 Bravenewworld

60) zara2stra: Move G1 Alpha Beta

61) goulo: Move Y3 Goulo Beta

62) AdamBadura: Build Y2 Bravenewworld

63) zara2stra: Sacrifice Y2 Alpha
Move B2 Beta Alpha
Move G1 Beta Alpha

64) goulo: Move Y3 Beta Bravenewworld

65) AdamBadura: Build Y2 Bravenewworld
Catastrophe Bravenewworld Y

66) zara2stra: Trade B2 Y2 Alpha
	AdamBadura: I hope you are happy now goulo... :P

67) goulo: Trade R2 B2 Goulo
	goulo: Hm, that's what I get for doing too many turns in too many games... mistakes! :P

68) AdamBadura: Discover B2 Adambadura G1 Theendisnigh
	AdamBadura: I considered this to be a mistake. I even considered making private agreements with you after that move.

But I changed my mind and deleted the email as you are my direct opponent and thus it was hard for me to trust you.

So basicly both of us lost and zara2stra gained...

69) zara2stra: Build G2 Alpha

70) goulo: Build R1 Goulo

71) AdamBadura: Build G2 Bravenewworld

72) zara2stra: Discover G2 Alpha R3 Beta

73) goulo: Move B2 Goulo Smeraldo

74) AdamBadura: Trade G2 Y2 Bravenewworld

75) zara2stra: Build G2 Beta

76) goulo: Discover R2 Smeraldo Y1 Poleno

77) AdamBadura: Build Y2 Adambadura

78) zara2stra: Sacrifice Y2 Alpha
Move G2 Beta Goulo
Move G2 Beta Goulo

79) goulo: Build R2 Goulo
	goulo: Hmm, this game is not my finest hour... :)

80) AdamBadura: Build R3 Bravenewworld

81) zara2stra: Build G2 Goulo
Catastrophe Goulo G

82) goulo: Build R3 Smeraldo

83) AdamBadura: Build R3 Bravenewworld
	AdamBadura: goulo, look at the bright side. Now you are directly connected to my system... :)

84) zara2stra: Build R3 Zara2stra

85) goulo: Move R1 Smeraldo Bravenewworld
Catastrophe Bravenewworld R

86) AdamBadura: Build G2 Bravenewworld
	AdamBadura: goulo: Good move. Now zara2stra will have more freedom to destroy you... ;P

87) zara2stra: Build G2 Alpha

88) goulo: Build B2 Smeraldo

89) AdamBadura: Build B3 Theendisnigh

90) zara2stra: Build B3 Alpha

91) goulo: Build Y2 Smeraldo

92) AdamBadura: Trade B2 Y2 Theendisnigh

93) zara2stra: Trade B3 Y3 Alpha

94) goulo: Trade R2 G2 Goulo

95) AdamBadura: Sacrifice G2 Bravenewworld
Build Y3 Bravenewworld
Build Y3 Theendisnigh

96) zara2stra: Sacrifice Y3 Alpha
Move B3 Zara2stra Alpha
Move B3 Alpha Goulo
Move B1 Alpha Zara2stra
	AdamBadura: I like it when they are big... ;) (Ships, I meant ships....)

97) goulo: Build B2 Smeraldo

98) AdamBadura: Sacrifice Y2 Adambadura
Move Y3 Bravenewworld Alpha
Move Y3 Theendisnigh Alpha
	goulo: Bleah... if there were 2 blues left to build, zara wins next turn.

99) zara2stra: Sacrifice R1 Zara2stra
Attack G2N Goulo

100) goulo: Move Y1 Smeraldo Goulo

101) AdamBadura: Trade Y2 R2 Theendisnigh

102) zara2stra: Sacrifice G2 Alpha
Build B3 Goulo
Build R1 Zara2stra

103) goulo: Build Y2 Smeraldo

104) AdamBadura: Move B1 Adambadura Goulo
Catastrophe Goulo B

105) AdamBadura: Sacrifice Y3 Alpha
Move Y3 Alpha Zara2stra
Move B3 Theendisnigh Alpha
Move B3 Alpha Zara2stra
	AdamBadura: Sorry goulo but it was to much risk zara2stra would manage to destroy you before I would destroy him.
	AdamBadura: Why again it is my turn?

106) zara2stra: Attack B3E Zara2stra
	zara2stra: you won :/

107) AdamBadura: Sacrifice R2 Theendisnigh
Attack R3S Zara2stra
Attack B3S Zara2stra

108) zara2stra: Build R1 Zara2stra

109) AdamBadura: Sacrifice R3 Zara2stra
Attack R1S Zara2stra
Attack R1S Zara2stra
Attack B1S Zara2stra
	AdamBadura: Yes. I know. I was palnning to do that before, but first goulo destroyed my two 3 ships, and then you were to close to goulo.

I think turning point of the game was when goulo (by mistake) lost his 3 ship by invading my system and forcing me to catastrophe.

Then you attacked goulo lessering his pressure on me.

But in the end I think you somehow misscalculated your attcions with goulo. Haven't you thought of me destroying that system?
	AdamBadura: This was an interesting game bacause it is first time that only one player lost any stars. It is first time a player loses without loosing any star and it is first time a player is destroyed by the left one rather than the right one.

Another one?
	goulo: Yes, interesting different game play! A good sign for Homeworlds as a game with lasting replay value. :)

And yeah, I agree it made sense for Adam to destroy me before zara destroyed me and won.  Good game!

I am happy to play another. Zara2stra, you want to also?
	goulo: BTW Adam in theory I will have 3 rainbow pyramid sets before Saturday, so we could play binary homeworlds live then if you like. :)
	AdamBadura: I'm not sure now whether I will be at Saturday at UP. But I will try to remember to let you know. Although if I will be it is most likely I will be at 11 as usually.

Why it took so long to get those sets? I though you had them for a long time now...
	zara2stra: Ok, we can play another game (although expect lags on my part during this week).
	goulo: Rebel apparently had 3 rainbow stashes in stock, and then forgot to order more (and the Martian Coasters I wanted). Sigh. So now they are ordering the additional ones. Eventually I will have them all... :)



16497)
Started: 2010.6.14, Ended: 2010.6.18
Participants: ts52 (S), goulo (N)
Winner: goulo

1) goulo: Homeworld B1 G2 Y3

2) ts52: Homeworld B2 Y3 G3
	goulo: Hi, have fun!

3) goulo: Build Y1 Goulo
	ts52: Thanks. You too!

4) ts52: Build G1 Ts52

5) goulo: Build Y1 Goulo

6) ts52: Trade G1 Y1 Ts52

7) goulo: Trade Y1 G1 Goulo

8) ts52: Discover Y1 Ts52 G1 Robin

9) goulo: Discover Y1 Goulo G3 Smeraldo

10) ts52: Build G1 Ts52

11) goulo: Build G2 Goulo

12) ts52: Discover Y1 Robin G3 Kermit

13) goulo: Trade G2 R2 Goulo

14) ts52: Trade G1 R1 Ts52

15) goulo: Build R1 Goulo

16) ts52: Build G1 Ts52

17) goulo: Move R2 Goulo Smeraldo

18) ts52: Discover G1 Ts52 B1 Grover

19) goulo: Build Y1 Smeraldo

20) ts52: Build Y2 Kermit

21) goulo: Build Y2 Goulo

22) ts52: Build G1 Ts52

23) goulo: Discover G1 Goulo Y3 Citrono

24) ts52: Move Y2 Kermit Grover

25) goulo: Move Y2 Goulo Kermit

26) ts52: Build Y2 Grover

27) goulo: Sacrifice G1 Citrono
Build Y3 Goulo

28) ts52: B G1 Grover

29) goulo: Build R1 Goulo

30) ts52: Build R2 Ts52

31) goulo: Sacrifice R1 Goulo
Attack Y1 Kermit

32) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Ts52
Build G3 Ts52

33) goulo: Discover Y2 Kermit R1 Rubeno

34) ts52: Move R2 Ts52 Grover

35) goulo: Discover Y1 Smeraldo B1 Mirtelo

36) ts52: Move G2 Ts52 Mirtelo

37) goulo: Move Y1 Mirtelo Ts52

38) ts52: Attack Y1 Ts52

39) goulo: Sacrifice Y3 Goulo
Move Y1 Smeraldo Rubeno
Move Y1 Rubeno Ts52
Move Y2 Rubeno Ts52
Catastrophe Ts52 Y

40) ts52: Move R2 Grover Kermit

41) goulo: Discover Y1 Kermit R1 Sangero

42) ts52: Move Y2 Grover Kermit

43) goulo: Build R2 Goulo

44) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Ts52
Build R3 Kermit

45) goulo: Build R3 Smeraldo

46) ts52: Build Y1 Grover

47) goulo: Move Y1 Sangero Smeraldo

48) ts52: Trade R1 Y1 Ts52

49) goulo: Move R3 Smeraldo Grover

50) ts52: Sacrifice Y2 Grover
Discover G2 Grover Y3 Bigbird
Move G1 Grover Bigbird

51) goulo: Attack Y1 Grover

52) ts52: Sacrifice G1 Grover
Build G1 Bigbird

53) goulo: Move R3 Grover Bigbird

54) ts52: Sacrifice Y2 Kermit
Move G2 Bigbird Goulo
Move G1 Bigbird Goulo

55) goulo: Attack G1 Bigbird

56) ts52: Sacrifice G1 Ts52
Build G1 Goulo
Catastrophe Goulo Green

57) goulo: Trade R2 B2 Goulo

58) ts52: Build Y2 Ts52

59) goulo: Move B2 Goulo Bigbird

60) ts52: Move R3 Ts52 Smeraldo

61) goulo: Sacrifice Y1 Smeraldo
Move R2 Smeraldo Grover

62) ts52: Trade G2 B2 Mirtelo

63) goulo: Build B3 Bigbird

64) ts52: Move Y1 Ts52 Mirtelo

65) goulo: Move R3 Bigbird Mirtelo

66) ts52: Discover B2 Mirtelo Y2 Zoe

67) goulo: Trade R3 B3 Mirtelo

68) ts52: Sacrifice Y2 Ts52
Move R3 Kermit Goulo
Move R3 Smeraldo Goulo

69) goulo: Sacrifice Y3 Goulo
Move B3 Mirtelo Ts52
Move B3 Bigbird Ts52
Move B2 Bigbird Ts52
Catastrophe Ts52 B
	ts52: Thanks for the game.
	goulo: Thanks! Man, that was a tense close tough game. :)



16645)
Variants: "Hard time"
Started: 2010.6.14, Ended: 2010.6.21
Participants: fnord (S), captncavern (N)
Winner: captncavern

1) captncavern: Homeworld G3 B1 Y3
	captncavern: Have a good game!

2) fnord: Homeworld B2 Y3 G3

3) captncavern: Build Y1 Captncavern



16574)
Variants: "Hard time"
Started: 2010.6.16, Ended: 2010.8.10
Participants: Mandrel (S), SilentTitan (N)
Winner: Mandrel

1) SilentTitan: Homeworld Y2 G3 B3

2) Mandrel: Homeworld R1 B3 G3

3) SilentTitan: Build B1 Silenttitan
	Mandrel: Have a good game
	SilentTitan: you too

4) Mandrel: Build G1 Mandrel

5) SilentTitan: Discover B1 Silenttitan B1 Blue

6) Mandrel: Trade G1 B1 Mandrel

7) SilentTitan: Build B2 Silenttitan

8) Mandrel: Build B2 Mandrel

9) SilentTitan: Trade B3 G3 Silenttitan

10) Mandrel: Trade B2 Y2 Mandrel

11) SilentTitan: Build B2 Silenttitan

12) Mandrel: Build B2 Mandrel

13) SilentTitan: Build B3 Silenttitan

14) Mandrel: Trade B1 R1 Mandrel

15) SilentTitan: Discover B2 Silenttitan G1 Green

16) Mandrel: Discover B2 Mandrel G2 Resolution

17) SilentTitan: Trade B2 R2 Silenttitan

18) Mandrel: Build Y1 Mandrel

19) SilentTitan: Discover G3 Silenttitan R1 Red

20) Mandrel: Build R2 Mandrel

21) SilentTitan: Trade B2 R2 Green

22) Mandrel: Move R2 Mandrel Resolution

23) SilentTitan: Trade R2 Y2 Silenttitan

24) Mandrel: Sacrifice Y1 Mandrel
Move R2 Resolution Blue

25) SilentTitan: Trade B3 R3 Silenttitan

26) Mandrel: Attack B1N Blue

27) SilentTitan: Build Y1 Silenttitan

28) Mandrel: Trade B1 Y1 Blue

29) SilentTitan: Move Y2 Silenttitan Green

30) Mandrel: Build G1 Mandrel

31) SilentTitan: Discover Y2 Green G2 Sink

32) Mandrel: Sacrifice G1 Mandrel
Build Y1 Blue

33) SilentTitan: Sacrifice Y1 Silenttitan
Discover G3 Red B2 Rand

34) Mandrel: Trade B2 R2 Resolution

35) SilentTitan: Build G1 Rand

36) Mandrel: Trade Y1 R1 Blue

37) SilentTitan: Build R3 Green

38) Mandrel: Build R3 Resolution

39) SilentTitan: Trade G1 B1 Rand

40) Mandrel: Trade R1 Y1 Mandrel

41) SilentTitan: Sacrifice B1 Rand
Trade R3 B3 Silenttitan

42) Mandrel: Trade Y1 B1 Mandrel

43) SilentTitan: Build G1 Rand

44) Mandrel: Build Y1 Mandrel

45) SilentTitan: Trade G1 Y1 Rand

46) Mandrel: B G1 Mandrel

47) SilentTitan: Sacrifice G3 Rand
Build Y3 Rand
Build Y3 Sink
Build B1 Silenttitan

48) Mandrel: Sacrifice G1 Mandrel
Build Y3 Blue

49) SilentTitan: Sacrifice Y3 Sink
Move Y2 Sink Blue
Move Y1 Rand Blue
Move R3 Green Rand
Catastrophe Blue Yellow

50) Mandrel: T R2 Y2 Blue

51) SilentTitan: Build B2 Silenttitan

52) Mandrel: Move Y2 Mandrel Resolution

53) SilentTitan: Sacrifice B2 Silenttitan
Trade R2 B2 Green
Trade B3 G3 Silenttitan

54) Mandrel: Move B1 Mandrel Resolution

55) SilentTitan: Build G1 Silenttitan

56) Mandrel: T R2 G2 Resolution

57) SilentTitan: Trade G1 Y1 Silenttitan

58) Mandrel: Move G2 Resolution Blue

59) SilentTitan: Sacrifice Y1 Silenttitan
Move B2 Green Rand

60) Mandrel: B Y1 Blue

61) SilentTitan: Trade B2 G2 Rand

62) Mandrel: B G1 Blue

63) SilentTitan: Trade G3 R3 Silenttitan

64) Mandrel: B Y1 Resolution

65) SilentTitan: Build R1 Rand

66) Mandrel: B Y3 Mandrel

67) SilentTitan: Build B2 Silenttitan

68) Mandrel: D Y1 Resolution G1 Tragedy

69) SilentTitan: Move B1 Silenttitan Blue

70) Mandrel: A B1N Blue

71) SilentTitan: Build R2 Silenttitan

72) Mandrel: B Y3 Resolution

73) SilentTitan: Move R2 Silenttitan Tragedy

74) Mandrel: S Y3 Resolution
Move Y1 Tragedy Silenttitan
Move Y1 Blue Silenttitan
Move Y2 Blue Silenttitan
C Silenttitan Yellow

	SilentTitan: Good game ... congrats

	Mandrel: Good game!


16632)
Variants: "Hard time"
Started: 2010.6.16, Ended: 2010.7.23
Participants: Uglyfoot (S), sordros (N)
Winner: Uglyfoot

1) sordros: Homeworld Y1 B2 G3

2) Uglyfoot: Homeworld B3 Y2 G3
	sordros: Hi, good luck

3) sordros: Build G1 Sordros

4) Uglyfoot: Build G1 Uglyfoot

5) sordros: Trade G1 Y1 Sordros

6) Uglyfoot: Build G1 Uglyfoot

7) sordros: Build G1 Sordros

8) Uglyfoot: Discover G1 Uglyfoot R1 Step

9) sordros: Build G2 Sordros

10) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Step
Build G2 Step
Build G3 Uglyfoot

11) sordros: Discover G2 Sordros G3 Verdega

12) Uglyfoot: Trade G1 B1 Uglyfoot

13) sordros: Trade G1 B1 Sordros

14) Uglyfoot: Move B1 Uglyfoot Step

15) sordros: Build G1 Sordros

16) Uglyfoot: Trade G2 Y2 Step

17) sordros: Trade G1 R1 Sordros

18) Uglyfoot: Build G1 Uglyfoot

19) sordros: Build R1 Sordros

20) Uglyfoot: Move G1 Step Verdega

21) sordros: Discover R1 Sordros B3 Bluega

22) Uglyfoot: Sacrifice G3 Uglyfoot
Build G1 Verdega
Build G2 Step
Build G3 Uglyfoot
Catastrophe Verdega G

23) sordros: Build R2 Sordros

24) Uglyfoot: Trade G2 R2 Step

25) sordros: Build G1 Sordros

26) Uglyfoot: Discover R2 Step Y3 Node



16665)
Started: 2010.6.17, Ended: 2010.6.22
Participants: logikal (S), tvgide (N)
Winner: logikal

1) tvgide: Homeworld G3 B2 R3

2) logikal: Homeworld B1 G3 Y3

3) tvgide: Build R1 Tvgide

4) logikal: Build Y1 Logikal

5) tvgide: Trade R1 Y1 Tvgide

6) logikal: Trade Y1 R1 Logikal

7) tvgide: Discover R3 Tvgide Y1 Tv2

8) logikal: Build R1 Logikal

9) tvgide: Build Y1 Tvgide

10) logikal: Build Y2 Logikal

11) tvgide: Trade Y1 G1 Tvgide

12) logikal: Trade Y3 G3 Logikal

13) tvgide: Move G1 Tvgide Tv2

14) logikal: Trade R1 B1 Logikal

15) tvgide: Build G1 Tv2

16) logikal: Discover G3 Logikal B2 L1

17) tvgide: Trade Y1 R1 Tvgide

18) logikal: Sacrifice Y2 Logikal
Move G3 L1 Tv2
Move G3 Tv2 Tvgide

19) tvgide: Build R1 Tvgide

20) logikal: Build R2 Logikal

21) tvgide: Build R2 Tvgide

22) logikal: Sacrifice R1 Logikal
Attack R2 Tvgide

23) tvgide: Move G1 Tv2 Tvgide

24) logikal: Trade G3 Y3 Tvgide

25) tvgide: Discover R3 Tv2 Y2 Tv1

26) logikal: Sacrifice R2 Tvgide
Attack R1 Tvgide
Attack G1 Tvgide

27) tvgide: Move R3 Tv1 Logikal

28) logikal: Attack R1 Tvgide



16625)
Variants: "Unrated"
Started: 2010.6.17, Ended: 2010.8.17
Participants: makertron (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld G1 B2 Y3

	Mandrel: Have a godd game!
	Mandrel: Have a good game!


16654)
Variants: "Hard time"
Started: 2010.6.19, Ended: 2010.7.11
Participants: Jesse (S), daselva (N)
Winner: Jesse

1) daselva: Homeworld B2 G3 Y3

2) Jesse: Homeworld R1 B3 G3

3) daselva: Build Y1 Daselva

4) Jesse: Build G1 Jesse
	Jesse: Hello, and have a good game.

5) daselva: Trade Y1 G1 Daselva

6) Jesse: Trade G1 Y1 Jesse
	daselva: hello,sorry if I do wrong things...I´m a beginner

7) daselva: Build G1 Daselva
	Jesse: Have you read the tips on the wiki page?

8) Jesse: Build G1 Jesse
	daselva: yes I did...thank you,but reading is different of playing...you will be my first teacher
	Jesse: Well, here's a tip: Variety is good.  That yellow star isn't helping your yellow ship do anything.  A green would let you build more ships, which would be the usual choice for a yellow ship.  A blue star would let you change your ship's color, but that would be more efficiently done directly at the homeworld, or it would be done after you'd built some ships at a green system.  A red would provide you some security against small ships coming for you, but would not help you develop.

Discovering a same-colored system like that can be useful in situations where you're trying to keep a color to yourself.  If you were using up the last small yellow, for instance, to make it so I couldn't trade a small green for a yellow.  (That wouldn't work here, though, since I've chosen a red-blue home system in part for the flexibility to trade either the large or the small ship for yellow at this point.)

Do you want to stick with your move?  It won't cause anything horrible to happen, but may not be developing quite as smoothly as you could.

9) daselva: Trade G1 R1 Daselva
	daselva: thank you , you are very generous!...are you a lover of homeworlds? what do you think of it? is it a good and « serious» game?
	Jesse: Yes, absolutely.  As Andy Looney puts it, Homeworlds is the True Space Chess.  I think it's an apt comparison of the depth of strategy involved.  But Homeworlds is a lot more to my taste.

10) Jesse: Trade G1 R1 Jesse

11) daselva: Build R2 Daselva

12) Jesse: Build G1 Jesse

13) daselva: Build R2 Daselva
	Jesse: Don't forget about the catastrophe rule.  If there are four pieces of the same color in a system at the end of either player's turn, that player may choose for a catastrophe to occur which sends them back to the bank.  In this case, you now have four greens in your home system, including the green star.  You'll lose those ships and half your system with a move like that.

14) Jesse: Discover R1 Jesse G2 Beeble
	daselva: ok, thank you ,I understood that

15) daselva: Trade R2 Y2 Daselva

16) Jesse: Build R2 Beeble
	daselva: hello.Can you explain me this?...Are there draws in homeworlds? Take this hypothetical situation:I´ve reached the Homeworld of my opponent with a R3 ship.HIs Homeworld is a R1 G3 and the ships in his Homeworld are Y2 Y2 and B1.So if I attack one of his Y2,I will change it to mine.Then he will attack this Y2 and change it to his.Then I will do the same and my opponent to ...etc ...etc

17) daselva: Discover R2 Daselva Y1 Letsee
	Jesse: There is no rule for resolving such situations, unfortunately.  With sacrifices making it possible to perform multiple actions, there's usually a way out of a situation like that, though.

18) Jesse: Build Y1 Jesse
	daselva: thank you

19) daselva: Build Y2 Daselva

20) Jesse: Move Y1 Jesse Beeble

21) daselva: Trade Y2 G2 Daselva

22) Jesse: Build Y2 Beeble

23) daselva: Move G1 Daselva Letsee

24) Jesse: Discover R2 Beeble G1 Bobble

	daselva: hello Jesse, can you help me? ...in the present situation I would to sacrifice the g2 in my HW in order to  build a r2 in my HW and build a r3 in Letsee system butI don´t know how to write these commands
	daselva: I wanted to say«I would like to»...by the way ,what is «carriage return»?
	Jesse: Darn.  Too bad about that time limit.  To answer your question, though, you would write:

sacrifice g2 daselva
build r2 daselva
build r3 letsee

You could also shorten the commands.  My habit is to write "sac" for "sacrifice" and just "b" for "build".  A carriage return is the character you get from hitting [return] or [enter] on most keyboards.  Basically, you put each piece of a complex command on its own line.
	daselva: Hello Jess thank you and forgive me...it was not timee limit,it was just ...awkward.Trying to find what that «carriage return» was,that I ´ve finally reached that was the changing line button,I carelessly pressed Resignation...I hope to play again whith you one day that I will have more experience (I´ve noticed you are a shark).I will never forget you were my first teacher


16675)
Variants: "Hard time"
Started: 2010.6.19, Ended: 2010.6.22
Participants: shmil1 (S), goulo (N)
Winner: shmil1

1) goulo: Homeworld B1 G2 Y3

2) shmil1: Homeworld G1 B2 R3
	goulo: Hi, have fun!

3) goulo: Build Y1 Goulo

4) shmil1: Build R1 Shmil1

5) goulo: Build Y1 Goulo

6) shmil1: Trade R1 Y1 Shmil1

7) goulo: Trade Y1 R1 Goulo

8) shmil1: Build R1 Shmil1

9) goulo: Discover Y1 Goulo R3 Rubeno

10) shmil1: Move R3 Shmil1 Rubeno

11) goulo: Discover Y1 Rubeno R2 Sangero

12) shmil1: Build Y1 Shmil1

13) goulo: Build Y2 Goulo

14) shmil1: Move Y1 Shmil1 Rubeno

15) goulo: Build R1 Goulo

16) shmil1: Build Y2 Shmil1

17) goulo: Sacrifice Y2 Goulo
Move R1 Goulo Rubeno
Move R1 Goulo Rubeno
Catastrophe Rubeno R

18) shmil1: Sacrifice Y2 Shmil1
Discover R1 Shmil1 G3 Velka
Move R1 Velka Goulo

19) goulo: Trade Y3 R3 Goulo

20) shmil1: Build R1 Goulo

21) goulo: Trade R3 Y3 Goulo

22) shmil1: Trade R1 Y1 Goulo

23) goulo: Discover Y1 Sangero G3 Smeraldo

24) shmil1: Build Y2 Goulo

25) goulo: Trade Y3 G3 Goulo

26) shmil1: Trade Y2 G2 Goulo

27) goulo: Trade G3 R3 Goulo

28) shmil1: Sacrifice G2 Goulo
Build R1 Goulo
Build R1 Goulo
Catastrophe Goulo Red
	goulo: Thanks for a good strange game! Very instructive. :) In all my previous games, killing an enemy's only 3-ship was a Good Thing. But in this game, I did it to you too soon and had too few ships of my own afterward. Good lesson. :)



16495)
Started: 2010.6.19, Ended: 2010.6.24
Participants: TwoShort (S), shmil1 (N)
Winner: TwoShort

1) shmil1: Homeworld R1 B1 G3 *

2) TwoShort: Homeworld G1 B1 B3 *

3) shmil1: Build G1 Shmil1
	TwoShort: Howdy.

4) TwoShort: Build B1 Twoshort

5) shmil1: Trade G1 Y1 Shmil1

6) TwoShort: Trade B3 Y3 Twoshort

7) shmil1: Build G1 Shmil1

8) TwoShort: Build B2 Twoshort

9) shmil1: Discover G1 Shmil1 Y3 Zluty

10) TwoShort: Trade B2 R2 Twoshort

11) shmil1: Build Y1 Shmil1

12) TwoShort: Build B2 Twoshort

13) shmil1: Discover Y1 Shmil1 G2 Zeleny

14) TwoShort: Move B2 Twoshort Zeleny

15) shmil1: Build Y1 Zeleny

16) TwoShort: Sacrifice R2 Twoshort
Attack Y1 Zeleny
Attack Y1 Zeleny

17) shmil1: Build G1 Zluty

18) TwoShort: Build B2 Twoshort

19) shmil1: Move G1 Zluty Twoshort

20) TwoShort: Trade B2 R2 Twoshort

21) shmil1: Sacrifice G3 Shmil1
Build G2 Twoshort
Build G2 Twoshort
Build G3 Zluty
Catastrophe Twoshort Green

22) TwoShort: Build B2 Zeleny

23) shmil1: Move G3 Zluty Shmil1

24) TwoShort: Discover B2 Zeleny G3 Grogar

25) shmil1: Build Y2 Shmil1

26) TwoShort: Build B2 Grogar

27) shmil1: Trade G3 B3 Shmil1

28) TwoShort: Build B3 Zeleny

29) shmil1: Trade Y1 G1 Shmil1

30) TwoShort: Sacrifice Y3 Twoshort
Move B2 Grogar Shmil1
Move B2 Grogar Shmil1
Pass
Catastrophe Shmil1 Blue

31) shmil1: Build G1 Shmil1

32) TwoShort: Move B3 Zeleny Shmil1

33) shmil1: Build G2 Zluty

34) TwoShort: Attack Y2 Shmil1

35) shmil1: Build G2 Shmil1

36) TwoShort: Trade B3 G3 Shmil1
Catastrophe Shmil1 Green



16601)
Variants: "Hard time"
Started: 2010.6.19, Ended: 2010.6.28
Participants: dlwillson (S), shmil1 (N)
Winner: dlwillson

1) shmil1: Homeworld Y3 B1 G3

2) dlwillson: Homeworld B2 R3 G3

3) shmil1: Build G1 Shmil1

4) dlwillson: Build G1 Dlwillson

5) shmil1: Discover G1 Shmil1 B2 Modra

6) dlwillson: Trade G1 B1 Dlwillson

7) shmil1: Build G1 Modra

8) dlwillson: B B1 Dlwillson

9) shmil1: Trade G1 Y1 Modra

10) dlwillson: B G1 Dlwillson

11) shmil1: Build Y1 Modra

12) dlwillson: Trade G3 Y3 Dlwillson

13) shmil1: Discover Y1 Modra G1 Zelena

14) dlwillson: Move B1 Dlwillson Zelena

15) shmil1: Build Y1 Zelena

16) dlwillson: B B2 Zelena

17) shmil1: Build Y2 Modra

18) dlwillson: Trade B2 R2 Zelena

19) shmil1: Sacrifice Y2 Modra
Move Y1 Zelena Dlwillson
Move Y1 Zelena Dlwillson

20) dlwillson: Trade Y3 G3 Dlwillson

21) shmil1: Attack G1 Dlwillson

22) dlwillson: Attack G1 Dlwillson

23) shmil1: Build G2 Modra

24) dlwillson: A Y1 Dlwillson

25) shmil1: Trade G2 R2 Modra

26) dlwillson: Sacrifice G3 Dlwillson
Build B2 Zelena
Build B3 Zelena
Build B3 Dlwillson

27) shmil1: Sacrifice R2 Modra
Attack Y1 Dlwillson
Attack G1 Dlwillson

28) dlwillson: Attack G1 Dlwillson

29) shmil1: Attack B1 Dlwillson

30) dlwillson: Sacrifice R2 Zelena
Attack B1 Dlwillson
Attack Y1 Dlwillson

31) shmil1: Build G2 Shmil1

32) dlwillson: A Y1 Dlwillson

33) shmil1: Trade G3 R3 Shmil1

34) dlwillson: M Y1 Dlwillson Zelena

35) shmil1: Move G1 Modra Zelena

36) dlwillson: D B3 Zelena Y2 Grappa

37) shmil1: Sacrifice G2 Shmil1
Build G2 Zelena
Build Y2 Modra

38) dlwillson: S G1 Dlwillson
B B3 Grappa

39) shmil1: Sacrifice Y2 Modra
Move G1 Zelena Dlwillson
Move G2 Zelena Dlwillson

40) dlwillson: A G2 Dlwillson

41) shmil1: Attack B1 Dlwillson

42) dlwillson: A G1 Dlwillson

43) shmil1: Move Y1 Modra Zelena

44) dlwillson: Attack B1 Dlwillson

45) shmil1: Build Y2 Zelena

46) dlwillson: Sacrifice B2 Zelena
Trade G2 Y2 Dlwillson
Trade B3 R3 Dlwillson

47) shmil1: Sacrifice Y2 Zelena
Move Y1 Zelena Grappa
Move Y1 Grappa Shmil1

48) dlwillson: Sacrifice Y2 Dlwillson
Move B3 Grappa Shmil1
Move B3 Grappa Shmil1

49) shmil1: Attack B3 Shmil1

50) dlwillson: Sacrifice R3 Dlwillson
Attack B3 Shmil1
Attack R3 Shmil1
Attack Y1 Shmil1

	dlwillson: Thanks for the game, Shmil1. What's our record now, 2 each?
	shmil1: i do all the time the same mistake - i start too much games at once. let us play once again. i will concetrate more. :)
	dlwillson: I'd love to play again! I've got a standing challenge, just accept it and off we go. If you want to move first or second, just let me know.


16605)
Started: 2010.6.19, Ended: 2010.7.2
Participants: shmil1 (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld Y1 B2 G3

2) shmil1: Homeworld G1 B2 R3
	Mandrel: Have a good game!

3) Mandrel: Build G1 Mandrel

4) shmil1: Build R1 Shmil1

5) Mandrel: Trade G1 R1 Mandrel

6) shmil1: Trade R1 Y1 Shmil1

7) Mandrel: Build G1 Mandrel

8) shmil1: Build R1 Shmil1

9) Mandrel: Build G1 Mandrel

10) shmil1: Discover R1 Shmil1 Y3 Slunce

11) Mandrel: Discover G1 Mandrel B3 Guilt

12) shmil1: Build Y1 Shmil1

13) Mandrel: Build G2 Guilt

14) shmil1: Move Y1 Shmil1 Guilt

15) Mandrel: Sacrifice R1 Mandrel
Attack Y1S Guilt

16) shmil1: Move R1 Slunce Mandrel

17) Mandrel: Trade G3 R3 Mandrel

18) shmil1: Move R1 Mandrel Guilt

19) Mandrel: Trade G2 R2 Guilt

20) shmil1: Attack G1 Guilt

21) Mandrel: A R1S Guilt

22) shmil1: Build G2 Guilt

23) Mandrel: Attack G2S Guilt

24) shmil1: Build G2 Guilt

25) Mandrel: Sacrifice R2 Guilt
Attack G1S Guilt
Attack G2S Guilt

26) shmil1: Build Y2 Shmil1

27) Mandrel: Build G2 Mandrel

28) shmil1: Discover Y2 Shmil1 B3 Modry

29) Mandrel: Build G3 Mandrel

30) shmil1: Build Y2 Shmil1

31) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build R1 Mandrel
Build Y2 Guilt

32) shmil1: Move Y2 Shmil1 Guilt

33) Mandrel: Sacrifice Y2 Guilt
Move G1 Guilt Shmil1
Move G2 Guilt Shmil1

34) shmil1: Attack G2 Shmil1

35) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build G3 Shmil1
Build G3 Shmil1

36) shmil1: Sacrifice G2 Shmil1
Build Y2 Modry
Build Y3 Modry
Catastrophe Shmil1 Green

37) Mandrel: Attack Y2S Guilt

38) shmil1: Trade Y3 G3 Modry

39) Mandrel: Move G3 Mandrel Modry

40) shmil1: Sacrifice Y2 Modry
Move G3 Modry Mandrel
Move Y2 Modry Mandrel

41) Mandrel: A G3S Mandrel

42) shmil1: Sacrifice R3 Shmil1
Attack G2 Mandrel
Attack G1 Mandrel
Attack R1 Mandrel

43) Mandrel: Move G2 Guilt Shmil1

44) shmil1: Sacrifice G2 Mandrel
Build Y2 Mandrel
Build Y3 Shmil1

45) Mandrel: Sacrifice R3 Mandrel
Attack Y2S Mandrel
Attack Y2S Mandrel
Attack R1S Mandrel

46) shmil1: Trade Y3 R3 Shmil1

47) Mandrel: Sacrifice Y1 Guilt
Move G2 Shmil1 Guilt

48) shmil1: Trade G1 Y1 Mandrel
Catastrophe Mandrel Yellow

49) Mandrel: B G1 Guilt

50) shmil1: Trade Y1 G1 Shmil1

51) Mandrel: Trade G3 R3 Modry

52) shmil1: Build G1 Shmil1

53) Mandrel: Sacrifice Y2 Guilt
Move G1 Guilt Shmil1
Move G2 Guilt Shmil1
Catastrophe Shmil1 Green

54) shmil1: Trade R3 G3 Shmil1

55) Mandrel: T R1 Y1 Guilt

56) shmil1: Build G1 Shmil1

57) Mandrel: S Y1 Guilt
Move R3 Modry Shmil1

58) shmil1: Trade G1 R1 Shmil1

59) Mandrel: Attack G3S Shmil1

60) shmil1: Pass

61) Mandrel: Attack R1S Shmil1

	Mandrel: Good game!


16618)
Started: 2010.6.19, Ended: 2010.9.3
Participants: MagicJohn (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld Y3 B2 G3

2) MagicJohn: Homeworld B1 G2 R3
	Mandrel: Have a good game!

	MagicJohn: Thanks, you too.  I'm a little new at this game (3rd try).  I guess I'll find out how much my learning curve has flattened in my dotage. 

3) Mandrel: Build G1 Mandrel
	Mandrel: Cool, I'm still learnin the ropes myself!


4) MagicJohn: Build R1 Magicjohn

5) Mandrel: Trade G1 R1 Mandrel

6) MagicJohn: Trade R1 Y1 Magicjohn

7) Mandrel: Build G1 Mandrel

8) MagicJohn: Build Y1 Magicjohn

9) Mandrel: Trade G1 Y1 Mandrel

10) MagicJohn: Build Y2 Magicjohn

11) Mandrel: Build Y2 Mandrel

12) MagicJohn: Trade Y2 G2 Magicjohn

13) Mandrel: Discover Y1 Mandrel G1 Relief

14) MagicJohn: Discover Y1 Magicjohn G3 Boonies

15) Mandrel: Build Y2 Relief

16) MagicJohn: Sacrifice G2 Magicjohn
Build Y2 Boonies
Build Y3 Magicjohn

17) Mandrel: Build G1 Mandrel

18) MagicJohn: Move Y1 Boonies Relief

19) Mandrel: Sacrifice R1 Mandrel
Attack Y1S Relief

20) MagicJohn: Move Y2 Boonies Relief
Catastrophe Relief Yellow

21) Mandrel: T G1 R1 Mandrel
	MagicJohn: Shouldda moved my y2 instead of my y1 last turn.  Rats!
	Mandrel: How frustrating! At least you've still got two larges

22) MagicJohn: Trade Y1 G1 Magicjohn
	MagicJohn: That was kinda my plan.  I'm not sure whether that small advantage is worth the sacrifice.  Guess I'll find out.

23) Mandrel: B G1 Mandrel

24) MagicJohn: Build Y1 Magicjohn

25) Mandrel: T G1 B1 Mandrel

26) MagicJohn: Trade Y1 B1 Magicjohn

27) Mandrel: Build G1 Mandrel

28) MagicJohn: Build B2 Magicjohn

29) Mandrel: D B1 Mandrel G1 Relief

30) MagicJohn: Discover B1 Magicjohn G3 Plopplopfizzfiz

31) Mandrel: B Y1 Mandrel

32) MagicJohn: Build Y1 Magicjohn

33) Mandrel: M Y1 Mandrel Relief

34) MagicJohn: Trade Y3 G3 Magicjohn

35) Mandrel: B G2 Mandrel

36) MagicJohn: Discover B2 Magicjohn Y3 Arrakis

37) Mandrel: T G2 R2 Mandrel

38) MagicJohn: Move G1 Magicjohn Plopplopfizzfiz

39) Mandrel: B G2 Mandrel

40) MagicJohn: Trade B1 Y1 Plopplopfizzfiz

41) Mandrel: B Y2 Relief

42) MagicJohn: Build Y2 Magicjohn

43) Mandrel: T G2 B2 Mandrel

44) MagicJohn: Build Y3 Plopplopfizzfiz

45) Mandrel: M G1 Mandrel Relief

46) MagicJohn: Move Y1 Plopplopfizzfiz Relief

47) Mandrel: S R1 Mandrel
Attack Y1S Relief

48) MagicJohn: Sacrifice Y2 Magicjohn
Move R3 Magicjohn Arrakis
Move R3 Arrakis Relief

49) Mandrel: S Y2 Relief
Discover G1 Relief B3 Apprehension
Move B1 Relief Apprehension

50) MagicJohn: Attack Y1 Relief

51) Mandrel: B G2 Apprehension

52) MagicJohn: Move G3 Magicjohn Arrakis

53) Mandrel: S Y2 Mandrel
Move B1 Apprehension Magicjohn
Move G2 Apprehension Magicjohn

54) MagicJohn: Sacrifice Y3 Plopplopfizzfiz
Move R3 Relief Arrakis
Move R3 Arrakis Magicjohn
Pass

55) Mandrel: S G3 Mandrel
Build G2 Magicjohn
Build B1 Magicjohn
Build B3 Magicjohn
C Magicjohn Blue

56) MagicJohn: Attack G2 Magicjohn

57) Mandrel: B G3 Magicjohn
Catastrophe Magicjohn Green
	MagicJohn: Spite check.....
	MagicJohn: Well played!
	Mandrel: Cheers, good game.



16714)
Variants: "No undo, Sinister"
Started: 2010.6.22, Ended: 2010.7.6
Participants: zara2stra (S), goulo (N), AdamBadura (E)
Winner: AdamBadura

1) goulo: Homeworld G3 B2 Y3

2) AdamBadura: Homeworld B1 G2 Y3
	goulo: I'm playing my first game in the Homeworlds Ladder and it turned quite strange/interesting. I killed his 3-ship soon, which I thought would give me a quick win afterwards, but now he has several pesky 1-ships like annoying mosquitoes at my homeworld which I can't capture safely or easily. :)
Join the ladder and we can meta-compete to see who of us can get the highest. :)

3) zara2stra: Homeworld Y3 G1 B3
	AdamBadura: How to join it? How does it work? What is it that ladder?

4) goulo: Build Y1 Goulo
	goulo: See the link "Ladders" at top of page: http://superdupergames.org/?page=ladders

Basically you can challenge someone up to 5 positions higher than you, and if you lose, nothing happens, but if you win, you move up to their place.

I advise clicking user info to verify that the person is active recently. Some people haven't logged in for months or over a year, so I assume there is no use in challenging them...

5) AdamBadura: Build Y1 Adambadura

6) zara2stra: Build B1 Zara2stra
	AdamBadura: I did.
	goulo: Great! In the forum I requested that a Branches ladder be created, but so far there was no reply. So I am currently in the ladders for Homeworlds, Alien City, and Mirador (a cool abstract 2-player connection game)
	goulo: Sadly we still don't have 6 in the Mirador ladder to activate it. So feel free to check out Mirador and join it if you like the game. :)
	AdamBadura: This system sucks. From 5 available (to challange) players two are already in play (you and the other), two didn't log in for 2 weeks and 1 for over a year.
	goulo: So challenge one of the 2-week people. Or wait a day or so and I'll probably (incredible to me - it's a good lesson!) lose my ladder game soon (where I killed his 3-ship and now I'll probably lose, so weird!!!).

7) goulo: Discover Y1 Goulo G1 Smeraldeto
	zara2stra: Sorry again for the time it took me to get to SDG - I'm having a real hell at where I work

8) AdamBadura: Trade Y1 R1 Adambadura
	goulo: No problem! Good luck with it!

9) zara2stra: Build B1 Zara2stra

10) goulo: Build Y1 Goulo

11) AdamBadura: Build R1 Adambadura
	goulo: By the way, I totally lost that ladder game. Very surprising interesting lesson for me! Killing the enemy 3-ship too early can be fatal if you yourself have to sacrifice too much in the process of killing their 3-ship.

12) zara2stra: Trade B1 R1 Zara2stra
	AdamBadura: I have seen that game (in the logs) and trace it move by move. (It was a quick one.)

I don't think that killing 3 ship was to much to early. There was just "bad luck" that you hadn't any R ship in your homeworld and he was able to reach it within a single move (with sacrificing). If you wouldn't destroy his 3 ship the same might have happened.

I think you mistake was hope that you will cope with the problem. You were afraid of loosing your 3 ship in a catastrophe so you lost the game instead. You should have acknowledge earlier that your 3 ship is lost and accept catastrophe. (Its not your first time - you already lost in that way with me once.)

What I concluded from that game is that in 2 player game it seems extremely important to constantly keep R ship it your homeworld even at the beginning of the game. 2 player games are far more aggressive because there is much less back-watching. With 3 players if I attack my left opponent he will go into defence and make it easier for his left opponent. But his left opponent is my right one and he will use that occasion to press my stronger and so I will have to retreat. The cycle closes. With two players it is far easier.
	AdamBadura: By the way I am now fighting with him/her. I hope I will do better.

One catastrophe was already there but I make it better for me (after catastrophe I hade 3,1,1 ships while he had only 3,1 and I had one of those ships in a different system so it was like 2 moves advantage).

13) goulo: Trade Y1 R1 Goulo
	goulo: I also wasted 2 moves at a critical moment after the catastrophe, changing my y3 to r3 and then having to change it back to y3 when he built a 2nd r1. I think I should have instead immediately moved my other y1 to a green world to start building elsewhere.

14) AdamBadura: Discover R1 Adambadura G3 Shipyard

15) zara2stra: Build R2 Zara2stra

16) goulo: Build R2 Goulo

17) AdamBadura: Build R2 Shipyard

18) zara2stra: Discover R2 Zara2stra G2 Mostlyharmless

19) goulo: Move R2 Goulo Smeraldeto

20) AdamBadura: Build Y1 Adambadura

21) zara2stra: Move B1 Zara2stra Mostlyharmless

22) goulo: Build Y1 Goulo

23) AdamBadura: Move Y1 Adambadura Shipyard

24) zara2stra: Trade B1 Y1 Mostlyharmless

25) goulo: Build Y2 Goulo

26) AdamBadura: Build Y2 Adambadura

27) zara2stra: Build Y2 Mostlyharmless

28) goulo: Trade Y1 B1 Goulo

29) AdamBadura: Discover R1 Shipyard Y2 Outpost

30) zara2stra: Build B1 Zara2stra

31) goulo: Move B1 Goulo Smeraldeto

32) AdamBadura: Trade Y2 G2 Adambadura

33) zara2stra: Move B1 Zara2stra Mostlyharmless

34) goulo: Trade Y2 G2 Goulo

35) AdamBadura: Sacrifice G2 Adambadura
Build R2 Adambadura
Build R3 Adambadura

36) zara2stra: Build R3 Mostlyharmless

37) goulo: Sacrifice G2 Goulo
Build R3 Goulo
Build R3 Smeraldeto

38) AdamBadura: Move R1 Adambadura Shipyard

39) zara2stra: Trade Y1 G1 Mostlyharmless

40) goulo: Build Y1 Goulo

41) AdamBadura: Build Y1 Shipyard

42) zara2stra: Discover R2 Mostlyharmless Y3 Luna
	AdamBadura: I managed to regain our honour by defeating shmil1.

It was an even quicker game than yours (around 20 rounds). We lost 3-size ships quite soon (I put myself in risk of catastrophe but it could be done only by him sacrificing his own 3-size ship so I took my chances and he decided to sacrifice).

In general I think he made 3 major mistakes during the game and the last one costed him the game. HE possibly knew that his last action was bad but he was already in such bad possition that all he could count for was either my mistake or his quick and painless death. So I became the Grim Reaper. :)
	goulo: Congrats!

43) goulo: Build Y2 Smeraldeto

44) AdamBadura: Build Y2 Adambadura

45) zara2stra: Move R2 Luna Outpost

46) goulo: Discover R2 Smeraldeto Y3 Citronego

47) AdamBadura: Discover R1 Outpost G3 Betteroutpost

48) zara2stra: Move G1 Mostlyharmless Zara2stra

49) goulo: Move R3 Smeraldeto Citronego

50) AdamBadura: Discover R3 Adambadura G3 Backyard

51) zara2stra: Move G1 Zara2stra Outpost

52) goulo: Move R3 Goulo Smeraldeto

53) AdamBadura: Move Y2 Adambadura Backyard

54) zara2stra: Build B1 Zara2stra

55) goulo: Build B2 Smeraldeto

56) AdamBadura: Move R3 Backyard Outpost

57) zara2stra: Move R2 Outpost Betteroutpost

58) goulo: Move B1 Smeraldeto Citronego

59) AdamBadura: Attack G1S Outpost

60) zara2stra: Attack R1E Betteroutpost

61) goulo: Trade R2 G2 Citronego

62) AdamBadura: Build R2 Adambadura

63) zara2stra: Build B2 Mostlyharmless

64) goulo: Build G1 Citronego
	goulo: I have lost my elite Homeworlds skills lately :( :( :(

65) AdamBadura: Build G2 Outpost
	AdamBadura: That started some time ago... ;) You win 3 player games bacause zara2stra helps you. :)
	goulo: Ha!

66) zara2stra: Sacrifice Y2 Mostlyharmless
Move R2 Betteroutpost Smeraldeto
Move R1 Betteroutpost Smeraldeto

67) goulo: Trade G2 B2 Citronego
	zara2stra: After all the games we are playing now, I will have to take a break. For the next two weeks I won't be as often online :(

68) AdamBadura: Build Y2 Adambadura

69) zara2stra: Attack Y2N Smeraldeto

70) goulo: Attack Y2S Smeraldeto
	goulo: a2na and I will be away this weekend (starting around 16.00 today). But back on sunday evening.

71) AdamBadura: Move G1 Outpost Backyard
	goulo: zara2stra, I propose we do not capture and recapture the y2 ship back and forth while adam continues to build and progress. :)

72) zara2stra: Attack Y2N Smeraldeto
	zara2stra: Well, as I see it, from my inferior position, you will loose much more in loosing your turn to recapture it. And someone might still want to catastrophe this system...

73) goulo: Attack R2S Smeraldeto

74) AdamBadura: Move R1 Shipyard Smeraldeto
Catastrophe Smeraldeto R

75) zara2stra: Sacrifice R3 Mostlyharmless
Attack B2N Smeraldeto
Attack Y1N Smeraldeto
Pass
	AdamBadura: Problem solved. No more arguing. ;)
	zara2stra: Thanks - that's exactly what I meant when I moved those ships in the first place :)

76) goulo: Build B3 Citronego

77) AdamBadura: Build G2 Outpost
	AdamBadura: Great! Now I will lose B...

78) zara2stra: Build B3 Smeraldeto

79) goulo: Build G3 Citronego

80) AdamBadura: Sacrifice Y2 Backyard
Move G2 Outpost Citronego
Move G2 Outpost Citronego
Catastrophe Citronego G

81) zara2stra: Trade B2 Y2 Mostlyharmless

82) goulo: Discover R3 Citronego R1 Rubeneto

83) AdamBadura: Trade R2 B2 Adambadura

84) zara2stra: Build B3 Mostlyharmless

85) goulo: Sacrifice Y3 Goulo
Move R3 Rubeneto Goulo
Move B1 Citronego Adambadura
Move B2 Citronego Adambadura
Catastrophe Adambadura B

86) AdamBadura: Build Y3 Shipyard

87) zara2stra: Move Y1 Smeraldeto Shipyard
Catastrophe Shipyard Y
	AdamBadura: goulo, I will have my revange on you!
	AdamBadura: By the way I climbed up 5 steps in the ladder. But in an unsatisfable manner. The game was ended (automatically) because player did not make his setup move after requested time. But I hope people in higher parts of the ladder tend to play more.

88) goulo: Build Y1 Goulo

89) AdamBadura: Build R1 Shipyard

90) zara2stra: Sacrifice Y2 Smeraldeto
Move B3 Smeraldeto Goulo
Move B2 Smeraldeto Goulo

91) goulo: Attack B3S Goulo

92) AdamBadura: Move Y2 Adambadura Shipyard

93) zara2stra: Build B1 Goulo
Catastrophe Goulo B

94) goulo: Trade B3 G3 Citronego

95) AdamBadura: Build Y1 Shipyard

96) zara2stra: Trade B1 R1 Mostlyharmless

97) goulo: Discover Y1 Goulo B1 Safireto

98) AdamBadura: Build R2 Adambadura

99) zara2stra: Build R2 Mostlyharmless

100) goulo: Sacrifice G3 Citronego
Build Y1 Safireto
Build Y2 Safireto
Build Y3 Goulo

101) AdamBadura: Move Y1 Shipyard Safireto
Catastrophe Safireto Y

102) zara2stra: Sacrifice Y2 Mostlyharmless
Move R1 Mostlyharmless Goulo
Move R2 Mostlyharmless Goulo
Catastrophe Goulo R

103) goulo: Discover Y1 Goulo B1 Safireto

104) AdamBadura: Sacrifice Y2 Shipyard
Move R3 Outpost Zara2stra
Move Y3 Adambadura Zara2stra
	goulo: Ouch! I see I will not survive much longer...!

105) zara2stra: Build R1 Zara2stra

106) goulo: Build Y1 Goulo

107) AdamBadura: Sacrifice R3 Zara2stra
Attack B3S Zara2stra
Attack R1S Zara2stra
Attack R1S Zara2stra

108) zara2stra: Build B1 Zara2stra
	AdamBadura: I think goulo you will last to the very end of the game... ;)

109) goulo: Trade Y1 R1 Safireto

110) AdamBadura: Sacrifice R2 Shipyard
Attack B1S Zara2stra
Attack B1S Zara2stra
	goulo: Yay! I wasn't eliminated! :)

Now you should learn Alien City to celebrate your victory...
	AdamBadura: Interesting game. Somewhere in the middle of the game I though I will lose as my position was worse they yours and I had no idea what to do. Then goulo prpared to destroy B star in my system. But this acutally I considered an advantage. It made a direct connection from my system to zara2stra's so I could keep 3-size ships in my system to protect it while being still able to move to zara2stra in a single move.

All would be fine if goulo would indeed destroy B. But he waited. And my position was becoming worse as I could build much and zara2stra was nearing goulo's destruction. So I made a B ship in my home worldd to lure goulo. And it worked. I lost B. But it costed goulo one lestt B ship. And it was a B3 ship. So I still could not make the prepared attack because goulo in respons would invide my own system and conquere it faster.

So I waited for some mistake or a bit of luck. And after the catastrophes period I come out stronger. It seems to me I lost less the you, or at least less in key positions which I needed to attack zara2stra.

Anotherone for me. :) A good one - thanks! 



16725)
Variants: "Hard time"
Started: 2010.6.23, Ended: 2010.6.27
Participants: shmil1 (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld G1 B2 R3

2) shmil1: Homeworld G1 B2 Y3

3) AdamBadura: Build R1 Adambadura

4) shmil1: Build Y1 Shmil1

5) AdamBadura: Trade R1 Y1 Adambadura

6) shmil1: Discover Y1 Shmil1 G3 Zelena

7) AdamBadura: Build R1 Adambadura

8) shmil1: Build Y1 Shmil1

9) AdamBadura: Move R1 Adambadura Zelena

10) shmil1: Build Y2 Zelena

11) AdamBadura: Attack Y1 Zelena

12) shmil1: Build Y2 Zelena

13) AdamBadura: Build Y2 Zelena
Catastrophe Zelena Y

14) shmil1: Trade Y1 R1 Shmil1

15) AdamBadura: Build Y1 Adambadura
	AdamBadura: What "Hard time" variant means? How rules are changed?
	shmil1: no idea, somehow connected to time you have for a move...

16) shmil1: Build R1 Shmil1

17) AdamBadura: Build R2 Zelena

18) shmil1: Discover R1 Shmil1 G3 Cesta

19) AdamBadura: Move Y1 Adambadura Zelena

20) shmil1: Build R2 Cesta

21) AdamBadura: Trade Y1 B1 Adambadura

22) shmil1: Build R2 Cesta

23) AdamBadura: Build R3 Adambadura

24) shmil1: Sacrifice Y3 Shmil1
Move R1 Cesta Adambadura
Move R2 Cesta Adambadura
Move R2 Cesta Shmil1
Catastrophe Adambadura Red

25) AdamBadura: Build B1 Adambadura

26) shmil1: Trade R2 Y2 Shmil1

27) AdamBadura: Move R1 Zelena Adambadura

28) shmil1: Build R1 Shmil1

29) AdamBadura: Build R2 Zelena

30) shmil1: Move R1 Shmil1 Zelena

31) AdamBadura: Sacrifice B1 Adambadura
Trade R2 Y2 Zelena

32) shmil1: Build R2 Zelena

33) AdamBadura: Sacrifice R2 Zelena
Attack R2 Zelena
Attack R1 Zelena

34) shmil1: Build R2 Shmil1

35) AdamBadura: Discover R1 Zelena Y2 Outpost

36) shmil1: Sacrifice Y2 Shmil1
Move R2 Shmil1 Zelena
Move R2 Zelena Adambadura

37) AdamBadura: Move Y2 Zelena Shmil1

38) shmil1: Build R2 Shmil1

39) AdamBadura: Sacrifice R2 Zelena
Attack R2 Shmil1
Attack R1 Shmil1



16695)
Started: 2010.6.24, Ended: 2010.8.29
Participants: daselva (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld R1 B2 G3
	Mandrel: Have a good game!

2) daselva: Homeworld G3 Y2 B3

3) Mandrel: Build G1 Mandrel
	daselva: thank you,I will try...I´m doing my first steps ,so forgive me if I do wrong things...
	Mandrel: No worries, I'm not particularly experienced, but if you have any questions feel free to ask and I'll help if I can.

4) daselva: Build B1 Daselva

5) Mandrel: Trade G1 Y1 Mandrel

6) daselva: Trade B3 R3 Daselva

7) Mandrel: B Y1 Mandrel

8) daselva: Build B1 Daselva

9) Mandrel: Build G1 Mandrel

10) daselva: Build R1 Daselva

11) Mandrel: Discover Y1 Mandrel G3 Contentment

12) daselva: Trade B1 G1 Daselva

13) Mandrel: Build Y1 Mandrel

14) daselva: Trade R3 Y3 Daselva

15) Mandrel: Build Y2 Contentment

16) daselva: Discover Y3 Daselva G1 Maybe

17) Mandrel: Trade Y1 B1 Mandrel

18) daselva: Build B1 Daselva

19) Mandrel: Move B1 Mandrel Contentment

20) daselva: Move B1 Daselva Maybe

21) Mandrel: B B2 Contentment

22) daselva: Build G2 Daselva

23) Mandrel: Trade B2 G2 Contentment

24) daselva: Move G1 Daselva Maybe

25) Mandrel: B B2 Contentment

26) daselva: Discover B1 Maybe Y3 S3

27) Mandrel: T B2 R2 Contentment

28) daselva: Sacrifice Y3 Maybe
Move G1 Maybe Contentment
Discover G2 Daselva Y1 S2
Move G2 S2 Contentment
Catastrophe Contentment Green

29) Mandrel: B Y1 Mandrel

30) daselva: Trade B1 G1 S3

31) Mandrel: T Y1 B1 Mandrel

32) daselva: Build G1 S3

33) Mandrel: Build Y1 Mandrel

34) daselva: Build R1 Daselva

35) Mandrel: D Y1 Mandrel G3 Lethargy

36) daselva: Build R2 Daselva

37) Mandrel: B Y1 Lethargy

38) daselva: Trade R2 Y2 Daselva

39) Mandrel: B Y2 Lethargy

40) daselva: Discover G1 S3 B2 S4

41) Mandrel: B Y3 Mandrel

42) daselva: Build G2 S4

43) Mandrel: B Y3 Mandrel

44) daselva: Move G1 S3 Mandrel

45) Mandrel: A G1S Mandrel

46) daselva: Sacrifice Y2 Daselva
Discover G1 S4 R3 S5
Move G1 S5 Mandrel
Catastrophe Mandrel Green

47) Mandrel: D Y2 Lethargy G1 Rundown

48) daselva: Trade G2 Y2 S4

49) Mandrel: Build Y3 Rundown

50) daselva: Move R1 Daselva Rundown

51) Mandrel: Sacrifice B1 Mandrel
T Y3 R3 Rundown

52) daselva: Build R2 Rundown

53) Mandrel: Sacrifice Y3 Mandrel
Move R3 Rundown Daselva
Move Y2 Rundown Daselva
Pass

54) daselva: Build R2 Rundown

55) Mandrel: Sacrifice R3 Daselva
Attack R1S Daselva
Attack B1S Daselva
Pass

	Mandrel: Good game.


16609)
Variants: "Hard time"
Started: 2010.6.24, Ended: 2010.8.19
Participants: dlwillson (S), Danner (N)
Winner: Danner

1) Danner: Pass

2) dlwillson: Homeworld B3 R1 G3
	Danner: Hi! I have finished my exams, let's play :)
	dlwillson: Excellent, thanks for taking my challenge, Danner!

3) Danner: Homeworld B1 Y2 G3

4) dlwillson: B G1 Dlwillson
	Danner: My pleasure!

5) Danner: Build G1 Danner

6) dlwillson: Trade G1 B1 Dlwillson

7) Danner: Trade G1 B1 Danner

8) dlwillson:
B B2 Dlwillson

9) Danner: Build B2 Danner

10) dlwillson: Build G1 Dlwillson

11) Danner: Discover B2 Danner Y3 Artemus

12) dlwillson: T B2 Y2 Dlwillson

13) Danner: Build B2 Danner

14) dlwillson: D B1 Dlwillson G2 Jimwest

15) Danner: Trade B1 R1 Danner

16) dlwillson: Trade G1 R1 Dlwillson

17) Danner: Build R2 Danner

18) dlwillson: B R2 Dlwillson

19) Danner: Build R2 Danner

20) dlwillson: M R1 Dlwillson Jimwest

21) Danner: Trade R2 Y2 Danner

22) dlwillson: B R2 Jimwest

23) Danner: Move R1 Danner Artemus

24) dlwillson: T R1 Y1 Jimwest

25) Danner: Build G1 Danner

26) dlwillson: B Y1 Jimwest

27) Danner: Discover B2 Danner Y3 Garrett

28) dlwillson: Build Y1 Dlwillson

29) Danner: Discover G1 Danner Y3 Gamall
	dlwillson: Good move. Thief 3? Hmm...

30) dlwillson: Discover Y1 Jimwest B3 Miguelito
	Danner: Thx. Yes, have you played it?

31) Danner: Discover Y2 Danner R3 Builder

32) dlwillson: Discover R2 Dlwillson B2 Ulysses
	dlwillson: Nah. I was going for a Wild Wild West theme. Still fits with your Artemus. I suppose I'll have to play the Thief series sometime. Good?
	Danner: I liked that movie.
Yeah, if you like stealth games. I recommend you to start with T3, because the first two games are harder, and their graphics looks rather old. What I especially like in the series is its fantasy-steampunk world.

33) Danner: Sacrifice G1 Gamall
Build Y3 Builder
	Danner: Builder is the god of the Hammerites. They represent order and technology. And they wear red. :)

34) dlwillson: Trade Y2 G2 Dlwillson

35) Danner: Move Y3 Builder Jimwest

36) dlwillson: M R2 Jimwest Miguelito

37) Danner: Move Y3 Jimwest Miguelito

38) dlwillson: T R2 Y2 Miguelito

39) Danner: Move Y3 Miguelito Ulysses

40) dlwillson: S Y1 Jimwest
M R2 Ulysses Miguelito

41) Danner: Trade B2 G2 Garrett

42) dlwillson: T Y1 G1 Miguelito

43) Danner: Move Y3 Ulysses Miguelito

44) dlwillson: Sacrifice G2 Dlwillson
Build Y1 Miguelito
Build Y1 Miguelito
Catastrophe Miguelito Y

45) Danner: Move G3 Danner Miguelito
	Danner: Good move!
	dlwillson: Thank you! About WWW: I was talking about the TV show, not the movie. The Will Smith WWW movie did everything for WWW that the Matt Broderick Godzilla movie did for Godzilla.
	Danner: Sorry for being inactive lately. The situation is complicated in both the game and the real life.
	dlwillson: No worries. I'm taking a whole day for every turn in my game with mneme. You're both very good, and I have to be on my toes...

46) dlwillson: Trade R2 G2 Miguelito
	Danner: Thank you for your patience.

47) Danner: Trade G3 R3 Miguelito

48) dlwillson: B G1 Dlwillson

49) Danner: Attack G2S Miguelito

50) dlwillson: D G1 Dlwillson B2 Train

51) Danner: Attack G1S Miguelito

52) dlwillson: B G1 Train

53) Danner: Trade G1 Y1 Miguelito

54) dlwillson: Build G1 Dlwillson

55) Danner: Build G3 Miguelito

56) dlwillson: Trade G3 Y3 Dlwillson

57) Danner: Sacrifice G3 Miguelito
Build G3 Miguelito
Build G3 Miguelito
Build G3 Garrett

58) dlwillson: Sacrifice Y1 Dlwillson
Move G1 Train Miguelito
Catastrophe Miguelito G

59) Danner: Move R3 Miguelito Train

60) dlwillson: B Y1 Dlwillson

61) Danner: Attack G1S Train

62) dlwillson: Move Y1 Dlwillson Jimwest

63) Danner: Move R1 Artemus Jimwest

64) dlwillson: Build Y1 Jimwest

65) Danner: Attack Y1S Jimwest

66) dlwillson: Build Y2 Dlwillson

67) Danner: Attack Y1S Jimwest

68) dlwillson: Trade Y2 R2 Dlwillson

69) Danner: Sacrifice G3 Garrett
Build R1 Train
Build R2 Danner
Build Y2 Jimwest

70) dlwillson: B R3 Dlwillson

71) Danner: Sacrifice Y2 Jimwest
Move R1 Train Dlwillson
Move R3 Train Miguelito
Catastrophe Dlwillson R

	dlwillson: I need a free move, then I can do some damage, but there's no free move, so that was more like going out with a small bang. Good game, Danner. We'll have to play again some time.
	Danner: Thx for the game.


16740)
Variants: "Hard time"
Started: 2010.6.25, Ended: 2010.6.28
Participants: mathochist (S), goulo (N)
Winner: goulo

1) goulo: Homeworld G2 B3 Y3

	goulo: Hi, have fun!


16756)
Variants: "Hard time"
Started: 2010.6.27, Ended: 2010.7.3
Participants: Danner (S), jeep (N)
Winner: Danner

1) jeep: Homeworld R1 B2 G3
	Danner: Hi!
Have a great game!
	jeep: Hi... I don't think I got notified that this game was ready. You too.

2) Danner: Homeworld B1 G2 R3

	Danner: :(


16768)
Variants: "Hard time"
Started: 2010.6.30, Ended: 2010.7.1
Participants: goulo (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld B2 G1 R3

2) goulo: Homeworld G2 B3 Y3

3) AdamBadura: Build R1 Adambadura
	goulo: I already challenged some other guy in the ladder, but he's not responded yet, so I finally accepted your challenge. I guess if he responds/accepts then I'll be in 2 ladder games at the same time or something. I didn't realize you can challenge me when I have a challenge pending with someone else. The mysteries of the ladder!

4) goulo: Build Y1 Goulo
	AdamBadura: No. I cannot. But it seems challenge is automatically rejected after some time (24-48 hours) which is good IMHO.
	AdamBadura: Anyway it was obvious that sooner or later we will fight with each other as we are here all the time... ;)

5) AdamBadura: Trade R1 Y1 Adambadura
	goulo: Strange, it says "Challenges remain open for 7 days before being counted as being declined." and he didn't explicitly decline. Maybe while the challenge was pending, you could also challenge me, and then when I get into one Ladder game it nullifies any other pending challenges with me.
	goulo: But we shouldn't KEEP challenging each other, or we'll not both climb up the ladder! We'll only climb onto the other and push the other down. :)

6) goulo: Trade Y1 R1 Goulo
	AdamBadura: I had it already twice that I challenged someone and there after 24-48 hours I can again challenge someone without any message or anything.

Yes. But this time challenging you was a good move for me as you were much higher and I think I am able to defeat you... ;)
	goulo: We shall see! :)

7) AdamBadura: Build Y1 Adambadura
	goulo: speaking of ladders, have a look at Mirador. It's not a pyramid game, but still a cool abstract game, and its ladder is inactive from having only 5 players, not the necessary 6 to activate it. :)
	goulo: Heh, I just joined the Blam! ladder too.
I requested a Branches ladder in the forum, but Aaron has not replied. :/
	AdamBadura: By the way. Yesterday I played Chicago Express with Arturion through Vassal (actually it was Wabash Cannonball but it is the same game). It was a two player game.

We interrupted it after 2nd round as I had large both money and dividend advantage and there was no point in continuing.

He overpaid initial auctions. Thanks to this after first round I had 3 shares while he had only 2 and I had more money. Also I bought yellow and green which have larger initial income. While he chose red and blue which are typically considered better as they have less shares to share the income.

2 player game of CE is very non-forgiving. In multiplayer game you can count on others mistakes or king making effect. But in two player mode once you make a mistake it is your end (unless your opponent makes something stupid too). It is just a math game in this mode. But still want to test it more.

8) goulo: Build R1 Goulo
	goulo: It just seems less interesting 2-player due to completely losing the "temporary alliance" aspect (that you might own 1 share and I own 2 shares of a company, so the company helps me more than you, but we both still want it to succeed since it helps us against the other players). I guess I'd try it again 2-player sometime, but it seems to lose a lot of the core of the game.

9) AdamBadura: Discover Y1 Adambadura G3 Shipyard

10) goulo: Discover R1 Goulo G1 Smeraldeto

11) AdamBadura: Build Y1 Shipyard

12) goulo: Build Y2 Goulo

13) AdamBadura: Build Y2 Adambadura

14) goulo: Move Y2 Goulo Smeraldeto

15) AdamBadura: Move Y1 Shipyard Smeraldeto

16) goulo: Attack Y1 Smeraldeto

17) AdamBadura: Build Y2 Shipyard

18) goulo: Build Y3 Goulo

19) AdamBadura: Discover Y1 Shipyard G2 Docks

20) goulo: Discover Y2 Smeraldeto Y3 Citronego

21) AdamBadura: Trade Y1 G1 Adambadura
	goulo: BTW it looks like my usual Wednesday evening wargaming is not going to happen. Are you interested in coming over this evening to try Gnostica or some other games?
	AdamBadura: Saddly no. Today I cannot.

Nice move with taking Y3 as start. Why haven't I forseen that! This puts me in a bad situation...

22) goulo: Trade Y3 G3 Goulo

23) AdamBadura: Move G1 Adambadura Shipyard

24) goulo: Build R1 Goulo

25) AdamBadura: Build G2 Shipyard

26) goulo: Sacrifice Y2 Citronego
Move G3 Goulo Smeraldeto
Move G3 Smeraldeto Shipyard
Catastrophe Shipyard G

27) AdamBadura: Build R2 Adambadura
	AdamBadura: Was it worth it? I considered my previous poisition as very bad. Now I do not...

28) goulo: Build R2 Smeraldeto
	goulo: I'm not sure if it was worth it or not. We lost similar amounts of ship points/pips, but you lost more ships, so I supposed it was worth it. Time will tell. :)

29) AdamBadura: Discover R2 Adambadura G3 Shipyard

30) goulo: Discover R1 Goulo Y1 Citroneto

31) AdamBadura: Build R2 Adambadura

32) goulo: Build R3 Goulo

33) AdamBadura: Build R3 Shipyard

34) goulo: Discover R2 Smeraldeto Y3 Citronego

35) AdamBadura: Build Y2 Adambadura

36) goulo: Move R3 Goulo Smeraldeto

37) AdamBadura: Move Y2 Adambadura Shipyard

38) goulo: Trade Y3 B3 Goulo

39) AdamBadura: Trade R3 G3 Adambadura

40) goulo: Build R3 Goulo

41) AdamBadura: Sacrifice G3 Adambadura
Build Y2 Docks
Build Y3 Adambadura
Build Y3 Shipyard

42) goulo: Build B1 Goulo
	AdamBadura: A kind of Y technology denial strategy. ...but what now? ;)

43) AdamBadura: Move R2 Shipyard Citroneto
	goulo: hmm, yeah, that was probably a mistake on my part.

44) goulo: Move R1 Citroneto Citronego

45) AdamBadura: Discover Y1 Docks B3 Ontheway

46) goulo: Move R1 Citronego Citroneto

47) AdamBadura: Attack R1 Citroneto

48) goulo: Move R2 Citronego Citroneto

49) AdamBadura: Sacrifice Y2 Adambadura
Move R1 Citroneto Goulo
Move R2 Citroneto Goulo
Catastrophe Goulo R

50) goulo: Trade B1 R1 Goulo
	AdamBadura: Nice dilema for me... :)
	AdamBadura: I knew there was a plan behind your previous move (invading my system with your R1 ship) but I just couldn't see what it was and decided to check it... ;)

51) AdamBadura: Trade R2 G2 Adambadura

52) goulo: Trade B3 Y3 Goulo

53) AdamBadura: Build Y2 Adambadura
	goulo: Yeah, but it was just a small clever trick that won't really change my ultimate defeat. :/

54) goulo: Build R1 Goulo

55) AdamBadura: Build R2 Shipyard

56) goulo: Move R1 Smeraldeto Ontheway

57) AdamBadura: Discover Y1 Ontheway B1 Stillontheway

58) goulo: Move R3 Smeraldeto Shipyard

59) AdamBadura: Sacrifice R2 Shipyard
Attack R3 Shipyard
Pass

60) goulo: Trade R1 G1 Goulo

61) AdamBadura: Move G2 Adambadura Shipyard

62) goulo: Move Y1 Smeraldeto Ontheway
	AdamBadura: Thanks! ;)
	goulo: Desperate times call for desperate measures... unfortunately you didn't respond as I hoped. :)

63) AdamBadura: Move R3 Shipyard Citroneto

64) goulo: Move R2 Citroneto Goulo

65) AdamBadura: Build R1 Shipyard

66) goulo: Trade R1 G1 Ontheway

67) AdamBadura: Move R3 Citroneto Ontheway

68) goulo: Build Y1 Goulo

69) AdamBadura: Attack Y1 Ontheway

70) goulo: Sacrifice Y1 Goulo
Discover G1 Ontheway R1 Rubeneto

71) AdamBadura: Move Y2 Docks Rubeneto
	goulo: Interested in Gnostica etc tonight (18.30 or later)?

72) goulo: Sacrifice Y3 Goulo
Move G1 Rubeneto Shipyard
Move G1 Goulo Stillontheway
Move G1 Stillontheway Shipyard
Catastrophe Shipyard G
	AdamBadura: I'm already appointed (cinema). Tomorrow my parents-in-law come to visit so I cannot as well.

But thnaks for asking. I would like to try that game sometime as you seem to be pushing on it hard... ;)

73) AdamBadura: Sacrifice Y2 Rubeneto
Move R3 Ontheway Stillontheway
Move R3 Stillontheway Goulo

74) goulo: Build R1 Goulo
Catastrophe Goulo R

	AdamBadura: Suddenyl it is all so small... ;)
	goulo: Interesting bug. It's supposed to be illegal to make a move that destroys your own homeworld. :)
	AdamBadura: :)
	AdamBadura: I think the first catastrophe you made was bad for you. I lost more but my position became better. Or at least I felt so.
	goulo: With the benefit of hindsight, I must agree! :)
	goulo: I think I've been analyzing too much in terms of material advantage (who has more ships, whose ships are worth more pips) and not enough in terms of position.


16498)
Started: 2010.7.1, Ended: 2010.7.4
Participants: mathochist (S), daselva (N)
Winner: daselva

1) daselva: Homeworld B3 Y2 G3

	mathochist: Sorry.  :(  It's been a rough couple weeks for me, and I've fallen behind in all my games.  


16729)
Started: 2010.7.1, Ended: 2010.7.18
Participants: ZackStack (S), daselva (N)
Winner: ZackStack

1) daselva: Homeworld G3 Y2 B3

2) ZackStack: Homeworld R1 B2 G3
	ZackStack: Greetings!  Thanks for the challenge and have a good game.

3) daselva: Build B1 Daselva

4) ZackStack: Build G1 Zackstack
	daselva: hello,sorry if I´m not a very good opponent but I´m doing my first steps...
	ZackStack: I'll try to be gentle then! :-)

5) daselva: Trade B1 R1 Daselva
	daselva: please don´t I want to feel the game

6) ZackStack: Trade G1 R1 Zackstack

7) daselva: Build B1 Daselva

8) ZackStack: Build R2 Zackstack

9) daselva: Build R2 Daselva

10) ZackStack: Trade R2 Y2 Zackstack

11) daselva: Trade R1 Y1 Daselva

12) ZackStack: Build G1 Zackstack

13) daselva: Trade B3 G3 Daselva

14) ZackStack: Build G1 Zackstack

15) daselva: Build B1 Daselva

16) ZackStack: Discover G1 Zackstack B3 Deepsea

17) daselva: Discover B1 Daselva G1 Blue

18) ZackStack: Build G2 Deepsea

19) daselva: Build G2 Daselva

20) ZackStack: Build G2 Deepsea

21) daselva: Move G2 Daselva Blue

22) ZackStack: Trade G2 Y2 Deepsea
	ZackStack: I could have sacrificed the y2 in my home system to send one of my greens from DeepSea to your homeworld to cause a catastrophe... you might want to do something about that :-)
	daselva: hello Zack thank you for your generousity...I´m a beginner and I´m trying to understand this game that I´m finding very intersting.The present situation is a new and interestingsituation for me.I´ve played like I did because I thought that by not having yellow power in DeepSEa you could´t go from there to my HW.Besides the two systemes are not conected... What can you tell me about this?
	daselva: hello again...I understand that by sacrificing y2 in your HW you could bring one of  your greens from DeepSea to blue and then from there to my HW,but once again,there is no yellow power in Blue...

23) daselva: Trade B1 Y1 Blue
	ZackStack: By sacrificing a ship of a certain color you may use its power even in a system that does not have that color.  For instance if you sacrificed the Y1 at your homeworld you would be able to move one of your ships at Blue.  This can lead to some very unexpected moves!

24) ZackStack: Discover G1 Deepsea B1 Puddle

25) daselva: Move R2 Daselva Puddle

26) ZackStack: Sacrifice Y2 Deepsea
Move G1 Puddle Daselva
Discover G2 Deepsea Y1 Spark

27) daselva: Trade G3 R3 Daselva

28) ZackStack: Sacrifice G3 Zackstack
Build G2 Daselva
Build G3 Daselva
Build G3 Zackstack
Catastrophe Daselva Green
	ZackStack: There.  A sacrifice example for you ;-)

29) daselva: Sacrifice G2 Blue
Build Y2 Blue
Build Y3 Daselva

30) ZackStack: Build Y3 Zackstack

31) daselva: Trade Y1 R1 Daselva

32) ZackStack: Discover Y2 Zackstack G3 Melon
	daselva: trade y1 r1 daselva
	daselva: trade y1 r1 daselva

33) daselva: Sacrifice Y1 Blue
Move R2 Puddle Melon
	daselva: (I must be sleeping)
	ZackStack: Heh.  I don't think I've ever done that twice before :-)

34) ZackStack: Discover Y2 Melon G1 Pea

35) daselva: Build R2 Melon

36) ZackStack: Build Y1 Pea

37) daselva: Sacrifice Y3 Daselva
Move R2 Melon Zackstack
Move R2 Melon Zackstack
Move R1 Daselva Pea
Catastrophe Zackstack Red


38) ZackStack: Sacrifice Y3 Zackstack
Move Y1 Pea Daselva
Move Y2 Pea Daselva
Move G2 Spark Daselva

39) daselva: Attack G2 Daselva

	ZackStack: It seems like I should have seen that coming... I guess the board was getting pretty busy :-)

40) ZackStack: Sacrifice G1 Zackstack
Build Y1 Daselva
Catastrophe Daselva Yellow

	ZackStack: Thanks for the game!  I hope you had a good time, and if nothing else got a better grasp of the power of sacrificing ships.  Have fun learning Homeworlds and I'll be happy to play rated or unrated any time!
	daselva: thank you I´ve learned a lot with you and with this game


16787)
Variants: "Hard time"
Started: 2010.7.1, Ended: 2010.7.4
Participants: rootbier (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld G1 B2 R3



16588)
Started: 2010.7.3, Ended: 2010.7.3
Participants: Tank_7 (S), rootbier (N)
Winner: rootbier



16827)
Variants: "Hard time"
Started: 2010.7.4, Ended: 2010.7.16
Participants: AdamBadura (S), captncavern (N)
Winner: AdamBadura

1) captncavern: Homeworld B2 G1 Y3
	captncavern: Good game!

2) AdamBadura: Homeworld G3 B1 R3

3) captncavern: Build Y1 Captncavern

4) AdamBadura: Build R1 Adambadura

5) captncavern: Trade Y1 R1 Captncavern

6) AdamBadura: Trade R1 Y1 Adambadura

7) captncavern: Build Y1 Captncavern

8) AdamBadura: Build R1 Adambadura

9) captncavern: Trade Y1 G1 Captncavern

10) AdamBadura: Trade R1 B1 Adambadura

11) captncavern: Build Y1 Captncavern

12) AdamBadura: Build R1 Adambadura

13) captncavern: Discover Y1 Captncavern G3 Aloha
	AdamBadura: Amusing game... ;)

14) AdamBadura: Build B1 Adambadura

15) captncavern: Build G1 Captncavern

16) AdamBadura: Discover B1 Adambadura G2 Shipyard

17) captncavern: Move G1 Captncavern Aloha

18) AdamBadura: Build B2 Shipyard

19) captncavern: Build G2 Captncavern

20) AdamBadura: Build B2 Shipyard

21) captncavern: Sacrifice G2 Captncavern
Build G2 Aloha
Build R1 Captncavern

22) AdamBadura: Build B3 Adambadura

23) captncavern: Sacrifice G2 Aloha
Build G2 Aloha
Build R2 Captncavern

24) AdamBadura: Build Y1 Adambadura

25) captncavern: Build Y2 Captncavern

26) AdamBadura: Move Y1 Adambadura Shipyard

27) captncavern: Discover G2 Aloha Y2 Ichi

28) AdamBadura: Move B2 Shipyard Aloha

29) captncavern: Move G1 Aloha Ichi

30) AdamBadura: Build B3 Aloha

31) captncavern: Build G2 Ichi

32) AdamBadura: Build B3 Shipyard

33) captncavern: Build G3 Captncavern

34) AdamBadura: Sacrifice R1 Adambadura
Attack Y1 Aloha



16642)
Started: 2010.7.6, Ended: 2010.7.13
Participants: addesso (S), ts52 (N)
Winner: ts52

1) ts52: H B1 Y3 G3
	addesso: first time playing. looks real interesting tho!
	ts52: It's a great game. If you have any questions, just ask. Then make a move and undo it, so SDG will send me an email.

2) addesso: Homeworld G2 B1 Y3

3) ts52: B G1 Ts52

4) addesso: Build Y1 Addesso

5) ts52: T G1 B1 Ts52

6) addesso: Trade Y1 G1 Addesso

7) ts52: Discover B1 Ts52 G2 Oscar

8) addesso: Build Y1 Addesso

9) ts52: Build B2 Oscar

10) addesso: Trade Y3 B3 Addesso

11) ts52: Trade B2 Y2 Oscar

12) addesso: Discover B3 Addesso G3 Pegasus

13) ts52: Build B2 Oscar

14) addesso: Build B2 Pegasus

15) ts52: Trade B2 R2 Oscar

16) addesso: Trade B3 R3 Pegasus

17) ts52: Build G1 Ts52

18) addesso: Build B2 Pegasus

19) ts52: Build B2 Oscar

20) addesso: Trade B2 Y2 Pegasus

21) ts52: Discover B2 Oscar G3 Kermit

22) addesso: Build B2 Pegasus

23) ts52: Build B3 Kermit

24) addesso: Move B2 Pegasus Addesso

25) ts52: Trade B3 R3 Kermit

26) addesso: Build B3 Addesso

27) ts52: Sacrifice Y2 Oscar
Move B2 Kermit Addesso
Move R3 Kermit Addesso
Catastrophe Addesso Blue

28) addesso: Build Y1 Addesso
	addesso: ah man. i miscalculated how far your ships could jump. lol

29) ts52: Attack G1S Addesso

30) addesso: Sacrifice B2 Pegasus
Trade Y1 R1 Addesso
Trade Y1 R1 Addesso
	ts52: sorry about that. It's definitely an important lesson to learn.

31) ts52: Sacrifice R2 Oscar
Attack R1S Addesso
Attack R1S Addesso
	ts52: Thanks for the game. I'd be happy to play again, any time.



16811)
Started: 2010.7.7, Ended: 2010.7.14
Participants: daselva (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) daselva: Homeworld Y3 G2 B3

3) rootbier: Build G1 Rootbier

4) daselva: Build B1 Daselva

5) rootbier: Trade G1 Y1 Rootbier

6) daselva: Trade B3 G3 Daselva

7) rootbier: Build G1 Rootbier

8) daselva: Build B1 Daselva

9) rootbier: Build Y1 Rootbier

10) daselva: Build B2 Daselva

11) rootbier: Discover Y1 Rootbier B3 Uva

12) daselva: Discover B1 Daselva G1 Roxo

13) rootbier: Build Y1 Rootbier

14) daselva: Build B2 Roxo

15) rootbier: Sacrifice G3 Rootbier
Build G1 Rootbier
Build Y2 Uva
Build Y2 Uva

16) daselva: Trade B2 R2 Roxo

17) rootbier: Discover Y1 Rootbier G3 Watermelon

18) daselva: Build B2 Roxo

19) rootbier: Build Y3 Rootbier

20) daselva: Trade G3 Y3 Daselva

21) rootbier: Trade Y3 G3 Rootbier

22) daselva: Trade Y3 R3 Daselva

23) rootbier: Sacrifice G3 Rootbier
Build Y3 Watermelon
Build Y3 Rootbier
Build G2 Rootbier

24) daselva: Sacrifice B2 Daselva
Trade B2 R2 Roxo
Pass
	daselva: hello,can you help me?...I don´t know how to introduce the commands for «sacrifice».what is a «carriage return»?

25) rootbier: Move G2 Rootbier Uva

26) daselva: Build B2 Daselva
	daselva: hello again,ok I found it ,it´s the changing line button... 
	rootbier: carriage return is old terminology from typewriter days. but yeah -- basically you need a new line between each command.
	rootbier: i see you're new to the game (both from letting me control yellow and from questions and from your game record) welcome. where are you from? :P :D 

27) rootbier: Build G2 Uva
	rootbier: sadly. you're in a lot of trouble now. your only move get's you to size one stars... that's only red from here out unless you sacrifice something. but basically you can not reach my ships at all. so i can just mass up what i need to catastrophe you and you can't do much about it.
	daselva: hello ...and thank you .yes is my first HW game ,I´m from Lisbon .I´m beggining to find HW a great game(what do you think about it?).Ithink a good way to understand and feel a game is to have a good defeat-I´m working hard on it...:)

28) daselva: Build B2 Roxo
	rootbier: The game definitely has a learning curve. You'll see soon enough that catastrophes are far more dangerous than attacks.

29) rootbier: Trade G2 B2 Uva

30) daselva: Trade B2 G2 Daselva

31) rootbier: Build G3 Uva

32) daselva: Build G3 Daselva

33) rootbier: Discover G3 Uva R1 Trap

34) daselva: Build R1 Daselva

35) rootbier: Sacrifice Y3 Watermelon
Move Y1 Uva Trap
Move Y1 Watermelon Trap
Move G3 Trap Daselva
Catastrophe Daselva G

36) daselva: Move R3 Daselva Rootbier

37) rootbier: Sacrifice Y3 Rootbier
Move Y1 Rootbier Daselva
Move Y1 Trap Daselva
Move Y1 Trap Daselva
Catastrophe Daselva Y

	daselva: hello rootbier,thank you very much for all your comments.I´ve already take note of all the game, I will remake it and learn a lot... thank you


16846)
Started: 2010.7.7, Ended: 2010.7.25
Participants: Teo (S), rootbier (N)
Winner: Teo

1) rootbier: Homeworld B1 Y2 G3

2) Teo: Homeworld G3 B1 Y3
	rootbier: Hey buddy. How was first frisbee? How's your living place?

3) rootbier: Build G1 Rootbier
	Teo: Hallo !
All is ok.
Good frisbee teams. (they play with 3 handlers and 2 midles, a bit strange :s how ever I manage to make really good zone-cut and good defense too)
Work no really interesting but ok.
I miss our diners !
I Hope evry thing is ok for you (work-pass, knee, ankle, friends, music, exam results, art, plan for summer...)
bye
Téo
	rootbier: Zzzz.... sleep now. Talk tomorrow.

4) Teo: Build Y1 Teo

5) rootbier: Trade G1 Y1 Rootbier
	rootbier: work - no. knee - ok but maybe cuz nothing is happening here. music - played drums yesterday for maybe second time in three years - didn't go so well. exam results - acceptable. my general mood is not good though. i also miss our dinners and whatever else we did. i miss your company.

6) Teo: Trade Y1 B1 Teo

7) rootbier: Build G1 Rootbier
	rootbier: too smart :P

8) Teo: Build Y1 Teo

9) rootbier: Build G1 Rootbier

10) Teo: Build B2 Teo

11) rootbier: Discover G1 Rootbier B3 Aubergine

12) Teo: Discover B2 Teo G2 Cucumber

13) rootbier: Build G1 Aubergine
	Teo: You're cool as a cucumber !

14) Teo: Sacrifice Y1 Teo
Move B2 Cucumber Aubergine

15) rootbier: Build G2 Aubergine

16) Teo: Trade B2 G2 Aubergine
Catastrophe Aubergine G

17) rootbier: Trade G1 R1 Rootbier

18) Teo: Build B2 Teo

19) rootbier: Build Y1 Rootbier

20) Teo: Discover B2 Teo G2 Heatwave

21) rootbier: Discover Y1 Rootbier B3 Badday

22) Teo: Build B2 Heatwave

23) rootbier: Build G1 Rootbier

24) Teo: Build B2 Teo

25) rootbier: Move G1 Rootbier Badday

26) Teo: Discover B2 Teo G2 Zone

27) rootbier: Build Y1 Badday

28) Teo: Build B3 Zone

29) rootbier: Move Y1 Badday Heatwave

30) Teo: Trade B3 R3 Zone
	rootbier: best with controlling blue is to do frequent blue sacrifice(2s or 3s) to get other colors and then still be the only one to get blue. can build a BIG fleet very quickly.

31) rootbier: Sacrifice G3 Rootbier
Build Y2 Badday
Build Y2 Heatwave
Build Y3 Rootbier

32) Teo: Sacrifice R3 Zone
Attack Y2 Heatwave
Attack Y1 Heatwave
Pass
	Teo: ok but not yet...

33) rootbier: Trade Y3 G3 Rootbier

34) Teo: Build Y3 Teo

35) rootbier: Sacrifice Y2 Badday
Move Y1 Badday Heatwave
Move Y1 Heatwave Teo

36) Teo: Sacrifice B2 Heatwave
Trade Y3 R3 Teo
Trade Y3 G3 Teo

37) rootbier: Build Y2 Teo

38) Teo: Sacrifice R3 Teo
Attack Y2 Teo
Attack Y1 Teo
Pass

39) rootbier: Move Y1 Rootbier Badday

40) Teo: Move Y1 Heatwave Badday

41) rootbier: Discover G1 Badday B2 Owwday

42) Teo: Sacrifice G3 Teo
Build Y3 Heatwave
Build Y3 Teo
Build Y3 Badday

43) rootbier: Build G1 Rootbier

44) Teo: Trade Y1 R1 Badday

45) rootbier: Move Y1 Badday Owwday

46) Teo: Trade Y2 R2 Teo

47) rootbier: Build Y1 Owwday

48) Teo: Build Y2 Heatwave

49) rootbier: Sacrifice G3 Rootbier
Build G1 Owwday
Build G2 Owwday
Build G3 Rootbier

50) Teo: Move Y1 Teo Owwday

51) rootbier: Trade Y1 R1 Owwday

52) Teo: Move Y1 Owwday Badday

53) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build G3 Rootbier
Build R2 Rootbier

54) Teo: Discover Y2 Heatwave R3 Killer

55) rootbier: Trade G3 B3 Rootbier

56) Teo: Sacrifice Y3 Heatwave
Move Y1 Badday Rootbier
Move Y3 Badday Rootbier
Move Y2 Killer Rootbier
Catastrophe Rootbier Y

57) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build G3 Rootbier
Build R2 Owwday

58) Teo: Sacrifice Y2 Heatwave
Move B2 Heatwave Rootbier
Move B2 Zone Rootbier
Catastrophe Rootbier B



16851)
Started: 2010.7.9, Ended: 2012.2.27
Participants: rayla (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3



16852)
Variants: "No undo"
Started: 2010.7.12, Ended: 2010.9.30
Participants: Arturion (S), goulo (N), AdamBadura (E)
Winner: goulo

1) goulo: Homeworld G3 B2 Y3

2) AdamBadura: Homeworld G1 B2 R3

3) Arturion: Homeworld R3 B2 Y3 *

4) goulo: Build Y1 Goulo

5) AdamBadura: Build R1 Adambadura
	goulo: arturion, welcome! your first homeworlds lesson is that it's good to start with green=production ability in your home system. :)

6) Arturion: Trade Y3 G3 Arturion

7) goulo: Build Y1 Goulo

8) AdamBadura: Trade R1 Y1 Adambadura
	goulo: PS: http://boardgames.famdepaus.nl/FS/index.html :)

9) Arturion: Build G1 Arturion
	AdamBadura: I noticed Artur is not reliable in doing his turns ASAP... ;)

10) goulo: Trade Y1 B1 Goulo

11) AdamBadura: Build R1 Adambadura

12) Arturion: Trade G1 Y1 Arturion

13) goulo: Discover Y1 Goulo G1 Smeraldeto

14) AdamBadura: Trade R1 G1 Adambadura

15) Arturion: Discover Y1 Arturion G1 Endor

16) goulo: Build B1 Goulo

17) AdamBadura: Build R1 Adambadura

18) Arturion: Build Y1 Endor

19) goulo: Trade B1 R1 Goulo

20) AdamBadura: Build Y2 Adambadura

21) Arturion: Build G2 Arturion

22) goulo: Build Y2 Smeraldeto

23) AdamBadura: Trade R3 G3 Adambadura

24) Arturion: Trade G2 R2 Arturion
	AdamBadura: Arturion, zanim zbudujesz 3 zielony statek w swoim uk³adzie to zauwa¿, ¿e ja mogê tam dolecieæ swoim G1 poœwiêcaj¹c Y2. Wtedy bêd¹ 4 "kawa³ki" G w tym uk³adzie i wywo³am katastrofê niszcz¹c ca³e G. To by pozbawi³o Ciê wszystkich statków w uk³adzie i spowodowa³o Twoj¹ przegran¹ a moje zwyciêstwo.

25) goulo: Move B1 Goulo Smeraldeto

26) AdamBadura: Discover Y2 Adambadura R3 Outpost

27) Arturion: Trade R2 B2 Arturion

28) goulo: Trade Y2 G2 Smeraldeto

29) AdamBadura: Move G1 Adambadura Outpost

30) Arturion: Trade B2 R2 Arturion

31) goulo: Build Y2 Goulo

32) AdamBadura: Build Y2 Outpost

33) Arturion: Move Y1 Endor Goulo

34) goulo: Trade Y2 R2 Goulo

35) AdamBadura: Discover Y2 Outpost R1 Ontheway

36) Arturion: Discover Y1 Endor R3 Tatooine

37) goulo: Attack Y1S Goulo

38) AdamBadura: Build Y2 Adambadura

39) Arturion: Trade R2 Y2 Arturion

40) goulo: Build Y3 Smeraldeto

41) AdamBadura: Build Y3 Adambadura

42) Arturion: Move Y2 Arturion Smeraldeto
	AdamBadura: Aj... Mia³ byæ w Outpost... :(
	AdamBadura: Jednak brak opcji Undo jest do kitu...

43) goulo: Sacrifice Y3 Smeraldeto
Move Y1 Smeraldeto Tatooine
Move Y1 Tatooine Adambadura
Move R1 Goulo Smeraldeto
Catastrophe Adambadura Yellow

44) AdamBadura: Build G1 Outpost

45) Arturion: Move Y2 Smeraldeto Outpost

46) goulo: Trade G2 Y2 Smeraldeto

47) AdamBadura: Attack Y2S Outpost

48) Arturion: Build G2 Arturion

49) goulo: Build Y1 Smeraldeto

50) AdamBadura: Move Y2 Outpost Adambadura
	goulo: Artur, ne forgesu pri: http://boardgames.famdepaus.nl/FS/index.html :)

51) Arturion: Move Y1 Tatooine Ontheway

52) goulo: Build B1 Smeraldeto

53) AdamBadura: Build G2 Adambadura
	goulo: i am in germanz this week and internet access is rare...
	AdamBadura: And considering "z" in place of "y" in "germany" keyboard layout is also German one... ;)

54) Arturion: Trade G2 R2 Arturion

55) goulo: Trade Y2 G2 Smeraldeto

56) AdamBadura: Discover G2 Adambadura Y3 Newland
	goulo: We just returned from Germany. It was a good vacation. :)

57) Arturion: Move Y1 Ontheway Newland

58) goulo: Discover G2 Smeraldeto Y3 Novlando

59) AdamBadura: Trade G3 Y3 Adambadura

60) Arturion: Pass

61) goulo: Build R1 Goulo

62) AdamBadura: Move G1 Outpost Ontheway
	AdamBadura: I guess it was an automatic pass.

63) Arturion: Pass
	goulo: I sent artur a nudging reminder email last night about turns here and Wysokie Napiecie. :)
	AdamBadura: I noticed Artur is nort a good online player. He doesn't make his turns even though he is online.

64) goulo: Build G2 Novlando

65) AdamBadura: Build R2 Adambadura
	AdamBadura: I doubt passing was a good move...

66) AdamBadura: Build G2 Newland
	AdamBadura: I'm going on a leave from 2010-09-04 to 2010-09-11 inclusive.
	goulo: shall we just terminate this game? i suppose artur is no longer interested in playing since he passed his last couple of turns anyway...
	AdamBadura: Yes. I guess so. So terminate it when you read this. You may also challange me... ;)

67) goulo: Sacrifice G2 Novlando
Build R2 Goulo
Build R3 Smeraldeto
	goulo: Oh interesting, the game apparently continues with just the 2 of us!
	goulo: Heh, and artur's ships exist as non-player ships apparently.
	goulo: but somehow it's your turn again instead of mine. Hmm.
	AdamBadura: Yes. Wired. Do you want to continue?
	goulo: sure, why not... :)

68) AdamBadura: Build R3 Adambadura
	AdamBadura: How is gaming today? Pity I couldn't come. But please, if you don't mind, ask me next time as well. Hopefully I will manage next time.

By the way I just ended another Ladder Homeworlds game. Again I won. Which is somewhat surprising taking into account that player was stronger then me (judging by rank; but he also quickly gained advantage - luckily he lost anyway ;)). So now I'm at position 2. :)

Maybe we should invait zara2stra again?
	goulo: zara2stra was very busy and didn't play for several weeks, but is playing alien city with me again (finally). so maybe he'd be interested in homeworlds again, i'm not sure.

which reminds me, you should learn alien city! :)

69) goulo: Move R3 Smeraldeto Newland

70) AdamBadura: Sacrifice G2 Newland
Build G2 Ontheway
Build G2 Outpost

71) goulo: Build G3 Novlando
	goulo: BTW in the end there was no gaming last night. So I read. :)

72) AdamBadura: Build G3 Outpost

73) goulo: Attack G2E Newland

74) AdamBadura: Discover R3 Adambadura B3 Wrap

75) goulo: Move R2 Goulo Smeraldeto

76) AdamBadura: Sacrifice G3 Outpost
Build G3 Outpost
Build Y1 Ontheway
Build Y2 Outpost

77) goulo: Move G2 Novlando Adambadura

78) AdamBadura: Attack G2N Adambadura

79) goulo: Move G3 Novlando Adambadura

80) AdamBadura: Attack G3N Adambadura

81) goulo: Move G2 Newland Adambadura
Catastrophe Adambadura G

82) AdamBadura: Sacrifice Y1 Ontheway
Move R3 Wrap Ontheway
	AdamBadura: Nicely done. ;)

83) goulo: Attack Y1S Newland
	goulo: maybe, maybe not... we'll see if it was the right time to do it or not. :)

	AdamBadura: It was clear you would have won. No point in continuing. Thanks for the game!
	goulo: Yeah, I was all set to sacrifice y3 and then move 2 yellows and my r3 to your homeworld, catastrophe yellow, and you're stuck with an r1 and r2 there. A few turns back I thought I was going to lose, as you had more ships, and even the extra turn after we knocked artur out. :) But the situation was complex and hard to analyze! Thanks for the game!
	AdamBadura: Yes. I thought that my position is better as well. ;)


16861)
Started: 2010.7.13, Ended: 2010.7.25
Participants: MagicJohn (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) MagicJohn: Homeworld B1 Y3 G3
	MagicJohn: Hello again.  Guess I get to check out my learning curve.

3) rootbier: Build G1 Rootbier
	rootbier: I don't quite remember how the last one ended -- but good luck :D !

4) MagicJohn: Build G1 Magicjohn
	MagicJohn: I'm still a bit of a newbie in this game.  As such, the ending was unfortunately, very predictable. I hope that I prove to be a bit more competition this time around.

5) rootbier: Trade G1 B1 Rootbier

6) MagicJohn: Trade G1 Y1 Magicjohn

7) rootbier: Build B2 Rootbier

8) MagicJohn: Build G1 Magicjohn

9) rootbier: Discover B2 Rootbier G3 Factory

10) MagicJohn: Discover G1 Magicjohn B2 Mauisands

11) rootbier: Build B2 Factory

12) MagicJohn: Build Y1 Magicjohn

13) rootbier: Build B3 Rootbier

14) MagicJohn: Build G1 Magicjohn

15) rootbier: Build B3 Factory

16) MagicJohn: Trade G3 B3 Magicjohn

17) rootbier: Sacrifice B2 Factory
Trade B3 Y3 Factory
Trade B3 R3 Rootbier
	rootbier: so what have you learned already in this game? if you are building your home system second - better not to use the same color small star (there are other ways around this but they make other problems).
	MagicJohn: I am a big fan of Joni Mitchell's "Blue Album" but this is ridiculous. You obtained access to large ships very quickly.  By the time I saw it coming there was little I could do in terms of quick response. Maybe I should have tried to build yellow as an alternative rout to larger ships?  I'm still not sure if I should trade my G3 for a blue. I suspect that I need to try to forestall a blue catastrophe in my home system.     

18) MagicJohn: Build G1 Mauisands
	rootbier: you could have tried to grab yellow but you couldn't really have blocked me out of it - especially not since it was "trade" ships i was filling up on. once someone has a level two ship it becomes much harder to lock them out of a color.

19) rootbier: Sacrifice G3 Rootbier
Build B2 Factory
Build B3 Factory
Build B3 Rootbier
	rootbier: btw ... feel free to build blue now :D

20) MagicJohn: Build G2 Magicjohn

21) rootbier: Sacrifice B2 Factory
Trade B2 Y2 Factory
Trade B3 R3 Factory

22) MagicJohn: Trade Y1 R1 Magicjohn
	rootbier: rinse and repeat

23) rootbier: Move R3 Factory Mauisands

24) MagicJohn: Build G2 Magicjohn

25) rootbier: Attack G1 Mauisands

26) MagicJohn: Discover G2 Magicjohn Y2 Anyport
	rootbier: *koff* defenseless *koff*
*koff* need red somewhere *koff*
*koff* undo or die *koff*

27) rootbier: Move Y3 Factory Anyport
	MagicJohn: Thanks for the heads up.  I was too involved trying to figure out how to change my "shrink art" fleet into something more substantial. Haven't learned a thing since Pearl Harbor I guess.

28) MagicJohn: Trade G2 R2 Magicjohn

29) rootbier: Move B1 Rootbier Factory

30) MagicJohn: Build G2 Anyport

31) rootbier: Sacrifice R3 Rootbier
Attack G2 Anyport
Attack G2 Anyport
Attack G1 Mauisands

32) MagicJohn: Discover R2 Magicjohn B2 Holeinthewall
	rootbier: two 3s on your doorstep. make sure you can handle that.

33) rootbier: Sacrifice G2 Anyport
Build B2 Rootbier
Build B3 Factory

34) MagicJohn: Discover G1 Magicjohn G2 Arthurbrown

35) rootbier: Sacrifice B2 Rootbier
Trade G1 Y1 Mauisands
Trade G1 Y1 Mauisands

36) MagicJohn: Move Y1 Magicjohn Holeinthewall
	MagicJohn: It looked extremely rocky for the Mudville nine that day........  

37) rootbier: Sacrifice G2 Anyport
Build B2 Factory
Build Y3 Mauisands

38) MagicJohn: Build G1 Arthurbrown

39) rootbier: Sacrifice Y2 Factory
Move Y1 Mauisands Magicjohn
Move Y1 Mauisands Magicjohn

	MagicJohn: My last few moves have been either defensive or pointless, but I wanted to see how the attack developed. Thanks for the game. MJ  
	rootbier: boo. see it through. i've been known to make some bonehead mistakes at crucial moments.
	MagicJohn: If I can get Aaron to undo my resignation I'll give it a shot.
	MagicJohn: Aaron, apparently rootbier thinks I should blunder through to the very end of this game. I'm always up for a good humiliation, so if you can rewind this mess please do.  Thanks (I think) MagicJohn 
	rootbier: no no. not worth bothering someone else about. just start a new one.


16661)
Variants: "Hard time"
Started: 2010.7.14, Ended: 2010.8.2
Participants: zoltar (S), SilentTitan (N)
Winner: zoltar

1) SilentTitan: Homeworld R3 B2 G3

2) zoltar: Homeworld R1 B3 G3

3) SilentTitan: Build G1 Silenttitan

4) zoltar: Build G1 Zoltar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) zoltar: Trade G1 Y1 Zoltar

7) SilentTitan: Build G1 Silenttitan

8) zoltar: Build G1 Zoltar

9) SilentTitan: Trade G1 R1 Silenttitan

10) zoltar: Trade G1 R1 Zoltar

11) SilentTitan: Build R2 Silenttitan

12) zoltar: Build R2 Zoltar

13) SilentTitan: Discover R2 Silenttitan B1 Antimirror

14) zoltar: Trade R1 B1 Zoltar

15) SilentTitan: Build G1 Silenttitan

16) zoltar: Build B1 Zoltar

17) SilentTitan: Discover R1 Silenttitan R1 Trialrun

18) zoltar: Discover R2 Zoltar G2 Greenbelt

19) SilentTitan: Build G1 Silenttitan

20) zoltar: Move B1 Zoltar Greenbelt

21) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Antimirror
Build R3 Antimirror
Build R3 Trialrun

22) zoltar: Sacrifice Y1 Zoltar
Move R2 Greenbelt Antimirror
Catastrophe Antimirror R
	zoltar: Yikes!

23) SilentTitan: Sacrifice Y1 Silenttitan
Move R3 Trialrun Greenbelt

24) zoltar: Sacrifice B1 Greenbelt
Trade B1 Y1 Zoltar

25) SilentTitan: Trade G1 B1 Silenttitan

26) zoltar: Build Y1 Zoltar

27) SilentTitan: Build R2 Greenbelt

28) zoltar: Build Y1 Zoltar

29) SilentTitan: Sacrifice B1 Silenttitan
Trade R2 B2 Greenbelt

30) zoltar: Discover Y1 Zoltar G2 Greendale

31) SilentTitan: Build R2 Greenbelt

32) zoltar: Build Y2 Greendale

33) SilentTitan: Trade R2 Y2 Greenbelt

34) zoltar: Discover Y1 Zoltar B2 Blueridge

35) SilentTitan: Sacrifice Y2 Greenbelt
Move R3 Greenbelt Trialrun
Move R3 Trialrun Silenttitan

36) zoltar: Build Y2 Greendale

37) SilentTitan: Trade R3 Y3 Silenttitan

38) zoltar: Sacrifice G3 Zoltar
Build Y2 Blueridge
Build Y3 Blueridge
Build Y3 Zoltar

39) SilentTitan: Build G1 Silenttitan

40) zoltar: Trade Y1 G1 Blueridge

41) SilentTitan: Build B1 Greenbelt

42) zoltar: Trade Y3 R3 Blueridge

43) SilentTitan: Trade B1 Y1 Greenbelt

44) zoltar: Build Y3 Blueridge

45) SilentTitan: Build B1 Greenbelt

46) zoltar: Sacrifice Y2 Greendale
Move R3 Blueridge Trialrun
Move R3 Trialrun Greenbelt

47) SilentTitan: Move G1 Silenttitan Trialrun

48) zoltar: Build R2 Greenbelt

49) SilentTitan: Trade B2 G2 Greenbelt

50) zoltar: Sacrifice R2 Greenbelt
Attack G2 Greenbelt
Attack Y1 Greenbelt

51) SilentTitan: Build Y2 Silenttitan

52) zoltar: Move G2 Greenbelt Trialrun

53) SilentTitan: Build G3 Trialrun

54) zoltar: Build G3 Trialrun
Catastrophe Trialrun G

55) SilentTitan: Build G1 Silenttitan

56) zoltar: Trade Y3 G3 Zoltar

57) SilentTitan: Move G1 Silenttitan Trialrun

58) zoltar: Trade Y3 G3 Blueridge

59) SilentTitan: Build R2 Trialrun

60) zoltar: Sacrifice G3 Blueridge
Build Y3 Blueridge
Build Y3 Greenbelt
Build R2 Greenbelt

61) SilentTitan: Build G2 Silenttitan

62) zoltar: Move R2 Greenbelt Trialrun
Catastrophe Trialrun R

63) SilentTitan: Trade Y2 R2 Silenttitan

64) zoltar: Build G1 Zoltar

65) SilentTitan: Build Y2 Silenttitan

66) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Zoltar
Build G3 Blueridge

67) SilentTitan: Build R1 Silenttitan

68) zoltar: Trade Y3 R3 Blueridge

69) SilentTitan: Discover Y2 Silenttitan R1 Farside

70) zoltar: Sacrifice G3 Blueridge
Build G3 Blueridge
Build Y3 Zoltar
Build R2 Blueridge

71) SilentTitan: Trade R1 B1 Silenttitan

72) zoltar: Attack B1 Greenbelt

73) SilentTitan: Pass

74) zoltar: Move R3 Blueridge Farside

75) SilentTitan: Discover Y2 Farside R2 Nearside

76) zoltar: Move G3 Zoltar Nearside

77) SilentTitan: Discover Y2 Nearside B3 Sideside

78) zoltar: Move G3 Blueridge Sideside

79) SilentTitan: Discover Y2 Sideside B2 Charmed

80) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Greenbelt
Build B3 Greenbelt

81) SilentTitan: Build R1 Silenttitan

82) zoltar: Sacrifice Y3 Zoltar
Move B3 Greenbelt Farside
Move B3 Farside Silenttitan
Move R3 Farside Silenttitan
Catastrophe Silenttitan R

83) SilentTitan: Sacrifice Y3 Silenttitan
Move Y2 Charmed Zoltar
Move G2 Silenttitan Zoltar
Move G1 Silenttitan Zoltar
Catastrophe Zoltar Green

84) zoltar: Sacrifice G3 Nearside
Build B2 Silenttitan
Build Y3 Zoltar
Build Y3 Zoltar
Catastrophe Silenttitan B
	zoltar: Well, with 7 largs ships, I suppose it's time to attack!

	SilentTitan: I had to redo it the more flamboyant way. 
	zoltar: Yep. I was wary for a while when I had only one color, knowing that the "bluebird" checkmate was a possibility if I ever got to a position like this.
	zoltar: Well, then, I'll have to end with a flamboyant finish. Though I wonder what would happen if I blew up my own homeworld along with yours?

Hahaha, it won't let me blow up my homeworld as well, and it crashes the program when I try!
	zoltar: Good game! Play again?
	SilentTitan: yep


16664)
Variants: "Sinister"
Started: 2010.7.14, Ended: 2010.11.14
Participants: Mandrel (S), daselva (N), zoltar (E)
Winner: zoltar

1) daselva: Homeworld G3 Y2 B3

2) zoltar: Homeworld R1 B2 G3

3) Mandrel: H Y1 B3 G3

4) daselva: Build B1 Daselva
	Mandrel: Have a good game.

5) zoltar: Build G1 Zoltar

6) Mandrel: Build G1 Mandrel

7) daselva: Trade B3 G3 Daselva

8) zoltar: Trade G1 Y1 Zoltar

9) Mandrel: Trade G1 R1 Mandrel

10) daselva: Build G1 Daselva

11) zoltar: Build Y1 Zoltar

12) Mandrel: B G1 Mandrel

13) daselva: Trade G3 Y3 Daselva

14) zoltar: Trade Y1 B1 Zoltar

15) Mandrel: T G1 Y1 Mandrel

16) daselva: Build B1 Daselva

17) zoltar: Build G1 Zoltar

18) Mandrel: B G1 Mandrel

19) daselva: Trade B1 R1 Daselva

20) zoltar: Discover G1 Zoltar B3 Bluemoon

21) Mandrel: T G1 B1 Mandrel

22) daselva: Build B1 Daselva

23) zoltar: Build B2 Zoltar

24) Mandrel: B B2 Mandrel

25) daselva: Discover B1 Daselva G1 S2

26) zoltar: Discover B2 Zoltar G3 Greengiant

27) Mandrel: D B1 Mandrel G2 Time

28) daselva: Build B2 S2

29) zoltar: Sacrifice G3 Zoltar
Build B3 Zoltar
Build B3 Greengiant
Build G1 Bluemoon

30) Mandrel: B G2 Mandrel

31) daselva: Trade B2 Y2 S2

32) zoltar: Sacrifice B2 Greengiant
Trade B3 G3 Zoltar
Trade G1 Y1 Bluemoon

33) Mandrel: B B2 Time

34) daselva: Build B2 S2

35) zoltar: Build B3 Greengiant

36) Mandrel: M Y1 Mandrel Time

37) daselva: Move B1 S2 Bluemoon

38) zoltar: Sacrifice B1 Zoltar
Trade B3 Y3 Greengiant

39) Mandrel: B Y2 Time

40) daselva: Build B1 S2

41) zoltar: Sacrifice G3 Zoltar
Build Y2 Bluemoon
Build Y3 Greengiant
Build Y3 Zoltar

42) Mandrel: Move Y1 Time Greengiant

43) daselva: Move B1 S2 Greengiant

44) zoltar: Sacrifice Y2 Bluemoon
Discover Y3 Greengiant G1 Greenpea
Discover B3 Greengiant G2 Greentea

45) Mandrel: B Y2 Time

46) daselva: Move B2 S2 Greengiant

47) zoltar: Trade B3 R3 Greentea

48) Mandrel: Discover Y1 Greengiant R1 Foolishness

49) daselva: Build B3 Greengiant

50) zoltar: Discover Y3 Greengiant G2 Greensea

51) Mandrel: Move B1 Time Greengiant
Catastrophe Greengiant Blue

52) daselva: Build R2 Daselva

53) zoltar: Build G3 Bluemoon

54) Mandrel: Move Y2 Time Foolishness

55) daselva: Move R2 Daselva S2

56) zoltar: Move G1 Bluemoon Zoltar

57) Mandrel: Sacrifice Y2 Time
Move Y1 Foolishness Daselva
Move Y2 Foolishness Daselva
Catastrophe Daselva Yellow

58) daselva: Move R2 S2 Time

59) zoltar: Build G3 Zoltar

60) Mandrel: Sacrifice R1 Mandrel
Attack R2N Time

61) daselva: Move Y2 S2 Daselva

62) zoltar: Move Y3 Greenpea Time

63) Mandrel: Sacrifice B2 Time
Trade G2 Y2 Mandrel
Trade B2 R2 Mandrel

64) daselva: Trade B1 Y1 Bluemoon

65) zoltar: Sacrifice G3 Zoltar
Build Y2 Time
Build Y2 Greensea
Build Y3 Bluemoon

66) Mandrel: B G1 Mandrel

67) daselva: Sacrifice R1 Daselva
Attack Y1E Bluemoon

68) zoltar: Build R1 Greentea

69) Mandrel: Discover G1 Mandrel B2 Weary

70) daselva: Trade Y2 R2 Daselva

71) zoltar: Sacrifice R3 Greentea
Attack R2S Time
Attack Y1N Bluemoon
Attack Y1N Bluemoon

72) Mandrel: Move Y2 Mandrel Weary

73) daselva: Build R1 Daselva

74) zoltar: Move Y3 Bluemoon Weary

75) Mandrel: Build G1 Weary

76) daselva: Trade G1 B1 Daselva

77) zoltar: Sacrifice R2 Time
Attack Y2S Weary
Attack G1S Weary

78) Mandrel: Build R1 Mandrel

79) daselva: Trade R2 Y2 Daselva

80) zoltar: Build G1 Bluemoon

81) Mandrel: Build G2 Mandrel

82) daselva: Build R2 Daselva

83) zoltar: Sacrifice G3 Bluemoon
Build R2 Greentea
Build G3 Bluemoon
Build G3 Zoltar

84) Mandrel: Trade R2 B2 Mandrel

85) daselva: Move R2 Daselva Time

86) zoltar: Sacrifice R2 Greentea
Attack R2N Time
Attack G1S Weary

87) Mandrel: Discover G2 Mandrel B2 Final

88) daselva: Build R2 Daselva

89) zoltar: Sacrifice Y3 Zoltar
Move G1 Zoltar Daselva
Move G1 Weary Daselva
Move G1 Weary Daselva
Catastrophe Daselva G

90) zoltar: Build Y2 Greensea

91) Mandrel: B G1 Mandrel

92) zoltar: Build Y3 Bluemoon

93) Mandrel: Build G1 Final
	zoltar: The Zoltarian fleet rules the galaxy!

94) zoltar: Trade Y3 G3 Weary
	Mandrel: oh dear, I'm a little concerned about your intentions.

95) Mandrel: Build B1 Mandrel

96) zoltar: Sacrifice G3 Bluemoon
Build G1 Weary
Build G3 Bluemoon
Build Y3 Weary
	zoltar: My intentions are to blow stuff up!

97) Mandrel: Trade G2 R2 Final

98) zoltar: Sacrifice Y3 Bluemoon
Move Y3 Greensea Mandrel
Move G1 Weary Mandrel
Move G3 Weary Mandrel
Catastrophe Mandrel G

99) Mandrel: Trade B1 G1 Mandrel
	Mandrel: Thats exactly what I was afraid of!

100) zoltar: Trade Y3 B3 Mandrel

101) Mandrel: Trade B2 G2 Mandrel

102) zoltar: Sacrifice Y2 Greensea
Move Y3 Weary Mandrel
Move Y3 Time Mandrel

103) Mandrel: Trade R2 Y2 Final

104) zoltar: Sacrifice G3 Bluemoon
Build B1 Mandrel
Build B1 Mandrel
Build Y3 Mandrel
Catastrophe Mandrel B
Catastrophe Mandrel Y

	zoltar: Good game!
	Mandrel: Good game, was obviously over long ago, well played.
	zoltar: Yep, once daselva was eliminated, I had such a big advantage that I could just slowly build up and then just overwhelm your homeworld.


16901)
Variants: "Hard time"
Started: 2010.7.15, Ended: 2010.7.20
Participants: rootbier (S), SilentTitan (N)
Winner: rootbier

1) SilentTitan: Homeworld B2 R1 G3

2) rootbier: Homeworld B1 Y2 G3
	rootbier: Let's see if I can manage to not time out a bajillion games at once this time. I think I lost my last two ladder games that way.

3) SilentTitan: Build G1 Silenttitan

4) rootbier: Build G1 Rootbier
	SilentTitan: yikes

	rootbier: exams and then sick and traveling - oh well

5) SilentTitan: Trade G1 Y1 Silenttitan

6) rootbier: Trade G1 Y1 Rootbier

7) SilentTitan: Build G1 Silenttitan

8) rootbier: Build G1 Rootbier

9) SilentTitan: Trade G1 R1 Silenttitan

10) rootbier: Trade G1 R1 Rootbier

11) SilentTitan: Build R2 Silenttitan

12) rootbier: Discover R1 Rootbier G3 Rc

13) SilentTitan: Trade R1 B1 Silenttitan

14) rootbier: Build G1 Rootbier

15) SilentTitan: Move R2 Silenttitan Rc

16) rootbier: Build R1 Rc

17) SilentTitan: Build Y1 Silenttitan

18) rootbier: Build Y2 Rootbier

19) SilentTitan: Discover Y1 Silenttitan B3 Bigblue

20) rootbier: Move Y2 Rootbier Bigblue

21) SilentTitan: Attack R1S Rc

22) rootbier: Build R2 Rc
Catastrophe Rc R

23) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Bigblue
Build Y3 Bigblue
Build Y3 Silenttitan
Catastrophe Bigblue Yellow

24) rootbier: Trade G1 B1 Rootbier

25) SilentTitan: Trade B1 R1 Silenttitan

26) rootbier: Build B1 Rootbier

27) SilentTitan: Trade Y3 G3 Silenttitan

28) rootbier: Discover B1 Rootbier G3 Ulm

29) SilentTitan: Build R1 Silenttitan

30) rootbier: Sacrifice G3 Rootbier
Build B2 Ulm
Build B2 Ulm
Build B3 Rootbier

	SilentTitan: good game
	rootbier: i know i got some ships in your face ... but giving up? nothing is inevitable. i could have made some mistakes. wasn't a lock.


16903)
Started: 2010.7.15, Ended: 2010.7.25
Participants: rootbier (S), daselva (N)
Winner: rootbier

1) daselva: Homeworld G3 Y1 B3
	daselva: hello ,nice to see you again

2) rootbier: Homeworld B1 Y2 G3

3) daselva: Build B1 Daselva

4) rootbier: Build G1 Rootbier
	rootbier: I will try to leave the nasty stuff for later in. We'll have a nice friendly start.

5) daselva: Trade B3 G3 Daselva

6) rootbier: Trade G1 B1 Rootbier

7) daselva: Build G1 Daselva

8) rootbier: Build B2 Rootbier

9) daselva: Build B2 Daselva

10) rootbier: Discover B1 Rootbier Y3 Banan

11) daselva: Trade B1 R1 Daselva

12) rootbier: Build G1 Rootbier

13) daselva: Build B1 Daselva

14) rootbier: Sacrifice G3 Rootbier
Build B2 Banan
Build B3 Banan
Build B3 Rootbier

15) daselva: Trade B2 Y2 Daselva

16) rootbier: Sacrifice B2 Rootbier
Trade B2 Y2 Banan
Trade B1 G1 Banan

17) daselva: Discover G1 Daselva B2 S2

18) rootbier: Build G2 Banan

19) daselva: Build Y1 Daselva
	rootbier: There's a threat there that you need to recognize and address. Think about it a while.

20) rootbier: Discover B3 Banan R2 Gates

21) daselva: Trade G1 Y1 S2

22) rootbier: Move G1 Banan Gates

23) daselva: Move G3 Daselva S2

24) rootbier: Trade B3 R3 Rootbier

25) daselva: Move G3 S2 Daselva

26) rootbier: Move Y2 Banan Gates

27) daselva: Discover Y1 Daselva G2 Ss3

28) rootbier: Build Y3 Gates

29) daselva: Trade Y2 R2 Daselva
	rootbier: pulling your only size 3 ship away from your homeworld is not the best idea. you're okay right now cuz i have no red at the moment. but otherwise - you'd have some big trouble.

30) rootbier: Discover G2 Banan B2 Fluff

31) daselva: Trade G3 B3 Daselva
	rootbier: and now i have all the red i need - you should fly that big guy back home.

32) rootbier: Build Y2 Gates

33) daselva: Build Y3 Ss3

34) rootbier: Sacrifice Y2 Gates
Move G2 Fluff Daselva
Move G1 Gates Daselva

35) daselva: Sacrifice Y3 Ss3
Discover Y1 Ss3 G3 S4
Move Y1 S2 S4
Pass
	rootbier: My plan (as it stands) is to sacrifice that y2 at Gates to move in both my big guys. Having only the one little red you won't be able to take both of them. On the next turn I sacrifice my big red at home to attack with the remaining large ship and take three in your homeworld.

There is one thing you can do to stop me. Take time to think about it a while. Let me know if you don't sort it out.
	daselva: thank you for sharing your thoughts.I think the answer to your question is trade my y2 for a r2 in my HW.So if you came with your 2 big ones in my HW,I can sacrifice this r2 to attack both.Am I right?

36) rootbier: Build G1 Daselva
Catastrophe Daselva G
	rootbier: you are correct! well done.

37) daselva: Move Y1 S4 Rootbier

38) rootbier: Attack Y1 Rootbier
	rootbier: New threat. Pretty straightforward. See it?
	daselva: green catastrophe in my HW?

39) daselva: Build Y2 S4
	rootbier: Yeah.

But basically you're really behind the 8-ball (in a bad position) - cuz two moves from now I will cause that catastrophe anyway. And then I will start working on massing up ships for a yellow catastrope. It is too late to stop the green one - but you need to look for an opening to catastrophe my yellows as I build them - I may not give you that opening. (Or maybe I will just to test your awareness :) I haven't decided yet.)
	rootbier: Actually - it won't be two moves from now - I am going to take a little more time here to try to save time on building yellows later. Not sure that will help you but do your best.

And ask questions. If you are considering something and not sure if it is a good plan or not -- you can just ask.

40) rootbier: Discover Y1 Rootbier G3 Dage

41) daselva: Build Y3 S4

42) rootbier: Sacrifice Y3 Gates
Move B3 Gates Daselva
Move Y2 Gates Daselva
Move Y1 Dage Daselva
	rootbier: trouble. if you take one i just build with the other and call cat green. if you sac the r2 to take both i pull my sac y2 to move my two big guys in.

but don't worry - i get over eager and mess up often enough ;) you'll probably find a chink in my armor before it's over.
	daselva: playing this game with all your comments has been very useful for me to understand this game that I´m finding very interesting and very demanding(it´s hard to understand all it´s mechanics).I´m felling that g3 and y3 are the most important ships...in the actual situation I think I can´t do much to your attack.. .. 

43) daselva: Attack Y2 Daselva

44) rootbier: Trade B3 Y3 Daselva
Catastrophe Daselva Y
	rootbier: it's a very deep game. it moves slowly until things are set up and then... sacrifices make some quick things happen. always have to be looking for the trouble that might come from a sacrifice.
	rootbier: it isn't going to make a big difference this time... but you always want to note how movement/connection changes when one of the homestars gets wiped out - sometimes it will mean that the two home systems become directly connected - which can mean new opportunities and new trouble.

	rootbier: that simply won't do it man. though at this point - there was very little (maybe nothing) that would have.


16906)
Variants: "Hard time"
Started: 2010.7.16, Ended: 2010.8.10
Participants: dlwillson (S), agentofchaos (N)
Winner: dlwillson

1) agentofchaos: Homeworld R1 B2 G3
	agentofchaos: Hi there, enjoy the game 

2) dlwillson: Homeworld Y1 B3 G3

3) agentofchaos: Build G1 Agentofchaos
	dlwillson: You too, Agent! Good to play you again. I have SDG on my phone, so I'll get my turns in ASAP. If I take a long time, it means your kickin' my butt. :-)

4) dlwillson: B G1 Dlwillson
	agentofchaos: I can only hope I might be kickin' yr butt, stranger things have happened! ;-)

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) dlwillson: T G1 R1 Dlwillson

7) agentofchaos: Build G1 Agentofchaos
	dlwillson: This is really much too slow for me. I don't mind playing slow in a regular game, but this is keeping me from playing other ladder matches. Kill me quick, wouldja?
	dlwillson: How about a turn a day?
	agentofchaos: Sorry i've just been distracted the last few days, I'll step up the pace a bit now

8) dlwillson: Build R1 Dlwillson

9) agentofchaos: Build Y1 Agentofchaos

10) dlwillson: B R2 Dlwillson

11) agentofchaos: Build Y2 Agentofchaos

12) dlwillson: D R2 Dlwillson B2 Sticky

13) agentofchaos: Trade Y2 R2 Agentofchaos

14) dlwillson: B G1 Dlwillson

15) agentofchaos: Build Y2 Agentofchaos

16) dlwillson: D R1 Dlwillson Y2 Slick

17) agentofchaos: Discover Y2 Agentofchaos B3 Klabberjass

18) dlwillson: Sacrifice G3 Dlwillson
Build R2 Slick
Build R3 Sticky
Build R3 Dlwillson

19) agentofchaos: Build R3 Agentofchaos

20) dlwillson: T R3 Y3 Dlwillson

21) agentofchaos: Move R3 Agentofchaos Klabberjass

22) dlwillson: Build R3 Dlwillson

23) agentofchaos: Discover G1 Agentofchaos Y3 Blackguard

24) dlwillson: M R2 Slick Blackguard

25) agentofchaos: Sacrifice G1 Blackguard
Build Y2 Klabberjass

26) dlwillson: Sacrifice Y3 Dlwillson
Move R1 Slick Blackguard
Move R2 Blackguard Agentofchaos
Move R1 Blackguard Agentofchaos
Catastrophe Agentofchaos R

27) agentofchaos: Build G1 Agentofchaos

28) dlwillson: Trade R3 Y3 Sticky
	agentofchaos: Ouch..

29) agentofchaos: Trade Y2 G2 Klabberjass

30) dlwillson: T R2 B2 Sticky
	dlwillson: Expensive, but worth it, I hope.  Now, how was I going to finish this? I don't seem to have any of the colors I need and you have that darned R3...
	agentofchaos: yes it will be interesting to see how this plays out..

31) agentofchaos: Build G1 Klabberjass

32) dlwillson: D B2 Sticky G3 Puffy

33) agentofchaos: Build G2 Klabberjass

34) dlwillson: Build B1 Puffy

35) agentofchaos: Sacrifice Y2 Klabberjass
Move R3 Klabberjass Sticky
Move R3 Sticky Puffy

36) dlwillson: S Y3 Sticky
M B2 Puffy Agentofchaos
M B1 Puffy Agentofchaos
Pass

37) agentofchaos: Sacrifice R3 Puffy
Attack B1 Agentofchaos
Attack B2 Agentofchaos
Pass

38) dlwillson: M R3 Dlwillson Agentofchaos

	agentofchaos: Looks like it's all over now, well played :-)
	dlwillson: Thank you, Agent! Good game!


16888)
Variants: "Hard time"
Started: 2010.7.17, Ended: 2010.8.13
Participants: goulo (S), jonaskoelker (N)
Winner: goulo

1) jonaskoelker: Homeworld B1 R2 G3

2) goulo: Homeworld B3 G2 Y3

3) jonaskoelker: Build G1 Jonaskoelker

4) goulo: Build Y1 Goulo
	jonaskoelker: Hi.  Good luck, have fun :)

5) jonaskoelker: Trade G1 Y1 Jonaskoelker
	goulo: Hi, I'm slow this week due to travel. :)

6) goulo: Discover Y1 Goulo G1 Smeraldeto
	jonaskoelker: Okay.  I hope I'm stressing you with the time limits (?)

7) jonaskoelker: Build G1 Jonaskoelker

8) goulo: Build Y1 Goulo
	jonaskoelker: I meant I hope I'm *not* stressing you with the time limits, wrt. vacationing :)

9) jonaskoelker: Build Y2 Jonaskoelker
	goulo: Ha, OK. :)
In any case, we are home again. The vacation was good. :)

10) goulo: Build Y2 Smeraldeto
	jonaskoelker: Ah, good to hear :)  I'll be away from monday on, but I'll be able to check in every once in a while.

11) jonaskoelker: Discover Y1 Jonaskoelker G3 Big_green

12) goulo: Trade Y1 R1 Goulo

13) jonaskoelker: Build Y1 Big_green

14) goulo: Build R1 Goulo
	jonaskoelker: Except for being on the receiving end, I really like your opening; it's quite agressive.  Of course, your starfleet is no match against the power of the force :P

15) jonaskoelker: Move Y1 Big_green Smeraldeto
	goulo: That's a neat thing getting to play with various people and see different styles. Many of my games were played with the same people, so by playing with other folks I hope to break out of our groupthink. :)

16) goulo: Move Y2 Smeraldeto Big_green



16841)
Started: 2010.7.19, Ended: 2010.10.29
Participants: ts52 (S), ZackStack (N)
Winner: ts52

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Hi TS!  Its been a while... have a good game!

2) ts52: Homeworld Y3 B1 G3

3) ZackStack: Build G1 Zackstack
	ts52: Thanks. You too!

4) ts52: Build G1 Ts52

5) ZackStack: Trade G1 Y1 Zackstack

6) ts52: Trade G1 R1 Ts52

7) ZackStack: Trade Y1 R1 Zackstack
	ZackStack: Sigh... we can't have that now... :-)

8) ts52: Build R2 Ts52

9) ZackStack: Build R2 Zackstack

10) ts52: Discover R2 Ts52 G2 Oscar

11) ZackStack: Trade R2 Y2 Zackstack

12) ts52: Build R2 Ts52

13) ZackStack: Discover R1 Zackstack G3 Gilbert

14) ts52: Build G1 Ts52

15) ZackStack: Build G1 Zackstack

16) ts52: Trade G1 B1 Ts52

17) ZackStack: Trade G1 B1 Zackstack

18) ts52: Build B2 Ts52

19) ZackStack: Build B2 Zackstack

20) ts52: Move B2 Ts52 Oscar

21) ZackStack: Move B2 Zackstack Gilbert

22) ts52: Build B3 Oscar

23) ZackStack: Build B3 Gilbert

24) ts52: Trade B3 Y3 Oscar

25) ZackStack: Trade B2 Y2 Gilbert

26) ts52: Build G1 Ts52

27) ZackStack: Build B2 Gilbert

28) ts52: Build B3 Oscar

29) ZackStack: Discover B2 Gilbert G2 Froggy

30) ts52: D Y3 Oscar B3 Gonzo

31) ZackStack: Move B1 Zackstack Gilbert

32) ts52: D G1 Ts52 Y2 Bigbird

33) ZackStack: Move B1 Gilbert Froggy

34) ts52: Move B1 Ts52 Bigbird

35) ZackStack: Build Y1 Gilbert

36) ts52: Move G1 Bigbird Gonzo

37) ZackStack: Move Y2 Gilbert Froggy

38) ts52: Build G1 Ts52

39) ZackStack: Build G1 Zackstack

40) ts52: Move R2 Ts52 Bigbird

41) ZackStack: Build Y1 Froggy

42) ts52: Discover R2 Bigbird Y3 Fozzie

43) ZackStack: Discover B3 Gilbert G2 Tadpole

44) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Fozzie
Build R3 Ts52

45) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build R3 Gilbert
Build Y1 Gilbert

46) ts52: Build R3 Oscar

47) ZackStack: Move Y1 Gilbert Tadpole

48) ts52: Move R3 Ts52 Froggy

49) ZackStack: Sacrifice Y2 Froggy
Move B1 Froggy Ts52
Move B2 Froggy Ts52

50) ts52: Trade B2 Y2 Oscar



16919)
Started: 2010.7.20, Ended: 2011.2.25
Participants: ZackStack (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) ZackStack: Homeworld R1 B3 G3
	ZackStack: Here we go again :-)  Have a good game!

3) rootbier: Build G1 Rootbier
	rootbier: I think you mean - good luck not boning yourself with some foolish oversight :P Thanks :) Maybe this will be the time.

4) ZackStack: Build G1 Zackstack
	ZackStack: My main tactic is to have my opponent make foolish oversights... I hardly ever discourage it :-)

5) rootbier: Trade G1 B1 Rootbier
	rootbier: I am sure you have many accommodating opponents.

6) ZackStack: Trade G1 B1 Zackstack

7) rootbier: B B2 Rootbier
	ZackStack: I return my fair share of the particular favor :-)

8) ZackStack: Build B2 Zackstack
	rootbier: Going by your record, "fair" is the operative and very flexibly defineable word in that sentence :D
	ZackStack: <chuckle> 

9) rootbier: Discover B2 Rootbier G3 Tango

10) ZackStack: Trade B2 Y2 Zackstack

11) rootbier: Discover B1 Rootbier Y3 Quasi

12) ZackStack: Discover B1 Zackstack G2 Cash

13) rootbier: Build B2 Tango

14) ZackStack: Build Y1 Zackstack
	rootbier: I used to love that movie. When I was but a simple teen.
	ZackStack: I was sure that's where you were going after you named the first system :-)

15) rootbier: Build G1 Rootbier
	rootbier: Not necessarily but it was a possibility.

16) ZackStack: Move Y1 Zackstack Cash

17) rootbier: Trade B2 Y2 Tango

18) ZackStack: Build B2 Cash
	ZackStack: There. That feels less like going backwards :-)

19) rootbier: Build B2 Tango

20) ZackStack: Trade B2 R2 Cash

21) rootbier: Discover B2 Tango G2 Gabriel

22) ZackStack: Move R2 Cash Tango

23) rootbier: Move Y2 Tango Gabriel

24) ZackStack: Attack B2 Tango

25) rootbier: Discover B1 Quasi G1 Raymond

26) ZackStack: Build R1 Tango
	rootbier: OMG F ME - I have always always always read the attack rule incorrectly and this is the FIRST time I have ever encountered it in contradiction to my reading. (I have even taught it incorrectly to a couple people ...and I think I might like mine better)

I've always played that you could not attack ANY ship in a system if you didn't have size equal to or greater than their largest...
 ...in other words-- that the mere presence of my B3 would be enough to protect my 2s at Tango.

I checked the old print-out I originally learned from and I must have misread it from the very beginning. And yet.... huh... how have I been playing so long without that happening before.

I feel so confused and lost now. How many games have I thrown away by not attacking smaller ships? How many times have I left myself needlessly exposed? What do I tell the people I have taught. OMG. UGH.

I have to absorb this before I can go further.
	ZackStack: Ouch. I hate when that sort of thing happens.  My moment was during my first game on SDG when I realized you couldn't build ships of any color!  Up to that point I felt blue ships/stars were pretty useless...  Feel free to undo your response in light of your new knowledge!
	rootbier: Ha hah. Aren't you the friendliest competitor around. My only justification is ... my friend and I were just so completely perplexed while trying to learn the game off of this piece of paper... something was bound to go wrong.

We knew we couldn't trade up - and didn't see how always having to build the smallest available pieces (obivously 1s if you interpret the rules the wrong way) ever got us anything larger.

Anyway - I feel rather dumb but actually like my interpretation of attack (it's never led to a disappointing game before) ... whatever. Onward and thank you.

27) rootbier: Trade B2 R2 Gabriel
	rootbier: I sleep now.
	ZackStack: Its a rare game where someone sneaks a smaller ship under a large to steal other ships so I'm not suprised you haven't had it happen before!  I might get a nap if both girls sleep at the same time... ;-)

28) ZackStack: Trade R1 G1 Tango
	ZackStack: Thank you for the competitor compliment as well.  I certainly would have given your moves back in person... so why not on here!

29) rootbier: Build Y1 Gabriel

30) ZackStack: Build G2 Zackstack

31) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build R1 Gabriel
Build B2 Raymond

32) ZackStack: Sacrifice G3 Zackstack
Build G3 Zackstack
Build B2 Tango
Build B3 Cash

33) rootbier: Sacrifice Y2 Gabriel
Move B1 Raymond Cash
Move B2 Raymond Cash
Catastrophe Cash B

34) ZackStack: Sacrifice G3 Zackstack
Build G1 Zackstack
Build G3 Zackstack
Build R1 Tango



16866)
Variants: "Hard time"
Started: 2010.7.20, Ended: 2010.9.4
Participants: Jesse (S), rootbier (N)
Winner: Jesse

1) rootbier: Homeworld B1 Y2 G3
	rootbier: I promise to try not to time out on this one :P

2) Jesse: Homeworld Y1 B3 G3

3) rootbier: Build G1 Rootbier

4) Jesse: Build G1 Jesse

5) rootbier: Trade G1 Y1 Rootbier

6) Jesse: Trade G1 Y1 Jesse

7) rootbier: Build Y2 Rootbier

8) Jesse: Build Y2 Jesse

9) rootbier: Discover Y1 Rootbier G3 Skade

10) Jesse: Discover Y2 Jesse G2 Hippo

11) rootbier: Build Y3 Rootbier

12) Jesse: Build Y3 Hippo

13) rootbier: Trade Y2 R2 Rootbier

14) Jesse: Trade Y1 R1 Jesse

15) rootbier: Discover Y3 Rootbier B3 Plane

16) Jesse: Discover Y3 Hippo B3 Croc

17) rootbier: Build R1 Rootbier

18) Jesse: Build R1 Jesse

19) rootbier: Move R2 Rootbier Skade

20) Jesse: Move R1 Jesse Hippo

21) rootbier: Build R2 Rootbier

22) Jesse: Build R2 Jesse

23) rootbier: Move Y3 Plane Hippo

24) Jesse: Sacrifice Y2 Hippo
Move R1 Hippo Croc
Discover R2 Jesse G2 Antel

25) rootbier: Build R3 Skade

26) Jesse: Build R3 Antel

27) rootbier: Build R3 Skade

28) Jesse: Build G1 Jesse
	rootbier: Calculated. Calculte.
	rootbier: Calculated. Calculate.

29) rootbier: Move R3 Skade Hippo

30) Jesse: Trade G1 B1 Jesse
	rootbier: I still can't keep a good sense of continuity playing HW here. What was I actually thinking last time? Don't know... my brain is made of strange putties lately.

31) rootbier: Sacrifice Y3 Hippo
Move R2 Skade Antel
Move R1 Rootbier Skade
Move R1 Skade Antel
Catastrophe Antel R

32) Jesse: Build G1 Jesse

33) rootbier: Build G1 Rootbier

34) Jesse: Discover G1 Jesse Y2 Phan

35) rootbier: Discover G1 Rootbier B3 Balm

36) Jesse: Move G1 Phan Croc

37) rootbier: Discover R3 Skade B2 Reflux

38) Jesse: Build G1 Jesse



16681)
Started: 2010.7.21, Ended: 2010.8.20
Participants: scottobear (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) scottobear: Homeworld R2 B1 G3
	TwoShort: 
	TwoShort: 
	TwoShort: Howdy.  I'm on vacation deep in the land of not much internet.  I'm happy to play, but don't expect very frequent moves until next week.
	scottobear: no worries! take all the time you like - I enjoy leisurely games :)

3) TwoShort: Build G1 Twoshort

4) scottobear: Build G1 Scottobear

5) TwoShort: Trade G1 Y1 Twoshort

6) scottobear: Trade G1 Y1 Scottobear

7) TwoShort: Build G1 Twoshort

8) scottobear: Build G1 Scottobear

9) TwoShort: Build G1 Twoshort

10) scottobear: Build G2 Scottobear

11) TwoShort: Discover G1 Twoshort G2 Greenzilla



16928)
Started: 2010.7.21, Ended: 2010.10.29
Participants: ts52 (S), scottobear (N)
Winner: ts52

1) scottobear: Homeworld R2 B3 G3

2) ts52: Homeworld Y1 B2 G3

3) scottobear: Build G1 Scottobear
	ts52: Have a good game.
	scottobear: thanks! a long time since I've played! :D

4) ts52: Build G1 Ts52

5) scottobear: Trade G1 Y1 Scottobear

6) ts52: Trade G1 Y1 Ts52

7) scottobear: Discover Y1 Scottobear G1 Boog

8) ts52: Discover Y1 Ts52 G3 Kermit

9) scottobear: Build G1 Scottobear

10) ts52: Build Y2 Kermit

11) scottobear: Build Y2 Boog

12) ts52: Build G1 Ts52



16774)
Started: 2010.7.21, Ended: 2010.9.23
Participants: Mandrel (S), scottobear (N)
Winner: Mandrel

1) scottobear: Homeworld B2 R1 G3

2) Mandrel: H B2 R3 G3

3) scottobear: Build G1 Scottobear
	Mandrel: Have a good game.
	scottobear: thank you! I'm new, but look forward to learning some strategy. :)

4) Mandrel: B G1 Mandrel
	Mandrel: Cool, i've been playing a fair bit recently, but still barely past the basics strategy-wise.

5) scottobear: Trade G1 Y1 Scottobear

6) Mandrel: T G1 Y1 Mandrel



16884)
Started: 2010.7.21, Ended: 2012.2.27
Participants: scottobear (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) scottobear: Homeworld R2 B1 G3
	rootbier: Thanks for grabbing the challenge. Good luck.
	scottobear: Thanks! I'm still a tenderfoot at this... hope you have fun too!
	scottobear: Thanks! I'm still a tenderfoot at this... hope you have fun too!

3) rootbier: Build G1 Rootbier
	rootbier: Should I call out things that strike me as mistakes/poor choices? First one was your build with respect to mine. Taking the same small star - I will be able to take that remaining b1 before you -- which will give me early access to larger ships. You will be stuck building up through the small ships of another color while I build 2s and even 3s.

I can show you how that goes or you can undo and just switch the sizes on your two stars.
	rootbier: Well... onward then.

4) scottobear: Build G1 Scottobear
	scottobear: Sorry I missed that note until now - I look forward to any hints or tricks!

5) rootbier: Trade G1 B1 Rootbier

6) scottobear: Trade G1 Y1 Scottobear

7) rootbier: Build B2 Rootbier

8) scottobear: Build G1 Scottobear

9) rootbier: Discover B1 Rootbier G3 Slake



16920)
Started: 2010.7.21, Ended: 2011.12.28
Participants: dethdukk (S), scottobear (N)
Winner: dethdukk

1) scottobear: Homeworld B2 R1 G3

2) dethdukk: Homeworld R3 B1 G3



16960)
Started: 2010.7.21, Ended: 2010.8.20
Participants: TwoShort (S), scottobear (N)
Winner: TwoShort

1) scottobear: Homeworld R2 B1 G3

2) TwoShort: Homeworld B1 G3 B3 *

3) scottobear: Build G1 Scottobear

4) TwoShort: Build B1 Twoshort

5) scottobear: Trade G1 Y1 Scottobear

6) TwoShort: Trade B3 Y3 Twoshort

7) scottobear: Build G1 Scottobear

8) TwoShort: Build B2 Twoshort

9) scottobear: Build G1 Scottobear

10) TwoShort: Discover B2 Twoshort G2 Grogar

11) scottobear: Discover Y1 Scottobear R3 Warzone

12) TwoShort: Build B2 Twoshort



16682)
Variants: "Hard time"
Started: 2010.7.21, Ended: 2010.7.23
Participants: dlwillson (S), brikwars560 (N)
Winner: dlwillson

1) brikwars560: Pass
	brikwars560: hi

2) dlwillson: H B3 Y2 G3

	dlwillson: Hello? Are you there?


16972)
Variants: "Unrated"
Started: 2010.7.22, Ended: 2010.10.27
Participants: riddick (S), johannz (N), enochroot (E)
Winner: johannz

1) johannz: Homeworld B1 Y3 G3

2) enochroot: Homeworld B2 Y1 G3

3) riddick: Homeworld B3 Y2 G3

4) johannz: Build G1 Johannz
	johannz: build g1 johannz

5) enochroot: Build G1 Enochroot

6) riddick: Build G1 Riddick
	johannz: New user accidentally clicked the "Page Admin" button. He has been chastised :) 

7) johannz: Discover G1 Johannz G2 Teleflora

8) enochroot: Build G1 Enochroot



16973)
Started: 2010.7.22, Ended: 2010.7.23
Participants: Lurch (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

2) Lurch: Homeworld Y2 B1 G3
	dlwillson: Dude, you are amazingly fast.

3) dlwillson: Build G1 Dlwillson

4) Lurch: Build G1 Lurch

5) dlwillson: T G1 B1 Dlwillson

6) Lurch: Discover G1 Lurch Y3 Alphacentauri

7) dlwillson: Build B1 Dlwillson
	dlwillson: I sure like a fast game.

8) Lurch: Build G1 Lurch

9) dlwillson: Discover B1 Dlwillson B2 Brooder
	Lurch: I concur. 

10) Lurch: Trade G1 R1 Lurch

11) dlwillson: Build B2 Dlwillson

12) Lurch: Discover R1 Lurch B3 Beta

13) dlwillson: Discover B2 Dlwillson B2 Skulker

14) Lurch: Trade R1 G1 Beta

15) dlwillson: Build B3 Dlwillson

16) Lurch: Build G1 Beta

17) dlwillson: Sacrifice B2 Skulker
Trade G3 Y3 Dlwillson
Trade B3 R3 Dlwillson
	Lurch: good night
	dlwillson: 'Night. Think I've got you in this one, Lurch. Three or so moves, maybe. Depends...

18) Lurch: Trade G1 Y1 Beta

19) dlwillson: S Y3 Dlwillson
M R3 Dlwillson Brooder
M R3 Brooder Beta
M R3 Beta Lurch

20) Lurch: Build G1 Lurch

21) dlwillson: A G3 Lurch

22) Lurch: Move Y1 Beta Lurch

23) dlwillson: Sacrifice R3 Lurch
Attack Y1 Lurch
Attack G1 Lurch
Pass
	dlwillson: I can put in my turns from my phone, but I can't chat from it, which is why I've been so quiet.

That was the fastest I've ever played a game on SDG, and I've played many here! Usually, it's a turn or two per day. Some players it's days per turn.

Do you want to try a handicap in the next game? I could start out with a small ship or all blue or something.

I HAVE played a lot of Homeworlds...
	Lurch: Yes, I think a handicap would make it more balanced.
	dlwillson: OK, let's do another one. Go to Challenges and pick up my standing challenge.

I'll go all-blue, which should be a Hell of a good handicap. I have to start with a trade to grow, and can't move until I trade again.

Lesson from this game:

Never let the other guy lock you out of a color, take the last small or medium if you must, but you can't let the other guy keep a monopoly.



16962)
Started: 2010.7.22, Ended: 2010.7.29
Participants: Lurch (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) Lurch: Homeworld B3 Y1 G3
	rootbier: Welcome to the site and the game. Have you ever played it before/offline?

3) rootbier: Build G1 Rootbier

4) Lurch: Build G1 Lurch

5) rootbier: Trade G1 Y1 Rootbier

6) Lurch: Trade G1 B1 Lurch

7) rootbier: Build Y1 Rootbier

8) Lurch: Build B1 Lurch

9) rootbier: Discover Y1 Rootbier G3 Bamam
	Lurch: I have played once offline with dlwilson.  I'm a total noob.

10) Lurch: Discover B1 Lurch G2 Alpha

11) rootbier: Sacrifice G3 Rootbier
Build Y2 Bamam
Build Y2 Bamam
Build Y3 Rootbier
	rootbier: we all were at some point. feel free to ask questions. right now - you're in a little trouble because i am already going to mostly lock you out of yellow. and from there it gets ugly. you could do the same to me with blue - but blue isn't nearly as valuable as yellow.
	rootbier: you understand that you can't build another blue there right now ... i'd be able to call catastrophe and wipe them all out. so you need to move at least once (like i just did) before building more blue. you can build green but that doesn't get you to larger ships so fast. you can't really just trade your big to yellow - cuz then you'll have no green... the whole game is baby steps :)

except for sacrifices :D

12) Lurch: Build B2 Alpha
	Lurch: My plan is to build it and trade it before you could call a catastrophe :)
	rootbier: it doesn't work that way. i can call it right now and you lose all your blue - including your star. you can undo or i can teach you the painful lesson.
	rootbier: ;)
	Lurch: I guess I don't understand.  I can change my ship in one move but I don't see how you can get a blue into my home world in one move.  You still need to discover a size 2 star, move to my home world and build or trade to get a blue ship.
	rootbier: I don't need to be there. I don't need to be the CAUSE of the overpopulation. I just need to see that there are four of the same color in a system and put in the command. Means you even have to control your own population/growth.

I made a similar mistake when I was starting and paid dearly for it. 
	Lurch: dough, I see what you mean now.

13) rootbier: Trade Y3 B3 Rootbier

14) Lurch: Move G3 Lurch Alpha

15) rootbier: Discover Y2 Bamam G2 Plat

16) Lurch: Trade G3 Y3 Alpha

17) rootbier: Trade Y1 G1 Rootbier

18) Lurch: Trade B1 G1 Lurch

19) rootbier: Build B1 Rootbier

20) Lurch: Sacrifice Y3 Alpha
Move B1 Alpha Bamam
Move B1 Bamam Rootbier
Move B2 Alpha Bamam
Catastrophe Rootbier B

21) rootbier: Build Y1 Plat

22) Lurch: Trade B2 R2 Bamam

23) rootbier: Sacrifice Y1 Bamam
Move Y2 Bamam Plat

24) Lurch: Build G1 Lurch

25) rootbier: Build G2 Rootbier
	rootbier: seemed like a good idea but you have effectively locked yourself out of yellows and will be sitting pretty still for a while.

26) Lurch: Trade G1 B1 Lurch

27) rootbier: Discover Y2 Plat G1 Ooger

28) Lurch: Build G2 Lurch

29) rootbier: Sacrifice G2 Rootbier
Build Y1 Plat
Build Y3 Ooger

30) Lurch: Discover B1 Lurch G2 Beta

31) rootbier: Build Y3 Ooger

32) Lurch: Move G1 Lurch Rootbier

33) rootbier: Sacrifice Y3 Ooger
Move Y3 Ooger Rootbier
Discover Y2 Ooger B3 Cathe
Move Y1 Plat Cathe

34) Lurch: Build G1 Rootbier

35) rootbier: Build G3 Rootbier
Catastrophe Rootbier G

36) Lurch: Build G1 Lurch

37) rootbier: Trade Y1 B1 Cathe

38) Lurch: Trade B1 Y1 Beta

39) rootbier: Move B1 Cathe Rootbier

40) Lurch: Build Y3 Beta

41) rootbier: Trade Y3 R3 Rootbier

42) Lurch: Move Y3 Beta Bamam
	rootbier: Let me help you along there.
	Lurch: That is not exactly what I was going for but thanks :)

43) rootbier: Build Y3 Plat
	rootbier: I didn't imagine it was ;)

44) Lurch: Build Y3 Bamam

45) rootbier: Move Y3 Plat Lurch

46) Lurch: Sacrifice Y3 Bamam
Move Y3 Bamam Plat
Move Y1 Beta Bamam
Move Y1 Bamam Plat
Catastrophe Plat Y

47) rootbier: Sacrifice R3 Rootbier
Attack G1 Lurch
Attack G2 Lurch
Pass

	Lurch: Thanks, I think that my take away from this game is not to give up a size 3 ship in your homeworld for early gains.
	rootbier: Yeah. Having a three at home is pretty crucial. If I have to go without for a turn -- okay I will -- but unless I have LOTS of yellow to spare I will always (try to) have a big ship within one easy step of home. Blah blah and blah.

And watch what you lose on cats - you may hurt the other guy bad (you did) - but you can easily end up screwing yourself over in the process (you did).


16969)
Variants: "Hard time"
Started: 2010.7.23, Ended: 2010.7.25
Participants: dlwillson (S), Lurch (N)
Winner: Lurch

1) Lurch: Homeworld Y1 B2 G3

2) dlwillson: Homeworld B3 B1 B3 *

3) Lurch: Build G1 Lurch

4) dlwillson: Trade B3 G3 Dlwillson

5) Lurch: Trade G1 B1 Lurch

6) dlwillson: B G1 Dlwillson

7) Lurch: Discover B1 Lurch G3 Beta

8) dlwillson: T G1 Y1 Dlwillson

9) Lurch: Build B1 Beta

10) dlwillson: B Y1 Dlwillson

11) Lurch: Build B2 Beta

12) dlwillson: B Y2 Dlwillson

13) Lurch: Trade B2 Y2 Beta

14) dlwillson: D Y2 Dlwillson B2 Gamma

15) Lurch: Build Y2 Beta

16) dlwillson: B Y3 Dlwillson

17) Lurch: Sacrifice Y2 Beta
Move B1 Beta Gamma
Move B1 Beta Gamma

18) dlwillson: T Y1 R1 Dlwillson

19) Lurch: Sacrifice Y2 Beta
Move B1 Gamma Dlwillson
Move B1 Gamma Dlwillson
Catastrophe Dlwillson B



16981)
Variants: "Hard time"
Started: 2010.7.24, Ended: 2010.7.31
Participants: AdamBadura (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld B3 Y2 G3

2) AdamBadura: Homeworld G3 B2 R3

3) Uglyfoot: Build G1 Uglyfoot

4) AdamBadura: Build R1 Adambadura

5) Uglyfoot: Trade G1 R1 Uglyfoot

6) AdamBadura: Trade R1 Y1 Adambadura

7) Uglyfoot: Build G1 Uglyfoot

8) AdamBadura: Build Y1 Adambadura

9) Uglyfoot: Discover G1 Uglyfoot B1 Tart

10) AdamBadura: Build R1 Adambadura

11) Uglyfoot: Build G1 Uglyfoot

12) AdamBadura: Move R1 Adambadura Tart

13) Uglyfoot: Sacrifice R1 Uglyfoot
Attack R1 Tart

14) AdamBadura: Build R1 Adambadura

15) Uglyfoot: Trade G1 Y1 Uglyfoot

16) AdamBadura: Trade Y1 G1 Adambadura

17) Uglyfoot: Build G1 Tart

18) AdamBadura: Build Y1 Adambadura

19) Uglyfoot: Build Y2 Uglyfoot

20) AdamBadura: Discover G1 Adambadura R1 Outpost

21) Uglyfoot: Move Y2 Uglyfoot Outpost

22) AdamBadura: Build G2 Outpost

23) Uglyfoot: Attack G2 Outpost

24) AdamBadura: Sacrifice Y1 Adambadura
Discover G1 Outpost Y3 Lastresort

25) Uglyfoot: Build G2 Uglyfoot

26) AdamBadura: Discover R1 Adambadura Y1 Ontheway

27) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G3 Uglyfoot
Build G3 Outpost

28) AdamBadura: Build R2 Adambadura

29) Uglyfoot: Sacrifice Y1 Uglyfoot
Move G1 Tart Adambadura

30) AdamBadura: Move G1 Lastresort Ontheway

31) Uglyfoot: Sacrifice G2 Uglyfoot
Build G2 Adambadura
Build R2 Tart

32) AdamBadura: Build R2 Ontheway

33) Uglyfoot: Sacrifice Y2 Outpost
Move R1 Tart Adambadura
Move R2 Tart Adambadura
Catastrophe Adambadura R

34) AdamBadura: Build Y1 Adambadura

35) Uglyfoot: Trade G3 R3 Uglyfoot
	AdamBadura: Oh... I havn't seen that. I knew I was going to lose but it will come quicker than I though...

36) AdamBadura: Build G3 Ontheway

37) Uglyfoot: Sacrifice R3 Uglyfoot
Attack Y1 Adambadura
Attack Y1 Adambadura
Pass



16362)
Started: 2010.7.25, Ended: 2012.3.6
Participants: the_luggage (S), rootbier (N), Teo (E)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) Teo: Homeworld B2 Y3 G3

3) the_luggage: Homeworld B1 Y3 G3

4) rootbier: Build G1 Rootbier
	rootbier: OMG amazing! It's a LARS!

5) Teo: Build G1 Teo

6) the_luggage: Build G1 The_luggage

7) rootbier: Trade G1 B1 Rootbier

8) Teo: Trade G1 Y1 Teo

9) the_luggage: Discover G1 The_luggage B2 Discworld
	Teo: Ohhhh Yeah !

10) rootbier: Build B1 Rootbier

11) Teo: Build G1 Teo

12) the_luggage: Build G1 Discworld

13) rootbier: Discover B1 Rootbier G3 Skerrd

14) Teo: Trade G1 R1 Teo

15) the_luggage: Trade G1 Y1 Discworld

16) rootbier: Sacrifice G3 Rootbier
Build B2 Skerrd
Build B2 Skerrd
Build B3 Rootbier

17) Teo: Build Y1 Teo
	Teo: Sorry I'm a bit late !



16974)
Started: 2010.7.25, Ended: 2010.7.31
Participants: rootbier (S), Tank_7 (N)
Winner: rootbier

1) Tank_7: Homeworld G2 R1 B3

2) rootbier: Homeworld B1 Y3 G3

3) Tank_7: Build B1 Tank_7

4) rootbier: Build G1 Rootbier

5) Tank_7: Trade B3 Y3 Tank_7
	rootbier: Welcome to the site and the game. Have you ever played before/offline?
	Tank_7: I have played offline before, its nice to have this site I see!

6) rootbier: Trade G1 B1 Rootbier

7) Tank_7: Build B2 Tank_7
	rootbier: played a lot or a little?

8) rootbier: Discover B1 Rootbier G2 Achio

9) Tank_7: Discover B1 Tank_7 G3 Nidulon

10) rootbier: Build G1 Rootbier
	Tank_7: played just a little, under 10 solid games

11) Tank_7: Build B2 Nidulon

12) rootbier: Trade G1 Y1 Rootbier

13) Tank_7: Trade B1 Y1 Nidulon

14) rootbier: Build G1 Rootbier

15) Tank_7: Build B1 Nidulon

16) rootbier: Build G1 Rootbier

17) Tank_7: Trade B2 G2 Nidulon

18) rootbier: Discover G1 Rootbier B2 Palace

19) Tank_7: Trade B2 Y2 Tank_7

20) rootbier: Build B2 Achio

21) Tank_7: Build B2 Nidulon

22) rootbier: Build G1 Palace

23) Tank_7: Sacrifice B1 Nidulon
Trade Y3 G3 Tank_7

24) rootbier: Trade B1 R1 Achio
	Tank_7: I'm an idiot!

25) Tank_7: Trade G2 R2 Nidulon

26) rootbier: Sacrifice G3 Rootbier
Build G2 Palace
Build G3 Rootbier
Build B1 Achio

27) Tank_7: Move R2 Nidulon Palace

28) rootbier: Sacrifice R1 Achio
Attack R2 Palace

29) Tank_7: Build B1 Nidulon

30) rootbier: Move Y1 Rootbier Achio

31) Tank_7: Discover B2 Nidulon Y2 Kamu

32) rootbier: Discover B2 Achio R3 Azel

33) Tank_7: Build B3 Nidulon

34) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build B3 Azel
Build B3 Achio

35) Tank_7: Trade B1 R1 Nidulon

36) rootbier: Sacrifice B2 Azel
Trade G3 Y3 Rootbier
Trade G1 R1 Palace

37) Tank_7: Sacrifice Y2 Tank_7
Move B3 Nidulon Tank_7
Discover G3 Tank_7 R3 Canopus

38) rootbier: Sacrifice Y3 Rootbier
Move B3 Achio Azel
Move B3 Azel Tank_7
Move B3 Azel Tank_7

39) Tank_7: Sacrifice G3 Canopus
Build B1 Tank_7
Build B2 Tank_7
Build R2 Nidulon

40) rootbier: Pass
Catastrophe Tank_7 B



16987)
Started: 2010.7.25, Ended: 2011.3.23
Participants: rootbier (S), MagicJohn (N)
Winner: rootbier

1) MagicJohn: Homeworld G2 Y1 B3

2) rootbier: Homeworld B1 Y3 G3

3) MagicJohn: Build B1 Magicjohn

4) rootbier: Build G1 Rootbier

5) MagicJohn: Trade B3 G3 Magicjohn

6) rootbier: Trade G1 B1 Rootbier

7) MagicJohn: Build G1 Magicjohn

8) rootbier: Build B2 Rootbier

9) MagicJohn: Discover G1 Magicjohn Y3 Dune

10) rootbier: Discover B2 Rootbier G2 Nude

11) MagicJohn: Discover B1 Magicjohn G3 Theshire
	MagicJohn: Sorry about the wait. One of my generals is being openly critical of my policies. I've had to fire him.

12) rootbier: Build B2 Rootbier
	rootbier: "fire"

13) MagicJohn: Build G1 Magicjohn

14) rootbier: Discover B2 Rootbier Y2 Helmet

15) MagicJohn: Move G1 Magicjohn Theshire

16) rootbier: Sacrifice G3 Rootbier
Build B2 Nude
Build B3 Helmet
Build B3 Rootbier
	MagicJohn: I keep having to squirm out of situations that I created. Annoying....... Very annoying.
	rootbier: ? Don't panic man. Count moves if you have to. I doubt I have put you in any serious danger yet.

If you're talking about always being at the edge of overpopulation... that's part of the game yeah.

17) MagicJohn: Build B3 Theshire

18) rootbier: Sacrifice B2 Helmet
Trade B3 G3 Rootbier
Trade B2 Y2 Nude
	MagicJohn: Panic,,,,no.... Grinding my teeth.... probably.....   I am just at a point where my current awareness of game variables totally exceeds my ability to juggle them.  Patience with that situation has never been my forte'.

19) MagicJohn: Trade B3 Y3 Theshire

20) rootbier: Sacrifice Y2 Nude
Move B3 Helmet Dune
Move B3 Dune Magicjohn

21) MagicJohn: Sacrifice B1 Theshire
Trade G3 R3 Magicjohn
	rootbier: Hi!

22) rootbier: Sacrifice G3 Rootbier
Build B1 Magicjohn
Build B2 Magicjohn
Build B2 Nude
	MagicJohn: My wife must be issuing invitations behind my back again. Just in time for dinner.  We're just having rootbier floats.

23) MagicJohn: Attack B3 Magicjohn
	rootbier: Blueberries!
	MagicJohn: I need a rules interpretation. I submitted the action of sacrificing my r3 and turning your blue ships in magicjohn. The game refuses my move and says that I must own a ship in my home system at the end of my turn. At the end of my turn, wouldn't I own three "blueberries" in magicjohn?   

24) rootbier: Trade B2 G2 Nude
	MagicJohn: Apparently the program likes this move, so I will trundle on. I'm still puzzled why the other move was disallowed.
	rootbier: Sacrifice moves happen in exact order. You can not sacrifice your red because it is your ONLY ship there - you would lose the moment it was gone. Furthermore - you would need a ship to attack with. If you sacrificed it you would have no ship to there to take your three by-the-rules attack actions with. Imagining that you had another smaller ship there - if you sacrificed the large red one - you would then have three attack moves using that smaller ship and would not be able to attack my larger ship.

Now I am just trying to figure out why I did what I did.

25) MagicJohn: Attack B2 Magicjohn

26) rootbier: Sacrifice G2 Nude
Build B2 Magicjohn
Build B3 Rootbier
Catastrophe Magicjohn B
	MagicJohn: No doubt giving me small fires to put out while you build an empire.  PS.... Thanks for the clear explanation although, in some instances, I prefer my "magic thinking" to logic.  : )
	rootbier: Taking those ships one at a time and not trading them off blue --- with green in your system -- that doesn't help you. Just wastes your turns.

27) MagicJohn: Build R1 Magicjohn
	rootbier: I am SO bad at remembering my plans from one move to the next and I almost never bother to use the notebook.

28) rootbier: Build B1 Nude
	rootbier: That feels much better :)

P.S. No empire plans. Maybe I just hoped to catch you sleeping. Which I didn't. And then I did.
	MagicJohn: No more dinner invitations.....
	MagicJohn: Oh!...... So if I stall long enough between moves your armies may become prone to memory-based strategic anomalies....

29) MagicJohn: Discover R1 Magicjohn B3 Loci
	rootbier: Sorry. What? Huh?

30) rootbier: Trade B3 R3 Rootbier

31) MagicJohn: Build R1 Magicjohn

32) rootbier: Build B2 Nude

33) MagicJohn: Move G1 Theshire Nude

34) rootbier: Trade B2 Y2 Nude

35) MagicJohn: Build G1 Dune

36) rootbier: Build B2 Nude

37) MagicJohn: Sacrifice Y3 Theshire
Move G1 Dune Nude
Move G1 Dune Nude
Pass
Catastrophe Nude Green

38) rootbier: Trade B1 G1 Rootbier

39) MagicJohn: Trade R1 G1 Loci
	rootbier: You need a plan man. Or at least you need to know some possible plans to move towards/how to be a threat.

What's your general thought process on all this at this point?

40) rootbier: Build G1 Rootbier
	MagicJohn: I am having trouble building or trading for blue ships.  I was considering dropping my dune ships into nude and blowing up the system.  That would make some blue ships available and limit your travel for the time being.  I was also trying to limit your travel by limiting the number of Y3's available to you although the afore-mentioned tactic would free them up.  
	rootbier: You're having trouble getting blue because I am controlling it. You can move to blues fairly easily - but yeah - it doesn't get done what I think you're looking for.

You're clearly going for the system. It's a great thing to consider and it's yours at the cost of that big yellow. Any slower than that it won't work so well. It could well be worth the cost if you think you'll take some of my control away. 

Remember that I will have the next move in that "redefined" world (three systems would disappear at once). Consider your state after - my state after - and the Stash's state after. If you have trouble visualizing - make the move and I can lay off taking my own. Give you the chance to look at it and decide if you like it. Give you time to undo.

You've definitely had the advantage since my failed blue invasion. Press it. Push me and limit me.

41) MagicJohn: Move R3 Magicjohn Loci
	MagicJohn: Still thinking about this. You will probably trade your red for a green and I will have to scramble to keep up. I also sacrificed material for a minor positional advantage.
	rootbier: Do you want me to wait while you consider it? Just let me know when to press on.
	MagicJohn: Still cogitating......
	rootbier: ...
	MagicJohn: ............ Wife hit rough health time. Priorities and all.  Go with the inputted move.
	rootbier: Oof... very sorry to hear that.
Something chronic or a new thing?

I think your move was fine.

42) rootbier: Trade G1 Y1 Rootbier
	MagicJohn: Chronic problem suddenly got a lot worse....

43) MagicJohn: Build R1 Loci

44) rootbier: Build Y1 Rootbier
	rootbier: Sorry to hear. I don't pray to anything - but I hope you guys have better times ahead.

45) MagicJohn: Trade R3 G3 Loci

46) rootbier: Discover Y1 Rootbier Y2 Bamama

47) MagicJohn: Build R1 Loci

48) rootbier: Build Y2 Rootbier

49) MagicJohn: Trade G3 Y3 Loci

50) rootbier: Discover Y1 Bamama G3 Bleak

51) MagicJohn: Build Y2 Loci

52) rootbier: Discover Y1 Rootbier G2 Glowb

53) MagicJohn: Trade Y3 G3 Loci

54) rootbier: Build Y2 Bleak

55) MagicJohn: Build Y3 Loci

56) rootbier: Sacrifice Y2 Rootbier
Move Y2 Bleak Magicjohn
Move Y1 Bleak Magicjohn

57) MagicJohn: Build R2 Magicjohn

58) rootbier: Sacrifice R3 Rootbier
Attack R2 Magicjohn
Attack R1 Magicjohn
Pass
	MagicJohn: Wife's in hospital...  I'll play when I can but priorities and all.....

	MagicJohn: Please ignore last gibberish.  I suspect I should have moved a G3 to MagicJohn or sacrificed a Y3 and moved in an armada so you could not capture everything.....?
	rootbier: Thanks for the welcome.

Hope you and yours are doing better/well. It's been an odd half-year.

And you're right ... I can't capture a 2 with a 1.


16896)
Variants: "Hard time"
Started: 2010.7.27, Ended: 2010.8.14
Participants: SilentTitan (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 R1 G3

2) SilentTitan: Homeworld Y2 G3 B3

3) dlwillson: Build G1 Dlwillson

4) SilentTitan: Build B1 Silenttitan

5) dlwillson: B G1 Dlwillson

6) SilentTitan: Discover B1 Silenttitan B1 Bluemoon

7) dlwillson: Trade G1 B1 Dlwillson

8) SilentTitan: Trade B1 G1 Bluemoon

9) dlwillson: Trade G1 R1 Dlwillson

10) SilentTitan: Build G1 Bluemoon

11) dlwillson: Build R1 Dlwillson

12) SilentTitan: Trade G1 Y1 Bluemoon

13) dlwillson: B G1 Dlwillson

14) SilentTitan: Build Y1 Bluemoon

15) dlwillson: T G1 Y1 Dlwillson

16) SilentTitan: Discover Y1 Bluemoon R2 Hagar

17) dlwillson: B Y2 Dlwillson

18) SilentTitan: Discover G1 Bluemoon Y3 Yaz

19) dlwillson: Discover Y1 Dlwillson G2 Ell-bore-oom

20) SilentTitan: Build B1 Silenttitan

21) dlwillson: B B2 Dlwillson

22) SilentTitan: Trade B3 Y3 Silenttitan

23) dlwillson: B Y2 Dlwillson

24) SilentTitan: Build B2 Silenttitan

25) dlwillson: Move B2 Dlwillson Hagar

26) SilentTitan: Sacrifice G1 Yaz
Build Y3 Hagar

27) dlwillson: Build Y3 Ell-bore-oom

28) SilentTitan: Trade B2 R2 Silenttitan

29) dlwillson:
S Y2 Dlwillson
D R1 Dlwillson B2 Hellboreboom
D B2 Hagar G1 Smellodoom

30) SilentTitan: Trade Y3 G3 Silenttitan

31) dlwillson: Move Y1 Ell-bore-oom Smellodoom

32) SilentTitan: Move Y3 Hagar Smellodoom

33) dlwillson: T Y1 G1 Smellodoom

34) SilentTitan: Discover Y3 Smellodoom G2 Redonk

35) dlwillson: Build G1 Dlwillson

36) SilentTitan: Sacrifice B1 Silenttitan
Trade Y3 R3 Redonk

37) dlwillson: S G3 Dlwillson
B G2 Smellodoom
B G3 Dlwillson
B Y1 Ell-bore-oom

38) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Redonk
Build R3 Silenttitan
Build Y2 Bluemoon

39) dlwillson: S G3 Dlwillson
B R3 Hellboreboom
B G3 Dlwillson
B G3 Dlwillson

40) SilentTitan: Trade Y2 B2 Bluemoon

41) dlwillson: Sacrifice Y2 Dlwillson
Discover R1 Hellboreboom B1 Bestbuy
Move R3 Hellboreboom Bestbuy

42) SilentTitan: Sacrifice B2 Bluemoon
Trade R3 Y3 Redonk
Trade R3 B3 Silenttitan

43) dlwillson: Sacrifice Y3 Ell-bore-oom
Move B2 Smellodoom Silenttitan
Move G1 Smellodoom Silenttitan
Move R1 Bestbuy Ell-bore-oom

44) SilentTitan: Sacrifice R2 Redonk
Attack B2 Silenttitan N
Attack G1 Silenttitan N

45) dlwillson: S G3 Dlwillson
B R2 Dlwillson
B R3 Ell-bore-oom
B R3 Bestbuy

46) SilentTitan: Sacrifice G1 Silenttitan
Build Y2 Hagar

47) dlwillson: Sacrifice G3 Dlwillson
Build G1 Smellodoom
Build G3 Dlwillson
Build G3 Dlwillson

48) SilentTitan: Sacrifice Y3 Redonk
Move R2 Silenttitan Bluemoon
Move R2 Bluemoon Hagar
Move R2 Hagar Dlwillson
Catastrophe Dlwillson Red

49) dlwillson: Sacrifice Y1 Ell-bore-oom
Move R3 Bestbuy Silenttitan

50) SilentTitan: Trade Y1 R1 Bluemoon

51) dlwillson: Sacrifice R3 Ell-bore-oom
Attack B3 Silenttitan
Attack B2 Silenttitan
Pass
	SilentTitan: good game.... I figured that was the best I could do in the face of such overwhelming odds...

	dlwillson: So, about those Wednesdays?
	SilentTitan: RUSH this Wednesday


16963)
Started: 2010.7.27, Ended: 2010.7.31
Participants: mathochist (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

	dlwillson: Learn to use "My SDG" to manage your games, dude.


16964)
Started: 2010.7.27, Ended: 2010.8.25
Participants: dlwillson (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) dlwillson: Homeworld B3 Y2 G3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort
	dlwillson: Good to see you again. Hope all's well.

4) dlwillson: Build G1 Dlwillson

5) TwoShort: Trade G1 Y1 Twoshort

6) dlwillson: Trade G1 R1 Dlwillson

7) TwoShort: Build Y1 Twoshort

8) dlwillson: Build R1 Dlwillson

9) TwoShort: Build Y1 Twoshort

10) dlwillson: Discover R1 Dlwillson B1 Duct_tape

11) TwoShort: Discover Y1 Twoshort G3 Grogar

12) dlwillson: B G1 Dlwillson

13) TwoShort: Build Y2 Twoshort

14) dlwillson: Sacrifice G3 Dlwillson
Build R2 Duct_tape
Build R2 Duct_tape
Build R2 Dlwillson

15) TwoShort: Build Y2 Grogar

16) dlwillson: Build R3 Dlwillson

17) TwoShort: Build Y3 Grogar

18) dlwillson: D R3 Dlwillson B1 Wd40

19) TwoShort: Sacrifice Y3 Grogar
Discover Y1 Twoshort Y3 Flip
Discover Y1 Twoshort Y3 Flap
Discover Y2 Twoshort Y3 Yelly

20) dlwillson: B R3 Dlwillson

21) TwoShort: Build G1 Twoshort

22) dlwillson: Trade R2 G2 Duct_tape

23) TwoShort: Trade G1 B1 Twoshort

24) dlwillson: T R2 B2 Dlwillson

25) TwoShort: Build B2 Twoshort

26) dlwillson: B B3 Dlwillson

27) TwoShort: Move Y2 Grogar Twoshort

28) dlwillson: D B3 Dlwillson G1 Pliers

29) TwoShort: Discover B2 Twoshort B3 Bluestar

30) dlwillson: Discover B2 Dlwillson G1 Bfh

31) TwoShort: Discover B1 Twoshort G3 Groundhog

32) dlwillson:
B G2 Dlwillson

33) TwoShort: Build G2 Twoshort
	TwoShort: When I think I can definitely win a game, I like to calculate the maximum number of moves my opponent can hold me off for.  It's usually 3 or 4; one game recently was notable because it was 6.

So I'm sorry to say, I think I've got you here.  But if it's any consolation, this is a really cool game:  Unless I'm mistaken, I can force victory, but it will take 23 moves!

34) dlwillson: B R2 Dlwillson
	dlwillson: So, is there any way for me to have recovered after you popped the Y3 to control all the Y?
	TwoShort: I'm not entirely sure, but probably not.  When I decided to do it I figured to be sure I could maneuver from here to victory without giving you a yellow I needed control of 3 blue, and second green ship.  Since then I realized  I also two non-blue-non-yellow 3-point stars.  I still can't figure out for sure if you could have denied me any of those in ways I couldn't overcome, but it looked pretty good...

35) TwoShort: Move G2 Twoshort Flip

36) dlwillson: Move R2 Dlwillson Pliers

37) TwoShort: Move Y1 Flip Twoshort

38) dlwillson: Build R2 Dlwillson

39) TwoShort: Sacrifice G2 Flip
Build Y3 Grogar
Build G2 Twoshort
	dlwillson: 23 moves is a lot... :-)
	dlwillson: I don't suppose it'll take that long. I see all sorts of ways to accelerate my demise.

40) dlwillson: Build R3 Duct_tape

41) TwoShort: Move G2 Twoshort Yelly

42) dlwillson: Sacrifice B2 Bfh
Trade R1 G1 Duct_tape
Trade R2 B2 Dlwillson
	dlwillson: I can't really move very much. Not even to retreat. So, if you invaded my 2-pip system with a 3-pip, I wouldn't be able to do anything to you, or get away, just as an example. Lesson from this game: TwoShort will work very hard to lock a fellow out of yellow, and knows how to use the advantage, once gained. Corollary: Don't get locked out of yellow.

43) TwoShort: Discover Y2 Yelly R1 Roger

44) dlwillson: Build R2 Dlwillson
	TwoShort: Without red, I can't do much to attack until I can cause catastrophes, so I don't want to make contact until I can finish you.  But now that you mention it, controlling a 1-point star probably saves me a turn or two.
  But yeah, getting locked out of yellow is pretty certainly bad.  Sometimes the other guy can't get enough non-yellow stuff without giving one up.

45) TwoShort: Sacrifice G2 Yelly
Build Y3 Roger
Build G2 Twoshort

46) dlwillson: Pass

47) TwoShort: Move Y2 Roger Bluestar

48) dlwillson: Pass
	TwoShort: The r1 star helps a lot... 7 more moves I think.

49) TwoShort: Move B2 Bluestar Roger

50) dlwillson: Pass

51) TwoShort: Sacrifice Y3 Roger
Move B1 Groundhog Roger
Move B1 Roger Dlwillson
Move B2 Roger Dlwillson
Catastrophe Dlwillson Blue
	TwoShort: Or 2...

52) dlwillson: Trade B3 Y3 Pliers
	dlwillson: Ah, my problem is always insufficient attention to detail. I didn't realize that the cat blue would leave you ready for the cat yellow. Figured I had a turn or two to move. Oh well.

53) TwoShort: Sacrifice Y3 Grogar
Move Y1 Grogar Dlwillson
Move Y1 Flap Dlwillson
Move Y2 Bluestar Dlwillson
Catastrophe Dlwillson Yellow
	dlwillson: Good game. I learned.
	TwoShort: Thanks for the game!



16979)
Variants: "Hard time"
Started: 2010.7.28, Ended: 2010.8.17
Participants: dlwillson (S), shmil1 (N)
Winner: dlwillson

1) shmil1: Homeworld R3 B1 G3

2) dlwillson: H G3 Y2 B3

3) shmil1: Build G1 Shmil1

4) dlwillson: Build B1 Dlwillson

5) shmil1: Build G1 Shmil1

6) dlwillson: Build B1 Dlwillson

7) shmil1: Trade G1 Y1 Shmil1

8) dlwillson: D B1 Dlwillson G1 Nearquat

9) shmil1: Discover G1 Shmil1 Y2 Zluta

10) dlwillson: Trade B3 G3 Dlwillson

11) shmil1: Move G1 Zluta Nearquat

12) dlwillson: Sacrifice G3 Dlwillson
Build B2 Nearquat
Build B2 Nearquat
Build B2 Dlwillson

13) shmil1: Build G1 Nearquat

14) dlwillson: B B3 Dlwillson

15) shmil1: Trade G3 B3 Shmil1

16) dlwillson: T B2 R2 Nearquat

17) shmil1: Build G2 Nearquat
Catastrophe Nearquat Green

18) dlwillson: D B1 Dlwillson G1 Plan_b

19) shmil1: Trade Y1 G1 Shmil1

20) dlwillson: D B2 Dlwillson G1 Expansion

21) shmil1: Build G2 Shmil1

22) dlwillson: B B1 Dlwillson

23) shmil1: Build B2 Shmil1

24) dlwillson: Build B2 Expansion

25) shmil1: Build G2 Shmil1

26) dlwillson: Build B3 Plan_b

27) shmil1: Trade B2 Y2 Shmil1

28) dlwillson: T B3 Y3 Plan_b

29) shmil1: Discover B3 Shmil1 Y2 Slunce

30) dlwillson: Trade B3 R3 Dlwillson

31) shmil1: Move B3 Slunce Expansion

32) dlwillson: S Y3 Plan_b
M R3 Dlwillson Expansion
D R3 Expansion B2 Tempo
M R3 Tempo Shmil1

33) shmil1: Sacrifice B3 Expansion
Trade G1 R1 Shmil1
Trade G2 R2 Shmil1
Trade G2 B2 Shmil1
Catastrophe Shmil1 Red

34) dlwillson: Build B3 Dlwillson
	shmil1: wow!

35) shmil1: Move B2 Shmil1 Dlwillson

36) dlwillson: Sacrifice B1 Dlwillson
Trade B2 R2 Expansion
	dlwillson: I don't know why, but I thought I had you that turn. Nice job surviving! :-)

37) shmil1: Build B1 Dlwillson
	dlwillson: Why do I never remember that connectivity changes with planet destruction?!? Grr me...

38) dlwillson: Sacrifice R2 Expansion
Attack B2 Dlwillson
Attack B1 Dlwillson
	dlwillson: There, that should do it.

39) shmil1: Trade Y2 G2 Shmil1

40) dlwillson: Trade B2 R2 Dlwillson

41) shmil1: Build G1 Shmil1

42) dlwillson: Move B3 Dlwillson Shmil1

43) shmil1: Trade G2 Y2 Shmil1

44) dlwillson: Sacrifice R2 Dlwillson
Attack Y2 Shmil1
Attack G1 Shmil1

	dlwillson: Good game as always, Shmil1. Thank you.


16998)
Variants: "Hard time"
Started: 2010.7.28, Ended: 2010.7.30
Participants: dlwillson (S), Lurch (N)
Winner: dlwillson

1) Lurch: Homeworld Y1 B2 G3

2) dlwillson: Homeworld B3 Y2 G3

3) Lurch: Build G1 Lurch

4) dlwillson: Build G1 Dlwillson

5) Lurch: Trade G1 Y1 Lurch

6) dlwillson: Trade G1 Y1 Dlwillson

7) Lurch: Build Y2 Lurch

8) dlwillson: B Y2 Dlwillson

9) Lurch: Trade Y1 B1 Lurch

10) dlwillson: D Y1 Dlwillson B1 Change

11) Lurch: Discover B1 Lurch G3 Alpha

12) dlwillson: B G1 Dlwillson

13) Lurch: Build G1 Lurch

14) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Change
Build Y3 Change
Build Y3 Dlwillson

15) Lurch: Move Y2 Lurch Alpha

16) dlwillson: Trade Y1 R1 Change

17) Lurch: Build Y1 Alpha

18) dlwillson: D Y2 Dlwillson G1 Growth

19) Lurch: Discover Y2 Alpha B1 Beta

20) dlwillson: Sacrifice Y2 Growth
Move Y3 Change Alpha
Move Y3 Alpha Lurch

21) Lurch: Trade G3 R3 Lurch

22) dlwillson: Sacrifice R1 Change
Attack R3 Lurch

23) Lurch: Build G1 Lurch
	dlwillson: Tip #3(?): Whenever the other guy "gets a gun" (a red ship), get a gun of your own ASAP.

24) dlwillson: Sacrifice R3 Lurch
Attack G1 Lurch
Attack G1 Lurch
Pass



16986)
Started: 2010.7.30, Ended: 2010.8.11
Participants: Lurch (S), rootbier (N)
Winner: rootbier

1) rootbier: Pass

2) Lurch: Homeworld Y1 B2 G3

3) rootbier: Homeworld Y1 G3 Y3 *

4) Lurch: Build G1 Lurch

5) rootbier: Build Y1 Rootbier

6) Lurch: Trade G3 Y3 Lurch

7) rootbier: Discover Y1 Rootbier G2 Bates

8) Lurch: Build Y2 Lurch

9) rootbier: Build Y2 Bates

10) Lurch: Discover Y2 Lurch G3 Alpha

11) rootbier: Discover Y1 Bates B3 Worth

12) Lurch: Build Y2 Alpha

13) rootbier: Trade Y1 B1 Worth

14) Lurch: Build G1 Lurch
	rootbier: I had to try that again. I feel there has to be some way to make that kind of early color lock work... but maybe I am just too hopeful. Or maybe only with certain colors.

15) rootbier: Move Y2 Bates Worth

16) Lurch: Trade G1 B1 Lurch

17) rootbier: Sacrifice B1 Worth
Trade Y3 B3 Rootbier

18) Lurch: Move B1 Lurch Alpha

19) rootbier: Build B1 Rootbier

20) Lurch: Build B1 Alpha

21) rootbier: Trade B1 R1 Rootbier

22) Lurch: Trade Y2 R2 Alpha

23) rootbier: Build R1 Rootbier

24) Lurch: Build R1 Alpha

25) rootbier: Discover R1 Rootbier G2 Flak

26) Lurch: Discover B1 Alpha G2 Beta

27) rootbier: Build R2 Flak

28) Lurch: Move R2 Alpha Beta

29) rootbier: Move Y2 Worth Flak

30) Lurch: Build Y1 Alpha

31) rootbier: Build Y2 Flak

32) Lurch: Build Y3 Alpha

33) rootbier: Move Y2 Flak Alpha
Catastrophe Alpha Y

34) Lurch: Trade R2 Y2 Beta
	rootbier: Watch your limits, good sir.

35) rootbier: Move R2 Flak Alpha

36) Lurch: Trade Y2 R2 Beta

37) rootbier: Attack B1 Alpha
	Lurch: I thought you would be more concerned with my Homeworld.  But I guess it was an easy and low cost move for you.

38) Lurch: Build R2 Beta

39) rootbier: Build R3 Flak
	rootbier: Low cost and now for whatever reason you traded a ship and traded it back. I'd say I've had a good couple rounds.

40) Lurch: Trade R2 Y2 Beta

41) rootbier: Discover R3 Flak G3 Intro

42) Lurch: Build R2 Beta

43) rootbier: Build R3 Rootbier

44) Lurch: Build R3 Alpha

45) rootbier: Sacrifice R1 Rootbier
Attack R1 Alpha

46) Lurch: Attack B1 Alpha

47) rootbier: Build R1 Alpha
Catastrophe Alpha R

48) Lurch: Build Y1 Beta

49) rootbier: Move R1 Flak Alpha

50) Lurch: Build G1 Lurch
	rootbier: I don't need to trade when I can build.

51) rootbier: Build R1 Alpha
	Lurch: I figured if you were going to cause a catastrophe at least I would still have the b1

52) Lurch: Trade G1 R1 Lurch
	rootbier: Of course - but was there really nothing more effective at that moment?

53) rootbier: Build Y2 Flak

54) Lurch: Discover G1 Lurch B3 Gama

55) rootbier: Sacrifice Y2 Flak
Move R1 Alpha Beta
Move R1 Alpha Beta
Catastrophe Beta R

56) Lurch: Move Y1 Beta Alpha

57) rootbier: Move Y2 Flak Intro

58) Lurch: Build Y2 Beta

59) rootbier: Build Y3 Intro

60) Lurch: Build Y3 Alpha

61) rootbier: Sacrifice Y2 Intro
Move R3 Intro Lurch
Move Y3 Intro Lurch

62) Lurch: Attack R3 Lurch

63) rootbier: Sacrifice R3 Rootbier
Attack R3 Lurch
Attack Y3 Lurch
Attack R1 Lurch



17002)
Variants: "Hard time"
Started: 2010.7.30, Ended: 2010.8.31
Participants: Lurch (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

2) Lurch: Homeworld Y1 B2 G3

3) dlwillson: Build G1 Dlwillson

4) Lurch: Build G1 Lurch

5) dlwillson: T G1 R1 Dlwillson

6) Lurch: Trade G1 R1 Lurch

7) dlwillson: B G1 Dlwillson

8) Lurch: Build G1 Lurch

9) dlwillson:
T G1 B1 Dlwillson

10) Lurch: Trade G1 Y1 Lurch

11) dlwillson: B G1 Dlwillson

12) Lurch: Build Y2 Lurch

13) dlwillson: T G3 Y3 Dlwillson

14) Lurch: Discover Y2 Lurch G3 Alpha

15) dlwillson: Build Y2 Dlwillson

16) Lurch: Trade Y1 B1 Lurch

17) dlwillson: Discover Y2 Dlwillson G2 Fungus

18) Lurch: Move B1 Lurch Alpha

19) dlwillson: B G1 Dlwillson

20) Lurch: Build B1 Alpha

21) dlwillson: M B1 Dlwillson Fungus

22) Lurch: Discover B1 Alpha G2 Beta

23) dlwillson: D G1 Dlwillson B2 Phosphor

24) Lurch: Build B2 Beta

25) dlwillson: B B3 Fungus

26) Lurch: Build B3 Alpha

27) dlwillson: Trade B3 G3 Fungus

28) Lurch: Build B3 Beta

29) dlwillson: S Y2 Fungus
M B1 Fungus Alpha
M B1 Alpha Beta
C Beta B

30) Lurch: Build B1 Alpha

31) dlwillson: Build G1 Fungus

32) Lurch: Build G2 Lurch

33) dlwillson: S G3 Fungus
B G2 Phosphor
B G3 Dlwillson
B Y1 Dlwillson

34) Lurch: Discover B3 Alpha Y2 Beta

35) dlwillson: Sacrifice Y1 Dlwillson
Discover G1 Fungus B3 Fluor

36) Lurch: Discover G2 Lurch Y3 Gamma

37) dlwillson: Sacrifice G3 Dlwillson
Build G2 Fluor
Build G3 Dlwillson
Build Y1 Dlwillson

38) Lurch: Move G2 Gamma Beta

39) dlwillson: M Y3 Dlwillson Phosphor
	dlwillson: Actually, you're doing a lot better this game. Rather than moving your G2 to a green planet and risking a catastrophe with supernova, consider sac'ing the G2 to monopolize blue. Or, start trading your blues for other things you might want.
	dlwillson: catastrophe with supernova is bad, even if I have to give up a battleship to do it.

40) Lurch: Move B1 Alpha Beta
	Lurch: Lurch: Patiently waiting...
	dlwillson: When the green bank is low, consider leaving a little green near your G3, so you can rebuild your G3 from it after a sacrifice.

41) dlwillson: T G1 B1 Phosphor
	dlwillson: Like that. I had two "extra" builds. The G2 build was needed to get me back to my G3, but I have a good place for it. Then, I could build a second R or a second Y. Before building a second Y, I made sure there wasn't an easy way for you to build both remaining Y.

42) Lurch: Build B2 Alpha
	dlwillson: ... or cat Y in my home system. I have the three Y, but you don't have an extra Y to throw.

43) dlwillson: Discover B1 Phosphor Y3 Lumen

44) Lurch: Trade B3 R3 Beta

45) dlwillson: T G1 R1 Fluor

46) Lurch: Build B3 Beta

47) dlwillson: Build R2 Fluor

48) Lurch: Trade B3 Y3 Beta
	dlwillson: I did that move to prevent you from sac'ing your Y2 to put both blues in and supernova the system, destroying my Y3. I'd rather have traded one of the greens in fluor for red to get another red spot. Next turn I'll probably do that. Gosh, you have a lot of blue, and I have ~none~.  Hm. How can you take advantage of that?  Maybe you could trade your B3 for something tasty. I can't build it, and trading for it in my home system would slow me down. I might move a ship to it. Anyway, it's a thought.

49) dlwillson: Sacrifice G1 Dlwillson
Build B3 Lumen

50) Lurch: Trade Y3 R3 Beta

51) dlwillson: Build G1 Dlwillson

52) Lurch: Build R2 Lurch
	dlwillson: Sorry I'm taking so long lately... Been busy/distracted.
	Lurch: t b3 y3 beta

53) dlwillson: Trade B1 G1 Lumen
	Lurch: 
	Lurch: I didn't mean for that to be a comment.

54) Lurch: Sacrifice Y2 Alpha
Move R3 Beta Dlwillson
Move R3 Beta Dlwillson
	dlwillson: So, I guess I can build it, I just have to be willing to sacrifice.

55) dlwillson: Sacrifice G3 Dlwillson
Build R2 Dlwillson
Build G1 Fluor
Build G3 Dlwillson
Catastrophe Dlwillson R
	Lurch: Well there go my plans for world domination

56) Lurch: Build B1 Beta
	dlwillson: OK, explain. To me, your first move looked much better than your second.

57) dlwillson: Trade Y1 R1 Dlwillson
	dlwillson: Again, I build a small green next to the big green anytime I can safely do so, so that later, I can sac the big green and have a little green to rebuild it from.

58) Lurch: Trade B1 Y1 Alpha

59) dlwillson: Sacrifice Y3 Phosphor
Move R1 Fluor Lurch
Move R2 Fluor Lurch
Move B3 Lumen Lurch
Catastrophe Lurch R

60) Lurch: Move B2 Alpha Beta
	dlwillson: Huh. I didn't notice you'd moved in on me. I suppose I'd better deal with that, rather than moving in on you, as I had originally planned.

61) dlwillson: Sacrifice R1 Dlwillson
Attack G3 Lurch



17022)
Started: 2010.8.1, Ended: 2010.8.15
Participants: rootbier (S), Tank_7 (N)
Winner: Tank_7

1) Tank_7: Homeworld B1 R2 G3

2) rootbier: Homeworld Y1 B2 G3

3) Tank_7: Build G1 Tank_7

4) rootbier: Build G1 Rootbier

5) Tank_7: Build G1 Tank_7

6) rootbier: Build G2 Rootbier

7) Tank_7: Trade G1 Y1 Tank_7

8) rootbier: Trade G2 Y2 Rootbier

9) Tank_7: Discover G1 Tank_7 B3 Malfadoris

10) rootbier: Trade G1 R1 Rootbier

11) Tank_7: Trade G1 R1 Malfadoris

12) rootbier: Build G1 Rootbier

13) Tank_7: Build G1 Tank_7

14) rootbier: Move Y2 Rootbier Malfadoris

15) Tank_7: Sacrifice R1 Malfadoris
Pass

16) rootbier: Build G1 Rootbier

17) Tank_7: Trade G1 R1 Tank_7

18) rootbier: Build R1 Rootbier

19) Tank_7: Build Y1 Tank_7
	Tank_7: Man I am a really weak player.

20) rootbier: Sacrifice G1 Rootbier
Build Y2 Malfadoris
	rootbier: ? What makes you say that right now. Ask if you have questions or need advice.

21) Tank_7: Discover Y1 Tank_7 G3 Fyzan
	Tank_7: The move I undid was a build green, you could have catastrophe'd 3 of my ships and my only large ship.

22) rootbier: Build R2 Rootbier
	rootbier: Doesn't make you weak - you saw it - and responded ... oh - not so quickly. S'alright - new does not equal weak. And you can blame me for putting us in a "Cage Match" (That's what I have been calling the close quarters homestar setups:) That takes some extra getting used to. End to end with a Y2.

...so on the subject (of building things and tempting fate/disaster) are you absolutely sure you like your latest move?
	Tank_7: Ah geeze I'm overfocusing on the stash and trying to win at "ship size wars"

23) Tank_7: Build Y2 Fyzan

24) rootbier: Move R1 Rootbier Malfadoris

25) Tank_7: Move R1 Tank_7 Fyzan

26) rootbier: Sacrifice Y2 Malfadoris
Discover R1 Rootbier Y3 Pluma
Move G1 Rootbier Pluma

27) Tank_7: Build G1 Tank_7

28) rootbier: Sacrifice G3 Rootbier
Build R2 Rootbier
Build R3 Pluma
Build R3 Malfadoris
	rootbier: Malfadoris! Malfadoris! Malfadoris! That's the last time I let you name the stars :P
	Tank_7: It's from Space Empires 3 or 4 sorry :) www.malfador.com

29) Tank_7: Build R3 Fyzan

30) rootbier: Trade R2 G2 Rootbier
	rootbier: Just kidding :)

31) Tank_7: Sacrifice Y2 Fyzan
Move G3 Tank_7 Fyzan
Move G3 Fyzan Rootbier

32) rootbier: Sacrifice Y2 Malfadoris
Move G1 Pluma Rootbier
Move R1 Pluma Rootbier

33) Tank_7: Sacrifice R3 Fyzan
Attack R2 Rootbier
Attack G2 Rootbier
Attack G1 Rootbier

	Tank_7: Before I found this website I was working on my own methods of playing Homeworlds online. One method involved the popular PC game Starcraft, and the other way was a .bmp (basic windows paint file) players could exchange over e-mail or I.M.
	rootbier: Yeah - I am glad this system is here (I pretty much only play homeworlds here at this point). The "chess by mail" style definitely makes it easier to find time to play - but carries with it certain inherent drawbacks. I should use the notebook more - but when I actually do see something great it seems so clear that I always think I will remember it when I come back.

It won't let me take you out in a blaze of catastrophic kablooey. So. I will content myself with knowing I have two large red ships floating out there and eager to avenge the rootbier civilization.


17035)
Started: 2010.8.1, Ended: 2010.8.10
Participants: bhorner (S), rootbier (N)
Winner: bhorner

1) rootbier: Homeworld B1 Y2 G3

2) bhorner: Homeworld G2 B1 B3 *

3) rootbier: Build G1 Rootbier
	bhorner: This was done to me once, not sure if it will work for me.  :)
	rootbier: It can work alright with blue. I tried it with yellow recently and it failed hard.

4) bhorner: Build B1 Bhorner

5) rootbier: Trade G3 B3 Rootbier

6) bhorner: Trade B3 Y3 Bhorner

7) rootbier: Build B2 Rootbier

8) bhorner: Discover B1 Bhorner G3 Other

9) rootbier: Discover B2 Rootbier Y3 Slate

10) bhorner: Trade Y3 R3 Bhorner

11) rootbier: Build B2 Rootbier

12) bhorner: Build B2 Other

13) rootbier: Trade B3 G3 Rootbier

14) bhorner: Trade B2 Y2 Other

15) rootbier: Discover B2 Rootbier Y3 Sprout

16) bhorner: Build R1 Bhorner

17) rootbier: Trade G1 R1 Rootbier

18) bhorner: Trade R1 Y1 Bhorner

19) rootbier: Build G1 Rootbier

20) bhorner: Build R1 Bhorner

21) rootbier: Sacrifice G3 Rootbier
Build B2 Slate
Build B3 Sprout
Build G1 Rootbier

22) bhorner: Build B3 Other

23) rootbier: Move B3 Sprout Rootbier

24) bhorner: Discover R1 Bhorner B3 Tricky

25) rootbier: Trade B3 G3 Rootbier

26) bhorner: Discover B1 Other Y2 Jen
	rootbier: I need to work on my "Cage Match" games (that's what I've been calling the close home setups in my head). I think a strong red presence means a lot more in the tight quarters.

27) rootbier: Sacrifice G1 Rootbier
Build B3 Sprout
	bhorner: I usually play with at least 3 people, so this is a different experience for me.  I like the lack of politics.  I think you're probably much more aware of important aspects than I am.

28) bhorner: Trade R1 G1 Tricky

29) rootbier: Move G1 Rootbier Sprout

30) bhorner: Sacrifice G1 Tricky
Build B3 Other
	rootbier: I was expecting you to cat my blues at home. Was a good opportunity for you.

I have only played a couple 3/4 player games. Actually none of them have played through yet - with one of the four disappearing on each one (which leaves some weird ghost ships floating out there). So far they have all been pretty non-political. Are you talking about cutting deals and the like? I have been trying to stay away from that and as far as I can tell the same is true for my opponents. There is of course some amount of it in there no matter what. Like... if I move in this third ship - will the next guy throw in a fourth so we can be rid of those 3s there. Blah blah.

I would like to play more larger ones. Mmm.

31) rootbier: Trade B2 R2 Sprout
	bhorner: The politics comes in with the alignment cards...  "Are you evil?", "Are you good?"  I don't know how they run multiplayer on this site.  We play pretty much daily at lunch, but no one will play me 1 v 1.

I would have lost my big blue, and had little remaining offense if I cat'ed half your home world...  I may not know how to finish very well...

32) bhorner: Trade B1 G1 Jen
	rootbier: Ahh you mean in person. Ok yeah. I think I would totally skip that and just play Sinister or last man standing.

You would have still had your R3 - and I would be very far from getting another 3. With the short distances I think you could have given me some real trouble. Once the other guy is 3less you've got good chances.

33) rootbier: Move R2 Sprout Jen

34) bhorner: Discover G1 Jen Y3 Jenny
	bhorner: I didn't want to give it away, but I just did what I'd been planning to do instead of cat'ing your homeworld.  You could have stopped me if you'd moved a ship there.
	rootbier: I'm not sure I see the one more 3 does for you that having me completely WITHOUT a 3 wouldn't have done. You're not in position to really threaten me with a blue cat problem invasion and  all I have to do to stop you from coming in hard with your two 3s is trade one of my B2s to R2.

Maybe I'm missing something. Suppose we'll find out.

35) rootbier: Move R2 Jen Other
	bhorner: I was wracking my brain, and couldn't see a way out for you.  The trade to r2 solved the problem.  :)

36) bhorner: Discover Y2 Other G2 Runaway

37) rootbier: Move B2 Slate Runaway

38) bhorner: Discover Y2 Runaway G3 Runtoward

39) rootbier: Trade B3 R3 Sprout

40) bhorner: Trade B3 R3 Other

41) rootbier: Build R1 Other

42) bhorner: Sacrifice Y1 Bhorner
Move R3 Other Runaway

43) rootbier: Sacrifice B2 Runaway
Trade R2 Y2 Other
Trade R1 G1 Rootbier

44) bhorner: Build G2 Jenny

45) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build R1 Other
Build R1 Sprout

46) bhorner: Sacrifice Y2 Runtoward
Move G2 Jenny Rootbier
Move G1 Jenny Rootbier
Catastrophe Rootbier Green

	rootbier: I suppose that's what smelly old lithuanian surprise house guests will do - make you not see the simple threats in front of you. I am very very ashamed of myself for paying so little attention. Set up the rematch and watch out!
	bhorner: sorry I didn't see the new chat until just now...  you had smelly old lithuanian surprise house guests???  That seems like a major disadvantage.  :)  I'll set up the rematch right now.


17038)
Started: 2010.8.1, Ended: 2010.8.18
Participants: rootbier (S), dlwillson (N)
Winner: rootbier

1) dlwillson: H B3 Y1 G3

2) rootbier: Homeworld B1 Y2 G3

3) dlwillson: B G1 Dlwillson

4) rootbier: Build G1 Rootbier

5) dlwillson: Trade G1 Y1 Dlwillson

6) rootbier: Trade G1 Y1 Rootbier

7) dlwillson: B Y2 Dlwillson

8) rootbier: Build Y2 Rootbier

9) dlwillson: D Y1 Dlwillson B2 Ebay

10) rootbier: Discover Y1 Rootbier G3 Obol

11) dlwillson: Move Y1 Ebay Obol

12) rootbier: Build G1 Rootbier

13) dlwillson: Move Y1 Obol Rootbier

14) rootbier: Build Y3 Obol
	dlwillson: Oh, why not? I have no idea how this'll turn out, but let's try it. :-)

15) dlwillson: Trade Y2 G2 Dlwillson
	dlwillson: That was not the out-of-scale, dramatic, and self-destructive response I was hoping for...  Now, I have to recover. Dang. :-)

16) rootbier: Sacrifice Y2 Rootbier
Discover Y1 Obol B2 Ench
Move Y3 Obol Ench
	rootbier: Yeah - it's a little too early for freak out here.

17) dlwillson: Sacrifice G2 Dlwillson
Build Y2 Rootbier
Build G1 Dlwillson

18) rootbier: Trade G1 R1 Rootbier

19) dlwillson: Sacrifice G1 Dlwillson
Build Y2 Rootbier
Catastrophe Rootbier Y
	dlwillson: How 'bout NOW?! Are you freaking out NOW!? ... :-) No, huh?
	rootbier: Not really, no.

20) rootbier: Move Y3 Ench Dlwillson

21) dlwillson: Trade G3 R3 Dlwillson
	dlwillson: Drat.

22) rootbier: Sacrifice R1 Rootbier
Attack R3 Dlwillson
	rootbier: Sorry.
	dlwillson: Nah, good fun game. How 'bout a ladder match? I seem to be right next to you now, and the three guys ahead of you haven't signed in for over a month...  :-/

	rootbier: yeah. start us up. otherwise we could just take their spots by challenging them until they reach the force limit :P


17036)
Started: 2010.8.1, Ended: 2010.8.7
Participants: rootbier (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld G2 B1 R3

2) rootbier: Homeworld Y1 B3 G3

3) AdamBadura: Build R1 Adambadura

4) rootbier: Build G1 Rootbier

5) AdamBadura: Trade R1 Y1 Adambadura

6) rootbier: Trade G1 Y1 Rootbier

7) AdamBadura: Build Y2 Adambadura

8) rootbier: Discover Y1 Rootbier G2 Banter

9) AdamBadura: Discover Y2 Adambadura G3 Shipyard

10) rootbier: Build Y2 Banter

11) AdamBadura: Build Y2 Shipyard

12) rootbier: Build G1 Rootbier

13) AdamBadura: Build Y3 Adambadura

14) rootbier: Discover Y2 Banter B3 Udi-2w

15) AdamBadura: Move Y2 Shipyard Banter

16) rootbier: Sacrifice G1 Rootbier
Build Y3 Udi-2w

17) AdamBadura: Build Y3 Shipyard

18) rootbier: Build G1 Rootbier

19) AdamBadura: Build R1 Adambadura

20) rootbier: Trade G1 B1 Rootbier

21) AdamBadura: Sacrifice Y2 Shipyard
Move Y3 Shipyard Banter
Move Y3 Banter Rootbier

22) rootbier: Sacrifice Y3 Udi-2w
Move Y2 Udi-2w Banter
Move Y2 Banter Rootbier
Move Y1 Banter Rootbier
Catastrophe Rootbier Y

23) AdamBadura: Move Y3 Adambadura Rootbier
	rootbier: I space walked myself into that one.
	AdamBadura: What are you thinging about for so long?
	rootbier: The chaos of my life.
	AdamBadura: ;)

	rootbier: Wasn't actually ever really even the very slightest possible chance you wouldn't use the new connection. Rematch me as not a space cadet (I hope).


17033)
Variants: "Hard time"
Started: 2010.8.1, Ended: 2010.8.9
Participants: captncavern (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) captncavern: Homeworld G3 B2 R3

3) rootbier: Build G1 Rootbier

4) captncavern: Build R1 Captncavern

5) rootbier: Trade G1 B1 Rootbier

6) captncavern: Trade R1 Y1 Captncavern

7) rootbier: Build B1 Rootbier

8) captncavern: Build R1 Captncavern

9) rootbier: Discover B1 Rootbier G3 Bloke

10) captncavern: Discover R1 Captncavern Y1 Boule

11) rootbier: Sacrifice G3 Rootbier
Build B2 Bloke
Build B2 Bloke
Build B3 Rootbier

12) captncavern: Discover R1 Boule Y3 Passe

13) rootbier: Sacrifice B2 Bloke
Trade B3 G3 Rootbier
Trade B2 R2 Bloke

14) captncavern: Build Y1 Captncavern

15) rootbier: Sacrifice G3 Rootbier
Build B2 Bloke
Build B2 Bloke
Build B3 Rootbier

16) captncavern: Build R1 Captncavern

17) rootbier: Trade B2 Y2 Bloke

18) captncavern: Build Y1 Captncavern

19) rootbier: Discover B2 Bloke G1 Flake

20) captncavern: Discover Y1 Captncavern G1 Autre

21) rootbier: Build B2 Bloke

22) captncavern: Trade R3 G3 Captncavern

23) rootbier: Build Y2 Bloke

24) captncavern: Sacrifice G3 Captncavern
Build Y3 Autre
Build R1 Passe
Build R2 Captncavern

25) rootbier: Build B3 Flake

26) captncavern: Sacrifice Y1 Captncavern
Move Y3 Autre Captncavern

27) rootbier: Build B3 Flake

28) captncavern: Move R2 Captncavern Autre

29) rootbier: Sacrifice B2 Bloke
Trade B3 R3 Flake
Trade B3 Y3 Flake

30) captncavern: Discover R2 Autre B3 Caillou

31) rootbier: Build B2 Flake

32) captncavern: Move Y1 Autre Caillou

33) rootbier: Build B3 Flake

34) captncavern: Trade Y3 G3 Captncavern

35) rootbier: Sacrifice B3 Flake
Trade B2 G2 Flake
Trade B2 G2 Flake
Trade B3 R3 Rootbier

36) captncavern: Sacrifice G3 Captncavern
Build Y1 Caillou
Build Y3 Captncavern
Build R2 Caillou

37) rootbier: Sacrifice Y2 Bloke
Move Y2 Bloke Flake
Move Y2 Flake Captncavern

38) captncavern: Sacrifice Y3 Captncavern
Move R1 Passe Rootbier
Move R1 Passe Rootbier
Move R2 Caillou Rootbier

39) rootbier: Sacrifice R3 Flake
Attack R1 Captncavern
Attack Y1 Captncavern
Attack R2 Rootbier

	rootbier: you might have meant to call cat - but you can see it's too late for that to actuallt make a difference. thanks for the game.
	captncavern: Ah! I missed the fact you could attack me. I always overlook something as important as that.
You played better than I did the whole game, anyway.

	rootbier: Sorry. I tend to like giving a lot of advice - but I decided not to on ladder matches. Have to have more pure competition somewhere :) It was hard to hold my tongue at moments.
	captncavern: Don't worry, I like the game, but I know I won't ever be good at it, even with all the advice anyone could give me. There are more possibilities and interactions than my brain can take.


17034)
Started: 2010.8.2, Ended: 2010.8.8
Participants: rootbier (S), cleverpun (N)
Winner: rootbier

1) cleverpun: Homeworld Y1 B2 G3

2) rootbier: Homeworld B1 Y2 G3

3) cleverpun: Build G1 Cleverpun

4) rootbier: Build G1 Rootbier

5) cleverpun: Discover G1 Cleverpun R3 Milkyway

6) rootbier: Trade G1 Y1 Rootbier

7) cleverpun: Build G1 Cleverpun

8) rootbier: Build Y1 Rootbier

9) cleverpun: Trade G3 Y3 Cleverpun

10) rootbier: Discover Y1 Rootbier B3 Cage

11) cleverpun: Build Y2 Cleverpun

12) rootbier: Move Y1 Cage Cleverpun
Catastrophe Cleverpun Y

13) cleverpun: Build G1 Milkyway

14) rootbier: Build G2 Rootbier
	cleverpun: doh, that's what I get for going for the large yellows

15) cleverpun: Build G2 Cleverpun
	rootbier: and here i was thinking - "that's what you get for timing me out on our last game"

16) rootbier: Discover G2 Rootbier Y3 Nomin

17) cleverpun: Trade G2 R2 Cleverpun
	cleverpun: Touche. The readout kept telling me that you had passed the time limit, but perhaps I was premature regardless.
	rootbier: I was indeed out of time and beyond. Taking the win though -- that's just generally not the way we do it around here.

It's not like there is a maximum number of games you can have going and you need to clear space -- so people tend to lean towards patience.

18) rootbier: Build G2 Rootbier

19) cleverpun: Trade G1 Y1 Cleverpun
	cleverpun: Well, still being new to the system, I'll admit that it was a faux pas on my end.

If you want an admin to delete it I wouldn't object (is deleting them even possible?); a win by default isn't something to be proud of anyway.
	rootbier: No no. Just keep playing. I'll whupp you slowly and then start giving nice advice on the next one :)

20) rootbier: Move G3 Rootbier Nomin

21) cleverpun: Move R2 Cleverpun Nomin
	cleverpun: Funny, I'm usually the one doing that. Haven't been a newbie at a game in a while it seems. :D

22) rootbier: Trade G2 R2 Rootbier

23) cleverpun: Attack G2S Nomin

24) rootbier: Sacrifice R2 Rootbier
Attack R2 Nomin
Attack G2 Nomin

25) cleverpun: Sacrifice G1 Milkyway
Build Y1 Cleverpun

26) rootbier: Move G3 Nomin Cleverpun
	rootbier: Yeah. Definite n00bness on your side. Over in two.

27) cleverpun: Trade Y1 G1 Cleverpun

28) rootbier: Sacrifice R2 Nomin
Attack Y1 Cleverpun
Attack G1 Cleverpun

	rootbier: Just grab yourself a rematch from the standing challenges and I'll fill you in a bit.


16995)
Variants: "Hard time"
Started: 2010.8.2, Ended: 2010.8.5
Participants: killbyll (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R3 B2 G3



17037)
Started: 2010.8.2, Ended: 2010.11.30
Participants: SilentTitan (S), rootbier (N)
Winner: SilentTitan

1) rootbier: Homeworld B1 Y2 G3

2) SilentTitan: Homeworld R3 B2 G3

3) rootbier: Build G1 Rootbier

4) SilentTitan: Build G1 Silenttitan

5) rootbier: Trade G1 B1 Rootbier

6) SilentTitan: Trade G1 B1 Silenttitan

7) rootbier: Build B2 Rootbier

8) SilentTitan: Build B2 Silenttitan

9) rootbier: Build G1 Rootbier

10) SilentTitan: Build G1 Silenttitan

11) rootbier: Discover B1 Rootbier G3 Starve

12) SilentTitan: Trade B2 Y2 Silenttitan

13) rootbier: Trade B2 Y2 Rootbier

14) SilentTitan: Discover B1 Silenttitan G1 Burtblack

15) rootbier: Build G2 Rootbier

16) SilentTitan: Build G2 Silenttitan

17) rootbier: Build B2 Starve

18) SilentTitan: Build Y1 Silenttitan

19) rootbier: Discover G1 Rootbier B3 Tail

20) SilentTitan: Trade G1 R1 Silenttitan

21) rootbier: Sacrifice G3 Rootbier
Build G1 Rootbier
Build G2 Tail
Build G3 Rootbier

22) SilentTitan: Sacrifice Y2 Silenttitan
Move B1 Burtblack Starve
Move B1 Starve Rootbier

23) rootbier: Sacrifice G3 Rootbier
Build G1 Tail
Build G3 Rootbier
Build B2 Starve

24) SilentTitan: Trade B1 Y1 Rootbier

25) rootbier: Sacrifice B2 Starve
Trade Y2 R2 Rootbier
Trade G2 Y2 Tail

26) SilentTitan: Sacrifice Y1 Rootbier
Discover G2 Silenttitan Y1 Scamper

27) rootbier: Sacrifice Y2 Tail
Discover B1 Starve Y1 Pluma
Move G1 Tail Pluma

28) SilentTitan: Build G2 Scamper

29) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build B1 Starve
Build B2 Pluma

30) SilentTitan: Sacrifice G2 Scamper
Build G2 Silenttitan
Build Y2 Silenttitan

31) rootbier: Sacrifice G3 Rootbier
Build G3 Tail
Build B3 Pluma
Build B3 Starve

32) SilentTitan: Sacrifice Y2 Silenttitan
Move R1 Silenttitan Pluma
Discover G2 Scamper Y3 Plume

33) rootbier: Sacrifice B3 Starve
Trade G2 Y2 Rootbier
Trade B2 G2 Pluma
Trade G3 Y3 Tail

34) SilentTitan: Attack G1 Pluma North

35) rootbier: Sacrifice Y3 Tail
Move G2 Pluma Silenttitan
Move G1 Tail Pluma
Move G1 Pluma Silenttitan
Catastrophe Silenttitan G

36) SilentTitan: Move G1 Pluma Silenttitan



16997)
Started: 2010.8.4, Ended: 2010.8.15
Participants: daselva (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy

2) daselva: Homeworld G1 Y2 B3

3) TwoShort: Build G1 Twoshort

4) daselva: Build B1 Daselva

5) TwoShort: Build G1 Twoshort

6) daselva: Trade B3 G3 Daselva

7) TwoShort: Trade G3 Y3 Twoshort

8) daselva: Trade B1 R1 Daselva

9) TwoShort: Build G2 Twoshort

10) daselva: Build R1 Daselva

11) TwoShort: Discover G1 Twoshort B2 Bluonia

12) daselva: Discover R1 Daselva B3 S1

13) TwoShort: Build G2 Bluonia

14) daselva: Build R2 Daselva

15) TwoShort: Trade G2 Y2 Bluonia

16) daselva: Move R2 Daselva S1

17) TwoShort: Build G2 Bluonia

18) daselva: Trade R1 Y1 S1

19) TwoShort: Trade G2 R2 Bluonia

20) daselva: Trade R2 B2 S1

21) TwoShort: Build G2 Bluonia

22) daselva: Move B2 S1 Daselva

23) TwoShort: Move G2 Bluonia S1

24) daselva: Trade G3 Y3 Daselva

25) TwoShort: Build G2 S1

26) daselva: Build R1 Daselva

27) TwoShort: Sacrifice G2 S1
Build G2 Bluonia
Build G3 S1

28) daselva: Move R1 Daselva S1

29) TwoShort: Sacrifice G3 S1
Build G3 S1
Build G3 S1
Build R2 Bluonia

30) daselva: Build B1 Daselva

31) TwoShort: Sacrifice Y2 Bluonia
Move G3 S1 Daselva
Move G3 S1 Daselva

32) daselva: Build B1 Daselva

33) TwoShort: Sacrifice R2 Bluonia
Attack Y3 Daselva
Attack B2 Daselva

34) daselva: Build R2 Daselva

35) TwoShort: Sacrifice G3 Daselva
Build Y1 Daselva
Build Y1 Daselva
Build G3 Daselva

36) daselva: Pass

37) TwoShort: Build G3 Daselva
Catastrophe Daselva Yellow
Catastrophe Daselva Green

	TwoShort: Thanks for the game.


17053)
Variants: "Hard time"
Started: 2010.8.4, Ended: 2010.9.20
Participants: AdamBadura (S), ZackStack (N)
Winner: AdamBadura

1) ZackStack: Homeworld R1 B2 G3
	ZackStack: Thanks for the challenge!  Have a good game.

2) AdamBadura: Homeworld G1 B2 R3

3) ZackStack: Build G1 Zackstack
	AdamBadura: I think I will lose this one (considering your rank) but let us see... ;)
	ZackStack: We can only take one game at a time around here ;-)

4) AdamBadura: Build R1 Adambadura

5) ZackStack: Trade G1 R1 Zackstack

6) AdamBadura: Trade R1 Y1 Adambadura

7) ZackStack: Build G1 Zackstack

8) AdamBadura: Build R1 Adambadura

9) ZackStack: Build R2 Zackstack

10) AdamBadura: Build R2 Adambadura

11) ZackStack: Trade R2 Y2 Zackstack

12) AdamBadura: Discover R1 Adambadura G3 Shipyard

13) ZackStack: Move Y2 Zackstack Shipyard

14) AdamBadura: Trade R2 Y2 Adambadura
	ZackStack: Hmmm... I haven't played two jumps away in a while. This could get interesting :-)

15) ZackStack: Sacrifice R1 Zackstack
Attack R1 Shipyard

16) AdamBadura: Build R1 Adambadura

17) ZackStack: Build R2 Shipyard

18) AdamBadura: Discover R1 Adambadura G3 Drydocks

19) ZackStack: Build R2 Shipyard

20) AdamBadura: Move Y1 Adambadura Drydocks

21) ZackStack: Sacrifice Y2 Shipyard
Move R1 Shipyard Adambadura
Move R2 Shipyard Adambadura

22) AdamBadura: Sacrifice R3 Adambadura
Attack R1 Adambadura
Attack R2 Adambadura
Pass

23) ZackStack: Build G1 Zackstack
	ZackStack: Blowing your large seemed worth it... we'll see!
	ZackStack: To me I mean... :-)

24) AdamBadura: Build R2 Drydocks
	AdamBadura: Yes. I think you gained advantage. But I had no other choice as all other ways I could think of would give you victory rather than advantage... ;)

25) ZackStack: Trade G1 Y1 Zackstack

26) AdamBadura: Discover R1 Adambadura Y3 Outpost

27) ZackStack: Build R3 Shipyard
	ZackStack: Now I just need to find a clever way to exploit that advantage :-)

28) AdamBadura: Build R3 Adambadura

29) ZackStack: Trade G1 B1 Zackstack

30) AdamBadura: Discover R1 Drydocks Y1 Ontheway
	ZackStack: So much for taking advantage :-)

31) ZackStack: Move B1 Zackstack Shipyard

32) AdamBadura: Build R3 Drydocks

33) ZackStack: Build Y2 Zackstack

34) AdamBadura: Build Y2 Drydocks

35) ZackStack: Sacrifice Y2 Zackstack
Move Y1 Zackstack Shipyard
Move R2 Shipyard Adambadura

36) AdamBadura: Sacrifice R2 Adambadura
Attack R2 Adambadura
Pass

37) ZackStack: Build G1 Zackstack

38) AdamBadura: Build R2 Drydocks
	ZackStack: Very nice counter move!

39) ZackStack: Trade G1 B1 Zackstack
	AdamBadura: Yes. I learned that trick some time ago. But it is second time I do it in this game. I thought you had some clever plan beyond it.
	AdamBadura: We are playing too safe. I wonder how will this end... ;)

40) AdamBadura: Build Y2 Drydocks
	ZackStack: So far clever plans are overrated in this particular game.  And for some reason I saw it coming the first time but not the second :-)

41) ZackStack: Build Y3 Shipyard

42) AdamBadura: Sacrifice Y2 Drydocks
Move R2 Drydocks Zackstack
Move R2 Drydocks Zackstack

43) ZackStack: Build B1 Shipyard

44) AdamBadura: Attack B1 Zackstack
	AdamBadura: I'm going on a leave from 2010-09-04 to 2010-09-11 inclusive.

45) ZackStack: Attack R2 Zackstack
	ZackStack: Enjoy your leave!

46) AdamBadura: Move R1 Outpost Zackstack
Catastrophe Zackstack R

47) ZackStack: Build R1 Shipyard

48) AdamBadura: Sacrifice Y2 Drydocks
Move R1 Ontheway Shipyard
Move R2 Adambadura Shipyard
Catastrophe Shipyard R

	AdamBadura: What is keeping you from playing?


17066)
Variants: "Hard time"
Started: 2010.8.5, Ended: 2010.8.18
Participants: SilentTitan (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R2 G3

2) SilentTitan: Homeworld Y3 G1 B3

3) zoltar: Build G1 Zoltar
	SilentTitan: this ought to be interesting

4) SilentTitan: Build B1 Silenttitan

5) zoltar: Build G1 Zoltar

6) SilentTitan: Discover B1 Silenttitan G2 Wondertoe

7) zoltar: Trade G3 Y3 Zoltar

8) SilentTitan: Build B1 Wondertoe

9) zoltar: Build G2 Zoltar

10) SilentTitan: Build B1 Silenttitan

11) zoltar: Discover G1 Zoltar Y1 Yellowstone

12) SilentTitan: Build B2 Silenttitan

13) zoltar: Trade G2 B2 Zoltar

14) SilentTitan: Trade B2 Y2 Silenttitan

15) zoltar: Move B2 Zoltar Yellowstone

16) SilentTitan: Discover B1 Silenttitan G2 Mymy

17) zoltar: Build G2 Yellowstone

18) SilentTitan: Sacrifice Y2 Silenttitan
Discover B1 Wondertoe Y1 Riff
Discover B1 Wondertoe Y1 Raff

19) zoltar: Discover G2 Yellowstone B2 Blueridge

20) SilentTitan: Trade B3 R3 Silenttitan

21) zoltar: Build G2 Blueridge

22) SilentTitan: Build R1 Silenttitan

23) zoltar: Build G3 Zoltar

24) SilentTitan: Build B2 Mymy

25) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Yellowstone
Build B3 Yellowstone

26) SilentTitan: Trade B2 Y2 Mymy

27) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Blueridge
Build Y2 Zoltar
	SilentTitan: wow I just suck at this game ... I'm sorry for the poor play.
	zoltar: You've gotten into trouble really early somehow in this game. I think green and yellow stars in one's homeworld don't work well, and that blue/red is the best combination to use.
	SilentTitan: I think you are exactly right.

28) SilentTitan: Build Y2 Mymy

29) zoltar: Sacrifice B3 Yellowstone
Trade G3 Y3 Blueridge
Trade G2 R2 Blueridge
Trade G3 R3 Yellowstone

30) SilentTitan: Sacrifice B1 Mymy
Trade R3 B3 Silenttitan

31) zoltar: Sacrifice G3 Zoltar
Build G2 Blueridge
Build G3 Yellowstone
Build G3 Zoltar

32) SilentTitan: Build B1 Silenttitan

33) zoltar: Sacrifice Y3 Zoltar
Move G3 Yellowstone Blueridge
Move G3 Blueridge Silenttitan
Move Y3 Blueridge Silenttitan

34) SilentTitan: Attack G3 Silenttitan North

35) zoltar: Sacrifice R2 Blueridge
Attack B3 Silenttitan
Attack G3 Silenttitan

36) SilentTitan: Sacrifice Y2 Mymy
Move B1 Riff Zoltar
Move B1 Raff Zoltar

37) zoltar: Sacrifice R3 Yellowstone
Attack B1 Zoltar
Attack B1 Zoltar
Attack R1 Silenttitan

38) SilentTitan: Move Y2 Mymy Silenttitan

39) zoltar: Sacrifice G3 Zoltar
Build G2 Silenttitan
Build G3 Silenttitan
Build Y1 Silenttitan
Catastrophe Silenttitan Y
Catastrophe Silenttitan G

	zoltar: Good game.
	SilentTitan: yes... well I learned a lot ... prolly boring for you tho


17007)
Started: 2010.8.5, Ended: 2012.2.27
Participants: rootbier (S), TofuInjection (N)
Winner: rootbier

1) TofuInjection: Homeworld B2 G1 Y3

2) rootbier: Homeworld B1 Y3 G3

3) TofuInjection: Build Y1 Tofuinjection

4) rootbier: Build G1 Rootbier

5) TofuInjection: Discover Y1 Tofuinjection G3 Porkslap
	rootbier: Like the name. Welcome to the site and the game. Have you played offline?
	TofuInjection: thanks. I have a few times.  You?

6) rootbier: Build G1 Rootbier
	rootbier: I have a 5 treehouse sets - have only managed one-on-one games so far. And playing a bunch here. Still learning/honing for sure - and occasionally overlook/space-out really obvious direct threats.

7) TofuInjection: Build Y1 Porkslap

8) rootbier: Trade G1 Y1 Rootbier

9) TofuInjection: Build Y2 Tofuinjection

10) rootbier: Discover Y1 Rootbier G2 Curran

11) TofuInjection: Trade Y2 B2 Tofuinjection

12) rootbier: Build Y2 Curran

13) TofuInjection: Move B2 Tofuinjection Porkslap

14) rootbier: Discover Y1 Curran G3 Alvin



17024)
Variants: "Unrated"
Started: 2010.8.5, Ended: 2010.8.26
Participants: daselva (S), TofuInjection (N)
Winner: daselva

1) TofuInjection: Homeworld Y3 G1 B3

2) daselva: Homeworld R1 G2 B3

3) TofuInjection: Build B1 Tofuinjection

4) daselva: Build B1 Daselva

5) TofuInjection: Discover B1 Tofuinjection G2 Porkslap

6) daselva: Trade B3 Y3 Daselva

7) TofuInjection: Build B1 Porkslap

8) daselva: Build B2 Daselva

9) TofuInjection: Build B2 Tofuinjection

10) daselva: Trade B1 G1 Daselva

11) TofuInjection: Trade B1 Y1 Porkslap

12) daselva: Discover B2 Daselva G3 S2

13) TofuInjection: Trade B3 R3 Tofuinjection

14) daselva: Build B1 S2

15) TofuInjection: Build Y1 Porkslap

16) daselva: Trade B2 Y2 S2

17) TofuInjection: Trade Y1 R1 Porkslap

18) daselva: Discover Y2 S2 G2 S3

19) TofuInjection: Build Y1 Porkslap

20) daselva: Build Y1 S3



17046)
Variants: "Hard time"
Started: 2010.8.7, Ended: 2010.8.14
Participants: TofuInjection (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B3 R2 G3

2) TofuInjection: Homeworld Y1 G2 B3

3) SilentTitan: Build G1 Silenttitan

4) TofuInjection: Build B1 Tofuinjection

5) SilentTitan: Trade G1 Y1 Silenttitan



17011)
Variants: "Hard time"
Started: 2010.8.7, Ended: 2010.8.8
Participants: TofuInjection (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3



17088)
Variants: "No undo"
Started: 2010.8.8, Ended: 2010.12.6
Participants: rootbier (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld B1 G2 R3

2) rootbier: Homeworld Y1 B3 G3

3) AdamBadura: Build R1 Adambadura

4) rootbier: Build G1 Rootbier

5) AdamBadura: Trade R1 Y1 Adambadura

6) rootbier: Trade G1 Y1 Rootbier

7) AdamBadura: Build Y2 Adambadura

8) rootbier: Build Y2 Rootbier

9) AdamBadura: Discover Y2 Adambadura G3 Shipyard

10) rootbier: Discover Y1 Rootbier G2 Drydock

11) AdamBadura: Build Y2 Adambadura

12) rootbier: Build Y3 Drydock

13) AdamBadura: Build Y3 Shipyard

14) rootbier: Build G1 Rootbier

15) AdamBadura: Sacrifice Y2 Adambadura
Move Y3 Shipyard Drydock
Move Y3 Drydock Rootbier

16) rootbier: Build Y2 Rootbier
Catastrophe Rootbier Y
	rootbier: guess i did it again. you have found my very clear weakness.

17) AdamBadura: Build R1 Adambadura
	rootbier: i must say that i find your backlash against my needing extra time on the last game (no undo/very short clock) to be more than a little off-putting. i'd go so far as to say it seems childishly vindicative.
	AdamBadura: I didn't temper with time. It was a default one. I shut off Undo indeed. Actually for no reason. Or to be more specific we decided to play so with my friends. I even actually prefer to play with Undo. But still mechanically I turned it off. Sorry for that. Next time I will try to remember that you prefer Undo.
	AdamBadura: As for your style of playing. I think you keep making a mistake of not having R technology. I prefer to have R3 ship in my homeworld. But an R1 builded later will do as well in many cases. But you have not R ship at all...

18) rootbier: Trade G1 R1 Rootbier
	rootbier: Standard clock is 3(start)/1(inc)/10(max) -- you must have accidentally bumped of the "0" at the end. It looked pushy after our previous conversation about time and thinking and life chaos. Sorry for the accusation.

And yeah I'm simply not used to no-undo -- I find it too hard to visualize certain things online.

I am in no way unclear on the way I have been screwing up. And I know how to defend myself -- used to always grab myself an r1 at home... but lately I have been shying more and more away from red. I simply don't like the color :D 
Very few people have made anything out of it - but then I think most don't start with an R3.
	rootbier: or.... not too hard to visualize ... but too easy to miss certain things.

19) AdamBadura: Move R1 Adambadura Shipyard

20) rootbier: Build G1 Rootbier

21) AdamBadura: Build Y1 Shipyard

22) rootbier: Move Y1 Drydock Rootbier

23) AdamBadura: Move Y1 Shipyard Drydock

24) rootbier: Discover Y3 Drydock G3 Flunk

25) AdamBadura: Build R1 Shipyard

26) rootbier: Build Y2 Flunk

27) AdamBadura: Build Y2 Drydock

28) rootbier: Build R2 Rootbier

29) AdamBadura: Build Y3 Adambadura

30) rootbier: Sacrifice Y3 Flunk
Move Y2 Flunk Adambadura
Move Y1 Rootbier Adambadura
Discover G1 Rootbier B2 Baoon

31) AdamBadura: Move R1 Shipyard Drydock
Catastrophe Adambadura Y
	rootbier: GAH! No undo! and I forgot to trigger my cat cuz i spent so long deciing on the non-yellow move action. I would take it as a real kindness if you would consider those yellow ships at home dead and trigger the cat yourself at the end of the turn.
	AdamBadura: OK, I will.

32) rootbier: Trade R1 Y1 Rootbier
	rootbier: Thank you kind sir.

33) AdamBadura: Build Y1 Shipyard

34) rootbier: Build Y2 Rootbier

35) AdamBadura: Move Y1 Shipyard Adambadura

36) rootbier: Discover Y1 Rootbier G1 Pip

37) AdamBadura: Build Y3 Adambadura

38) rootbier: Build Y3 Pip

39) AdamBadura: Build Y3 Shipyard

40) rootbier: Sacrifice Y2 Rootbier
Move Y3 Pip Rootbier
Discover G1 Baoon B3 Palome

41) AdamBadura: Move R1 Shipyard Pip

42) rootbier: Sacrifice G3 Rootbier
Build G1 Palome
Build G2 Palome
Build Y2 Pip

43) AdamBadura: Attack Y1 Pip

	AdamBadura: I'm going on a leave from 2010-09-04 to 2010-09-11 inclusive.
	AdamBadura: You ignored both the game and me so I forced your surrender.


17091)
Started: 2010.8.8, Ended: 2012.2.27
Participants: Galaxian (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3
	Galaxian: homeworld B2 Y1 G3
	Galaxian: Sorry, I'm new here.
	rootbier: No problem. New is fine. Have you played the game offline?

Your move is properly coded... but this is the chat area. You need to put your move in the box up at the top of the page... on the left side. You can also just use the first letters for commands. "h b2 y2 g3" is valid.

If you have never played - just ask for help. It's much more fun to teach as I go than to just play to win.

2) Galaxian: Homeworld B3 Y2 G3
	rootbier: Now it is your turn and you can build your homeworld. You probably want a home system with two different size stars for now. Get tricky later.

3) rootbier: Build G1 Rootbier
	Galaxian: Thanks!  I have played offline before, but I'm not very good at it.
	rootbier: Be aware that your choice of star sizes puts us very close. It is only two steps from your home to mine instead of the more standard three steps. 

This is okay - but it makes for a "faster" game.

Ask questions :) Or even just think out loud and I will help you talk/think through stuff or can tell you if your strategies/ways of thinking about the game seem sound.
	Galaxian: Yeah, sorry about that.  I just noticed it.
	rootbier: Do you want to go on with that or do you want to undo and choose another size star?

4) Galaxian: Build G1 Galaxian
	Galaxian: Oh.  I didn't know I could do that.  There you go.

5) rootbier: Trade G1 B1 Rootbier

6) Galaxian: Trade G1 Y1 Galaxian

7) rootbier: Build B1 Rootbier

8) Galaxian: Build G1 Galaxian

9) rootbier: Discover B1 Rootbier G3 Wamel

10) Galaxian: Build Y1 Galaxian

11) rootbier: Build B2 Wamel

12) Galaxian: Discover Y1 Galaxian G1 Alpha

13) rootbier: Build B2 Wamel

14) Galaxian: Build Y1 Alpha

15) rootbier: Build B2 Rootbier

16) Galaxian: Build Y2 Alpha

17) rootbier: Discover B1 Rootbier Y3 Stone

18) Galaxian: Build Y3 Galaxian

19) rootbier: Sacrifice G3 Rootbier
Build B3 Rootbier
Build B3 Stone
Pass

20) Galaxian: Discover Y1 Alpha Y3 Beta

21) rootbier: Discover B3 Stone G1 Prodigal



17069)
Variants: "Unrated"
Started: 2010.8.9, Ended: 2010.10.26
Participants: johannz (S), enochroot (N)
Winner: johannz

1) enochroot: Homeworld B1 Y3 G3

2) johannz: Homeworld Y1 B2 G3
	johannz: Oh, the beauty and simplicity of your opening move. It moves me to tears.
How will I ever hope to stand against you?
:)

3) enochroot: Build G1 Enochroot

4) johannz: Build G1 Johannz

5) enochroot: Trade G1 Y1 Enochroot

6) johannz: Discover G1 Johannz Y3 Prima

7) enochroot: Build Y1 Enochroot



17123)
Variants: "Hard time"
Started: 2010.8.11, Ended: 2010.8.17
Participants: captncavern (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y2 G3

2) captncavern: Homeworld B3 R1 G3
	dlwillson: Excellent! Thank you, Captain!
	dlwillson: BTW, how'd you come up with your nickname/call-sign?
	captncavern: I'm here for the games, you know ;)
My nickname comes from when I was long-haired and had a beard... like the cartoon character that's called "Capitaine Caverne" in France.

3) dlwillson: Build G1 Dlwillson

4) captncavern: Build G1 Captncavern
	dlwillson: I know Captain Caveman; I used to love that cartoon character! The gals called him Cavey Wavey when they were trying to get him to do things, and when he was buffing, he yelled, "CAP TEN CAVE MA-AAAN!"
	captncavern: That's the guy :) That used to be me... although I didn't have any girl calling me with cute names!

5) dlwillson: T G1 R1 Dlwillson

6) captncavern: Trade G1 Y1 Captncavern

7) dlwillson: Build G1 Dlwillson

8) captncavern: Build Y1 Captncavern

9) dlwillson: B R1 Dlwillson

10) captncavern: Trade Y1 B1 Captncavern

11) dlwillson: B R2 Dlwillson

12) captncavern: Build Y1 Captncavern

13) dlwillson: D R1 Dlwillson B1 Frob

14) captncavern: Build Y1 Captncavern

15) dlwillson: Sacrifice G3 Dlwillson
Build R2 Frob
Build R2 Dlwillson
Build R3 Frob

16) captncavern: Discover Y1 Captncavern G2 Bille

17) dlwillson: D R2 Dlwillson G1 Grok

18) captncavern: Discover Y1 Bille G1 Pomme

19) dlwillson: B R3 Dlwillson

20) captncavern: Build G2 Captncavern

21) dlwillson: Trade R3 Y3 Dlwillson

22) captncavern: Build Y2 Pomme

23) dlwillson: M Y3 Dlwillson Grok

24) captncavern: Sacrifice G3 Captncavern
Build Y2 Pomme
Build Y3 Captncavern
Build G2 Captncavern

25) dlwillson: B R3 Dlwillson

26) captncavern: Discover Y1 Captncavern B2 Truc

27) dlwillson: T R3 Y3 Frob

28) captncavern: Sacrifice B1 Captncavern
Trade Y2 G2 Pomme

29) dlwillson: B R3 Grok

30) captncavern: Sacrifice G2 Captncavern
Build Y2 Truc
Build G2 Captncavern

31) dlwillson: B R3 Grok

32) captncavern: Discover Y1 Truc B1 Patate

33) dlwillson: M R3 Grok Truc

34) captncavern: Sacrifice Y2 Truc
Move Y1 Pomme Dlwillson
Move Y1 Patate Dlwillson

35) dlwillson: Sacrifice Y3 Grok
Move R3 Grok Truc
Move R3 Truc Captncavern
Move R3 Truc Captncavern

36) captncavern: Trade Y1 B1 Dlwillson

37) dlwillson: Sacrifice R3 Captncavern
Attack Y3 Captncavern
Attack Y1 Dlwillson
Attack B1 Dlwillson

38) captncavern: Build G3 Captncavern
	dlwillson: I think this game is mine next turn or the turn after. If you're interested in a friendly game after this one, let me know.

39) dlwillson: Sacrifice R3 Captncavern
Attack G3 Captncavern
Attack G2 Captncavern
Attack G2 Captncavern
	captncavern: Indeed! It's been a long time since I won a game of Homeworlds... Maybe a friendly game wouldn't hurt :)

40) captncavern: Sacrifice Y2 Pomme
Discover G2 Pomme Y2 Last
Move G2 Last Captncavern
Catastrophe Captncavern G

41) dlwillson: Attack Y1 Captncavern
	captncavern: At least, I'm bringing down quite a few of your ships with me :)
Please don't mention most of them were mine only seconds before...
	dlwillson: Thanks for the fast turns, Captain. I notice you play a lot of other games here, too. May I offer a trade? You teach me your favorite non-Homeworlds game, and I'll teach you anything I might have learned about Homeworlds in a few non-rated games.
	captncavern: First, congratulation for the winning!
I'm not a very skilled teacher and I don't analyse the games I play too much, but if you want to try Mirador or Ordo... Those are the games I'm best at right now. I always have a challenge open at both of them. Mirador is a very short connection game, but it still offers interesting possibilities. In Ordo, you must reach your opponent's first line while preventing your opponent to split your pieces through capture. If any of this appeals to you...



17155)
Started: 2010.8.15, Ended: 2010.9.1
Participants: Tank_7 (S), rootbier (N)
Winner: Tank_7

1) rootbier: Homeworld B1 Y2 G3

2) Tank_7: Homeworld G3 B1 Y3

3) rootbier: Build G1 Rootbier

4) Tank_7: Build Y1 Tank_7

5) rootbier: Trade G1 B1 Rootbier

6) Tank_7: Discover Y1 Tank_7 B2 Mycon

7) rootbier: Build B2 Rootbier

8) Tank_7: Build Y1 Tank_7

9) rootbier: Discover B2 Rootbier G3 Seint
	Tank_7: you evil guy getting size 2 ships already :(
	rootbier: what lesson have you learned?

10) Tank_7: Build Y1 Tank_7
	Tank_7: Avoiding same color Size 1 homeworld stars, or, if there is such a situation then trading for that color is a high priority.

11) rootbier: Sacrifice G3 Rootbier
Build B2 Seint
Build B3 Seint
Build B3 Rootbier
	Tank_7: since it was your turn first i should have gone different homeworld like B3 G1 instead.
	Tank_7: hmm better yet never use the 2nd Size 1 of any color for anything, homeworld or ship
	Tank_7: no wait i take that back, never use the 3rd Size 1... this was 2nd and you traded for 3rd locking me out from blue
	rootbier: you seemed to be there and then you got confusing. don't use the same size 1 in your homeworld build - makes for a good freeze out.

by the same token... yeah. if someone trades and grabs the second 1 of a color - as their first trade - try to grab the third so they can't freeze you.

maybe that is hard to communicate. just look out for it in the early steps of your next few games.

12) Tank_7: Discover Y1 Tank_7 G2 Kentares

	Tank_7: are you alive my friend?


17096)
Started: 2010.8.15, Ended: 2012.2.27
Participants: rootbier (S), Hackmaster (N)
Winner: rootbier



17172)
Variants: "Unrated"
Started: 2010.8.15, Ended: 2010.8.15
Participants: mole561 (S), irisheyes (N)
Winner: irisheyes

	mole561: homeworld G2 B1 Y3


17173)
Variants: "Unrated"
Started: 2010.8.15, Ended: 2010.8.15
Participants: irisheyes (S), mole561 (N)
Winner: mole561

1) mole561: Homeworld G2 B1 Y3

2) irisheyes: Homeworld G3 B1 Y3



17177)
Variants: "Hard time"
Started: 2010.8.16, Ended: 2010.9.1
Participants: shmil1 (S), Lurch (N)
Winner: Lurch

1) Lurch: Homeworld B2 Y1 G3

2) shmil1: Homeworld R1 B2 G3

3) Lurch: Build G1 Lurch

4) shmil1: Build G1 Shmil1

5) Lurch: Trade G1 B1 Lurch

6) shmil1: Build G1 Shmil1

7) Lurch: Discover B1 Lurch G3 Alpha

8) shmil1: Trade G1 Y1 Shmil1

9) Lurch: Build B1 Alpha

10) shmil1: Trade G1 B1 Shmil1

11) Lurch: Build G1 Lurch

12) shmil1: Build G1 Shmil1

13) Lurch: Trade B1 Y1 Alpha

14) shmil1: Discover G1 Shmil1 Y3 Zluta

15) Lurch: Build Y2 Alpha

16) shmil1: Move G1 Zluta Lurch

17) Lurch: Trade G3 R3 Lurch

18) shmil1: Sacrifice G3 Shmil1
Build G1 Lurch
Build G2 Lurch
Build Y2 Shmil1
Catastrophe Lurch Green

19) Lurch: Build B1 Alpha

20) shmil1: Trade B1 G1 Shmil1

21) Lurch: Trade Y1 B1 Alpha

22) shmil1: Trade Y2 R2 Shmil1

23) Lurch: Move B1 Alpha Shmil1

24) shmil1: Attack B1 Shmil1

25) Lurch: Sacrifice Y2 Alpha
Move B1 Alpha Shmil1
Move B1 Alpha Shmil1
Catastrophe Shmil1 B

26) shmil1: Discover G1 Shmil1 Y3 Zluty

27) Lurch: Trade R3 G3 Lurch

28) shmil1: Move G1 Zluty Lurch

29) Lurch: Trade G3 R3 Lurch

30) shmil1: Discover G1 Lurch Y3 Druhazluta

31) Lurch: Trade R3 G3 Lurch

32) shmil1: Move G1 Druhazluta Lurch

33) Lurch: Trade G3 R3 Lurch
	shmil1: i did it for last time :) 
i promise ...
	shmil1: just to show you we can draw
	Lurch: Yea, I get it :-)

34) shmil1: Build G1 Lurch

35) Lurch: Attack G1 Lurch

36) shmil1: Build G1 Lurch

37) Lurch: Trade G1 B1 Lurch

38) shmil1: Trade G1 R1 Lurch

39) Lurch: Attack R1 Lurch

40) shmil1: Sacrifice R2 Shmil1
Attack B1 Lurch
Attack R1 Lurch

41) Lurch: Attack R1 Lurch

42) shmil1: Build B1 Lurch

43) Lurch: Attack G1 Lurch

44) shmil1: Trade B1 R1 Lurch

45) Lurch: Sacrifice R1 Lurch
Attack R1 Lurch

46) shmil1: Sacrifice B1 Lurch
Trade Y1 G1 Shmil1

47) Lurch: Discover G1 Lurch Y3 Alpha

48) shmil1: Build G1 Shmil1

49) Lurch: Build G2 Alpha

50) shmil1: Pass

51) Lurch: Move G2 Alpha Shmil1



17184)
Variants: "Hard time"
Started: 2010.8.17, Ended: 2010.9.23
Participants: captncavern (S), MadWuher (N)
Winner: MadWuher

1) MadWuher: H R1 B2 G3

2) captncavern: Homeworld B3 G1 R3
	captncavern: Thanks!

3) MadWuher: Build G1 Madwuher

4) captncavern: Build R1 Captncavern
	MadWuher: Haven't played for a while..... Sorry if I seem a bit rusty. Have a good game.
	captncavern: Don't worry, I'm not a good player at all... I keep losing all my games, but still have fun playing.

5) MadWuher: Trade G1 Y1 Madwuher

6) captncavern: Build R1 Captncavern

7) MadWuher: B G1 Madwuher

8) captncavern: Trade R1 Y1 Captncavern

9) MadWuher: Trade G1 R1 Madwuher

10) captncavern: Build R2 Captncavern

11) MadWuher: B R2 Madwuher

12) captncavern: Trade R1 G1 Captncavern

13) MadWuher: Discover R2 Madwuher G3 Edora

14) captncavern: Build R1 Captncavern

15) MadWuher: B R2 Madwuher

16) captncavern: Discover R1 Captncavern Y2 Mako

17) MadWuher: T R2 Y2 Madwuher
	captncavern: d r1 y2 Mako

18) captncavern: Build Y1 Captncavern
	captncavern: Wow, I'm tired... I don't know what I type, nor where I type it!

19) MadWuher: Move Y2 Madwuher Edora
	MadWuher: Lol :)

20) captncavern: Build G1 Captncavern

21) MadWuher: Build G2 Madwuher

22) captncavern: Discover R2 Captncavern G2 Chia

23) MadWuher: Discover G2 Madwuher G3 Camelot

24) captncavern: Discover R1 Mako Y3 Kazu

25) MadWuher: Build G2 Madwuher

26) captncavern: Move Y1 Captncavern Chia

27) MadWuher: M G2 Madwuher Kazu

28) captncavern: Move R1 Kazu Madwuher

29) MadWuher: S R1 Madwuher
A R1 Madwuher

30) captncavern: Discover G1 Captncavern Y2 Fumi

31) MadWuher: S G2 Camelot
B G2 Madwuher
B G3 Kazu

32) captncavern: Discover R2 Chia Y3 Mari

33) MadWuher: Sacrifice G3 Kazu
Build G3 Kazu
Build Y2 Madwuher
Build Y3 Edora

34) captncavern: Move G1 Fumi Mari

35) MadWuher: Trade Y1 B1 Madwuher

36) captncavern: Build R1 Mari

37) MadWuher: Sacrifice Y2 Edora
Discover G2 Madwuher R3 Camelot
Move R2 Edora Chia

38) captncavern: Move R1 Mari Madwuher

39) MadWuher: Sacrifice R1 Madwuher
Attack R1 Madwuher

40) captncavern: Build R1 Captncavern

41) MadWuher: A Y1 Chia

42) captncavern: Trade R1 B1 Captncavern

43) MadWuher: Move B1 Madwuher Edora

44) captncavern: Build R1 Mari

45) MadWuher: Move R1 Madwuher Edora

46) captncavern: Discover B1 Captncavern Y2 Tomo

47) MadWuher: Sacrifice G3 Kazu
Build G3 Kazu
Build R2 Edora
Build R3 Chia

48) captncavern: Build Y1 Captncavern

49) MadWuher: Sacrifice G2 Kazu
Build G2 Madwuher
Build Y2 Edora

50) captncavern: Move G1 Captncavern Tomo

51) MadWuher: M R2 Edora Tomo

52) captncavern: Move G1 Tomo Mari

53) MadWuher: A B1 Tomo

54) captncavern: Move G1 Mari Madwuher

55) MadWuher: S G2 Madwuher
B G2 Kazu
B B1 Edora

	captncavern: It won't lead anywhere good for me, so I'll let you challenge someone better...
Well played!


17180)
Variants: "Unrated"
Started: 2010.8.23, Ended: 2010.8.26
Participants: makertron (S), daselva (N)
Winner: daselva

1) daselva: Homeworld R1 B2 G3



17128)
Variants: "Hard time"
Started: 2010.8.24, Ended: 2010.8.31
Participants: zoltar (S), Lurch (N)
Winner: zoltar

1) Lurch: Homeworld B2 Y1 G3

2) zoltar: Homeworld R3 B1 G3

3) Lurch: Build G1 Lurch

4) zoltar: Build G1 Zoltar

5) Lurch: Trade G1 B1 Lurch

6) zoltar: Trade G1 Y1 Zoltar

7) Lurch: Build B1 Lurch

8) zoltar: Build Y1 Zoltar

9) Lurch: Build G1 Lurch

10) zoltar: Build Y2 Zoltar

11) Lurch: Trade G3 Y3 Lurch

12) zoltar: Discover Y1 Zoltar G2 Greenbelt

13) Lurch: Discover B1 Lurch G3 Alpha

14) zoltar: Trade Y2 B2 Zoltar

15) Lurch: Build B2 Alpha

16) zoltar: Build B3 Zoltar

17) Lurch: Build B3 Alpha

18) zoltar: Move B2 Zoltar Greenbelt

19) Lurch: Trade B2 Y2 Alpha

20) zoltar: Build Y2 Greenbelt

21) Lurch: Discover B1 Alpha G2 Beta

22) zoltar: Move B3 Zoltar Beta

23) Lurch: Move B3 Alpha Greenbelt

24) zoltar: Trade B3 R3 Beta

25) Lurch: Trade B3 R3 Greenbelt

26) zoltar: Sacrifice Y2 Greenbelt
Discover Y1 Greenbelt G3 Greengiant
Move B2 Greenbelt Greengiant

27) Lurch: Build Y2 Alpha

28) zoltar: Build Y2 Greengiant

29) Lurch: Move Y2 Alpha Greenbelt

30) zoltar: Move Y1 Greengiant Lurch

31) Lurch: Move R3 Greenbelt Greengiant

32) zoltar: Move B2 Greengiant Lurch

33) Lurch: Sacrifice Y3 Lurch
Move R3 Greengiant Lurch
Move B1 Lurch Alpha
Move B1 Alpha Greenbelt

34) zoltar: Sacrifice G3 Zoltar
Build B2 Lurch
Build B3 Lurch
Build Y3 Lurch

35) Lurch: Attack Y3 Lurch

36) zoltar: Move Y2 Greengiant Lurch
Catastrophe Lurch B
Catastrophe Lurch Y

	zoltar: Good game!


17154)
Variants: "Unrated"
Started: 2010.8.24, Ended: 2010.8.30
Participants: daselva (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) daselva: Homeworld R1 B2 G3

3) zoltar: Build G1 Zoltar

4) daselva: Build G1 Daselva

5) zoltar: Trade G1 Y1 Zoltar

6) daselva: Build G1 Daselva

7) zoltar: Build Y1 Zoltar

8) daselva: Trade G1 Y1 Daselva

9) zoltar: Build Y2 Zoltar

10) daselva: Build Y2 Daselva

11) zoltar: Discover Y1 Zoltar G1 Greenpea

12) daselva: Discover Y1 Daselva G3 S1

13) zoltar: Trade Y1 B1 Zoltar

14) daselva: Build Y1 S1

15) zoltar: Move B1 Zoltar Greenpea

16) daselva: Discover Y1 S1 B1 S2

17) zoltar: Build B1 Greenpea

18) daselva: Sacrifice G3 Daselva
Build Y2 S1
Build Y3 S2
Build Y3 Daselva

19) zoltar: Build Y3 Zoltar

20) daselva: Trade Y2 B2 Daselva

21) zoltar: Discover B1 Greenpea G3 Greengiant

22) daselva: Move B2 Daselva S1

23) zoltar: Build B3 Greengiant

24) daselva: Move B2 S1 S2

25) zoltar: Build B3 Greenpea

26) daselva: Trade Y3 R3 S2

27) zoltar: Sacrifice Y3 Zoltar
Move B1 Greenpea Greengiant
Move B1 Greengiant S2
Move B1 Greengiant S2
Catastrophe S2 B

28) daselva: Build Y1 Daselva

29) zoltar: Build Y2 Greenpea

30) daselva: Discover Y1 S1 B1 S3

31) zoltar: Trade Y1 R1 Greenpea

32) daselva: Move G1 Daselva S1

33) zoltar: Build B1 Greengiant

34) daselva: Move G1 S1 S3

35) zoltar: Trade B3 Y3 Greengiant

36) daselva: Discover Y2 S1 B1 S4

37) zoltar: Move Y3 Greengiant Daselva

38) daselva: Trade Y1 G1 Daselva

39) zoltar: Attack Y3 Daselva



17085)
Started: 2010.8.26, Ended: 2010.8.29
Participants: daselva (S), mathochist (N)
Winner: daselva



17248)
Variants: "Unrated"
Started: 2010.8.28, Ended: 2010.8.31
Participants: daselva (S), makertron (N)
Winner: daselva



17267)
Variants: "Hard time"
Started: 2010.8.28, Ended: 2010.10.15
Participants: SilentTitan (S), Subhan64 (N)
Winner: SilentTitan

1) Subhan64: Homeworld B1 G2 Y3

2) SilentTitan: Homeworld R3 B2 G3

3) Subhan64: Build Y1 Subhan64

4) SilentTitan: Build G1 Silenttitan

5) Subhan64: Trade Y1 G1 Subhan64

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Subhan64: Build G1 Subhan64

8) SilentTitan: Build G1 Silenttitan

9) Subhan64: Discover G1 Subhan64 Y3 Bigbird

10) SilentTitan: Discover G1 Silenttitan B1 Otg

11) Subhan64: Build G2 Subhan64

12) SilentTitan: Build G2 Silenttitan

13) Subhan64: Trade G2 Y2 Subhan64

14) SilentTitan: Build Y1 Silenttitan

15) Subhan64: Discover G1 Subhan64 Y3 Ernie

16) SilentTitan: Trade G2 Y2 Silenttitan

17) Subhan64: Build G2 Ernie

18) SilentTitan: Trade Y1 B1 Silenttitan

19) Subhan64: Build Y1 Subhan64

20) SilentTitan: Build B2 Silenttitan

21) Subhan64: Trade Y3 G3 Subhan64

22) SilentTitan: Move Y2 Silenttitan Otg

23) Subhan64: Trade Y2 R2 Subhan64

24) SilentTitan: Trade B2 R2 Silenttitan

25) Subhan64: Move R2 Subhan64 Bigbird

26) SilentTitan: Build B2 Silenttitan

27) Subhan64: Move R2 Bigbird Otg

28) SilentTitan: Sacrifice R2 Silenttitan
Attack R2 Otg N
Pass

29) Subhan64: Trade Y1 R1 Subhan64

30) SilentTitan: Discover B2 Silenttitan Y1 Ktf

31) Subhan64: Build G2 Subhan64

32) SilentTitan: Sacrifice Y2 Otg
Move G1 Otg Ernie
Move G1 Ernie Subhan64
Catastrophe Subhan64 Green

	Subhan64: gg, thanks!
	SilentTitan: Thank you 


17171)
Started: 2010.8.29, Ended: 2010.10.12
Participants: rootbier (S), daselva (N)
Winner: daselva

1) daselva: Homeworld R1 B2 G3

2) rootbier: Homeworld B1 Y2 G3
	daselva: hello I´m still learning...

3) daselva: Build G1 Daselva
	rootbier: learning is good. I'll be largely away the month of september. Will try to give advice when i have time.



17280)
Variants: "Hard time"
Started: 2010.8.30, Ended: 2010.10.1
Participants: agentofchaos (S), goulo (N)
Winner: goulo

1) goulo: Homeworld B3 G2 Y3
	agentofchaos: Hi there, enjoy the game. 
	goulo: Hi, have fun!

2) agentofchaos: Homeworld R1 B3 G3

3) goulo: Build Y1 Goulo

4) agentofchaos: Build G1 Agentofchaos

5) goulo: Build Y1 Goulo

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) goulo: Trade Y1 R1 Goulo

8) agentofchaos: Build G1 Agentofchaos

9) goulo: Discover Y1 Goulo G1 Smeraldeto

10) agentofchaos: Build G1 Agentofchaos

11) goulo: Build R1 Goulo

12) agentofchaos: Discover G1 Agentofchaos Y2 Dreamzone

13) goulo: Build R2 Goulo

14) agentofchaos: Build G2 Agentofchaos

15) goulo: Trade R2 G2 Goulo

16) agentofchaos: Build G3 Dreamzone

17) goulo: Build G3 Goulo

18) agentofchaos: Trade G2 R2 Agentofchaos

19) goulo: Discover G3 Goulo Y1 Citroneto

20) agentofchaos: Build Y2 Agentofchaos

21) goulo: Build Y2 Goulo

22) agentofchaos: Trade G1 B1 Agentofchaos

23) goulo: Build Y3 Smeraldeto

24) agentofchaos: Move R2 Agentofchaos Dreamzone

25) goulo: Move R1 Goulo Smeraldeto

26) agentofchaos: Build R2 Dreamzone

27) goulo: Build Y3 Goulo

28) agentofchaos: Build B1 Agentofchaos

29) goulo: Build G1 Citroneto

30) agentofchaos: Build G2 Agentofchaos

31) goulo: Trade G2 B2 Goulo

32) agentofchaos: Move B1 Agentofchaos Dreamzone

33) goulo: Build R2 Goulo

34) agentofchaos: Discover Y1 Agentofchaos B2 Kompazmor

35) goulo: Move Y3 Goulo Citroneto

36) agentofchaos: Discover R2 Dreamzone B1 Smaragdin

37) goulo: Build B2 Goulo

38) agentofchaos: Sacrifice G2 Agentofchaos
Build R3 Dreamzone
Build B3 Dreamzone

39) goulo: Move B2 Goulo Smeraldeto

40) agentofchaos: Move R2 Dreamzone Smaragdin

41) goulo: Move R2 Goulo Smaragdin

42) agentofchaos: Attack R2 Smaragdin

43) goulo: Move R1 Goulo Smaragdin
Catastrophe Smaragdin Red

44) agentofchaos: Build R1 Dreamzone

45) goulo: Build R2 Smeraldeto

46) agentofchaos: Sacrifice Y1 Kompazmor
Discover R3 Dreamzone Y1 Dethstar

47) goulo: Trade B2 R2 Goulo

48) agentofchaos: Sacrifice G3 Dreamzone
Build R2 Dreamzone
Build R3 Dethstar
Build G2 Agentofchaos

49) goulo: Sacrifice Y2 Goulo
Discover B2 Smeraldeto Y2 Citrono
Move G3 Citroneto Citrono

50) agentofchaos: Move G2 Agentofchaos Dreamzone

51) goulo: Build G2 Citrono

52) agentofchaos: Move B1 Dreamzone Dethstar

53) goulo: Build B1 Citrono

54) agentofchaos: Move B1 Agentofchaos Citrono

55) goulo: Sacrifice G3 Citrono
Build G3 Citrono
Build G3 Citroneto
Build R3 Goulo

56) agentofchaos: Move B1 Dethstar Citrono
Catastrophe Citrono B

57) goulo: Sacrifice Y3 Citroneto
Move R1 Smeraldeto Goulo
Move R1 Goulo Dethstar
Move R2 Goulo Dethstar
Catastrophe Dethstar Red

58) agentofchaos: Trade B3 Y3 Dreamzone

59) goulo: Sacrifice Y3 Goulo
Move G3 Citroneto Goulo
Move Y1 Smeraldeto Dreamzone
Move Y3 Smeraldeto Dreamzone
Catastrophe Dreamzone Y

60) agentofchaos: Build Y1 Agentofchaos

61) goulo: Sacrifice G3 Citrono
Build G1 Goulo
Build G2 Citroneto
Build G3 Citrono

62) agentofchaos: Trade Y1 R1 Agentofchaos

63) goulo: Trade R3 Y3 Goulo

64) agentofchaos: Discover Y2 Agentofchaos B2 Perdition

65) goulo: Sacrifice G1 Goulo
Build G1 Citrono

66) agentofchaos: Trade R1 Y1 Agentofchaos

67) goulo: Move G3 Citrono Agentofchaos

68) agentofchaos: Attack G3 Agentofchaos

69) goulo: Sacrifice Y3 Goulo
Move G2 Citroneto Citrono
Move G2 Citrono Agentofchaos
Move G1 Citrono Agentofchaos
Catastrophe Agentofchaos G

	agentofchaos: gg
	goulo: thanks for the game!


17298)
Variants: "Hard time"
Started: 2010.8.31, Ended: 2010.9.9
Participants: dlwillson (S), Uglyfoot (N)
Winner: dlwillson

1) Uglyfoot: Homeworld B3 Y1 G3

2) dlwillson: H B3 R2 G3

3) Uglyfoot: Build G1 Uglyfoot

4) dlwillson: Build G1 Dlwillson

5) Uglyfoot: Trade G1 Y1 Uglyfoot

6) dlwillson: T G1 Y1 Dlwillson

7) Uglyfoot: Build Y2 Uglyfoot

8) dlwillson: B Y2 Dlwillson

9) Uglyfoot: Discover Y1 Uglyfoot B2 Dogstar

10) dlwillson: Discover Y1 Dlwillson R1 Catworld

11) Uglyfoot: Build G1 Uglyfoot

12) dlwillson: Build G1 Dlwillson

13) Uglyfoot: Move G1 Uglyfoot Dogstar

14) dlwillson: M G1 Dlwillson Catworld

15) Uglyfoot: Trade Y2 R2 Uglyfoot

16) dlwillson: B Y2 Catworld

17) Uglyfoot: Build G1 Uglyfoot

18) dlwillson: B G2 Dlwillson

19) Uglyfoot: Build Y2 Dogstar

20) dlwillson: B Y3 Dlwillson

21) Uglyfoot: Discover G1 Dogstar B1 Gerbilcomet

22) dlwillson: M Y3 Dlwillson Gerbilcomet
	dlwillson: I can't think of any reason for you to have pushed up the yellow battleships, so either you made a mistake, or I'm about to get blindsided.

23) Uglyfoot: Build G2 Gerbilcomet

24) dlwillson: S G2 Dlwillson
B Y3 Gerbilcomet
Build Y3 Dlwillson

25) Uglyfoot: Sacrifice Y2 Dogstar
Move G1 Gerbilcomet Dlwillson
Move G2 Gerbilcomet Dlwillson

26) dlwillson: T G3 R3 Dlwillson

27) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Dlwillson
Build G2 Dlwillson
Build G3 Uglyfoot

28) dlwillson: B G3 Catworld
C Dlwillson G

	dlwillson: I looked at your game history and you almost never lose Homeworlds. What happened with this game?
	Uglyfoot: Perhaps you haven't look far enough.  I have played many games of this just to become a "marginal" player.  I tried something that didn't work and I will not repeat that mistake (hopefully).
	dlwillson: We can play again anytime you like. I have a standing challenge up.


17307)
Variants: "Unrated"
Started: 2010.8.31, Ended: 2010.9.22
Participants: zoltar (S), makertron (N)
Winner: zoltar



17284)
Started: 2010.9.1, Ended: 2010.9.7
Participants: rootbier (S), Tank_7 (N)
Winner: Tank_7

1) Tank_7: Homeworld G2 B1 Y3



17086)
Variants: "Hard time"
Started: 2010.9.6, Ended: 2010.9.18
Participants: dlwillson (S), daselva (N)
Winner: dlwillson

1) daselva: Homeworld R1 B2 G3

2) dlwillson: H B3 R2 G3

3) daselva: Build G1 Daselva

4) dlwillson: B G1 Dlwillson

5) daselva: Build G1 Daselva

6) dlwillson: B G2 Dlwillson

7) daselva: Trade G1 Y1 Daselva

8) dlwillson: T G2 Y2 Dlwillson

9) daselva: Discover G1 Daselva Y3 S1

10) dlwillson: Trade G1 R1 Dlwillson

11) daselva: Build G1 S1
	dlwillson: Remember to always count the bank. Be aware of what you're making available to the other person, and whether you get one, too, if they do. That G2 was a pretty nice gift and you're still stuck building ones, at least for a while.

12) dlwillson: B R1 Dlwillson

13) daselva: Trade G3 R3 Daselva

14) dlwillson: B Y1 Dlwillson

15) daselva: Move G1 S1 Daselva

16) dlwillson: D Y1 Dlwillson B1 Wm

17) daselva: Move G1 S1 Wm

18) dlwillson: M R1 Dlwillson Wm

19) daselva: Discover Y1 Daselva G3 S2

20) dlwillson: Attack G1 Wm

21) daselva: Build Y1 S2

22) dlwillson: B R2 Wm

23) daselva: Move Y1 S2 Daselva

24) dlwillson: M R2 Wm S2

25) daselva: Discover Y1 S2 G2 S3

26) dlwillson: B Y2 Wm

27) daselva: Build Y2 S3

28) dlwillson: S G3 Dlwillson
Build R2 S2
B R3 Wm
Build Y3 Dlwillson

29) daselva: Trade R3 Y3 Daselva

30) dlwillson: M Y2 Wm S3

31) daselva: Discover Y2 S3 B1 S4

32) dlwillson: Build Y3 Wm

33) daselva: Build G1 Daselva

34) dlwillson: S Y2 S3
M R2 S2 Daselva
Move R2 S2 Daselva
	dlwillson: How are you liking SDG?
	daselva: I´m liking SDG very much.I only regret that players take to much time to make their moves and so I just can´t feel the flow of games ,what makes difficult the «learning curve».I´m feeling with these 2 games that I´m finding very interesting:Homeworlds and Pikemen.Do you like others?

35) daselva: Build Y2 S3

36) dlwillson: S R3 Wm
A G1 Daselva
A G1 Daselva
A Y1 Daselva

37) daselva: Attack R2 Daselva
	dlwillson: Yeah, moves tend to go pretty slow here. One a day is about the best you can expect. Sometimes faster, sometimes slower.

There is no "flow" to a Homeworlds game, because, as they say, no plan survives contact with the enemy. You really have to look at the board every turn, especially here.

I've only tried one other game one time, here on SDG: Mirador. I liked it. Very simple concept, but a neat game, and it can be played in pen and paper.

Are you good at Pikemen? I'd be happy to join you for a round. I've played in plastic, but not on SDG.

38) dlwillson: B R3 Daselva
C Daselva R

39) daselva: Trade Y3 R3 Daselva

40) dlwillson: T Y1 B1 Daselva

41) daselva: Move Y1 S3 S4
	daselva: I´ve only played 3 games of Pikemen ;i´m learning it to.thank you for telling me about Mirador...
	daselva: «too»

42) dlwillson: B B2 Daselva

43) daselva: Sacrifice Y2 S3
Move Y1 S4 Dlwillson
Move Y2 S4 Dlwillson
Catastrophe Dlwillson Y

44) dlwillson: T G1 B1 Daselva
C Daselva B

	dlwillson: Good game! Thank you!


17313)
Started: 2010.9.9, Ended: 2010.9.15
Participants: rootbier (S), Tank_7 (N)
Winner: Tank_7

1) Tank_7: Homeworld Y2 B1 G3



17403)
Started: 2010.9.15, Ended: 2010.9.18
Participants: Tank_7 (S), rootbier (N)
Winner: Tank_7

	Tank_7: Hey how are you.. Back from your business trip yet?


17388)
Variants: "Hard time"
Started: 2010.9.15, Ended: 2010.9.28
Participants: Kermit (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3
	dlwillson: I like to do a turn or three each day. How about you?


2) Kermit: Homeworld G1 B2 Y3

3) dlwillson: B G1 Dlwillson
	dlwillson: Also, I finally have a phone that can handle SDG,so I see the turns right away, and I'll usually be able to put my response in pretty quickly. So basically, we can go as fast as you like.

4) Kermit: Build Y1 Kermit
	dlwillson: I'm strictly competitive in ladder matches, but I like to play for fun, too.
	dlwillson: And have a great game! I'll be quiet for a few moves. :-)

5) dlwillson: T G1 Y1 Dlwillson

6) Kermit: Build Y2 Kermit

7) dlwillson: B Y2 Dlwillson

8) Kermit: Discover Y2 Kermit B3 Backwater

9) dlwillson: D Y1 Dlwillson G2 Carrot

10) Kermit: Trade Y2 G2 Backwater

11) dlwillson: B Y2 Dlwillson

12) Kermit: Build G1 Backwater
	dlwillson: Hey there! How's everything?
	Kermit: reasonable

13) dlwillson: D Y2 Dlwillson Y2 Camelot

14) Kermit: Move Y1 Kermit Backwater

15) dlwillson: S G3 Dlwillson
B Y3 Dlwillson
B Y3 Carrot
Pass

16) Kermit: Move Y1 Backwater Camelot

17) dlwillson: Trade Y3 R3 Dlwillson

18) Kermit: Build Y3 Kermit

19) dlwillson: S Y2 Camelot
M Y3 Carrot Backwater
M Y3 Backwater Kermit

	dlwillson: I could be wrong, but I think that's game.
	Kermit: yep


17340)
Variants: "Hard time"
Started: 2010.9.15, Ended: 2010.10.26
Participants: Mandrel (S), Lurch (N)
Winner: Mandrel

1) Lurch: Homeworld Y1 B3 G3

2) Mandrel: Homeworld R1 B2 G3

3) Lurch: Build G1 Lurch
	Mandrel: Have a good game.

4) Mandrel: Build G1 Mandrel
	Lurch: You as well.

5) Lurch: Trade G1 Y1 Lurch

6) Mandrel: Trade G1 Y1 Mandrel

7) Lurch: Build Y2 Lurch

8) Mandrel: B Y2 Mandrel

9) Lurch: Discover Y2 Lurch B2 Alpha

10) Mandrel: D Y1 Mandrel G3 Solo

11) Lurch: Build G1 Lurch

12) Mandrel: B Y2 Solo

13) Lurch: Move G1 Lurch Alpha

14) Mandrel: B Y3 Mandrel

15) Lurch: Build Y3 Alpha

16) Mandrel: D Y3 Mandrel B3 Activity

17) Lurch: Trade Y1 R1 Lurch

18) Mandrel: Build G1 Mandrel

19) Lurch: Discover G1 Alpha Y3 Beta

20) Mandrel: Trade Y2 R2 Mandrel

21) Lurch: Build G1 Beta

22) Mandrel: T G1 Y1 Mandrel

23) Lurch: Move G1 Beta Alpha

24) Mandrel: M R2 Mandrel Beta

25) Lurch: Trade Y3 R3 Alpha

26) Mandrel: D Y3 Activity G2 Mystery

27) Lurch: Move R3 Alpha Beta

28) Mandrel: M R2 Beta Mystery

29) Lurch: Build Y2 Alpha

30) Mandrel: B Y3 Mystery

31) Lurch: Trade G1 B1 Alpha

32) Mandrel: B G1 Mandrel

33) Lurch: Build G1 Beta

34) Mandrel: Trade G3 B3 Mandrel

35) Lurch: Move B1 Alpha Beta

36) Mandrel: B G2 Mandrel

37) Lurch: Trade G1 B1 Beta

38) Mandrel: S Y3 Mystery
M Y3 Mystery Solo
M Y3 Solo Mandrel
M B3 Mandrel Solo

39) Lurch: Build B1 Beta

40) Mandrel: Build Y3 Mandrel

41) Lurch: Move B1 Beta Mandrel

42) Mandrel: B B2 Solo

43) Lurch: Move B1 Beta Mandrel

44) Mandrel: Move Y1 Solo Mystery

45) Lurch: Move B1 Beta Mandrel
Catastrophe Mandrel B

46) Mandrel: M Y1 Mandrel Mystery

47) Lurch: Build G1 Beta

48) Mandrel: Discover Y2 Solo B2 Reset

	Mandrel: Good game.


17404)
Started: 2010.9.17, Ended: 2010.10.9
Participants: Tank_7 (S), rootbier (N)
Winner: Tank_7

	Tank_7: Are you avoiding playing against me?
	rootbier: if you look up at the player list you will see that i am still on the road. i'll start this game with you if you promise not to force resign/surrender me when i run out of time.


17170)
Started: 2010.9.18, Ended: 2010.10.9
Participants: Tank_7 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	Tank_7: Hi :)
	TwoShort: Howdy.

2) Tank_7: Homeworld Y2 B1 G3

3) TwoShort: Build G1 Twoshort

4) Tank_7: Build G1 Tank_7

5) TwoShort: Trade G1 Y1 Twoshort

6) Tank_7: Trade G1 B1 Tank_7

7) TwoShort: Build G1 Twoshort

8) Tank_7: Build B1 Tank_7

9) TwoShort: Build G1 Twoshort

10) Tank_7: Discover B1 Tank_7 Y3 Plem

11) TwoShort: Discover G1 Twoshort Y2 Yolonda

12) Tank_7: Build B2 Tank_7

13) TwoShort: Build G1 Twoshort

14) Tank_7: Trade B2 G2 Tank_7

15) TwoShort: Discover G1 Twoshort G2 Grogar

16) Tank_7: Sacrifice G3 Tank_7
Build B2 Plem
Build G2 Tank_7
Build G3 Tank_7

17) TwoShort: Sacrifice G3 Twoshort
Build G3 Yolonda
Build G3 Twoshort
Build Y1 Twoshort

18) Tank_7: Trade G2 Y2 Tank_7

19) TwoShort: Discover Y1 Twoshort B2 Bonsai

20) Tank_7: Move B2 Plem Bonsai

21) TwoShort: Sacrifice G3 Yolonda
Build Y1 Bonsai
Build Y3 Bonsai
Build Y3 Twoshort

22) Tank_7: Discover G2 Tank_7 B3 Forni

23) TwoShort: Trade Y3 R3 Bonsai

24) Tank_7: Sacrifice G2 Forni
Build G2 Tank_7
Build B2 Plem

25) TwoShort: Sacrifice Y3 Twoshort
Discover R3 Bonsai R3 Gunrule
Move R3 Gunrule Tank_7
Discover G1 Yolonda Y3 Yoyodyne

26) Tank_7: Sacrifice B2 Plem
Trade B1 R1 Plem
Trade B1 R1 Tank_7

27) TwoShort: Attack G3 Tank_7

28) Tank_7: Sacrifice G2 Tank_7
Build R2 Tank_7
Build R2 Tank_7
Catastrophe Tank_7 Red

29) TwoShort: Trade G3 R3 Twoshort

30) Tank_7: Trade Y2 G2 Tank_7
	Tank_7: Lol @ the system named GunRule :D I am inexperienced sorry.

31) TwoShort: Sacrifice R3 Twoshort
Attack G2 Tank_7
Pass
Pass

	Tank_7: gg
	TwoShort: Thanks for the game :)


17432)
Started: 2010.9.19, Ended: 2010.10.12
Participants: dethdukk (S), daselva (N)
Winner: daselva

1) daselva: Homeworld R1 B2 G3



17456)
Variants: "Hard time"
Started: 2010.9.21, Ended: 2010.9.29
Participants: AdamBadura (S), mneme (N)
Winner: AdamBadura

1) mneme: Homeworld B2 R1 G3

2) AdamBadura: Homeworld G3 B2 R3

3) mneme: Build G1 Mneme

4) AdamBadura: Build R1 Adambadura

5) mneme: Build G1 Mneme

6) AdamBadura: Trade R1 Y1 Adambadura

7) mneme: Trade G3 Y3 Mneme

8) AdamBadura: Build R1 Adambadura

9) mneme: Build G1 Mneme

10) AdamBadura: Build R1 Adambadura

11) mneme: Discover G1 Mneme B3 Butterfly

12) AdamBadura: Discover R1 Adambadura Y1 Outpost

13) mneme: Build G2 Butterfly

14) AdamBadura: Build R2 Adambadura

15) mneme: Trade G2 R2 Butterfly

16) AdamBadura: Move R2 Adambadura Outpost

17) mneme: Build G2 Mneme

18) AdamBadura: Trade R1 B1 Adambadura

19) mneme: Trade G2 R2 Mneme

20) AdamBadura: Build B1 Adambadura

21) mneme: Build G2 Butterfly
	AdamBadura: You tricked me easy with those G ships. Nice move! I have to remember this... ;)

22) AdamBadura: Move B1 Adambadura Outpost

23) mneme: Discover G1 Mneme R3 Spacer
	AdamBadura: Good night! ;)

24) AdamBadura: Move R2 Outpost Spacer

25) mneme: Discover R2 Mneme B3 Friendship

26) AdamBadura: Attack G1 Spacer

27) mneme: Sacrifice G2 Butterfly
Build R1 Friendship
Build R3 Butterfly
	mneme: NP; glad to help you out that way!  You play fast!

28) AdamBadura: Build G2 Spacer

29) mneme: Trade R2 G2 Friendship

30) AdamBadura: Sacrifice G2 Spacer
Build R2 Outpost
Build G2 Spacer

31) mneme: Discover G1 Mneme G3 Hunter

32) AdamBadura: Build Y1 Adambadura

33) mneme: Trade R2 Y2 Butterfly

34) AdamBadura: Build R2 Adambadura

35) mneme: Build G2 Butterfly

36) AdamBadura: Discover R1 Outpost G3 Nomore

37) mneme: Move G2 Butterfly Mneme

38) AdamBadura: Move Y1 Adambadura Outpost

39) mneme: Move G2 Mneme Nomore

40) AdamBadura: Sacrifice G2 Spacer
Build G2 Spacer
Build B1 Outpost

41) mneme: Sacrifice Y2 Butterfly
Move G1 Hunter Outpost
Discover G1 Outpost B3 Icicle

42) AdamBadura: Build G3 Spacer

43) mneme: Sacrifice G2 Friendship
Build G2 Butterfly
Build Y2 Mneme

44) AdamBadura: Sacrifice G3 Spacer
Build G3 Spacer
Build B2 Outpost
Build Y2 Outpost

45) mneme: Sacrifice Y2 Mneme
Move G1 Butterfly Outpost
Move G1 Outpost Spacer
Catastrophe Spacer G

46) AdamBadura: Move Y2 Outpost Icicle

47) mneme: Sacrifice G1 Icicle
Build G1 Butterfly
	mneme: yeah, that was a blunder.  perils of playing late at night.


48) AdamBadura: Trade B1 G1 Outpost

49) mneme: Trade G2 Y2 Butterfly

50) AdamBadura: Move Y1 Outpost Spacer

51) mneme: Build G1 Butterfly

52) AdamBadura: Sacrifice B2 Outpost
Trade R3 Y3 Adambadura
Trade R2 Y2 Spacer

53) mneme: Trade Y3 G3 Mneme

54) AdamBadura: Build G2 Outpost

55) mneme: Build Y3 Butterfly

56) AdamBadura: Sacrifice G2 Outpost
Build Y3 Icicle
Build G2 Outpost

57) mneme: Sacrifice G2 Nomore
Build R2 Butterfly
Build R3 Friendship

58) AdamBadura: Move G2 Outpost Spacer
	mneme: nice attack threat.
	AdamBadura: There was only a thin chance you will miss it (and actually likely I would consider insisting on undo if you did) but I hope that was a good move either way.

59) mneme: Move R3 Butterfly Outpost

60) AdamBadura: Sacrifice Y2 Spacer
Move G1 Outpost Icicle
Move R2 Outpost Icicle
	mneme: Hey, I'd have taken the cheap win against me, but maybe I think too much of my own skills? :)  But yeah, it was a good move--almost any move that results in a more favorable large ratio (particularly given that you're ahead on raw points) is a good one.

61) mneme: Sacrifice Y2 Butterfly
Move R3 Friendship Outpost
Move R3 Outpost Spacer

62) AdamBadura: Sacrifice G2 Spacer
Build G2 Icicle
Build G2 Icicle

63) mneme: Sacrifice Y3 Butterfly
Move G1 Butterfly Outpost
Move G1 Outpost Icicle
Move G1 Butterfly Outpost
Catastrophe Icicle G

64) AdamBadura: Sacrifice Y1 Spacer
Move B1 Outpost Icicle

65) mneme: Build G1 Mneme

66) AdamBadura: Build Y1 Adambadura

67) mneme: Trade R1 B1 Friendship

68) AdamBadura: Build R1 Adambadura

69) mneme: Trade G3 Y3 Mneme

70) AdamBadura: Trade Y3 G3 Icicle
	AdamBadura: Interesting game...

71) mneme: Build Y2 Mneme
	mneme: isn't it, though?

72) AdamBadura: Build Y2 Icicle

73) mneme: Move Y2 Mneme Butterfly

74) AdamBadura: Build Y3 Icicle

75) mneme: Discover Y2 Butterfly G1 Seaweed

76) AdamBadura: Sacrifice Y1 Adambadura
Move Y3 Icicle Mneme

77) mneme: Attack Y3 Mneme

78) AdamBadura: Sacrifice Y3 Adambadura
Move Y2 Icicle Mneme
Move Y2 Icicle Mneme
Move G3 Icicle Mneme
Catastrophe Mneme Y

	mneme: Ah -- missed a Y somewhere.  Well done.
	AdamBadura: Thanks. Good game!


17249)
Started: 2010.9.22, Ended: 2010.10.7
Participants: mathochist (S), pancerola (N)
Winner: pancerola

1) pancerola: Homeworld G2 Y1 B3

	pancerola: Hello?


17480)
Variants: "Unrated"
Started: 2010.9.25, Ended: 2010.9.29
Participants: dlwillson (S), Keith (N)
Winner: dlwillson

1) Keith: Homeworld B1 Y2 G3

2) dlwillson: H B3 R1 G3
	Keith: You have a good track record in Homeworlds.
	dlwillson: I love Icehouse games. Homeworlds and Zendo are my favorites.

3) Keith: Build G1 Keith
	Keith: There has been some very clever use of the Icehouse pieces.  Homeworlds being a great example.  I never had any desire to play Zendo though I appreciate it from a design point of view.

4) dlwillson: B G1 Dlwillson

5) Keith: Trade G1 Y1 Keith

6) dlwillson: T G1 Y1 Dlwillson
	dlwillson: Good move. Trade to red might have been better for diversity and lockout potential.

7) Keith: Build G1 Keith
	Keith: Thought about both red and blue.

8) dlwillson: Build G1 Dlwillson
	Keith: I was pretty sure another green would have been a bad idea.
	dlwillson: Actually, either of those are good race colors for you, but red is better for three reasons:
- I ~have~ to get in, or find a way to catch up later.
- You have more room for red, and you don't have red.
- I have less room for red, and I don't have yellow. Or, didn't have, so I'd certainly lose the red race, no matter what.

9) Keith: Build Y1 Keith
	dlwillson: A second little green is a fine idea, unless it pushes the other guy into mediums, by the way.
We're both looking fine on yellow. You might want to consider a second yellow ship. I can't currently reach you, and you could split them up and burst-build with your G3.
	Keith: A burst build building all yellow to regain a 3- pointer?

I wasn't that worried about having a red.  Yours is a planet so while it is good for defense I don't feel like I have a gun pointed at me.  Though that is focus on what is in play rather than stack management.

10) dlwillson: B Y2 Dlwillson

11) Keith: Discover Y1 Keith B3 Miranda

12) dlwillson: D Y2 Dlwillson B2 Nuts

13) Keith: Sacrifice G3 Keith
Build Y2 Miranda
Build Y3 Miranda
Build Y3 Keith
	dlwillson: Ok, the yellow rush is not currently an option...
	Keith: Well let me see if I understand what would happen.  If I sacrificed the G3 I would need to build Y2 and Y3 in Miranda and Y3 in Keith.  If you could then move nuts to Miranda and cause a catastrophe.  But if you do that I will have swapped my G3 for a Y3 and you will lose your Y2.  If you instead build a Y3, I disperse and keep my gain.  We both will have gained a Y3 and  Y2.  Won't you then be capped at two yellow?

This may blow up in my face.  The advantage of an unrated game is that I am free to try.

14) dlwillson: B Y3 Dlwillson
	Keith: Make that three yellow.

15) Keith: Sacrifice Y1 Miranda
Discover Y1 Keith G3 Midworld
	dlwillson: You're absolutely right on all counts. I pushed up the wrong yellow! I don't usually make mistakes like that... In this case, I'm glad I did. Onward!
	Keith: So now you can sacrifice the Y3 and get a yellow to Keith causing a catastrophe.  I need to do something about that and Miranda is subject to loss.  
	Keith: ... though if I lose Miranda you will have two 3-pointers to my one.  Need to save Miranda too.
	Keith: Most of the game is coming back to me, though I am not seeing but two moves ahead.

16) dlwillson: D Y1 Dlwillson G2 Berries

17) Keith: Build Y1 Midworld
	dlwillson: I don’t think I've ever seen more than two ahead... but I definitely play with 1 eye on the bank.

18) dlwillson: M G1 Dlwillson Nuts

19) Keith: Discover Y1 Midworld B2 Lv-426
	Keith: One of the reasons I like Cannon is because I can see far ahead.

No clear idea what to do here.  

20) dlwillson: Build G1 Dlwillson

21) Keith: Trade Y3 R3 Miranda
	dlwillson: So, my way of getting around that is to decide how I'm going to take the other guy out at the very beginning of the game, then, anytime there's no immediate pressure, I move something toward that goal. It seems to work OK so far. In friendly games, I mostly just play the game and see what happens.
	Keith: Interesting bind you have me in.  If I build a green you can sacrifice your G3 and build to you get it back.  If I trade a yellow you can grab it.

22) dlwillson: Build Y3 Berries
	dlwillson: So, you offered the Y3 anyway... Interesting. Let's see if you have a plan.

23) Keith: Move R3 Miranda Berries
	Keith: Because I am brain dead.  Was going to offer the Y2, decided I might have some problems down the line, switched to the Y3 forgetting the you get it issue.

24) dlwillson: M Y3 Berries Miranda
	dlwillson: I've done that! Solution: read the board before and after the move. :-)

25) Keith: Attack Y1 Berries

26) dlwillson: T G1 R1 Dlwillson

27) Keith: Build R1 Berries

28) dlwillson: M R1 Dlwillson Nuts
	dlwillson: I won my ladder match!

29) Keith: Trade Y3 R3 Keith
	Keith: Congratulations.  I see you are now starting to tackle the big league group.  Wyons is a strong player.

30) dlwillson: B Y3 Nuts

	dlwillson: I've played the top 3 guys in regular games. Didn't win a single one... I better get better,eh?
	Keith: Yep. There used to be two groups.  The 4 or 5 heavies at the top of the ladder and a second group of 4 or 5 about 80 to 120 rating points back.  While I got Zoltar once, I never broke out of the seconddary group and then just about stopped playing when my focus shifted to Grim Reaper.
	Keith: Gah!  I was thinking you could not build the Y3 in dlwilson so I was safe.
	dlwillson: Want to call this one and start another?
	Keith: Maybe, I will let you know.  Board game night.  I will be out all evening.  I will take a look when I get back in.
	Keith: I am going to call it.


17429)
Started: 2010.9.26, Ended: 2010.10.21
Participants: TwoShort (S), bhorner (N)
Winner: TwoShort

1) bhorner: Homeworld B2 Y1 G3

2) TwoShort: Homeworld R1 B3 G3
	bhorner: Teach me something.  :)

3) bhorner: Build G1 Bhorner

4) TwoShort: Build G1 Twoshort

5) bhorner: Trade G1 Y1 Bhorner

6) TwoShort: Trade G1 Y1 Twoshort

7) bhorner: Discover Y1 Bhorner G3 Stab

8) TwoShort: Build Y2 Twoshort

9) bhorner: Build Y2 Stab

10) TwoShort: Build Y2 Twoshort

11) bhorner: Discover Y2 Stab G2 Rush

12) TwoShort: Trade Y2 G2 Twoshort

13) bhorner: Build Y2 Rush
	bhorner: Your last move scares me!
	TwoShort: I was wondering if you would sac your 2 to move your 1 in and blow up my yellows; that would put us back to the beginning, but me with as first-player, so slightly negative for you.  But I think (hope) this will be worse for you :)
  Anyway, since you asked, I've been looking for something to teach you, but so far you're not doing anything obviously wrong, just a few not-quite-what-I'd-do things:  I don't use a yellow (or green) homeworld star, so I have the option of growing more of them relative to the catastrophe threat; and I grow twice before moving out to have a second ship left at my homeworld so I can grow more ways there.  

14) TwoShort: Discover Y1 Twoshort B2 Bluestar

15) bhorner: Build G1 Bhorner

16) TwoShort: Sacrifice G2 Twoshort
Build Y3 Twoshort
Build Y3 Bluestar
	bhorner: Yeah, I saw that too, I can't remember the exact details, but one option left you with an extra small and your turn, and one left us even with your turn...  So I kept searching for something else.

I'm used to playing with 4 or 5, I know the 2 player version will be different, but at the very beginning I didn't know how to play.  I think blue yellow is the strongest homeworld with more than 2 players...  I don't know if it will translate to 2 though...

17) bhorner: Build Y3 Stab

18) TwoShort: Trade Y2 R2 Twoshort

19) bhorner: Move Y3 Stab Bhorner

20) TwoShort: Build Y2 Twoshort

21) bhorner: Trade Y3 R3 Bhorner

22) TwoShort: Move Y3 Bluestar Stab
	bhorner: Wow, is it over that quick?
	bhorner: er... half over?
	bhorner: nm, I always see the worst first, I think I can hold on for a while longer.
	TwoShort: At first I thought it was over, then I decided it was good for me, but not over, then I decided it was over, then I decided it was not over, and even good for you, now I'm wondering if it's over...
When I stick to a conclusion for a whole minute, I'll let you know :)

23) bhorner: Discover G1 Bhorner Y3 Patience

24) TwoShort: Build G1 Twoshort

25) bhorner: Discover Y2 Rush B1 Crazy

26) TwoShort: Sacrifice Y2 Twoshort
Move G3 Twoshort Bluestar
Move G3 Bluestar Patience

27) bhorner: Build R1 Bhorner

28) TwoShort: Build R1 Twoshort

29) bhorner: Build Y2 Stab

30) TwoShort: Sacrifice R1 Twoshort
Attack G1 Patience

31) bhorner: Move Y2 Crazy Bluestar
	bhorner: I really wish you'd be a little more impulsive and impatient...  I'll have to look this over again later.

32) TwoShort: Discover Y3 Stab G2 Grogar

33) bhorner: Move R1 Bhorner Stab

34) TwoShort: Sacrifice G3 Patience
Build G1 Twoshort
Build G2 Twoshort
Build G3 Patience

35) bhorner: Sacrifice Y2 Stab
Move Y2 Bluestar Twoshort
Move Y2 Rush Twoshort

36) TwoShort: Sacrifice R2 Twoshort
Attack Y2 Twoshort
Attack Y2 Twoshort

37) bhorner: Build Y2 Stab

38) TwoShort: Trade Y2 R2 Twoshort
	bhorner: Ah, a miscalculation, thought I would still have a y2 left.  I think it's pretty far gone at this point though, so I'll leave it.

39) bhorner: Move Y1 Stab Bluestar

40) TwoShort: Sacrifice G3 Patience
Build G2 Patience
Build G3 Patience
Build Y2 Bluestar

41) bhorner: Build R1 Stab

42) TwoShort: Sacrifice Y2 Twoshort
Move G2 Patience Bhorner
Move G1 Patience Bhorner

43) bhorner: Sacrifice R1 Stab
Attack Y1 Bluestar

44) TwoShort: Sacrifice G3 Patience
Build G3 Bhorner
Build Y2 Twoshort
Build Y3 Grogar

45) bhorner: Attack G3 Bhorner

46) TwoShort: Discover Y3 Grogar B3 Bonzai
Catastrophe Bhorner Green

47) bhorner: Build R1 Stab
	bhorner: Ah, you taught me something after all.  :)

48) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Grogar Bonzai
Move Y3 Bonzai Bhorner
Move Y3 Bonzai Bhorner
	bhorner: I thought I could cat first, then do other stuff... that's how we've always played.  I looked up the rules!  Whoops...  you had (have) me in a real pickle there!

49) bhorner: Move Y2 Stab Bhorner
Catastrophe Bhorner Yellow

50) TwoShort: Sacrifice R2 Twoshort
Attack Y1 Bluestar
Attack Y1 Bluestar

51) bhorner: Trade R3 G3 Bhorner
	TwoShort: Thanks for the game; I hope it was fun and/or educational :)
	bhorner: Certainly it's foregone, but it's not over yet!  And it _has_ been fun and educational...  At one point I just kind of gave up for a couple turns because there was too much going on to take in!

52) TwoShort: Trade G1 B1 Twoshort
	TwoShort: Well that's embarrassing, I totally missed that... 

53) bhorner: Build G1 Bhorner

54) TwoShort: Sacrifice Y2 Bluestar
Move G1 Twoshort Bhorner
Move G2 Twoshort Bhorner
Catastrophe Bhorner Green



17417)
Started: 2010.9.26, Ended: 2010.9.29
Participants: bhorner (S), rootbier (N)
Winner: bhorner

	bhorner: Here's the rematch.  :)


17496)
Variants: "Unrated"
Started: 2010.9.29, Ended: 2010.10.3
Participants: dlwillson (S), Keith (N)
Winner: dlwillson

1) Keith: Homeworld B1 Y2 G3
	Keith: Lets see if I can hold off a little longer this time.

2) dlwillson: H B3 Y1 G3

3) Keith: Build G1 Keith
	dlwillson: This is my favorite starting position

	Keith: Not with the red planet.  That seems to be the preference of the top tier.  Why is this your favorite starting position.

4) dlwillson: B G1 Dlwillson
	dlwillson: I like the early mobility and red always being a ship. They like the early trade to yellow and room for more yellow and planetary defense system.

5) Keith: Trade G1 Y1 Keith

6) dlwillson: T G1 Y1 Dlwillson

7) Keith: Build Y2 Keith

8) dlwillson: B Y2 Dlwillson
	dlwillson: Whew. Good thing I can count... :-)

9) Keith: Discover Y1 Keith G3 Forrest

10) dlwillson: D Y1 Dlwillson G2 Spubit

11) Keith: Build Y3 Forrest

12) dlwillson: B Y3 Spubit

13) Keith: Discover Y3 Forrest G2 Ariel

14) dlwillson: T Y2 R2 Dlwillson

15) Keith: Build Y2 Forrest
	dlwillson: Too much green, I think. Sticking with it?
	dlwillson: To be clearer: Splitting your yellows is a no-brainer, but I don't think moving to another green is a good idea. I think you want to move to a blue, so you can start to trade off some of your yellow to other things. The advantage to going green is that if I trade out one of my yellows to keep you from building another battleship, you can just build the yellow I trade, and you still have a nice place to build the battleship on a subsequent turn. I guess green's not so bad...
	Keith: Since last game trading yellow meant you got it I was aiming clearing them out.  Unless of course a yellow catastrophe were to happen at your home world.  Maybe too much green.  Once the greens thin down enough you have that sacrifice a G3 and get it back cycle.  Though at this point I still have a G3 so maybe it is an opportunity.

I am sticking with my move.

16) dlwillson: D Y3 Spubit B3 Thingum

17) Keith: Build Y3 Ariel

18) dlwillson: M Y3 Thingum Keith

19) Keith: Move Y1 Forrest Keith
Catastrophe Keith Yellow

20) dlwillson: B G1 Dlwillson
	dlwillson: Have you heard of the gun rule? When the other guy goes for his gun...
	Keith: I have heard of the gun rule.  But all I could see was that Y3.

21) Keith: Move Y3 Ariel Keith
	Keith: When the other guy goes for his gun... blow him up?

22) dlwillson: B Y1 Spubit
	dlwillson: Yes. If the other guy is in the house with a gun,  blow him up, taking out half the house if necessary... :-)

23) Keith: Trade Y3 R3 Keith

24) dlwillson: T G1 B1 Dlwillson

25) Keith: Build Y2 Ariel

26) dlwillson: M B1 Dlwillson Spubit

27) Keith: Move Y2 Forrest Spubit

28) dlwillson: Trade Y1 B1 Spubit
	Keith: That was fast.  Probably not a good sign.

29) Keith: Sacrifice R3 Keith
Attack B1 Spubit
Attack B1 Spubit
Attack Y1 Spubit

30) dlwillson: B G1 Dlwillson
	dlwillson: What's my objective now? A moment ago, it was to be the only guy in your house with a gun. What is it now?
	dlwillson: You still have the advantage of multiple valuable targets. I have only one viable target right now.
	Keith: I am not sure what your objective is now.  Overload me on blue?

31) Keith: Build G1 Keith

32) dlwillson: D G1 Dlwillson Y2 Dingo

33) Keith: Build B2 Spubit

34) dlwillson: Move G1 Dingo Keith
	dlwillson: Yes, and that was a decent remedy for the threat. It would have been better to build another red first.
	dlwillson: You lost a turn doing it that turn, because now you have go trade back into red. You should be fine, though.

35) Keith: Trade G3 R3 Keith
	Keith: I did not feel like I had time to build a red first.

36) dlwillson: Build G1 Dlwillson
	dlwillson: Let's play another game of Cannon. I'll challenge you.

37) Keith: Sacrifice Y3 Ariel
Move B1 Spubit Dlwillson
Move B1 Spubit Dlwillson
Move B2 Spubit Dlwillson
Catastrophe Dlwillson Blue
	Keith: Cannon sounds good.  You have me on the fence with Homeworlds.  I can't think it like I used to, however, my interest is rekindled and I am debating whether to put that much effort into it.

38) dlwillson: Build G2 Keith
	dlwillson: Actually, I've got a standing challenge for Cannon. Just join the game. But it's rated, so you better play to win. :-)
	dlwillson: Or, if you feel like walking me through a lot of strategy, just challenge me with an unrated game.

39) Keith: Build Y1 Ariel
	Keith: I will set up an unrated game with you going first.

40) dlwillson: Trade G1 B1 Keith
	dlwillson: I've lost this one, but I'll see how long I can hold on. Maybe a few more turns. We'll see.
	Keith: grrr too much focus on trying to finish you off.  

41) Keith: Attack B1 Keith
	Keith: Wait a minute.  The next green is a g3.
	dlwillson: I ~really~ wish SDG had more strict time limits on players. Like, if you haven't signed in in a year, your account drops off.
And, if you haven't taken a turn in 90 days, you auto-resign.
And, if you don't act on a challenge in 7 days, and you're not "away", you lose the match.
OK, I'm not sure that last one actually works, but you know what I mean. Some sanity limits would be nice and would make for more interesting reports.
	Keith: I guess it is not an issue but continuing to ignore my home system is.
	Keith: In theory there is removal after a year.  Aaron does not keep up with those things like he used to.  The auto resign would be good.  There are a lot of dead Homeworlds games.
	Keith: I am going to redo the same move.  I may be losing a game I had tied up but I need to learn how if that is the case.

42) dlwillson: Sacrifice R2 Dlwillson
Attack B1 Keith
Attack G1 Keith

43) Keith: Attack B1 Keith
	dlwillson: <insert randomly selected evil snicker>
	Keith: Now I get it.

44) dlwillson: Trade G1 B1 Keith

45) Keith: Sacrifice Y2 Ariel
Move Y1 Spubit Dlwillson
Move Y2 Spubit Dlwillson

46) dlwillson: Trade G2 B2 Keith
Catastrophe Keith B
	dlwillson: This is the tightest end I've ever seen, I think.

	Keith: Thank you for the lesson.  I could not see that end game extending from not attacking the g1 when it showed up at my homeworld.
	dlwillson: Really, you played very well. The critical moments were the times you didn't go for your gun in time.
	dlwillson: I think you're as good or better than me, if you want to start playing rated games.
	Keith: I think I have two bad tendencies: 1) start a defensive move one turn late, 2) start an offensive series one turn early.  I am more inclined to sacrifice. 

Having to blow up half my house was interesting.  
	Keith: I am not sure yet if I want to get back into serious play\rated games.  If I do I will be taking turns a lot slower.  I had sped things up since I saw that it was your preference in the comments of one of your games.


17483)
Started: 2010.10.1, Ended: 2010.10.6
Participants: bhorner (S), TomClem (N)
Winner: TomClem

1) TomClem: Homeworld Y1 B2 G3

2) bhorner: Homeworld Y1 G3 Y3 *

3) TomClem: Build G1 Tomclem

4) bhorner: Build Y1 Bhorner
	bhorner: I thought I would try something crazy.  :)

5) TomClem: Trade G3 Y3 Tomclem

6) bhorner: Discover Y1 Bhorner G2 Stab

7) TomClem: Build Y2 Tomclem
	TomClem: nice job shutting me out of y1's...
	bhorner: Yeah, I'm sure it will hurt me badly later.  :)

8) bhorner: Build Y2 Stab

9) TomClem: Trade Y2 R2 Tomclem

10) bhorner: Discover Y1 Stab B3 Rush

11) TomClem: Build G1 Tomclem

12) bhorner: Build Y2 Stab
	TomClem: I think I just let you back into this game!

13) TomClem: Move G1 Tomclem Rush
	bhorner: We'll see, things don't seem good yet...

14) bhorner: Discover Y2 Stab G3 Hope

15) TomClem: Sacrifice R2 Tomclem
Attack Y1 Rush
Pass

16) bhorner: Discover Y2 Stab B3 Damn

17) TomClem: Trade Y3 R3 Tomclem

18) bhorner: Trade Y2 B2 Damn

19) TomClem: Build Y2 Rush

20) bhorner: Build Y2 Hope

21) TomClem: Discover Y1 Rush G2 Land
	TomClem: that would have all been a lot easier if i had traded y3 to r3 instead of y2 to r2 a few moves back!  Grrrrrrr!

22) bhorner: Sacrifice B2 Damn
Trade Y2 G2 Hope
Trade Y3 R3 Bhorner
	bhorner: this is terrible.  :)

23) TomClem: Build G1 Tomclem

24) bhorner: Build R1 Bhorner

25) TomClem: Discover G1 Tomclem Y3 Fear
	TomClem: post here when you are done for the night.

26) bhorner: Move Y2 Hope Land
	bhorner: done for the night.  :)

27) TomClem: Build G2 Tomclem

28) bhorner: Sacrifice R1 Bhorner
Attack Y1 Land

29) TomClem: Build G3 Rush
	bhorner: For real this time.  :)

30) bhorner: Build R1 Bhorner

31) TomClem: Build R1 Tomclem

32) bhorner: Move Y2 Land Hope

33) TomClem: Trade G3 Y3 Rush

34) bhorner: Sacrifice G2 Hope
Build Y2 Hope
Build Y3 Land
	bhorner: nice big.

35) TomClem: Discover Y2 Rush G2 Gold

36) bhorner: Discover Y1 Land G3 Layaway
	TomClem: Thanks.  I thought it was a worthy sacrifice.  we will see if there is something I haven't accounted for.  Definitely need to keep you from locking up yellow!

37) TomClem: Move G2 Tomclem Layaway

38) bhorner: Sacrifice Y3 Land
Move Y2 Hope Tomclem
Move Y2 Hope Tomclem
Move Y1 Layaway Tomclem
Catastrophe Tomclem Y

39) TomClem: Build G2 Rush

40) bhorner: Move R1 Bhorner Tomclem

41) TomClem: Sacrifice R1 Tomclem
Attack R1S Tomclem

42) bhorner: Build R1 Bhorner

43) TomClem: Sacrifice Y2 Gold
Move R1 Tomclem Bhorner
Move R3 Tomclem Bhorner
Catastrophe Bhorner Red



17606)
Variants: "Hard time"
Started: 2010.10.2, Ended: 2010.10.23
Participants: Uglyfoot (S), goulo (N)
Winner: goulo

1) goulo: Homeworld G3 B2 Y3

2) Uglyfoot: Homeworld B3 Y1 G3
	goulo: hi, have fun!

3) goulo: Build Y1 Goulo

4) Uglyfoot: Build G1 Uglyfoot

5) goulo: Trade Y1 R1 Goulo
	Uglyfoot: have a good game.

6) Uglyfoot: Trade G1 Y1 Uglyfoot
	goulo: BTW there is now a Subdivision ladder, in case you are interested in joining!

7) goulo: Build R1 Goulo

8) Uglyfoot: Build G1 Uglyfoot

9) goulo: Discover R1 Goulo Y1 Citroneto

10) Uglyfoot: Discover Y1 Uglyfoot R2 Out

11) goulo: Build Y2 Goulo

12) Uglyfoot: Move G1 Uglyfoot Out

13) goulo: Build Y2 Goulo

14) Uglyfoot: Build Y2 Out

15) goulo: Move Y2 Goulo Citroneto

16) Uglyfoot: Discover Y2 Out G1 Walky

17) goulo: Move Y2 Goulo Walky

18) Uglyfoot: Build Y3 Out

19) goulo: Build Y3 Goulo

20) Uglyfoot: Build G1 Uglyfoot

21) goulo: Trade Y3 G3 Goulo

22) Uglyfoot: Build G2 Out

23) goulo: Build Y3 Goulo

24) Uglyfoot: Trade G1 B1 Uglyfoot

25) goulo: Sacrifice R1 Citroneto
Attack Y2 Walky

26) Uglyfoot: Move B1 Uglyfoot Out

27) goulo: Sacrifice Y3 Goulo
Move G3 Goulo Citroneto
Move G3 Citroneto Out
Move G3 Out Uglyfoot

28) Uglyfoot: Move Y3 Out Uglyfoot

29) goulo: Trade Y3 R3 Goulo

30) Uglyfoot: Sacrifice G2 Out
Build G1 Uglyfoot
Build G2 Uglyfoot
Catastrophe Uglyfoot G

31) goulo: Move Y2 Citroneto Out

32) Uglyfoot: Trade Y3 G3 Uglyfoot

33) goulo: Build R1 Goulo

34) Uglyfoot: Discover B1 Out Y1 Nexus

35) goulo: Attack Y1 Out

36) Uglyfoot: Attack Y1 Out

37) goulo: Trade R3 Y3 Goulo

38) Uglyfoot: Trade B1 R1 Nexus

39) goulo: Build Y3 Goulo
	goulo: I guess Homeworlds doesn't have a ko rule... :)

40) Uglyfoot: Build Y3 Out

41) goulo: Move Y2 Walky Out
Catastrophe Out Y

42) Uglyfoot: Build G1 Uglyfoot

43) goulo: Move Y2 Walky Out

44) Uglyfoot: Sacrifice G1 Out
Build R2 Nexus

45) goulo: Move Y3 Goulo Nexus

46) Uglyfoot: Discover R2 Nexus B2 Port

47) goulo: Sacrifice R1 Goulo
Attack R1 Nexus

48) Uglyfoot: Build G1 Uglyfoot

49) goulo: Move Y3 Nexus Port

50) Uglyfoot: Trade G1 R1 Uglyfoot

51) goulo: Sacrifice R1 Nexus
Attack R2 Port

52) Uglyfoot: Build G1 Uglyfoot

53) goulo: Build Y1 Goulo

54) Uglyfoot: Discover G1 Uglyfoot Y2 Movit

55) goulo: Trade Y3 G3 Port

56) Uglyfoot: Build G1 Movit

57) goulo: Build G2 Port

58) Uglyfoot: Trade G1 B1 Uglyfoot

59) goulo: Build G1 Port

60) Uglyfoot: Build G2 Movit

61) goulo: Sacrifice Y2 Out
Move G1 Port Uglyfoot
Move G1 Uglyfoot Movit
Catastrophe Movit G

62) Uglyfoot: Discover B1 Uglyfoot Y2 Movit2

63) goulo: Build G1 Port

	goulo: Thanks for the game!


17508)
Variants: "Hard time"
Started: 2010.10.2, Ended: 2010.10.5
Participants: TwoShort (S), AdamBadura (N)
Winner: TwoShort

1) AdamBadura: Homeworld G3 B2 R3

2) TwoShort: Homeworld B1 R3 G3
	TwoShort: Howdy.

3) AdamBadura: Build R1 Adambadura

4) TwoShort: Build G1 Twoshort

5) AdamBadura: Build R1 Adambadura

6) TwoShort: Trade G1 R1 Twoshort

7) AdamBadura: Trade R1 Y1 Adambadura

8) TwoShort: Build G1 Twoshort

9) AdamBadura: Trade R1 B1 Adambadura

10) TwoShort: Trade G1 Y1 Twoshort

11) AdamBadura: Build R1 Adambadura

12) TwoShort: Build Y1 Twoshort

13) AdamBadura: Build Y2 Adambadura

14) TwoShort: Build Y2 Twoshort

15) AdamBadura: Discover Y2 Adambadura G1 Shipyard

16) TwoShort: Trade Y2 G2 Twoshort

17) AdamBadura: Build Y2 Adambadura

18) TwoShort: Discover Y1 Twoshort G2 Grogar

19) AdamBadura: Trade Y1 G1 Adambadura

20) TwoShort: Discover G2 Twoshort B2 Bluestar

21) AdamBadura: Build G1 Adambadura

22) TwoShort: Build G2 Twoshort

23) AdamBadura: Trade G1 B1 Adambadura

24) TwoShort: Sacrifice G3 Twoshort
Build G1 Twoshort
Build G3 Twoshort
Build G3 Bluestar

25) AdamBadura: Move B1 Adambadura Shipyard

26) TwoShort: Trade G2 Y2 Bluestar

27) AdamBadura: Trade Y2 G2 Shipyard

28) TwoShort: Discover G2 Twoshort Y2 Yolonda

29) AdamBadura: Sacrifice G1 Adambadura
Build B2 Adambadura

30) TwoShort: Discover G3 Bluestar Y3 Yellonia
	AdamBadura: Now its clear why your rank is so high... ;)
	AdamBadura: There is no light at the end of my time-and-space-travel tunnel. ;D

31) AdamBadura: Sacrifice G2 Shipyard
Build B3 Shipyard
Build B3 Shipyard
	TwoShort: You've been playing an excellent game.  Only in the last turn or two have I started to be less worried... which sometimes leads me to do something stupid, so I'd better be careful :)

32) TwoShort: Sacrifice G3 Twoshort
Build Y1 Bluestar
Build Y3 Twoshort
Build Y3 Bluestar

33) AdamBadura: Trade B3 R3 Shipyard

34) TwoShort: Sacrifice G3 Yellonia
Build Y3 Grogar
Build G1 Yolonda
Build G2 Yolonda

35) AdamBadura: Trade R3 G3 Adambadura
	AdamBadura: As much as I like to deny my opponent some thecnology I hate when this happens to me. :)

36) TwoShort: Move G1 Yolonda Shipyard

37) AdamBadura: Sacrifice Y2 Adambadura
Move B3 Shipyard Yolonda
Move R3 Shipyard Yolonda

38) TwoShort: Sacrifice Y3 Grogar
Move G2 Yolonda Shipyard
Move G2 Shipyard Adambadura
Move G1 Shipyard Adambadura
Catastrophe Adambadura Green

39) AdamBadura: Attack G2 Yolonda

40) TwoShort: Sacrifice Y2 Bluestar
Move Y3 Bluestar Shipyard
Move Y3 Shipyard Adambadura

	AdamBadura: No point in continuing this. Congratulations although it was way too easy for you :)...
	TwoShort: Thanks for the game!


17612)
Variants: "No undo, Sinister"
Started: 2010.10.3, Ended: 2010.11.11
Participants: AdamBadura (S), zara2stra (N), goulo (E)
Winner: zara2stra

1) zara2stra: Homeworld G3 Y1 B3

2) goulo: Homeworld G3 B2 Y3

3) AdamBadura: Homeworld G3 B1 R3
	goulo: Ah, just like the good old days!

4) zara2stra: Build B1 Zara2stra

5) goulo: Build Y1 Goulo

6) AdamBadura: Build R1 Adambadura

7) zara2stra: Trade B1 Y1 Zara2stra
	AdamBadura: Was this kill all or kill on the left?

8) goulo: Trade Y1 G1 Goulo
	goulo: "Sinister" = kill on the left
	goulo: (listed at the top under "Variant" info)

9) AdamBadura: Build R1 Adambadura

10) zara2stra: Build B1 Zara2stra

11) goulo: Build G1 Goulo

12) AdamBadura: Trade R1 Y1 Adambadura

13) zara2stra: Trade B1 R1 Zara2stra

14) goulo: Trade G1 R1 Goulo

15) AdamBadura: Trade R1 G1 Adambadura
	goulo: BTW I recommend the 2-player game Ordo. I've played it 3 times now and it's an interesting subtle abstract.

16) zara2stra: Build B1 Zara2stra

17) goulo: Build G1 Goulo

18) AdamBadura: Build R1 Adambadura

19) zara2stra: Trade B1 G1 Zara2stra

20) goulo: Discover G1 Goulo Y1 Citroneto

21) AdamBadura: Build Y2 Adambadura

22) zara2stra: Build B1 Zara2stra

23) goulo: Build Y2 Goulo

24) AdamBadura: Discover Y2 Adambadura G2 Drydocks

25) zara2stra: Discover Y1 Zara2stra R2 Mostlyharmless

26) goulo: Build G2 Citroneto

27) AdamBadura: Build Y2 Drydocks

28) zara2stra: Move G1 Zara2stra Mostlyharmless
	AdamBadura: Look into game 17692 and learn from my mistakes.

29) goulo: Discover Y2 Goulo R1 Rubeneto

30) AdamBadura: Move R1 Adambadura Drydocks
	goulo: http://superdupergames.org/?page=archive_play&gid=17692&idx=8
Ha, that is pretty cool and interesting! You should post it to the Homeworlds Sessions forum at bgg.

31) zara2stra: Build G2 Mostlyharmless

32) goulo: Build Y2 Goulo

33) AdamBadura: Build Y3 Adambadura

34) zara2stra: Build Y3 Mostlyharmless

35) goulo: Sacrifice G2 Citroneto
Build Y3 Rubeneto
Build G2 Citroneto

36) AdamBadura: Build R2 Drydocks

37) zara2stra: Sacrifice Y3 Mostlyharmless
Move G1 Mostlyharmless Citroneto
Move G1 Citroneto Goulo
Move Y1 Mostlyharmless Rubeneto

38) goulo: Attack G1N Goulo

39) AdamBadura: Move Y2 Drydocks Rubeneto
Catastrophe Rubeneto Y

40) zara2stra: Sacrifice B1 Zara2stra
Trade G2 Y2 Mostlyharmless

41) goulo: Trade G1 B1 Goulo

42) AdamBadura: Trade Y1 B1 Adambadura

43) zara2stra: Build B1 Zara2stra

44) goulo: Discover G2 Citroneto Y2 Citrono

45) AdamBadura: Build B2 Adambadura

46) zara2stra: Trade B1 G1 Zara2stra

47) goulo: Discover B1 Goulo Y1 Pisero

48) AdamBadura: Move B2 Adambadura Drydocks

49) zara2stra: Move G1 Zara2stra Mostlyharmless

50) goulo: Build G2 Citrono

51) AdamBadura: Discover G1 Adambadura R2 Outpost
	goulo: I have been watching some of the BGG Essen game demo videos, reading reports, etc and wish I had gone to Essen this year. :)
	AdamBadura: Yes. Me too... However having a child (and another one on the way) makes travaling to Essen a bit hard in next few years... :(

52) zara2stra: Build G2 Mostlyharmless

53) goulo: Build G3 Citroneto

54) AdamBadura: Build R1 Adambadura

55) zara2stra: Sacrifice G2 Mostlyharmless
Build Y1 Mostlyharmless
Build Y3 Mostlyharmless

56) goulo: Move B1 Pisero Citrono

57) AdamBadura: Build G2 Outpost

58) zara2stra: Sacrifice Y2 Mostlyharmless
Move Y3 Mostlyharmless Citroneto
Move Y3 Citroneto Outpost

59) goulo: Discover G1 Citroneto R2 Rubeno

60) AdamBadura: Sacrifice G2 Outpost
Build Y1 Adambadura
Build Y2 Drydocks

61) zara2stra: Build Y3 Mostlyharmless

62) goulo: Build R3 Goulo

63) AdamBadura: Discover Y1 Adambadura G2 Shipyard

64) zara2stra: Attack G1S Outpost

65) goulo: Sacrifice Y2 Goulo
Move G1 Rubeno Adambadura
Move G2 Citrono Adambadura

66) AdamBadura: Move R3 Adambadura Shipyard

67) zara2stra: Sacrifice Y3 Mostlyharmless
Move G1 Mostlyharmless Citroneto
Move G1 Citroneto Goulo
Discover G1 Outpost B1 Aeon

68) goulo: Move G1 Goulo Citroneto

69) AdamBadura: Build R2 Adambadura

70) zara2stra: Build B2 Zara2stra

71) goulo: Attack G1N Goulo

72) AdamBadura: Build R3 Shipyard
	goulo: One of you should challenge me to Alien City. :)

73) zara2stra: Move B2 Zara2stra Outpost

74) goulo: Move G2 Citrono Adambadura
Catastrophe Adambadura G

75) AdamBadura: Discover R1 Adambadura G2 Runaways

76) zara2stra: Build G1 Aeon
	AdamBadura: As to Alien City I still don't know the rules. Something is wrong either with me or with them as I tried at least 3 times and failed every time... ;)
	goulo: They are strange rules when you read them, I agree! All the information is there, and I think they're even clear and complete rules, and not very complicated, yet I still sometimes have to check things to be sure I'm not confused. :) If I ever make a physical set (I just need to make 20 tiles...), we can try playing in person...

77) goulo: Sacrifice G1 Goulo
Build B2 Citrono

78) AdamBadura: Move B1 Adambadura Runaways
	goulo: BTW Lines of Action is quite nice, I'm enjoying it lately. A modern classic abstract game (from 1969)

79) zara2stra: Move B2 Outpost Aeon

80) goulo: Discover B2 Citrono R3 Rubenego

81) AdamBadura: Sacrifice Y2 Drydocks
Move R3 Shipyard Zara2stra
Move R3 Shipyard Zara2stra

82) zara2stra: Attack R3S Zara2stra

83) goulo: Sacrifice G1 Citroneto
Build B3 Citrono

84) goulo: Build Y2 Goulo
	AdamBadura: An interesting situation. I hoped I will be quick enough. As it seems I wasn't and now goulo will win.
	AdamBadura: zara2stra, unless we prevent goulo from killing me in his next move we will lose. I have only one B ship (in Runaways) which I could move (by sacrificing some Y ship) to Citrono.

But this is not enough obviously. You would have to move your B ship (from Aeon) too. Also by sacrificing your Y ship.

This would prevent goulo from winning in next move. Are you willing to do it?
	goulo: haha! I wondered if you would propose that. :)

BTW I am exploring costs of acrylic laser cutting, as a possible way to make Alien City tiles. :)
	AdamBadura: That is one of the things that puts me away from Alien City. It is not "pure Icehouse"... ;)

I considered costs of laser cutting/drawing after I saw some 18xx track tiles made in wood with laser (on BGG).
	goulo: BTW I thought of building a b3 at Rubenego, then decided against it exactly because you alone could move 2 blues to it, whereas at Citrono you'd have to convince zara2stra to sacrifice as well. :)
	goulo: My Alien City will almost pure icehouse. I don't want to use "domes", but simply small pyramids, for example. So only the board will be non-pyramids - and that's true for many of the icehouse games that use a board. :)
	AdamBadura: Can you somehow notify zara2stra that I am awaiting his decisions here? As he likely wont come here until I make a move.
	goulo: You can geekmail him at BGG; he is zara2stra there.
	zara2stra: Sorry guys, I just read the message on BGG - if there's a situation like this in the future, just mail me: zara2stra@gmail.com. As for your question, I'll help you catastrophe citrono, if you'll also withdraw the r3 from my home system at the same turn. 
	AdamBadura: Its a high price considering you already gained R3 and if we don't prevent goulo we both lose, not just me... Let me consider this...
	goulo: Ha, surely no price is too high to avoid losing immediately! :)
	goulo: You should be required to move your r3 back to drydocks so there can then be a red catastrophe there more easily. :)
	AdamBadura: Also moving both B and R requires me to sacrifice an Y3 rather then Y2...
	AdamBadura: Which leaves me defencless in my homeworld. It seems the only way to avoid loosing is to convince zara2stra to make a move which will make him lose earlier... ;)

85) zara2stra: Move R3 Zara2stra Drydocks
	zara2stra: That wasn't nice.
	AdamBadura: Yes. But it seems that goulo's victory was unavoidable anyway...
	goulo: wow, that's a complex situation now!

86) goulo: Sacrifice Y2 Goulo
Move R1 Goulo Adambadura
Move R1 Adambadura Drydocks
Catastrophe Drydocks R
	AdamBadura: Yes. That is why I love this game so much.

By the way. Will any of you be on Gratislavia? On the first day (Saturday) I will be among the staff, but likely on Sunday I will come as a gamer.
	goulo: A2na and I are going out of town for the long weekend, so unfortunately we will miss Gratislavia. Bad timing. :/
	goulo: Your resignation is an interesting example of "what do you do when you can't win?" I.e. you could have kept playing and lost, with me winning. Or you could resign, leaving a complex situation where you lost, and it's unclear whether I or zara2stra will win. So either way you lose. If zara2stra wins now, then you did kingmaking. Or did you? Or was it kingmaking regardless of who wins now, since your resigning prevented my imminent victory and made the situation complex and unclear? Some say you should never resign from a multi-player game. Etc.

I suspect a BGG thread about this game would get many diverse comments. :)
	AdamBadura: You are free to post it on BGG. ;)

I resigned as I knew that me staying in the game has two possibilities: 1) either I will convince zara2stra to make a move bad for him which would prevent you from winning and allow me to win before you rebuild an threat or 2) I will soon lose to you.

First one would be a great achievement. More diplomatic/negotiation than strategic. But still a good one (or at least for me: I like this aspect of gaming). But clearly zara2stra foreseen my evil plans and this will not happen.

Second does not change my situation to the current one (me resigning). Although it may change yours, so lets think about it.

My resignation makes the game unclear to you. So it could possibly take your victory. (Or maybe it didn't: if I kept playing we would go into destroying your B threat and then it would be a race for you and zara2stra who first destroys me. Keep in mind I already had to do it once in a previous game, I had to destroy you to prevent zara2stra from doing it as I could have won but required more moves than zara2stra...)

Also I like to see it as it is often interpreted in Through the Ages where player leaving the game is formalized and allowed explicitly by the rules. Playing against someone in TtA requires some sacrifices (of actions) and if the attacked player resigned from the game in response you do not gain anything while you already payed the costs. So hitting the weakest player or doing a fatal blow is risky. This does not translate directly to this game where destruction of your enemy is the only way of winning. However I do like to think that a good threat must take into account resignation of defender. So you cannot rush to much and sacrifice to much as you might end up exposed.

All in all now you have some more gaming... ;)

87) zara2stra: Attack R3S Zara2stra
	zara2stra: I will be on Gratislavia on sunday - I'll borrow an IceHouse set from Ryslaw.

88) goulo: Build Y2 Goulo

89) zara2stra: Sacrifice Y3 Outpost
Move R3 Zara2stra Drydocks
Move G1 Aeon Goulo
Move G1 Aeon Goulo

90) goulo: Sacrifice R3 Goulo
Attack G1N Goulo
Attack G1N Goulo
Pass

91) zara2stra: Sacrifice Y1 Mostlyharmless
Move B2 Aeon Goulo

92) goulo: Sacrifice Y2 Goulo
Discover G1 Goulo Y1 Pisereto
Move G1 Goulo Pisereto

93) zara2stra: Build B1 Goulo

94) goulo: Sacrifice G3 Citroneto
Build Y1 Goulo
Build B3 Citrono
Build B3 Rubenego

95) zara2stra: Sacrifice R3 Drydocks
Attack Y1E Goulo
Pass
Pass

96) goulo: Trade Y3 R3 Goulo

97) zara2stra: Sacrifice B3 Zara2stra
Trade B2 R2 Goulo
Trade B1 R1 Goulo
Trade Y1 R1 Goulo
Catastrophe Goulo R

	zara2stra: Thanks for the game, but goulo should be the winner. In my opinion, when Adam resigned, he shifted the balance to my advantage: My homeworld was safe for a time, because Goulo's ships where earlier targeting an entirely different system, and I was free to carry out the plan I already had. All in all, I feel that Adam resigning was unfair. 
	AdamBadura: Maybe indeed it was.

But maybe as I already suggested my resignation was a punishment of a weak victory plan goulo had... ;)
	zara2stra: Anyway, I'm eager to exact my revenge live on sunday :D
	goulo: Hope you got to play today! We were out of town at a different event where I got to play 4 games of RAMbots, woot. :)
	AdamBadura: No. Somehwo we didn't meet today although I was there from 12 to 16.


17331)
Variants: "Hard time"
Started: 2010.10.5, Ended: 2010.10.17
Participants: daselva (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3

2) daselva: Homeworld B1 R2 G3

3) Jesse: Build G1 Jesse
	daselva: hello...greetings
	Jesse: Hello.  Have a good game.

4) daselva: Build G1 Daselva

5) Jesse: Trade G1 Y1 Jesse

6) daselva: Trade G1 Y1 Daselva

7) Jesse: Build G1 Jesse

8) daselva: Build G1 Daselva

9) Jesse: Trade G1 B1 Jesse

10) daselva: Build G1 Daselva

11) Jesse: Build G1 Jesse

12) daselva: Trade G1 R1 Daselva

13) Jesse: Trade G1 R1 Jesse

14) daselva: Discover R1 Daselva G3 S1

15) Jesse: Discover R1 Jesse G2 Goober

16) daselva: Trade G1 B1 Daselva

17) Jesse: Move B1 Jesse Goober

18) daselva: Sacrifice B1 Daselva
Trade R1 Y1 S1

19) Jesse: Build Y2 Jesse

20) daselva: Build Y2 S1

21) Jesse: Move Y1 Jesse Goober

22) daselva: Move Y1 S1 Daselva

23) Jesse: Build R1 Goober

24) daselva: Build G1 Daselva

25) Jesse: Build R2 Goober

26) daselva:
Discover Y1 Daselva B3 S2

27) Jesse: Move R2 Goober S1

28) daselva: Move Y2 S1 Goober

29) Jesse: Build R2 Goober

30) daselva: Sacrifice G3 Daselva
Build Y2 S2
Build Y3 Goober
Build Y3 Daselva

31) Jesse: Build Y3 Goober
Catastrophe Goober Y

32) daselva: Trade Y2 G2 S2

33) Jesse: Trade R2 Y2 Goober

34) daselva: Build G1 S2

35) Jesse: Build R2 S1

36) daselva: Trade G1 B1 S2

37) Jesse: Build R3 Goober

38) daselva: Discover B1 S2 G2 S3

39) Jesse: Move R3 Goober S2

40) daselva: Sacrifice G2 S2
Build B2 S3
Build B2 S3

41) Jesse: Build R3 S1

42) daselva: Move Y1 S2 S3

43) Jesse: Sacrifice Y2 Goober
Move R3 S1 Daselva
Move R3 S2 Daselva

44) daselva: Attack R3 Daselva

45) Jesse: Sacrifice R2 S1
Attack R3 Daselva
Attack Y3 Daselva

46) daselva: Move B2 S3 Jesse

47) Jesse: Sacrifice R3 Daselva
Attack B2 Jesse
Attack Y1 Daselva
Attack G1 Daselva

	Jesse: Thank you for playing, too.


15942)
Started: 2010.10.5, Ended: 2010.11.1
Participants: Uglyfoot (S), lorgar (N)
Winner: Uglyfoot

1) lorgar: Homeworld G3 B1 Y3

2) Uglyfoot: Homeworld B3 Y2 G3

3) lorgar: Build Y1 Lorgar

4) Uglyfoot: Build G1 Uglyfoot

5) lorgar: Trade Y1 G1 Lorgar

6) Uglyfoot: Discover G1 Uglyfoot R1 Colony

7) lorgar: Build Y1 Lorgar

8) Uglyfoot: Build G1 Uglyfoot

9) lorgar: Discover G1 Lorgar B2 Concretejungle

10) Uglyfoot: Build G2 Colony

11) lorgar: Build G2 Concretejungle

12) Uglyfoot: Trade G1 R1 Uglyfoot

13) lorgar: Trade G1 R1 Concretejungle

14) Uglyfoot: Build R2 Uglyfoot

15) lorgar: Build R2 Concretejungle

16) Uglyfoot: Trade R1 Y1 Uglyfoot

17) lorgar: Trade R1 Y1 Concretejungle

18) Uglyfoot: Build Y2 Uglyfoot

19) lorgar: Move G2 Concretejungle Lorgar

20) Uglyfoot: Move Y2 Uglyfoot Colony

21) lorgar: Trade Y1 G1 Concretejungle

22) Uglyfoot: Discover G2 Colony Y2 Far

23) lorgar: Trade G2 R2 Lorgar

24) Uglyfoot: Build G1 Uglyfoot

25) lorgar: Move R2 Lorgar Far

26) Uglyfoot: Sacrifice R2 Uglyfoot
Attack R2 Far
Pass

27) lorgar: Move Y1 Lorgar Concretejungle

28) Uglyfoot: Build G2 Colony

29) lorgar: Build G2 Concretejungle

30) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Far
Build R1 Far

31) lorgar: Move R2 Concretejungle Lorgar

32) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build Y1 Uglyfoot
Build Y3 Colony

33) lorgar: Build Y3 Lorgar

34) Uglyfoot: Move Y3 Colony Concretejungle

35) lorgar: Move R2 Lorgar Far

36) Uglyfoot: Sacrifice R2 Far
Attack R2 Far
Attack Y1 Concretejungle

37) lorgar: Trade Y3 R3 Lorgar

38) Uglyfoot: Build Y3 Colony

39) lorgar: Move R3 Lorgar Concretejungle

40) Uglyfoot: Sacrifice R1 Far
Attack R3 Concretejungle

	lorgar: let's call it a day, shall we?
	Uglyfoot: I think that is a good idea.  Thanks for the game!


17406)
Variants: "Hard time"
Started: 2010.10.5, Ended: 2010.10.21
Participants: Lurch (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld G2 B1 Y3

2) Lurch: Homeworld Y1 B3 G3

3) lorgar: Build Y1 Lorgar

4) Lurch: Build G1 Lurch

5) lorgar: Trade Y1 G1 Lorgar

6) Lurch: Trade G1 Y1 Lurch

7) lorgar: Build G1 Lorgar

8) Lurch: Discover Y1 Lurch G2 Alpha

9) lorgar: Discover G1 Lorgar B3 Metatron



17622)
Variants: "Hard time"
Started: 2010.10.6, Ended: 2010.10.18
Participants: medcatt (S), Lurch (N)
Winner: Lurch

1) Lurch: Homeworld B1 Y2 G3

2) medcatt: Homeworld B2 G1 Y3

3) Lurch: Build G1 Lurch

4) medcatt: Build Y1 Medcatt

5) Lurch: Build G1 Lurch



17485)
Started: 2010.10.6, Ended: 2012.2.27
Participants: medcatt (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3



17630)
Variants: "Hard time"
Started: 2010.10.6, Ended: 2010.10.11
Participants: dlwillson (S), AdamBadura (N)
Winner: dlwillson

1) AdamBadura: Homeworld B1 G3 R3

2) dlwillson: H B2 Y1 G3

3) AdamBadura: Build R1 Adambadura
	dlwillson: Have a good game!

4) dlwillson: B G1 Dlwillson

5) AdamBadura: Trade R1 G1 Adambadura

6) dlwillson: T G1 R1 Dlwillson

7) AdamBadura: Build G1 Adambadura

8) dlwillson: B G1 Dlwillson

9) AdamBadura: Trade G1 Y1 Adambadura

10) dlwillson: T G1 Y1 Dlwillson

11) AdamBadura: Build Y2 Adambadura

12) dlwillson: B Y2 Dlwillson

13) AdamBadura: Discover Y1 Adambadura G2 Shipyard

14) dlwillson: D Y1 Dlwillson G3 Awk

15) AdamBadura: Build G1 Adambadura

16) dlwillson: D Y2 Dlwillson B3 Sed

17) AdamBadura: Discover G1 Adambadura R2 Outpost

18) dlwillson: B R1 Dlwillson

19) AdamBadura: Build Y2 Adambadura

20) dlwillson: B Y3 Awk

21) AdamBadura: Build Y3 Shipyard

22) dlwillson: M Y3 Awk Outpost

23) AdamBadura: Sacrifice Y1 Shipyard
Discover G1 Outpost B3 Changer

24) dlwillson: M R1 Dlwillson Changer

25) AdamBadura: Sacrifice G1 Changer
Build G1 Adambadura

26) dlwillson: B R1 Dlwillson
	dlwillson: Ha! Nice teleport. :-)

27) AdamBadura: Build R2 Adambadura

28) dlwillson: M R1 Dlwillson Awk

29) AdamBadura: Move R2 Adambadura Shipyard

30) dlwillson: B G1 Dlwillson

31) AdamBadura: Sacrifice G1 Adambadura
Build R2 Adambadura

32) dlwillson: S G3 Dlwillson
B Y1 Outpost
B Y3 Awk
B R3 Dlwillson

33) AdamBadura: Build R3 Shipyard

34) dlwillson: T R3 G3 Dlwillson

35) AdamBadura: Discover Y3 Shipyard R3 Watchtower
	dlwillson: 

36) dlwillson: M G1 Dlwillson Sed

37) AdamBadura: Move Y2 Adambadura Shipyard

38) dlwillson: S Y2 Sed
M R1 Changer Shipyard
M R1 Awk Shipyard
C Shipyard R

39) AdamBadura: Build Y2 Adambadura

40) dlwillson: B G1 Dlwillson

41) AdamBadura: Build G2 Adambadura

42) dlwillson: S Y3 Outpost
D G1 Dlwillson Y3 Grep
M G1 Sed Outpost
M G1 Outpost Adambadura
C Adambadura G

43) AdamBadura: Move R3 Adambadura Watchtower

44) dlwillson: S G1 Grep
B Y3 Outpost

45) AdamBadura: Sacrifice Y2 Adambadura
Move Y3 Watchtower Dlwillson
Move R3 Watchtower Dlwillson
	AdamBadura: Its getting very exciting... ;)

46) dlwillson: A R3 Dlwillson

	dlwillson: Typo... :-}
	AdamBadura: Hmmm... I expected that move and yet I must have make a mistake as now obviously it is worse than I hoped for... ;)
	dlwillson: With important games, when I'm not sure how the board will REALLY look, I get out the real pyramids and set it up. I wanted to do that this time,  before I stepped into your trap, but I couldn't find an appropriate time without holding up the game. Any way... let's see what happens next.
	AdamBadura: Now I know why I have made the bad move. Somehow I got fixed on thining that to attack me in your system you will have to sacrifice that R1 ship. If you would than the game would have been mine I guess. But you didn't have to and my move was bad. On the other hand I think I would have lost anyway. Thanks for the game.

With the real pyramids you have to own them... ;) (But I hope I will finally buy them; what slows me down is that most of their games I play here...)
	dlwillson: Thanks for the game, Adam. You played well, even if I won.


17628)
Variants: "Hard time"
Started: 2010.10.7, Ended: 2010.10.21
Participants: Lurch (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B2 G3

2) Lurch: Homeworld B1 Y3 G3

3) agentofchaos: Build G1 Agentofchaos

4) Lurch: Build G1 Lurch

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Lurch: Trade G1 Y1 Lurch

7) agentofchaos: Build G1 Agentofchaos

8) Lurch: Build G1 Lurch

9) agentofchaos: Trade Y1 R1 Agentofchaos



17629)
Started: 2010.10.7, Ended: 2010.10.19
Participants: agentofchaos (S), rootbier (N)
Winner: agentofchaos



17337)
Variants: "Hard time"
Started: 2010.10.10, Ended: 2010.11.9
Participants: random56 (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) random56: Homeworld G2 B3 Y3

3) dlwillson: B G1 Dlwillson
	dlwillson: Have fun, Random!

4) random56: Build Y1 Random56

5) dlwillson: T G1 Y1 Dlwillson

6) random56: Discover Y1 Random56 G1 Bob

7) dlwillson: B Y2 Dlwillson

8) random56: Build Y2 Bob

9) dlwillson: T Y1 R1 Dlwillson

10) random56: Build Y1 Random56

11) dlwillson: B G1 Dlwillson

12) random56: Trade Y1 B1 Random56

13) dlwillson: D Y2 Dlwillson G2 Gecko

14) random56: Move B1 Random56 Bob

15) dlwillson: M G1 Dlwillson Gecko

16) random56: Trade Y2 R2 Bob

17) dlwillson: D G1 Gecko B1 Bluebird

18) random56: Build Y1 Random56

19) dlwillson: B Y2 Gecko

20) random56: Build Y2 Bob

21) dlwillson: B G1 Dlwillson
	dlwillson: I can capture that r2 for free, with my g3. You probably want to do something else. Build a y2 maybe or trade into green.
	dlwillson: Or, build another red. But rushing me with an R2 when I have a large and red in the system, does seem to make sense at this point.
	dlwillson: It would make sense if you had a bunch more red, maybe. No...  not even then, because if you did, I'd sac my R1 to attack your R2, even though I don't need to, in order to keep my red count low and avoid a potential catastrophe. You can't get anything good from this move right now. And maybe not ever.

22) random56: Trade Y3 R3 Random56

23) dlwillson: S G3 Dlwillson
B G2 Dlwillson
B G3 Dlwillson
B G3 Bluebird

24) random56: Build R1 Random56
	random56: thank you for the tip, I dont get to play in real life, and so it can be hard to stratigise some times

25) dlwillson: T G3 Y3 Bluebird
	dlwillson: No problem. It's a serious game. Takes time to learn it.

26) random56: Move R2 Bob Gecko
	random56: bluebird........really, it is hard to play on line, i like to see everything at once and it is hard to scroll up and down to look at what i need to do, but bluebird thats like a slap in the face, but all in good fun. I am laughing

27) dlwillson: S Y2 Gecko
D G2 Dlwillson B2 Chameleon
D Y2 Gecko B1 Mudskipper
	dlwillson: Try control mouse wheel down to zoom your browser out. That should let you see the whole board at 1 time. No insult meant by naming my system bluebird just funning. 

28) random56: Build B2 Bob

29) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B G3 Chameleon
Build G3 Bluebird

30) random56: Move B2 Bob Gecko

31) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B Y2 Mudskipper
B Y3 Bluebird

32) random56: Build Y3 Bob

33) dlwillson: S Y3 Bluebird
M G3 Bluebird Random56
M G3 Chameleon Bluebird
M G3 Bluebird Random56



17458)
Started: 2010.10.11, Ended: 2010.10.12
Participants: mathochist (S), goblin981 (N)
Winner: mathochist

1) goblin981: Homeworld B2 G3 Y3



17084)
Variants: "Hard time"
Started: 2010.10.11, Ended: 2010.10.15
Participants: SilentTitan (S), goblin981 (N)
Winner: SilentTitan

1) goblin981: Homeworld Y1 G2 B3

2) SilentTitan: Homeworld G2 B3 Y3

3) goblin981: Build B1 Goblin981

4) SilentTitan: Build Y1 Silenttitan

5) goblin981: Discover B1 Goblin981 R3 Hoth

6) SilentTitan: Discover Y1 Silenttitan Y1 Garnv

7) goblin981: Trade B1 R1 Hoth

8) SilentTitan: Build Y2 Silenttitan

9) goblin981: Build B1 Goblin981

10) SilentTitan: Trade Y2 R2 Silenttitan

11) goblin981: Build B1 Goblin981

12) SilentTitan: Build Y2 Silenttitan

13) goblin981: Discover B1 Goblin981 G3 Al'thor

14) SilentTitan: Build Y2 Silenttitan
	SilentTitan: ok. so you are learning the game? yes?  so I'd like to help you out and get you going here. at this point you need to take back the last move you made and pick a different move say discover a new system with your b1, because all I have to do on my turn would be to call for a catasrophe and all your blue is removed from your homeworld which is a wiin for me. You see anytime you have four of the same color in a system, either player can call for a catastrophe and all that color is put back into the bank.  

15) goblin981: Build B1 Al'thor
	goblin981: thanks for the advice.  Yes I am learning.  Forgot about catastrophes.

16) SilentTitan: Trade Y2 G2 Silenttitan

17) goblin981: Build B2 Al'thor

18) SilentTitan: Discover Y2 Silenttitan G1 Sigmacray

19) goblin981: Trade B2 Y2 Al'thor

20) SilentTitan: Build G1 Silenttitan

21) goblin981: Trade Y2 R2 Al'thor

22) SilentTitan: Build Y2 Silenttitan

23) goblin981: Build B2 Al'thor

24) SilentTitan: Build Y2 Sigmacray

25) goblin981: Trade B3 Y3 Goblin981

26) SilentTitan: Move Y2 Sigmacray Hoth

27) goblin981: Build Y3 Goblin981

28) SilentTitan: Move Y2 Hoth Goblin981
Catastrophe Goblin981 Yellow

29) goblin981: Trade B2 Y2 Al'thor

30) SilentTitan: Sacrifice Y2 Silenttitan
Move Y2 Sigmacray Hoth
Move Y2 Hoth Goblin981

31) goblin981: Build B2 Goblin981

32) SilentTitan: Sacrifice R2 Silenttitan
Attack B1 Goblin981 N
Attack B2 Goblin981 N



17484)
Started: 2010.10.11, Ended: 2010.10.24
Participants: Tank_7 (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) Tank_7: Homeworld B2 Y1 G3

3) TwoShort: Build G1 Twoshort

4) Tank_7: Build G1 Tank_7

5) TwoShort: Trade G1 Y1 Twoshort

6) Tank_7: Discover G1 Tank_7 B3 Meklon

7) TwoShort: Build Y1 Twoshort

8) Tank_7: Build G1 Meklon

9) TwoShort: Build Y2 Twoshort

10) Tank_7: Build G1 Tank_7

11) TwoShort: Build G2 Twoshort

12) Tank_7: Trade G3 Y3 Tank_7

13) TwoShort: Discover Y1 Twoshort G2 Grogar

14) Tank_7: Move Y3 Tank_7 Meklon

15) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y2 Grogar
Build Y3 Twoshort

16) Tank_7: Build G2 Tank_7

17) TwoShort: Sacrifice Y2 Twoshort
Discover G2 Twoshort Y2 Yolonda
Discover Y2 Grogar G3 Greenland

18) Tank_7: Trade G2 R2 Tank_7

19) TwoShort: Sacrifice G2 Yolonda
Build Y2 Greenland
Build Y3 Greenland

20) Tank_7: Build G2 Tank_7

21) TwoShort: Trade Y3 R3 Twoshort

22) Tank_7: Trade G2 R2 Tank_7

23) TwoShort: Move Y3 Greenland Tank_7

24) Tank_7: Move Y3 Meklon Tank_7

25) TwoShort: Sacrifice R3 Twoshort
Attack Y3 Tank_7
Attack R2 Tank_7
Attack R2 Tank_7
	Tank_7: gg :)

26) Tank_7: Build G2 Tank_7
	TwoShort: thanks for the game

27) TwoShort: Sacrifice R2 Tank_7
Attack G1 Tank_7
Attack G2 Tank_7



17673)
Variants: "Hard time"
Started: 2010.10.12, Ended: 2010.10.12
Participants: goblin981 (S), SilentTitan (N)
Winner: SilentTitan



17670)
Variants: "Hard time"
Started: 2010.10.12, Ended: 2010.10.17
Participants: dlwillson (S), goblin981 (N)
Winner: dlwillson

1) goblin981: Homeworld R1 B2 G3

2) dlwillson: H R3 B1 G3

3) goblin981: Build G1 Goblin981

4) dlwillson: B G1 Dlwillson

5) goblin981: Trade G1 Y1 Goblin981

6) dlwillson: T G1 Y1 Dlwillson

7) goblin981: Discover Y1 Goblin981 Y3 Rygal-v

8) dlwillson: B G1 Dlwillson

9) goblin981: Build G1 Goblin981

10) dlwillson: T G1 B1 Dlwillson

11) goblin981: Trade G1 R1 Goblin981

12) dlwillson: B B1 Dlwillson

13) goblin981: Discover Y1 Rygal-v Y1 Barkor

14) dlwillson: D B1 Dlwillson R2 Armor
	dlwillson: How many games have you played?

15) goblin981: Build R1 Goblin981

16) dlwillson: B B2 Dlwillson

17) goblin981: Discover Y1 Barkor G3 Lyon

18) dlwillson: D B1 Dlwillson R2 Shield

19) goblin981: Trade R1 Y1 Goblin981
	dlwillson: You probably don't want to do that.
	goblin981: you're right, thanks. 

20) dlwillson: B G1 Dlwillson

21) goblin981: Move R1 Goblin981 Lyon

22) dlwillson: B B2 Dlwillson

23) goblin981: Build Y2 Lyon

24) dlwillson: S G3 Dlwillson
Build B3 Armor
B B3 Shield
B B3 Shield

25) goblin981: Build Y2 Goblin981

26) dlwillson: S B2 Dlwillson
T B3 G3 Shield
T B3 Y3 Shield

27) goblin981: Trade Y2 B2 Goblin981

28) dlwillson: S G3 Shield
B B3 Dlwillson
B Y2 Dlwillson
B B3 Shield

29) goblin981: Move B2 Goblin981 Lyon

30) dlwillson: S B2 Dlwillson
T B3 G3 Dlwillson
T B3 R3 Armor

31) goblin981: Discover B2 Lyon B2 Kilzar

32) dlwillson: M Y1 Dlwillson Armor

33) goblin981: Trade B2 G2 Kilzar

34) dlwillson: S G3 Dlwillson
B Y2 Shield
B Y3 Armor
B Y3 Dlwillson

35) goblin981: Move Y2 Lyon Kilzar

36) dlwillson: S Y2 Shield
D Y3 Shield R3 Sword
M B3 Shield Sword

37) goblin981: Sacrifice G2 Kilzar
Build Y2 Goblin981
Build G1 Goblin981
	goblin981: how do you sacrifice?  I can't get it to work.
	dlwillson: S ship system
Example: s g3 dlwillson
You have to have the ship to sac, of course...
	goblin981: hmm still can't get it.  here's what i'm typing:

s y2 lyon
build r1 lyon
build r2 lyon
	dlwillson: To get two builds, you have to sac a g2. If you sac a y2, you get two moves.
	goblin981: oh ok, didn't realise it was that specific. Thanks. 

38) dlwillson: S Y2 Dlwillson
M Y3 Sword Goblin981
M B3 Sword Goblin981

39) goblin981: Attack B3S Goblin981
	dlwillson: One way to win the game is to move in with 2 big ships when the other guy can only capture 1 at a time.
	goblin981: which it looks like you're about to do.

40) dlwillson: S R3 Armor
A G3 Goblin981
A B3 Goblin981
A Y2 Goblin981

41) goblin981: Build G1 Goblin981

42) dlwillson: T Y3 R3 Goblin981

43) goblin981: Build Y2 Goblin981

44) dlwillson: B Y3 Goblin981
C Goblin981 Y

45) goblin981: Trade G1 Y1 Goblin981

46) dlwillson: S R3 Goblin981
A Y1 Goblin981
A G1 Goblin981
Pass

	dlwillson: Good game. Challenge me to an unrated game and I'll teach you what I know.


17675)
Started: 2010.10.12, Ended: 2010.11.4
Participants: TwoShort (S), shmil1 (N)
Winner: TwoShort

1) shmil1: Homeworld B3 G2 Y3

2) TwoShort: Homeworld R1 B2 G3
	TwoShort: Howdy

3) shmil1: Build Y1 Shmil1

4) TwoShort: Build G1 Twoshort

5) shmil1: Build Y1 Shmil1

6) TwoShort: Trade G1 Y1 Twoshort

7) shmil1: Trade Y1 G1 Shmil1

8) TwoShort: Build G1 Twoshort

9) shmil1: Trade Y1 B1 Shmil1

10) TwoShort: Discover G1 Twoshort Y3 Yolonda

11) shmil1: Build B1 Shmil1

12) TwoShort: Build G1 Twoshort

13) shmil1: Trade B1 R1 Shmil1

14) TwoShort: Build G2 Yolonda

15) shmil1: Build G2 Shmil1

16) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Twoshort
Build G3 Yolonda

17) shmil1: Discover G1 Shmil1 Y1 Slunce

18) TwoShort: Discover G2 Yolonda B2 Borbor

19) shmil1: Move G1 Slunce Yolonda

20) TwoShort: Sacrifice G3 Twoshort
Build G3 Borbor
Build Y1 Twoshort
Pass

21) shmil1: Discover B1 Shmil1 Y1 Slunce2

22) TwoShort: Discover Y1 Twoshort B3 Bozon

23) shmil1: Move B1 Slunce2 Yolonda

24) TwoShort: Trade G2 R2 Borbor

25) shmil1: Build G2 Yolonda
Catastrophe Yolonda Green

26) TwoShort: Build G1 Borbor



17687)
Started: 2010.10.12, Ended: 2010.10.15
Participants: TwoShort (S), goblin981 (N)
Winner: TwoShort

1) goblin981: Homeworld G1 B2 Y3

2) TwoShort: Homeworld R1 B3 G3

3) goblin981: Build Y1 Goblin981

4) TwoShort: Build G1 Twoshort

5) goblin981: Trade Y1 G1 Goblin981

6) TwoShort: Build G2 Twoshort

7) goblin981: Build G2 Goblin981

8) TwoShort: Trade G2 Y2 Twoshort

9) goblin981: Trade G2 R2 Goblin981

10) TwoShort: Build G2 Twoshort

11) goblin981: Build R1 Goblin981

12) TwoShort: Discover G1 Twoshort B2 Bluestar

13) goblin981: Discover R2 Goblin981 Y3 Pxiii

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G2 Bluestar
Build G3 Twoshort

15) goblin981: Move G1 Goblin981 Pxiii

16) TwoShort: Trade G2 R2 Bluestar

17) goblin981: Build Y1 Goblin981

18) TwoShort: Trade G2 Y2 Bluestar

19) goblin981: Discover G1 Pxiii R1 Reddy

20) TwoShort: Build G2 Bluestar
	TwoShort: I can just capture that; if you want to take an undo...   In any case, I've been enjoying the quick game, but now I'm headed to lunch...
	goblin981: you're right, that was a bad move.
I'm headed out for food too.  Back in an hour or so.



21) goblin981: Move R2 Pxiii Reddy

22) TwoShort: Discover G2 Bluestar G3 Greedy

23) goblin981: Build R2 Reddy

24) TwoShort: Move R2 Bluestar Reddy
Catastrophe Reddy Red

25) goblin981: Build R1 Goblin981

26) TwoShort: Build G1 Bluestar

27) goblin981: Build R2 Goblin981

28) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Greedy
Build G3 Twoshort

29) goblin981: Move R2 Goblin981 Greedy

30) TwoShort: Trade G2 R2 Bluestar

31) goblin981: Attack G2S Greedy

32) TwoShort: Sacrifice R2 Bluestar
Attack R2 Greedy
Attack G2 Greedy

33) goblin981: Build R2 Goblin981

34) TwoShort: Sacrifice Y2 Bluestar
Move R2 Greedy Goblin981
Move G2 Greedy Goblin981
Catastrophe Goblin981 Red

35) goblin981: Move Y3 Goblin981 Greedy

36) TwoShort: Trade G2 R2 Twoshort

37) goblin981: Move Y3 Greedy Bluestar

38) TwoShort: Sacrifice R2 Twoshort
Attack Y1 Goblin981
Pass



17688)
Started: 2010.10.12, Ended: 2010.10.16
Participants: dethdukk (S), daselva (N)
Winner: daselva

1) daselva: Homeworld B2 R1 G3



17641)
Variants: "Hard time"
Started: 2010.10.12, Ended: 2010.10.15
Participants: daselva (S), Lurch (N)
Winner: daselva



17692)
Variants: "Hard time"
Started: 2010.10.13, Ended: 2010.10.13
Participants: AdamBadura (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 G2 B3

2) AdamBadura: Homeworld B2 G3 R3

3) mneme: Build B1 Mneme

4) AdamBadura: Build R1 Adambadura

5) mneme: Build B1 Mneme

6) AdamBadura: Trade R1 B1 Adambadura

7) mneme: Trade B3 Y3 Mneme

8) AdamBadura: Build B2 Adambadura

9) mneme: Sacrifice Y3 Mneme
Discover B1 Mneme G3 Its
Discover B1 Its Y1 Atrap
Move B1 Atrap Adambadura
Catastrophe Adambadura B

	mneme: Good game.

	AdamBadura: That was something I didn't expect. Sure I knew you could do that but I though that sacrificing 3-ship in early game is to much to make it worth. Somehow I skipped asking myself how would the board look like after that move.

You humiliated me. But I deserved that. Thanks for the lesson!
	mneme: You're welcome! I think, in a sense, everyone needs to get hit with this sort of "fool's mate" at some point in order to remember to make sure you never leave yourself in a position where you can be denied both yellow and blue.  I think I've been hit with it once and executed it twice.  Hopefully, the next game we play will be more interesting; I think you had a good position before you made the mistake of swapping to blue!


17697)
Variants: "Hard time"
Started: 2010.10.14, Ended: 2010.10.20
Participants: TwoShort (S), AdamBadura (N)
Winner: TwoShort

1) AdamBadura: Homeworld G3 B1 R3

2) TwoShort: Homeworld B1 G2 B3 *

3) AdamBadura: Build R1 Adambadura

4) TwoShort: Build B1 Twoshort

5) AdamBadura: Trade R3 B3 Adambadura

6) TwoShort: Trade B3 Y3 Twoshort

7) AdamBadura: Build B2 Adambadura

8) TwoShort: Build B2 Twoshort

9) AdamBadura: Trade B3 Y3 Adambadura

10) TwoShort: Trade B2 G2 Twoshort

11) AdamBadura: Discover B2 Adambadura G2 Drydocks

12) TwoShort: Build B2 Twoshort

13) AdamBadura: Build B2 Drydocks

14) TwoShort: Discover B1 Twoshort Y3 Yolonda

15) AdamBadura: Trade B2 Y2 Drydocks

16) TwoShort: Move G2 Twoshort Yolonda

17) AdamBadura: Build R1 Adambadura

18) TwoShort: Trade B2 R2 Twoshort

19) AdamBadura: Move R1 Adambadura Drydocks

20) TwoShort: Build B2 Yolonda

21) AdamBadura: Build B2 Drydocks

22) TwoShort: Discover B2 Yolonda Y2 Yelly

23) AdamBadura: Trade B2 Y2 Drydocks

24) TwoShort: Build G1 Yolonda

25) AdamBadura: Build R1 Adambadura

26) TwoShort: Move G1 Yolonda Yelly

27) AdamBadura: Build R2 Adambadura

28) TwoShort: Build G1 Yelly

29) AdamBadura: Move R2 Adambadura Yelly

30) TwoShort: Sacrifice R2 Twoshort
Attack R2 Yelly
Pass

31) AdamBadura: Discover Y2 Drydocks G3 Shipyard

32) TwoShort: Build G1 Yolonda

33) AdamBadura: Discover Y2 Drydocks G3 Watchtower

34) TwoShort: Sacrifice G2 Yolonda
Build B2 Yelly
Build B3 Yolonda

35) AdamBadura: Build B3 Drydocks

36) TwoShort: Move B3 Yolonda Twoshort

37) AdamBadura: Trade B2 G2 Drydocks

38) TwoShort: Sacrifice Y3 Twoshort
Move G1 Yelly Yolonda
Move G1 Yolonda Drydocks
Move G1 Yolonda Drydocks
Catastrophe Drydocks Green

39) AdamBadura: Discover R1 Adambadura G2 Betterplace

40) TwoShort: Build B2 Twoshort

41) AdamBadura: Build R1 Adambadura

42) TwoShort: Build B3 Yelly

43) AdamBadura: Build R2 Betterplace

44) TwoShort: Sacrifice G1 Yelly
Build B3 Yolonda

45) AdamBadura: Build Y1 Adambadura

46) TwoShort: Sacrifice B2 Yelly
Trade B2 G2 Yelly
Trade B3 Y3 Twoshort

47) AdamBadura: Move Y1 Adambadura Betterplace

48) TwoShort: Build G1 Yelly

49) AdamBadura: Trade R1 G1 Adambadura

50) TwoShort: Move G1 Yelly Adambadura

51) AdamBadura: Move G1 Adambadura Betterplace

52) TwoShort: Sacrifice G2 Yelly
Build G1 Adambadura
Build G2 Adambadura
Catastrophe Adambadura Green

	AdamBadura: You are beyond my reach... ;)


17685)
Variants: "Hard time"
Started: 2010.10.15, Ended: 2010.10.18
Participants: goblin981 (S), shmil1 (N)
Winner: shmil1

1) shmil1: Homeworld G1 B2 R3

2) goblin981: Homeworld B2 G3 R3

3) shmil1: Build R1 Shmil1

4) goblin981: Build R1 Goblin981

5) shmil1: Trade R1 Y1 Shmil1

6) goblin981: Trade R1 Y1 Goblin981

7) shmil1: Build R1 Shmil1

8) goblin981: Build Y1 Goblin981

9) shmil1: Build Y2 Shmil1

10) goblin981: Discover Y1 Goblin981 B1 Protar-vi

11) shmil1: Build Y2 Shmil1

12) goblin981: Build Y2 Goblin981

13) shmil1: Discover Y2 Shmil1 G3 Zelena

14) goblin981: Build Y3 Goblin981

15) shmil1: Sacrifice Y2 Shmil1
Move Y2 Zelena Protar-vi
Move Y2 Protar-vi Goblin981
Catastrophe Goblin981 Yellow

16) goblin981: Build R1 Goblin981

17) shmil1: Discover R1 Shmil1 Y3 Zluta

18) goblin981: Trade R3 G3 Goblin981

19) shmil1: Move R1 Zluta Protar-vi

20) goblin981: Trade R1 Y1 Goblin981
	shmil1: ovladnout protar vi

21) shmil1: Attack Y1 Protar-vi

22) goblin981: Move G3 Goblin981 Protar-vi

23) shmil1: Move R1 Protar-vi Goblin981

24) goblin981: Build Y2 Goblin981

25) shmil1: Attack Y1 Goblin981

26) goblin981: Trade Y2 R2 Goblin981

27) shmil1: Build R1 Goblin981

28) goblin981: Attack R1N Goblin981

29) shmil1: Build R1 Goblin981
Catastrophe Goblin981 Red
	shmil1: nice game :)



17714)
Variants: "Hard time"
Started: 2010.10.15, Ended: 2010.11.22
Participants: fnord (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B3 R2 G3

2) fnord: Homeworld Y2 B1 G3

3) SilentTitan: Build G1 Silenttitan
	fnord: *waves to the assembled audience*

4) fnord: Build G1 Fnord

5) SilentTitan: Trade G1 Y1 Silenttitan

6) fnord: Discover G1 Fnord G3 Eris

7) SilentTitan: Build G1 Silenttitan

8) fnord: Build G1 Fnord

9) SilentTitan: Trade G3 Y3 Silenttitan

10) fnord: Trade G1 B1 Fnord

11) SilentTitan: Discover Y1 Silenttitan Y1 Onestar

12) fnord: Build B1 Fnord

13) SilentTitan: Build Y1 Silenttitan

14) fnord: Move B1 Fnord Eris

15) SilentTitan: Build Y2 Silenttitan

16) fnord: Build B2 Eris

17) SilentTitan: Sacrifice G1 Silenttitan
Build Y2 Onestar

18) fnord: Trade B2 R2 Eris

19) SilentTitan: Discover Y2 Onestar G2 Twostar

20) fnord: Build B2 Fnord

21) SilentTitan: Trade Y3 G3 Silenttitan

22) fnord: Trade B2 G2 Fnord

23) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Twostar
Build Y3 Onestar
Build Y3 Silenttitan

24) fnord: Build G1 Eris

25) SilentTitan: Discover Y2 Twostar R3 Tristar

26) fnord: Move G3 Fnord Tristar

27) SilentTitan: Discover Y2 Tristar R2 Ragestar

28) fnord: Build G1 Tristar

29) SilentTitan: Trade Y3 R3 Silenttitan

30) fnord: Sacrifice G3 Tristar
Build G2 Tristar
Build G3 Tristar
Build G3 Fnord

31) SilentTitan: Build Y3 Twostar

32) fnord: Build B2 Fnord

33) SilentTitan: Move Y3 Twostar Eris

34) fnord: Build B2 Eris

35) SilentTitan: Discover Y3 Onestar R3 Volcanoshore

36) fnord: Discover B1 Fnord B3 Discordia

37) SilentTitan: Move Y3 Eris Fnord

38) fnord: Build B2 Fnord

39) SilentTitan: Trade Y3 B3 Fnord
Catastrophe Fnord Blue

40) fnord: Discover G2 Fnord Y3 Sink

41) SilentTitan: Sacrifice Y3 Twostar
Move Y3 Volcanoshore Fnord
Move Y1 Onestar Eris
Move Y1 Eris Fnord

42) fnord: Trade B1 Y1 Eris

43) SilentTitan: Sacrifice R3 Silenttitan
Attack G3 Fnord South
Pass
Pass

	fnord: Thought you might do that, but was wondering why you didn't do it in the previous turn.

Well done, I certainly must learn to watch out for being monopolized out of any technology, especially travel.  That was quite brutal.
	SilentTitan: I don't believe I could get three yellow in there last turn.... I learned that trick from TooShort.  he beat me the exact same way


17719)
Variants: "Unrated"
Started: 2010.10.16, Ended: 2010.10.20
Participants: sompm (S), Gidaio (N)
Winner: Gidaio

1) Gidaio: Homeworld Y3 G1 B3

2) sompm: Homeworld G3 Y2 B3

3) Gidaio: Build B1 Gidaio (n)

4) sompm: Build B1 Sompm

5) Gidaio: Build B1 Gidaio (n)

6) sompm: Build B2 Sompm

7) Gidaio: Discover B1 Gidaio G2 Pachinko

8) sompm: Discover B2 Sompm Y1 Fakaar

9) Gidaio: Build B2 Pachinko

10) sompm: Trade B2 G2 Fakaar

11) Gidaio: Trade B1 Y1 Pachinko

12) sompm: Build B1 Sompm

13) Gidaio: Trade B2 R2 Pachinko

14) sompm: Trade B1 R1 Sompm

15) Gidaio: Move R2 Pachinko Fakaar

16) sompm: Discover G2 Fakaar Y2 Runningrunning

17) Gidaio: Build Y1 Pachinko

18) sompm: Build B1 Sompm

19) Gidaio: Build Y2 Pachinko

20) sompm: Build R1 Sompm

21) Gidaio: Move Y2 Pachinko Fakaar

22) sompm: Trade B3 Y3 Sompm

23) Gidaio: Build Y3 Pachinko

24) sompm: Build B2 Sompm

25) Gidaio: Sacrifice Y3 Pachinko
Move B1 Gidaio Pachinko
Move B1 Pachinko Fakaar
Move B1 Fakaar Sompm
Catastrophe Sompm Blue

26) sompm: Build Y3 Sompm

27) Gidaio: Move Y2 Fakaar Sompm
Catastrophe Sompm Yellow

28) sompm: Discover G2 Runningrunning B1 Youjerk
	Gidaio: Ha! Take THAT!

29) Gidaio: Move R2 Fakaar Sompm

30) sompm: Build G1 Youjerk
	Gidaio: In other words, lol.
	sompm: except now it won't happen again. dork.
	sompm: Woah. Hi. There you are.

31) Gidaio: Attack R1 Sompm

32) sompm: Build R1 Sompm
Catastrophe Sompm R
	Gidaio: Haha!
	sompm: good game. Seriously, how the frick did that happen?

	sompm: I can't beat me, I QUIT.
	Gidaio: ...Nice?


17709)
Started: 2010.10.17, Ended: 2010.10.21
Participants: TwoShort (S), goblin981 (N)
Winner: TwoShort

1) goblin981: Homeworld R1 G2 B3

2) TwoShort: Homeworld B1 R3 G3

3) goblin981: Build B1 Goblin981

4) TwoShort: Build G1 Twoshort

5) goblin981: Build B1 Goblin981

6) TwoShort: Trade G1 Y1 Twoshort

7) goblin981: Trade B1 Y1 Goblin981

8) TwoShort: Build G1 Twoshort

9) goblin981: Discover B1 Goblin981 G3 Egg

10) TwoShort: Build G1 Twoshort

11) goblin981: Trade B1 G1 Egg

12) TwoShort: Discover G1 Twoshort B2 Bluestar

13) goblin981: Build Y1 Goblin981

14) TwoShort: Build G2 Bluestar

15) goblin981: Discover Y1 Goblin981 B3 Blutak

16) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Twoshort
Build G3 Twoshort

17) goblin981: Discover Y1 Blutak Y2 Dark

18) TwoShort: Trade G2 Y2 Bluestar

19) goblin981: Build Y2 Goblin981

20) TwoShort: Sacrifice G3 Twoshort
Build Y3 Twoshort
Build Y3 Bluestar
Build Y3 Bluestar

21) goblin981: Sacrifice Y2 Goblin981
Move Y1 Goblin981 Egg
M Y1 Egg Bluestar
C Bluestar Y

22) TwoShort: Move Y3 Twoshort Bluestar

23) goblin981: Build G2 Egg

24) TwoShort: Discover G2 Bluestar B3 Bonanza

25) goblin981: Move Y1 Dark Egg

26) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Bonanza
Build Y1 Bluestar

27) goblin981: Build Y2 Egg

28) TwoShort: Trade G2 R2 Bonanza

29) goblin981: Discover G2 Egg Y2 Sheep

30) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build G2 Bluestar
Build G3 Bonanza

31) goblin981: Sacrifice G2 Sheep
Build B1 Goblin981
Build B1 Goblin981

32) TwoShort: Trade G3 B3 Bonanza

33) goblin981: Trade B3 Y3 Goblin981

34) TwoShort: Sacrifice Y2 Twoshort
Move G3 Bonanza Goblin981
Move B3 Bonanza Goblin981

35) goblin981: Attack G3 Goblin981

36) TwoShort: Sacrifice R2 Bonanza
Attack G3 Goblin981
Attack Y3 Goblin981

37) goblin981: Build Y2 Egg

38) TwoShort: Build B2 Goblin981
Catastrophe Goblin981 Blue



17722)
Variants: "Unrated"
Started: 2010.10.17, Ended: 2010.10.20
Participants: goblin981 (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) goblin981: Homeworld G3 B2 Y3
	dlwillson: I have first turn. This is my favorite starting position. Now, you choose from banker, fortress, or goldilocks for a tiny universe.
	goblin981: what does each involve?
btw thanks for teaching me.
	dlwillson: The g3 is a staple. Blue is pretty desirable in nearly every strategy, leaving you to choose between red and yellow. Each has advantages and disadvantages. 

3) dlwillson: Build G1 Dlwillson
	dlwillson: Banker connects to 3's. Fortress to1's. Goldie to 2's. Try to find the Homeworlds strategy page. If you can't find it, let me know and I'll send you a link.
	dlwillson: That works, though usually, the g3 is taken as a ship. Want to take it back or forge ahead? You have a decent shot at a TwoShort, a yellow lockout, which is a flat game-winner, played right.
	dlwillson: It goes like this. G1 for me. Y1 for you. If I don't trade to y1, you build it, and I'm locked out of yellow ships. If I do trade, you get to build a y2.
	goblin981: I'll stick with this, (and possibly find out by it's not the best start)
I found the strategy page and am reading.
What's TwoShort and yellow lockout?
	dlwillson: Taking a Y3 is a fine choice. The thing you don't get, is the potential to do 3 builds in one turn by sacrificing the G3. It's not a big deal in every game, and not in most games against vets, because they watch for it.
	dlwillson: TwoShort is the top guy on the ladder right now.
I am taking some liberty by calling a yellow lockout a TwoShort, but not much. In many, many games, TwoShort goes straight for yellow denial. And if he gets it, he'll then tell you how many moves until he wins. That's how good he's gotten at playing that strategy.
	dlwillson: It's a pretty simple strategy, really. If you don't have enough yellow to reach me, it really doesn't matter what you do have. All I have to do is force-feed you the colors of your planets until they pop, and keep you from getting any yellow. It can be a long process.
	dlwillson: OK, the non-thinking round. We each build a small of our chosen ship type. I've never seen a time when turn 2 is anything else.

4) goblin981: Build Y1 Goblin981

5) dlwillson: Build G1 Dlwillson
	goblin981: I understand banker but why are fortress and goldilocks called that?
	dlwillson: And lots of thinking this round. You have a Y3, which makes me cautious. You can cross the universe in one turn. I can't. I can build three in one turn. You can't. What I'm planning right now, is how to beat you to larges, lock you out of a color, not get locked out of any colors, and advance on you, all at the same time.
	dlwillson: So, I'll build another green, because you don't have green, and I have enough yellow to spread my green out and setup for the triple build that will carry me to a second battleship before you get one.
	dlwillson: Also, it'd be nice to have red, but I'll let you lead on that. I'll have lots of spare ships after this. I just hope you don't go red when I DON'T have spares.

6) goblin981: Build Y1 Goblin981
	dlwillson: If you had a green, that would've been suicide, but your two away from a toss-able green. One move to trade to green. One move to make a third ship. By then, this opportunity to RPG (rocket-propelled green) will be over.
	goblin981: hmm, as I see it, I can lock you out of yellow or prevent you from locking me out of green.
What do you suggest?


	dlwillson: Oh, sorry, I meant to coach you on your turn, but I got busy...

You should absolutely go for yellow denial this turn. If we both get our locks, you win the game in the long term.
	goblin981: great, thanks. 

7) dlwillson: Discover G1 Dlwillson Y2 Slick
	dlwillson: So, now I'm spreading out my greens. Remember, my goal is to triple build. I'll go to a Y2, not intending to stay long.

8) goblin981: Discover Y1 Goblin981 G1 Green
	dlwillson: Fine for you, I stood up a Y2. If I keep it, your that much closer to your second battleship. If I don't, you look at your yellow denial strategy again.
	dlwillson: You must trade or split up your yellows. Trade Y3 to G3? Maybe. Send out a Y1, and keep building slow... Maybe. The G3 forces the split next turn. The split now, allows the trade next turn, or continued slow building. So, exploring seems better. But, what to discover?
	dlwillson: If you discover a G1, you can build more Y at it right away. OOPS! Part of my strategy is cramping your style there. Trading into sac'able G sometime in the future looks that much better.
	dlwillson: Discovering an R1 lets you capture an inbound small, but that's all, and the inbound ships won't always be small, and then the red planet becomes a liability.
	dlwillson: Discovering a Y1 would clear some stuph out of your way for your second battleship, but there are no Y1's left...  And, you should be starting to see why it's called "Fortress". The satellite system options get limited fast.
	dlwillson: Discovering a Blue gives you the ability to trade later. Your intent is to build lots of yellow ships, so there's a good chance you'll have two yellows at this first planet sometime soon, and having the option to trade one to another color (maybe green, maybe red) would be nice then. Since you're yellow, you'll also have the option to split when you get to two. Your next planet should probably be blue.
	dlwillson: After all that analysis, you need to make sure you're not giving me something by standing up a blue. Are you? No. I don't have any blue, and there're plenty of small blues in the bank, anyway. I don't have a gun, and if I move in on you, you can go for yours before I go for mine.
	dlwillson: Holy carp. We should print this, it's turning into a strategy guide...

9) dlwillson: Build G2 Slick
	dlwillson: Oops. Looks like I missed a G1 in my analysis. However, standing up the green, rather than a blue, definitely gives me something. I can build a g2 now, and it's a no-brainer to do so at the forward system.

10) goblin981: Build Y2 Green
	dlwillson: Lots to think about. I'll be back in a couple hours. Y2 looks good to you, no matter what, but what then, and keep watching for the guns to come out. (red ships)

11) dlwillson: D G2 Slick B1 Sticky

12) goblin981: Trade Y3 G3 Goblin981

13) dlwillson: S G3 Dlwillson
B G2 Sticky
B G2 Slick
B G3 Dlwillson
	dlwillson: I'm back on my phone. It's harder to type here. On my next turn I'll be making 3 greens. Your goal is to keep me from trading any of them for yellow.
	dlwillson: What if you trade Y3 for G3 this turn?

14) goblin981: Sacrifice G3 Goblin981
Build Y2 Goblin981
Build Y3 Goblin981
Build Y3 Green

15) dlwillson: Build G3 Sticky
	dlwillson: That was as planned. Now, you can free build a Y2, or sac the G3 to build a Y2 and two of the Y3's.
	dlwillson: Either one is safe from catastrophe for now. Both keep me out of Y, unless I trade my large. 
	dlwillson: Hmmm.... sac'ing the g gets you the first second large, but I'll build the g3 and have two, too.
	dlwillson: I think sac the g3 is the better plan. You should be able to keep yellow control, if I free-build it.
	dlwillson: When distributing your builds, if all other things are equal setup three different sizes in a system where you can trade, to maximize your options.
	dlwillson: Similarly, when you are trying to control access to a color, but you need to trade, look at what your opponent has available to trade, and offer him a size that he doesn't have, or won't want to give up.

16) goblin981: Trade Y1 R1 Goblin981

17) dlwillson: T G1 R1 Dlwillson
	dlwillson: I want to swap into that last Y3, but not in my homeworld, because I have a yellow star, and adding yellow to my homeworld would make it easier for you to cause a catastrophe there.
	dlwillson: You probably want to consider the fact that neither of us has red right now, so for Y2, Y1, G2, you could kill off one of my stars.
	dlwillson: Or, you can try to preserve your yellow near-monopoly.
Or, you can get a gun (red ship) and start pushing me around, if I don't get one, too.
	dlwillson: I have to think about your move. You don't have a monopoly on yellow, but you can beat me to the Y3, by discovering a Y3 star. But the Y3 star wouldn't do you any immediate good.
	dlwillson: You can kill my slick system the same way, too.
You have lots of possibilities, but nothing stands out as the best one. I'll think a bit and come back, unless you have a great idea.

18) goblin981: Move Y3 Green Slick
	dlwillson: I really want a yellow ship, but I can't ignore the gun rule.

19) dlwillson: T G3 Y3 Sticky
	goblin981: gun rule?

20) goblin981: Sacrifice R1 Goblin981
Attack G1 Slick
	goblin981: if I move a red ship into your system, such as sticky, can you attack me? or is the tech only mine?
	dlwillson: When the other guy goes for his gun (first red ship), go for yours, or get ready to get shot down.
	dlwillson: If you move your r1 to sticky, I can capture it, but only by sacrificing my r1 to get an attack anywhere.
	dlwillson: Your Y3 at slick is relatively safe, because even if I shoot my gun, it's too big for any of my slick ships to attack.

21) dlwillson: T G2 B2 Sticky
	dlwillson: I'm betting it was a bluff, and you're not really willing to give up your last red for my G2.
	dlwillson: Now that I've got big yellow, you have a threat to consider. If I sac the y3, I can put both greens in your home system at once.
	dlwillson: You can answer the threat by getting an r2 that you could sacrifice to capture both greens. Or, you can bet I'm not willing to give all that ship up to destroy one star.
	dlwillson: But wait! Even if you trade the y2 for an r2, I can still cat the star. Can you see how?
	dlwillson: So, after lots of thinking, I don't think you can save the green star. I think we'll look at making it expensive and creating a game-winning counter-attack.

22) goblin981: Trade Y2 R2 Goblin981

23) dlwillson: D G2 Slick Y1 Slippery
	goblin981: damn, should've taken the g2, I thought it was mine.
	dlwillson: Yes, and spending your last red to do it shows a surprising lack of foresight. Oh well. 

24) goblin981: Move R2 Goblin981 Slippery

25) dlwillson: M G2 Slippery Goblin981

26) goblin981: Build Y2 Goblin981

27) dlwillson: B G1 Goblin981

28) goblin981: Trade Y2 R2 Goblin981

29) dlwillson: B B1 Sticky

30) goblin981: Attack G2N Goblin981

31) dlwillson: M B1 Sticky Goblin981

32) goblin981: Move R2 Slippery Slick

33) dlwillson: S G3 Dlwillson
B G2 Goblin981
B B1 Goblin981
B B2 Goblin981
C Goblin981 G
C Goblin981 B

	dlwillson: That was definitely the fieriest ending I've ever seen! Wow!
	goblin981: lol damn, blew em both up.
good game, and thanks for the tips.


17642)
Started: 2010.10.17, Ended: 2010.10.23
Participants: rootbier (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld Y3 B2 G3



17702)
Started: 2010.10.17, Ended: 2010.10.23
Participants: mathochist (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 Y1 G3



17683)
Variants: "Hard time"
Started: 2010.10.18, Ended: 2010.11.14
Participants: daselva (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3
	dlwillson: Hi Daselva! Is this a teaching game or do you know the ropes already?

2) daselva: Homeworld R1 B2 G3

3) dlwillson: Build G1 Dlwillson

4) daselva: Build G1 Daselva

5) dlwillson: Trade G1 R1 Dlwillson
	dlwillson: Is this a teaching game or do you know the ropes already?
	daselva: hello dlwilson I know how to play homeworlds but I'm still a new beginner

6) daselva: Trade G1 Y1 Daselva

7) dlwillson: B R1 Dlwillson

8) daselva: Build Y1 Daselva

9) dlwillson: B R2 Dlwillson

10) daselva: Build Y2 Daselva

11) dlwillson: T R2 Y2 Dlwillson

12) daselva: Discover Y1 Daselva G3 S1

13) dlwillson: B R2 Dlwillson

14) daselva: Sacrifice G3 Daselva
Build Y2 S1
Build Y3 S1
Build Y3 Daselva
	dlwillson: You're beating me out of the gate. Good job!

15) dlwillson: D Y2 Dlwillson G2 Frog

16) daselva: Discover Y2 S1 R2 S2

17) dlwillson: B Y3 Frog

18) daselva: Trade Y3 G3 Daselva

19) dlwillson: D Y3 Frog R3 Salamander

20) daselva: Trade Y2 R2 Daselva

21) dlwillson: M R1 Dlwillson Frog

22) daselva: Move R2 Daselva S1

23) dlwillson: B R3 Frog

24) daselva: Build R3 S1

25) dlwillson: T R2 G2 Dlwillson

26) daselva: Discover Y3 S1 R2 S3

27) dlwillson: S G2 Dlwillson
B Y2 Salamander
B Y3 Frog

28) daselva: Build G1 Daselva

29) dlwillson: B G1 Dlwillson

30) daselva: Trade G1 B1 Daselva

31) dlwillson: D R1 Frog B3 Purple

32) daselva: Build B1 Daselva

33) dlwillson: M R3 Frog Purple

34) daselva: Move B1 Daselva S1

35) dlwillson: Trade R1 G1 Purple

36) daselva: Move R3 S1 Frog

37) dlwillson: S R1 Dlwillson
A R3 Frog

38) daselva: Move R2 S1 S3

39) dlwillson: M Y2 Frog Purple

40) daselva: Move Y3 S3 Dlwillson

41) dlwillson: S R3 Frog
A Y3 Dlwillson
Pass
Pass

42) daselva: Build B1 S1

43) dlwillson: B R1 Purple

44) daselva: Build B2 Daselva

45) dlwillson: M R3 Purple S3

46) daselva: Sacrifice Y1 Daselva
Move R2 S3 S1

47) dlwillson: Move Y3 Frog S1

48) daselva: Sacrifice Y1 S1
Move R2 S1 Daselva

49) dlwillson: S Y3 Dlwillson
M R1 Purple Daselva
M R3 S3 Purple
M R3 Purple Daselva
C Daselva R

50) daselva: Trade B2 R2 Daselva

51) dlwillson: T Y2 R2 Purple

52) daselva: Trade B1 Y1 S1

53) dlwillson: S R2 Purple
A B1 S1
A Y1 S1

54) daselva: Trade B1 Y1 Daselva

55) dlwillson: B B1 S1

56) daselva: Trade G3 R3 Daselva

57) dlwillson: Build B1 S1

58) daselva: Move R3 Daselva Dlwillson

59) dlwillson: Sacrifice Y3 Salamander
Move B1 S1 Daselva
Move B1 S1 Daselva
Move B1 S1 Daselva
Catastrophe Daselva B

	daselva: thank you for playing 
	daselva: I've learned with those mistakes I've done
	dlwillson: Very good game. I actually didn't see the big red coming, so it's a good thing I had the gun loaded in time.


17729)
Started: 2010.10.18, Ended: 2010.10.26
Participants: mathochist (S), sompm (N)
Winner: sompm

1) sompm: Homeworld G2 Y1 B3
	sompm: cool name, by the way.



17681)
Variants: "Hard time"
Started: 2010.10.20, Ended: 2010.11.7
Participants: SilentTitan (S), Black_Rabbit (N)
Winner: SilentTitan

1) Black_Rabbit: Homeworld G1 B2 R3

2) SilentTitan: Homeworld B2 R3 G3
	Black_Rabbit: First game here, and I'm a Homeworlds novice.
	SilentTitan: ok... If you have any questions ask... I've been playing for a couple of years. 

3) Black_Rabbit: Build R1 Black_rabbit

4) SilentTitan: Build G1 Silenttitan

5) Black_Rabbit: Trade R1 Y1 Black_rabbit

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Black_Rabbit: Build R1 Black_rabbit

8) SilentTitan: Build G1 Silenttitan

9) Black_Rabbit: Discover R1 Black_rabbit Y3 Arakis

10) SilentTitan: Build G1 Silenttitan

11) Black_Rabbit: Build Y1 Black_rabbit

12) SilentTitan: Build Y2 Silenttitan

13) Black_Rabbit: Build Y2 Black_rabbit

14) SilentTitan: Discover Y2 Silenttitan R1 Charm
	Black_Rabbit: UGH... I see a problem developing.  :)

15) Black_Rabbit: Trade Y2 G2 Black_rabbit

16) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Charm
Build Y2 Charm
Build Y3 Silenttitan

17) Black_Rabbit: Move G2 Black_rabbit Arakis

18) SilentTitan: Build Y3 Silenttitan

19) Black_Rabbit: Move Y1 Black_rabbit Arakis

20) SilentTitan: Sacrifice Y2 Charm
Move Y2 Charm Arakis
Move Y2 Charm Arakis
Catastrophe Arakis Yellow

21) Black_Rabbit: Build Y1 Black_rabbit

22) SilentTitan: Discover Y1 Silenttitan B1 Ball

23) Black_Rabbit: Trade Y1 R1 Black_rabbit

24) SilentTitan: Move G1 Silenttitan Ball

25) Black_Rabbit: Discover R1 Black_rabbit G3 Prime

26) SilentTitan: Build G2 Ball

27) Black_Rabbit: Build Y1 Black_rabbit

28) SilentTitan: Sacrifice G2 Ball
Build Y2 Silenttitan
Build Y2 Ball

29) Black_Rabbit: Move Y1 Black_rabbit Prime

30) SilentTitan: Trade Y2 R2 Ball

31) Black_Rabbit: Build Y2 Black_rabbit

32) SilentTitan: Discover Y3 Silenttitan B1 Cube

33) Black_Rabbit: Build Y2 Black_rabbit

34) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Ball Prime
Move Y1 Prime Black_rabbit
Catastrophe Black_rabbit Yellow

35) Black_Rabbit: Build R1 Black_rabbit
	Black_Rabbit: Yeah, saw that coming.  :)

36) SilentTitan: Build G2 Ball



17728)
Started: 2010.10.20, Ended: 2010.10.26
Participants: sompm (S), rootbier (N)
Winner: sompm



17768)
Variants: "Hard time"
Started: 2010.10.20, Ended: 2010.11.7
Participants: TwoShort (S), dlwillson (N)
Winner: TwoShort

1) dlwillson: H B2 R1 G3

2) TwoShort: Homeworld B1 R3 G3

3) dlwillson: B G1 Dlwillson

4) TwoShort: Build G1 Twoshort

5) dlwillson: T G1 Y1 Dlwillson

6) TwoShort: Trade G1 Y1 Twoshort

7) dlwillson: B G1 Dlwillson

8) TwoShort: Build G1 Twoshort

9) dlwillson: T G1 B1 Dlwillson

10) TwoShort: Build Y1 Twoshort

11) dlwillson: B Y2 Dlwillson

12) TwoShort: Build Y2 Twoshort

13) dlwillson: B Y2 Dlwillson

14) TwoShort: Discover Y1 Twoshort G2 Grogar

15) dlwillson: D Y1 Dlwillson G3 G802

16) TwoShort: Build Y3 Grogar

17) dlwillson: B Y3 G802

18) TwoShort: Discover Y1 Twoshort G2 Greenonia

19) dlwillson: D Y2 Dlwillson Y3 Y9t

20) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Grogar G802
Move Y1 Greenonia G802
Catastrophe G802 Yellow

21) dlwillson: B Y1 Dlwillson

22) TwoShort: Build G1 Twoshort

23) dlwillson: Build B1 Dlwillson

24) TwoShort: Trade G1 Y1 Twoshort

25) dlwillson: D Y1 Dlwillson G3 G901

26) TwoShort: Build G1 Twoshort

27) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Y9t
Build Y2 G901
Build Y3 Dlwillson

28) TwoShort: Discover G1 Twoshort G2 Greenonia

29) dlwillson: D B1 Dlwillson G3 G9l

30) TwoShort: Sacrifice G3 Twoshort
Build G1 Greenonia
Build G2 Twoshort
Build G3 Twoshort

31) dlwillson: B B2 G9l

32) TwoShort: Trade G2 R2 Twoshort

	dlwillson: Sorry for the delay of game, but this is kind of a sticky situation. Wish I had my plastic, so I could set it up.
	TwoShort: No problem.  I'm just glad it looks sticky to you too :)
	dlwillson: Finally got time to set up the plastic, but it's not helping... :-(   :-)   :-/ ...
	dlwillson: Rats! I thought I still had a couple hours. I'm so sorry for the pointless delay.
	dlwillson: We don't live that far apart. We can play it out in plastic, if you like, or do it again here, rated, unrated, or ladder, or we can leave it alone, according to your preference. Again, I'm really sorry for timing out on you.
	TwoShort: Don't worry about it; I've accidentally hit hard time a few times myself.  I'd just as soon play a whole new game whenever you're up for it...


17772)
Variants: "No undo, Unrated"
Started: 2010.10.21, Ended: 2010.10.31
Participants: Gidaio (S), sompm (N)
Winner: sompm

1) sompm: Homeworld B1 Y2 G3

2) Gidaio: Homeworld Y2 B3 G3

3) sompm: Build G1 Sompm
	Gidaio: Alright, let's do this!

4) Gidaio: Build G1 Gidaio

5) sompm: Trade G1 B1 Sompm

6) Gidaio: Build G1 Gidaio

7) sompm: Build G1 Sompm

8) Gidaio: Discover G1 Gidaio Y1 China

9) sompm: Build G2 Sompm

10) Gidaio: Sacrifice G3 Gidaio
Build G2 Gidaio
Build G2 Gidaio
Build G3 China

11) sompm: Discover G1 Sompm Y3 Ishouldgetaow

12) Gidaio: Trade G2 B2 Gidaio

13) sompm: Build G2 Ishouldgetaow

14) Gidaio: Move B2 Gidaio China

15) sompm: Build G3 Sompm

16) Gidaio: Trade G3 R3 China

17) sompm: Discover G2 Ishouldgetaow B1 Swappyworld
	Gidaio: China is rebelling!

18) Gidaio: Move R3 China Ishouldgetaow

19) sompm: Trade G3 R3 Sompm

20) Gidaio: Attack G1 Ishouldgetaow

21) sompm: Build G3 Sompm

22) Gidaio: Build G3 Gidaio

23) sompm: Discover G3 Sompm B3 Youcheekybugger

24) Gidaio: Move R3 Ishouldgetaow Swappyworld

25) sompm: Sacrifice G2 Swappyworld
Build R1 Sompm
Build R1 Sompm

26) Gidaio: Trade B2 Y2 China

27) sompm: Move R1 Sompm Youcheekybugger
	sompm: nocanhaz

28) Gidaio: Move Y2 China Ishouldgetaow

29) sompm: Move R3 Sompm Ishouldgetaow

30) Gidaio: Move Y2 Ishouldgetaow Swappyworld

31) sompm: Attack G1S Ishouldgetaow

32) Gidaio: Trade G2 B2 Gidaio
	sompm: hay! when did we turn on no undo? did I miss this?
	sompm: er, hey.


33) sompm: Move R3 Ishouldgetaow China

34) Gidaio: Move G1 China Ishouldgetaow

35) sompm: Move R3 China Gidaio
	sompm: no offense, but that may have been a bad idea.

36) Gidaio: Move R3 Swappyworld Ishouldgetaow
	Gidaio: Yeah, you won. There's no way I can combat that unless you do something stupid.

37) sompm: Attack G3 Gidaio

38) Gidaio: Attack G1 Ishouldgetaow

39) sompm: Attack B2S Gidaio
	sompm: go ahead; I'll win in a turn anyways. MUHAHAHAHA.

40) Gidaio: Sacrifice Y2 Swappyworld
Move G1 Ishouldgetaow Sompm
Move G1 Ishouldgetaow Sompm
Catastrophe Sompm Green

41) sompm: Attack G1 Gidaio
	Gidaio: No, but I can at least go out with a bang!



17780)
Started: 2010.10.21, Ended: 2010.10.24
Participants: AlphaBravo (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy



17781)
Variants: "Hard time"
Started: 2010.10.22, Ended: 2010.10.25
Participants: goblin981 (S), AlphaBravo (N)
Winner: goblin981

	goblin981: good luck dude :)


17716)
Started: 2010.10.23, Ended: 2010.10.27
Participants: agentofchaos (S), dethdukk (N)
Winner: agentofchaos



17783)
Started: 2010.10.24, Ended: 2010.10.26
Participants: TwoShort (S), lorgar (N)
Winner: TwoShort

1) lorgar: Homeworld Y1 B2 G3

2) TwoShort: Homeworld R1 B3 G3
	TwoShort: Howdy

3) lorgar: Build G1 Lorgar

4) TwoShort: Build G1 Twoshort

5) lorgar: Trade G1 Y1 Lorgar

6) TwoShort: Trade G1 Y1 Twoshort

7) lorgar: Build Y2 Lorgar

8) TwoShort: Build Y2 Twoshort

9) lorgar: Trade Y2 R2 Lorgar

10) TwoShort: Discover Y1 Twoshort G2 Grogar

11) lorgar: Build Y2 Lorgar

12) TwoShort: Build Y2 Grogar

13) lorgar: Discover Y2 Lorgar B3 Leodagan

14) TwoShort: Build Y3 Twoshort

15) lorgar: Build Y3 Lorgar

16) TwoShort: Sacrifice Y2 Grogar
Discover Y1 Grogar R3 Stopover
Move Y1 Stopover Lorgar
Catastrophe Lorgar Yellow

	lorgar: bluebird... clusterfuck, i'm done!

GG
	TwoShort: Bluebird typically involves having all your homeworld ships one color so you actually lose in an (avoidable) catastrophe.  Losing half your homeworld is often bad, but isn't necessarily the end - In this case, I'm pretty sure I had you, but it would have taken me 6 or 7 moves at least...
  In any case, thanks for the game! 


17795)
Started: 2010.10.24, Ended: 2010.10.28
Participants: rootbier (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 G1 Y3



17803)
Started: 2010.10.24, Ended: 2010.10.27
Participants: goblin981 (S), rootbier (N)
Winner: goblin981



17809)
Variants: "Unrated"
Started: 2010.10.24, Ended: 2010.12.14
Participants: sompm (S), RabidZombieNinjaSquirrel (N), Gidaio (E)
Winner: sompm

1) RabidZombieNinjaSquirrel: Homeworld B2 Y1 G3

2) Gidaio: Homeworld B3 Y1 G3

3) sompm: Homeworld B3 G2 Y3
	Gidaio: Hang on, trying something out.
	RabidZombieNinjaSquirrel: vote yes

	RabidZombieNinjaSquirrel: did that work?

4) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel
	sompm: vote accept 91
	Gidaio: No. Type in ~vote accept 91

5) Gidaio: Build G1 Gidaio

6) sompm: Build Y1 Sompm

7) RabidZombieNinjaSquirrel: Trade G1 R1 Rabidzombieninjasquirrel
	Gidaio: Interesting that you started with yellow.

8) Gidaio: Build G1 Gidaio

9) sompm: Discover Y1 Sompm Y1 F1rst

10) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel

11) Gidaio: Discover G1 Gidaio Y2 P0st

12) sompm: Build Y2 Sompm

13) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel

14) Gidaio: Build G2 Gidaio

15) sompm: Build Y2 Sompm

16) RabidZombieNinjaSquirrel: Trade G1 B1 Rabidzombieninjasquirrel

17) Gidaio: Trade G1 R1 Gidaio

18) sompm: Discover Y2 Sompm G1 L0lz

19) RabidZombieNinjaSquirrel: Discover R1 Rabidzombieninjasquirrel Y3 Yellow 3 System A

20) Gidaio: Build G1 Gidaio

21) sompm: Build Y2 L0lz

22) RabidZombieNinjaSquirrel: Build G2 Rabidzombieninjasquirrel

23) Gidaio: Move G1 Gidaio P0st

24) sompm: Build Y3 Sompm

25) RabidZombieNinjaSquirrel: Move R1 Yellow P0st

26) Gidaio: Move G1 P0st Gidaio

27) sompm: Build Y3 L0lz
	sompm: guess who's gunna haz three threes, dorkfishes?

28) RabidZombieNinjaSquirrel: Trade G3 Y3 Rabidzombieninjasquirrel

29) Gidaio: Move G1 P0st F1rst

30) sompm: Trade Y3 B3 Sompm

31) RabidZombieNinjaSquirrel: Sacrifice G2 Rabidzombieninjasquirrel

Build G2 Rabidzombieninjasquirrel

Build Y3 Rabidzombieninjasquirrel

32) Gidaio: Sacrifice G3 Gidaio
Build G2 F1rst
Build G3 F1rst
Build G3 Gidaio

33) sompm: Trade Y3 R3 Sompm

34) RabidZombieNinjaSquirrel: Build G3 Rabidzombieninjasquirrel
	RabidZombieNinjaSquirrel: I know I could have just built a y3, but that doesn't matter. that was epic.

35) Gidaio: Discover G2 Gidaio B2 Pwn

36) sompm: Build Y3 Sompm
	Gidaio: I'm voting we kick Alex from the game. He's not all that interested.
	sompm: If he's really not interested.


37) RabidZombieNinjaSquirrel: Move R1 P0st F1rst
	RabidZombieNinjaSquirrel: I'm interested! I just need to remember...

38) Gidaio: Trade G2 Y2 Pwn

39) sompm: Move R3 Sompm F1rst

40) RabidZombieNinjaSquirrel: Discover G1 Rabidzombieninjasquirrel B3 Roflstomp

41) Gidaio: Move Y2 Pwn Roflstomp

42) sompm: Attack G3E F1rst

43) RabidZombieNinjaSquirrel: Sacrifice G3 Rabidzombieninjasquirrel

Build G2 Roflstomp
Build G3 Roflstomp

Build G3 Rabidzombieninjasquirrel
	sompm: to give alex some time if he's REALLY (indent that) interested.
	RabidZombieNinjaSquirrel: well, I dunno... I'm not amazingly interested, what should I do?
want me to just quit? 

44) Gidaio: Move Y2 Roflstomp Rabidzombieninjasquirrel
Catastrophe Rabidzombieninjasquirrel Yellow

45) sompm: Discover G3 F1rst R2 Hyperbarry
	Gidaio: Roflstomp?!

46) RabidZombieNinjaSquirrel: Trade B1 R1 Rabidzombieninjasquirrel

47) Gidaio: Move G2 F1rst Roflstomp
Catastrophe Roflstomp Green
	RabidZombieNinjaSquirrel: take that!!! Mwahahahahahahaha!

48) sompm: Sacrifice Y3 L0lz
Discover Y1 F1rst B2 Disposable1
Discover Y2 L0lz B2 Disposable2
Discover Y2 L0lz B2 Disposable3
	Gidaio: Take that-er! MwahahahahahahahaHA!

49) Gidaio: Move G1 F1rst Disposable1

50) sompm: Sacrifice Y3 Sompm
Move Y1 Disposable1 Gidaio
Move Y2 Disposable2 Gidaio
Move Y2 Disposable3 Gidaio
Catastrophe Gidaio Y
	Gidaio: Sorry, Alex. You're just more vulnerable.

51) Gidaio: Build G1 Disposable1

52) sompm: Build B1 Sompm
	sompm: yay crazy planet explosions!

every non-homeworld planet on the map was created by me! YAIEZ.
	RabidZombieNinjaSquirrel: you suck Tanis.

Wheres your heart? 

53) Gidaio: Build R1 Gidaio

54) sompm: Build G1 Hyperbarry

55) Gidaio: Trade R1 Y1 Gidaio

56) sompm: Build Y1 Sompm

	Gidaio: I may just give you this game.
	Gidaio: Yeah, I'm tired of it. You win.


17712)
Variants: "Hard time"
Started: 2010.10.25, Ended: 2010.10.26
Participants: goblin981 (S), Lurch (N)
Winner: goblin981



17736)
Started: 2010.10.26, Ended: 2010.10.29
Participants: mathochist (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld Y2 B3 G3



17811)
Started: 2010.10.26, Ended: 2010.10.26
Participants: lorgar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) lorgar: Homeworld B1 Y2 G3

3) TwoShort: Build G1 Twoshort

4) lorgar: Build G1 Lorgar

5) TwoShort: Trade G1 Y1 Twoshort

6) lorgar: Trade G1 Y1 Lorgar

7) TwoShort: Build G1 Twoshort

8) lorgar: Build G1 Lorgar

9) TwoShort: Build G1 Twoshort

10) lorgar: Discover Y1 Lorgar R3 Leodagan

11) TwoShort: Discover G1 Twoshort Y2 Yolonda

12) lorgar: Move G1 Lorgar Leodagan

13) TwoShort: Build G2 Twoshort

14) lorgar: Build G2 Leodagan

15) TwoShort: Discover G1 Twoshort B2 Borbor

16) lorgar: Build G2 Lorgar

17) TwoShort: Build G3 Borbor

18) lorgar: Move G1 Leodagan Borbor

19) TwoShort: Trade G3 Y3 Borbor

20) lorgar: Move G3 Lorgar Leodagan

21) TwoShort: Sacrifice G3 Twoshort
Build G3 Yolonda
Build G3 Twoshort
Build Y1 Borbor

22) lorgar: Move Y1 Leodagan Borbor

23) TwoShort: Sacrifice Y3 Borbor
Move G1 Borbor Leodagan
Move G1 Yolonda Leodagan
Discover G3 Yolonda B3 Bluestar
Catastrophe Leodagan Green

24) lorgar: Build G1 Lorgar
	lorgar: I see I still have some problem guessing what one can do with a sacrifice ^^

25) TwoShort: Trade G3 R3 Twoshort

26) lorgar: Build G1 Borbor

27) TwoShort: Sacrifice Y1 Twoshort
Move G3 Bluestar Lorgar

28) lorgar: Discover G2 Lorgar R3 Charliefoxtrot

29) TwoShort: Sacrifice R3 Twoshort
Attack G1 Lorgar
Pass
Pass
	lorgar: gg



17821)
Started: 2010.10.26, Ended: 2010.10.29
Participants: lorgar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B1 G3 *

2) lorgar: Homeworld B3 Y1 G3

3) TwoShort: Build G1 Twoshort

4) lorgar: Build G1 Lorgar

5) TwoShort: Trade G1 Y1 Twoshort

6) lorgar: Discover G1 Lorgar Y2 Monty

7) TwoShort: Build Y1 Twoshort

8) lorgar: Build G1 Lorgar

9) TwoShort: Build Y2 Twoshort

10) lorgar: Trade G3 Y3 Lorgar

11) TwoShort: Discover Y1 Twoshort G2 Grogar

12) lorgar: Sacrifice G1 Monty
Build Y2 Lorgar

13) TwoShort: Move Y1 Grogar Lorgar
Catastrophe Lorgar Yellow

14) lorgar: Build G1 Lorgar
	lorgar: schpoup, nice shot

15) TwoShort: Move G3 Twoshort Lorgar

16) lorgar: Trade G1 Y1 Lorgar

17) TwoShort: Trade G3 R3 Lorgar

18) lorgar: Discover Y1 Lorgar G1 Eroute

19) TwoShort: Attack G1 Lorgar
	lorgar: gg



17820)
Started: 2010.10.27, Ended: 2010.10.30
Participants: goblin981 (S), mathochist (N)
Winner: goblin981



17830)
Variants: "Hard time"
Started: 2010.10.27, Ended: 2010.12.3
Participants: Uglyfoot (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B2 G3

2) Uglyfoot: Homeworld B3 Y2 G3

3) agentofchaos: Build G1 Agentofchaos

4) Uglyfoot: Build G1 Uglyfoot

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Uglyfoot: Build G1 Uglyfoot

7) agentofchaos: Build Y1 Agentofchaos

8) Uglyfoot: Trade G1 Y1 Uglyfoot

9) agentofchaos: Build Y2 Agentofchaos

10) Uglyfoot: Build Y2 Uglyfoot

11) agentofchaos: Trade Y1 R1 Agentofchaos

12) Uglyfoot: Discover Y2 Uglyfoot R1 Out

13) agentofchaos: Discover Y2 Agentofchaos B3 Zither

14) Uglyfoot: Move G1 Uglyfoot Out

15) agentofchaos: Build R2 Agentofchaos

16) Uglyfoot: Build Y1 Out

17) agentofchaos: Build Y3 Agentofchaos

18) Uglyfoot: Discover Y1 Uglyfoot B1 Ward

19) agentofchaos: Discover Y3 Agentofchaos G3 Leanda

20) Uglyfoot: Sacrifice G1 Out
Build Y3 Ward

21) agentofchaos: Build Y3 Agentofchaos

22) Uglyfoot: Build G1 Uglyfoot

23) agentofchaos: Build G1 Agentofchaos

24) Uglyfoot: Move G1 Uglyfoot Out

25) agentofchaos: Move Y3 Leanda Ward

26) Uglyfoot: Discover Y3 Ward R3 Bound

27) agentofchaos: Sacrifice R1 Agentofchaos
Attack Y1 Ward

28) Uglyfoot: Build G1 Uglyfoot

29) agentofchaos: Move G1 Agentofchaos Zither

30) Uglyfoot: Move G1 Uglyfoot Out

31) agentofchaos: Build G2 Agentofchaos

32) Uglyfoot: Build G2 Uglyfoot

33) agentofchaos: Build G2 Zither

34) Uglyfoot: Trade G2 R2 Uglyfoot

35) agentofchaos: Discover G3 Agentofchaos R3 Zurvan

36) Uglyfoot: Move G1 Out Bound

37) agentofchaos: Move Y1 Agentofchaos Zurvan

38) Uglyfoot: Build R1 Uglyfoot

39) agentofchaos: Move G1 Zither Ward

40) Uglyfoot: Sacrifice Y2 Out
Move Y3 Bound Agentofchaos
Move Y3 Agentofchaos Zither

41) agentofchaos: Sacrifice Y2 Zither
Move G3 Zurvan Out
Move G2 Zither Ward

42) Uglyfoot: Build G2 Bound

43) agentofchaos: Build G3 Agentofchaos

44) Uglyfoot: Build Y2 Out

45) agentofchaos: Sacrifice G2 Ward
Build Y2 Zurvan
Build G2 Ward

46) Uglyfoot: Sacrifice Y2 Out
Move G1 Bound Agentofchaos
Move G2 Bound Agentofchaos
Catastrophe Agentofchaos G

47) agentofchaos: Attack Y1 Out

48) Uglyfoot: Build G1 Uglyfoot

49) agentofchaos: Sacrifice Y2 Zurvan
Move G1 Ward Uglyfoot
Move G2 Ward Uglyfoot
Catastrophe Uglyfoot G

50) Uglyfoot: Trade Y3 G3 Zither

51) agentofchaos: Move Y3 Ward Uglyfoot

	Uglyfoot: Thanks for the game.
	agentofchaos: Thanks for playing 


17750)
Variants: "Hard time"
Started: 2010.10.29, Ended: 2010.11.5
Participants: SilentTitan (S), lorgar (N)
Winner: SilentTitan

1) lorgar: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld Y3 B2 G3

3) lorgar: Build G1 Lorgar

4) SilentTitan: Build G1 Silenttitan

5) lorgar: Discover G1 Lorgar R3 Thorp

6) SilentTitan: Discover G1 Silenttitan B1 Shaka

7) lorgar: Build G1 Lorgar

8) SilentTitan: Build G2 Silenttitan

9) lorgar: Trade G1 Y1 Lorgar

10) SilentTitan: Trade G2 Y2 Silenttitan

11) lorgar: Move Y1 Lorgar Thorp

12) SilentTitan: Move Y2 Silenttitan Shaka

13) lorgar: Move G1 Thorp Shaka

14) SilentTitan: Trade G1 R1 Shaka

15) lorgar: Build G1 Lorgar

16) SilentTitan: Attack G1 Shaka North

17) lorgar: Trade G1 R1 Lorgar

18) SilentTitan: Build G1 Silenttitan

19) lorgar: Move G3 Lorgar Thorp

20) SilentTitan: Build G1 Shaka

21) lorgar: Build Y1 Thorp

22) SilentTitan: Build Y2 Shaka

23) lorgar: Discover Y1 Thorp B1 Clusterf

24) SilentTitan: Sacrifice Y2 Shaka
Move Y2 Shaka Thorp
Move Y2 Thorp Lorgar

25) lorgar: Move G3 Thorp Lorgar

26) SilentTitan: Sacrifice R1 Shaka
Attack R1 Lorgar North

27) lorgar: Trade G3 R3 Lorgar
	SilentTitan: LOL... I always wanted to name a system that.

28) SilentTitan: Sacrifice G3 Silenttitan
Build R1 Lorgar
Build R1 Lorgar
Pass
Catastrophe Lorgar Red

	lorgar: gg


17831)
Started: 2010.10.29, Ended: 2010.11.1
Participants: dethdukk (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld B3 Y1 G3



17850)
Variants: "Hard time"
Started: 2010.10.30, Ended: 2010.12.3
Participants: goulo (S), Danner (N)
Winner: Danner

1) Danner: Pass

2) goulo: Homeworld G3 B2 Y3
	Danner: Hi! Good luck!

3) Danner: Homeworld R1 B2 G3
	goulo: thanks, you too. have fun!

4) goulo: Build Y1 Goulo

5) Danner: Build G1 Danner

6) goulo: Build Y1 Goulo

7) Danner: Trade G1 Y1 Danner

8) goulo: Trade Y1 R1 Goulo

9) Danner: Build Y1 Danner

10) goulo: Trade Y1 G1 Goulo

11) Danner: Trade Y1 R1 Danner

12) goulo: Build R2 Goulo

13) Danner: Build R2 Danner

14) goulo: Discover R2 Goulo G1 Smeraldeto

15) Danner: Discover R2 Danner Y3 Orland

16) goulo: Build Y1 Goulo

17) Danner: Build G1 Danner

18) goulo: Build G2 Goulo

19) Danner: Build Y1 Danner

20) goulo: Sacrifice G2 Goulo
Build Y2 Goulo
Build G2 Goulo

21) Danner: Build Y2 Danner
	Danner: Sorry for my inactivity :S

22) goulo: Move Y1 Goulo Smeraldeto
	goulo: no problem. i have been busy lately in any case as well (gone away from internet this past thursday-sunday at a gaming con)...

23) Danner: Discover Y1 Danner G3 Artemus

24) goulo: Move R2 Smeraldeto Artemus

25) Danner: Move R2 Orland Smeraldeto

26) goulo: Move Y1 Smeraldeto Artemus

27) Danner: Move Y1 Artemus Smeraldeto

28) goulo: Build R2 Artemus

29) Danner: Build Y2 Smeraldeto

30) goulo: Move R2 Artemus Danner

31) Danner: Sacrifice R1 Danner
Attack R2S Danner

32) goulo: Build R1 Artemus

33) Danner: Build R3 Smeraldeto

34) goulo: Sacrifice Y2 Goulo
Move R1 Artemus Danner
Move R2 Artemus Danner
Catastrophe Danner R
	goulo: Ha, yeah, after I did that move, I realized you could sacrifice the R1, sigh. :)
	Danner: :)

35) Danner: Sacrifice Y2 Danner
Move G1 Danner Smeraldeto
Move G1 Smeraldeto Goulo
Catastrophe Goulo G

36) goulo: Trade Y3 G3 Goulo

37) Danner: Build Y2 Danner

38) goulo: Build G1 Goulo
	goulo: Hmm. That didn't work out quite as well as I thought it would...

39) Danner: Trade Y2 B2 Danner

40) goulo: Trade G3 Y3 Goulo

41) Danner: Sacrifice B2 Danner
Trade Y1 B1 Smeraldeto
Trade R2 B2 Smeraldeto

42) goulo: Build G1 Goulo

43) Danner: Sacrifice Y2 Smeraldeto
Move B1 Smeraldeto Goulo
Move B2 Smeraldeto Goulo

	goulo: Thanks for the game!
	Danner: Thank you too!


17859)
Variants: "Hard time"
Started: 2010.11.1, Ended: 2010.11.6
Participants: zoltar (S), goblin981 (N)
Winner: zoltar

1) goblin981: Homeworld Y1 B2 G3

2) zoltar: Homeworld R3 B1 G3

3) goblin981: Build G1 Goblin981

4) zoltar: Build G1 Zoltar

5) goblin981: Discover G1 Goblin981 G3 Star

6) zoltar: Trade G1 Y1 Zoltar

7) goblin981: Build G1 Goblin981

8) zoltar: B Y1 Zoltar

9) goblin981: Discover G1 Goblin981 Y3 Sickly

10) zoltar: Build Y2 Zoltar

11) goblin981: Build G1 Goblin981

12) zoltar: Build G2 Zoltar

13) goblin981: Build G2 Goblin981

14) zoltar: Discover Y1 Zoltar B2 Bluemoon

15) goblin981: Trade G2 Y2 Goblin981

16) zoltar: Sacrifice G2 Zoltar
Build G2 Zoltar
Build Y2 Bluemoon

17) goblin981: Build Y3 Goblin981

18) zoltar: Sacrifice Y2 Zoltar
Move Y1 Bluemoon Star
Move Y1 Star Goblin981
Catastrophe Goblin981 Y

19) goblin981: Trade G1 Y1 Goblin981

20) zoltar: Trade G2 R2 Zoltar

21) goblin981: Build G1 Goblin981
	goblin981: Damn, nice move.
	zoltar: Thanks!

22) zoltar: Move G3 Zoltar Goblin981

23) goblin981: Trade G1 R1 Goblin981

24) zoltar: Sacrifice R2 Zoltar
Attack G3 Goblin981
Attack R1 Goblin981

25) goblin981: Sacrifice G1 Star
Build Y1 Goblin981
	zoltar: And now for my next trick...

26) zoltar: Trade G3 R3 Goblin981

27) goblin981: Move G1 Sickly Goblin981

28) zoltar: Sacrifice R3 Goblin981
Attack G1 Goblin981
Attack Y1 Goblin981
Attack Y1 Goblin981

	zoltar: Good game. You let me swindle you in the opening there, so it was over fast. Play again?
	goblin981: yeah that was my fault.  Lets go again.


17853)
Variants: "Hard time"
Started: 2010.11.1, Ended: 2010.11.27
Participants: lorgar (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R1 G3

2) lorgar: Homeworld B1 Y2 G3

3) zoltar: Build G1 Zoltar

4) lorgar: Build G1 Lorgar

5) zoltar: Trade G1 B1 Zoltar

6) lorgar: Trade G1 Y1 Lorgar

7) zoltar: Build B1 Zoltar

8) lorgar: Build G1 Lorgar

9) zoltar: Trade B1 Y1 Zoltar

10) lorgar: Build G1 Lorgar

11) zoltar: Discover B1 Zoltar G2 Greenbelt

12) lorgar: Discover G1 Lorgar Y3 Angelis

13) zoltar: Build B1 Greenbelt

14) lorgar: Trade G1 R1 Lorgar

15) zoltar: Build B2 Greenbelt

16) lorgar: Build R1 Lorgar

17) zoltar: Trade B2 R2 Greenbelt

18) lorgar: Move R1 Lorgar Angelis

19) zoltar: Build B2 Greenbelt

20) lorgar: Move G3 Lorgar Angelis

21) zoltar: Trade B2 Y2 Greenbelt

22) lorgar: Build R2 Angelis

23) zoltar: Build Y1 Greenbelt

24) lorgar: Discover G1 Angelis Y2 Mektown

25) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Greenbelt
Build B2 Greenbelt

26) lorgar: Move R1 Angelis Greenbelt

27) zoltar: Sacrifice Y3 Zoltar
Move Y3 Greenbelt Angelis
Move Y2 Greenbelt Angelis
Move Y1 Greenbelt Angelis
Catastrophe Angelis Y

28) lorgar: Trade Y1 G1 Lorgar

29) zoltar: Trade B2 G2 Greenbelt

30) lorgar: Build G1 Mektown

31) zoltar: Trade B1 Y1 Greenbelt

32) lorgar: Build G2 Lorgar

33) zoltar: Build G3 Greenbelt

34) lorgar: Build G3 Lorgar

35) zoltar: Sacrifice G3 Greenbelt
Build Y1 Greenbelt
Build Y2 Greenbelt
Build Y3 Zoltar

36) lorgar: Build G3 Mektown

37) zoltar: Sacrifice Y2 Greenbelt
Discover G2 Greenbelt Y3 Wormhole
Move G2 Wormhole Lorgar
Catastrophe Lorgar G

38) lorgar: Discover G1 Mektown Y3 Charliefox

39) zoltar: Attack R1 Greenbelt

40) lorgar: Move G1 Charliefox Lorgar

41) zoltar: Trade Y3 G3 Zoltar

42) lorgar: Build R2 Lorgar

43) zoltar: Build Y2 Greenbelt

44) lorgar: Discover R2 Lorgar Y3 Stop

45) zoltar: Build Y3 Zoltar

46) lorgar: Pass

47) zoltar: Build Y3 Zoltar

48) lorgar: Build G1 Lorgar

49) zoltar: Sacrifice Y3 Zoltar
Move Y3 Zoltar Mektown
Move Y3 Mektown Stop
Move Y3 Stop Lorgar

	lorgar: that's it.
	zoltar: Yeah, you can't let your homeworld be without a large ship. You had to earlier either get the G3 back to your homeworld, or sac it for three reds so that an R3 is in your homeworld, but you passed a turn, which was crazy and let me get another Y3 that let me come into your homeworld and win.
	lorgar: I passed because I did not see anything else to do XD
perhaps you Could explain me some tips about the stash managing strategy... 
	zoltar: Well, your first priority was getting a 3-pip ship in your homeworld. Anytime you don't have a large ship in your homeworld, you're in extreme danger. So moving your G3 to a large yellow star was just about the only way to avoid imminent disaster. Don't worry about the stash when your homeworld is left defenseless.


17828)
Variants: "Hard time"
Started: 2010.11.1, Ended: 2010.11.4
Participants: zoltar (S), Lurch (N)
Winner: zoltar



17901)
Variants: "Hard time"
Started: 2010.11.1, Ended: 2010.11.1
Participants: zoltar (S), Lurch (N)
Winner: Lurch



17909)
Started: 2010.11.1, Ended: 2010.11.4
Participants: Remneb (S), dethdukk (N)
Winner: Remneb



17911)
Variants: "Unrated"
Started: 2010.11.1, Ended: 2010.11.6
Participants: Remneb (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B3 Y2 G3
	ts52: Is this your first game of homeworlds? The first move is to create your homewold. When you're the second player, make sure you don't pick the same size pieces as your opponent.

2) Remneb: Homeworld B2 Y3 G3
	ts52: Also, your first ship should always be a large. Although you can choose something smaller, there's no point to picking anything else.
	Remneb: It's my first game.

3) ts52: Build G1 Ts52
	ts52: Ok. You've picked the exact same homeworld as me, which isn't usually a good idea. In Homeworlds, systems are connected by not having a piece in common, so while our two homeworlds aren't directly connected (impossible in the beginning of the game) they're only separated by one jump. Notice, that from our homeworlds, the only systems we can discover are small ones (using the small pieces). Which means once I build a new ship, and move it out of my homeworld to discover a new system, it will be able to move directly from their into your homeworld. This is what we call a small universe.

Now, consider if your homeworld was made up of a small and medium pyramid instead. Then you would be first discovering systems using the large pieces, and there would be two hops between our homeworlds.

There are probably some strategies that try to use the small universe, but it's not generally recommended.

If you want to undo and create a new homeworld, that's fine, if you want to play this one out and see what happens, that's fine too. Just let me know.
	Remneb: Well i choose the same size of star because 2 stars of different sizes are connected...and so bothy systems can be attacked...in my viewing the game of course.

4) Remneb: Build G1 Remneb
	Remneb: Now...if i want to created a new system,i need an extra ship...because in my homeworld,i mujst always have at least one ship ok ?
	ts52: True, you must always have at least one ship that you control in your homeworld. Not quite on the connection part though. Two systems are connected if they don't have any stars of the same size piece. So a 'small star' system is connected to 'large star' and 'medium star' systems, and to 'large medium binary' systems. But not to other small stars, or to any binary system that has a small star in it. So No to binary systems (and only homeworlds are binary systems) can ever be directly connected.

5) ts52: Discover G1 Ts52 B1 Gonzo
	ts52: So after creating your homeworld, the first thing you need to do is create a second ship. (Which is why it's crucial that you always start out with green in your homeworld, either as a star or a ship.)
	ts52: We wont worry about the small universe this game, let's just play it out and then we can play another.
	Remneb: If i understood the rules clearly,a star of a given color-say green-permit to any ship of other colors then green to use the techno of the green star exactly if the ship was a green ship?

6) Remneb: Discover G1 Remneb Y1 Draconis
	ts52: Yes, that's correct. Any ship you own in a system can use the power of the star(s) in that system, or the powers of any ship you control in that system.

7) ts52: T G1 Y1 Gonzo

8) Remneb: Build G1 Remneb

9) ts52: D Y1 Gonzo G3 Kermit

10) Remneb: Move G1 Draconis Kermit

11) ts52: B Y1 Kermit

12) Remneb: Discover G1 Remneb Y1 Khufu Primus

13) ts52: Build Y2 Kermit

14) Remneb: Build G1 Remneb

15) ts52: B G2 Ts52

16) Remneb: Move G1 Remneb Khufu







17) ts52: Trade G2 R2 Ts52

18) Remneb: Sacrifice G1 Kermit
Build G1 Khufu

19) ts52: M R2 Ts52 Khufu
	Remneb: I tried to sacrifice my G3 ship and make 3 moves:g1 Kermit ts52 and g1 Khufu ts52 and so trigering a catastrophe...but the game did not let me do so.What is wrong in my orders?
	Remneb: I've just checked the andrew looney video called "Blue Bird mistake".The sacrifice ship was a yellow one.So if i sacrifice a green ship i cannot have movement in exchange.What do i have instead?
	Remneb: Something else...your Kermit system is not connected to my Remneb system...so i am concluding that you build 3 yellow ship to attack my Khufu system?
	ts52: Aha, in order to move multiple pieces, you need to sacrifice a large yellow. When you sacrifice, you can only use the power of the sacrificed piece, but on any ships you want.
And I'm building up yellow ships to try in Kermit to try and avoid catastrophe. I discovered kermit to take the large green piece out of the pool, hoping to be able to convert it to one of my ships later.

20) Remneb: Move G1 Khufu Ts52

21) ts52: Trade G3 R3 Ts52
	Remneb: So because green ship cannot move from system kermit to Khufu,i sacrified one and build the same in Khufu...doing in fact the same thing.
	Remneb: Do all my ships in Khufu have the power of moving(the yellow star)?

22) Remneb: Move G1 Khufu Kermit
	Remneb: How can you have a red ship when everytime i ask a ship of other color then green,the game told me that i need to control at least one ship of the color i ask.
	ts52: Because you have a yellow star in your homeworld you could've just moved the green ship, but it amounts to the same. All ships in a system can use the power of any star in that system. 
	ts52: I didn't build the red ship using green, I traded it with blue. 

23) ts52: Attack G1 Ts52

24) Remneb: Move G1 Khufu Kermit
	Remneb: Understand thanks.

25) ts52: Sacrifice R2 Khufu
Attack G1 Kermit
Attack G1 Kermit

26) Remneb: Build G2 Remneb

27) ts52: Build G2 Ts52

28) Remneb: Discover G2 Remneb Y1 Phoenix
	Remneb: Here i misunderstood the rule about attacking units(red).I was sure that you have to sacrifice the red ship to turn my green one against me !

29) ts52: Discover G1 Kermit B1 Gonzo
	Remneb: So a yellow ship in a green system can move because he is yellow...and also can be sacrifice to be replaced by an other color?And because there is green and yellow in the same system,we can at the same time sacrifice to replace and move the new ship ?
	ts52: Aha, nope. In fact, as you see, I can sacrifice the red ship to attack ships outside of that system

30) Remneb: Build G2 Remneb
	Remneb: You don't have to sacrifice a red ship in your homeworld?
	Remneb: So a red ship of 2 points can be sacrifice to attack 2 ships of 1 point each?
	ts52: A red ship of two points can be sacrificed to make two attacks. You can attack any ship that is the same size or smaller than your biggest ship in the same system. So if those green ships had been medium (2 point), I could still have attacked because of my medium yellow. But if they'd been large, I couldn't.
	ts52: If I'd sacrificed my red ship in my homeworld, I could have made 3 attacks, but it's never a good idea to leave your homeworld without a large ship in it.

31) ts52: Build G3 Gonzo
	Remneb: I want to understand why you turn my g1 in your homeworld with no sacrifice at all...

32) Remneb: Discover G2 Remneb B1 Menkaura

33) ts52: Build R1 Ts52

34) Remneb: Trade G2 Y2 Menkaura

35) ts52: Move Y1 Kermit Gonzo
	ts52: you don't need to sacrifice to attack. if you have access to red in a system, either because the star is red, or you have a red ship there, then you can attack other ships in that system. you only need to sacrifice if you want to make more than one attack (by sacrificing a med or large) or if you want to make an attack in a system where you don't have red, you can sacrifice a red ship elsewhere to do it.
	Remneb: Understand.Thanks.
	Remneb: We apparently have 20 spectators for our game...

36) Remneb: Build G2 Remneb

37) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build Y3 Gonzo
Build Y3 Gonzo
	ts52: Interesting, I wonder how many of them are actively watching? The last time I tried, it didn't work so well.

38) Remneb: Trade G2 B2 Remneb

39) ts52: Trade Y1 B1 Gonzo

40) Remneb: Build B2 Remneb

41) ts52: Move Y3 Gonzo Remneb

42) Remneb: Move B2 Remneb Phoenix

43) ts52: Trade Y3 R3 Remneb
	Remneb: 12 ships against 4...

44) Remneb: Discover Y2 Menkaura R2 Arcturus
	ts52: yeah, being able to sacrifice a large green, build it back (because there are no more greens in the global stash, and you have another green ship) and then build two more ships it a pretty big deal.

45) ts52: Attack G3 Remneb

46) Remneb: Trade B2 R2 Phoenix
	ts52: you need to be wary about ever having 3 pieces (ships and stars) of the same color in one system. That's asking for your opponent to move in a piece of that color and triggering a catastrophe.
	Remneb: Thanks...i'm trying to do that against you since the beginning of the game lol.

47) ts52: A B2 Remneb

	Remneb: I need an explanation about your last attack in my Homeworld.Few moves sooner,you turn 2 of my ships with a single red 3.Now you turn my g3 bot not my b2? Is it because you don't another ship in my homeworld? 
	Remneb: ...read "is it because you don't have another ship in my homeworld?
	ts52: I could only turn one ship because I didn't sacrifice a ship like I did before. 
	Remneb: Ok.Thanks.If you snap my b2 in Remneb,the game is over.
	ts52: Thanks for the game. I'd be happy to play another. 


17858)
Started: 2010.11.2, Ended: 2010.11.16
Participants: daselva (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) daselva: Homeworld R1 B2 G3
	ts52: Have a good game!

3) ts52: B G1 Ts52

4) daselva: Build G1 Daselva

5) ts52: T G1 R1 Ts52

6) daselva: Trade G1 R1 Daselva

7) ts52: Build R2 Ts52

8) daselva: Build R2 Daselva

9) ts52: Discover R1 Ts52 Y1 Dogstar

10) daselva: Trade R1 Y1 Daselva

11) ts52: Build G1 Ts52

12) daselva: Build Y1 Daselva

13) ts52: Move G1 Ts52 Dogstar

14) daselva: Build Y2 Daselva

15) ts52: Build G1 Ts52

16) daselva: Trade Y2 G2 Daselva

17) ts52: Trade G1 B1 Ts52

18) daselva: Build Y2 Daselva

19) ts52: Trade R2 Y2 Ts52

20) daselva: Discover Y2 Daselva G3 S1

21) ts52: Discover Y2 Ts52 G1 Robin

22) daselva: Trade Y1 B1 Daselva

23) ts52: Move B1 Ts52 Dogstar

24) daselva: Build Y1 S1

25) ts52: Build G1 Ts52

26) daselva: Sacrifice B1 Daselva
Trade Y1 R1 S1

27) ts52: Build R2 Dogstar

28) daselva: Build R2 S1

29) ts52: Move R1 Dogstar Ts52

30) daselva: Discover R2 S1 G2 S2

31) ts52: B R3 Ts52

32) daselva: Sacrifice G2 Daselva
Build R3 S1
Build R3 S2

33) ts52: M R3 Ts52 Robin

34) daselva: Move R3 S1 Dogstar

35) ts52: D R2 Dogstar Y3 Bigstar

36) daselva: Attack B1 Dogstar

37) ts52: Move G1 Dogstar Bigstar

38) daselva: Build G2 Daselva

39) ts52: Move R3 Robin S1

40) daselva: Move Y2 S1 Dogstar

41) ts52: Move Y2 Robin S1

42) daselva: Trade B1 G1 Dogstar

43) ts52: Attack R1 S1

44) daselva: Build G2 Dogstar

45) ts52: Discover G1 Ts52 Y1 Chickadee

46) daselva: Sacrifice Y1 Daselva
Move R2 S2 Chickadee

47) ts52: Move G1 Chickadee Bigstar

48) daselva: Trade G2 Y2 Daselva

49) ts52: Move R3 S1 Chickadee

50) daselva: Discover R2 Chickadee Y3 S3

51) ts52: B Y1 S1

52) daselva: Move R3 Dogstar Bigstar

53) ts52: S Y2 S1
M R1 S1 Daselva
Move R2 Bigstar Daselva
Catastrophe Daselva Red



54) daselva: Move R2 S3 Daselva

55) ts52: Move G1 Bigstar Chickadee

56) daselva: Attack G1 Bigstar

57) ts52: Build R1 Ts52

58) daselva: Sacrifice G2 Dogstar
Build Y2 Dogstar
Build Y3 Daselva

59) ts52: Move Y1 S1 Dogstar
Catastrophe Dogstar Yellow

60) daselva: Move Y2 Daselva Bigstar

61) ts52: Trade R1 Y1 Ts52

62) daselva: Sacrifice G3 Daselva
Build Y1 Bigstar
Build Y2 Daselva
Build Y2 Daselva

63) ts52: Discover Y1 Ts52 B1 Gonzo

64) daselva: Discover Y2 Daselva G1 S1

65) ts52: Move Y1 Gonzo Bigstar
Catastrophe Bigstar Yellow

66) daselva: Sacrifice Y2 Daselva
Move R3 S2 S1
Pass

67) ts52: B R1 Ts52

68) daselva: Build Y1 S1

69) ts52: Trade R1 B1 Ts52

70) daselva: Build Y1 S1

71) ts52: Move B1 Ts52 Chickadee

72) daselva: Move Y1 S1 Ts52

73) ts52: A Y1 Ts52

74) daselva: Move Y2 S1 Daselva

75) ts52: Discover Y1 Ts52 G1 Robin

76) daselva: Build Y2 S1

77) ts52: B G2 Ts52

78) daselva: Build Y2 S1

79) ts52: B Y3 Robin

80) daselva: Sacrifice Y2 Daselva
Move Y1 S1 Ts52
Move Y2 S1 Ts52

81) ts52: B B1 Chickadee

82) daselva: Sacrifice Y2 S1
Move Y1 Ts52 Robin
Move Y2 Ts52 Robin
Catastrophe Robin Y

83) ts52: Build B1 Chickadee

84) daselva: Build R1 S1

85) ts52: T R3 Y3 Chickadee

86) daselva: Build R1 S1

87) ts52: Sacrifice Y3 Chickadee
Move B1 Chickadee Daselva
Move B1 Chickadee Daselva
Move B1 Chickadee Daselva
Catastrophe Daselva Blue

	ts52: Thanks for the game.


17929)
Variants: "Hard time"
Started: 2010.11.3, Ended: 2010.11.24
Participants: shmil1 (S), sompm (N)
Winner: sompm

1) sompm: Homeworld Y3 G1 B3

2) shmil1: Homeworld G1 B2 Y3

3) sompm: Build B1 Sompm

4) shmil1: Build Y1 Shmil1
	sompm: Good luck.

5) sompm: Build B1 Sompm

6) shmil1: Trade Y1 B1 Shmil1

7) sompm: Trade B1 G1 Sompm

8) shmil1: Build Y1 Shmil1

9) sompm: Build G2 Sompm

10) shmil1: Build Y1 Shmil1

11) sompm: Discover G1 Sompm B2 Tetrachord

12) shmil1: Trade Y1 R1 Shmil1

13) sompm: Build G2 Tetrachord

14) shmil1: Discover Y1 Shmil1 G3 Zelena

15) sompm: Build G2 Tetrachord

16) shmil1: Move Y1 Zelena Tetrachord

17) sompm: Trade G2 R2 Tetrachord

18) shmil1: Move Y1 Tetrachord Sompm

19) sompm: Build G2 Tetrachord

20) shmil1: Trade Y3 G3 Shmil1

21) sompm: Build G3 Sompm

22) shmil1: Build G3 Shmil1

23) sompm: Trade G2 R2 Sompm

24) shmil1: Sacrifice G3 Shmil1
Build Y1 Sompm
Build Y1 Sompm
Build G2 Shmil1
Catastrophe Sompm Yellow

25) sompm: Trade G2 Y2 Tetrachord

26) shmil1: Trade G3 Y3 Shmil1

27) sompm: Discover G1 Tetrachord G3 Anotherplanet

28) shmil1: Discover G2 Shmil1 Y3 Zluta

29) sompm: Build G2 Anotherplanet

30) shmil1: Build G3 Zluta

31) sompm: Trade G3 Y3 Sompm

32) shmil1: Move G3 Zluta Tetrachord

33) sompm: Build G3 Tetrachord

34) shmil1: Sacrifice R1 Shmil1
Attack R2 Tetrachord

35) sompm: Sacrifice R2 Sompm
Attack G3S Tetrachord
Attack R2S Tetrachord

36) shmil1: Move G2 Zluta Tetrachord
Catastrophe Tetrachord Green

37) sompm: Sacrifice Y2 Tetrachord
Move G1 Anotherplanet Shmil1
Move G2 Anotherplanet Shmil1

38) shmil1: Discover B1 Shmil1 Y3 Slunce

39) sompm: Build G2 Shmil1
Catastrophe Shmil1 G

40) shmil1: Trade Y3 R3 Shmil1

41) sompm: Build B1 Sompm

42) shmil1: Move B1 Slunce Sompm
Catastrophe Sompm Blue

43) sompm: Build Y1 Sompm

44) shmil1: Trade R3 G3 Shmil1

45) sompm: Trade R2 B2 Tetrachord

46) shmil1: Build G1 Shmil1

47) sompm: Sacrifice Y1 Sompm
Move B2 Tetrachord Sompm

48) shmil1: Trade G1 R1 Shmil1

49) sompm: Build B1 Sompm

50) shmil1: Build R1 Shmil1

51) sompm: Build Y1 Sompm

52) shmil1: Trade R1 Y1 Shmil1

53) sompm: Build B1 Sompm

54) shmil1: Move Y1 Shmil1 Sompm

55) sompm: Sacrifice Y3 Sompm
Move B1 Sompm Shmil1
Move B1 Sompm Shmil1
Move B2 Sompm Shmil1
Catastrophe Shmil1 Blue



17960)
Started: 2010.11.5, Ended: 2010.12.16
Participants: zoltar (S), dethdukk (N)
Winner: zoltar

1) dethdukk: Homeworld B3 Y1 G3

2) zoltar: Homeworld R3 B2 G3

3) dethdukk: Build G1 Dethdukk

4) zoltar: Build G1 Zoltar

5) dethdukk: Trade G1 Y1 Dethdukk

6) zoltar: Trade G1 Y1 Zoltar

7) dethdukk: Discover Y1 Dethdukk G2 Planet

8) zoltar: Build Y2 Zoltar

9) dethdukk: Build G1 Dethdukk

10) zoltar: Trade Y1 B1 Zoltar

11) dethdukk: Trade G1 Y1 Dethdukk

12) zoltar: Build Y2 Zoltar

13) dethdukk: Build Y2 Planet

14) zoltar: Discover Y2 Zoltar G1 Greenpea

15) dethdukk: Trade Y1 R1 Dethdukk

16) zoltar: Build Y1 Zoltar

17) dethdukk: Move Y2 Planet Greenpea

18) zoltar: Move Y1 Zoltar Greenpea

19) dethdukk: Build Y3 Planet

20) zoltar: Build Y3 Zoltar



17731)
Variants: "Hard time"
Started: 2010.11.6, Ended: 2010.11.20
Participants: dlwillson (S), lorgar (N)
Winner: dlwillson

1) lorgar: Homeworld R1 B3 G3

2) dlwillson: H G3 B2 Y3

3) lorgar: Build G1 Lorgar

4) dlwillson: B Y1 Dlwillson

5) lorgar: Trade G1 Y1 Lorgar

6) dlwillson: B Y1 Dlwillson

7) lorgar: Build G1 Lorgar

8) dlwillson: D Y1 Dlwillson B1 Dust

9) lorgar: Build Y2 Lorgar

10) dlwillson: B Y2 Dlwillson

11) lorgar: Discover Y1 Lorgar R2 Knuckleduster

12) dlwillson: D Y1 Dlwillson B1 Ashes

13) lorgar: Discover Y2 Lorgar R2 Sunisburning

14) dlwillson: T Y3 R3 Dlwillson

15) lorgar: Discover Y1 Knuckleduster R1 Borabora

16) dlwillson: B R1 Dlwillson

17) lorgar: Sacrifice Y2 Sunisburning
Discover G3 Lorgar B2 Amadeo
Move G3 Amadeo Borabora

18) dlwillson: B Y2 Dlwillson

19) lorgar: Build Y2 Borabora

20) dlwillson: D Y2 Dlwillson B1 Smoke

21) lorgar: Discover Y1 Borabora B2 Mnemosine

22) dlwillson: Trade R3 G3 Dlwillson

23) lorgar: Build Y3 Borabora

24) dlwillson: S G3 Dlwillson
B Y3 Dust
B Y3 Ashes
B R2 Dlwillson

25) lorgar: Move Y2 Borabora Mnemosine

26) dlwillson: Sacrifice Y2 Dlwillson
Move Y3 Dust Mnemosine
Move Y3 Mnemosine Lorgar

	dlwillson: Good game. Venturing out with your battleship is much more dangerous with a red star. Stars are notoriously neutral, and willing to lend their tech to anyone, even your opponent.
	lorgar: thx, I still need to learn about the depths of this game.


17724)
Variants: "Hard time"
Started: 2010.11.6, Ended: 2010.11.30
Participants: Jesse (S), lorgar (N)
Winner: Jesse

1) lorgar: Homeworld Y1 G2 B3

2) Jesse: Homeworld R1 B3 G3

3) lorgar: Build B1 Lorgar

4) Jesse: Build G1 Jesse

5) lorgar: Build B1 Lorgar

6) Jesse: Trade G1 B1 Jesse

7) lorgar: Discover B3 Lorgar R3 Waaaghdakka

8) Jesse: Build B2 Jesse

9) lorgar: Trade B1 G1 Lorgar

10) Jesse: Trade B1 Y1 Jesse

11) lorgar: Build G1 Lorgar

12) Jesse: Build Y1 Jesse

13) lorgar: Build B1 Lorgar

14) Jesse: Build Y2 Jesse

15) lorgar: Trade B3 G3 Waaaghdakka

16) Jesse: Trade Y2 R2 Jesse

17) lorgar: Trade G1 B1 Lorgar

18) Jesse: Build Y2 Jesse

19) lorgar: Move B1 Lorgar Waaaghdakka

20) Jesse: Discover Y2 Jesse G2 Pond

21) lorgar: Trade B1 R1 Lorgar

22) Jesse: Build Y2 Pond

23) lorgar: Build R1 Lorgar

24) Jesse: Sacrifice Y2 Pond
Discover Y2 Pond G3 Lilypad
Move Y2 Lilypad Lorgar

25) lorgar: Build R2 Lorgar

26) Jesse: Sacrifice R2 Jesse
Attack R2 Lorgar
Attack G1 Lorgar

27) lorgar: Pass

28) Jesse: Build Y2 Lorgar

	lorgar: gg
	Jesse: Thanks for the game.  I think the main lessons for you here are: Don't leave your homeworld without the defense of a large ship; and don't get locked out of yellow ships, since it leaves you unable to move your ships where they're needed in case of an emergency.


17999)
Started: 2010.11.6, Ended: 2010.11.10
Participants: goblin981 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B3 R2 G3

2) goblin981: Homeworld Y1 B3 G3

3) zoltar: Build G1 Zoltar

4) goblin981: Build G1 Goblin981

5) zoltar: Trade G1 Y1 Zoltar

6) goblin981: Trade G1 Y1 Goblin981

7) zoltar: Build Y2 Zoltar

8) goblin981: Build G1 Goblin981

9) zoltar: Discover Y1 Zoltar G1 Greenpea

10) goblin981: Discover G1 Goblin981 Y2 Chicken

11) zoltar: Build Y2 Greenpea

12) goblin981: Build G1 Goblin981

13) zoltar: Build Y3 Zoltar

14) goblin981: Build G2 Chicken

15) zoltar: Build Y3 Zoltar

16) goblin981: Trade G1 B1 Goblin981

17) zoltar: Build Y3 Greenpea

18) goblin981: Move Y1 Goblin981 Chicken

19) zoltar: Move Y3 Greenpea Chicken

20) goblin981: Move Y1 Chicken Greenpea

21) zoltar: Trade Y3 R3 Zoltar

22) goblin981: Build G1 Goblin981

23) zoltar: Move Y3 Chicken Goblin981

24) goblin981: Trade G1 R1 Goblin981

25) zoltar: Sacrifice R3 Zoltar
Attack R1 Goblin981
Attack B1 Goblin981
Attack G3 Goblin981

	zoltar: Because you will die much faster if you don't have a red star. Note that I don't have to bring anything with me: when I made a 'gun' in my own homeworld last turn, the only way to avoid checkmate was to turn one of your two homeworld ships to red immediately. Since you didn't, it's checkmate now. Play again?


17910)
Variants: "Hard time"
Started: 2010.11.6, Ended: 2010.11.14
Participants: Remneb (S), Lurch (N)
Winner: Remneb

1) Lurch: Homeworld Y1 B2 G3

2) Remneb: Homeworld Y2 B3 G3

3) Lurch: Build G1 Lurch

4) Remneb: Build G1 Remneb



17808)
Started: 2010.11.6, Ended: 2010.11.9
Participants: rootbier (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld B1 Y2 G3



18002)
Variants: "Unrated"
Started: 2010.11.7, Ended: 2010.11.9
Participants: Remneb (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B3 Y1 G3

2) Remneb: Homeworld Y2 B1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) Remneb: Build G1 Remneb
	Remneb: Thanks.Same.

5) ts52: Trade G1 Y1 Ts52

6) Remneb: Trade G1 Y1 Remneb

7) ts52: Build Y2 Ts52

8) Remneb: Build G1 Remneb

9) ts52: Discover Y1 Ts52 G2 Oscar

10) Remneb: Discover Y1 Remneb G3 Emmy

11) ts52: Build G1 Ts52

12) Remneb: Build Y2 Emmy

13) ts52: Build Y3 Oscar

14) Remneb: Move Y2 Emmy Oscar

15) ts52: Discover Y1 Oscar B3 Grover

16) Remneb: Build Y3 Emmy

17) ts52: Sacrifice G1 Ts52
Build Y3 Grover

18) Remneb: Discover Y3 Emmy B2 Bunkerhill

19) ts52: Trade Y1 R1 Grover

20) Remneb: Sacrifice Y3 Bunkerhill
Move Y1 Emmy Oscar
Move Y2 Oscar Ts52
Move Y1 Oscar Ts52
Catastrophe Ts52 Y

21) ts52: Move Y3 Grover Remneb

22) Remneb: Trade G1 R1 Remneb

23) ts52: Sacrifice R1 Grover
Attack R1 Remneb
	Remneb: Well something else...a catastrophe in your homeworld and the game still running.Only yellow have take the cup !
	Remneb: Now if for example i have only a g3 in my homeworld and i sacrifie it to stunt your homeworld,is it a draw or do i win the game?
	ts52: Wow, I really should have seen that coming. Well done.

24) Remneb: Build G1 Remneb

25) ts52: Attack G3 Remneb

	Remneb: I was aware before i made the move...but i was sure that the game will have ended right there !
	ts52: Thanks for the game. Feel fee to challenge me any time.
	Remneb: Ok...i know that i'm not ready to challenge two short or Jesse lol.For now i'm playing 4 homeworlds games.I will challenge you for a rated game next time.Thanks for the training.


18003)
Variants: "Hard time"
Started: 2010.11.8, Ended: 2010.11.15
Participants: Lurch (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld Y1 B2 G3

2) Lurch: Homeworld Y1 B3 G3

3) Remneb: Build G1 Remneb

4) Lurch: Build G1 Lurch

5) Remneb: Trade G1 Y1 Remneb



18004)
Started: 2010.11.8, Ended: 2010.11.11
Participants: Remneb (S), rootbier (N)
Winner: Remneb



18054)
Variants: "Hard time"
Started: 2010.11.10, Ended: 2010.11.25
Participants: dlwillson (S), goblin981 (N)
Winner: dlwillson

1) goblin981: Homeworld G3 B2 R3

2) dlwillson: H B3 Y1 G3

3) goblin981: Build R1 Goblin981

4) dlwillson: B G1 Dlwillson

5) goblin981: Build R1 Goblin981

6) dlwillson: T G1 R1 Dlwillson

7) goblin981: Trade R1 G1 Goblin981

8) dlwillson: B G1 Dlwillson

9) goblin981: Build R1 Goblin981
	dlwillson: Why didn't you trade r1 for y1, or is it a surprise?
	goblin981: wanted to get a green out there first.

10) dlwillson: B R2 Dlwillson

11) goblin981: Trade R1 Y1 Goblin981

12) dlwillson: T G1 B1 Dlwillson

13) goblin981: Discover G1 Goblin981 Y1 Yellow

14) dlwillson: B B1 Dlwillson

15) goblin981: Discover G1 Yellow R3 Kry

16) dlwillson: D B1 Dlwillson G2 Turkey

17) goblin981: Build Y1 Goblin981

18) dlwillson: D B1 Dlwillson Y2 Chicken

19) goblin981: Build Y2 Goblin981

20) dlwillson: Build G1 Dlwillson

21) goblin981: Discover Y1 Goblin981 G1 Sick

22) dlwillson: D B1 Chicken R1 Partridge

23) goblin981: Build R2 Goblin981

24) dlwillson: T G3 Y3 Dlwillson

25) goblin981: Trade R2 B2 Goblin981

26) dlwillson: B G2 Dlwillson

27) goblin981: Move B2 Goblin981 Sick

28) dlwillson: Move Y3 Dlwillson Turkey

29) goblin981: Build Y2 Sick

30) dlwillson: Build Y2 Turkey

31) goblin981: Build G2 Kry

32) dlwillson: Move Y2 Turkey Partridge

33) goblin981: Trade Y2 R2 Sick

34) dlwillson: M R2 Dlwillson Turkey

35) goblin981: Discover R2 Sick Y2 Yell

36) dlwillson: Sacrifice G2 Dlwillson
Build Y3 Partridge
Build Y3 Turkey

37) goblin981: Move B2 Sick Yell

38) dlwillson: B G2 Dlwillson

39) goblin981: Move Y1 Sick Yell

40) dlwillson: S G2 Dlwillson
B R2 Turkey
B R3 Dlwillson

41) goblin981: Discover R1 Goblin981 B1 Blu

42) dlwillson: T Y3 G3 Partridge

43) goblin981: Sacrifice G1 Kry
B B2 Yell


44) dlwillson: S G3 Partridge
B B3 Partridge
B Y3 Partridge
B B3 Turkey

45) goblin981: Sacrifice G2 Kry
B R3 Goblin981
Pass

46) dlwillson: S Y3 Turkey
M Y2 Partridge Goblin981
M B1 Partridge Goblin981
M R2 Turkey Partridge

47) goblin981: Attack Y2S Goblin981
	goblin981: this ones been going a while.  You've managed to grab most of the pieces though.
	dlwillson: I think we're done in two, though.

48) dlwillson: S Y3 Turkey
M R2 Turkey Partridge
M R2 Partridge Goblin981
M R2 Partridge Goblin981
C Goblin981 R

49) goblin981: S Y1 Goblin981
Move R1 Blu Yell

50) dlwillson: Build B1 Goblin981

51) goblin981: Trade Y2 R2 Goblin981

52) dlwillson: M Y3 Partridge Goblin981

53) goblin981: Sacrifice R2 Yell
A B1S Goblin981
A B1S Goblin981

54) dlwillson: Sacrifice R3 Dlwillson
Attack B1 Goblin981
Attack Y2 Goblin981
Attack R2 Goblin981

55) goblin981: Pass
	dlwillson: I way miscounted the remaining moves!

56) dlwillson: S Y3 Goblin981
M B3 Turkey Partridge
M B3 Partridge Goblin981
M B3 Partridge Goblin981
C Goblin981 B
	dlwillson: Have you seen Goblins Comic?
	goblin981: no. 

	dlwillson: If you're a fan of goblins, you might like it. Www.goblinscomic.com.
	dlwillson: Thanks for the game.


17917)
Started: 2010.11.10, Ended: 2010.11.14
Participants: ts52 (S), OnePageWars (N)
Winner: ts52

1) OnePageWars: Homeworld G3 Y2 B3
	OnePageWars: How do I use the Interface?
	ts52: The commands and syntax are listed at the top. The first thing you have to do is build a Homeworld with the Homeworlds command. 

2) ts52: H Y2 B1 G3
	OnePageWars: Thanks. I think I have it partly figured out. I know how to play, but I couldn't figure out how to use their interface.

3) OnePageWars: Build B1 Onepagewars

4) ts52: B G1 Ts52
	OnePageWars: I'll get this figured out eventually. :)

5) OnePageWars: Discover B3 Onepagewars Y1 Yellowstar
	ts52: You can abbreviate any command to just the first letter too. 

6) ts52: Trade G1 B1 Ts52

7) OnePageWars: Trade B1 G1 Onepagewars

8) ts52: Discover B1 Ts52 G3 Kermit

9) OnePageWars: Build G1 Onepagewars

10) ts52: Build B1 Kermit

11) OnePageWars: Move G1 Onepagewars Yellowstar

12) ts52: Trade B1 Y1 Kermit

13) OnePageWars: Trade G1 R1 Yellowstar

14) ts52: Trade Y1 R1 Kermit

15) OnePageWars: Build G1 Onepagewars

16) ts52: B G1 Ts52

17) OnePageWars: Build G2 Onepagewars

18) ts52: Build G2 Ts52
Catastrophe Onepagewars Green
	ts52: Thanks for the game. I'd be happy to play again, anytime. Feel free to challenge me to an unrated game if you just to play with the interface more.
	OnePageWars: Thanks!



17707)
Variants: "Hard time"
Started: 2010.11.11, Ended: 2010.11.15
Participants: shmil1 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3

2) shmil1: Homeworld G1 B2 Y3

3) zoltar: Build G1 Zoltar

4) shmil1: Build Y1 Shmil1

5) zoltar: Trade G1 Y1 Zoltar

6) shmil1: Trade Y1 B1 Shmil1

7) zoltar: Build Y1 Zoltar

8) shmil1: Build B1 Shmil1

9) zoltar: Trade Y1 B1 Zoltar

10) shmil1: Discover B1 Shmil1 Y3 Zluty

11) zoltar: Discover B1 Zoltar G1 Greenpea

12) shmil1: Move B1 Zluty Greenpea

13) zoltar: Trade B1 R1 Greenpea

14) shmil1: Build Y1 Shmil1

15) zoltar: Attack B1 Greenpea

16) shmil1: Trade Y1 R1 Shmil1

17) zoltar: Build Y1 Zoltar

18) shmil1: Build B1 Shmil1

19) zoltar: Build B2 Greenpea

20) shmil1: Discover B1 Shmil1 G3 Zelenysvet

21) zoltar: Trade B2 Y2 Greenpea

22) shmil1: Build B2 Zelenysvet

23) zoltar: Build B3 Greenpea

24) shmil1: Trade B1 Y1 Zelenysvet

25) zoltar: Discover Y1 Zoltar G1 Greenbean

26) shmil1: Build Y2 Zelenysvet

27) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenpea
Build Y3 Greenbean
Build Y3 Zoltar

28) shmil1: Move Y1 Zelenysvet Greenbean

29) zoltar: Sacrifice B3 Greenpea
Trade Y2 G2 Greenpea
Trade Y3 G3 Greenbean
Trade Y3 G3 Zoltar

30) shmil1: Build Y2 Zelenysvet

31) zoltar: Sacrifice G2 Greenpea
Build Y3 Greenpea
Build Y3 Zoltar
	zoltar: Yikes: too many threats. I'd better sacrifice and get some stability. 

32) shmil1: Trade Y2 R2 Zelenysvet

33) zoltar: Trade Y2 R2 Greenpea

34) shmil1: Build Y2 Greenbean

35) zoltar: Move Y3 Greenpea Zelenysvet

36) shmil1: Discover B2 Zelenysvet R1 Rudy

37) zoltar: Sacrifice R2 Greenpea
Attack R2 Zelenysvet
Attack Y2 Zelenysvet

38) shmil1: Sacrifice R1 Shmil1
Attack Y1 Greenbean

39) zoltar: Sacrifice Y2 Zelenysvet
Move Y1 Zoltar Greenbean
Move Y3 Zelenysvet Shmil1
Catastrophe Greenbean Y

40) shmil1: Trade Y3 R3 Shmil1

41) zoltar: Sacrifice R2 Zelenysvet
Attack B1 Shmil1
Attack R3 Shmil1

	zoltar: good game! It got exciting there for a while.


18072)
Variants: "Hard time"
Started: 2010.11.11, Ended: 2010.11.17
Participants: rodrigotjader (S), OnePageWars (N)
Winner: OnePageWars

1) OnePageWars: Homeworld G3 B2 Y3

2) rodrigotjader: Homeworld G1 B3 R3

3) OnePageWars: Build Y1 Onepagewars



18039)
Started: 2010.11.11, Ended: 2010.11.14
Participants: Remneb (S), rootbier (N)
Winner: Remneb



18097)
Variants: "Unrated"
Started: 2010.11.14, Ended: 2010.11.16
Participants: OnePageWars (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B3 Y2 G3

2) OnePageWars: Homeworld G3 B2 R3
	ts52: have a good game, ask any questions you like, and feel free to get my attention by making a move, then undoing it. 

3) ts52: Build G1 Ts52
	ts52: Just so you realize, you've set up another 'small universe' game by picking the same size pieces that I have.

4) OnePageWars: Build R1 Onepagewars
	OnePageWars: ???


5) ts52: T G1 R1 Ts52

6) OnePageWars: Trade R1 Y1 Onepagewars
	ts52: Sorry, I was teaching someone else Homeworlds, and explaining the issues with creating a homeworld with matching sizes as your opponent. Now our Homeworlds are only one system apart. 
	OnePageWars: Oh! I didn't notice that. :)

7) ts52: B G1 Ts52
	OnePageWars: I appreciate your patience with helping me get used to this game. This is only my second game.
	ts52: No problem, I'm always happy to help new players. 

8) OnePageWars: Discover R3 Onepagewars G1 Cyteen

9) ts52: Build G1 Ts52

10) OnePageWars: Build Y1 Onepagewars

11) ts52: Discover G1 Ts52 B1 Grover

12) OnePageWars: Move Y1 Onepagewars Cyteen

13) ts52: Build G2 Grover

14) OnePageWars: Move R3 Cyteen Ts52

15) ts52: Attack R3 Ts52



18014)
Started: 2010.11.14, Ended: 2010.11.18
Participants: daselva (S), dethdukk (N)
Winner: daselva



18078)
Started: 2010.11.14, Ended: 2010.11.22
Participants: rootbier (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3



17829)
Started: 2010.11.14, Ended: 2010.11.22
Participants: mathochist (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R3 B2 G3



18134)
Started: 2010.11.15, Ended: 2010.11.24
Participants: zoltar (S), daselva (N)
Winner: zoltar

1) daselva: Homeworld B1 R2 G3

2) zoltar: Homeworld B3 R1 G3
	zoltar: An excellent choice of stars this time. When I get to a difficult endgame, I'm usually glad I had a red star in my homeworld for defense!

3) daselva: Build G1 Daselva

4) zoltar: Build G1 Zoltar

5) daselva: Trade G1 Y1 Daselva

6) zoltar: Trade G1 Y1 Zoltar

7) daselva: Build G1 Daselva

8) zoltar: Build G1 Zoltar

9) daselva: Trade G1 R1 Daselva

10) zoltar: Trade G1 B1 Zoltar

11) daselva: Build R1 Daselva

12) zoltar: Build B1 Zoltar

13) daselva: Discover R1 Daselva G3 S1

14) zoltar: Discover B1 Zoltar G2 Greenbelt

15) daselva: Sacrifice Y1 Daselva
Move R1 S1 Greenbelt

16) zoltar: Sacrifice Y1 Zoltar
Discover B1 Greenbelt G3 Greengiant

17) daselva: Build R2 Greenbelt

18) zoltar: Build B2 Greengiant

19) daselva: Build G1 Daselva

20) zoltar: Trade B2 R2 Greengiant

21) daselva: Trade R1 Y1 Daselva

22) zoltar: Build B2 Greengiant

23) daselva: Trade G1 R1 Daselva

24) zoltar: Build R3 Greengiant

25) daselva: Build R3 Greenbelt

26) zoltar: Trade R3 Y3 Greengiant

27) daselva: Discover R1 Daselva B3 S1

28) zoltar: Move R2 Greengiant Greenbelt
Catastrophe Greenbelt R

29) daselva: Sacrifice Y1 Daselva
Discover R1 S1 Y2 S2

30) zoltar: Trade B2 G2 Greengiant

31) daselva: Build G1 Daselva

32) zoltar: Move G2 Greengiant Daselva

33) daselva: Trade G3 Y3 Daselva

34) zoltar: Sacrifice G2 Daselva
Build B2 Greengiant
Build B2 Zoltar

35) daselva: Build G1 Daselva

36) zoltar: Trade B2 R2 Greengiant

37) daselva: Discover R1 S2 G3 S1

38) zoltar: Trade B2 Y2 Zoltar

39) daselva: Discover G1 Daselva Y3 S2

40) zoltar: Build B2 Greengiant

41) daselva: Build G1 S2

42) zoltar: Build G2 Zoltar

43) daselva: Build G2 Daselva

44) zoltar: Sacrifice G3 Zoltar
Build G2 Zoltar
Build G3 Zoltar
Build B2 Greengiant

45) daselva: Build Y1 Daselva

46) zoltar: Discover B2 Greengiant B2 Bluemoon

47) daselva: Discover G1 S2 R2 S3

48) zoltar: Sacrifice G2 Zoltar
Build B3 Bluemoon
Build B3 Zoltar

49) daselva: Build G2 S3

50) zoltar: Trade B3 R3 Bluemoon

51) daselva: Sacrifice Y1 Daselva
Discover R1 S1 Y2 S4

52) zoltar: Sacrifice G3 Zoltar
Build B3 Bluemoon
Build G3 Zoltar
Build G3 Zoltar

53) daselva: Build Y1 Daselva

54) zoltar: Move G3 Zoltar S4

55) daselva: Sacrifice G2 S3
Build R1 S4
Build R3 S4

56) zoltar: Sacrifice R3 Bluemoon
Attack R1 S4
Attack R1 S4
Attack R3 S4

57) daselva: Build G2 S2

58) zoltar: Sacrifice G3 Zoltar
Build R3 Greengiant
Build R3 Greengiant
Build G3 Zoltar

59) daselva: Move Y1 Daselva S2

60) zoltar: Sacrifice Y2 Zoltar
Move R3 Greengiant Daselva
Move R3 Greengiant Daselva

61) daselva: Attack R3 Daselva

62) zoltar: Sacrifice R3 S4
Attack R3 Daselva
Attack Y3 Daselva
Attack G2 Daselva

63) daselva: Move G2 S2 Daselva

64) zoltar: Sacrifice G3 Zoltar
Build G3 Daselva
Build R3 Daselva
Build Y1 Greengiant



18146)
Variants: "Hard time"
Started: 2010.11.16, Ended: 2010.11.26
Participants: nycavri (S), Gidaio (N)
Winner: nycavri

1) Gidaio: Homeworld Y1 B2 G3

2) nycavri: Homeworld G3 B2 Y3
	Gidaio: Good luck!
	nycavri: TaGG!

3) Gidaio: Build G1 Gidaio

4) nycavri: Build Y1 Nycavri

5) Gidaio: Build G1 Gidaio

6) nycavri: Build Y1 Nycavri

7) Gidaio: Discover G1 Gidaio B3 Llanowar

8) nycavri: Trade Y3 G3 Nycavri

9) Gidaio: Build G1 Gidaio

10) nycavri: Build G2 Nycavri

11) Gidaio: Sacrifice G3 Gidaio
Build G2 Llanowar
Build G2 Llanowar
Build G3 Gidaio

12) nycavri: Discover Y1 Nycavri R1 Deacon

13) Gidaio: Trade G2 Y2 Llanowar
	nycavri: M:tG player, I see!
	Gidaio: Yeah!

14) nycavri: Trade G2 R2 Nycavri

15) Gidaio: Discover G1 Llanowar R1 Serra

16) nycavri: Discover Y1 Deacon B3 May

17) Gidaio: Move G2 Llanowar Serra

18) nycavri: Move Y1 May Gidaio

19) Gidaio: Sacrifice Y2 Llanowar
Move G1 Serra Nycavri
Move G2 Serra Nycavri
Catastrophe Nycavri Green

20) nycavri: Trade Y1 G1 Gidaio
Catastrophe Gidaio G

	nycavri: Thanks for the game.
	Gidaio: Holy dang! Nice ending. Didn't see that at all. I'll have to keep that strategy in mind for future games!

All in all, good game!
	nycavri: Yeah, it only works if you trigger the catastrophe in my homeworld to provide me with the G1 I needed . . .

I'm sure we'll meet again on the Ladder!


17856)
Variants: "Hard time"
Started: 2010.11.17, Ended: 2010.11.24
Participants: SilentTitan (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld B1 R2 G3

2) SilentTitan: Homeworld B2 R3 G3

3) Remneb: Build G1 Remneb

4) SilentTitan: Build G1 Silenttitan

5) Remneb: Trade G1 Y1 Remneb

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Remneb: Build G1 Remneb

8) SilentTitan: Build G1 Silenttitan

9) Remneb: Discover Y1 Remneb G3 Draconis

10) SilentTitan: Trade G1 B1 Silenttitan

11) Remneb: Build Y1 Draconis

12) SilentTitan: Build Y2 Silenttitan

13) Remneb: Discover Y1 Draconis Y2 Klon

14) SilentTitan: Discover Y1 Silenttitan B1 Bluestar

15) Remneb: Discover Y1 Klon B3 Ragnarok

16) SilentTitan: Build B2 Silenttitan

17) Remneb: Build Y2 Draconis

18) SilentTitan: Discover B1 Silenttitan G1 Greenstar

19) Remneb: Move Y2 Draconis Remneb

20) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Greenstar
Build B3 Greenstar
Build B3 Silenttitan

21) Remneb: Trade G3 R3 Remneb

22) SilentTitan: Sacrifice B2 Greenstar
Trade B3 R3 Greenstar
Trade B3 G3 Silenttitan

23) Remneb: Move Y1 Ragnarok Remneb

24) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Greenstar
Build B3 Greenstar
Build B3 Silenttitan

25) Remneb:
Build Y2 Remneb

26) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Bluestar Draconis
Move Y1 Draconis Remneb
Catastrophe Remneb Yellow

27) Remneb: Move Y1 Draconis Remneb

28) SilentTitan: Sacrifice B2 Greenstar
Trade B3 Y3 Greenstar
Trade B3 G3 Silenttitan

29) Remneb: Build Y1 Remneb

30) SilentTitan: Build B1 Greenstar

31) Remneb: Build G1 Remneb

32) SilentTitan: Discover B1 Greenstar R2 Redstar

33) Remneb: Build G2 Remneb

34) SilentTitan: Build B2 Greenstar

35) Remneb: Trade G1 R1 Remneb

36) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Greenstar
Build B3 Redstar
Build B3 Silenttitan

37) Remneb: Discover Y1 Remneb G3 Rooky

38) SilentTitan: Sacrifice B2 Greenstar
Trade B3 G3 Silenttitan
Trade B3 G3 Redstar

39) Remneb: Discover R1 Remneb Y3 Alderan
	SilentTitan: ok... I thought you might be a beginner.  we should start again or at the very least you should take back your last turn, because if there is ever four of the same color in a system either player can call for a catasrophe and that will destroy all the items of that color in that system. In this case you just created the forth red item in your home system. 


	Remneb: Well i did not include the star...yes i'm a beginner...the only games that i played to the finish was the two that i lost against Ts52.

40) SilentTitan: Sacrifice G3 Redstar
Build B2 Redstar
Build B3 Redstar
Build B3 Silenttitan
	SilentTitan: If you'd like.  After this game, if you challenge me again. I can give you ideas of things you may want to consider when deciding your moves. 


41) Remneb: Build Y1 Remneb
	Remneb: Ok for a re-match...thanks for the offer.

42) SilentTitan: Trade B3 Y3 Silenttitan

43) Remneb: Discover Y1 Remneb B3 Remagen


44) SilentTitan: Sacrifice Y3 Silenttitan
Move B3 Redstar Alderan
Move B2 Redstar Remagen
Move B3 Greenstar Rooky

45) Remneb: Discover G1 Remneb Y3 Omaha

46) SilentTitan: Sacrifice R3 Greenstar
Attack R1 Alderan North
Attack Y1 Remagen North
Attack Y1 Rooky North

47) Remneb: Build Y2 Remneb
	Remneb: I think you have a lot of fun :)
	Remneb: In a system with a red star,do every ships in that system are capable of attacking because they are in a red system?

48) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Rooky
Build Y2 Remagen
Build R1 Alderan
	SilentTitan: Yes. think of the color of the pieces as technology red=attack tech; blue=trade tech; yellow=move tech and green=build tech. In the case of ships only your pieces can use the tech, but in the case of planets the whole system gets to use the tech, no matter who is in the system.

49) Remneb: Sacrifice Y2 Remneb
Move R3 Remneb Omaha
Move R3 Omaha Greenstar
	SilentTitan: also as you can see here I can sacrifice a piece to have that tech where ever I need it to be. In this case I sacrificed a 3-pip red so I got to execute three attack actions. and I took three of your ships because in each system I had a ship that was as big or bigger. 
	Remneb: Understand.Also,i saw along the game that you sacrifice a g3 to create 3 other ships.If you sacrifice a b3,you also can build 3 other ships?

50) SilentTitan: Sacrifice Y3 Greenstar
Move B3 Alderan Remneb
Move B3 Rooky Remneb
Move B2 Remagen Remneb
Catastrophe Remneb Blue
	Remneb: I never been able by the game system to build a blew ship.I have a blew star in my Homeworld.I know that i need to have a ship of the same color already in position in the system where i want a blew ship.The blew star is apparently not enough to build a blew ship.
	SilentTitan: correct including you can rebuild the g3 you just sacrificed as long as it's avaliable in the bank. Say there is a g2 and a g3 in the bank and on your turn you sacrifice a g3 you can then build a g2 then build a g3 then build another g3 which is the g3 that was returned to the bank when you sacrificed it at the beginning of your turn. the only requirement is that you have to have a green ship in the system your going to build green ships. Same with the blue ships.  A star give you that tech (ie a blue star gives trade tech) but in order to build blue ships you have to already have a blue ship.
	SilentTitan: at this point you would have to trade one of your existing ships for a blue ship, which you are unable to do because either I have them all, or they are planets. Having a monopoly on one of the colors is a one of the easiest ways to win the game.  If you can deny the other player on of the techs then that gives you a very distinct advantage.


51) Remneb: Sacrifice Y1 Remneb
Move R3 Greenstar Silenttitan
	Remneb: That's the orders i gave:sacrifice y2 Remneb 
move r3 Remneb Rooky
attack b3 Rooky...but the system told me that i have no more actions.What is wrong in my orders ?

52) SilentTitan: Sacrifice Y2 Remagen
Move Y2 Rooky Remneb
Move B1 Greenstar Silenttitan

53) Remneb: Attack Y2 Remneb
	SilentTitan: you can only do one type of action a turn .. so you cannot move and attack or trade and move or build and attack etc.... since you sacked a y2 you had to either do two moves or one move and a pass
	SilentTitan: The problem you have with the move you've made here is that I can sacrifice either of the r1's in Alderan which gives me 1 attack action I can take anywhere on the board. I can use that attack action combined with my Y3 in greenstar to take your R3 that you just moved in. Like so

54) SilentTitan: Trade B1 R1 Silenttitan

55) Remneb: Attack B2 Silenttitan
	SilentTitan: but instead...  I will move three of my blue ships into your homeworld and catastrophe the blue
	SilentTitan: I want to keep mentioning to you... that you can only use the stars or your own ships in a system for the technology. In the case of system GreenStar now... you can only attack or build in that system you cannot trade or move (unless you sacrifice a blue or yellow somewhere else on the board) because you only have a red (attack) ship and the star is green (build).  you cannont trade in Greenstar because the blue ship is nime and therefore the technology is not yours. Is this making sense? If you do an attack option and capture my blue ship then you would be able to trade the turn after that. the command to attack my blue ship is "attack b1 greenstar south" you have to add the south part to this command so it knows who you are attacking ... while this doesn't make sense in the two player game ... it does in the four player game. 

56) SilentTitan: Move R1 Alderan Remneb
	Remneb: My target was your b2 in your Homeworld.
	Remneb: There's a lot of things to keep in mind when playing that game.I'm going-with your permission-copy all your comments for further studying.I found nothing on the net about the tactical aspect of Homeworlds.

57) Remneb: Trade B2 R2 Silenttitan
Catastrophe Silenttitan R
	SilentTitan: Whoops... you're right.  Nice Job! I got so caught up in teaching that I wasn't watching out. Did you want to play again?
	Remneb: Yes of course.I surely need more training.

	SilentTitan: Good Game!! Nice Job at the end ... there were some puzzles there you had to figure out. 
	SilentTitan: Yeah.... I'll tell my brother-in-law... that kind of thing is right up his alley
	SilentTitan: oops I probably should have this practice game be rated... heh
	Remneb: I think that you can be a good teacher also...since i don't know who is your brother-in-law.
	Remneb: Gosh! I tough it was not a rated game.
	Remneb: Let's play again.I will challenge you for a rated game.No help this time.I should be stunt in a few moves :)
	SilentTitan: ah... yes of course .. my bro-in-law is in position 2 on the ladder dlwillson.
	Remneb: He's playing a game against TwoShort for the 2000 rating :)


18167)
Variants: "Hard time"
Started: 2010.11.18, Ended: 2010.12.2
Participants: dlwillson (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) dlwillson: Homeworld B2 Y3 G3

3) TwoShort: Build G1 Twoshort

4) dlwillson: Build G1 Dlwillson

5) TwoShort: Trade G1 Y1 Twoshort

6) dlwillson: Trade G1 Y1 Dlwillson

7) TwoShort: Build G1 Twoshort

8) dlwillson: B G1 Dlwillson

9) TwoShort: Discover G1 Twoshort Y2 Yolonda

10) dlwillson: T G1 R1 Dlwillson

11) TwoShort: Build Y1 Twoshort

12) dlwillson: B Y2 Dlwillson

13) TwoShort: Discover Y1 Twoshort G2 Grogar

14) dlwillson: D Y1 Dlwillson G1 Rivendell

15) TwoShort: Build G1 Twoshort

16) dlwillson: Discover Y2 Dlwillson R1 Mordor

17) TwoShort: Build G2 Yolonda

18) dlwillson: Build G2 Dlwillson

19) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Grogar
Build Y3 Twoshort

20) dlwillson: Move G2 Dlwillson Mordor

21) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Twoshort
Build Y3 Twoshort

22) dlwillson: S Y2 Mordor
M Y1 Rivendell Grogar
M Y1 Grogar Twoshort
C Twoshort Y

23) TwoShort: Trade G3 Y3 Twoshort

24) dlwillson: S G2 Mordor
B G1 Dlwillson
B R1 Dlwillson

25) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Yolonda

26) dlwillson: T R1 Y1 Dlwillson

27) TwoShort: Trade G2 R2 Twoshort

28) dlwillson: D Y1 Dlwillson B1 Delay

29) TwoShort: Move G2 Yolonda Delay

30) dlwillson: Move Y1 Delay Grogar

31) TwoShort: Sacrifice Y3 Twoshort
Move G1 Yolonda Delay
Move G1 Delay Dlwillson
Move G2 Delay Dlwillson
Catastrophe Dlwillson Green
	dlwillson: There's not much point in playing since a few turns ago, but I think I remember that you prefer to play it out, so that's what I'm doing.
	TwoShort:   Because sometimes surprises happen (by definition) when you're pretty sure they won't, I do like to play a few moves past where it seems clear who will win. (e.g. a few moves ago)  
  I don't really mind if you call it or not once it's completely positive who will win. (e.g. now :) )

	dlwillson: Very good. I'll leave the ladder alone for a week or two. Let some other folks have a chance to play you (or me, whomever).


18095)
Started: 2010.11.18, Ended: 2010.12.22
Participants: ts52 (S), shelbytwest (N)
Winner: ts52

1) shelbytwest: Homeworld B2 R1 G3

2) ts52: Homeworld Y1 B3 G3

3) shelbytwest: Build G1 Shelbytwest
	ts52: have a good game!

4) ts52: Build G1 Ts52
	shelbytwest: Thanks!  You too.

5) shelbytwest: Trade G3 Y3 Shelbytwest

6) ts52: Trade G1 Y1 Ts52



18098)
Variants: "Unrated"
Started: 2010.11.20, Ended: 2011.2.23
Participants: headphoned (S), Uglyfoot (W), Mandrel (N), OnePageWars (E)
Winner: Mandrel

1) Mandrel: Homeworld R1 B2 G3

2) OnePageWars: Homeworld G3 Y2 B3
	Mandrel: Have a good game all.

3) headphoned: Homeworld R1 B3 G3
	OnePageWars: Thanks.

4) Uglyfoot: Homeworld B3 Y2 G3

5) Mandrel: B G1 Mandrel

6) OnePageWars: Build B1 Onepagewars

7) headphoned: B G1 Headphoned
	OnePageWars: TaGG!!
	Uglyfoot: have a good game!

8) Uglyfoot: Build G1 Uglyfoot

9) Mandrel: T G1 Y1 Mandrel

10) OnePageWars: Trade B1 Y1 Onepagewars

11) headphoned: Trade G1 Y1 Headphoned

12) Uglyfoot: Trade G1 R1 Uglyfoot

13) Mandrel: Build G1 Mandrel

14) OnePageWars: Build B1 Onepagewars

15) headphoned: B G1 Headphoned

16) Uglyfoot: Build G1 Uglyfoot

17) Mandrel: Trade G1 R1 Mandrel

18) OnePageWars: Build Y1 Onepagewars

19) headphoned: B G1 Headphoned

20) Uglyfoot: Build G1 Uglyfoot

21) Mandrel: Build Y1 Mandrel

22) OnePageWars: Build Y2 Onepagewars

23) Uglyfoot: Trade G3 Y3 Uglyfoot

24) Mandrel: Build Y2 Mandrel
Catastrophe Onepagewars Yellow

25) Uglyfoot: Discover G1 Uglyfoot Y1 Port

26) Mandrel: Move Y1 Mandrel Onepagewars

27) Uglyfoot: Build G1 Port

28) Mandrel: Build G2 Mandrel

29) Uglyfoot: Move G1 Port Onepagewars

30) Mandrel: Build Y1 Onepagewars

31) Uglyfoot: Build G2 Onepagewars

32) Mandrel: Move G2 Mandrel Onepagewars
Catastrophe Onepagewars Green

33) Uglyfoot: Build Y1 Uglyfoot

34) Mandrel: Trade Y1 B1 Mandrel

35) Uglyfoot: Trade Y3 G3 Uglyfoot

36) Mandrel: Discover B1 Mandrel G3 Tat

37) Uglyfoot: Build G1 Port

38) Mandrel: Build G2 Mandrel

39) Uglyfoot: Discover G1 Port Y3 Shiny

40) Mandrel: Move G2 Mandrel Tat

41) Uglyfoot: Build G2 Port

42) Mandrel: Build G2 Mandrel

43) Uglyfoot: Build G2 Shiny

44) Mandrel: Trade G2 Y2 Tat

45) Uglyfoot: Trade G1 B1 Uglyfoot

46) Mandrel: Build Y1 Tat

47) Uglyfoot: Move B1 Uglyfoot Port

48) Mandrel: Build B1 Tat

49) Uglyfoot: Trade G2 Y2 Port

50) Mandrel: Trade G3 R3 Mandrel

51) Uglyfoot: Sacrifice B1 Port
Trade G2 R2 Shiny

52) Mandrel: Move R1 Mandrel Tat

53) Uglyfoot: Build R1 Shiny

54) Mandrel: Trade R3 B3 Mandrel

55) Uglyfoot: Build R2 Uglyfoot

56) Mandrel: Build R2 Tat

57) Uglyfoot: Trade R2 B2 Uglyfoot

58) Mandrel: Discover R2 Tat G1 Cold

59) Uglyfoot: Build G2 Shiny

60) Mandrel: Build G2 Mandrel

61) Uglyfoot: Sacrifice B2 Uglyfoot
Trade R1 B1 Shiny
Trade G1 Y1 Shiny

62) Mandrel: Move Y1 Tat Cold

63) Uglyfoot: Build G1 Shiny

64) Mandrel: Build Y2 Cold

65) Uglyfoot: Build B1 Shiny

66) Mandrel: Build Y3 Mandrel

67) Uglyfoot: Sacrifice Y2 Port
Move B1 Shiny Mandrel
Move B1 Shiny Mandrel
Catastrophe Mandrel B

68) Mandrel: Sacrifice Y2 Mandrel
Move Y2 Cold Uglyfoot
Move Y1 Cold Uglyfoot
Catastrophe Uglyfoot Yellow

69) Uglyfoot: Build G2 Port

70) Mandrel: Move B1 Tat Mandrel

71) Uglyfoot: Trade R1 B1 Uglyfoot

72) Mandrel: Sacrifice Y3 Mandrel
Move B1 Mandrel Uglyfoot
Move B1 Tat Mandrel
Move B1 Mandrel Uglyfoot
Catastrophe Uglyfoot Blue

	Mandrel: Good game.


18170)
Variants: "Hard time"
Started: 2010.11.23, Ended: 2010.12.15
Participants: sompm (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B3 R2 G3

2) sompm: Homeworld G2 B1 Y3

3) SilentTitan: Build G1 Silenttitan

4) sompm: Build Y1 Sompm

5) SilentTitan: Trade G1 Y1 Silenttitan

6) sompm: Build Y1 Sompm

7) SilentTitan: Build Y2 Silenttitan

8) sompm: Discover Y1 Sompm G3 Caboose

9) SilentTitan: Discover Y1 Silenttitan B1 D_rgw

10) sompm: Build Y2 Caboose

11) SilentTitan: Build G1 Silenttitan

12) sompm: Build Y2 Sompm

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 D_rgw
Build Y3 Silenttitan
Build G1 Silenttitan

14) sompm: Trade Y2 B2 Sompm

15) SilentTitan: Trade Y3 R3 D_rgw

16) sompm: Trade Y1 R1 Sompm

17) SilentTitan: Move R3 D_rgw Caboose
	SilentTitan: ok... are you a beginner? Can I give advice?
	sompm: I'm not really a beginner, but you can give all the advice you want. Is that in reaction to that last move?
	SilentTitan: yes. I could sacrifice the Y2 in silenttitan and move the R3 in D_RGW into your homeworld and I was wondering if you had missed that?
	sompm: apparently so. Thank you. That might not have been in your best interest, but the game may be slightly more interesting now. I'll try to be more aware.

18) sompm: Sacrifice Y2 Caboose
Move Y1 Caboose D_rgw
Discover B2 Sompm Y3 Progress

19) SilentTitan: Trade Y1 R1 D_rgw

20) sompm: Sacrifice Y1 D_rgw
Discover B2 Progress G1 Congress

21) SilentTitan: Move Y2 Silenttitan Congress

22) sompm: Build R1 Sompm

23) SilentTitan: Sacrifice R1 D_rgw
Attack B2 Congress South

24) sompm: Build R1 Sompm

25) SilentTitan: Build B1 Congress



18136)
Variants: "Unrated"
Started: 2010.11.24, Ended: 2011.1.10
Participants: sompm (S), daselva (W), zoltar (N), OnePageWars (E)
Winner: zoltar

1) zoltar: Homeworld R2 B1 G3

2) OnePageWars: Homeworld R3 G2 B3

3) sompm: Homeworld B3 G2 Y3

4) daselva: Homeworld B1 R3 G3

5) zoltar: Build G1 Zoltar

6) OnePageWars: Build B1 Onepagewars

7) sompm: Build Y1 Sompm

8) daselva: Build G1 Daselva

9) zoltar: Trade G1 Y1 Zoltar

10) OnePageWars: Trade B1 Y1 Onepagewars

11) sompm: Build Y1 Sompm

12) daselva: Build G1 Daselva

13) zoltar: Build G1 Zoltar

14) OnePageWars: Build Y1 Onepagewars

15) sompm: Discover Y1 Sompm G1 Technochocolate

16) daselva: Trade G3 Y3 Daselva

17) zoltar: Build Y2 Zoltar

18) OnePageWars: Move Y1 Onepagewars Technochocolate

19) sompm: Build Y2 Sompm

20) daselva: Build Y2 Daselva

21) zoltar: Trade Y1 B1 Zoltar

22) OnePageWars: Move Y1 Technochocolate Sompm
Catastrophe Sompm Y

23) daselva: Trade Y2 R2 Daselva
	OnePageWars: Sorry Sompm!

24) zoltar: Discover B1 Zoltar G3 Greengiant

25) OnePageWars: Build B1 Onepagewars

26) daselva: Discover R2 Daselva Y2 S1

27) zoltar: Build Y1 Zoltar

28) OnePageWars: Build Y1 Onepagewars

29) daselva: Move G1 Daselva S1

30) zoltar: Trade G1 R1 Zoltar

31) OnePageWars: Trade Y1 R1 Onepagewars

32) daselva: Build R1 S1

33) zoltar: Move Y2 Zoltar Greengiant

34) OnePageWars: Build Y1 Onepagewars

35) daselva: Move R2 S1 Greengiant

36) zoltar: Sacrifice R1 Zoltar
Attack R2W Greengiant

37) OnePageWars: Move Y1 Onepagewars Technochocolate

38) daselva: Discover R1 S1 Y3 S2

39) zoltar: Build R1 Greengiant

40) OnePageWars: Trade B1 G1 Onepagewars

41) daselva: Move G1 S1 S2

42) zoltar: Move R2 Greengiant Technochocolate

43) OnePageWars: Move Y1 Technochocolate Onepagewars

44) daselva: Build R1 S2

45) zoltar: Attack Y1S Technochocolate

46) OnePageWars: Build B1 Onepagewars

47) daselva: Discover R1 S2 Y2 S3

48) zoltar: Build B1 Greengiant

49) OnePageWars: Build B2 Onepagewars

50) daselva: Discover R1 S2 Y2 S4

51) zoltar: Sacrifice Y2 Greengiant
Move B1 Greengiant Technochocolate
Move B1 Technochocolate Onepagewars
Catastrophe Onepagewars B
	OnePageWars: I know what I'll start calling my planets that I discover: Peter, Susan, Edmund, Lucy, Tumnus, Reepicheep, Aslan, White Witch, Caspian, DawnTreader, Narnia, Calormen, Archenland, etc. :)
Does anyone notice a pattern?
	OnePageWars: No, Reepicheep comes first. I like him.

52) OnePageWars: Discover Y1 Onepagewars Y1 Reepicheep

53) daselva: Build Y2 Daselva

54) zoltar: Build Y2 Zoltar

55) OnePageWars: Build Y2 Onepagewars

56) daselva: Trade Y2 R2 Daselva
	zoltar: Nah: that would be a powerful move, but too aggressive, I think.

57) zoltar: Move Y2 Zoltar Greengiant

58) OnePageWars: Build Y2 Onepagewars

59) daselva: Build Y3 Daselva

60) zoltar: Build Y3 Greengiant

61) OnePageWars: Build Y3 Onepagewars

62) daselva: Trade Y3 G3 Daselva
Catastrophe Onepagewars Y

63) zoltar: Discover Y2 Greengiant B2 Bluebell

64) daselva: Move R1 S4 S2

65) zoltar: Move R2 Technochocolate S2

66) daselva: Move R2 Daselva Bluebell

67) zoltar: Sacrifice R1 Greengiant
Attack R2W Bluebell

68) daselva: Move G3 Daselva S3

69) zoltar: Attack G1W S2

70) daselva: Move R1 S2 S3

71) zoltar: Discover Y1 Technochocolate G2 Greenbean

72) daselva: Build G1 Daselva

73) zoltar: Build Y1 Greenbean

74) daselva: Trade G1 B1 Daselva

75) zoltar: Build Y2 Greenbean

76) daselva: Move B1 Daselva S3

77) zoltar: Build Y2 Greengiant

78) daselva: Move G3 S3 S2

79) zoltar: Sacrifice G3 Zoltar
Build Y2 Bluebell
Build Y3 Bluebell
Build Y3 Zoltar

80) daselva: Sacrifice R1 S3
Attack R2N S2

81) zoltar: Sacrifice Y3 Greengiant
Move Y1 Greenbean Daselva
Move Y1 Greenbean Daselva
Move Y2 Bluebell Daselva
Catastrophe Daselva Y

82) daselva: Move G3 S2 S3

83) zoltar: Move Y3 Bluebell Daselva

84) zoltar: Attack G1W Daselva



18256)
Variants: "Hard time"
Started: 2010.11.24, Ended: 2010.12.14
Participants: dethdukk (S), sompm (N)
Winner: sompm

1) sompm: Homeworld G3 B2 Y3

2) dethdukk: Homeworld B1 R2 G3

3) sompm: Build Y1 Sompm

4) dethdukk: Build G1 Dethdukk

5) sompm: Build Y1 Sompm

6) dethdukk: Build G1 Dethdukk

7) sompm: Discover Y1 Sompm G1 Bandicoot

8) dethdukk: Trade G1 Y1 Dethdukk

9) sompm: Build Y2 Bandicoot

10) dethdukk: Build Y2 Dethdukk

11) sompm: Build Y2 Bandicoot



18234)
Variants: "Hard time"
Started: 2010.11.24, Ended: 2010.12.10
Participants: SilentTitan (S), Remneb (N)
Winner: SilentTitan

1) Remneb: Homeworld B1 R2 G3

2) SilentTitan: Homeworld B2 R3 G3

3) Remneb: Build G1 Remneb

4) SilentTitan: Build G1 Silenttitan

5) Remneb: Trade G1 B1 Remneb

6) SilentTitan: Trade G3 B3 Silenttitan
	Remneb: I've just started a new topic in the forum:Homeworld Tactical.It is in the General area of the Forum.It could become the basic for a book about the game.All players are welcome to correct my mistakes.

7) Remneb: Build G1 Remneb

8) SilentTitan: Trade B3 Y3 Silenttitan

9) Remneb: Trade G1 Y1 Remneb

10) SilentTitan: Build Y1 Silenttitan

11) Remneb: Build G1 Remneb

12) SilentTitan: Discover Y1 Silenttitan R1 Killers

13) Remneb: Discover G1 Remneb Y3 Edinga

14) SilentTitan: Discover Y1 Killers G3 Areosmith

15) Remneb: Build B1 Remneb

16) SilentTitan: Build Y1 Silenttitan
	SilentTitan: doing much better in this game
	SilentTitan: lol... of course you actually won the last game ... let's not forget that


17) Remneb: Build Y2 Remneb
	Remneb: :)

18) SilentTitan: Build Y2 Areosmith

19) Remneb: Trade B1 R1 Remneb
	Remneb: How can your Areosmith system (g3)be connected to your Homeworld (r3,b2)? Same stars of 3 pips?You should have a one pip star to be connected yes or no?

20) SilentTitan: Trade Y1 B1 Silenttitan
	SilentTitan: connected isn't really the issue... it's not like a supply line.   I used a 1-pip to get to the three pip ... but once I left the 1-pip system I went back to the bank. See down at 18:22:02 where it says the killers system has been abandoned to the hyperspatial flux?  if I wanted to move back to my homeworld with something in areosmith (which would take two moves) I would have to discover another 1-pip world and from there I could move to my homeworld
	SilentTitan: I = it went back to the bank (meaning the 1-pip world named killers

21) Remneb: Build B2 Remneb
	Remneb: So a new system discovered by a ship coming from another system then the Homeworld do not have to be connected to the Homeworld ?

22) SilentTitan: Discover B1 Silenttitan Y1 Checkcheck
	SilentTitan: correct it only has to be connected to the previous system.  The one it came from. If you came from a 1p you can only go to a 2p or 3p in one move. if you came from a homeworld then you can only go the size missing in the homeworld. In this game I can only go out to 1p and you can only go out to 3p stars from our homeworlds. From each of those system you can go to any legit system.  Note however I can only gain access to your homeworld from a 3p star and you can only get to mine from a 1p star. Keep in mind if I were to burn the 2p star in my own homeworld our homeworlds would be connected directly together. 

23) Remneb: Trade B2 R2 Remneb
	Remneb: That is clear now.Thanks.dlwillson lost his game against TwoShort.TwoShort have now a rating of 2001 !

24) SilentTitan: Build Y2 Silenttitan

25) Remneb: Discover R1 Remneb Y3 Lexington

26) SilentTitan: Sacrifice B1 Checkcheck
Trade Y2 R2 Areosmith

27) Remneb: Discover R1 Lexington Y2 Trenton

28) SilentTitan: Trade Y3 G3 Silenttitan

29) Remneb: Move R1 Trenton Edinga

30) SilentTitan: Discover G1 Silenttitan Y1 Okgo

31) Remneb: Move Y1 Remneb Edinga

32) SilentTitan: Build Y2 Areosmith

33) Remneb: Build Y3 Remneb

34) SilentTitan: Build Y3 Silenttitan
	SilentTitan: ok... you've done great up till this last move. I beleive that you'd be better off discovering a new system with that y1 rather than pilling up two yellows in Edinga.
	Remneb: I'm doing that cause i have an eye on the 3 yellow in the reserve ( 2 of 3 pips and 1 of 2 pips).In think sacrifying my g3 to have these 3 yellow can give me more power...well maybe it's not a so good idea.
	Remneb: I need a yellow ship in each system if i don't want too many of that color in the same system.

35) Remneb: Move Y1 Edinga Okgo

36) SilentTitan: Build R1 Areosmith

37) Remneb: Move Y2 Remneb Edinga

38) SilentTitan: Sacrifice Y2 Silenttitan
Move R2 Areosmith Remneb
Move R1 Areosmith Remneb
Catastrophe Remneb Red

39) Remneb: Move R1 Edinga Okgo

40) SilentTitan: Build Y2 Silenttitan

41) Remneb: Attack G1 Okgo

42) SilentTitan: Trade Y2 B2 Silenttitan

43) Remneb: Discover R1 Okgo R3 Sangrilla

44) SilentTitan: Discover Y2 Areosmith B1 Tmbg

45) Remneb: Build Y2 Remneb

46) SilentTitan: Trade Y2 B2 Tmbg

47) Remneb: Move B1 Remneb Sangrilla

48) SilentTitan: Build Y2 Areosmith

49) Remneb: Discover Y2 Remneb G2 Malvern

50) SilentTitan: Sacrifice B2 Tmbg
Trade Y2 B2 Areosmith
Trade Y1 B1 Areosmith

51) Remneb: Sacrifice G3 Remneb
Build G1 Edinga
Build B3 Sangrilla
Build Y1 Malvern

52) SilentTitan: Sacrifice Y3 Silenttitan
Move B2 Silenttitan Remneb
Move B2 Areosmith Remneb
Move B1 Areosmith Remneb
Catastrophe Remneb Blue

	SilentTitan: good game. 
	Remneb: Well well...i't never cross my mind that a player can sacrifice 3 of his own ship to destroy a system!
	SilentTitan: you had me far out numbered. good thing I had a plan


18189)
Started: 2010.11.27, Ended: 2010.12.10
Participants: dethdukk (S), goblin981 (N)
Winner: goblin981

1) goblin981: Homeworld G1 Y2 B3

2) dethdukk: Homeworld G1 B3 G3 *

3) goblin981: Build B1 Goblin981

4) dethdukk: Build G1 Dethdukk

5) goblin981: Build B1 Goblin981

6) dethdukk: Trade G3 Y3 Dethdukk

7) goblin981: Trade B1 Y1 Goblin981



18311)
Variants: "Hard time"
Started: 2010.11.27, Ended: 2010.12.21
Participants: goblin981 (S), shmil1 (N)
Winner: shmil1

1) shmil1: Homeworld B1 G2 Y3

2) goblin981: Homeworld G3 Y1 B3

3) shmil1: Build Y1 Shmil1

4) goblin981: Build B1 Goblin981

5) shmil1: Build Y1 Shmil1

6) goblin981: Build B1 Goblin981

7) shmil1: Trade Y1 R1 Shmil1

8) goblin981: Trade B3 R3 Goblin981

9) shmil1: Build Y1 Shmil1

10) goblin981: Build R1 Goblin981

11) shmil1: Trade Y1 G1 Shmil1

12) goblin981: Trade B1 Y1 Goblin981

13) shmil1: Build G1 Shmil1

14) goblin981: Build Y2 Goblin981

15) shmil1: Build Y2 Shmil1

16) goblin981: Discover Y2 Goblin981 G2 Green

17) shmil1: Trade Y2 R2 Shmil1

18) goblin981: Build Y2 Green

19) shmil1: Discover R2 Shmil1 Y3 Slunce

20) goblin981: Build Y2 Green

21) shmil1: Move R2 Slunce Green

22) goblin981: Discover Y2 Green G3 Bobo

23) shmil1: Attack Y2 Green

24) goblin981: Build B1 Goblin981

25) shmil1: Build R1 Green

26) goblin981: Move Y2 Green Bobo

27) shmil1: Sacrifice Y2 Green
Move R1 Green Goblin981
Move R2 Green Goblin981
Catastrophe Goblin981 Red

28) goblin981: Sacrifice B1 Goblin981
Trade Y2 G2 Bobo

29) shmil1: Discover G1 Shmil1 Y3 Solnecnyjkrug

30) goblin981: Build G1 Bobo

31) shmil1: Move G1 Shmil1 Bobo
Catastrophe Bobo Green

32) goblin981: Build Y2 Goblin981

33) shmil1: Discover G1 Solnecnyjkrug Y2 Zluty

34) goblin981: Build B1 Goblin981

35) shmil1: Move G1 Zluty Goblin981

36) goblin981: Trade B1 R1 Goblin981

37) shmil1: Sacrifice R1 Shmil1
Attack R1 Goblin981

38) goblin981: Discover B1 Goblin981 G2 Gogo

39) shmil1: Attack Y1 Goblin981
	goblin981: Damn it.  Nicely done.

40) goblin981: Build B1 Gogo

41) shmil1: Build Y2 Goblin981
Catastrophe Goblin981 Yellow



18249)
Variants: "Unrated"
Started: 2010.11.28, Ended: 2010.12.13
Participants: daselva (S), lorgar (N)
Winner: daselva

1) lorgar: Homeworld G3 Y2 B3

2) daselva: Homeworld R2 B1 G3

3) lorgar: Build B1 Lorgar

4) daselva: Build G1 Daselva

5) lorgar: Build B1 Lorgar

6) daselva: Build G1 Daselva

7) lorgar: Discover B1 Lorgar G1 Tc2

8) daselva: Trade G1 Y1 Daselva

9) lorgar: Build B2 Tc2

10) daselva: Trade G3 R3 Daselva

11) lorgar: Trade B2 R2 Tc2

12) daselva: Build G1 Daselva

13) lorgar: Build B2 Tc2

14) daselva: Build G2 Daselva

15) lorgar: Trade B2 G2 Tc2

16) daselva: Discover G1 Daselva Y3 S1

17) lorgar: Build B2 Tc2

18) daselva: Build G2 S1


19) lorgar: Trade B2 Y2 Tc2

20) daselva: Move R3 Daselva S1

21) lorgar: Move B3 Lorgar Tc2

22) daselva: Discover R3 S1 Y1 S2

23) lorgar: Sacrifice Y2 Tc2
Move B3 Tc2 S1
Move B3 S1 Daselva

24) daselva: Move R3 S2 Lorgar

25) lorgar: Sacrifice R2 Tc2
Attack G2 Daselva
Attack G1 Daselva

26) daselva: Attack B1 Lorgar



18268)
Variants: "Hard time"
Started: 2010.11.30, Ended: 2011.1.9
Participants: SilentTitan (S), lorgar (N)
Winner: SilentTitan

1) lorgar: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld B2 R3 G3

3) lorgar: Build G1 Lorgar

4) SilentTitan: Build G1 Silenttitan

5) lorgar: Build G1 Lorgar

6) SilentTitan: Build G2 Silenttitan

7) lorgar: Trade G1 B1 Lorgar

8) SilentTitan: Trade G1 Y1 Silenttitan

9) lorgar: Trade G1 Y1 Lorgar

10) SilentTitan: Build Y2 Silenttitan

11) lorgar: Build Y2 Lorgar

12) SilentTitan: Discover Y1 Silenttitan R1 Xi

13) lorgar: Discover Y2 Lorgar G3 Mu

14) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Xi
Build Y3 Silenttitan
Build Y3 Silenttitan

15) lorgar: Build Y3 Mu

16) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Xi Mu
Move Y2 Xi Mu
Catastrophe Mu Yellow

17) lorgar: Build G1 Lorgar
	lorgar: nice shot

18) SilentTitan: Discover Y3 Silenttitan B1 Alpha

19) lorgar: Build B1 Lorgar

20) SilentTitan: Build Y1 Silenttitan

21) lorgar: Discover B1 Lorgar G3 Armadillo

22) SilentTitan: Discover Y3 Alpha B3 Beta

23) lorgar: Build B1 Lorgar

24) SilentTitan: Sacrifice G2 Silenttitan
Build Y2 Beta
Build Y2 Silenttitan

25) lorgar: Trade B1 R1 Lorgar

26) SilentTitan: Trade Y2 R2 Beta

27) lorgar: Build B1 Armadillo

28) SilentTitan: Trade Y2 G2 Silenttitan

29) lorgar: Build B2 Lorgar

30) SilentTitan: Sacrifice G2 Silenttitan
Build Y2 Beta
Build Y2 Silenttitan

31) lorgar: Trade B2 R2 Lorgar

32) SilentTitan: Trade Y2 B2 Beta

33) lorgar: Move Y1 Lorgar Armadillo

34) SilentTitan: Discover B2 Beta G2 Omega

35) lorgar: Trade B1 R1 Armadillo

36) SilentTitan: Trade Y1 B1 Silenttitan

37) lorgar: Build B3 Armadillo

38) SilentTitan: Build B3 Omega

39) lorgar: Discover B1 Armadillo G1 Proko

40) SilentTitan: Trade B2 R2 Omega

41) lorgar: Build B2 Proko

42) SilentTitan: Move Y3 Beta Proko

43) lorgar: Sacrifice B2 Proko
Trade R1 Y1 Lorgar
Pass

44) SilentTitan: Trade Y3 G3 Silenttitan

45) lorgar: Build Y2 Armadillo

46) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Proko
Build Y3 Silenttitan
Build B2 Omega

47) lorgar: Sacrifice Y2 Armadillo
Move B3 Armadillo Omega
Move B1 Proko Omega
Catastrophe Omega Blue

48) SilentTitan: Move Y3 Proko Armadillo

49) lorgar: Build R1 Lorgar

50) SilentTitan: Sacrifice R2 Beta
Attack Y1 Armadillo North
Attack R1 Armadillo North



18125)
Started: 2010.11.30, Ended: 2010.12.3
Participants: lorgar (S), mathochist (N)
Winner: lorgar



18119)
Variants: "Hard time"
Started: 2010.11.30, Ended: 2010.12.5
Participants: Aristos (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

2) Aristos: Homeworld Y1 B2 G3

3) dlwillson: Build G1 Dlwillson

4) Aristos: Build G1 Aristos

5) dlwillson: Trade G1 Y1 Dlwillson

6) Aristos: Discover G1 Aristos G3 Babylon1

7) dlwillson: Build Y2 Dlwillson

8) Aristos: Build G1 Aristos

9) dlwillson: Discover Y1 Dlwillson B2 Goldie

10) Aristos: Trade G3 Y3 Aristos

11) dlwillson: Build Y2 Dlwillson

12) Aristos: Discover Y3 Aristos G3 Ixion

13) dlwillson: M Y1 Goldie Babylon1

14) Aristos: Build Y2 Ixion

15) dlwillson: Build Y3 Babylon1

16) Aristos: Move Y3 Ixion Aristos

17) dlwillson: T Y2 R2 Dlwillson

18) Aristos: Trade Y3 R3 Aristos

19) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Dlwillson
Build Y3 Babylon1
Build R1 Dlwillson

20) Aristos: Build Y3 Ixion

21) dlwillson: S Y2 Dlwillson
M Y3 Babylon1 Aristos
M Y3 Babylon1 Aristos

22) Aristos: Move Y2 Ixion Aristos
Catastrophe Aristos Y

23) dlwillson: T R2 G2 Dlwillson

24) Aristos: Discover Y3 Ixion G2 Flank

25) dlwillson: B Y1 Dlwillson
	dlwillson: You're doing very well for several moves now.

26) Aristos: Build R1 Aristos
	Aristos: Thanks.

27) dlwillson: T Y1 B1 Dlwillson

28) Aristos: Sacrifice R1 Aristos
Attack Y1 Babylon1

29) dlwillson: B B1 Dlwillson

30) Aristos: Move Y3 Flank Dlwillson
	Aristos: Dangit... I had it right and accidentally clicked the undo button. 

31) dlwillson: B Y1 Dlwillson
C Dlwillson Y

32) Aristos: Trade G1 B1 Aristos

33) dlwillson: T B1 Y1 Dlwillson

34) Aristos: Build Y1 Babylon1
	Aristos: I'm not sure I can stop you.

35) dlwillson: B Y2 Dlwillson
	Aristos: Ah. Got it!

36) Aristos: Move Y1 Babylon1 Aristos

37) dlwillson: S Y2 Dlwillson
M R1 Dlwillson Aristos
M B1 Dlwillson Aristos

38) Aristos: Sacrifice R3 Aristos
Attack B1 Aristos
Attack R1 Aristos
Pass

39) dlwillson: B G1 Dlwillson

40) Aristos: Build Y2 Babylon1
	dlwillson: Huh. I still don't know how this is going to end!

41) dlwillson: Trade G2 R2 Dlwillson

42) Aristos: Build Y2 Babylon1
	dlwillson: So, how many times have you played Homeworlds in real life?

43) dlwillson: Move R2 Dlwillson Aristos

44) Aristos: Sacrifice Y2 Babylon1
Move B1 Aristos Dlwillson
Move B1 Aristos Dlwillson

45) dlwillson: Sacrifice R2 Aristos
Attack B1 Dlwillson
Attack B1 Dlwillson
	Aristos: About 5 or 6. I can't get most people to play it, even among the friends that like most board games. "Too abstract." *sigh*

46) Aristos: Build Y2 Babylon1

47) dlwillson: Build Y2 Dlwillson

48) Aristos: Sacrifice Y2 Babylon1
Move R1 Aristos Dlwillson
Move Y2 Babylon1 Aristos

49) dlwillson: S B1 Dlwillson
T Y2 R2 Dlwillson

50) Aristos: Sacrifice Y1 Babylon1
Move R1 Dlwillson Aristos

51) dlwillson: B B1 Dlwillson

52) Aristos: Trade Y1 B1 Aristos
	dlwillson: that's it for me for tonight. see you tomorrow. join the ladder, you'll do great.

53) dlwillson: D B1 Dlwillson Y1 Dingo

54) Aristos: Sacrifice G1 Babylon1
Build R1 Aristos
	Aristos: Ladder?

55) dlwillson: M B1 Dlwillson Aristos

56) Aristos: Discover B1 Aristos Y1 Wrongway

57) dlwillson: M B1 Dingo Aristos

58) Aristos: Move B1 Wrongway Dlwillson

59) dlwillson: Sacrifice G1 Dlwillson
Build B2 Aristos
Catastrophe Aristos B

	dlwillson: Great game, Aristos. You should go tear up the ladder!


18124)
Started: 2010.11.30, Ended: 2010.12.4
Participants: rootbier (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld Y1 B2 G3



18186)
Started: 2010.12.3, Ended: 2010.12.30
Participants: lorgar (S), ts52 (N)
Winner: lorgar

1) ts52: Homeworld Y1 B3 G3

2) lorgar: Homeworld B2 G1 Y3
	ts52: have a good game!

3) ts52: Build G1 Ts52

4) lorgar: Build Y1 Lorgar

5) ts52: Build G1 Ts52

6) lorgar: Discover Y1 Lorgar G3 Hitherto

7) ts52: Discover G1 Ts52 B2 Gonzo

8) lorgar: Build Y1 Lorgar

9) ts52: Build G2 Gonzo

10) lorgar: Build Y2 Hitherto

11) ts52: Trade G2 Y2 Gonzo

12) lorgar: Trade Y1 R1 Lorgar

13) ts52: Trade G1 R1 Ts52

14) lorgar: Trade Y3 G3 Lorgar

15) ts52: Build G1 Gonzo

16) lorgar: Build G2 Lorgar

17) ts52: Sacrifice Y2 Gonzo
Move G1 Gonzo Hitherto
Move G1 Hitherto Lorgar
Catastrophe Lorgar Green

18) lorgar: Trade R1 G1 Lorgar

19) ts52: Build R1 Ts52

20) lorgar: Move Y2 Hitherto Lorgar

21) ts52: Move R1 Ts52 Gonzo

22) lorgar: Build G1 Lorgar

23) ts52: Build G2 Gonzo

24) lorgar: Trade G1 R1 Lorgar

25) ts52: Build R2 Ts52

26) lorgar: Build R2 Lorgar

27) ts52: Trade G2 Y2 Gonzo

28) lorgar: Move R1 Lorgar Hitherto

29) ts52: Discover R2 Ts52 Y2 Zoe

30) lorgar: Build R2 Hitherto

31) ts52: Sacrifice G3 Ts52
Build R3 Ts52
Build R3 Gonzo
Build R3 Zoe

32) lorgar: Build Y1 Hitherto

33) ts52: Move R3 Zoe Hitherto

34) lorgar: Build Y3 Lorgar

35) ts52: Attack Y1 Hitherto

36) lorgar: Move R2 Hitherto Lorgar

37) ts52: A R1 Hitherto

38) lorgar: Discover Y1 Hitherto G2 Thylacine

39) ts52: Move R3 Hitherto Thylacine

40) lorgar: Discover Y1 Thylacine G1 Bucephale

41) ts52: Build Y3 Gonzo

42) lorgar: Build Y3 Bucephale

43) ts52: Move R1 Gonzo Hitherto

44) lorgar: Move R2 Lorgar Bucephale

45) ts52: Discover G1 Gonzo B3 Grover

46) lorgar: Build G2 Lorgar

47) ts52: M Y3 Gonzo Grover

48) lorgar: Sacrifice Y3 Bucephale
Move R2 Lorgar Ts52
Discover R2 Bucephale B2 Atlas
Move R2 Atlas Ts52
Catastrophe Ts52 Red

	lorgar: gg, thanks for the game
	ts52: Well played sir. I should've seen that coming.
	lorgar: It is always a pleasure to play with such a subtle schemer. I learn from each game and hope that you will keep teaching me.
	ts52: I'd be happy to play again any time. 


18413)
Variants: "Hard time"
Started: 2010.12.3, Ended: 2011.1.9
Participants: mneme (S), dlwillson (N)
Winner: mneme

1) dlwillson: Homeworld B3 Y1 G3

2) mneme: Homeworld B1 R2 G3

3) dlwillson: B G1 Dlwillson

4) mneme: Build G1 Mneme

5) dlwillson: T G1 Y1 Dlwillson

6) mneme: Trade G1 Y1 Mneme

7) dlwillson: B Y2 Dlwillson

8) mneme: Build Y2 Mneme

9) dlwillson: T Y1 B1 Dlwillson

10) mneme: Trade Y2 B2 Mneme

11) dlwillson: B G1 Dlwillson

12) mneme: Build Y1 Mneme

13) dlwillson: Build Y2 Dlwillson

14) mneme: Discover Y1 Mneme B3 Hunter

15) dlwillson: D Y2 Dlwillson G2 Bears

16) mneme: Discover B2 Mneme Y3 Waystation

17) dlwillson: Discover Y2 Dlwillson B2 Tigers

18) mneme: Build G1 Mneme

19) dlwillson: M G1 Dlwillson Tigers

20) mneme: Trade G1 B1 Mneme

21) dlwillson: B G1 Dlwillson

22) mneme: Build G1 Mneme

23) dlwillson: T B1 R1 Dlwillson

24) mneme: Trade G1 R1 Mneme

25) dlwillson: M G1 Tigers Hunter

26) mneme: Sacrifice G3 Mneme
Build B1 Waystation
Build B2 Waystation
Build B3 Mneme

27) dlwillson: S R1 Dlwillson
Attack Y1 Hunter

28) mneme: Trade B3 G3 Mneme

29) dlwillson: S G3 Dlwillson
B Y2 Hunter
B Y3 Bears
B Y3 Tigers

30) mneme: Build B3 Mneme

31) dlwillson: T Y1 R1 Hunter

32) mneme: Move G3 Mneme Hunter

33) dlwillson: M R1 Hunter Bears

34) mneme: Sacrifice R1 Mneme
Attack Y2 Hunter

35) dlwillson: M Y3 Tigers Hunter

36) mneme: Move G3 Hunter Tigers

37) dlwillson: M Y3 Hunter Tigers

38) mneme: Sacrifice Y2 Hunter
Move G3 Tigers Hunter
Discover G3 Hunter R2 Refuge

39) dlwillson: Move Y2 Bears Waystation

40) mneme: Sacrifice B2 Waystation
Trade B1 R1 Waystation
Trade B3 R3 Mneme

41) dlwillson: S R1 Bears
A R1 Waystation

42) mneme: Sacrifice Y1 Mneme
Move G3 Refuge Dlwillson

	mneme: Good game!
	dlwillson: One of the classic blunders! Oh well. Good game anyway. :-)
	mneme: Not noticing the mate threat?  Pretty much, yeah.


18419)
Variants: "Hard time"
Started: 2010.12.4, Ended: 2011.1.27
Participants: agentofchaos (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B2 G3

2) agentofchaos: Homeworld R3 B1 G3

3) zoltar: Build G1 Zoltar

4) agentofchaos: Build G1 Agentofchaos

5) zoltar: Trade G1 Y1 Zoltar

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) zoltar: Build G1 Zoltar

8) agentofchaos: Build G1 Agentofchaos

9) zoltar: Trade G1 B1 Zoltar

10) agentofchaos: Trade G1 B1 Agentofchaos

11) zoltar: Build B2 Zoltar

12) agentofchaos: Build B2 Agentofchaos

13) zoltar: Discover B1 Zoltar G3 Greengiant

14) agentofchaos: Trade B2 R2 Agentofchaos

15) zoltar: Trade B2 R2 Zoltar

16) agentofchaos: Discover R2 Agentofchaos Y2 Ajeroth

17) zoltar: Build B2 Greengiant

18) agentofchaos: Build G1 Agentofchaos

19) zoltar: Trade B2 Y2 Greengiant

20) agentofchaos: Build B2 Agentofchaos

21) zoltar: Sacrifice Y2 Greengiant
Move B1 Greengiant Ajeroth
Move B1 Ajeroth Agentofchaos
Catastrophe Agentofchaos B

22) agentofchaos: Sacrifice G1 Agentofchaos
Build R1 Ajeroth

23) zoltar: Discover R2 Zoltar G3 Greengiant

24) agentofchaos: Build G1 Agentofchaos

25) zoltar: Build G1 Zoltar

26) agentofchaos: Move G1 Agentofchaos Ajeroth

27) zoltar: Trade G1 B1 Zoltar

28) agentofchaos: Discover G1 Ajeroth Y3 Diassomer

29) zoltar: Build G1 Zoltar

30) agentofchaos: Build G1 Diassomer

31) zoltar: Discover G1 Zoltar Y3 Mellowyellow

32) agentofchaos: Build G2 Diassomer

33) zoltar: Build G2 Zoltar

34) agentofchaos: Move G1 Diassomer Zoltar

35) zoltar: Sacrifice B1 Zoltar
Trade G3 B3 Zoltar

36) agentofchaos: Sacrifice G2 Diassomer
Build G2 Zoltar
Build G2 Diassomer

37) zoltar: Build G3 Mellowyellow

38) agentofchaos: Trade G1 B1 Zoltar

39) zoltar: Sacrifice R2 Greengiant
Attack B1 Zoltar
Attack G2 Zoltar
	zoltar: I think I'm toast.

40) agentofchaos: Build Y1 Agentofchaos

41) zoltar: Discover G2 Zoltar Y3 Oldyeller

42) agentofchaos: Discover G1 Diassomer B2 Glumph

43) zoltar: Sacrifice G3 Mellowyellow
Build G1 Zoltar
Build G3 Mellowyellow
Build G3 Oldyeller

44) agentofchaos: Build Y2 Agentofchaos

45) zoltar: Move Y1 Zoltar Agentofchaos
Catastrophe Agentofchaos Y



31968)
Started: 2017.4.14, Ended: 2017.8.9
Participants: fogus (S), panglott (N)
Winner: fogus

1) panglott: Homeworld R3 B2 G3

2) fogus: Homeworld Y1 B2 G3

3) panglott: Build G1 Panglott

4) fogus: Build G1 Fogus

5) panglott: Build G1 Panglott

6) fogus: Build G2 Fogus

7) panglott: Trade G1 Y1 Panglott

8) fogus: Trade G2 Y2 Fogus

9) panglott: Build G1 Panglott

10) fogus: Build G2 Fogus

11) panglott: Discover G1 Panglott B1 Acamar

12) fogus: Trade G1 R1 Fogus

13) panglott: Build Y1 Panglott

14) fogus: Build Y2 Fogus

15) panglott: Trade G1 R1 Acamar

16) fogus: Discover Y2 Fogus G3 Eklund

17) panglott: Build Y2 Panglott

18) fogus: Build Y3 Eklund

19) panglott: Move Y2 Panglott Acamar

20) fogus: Trade Y2 R2 Fogus

21) panglott: Move Y1 Panglott Acamar

22) fogus: Move R1 Fogus Eklund

23) panglott: Move G1 Panglott Acamar

24) fogus: Discover Y2 Eklund G1 Kansil

25) panglott: Build Y2 Acamar

26) fogus: Sacrifice G2 Fogus
Build Y3 Eklund
Build Y3 Kansil

27) panglott: Build G1 Acamar

28) fogus: Build G2 Fogus

29) panglott: Discover Y1 Acamar R3 Telluride

30) fogus: Move G2 Fogus Telluride

31) panglott: Build G2 Panglott

32) fogus: Build G2 Telluride

33) panglott: Discover Y1 Telluride B1 Banff

34) fogus: Move Y3 Eklund Banff

35) panglott: Trade G1 B1 Acamar

36) fogus: Move R1 Eklund Banff

37) panglott: Sacrifice Y2 Acamar
Move Y1 Banff Eklund
Move B1 Acamar Eklund

38) fogus: Move R2 Fogus Eklund

39) panglott: Discover Y1 Eklund B2 Biloxi

40) fogus: Attack B1 Eklund

41) panglott: Move G1 Acamar Biloxi

42) fogus: Move R2 Eklund Biloxi

43) panglott: Discover G1 Biloxi R3 Paducah

44) fogus: Attack Y1 Biloxi

45) panglott: Sacrifice G3 Panglott
Build G1 Paducah
Build G3 Panglott
Build Y2 Panglott

46) fogus: Build B3 Eklund

47) panglott: Sacrifice Y2 Acamar
Move G2 Panglott Acamar
Move G2 Acamar Paducah

48) fogus: Sacrifice Y2 Kansil
Move G2 Telluride Kansil
Move G2 Kansil Paducah
Catastrophe Paducah G

49) panglott: Build G1 Panglott

50) fogus: Trade Y3 B3 Banff

51) panglott: Move Y1 Panglott Acamar

52) fogus: Move R2 Biloxi Acamar

53) panglott: Move R1 Acamar Panglott

54) fogus: Sacrifice Y3 Eklund
Move R2 Acamar Panglott
Move R1 Banff Panglott
Move B3 Eklund Fogus
Catastrophe Panglott R

55) panglott: Trade Y1 G1 Acamar

56) fogus: Build B3 Eklund

57) panglott: Sacrifice G3 Panglott
Build G2 Acamar
Build G2 Acamar
Build G3 Panglott

58) fogus: Sacrifice Y3 Kansil
Move B1 Eklund Panglott
Move B3 Eklund Panglott
Move B3 Banff Panglott
Catastrophe Panglott B

	fogus: Thank you for the game!
	panglott: Thanks ;)


18368)
Variants: "Hard time"
Started: 2010.12.9, Ended: 2011.1.4
Participants: dlwillson (S), Aristos (N)
Winner: dlwillson

1) Aristos: Homeworld G1 B2 Y3

2) dlwillson: Homeworld B3 Y1 G3
	dlwillson: Another round, eh? Excellent! Good luck!

3) Aristos: Build Y1 Aristos

4) dlwillson: B G1 Dlwillson

5) Aristos: Build Y1 Aristos

6) dlwillson: B G1 Dlwillson

7) Aristos: Discover Y1 Aristos B3 Ice

8) dlwillson: D G1 Dlwillson G2 Green

9) Aristos: Build Y2 Aristos

10) dlwillson: S G3 Dlwillson
B G2 Green
B G2 Dlwillson
B G3 Dlwillson

11) Aristos: Trade Y3 G3 Aristos

12) dlwillson: T G2 Y2 Dlwillson

13) Aristos: Discover Y1 Ice G2 Moss

14) dlwillson: B G3 Dlwillson

15) Aristos: Build Y2 Moss

16) dlwillson: T G3 R3 Dlwillson

17) Aristos: Build Y3 Aristos

18) dlwillson: M Y2 Dlwillson Green

19) Aristos: Sacrifice Y2 Aristos
Discover G3 Aristos Y3 Uranium
Move G3 Uranium Green
Catastrophe Green G

20) dlwillson: M R3 Dlwillson Moss

21) Aristos: Sacrifice Y1 Moss
Discover Y2 Moss G3 Verdant

22) dlwillson: B G1 Dlwillson

23) Aristos: Build Y1 Verdant

24) dlwillson: T G3 Y3 Dlwillson

25) Aristos: Trade Y3 R3 Aristos

26) dlwillson: B G2 Dlwillson

27) Aristos: Build Y2 Aristos

28) dlwillson: D G1 Dlwillson G2 Greeen

29) Aristos: Build Y2 Verdant

30) dlwillson: S G2 Dlwillson
B G2 Greeen
B G3 Dlwillson

31) Aristos: Build Y3 Aristos

32) dlwillson: M Y3 Dlwillson Greeen

33) Aristos: Move Y2 Verdant Greeen

34) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B G3 Dlwillson
B Y3 Greeen

35) Aristos: Move Y1 Verdant Greeen
Catastrophe Greeen Y

36) dlwillson: T G3 Y3 Dlwillson

37) Aristos: Trade Y3 G3 Aristos

38) dlwillson: M Y3 Dlwillson Moss
	Aristos: I have to say... the one rule of this game that I don't particularly like is the ability to pass when you sacrifice a ship. It makes sense from a "reflection of war" standpoint, but it really makes certain types of tactics a pain to set up.

39) Aristos: Build Y1 Verdant

40) dlwillson: B Y2 Moss

41) Aristos: Sacrifice Y2 Aristos
Move Y1 Verdant Moss
Move Y2 Verdant Moss
Catastrophe Moss Yellow

42) dlwillson: B G3 Dlwillson

43) Aristos: Build R1 Aristos

44) dlwillson: T G3 Y3 Dlwillson

45) Aristos: Discover G3 Aristos Y3 Coward

46) dlwillson: S G3 Dlwillson
B G3 Dlwillson
Build G3 Dlwillson
Build R1 Moss

47) Aristos: Move G3 Coward Greeen
Catastrophe Greeen G

48) dlwillson: Move Y3 Dlwillson Moss

	Aristos: That's what I thought. Well, congrats. :-)
	dlwillson: Good game. 


31958)
Started: 2017.4.14, Ended: 2017.5.16
Participants: Felix (S), panglott (N)
Winner: Felix

1) panglott: Homeworld B3 G2 Y3

2) Felix: Homeworld B1 R3 G3
	Felix: HI there. Hope you have fun!

3) panglott: Build Y1 Panglott

4) Felix: Build G1 Felix

5) panglott: Build Y1 Panglott

6) Felix: Trade G1 Y1 Felix

7) panglott: Discover Y1 Panglott R1 Polaris

8) Felix: Build Y2 Felix

9) panglott: Discover Y1 Panglott R1 Meridion

10) Felix: Discover Y2 Felix Y2 Rim

11) panglott: Build Y2 Panglott

12) Felix: Build Y3 Felix

13) panglott: Trade Y2 G2 Panglott

14) Felix: Discover Y1 Felix B2 Out

15) panglott: Build Y2 Panglott

16) Felix: Build Y3 Felix

17) panglott: Trade Y2 R2 Panglott

18) Felix: Move Y2 Rim Polaris

19) panglott: Move Y1 Polaris Panglott

20) Felix: Move Y1 Out Polaris

21) panglott: Discover Y1 Meridion G2 Alcazar

22) Felix: Move Y1 Polaris Panglott

23) panglott: Discover Y1 Panglott G1 Tenet

24) Felix: Build Y2 Panglott

25) panglott: Trade Y3 G3 Panglott

26) Felix: Trade Y1 G1 Panglott
Catastrophe Panglott Green

27) panglott: Attack Y2 Panglott

28) Felix: Trade Y3 R3 Felix

29) panglott: Build Y1 Alcazar

30) Felix: Sacrifice Y2 Polaris
Move R3 Felix Alcazar
Move R3 Alcazar Panglott

31) panglott: Trade Y2 G2 Panglott

32) Felix: Attack R2 Panglott

33) panglott: Build Y2 Alcazar

34) Felix: Attack G2 Panglott



18467)
Variants: "Hard time"
Started: 2010.12.9, Ended: 2011.1.12
Participants: Aristos (S), Gidaio (N)
Winner: Aristos

1) Gidaio: Homeworld G3 B1 Y3

2) Aristos: Homeworld G1 B2 Y3

3) Gidaio: Build Y1 Gidaio

4) Aristos: Build Y1 Aristos

5) Gidaio: Trade Y1 R1 Gidaio

6) Aristos: Build Y1 Aristos

7) Gidaio: Build Y1 Gidaio

8) Aristos: Trade Y1 R1 Aristos

9) Gidaio: Discover Y1 Gidaio B2 Solaris

10) Aristos: Discover Y1 Aristos G3 Burningcopper

11) Gidaio: Trade Y1 G1 Solaris

12) Aristos: Build Y1 Aristos
	Aristos: Sorry -- mistyped the y as a g. 

13) Gidaio: Build G1 Solaris

14) Aristos: Build Y1 Burningcopper

15) Gidaio: Build G2 Solaris

16) Aristos: Build Y2 Burningcopper

17) Gidaio: Trade G2 Y2 Solaris

18) Aristos: Discover Y2 Burningcopper B2 Gasgiant

19) Gidaio: Discover G1 Solaris R3 Gassygiant

20) Aristos: Move Y2 Gasgiant Gassygiant

21) Gidaio: Build G2 Solaris

22) Aristos: Attack G1 Gassygiant

23) Gidaio: Build G2 Solaris

24) Aristos: Build G2 Gassygiant

25) Gidaio: Sacrifice Y2 Solaris
Discover G2 Solaris B3 Yeahno
Move G2 Solaris Yeahno

26) Aristos: Discover G2 Gassygiant Y2 Whytwo

27) Gidaio: Build G3 Solaris

28) Aristos: Build Y2 Gassygiant

29) Gidaio: Sacrifice G3 Solaris
Build G3 Solaris
Build Y3 Gidaio
Build R1 Gidaio

30) Aristos: Build R2 Aristos

31) Gidaio: Trade G2 R2 Yeahno

32) Aristos: Build G2 Whytwo

33) Gidaio: Move Y3 Gidaio Solaris

34) Aristos: Move R2 Aristos Burningcopper

35) Gidaio: Move G3 Solaris Yeahno

36) Aristos: Build R2 Burningcopper

37) Gidaio: Move G1 Solaris Yeahno

38) Aristos: Move G2 Whytwo Yeahno
Catastrophe Yeahno G

39) Gidaio: Trade Y3 G3 Solaris

40) Aristos: Build Y3 Burningcopper
	Gidaio: Nice. Didn't see that coming.

41) Gidaio: Build G1 Solaris

42) Aristos: Build G2 Gassygiant

43) Gidaio: Trade R2 G2 Yeahno

44) Aristos: Move R2 Burningcopper Whytwo

45) Gidaio: Move R1 Gidaio Solaris

46) Aristos: Sacrifice G2 Gassygiant
Build R2 Whytwo
Build R3 Burningcopper

47) Gidaio: Build R3 Solaris

48) Aristos: Sacrifice Y2 Gassygiant
Move R2 Burningcopper Solaris
Move R3 Burningcopper Solaris
Catastrophe Solaris R
	Gidaio: This is getting long!

49) Gidaio: Build G2 Solaris

50) Aristos: Move G1 Gassygiant Solaris
Catastrophe Solaris G
	Gidaio: Those are getting annoying. :P

51) Gidaio: Build Y2 Gidaio

52) Aristos: Sacrifice Y3 Burningcopper
Move G2 Whytwo Gidaio
Move R2 Whytwo Gidaio
Move R2 Whytwo Gidaio
	Gidaio: Curse you and your dominance over yellow!

53) Gidaio: Build G1 Yeahno

54) Aristos: Sacrifice R2 Gidaio
Attack R1 Gidaio
Attack Y2 Gidaio

55) Gidaio: Trade G2 Y2 Yeahno

56) Aristos: Build Y3 Gidaio
	Aristos: The Yellow Empire sees value in your species. We would not like to see your flame extinguished with continued catastrophes... 
	Gidaio: No! I shall fight to my last breath!
...
That's gonna be pretty soon, isn't it?

57) Gidaio: Discover Y2 Yeahno G2 Solaris A.e.

58) Aristos: Sacrifice Y2 Gassygiant
Move Y1 Burningcopper Solaris
Move Y1 Solaris Gidaio
Catastrophe Gidaio Yellow
	Aristos: The Yellow Empire claims legal rights to all yellow ships. We notice you have two of our ships. We are sure this acquisition is merely an accident on your part. Please return them immediately. We would hate to resort to less... diplomatic methods.
	Gidaio: We apologize for holding your ships, and they will be returned to you at the soonest convenient moment. Please wait as we send them to you.

	Aristos: The Yellow Empire tried to save you a trip. It was with the best intentions, we assure you, that we triggered this catastrophe. Please accept membership in our empire as a token of our apology.

... and thanks for the game. :-)
	Gidaio: Good game. I'm obviously not very good at this yet, but whatever. :)


18497)
Variants: "Hard time"
Started: 2010.12.11, Ended: 2010.12.15
Participants: Danner (S), goulo (N)
Winner: Danner

1) goulo: Homeworld G3 B1 Y3
	Danner: Hello again! :) Good luck, have fun!

2) Danner: Homeworld G2 B1 B3 *
	goulo: thanks, you too!

3) goulo: Build Y1 Goulo

4) Danner: Build B1 Danner
	goulo: I've been playing so many different games lately that I have an amusing surreal sense that it has been a very long time since I played Homeworlds. :)
	Danner: :D

5) goulo: Build Y1 Goulo

6) Danner: Trade B3 Y3 Danner

7) goulo: Trade Y1 R1 Goulo

8) Danner: Build B2 Danner

9) goulo: Trade Y3 B3 Goulo

10) Danner: Trade B2 R2 Danner

11) goulo: Build R1 Goulo

12) Danner: Build B2 Danner

13) goulo: Discover R1 Goulo G2 Smeraldo

14) Danner: Discover B2 Danner G3 Sajt

15) goulo: Build Y1 Goulo

16) Danner: Build B2 Sajt

17) goulo: Build R1 Smeraldo

18) Danner: Build B2 Danner

19) goulo: Build R2 Goulo

20) Danner: Build B3 Sajt

21) goulo: Move B3 Goulo Smeraldo

22) Danner: Sacrifice Y3 Danner
Move B3 Sajt Smeraldo
Move B3 Smeraldo Goulo
Discover B2 Danner Y3 Macska

23) goulo: Sacrifice Y1 Goulo
Move B3 Smeraldo Macska

	goulo: My early misread of the blue ship economy was disastrous!
	goulo: Thanks for the game!
	Danner: Thank you too!


18540)
Variants: "Hard time"
Started: 2010.12.14, Ended: 2010.12.27
Participants: Uglyfoot (S), Kermit (N)
Winner: Uglyfoot

1) Kermit: Homeworld Y1 G2 B3

2) Uglyfoot: Homeworld B3 Y2 G3

3) Kermit: Build B1 Kermit

4) Uglyfoot: Build G1 Uglyfoot

5) Kermit: Discover B1 Kermit G3 Leary

6) Uglyfoot: Build G1 Uglyfoot

7) Kermit: Build B1 Leary

8) Uglyfoot: Trade G1 R1 Uglyfoot

9) Kermit: Trade B1 Y1 Leary

10) Uglyfoot: Discover G1 Uglyfoot B1 Leap



18369)
Started: 2010.12.14, Ended: 2010.12.24
Participants: rootbier (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 Y3 G3



18565)
Variants: "Hard time"
Started: 2010.12.15, Ended: 2011.2.2
Participants: SilentTitan (S), sompm (N)
Winner: SilentTitan

1) sompm: Homeworld G3 Y1 B3

2) SilentTitan: Homeworld R2 B3 G3

3) sompm: Build B1 Sompm

4) SilentTitan: Build G1 Silenttitan

5) sompm: Build B1 Sompm

6) SilentTitan: Trade G1 B1 Silenttitan

7) sompm: Discover B1 Sompm Y2 Phantomy

8) SilentTitan: Build B2 Silenttitan

9) sompm: Discover B1 Phantomy G1 Nerdfighteria

10) SilentTitan: Trade B1 Y1 Silenttitan

11) sompm: Build B1 Nerdfighteria

12) SilentTitan: Build Y1 Silenttitan

13) sompm: Build B2 Sompm

14) SilentTitan: Trade B2 R2 Silenttitan

15) sompm: Trade B2 Y2 Sompm

16) SilentTitan: Move R2 Silenttitan Nerdfighteria

17) sompm: Build B2 Nerdfighteria

18) SilentTitan: Attack B2 Nerdfighteria North

19) sompm: Build B2 Nerdfighteria
Catastrophe Nerdfighteria B

20) SilentTitan: Build Y2 Silenttitan

21) sompm: Build Y2 Sompm

22) SilentTitan: Move Y1 Silenttitan Nerdfighteria

23) sompm: Trade Y2 R2 Sompm

24) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Nerdfighteria
Build Y3 Nerdfighteria
Build Y3 Silenttitan

25) sompm: Discover Y2 Sompm G2 Muckel

26) SilentTitan: Sacrifice Y1 Nerdfighteria
Discover Y1 Silenttitan G1 Silver

27) sompm: Trade B1 G1 Sompm

28) SilentTitan: Trade Y3 G3 Silenttitan

29) sompm: Build G2 Sompm

30) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Silver
Build Y3 Silenttitan
Build Y3 Silenttitan



18548)
Variants: "Unrated"
Started: 2010.12.17, Ended: 2011.1.7
Participants: daselva (S), Wofie (N)
Winner: daselva

1) Wofie: Homeworld G2 B3 G3 *

2) daselva: Homeworld B2 R1 G3



18357)
Variants: "Hard time"
Started: 2010.12.19, Ended: 2011.1.16
Participants: epicfailguy (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3
	Jesse: Hello, and have a good game.

2) epicfailguy: Homeworld B1 G2 R3

3) Jesse: Build G1 Jesse

4) epicfailguy: Build R1 Epicfailguy

5) Jesse: Trade G1 R1 Jesse

6) epicfailguy: Trade R1 Y1 Epicfailguy

7) Jesse: Build G1 Jesse

8) epicfailguy: Build Y1 Epicfailguy

9) Jesse: Trade G1 Y1 Jesse

10) epicfailguy: Build Y2 Epicfailguy

11) Jesse: Build Y2 Jesse

12) epicfailguy: Trade Y1 G1 Epicfailguy

13) Jesse: Build G1 Jesse

14) epicfailguy: Discover G1 Epicfailguy B3 Newfoundsystem

15) Jesse: Discover G1 Jesse B2 Grover

16) epicfailguy: Move Y2 Epicfailguy Newfoundsystem

17) Jesse: Move Y2 Jesse Grover

18) epicfailguy: Build Y1 Newfoundsystem

19) Jesse: Move R1 Jesse Grover

20) epicfailguy: Trade Y2 R2 Newfoundsystem

21) Jesse: Build Y2 Grover

22) epicfailguy: Trade Y1 B1 Epicfailguy

23) Jesse: Trade Y2 B2 Grover

24) epicfailguy: Build R1 Epicfailguy

25) Jesse: Build R2 Grover

26) epicfailguy: Trade R3 Y3 Epicfailguy

27) Jesse: Discover R1 Grover G1 Oscar

28) epicfailguy: Build G2 Newfoundsystem

29) Jesse: Build G2 Jesse

30) epicfailguy: Discover G2 Newfoundsystem Y2 Starbright

31) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build G3 Grover
Build G3 Grover

32) epicfailguy: Move G1 Newfoundsystem Grover
Catastrophe Grover Green

33) Jesse: Move G2 Jesse Grover

34) epicfailguy: Build R2 Epicfailguy

35) Jesse: Build R3 Grover

36) epicfailguy: Discover R1 Epicfailguy Y3 Sol

37) Jesse: Build R3 Oscar

38) epicfailguy: Build R3 Epicfailguy

39) Jesse: Build G1 Jesse

40) epicfailguy: Move R1 Sol Starbright

41) Jesse: Move R3 Grover Newfoundsystem

42) epicfailguy: Move R2 Newfoundsystem Starbright

43) Jesse: Attack Y1 Newfoundsystem

44) epicfailguy: Trade R2 Y2 Epicfailguy

45) Jesse: Sacrifice G3 Jesse
Build G1 Grover
Build G3 Jesse
Build Y1 Newfoundsystem

46) epicfailguy: Build G3 Starbright

47) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y3 Jesse
Build Y3 Grover

48) epicfailguy: Discover Y3 Epicfailguy G3 Theisland

49) Jesse: Move G1 Grover Newfoundsystem

50) epicfailguy: Build R2 Epicfailguy

51) Jesse: Move Y1 Newfoundsystem Oscar

52) epicfailguy: Move G2 Starbright Theisland

53) Jesse: Move B2 Grover Oscar

54) epicfailguy: Move B1 Epicfailguy Theisland

55) Jesse: Trade R3 B3 Oscar

56) epicfailguy: Move R1 Starbright Theisland

57) Jesse: Sacrifice G3 Jesse
Build G3 Newfoundsystem
Build R3 Newfoundsystem
Pass

58) epicfailguy: Build B1 Theisland

59) Jesse: Sacrifice Y3 Grover
Move G3 Newfoundsystem Epicfailguy
Move R3 Newfoundsystem Epicfailguy
Move R3 Newfoundsystem Epicfailguy
Catastrophe Epicfailguy R

60) epicfailguy: Sacrifice Y3 Theisland
Move G2 Theisland Epicfailguy
Move R1 Theisland Epicfailguy
Move B1 Theisland Epicfailguy

61) Jesse: Sacrifice G3 Epicfailguy
Build G3 Newfoundsystem
Build Y3 Newfoundsystem
Build Y3 Grover

62) epicfailguy: Build R2 Starbright

63) Jesse: Sacrifice G3 Newfoundsystem
Build G3 Newfoundsystem
Build R3 Grover
Build R3 Oscar

64) epicfailguy: Build R3 Epicfailguy

65) Jesse: Move R1 Oscar Newfoundsystem

66) epicfailguy: Build B2 Theisland

67) Jesse: Move R3 Oscar Theisland

68) epicfailguy: Pass

69) Jesse: Sacrifice Y3 Grover
Move R3 Theisland Epicfailguy
Move R1 Newfoundsystem Epicfailguy
Move G3 Newfoundsystem Epicfailguy
Catastrophe Epicfailguy R

70) epicfailguy: Build Y3 Epicfailguy

71) Jesse: Sacrifice R3 Grover
Attack Y3 Epicfailguy
Attack Y2 Epicfailguy
Attack G2 Epicfailguy



18359)
Started: 2010.12.20, Ended: 2010.12.24
Participants: mathochist (S), epicfailguy (N)
Winner: epicfailguy

1) epicfailguy: Homeworld Y1 B2 G3



18618)
Variants: "Hard time"
Started: 2010.12.22, Ended: 2011.2.17
Participants: ts52 (S), nycavri (N)
Winner: ts52

1) nycavri: Homeworld Y2 B3 G3
	nycavri: TaGG!

2) ts52: Homeworld Y1 B2 G3
	ts52: TaGG? I'm guessing the sentiment is sth like 'have a good game', so, you too!

3) nycavri: Build G1 Nycavri
	nycavri: Yup - it's a toast "To a Good Game" . . .

4) ts52: Build G1 Ts52

5) nycavri: Trade G1 Y1 Nycavri
	ts52: Nice. I like it. Prost!

6) ts52: T G1 Y1 Ts52

7) nycavri: Discover Y1 Nycavri G1 Deacon

8) ts52: Discover Y1 Ts52 G3 Kermit

9) nycavri: Build G1 Nycavri

10) ts52: Build Y2 Kermit

11) nycavri: Build Y2 Deacon

12) ts52: Discover Y1 Kermit G2 Robin

13) nycavri: Move Y2 Deacon Kermit

14) ts52: Build Y3 Kermit

15) nycavri: Move Y2 Kermit Ts52

16) ts52: Build Y3 Robin

17) nycavri: Trade G1 R1 Nycavri

18) ts52: Trade G3 R3 Ts52

19) nycavri: Build Y3 Deacon

20) ts52: Attack Y2 Ts52

21) nycavri: Build G1 Nycavri

22) ts52: Trade Y2 R2 Ts52

23) nycavri: Build R1 Nycavri

24) ts52: Trade R3 G3 Ts52

25) nycavri: Discover R1 Nycavri B1 May

26) ts52: Build G1 Ts52

27) nycavri: Move G1 Nycavri Deacon

28) ts52: Discover G1 Ts52 B3 Grover

29) nycavri: Build G2 Nycavri

30) ts52: Build G2 Ts52

31) nycavri: Discover G1 Deacon Y2 Mercury

32) ts52: Move Y3 Robin Grover

33) nycavri: Sacrifice G3 Nycavri
Build G3 Nycavri
Build R1 May
Build R2 Nycavri

34) ts52: T Y3 R3 Grover

35) nycavri: Discover Y1 Deacon Y3 Taylor

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Grover
Build R3 Ts52

37) nycavri: Sacrifice Y3 Deacon
Move R1 May Taylor
Move R1 May Taylor
Move R1 Taylor Ts52

38) ts52: Move R3 Ts52 Taylor

39) nycavri: Sacrifice Y1 Taylor
Move R1 Taylor Ts52

40) ts52: Sacrifice G3 Ts52
Build G1 Grover
Build G3 Ts52
Build R3 Taylor

41) nycavri: Trade R1 B1 Ts52

42) ts52: Attack B1N Ts52

43) nycavri: Sacrifice G2 Nycavri
Build G2 Nycavri
Build R1 Ts52

44) ts52: Attack R1N Ts52

45) nycavri: Sacrifice R1 Nycavri
Attack B1 Ts52

46) ts52: Attack B1N Ts52

47) nycavri: Sacrifice G2 Nycavri
Build G2 Nycavri
Build R1 Ts52
Catastrophe Ts52 R

48) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Kermit
Build Y3 Robin

49) nycavri: Build R1 Nycavri

50) ts52: Move B1 Ts52 Taylor

51) nycavri: Trade R1 B1 Nycavri

52) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Taylor
Build B2 Taylor

53) nycavri: Discover B1 Nycavri R1 Edney

54) ts52: M Y2 Kermit Edney

55) nycavri: Sacrifice G3 Nycavri
Build G3 Nycavri
Build B2 Edney
Build B3 Edney

56) ts52: Move B1 Taylor Edney
Catastrophe Edney Blue
	ts52: M y2 Kermit edney 

57) nycavri: Build R1 Nycavri
	ts52: Oops, wrong box 

58) ts52: Move Y1 Robin Grover

59) nycavri: Trade R1 B1 Nycavri

60) ts52: Move B1 Taylor Edney

61) nycavri: Move B1 Nycavri Edney

62) ts52: Attack B1N Edney

63) nycavri: Build R1 Nycavri

64) ts52: Move B2 Taylor Edney

65) nycavri: Trade R1 B1 Nycavri

66) ts52: Sacrifice Y2 Edney
Move B1 Edney Nycavri
Move B1 Edney Nycavri
Catastrophe Nycavri Blue

67) nycavri: Discover G1 Mercury B3 Rodgers

68) ts52: Sacrifice Y3 Robin
Move Y3 Kermit Nycavri
Move Y1 Kermit Nycavri
Move Y1 Grover Nycavri
Catastrophe Nycavri Yellow

	ts52: Thanks for the game.
	nycavri: You too - man that got ugly for me halfway through.  You took your sweet time squeezing me!  *grin*


18630)
Variants: "Hard time"
Started: 2010.12.24, Ended: 2011.1.5
Participants: AdamBadura (S), goulo (N)
Winner: goulo

1) goulo: Homeworld B3 G2 Y3

2) AdamBadura: Homeworld G1 B3 Y3
	goulo: I finally got within range to challenge you by challenging some inactive player over and over until he finally automatically declined enough to fall. :)

3) goulo: Build Y1 Goulo
	AdamBadura: Hi! I did the same while climbing up. Those inactive people are really enoying!

Currently (until evening on Monday 27th) I'm at my wife parents which limits severly possibility to make moves. Sorry for that!
	goulo: No problem. I've noticed all my SDG games have slowed down recently. :) Also I'll be in Germany from Monday till Sunday (Esperanto event), probably checking email less often.

4) AdamBadura: Build Y1 Adambadura

5) goulo: Trade Y1 R1 Goulo

6) AdamBadura: Build Y1 Adambadura

7) goulo: Build R1 Goulo

8) AdamBadura: Trade Y3 R3 Adambadura

9) goulo: Trade R1 G1 Goulo

10) AdamBadura: Discover Y1 Adambadura G2 Shipyard

11) goulo: Build R1 Goulo

12) AdamBadura: Build R1 Adambadura

13) goulo: Build R2 Goulo

14) AdamBadura: Build R2 Adambadura

15) goulo: Sacrifice Y3 Goulo
Discover R1 Goulo B1 Mirteleto
Move R1 Mirteleto Shipyard
Move R1 Shipyard Adambadura
Catastrophe Adambadura R

16) AdamBadura: Build Y1 Adambadura
	AdamBadura: How did I not see this coming??? !!!

17) goulo: Trade R2 Y2 Goulo

18) AdamBadura: Build Y2 Shipyard
	goulo: Too much alcohol? :)

19) goulo: Build R1 Goulo
	AdamBadura: I'm not drinking now. But after what you did I'm starting to think of it... ;) Good night!

20) AdamBadura: Trade Y1 R1 Adambadura

21) goulo: Build R2 Goulo

22) AdamBadura: Build R2 Adambadura

23) goulo: Discover R2 Goulo G1 Smeraldeto

24) AdamBadura: Move R1 Adambadura Shipyard

25) goulo: Build G2 Goulo

26) AdamBadura: Build R2 Shipyard

27) goulo: Build R3 Smeraldeto

28) AdamBadura: Build R3 Adambadura
	goulo: happy new year from germany!

29) goulo: Build Y1 Goulo

30) AdamBadura: Trade R3 G3 Adambadura
	AdamBadura: Happy new year to you too!

31) goulo: Move G1 Goulo Smeraldeto

32) AdamBadura: Build R3 Adambadura

33) goulo: Build R3 Goulo

34) AdamBadura: Sacrifice Y2 Shipyard
Move R1 Shipyard Smeraldeto
Move R1 Smeraldeto Goulo
Catastrophe Goulo R
	AdamBadura: Interesting move. My move will take some time as situation is becoming complex and I cannot afford another mistake.

35) goulo: Build G3 Goulo
	goulo: I wondered if you would do that. I figured it was OK for me as the result of the last 2 turns is that I lost 2 1-ships while you lost a 1-ship and a 2-ship. But of course the specific situation makes it hard to know if that simple analysis is valid. :)

36) AdamBadura: Discover G3 Adambadura Y2 Highway
	AdamBadura: I considered also catastrophing R in Smeraldeto however this would require me to use R2 too. Another way was to invade Smeraldeto with R and see what will you do (this could allow me to save Y2). But all this seemed bi to tricky and error-prone.

By the way did Artur contact you regarding Fridrich at UP next Saturday? He asked on forum whether there are any people willing to play and I suggested him to PM you as I suspect you do not read forum any more. (I wont play it and most likely I wont be there at all - those open hours are conflicting with Karol's needs... ;))

37) goulo: Discover G2 Goulo R1 Rubeneto
	goulo: Yes, I got email from Artur. I need to re-orient to "normal life" after the vacation and figure out what plans I have for Saturday. :)

38) AdamBadura: Move G3 Highway Rubeneto

39) goulo: Build G3 Rubeneto

40) AdamBadura: Attack G3 Rubeneto

41) goulo: Sacrifice G1 Smeraldeto
Build G1 Rubeneto
Catastrophe Rubeneto G
	AdamBadura: It seems you deepend much on ships value calculations.

42) AdamBadura: Trade Y1 G1 Adambadura
	goulo: or maybe I just like explosions. :)
	AdamBadura: Hmmmm... That trick with sacrifice/rebuild is a nice one... I expected you to sacrifice also Y1. Now I'm not sure whather I should have palyed so...

43) goulo: Move Y1 Goulo Smeraldeto

44) AdamBadura: Build G2 Adambadura
	goulo: By the way, I actually got to teach and play Homeworlds at the new year's Esperanto event! And some other pyramid games.

45) goulo: Build G3 Goulo

46) AdamBadura: Trade G2 Y2 Adambadura

47) goulo: Trade G3 Y3 Goulo

48) AdamBadura: Build R1 Shipyard

49) goulo: Discover R3 Smeraldeto Y2 Citrono
	AdamBadura: My position becomes bad. At some point I thought I managed to get away after previous mistake but either I didn't or I did some new mistakes...

50) AdamBadura: Discover G1 Adambadura B2 Mutators

51) goulo: Move R3 Citrono Adambadura

52) AdamBadura: Sacrifice R2 Adambadura
Attack R3 Adambadura
Pass

53) goulo: Build R1 Smeraldeto
	AdamBadura: Thanks! ;)
	goulo: Doh! I hate it when I do that!
	goulo: That was a terrible mistake!

54) AdamBadura: Move R3 Adambadura Mutators
	goulo: Jeez, that sure turned the situation around for you. Homeworlds can be very unforgiving!
	AdamBadura: Yes. And I already did that "trick" to you some time ago.

But Homeworlds keeps surprising with such actions. Like that your sacrifical of G1 to recreate it somewhere else. Simple and briliant! Yet I missed that. ;)

But just keep on playing wating on my next mistake... ;)

55) goulo: Move G3 Goulo Smeraldeto

56) AdamBadura: Build G2 Mutators

57) goulo: Discover G3 Smeraldeto Y2 Citrono

58) AdamBadura: Build G3 Mutators

59) goulo: Build G3 Citrono

60) AdamBadura: Trade G3 Y3 Mutators

61) goulo: Move R1 Smeraldeto Goulo

62) AdamBadura: Trade G1 B1 Mutators

63) goulo: Build R1 Smeraldeto

64) AdamBadura: Discover B1 Mutators G1 Lastbase

65) goulo: Move Y2 Goulo Lastbase

66) AdamBadura: Move R3 Mutators Lastbase

67) goulo: Move Y2 Lastbase Citrono

68) AdamBadura: Build G3 Mutators

69) goulo: Sacrifice G3 Citrono
Build G3 Citrono
Build Y1 Goulo
Build Y3 Smeraldeto

70) AdamBadura: Discover R1 Shipyard B1 Tiny

71) goulo: Move R1 Smeraldeto Citrono

72) AdamBadura: Sacrifice G3 Mutators
Build G3 Mutators
Build R2 Lastbase
Build R3 Tiny

73) goulo: Discover Y1 Smeraldeto B2 Mirtelo

74) AdamBadura: Sacrifice G3 Mutators
Build G3 Mutators
Build B1 Lastbase
Build B2 Lastbase

75) goulo: Move Y3 Smeraldeto Shipyard
	AdamBadura: I haven't seen anything like that ever... ;)

76) AdamBadura: Move Y1 Shipyard Lastbase
	goulo: the sad thing is, i had a great position until that stupid mistake that gave you my r3!

77) goulo: Sacrifice R2 Smeraldeto
Attack R2 Shipyard
Pass

78) AdamBadura: Sacrifice Y3 Mutators
Move R2 Lastbase Mirtelo
Move R1 Tiny Mutators
Move B1 Lastbase Goulo

79) goulo: Discover Y1 Mirtelo G1 Smeraldeto

80) AdamBadura: Sacrifice G3 Mutators
Build G3 Mutators
Build R2 Mirtelo
Build Y3 Adambadura

81) goulo: Move Y3 Shipyard Adambadura

82) AdamBadura: Attack Y3 Adambadura

83) goulo: Move Y2 Citrono Adambadura
Catastrophe Adambadura Y

84) AdamBadura: Sacrifice G3 Mutators
Build G3 Mutators
Build B3 Lastbase
Build Y2 Lastbase

85) goulo: Attack B1 Goulo

86) AdamBadura: Sacrifice Y2 Lastbase
Move B1 Lastbase Goulo
Move B2 Lastbase Goulo
Catastrophe Goulo B

87) goulo: Sacrifice Y3 Goulo
Move R1 Citrono Adambadura
Move R2 Shipyard Adambadura
Move R1 Goulo Adambadura
Catastrophe Adambadura R

	goulo: awesome. :)
	AdamBadura: How????????????!!!!!!!!!!
	AdamBadura: Oh...
	AdamBadura: And I had a second thought of that: will this not allow you to invade me. I somehow missed that opportunity. The most obvious one. To bad as I think I would have won it... :(

But the game was interesting!
	goulo: As you wrote a couple of days ago: "But just keep on playing wating on my next mistake... ;) "
So you were right! I waited for your mistake. :)
	goulo: That was quite a funny game with both of us making mistakes.
	AdamBadura: Yes. You made a stupid mistake with R which took away your victory. But The Universe made us even by giving it back to you on almost last possible moment. ;)
	goulo: It was funny after you did the blue catastrophe on me, I was looking thinking, is there any way I can get all 3 red ships to your homeworld soon? Wow, is it really that easy, just like that? I checked and rechecked to make sure I was not imagining it from wishful thinking. :)


18468)
Variants: "Hard time"
Started: 2010.12.26, Ended: 2011.1.25
Participants: lorgar (S), dlwillson (N)
Winner: lorgar

1) dlwillson: H B3 Y1 G3

2) lorgar: Homeworld G1 Y2 B3

3) dlwillson: B G1 Dlwillson

4) lorgar: Build B1 Lorgar

5) dlwillson: B G1 Dlwillson

6) lorgar: Build B1 Lorgar

7) dlwillson: T G1 B1 Dlwillson

8) lorgar: Trade B1 G1 Lorgar

9) dlwillson: B G2 Dlwillson

10) lorgar: Build G2 Lorgar

11) dlwillson: T G2 Y2 Dlwillson

12) lorgar: Trade G2 Y2 Lorgar

13) dlwillson: Build Y1 Dlwillson

14) lorgar: Build G2 Lorgar

15) dlwillson: D Y1 Dlwillson G2 Knuckles

16) lorgar: Discover G2 Lorgar B3 Rome

17) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Knuckles
Build Y3 Knuckles
Build Y3 Dlwillson

18) lorgar: Move Y2 Lorgar Rome

19) dlwillson: D Y1 Knuckles Y3 Knees

20) lorgar: Trade B1 R1 Lorgar

21) dlwillson: Sacrifice B1 Dlwillson
Trade Y1 R1 Knuckles

22) lorgar: Build Y1 Rome

23) dlwillson: T Y3 G3 Dlwillson

24) lorgar: Trade Y1 R1 Rome

25) dlwillson: Move Y3 Knuckles Rome

26) lorgar: Trade G2 R2 Rome

27) dlwillson: B G2 Dlwillson

28) lorgar: Trade R1 Y1 Rome

29) dlwillson: S G2 Dlwillson
B Y3 Knees
B G2 Dlwillson

30) lorgar: Sacrifice Y2 Rome
Move Y1 Rome Knuckles
Move Y1 Knuckles Knees
Catastrophe Knees Yellow



18358)
Variants: "Hard time"
Started: 2010.12.28, Ended: 2011.1.16
Participants: baxy (S), SilentTitan (N)
Winner: baxy

1) SilentTitan: Homeworld B2 R3 G3

2) baxy: Homeworld G3 B1 Y3

3) SilentTitan: Build G1 Silenttitan

4) baxy: Build Y1 Baxy

5) SilentTitan: Trade G1 Y1 Silenttitan

6) baxy: Trade Y1 B1 Baxy

7) SilentTitan: Trade Y1 B1 Silenttitan

8) baxy: Build B2 Baxy

9) SilentTitan: Build G1 Silenttitan

10) baxy: Discover B2 Baxy Y2 Gwar

11) SilentTitan: Trade G1 Y1 Silenttitan

12) baxy: Trade Y3 G3 Baxy

13) SilentTitan: Discover B1 Silenttitan Y1 Sic

14) baxy: Trade B1 Y1 Baxy

15) SilentTitan: Build Y2 Silenttitan

16) baxy: Build G1 Baxy

17) SilentTitan: Build G1 Silenttitan

18) baxy: Trade G1 R1 Baxy

19) SilentTitan: Discover Y2 Silenttitan R1 Redplanet

20) baxy: Build R1 Baxy

21) SilentTitan: Discover Y2 Redplanet R2 Planredet

22) baxy: Move R1 Baxy Gwar

23) SilentTitan: Discover B1 Sic Y3 Ssl

24) baxy: Move R1 Gwar Ssl

25) SilentTitan: Move B1 Ssl Planredet

26) baxy: Build R1 Baxy

27) SilentTitan: Build Y1 Silenttitan

28) baxy: Sacrifice G3 Baxy
Build R2 Ssl
Build R2 Ssl
Build R3 Baxy

29) SilentTitan: Discover Y1 Silenttitan G1 Peaceful

30) baxy: Trade R3 Y3 Baxy

31) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Planredet
Build B1 Planredet
Build Y3 Silenttitan

32) baxy: Build R3 Baxy

33) SilentTitan: Trade Y3 G3 Silenttitan

34) baxy: Sacrifice Y1 Baxy
Move R2 Ssl Peaceful

35) SilentTitan: Sacrifice Y2 Planredet
Move B1 Planredet Baxy
Move B1 Planredet Baxy

36) baxy: Build R3 Peaceful

37) SilentTitan: Move Y1 Peaceful Planredet

38) baxy: Discover R3 Baxy G2 Megadeth

39) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Planredet
Build Y2 Silenttitan
Build Y3 Silenttitan

40) baxy: Sacrifice Y3 Baxy
Move R3 Peaceful Silenttitan
Move R3 Megadeth Peaceful
Move R3 Peaceful Silenttitan

	SilentTitan: good game
	baxy: good game


18677)
Variants: "Hard time"
Started: 2010.12.29, Ended: 2011.1.10
Participants: Danner (S), Uglyfoot (N)
Winner: Danner

1) Uglyfoot: Homeworld G3 B1 Y3
	Danner: Howdy! It has been a long time since our last game.

2) Danner: Homeworld G2 B1 B3 *

3) Uglyfoot: Build Y1 Uglyfoot
	Danner: Good luck, have fun!

4) Danner: Build B1 Danner

5) Uglyfoot: Discover Y1 Uglyfoot G2 Forth

6) Danner: Trade B3 Y3 Danner

7) Uglyfoot: Build Y1 Uglyfoot
	Danner: Happy New Year!

8) Danner: Build B2 Danner

9) Uglyfoot: Build Y1 Forth

10) Danner: Discover B2 Danner G3 Orland

11) Uglyfoot: Build Y2 Forth

12) Danner: Build B2 Orland

13) Uglyfoot: Trade Y3 B3 Uglyfoot

14) Danner: Build B2 Danner

15) Uglyfoot: Trade Y1 R1 Uglyfoot

16) Danner: Build B3 Orland

17) Uglyfoot: Move Y2 Forth Orland

18) Danner: Trade B3 R3 Orland

19) Uglyfoot: Move Y2 Orland Danner

20) Danner: Sacrifice R3 Orland
Pass
Pass
Attack Y2N Danner

21) Uglyfoot: Build B3 Uglyfoot

22) Danner: Sacrifice Y2 Danner
Move B2 Orland Forth
Move B2 Forth Uglyfoot
Catastrophe Uglyfoot B

23) Uglyfoot: Build Y1 Forth

24) Danner: Trade B2 G2 Danner

25) Uglyfoot: Move Y1 Forth Uglyfoot

26) Danner: Move G2 Danner Uglyfoot

27) Uglyfoot: Build Y2 Uglyfoot

28) Danner: Build G1 Uglyfoot

29) Uglyfoot: Attack G2 Uglyfoot

30) Danner: Build G1 Uglyfoot
Catastrophe Uglyfoot G
	Danner: Thanks for the game!



18554)
Started: 2010.12.29, Ended: 2011.1.1
Participants: Remneb (S), rootbier (N)
Winner: Remneb



18694)
Started: 2010.12.29, Ended: 2011.2.16
Participants: Remneb (S), Laurie_Menke (N)
Winner: Remneb

1) Laurie_Menke: Homeworld Y3 B2 G3
	Laurie_Menke: And another!  You are on a roll!  Thanks!  :o)

2) Remneb: Homeworld R1 B2 G3

3) Laurie_Menke: Build G1 Laurie_menke

4) Remneb: Build G1 Remneb

5) Laurie_Menke: Trade G1 Y1 Laurie_menke

6) Remneb: Trade G1 Y1 Remneb

7) Laurie_Menke: Build G1 Laurie_menke

8) Remneb: Build G1 Remneb

9) Laurie_Menke: Discover G1 Laurie_menke G1 Sweetpea

10) Remneb: Trade G1 B1 Remneb

11) Laurie_Menke: Discover Y1 Laurie_menke B1 Little Boy Blue

12) Remneb: Discover B1 Remneb Y3 Ram
	Laurie_Menke: LOL... I meant to name that Little Boy Blue but I forgot you can't use spaces.  Oh, well...
	Remneb: Well i'm too dum to make a sentence with "little sweetpea"...

13) Laurie_Menke: Build G1 Laurie_menke
	Remneb: You just have to play a game to win one point or do you need to win ?

	Laurie_Menke: LOL... I just named it Sweetpea because it's green.  I never know what to name these things.  ;o)

I only have to complete the game for the point... not win.  ;o)

14) Remneb: Build G2 Remneb
	Remneb: There is a lot of stars in the sky:Vega,Antares,Cassiopea,Betelgeuse,Kenme Raulie...

15) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Laurie_menke
Build G2 Sweetpea
Build G3 Laurie_menke
	Laurie_Menke: Good point.  :o)
	Remneb: Kenme Raulie = Laurie Menke

16) Remneb: Move G2 Remneb Ram

17) Laurie_Menke: Sacrifice G1 Sweetpea
Pass

18) Remneb: Build G1 Ram

19) Laurie_Menke: Discover Y1 Little G3 Bigdipper

20) Remneb: Discover G1 Ram Y1 Gumrak

21) Laurie_Menke: Sacrifice G1 Laurie_menke
Build Y2 Bigdipper

22) Remneb: Build Y2 Remneb

23) Laurie_Menke: Move Y2 Bigdipper Sweetpea

24) Remneb: Move Y2 Remneb Ram

25) Laurie_Menke: Discover G2 Laurie_menke G1 Littledipper

26) Remneb: Trade Y2 R2 Ram

27) Laurie_Menke: Move Y1 Bigdipper Remneb

28) Remneb: Attack Y1 Remneb

29) Laurie_Menke: Build G3 Laurie_menke

30) Remneb: Move R2 Ram Sweetpea
	Laurie_Menke: Aw, shoot!  I forgot you could use the power of the stars, too.  That was stupid of me.  :o(

31) Laurie_Menke: Discover G2 Sweetpea Y3 Sun
	Remneb: well i'm new in that game...so i was not sure if it was a secret plan of your's to destroy my Homeworld !

32) Remneb: Attack Y2 Sweetpea
	Laurie_Menke: I had intended to convert my yellow to a red and take one of your ships.  Oh, well...

33) Laurie_Menke: Trade G3 R3 Laurie_menke

34) Remneb: Build G3 Remneb

35) Laurie_Menke: Build R1 Laurie_menke

36) Remneb: Trade G3 R3 Remneb

37) Laurie_Menke: Build G3 Laurie_menke

38) Remneb: Move R3 Remneb Ram

39) Laurie_Menke: Move R1 Laurie_menke Littledipper

40) Remneb: Move G2 Ram Gumrak

41) Laurie_Menke: Build R1 Laurie_menke

42) Remneb: Move R3 Ram Gumrak

43) Laurie_Menke: Build R2 Littledipper

44) Remneb: Sacrifice G2 Gumrak
Build R2 Gumrak
Build R3 Sweetpea

45) Laurie_Menke: Trade R1 B1 Laurie_menke

46) Remneb: Build Y2 Sweetpea

47) Laurie_Menke: Sacrifice B1 Laurie_menke
Trade G2 Y2 Sun

48) Remneb: Build G2 Gumrak

49) Laurie_Menke: Discover G3 Laurie_menke B1 Northstar

50) Remneb: Move R3 Sweetpea Ram
	Remneb: I don't know if there ever been so many stars and ships in a game(19 ships and 9 stars) !
	Laurie_Menke: :o)

51) Laurie_Menke: Build G2 Northstar

52) Remneb: Move R3 Ram Northstar

53) Laurie_Menke: Sacrifice Y2 Sun
Move G3 Northstar Ram
Move G2 Northstar Ram
	Remneb: Gosh!Something new for me here.You sacrifice a b1(instead of trading)then trade g2y2!Just a second before that gimmick of yours,i was sure that blue can only be trade for another of the same pip level !
	Remneb: Thanks for the lesson mistress.
	Laurie_Menke: You're right that trading has to be the same pip level, which it was--a 2 for a 2.  But since there was no blue in Sun, I had to sacrifice a blue elsewhere to make it happen.  :o)

54) Remneb: Move R3 Gumrak Ram

55) Laurie_Menke: Sacrifice R2 Littledipper
Attack R3 Ram
Attack B1 Ram

56) Remneb: Sacrifice Y2 Sweetpea
Move G1 Gumrak Ram
Move G2 Gumrak Ram
Catastrophe Ram G

57) Laurie_Menke: Build G1 Laurie_menke

58) Remneb: Discover Y1 Remneb G3 Frisco
	Remneb: move r3 Gumrak Ram

59) Laurie_Menke: Build G2 Laurie_menke
	Remneb: You task me and i'll have you.I'll chase you round the moons of Nibia and round the Antares maelstrom and round perdition's flames before i give you up ! (Star Trek II:The Wrath of Kan)


	Laurie_Menke: :o)  You can't catch me!  (The Gingerbread Man)   ;o)

60) Remneb: Build G2 Remneb
	Remneb: Damn!Something new again.You had no red ships and there is no red star in Ram system.How can you take my r3 and my b1?

61) Laurie_Menke: Trade G2 Y2 Laurie_menke
	Laurie_Menke: I sacrificed a red ship in another system.  ;o)  But you definitely got me back.  :o(

62) Remneb: Sacrifice G2 Remneb
Build Y2 Sweetpea
Build Y3 Frisco
	Remneb: Who are not with me are doomed !(Remneb)
	Remneb: So we can sacrifice a red ship anywhere and hit anywhere without a red star or a red ship in the combat zone...
	Remneb: Is that mean that you used my own red ship to attack me?

63) Laurie_Menke: Move Y2 Laurie_menke Littledipper
	Laurie_Menke: No.  You can only sacrifice your own red ships.  I sacrificed my r2 in the LittleDipper system.  That meant that I could attack two ships in any system, so long as I had a ship in that system that was as big or bigger than the one I was attacking.  Since I had a g3 in Ram, I could attack both your r3 and your b1.

64) Remneb: Build G2 Remneb
	Remneb: Ok.I'm putting all info on homeworlds in a word file.That's why i'm asking when i don't understand.

65) Laurie_Menke: Build G2 Littledipper
	Laurie_Menke: Sounds good!  :o)

66) Remneb: Sacrifice G2 Remneb
Build R1 Northstar
Build R2 Gumrak

67) Laurie_Menke: Move R3 Laurie_menke Gumrak

68) Remneb: Build G2 Remneb

69) Laurie_Menke: Attack R2 Gumrak
	Remneb: Bg2HS =South created a G2 ship in the Remneb system.The left part is how i write down the move in my word file for Homeworlds.(Build green 2 Homeworld South).Yes...i'm using our game to make a sample. 
	Laurie_Menke: LOL... I don't know that any game with me should be studied.  I'm not very good at Homeworlds.  But feel free if you'd like.  :o)

70) Remneb: Sacrifice Y2 Sweetpea
Move R1 Northstar Frisco
Move R1 Frisco Gumrak
Catastrophe Gumrak R

71) Laurie_Menke: Move G2 Littledipper Ram

72) Remneb: Move R2 Sweetpea Frisco

73) Laurie_Menke: Move G2 Littledipper Ram

74) Remneb: Move G2 Remneb Frisco

75) Laurie_Menke: Sacrifice Y2 Littledipper
Move G2 Ram Remneb
Move G2 Ram Remneb
	Laurie_Menke: Ouch!  Didn't see that coming!

76) Remneb: Attack G2 Remneb
	Remneb: Many years ago i red a book called "The war of eternity"...until now,i tough it was science-fiction!

77) Laurie_Menke: Sacrifice G1 Laurie_menke
Build G1 Remneb
Catastrophe Remneb Green
	Laurie_Menke: LOL!  :o)

78) Remneb: Move Y3 Frisco Remneb

79) Laurie_Menke: Build G1 Laurie_menke

80) Remneb: Move G2 Frisco Remneb

81) Laurie_Menke: Discover G1 Laurie_menke Y1 Orion

82) Remneb: Build Y2 Frisco

83) Laurie_Menke: Build G2 Laurie_menke
	Remneb: Clever your last green wipeout.

84) Remneb: Build Y2 Sweetpea

85) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Orion
Build G3 Laurie_menke
Build G3 Orion
	Laurie_Menke: Thanks.  I'm not sure if it got me any closer to winning, but it was fun.  ;o)

86) Remneb: Sacrifice Y2 Sweetpea
Move G2 Remneb Ram
Move G2 Ram Orion
Catastrophe Orion G

87) Laurie_Menke: Discover B1 Ram G2 Bigdipper

88) Remneb: Build Y1 Sweetpea

89) Laurie_Menke: Move G2 Laurie_menke Littledipper

90) Remneb: Sacrifice Y1 Frisco
Move R3 Northstar Bigdipper

91) Laurie_Menke: Sacrifice B1 Bigdipper
Trade G2 Y2 Littledipper

92) Remneb: Sacrifice Y1 Sweetpea
Move R3 Bigdipper Littledipper

93) Laurie_Menke: Move Y2 Littledipper Laurie_menke

94) Remneb: Attack R1 Littledipper

95) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move R3 Ram Sweetpea
Move R3 Sweetpea Frisco
	Laurie_Menke: Almost made a big mistake there...

96) Remneb: Sacrifice Y2 Sweetpea
Move R2 Frisco Remneb
Move Y2 Frisco Littledipper

97) Laurie_Menke: Build G1 Laurie_menke

98) Remneb: Discover R2 Remneb Y3 Narva

99) Laurie_Menke: Trade G1 Y1 Laurie_menke

100) Remneb: Build Y1 Littledipper

101) Laurie_Menke: Discover Y1 Laurie_menke G1 Green

102) Remneb: Sacrifice Y1 Littledipper
Move R3 Littledipper Narva

103) Laurie_Menke: Move Y1 Green Frisco

104) Remneb: Move R3 Narva Littledipper

105) Laurie_Menke: Build Y1 Frisco

106) Remneb: Build Y2 Littledipper

107) Laurie_Menke: Build G1 Laurie_menke
	Remneb: The Avg. Length of a game is 15 turns and we have reach turn # 50 ! Do that mean we are very good or very slow ?
	Laurie_Menke: LOL... I think it means we are both beginners.  :o)

108) Remneb: Trade Y1 G1 Remneb
	Remneb: That was my secret idea (beginners) lol.

109) Laurie_Menke: Trade G1 Y1 Laurie_menke

110) Remneb: Build Y2 Remneb
	Laurie_Menke: :o)

111) Laurie_Menke: Build G1 Laurie_menke

112) Remneb: Sacrifice Y2 Remneb
Move Y2 Littledipper Laurie_menke
Move Y2 Littledipper Laurie_menke
Catastrophe Laurie_menke Y
	Remneb: I've put our first 20 turns(using my notation system)on the Looney labs fan club and here on SDG(Forum-general-Homeworlds Tactical).We are making History !
	Laurie_Menke: LOL... I'm not sure that this is the kind of history I wanted to be making.  ;o)

113) Laurie_Menke: Move R3 Frisco Laurie_menke

114) Remneb: Build G2 Remneb

115) Laurie_Menke: Trade G1 Y1 Laurie_menke

116) Remneb: Build Y2 Remneb

117) Laurie_Menke: Build Y2 Laurie_menke

118) Remneb: Move Y2 Remneb Narva

119) Laurie_Menke: Build Y2 Frisco

120) Remneb: Sacrifice Y2 Narva
Move R2 Narva Littledipper
Move R2 Littledipper Frisco
	Laurie_Menke: ::sigh::

121) Laurie_Menke: Sacrifice G3 Laurie_menke
Build Y2 Frisco
Build Y3 Laurie_menke
Build R1 Laurie_menke
	Remneb: build g2 Remneb
	Remneb: Wrong window...feel sorry for your yellow submarine...star.

122) Remneb: Build Y3 Remneb
Catastrophe Frisco Y
	Laurie_Menke: LOL... don't you feel sorry for me.  I can live with just one star.  ;o)

123) Laurie_Menke: Move R3 Laurie_menke Frisco

124) Remneb: Sacrifice G2 Remneb
Build R2 Frisco
Build R2 Frisco
Catastrophe Frisco R

125) Laurie_Menke: Trade Y2 G2 Laurie_menke

126) Remneb: Trade Y3 B3 Remneb

127) Laurie_Menke: Discover Y1 Laurie_menke G3 Big

128) Remneb: Build Y1 Remneb

129) Laurie_Menke: Build Y1 Big

130) Remneb: Discover Y1 Remneb Y3 Nadir

131) Laurie_Menke: Build Y2 Big

132) Remneb: Move Y1 Nadir Littledipper

133) Laurie_Menke: Move Y1 Big Remneb
	Remneb: Buid-catastrophe-build-catastrophe-in that game i'm like an elephant in a porcelain shop !
	Laurie_Menke: Yeah... stop breaking my merchandise, will you?  ;o)  ;o)  ;o)

134) Remneb: Attack Y1 Remneb

135) Laurie_Menke: Move Y1 Big Remneb

136) Remneb: Move Y3 Remneb Big

137) Laurie_Menke: Trade Y1 B1 Remneb

138) Remneb: Attack B1 Remneb

139) Laurie_Menke: Build Y1 Laurie_menke

140) Remneb: Sacrifice B3 Remneb
Trade Y1 B1 Littledipper
Trade R1 B1 Littledipper
Trade R3 B3 Littledipper

141) Laurie_Menke: Sacrifice G2 Laurie_menke
Build Y1 Big
Build Y2 Big
Catastrophe Big Yellow

142) Remneb: Trade B3 Y3 Littledipper

143) Laurie_Menke: Trade Y1 G1 Laurie_menke

144) Remneb: Discover B1 Remneb Y3 Bugs

145) Laurie_Menke: Move Y3 Laurie_menke Littledipper

146) Remneb: Sacrifice Y3 Littledipper
Move B1 Bugs Laurie_menke
Move B1 Littledipper Laurie_menke
Move B1 Littledipper Laurie_menke
Catastrophe Laurie_menke B

	Remneb: Ouf! That was i'm sure the longuest Homeworlds game ever ! I'm not so happy to win after all.It was a better pleasure just to play with you.I learn a lot from you (with some bad surprise in the course of the game). I must tell you that it was quite difficult for me just to learn the basic of the rules ! I think i have a brain for games with rounded units (like cannon,go,chekkers,chess).I have the same difficulties to be good at pikemen cause the units are triangles or squares.I don't understand why ?Thanks for the game and have a good day.
	Remneb: I'm going to put the entire game on SDG forum (General-Homeworlds tactical) in 2 world files,one with my special notation and the other one with both SDG notation and mine.
	Remneb: world files = word files
	Laurie_Menke: It was a pleasure playing with you, too, Remneb!  And I think we learned a lot from each other.  :o)  That's funny about the games with rounded units.  I, too, seem to be better at some games than others and don't know why.  :o)  Feel free to post this game if you'd like, but I don't think it will be educational to anyone but us.  ;o)


18608)
Started: 2010.12.30, Ended: 2011.1.26
Participants: lorgar (S), mathochist (N)
Winner: lorgar



18622)
Started: 2010.12.30, Ended: 2011.1.3
Participants: ajo (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3
	ajo: homeworld r3 b2 g3
	ajo: build g1 ajo

2) ajo: Homeworld B2 R1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	ajo: Ah, now I see which box to type in. :)  This'll be my first game on SDG, although not my first of Homeworlds.  Good luck to you too!

4) ajo: Build G1 Ajo
	ts52: Welcome to SDG. It's a great interface for playing homeworlds.

5) ts52: T G1 R1 Ts52

6) ajo: Build G1 Ajo

7) ts52: Build R1 Ts52

8) ajo: Trade G1 Y1 Ajo

9) ts52: Build R2 Ts52

10) ajo: Build Y1 Ajo

11) ts52: Discover R2 Ts52 G1 Robin

12) ajo: Discover Y1 Ajo B3 Alpha

13) ts52: B R2 Ts52

14) ajo: Move G1 Ajo Alpha

15) ts52: T R2 Y2 Ts52

16) ajo: Build G1 Ajo

17) ts52: Move Y2 Ts52 Robin

18) ajo: Build G2 Ajo

19) ts52: B R2 Robin

20) ajo: Build G2 Alpha

21) ts52: M R2 Robin Alpha

22) ajo: Sacrifice Y1 Alpha
Discover G2 Alpha B1 Beta

23) ts52: Attack G1 Alpha
	ajo: FYI, I'll keep moving until about 8:45pm (it being 8:15pm now). After that, happy New Year, see you on Sunday. :)

24) ajo: Sacrifice G2 Ajo
Build G2 Beta
Build Y1 Ajo
	ts52: Happy New Year!

25) ts52: Build R2 Alpha

26) ajo: Discover Y1 Ajo R3 Gamma

27) ts52: Build R3 Robin
	ajo: Happy New Year!

28) ajo: Trade G2 Y2 Beta

29) ts52: Build R3 Alpha

30) ajo: Build G2 Beta

31) ts52: T R2 Y2 Alpha

32) ajo: Trade G2 R2 Beta

33) ts52: M R3 Alpha Beta

34) ajo: Sacrifice G3 Ajo
Build Y1 Beta
Build Y3 Gamma
Build Y3 Ajo

35) ts52: A R2 Beta
	ajo: This doesn't seem to be going so well for me so far...

36) ajo: Sacrifice Y3 Gamma
Discover Y1 Gamma B1 Delta
Move Y1 Beta Ts52
Move Y2 Beta Ts52

37) ts52: Build Y3 Alpha

38) ajo: Sacrifice G2 Beta
Build G2 Ajo
Pass
	ts52: It's not over yet.

39) ts52: Build R3 Ts52

40) ajo: Trade G1 B1 Ajo

41) ts52: Move R1 Ts52 Delta

42) ajo: Move Y1 Delta Ts52
Catastrophe Ts52 Yellow
	ajo: You made me do it...

43) ts52: Trade R3 Y3 Ts52
	ts52: I did. I couldn't live with it hanging over my head any more.

44) ajo: Trade Y3 R3 Ajo

45) ts52: Sacrifice Y3 Alpha
Move R2 Alpha Ajo
Move R1 Delta Alpha
Move R1 Alpha Ajo
Catastrophe Ajo Red

46) ajo: Trade B1 R1 Ajo
	ajo: I think that's pretty close to game...

47) ts52: Move R3 Robin Ajo

48) ajo: Sacrifice G2 Ajo
Build R1 Ajo
Build R2 Ajo
Catastrophe Ajo Red
	ts52: yeah, I think that's about it

49) ts52: Move R2 Robin Ajo

50) ajo: Pass
	ajo: Good game!

51) ts52: Attack Y1 Ajo
	ts52: Thanks for the game.



18745)
Variants: "Hard time"
Started: 2011.1.1, Ended: 2011.1.3
Participants: baxy (S), ajo (N)
Winner: baxy

1) ajo: Homeworld Y3 B2 G3

2) baxy: Homeworld G3 Y1 B3

3) ajo: Build G1 Ajo

4) baxy: Build B1 Baxy

5) ajo: Discover G1 Ajo B1 Alpha

6) baxy: Discover B1 Baxy Y2 Gwar

7) ajo: Build G1 Ajo

8) baxy: Build B1 Baxy

9) ajo: Build G1 Alpha

10) baxy: Trade B3 G3 Baxy

11) ajo: Trade G1 Y1 Alpha

12) baxy: Sacrifice G3 Baxy
Build B2 Gwar
Build B2 Gwar
Build B3 Baxy

13) ajo: Sacrifice G3 Ajo
Build G1 Alpha
Build G2 Alpha
Build G2 Ajo

14) baxy: Trade B3 G3 Baxy

15) ajo: Trade G1 R1 Alpha

16) baxy: Discover B1 Gwar Y1 Tool

17) ajo: Move G2 Alpha Gwar

18) baxy: Sacrifice G3 Baxy
Build B3 Baxy
Build B3 Tool
Build B3 Gwar

19) ajo: Build Y2 Alpha

20) baxy: Sacrifice B2 Gwar
Trade B1 R1 Tool
Trade B3 G3 Baxy

21) ajo: Sacrifice Y2 Alpha
Move G2 Gwar Baxy
Discover G1 Alpha Y2 Gamma

22) baxy: Sacrifice G3 Baxy
Build B1 Gwar
Build B2 Tool
Build B3 Baxy

23) ajo: Sacrifice R1 Alpha
Attack B1S Baxy

24) baxy: Move B3 Tool Ajo
	ajo: That last move of mine may have been a mistake... oh well, let's see.

25) ajo: Trade Y1 R1 Alpha

26) baxy: Sacrifice R1 Tool
Attack G2N Ajo

27) ajo: Move B1 Baxy Gwar
Catastrophe Gwar Blue

28) baxy: Trade B3 R3 Ajo

29) ajo: Pass
	ajo: Good game!

30) baxy: Attack G1N Ajo
	baxy: good game mon :)



18728)
Started: 2011.1.3, Ended: 2011.1.13
Participants: ajo (S), Laurie_Menke (N)
Winner: ajo

1) Laurie_Menke: Homeworld B2 Y1 G3
	Laurie_Menke: Welcome to SDG, Ajo!  Have fun, and feel free to ask if you have questions!  :o)

2) ajo: Homeworld B1 Y3 G3

3) Laurie_Menke: Build G1 Laurie_menke

4) ajo: Build G1 Ajo

5) Laurie_Menke: Trade G1 Y1 Laurie_menke

6) ajo: Build G1 Ajo

7) Laurie_Menke: Discover Y1 Laurie_menke G3 Green

8) ajo: Discover G1 Ajo B2 Alpha

9) Laurie_Menke: Build Y1 Green

10) ajo: Build G1 Ajo

11) Laurie_Menke: Build Y2 Green

12) ajo: Build G2 Alpha

13) Laurie_Menke: Move Y2 Green Alpha

14) ajo: Trade G2 R2 Alpha

15) Laurie_Menke: Move Y2 Alpha Ajo

16) ajo: Trade G1 R1 Ajo

17) Laurie_Menke: Move Y1 Green Laurie_menke

18) ajo: Attack Y2N Ajo

19) Laurie_Menke: Build Y2 Laurie_menke
	Laurie_Menke: Oops!  I misremembered the rules.  I was thinking your red ship had to be as big as mine, but it's ANY ship in the system.  ::sigh::

20) ajo: Move Y2 Ajo Alpha
	ajo: I was wondering about those past few moves!

21) Laurie_Menke: Discover Y2 Laurie_menke R3 Red
	Laurie_Menke: ::sigh::

22) ajo: Move Y2 Alpha Green

23) Laurie_Menke: Discover Y1 Green R2 Pink

24) ajo: Build Y2 Green
	ajo: I'm wondering about the "move yellow ships to red stars" strategy, too... Guess I'll find out how it works in a moment.

25) Laurie_Menke: Build Y3 Laurie_menke
	Laurie_Menke: LOL... Probably just the stupidity of a not-so-great Homeworlds player.  I'm just trying to monopolize reds so you can't use them against me.  ;o)

26) ajo: Move Y2 Green Laurie_menke
Catastrophe Laurie_menke Yellow

27) Laurie_Menke: Trade G3 R3 Laurie_menke
	ajo: I think you've got about two turns left at this point. Getting a monopoly on red would only really have worked if I didn't already have some. ;)
	Laurie_Menke: Ouch!  I'm playing this game even more poorly than usual.  :o(  Sorry to be so little challenge to you.  But let's see what kind of mischief I can get into while I can.  ;o)

28) ajo: Build G1 Alpha

29) Laurie_Menke: Discover Y1 Pink G3 Forest

30) ajo: Trade G1 B1 Ajo

31) Laurie_Menke: Build Y1 Forest

32) ajo: Build B1 Ajo

33) Laurie_Menke: Discover Y1 Forest B2 Blue

34) ajo: Sacrifice Y2 Green
Move B1 Ajo Laurie_menke
Move B1 Ajo Laurie_menke
	ajo: Trying to belatedly monopolize blue now? :)

35) Laurie_Menke: Attack B1 Laurie_menke
	ajo: Checkmate. Good game. :)
	Laurie_Menke: Naw, just trying to build up a fleet again without risking catastrophe.  And I am absolutely sure that you've won, but I don't see it quite yet.  I figure you're trying to cause a catastrophe in blue, but you're not quite there yet.  So I will congratulate you on the inevitable win, but could we play it out so I can see what your plan is?
	Laurie_Menke: Oh... wait... just saw it.  You'll sacrifice your g3 and build more blue.  Got it.  Well, thanks for a great game!  Congratulations!  :o)

36) ajo: Sacrifice G1 Alpha
Build B3 Laurie_menke
Catastrophe Laurie_menke Blue



31741)
Variants: "Unrated"
Started: 2017.4.13, Ended: 2017.4.22
Participants: wil (S), panglott (N)
Winner: wil

1) panglott: Homeworld G3 B2 R3

2) wil: Homeworld Y3 B1 G3
	wil: I like the wild openings

3) panglott: Build R1 Panglott

4) wil: B G1 Wil

5) panglott: Trade R1 Y1 Panglott

6) wil: T G1 B1 Wil

7) panglott: Build R1 Panglott

8) wil: B B1 Wil

9) panglott: Build Y1 Panglott

10) wil: D B1 Wil G2 G2

11) panglott: Build Y1 Panglott

12) wil: S G3 Wil
B B2 G2
B B2 G2
B B3 Wil

13) panglott: Discover Y1 Panglott R1 Pleidy

14) wil: T B2 R2 G2

15) panglott: Build Y2 Panglott

16) wil: T B2 Y2 G2

17) panglott: Move Y2 Panglott Pleidy

18) wil: B B2 G2

19) panglott: Build Y2 Panglott

20) wil: B Y3 G2

21) panglott: Discover Y1 Pleidy R2 Plaits

22) wil: D Y2 G2 G1 G1

23) panglott: Move Y1 Panglott Pleidy

24) wil: B Y3 G1

25) panglott: Sacrifice Y2 Pleidy
Move Y1 Panglott Pleidy
Discover Y1 Pleidy R2 Whisker

26) wil: B Y2 G2

27) panglott: Move Y1 Pleidy Plaits

28) wil: Trade B3 R3 Wil

29) panglott: Sacrifice Y2 Panglott
Move Y1 Plaits Wil
Move Y1 Plaits Wil

30) wil: Attack Y1 Wil

31) panglott: Move Y1 Whisker Wil
Catastrophe Wil Yellow

32) wil: S Y3 G2
M R2 G2 Wil
M R2 Wil Panglott
M R3 Wil Panglott
C Panglott R



31883)
Variants: "Hard time"
Started: 2017.4.13, Ended: 2017.4.28
Participants: panglott (S), wil (N)
Winner: wil

1) wil: Homeworld R3 Y1 G3 *

	wil: two, two, two games at once!


2) panglott: Homeworld G3 R1 B3

3) wil: B G1 Wil

4) panglott: Build B1 Panglott

5) wil: D G1 Wil B2 B2

6) panglott: Trade B1 Y1 Panglott

7) wil: T G1 Y1 B2

8) panglott: Build Y2 Panglott

9) wil: B G1 Wil

10) panglott: Move Y1 Panglott B2

11) wil: T Y1 R1 B2
	wil: Omg!!  We have a short universe!!!

12) panglott: Discover Y1 B2 G1 Centaury

13) wil: M G1 Wil B2

14) panglott: Build Y1 Panglott

15) wil: B R1 B2

16) panglott: Trade Y2 R2 Panglott

17) wil: B G1 Wil

18) panglott: Move R2 Panglott B2

19) wil: B R2 B2
C B2 R

20) panglott: Build B1 Panglott

21) wil: B G2 B2

22) panglott: Build Y2 Panglott

23) wil: T G2 Y2 B2

24) panglott: Trade Y2 R2 Panglott

25) wil: Trade G1 R1 B2

26) panglott: Build Y2 Panglott

27) wil: Build G1 Wil

28) panglott: Build Y2 Centaury

29) wil: S G1 Wil
B Y3 B2

30) panglott: Build B1 Panglott

31) wil: D Y2 B2 G1 G1

32) panglott: Discover B3 Panglott R2 Deneb

33) wil: B Y3 G1

34) panglott: Build Y3 Panglott

35) wil: S Y2 G1
M Y3 G1 B2
M Y3 B2 Panglott
C Panglott Y

36) panglott: Build B1 Panglott

37) wil: M Y3 B2 Panglott

38) panglott: Trade B1 Y1 Panglott

39) wil: Attack R2 Panglott

40) panglott: Move Y1 Panglott Deneb

41) wil: S R2 Panglott
A B1 Panglott
A B1 Panglott
	wil: 1 cardinal rule is keeping a big gun at home...I'll admit I have broken it before...sometimes successful, sometimes to my detriment.
	panglott: Right, because you can use my own red planet against me. Good grief ;)



18811)
Variants: "Hard time"
Started: 2011.1.5, Ended: 2011.1.7
Participants: TwoShort (S), goulo (N)
Winner: TwoShort

1) goulo: Homeworld G3 B2 Y3
	TwoShort: Howdy

2) TwoShort: Homeworld R1 B2 G3
	goulo: hi, have fun!

3) goulo: Build Y1 Goulo

4) TwoShort: Build G1 Twoshort

5) goulo: Build Y1 Goulo

6) TwoShort: Trade G1 Y1 Twoshort

7) goulo: Trade Y1 G1 Goulo

8) TwoShort: Build G1 Twoshort

9) goulo: Trade Y1 R1 Goulo

10) TwoShort: Build G1 Twoshort

11) goulo: Sacrifice Y3 Goulo
Discover G1 Goulo Y1 Citroneto
Discover G1 Citroneto R3 Rubenego
Move G1 Rubenego Twoshort
Catastrophe Twoshort G

12) TwoShort: Trade Y1 G1 Twoshort

13) goulo: Build R1 Goulo

14) TwoShort: Build G1 Twoshort

15) goulo: Build R2 Goulo

16) TwoShort: Build G1 Twoshort

17) goulo: Trade R2 G2 Goulo

18) TwoShort: Trade G1 Y1 Twoshort

19) goulo: Build R2 Goulo

20) TwoShort: Build G1 Twoshort

21) goulo: Trade R2 Y2 Goulo

22) TwoShort: Discover G1 Twoshort B3 Bluestar

23) goulo: Discover G2 Goulo Y1 Citroneto

24) TwoShort: Build G2 Bluestar

25) goulo: Build R2 Goulo

26) TwoShort: Trade G2 R2 Bluestar

27) goulo: Move R1 Goulo Citroneto

28) TwoShort: Build G2 Bluestar

29) goulo: Trade R1 B1 Goulo

30) TwoShort: Discover G1 Twoshort Y3 Yolonda

31) goulo: Move B1 Goulo Citroneto

32) TwoShort: Build Y1 Twoshort

33) goulo: Move G2 Citroneto Yolonda

34) TwoShort: Sacrifice G2 Bluestar
Build G2 Twoshort
Build G2 Yolonda

35) goulo: Move G2 Yolonda Citroneto

36) TwoShort: Move G2 Yolonda Citroneto

37) goulo: Attack G2 Citroneto

38) TwoShort: Sacrifice G2 Twoshort
Build G2 Yolonda
Build G3 Twoshort

39) goulo: Discover G2 Citroneto G3 Smeraldego

40) TwoShort: Move Y1 Twoshort Bluestar

41) goulo: Build Y2 Goulo

42) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y3 Twoshort
Build G3 Bluestar

43) goulo: Discover G2 Citroneto Y3 Citronego

44) TwoShort: Sacrifice Y2 Bluestar
Move G3 Bluestar Citroneto
Move G3 Citroneto Goulo

45) goulo: Move G2 Citronego Citroneto

46) TwoShort: Trade Y3 R3 Twoshort

47) goulo: Build Y2 Goulo

48) TwoShort: Sacrifice R2 Bluestar
Attack R2 Goulo
Attack Y2 Goulo

	goulo: Thanks for the game. Man, I see why your rating is so high and you're at the top of the ladder! :)
	goulo: I noticed you do some tactics that I'd never thought of before. Hopefully my brain will absorb the lessons... :)
	TwoShort: Thanks for an interesting game!   I was pretty worried after that early catastrophe when things looked a lot worse than I had thought they would :)  
	goulo: Yes, I audaciously thought I had a good chance then, since I could start producing again before you, but then step by step you whittled away my advantage, and did the clever tricks that let you build 3-ships while I couldn't. It was like watching a magician at work. :)


18674)
Variants: "Hard time"
Started: 2011.1.6, Ended: 2011.1.24
Participants: Aristos (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R3 Y2 G3 *

2) Aristos: Homeworld Y3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) Aristos: Build G1 Aristos

5) SilentTitan: Discover G1 Silenttitan B1 Samsung

6) Aristos: Discover G1 Aristos Y2 Doorstep

7) SilentTitan: Trade G1 B1 Samsung

8) Aristos: Build G1 Aristos

9) SilentTitan: Build G1 Silenttitan

10) Aristos: Discover G1 Doorstep Y1 Windingroad

11) SilentTitan: Move G1 Silenttitan Samsung

12) Aristos: Build G2 Windingroad

13) SilentTitan: Build B2 Samsung

14) Aristos: Trade G3 Y3 Aristos

15) SilentTitan: Trade B2 Y2 Samsung

16) Aristos: Build G2 Aristos

17) SilentTitan: Build B2 Samsung

18) Aristos: Trade G2 B2 Aristos
	Aristos: Almost made a really dumb mistake. 
	Aristos: Or, rather, technically, I did make a really dumb mistake, but I saw it fast enough to undo. :-)

19) SilentTitan: Discover B2 Samsung B2 Acer

20) Aristos: Build G2 Aristos

21) SilentTitan: Build B3 Samsung

22) Aristos: Sacrifice Y3 Aristos
Move B2 Aristos Acer
Move B2 Acer Samsung
Discover G1 Aristos Y2 Waystation
Catastrophe Samsung Blue

23) SilentTitan: Build G1 Silenttitan

24) Aristos: Build G2 Aristos

25) SilentTitan: Move G1 Silenttitan Windingroad

26) Aristos: Build G3 Aristos

27) SilentTitan: Build G3 Windingroad
Catastrophe Windingroad Green
	Aristos: This time I just clicked on Undo by mistake. 

28) Aristos: Discover G1 Waystation Y1 Vantagepoint

29) SilentTitan: Build G1 Silenttitan

30) Aristos: Trade G3 Y3 Aristos

31) SilentTitan: Discover G1 Silenttitan B1 Temp

32) Aristos: Sacrifice G2 Aristos
Build G1 Vantagepoint
Build G2 Vantagepoint
	SilentTitan: Wow. I cannot believe how hard it is to play from red/yellow homeworld.  no blue is tough.

33) SilentTitan: Sacrifice B2 Acer
Trade G3 B3 Silenttitan
Pass

34) Aristos: Build G2 Aristos

35) SilentTitan: Build G3 Temp
	Aristos: Many players consider the game unwinnable (assuming the opponent has even moderate skill) unless both blue and green are included in your starting position (either in the ship or in the stars).

36) Aristos: Build G3 Aristos
	SilentTitan: well yeah... I sorta knew that ... but let's say I've really come to have a better understanding now that I've tried it.


37) SilentTitan: Trade G3 Y3 Temp
	Aristos: Darn. You changed colors. Now I have to figure out how to attack you. I could see it was a good move to force you to sacrifice, but I'm hard pressed to figure out what to do next. 

38) Aristos: Trade G3 R3 Aristos

39) SilentTitan: Build G3 Temp

40) Aristos: Discover Y3 Aristos B2 Thirdattempt

41) SilentTitan: Trade G3 R3 Temp

42) Aristos: Build R1 Aristos

43) SilentTitan: Build G3 Temp
	SilentTitan: I had wondered when you were going to get to Red

44) Aristos: Trade R3 B3 Aristos
	Aristos: I actually wanted blue, but you created this nasty threat by going yellow. Have to have a defense there. *sigh*

45) SilentTitan: Sacrifice G3 Temp
Build B1 Silenttitan
Build Y1 Temp
Build G3 Temp

46) Aristos: Sacrifice G2 Aristos
Build G2 Aristos
Build Y1 Thirdattempt

47) SilentTitan: Move Y3 Temp Thirdattempt

48) Aristos: Discover Y1 Thirdattempt R1 Runningscared

49) SilentTitan: Sacrifice G3 Temp
Build Y2 Temp
Build Y2 Thirdattempt
Build G3 Temp

50) Aristos: Sacrifice Y3 Thirdattempt
Move G1 Vantagepoint Thirdattempt
Move G1 Thirdattempt Temp
Move G1 Vantagepoint Thirdattempt

51) SilentTitan: Sacrifice G1 Temp
Build Y3 Temp

52) Aristos: Build G1 Temp

53) SilentTitan: Sacrifice Y3 Temp
Move Y3 Thirdattempt Aristos
Move G3 Temp Thirdattempt
Move G3 Thirdattempt Aristos

	Aristos: Well played.

	SilentTitan: Thank you... It was a tough game


18825)
Variants: "Hard time"
Started: 2011.1.8, Ended: 2011.1.19
Participants: TwoShort (S), AdamBadura (N)
Winner: TwoShort

1) AdamBadura: Homeworld B3 G1 Y3

2) TwoShort: Homeworld R1 B2 G3

3) AdamBadura: Build Y1 Adambadura

4) TwoShort: Build G1 Twoshort

5) AdamBadura: Trade Y1 G1 Adambadura

6) TwoShort: Build G2 Twoshort

7) AdamBadura: Build G2 Adambadura

8) TwoShort: Trade G2 Y2 Twoshort

9) AdamBadura: Trade G1 R1 Adambadura

10) TwoShort: Discover G1 Twoshort B3 Bluonia

11) AdamBadura: Discover G2 Adambadura Y2 Alphacentauri

12) TwoShort: Build G1 Twoshort

13) AdamBadura: Build R1 Adambadura

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G2 Twoshort
Build G3 Twoshort

15) AdamBadura: Build G3 Alphacentauri
	AdamBadura: You are way beyond my level... But lets see how you will destroy me... ;)

16) TwoShort: Sacrifice Y2 Twoshort
Move G1 Bluonia Alphacentauri
Move G2 Bluonia Alphacentauri
Catastrophe Alphacentauri Green
	TwoShort: I think I am only slightly beyond your level.. so I'll show you how I'll achieve a very minor, and possibly debatable, advantage relative to last turn.  Which, if I can do similar things a few more times, and nothing more dramatic happens, is how I'll destroy you :)

17) AdamBadura: Trade R1 G1 Adambadura
	AdamBadura: I expected you will do this. However I couldn't think of any other way of preventing you from having more G3 ships and I also wanted to see how it will turn out.

18) TwoShort: Trade G2 Y2 Twoshort

19) AdamBadura: Build G2 Adambadura

20) TwoShort: Build G2 Twoshort

21) AdamBadura: Sacrifice Y3 Adambadura
Discover G1 Adambadura Y2 Ontheway
Discover G1 Ontheway Y3 Stillontheway
Move G1 Stillontheway Twoshort
Catastrophe Twoshort G

22) TwoShort: Trade Y2 G2 Twoshort
	TwoShort: Ack!

23) AdamBadura: Build R1 Adambadura

24) TwoShort: Build G1 Twoshort

25) AdamBadura: Build R2 Adambadura

26) TwoShort: Trade G2 R2 Twoshort

27) AdamBadura: Trade R1 Y1 Adambadura

28) TwoShort: Build G1 Twoshort

29) AdamBadura: Build G2 Adambadura

30) TwoShort: Build G2 Twoshort

31) AdamBadura: Discover G2 Adambadura Y2 Newworld

32) TwoShort: Trade G1 Y1 Twoshort

33) AdamBadura: Move R1 Adambadura Newworld

34) TwoShort: Discover R2 Twoshort G3 Grogar

35) AdamBadura: Build G1 Newworld

36) TwoShort: Build G3 Twoshort

37) AdamBadura: Build G3 Adambadura

38) TwoShort: Discover G2 Twoshort Y3 Yolonda

39) AdamBadura: Discover G2 Adambadura B2 Mutators

40) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y2 Twoshort
Build G3 Twoshort

41) AdamBadura: Sacrifice G3 Adambadura
Build G3 Mutators
Build Y2 Adambadura
Build Y3 Adambadura

42) TwoShort: Discover Y1 Twoshort B3 Bluonia

43) AdamBadura: Sacrifice Y1 Adambadura
Move G2 Mutators Bluonia

44) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y3 Bluonia
Build G3 Twoshort

45) AdamBadura: Move R1 Newworld Bluonia
	AdamBadura: Wired... I don't know what I should do now. No plan. No nothing...
	TwoShort: It's definitely a complicated position.  I'm trying to avoid deciding if I can see a good move for you, since I wouldn't want to tell you if I did :)

46) TwoShort: Sacrifice R2 Grogar
Attack G2 Bluonia
Attack R1 Bluonia

47) AdamBadura: Sacrifice G2 Newworld
Build G2 Mutators
Build G3 Newworld
	AdamBadura: I wondered if you will do it and give my G3 ship. Well... Now I know... ;)
	AdamBadura: On the other hand it is not that much giving... :)

Sorry for long moves recently but I try to play it well and since you are on the 1 place in the Ladder I'm not blocking you from climbing up anyway...
	TwoShort: Don't worry about taking your time, it's no problem.

And, yeah, I'm happy to give you the G3 I just didn't plan to let you keep it :)


48) TwoShort: Sacrifice G2 Yolonda
Build G2 Bluonia
Build Y3 Bluonia

49) AdamBadura: Move Y2 Adambadura Mutators

50) TwoShort: Move Y3 Bluonia Mutators

51) AdamBadura: Sacrifice R2 Adambadura
Attack Y3 Mutators
Pass

52) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Bluonia Mutators
Move Y3 Mutators Adambadura

	AdamBadura: Nice one. You are too strong (or maybe two strong... ;))


18837)
Variants: "Hard time"
Started: 2011.1.9, Ended: 2011.2.11
Participants: goulo (S), dlwillson (N)
Winner: goulo

1) dlwillson: H B3 Y1 G3

2) goulo: Homeworld B1 G2 Y3
	goulo: hi, have fun!

3) dlwillson: B G1 Dlwillson

4) goulo: Build Y1 Goulo
	dlwillson: You too!

5) dlwillson: T G1 Y1 Dlwillson

6) goulo: Discover Y1 Goulo G3 Smeraldego

7) dlwillson: B Y2 Dlwillson

8) goulo: Build Y2 Goulo

9) dlwillson: D Y1 Dlwillson G2 Leaf

10) goulo: Trade Y3 G3 Goulo

11) dlwillson: B G1 Dlwillson

12) goulo: Build G1 Goulo

13) dlwillson: T G3 R3 Dlwillson

14) goulo: Trade G1 R1 Goulo

15) dlwillson: B G1 Dlwillson

16) goulo: Build R1 Goulo

17) dlwillson: D G1 Dlwillson B2 Cat

18) goulo: Move R1 Goulo Smeraldego

19) dlwillson: B G1 Cat

20) goulo: Build Y2 Goulo

21) dlwillson: Build Y3 Leaf

22) goulo: Build Y3 Smeraldego

23) dlwillson: D Y2 Dlwillson G2 Snake

24) goulo: Move Y3 Smeraldego Cat

25) dlwillson: B Y3 Snake

26) goulo: Build R1 Smeraldego

27) dlwillson: Build G3 Dlwillson

28) goulo: Move R1 Smeraldego Cat

29) dlwillson: Sacrifice Y2 Snake
Move R3 Dlwillson Snake
Move R3 Snake Smeraldego

30) goulo: Sacrifice Y1 Smeraldego
Move R1 Smeraldego Cat

31) dlwillson: Sacrifice G3 Dlwillson
Build G3 Dlwillson
Build R2 Smeraldego
Build Y1 Snake

32) goulo: Attack G1 Cat

33) dlwillson: Sacrifice Y3 Snake
Move Y1 Snake Smeraldego
Discover Y1 Leaf B3 Juniper
Move R2 Smeraldego Leaf

34) goulo: Attack G1 Cat

35) dlwillson: Discover G1 Dlwillson B2 Grape

36) goulo: Build G2 Cat

37) dlwillson: M R2 Leaf Dlwillson

38) goulo: Move G2 Cat Dlwillson

39) dlwillson: Attack G2 Dlwillson

40) goulo: Sacrifice Y2 Goulo
Move G1 Cat Dlwillson
Move G1 Cat Dlwillson
Catastrophe Dlwillson G

41) dlwillson: Move Y3 Leaf Dlwillson

42) goulo: Trade R1 G1 Cat

43) dlwillson: Trade Y3 G3 Dlwillson

44) goulo: Build Y2 Cat

45) dlwillson: Build G1 Dlwillson

46) goulo: Build G2 Cat

47) dlwillson: Sacrifice G3 Dlwillson
Build G2 Grape
Build Y2 Juniper
Build G3 Dlwillson

48) goulo: Sacrifice Y2 Cat
Move G1 Cat Dlwillson
Move G2 Cat Dlwillson
Catastrophe Dlwillson G

49) dlwillson: Sacrifice Y2 Juniper
Move R3 Smeraldego Cat
Move R3 Cat Dlwillson

50) goulo: Build G1 Goulo

51) dlwillson: Trade R3 G3 Dlwillson

52) goulo: Move G1 Goulo Juniper

	goulo: !
Thanks for the game.


18727)
Started: 2011.1.10, Ended: 2011.1.24
Participants: ts52 (S), lorgar (N)
Winner: ts52

1) lorgar: Homeworld Y1 G2 B3
	lorgar: My dreaded foe, we meet again ;)

2) ts52: H B1 Y3 G3
	ts52: Well met and have a good game.

3) lorgar: Build B1 Lorgar

4) ts52: Build G1 Ts52

5) lorgar: Trade B1 G1 Lorgar

6) ts52: Trade G1 Y1 Ts52

7) lorgar: Build B1 Lorgar

8) ts52: Build Y1 Ts52

9) lorgar: Trade B1 G1 Lorgar

10) ts52: Discover Y1 Ts52 G2 Robin

11) lorgar: Discover G1 Lorgar B3 Blacklagoon

12) ts52: Discover Y1 Ts52 G2 Kermit

13) lorgar: Build B1 Lorgar

14) ts52: B Y2 Robin

15) lorgar: Build B1 Lorgar

16) ts52: Build Y2 Kermit

17) lorgar: Trade B1 R1 Lorgar

18) ts52: M Y2 Robin Blacklagoon

19) lorgar: Build B1 Lorgar

20) ts52: Trade Y2 R2 Blacklagoon

21) lorgar: Trade B1 R1 Lorgar

22) ts52: Attack G1 Blacklagoon

23) lorgar: Trade B3 Y3 Lorgar

24) ts52: Build G1 Ts52

25) lorgar: Build Y2 Lorgar

26) ts52: Sacrifice Y2 Kermit
Move Y1 Robin Blacklagoon
Move Y1 Blacklagoon Lorgar
Catastrophe Lorgar Yellow

27) lorgar: Build R1 Lorgar

28) ts52: Build G2 Blacklagoon

29) lorgar: Trade G1 B1 Lorgar
	lorgar: sod it, you got me ^^

30) ts52: Sacrifice G3 Ts52
Build G1 Blacklagoon
Build G3 Ts52
Build G3 Ts52

31) lorgar: Build B2 Lorgar

32) ts52: Trade G3 Y3 Ts52

33) lorgar: Trade B1 Y1 Lorgar

34) ts52: Sacrifice Y3 Ts52
Move G2 Blacklagoon Lorgar
Move G1 Blacklagoon Lorgar
Move G1 Blacklagoon Lorgar
Catastrophe Lorgar Green

	ts52: Thanks for the game
	lorgar: you are welcome. see you next time


18824)
Started: 2011.1.11, Ended: 2011.1.11
Participants: TwoShort (S), lorgar (N)
Winner: TwoShort



18848)
Started: 2011.1.11, Ended: 2011.1.28
Participants: TwoShort (S), lorgar (N)
Winner: TwoShort

1) lorgar: Homeworld G1 Y2 B3

2) TwoShort: Homeworld R1 B3 G3

3) lorgar: Build B1 Lorgar

4) TwoShort: Build G1 Twoshort

5) lorgar: Trade B1 G1 Lorgar

6) TwoShort: Build G2 Twoshort

7) lorgar: Build G2 Lorgar

8) TwoShort: Trade G2 Y2 Twoshort

9) lorgar: Discover G2 Lorgar G3 Catch22

10) TwoShort: Build G2 Twoshort

11) lorgar: Build G2 Lorgar

12) TwoShort: Discover G1 Twoshort Y2 Yolonda

13) lorgar: Trade G2 R2 Lorgar

14) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Yolonda
Build G3 Twoshort

15) lorgar: Build R1 Lorgar

16) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y1 Twoshort
Build G3 Twoshort

17) lorgar: Discover G1 Lorgar Y3 Bluedanube

18) TwoShort: Sacrifice Y2 Twoshort
Discover Y1 Twoshort B2 Bluonia
Move G2 Twoshort Bluonia

19) lorgar: Move G1 Bluedanube Yolonda

20) TwoShort: Discover G1 Yolonda Y3 Yellonia

21) lorgar: Move R2 Lorgar Yellonia

22) TwoShort: Sacrifice G3 Yolonda
Build Y1 Bluonia
Build Y2 Twoshort
Build G3 Bluonia

23) lorgar: Attack G1S Yellonia

24) TwoShort: Sacrifice G3 Bluonia
Build Y3 Bluonia
Build Y3 Twoshort
Build G3 Bluonia

25) lorgar: Sacrifice G2 Catch22
Build G2 Yellonia
Build G3 Yolonda

26) TwoShort: Sacrifice Y2 Twoshort
Discover G3 Bluonia R3 Rover
Move Y1 Bluonia Rover

27) lorgar: Build B1 Lorgar

28) TwoShort: Sacrifice G2 Twoshort
Build Y2 Rover
Build G2 Rover

29) lorgar: Sacrifice B1 Lorgar
Trade G1 R1 Yolonda

30) TwoShort: Sacrifice Y3 Bluonia
Move G3 Rover Lorgar
Move G2 Rover Lorgar
Discover G2 Bluonia Y3 Yackityyack

31) lorgar: Move G3 Yolonda Rover

32) TwoShort: Sacrifice Y3 Twoshort
Move Y1 Rover Lorgar
Move Y2 Rover Lorgar
Move G2 Yackityyack Lorgar
Catastrophe Lorgar Green

33) lorgar: Move B3 Lorgar Twoshort
	lorgar: nice. rh
	lorgar: nice. rh

34) TwoShort: Move Y1 Twoshort Lorgar
Catastrophe Lorgar Yellow



18850)
Variants: "Hard time"
Started: 2011.1.11, Ended: 2011.2.23
Participants: mneme (S), Danner (N)
Winner: mneme

1) Danner: Pass
	Danner: Howdy! Good luck, have fun!

2) mneme: Homeworld R1 B2 G3

3) Danner: Homeworld Y3 B2 G3

4) mneme: Build G1 Mneme

5) Danner: Build G1 Danner

6) mneme: Trade G1 R1 Mneme

7) Danner: Trade G1 R1 Danner

8) mneme: Build R2 Mneme

9) Danner: Build R2 Danner

10) mneme: Trade R2 Y2 Mneme

11) Danner: Discover R1 Danner Y1 P4c-970

12) mneme: Build R2 Mneme

13) Danner: Sacrifice G3 Danner
Build R2 Danner
Build R3 P4c-970
Build R3 Danner

14) mneme: Discover R2 Mneme G3 Expansion

15) Danner: Trade R2 Y2 Danner

16) mneme: Discover R1 Mneme G3 Pressure

17) Danner: Discover R1 P4c-970 G2 P3x-234

18) mneme: Build Y1 Mneme

19) Danner: Move R3 P4c-970 Expansion

20) mneme: Sacrifice Y1 Mneme
Move R2 Expansion P3x-234

	Danner: Uh, sorry, slipped my mind.
	mneme: happens.  A shame, it was an interesting game (and you were winning)


18853)
Variants: "Hard time"
Started: 2011.1.12, Ended: 2011.1.28
Participants: baxy (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y3 B1 G3

2) baxy: Homeworld G3 B2 Y3

3) ajo: Build G1 Ajo

4) baxy: Build Y1 Baxy

5) ajo: Trade G1 R1 Ajo

6) baxy: Trade Y1 R1 Baxy

7) ajo: Build G1 Ajo

8) baxy: Build Y1 Baxy

9) ajo: Build G1 Ajo

10) baxy: Build Y1 Baxy

11) ajo: Discover G1 Ajo B2 Alpha

12) baxy: Trade Y1 B1 Baxy

13) ajo: Build G1 Alpha

14) baxy: Build B1 Baxy
	ajo: Wow, nice timing; I got back to the computer from watching TCM and there was your move! :)
	baxy: love it when that happens :)  i usually have pretty bad timing.  If you want I will start posting when im by my computer and can exchange a few moves quickly.

15) ajo: Build G2 Alpha

16) baxy: Trade Y3 G3 Baxy

17) ajo: Trade G2 Y2 Alpha

18) baxy: Discover B1 Baxy Y1 Weezer

19) ajo: Build G2 Alpha

20) baxy: Sacrifice G3 Baxy
Build B2 Weezer
Build B3 Weezer
Build B3 Baxy

21) ajo: Build G2 Ajo



18862)
Started: 2011.1.14, Ended: 2011.1.16
Participants: ajo (S), Remneb (N)
Winner: ajo

1) Remneb: Homeworld B1 R2 G3

2) ajo: Homeworld B3 Y1 G3

3) Remneb: Build G1 Remneb

4) ajo: Build G1 Ajo

5) Remneb: Trade G1 Y1 Remneb

6) ajo: Discover G1 Ajo B2 Alpha

7) Remneb: Build G1 Remneb

8) ajo: Build G1 Ajo

9) Remneb: Discover G1 Remneb Y3 Shiloh

10) ajo: Build G2 Alpha

11) Remneb: Build G2 Shiloh

12) ajo: Trade G1 R1 Alpha

13) Remneb: Discover G2 Shiloh Y2 Malvern

14) ajo: Build R1 Alpha

15) Remneb: Trade G3 Y3 Remneb

16) ajo: Trade G3 R3 Ajo

17) Remneb: Build G1 Malvern

18) ajo: Build G2 Alpha

19) Remneb: Build G3 Shiloh

20) ajo: Build G3 Ajo

21) Remneb: Discover G1 Malvern G3 Sirius

22) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build R1 Ajo
Build R2 Alpha

23) Remneb: Move G3 Shiloh Remneb

24) ajo: Discover G1 Ajo B2 Beta

25) Remneb: Move Y1 Remneb Sirius

26) ajo: Trade R2 Y2 Alpha

27) Remneb: Sacrifice Y3 Remneb
Move G1 Shiloh Alpha
Move G1 Sirius Alpha
Move G2 Malvern Sirius
Catastrophe Alpha G

28) ajo: Build G1 Beta

29) Remneb: Discover G2 Sirius Y2 Nebo

30) ajo: Sacrifice G1 Beta
Build R2 Alpha

31) Remneb: Build G1 Remneb

32) ajo: Trade R2 G2 Alpha

33) Remneb: Trade G3 R3 Remneb

34) ajo: Build G1 Ajo

35) Remneb: Build G2 Remneb

36) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Beta
Build R2 Alpha

37) Remneb: Build Y1 Sirius

38) ajo: Discover R1 Alpha B3 Gamma

39) Remneb: Move Y1 Sirius Remneb

40) ajo: Move R1 Alpha Sirius

41) Remneb: Move Y1 Sirius Nebo

42) ajo: Sacrifice Y2 Alpha
Move R1 Gamma Remneb
Move R1 Sirius Remneb
Catastrophe Remneb Red

43) Remneb: Trade G2 R2 Remneb

44) ajo: Trade G3 Y3 Beta

45) Remneb: Build G2 Nebo

46) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Alpha
Build G3 Beta

47) Remneb: Build Y2 Remneb

48) ajo: Sacrifice Y3 Beta
Move G3 Alpha Remneb
Move R2 Alpha Remneb
Discover G1 Ajo B2 Safehouse

49) Remneb: Attack R2 Remneb

50) ajo: Sacrifice R3 Ajo
Attack R2N Remneb
Attack R2N Remneb
Attack Y2N Remneb

	ajo: Check.
	Remneb: Incredible ! It's a huge invasion.
	Remneb: Thanks for the game.


18713)
Started: 2011.1.14, Ended: 2011.1.29
Participants: Aristos (S), mathochist (N)
Winner: Aristos



18870)
Variants: "Hard time"
Started: 2011.1.16, Ended: 2011.1.29
Participants: Aristos (S), shmil1 (N)
Winner: Aristos

1) shmil1: Homeworld R1 G1 B3 *

2) Aristos: Homeworld Y1 B2 G3

3) shmil1: Build B1 Shmil1

4) Aristos: Build G1 Aristos

5) shmil1: Build B1 Shmil1

6) Aristos: Discover G1 Aristos Y3 Casualdisregard

7) shmil1: Trade B1 Y1 Shmil1

8) Aristos: Build G1 Casualdisregard

9) shmil1: Move B1 Shmil1 Casualdisregard

10) Aristos: Discover G1 Casualdisregard B2 Socialunrest

11) shmil1: Build Y1 Shmil1

12) Aristos: Build G2 Casualdisregard

13) shmil1: Trade B1 R1 Casualdisregard

14) Aristos: Trade G1 R1 Socialunrest

15) shmil1: Attack G1 Casualdisregard

16) Aristos: Sacrifice R1 Socialunrest
Attack R1 Casualdisregard

17) shmil1: Move G1 Casualdisregard Aristos

18) Aristos: Build R1 Casualdisregard

19) shmil1: Build G1 Aristos

20) Aristos: Trade G3 R3 Aristos

21) shmil1: Build G2 Aristos

22) Aristos: Attack G2 Aristos

23) shmil1: Build G2 Aristos
	Aristos: The Aristos Empire sends greetings to the Shmil1 ambassador. We appreciate the visitations of our neighbors from the north, but it is now time to withdraw your green ships from our homeworld. Failure to do so will be more calamitous for you than for us. We will allow both of your ships to withdraw, if you wish to do so. Failure to withdraw at least one ship in the next standard move will constitute rejection of our generous offer.

24) Aristos: Attack G2 Aristos

25) shmil1: Build G3 Aristos
	Aristos: We appreciate your gift of green ships to our fleet, but we are curious where this process is headed. 

26) Aristos: Sacrifice G2 Aristos
Build G2 Casualdisregard
Build G3 Casualdisregard
Catastrophe Aristos Green
	shmil1: I hope you will see it :)

27) shmil1: Build Y2 Shmil1
	Aristos: We regret to inform you that an accident occurred in our home system. Citizens from both of our empires died in the conflagration. Rest assured we are studying the records to find the cause. Until then, we recommend all ships from other empires stay out of our home system. It is apparently unstable. We may be sending refugees from our world to our neighbors. Please treat them kindly and welcome them into you systems.

28) Aristos: Discover G2 Casualdisregard B2 Vileslander

29) shmil1: Trade Y2 R2 Shmil1

30) Aristos: Trade G2 Y2 Vileslander

31) shmil1: Move R2 Shmil1 Vileslander

32) Aristos: Sacrifice R1 Casualdisregard
Attack R2 Vileslander

33) shmil1: Discover Y1 Shmil1 G3 Joooj

34) Aristos: Build G1 Casualdisregard

35) shmil1: Build Y2 Joooj

36) Aristos: Sacrifice Y2 Vileslander
Move R2 Vileslander Shmil1
Move R1 Casualdisregard Shmil1

37) shmil1: Attack R2 Shmil1

38) Aristos: Build R1 Shmil1
Catastrophe Shmil1 Red
	Aristos: Greetings! We mentioned that refugees from our world might come your way. They have arrived. Please make them welcome! You may notice they are heavily armed. Be assured that is merely because our military transports were the only ones available. We come in peace. We have no intention of attacking any of your ships!

39) shmil1: Trade Y1 R1 Shmil1
	shmil1: welcome :)

40) Aristos: Move G1 Casualdisregard Shmil1
	Aristos: Word has reached us that our refugees, whom we thought safe in your system, have vanished! We are most distraught by this. We are beginning an active search for our missing ships. Curiously, one of your stars appears to have vanished as well. Perhaps the two events are connected? We will let you know if our investigation reveals anything.

41) shmil1: Attack G1 Shmil1

42) Aristos: Move G2 Casualdisregard Shmil1

43) shmil1: Trade G1 Y1 Shmil1

44) Aristos: Sacrifice G3 Casualdisregard
Build G1 Shmil1
Build G1 Shmil1
Build R1 Aristos
Catastrophe Shmil1 Green

	Aristos: Thank you for the game.


18842)
Started: 2011.1.16, Ended: 2011.1.29
Participants: shmil1 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) shmil1: Homeworld B2 G1 R3
	ts52: Have a good game!


3) ts52: Build G1 Ts52

4) shmil1: Build R1 Shmil1

5) ts52: Build G1 Ts52

6) shmil1: Build R1 Shmil1

7) ts52: D G1 Ts52 Y3 Bigbird

8) shmil1: Trade R1 Y1 Shmil1

9) ts52: Trade G1 R1 Ts52

10) shmil1: Build Y1 Shmil1

11) ts52: B G1 Ts52

12) shmil1: Move R1 Shmil1 Bigbird

13) ts52: Sacrifice R1 Ts52
Attack R1 Bigbird

14) shmil1: Build Y2 Shmil1

15) ts52: Build G2 Bigbird

16) shmil1: Trade Y2 R2 Shmil1

17) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G2 Ts52
Build G3 Ts52

18) shmil1: Discover Y1 Shmil1 G3 Zelena

19) ts52: Discover G2 Ts52 Y3 Zoe

20) shmil1: Build Y2 Zelena

21) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Ts52
Build R1 Bigbird

22) shmil1: Trade R2 B2 Shmil1

23) ts52: Trade G3 Y3 Ts52

24) shmil1: Move Y1 Zelena Ts52

25) ts52: Discover Y3 Ts52 B3 Grover

26) shmil1: Move Y2 Zelena Ts52

27) ts52: Sacrifice R1 Bigbird
Attack Y2S Ts52

28) shmil1: Build R1 Shmil1

29) ts52: Trade Y2 R2 Ts52

30) shmil1: Sacrifice R1 Shmil1
Attack G1 Ts52

31) ts52: Attack G1S Ts52

32) shmil1: Discover Y1 Ts52 G3 Nono

33) ts52: Build G3 Ts52

34) shmil1: Build Y2 Nono

35) ts52: Trade G3 R3 Ts52

36) shmil1: Trade R3 G3 Shmil1

37) ts52: Move R3 Ts52 Nono

38) shmil1: Build Y2 Nono

39) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Grover
Build R1 Ts52

40) shmil1: Sacrifice B2 Shmil1
Trade Y2 R2 Nono
Trade Y2 R2 Nono

41) ts52: Sacrifice Y3 Grover
Move G1 Bigbird Shmil1
Move G2 Bigbird Shmil1
Move R3 Nono Shmil1
Catastrophe Shmil1 Green

	ts52: Thanks for the game. 


18865)
Started: 2011.1.16, Ended: 2011.1.22
Participants: mathochist (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 Y1 G3



18869)
Variants: "Hard time"
Started: 2011.1.17, Ended: 2011.1.28
Participants: Jesse (S), baxy (N)
Winner: Jesse

1) baxy: Homeworld G3 B1 Y3

2) Jesse: Homeworld B1 G2 B3 *

3) baxy: Build Y1 Baxy

4) Jesse: Build B1 Jesse

5) baxy: Build Y1 Baxy

6) Jesse: Trade B3 Y3 Jesse

7) baxy: Trade Y3 B3 Baxy

8) Jesse: Build B2 Jesse



18709)
Variants: "Hard time"
Started: 2011.1.23, Ended: 2011.2.7
Participants: sompm (S), Aristos (W), lorgar (N), Buttons (E)
Winner: lorgar

1) lorgar: Homeworld B3 Y2 G3

2) Buttons: Homeworld R1 B2 G3

3) sompm: Homeworld G3 B1 Y3

4) Aristos: Homeworld B1 Y3 G3

5) lorgar: Build G1 Lorgar

6) Buttons: Build G1 Buttons
	lorgar: gl, hf

7) sompm: Build Y1 Sompm

8) Aristos: Build G1 Aristos

9) lorgar: Build G1 Lorgar

10) Buttons: Trade G1 Y1 Buttons
	Aristos: The ambassador of the Aristos Empire sends greetings to our neighbors in this galaxy. We look forward to many turns of peaceful co-exploration of this space with you.
	Buttons: Uryyb! V ercerfrag gur Terng Crbcyr'f Erchoyvp bs Ohggbaf, naq V rpub gur fragvzragf bs bhe arvtuobe gb gur Jrfg. Znl bhe sbhe tnynpgvp cbjref rawbl znal lrnef bs crnpr naq cebfcrevgl! Va gur hayvxryl rirag gung nal ubfgvyvgvrf nevfr orgjrra hf, V ubcr lbhe fhssrevat funyy or oevrs. Jr ner nyfb jbexvat ba bhe EBG-13 genafyngvba grpuabybtl; vs bhe Svir Ghea Cyna vf fhpprffshy, jr fubhyq or noyr gb pbzzhavpngr va lbhe ynathntr va qhr gvzr. Sbe abj, V ubcr bhe zvffvirf pna or pbzceruraqrq.

11) sompm: Build Y1 Sompm

12) Aristos: Build G1 Aristos
	sompm: Qu'est-ce que vous avez du? Je ne comprends pas.

Greetings, fellow explorer, I also would pursue peaceful coexistence  with any willing to cooperate.

That is, until relations go sour and I notice you're stockpiling large ships of specific colors.

And... probably vice-versa.

13) lorgar: Trade G1 Y1 Lorgar

14) Buttons: Build G1 Buttons

	Aristos: I never saw a notification that it was my turn. I am sorry for not moving. 
	sompm: Woah, what? Sorry. Dang.
	Buttons: Hey, at least we never fought or anything.


18816)
Variants: "Hard time"
Started: 2011.1.23, Ended: 2011.2.3
Participants: SilentTitan (S), Buttons (N)
Winner: SilentTitan

1) Buttons: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld R3 B2 G3

3) Buttons: Build G1 Buttons

4) SilentTitan: Build G1 Silenttitan

5) Buttons: Trade G1 Y1 Buttons

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Buttons: Build Y2 Buttons

8) SilentTitan: Build Y2 Silenttitan

9) Buttons: Trade Y1 R1 Buttons

10) SilentTitan: Build G1 Silenttitan

11) Buttons: Build G1 Buttons

12) SilentTitan: Discover Y1 Silenttitan B1 Pak

13) Buttons: Discover G1 Buttons Y3 Senseofconquest

14) SilentTitan: Build Y1 Silenttitan

15) Buttons: Discover Y2 Buttons G3 Bloomandgrow

16) SilentTitan: Discover Y1 Silenttitan B1 Sic

17) Buttons: Build R1 Buttons

18) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Pak
Build Y3 Sic
Build Y3 Silenttitan

19) Buttons: Trade R1 B1 Buttons

20) SilentTitan: Trade Y3 B3 Sic

21) Buttons: Build Y3 Bloomandgrow

22) SilentTitan: Sacrifice Y2 Silenttitan
Move Y2 Pak Bloomandgrow
Move Y1 Pak Bloomandgrow
Catastrophe Bloomandgrow Yellow

23) Buttons: Build R1 Buttons

24) SilentTitan: Build Y1 Silenttitan

25) Buttons: Discover R1 Buttons B3 Dtmgffbank

26) SilentTitan: Trade Y3 G3 Silenttitan

27) Buttons: Build R1 Buttons

28) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sic
Build Y2 Sic
Build Y2 Silenttitan

29) Buttons: Build R2 Buttons

30) SilentTitan: Build Y3 Silenttitan

31) Buttons: Move R2 Buttons Senseofconquest

32) SilentTitan: Trade B3 R3 Sic

33) Buttons: Build G1 Buttons

34) SilentTitan: Discover Y2 Sic R3 Rosy

35) Buttons: Discover R2 Senseofconquest B2 Lacuna

36) SilentTitan: Trade Y3 G3 Silenttitan

37) Buttons: Discover G1 Buttons Y3 Seventeenpigs
	Buttons: Ugh. Okay, 19 moves into my first game and I understand why some people don't like yellow stars.

38) SilentTitan: Build Y3 Silenttitan
	SilentTitan: They have their uses, but they're not the best for getting around fast.
	Buttons: Aside from the fact that you're dominating yellow right now, even if I could get one on my homeworld (say by trading G3 for Y3), you could immediately induce a catastrophe by sacrificing your Y3.
	Buttons: So yeah, think I'll try red for my second game.

39) Buttons: Build B1 Buttons

40) SilentTitan: Discover Y2 Sic B3 Sox

41) Buttons: Move B1 Buttons Seventeenpigs

42) SilentTitan: Trade Y3 B3 Silenttitan

43) Buttons: Build G2 Buttons

44) SilentTitan: Sacrifice G1 Silenttitan
Build Y3 Sox

45) Buttons: Move G1 Seventeenpigs Lacuna

46) SilentTitan: Trade Y3 G3 Sox

47) Buttons: Sacrifice R1 Dtmgffbank
Pass

48) SilentTitan: Sacrifice G3 Sox
Build Y3 Sox
Build B3 Silenttitan
Build G1 Silenttitan

49) Buttons: Build G2 Senseofconquest

50) SilentTitan: Sacrifice Y3 Sox
Move B3 Silenttitan Sic
Move B3 Sic Rosy
Move B3 Silenttitan Sic

51) Buttons: Move B1 Buttons Senseofconquest

52) SilentTitan: Move R3 Sic Lacuna

53) Buttons: Discover R1 Buttons G3 Impendingdoom

54) SilentTitan: Attack R2 Lacuna North

55) Buttons: Sacrifice G2 Senseofconquest
Build R1 Buttons
Build R2 Impendingdoom

56) SilentTitan: Move B3 Sic Impendingdoom

57) Buttons: Move B1 Senseofconquest Sic

58) SilentTitan: Sacrifice R3 Lacuna
Attack R2 Impendingdoom North
Attack R1 Impendingdoom North
Attack B1 Sic North

59) Buttons: Build G2 Senseofconquest

60) SilentTitan: Sacrifice Y2 Sox
Move B3 Impendingdoom Buttons
Move B3 Rosy Buttons

61) Buttons: Attack B3S Buttons

62) SilentTitan: Sacrifice R2 Impendingdoom
Attack B3 Buttons North
Attack G3 Buttons North

63) Buttons: Move B1 Seventeenpigs Buttons
Catastrophe Buttons Blue

64) SilentTitan: Sacrifice B1 Sic
Trade G3 Y3 Buttons

65) Buttons: Discover G1 Senseofconquest B1 Buttonsn

66) SilentTitan: Sacrifice Y2 Rosy
Move Y2 Silenttitan Buttons
Move Y1 Silenttitan Buttons
Catastrophe Buttons Yellow

	SilentTitan: good game
	Buttons: FYI that's my homeworld in the top left over there. Not the one on the very top.
	SilentTitan: LOL..... I just saw that post ... 


18931)
Variants: "Hard time"
Started: 2011.1.25, Ended: 2011.2.18
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B3 G3

2) lorgar: Homeworld B1 G2 Y3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build Y1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Trade Y1 B1 Lorgar

7) SilentTitan: Build Y1 Silenttitan

8) lorgar: Build B1 Lorgar

9) SilentTitan: Discover Y1 Silenttitan Y1 Sox

10) lorgar: Build Y2 Lorgar

11) SilentTitan: Build Y2 Silenttitan

12) lorgar: Discover Y2 Lorgar G3 Madyamika

13) SilentTitan: Discover Y2 Silenttitan G1 Sax

14) lorgar: Move Y2 Madyamika Sax

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sax
Build Y3 Sox
Build Y3 Silenttitan

16) lorgar: Trade B1 R1 Lorgar

17) SilentTitan: Sacrifice Y3 Sox
Discover Y2 Sax G3 Tic
Discover Y2 Sax G3 Tac
Discover Y1 Sox B3 Toe

18) lorgar: Trade Y3 G3 Lorgar

19) SilentTitan: Discover Y2 Tac B2 Fee

20) lorgar: Move Y2 Sax Tic

21) SilentTitan: Trade Y3 G3 Silenttitan

22) lorgar: Sacrifice R1 Lorgar
Attack Y2N Tic

23) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Toe
Build Y3 Fee
Build Y3 Silenttitan

24) lorgar: Build B1 Lorgar

25) SilentTitan: Trade Y1 R1 Toe

26) lorgar: Sacrifice B1 Lorgar
Trade Y2 R2 Tic

27) SilentTitan: Trade Y3 G3 Silenttitan

28) lorgar: Trade B1 R1 Lorgar

29) SilentTitan: Move Y3 Fee Tic

30) lorgar: Build Y1 Tic

31) SilentTitan: Sacrifice R1 Toe
Attack R2 Tic South

32) lorgar: Build Y2 Tic
Catastrophe Tic Yellow

33) SilentTitan: Build Y1 Silenttitan

34) lorgar: Build G1 Lorgar

35) SilentTitan: Trade Y2 G2 Fee

36) lorgar: Build R1 Lorgar

37) SilentTitan: Sacrifice G2 Fee
Build Y2 Toe
Build Y2 Toe

38) lorgar: Trade G3 Y3 Lorgar

39) SilentTitan: Sacrifice Y2 Toe
Move Y2 Toe Lorgar
Move Y1 Toe Lorgar

40) lorgar: Trade Y3 B3 Lorgar

41) SilentTitan: Sacrifice R2 Tic
Attack R1 Lorgar South
Attack R1 Lorgar South

42) lorgar: Build G1 Lorgar

43) SilentTitan: Trade Y1 G1 Lorgar
Catastrophe Lorgar Green

44) lorgar: Trade B3 G3 Lorgar

45) SilentTitan: Trade R1 G1 Lorgar

46) lorgar: Trade G3 R3 Lorgar

47) SilentTitan: Sacrifice G3 Silenttitan
Build R1 Lorgar
Build R1 Lorgar
Build Y1 Silenttitan
Catastrophe Lorgar Red



18935)
Started: 2011.1.28, Ended: 2011.2.16
Participants: ts52 (S), lorgar (N)
Winner: ts52

1) lorgar: Homeworld B3 Y2 G3

2) ts52: Homeworld Y1 B2 G3

3) lorgar: Build G1 Lorgar
	ts52: have a good game!

4) ts52: B G1 Ts52

5) lorgar: Trade G1 Y1 Lorgar

6) ts52: Trade G1 Y1 Ts52

7) lorgar: Build Y2 Lorgar

8) ts52: Discover Y1 Ts52 G3 Kermit

9) lorgar: Trade Y1 R1 Lorgar

10) ts52: Build G1 Ts52

11) lorgar: Discover Y2 Lorgar G1 Sotrantika

12) ts52: Trade G1 R1 Ts52

13) lorgar: Build G1 Lorgar

14) ts52: Build R1 Ts52

15) lorgar: Build R2 Lorgar

16) ts52: Build R2 Ts52

17) lorgar: Discover R2 Lorgar G1 Madyamika

18) ts52: Move R2 Ts52 Kermit

19) lorgar: Move R1 Lorgar Sotrantika

20) ts52: B G2 Ts52

21) lorgar: Build G2 Lorgar

22) ts52: Trade G2 B2 Ts52

23) lorgar: Trade G2 R2 Lorgar

24) ts52: Build R3 Kermit

25) lorgar: Build R3 Sotrantika

26) ts52: Discover R1 Ts52 Y3 Bigbird

27) lorgar: Build R3 Madyamika

28) ts52: Build G2 Ts52

29) lorgar: Sacrifice Y2 Sotrantika
Move R2 Madyamika Kermit
Move R1 Sotrantika Kermit
Catastrophe Kermit Red

30) ts52: Build G2 Ts52

31) lorgar: Build G2 Lorgar

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Kermit
Build Y2 Kermit

33) lorgar: Trade G2 Y2 Lorgar

34) ts52: Discover Y2 Kermit B1 Gonzo

35) lorgar: Sacrifice Y2 Lorgar
Move R3 Madyamika Bigbird
Move R3 Sotrantika Kermit

36) ts52: Sacrifice G2 Ts52
Build Y2 Gonzo
Build Y3 Gonzo

37) lorgar: Attack Y1S Kermit

38) ts52: Trade Y3 R3 Gonzo

39) lorgar: Attack Y1S Kermit

40) ts52: Discover Y2 Gonzo G2 Robin

41) lorgar: Move R3 Bigbird Robin

42) ts52: Discover Y2 Robin G1 Oscar

43) lorgar: Move Y1 Kermit Oscar

44) ts52: Sacrifice G2 Ts52
Build Y3 Gonzo
Build Y3 Oscar

45) lorgar: Move Y1 Kermit Oscar
Catastrophe Oscar Yellow

46) ts52: Build G1 Ts52

47) lorgar: Trade G1 B1 Lorgar

48) ts52: Move G1 Ts52 Bigbird

49) lorgar: Build B1 Lorgar

50) ts52: Sacrifice Y3 Gonzo
Move B2 Ts52 Bigbird
Move B2 Bigbird Gonzo
Move B2 Gonzo Lorgar
Catastrophe Lorgar Blue

51) lorgar: Build G1 Lorgar

52) ts52: Move G1 Bigbird Gonzo

53) lorgar: Discover G1 Lorgar B1 Newgate

54) ts52: Build Y1 Gonzo

55) lorgar: Trade G1 Y1 Newgate

56) ts52: Discover Y2 Gonzo G2 Oscar

57) lorgar: Move Y1 Newgate Kermit

58) ts52: Build G1 Ts52

59) lorgar: Move R3 Kermit Oscar

60) ts52: Move Y2 Oscar Kermit

61) lorgar: Sacrifice Y1 Kermit
Discover R3 Oscar B3 Magnamund

62) ts52: Build Y1 Kermit

63) lorgar: Trade R3 Y3 Magnamund

64) ts52: Trade R3 Y3 Gonzo

65) lorgar: Build G1 Lorgar

66) ts52: Sacrifice Y3 Gonzo
Move Y1 Gonzo Lorgar
Move Y2 Kermit Lorgar
Move Y1 Kermit Lorgar
Catastrophe Lorgar Yellow

	ts52: Thanks for the game.

	lorgar: was interesting. Next time I wont fall for the same trick. I hope.


18985)
Variants: "Hard time"
Started: 2011.1.28, Ended: 2011.2.13
Participants: Gidaio (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y3 B1 G3

2) Gidaio: Homeworld G2 B3 Y3

3) ajo: Build G1 Ajo

4) Gidaio: Build Y1 Gidaio

5) ajo: Build G1 Ajo

6) Gidaio: Build Y1 Gidaio

7) ajo: Discover G1 Ajo B2 Alpha

8) Gidaio: Discover Y1 Gidaio G1 Beta

9) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Ajo
Build G3 Ajo
	ajo: Interesting. Well, I'll take it.

10) Gidaio: Build Y1 Beta

11) ajo: Trade G2 Y2 Alpha

12) Gidaio: Trade Y1 R1 Gidaio

13) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G3 Alpha
Build G3 Ajo

14) Gidaio: Build Y1 Gidaio

15) ajo: Trade G3 R3 Alpha

16) Gidaio: Build Y2 Gidaio

17) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y2 Alpha
Build G3 Alpha

18) Gidaio: Sacrifice Y2 Gidaio
Move Y1 Beta Alpha
Move Y1 Beta Alpha
Catastrophe Alpha Yellow

19) ajo: Trade G3 Y3 Alpha

20) Gidaio: Discover Y1 Gidaio B1 Delta

21) ajo: Move G2 Alpha Delta

22) Gidaio: Build Y1 Gidaio
	ajo: I'd be fine if you want to resign at this point. It doesn't seem worth dragging out the game several more days.
	Gidaio: Enh. You're probably right. But I've seen situations where someone is in a losing place, something happens, and they win. I'll continue, unless it becomes utterly hopeless. You're definitely in a better position, though.

23) ajo: Sacrifice G3 Ajo
Build G1 Alpha
Build G3 Delta
Build G3 Delta
	ajo: Well, you'd be counting on me to make some really terrible blunder... I think I've been in the "better position" ever since you gave me the green monopoly on turn 6, and by this point it *is* utterly hopeless.  But we can play it out a little further.

	Gidaio: Yeah... I had a horrible game where this guy got a yellow monopoly, and I couldn't move. I tried that this time, but... gg


18984)
Variants: "Hard time"
Started: 2011.1.29, Ended: 2011.2.16
Participants: Aristos (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld B3 R1 G3

2) Aristos: Homeworld B1 G2 Y3

3) Jesse: Build G1 Jesse

4) Aristos: Build Y1 Aristos

5) Jesse: Trade G1 Y1 Jesse

6) Aristos: Discover Y1 Aristos B3 Ipsofacto

7) Jesse: Build G1 Jesse

8) Aristos: Trade Y1 G1 Ipsofacto

9) Jesse: Discover G1 Jesse B2 Grover

10) Aristos: Build Y1 Aristos

11) Jesse: Build G1 Jesse

12) Aristos: Build G2 Ipsofacto

13) Jesse: Sacrifice G3 Jesse
Build G2 Grover
Build G3 Jesse
Build Y1 Jesse

14) Aristos: Build Y2 Aristos

15) Jesse: Trade G2 R2 Grover

16) Aristos: Move Y1 Aristos Ipsofacto

17) Jesse: Move Y1 Jesse Grover

18) Aristos: Trade G1 R1 Ipsofacto

19) Jesse: Build Y2 Grover

20) Aristos: Trade Y2 G2 Aristos

21) Jesse: Discover Y2 Grover G3 Oscar

22) Aristos: Build Y2 Ipsofacto

23) Jesse: Build Y2 Oscar

24) Aristos: Build Y3 Aristos

25) Jesse: Build Y3 Grover

26) Aristos: Discover Y3 Aristos G3 Quidproquo

27) Jesse: Sacrifice G3 Jesse
Build G1 Grover
Build G3 Jesse
Build R1 Grover

28) Aristos: Build R2 Ipsofacto

29) Jesse: Move Y3 Grover Ipsofacto

30) Aristos: Sacrifice Y2 Ipsofacto
Move R1 Ipsofacto Grover
Move R2 Ipsofacto Grover
Catastrophe Grover Red

31) Jesse: Build Y2 Grover

32) Aristos: Trade Y1 R1 Ipsofacto

33) Jesse: Trade Y2 R2 Grover

34) Aristos: Build R1 Ipsofacto

35) Jesse: Sacrifice R2 Grover
Attack R1 Ipsofacto
Attack R1 Ipsofacto

	Aristos: Good game.


18993)
Variants: "Hard time"
Started: 2011.1.30, Ended: 2011.3.8
Participants: Aristos (S), fnord (N)
Winner: Aristos

1) fnord: Homeworld B3 G2 Y3

2) Aristos: Homeworld G2 B1 Y3

3) fnord: Build Y1 Fnord

4) Aristos: Build Y1 Aristos

5) fnord: Discover Y1 Fnord B1 Eris

6) Aristos: Trade Y1 R1 Aristos

7) fnord: Build Y1 Fnord

8) Aristos: Build R1 Aristos

9) fnord: Trade Y1 R1 Eris

10) Aristos: Build Y1 Aristos

11) fnord: Move Y1 Fnord Eris

12) Aristos: Build R2 Aristos

13) fnord: Trade Y1 G1 Eris

14) Aristos: Trade R1 G1 Aristos

15) fnord: Build Y1 Fnord

16) Aristos: Build Y1 Aristos

17) fnord: Move Y1 Fnord Eris

18) Aristos: Sacrifice Y3 Aristos
Discover R2 Aristos G3 Garage
Move Y1 Aristos Garage
Move R2 Garage Eris

19) fnord: Sacrifice Y1 Eris
Move R1 Eris Garage

20) Aristos: Sacrifice R1 Aristos
Attack R1 Garage

21) fnord: Trade G1 Y1 Eris

22) Aristos: Attack Y1 Eris

23) fnord: Build Y2 Fnord

24) Aristos: Build Y2 Garage

25) fnord: Trade Y2 G2 Fnord

26) Aristos: Build Y2 Aristos

27) fnord: Build Y2 Fnord

28) Aristos: Sacrifice G1 Aristos
Build Y3 Eris

29) fnord: Trade Y3 R3 Fnord

30) Aristos: Build Y3 Garage

31) fnord: Build G1 Fnord

32) Aristos: Build Y3 Aristos

33) fnord: Trade G1 B1 Fnord

34) Aristos: Trade Y3 G3 Eris

35) fnord: Discover Y2 Fnord G1 Discordia

36) Aristos: Sacrifice Y3 Aristos
Move G3 Eris Fnord
Discover Y3 Garage G1 Temporary
Move Y3 Temporary Fnord
	Aristos: You know, I thought I was getting close to pinning you, but it is surprisingly hard to get to the endgame on this.
	fnord: Oh, don't worry, you've got me well and truly pinned down.  It's just a matter of how much squirming I can do to delay the inevitable. *grin*

37) fnord: Attack G3 Fnord

38) Aristos: Sacrifice R2 Eris
Attack R3 Fnord
Attack G3 Fnord

39) fnord: Build Y3 Discordia

40) Aristos: Sacrifice R3 Fnord
Attack B1 Fnord
Attack G2 Fnord
Pass

	Aristos: Good game. Thanks.
	fnord: Thanks for the game!


19002)
Started: 2011.1.30, Ended: 2011.2.27
Participants: daselva (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld B3 Y2 G3

2) daselva: Homeworld R1 B2 G3
	Mandrel: Have a good game.

3) Mandrel: B G1 Mandrel

4) daselva: Build G1 Daselva

5) Mandrel: Trade G1 R1 Mandrel

6) daselva: Trade G1 R1 Daselva

7) Mandrel: Build R2 Mandrel

8) daselva: Build R2 Daselva

9) Mandrel: Build R2 Mandrel

10) daselva: Trade R2 Y2 Daselva

11) Mandrel: Trade R1 Y1 Mandrel

12) daselva: Build Y1 Daselva

13) Mandrel: D R2 Mandrel B1 Relief

14) daselva: Build G1 Daselva

15) Mandrel: B G1 Mandrel

16) daselva: Discover Y2 Daselva R3 S1

17) Mandrel: Move G1 Mandrel Relief

18) daselva: Move G1 Daselva S1

19) Mandrel: Build R1 Mandrel

20) daselva: Sacrifice G3 Daselva
Build Y1 S1
Build Y2 Daselva
Build Y3 Daselva

21) Mandrel: M Y1 Mandrel Relief

22) daselva: Trade Y3 G3 Daselva

23) Mandrel: Build Y3 Relief

24) daselva: Move Y1 S1 Relief

25) Mandrel: Move Y3 Relief S1

26) daselva: Discover Y2 S1 G1 S2

27) Mandrel: Attack G1S S1

28) daselva: Move Y1 Relief Mandrel

29) Mandrel: Attack Y1S Mandrel

30) daselva: Move Y2 S2 Mandrel

31) Mandrel: A Y2S Mandrel

32) daselva: Discover Y1 Daselva G3 S2

33) Mandrel: D Y1 Mandrel G1 Moment

34) daselva: Build Y3 S2

35) Mandrel: B Y3 S1

36) daselva: Move Y3 S2 Moment

37) Mandrel: T R1 B1 Mandrel

38) daselva: Sacrifice R1 Daselva
Attack Y1 Moment

39) Mandrel: M Y2 Mandrel Relief

40) daselva: Sacrifice Y3 Moment
Move Y1 Moment S1
Discover Y1 S2 B2 S3
Move Y1 S3 S1
Catastrophe S1 Y


41) Mandrel: D Y2 Relief G3 Calypso

42) daselva: Build Y1 Daselva

43) Mandrel: B Y1 Calypso

44) daselva: Discover Y2 Daselva R3 S2

45) Mandrel: B Y3 Relief

46) daselva: Build Y3 Daselva

47) Mandrel: M Y3 Relief S2

48) daselva: Discover Y2 S2 R1 S3

49) Mandrel: Build Y3 Relief

50) daselva: Discover Y3 Daselva R3 S4

51) Mandrel: Trade Y3 B3 Relief

52) daselva: Build Y3 Daselva

53) Mandrel: M B3 Relief Calypso

54) daselva: Trade Y1 B1 Daselva

55) Mandrel: S Y2 Calypso
Move B3 Calypso Daselva
Move Y3 S2 Daselva

56) daselva: Attack B3 Daselva

57) Mandrel: Sacrifice R2 Relief
Attack G3S Daselva
Attack Y3S Daselva

58) daselva: Attack G3 Daselva

59) Mandrel: S R2 Mandrel
Attack B3S Daselva
Attack G3S Daselva

60) daselva: Move Y3 S4 Daselva

61) Mandrel: Attack Y3S Daselva

	Mandrel: Thanks for the game.


18872)
Started: 2011.2.1, Ended: 2011.2.1
Participants: mathochist (S), du_mm_yy (N)
Winner: mathochist



19021)
Started: 2011.2.7, Ended: 2011.3.20
Participants: lorgar (S), du_mm_yy (W), scratchisthebest (N), Aristos (E)
Winner: lorgar

1) scratchisthebest: Homeworld B3 Y1 G3

2) Aristos: Homeworld B1 Y2 G3

3) lorgar: Homeworld Y3 B2 G3

4) du_mm_yy: Homeworld B3 Y2 G3

5) scratchisthebest: Build G1 Scratchisthebest

6) Aristos: Build G1 Aristos

7) lorgar: Build G1 Lorgar

8) du_mm_yy: Build G1 Du_mm_yy

9) scratchisthebest: Discover G3 Scratchisthebest B2 Traderjoes

10) Aristos: Trade G1 R1 Aristos

11) lorgar: Trade G1 R1 Lorgar

12) du_mm_yy: Trade G1 R1 Du_mm_yy

13) scratchisthebest: Trade G3 Y3 Traderjoes

14) Aristos: Build R1 Aristos

15) lorgar: Build G1 Lorgar

16) du_mm_yy: Build R1 Du_mm_yy

17) scratchisthebest: Build G1 Scratchisthebest

18) Aristos: Build G1 Aristos

19) lorgar: Build R2 Lorgar

20) du_mm_yy: Build G1 Du_mm_yy

21) scratchisthebest: Trade G1 B1 Scratchisthebest

22) Aristos: Build R2 Aristos

23) lorgar: Build R2 Lorgar

24) lorgar: Discover G1 Lorgar B1 Dummygrave

25) scratchisthebest: Build B1 Scratchisthebest

26) Aristos: Discover R2 Aristos G3 Weaponsdealer

27) lorgar: Trade R2 B2 Lorgar

28) Aristos: Build R2 Weaponsdealer

29) lorgar: Build G1 Dummygrave
	Aristos: Going to move?

30) Aristos: Trade R1 Y1 Aristos

31) lorgar: Trade G1 Y1 Dummygrave

32) Aristos: Build Y1 Aristos

33) lorgar: Discover Y1 Dummygrave G3 Marina
	scratchisthebest: oops... I forgot about this game, and then panicked remembering it. Lol

34) Aristos: Move Y1 Aristos Weaponsdealer

35) lorgar: Discover B2 Lorgar G1 Darkistari

36) Aristos: Move R2 Weaponsdealer Dummygrave

37) lorgar: Sacrifice G1 Dummygrave
Build B1 Darkistari

38) Aristos: Discover G3 Aristos Y3 Novanova
	Aristos: This is really hard to analyze with so many pieces for only two players!

39) lorgar: Build Y1 Marina

40) Aristos: Move G3 Novanova Traderjoes

41) lorgar: Move Y1 Marina Aristos

42) Aristos: Discover Y1 Aristos B3 Escapehatch

43) lorgar: Sacrifice R1 Lorgar
Attack R1E Aristos

44) Aristos: Sacrifice R2 Dummygrave
Attack Y1S Aristos
Attack R1S Aristos

45) lorgar: Trade B2 Y2 Darkistari

46) Aristos: Sacrifice R1 Aristos
Attack Y3N Traderjoes

47) lorgar: Build Y2 Marina
	Aristos: Ok, what's wrong with this move? Every time I type it, I get a message that there is no Y1 ship in the Aristos system.

sacrifice r2 dummygrave
attack y1 Aristos
attack r1 Aristos
	Aristos: The exact error message I get is, "The ship Y1 could not be found in the Aristos system."
	Aristos: I thought maybe canceling the call and redoing it might get an admin's attention.

48) Aristos: Trade Y1 R1 Aristos
	Aristos: Finally got someone to help explain the problem. I needed to use this command:

sacrifice r2 dummygrave
attack y1s Aristos
attack r1s Aristos 

Apparently that only applies in multiplayer games.

49) lorgar: Move Y2 Marina Aristos

50) Aristos: Sacrifice Y3 Traderjoes
Move G3 Traderjoes Escapehatch
Move G3 Escapehatch Aristos
Discover R2 Weaponsdealer G2 Smugglerscave

51) lorgar: Build Y1 Marina

52) Aristos: Build Y2 Weaponsdealer

53) lorgar: Build Y3 Darkistari

	Aristos: The arc of this game is inevitable. :-) Well played.
	lorgar: Thx


19106)
Started: 2011.2.11, Ended: 2011.3.27
Participants: sompm (S), ABabyEater (N)
Winner: sompm

	ABabyEater: homeworld star1



19020)
Started: 2011.2.12, Ended: 2011.3.3
Participants: mathochist (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G3 B2 Y3
	alexcobo: Hello. Have a good game!



19119)
Variants: "Hard time"
Started: 2011.2.13, Ended: 2011.2.28
Participants: TwoShort (S), goulo (N)
Winner: TwoShort

1) goulo: Homeworld G3 B2 Y3

2) TwoShort: Homeworld R1 B3 G3
	goulo: hi, have fun!

3) goulo: Build Y1 Goulo
	TwoShort: Howdy

4) TwoShort: Build G1 Twoshort

5) goulo: Trade Y1 G1 Goulo

6) TwoShort: Trade G1 Y1 Twoshort

7) goulo: Build Y1 Goulo

8) TwoShort: Build G1 Twoshort

9) goulo: Trade Y1 R1 Goulo

10) TwoShort: Build G1 Twoshort

11) goulo: Build G2 Goulo

12) TwoShort: Discover G1 Twoshort B2 Bluestar

13) goulo: Discover G2 Goulo R1 Rubeneto

14) TwoShort: Build G2 Bluestar

15) goulo: Sacrifice G1 Goulo
Build Y1 Goulo

16) TwoShort: Trade G2 R2 Bluestar

17) goulo: Build R2 Goulo

18) TwoShort: Build Y1 Twoshort

19) goulo: Build Y2 Goulo

20) TwoShort: Move Y1 Twoshort Bluestar

21) goulo: Move Y2 Goulo Rubeneto

22) TwoShort: Build Y2 Twoshort

23) goulo: Discover R2 Goulo B1 Safireto

24) TwoShort: Build G1 Bluestar

25) goulo: Build G2 Rubeneto

26) TwoShort: Discover G1 Bluestar Y3 Yolonda

27) goulo: Move Y1 Goulo Safireto

28) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluestar
Build G3 Yolonda
Build G3 Twoshort

29) goulo: Sacrifice G2 Rubeneto
Build Y2 Goulo
Build Y3 Safireto

30) TwoShort: Discover G2 Bluestar B1 Bluonia

31) goulo: Build G2 Rubeneto

32) TwoShort: Move G1 Yolonda Bluestar

33) goulo: Move Y3 Safireto Bluestar

34) TwoShort: Sacrifice Y2 Twoshort
Discover R2 Bluestar B3 Bluto
Discover Y1 Bluestar B1 Blutacular

35) goulo: Sacrifice R2 Safireto
Attack G1 Bluestar
Attack G1 Bluestar

36) TwoShort: Trade G3 R3 Twoshort

37) goulo: Build Y2 Bluestar

38) TwoShort: Sacrifice G3 Yolonda
Build G3 Bluonia
Build G3 Twoshort
Build Y3 Blutacular

39) goulo: Sacrifice Y2 Bluestar
Move G1 Bluestar Bluonia
Move G1 Bluestar Bluonia
Catastrophe Bluonia G

40) TwoShort: Move Y3 Blutacular Goulo

41) goulo: Attack Y3 Goulo

42) TwoShort: Move Y1 Blutacular Goulo
Catastrophe Goulo Yellow

43) goulo: Build R2 Goulo

44) TwoShort: Trade R3 Y3 Twoshort

45) goulo: Build G1 Rubeneto

46) TwoShort: Discover G1 Twoshort Y2 Yolonda

47) goulo: Move G2 Rubeneto Yolonda

48) TwoShort: Discover G1 Yolonda Y3 Yoyo
	TwoShort: Sorry to be slow; life has been busy and this game has been hard :)
	goulo: No problem about slow turns, that's the advantage of email/web instead of real time.
Although I'm not sure how hard it's really being for you - at least I feel like you're kicking my ass. :)
	TwoShort: I always regret it if I comment on a game in progress, because the game or my opinion changes immediately.  But I'd say this game is about even on material now; it's a hard game because the position is tricky, and I feel like I should have a move that pushes it over the edge to where I'm kicking your ass :)  But I can't come up with it, so either you'll manage to get out of the present tactical difficulty, or one of us will screw up.

49) goulo: Trade R2 Y2 Goulo

50) TwoShort: Build G1 Twoshort
	goulo: OK, I'm happy that at least I am not a complete pushover in any case. :)

51) goulo: Build Y1 Goulo

52) TwoShort: Discover Y1 Twoshort R2 D2

53) goulo: Move G2 Rubeneto D2

54) TwoShort: Sacrifice G1 Yoyo
Build Y3 Twoshort

55) goulo: Attack Y1 D2
	goulo: ah, yes - good one.

56) TwoShort: Trade G3 B3 Twoshort

57) goulo: Move Y3 Bluestar Bluto

58) TwoShort: Sacrifice Y3 Twoshort
Move B3 Twoshort D2
Move B3 D2 Rubeneto
Move B3 Rubeneto Goulo

59) goulo: Sacrifice R1 Goulo
Attack R2 Bluto

60) TwoShort: Trade Y3 R3 Twoshort

	goulo: Wow, tough one. Thanks very much for the game!
	TwoShort: Thanks for a great game!


19125)
Variants: "Hard time"
Started: 2011.2.14, Ended: 2011.3.2
Participants: shmil1 (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y3 B1 G3

2) shmil1: Homeworld G1 B2 Y3

3) ajo: Build G1 Ajo

4) shmil1: Build Y1 Shmil1

5) ajo: Build G1 Ajo

6) shmil1: Build Y1 Shmil1

7) ajo: Discover G1 Ajo B2 Alpha

8) shmil1: Discover Y1 Shmil1 G3 Zel

9) ajo: Build G2 Alpha

10) shmil1: Build Y1 Zel

11) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G2 Alpha
Build G3 Ajo

12) shmil1: Trade Y3 G3 Shmil1

13) ajo: Trade G2 Y2 Alpha

14) shmil1: Trade Y1 B1 Shmil1
	ajo: Sorry, shmil, but I may have to resign this game for real-world reasons. And it was going so well for me... :P

15) ajo: Trade G1 B1 Alpha

16) shmil1: Build B2 Shmil1

17) ajo: Sacrifice Y2 Alpha
Move B1 Alpha Zel
Move B1 Zel Shmil1
Catastrophe Shmil1 Blue

18) shmil1: Move Y1 Zel Alpha
	ajo: Okay, at this rate the game may be over before I need to resign anyway. ;)

19) ajo: Trade G3 Y3 Ajo

	ajo: Check.


19126)
Variants: "Hard time"
Started: 2011.2.14, Ended: 2011.3.18
Participants: SilentTitan (S), sompm (N)
Winner: SilentTitan

1) sompm: Homeworld B1 G3 Y3

2) SilentTitan: Homeworld R1 B2 G3

3) sompm: Build Y1 Sompm

4) SilentTitan: Build G1 Silenttitan

5) sompm: Build Y1 Sompm

6) SilentTitan: Trade G1 Y1 Silenttitan

7) sompm: Discover Y1 Sompm G2 Specifically

8) SilentTitan: Build Y2 Silenttitan

9) sompm: Build Y2 Specifically

10) SilentTitan: Discover Y1 Silenttitan G3 Discover

11) sompm: Discover Y2 Specifically B3 Potatoes

12) SilentTitan: Build G1 Silenttitan

13) sompm: Build Y2 Specifically

14) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Discover
Build Y3 Silenttitan
Build G1 Silenttitan

	SilentTitan: hey I have an Idea..... let's use up all the yellow in the first 8 turns.

	sompm: I like it.


19073)
Variants: "Sinister"
Started: 2011.2.14, Ended: 2011.3.18
Participants: lorgar (S), alexcobo (N), BlueIstari (E)
Winner: lorgar

1) alexcobo: Homeworld G3 B2 Y3

2) BlueIstari: Homeworld G2 B1 Y3
	alexcobo: Hello! Good gaming...

3) lorgar: Homeworld B3 Y1 G3

4) alexcobo: Build Y1 Alexcobo

5) BlueIstari: Build Y1 Blueistari

6) lorgar: Build G1 Lorgar
	BlueIstari: Good gaming to all

7) alexcobo: Trade Y1 R1 Alexcobo

8) BlueIstari: Trade Y3 R3 Blueistari

9) lorgar: Trade G1 R1 Lorgar

10) alexcobo: Discover R1 Alexcobo G1 Alba

11) BlueIstari: Build R1 Blueistari

12) lorgar: Build G1 Lorgar

13) alexcobo: Build Y1 Alexcobo

14) BlueIstari: Discover R1 Blueistari G3 Bilbo

15) lorgar: Discover R1 Lorgar G2 Amadis

16) alexcobo: Trade Y1 G1 Alexcobo

17) BlueIstari: Build Y1 Blueistari

18) lorgar: Trade G1 B1 Lorgar

19) alexcobo: Build G1 Alexcobo

20) BlueIstari: Move Y1 Blueistari Bilbo

21) lorgar: Move B1 Lorgar Amadis

22) alexcobo: Discover G1 Alexcobo B1 Ordo

23) BlueIstari: Build Y1 Blueistari

24) lorgar: Build B1 Amadis

25) alexcobo: Build Y2 Alexcobo

26) BlueIstari: Build Y2 Bilbo

27) lorgar: Build B2 Amadis

28) alexcobo: Build G1 Ordo

29) BlueIstari: Build Y2 Blueistari

30) lorgar: Trade B2 Y2 Amadis

31) alexcobo: Build G2 Alexcobo

32) BlueIstari: Trade Y2 B2 Blueistari

33) lorgar: Build Y2 Amadis

34) alexcobo: Trade G2 R2 Alexcobo

35) BlueIstari: Trade Y1 R1 Blueistari

36) lorgar: Build R2 Amadis

37) alexcobo: Build R2 Alba

38) BlueIstari: Build B2 Blueistari

39) lorgar: Discover Y2 Amadis G3 Mordekaiser

40) alexcobo: Build R2 Alexcobo

41) BlueIstari: Discover Y1 Bilbo G2 Oblib

42) lorgar: Move R1 Amadis Mordekaiser

43) alexcobo: Build G2 Ordo

44) BlueIstari: Build R3 Bilbo

45) lorgar: Build R3 Mordekaiser

46) alexcobo: Build R3 Alba

47) BlueIstari: Sacrifice Y2 Bilbo
Move R3 Bilbo Oblib
Move R3 Oblib Lorgar

48) lorgar: Sacrifice R1 Mordekaiser
Attack R3E Lorgar

49) alexcobo: Move Y2 Alexcobo Alba

50) BlueIstari: Build R1 Bilbo

51) lorgar: Sacrifice Y2 Amadis
Move B1 Amadis Mordekaiser
Move B1 Mordekaiser Blueistari
Catastrophe Blueistari Blue

52) alexcobo: Sacrifice Y2 Alba
Move R1 Alba Blueistari
Move R2 Alba Blueistari
Catastrophe Blueistari R

53) BlueIstari: Move Y1 Blueistari Bilbo

54) alexcobo: Sacrifice G2 Ordo
Build Y1 Alexcobo
Build Y2 Alexcobo

55) lorgar: Build Y2 Mordekaiser

56) alexcobo: Sacrifice Y2 Alexcobo
Move R2 Alexcobo Ordo
Move R2 Ordo Bilbo

57) lorgar: Sacrifice Y2 Mordekaiser
Move R3 Mordekaiser Ordo
Move R2 Amadis Bilbo
Catastrophe Bilbo Red

58) alexcobo: Sacrifice G1 Ordo
Build Y2 Alexcobo

59) lorgar: Build Y2 Mordekaiser

60) alexcobo: Sacrifice Y1 Alexcobo
Move R3 Alba Mordekaiser

61) lorgar: Sacrifice Y2 Mordekaiser
Move Y2 Mordekaiser Ordo
Pass

62) alexcobo: Sacrifice G1 Ordo
Build G1 Alexcobo

63) lorgar: Trade Y2 G2 Ordo

64) alexcobo: Discover Y2 Alexcobo R1 Hot

65) lorgar: Build G1 Ordo

66) alexcobo: Move Y2 Hot Mordekaiser

67) lorgar: Build R1 Ordo

68) alexcobo: Move R3 Mordekaiser Oblib

69) lorgar: Trade G2 Y2 Ordo

70) alexcobo: Attack Y1E Oblib

71) lorgar: Move G1 Ordo Alexcobo
Catastrophe Alexcobo Green

72) alexcobo: Build Y1 Oblib

73) lorgar: Trade R1 B1 Ordo
	alexcobo: I completly missed that!

74) alexcobo: Build Y2 Mordekaiser

75) lorgar: Trade B1 G1 Ordo

76) alexcobo: Build R1 Oblib

77) lorgar: Build Y2 Ordo

78) alexcobo: Sacrifice Y2 Mordekaiser
Move Y1 Oblib Ordo
Move Y1 Oblib Ordo
Catastrophe Ordo Y

79) lorgar: Build G1 Ordo

80) alexcobo: Build R1 Oblib
	lorgar: and me this one. Guess we're even now =)

81) lorgar: Trade G1 Y1 Ordo

82) alexcobo: Build Y1 Mordekaiser

83) lorgar: Build Y2 Ordo

84) alexcobo: Sacrifice Y1 Mordekaiser
Move R1 Oblib Bilbo

85) lorgar: Build B1 Amadis

86) alexcobo: Attack Y1E Bilbo

87) lorgar: Sacrifice Y1 Ordo
Discover B1 Amadis G3 Marchesnoires

88) alexcobo: Build R1 Bilbo

89) lorgar: Build B1 Marchesnoires

90) alexcobo: Trade R2 G2 Alexcobo

91) lorgar: Build B2 Marchesnoires

92) alexcobo: Build G1 Alexcobo

93) lorgar: Trade R3 Y3 Lorgar

94) alexcobo: Build Y1 Mordekaiser

95) lorgar: Sacrifice Y3 Lorgar
Move B1 Marchesnoires Alexcobo
Move B1 Marchesnoires Alexcobo
Move B2 Marchesnoires Alexcobo
Catastrophe Alexcobo Blue



18980)
Started: 2011.2.14, Ended: 2011.2.16
Participants: TwoShort (S), lorgar (N)
Winner: TwoShort

1) lorgar: Homeworld Y1 B2 G3

2) TwoShort: Homeworld R1 B3 G3

3) lorgar: Build G1 Lorgar

4) TwoShort: Build G1 Twoshort

5) lorgar: Discover G1 Lorgar B3 Camille

6) TwoShort: Trade G1 Y1 Twoshort

7) lorgar: Build G1 Lorgar

8) TwoShort: Build Y1 Twoshort

9) lorgar: Build G1 Lorgar

10) TwoShort: Build G2 Twoshort

11) lorgar: Build G2 Camille

12) TwoShort: Discover G2 Twoshort Y2 Yolonda

13) lorgar: Trade G2 Y2 Camille

14) TwoShort: Build Y2 Twoshort

15) lorgar: Build Y3 Camille

16) TwoShort: Sacrifice Y2 Twoshort
Discover G2 Yolonda B3 Bluebird
Move G2 Bluebird Lorgar
Catastrophe Lorgar Green
	lorgar: thanks.



19144)
Variants: "Hard time"
Started: 2011.2.16, Ended: 2011.3.20
Participants: lorgar (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld G3 B1 Y3

2) lorgar: Homeworld G1 Y2 B3

3) Jesse: Build Y1 Jesse

4) lorgar: Build B1 Lorgar

5) Jesse: Discover Y1 Jesse G2 Grass

6) lorgar: Discover B1 Lorgar G3 Amarante

7) Jesse: Build Y1 Jesse

8) lorgar: Build B1 Lorgar

9) Jesse: Build Y1 Grass

10) lorgar: Build B2 Amarante

11) Jesse: Build Y2 Jesse

12) lorgar: Trade B2 Y2 Amarante

13) Jesse: Move Y1 Grass Amarante

14) lorgar: Sacrifice Y2 Amarante
Move B1 Amarante Grass
Move B1 Grass Jesse

15) Jesse: Trade Y2 R2 Jesse

16) lorgar: Build B2 Lorgar

17) Jesse: Build Y2 Amarante

18) lorgar: Trade B2 R2 Lorgar

19) Jesse: Attack B1 Jesse

20) lorgar: Move B3 Lorgar Amarante

21) Jesse: Build Y2 Amarante

22) lorgar: Sacrifice R2 Lorgar
Attack Y2N Amarante
Attack Y2N Amarante

23) Jesse: Build Y3 Amarante
Catastrophe Amarante Y

24) lorgar: Build B2 Amarante

25) Jesse: Move B1 Jesse Grass

26) lorgar: Trade B2 Y2 Amarante

27) Jesse: Build B2 Grass

28) lorgar: Build B2 Lorgar

29) Jesse: Discover B2 Grass G3 Bud

30) lorgar: Trade B1 R1 Lorgar

31) Jesse: Discover Y1 Jesse G2 Leaf

32) lorgar: Build Y1 Amarante

33) Jesse: Build Y2 Jesse

34) lorgar: Trade Y1 R1 Amarante

35) Jesse: Build Y1 Leaf

36) lorgar: Build Y3 Amarante

37) Jesse: Build Y3 Grass

38) lorgar: Move Y2 Amarante Leaf

39) Jesse: Sacrifice Y2 Jesse
Move Y3 Grass Bud
Move Y3 Bud Lorgar

40) lorgar: Sacrifice Y2 Leaf
Move Y3 Amarante Lorgar
Move B3 Amarante Lorgar

41) Jesse: Sacrifice R2 Jesse
Attack Y3 Lorgar
Attack B3 Lorgar

42) lorgar: Trade B2 Y2 Lorgar
Catastrophe Lorgar Yellow

43) Jesse: Trade B2 R2 Bud

44) lorgar: Build R1 Lorgar

45) Jesse: Sacrifice R2 Bud
Attack R1 Lorgar
Attack R1 Lorgar

	Jesse: Thanks for the game.  I think the main lesson here is not to leave your homeworld undefended.
	lorgar: it is. I tried this against twoshort, got caulked pretty fast ^^


19159)
Started: 2011.2.17, Ended: 2011.2.21
Participants: TwoShort (S), lorgar (N)
Winner: TwoShort

1) lorgar: Homeworld B1 Y3 G3

2) TwoShort: Homeworld B1 G2 B3 *

3) lorgar: Build G1 Lorgar

4) TwoShort: Build B1 Twoshort

5) lorgar: Discover G1 Lorgar B2 Amarante

6) TwoShort: Trade B3 Y3 Twoshort

7) lorgar: Build G1 Amarante

8) TwoShort: Build B2 Twoshort

9) lorgar: Trade G1 Y1 Amarante

10) TwoShort: Discover B2 Twoshort G3 Grogar

11) lorgar: Build G1 Lorgar

12) TwoShort: Build B2 Twoshort

13) lorgar: Build G1 Amarante

14) TwoShort: Build B3 Grogar

15) lorgar: Discover G1 Amarante B3 Onregardelefilm

16) TwoShort: Build B3 Grogar

17) lorgar: Build G2 Onregardelefilm

18) TwoShort: Trade B3 R3 Grogar

19) lorgar: Trade G2 Y2 Onregardelefilm

20) TwoShort: Sacrifice Y3 Twoshort
Discover B3 Grogar G2 Gameover
Move B3 Gameover Lorgar
Move R3 Grogar Twoshort

21) lorgar: Pass

22) TwoShort: Sacrifice R3 Twoshort
Attack G3 Lorgar
Attack G1 Lorgar
Pass



18990)
Started: 2011.2.17, Ended: 2011.3.1
Participants: ts52 (S), lorgar (N)
Winner: ts52

1) lorgar: Homeworld B3 Y1 G3

2) ts52: Homeworld B1 Y2 G3

3) lorgar: Build G1 Lorgar
	ts52: have a good game!

4) ts52: Build G1 Ts52

5) lorgar: Trade G1 Y1 Lorgar
	lorgar: wish you the same.

6) ts52: Trade G1 B1 Ts52

7) lorgar: Build G1 Lorgar

8) ts52: Discover B1 Ts52 G3 Kermit

9) lorgar: Discover Y1 Lorgar G2 Captainharlock

10) ts52: Build B1 Kermit

11) lorgar: Trade G1 Y1 Lorgar

12) ts52: Build B2 Kermit

13) lorgar: Build Y2 Captainharlock

14) ts52: Trade B2 Y2 Kermit

15) lorgar: Move Y1 Captainharlock Kermit

16) ts52: Trade B1 R1 Kermit

17) lorgar: Build Y3 Captainharlock

18) ts52: Attack Y1 Kermit

19) lorgar: Discover Y3 Captainharlock R3 Ultramar

20) ts52: Move Y1 Kermit Captainharlock

21) lorgar: Trade Y1 R1 Lorgar

22) ts52: Build B1 Kermit

23) lorgar: Move R1 Lorgar Captainharlock

24) ts52: Discover Y1 Captainharlock G1 Robin

25) lorgar: Build G1 Lorgar

26) ts52: Build B2 Kermit

27) lorgar: Trade G1 Y1 Lorgar

28) ts52: Build Y3 Kermit

29) lorgar: Build Y3 Captainharlock

30) ts52: Trade Y3 R3 Kermit

31) lorgar: Trade Y1 R1 Lorgar

32) ts52: Move B2 Kermit Robin

33) lorgar: Move Y3 Captainharlock Robin

34) ts52: Move R3 Kermit Captainharlock

35) lorgar: Discover Y2 Captainharlock R3 Snoop

36) ts52: Build B2 Robin

37) lorgar: Sacrifice R1 Captainharlock
Attack B2S Robin

38) ts52: Move Y1 Robin Captainharlock

39) lorgar: Build R1 Lorgar

40) ts52: Build R2 Kermit

41) lorgar: Move Y3 Robin Kermit

42) ts52: Trade B1 Y1 Kermit

43) lorgar: Move Y3 Kermit Robin

44) ts52: Build Y3 Captainharlock

45) lorgar: Sacrifice R1 Lorgar
Attack B2S Robin

46) ts52: Build G1 Ts52

47) lorgar: Trade B2 R2 Robin

48) ts52: Move R1 Kermit Captainharlock

49) lorgar: Build R1 Robin

50) ts52: Move R3 Captainharlock Kermit

51) lorgar: Sacrifice Y2 Snoop
Move R1 Robin Kermit
Move R2 Robin Kermit
Catastrophe Kermit Red

52) ts52: Build Y2 Kermit

53) lorgar: Move Y3 Robin Kermit
Catastrophe Kermit Yellow

54) ts52: Move Y1 Captainharlock Kermit

55) lorgar: Build B1 Robin

56) ts52: Build B2 Kermit

57) lorgar: Trade B1 Y1 Robin

58) ts52: Build Y2 Captainharlock

59) lorgar: Build B1 Robin

60) ts52: Discover B2 Kermit G2 Oscar

61) lorgar: Discover B1 Robin Y3 Mnemosine
	lorgar: wow 31move! I got better thanks to your teachings^^

62) ts52: Build Y2 Kermit

63) lorgar: Build G1 Lorgar

64) ts52: Trade Y2 R2 Kermit

65) lorgar: Move Y3 Ultramar Oscar

66) ts52: Build Y2 Kermit

67) lorgar: Sacrifice B1 Mnemosine
Pass

68) ts52: Discover G1 Ts52 Y3 Bigbird

69) lorgar: Build R1 Lorgar

70) ts52: Discover Y1 Kermit B2 Gonzo

71) lorgar: Move Y3 Oscar Kermit

72) ts52: Sacrifice G1 Bigbird
Build Y3 Gonzo

73) lorgar: Sacrifice R1 Lorgar
Attack R2S Kermit

74) ts52: Build G1 Ts52

75) lorgar: Trade B2 G2 Robin

76) ts52: Move B1 Kermit Captainharlock

77) lorgar: Attack Y2S Kermit

78) ts52: Build B1 Captainharlock

79) lorgar: Move Y2 Kermit Captainharlock

80) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Oscar
Build B3 Captainharlock

81) lorgar: Move Y1 Robin Captainharlock
Catastrophe Captainharlock Yellow

82) ts52: Trade B3 Y3 Captainharlock

83) lorgar: Move Y3 Kermit Oscar

84) ts52: Sacrifice Y3 Gonzo
Move B2 Oscar Lorgar
Move B2 Oscar Lorgar
Move B1 Captainharlock Lorgar
Catastrophe Lorgar Blue

85) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build R1 Kermit
Build R2 Lorgar

86) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Gonzo
Build Y2 Captainharlock

87) lorgar: Move G3 Lorgar Kermit

88) ts52: Sacrifice Y3 Captainharlock
Move Y2 Captainharlock Lorgar
Move Y1 Gonzo Lorgar
Move Y1 Gonzo Lorgar
Catastrophe Lorgar Yellow

	lorgar: nice. I saw it but could not do a thing.
	ts52: Thanks for the game!
	ts52: yeah, once the doomsday machine starts rolling, it can be tough to stop.


19167)
Variants: "Hard time"
Started: 2011.2.17, Ended: 2011.2.20
Participants: Subhan64 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

	ts52: Have a good game!


19166)
Variants: "Unrated"
Started: 2011.2.18, Ended: 2011.2.23
Participants: b5mith (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld R1 B2 G3

2) b5mith: Homeworld R1 B3 G3

3) Remneb: Build G1 Remneb



19179)
Started: 2011.2.18, Ended: 2011.3.5
Participants: jsydik (S), Knightsabre (N)
Winner: jsydik

1) Knightsabre: Homeworld B3 G1 Y3

2) jsydik: Homeworld R3 B2 G3

3) Knightsabre: Build Y1 Knightsabre

4) jsydik: Build G1 Jsydik

5) Knightsabre: Trade Y1 B1 Knightsabre

6) jsydik: Trade G1 Y1 Jsydik

7) Knightsabre: Build B1 Knightsabre

8) jsydik: Build Y1 Jsydik

9) Knightsabre: Trade B1 G1 Knightsabre

10) jsydik: Discover Y1 Jsydik Y1 J2

11) Knightsabre: Discover G1 Knightsabre R2 Moria

12) jsydik: Discover Y1 J2 G2 J3

13) Knightsabre: Build G1 Moria

14) jsydik: Build G2 Jsydik

15) Knightsabre: Build G2 Moria

16) jsydik: Move Y1 J3 Knightsabre

17) Knightsabre: Build B1 Knightsabre

18) jsydik: Sacrifice G2 Jsydik
Build Y1 Knightsabre
Build Y2 Knightsabre
Catastrophe Knightsabre Y

19) Knightsabre: Trade B1 Y1 Knightsabre

20) jsydik: Build G2 Jsydik

21) Knightsabre: Build B1 Knightsabre

22) jsydik: Discover G2 Jsydik Y1 J1

23) Knightsabre: Move B1 Knightsabre Moria

24) jsydik: Move G2 J1 Moria
Catastrophe Moria G

25) Knightsabre: Build B1 Knightsabre

26) jsydik: Build G1 Jsydik

27) Knightsabre: Move B1 Knightsabre Moria

28) jsydik: Discover Y1 Jsydik Y1 J2

29) Knightsabre: Trade B1 G1 Moria

30) jsydik: Move Y1 J2 Jsydik

31) Knightsabre: Trade B1 Y1 Moria

32) jsydik: Discover G1 Jsydik R1 J2

33) Knightsabre: Move G1 Moria J2

34) jsydik: Attack G1N J2

35) Knightsabre: Move Y1 Moria Knightsabre

36) jsydik: Build Y2 Jsydik

37) Knightsabre: Build Y2 Knightsabre

38) jsydik: Sacrifice Y2 Jsydik
Discover G1 J2 Y2 J3
Move G1 J3 Knightsabre

39) Knightsabre: Trade Y1 R1 Knightsabre

40) jsydik: Sacrifice G3 Jsydik
Build G2 Knightsabre
Build G2 Knightsabre
Build G2 J2
Catastrophe Knightsabre G

41) Knightsabre: Trade Y2 G2 Knightsabre

42) jsydik: Sacrifice Y1 Jsydik
Move G2 J2 Jsydik

43) Knightsabre: Build R1 Knightsabre

44) jsydik: Build G1 Jsydik

45) Knightsabre: Move G2 Knightsabre J2

46) jsydik: Trade G1 Y1 Jsydik

47) Knightsabre: Trade R1 G1 Knightsabre

48) jsydik: Build G1 J2

49) Knightsabre: Build G2 Knightsabre

50) jsydik: Build G3 Jsydik

51) Knightsabre: Build G3 Knightsabre

52) jsydik: Build G3 J2
Catastrophe J2 G

53) Knightsabre: Build Y1 Knightsabre

54) jsydik: Trade G2 B2 Jsydik

55) Knightsabre: Discover G1 Knightsabre G2 Lorien

56) jsydik: Build Y2 Jsydik

57) Knightsabre: Move Y1 Knightsabre Lorien

58) jsydik: Sacrifice Y2 Jsydik
Discover B2 Jsydik B1 J1
Move B2 J1 Knightsabre

59) Knightsabre: Attack B2 Knightsabre

60) jsydik: Build Y2 Jsydik

61) Knightsabre: Move B2 Knightsabre Lorien

62) jsydik: Trade Y2 B2 Jsydik

63) Knightsabre: Discover G1 Lorien B3 Fangorn

64) jsydik: Discover B2 Jsydik G1 J2

65) Knightsabre: Build Y2 Lorien

66) jsydik: Build B1 J2

67) Knightsabre: Sacrifice Y2 Lorien
Move B1 Knightsabre J2
Move B2 Lorien J2
Catastrophe J2 Blue

68) jsydik: Build Y2 Jsydik

69) Knightsabre: Build Y2 Lorien

70) jsydik: Trade Y2 B2 Jsydik

71) Knightsabre: Move Y2 Lorien Fangorn

72) jsydik: Discover B2 Jsydik G1 Dale

73) Knightsabre: Build Y2 Fangorn

74) jsydik: Build B1 Dale

75) Knightsabre: Trade G3 Y3 Knightsabre

76) jsydik: Build Y2 Jsydik

77) Knightsabre: Trade Y1 B1 Knightsabre

78) jsydik: Sacrifice Y2 Jsydik
Move B2 Dale Knightsabre
Move B1 Dale Knightsabre
Catastrophe Knightsabre Blue



18951)
Variants: "Hard time"
Started: 2011.2.19, Ended: 2011.3.13
Participants: SilentTitan (S), daselva (N)
Winner: SilentTitan

1) daselva: Homeworld B1 R2 G3

2) SilentTitan: Homeworld R3 B2 G3

3) daselva: Build G1 Daselva

4) SilentTitan: Build G1 Silenttitan

5) daselva: Trade G1 Y1 Daselva

6) SilentTitan: Trade G1 Y1 Silenttitan

7) daselva: Build G1 Daselva

8) SilentTitan: Build G1 Silenttitan

9) daselva: Trade G1 R1 Daselva

10) SilentTitan: Build G1 Silenttitan

11) daselva: Build R1 Daselva

12) SilentTitan: Trade G1 B1 Silenttitan

13) daselva: Discover R1 Daselva G3 S1

14) SilentTitan: Discover B1 Silenttitan Y1 Decoy

15) daselva: Build R1 S1

16) SilentTitan: Build Y2 Silenttitan

17) daselva: Build Y2 Daselva

18) SilentTitan: Discover Y2 Silenttitan B1 Trade

19) daselva: Build R2 S1

20) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Silenttitan
Build Y3 Trade
Build Y3 Silenttitan

21) daselva: Build Y3 Daselva

22) SilentTitan: Sacrifice Y2 Silenttitan
Move Y2 Trade S1
Move Y2 S1 Daselva
Catastrophe Daselva Yellow

23) daselva: Build R2 Daselva

24) SilentTitan: Sacrifice G1 Silenttitan
Build Y1 Trade

25) daselva: Trade R2 Y2 Daselva

26) SilentTitan: Trade Y3 G3 Silenttitan

27) daselva: Sacrifice Y2 Daselva
Discover R2 S1 G2 S2
Move R2 S2 Decoy

28) SilentTitan: Sacrifice B1 Decoy
Trade Y3 R3 Trade

29) daselva: Build G1 Daselva

30) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Trade
Build R3 Trade
Build Y2 Silenttitan



19181)
Variants: "Hard time"
Started: 2011.2.19, Ended: 2011.3.8
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R3 B2 G3

2) lorgar: Homeworld G2 Y1 B3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build B1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Trade B1 G1 Lorgar

7) SilentTitan: Build Y1 Silenttitan

8) lorgar: Discover G1 Lorgar Y3 Adamante

9) SilentTitan: Build Y2 Silenttitan

10) lorgar: Build G1 Adamante

11) SilentTitan: Discover Y1 Silenttitan G1 Discover

12) lorgar: Discover G1 Adamante B1 Amarante

13) SilentTitan: Trade Y2 R2 Silenttitan

14) lorgar: Build G2 Amarante

15) SilentTitan: Move R2 Silenttitan Amarante

16) lorgar: Trade B3 G3 Lorgar

17) SilentTitan: Attack G2 Amarante South

18) lorgar: Build G2 Adamante

19) SilentTitan: Sacrifice Y1 Discover
Discover G2 Amarante Y3 Dos

20) lorgar: Discover G1 Adamante B1 Mored

21) SilentTitan: Attack G1 Amarante South

22) lorgar: Discover G2 Adamante B1 Theodred

23) SilentTitan: Build R1 Amarante

24) lorgar: Build G1 Theodred

25) SilentTitan: Build G3 Dos

26) lorgar: Trade G2 Y2 Theodred

27) SilentTitan: Move G3 Dos Lorgar

28) lorgar: Build G2 Lorgar
Catastrophe Lorgar Green

	lorgar: thx for the game
	SilentTitan: thank you


19191)
Variants: "Hard time"
Started: 2011.2.20, Ended: 2011.2.22
Participants: alexcobo (S), Gidaio (N)
Winner: alexcobo

1) Gidaio: Homeworld Y3 B1 G3

2) alexcobo: Homeworld G3 B2 Y3

3) Gidaio: Build G1 Gidaio

4) alexcobo: Build Y1 Alexcobo

5) Gidaio: Build G1 Gidaio

6) alexcobo: Build Y1 Alexcobo

7) Gidaio: Discover G1 Gidaio Y2 Gamma

8) alexcobo: Trade Y1 G1 Alexcobo

9) Gidaio: Sacrifice G3 Gidaio
Build G2 Gidaio
Build G2 Gidaio
Build G2 Gamma

10) alexcobo: Sacrifice Y3 Alexcobo
Discover G1 Alexcobo R1 Doom
Move G1 Doom Gamma
Move G1 Gamma Gidaio
Catastrophe Gidaio G

	alexcobo: Thanks for the game!
	Gidaio: ...ouch.
Good game. Should have seen that coming... *smacks himself in face*


19212)
Started: 2011.2.21, Ended: 2011.3.1
Participants: TwoShort (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y2 G3



18983)
Variants: "Sinister, Hard time"
Started: 2011.2.23, Ended: 2011.6.7
Participants: lorgar (S), Mandrel (W), goulo (N), alexcobo (E)
Winner: goulo

1) goulo: Homeworld R3 B2 G3

2) alexcobo: Homeworld G3 B2 Y3
	goulo: hi all!

3) lorgar: Homeworld Y1 G2 B3

4) Mandrel: Homeworld B3 R2 G3

5) goulo: Build G1 Goulo
	Mandrel: Hey! Enjoy the game!

6) alexcobo: Build Y1 Alexcobo

7) lorgar: Build B1 Lorgar
	alexcobo: Good gaming!
	lorgar: gl hf!

8) Mandrel: Build G1 Mandrel

9) goulo: Trade G1 Y1 Goulo

10) alexcobo: Build Y1 Alexcobo

11) lorgar: Trade B1 Y1 Lorgar

12) Mandrel: Trade G3 Y3 Mandrel

13) goulo: Build Y2 Goulo

14) alexcobo: Trade Y1 R1 Alexcobo

15) lorgar: Build B1 Lorgar

16) Mandrel: Build G1 Mandrel

17) goulo: Trade Y1 G1 Goulo

18) alexcobo: Build R1 Alexcobo

19) lorgar: Trade B1 R1 Lorgar

20) Mandrel: T G1 R1 Mandrel

21) goulo: Build Y1 Goulo

22) alexcobo: Discover R1 Alexcobo G1 One

23) lorgar: Build B1 Lorgar

24) Mandrel: Build G1 Mandrel

25) goulo: Trade Y2 R2 Goulo

26) alexcobo: Build R1 Alexcobo

27) lorgar: Build R2 Lorgar

28) Mandrel: Trade G1 B1 Mandrel

29) goulo: Move R2 Goulo One

30) alexcobo: Sacrifice Y1 Alexcobo
Discover R1 One G3 Three

31) lorgar: Move R2 Lorgar Three

32) Mandrel: Discover R1 Mandrel G1 Hall

33) goulo: Build Y1 Goulo

34) alexcobo: Build Y1 Alexcobo

35) lorgar: Discover Y1 Lorgar G3 Four

36) Mandrel: Build R2 Hall

37) goulo: Move Y1 Goulo One

38) alexcobo: Trade R1 G1 Alexcobo

39) lorgar: Attack R1E Three

40) Mandrel: Build Y2 Mandrel

41) goulo: Discover G1 Goulo B1 Safireto

42) alexcobo: Build G2 Alexcobo

43) lorgar: Sacrifice B1 Lorgar
Trade R1 B1 Three

44) Mandrel: Move Y2 Mandrel Hall

45) goulo: Build Y2 One

46) alexcobo: Build Y2 Alexcobo

47) lorgar: Trade R2 Y2 Three

48) Mandrel: Build G2 Mandrel

49) goulo: Move Y1 One Alexcobo
Catastrophe Alexcobo Y

50) alexcobo: Build R1 Alexcobo

51) lorgar: Build B1 Three

52) Mandrel: Move B1 Mandrel Hall

53) goulo: Build G2 Goulo

54) alexcobo: Trade G1 Y1 Alexcobo

55) lorgar: Trade B1 R1 Three

56) Mandrel: Build B1 Hall

57) goulo: Build R2 One

58) alexcobo: Build R2 Alexcobo

59) lorgar: Build R3 Three

60) Mandrel: Trade R1 G1 Hall

61) goulo: Build G2 Safireto

62) alexcobo: Build G3 Alexcobo

63) lorgar: Move R3 Three Safireto

64) Mandrel: Discover G1 Mandrel B1 Sixth

65) goulo: Sacrifice Y2 One
Move G1 Safireto Alexcobo
Discover G2 Safireto Y3 Citronego
Catastrophe Alexcobo G

66) alexcobo: Trade R1 G1 Alexcobo

67) lorgar: Build B2 Three

68) Mandrel: Build G2 Sixth

69) goulo: Build G3 Citronego

70) alexcobo: Build G3 Alexcobo

71) lorgar: Build R1 Three

72) Mandrel: Build Y1 Hall

73) goulo: Build Y2 Goulo

74) alexcobo: Build Y2 Alexcobo

75) lorgar: Sacrifice Y2 Three
Move R3 Safireto Four
Move R3 Four Sixth

76) Mandrel: Sacrifice G2 Sixth
Build G2 Mandrel
Build Y2 Mandrel

77) goulo: Move Y1 Goulo One

78) alexcobo: Move R2 Alexcobo Four

79) lorgar: Attack G1W Sixth

80) Mandrel: Trade G2 B2 Mandrel

81) goulo: Sacrifice G2 Citronego
Build Y2 Goulo
Build Y3 One

82) alexcobo: Attack Y1S Four

83) lorgar: Trade R3 Y3 Sixth

84) Mandrel: Build G2 Mandrel

85) goulo: Discover R2 One Y3 Sunego

86) alexcobo: Build G2 Alexcobo

87) lorgar: Move G1 Sixth Alexcobo
Catastrophe Alexcobo Green

88) Mandrel: Discover B2 Mandrel G1 Good

89) goulo: Build G1 Citronego

90) alexcobo: Trade Y2 G2 Alexcobo

91) lorgar: Trade Y3 G3 Sixth

92) Mandrel: Build B1 Good

93) goulo: Sacrifice Y2 Goulo
Move G1 Citronego Hall
Move G2 Goulo Hall
Catastrophe Hall G

94) alexcobo: Build G1 Alexcobo

95) lorgar: Trade B1 Y1 Three

96) Mandrel: Move Y2 Mandrel Good

97) goulo: Build Y2 Goulo

98) alexcobo: Build Y2 Four

99) lorgar: Build G1 Sixth

100) Mandrel: Build Y2 Good

101) goulo: Discover Y1 One Y3 Polenego

102) alexcobo: Trade Y1 B1 Alexcobo

103) lorgar: Sacrifice Y1 Three
Move G3 Sixth Sunego

104) Mandrel: Trade B2 R2 Good

105) goulo: Discover R2 Sunego Y1 Citroneto

106) alexcobo: Move Y1 Four Alexcobo

107) lorgar: Build G1 Sunego

108) Mandrel: Build B1 Good

109) goulo: Build G2 Citronego

110) alexcobo: Build Y1 Four

111) lorgar: Sacrifice G3 Sunego
Build G3 Sunego
Build R1 Three
Build R3 Lorgar

112) Mandrel: Build R3 Good

113) goulo: Sacrifice G3 Citronego
Build G3 Citronego
Build R3 Citroneto
Build R3 One

114) alexcobo: Move R1 Alexcobo Three
Catastrophe Three R

115) lorgar: Move R1 Lorgar Sunego

116) Mandrel: Move R3 Good Four

117) goulo: Discover G3 Citronego B1 Safireto

118) alexcobo: Sacrifice G2 Alexcobo
Build R1 Four
Build R1 Four
Catastrophe Four R

119) lorgar: Build B2 Lorgar

120) Mandrel: Trade G2 B2 Mandrel

121) goulo: Move R2 One Alexcobo

122) alexcobo: Build G2 Alexcobo

123) lorgar: Trade B2 G2 Lorgar

124) Mandrel: Sacrifice Y2 Good
Move B1 Good Alexcobo
Move B1 Good Alexcobo
Catastrophe Alexcobo Blue

125) goulo: Build G1 Citronego
	goulo: and then there were three...

126) lorgar: Trade G2 Y2 Lorgar

127) Mandrel: Build R1 Good

128) goulo: Move R3 Citroneto Four

129) lorgar: Build B1 Three

130) Mandrel: Build G2 Mandrel

131) goulo: Attack Y2E Four

132) lorgar: Move Y2 Lorgar Three

133) Mandrel: Trade G2 R2 Mandrel

134) goulo: Build G2 Safireto

135) lorgar: Trade B1 R1 Three

136) Mandrel: Build G2 Mandrel

137) goulo: Attack Y1E Four

138) lorgar: Discover B2 Three Y1 Thirteenth

139) Mandrel: Discover R2 Mandrel B1 Quick

140) goulo: Move Y1 Four Lorgar

141) lorgar: Attack Y1N Lorgar

142) Mandrel: Move G2 Mandrel Quick

143) goulo: Sacrifice Y3 One
Move Y1 Polenego Lorgar
Move Y2 Four Lorgar
Move G1 Citronego Lorgar
Catastrophe Lorgar Y

144) lorgar: Sacrifice Y2 Three
Move G3 Sunego Safireto
Move G1 Sunego Safireto
Catastrophe Safireto Green

145) Mandrel: Build Y1 Mandrel

146) goulo: Sacrifice G2 Citronego
Build G1 Lorgar
Build G2 Lorgar
Catastrophe Lorgar G
	goulo: good epic game, thanks all! 



19227)
Variants: "Hard time"
Started: 2011.2.24, Ended: 2011.3.13
Participants: Subhan64 (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G3 B2 Y3

2) Subhan64: Homeworld B1 Y2 G3

3) alexcobo: Build Y1 Alexcobo

4) Subhan64: Build G1 Subhan64

5) alexcobo: Build Y1 Alexcobo

6) Subhan64: Build G1 Subhan64

7) alexcobo: Discover Y1 Alexcobo G1 Alba

8) Subhan64: Discover G3 Subhan64 G3 Ceti_alpha

9) alexcobo: Build Y1 Alexcobo

10) Subhan64: Build G2 Subhan64

11) alexcobo: Build Y2 Alba

12) Subhan64: Discover G1 Subhan64 Y3 Sirius

13) alexcobo: Trade Y1 B1 Alexcobo

14) Subhan64: Trade G2 Y2 Subhan64

15) alexcobo: Sacrifice B1 Alexcobo
Trade Y2 G2 Alba

16) Subhan64: Build G2 Subhan64

17) alexcobo: Build G2 Alba

18) Subhan64: Build Y1 Subhan64

19) alexcobo: Build Y2 Alba

20) Subhan64: Trade Y1 B1 Subhan64

21) alexcobo: Sacrifice G2 Alba
Build Y1 Alexcobo
Build Y3 Alba

22) Subhan64: Sacrifice B1 Subhan64
Trade G3 R3 Ceti_alpha

23) alexcobo: Trade Y3 R3 Alexcobo

24) Subhan64: Build Y3 Subhan64

25) alexcobo: Sacrifice Y2 Alba
Move Y1 Alba Sirius
Move Y1 Sirius Subhan64
Catastrophe Subhan64 Y

26) Subhan64: Trade G1 Y1 Subhan64


27) alexcobo: Move Y3 Alba Sirius

28) Subhan64: Sacrifice Y1 Subhan64
Move R3 Ceti_alpha Subhan64

29) alexcobo: Build R1 Alexcobo

30) Subhan64: Build R1 Subhan64

31) alexcobo: Build R1 Alexcobo

	Subhan64: thanks, good game!


19115)
Started: 2011.2.27, Ended: 2011.3.2
Participants: daselva (S), mathochist (N)
Winner: daselva



19213)
Started: 2011.3.1, Ended: 2011.3.5
Participants: TwoShort (S), lorgar (N)
Winner: lorgar

1) lorgar: Pass



19169)
Started: 2011.3.1, Ended: 2011.4.1
Participants: lorgar (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3

2) lorgar: Homeworld G3 Y2 B3
	ts52: Time for a rematch, eh? Have a good game!
	lorgar: thanks. lets fight again!

3) ts52: Build G1 Ts52

4) lorgar: Build B1 Lorgar

5) ts52: Trade G1 B1 Ts52

6) lorgar: Discover B1 Lorgar G1 Meuh

7) ts52: Discover B1 Ts52 G2 Kermit

8) lorgar: Build B2 Meuh

9) ts52: Build B2 Kermit

10) lorgar: Trade B2 Y2 Meuh

11) ts52: Trade B1 Y1 Kermit

12) lorgar: Build Y1 Meuh

13) ts52: Build G1 Ts52

14) lorgar: Trade Y1 R1 Meuh

15) ts52: Trade G1 R1 Ts52

16) lorgar: Build Y1 Meuh

17) ts52: Build G1 Ts52

18) lorgar: Trade Y2 G2 Meuh

19) ts52: Discover G1 Ts52 Y2 Bigbird

20) lorgar: Discover G2 Meuh G3 Amanite

21) ts52: Build G1 Bigbird

22) lorgar: Build B1 Lorgar

23) ts52: Build G2 Ts52

24) lorgar: Build B2 Meuh

25) ts52: Trade G2 Y2 Ts52

26) lorgar: Discover B2 Meuh G2 Lynx

27) ts52: Move G1 Bigbird Ts52

28) lorgar: Build R1 Meuh

29) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Kermit
Build Y3 Ts52

30) lorgar: Build Y3 Meuh

31) ts52: Sacrifice Y2 Ts52
Move Y1 Kermit Meuh
Move Y1 Kermit Meuh
Catastrophe Meuh Yellow

32) lorgar: Trade R1 Y1 Meuh

33) ts52: Move Y3 Ts52 Kermit

34) lorgar: Build Y1 Meuh
	lorgar: I deserved it

35) ts52: Build Y1 Kermit

36) lorgar: Trade B2 Y2 Lynx

37) ts52: Build B2 Kermit

38) lorgar: Sacrifice Y2 Lynx
Move Y1 Meuh Kermit
Move Y1 Meuh Kermit
Catastrophe Kermit Yellow

39) ts52: Trade B2 Y2 Kermit

40) lorgar: Trade B1 R1 Lorgar

41) ts52: B Y1 Kermit

42) lorgar: Build R2 Meuh

43) ts52: Build R2 Ts52

44) lorgar: Trade R1 Y1 Meuh

45) ts52: Build G2 Bigbird

46) lorgar: Build B1 Lorgar

47) ts52: Move R1 Ts52 Bigbird

48) lorgar: Trade B1 Y1 Lorgar

49) ts52: Discover Y2 Kermit R3 Elmo

50) lorgar: Build Y3 Meuh

51) ts52: Build Y3 Kermit

52) lorgar: Move Y3 Meuh Bigbird

53) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Bigbird
Build R2 Ts52

54) lorgar: Move Y1 Meuh Kermit

55) ts52: Move R2 Ts52 Kermit

56) lorgar: Sacrifice R2 Meuh
Attack G2N Bigbird
Attack R1N Bigbird

57) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build R3 Kermit

58) lorgar: Sacrifice Y1 Lorgar Move Y3 Bigbird Elmo
Pass

59) ts52: M Y3 Kermit Amanite

60) lorgar: Sacrifice R1 Bigbird
Attack R1N Bigbird
Pass

61) ts52: Sacrifice R2 Ts52
Attack G2 Amanite
Attack R1 Bigbird

62) lorgar: Build B1 Meuh

63) ts52: Attack Y1 Kermit

64) lorgar: Trade B1 R1 Meuh

65) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build R3 Bigbird

66) lorgar: Sacrifice R1 Meuh
Attack R3N Bigbird

67) ts52: Move R2 Kermit Meuh

68) lorgar: Attack G1 Bigbird

69) ts52: Move R1 Bigbird Amanite

70) lorgar: Sacrifice Y3 Bigbird
Move G1 Bigbird Ts52
Move G2 Bigbird Ts52
Move R3 Bigbird Ts52
Catastrophe Ts52 Green

71) ts52: Sacrifice Y2 Elmo
Move B2 Kermit Ts52
Move R3 Kermit Ts52
Catastrophe Ts52 Red

72) lorgar: Build B1 Meuh

73) ts52: Attack B1 Meuh

74) lorgar: Build B2 Lorgar

75) ts52: Attack B1 Meuh

76) lorgar: Discover B2 Lorgar G1 Hutchins

77) ts52: Trade B2 G2 Ts52

78) lorgar: Build B2 Hutchins

79) ts52: Build G1 Amanite

80) lorgar: Trade B2 Y2 Hutchins

81) ts52: Build G3 Ts52

82) lorgar: Build B2 Hutchins

83) ts52: Move Y1 Kermit Meuh

84) lorgar: Trade B2 R2 Hutchins

85) ts52: Move Y3 Amanite Hutchins

86) lorgar: Sacrifice Y2 Hutchins
Move R2 Hutchins Kermit
Move B2 Hutchins Kermit

87) ts52: Move Y1 Kermit Amanite

88) lorgar: Build B2 Kermit

89) ts52: Move B1 Meuh Amanite

90) lorgar: Trade B2 R2 Kermit

91) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Amanite
Build R3 Meuh

92) lorgar: Trade B2 Y2 Kermit

93) ts52: Discover R2 Meuh Y2 Bigbird

94) lorgar: Build R3 Lorgar

95) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Hutchins
Build Y3 Meuh

96) lorgar: Sacrifice R1 Lorgar
Pass

97) ts52: Discover Y1 Amanite R1 Elmo

98) lorgar: Move R2 Kermit Amanite

99) ts52: Attack R2 Amanite

100) lorgar: Build R3 Kermit

101) ts52: S Y3 Meuh
M Y1 Meuh Lorgar
Move Y1 Elmo Lorgar
M Y1 Hutchins Lorgar
C Lorgar Yellow



102) lorgar: Build B2 Lorgar

103) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Bigbird
Build B2 Meuh

104) lorgar: Sacrifice Y2 Kermit
Move R2 Kermit Amanite
Move B2 Lorgar Kermit
Catastrophe Amanite Red

105) ts52: Trade B2 Y2 Meuh
	lorgar: You're driving, may I ask if we're getting anywhere?
I would ask you this too, do you think this game is truly a space strategy game? I am keen to think about it as a sociologic thing.
	ts52: I'm often slow to attack in this game. I've been burned before, so I'm extra cautious. As for the theme, it's not strictly necessary, but I like it.

106) lorgar: Build R1 Kermit

107) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Hutchins
Build R1 Meuh

108) lorgar: Trade R3 Y3 Kermit

109) ts52: Move Y1 Hutchins Amanite

110) lorgar: Build R2 Kermit

111) ts52: Move G1 Amanite Bigbird

112) lorgar: Sacrifice Y3 Kermit
Move R1 Kermit Meuh
Move R2 Kermit Meuh
Pass
Catastrophe Meuh Red

113) ts52: Sacrifice Y2 Meuh
Move G2 Ts52 Bigbird
Move G2 Amanite Bigbird

114) lorgar: Build B2 Kermit

115) ts52: Sacrifice Y3 Hutchins
Move G2 Bigbird Lorgar
Move G2 Bigbird Lorgar
Move G1 Bigbird Lorgar
Catastrophe Lorgar Green

	ts52: Thanks for the game!
	lorgar: AAAAAAAAH I GOT BLASTED! again ^^


19225)
Started: 2011.3.1, Ended: 2011.4.25
Participants: Mandrel (S), Daarck (N)
Winner: Mandrel

1) Daarck: Homeworld G1 Y2 B3

2) Mandrel: Homeworld R1 B3 G3
	Mandrel: Have a good game!

3) Daarck: Build B1 Daarck
	Daarck: You too.

4) Mandrel: Build G1 Mandrel

5) Daarck: Trade B1 Y1 Daarck

6) Mandrel: T G1 Y1 Mandrel

7) Daarck: Build B1 Daarck

8) Mandrel: B G1 Mandrel

9) Daarck: Build B1 Daarck

10) Mandrel: Trade G1 B1 Mandrel

11) Daarck: Discover B1 Daarck G3 Marco
	Daarck: NICE!

12) Mandrel: Build B2 Mandrel

13) Daarck: Trade B3 G3 Daarck

14) Mandrel: T B1 R1 Mandrel

15) Daarck: Build G1 Daarck

16) Mandrel: Build G1 Mandrel

17) Daarck: Move G1 Daarck Marco

18) Mandrel: B G2 Mandrel

19) Daarck: Build G2 Marco

20) Mandrel: Discover G2 Mandrel Y2 Loom

21) Daarck: Trade G2 R2 Marco

22) Mandrel: Build G2 Loom

23) Daarck: Build G2 Daarck

24) Mandrel: Move B2 Mandrel Loom

25) Daarck: Move Y1 Daarck Marco

26) Mandrel: Trade G2 Y2 Loom

27) Daarck: Move R2 Marco Loom

28) Mandrel: S Y2 Loom
Move G2 Loom Marco
Move G2 Marco Daarck
Catastrophe Daarck Green

29) Daarck: Attack B2 Loom
	Daarck: Oh crap.

30) Mandrel: M Y1 Mandrel Daarck
	Mandrel: Not sure if i've left myself too exposed now

31) Daarck: Move G1 Marco Loom
	Daarck: Not quite sure what to do next actually...

32) Mandrel: S G3 Mandrel
Build Y1 Daarck
Build Y2 Daarck
Build Y3 Daarck
Catastrophe Daarck Yellow
	Mandrel: Good game,



19281)
Variants: "Hard time"
Started: 2011.3.1, Ended: 2011.3.15
Participants: mneme (S), goulo (N)
Winner: mneme

1) goulo: Homeworld B2 R3 G3

2) mneme: Homeworld R1 B2 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) mneme: Build G1 Mneme

5) goulo: Trade G1 Y1 Goulo

6) mneme: Trade G1 Y1 Mneme

7) goulo: Build G1 Goulo

8) mneme: Build G1 Mneme

9) goulo: Trade G1 R1 Goulo

10) mneme: Trade G1 B1 Mneme

11) goulo: Build G1 Goulo

12) mneme: Build B1 Mneme

13) goulo: Trade G1 B1 Goulo

14) mneme: Discover B1 Mneme G3 Gunther

15) goulo: Discover B1 Goulo G1 Smeraldeto

16) mneme: Trade B1 R1 Gunther

17) goulo: Build R2 Goulo

18) mneme: Build R2 Gunther

19) goulo: Move R2 Goulo Smeraldeto

20) mneme: Sacrifice B1 Mneme
Trade R2 Y2 Gunther

21) goulo: Build Y1 Goulo

22) mneme: Build Y2 Mneme

23) goulo: Move Y1 Goulo Smeraldeto

24) mneme: Trade Y2 R2 Mneme

25) goulo: Build Y2 Smeraldeto

26) mneme: Build G1 Mneme

27) goulo: Trade Y1 G1 Smeraldeto

28) mneme: Discover G1 Mneme Y3 Launcher

29) goulo: Discover G1 Smeraldeto R3 Rubenego

30) mneme: Build G2 Mneme

31) goulo: Build G2 Rubenego

32) mneme: Move R2 Mneme Launcher

33) goulo: Sacrifice Y2 Smeraldeto
Move G1 Rubenego Mneme
Move G2 Rubenego Mneme
Catastrophe Mneme G

34) mneme: Build R2 Gunther

35) goulo: Build R3 Smeraldeto
	mneme: oops.  Can't believe I missed that your 2 gs were one away from my home system.


36) mneme: Build R3 Launcher
	goulo: it was a lucky break for me!

37) goulo: Trade R2 Y2 Smeraldeto

38) mneme: Move R3 Launcher Mneme

39) goulo: Build R2 Smeraldeto

40) mneme: Trade R3 G3 Mneme

41) goulo: Discover R1 Goulo Y1 Citroneto

42) mneme: Sacrifice G3 Mneme
Build Y2 Mneme
Build Y3 Mneme
Build Y3 Gunther

43) goulo: Discover Y2 Smeraldeto R3 Rubenego

44) mneme: Sacrifice Y2 Mneme
Move R2 Gunther Smeraldeto
Move R1 Gunther Smeraldeto
Catastrophe Smeraldeto R

45) goulo: Build Y2 Goulo
	mneme: um.  I think I may have gotten my own back for the blunder on move 16.  And then some.
	goulo: Yeah...

46) mneme: Trade Y3 G3 Mneme

47) goulo: Build B1 Smeraldeto
	goulo: My problem in Homeworlds is I can see and take opportunities like move 16, but I still don't have a good sense of long-term strategy and don't create such opportunities reliably enough, and fall into them on the wrong side of the opportunity like just now. :)

48) mneme: Build Y3 Mneme

49) goulo: Move Y1 Goulo Smeraldeto

50) mneme: Move Y3 Gunther Citroneto
	goulo: Hm, OK, now I'm just playing like an idiot. Time for a break. :/
	mneme: Yeah, I was wondering about that one; it was pretty easy to deny it.
	goulo: It was pure brainfart at my end - no idea how I didn't notice "Oh, gee, he'll just build the last Y3."
	goulo: one mistake compounding another

51) goulo: Move R1 Citroneto Rubenego
	goulo: looking at the situation now - your 3 big ships vs my 1 big ship - it is hard to imagine that a few turns ago, i was ahead. talk about snatching defeat from the jaws of victory. :P
well, i'll press on for a bit. :)

52) mneme: Move Y3 Mneme Rubenego

53) goulo: Discover Y2 Rubenego R2 Rubeno

54) mneme: Attack R1 Rubenego

55) goulo: Discover B1 Smeraldeto R3 Fragego

56) mneme: Move R2 Launcher Smeraldeto

57) goulo: Move Y1 Smeraldeto Fragego

58) mneme: Sacrifice G1 Launcher
Build Y3 Rubenego

59) goulo: Build G1 Goulo

60) mneme: Attack B1 Smeraldeto

61) goulo: Move G1 Goulo Citroneto

62) mneme: Sacrifice R1 Rubenego
Attack G1 Citroneto

	goulo: Thanks for the game - no point in my further floundering...
	mneme: *nod* Sorry I didn't bring it to a conclusion faster; I kept having great opportunities for further locking you down that I took instead of, say, s y1 mneme, m Y3 Rubenego Smeraldeto, followed by t Y3 B3 Smeraldeto and a Y sac to put both ships in your homeworld.
	goulo: No need for you to apologize for being careful when you're ahead. :)
That was an interesting tough game for me. Well, there's a reason your rating is higher than mine. :)
	mneme: Fair enough.  Twoshort can reliably beat me; I can't think of anyone else who can.  It was interesting for me too, as I was on the verge of surrendering when you knocked out my only large--but I figured you didn't have a knockout blow, so it was worth continuing to play and hope you'd let me get a large back in exchange for your getting a large (as you did).


19291)
Started: 2011.3.7, Ended: 2011.3.9
Participants: javico (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) javico: Homeworld B2 G1 Y3
	javico: it's my first game, only want to learn

3) ts52: Build G1 Ts52
	ts52: Ok, feel free to ask any questions. The best way to ask is to post your question, then make a move and undo it. That way I get email from SDG.

4) javico: Build Y1 Javico

5) ts52: Build G1 Ts52
	javico: the only way to destroy a system is by catastrophe?
	ts52: catastrophe or abandonment. if all the ships in a system leave or are destroyed, the system goes too

6) javico: Discover Y3 Javico R3 Nova

7) ts52: Discover G1 Ts52 B3 Grover

8) javico: Trade Y1 R1 Javico
	javico: can i make one action for each system or only an action for turn?
	ts52: only one action per turn. also, it's generally advisable to keep a large ship in your home system

9) ts52: Trade G3 R3 Ts52
	javico: can't i build a green ship in my homeworld?

10) javico: Move Y3 Nova Javico

11) ts52: Build R1 Ts52
	ts52: you can only build a ship that's the same color of a ship of yours in that system

12) javico: Build Y1 Javico

13) ts52: Build G2 Grover
	javico: i am an absolutely noob, haha i would like to play another game after this finishes
	ts52: no problem, I'd be happy to play several games

14) javico: Build Y1 Javico

15) ts52: Trade G2 Y2 Grover

16) javico: Discover Y1 Javico B3 Nova

17) ts52: Build G2 Grover

18) javico: Trade Y3 G3 Javico

19) ts52: Build G2 Ts52

20) javico: Move R1 Javico Grover

21) ts52: Sacrifice R1 Ts52
Attack R1 Grover

22) javico: Build Y2 Javico

23) ts52: Build R1 Ts52

24) javico: Trade Y1 R1 Javico

25) ts52: Build R2 Grover
	javico: i dont know what to do :)

26) javico: Trade Y2 G2 Javico

27) ts52: Build G3 Ts52
	ts52: That's tough to say. Generally, if your enemy has a gun (red) you should have a gun. That's one good adage. Also, building up a doomsday machine (3 pieces of a color and large yellow) to use to destroy part of your opponents homeworld is another common strategy.

28) javico: Trade G2 Y2 Javico

29) ts52: Move R3 Ts52 Nova

30) javico: Build G2 Javico

31) ts52: Move G1 Grover Javico
Catastrophe Javico Green

32) javico: Trade Y1 G1 Nova
	ts52: You need to be very careful about having three pieces of the same color in the same system. Always check to make sure I don't have a piece of the same color that I could move in to that system and cause a catastrophe.

33) ts52: Attack G1S Nova

34) javico: Trade Y2 G2 Javico

35) ts52: Trade G1 Y1 Nova
	javico: i don't know why you didnt finish yet. You can sacrifice your Y2 to move your two G ships into my homeworld and do a catastrophe

36) javico: Build G1 Javico

37) ts52: Move R3 Nova Javico
	ts52: yeah, that just about does it. though technically you aren't dead yet.

38) javico: Trade G1 Y1 Javico

39) ts52: Attack R1 Javico

	ts52: Thanks for the game. I'd be happy to play again, any time.
	javico: thanks for teach me in this game, but i'm afraid that i didnt like it too much. In my opinion, it has too many restrictions and there is a moment in the game that you can make only a few movements.
	ts52: Fair enough. The simplicity of it is something I enjoy, but it's not for everyone.


19182)
Variants: "Hard time"
Started: 2011.3.8, Ended: 2011.3.24
Participants: alexcobo (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B3 G3

2) alexcobo: Homeworld G3 B1 Y3

3) SilentTitan: Build G1 Silenttitan

4) alexcobo: Build Y1 Alexcobo

5) SilentTitan: Trade G1 Y1 Silenttitan

6) alexcobo: Trade Y1 R1 Alexcobo

7) SilentTitan: Build Y1 Silenttitan

8) alexcobo: Build R1 Alexcobo

9) SilentTitan: Build G1 Silenttitan

10) alexcobo: Build R1 Alexcobo

11) SilentTitan: Discover Y1 Silenttitan G1 Ox

12) alexcobo: Discover R1 Alexcobo G2 One

13) SilentTitan: Discover Y1 Silenttitan G1 Ax

14) alexcobo: Build R2 One

15) SilentTitan: Discover Y1 Ox R3 Bigred

16) alexcobo: Trade R1 G1 Alexcobo

17) SilentTitan: Trade G1 R1 Silenttitan

18) alexcobo: Build Y1 Alexcobo

19) SilentTitan: Build Y2 Ax

20) alexcobo: Build R2 Alexcobo

21) SilentTitan: Sacrifice Y1 Ax
Discover R1 Silenttitan G1 Spore

22) alexcobo: Build R3 Alexcobo

23) SilentTitan: Build R3 Spore

24) alexcobo: Discover R3 Alexcobo Y2 Ambar

25) SilentTitan: Build G2 Silenttitan

26) alexcobo: Build G2 Alexcobo

27) SilentTitan: Trade G2 Y2 Silenttitan

28) alexcobo: Move Y1 Alexcobo One

29) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Bigred
Build Y3 Ax
Build Y3 Silenttitan

30) alexcobo: Sacrifice Y3 Alexcobo
Move R1 One Spore
Move R2 One Spore
Move R3 Ambar Ax
Catastrophe Spore R

31) SilentTitan: Sacrifice Y2 Ax
Move Y3 Ax One
Move Y3 One Alexcobo

32) alexcobo: Trade R2 Y2 Alexcobo

33) SilentTitan: Trade Y3 G3 Alexcobo
Catastrophe Alexcobo Green

	alexcobo: Well done!
you win.


19292)
Started: 2011.3.8, Ended: 2011.7.10
Participants: alexcobo (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: H R1 B2 G3
	Mandrel: Have a good game.

2) alexcobo: Homeworld G3 B2 Y3
	alexcobo: Thanks! You too.

3) Mandrel: Build G1 Mandrel

4) alexcobo: Build Y1 Alexcobo

5) Mandrel: Trade G1 R1 Mandrel

6) alexcobo: Trade Y1 R1 Alexcobo

7) Mandrel: Build R2 Mandrel

8) alexcobo: Build R2 Alexcobo

9) Mandrel: Trade R2 Y2 Mandrel

10) alexcobo: Build Y1 Alexcobo

11) Mandrel: Build R2 Mandrel

12) alexcobo: Build R2 Alexcobo

13) Mandrel: Trade R2 Y2 Mandrel

14) alexcobo: Discover R2 Alexcobo G1 One

15) Mandrel: D R1 Mandrel G3 Campus

16) alexcobo: Trade R1 G1 Alexcobo

17) Mandrel: Move Y2 Mandrel Campus

18) alexcobo: Build R1 One

19) Mandrel: Build Y1 Mandrel

20) alexcobo: Build R2 Alexcobo

21) Mandrel: B R3 Campus

22) alexcobo: Trade R2 B2 Alexcobo

23) Mandrel: Build G1 Mandrel

24) alexcobo: Move Y1 Alexcobo One

25) Mandrel: Trade G1 B1 Mandrel

26) alexcobo: Build R2 Alexcobo

27) Mandrel: Discover R3 Campus G1 Late

28) alexcobo: Move B2 Alexcobo One

29) Mandrel: Build R3 Campus

30) alexcobo: Trade R2 G2 One

31) Mandrel: M B1 Mandrel Campus

32) alexcobo: Build G2 Alexcobo

33) Mandrel: Build G2 Mandrel

34) alexcobo: Build Y1 Alexcobo

35) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build Y2 Mandrel
Build Y3 Campus

36) alexcobo: Build Y3 One

37) Mandrel: Sacrifice Y3 Campus
Move G2 Mandrel Campus
Move G2 Campus Late
Move G2 Late Alexcobo
Catastrophe Alexcobo Green

38) alexcobo: Sacrifice Y3 One
Move G2 One Alexcobo
Move Y1 One Campus
Move Y1 Campus Mandrel
Catastrophe Mandrel Y
	alexcobo: My order is "sacrifice y3 one" the system says "You do not own a ship Y2 in the One system."

39) Mandrel: B G1 Mandrel

40) alexcobo: Build G2 Alexcobo

41) Mandrel: T G1 Y1 Mandrel

42) alexcobo: Discover R2 Alexcobo G3 R2

43) Mandrel: B Y1 Mandrel

44) alexcobo: Sacrifice G2 Alexcobo
Build R2 One
Build R3 Alexcobo

45) Mandrel: Build B1 Campus

46) alexcobo: Build G1 Alexcobo

47) Mandrel: M B1 Campus Late

48) alexcobo: Move Y1 Alexcobo R2

49) Mandrel: B B1 Late

50) alexcobo: Build B3 One

51) Mandrel: Sacrifice Y2 Campus
Move B1 Late Alexcobo
Move B1 Late Alexcobo

52) alexcobo: Sacrifice R2 One
Attack B1N Alexcobo
Attack B1N Alexcobo

53) Mandrel: S Y1 Mandrel
Move B1 Campus Alexcobo
Catastrophe Alexcobo Blue
	Mandrel: Good game.
	alexcobo: Good game!



19274)
Started: 2011.3.8, Ended: 2011.4.16
Participants: mathochist (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G3 B1 Y3



19326)
Started: 2011.3.10, Ended: 2011.3.14
Participants: dreskyn (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3
	dreskyn: homeworld r3 b2 g3

2) dreskyn: Homeworld R3 B2 G3

3) TwoShort: Build G1 Twoshort
	dreskyn: I am completely new to this system. I guess i sent you what i wanted to start with ... oh well.

	TwoShort: No problem; I still do the same thing occasionally.  Have you played Homeworlds much before?

4) dreskyn: Build G1 Dreskyn

5) TwoShort: Trade G1 Y1 Twoshort

6) dreskyn: Build G1 Dreskyn
	dreskyn: I have played a few TT games reciently, but I'm really rusty. 

7) TwoShort: Build Y1 Twoshort

8) dreskyn: Trade G1 Y1 Dreskyn

9) TwoShort: Build Y2 Twoshort
	dreskyn: Yep! I see I already made a mistake in my thinking! :)

10) dreskyn: Build Y2 Dreskyn

11) TwoShort: Discover Y1 Twoshort G2 Grogar

12) dreskyn: Discover G1 Dreskyn B1 Alpha

13) TwoShort: Build G1 Twoshort

14) dreskyn: Sacrifice Y2 Dreskyn
Move Y1 Dreskyn Alpha
Discover Y1 Alpha Y3 Gamma

15) TwoShort: Discover Y1 Twoshort B2 Bluestar

16) dreskyn: Build G1 Alpha

17) TwoShort: Build Y2 Grogar

18) dreskyn: Build G2 Dreskyn

19) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build Y3 Twoshort
Build Y3 Bluestar

20) dreskyn: Build G2 Dreskyn

21) TwoShort: Sacrifice Y3 Twoshort
Move G1 Twoshort Bluestar
Move G1 Bluestar Alpha
Move G1 Alpha Dreskyn
Catastrophe Dreskyn Green

	dreskyn: Well played! I missed that. :)


19367)
Variants: "Hard time"
Started: 2011.3.10, Ended: 2011.5.2
Participants: Remneb (S), Gidaio (N)
Winner: Remneb

1) Gidaio: Homeworld B3 Y2 G3

2) Remneb: Homeworld R1 B2 G3
	Gidaio: I do believe we've met. Either way, good luck!

3) Gidaio: Build G1 Gidaio
	Remneb: Thanks.Have a good game .

4) Remneb: Build G1 Remneb
	Gidaio: Will do. It's hard to have a bad game of Homeworlds.

5) Gidaio: Discover G1 Gidaio B1 Pluto

6) Remneb: Trade G1 Y1 Remneb

7) Gidaio: Build G1 Gidaio

8) Remneb: Build Y1 Remneb

9) Gidaio: Build G1 Pluto

10) Remneb: Build G2 Remneb

11) Gidaio: Sacrifice G3 Gidaio
Build G2 Pluto
Build G2 Gidaio
Build G3 Gidaio

12) Remneb: Build G3 Remneb
	Gidaio: Factory FTW.

13) Gidaio: Trade G2 Y2 Pluto

14) Remneb: Discover G3 Remneb Y3 Pulsar

15) Gidaio: Trade G1 R1 Gidaio

16) Remneb: Trade G2 R2 Remneb

17) Gidaio: Discover G1 Pluto B2 That1planet

18) Remneb: Move R2 Remneb Pulsar

19) Gidaio: Build Y1 Pluto

20) Remneb: Discover Y1 Remneb Y3 Turbo

21) Gidaio: Build G1 That1planet

22) Remneb: Build Y2 Remneb

23) Gidaio: Discover G1 Pluto Y3 Nocanhas

24) Remneb: Move R2 Pulsar That1planet

25) Gidaio: Sacrifice G1 That1planet
Build G1 Nocanhas

26) Remneb: Attack G1 That1planet

27) Gidaio: Discover Y1 Pluto B3 Neptune
	Gidaio: Moving without yellow FTW.
	Remneb: That is something i never try...good move.

28) Remneb: Build G2 Pulsar

29) Gidaio: Sacrifice Y2 Pluto
Move G1 Nocanhas That1planet
Move G1 That1planet Neptune
	Gidaio: Thanks. That's the first time I've done that.

30) Remneb: Build G2 That1planet

31) Gidaio: Trade Y1 B1 Neptune

32) Remneb: Trade G2 Y2 That1planet

33) Gidaio: Build G2 Neptune

34) Remneb: Discover R2 That1planet Y1 Bunker

35) Gidaio: Sacrifice G3 Gidaio
Build G3 Gidaio
Build B1 Neptune
Build R1 Gidaio

36) Remneb: Sacrifice G2 Pulsar
Build R2 Bunker
Build G2 That1planet

37) Gidaio: Trade G2 R2 Neptune

38) Remneb: Move G3 Remneb Neptune

39) Gidaio: Build G2 Nocanhas

40) Remneb: Sacrifice R2 Bunker
Attack R2 Neptune
Attack G1 Neptune

41) Gidaio: Sacrifice G1 Nocanhas
Build B1 Neptune
Catastrophe Neptune Blue

42) Remneb: Trade Y1 G1 Remneb

43) Gidaio: Discover G2 Nocanhas B1 Charron
	Remneb: Well i would have never think about such move.It is in fact a suicide move to destroy the ennemy.

44) Remneb: Build G1 Pulsar

45) Gidaio: Build G3 Charron

46) Remneb: Sacrifice G3 Pulsar
Build G3 Remneb
Build Y1 That1planet
Build Y3 That1planet

47) Gidaio: Trade G2 R2 Charron

48) Remneb: Build G2 Pulsar

49) Gidaio: Discover R1 Gidaio B1 Glaxoniv
	Gidaio: Gah! Now I can't move!

50) Remneb: Move Y3 That1planet Bunker

51) Gidaio: Sacrifice G3 Gidaio
Build G3 Gidaio
Build R2 Glaxoniv
Build R3 Charron
	Remneb: :)...just wait for me.

52) Remneb: Sacrifice G1 Remneb
Build R3 Bunker

53) Gidaio: Build R3 Charron

54) Remneb: Sacrifice Y2 That1planet
Move R2 Bunker Pulsar
Move R2 Pulsar Charron
Catastrophe Charron R

55) Gidaio: Trade G2 Y2 Gidaio

56) Remneb: Trade G2 R2 That1planet

57) Gidaio: Build G1 Gidaio
	Remneb: Now you have a yellow :)

58) Remneb: Build G2 Remneb
	Gidaio: Yay!

59) Gidaio: Trade G3 R3 Charron

60) Remneb: Sacrifice G2 Remneb
Build R2 That1planet
Build R3 Bunker

61) Gidaio: Trade R2 G2 Glaxoniv

62) Remneb: Move R3 Bunker Turbo

63) Gidaio: Sacrifice G3 Gidaio
Build G2 Glaxoniv
Build G3 Gidaio
Build R2 Charron

64) Remneb: Move Y1 Turbo That1planet

65) Gidaio: Build G3 Glaxoniv

66) Remneb: Move G1 Pulsar Glaxoniv
Catastrophe Glaxoniv G

67) Gidaio: Trade R1 G1 Glaxoniv

68) Remneb: Move R2 That1planet Pulsar

69) Gidaio: Sacrifice G3 Gidaio
Build G2 Glaxoniv
Build G2 Glaxoniv
Build G3 Gidaio

70) Remneb: Move G1 That1planet Glaxoniv
Catastrophe Glaxoniv G

71) Gidaio: Discover G1 Gidaio R1 Rageandanger

72) Remneb: Sacrifice Y2 Remneb
Move R2 Pulsar Charron
Move R2 That1planet Charron
Catastrophe Charron R

73) Gidaio: Build R2 Gidaio

74) Remneb: Discover Y1 That1planet G1 Aliens

75) Gidaio: Move R2 Gidaio Aliens

76) Remneb: Sacrifice Y3 Bunker
Move Y1 Aliens Gidaio
Move Y1 That1planet Bunker
Move Y1 Bunker Gidaio
Catastrophe Gidaio Y

77) Gidaio: Build R2 Gidaio

78) Remneb: Move G2 Pulsar Bunker

79) Gidaio: Trade R1 Y1 Gidaio

80) Remneb: Move R3 Turbo Remneb
	Gidaio: ...ouch.

81) Gidaio: Build Y1 Gidaio

82) Remneb: Trade R3 Y3 Remneb
	Remneb: Since the beginning, yellow was the name of the game.Now we have plenty of that color !

83) Gidaio: Move Y1 Gidaio Rageandanger

84) Remneb: Build Y2 Remneb

85) Gidaio: Build Y2 Rageandanger

86) Remneb: Discover R3 Bunker Y2 Roma

87) Gidaio: Discover Y1 Rageandanger B2 Green

88) Remneb: Trade Y2 B2 Remneb

89) Gidaio: Build G1 Rageandanger

90) Remneb: Build B1 Remneb

91) Gidaio: Sacrifice G1 Rageandanger
Build Y2 Green

92) Remneb: Build Y3 Remneb

93) Gidaio: Discover Y1 Green B3 Blue

94) Remneb: Move R3 Roma Blue

95) Gidaio: Sacrifice Y2 Green
Move R2 Aliens Blue
Move R2 Blue Bunker

96) Remneb: Move Y3 Remneb Blue

97) Gidaio: Attack G2 Bunker

98) Remneb: Attack Y1 Blue

	Gidaio: This has gone on for a very long time and frankly, I'm in a very bad position. You can have it.
	Remneb: Thanks for the game.


19343)
Variants: "Hard time"
Started: 2011.3.11, Ended: 2011.3.25
Participants: SilentTitan (S), dreskyn (N)
Winner: SilentTitan

1) dreskyn: Homeworld R2 B1 G3
	dreskyn: I'm new to this game. thanks for playing.

2) SilentTitan: Homeworld B2 R3 G3
	SilentTitan: sure if you'd like to ask any questions or receive any advice just let me know.  

3) dreskyn: Build G1 Dreskyn
	dreskyn: thanks :)

4) SilentTitan: Build G1 Silenttitan

5) dreskyn: Trade G1 Y1 Dreskyn

6) SilentTitan: Trade G1 Y1 Silenttitan

7) dreskyn: Build G1 Dreskyn

8) SilentTitan: Build G1 Silenttitan

9) dreskyn: Discover Y1 Dreskyn G3 Alpha

10) SilentTitan: Trade G1 B1 Silenttitan

11) dreskyn: Build Y1 Alpha

12) SilentTitan: Build Y2 Silenttitan

13) dreskyn: Build Y2 Alpha

14) SilentTitan: Sacrifice Y2 Silenttitan
Discover Y1 Silenttitan G1 Poof
Move Y1 Poof Alpha
Catastrophe Alpha Yellow

15) dreskyn: Build G1 Dreskyn
	dreskyn: LOL! nice move. I'm new to the game. any tips are welcome.

16) SilentTitan: Build B1 Silenttitan



19325)
Started: 2011.3.11, Ended: 2011.4.18
Participants: lorgar (S), dreskyn (W), javico (N), alexcobo (E)
Winner: lorgar

1) javico: Homeworld Y2 B1 G3

2) alexcobo: Homeworld G3 B2 Y3

3) lorgar: Homeworld B1 Y3 G3

4) dreskyn: Homeworld R1 B2 G3

5) javico: Build G1 Javico

6) alexcobo: Build Y1 Alexcobo

7) lorgar: Build G1 Lorgar

8) dreskyn: Build G1 Dreskyn

9) javico: Trade G1 Y1 Javico

10) alexcobo: Build Y1 Alexcobo

11) lorgar: Discover G1 Lorgar B2 Yoyop

12) dreskyn: Build G1 Dreskyn

13) javico: Build G1 Javico

14) alexcobo: Trade Y1 R1 Alexcobo

15) lorgar: Build G1 Lorgar

16) dreskyn: Trade G1 Y1 Dreskyn

17) javico: Discover Y1 Javico G3 Nova

18) alexcobo: Trade Y1 G1 Alexcobo

19) lorgar: Build G2 Yoyop

20) dreskyn: Build Y1 Dreskyn

21) javico: Trade G1 B1 Javico

22) alexcobo: Build Y1 Alexcobo

23) lorgar: Trade G1 Y1 Yoyop

24) dreskyn: Move Y1 Dreskyn Nova

25) javico: Move B1 Javico Nova

26) alexcobo: Build Y2 Alexcobo

27) lorgar: Build Y2 Yoyop

28) dreskyn: Build Y2 Dreskyn

29) javico: Discover Y1 Nova B1 Mortis

30) alexcobo: Trade Y2 R2 Alexcobo

31) lorgar: Trade Y2 B2 Yoyop

32) lorgar: Build Y2 Yoyop

33) javico: Build G1 Javico

34) alexcobo: Build R1 Alexcobo

35) lorgar: Trade Y1 R1 Yoyop

36) javico: Build B1 Nova

37) alexcobo: Move R2 Alexcobo Mortis

38) lorgar: Discover B2 Yoyop G1 Bebop

39) javico: Trade B1 Y1 Nova

40) alexcobo: Attack Y1N Mortis

41) lorgar: Build G2 Yoyop

42) javico: Build Y2 Nova

43) alexcobo: Move R2 Mortis Nova

44) lorgar: Move Y2 Yoyop Nova
Catastrophe Nova Yellow

45) alexcobo: Attack B1N Nova

46) lorgar: Trade G1 R1 Lorgar

47) alexcobo: Sacrifice Y1 Alexcobo
Move R2 Nova Dreskyn

48) lorgar: Sacrifice G2 Yoyop
Build R2 Yoyop
Build B1 Bebop

49) alexcobo: Attack Y2W Dreskyn

50) lorgar: Trade R1 Y1 Yoyop

51) alexcobo: Attack G1W Dreskyn

52) lorgar: Trade B1 Y1 Bebop

53) alexcobo: Attack Y1W Dreskyn

54) lorgar: Build R1 Yoyop

55) alexcobo: Build B1 Nova

56) lorgar: Move R2 Yoyop Nova

57) alexcobo: Sacrifice Y2 Dreskyn
Move B1 Nova Javico
Move B1 Nova Javico

58) lorgar: Move G2 Yoyop Mortis

59) alexcobo: Discover Y1 Mortis Y3 Caronte

60) lorgar: Build G1 Mortis

61) alexcobo: Trade B1 Y1 Javico

62) lorgar: Build Y2 Bebop

63) alexcobo: Build Y2 Alexcobo

64) lorgar: Sacrifice Y2 Bebop
Move G2 Mortis Alexcobo
Move G1 Mortis Alexcobo
Catastrophe Alexcobo Green

65) alexcobo: Build Y2 Dreskyn

66) lorgar: Build Y2 Bebop

67) alexcobo: Sacrifice Y2 Dreskyn
Move Y2 Alexcobo Bebop
Move Y1 Caronte Bebop
Catastrophe Bebop Y

68) lorgar: Trade R1 G1 Yoyop

69) alexcobo: Trade B1 G1 Javico

70) lorgar: Build B1 Bebop

71) alexcobo: Discover G1 Javico Y3 Waypoint

72) lorgar: Build B1 Bebop

73) alexcobo: Build G2 Waypoint

74) lorgar: Trade G3 Y3 Lorgar

75) alexcobo: Move G2 Waypoint Alexcobo

76) lorgar: Sacrifice Y3 Lorgar
Move B2 Bebop Alexcobo
Move B1 Bebop Alexcobo
Move B1 Bebop Alexcobo
Catastrophe Alexcobo Blue

	lorgar: thanks for the game


19344)
Started: 2011.3.11, Ended: 2011.3.14
Participants: mathochist (S), dreskyn (N)
Winner: dreskyn

1) dreskyn: Homeworld R2 B1 G3



19352)
Started: 2011.3.11, Ended: 2011.3.17
Participants: ts52 (S), dreskyn (N)
Winner: ts52

1) dreskyn: Homeworld B2 R1 G3

2) ts52: Homeworld Y1 B3 G3

3) dreskyn: Build G1 Dreskyn

4) ts52: B G1 Ts52
	ts52: Have a good game!

5) dreskyn: Trade G1 Y1 Dreskyn
	dreskyn: thanks. you too. 

6) ts52: T G1 R1 Ts52

7) dreskyn: Build Y1 Dreskyn

8) ts52: Build R1 Ts52

9) dreskyn: Build Y2 Dreskyn

10) ts52: Build R2 Ts52

11) dreskyn: Trade Y2 R2 Dreskyn

12) ts52: Discover R1 Ts52 G2 Oscar

13) dreskyn: Build Y2 Dreskyn

14) ts52: Trade R2 Y2 Ts52

15) dreskyn: Discover Y1 Dreskyn G3 Alpha

16) ts52: Build R2 Ts52

17) dreskyn: Move R2 Dreskyn Alpha

18) ts52: Move Y2 Ts52 Oscar

19) dreskyn: Move R2 Alpha Oscar

20) ts52: Attack R2N Oscar

21) dreskyn: Build Y2 Dreskyn

22) ts52: Build Y3 Oscar

23) dreskyn: Build Y3 Alpha

24) ts52: Build R2 Ts52

25) dreskyn: Sacrifice Y3 Alpha
Move Y1 Dreskyn Alpha
Move Y1 Alpha Oscar
Move Y1 Alpha Oscar
Catastrophe Oscar Y

26) ts52: Build R3 Oscar

27) dreskyn: Build G1 Dreskyn

28) ts52: Trade R2 Y2 Ts52

29) dreskyn: Build G1 Dreskyn

30) ts52: Move Y2 Ts52 Oscar

31) dreskyn: Discover G1 Dreskyn B3 Bob

32) ts52: Build R2 Ts52

33) dreskyn: Build G1 Bob

34) ts52: Move R2 Oscar Bob

35) dreskyn: Trade Y2 G2 Dreskyn

36) ts52: Attack G1N Bob

37) dreskyn: Sacrifice G2 Dreskyn
Build G2 Bob
Build G2 Bob
Catastrophe Bob G

38) ts52: Build R3 Oscar

39) dreskyn: Trade G3 R3 Dreskyn

40) ts52: Move R3 Oscar Bob

41) dreskyn: Trade R3 G3 Dreskyn

42) ts52: Trade R3 G3 Bob

43) dreskyn: Build Y1 Dreskyn

44) ts52: Build R3 Bob

45) dreskyn: Discover G1 Dreskyn Y3 Hope

46) ts52: Move R3 Oscar Hope

47) dreskyn: Build G1 Dreskyn

48) ts52: Attack G1 Hope

49) dreskyn: Build Y1 Dreskyn

50) ts52: Build R3 Hope

51) dreskyn: Discover G1 Dreskyn Y3 Ouch

52) ts52: Sacrifice Y2 Oscar
Move R3 Bob Dreskyn
Move R3 Hope Dreskyn

53) dreskyn: Attack R3 Dreskyn

54) ts52: Sacrifice R2 Ts52
Attack R3N Dreskyn
Attack G3N Dreskyn

55) dreskyn: Trade Y2 R2 Dreskyn
Catastrophe Dreskyn R

56) ts52: Sacrifice R2 Ts52
Attack Y1 Dreskyn
Attack Y1 Dreskyn

	ts52: Thanks for the game.


19419)
Variants: "Hard time"
Started: 2011.3.16, Ended: 2011.4.5
Participants: TwoShort (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) TwoShort: Homeworld B1 R3 G3

3) mneme: Build G1 Mneme
	TwoShort: Howdy

4) TwoShort: Build G1 Twoshort

5) mneme: Trade G1 B1 Mneme

6) TwoShort: Trade G1 B1 Twoshort
	mneme: Greetings.  I've still never beaten you, but hey, another try won't hurt.  Much.

7) mneme: Build B2 Mneme

8) TwoShort: Build B2 Twoshort

9) mneme: Trade B2 Y2 Mneme

10) TwoShort: Trade B2 Y2 Twoshort

11) mneme: Build B2 Mneme

12) TwoShort: Build B2 Twoshort

13) mneme: Discover B1 Mneme G3 Hunter

14) TwoShort: Discover B2 Twoshort G2 Grogar

15) mneme: Build B3 Hunter

16) TwoShort: Build B3 Grogar

17) mneme: Trade B3 R3 Hunter

18) TwoShort: Trade B2 R2 Grogar

19) mneme: Build B2 Hunter

20) TwoShort: Build B3 Grogar

21) mneme: Sacrifice Y2 Mneme
Move B1 Hunter Grogar
Move B2 Hunter Grogar
Catastrophe Grogar B

22) TwoShort: Build Y1 Twoshort

23) mneme: Build G1 Mneme

24) TwoShort: Move Y1 Twoshort Grogar

25) mneme: Trade G1 Y1 Mneme

26) TwoShort: Build B1 Twoshort

27) mneme: Build B2 Mneme

28) TwoShort: Discover B1 Twoshort Y2 Yolonda

29) mneme: Move B2 Mneme Hunter

30) TwoShort: Sacrifice G3 Twoshort
Build B3 Twoshort
Build B3 Yolonda
Build Y1 Grogar

31) mneme: Build B3 Hunter

32) TwoShort: Trade B3 G3 Twoshort

33) mneme: Trade B3 Y3 Hunter

34) TwoShort: Trade B1 R1 Yolonda

35) mneme: Move R3 Hunter Grogar

36) TwoShort: Build R1 Grogar

37) mneme: Sacrifice B2 Mneme
Trade R3 B3 Grogar
Trade B2 R2 Hunter

38) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build Y3 Twoshort
Build Y3 Grogar

39) mneme: Sacrifice R2 Hunter
Attack Y3 Grogar
Attack R2 Grogar

40) TwoShort: Move Y2 Twoshort Grogar
Catastrophe Grogar Yellow

41) mneme: Attack R1 Grogar

42) TwoShort: Trade Y2 G2 Twoshort

43) mneme: Build Y1 Hunter

44) TwoShort: Move G2 Twoshort Yolonda

45) mneme: Move Y1 Hunter Grogar

46) TwoShort: Build R2 Yolonda

47) mneme: Build B1 Grogar

48) TwoShort: Discover R1 Yolonda Y3 Yoyodyne

49) mneme: Move B3 Grogar Twoshort

50) TwoShort: Attack B3 Twoshort

51) mneme: Move B1 Grogar Twoshort
Catastrophe Twoshort B

52) TwoShort: Sacrifice G2 Yolonda
Build R2 Yolonda
Build R3 Yoyodyne

53) mneme: Trade G3 R3 Mneme

54) TwoShort: Sacrifice Y3 Twoshort
Move R3 Yoyodyne Mneme
Move R1 Yoyodyne Mneme
Move B3 Yolonda Twoshort
Catastrophe Mneme Red

55) mneme: Build R1 Grogar

56) TwoShort: Move R2 Yolonda Twoshort

57) mneme: Sacrifice Y3 Hunter
Move R1 Grogar Twoshort
Move R1 Grogar Twoshort
Discover R2 Grogar Y1 Victorydance
Catastrophe Twoshort R

	TwoShort: Excellent game, thank you!
	mneme: Hey, that's the first time I've beaten you in -how- many games?  Still, it's good trivia to keep in mind (and check with AndyLooney on whether it's intentional), as I've certainly been in positions where it would be useful in the past.


19416)
Variants: "Hard time"
Started: 2011.3.16, Ended: 2011.7.25
Participants: fnord (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) fnord: Homeworld B3 Y2 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) fnord: Build G1 Fnord

5) ts52: Trade G1 Y1 Ts52

6) fnord: Discover G1 Fnord B1 Eris

7) ts52: Build G1 Ts52

8) fnord: Build G1 Eris

9) ts52: Build G2 Ts52

10) fnord: Build G2 Eris

11) ts52: D G2 Ts52 B3 Grover

12) fnord: Trade G2 R2 Eris

13) ts52: Trade G1 R1 Ts52

14) fnord: Build G1 Fnord

15) ts52: Build G2 Grover

16) fnord: Trade G1 Y1 Eris

17) ts52: Trade G2 Y2 Grover

18) fnord: Build R1 Eris

19) ts52: Build R1 Ts52

20) fnord: Build Y2 Eris

21) ts52: Build Y3 Grover

22) fnord: Trade Y2 G2 Eris

23) ts52: Discover Y2 Grover G1 Robin

24) fnord: Sacrifice Y1 Eris
Move R2 Eris Fnord

25) ts52: Build G2 Grover

26) fnord: Trade G1 Y1 Fnord

27) ts52: Build Y2 Robin

28) fnord: Build R2 Fnord

29) ts52: M Y3 Grover Eris

30) fnord: Sacrifice G2 Eris
Build R2 Eris
Build R3 Eris

31) ts52: Sacrifice R1 Ts52
Attack R3 Eris

32) fnord: Build R1 Eris
Catastrophe Eris Red

33) ts52: Trade Y3 R3 Eris

34) fnord: Sacrifice Y1 Fnord
Discover G1 Eris B3 Discordia

35) ts52: Move Y1 Ts52 Grover

36) fnord: Build G1 Discordia

37) ts52: Trade G2 R2 Grover

38) fnord: Trade G1 Y1 Discordia

39) ts52: Build Y3 Grover

40) fnord: Build Y3 Discordia

41) ts52: Trade Y3 G3 Grover

42) fnord: Build G1 Discordia

43) ts52: Build Y3 Grover

44) fnord: Trade Y3 R3 Discordia

45) ts52: Build Y3 Grover

46) fnord: Build Y3 Discordia

47) ts52: Move Y3 Grover Eris

48) fnord: Build R1 Discordia

49) ts52: Sacrifice G2 Grover
Build R1 Eris
Build R3 Grover

50) fnord: Sacrifice Y1 Discordia
Move R3 Discordia Robin

51) ts52: Sacrifice Y2 Robin
Move Y2 Robin Grover
Discover R3 Grover B1 Gonzo

52) fnord: Trade G1 B1 Discordia

53) ts52: Move Y2 Grover Gonzo

54) fnord: Build B2 Discordia

55) ts52: Sacrifice G3 Grover
Build Y1 Gonzo
Build Y2 Eris
Build G1 Ts52

56) fnord: Build G2 Discordia

57) ts52: Sacrifice Y3 Grover
Move Y2 Eris Discordia
Move Y1 Gonzo Discordia
Move Y2 Gonzo Discordia
Catastrophe Discordia Yellow

58) fnord: Trade G1 Y1 Discordia

59) ts52: Move G1 Ts52 Grover

60) fnord: Build Y2 Discordia

61) ts52: M R3 Eris Discordia

62) fnord: Build B2 Discordia
Catastrophe Discordia B
	fnord: Wait, what?  The system message says you moved an R3 from eris to discordia.  How did you do that?
	ts52: I have yellow in discordia, and discordia is small and eris is large, so they're connected
	fnord: I know they're connected.  I thought that either the ship had to be Yellow or the origin system had to be Yellow in order to move.  I didn't know it worked if you just had a Yellow ship in your destination system.
	fnord: Oh, good grief, have I been playing that wrong all this time?  I just re-read the rules, and you can use the power of any color you have in the system.  So, as long as you have a Yellow ship in a system, *any* piece can move from that system to another one.  Not that it will help me now, but it's good to know.
	ts52: That's correct. Any of your ships in a system can use any of your ships colors (in that system) or the system color(s)

63) ts52: Move G1 Grover Eris

64) fnord: Build G1 Fnord

65) ts52: Build G2 Ts52

66) fnord: Move G1 Fnord Robin

67) ts52: B G2 Eris

68) fnord: Build R1 Robin

69) ts52: Build R3 Eris

70) fnord: Trade R2 Y2 Fnord

71) ts52: Move G2 Eris Grover

72) fnord: Build R2 Fnord

73) ts52: Sacrifice G3 Ts52
Build G2 Eris
Build G3 Grover
Build G3 Ts52

74) fnord: Trade R2 B2 Fnord

75) ts52: Sacrifice G3 Grover
Build G3 Grover
Build R2 Gonzo
Build Y1 Eris

76) fnord: Move B2 Fnord Robin

77) ts52: Build Y2 Grover

78) fnord: Trade R3 Y3 Robin

79) ts52: Move Y1 Grover Gonzo

80) fnord: Build B1 Robin

81) ts52: Sacrifice Y2 Grover
Move Y1 Gonzo Fnord
Move Y1 Eris Fnord
Catastrophe Fnord Yellow

82) fnord: Build Y1 Robin

83) ts52: Sacrifice Y3 Eris
Move G2 Grover Robin
Move G1 Eris Grover
Move G1 Grover Robin
Catastrophe Robin Green

84) fnord: Build R1 Fnord

85) ts52: Trade R2 Y2 Grover

86) fnord: Trade R2 Y2 Fnord

87) ts52: Build Y1 Grover

88) fnord: Build R2 Fnord

89) ts52: Sacrifice Y2 Grover
Move R1 Eris Fnord
Move R2 Gonzo Fnord
Catastrophe Fnord Red

90) fnord: Build G1 Fnord

91) ts52: Sacrifice Y1 Grover
Move R3 Eris Fnord

92) fnord: Discover G3 Fnord B2 Sink

93) ts52: Sacrifice R3 Gonzo
Attack G1 Fnord
Attack Y2 Fnord
Pass
	ts52: Thanks for the game.
	fnord: Thank you, as well.



19425)
Variants: "Hard time"
Started: 2011.3.17, Ended: 2011.3.30
Participants: ajo (S), Aristos (N)
Winner: ajo

1) Aristos: Homeworld B1 Y2 G3

2) ajo: Homeworld B3 R2 G3

3) Aristos: Build G1 Aristos

4) ajo: Build G1 Ajo

5) Aristos: Trade G3 R3 Aristos

6) ajo: Trade G3 Y3 Ajo

7) Aristos: Build R1 Aristos

8) ajo: Build Y1 Ajo

9) Aristos: Build R1 Aristos

10) ajo: Trade Y1 R1 Ajo

11) Aristos: Discover R1 Aristos Y3 Banana

12) ajo: Build R2 Ajo

13) Aristos: Discover R1 Banana Y1 Lemon

14) ajo: Trade R1 G1 Ajo

15) Aristos: Build G2 Aristos

16) ajo: Build G2 Ajo

17) Aristos: Sacrifice G2 Aristos
Build G2 Aristos
Build R1 Lemon

18) ajo: Move G2 Ajo Lemon

19) Aristos: Move R1 Lemon Ajo

20) ajo: Sacrifice R2 Ajo
Attack R1N Ajo
Attack R1N Lemon
	ajo: Ooh, I think that was a mistake...

21) Aristos: Discover R1 Aristos G3 Lime

22) ajo: Build R2 Lemon

23) Aristos: Build R2 Lime

24) ajo: Build R3 Ajo

25) Aristos: Build R3 Aristos

26) ajo: Discover R3 Ajo B1 Alpha

27) Aristos: Trade G1 Y1 Aristos

28) ajo: Trade R3 Y3 Alpha

29) Aristos: Move Y1 Aristos Lime

30) ajo: Build R3 Ajo

31) Aristos: Build Y1 Lime

32) ajo: Trade R3 B3 Ajo

33) Aristos: Build Y2 Lime

34) ajo: Discover R1 Lemon Y3 Schoolbus

35) Aristos: Move R3 Aristos Schoolbus

36) ajo: Sacrifice G2 Lemon
Build R3 Lemon
Build Y2 Alpha

37) Aristos: Sacrifice Y2 Lime
Move Y1 Lime Alpha
Move Y1 Lime Alpha
Catastrophe Alpha Yellow

38) ajo: Move R3 Lemon Lime

39) Aristos: Sacrifice R2 Lime
Attack R1 Schoolbus
Pass

40) ajo: Attack R1N Lime

41) Aristos: Build R2 Aristos

42) ajo: Sacrifice Y3 Ajo
Move R2 Lemon Lime
Move R2 Lime Aristos
Move R1 Lime Aristos
Catastrophe Aristos Red

43) Aristos: Build G1 Aristos

44) ajo: Trade G1 Y1 Ajo

45) Aristos: Move R3 Schoolbus Aristos

46) ajo: Build Y1 Ajo

47) Aristos: Trade G2 Y2 Aristos

48) ajo: Build B1 Ajo

49) Aristos: Build R1 Aristos

50) ajo: Build R2 Lime

51) Aristos: Build G1 Aristos

52) ajo: Build G2 Ajo

53) Aristos: Build G2 Aristos

54) ajo: Sacrifice B1 Ajo
Trade R3 B3 Lime

55) Aristos: Build Y1 Aristos

56) ajo: Sacrifice G2 Ajo
Build Y2 Ajo
Build R2 Lime

57) Aristos: Discover R1 Aristos G3 Kiwi

58) ajo: Discover Y1 Ajo B1 Alpha

59) Aristos: Move Y1 Aristos Kiwi

60) ajo: Sacrifice Y1 Ajo
Move Y1 Alpha Lime

61) Aristos: Sacrifice G2 Aristos
Build R3 Kiwi
Build R3 Schoolbus

62) ajo: Build G2 Ajo

63) Aristos: Build G2 Aristos

64) ajo: Sacrifice G2 Ajo
Build Y1 Lime
Build Y3 Ajo

65) Aristos: Sacrifice Y2 Aristos
Move G1 Aristos Lime
Move G1 Aristos Lime

66) ajo: Sacrifice Y3 Ajo
Move Y1 Lime Aristos
Move Y1 Lime Aristos
Discover B3 Lime B1 Alpha
	ajo: Hmm, clever.

67) Aristos: Sacrifice R3 Kiwi
Attack Y1 Aristos
Attack Y1 Aristos
Pass

68) ajo: Build R3 Ajo

69) Aristos: Build G2 Lime
Catastrophe Lime Green

70) ajo: Trade B3 G3 Alpha

71) Aristos: Build Y2 Kiwi

72) ajo: Move R1 Ajo Alpha

73) Aristos: Build Y3 Kiwi

74) ajo: Build Y3 Ajo

75) Aristos: Sacrifice Y2 Kiwi
Discover R1 Kiwi G1 Pear
Discover Y1 Aristos G3 Watermelon

76) ajo: Move R3 Ajo Pear

77) Aristos: Build R2 Pear

78) ajo: Build R2 Alpha

79) Aristos: Build Y2 Watermelon

80) ajo: Sacrifice Y2 Ajo
Move R3 Pear Watermelon
Discover R1 Alpha B3 Beta

81) Aristos: Sacrifice Y1 Watermelon
Discover Y2 Watermelon G2 Lime

82) ajo: Build G1 Alpha

83) Aristos: Build G2 Aristos

84) ajo: Trade R1 Y1 Beta

85) Aristos: Discover R1 Schoolbus B1 Plum

86) ajo: Sacrifice G3 Alpha
Build G3 Alpha
Build Y2 Beta
Build B2 Ajo

87) Aristos: Trade G2 B2 Aristos

88) ajo: Sacrifice Y3 Ajo
Move B2 Ajo Alpha
Move Y1 Beta Aristos
Move Y2 Beta Aristos
Catastrophe Aristos Yellow
	ajo: Bring it on!

89) Aristos: Build B2 Aristos
	Aristos: You first...
	ajo: Okay.

90) ajo: Trade B3 Y3 Ajo

91) Aristos: Sacrifice Y1 Kiwi
Move B2 Aristos Lime

92) ajo: Sacrifice G3 Alpha
Build G2 Ajo
Build G3 Alpha
Build Y1 Ajo

93) Aristos: Sacrifice Y3 Kiwi
Move R1 Plum Ajo
Move R1 Pear Ajo
Move R2 Pear Ajo
Catastrophe Ajo Red

94) ajo: Sacrifice B2 Alpha
Trade G1 B1 Alpha
Trade R3 B3 Watermelon

95) Aristos: Trade B2 Y2 Aristos

96) ajo: Trade G2 B2 Ajo

97) Aristos: Move B2 Lime Ajo
	ajo: Check.

98) ajo: Sacrifice R2 Alpha
Attack B2N Ajo
Pass

99) Aristos: Move Y2 Lime Ajo
	Aristos: That's mate. Well done. 


100) ajo: Sacrifice Y3 Ajo
Move B2 Ajo Aristos
Move B2 Ajo Aristos
Move B3 Watermelon Aristos
Catastrophe Aristos Blue
	ajo: Well, you didn't have to let me do that, you know. I imagine you missed that Alpha isn't adjacent to your homeworld. But still, I was feeling good about the game at this point. Well played.

	ajo: What I said last time: Alpha wasn't adjacent to your homeworld. But since you gave me your blue ship last turn, I can end it now.
	Aristos: DOH! Yep, I misread that.


19426)
Started: 2011.3.18, Ended: 2011.3.24
Participants: ts52 (S), Daarck (N)
Winner: ts52

1) Daarck: Homeworld G1 Y2 B3

2) ts52: Homeworld Y1 B3 G3

3) Daarck: Build B1 Daarck
	ts52: Have a good game!
	Daarck: Thank you! Hope you have one too.

4) ts52: Build G1 Ts52

5) Daarck: Build B1 Daarck

6) ts52: Trade G1 B1 Ts52

7) Daarck: Trade B1 Y1 Daarck

8) ts52: B G1 Ts52

9) Daarck: Discover Y1 Daarck G3 Marco

10) ts52: Discover B1 Ts52 G2 Kermit

11) Daarck: Move B1 Daarck Marco

12) ts52: Build G1 Ts52

13) Daarck: Build Y1 Marco

14) ts52: Discover G1 Ts52 B2 Grover

15) Daarck: Build Y2 Marco

16) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Grover
Build G3 Ts52

17) Daarck: Trade Y1 R1 Marco
	Daarck: Wow!

18) ts52: Trade G2 R2 Grover

19) Daarck: Build R1 Marco

20) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Grover

21) Daarck: Move R1 Marco Daarck

22) ts52: Trade G3 Y3 Grover

23) Daarck: Move B1 Marco Daarck

24) ts52: S G3 Ts52
B G3 Ts52
B G3 Grover
B Y1 Grover
	Daarck: Hmmm...this sure doesn't seem to be looking good for me, does it?

25) Daarck: Discover Y2 Marco Y2 Polo

26) ts52: Move Y3 Grover Marco
	Daarck: Yup, not looking good at all.

27) Daarck: Build Y3 Marco

28) ts52: Sacrifice R2 Grover
Attack Y3 Marco
Attack R1 Marco

29) Daarck: Sacrifice R1 Daarck
Attack R1 Marco

30) ts52: Trade G3 R3 Grover

31) Daarck: Move R1 Marco Daarck

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build Y3 Grover

33) Daarck: Move Y2 Polo Marco
Catastrophe Marco Y

34) ts52: Discover G3 Grover Y3 Bigbird

35) Daarck: Trade B1 Y1 Daarck

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build R1 Grover

37) Daarck: Build R1 Daarck

38) ts52: Move R1 Grover Bigbird

	Daarck: At this point, with the monopoly you have on the green and my inability to move or create more yellows without you blowing me up, I think I need to concede.

Thank you so much. It was a great game. I learned a lot.
	ts52: No problem. Happy to play. Thanks for the game!


19460)
Variants: "Hard time"
Started: 2011.3.21, Ended: 2011.3.24
Participants: alexcobo (S), sompm (N)
Winner: sompm

1) sompm: Homeworld G3 B2 Y3



19379)
Started: 2011.3.21, Ended: 2011.3.24
Participants: Remneb (S), dreskyn (N)
Winner: Remneb



19378)
Variants: "Hard time"
Started: 2011.3.23, Ended: 2011.4.4
Participants: SilentTitan (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 R2 G3

2) SilentTitan: Homeworld B1 R2 G3

3) ajo: Build G1 Ajo

4) SilentTitan: Build G1 Silenttitan

5) ajo: Trade G3 Y3 Ajo

6) SilentTitan: Trade G1 Y1 Silenttitan

7) ajo: Build Y1 Ajo

8) SilentTitan: Build G1 Silenttitan

9) ajo: Discover Y1 Ajo B1 Alpha

10) SilentTitan: Trade G1 B1 Silenttitan

11) ajo: Build G1 Ajo

12) SilentTitan: Build B2 Silenttitan

13) ajo: Move G1 Ajo Alpha

14) SilentTitan: Discover B2 Silenttitan G3 Glomar

15) ajo: Build Y1 Ajo

16) SilentTitan: Build B2 Glomar

17) ajo: Build Y2 Alpha

18) SilentTitan: Build B2 Glomar

19) ajo: Trade Y2 R2 Alpha

20) SilentTitan: Trade Y1 R1 Silenttitan

21) ajo: Build Y1 Alpha

22) SilentTitan: Build B3 Silenttitan

23) ajo: Build Y2 Ajo

24) SilentTitan: Trade B2 Y2 Glomar

25) ajo: Trade Y2 B2 Ajo

26) SilentTitan: Trade B3 Y3 Silenttitan

27) ajo: Discover B2 Ajo G1 Beta

28) SilentTitan: Discover B1 Silenttitan G3 Glory

29) ajo: Build B3 Beta

30) SilentTitan: Sacrifice Y2 Glomar
Move B2 Glomar Beta
Move B1 Glory Beta
Catastrophe Beta Blue

31) ajo: Build Y2 Alpha

32) SilentTitan: Trade B2 Y2 Glomar

33) ajo: Discover Y1 Alpha G3 Beta

34) SilentTitan: Discover G3 Silenttitan Y3 Sol

35) ajo: Build Y2 Beta
	ajo: Voiding your homeworld of green? Hmm.

36) SilentTitan: Build G1 Sol

37) ajo: Build G2 Alpha

38) SilentTitan: Move G1 Sol Silenttitan

39) ajo: Build G2 Ajo

40) SilentTitan: Build R1 Silenttitan

41) ajo: Sacrifice Y2 Alpha
Move R2 Alpha Beta
Move R2 Beta Silenttitan
Catastrophe Silenttitan Red

42) SilentTitan: Sacrifice G3 Sol
Build Y2 Silenttitan
Build Y3 Glomar
Build G2 Silenttitan

43) ajo: Trade Y3 R3 Ajo

44) SilentTitan: Trade Y2 R2 Silenttitan
	ajo: Hmm. That wouldn't have lost me the game immediately, but I guess I do have to think about it a bit more.
	SilentTitan: dang ... I did my turn as fast as possible 

45) ajo: Sacrifice G2 Alpha
Build Y2 Alpha
Build Y3 Ajo
	ajo: There, that feels safer.
	ajo: With my previous move, I assume you'd have catastrophed yellow, and then raced to move your y3 in before I could get a big ship back. I'd have countered by moving my g1 into your homeworld (threatening a green catastrophe if your y3 moved out), but I'd still probably have lost after a few more moves.

46) SilentTitan: Build R1 Silenttitan
	SilentTitan: I agree with you. That was what I was aiming for. 

47) ajo: Trade Y1 B1 Alpha

48) SilentTitan: Move Y3 Glomar Alpha

49) ajo: Sacrifice Y2 Alpha
Discover B1 Alpha Y2 Gamma
Move G1 Alpha Gamma

50) SilentTitan: Move G1 Silenttitan Ajo

51) ajo: Sacrifice G2 Ajo
Build B2 Gamma
Build B2 Gamma

52) SilentTitan: Sacrifice Y3 Alpha
Move Y2 Glomar Silenttitan
Move Y2 Silenttitan Ajo
Move Y3 Silenttitan Ajo
Catastrophe Ajo Yellow

53) ajo: Sacrifice Y2 Beta
Move B1 Gamma Silenttitan
Move B2 Gamma Silenttitan
	ajo: Check.

	ajo: Checkmate. Good game. :)


19369)
Started: 2011.3.25, Ended: 2011.3.28
Participants: lorgar (S), TwoShort (N)
Winner: lorgar



19493)
Variants: "Hard time"
Started: 2011.3.25, Ended: 2011.4.6
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B3 G3

2) lorgar: Homeworld Y1 B2 G3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build G1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Discover G1 Lorgar B3 Ana

7) SilentTitan: Build Y1 Silenttitan

8) lorgar: Build G1 Ana

9) SilentTitan: Build Y2 Silenttitan

10) lorgar: Build G1 Lorgar

11) SilentTitan: Discover Y2 Silenttitan B1 Provo

12) lorgar: Build G2 Ana

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Provo
Build Y2 Provo
Build Y3 Silenttitan

14) lorgar: Discover G1 Lorgar Y3 Mordecaizone

15) SilentTitan: Trade Y3 G3 Silenttitan

16) lorgar: Trade G1 R1 Ana

17) SilentTitan: Build Y3 Silenttitan

18) lorgar: Build G1 Lorgar

19) SilentTitan: Discover Y2 Provo G3 Zion

20) lorgar: Trade G3 Y3 Lorgar

21) SilentTitan: Sacrifice Y3 Silenttitan
Move Y2 Zion Lorgar
Move Y2 Provo Ana
Move Y2 Ana Lorgar
Catastrophe Lorgar Yellow

22) lorgar: Build G2 Lorgar

23) SilentTitan: Trade Y2 G2 Provo

24) lorgar: Trade G1 Y1 Lorgar

25) SilentTitan: Build Y2 Silenttitan

26) lorgar: Trade G2 Y2 Ana

27) SilentTitan: Trade Y1 B1 Silenttitan

28) lorgar: Build G1 Mordecaizone

29) SilentTitan: Discover B1 Silenttitan Y1 Sol

30) lorgar: Build Y2 Ana

31) SilentTitan: Sacrifice G2 Provo
Build B1 Sol
Build B1 Sol

32) lorgar: Move R1 Ana Sol

33) SilentTitan: Sacrifice Y2 Silenttitan
Move B1 Sol Lorgar
Move B1 Sol Lorgar

34) lorgar: Sacrifice Y2 Ana
Discover G1 Mordecaizone R1 Lama
Discover G1 Mordecaizone R1 Lami

35) SilentTitan: Move B1 Sol Lorgar
Catastrophe Lorgar Blue



19457)
Variants: "Hard time"
Started: 2011.3.25, Ended: 2011.5.8
Participants: Jesse (S), lorgar (N)
Winner: Jesse

1) lorgar: Homeworld B2 Y3 G3

2) Jesse: Homeworld B3 R1 G3

3) lorgar: Build G1 Lorgar

4) Jesse: Build G1 Jesse

5) lorgar: Discover G1 Lorgar B1 Mordenkey

6) Jesse: Trade G1 Y1 Jesse

7) lorgar: Build G1 Mordenkey

8) Jesse: Build Y1 Jesse

9) lorgar: Trade G1 Y1 Mordenkey

10) Jesse: Trade Y1 R1 Jesse

11) lorgar: Build G1 Lorgar

12) Jesse: Build R1 Jesse

13) lorgar: Build G1 Mordenkey

14) Jesse: Build G2 Jesse

15) lorgar: Build G2 Lorgar

16) Jesse: Discover R1 Jesse B2 Grover

17) lorgar: Trade G2 R2 Lorgar

18) Jesse: Move G2 Jesse Grover

19) lorgar: Discover G1 Mordenkey B2 Amandos

20) Jesse: Build R2 Grover

21) lorgar: Build G2 Amandos

22) Jesse: Trade R2 Y2 Grover

23) lorgar: Trade G2 R2 Amandos

24) Jesse: Discover R1 Jesse Y2 Bert

25) lorgar: Build Y1 Mordenkey

26) Jesse: Build Y2 Grover

27) lorgar: Sacrifice Y1 Mordenkey
Move Y1 Mordenkey Amandos
Pass

28) Jesse: Move Y2 Grover Mordenkey

29) lorgar: Build G2 Amandos

30) Jesse: Sacrifice R1 Grover
Attack G1 Mordenkey

31) lorgar: Discover G2 Amandos G3 Lannaman

32) Jesse: Build G2 Jesse

33) lorgar: Trade G1 R1 Lorgar

34) Jesse: Sacrifice G3 Jesse
Build G1 Mordenkey
Build Y1 Mordenkey
Build G3 Jesse

35) lorgar: Sacrifice G2 Lannaman
Build G2 Lorgar
Build G3 Amandos

36) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y3 Jesse
Build Y3 Grover

37) lorgar: Trade G3 B3 Lorgar

38) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build G3 Grover
Build R2 Bert

39) lorgar: Sacrifice G3 Amandos
Build G3 Amandos
Build R3 Amandos
Pass

40) Jesse: Move R1 Bert Mordenkey

41) lorgar: Move R3 Amandos Mordenkey

42) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R3 Mordenkey
Build R3 Bert

43) lorgar: Move R1 Lorgar Mordenkey
Catastrophe Mordenkey Red

44) Jesse: Sacrifice Y3 Grover
Move G1 Mordenkey Amandos
Move G1 Mordenkey Amandos
Move Y3 Jesse Amandos
Catastrophe Amandos G

45) lorgar: Sacrifice Y1 Amandos
Discover R2 Amandos G1 Istari

46) Jesse: Sacrifice G2 Grover
Build Y1 Grover
Build Y3 Mordenkey

47) lorgar: Trade B3 G3 Lorgar

48) Jesse: Move Y3 Amandos Istari

49) lorgar: Build R1 Lorgar

50) Jesse: Build G1 Grover

51) lorgar: Trade R1 B1 Lorgar

52) Jesse: Trade G1 B1 Grover

53) lorgar: Discover B1 Lorgar G1 Croft

54) Jesse: Sacrifice G3 Jesse
Build G1 Grover
Build G2 Jesse
Build G3 Grover

55) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build B2 Croft
Build B3 Croft

56) Jesse: Sacrifice Y3 Mordenkey
Move G1 Grover Mordenkey
Discover G3 Grover Y3 Bigbird
Move B1 Grover Croft
Catastrophe Croft B

57) lorgar: Build R1 Istari
	lorgar: no, definitely I've lost initiative a loooong time ago...

58) Jesse: Sacrifice R2 Bert
Attack R1 Istari
Attack R2 Istari
	Jesse: When you pushed your R3 to Mordenkey, that was a god move that threatened to put me on the defensive.  Instead of pushing another red into the system and causing a catastrophe, a better move would have been to sacrifice an R2 to capture my R3 and Y2, leaving me with only smalls in that system and forcing me to use *my* turn to blow the reds.  As it was, using your turn to blow the reds gave me the opportunity to attack and squeeze out your only remaining yellow ship, leaving you crippled.

59) lorgar: Discover G2 Lorgar B1 Tor

60) Jesse: Sacrifice G3 Bigbird
Build G1 Mordenkey
Build G3 Mordenkey
Build Y3 Mordenkey

61) lorgar: Move G3 Lorgar Mordenkey
Catastrophe Mordenkey Green

62) Jesse: Move Y3 Mordenkey Lorgar

63) lorgar: Build G1 Tor

64) Jesse: Sacrifice R1 Istari
Attack R2 Lorgar

	lorgar: thanks for the game
	Jesse: Likewise.


19380)
Started: 2011.3.26, Ended: 2011.5.2
Participants: ducttapeDj (S), mathochist (N)
Winner: ducttapeDj



19509)
Variants: "Hard time"
Started: 2011.3.27, Ended: 2011.4.19
Participants: SilentTitan (S), Uglyfoot (N)
Winner: SilentTitan

1) Uglyfoot: Homeworld B3 Y1 G3

2) SilentTitan: Homeworld R3 B2 G3
	Uglyfoot: have a good game.

3) Uglyfoot: Build G1 Uglyfoot
	SilentTitan: you too

4) SilentTitan: Build G1 Silenttitan

5) Uglyfoot: Trade G1 R1 Uglyfoot

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Uglyfoot: Build G1 Uglyfoot

8) SilentTitan: Build Y1 Silenttitan

9) Uglyfoot: Discover G1 Uglyfoot Y2 Colony

10) SilentTitan: Build Y2 Silenttitan

11) Uglyfoot: Build G1 Uglyfoot

12) SilentTitan: Discover Y2 Silenttitan G1 Valley

13) Uglyfoot: Build G2 Colony

14) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Valley
Build Y3 Valley
Build Y3 Silenttitan

15) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Colony
Build G2 Uglyfoot
Build G3 Uglyfoot

16) SilentTitan: Trade Y3 G3 Silenttitan

17) Uglyfoot: Discover G2 Colony B1 Outpost

18) SilentTitan: Build G3 Silenttitan

19) Uglyfoot: Trade G2 R2 Outpost

20) SilentTitan: Build Y3 Silenttitan

21) Uglyfoot: Trade G3 Y3 Uglyfoot

22) SilentTitan: Sacrifice Y3 Silenttitan
Discover Y2 Valley B2 Rare
Discover Y3 Valley R2 Burst
Discover G3 Silenttitan B1 Sync

23) Uglyfoot: Build G2 Colony

24) SilentTitan: Sacrifice Y1 Silenttitan
Move G3 Sync Colony
Catastrophe Colony Green

25) Uglyfoot: Discover G2 Uglyfoot Y2 Nexus

26) SilentTitan: Trade Y2 R2 Rare

27) Uglyfoot: Build G1 Nexus

28) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Burst
Build Y2 Burst
Build Y3 Silenttitan

29) Uglyfoot: Trade Y3 G3 Uglyfoot

30) SilentTitan: Build Y3 Valley

31) Uglyfoot: Sacrifice G3 Uglyfoot
Build G2 Uglyfoot
Build G2 Nexus
Build G3 Uglyfoot

32) SilentTitan: Trade Y3 G3 Silenttitan

33) Uglyfoot: Discover G2 Uglyfoot B2 Themall

34) SilentTitan: Build Y3 Silenttitan

35) Uglyfoot: Sacrifice G3 Uglyfoot
Build G3 Uglyfoot
Build G3 Themall
Build R1 Outpost

36) SilentTitan: Move Y3 Valley Nexus



19527)
Variants: "Hard time"
Started: 2011.3.28, Ended: 2011.4.13
Participants: sompm (S), Subhan64 (N)
Winner: Subhan64

1) Subhan64: Homeworld B3 Y1 G3

2) sompm: Homeworld G3 B2 Y3

3) Subhan64: Build G1 Subhan64

4) sompm: Build Y1 Sompm

5) Subhan64: Trade G1 Y1 Subhan64

6) sompm: Build Y2 Sompm

7) Subhan64: Build Y2 Subhan64



19534)
Variants: "Hard time"
Started: 2011.3.29, Ended: 2011.5.6
Participants: Uglyfoot (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B3 R2 G3

2) Uglyfoot: Homeworld B3 R1 G3

3) SilentTitan: Build G1 Silenttitan

4) Uglyfoot: Build G1 Uglyfoot

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Uglyfoot: Trade G1 Y1 Uglyfoot

7) SilentTitan: Build G1 Silenttitan

8) Uglyfoot: Build G1 Uglyfoot

9) SilentTitan: Discover G1 Silenttitan Y1 Sol

10) Uglyfoot: Build Y2 Uglyfoot

11) SilentTitan: Build Y2 Silenttitan

12) Uglyfoot: Discover Y2 Uglyfoot G2 Second

13) SilentTitan: Discover G1 Sol Y3 Sunstrike

14) Uglyfoot: Build Y1 Second

15) SilentTitan: Discover Y1 Silenttitan G1 Moonflow

16) Uglyfoot: Discover Y2 Second B1 Third

17) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Moonflow
Build Y3 Moonflow
Build Y3 Silenttitan

18) Uglyfoot: Move Y1 Second Moonflow
Catastrophe Moonflow Y

19) SilentTitan: Trade Y3 G3 Silenttitan

20) Uglyfoot: Discover G1 Uglyfoot Y2 Nexus

21) SilentTitan: Build G1 Sunstrike

22) Uglyfoot: Build G2 Uglyfoot

23) SilentTitan: Discover G1 Sunstrike B2 West

24) Uglyfoot: Build G2 Nexus

25) SilentTitan: Build G2 West

26) Uglyfoot: Trade G2 R2 Uglyfoot

27) SilentTitan: Trade G2 R2 West

28) Uglyfoot: Build G2 Uglyfoot

29) SilentTitan: Build G2 Silenttitan

30) Uglyfoot: Move G3 Uglyfoot West

31) SilentTitan: Sacrifice G2 Silenttitan
Build G2 West
Build G3 West
Catastrophe West Green

32) Uglyfoot: Build G1 Uglyfoot

33) SilentTitan: Build G2 Silenttitan

34) Uglyfoot: Build G3 Uglyfoot

35) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Sunstrike Nexus
Move G1 Nexus Uglyfoot
Catastrophe Uglyfoot Green

36) Uglyfoot: Move G1 Nexus Third

37) SilentTitan: Trade G2 Y2 Silenttitan

38) Uglyfoot: Trade R2 G2 Uglyfoot

39) SilentTitan: Sacrifice Y2 Silenttitan
Move R2 West Third
Pass

40) Uglyfoot: Move G1 Third Silenttitan

41) SilentTitan: Attack G1 Silenttitan South

42) Uglyfoot: Move Y2 Third Nexus

43) SilentTitan: Trade G1 Y1 Silenttitan

44) Uglyfoot: Discover G2 Nexus B1 Fourth

45) SilentTitan: Trade R2 Y2 Third

46) Uglyfoot: Build Y1 Uglyfoot

47) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Third
Build Y3 Silenttitan
Build Y3 Silenttitan

48) Uglyfoot: Move Y2 Nexus Fourth

49) SilentTitan: Trade Y3 R3 Silenttitan

50) Uglyfoot: Build Y2 Fourth

51) SilentTitan: Trade Y3 G3 Silenttitan

52) Uglyfoot: Discover Y2 Fourth B2 Fifth

53) SilentTitan: Move R3 Silenttitan Fourth

54) Uglyfoot: Sacrifice G2 Fourth
Build Y3 Fifth
Build Y3 Fifth

55) SilentTitan: Sacrifice Y3 Third
Move Y2 Third Fifth
Move R3 Fourth Fifth
Move R3 Fifth Uglyfoot
Catastrophe Fifth Yellow



19508)
Started: 2011.3.29, Ended: 2011.4.15
Participants: lorgar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) lorgar: Homeworld B3 Y2 G3

3) TwoShort: Build G1 Twoshort
	lorgar: thanks for the game, it is always a pleasure to learn from you.

4) lorgar: Build G1 Lorgar

5) TwoShort: Trade G1 Y1 Twoshort

6) lorgar: Discover G1 Lorgar B1 Bridge

7) TwoShort: Build G1 Twoshort

8) lorgar: Build G1 Lorgar

9) TwoShort: Discover G1 Twoshort Y2 Yolonda

10) lorgar: Trade G1 R1 Lorgar

11) TwoShort: Build Y1 Twoshort

12) lorgar: Build G1 Bridge

13) TwoShort: Build G2 Twoshort

14) lorgar: Trade G1 Y1 Bridge

15) TwoShort: Discover Y1 Twoshort G2 Grogar

16) lorgar: Build G1 Bridge

17) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Yolonda

18) lorgar: Trade G1 R1 Bridge

19) TwoShort: Discover G1 Yolonda Y3 Yellonia

20) lorgar: Move R1 Bridge Grogar

21) TwoShort: Sacrifice G3 Twoshort
Build Y2 Twoshort
Build Y3 Grogar
Build Y3 Twoshort

22) lorgar: Move G1 Bridge Grogar

23) TwoShort: Trade Y2 R2 Twoshort

24) lorgar: Trade Y1 G1 Bridge

25) TwoShort: Sacrifice G3 Yolonda
Build G3 Yellonia
Build G3 Twoshort
Build Y1 Twoshort

26) lorgar: Build R2 Lorgar

27) TwoShort: Sacrifice R2 Twoshort
Attack R1 Grogar
Attack G1 Grogar

28) lorgar: Trade R2 Y2 Lorgar

29) TwoShort: Sacrifice G2 Twoshort
Build R2 Grogar
Build Y2 Grogar

30) lorgar: Move Y2 Lorgar Bridge

31) TwoShort: Move Y3 Grogar Bridge

32) lorgar: Build G2 Lorgar

33) TwoShort: Sacrifice R2 Grogar
Attack Y2 Bridge
Attack G1 Bridge

34) lorgar: Build R2 Lorgar

35) TwoShort: Trade Y3 R3 Twoshort

36) lorgar: Discover R1 Lorgar B1 Mo

37) TwoShort: Sacrifice G3 Yellonia
Build G3 Bridge
Build Y3 Bridge
Build R2 Grogar

38) lorgar: Sacrifice G3 Lorgar
Build R2 Mo
Build R3 Lorgar
Build G3 Lorgar

39) TwoShort: Sacrifice G1 Yellonia
Build Y3 Twoshort

40) lorgar: Trade R2 B2 Lorgar

41) TwoShort: Sacrifice Y3 Twoshort
Move R2 Grogar Mo
Move R1 Grogar Mo
Move G3 Bridge Lorgar
Catastrophe Mo Red
	lorgar: What is the lesson?

42) lorgar: Build G1 Lorgar
Catastrophe Lorgar Green
	TwoShort: Concentrate on growing in the early game. Always be in position to grow, particularly green and yellow.  It's a big advantage to have the only usable green factory ; It's also a big advantage to have most of the big yellow.

43) TwoShort: Trade Y3 B3 Bridge

44) lorgar: Trade R3 G3 Lorgar

45) TwoShort: Sacrifice Y3 Bridge
Move G1 Bridge Lorgar
Move Y2 Bridge Lorgar
Move B3 Bridge Lorgar

46) lorgar: Build B1 Lorgar
Catastrophe Lorgar Blue

47) TwoShort: Sacrifice Y2 Lorgar
Move G3 Twoshort Lorgar
Move G2 Twoshort Lorgar
Catastrophe Lorgar Green

	lorgar: thanks for the game


19498)
Started: 2011.3.31, Ended: 2011.4.6
Participants: apollodude217 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3
	apollodude217: homeworld y1 b2 g3
	apollodude217: sry I'm new; do I type in commands here???
	ts52: nope, commands  go up top. but the box isn't there yet, because it's my turn. :)



19567)
Started: 2011.4.1, Ended: 2011.4.6
Participants: ts52 (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 Y3 G3
	lorgar: No one expects the spanish Inquisition!

2) ts52: Homeworld B1 Y2 G3

3) lorgar: Build G1 Lorgar
	ts52: Hehe. Have a good game!

4) ts52: Build G1 Ts52

5) lorgar: Discover G1 Lorgar B1 Atmazone

6) ts52: Trade G1 B1 Ts52

7) lorgar: Build G1 Lorgar

8) ts52: Discover B1 Ts52 G3 Kermit

9) lorgar: Build G1 Atmazone

10) ts52: Build G2 Ts52

11) lorgar: Trade G1 Y1 Atmazone

12) ts52: Build B2 Kermit

13) lorgar: Trade G1 R1 Lorgar

14) ts52: Trade B2 R2 Kermit

15) lorgar: Build Y1 Atmazone

16) ts52: Build B2 Kermit

17) lorgar: Discover G1 Atmazone B3 Amarante

18) ts52: Trade B2 Y2 Kermit

19) lorgar: Trade Y1 G1 Atmazone

20) ts52: Build B2 Kermit

21) lorgar: Discover G1 Atmazone B3 Adamante

22) ts52: Discover B2 Kermit G2 Oscar

23) lorgar: Discover Y1 Atmazone B3 Mermoz

24) ts52: Build Y1 Kermit

25) lorgar: Build G1 Amarante

26) ts52: Discover G2 Ts52 Y3 Bigbirg

27) lorgar: Trade G3 Y3 Lorgar

28) ts52: Move Y1 Kermit Oscar

29) lorgar: Sacrifice Y3 Lorgar
Move G1 Adamante Ts52
Move G1 Amarante Ts52
Move G1 Amarante Ts52
Catastrophe Ts52 Green
	ts52: Wow. Well done sir. Not sure how I missed that.
	lorgar: I could not tink of it before it was almost done. Just wanted to annoy you with these three pips stars^^
	ts52: And annoy me you did. :)



19578)
Started: 2011.4.5, Ended: 2011.4.8
Participants: mathochist (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y3 B1 G3



19605)
Started: 2011.4.8, Ended: 2011.4.15
Participants: ts52 (S), lorgar (N)
Winner: ts52

1) lorgar: Homeworld B1 Y2 G3
	lorgar: Are you Mary, queen of scots?

2) ts52: Homeworld Y3 B2 G3
	ts52: No, but there's a penguin on my television.

3) lorgar: Build G1 Lorgar

4) ts52: Build G1 Ts52

5) lorgar: Trade G1 B1 Lorgar

6) ts52: Trade G1 B1 Ts52

7) lorgar: Discover B1 Lorgar G3 Omegacloud

8) ts52: Discover B1 Ts52 G1 Robin

9) lorgar: Build G1 Lorgar

10) ts52: Build B2 Robin

11) lorgar: Trade G1 Y1 Lorgar

12) ts52: Build G1 Ts52

13) lorgar: Build G1 Lorgar

14) ts52: Build G2 Ts52

15) lorgar: Trade G3 Y3 Lorgar

16) ts52: Trade G2 R2 Ts52

17) lorgar: Trade Y3 R3 Lorgar

18) ts52: Build G2 Ts52

19) lorgar: Trade R3 G3 Lorgar

20) ts52: T G2 Y2 Ts52

21) lorgar: Build G2 Lorgar

22) ts52: Move Y2 Ts52 Robin

23) lorgar: Build B2 Omegacloud

24) ts52: Move G1 Ts52 Robin

25) lorgar: Trade B1 Y1 Omegacloud

26) ts52: Sacrifice Y2 Robin
Move G1 Robin Omegacloud
Move G1 Omegacloud Lorgar
Catastrophe Lorgar Green

27) lorgar: Trade Y1 G1 Lorgar

28) ts52: Trade B1 Y1 Robin
	lorgar: XD
touché!

29) lorgar: Build B1 Omegacloud

30) ts52: Move R2 Ts52 Robin

31) lorgar: Trade B2 R2 Omegacloud

32) ts52: Discover R2 Robin Y3 Bigbird

33) lorgar: Build B1 Omegacloud

34) ts52: Move R2 Bigbird Lorgar

	lorgar: ok, I surrender.
	ts52: Thanks for the game.


19520)
Variants: "Hard time"
Started: 2011.4.10, Ended: 2011.5.21
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B3 G3

2) lorgar: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build G1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Discover G1 Lorgar B2 Titania

7) SilentTitan: Build G1 Silenttitan

8) lorgar: Build G1 Titania

9) SilentTitan: Build Y1 Silenttitan

10) lorgar: Trade G1 Y1 Titania

11) SilentTitan: Discover Y1 Silenttitan G1 Icebergia

12) lorgar: Build Y2 Titania

13) SilentTitan: Build Y2 Icebergia

14) lorgar: Trade Y1 R1 Titania

15) SilentTitan: Trade G1 R1 Silenttitan

16) lorgar: Build G1 Lorgar

17) SilentTitan: Build Y1 Silenttitan

18) lorgar: Build G2 Titania

19) SilentTitan: Discover Y2 Icebergia R2 Rain

20) lorgar: Discover G1 Titania Y3 Amandos

21) SilentTitan: Discover Y1 Icebergia G2 Paper

22) lorgar: Discover Y2 Titania B1 Stone

23) SilentTitan: Trade Y1 B1 Silenttitan

24) lorgar: Build R1 Titania

25) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Paper
Build Y2 Rain
Build Y3 Silenttitan

26) lorgar: Sacrifice G1 Amandos
Build Y3 Stone

27) SilentTitan: Trade Y3 G3 Silenttitan

28) lorgar: Build G1 Titania

29) SilentTitan: Sacrifice Y2 Rain
Move Y1 Paper Stone
Move Y1 Silenttitan Stone
Catastrophe Stone Yellow

30) lorgar: Trade G2 Y2 Titania

31) SilentTitan: Trade B1 Y1 Silenttitan

32) lorgar: Move R1 Titania Lorgar

33) SilentTitan: Discover R1 Silenttitan G1 Glow

34) lorgar: Build G2 Titania

35) SilentTitan: Build Y1 Paper

36) lorgar: Sacrifice G3 Lorgar
Build G2 Lorgar
Build G3 Titania
Build G3 Lorgar

37) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Rain
Build Y3 Silenttitan
Build Y3 Silenttitan

38) lorgar: Discover G2 Titania G3 Triforce

39) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Paper Lorgar
Move Y1 Paper Lorgar
Move R1 Glow Silenttitan

40) lorgar: Build R2 Lorgar

41) SilentTitan: Trade Y1 G1 Lorgar
Catastrophe Lorgar Green

42) lorgar: Attack Y1N Lorgar

43) SilentTitan: Trade Y3 G3 Silenttitan

44) lorgar: Sacrifice Y1 Lorgar
Move G3 Titania Lorgar

45) SilentTitan: Discover R1 Silenttitan G1 Hail

46) lorgar: Trade R1 G1 Lorgar

47) SilentTitan: Move Y2 Rain Hail

48) lorgar: Sacrifice G3 Lorgar
Build G2 Titania
Build G2 Titania
Build G3 Lorgar

49) SilentTitan: Build Y1 Hail

50) lorgar: Sacrifice Y2 Titania
Move G2 Titania Hail
Move G2 Titania Hail

51) SilentTitan: Sacrifice Y2 Hail
Discover R1 Hail Y2 Funtime
Discover Y1 Hail Y2 Snow

52) lorgar: Sacrifice G2 Triforce
Build G2 Titania
Build G3 Titania

53) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Rain
Build Y3 Rain
Build Y3 Silenttitan

54) lorgar: Sacrifice G2 Titania
Build G2 Lorgar
Build G3 Titania

55) SilentTitan: Trade Y1 B1 Silenttitan



19628)
Variants: "Hard time"
Started: 2011.4.13, Ended: 2011.4.19
Participants: ajo (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B3 G3

2) ajo: Homeworld Y2 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) ajo: Build G1 Ajo

5) SilentTitan: Trade G1 Y1 Silenttitan

6) ajo: Trade G1 B1 Ajo

7) SilentTitan: Build Y1 Silenttitan

8) ajo: Build B1 Ajo

9) SilentTitan: Discover Y1 Silenttitan Y1 Sol

10) ajo: Discover B1 Ajo G3 Alpha

11) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Silenttitan
Build Y3 Silenttitan

12) ajo: Build B2 Alpha
	ajo: Ouch. I gotta remember to watch out for that one.

13) SilentTitan: Discover Y1 Sol G3 Mer

14) ajo: Discover B1 Ajo Y3 Hah

15) SilentTitan: Build Y3 Mer

16) ajo: Build B2 Alpha

17) SilentTitan: Trade Y3 B3 Silenttitan

18) ajo: Trade B2 R2 Alpha

19) SilentTitan: Discover Y3 Mer B2 Ven

20) ajo: Build G1 Ajo

21) SilentTitan: Build Y3 Mer

22) ajo: Move G1 Ajo Hah

23) SilentTitan: Trade Y3 R3 Ven

24) ajo: Build G1 Ajo
	ajo: Oh. I should have kept something I could move to a big yellow star, huh?

25) SilentTitan: Build Y3 Mer
	SilentTitan: well.... you didn't have much option

26) ajo: Trade G1 R1 Ajo

27) SilentTitan: Move Y3 Mer Ven

28) ajo: Build R1 Ajo

29) SilentTitan: Move R3 Ven Alpha

30) ajo: Build R1 Alpha

31) SilentTitan: Sacrifice Y2 Silenttitan
Move R3 Alpha Ven
Move Y3 Ven Alpha

32) ajo: Build B2 Hah

33) SilentTitan: Sacrifice R3 Ven
Attack R2 Alpha South
Attack B2 Alpha South
Attack R1 Alpha South

34) ajo: Trade B2 Y2 Hah

35) SilentTitan: Attack B1 Alpha South

36) ajo: Build B2 Hah

37) SilentTitan: Sacrifice Y3 Mer
Move R2 Alpha Ajo
Move R1 Alpha Ajo
Move B1 Alpha Ajo
Catastrophe Ajo Red

38) ajo: Move B2 Hah Sol

39) SilentTitan: Sacrifice Y2 Sol
Move B2 Alpha Ajo
Move Y1 Mer Ajo

40) ajo: Sacrifice B2 Sol
Trade Y2 R2 Hah
Trade B1 G1 Hah
	ajo: Interesting choice of catastrophes. In retrospect, I would have expected you to catastrophe yellow at Hah, rather than giving up all your red.

41) SilentTitan: Trade Y1 B1 Ajo
Catastrophe Ajo Blue

42) ajo: Discover G1 Hah B1 Beta
	ajo: Okay, I'm in trouble anyway. I wish SDG had an option to prevent moving into check! :P

43) SilentTitan: Discover Y1 Silenttitan G1 Sol
	SilentTitan: yeah.... I know what you mean.

44) ajo: Build G2 Beta

45) SilentTitan: Build Y1 Alpha

46) ajo: Move R2 Hah Sol

47) SilentTitan: Discover Y1 Sol G3 Sole

	ajo: Yep, that'll be checkmate in two. Good game.


19644)
Variants: "Hard time"
Started: 2011.4.14, Ended: 2011.4.17
Participants: agentofchaos (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y2 B1 G3
	agentofchaos: Hi there, thanks for the challenge, good luck



19660)
Variants: "Hard time"
Started: 2011.4.15, Ended: 2011.5.3
Participants: Aristos (S), Subhan64 (N)
Winner: Subhan64

1) Subhan64: Homeworld Y3 B1 G3

2) Aristos: Homeworld B3 G2 Y3

3) Subhan64: Build G1 Subhan64

4) Aristos: Build Y1 Aristos

5) Subhan64: Trade G1 Y1 Subhan64

6) Aristos: Trade Y1 G1 Aristos

7) Subhan64: Build G1 Subhan64

8) Aristos: Build Y1 Aristos

9) Subhan64: Discover Y1 Subhan64 Y2 Ix

10) Aristos: Build Y1 Aristos

11) Subhan64: Sacrifice G1 Subhan64
Build Y2 Ix

12) Aristos: Discover Y1 Aristos G1 Ohmigosh

13) Subhan64: Move Y1 Ix Ohmigosh

14) Aristos: Trade Y1 R1 Aristos

15) Subhan64: Build G1 Subhan64

16) Aristos: Build G2 Aristos

17) Subhan64: Move G1 Subhan64 Ix

18) Aristos: Trade G1 R1 Aristos

19) Subhan64: Build G1 Subhan64

20) Aristos: Sacrifice R1 Aristos
Attack Y1 Ohmigosh

21) Subhan64: Sacrifice G3 Subhan64
Build G2 Subhan64
Build G3 Subhan64
Build G3 Ix

22) Aristos: Move Y1 Ohmigosh Ix

23) Subhan64: Trade G3 Y3 Subhan64

24) Aristos: Sacrifice G2 Aristos
Build Y1 Ix
Build Y2 Ohmigosh
Catastrophe Ix Yellow

25) Subhan64: Discover G1 Subhan64 G2 Xi

26) Aristos: Build Y1 Ohmigosh

27) Subhan64: Build G1 Subhan64

28) Aristos: Move Y2 Ohmigosh Xi

29) Subhan64: Build G3 Xi

30) Aristos: Build Y1 Xi

31) Subhan64: Discover Y3 Subhan64 Y2 Oooo

32) Aristos: Build Y2 Xi

33) Subhan64: Sacrifice G3 Xi
Build G3 Xi
Build G3 Xi
Build G3 Subhan64
Catastrophe Xi Green

34) Aristos: Trade Y3 G3 Aristos

35) Subhan64: Trade G1 B1 Subhan64

36) Aristos: Build R1 Aristos

37) Subhan64: Sacrifice B1 Subhan64
Trade Y3 R3 Oooo

38) Aristos: Trade R1 Y1 Aristos

39) Subhan64: Move R3 Oooo Ohmigosh

40) Aristos: Sacrifice Y1 Ohmigosh
Discover Y1 Ohmigosh G2 Holysmokes

41) Subhan64: Trade G2 Y2 Subhan64

42) Aristos: Build G1 Aristos

43) Subhan64: Build G1 Subhan64

44) Aristos: Build Y1 Holysmokes

45) Subhan64: Move G1 Subhan64 Holysmokes

46) Aristos: Build Y2 Holysmokes

47) Subhan64: Sacrifice Y2 Subhan64
Move G1 Holysmokes Ohmigosh
Move G1 Ohmigosh Aristos
Catastrophe Aristos Green



19616)
Started: 2011.4.15, Ended: 2011.4.18
Participants: ts52 (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 Y3 G3

2) ts52: Homeworld Y1 B2 G3 Ts52

3) lorgar: Build G1 Lorgar
	ts52: Back for more? :) Have a good game!
	lorgar: thanks, let's fight again!

4) ts52: Build G1 Ts52

5) lorgar: Discover G1 Lorgar B1 Lost

6) ts52: Trade G1 B1 Ts52

7) lorgar: Build G1 Lorgar

8) ts52: Discover B1 Ts52 G3 Kermit

9) lorgar: Build G1 Lost

10) ts52: Build G2 Ts52

11) lorgar: Trade G1 Y1 Lost

12) ts52: Build B1 Kermit

13) lorgar: Build G1 Lost

14) ts52: Build G2 Ts52

15) lorgar: Sacrifice G3 Lorgar
Build G2 Lost
Build Y1 Lost
Build G3 Lorgar

16) ts52: Build B2 Kermit

17) lorgar: Build Y2 Lost

18) ts52: Trade G2 Y2 Ts52

19) lorgar: Sacrifice Y2 Lost
Move G1 Lost Kermit
Move G1 Lost Kermit

20) ts52: Sacrifice Y2 Ts52
Discover B2 Kermit G2 Oscar
Move B1 Kermit Lost

21) lorgar: Build Y2 Lost

22) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Oscar
Build B3 Lost

23) lorgar: Sacrifice Y2 Lost
Move G1 Kermit Ts52
Move G1 Kermit Ts52
Catastrophe Ts52 Green

	lorgar: thanks for the game, greed killed you this time!
	ts52: Crap! I missed that again! Well played sir.
	ts52: Yeah, greed made be sloppy, for sure


19663)
Started: 2011.4.18, Ended: 2011.5.6
Participants: mathochist (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 Y3 G3



19668)
Started: 2011.4.18, Ended: 2011.5.10
Participants: lorgar (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y2 B3 G3
	ts52: Excellent, I was about to demand a rematch.

2) lorgar: Homeworld B1 Y3 G3

3) ts52: Build G1 Ts52

4) lorgar: Build G1 Lorgar

5) ts52: Discover G1 Ts52 B1 Grover

6) lorgar: Trade G1 R1 Lorgar

7) ts52: Build G1 Ts52

8) lorgar: Build G1 Lorgar

9) ts52: Build G2 Grover

10) lorgar: Build G2 Lorgar

11) ts52: Trade G2 Y2 Grover

12) lorgar: Discover G2 Lorgar B2 Maloha

13) ts52: Build G2 Grover

14) lorgar: Trade G3 Y3 Lorgar

15) ts52: T G2 R2 Grover

16) lorgar: Trade Y3 G3 Lorgar

17) ts52: Build G2 Grover

18) lorgar: Move R1 Lorgar Maloha

19) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Grover

20) lorgar: Trade G3 Y3 Lorgar

21) ts52: Trade G3 R3 Ts52

22) lorgar: Build G3 Maloha

23) ts52: Sacrifice Y2 Grover
Move G1 Grover Maloha
Move G2 Grover Maloha
Catastrophe Maloha Green

24) lorgar: Trade Y3 G3 Lorgar

25) ts52: Build R1 Grover

26) lorgar: Move G1 Lorgar Maloha

27) ts52: Trade R1 Y1 Grover

28) lorgar: Build G1 Lorgar

29) ts52: Move R2 Grover Maloha

30) lorgar: Sacrifice G3 Lorgar
Build G2 Maloha
Build G2 Maloha
Build G3 Lorgar

31) ts52: Attack R1 Maloha

32) lorgar: Build G3 Lorgar

33) ts52: Attack G2 Maloha

34) lorgar: Move G1 Lorgar Maloha
Catastrophe Maloha Green

35) ts52: Trade R2 Y2 Maloha

36) lorgar: Trade G3 R3 Lorgar

37) ts52: Build G1 Grover

38) lorgar: Move R3 Lorgar Maloha

39) ts52: Sacrifice G2 Ts52
Build R1 Maloha
Build R1 Maloha
Catastrophe Maloha Red

40) lorgar: Build G1 Lorgar

41) ts52: Sacrifice Y2 Maloha
Discover G3 Grover Y2 Bird
Move G3 Bird Lorgar
	lorgar: ooooooooo :'(
not cool!

42) lorgar: Build G2 Lorgar
Catastrophe Lorgar Green

	lorgar: sod it XD 
I WANT A REMATCH!*_*
	ts52: I welcome another opportunity to battle you...


19688)
Variants: "Hard time"
Started: 2011.4.18, Ended: 2011.5.25
Participants: sompm (S), alexcobo (N)
Winner: alexcobo

1) alexcobo: Homeworld G1 B2 Y3

2) sompm: Homeworld B1 Y3 G3

3) alexcobo: Build Y1 Alexcobo

4) sompm: Build G1 Sompm

5) alexcobo: Build Y1 Alexcobo

6) sompm: Build G1 Sompm

7) alexcobo: Trade Y1 R1 Alexcobo

8) sompm: Discover G1 Sompm Y2 Costarica

9) alexcobo: Discover Y1 Alexcobo G3 Nicaragua

10) sompm: Build G2 Costarica

11) alexcobo: Build Y1 Alexcobo

12) sompm: Sacrifice G3 Sompm
Build G2 Costarica
Build G2 Sompm
Build G3 Sompm

13) alexcobo: Build Y1 Nicaragua

14) sompm: Discover G2 Sompm Y2 Uzbekistan

15) alexcobo: Build Y2 Nicaragua

16) sompm: Build G3 Uzbekistan

17) alexcobo: Build Y3 Alexcobo

18) sompm: Discover G1 Costarica B3 Nameofacountry

19) alexcobo: Build R1 Alexcobo



19695)
Variants: "Unrated"
Started: 2011.4.19, Ended: 2011.4.19
Participants: Blizzy (S), DrSquidopolis (N)
Winner: DrSquidopolis

1) DrSquidopolis: Homeworld G3 B2 R3

2) Blizzy: Homeworld B3 G2 G2 *

3) DrSquidopolis: Build R1 Drsquidopolis

4) Blizzy: Build G1 Blizzy

5) DrSquidopolis: Trade R1 Y1 Drsquidopolis

6) Blizzy: Trade G2 Y2 Blizzy

7) DrSquidopolis: Discover Y1 Drsquidopolis R1 Demon

8) Blizzy: Move Y2 Blizzy Demon

9) DrSquidopolis: Build R1 Drsquidopolis

10) Blizzy: Build G1 Blizzy

11) DrSquidopolis: Build R1 Drsquidopolis

12) Blizzy: Build G1 Blizzy

13) DrSquidopolis: Move Y1 Demon Blizzy

14) Blizzy: Trade G1 B1 Blizzy

15) DrSquidopolis: Build R2 Drsquidopolis

16) Blizzy: Pass

17) DrSquidopolis: Trade R2 Y2 Drsquidopolis

18) Blizzy: Pass

19) DrSquidopolis: Move Y2 Drsquidopolis Demon

20) Blizzy: Move Y2 Demon Blizzy

21) DrSquidopolis: Move Y2 Demon Blizzy

22) Blizzy: Trade G1 R1 Blizzy

23) DrSquidopolis: Discover Y1 Blizzy G1 Grass

24) Blizzy: Discover Y2 Blizzy Y1 Wezen

25) DrSquidopolis: Trade Y2 R2 Blizzy

26) Blizzy: Discover Y2 Wezen R3 Betelgeuse

27) DrSquidopolis: Sacrifice R3 Drsquidopolis
Attack R1 Blizzy
Attack G1 Blizzy
Attack B1 Blizzy



19601)
Variants: "No undo"
Started: 2011.4.22, Ended: 2011.4.27
Participants: ronan (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y1 B3 G3



19648)
Variants: "Hard time"
Started: 2011.4.22, Ended: 2011.5.10
Participants: SilentTitan (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R2 B3 G3

2) SilentTitan: Homeworld B2 R3 G3

3) mneme: Build G1 Mneme

4) SilentTitan: Build G1 Silenttitan
	mneme: hmm.  small u?  I've not played that before.  Should prove interesting.

5) mneme: Trade G1 Y1 Mneme
	SilentTitan: well I figured... you're not new to this ... so time to experiment... right?


6) SilentTitan: Trade G1 Y1 Silenttitan

7) mneme: Build G1 Mneme

8) SilentTitan: Build G1 Silenttitan

9) mneme: Discover G1 Mneme Y1 Echothis

10) SilentTitan: Build Y2 Silenttitan

11) mneme: Build Y2 Mneme
	mneme: Sure, why not?  At least it's not microverse! 

12) SilentTitan: Discover Y2 Silenttitan R1 Ant

13) mneme: Build G1 Mneme

14) SilentTitan: Build Y2 Silenttitan

15) mneme: Build G2 Echothis

16) SilentTitan: Sacrifice G1 Silenttitan
Build Y3 Ant

17) mneme: Discover Y1 Mneme B1 Tryouts

18) SilentTitan: Trade Y2 R2 Silenttitan

19) mneme: Sacrifice G2 Echothis
Build Y2 Tryouts
Build Y3 Mneme

20) SilentTitan: Build Y3 Silenttitan

21) mneme: Sacrifice Y2 Mneme
Move Y2 Tryouts Silenttitan
Move Y1 Tryouts Silenttitan
Catastrophe Silenttitan Y

22) SilentTitan: Move Y3 Ant Silenttitan

23) mneme: Trade G1 B1 Mneme

24) SilentTitan: Move R2 Silenttitan Echothis

25) mneme: Discover G1 Echothis R3 Ruby

26) SilentTitan: Build G1 Silenttitan

27) mneme: Build B1 Mneme

28) SilentTitan: Build Y1 Silenttitan

29) mneme: Discover B1 Mneme G1 Ghost

30) SilentTitan: Trade Y1 B1 Silenttitan

31) mneme: Build Y1 Mneme

32) SilentTitan: Move B1 Silenttitan Echothis

33) mneme: Build B2 Ghost

34) SilentTitan: Sacrifice G3 Silenttitan
Build R1 Echothis
Build R1 Echothis
Build B2 Echothis

35) mneme: Discover B1 Mneme Y1 Hunter

36) SilentTitan: Build G2 Silenttitan

37) mneme: Sacrifice G3 Mneme
Build B3 Ghost
Build B3 Hunter
Build G2 Ruby

38) SilentTitan: Sacrifice Y2 Ant
Move B1 Echothis Mneme
Move B2 Echothis Mneme

39) mneme: Attack B2 Mneme

40) SilentTitan: Move G2 Silenttitan Ghost

41) mneme: Attack B1 Mneme

42) SilentTitan: Build G2 Ghost

43) mneme: Sacrifice Y1 Mneme
Move B3 Ghost Ruby

44) SilentTitan: Sacrifice R1 Echothis
Attack B2 Ghost North

45) mneme: Sacrifice B1 Mneme
Trade B3 R3 Hunter

46) SilentTitan: Build G3 Silenttitan

47) mneme: Sacrifice G2 Ruby
Build B1 Ruby
Build B3 Hunter

48) SilentTitan: Sacrifice B2 Ghost
Trade G2 Y2 Ghost
Trade G2 Y2 Ghost

49) mneme: Trade B3 G3 Ruby

50) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Ghost
Build Y2 Silenttitan
Build Y3 Silenttitan

51) mneme: Sacrifice G3 Ruby
Build B2 Ruby
Build B3 Ghost
Build G2 Ruby

52) SilentTitan: Sacrifice Y3 Silenttitan
Move Y2 Ghost Mneme
Move Y2 Ghost Mneme
Move Y1 Ghost Mneme
Catastrophe Mneme Yellow

53) mneme: Sacrifice B2 Ruby
Trade B3 Y3 Ghost
Trade B3 G3 Hunter

54) SilentTitan: Sacrifice G1 Silenttitan
Build R1 Echothis

55) mneme: Sacrifice G3 Hunter
Build B2 Ruby
Build B3 Hunter
Build B3 Ghost

56) SilentTitan: Discover R1 Echothis G2 Fin
	SilentTitan: Great Game, I knew several turns ago I was going to come up short.  My big mistake was the turn I came into your system at 2011-05-03 00:49:13. I misread where I was and thought I had a follow up blue ship to cause the cat next turn.

57) mneme: Sacrifice B2 Ruby
Trade B3 G3 Hunter
Trade B3 Y3 Ghost
	mneme: Yeah, that was certainly the big turning point.  I'd actually missed that I could deny you the blue for the kill until after I did it, then it was obvious.
	mneme: Mind, we're not over yet, no?  Although without G and against a blue engine, you're in big, big trouble.

58) SilentTitan: Build R1 Fin

59) mneme: Move Y3 Ghost Silenttitan

	SilentTitan: Thanks


19684)
Started: 2011.4.22, Ended: 2011.5.2
Participants: mathochist (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R2 B3 G3



19685)
Started: 2011.4.22, Ended: 2011.4.28
Participants: ts52 (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R2 B3 G3

2) ts52: H Y1 B2 G3

3) mneme: Build G1 Mneme

4) ts52: Build G1 Ts52

5) mneme: Trade G1 Y1 Mneme

6) ts52: Trade G1 R1 Ts52

7) mneme: Build Y1 Mneme

8) ts52: Build G1 Ts52

9) mneme: Build Y2 Mneme

10) ts52: Build R1 Ts52

11) mneme: Trade Y2 R2 Mneme

12) ts52: Discover R1 Ts52 G3 Kermit

13) mneme: Build Y2 Mneme

14) ts52: Build G1 Ts52

15) mneme: Discover Y2 Mneme G1 Growth

16) ts52: Trade G1 B1 Ts52

17) mneme: Discover Y1 Mneme G1 Prosperity

18) ts52: Build G2 Ts52

19) mneme: Build G2 Mneme

20) ts52: Trade G2 Y2 Ts52

21) mneme: Sacrifice G3 Mneme
Build Y2 Prosperity
Build Y3 Growth
Build Y3 Mneme

22) ts52: Move Y2 Ts52 Kermit

23) mneme: Build Y3 Mneme

24) ts52: Discover G1 Ts52 B3 Grover

25) mneme: Trade Y1 B1 Mneme

26) ts52: Build G2 Ts52

27) mneme: Move Y3 Growth Grover

28) ts52: Build R1 Kermit

29) mneme: Trade Y3 G3 Mneme

30) ts52: Build G2 Grover

31) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build Y1 Growth
Build Y3 Grover

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Kermit
Build R3 Ts52

33) mneme: Trade Y3 R3 Grover

34) ts52: Discover R3 Ts52 Y3 Bigbird

35) mneme: Sacrifice Y2 Growth
Move R2 Mneme Growth
Move R2 Growth Kermit
Catastrophe Kermit R

36) ts52: Move R3 Bigbird Prosperity

37) mneme: Attack G2 Grover

38) ts52: Attack Y2 Prosperity

39) mneme: Attack G1 Grover

40) ts52: Discover G2 Ts52 Y3 Bigbird

41) mneme: Sacrifice Y3 Mneme
Move G2 Grover Prosperity
Move G1 Grover Prosperity
Move G2 Mneme Prosperity
Catastrophe Prosperity G

42) ts52: Build G1 Ts52

43) mneme: Build G1 Mneme
	mneme: thanks for not falling into my trap, btw.  That would have been disappointing.


44) ts52: Move B1 Ts52 Bigbird

45) mneme: Sacrifice G1 Mneme
Build R1 Grover

46) ts52: Build B1 Bigbird
	ts52: no problem. I'll put up as much of a fight as I can

47) mneme: Build Y1 Growth

48) ts52: Build Y2 Kermit

49) mneme: Move Y1 Growth Mneme

50) ts52: Build B2 Bigbird

51) mneme: Trade R1 G1 Grover

52) ts52: Trade B2 R2 Bigbird

53) mneme: Sacrifice G3 Mneme
Build Y2 Grover
Build Y3 Mneme
Build G2 Grover

54) ts52: Move R2 Bigbird Growth

55) mneme: Sacrifice Y3 Grover
Move G2 Grover Ts52
Move G1 Grover Ts52
Move R3 Grover Ts52
Catastrophe Ts52 G

56) ts52: Sacrifice Y2 Kermit
Move G2 Bigbird Ts52
Move B1 Bigbird Ts52

57) mneme: Attack G2 Ts52
	mneme: Ah, well.  This time, you did fall into it.
There's something to be said for using a "check" convention in this game (when not playing with experts past a certain level, anyways).
	ts52: Yeah. I was too busy trying to figure some hope of turning this one around, missed you setting up the kill. Well done.

58) ts52: Trade B1 R1 Ts52

59) mneme: Build R1 Ts52
Catastrophe Ts52 R

	ts52: Well played. Thanks for the game.
	mneme: Likewise; it was a fun one.


19768)
Variants: "Unrated"
Started: 2011.4.27, Ended: 2011.6.4
Participants: OnePageWars (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 Y1 G3

2) OnePageWars: Homeworld Y3 G2 B3

3) lorgar: Build G1 Lorgar
	OnePageWars: thanks for playing.

4) OnePageWars: Build B1 Onepagewars
	lorgar: pleasure's mine :D

5) lorgar: Build G1 Lorgar

6) OnePageWars: Trade B3 Y3 Onepagewars

7) lorgar: Trade G1 B1 Lorgar

8) OnePageWars: Build B1 Onepagewars

9) lorgar: Discover B1 Lorgar G3 Gate

10) OnePageWars: Discover B1 Onepagewars G1 Garden

11) lorgar: Build G1 Lorgar

12) OnePageWars: Build Y1 Onepagewars

13) lorgar: Discover G1 Lorgar B3 Safe

14) OnePageWars: Move Y1 Onepagewars Garden

15) lorgar: Sacrifice G3 Lorgar
Build G2 Lorgar
Build G2 Lorgar
Build G3 Safe

16) OnePageWars: Build B2 Garden

17) lorgar: Sacrifice G2 Lorgar
Build G2 Safe
Build G3 Lorgar

18) OnePageWars: Trade B1 R1 Garden
	OnePageWars: oh, i get it. Now you're the only one with G tech.

19) lorgar: Trade G3 R3 Safe

20) OnePageWars: Build B1 Garden
	lorgar: when did you start playing homeworld?
	OnePageWars: When I joined SDG. I don't know exactly.

21) lorgar: Trade G1 Y1 Safe

22) OnePageWars: Build Y2 Garden

23) lorgar: Move R3 Safe Garden



19812)
Variants: "Hard time"
Started: 2011.4.28, Ended: 2011.5.1
Participants: AdamBadura (S), ajo (N)
Winner: AdamBadura

1) ajo: Homeworld B3 G2 Y3

2) AdamBadura: Homeworld G3 B2 Y3

3) ajo: Build Y1 Ajo
	ajo: Ooh. Tricky.

4) AdamBadura: Build Y1 Adambadura

5) ajo: Build Y1 Ajo

6) AdamBadura: Trade Y1 G1 Adambadura

7) ajo: Discover Y1 Ajo G1 Alpha

8) AdamBadura: Build G1 Adambadura

9) ajo: Trade Y1 R1 Ajo

10) AdamBadura: Discover G1 Adambadura R1 Outpost

11) ajo: Build Y1 Ajo

12) AdamBadura: Build G2 Outpost

13) ajo: Build Y1 Alpha

14) AdamBadura: Build Y2 Adambadura

15) ajo: Move Y1 Alpha Adambadura

16) AdamBadura: Trade Y2 R2 Adambadura

17) ajo: Build Y2 Adambadura

18) AdamBadura: Trade Y3 R3 Adambadura

19) ajo: Sacrifice Y1 Adambadura
Discover Y2 Adambadura B1 Beta
	ajo: Okay, that didn't work. :P

20) AdamBadura: Trade R3 Y3 Adambadura

21) ajo: Trade Y2 G2 Beta

22) AdamBadura: Build G3 Outpost

23) ajo: Build G3 Beta

24) AdamBadura: Build Y1 Adambadura

25) ajo: Build Y2 Alpha

26) AdamBadura: Sacrifice Y1 Adambadura
Discover G2 Outpost Y2 Highway

27) ajo: Sacrifice Y2 Alpha
Move G2 Beta Adambadura
Move G3 Beta Adambadura
Catastrophe Adambadura Green

28) AdamBadura: Sacrifice G3 Outpost
Build G1 Highway
Build G2 Highway
Build G3 Outpost

29) ajo: Trade Y1 B1 Ajo

30) AdamBadura: Discover G2 Highway Y1 Nearby

31) ajo: Move B1 Ajo Alpha

32) AdamBadura: Sacrifice G3 Outpost
Build G3 Outpost
Build G3 Nearby
Build G3 Nearby

33) ajo: Build B1 Alpha

34) AdamBadura: Move R2 Adambadura Alpha

35) ajo: Sacrifice Y3 Ajo
Move Y1 Alpha Adambadura
Move B1 Alpha Adambadura
Move B1 Alpha Adambadura

36) AdamBadura: Sacrifice R2 Alpha
Attack Y1 Adambadura
Attack B1 Adambadura
	ajo: I'm definitely in trouble, but I can still put you in check. :)

37) ajo: Trade B1 R1 Adambadura

38) AdamBadura: Trade Y3 R3 Adambadura

39) ajo: Attack B1S Adambadura

40) AdamBadura: Attack R1 Adambadura

41) ajo: Build R2 Ajo

42) AdamBadura: Move G3 Nearby Ajo

43) ajo: Sacrifice R2 Ajo
Attack R1S Adambadura
Attack Y1S Adambadura
	ajo: Somehow you still haven't killed me yet. I know it's coming eventually, though. :)

44) AdamBadura: Attack R1 Adambadura
	ajo: One more move, then I'll call it quits.

	ajo: There's the checkmate. Good game. :)


19801)
Variants: "Unrated"
Started: 2011.4.28, Ended: 2011.6.1
Participants: radio414 (S), OnePageWars (N)
Winner: radio414

1) OnePageWars: Homeworld B3 G2 Y3

2) radio414: Homeworld B2 R1 G3

3) OnePageWars: Build Y1 Onepagewars

4) radio414: Build G1 Radio414

5) OnePageWars: Trade Y1 G1 Onepagewars

6) radio414: Trade G1 Y1 Radio414

7) OnePageWars: Build Y1 Onepagewars

8) radio414: Build G1 Radio414

9) OnePageWars: Discover Y3 Onepagewars R1 Thedeathstar

10) radio414: Trade G1 B1 Radio414

11) OnePageWars: Move G1 Onepagewars Thedeathstar

12) radio414: Discover B1 Radio414 G3 Alderaan

13) OnePageWars: Build Y1 Onepagewars

14) radio414: Build B1 Alderaan

15) OnePageWars: Build Y2 Onepagewars

16) radio414: Trade B1 R1 Alderaan

17) OnePageWars: Trade Y1 B1 Onepagewars

18) radio414: Build R2 Alderaan

19) OnePageWars: Move B1 Onepagewars Thedeathstar

20) radio414: Build R2 Alderaan

21) OnePageWars: Build G1 Thedeathstar

22) radio414: Trade R2 Y2 Alderaan

23) OnePageWars: Trade Y2 R2 Onepagewars

24) radio414: Build G1 Radio414

25) OnePageWars: Build G2 Thedeathstar

26) radio414: Sacrifice Y2 Alderaan
Move G1 Radio414 Alderaan
Move G1 Alderaan Thedeathstar
Catastrophe Thedeathstar G

27) OnePageWars: Build Y1 Onepagewars

28) radio414: Build Y2 Radio414

29) OnePageWars: Trade Y1 G1 Onepagewars
	OnePageWars: forgot about catastrophes. :(

30) radio414: Build G1 Radio414

31) OnePageWars: Build G1 Onepagewars

32) radio414: Move Y2 Radio414 Alderaan

33) OnePageWars: Move G1 Onepagewars Thedeathstar

34) radio414: Build B1 Alderaan

35) OnePageWars: Build B2 Thedeathstar

36) radio414: Trade G1 Y1 Radio414

37) OnePageWars: Build Y2 Onepagewars

38) radio414: Move Y1 Radio414 Alderaan

39) OnePageWars: Build G1 Thedeathstar

40) radio414: Build G2 Radio414

41) OnePageWars: Move G1 Onepagewars Thedeathstar

42) radio414: Sacrifice Y2 Alderaan
Discover R2 Alderaan Y2 Hoth
Move B1 Alderaan Hoth

43) OnePageWars: Move G1 Thedeathstar Onepagewars

44) radio414: Build B2 Alderaan

45) OnePageWars: Build Y2 Thedeathstar

46) radio414: Build Y3 Alderaan

47) OnePageWars: Trade Y3 R3 Thedeathstar

48) radio414: Sacrifice Y3 Alderaan
Move R1 Alderaan Thedeathstar
Move R2 Hoth Thedeathstar
Move B1 Hoth Alderaan
Catastrophe Thedeathstar R

	OnePageWars: Hans Solo blew up the death star!
	OnePageWars: No, wait. This is the first Death star. So it was  blown up by luke along with other fighters from Hoth.
	OnePageWars: It's funny that you launched part of your attack from Hoth, too!


19839)
Started: 2011.4.29, Ended: 2011.5.17
Participants: OnePageWars (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 G2 Y3

2) OnePageWars: Homeworld B2 G1 Y3
	OnePageWars: Welcome! Thanks for accepting my standing challenge!

3) ajo: Build Y1 Ajo

4) OnePageWars: Build Y1 Onepagewars

5) ajo: Trade Y1 G1 Ajo

6) OnePageWars: Trade Y1 G1 Onepagewars

7) ajo: Build G2 Ajo

8) OnePageWars: Build Y1 Onepagewars

9) ajo: Discover G1 Ajo B1 Alpha

10) OnePageWars: Build Y1 Onepagewars

11) ajo: Build G2 Alpha

12) OnePageWars: Build G3 Onepagewars

13) ajo: Build G3 Alpha

14) OnePageWars: Trade Y1 R1 Onepagewars

15) ajo: Trade G2 R2 Alpha

16) OnePageWars: Discover Y3 Onepagewars R3 Narnia

17) ajo: Trade G3 Y3 Alpha

18) OnePageWars: Trade G1 B1 Onepagewars

19) ajo: Build Y1 Alpha

20) OnePageWars: Build R1 Onepagewars

21) ajo: Build G1 Ajo

22) OnePageWars: Build B1 Onepagewars

23) ajo: Build G2 Alpha

24) OnePageWars: Build G3 Onepagewars

25) ajo: Sacrifice Y3 Alpha
Discover G1 Alpha Y3 Waypoint
Move G2 Alpha Waypoint
Move G1 Waypoint Onepagewars
Catastrophe Onepagewars Green
	ajo: Huh. Okay then, I can do that.

26) OnePageWars: Move Y3 Narnia Onepagewars
	OnePageWars: This is the second time in my few weeks of playing homeworlds that a catastrophe has occured. :(

27) ajo: Move G1 Ajo Alpha
	ajo: Aha. Well, in case you didn't know, a catastrophe occurs whenever four or more pieces of the same color are in the same system.
	ajo: It's usually a bad idea to keep three pieces of the same color in the same system, because that lets your opponent do what I just did. Keep your colors split up.

28) OnePageWars: Trade B1 G1 Onepagewars
	OnePageWars: yeah, i knew that, just underestimated the disaster of a catastrophe, i guess. :/

29) ajo: Trade Y1 B1 Alpha

30) OnePageWars: Build Y1 Onepagewars

31) ajo: Build Y1 Ajo

32) OnePageWars: Build B2 Onepagewars

33) ajo: Sacrifice Y1 Ajo
Move B1 Alpha Onepagewars
Catastrophe Onepagewars Blue



19843)
Started: 2011.4.30, Ended: 2011.5.30
Participants: alexcobo (S), OnePageWars (N)
Winner: alexcobo

1) OnePageWars: Homeworld G3 Y2 B3

2) alexcobo: Homeworld B1 G3 Y3

3) OnePageWars: Build B1 Onepagewars

4) alexcobo: Build Y1 Alexcobo

5) OnePageWars: Trade B1 G1 Onepagewars

6) alexcobo: Build Y1 Alexcobo

7) OnePageWars: Build G1 Onepagewars

8) alexcobo: Trade Y1 G1 Alexcobo

9) OnePageWars: Trade G1 Y1 Onepagewars

10) alexcobo: Discover G1 Alexcobo B2 Change

11) OnePageWars: Build B1 Onepagewars

12) alexcobo: Build G1 Change

13) OnePageWars: Trade B3 Y3 Onepagewars

14) alexcobo: Build G2 Change

15) OnePageWars: Discover Y1 Onepagewars R1 Icehousepiece

16) alexcobo: Trade G1 R1 Change

17) OnePageWars: Move Y3 Onepagewars Icehousepiece

18) alexcobo: Build R1 Change

19) OnePageWars: Build G1 Onepagewars

20) alexcobo: Trade G2 Y2 Change

21) OnePageWars: Trade G1 B1 Onepagewars

22) alexcobo: Build R2 Change

23) OnePageWars: Move B1 Onepagewars Icehousepiece

24) alexcobo: Sacrifice Y3 Alexcobo
Move R1 Change Icehousepiece
Move R1 Change Icehousepiece
Move R2 Change Icehousepiece
Catastrophe Icehousepiece R

25) OnePageWars: Build B1 Onepagewars

26) alexcobo: Build Y1 Alexcobo

	OnePageWars: tx for the game!


19838)
Variants: "Unrated"
Started: 2011.4.30, Ended: 2011.5.25
Participants: roboxx (S), OnePageWars (N)
Winner: OnePageWars

1) OnePageWars: Homeworld Y3 B2 G3

2) roboxx: Homeworld Y1 B3 G3

3) OnePageWars: Build G1 Onepagewars

4) roboxx: Build G1 Roboxx

5) OnePageWars: Build G1 Onepagewars

6) roboxx: Discover G1 Roboxx R2 Cybertron

7) OnePageWars: Discover G3 Onepagewars R1 Vulcan

8) roboxx: Build G2 Cybertron

9) OnePageWars: Build G2 Vulcan

10) roboxx: Build G2 Roboxx

11) OnePageWars: Build G3 Onepagewars

12) roboxx: Trade G2 Y2 Roboxx

13) OnePageWars: Trade G1 Y1 Onepagewars

14) roboxx: Sacrifice Y2 Roboxx
Discover G2 Cybertron B3 Grey
Discover G1 Cybertron B3 Reptilian

15) OnePageWars: Trade G1 B1 Onepagewars

16) roboxx: Build G1 Roboxx

17) OnePageWars: Build B1 Onepagewars
	OnePageWars: that system isn't grey, it's blue!



19867)
Variants: "Hard time"
Started: 2011.5.2, Ended: 2011.5.3
Participants: AdamBadura (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B2 G3

2) AdamBadura: Homeworld B3 G2 Y3
	goulo: finally we play again! :)

3) goulo: Build G1 Goulo
	AdamBadura: For some time I was inactive at SDG. But few days ago someone challenged me on Homeworlds Ladder. I gave him a lesson (by defending easly) and decided to issue some challanges myself. ;)

4) AdamBadura: Build Y1 Adambadura

5) goulo: Trade G1 Y1 Goulo

6) AdamBadura: Discover Y1 Adambadura G1 Drydocks
	goulo: i wish someone would create online rambots and gnostica...

7) goulo: Build G1 Goulo

8) AdamBadura: Build Y1 Adambadura

9) goulo: Discover G1 Goulo R1 Rubeneto

10) AdamBadura: Build Y2 Adambadura

11) goulo: Build Y2 Goulo

12) AdamBadura: Move Y2 Adambadura Rubeneto

13) goulo: Sacrifice G1 Rubeneto
Build G1 Goulo
	AdamBadura: Hmm... I just realized that I made our systems connect by one intermediate system. I didn't want that. Lets see what will happen... :)

14) AdamBadura: Trade Y3 R3 Adambadura
	goulo: it doesn't seem to be working out bad for you...
	goulo: after playing a few games with the strongest players, i realize how weak and unfocused my opening is.

15) goulo: Move Y2 Goulo Drydocks
	AdamBadura: Maybe you just don't respect me enough to care... ;)

16) AdamBadura: Build Y2 Drydocks

17) goulo: Build Y3 Goulo

18) AdamBadura: Build Y3 Adambadura

19) goulo: Move Y3 Goulo Rubeneto

20) AdamBadura: Discover Y2 Rubeneto Y3 Redundancy

21) goulo: Trade G1 R1 Goulo

22) AdamBadura: Build R1 Adambadura

23) goulo: Build G1 Goulo

24) AdamBadura: Move R1 Adambadura Drydocks

25) goulo: Sacrifice R1 Goulo
Attack R1 Drydocks

26) AdamBadura: Build R1 Adambadura
	AdamBadura: Stupid me... ;)

27) goulo: Attack Y2 Drydocks

28) AdamBadura: Move Y1 Adambadura Drydocks
Catastrophe Drydocks Y

29) goulo: Build Y1 Goulo

30) AdamBadura: Build Y1 Adambadura

31) goulo: Move Y1 Goulo Drydocks

32) AdamBadura: Move R3 Adambadura Drydocks

33) goulo: Build R2 Drydocks

34) AdamBadura: Sacrifice Y1 Adambadura
Move R3 Drydocks Redundancy
	AdamBadura: Oh... How haven't I forseen this... I'm a bad player. :(

35) goulo: Build Y1 Drydocks

36) AdamBadura: Build Y2 Adambadura

37) goulo: Sacrifice Y3 Rubeneto
Move Y1 Drydocks Adambadura
Move Y1 Drydocks Adambadura
Move R2 Drydocks Adambadura
Catastrophe Adambadura Y

	goulo: that was an unexpected nice opportunity for me! :) i was rather expecting to maybe get to a catastrophe at Redundancy...
	AdamBadura: I screwed up that game so badly that I am ashame of my self. This makes me wonder whether I'm worthy buying Pyramids. ;)
	goulo: Only by owning the sacred pyramids and worshipping them every day will your spirit be able to grow, and thus you will grow stronger at Homeworlds. :)
	goulo: But seriously, I think we both made various silly errors. I am continually impressed by how subtle and deep and non-obvious this game is. Since it has a space empire theme, I sometimes find myself playing it with a "wargame" mentality instead of an "abstract strategy game" mentality, and that doesn't work well in Homeworlds. :)


19873)
Variants: "Hard time"
Started: 2011.5.2, Ended: 2011.5.28
Participants: Remneb (S), nycavri (N)
Winner: Remneb

1) nycavri: Homeworld B1 Y2 G3
	nycavri: TaGG!

2) Remneb: Homeworld R2 B3 G3
	Remneb: Have a good game.

3) nycavri: B G1 Nycavri

4) Remneb: Build G1 Remneb

5) nycavri: Trade G1 Y1 Nycavri

6) Remneb: Trade G1 Y1 Remneb

7) nycavri: Build G1 Nycavri

8) Remneb: Build G1 Remneb

9) nycavri: Discover G1 Nycavri Y3 Deacon

10) Remneb: Discover G1 Remneb Y1 Sirius

11) nycavri: Build Y2 Nycavri

12) Remneb: Build Y2 Remneb

13) nycavri: Discover Y2 Nycavri G3 May

14) Remneb: Move Y2 Remneb Sirius

15) nycavri: Build Y3 May

16) Remneb: Build Y3 Remneb

17) nycavri: Discover Y2 May B1 Mercury

18) Remneb: Move Y3 Remneb Mercury

19) nycavri: Build G1 Deacon

20) Remneb: Build G2 Remneb

21) nycavri: Move G1 Deacon Sirius

22) Remneb: Move G2 Remneb Mercury

23) nycavri: Move G1 Deacon Mercury

24) Remneb: Build Y3 Remneb

25) nycavri: Sacrifice Y2 Mercury
Move G1 Mercury Remneb
Move G1 Sirius Remneb

26) Remneb: Move G3 Remneb Mercury

27) nycavri: Build Y2 May

28) Remneb: Attack G1 Remneb

29) nycavri: Build G2 Nycavri

30) Remneb: Attack G1 Remneb

31) nycavri: Move Y2 May Mercury

32) Remneb: Trade Y1 R1 Remneb

33) nycavri: Trade Y2 R2 Mercury

34) Remneb: Sacrifice R1 Remneb
Attack R2 Mercury

35) nycavri: Discover G2 Nycavri B3 Taylor

36) Remneb: Sacrifice Y2 Sirius
Move G3 Mercury May
Move G3 May Nycavri

37) nycavri: Trade G3 R3 Nycavri

38) Remneb: Sacrifice R2 Mercury
Attack R3 Nycavri
Attack Y1 Nycavri

	Remneb: Thanks for the game


19880)
Variants: "Hard time"
Started: 2011.5.3, Ended: 2011.5.13
Participants: OnePageWars (S), Kermit (N)
Winner: OnePageWars

1) Kermit: Homeworld Y3 B1 G3

2) OnePageWars: Homeworld B3 G2 Y3

3) Kermit: Build G1 Kermit

4) OnePageWars: Build Y1 Onepagewars

	OnePageWars: sorry.


19906)
Variants: "Hard time"
Started: 2011.5.6, Ended: 2011.5.18
Participants: goulo (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B3 R2 G3

2) goulo: Homeworld R1 B2 G3
	goulo: hi, thanks for the challenge, have fun!

3) SilentTitan: Build G1 Silenttitan
	SilentTitan: you too.  I hope it actually is a challenge.

4) goulo: Build G1 Goulo

5) SilentTitan: Trade G1 Y1 Silenttitan

6) goulo: Trade G1 Y1 Goulo

7) SilentTitan: Build G1 Silenttitan

8) goulo: Build G1 Goulo

9) SilentTitan: Discover G1 Silenttitan B1 Sol

10) goulo: Discover G1 Goulo Y3 Citroneto

11) SilentTitan: Move Y1 Silenttitan Sol

12) goulo: Discover G1 Citroneto Y1 Topazeto

13) SilentTitan: Discover G1 Sol Y3 Sole

14) goulo: Build Y2 Goulo

15) SilentTitan: Build G1 Silenttitan

16) goulo: Build G2 Topazeto

17) SilentTitan: Trade G3 R3 Silenttitan

18) goulo: Build Y2 Goulo

19) SilentTitan: Build G2 Sole

20) goulo: Trade Y1 R1 Goulo

21) SilentTitan: Discover G2 Sole B1 Cook

22) goulo: Trade Y2 B2 Goulo

23) SilentTitan: Build G2 Sole

24) goulo: Sacrifice G1 Topazeto
Build B1 Goulo

25) SilentTitan: Trade G2 Y2 Cook

26) goulo: Move B2 Goulo Sole

27) SilentTitan: Sacrifice Y2 Cook
Move G2 Sole Goulo
Move G1 Sole Goulo

28) goulo: Trade G3 Y3 Goulo

29) SilentTitan: Sacrifice R3 Silenttitan
Attack B1 Goulo South
Attack R1 Goulo South
Attack Y2 Goulo South

30) goulo: Move G2 Topazeto Silenttitan
	goulo: Good one; I didn't expect sacrifice R3...

31) SilentTitan: Sacrifice G2 Goulo
Build Y1 Goulo
Build Y1 Goulo
Catastrophe Goulo Yellow
	SilentTitan: I saw it at the last second
	goulo: Thanks for the game!



19836)
Variants: "Unrated"
Started: 2011.5.6, Ended: 2011.10.19
Participants: AnalogKid (S), alexcobo (W), lorgar (N), OnePageWars (E)
Winner: lorgar

1) lorgar: Homeworld B1 Y3 G3

2) OnePageWars: Homeworld G3 B2 Y3

3) AnalogKid: Homeworld B2 Y1 G3

4) alexcobo: Homeworld G3 B2 Y3
	AnalogKid: Hello everyone!  4-player Homeworlds will be a new experience for me.  I hope that you all have a good game :)
	OnePageWars: ditto.
	alexcobo: Have fun, everyone.

5) lorgar: Build G1 Lorgar

6) OnePageWars: Build Y1 Onepagewars

7) AnalogKid: Build G1 Analogkid
	OnePageWars: i always like the first move after my homeworld is created. It's so easy to decide what to do. :)

8) alexcobo: Build Y1 Alexcobo

9) lorgar: Build G1 Lorgar

10) OnePageWars: Trade Y1 G1 Onepagewars

11) AnalogKid: Discover G1 Analogkid G3 Endor
	OnePageWars: I've noticed that many homeworlds games end up having themed planet names. I was wondering if anyone wanted to agree on a theme or if it was going to be free-for-all in name choosing. If noone likes the idea, thats fine.
	OnePageWars: my vote personally would either be for a star wars theme, a phantome of the opera theme, or a Game theme. (chess world, checkers world, fortac world, etc.)

12) alexcobo: Trade Y1 G1 Alexcobo

13) lorgar: Trade G1 B1 Lorgar

14) OnePageWars: Build Y1 Onepagewars

15) AnalogKid: Build G1 Analogkid

16) alexcobo: Build Y1 Alexcobo
	alexcobo: "A small Rebel ship passed through the energy shield and landed on Endor"
"Yes, I know"

17) lorgar: Discover B1 Lorgar G2 Chasmcity

18) OnePageWars: Trade Y1 R1 Onepagewars
	lorgar: meanwhile, elsewhere, some infamous Ultras discovered the strange features of a new acid world and founded chasm city.

19) AnalogKid: Build G2 Analogkid
	OnePageWars: Then The world from the east overturned their massive powerdecks on a Y1 and installed huge blasters.

20) alexcobo: Sacrifice Y3 Alexcobo
Discover G1 Alexcobo R1 Impendingdoom
Move G1 Impendingdoom Endor
Move G1 Endor Analogkid
Catastrophe Analogkid G

21) lorgar: Build B1 Chasmcity
	alexcobo: I know I am next... but I could not help myself... :-)
	AnalogKid: Huh ... I really thought no one would do that since it would put one too far behind.  *shrug* oh well :)

22) OnePageWars: Build Y1 Onepagewars

23) alexcobo: Build Y1 Alexcobo
	OnePageWars: The factories of OnePageWars were busy churning out a new fleet of ships. A small fleet with huge powerdecks.

24) lorgar: Trade B1 R1 Chasmcity

25) OnePageWars: Trade Y1 B1 Onepagewars
	lorgar: as soon as the news of the OnePageWars plans of fleet domination reached the newly founded system, the local government ordered the law enforcers to create and train militias.

26) alexcobo: Build Y1 Alexcobo
	OnePageWars: Soon thereafter, onepagewars again traded, this time having a shiny new ship with many diplomats to show for it.

27) lorgar: Build B1 Chasmcity

28) OnePageWars: Build R1 Onepagewars
	lorgar: as the militarist faction grew more powerful, the endor trading association (ETA) decided to build a new ship

29) alexcobo: Trade Y1 R1 Alexcobo
	OnePageWars: As OPW's neighbors grew more powerful, the government was forced to build another red ship in order to keep the peace on their own planets.

30) lorgar: Trade B1 Y1 Chasmcity

31) OnePageWars: Build Y1 Onepagewars
	lorgar: in this age of interstellar totalitarism, the endor trading merchant opened their first trading route to chasm city, buying there ships and facilities.

32) alexcobo: Trade Y1 G1 Alexcobo
	OnePageWars: And for the umpteenth time, another small ship with  huge powerdecks was created from the secret onepagewars factories.

33) lorgar: Trade G1 R1 Lorgar

34) OnePageWars: Discover Y1 Onepagewars B1 Pointy

35) alexcobo: Build G1 Alexcobo
	OnePageWars: When the onepagewars diplomats saw that their narration had become excessibely repetitive, they were forced to do something new. So they discovered a plantet. So exciting.

36) lorgar: Build R2 Chasmcity
	lorgar: after a loooong political battle, the militarists drew there gun and shot the chasm city democratic council, therefore becoming the new government. as what they are they bought a biiig battleship and threw a party on the spitshining new deck

37) OnePageWars: Build R2 Onepagewars

38) alexcobo: Build R2 Alexcobo
	OnePageWars: Scared silly by the huge r2, onepagewars is forced by their own citizens to match the fleet. But The system may not be able to support that many red ships. If an enemy came in, the red ships could become junk!
	lorgar: in front of all that silly display of guns, chasmcity woman liberation front threw a huge hippie party in front of the army facilities, the army slogan FTA (turned round and round until becoming something utterly different)
	OnePageWars: The onepagewars diplomats went and got some cups of coffee.

39) lorgar: Trade R2 Y2 Chasmcity

40) OnePageWars: Move R2 Onepagewars Pointy

41) alexcobo: Build Y1 Alexcobo
	OnePageWars: The Captain of a r2 ship, impatient with the lack of action, disobeyed orders and piloted his ship to pointy.

42) lorgar: Trade Y1 G1 Chasmcity

43) OnePageWars: Build G2 Onepagewars

44) alexcobo: Discover G1 Alexcobo B1 Caprica
	OnePageWars: Silence from the enemy could mean nothing good. Onepagewars diplomats decided to play it safe and build a fairly large shopping mall to float around in space. Then they could build whatever ships they needed.

45) lorgar: Sacrifice Y2 Chasmcity
Move G1 Chasmcity Pointy
Move G1 Pointy Onepagewars
Catastrophe Onepagewars Green

46) OnePageWars: Trade B1 G1 Onepagewars
	lorgar: OH MY GOD!
said the poor pilot, as his malfunctionning engine brought him straight in the shiny wall of the onepagewalls shopping mall,

through a communiqué, the authorities of chasm city stated that they would help their friend and ally onepagewars and that such attack was from secret agents of the alexcobo faction, they extend a hand, saying that this costed them a medium commercial/line ship sabotaged by the agents, allowing them to escape from chasmcity and attacking opw homesystem.
	OnePageWars: great storyline. Not so great that you catastrophically caused a catostropic catastrophe that was written about with catostropic spelling. :)

47) alexcobo: Build Y1 Alexcobo
	OnePageWars: Recovering from the devestating ruins, onepagewars was forced to trade their b1 ship for a g1 in order to rebalance the economy and allow future building of ships.

48) lorgar: Build R2 Chasmcity

49) OnePageWars: Build Y1 Onepagewars

50) alexcobo: Discover Y1 Alexcobo G1 Scorpia
	OnePageWars: Overcome by poverty, the onepage wars economy did not allow for the usual transmission of data.

51) lorgar: Trade R2 Y2 Chasmcity

52) OnePageWars: Build G2 Onepagewars

53) alexcobo: Build G2 Caprica

54) lorgar: Build G2 Lorgar

55) OnePageWars: Move G2 Onepagewars Pointy

56) alexcobo: Build Y2 Scorpia

57) lorgar: Build R2 Chasmcity

58) OnePageWars: Build Y2 Pointy

59) alexcobo: Build Y2 Alexcobo

60) lorgar: Move R2 Chasmcity Endor

61) OnePageWars: Trade R1 B1 Onepagewars

62) alexcobo: Trade Y2 B2 Alexcobo

63) lorgar: Build B2 Chasmcity

64) OnePageWars: Build R1 Pointy

65) alexcobo: Build Y2 Alexcobo

66) lorgar: Build R2 Chasmcity

67) alexcobo: Move B2 Alexcobo Pointy

68) lorgar: Discover B1 Chasmcity G3 Ialk

69) alexcobo: Sacrifice R1 Alexcobo
Attack R2E Pointy

70) lorgar: Move R1 Chasmcity Ialk

71) alexcobo: Sacrifice Y1 Alexcobo
Move G2 Caprica Onepagewars

72) lorgar: Build R1 Ialk

73) alexcobo: Sacrifice R2 Pointy
Attack R1E Pointy
Attack R1E Onepagewars

74) lorgar: Attack G1S Endor

75) alexcobo: Attack G2E Pointy

76) lorgar: Move R2 Chasmcity Caprica

77) alexcobo: Sacrifice G1 Caprica
Build G1 Pointy
	AnalogKid: What's going on in this game?  It's weird, but when I look at this page there is no list of players and it doesn't indicate who's turn it is.  I tried to resign, but the game still shows up in my list of active games (well not so active now) ... *sigh*
	AnalogKid: Btw, my game list says "Opponent's time is up,  -51d:21h" for this game but now I see that there has been a bunch of new activity in the last 10 days ... once again, weird.

78) lorgar: Build B2 Ialk

79) alexcobo: Attack G1E Onepagewars

80) lorgar: Build B3 Chasmcity
	alexcobo: The Capricans discover new techlology: Teleporting!

81) alexcobo: Sacrifice Y2 Scorpia
Move G1 Onepagewars Lorgar
Move G2 Onepagewars Lorgar
Catastrophe Lorgar G

82) lorgar: Move B3 Chasmcity Lorgar

83) alexcobo: Attack Y2E Pointy

84) lorgar: Sacrifice Y2 Chasmcity
Move B2 Ialk Pointy
Move B1 Ialk Pointy
Catastrophe Pointy Blue

85) alexcobo: Attack B1E Onepagewars

86) lorgar: Sacrifice B2 Chasmcity
Trade G1 B1 Endor
Trade R1 B1 Ialk


87) alexcobo: Attack Y1E Onepagewars

88) lorgar: Trade R2 Y2 Caprica

89) alexcobo: Discover B1 Onepagewars G3 Foolmetwice

90) lorgar: Move B3 Lorgar Onepagewars

91) alexcobo: Move R1 Onepagewars Scorpia

92) lorgar: Sacrifice R1 Ialk
Attack Y3E Onepagewars

93) alexcobo: Build B2 Foolmetwice

94) lorgar: Sacrifice Y2 Caprica
Move B3 Onepagewars Scorpia
Move B3 Scorpia Alexcobo

95) alexcobo: Sacrifice Y2 Alexcobo
Discover R2 Alexcobo Y1 Salto
Discover R2 Salto Y2 Otrosalto

96) lorgar: Sacrifice R2 Endor
Attack Y1W Alexcobo
Attack G1W Alexcobo



19846)
Started: 2011.5.7, Ended: 2011.6.27
Participants: Mandrel (S), OnePageWars (N)
Winner: Mandrel

1) OnePageWars: Homeworld B3 G2 Y3

2) Mandrel: Homeworld B1 R2 G3

3) OnePageWars: Build Y1 Onepagewars
	Mandrel: Have a good game.
	OnePageWars: thanks, you too!

4) Mandrel: B G1 Mandrel

5) OnePageWars: Trade Y1 G1 Onepagewars

6) Mandrel: Trade G1 Y1 Mandrel

7) OnePageWars: Build Y1 Onepagewars

8) Mandrel: Build G1 Mandrel

9) OnePageWars: Trade Y1 B1 Onepagewars

10) Mandrel: Trade G1 B1 Mandrel

11) OnePageWars: Build G1 Onepagewars

12) Mandrel: B B2 Mandrel

13) OnePageWars: Build Y1 Onepagewars

14) Mandrel: Trade B1 R1 Mandrel

15) OnePageWars: Trade G1 R1 Onepagewars

16) Mandrel: Discover B2 Mandrel G3 Anticipation

17) OnePageWars: Build R1 Onepagewars

18) Mandrel: Move R1 Mandrel Anticipation

19) OnePageWars: Discover R1 Onepagewars G1 Overextended

20) Mandrel: Build R2 Anticipation

21) OnePageWars: Build R2 Overextended

22) Mandrel: Trade R1 Y1 Anticipation

23) OnePageWars: Build B1 Onepagewars

24) Mandrel: Build Y2 Mandrel

25) OnePageWars: Build G1 Onepagewars

26) Mandrel: Sacrifice Y2 Mandrel
Move B2 Anticipation Overextended
Move B2 Overextended Onepagewars
Catastrophe Onepagewars Blue



19900)
Variants: "Hard time"
Started: 2011.5.7, Ended: 2011.5.21
Participants: ajo (S), Danner (N)
Winner: Danner

1) Danner: Pass

2) ajo: Homeworld R1 B3 G3
	Danner: Hi! Have a nice game!
	Danner: I usually let my opponent make the starting move, but if you prefer not to do, just pass.

3) Danner: Homeworld G2 B1 R3

4) ajo: Build G1 Ajo

5) Danner: Build R1 Danner
	ajo: Oh, I didn't even notice your comment. That's okay, I don't mind going first. :)
	Danner: :)

6) ajo: Build G1 Ajo

7) Danner: Build R1 Danner

8) ajo: Trade G3 Y3 Ajo

9) Danner: Trade R3 G3 Danner

10) ajo: Build G1 Ajo

11) Danner: Build R2 Danner

12) ajo: Discover G1 Ajo B2 Alpha

13) Danner: Trade R2 Y2 Danner

14) ajo: Build G2 Alpha

15) Danner: Discover R1 Danner Y3 Artemus

16) ajo: Trade G2 R2 Alpha

17) Danner: Build R2 Danner

18) ajo: Build G2 Alpha

19) Danner: Discover R2 Danner G3 Trickster

20) ajo: Trade G2 Y2 Alpha

21) Danner: Sacrifice G3 Danner
Build R2 Trickster
Build R3 Artemus
Build R3 Danner

22) ajo: Build R3 Alpha

23) Danner: Sacrifice Y2 Danner
Move R1 Artemus Alpha
Move R2 Trickster Alpha
Catastrophe Alpha R

24) ajo: Build G2 Alpha

25) Danner: Move R3 Artemus Alpha

26) ajo: Sacrifice Y2 Alpha
Discover G1 Alpha B3 Beta
Move G2 Alpha Beta
	ajo: Yeah, I was worried about that...

27) Danner: Trade R3 Y3 Alpha

28) ajo: Trade G1 B1 Beta

29) Danner: Build R1 Trickster

30) ajo: Build G1 Ajo

31) Danner: Build R2 Danner

32) ajo: Discover G1 Ajo B2 Gamma

33) Danner: Sacrifice Y3 Alpha
Move R2 Trickster Gamma
Move R2 Danner Beta
Discover R1 Danner G3 Garrett

34) ajo: Sacrifice G1 Gamma
Build B1 Beta

35) Danner: Attack G2S Beta

36) ajo: Build Y1 Ajo

37) Danner: Sacrifice R2 Gamma
Attack B1S Beta
Attack B1S Beta
	ajo: I'm definitely losing at this point.
	Danner: I think you are right. But there is still a chance that I will make some terrible mistake.

38) ajo: Build Y1 Ajo

39) Danner: Build R2 Beta

40) ajo: Discover Y1 Ajo B2 Yech

41) Danner: Build R2 Garrett

42) ajo: Sacrifice G1 Ajo
Build Y1 Yech

43) Danner: Build R3 Beta

44) ajo: Build Y2 Ajo

45) Danner: Trade R3 Y3 Beta

46) ajo: Trade Y3 G3 Ajo

47) Danner: Build R3 Danner

48) ajo: Build Y2 Ajo

49) Danner: Trade R3 Y3 Danner

50) ajo: Trade Y2 B2 Ajo

51) Danner: Move B1 Beta Yech

52) ajo: Build Y2 Ajo

53) Danner: Sacrifice Y3 Beta
Move B1 Beta Yech
Move B1 Yech Ajo
Move B1 Yech Ajo
Catastrophe Ajo B

	Danner: Thanks for the game!


19750)
Started: 2011.5.8, Ended: 2011.5.11
Participants: dragmio (S), mathochist (N)
Winner: dragmio



19916)
Variants: "Hard time"
Started: 2011.5.9, Ended: 2011.5.24
Participants: TwoShort (S), AdamBadura (N)
Winner: TwoShort

1) AdamBadura: Homeworld G3 B2 Y3

2) TwoShort: Homeworld R1 B2 G3

3) AdamBadura: Build Y1 Adambadura
	TwoShort: Howdy

4) TwoShort: Build G1 Twoshort

5) AdamBadura: Trade Y1 G1 Adambadura

6) TwoShort: Trade G1 Y1 Twoshort

7) AdamBadura: Build Y1 Adambadura

8) TwoShort: Build G1 Twoshort

9) AdamBadura: Trade Y1 R1 Adambadura

10) TwoShort: Discover G1 Twoshort Y3 Yolonda

11) AdamBadura: Build R1 Adambadura

12) TwoShort: Build G1 Yolonda

13) AdamBadura: Build G2 Adambadura

14) TwoShort: Build G2 Twoshort

15) AdamBadura: Discover G1 Adambadura Y1 Ontheway

16) TwoShort: Discover G1 Yolonda Y1 Yoyodyne

17) AdamBadura: Build G2 Ontheway

18) TwoShort: Sacrifice G3 Twoshort
Build G3 Yolonda
Build G3 Twoshort
Build Y2 Twoshort

19) AdamBadura: Move R1 Adambadura Ontheway

20) TwoShort: Trade G2 R2 Twoshort

21) AdamBadura: Build R2 Adambadura

22) TwoShort: Sacrifice G3 Yolonda
Build G2 Yoyodyne
Build G3 Yolonda
Build Y2 Twoshort

23) AdamBadura: Sacrifice G2 Adambadura
Build Y2 Adambadura
Build Y3 Adambadura

24) TwoShort: Sacrifice Y2 Twoshort
Discover Y1 Twoshort B3 Bluonia
Discover G1 Yolonda B1 Bluestar

25) AdamBadura: Move Y3 Adambadura Ontheway

26) TwoShort: Sacrifice G3 Yolonda
Build Y2 Twoshort
Build Y3 Bluonia
Build G2 Bluestar

27) AdamBadura: Discover Y3 Ontheway G3 Siege

28) TwoShort: Trade G2 B2 Bluestar

29) AdamBadura: Build R2 Ontheway

30) TwoShort: Build B1 Bluestar

31) AdamBadura: Move R1 Ontheway Siege

32) TwoShort: Trade Y1 B1 Bluonia

33) AdamBadura: Build R3 Siege

34) TwoShort: Sacrifice Y3 Bluonia
Move G1 Bluestar Adambadura
Move G1 Yoyodyne Adambadura
Move G2 Yoyodyne Adambadura

35) AdamBadura: Sacrifice Y3 Adambadura
Move R1 Siege Twoshort
Move R3 Siege Twoshort
Move Y3 Siege Twoshort
Catastrophe Twoshort R
Catastrophe Adambadura G

36) TwoShort: Build Y1 Twoshort
Catastrophe Twoshort Yellow
	AdamBadura: Did you or didn't you want to catastrophe my system? If yes then undo and catastrophe. If not then confirm here please.
	TwoShort: I intentionally skipped the catastrophe.  

37) AdamBadura: Sacrifice Y2 Adambadura
Move R2 Ontheway Twoshort
Move G2 Ontheway Twoshort
	AdamBadura: Is it that I can make only one catastrophe per turn? Also sorry for the very long delays. My wife is in here final days of pregnecy and I have to help here more.
	TwoShort: You should be able to catastrophe both my world and yours; and yeah, I didn't see you could wipe out my red and move in the 3; and good luck with the baby!

38) TwoShort: Trade B2 R2 Bluestar
	AdamBadura: The first time I must have not put command for the second catastrophe as this time it did work.

39) AdamBadura: Trade R2 G2 Twoshort
	AdamBadura: Great. But what now? ;)

40) TwoShort: Trade G3 Y3 Twoshort
	AdamBadura: Lots of sacrifices recently... ;)

41) AdamBadura: Build G1 Twoshort

42) TwoShort: Sacrifice R2 Bluestar
Attack G2 Twoshort
Attack G2 Twoshort

43) AdamBadura: Build G1 Twoshort
Catastrophe Twoshort G

44) TwoShort: Trade Y3 G3 Twoshort
	AdamBadura: Its a girl!

45) AdamBadura: Move G1 Ontheway Twoshort
	TwoShort: Congratulations!

46) TwoShort: Trade G3 R3 Twoshort

47) AdamBadura: Build G1 Twoshort

48) TwoShort: Attack G1 Twoshort

49) AdamBadura: Build G1 Twoshort
	AdamBadura: Somehow I haven't considered changing into R... I think I lost the game...

50) TwoShort: Sacrifice G1 Twoshort
Build B2 Bluestar
	TwoShort: Yeah... I haven't seen any better options for you since the homeworld catastrophes.  But then again I didn't see how those were going to work out at all, so I've been nervous.  I still think I have you now, but it's more turns away then I'd like. :)

51) AdamBadura: Build G1 Twoshort

52) TwoShort: Attack G1 Twoshort

53) AdamBadura: Build G2 Twoshort
Catastrophe Twoshort G

54) TwoShort: Trade B2 G2 Bluestar

	AdamBadura: No point in continueing. I don't want you to stop from other games (or others from challenging you!).


19823)
Started: 2011.5.10, Ended: 2011.5.12
Participants: dragmio (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y2 B3 G3

2) dragmio: Homeworld G3 B2 Y3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	dragmio: ty
you too

4) dragmio: Build Y1 Dragmio

5) ts52: Trade G1 R1 Ts52

6) dragmio: Trade Y3 R3 Dragmio

7) ts52: Build R1 Ts52

8) dragmio: Build Y1 Dragmio

9) ts52: Build G1 Ts52

10) dragmio: Discover Y1 Dragmio G1 Dragmio2

11) ts52: Discover R1 Ts52 G1 Robin

12) dragmio: Build R1 Dragmio

13) ts52: Build R2 Ts52

14) dragmio: Move R3 Dragmio Robin

15) ts52: Move R2 Ts52 Dragmio2

16) dragmio: Attack R1N Robin

17) ts52: Attack Y1 Dragmio2

18) dragmio: Build R2 Dragmio

19) ts52: Build R2 Ts52

20) dragmio: Build R3 Dragmio

21) ts52: Move R2 Dragmio2 Dragmio
Catastrophe Dragmio Red

22) dragmio: Build Y1 Dragmio

23) ts52: Build Y2 Dragmio2

24) dragmio: Sacrifice Y1 Dragmio
Move R3 Robin Dragmio

25) ts52: Build G2 Ts52

26) dragmio: Move R3 Dragmio Dragmio2

27) ts52: Move Y2 Dragmio2 Dragmio

28) dragmio: Attack Y1 Dragmio2

29) ts52: Sacrifice R1 Ts52
Attack Y1 Dragmio

	ts52: Thanks for the game.


19946)
Started: 2011.5.10, Ended: 2011.6.7
Participants: ts52 (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y3 G3

2) ts52: Homeworld Y1 B2 G3

3) lorgar: Build G1 Lorgar

4) ts52: Build G1 Ts52

5) lorgar: Build G1 Lorgar

6) ts52: Build G2 Ts52

7) lorgar: Trade G1 B1 Lorgar

8) ts52: Trade G2 B2 Ts52

9) lorgar: Discover B1 Lorgar G2 Amarante

10) ts52: Discover B2 Ts52 G3 Kermit

11) lorgar: Build B1 Amarante

12) ts52: Trade G1 Y1 Ts52

13) lorgar: Trade B1 Y1 Amarante

14) ts52: Build G1 Ts52

15) lorgar: Build Y2 Amarante

16) ts52: Move Y1 Ts52 Kermit

17) lorgar: Trade Y2 R2 Amarante
	lorgar: How old are you?

18) ts52: Trade G1 R1 Ts52

19) lorgar: Build G1 Lorgar

20) ts52: Build Y2 Kermit

21) lorgar: Discover G1 Lorgar B2 Marigot
	ts52: 35 last week.  You?

22) ts52: Trade Y2 R2 Kermit
	lorgar: happy birthday :)
I'm 20.
What kind of game you like to play? I'd bet my money on chess. maybe a little bit of poker or mahjong (the four player kind, not the solitaire, computer based heretic ersatz)

23) lorgar: Build G1 Lorgar
	ts52: Thanks. I haven't played chess in a long time. I do like Go, but don't play very often. We've been playing a lot of Zark City at work over lunch, and Ascension. Really a lot of card games. I really like Volcano too, but I mainly play that here, not so much in persion. Except when I make it to Origins...
	lorgar: what kind of work you do?

24) ts52: Build G2 Ts52

25) lorgar: Build G2 Marigot
	ts52: I'm a computer engineer. I work on computer design verification. Trying to help make sure the design will work before they spend millions to fabricate it. What do you do?

26) ts52: Move G2 Ts52 Kermit
	lorgar: cool... I am a musician. student that is XD
I still go to school (http://www.ecolenormalecortot.com/) and have a lot of exams and competitions. that sucks -_-
I dont like cities, too many people... And I have to stay in paris three days a week. or a whole week when I have exams.

27) lorgar: Build Y2 Amarante
	ts52: Sorry, I can't have too much sympathy for you having to stay in Paris... Sometimes I wish I'd studied music more. I played saxaphone all through college at least some, but have barely touched it since. What's you favorite instrument?
	lorgar: I'd say cello, thats what I do. I love piano too.It is just a bit less fun when you cant play what you would like. and all the suckers trying to evict you.
where are you? america? GB?

28) ts52: Discover G2 Kermit Y2 Birbird

29) lorgar: Trade G1 R1 Lorgar
	ts52: That stinks. I'm in America, Massachusetts 

30) ts52: Build G1 Ts52

31) lorgar: Sacrifice Y2 Amarante
Discover G2 Marigot Y3 Ark
Discover G1 Marigot Y3 Stark
	lorgar: near the MIT?

32) ts52: Move G2 Birbird Stark

33) lorgar: Discover G1 Stark B2 Meth
	ts52: About 30 minutes drive away from MIT.

34) ts52: Move R2 Kermit Meth
	lorgar: wow *_*
btw : I GOT MY EXAM, I'm NOW OFFICIALY A FLIPPIN' MUSICIAN STUDENT WHITH THE CARD AND EVERYTHING!

35) lorgar: Sacrifice G3 Lorgar
Build R1 Amarante
Build Y2 Amarante
Build G3 Lorgar
	ts52: congrats!

36) ts52: Attack G1 Meth

37) lorgar: Move R2 Amarante Ark

38) ts52: Build Y2 Kermit

39) lorgar: Move Y2 Amarante Kermit

40) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Meth
Build R3 Ts52

41) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build Y2 Kermit
Build R3 Ark
Catastrophe Kermit Yellow

42) ts52: Trade R2 Y2 Meth

43) lorgar: Sacrifice G3 Lorgar
Build R2 Lorgar
Build R3 Amarante
Build G3 Lorgar

44) ts52: Move R3 Ts52 Kermit

45) lorgar: Trade R2 Y2 Lorgar

46) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Meth
Build R2 Ts52

47) lorgar: Sacrifice Y2 Lorgar
Move R3 Ark Meth
Move R3 Amarante Ark

48) ts52: S Y2 Meth
M R1 Ts52 Ark
M R2 Meth Ark
C Ark Red

49) lorgar: Attack Y1S Meth

50) ts52: T B2 Y2 Kermit

51) lorgar: Sacrifice G3 Lorgar
Build Y2 Amarante
Build Y2 Meth
Build G3 Lorgar

52) ts52: B R1 Ts52

53) lorgar: Sacrifice Y2 Amarante
Move R3 Meth Stark
Move R1 Amarante Ark

54) ts52: M G2 Stark Amarante

55) lorgar: Sacrifice Y1 Amarante
Move B1 Amarante Stark

56) ts52: Trade R2 B2 Ts52

57) lorgar: Sacrifice G3 Lorgar
Build B1 Stark
Build R2 Lorgar
Build G3 Lorgar

58) ts52: M B2 Ts52 Kermit

59) lorgar: Sacrifice Y2 Meth
Move B1 Stark Ts52
Move G2 Ark Ts52

60) ts52: A G2 Ts52

61) lorgar: Sacrifice G3 Lorgar
Build B3 Ts52
Build B3 Ts52
Build G3 Lorgar
Catastrophe Ts52 Blue

62) ts52: Sacrifice B2 Kermit
Trade G1 B1 Ts52
Trade G2 B2 Amarante

63) lorgar: Move R3 Stark Amarante

64) ts52: Build R2 Kermit

65) lorgar: Sacrifice R2 Lorgar
Attack B2S Amarante
Attack G1S Meth

66) ts52: Move R2 Kermit Meth

67) lorgar: Sacrifice Y1 Meth
Move G1 Meth Stark

68) ts52: Build R2 Ts52

69) lorgar: Trade B2 Y2 Amarante

70) ts52: Move R2 Ts52 Stark

71) lorgar: Move R3 Amarante Stark

72) ts52: Sacrifice G2 Ts52
Build R2 Stark
Build R3 Stark
Catastrophe Stark Red

73) lorgar: Build Y1 Amarante
	lorgar: I looked but I do not think anybody wrote a videogame version of homeworld. this display is cool (it should be kept), but what about training offline against an AI? that would be even cooler!

74) ts52: Move R3 Kermit Amarante
	ts52: that would be pretty cool. though I think writing an good AI would be a challenge

75) lorgar: Sacrifice Y2 Amarante
Discover Y1 Amarante B3 Flight
Discover Y1 Flight G2 Flees

76) ts52: T R2 G2 Meth

77) lorgar: Sacrifice G3 Lorgar
Build G1 Stark
Build R2 Ark
Build G3 Lorgar

78) ts52: Move Y2 Kermit Meth

79) lorgar: Move R2 Ark Meth

80) ts52: Sacrifice R1 Ts52
Attack R2 Meth

81) lorgar: Sacrifice G3 Lorgar
Build Y1 Flees
Build Y2 Flees
Build G3 Lorgar

82) ts52: Move R2 Meth Stark

83) lorgar: Sacrifice Y2 Flees
Move R1 Ark Amarante
Move B1 Stark Meth

84) ts52: Build G3 Ts52

85) lorgar: Sacrifice G3 Lorgar
Build R1 Amarante
Build R2 Amarante
Build G3 Lorgar
Catastrophe Amarante Red

86) ts52: Attack G1 Stark
	lorgar: playing against you is getting more and more interesting. you do have quite an edge... how many months, years, centuries of practice do you have?
	ts52: I've been playing homeworlds since maybe 2005? Last year I managed (through luck and my opponents hubris) to win the Homeworlds tournament at Origins.

87) lorgar: Move G1 Stark Ts52

88) ts52: Move G3 Ts52 Stark
	lorgar: you think I'm getting better at this? what are my flaws?
	ts52: I think you
	ts52: I think you're doing pretty well. You've killed half my homeworld, and that double threat there is a good one. Now I really have to think.

89) lorgar: Sacrifice G3 Lorgar
Build B2 Meth
Build G2 Ts52
Build G3 Lorgar

90) ts52: S R2 Stark
Attack G2 Ts52
Attack B2 Meth


91) lorgar: Move Y1 Flees Ts52

92) ts52: Sacrifice G3 Stark
Build Y2 Meth
Build Y2 Meth
Build Y3 Meth

93) lorgar: Sacrifice G3 Lorgar
Build G3 Ts52
Build B2 Meth
Build G3 Lorgar
Catastrophe Meth Blue
Catastrophe Ts52 Green

94) ts52: Sacrifice G1 Stark
Build B1 Ts52

95) lorgar: Sacrifice G3 Lorgar
Build Y2 Ts52
Build Y2 Ts52
Build G1 Lorgar
Catastrophe Ts52 Yellow

	lorgar: :D~~~~
rematch?
	ts52: Of course!


19950)
Variants: "Hard time"
Started: 2011.5.12, Ended: 2011.6.22
Participants: Subhan64 (S), agentofchaos (N)
Winner: Subhan64

1) agentofchaos: Homeworld R1 B2 G3

2) Subhan64: Homeworld Y3 B1 G3

3) agentofchaos: Build G1 Agentofchaos
	agentofchaos: b g1 Agentofchaos

4) Subhan64: Build G1 Subhan64

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Subhan64: Build G1 Subhan64

7) agentofchaos: Discover Y1 Agentofchaos G3 Klingsor

8) Subhan64: Discover G1 Subhan64 G2 Ohohoh

9) agentofchaos: Build Y1 Klingsor

10) Subhan64: Build G1 Subhan64

11) agentofchaos: Build G2 Agentofchaos

12) Subhan64: Trade G1 Y1 Subhan64

13) agentofchaos: Build Y2 Klingsor

14) Subhan64: Discover Y1 Subhan64 G2 Hohoho

15) agentofchaos: M Y2 Klingsor Agentofchaos

16) Subhan64: Sacrifice G3 Subhan64
Build G1 Subhan64
Build G3 Subhan64
Build Y2 Hohoho

17) agentofchaos: Build Y2 Agentofchaos

18) Subhan64: Move Y1 Hohoho Klingsor

19) agentofchaos: Move Y1 Klingsor Ohohoh

20) Subhan64: Sacrifice G3 Subhan64
Build G3 Subhan64
Build Y3 Hohoho
Build Y3 Klingsor

21) agentofchaos: Move Y1 Ohohoh Klingsor
Catastrophe Klingsor Y

22) Subhan64: Sacrifice G3 Subhan64
Build G3 Subhan64
Build G3 Ohohoh
Build Y1 Hohoho

23) agentofchaos: Trade Y2 R2 Agentofchaos

24) Subhan64: Trade G1 B1 Subhan64

25) agentofchaos: Build R1 Agentofchaos

26) Subhan64: Sacrifice B1 Subhan64
Trade Y2 R2 Hohoho

27) agentofchaos: T R1 B1 Agentofchaos

28) Subhan64: Build R1 Hohoho

29) agentofchaos: B Y1 Agentofchaos

30) Subhan64: Discover R2 Hohoho Y3 Hehehe

31) agentofchaos: Discover Y2 Agentofchaos B3 Deathstar

32) Subhan64: Sacrifice Y3 Hohoho
Move R1 Hohoho Hehehe
Move R1 Hehehe Agentofchaos
Move R2 Hehehe Agentofchaos
Catastrophe Agentofchaos Red

	Subhan64: GG, thanks!


19813)
Variants: "No undo"
Started: 2011.5.12, Ended: 2011.5.19
Participants: ajo (S), dragmio (N)
Winner: ajo

1) dragmio: Homeworld G3 Y2 B3

2) ajo: Homeworld B1 R2 G3

3) dragmio: Build B1 Dragmio

4) ajo: Build G1 Ajo

5) dragmio: Trade B1 R1 Dragmio

6) ajo: Trade G1 Y1 Ajo

7) dragmio: Discover R1 Dragmio Y1 Dragmio2

8) ajo: Build G1 Ajo

9) dragmio: Build B1 Dragmio

10) ajo: Build Y1 Ajo

11) dragmio: Build B1 Dragmio

12) ajo: Build Y2 Ajo

13) dragmio: Trade B1 G1 Dragmio

14) ajo: Trade Y2 R2 Ajo

15) dragmio: Move G1 Dragmio Dragmio2

16) ajo: Build Y2 Ajo

17) dragmio: Build R1 Dragmio2

18) ajo: Sacrifice Y2 Ajo
Discover R2 Ajo B3 Alpha
Move G1 Ajo Alpha

19) dragmio: Move B3 Dragmio Dragmio2

20) ajo: Build Y2 Ajo
	ajo: Ooh, dangerous idea, moving your large ship away from your homeworld. Let's see if you can keep it from backfiring on you.

21) dragmio: Move B3 Dragmio2 Alpha
	dragmio: Well, if I'm moving it, I might as well go all the way! :)

22) ajo: Sacrifice Y2 Ajo
Move R2 Alpha Dragmio2
Move R2 Dragmio2 Dragmio

23) dragmio: Build B1 Dragmio
	ajo: Check. :)
	dragmio: Damn! I didn't know you could do that! Oh well...

24) ajo: Attack B1N Dragmio

25) dragmio: Build B2 Dragmio
	ajo: Yep, you can sacrifice a y[1,2,3] ship to get [1,2,3] yellow actions anywhere in the galaxy. Check.
	dragmio: I believe you, don't worry. It's my second game ever. That's why I'm a bit lost. :)

26) ajo: Trade R2 B2 Dragmio
Catastrophe Dragmio Blue
	ajo: Ah, I see. Good game, then. For your next game, remember that it's hard to defend your homeworld without that big ship.
	dragmio: Ok. Thanks for the tip. And for the game! :)



19965)
Started: 2011.5.15, Ended: 2011.9.11
Participants: Mandrel (S), lorgar (N)
Winner: Mandrel

1) lorgar: Homeworld B1 Y3 G3

2) Mandrel: Homeworld R1 B2 G3

3) lorgar: Build G1 Lorgar
	Mandrel: Have a good game.
	lorgar: thx

4) Mandrel: Build G1 Mandrel

5) lorgar: Build G1 Lorgar

6) Mandrel: Build G2 Mandrel

7) lorgar: Trade G3 Y3 Lorgar

8) Mandrel: T G1 Y1 Mandrel

9) lorgar: Discover G1 Lorgar B2 Catonemoidia

10) Mandrel: Discover G2 Mandrel B3 Hunger

11) lorgar: Trade Y3 G3 Lorgar

12) Mandrel: Build Y1 Mandrel
	lorgar: I hoped you would fall for the y3 trick... ts52 did. once.

13) lorgar: Build G1 Lorgar

14) Mandrel: Build G2 Mandrel

15) lorgar: Trade G1 R1 Lorgar

16) Mandrel: M Y1 Mandrel Hunger

17) lorgar: Build G1 Catonemoidia

18) Mandrel: S G3 Mandrel
Build G2 Mandrel
Build G3 Mandrel
Build G3 Hunger

19) lorgar: Trade G1 R1 Catonemoidia

20) Mandrel: T G2 R2 Hunger

21) lorgar: Sacrifice G3 Lorgar
Build G1 Catonemoidia
Build G2 Catonemoidia
Build G3 Lorgar

22) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build R2 Hunger
Build Y1 Hunger

23) lorgar: Trade G2 Y2 Catonemoidia

24) Mandrel: T G2 B2 Mandrel

25) lorgar: Discover G1 Catonemoidia B3 Lys

26) Mandrel: D Y1 Hunger G2 Full

27) lorgar: Sacrifice G3 Lorgar
Build G2 Lys
Build Y2 Catonemoidia
Build G3 Lorgar

28) Mandrel: S G2 Mandrel
Build G2 Hunger
Build Y2 Full

29) lorgar: Move Y2 Catonemoidia Lys

30) Mandrel: Sacrifice G3 Hunger
Build G3 Hunger
Build Y3 Hunger
Build Y3 Mandrel

31) lorgar: Sacrifice G3 Lorgar
Build R2 Lorgar
Build R3 Catonemoidia
Build G3 Lorgar

32) Mandrel: B B1 Mandrel

33) lorgar: Trade G1 B1 Lys

34) Mandrel: M B2 Mandrel Hunger

35) lorgar: Sacrifice G3 Lorgar
Build G1 Catonemoidia
Build G3 Lorgar
Pass

36) Mandrel: M B2 Hunger Full

37) lorgar: Sacrifice Y2 Catonemoidia
Move G1 Catonemoidia Hunger
Move G1 Catonemoidia Hunger
Catastrophe Hunger Green

38) Mandrel: B B3 Full

39) lorgar: Build Y2 Lys

40) Mandrel: Build G1 Mandrel

41) lorgar: Build G1 Lys

42) Mandrel: Sacrifice Y3 Hunger
Move Y1 Hunger Full
Move Y1 Full Lorgar
Move Y2 Full Lorgar

43) lorgar: Sacrifice R2 Lorgar
Attack Y2S Lorgar
Attack Y1S Lorgar

44) Mandrel: Move Y1 Full Lorgar
Catastrophe Lorgar Y

45) lorgar: Sacrifice Y2 Lys
Move G2 Lys Mandrel
Move G1 Lys Mandrel
Catastrophe Mandrel Green

46) Mandrel: Discover B1 Mandrel G3 Dam

47) lorgar: Trade R1 G1 Catonemoidia
	lorgar: crappit :<

48) Mandrel: Sacrifice Y3 Mandrel
Move B1 Dam Lorgar
Move B3 Full Lorgar
Move B2 Full Lorgar
Catastrophe Lorgar Blue

	Mandrel: Good game.


19837)
Started: 2011.5.17, Ended: 2012.3.25
Participants: lorgar (S), OnePageWars (W), dragmio (N), MagicJohn (E)
Winner: dragmio

1) dragmio: Homeworld G2 Y1 B3

2) MagicJohn: Homeworld G1 Y2 B3

3) lorgar: Homeworld B1 Y2 G3
	dragmio: What now? Will we wait for him?
	MagicJohn: His history says he was active 5 days ago..... He must still be somewhere in the universe.... Whatchathink?
	dragmio: I sent him a PM to make a move but he didn't respond. I dunno...

4) OnePageWars: Homeworld B3 G2 Y3
	lorgar: I was in paris, for a week of exams. Playin music is not half as cool as it look like when you gotta do it in a big city -_-

5) dragmio: Build B1 Dragmio
	dragmio: Paris? Great! Glad you're back, though. :)

6) MagicJohn: Build B1 Magicjohn

7) lorgar: Build G1 Lorgar

8) OnePageWars: Build Y1 Onepagewars

9) dragmio: Trade B1 Y1 Dragmio

10) MagicJohn: Trade B1 G1 Magicjohn

11) lorgar: Build G1 Lorgar

12) OnePageWars: Trade Y1 B1 Onepagewars

13) dragmio: Build Y1 Dragmio

14) MagicJohn: Build B1 Magicjohn

15) lorgar: Discover G1 Lorgar B3 Roussel

16) OnePageWars: Build Y1 Onepagewars

17) dragmio: Trade Y1 R1 Dragmio

18) MagicJohn: Trade B1 R1 Magicjohn

19) lorgar: Build G1 Lorgar

20) OnePageWars: Build B1 Onepagewars

21) dragmio: Build B1 Dragmio

22) MagicJohn: Build R1 Magicjohn

23) lorgar: Trade G1 R1 Lorgar

24) OnePageWars: Trade B1 G1 Onepagewars

25) dragmio: Build R1 Dragmio

26) MagicJohn: Build R2 Magicjohn

27) lorgar: Build G2 Roussel

28) OnePageWars: Trade Y3 R3 Onepagewars

29) dragmio: Build R2 Dragmio

30) MagicJohn: Trade R2 Y2 Magicjohn

31) lorgar: Trade G2 R2 Roussel

32) OnePageWars: Build R2 Onepagewars

33) dragmio: Trade R2 G2 Dragmio

34) MagicJohn: Build B1 Magicjohn

35) lorgar: Build R2 Roussel

36) OnePageWars: Build Y1 Onepagewars

37) dragmio: Move R1 Dragmio Roussel

38) MagicJohn: Move R1 Magicjohn Roussel
Catastrophe Roussel Red

39) lorgar: Build G2 Roussel

40) OnePageWars: Discover G1 Onepagewars Y1 Greenishyellow

41) dragmio: Build Y2 Dragmio

42) MagicJohn:
Build R1 Magicjohn
	OnePageWars: I obviously wasn't coming up with any creative names today. :/

43) lorgar: Trade G1 R1 Roussel

44) OnePageWars: Build B1 Onepagewars

45) dragmio: Discover Y2 Dragmio G3 Srima

46) MagicJohn: Discover B1 Magicjohn G3 Kali

47) lorgar: Build G1 Roussel

48) OnePageWars: Move B1 Onepagewars Greenishyellow

49) dragmio: Sacrifice G2 Dragmio
Build Y2 Srima
Build Y3 Dragmio

50) MagicJohn: Move Y2 Magicjohn Kali

51) lorgar: Discover G1 Lorgar Y3 Safe

52) OnePageWars: Build B2 Onepagewars

53) dragmio: Sacrifice Y2 Srima
Move Y3 Dragmio Srima
Move B1 Dragmio Srima

54) MagicJohn: Sacrifice Y2 Kali
Move B1 Kali Greenishyellow
Move B1 Greenishyellow Onepagewars
Catastrophe Onepagewars Blue

55) lorgar: Build G2 Lorgar

56) OnePageWars: Build G2 Greenishyellow

57) dragmio: Move Y3 Srima Onepagewars

58) MagicJohn: Build B1 Magicjohn

59) lorgar: Discover G2 Lorgar G3 M0

60) lorgar: Sacrifice G2 M0
Build G2 Lorgar
Build G3 Safe

61) dragmio: Sacrifice R1 Dragmio
Attack R3W Onepagewars

62) MagicJohn: Discover G1 Magicjohn Y3 Elisian
	dragmio: Is this how it supposed to be? R3 appeared after the resignation in OnePageWars system and the oredr of play is reversed.
	OnePageWars: I resigned because my homeworld was being invaded.

63) lorgar: Discover G2 Lorgar G3 Plump

64) dragmio: Attack R2W Onepagewars

65) MagicJohn: Build G3 Elisian

66) lorgar: Move G1 Safe Lorgar

67) dragmio: Trade Y1 R1 Dragmio

68) MagicJohn: Move R1 Magicjohn Elisian

69) lorgar: Trade G1 Y1 Roussel

70) dragmio: Move R3 Onepagewars Greenishyellow

71) MagicJohn: Build R2 Magicjohn

72) lorgar: Sacrifice G3 Lorgar
Build G1 Safe
Build G3 Lorgar
Build R2 Roussel

73) dragmio: Attack G2W Greenishyellow

74) MagicJohn: Build R2 Elisian

75) lorgar: Sacrifice G2 Plump
Build G2 Safe
Build G3 Roussel

76) dragmio: Move Y3 Onepagewars Srima

77) MagicJohn: Discover G1 Elisian Y2 Kali

78) lorgar: Discover G1 Lorgar Y3 Barrabas

79) dragmio: Move G2 Greenishyellow Safe
Catastrophe Safe G

80) MagicJohn: Move B1 Magicjohn Elisian

81) lorgar: Trade G2 Y2 Roussel

82) dragmio: Attack Y1W Onepagewars
	MagicJohn: Sorry 'bout the re-do, but my planetary citizens objected to my butchering the name of their home world.. 

83) MagicJohn: Move R1 Elisian Kali

84) lorgar: Trade R1 B1 Roussel

85) dragmio: Move Y2 Srima Dragmio

86) MagicJohn: Build B2 Elisian

87) lorgar: Move Y1 Roussel Dragmio

88) dragmio: Build Y3 Srima

89) MagicJohn: Build B2 Magicjohn

90) lorgar: Discover B1 Roussel G2 Ilak

91) dragmio: Trade Y2 R2 Dragmio

92) MagicJohn: Trade B2 Y2 Elisian

93) lorgar: Build Y3 Roussel

94) dragmio: Attack Y1S Dragmio

95) MagicJohn: Move Y2 Elisian Dragmio

96) lorgar: Move Y2 Roussel Ilak

97) dragmio: Discover Y1 Dragmio B3 Amris

98) MagicJohn: Move Y2 Dragmio Srima

99) lorgar: Sacrifice G1 Barrabas
Build Y3 Ilak
	dragmio: attack Y1S dragmio

100) dragmio: Trade Y3 R3 Srima

101) MagicJohn: Move Y2 Srima Kali

102) lorgar: Build Y3 Roussel

103) dragmio: Move Y1 Onepagewars Roussel
	MagicJohn: I'm relatively new to the game.  Maybe at some later time one of you could explain to me why South did not move a yellow ship into dragmio from roussel and create a catastrophe? 

104) MagicJohn: Move Y2 Kali Roussel
Catastrophe Roussel Yellow
	dragmio: I suppose he didn't want to loose a 3 point ship.
	MagicJohn: Another newbie question..... How much intergalactic chatter and plotting usually goes in the comment boxes during a multi-player game?  Negotiations might be interesting...  (He could have used a Y2 ship....)

105) lorgar: Trade Y3 R3 Ilak
	dragmio: No, he couldn't because the system with his Y2 ship isn't connected with mine home system. And this turn he obviously wanted another Y3 more than to see my two Y3's destroyed. You gotta have priorities. :)

106) dragmio: Attack G1W Greenishyellow

107) MagicJohn: Build B2 Elisian
	MagicJohn: Following my Y2 move to Dragmio, South moved a Y2 ship from roussel (connected to your system) to ilak (not connected). Guess I'll have to live with my share of newbie cognitive-dissonance. I do, however, understand your message. Thanks for taking the time to respond to my questions.   :  )  

108) lorgar: Build G1 Roussel
	dragmio: Let's see you now. :)

109) dragmio: Move G1 Greenishyellow Roussel
	MagicJohn: To my helpful neighbor to the North,
According to some wise advise I once received, I gotta consider priorities... I'm running a poor third. Ideally, I should try to assume a non-threatening posture (with my fleet that shouldn't be difficult) and hope you two annihilate each other.  On the other hand, if I get too far behind, I'm roadkill anyway. Additionally, sacrificing my only yellow   ship will cost me a trade and a build turn to recoup......  Plus, you are ahead of me already and are only risking a Y1 ship.  Sounds like you might owe me a non-aggression treaty for a few turns...   
	dragmio: No problem. I'll be a Russian to your German. :)

110) MagicJohn: Move G1 Kali Roussel
Catastrophe Roussel G
	MagicJohn: Now, about that analogy...... Seems like in the long run,  it didn't turn out well for Hitler..... : (  

111) lorgar: Build B2 Ilak

112) dragmio: Attack Y1W Onepagewars

113) MagicJohn: Trade B2 G2 Elisian

114) lorgar: Trade R2 G2 Roussel

115) dragmio: Attack B1W Greenishyellow
	dragmio: Once more unto the breach, dear friend! :)

116) MagicJohn: Build B2 Elisian

117) lorgar: Build G1 Roussel

118) dragmio: Move B1 Greenishyellow Ilak

119) MagicJohn: Trade B2 Y2 Elisian

120) lorgar: Discover B2 Ilak G3 Mareinfinitus

121) dragmio: Sacrifice Y3 Srima
Move Y1 Amris Greenishyellow
Move Y1 Greenishyellow Elisian
Move Y1 Onepagewars Elisian
Catastrophe Elisian Y

122) MagicJohn: Discover B2 Magicjohn Y3 Gray Havens

123) lorgar: Trade G1 R1 Roussel

124) dragmio: Move R3 Greenishyellow Mareinfinitus

125) MagicJohn: Trade B2 Y2 Gray

126) lorgar: Sacrifice Y2 Ilak
Move R3 Ilak Roussel
Discover B2 Mareinfinitus G2 Maru

127) dragmio: Trade B1 Y1 Srima

128) MagicJohn: Move R1 Kali Gray
	dragmio: Sorry, couldn't help it.i love a big bang. Just look at the size of that report. :)
	MagicJohn: All part of my plan to become a non-threat...  Some of my civilizations have, however sent me a vote of "no confidence".....

129) lorgar: Build G1 Lorgar

130) dragmio: Move R3 Srima Maru

131) MagicJohn: Trade R1 G1 Magicjohn

132) lorgar: Trade R1 Y1 Roussel

133) dragmio: Attack B2S Maru

134) MagicJohn: Build B1 Magicjohn

135) lorgar: Build G1 Roussel

136) dragmio: Trade B1 R1 Ilak

137) MagicJohn: Move G1 Magicjohn Gray

138) lorgar: Build R1 Lorgar

139) dragmio: Attack B1S Ilak

140) MagicJohn: Trade B3 G3 Magicjohn

141) lorgar: Discover G1 Lorgar B3 Megido

142) dragmio: Move R2 Dragmio Megido

143) MagicJohn: Build B1 Magicjohn

144) lorgar: Sacrifice G1 Megido
Build G1 Lorgar

145) dragmio: Build R2 Onepagewars

146) MagicJohn: Build R2 Gray

147) lorgar: Trade R1 B1 Lorgar

148) dragmio: Trade R2 Y2 Megido

149) MagicJohn: Move B1 Magicjohn Gray

150) lorgar: Discover B1 Lorgar G3 Boron

151) dragmio: Move Y2 Megido Onepagewars

152) MagicJohn: Build G1 Gray

153) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build B2 Boron
Build Y1 Roussel

154) dragmio: Move R2 Onepagewars Srima

155) MagicJohn: Discover G1 Gray B2 Grayhavens

156) lorgar: Trade B2 Y2 Boron

157) dragmio: Sacrifice Y1 Srima
Move R3 Maru Boron

158) MagicJohn: Build B2 Magicjohn

159) lorgar: Sacrifice Y2 Boron
Move G1 Roussel Magicjohn
Move G2 Roussel Magicjohn
Catastrophe Magicjohn Green

160) dragmio: Attack B1S Boron

161) MagicJohn: Build G1 Gray

162) lorgar: Trade Y1 G1 Roussel

163) dragmio: Move Y2 Onepagewars Mareinfinitus

164) MagicJohn: Sacrifice Y2 Gray
Move G1 Gray Lorgar
Move G1 Gray Lorgar
Catastrophe Lorgar Green

165) lorgar: Move R3 Roussel Lorgar

166) dragmio: Sacrifice Y2 Mareinfinitus
Move R2 Srima Lorgar
Move R3 Mareinfinitus Lorgar
Catastrophe Lorgar R

167) MagicJohn: Trade B2 G2 Magicjohn

168) dragmio: Trade B1 Y1 Boron

169) MagicJohn: Move R2 Gray Maru

170) dragmio: Move R3 Boron Magicjohn

171) MagicJohn: Build R1 Magicjohn

172) dragmio: Sacrifice B1 Ilak
Trade R3 Y3 Magicjohn

173) MagicJohn: Attack B2N Maru
	dragmio: Nice move MagicJohn. Thanks for the game lorgar.
	MagicJohn: Now, Why can't we all just get along? : )
  Obviously I made rash moves early that blew One Page Wars out of the game.  My continued aggressive moves doomed both Lorgor and me to eventual defeat.  Apologies to both non-me parties. I had never played a multi-player "Homeworlds" before. I really had no clue that I was screwing up other folks probably-well-thought-out strategies. Anyway, I guess that's what you get when playing with a newbie....... Dragmio - Thanks for the lesson. I learned a lot and fed into your plans for universal domination well.  It's been fun. MagicJohn    

174) dragmio: Sacrifice R2 Onepagewars
Attack R2E Magicjohn
Attack R1E Magicjohn

175) MagicJohn: Sacrifice R2 Maru
Attack R2N Magicjohn
Attack R1N Magicjohn

176) dragmio: Build Y1 Boron
	MagicJohn: Sorry, my humble star system lacks adequate docking facilities and supplies for large ships. The only piece of our economy still working is the industrial/military complex, and even that has taken a significant hit.  Perhaps, next millennium, when our economy recovers from the war effort, we could be more accommodating....  
	MagicJohn: No, although tempted after you blew up my star system, I am not going to force a resignation.  I will try to keep my yorkie off of the computer, but she, unlike 'ol MJ, can be a little vindictive.......

177) MagicJohn: Move R2 Magicjohn Boron
	dragmio: Thanks for waiting!
	MagicJohn: 

178) dragmio: Move Y1 Boron Magicjohn

179) MagicJohn: Attack Y1N Boron
	MagicJohn: I sent the order "attack b2 maru" and keep getting the message "The ship B2 cannot be found in the maru system. Did you specify the owner of the ship?"  I have tried typing in various codes , but keep getting the same response. Any suggestions or does the game just like you better?

180) dragmio: Move R1 Dragmio Roussel

181) MagicJohn: Attack Y1N Magicjohn

182) dragmio: Attack Y1S Roussel

183) MagicJohn: Move Y1 Magicjohn Boron

184) dragmio: Build B1 Dragmio

185) MagicJohn: Trade B2 R2 Maru

186) dragmio: Sacrifice B1 Dragmio
Trade Y3 R3 Magicjohn

187) MagicJohn: Sacrifice G2 Magicjohn
Build R1 Magicjohn
Build R2 Magicjohn
Catastrophe Magicjohn Red

188) dragmio: Attack G1S Roussel

189) MagicJohn: Move R2 Boron Magicjohn

190) dragmio: Move R1 Roussel Grayhavens

191) MagicJohn: Sacrifice Y1 Boron
Move R2 Maru Roussel

192) dragmio: Sacrifice Y1 Roussel
Move R1 Ilak Boron

193) MagicJohn: Sacrifice R1 Gray
Attack R1N Grayhavens

194) dragmio: Sacrifice G1 Roussel
Build R1 Boron
	MagicJohn: Ka-Boom!
	MagicJohn: One person's terrorist is another person's freedom fighter.....

195) MagicJohn: Move Y1 Boron Grayhavens

196) dragmio: Build B1 Dragmio

197) MagicJohn: Move G1 Grayhavens Roussel

198) dragmio: Trade B1 Y1 Dragmio

199) MagicJohn: Move Y1 Grayhavens Roussel

200) dragmio: Move Y1 Dragmio Boron

201) MagicJohn: Move R2 Roussel Magicjohn

202) dragmio: Build B1 Dragmio
	MagicJohn: I'm in another "Homeworlds" game that has devolved into a stalemate. Is there any way of opting for a draw if both parties agree??
	lorgar: find each other irl and wrestle for it :D

203) MagicJohn: Move R2 Magicjohn Boron
	dragmio: It seems there is no way to agree on a draw.
	lorgar: keep fighting!
	dragmio: we will! ;)
	MagicJohn: Me thinks Lorgar is enjoying this waaaay too much............

204) dragmio: Build R1 Boron
Catastrophe Boron R

205) MagicJohn: Move G1 Roussel Dragmio

206) dragmio: Trade B1 R1 Dragmio

207) MagicJohn: Build G1 Dragmio

208) dragmio: Build Y1 Boron

209) MagicJohn: Move Y1 Roussel Grayhavens

210) dragmio: Build R1 Dragmio

211) MagicJohn: Build G1 Dragmio
Catastrophe Dragmio Green

212) dragmio: Move Y1 Boron Dragmio

213) MagicJohn: Trade B1 G1 Gray

214) dragmio: Build Y1 Boron

215) MagicJohn: Build G1 Gray

216) dragmio: Move Y1 Boron Magicjohn

217) MagicJohn: Attack Y1N Magicjohn

218) dragmio: Build Y2 Boron

219) MagicJohn: Move Y1 Magicjohn Gray

220) dragmio: Trade Y1 B1 Dragmio

221) MagicJohn: Move G1 Gray Grayhavens

222) dragmio: Sacrifice B1 Dragmio
Trade Y2 R2 Boron

223) MagicJohn: Build R1 Grayhavens

224) dragmio: Trade R1 G1 Dragmio

225) MagicJohn: Build Y1 Grayhavens

226) dragmio: Sacrifice Y1 Boron
Move R2 Boron Dragmio

227) MagicJohn: Build G1 Gray

228) dragmio: Move B3 Dragmio Magicjohn

229) MagicJohn: Move G1 Gray Magicjohn

230) dragmio: Sacrifice R1 Dragmio
Attack R2E Magicjohn

231) MagicJohn: Build B1 Magicjohn

232) dragmio: Trade B3 R3 Magicjohn

233) MagicJohn: Trade B1 R1 Magicjohn

234) dragmio: Sacrifice R3 Magicjohn
Attack R1E Magicjohn
Attack B1E Magicjohn
Attack G1E Magicjohn

	dragmio: Thank you guys for an epic game! It lasted 9 months if I'm not mistaken. I'd start another one right away. :)


20001)
Variants: "Hard time"
Started: 2011.5.18, Ended: 2011.6.8
Participants: SilentTitan (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B1 R2 G3

2) SilentTitan: Homeworld B3 R2 G3

3) mneme: Build G1 Mneme

4) SilentTitan: Build G1 Silenttitan

5) mneme: Trade G1 B1 Mneme

6) SilentTitan: Trade G1 Y1 Silenttitan

7) mneme: Build B1 Mneme

8) SilentTitan: Build Y1 Silenttitan

9) mneme: Trade B1 Y1 Mneme

10) SilentTitan: Discover Y1 Silenttitan G1 Cdx

11) mneme: Build Y2 Mneme

12) SilentTitan: Build Y2 Cdx

13) mneme: Discover Y1 Mneme G3 Stage

14) SilentTitan: Discover Y1 Cdx B3 Cdw

15) mneme: Build B1 Mneme

16) SilentTitan: Build G1 Silenttitan

17) mneme: Move B1 Mneme Stage

18) SilentTitan: Sacrifice G1 Silenttitan
Build Y2 Cdw

19) mneme: Build Y3 Stage

20) SilentTitan: Trade Y2 G2 Cdw

21) mneme: Trade Y1 R1 Stage

22) SilentTitan: Discover G2 Cdw Y1 Zzd

23) mneme: Build B2 Stage

24) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Cdx
Build Y3 Cdw
Build Y3 Silenttitan

25) mneme: Move B2 Stage Zzd

26) SilentTitan: Trade Y3 R3 Cdw

27) mneme: Build Y3 Mneme

28) SilentTitan: Trade Y3 G3 Silenttitan

29) mneme: Build Y3 Stage

30) SilentTitan: Sacrifice Y2 Cdx
Move Y1 Cdw Mneme
Move Y2 Cdx Stage

31) mneme: Sacrifice B2 Zzd
Trade Y3 R3 Stage
Trade Y2 R2 Mneme

32) SilentTitan: Sacrifice G2 Zzd
Build Y1 Mneme
Build Y2 Stage

33) mneme: Sacrifice R2 Mneme
Attack Y2 Stage
Attack Y2 Stage

34) SilentTitan: Move Y1 Mneme Stage
Catastrophe Stage Yellow

35) mneme: Attack Y1 Mneme

36) SilentTitan: Build G1 Silenttitan

37) mneme: Build B2 Stage

38) SilentTitan: Sacrifice G1 Silenttitan
Build R1 Cdw

39) mneme: Move Y1 Mneme Stage

40) SilentTitan: Trade R1 Y1 Cdw

41) mneme: Discover R1 Stage G1 Stage2

42) SilentTitan: Build G1 Silenttitan

43) mneme: Move B2 Stage Stage2

44) SilentTitan: Sacrifice G1 Silenttitan
Build Y2 Cdw

45) mneme: Sacrifice G3 Mneme
Build B2 Stage
Build B2 Stage2
Build B3 Stage2

46) SilentTitan: Trade Y2 G2 Cdw

47) mneme: Trade B3 G3 Stage2

48) SilentTitan: Build Y2 Cdw

49) mneme: Sacrifice G3 Stage2
Build B3 Stage2
Build Y2 Stage
Build R1 Stage

50) SilentTitan: Build Y2 Silenttitan

51) mneme: Sacrifice Y1 Stage
Move B3 Stage2 Silenttitan

52) SilentTitan: Attack B3 Silenttitan North

53) mneme: Sacrifice Y2 Stage
Move B2 Stage2 Silenttitan
Move B2 Stage2 Silenttitan
Catastrophe Silenttitan B

	SilentTitan: good game ... thanks
	mneme: Good game!


19749)
Variants: "Hard time"
Started: 2011.5.19, Ended: 2011.5.29
Participants: SilentTitan (S), dragmio (N)
Winner: SilentTitan

1) dragmio: Homeworld G2 B1 Y3

2) SilentTitan: Homeworld R3 B2 G3

3) dragmio: Build Y1 Dragmio

4) SilentTitan: Build G1 Silenttitan

5) dragmio: Build Y1 Dragmio

6) SilentTitan: Trade G1 Y1 Silenttitan

7) dragmio: Trade Y1 R1 Dragmio

8) SilentTitan: Build G1 Silenttitan

9) dragmio: Build R1 Dragmio

10) SilentTitan: Discover G1 Silenttitan B1 Book
	dragmio: Sorry, I probabbly won't be able to play in the next 24 hours. After that I'll again be online normally.
	SilentTitan: not a problem

11) dragmio: Discover Y1 Dragmio R3 Mark

12) SilentTitan: Build G1 Book

13) dragmio: Move R1 Dragmio Mark

14) SilentTitan: Trade G1 R1 Book

15) dragmio: Build R2 Dragmio

16) SilentTitan: Build R2 Book

17) dragmio: Trade R1 G1 Dragmio

18) SilentTitan: Trade R2 Y2 Book

19) dragmio: Move Y3 Dragmio Mark

20) SilentTitan: Build Y1 Book

21) dragmio: Move Y3 Mark Book

22) SilentTitan: Build Y2 Book
Catastrophe Book Yellow

23) dragmio: Move Y1 Mark Dragmio
	dragmio: nice! :)

24) SilentTitan: Build G1 Silenttitan

25) dragmio: Build G2 Dragmio

26) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Silenttitan
Build G3 Silenttitan
Build G3 Book

27) dragmio: Move G1 Dragmio Mark

28) SilentTitan: Trade G1 Y1 Book

29) dragmio: Trade G2 Y2 Dragmio

30) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Silenttitan
Build Y2 Book
Build Y3 Silenttitan

31) dragmio: Move Y1 Dragmio Mark
	dragmio: Wow!I'll learn a lot in this game. :)

32) SilentTitan: Trade Y2 B2 Silenttitan

33) dragmio: Build Y2 Dragmio

34) SilentTitan: Sacrifice Y2 Book
Discover G3 Book Y3 Thing1
Discover R1 Book Y3 Thing2

35) dragmio: Move R2 Dragmio Thing2

36) SilentTitan: Move G3 Thing1 Dragmio

37) dragmio: Attack R1 Thing2

38) SilentTitan: Trade Y3 R3 Silenttitan

39) dragmio: Move R2 Thing2 Book

40) SilentTitan: Sacrifice R3 Silenttitan
Attack Y2 Dragmio North
Attack Y2 Dragmio North
Pass

	dragmio: Thank you for the game. It was educational! :)


20009)
Variants: "No undo"
Started: 2011.5.23, Ended: 2011.6.10
Participants: ajo (S), radio414 (N)
Winner: ajo

1) radio414: Homeworld B2 R1 G3

2) ajo: Homeworld B3 G2 R3

3) radio414: Build G1 Radio414

4) ajo: Build R1 Ajo

5) radio414: Trade G1 Y1 Radio414

6) ajo: Trade R3 Y3 Ajo

7) radio414: Build G1 Radio414

8) ajo: Build R1 Ajo

9) radio414: Build Y1 Radio414

10) ajo: Build R2 Ajo

11) radio414: Build G1 Radio414

12) ajo: Trade R2 G2 Ajo

13) radio414: Trade G3 R3 Radio414

14) ajo: Build R2 Ajo
	ajo: That doesn't help you, though...

15) radio414: Discover R3 Radio414 Y3 Sol

16) ajo: Trade R1 B1 Ajo

17) radio414: Move G1 Radio414 Sol

18) ajo: Build B1 Ajo

19) radio414: Trade Y1 B1 Radio414

20) ajo: Discover B1 Ajo G1 Alpha

21) radio414: Build Y1 Radio414

22) ajo: Build B2 Alpha

23) radio414: Build G2 Sol

24) ajo: Build G3 Ajo

25) radio414: Build G3 Radio414

26) ajo: Trade G3 Y3 Ajo
	ajo: Oh, phooey. I didn't notice that I was letting you do that.

27) radio414: Sacrifice B1 Radio414
Trade G2 Y2 Sol

28) ajo: Move Y3 Ajo Alpha

29) radio414: Trade Y1 B1 Radio414

30) ajo: Discover B1 Alpha R3 Redulous

31) radio414: Move B1 Radio414 Sol

32) ajo: Build Y1 Alpha

33) radio414: Discover R3 Sol Y1 Beta

34) ajo: Sacrifice G2 Ajo
Build B2 Redulous
Build B3 Alpha

35) radio414: Move Y2 Sol Beta

36) ajo: Sacrifice Y3 Alpha
Move B1 Redulous Radio414
Move B2 Redulous Radio414
Move B2 Alpha Sol

37) radio414: Move G1 Radio414 Sol

38) ajo: Sacrifice R2 Ajo
Attack G1 Sol
Attack B1 Sol

39) radio414: Move G1 Sol Beta

40) ajo: Attack Y1 Radio414

41) radio414: Attack Y1 Radio414
	ajo: Whoops, I guess I just broke my general rule of "don't make a move that's reversible by your opponent unless you're intending to offer a draw".
	radio414: I assume you're not, then?
	ajo: I'm not offering a draw, no. :)  If your next move is "attack y1 radio414", then I'll make a different move on my next turn.

42) ajo: Build B3 Ajo

43) radio414: Attack B2 Radio414

44) ajo: Move B1 Sol Radio414
Catastrophe Radio414 Blue

45) radio414: Build G2 Radio414

46) ajo: Sacrifice B2 Sol
Trade B3 R3 Ajo
Trade G1 R1 Sol

	ajo: I think that's checkmate. :)  Good game!
	radio414: Oh, I saw checkmate as soon as I saw you could pull that catastrophe. :) Good Game.


20049)
Variants: "Hard time"
Started: 2011.5.25, Ended: 2011.5.30
Participants: goulo (S), AdamBadura (N)
Winner: goulo

1) AdamBadura: Homeworld G3 B2 Y3

2) goulo: Homeworld R1 B2 G3

3) AdamBadura: Build Y1 Adambadura

4) goulo: Build G1 Goulo

5) AdamBadura: Build Y1 Adambadura

6) goulo: Trade G1 Y1 Goulo

7) AdamBadura: Trade Y1 R1 Adambadura

8) goulo: Build G1 Goulo

9) AdamBadura: Trade Y1 G1 Adambadura

10) goulo: Trade G1 R1 Goulo

11) AdamBadura: Build Y1 Adambadura

12) goulo: Build R2 Goulo

13) AdamBadura: Build R2 Adambadura

14) goulo: Trade R1 G1 Goulo

15) AdamBadura: Discover Y1 Adambadura G1 Drydocks

16) goulo: Discover G1 Goulo Y3 Citronego

17) AdamBadura: Move R2 Adambadura Drydocks

18) goulo: Move R2 Goulo Citronego

19) AdamBadura: Build G2 Adambadura
	goulo: somehow i ended up a ship behind. :/
	AdamBadura: Its when you traded R1->Y1 in your homeworld.

20) goulo: Build G2 Goulo

21) AdamBadura: Discover G2 Adambadura Y1 Outpost

22) goulo: Sacrifice G3 Goulo
Build G2 Goulo
Build G3 Goulo
Build G3 Citronego

23) AdamBadura: Build Y2 Adambadura
	goulo: time for bed, dobranoc!
	AdamBadura: And there was the advantage...

24) goulo: Discover G2 Goulo Y3 Bananego

25) AdamBadura: Build Y2 Drydocks

26) goulo: Build Y2 Goulo

27) AdamBadura: Build R1 Adambadura

28) goulo: Move G3 Citronego Drydocks

29) AdamBadura: Sacrifice Y2 Drydocks
Discover Y1 Drydocks B3 Transformers
Move R2 Drydocks Transformers

30) goulo: Sacrifice Y1 Goulo
Discover G1 Citronego B1 Safireto

31) AdamBadura: Move G2 Outpost Transformers

32) goulo: Sacrifice G2 Bananego
Build G2 Safireto
Build Y1 Goulo

33) AdamBadura: Build Y1 Transformers

34) goulo: Discover Y2 Goulo R3 Rubenego
	AdamBadura: I think the game is lost now (for me). I suspect mostly due to your advantage in G.

35) AdamBadura: Discover G1 Adambadura B1 Changers
	goulo: But I never underestimate my ability to ruin my good position... :)

36) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build Y2 Goulo
Build Y3 Rubenego

37) AdamBadura: Move Y1 Transformers Changers

38) goulo: Move Y2 Rubenego Drydocks

39) AdamBadura: Discover G1 Changers R3 Bunker

40) goulo: Move G2 Goulo Bunker

41) AdamBadura: Sacrifice G1 Bunker
Build G1 Transformers

42) goulo: Move G3 Drydocks Adambadura
	AdamBadura: It just hit me that G sacrifice-rebuild is a way of moving...
	goulo: The many wonders of Homeworlds!

43) AdamBadura: Attack G3 Adambadura

44) goulo: Sacrifice Y2 Goulo
Move G1 Safireto Adambadura
Move G2 Safireto Adambadura
Catastrophe Adambadura G

45) AdamBadura: Discover R1 Adambadura G3 Shipyard

46) goulo: Build Y2 Goulo

47) AdamBadura: Sacrifice G2 Transformers
Build R2 Transformers
Build R3 Shipyard

48) goulo: Move Y3 Rubenego Adambadura

	AdamBadura: Sadly here I wasn't doing so well... :(
	goulo: interesting game! thanks.


20062)
Started: 2011.5.27, Ended: 2011.5.27
Participants: GodofPie (S), radio414 (N)
Winner: radio414

1) radio414: Homeworld B2 R1 G3

2) GodofPie: Homeworld G2 Y1 R3 *
	GodofPie: pop


3) radio414: Build G1 Radio414

4) GodofPie: Build R1 Godofpie

5) radio414: Trade G1 Y1 Radio414
	GodofPie: pop a top

6) GodofPie: Discover R3 Godofpie B3 Pastaperimero
	GodofPie: sih...

7) radio414: Build Y1 Radio414

8) GodofPie: Build R1 Godofpie

9) radio414: Build Y2 Radio414
	GodofPie: tony hawk

10) GodofPie: Move R1 Godofpie Pastaperimero

11) radio414: Trade Y2 R2 Radio414
	GodofPie: tortillas

	GodofPie: Mexican Ice cream

12) GodofPie: Build R2 Godofpie

13) radio414: Discover G3 Radio414 Y3 Alfredo

14) GodofPie: Move R2 Godofpie Alfredo

15) radio414: Move G3 Alfredo Godofpie



20043)
Started: 2011.5.27, Ended: 2011.5.29
Participants: aqurk (S), dragmio (N)
Winner: dragmio

1) dragmio: Homeworld B2 Y1 G3

2) aqurk: Homeworld G1 Y2 B3

3) dragmio: Build G1 Dragmio
	aqurk: This is my 1st game. The game is giving me hints about "it's very important that...." - and I have no idea why it is important. I guess I will be wiser after this game :)
	dragmio: Well,I don't thin kyou'll learn a lot from me. It's my third game ever. :) Anyway, good luck.

4) aqurk: Build B1 Aqurk

5) dragmio: Trade G1 Y1 Dragmio

6) aqurk: Discover B3 Aqurk Y3 Caprica

7) dragmio: Discover Y1 Dragmio R3 Kobol

8) aqurk: Trade B3 R3 Caprica

9) dragmio: Trade G3 R3 Dragmio

10) aqurk: Build B1 Aqurk

11) dragmio: Move Y1 Kobol Dragmio

12) aqurk: Trade B1 Y1 Aqurk

13) dragmio: Trade Y1 G1 Dragmio

14) aqurk: Build B1 Aqurk

15) dragmio: Build G1 Dragmio

16) aqurk: Build B1 Aqurk

17) dragmio: Build G2 Dragmio

18) aqurk: Move B1 Aqurk Caprica

19) dragmio: Discover G1 Dragmio B3 Kobol2

20) aqurk: Build Y1 Aqurk

21) dragmio: Build G2 Kobol2

22) aqurk: Build B2 Aqurk

23) dragmio: Build G2 Dragmio

24) aqurk: Trade B2 R2 Aqurk

25) dragmio: Build G3 Kobol2

26) aqurk: Move R2 Aqurk Kobol2

27) dragmio: Trade G3 R3 Kobol2

28) aqurk: Attack G2 Kobol2

29) dragmio: Attack R2 Kobol2

30) aqurk: Sacrifice G2 Kobol2
Build B2 Caprica
Build B2 Caprica

31) dragmio: Move G2 Dragmio Kobol2

32) aqurk: Move B2 Caprica Aqurk

33) dragmio: Trade G2 Y2 Kobol2

34) aqurk: Move Y1 Aqurk Caprica

35) dragmio: Move R3 Kobol2 Aqurk

36) aqurk: Sacrifice B2 Caprica
Trade B2 R2 Aqurk
Trade B1 R1 Aqurk

37) dragmio: Attack B1S Aqurk

	aqurk: cant see that I can recover from that. thanks for the game
	dragmio: Maybe you shouldn't have resigned. You could have built a red ship, overpopulate system and cause a disaster. All red ships would have been destroyed. Anyway, gg.


20063)
Started: 2011.5.27, Ended: 2011.6.14
Participants: radio414 (S), GodofPie (N)
Winner: radio414

1) GodofPie: Homeworld Y3 B1 G3

2) radio414: Homeworld B2 R1 G3

3) GodofPie: Build G1 Godofpie

4) radio414: Build G1 Radio414

5) GodofPie: Discover G1 Godofpie Y2 Toe

6) radio414: Trade G1 Y1 Radio414

7) GodofPie: Build G1 Toe

8) radio414: Build Y1 Radio414

9) GodofPie: Build G1 Godofpie

10) radio414: Build G2 Radio414

11) GodofPie: Build G2 Godofpie

12) radio414: Trade Y1 R1 Radio414

13) GodofPie: Trade G1 B1 Godofpie

14) radio414: Build Y1 Radio414

15) GodofPie: Move B1 Godofpie Toe

16) radio414: Trade Y1 B1 Radio414

17) GodofPie: Build B2 Toe

18) radio414: Build B2 Radio414

19) GodofPie: Build B3 Toe

20) radio414: Discover B2 Radio414 G3 Nail

21) GodofPie: Trade B3 R3 Toe

22) radio414: Build B3 Nail
	GodofPie: took u long enough
	GodofPie: nail rockssssss!

23) GodofPie: Build B3 Toe

24) radio414: Sacrifice Y1 Radio414
Move B2 Nail Toe
Catastrophe Toe B

25) GodofPie: Trade G2 B2 Godofpie
	radio414: Wrong system... Oops

26) radio414: Trade G2 Y2 Radio414
	GodofPie: ???

	GodofPie: wha up brada  (ghettofied version of me)

27) GodofPie: Build R1 Toe
	radio414: ...
	radio414: Did I tell you about catastrophes?
	GodofPie: no what the hell just happened!!!!!!!!!!huhhhhhhhhhhhhh Feeeeeeeeeeeeeeeeelllllllllllliiiiiiiiiiixxxxxxxxxx!!!!!!!!!!!!!!!!!!

28) radio414: Build Y1 Radio414

29) GodofPie: Move B2 Godofpie Toe

30) radio414: Build R2 Radio414

31) GodofPie: Trade G1 Y1 Toe

32) radio414: Trade R1 G1 Radio414

33) GodofPie: Discover R3 Toe B3 Pi

34) radio414: Move R2 Radio414 Nail
	GodofPie: potbelly

35) GodofPie: Build G1 Godofpie

36) radio414: Build G2 Radio414

37) GodofPie: Move B2 Toe Pi

38) radio414: Move G2 Radio414 Nail

39) GodofPie: Move G1 Godofpie Toe

40) radio414: Move Y2 Radio414 Nail

41) GodofPie: Trade B2 Y2 Pi

42) radio414: Trade G1 Y1 Radio414

	radio414: OI


20060)
Variants: "Unrated, Hard time"
Started: 2011.5.27, Ended: 2011.5.30
Participants: aqurk (S), GodofPie (N)
Winner: aqurk

1) GodofPie: Homeworld Y3 B1 G3

2) aqurk: Homeworld G1 Y3 B3
	GodofPie: yo whats up dude

3) GodofPie: Build G1 Godofpie
	aqurk: Hi there. 1st game (well, running another game simultaneous). I have no idea what will be smart moves and such, but I guess I will be wiser after this game :)
	GodofPie: dido

4) aqurk: Build B1 Aqurk

5) GodofPie: Trade G1 R1 Godofpie

6) aqurk: Trade B1 G1 Aqurk

7) GodofPie: Discover G3 Godofpie R2 Nap

8) aqurk: Build B1 Aqurk

9) GodofPie: Trade R1 G1 Godofpie

10) aqurk: Trade B3 R3 Aqurk

11) GodofPie: Build G2 Godofpie

12) aqurk: Discover R3 Aqurk Y2 Caprica



20008)
Variants: "Hard time"
Started: 2011.5.28, Ended: 2011.6.8
Participants: GodofPie (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B3 G3

2) GodofPie: Homeworld Y2 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) GodofPie: Build G1 Godofpie

5) SilentTitan: Trade G1 Y1 Silenttitan

6) GodofPie: Discover G1 Godofpie B3 Peanut

7) SilentTitan: Build G1 Silenttitan

8) GodofPie: Build G1 Peanut

9) SilentTitan: Build G2 Silenttitan

10) GodofPie: Trade G1 Y1 Peanut

11) SilentTitan: Discover G2 Silenttitan B1 Butter

12) GodofPie: Build G1 Peanut

13) SilentTitan: Build G2 Butter

14) GodofPie: Build G2 Godofpie

15) SilentTitan: Trade G2 Y2 Butter

16) GodofPie: Build Y1 Peanut

17) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Butter
Build Y3 Silenttitan
Build Y3 Silenttitan



19927)
Variants: "Hard time"
Started: 2011.5.28, Ended: 2011.6.15
Participants: Jesse (S), GodofPie (N)
Winner: Jesse

1) GodofPie: Homeworld B3 Y2 G3

2) Jesse: Homeworld Y1 B2 G3

3) GodofPie: Build G1 Godofpie

4) Jesse: Build G1 Jesse

5) GodofPie: Discover G1 Godofpie Y1 God

6) Jesse: Discover G1 Jesse B3 Zathras

7) GodofPie: Build G1 Godofpie

8) Jesse: Build G2 Zathras

9) GodofPie: Build G2 God

10) Jesse: Trade G2 Y2 Zathras

11) GodofPie: Trade G1 R1 Godofpie

12) Jesse: Trade G1 R1 Zathras



20076)
Variants: "Hard time"
Started: 2011.5.28, Ended: 2011.6.7
Participants: GodofPie (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B3 G3

2) GodofPie: Homeworld B1 Y2 G3

3) SilentTitan: Build G1 Silenttitan

4) GodofPie: Build G1 Godofpie

5) SilentTitan: Trade G1 Y1 Silenttitan

6) GodofPie: Discover G1 Godofpie B3 Pop

7) SilentTitan: Build G1 Silenttitan

8) GodofPie: Build G1 Pop

9) SilentTitan: Build G2 Silenttitan

10) GodofPie: Trade G1 Y1 Pop

11) SilentTitan: Trade G2 R2 Silenttitan

12) GodofPie: Build G1 Pop

13) SilentTitan: Discover R2 Silenttitan Y1 Tart

14) GodofPie: Trade G3 R3 Godofpie

15) SilentTitan: Move R2 Tart Pop



20077)
Variants: "Hard time"
Started: 2011.5.28, Ended: 2011.6.7
Participants: GodofPie (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld Y2 B1 G3

2) GodofPie: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) GodofPie: Build G1 Godofpie

5) SilentTitan: Trade G1 B1 Silenttitan

6) GodofPie: Trade G3 R3 Godofpie

7) SilentTitan: Build B2 Silenttitan

8) GodofPie: Discover R3 Godofpie Y2 Tot

9) SilentTitan: Build G1 Silenttitan

10) GodofPie: Discover R3 Tot Y3 Pop

11) SilentTitan: Trade G1 R1 Silenttitan

12) GodofPie: Build G1 Godofpie

13) SilentTitan: Trade B2 Y2 Silenttitan

14) GodofPie: Trade G1 R1 Godofpie

15) SilentTitan: Build B2 Silenttitan



19973)
Started: 2011.5.28, Ended: 2011.7.25
Participants: ts52 (S), daselva (N)
Winner: daselva

1) daselva: Homeworld B1 R2 G3

2) ts52: Homeworld Y3 B2 G3

3) daselva: Build G1 Daselva
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) daselva: Trade G3 Y3 Daselva

6) ts52: Trade G1 R1 Ts52

7) daselva: Build Y1 Daselva

8) ts52: B R1 Ts52

9) daselva: Trade Y3 G3 Daselva

10) ts52: T R1 Y1 Ts52

11) daselva: Discover G1 Daselva R3 S1

12) ts52: Discover Y1 Ts52 G1 Robin

13) daselva: Build Y1 Daselva

14) ts52: Build Y2 Robin

15) daselva: Move Y1 Daselva S1

16) ts52: Build R1 Ts52

17) daselva: Build Y2 S1

18) ts52: Move R1 Ts52 Robin

19) daselva: Discover Y2 S1 G1 S2

20) ts52: Build G2 Ts52

21) daselva: Build Y2 S2

22) ts52: Discover Y2 Robin G3 Kermit

23) daselva: Build Y3 S1

24) ts52: Move Y2 Kermit S2

25) daselva: Build Y3 Daselva

26) ts52: Discover G2 Ts52 B1 Grover

27) daselva: Trade Y3 R3 Daselva

28) ts52: Build Y3 Robin

29) daselva: Move R3 Daselva S1

30) ts52: Build R1 Robin

31) daselva: Move R3 S1 S2

32) ts52: Discover Y2 S2 R2 Elmo

33) daselva: Discover Y2 S2 R3 S3

34) ts52: Build R2 Ts52

35) daselva: Build G2 S1

36) ts52: Discover Y1 Robin G3 Kermit

37) daselva: Build G2 Daselva

38) ts52: Trade R1 B1 Ts52

39) daselva: Build R1 S2

40) ts52: Move B1 Ts52 Robin

41) daselva: Move R3 S2 Kermit

42) ts52: Move Y1 Kermit Grover

43) daselva: Sacrifice Y1 S1
Move R3 Kermit Grover

44) ts52: Build G3 Ts52

45) daselva: Attack G2 Grover

46) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Elmo
Build B2 Robin

47) daselva: Sacrifice Y3 S1
Move G2 Grover Ts52
Move G1 S1 S2
Move G1 S2 Ts52
Catastrophe Ts52 G

48) ts52: Move Y3 Robin Ts52
	ts52: Well shoot. How did I not see that coming... well played.

49) daselva: Attack Y1 Grover

50) ts52: Trade Y3 G3 Ts52

51) daselva: Sacrifice G2 Daselva
Build Y3 Grover
Build Y3 S2

52) ts52: Move Y1 Elmo Robin

53) daselva: Sacrifice Y3 Grover
Move Y1 Grover Ts52
Move Y3 S2 Ts52
Move Y2 S2 Ts52
Catastrophe Ts52 Y

54) ts52: Trade B2 Y2 Robin

55) daselva: Build G1 Daselva

56) ts52: Build G2 Ts52

57) daselva: Build G2 S1

58) ts52: Trade G3 Y3 Ts52

59) daselva: Sacrifice Y2 S3
Move R3 Grover Elmo
Move R3 Elmo Robin

60) ts52: Build R3 Robin
Catastrophe Robin Red

61) daselva: Build Y1 Daselva

62) ts52: Build G3 Ts52

63) daselva: Move Y1 Daselva S1

64) ts52: Move Y3 Ts52 S1

65) daselva: Sacrifice G2 S1
Build Y2 S1
Build Y3 S1
Catastrophe S1 Y

66) ts52: Move Y1 Robin Ts52

67) daselva: Trade G1 B1 Daselva

68) ts52: Build B2 Robin

69) daselva: Move B1 Daselva S1

70) ts52: Discover G2 Ts52 Y3 Bigbird

71) daselva: Build B2 S1

72) ts52: Move B2 Robin Bigbird

73) daselva: Trade B2 Y2 S1

74) ts52: Build R1 Ts52

75) daselva: Build B2 S1

76) ts52: Build B3 Bigbird

77) daselva: Move B2 S1 S2

78) ts52: Build B3 Robin

79) daselva: Build B3 S2

80) ts52: Trade B3 G3 Bigbird

81) daselva: Trade G3 Y3 Daselva

82) ts52: Build B3 Bigbird
	ts52: well shoot...

83) daselva: Sacrifice Y3 Daselva
Move B1 S1 Ts52
Move B2 S2 Ts52
Move B3 S2 Ts52
Catastrophe Ts52 B
	daselva: thank you for playing
	ts52: Thanks for the game. Well played.



20061)
Variants: "Unrated, Sinister"
Started: 2011.5.29, Ended: 2011.6.18
Participants: GodofPie (S), radio414 (N), dragmio (E)
Winner: radio414

1) radio414: Homeworld B2 R1 G3

2) dragmio: Homeworld G3 Y2 B3

3) GodofPie: Homeworld B3 G2 R3

4) radio414: Build G1 Radio414

5) dragmio: Build B1 Dragmio

6) GodofPie: Build R1 Godofpie

7) radio414: Trade G1 Y1 Radio414

8) dragmio: Build B1 Dragmio

9) GodofPie: Trade R1 G1 Godofpie

10) radio414: Build Y1 Radio414

11) dragmio: Trade B1 Y1 Dragmio

12) GodofPie: Trade G1 B1 Godofpie

13) radio414: Build G1 Radio414

14) dragmio: Build Y1 Dragmio

15) GodofPie: Build B1 Godofpie

16) radio414: Build Y2 Radio414

17) dragmio: Discover Y1 Dragmio G1 Ennis

18) GodofPie: Trade B1 R1 Godofpie

19) radio414: Trade Y1 B1 Radio414

20) dragmio: Move B1 Dragmio Ennis

21) GodofPie: Trade R1 Y1 Godofpie

22) radio414: Build Y2 Radio414

23) dragmio: Build B1 Ennis

24) GodofPie: Move R3 Godofpie Ennis

25) radio414: Trade Y2 R2 Radio414

26) dragmio: Build Y2 Dragmio

27) dragmio: Build Y2 Ennis

28) radio414: Build Y3 Radio414

29) dragmio: Build Y3 Ennis
	dragmio: Why did he resign?
	radio414: I have no idea.

30) radio414: Sacrifice Y2 Radio414
Discover Y1 Radio414 Y3 Overdose
Move Y1 Overdose Ennis
Catastrophe Ennis Y

31) dragmio: Trade B1 R1 Ennis

32) radio414: Build Y1 Radio414

33) dragmio: Move B3 Dragmio Ennis

34) radio414: Sacrifice Y3 Radio414
Discover Y1 Radio414 Y3 Overdose
Move Y1 Overdose Ennis
Move Y1 Ennis Dragmio
Catastrophe Dragmio Y

	dragmio: Wow, nice! GG!


20083)
Started: 2011.5.29, Ended: 2011.6.4
Participants: dragmio (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y2 G3

2) dragmio: Homeworld B3 G1 Y3

3) lorgar: Build G1 Lorgar

4) dragmio: Build Y1 Dragmio

5) lorgar: Build G1 Lorgar

6) dragmio: Trade Y1 B1 Dragmio

7) lorgar: Discover G1 Lorgar B3 Tadakatsu

8) dragmio: Build B1 Dragmio

9) lorgar: Build G2 Tadakatsu

10) dragmio: Discover B1 Dragmio Y2 Karlovac

11) lorgar: Trade G1 Y1 Tadakatsu

12) dragmio: Build B2 Dragmio

13) lorgar: Build G1 Tadakatsu

14) dragmio: Trade B2 G2 Dragmio

15) lorgar: Trade G1 R1 Tadakatsu

16) dragmio: Build B2 Dragmio

17) lorgar: Move R1 Tadakatsu Karlovac

18) dragmio: Move B2 Dragmio Karlovac

19) lorgar: Build G1 Tadakatsu

20) dragmio: Trade B2 G2 Karlovac

21) lorgar: Move G2 Tadakatsu Karlovac

22) dragmio: Trade G2 R2 Karlovac

23) lorgar: Attack R2S Karlovac

24) dragmio: Move B1 Karlovac Dragmio

25) lorgar: Move R2 Karlovac Dragmio

26) dragmio: Trade Y3 R3 Dragmio

27) lorgar: Sacrifice G2 Karlovac
Build R1 Dragmio
Build R1 Dragmio
Catastrophe Dragmio Red

28) dragmio: Trade B1 R1 Dragmio

29) lorgar: Build G2 Tadakatsu

30) dragmio: Trade B1 Y1 Dragmio

31) lorgar: Move G2 Tadakatsu Karlovac

32) dragmio: Build Y1 Dragmio

33) lorgar: Sacrifice G3 Lorgar
Build G2 Tadakatsu
Build G3 Karlovac
Build G3 Lorgar

34) dragmio: Build Y2 Dragmio

35) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build G3 Lorgar
Build Y3 Tadakatsu

36) dragmio: Move Y1 Dragmio Karlovac

37) lorgar: Sacrifice Y3 Tadakatsu
Move G2 Karlovac Dragmio
Move G2 Tadakatsu Karlovac
Move G2 Karlovac Dragmio
Catastrophe Dragmio Green

38) dragmio: Trade Y2 G2 Dragmio

39) lorgar: Move G3 Karlovac Dragmio

40) dragmio: Sacrifice G2 Dragmio
Build Y2 Dragmio
Build Y3 Dragmio

41) lorgar: Sacrifice R1 Karlovac
Attack Y3S Dragmio

42) dragmio: Move Y1 Karlovac Dragmio
Catastrophe Dragmio Y

43) lorgar: Trade G3 R3 Dragmio

	dragmio: GG!
	lorgar: thx, rematch?


20078)
Variants: "Hard time"
Started: 2011.5.29, Ended: 2011.6.9
Participants: SilentTitan (S), lorgar (N)
Winner: SilentTitan

1) lorgar: Homeworld B1 Y3 G3

2) SilentTitan: Homeworld R2 B3 G3

3) lorgar: Build G1 Lorgar

4) SilentTitan: Build G1 Silenttitan

5) lorgar: Discover G1 Lorgar B2 Mirumoto

6) SilentTitan: Trade G1 B1 Silenttitan

7) lorgar: Build G1 Mirumoto

8) SilentTitan: Build B1 Silenttitan

9) lorgar: Trade G1 R1 Mirumoto

10) SilentTitan: Trade B1 Y1 Silenttitan

11) lorgar: Build G1 Lorgar

12) SilentTitan: Discover B1 Silenttitan Y1 Scorch

13) lorgar: Build G1 Mirumoto

14) SilentTitan: Build G2 Silenttitan

15) lorgar: Trade G1 Y1 Mirumoto

16) SilentTitan: Discover B1 Scorch Y2 Wide

17) lorgar: Trade G1 R1 Lorgar

18) SilentTitan: Sacrifice G2 Silenttitan
Build B1 Wide
Build B2 Wide

19) lorgar: Build R1 Lorgar

20) SilentTitan: Trade B2 R2 Wide

21) lorgar: Build R2 Mirumoto

22) SilentTitan: Trade B1 G1 Wide

23) lorgar: Trade R1 G1 Lorgar

24) SilentTitan: Build G2 Silenttitan

25) lorgar: Discover G1 Mirumoto B1 Katsumoto

26) SilentTitan: Trade G2 Y2 Silenttitan

27) lorgar: Trade R2 G2 Mirumoto

28) SilentTitan: Build G2 Wide

29) lorgar: Sacrifice G3 Lorgar
Build G2 Mirumoto
Build G3 Katsumoto
Build G3 Lorgar

30) SilentTitan: Sacrifice Y2 Silenttitan
Move B1 Wide Lorgar
Move G1 Wide Lorgar

31) lorgar: Trade G1 R1 Lorgar

32) SilentTitan: Sacrifice R2 Wide
Attack R1 Lorgar North
Attack R1 Lorgar North

33) lorgar: Build G1 Mirumoto

34) SilentTitan: Sacrifice G2 Wide
Build G2 Lorgar
Build B2 Lorgar

35) lorgar: Pass

36) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Lorgar
Build B3 Lorgar
Build G3 Lorgar
Catastrophe Lorgar Blue
Catastrophe Lorgar Green

	lorgar: gg
	SilentTitan: good game.


20085)
Variants: "Hard time"
Started: 2011.5.29, Ended: 2011.6.6
Participants: Remneb (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld G1 B3 Y3

2) Remneb: Homeworld R1 B2 G3

3) Aristos: Build Y1 Aristos

4) Remneb: Build G1 Remneb

5) Aristos: Trade Y1 G1 Aristos

6) Remneb: Trade G1 Y1 Remneb

7) Aristos: Build Y1 Aristos

8) Remneb: Build G1 Remneb

9) Aristos: Build G2 Aristos

10) Remneb: Discover G1 Remneb Y3 Sirius

11) Aristos: Trade G1 R1 Aristos

12) Remneb: Build G1 Remneb

13) Aristos: Build G2 Aristos

14) Remneb: Sacrifice G3 Remneb
Build G2 Sirius
Build G3 Remneb
Build G3 Remneb

15) Aristos: Sacrifice Y3 Aristos
Discover G2 Aristos B2 Temp1
Discover G2 Temp1 B3 Temp2
Move G2 Temp2 Remneb
Catastrophe Remneb Green

16) Remneb: Move G2 Sirius Remneb

17) Aristos: Build R1 Aristos

18) Remneb: Build Y1 Remneb

19) Aristos: Build Y2 Aristos

20) Remneb: Move Y1 Remneb Sirius

21) Aristos: Discover G2 Aristos B2 Deneb

22) Remneb: Build Y2 Remneb

23) Aristos: Move Y1 Aristos Deneb

24) Remneb: Trade Y2 R2 Remneb

25) Aristos: Build Y2 Deneb

26) Remneb: Move R2 Remneb Sirius

27) Aristos: Build R2 Aristos

28) Remneb: Build Y2 Remneb

29) Aristos: Build Y3 Aristos

30) Remneb: Sacrifice Y2 Remneb
Move R2 Sirius Deneb
Move R2 Deneb Aristos
Catastrophe Aristos R

31) Aristos: Trade Y1 R1 Deneb

32) Remneb: Trade G2 R2 Remneb

33) Aristos: Build R1 Deneb

34) Remneb: Discover Y1 Sirius B2 Antares

35) Aristos: Build R2 Deneb

36) Remneb: Move G1 Sirius Remneb

37) Aristos: Discover R2 Deneb Y3 Cygnus

38) Remneb: Build Y1 Remneb


39) Aristos: Build R2 Deneb

40) Remneb: Sacrifice G1 Remneb
Build Y2 Antares

41) Aristos: Build Y3 Deneb

42) Remneb: Move Y1 Antares Aristos
	Aristos: Environmentalists warn of climate disaster unless the wanton use of Yellow technology is not curtailed. "We're looking at a catastrophe here of galactic proportions. Yellow is not a renewable resource. It is a finite quantity, and when it's gone, it's gone." Sources inside various galactic governments scoffed at the notion of "no more Yellow." Said one anonymous source: "There's always more Yellow; we just might have to fight a war to get it." 

43) Aristos: Trade Y2 G2 Aristos
	Remneb: When there is no possible retreat then we attack.

44) Remneb: Trade Y1 G1 Aristos
	Aristos: News flash: Green government bails out failing Yellow industry!

45) Aristos: Sacrifice G2 Aristos
Build R3 Cygnus
Build Y1 Aristos
	Remneb: Special delivery info from our secret agent: any 3 engins ennemy ship who enter Remneb system will mastering the opponent fleet.


46) Remneb: Move Y2 Antares Aristos

47) Aristos: Sacrifice R2 Deneb
Attack Y2 Aristos
Attack G1 Aristos

48) Remneb: Trade Y1 G1 Remneb

49) Aristos: Sacrifice Y2 Aristos
Move Y3 Deneb Cygnus
Move Y3 Cygnus Remneb

	Remneb: "We are the Borg. Resistance is futile. You will be assimilated..."well i surrender then. Good game.Thanks
	Aristos: Good game. Thanks.


20090)
Variants: "Hard time"
Started: 2011.5.30, Ended: 2011.6.27
Participants: aqurk (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B3 R2 G3

2) aqurk: Homeworld Y3 G2 B3

3) SilentTitan: Build G1 Silenttitan

4) aqurk: Build B1 Aqurk

5) SilentTitan: Build G1 Silenttitan

6) aqurk: Trade B1 G1 Aqurk

7) SilentTitan: Trade G1 Y1 Silenttitan

8) aqurk: Build B1 Aqurk

9) SilentTitan: Build Y1 Silenttitan

10) aqurk: Trade B1 Y1 Aqurk

11) SilentTitan: Build Y2 Silenttitan

12) aqurk: Build B1 Aqurk

13) SilentTitan: Discover Y1 Silenttitan G1 Scoop

14) aqurk: Trade B3 R3 Aqurk

15) SilentTitan: Build Y2 Scoop

16) aqurk: Move Y1 Aqurk Scoop

17) SilentTitan: Sacrifice Y2 Silenttitan
Move Y2 Scoop Aqurk
Move Y1 Scoop Aqurk

18) aqurk: Attack Y2 Aqurk

19) SilentTitan: Build Y2 Aqurk
Catastrophe Aqurk Yellow

20) aqurk: Move Y1 Scoop Aqurk

21) SilentTitan: Discover G1 Silenttitan Y1 Scraps

22) aqurk: Build R1 Aqurk
	aqurk: woa.. I didn't think of that move. I've only played this game a few times :)

23) SilentTitan: Build Y2 Silenttitan
	SilentTitan: yeah... I almost missed it myself... I didn't realize we were in a small system at first.


24) aqurk: Build Y2 Aqurk

25) SilentTitan: Build G1 Scraps

26) aqurk: Move G1 Aqurk Scraps

27) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Scraps Aqurk
Move G1 Scraps Aqurk

28) aqurk: Sacrifice R3 Aqurk
Attack G1 Aqurk
Attack G1 Aqurk
Pass

29) SilentTitan: Build Y2 Silenttitan

30) aqurk: Move G1 Aqurk Scraps

31) SilentTitan: Trade Y2 R2 Silenttitan

32) aqurk: Sacrifice G1 Scraps
Build Y2 Aqurk

33) SilentTitan: Move R2 Silenttitan Scraps

34) aqurk: Trade Y2 R2 Aqurk

35) SilentTitan: Attack G1 Scraps South

36) aqurk: Build Y2 Aqurk

37) SilentTitan: Build Y2 Silenttitan

38) aqurk: Trade Y1 B1 Aqurk

39) SilentTitan: Build G1 Scraps

40) aqurk: Discover G1 Aqurk Y3 Kobold

41) SilentTitan: Discover G1 Scraps Y3 Junk

42) aqurk: Move R2 Aqurk Junk

43) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Junk
Build G2 Scraps
Build R1 Scraps

44) aqurk: Attack G2 Junk

45) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Junk Aqurk
Move G2 Scraps Aqurk

	aqurk: thanks for the game
	SilentTitan: Thanks ... It was a very interesting game


20093)
Variants: "Hard time"
Started: 2011.5.30, Ended: 2011.6.9
Participants: nycavri (S), sompm (N)
Winner: nycavri

1) sompm: Homeworld G3 B2 Y3

2) nycavri: Homeworld Y1 B2 G3

3) sompm: Build Y1 Sompm

4) nycavri: Build G1 Nycavri



20106)
Variants: "Hard time"
Started: 2011.5.31, Ended: 2011.6.24
Participants: goulo (S), ajo (N)
Winner: ajo

1) ajo: Homeworld G3 B2 Y3

2) goulo: Homeworld R1 B2 G3
	goulo: hi, have fun!

3) ajo: Build Y1 Ajo

4) goulo: Build G1 Goulo

5) ajo: Trade Y1 R1 Ajo
	ajo: Good luck!

6) goulo: Trade G1 Y1 Goulo

7) ajo: Build R1 Ajo

8) goulo: Build Y1 Goulo

9) ajo: Build R2 Ajo

10) goulo: Discover Y1 Goulo G3 Smeraldego

11) ajo: Discover R2 Ajo B1 Alpha

12) goulo: Build Y1 Smeraldego

13) ajo: Build Y2 Ajo

14) goulo: Build Y2 Goulo

15) ajo: Move Y2 Ajo Alpha

16) goulo: Trade Y2 R2 Goulo

17) ajo: Build Y2 Ajo

18) goulo: Discover Y1 Smeraldego G1 Smeraldeto

19) ajo: Trade Y2 G2 Ajo

20) goulo: Build Y2 Goulo

21) ajo: Move G2 Ajo Alpha

22) goulo: Move R2 Goulo Smeraldego

23) ajo: Build G1 Alpha

24) goulo: Trade Y2 G2 Goulo

25) ajo: Move R1 Ajo Smeraldeto

26) goulo: Discover Y1 Smeraldeto Y2 Citrono

27) ajo: Discover G1 Alpha Y3 Beta

28) goulo: Sacrifice G2 Goulo
Build Y2 Smeraldego
Build Y3 Goulo

29) ajo: Sacrifice G1 Beta
Build Y3 Ajo

30) goulo: Build G1 Goulo

31) ajo: Move Y3 Ajo Smeraldeto

32) goulo: Sacrifice Y2 Smeraldego
Move G3 Goulo Smeraldego
Move G3 Smeraldego Alpha

33) ajo: Sacrifice Y2 Alpha
Discover G2 Alpha B3 Gamma
Move R2 Alpha Citrono

34) goulo: Move Y1 Citrono Alpha
	ajo: Good move. I'm having trouble seeing the right response to that.

35) ajo: Build Y2 Smeraldeto

36) goulo: Build Y2 Alpha
	goulo: Thanks! (Though I often feel that way, about not being sure what the right move is... :)

37) ajo: Move Y3 Smeraldeto Gamma

38) goulo: Build G1 Alpha

39) ajo: Build G2 Gamma

40) goulo: Trade G3 R3 Alpha

41) ajo: Sacrifice G2 Gamma
Build R2 Smeraldeto
Build R3 Ajo

42) goulo: Build R3 Alpha

43) ajo: Build G2 Gamma

44) goulo: Build G2 Goulo

45) ajo: Move R1 Smeraldeto Gamma

46) goulo: Build G3 Alpha

47) ajo: Sacrifice Y2 Smeraldeto
Move R1 Gamma Alpha
Move R1 Ajo Alpha
Catastrophe Alpha Red

48) goulo: Build Y2 Smeraldego
	goulo: my turns are slower due to travel, sorry.
	ajo: No worries. I generally play two games at once, and I admit that when *I* take a long break between two moves in this game, it's usually just because I don't want to switch gears in the middle of a series of moves in the other game. So you've got a better excuse than me anyway. ;)

49) ajo: Sacrifice G2 Gamma
Build G2 Gamma
Build R1 Citrono

50) goulo: Discover G1 Goulo R3 Rubenego

51) ajo: Move R2 Citrono Rubenego

52) goulo: Sacrifice G1 Rubenego
Build G1 Goulo

53) ajo: Sacrifice G2 Gamma
Build R1 Rubenego
Build R3 Citrono

54) goulo: Move G1 Goulo Smeraldego

55) ajo: Sacrifice Y3 Gamma
Move R1 Rubenego Goulo
Move R2 Rubenego Goulo
Discover R1 Citrono Y3 Citronella

56) goulo: Attack R2 Goulo

57) ajo: Move R1 Citronella Goulo
Catastrophe Goulo Red

58) goulo: Sacrifice G3 Alpha
Build G2 Goulo
Build G3 Alpha
Build Y3 Smeraldego

59) ajo: Move R3 Citrono Gamma

60) goulo: Build Y2 Alpha

61) ajo: Build R1 Ajo

62) goulo: Discover G1 Smeraldego R1 Rubeneto

63) ajo: Trade R1 B1 Ajo

64) goulo: Sacrifice G2 Goulo
Build R1 Smeraldego
Build G2 Rubeneto

65) ajo: Move B1 Ajo Smeraldeto

66) goulo: Move G1 Alpha Ajo

67) ajo: Attack G1 Ajo

68) goulo: Sacrifice Y2 Smeraldego
Move G1 Rubeneto Ajo
Move G2 Rubeneto Ajo
Catastrophe Ajo G

69) ajo: Sacrifice G2 Gamma
Build B1 Smeraldeto
Build B2 Smeraldeto

70) goulo: Sacrifice Y3 Smeraldego
Move Y1 Smeraldego Ajo
Move Y1 Alpha Ajo
Move Y2 Alpha Ajo
Catastrophe Ajo Y

71) ajo: Trade R3 Y3 Gamma
	ajo: Check.

	ajo: Yes, but it's over now. :)  That's checkmate. Good game!
	goulo: yep, thanks! it was an interesting one.


20123)
Started: 2011.6.4, Ended: 2011.6.6
Participants: Aristos (S), dragmio (N)
Winner: dragmio

1) dragmio: Homeworld B2 Y1 G3
	dragmio: Hello! Have a nice game.

	Aristos: I never got a message that this game had even started. 
	dragmio: OK. Shall we try again?


20134)
Started: 2011.6.5, Ended: 2011.7.6
Participants: dragmio (S), lorgar (N)
Winner: dragmio

1) lorgar: Homeworld B3 Y1 G3
	lorgar: lets fight again!

2) dragmio: Homeworld B2 G1 R3
	dragmio: Yes! This time I'll stop your green invasion! :)

3) lorgar: Build G1 Lorgar

4) dragmio: Build R1 Dragmio
	lorgar: do not overestimate the powers of the red side, padawan!
	dragmio: Well, I don't have much of a choice now. At least in this move. :)

5) lorgar: Build G1 Lorgar

6) dragmio: Build R1 Dragmio

7) lorgar: Trade G1 R1 Lorgar

8) dragmio: Trade R1 Y1 Dragmio

9) lorgar: Discover G1 Lorgar B2 Pot

10) dragmio: Build Y1 Dragmio

11) lorgar: Build G1 Lorgar

12) dragmio: Build Y2 Dragmio

13) lorgar: Build G2 Pot

14) dragmio: Trade Y2 G2 Dragmio

15) lorgar: Trade G2 Y2 Pot

16) dragmio: Build Y2 Dragmio

17) lorgar: Build G2 Pot

18) dragmio: Discover Y2 Dragmio B3 Able

19) lorgar: Discover G2 Pot B3 Weed

20) dragmio: Move G2 Dragmio Able
	dragmio: Sorry, I've put in G3 instead of B3.

21) lorgar: Build R1 Lorgar

22) dragmio: Build Y2 Dragmio

23) lorgar: Sacrifice G3 Lorgar
Build G2 Pot
Build G3 Weed
Build G3 Lorgar

24) dragmio: Build Y3 Able

25) lorgar: Discover G2 Pot G3 Marmec

26) dragmio: Move Y3 Able Pot

27) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build Y3 Pot
Build Y3 Pot
Catastrophe Pot Yellow

28) dragmio: Move Y2 Able Pot

29) lorgar: Sacrifice G3 Weed
Build G3 Pot
Pass
Pass

30) dragmio: Move Y2 Pot Able

31) lorgar: Move R1 Lorgar Pot

32) dragmio: Build Y2 Able

33) lorgar: Sacrifice G2 Marmec
Build G2 Weed
Build G3 Weed

34) dragmio: Sacrifice Y2 Dragmio
Move G2 Able Dragmio
Move G2 Dragmio Weed
Catastrophe Weed G

35) lorgar: Build R2 Pot

36) dragmio: Trade Y2 G2 Able

37) lorgar: Trade R2 Y2 Pot

38) dragmio: Sacrifice G2 Able
Build Y2 Dragmio
Build Y3 Able

39) lorgar: Discover G1 Pot Y3 Kaya

40) dragmio: Trade Y3 G3 Able

41) lorgar: Build Y3 Pot

42) dragmio: Build Y3 Able

43) lorgar: Discover Y2 Pot B3 Soulcaptives

44) dragmio: Sacrifice Y2 Dragmio
Move Y3 Able Pot
Move G3 Able Pot

45) lorgar: Attack G3S Pot

46) dragmio: Sacrifice R3 Dragmio
Attack G3N Pot
Attack Y3N Pot
Attack G3N Pot

47) lorgar: Move Y2 Soulcaptives Dragmio

48) dragmio: Sacrifice Y2 Able
Move G3 Pot Kaya
Move G3 Kaya Dragmio

49) lorgar: Trade Y2 G2 Dragmio

50) dragmio: Trade G3 R3 Dragmio

51) lorgar: Trade R1 B1 Pot
	dragmio: Behold the power of the Red side! ;)

52) dragmio: Attack G2N Dragmio
	lorgar: thanks for opening your homeworld's door ^^

53) lorgar: Sacrifice G3 Lorgar
Build B1 Pot
Build B1 Pot
Build G2 Kaya
Catastrophe Pot Blue
	dragmio: Intruder alert!

54) dragmio: Move R3 Dragmio Kaya

55) lorgar: Build G2 Kaya

56) dragmio: Move G2 Dragmio Kaya
Catastrophe Kaya G

57) lorgar: Build R1 Lorgar

58) dragmio: Discover R3 Kaya B2 Plavi

59) lorgar: Build G1 Lorgar
	dragmio: Nice! That was some creative destruction. :)

60) dragmio: Build R2 Dragmio

61) lorgar: Discover G1 Lorgar B2 Catonemoidia

62) dragmio: Trade R3 Y3 Plavi

63) lorgar: Build G2 Lorgar

64) dragmio: Move Y3 Plavi Lorgar

65) lorgar: Trade G2 Y2 Lorgar

66) dragmio: Sacrifice R2 Dragmio
Attack R1N Lorgar
Attack R1N Lorgar

67) lorgar: Build Y2 Lorgar
Catastrophe Lorgar Yellow

68) dragmio: Attack G1N Lorgar

	lorgar: well played
	dragmio: ty


20147)
Started: 2011.6.6, Ended: 2011.6.12
Participants: TwoShort (S), lorgar (N)
Winner: TwoShort

1) lorgar: Homeworld B1 Y3 G3

2) TwoShort: Homeworld R1 B2 G3

3) lorgar: Build G1 Lorgar

4) TwoShort: Build G1 Twoshort

5) lorgar: Discover G1 Lorgar B2 Maru

6) TwoShort: Trade G1 Y1 Twoshort

7) lorgar: Build G1 Lorgar

8) TwoShort: Build Y1 Twoshort

9) lorgar: Build G1 Maru

10) TwoShort: Build G2 Twoshort

11) lorgar: Trade G1 R1 Maru

12) TwoShort: Discover G2 Twoshort Y3 Yolonda

13) lorgar: Build R1 Maru

14) TwoShort: Build G1 Twoshort

15) lorgar: Build G2 Lorgar

16) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Yolonda

17) lorgar: Trade G2 Y2 Lorgar

18) TwoShort: Trade G2 R2 Twoshort

19) lorgar: Build G2 Maru

20) TwoShort: Discover G2 Yolonda B2 Bluestar

21) lorgar: Move Y2 Lorgar Maru

22) TwoShort: Trade G3 Y3 Twoshort

23) lorgar: Build Y1 Maru

24) TwoShort: Sacrifice Y3 Twoshort
Move G3 Yolonda Bluestar
Move G3 Bluestar Lorgar
Move G2 Bluestar Lorgar
Catastrophe Lorgar Green
	lorgar: got a good beating ^^



20148)
Started: 2011.6.6, Ended: 2011.6.12
Participants: Aristos (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y3 G3

2) Aristos: Homeworld G3 Y2 B3

3) lorgar: Build G1 Lorgar

4) Aristos: Build B1 Aristos

5) lorgar: Trade G1 B1 Lorgar

6) Aristos: Build B2 Aristos

7) lorgar: Build G1 Lorgar

8) Aristos: Discover B1 Aristos G1 Pico

9) lorgar: Discover B1 Lorgar G2 Ocip

10) Aristos: Build B2 Pico

11) lorgar: Build G1 Lorgar

12) Aristos: Trade B1 Y1 Pico

13) lorgar: Discover G1 Lorgar B2 Ocid

14) Aristos: Trade B3 G3 Aristos

15) lorgar: Sacrifice G3 Lorgar
Build G2 Ocid
Build G2 Ocid
Build G3 Lorgar

16) Aristos: Build B1 Pico

17) lorgar: Trade G2 R2 Ocid

18) Aristos: Build G2 Aristos

19) lorgar: Trade G2 Y2 Ocid

20) Aristos: Trade B1 R1 Pico

21) lorgar: Sacrifice Y2 Ocid
Move G1 Ocid Pico
Move G1 Pico Aristos
Catastrophe Aristos Green

	Aristos: Dumb mistake on my part. Good game.
	lorgar: thx gg
but we could have played more.


20154)
Started: 2011.6.7, Ended: 2011.8.28
Participants: lorgar (S), ts52 (N)
Winner: ts52

1) ts52: H Y1 B2 G3

2) lorgar: Homeworld B1 Y3 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) lorgar: Build G1 Lorgar

5) ts52: Trade G1 B1 Ts52
	lorgar: thx

6) lorgar: Trade G1 Y1 Lorgar

7) ts52: Discover B1 Ts52 G3 Kermit

8) lorgar: Discover Y1 Lorgar G2 Frog

9) ts52: Build B1 Kermit

10) lorgar: Build G1 Lorgar

11) ts52: Build B2 Kermit

12) lorgar: Build Y1 Frog

13) ts52: Trade B2 Y2 Kermit
	lorgar: sod it, I'm being screwed!

14) lorgar: Discover Y1 Frog B3 The

15) ts52: Build B2 Kermit
	ts52: I wouldn
	ts52: I wouldn't say that. This game is just getting started.

16) lorgar: Build Y2 Frog

17) ts52: Discover B2 Kermit G2 Robin

18) lorgar: Trade Y1 G1 The

19) ts52: Build B2 Kermit

20) lorgar: Build G1 The

21) ts52: B B3 Robin

22) lorgar: Sacrifice Y2 Frog
Move G1 The Ts52
Move G1 The Ts52

23) ts52: Trade G3 R3 Ts52

24) lorgar: Sacrifice G3 Lorgar
Build G2 Ts52
Build G3 Lorgar
Build G3 Lorgar

25) ts52: Attack G2 Ts52

26) lorgar: Trade G1 Y1 Ts52

27) ts52: Attack Y1 Ts52

28) lorgar: Discover G1 Ts52 B3 Eht

29) ts52: Build B3 Robin

30) lorgar: Trade G3 R3 Lorgar

31) ts52: Trade B2 R2 Kermit

32) lorgar: Sacrifice Y1 Frog
Move G1 Eht Robin

33) ts52: Sacrifice R2 Kermit
Attack G1 Robin
Pass

34) lorgar: Move G1 Lorgar Robin

35) ts52: Sacrifice Y2 Kermit
Discover B3 Robin G3 Oscar
Move B3 Robin Kermit
















36) lorgar: Build G1 Lorgar

37) ts52: Trade G1 R1 Robin

38) lorgar: Sacrifice G3 Lorgar
Build G1 Robin
Build G2 Robin
Build G3 Lorgar
Catastrophe Robin Green

39) ts52: Build B2 Oscar

40) lorgar: Discover G1 Lorgar B2 Alawit

41) ts52: Build B3 Oscar

42) lorgar: Build G1 Alawit

43) ts52: Trade B3 Y3 Oscar

44) lorgar: Trade G1 Y1 Alawit

45) ts52: Trade B3 Y3 Kermit

46) lorgar: Build G1 Lorgar

47) ts52: Trade B3 R3 Oscar

48) lorgar: Discover G1 Alawit B3 Star
	lorgar: what went wrong??? :'-(

49) ts52: Build B3 Kermit
	ts52: I think you just let me get too far with blue... not really sure though.

50) lorgar: Discover Y1 Alawit B3 Shine

51) ts52: Discover R3 Oscar Y2 Bigbird

52) lorgar: Build G1 Star

53) ts52: Move R3 Bigbird Star

54) lorgar: Build G2 Star

55) ts52: Attack G2 Star

56) lorgar: Sacrifice G3 Lorgar
Build G2 Star
Build G3 Lorgar
Build Y2 Shine

57) ts52: Sacrifice Y1 Ts52
Discover G2 Star B2 Grover

58) lorgar: Trade Y1 R1 Shine

59) ts52: Attack G2 Star
	lorgar: HA YOU LUCKER. forgot to say "catastrophe star green"

60) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build R1 Shine
Build R1 Shine
	ts52: I had been expecting that anyway... though you know you can undo a move, right?
	lorgar: I already used undo before on the same turn

61) ts52: Build R2 Star
	ts52: you can only use it once per turn?

62) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build Y1 Shine
Build R2 Lorgar
	lorgar: yes

63) ts52: Trade G2 Y2 Star

64) lorgar: Move R3 Lorgar Grover

65) ts52: Attack G1 Star

66) lorgar: Attack G2N Grover

67) ts52: Build G2 Ts52

68) lorgar: Sacrifice G1 Star
Build G1 Grover

69) ts52: Discover R2 Star Y2 Bigbird

70) lorgar: Discover R1 Shine Y1 Rar

71) ts52: Move B3 Kermit Bigbird

72) lorgar: Move R1 Shine Rar

73) ts52: Move B3 Bigbird Shine

74) lorgar: Sacrifice Y2 Shine
Discover R1 Rar Y2 Lore
Move Y1 Shine Grover

75) ts52: Move B1 Kermit Bigbird

76) lorgar: Build R2 Grover

77) ts52: Move B2 Oscar Lore

78) lorgar: Move R1 Lore Oscar
	lorgar: my hands are tied...

79) ts52: Sacrifice R2 Bigbird
Attack R1 Oscar
Attack R1 Shine

80) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build R2 Rar
Pass

81) ts52: Sacrifice Y2 Star
Move R1 Shine Grover
Move R1 Oscar Grover
Catastrophe Grover Red

82) lorgar: Sacrifice G3 Lorgar
Build Y2 Grover
Build G3 Lorgar
Build R1 Rar

83) ts52: Move Y3 Kermit Grover

84) lorgar: Sacrifice Y2 Grover
Move R1 Rar Star
Move R1 Rar Star

85) ts52: Sacrifice R3 Star
Attack R1 Star
Attack R1 Star
Attack G2 Grover

86) lorgar: Move G1 Grover Kermit

87) ts52: Sacrifice R1 Star
Attack Y1 Grover

88) lorgar: Move R2 Rar Bigbird

89) ts52: Move Y3 Grover Star

90) lorgar: Attack B1N Bigbird

91) ts52: Build Y1 Grover

92) lorgar: Trade R2 Y2 Bigbird

93) ts52: Trade G2 R2 Grover

94) lorgar: Build G2 Kermit

95) ts52: Move Y1 Grover Shine

96) lorgar: Sacrifice Y2 Bigbird
Move G2 Kermit Ts52
Move G1 Kermit Ts52
Catastrophe Ts52 Green

97) ts52: Build Y2 Star

98) lorgar: Move G1 Lorgar Bigbird

99) ts52: Move Y2 Star Bigbird

100) lorgar: Build G1 Lorgar

101) ts52: Move Y1 Shine Grover

102) lorgar: Build R1 Lorgar

103) ts52: Sacrifice Y3 Oscar
Move Y1 Grover Lorgar
Move Y1 Grover Lorgar
Move Y2 Bigbird Lorgar
Catastrophe Lorgar Yellow

104) lorgar: Trade R1 Y1 Lorgar

105) ts52: Sacrifice Y3 Star
Move B1 Kermit Lorgar
Move B2 Lore Lorgar
Move B3 Shine Lorgar
Catastrophe Lorgar Blue

	ts52: Thanks for the game.
	lorgar: no surprise, I got beaten up fair and square... and I want a rematch, dreaded nemesis!


20158)
Variants: "Hard time"
Started: 2011.6.8, Ended: 2011.6.22
Participants: Aristos (S), MadWuher (N)
Winner: Aristos

1) MadWuher: Homeworld R2 B1 G3
	MadWuher: Haven't played in a while, may be a bit rusty. Hope you have a good game.

2) Aristos: Homeworld Y3 B1 G3

3) MadWuher: Build G1 Madwuher

4) Aristos: Build G1 Aristos

5) MadWuher: T G1 B1 Madwuher

6) Aristos: Trade G3 B3 Aristos

7) MadWuher: B B2 Madwuher

8) Aristos: Build G1 Aristos

9) MadWuher: T B1 Y1 Madwuher

10) Aristos: Discover G1 Aristos Y2 Canary

11) MadWuher: Build Y1 Madwuher

12) Aristos: Build G1 Aristos

13) MadWuher: B G2 Madwuher

14) Aristos: Build G2 Canary

15) MadWuher: Discover G2 Madwuher G3 Goliath

16) Aristos: Move G1 Canary Goliath

17) MadWuher: B G2 Madwuher

18) Aristos: Build G3 Canary

19) MadWuher: Move Y1 Madwuher Goliath

20) Aristos: Sacrifice G2 Canary
Build G2 Goliath
Build B1 Aristos
Catastrophe Goliath Green

21) MadWuher: Build B2 Madwuher

22) Aristos: Move B1 Aristos Canary

23) MadWuher: Discover G2 Madwuher B3 Bologna

24) Aristos: Build B2 Canary

25) MadWuher: Build G1 Madwuher

26) Aristos: Build B3 Canary
	MadWuher: Wow. My rust is showing......

27) MadWuher: Discover B2 Madwuher Y3 Elonia
	Aristos: It's ok... I needed to do well after my last game when I accidentally built 4 of the same color in my home system and my opponent noticed and catastrophed for me. *sigh* I felt dumb.

28) Aristos: Build G2 Canary

29) MadWuher: Sacrifice G2 Bologna
Build G2 Madwuher
Build B3 Elonia

30) Aristos: Trade B3 Y3 Canary

31) MadWuher: Move G2 Madwuher Elonia

32) Aristos: Discover B1 Canary B3 Plum

33) MadWuher: Move B2 Madwuher Plum

34) Aristos: Sacrifice Y3 Canary
Discover B2 Canary R3 Fire
Move B2 Fire Madwuher
Move B1 Plum Madwuher

35) MadWuher: Attack B2 Madwuher

36) Aristos: Attack Y1 Madwuher
	Aristos: ACK! I botched that... forgot about the lack of blue. Good defense on your part.

37) MadWuher: Attack Y1 Madwuher
	Aristos: What's the rule on retaking a ship that was just attacked? If you attack y1 again, do we sit in an infinite loop? 

38) Aristos: Attack Y1 Madwuher

	Aristos: Hm... so there's apparently no "don't repeat board position" rule. So we need some sort of gentlemen's agreement to resolve this or else stalemate.
	Aristos: Your move.
	MadWuher: Sorry Aristos, my time is filling up and I won't have access to this site for the next few months so I'm afraid I'm going to have to resign from our game. I notice that you had me locked down in my homeworld one way or another. If I switch a Blue to Red then you can wipe out my blue. If you took over my green then you could have build green up to a catastrophe. The only thing I can see is if I change my G3 to R3 and do a triple attack in my homeworld. 
	Aristos: Thanks for playing.


20159)
Variants: "Hard time"
Started: 2011.6.8, Ended: 2011.6.17
Participants: TwoShort (S), mneme (N)
Winner: TwoShort

1) mneme: Homeworld R1 B2 G3
	mneme: Alas, I couldn't expect to hold the #1 spot forever.  Good luck!

2) TwoShort: Homeworld B1 R3 G3

3) mneme: Build G1 Mneme

4) TwoShort: Build G1 Twoshort

5) mneme: Trade G1 B1 Mneme

6) TwoShort: Trade G1 B1 Twoshort

7) mneme: Build B2 Mneme

8) TwoShort: Build B2 Twoshort

9) mneme: Trade B2 Y2 Mneme

10) TwoShort: Trade B2 Y2 Twoshort

11) mneme: Build B2 Mneme

12) TwoShort: Build B2 Twoshort

13) mneme: Discover B2 Mneme G3 Station

14) TwoShort: Discover B2 Twoshort G2 Grogar

15) mneme: Build B3 Station

16) TwoShort: Build B3 Grogar

17) mneme: Trade B3 R3 Station

18) TwoShort: Trade B2 R2 Grogar
	TwoShort: I almost don't want to break the symmetry...

19) mneme: Build B2 Station

20) TwoShort: Discover B1 Twoshort G2 Greenland
	mneme: and yet?  :)  

21) mneme: Trade B2 Y2 Station

22) TwoShort: Build G1 Twoshort

23) mneme: Move R3 Station Greenland

24) TwoShort: Sacrifice Y2 Twoshort
Discover B1 Greenland Y3 Yolonda
Move B3 Grogar Station

25) mneme: Sacrifice G3 Mneme
Build B2 Station
Build B3 Station
Build Y1 Mneme
Catastrophe Station B

26) TwoShort: Sacrifice G1 Twoshort
Build B2 Yolonda

27) mneme: Move B1 Mneme Station

28) TwoShort: Trade B2 G2 Yolonda

29) mneme: Build B2 Station

30) TwoShort: Build G1 Twoshort

31) mneme: Sacrifice Y1 Mneme
Move R3 Greenland Yolonda

32) TwoShort: Discover G2 Yolonda G1 Greenotron

33) mneme: Attack B1 Yolonda

34) TwoShort: Sacrifice G3 Twoshort
Build G1 Greenotron
Build G2 Twoshort
Build G3 Twoshort

35) mneme: Trade R3 G3 Yolonda

36) TwoShort: Trade G2 Y2 Twoshort

37) mneme: Build B2 Yolonda

38) TwoShort: Sacrifice Y2 Twoshort
Move G1 Greenotron Station
Discover G2 Greenotron B3 Bluonia

39) mneme: Build B3 Yolonda

40) TwoShort: Sacrifice G3 Twoshort
Build G1 Bluonia
Build G2 Station
Build G3 Twoshort

41) mneme: Trade B3 R3 Yolonda

42) TwoShort: Sacrifice R2 Grogar
Attack B2 Station
Attack Y2 Station

43) mneme: Build B3 Station

44) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build B3 Station
Catastrophe Station Blue

45) mneme: Build B1 Yolonda

46) TwoShort: Trade G2 B2 Twoshort

47) mneme: Discover B2 Yolonda Y2 Stage

48) TwoShort: Sacrifice G3 Twoshort
Build G2 Bluonia
Build G3 Twoshort
Build B3 Twoshort

49) mneme: Sacrifice Y2 Mneme

Move R3 Yolonda Mneme
Move B2 Stage Twoshort
Catastrophe Twoshort B

50) TwoShort: Trade G2 R2 Bluonia

51) mneme: Build G2 Yolonda

52) TwoShort: Sacrifice G3 Twoshort
Build R1 Bluonia
Build Y1 Station
Build G3 Twoshort
	mneme: Huh.  Cool gambit; trying to coax me into bluebird?
	TwoShort: It never hurts to give the other guy a chance to screw up. :)  But the moves I thought were likely were this or moving in without the sacrifice.  I think the latter led to a draw.  Either way looked better than where I was.

53) mneme: Trade R3 Y3 Mneme

54) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y1 Station
Build R1 Bluonia

55) mneme: Sacrifice Y3 Mneme
Move G2 Yolonda Mneme
Move G2 Mneme Station
Move B1 Yolonda Mneme
Catastrophe Station G

56) TwoShort: Trade R2 Y2 Bluonia

57) mneme: Sacrifice G3 Yolonda
Build B1 Yolonda
Build B2 Yolonda
Build B2 Mneme
	mneme: damn.  messed up the topography of the world! 
Stupid mistake.


58) TwoShort: Sacrifice Y2 Bluonia
Move G3 Twoshort Mneme
Pass

	mneme: And again, I fail because I cannot remember the topology of the game and think I have los to your homeworld.  *sigh*  (though I think I'd already lost).  GG


20157)
Variants: "Hard time"
Started: 2011.6.8, Ended: 2011.6.17
Participants: SilentTitan (S), SirRuthvenMurgatroyd (N)
Winner: SilentTitan

1) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld R3 B2 G3

3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

4) SilentTitan: Build G1 Silenttitan

5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Calufrax

6) SilentTitan: Trade G1 Y1 Silenttitan

7) SirRuthvenMurgatroyd: Build G1 Calufrax

8) SilentTitan: Build Y1 Silenttitan

9) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd

10) SilentTitan: Trade Y1 B1 Silenttitan

11) SirRuthvenMurgatroyd: Move G1 Calufrax Sirruthvenmurgatroyd

12) SilentTitan: Build B1 Silenttitan

13) SirRuthvenMurgatroyd: Build G1 Calufrax

14) SilentTitan: Build G2 Silenttitan

15) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

16) SilentTitan: Discover G2 Silenttitan B1 Po

17) SirRuthvenMurgatroyd: Trade G2 B2 Sirruthvenmurgatroyd

18) SilentTitan: Discover B1 Silenttitan Y1 Go

19) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

20) SilentTitan: Build Y2 Silenttitan

21) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

22) SilentTitan: Move Y1 Silenttitan Po

23) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd

24) SilentTitan: Sacrifice G2 Po
Build B3 Go
Build B3 Go

25) SirRuthvenMurgatroyd: Build B3 Sirruthvenmurgatroyd

26) SilentTitan: Sacrifice Y2 Silenttitan
Discover B1 Go Y3 Do
Move B1 Do Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Blue

27) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd
Move G1 Calufrax Sirruthvenmurgatroyd
Move G1 Sirruthvenmurgatroyd Silenttitan
Move G1 Sirruthvenmurgatroyd Silenttitan

28) SilentTitan: Sacrifice B3 Go
Trade G3 Y3 Silenttitan
Trade B3 R3 Go
Pass

29) SirRuthvenMurgatroyd: Attack B1S Silenttitan

30) SilentTitan: Sacrifice R3 Go
Attack G1 Silenttitan North
Attack G1 Silenttitan North
Attack B1 Silenttitan North

31) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

32) SilentTitan: Discover Y1 Po G3 Yo

33) SirRuthvenMurgatroyd: Discover G1 Calufrax B2 Sol

34) SilentTitan: Build Y1 Yo

35) SirRuthvenMurgatroyd: Move R2 Sirruthvenmurgatroyd Yo

36) SilentTitan: Move Y1 Yo Sirruthvenmurgatroyd

37) SirRuthvenMurgatroyd: Attack Y1S Yo

38) SilentTitan: Sacrifice G1 Silenttitan
Build Y2 Sirruthvenmurgatroyd

39) SirRuthvenMurgatroyd: Sacrifice R2 Yo
Attack Y1S Sirruthvenmurgatroyd
Attack Y2S Sirruthvenmurgatroyd

40) SilentTitan: Move Y3 Silenttitan Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Yellow
	SirRuthvenMurgatroyd: Good game.  I had seen a couple moves ago that you could have sacrificed your yellow three to move in your two green and wipe out all my ships right after I gave you the opportunity, but fortunately you didn't see that.  I think I was pretty much doomed for a while at the end anyway.
	SilentTitan: Good game to you as well.... I was probably focused on taking out your homeworld... so I got caught up in the yellows rather than looking at all the colors and anyway to win.  



20163)
Started: 2011.6.12, Ended: 2011.8.5
Participants: SirRuthvenMurgatroyd (S), Aristos (N)
Winner: SirRuthvenMurgatroyd

1) Aristos: Homeworld Y1 B2 G3

2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3

3) Aristos: Build G1 Aristos

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) Aristos: Discover G1 Aristos Y3 Ash

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol

7) Aristos: Discover G1 Ash Y1 Elm

8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

9) Aristos: Build G2 Elm

10) SirRuthvenMurgatroyd: Build G2 Sol

11) Aristos: Build G2 Aristos

12) SirRuthvenMurgatroyd: Build G3 Sol

13) Aristos: Trade G2 Y2 Aristos

14) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd

15) Aristos: Sacrifice Y2 Aristos
Discover G1 Elm Y2 Ash
Move G1 Ash Sol
Catastrophe Sol Green
	Aristos: Accidentally clicked the Undo button. :-)

16) SirRuthvenMurgatroyd: Move R3 Sirruthvenmurgatroyd Elm

17) Aristos: Sacrifice G2 Elm
Build G1 Aristos
Pass

18) SirRuthvenMurgatroyd: Move R3 Elm Sirruthvenmurgatroyd

19) Aristos: Trade G1 Y1 Aristos

20) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

21) Aristos: Build Y1 Aristos

22) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd G1 Terra

23) Aristos: Build G2 Aristos

24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

25) Aristos: Discover G2 Aristos B3 Oak

26) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd

27) Aristos: Build G1 Aristos

28) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd

29) Aristos: Trade Y1 R1 Aristos

30) SirRuthvenMurgatroyd: Build G2 Terra

31) Aristos: Build G2 Oak

32) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd
Move G2 Terra Sirruthvenmurgatroyd
Move G1 Terra Sirruthvenmurgatroyd

33) Aristos: Sacrifice G3 Aristos
Build G1 Aristos
Build G3 Aristos
Build G3 Oak

34) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd
	Aristos: Must be lunch break for you too. :-)

35) Aristos: Sacrifice G3 Oak
Build G3 Oak
Build Y1 Aristos
Build R1 Aristos

36) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G3 Sirruthvenmurgatroyd
Build R1 Sirruthvenmurgatroyd
Build R2 Sirruthvenmurgatroyd

37) Aristos: Trade G3 Y3 Oak

38) SirRuthvenMurgatroyd: Sacrifice G1 Sirruthvenmurgatroyd
Build B1 Sirruthvenmurgatroyd

39) Aristos: Build Y2 Oak

40) SirRuthvenMurgatroyd: Trade R3 Y3 Sirruthvenmurgatroyd

41) Aristos: Discover G1 Aristos Y3 Cedar

42) SirRuthvenMurgatroyd: Discover Y3 Sirruthvenmurgatroyd B1 Calufrax

43) Aristos: Sacrifice Y3 Oak
Move Y1 Aristos Oak
Discover Y1 Oak G1 Elm
Move Y2 Oak Elm
	Aristos: Your move...

44) SirRuthvenMurgatroyd: Discover Y3 Calufrax G3 Betelgeuse
	SirRuthvenMurgatroyd: Yeah, I know; I'm really sorry, but I've been incredibly busy this week.  I'll be moving more timely after Sunday.

45) Aristos: Trade G2 B2 Oak
	Aristos: No problem... I just didn't want you to miss because of time. :-)

46) SirRuthvenMurgatroyd: Sacrifice B1 Sirruthvenmurgatroyd
Trade G2 Y2 Sirruthvenmurgatroyd

47) Aristos: Discover Y1 Aristos R3 Maple

48) SirRuthvenMurgatroyd: Build Y3 Betelgeuse

49) Aristos: Discover Y1 Maple B1 Pine

50) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd
Move Y3 Betelgeuse Aristos
Move Y3 Betelgeuse Aristos

51) Aristos: Sacrifice Y2 Elm
Discover Y1 Pine B3 Willow
Move Y1 Willow Aristos
Catastrophe Aristos Yellow

52) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

53) Aristos: Sacrifice G3 Aristos
Build G2 Cedar
Build G3 Oak
Build G3 Aristos

54) SirRuthvenMurgatroyd: Discover B1 Sirruthvenmurgatroyd Y1 Dogwood
	Aristos: Well played.

55) Aristos: Trade G2 Y2 Oak

56) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd

57) Aristos: Move Y2 Oak Dogwood

58) SirRuthvenMurgatroyd: Discover B1 Dogwood Y3 Acacia

59) Aristos: Trade B2 Y2 Oak

60) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd
Build B1 Acacia
Build B1 Acacia

61) Aristos: Sacrifice Y2 Oak
Move Y2 Dogwood Sirruthvenmurgatroyd
Move Y1 Elm Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Yellow

62) SirRuthvenMurgatroyd: Move B1 Acacia Aristos

63) Aristos: Attack B1 Aristos

64) SirRuthvenMurgatroyd: Move B1 Acacia Aristos

	SirRuthvenMurgatroyd: Err....  hadn't seen your undo before my move, but I'd have done the same thing.  so no worry.


20194)
Started: 2011.6.13, Ended: 2011.7.4
Participants: dlwillson (S), Salmonax (N)
Winner: dlwillson

1) Salmonax: Homeworld G3 B1 Y3
	dlwillson: Yay, Salmonax! I haven't played on SDG in a lifetime!

2) dlwillson: Homeworld B3 R2 G3

3) Salmonax: Build Y1 Salmonax
	Salmonax: 
Neither have I!

4) dlwillson: B G1 Dlwillson

5) Salmonax: Trade Y1 G1 Salmonax

6) dlwillson: Trade G1 Y1 Dlwillson

7) Salmonax: Discover G1 Salmonax B2 S1

8) dlwillson: B G1 Dlwillson

9) Salmonax: Build Y1 Salmonax

10) dlwillson: T G1 B1 Dlwillson

11) Salmonax: Build G1 S1

12) dlwillson: B B1 Dlwillson

13) Salmonax: Build G1 S1
	dlwillson: HaHA! Hoo! Ha!
	Salmonax: Oh noes!

14) dlwillson: B G2 Dlwillson

15) Salmonax: Trade G1 Y1 S1
	Salmonax: Don't know bow to read the board on a screen yet. =P

16) dlwillson: B Y2 Dlwillson

17) Salmonax: Build Y2 S1

18) dlwillson: D Y1 Dlwillson G1 Lpgd

19) Salmonax: Move Y1 S1 Lpgd
	dlwillson: You're going to have some trouble with me, then. I've played more Homeworlds here than anywhere! :-)
	Salmonax: Lpgd?

20) dlwillson: Sacrifice G2 Dlwillson
Build Y2 Lpgd
Build Y3 Dlwillson
	dlwillson: Looney Pyramid Gamers of Denver, of course...

21) Salmonax: Build Y3 Lpgd
	Salmonax: Oh yeah, I figured that out once before.

22) dlwillson: B G2 Dlwillson
Catastrophe Lpgd Y
	Salmonax: I forgot to catastrophe, but lets see what happens.

23) Salmonax: Discover G1 S1 Y1 S2

24) dlwillson: T B1 R1 Dlwillson

25) Salmonax: Trade Y1 R1 Salmonax

26) dlwillson: M B1 Dlwillson S2

27) Salmonax: Build G1 S2
	Salmonax: Sorry for the undo... fatal mistake. =)

28) dlwillson: S G2 Dlwillson
B B1 S2
B B2 S2
	dlwillson: No problem. That's what it's for. And yes, that would've been fatal. :-)

29) Salmonax: Build G2 S1

30) dlwillson: T B2 R2 S2

31) Salmonax: Sacrifice G2 S1
Build G2 S1
Build G2 S2

32) dlwillson: A G2 S2

33) Salmonax: Build G2 S2
Catastrophe S2 G
	dlwillson: Interesting move... Hm...

34) dlwillson: M Y3 Dlwillson S2

35) Salmonax: Sacrifice Y2 S1
Discover G1 S1 Y1 S0
Move G2 S1 S0

36) dlwillson: D B1 S2 G2 Ipgd2

37) Salmonax: Build Y1 Salmonax

38) dlwillson: Move Y3 S2 Ipgd2

39) Salmonax: Discover Y1 Salmonax B2 S1

40) dlwillson: B Y2 Dlwillson

41) Salmonax: Sacrifice G2 S0
Build Y2 Salmonax
Build Y3 S1

42) dlwillson: B G1 Dlwillson

43) Salmonax: Build G1 S0
	dlwillson: Argh! Excellent move!

44) dlwillson: M G1 Dlwillson S0
	Salmonax: Thanks!

45) Salmonax: Trade Y2 R2 Salmonax

46) dlwillson: B Y2 Ipgd2

47) Salmonax: Trade Y1 R1 S1
	Salmonax: Couldn't keep you out of yellow for long!
	dlwillson: Dang! Forgot it was my turn!


48) dlwillson: S R2 S2
A G1 S0
A G1 S0

49) Salmonax: Move R2 Salmonax S1

50) dlwillson: B G2 Dlwillson

51) Salmonax: Build R2 Salmonax

52) dlwillson: T Y3 R3 Ipgd2

53) Salmonax: Move R2 S1 S0

54) dlwillson: S G3 Dlwillson
B G2 S0
B G3 Dlwillson
B R3 Ipgd2

55) Salmonax: Move R1 S1 S2
Catastrophe S0 G

56) dlwillson: S R1 Dlwillson
A R1 S2

57) Salmonax: Trade Y3 G3 S1
	Salmonax: If that's a trap, I don't get how it works.
	Salmonax: Well, I guess it was so you could build elsewhere.


58) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Ipgd2
Build Y3 Dlwillson
Build Y3 Ipgd2

59) Salmonax: Trade Y3 B3 Salmonax
	Salmonax: It's not looking good for me.
	dlwillson: The Trap: (I forgot to explain)
You might have wasted some effort trying to capture my little greens, or just forgotten to cat them. Either one would have allowed me to build the G3 at home.

Alas, you didn't fall for it.

However, you have given me an interesting opportunity to give you an interesting opportunity. Let's see if you step into this trap...  :-)

60) dlwillson: Sacrifice Y2 Dlwillson
Move B1 Ipgd2 Salmonax
Move R3 Ipgd2 Salmonax
	Salmonax: Well, I see that you can cat my red at homeworld if I do do something about them.  And you can cat my yellow if I don't do something about _them_


	Salmonax: I'll protect my big ship.

61) Salmonax: Sacrifice R2 Salmonax
Attack R3 Salmonax
Attack B1 Salmonax

62) dlwillson: S Y2 Dlwillson
Move B1 S2 Ipgd2
M B1 Ipgd2 Salmonax
C Salmonax B
	dlwillson: Not sure death is inevitable at this point, but it looks pretty bad... Have you found the Cannon rules?
	Salmonax: Yep, there's a link to them from the pdf that one would expect holds the rules.


63) Salmonax: Trade G3 B3 S1

64) dlwillson: Sacrifice Y3 Ipgd2
Move R3 Ipgd2 Salmonax
Move R1 S2 Ipgd2
Move R1 Ipgd2 Salmonax
Catastrophe Salmonax R

	dlwillson: One or two more moves, depending.
	dlwillson: No, wait. Never mind.
	dlwillson: Good game, Salmonax. Want to go again, now that you've got the hang of the board? Also, there are other players here, like Tripp/SilentTitan and Davey/DethDukk.


20235)
Variants: "Hard time"
Started: 2011.6.20, Ended: 2011.6.27
Participants: TwoShort (S), SilentTitan (N)
Winner: TwoShort

1) SilentTitan: Homeworld R2 B3 G3

2) TwoShort: Homeworld R1 B2 G3

3) SilentTitan: Build G1 Silenttitan
	TwoShort: Howdy.
	SilentTitan: hello again


4) TwoShort: Build G1 Twoshort

5) SilentTitan: Trade G1 Y1 Silenttitan

6) TwoShort: Trade G1 Y1 Twoshort

7) SilentTitan: Build G1 Silenttitan

8) TwoShort: Build G1 Twoshort

9) SilentTitan: Discover G1 Silenttitan Y1 Sol
	SilentTitan: 
	SilentTitan: wow...are you sitting on the button or what?

10) TwoShort: Build Y2 Twoshort

11) SilentTitan: Build Y2 Silenttitan
	TwoShort: At work, so I see email pretty much instantly.  In another few moves we'll get to the point where I'll have to wait until I have time to think about my move.

12) TwoShort: Discover G1 Twoshort Y3 Yolonda
	SilentTitan: ah..... so that would seem to indicate that I'm in trouble since I'm having to think about the moves now.


13) SilentTitan: Discover Y1 Silenttitan B1 Tear

14) TwoShort: Discover Y1 Twoshort B3 Bluonia

15) SilentTitan: Sacrifice G1 Sol
Build Y1 Tear

16) TwoShort: Build G1 Twoshort

17) SilentTitan: Discover Y1 Tear B3 Zone

18) TwoShort: Discover G1 Twoshort Y3 Yoyodyne

19) SilentTitan: Trade Y1 G1 Zone

20) TwoShort: Build G2 Twoshort

21) SilentTitan: Build G2 Zone

22) TwoShort: Discover G2 Twoshort Y3 Yellonia

23) SilentTitan: Trade G2 Y2 Zone

24) TwoShort: Sacrifice G2 Yellonia
Build Y1 Bluonia
Build Y3 Twoshort
	SilentTitan: Yellonia..... lol

25) SilentTitan: Build G2 Zone

26) TwoShort: Discover Y1 Bluonia B1 Bonanza

27) SilentTitan: Trade G2 R2 Zone

28) TwoShort: Sacrifice G1 Yolonda
Build Y3 Bonanza

29) SilentTitan: Build R1 Zone

30) TwoShort: Sacrifice G1 Yoyodyne
Build Y3 Bluonia

31) SilentTitan: Build G1 Silenttitan

32) TwoShort: Trade Y1 G1 Bonanza

33) SilentTitan: Build Y1 Zone

34) TwoShort: Build G2 Bonanza

35) SilentTitan: Move G1 Silenttitan Bonanza

36) TwoShort: Trade G2 R2 Bonanza

37) SilentTitan: Sacrifice G1 Bonanza
Build G1 Zone

38) TwoShort: Build G2 Bonanza

39) SilentTitan: Build R1 Zone

40) TwoShort: Move R2 Bonanza Zone
Catastrophe Zone Red

41) SilentTitan: Sacrifice Y2 Zone
Move G1 Zone Twoshort
Move G1 Zone Twoshort

42) TwoShort: Trade G3 R3 Twoshort

43) SilentTitan: Trade Y2 R2 Silenttitan

44) TwoShort: Build G2 Bonanza

45) SilentTitan: Trade G1 R1 Twoshort

46) TwoShort: Sacrifice Y3 Bluonia
Move G1 Bonanza Silenttitan
Move G2 Bonanza Silenttitan
Move G2 Bonanza Silenttitan
Catastrophe Silenttitan Green

47) SilentTitan: Build R1 Twoshort
Catastrophe Twoshort Red

48) TwoShort: Move Y3 Bonanza Silenttitan

49) SilentTitan: Move Y1 Zone Twoshort
	SilentTitan: so close........ yet.........

50) TwoShort: Attack R2 Silenttitan
	TwoShort: Thanks for the game!

	SilentTitan: Tip.   Thank you
	SilentTitan: Yup. Not tip .. autocorrect on phone.  Fun.


20243)
Variants: "Hard time"
Started: 2011.6.22, Ended: 2011.6.25
Participants: AdamBadura (S), Subhan64 (N)
Winner: AdamBadura

1) Subhan64: Homeworld B2 Y1 G3

2) AdamBadura: Homeworld G3 B2 Y3

3) Subhan64: Build G1 Subhan64

4) AdamBadura: Build Y1 Adambadura

5) Subhan64: Build G1 Subhan64

6) AdamBadura: Trade Y1 G1 Adambadura

7) Subhan64: Discover G3 Subhan64 G3 Aha

8) AdamBadura: Build G2 Adambadura

9) Subhan64: Build G2 Subhan64

10) AdamBadura: Sacrifice Y3 Adambadura
Discover G1 Adambadura Y1 Ontheway
Move G1 Ontheway Aha
Move G1 Aha Subhan64
Catastrophe Subhan64 G

	AdamBadura: Don't blame your self. I fell to this trap more than once...
	Subhan64: I don't think I actually knew you could use a sacrifice move action to do a discover action.  


20178)
Variants: "No undo"
Started: 2011.6.23, Ended: 2011.7.13
Participants: ajo (S), goblin981 (N)
Winner: ajo

1) goblin981: Homeworld G3 B2 R3

2) ajo: Homeworld B1 Y2 G3

3) goblin981: Build R1 Goblin981
	ajo: Good luck!
	goblin981: you too :)

4) ajo: Build G1 Ajo

5) goblin981: Trade R1 Y1 Goblin981

6) ajo: Trade G1 Y1 Ajo

7) goblin981: Build R1 Goblin981

8) ajo: Build G1 Ajo

9) goblin981: Discover R1 Goblin981 Y1 Yellow

10) ajo: Build Y2 Ajo

11) goblin981: Build Y2 Goblin981

12) ajo: Discover Y1 Ajo G3 Alpha

13) goblin981: Build Y3 Goblin981

14) ajo: Sacrifice Y2 Ajo
Move Y1 Alpha Yellow
Move Y1 Yellow Goblin981
Catastrophe Goblin981 Yellow

15) goblin981: Build R1 Goblin981

16) ajo: Build G1 Ajo

17) goblin981: Trade R1 Y1 Goblin981

18) ajo: Discover G1 Ajo B3 Alpha

19) goblin981: Build R1 Goblin981

20) ajo: Discover G1 Ajo B3 Beta

21) goblin981: Discover R1 Goblin981 Y1 Y2

22) ajo: Build G1 Ajo
	ajo: I hope you know what you're doing. ;)

23) goblin981: Build Y2 Goblin981
	goblin981: so do I lol.  I do have a plan, but usually my plans don't work. So we'll see.

24) ajo: Build G2 Alpha

25) goblin981: Discover R1 Yellow G3 Green

26) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Beta
Build G3 Ajo

27) goblin981: Move R1 Y2 Green

28) ajo: Trade G2 R2 Alpha

29) goblin981: Build R1 Goblin981

30) ajo: Sacrifice G3 Ajo
Build R2 Alpha
Build G2 Beta
Build G3 Ajo
	ajo: Ooh. I'm pretty sure your plan has fallen apart by this point.

31) goblin981: Sacrifice Y2 Goblin981
Move R1 Green Ajo
Move R1 Green Ajo
	goblin981: yep, pretty much

32) ajo: Sacrifice R2 Alpha
Attack R1 Ajo
Attack R1 Ajo
	ajo: Okay well now you're just being silly. ;)

33) goblin981: Build Y1 Goblin981

34) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Alpha
Build R2 Alpha

35) goblin981: Discover R1 Goblin981 Y1 Yellow

36) ajo: Trade G3 Y3 Alpha

37) goblin981: Build R2 Goblin981

38) ajo: Move R2 Alpha Yellow

39) goblin981: Trade R2 Y2 Goblin981
	goblin981: I'm so screwed.

	goblin981: I'm so screwed.


40) ajo: Attack R1 Yellow
	ajo: And you're not helping by trading for colors you've already *got*. :P But yeah, you're screwed either way, I think.

41) goblin981: Sacrifice Y2 Goblin981
Discover Y1 Goblin981 B1 Blue
Move Y1 Goblin981 Blue

42) ajo: Move G2 Alpha Blue

43) goblin981: Discover Y1 Blue G3 Green

44) ajo: Move R2 Alpha Blue
	ajo: It might have been better to do "sacrifice y1 blue; discover y1 blue g3 green", so that I didn't still have the threat of capturing your remaining y1.

45) goblin981: Build Y2 Green
	ajo: Check.

46) ajo: Sacrifice Y3 Alpha
Move R2 Blue Goblin981
Move R2 Yellow Goblin981
Move R1 Yellow Goblin981
Catastrophe Goblin981 Red
	goblin981: damn, should've changed the r3 for something else.  oh well, you win.



20195)
Started: 2011.6.23, Ended: 2011.8.9
Participants: lorgar (S), SirRuthvenMurgatroyd (N)
Winner: SirRuthvenMurgatroyd

1) SirRuthvenMurgatroyd: Homeworld B1 Y2 G3

2) lorgar: Homeworld B2 Y3 G3

3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

4) lorgar: Build G1 Lorgar
	SirRuthvenMurgatroyd: Sorry about taking so long; I'm pretty busy this week, but after Sunday I'll be moving much more quickly.

5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol

6) lorgar: Trade G1 R1 Lorgar

7) SirRuthvenMurgatroyd: Build G1 Sol

8) lorgar: Build G1 Lorgar

9) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

10) lorgar: Discover G1 Lorgar B1 M0

11) SirRuthvenMurgatroyd: Discover G1 Sol Y1 Betelgeuse

12) lorgar: Build R1 Lorgar

13) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd

14) lorgar: Build G2 Lorgar

15) SirRuthvenMurgatroyd: Build G2 Betelgeuse

16) lorgar: Sacrifice G3 Lorgar
Build G2 M0
Build G3 Lorgar
Build G3 M0

17) SirRuthvenMurgatroyd: Move G1 Sol M0
Catastrophe M0 G

18) lorgar: Trade R1 B1 Lorgar

19) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

20) lorgar: Discover B1 Lorgar G1 Marmol

21) SirRuthvenMurgatroyd: Discover G1 Betelgeuse B2 Calufrax

22) lorgar: Build B1 Marmol

23) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G2 Sirruthvenmurgatroyd
Build G3 Betelgeuse
Build G3 Sirruthvenmurgatroyd

24) lorgar: Trade B1 Y1 Marmol

25) SirRuthvenMurgatroyd: Move G3 Betelgeuse Lorgar

26) lorgar: Attack G3N Lorgar

27) SirRuthvenMurgatroyd: Move G2 Betelgeuse Lorgar
Catastrophe Lorgar G



20207)
Variants: "Hard time"
Started: 2011.6.23, Ended: 2011.6.26
Participants: Jesse (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B3 Y1 G3

	Jesse: Whoops.  Sorry about that.  I've been rather busy lately.
	lorgar: no problem


20161)
Variants: "Hard time"
Started: 2011.6.23, Ended: 2011.7.14
Participants: SilentTitan (S), lorgar (N)
Winner: SilentTitan

1) lorgar: Homeworld B3 Y1 G3

2) SilentTitan: Homeworld B1 R2 G3

3) lorgar: Build G1 Lorgar

4) SilentTitan: Build G1 Silenttitan

5) lorgar: Discover G1 Lorgar B2 Cydonia

6) SilentTitan: Trade G1 Y1 Silenttitan

7) lorgar: Build G1 Lorgar

8) SilentTitan: Build Y1 Silenttitan

9) lorgar: Build G1 Cydonia

10) SilentTitan: Discover Y1 Silenttitan G3 Sol

11) lorgar: Trade G1 R1 Lorgar

12) SilentTitan: Build Y2 Silenttitan

13) lorgar: Build G1 Lorgar

14) SilentTitan: Discover Y2 Silenttitan B3 Poison

15) lorgar: Build G2 Cydonia

16) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Poison
Build Y3 Silenttitan

17) lorgar: Trade G2 R2 Cydonia

18) SilentTitan: Build Y3 Sol

19) lorgar: Build R1 Cydonia

20) SilentTitan: Discover Y3 Sol B2 Stun

21) lorgar: Build G2 Lorgar

22) SilentTitan: Build Y3 Sol

23) lorgar: Trade G2 B2 Lorgar

24) SilentTitan: Trade Y3 G3 Silenttitan

25) lorgar: Discover B2 Lorgar G2 Mint

26) SilentTitan: Build Y3 Silenttitan

	lorgar: sod it... srry


20270)
Variants: "Hard time"
Started: 2011.6.26, Ended: 2011.7.13
Participants: goulo (S), Subhan64 (N)
Winner: goulo

1) Subhan64: Homeworld B1 G2 Y3

2) goulo: Homeworld R2 B3 G3

3) Subhan64: Build Y1 Subhan64
	goulo: hi, have fun!

4) goulo: Build G1 Goulo

5) Subhan64: Trade Y1 G1 Subhan64

6) goulo: Trade G1 Y1 Goulo

7) Subhan64: Build G1 Subhan64

8) goulo: Build Y1 Goulo

9) Subhan64: Discover G1 Subhan64 G3 Aha

10) goulo: Trade Y1 R1 Goulo

11) Subhan64: Build G1 Subhan64

12) goulo: Build G2 Goulo

13) Subhan64: Discover G1 Subhan64 G3 Hehe

14) goulo: Build G2 Goulo

15) Subhan64: Sacrifice Y3 Subhan64
Discover G1 Aha R1 Touche
Move G1 Hehe Touche
Move G1 Touche Goulo
Catastrophe Goulo Green

16) goulo: Trade R1 G1 Goulo

17) Subhan64: Build G2 Touche

18) goulo: Build G2 Goulo
	goulo: I saw that possible catastrophe reducing us both to 2 1-ships, but erroneously thought that would be good for me as I'd have the next move - but I failed to see that I would have to spend a move getting green build ability... :)

19) Subhan64: Build G3 Subhan64

20) goulo: Build G3 Goulo

21) Subhan64: Trade G1 Y1 Subhan64

22) goulo: Trade G1 R1 Goulo

23) Subhan64: Build G1 Subhan64

24) goulo: Discover G2 Goulo R1 Rubeneto

25) Subhan64: Trade G1 B1 Subhan64

26) goulo: Build R2 Goulo

27) Subhan64: Sacrifice B1 Subhan64
Trade G2 R2 Touche

28) goulo: Move R2 Goulo Touche

29) Subhan64: Attack R2 Touche

30) goulo: Move R1 Goulo Touche
Catastrophe Touche R

31) Subhan64: Build G1 Subhan64

32) goulo: Build G1 Rubeneto

33) Subhan64: Discover G3 Subhan64 G3 Gisforgreen

34) goulo: Sacrifice G2 Rubeneto
Build Y1 Goulo
Build Y2 Goulo

35) Subhan64: Build Y2 Subhan64

36) goulo: Move Y1 Goulo Rubeneto

37) Subhan64: Sacrifice Y1 Subhan64
Move G3 Gisforgreen Rubeneto

38) goulo: Sacrifice Y1 Rubeneto
Discover G1 Rubeneto Y3 Citronego

39) Subhan64: Trade G1 Y1 Subhan64

40) goulo: Build G1 Goulo

41) Subhan64: Move Y1 Subhan64 Citronego

42) goulo: Move G1 Citronego Subhan64

43) Subhan64: Trade Y2 R2 Subhan64

44) goulo: Build G1 Subhan64

	Subhan64: Good game!
	goulo: thanks!


20264)
Variants: "Hard time"
Started: 2011.6.27, Ended: 2011.6.29
Participants: mneme (S), ajo (N)
Winner: mneme

1) ajo: Homeworld Y1 B3 G3

2) mneme: Homeworld R1 B2 G3

3) ajo: Build G1 Ajo

4) mneme: Build G1 Mneme

5) ajo: Trade G1 R1 Ajo

6) mneme: Trade G1 Y1 Mneme

7) ajo: Build G1 Ajo

8) mneme: Build Y1 Mneme

9) ajo: Trade G3 Y3 Ajo

10) mneme: Build Y2 Mneme

11) ajo: Build Y2 Ajo

12) mneme: Discover Y1 Mneme B3 Staging

13) ajo: Discover Y2 Ajo B2 Alpha

14) mneme: Discover Y1 Mneme B3 Violet

15) ajo: Trade Y3 G3 Ajo

16) mneme: Build G1 Mneme

17) ajo: Move G1 Ajo Alpha

18) mneme: Discover G1 Mneme Y3 Host

19) ajo: Build Y2 Alpha

20) mneme: B Y3 Mneme
	ajo: I think I know what you're planning. Very nice. I'm rarely able to plan far enough ahead in the early game to pull that off.

21) ajo: Move Y2 Alpha Violet

22) mneme: Trade Y2 R2 Mneme

23) ajo: Sacrifice R1 Ajo
Attack Y1 Violet

24) mneme: Move G3 Mneme Violet
	mneme: I'm curious what you're thinking.  I tend to be moving towards several things at once if I can manage it, though -- threatening catastrophes, green expansions that grab larges, freezes on whatever color my opponent is ignoring, etc.  
	ajo: Well, for a couple moves there you were threatening "sac g3; build y2y3y3". (I assume that's what you meant by "green expansions"?) I'm less worried about that possibility now, though.

25) ajo: Sacrifice Y1 Violet
Discover Y2 Violet B2 Beta
	mneme: That was certainly one of my plans.  I got the extra large without that, though, so it all works out.  

26) mneme: Sacrifice Y3 Mneme
Move G3 Violet Alpha
Move G3 Alpha Ajo
Move G1 Host Mneme

27) ajo: Sacrifice Y2 Beta
Move Y2 Alpha Ajo
Move G1 Alpha Ajo
	mneme: Of course, one of my plans was to let you get rid of all your red while I had a path to your home system...

28) mneme: Sacrifice R2 Mneme
Attack G3 Ajo
Attack G1 Ajo
	ajo: Oh dear. I didn't even notice that. This is going to be a short game!

	mneme: Yeah -- it's all over.
	ajo: Good game.
	mneme: Good game! 


20272)
Variants: "Hard time"
Started: 2011.6.28, Ended: 2011.8.12
Participants: lorgar (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B3 G3

2) lorgar: Homeworld B3 Y2 G3

3) Jesse: Build G1 Jesse

4) lorgar: Build G1 Lorgar

5) Jesse: Trade G1 Y1 Jesse

6) lorgar: Trade G1 R1 Lorgar

7) Jesse: Build Y1 Jesse

8) lorgar: Build G1 Lorgar

9) Jesse: Build Y1 Jesse

10) lorgar: Discover G1 Lorgar B1 M0

11) Jesse: Build G1 Jesse

12) lorgar: Build G1 Lorgar

13) Jesse: Discover G1 Jesse B2 Grover

14) lorgar: Build G2 M0

15) Jesse: Build G2 Grover

16) lorgar: Sacrifice G3 Lorgar
Build G2 M0
Build G3 Lorgar
Build G3 Lorgar

17) Jesse: Trade G2 R2 Grover

18) lorgar: Trade G2 Y2 M0

19) Jesse: Move Y1 Jesse Grover

20) lorgar: Trade G2 R2 M0

21) Jesse: Discover Y1 Jesse B2 Cookie

22) lorgar: Move G3 Lorgar M0

23) Jesse: Sacrifice G3 Jesse
Build Y2 Cookie
Build Y3 Grover
Build Y3 Jesse



20257)
Started: 2011.6.29, Ended: 2011.9.13
Participants: thejackdiaz (S), SirRuthvenMurgatroyd (N)
Winner: thejackdiaz

1) SirRuthvenMurgatroyd: Homeworld B3 Y2 G3

2) thejackdiaz: Homeworld R1 B2 G3

3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

4) thejackdiaz: Build G1 Thejackdiaz

5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol

6) thejackdiaz: Trade G1 Y1 Thejackdiaz

7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

8) thejackdiaz: Build Y1 Thejackdiaz

9) SirRuthvenMurgatroyd: Build G1 Sol

10) thejackdiaz: Build G2 Thejackdiaz

11) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Calufrax

12) thejackdiaz: Discover G2 Thejackdiaz G3 Epicurus

13) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G2 Sol
Build G2 Calufrax
Build G3 Sirruthvenmurgatroyd

14) thejackdiaz: Discover Y1 Thejackdiaz B3 Clarence

15) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd

16) thejackdiaz: Sacrifice G2 Epicurus
Build Y2 Clarence
Build Y2 Thejackdiaz

17) SirRuthvenMurgatroyd: Move G2 Sol Clarence

18) thejackdiaz: Build Y3 Thejackdiaz

19) SirRuthvenMurgatroyd: Sacrifice R1 Sirruthvenmurgatroyd
Attack Y2 Clarence

20) thejackdiaz: Trade Y3 R3 Thejackdiaz

21) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

22) thejackdiaz: Trade Y2 R2 Thejackdiaz

23) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G2 Sol
Build G3 Sirruthvenmurgatroyd
Build G3 Clarence

24) thejackdiaz: Move R2 Thejackdiaz Clarence

25) SirRuthvenMurgatroyd: Sacrifice Y2 Clarence
Move G2 Clarence Thejackdiaz
Move G3 Clarence Thejackdiaz

26) thejackdiaz: Attack G3N Thejackdiaz

27) SirRuthvenMurgatroyd: Attack Y1S Thejackdiaz

28) thejackdiaz: Trade G3 Y3 Thejackdiaz

29) SirRuthvenMurgatroyd: Move G1 Calufrax Thejackdiaz

30) thejackdiaz: Move G3 Thejackdiaz Clarence

31) SirRuthvenMurgatroyd: Sacrifice G2 Sol
Build Y2 Thejackdiaz
Build Y2 Thejackdiaz
Catastrophe Thejackdiaz Y

32) thejackdiaz: Attack G2 Thejackdiaz

33) SirRuthvenMurgatroyd: Build G2 Thejackdiaz

34) thejackdiaz: Trade R3 Y3 Thejackdiaz

35) SirRuthvenMurgatroyd: Trade G2 Y2 Thejackdiaz

36) thejackdiaz: Attack Y2N Thejackdiaz

37) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G2 Sol
Build G3 Calufrax
Build G3 Sirruthvenmurgatroyd

38) thejackdiaz: Build Y1 Clarence

39) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd

40) thejackdiaz: Build G3 Clarence

41) SirRuthvenMurgatroyd: Trade G1 R1 Thejackdiaz

42) thejackdiaz: Attack R1N Thejackdiaz

43) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

44) thejackdiaz: Discover G3 Clarence B1 Molly

45) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd

46) thejackdiaz: Sacrifice G2 Thejackdiaz
Build Y2 Thejackdiaz
Build Y3 Clarence

47) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd

48) thejackdiaz: Trade G3 R3 Molly

49) SirRuthvenMurgatroyd: Sacrifice B1 Sirruthvenmurgatroyd
Trade G3 R3 Calufrax

50) thejackdiaz: Sacrifice Y3 Clarence
Move R2 Clarence Molly
Move R2 Molly Sirruthvenmurgatroyd
Move R3 Molly Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Red

51) SirRuthvenMurgatroyd: Build R1 Calufrax

52) thejackdiaz: Sacrifice Y2 Thejackdiaz
Move G3 Clarence Sol
Move G3 Sol Sirruthvenmurgatroyd

53) SirRuthvenMurgatroyd: Move R3 Calufrax Thejackdiaz

54) thejackdiaz: Sacrifice R1 Thejackdiaz
Attack G1N Sirruthvenmurgatroyd



20285)
Variants: "No undo"
Started: 2011.6.29, Ended: 2011.7.9
Participants: sageinquisitor (S), thejackdiaz (N)
Winner: thejackdiaz

1) thejackdiaz: Homeworld G1 B2 R3



20290)
Variants: "Hard time"
Started: 2011.6.30, Ended: 2011.8.1
Participants: TwoShort (S), mneme (N)
Winner: TwoShort

1) mneme: Homeworld R1 B2 G3

2) TwoShort: Homeworld B1 R3 G3
	mneme: Greetings!  BTW, I -finally- managed to score a Homeworld medallion at Origins this year (mostly, I was stopped in previous years by missing the con or by Homeworlds being a "floating" tournament in which I didn't play enough games).

3) mneme: Build G1 Mneme

4) TwoShort: Build G1 Twoshort

5) mneme: Trade G1 B1 Mneme
	TwoShort: Congratulations on the medallion!  Maybe someday I'll manage to make it to Origins so everyone can see how much worse I am playing in person :)

6) TwoShort: Trade G1 B1 Twoshort

7) mneme: Build B2 Mneme

8) TwoShort: Build B2 Twoshort

9) mneme: T B2 Y2 Mneme
	mneme: *Laugh* You should!  Not next year, though, as they're suspending the lab next year due to Origins's scheduling.

10) TwoShort: Trade B1 Y1 Twoshort

11) mneme: Build B1 Mneme

12) TwoShort: Build B2 Twoshort

13) mneme: Discover B1 Mneme G3 Happiness

14) TwoShort: Trade B2 R2 Twoshort

15) mneme: Sacrifice G3 Mneme
Build B2 Happiness
Build B3 Happiness
Build B3 Mneme

16) TwoShort: Discover B2 Twoshort Y2 Yolonda

17) mneme: Trade B3 R3 Happiness

18) TwoShort: Build Y1 Twoshort

19) mneme: Trade B3 G3 Mneme

20) TwoShort: Discover Y1 Twoshort G2 Grogar

21) mneme: T B2 Y2 Happiness

22) TwoShort: Build G1 Twoshort

23) mneme: Discover B1 Mneme Y3 Sunbright

24) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y3 Twoshort
Build Y3 Grogar

25) mneme: Sacrifice Y2 Mneme
Move Y2 Happiness Grogar
Move Y2 Grogar Twoshort
Catastrophe Twoshort Y
	TwoShort: Sorry for the slowness, I'm on vacation in the land of little internet.  It's not that I'm stalling because I'm doing so badly.  Well, not just that anyway... :)

26) TwoShort: Move Y3 Grogar Twoshort
	mneme: It's cool.  I'm a little out of it too, but at least -that- move I had a planned answer two once I recalled it.

27) mneme: Build G1 Mneme

28) TwoShort: Build Y1 Twoshort

29) mneme: Trade G3 Y3 Mneme

30) TwoShort: Build Y1 Grogar

31) mneme: Build Y2 Mneme

32) TwoShort: Trade Y3 G3 Twoshort

33) mneme: Move Y2 Mneme Happiness

34) TwoShort: Discover Y1 Grogar G3 Greenland

35) mneme: Build R1 Happiness

36) TwoShort: Discover G1 Twoshort G2 Greenonia

37) mneme: Move R3 Happiness Yolonda

38) TwoShort: Move B2 Yolonda Sunbright

39) mneme: Move R3 Yolonda Twoshort

40) TwoShort: Sacrifice R2 Twoshort
Attack R3 Twoshort
Attack B1 Sunbright

	mneme: oh, ouch.  Missed that one.  Shouldn't have.
	mneme: You know, normally, I'd play it out, but I'm just not in the mood right now, and that was just such a -colossal- blunder. Note to self: don't try a double-threat with red!



20292)
Variants: "Hard time"
Started: 2011.7.1, Ended: 2011.7.7
Participants: Danner (S), Aristos (N)
Winner: Danner

1) Aristos: Homeworld G1 B2 Y3
	Danner: Hi! Have a nice game!

2) Danner: Homeworld G1 B2 G3 *

3) Aristos: Build Y1 Aristos

4) Danner: Build G1 Danner
	Aristos: Interesting starting choice.
	Danner: :)

5) Aristos: Discover Y1 Aristos G3 Isis

6) Danner: Trade G3 Y3 Danner

7) Aristos: Build Y1 Aristos

8) Danner: Build G2 Danner

9) Aristos: Trade Y3 G3 Aristos

10) Danner: Discover G2 Danner Y3 Re

11) Aristos: Build Y1 Aristos

12) Danner: Build G2 Danner

	Aristos: I botched badly and there's little chance of recovery. Good game.

	Danner: Thanks for the game!


20258)
Variants: "Hard time"
Started: 2011.7.3, Ended: 2011.7.7
Participants: SilentTitan (S), BloodRumpus (N)
Winner: SilentTitan

1) BloodRumpus: Homeworld G1 B3 Y3

2) SilentTitan: Homeworld R2 B3 G3

3) BloodRumpus: Build Y1 Bloodrumpus

4) SilentTitan: Build G1 Silenttitan

5) BloodRumpus: Discover Y1 Bloodrumpus B2 Alpha-draconis

6) SilentTitan: Trade G1 Y1 Silenttitan

7) BloodRumpus: Trade Y1 G1 Alpha-draconis

8) SilentTitan: Build Y1 Silenttitan

9) BloodRumpus: Build G1 Alpha-draconis

10) SilentTitan: Build G2 Silenttitan

11) BloodRumpus: Build G2 Alpha-draconis

12) SilentTitan: Discover G2 Silenttitan B1 Sol

13) BloodRumpus: Trade G2 Y2 Alpha-draconis

14) SilentTitan: Build G2 Sol

15) BloodRumpus: Discover G1 Alpha-draconis R1 Vega

16) SilentTitan: Trade G2 Y2 Sol

17) BloodRumpus: Build G2 Alpha-draconis

18) SilentTitan: Discover Y1 Silenttitan B1 Sole

19) BloodRumpus: Trade G1 B1 Alpha-draconis

20) SilentTitan: Build G1 Silenttitan

21) BloodRumpus: Build B2 Alpha-draconis

22) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Sole
Build Y3 Silenttitan

23) BloodRumpus: Build Y3 Bloodrumpus

24) SilentTitan: Trade Y2 B2 Sole

25) BloodRumpus: Move B2 Alpha-draconis Vega

26) SilentTitan: Sacrifice Y2 Sol
Discover B2 Sole G2 Soul
Move Y1 Sole Soul

27) BloodRumpus: Build G3 Vega

28) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Sol Soul
Move Y1 Soul Bloodrumpus
Move Y1 Soul Bloodrumpus
Catastrophe Bloodrumpus Yellow



20323)
Started: 2011.7.6, Ended: 2011.9.25
Participants: lorgar (S), dragmio (N)
Winner: dragmio

1) dragmio: Homeworld G3 B1 R3

2) lorgar: Homeworld G2 Y1 B3

3) dragmio: Build R1 Dragmio

4) lorgar: Build B1 Lorgar

5) dragmio: Trade R1 Y1 Dragmio

6) lorgar: Discover B1 Lorgar G3 Lormec

7) dragmio: Build Y1 Dragmio

8) lorgar: Build B1 Lorgar

9) dragmio: Build Y2 Dragmio

10) lorgar: Build B2 Lormec

11) dragmio: Discover Y1 Dragmio B2 Aspect

12) lorgar: Trade B2 Y2 Lormec

13) dragmio: Move Y2 Dragmio Aspect

14) lorgar: Build B2 Lormec

15) dragmio: Trade Y2 G2 Aspect

16) lorgar: Trade B1 G1 Lorgar

17) dragmio: Build Y2 Aspect

18) lorgar: Discover G1 Lorgar Y3 M0

19) dragmio: Sacrifice G2 Aspect
Build Y2 Dragmio
Build Y3 Dragmio

20) lorgar: Build Y3 Lormec

21) dragmio: Sacrifice Y2 Dragmio
Move Y1 Aspect Lormec
Move Y2 Aspect Lormec
Catastrophe Lormec Y

22) lorgar: Trade B1 R1 Lormec

23) dragmio: Trade Y1 R1 Dragmio

24) lorgar: Build B1 Lormec

25) dragmio: Discover R3 Dragmio Y2 Emperor

26) lorgar: Build B1 Lormec

27) dragmio: Move R3 Emperor M0

28) lorgar: Discover G1 M0 B2 Mar

29) dragmio: Move R3 M0 Mar

30) lorgar: Trade B1 Y1 Lormec

31) dragmio: Attack G1 Mar

32) lorgar: Build R1 Lormec

33) dragmio: Build Y1 Dragmio

34) lorgar: Trade B2 Y2 Lormec

35) dragmio: Move Y1 Dragmio Mar
	dragmio: 

36) lorgar: Build B1 Lormec

37) dragmio: Build R2 Dragmio

38) lorgar: Discover B1 Lormec G2 Mordekaizone

39) dragmio: Build Y2 Dragmio

40) lorgar: Build B2 Lormec

41) dragmio: Move R2 Dragmio Mordekaizone

42) lorgar: Sacrifice B1 Mordekaizone
Trade Y1 B1 Lormec

43) dragmio: Move R1 Dragmio Mordekaizone

44) lorgar: Discover B2 Lormec G2 Mhoried

45) dragmio: Discover R3 Mar Y3 Yolta

46) lorgar: Build B2 Mhoried

47) dragmio: Sacrifice Y3 Dragmio
Move R2 Mordekaizone Lormec
Move R1 Mordekaizone Lormec
Move R3 Yolta Lorgar
Catastrophe Lormec R



20284)
Started: 2011.7.8, Ended: 2011.8.1
Participants: SirRuthvenMurgatroyd (S), BloodRumpus (N)
Winner: SirRuthvenMurgatroyd

1) BloodRumpus: Homeworld B3 R1 G3

2) SirRuthvenMurgatroyd: Homeworld G1 B2 Y3

3) BloodRumpus: Build G1 Bloodrumpus

4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

5) BloodRumpus: Trade G1 Y1 Bloodrumpus

6) SirRuthvenMurgatroyd: Trade Y1 R1 Sirruthvenmurgatroyd

7) BloodRumpus: Build G1 Bloodrumpus

8) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

9) BloodRumpus: Discover G1 Bloodrumpus B2 Vega

10) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd

11) BloodRumpus: Build G1 Vega

12) SirRuthvenMurgatroyd: Trade Y3 G3 Sirruthvenmurgatroyd

13) BloodRumpus: Build G2 Vega

14) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

15) BloodRumpus: Trade G1 Y1 Vega

16) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd

17) BloodRumpus: Build Y2 Vega

18) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd

19) BloodRumpus: Trade Y2 R2 Vega

20) SirRuthvenMurgatroyd: Discover R1 Sirruthvenmurgatroyd Y3 Sol

21) BloodRumpus: Build Y2 Vega

22) SirRuthvenMurgatroyd: Discover R1 Sol Y2 Yellow

23) BloodRumpus: Sacrifice G3 Bloodrumpus
Build Y3 Bloodrumpus
Build Y3 Bloodrumpus
Build Y3 Vega

24) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G3 Green

25) BloodRumpus: Trade Y1 G1 Vega

26) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd
Move Y1 Green Yellow
Move Y1 Yellow Bloodrumpus
Catastrophe Bloodrumpus Y



20304)
Variants: "Hard time"
Started: 2011.7.8, Ended: 2011.7.13
Participants: SilentTitan (S), BloodRumpus (N)
Winner: SilentTitan

1) BloodRumpus: Homeworld B2 R3 G3

2) SilentTitan: Homeworld R2 B1 G3
	SilentTitan: ah... good you're back.  I was hoping to play you again... you're good... you just mis-stepped in that last game.   I figure I won't be able to lure you in the same way .... this time

3) BloodRumpus: Build G1 Bloodrumpus
	BloodRumpus: Thanks! I'm pretty new to this game, but I find it absolutely fascinating! I'm glad we can play online. I'm new to Icehouse games in general, and was really disappointed that I won't be able to buy any pyramids until late Sept.

4) SilentTitan: Build G1 Silenttitan
	SilentTitan: hum... I hadn't heard anything about that.  My bro-in-law runs Icehouse games at the cons we have in Denver and he typiclly gives pyramid packs out to the winners.  I'll ask maybe he'll sell you some. dunno for sure.

5) BloodRumpus: Trade G1 Y1 Bloodrumpus

6) SilentTitan: Build G1 Silenttitan
	BloodRumpus: yeah something about Looney Labs switching to Chinese manufacturing and having some kind of problem thats delaying the release of new pyramids... and all the gaming shops are sold out. I guess there haven't been any pyramids in circulation since June (at least thats what I gather from the website). Seems like I picked the perfectly wrong time to get into Icehouse games. 

7) BloodRumpus: Build Y1 Bloodrumpus
	SilentTitan: yah... I went out and read the whole saga.... crazy.  

8) SilentTitan: Trade G1 Y1 Silenttitan

9) BloodRumpus: Build Y2 Bloodrumpus

10) SilentTitan: Build Y2 Silenttitan

11) BloodRumpus: Trade Y2 G2 Bloodrumpus

12) SilentTitan: Build G1 Silenttitan

13) BloodRumpus: Discover G2 Bloodrumpus B1 Sirius

14) SilentTitan: Build Y2 Silenttitan

15) BloodRumpus: Move Y1 Bloodrumpus Sirius

16) SilentTitan: Sacrifice Y2 Silenttitan
Discover G1 Silenttitan Y3 Ying
Discover G1 Silenttitan Y3 Yang

17) BloodRumpus: Sacrifice G3 Bloodrumpus
Build Y2 Sirius
Build Y2 Bloodrumpus
Build Y3 Bloodrumpus

18) SilentTitan: Discover Y1 Silenttitan G3 Zong

19) BloodRumpus: Sacrifice Y2 Bloodrumpus
Move Y1 Bloodrumpus Sirius
Move Y1 Sirius Zong

20) SilentTitan: Discover Y1 Zong B1 Song

21) BloodRumpus: Trade Y2 B2 Sirius

22) SilentTitan: Discover Y1 Song B3 Jazz

23) BloodRumpus: Build Y2 Zong

24) SilentTitan: Build Y2 Silenttitan

25) BloodRumpus: Move G2 Sirius Bloodrumpus

26) SilentTitan: Sacrifice G1 Yang
Build Y3 Jazz

27) BloodRumpus: Move B2 Sirius Zong

28) SilentTitan: Trade Y2 R2 Silenttitan

29) BloodRumpus: Trade Y1 R1 Zong

30) SilentTitan: Build G1 Silenttitan

31) BloodRumpus: Build B1 Zong

32) SilentTitan: Build G1 Silenttitan

33) BloodRumpus: Build B2 Zong

34) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Silenttitan Zong
Move G1 Silenttitan Zong

35) BloodRumpus: Sacrifice Y3 Bloodrumpus
Move B2 Zong Silenttitan
Move B2 Zong Silenttitan
Move B1 Zong Silenttitan
Catastrophe Silenttitan B

36) SilentTitan: Build G2 Zong
Catastrophe Zong Green

37) BloodRumpus: Move Y1 Sirius Bloodrumpus

38) SilentTitan: Discover Y3 Jazz G1 Somo

39) BloodRumpus: Trade Y1 R1 Bloodrumpus

40) SilentTitan: Move Y3 Somo Bloodrumpus

41) BloodRumpus: Trade R1 Y1 Bloodrumpus

42) SilentTitan: Sacrifice R2 Silenttitan
Attack G2 Bloodrumpus North
Attack Y1 Bloodrumpus North



20336)
Started: 2011.7.8, Ended: 2011.8.16
Participants: SirRuthvenMurgatroyd (S), Mandrel (N)
Winner: SirRuthvenMurgatroyd

1) Mandrel: Homeworld B3 R2 G3
	Mandrel: Have a good game.

2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3

3) Mandrel: Build G1 Mandrel

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) Mandrel: Trade G1 Y1 Mandrel

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol

7) Mandrel: D Y1 Mandrel G1 Down

8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

9) Mandrel: Build G2 Mandrel

10) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

11) Mandrel: Trade G2 Y2 Mandrel

12) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd

13) Mandrel: B Y1 Down

14) SirRuthvenMurgatroyd: Build G1 Sol

15) Mandrel: B Y2 Mandrel

16) SirRuthvenMurgatroyd: Discover G1 Sol B1 Calufrax

17) Mandrel: B Y2 Down

18) SirRuthvenMurgatroyd: Build G2 Calufrax

19) Mandrel: Build Y3 Mandrel

20) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd

21) Mandrel: Discover Y1 Down G3 Confusion

22) SirRuthvenMurgatroyd: Move Y3 Sirruthvenmurgatroyd Confusion

23) Mandrel: S Y3 Mandrel
Move Y1 Down Confusion
Move Y1 Confusion Sirruthvenmurgatroyd
Move Y1 Confusion Sirruthvenmurgatroyd

24) SirRuthvenMurgatroyd: Build Y3 Confusion

25) Mandrel: Sacrifice Y2 Mandrel
Move Y2 Down Confusion
Move Y2 Confusion Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Y

26) SirRuthvenMurgatroyd: Trade G2 R2 Calufrax

27) Mandrel: Build Y1 Mandrel

28) SirRuthvenMurgatroyd: Build R1 Calufrax

29) Mandrel: Trade Y1 B1 Mandrel

30) SirRuthvenMurgatroyd: Trade G1 B1 Calufrax

31) Mandrel: Build Y1 Mandrel

32) SirRuthvenMurgatroyd: Sacrifice Y3 Confusion
Move B1 Calufrax Mandrel
Move R1 Calufrax Mandrel
Move R2 Calufrax Mandrel

33) Mandrel: Attack R2S Mandrel

34) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd
Build R1 Mandrel
Build B1 Mandrel
Catastrophe Mandrel R
Catastrophe Mandrel B
	Mandrel: Good game, well played.



20342)
Variants: "Hard time"
Started: 2011.7.8, Ended: 2011.7.11
Participants: ajo (S), Danner (N)
Winner: Danner

1) Danner: Pass
	Danner: Hello again.

2) ajo: Homeworld Y2 B1 G3
	ajo: Ah yes, you like to give the opponent the first move. Incidentally, how does SDG decide? Does the challenger always get the first opportunity to move?

3) Danner: Homeworld B1 G2 B3 *
	Danner: I think it's random, but I'm not sure.

4) ajo: Build G1 Ajo

5) Danner: Build B1 Danner

6) ajo: Trade G3 B3 Ajo

7) Danner: Trade B1 Y1 Danner

8) ajo: Build G1 Ajo

9) Danner: Build Y1 Danner

10) ajo: Discover G1 Ajo B3 Alpha
	ajo: Oh shoot! I just realized that we're only two hops apart. That changes things somewhat. :)

11) Danner: Discover Y1 Danner G3 Beta
	Danner: :)

12) ajo: Build G1 Ajo

13) Danner: Build B1 Danner

14) ajo: Build B2 Ajo

15) Danner: Move B1 Danner Beta

16) ajo: Move B2 Ajo Alpha

17) Danner: Build B2 Danner

18) ajo: Trade B2 Y2 Alpha

19) Danner: Build B2 Beta

20) ajo: Build G2 Alpha

21) Danner: Build B2 Beta
	Danner: It's getting exciting. :)

22) ajo: Move G1 Alpha Danner
	ajo: Isn't it?

23) Danner: Trade B2 R2 Danner

24) ajo: Sacrifice G2 Alpha
Build G2 Danner
Build G2 Danner
Catastrophe Danner Green

25) Danner: Discover B2 Beta G2 Gamma

26) ajo: Trade B3 R3 Ajo

27) Danner: Build B2 Gamma

28) ajo: Move G1 Ajo Alpha

29) Danner: Build B3 Beta

30) ajo: Build G1 Alpha
	ajo: Whoops. I should have been watching the stash. (I'm playing this game -- uncharacteristically -- without having it set up next to me.)

31) Danner: Trade B3 Y3 Beta

32) ajo: Build G2 Ajo
	Danner: That's strange. :)

33) Danner: Build B3 Gamma

34) ajo: Discover G1 Alpha G2 Delta
	Danner: Oops, I read it wrong.
(Well, I never set it up phisically, but sometimes I use MS Paint :D)

35) Danner: Sacrifice Y3 Beta
Discover B3 Gamma G3 Epsilon
Discover B2 Gamma G3 Zeta
Discover B2 Gamma Y3 Eta
	ajo: I strongly recommend getting a physical set of Icehouse pieces and setting it up for real. Especially since SDG's visualization always sorts the star systems in precisely the wrong order top-to-bottom, have you noticed? ;)  Makes it really easy to miss something.

36) ajo: Build G2 Alpha

37) Danner: Trade B3 Y3 Epsilon
	Danner: I made a set out of paper a few years ago! :)

38) ajo: Move G2 Ajo Epsilon

39) Danner: Build B3 Zeta

40) ajo: Build Y1 Alpha

41) Danner: Build Y2 Epsilon

42) ajo: Sacrifice Y2 Alpha
Move G1 Delta Epsilon
Move G1 Ajo Epsilon
Catastrophe Epsilon Green

43) Danner: Trade B3 Y3 Zeta

44) ajo: Move G2 Alpha Ajo

45) Danner: Build B3 Zeta

46) ajo: Build G1 Ajo

47) Danner: Trade B3 R3 Zeta

48) ajo: Build Y2 Alpha

49) Danner: Build Y2 Zeta

50) ajo: Discover G1 Ajo Y3 Theta

51) Danner: Move R2 Danner Theta

52) ajo: Build G1 Ajo

53) Danner: Attack G1S Theta

54) ajo: Build G2 Alpha

55) Danner: Move R3 Zeta Danner

56) ajo: Discover G1 Ajo B3 Gamma

57) Danner: Move Y1 Danner Gamma

58) ajo: Trade G2 R2 Alpha

59) Danner: Sacrifice R2 Theta
Attack G1S Gamma
Pass

60) ajo: Build G2 Alpha

61) Danner: Sacrifice G1 Theta
Build Y3 Beta

62) ajo: Sacrifice Y2 Alpha
Move G1 Alpha Danner
Move G1 Danner Beta

63) Danner: Sacrifice Y3 Beta
Move Y1 Beta Ajo
Move B1 Beta Ajo
Move B2 Beta Ajo

64) ajo: Sacrifice R2 Alpha
Attack B2 Ajo
Attack B1 Ajo

65) Danner: Sacrifice Y3 Zeta
Move B2 Zeta Ajo
Move Y2 Zeta Ajo
Move Y1 Gamma Ajo
Catastrophe Ajo Y
Catastrophe Ajo B
	ajo: Therrrrre you go. Finally. :P  Good game!

	Danner: Thanks for the game! :)


20337)
Variants: "Hard time"
Started: 2011.7.9, Ended: 2011.7.24
Participants: SilentTitan (S), thejackdiaz (N)
Winner: SilentTitan

1) thejackdiaz: Homeworld Y2 B3 G3

2) SilentTitan: Homeworld R1 B2 G3

3) thejackdiaz: Build G1 Thejackdiaz

4) SilentTitan: Build G1 Silenttitan

5) thejackdiaz: Discover G1 Thejackdiaz Y1 Trini

6) SilentTitan: Trade G1 Y1 Silenttitan

7) thejackdiaz: Build G1 Thejackdiaz

8) SilentTitan: Build Y1 Silenttitan

9) thejackdiaz: Build G1 Trini

10) SilentTitan: Discover Y1 Silenttitan B3 Sol

11) thejackdiaz: Discover G1 Trini Y3 Eva

12) SilentTitan: Build Y2 Silenttitan

13) thejackdiaz: Build G2 Eva

14) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Sol
Build Y3 Silenttitan

15) thejackdiaz: Sacrifice G3 Thejackdiaz
Build G2 Eva
Build G2 Trini
Build G3 Thejackdiaz

16) SilentTitan: Trade Y3 R3 Sol

17) thejackdiaz: Trade G1 R1 Thejackdiaz

18) SilentTitan: Trade Y1 G1 Sol

19) thejackdiaz: Build G3 Thejackdiaz

20) SilentTitan: Trade Y3 G3 Silenttitan

21) thejackdiaz: Trade G3 R3 Thejackdiaz

22) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y3 Sol
Build Y3 Silenttitan

23) thejackdiaz: Move R3 Thejackdiaz Trini

24) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Sol Trini
Move G1 Trini Eva
Catastrophe Eva Green

25) thejackdiaz: Discover G2 Trini B3 Billy

26) SilentTitan: Trade Y3 G3 Silenttitan

27) thejackdiaz: Trade G2 Y2 Billy

28) SilentTitan: Trade Y2 G2 Sol

29) thejackdiaz: Build R1 Trini

30) SilentTitan: Discover Y1 Sol B1 Pluto

31) thejackdiaz: Discover G1 Trini Y3 Kimberly

32) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Pluto
Build Y3 Silenttitan
Build R2 Sol

33) thejackdiaz: Sacrifice G1 Kimberly
Build Y3 Billy

34) SilentTitan: Sacrifice Y2 Pluto
Move Y1 Pluto Billy
Move Y1 Silenttitan Billy
Catastrophe Billy Yellow

35) thejackdiaz: Build R2 Thejackdiaz

36) SilentTitan: Discover R2 Sol Y1 Tic

37) thejackdiaz: Trade R1 Y1 Thejackdiaz

38) SilentTitan: Sacrifice G2 Sol
Build Y2 Sol
Build Y2 Silenttitan

39) thejackdiaz: Build G1 Thejackdiaz

40) SilentTitan: Trade Y3 G3 Silenttitan

41) thejackdiaz: Move G1 Thejackdiaz Trini

42) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Silenttitan
Build Y3 Silenttitan
Build R1 Sol

43) thejackdiaz: Build G1 Thejackdiaz

44) SilentTitan: Trade Y2 B2 Silenttitan

45) thejackdiaz: Trade G1 B1 Thejackdiaz

46) SilentTitan: Discover Y2 Sol G1 Mars

47) thejackdiaz: Build G1 Thejackdiaz

48) SilentTitan: Trade Y3 G3 Silenttitan

49) thejackdiaz: Build G2 Trini

50) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Mars
Build Y3 Sol
Build B1 Silenttitan

51) thejackdiaz: Discover R1 Trini B3 Ozone

52) SilentTitan: Sacrifice Y3 Sol
Move Y2 Mars Thejackdiaz
Move Y2 Mars Thejackdiaz
Discover B1 Silenttitan G3 Mer
Catastrophe Thejackdiaz Yellow

53) thejackdiaz: Trade B1 Y1 Thejackdiaz

54) SilentTitan: Trade R1 G1 Sol

55) thejackdiaz: Build Y2 Thejackdiaz

56) SilentTitan: Sacrifice G1 Sol
Build B1 Silenttitan

57) thejackdiaz: Trade R1 B1 Ozone

58) SilentTitan: Sacrifice Y3 Sol
Move B1 Silenttitan Thejackdiaz
Move B2 Silenttitan Thejackdiaz
Move B1 Mer Tic

59) thejackdiaz: Attack B2S Thejackdiaz

60) SilentTitan: Move B1 Tic Thejackdiaz
Catastrophe Thejackdiaz Blue
	thejackdiaz: GG
	SilentTitan: Thanks



20345)
Variants: "Hard time"
Started: 2011.7.11, Ended: 2011.7.19
Participants: kingsamj (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R3 B2 G3

2) kingsamj: Homeworld R3 B2 G3

3) SilentTitan: Build G1 Silenttitan
	SilentTitan: Small universe..... nice.   Good luck.

4) kingsamj: Build G1 Kingsamj

5) SilentTitan: Trade G1 Y1 Silenttitan

6) kingsamj: Trade G1 R1 Kingsamj

7) SilentTitan: Build Y1 Silenttitan

8) kingsamj: Build G1 Kingsamj

9) SilentTitan: Build Y1 Silenttitan



20365)
Variants: "Hard time"
Started: 2011.7.12, Ended: 2011.8.14
Participants: BloodRumpus (S), kingsamj (N)
Winner: kingsamj

1) kingsamj: Homeworld R3 B2 G3

2) BloodRumpus: Homeworld G1 B2 Y3

3) kingsamj: Build G1 Kingsamj

4) BloodRumpus: Build Y1 Bloodrumpus

5) kingsamj: Trade G1 Y1 Kingsamj

6) BloodRumpus: Discover Y1 Bloodrumpus G3 Rigel

7) kingsamj: Discover Y1 Kingsamj G1 Firescorn

8) BloodRumpus: Build Y1 Bloodrumpus

9) kingsamj: Build Y2 Firescorn

10) BloodRumpus: Build Y2 Rigel

11) kingsamj: Move Y1 Firescorn Kingsamj
	BloodRumpus: Thats a lot of yellow ships! I sleep now...

12) BloodRumpus: Trade Y1 B1 Bloodrumpus

13) kingsamj: Build Y1 Kingsamj
	BloodRumpus: oh i see you are playing against SilentTitan. I've played 2 games with him, he beat me both times.

14) BloodRumpus: Build Y2 Bloodrumpus

15) kingsamj: Trade Y1 R1 Kingsamj

16) BloodRumpus: Trade Y3 G3 Bloodrumpus

17) kingsamj: Move R1 Kingsamj Firescorn

18) BloodRumpus: Sacrifice G3 Bloodrumpus
Build Y1 Rigel
Build Y3 Bloodrumpus
Build Y3 Bloodrumpus

19) kingsamj: Move Y2 Firescorn Rigel
Catastrophe Rigel Y

20) BloodRumpus: Trade Y3 G3 Bloodrumpus

21) kingsamj: Build Y1 Kingsamj
	BloodRumpus: Nice catastrophe! Off to bed...

22) BloodRumpus: Discover Y2 Bloodrumpus G3 Vega

23) kingsamj: Build R1 Firescorn

24) BloodRumpus: Move B1 Bloodrumpus Vega

25) kingsamj: Move Y1 Kingsamj Firescorn

26) BloodRumpus: Trade Y2 R2 Vega

27) kingsamj: Trade Y1 B1 Kingsamj

28) BloodRumpus: Build Y1 Bloodrumpus

29) kingsamj: Build Y1 Firescorn

30) BloodRumpus: Move Y1 Bloodrumpus Vega

31) kingsamj: Move Y1 Firescorn Kingsamj

32) BloodRumpus: Discover G3 Bloodrumpus Y3 Sirius

33) kingsamj: Build Y2 Firescorn

34) BloodRumpus: Move G3 Sirius Firescorn

35) kingsamj: Build Y2 Kingsamj

36) BloodRumpus: Sacrifice R2 Vega
Attack Y2 Firescorn
Attack R1 Firescorn

37) kingsamj: Pass
	kingsamj: i think this game has some bugs!

38) BloodRumpus: Pass
	BloodRumpus: Is it misbehaving?

39) kingsamj: Build G1 Kingsamj

40) BloodRumpus: Sacrifice G3 Firescorn
Build Y2 Vega
Build Y3 Bloodrumpus
Build Y3 Bloodrumpus

41) kingsamj: Build G2 Kingsamj

42) BloodRumpus: Trade Y3 G3 Bloodrumpus

43) kingsamj: Move Y1 Firescorn Vega
	BloodRumpus: This game has been pretty epic. Thats a fuck-ton of ships at your homeworld!

44) BloodRumpus: Build Y3 Firescorn

45) kingsamj: Move G2 Kingsamj Firescorn

46) BloodRumpus: Sacrifice Y2 Firescorn
Discover Y3 Firescorn B3 Draconis
Move R1 Firescorn Vega

47) kingsamj: Move Y2 Kingsamj Firescorn

48) BloodRumpus: Sacrifice Y2 Vega
Move Y3 Bloodrumpus Vega
Discover Y3 Vega R1 Cygnus

49) kingsamj: Build R2 Firescorn

50) BloodRumpus: Move Y3 Draconis Cygnus


51) kingsamj: Build Y2 Firescorn

52) BloodRumpus: Trade G3 R3 Bloodrumpus

53) kingsamj: Trade G3 R3 Kingsamj

54) BloodRumpus: Build Y2 Bloodrumpus

55) kingsamj: Sacrifice Y2 Firescorn
Move Y1 Vega Cygnus
Move Y1 Kingsamj Cygnus
Catastrophe Cygnus Y

56) BloodRumpus: Trade Y2 G2 Bloodrumpus

57) kingsamj: Build G2 Kingsamj

58) BloodRumpus: Discover G2 Bloodrumpus B3 Crux

59) kingsamj: Move R2 Firescorn Crux

60) BloodRumpus: Build G3 Crux

61) kingsamj: Build G3 Kingsamj

62) BloodRumpus: Sacrifice R1 Vega
Attack R2 Crux

63) kingsamj: Trade G3 Y3 Kingsamj

64) BloodRumpus: Trade G2 Y2 Crux

65) kingsamj: Move R3 Kingsamj Firescorn

66) BloodRumpus: Build R1 Bloodrumpus

67) kingsamj: Move R1 Firescorn Vega

68) BloodRumpus: Move R3 Bloodrumpus Crux

69) kingsamj: Attack Y1 Vega

70) BloodRumpus: Sacrifice Y2 Crux
Move R3 Crux Firescorn
Move G3 Crux Firescorn

71) kingsamj: Move R3 Firescorn Crux

72) BloodRumpus: Sacrifice B1 Vega
Trade G3 B3 Firescorn

73) kingsamj: Move Y2 Firescorn Crux

74) BloodRumpus: Sacrifice R2 Crux
Attack G2N Firescorn
Pass

75) kingsamj: Sacrifice Y2 Crux
Move G2 Kingsamj Firescorn
Move G1 Kingsamj Firescorn
Catastrophe Firescorn G

76) BloodRumpus: Build Y1 Bloodrumpus

77) kingsamj: Trade Y3 G3 Kingsamj

78) BloodRumpus: Trade Y1 B1 Bloodrumpus

79) kingsamj: Trade B1 Y1 Kingsamj

80) BloodRumpus: Build Y1 Bloodrumpus

81) kingsamj: Build Y2 Vega

82) BloodRumpus: Discover Y1 Bloodrumpus G3 Algol

83) kingsamj: Build Y2 Kingsamj

84) BloodRumpus: Build Y2 Bloodrumpus

85) kingsamj: Sacrifice Y2 Kingsamj
Move Y1 Vega Bloodrumpus
Move Y2 Vega Bloodrumpus
Catastrophe Bloodrumpus Y

86) BloodRumpus: Build R1 Bloodrumpus

87) kingsamj: Build R2 Vega

88) BloodRumpus: Build B1 Bloodrumpus

89) kingsamj: Sacrifice Y1 Kingsamj
Move R2 Vega Bloodrumpus

90) BloodRumpus: D Y1 Algol G2 Bootes

91) kingsamj: Sacrifice R3 Crux
Attack R1 Bloodrumpus
Attack R1 Bloodrumpus
Attack B1 Bloodrumpus

92) BloodRumpus: Build B1 Bloodrumpus

93) kingsamj: Build G1 Kingsamj
Catastrophe Bloodrumpus B

	kingsamj: woo! cylons win!
	BloodRumpus: I was fully bonerized :(


20373)
Variants: "Hard time"
Started: 2011.7.13, Ended: 2011.7.16
Participants: ajo (S), Subhan64 (N)
Winner: ajo



20349)
Started: 2011.7.14, Ended: 2011.11.3
Participants: thejackdiaz (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld R2 B1 G3
	Mandrel: Have a good game.

2) thejackdiaz: Homeworld B1 G3 R3

3) Mandrel: Build G1 Mandrel

4) thejackdiaz: Build R1 Thejackdiaz

5) Mandrel: Trade G1 B1 Mandrel

6) thejackdiaz: Trade R3 Y3 Thejackdiaz

7) Mandrel: Build B2 Mandrel

8) thejackdiaz: Build R1 Thejackdiaz

9) Mandrel: Trade B1 Y1 Mandrel

10) thejackdiaz: Build Y1 Thejackdiaz

11) Mandrel: D B2 Mandrel G3 Berry

12) thejackdiaz: Discover R1 Thejackdiaz G2 Kix

13) Mandrel: Build B1 Berry

14) thejackdiaz: Build R1 Kix

15) Mandrel: B B2 Berry

16) thejackdiaz: Move Y1 Thejackdiaz Kix

17) Mandrel: T B2 R2 Berry

18) thejackdiaz: Build R2 Kix

19) Mandrel: T B2 Y2 Berry

20) thejackdiaz: Move R1 Kix Thejackdiaz

21) Mandrel: Build R3 Berry

22) thejackdiaz: Discover R1 Kix B3 Cubone

23) Mandrel: T R2 G2 Berry

24) thejackdiaz: Build R2 Kix

25) Mandrel: Build R3 Berry

26) thejackdiaz: Build R3 Thejackdiaz

27) Mandrel: Discover G2 Berry B2 Ground

28) thejackdiaz: Trade R1 Y1 Thejackdiaz

29) Mandrel: Build Y2 Mandrel

30) thejackdiaz: Build Y2 Kix

31) Mandrel: B Y3 Berry

32) thejackdiaz: Move Y2 Kix Cubone

33) Mandrel: Build B2 Berry

34) thejackdiaz: Build Y3 Kix

35) Mandrel: Build G1 Ground

36) thejackdiaz: Move R2 Kix Cubone

37) Mandrel: Build G1 Ground

38) thejackdiaz: Discover R2 Kix B3 Omega

39) Mandrel: Trade R3 B3 Berry

40) thejackdiaz: Sacrifice Y3 Kix
Move R2 Cubone Mandrel
Move R1 Cubone Mandrel
Move R2 Omega Mandrel
Catastrophe Mandrel Red

41) Mandrel: S Y3 Berry
Move G1 Ground Thejackdiaz
Move G1 Ground Thejackdiaz
Move G2 Ground Thejackdiaz
Catastrophe Thejackdiaz G

42) thejackdiaz: Build Y3 Kix

43) Mandrel: M B1 Berry Thejackdiaz

44) thejackdiaz: Sacrifice Y3 Kix
Move R3 Thejackdiaz Berry
Move Y1 Kix Mandrel
Move Y2 Cubone Mandrel
Catastrophe Mandrel Y

45) Mandrel: Sacrifice Y2 Berry
Move B2 Berry Thejackdiaz
Move B3 Berry Thejackdiaz
Catastrophe Thejackdiaz B
	Mandrel: Good game.
	thejackdiaz: Good game



20369)
Variants: "No undo"
Started: 2011.7.14, Ended: 2011.8.3
Participants: ajo (S), thejackdiaz (N)
Winner: ajo

1) thejackdiaz: Homeworld R1 B2 G3

2) ajo: Homeworld G3 B1 R3

3) thejackdiaz: Build G1 Thejackdiaz

4) ajo: Build R1 Ajo

5) thejackdiaz: Trade G1 Y1 Thejackdiaz

6) ajo: Trade R3 Y3 Ajo

7) thejackdiaz: Build G1 Thejackdiaz

8) ajo: Build R1 Ajo

9) thejackdiaz: Discover G1 Thejackdiaz Y3 Spike

10) ajo: Build R2 Ajo
	ajo: Moving out to a b3 star would probably have been better. From that y3, all you can do is move out again to a b2 star... which would normally be a decent aggressive strategy, but in this case I've got tons of red and you've got none, so watch out!

11) thejackdiaz: Build Y1 Thejackdiaz
	thejackdiaz: Thanks! I'm still learning

12) ajo: Discover R2 Ajo Y2 Waypoint

13) thejackdiaz: Discover G1 Spike B2 Jet

14) ajo: Move R1 Ajo Jet

15) thejackdiaz: Trade G1 Y1 Jet

16) ajo: Attack Y1 Jet

17) thejackdiaz: Build Y2 Thejackdiaz

18) ajo: Build R2 Ajo

19) thejackdiaz: Trade Y2 R2 Thejackdiaz

20) ajo: Trade R1 G1 Jet

21) thejackdiaz: Build Y2 Thejackdiaz

22) ajo: Build Y2 Jet

23) thejackdiaz: Discover Y2 Thejackdiaz B3 Ed

24) ajo: Build Y3 Ajo

25) thejackdiaz: Discover Y2 Ed G2 Valentine

26) ajo: Move Y3 Ajo Valentine

27) thejackdiaz: Build Y3 Valentine

28) ajo: Sacrifice R2 Ajo
Attack Y2 Valentine
Attack Y3 Valentine
	ajo: Ooookay then... I'll take it!

29) thejackdiaz: Discover R2 Thejackdiaz G3 Silas
	thejackdiaz: Crap

30) ajo: Move Y3 Valentine Silas
	ajo: Another tip: Watch out for systems containing only red and green. In this case it's no big deal, because it's right next to a system containing more colors; but if a system way out in the middle of nowhere has only red and green, then it's essentially useless.

31) thejackdiaz: Sacrifice Y1 Thejackdiaz
Move R2 Silas Thejackdiaz

32) ajo: Build Y1 Silas

33) thejackdiaz: Build G1 Thejackdiaz

34) ajo: Move R2 Waypoint Silas

35) thejackdiaz: Trade G1 B1 Thejackdiaz

36) ajo: Build Y2 Jet

37) thejackdiaz: Build G1 Thejackdiaz

38) ajo: Trade Y1 R1 Jet

39) thejackdiaz: Build Y1 Thejackdiaz

40) ajo: Sacrifice Y3 Valentine
Move R1 Jet Silas
Move R1 Silas Thejackdiaz
Move R2 Silas Thejackdiaz
Catastrophe Thejackdiaz Red

41) thejackdiaz: Trade Y1 R1 Thejackdiaz
	ajo: It was probably too early for me to do that, really; but long inexorable buildups aren't as much fun as blowing things up. :)

42) ajo: Trade Y2 B2 Jet
	thejackdiaz: We're nearing the end

43) thejackdiaz: Discover G1 Thejackdiaz B3 Iv

44) ajo: Build B1 Jet

45) thejackdiaz: Move B1 Thejackdiaz Iv

46) ajo: Trade B2 R2 Jet

47) thejackdiaz: Build G1 Iv

48) ajo: Move B1 Jet Iv

49) thejackdiaz: Trade B1 R1 Iv

50) ajo: Sacrifice R2 Jet
Attack R1 Iv
Attack G1 Iv

51) thejackdiaz: Build R2 Thejackdiaz
	ajo: I'm definitely letting myself get sidetracked off of my main goal here, which ought to be to get three more blues into your homeworld.

52) ajo: Build R2 Iv

53) thejackdiaz: Sacrifice R1 Thejackdiaz
Attack G1S Iv

54) ajo: Attack G1 Iv
	ajo: Well that was just a waste. You sacrificed your r1 to do something that I can undo for free.

55) thejackdiaz: Build G2 Thejackdiaz
	ajo: ...And now we're back where we were at the start of your last turn, except that you've lost that r1 ship.

56) ajo: Attack G1 Iv

57) thejackdiaz: Trade G2 Y2 Thejackdiaz

58) ajo: Sacrifice Y2 Valentine
Move G1 Iv Thejackdiaz
Move G1 Iv Thejackdiaz

59) thejackdiaz: Attack G1 Thejackdiaz

60) ajo: Build G2 Thejackdiaz
Catastrophe Thejackdiaz Green

61) thejackdiaz: Trade Y2 G2 Thejackdiaz

62) ajo: Move Y3 Silas Thejackdiaz

63) thejackdiaz: Build R1 Thejackdiaz

64) ajo: Sacrifice R2 Iv
Attack R2 Thejackdiaz
Attack G2 Thejackdiaz

65) thejackdiaz: Trade Y1 G1 Thejackdiaz
	ajo: Checkmate. :) Good game!
	thejackdiaz: Good Game!

66) ajo: Sacrifice R2 Thejackdiaz
Attack G1 Thejackdiaz
Attack R1 Thejackdiaz



20358)
Variants: "Hard time"
Started: 2011.7.15, Ended: 2011.7.23
Participants: SilentTitan (S), BloodRumpus (N)
Winner: SilentTitan

1) BloodRumpus: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld B2 R3 G3

3) BloodRumpus: Build G1 Bloodrumpus
	SilentTitan: Welcome back
	BloodRumpus: Thanks!

4) SilentTitan: Build G1 Silenttitan

5) BloodRumpus: Trade G1 B1 Bloodrumpus

6) SilentTitan: Trade G1 Y1 Silenttitan

7) BloodRumpus: Build G1 Bloodrumpus

8) SilentTitan: Build Y1 Silenttitan

9) BloodRumpus: Trade G3 Y3 Bloodrumpus

10) SilentTitan: Trade Y1 B1 Silenttitan

11) BloodRumpus: Build G1 Bloodrumpus

12) SilentTitan: Build B1 Silenttitan

13) BloodRumpus: Discover G1 Bloodrumpus Y3 Regula

14) SilentTitan: Discover B1 Silenttitan Y1 Sol

15) BloodRumpus: Build Y2 Bloodrumpus

16) SilentTitan: Discover B1 Silenttitan G1 Earth

17) BloodRumpus: Build G2 Regula

18) SilentTitan: Build Y2 Silenttitan

19) BloodRumpus: Move Y2 Bloodrumpus Regula

20) SilentTitan: Move Y1 Silenttitan Earth

21) BloodRumpus: Move G1 Regula Sol

22) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Earth
Build Y3 Silenttitan
Build B2 Sol

23) BloodRumpus: Move Y2 Regula Sol

24) SilentTitan: Trade B2 R2 Sol

25) BloodRumpus: Sacrifice Y2 Sol
Move G1 Sol Regula
Discover G1 Regula R1 Vulcan

26) SilentTitan: Trade Y3 G3 Silenttitan

27) BloodRumpus: Build Y2 Bloodrumpus

28) SilentTitan: Sacrifice Y2 Earth
Move Y1 Earth Regula
Move Y1 Regula Bloodrumpus
Catastrophe Bloodrumpus Yellow



20381)
Variants: "Hard time"
Started: 2011.7.15, Ended: 2011.7.18
Participants: alexcobo (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld G3 B2 Y3



20383)
Variants: "Hard time"
Started: 2011.7.17, Ended: 2011.8.10
Participants: Subhan64 (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R1 B2 G3

2) Subhan64: Homeworld Y2 B3 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) Subhan64: Build G1 Subhan64

5) goulo: Trade G1 Y1 Goulo

6) Subhan64: Build G1 Subhan64

7) goulo: Build G1 Goulo

8) Subhan64: Trade G1 Y1 Subhan64

9) goulo: Trade G1 R1 Goulo

10) Subhan64: Build G1 Subhan64

11) goulo: Discover R1 Goulo G3 Smeraldego

12) Subhan64: Discover G1 Subhan64 B1 Bluebell

13) goulo: Build R1 Smeraldego

14) Subhan64: Discover G1 Subhan64 G1 Greengrass

15) goulo: Build G2 Goulo

16) Subhan64: Sacrifice G3 Subhan64
Build G2 Bluebell
Build G2 Greengrass
Build G3 Bluebell

17) goulo: Discover G2 Goulo Y3 Citronego

18) Subhan64: Trade G2 R2 Bluebell

19) goulo: Build G2 Goulo

20) Subhan64: Sacrifice G2 Greengrass
Build G2 Greengrass
Build R2 Bluebell

21) goulo: Move G2 Citronego Greengrass
Catastrophe Greengrass G

22) Subhan64: Sacrifice G1 Bluebell
Build Y1 Subhan64

23) goulo: Build Y2 Goulo

24) Subhan64: Sacrifice Y1 Subhan64
Move R2 Bluebell Smeraldego

25) goulo: Build R2 Smeraldego
Catastrophe Smeraldego R

26) Subhan64: Build G1 Bluebell

27) goulo: Trade Y1 R1 Goulo

28) Subhan64: Trade G1 Y1 Bluebell

29) goulo: Discover G2 Goulo Y3 Citronego

30) Subhan64: Move R2 Bluebell Citronego

31) goulo: Sacrifice R1 Goulo
Attack R2 Citronego

32) Subhan64: Move G3 Bluebell Subhan64

33) goulo: Build G1 Citronego

34) Subhan64: Build G1 Subhan64

35) goulo: Move G2 Citronego Bluebell

36) Subhan64: Trade Y1 R1 Subhan64

37) goulo: Build Y1 Goulo

38) Subhan64: Trade G1 Y1 Subhan64

39) goulo: Build G1 Bluebell

40) Subhan64: Sacrifice G3 Subhan64
Build Y2 Subhan64
Build Y3 Bluebell
Build R1 Subhan64

41) goulo: Sacrifice G2 Bluebell
Build Y3 Goulo
Build G1 Goulo

42) Subhan64: Sacrifice Y2 Subhan64
Move Y1 Bluebell Citronego
Move Y1 Citronego Goulo
Catastrophe Goulo Yellow

43) goulo: Build G2 Goulo

44) Subhan64: Sacrifice R1 Subhan64
Attack G1 Bluebell

45) goulo: Trade G2 Y2 Goulo

46) Subhan64: Build G2 Bluebell

47) goulo: Move G3 Goulo Citronego

48) Subhan64: Trade G2 Y2 Bluebell

49) goulo: Build G2 Goulo

50) Subhan64: Move G1 Bluebell Subhan64

51) goulo: Sacrifice Y2 Goulo
Move G3 Citronego Bluebell
Move G3 Bluebell Subhan64

52) Subhan64: Build G2 Subhan64

53) goulo: Sacrifice R2 Citronego
Attack Y1 Subhan64
Attack R1 Subhan64

54) Subhan64: Trade G1 R1 Subhan64

55) goulo: Attack R1 Subhan64

56) Subhan64: Sacrifice Y2 Bluebell
Move Y3 Bluebell Citronego
Move Y3 Citronego Goulo

57) goulo: Attack G2 Subhan64
	goulo: I didn't anticipate that you might build g2 at your homeworld, so I'm improvising. :)
	Subhan64: not a bad improvisation, I had slightly miscalculated on my plans as well!


	Subhan64: good game, thanks!
	goulo: thanks, that was a good game indeed! Very tense race at the finish. I had a strong adrenalin sense of "is now the time to pull the trigger and make the final homeworld attack? or am I overlooking something?" Good interesting tension!

A turn earlier I was tempted to send my G3 to your homeworld, then realized you had one response that would let you win first. So I built another ship, then sent it the turn later, and was promptly surprised by your building a green at your homeworld, which I'd not considered. But it turned out lucky for me that that didn't work for you. :)
	Subhan64: yeah, I think if I had moved the Y2 home before making the trade for R1 I could have pulled it out, at least for a while, as I could then either have constructed another g ship or traded for 1, & catastrophed all the green out of the sytem.  Would have left me pretty week

	Subhan64: & if you'd delayed a turn on moving into my home system I'd have been in yours, & the race would have been on!

	goulo: yep, it was a question of delicate timing! it felt oddly like an endgame in Cannon when one decides it's time to ignore the threat against one's own town and race for the enemy town instead because one will win the race by a move.


20338)
Started: 2011.7.19, Ended: 2011.8.14
Participants: SirRuthvenMurgatroyd (S), goblin981 (N)
Winner: SirRuthvenMurgatroyd

1) goblin981: Homeworld G3 B1 Y3

2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3

3) goblin981: Build Y1 Goblin981

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) goblin981: Build Y1 Goblin981

6) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

7) goblin981: Discover Y1 Goblin981 G2 Green

8) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Yellow

9) goblin981: Discover Y1 Goblin981 G2 Green2

10) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G1 Yellow
Build G2 Yellow
Build G3 Sirruthvenmurgatroyd

11) goblin981: Discover Y1 Green2 G3 Green3

12) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd

13) goblin981: Build Y2 Goblin981

14) SirRuthvenMurgatroyd: Discover G2 Yellow Y2 Yellow2

15) goblin981: Trade Y2 G2 Goblin981

16) SirRuthvenMurgatroyd: Move G2 Yellow2 Green3

17) goblin981: Build Y2 Green3

18) SirRuthvenMurgatroyd: Sacrifice R1 Sirruthvenmurgatroyd
Attack Y2N Green3

19) goblin981: Build G1 Goblin981

20) SirRuthvenMurgatroyd: Sacrifice Y2 Green3
Move G1 Yellow Green
Move G1 Green Goblin981
Catastrophe Goblin981 G

21) goblin981: Build Y2 Green3

22) SirRuthvenMurgatroyd: Move G1 Yellow Goblin981

23) goblin981: Move Y2 Green3 Goblin981

24) SirRuthvenMurgatroyd: Trade G1 B1 Goblin981

25) goblin981: Trade Y2 G2 Goblin981

26) SirRuthvenMurgatroyd: Sacrifice G2 Green3
Build B1 Goblin981
Build B2 Goblin981
Catastrophe Goblin981 B



20402)
Variants: "Hard time"
Started: 2011.7.20, Ended: 2011.7.27
Participants: ajo (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) ajo: Homeworld G3 Y2 R3 *
	ajo: Let's see if this opening works...

3) SilentTitan: Build G1 Silenttitan
	SilentTitan: Looks good

4) ajo: Build R1 Ajo

5) SilentTitan: Trade G3 R3 Silenttitan

6) ajo: Discover R1 Ajo B1 Alpha

7) SilentTitan: Build G1 Silenttitan
	ajo: Well, we've diverged from my predicted main variation already. So it's not working as well as I planned...

8) ajo: Trade R1 G1 Alpha
	SilentTitan: lol.... battle plan never survives meeting the enemy.

9) SilentTitan: Trade G1 Y1 Silenttitan

10) ajo: Build R1 Ajo

11) SilentTitan: Build Y1 Silenttitan

12) ajo: Move R1 Ajo Alpha

13) SilentTitan: Build Y1 Silenttitan

14) ajo: Build G1 Alpha
	ajo: BTW, here's how I *expected* the opening to go:
(ST) build g1
(AJO) build r1
(ST) trade g3 y3
(AJO) discover r1 ajo r1 Junk
(ST) build g1
(AJO) build r2 ajo

15) SilentTitan: Discover Y1 Silenttitan G3 Sky

16) ajo: Build G2 Alpha

17) SilentTitan: Build Y2 Sky
	SilentTitan: that would have never happened my standard is to build g1 then trade g1 y1 then try to dominate the yellows from there. I'm not going to try to let you have a free level 2 build unless I think I can do you out of something for it.  

18) ajo: Trade G2 Y2 Alpha

19) SilentTitan: Sacrifice Y2 Sky
Move R3 Silenttitan Sky
Move R3 Sky Alpha
	ajo: Ah, I'll keep that in mind for our next game. ;) I usually expect people to immediately go for the color they don't have yet, particularly if it's not red. And an early y3 can really cut down your opponent's options. Anyway, I'm not sure you're going to be able to dominate the yellows anymore...

20) ajo: Trade Y2 R2 Alpha

21) SilentTitan: Build Y2 Sky
	ajo: Blecch. Well played... but possibly overextended. We're both horribly vulnerable right now, by my heuristics.

22) ajo: Build R1 Alpha
Catastrophe Alpha Red
	SilentTitan: hey... this is a clean game you keep your heuristics out of it.

	ajo: Heh. Well, I guess I have to do this now...

23) SilentTitan: Build G2 Silenttitan

24) ajo: Build G2 Alpha

25) SilentTitan: Sacrifice Y2 Sky
Discover G1 Silenttitan B3 Tempworld
Move G1 Tempworld Alpha
Catastrophe Alpha Green

26) ajo: Build R1 Ajo

27) SilentTitan: Build Y2 Sky
	SilentTitan: This is the most unusual game I've played of this yet.

28) ajo: Build R1 Ajo

29) SilentTitan: Build Y2 Sky

30) ajo: Discover R1 Ajo G1 Alpha

31) SilentTitan: Discover Y2 Sky B1 Ground

32) ajo: Build R2 Ajo

33) SilentTitan: Sacrifice G2 Silenttitan
Build Y3 Silenttitan
Build Y3 Ground

34) ajo: Discover R2 Ajo B1 Beta

35) SilentTitan: Trade Y3 G3 Ground

36) ajo: Trade R2 G2 Beta
	ajo: I think you're about to win. Starting without blue is definitely a hard way to start. :P

37) SilentTitan: Build Y3 Ground

38) ajo: Move R1 Ajo Beta
	SilentTitan: I have never won starting without blue. It is a real challenge.

39) SilentTitan: Trade Y3 R3 Ground

40) ajo: Build R2 Beta

41) SilentTitan: Sacrifice G3 Ground
Build R2 Ground
Build R2 Ground
Build Y3 Ground

	ajo: That's checkmate, I believe. Well played. I won't try that again. ;)
	SilentTitan: The weird part of this is... when we started I looked at your starting position and was shocked at what a poor position I was in, because you were going to have a 2nd level piece in a couple of moves.  I thought to myself ... I don't have a standard start against this setup, why haven't I seen this before.  now we know.
	ajo: Those were my original thoughts, too. ;) I think your "trade g3 r3" on move 2 was the killer; if you hadn't done that, it might have worked a lot better for me.
	ajo: One thing I have noticed in real-world games with the no-blue setup is: If you start without blue, your plan for the first few moves must *NOT* be "build, build, move to a blue star, trade for blue, sacrifice to get blue at home". Getting blue is hard, and wastes too much time (at least 5 moves), compared to your opponent who's working on building up his fleet. I think if you start without blue, you need to have a plan for the first few moves like my "get an r2 really early, then build a bunch of 2s" and even then, it clearly backfires quite a lot. :)


20401)
Started: 2011.7.20, Ended: 2011.8.12
Participants: sageinquisitor (S), SirRuthvenMurgatroyd (N)
Winner: SirRuthvenMurgatroyd

1) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3

2) sageinquisitor: Homeworld G3 B2 Y3

3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

4) sageinquisitor: Build Y1 Sageinquisitor

5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol

6) sageinquisitor: Trade Y1 R1 Sageinquisitor

7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

8) sageinquisitor: Build R1 Sageinquisitor

9) SirRuthvenMurgatroyd: Build G1 Sol
	sageinquisitor: I'm heading over to someone's house, I will be back in about 10 minutes if you want to keep playing at this pace.

10) sageinquisitor: Discover R1 Sageinquisitor Y1 Darthto

11) SirRuthvenMurgatroyd: Discover G1 Sol Y1 Yellow

12) sageinquisitor: Move R1 Sageinquisitor Yellow

13) SirRuthvenMurgatroyd: Move G1 Yellow Sageinquisitor



20378)
Variants: "Hard time"
Started: 2011.7.20, Ended: 2011.8.1
Participants: SilentTitan (S), sageinquisitor (N)
Winner: SilentTitan

1) sageinquisitor: Homeworld G3 B2 Y3

2) SilentTitan: Homeworld R1 B2 G3

3) sageinquisitor: Build Y1 Sageinquisitor
	SilentTitan: Howdy.....

4) SilentTitan: Build G1 Silenttitan

5) sageinquisitor: Trade Y1 R1 Sageinquisitor

6) SilentTitan: Trade G1 Y1 Silenttitan

7) sageinquisitor: Build R1 Sageinquisitor

8) SilentTitan: Build Y1 Silenttitan

9) sageinquisitor: Build R2 Sageinquisitor

10) SilentTitan: Build G1 Silenttitan

11) sageinquisitor: Discover R2 Sageinquisitor Y1 Grendel

12) SilentTitan: Build Y2 Silenttitan
	sageinquisitor: howdy to u too
	sageinquisitor: howdy to u too
	sageinquisitor: I'm heading over to someone's house, I will be back in about 10 minutes if you want to keep playing at this pace.

13) sageinquisitor: Build R2 Sageinquisitor
	SilentTitan: sure... although it will be off and on because I'm setting up to export a bunch of virtual servers. 
	sageinquisitor: sounds good

14) SilentTitan: Discover Y2 Silenttitan R3 Gol

15) sageinquisitor: Build Y2 Sageinquisitor

16) SilentTitan: Discover Y1 Silenttitan R3 Ley

17) sageinquisitor: Discover R2 Sageinquisitor G1 Helloworldlol

18) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Gol
Build Y3 Ley
Build Y3 Silenttitan

19) sageinquisitor: Move Y2 Sageinquisitor Helloworldlol

20) SilentTitan: Build G1 Silenttitan

21) sageinquisitor: Build R2 Helloworldlol

22) SilentTitan: Discover Y2 Gol B1 Sand



20411)
Started: 2011.7.22, Ended: 2011.9.19
Participants: daselva (S), SirRuthvenMurgatroyd (N)
Winner: daselva

1) SirRuthvenMurgatroyd: Homeworld B2 Y3 G3

2) daselva: Homeworld B1 R2 G3

3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

4) daselva: Build G1 Daselva

5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol

6) daselva: Trade G1 Y1 Daselva

7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

8) daselva: Build Y1 Daselva

9) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse

10) daselva: Trade Y1 R1 Daselva

11) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd

12) daselva: Build Y1 Daselva

13) SirRuthvenMurgatroyd: Build G1 Betelgeuse

14) daselva: Build G2 Daselva

15) SirRuthvenMurgatroyd: Move G1 Betelgeuse Daselva

16) daselva: Discover G2 Daselva R3 S2

17) SirRuthvenMurgatroyd: Sacrifice R3 Sirruthvenmurgatroyd
Attack Y1S Daselva
Attack Y1S Daselva
Attack R1S Daselva

18) daselva: Attack Y1 Daselva

19) SirRuthvenMurgatroyd: Attack Y1S Daselva

20) daselva: Attack R1 Daselva

21) SirRuthvenMurgatroyd: Attack R1S Daselva

22) daselva: Attack G1 Daselva

23) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

24) daselva: Trade G1 Y1 Daselva

25) SirRuthvenMurgatroyd: Attack Y1S Daselva

26) daselva: Attack Y1 Daselva

27) SirRuthvenMurgatroyd: Trade Y1 B1 Daselva

28) daselva: Attack Y1 Daselva

29) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd
Build B1 Daselva
Build B2 Daselva
Catastrophe Daselva B

30) daselva: Attack R1 Daselva

31) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

32) daselva: Sacrifice Y1 Daselva
Discover G2 S2 Y1 S3

33) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd

34) daselva: Move G2 S3 Sirruthvenmurgatroyd

35) SirRuthvenMurgatroyd: Build B1 Sirruthvenmurgatroyd

36) daselva: Trade G2 R2 Sirruthvenmurgatroyd

37) SirRuthvenMurgatroyd: Trade B1 R1 Sirruthvenmurgatroyd

38) daselva: Attack R1 Sirruthvenmurgatroyd

39) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

40) daselva: Attack G1 Sirruthvenmurgatroyd

41) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

42) daselva: Build G2 Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd G

43) SirRuthvenMurgatroyd: Sacrifice G1 Betelgeuse
Build B1 Sirruthvenmurgatroyd

44) daselva: Sacrifice R2 Sirruthvenmurgatroyd
Attack B1 Sirruthvenmurgatroyd
Attack B1 Sirruthvenmurgatroyd

	daselva: thank you for playing


20444)
Variants: "Hard time"
Started: 2011.7.25, Ended: 2011.7.27
Participants: ts52 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B2 G3

2) ts52: Homeworld Y2 B3 G3
	zoltar: Hi!
	ts52: Hi! Have a good game.

3) zoltar: Build G1 Zoltar

4) ts52: Build G1 Ts52

5) zoltar: Trade G1 Y1 Zoltar

6) ts52: Trade G1 R1 Ts52

7) zoltar: Build Y1 Zoltar

8) ts52: Build R1 Ts52

9) zoltar: Discover Y1 Zoltar G3 Greenbelt

10) ts52: Build R2 Ts52

11) zoltar: Build Y1 Greenbelt

12) ts52: Discover R2 Ts52 B1 Gonzo

13) zoltar: Build Y2 Greenbelt

14) ts52: Build G1 Ts52

15) zoltar: Build Y2 Zoltar

16) ts52: Move G1 Ts52 Gonzo

17) zoltar: Discover Y2 Greenbelt B1 Blueberry

18) ts52: Build R2 Ts52

19) zoltar: Sacrifice G3 Zoltar
Build Y3 Zoltar
Build Y3 Greenbelt
Build Y3 Blueberry

20) ts52: Discover R2 Ts52 G1 Robin

21) zoltar: Trade Y3 G3 Zoltar

22) ts52: Sacrifice G3 Ts52
Build R2 Robin
Build R3 Ts52
Build R3 Gonzo
	zoltar: Yellow Alert!
	ts52: Wow, nice move

23) zoltar: Trade Y3 R3 Blueberry

24) ts52: Trade R3 Y3 Gonzo
	zoltar: Thanks!

25) zoltar: Move R3 Blueberry Ts52
Catastrophe Ts52 R

	zoltar: Good game! You left yourself vulnerable to the 'bluebird' checkmate.
	ts52: Whoops. Should've seen that coming....
Thanks for the game.


20441)
Started: 2011.7.26, Ended: 2011.8.4
Participants: wmreed (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) wmreed: Homeworld B3 G1 Y3
	ts52: Have a good game.

3) ts52: Build G1 Ts52
	wmreed: Thank you. You too!

4) wmreed: B Y1 Wmreed

5) ts52: Discover G1 Ts52 B3 Grover

6) wmreed: T Y1 R1 Wmreed

7) ts52: Build G1 Ts52

8) wmreed: B Y1 Wmreed

9) ts52: Build G2 Grover

10) wmreed: T Y1 B1 Wmreed

11) ts52: Build G2 Grover

12) wmreed: B Y1 Wmreed

13) ts52: Trade G2 R2 Grover

14) wmreed: T Y3 G3 Wmreed

15) ts52: Build G2 Grover

16) wmreed: B R1 Wmreed

17) ts52: Trade G2 Y2 Grover

18) wmreed: D R1 Wmreed G2 Xander

19) ts52: Move R2 Grover Xander

20) wmreed: B Y1 Wmreed

21) ts52: Attack R1 Xander

22) wmreed: D Y1 Wmreed B2 Willow

23) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Grover

24) wmreed: B Y2 Wmreed

25) ts52: Move G2 Grover Willow

26) wmreed: D Y1 Willow B1 Cordelia

27) ts52: Trade G3 Y3 Grover

28) wmreed: M G3 Wmreed Willow

29) ts52: Trade G3 R3 Ts52

30) wmreed: S Y1 Wmreed
M G3 Willow Wmreed

31) ts52: Sacrifice G2 Ts52
Build G2 Willow
Build G3 Ts52

32) wmreed: T G3 B3 Wmreed

33) ts52: Sacrifice Y2 Grover
Move G2 Willow Wmreed
Move G2 Willow Wmreed

	wmreed: Why waste time. I won't come back from the catastrophe. Well played!
	ts52: Thanks for the game.


20455)
Variants: "Hard time"
Started: 2011.7.27, Ended: 2011.8.7
Participants: AdamBadura (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B2 G3

2) AdamBadura: Homeworld G1 B2 Y3
	zoltar: Hi, gl, & hf!

3) zoltar: Build G1 Zoltar

4) AdamBadura: Build Y1 Adambadura

5) zoltar: Build G1 Zoltar

6) AdamBadura: Build Y1 Adambadura

7) zoltar: Trade G3 Y3 Zoltar

8) AdamBadura: Discover Y1 Adambadura G3 Shipyard

9) zoltar: Build G2 Zoltar

10) AdamBadura: Build Y1 Adambadura

11) zoltar: Trade G2 R2 Zoltar

12) AdamBadura: Build Y2 Shipyard

13) zoltar: Move R2 Zoltar Shipyard

14) AdamBadura: Sacrifice Y1 Shipyard
Discover Y2 Shipyard G2 Runaways

15) zoltar: Build G2 Zoltar

16) AdamBadura: Trade Y1 R1 Adambadura

17) zoltar: Trade G2 Y2 Zoltar

18) AdamBadura: Build R1 Adambadura

19) zoltar: Move Y2 Zoltar Shipyard

20) AdamBadura: Discover R1 Adambadura Y3 Highway

21) zoltar: Build R2 Shipyard

22) AdamBadura: Build R2 Adambadura

23) zoltar: Discover R2 Shipyard G2 Greenland

24) AdamBadura: Trade R1 B1 Adambadura

25) zoltar: Build G2 Zoltar

26) AdamBadura: Trade Y3 G3 Adambadura

27) zoltar: Discover G2 Zoltar R3 Redgiant

28) AdamBadura: Discover B1 Adambadura G3 Drydocks

29) zoltar: Discover G1 Zoltar Y3 Mellowyellow

30) AdamBadura: Sacrifice G3 Adambadura
Build R1 Highway
Build R3 Highway
Build R3 Adambadura

31) zoltar: Sacrifice G2 Redgiant
Build G2 Mellowyellow
Build G3 Zoltar
	AdamBadura: Sorry for the delay. The situation got complicated so I needed more time to think yet I was also more distracted by other things. It is still looking bad for me... :(

32) AdamBadura: Sacrifice Y2 Runaways
Move R1 Highway Zoltar
Move R1 Highway Zoltar

33) zoltar: Sacrifice G3 Zoltar
Build G2 Mellowyellow
Build R3 Shipyard
Build G3 Zoltar

34) AdamBadura: Move R3 Highway Zoltar
	zoltar: Very strange game: I've never played with a 'short' symmetrical system before, at least not since I was first learning the game.

35) zoltar: Sacrifice Y3 Zoltar
Move R2 Shipyard Adambadura
Move R3 Shipyard Adambadura
Move G2 Mellowyellow Adambadura
Catastrophe Zoltar R
Catastrophe Adambadura R
	AdamBadura: I didn't intent to play that way. It is usially worse for the second player. It was my mistake.

	zoltar: Ah, ok. I thought you had some clever opening trap ready to spring. I'm terrible at openings, but am at my best with endgame tactics, if I survive that far into the game!


20491)
Variants: "Hard time"
Started: 2011.8.2, Ended: 2011.8.26
Participants: mneme (S), SilentTitan (N)
Winner: mneme

1) SilentTitan: Homeworld R2 B1 G3
	SilentTitan: congrats on your medallion.

2) mneme: Homeworld G3 R1 B3

3) SilentTitan: Build G1 Silenttitan

4) mneme: Build B1 Mneme

5) SilentTitan: Build G1 Silenttitan

6) mneme: Build B1 Mneme

7) SilentTitan: Trade G1 Y1 Silenttitan

8) mneme: Trade B3 Y3 Mneme
	mneme: Thanks!

9) SilentTitan: Build Y1 Silenttitan

10) mneme: Build B2 Mneme

11) SilentTitan: Discover Y1 Silenttitan B3 Sol

12) mneme: Discover B2 Mneme G2 Pattern

13) SilentTitan: Build Y1 Silenttitan

14) mneme: Build B2 Pattern

15) SilentTitan: Discover Y1 Silenttitan B3 Pluto

16) mneme: Build B2 Mneme

17) SilentTitan: Discover G1 Silenttitan B3 Sink

18) mneme: Trade B2 Y2 Pattern

19) SilentTitan: Build Y2 Silenttitan

20) mneme: Discover B2 Pattern Y3 Jacinth

21) SilentTitan: Trade Y2 B2 Silenttitan

22) mneme: Trade B2 G2 Jacinth

23) SilentTitan: Discover B2 Silenttitan G3 Egg

24) mneme: Trade B2 R2 Mneme

25) SilentTitan: Build Y2 Silenttitan

26) mneme: Move Y2 Pattern Sink

27) SilentTitan: Trade Y2 R2 Silenttitan

28) mneme: Build R1 Mneme

29) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Pluto
Build Y2 Sol
Build Y3 Silenttitan

30) mneme: Sacrifice R1 Mneme
Attack G1 Sink

31) SilentTitan: Sacrifice B2 Egg
Trade Y1 R1 Sol
Trade Y2 G2 Sol

32) mneme: Discover R2 Mneme G2 Tracer

33) SilentTitan: Trade Y1 R1 Pluto

34) mneme: Build R3 Tracer

35) SilentTitan: Sacrifice G2 Sol
Build R3 Pluto
Build R3 Sol

36) mneme: Sacrifice B1 Mneme
Trade R3 G3 Tracer

37) SilentTitan: Trade R3 G3 Pluto

38) mneme: Build R3 Tracer

39) SilentTitan: Sacrifice Y2 Pluto
Move R1 Pluto Tracer
Move R1 Sol Tracer
Catastrophe Tracer Red

40) mneme: Build G1 Sink

41) SilentTitan: Trade Y1 G1 Silenttitan

42) mneme: Trade G1 R1 Sink

43) SilentTitan: Build G1 Pluto

44) mneme: Build R1 Sink

45) SilentTitan: Trade R2 Y2 Silenttitan

46) mneme: Build Y1 Sink

47) SilentTitan: Sacrifice Y2 Silenttitan
Move R3 Sol Tracer
Move R3 Tracer Sink

48) mneme: Build R2 Sink
Catastrophe Sink R

49) SilentTitan: Trade G1 Y1 Pluto

50) mneme: Trade Y2 R2 Sink

51) SilentTitan: Sacrifice G3 Pluto
Build Y1 Pluto
Build Y2 Pluto
Build Y2 Silenttitan

52) mneme: Build Y2 Sink
	mneme: I think that's your first (only) blunder this game.
	SilentTitan: yup... comes from trying to rush the turn... I had company coming in from South Carolina for a week.   That's what the delay was all about.  Sorry about that

	SilentTitan: yup... comes from trying to rush the turn... I had company coming in from South Carolina for a week.   That's what the delay was all about.  Sorry about that

	SilentTitan: lol... obviously I had already hit submit.

53) SilentTitan: Trade Y2 R2 Pluto

54) mneme: Sacrifice Y3 Mneme
Move Y2 Sink Silenttitan
Move Y1 Sink Silenttitan
Move G2 Jacinth Silenttitan
Catastrophe Silenttitan Y

	mneme: gg
	SilentTitan: oh.. yup... thanks for the challenge.
	mneme: Thanks! except for the (few) blunders, you played a solid game!


20414)
Variants: "No undo, Hard time"
Started: 2011.8.3, Ended: 2011.8.7
Participants: thejackdiaz (S), sageinquisitor (N)
Winner: thejackdiaz



20547)
Variants: "Hard time"
Started: 2011.8.8, Ended: 2011.8.11
Participants: ajo (S), zoltar (N)
Winner: ajo

	zoltar: I didn't know I was in a game, but I was just informed that I resigned!


20572)
Variants: "Hard time"
Started: 2011.8.10, Ended: 2011.8.17
Participants: Danner (S), Subhan64 (N)
Winner: Danner

1) Subhan64: Homeworld Y1 B2 G3
	Danner: Hi! Have a nice game!

2) Danner: Homeworld B1 R2 G3

3) Subhan64: Build G1 Subhan64

4) Danner: Build G1 Danner

5) Subhan64: Trade G1 Y1 Subhan64

6) Danner: Trade G1 Y1 Danner

7) Subhan64: Build Y2 Subhan64

8) Danner: Build Y2 Danner

9) Subhan64: Discover Y1 Subhan64 G3 Kermit

10) Danner: Discover Y1 Danner B3 Gamall

11) Subhan64: Build G1 Subhan64
	Subhan64: This was very nearly a very short game!
	Danner: :)

12) Danner: Build G1 Danner

13) Subhan64: Discover G1 Subhan64 Y3 Bigbird

14) Danner: Discover G1 Danner Y3 Garrett

15) Subhan64: Discover G3 Subhan64 Y3 Tweety

16) Danner: Build G1 Danner

17) Subhan64: Build Y2 Kermit

18) Danner: Sacrifice G1 Garrett
Build Y3 Gamall

19) Subhan64: Build G1 Bigbird

20) Danner: Sacrifice Y2 Danner
Move Y1 Gamall Subhan64
Move Y3 Gamall Subhan64
Catastrophe Subhan64 Y

	Subhan64: good game, thanks!

	Danner: thank you, too :)


20577)
Variants: "Hard time"
Started: 2011.8.11, Ended: 2011.8.31
Participants: zoltar (S), goulo (N)
Winner: zoltar

1) goulo: Homeworld B1 R2 G3

2) zoltar: Homeworld R1 B3 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) zoltar: Build G1 Zoltar

5) goulo: Trade G1 Y1 Goulo

6) zoltar: Trade G1 Y1 Zoltar

7) goulo: Build G1 Goulo

8) zoltar: Build G1 Zoltar

9) goulo: Trade G1 R1 Goulo

10) zoltar: Trade G1 R1 Zoltar

11) goulo: Build R2 Goulo

12) zoltar: Build R2 Zoltar

13) goulo: Discover R1 Goulo Y3 Citronego

14) zoltar: Trade R2 Y2 Zoltar

15) goulo: Build G1 Goulo

16) zoltar: Discover R1 Zoltar G2 Greenarrow

17) goulo: Move G1 Goulo Citronego

18) zoltar: Move Y1 Zoltar Greenarrow

19) goulo: Build G1 Goulo

20) zoltar: Build Y1 Zoltar

21) goulo: Build Y2 Goulo

22) zoltar: Discover Y2 Zoltar B2 Bluebeetle

23) goulo: Discover Y1 Goulo G3 Smeraldego

24) zoltar: Sacrifice G3 Zoltar
Build Y2 Greenarrow
Build Y3 Bluebeetle
Build Y3 Zoltar

25) goulo: Discover R1 Citronego G2 Smeraldo
	goulo: Ouch!

26) zoltar: Trade Y2 G2 Bluebeetle

27) goulo: Build Y2 Smeraldego

28) zoltar: Move Y3 Bluebeetle Citronego

29) goulo: Move Y1 Smeraldego Bluebeetle

30) zoltar: Trade Y1 G1 Zoltar

31) goulo: Sacrifice Y2 Goulo
Move Y1 Bluebeetle Citronego
Move G1 Citronego Greenarrow

32) zoltar: Build G3 Bluebeetle

33) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build Y1 Citronego
Build Y2 Smeraldego
Catastrophe Citronego Y

34) zoltar: Attack G1 Greenarrow

35) goulo: Discover Y2 Smeraldego R2 Rubeno

36) zoltar: Build R3 Greenarrow

37) goulo: Build R3 Smeraldo

38) zoltar: Move R3 Greenarrow Smeraldego

39) goulo: Sacrifice Y2 Smeraldego
Move R2 Goulo Smeraldego
Discover R2 Smeraldego Y2 Citrono

40) zoltar: Sacrifice G3 Bluebeetle
Build R3 Greenarrow
Build G3 Bluebeetle
Build Y1 Zoltar

41) goulo: Sacrifice Y2 Rubeno
Move R3 Smeraldo Zoltar
Move R1 Smeraldo Zoltar

42) zoltar: Attack R3 Zoltar

43) goulo: Sacrifice G1 Goulo
Build R2 Zoltar
Catastrophe Zoltar R

44) zoltar: Sacrifice G3 Bluebeetle
Build G1 Zoltar
Build G2 Zoltar
Build G3 Bluebeetle

45) goulo: Discover R2 Citrono Y3 Citronego

46) zoltar: Sacrifice Y3 Zoltar
Move G1 Zoltar Goulo
Move G2 Zoltar Goulo
Move G1 Zoltar Goulo
Catastrophe Goulo G
	zoltar: good game.
	goulo: congrats - thanks for the game!



20586)
Variants: "Hard time"
Started: 2011.8.12, Ended: 2011.9.7
Participants: ajo (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) ajo: Homeworld Y3 B2 G3
	TwoShort: Howdy

3) TwoShort: Build G1 Twoshort
	ajo: Howdy.

4) ajo: Build G1 Ajo

5) TwoShort: Trade G1 Y1 Twoshort

6) ajo: Trade G1 R1 Ajo

7) TwoShort: Build Y1 Twoshort

8) ajo: Build R1 Ajo

9) TwoShort: Build Y1 Twoshort

10) ajo: Build R2 Ajo

11) TwoShort: Discover Y1 Twoshort G2 Grogar

12) ajo: Discover R2 Ajo B1 Alpha

13) TwoShort: Build Y2 Twoshort

14) ajo: Sacrifice G3 Ajo
Build R2 Alpha
Build R2 Alpha
Build R3 Ajo

15) TwoShort: Discover Y1 Twoshort Y2 Yellonia

16) ajo: Trade R3 G3 Ajo

17) TwoShort: Sacrifice G3 Twoshort
Build Y2 Yellonia
Build Y3 Twoshort
Build Y3 Grogar

18) ajo: Build R3 Ajo

19) TwoShort: Discover Y2 Yellonia G1 Greenland

20) ajo: Move R3 Ajo Greenland

21) TwoShort: Discover Y2 Greenland B3 Bluestar

22) ajo: Build R3 Ajo

23) TwoShort: Trade Y1 G1 Twoshort

24) ajo: Trade R1 Y1 Ajo

25) TwoShort: Trade Y3 R3 Twoshort

26) ajo: Sacrifice Y1 Ajo
Move R2 Alpha Bluestar

27) TwoShort: Sacrifice Y2 Bluestar
Move Y3 Grogar Alpha
Discover Y1 Grogar Y3 Yolonda

28) ajo: Trade R2 Y2 Bluestar

29) TwoShort: Discover Y1 Yolonda Y1 Yoyodyne

30) ajo: Move Y2 Bluestar Greenland

31) TwoShort: Build Y3 Twoshort

32) ajo: Build R1 Greenland

33) TwoShort: Sacrifice R3 Twoshort
Attack R2 Alpha
Attack R2 Alpha
Pass

34) ajo: Trade R3 B3 Ajo

35) TwoShort: Build G1 Twoshort

36) ajo: Build G2 Ajo
	ajo: For some reason, "trade r3 b3" felt like a really weird move. Like, "waaait, that can't be right, can it?" :) But I think it's what I want to do.

37) TwoShort: Trade G1 B1 Twoshort

38) ajo: Move B3 Ajo Yoyodyne

39) TwoShort: Discover Y1 Yoyodyne B2 Bluonia

40) ajo: Move B3 Yoyodyne Yellonia

41) TwoShort: Discover Y1 Yellonia G1 Grogar

42) ajo: Sacrifice G2 Ajo
Build B1 Yellonia
Build G2 Ajo

43) TwoShort: Build G2 Twoshort

44) ajo: Move B3 Yellonia Grogar

45) TwoShort: Discover Y1 Grogar R2 Rover

46) ajo: Build R3 Ajo

47) TwoShort: Move R2 Alpha Yellonia

48) ajo: Sacrifice Y2 Greenland
Move R3 Greenland Bluonia
Move B3 Grogar Yellonia
	ajo: Well, thanks. :)

49) TwoShort: Sacrifice Y3 Alpha
Discover G2 Twoshort Y2 Yolonda
Discover R2 Yellonia Y3 Yonderboy
Discover Y1 Bluonia Y1 Yoyodyne

50) ajo: Move B3 Yellonia Twoshort

51) TwoShort: Attack B3 Twoshort
	ajo: Ah, I see. You're trying to overwhelm my circuits with complexity. ;)

52) ajo: Move B1 Yellonia Twoshort
Catastrophe Twoshort Blue

53) TwoShort: Sacrifice G2 Yolonda
Build Y2 Rover
Build Y2 Twoshort
	ajo: And it's working. ;p

54) ajo: Move G2 Ajo Yoyodyne

55) TwoShort: Move Y1 Yoyodyne Yonderboy

56) ajo: Build R3 Greenland

57) TwoShort: Trade R2 B2 Alpha

58) ajo: Trade R3 G3 Bluonia

59) TwoShort: Sacrifice B2 Alpha
Trade Y2 G2 Rover
Trade G1 B1 Twoshort

60) ajo: Build G1 Bluonia

61) TwoShort: Build Y2 Rover

62) ajo: Trade G1 B1 Bluonia

63) TwoShort: Sacrifice G2 Rover
Build B1 Twoshort
Build B2 Twoshort

64) ajo: Sacrifice B1 Bluonia
Trade R3 B3 Greenland

65) TwoShort: Move B1 Twoshort Ajo

66) ajo: Move R1 Ajo Twoshort
	ajo: You're making this very difficult... ;)

67) TwoShort: Attack R1 Twoshort
	TwoShort: And here I've been thinking that you were making this very difficult for the last 8 turns or so :) (Before that I just thought I was losing) A yellow monopoly ought to be a walk in the park, and only now am I confident enough to comment on it without fear of jinxing myself :)  I'm still worried I'm missing some way you can stop me, but I don't see it, so...

68) ajo: Move G2 Yoyodyne Rover
	ajo: Ah, yes, it does kind of look like I just lost, doesn't it? Phooey. :p  I saw the yellow monopoly, but I thought I still had a few turns' breathing room. Besides, I was irrationally stuck on the idea that you'd do yellow first and break your yellow monopoly.

69) TwoShort: Attack G2 Rover

70) ajo: Move R3 Ajo Twoshort

71) TwoShort: Sacrifice R1 Twoshort
Attack R3 Twoshort

	ajo: I had an escape if you made the wrong move there, but you didn't make the wrong move. Good game. :)


20599)
Variants: "Hard time"
Started: 2011.8.14, Ended: 2011.8.25
Participants: BloodRumpus (S), kingsamj (N)
Winner: BloodRumpus

1) kingsamj: Homeworld G3 B2 Y3

2) BloodRumpus: Homeworld Y1 B2 G3

3) kingsamj: Build Y1 Kingsamj

4) BloodRumpus: Build G1 Bloodrumpus

5) kingsamj: Trade Y1 G1 Kingsamj

6) BloodRumpus: Trade G3 Y3 Bloodrumpus

7) kingsamj: Discover G1 Kingsamj B1 Avalon

8) BloodRumpus: Build Y1 Bloodrumpus

9) kingsamj: Build Y1 Kingsamj

10) BloodRumpus: Trade Y1 R1 Bloodrumpus

11) kingsamj: Build Y1 Kingsamj

12) BloodRumpus: Build G1 Bloodrumpus

13) kingsamj: Trade Y1 R1 Kingsamj

14) BloodRumpus: Discover G1 Bloodrumpus G3 Sarkovy

15) kingsamj: Build G2 Avalon

16) BloodRumpus: Build G2 Bloodrumpus

17) kingsamj: Trade G2 R2 Avalon

18) BloodRumpus: Build G2 Bloodrumpus

19) kingsamj: Build G2 Avalon

20) BloodRumpus: Sacrifice G2 Bloodrumpus
Build G2 Sarkovy
Build G3 Bloodrumpus

21) kingsamj: Build Y1 Kingsamj

22) BloodRumpus: Trade G1 B1 Bloodrumpus

23) kingsamj: Build G1 Avalon

24) BloodRumpus: Sacrifice B1 Bloodrumpus
Trade G2 Y2 Sarkovy

25) kingsamj: Trade G2 Y2 Avalon

26) BloodRumpus: Sacrifice Y3 Bloodrumpus
Move Y2 Sarkovy Avalon
Move Y2 Avalon Kingsamj
Discover G1 Sarkovy B1 Rigel
Catastrophe Kingsamj Y

27) kingsamj: Move Y2 Avalon Kingsamj

28) BloodRumpus: Build G2 Rigel

29) kingsamj: Trade G1 Y1 Avalon

30) BloodRumpus: Trade G1 Y1 Rigel

31) kingsamj: Build Y2 Kingsamj

32) BloodRumpus: Discover G2 Bloodrumpus Y3 Sirius

33) kingsamj: Move R2 Avalon Sirius

34) BloodRumpus: Sacrifice R1 Bloodrumpus
Attack R2 Sirius

35) kingsamj: Move Y2 Kingsamj Avalon

36) BloodRumpus: Move G2 Sirius Avalon

37) kingsamj: Sacrifice R1 Kingsamj
Attack G2 Avalon

38) BloodRumpus: M G2 Rigel Kingsamj

39) kingsamj: Trade Y2 R2 Kingsamj

40) BloodRumpus: Sacrifice R2 Sirius
Attack R2 Kingsamj
Pass



20608)
Variants: "Hard time"
Started: 2011.8.17, Ended: 2011.10.23
Participants: fnord (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld R1 B2 G3

2) fnord: Homeworld Y1 B3 G3

3) Remneb: Build G1 Remneb

4) fnord: Build G1 Fnord

5) Remneb: Trade G1 Y1 Remneb

6) fnord: Discover G1 Fnord B2 Eris

7) Remneb: Build G1 Remneb

8) fnord: Build G1 Eris

9) Remneb: Trade G1 R1 Remneb

10) fnord: Trade G1 R1 Eris

11) Remneb: Discover R1 Remneb Y3 Sirius

12) fnord: Build G1 Fnord

13) Remneb: Build Y1 Remneb

14) fnord: Build R2 Eris

15) Remneb: Build Y2 Remneb

16) fnord: Trade R2 Y2 Eris

17) Remneb: Move Y2 Remneb Sirius

18) fnord: Build R2 Eris

19) Remneb: Build G1 Remneb

20) fnord: Build G2 Fnord

21) Remneb: Move G1 Remneb Sirius

22) fnord: Trade G2 R2 Fnord

23) Remneb: Build G2 Remneb

24) fnord: Discover G1 Fnord Y2 Discord

25) Remneb: Build Y3 Remneb

26) fnord: Build Y3 Eris

27) Remneb: Sacrifice Y3 Remneb
Move Y2 Sirius Discord
Move G1 Sirius Discord
Move R1 Sirius Discord

28) fnord: Discover G1 Discord B3 Chao

29) Remneb: Build G2 Discord

30) fnord: Build G2 Chao

31) Remneb: Sacrifice Y2 Discord
Move G1 Discord Chao
Move G2 Discord Chao
Catastrophe Chao G

32) fnord: Sacrifice Y2 Eris
Move R2 Eris Fnord
Move R2 Fnord Discord

33) Remneb: Discover R1 Discord Y3 Zarkon

34) fnord: Build Y2 Eris

35) Remneb: Discover Y1 Remneb G3 Altar

	fnord: My apologies for abandoning this game.  I was about to be laid off, and focussed on work and finding a new job, and forgot about the site until recently.
	Remneb: No problem.


20429)
Started: 2011.8.18, Ended: 2011.9.10
Participants: SirRuthvenMurgatroyd (S), lorgar (N)
Winner: SirRuthvenMurgatroyd

1) lorgar: Homeworld B2 Y3 G3

2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3

3) lorgar: Build G1 Lorgar

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) lorgar: Discover G1 Lorgar B1 Celeron

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol

7) lorgar: Build G1 Celeron

8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

9) lorgar: Trade G1 R1 Celeron

10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd



20507)
Variants: "No undo"
Started: 2011.8.18, Ended: 2011.10.14
Participants: ajo (S), lorgar (N)
Winner: ajo

1) lorgar: Homeworld B3 G1 R3

2) ajo: Homeworld Y2 B3 G3

3) lorgar: Build R1 Lorgar

4) ajo: Build G1 Ajo

5) lorgar: Trade R1 G1 Lorgar

6) ajo: Build G2 Ajo

7) lorgar: Build R1 Lorgar

8) ajo: Trade G2 R2 Ajo

9) lorgar: Trade R1 Y1 Lorgar

10) ajo: Discover G1 Ajo B1 Alpha

11) lorgar: Discover G1 Lorgar B2 Barrabas

12) ajo: Build G2 Ajo

13) lorgar: Build G2 Barrabas

14) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G3 Ajo
Build G3 Alpha

15) lorgar: Build G3 Barrabas

16) ajo: Discover G2 Ajo B1 Beta

17) lorgar: Trade G2 R2 Barrabas

18) ajo: Sacrifice G3 Alpha
Build G2 Alpha
Build G3 Beta
Build R1 Ajo

19) lorgar: Build R1 Barrabas

20) ajo: Trade G3 Y3 Beta

21) lorgar: Sacrifice Y1 Lorgar
Discover G1 Barrabas G3 Safe

22) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y1 Beta
Build Y1 Beta

23) lorgar: Trade R1 Y1 Barrabas

24) ajo: Sacrifice Y1 Beta
Discover G1 Alpha B2 Gamma

25) lorgar: Build Y1 Barrabas

26) ajo: Move Y3 Beta Safe

27) lorgar: Build R1 Barrabas
	ajo: I just noticed your time has been up for 3 days. I'll give you another 3 days from this message, and then if you're still MIA, I'll "Force Surrender".
	ajo: I don't think either of us is clearly in a winning or losing position yet, btw.

28) ajo: Sacrifice G2 Alpha
Build G2 Gamma
Build Y2 Beta

29) lorgar: Move Y1 Barrabas Safe

30) ajo: Sacrifice R2 Ajo
Attack Y1 Safe
Attack G1 Safe

31) lorgar: Move G3 Barrabas Beta

32) ajo: Sacrifice Y2 Beta
Move G2 Beta Gamma
Move G1 Gamma Lorgar

33) lorgar: Sacrifice R1 Barrabas
Attack Y1S Beta

34) ajo: Sacrifice Y1 Safe
Move G2 Gamma Lorgar

35) lorgar: Build Y1 Beta

36) ajo: Sacrifice G2 Gamma
Build G2 Lorgar
Build Y2 Safe
Catastrophe Lorgar Green

37) lorgar: Trade Y1 G1 Beta

38) ajo: Discover Y2 Safe B1 Midway

39) lorgar: Discover R2 Barrabas B1 Macteanimo

40) ajo: Trade G2 B2 Ajo

41) lorgar: Trade R2 B2 Macteanimo

42) ajo: Discover B2 Ajo G1 Factor

43) lorgar: Move Y1 Barrabas Beta

44) ajo: Build G2 Ajo

45) lorgar: Trade B2 G2 Macteanimo

46) ajo: Sacrifice G2 Ajo
Build B2 Factor
Build B2 Factor

47) lorgar: Move G1 Beta Safe
	ajo: I believe that's checkmate. Good game!

48) ajo: Sacrifice Y3 Safe
Move B2 Factor Lorgar
Move B2 Factor Lorgar
Move B2 Factor Lorgar
Catastrophe Lorgar Blue
	lorgar: nice game, thanks. rematch?



20412)
Variants: "Hard time"
Started: 2011.8.18, Ended: 2011.9.5
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R3 B2 G3

2) lorgar: Homeworld G3 Y1 B3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build B1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Trade B1 G1 Lorgar

7) SilentTitan: Build Y1 Silenttitan

8) lorgar: Discover G1 Lorgar B2 Barrabas

9) SilentTitan: Build Y2 Silenttitan

10) lorgar: Build B1 Lorgar

11) SilentTitan: Discover Y1 Silenttitan G1 Ville

12) lorgar: Build G1 Barrabas

13) SilentTitan: Discover Y1 Silenttitan B1 Sky

14) lorgar: Discover B1 Lorgar G2 Safe

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sky
Build Y2 Silenttitan
Build Y3 Silenttitan



20624)
Variants: "Hard time"
Started: 2011.8.18, Ended: 2011.9.15
Participants: AdamBadura (S), Subhan64 (N)
Winner: AdamBadura

1) Subhan64: Homeworld B1 R2 G3

2) AdamBadura: Homeworld G3 B1 Y3

3) Subhan64: Build G1 Subhan64

4) AdamBadura: Build Y1 Adambadura

5) Subhan64: Trade G1 Y1 Subhan64

6) AdamBadura: Trade Y1 R1 Adambadura

7) Subhan64: Build Y1 Subhan64

8) AdamBadura: Build Y1 Adambadura

9) Subhan64: Build Y2 Subhan64

10) AdamBadura: Build Y2 Adambadura

11) Subhan64: Discover Y1 Subhan64 Y3 Bigbird

12) AdamBadura: Discover Y2 Adambadura G2 Shipyard

13) Subhan64: Build G1 Subhan64

14) AdamBadura: Build Y2 Shipyard

15) Subhan64: Discover Y1 Subhan64 Y3 Tweety

16) AdamBadura: Build R1 Adambadura

17) Subhan64: Discover Y1 Bigbird G2 Kermit

18) AdamBadura: Discover Y2 Shipyard Y3 Highway

19) Subhan64: Build G1 Subhan64

20) AdamBadura: Trade R1 G1 Adambadura

21) Subhan64: Move G1 Subhan64 Tweety

22) AdamBadura: Build R1 Adambadura

23) Subhan64: Move Y1 Tweety Kermit

24) AdamBadura: Move R1 Adambadura Kermit

25) Subhan64: Sacrifice G1 Tweety
Build Y3 Subhan64

26) AdamBadura: Attack Y1 Kermit

27) Subhan64: Move Y1 Kermit Highway

28) AdamBadura: Build R1 Kermit

29) Subhan64: Trade Y2 R2 Subhan64

30) AdamBadura: Build Y2 Kermit

31) Subhan64: Discover Y1 Highway G2 Moss

32) AdamBadura: Move R1 Kermit Highway

33) Subhan64: Discover G1 Subhan64 B3 Blueberry

34) AdamBadura: Build R2 Kermit

35) Subhan64: Move Y3 Subhan64 Highway

36) AdamBadura: Sacrifice Y3 Adambadura
Move R1 Highway Subhan64
Move R1 Kermit Highway
Move R1 Highway Subhan64
Catastrophe Subhan64 R

37) Subhan64: Move Y3 Highway Moss

38) AdamBadura: Build Y3 Adambadura

	Subhan64: gg, thanks!



20510)
Started: 2011.8.19, Ended: 2011.8.24
Participants: inundator (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) inundator: Homeworld B3 Y1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	inundator: You too! Let the carnage begin!

4) inundator: Build G1 Inundator

5) ts52: Trade G1 Y1 Ts52

6) inundator: Build G1 Inundator

7) ts52: Discover Y1 Ts52 G1 Kermit

8) inundator: Discover G1 Inundator B2 Misspiggy

9) ts52: Build G2 Ts52

10) inundator: Build G2 Misspiggy

11) ts52: Build Y1 Kermit

12) inundator: Sacrifice G3 Inundator
Build G2 Misspiggy
Build G3 Inundator
Build G3 Inundator

13) ts52: Build Y2 Kermit

14) inundator: Trade G2 R2 Misspiggy

15) ts52: Build G2 Ts52

16) inundator: Trade G2 Y2 Misspiggy

17) ts52: Trade G2 R2 Ts52

18) inundator: Move Y2 Misspiggy Kermit
Catastrophe Kermit Yellow

19) ts52: Build R1 Ts52

20) inundator: Move G3 Inundator Misspiggy

21) ts52: Discover G2 Ts52 B1 Gonzo

22) inundator: Trade G1 Y1 Misspiggy

23) ts52: Build G1 Gonzo

24) inundator: Build Y1 Misspiggy

25) ts52: Trade G2 Y2 Gonzo

26) inundator: Discover Y1 Misspiggy G1 Beaker

27) ts52: Build G2 Ts52

28) inundator: Build Y2 Beaker

29) ts52: Build G2 Gonzo

30) inundator: Trade G3 Y3 Misspiggy

31) ts52: Build Y2 Gonzo

32) inundator: Discover Y1 Misspiggy R1 Animal

33) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build Y3 Gonzo

34) inundator: Sacrifice Y3 Misspiggy
Move Y1 Animal Ts52
Move Y2 Beaker Ts52
Move Y1 Beaker Ts52
Catastrophe Ts52 Yellow

35) ts52: Sacrifice Y2 Gonzo
Move G2 Ts52 Inundator
Move G3 Ts52 Inundator
Catastrophe Inundator Green
	ts52: Thanks for the game.



20623)
Variants: "Hard time"
Started: 2011.8.19, Ended: 2011.9.1
Participants: SilentTitan (S), guntz1092 (N)
Winner: SilentTitan

1) guntz1092: Homeworld Y3 G2 R3 *
	SilentTitan: You have to set up your Homeworld first.

	guntz1092: idk how T_T first time.......
	guntz1092: idk how to submit orders*

2) SilentTitan: Homeworld R2 B1 G3
	SilentTitan: ok... really hard to start without blue and green in your homeworld.... do you want to take back the move and start again?

3) guntz1092: Build R1 Guntz1092
	guntz1092: nah im fine. im trying different strategies

4) SilentTitan: Build G1 Silenttitan

5) guntz1092: Build R1 Guntz1092

6) SilentTitan: Trade G1 R1 Silenttitan

7) guntz1092: Discover R1 Guntz1092 B1 Barta1

8) SilentTitan: Build R2 Silenttitan

9) guntz1092: Move R1 Guntz1092 Barta1

10) SilentTitan: Trade R1 Y1 Silenttitan

11) guntz1092: Trade R1 Y1 Barta1

12) SilentTitan: Build Y1 Silenttitan

13) guntz1092: Trade R1 G1 Barta1

14) SilentTitan: Discover Y1 Silenttitan G3 Sol

15) guntz1092: Build Y2 Barta1

16) SilentTitan: Build Y2 Sol

17) guntz1092: Build R1 Guntz1092
	guntz1092: how do i sacrifice right?
	SilentTitan: Ok.  so what ever piece you are sacrificing.  think of that color as a technology you can give to any system and the pip count and the number of usage you have avaliable.  so a G3 would give you the ability to build anywhere 3 times.  however you would still have the constraint of only being able to build ships of the color that already exist in the system. 
	SilentTitan: ..... and the pip count as the number of usage.....
	guntz1092: this is my move;
sacrifice Y2 barta1 move Y1 barta1 sol move G1 barta1 sol
but it says im typing it wrong...

18) SilentTitan: Discover Y1 Sol B1 Sameasy

19) guntz1092: Discover Y2 Barta1 R3 Foie
	SilentTitan: .... seems like you figured the command out.... then decided it was not the best move


20) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Sameasy
Build Y3 Silenttitan
	guntz1092: haha yeah lol

21) guntz1092: Build G1 Barta1

22) SilentTitan: Sacrifice Y2 Sol
Move Y3 Sameasy Guntz1092
Move Y1 Sameasy Guntz1092

23) guntz1092: Attack Y3 Guntz1092

24) SilentTitan: Build Y2 Guntz1092
Catastrophe Guntz1092 Yellow

25) guntz1092: Trade G1 R1 Barta1

26) SilentTitan: Trade Y1 G1 Silenttitan

27) guntz1092: Move R1 Barta1 Foie

28) SilentTitan: Build Y1 Silenttitan

29) guntz1092: Sacrifice Y1 Barta1
Discover R1 Guntz1092 B3 Rabarta

30) SilentTitan: Discover R2 Silenttitan G3 Grass
	guntz1092: if i have a size 2 on one star and u have 2 size 1s on the same star, would I be able to capture the two size 1s?
	guntz1092: if i sac an r2*
	SilentTitan: yes...exactly
	SilentTitan: even if you only had a 1-pip and I had (2) 1-pips you would be able to sack the R2 and do an attack against each one of my ships. 

31) guntz1092: Sacrifice Y2 Foie
Move R1 Foie Silenttitan
Move R1 Rabarta Silenttitan

32) SilentTitan: Sacrifice R2 Grass
Attack R1 Silenttitan North
Attack R1 Silenttitan North

33) guntz1092: Trade G1 Y1 Barta1

34) SilentTitan: Sacrifice Y2 Sol
Discover R1 Silenttitan Y3 Sole
Discover R1 Silenttitan G3 Soul

35) guntz1092: Move Y1 Barta1 Guntz1092

36) SilentTitan: Move G1 Silenttitan Sole

37) guntz1092: Build Y1 Guntz1092

38) SilentTitan: Build G1 Sole

39) guntz1092: Build R1 Guntz1092

40) SilentTitan: Build G1 Sole

41) guntz1092: Move R3 Guntz1092 Sole

42) SilentTitan: Sacrifice Y3 Silenttitan
Move G1 Sole Guntz1092
Move G1 Sole Guntz1092
Move G1 Sole Guntz1092
Catastrophe Guntz1092 Green



20636)
Variants: "Hard time"
Started: 2011.8.19, Ended: 2011.9.6
Participants: SilentTitan (S), guntz1092 (N)
Winner: SilentTitan

1) guntz1092: Homeworld Y3 B2 G3

2) SilentTitan: Homeworld R2 B1 G3

3) guntz1092: Build G1 Guntz1092

4) SilentTitan: Build G1 Silenttitan

5) guntz1092: Discover G1 Guntz1092 Y1 Zonde1

6) SilentTitan: Trade G1 Y1 Silenttitan

7) guntz1092: Build G1 Zonde1

8) SilentTitan: Build Y1 Silenttitan

9) guntz1092: Build G1 Guntz1092

10) SilentTitan: Discover Y1 Silenttitan G3 Sol

11) guntz1092: Trade G1 B1 Guntz1092

12) SilentTitan: Build Y2 Silenttitan

13) guntz1092: Move B1 Guntz1092 Zonde1

14) SilentTitan: Discover Y2 Silenttitan B3 Circle

15) guntz1092: Move G1 Zonde1 Circle

16) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Circle
Build Y3 Silenttitan

17) guntz1092: Build G1 Guntz1092

18) SilentTitan: Build Y3 Sol

19) guntz1092: Build G2 Guntz1092

20) SilentTitan: Trade Y2 G2 Circle

21) guntz1092: Trade G2 Y2 Guntz1092

22) SilentTitan: Sacrifice Y2 Sol
Move Y1 Sol Zonde1
Move Y1 Zonde1 Guntz1092

23) guntz1092: Trade Y2 R2 Guntz1092

24) SilentTitan: Trade G2 R2 Circle

25) guntz1092: Attack Y1 Guntz1092

26) SilentTitan: Trade Y3 G3 Silenttitan

27) guntz1092: Build G2 Zonde1
	SilentTitan: wow... I must have been tired last night.... i missed completely that I was going to sack that g2 and cat your home yellow


28) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Circle
Build Y3 Silenttitan
	guntz1092: lol i noticed that xD

29) guntz1092: Sacrifice G3 Guntz1092
Build G2 Guntz1092
Build G2 Zonde1
Build G3 Circle

30) SilentTitan: Sacrifice Y3 Sol
Discover Y2 Circle R1 Mars
Move R2 Circle Mars
Move Y2 Circle Zonde1

31) guntz1092: Sacrifice Y1 Guntz1092
Move G2 Zonde1 Circle

32) SilentTitan: Sacrifice R2 Mars
Attack G2 Zonde1 North
Attack G1 Zonde1 North

33) guntz1092: Trade G3 Y3 Circle

34) SilentTitan: Trade Y3 G3 Silenttitan

35) guntz1092: Move G1 Guntz1092 Zonde1

36) SilentTitan: Sacrifice G2 Zonde1
Build Y1 Sol
Build Y3 Silenttitan

37) guntz1092: Build G2 Guntz1092

38) SilentTitan: Trade G3 R3 Silenttitan

39) guntz1092: Build G3 Zonde1

40) SilentTitan: Build G3 Zonde1
Catastrophe Zonde1 Green

41) guntz1092: Discover G2 Circle R2 Gifoie

42) SilentTitan: Sacrifice Y2 Sol
Move R3 Silenttitan Sol
Move R3 Sol Zonde1

43) guntz1092: Build Y2 Circle

44) SilentTitan: Trade Y3 G3 Silenttitan

45) guntz1092: Move Y2 Circle Silenttitan

46) SilentTitan: Build Y3 Silenttitan

47) guntz1092: Move Y3 Circle Silenttitan

48) SilentTitan: Sacrifice Y3 Silenttitan
Move Y2 Mars Guntz1092
Move Y2 Zonde1 Guntz1092
Move Y1 Sol Silenttitan
Catastrophe Silenttitan Yellow

49) guntz1092: Attack Y2 Guntz1092

50) SilentTitan: Sacrifice R3 Zonde1
Attack R2 Guntz1092 North
Attack G2 Guntz1092 North
Attack G2 Guntz1092 Notrh

51) guntz1092: Move B1 Zonde1 Guntz1092

52) SilentTitan: Sacrifice R2 Guntz1092
Attack Y2 Guntz1092 North
Attack B1 Guntz1092 North

	SilentTitan: Thank you


20637)
Variants: "Hard time"
Started: 2011.8.19, Ended: 2011.8.24
Participants: SilentTitan (S), caru (N)
Winner: SilentTitan

1) caru: Homeworld Y2 B1 G3

2) SilentTitan: Homeworld R3 B2 G3

3) caru: Build G1 Caru

4) SilentTitan: Build G1 Silenttitan

5) caru: Discover G1 Caru R3 Alpha

6) SilentTitan: Trade G1 Y1 Silenttitan

7) caru: Build G1 Caru

8) SilentTitan: Build Y1 Silenttitan

9) caru: Build G1 Caru

10) SilentTitan: Build G2 Silenttitan

11) caru: Trade G3 R3 Caru

12) SilentTitan: Discover G2 Silenttitan Y1 Sol

13) caru: Build G2 Alpha

14) SilentTitan: Discover Y1 Silenttitan B1 Dogstar

15) caru: Build G2 Caru

16) SilentTitan: Sacrifice G3 Silenttitan
Build G3 Sol
Build G3 Sol
Build Y2 Dogstar
	caru: HEY SilentTitan, are you interested in playing a live session of Homeworlds on VASSAL?
	SilentTitan: could be ... what's VASSAL?

17) caru: Trade G2 Y2 Caru
	caru: VASSALengine is a java program which allows you to play online (real-time or email) all sort of board/dice/card games for which a module has been written (there are hundreds). It happens that a guy wrote a PiecePack module which includes IceHouse pyramids, so you can place pyramids on a virtual board (empty, chess or whatever) and rotate/move/stack/nest them as you like. Of course this board is shared with the other players.
I tested it alone and find it not complicated at all, should be fun, and you can virtually play all icehouse/piecepack games. Please let me know if you are interested. And if you need more info to get started quickly, just let me know that too ;)
1) download vassal for your platform
2) download piecepack module latest version
3) open it from file menu (select "show all files" to see it)
4) select "new offline game" from the wizard and start test moving pyramids around

http://www.vassalengine.org
http://www.vassalengine.org/wiki/Module:Piecepack

18) SilentTitan: Sacrifice G3 Sol
Build Y3 Silenttitan
Build Y3 Silenttitan
Build Y3 Dogstar

19) caru: Discover G1 Caru G3 Beta
	SilentTitan: Ok.. thanks .... I will check that out and let you know

	caru: cool :)

i made some confusion though... let me fix it
1) download vassal for your platform
2) download piecepack module latest version
2a) open vassal
3) open the module from file menu (select "show all files" to see it)
4) select "new offline game" from the wizard and start test moving pyramids around (you have to select "icehouse" in the toolbar to see pyramids and available colors)

hope it's clearer now

20) SilentTitan: Trade Y3 B3 Silenttitan

21) caru: Discover G1 Caru Y3 Gamma

22) SilentTitan: Sacrifice Y3 Dogstar
Discover Y1 Dogstar B3 Bark
Move Y2 Dogstar Gamma
Move G2 Sol Silenttitan

23) caru: Discover Y2 Caru Y3 Theta

24) SilentTitan: Trade Y1 R1 Silenttitan

25) caru: Sacrifice G1 Alpha
Build R1 Caru

26) SilentTitan: Sacrifice G3 Sol
Build Y1 Bark
Build Y1 Bark
Build B1 Silenttitan

27) caru: Sacrifice G2 Alpha
Build R1 Caru
Build R2 Caru

28) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Bark Caru
Move Y1 Bark Caru
Move Y1 Bark Caru
Catastrophe Caru Yellow

29) caru: Sacrifice Y2 Theta
Move R1 Caru Silenttitan
Move R1 Caru Silenttitan
Catastrophe Silenttitan R
	SilentTitan: ok.. so that's an error you can't recover from ... because you already undid your move.  However you should know that any one can call Catastrophe once there is four of any one color in a system. 
	SilentTitan: I'm going to go ahead and do the move like I had planned ... so you can see some stuph you wouldn't normally see in one of your early games


30) SilentTitan: Trade B3 R3 Silenttitan
	caru: Thanks, yep, I saw it too late... that's why I undid and get some friends home. Was there anything better I could have done?
	caru: Ah wait, now I remember why I thought that move in the first place... :)

31) caru: Trade R2 G2 Caru
	caru: And yes, this is my first game, so I only managed to plan the trap after you sacrificed your big green ship to get the two yellow ones. That's probably why I then immediately managed to forgot how the trap was supposed to work... :)

32) SilentTitan: Build B1 Silenttitan

	caru: gg SilentTitan!


20638)
Variants: "No undo, Hard time"
Started: 2011.8.19, Ended: 2011.8.21
Participants: guntz1092 (S), thejackdiaz (N)
Winner: thejackdiaz

1) thejackdiaz: Homeworld G3 B1 Y3

2) guntz1092: Homeworld Y3 G2 R3 *

3) thejackdiaz: Build Y1 Thejackdiaz

4) guntz1092: Build R1 Guntz1092

5) thejackdiaz: Trade Y1 R1 Thejackdiaz

6) guntz1092: Build R1 Guntz1092

7) thejackdiaz: Build R2 Thejackdiaz

8) guntz1092: Discover R1 Guntz1092 B1 Domingo7

9) thejackdiaz: Trade R1 B1 Thejackdiaz

10) guntz1092: Trade R1 G1 Domingo7

11) thejackdiaz: Build B2 Thejackdiaz

12) guntz1092: Build G1 Domingo7

13) thejackdiaz: Trade B2 Y2 Thejackdiaz

14) guntz1092: Build G1 Domingo7

15) thejackdiaz: Discover Y2 Thejackdiaz G2 Alpha

16) guntz1092: Build G2 Domingo7

17) thejackdiaz: Move B1 Thejackdiaz Alpha
Catastrophe Domingo7 Green

18) guntz1092: Discover R1 Guntz1092 B1 Barta1

19) thejackdiaz: Build B2 Alpha

20) guntz1092: Trade R1 G1 Barta1

21) thejackdiaz: Trade B2 G2 Alpha

22) guntz1092: Build G1 Barta1

23) thejackdiaz: Discover G2 Alpha Y1 Beta

24) guntz1092: Trade G1 Y1 Barta1

25) thejackdiaz: Build B2 Alpha

26) guntz1092: Build Y1 Barta1

27) thejackdiaz: Build G1 Beta

28) guntz1092: Move Y1 Barta1 Guntz1092

29) thejackdiaz: Trade B2 Y2 Alpha

30) guntz1092: Build R1 Guntz1092

31) thejackdiaz: Build G1 Beta

32) guntz1092: Discover Y1 Barta1 R2 Gifoie

33) thejackdiaz: Sacrifice G2 Beta
Build Y2 Alpha
Build Y3 Thejackdiaz

34) guntz1092: Build G2 Barta1

35) thejackdiaz: Build G3 Beta

36) guntz1092: Move R3 Guntz1092 Beta

37) thejackdiaz: Sacrifice R2 Thejackdiaz
Attack R3 Beta
Pass

38) guntz1092: Trade G1 R1 Barta1

39) thejackdiaz: Move R3 Beta Guntz1092

40) guntz1092: Build R1 Guntz1092

41) thejackdiaz: Attack Y1 Guntz1092

42) guntz1092: Build R2 Guntz1092 Catastrophe Guntz1092 R

43) thejackdiaz: Pass
Catastrophe Guntz1092 Red



20584)
Variants: "Hard time"
Started: 2011.8.21, Ended: 2011.9.21
Participants: caru (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld R1 B2 G3
	caru: HEY Jesse, maybe are you also interested in playing a live session of Homeworlds on VASSAL? 
	Jesse: Perhaps. I'm not familiar with it.

2) caru: Homeworld Y3 B2 G3
	caru: Great... I've posted some info about it to another player here http://superdupergames.org/main.html?page=play_homeworlds&num=20637

3) Jesse: Build G1 Jesse

4) caru: Build G1 Caru

5) Jesse: Trade G1 Y1 Jesse

6) caru: Build G1 Caru

7) Jesse: Build G1 Jesse

8) caru: Trade G1 Y1 Caru

9) Jesse: Build Y1 Jesse

10) caru: Build Y2 Caru

11) Jesse: Build Y2 Jesse

12) caru: Discover Y1 Caru G1 Freedom

13) Jesse: Trade Y1 R1 Jesse

14) caru: Build G2 Caru

15) Jesse: Discover R1 Jesse G3 Goober

16) caru: Discover G1 Caru Y1 Mizar

17) Jesse: Move Y1 Jesse Goober

18) caru: Sacrifice G3 Caru
Build G2 Caru
Build G2 Mizar
Build G3 Caru

19) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y2 Jesse
Build Y3 Goober

20) caru: Trade G2 R2 Caru

21) Jesse: Build Y3 Jesse



20622)
Started: 2011.8.21, Ended: 2011.10.4
Participants: SirRuthvenMurgatroyd (S), caru (N)
Winner: SirRuthvenMurgatroyd

1) caru: Homeworld Y1 B2 G3

2) SirRuthvenMurgatroyd: Homeworld Y3 B2 G3

3) caru: Build G1 Caru

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) caru: Discover G1 Caru R3 Alpha

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol
	caru: HEY SirRuthvenMurgatroyd, maybe are you also interested in playing a live session of Homeworlds on VASSAL? 

7) caru: Build G1 Caru

8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

9) caru: Sacrifice G3 Caru
Build G2 Alpha
Build G2 Caru
Build G3 Caru

10) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd

11) caru: Trade G2 Y2 Caru

12) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd

13) caru: Discover G1 Caru Y3 Beta

14) SirRuthvenMurgatroyd: Build G2 Sol

15) caru: Build G3 Caru

16) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd

17) caru: Build G2 Beta

18) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y1 Gamma

19) caru: Build Y2 Caru

20) SirRuthvenMurgatroyd: Sacrifice G2 Sol
Build Y2 Sirruthvenmurgatroyd
Build G2 Sol

21) caru: Trade Y2 B2 Caru

22) SirRuthvenMurgatroyd: Discover G3 Gamma B3 Delta

23) caru: Move Y2 Caru Alpha

24) SirRuthvenMurgatroyd: Sacrifice G2 Sol
Build G2 Sol
Build R1 Sirruthvenmurgatroyd



20645)
Variants: "No undo, Hard time"
Started: 2011.8.22, Ended: 2011.8.30
Participants: guntz1092 (S), thejackdiaz (N)
Winner: thejackdiaz

1) thejackdiaz: Homeworld B2 Y1 G3

2) guntz1092: Homeworld R3 B2 G3
	guntz1092: it wont let me make a home star
	guntz1092: it says "There are no 3B pieces left in the stash to take."

3) thejackdiaz: Build G1 Thejackdiaz

4) guntz1092: Build G1 Guntz1092

5) thejackdiaz: Trade G1 R1 Thejackdiaz

6) guntz1092: Build G1 Guntz1092
	guntz1092: idk how to sacrifice right...this is from another game:
sacrifice Y2 barta1 move Y1 barta1 sol move G1 barta1 sol 
barta1 and sol being stars

7) thejackdiaz: Build G1 Thejackdiaz

8) guntz1092: Trade G1 Y1 Guntz1092

9) thejackdiaz: Discover G1 Thejackdiaz Y3 Alpha

10) guntz1092: Discover G1 Guntz1092 Y1 Zonde

11) thejackdiaz: Build G1 Alpha

12) guntz1092: Build G2 Zonde

13) thejackdiaz: Move G1 Alpha Thejackdiaz

14) guntz1092: Build Y2 Guntz1092

15) thejackdiaz: Trade G1 B1 Thejackdiaz

16) guntz1092: Build Y2 Guntz1092

17) thejackdiaz: Build B1 Thejackdiaz

18) guntz1092: Discover Y2 Guntz1092 R1 Foie

19) thejackdiaz: Move B1 Thejackdiaz Alpha

20) guntz1092: Trade Y2 R2 Guntz1092

21) thejackdiaz: Build B1 Alpha

22) guntz1092: Build Y2 Guntz1092

23) thejackdiaz: Discover B1 Alpha G1 Beta

24) guntz1092: Move G2 Zonde Alpha

25) thejackdiaz: Sacrifice G3 Thejackdiaz
Build B2 Beta
Build B3 Alpha
Build B3 Thejackdiaz

26) guntz1092: Sacrifice R2 Guntz1092
Attack G1 Alpha
Attack B1 Alpha

27) thejackdiaz: Trade B3 G3 Thejackdiaz

28) guntz1092: Move B1 Alpha Beta

29) thejackdiaz: Trade B2 R2 Beta

30) guntz1092: Trade B1 R1 Beta

31) thejackdiaz: Attack R1S Beta

32) guntz1092: Trade Y2 R2 Guntz1092

33) thejackdiaz: Sacrifice R1 Beta
Attack G2 Alpha

34) guntz1092: Sacrifice G3 Guntz1092
Build G2 Alpha
Build G2 Zonde
Build Y2 Foie

35) thejackdiaz: Build G3 Thejackdiaz

36) guntz1092: Sacrifice Y2 Foie
Move G1 Alpha Thejackdiaz
Move G2 Alpha Thejackdiaz
Catastrophe Thejackdiaz Green

37) thejackdiaz: Move B3 Alpha Thejackdiaz

38) guntz1092: Move G2 Zonde Guntz1092

39) thejackdiaz: Trade B3 G3 Thejackdiaz

40) guntz1092: Build G1 Zonde

41) thejackdiaz: Build B1 Thejackdiaz

42) guntz1092: Build G2 Guntz1092

43) thejackdiaz: Build G3 Thejackdiaz

44) guntz1092: Build G3 Guntz1092

45) thejackdiaz: Move B1 Thejackdiaz Alpha

46) guntz1092: Trade G2 B2 Guntz1092

47) thejackdiaz: Sacrifice G3 Thejackdiaz
Build B3 Thejackdiaz
Build B3 Alpha
Build B3 Beta

48) guntz1092: Move B2 Guntz1092 Zonde

49) thejackdiaz: Trade B1 R1 Thejackdiaz

50) guntz1092: Build B1 Zonde

51) thejackdiaz: Move R1 Thejackdiaz Alpha

52) guntz1092: Sacrifice G2 Guntz1092
Build Y2 Foie
Build G2 Guntz1092

53) thejackdiaz: Sacrifice G3 Thejackdiaz
Build R2 Thejackdiaz
Build R3 Alpha
Build R3 Beta

54) guntz1092: Sacrifice Y2 Foie
Move B1 Zonde Alpha
Move B1 Alpha Thejackdiaz

55) thejackdiaz: Trade B3 Y3 Thejackdiaz

56) guntz1092: Move R2 Guntz1092 Zonde

57) thejackdiaz: Move R3 Alpha Zonde

58) guntz1092: Move Y2 Foie Alpha

59) thejackdiaz: Sacrifice R2 Beta
Attack R2S Zonde
Attack Y2S Alpha

60) guntz1092: Move Y1 Guntz1092 Zonde

61) thejackdiaz: Sacrifice Y2 Alpha
Move R3 Beta Guntz1092
Move B3 Beta Guntz1092

62) guntz1092: Sacrifice G3 Guntz1092
Build Y2 Zonde
Build Y2 Zonde
Build B3 Thejackdiaz
Catastrophe Zonde Yellow

63) thejackdiaz: Attack G2S Guntz1092



20649)
Started: 2011.8.24, Ended: 2011.11.1
Participants: SirRuthvenMurgatroyd (S), inundator (N)
Winner: SirRuthvenMurgatroyd

1) inundator: Homeworld Y1 B2 G3

2) SirRuthvenMurgatroyd: Homeworld B2 Y3 G3
	inundator: Hello and have fun.
	SirRuthvenMurgatroyd: Hello.  You too!

3) inundator: Build G1 Inundator

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) inundator: Discover G1 Inundator B3 Cthulu

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol

7) inundator: Build G1 Inundator

8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

9) inundator: Trade G1 Y1 Inundator

10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd

11) inundator: Build Y2 Inundator

12) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

13) inundator: Discover Y1 Inundator Y3 Yog-sothoth

14) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd

15) inundator: Build Y2 Inundator

16) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Big Yellow

17) inundator: Trade Y2 R2 Inundator

18) SirRuthvenMurgatroyd: Build G1 Big

19) inundator: Move R2 Inundator Big

20) SirRuthvenMurgatroyd: Move G1 Big Inundator

21) inundator: Attack G1 Big

22) SirRuthvenMurgatroyd: Build G2 Inundator

23) inundator: Sacrifice R2 Big
Attack G2 Inundator
Attack G1 Inundator

24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

25) inundator: Sacrifice G3 Inundator
Build G2 Big
Build G3 Cthulu
Build G3 Inundator

26) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y1 Yellow

27) inundator: Trade G1 R1 Inundator

28) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd

29) inundator: Sacrifice G3 Inundator
Build G1 Big
Build G3 Inundator
Build R1 Inundator

30) SirRuthvenMurgatroyd: Move R1 Sirruthvenmurgatroyd Yellow

31) inundator: Sacrifice Y2 Inundator
Move G3 Cthulu Yellow
Move G3 Yellow Sirruthvenmurgatroyd

32) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd

33) inundator: Sacrifice R1 Inundator
Attack R2 Sirruthvenmurgatroyd

34) SirRuthvenMurgatroyd: Attack R2N Sirruthvenmurgatroyd

35) inundator: Sacrifice G3 Inundator
Build G3 Inundator
Build R1 Inundator
Build Y2 Yog-sothoth

36) SirRuthvenMurgatroyd: Build R2 Yellow

37) inundator: Move R1 Inundator Yog-sothoth

38) SirRuthvenMurgatroyd: Move G3 Yellow Yog-sothoth

39) inundator: Discover R1 Yog-sothoth B1 Yellowking

40) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd
Attack Y2N Yog-sothoth
Attack Y1N Yog-sothoth

41) inundator: Sacrifice R1 Yellowking
Attack R2 Sirruthvenmurgatroyd

42) SirRuthvenMurgatroyd: Sacrifice R1 Yellow
Attack R2N Sirruthvenmurgatroyd

43) inundator: Discover G2 Big B1 Hastur

44) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

45) inundator: Trade G2 R2 Hastur

46) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd

47) inundator: Sacrifice R2 Hastur
Attack R2 Sirruthvenmurgatroyd
Attack R1 Sirruthvenmurgatroyd

48) SirRuthvenMurgatroyd: Sacrifice R2 Yellow
Attack R2N Sirruthvenmurgatroyd
Attack R1N Sirruthvenmurgatroyd

49) inundator: Trade G1 Y1 Cthulu

50) SirRuthvenMurgatroyd: Build G1 Yog-sothoth

51) inundator: Discover Y1 Cthulu B1 Rats

52) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd
Move G3 Yog-sothoth Inundator
Move G1 Yog-sothoth Inundator
Catastrophe Inundator G

53) inundator: Move Y1 Rats Yog-sothoth
Catastrophe Yog-sothoth Yellow

54) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

55) inundator: T G3 B3 Sirruthvenmurgatroyd

56) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

57) inundator: Move G1 Big Inundator

58) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd

59) inundator: Discover B3 Sirruthvenmurgatroyd Y1 Whisperer

60) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd
Build B1 Sirruthvenmurgatroyd
Build B1 Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd B

61) inundator: Move B3 Whisperer Big

62) SirRuthvenMurgatroyd: Move G2 Sirruthvenmurgatroyd Inundator

63) inundator: Move B3 Big Inundator

64) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd
Attack R1N Inundator
Attack G1N Inundator

65) inundator: Build G1 Big

66) SirRuthvenMurgatroyd: Trade G1 B1 Inundator

67) inundator: Trade B3 R3 Inundator

68) SirRuthvenMurgatroyd: Sacrifice G2 Inundator
Build R1 Inundator
Build R2 Inundator
Catastrophe Inundator R
	inundator: Good game. Thanks.



20639)
Variants: "Hard time"
Started: 2011.8.24, Ended: 2011.9.13
Participants: SilentTitan (S), caru (N)
Winner: SilentTitan

1) caru: Homeworld Y1 B2 G3
	caru: gg

2) SilentTitan: Homeworld R3 B2 G3

3) caru: Build G1 Caru

4) SilentTitan: Build G1 Silenttitan

5) caru: Trade G1 Y1 Caru

6) SilentTitan: Trade G3 Y3 Silenttitan

7) caru: Build G1 Caru

8) SilentTitan: Build Y1 Silenttitan

9) caru: Discover Y1 Caru G3 Alpha

10) SilentTitan: Build Y2 Silenttitan

11) caru: Build Y2 Alpha

12) SilentTitan: Discover Y1 Silenttitan G1 Sun

13) caru: Discover Y1 Alpha G2 Mizar

14) SilentTitan: Discover Y2 Silenttitan B1 Sink

15) caru: Discover G1 Caru Y3 Betelgeuse

16) SilentTitan: Build G2 Silenttitan

17) caru: Build G2 Caru

18) SilentTitan: Sacrifice G2 Silenttitan
Build Y2 Silenttitan
Build Y3 Sink

19) caru: Sacrifice G3 Caru
Build G2 Betelgeuse
Build G3 Caru
Build G3 Caru

20) SilentTitan: Sacrifice Y3 Silenttitan
Move G1 Silenttitan Sun
Move G1 Sun Alpha
Move G1 Alpha Caru
Catastrophe Caru Green
	caru: gg!



20675)
Started: 2011.8.24, Ended: 2011.11.22
Participants: caru (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3
	ts52: Have a good game.

2) caru: Homeworld B1 Y2 G3

3) ts52: Build G1 Ts52

4) caru: Build G1 Caru

5) ts52: Trade G1 B1 Ts52

6) caru: Trade G3 B3 Caru

7) ts52: Build B2 Ts52

8) caru: Build B2 Caru

9) ts52: Discover B2 Ts52 G2 Kermit

10) caru: Trade B3 Y3 Caru

11) ts52: Trade B2 Y2 Kermit

12) caru: Build B2 Caru

13) ts52: Move B1 Ts52 Kermit

14) caru: Discover B2 Caru G3 Alpha

15) ts52: Build G1 Ts52

16) caru: Build Y1 Caru

17) ts52: Build Y1 Kermit

18) caru: Trade Y3 G3 Caru

19) ts52: Build Y1 Kermit

20) caru: Build Y2 Caru

21) ts52: Discover Y2 Kermit B3 Gonzo

22) caru: Discover Y1 Caru B3 Pamali

23) ts52: Move Y1 Kermit Gonzo

24) caru: Discover B2 Caru R3 Nali

25) ts52: Build Y3 Kermit

26) caru: Discover Y2 Caru R3 Zazaza

27) ts52: Trade Y3 R3 Kermit

28) caru: Sacrifice G3 Caru
Build Y3 Pamali
Build Y3 Zazaza
Build B2 Alpha

29) ts52: Move R3 Kermit Alpha

30) caru: Sacrifice B2 Nali
Trade Y3 G3 Zazaza
Trade Y3 R3 Pamali

31) ts52: Attack B2 Alpha

32) caru: Build Y3 Zazaza

33) ts52: Build Y3 Kermit

34) caru: Sacrifice B2 Alpha
Trade Y3 B3 Zazaza
Trade Y2 G2 Zazaza

35) ts52: Move Y1 Kermit Alpha



20676)
Variants: "Hard time"
Started: 2011.8.24, Ended: 2011.9.6
Participants: Aristos (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y2 B1 G3
	ts52: Have a good game!

2) Aristos: Homeworld G3 B2 Y3

3) ts52: Build G1 Ts52

4) Aristos: Build Y1 Aristos

5) ts52: Discover G1 Ts52 B3 Grover
	Aristos: You as well.

6) Aristos: Trade Y1 R1 Aristos

7) ts52: Build G1 Ts52

8) Aristos: Build Y1 Aristos

9) ts52: Build G1 Grover

10) Aristos: Trade Y3 G3 Aristos

11) ts52: Build G2 Grover



20686)
Started: 2011.8.25, Ended: 2011.9.13
Participants: kingsamj (S), BloodRumpus (N)
Winner: BloodRumpus

1) BloodRumpus: Homeworld B2 R3 G3

2) kingsamj: Homeworld R3 B2 G3

3) BloodRumpus: Build G1 Bloodrumpus

4) kingsamj: Build G1 Kingsamj

5) BloodRumpus: Trade G1 Y1 Bloodrumpus

6) kingsamj: Build G1 Kingsamj

7) BloodRumpus: Build Y1 Bloodrumpus

8) kingsamj: Trade G3 Y3 Kingsamj

9) BloodRumpus: Trade Y1 B1 Bloodrumpus

10) kingsamj: Build Y1 Kingsamj

11) BloodRumpus: Build B1 Bloodrumpus

12) kingsamj: Trade G1 B1 Kingsamj

13) BloodRumpus: Discover B1 Bloodrumpus G1 Vulcan

14) kingsamj: Move B1 Kingsamj Vulcan

15) BloodRumpus: Build B2 Vulcan

16) kingsamj: Trade B1 R1 Vulcan

17) BloodRumpus: Trade B2 R2 Vulcan

18) kingsamj: Sacrifice Y1 Kingsamj
Discover R1 Vulcan G3 Solara

19) BloodRumpus: Discover B1 Bloodrumpus G1 Praxis

20) kingsamj: Build G2 Kingsamj

21) BloodRumpus: Build G2 Bloodrumpus

22) kingsamj: Build Y1 Kingsamj

23) BloodRumpus: Discover G2 Bloodrumpus Y1 Zanzibar

24) kingsamj: Discover G2 Kingsamj R1 Sienna

25) BloodRumpus: Trade Y1 B1 Bloodrumpus

26) kingsamj: Sacrifice G2 Sienna
Build G2 Kingsamj
Build R1 Solara

27) BloodRumpus: Sacrifice G3 Bloodrumpus
Build B2 Bloodrumpus
Build B3 Vulcan
Build B3 Praxis

28) kingsamj: Discover G1 Kingsamj Y1 Tundra

29) BloodRumpus: Trade B3 G3 Vulcan

30) kingsamj: Move Y1 Kingsamj Tundra

31) BloodRumpus: Trade B2 Y2 Bloodrumpus

32) kingsamj: Build Y2 Kingsamj

33) BloodRumpus: Sacrifice Y2 Bloodrumpus
Move B3 Praxis Kingsamj
Move G3 Vulcan Kingsamj

34) kingsamj: Attack G3 Kingsamj

35) BloodRumpus: Sacrifice R2 Vulcan
Attack Y3 Kingsamj
Attack G3 Kingsamj

36) kingsamj: Build G2 Tundra

37) BloodRumpus: Attack G2 Kingsamj

38) kingsamj: Move G2 Tundra Bloodrumpus

39) BloodRumpus: Attack Y2 Kingsamj

	kingsamj: the way you won this game was totally awesome


20667)
Variants: "Hard time"
Started: 2011.8.26, Ended: 2011.10.27
Participants: agentofchaos (S), alexcobo (N)
Winner: agentofchaos

1) alexcobo: Homeworld G3 B2 Y3

2) agentofchaos: H R3 B1 G3
	alexcobo: Have a good game!

3) alexcobo: Build Y1 Alexcobo
	agentofchaos: You too!

4) agentofchaos: Build G1 Agentofchaos

5) alexcobo: Build Y1 Alexcobo

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) alexcobo: Discover Y1 Alexcobo G1 Uno

8) agentofchaos: Build Y2 Agentofchaos

9) alexcobo: Build Y2 Uno

10) agentofchaos: Trade Y2 G2 Agentofchaos

11) alexcobo: Build Y2 Uno

12) agentofchaos: Build G1 Agentofchaos

13) alexcobo: Trade Y1 B1 Alexcobo

14) agentofchaos: Discover G2 Agentofchaos Y2 Grrindah

15) alexcobo: Sacrifice B1 Alexcobo
Trade Y2 G2 Uno

16) agentofchaos: Trade G1 R1 Agentofchaos

17) alexcobo: Build G1 Uno

18) agentofchaos: Move G2 Grrindah Uno
Catastrophe Uno G

19) alexcobo: Build Y1 Alexcobo

20) agentofchaos: B R1 Agentofchaos

21) alexcobo: Build Y1 Alexcobo

22) agentofchaos: Build Y2 Agentofchaos

23) alexcobo: Discover Y1 Alexcobo G1 Uno

24) agentofchaos: Discover Y2 Agentofchaos G2 Wopolsa

25) alexcobo: Build Y2 Uno

26) agentofchaos: Build Y2 Wopolsa

27) alexcobo: Trade Y1 G1 Alexcobo

28) agentofchaos: Move Y2 Wopolsa Uno

29) alexcobo: Discover Y2 Uno R3 Dos

30) agentofchaos: Sacrifice R1 Agentofchaos
Attack Y1 Uno

31) alexcobo: Build G1 Alexcobo

32) agentofchaos: Build G2 Agentofchaos

33) alexcobo: Trade G1 R1 Alexcobo

34) agentofchaos: Sacrifice G2 Agentofchaos
Build Y1 Agentofchaos
Build Y3 Wopolsa

35) alexcobo: Sacrifice G1 Alexcobo
Build Y3 Dos

36) agentofchaos: Sacrifice Y2 Uno
Move Y2 Wopolsa Dos
Move Y1 Uno Dos
Catastrophe Dos Y

37) alexcobo: Build R1 Alexcobo

38) agentofchaos: Build R2 Agentofchaos

39) alexcobo: Discover R1 Alexcobo B1 Uno

40) agentofchaos: Discover R2 Agentofchaos Y2 Grrindah

41) alexcobo: Build R2 Alexcobo

42) agentofchaos: Trade R1 B1 Agentofchaos

43) alexcobo: Trade R1 G1 Uno

44) agentofchaos: Move R2 Grrindah Uno

45) alexcobo: Build Y1 Alexcobo

46) agentofchaos: Build Y2 Wopolsa



20707)
Started: 2011.8.29, Ended: 2011.10.6
Participants: ts52 (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y2 G3

2) ts52: Homeworld Y3 B1 G3

3) lorgar: Build G1 Lorgar

4) ts52: Build G1 Ts52

5) lorgar: Trade G1 B1 Lorgar
	ts52: Have a good game!
	lorgar: thx, sorry for the lag, I was out of the loop for a week (lack of internet access)

6) ts52: Discover G1 Ts52 B2 Grover

7) lorgar: Discover B1 Lorgar G3 Lormec

8) ts52: Build G1 Grover

9) lorgar: Build B2 Lormec

10) ts52: Trade G1 Y1 Grover

11) lorgar: Trade B1 Y1 Lormec

12) ts52: Build G1 Ts52

13) lorgar: Build B1 Lormec

14) ts52: Trade G1 R1 Ts52

15) lorgar: Trade B2 R2 Lormec

16) ts52: Build G1 Ts52

17) lorgar: Build R1 Lormec

18) ts52: Build R1 Ts52

19) lorgar: Move R2 Lormec Grover

20) ts52: Sacrifice Y1 Grover
Discover G1 Grover B3 Gonzo

21) lorgar: Build R2 Lormec

22) ts52: Build G1 Gonzo

23) lorgar: Build B2 Lormec

24) ts52: Build G2 Gonzo

25) lorgar: Build G2 Lorgar

26) ts52: Trade G2 Y2 Gonzo

27) lorgar: Discover B2 Lormec R2 Cemrol

28) ts52: Discover R1 Ts52 Y2 Zoe

29) lorgar: Trade R2 G2 Grover

30) ts52: Move G1 Gonzo Zoe

31) lorgar: Move R2 Lormec Zoe

32) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build Y1 Gonzo

33) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build B2 Cemrol
Build B3 Lormec

34) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Zoe
Build R3 Ts52

35) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build B3 Cemrol
Build R3 Lormec

36) ts52: Sacrifice Y2 Gonzo
Move R1 Zoe Lormec
Move R2 Zoe Lormec
Catastrophe Lormec Red

37) lorgar: Attack G1S Zoe

38) ts52: Move R3 Ts52 Grover

39) lorgar: Sacrifice Y1 Lormec
Move G2 Grover Ts52

40) ts52: Trade G1 R1 Ts52

41) lorgar: Sacrifice G2 Lorgar
Build G1 Ts52
Build G2 Ts52
Catastrophe Ts52 Green

42) ts52: Trade R1 G1 Ts52

43) lorgar: Move R2 Zoe Ts52

44) ts52: Sacrifice Y1 Gonzo
Move R3 Grover Ts52
	ts52: Well crap! Well played.

45) lorgar: Sacrifice G1 Zoe
Build R1 Ts52
Catastrophe Ts52 Red

46) ts52: Build G1 Ts52

47) lorgar: Sacrifice B2 Cemrol
Trade B2 R2 Cemrol
Trade B1 Y1 Lormec

48) ts52: Build G2 Ts52

49) lorgar: Sacrifice Y1 Lormec
Move B3 Cemrol Ts52

50) ts52: Trade G2 B2 Ts52

51) lorgar: Trade B3 R3 Ts52

52) ts52: Build G2 Ts52

53) lorgar: Sacrifice R2 Cemrol
Attack B2S Ts52
Attack G2S Ts52

54) ts52: Trade G1 R1 Ts52

55) lorgar: Sacrifice R3 Ts52
Attack R1S Ts52
Attack G1S Ts52
Pass

	ts52: Well played. Thanks for the game!


20681)
Variants: "Hard time"
Started: 2011.9.1, Ended: 2011.9.5
Participants: caru (S), daselva (N)
Winner: daselva

1) daselva: Homeworld B1 R2 G3

2) caru: Homeworld B1 Y3 G3

3) daselva: Build G1 Daselva

	caru: strange, i think to remember that all my games were reported to have at least 5 days of time for my turn to end...


20777)
Started: 2011.9.6, Ended: 2011.11.22
Participants: guntz1092 (S), thejackdiaz (N)
Winner: thejackdiaz

1) thejackdiaz: Homeworld G3 B1 R3

2) guntz1092: Homeworld B3 G2 Y3

3) thejackdiaz: Build R1 Thejackdiaz

4) guntz1092: Build Y1 Guntz1092

5) thejackdiaz: Trade R3 Y3 Thejackdiaz

6) guntz1092: Build Y1 Guntz1092

7) thejackdiaz: Build R1 Thejackdiaz

8) guntz1092: Trade Y1 G1 Guntz1092

9) thejackdiaz: Discover R1 Thejackdiaz B2 Cyril

10) guntz1092: Discover G1 Guntz1092 Y1 Justin

11) thejackdiaz: Build R1 Thejackdiaz

12) guntz1092: Build G1 Justin

13) thejackdiaz: Trade R1 G1 Thejackdiaz

14) guntz1092: Move Y1 Guntz1092 Justin

15) thejackdiaz: Build G2 Thejackdiaz

16) guntz1092: Build G2 Justin

17) thejackdiaz: Move G2 Thejackdiaz Cyril

18) guntz1092: Discover G1 Justin B2 Jack

19) thejackdiaz: Build G3 Cyril

20) guntz1092: Build G3 Jack

21) thejackdiaz: Sacrifice Y3 Thejackdiaz
Discover R1 Cyril Y1 Buffalo
Move G3 Cyril Buffalo
Move G3 Buffalo Guntz1092

22) guntz1092: Build Y2 Guntz1092

23) thejackdiaz: Sacrifice R1 Buffalo
Attack Y3S Guntz1092

24) guntz1092: Move G1 Justin Guntz1092

25) thejackdiaz: Trade G3 R3 Guntz1092

26) guntz1092: Sacrifice G2 Justin
Build G2 Guntz1092
Build Y1 Guntz1092

27) thejackdiaz: Attack Y2 Guntz1092

28) guntz1092: Sacrifice G3 Jack
Build G3 Jack
Build Y2 Guntz1092
Build Y2 Justin
Catastrophe Guntz1092 Yellow

29) thejackdiaz: Trade R3 G3 Guntz1092
Catastrophe Guntz1092 Green
	thejackdiaz: gg



20783)
Started: 2011.9.11, Ended: 2012.1.11
Participants: daselva (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld B3 R1 G3
	Mandrel: Have a good game.

2) daselva: Homeworld B1 R2 G3

3) Mandrel: Build G1 Mandrel

4) daselva: Build G1 Daselva

5) Mandrel: Trade G1 R1 Mandrel

6) daselva: Trade G1 Y1 Daselva

7) Mandrel: Build G1 Mandrel

8) daselva: Build G1 Daselva

9) Mandrel: Trade G1 Y1 Mandrel

10) daselva: Trade G3 R3 Daselva

11) Mandrel: B G1 Mandrel

12) daselva: Build Y1 Daselva

13) Mandrel: Build Y2 Mandrel

14) daselva: Build Y2 Daselva

15) Mandrel: Build Y2 Mandrel

16) daselva: Discover Y2 Daselva G3 S1

17) Mandrel: Trade Y1 B1 Mandrel

18) daselva: Trade R3 G3 Daselva

19) Mandrel: D B1 Mandrel G2 Drape

20) daselva: Trade Y1 B1 Daselva

21) Mandrel: B B2 Drape

22) daselva: Move B1 Daselva S1

23) Mandrel: Trade B1 R1 Drape

24) daselva: Build Y1 S1

25) Mandrel: Move Y2 Mandrel Drape

26) daselva: Trade Y2 R2 S1

27) Mandrel: Build Y1 Mandrel

28) daselva: Build Y2 S1

29) Mandrel: Build Y3 Drape

30) daselva: Build Y3 Daselva

31) Mandrel: D Y2 Drape B3 Bunk

32) daselva: Build Y3 S1

33) Mandrel: Sacrifice Y2 Bunk
Move Y1 Mandrel Drape
Move Y1 Drape S1
Catastrophe S1 Y

34) daselva: Move Y3 Daselva S1

35) Mandrel: Build Y1 Drape

36) daselva: Discover R2 S1 G2 S2

37) Mandrel: Discover Y1 Drape B3 Cone

38) daselva: Sacrifice Y1 Daselva
Move R2 S2 Cone

39) Mandrel: Trade Y3 R3 Drape

40) daselva: Attack Y1 Cone

41) Mandrel: S Y2 Mandrel
Move B2 Drape Cone
Move R3 Drape Cone

42) daselva: Move R2 Cone Drape

43) Mandrel: Trade B2 Y2 Cone

44) daselva: Attack R1 Drape

45) Mandrel: Attack Y1S Cone

46) daselva: Trade G3 Y3 Daselva

47) Mandrel: Trade R1 Y1 Mandrel

48) daselva: Build Y1 S1

49) Mandrel: Build Y2 Mandrel

50) daselva: Trade Y1 R1 S1

51) Mandrel: Trade Y1 G1 Cone

52) daselva: Move Y3 S1 Drape

53) Mandrel: Build G2 Cone

54) daselva: Build Y1 Drape

55) Mandrel: Discover Y2 Mandrel B2 Neglect

56) daselva: Sacrifice Y1 Drape
Discover R1 S1 Y2 S2

57) Mandrel: Trade G2 B2 Cone

58) daselva: Sacrifice Y3 Drape
Move R1 S2 Mandrel
Move R1 Drape Mandrel
Move R2 Drape Mandrel
Catastrophe Mandrel R

59) Mandrel: T Y2 R2 Neglect

60) daselva: Build G2 Daselva

61) Mandrel: D G1 Mandrel B2 Third

62) daselva: Sacrifice G2 Daselva
Build B1 S1
Build G2 Daselva

63) Mandrel: Sacrifice Y2 Cone
Move R3 Cone Daselva
Move G3 Mandrel Daselva

64) daselva: Attack R3 Daselva

65) Mandrel: S R2 Neglect
Attack R3S Daselva
A Y3S Daselva

	Mandrel: Good game.


20839)
Variants: "Hard time"
Started: 2011.9.14, Ended: 2011.11.1
Participants: SilentTitan (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) SilentTitan: Homeworld B1 R2 G3

3) TwoShort: Build G1 Twoshort

4) SilentTitan: Build G1 Silenttitan

5) TwoShort: Trade G1 Y1 Twoshort

6) SilentTitan: Trade G1 Y1 Silenttitan

7) TwoShort: Build G1 Twoshort

8) SilentTitan: Build G1 Silenttitan

9) TwoShort: Discover G1 Twoshort B2 Bluonia

10) SilentTitan: Discover G1 Silenttitan B3 Sol

11) TwoShort: Build Y1 Twoshort

12) SilentTitan: Build Y2 Silenttitan

13) TwoShort: Build Y2 Twoshort

14) SilentTitan: Discover G3 Silenttitan Y3 Soul

15) TwoShort: Discover Y1 Twoshort G2 Grogar
	TwoShort: Well that was unexpected.

16) SilentTitan: Trade Y1 G1 Silenttitan

17) TwoShort: Build Y1 Grogar

18) SilentTitan: Build G2 Soul

19) TwoShort: Discover Y1 Grogar G3 Greenland

20) SilentTitan: Discover G1 Silenttitan Y3 Sole

21) TwoShort: Build G2 Twoshort

22) SilentTitan: Move G3 Soul Silenttitan

23) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build Y2 Greenland
Build Y3 Grogar

24) SilentTitan: Sacrifice G2 Soul
Build Y3 Silenttitan
Build G2 Sol

25) TwoShort: Sacrifice Y2 Twoshort
Move Y1 Greenland Silenttitan
Move Y2 Greenland Silenttitan
Catastrophe Silenttitan Yellow

26) SilentTitan: Build G3 Silenttitan

27) TwoShort: Sacrifice G3 Twoshort
Build Y1 Twoshort
Build Y2 Twoshort
Build G3 Twoshort

28) SilentTitan: Trade G2 Y2 Sol

29) TwoShort: Sacrifice Y2 Twoshort
Move G1 Bluonia Sole
Move G1 Sole Silenttitan

30) SilentTitan: Trade G3 Y3 Silenttitan

31) TwoShort: Sacrifice G3 Twoshort
Build G2 Silenttitan
Build G3 Silenttitan
Build G3 Twoshort
Catastrophe Silenttitan Green

32) SilentTitan: Build G1 Sol
	SilentTitan: you know... I've thought about this a lot.  I don't believe I could handle the once or twice per six months that I play against you and nenme.... If I wasn't winning virtually every other game I play. 
	TwoShort: If it helps any, you're definitely on the short list of players who put up enough fight to make it satisfying when I win. :)

33) TwoShort: Discover G2 Twoshort B2 Bluonia

34) SilentTitan: Sacrifice G1 Sol
Build Y2 Silenttitan

35) TwoShort: Build G1 Twoshort

36) SilentTitan: Trade Y3 G3 Silenttitan

37) TwoShort: Discover Y1 Grogar G3 Greenland

38) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Silenttitan
Build G2 Sol

39) TwoShort: Build G3 Bluonia

40) SilentTitan: Sacrifice Y2 Sol
Move G1 Sol Bluonia
Move G2 Sol Bluonia
Catastrophe Bluonia Green

41) TwoShort: Discover Y1 Twoshort B2 Blu2eb

42) SilentTitan: Trade Y3 G3 Silenttitan

43) TwoShort: Sacrifice G3 Twoshort
Build Y2 Blu2eb
Build Y3 Twoshort
Build G1 Twoshort

44) SilentTitan: Build G2 Silenttitan

45) TwoShort: Trade Y2 R2 Blu2eb

46) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build G2 Sole
Build G3 Silenttitan

47) TwoShort: Discover G1 Twoshort R2 Rover

48) SilentTitan: Discover G2 Silenttitan G3 Yaz

49) TwoShort: Move R2 Blu2eb Yaz

50) SilentTitan: Sacrifice G2 Yaz
Build G2 Silenttitan
Pass

51) TwoShort: Build R1 Yaz
	SilentTitan: do you have any idea why the time isn't moving?

52) SilentTitan: Discover Y2 Sol B2 Yell

53) TwoShort: Move Y1 Greenland Rover

54) SilentTitan: Discover G2 Silenttitan G3 Yikes

55) TwoShort: Build R1 Yaz

56) SilentTitan: Sacrifice Y2 Silenttitan
Move Y2 Sol Yell
Move Y2 Yell Twoshort

57) TwoShort: Trade Y3 R3 Twoshort

58) SilentTitan: Sacrifice G2 Sole
Build Y2 Twoshort
Build Y3 Yell

59) TwoShort: Sacrifice Y3 Grogar
Move Y1 Blu2eb Twoshort
Move Y1 Twoshort Yell
Move Y1 Twoshort Yell
Catastrophe Yell Yellow

60) SilentTitan: Attack G1 Twoshort North
	TwoShort: Ack!  

61) TwoShort: Sacrifice R2 Yaz
Attack Y2 Twoshort
Attack Y2 Twoshort

62) SilentTitan: Sacrifice G2 Yikes
Build G2 Twoshort
Build G2 Silenttitan

63) TwoShort: Attack G2 Twoshort

64) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Twoshort
Build G3 Sole
Build G3 Silenttitan

65) TwoShort: Sacrifice G2 Twoshort
Build R2 Yaz
Build R3 Twoshort

66) SilentTitan: Trade G3 Y3 Silenttitan

67) TwoShort: Sacrifice R2 Yaz
Attack G2 Twoshort
Attack G1 Twoshort

68) SilentTitan: Discover G3 Sole Y2 New

69) TwoShort: Move R3 Twoshort New

70) SilentTitan: Discover G3 New B1 Old

71) TwoShort: Sacrifice G2 Twoshort
Build R2 Yaz
Build R3 New

72) SilentTitan: Trade G3 Y3 Old

73) TwoShort: Sacrifice Y2 Twoshort
Discover R3 New B3 Base
Move R3 New Base

74) SilentTitan: Move Y3 Old Yaz

75) TwoShort: Sacrifice Y2 Twoshort
Move R3 Base Silenttitan
Move R3 Base Silenttitan
	TwoShort: Great game, by the way.  I've thought I saw how to finish you off 5 or 6 times and you keep holding me off and threatening to make a comeback.  This time I'm pretty sure I've got you though :)

76) SilentTitan: Trade Y3 G3 Silenttitan
	SilentTitan: yes you do.  Thanks for the game

77) TwoShort: Sacrifice R2 Yaz
Attack G3 Silenttitan
Attack G2 Silenttitan



20680)
Variants: "Hard time"
Started: 2011.9.14, Ended: 2011.9.24
Participants: SilentTitan (S), BloodRumpus (N)
Winner: SilentTitan

1) BloodRumpus: Homeworld B2 R1 G3

2) SilentTitan: Homeworld R3 B2 G3

3) BloodRumpus: Build G1 Bloodrumpus

4) SilentTitan: Build G1 Silenttitan

5) BloodRumpus: Trade G1 Y1 Bloodrumpus

6) SilentTitan: Trade G1 Y1 Silenttitan

7) BloodRumpus: Build G1 Bloodrumpus

8) SilentTitan: Build G1 Silenttitan

9) BloodRumpus: Trade Y1 B1 Bloodrumpus

10) SilentTitan: Build Y1 Silenttitan

11) BloodRumpus: Build B1 Bloodrumpus

12) SilentTitan: Discover G1 Silenttitan Y1 Sol

13) BloodRumpus: Trade G3 Y3 Bloodrumpus

14) SilentTitan: Build G1 Sol

15) BloodRumpus: Build G2 Bloodrumpus

16) SilentTitan: Discover G1 Sol Y3 Sole

17) BloodRumpus: Discover B1 Bloodrumpus G3 Regulus

18) SilentTitan: Build G2 Silenttitan

19) BloodRumpus: Build B1 Regulus

20) SilentTitan: Build G2 Sole

21) BloodRumpus: Build B2 Regulus

22) SilentTitan: Trade G3 B3 Silenttitan

23) BloodRumpus: Trade G1 R1 Bloodrumpus

24) SilentTitan: Discover B3 Silenttitan G1 Slick

25) BloodRumpus: Sacrifice Y3 Bloodrumpus
Move B1 Regulus Slick
M B1 Regulus Slick
M B2 Regulus Slick
C Slick B

26) SilentTitan: Discover Y1 Silenttitan B1 Sloop

27) BloodRumpus: Trade G2 Y2 Bloodrumpus

28) SilentTitan: Sacrifice G2 Sole
Build Y2 Silenttitan
Build Y2 Sloop

	BloodRumpus: woof... I really blew it.


20847)
Variants: "Hard time"
Started: 2011.9.15, Ended: 2011.11.6
Participants: kingsamj (S), BloodRumpus (N)
Winner: kingsamj

1) BloodRumpus: Homeworld B2 R3 G3

2) kingsamj: Homeworld B3 G1 Y3

3) BloodRumpus: B G1 Bloodrumpus

4) kingsamj: Build Y1 Kingsamj

5) BloodRumpus: Trade G1 Y1 Bloodrumpus

6) kingsamj: Trade Y1 R1 Kingsamj

7) BloodRumpus: Build G1 Bloodrumpus

8) kingsamj: Build Y1 Kingsamj

9) BloodRumpus: Build G1 Bloodrumpus

10) kingsamj: Discover Y1 Kingsamj G2 Caprica

11) BloodRumpus: D G1 Bloodrumpus B1 Tauron

12) kingsamj: Build Y1 Caprica

13) BloodRumpus: Trade G1 R1 Bloodrumpus

14) kingsamj: Build Y2 Kingsamj

15) BloodRumpus: Build Y2 Bloodrumpus

16) kingsamj: Trade Y2 G2 Kingsamj

17) BloodRumpus: Discover Y1 Bloodrumpus G1 Sagitaron

18) kingsamj: Build Y2 Kingsamj

19) BloodRumpus: Build Y2 Sagitaron

20) kingsamj: Discover G2 Kingsamj B2 Kobol

21) BloodRumpus: Build Y3 Bloodrumpus

22) kingsamj: Move Y2 Kingsamj Kobol

23) BloodRumpus: Sacrifice Y1 Sagitaron
Discover G1 Tauron Y3 Earth

24) kingsamj: Build Y1 Kingsamj

25) BloodRumpus: Build G2 Earth

26) kingsamj: Build G3 Kobol

27) BloodRumpus: Build G3 Bloodrumpus

28) kingsamj: Trade G2 R2 Kobol

29) BloodRumpus: Discover G2 Earth B2 Ragnar

30) kingsamj: Build G2 Kobol

31) BloodRumpus: Sacrifice G1 Earth
B G1 Ragnar

32) kingsamj: Move G3 Kobol Sagitaron

33) BloodRumpus: Sacrifice Y2 Sagitaron
Move G1 Ragnar Sagitaron
Move G2 Ragnar Sagitaron
Catastrophe Sagitaron G

34) kingsamj: Build G1 Kobol

35) BloodRumpus: Discover G3 Bloodrumpus R1 Tauron

36) kingsamj: Discover Y1 Caprica G1 Earth

37) BloodRumpus: Move Y2 Bloodrumpus Tauron

38) kingsamj: Move G2 Kobol Earth

39) BloodRumpus: T R1 B1 Bloodrumpus

40) kingsamj: Build Y2 Earth



20851)
Variants: "Hard time"
Started: 2011.9.15, Ended: 2011.9.21
Participants: Subhan64 (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y3 B2 G3

2) Subhan64: Homeworld Y1 B3 G3

3) ajo: Build G1 Ajo

4) Subhan64: Build G1 Subhan64

5) ajo: Discover G1 Ajo B1 Alpha

6) Subhan64: Discover G1 Subhan64 B2 Blueberry

7) ajo: Build G1 Ajo
	ajo: Whoops. I ought to remember how not to screw that up every single time.

8) Subhan64: Build G2 Subhan64

9) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G2 Alpha
Build G3 Ajo

10) Subhan64: Build G3 Subhan64

11) ajo: Trade G2 Y2 Alpha

12) Subhan64: Trade G3 Y3 Subhan64
	ajo: Looks like it worked out anyway. :)

13) ajo: Trade G1 R1 Ajo

14) Subhan64: Move G3 Subhan64 Blueberry

15) ajo: Build Y1 Alpha

16) Subhan64: Trade G1 Y1 Blueberry

17) ajo: Sacrifice Y2 Alpha
Move Y1 Alpha Blueberry
Move Y1 Blueberry Subhan64

18) Subhan64: Move Y3 Subhan64 Blueberry

19) ajo: Sacrifice G2 Ajo
Build G1 Ajo
Build Y2 Subhan64

20) Subhan64: Trade G2 R2 Subhan64
	ajo: Check.

21) ajo: Sacrifice R1 Ajo
Attack R2 Subhan64
	ajo: That doesn't get you out of check! :P  It's a rated game, so I'll take the win. Better luck next time. :)
	Subhan64: nothing would have got me out of check
	ajo: My analyzer says 304 distinct possible moves would have gotten you out of check. For example, "move g3 Blueberry Subhan64" would have done the trick, and left you in a decent position after I catastrophed yellow.
	Subhan64: Oh, so you are not playing your own games?
	Subhan64: Wouldn't have saved me anyway.  If I moved g3 back home, I still would have lost one of my homeworld stars.  This is a position that is so incredibly week that people will nearly always resign at that point rather than drag out the game.
	ajo: I do play my own games. I use my analyzer primarily to verify before announcing "Checkmate", just to avoid looking stupid by being wrong. ;)
	ajo: "[Losing half a homeworld] is so incredibly weak that people will nearly always resign at that point..." Nope, definitely not true. Especially in this case; you would have had quite the material advantage. After the catastrophe, I'd be left with r1g1g3 to your y1g2g3y3.
	Subhan64: There's a lot more to the advantage then mere piececount.  The location of the pieces is also very important, and I think it's really easy to underestimate the effect of the asymmetrical distance relationship between the two homeworlds -  there are now 2 sizes of stars which are 1 step away from the dimminished homeworld, whereas only 1 size can directly reach the opponenets.

	ajo: Sure, you were worse off after I blew up your homeworld than before; otherwise I wouldn't have done it! But the material advantage makes up quite a bit of the difference. If I were you, I wouldn't have resigned when you did.
	ajo: But then again, it does save time. ;) Resigning immediately when you make a mistake might lead to more rapid improvement in your early game, even if it does decrease your win percentage in the short run.



20854)
Variants: "Hard time"
Started: 2011.9.15, Ended: 2011.9.19
Participants: meckanical (S), BloodRumpus (N)
Winner: BloodRumpus

1) BloodRumpus: H B1 R3 G3

2) meckanical: Homeworld G2 Y1 B3

3) BloodRumpus: Build G1 Bloodrumpus

4) meckanical: Build B1 Meckanical

5) BloodRumpus: T G1 Y1 Bloodrumpus

6) meckanical: Trade B1 G1 Meckanical

7) BloodRumpus: B Y1 Bloodrumpus

8) meckanical: Build B1 Meckanical

9) BloodRumpus: Discover Y1 Bloodrumpus G2 Rigel

10) meckanical: Discover G1 Meckanical Y3 Solar

11) BloodRumpus: Build Y2 Rigel

12) meckanical: Build G1 Solar

13) BloodRumpus: Build Y2 Bloodrumpus

14) meckanical: Move B1 Meckanical Solar

15) BloodRumpus: Discover Y2 Bloodrumpus G2 Sirius

16) meckanical: Build B1 Solar

17) BloodRumpus: Sacrifice G3 Bloodrumpus
Build Y2 Sirius
B Y3 Sirius
Build Y3 Bloodrumpus

18) meckanical: Build B2 Solar
	meckanical: Why do I get the feeling that this is about to suck?

19) BloodRumpus: Trade Y1 R1 Bloodrumpus
	BloodRumpus: haha, well i have some consolidation to do before it starts to suck... give it a couple moves :P

20) meckanical: Build B2 Meckanical

21) BloodRumpus: Sacrifice Y2 Sirius
Move Y3 Sirius Solar
Move Y3 Solar Meckanical

22) meckanical: Trade B3 R3 Meckanical

23) BloodRumpus: Sacrifice R1 Bloodrumpus
Attack R3 Meckanical

24) meckanical: Sacrifice G1 Solar
Build B2 Meckanical
	BloodRumpus: its those sacrifices you gotta watch out for!
	meckanical: BALLZ! I totally forgot that was a possibility haha... Makes my trade for a Red #3 seem pretty silly :P GG! Rematch once you're done with me!

25) BloodRumpus: Sacrifice R3 Meckanical
Attack B2 Meckanical
Attack B2 Meckanical
Pass
	BloodRumpus: yep!
	BloodRumpus: btw you don't have to sac a green at Solar to build ships, just the fact that its in the system is sufficient.
	meckanical: oooh good point. 
	BloodRumpus: oh wait i missread what actually happened... I think your move was totally correct (the sac move)



20821)
Started: 2011.9.18, Ended: 2011.10.8
Participants: SirRuthvenMurgatroyd (S), jimpurbrick (N)
Winner: SirRuthvenMurgatroyd

1) jimpurbrick: Homeworld R1 B2 G3

2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3

3) jimpurbrick: Build G1 Jimpurbrick

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) jimpurbrick: Trade G1 Y1 Jimpurbrick

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol

7) jimpurbrick: Discover Y1 Jimpurbrick G3 Gallifrey

8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

9) jimpurbrick: Build Y1 Gallifrey

10) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd



20884)
Variants: "Hard time"
Started: 2011.9.19, Ended: 2011.10.7
Participants: meckanical (S), BloodRumpus (N)
Winner: BloodRumpus

1) BloodRumpus: Homeworld B1 R2 G3

2) meckanical: Homeworld B1 G3 Y3

3) BloodRumpus: Build G1 Bloodrumpus

4) meckanical: Build Y1 Meckanical

5) BloodRumpus: B G1 Bloodrumpus

6) meckanical: Trade Y1 G1 Meckanical

7) BloodRumpus: Trade G1 Y1 Bloodrumpus

8) meckanical: Build G1 Meckanical

9) BloodRumpus: Discover G1 Bloodrumpus Y3 Sirius

10) meckanical: Trade G1 B1 Meckanical

11) BloodRumpus: Build G1 Sirius

12) meckanical: Build B2 Meckanical

13) BloodRumpus: Discover G1 Sirius B2 Rigel

14) meckanical: Trade B2 R2 Meckanical

15) BloodRumpus: Build G2 Sirius

16) meckanical: Move R2 Meckanical Rigel

17) BloodRumpus: Sacrifice Y1 Bloodrumpus
Move G1 Rigel Meckanical

18) meckanical: Trade Y3 R3 Meckanical

19) BloodRumpus: Sacrifice G2 Sirius
Build G2 Meckanical
Build G2 Meckanical
Catastrophe Meckanical G

20) meckanical: Trade R2 G2 Rigel
	meckanical: oooooh shit... i just realized what you were doing :-/
	BloodRumpus: well its not gonna be quite as awesome since i won't be able to take out your big ship now :(

21) BloodRumpus: Build G1 Bloodrumpus
	BloodRumpus: ...but I'm still pleased with the outcome :P
	meckanical: :P at least one of us is!

22) meckanical: Trade B1 G1 Meckanical

23) BloodRumpus: Build G2 Sirius

24) meckanical: Sacrifice G2 Rigel
Build G2 Meckanical
Build R1 Meckanical

25) BloodRumpus: Trade G1 B1 Bloodrumpus

26) meckanical: Build R1 Meckanical

27) BloodRumpus: Build B2 Bloodrumpus

28) meckanical: Trade R1 Y1 Meckanical

29) BloodRumpus: Trade B1 R1 Bloodrumpus

30) meckanical: Move R3 Meckanical Sirius

31) BloodRumpus: Discover G2 Sirius Y2 Caprica

32) meckanical: Attack G1 Sirius

33) BloodRumpus: Build G1 Caprica

34) meckanical: Trade G2 R2 Meckanical

35) BloodRumpus: Build B1 Bloodrumpus

36) meckanical: Build G2 Meckanical

37) BloodRumpus: S B1 Bloodrumpus
T G1 R1 Caprica

38) meckanical: Move R3 Sirius Caprica

39) BloodRumpus: Sacrifice G2 Caprica
Build R2 Caprica
Build R3 Caprica
Catastrophe Caprica R

40) meckanical: Move R2 Meckanical Sirius

41) BloodRumpus: Build B1 Bloodrumpus
	meckanical: oh goddamn! those damn sacrifices :)

42) meckanical: Trade G2 B2 Meckanical
	BloodRumpus: haha yep

43) BloodRumpus: Trade R1 Y1 Bloodrumpus

44) meckanical: Build R1 Sirius

45) BloodRumpus: Discover B1 Bloodrumpus G3 Zepher

46) meckanical: Move R2 Sirius Bloodrumpus

47) BloodRumpus: Attack R2 Bloodrumpus

48) meckanical: Build B2 Meckanical
	meckanical: hmmm

49) BloodRumpus: Sacrifice Y1 Bloodrumpus
M B1 Zepher Meckanical
C Meckanical B
	meckanical: oooooh your red star! hahaha.... well fuck.



20890)
Variants: "Hard time"
Started: 2011.9.20, Ended: 2011.11.19
Participants: MagicJohn (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld B1 R2 G3

2) MagicJohn: Homeworld Y1 B3 G3
	Mandrel: Have a good game.
	MagicJohn: Thanks for the game.  I've been in this ladder for quite some time and NOBODY seems to pick up challenges.  Standings-wise there is little advantage to playing folks on a lower rung of the ladder than yourself, but I thought the thing was designed to encourage and reward folks who would play the game.   There, I'm done ranting.  Have a good game! 

3) Mandrel: Build G1 Mandrel

4) MagicJohn: Build G1 Magicjohn

5) Mandrel: Trade G1 Y1 Mandrel

6) MagicJohn: Build G1 Magicjohn

7) Mandrel: Build Y1 Mandrel

8) MagicJohn: Trade G1 R1 Magicjohn

9) Mandrel: Build Y2 Mandrel

10) MagicJohn: Build G1 Magicjohn

11) Mandrel: Discover Y1 Mandrel B3 Slow

12) MagicJohn: Discover G1 Magicjohn Y2 Old Yeller

13) Mandrel: Build Y2 Mandrel

14) MagicJohn: Build G1 Old

15) Mandrel: Discover Y2 Mandrel G3 Kings

16) MagicJohn: Build G2 Old

17) Mandrel: B G2 Mandrel

18) MagicJohn: Move G2 Old Slow

19) Mandrel: Discover Y1 Slow B2 Helix

20) MagicJohn: Trade G3 Y3 Magicjohn

21) Mandrel: Build Y3 Kings

22) MagicJohn: Trade Y3 G3 Magicjohn

23) Mandrel: Sacrifice G3 Mandrel
Build G2 Mandrel
Build G3 Mandrel
Build Y3 Helix

24) MagicJohn: Move G1 Old Kings

25) Mandrel: Sacrifice Y2 Kings
Move Y1 Helix Magicjohn
Move Y3 Helix Magicjohn

26) MagicJohn: Discover G1 Old Y3 Grayhavens

27) Mandrel: Trade G2 R2 Mandrel

28) MagicJohn: Attack Y3 Magicjohn

29) Mandrel: Sacrifice R2 Mandrel
Attack R1S Magicjohn
Attack G1S Magicjohn

30) MagicJohn: Trade Y3 R3 Magicjohn

31) Mandrel: Sacrifice G2 Mandrel
Build R1 Magicjohn
Build R1 Magicjohn
Catastrophe Magicjohn R

32) MagicJohn: Trade G2 R2 Slow

33) Mandrel: Sacrifice G3 Mandrel
Build G2 Magicjohn
Build G2 Magicjohn
Build Y2 Kings
Catastrophe Magicjohn G

	Mandrel: Thanks for the game.
	MagicJohn: Eventually I will get the hang of this game. Complex lil' devil, isn't it.....


20650)
Variants: "Hard time"
Started: 2011.9.21, Ended: 2011.10.1
Participants: BloodRumpus (S), caru (N), ajo (E)
Winner: ajo

1) caru: Homeworld B1 Y2 G3
	ajo: This will be my first-ever three-player game of Homeworlds on SDG. Am I correct in assuming that since the "Variants" on this match don't include "Sinister", it's a "last man standing" sort of thing?
	ajo: ...self-correction: it's a "first to get someone else out" sort of thing. Right?

2) ajo: Homeworld R1 B2 G3
	Danner: "The standard end-of-game condition is Last Man Standing" :)
http://superdupergames.org/gameinfo.html?game=homeworlds

3) BloodRumpus: Homeworld R2 B3 G3
	ajo: Thanks, Danner. I was thrown off by the fact that in the first couple of multiplayer non-Sinister archive games I looked at, the games ended with multiple homeworlds still on the map and unconquered. But on closer inspection I see that those players had already resigned. Makes sense now.

4) caru: Build G1 Caru

5) ajo: Build G1 Ajo

6) BloodRumpus: Build G1 Bloodrumpus

7) caru: Trade G1 Y1 Caru

8) ajo: Trade G1 Y1 Ajo

9) BloodRumpus: T G1 Y1 Bloodrumpus

10) caru: Build G1 Caru

11) ajo: Build G1 Ajo

12) BloodRumpus: Build G1 Bloodrumpus

13) caru: Trade G1 B1 Caru

14) ajo: Build G1 Ajo

15) BloodRumpus: T G1 B1 Bloodrumpus

16) ajo: Discover G1 Ajo B3 Alpha

	BloodRumpus: Whoa that was weird... Yeah i'd rather just call it quits.


20906)
Variants: "Hard time"
Started: 2011.9.22, Ended: 2011.10.26
Participants: ajo (S), Danner (N)
Winner: Danner

1) Danner: Pass
	Danner: Hello again. :)

2) ajo: Homeworld B3 Y2 G3

3) Danner: Homeworld B1 Y2 G3

4) ajo: Build G1 Ajo

5) Danner: Build G1 Danner

6) ajo: Trade G1 R1 Ajo

7) Danner: Trade G1 R1 Danner

8) ajo: Build G1 Ajo

9) Danner: Build G1 Danner

10) ajo: Discover G1 Ajo B1 Alpha
	ajo: Copycat. ;)

11) Danner: Discover G1 Danner Y3 Beta
	Danner: :)

12) ajo: Build G1 Ajo

13) Danner: Build G2 Danner

14) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Alpha
Build G3 Ajo

15) Danner: Sacrifice G3 Danner
Build G3 Danner
Build G3 Beta
Build R1 Danner

16) ajo: Trade G2 Y2 Alpha

17) Danner: Discover G1 Beta Y1 Gamma

18) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G3 Ajo
Build R2 Ajo

19) Danner: Move R1 Danner Beta

20) ajo: Move R2 Ajo Gamma

21) Danner: Sacrifice G3 Beta
Build G3 Gamma
Build R2 Beta
Pass

22) ajo: Sacrifice G2 Alpha
Build R2 Ajo
Build R3 Ajo

23) Danner: Sacrifice R1 Beta
Attack R2S Gamma

24) ajo: Move R3 Ajo Alpha

25) Danner: Sacrifice G3 Danner
Build R1 Gamma
Build R3 Beta
Build R3 Danner

26) ajo: Discover G2 Alpha B3 Delta

27) Danner: Discover G3 Gamma G3 Epsilon

28) ajo: Sacrifice G3 Ajo
Build G2 Delta
Build G3 Ajo
Build Y1 Alpha

29) Danner: Sacrifice G3 Epsilon
Build G3 Danner
Build G3 Gamma
Pass

	Danner: What happened? Your clock is frozen!


20915)
Variants: "Hard time"
Started: 2011.9.23, Ended: 2011.9.26
Participants: goulo (S), Subhan64 (N)
Winner: goulo

	Subhan64: damn, sorry, I spaced out on this :(
	goulo: Yeah, kind of anticlimactic way to win. :)


20902)
Variants: "Hard time"
Started: 2011.9.28, Ended: 2011.11.8
Participants: Subhan64 (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld Y1 B2 G3

2) Subhan64: Homeworld G3 B1 Y3

3) Jesse: Build G1 Jesse

4) Subhan64: Build Y1 Subhan64

5) Jesse: Trade G1 Y1 Jesse

6) Subhan64: Trade Y1 G1 Subhan64

7) Jesse: Discover Y1 Jesse G3 Supermoss

8) Subhan64: Discover G1 Subhan64 Y2 Bigbird

9) Jesse: Build G1 Jesse

10) Subhan64: Build G1 Bigbird

11) Jesse: Discover G1 Jesse B3 Superlake

12) Subhan64: Move G1 Bigbird Superlake

13) Jesse: Trade G1 R1 Superlake

14) Subhan64: Sacrifice G1 Superlake
Build Y1 Subhan64

15) Jesse: Build Y2 Supermoss

16) Subhan64: Trade Y1 R1 Subhan64

17) Jesse: Build G1 Jesse

18) Subhan64: Discover R1 Subhan64 G2 Kermit

19) Jesse: Move Y2 Supermoss Kermit

20) Subhan64: Build Y1 Subhan64

21) Jesse: Sacrifice R1 Superlake
Attack R1 Kermit

22) Subhan64: Discover Y1 Subhan64 G2 Karopi

23) Jesse: Discover G1 Jesse Y3 Supercanary

24) Subhan64: Sacrifice G1 Bigbird
Build Y2 Karopi

25) Jesse: Build G1 Jesse

26) Subhan64: Move Y1 Karopi Subhan64

27) Jesse: Sacrifice G3 Jesse
Build G1 Supercanary
Build G2 Supercanary
Build G3 Jesse

28) Subhan64: Build Y2 Karopi

29) Jesse: Build Y3 Supermoss

30) Subhan64: Trade Y1 R1 Subhan64

31) Jesse: Build Y1 Kermit

32) Subhan64: Move Y2 Karopi Supermoss

33) Jesse: Discover G1 Supercanary B2 Lake

34) Subhan64: Move R1 Subhan64 Lake

35) Jesse: Sacrifice R1 Kermit
Attack R1 Lake

36) Subhan64: Move Y2 Supermoss Karopi

37) Jesse: Move Y1 Supermoss Lake

38) Subhan64: Discover Y2 Karopi B3 Cookie_monster

39) Jesse: Sacrifice Y3 Supermoss
Move Y1 Lake Subhan64
Move Y1 Kermit Subhan64
Move Y2 Kermit Subhan64
Catastrophe Subhan64 Y

	Jesse: Thanks for the game.
	Subhan64: Thanks! I still lose most of the games I play, but I'm slowly getting better!


20870)
Started: 2011.10.2, Ended: 2011.11.18
Participants: SirRuthvenMurgatroyd (S), lorgar (N)
Winner: SirRuthvenMurgatroyd

1) lorgar: Homeworld B3 Y2 G3

2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3

3) lorgar: Build G1 Lorgar

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) lorgar: Discover G1 Lorgar B1 Mellowmood

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol

7) lorgar: Build G1 Mellowmood

8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

9) lorgar: Trade G1 Y1 Mellowmood

10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd

11) lorgar: Build G1 Lorgar

12) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

13) lorgar: Build G2 Mellowmood

14) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G2 Sol
Build G3 Sirruthvenmurgatroyd
Build G3 Sirruthvenmurgatroyd

15) lorgar: Sacrifice G3 Lorgar
Build Y1 Mellowmood
Build Y2 Mellowmood
Build G3 Lorgar

16) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd
Move G2 Sol Mellowmood
Move G1 Sol Mellowmood
Catastrophe Mellowmood G

17) lorgar: Sacrifice Y2 Mellowmood
Discover Y1 Mellowmood Y2 Stop
Discover Y1 Mellowmood Y2 Post

18) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd

19) lorgar: Discover Y1 Post G3 Ost

20) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd

21) lorgar: Build Y2 Ost

22) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd
Move R3 Sirruthvenmurgatroyd Ost
Discover R3 Ost R1 Red
Move R3 Red Lorgar



20773)
Started: 2011.10.3, Ended: 2011.12.19
Participants: daselva (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y3 G3

2) daselva: Homeworld B1 R2 G3

3) lorgar: Build G1 Lorgar

4) daselva: Build G1 Daselva

5) lorgar: Trade G1 B1 Lorgar

6) daselva: Trade G3 B3 Daselva

7) lorgar: Discover B1 Lorgar G2 Maz

8) daselva: Build B2 Daselva

9) lorgar: Build B2 Maz

10) daselva: Trade B3 Y3 Daselva

11) lorgar: Trade B1 R1 Maz

12) daselva: Discover B2 Daselva G3 S1

13) lorgar: Build R1 Maz

14) daselva: Build Y1 Daselva

15) lorgar: Trade R1 Y1 Maz

16) daselva: Sacrifice Y1 Daselva
Discover B2 S1 G2 S2

17) lorgar: Build G1 Lorgar

18) daselva: Build Y1 Daselva

19) lorgar: Trade G1 R1 Lorgar

20) daselva: Discover Y1 Daselva G3 S3

21) lorgar: Build B1 Maz

22) daselva: Move Y1 S3 S2

23) lorgar: Discover B2 Maz G3 Muse

24) daselva: Build G1 Daselva

25) lorgar: Build G1 Lorgar

26) daselva: Trade B2 R2 S2

27) lorgar: Build B2 Muse

28) daselva: Move R2 S2 Muse

29) lorgar: Sacrifice R1 Maz
Attack R2S Muse

30) daselva: Discover Y1 S2 G3 S3

31) lorgar: Build B2 Maz

32) daselva: Build G2 Daselva

33) lorgar: Build B3 Maz

34) daselva: Trade G2 R2 Daselva

35) lorgar: Build B3 Muse

36) daselva: Build G2 Daselva

37) lorgar: Build R1 Muse

38) daselva: Move R2 Daselva S3

39) lorgar: Trade B2 G2 Muse

40) daselva: Sacrifice G2 Daselva
Build R1 S3
Build R3 S3

41) lorgar: Discover B1 Maz R3 Moose

42) daselva: Discover R3 S3 Y2 S4

43) lorgar: Build R3 Lorgar

44) daselva: Discover R2 S3 Y2 S5

45) lorgar: Sacrifice B2 Maz
Trade R3 Y3 Lorgar
Trade G2 Y2 Muse

46) daselva: Build R3 S3

47) lorgar: Sacrifice Y3 Lorgar
Move B1 Moose Daselva
Move B2 Muse Daselva
Move B3 Muse Daselva
Catastrophe Daselva Blue

48) daselva: Move R3 S4 Muse

49) lorgar: Sacrifice Y2 Muse
Move R2 Muse Daselva
Move R1 Muse Daselva



20848)
Variants: "Hard time"
Started: 2011.10.3, Ended: 2011.11.12
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B1 G3

2) lorgar: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build G1 Lorgar

5) SilentTitan: Trade G1 B1 Silenttitan

6) lorgar: Discover G1 Lorgar B2 Peyotl

7) SilentTitan: Build B2 Silenttitan

8) lorgar: Build G1 Lorgar

9) SilentTitan: Trade B2 Y2 Silenttitan

10) lorgar: Build G1 Lorgar

11) SilentTitan: Build G2 Silenttitan

12) lorgar: Build G2 Peyotl

13) SilentTitan: Build G2 Silenttitan

14) lorgar: Trade G2 B2 Peyotl

15) SilentTitan: Discover G2 Silenttitan B3 Sol

16) lorgar: Trade G1 R1 Lorgar

17) SilentTitan: Build B2 Silenttitan

18) lorgar: Build G1 Peyotl

19) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Sol
Build G3 Sol
Build G3 Silenttitan

20) lorgar: Trade G1 Y1 Peyotl

21) SilentTitan: Trade G2 Y2 Sol

22) lorgar: Move G1 Peyotl Sol

23) SilentTitan: Trade G3 R3 Sol

24) lorgar: Discover B2 Peyotl G3 Los

25) SilentTitan: Discover B2 Silenttitan Y3 Soul

26) lorgar: Sacrifice G1 Sol
Build B3 Los

27) SilentTitan: Discover B1 Silenttitan Y3 Taos

28) lorgar: Trade B2 R2 Los

29) SilentTitan: Sacrifice G2 Sol
Build B2 Taos
Build B3 Soul

30) lorgar: Build R1 Los

31) SilentTitan: Sacrifice Y2 Silenttitan
Discover B2 Soul Y2 Alpha
Discover B2 Taos Y2 Beta

32) lorgar: Trade R1 Y1 Los

33) SilentTitan: Sacrifice B3 Soul
Trade R3 Y3 Sol
Trade B2 G2 Alpha
Trade B2 G2 Beta

34) lorgar: Trade G3 R3 Lorgar

35) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Alpha
Build G1 Beta
Build G3 Silenttitan

36) lorgar: Move B3 Los Beta

37) SilentTitan: Sacrifice G2 Beta
Build G2 Beta
Build G3 Silenttitan

38) lorgar: Sacrifice R2 Los
Attack G2N Beta
Attack G1N Beta

39) SilentTitan: Trade G3 R3 Silenttitan

40) lorgar: Move G2 Beta Los

41) SilentTitan: Sacrifice G2 Alpha
Build B2 Taos
Build B2 Taos

42) lorgar: Discover G1 Beta B3 Son

43) SilentTitan: Sacrifice B2 Taos
Trade Y2 R2 Sol
Trade G2 Y2 Silenttitan

44) lorgar: Trade R3 G3 Lorgar

45) SilentTitan: Build G2 Alpha

46) lorgar: Sacrifice G1 Lorgar
Build G1 Son

47) SilentTitan: Sacrifice Y2 Silenttitan
Move G2 Alpha Lorgar
Move G1 Alpha Lorgar

48) lorgar: Build G2 Son

49) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build R1 Silenttitan
Build G3 Lorgar
Catastrophe Lorgar Green

	lorgar: damn it... I was loosing anyway but at a slower pace than the other games...


20963)
Started: 2011.10.3, Ended: 2011.11.11
Participants: SirRuthvenMurgatroyd (S), goblin981 (N)
Winner: SirRuthvenMurgatroyd

1) goblin981: Homeworld B2 Y3 G3

2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3

3) goblin981: Build G1 Goblin981

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) goblin981: Discover G1 Goblin981 Y1 Yw

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol

7) goblin981: Pass

8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

9) goblin981: Build G2 Goblin981

10) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G2 Sol
Build G2 Sirruthvenmurgatroyd
Build G3 Sirruthvenmurgatroyd

11) goblin981: Build G3 Yw

12) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd



20895)
Variants: "Hard time"
Started: 2011.10.3, Ended: 2011.12.22
Participants: Mandrel (S), agentofchaos (N), lorgar (E)
Winner: Mandrel

1) agentofchaos: Homeworld B1 R2 G3

2) lorgar: Homeworld B1 Y3 G3
	agentofchaos: have fun guys :-)

3) Mandrel: Homeworld B2 R3 G3

4) agentofchaos: Build G1 Agentofchaos
	Mandrel: Have a good game.

5) lorgar: Build G1 Lorgar

6) Mandrel: Build G1 Mandrel

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) lorgar: Trade G1 B1 Lorgar

9) Mandrel: Trade G1 B1 Mandrel

10) agentofchaos: Build Y1 Agentofchaos

11) lorgar: Discover B1 Lorgar G2 Xray

12) Mandrel: Build B2 Mandrel

13) agentofchaos: D Y1 Agentofchaos G3 Kakrafoon

14) lorgar: Build G1 Lorgar

15) Mandrel: Trade B2 Y2 Mandrel

16) agentofchaos: Build Y1 Agentofchaos

17) lorgar: Build B2 Xray

18) Mandrel: Build B2 Mandrel

19) agentofchaos: Build Y1 Agentofchaos

20) lorgar: Trade B2 Y2 Xray

21) Mandrel: Discover B2 Mandrel G1 Quiet

22) agentofchaos: Build Y2 Kakrafoon

23) lorgar: Build B2 Xray

24) Mandrel: Build B2 Quiet

25) agentofchaos: Trade Y1 R1 Agentofchaos

26) lorgar: Trade B1 R1 Xray

27) Mandrel: Trade B2 R2 Quiet

28) agentofchaos: Trade Y1 B1 Agentofchaos

29) lorgar: Trade G1 R1 Lorgar

30) Mandrel: Build Y1 Mandrel

31) agentofchaos: Move B1 Agentofchaos Kakrafoon

32) Mandrel: Move Y1 Mandrel Quiet

33) agentofchaos: Build B2 Kakrafoon

34) Mandrel: Build B3 Quiet

35) agentofchaos: Build G1 Agentofchaos

36) Mandrel: Discover B1 Mandrel G1 Spook

37) agentofchaos: Trade B2 R2 Kakrafoon

38) Mandrel: Move B3 Quiet Kakrafoon



20970)
Variants: "Hard time"
Started: 2011.10.3, Ended: 2011.11.23
Participants: Subhan64 (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld G3 B2 Y3

2) Subhan64: Homeworld G1 B2 Y3

3) AdamBadura: Build Y1 Adambadura

4) Subhan64: Build Y1 Subhan64

5) AdamBadura: Trade Y1 R1 Adambadura

6) Subhan64: Trade Y1 G1 Subhan64

7) AdamBadura: Build Y1 Adambadura

8) Subhan64: Build Y1 Subhan64

9) AdamBadura: Trade Y1 G1 Adambadura

10) Subhan64: Discover G1 Subhan64 Y3 Bigbird

11) AdamBadura: Discover G1 Adambadura Y1 Roadahead

12) Subhan64: Build G2 Bigbird

13) AdamBadura: Build G2 Roadahead

14) Subhan64: Trade Y1 R1 Subhan64

15) AdamBadura: Build Y1 Adambadura

16) Subhan64: Discover R1 Subhan64 G3 Swampthing

17) AdamBadura: Move G2 Roadahead Bigbird

18) Subhan64: Move G2 Bigbird Roadahead

19) AdamBadura: Build G2 Roadahead

20) Subhan64: Build G3 Bigbird

21) AdamBadura: Sacrifice G2 Roadahead
Build G2 Bigbird
Build R1 Adambadura
Catastrophe Bigbird G

22) Subhan64: Sacrifice R1 Swampthing
Attack G1 Roadahead

23) AdamBadura: Move R1 Adambadura Roadahead

24) Subhan64: Discover G1 Roadahead Y2 Roadbehind

25) AdamBadura: Move R1 Roadahead Roadbehind

26) Subhan64: Discover G1 Roadbehind B3 Cookiemonster

27) AdamBadura: Move R1 Roadbehind Cookiemonster

28) Subhan64: Sacrifice G2 Roadahead
Build G1 Cookiemonster
Build G2 Cookiemonster

29) AdamBadura: Attack G1 Cookiemonster

30) Subhan64: Trade G2 R2 Cookiemonster

31) AdamBadura: Build R1 Cookiemonster

32) Subhan64: Attack G1 Cookiemonster

33) AdamBadura: Attack G1 Cookiemonster

34) Subhan64: Attack G1 Cookiemonster

35) AdamBadura: Build R2 Adambadura
	Subhan64: whee! infinite loop!
	AdamBadura: Well. I will have to rethink this seriously. Infinite loop is not a good idea for game. I thought this was my best move (and somehow I did not expect you to continue loop) but maybe I will find a better one.

36) Subhan64: Attack R1 Cookiemonster

37) AdamBadura: Build R2 Adambadura

38) Subhan64: Attack R1 Cookiemonster

39) AdamBadura: Discover R2 Adambadura Y1 Onmyway

40) Subhan64: Trade R1 Y1 Cookiemonster

41) AdamBadura: Trade R2 G2 Adambadura

42) Subhan64: Build G2 Cookiemonster

43) AdamBadura: Build G2 Adambadura

44) Subhan64: Build Y2 Subhan64

45) AdamBadura: Move G2 Adambadura Onmyway

46) Subhan64:
Build Y2 Subhan64

47) AdamBadura: Sacrifice Y3 Adambadura
Move Y1 Adambadura Onmyway
Move Y1 Onmyway Cookiemonster
Move Y1 Cookiemonster Subhan64
Catastrophe Subhan64 Y

	Subhan64: crap, totally missed that, & could have prevented it! Was setting something else up. GG, thanks!
	AdamBadura: Yes. I was kind of glad as I felt I'm going to lose. If not for ladder game I would ask you to undo. ;)
	Subhan64: Yes, I think I was about 1-2 moves from catastrophe in G in your home system



20969)
Variants: "Hard time"
Started: 2011.10.5, Ended: 2011.11.2
Participants: captncavern (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B1 G3

2) captncavern: Homeworld Y3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) captncavern: Build G1 Captncavern

5) SilentTitan: Trade G1 B1 Silenttitan

6) captncavern: Build G1 Captncavern

7) SilentTitan: Build B2 Silenttitan

8) captncavern: Trade G1 R1 Captncavern

9) SilentTitan: Trade B2 Y2 Silenttitan

10) captncavern: Build R1 Captncavern

11) SilentTitan: Build B2 Silenttitan

12) captncavern: Build R1 Captncavern

13) SilentTitan: Discover B2 Silenttitan G3 Sol


14) captncavern: Discover R1 Captncavern Y2 Ichi

15) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Sol
Build B2 Sol
Build B3 Silenttitan

16) captncavern: Build R2 Captncavern

17) SilentTitan: Trade B3 G3 Silenttitan

18) captncavern: Sacrifice G1 Captncavern
Build R2 Ichi

19) SilentTitan: Sacrifice Y2 Silenttitan
Discover B2 Sol Y2 Soul
Discover B2 Sol Y2 Sole

20) captncavern: Move R2 Ichi Sol

21) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Sole
Build B3 Soul
Build B3 Silenttitan

22) captncavern: Attack B2 Sol

23) SilentTitan: Sacrifice B3 Soul
Trade B3 R3 Sole
Trade B3 G3 Silenttitan
Trade B2 G2 Sole

24) captncavern: Trade R1 Y1 Captncavern

25) SilentTitan: Trade B1 Y1 Silenttitan

26) captncavern: Move R2 Captncavern Soul

27) SilentTitan: Sacrifice G2 Sole
Build Y1 Silenttitan
Build Y3 Silenttitan

28) captncavern: Discover R1 Ichi B3 Ni

29) SilentTitan: Move R3 Sole Sol

30) captncavern: Sacrifice R2 Sol
Attack B2 Soul
Pass

31) SilentTitan: Attack B2 Sol South

32) captncavern: Discover R2 Soul Y3 San

33) SilentTitan: Move Y1 Silenttitan Sol

34) captncavern: Move B2 Soul San

35) SilentTitan: Build G1 Silenttitan

36) captncavern: Discover Y1 Captncavern G2 Yon

37) SilentTitan: Sacrifice Y3 Silenttitan
Move R3 Sol Yon
Move R3 Yon San
Move B2 Sol Yon
	captncavern: s y1 captncavern
m r1 ni san

38) captncavern: Move R2 San Yon
	captncavern: Sorry... I keep typing my commands in the wrong box. And this one wasn't even valid :)

39) SilentTitan: Sacrifice R3 San
Attack Y1 Yon South
Attack R2 Yon South
Pass

40) captncavern: Build G1 Captncavern

41) SilentTitan: Build Y2 Yon

42) captncavern: Discover G1 Captncavern Y2 Go

43) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Yon
Build Y3 Silenttitan
Build B1 Yon

44) captncavern: Move G1 Go San

45) SilentTitan: Sacrifice Y2 Yon
Move B1 Yon Captncavern
Move B2 Yon Captncavern

46) captncavern: Attack B2 Captncavern

47) SilentTitan: Sacrifice G1 Silenttitan
Build B2 Captncavern
Catastrophe Captncavern Blue

48) captncavern: Build B1 San
	captncavern: m g1 go san

49) SilentTitan: Move Y1 Sol Yon

50) captncavern: Move B2 San Silenttitan

51) SilentTitan: Sacrifice Y3 Silenttitan
Move Y2 Yon Captncavern
Move Y1 Yon Captncavern
Move Y1 Yon Captncavern
Catastrophe Captncavern Yellow



20986)
Variants: "Hard time"
Started: 2011.10.5, Ended: 2011.10.30
Participants: zoltar (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B2 G3

2) zoltar: H R1 B2 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo
	zoltar: hello!

4) zoltar: Build G1 Zoltar

5) goulo: Trade G3 Y3 Goulo

6) zoltar: Trade G1 Y1 Zoltar

7) goulo: Build G1 Goulo

8) zoltar: Build Y1 Zoltar

9) goulo: Trade G1 R1 Goulo

10) zoltar: Trade Y1 R1 Zoltar

11) goulo: Build R2 Goulo

12) zoltar: Build R2 Zoltar

13) goulo: Discover R1 Goulo G1 Smeraldeto

14) zoltar: Discover R2 Zoltar G3 Greengiant

15) goulo: Build Y1 Goulo

16) zoltar: Discover R1 Zoltar B3 Bluemoon

17) goulo: Trade R2 G2 Goulo

18) zoltar: Trade R1 G1 Bluemoon

19) goulo: Discover G2 Goulo B1 Mirteleto

20) zoltar: Build G2 Zoltar

21) goulo: Trade Y3 G3 Goulo

22) zoltar: Build G2 Bluemoon

23) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build Y1 Goulo
Build Y2 Goulo

24) zoltar: Trade G2 Y2 Bluemoon

25) goulo: Move Y1 Goulo Mirteleto

26) zoltar: Build G2 Bluemoon

27) goulo: Trade Y1 B1 Goulo

28) zoltar: Trade G1 B1 Bluemoon

29) goulo: Build G1 Mirteleto

30) zoltar: Discover B1 Bluemoon Y1 Doomsday

31) goulo: Trade G1 R1 Mirteleto

32) zoltar: Sacrifice G3 Zoltar
Build G1 Bluemoon
Build B2 Doomsday
Build G3 Zoltar

33) goulo: Move B1 Goulo Smeraldeto

34) zoltar: Discover B1 Doomsday R2 Redrover

35) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build B3 Smeraldeto
Build B3 Smeraldeto

36) zoltar: Sacrifice Y1 Zoltar
Move B1 Redrover Smeraldeto
Catastrophe Smeraldeto B

37) goulo: Sacrifice G3 Goulo
Build R2 Smeraldeto
Build Y1 Goulo
Build G3 Goulo

38) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B1 Doomsday
Build B1 Doomsday

39) goulo: Sacrifice G3 Goulo
Build R2 Mirteleto
Build R3 Mirteleto
Build R3 Smeraldeto

	zoltar: gg
	goulo: Cool, thanks. That was a tough good game indeed. I thought you were going to win during most of it. :)


20995)
Variants: "Hard time"
Started: 2011.10.6, Ended: 2011.11.4
Participants: ts52 (S), sompm (N)
Winner: ts52

1) sompm: Homeworld G3 B2 Y3

2) ts52: Homeworld Y1 B2 G3

3) sompm: Build Y1 Sompm
	ts52: have a good game!
	sompm: You as well!

4) ts52: Build G1 Ts52

5) sompm: Discover Y1 Sompm B1 Nero

6) ts52: Trade G1 B1 Ts52

7) sompm: Discover Y1 Nero G3 Constantine

8) ts52: Build G1 Ts52

9) sompm: Build Y1 Constantine

10) ts52: Discover G1 Ts52 B3 Grover

11) sompm: Build Y2 Sompm

12) ts52: Build G1 Ts52

13) sompm: Build Y2 Constantine

14) ts52: Build G1 Ts52

15) sompm: Discover Y2 Constantine G2 Aristarchus

16) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Grover
Build G3 Ts52

17) sompm: Build Y2 Constantine

18) ts52: Trade G3 R3 Ts52

19) sompm: Build Y3 Sompm

20) ts52: Build G3 Ts52

21) sompm: Sacrifice Y3 Sompm
Move Y1 Constantine Ts52
Move Y1 Constantine Ts52
Move Y2 Constantine Ts52
Catastrophe Ts52 Y

22) ts52: Trade G3 Y3 Ts52

23) sompm: Trade Y2 B2 Sompm

24) ts52: B G3 Ts52

25) sompm: Discover B2 Sompm Y1 Hamilton

26) ts52: Sacrifice Y3 Ts52
Move R3 Ts52 Hamilton
Move R3 Hamilton Sompm
Move G2 Grover Hamilton

27) sompm: Sacrifice Y3 Sompm
Move B2 Hamilton Sompm
Move Y2 Aristarchus Hamilton
Move Y2 Hamilton Sompm
	sompm: Oh. Right. Defending and stuff. Whoops. That would explain why you weren't going after my catastrophe buildup.

28) ts52: A Y2 Sompm

29) sompm: Build B1 Sompm

30) ts52: Trade R3 B3 Sompm
Catastrophe Sompm Blue
	ts52: Thanks for the game!
	sompm: You as well.



20993)
Variants: "Hard time"
Started: 2011.10.7, Ended: 2011.11.6
Participants: dlwillson (S), Salmonax (N)
Winner: dlwillson

1) Salmonax: Homeworld G3 B2 Y3

2) dlwillson: H B3 R1 G3

3) Salmonax: Build Y1 Salmonax

4) dlwillson: B G1 Dlwillson

5) Salmonax: Trade Y1 B1 Salmonax
	Salmonax: trade y1 b1 salmonax
	Salmonax: Ohhh, I typed it in the wrong window. =)


6) dlwillson: T G1 Y1 Dlwillson

7) Salmonax: Build B1 Salmonax
	dlwillson: Hehee... 
	dlwillson: Have you got the feel of the SDG interface yet?
	Salmonax: Probably not

8) dlwillson: B G1 Dlwillson

9) Salmonax: Trade B1 G1 Salmonax

10) dlwillson: B Y1 Dlwillson

11) Salmonax: Discover G1 Salmonax B1 S1

12) dlwillson: T Y1 B1 Dlwillson

13) Salmonax: Build B2 Salmonax

14) dlwillson: D B1 Dlwillson G2 Condo

15) Salmonax: Trade B2 G2 Salmonax

16) dlwillson: B B2 Condo

17) Salmonax: Build G1 S1

18) dlwillson: T B2 Y2 Condo

19) Salmonax: Trade G1 Y1 S1

20) dlwillson: B Y1 Condo

21) Salmonax: Build Y2 S1

22) dlwillson: D Y2 Condo R1 Flat

23) Salmonax: Trade G2 R2 Salmonax

24) dlwillson: T G1 R1 Dlwillson

25) Salmonax: Build R2 Salmonax

26) dlwillson: S G3 Dlwillson
Build Y2 Condo
Build Y3 Flat
Build Y3 Dlwillson

27) Salmonax: Move Y1 S1 Condo

28) dlwillson: T Y2 R2 Condo

29) Salmonax: Build Y2 Condo

30) dlwillson: A Y2 Condo

31) Salmonax: Build G1 S1
	dlwillson: Are you sure you want to build a y2 there? I'm ok with out, but want to confirm that's what you meant to do.
	Salmonax: Yep, that's what I wanted.  And it won't let me undo now anyway. =)


32) dlwillson: A Y1 Condo
	dlwillson: Ok, sorry...
	Salmonax: Ah, I counted wrong, thought there were more yellow in the bank.

33) Salmonax: Move Y2 S1 Condo
Catastrophe Condo Yellow

34) dlwillson: Build R3 Condo
	Salmonax: Lykke Li in town on Nov 11

35) Salmonax: Trade R2 G2 Salmonax

36) dlwillson: T R2 Y2 Condo

37) Salmonax: Trade G1 Y1 S1

38) dlwillson: T R1 G1 Dlwillson
	dlwillson: Tix are about $40. If you're going, I'll go.

39) Salmonax: Build Y1 S1
	Salmonax: Sounds good, should I just pick up two?
	dlwillson: Sure! I'll pay you back when we go. K?

40) dlwillson: B Y2 Condo
	Salmonax: Where do I find forty dollar tickets?  Only saw fifty


41) Salmonax: Build R1 Salmonax
	dlwillson: http://m.ticketmaster.com/event/2C0046F9DFED4594

42) dlwillson: B B2 Condo

43) Salmonax: Move R1 Salmonax S1
	dlwillson: Did you get the link?

44) dlwillson: M B2 Condo S1
	Salmonax: Got it, checking it out now.

	Salmonax: Oh, I have to call them.  I'll do it during the day tomorrow.

45) Salmonax: Build R2 S1

46) dlwillson: S R3 Condo
A R2 S1
A R1 S1
A G1 S1

47) Salmonax: Sacrifice Y1 S1
Move Y1 S1 Condo

48) dlwillson: S Y2 Condo
M B2 S1 Salmonax
M G1 S1 Salmonax
	Salmonax: I'm pretty well outnumbered now...

49) Salmonax: Sacrifice B1 Salmonax
Trade G2 R2 Salmonax

50) dlwillson: S R2 S1
A R2 Salmonax
A R2 Salmonax
	dlwillson: Not for long... :-)
	Salmonax: Pretty stuck, don't laugh at the next dumb moves I make. =)


51) Salmonax: Build Y1 Condo
	dlwillson: Huh. Interesting!

52) dlwillson: M Y3 Flat Salmonax
	Salmonax: Only saved me for one turn though.
	Salmonax: oops, sorry, didn't realize I hadn't made a move.

53) Salmonax: Move Y1 Condo Dlwillson

54) dlwillson: S R1 S1
A Y3 Salmonax
	dlwillson: I think that's checkmate.

	Salmonax: Yeah, pretty sure.
	dlwillson: Good game. See you Friday.
	Salmonax: gg


20974)
Started: 2011.10.8, Ended: 2011.12.29
Participants: SirRuthvenMurgatroyd (S), agentofchaos (N)
Winner: SirRuthvenMurgatroyd

1) agentofchaos: Homeworld B1 R2 G3

2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3

3) agentofchaos: Build G1 Agentofchaos

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) agentofchaos: T G1 Y1 Agentofchaos

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol

7) agentofchaos: Build Y1 Agentofchaos

8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

9) agentofchaos: Build Y2 Agentofchaos

10) SirRuthvenMurgatroyd: Build G1 Sol

11) agentofchaos: Build G2 Agentofchaos

12) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse

13) agentofchaos: Trade G2 R2 Agentofchaos

14) SirRuthvenMurgatroyd: Build G2 Betelgeuse

15) agentofchaos: Move R2 Agentofchaos Betelgeuse

16) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd
Build G2 Sirruthvenmurgatroyd
Build G2 Sol
Build G3 Sirruthvenmurgatroyd

17) agentofchaos: Build G3 Agentofchaos

18) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd

19) agentofchaos: Discover G3 Agentofchaos Y3 Aeonoia

20) SirRuthvenMurgatroyd: Build G3 Betelgeuse

21) agentofchaos: Sacrifice Y2 Agentofchaos
Move G3 Aeonoia Sol
Move G3 Sol Betelgeuse
Catastrophe Betelgeuse G

22) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd

23) agentofchaos: Build Y2 Agentofchaos

24) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

25) agentofchaos: Move Y1 Agentofchaos Betelgeuse

26) SirRuthvenMurgatroyd: Trade Y2 B2 Sirruthvenmurgatroyd

27) agentofchaos: Build Y2 Agentofchaos

28) SirRuthvenMurgatroyd: Discover G2 Sol Y3 Alpha

29) agentofchaos: Move Y1 Agentofchaos Betelgeuse

30) SirRuthvenMurgatroyd: Discover Y3 Sirruthvenmurgatroyd B1 Beta

31) agentofchaos: Move R2 Betelgeuse Sol

32) SirRuthvenMurgatroyd: Move G1 Sol Betelgeuse

33) agentofchaos: Move R2 Sol Betelgeuse

34) SirRuthvenMurgatroyd: Sacrifice B2 Sirruthvenmurgatroyd
Trade G1 Y1 Betelgeuse
Pass
Catastrophe Betelgeuse Y

35) agentofchaos: Trade Y2 R2 Agentofchaos

36) SirRuthvenMurgatroyd: Build G1 Alpha

37) agentofchaos: Build G1 Agentofchaos

38) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

39) agentofchaos: Trade G1 Y1 Agentofchaos

40) SirRuthvenMurgatroyd: Build G1 Alpha

41) agentofchaos: Discover Y2 Agentofchaos B3 Gruvann

42) SirRuthvenMurgatroyd: Move G1 Alpha Beta

43) agentofchaos: Build G2 Agentofchaos

44) SirRuthvenMurgatroyd: Build G3 Beta

45) agentofchaos: D G2 Agentofchaos Y3 Blackguard

46) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd

47) agentofchaos: Build Y1 Agentofchaos

48) SirRuthvenMurgatroyd: Discover G2 Sirruthvenmurgatroyd B1 Gamma

49) agentofchaos: Move R2 Agentofchaos Gruvann

50) SirRuthvenMurgatroyd: Trade G2 B2 Gamma

51) agentofchaos: Build G2 Blackguard

52) SirRuthvenMurgatroyd: Move G1 Alpha Agentofchaos

53) agentofchaos: Sacrifice Y2 Gruvann
Move G2 Blackguard Beta
Move G2 Blackguard Beta
Catastrophe Beta G

54) SirRuthvenMurgatroyd: Sacrifice G2 Alpha
Build G1 Agentofchaos
Build G2 Agentofchaos
Catastrophe Agentofchaos G

55) agentofchaos: Trade Y1 G1 Agentofchaos

56) SirRuthvenMurgatroyd: Discover Y3 Beta B3 Delta

	agentofchaos: well played


20989)
Started: 2011.10.8, Ended: 2011.11.14
Participants: ts52 (S), agentofchaos (N)
Winner: ts52

1) agentofchaos: Homeworld B1 R3 G3

2) ts52: Homeworld Y1 B2 G3

3) agentofchaos: Build G1 Agentofchaos
	ts52: have a good game!

4) ts52: Build G1 Ts52
	agentofchaos: Thanks, you too

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) ts52: Trade G1 Y1 Ts52

7) agentofchaos: Build Y2 Agentofchaos

8) ts52: Discover Y1 Ts52 G3 Kermit

9) agentofchaos: Discover Y2 Agentofchaos G2 Shiyai

10) ts52: Build Y2 Kermit

11) agentofchaos: Build Y2 Shiyai

12) ts52: Discover Y1 Kermit G2 Robin

13) agentofchaos: Discover Y1 Agentofchaos G2 Kakrafloon

14) ts52: Build Y3 Robin

15) agentofchaos: Build Y3 Kakrafloon

16) ts52: Build G1 Ts52

17) agentofchaos: Build G1 Agentofchaos

18) ts52: Trade G1 B1 Ts52

19) agentofchaos: Trade G1 B1 Agentofchaos

20) ts52: Move B1 Ts52 Kermit

21) agentofchaos: Move Y1 Kakrafloon Agentofchaos

22) ts52: Build Y3 Kermit

23) agentofchaos: M B1 Agentofchaos Kakrafloon

24) ts52: Build B2 Kermit

25) agentofchaos: Build B2 Kakrafloon

26) ts52: Move B2 Kermit Robin

27) agentofchaos: Trade B1 R1 Kakrafloon

28) ts52: Trade Y2 R2 Kermit

29) agentofchaos: Build Y2 Kakrafloon

30) ts52: Build R1 Kermit

31) agentofchaos: Discover Y2 Shiyai B3 Wopolsa

32) ts52: Move Y3 Robin Wopolsa

33) agentofchaos: Discover Y2 Wopolsa R2 Grrindah

34) ts52: Build G1 Ts52

35) agentofchaos: Build G1 Agentofchaos

36) ts52: Move G1 Ts52 Wopolsa

37) agentofchaos: Trade G1 R1 Agentofchaos

38) ts52: Build G1 Ts52

39) agentofchaos: Build G1 Agentofchaos

40) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Kermit
Build B3 Robin

41) agentofchaos: B B3 Kakrafloon

42) ts52: Trade B3 R3 Robin

43) agentofchaos: B R2 Kakrafloon

44) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Robin
Build B3 Robin

	agentofchaos: You've got me here, well played
	ts52: Thanks for the game!


20979)
Variants: "Hard time"
Started: 2011.10.8, Ended: 2011.10.19
Participants: tcw (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) tcw: Homeworld B1 R2 G3

3) SilentTitan: Build G1 Silenttitan

4) tcw: Build G1 Tcw

5) SilentTitan: Trade G1 Y1 Silenttitan

6) tcw: Build G1 Tcw
	SilentTitan: aw... did you put us in a tiny universe ... I just noticed... 

7) SilentTitan: Build Y1 Silenttitan

8) tcw: Trade G1 Y1 Tcw

9) SilentTitan: Discover Y1 Silenttitan G3 Sol

10) tcw: Build Y2 Tcw

11) SilentTitan: Build Y2 Silenttitan

12) tcw: Trade Y2 R2 Tcw

13) SilentTitan: Build G1 Silenttitan

14) tcw: Move R2 Tcw Sol

15) SilentTitan: Discover Y1 Sol G2 Soul

16) tcw: Build Y2 Tcw

17) SilentTitan: Discover Y1 Silenttitan B3 Sole

18) tcw: Trade Y2 G2 Tcw

19) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Silenttitan Sol
Move G1 Sol Tcw
Catastrophe Tcw Green

20) tcw: Trade Y1 G1 Tcw

21) SilentTitan: Build Y1 Soul

22) tcw: Build G1 Tcw

23) SilentTitan: Build Y2 Soul



20999)
Variants: "Hard time"
Started: 2011.10.8, Ended: 2011.11.3
Participants: BloodRumpus (S), meckanical (N)
Winner: BloodRumpus

1) meckanical: Homeworld B2 R3 G3

2) BloodRumpus: Homeworld G2 Y1 B3

3) meckanical: Build G1 Meckanical

4) BloodRumpus: Build B1 Bloodrumpus

5) meckanical: Trade G1 B1 Meckanical

6) BloodRumpus: Trade B1 Y1 Bloodrumpus

7) meckanical: Build B1 Meckanical

8) BloodRumpus: Discover Y1 Bloodrumpus G3 Hope

9) meckanical: Trade B1 Y1 Meckanical

10) BloodRumpus: Build Y2 Hope

11) meckanical: Build Y2 Meckanical

12) BloodRumpus: Build B1 Bloodrumpus

13) meckanical: Trade Y2 R2 Meckanical

14) BloodRumpus: Build Y2 Hope



21000)
Variants: "Hard time"
Started: 2011.10.15, Ended: 2011.11.12
Participants: agentofchaos (S), SilentTitan (N)
Winner: agentofchaos

1) SilentTitan: Homeworld R1 B2 G3

2) agentofchaos: Homeworld B1 R3 G3

3) SilentTitan: Build G1 Silenttitan

4) agentofchaos: Build G1 Agentofchaos

5) SilentTitan: Trade G1 Y1 Silenttitan

6) agentofchaos: Build G1 Agentofchaos

7) SilentTitan: Build Y1 Silenttitan

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) SilentTitan: Build G1 Silenttitan

10) agentofchaos: B Y2 Agentofchaos

11) SilentTitan: Discover Y1 Silenttitan G3 Sol

12) agentofchaos: Discover Y2 Agentofchaos G2 Terraplasm

13) SilentTitan: Discover G1 Silenttitan Y3 Sole

14) agentofchaos: Build Y2 Agentofchaos

15) SilentTitan: Build Y2 Sol

16) agentofchaos: Build Y3 Terraplasm

17) SilentTitan: Build Y3 Silenttitan

18) agentofchaos: Trade G1 R1 Agentofchaos

19) SilentTitan: Sacrifice Y2 Sol
Discover G1 Sole Y2 Taos
Discover Y1 Sol G2 Tyan

20) agentofchaos: Build Y3 Terraplasm

21) SilentTitan: Sacrifice Y3 Silenttitan
Discover Y1 Tyan B3 Moot
Move Y1 Moot Terraplasm
Pass
Catastrophe Terraplasm Yellow

22) agentofchaos: Move Y2 Agentofchaos Taos

23) SilentTitan: Discover G1 Taos Y3 Sol

24) agentofchaos: Move Y2 Taos Sol

25) SilentTitan: Discover G1 Sol Y2 Taos

26) agentofchaos: Build R1 Agentofchaos

27) SilentTitan: Discover G1 Taos Y3 Sole

28) agentofchaos: Discover R1 Agentofchaos Y2 Wopolsa

29) SilentTitan: Build G1 Silenttitan

30) agentofchaos: Build R2 Agentofchaos

31) SilentTitan: Discover G1 Silenttitan Y3 Soul

32) agentofchaos: Trade R2 Y2 Agentofchaos

33) SilentTitan: Build G1 Silenttitan

34) agentofchaos: Build G2 Agentofchaos

35) SilentTitan: Build G2 Silenttitan

36) agentofchaos: Sacrifice G2 Agentofchaos
Build R2 Wopolsa
Build R2 Wopolsa

37) SilentTitan: Trade G2 R2 Silenttitan

38) agentofchaos: Build R3 Agentofchaos

39) SilentTitan: Build Y1 Silenttitan

40) agentofchaos: M R2 Wopolsa Soul

41) SilentTitan: Move G3 Silenttitan Soul

42) agentofchaos: Sacrifice Y2 Sol
Move R2 Soul Silenttitan
Move R2 Wopolsa Sole

43) SilentTitan: Attack R2 Silenttitan South

44) agentofchaos: M R2 Sole Silenttitan
Catastrophe Silenttitan R

45) SilentTitan: Trade Y1 R1 Silenttitan

46) agentofchaos: M R3 Agentofchaos Silenttitan

47) SilentTitan: Sacrifice G3 Soul
Build R2 Silenttitan
Build R2 Silenttitan
Build G2 Silenttitan
Catastrophe Silenttitan Red
	SilentTitan: good game

48) agentofchaos: Move G3 Agentofchaos Silenttitan

49) SilentTitan: Build G2 Silenttitan
Catastrophe Silenttitan Green

50) agentofchaos: Move Y2 Agentofchaos Silenttitan
	agentofchaos: Thanks, good game

51) SilentTitan: Move G1 Soul Silenttitan

52) agentofchaos: T Y2 R2 Silenttitan

53) SilentTitan: Build G1 Silenttitan

54) agentofchaos: Attack Y1 Silenttitan

55) SilentTitan: Build G2 Sole

56) agentofchaos: Attack G1 Silenttitan

57) SilentTitan: Sacrifice G2 Sole
Build G2 Silenttitan
Build G2 Sole

58) agentofchaos: Build G2 Silenttitan
Catastrophe Silenttitan G

	agentofchaos: Thanks, great game :-)
	SilentTitan: Thank you ... you too.


21023)
Variants: "No undo"
Started: 2011.10.15, Ended: 2012.1.23
Participants: ajo (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y2 G3



21002)
Started: 2011.10.16, Ended: 2012.1.18
Participants: SirRuthvenMurgatroyd (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld R1 B2 G3

2) SirRuthvenMurgatroyd: Homeworld Y3 B2 G3

3) agentofchaos: Build G1 Agentofchaos

4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol

7) agentofchaos: Build Y1 Agentofchaos

8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

9) agentofchaos: Build Y2 Agentofchaos

10) SirRuthvenMurgatroyd: Build G1 Sol

11) agentofchaos: Build G2 Agentofchaos

12) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse

13) agentofchaos: Trade G2 R2 Agentofchaos

14) SirRuthvenMurgatroyd: Build G2 Betelgeuse

15) agentofchaos: M R2 Agentofchaos Betelgeuse

16) SirRuthvenMurgatroyd: Build G2 Sol

17) agentofchaos: Attack G2 Betelgeuse

18) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd

19) agentofchaos: Attack G1 Betelgeuse

20) SirRuthvenMurgatroyd: Move G2 Sol Sirruthvenmurgatroyd

21) agentofchaos: S G2 Betelgeuse
Build R1 Betelgeuse
Build G2 Agentofchaos

22) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd

23) agentofchaos: Trade Y1 R1 Agentofchaos

24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

25) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Betelgeuse
Build G3 Agentofchaos
Build R2 Betelgeuse

26) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd

27) agentofchaos: Discover R2 Betelgeuse Y1 Huvaloo

28) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

29) agentofchaos: Sacrifice G3 Agentofchaos
Build Y3 Agentofchaos
Build R3 Agentofchaos
Build G3 Agentofchaos

30) SirRuthvenMurgatroyd: Build G3 Sol

31) agentofchaos: Sacrifice G2 Agentofchaos
Build R3 Huvaloo
Build G2 Agentofchaos

32) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd
Discover Y2 Sirruthvenmurgatroyd B1 Alpha
Move R2 Sirruthvenmurgatroyd Alpha

33) agentofchaos: Discover R3 Agentofchaos B3 Barrowdrob

34) SirRuthvenMurgatroyd: Discover G3 Sol B3 Beta

35) agentofchaos: Move Y3 Agentofchaos Barrowdrob

36) SirRuthvenMurgatroyd: Build G3 Beta

37) agentofchaos: Move G2 Agentofchaos Barrowdrob

38) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd
Build G2 Sirruthvenmurgatroyd
Build Y2 Alpha

39) agentofchaos: Move R3 Barrowdrob Alpha

40) SirRuthvenMurgatroyd: Sacrifice Y2 Alpha
Move Y2 Alpha Beta
Move R2 Alpha Beta

41) agentofchaos: Build Y2 Barrowdrob

42) SirRuthvenMurgatroyd: Discover G1 Sol B3 Gamma

43) agentofchaos: Discover R1 Betelgeuse Y1 Rhomgroon

44) SirRuthvenMurgatroyd: Trade G1 B1 Gamma

45) agentofchaos: Sacrifice Y3 Barrowdrob
Move R1 Rhomgroon Sirruthvenmurgatroyd
Move R2 Huvaloo Sirruthvenmurgatroyd
Move R3 Alpha Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd R

46) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd

47) agentofchaos: Move R3 Huvaloo Sirruthvenmurgatroyd

48) SirRuthvenMurgatroyd: Sacrifice G3 Beta
Build R2 Sirruthvenmurgatroyd
Build R3 Sirruthvenmurgatroyd
Build R3 Beta
Catastrophe Sirruthvenmurgatroyd R

49) agentofchaos: Move R1 Agentofchaos Betelgeuse

50) SirRuthvenMurgatroyd: Build G1 Beta

51) agentofchaos: Trade Y1 B1 Agentofchaos

52) SirRuthvenMurgatroyd: Build Y1 Beta

53) agentofchaos: Build Y1 Barrowdrob

54) SirRuthvenMurgatroyd: Sacrifice Y2 Beta
Discover R3 Beta R1 Blah
Move R3 Blah Barrowdrob

55) agentofchaos: Sacrifice Y2 Barrowdrob
Discover G2 Barrowdrob Y1 Kirril
Discover Y1 Barrowdrob B1 Threndor

56) SirRuthvenMurgatroyd: Move G1 Beta Agentofchaos

57) agentofchaos: Attack G1 Agentofchaos

58) SirRuthvenMurgatroyd: Build Y2 Beta

59) agentofchaos: Sacrifice G3 Agentofchaos
Build G1 Betelgeuse
Build G3 Kirril
Build G3 Agentofchaos

60) SirRuthvenMurgatroyd: Sacrifice Y2 Beta
Move Y1 Beta Kirril
Move Y1 Kirril Sirruthvenmurgatroyd

61) agentofchaos: Move G3 Kirril Sirruthvenmurgatroyd

62) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

63) agentofchaos: Move Y1 Threndor Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Y



21016)
Variants: "Sinister"
Started: 2011.10.23, Ended: 2012.1.12
Participants: lorgar (S), daselva (N), raster51 (E)
Winner: daselva

1) daselva: Homeworld B1 R2 G3

2) raster51: Homeworld G1 B2 R3

3) lorgar: Homeworld Y3 G2 B3

4) daselva: Build G1 Daselva

5) raster51: Build R1 Raster51

6) lorgar: Build B1 Lorgar

7) daselva: Build G1 Daselva

8) raster51: Build R1 Raster51

9) lorgar: Trade B1 R1 Lorgar

10) daselva: Trade G1 Y1 Daselva

11) raster51: Trade R1 Y1 Raster51

12) lorgar: Build B1 Lorgar

13) daselva: Build G1 Daselva

14) raster51: Build R1 Raster51

15) lorgar: Trade B1 G1 Lorgar

16) daselva: Discover G1 Daselva R3 S1

17) raster51: Discover R1 Raster51 G3 S2

18) lorgar: Discover G1 Lorgar B1 Khayam

19) daselva: Build G2 S1

20) raster51: Build R1 S2

21) lorgar: Build G2 Khayam

22) daselva: Trade G1 B1 Daselva

23) raster51: Build R2 S2

24) lorgar: Trade G2 R2 Khayam

25) daselva: Sacrifice B1 Daselva
Trade G2 Y2 S1

26) raster51: Build R2 Raster51

27) lorgar: Build G1 Khayam

28) daselva: Build G2 S1

29) raster51: Discover R2 Raster51 R3 Mars

30) lorgar: Trade G1 Y1 Khayam

31) daselva: Trade G3 B3 Daselva

32) raster51: Build R3 Raster51

33) lorgar: Build G1 Khayam

34) daselva: Sacrifice G1 S1
Build B1 Daselva

35) raster51: Move R3 Raster51 Mars

36) lorgar: Discover G1 Khayam B3 Ramo

37) daselva: Move B1 Daselva S1

38) raster51: Move Y1 Raster51 Mars

39) lorgar: Move R2 Khayam Mars
Catastrophe Mars Red

40) daselva: Build B1 S1

41) raster51: Trade R1 Y1 Raster51

42) lorgar: Build B2 Lorgar

43) daselva: Build B2 S1

44) raster51: Pass

45) lorgar: Build G1 Khayam

46) daselva: Sacrifice Y2 S1
Move B1 S1 Raster51
Move B1 S1 Raster51

47) raster51: Attack B1N Raster51

48) lorgar: Discover G1 Khayam B3 Tarama

49) daselva: Sacrifice Y1 Daselva
Move B2 S1 Raster51
Catastrophe Raster51 B

50) raster51: Build Y1 Raster51

51) lorgar: Build G2 Ramo

52) daselva: Trade B3 G3 Daselva

53) raster51: Move Y1 Raster51 S2

54) lorgar: Trade G1 Y1 Ramo

55) daselva: Build G1 Daselva

56) raster51: Move R1 S2 Raster51

57) lorgar: Build Y2 Ramo

58) daselva: Trade G3 Y3 Daselva

59) raster51: Build Y2 Raster51

60) lorgar: Build G2 Ramo

61) daselva: Build G3 S1

62) raster51: Discover Y1 Raster51 B3 Vi1

63) lorgar: Sacrifice G2 Ramo
Build G2 Khayam
Build G3 Ramo

64) daselva: Build Y2 Daselva


65) raster51: Trade Y1 B1 Vi1

66) lorgar: Build G3 Tarama

67) daselva: Move G1 Daselva Vi1

68) raster51: Move Y2 Raster51 Vi1

69) lorgar: Move Y1 Ramo Daselva

70) daselva: Sacrifice Y3 Daselva
Move G3 S1 Raster51
Move G2 S1 Raster51
Move G1 Vi1 Raster51
Catastrophe Raster51 G

	daselva: thanks for playing


21028)
Variants: "Hard time"
Started: 2011.10.27, Ended: 2011.11.17
Participants: jsb (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B1 R2 G3

2) jsb: Homeworld Y1 B3 G3

3) SilentTitan: Build G1 Silenttitan

4) jsb: Build G1 Jsb

5) SilentTitan: Trade G1 Y1 Silenttitan

6) jsb: Discover G1 Jsb Y2 Larch

7) SilentTitan: Build Y1 Silenttitan

8) jsb: Build G1 Larch

9) SilentTitan: Build Y2 Silenttitan

10) jsb: Discover G1 Larch B3 Pine

11) SilentTitan: Trade Y2 R2 Silenttitan

12) jsb: Build G1 Jsb

13) SilentTitan: Move Y1 Silenttitan Pine
	SilentTitan: so adam tells me this is like your second game of this... any questions I can answer?

14) jsb: Trade G1 R1 Pine

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Pine
Build Y2 Silenttitan
Build Y3 Silenttitan
	jsb: Hey, Silent - no big ?'s right now. I'm just feeling my way through the game a bit, and am hoping to lose enough games that I eventually figure out what works and what doesn't. 


16) jsb: Attack Y1N Pine
	jsb: attack y1n pine


17) SilentTitan: Sacrifice R2 Silenttitan
Attack Y1 Pine South
Attack R1 Pine South
	jsb: My mistake - typed into the wrong textarea. 
	SilentTitan: no problem ....we've all done it

18) jsb: Trade G1 R1 Jsb

19) SilentTitan: Discover Y1 Silenttitan G3 Sol

20) jsb: Build G1 Larch

21) SilentTitan: Build Y3 Sol

22) jsb: Discover G1 Larch B3 Oak

23) SilentTitan: Build Y3 Sol

24) jsb: Move G1 Larch Oak

25) SilentTitan: Trade Y2 G2 Silenttitan

26) jsb: Trade G1 R1 Oak

27) SilentTitan: Discover Y3 Sol Y2 Alpha

28) jsb: Build R2 Jsb

29) SilentTitan: Discover Y3 Sol Y2 Beta

30) jsb: Move R2 Jsb Beta

31) SilentTitan: Sacrifice R1 Pine
Attack R2 Beta South

32) jsb: Build G1 Jsb

33) SilentTitan: Sacrifice Y2 Pine
Move Y3 Alpha Jsb
Move Y3 Beta Jsb



21074)
Variants: "Hard time"
Started: 2011.10.29, Ended: 2011.10.29
Participants: SilentTitan (S), Harvey (N)
Winner: SilentTitan



21087)
Variants: "Hard time"
Started: 2011.10.30, Ended: 2011.11.19
Participants: agentofchaos (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) agentofchaos: Homeworld B1 R3 G3
	SilentTitan: What? you have me on the ropes in one game ... so you start another .... oh... will the punishment never end.  

3) SilentTitan: Build G1 Silenttitan
	agentofchaos: On the other hand this could be your opportunity for payback! 

4) agentofchaos: Build G1 Agentofchaos

5) SilentTitan: Trade G1 Y1 Silenttitan

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) SilentTitan: Build G1 Silenttitan

8) agentofchaos: Build G1 Agentofchaos

9) SilentTitan: Trade G1 R1 Silenttitan

10) agentofchaos: Trade G1 R1 Agentofchaos

11) SilentTitan: Build R2 Silenttitan

12) agentofchaos: B R2 Agentofchaos

13) SilentTitan: Trade R2 Y2 Silenttitan

14) agentofchaos: Trade R2 Y2 Agentofchaos

15) SilentTitan: Build G1 Silenttitan

16) agentofchaos: B R2 Agentofchaos

17) SilentTitan: Discover Y2 Silenttitan G3 Sol

18) agentofchaos: Discover R2 Agentofchaos Y2 Glaxo

19) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y3 Silenttitan
Build Y3 Silenttitan

20) agentofchaos: B G1 Agentofchaos

21) SilentTitan: Trade Y3 B3 Silenttitan

22) agentofchaos: Move G1 Agentofchaos Glaxo

23) SilentTitan: Build Y3 Silenttitan

24) agentofchaos: Discover Y1 Agentofchaos G2 Gelfhome

25) SilentTitan: Sacrifice Y2 Sol
Move B3 Silenttitan Sol
Discover Y3 Silenttitan R3 Sole

26) agentofchaos: Build R2 Glaxo

27) SilentTitan: Move B3 Sol Glaxo



21112)
Variants: "Unrated, Sinister"
Started: 2011.11.4, Ended: 2011.11.28
Participants: johannz (S), jh3 (N), jsb (E)
Winner: jsb

1) jh3: Homeworld G3 B1 R3

2) jsb: Homeworld B1 G2 Y3

3) johannz: Homeworld B3 G2 Y3
	jsb: Which way is "left" in this?

4) jh3: Build R1 Jh3

5) jsb: Build Y1 Jsb

6) johannz: Build Y1 Johannz

7) jh3: Trade R1 Y1 Jh3

8) jsb: Trade Y1 B1 Jsb

9) johannz: Discover Y1 Johannz G1 Sparkles

10) jh3: Build Y1 Jh3

11) jsb: Discover B1 Jsb G3 Tomato

12) johannz: Build Y1 Sparkles

13) jh3: Trade Y1 B1 Jh3

14) jsb: Build B2 Tomato
	jh3: Which way is left?


15) johannz: Build Y1 Johannz
	johannz: I think that johannz is attacking jh3, jh3 is attacking jsb, and jsb is attacking johannz

16) jh3: Discover B1 Jh3 G2 Sparkly_tomato
	jsb: Does the game end when one person defeats the person to their left, or is it last-man-standing?


17) jsb: Build Y2 Jsb

18) johannz: Build Y2 Sparkles
	johannz: As soon as someone kills the player to their left, the game ends in their victory. If you eliminate the player to your right, the game continues.

19) jh3: Build B2 Sparkly_tomato

20) jsb: Discover Y2 Jsb G3 Riker

21) johannz: Trade Y3 B3 Johannz

22) jh3: Trade B2 Y2 Sparkly_tomato

23) jsb: Move Y2 Riker Sparkles
Catastrophe Sparkles Y

24) johannz: Build B2 Johannz

25) jh3: Build B2 Sparkly_tomato

26) jsb: Build Y1 Jsb

27) johannz: Trade B2 R2 Johannz

28) jh3: Discover B1 Sparkly_tomato G1 Spark1y_tomato

29) jsb: Trade B2 G2 Tomato

30) johannz: Build Y1 Johannz

31) jh3: Build B2 Sparkly_tomato

32) jsb: Build Y2 Jsb

33) johannz: Build Y2 Johannz

34) jh3: Move Y2 Sparkly_tomato Spark1y_tomato

35) jsb: Discover Y2 Jsb B3 Mongo

36) johannz: Trade Y1 G1 Johannz

37) jh3: Trade B2 Y2 Sparkly_tomato

38) jsb: Move Y2 Mongo Spark1y_tomato

39) johannz: Build R1 Johannz

40) jh3: Move B2 Sparkly_tomato Spark1y_tomato

41) jsb: Build B2 Tomato

42) johannz: Sacrifice Y2 Johannz
Move R2 Johannz Spark1y_tomato
Move R2 Spark1y_tomato Tomato

43) jh3: Discover B1 Spark1y_tomato G3 Cucumber

44) jsb: Sacrifice Y2 Spark1y_tomato
Discover G2 Tomato Y1 Nickel
Move B2 Tomato Nickel

45) johannz: Build Y2 Johannz

46) jh3: Move B2 Spark1y_tomato Cucumber

47) jsb: Trade Y3 R3 Jsb

48) johannz: Attack B1E Tomato

49) jh3: Move Y2 Spark1y_tomato Cucumber

50) jsb: Move B2 Nickel Cucumber

51) johannz: Build B2 Tomato

52) jh3: Build Y2 Cucumber

53) jsb: Build B2 Cucumber
Catastrophe Cucumber Blue
	johannz: sorry, missed the email that it was my turn.

54) johannz: Build Y3 Johannz

55) jh3: Build R1 Jh3

56) jsb: Build G1 Nickel

57) johannz: Sacrifice Y3 Johannz
Move G1 Johannz Nickel
Move B1 Tomato Jsb
Move B2 Tomato Jsb

58) jh3: Move R1 Jh3 Sparkly_tomato

59) jsb: Sacrifice G2 Nickel
Build Y3 Jsb
Build R1 Jsb

60) johannz: Build B1 Jsb
Catastrophe Jsb B

61) jh3: Sacrifice Y2 Sparkly_tomato
Move Y2 Cucumber Jsb
Move Y2 Cucumber Jsb
Catastrophe Jsb Y

62) jsb: Discover G1 Nickel B2 Quarter

63) johannz: Discover G1 Nickel Y2 Dime

64) jh3: Build Y1 Jh3

65) jsb: Build G1 Quarter

66) johannz: Build G1 Dime

67) jh3: Trade Y1 B1 Jh3

68) jsb: Trade G1 Y1 Quarter

69) johannz: Sacrifice Y2 Johannz
Move G1 Dime Jh3
Move G1 Dime Jh3

70) jh3: Attack G1S Jh3

71) jsb: Build G1 Quarter

72) johannz: Build G2 Jh3
Catastrophe Jh3 G

73) jh3: Trade B1 G1 Jh3

74) jsb: Trade G1 B1 Quarter

75) johannz: Build B1 Johannz

76) jh3: Build R1 Jh3

77) jsb: Discover B1 Quarter G1 Penny

78) johannz: Move R1 Johannz Jh3

79) jh3: Discover R1 Jh3 G2 Farthing

80) jsb: Sacrifice Y1 Quarter
Move B1 Penny Johannz
Catastrophe Johannz Blue

81) johannz: Build Y1 Johannz

82) jh3: Attack R1S Jh3

83) jsb: Sacrifice R1 Jsb
Pass

84) johannz: Build R1 Tomato
	jsb: Adam, if you wanted to, could you sacrifice y1 at home to move r2 from tomato home? You'd be shipless at home briefly but would not end your turn shipless. 

	jsb: Adam, if you wanted to, could you sacrifice y1 at home to move r2 from tomato home? You'd be shipless at home briefly but would not end your turn shipless. 

	johannz: When the last ship leaves a system it instantly is lost. 

85) jh3: Move R1 Jh3 Farthing

86) jsb: Build G1 Quarter

87) johannz: Move Y1 Johannz Tomato

88) jh3: Build G1 Jh3

89) jsb: Trade G1 Y1 Quarter

90) johannz: Discover R1 Tomato B2 Pence

91) jh3: Move G1 Jh3 Farthing

92) jsb: Build Y2 Quarter

93) johannz: Move R2 Tomato Quarter

94) jh3: Build Y2 Jh3

95) jsb: Sacrifice Y2 Quarter
Discover Y1 Quarter B3 Euro
Move G1 Quarter Euro

96) johannz: Build Y2 Tomato

97) jh3: Move Y2 Jh3 Farthing

98) jsb: Build Y2 Euro

99) johannz: Build Y2 Johannz

100) jh3: Build G1 Jh3

101) jsb: Build G3 Euro

102) johannz: Discover Y1 Johannz G3 Occupyjustin

103) jh3: Sacrifice Y2 Farthing
Move G1 Jh3 Johannz
Move G1 Jh3 Johannz

104) jsb: Move G1 Euro Johannz
Catastrophe Johannz Green

	jsb: Good game, everybody. 
	jh3: I'm happy I kept my home world intact.


21114)
Started: 2011.11.5, Ended: 2011.11.9
Participants: disaac (S), Onii77 (N)
Winner: disaac

1) Onii77: Homeworld G3 B2 Y3

2) disaac: H G3 Y1 B3
	disaac: h LG SY LB
	disaac: h g3 y1 B3

3) Onii77: Build Y1 Onii77

4) disaac: Build B1 Disaac

5) Onii77: Build Y1 Onii77
	disaac: OK. I am starting to get the hang of the commands a bit now.

6) disaac: B B1 Disaac

7) Onii77: Trade Y1 G1 Onii77

8) disaac: Discover B1 Disaac G2 Peace
	Onii77: Oh lol. I didn't even see the chat before..

9) Onii77: Discover G1 Onii77 B1 Profit

10) disaac: B B2 Peace

11) Onii77: Build G1 Profit

12) disaac: Trade B2 Y2 Peace

13) Onii77: Trade Y1 R1 Onii77
	Onii77: April and Sam are home. The game is going to slow down. I have chores :)
	disaac: understood. If you want to drop it that is fine.
	disaac: I will leave mine up for now, and if you want to resume, you can send a text to my phone.

14) disaac: Trade B3 R3 Disaac

15) Onii77: Trade G1 R1 Profit

16) disaac: Build B2 Peace

17) Onii77: Build Y1 Onii77

18) disaac: Trade B2 R2 Peace

19) Onii77: Move Y1 Onii77 Profit

20) disaac: Move R2 Peace Profit

21) Onii77: Build R1 Profit
	disaac: I have changed my sdg profile to point to my work email for now so I will get it on the phone.

22) disaac: Attack G1N Profit

23) Onii77: Move R1 Onii77 Profit
	Onii77: Wow. That's not good...

24) disaac: Pass
	Onii77: !!! Hmmmm looks like we have been playing incorrectly. It appears that causing a catastrophe takes a turn.
	disaac: It shouldn't... it is part of your turn though...

25) Onii77: Pass
Catastrophe Profit Red
	disaac: I have passed back to you so you can trigger the catastrophe. There is an implementation request about this in the sdg-wiki page to not allow catastrophes to force an explicit pass from the player causing it.
	Onii77: Next game we'll play the right way. :)
	disaac: Play 
On your turn, do one of these three things: perform a single free action in a system that you occupy, sacrifice one of your ships to take a certain number of actions of that ship's color, or take no action at all. After you do one of these three things, you **may** trigger catastrophes for any overpopulations that exist.
	disaac: I believe that the issue is that when you made your move, you should have included a carriage-return followed by a command to trigger the catastrophe
	disaac: pass
catastrophe profit r

26) disaac: Trade Y2 R2 Peace
	Onii77: Ahh I get it now :)

27) Onii77: Move Y1 Profit Onii77

28) disaac: Build G1 Profit

29) Onii77: Build Y1 Onii77

30) disaac: Build B2 Peace

31) Onii77: Trade Y1 R1 Onii77

32) disaac: Trade R2 Y2 Peace

33) Onii77: Build R1 Onii77

34) disaac: Sacrifice Y2 Peace
Move G1 Profit Onii77
Move G1 Profit Onii77

35) Onii77: A G1 Onii77

36) disaac: B G1 Onii77
C Onii77 G

37) Onii77: S Y3 Onii77
Move R1 Onii77 Disaac
Move R1 Onii77 Disaac
Pass

38) disaac: Sacrifice R3 Disaac
Attack R1 Disaac
Attack R1 Disaac
Pass

39) Onii77: Trade Y1 G1 Onii77

40) disaac: M R1 Disaac Onii77
	Onii77: This is not going well. :)

	disaac: I don't know... Seems to be going fine for me! :)


21105)
Variants: "Hard time"
Started: 2011.11.6, Ended: 2011.11.11
Participants: test1 (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) test1: Homeworld Y1 B3 G3

3) SilentTitan: Build G1 Silenttitan

	SilentTitan: are you there?


21117)
Variants: "Hard time"
Started: 2011.11.6, Ended: 2011.11.28
Participants: agentofchaos (S), goulo (N)
Winner: goulo

1) goulo: Homeworld B3 R2 G3

2) agentofchaos: Homeworld R1 B2 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo
	agentofchaos: Thanks, you too

4) agentofchaos: Build G1 Agentofchaos

5) goulo: Trade G1 Y1 Goulo

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) goulo: Build G1 Goulo

8) agentofchaos: Build G1 Agentofchaos

9) goulo: Trade G1 R1 Goulo

10) agentofchaos: Trade G1 R1 Agentofchaos

11) goulo: Build R2 Goulo

12) agentofchaos: Build R2 Agentofchaos

13) goulo: Discover R2 Goulo G1 Smeraldeto

14) agentofchaos: Trade R1 G1 Agentofchaos

15) goulo: Trade R1 B1 Goulo

16) agentofchaos: Trade G1 B1 Agentofchaos

17) goulo: Build G1 Goulo

18) agentofchaos: Discover R2 Agentofchaos Y3 Paralandroid

19) goulo: Trade G1 R1 Goulo

20) agentofchaos: Build G1 Agentofchaos

21) goulo: Build G1 Goulo

22) agentofchaos: Build G2 Agentofchaos

23) goulo: Build G2 Goulo

24) agentofchaos: M G2 Agentofchaos Paralandroid

25) goulo: Discover G1 Goulo Y1 Citroneto

26) agentofchaos: Build Y2 Agentofchaos

27) goulo: Build Y2 Goulo

28) agentofchaos: D Y2 Agentofchaos B3 Luvarola

29) goulo: Sacrifice G3 Goulo
Build G2 Goulo
Build G3 Goulo
Build G3 Citroneto

30) agentofchaos: Sacrifice Y2 Luvarola
Move G2 Paralandroid Citroneto
Move G2 Citroneto Goulo
Catastrophe Goulo G

31) goulo: Move Y1 Goulo Smeraldeto

32) agentofchaos: Build Y2 Agentofchaos

33) goulo: Sacrifice G3 Citroneto
Build Y2 Smeraldeto
Build Y3 Goulo
Build Y3 Goulo

34) agentofchaos: D Y2 Agentofchaos R3 Dragonfeld

35) goulo: Discover Y3 Goulo B1 Mirteleto

36) agentofchaos: Move R2 Paralandroid Citroneto

37) goulo: Discover G1 Citroneto Y3 Citronego

38) agentofchaos: Sacrifice G1 Agentofchaos
Build R1 Citroneto

39) goulo: Trade R1 G1 Goulo

40) agentofchaos: Build G2 Agentofchaos

41) goulo: Sacrifice G1 Citronego
Build Y3 Mirteleto

42) agentofchaos: Trade B1 R1 Agentofchaos

43) goulo: Build R3 Smeraldeto

44) agentofchaos: Move R1 Agentofchaos Dragonfeld

45) goulo: Discover R3 Smeraldeto G3 Smeraldego

46) agentofchaos: D R1 Dragonfeld G1 Doompulse

47) goulo: Build G2 Goulo

48) agentofchaos: Sacrifice Y2 Dragonfeld
Move R1 Citroneto Goulo
Move R2 Citroneto Goulo

49) goulo: Sacrifice R2 Smeraldeto
Attack R1 Goulo
Attack R2 Goulo

50) agentofchaos: T G2 Y2 Agentofchaos

51) goulo: Sacrifice Y2 Goulo
Move R2 Goulo Doompulse
Move G1 Goulo Mirteleto

52) agentofchaos: Build R2 Doompulse

53) goulo: Sacrifice G2 Goulo
Build R3 Doompulse
Build R3 Smeraldego
Catastrophe Doompulse R

54) agentofchaos: Trade Y2 R2 Agentofchaos

55) goulo: Sacrifice Y2 Smeraldeto
Move R3 Smeraldego Agentofchaos
Move R3 Smeraldego Agentofchaos
Catastrophe Agentofchaos R

56) agentofchaos: Build G1 Agentofchaos

57) goulo: Move Y3 Mirteleto Agentofchaos

	agentofchaos: well played
	goulo: thanks for the game! it was epic. :)


21067)
Variants: "Hard time"
Started: 2011.11.8, Ended: 2012.5.4
Participants: agentofchaos (S), Mandrel (W), jsb (N), MagicJohn (E)
Winner: Mandrel

1) jsb: Homeworld B3 G1 Y3

2) MagicJohn: Homeworld Y2 B1 G3

3) agentofchaos: Homeworld R2 B3 G3

4) Mandrel: Homeworld R1 B3 G3
	agentofchaos: Have fun everyone

5) jsb: Build Y1 Jsb

6) MagicJohn: Build G1 Magicjohn

7) agentofchaos: Build G1 Agentofchaos

8) Mandrel: Build G1 Mandrel

9) jsb: Discover Y1 Jsb G2 Mozart

10) MagicJohn: Trade G1 Y1 Magicjohn

11) agentofchaos: Trade G1 Y1 Agentofchaos

12) Mandrel: Trade G1 Y1 Mandrel

13) jsb: Build Y1 Mozart

14) MagicJohn: Discover Y1 Magicjohn G3 Ba-hoc

15) agentofchaos: Build Y2 Agentofchaos

16) Mandrel: Build Y2 Mandrel

17) jsb: Build Y2 Jsb

18) MagicJohn: Build G1 Magicjohn

19) agentofchaos: Discover Y2 Agentofchaos G1 Wopolsa

20) Mandrel: Discover Y1 Mandrel G2 Skip

21) jsb: Trade Y2 G2 Jsb

22) MagicJohn: Trade G1 R1 Magicjohn

23) agentofchaos: Build Y2 Wopolsa

24) Mandrel: Build G1 Mandrel

25) jsb: Trade Y3 R3 Jsb

26) MagicJohn: Move Y1 Ba-hoc Wopolsa

27) agentofchaos: Move Y2 Wopolsa Skip

28) Mandrel: Trade G1 R1 Mandrel

29) jsb: Build R1 Jsb

30) MagicJohn: Build G1 Magicjohn

31) agentofchaos: Trade Y1 R1 Agentofchaos

32) Mandrel: Build R2 Mandrel

33) jsb: Sacrifice Y1 Mozart
Move R1 Jsb Mozart

34) MagicJohn: Build R2 Magicjohn

35) agentofchaos: Build R2 Agentofchaos

36) Mandrel: Move R2 Mandrel Mozart

37) MagicJohn: Discover R2 Magicjohn Y3 Minormystery

38) agentofchaos: Sacrifice R2 Agentofchaos
Attack Y1W Skip
Attack Y1E Wopolsa

39) Mandrel: Attack Y1N Mozart

40) MagicJohn: Sacrifice G1 Magicjohn
Build R2 Minormystery

41) agentofchaos: Build G1 Agentofchaos

42) Mandrel: Attack R1N Mozart

43) MagicJohn: Discover R2 Minormystery Y2 Minorsetback

44) agentofchaos: Trade G1 Y1 Agentofchaos

45) Mandrel: Build G1 Mandrel

46) MagicJohn: Move R2 Minorsetback Jsb

47) agentofchaos: Trade Y1 B1 Agentofchaos

48) Mandrel: Trade G1 B1 Mandrel

49) MagicJohn: Sacrifice G3 Magicjohn
Build R2 Jsb
Build R3 Magicjohn
Build R3 Minormystery

50) agentofchaos: Trade R1 Y1 Agentofchaos

51) Mandrel: Move B1 Mandrel Mozart

52) MagicJohn: Trade R2 Y2 Jsb

53) agentofchaos: Sacrifice B1 Agentofchaos
Trade Y2 R2 Wopolsa

54) Mandrel: Discover R1 Mozart G3 Decay

55) MagicJohn: Trade R1 G1 Magicjohn

56) agentofchaos: Build R1 Wopolsa

57) Mandrel: Build B1 Mozart

58) MagicJohn: Attack G2N Jsb

59) agentofchaos: Build G1 Agentofchaos

60) Mandrel: Build B1 Mozart

61) MagicJohn: Discover R3 Minormystery B1 Minorproblen

62) agentofchaos: Build Y1 Agentofchaos

63) Mandrel: Move B1 Mozart Decay

64) MagicJohn: Trade R3 G3 Minorproblen

65) agentofchaos: Build Y2 Wopolsa

66) Mandrel: Build Y3 Mandrel

67) MagicJohn: Build Y3 Jsb

68) agentofchaos: Trade Y1 R1 Agentofchaos

69) Mandrel: Build R3 Decay

70) MagicJohn: Attack R3N Jsb

71) agentofchaos: Sacrifice Y2 Wopolsa
Move Y1 Skip Jsb
Move Y2 Skip Jsb
Catastrophe Jsb Y

72) Mandrel: Build R3 Mozart

73) MagicJohn: Trade R2 Y2 Jsb

74) agentofchaos: Build Y1 Agentofchaos

75) Mandrel: Build B2 Decay

76) MagicJohn: Build G1 Minorproblen

77) agentofchaos: Build Y1 Wopolsa

78) Mandrel: Build Y2 Mozart

79) MagicJohn: Move R2 Minormystery Minorproblen

80) Mandrel: Build B2 Decay

81) MagicJohn: Trade R2 B2 Minorproblen

82) Mandrel: Sacrifice Y3 Mandrel
Move B1 Decay Magicjohn
Move B2 Decay Magicjohn
Move B2 Decay Magicjohn
Catastrophe Magicjohn B

	MagicJohn: This game is waaaaay beyond repair.... and apparently I can't count on you to make four or five major blunders in a row.  Well played.
	Mandrel: Good game!


21147)
Started: 2011.11.10, Ended: 2011.11.23
Participants: disaac (S), Onii77 (N)
Winner: disaac

1) Onii77: H G3 B2 R3

2) disaac: H G2 Y1 B3

3) Onii77: B R1 Onii77

4) disaac: B B1 Disaac

5) Onii77: T R1 Y1 Onii77

6) disaac: D B1 Disaac G3 Verdance

7) Onii77: B R1 Onii77

8) disaac: Build B1 Disaac

9) Onii77: D R1 Onii77 G1 Evo

10) disaac: T B1 R1 Disaac

11) Onii77: B Y1 Onii77

12) disaac: B B1 Disaac

13) Onii77: B Y2 Onii77

14) disaac: B B1 Verdance

15) Onii77: M Y2 Onii77 Evo
	Onii77: These were going to my spam folder. That's why I kept missing them. 

16) disaac: B B2 Verdance

17) Onii77: Move Y2 Evo Verdance

18) disaac: Sacrifice R1 Disaac
Attack Y2 Verdance

19) Onii77: B R1 Evo

20) disaac: Trade B2 R2 Verdance

21) Onii77: B Y2 Onii77

22) disaac: B Y2 Verdance

23) Onii77: S Y2 Onii77
M R3 Onii77 Evo
M R3 Evo Verdance

24) disaac: S Y2 Verdance
M R2 Verdance Evo
M R2 Evo Onii77

25) Onii77: A Y2 Verdance

26) disaac: A Y1 Onii77

27) Onii77: S Y2 Verdance
M R3 Verdance Evo
M R3 Evo Onii77

28) disaac: B R1 Onii77

29) Onii77: A Y1 Onii77

30) disaac: B R2 Onii77
C Onii77 R

31) Onii77: B Y2 Onii77

32) disaac: B B2 Verdance

33) Onii77: S Y1 Onii77
M R1 Evo Verdance

34) disaac: T B2 R2 Verdance

35) Onii77: S Y1 Onii77
M R1 Verdance Disaac

36) disaac: B R1 Verdance

37) Onii77: A B1 Disaac

38) disaac: S R2 Verdance
Attack R1 Disaac
A B1 Disaac

39) Onii77: B R2 Evo

40) disaac: B R2 Verdance

41) Onii77: B Y1 Onii77

42) disaac: T B1 Y1 Verdance

43) Onii77: B Y2 Onii77

44) disaac: D R1 Verdance G1 Toad

45) Onii77: T Y1 B1 Onii77

46) disaac: B R2 Disaac

47) Onii77: Sacrifice B1 Onii77
Trade R2 G2 Evo

48) disaac: M R2 Verdance Evo

49) Onii77: Attack R2 Evo

50) disaac: Move R2 Disaac Verdance

51) Onii77: M Y2 Onii77 Evo
	disaac: I need to not take my turn in the middle of the night.
Plus I found that you can only undo one move. :)
	Onii77: Uugh

52) disaac: Build R2 Disaac

53) Onii77: M R1 Evo Onii77

54) disaac: Build R3 Toad

55) Onii77: S G2 Evo
B R3 Onii77
B R3 Evo

56) disaac: Sacrifice B1 Disaac
Trade R3 G3 Toad

57) Onii77: M R3 Evo Verdance

58) disaac: Sacrifice G3 Toad
Build R3 Verdance
Build Y1 Verdance
Build Y2 Verdance

59) Onii77: B Y3 Onii77

60) disaac: Sacrifice R2 Verdance
Attack R3 Verdance
Pass

61) Onii77: M Y2 Evo Verdance
C Verdance Y

62) disaac: Trade B1 Y1 Verdance

63) Onii77: M R3 Onii77 Toad

64) disaac: Move R3 Verdance Evo

65) Onii77: B R2 Evo

66) disaac: Attack R2 Evo

67) Onii77: M R1 Onii77 Evo
C Evo R

68) disaac: Trade R2 Y2 Disaac

69) Onii77: A R1 Toad

70) disaac: Discover Y1 Verdance G1 Evo2

71) Onii77: T Y2 R2 Onii77

72) disaac: Build B1 Disaac

73) Onii77: B Y1 Onii77

74) disaac: Build Y2 Evo2

75) Onii77: M Y1 Onii77 Toad

76) disaac: Move Y2 Disaac Verdance

77) Onii77: T Y3 B3 Onii77

78) disaac: Build Y2 Verdance

79) Onii77: D R3 Toad Y3 Alac

80) disaac: Move Y2 Verdance Toad

81) Onii77: B B1 Onii77

82) disaac: Sacrifice R1 Disaac
Attack R1 Toad

83) Onii77: B Y3 Toad

84) disaac: Build Y3 Verdance

85) Onii77: S B1 Onii77
T Y3 R3 Toad

86) disaac: B R1 Toad

87) Onii77: A Y2 Toad

88) disaac: Build R1 Verdance

89) Onii77: D R3 Toad Y3 Rity

90) disaac: Move R1 Verdance Evo2

91) Onii77: S R2 Onii77
A R1 Toad
A R1 Toad

92) disaac: Build R2 Evo2

93) Onii77: B B1 Onii77

94) disaac: S Y3 Verdance
M B1 Disaac Verdance
M B1 Verdance Evo2
M B1 Evo2 Onii77
C Onii77 B

	disaac: Did you just throw the game. Or was that a complete oversight? You have had me evenly matched here for a awhile.
	Onii77: Total oversight!
	disaac: I had been trying to figure out how I could get two more blues into there for a while. I figured that would be about the only way to get rid of the large there.


21153)
Variants: "Hard time"
Started: 2011.11.11, Ended: 2011.11.30
Participants: Salmonax (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) Salmonax: Homeworld Y3 B2 G3

3) dlwillson: B G1 Dlwillson

4) Salmonax: Build G1 Salmonax

5) dlwillson: T G1 R1 Dlwillson

6) Salmonax: Build G1 Salmonax

7) dlwillson: B G1 Dlwillson

8) Salmonax: Trade G1 R1 Salmonax

9) dlwillson: D G1 Dlwillson B2 Ringo

10) Salmonax: Trade G1 Y1 Salmonax

11) dlwillson: B G1 Dlwillson

12) Salmonax: Build Y1 Salmonax

13) dlwillson: B G1 Ringo

14) Salmonax: Build G2 Salmonax

15) dlwillson: B G2 Ringo

16) Salmonax: Sacrifice Y1 Salmonax
Discover G2 Salmonax Y1 Lykke

17) dlwillson: T G2 Y2 Ringo

18) Salmonax: Build G2 Salmonax

19) dlwillson: B Y2 Ringo

20) Salmonax: Discover G2 Lykke B2 Burlerd

21) dlwillson: D G1 Ringo B1 Paul

22) Salmonax: Sacrifice G2 Salmonax
Build R1 Salmonax
Build R2 Salmonax

23) dlwillson:
B G2 Paul

24) Salmonax: Build G2 Burlerd

25) dlwillson: S G3 Dlwillson
B R2 Dlwillson
B G3 Ringo
B G3 Dlwillson

26) Salmonax: Discover Y1 Salmonax B1 Crestible

27) dlwillson: M R1 Dlwillson Ringo

28) Salmonax: Move R1 Salmonax Crestible

29) dlwillson: T G1 B1 Ringo

30) Salmonax: Move Y1 Crestible Burlerd

31) dlwillson: D B1 Ringo G1 John



21166)
Variants: "Hard time"
Started: 2011.11.15, Ended: 2011.12.20
Participants: SilentTitan (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) SilentTitan: Homeworld R2 B3 G3
	SilentTitan: Since no one seem inclined to challenge me .... I'll have another go at you. 

3) TwoShort: Build G1 Twoshort

4) SilentTitan: Build G1 Silenttitan

5) TwoShort: Trade G1 R1 Twoshort

6) SilentTitan: Build G1 Silenttitan

7) TwoShort: Build R1 Twoshort

8) SilentTitan: Trade G3 R3 Silenttitan

9) TwoShort: Trade R1 Y1 Twoshort

10) SilentTitan: Trade G1 Y1 Silenttitan

11) TwoShort: Build G1 Twoshort

12) SilentTitan: Discover Y1 Silenttitan G1 Sol

13) TwoShort: Build G2 Twoshort

14) SilentTitan: Build G2 Silenttitan

15) TwoShort: Discover G1 Twoshort G3 Grogar

16) SilentTitan: Trade G2 Y2 Silenttitan

17) TwoShort: Build G2 Twoshort

18) SilentTitan: Trade R3 G3 Silenttitan

19) TwoShort: Trade G2 Y2 Twoshort

20) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Sol
Build Y3 Silenttitan

21) TwoShort: Discover Y1 Twoshort G3 Greenland

22) SilentTitan: Sacrifice Y1 Sol
Discover Y2 Sol R3 Alpha

23) TwoShort: Discover G2 Twoshort Y3 Yolonda

24) SilentTitan: Build G2 Silenttitan

25) TwoShort: Build G2 Twoshort

26) SilentTitan: Sacrifice G2 Silenttitan
Build Y1 Alpha
Build Y3 Sol

27) TwoShort: Sacrifice G3 Twoshort
Build G2 Yolonda
Build G3 Twoshort
Build R1 Twoshort

28) SilentTitan: Trade Y2 B2 Silenttitan

29) TwoShort: Build Y2 Greenland

30) SilentTitan: Sacrifice B2 Silenttitan
Trade Y3 R3 Sol
Trade Y2 R2 Alpha

31) TwoShort: Sacrifice Y2 Greenland
Move R1 Twoshort Alpha
Move R1 Twoshort Alpha
Catastrophe Alpha Red

32) SilentTitan: Move R3 Sol Yolonda

33) TwoShort: Sacrifice Y2 Twoshort
Move G2 Yolonda Sol
Discover G2 Yolonda Y1 Ynot

	SilentTitan: sorry man ..... my life got crazy over the last week. 


21193)
Started: 2011.11.20, Ended: 2011.12.4
Participants: ringebri (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld R1 B2 G3
	MagicJohn: According to the wiki, green, blue and yellow are the most important beginning colors although red home stars are gaining in popularity. Check out the rules and wiki for suggestions.

2) ringebri: Homeworld G1 Y3 B3
	ringebri: what's the syntax for my first commands. Please give examples.
	MagicJohn: first the command "homeworld" then whatchawanna do ei "homeworld" "g1" (small green star) "y3" (large yellow star) and "b3" (large blue ship). The first command would look like "homeworld g1 y3 b3"  see the middle top of the page for commands....   

3) MagicJohn: Build G1 Magicjohn
	ringebri: ok. since I still don't know what I'm doing, I put your example into the command box.
	MagicJohn: Next, it seems that the objective is to build big (#3) ships. Good players can control the stash by building ships or discovering new stars, each of which depletes the stash. Abandoning a system put that star back in the stash....
	MagicJohn: The color green is used to build. You can only build a color of ship that you already own in that star system. I own a green ship sooo..... "build G1 magicjohn" is my next command.

4) ringebri: Build B1 Ringebri
	MagicJohn: You own a blue ship, so "build b1 ringebri" is your next move. You could also "trade" your b3 for another large ship but that would be wasting a turn. You could "discover" but that would abandon your homeworld and you would imediately lose the game..... 
	MagicJohn: This is like an opening in chess. You try to set yourself up in a powerful position for a mid-game attack.

5) MagicJohn: Build G1 Magicjohn
	ringebri: what if I wanted a red ship? or a blue2 ship?
	MagicJohn: To get a red ship you would have to trade in (blue color available so trading is OK)one of your other ships. When you build, you always get the smallest ship from the stash in the color you want. Therefore, you must wait for all of the #1 ships to be in play or trade another #2 ship for it.
	MagicJohn: Did that make sense or should I rephrase?

6) ringebri: Build B1 Ringebri
	MagicJohn: By building a g1 I limited your access to green. Now the only way you can get one (stash being what it is at present) is to trade in your b3 ship. No big deal now but it could be problematic later on.
	MagicJohn: Also I would NEVER make that move later in the game because you could move another green ship into my system and blow up (catastrophe) all of the green ships or stars in the system.
	MagicJohn: Your next move could be to build another blue ship, discover a new star system, or trade for another color of ship. You can trade a #3 for a #3 of a different color or your #1 for a #1 of a different color.
	MagicJohn: You would have to "discover" a #2 sized star system (of whatever color) because you can only travel to stars of a different size than the one you are traveling from.

7) MagicJohn: Trade G1 Y1 Magicjohn

8) ringebri: Discover B1 Ringebri R2 Vorkin
	MagicJohn: Now I need to move some ships so I don't "catastrophe" myself. To do that, I need access to yellow. Hence the trade.  You will need to "discover" or "trade" for the same reason. The color of your new star will dictate whether you can "travel/move" (yellow) or build (green).
	MagicJohn: You have yellow technology already (your #3 star),so you can "discover" this turn. Just don't build another blue ship in your system just now. 
	ringebri: because that would "overpopulate" my homeworld, right?

9) MagicJohn: Discover G1 Magicjohn Y3 Overthemoon
	ringebri: fire hydrant fire hydrant!
	MagicJohn: Cute..... Fortunately not as bad as Webster's mutt.
Yes. Four of one color of anything (stars and ships combined) equals a catastrophe. Moving a ship into your opponent's to create a catastrophe is a major strategy towards winning the game. 

10) ringebri: Trade B1 R1 Ringebri

11) MagicJohn: Build G1 Magicjohn

12) ringebri: Build B1 Ringebri
	MagicJohn: My plan is to build a couple more greens then sacrifice my g3. That lets me build 3 new ships, so I could get two g2's and a g3, which would be a profitable building move.

13) MagicJohn: Build G2 Overthemoon

14) ringebri: Trade B3 Y3 Ringebri
	MagicJohn: You can continue to push your blue technology but eventually use it to achieve some yellow or green. Remember that #3 ships = power.  
	MagicJohn: Right now, you would not want to discover/create a g3 star system. Then when I sacrifice I would get two g3's and a g2 instead or vise-versa.
	MagicJohn: If you had a b2 and travel technology in vorkin, you could have foiled my plan. Can you see how?

15) MagicJohn: Sacrifice G3 Magicjohn
Build G2 Overthemoon
Build G2 Magicjohn
Build G3 Magicjohn
	MagicJohn: I'm trying to be a good teacher. So, grasshopper, do you see how my plan might have been foiled?

16) ringebri: Trade Y3 G3 Ringebri
	MagicJohn: Now I have to disperse my green ships before you can trade for green and overload one of my star systems.
	MagicJohn: You now control large yellow. That could prove useful......

17) MagicJohn: Trade G2 Y2 Magicjohn
	ringebri: I'm only a lowly grasshopper.  How might I have foiled thee?
	MagicJohn: Lotsa "ifs" but.. If vorkin had been a yellow star system you might have traded your b1 for a g1. That threat of overloading overthemoon with green technology would made me modify my immediate plans.
	MagicJohn: uh.... make that "would have made me"..... or "would make me".... Need a proof reader...

18) ringebri: Move G3 Ringebri Vorkin
	MagicJohn: Now my threat is sacrificing my y2 in magicjohn and moving two g3's into vorkin. I would still need another y2 to send them into "ringer", but that would wipe out your green technology including your green home star. You can't attack #2 ships with a #1 red ship, so vorkin is a safe platform for me at the moment.  
	MagicJohn: Oh, just realized... I don't know if the size of a red star influences what can be attacked in that star system. I don't think so, but I'm not sure. Maybe we should check out the rules on that point...
	MagicJohn: Nuts... still need a proof reader... Second to last comment. I only have 2 g2's (not g3's) to move into vorkin.

19) MagicJohn: Discover G2 Overthemoon Y2 Overtherainbo
	ringebri: Not sure what I'm doing.  I knew I could move the g3 into Vorkin so I did but I'm not sure.... You can do multiple commands, right?
	MagicJohn: If you sacrifice a ship, you can make as many moves as the size of the ship you sacrificed. Catastrophes result from other moves so are technically two command moves. Otherwise you are limited to one command per turn. Your g3 and b1 are stuck in vorkin without "yellow technology".   
	MagicJohn: Trading could get you yellow technology....
	MagicJohn: It's really dangerous to not have a #3 ship in your home star system. It makes you very vulnerable to infiltration.

20) ringebri: Build B1 Ringebri

21) MagicJohn: Sacrifice G3 Magicjohn
Build G2 Overthemoon
Build G3 Magicjohn
Build G3 Overtherainbo

22) ringebri: Trade B1 Y1 Vorkin
	MagicJohn: Sacrifice is the quickest way to acquire more ships. You might think of sacrificing your g3 for two b2's and a b3. If you do, be careful and don't overload blue in your home system.

23) MagicJohn: Discover G1 Overthemoon Y2 Overthetop

24) ringebri: Move G3 Vorkin Overthemoon
	MagicJohn: By owning a bunch of green ships and creating green stars a player can control an opponent's access to a technology (green in this case). Your green home star keeps you in the game unless I can destroy it.
	MagicJohn: If you sacrifice your g3 it goes back in the stack and you can rebuild it as part of your 3 building moves. ie.... Sacrifice g3 vorkin (return) build y1  vorkin (return) build y3 ringebri (return) build g3 vorkin.
	MagicJohn: OOOPS!!!! Wrong, wrong, wrong. When you build a ship, you have to have another ship of that color in the star system. Thus, if you sacrifice your g3, you have no more green ships and could not build another. Your only access to green ships would be trading for one and I would gobble it up before you could do that. Sorry 'bout the misinfo but I'm still trying to learn the game too....

25) MagicJohn: Trade G3 Y3 Magicjohn

26) ringebri: Build B1 Ringebri
	MagicJohn: Dangerous situation...

27) MagicJohn: Build G3 Magicjohn

28) ringebri: Trade B1 Y1 Ringebri

29) MagicJohn: Sacrifice Y3 Magicjohn
Move G1 Overthetop Ringebri
Move G2 Overtherainbo Ringebri
Move G3 Overtherainbo Ringebri
Catastrophe Ringebri Green

30) ringebri: Trade B1 G1 Ringebri
	MagicJohn: The material cost of the sacrifice was a lot but it really cuts down your options. You have to keep working for green and maybe attacking my blue star.

31) MagicJohn: Discover G2 Overthemoon Y2 Overthehill

32) ringebri: Move Y1 Ringebri Magicjohn
	MagicJohn: Now I will try to go after yellow....

33) MagicJohn: Attack Y1 Magicjohn
	ringebri: Oh my! This system has a lot of ships.

34) ringebri: Build G1 Ringebri
	MagicJohn: ...or yellow is coming after me...
	ringebri: Was that the "attack" order and were you able to do that because you have a red sun?
	MagicJohn: Yes, that was the "attack" order. The red sun gives me access to the "attack" order. It only works if I have a ship in the star system larger than or equal to the size of the ship I'm attacking 

35) MagicJohn: Sacrifice Y2 Magicjohn
Move Y1 Magicjohn Overthemoon
Move Y1 Overthemoon Overthehill

36) ringebri: Trade G1 B1 Ringebri

37) MagicJohn: Sacrifice G3 Magicjohn
Build Y2 Overthehill
Build Y2 Overthehill
Build Y3 Magicjohn
	ringebri: If I built the g2 ship in ringebri you would move a g2 into ringebri, cause a catastrophe, and wipe out all of the green. Right?

38) ringebri: Move B1 Ringebri Vorkin
	MagicJohn: Yes, probably so, but my major objective is to get your yellow star. Also, I would have moved my g1 from MagicJohn instead of a g2. Less sacrifice on my part given the state of our economy....

39) MagicJohn: Sacrifice Y3 Magicjohn
Move Y1 Magicjohn Ringebri
Move Y1 Overthehill Ringebri
Move Y2 Overthehill Ringebri
Catastrophe Ringebri Y

	MagicJohn: Sorry, I should have made the game "unrated". Try another one?


21206)
Variants: "Hard time"
Started: 2011.11.22, Ended: 2011.11.28
Participants: ts52 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld R1 B2 G3

2) ts52: Homeworld B2 Y3 G3
	zoltar: Hi!
	ts52: Hi! Have a great game!

3) zoltar: Build G1 Zoltar

4) ts52: Build G1 Ts52

5) zoltar: Trade G1 Y1 Zoltar

6) ts52: Trade G1 R1 Ts52

7) zoltar: Build Y1 Zoltar

8) ts52: Build R1 Ts52

9) zoltar: Build Y1 Zoltar

10) ts52: Build R2 Ts52

11) zoltar: Discover Y1 Zoltar G3 Greengiant

12) ts52: Trade R2 Y2 Ts52

13) zoltar: Build Y2 Greengiant

14) ts52: Discover Y2 Ts52 G1 Robin

15) zoltar: Discover Y1 Zoltar B3 Bluemoon

16) ts52: Build R2 Ts52

17) zoltar: Sacrifice G3 Zoltar
Build Y2 Zoltar
Build Y3 Zoltar
Build Y3 Bluemoon

18) ts52: Move R2 Ts52 Robin

19) zoltar: Trade Y3 G3 Zoltar

20) ts52: Move R2 Robin Greengiant

21) zoltar: Sacrifice Y2 Zoltar
Discover Y2 Greengiant B1 Blueberry
Discover Y1 Greengiant B2 Bluebell

22) ts52: Build R2 Ts52

23) zoltar: Trade Y3 R3 Bluemoon

24) ts52: Move R2 Ts52 Robin

25) zoltar: Sacrifice G3 Zoltar
Build Y2 Bluemoon
Build Y3 Blueberry
Build Y3 Zoltar

26) ts52: Build G1 Ts52

27) zoltar: Trade Y3 G3 Zoltar

28) ts52: Move R2 Robin Bluebell

29) zoltar: Build Y3 Zoltar

30) ts52: Attack Y1 Bluebell

31) zoltar: Build G1 Zoltar

32) ts52: Move R1 Ts52 Robin

33) zoltar: Discover G3 Zoltar R3 Redgiant

34) ts52: Move G1 Ts52 Robin

35) zoltar: Build G2 Zoltar

36) ts52: Build G2 Ts52

37) zoltar: Discover G2 Zoltar R3 Redrover

38) ts52: Build R2 Ts52

39) zoltar: Sacrifice G3 Redgiant
Build R3 Bluemoon
Build G2 Redrover
Build G3 Zoltar

40) ts52: Sacrifice Y2 Robin
Move R1 Robin Bluemoon
Move R2 Bluebell Bluemoon
Catastrophe Bluemoon R

41) zoltar: Trade Y3 R3 Blueberry

42) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Bluebell
Build Y3 Bluebell

43) zoltar: Sacrifice Y2 Bluemoon
Move G2 Redrover Blueberry
Move Y1 Bluemoon Bluebell
Catastrophe Bluebell Y

44) ts52: Trade R1 Y1 Ts52

45) zoltar: Sacrifice Y3 Zoltar
Move G2 Redrover Blueberry
Move G2 Blueberry Ts52
Move G2 Blueberry Ts52
Catastrophe Ts52 G

46) ts52: Trade R2 G2 Ts52

47) zoltar: Move R3 Blueberry Ts52
	zoltar: Huge explosions have been detected in the proximity of the ts52 homeworld.
	ts52: Damn! How did I not see that one coming....

48) ts52: Trade Y1 R1 Ts52

49) zoltar: Attack G2 Ts52
	zoltar: Yeah, a Y3 is often a devastating weapon when sacrificed.

	ts52: All right, I give up. Well played sir.
	zoltar: Thanks. gg


21107)
Variants: "Hard time"
Started: 2011.11.25, Ended: 2012.1.30
Participants: agentofchaos (S), Subhan64 (N)
Winner: agentofchaos

1) Subhan64: Homeworld B1 Y2 G3

2) agentofchaos: Homeworld R1 B2 G3

3) Subhan64: Build G1 Subhan64

4) agentofchaos: Build G1 Agentofchaos

5) Subhan64: Discover G1 Subhan64 G3 Kermit

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) Subhan64: Build G1 Subhan64

8) agentofchaos: Build Y1 Agentofchaos

9) Subhan64: Discover G1 Subhan64 Y3 Bigbird

10) agentofchaos: Trade Y1 R1 Agentofchaos

11) Subhan64: Build G1 Subhan64

12) agentofchaos: Build G2 Agentofchaos

13) Subhan64: Sacrifice G3 Subhan64
Build G2 Subhan64
Build G2 Bigbird
Build G3 Subhan64

14) agentofchaos: Move G2 Agentofchaos Bigbird

15) Subhan64: Discover G2 Subhan64 Y3 Banana

16) agentofchaos: M R1 Agentofchaos Kermit

17) Subhan64: Trade G1 R1 Subhan64

18) agentofchaos: Sacrifice R1 Kermit
Attack G2 Bigbird

19) Subhan64: Build G1 Bigbird
Catastrophe Bigbird Green

20) agentofchaos: Build G1 Agentofchaos

21) Subhan64: Build G1 Subhan64

22) agentofchaos: Trade G1 R1 Agentofchaos

23) Subhan64: Sacrifice G2 Banana
Build R2 Subhan64
Build R2 Subhan64

24) agentofchaos: Build R2 Agentofchaos

25) Subhan64: Move R2 Subhan64 Kermit

26) agentofchaos: Discover R2 Agentofchaos Y3 Dreamward

27) Subhan64: Build R3 Kermit

28) agentofchaos: B G1 Agentofchaos

29) Subhan64: Trade G3 Y3 Subhan64

30) agentofchaos: Trade R1 B1 Agentofchaos

31) Subhan64: Move Y3 Subhan64 Kermit

32) agentofchaos: Sacrifice G1 Agentofchaos
Build R1 Dreamward

33) Subhan64: Move R1 Subhan64 Kermit

34) agentofchaos: Build G1 Agentofchaos

35) Subhan64: Sacrifice Y3 Kermit
Move R3 Kermit Agentofchaos
Move R2 Kermit Agentofchaos
Move R1 Kermit Agentofchaos
Catastrophe Agentofchaos Red

36) agentofchaos: Build G2 Agentofchaos

37) Subhan64: Build G2 Subhan64

38) agentofchaos: Trade G3 R3 Agentofchaos



21159)
Started: 2011.11.25, Ended: 2011.12.2
Participants: Subhan64 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Subhan64: Homeworld B3 Y1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) Subhan64: Build G1 Subhan64

5) ts52: Trade G1 Y1 Ts52

6) Subhan64: Trade G3 Y3 Subhan64

7) ts52: Discover Y1 Ts52 G3 Kermit

8) Subhan64: Build Y2 Subhan64

9) ts52: Build Y2 Kermit

10) Subhan64: Trade Y2 G2 Subhan64

11) ts52: Build G1 Ts52

12) Subhan64: Discover G2 Subhan64 Y2 Bigbird

13) ts52: Discover Y1 Kermit G2 Walter

14) Subhan64: Build G1 Bigbird

15) ts52: Build Y2 Walter

16) Subhan64: Trade Y3 R3 Subhan64

17) ts52: Trade G1 R1 Ts52

18) Subhan64: Move R3 Subhan64 Walter

19) ts52: Sacrifice Y2 Kermit
Move Y1 Walter Subhan64
Move Y2 Walter Subhan64

20) Subhan64: Sacrifice G2 Bigbird
Build G1 Subhan64
Build G2 Bigbird

21) ts52: Trade Y2 R2 Subhan64

	Subhan64: Good game!
	ts52: Thanks. Thanks for the game.


21227)
Variants: "Hard time"
Started: 2011.11.28, Ended: 2011.12.2
Participants: Subhan64 (S), Danner (N)
Winner: Danner

1) Danner: Pass

2) Subhan64: Homeworld B1 Y2 G3
	Danner: Hi! Have a nice game!
I usually let my opponent make the starting move, but if you prefer not to do, just pass.

3) Danner: Homeworld B1 G2 B3 *
	Subhan64: Good luck!

4) Subhan64: Build G1 Subhan64

5) Danner: Build B1 Danner

6) Subhan64: Build G1 Subhan64

7) Danner: Trade B3 Y3 Danner

8) Subhan64: Discover G1 Subhan64 G3 Kermit

9) Danner: Build B2 Danner

10) Subhan64: Build G1 Kermit

11) Danner: Discover B2 Danner G3 Larkspur

12) Subhan64: Build G2 Subhan64

13) Danner: Build B2 Larkspur

14) Subhan64: Trade G2 Y2 Subhan64

15) Danner: Build B2 Larkspur

16) Subhan64: Sacrifice Y2 Subhan64
Move G1 Kermit Danner
Move G1 Kermit Danner

17) Danner: Build B3 Danner
	Danner: Welcome to my homeworld! :)

18) Subhan64: Build G2 Danner
Catastrophe Danner Green

19) Danner: Trade B3 G3 Danner

20) Subhan64: Build G1 Subhan64

21) Danner: Sacrifice Y3 Danner
Move G3 Danner Larkspur
Move G3 Larkspur Subhan64
Pass
Catastrophe Subhan64 G

	Danner: Thanks for the game!
	Subhan64: You distracted me with those blue ships!

	Danner: Sorry :)


21223)
Started: 2011.11.28, Ended: 2011.11.30
Participants: ts52 (S), jsb (N)
Winner: ts52

1) jsb: Homeworld Y1 G3 B3

2) ts52: Homeworld B1 Y2 G3

3) jsb: Build B1 Jsb

4) ts52: Build G1 Ts52
	ts52: Have a good game!

5) jsb: Discover B1 Jsb Y2 Harmonica

6) ts52: Trade G1 B1 Ts52
	jsb: Thanks, you too, ts52. 

7) jsb: Build B2 Jsb

8) ts52: Discover B1 Ts52 G3 Kermit

9) jsb: Build B2 Jsb

10) ts52: Build B2 Kermit

11) jsb: Trade B2 G2 Jsb

12) ts52: Trade B2 Y2 Kermit

13) jsb: Discover B2 Jsb G2 Harp

14) ts52: Build G1 Ts52

15) jsb: Discover B1 Harmonica Y3 Flute

16) ts52: Build Y1 Kermit

17) jsb: Move B1 Flute Ts52

18) ts52: Trade Y1 R1 Kermit

19) jsb: Sacrifice G2 Jsb
Build B2 Ts52
Build B2 Ts52
Catastrophe Ts52 B

20) ts52: Move Y2 Kermit Harp

21) jsb: Trade B2 Y2 Harp

22) ts52: Sacrifice R1 Kermit
Attack Y2 Harp

23) jsb: Build B1 Jsb

24) ts52: Move Y2 Harp Kermit

25) jsb: Move B1 Jsb Ts52

26) ts52: Trade Y2 R2 Kermit

27) jsb: Trade B1 G1 Ts52

28) ts52: Sacrifice R2 Kermit
Attack G1 Ts52
Pass

29) jsb: Build B1 Jsb

30) ts52: Sacrifice B1 Kermit
Trade G1 B1 Ts52

31) jsb: Discover B1 Jsb G2 Violin

32) ts52: Trade G3 R3 Ts52

33) jsb: Build B1 Violin

34) ts52: Move R3 Ts52 Jsb

	jsb: Good game, ts52 - I got ahead of myself. 
	ts52: Thanks for the game. 


21236)
Variants: "Hard time"
Started: 2011.11.29, Ended: 2012.1.2
Participants: AdamBadura (S), goulo (N)
Winner: AdamBadura

1) goulo: Homeworld R3 B1 G3
	goulo: Hi, I wondered if I might receive a ladder challenge from you soon. :)

2) AdamBadura: Homeworld G3 B2 Y3

3) goulo: Build G1 Goulo
	AdamBadura: :)

4) AdamBadura: Build Y1 Adambadura
	goulo: BTW I bought a Realm set from nestorgames at Essen and am currently playing a game online here at SDG as well. Strange interesting non-elegant game! :)

5) goulo: Trade G1 Y1 Goulo
	AdamBadura: http://www.gry-planszowe.pl/forum/viewtopic.php?f=4&t=16794

It looks like I'm going to be there. Brian as well. We set up to play Ora at Labora (I'm curious about that game, lots of hype, we will see if justified...). What else I don't know yet but I'm dreaming of an 18xx.

Will you be there?
	goulo: Oh, interesting, I had not heard about this event. It looks like Gratislavia, but isn't Gratislavia...?

It's also just 1 week after Pionek, strange timing! But at least not the SAME weekend as Pionek. :)

I think I will be free that weekend, so I hope to go to it. Thanks for the info!

6) AdamBadura: Trade Y1 R1 Adambadura

7) goulo: Build G1 Goulo
	AdamBadura: It looks like Gratislavia but it is not. It seems different people are behind this one. I don't know which people. I never heared about it.

I have mixed feelings. As this might mean some break in the gaming community in Wroc³aw. But looking just at the known facts: hey! we have a second convention! lets cherish! ;)
	goulo: Certainly! More gaming events = A Good Thing. :)

8) AdamBadura: Build Y1 Adambadura

9) goulo: Trade G1 R1 Goulo

10) AdamBadura: Discover Y1 Adambadura G1 Shipyard

11) goulo: Build G1 Goulo

12) AdamBadura: Build Y1 Adambadura

13) goulo: Build Y2 Goulo

14) AdamBadura: Build Y2 Shipyard

15) goulo: Discover Y1 Goulo Y2 Citrono

16) AdamBadura: Trade Y1 G1 Adambadura

17) goulo: Discover G1 Goulo R2 Rubeno

18) AdamBadura: Move Y2 Shipyard Rubeno

19) goulo: Build G2 Goulo

20) AdamBadura: Attack G1 Rubeno

21) goulo: Move G2 Goulo Citrono

22) AdamBadura: Build Y1 Adambadura

23) goulo: Build Y3 Goulo
	AdamBadura: Sorry for slow gameing recently bt we are buying our own flat and there is lots to do...

24) AdamBadura: Build Y3 Rubeno
	goulo: No problem! And good luck with the flat buying process! I guess that means I won't see you at Pionek... :)

25) goulo: Build G2 Citrono
	AdamBadura: You wouldn't see me there anyway... ;)

We are finalizing things now. I will live (starting March/April) near the place I live now, only on the other side of Pomorska.

26) AdamBadura: Build G2 Rubeno

27) goulo: Discover G2 Citrono B1 Mirteleto

28) AdamBadura: Trade G1 B1 Adambadura
	goulo: Pionek was good. I finished the weekend with a good epic game of Gnostica with zara2stra. :)

29) goulo: Build G1 Mirteleto

30) AdamBadura: Build B2 Adambadura

31) goulo: Build G3 Citrono

32) AdamBadura: Move B2 Adambadura Shipyard

33) goulo: Sacrifice Y2 Goulo
Move G1 Mirteleto Adambadura
Move G2 Mirteleto Adambadura

34) AdamBadura: Sacrifice Y3 Rubeno
Move Y1 Shipyard Citrono
Move Y1 Adambadura Shipyard
Move Y1 Shipyard Citrono
Catastrophe Citrono Y

35) goulo: Build Y1 Goulo

36) AdamBadura: Build G2 Rubeno
	AdamBadura: Sometimes I wish there was a "try mode" when you execute a command but only to look at the results before approving (and submiting) or canceling. It is sometimes uneasy to see how it will look like after a catastrophe.
	AdamBadura: Your is more "geek-y" than you claim she is... After all not only she came today for the Fest alone but also she took part in some contest and got a prize!

So now I'm starting to wonder why she never comes at my place when you do... ;)


And to be more serious that Hex game got my interest. I intended to challange you but as it seems it is not implemented here...
	AdamBadura: *Your girl
	goulo: Her gaming enthusiasm goes in waves. She got very excited at this past Pionek. :)

About Hex - it is playable at some other sites, e.g. littlegolem.net (but littlegolem is having DNS problems or something, not reachable the past few days, sigh) I play Hex there.

37) goulo: Build G3 Adambadura
Catastrophe Adambadura G

38) AdamBadura: Discover G2 Rubeno G3 Highway
	goulo: Have you played 20th Century from Czech Games Edition? We tried it for the first time tonight and enjoyed it.

39) goulo: Discover R1 Goulo B2 Mirtelo

40) AdamBadura: Build Y1 Rubeno
	AdamBadura: I just read a review in Swiat Gier Planszowych. Seemed interesting yet it didn't interest me enough to try to find it someplace. If you have it now we can play some time. Yet I'm afraid I will have time for gaming after Christmas only.
	goulo: It wasn't our set; Czarna and Repcio bought it at Essen.

41) goulo: Move Y3 Goulo Rubeno

42) AdamBadura: Sacrifice Y2 Rubeno
Move G2 Rubeno Goulo
Move G1 Rubeno Goulo

43) goulo: Move Y3 Rubeno Goulo

44) AdamBadura: Move Y1 Rubeno Goulo

45) goulo: Attack Y1 Goulo

46) AdamBadura: Trade G2 Y2 Goulo
Catastrophe Goulo Y

47) goulo: Attack G1 Goulo

48) AdamBadura: Trade Y3 G3 Adambadura

49) goulo: Trade G1 Y1 Goulo

50) AdamBadura: Build G1 Adambadura

51) goulo: Build Y1 Goulo

52) AdamBadura: Trade G3 Y3 Adambadura
	AdamBadura: Sorry again for delays. Its not my usual type of playing. The rector of our parish died in car accident on Thusday. As I'm somewhat involved in tha parish (mostly by administrating the web site and being member of board) it consumes significant amount of time. (Especially that the rector was an important person otherwise as well being a "pra³at" and "prof. dr hab."...)
	goulo: No problem, almost all the PBEM games are going much slower lately, I notice. It really slows down in December!

Sorry to hear about the rector's car accident. Good luck to you dealing with his death and all the other stuff.

53) goulo: Move Y1 Goulo Mirtelo

54) AdamBadura: Build G1 Adambadura

55) goulo: Discover R1 Mirtelo B3 Mirtelego

56) AdamBadura: Build G2 Highway

57) goulo: Trade G3 Y3 Goulo

58) AdamBadura: Build B1 Shipyard

	goulo: I see no hope for me here!
	goulo: happy new year! :)
	AdamBadura: Hmm... Interesting. I wasn't sure of this game. It seemed to me I had a little advantage but I think you could have outplayed me by skills.

Happy new year!
	goulo: I think you have too many ships, and I couldn't realistically catch up, nor could I see how to create enough blues to try rushing your homeworld.


21133)
Variants: "Hard time"
Started: 2011.12.2, Ended: 2011.12.10
Participants: Jesse (S), Subhan64 (N)
Winner: Jesse

1) Subhan64: Pass

2) Jesse: Homeworld Y3 B2 G3

3) Subhan64: Homeworld Y1 B2 G3
	Jesse: Hello hello.

4) Jesse: Build G1 Jesse
	Subhan64: Hello!


5) Subhan64: Build G1 Subhan64

6) Jesse: Trade G1 Y1 Jesse

7) Subhan64: Build G1 Subhan64

8) Jesse: Build G1 Jesse

9) Subhan64: Discover G1 Subhan64 Y3 Bigbird

10) Jesse: Discover G1 Jesse Y1 Lemon

11) Subhan64: Build G2 Subhan64

12) Jesse: Build G2 Jesse

13) Subhan64: Trade G2 Y2 Subhan64

14) Jesse: Build Y2 Jesse

15) Subhan64: Discover G1 Subhan64 Y3 Bananarama

16) Jesse: Discover Y1 Jesse B1 Berry

17) Subhan64: Build Y2 Subhan64

18) Jesse: Sacrifice Y2 Jesse
Move Y1 Berry Bananarama
Move Y1 Bananarama Subhan64
Catastrophe Subhan64 Y

19) Subhan64: Build G2 Subhan64

20) Jesse: Sacrifice G3 Jesse
Build G2 Lemon
Build G3 Jesse
Build G3 Jesse

21) Subhan64: Trade G2 Y2 Subhan64

22) Jesse: Trade G3 R3 Jesse

23) Subhan64: Sacrifice G3 Subhan64
Build G2 Bigbird
Build G3 Bananarama
Build G3 Bigbird

24) Jesse: Move G1 Lemon Bigbird
Catastrophe Bigbird G

25) Subhan64: Sacrifice G1 Bananarama
Build Y1 Subhan64

26) Jesse: Discover G2 Jesse B1 Berry2

27) Subhan64: Build G1 Bananarama

28) Jesse: Build G1 Berry2

29) Subhan64: Sacrifice Y2 Subhan64
Move G3 Bananarama Subhan64
Move Y1 Subhan64 Bananarama

30) Jesse: Trade G1 Y1 Berry2

31) Subhan64: Build G1 Subhan64

32) Jesse: Build Y2 Berry2

33) Subhan64: Build Y2 Bananarama

34) Jesse: Sacrifice Y2 Berry2
Move G2 Berry2 Subhan64
Move G2 Lemon Subhan64
Catastrophe Subhan64 G
	Jesse: Gotta watch out for those sacrifice threats.
	Subhan64: yeah.  I knew I was toast anyway once I lost one of my homeworlds.   One of these days I'll actually win a game of this!



21280)
Started: 2011.12.4, Ended: 2011.12.21
Participants: Onii77 (S), disaac (N)
Winner: disaac

1) disaac: H Y3 B2 G3

2) Onii77: H B3 R1 G3

3) disaac: Build G1 Disaac

4) Onii77: B G1 Onii77

5) disaac: Discover G1 Disaac B1 Ba

6) Onii77: T G1 Y1 Onii77

7) disaac: Build G1 Disaac

8) Onii77: B G1 Onii77

9) disaac: Trade G1 Y1 Disaac

10) Onii77: D G1 Onii77 B2 Wall

11) disaac: Build G1 Disaac

12) Onii77: T G1 R1 Wall

13) disaac: Trade G1 R1 Disaac

14) Onii77: B G1 Onii77

15) disaac: Build R2 Disaac

16) Onii77: M G1 Onii77 Wall

17) disaac: M R2 Disaac Ba

18) Onii77: B R2 Wall

19) disaac: Sacrifice G3 Disaac
Build R2 Disaac
Build R3 Disaac
Build R3 Ba

20) Onii77: T R2 Y2 Wall

21) disaac: D R2 Disaac G1 Ga

22) Onii77: B G2 Wall

23) disaac: Trade R3 G3 Disaac

24) Onii77: B R2 Wall

25) disaac: Sacrifice G3 Disaac
Build R3 Ga
Build R3 Disaac
Build G2 Ba

26) Onii77: S Y2 Wall
M R1 Wall Ba
M R2 Wall Ba
C Ba Red

27) disaac: Sacrifice G2 Ba
Build Y1 Disaac
Build G2 Ba

28) Onii77: T G2 B2 Wall

29) disaac: Move Y1 Disaac Ga

30) Onii77: B G2 Wall

31) disaac: Move R2 Ga Wall

32) Onii77: S G2 Wall
B Y2 Onii77
B Y2 Onii77

33) disaac: Sacrifice G2 Ba
Build Y2 Ga
Build Y3 Disaac

34) Onii77: S Y2 Onii77
M G1 Wall Ba
M B2 Wall Ba

35) disaac: Sacrifice Y3 Disaac
Move R3 Ga Wall
Move R2 Wall Onii77
Move R3 Wall Onii77

36) Onii77: A R3 Onii77

37) disaac: Sacrifice G1 Ba
Build R1 Onii77
Catastrophe Onii77 R

38) Onii77: T Y2 R2 Onii77

39) disaac: Trade Y1 B1 Disaac

40) Onii77: M R2 Onii77 Ga

41) disaac: Sacrifice R1 Disaac
Attack R2 Ga

42) Onii77: T G1 R1 Ba

43) disaac: Move B1 Disaac Ga

44) Onii77: T B2 R2 Ba

45) disaac: Move Y1 Ga Disaac

46) Onii77: B G1 Onii77

47) disaac: Trade Y1 G1 Disaac

48) Onii77: M G1 Onii77 Ba

49) disaac: Build G2 Disaac

50) Onii77: T G3 Y3 Onii77

51) disaac: Sacrifice G2 Disaac
Build B1 Ga
Build B2 Ga

52) Onii77: B G2 Ba

53) disaac: Move B1 Ga Onii77

54) Onii77: S Y3 Onii77
M R2 Ba Disaac
M R1 Ba Disaac
M G2 Ba Disaac
	disaac: Checkmate I believe. :)

	Onii77: ;)
	Onii77: Yep. Good game. 
	disaac: Yes it was. I felt stuck there for quite a while with no green in my homeworld. 
	disaac: Then I had a bit of a race with you at the end to make sure I got my ships built and ready to move before you had a chance to start wiping out my homeworld fleet.


21285)
Variants: "Unrated"
Started: 2011.12.5, Ended: 2011.12.25
Participants: ringebri (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld B2 R1 G3

2) ringebri: Homeworld G3 B1 Y3
	ringebri: I tried this command: homeworld g2,b1,y3.  Why doesn't it work.
	ringebri: homeworld g3,b1,y3
	ringebri: homeworld g3, b1, y3 doesn't work either.

3) MagicJohn: Build G1 Magicjohn
	ringebri: ok. the command line can't have commas in it.

4) ringebri: Build Y1 Ringebri
	ringebri: Just re-read the wiki.  Not good to have the same size systems as your opponent.

5) MagicJohn: Build G1 Magicjohn
	MagicJohn: Now the point is to build as quickly as possible. Maybe try to monopolize a color. I might have an advantage because I will try to build green and that is the color of one of your home stars.

6) ringebri: Trade Y1 R1 Ringebri

7) MagicJohn: Trade G1 Y1 Magicjohn

8) ringebri: Build Y1 Ringebri

9) MagicJohn: Discover G1 Magicjohn Y3 Overachiever
	MagicJohn: Had to trade for a yellow so I can expand and keep building..
	MagicJohn: My building will probably be in green or blue so I can directly attack one of your stars...
	MagicJohn: I can build in green without duplicating the color of one of my own stars.

10) ringebri: Discover Y1 Ringebri B2 Underdog

11) MagicJohn: Build G1 Overachiever

12) ringebri: Build Y1 Ringebri

13) MagicJohn: Discover G1 Overachiever Y2 Overandout
	MagicJohn: Trying to stay undertheradar?
	MagicJohn: I'm dealing with a monster hedcode. Hope my thinking is clearer than my sinuses, throat, and chest......
	ringebri: Oh good!  Here's my chance..... Oh!  Sorry.  I hope you feel better soon!

14) ringebri: Build Y2 Ringebri

15) MagicJohn: Build Y2 Magicjohn

16) ringebri: Discover Y2 Ringebri G2 Undercat
	ringebri: Now I've got three yellow in my homeworld, which I guess is risky.  But I don't think your y1 in your homeworld can reach my homeworld at this time.  Right?
	MagicJohn: Not really risky yet. To get to your home world from mine, I would have to sacrifice a Y3, move to a #3 star, then to a #2 star, and finally to your homeworld. Since I don't have a Y3, I can't send my Y1 directly to your homeworld. 
	MagicJohn: I would first have to trade my g3 for a y3 and you would see that coming and move a ship or take another defensive action.
	MagicJohn: Or I could do the following play, gain some ship-power, and force your hand.

17) MagicJohn: Discover G1 Overandout Y3 Overandover
	MagicJohn: Scratch that. I was going to sac my g3 for a g1,y2 and y3. It would have given me 3 yellows in Magicjohn homeworld and you could have blown them up.

18) ringebri: Build Y2 Undercat

19) MagicJohn: Build G1 Overandover
	MagicJohn: keeping you from building another y3....

20) ringebri: Trade Y1 B1 Ringebri
	MagicJohn: Bear in mind that discovered star systems can be destroyed by over population. If the star goes boom, ALL of the ships surrounding it go boom too.

21) MagicJohn: Sacrifice G3 Magicjohn
Build G2 Overachiever
Build G2 Overachiever
Build G3 Overandover
	MagicJohn: So, lets say I put together a large fleet of ships on overandover and included in that fleet was a pair of yellow ships. If you moved one yellow ship in, the whole thing would go kablooie...

22) ringebri: Discover Y2 Undercat G3 Undercover

23) MagicJohn: Move G3 Overandover Magicjohn

24) ringebri: Build R1 Ringebri

25) MagicJohn: Discover G2 Overachiever R2 Overthelimit
	MagicJohn: You could blow up yellow tech at my homestar. (Sac y3 and move undercover y2 and underdog y1) On the down side, you would lose more than I would..... 
	MagicJohn: By having a corner on green technology, I control your chances of blowing me up.....

26) ringebri: Build Y1 Undercat
	ringebri: underdog and undercat do not have a connection to MagicJohn so I can't move yellow ships to MagicJohn from them. Right?
	MagicJohn: They can move there, but it's a two step process. If you sac. a 2y one ship could move two steps, from u-cat to u-cover(1) to MagicJohn(2).

27) MagicJohn: Trade Y1 B1 Magicjohn

28) ringebri: Move B1 Ringebri Underdog

29) MagicJohn: Move B1 Magicjohn Overachiever

30) ringebri: Build Y1 Ringebri

31) MagicJohn: Move G1 Overandover Overthelimit

32) ringebri: Move R1 Ringebri Underdog

33) MagicJohn: Build B2 Overachiever

34) ringebri: Build R2 Ringebri

35) MagicJohn: Move B1 Overachiever Overthelimit

36) ringebri: Move B1 Underdog Undercover

37) MagicJohn: Build B3 Overachiever

38) ringebri: Build B3 Undercover

39) MagicJohn: Build B3 Overthelimit

40) ringebri: Sacrifice Y2 Undercat
Move B1 Undercover Overthelimit
Move B3 Undercover Overthelimit
Catastrophe Overthelimit Blue

41) MagicJohn: Build Y2 Magicjohn

42) ringebri: Trade R1 B1 Ringebri
	ringebri: I don't know if strategically that was a good move or not but it was fun.
	MagicJohn: build y2 magicjohn

43) MagicJohn: Sacrifice Y2 Magicjohn
Move G1 Overthelimit Ringebri
Move G2 Overthelimit Ringebri
	MagicJohn: Oppsie - Put my command in the messages box... Your move did give me access to more yellow technology. It remains to be seen if I can take advantage of it.
	MagicJohn: Besides, experimenting with the moves is fun and the best way to learn :)

44) ringebri: Attack G2 Ringebri

45) MagicJohn: Sacrifice G1 Overandover
Build G1 Ringebri
Catastrophe Ringebri Green

46) ringebri: Move B1 Ringebri Undercover

	MagicJohn: Hello neighbor!

47) MagicJohn: Discover B2 Overachiever Y2 Overandout
	ringebri: bug off, invader!
	ringebri: even though I successfully converted one of your ships, I'm still in danger of losing the green system, right?
	MagicJohn: uhhhh..., yes..

48) ringebri: Trade Y1 G1 Ringebri
	MagicJohn: By sacrificing the g1 I could build a ship/color in any star system I wanted as long as I had a ship of that color in the star system. By sacrificing, I returned one green to the stash which I could bring back in play by way of building. My other option was to sacrifice my y2 in Magicjohn and move the g1 from overandover to undercat to ringebri. I didn't do that because I didn't want to loose a #2 ship or my only yellow. 
	MagicJohn: As an aside...
Ideally, it's best to maintain ships in your home star system that don't match the color of your home stars. Unfortunately, it isn't always possible to maintain that arrangement.
	MagicJohn: Now, if you loose or abandon your green star, you can't build at all. You might consider trading for a green ship pretty soon. I'll probably be going after blue but I could choose to try and suck up all of the green technology again..

49) MagicJohn: Build B1 Overachiever

50) ringebri: Move R2 Ringebri Overandout

51) MagicJohn: Trade B3 R3 Overachiever

52) ringebri: Attack B2 Overandout

53) MagicJohn: Build B3 Overachiever

54) ringebri: Build B3 Undercover

55) MagicJohn: Build R1 Overachiever
	MagicJohn: spoil sport...

56) ringebri: Move B1 Undercover Undercat

57) MagicJohn: Move R1 Overachiever Undercat

58) ringebri: Sacrifice Y2 Undercover
Move B2 Overandout Overachiever
Move B1 Undercat Overachiever
Catastrophe Overachiever Blue

59) MagicJohn: Build R2 Undercat

60) ringebri: Build Y1 Ringebri

61) MagicJohn: Attack Y1 Undercat

62) ringebri: Build B1 Undercover

63) MagicJohn: Discover R1 Undercat Y3 Overabundant

64) ringebri: Discover Y1 Ringebri G3 Underway

65) MagicJohn: Sacrifice G2 Overachiever
Build R2 Overabundant
Build R3 Undercat

66) ringebri: Build B1 Undercover

67) MagicJohn: Build Y2 Undercat

68) ringebri: Sacrifice Y3 Ringebri
Move B1 Undercover Magicjohn
Move B1 Undercover Magicjohn
Move B3 Undercover Magicjohn
Catastrophe Magicjohn Blue

69) MagicJohn: Sacrifice Y2 Magicjohn
Move R3 Overachiever Ringebri
Move R2 Overabundant Ringebri

70) ringebri: Move Y1 Underdog Ringebri

71) MagicJohn: Sacrifice R2 Undercat
Attack Y1 Ringebri
Attack G1 Ringebri

	ringebri: out of recources.  can't protect my homeworld. conquered!  I think I'm beginning to understand this game.
	MagicJohn: Your play in the last half of the game showed a lot of improvement. Remember to leave a #3 ship and something red in your home system for defense. Good game...  (More than I can say for my last effort in chase.....)


21295)
Variants: "Hard time"
Started: 2011.12.6, Ended: 2011.12.9
Participants: zoltar (S), Subhan64 (N)
Winner: Subhan64

1) Subhan64: Pass

	zoltar: Hi. Why did you pass your turn?
	Subhan64: because I wish to cede first play to you
	zoltar: Not sure what's going on. The game ended before I could move, but it says it can't be rated.
	Subhan64: Yes.  There is a hard time limit on the ladder games.  You failed to move within the time limit, which triggered the end of the game (you lost).  However, games that move on the first or second move are not used to adjust ratings.  Things worked exactly as they are supposed to


21108)
Variants: "Hard time"
Started: 2011.12.6, Ended: 2012.2.2
Participants: raster51 (S), agentofchaos (W), zoltar (N), Subhan64 (E)
Winner: zoltar

1) zoltar: Homeworld R1 B2 G3

2) Subhan64: Homeworld B1 Y2 G3
	zoltar: Greetingz, intergalactic entities.


3) agentofchaos: Homeworld R1 B3 G3

4) zoltar: Build G1 Zoltar

5) Subhan64: Build G1 Subhan64
	agentofchaos: Greetings!

6) agentofchaos: Build G1 Agentofchaos

7) zoltar: Build G1 Zoltar

8) Subhan64: Trade G1 R1 Subhan64

9) agentofchaos: Trade G1 R1 Agentofchaos

10) zoltar: Trade G1 R1 Zoltar

11) Subhan64: Build R2 Subhan64

12) agentofchaos: Build R2 Agentofchaos

13) zoltar: Build R2 Zoltar

14) Subhan64: Build G1 Subhan64

15) agentofchaos: Trade R1 Y1 Agentofchaos

16) zoltar: Trade R1 Y1 Zoltar

17) Subhan64: Build R1 Subhan64

18) agentofchaos: Discover R2 Agentofchaos Y2 Kanzia

19) zoltar: Discover R2 Zoltar B3 Bluemoon

20) Subhan64: Trade R1 Y1 Subhan64

21) agentofchaos: Build G1 Agentofchaos

22) zoltar: Move G1 Zoltar Bluemoon

23) Subhan64: Build Y1 Subhan64

24) agentofchaos: Move G1 Agentofchaos Kanzia

25) zoltar: Build R1 Bluemoon

26) Subhan64: Discover Y1 Subhan64 G3 Kermit

27) agentofchaos: Build Y1 Agentofchaos

28) zoltar: Trade R2 Y2 Bluemoon

29) Subhan64: Build Y2 Kermit

30) agentofchaos: Trade Y1 B1 Agentofchaos

31) zoltar: Build Y1 Bluemoon

32) Subhan64: Trade G1 B1 Subhan64

33) agentofchaos: Build G1 Agentofchaos

34) zoltar: Discover Y1 Bluemoon B2 Bluebell

35) Subhan64: Build G1 Subhan64

36) agentofchaos: Trade G1 R1 Agentofchaos

37) zoltar: Build R2 Bluemoon

38) Subhan64: Move R1 Subhan64 Kermit

39) agentofchaos: B R2 Kanzia

40) zoltar: Move R2 Bluemoon Bluebell

41) Subhan64: Sacrifice G3 Subhan64
Build R2 Subhan64
Build R3 Kermit
Build G1 Subhan64

42) agentofchaos: Build Y2 Agentofchaos

43) zoltar: Sacrifice G3 Zoltar
Build Y3 Bluebell
Build Y3 Bluemoon
Build Y3 Zoltar

44) Subhan64: Move Y1 Kermit Zoltar

45) agentofchaos: T Y1 G1 Agentofchaos

46) zoltar: Trade Y3 G3 Zoltar

47) Subhan64: Move Y2 Kermit Zoltar

48) agentofchaos: Move B1 Agentofchaos Kanzia

49) zoltar: Build R3 Bluemoon
	zoltar: Yikes!!!!!


50) Subhan64: Trade R2 B2 Subhan64

51) agentofchaos: Sacrifice Y2 Agentofchaos
Move B1 Kanzia Kermit
Move B1 Kermit Subhan64
Catastrophe Subhan64 B

52) zoltar: Sacrifice R2 Bluebell
Attack Y2E Zoltar
Attack Y1E Zoltar

53) Subhan64: Move Y1 Subhan64 Kermit

54) agentofchaos: Trade G1 Y1 Agentofchaos

55) zoltar: Sacrifice Y1 Zoltar
Move Y3 Bluemoon Subhan64

56) Subhan64: Build R2 Subhan64

57) agentofchaos: Build G1 Agentofchaos

58) zoltar: Sacrifice R3 Bluemoon
Attack R2E Subhan64
Attack R2E Subhan64
Attack G1E Subhan64

59) Subhan64: Move R3 Kermit Subhan64

60) agentofchaos: Move R2 Kanzia Kermit

61) zoltar: Sacrifice R2 Subhan64
Attack G1E Subhan64
Attack R3E Subhan64

62) agentofchaos: Attack Y1E Kermit

63) zoltar: Sacrifice Y3 Bluebell
Move Y3 Subhan64 Agentofchaos
Move G1 Subhan64 Agentofchaos
Move G1 Subhan64 Agentofchaos
Catastrophe Agentofchaos G

	agentofchaos: Well played


21324)
Variants: "Hard time"
Started: 2011.12.11, Ended: 2011.12.27
Participants: MagicJohn (S), jonaskoelker (N)
Winner: MagicJohn

1) jonaskoelker: Homeworld B2 R1 G3

2) MagicJohn: Homeworld B1 Y3 G3

3) jonaskoelker: Build G1 Jonaskoelker

4) MagicJohn: Build G1 Magicjohn

5) jonaskoelker: Trade G1 Y1 Jonaskoelker

6) MagicJohn: Discover G1 Magicjohn Y2 Tarvalon

7) jonaskoelker: Build Y1 Jonaskoelker

8) MagicJohn: Build G1 Tarvalon



21346)
Variants: "Hard time"
Started: 2011.12.14, Ended: 2011.12.23
Participants: mneme (S), Subhan64 (N)
Winner: mneme

1) Subhan64: Homeworld Y1 B2 G3

2) mneme: Homeworld B2 G3 Y3

3) Subhan64: Build G1 Subhan64

4) mneme: Build Y1 Mneme

5) Subhan64: Discover G1 Subhan64 Y3 Bigbird

6) mneme: Build Y1 Mneme

7) Subhan64: Build G1 Subhan64

8) mneme: Discover Y1 Mneme B1 Azure

9) Subhan64: Build G1 Subhan64

10) mneme: Build Y2 Mneme

11) Subhan64: Discover G1 Subhan64 Y3 Yellowjacket

12) mneme: D Y1 Azure G3 Whisper

13) Subhan64: Build G2 Bigbird

14) mneme: Trade Y2 G2 Mneme

15) Subhan64: Trade G1 B1 Subhan64

16) mneme: Trade Y1 B1 Mneme

17) Subhan64: Discover G2 Bigbird R1 Elmo

18) mneme: Build B1 Mneme

19) Subhan64: Sacrifice G3 Subhan64
Build G1 Elmo
Build G2 Bigbird
Build G3 Yellowjacket

20) mneme: Discover B1 Mneme Y1 Sign

21) Subhan64: Sacrifice G2 Bigbird
Build G2 Bigbird
Build B2 Subhan64

22) mneme: Sacrifice Y3 Mneme
Move B1 Sign Bigbird
Move B1 Bigbird Subhan64
Move Y1 Whisper Subhan64
Catastrophe Subhan64 B

	mneme: Dissapointing end; I'd hoped you'd seen that issue.  Thanks for the game!
	mneme: FWIW, I'd actually had a mate threat even if your system had non-blue ships in it.  If you ever got to 3 blue in your home (without red in your universe), my plan was to sac my y3 to blow up blue in your home system, then stick my small yellow ship in your home and pop my g2 to finish the job.


21350)
Started: 2011.12.14, Ended: 2012.1.18
Participants: quozl (S), Subhan64 (N)
Winner: Subhan64

1) Subhan64: Homeworld G1 B2 Y3

2) quozl: Homeworld G2 B3 Y3
	Subhan64: first thing is to establish your homeworld.  You want to include g & b, and either y or r.  without blue, you can't construct ships, and without b you can't trade them.  You probably want to pick either a 1/3 or a 2/3 star so you are 2 steps away from me, and definitely a size 3 ship

3) Subhan64: Build Y1 Subhan64
	quozl: Oh wait, I just finally figured out what you meant by 1/3 or 2/3. Since I made a 1/2, that means our stars are just 1 step from each other, right?

4) quozl: Build Y1 Quozl
	quozl: But I can undo my move and change it to a 2/3!
	Subhan64: yes that is right.  Now, your next move will be to construct a y1 ship in your homeworld.


5) Subhan64: Discover Y1 Subhan64 G3 Kermit

6) quozl: Discover Y1 Quozl R1 Fozzie
	quozl: ok
	Subhan64: so now you have choices about what you can do - if you build a y1, I'll get to build a y2.  You can trade your y1 or y3 for an equal-sized ship of a different color, or you can discover a new world


7) Subhan64: Trade Y3 G3 Subhan64

8) quozl: Move Y1 Fozzie Kermit

9) Subhan64: Build G1 Subhan64
	quozl: Why a construct ship?

10) quozl: Trade Y3 G3 Quozl

11) Subhan64: Trade G1 R1 Subhan64

12) quozl: Build G1 Quozl

13) Subhan64: Sacrifice R1 Subhan64
Attack Y1 Kermit

14) quozl: Trade G3 R3 Quozl

15) Subhan64: Build G1 Subhan64

16) quozl: Trade R3 Y3 Quozl

17) Subhan64: Move Y1 Kermit Subhan64

18) quozl: Build G2 Quozl

19) Subhan64: Move G1 Subhan64 Kermit

20) quozl: Trade G2 R2 Quozl

21) Subhan64: Build G2 Kermit

22) quozl: Build R1 Quozl

23) Subhan64: Trade G3 Y3 Subhan64

24) quozl: Trade G1 R1 Quozl

25) Subhan64: Discover G1 Kermit Y1 Bigbird

26) quozl: Move R2 Quozl Bigbird
	quozl: Attack fleet ready!

27) Subhan64: Move G1 Bigbird Kermit

28) quozl: Build Y2 Quozl

29) Subhan64: Build Y2 Kermit

30) quozl: Trade Y2 R2 Quozl

31) Subhan64: Move G2 Kermit Subhan64

32) quozl: Move R2 Quozl Bigbird

33) Subhan64: Trade Y1 R1 Subhan64

34) quozl: Move R2 Bigbird Kermit

35) Subhan64: Sacrifice R1 Subhan64
Attack R2 Kermit

36) quozl: Build Y1 Quozl

37) Subhan64: Discover G1 Kermit R1 Elmo
	Subhan64: gotta watch out for those sacrifice moves!
	quozl: Tricky!

38) quozl: Trade Y3 R3 Quozl
	Subhan64: they really are integral to the strategy of the game


39) Subhan64: Sacrifice Y2 Kermit
Move R2 Kermit Bigbird
Move R2 Bigbird Quozl
Catastrophe Quozl Red

40) quozl: Move R2 Bigbird Kermit

41) Subhan64: Sacrifice Y1 Kermit
Move G1 Elmo Quozl

42) quozl: Trade Y1 R1 Quozl

43) Subhan64: Sacrifice G2 Subhan64
Build G1 Quozl
Build G2 Quozl
Catastrophe Quozl Green

44) quozl: Build R1 Kermit

45) Subhan64: Trade Y3 R3 Subhan64

46) quozl: Trade R1 Y1 Quozl

47) Subhan64: Build R1 Subhan64

	quozl: OK, thanks for teaching me the game. It is very different than what I am used to.
	Subhan64: Yes, it is a very unusual game.  It takes a while to get a handle on how to judiciously manage your pieces to avoid catastrophe & sacrifice well



21372)
Variants: "Hard time"
Started: 2011.12.19, Ended: 2012.2.5
Participants: dlwillson (S), Mandrel (N)
Winner: dlwillson

1) Mandrel: Homeworld R1 B2 G3

2) dlwillson: Homeworld B3 Y1 G3
	Mandrel: Sorry for taking so long to accept the challenge,been pretty busy and not sure I could fit in another game, but cleared up a bit now. Anyway, have a good game!

3) Mandrel: Build G1 Mandrel
	dlwillson: No problem. I'm sorry for being insistent, but it seems nobody at the South end of the ladder is playing... Have fun!

4) dlwillson: B G1 Dlwillson
	Mandrel: Not at all, it's a real ghost town down there


5) Mandrel: Trade G1 Y1 Mandrel

6) dlwillson: T G1 R1 Dlwillson

7) Mandrel: Build Y1 Mandrel

8) dlwillson: Build R1 Dlwillson

9) Mandrel: Build Y2 Mandrel

10) dlwillson: B R2 Dlwillson

11) Mandrel: Trade Y1 B1 Mandrel

12) dlwillson: D R1 Dlwillson G2 Grungy

13) Mandrel: D B1 Mandrel G3 Oscillator

14) dlwillson: T R2 Y2 Dlwillson

15) Mandrel: Build B1 Oscillator

16) dlwillson: Move Y2 Dlwillson Grungy

17) Mandrel: Trade B1 Y1 Oscillator

18) dlwillson: B R2 Grungy

19) Mandrel: Trade Y2 R2 Mandrel

20) dlwillson: M R2 Grungy Oscillator

21) Mandrel: Discover B1 Oscillator G2 Nap

22) dlwillson: A Y1 Oscillator

23) Mandrel: Build Y2 Mandrel
	dlwillson: Can we go a little faster?

24) dlwillson: B R2 Oscillator
	Mandrel: Ok sure, I'll try to speed up a bit.

25) Mandrel: Discover R2 Mandrel B3 Broken
	dlwillson: Thanks Mandrel

26) dlwillson: M R2 Oscillator Nap

27) Mandrel: Build G1 Mandrel

28) dlwillson: Sacrifice G3 Dlwillson
Build R3 Dlwillson
Build R3 Grungy
Build R3 Oscillator

29) Mandrel: Trade Y1 B1 Mandrel

30) dlwillson: Move R3 Grungy Broken

31) Mandrel: Build B1 Nap

32) dlwillson: A R2 Broken

33) Mandrel: Build B2 Mandrel

34) dlwillson: Sacrifice Y2 Grungy
Move R3 Broken Mandrel
Move R3 Oscillator Mandrel

35) Mandrel: Build B2 Nap
	dlwillson: Pretty sure it's over in 3. Maybe 5.

36) dlwillson: Sacrifice R3 Mandrel
Attack G3 Mandrel
Attack Y2 Mandrel
Attack B2 Mandrel
	Mandrel: It's been inevitable for quite a while now.

37) Mandrel: Build G1 Mandrel

38) dlwillson: Sacrifice R3 Mandrel
Attack G1 Mandrel
Attack G1 Mandrel
Attack B1 Mandrel
	dlwillson: Thanks for the game, Mandrel!
	Mandrel: Good game, well played.



21150)
Variants: "Hard time"
Started: 2011.12.21, Ended: 2011.12.28
Participants: dlwillson (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	SilentTitan: /give silenttitan R3

2) dlwillson: H B1 Y3 G3
	dlwillson: LOL!
	dlwillson: /give SilentTitan 2 R3
Cat silenttitan red

3) SilentTitan: Build G1 Silenttitan

4) dlwillson: B G1 Dlwillson

5) SilentTitan: Build G1 Silenttitan

6) dlwillson: B G2 Dlwillson

7) SilentTitan: Trade G1 Y1 Silenttitan

8) dlwillson: Discover G2 Dlwillson G2 Frogne

9) SilentTitan: Build Y1 Silenttitan

10) dlwillson: Trade G1 B1 Dlwillson

11) SilentTitan: Build Y1 Silenttitan

12) dlwillson: B G1 Dlwillson

13) SilentTitan: Discover Y1 Silenttitan G3 Sol

14) dlwillson: Discover B1 Dlwillson G2 Fondue

15) SilentTitan: Discover Y1 Silenttitan B3 Soul

16) dlwillson: T G3 Y3 Dlwillson

17) SilentTitan: Build Y2 Silenttitan

18) dlwillson: B G1 Frogne

19) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Soul Frogne
Move Y1 Frogne Dlwillson

20) dlwillson: M Y3 Dlwillson Frogne

21) SilentTitan: Sacrifice G1 Silenttitan
Build Y2 Dlwillson

22) dlwillson: B Y2 Frogne

23) SilentTitan: Sacrifice Y2 Dlwillson
Move G3 Silenttitan Sol
Move G3 Sol Frogne
Catastrophe Frogne Green

24) dlwillson: B G1 Dlwillson
	SilentTitan: BONSAI!!

25) SilentTitan: Trade Y1 R1 Dlwillson

26) dlwillson: T B1 G1 Fondue

27) SilentTitan: Attack G1 Dlwillson North

28) dlwillson: B G2 Dlwillson

29) SilentTitan: Build G2 Dlwillson
Catastrophe Dlwillson Green

	dlwillson: Good game.


21389)
Variants: "Hard time"
Started: 2011.12.24, Ended: 2012.1.5
Participants: Subhan64 (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) Subhan64: Homeworld R1 B3 G3

3) SilentTitan: Build G1 Silenttitan

4) Subhan64: Build G1 Subhan64

5) SilentTitan: Trade G1 R1 Silenttitan

6) Subhan64: Trade G3 R3 Subhan64

7) SilentTitan: Build G1 Silenttitan

8) Subhan64: Build R2 Subhan64

9) SilentTitan: Build R2 Silenttitan

10) Subhan64: Trade R3 Y3 Subhan64

11) SilentTitan: Trade G1 Y1 Silenttitan

12) Subhan64: Sacrifice Y3 Subhan64
Discover R2 Subhan64 B2 Bb
Discover R2 Bb B3 Cc
Move R2 Cc Silenttitan
Catastrophe Silenttitan Red

13) SilentTitan: Move G3 Silenttitan Subhan64

14) Subhan64: Build G1 Subhan64

15) SilentTitan: Build G1 Subhan64
Catastrophe Subhan64 Green



21395)
Variants: "Hard time"
Started: 2011.12.27, Ended: 2012.3.27
Participants: shmil1 (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld B2 R1 G3

2) shmil1: Homeworld G3 B1 R3

3) MagicJohn: Build G1 Magicjohn
	MagicJohn: Have a good game!

4) shmil1: Build R1 Shmil1

5) MagicJohn: Build G1 Magicjohn

6) shmil1: Build R1 Shmil1

7) MagicJohn: Trade G1 Y1 Magicjohn

8) shmil1: Trade R1 Y1 Shmil1

9) MagicJohn: Build G1 Magicjohn

10) shmil1: Build R1 Shmil1

11) MagicJohn: Build Y1 Magicjohn

12) shmil1: Build Y2 Shmil1

13) MagicJohn: Build Y2 Magicjohn

14) shmil1: Discover Y1 Shmil1 G2 Greeny

15) MagicJohn: Trade Y2 R2 Magicjohn

16) shmil1: Build Y2 Greeny

17) MagicJohn: Discover G1 Magicjohn Y3 Outlander

18) shmil1: Trade Y2 G2 Shmil1

19) MagicJohn: Move Y1 Magicjohn Outlander

20) shmil1: Move Y2 Greeny Outlander

21) MagicJohn: Build R2 Magicjohn

22) shmil1: Sacrifice R1 Shmil1
Attack G1 Outlander

23) MagicJohn: Move G3 Magicjohn Outlander

24) shmil1: Build Y2 Outlander
Catastrophe Outlander Yellow

25) MagicJohn: Discover R2 Magicjohn Y3 Majordisaster

26) shmil1: Build G1 Shmil1

27) MagicJohn: Build G1 Magicjohn

28) shmil1: Trade G2 Y2 Shmil1

29) MagicJohn: Build G2 Magicjohn

30) shmil1: Trade R1 B1 Shmil1

31) MagicJohn: Move G1 Magicjohn Majordisaster

32) shmil1: Build B1 Shmil1

33) MagicJohn: Build G2 Majordisaster

34) shmil1: Build G3 Shmil1

35) MagicJohn: Build G3 Magicjohn

36) shmil1: Sacrifice G3 Shmil1
Build G3 Shmil1
Build R1 Shmil1
Build Y1 Shmil1

37) MagicJohn: Build Y2 Magicjohn

38) shmil1: Move G1 Shmil1 Greeny

39) MagicJohn: Discover G2 Magicjohn Y3 Majorproblem

40) shmil1: Sacrifice G3 Shmil1
Build G3 Greeny
Build Y2 Greeny
Build Y3 Shmil1

41) MagicJohn: Move G2 Majorproblem Greeny
Catastrophe Greeny Green

42) shmil1: Sacrifice Y2 Shmil1
Discover Y3 Shmil1 R2 Neco
Move Y3 Neco Majordisaster

43) MagicJohn: Discover G2 Majordisaster B2 Majorproblem
	MagicJohn: Sorry.... I assumed the disaster without ordering it. Had to re-do.  My bad.. 

44) shmil1: Sacrifice R1 Shmil1
Attack R2 Majordisaster

45) MagicJohn: Trade G2 R2 Majorproblem

46) shmil1: Attack G1 Majordisaster

47) MagicJohn: Discover G1 Magicjohn Y3 Majorminor

48) shmil1: Build R1 Majordisaster

49) MagicJohn: Move R2 Magicjohn Majorminor

50) shmil1: Discover B1 Shmil1 Y2 Modry

51) MagicJohn: Sacrifice G1 Majorminor
Build R1 Majorproblem

52) shmil1: Build G1 Majordisaster

53) MagicJohn: Trade R2 Y2 Majorproblem

54) shmil1: Build G1 Majordisaster

55) MagicJohn: Sacrifice Y2 Magicjohn
Move Y1 Magicjohn Majordisaster
Move Y2 Majorproblem Majordisaster
Catastrophe Majordisaster Y

56) shmil1: Trade B1 G1 Modry

57) MagicJohn: Move R2 Majorminor Modry

58) shmil1: Discover G1 Modry Y3 Zluta

59) MagicJohn: Move R2 Modry Zluta

60) shmil1: Discover G1 Zluta R1 Ruda

61) MagicJohn: Move R2 Zluta Ruda

62) shmil1: Sacrifice Y1 Shmil1
Discover G1 Ruda Y3 Zluta

63) MagicJohn: Build G1 Magicjohn

64) shmil1: Build G1 Zluta
	shmil1: i like this skip-move :)
	MagicJohn: Seems like I didn't leave myself many options for this move.......

65) MagicJohn: Trade G1 Y1 Magicjohn

66) shmil1: Build G1 Zluta

67) MagicJohn: Build Y1 Magicjohn

68) shmil1: Move G1 Zluta Magicjohn

69) MagicJohn: Attack G1 Magicjohn

70) shmil1: Move G1 Zluta Magicjohn

71) MagicJohn: Trade G3 B3 Magicjohn

72) shmil1: Build G2 Magicjohn

73) MagicJohn: Sacrifice R1 Majorproblem
Attack G2 Magicjohn

74) shmil1: Build G2 Magicjohn
Catastrophe Magicjohn Green

75) MagicJohn: Trade Y1 G1 Magicjohn

76) shmil1: Build G1 Zluta

77) MagicJohn: Move G1 Magicjohn Zluta

78) shmil1: Move G1 Zluta Magicjohn

79) MagicJohn: Attack G1 Magicjohn

80) shmil1: Build R1 Shmil1

81) MagicJohn: Discover G1 Zluta Y2 Majorkey

82) shmil1: Move G1 Zluta Majorkey

83) MagicJohn: Build G2 Majorkey

84) shmil1: Build G2 Majorkey

85) MagicJohn: Sacrifice R2 Ruda
Attack G1 Majorkey
Attack G2 Majorkey

86) shmil1: Trade R1 Y1 Shmil1
Catastrophe Majorkey Green

87) MagicJohn: Build G1 Magicjohn

88) shmil1: Build R1 Shmil1

89) MagicJohn: Discover G1 Magicjohn Y3 Secondchance

90) shmil1: Discover B1 Shmil1 G2 Zelena

91) MagicJohn: Build G1 Magicjohn

92) shmil1: Sacrifice Y1 Shmil1
Move B1 Zelena Secondchance

93) MagicJohn: Build G2 Secondchance
	shmil1: welcome at re-start :)

94) shmil1: Sacrifice R1 Shmil1
Attack G1 Secondchance
	MagicJohn: Planets of the apes?

95) MagicJohn: Trade G1 R1 Magicjohn

96) shmil1: Build B1 Secondchance

97) MagicJohn: Sacrifice R1 Magicjohn
Attack G1 Secondchance

98) shmil1: Move B1 Secondchance Magicjohn

99) MagicJohn: Trade B3 Y3 Magicjohn

100) shmil1: Attack G1 Magicjohn

101) MagicJohn: Attack G1 Magicjohn

102) shmil1: Move B1 Secondchance Magicjohn

103) MagicJohn: Attack B1 Magicjohn

104) shmil1: Attack G1 Magicjohn

105) MagicJohn: Attack G1 Magicjohn

106) shmil1: Attack G1 Magicjohn

107) MagicJohn: Attack G1 Magicjohn

108) shmil1: Attack G1 Magicjohn

109) MagicJohn: Attack G1 Magicjohn

110) shmil1: Attack G1 Magicjohn

111) MagicJohn: Move B1 Magicjohn Secondchance

	MagicJohn: Yo, shmil........  If you want to avoid "hard time" kicking in, you might consider  making a move.......


21397)
Variants: "Unrated"
Started: 2011.12.27, Ended: 2012.1.30
Participants: MagicJohn (S), ringebri (N)
Winner: MagicJohn

1) ringebri: Homeworld B1 G3 Y3

2) MagicJohn: Homeworld B1 R2 G3
	ringebri: dah...... dah..... dah...................... dut dah......  (boom boom boom boom boom boom boom boom)
	MagicJohn: I hear the Blue Danube Waltz coming on...
	MagicJohn: Said Zarthustra...(SP?)
	MagicJohn: Ringer, could you please suggest to a family member that a game of irate pigs needs attention?

3) ringebri: Build Y1 Ringebri

4) MagicJohn: Build G1 Magicjohn

5) ringebri: Trade Y1 G1 Ringebri

6) MagicJohn: Trade G1 Y1 Magicjohn

7) ringebri: Discover G1 Ringebri B2 Newhope

8) MagicJohn: Build G1 Magicjohn

9) ringebri: Build G1 Newhope

10) MagicJohn: Build G2 Magicjohn

11) ringebri: Trade G1 Y1 Newhope

12) MagicJohn: Discover G2 Magicjohn B3 Majormistake

13) ringebri: Build Y1 Newhope

14) MagicJohn: Build Y2 Magicjohn

15) ringebri: Discover G1 Newhope R3 Skywalker

16) MagicJohn: Move Y1 Magicjohn Majormistake

17) ringebri: Build Y2 Ringebri

18) MagicJohn: Build Y2 Majormistake

19) ringebri: Trade Y1 B1 Newhope

20) MagicJohn: Move Y2 Majormistake Newhope

21) ringebri: Build G1 Skywalker

22) MagicJohn: Trade G1 R1 Magicjohn

23) ringebri: Move B1 Newhope Skywalker

24) MagicJohn: Move Y2 Magicjohn Skywalker

25) ringebri: Trade G1 R1 Skywalker

26) MagicJohn: Sacrifice R1 Magicjohn
Attack R1 Skywalker

27) ringebri: Build B2 Skywalker

28) MagicJohn: Attack B2 Skywalker

29) ringebri: Trade Y2 R2 Ringebri

30) MagicJohn: Attack G1 Skywalker

31) ringebri: Attack R1 Skywalker

32) MagicJohn: Trade Y2 R2 Newhope

33) ringebri: Attack G1 Skywalker
	ringebri: THERE! What a pain that guy was!

34) MagicJohn: Attack Y1 Newhope

35) ringebri: Build R1 Ringebri

36) MagicJohn: Move G2 Majormistake Newhope

37) ringebri: Discover R2 Ringebri B2 Darth

38) MagicJohn: Discover B2 Skywalker Y2 Majormystery

39) ringebri: Build B3 Skywalker

40) MagicJohn: Move Y2 Skywalker Magicjohn

41) ringebri: Build Y1 Ringebri

42) MagicJohn: Build R1 Newhope

43) ringebri: Build B3 Skywalker

44) MagicJohn: Sacrifice Y2 Magicjohn
Move R1 Newhope Skywalker
Move R2 Newhope Skywalker
Catastrophe Skywalker Red

45) ringebri: Trade Y1 G1 Ringebri
	ringebri: I now have a buzz cut!  When the photo appears on facebook, I'll forward it to you.  Matthew's was shaved.

46) MagicJohn: Sacrifice G2 Newhope
Build B1 Majormystery
Build B3 Majormystery

47) ringebri: Move G1 Ringebri Darth
	MagicJohn: Kaboom...
	ringebri: Ouch!

48) MagicJohn: Trade B3 R3 Majormystery

49) ringebri: Build R1 Darth

50) MagicJohn: Move R3 Majormystery Majormistake

51) ringebri: Build Y1 Ringebri
	ringebri: Check out facebook for a picture of me bald.

52) MagicJohn: Move R3 Majormistake Darth

53) ringebri: Build R1 Darth
Catastrophe Darth Red

54) MagicJohn: Trade B2 R2 Majormystery

55) ringebri: Move Y1 Ringebri Darth
	ringebri: in that "forms" game, for replays, just click on each move in the list. You'll see the game as it looked at that move.

56) MagicJohn: Move R2 Majormystery Majormistake

57) ringebri: Move R1 Ringebri Newhope

58) MagicJohn: Move R2 Majormistake Darth
	MagicJohn: Stupid game...

59) ringebri: Attack Y1 Newhope
	ringebri: those reds are nasty little buggers

60) MagicJohn: Attack G1 Darth

61) ringebri: Build Y2 Ringebri

62) MagicJohn: Attack Y1 Darth

63) ringebri: Trade Y2 B2 Ringebri

64) MagicJohn: Build Y2 Darth

65) ringebri: Move R1 Newhope Majormistake

66) MagicJohn: Sacrifice G1 Darth
Build B3 Majormystery
	MagicJohn: Sara and I saw your picture posting. You really accomplished a couple of things. #1 backing Matthew was a really cool thing to do. #2, I've wondered for years why I looked so much smarter than you. I am amazed! I think you gained 20 IQ points by getting buzzed!!
	MagicJohn: : D   :D   : )  : O   : }    : ]       (the crowd roars its approval.......) 

67) ringebri: Move B2 Ringebri Newhope

68) MagicJohn: Trade B3 G3 Majormystery

69) ringebri: Attack Y1 Majormistake

70) MagicJohn: Build B3 Majormystery

71) ringebri: Build Y2 Ringebri

72) MagicJohn: Trade B3 Y3 Majormystery

73) ringebri: Move Y2 Ringebri Newhope

74) MagicJohn: Move R2 Darth Majormistake

75) ringebri: Move R1 Majormistake Darth

76) MagicJohn: Build B3 Majormystery

77) ringebri: Move Y1 Newhope Majormistake

78) MagicJohn: Attack Y1 Majormistake

79) ringebri: Build Y3 Ringebri

80) MagicJohn: Sacrifice Y3 Majormystery
Move Y1 Darth Ringebri
Move Y2 Darth Ringebri
Move Y1 Majormistake Darth
Catastrophe Ringebri Y

	MagicJohn: OOpsie........ Otherwise the game was fairly even for the most part.


21378)
Variants: "Hard time"
Started: 2011.12.28, Ended: 2012.1.21
Participants: dlwillson (S), SilentTitan (N)
Winner: dlwillson

1) SilentTitan: Homeworld R1 B2 G3

2) dlwillson: Homeworld B1 Y2 G3 Dlwillson

3) SilentTitan: Build G1 Silenttitan
	SilentTitan: <singing>  It's a small world after all......

4) dlwillson: B G1 Dlwillson

5) SilentTitan: Trade G3 Y3 Silenttitan

6) dlwillson: T G1 R1 Dlwillson
	dlwillson: Oh, fooey. I didn't realize I made it small.

7) SilentTitan: Trade G1 R1 Silenttitan

8) dlwillson: B R2 Dlwillson

9) SilentTitan: Trade Y3 G3 Silenttitan

10) dlwillson: T R2 Y2 Dlwillson

11) SilentTitan: Build G1 Silenttitan

12) dlwillson: B R2 Dlwillson

13) SilentTitan: Trade G1 Y1 Silenttitan

14) dlwillson: T R1 B1 Dlwillson

15) SilentTitan: Build G1 Silenttitan

16) dlwillson: Build B1 Dlwillson

17) SilentTitan: Build Y1 Silenttitan

18) dlwillson: D B1 Dlwillson G3 Gecko

19) SilentTitan: Discover Y1 Silenttitan B3 Sol

20) dlwillson: B B2 Gecko

21) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Silenttitan
Build Y3 Silenttitan

22) dlwillson: M Y2 Dlwillson Gecko

23) SilentTitan: Move Y1 Silenttitan Gecko

24) dlwillson: B B2 Gecko

25) SilentTitan: Build Y3 Gecko

26) dlwillson: B Y3 Gecko
C Gecko Y

27) SilentTitan: Trade Y3 G3 Silenttitan

28) dlwillson: Trade B2 Y2 Gecko

29) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y3 Silenttitan
Build G1 Silenttitan

30) dlwillson: M B2 Gecko Silenttitan

31) SilentTitan: Attack B2 Silenttitan South

32) dlwillson: M B1 Gecko Silenttitan

33) SilentTitan: Discover B2 Silenttitan Y3 Soul

34) dlwillson: B Y3 Gecko

35) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Sol Dlwillson
Move Y1 Sol Dlwillson

36) dlwillson: M G3 Dlwillson Soul

37) SilentTitan: Move Y1 Sol Dlwillson
Catastrophe Dlwillson Yellow

38) dlwillson: S Y2 Gecko
M Y3 Gecko Silenttitan
M G3 Soul Silenttitan

39) SilentTitan: Move B2 Soul Dlwillson
	dlwillson: Small universes are weird.

40) dlwillson: A B2 Dlwillson
	SilentTitan: yes they are....

41) SilentTitan: Discover Y3 Silenttitan R3 Fiber

42) dlwillson: S R2 Dlwillson
A G1 Silenttitan
A G1 Silenttitan

43) SilentTitan: Attack G1 Silenttitan North

44) dlwillson: T G3 R3 Silenttitan

45) SilentTitan: Build R1 Silenttitan
Catastrophe Silenttitan Red

46) dlwillson: S B2 Dlwillson
T Y3 G3 Silenttitan
T B1 G1 Silenttitan
C Silenttitan G
	SilentTitan: You had me several turns ago ... I'm just trying to make it as painful as possible ... you do know that ... right?

	SilentTitan: heck of a win.  
	dlwillson: I do. So, we're one and one. Rubber match?
	dlwillson: Thank you. Fun game!



21402)
Variants: "Hard time"
Started: 2011.12.28, Ended: 2011.12.28
Participants: dethdukk (S), SilentTitan (N)
Winner: SilentTitan



21408)
Variants: "Hard time"
Started: 2011.12.28, Ended: 2012.1.6
Participants: dethdukk (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	SilentTitan: LOL.... A number one.... Dukk of Deth.  

2) dethdukk: Homeworld B1 R3 G3

3) SilentTitan: Build G1 Silenttitan

4) dethdukk: Build G1 Dethdukk

5) SilentTitan: Trade G1 R1 Silenttitan



21425)
Variants: "Hard time"
Started: 2011.12.31, Ended: 2012.1.4
Participants: dethdukk (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) dethdukk: Homeworld R1 B2 G3

3) dlwillson: B G1 Dlwillson



21433)
Variants: "Hard time"
Started: 2012.1.2, Ended: 2012.2.23
Participants: Remneb (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: H R1 B2 G3

2) Remneb: Homeworld R2 B3 G3

3) agentofchaos: Build G1 Agentofchaos

4) Remneb: Build G1 Remneb

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) Remneb: Trade G1 Y1 Remneb

7) agentofchaos: Discover Y1 Agentofchaos G3 Frenfur

8) Remneb: Build G1 Remneb

9) agentofchaos: Build G1 Agentofchaos

10) Remneb: Discover G1 Remneb Y1 Thor

11) agentofchaos: Build Y2 Frenfur

12) Remneb: Build Y2 Remneb

13) agentofchaos: Trade G1 R1 Agentofchaos

14) Remneb: Move Y1 Remneb Thor

15) agentofchaos: B G1 Agentofchaos

16) Remneb: Build G1 Remneb

17) agentofchaos: Trade G1 B1 Agentofchaos

18) Remneb: Move Y1 Thor Frenfur

19) agentofchaos: Sacrifice R1 Agentofchaos
Attack Y1 Frenfur

20) Remneb: Build Y2 Remneb

21) agentofchaos: Discover Y1 Frenfur G1 Swyvern

22) Remneb: Move Y2 Remneb Thor

23) agentofchaos: Build Y3 Swyvern

24) Remneb: Build Y3 Remneb

25) agentofchaos: Sacrifice B1 Agentofchaos
Trade Y3 R3 Swyvern

26) Remneb: Trade Y3 R3 Remneb

27) agentofchaos: Build Y3 Swyvern

28) Remneb: Build Y3 Remneb

29) agentofchaos: Build R1 Swyvern

30) Remneb: Sacrifice Y2 Remneb
Move R3 Remneb Thor
Move R3 Thor Frenfur

31) agentofchaos: Move Y2 Frenfur Agentofchaos

32) Remneb: Attack Y1 Frenfur

33) agentofchaos: Build G2 Agentofchaos

34) Remneb: Build G2 Thor

35) agentofchaos: Trade G2 R2 Agentofchaos

36) Remneb: Move G2 Thor Frenfur

37) agentofchaos: Discover R2 Agentofchaos Y3 Artek

38) Remneb: Sacrifice G2 Frenfur
Build R1 Frenfur
Build Y2 Frenfur

39) agentofchaos: Sacrifice Y3 Swyvern
Move R1 Swyvern Remneb
Move R2 Artek Swyvern
Move R2 Swyvern Remneb

40) Remneb: Attack R2 Remneb

41) agentofchaos: Move R3 Swyvern Remneb
Catastrophe Remneb R

42) Remneb: Move R3 Frenfur Swyvern

43) agentofchaos: Discover Y1 Swyvern B3 Farrago

44) Remneb: Trade G1 R1 Remneb

45) agentofchaos: Build Y3 Agentofchaos

46) Remneb: Build Y3 Remneb

47) agentofchaos: Trade Y2 R2 Agentofchaos

48) Remneb: Move Y2 Frenfur Swyvern

49) agentofchaos: Build G1 Agentofchaos

50) Remneb: Build Y2 Swyvern

51) agentofchaos: Trade G1 B1 Agentofchaos

52) Remneb: Sacrifice G3 Remneb
Build R2 Frenfur
Build R2 Swyvern
Build G1 Thor

53) agentofchaos: Move Y3 Agentofchaos Frenfur

54) Remneb: Sacrifice Y2 Swyvern
Move R1 Frenfur Agentofchaos
Move R2 Frenfur Agentofchaos
Catastrophe Agentofchaos R

55) agentofchaos: Trade B1 R1 Agentofchaos

56) Remneb: Build Y2 Swyvern

57) agentofchaos: Move Y1 Farrago Agentofchaos

58) Remneb: Discover Y1 Frenfur R2 Draconis

59) agentofchaos: Build R1 Agentofchaos

60) Remneb: Move Y3 Remneb Draconis

61) agentofchaos: Trade R1 B1 Agentofchaos

62) Remneb: Move Y3 Draconis Frenfur

63) agentofchaos: Move Y3 Frenfur Draconis

64) Remneb: Move Y1 Draconis Frenfur

65) agentofchaos: Build B1 Agentofchaos

66) Remneb: Discover Y2 Thor B3 Nuke

67) agentofchaos: Discover B1 Agentofchaos R1 Dredworld

68) Remneb: Move Y3 Frenfur Draconis

69) agentofchaos: Attack Y3 Draconis

70) Remneb: Sacrifice Y2 Swyvern
Move Y1 Frenfur Draconis
Move Y2 Nuke Draconis
Catastrophe Draconis Y

71) agentofchaos: Trade B1 Y1 Dredworld

72) Remneb: Move G1 Thor Remneb

73) agentofchaos: Build G2 Agentofchaos

74) Remneb: Build G2 Remneb

75) agentofchaos: Build Y2 Agentofchaos

76) Remneb: Trade G1 B1 Remneb

77) agentofchaos: Build R2 Agentofchaos

78) Remneb: Discover R3 Swyvern B3 Dagan

79) agentofchaos: Sacrifice G2 Agentofchaos
Build Y2 Dredworld
Build Y3 Dredworld

80) Remneb: Build Y3 Swyvern

81) agentofchaos: Sacrifice B1 Agentofchaos
Trade Y2 G2 Dredworld

82) Remneb: Move G1 Thor Dagan

83) agentofchaos: Trade Y2 B2 Agentofchaos

84) Remneb: Trade G1 B1 Dagan

85) agentofchaos: Move B2 Agentofchaos Dredworld

86) Remneb: Move Y2 Swyvern Dagan

87) agentofchaos: Build B1 Dredworld

88) Remneb: Discover B1 Remneb Y1 Deneb

89) agentofchaos: Build Y2 Agentofchaos

90) Remneb: Sacrifice Y2 Dagan
Move B1 Dagan Deneb
Move R3 Dagan Deneb

91) agentofchaos: Build B2 Dredworld

92) Remneb: Sacrifice Y3 Swyvern
Move B1 Deneb Agentofchaos
Move B1 Agentofchaos Dredworld
Move R2 Swyvern Remneb
Catastrophe Dredworld B

93) agentofchaos: Trade Y2 B2 Agentofchaos

94) Remneb: Trade G2 B2 Remneb

95) agentofchaos: Move B2 Agentofchaos Dredworld

96) Remneb: Move B2 Remneb Deneb

97) agentofchaos: Build B1 Dredworld

98) Remneb: Discover R1 Remneb B1 Orion

99) agentofchaos: Build B3 Dredworld

100) Remneb: Sacrifice Y3 Remneb
Move B1 Deneb Agentofchaos
Move B1 Agentofchaos Dredworld
Move R3 Deneb Remneb
Catastrophe Dredworld B

101) agentofchaos: Sacrifice Y3 Dredworld
Move R2 Agentofchaos Remneb
Move R1 Agentofchaos Remneb
Pass
Catastrophe Remneb R



21443)
Variants: "Unrated"
Started: 2012.1.3, Ended: 2012.1.6
Participants: pjackson (S), salmoneus (N)
Winner: pjackson

1) salmoneus: Pass

2) pjackson: Homeworld B1 Y2 G3

3) salmoneus: Homeworld Y3 G2 B3

4) pjackson: Build G1 Pjackson

5) salmoneus: Build B1 Salmoneus

6) pjackson: Build G1 Pjackson

7) salmoneus: Trade B1 G1 Salmoneus

8) pjackson: Discover G1 Pjackson Y3 Sagan

9) salmoneus: Build B1 Salmoneus

10) pjackson: Build G2 Sagan

11) salmoneus: Build B1 Salmoneus Sagan

12) pjackson: Trade G3 B3 Pjackson
	pjackson: I thought that I could build ships of a color in systems where a star of that color was present, but apparently not.

13) salmoneus: Trade B3 R3 Salmoneus

14) pjackson: Build B2 Pjackson

15) salmoneus: Trade B1 Y1 Salmoneus

16) pjackson: Trade B3 Y3 Pjackson

17) salmoneus: Discover R3 Salmoneus Y1 Spacepope

18) pjackson: Discover G2 Sagan Y1 Icarus

19) salmoneus: Discover G1 Salmoneus B1 Planetstarbucks

20) pjackson: Sacrifice G2 Icarus
Build G2 Pjackson
Build B2 Pjackson
	pjackson: It's the same move. I just wanted to rename the star, because this tactic may be a little overly ambitious.

21) salmoneus: Move R3 Spacepope Sagan

22) pjackson: Trade B2 R2 Pjackson

23) salmoneus: Attack G1 Sagan

24) pjackson: Discover G2 Pjackson B3 Copernicus

25) salmoneus: Trade G1 Y1 Planetstarbucks

26) pjackson: Sacrifice B2 Pjackson
Trade Y3 R3 Pjackson
Trade R2 Y2 Pjackson

27) salmoneus: Discover Y1 Planetstarbucks G2 Arrakis

28) pjackson: Sacrifice Y2 Pjackson
Discover G2 Copernicus Y1 Wormhole
Move G2 Wormhole Salmoneus

29) salmoneus: Build R1 Sagan

30) pjackson: Sacrifice R3 Pjackson
Attack Y1 Salmoneus
Attack B1 Salmoneus
Pass

	pjackson: Good game.


21478)
Variants: "Hard time"
Started: 2012.1.6, Ended: 2012.2.15
Participants: Subhan64 (S), AdamBadura (N)
Winner: AdamBadura

1) AdamBadura: Homeworld G3 B2 Y3

2) Subhan64: Homeworld Y3 B1 G3

3) AdamBadura: Build Y1 Adambadura

4) Subhan64: Build G1 Subhan64

5) AdamBadura: Trade Y1 R1 Adambadura

6) Subhan64: Trade G1 R1 Subhan64

7) AdamBadura: Build Y1 Adambadura

8) Subhan64: Build G1 Subhan64

9) AdamBadura: Trade Y1 G1 Adambadura

10) Subhan64: Discover G1 Subhan64 B2 Cookiemonster

11) AdamBadura: Build Y1 Adambadura

12) Subhan64: Trade G3 Y3 Subhan64

13) AdamBadura: Trade Y1 B1 Adambadura

14) Subhan64: Build G1 Cookiemonster

15) AdamBadura: Build G2 Adambadura

16) Subhan64: Sacrifice Y3 Subhan64
Move G1 Cookiemonster Subhan64
Discover G1 Cookiemonster R1 T3
Move G1 T3 Adambadura
Catastrophe Adambadura Green

17) AdamBadura: Move Y3 Adambadura Subhan64

18) Subhan64: Build R1 Subhan64
	AdamBadura: I wondered whether you will make a caastrophe and decided to check (I expected you will not). Now the situation is quite complex I think. Long have I thought what to do but somehow I'm unable to see future here. Lets see where this road leads... ;)

19) AdamBadura: Trade Y3 R3 Subhan64

20) Subhan64: Build R2 Subhan64
Catastrophe Subhan64 Red

21) AdamBadura: Trade B1 Y1 Adambadura
	Subhan64: didn't have much choice there!

22) Subhan64: Build G1 Subhan64

23) AdamBadura: Move R1 Adambadura Subhan64

	Subhan64: Well, that's pretty much it.  Good game!


21492)
Variants: "Unrated"
Started: 2012.1.6, Ended: 2012.1.10
Participants: pjackson (S), salmoneus (N)
Winner: salmoneus

1) salmoneus: Homeworld B3 R1 G3

2) pjackson: Homeworld B2 Y3 G3

3) salmoneus: Build G1 Salmoneus

4) pjackson: Build G1 Pjackson

5) salmoneus: Trade G1 Y1 Salmoneus

6) pjackson: Build G1 Pjackson

7) salmoneus: Build Y1 Salmoneus

8) pjackson: Discover G1 Pjackson R1 Tebow

9) salmoneus: Discover Y1 Salmoneus G2 Caladan

10) pjackson: Trade G1 B1 Pjackson
	pjackson: I changed the star color because The Tebow system is, by definition, an offensive and defensive juggernaut. I pity the poor Steeler who attempts to invade The Tebow for five or six sacks, plus a few interceptions, in one game.

11) salmoneus: Build G1 Salmoneus

12) pjackson: Build B1 Pjackson
	salmoneus: How did the steelers lose to those bastards?!

13) salmoneus: Move G1 Salmoneus Caladan

14) pjackson: Discover B1 Pjackson B1 Brees

15) salmoneus: Move G1 Caladan Brees

16) pjackson: Trade B1 R1 Brees

17) salmoneus: Sacrifice G1 Brees
Build Y1 Caladan

18) pjackson: Sacrifice G3 Pjackson
Build R2 Brees
Build R2 Brees
Build B1 Pjackson

19) salmoneus: Sacrifice G3 Salmoneus
Build Y2 Salmoneus
Build Y2 Salmoneus
Build Y2 Caladan

20) pjackson: Trade R2 G2 Brees

21) salmoneus: Trade Y2 G2 Salmoneus

22) pjackson: Trade G2 Y2 Brees
	pjackson: I might be stuck in a very bad position here.

23) salmoneus: Build Y3 Salmoneus

24) pjackson: Move Y2 Brees Caladan
Catastrophe Caladan Y

25) salmoneus: Trade Y2 R2 Salmoneus

26) pjackson: Sacrifice G1 Tebow
Build B2 Pjackson
Catastrophe Pjackson B

	pjackson: The erratic, drunken commander of the Pjackson has become so distraught that he decided to annihilate his home planet. Oh the humanity! And absurdity!
	pjackson: Good game, well played.
	salmoneus: I don't use the word hero lightly, but you sir are the greatest hero in the history in Pjackson history.


21106)
Variants: "Hard time"
Started: 2012.1.8, Ended: 2012.2.15
Participants: disaac (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3
	disaac: Hello Agent, I am Dan. Up for a game?
I have actually only played about 20 games of Homeworlds to this point and they have usually been against the same one or two players. I have been wanting to try against some other players.

2) disaac: Homeworld Y3 G2 B3
	agentofchaos: Hi Dan, nice to meet you. I can't remember how many games I've played, but it's not a huge number. Enjoy the game :-)

3) agentofchaos: Build G1 Agentofchaos

4) disaac: B B1 Disaac

5) agentofchaos: Trade G1 B1 Agentofchaos

6) disaac: B B2 Disaac

7) agentofchaos: B B2 Agentofchaos

8) disaac: Discover B2 Disaac Y1 Sol

9) agentofchaos: Trade B2 Y2 Agentofchaos

10) disaac: Discover B2 Sol G3 Risa

11) agentofchaos: B B2 Agentofchaos

12) disaac: D B1 Disaac G1 Endor

13) agentofchaos: Trade B2 R2 Agentofchaos

14) disaac: Build B2 Endor

15) agentofchaos: Move Y2 Agentofchaos Risa

16) disaac: T B2 R2 Endor

17) agentofchaos: Discover Y2 Risa G1 Zurvanoid

18) disaac: Build B2 Endor

19) agentofchaos: Build G1 Agentofchaos
	disaac: I'm very sorry for the delay. I plan to get back to this game very soon, but have been a bit tied up lately. 
	agentofchaos: That's fine, I don't mind if players take their time

20) disaac: Trade B2 Y2 Endor

21) agentofchaos: Build G2 Agentofchaos

22) disaac: D B1 Endor G3 Pandora

23) agentofchaos: Trade B1 Y1 Agentofchaos

24) disaac: B B1 Risa

25) agentofchaos: Move R2 Agentofchaos Pandora

26) disaac: Sacrifice B1 Pandora
Trade B2 G2 Risa

27) agentofchaos: Move G2 Agentofchaos Risa

28) disaac: Sacrifice G2 Risa
Build B1 Disaac
Build R1 Endor

29) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Agentofchaos
Build G3 Agentofchaos
Build R1 Pandora



21253)
Started: 2012.1.8, Ended: 2012.2.18
Participants: virx61 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) virx61: Homeworld B3 Y2 G3
	ts52: Have a good game.

3) ts52: Build G1 Ts52
	virx61: Thanks

4) virx61: Build G1 Virx61

5) ts52: Discover G1 Ts52 B3 Grover

6) virx61: Discover G1 Virx61 B1 Marsara

7) ts52: Build G1 Grover

8) virx61: Trade G1 Y1 Marsara

9) ts52: Trade G1 Y1 Grover

10) virx61: Build G1 Virx61

11) ts52: Build Y2 Grover

12) virx61: Discover Y1 Marsara G2 Tarsonis

13) ts52: Build G1 Ts52

14) virx61: Discover G1 Virx61 B1 Chausara

15) ts52: Build G2 Grover

16) virx61: Sacrifice Y1 Tarsonis
Discover G1 Chausara G3 Auir

17) ts52: Move G1 Ts52 Auir

18) virx61: Build G2 Virx61

19) ts52: Trade Y1 R1 Grover

20) virx61: Discover G2 Virx61 B1 Kamino

21) ts52: Build G2 Ts52

22) virx61: Trade G2 R2 Kamino

23) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build Y1 Grover

24) virx61: Trade R2 Y2 Kamino

25) ts52: Move G2 Grover Kamino

26) virx61: Move Y2 Kamino Virx61

27) ts52: Move Y1 Grover Kamino

28) virx61: Trade Y2 R2 Virx61

29) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Grover
Build Y2 Kamino

30) virx61: Build R1 Virx61

31) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Grover
Build Y3 Kamino

32) virx61: Trade R1 B1 Virx61

33) ts52: Trade Y3 R3 Kamino

34) virx61: Build R1 Virx61

35) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Kamino
Build R1 Kamino

36) virx61: Discover R2 Virx61 B1 Danube

37) ts52: Move R3 Kamino Auir

38) virx61: Build B2 Virx61

39) ts52: Move Y2 Kamino Auir

40) virx61: Build R2 Virx61

41) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Auir
Build R2 Kamino

42) virx61: Sacrifice G3 Virx61
Build G3 Auir
Build R3 Virx61
Build R3 Danube
Catastrophe Auir G

43) ts52: Move R1 Kamino Virx61
Catastrophe Virx61 R

44) virx61: Sacrifice B2 Virx61
Trade R2 Y2 Danube
Trade R3 G3 Danube

45) ts52: M Y3 Kamino Virx61

46) virx61: Move G3 Danube Virx61

47) ts52: Sacrifice R2 Kamino
Attack G3 Virx61
Attack B1 Virx61

	ts52: Thanks for the game!
	virx61: You're welcome and thank you... I'll need to get better at this!


21497)
Variants: "Hard time"
Started: 2012.1.8, Ended: 2012.1.26
Participants: ts52 (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B1 R2 G3

2) ts52: Homeworld Y1 B3 G3

3) zoltar: Build G1 Zoltar
	ts52: Have a good game.

4) ts52: Build G1 Ts52

5) zoltar: Trade G1 Y1 Zoltar

6) ts52: Build G1 Ts52

7) zoltar: Build G1 Zoltar

8) ts52: Discover G1 Ts52 B2 Grover

9) zoltar: Discover G1 Zoltar B3 Bluemoon

10) ts52: Build G2 Grover

11) zoltar: Build Y1 Zoltar

12) ts52: Trade G2 Y2 Grover

13) zoltar: Build G2 Zoltar

14) ts52: Build Y2 Grover

15) zoltar: Move Y1 Zoltar Bluemoon

16) ts52: Trade Y2 R2 Grover

17) zoltar: Trade G2 R2 Zoltar

18) ts52: Move R2 Grover Bluemoon

19) zoltar: Sacrifice Y1 Bluemoon
Discover G1 Bluemoon B2 Bluemonday

20) ts52: Build G2 Grover

21) zoltar: Build G2 Bluemonday

22) ts52: Move G2 Grover Bluemoon

23) zoltar: Trade R2 Y2 Zoltar

24) ts52: Build G2 Bluemoon

25) zoltar: Sacrifice Y2 Zoltar
Move G2 Bluemonday Ts52
Move G1 Bluemonday Ts52
Catastrophe Ts52 G
	zoltar: gg
	ts52: Wow. I don't know how I missed that... Thanks for the game!



21333)
Variants: "Hard time"
Started: 2012.1.8, Ended: 2012.1.13
Participants: Jesse (S), Tank_7 (N)
Winner: Jesse

1) Tank_7: Homeworld Y3 B1 G3

2) Jesse: Homeworld B1 Y2 G3
	Jesse: Hello, and have a good game.

	Tank_7: Crap sorry I forgot all about this didnt log in for several days :(


21496)
Started: 2012.1.11, Ended: 2013.1.16
Participants: logikal (S), GrantHenninger (N)
Winner: GrantHenninger

1) GrantHenninger: Homeworld B3 Y2 G3

2) logikal: Homeworld Y1 B2 G3

3) GrantHenninger: Build G1 Granthenninger
	GrantHenninger: build g1 in GrantHenninger
	GrantHenninger: build g1 GrantHenninger

4) logikal: Build G1 Logikal
	GrantHenninger: Alright, figured out what I'm doing, I think.

5) GrantHenninger: Trade G1 R1 Granthenninger
	GrantHenninger: build r1 GrantHenninger

6) logikal: Discover G1 Logikal B3 L1

7) GrantHenninger: Build G1 Granthenninger

8) logikal: Build G1 Logikal

9) GrantHenninger: Discover G1 Granthenninger B1 Gmh1

10) logikal: Build G2 L1

11) GrantHenninger:
Build G2 Granthenninger

12) logikal: Sacrifice G3 Logikal
Build G2 Logikal
Build G3 Logikal
Build G3 L1

13) GrantHenninger: S G3 Granthenninger
B G3 Granthenninger
B R1 Granthenninger
B R1 Granthenninger

14) logikal: Trade G1 Y1 L1

15) GrantHenninger: Trade G1 Y1 Gmh1

16) logikal: Build Y2 L1

17) GrantHenninger: Move G2 Granthenninger Gmh1

18) logikal: Discover Y1 L1 G1 L2

19) GrantHenninger: Build Y2 Gmh1

20) logikal: Sacrifice G2 Logikal
Build Y3 L2
Build Y3 L1

21) GrantHenninger: Trade R1 B1 Granthenninger

22) logikal: Move Y2 L1 Logikal

23) GrantHenninger: Move R1 Granthenninger Gmh1



21508)
Variants: "Unrated"
Started: 2012.1.11, Ended: 2012.1.22
Participants: salmoneus (S), pjackson (N)
Winner: salmoneus

1) pjackson: Homeworld Y1 B2 G3

2) salmoneus: Homeworld B3 R2 G3

3) pjackson: Build G1 Pjackson

4) salmoneus: Build G1 Salmoneus
	pjackson: I wish you could name your homeworld.

5) pjackson: Trade G1 B1 Pjackson

6) salmoneus: Trade G1 Y1 Salmoneus

7) pjackson: Build G1 Pjackson

8) salmoneus: Build Y1 Salmoneus

9) pjackson: Build G1 Pjackson

10) salmoneus: Build Y2 Salmoneus

11) pjackson: Discover G1 Pjackson Y3 Alekhine

12) salmoneus: Discover Y1 Salmoneus G1 Kaitain

13) pjackson: Build G2 Pjackson

14) salmoneus: Build G2 Salmoneus

15) pjackson: Trade G2 Y2 Pjackson

16) salmoneus: Move G2 Salmoneus Kaitain

17) pjackson: Build G2 Alekhine

18) salmoneus: Build G2 Salmoneus

19) pjackson: Trade G1 R1 Pjackson

20) salmoneus: Discover G2 Kaitain Y3 Buzzell

21) pjackson: Move Y2 Pjackson Buzzell

22) salmoneus: Sacrifice G3 Salmoneus
Build G1 Buzzell
Build G3 Buzzell
Build G3 Salmoneus

23) pjackson: Sacrifice Y2 Buzzell
Discover G1 Alekhine B1 Wormhole
Move G1 Wormhole Buzzell
Catastrophe Buzzell G
	pjackson: Very interesting move.


24) salmoneus: Build Y2 Kaitain
	pjackson: BOOM!

25) pjackson: Build R1 Pjackson

26) salmoneus: Discover Y2 Kaitain G3 Ecaz

27) pjackson: Build B1 Pjackson

28) salmoneus: Sacrifice G3 Salmoneus
Build Y2 Ecaz
Build Y3 Ecaz
Build Y3 Salmoneus

29) pjackson: Move G2 Alekhine Pjackson

30) salmoneus: Build Y3 Kaitain

31) pjackson: Move G3 Pjackson Ecaz
	pjackson: Interesting move.


32) salmoneus: Discover Y3 Ecaz B2 Grumman

33) pjackson: Sacrifice R1 Pjackson
Attack Y2 Ecaz

34) salmoneus: Trade Y3 R3 Salmoneus

35) pjackson: Discover Y2 Ecaz G1 Capablanca

36) salmoneus: Sacrifice Y2 Salmoneus
Discover Y3 Grumman Y3 Foldedspace
Move Y3 Foldedspace Pjackson

37) pjackson: Sacrifice G3 Ecaz
Build Y2 Capablanca
Build B1 Pjackson
Build R1 Pjackson



21495)
Started: 2012.1.12, Ended: 2012.1.19
Participants: ts52 (S), lorgar (N)
Winner: ts52

1) lorgar: Homeworld B1 Y2 G3

2) ts52: Homeworld Y1 B3 G3

3) lorgar: Build G1 Lorgar
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) lorgar: Trade G1 B1 Lorgar

6) ts52: Build G1 Ts52

7) lorgar: Discover B1 Lorgar G3 Metagame

8) ts52: Discover G1 Ts52 B2 Gonzo

9) lorgar: Build B1 Metagame

10) ts52: Trade G1 Y1 Ts52

11) lorgar: Build B2 Metagame

12) ts52: Build Y1 Ts52

13) lorgar: Trade B2 Y2 Metagame

14) ts52: Move Y1 Ts52 Gonzo

15) lorgar: Trade B1 R1 Metagame

16) ts52: Trade Y1 R1 Ts52

17) lorgar: Build G1 Lorgar

18) ts52: Move R1 Ts52 Gonzo

19) lorgar: Build B1 Metagame

20) ts52: Build G1 Gonzo

21) lorgar: Discover B1 Metagame G2 Melmoth

22) ts52: Build G2 Ts52

23) lorgar: Sacrifice G3 Lorgar
Build G2 Lorgar
Build G3 Lorgar
Build B2 Melmoth

24) ts52: Discover G1 Gonzo Y3 Bigbird

25) lorgar: Sacrifice Y2 Metagame
Move B2 Melmoth Ts52
Move B1 Melmoth Ts52

26) ts52: Move G1 Bigbird Lorgar
Catastrophe Lorgar Green
	ts52: Thanks for the game!



21411)
Variants: "Hard time"
Started: 2012.1.13, Ended: 2012.2.14
Participants: SilentTitan (S), raster51 (N)
Winner: SilentTitan

1) raster51: Homeworld G1 B2 Y3

2) SilentTitan: Homeworld B2 R3 G3

3) raster51: Build Y1 Raster51

4) SilentTitan: Build G1 Silenttitan

5) raster51: Build Y1 Raster51

6) SilentTitan: Build G1 Silenttitan

7) raster51: Trade Y1 B1 Raster51

8) SilentTitan: Trade G3 Y3 Silenttitan

9) raster51: Trade Y1 R1 Raster51

10) SilentTitan: Build G2 Silenttitan

11) raster51: Build Y1 Raster51

12) SilentTitan: Discover G2 Silenttitan Y1 Sol

13) raster51: Construct R1 Raster51

14) SilentTitan: Build G2 Silenttitan

15) raster51: Discover Y1 Raster51 G3 Moon

16) SilentTitan: Build G2 Sol

17) raster51: Build Y1 Moon

18) SilentTitan: Build G3 Sol

19) raster51: Discover R1 Raster51 G3 Chlorophyll

20) SilentTitan: Trade G2 R2 Silenttitan

21) raster51: Build Y2 Raster51

22) SilentTitan: Trade G1 B1 Silenttitan

23) raster51: Build Y2 Moon

24) SilentTitan: Move B1 Silenttitan Sol

25) raster51: Move B1 Raster51 Moon

26) SilentTitan: Sacrifice G3 Sol
Build G1 Silenttitan
Build G2 Silenttitan
Build G3 Sol

27) raster51: Sacrifice Y2 Moon
Move R1 Chlorophyll Raster51
Move B1 Moon Raster51




28) SilentTitan: Discover G3 Sol B3 Sole

29) raster51: Build Y2 Raster51

30) SilentTitan: Build G3 Sole

31) raster51: Build R1 Raster51

32) SilentTitan: Build Y2 Silenttitan

33) raster51: Build Y3 Moon

34) SilentTitan: Sacrifice Y2 Silenttitan
Move G3 Sole Raster51
Move G3 Sole Raster51

35) raster51: Sacrifice R1 Raster51
Attack G3 Raster51

36) SilentTitan: Sacrifice R2 Silenttitan
Attack G3 Raster51 North
Attack Y3 Raster51 North

37) raster51: Move Y3 Moon Raster51

38) SilentTitan: Trade G3 R3 Raster51
Catastrophe Raster51 Yellow

39) raster51: Build R1 Raster51

40) SilentTitan: Attack B1 Raster51 North
Catastrophe Raster51 Red

	SilentTitan: Thanks for the Game. 


21525)
Variants: "Hard time"
Started: 2012.1.14, Ended: 2012.2.20
Participants: Jesse (S), daselva (N)
Winner: Jesse

1) daselva: Homeworld B1 R2 G3

2) Jesse: Homeworld B3 R1 G3

3) daselva: Build G1 Daselva
	Jesse: Welcome.

4) Jesse: Build G1 Jesse
	daselva: hello

5) daselva: Trade G1 Y1 Daselva

6) Jesse: Trade G1 Y1 Jesse

7) daselva: Build G1 Daselva

8) Jesse: Build G1 Jesse

9) daselva: Trade G1 B1 Daselva

10) Jesse: Trade G1 B1 Jesse

11) daselva: Build B2 Daselva

12) Jesse: Build B2 Jesse

13) daselva: Trade B2 R2 Daselva

14) Jesse: Trade B1 R1 Jesse

15) daselva: Discover R2 Daselva G3 S2

16) Jesse: Discover R1 Jesse G2 Oscar

17) daselva: Build G1 Daselva

18) Jesse: Build G1 Jesse

19) daselva: Sacrifice Y1 Daselva
Move R2 S2 Oscar

20) Jesse: Build R1 Oscar

21) daselva: Attack R1 Oscar

22) Jesse: Build R2 Oscar
Catastrophe Oscar R

23) daselva: Trade G1 Y1 Daselva

24) Jesse: Trade G1 R1 Jesse

25) daselva: Build G1 Daselva

26) Jesse: Build G1 Jesse

27) daselva: Build Y1 Daselva

28) Jesse: Build Y2 Jesse

29) daselva: Build Y2 Daselva

30) Jesse: Discover Y2 Jesse G2 Kermit

31) daselva: Trade Y1 R1 Daselva

32) Jesse: Move B2 Jesse Kermit

33) daselva: Build R2 Daselva

34) Jesse: Build R2 Jesse

35) daselva: Discover R2 Daselva G3 S1

36) Jesse: Move R1 Jesse Kermit

37) daselva: Trade R1 Y1 Daselva

38) Jesse: Discover R2 Jesse G2 Lefty

39) daselva: Move Y1 Daselva S1

40) Jesse: Build Y2 Kermit

41) daselva: Build Y3 S1

42) Jesse: Build Y3 Jesse

43) daselva: Sacrifice Y3 S1
Move Y1 S1 Kermit
Move Y1 Daselva S1
Move Y1 S1 Kermit
Catastrophe Kermit Y

44) Jesse: Move Y1 Jesse Kermit



21516)
Variants: "Hard time"
Started: 2012.1.16, Ended: 2012.1.30
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) lorgar: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build G1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Build G1 Lorgar

7) SilentTitan: Build Y1 Silenttitan

8) lorgar: Trade G1 B1 Lorgar

9) SilentTitan: Build Y1 Silenttitan

10) lorgar: Build B1 Lorgar

11) SilentTitan: Discover Y1 Silenttitan G3 Sol

12) lorgar: Discover B1 Lorgar G2 Mister

13) SilentTitan: Build Y2 Silenttitan

14) lorgar: Build B2 Mister

15) SilentTitan: Discover Y2 Silenttitan R3 Sole

16) lorgar: Trade B2 Y2 Mister

17) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Sole
Build Y3 Silenttitan

18) lorgar: Build B2 Mister

19) SilentTitan: Sacrifice Y3 Sole
Move Y2 Sol Mister
Move Y2 Mister Lorgar
Move Y2 Sole Mister

20) lorgar: Discover B1 Mister Y3 Missz

21) SilentTitan: Trade Y3 R3 Silenttitan

22) lorgar: Sacrifice G3 Lorgar
Build B2 Missz
Build B3 Mister
Build B3 Lorgar

23) SilentTitan: Build Y3 Mister

24) lorgar: Sacrifice Y2 Mister
Move B3 Mister Missz
Move B2 Mister Sol

25) SilentTitan: Move Y3 Mister Lorgar

26) lorgar: Trade B3 R3 Lorgar

27) SilentTitan: Sacrifice R3 Silenttitan
Attack R3 Lorgar South
Attack G1 Lorgar South
Attack B1 Lorgar South



21536)
Variants: "Hard time"
Started: 2012.1.18, Ended: 2012.1.24
Participants: Gnomekin (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) Gnomekin: Homeworld Y1 B2 G3

3) SilentTitan: Build G1 Silenttitan
	Gnomekin: I haven't played Homeworlds before and have been meaning to for years. I decided that the only way to properly learn how to play was to bite the bullet.

4) Gnomekin: Build G1 Gnomekin

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Gnomekin: Discover G1 Gnomekin Y3 Halfax
	SilentTitan: This is very true.  I can help you out along the way. If you'd like.
	SilentTitan: This is very true.  I can help you out along the way. If you'd like.

7) SilentTitan: Build Y1 Silenttitan
	Gnomekin: I feel like I'm learning a new language to execute commands :D
	SilentTitan: Not sure why my last chat... repeated three times... sent it from my phone maybe I hit send more than once.  

	SilentTitan: or even why I spelled repeted that way.... yes commands are part of the challenge it seems


8) Gnomekin: Build G1 Gnomekin

9) SilentTitan: Build Y2 Silenttitan

10) Gnomekin: Trade G1 B1 Gnomekin

11) SilentTitan: Discover Y1 Silenttitan G3 Sol

12) Gnomekin: Discover B1 Gnomekin R3 Detroit

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Sol
Build Y3 Silenttitan

14) Gnomekin: Build G1 Gnomekin

15) SilentTitan: Discover Y1 Silenttitan G3 Soul

16) Gnomekin: Trade G1 R1 Gnomekin

17) SilentTitan: Build Y3 Soul

18) Gnomekin: Move R1 Gnomekin Detroit

19) SilentTitan: Trade Y3 R3 Silenttitan

20) Gnomekin: Build G1 Halfax

21) SilentTitan: Build Y3 Soul

22) Gnomekin: Move G1 Halfax Silenttitan

23) SilentTitan: Attack G1 Silenttitan South

24) Gnomekin: Sacrifice G3 Gnomekin
Build G1 Halfax
Build G2 Halfax
Pass
	Gnomekin: Oops.

Hmmm...

I'll have to read the rules more carefully.

I tried to move g2 to my homeworld but couldn't.



21559)
Started: 2012.1.19, Ended: 2012.2.7
Participants: ts52 (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y2 G3

2) ts52: Homeworld Y2 B3 G3

3) lorgar: Build G1 Lorgar

4) ts52: Build G1 Ts52

5) lorgar: Trade G1 B1 Lorgar

6) ts52: Build G1 Ts52

7) lorgar: Discover B1 Lorgar G3 Ragrol

8) ts52: Trade G1 Y1 Ts52

9) lorgar: Build G1 Lorgar

10) ts52: Discover G1 Ts52 Y1 Zoe

11) lorgar: Build B1 Ragrol

12) ts52: Build Y1 Ts52

13) lorgar: Build B2 Ragrol

14) ts52: Move Y1 Ts52 Zoe

15) lorgar: Trade B2 Y2 Ragrol

16) ts52: Build Y3 Ts52

17) lorgar: Build Y3 Ragrol

18) ts52: Trade Y3 R3 Ts52

19) lorgar: Sacrifice Y2 Ragrol
Discover B1 Ragrol G1 Oz
Discover G1 Lorgar Y3 Mnar

20) ts52: Move R3 Ts52 Oz

21) lorgar: Build G2 Lorgar

22) ts52: Attack B1 Oz

23) lorgar: Sacrifice G3 Lorgar
Build G2 Mnar
Build G2 Mnar
Build G3 Lorgar

24) ts52: Move G1 Zoe Mnar
Catastrophe Mnar Green

25) lorgar: Trade G2 R2 Lorgar

26) ts52: Build B2 Oz

27) lorgar: Build G1 Lorgar

28) ts52: Move Y1 Ts52 Oz

29) lorgar: Build B2 Ragrol

30) ts52: Trade B2 G2 Oz

31) lorgar: Discover G1 Lorgar Y3 York

32) ts52: Build B2 Oz

33) lorgar: Build G1 Lorgar

34) ts52: Discover G2 Oz Y3 Bigbird

35) lorgar: Trade B2 G2 Ragrol

36) ts52: Trade B2 R2 Oz

37) lorgar: Discover G2 Ragrol R1 Moldau

38) ts52: Move R2 Oz York

39) lorgar: Sacrifice G1 York
Build G1 Moldau

40) ts52: Build Y2 Oz

41) lorgar: Build R1 Lorgar

42) ts52: Discover Y2 Oz B3 Gonzo

43) lorgar: Build B2 Ragrol

44) ts52: Sacrifice G2 Bigbird
Build Y3 Gonzo
Build G2 Ts52

45) lorgar: Sacrifice Y3 Ragrol
Move G2 Moldau Ts52
Move G1 Moldau Ts52
Move B2 Ragrol Zoe
Catastrophe Ts52 Green
	ts52: Well played. Should've seen that coming.



21548)
Variants: "Hard time"
Started: 2012.1.20, Ended: 2012.1.20
Participants: SilentTitan (S), kikke2 (N)
Winner: SilentTitan



21566)
Variants: "No undo"
Started: 2012.1.23, Ended: 2012.2.15
Participants: lorgar (S), ajo (N)
Winner: ajo

1) ajo: Homeworld G3 B2 Y3

2) lorgar: Homeworld B1 Y3 G3
	ajo: Sorry, I've been away for a long time. I'm going to try to pick up with SDG again, though. Guess we'll see if I finish this game. :)

3) ajo: Build Y1 Ajo

4) lorgar: Build G1 Lorgar

5) ajo: Trade Y1 G1 Ajo

6) lorgar: Build G1 Lorgar

7) ajo: Build G2 Ajo

8) lorgar: Discover G1 Lorgar B2 Magnamund

9) ajo: Trade G1 R1 Ajo

10) lorgar: Build G1 Lorgar

11) ajo: Build G2 Ajo

12) lorgar: Trade G1 R1 Lorgar
	lorgar: oh c**p
	lorgar: thanks for not taking the cheap kill

13) ajo: Discover G2 Ajo Y1 Khyber
	ajo: Shoot. It wasn't intentional; I even saw the possibility a few moves ago and then forgot about it, I guess. Well, I think I still have the upper hand no matter what.

14) lorgar: Build R1 Lorgar

15) ajo: Build R2 Ajo

16) lorgar: Trade R1 B1 Lorgar

17) ajo: Move G2 Khyber Magnamund

18) lorgar: Sacrifice G3 Lorgar
Build G1 Magnamund
Build G2 Magnamund
Build G3 Lorgar

19) ajo: Discover R2 Ajo Y1 Khyber
Catastrophe Magnamund Green
	lorgar: crappit I forgot the catastrophe at the end of the order.
	ajo: I'll do it for you, then.

20) lorgar: Build B1 Lorgar
	lorgar: thanks! that sweet :)

21) ajo: Build Y1 Ajo

22) lorgar: Discover B1 Lorgar B2 Mnar

23) ajo: Move R2 Khyber Mnar

24) lorgar: Sacrifice G3 Lorgar
Build B2 Lorgar
Build B3 Mnar
Build R1 Lorgar

25) ajo: Attack B1 Mnar
	ajo: Hmm, nice half-of-a-trick. But is there a second half? :)

26) lorgar: Trade B1 Y1 Lorgar

27) ajo: Sacrifice G2 Ajo
Build R2 Ajo
Build B1 Mnar
Catastrophe Mnar Blue

28) lorgar: Build B1 Lorgar

29) ajo: Build R2 Ajo

30) lorgar: Discover B2 Lorgar G2 Maru

31) ajo: Discover R2 Ajo B1 Alpha
	ajo: Whoops, I'm dumb. Ignore that "Page Admin" stuff.

32) lorgar: Build B2 Maru

33) ajo: Move R1 Ajo Alpha

34) lorgar: Build B3 Lorgar

35) ajo: Trade R2 G2 Alpha

36) lorgar: Build B3 Maru

37) ajo: Build R2 Ajo

38) lorgar: Trade B3 Y3 Maru

39) ajo: Discover R2 Ajo Y1 Khyber

40) lorgar: Move Y3 Maru Alpha

41) ajo: Sacrifice G2 Alpha
Build R2 Ajo
Build R3 Khyber

42) lorgar: Build B3 Maru

43) ajo: Discover Y1 Ajo G1 Beta

44) lorgar: Sacrifice Y1 Lorgar
Move B2 Maru Beta

45) ajo: Discover Y1 Beta G2 Gamma

46) lorgar: Trade B3 R3 Maru

47) ajo: Trade R2 G2 Ajo

48) lorgar: Build B3 Beta

49) ajo: Build Y1 Gamma

50) lorgar: Build B3 Beta

51) ajo: Build Y2 Gamma

52) lorgar: Trade B3 R3 Beta

53) ajo: Build Y2 Ajo

54) lorgar: Build B3 Beta

55) ajo: Move Y1 Gamma Lorgar

56) lorgar: Sacrifice Y3 Alpha
Move B3 Beta Ajo
Move B3 Beta Ajo
Move B2 Beta Ajo
Catastrophe Ajo Blue

57) ajo: Sacrifice R3 Khyber
Attack R1 Lorgar
Attack R1 Lorgar
Attack B1 Lorgar

58) lorgar: Sacrifice R3 Beta
Attack B1N Lorgar
Attack R1N Lorgar
Attack R1N Lorgar

59) ajo: Move Y2 Gamma Lorgar

60) lorgar: Trade B1 G1 Lorgar

61) ajo: Sacrifice G2 Ajo
Build R2 Alpha
Build R3 Khyber

62) lorgar: Build R3 Maru

63) ajo: Sacrifice R3 Khyber
Attack G1 Lorgar
Attack G1 Lorgar
Attack R1 Lorgar

64) lorgar: Sacrifice R3 Maru
Attack Y2N Lorgar
Attack G1N Lorgar
Attack G1N Lorgar
	ajo: Well, this is certainly interesting. Wonder how long we'll keep this up... :)
	lorgar: ^^

65) ajo: Sacrifice R2 Khyber
Attack R1 Lorgar
Attack G1 Lorgar

66) lorgar: Build Y1 Lorgar
Catastrophe Lorgar Yellow

67) ajo: Trade R2 B2 Alpha
	ajo: Hmm. I wasn't expecting that (at least not on YOUR turn!). This is going to be another really close game.

68) lorgar: Sacrifice R3 Maru
Attack G1 Lorgar
Attack R1 Lorgar
Attack R1 Lorgar

69) ajo: Sacrifice B2 Alpha
Trade Y2 B2 Ajo
Trade Y1 B1 Gamma

70) lorgar: Trade B3 G3 Lorgar
	ajo: Check.

71) ajo: Build B2 Ajo

72) lorgar: Pass
	ajo: Checkmate? :)

73) ajo: Sacrifice Y3 Ajo
Move B2 Ajo Lorgar
Move B2 Ajo Lorgar
Move B1 Gamma Lorgar
Catastrophe Lorgar Blue
	ajo: Good game. :)



21563)
Variants: "Hard time"
Started: 2012.1.24, Ended: 2012.1.26
Participants: Gnomekin (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	Gnomekin: Okay. Now that I have a better idea of how things work (and that when you sacrifice you can only do that color action), I am prepared to get back up and try again.

2) Gnomekin: Homeworld Y2 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) Gnomekin: Build G1 Gnomekin

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Gnomekin: Trade G1 R1 Gnomekin

7) SilentTitan: Build Y1 Silenttitan

8) Gnomekin: Build G1 Gnomekin

9) SilentTitan: Build Y1 Silenttitan

10) Gnomekin: Discover G1 Gnomekin B3 Amber

11) SilentTitan: Discover Y1 Silenttitan G3 Sol
	SilentTitan: oh... I didn't realize we were in a small universe until you made that last move there.


12) Gnomekin: Sacrifice G3 Gnomekin
Build R1 Gnomekin
Build R2 Gnomekin
Build G1 Amber

13) SilentTitan: Build Y2 Silenttitan

14) Gnomekin: Trade R2 Y2 Gnomekin

15) SilentTitan: Build Y3 Sol

16) Gnomekin: Move Y2 Gnomekin Amber

17) SilentTitan: Trade Y2 R2 Silenttitan
	Gnomekin: Was that a Zelazney reference?
	SilentTitan: Could be.  Who is zelazney?

18) Gnomekin: Build Y2 Amber

19) SilentTitan: Move Y3 Sol Gnomekin

20) Gnomekin: Trade Y2 R2 Amber

21) SilentTitan: Sacrifice R2 Silenttitan
Attack R1 Gnomekin South
Attack R1 Gnomekin South
	Gnomekin: Good. This time, you had to kill me, which shows improvement on my part.



21571)
Variants: "Hard time"
Started: 2012.1.26, Ended: 2012.1.30
Participants: dlwillson (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) dlwillson: H R3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) dlwillson: B G1 Dlwillson

5) SilentTitan: Trade G1 Y1 Silenttitan

6) dlwillson: Trade G1 B1 Dlwillson

7) SilentTitan: Build Y1 Silenttitan

8) dlwillson: Build B1 Dlwillson

9) SilentTitan: Build Y1 Silenttitan

	dlwillson: Ha! I'm so used to starting with yellow... I never even ~looked~ since we started.
	dlwillson: Good game. Correcting would take at least three moves. Let's start over and I'll try to pay attention. Sorry...


21588)
Variants: "Unrated"
Started: 2012.1.28, Ended: 2012.2.18
Participants: pjackson (S), salmoneus (N)
Winner: salmoneus

1) salmoneus: Homeworld B3 R1 G3

2) pjackson: Homeworld B2 G2 R3 *

3) salmoneus: Build G1 Salmoneus
	salmoneus: Interesting choice.

4) pjackson: Build R1 Pjackson

5) salmoneus: Trade G1 Y1 Salmoneus

6) pjackson: Trade R1 Y1 Pjackson

7) salmoneus: Build G1 Salmoneus

8) pjackson: Build R1 Pjackson

9) salmoneus: Discover G1 Salmoneus Y2 Rossak

10) pjackson: Trade R1 G1 Pjackson

11) salmoneus: Build G1 Salmoneus

12) pjackson: Build R1 Pjackson

13) salmoneus: Build G2 Rossak

14) pjackson: Trade R1 B1 Pjackson

15) salmoneus: Discover G1 Rossak Y3 Kepler

16) pjackson: Discover G1 Pjackson Y1 Omicron_persei8

17) salmoneus: Sacrifice G3 Salmoneus
Build G2 Salmoneus
Build G3 Salmoneus
Build G3 Rossak

18) pjackson: Build G3 Omicron_persei8

19) salmoneus: Trade G2 Y2 Salmoneus

20) pjackson: Build Y2 Pjackson

21) salmoneus: Sacrifice Y2 Salmoneus
Move G1 Salmoneus Pjackson
Move G1 Kepler Pjackson

22) pjackson: Sacrifice R3 Pjackson
Attack G1 Pjackson
Attack G1 Pjackson
Pass

23) salmoneus: Trade G3 R3 Salmoneus

24) pjackson: Trade G1 R1 Pjackson

25) salmoneus: Move G3 Rossak Salmoneus

	pjackson: I didn't have a move that wouldn't have made my position substantially worse.


21596)
Variants: "Hard time"
Started: 2012.1.29, Ended: 2012.2.4
Participants: ajo (S), Salmonax (N)
Winner: ajo

1) Salmonax: Homeworld R1 G3 B3

2) ajo: Homeworld Y3 G1 B3

3) Salmonax: Build B1 Salmonax

4) ajo: Build B1 Ajo

5) Salmonax: Trade B1 Y1 Salmonax

6) ajo: Discover B1 Ajo G2 Alpha

7) Salmonax: Build Y1 Salmonax

8) ajo: Build B1 Ajo

9) Salmonax: Trade Y1 R1 Salmonax

10) ajo: Trade B1 R1 Alpha

11) Salmonax: Build R2 Salmonax

12) ajo: Build R2 Alpha

13) Salmonax: Move R2 Salmonax Alpha

14) ajo: Sacrifice R1 Alpha
Attack R2 Alpha

15) Salmonax: Build Y1 Salmonax
	Salmonax: Argh!

16) ajo: Sacrifice B1 Ajo
Trade R2 Y2 Alpha
	ajo: Heh. :)

17) Salmonax: Discover R1 Salmonax G2 S1

18) ajo: Build Y1 Alpha

19) Salmonax: Move Y1 Salmonax S1

20) ajo: Build B1 Ajo

21) Salmonax: Build Y2 S1

22) ajo: Sacrifice B1 Ajo
Trade Y1 B1 Alpha

23) Salmonax: Move Y1 S1 Ajo

24) ajo: Build B1 Alpha

25) Salmonax: Build Y1 Ajo

26) ajo: Build R1 Alpha

27) Salmonax: Build Y2 Ajo
	ajo: My gambit may have failed to pay off... :P

28) ajo: Build Y3 Alpha
Catastrophe Ajo Yellow
	ajo: Eh? You forgot to "catastrophe ajo yellow"!

29) Salmonax: Build R2 S1
	Salmonax: No, didn't forget... was going to trade all to blue if you didn't notice that I forgot. =D

30) ajo: Move R2 Alpha Ajo

31) Salmonax: Build Y1 Salmonax

32) ajo: Move Y3 Alpha Ajo

33) Salmonax: Discover Y1 Salmonax G2 S2

34) ajo: Build R2 Ajo

35) Salmonax: Build Y1 S2

36) ajo: Discover R2 Ajo B2 Beta

37) Salmonax: Build Y2 Salmonax

38) ajo: Build R3 Alpha

39) Salmonax: Build Y3 S1

40) ajo: Trade R3 G3 Alpha

41) Salmonax: Sacrifice B3 Salmonax
Trade Y1 G1 S2
Trade Y1 G1 Salmonax
Trade Y3 G3 S1

42) ajo: Sacrifice Y2 Alpha
Move B3 Ajo Alpha
Move B3 Alpha Salmonax

43) Salmonax: Build Y1 Salmonax

44) ajo: Sacrifice R2 Beta
Attack Y2 Salmonax
Attack G1 Salmonax
	ajo: Check. But it's going to be close. :)
	Salmonax: Yeah it will!

45) Salmonax: Sacrifice Y2 S1
Move R2 S1 Salmonax
Move G3 S1 Salmonax

46) ajo: Sacrifice R2 Ajo
Attack R2 Salmonax
Attack G3 Salmonax
	ajo: Wrong color; I think you ought to have concentrated on green. (Check.)

	ajo: And there's the checkmate. Good game! :)
	Salmonax: Gg


21585)
Variants: "Hard time"
Started: 2012.1.30, Ended: 2012.2.28
Participants: SilentTitan (S), lorgar (N)
Winner: SilentTitan

1) lorgar: Homeworld B1 Y3 G3

2) SilentTitan: Homeworld R1 B2 G3

3) lorgar: Build G1 Lorgar

4) SilentTitan: Build G1 Silenttitan

5) lorgar: Trade G1 R1 Lorgar

6) SilentTitan: Trade G1 R1 Silenttitan

7) lorgar: Build R2 Lorgar

8) SilentTitan: Build R2 Silenttitan

9) lorgar: Build G1 Lorgar

10) SilentTitan: Trade R2 Y2 Silenttitan

11) lorgar: Build R2 Lorgar

12) SilentTitan: Build R2 Silenttitan

13) lorgar: Trade R2 B2 Lorgar

14) SilentTitan: Discover R2 Silenttitan B3 Sol

15) lorgar: Discover R2 Lorgar Y2 Mike

16) SilentTitan: Trade R2 G2 Sol

17) lorgar: Discover B2 Lorgar G2 Windmill

18) SilentTitan: Build Y1 Silenttitan

19) lorgar: Build B1 Windmill

20) SilentTitan: Build G1 Sol

21) lorgar: Trade B2 Y2 Windmill

22) SilentTitan: Trade G1 Y1 Sol

23) lorgar: Build B1 Windmill

24) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y3 Sol
Build Y3 Silenttitan

25) lorgar: Move Y2 Windmill Sol
Catastrophe Sol Yellow

26) SilentTitan: Trade Y3 G3 Silenttitan

27) lorgar: Build B2 Windmill

28) SilentTitan: Discover Y1 Silenttitan B3 Soul

29) lorgar: Trade B1 Y1 Windmill

30) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Soul
Build Y2 Silenttitan
Build Y3 Silenttitan

31) lorgar: Build Y3 Windmill

32) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Soul Windmill
Move Y1 Soul Windmill
Catastrophe Windmill Yellow

33) lorgar: Trade B2 G2 Windmill

34) SilentTitan: Trade Y3 G3 Silenttitan

35) lorgar: Build B1 Windmill

36) SilentTitan: Build G1 Sol

37) lorgar: Trade B1 Y1 Windmill

38) SilentTitan: Build G1 Silenttitan

39) lorgar: Discover G2 Windmill G3 Grasshoper

40) SilentTitan: Trade G2 Y2 Sol

41) lorgar: Move G1 Lorgar Mike

42) SilentTitan: Build G2 Sol

43) lorgar: Sacrifice G2 Grasshoper
Build G2 Lorgar
Build G3 Mike

44) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Sol Mike
Move G2 Sol Mike
Catastrophe Mike Green

45) lorgar: Build B1 Windmill

46) SilentTitan: Trade G1 Y1 Silenttitan

47) lorgar: Build B2 Windmill

48) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Silenttitan
Build Y3 Silenttitan

49) lorgar: Build Y3 Windmill

50) SilentTitan: Trade Y2 G2 Silenttitan

51) lorgar: Discover B2 Windmill G3 Armok

52) SilentTitan: Move Y2 Sol Windmill

53) lorgar: Sacrifice Y3 Windmill
Move Y1 Windmill Armok
Move Y1 Armok Silenttitan
Move B2 Armok Silenttitan

54) SilentTitan: Sacrifice Y2 Windmill
Discover Y1 Sol Y2 Soul
Discover Y1 Silenttitan Y3 Sole

55) lorgar: Sacrifice G2 Lorgar
Build B2 Silenttitan
Build B3 Silenttitan
Catastrophe Silenttitan Blue

56) SilentTitan: Attack Y1 Silenttitan North

57) lorgar: Move R2 Mike Sole

58) SilentTitan: Discover Y1 Sole G2 Sol

59) lorgar: Build B2 Windmill

60) SilentTitan: Sacrifice G2 Silenttitan
Build Y2 Sol
Build Y2 Soul

61) lorgar: Trade B2 R2 Windmill

62) SilentTitan: Move Y2 Soul Silenttitan

63) lorgar: Build R2 Windmill

64) SilentTitan: Discover R1 Silenttitan G3 Tic

65) lorgar: Move R2 Sole Silenttitan

66) SilentTitan: Attack R2 Silenttitan North

67) lorgar: Build R3 Lorgar

68) SilentTitan: Move Y3 Silenttitan Windmill

69) lorgar: Trade R3 B3 Lorgar
	lorgar: crappit that was a bad move

70) SilentTitan: Sacrifice R2 Silenttitan
Attack R2 Windmill North
Attack R2 Windmill North

71) lorgar: Sacrifice B3 Lorgar
Trade B1 G1 Windmill
Trade B1 G1 Windmill
Trade R1 G1 Lorgar

72) SilentTitan: Sacrifice Y2 Silenttitan
Move Y3 Windmill Lorgar
Move R2 Windmill Lorgar

73) lorgar: Pass

74) SilentTitan: Sacrifice R2 Windmill
Attack G3 Lorgar North
Attack G1 Lorgar North

	SilentTitan: Thank you... and thank you for playing.
	lorgar: even if I get beaten every time I like to play with you. You are hardcore :)
	SilentTitan: yeah... I can see that .... playing against nmeme and twoshort will quickly put you on that path.


21602)
Variants: "Hard time"
Started: 2012.1.30, Ended: 2012.2.20
Participants: SilentTitan (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld Y3 B2 G3

2) SilentTitan: Homeworld B1 R2 G3

3) dlwillson: Build G1 Dlwillson

4) SilentTitan: Build G1 Silenttitan

5) dlwillson: Trade G1 B1 Dlwillson

6) SilentTitan: Trade G1 B1 Silenttitan

7) dlwillson: B B2 Dlwillson
	dlwillson: Holy crap. Homeworlds is HARD...

8) SilentTitan: Build B2 Silenttitan

9) dlwillson: D B2 Dlwillson G1 Dingo

10) SilentTitan: Trade B2 Y2 Silenttitan

11) dlwillson: B G1 Dlwillson

12) SilentTitan: Build Y1 Silenttitan

13) dlwillson: T B1 R1 Dlwillson

14) SilentTitan: Build B1 Silenttitan

15) dlwillson: B B2 Dingo

16) SilentTitan: Sacrifice Y2 Silenttitan
Discover B1 Silenttitan Y3 Sol
Discover B1 Silenttitan Y3 Sole

17) dlwillson: T B2 Y2 Dingo

18) SilentTitan: Build G1 Silenttitan

19) dlwillson: B Y1 Dingo

20) SilentTitan: Build G2 Silenttitan

21) dlwillson: T Y2 R2 Dingo

22) SilentTitan: Trade G2 B2 Silenttitan

23) dlwillson: B B3 Dingo

24) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Sol
Build B3 Silenttitan
Build G2 Silenttitan

25) dlwillson: D B2 Dingo G3 Lab

26) SilentTitan: Trade B2 Y2 Silenttitan

27) dlwillson: B B2 Dingo

28) SilentTitan: Sacrifice Y2 Silenttitan
Move B1 Sol Dingo
Move B1 Sole Dingo
Catastrophe Dingo Blue

29) dlwillson: Trade B2 R2 Lab

30) SilentTitan: Trade B3 R3 Sol

31) dlwillson: B R1 Dingo

32) SilentTitan: Discover G2 Silenttitan R3 Sole

33) dlwillson: S G3 Dlwillson
B R1 Dingo
B R3 Dlwillson
B G2 Dlwillson

34) SilentTitan: Trade B3 Y3 Silenttitan

35) dlwillson: S G2 Dlwillson
B Y1 Dingo
B Y2 Dingo

36) SilentTitan: Build G2 Silenttitan

37) dlwillson: T R3 G3 Dlwillson

38) SilentTitan: Discover G2 Silenttitan R3 Soul

39) dlwillson: D Y1 Dingo B3 Hound

40) SilentTitan: Trade Y3 G3 Silenttitan

41) dlwillson: S G3 Dlwillson
B G2 Dlwillson
B G3 Dlwillson
B Y2 Hound

42) SilentTitan: Build Y2 Silenttitan

43) dlwillson: M R1 Dingo Hound

44) SilentTitan: Sacrifice Y2 Silenttitan
Move G2 Sole Dingo
Move G2 Dingo Dlwillson
Catastrophe Dlwillson Green

45) dlwillson: Build R3 Lab

46) SilentTitan: Sacrifice Y1 Silenttitan
Discover R3 Sol Y1 Race

47) dlwillson: Sacrifice Y2 Dingo
Move R3 Lab Race
Move R3 Race Dlwillson

48) SilentTitan: Move R3 Race Hound
	SilentTitan: That was weird.... not sure how I didn't see that the first time.   Also, still not entirely convinced that was the best move.... 

49) dlwillson: S Y2 Hound
M R1 Dingo Hound
M R2 Dingo Hound
C Hound R

50) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Soul
Build G2 Soul
Build G2 Silenttitan

51) dlwillson: Discover Y1 Dingo G3 Frog

52) SilentTitan: Trade G2 Y2 Silenttitan

53) dlwillson: T R3 G3 Dlwillson

54) SilentTitan: Build Y1 Silenttitan

55) dlwillson: B G1 Dlwillson

56) SilentTitan: Trade Y1 B1 Silenttitan

57) dlwillson: Discover G1 Dlwillson Y1 Nugget

58) SilentTitan: Sacrifice B1 Silenttitan
Trade G2 B2 Soul

59) dlwillson: B G2 Dlwillson

60) SilentTitan: Build Y2 Silenttitan

61) dlwillson: Sacrifice G3 Dlwillson
Build G2 Nugget
Build G3 Dlwillson
Build Y2 Hound

62) SilentTitan: Move Y2 Silenttitan Frog

63) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B Y3 Frog
B Y3 Hound

	SilentTitan: good game
	dlwillson: Thanks. Good game you, too!
	SilentTitan: We need a chess clock.

	dlwillson: LOL!


21474)
Variants: "Unrated"
Started: 2012.2.4, Ended: 2012.5.21
Participants: OnePageWars (S), lorgar (W), agentofchaos (N), dlwillson (E)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3

2) dlwillson: H B2 Y1 G3

3) OnePageWars: Homeworld G2 Y3 B3
	dlwillson: What are the win conditions?

4) lorgar: Homeworld B1 Y3 G3

5) agentofchaos: Build G1 Agentofchaos

6) dlwillson: Build G1 Dlwillson
	dlwillson: Errr... How does one win in 4-way on SDG?

7) OnePageWars: Build B1 Onepagewars
	agentofchaos: The default win condition is last man standing. There's a "sinister" variant where you win by eliminating the person to your left, but if I recall correctly this game uses the default conditions. 

8) lorgar: Build G1 Lorgar

9) agentofchaos: Trade G1 B1 Agentofchaos

10) dlwillson: T G1 B1 Dlwillson

11) OnePageWars: Build B2 Onepagewars

12) lorgar: Trade G3 B3 Lorgar

13) agentofchaos: B B2 Agentofchaos

14) dlwillson: D B1 Dlwillson G3 Jungle

15) OnePageWars: Build B2 Onepagewars

16) lorgar: Build B2 Lorgar
Catastrophe Onepagewars Blue

17) agentofchaos: Trade B2 Y2 Agentofchaos

18) dlwillson: B G1 Dlwillson
	dlwillson: WTF?

19) lorgar: Discover B2 Lorgar G2 Mnar

20) agentofchaos: Move Y2 Agentofchaos Jungle

21) dlwillson: T G1 R1 Dlwillson

22) lorgar: Trade G1 R1 Lorgar

23) agentofchaos: Trade B1 R1 Agentofchaos

24) dlwillson: B B1 Jungle

25) lorgar: Trade B3 G3 Lorgar

26) agentofchaos: Build R1 Agentofchaos

27) dlwillson: T B1 Y1 Jungle

28) lorgar: Build B1 Mnar

29) agentofchaos: Trade R1 Y1 Agentofchaos

30) dlwillson: B G1 Dlwillson

31) lorgar: Trade B2 R2 Mnar

32) agentofchaos: Sacrifice R1 Agentofchaos
Attack Y1E Jungle

33) dlwillson: B B1 Jungle

34) lorgar: Build B2 Mnar

35) agentofchaos: Build Y1 Agentofchaos

36) dlwillson: B B2 Jungle

37) lorgar: Trade B1 Y1 Mnar

38) agentofchaos: Trade Y1 B1 Agentofchaos

39) dlwillson: Trade B1 R1 Jungle

40) lorgar: Build B1 Mnar

41) agentofchaos: Sacrifice Y1 Jungle
Discover Y2 Jungle R2 Kakrazoon

42) dlwillson: Trade B2 Y2 Jungle

43) lorgar: Discover B2 Mnar G3 Mhor
	dlwillson: Chicken!

44) agentofchaos: Build G1 Agentofchaos

45) dlwillson: B B2 Jungle

46) lorgar: Build B2 Mhor

47) agentofchaos: Trade G1 R1 Agentofchaos

48) dlwillson: D B1 Jungle G2 Forest

49) lorgar: Sacrifice Y1 Mnar
Move B2 Mhor Forest

50) agentofchaos: Build G1 Agentofchaos

51) dlwillson: B B2 Forest

52) lorgar: Sacrifice R2 Mnar
Attack B2E Forest
Attack B1E Forest

53) agentofchaos: Discover B1 Agentofchaos Y3 Quasmar

54) dlwillson: B B3 Jungle

55) lorgar: Build B3 Mnar

56) agentofchaos: Sacrifice G1 Agentofchaos
Build B3 Quasmar

57) dlwillson: Sacrifice Y2 Jungle
Move B2 Jungle Forest
Discover G1 Dlwillson B3 Sky
Catastrophe Forest B

58) lorgar: Trade B1 R1 Mnar

59) agentofchaos: Build R2 Agentofchaos

60) dlwillson: Build R2 Dlwillson

61) lorgar: Build B1 Mhor

62) agentofchaos: Move R1 Agentofchaos Quasmar

63) dlwillson: M R2 Dlwillson Sky

64) lorgar: Trade B2 R2 Mhor

65) agentofchaos: Build R3 Agentofchaos

66) dlwillson: S G3 Dlwillson
B R3 Dlwillson
B R3 Jungle
B R3 Sky

67) lorgar: Build R3 Mnar

68) agentofchaos: Trade B3 G3 Quasmar

69) dlwillson: Sacrifice B3 Jungle
Trade R3 Y3 Jungle
Trade R3 Y3 Sky
Trade R3 Y3 Dlwillson

70) lorgar: Trade R1 Y1 Mnar

71) agentofchaos: Sacrifice Y2 Kakrazoon
Move R3 Agentofchaos Mhor
Move R2 Agentofchaos Quasmar

72) dlwillson: B G1 Sky

73) lorgar: Build R1 Mhor

74) agentofchaos: Trade R1 B1 Quasmar

75) dlwillson: M G1 Sky Dlwillson

76) lorgar: Build R1 Mhor Catastrophe Mhor Red

77) agentofchaos: Sacrifice Y1 Agentofchaos
Discover R3 Mhor Y2 Escapod

78) dlwillson: Discover R1 Jungle G2 Field

79) lorgar: Trade R2 Y2 Mhor

80) agentofchaos: Build G1 Agentofchaos

81) dlwillson: Move Y3 Jungle Field

82) lorgar: Build R2 Mnar

83) agentofchaos: Move B1 Quasmar Escapod

84) dlwillson: T Y3 G3 Dlwillson

85) lorgar: Build B2 Mhor

86) agentofchaos: Build B2 Quasmar

87) dlwillson: B Y1 Sky

88) lorgar: Build B2 Mnar

89) agentofchaos: Sacrifice G1 Agentofchaos
Build B2 Escapod

90) dlwillson: Trade Y3 B3 Sky

91) lorgar: Trade B2 G2 Mhor

92) agentofchaos: Trade B2 Y2 Escapod

93) dlwillson: D B3 Sky G2 Forest

94) lorgar: Trade B2 Y2 Mnar

95) agentofchaos: Move R3 Escapod Sky

96) dlwillson: S G3 Dlwillson
B R2 Sky
B R3 Sky
B R3 Dlwillson
C Sky R

97) lorgar: Sacrifice Y2 Mnar
Move R1 Mhor Dlwillson
Move R1 Mhor Dlwillson
Catastrophe Dlwillson Red

98) agentofchaos: Build G1 Agentofchaos

99) dlwillson: Sacrifice Y3 Field
Move B3 Forest Sky
Move B3 Sky Dlwillson
Move Y1 Sky Field


100) lorgar: Build B2 Mhor

101) agentofchaos: Trade G1 Y1 Agentofchaos

102) dlwillson: T B3 R3 Dlwillson

103) lorgar: Sacrifice Y2 Mhor
Move B1 Mhor Dlwillson
Move B2 Mhor Dlwillson

104) agentofchaos: Build G1 Agentofchaos

105) dlwillson: A B2W Dlwillson

106) lorgar: Move R2 Mnar Sky

107) agentofchaos: Move B1 Quasmar Dlwillson
Catastrophe Dlwillson B

108) dlwillson: Build G1 Sky

109) lorgar: Attack G1E Sky

110) agentofchaos: Move R2 Quasmar Field

111) dlwillson: Build G1 Sky

112) lorgar: Attack G1E Sky

113) agentofchaos: Attack Y1E Field

114) dlwillson: Build G2 Sky

115) lorgar: Attack G2E Sky

116) agentofchaos: Attack R1E Field

117) dlwillson: Build R1 Dlwillson
Catastrophe Sky G

118) lorgar: Build B1 Mnar

119) agentofchaos: Build Y1 Field

120) dlwillson: B G1 Dlwillson

121) dlwillson: M R3 Dlwillson Escapod

122) agentofchaos: Sacrifice Y2 Escapod
Move G3 Quasmar Dlwillson
Move R2 Field Dlwillson

123) dlwillson: B R1 Dlwillson
	dlwillson: What the Heck?

124) agentofchaos: Build R1 Dlwillson
Catastrophe Dlwillson R

125) dlwillson: M R3 Escapod Dlwillson
	agentofchaos: Looks like I missed a turn for some reason
	dlwillson: Why did Lorgar resign?

126) agentofchaos: Sacrifice R1 Field
Attack R3E Dlwillson
	agentofchaos: He sent a message in another game that he doesn't have time to play this week due to personal commitments. 

127) dlwillson: Discover G1 Dlwillson B3 Frobnitz

128) agentofchaos: Attack G1E Dlwillson

	agentofchaos: Thanks for the game 


21603)
Variants: "Hard time"
Started: 2012.2.4, Ended: 2012.2.28
Participants: agentofchaos (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) agentofchaos: Homeworld R2 B3 G3

3) SilentTitan: Build G1 Silenttitan

4) agentofchaos: Build G1 Agentofchaos

5) SilentTitan: Trade G1 Y1 Silenttitan

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) SilentTitan: Build G1 Silenttitan

8) agentofchaos: Build G1 Agentofchaos

9) SilentTitan: Trade G1 R1 Silenttitan

10) agentofchaos: Trade G1 R1 Agentofchaos

11) SilentTitan: Build R2 Silenttitan

12) agentofchaos: Build R2 Agentofchaos

13) SilentTitan: Discover R2 Silenttitan B3 Sol

14) agentofchaos: Discover R2 Agentofchaos Y1 Freedonia

15) SilentTitan: Sacrifice G3 Silenttitan
Build R3 Silenttitan
Build R3 Sol
Build Y2 Silenttitan

16) agentofchaos: Build Y2 Agentofchaos

17) SilentTitan: Trade R3 G3 Silenttitan

18) agentofchaos: Trade Y1 G1 Agentofchaos

19) SilentTitan: Sacrifice Y1 Silenttitan
Move R3 Sol Freedonia

20) agentofchaos: Discover R2 Freedonia Y3 A-jeroth

21) SilentTitan: Sacrifice G3 Silenttitan
Build R3 Sol
Build R3 Freedonia
Build Y1 Silenttitan

22) agentofchaos: Move R1 Agentofchaos Freedonia

23) SilentTitan: Move R3 Freedonia A-jeroth

24) agentofchaos: Sacrifice Y2 Agentofchaos
Move R2 A-jeroth Silenttitan
Discover R1 Freedonia Y3 Dredloth

25) SilentTitan: Attack R2 Silenttitan South

26) agentofchaos: Move R1 Dredloth Silenttitan
Catastrophe Silenttitan R

27) SilentTitan: Trade R3 G3 Sol

28) agentofchaos: Trade G1 Y1 Agentofchaos

29) SilentTitan: Trade R2 Y2 Sol

30) agentofchaos: Build Y2 Agentofchaos

31) SilentTitan: Build Y3 Sol

32) agentofchaos: Build G1 Agentofchaos

33) SilentTitan: Sacrifice Y3 Sol
Move G3 Sol Freedonia
Move G3 Freedonia Agentofchaos
Move R3 Freedonia Agentofchaos

34) agentofchaos: Attack R3 Agentofchaos

35) SilentTitan: Sacrifice R3 A-jeroth
Attack G3 Agentofchaos South
Attack R3 Agentofchaos South
Attack G1 Agentofchaos South

	agentofchaos: Very well done
	SilentTitan: Thank you for the game


21655)
Started: 2012.2.7, Ended: 2012.2.14
Participants: lorgar (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) lorgar: Homeworld B3 Y1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) lorgar: Build G1 Lorgar

5) ts52: Trade G1 Y1 Ts52

6) lorgar: Build G1 Lorgar

7) ts52: Build Y2 Ts52

8) lorgar: Discover G1 Lorgar B2 Aram

9) ts52: Discover Y2 Ts52 G3 Kermit

10) lorgar: Build G1 Lorgar

11) ts52: Build G2 Ts52

12) lorgar: Build G2 Aram

13) ts52: Discover G2 Ts52 Y3 Bigbird

14) lorgar: Trade G2 Y2 Aram

15) ts52: Sacrifice Y2 Kermit
Discover G2 Bigbird Y2 Doom
Move G2 Doom Lorgar
Catastrophe Lorgar Green
	ts52: That was too quick. Another re-match?



21669)
Variants: "Unrated"
Started: 2012.2.11, Ended: 2012.2.26
Participants: bertilious (S), slothbear (N), emusan (E)
Winner: emusan

1) slothbear: Homeworld Y3 B1 G3

2) emusan: Homeworld B1 G2 Y3
	slothbear: Keep track of any comments you don't want to reveal as we play. Like wtf did he build 1 green when he could have sacrificed one turquoise for 29 ships?  whatever.

3) bertilious: Homeworld G3 B2 Y3

4) slothbear: Build G1 Slothbear

5) emusan: Build Y1 Emusan

6) bertilious: Build Y1 Bertilious

7) slothbear: Discover G1 Slothbear B2 Alnitak

8) emusan: Trade Y1 B1 Emusan

9) bertilious: Trade Y1 R1 Bertilious

10) slothbear: Build G1 Alnitak

11) emusan: Build Y1 Emusan

12) bertilious: Build Y1 Bertilious

13) slothbear: Build G1 Slothbear

14) emusan: B Y1 Emusan

15) bertilious: Build Y1 Bertilious

16) slothbear: Trade G1 R1 Slothbear

17) emusan: D B1 Emusan R3 Secret

18) bertilious: Discover Y1 Bertilious R1 Bertland
	slothbear: where did all the propulsion go?
	emusan: propulsion?

19) slothbear: Build G1 Slothbear
	emusan: oh lol sorry, got sidetracked by physics

20) emusan: M Y1 Emusan Secret

21) bertilious: Trade Y1 G1 Bertilious

22) slothbear: Trade G1 Y1 Alnitak

23) emusan: B Y2 Emusan

24) bertilious: Build Y2 Bertilious

25) slothbear: Discover Y1 Alnitak G3 Verda

26) emusan: M Y2 Emusan Secret

27) bertilious: Discover Y1 Bertland G3 Bertlandia

28) slothbear: Build Y2 Verda

29) emusan: T Y1 G1 Secret

30) bertilious: Build G2 Bertilious

31) slothbear: Move Y2 Verda Alnitak

32) emusan: B G2 Secret

33) bertilious: Discover Y2 Bertilious R1 Bertland

34) slothbear: Sacrifice Y2 Alnitak
Move G1 Alnitak Bertland
Move G1 Bertland Bertilious
Catastrophe Bertilious Green

35) emusan: D G1 Secret Y2 Lol

36) bertilious: Trade R1 B1 Bertilious

37) slothbear: Move R1 Slothbear Lol
	slothbear: sorry

38) emusan: M G1 Lol Secret
	slothbear: Propulsion: from two Latin words: pro meaning forwards and pellere meaning to drive. You'd think they'd cover that in physics.
	bertilious: what happened to my g3 in bertilious?

39) bertilious: Move B1 Bertilious Bertlandia

40) slothbear: Move R1 Lol Bertlandia
	slothbear: Ghosts of your g1 and g2 ships shout: What happened to Us? Don't mind us, we're small and insignificant.
	slothbear: bertilious had 3 green units. I (uhm, we) conspired to add a 4th green unit to bertilious.  Since there were 4 units of one color, I had the opportunity, the opportunity, the duty (some might say) to declare a catastrophe, destroying all Green in the system. I tried not to, I swear.  But Andy said, "if he exposes the Queen, take her." Even if it his first game?, I asked, looking for any way to not attack you. "Yes."  That was all. "Yes"
	slothbear: or, sorry

41) emusan: B Y1 Secret
	slothbear: uhm. careful re: what I'm encouraging you to do. just saying.
	slothbear: "remember the bertilious."

42) bertilious: Build B2 Bertlandia

43) slothbear: Build Y2 Verda

44) emusan: T Y1 R1 Emusan

45) bertilious: Move B2 Bertlandia Bertilious
	slothbear: Good Bye lol.

46) slothbear: Attack Y1S Bertlandia
	emusan: it shall return!

47) emusan: B B2 Secret

48) bertilious: Trade Y3 R3 Bertilious

49) slothbear: Trade G3 R3 Slothbear

50) emusan: M B2 Secret Emusan

51) bertilious: Build B2 Bertlandia

52) slothbear: Discover Y1 Bertlandia G1 Outback

53) emusan: B B3 Secret

54) bertilious: Trade R3 Y3 Bertilious

55) slothbear: Build Y1 Outback
	emusan: lol I haven't used twitter in ages...
	slothbear: The view from my chair: http://flic.kr/p/buL82F
	slothbear: The important thing is that you staked out your name. Slothbear2 was mighty ticked when he found out I'd already taken the name. Five years earlier.

56) emusan: Build B3 Emusan
	emusan: ach... well I only have enough pieces for a two player game... gonna have to get more! lol
	slothbear: me neither... but I have some Xeno colors filling in for now.

57) bertilious: Move Y3 Bertilious Bertlandia

58) slothbear: Sacrifice Y1 Outback
Move R1 Bertlandia Outback

59) emusan: M B3 Emusan Secret

60) bertilious: Build Y1 Bertlandia

61) slothbear: Build R1 Outback

62) emusan: Sacrifice B1 Secret
Trade B3 R3 Secret

63) bertilious: Discover Y1 Bertlandia B1 Berttown

64) slothbear: Sacrifice Y2 Verda
Move R1 Outback Secret
Move R1 Outback Secret
Catastrophe Secret Red
	slothbear: As long as you two pass for the next nine moves, I have something really nice planned.

65) emusan: B R1 Emusan
	slothbear: aw. Aw. AW!

66) bertilious: Trade B1 R1 Bertlandia
	emusan: lol almost lost my homeworld
	slothbear: nah. we're nicer than that. 
	slothbear: there will be more games after this one, np if your hw falls. 
	emusan: still though, I don't plan on losing this one quite yet
	slothbear: "good intentions"

67) slothbear: Build G1 Slothbear

68) emusan: T R1 Y1 Emusan

69) bertilious: Move R1 Bertlandia Bertland

70) slothbear: Trade G1 B1 Slothbear
	slothbear: sorry

71) emusan: T B2 R2 Emusan
	slothbear: If you ever need to see previous states, there is an Archive. It's not perfect, but... http://superdupergames.org/main.html?page=archive_play&gid=21669
	emusan: nooooooooooooooo... need to start over lol
	slothbear: there are so many competing pressures in this game. quite the marvel.
	slothbear: and the secret project was researching supernovae?

72) bertilious: Build B2 Bertlandia
	bertilious: super sour

73) slothbear: Discover B1 Slothbear Y2 Mrsstewart

74) emusan: M R2 Emusan Verda

75) bertilious: Move Y3 Bertlandia Bertilious

76) slothbear: Sacrifice Y1 Verda
Move B1 Mrsstewart Outback

77) emusan: T Y3 B3 Emusan

78) bertilious: Trade B2 R2 Bertlandia

79) slothbear: Discover B1 Outback G3 Ruby

80) emusan: M B3 Emusan Verda

81) bertilious: Build B2 Bertlandia

82) slothbear: Build B3 Ruby

83) emusan: B B3 Verda
	emusan: noooo almost got mah move in!

84) bertilious: Trade B2 G2 Bertlandia

85) slothbear: Trade B3 Y3 Ruby
	slothbear: jjjeee, you had 30 seconds. wake up.

86) emusan: T B3 Y3 Verda

87) bertilious: Build B2 Bertlandia

88) slothbear: Build B3 Ruby

89) emusan: T B3 R3 Verda

90) bertilious: Trade B2 Y2 Bertlandia

91) slothbear: Trade B3 R3 Ruby

92) emusan: M R3 Verda Emusan

93) bertilious: Build B2 Bertlandia

94) slothbear: Build R1 Ruby

95) emusan: B Y1 Emusan

96) bertilious: Move R2 Bertlandia Bertilious
	slothbear: "I'm picking up a lot of blueshift, Cap'n!"

97) slothbear: Discover Y1 Outback R3 Rubytues

98) emusan: B R2 Verda

99) bertilious: Trade B2 G2 Bertlandia

100) slothbear: Build B2 Ruby

101) emusan: B Y2 Verda

102) bertilious: Build B3 Bertlandia

103) slothbear: Discover B2 Ruby Y2 Plugh

104) emusan: M R2 Verda Plugh

105) bertilious: Move R2 Bertilious Slothbear

106) slothbear: Attack R2S Slothbear

107) emusan: A B2N Plugh

108) bertilious: Move Y2 Bertlandia Bertilious

109) slothbear: Build B3 Ruby

110) emusan: T B2 R2 Plugh

111) bertilious: Trade B2 G2 Bertilious Bertilious

112) slothbear: Sacrifice B3 Ruby
Trade Y1 G1 Rubytues
Trade R1 G1 Ruby
Trade R3 G3 Ruby

113) emusan: S Y2 Verda
M R2 Plugh Slothbear
M R2 Plugh Slothbear
C Slothbear Red

114) bertilious: Trade B2 R2 Bertlandia
	emusan: lol it's not case sensitive apparently
	slothbear: nah! and since all the commands are unique, you can abbreviate them. d for discover. gotta type whole system names though, so much typing.

115) slothbear: Sacrifice Y3 Ruby
Move G3 Ruby Emusan
Move G1 Ruby Emusan
Move G1 Rubytues Emusan
Catastrophe Emusan Green
	emusan: yeah, I've been using M for move, etc. for awhile now lol
	slothbear: yawn. time to go to dinner. see you tomorrow.
	emusan: yawn? It's 3:17... shouldn't be sleepy by now lol...
	slothbear: nope. boredom re: my neighbor's aggressive moves.
	emusan: aww... well I'm sure you'll figure something out...

116) emusan: M R3 Emusan Bertilious

117) bertilious: Trade Y3 R3 Bertilious

118) slothbear: Build B2 Ruby

119) emusan: A R3S Bertilious

120) bertilious: Build R1 Bertlandia

121) slothbear: Build B2 Ruby
	slothbear: Turn 60: http://flic.kr/p/byhohp
I'm looking for ways to better visualize the game. My setup often has errors, ooops, how did that ship get *there*? For now, you should build paper pyramids, perhaps that will distract you.
	slothbear: TY uncle Eeyore: http://www.suberic.net/~dmm/games/oihp.html
	slothbear: wait. Eeyore is a hero, but he only took the pic. Ty uncle Denis 
	slothbear: our bank is anemic. needs a transfusion. who will be first to donate?

122) emusan: Sacrifice Y1 Emusan
M R3 Bertilious Slothbear

123) bertilious: Build B2 Bertlandia
	slothbear: do you understand the reference to PLUGH?
	emusan: related to XYZZY I believe... not entirely sure about any more than that though...
	slothbear: yup

124) slothbear: Build G1 Slothbear

125) emusan: A G1N Slothbear
	emusan: what goes around comes around?
	slothbear: I'm *so* glad I turned on the UNDO feature for this game. kinda.
	emusan: it's helped you in the past too
	emusan: I'm sure there will be more games too :).
	slothbear: helped me rename systems.  or maybe a little more.  a bit.
	slothbear: more games?  goody!
	emusan: and spring break is in two weeks for both steve and me so maybe we could do one in person lol(should have enough pieces between the two of us).
	slothbear: why didn't I turn on Sinister? cuz I'm soft.
	slothbear: I'd love to do one (or more) in person. More than a turn a day?  wow.

126) bertilious: Trade B2 Y2 Bertlandia

127) slothbear: Build G1 Slothbear

128) emusan: S Y1 Emusan
M R3 Bertilious Slothbear
	slothbear: sorry

129) bertilious: Move R1 Bertlandia Bertland
	emusan: this game is going very bad very fast lol
	slothbear: I don't know what the average length is, but I'm pretty sure we're above it.

130) slothbear: Trade G1 Y1 Slothbear

131) emusan: S R3 Slothbear
A Y1N Slothbear
A G1N Slothbear
Pass
	emusan: lol undo??

132) emusan: S Y3 Verda
M R3 Slothbear Bertilious
M R2 Verda Bertilious
M G1 Slothbear Bertilious
	slothbear: slight shift. no prob. nothing to see. move along.

133) bertilious: Build R2 Bertlandia

134) emusan: S R2 Bertilious
A Y2S Bertilious
A G2S Bertilious

	slothbear: ? Does elimination award an extra turn? at least on my readout, it looks like emusan got two turns in a row, sacrifice R3 in slothbear, then sacrifice Y3 in Verda.
	slothbear: In any case.... Well done, emusan.
	emusan: yeah, I was kind of wondering about that, I figured it was just a rule I missed or something...


21670)
Variants: "Hard time"
Started: 2012.2.12, Ended: 2012.3.19
Participants: radio414 (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3

2) radio414: Homeworld B2 R1 G3

3) dlwillson: B G1 Dlwillson

4) radio414: Build G1 Radio414

5) dlwillson: T G1 B1 Dlwillson

6) radio414: Build G1 Radio414

7) dlwillson: B B1 Dlwillson
	dlwillson: This is awesome; I love a fast game! Thank you. :-)

8) radio414: Trade G3 B3 Radio414
	dlwillson: Have we played before?
	radio414: I have no Idea

9) dlwillson: Build G1 Dlwillson

10) radio414: Build B2 Radio414

11) dlwillson: Trade G3 Y3 Dlwillson

12) radio414: Trade B2 Y2 Radio414

13) dlwillson: Discover B1 Dlwillson G2 Frog

14) radio414: Build G2 Radio414

15) dlwillson: Discover B1 Dlwillson G2 Toad

16) radio414: Discover G1 Radio414 B3 Snail

17) dlwillson: B G3 Dlwillson

18) radio414: Build G3 Snail

19) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B B2 Toad
B B2 Frog

20) radio414: Sacrifice G3 Snail
Build G3 Snail
Build G3 Snail
Build Y1 Radio414

21) dlwillson: S Y3 Dlwillson
M G1 Dlwillson Frog
Move G1 Frog Snail
Discover B1 Frog Y3 Bee
C Snail G

22) radio414: Discover B3 Radio414 G3 Grue

23) dlwillson: B B3 Frog

24) radio414: Build B3 Grue

25) dlwillson: T B2 Y2 Frog

26) radio414: Trade B3 R3 Grue

27) dlwillson: T B2 R2 Toad

28) radio414: Sacrifice Y1 Radio414
Move R3 Grue Radio414

29) dlwillson: Build G1 Dlwillson

30) radio414: Build B2 Grue

31) dlwillson: Sacrifice G3 Dlwillson
B G1 Dlwillson
B G3 Dlwillson
B B2 Bee

32) radio414: Move G1 Radio414 Grue

33) dlwillson: S G1 Dlwillson
B B3 Toad

34) radio414: Build G1 Radio414

35) dlwillson: D G1 Dlwillson Y2 Goldilocks

36) radio414: Discover Y2 Radio414 G3 Papabear

37) dlwillson: Trade B3 Y3 Toad
	dlwillson: Nice knock-down! Why do I never see those coming? :-)

38) radio414: Build Y1 Papabear
	dlwillson: I think it would have served you better to knock it down a g2, just in case you get a chance to cash in later. Also would have left you with yellow at home, which you'll want when I start pushing blues at you.

39) dlwillson: S Y2 Frog
M B1 Bee Radio414
M B2 Bee Radio414

40) radio414: Attack B2 Radio414

41) dlwillson: Sacrifice G1 Goldilocks
Build B3 Radio414
Catastrophe Radio414 B

42) radio414: Discover Y1 Papabear B2 Desparado

43) dlwillson: B R1 Toad



21568)
Started: 2012.2.13, Ended: 2012.2.29
Participants: ludiki (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B1 Y3 G3

2) ludiki: Homeworld G2 Y1 B3

3) lorgar: Build G1 Lorgar

4) ludiki: Build B1 Ludiki

5) lorgar: Trade G1 Y1 Lorgar
	ludiki: Hi Lorgar! I'm new to SDG and, though it's been months I wanted to play Homeworlds, it's my first time… I hope I won't make to many newbie mistakes.

6) ludiki: Trade B1 Y1 Ludiki

7) lorgar: Discover Y1 Lorgar G2 Mnar

8) ludiki: Discover Y1 Ludiki B3 Tanga

9) lorgar: Build G1 Lorgar

10) ludiki: Build B1 Ludiki

11) lorgar: Trade G1 R1 Lorgar

12) ludiki: Move B1 Ludiki Tanga

13) lorgar: Build G1 Lorgar

14) ludiki: Trade B1 G1 Tanga

15) lorgar: Build R1 Lorgar

16) ludiki: Build Y2 Tanga

17) lorgar: Build Y2 Mnar

18) ludiki: Build B1 Ludiki

19) lorgar: Move Y2 Mnar Tanga

20) ludiki: Trade Y2 R2 Tanga

21) lorgar: Sacrifice R1 Lorgar
Attack R2S Tanga

22) ludiki: Trade B3 R3 Ludiki

23) lorgar: Attack Y1S Tanga

24) ludiki: Build G1 Tanga
	ludiki: what for a newb'mistake have i done?!

25) lorgar: Attack G1S Tanga
	lorgar: nobody is perfect ;)

26) ludiki: Trade G1 B1 Tanga

27) lorgar: Attack B1S Tanga

28) ludiki: Build B2 Ludiki

29) lorgar: Sacrifice B1 Tanga
Trade Y1 B1 Mnar

30) ludiki: Discover B2 Ludiki G3 Simba

31) lorgar: Build Y1 Tanga

32) ludiki: Build B2 Simba

33) lorgar: Sacrifice Y2 Tanga
Move Y1 Tanga Ludiki
Move Y1 Tanga Ludiki

34) ludiki: Trade B2 Y2 Simba

35) lorgar: Build G1 Tanga

36) ludiki: Build Y2 Simba

37) lorgar: Build Y2 Ludiki
Catastrophe Ludiki Yellow

38) ludiki: Trade Y2 R2 Simba

39) lorgar: Trade G3 Y3 Lorgar

40) ludiki: Move R2 Simba Mnar

41) lorgar: Sacrifice Y3 Lorgar
Move G1 Lorgar Ludiki
Move G1 Tanga Ludiki
Move G1 Tanga Ludiki
Catastrophe Ludiki Green

	ludiki: but it's too late, isn't it? well done
	lorgar: rematch?


21677)
Variants: "Hard time"
Started: 2012.2.14, Ended: 2012.4.23
Participants: TwoShort (S), SilentTitan (N)
Winner: TwoShort

1) SilentTitan: Homeworld R1 B2 G3
	SilentTitan: I am back.  Hopefully I will be able to actually finish this game

2) TwoShort: Homeworld B1 R3 G3

3) SilentTitan: Build G1 Silenttitan

4) TwoShort: Build G1 Twoshort

5) SilentTitan: Trade G1 Y1 Silenttitan

6) TwoShort: Trade G1 Y1 Twoshort

7) SilentTitan: Build G1 Silenttitan

8) TwoShort: Build G1 Twoshort

9) SilentTitan: Trade G1 B1 Silenttitan

10) TwoShort: Trade G1 B1 Twoshort

11) SilentTitan: Build B2 Silenttitan

12) TwoShort: Build B2 Twoshort

13) SilentTitan: Discover B1 Silenttitan Y3 Sol

14) TwoShort: Discover B1 Twoshort Y2 Yolonda

15) SilentTitan: Build G1 Silenttitan

16) TwoShort: Build B3 Twoshort

17) SilentTitan: Build B3 Silenttitan

18) TwoShort: Sacrifice G3 Twoshort
Build B3 Yolonda
Build Y1 Twoshort
Build Y2 Twoshort

19) SilentTitan: Discover B1 Sol Y2 Soul

20) TwoShort: Sacrifice Y2 Twoshort
Discover B1 Yolonda Y3 Yoyodyne
Move B2 Twoshort Soul

21) SilentTitan: Trade B3 R3 Silenttitan

22) TwoShort: Trade B2 R2 Soul

23) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Soul
Build Y2 Silenttitan
Build Y3 Silenttitan

24) TwoShort: Attack B2 Soul

25) SilentTitan: Sacrifice Y2 Silenttitan
Move R3 Silenttitan Yoyodyne
Move R3 Yoyodyne Soul

26) TwoShort: Sacrifice B3 Yolonda
Trade B2 R2 Soul
Trade B3 G3 Twoshort
Trade Y1 G1 Twoshort

27) SilentTitan: Sacrifice B2 Silenttitan
Trade Y1 R1 Silenttitan
Trade R3 G3 Soul

28) TwoShort: Attack B1 Soul

29) SilentTitan: Trade Y3 R3 Silenttitan

30) TwoShort: Move R2 Soul Yoyodyne
	SilentTitan: oh good... learned something new.  

31) SilentTitan: Sacrifice R1 Silenttitan
Attack R2 Soul South

32) TwoShort: Discover B1 Soul Y3 Yonder

33) SilentTitan: Move R2 Soul Yonder

34) TwoShort: Discover B1 Yonder R2 Rover

35) SilentTitan: Trade R3 Y3 Silenttitan

36) TwoShort: Sacrifice G1 Twoshort
Build B2 Rover

37) SilentTitan: Move G3 Soul Yoyodyne

38) TwoShort: Discover R2 Yoyodyne G2 Grogar

39) SilentTitan: Build G1 Silenttitan

40) TwoShort: Build G1 Twoshort

41) SilentTitan: Build G2 Yoyodyne

42) TwoShort: Discover B1 Yoyodyne G2 Goner

43) SilentTitan: Build G3 Silenttitan

44) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build B2 Goner
Build B3 Rover
	TwoShort: Excellent game.  I figured I should say that now so I'll be free to slink away in dejection when you finish me off :)
	SilentTitan: well, Thank you.... I of course will believe you are dead when I pry the number one spot from your cold dead hand. 
	TwoShort: Fair enough, since I'll certainly keep trying to weasel out until then :)

45) SilentTitan: Trade G3 B3 Silenttitan

46) TwoShort: Trade B2 Y2 Rover

47) SilentTitan: Trade G1 Y1 Silenttitan

48) TwoShort: Move B3 Rover Yonder

49) SilentTitan: Sacrifice G3 Yoyodyne
Build G1 Yoyodyne
Build G3 Silenttitan
Build G3 Silenttitan

50) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build B2 Yonder
Build B3 Rover

51) SilentTitan: Trade G3 R3 Silenttitan

52) TwoShort: Sacrifice Y2 Rover
Move B3 Yonder Silenttitan
Move B2 Yonder Silenttitan
Catastrophe Silenttitan Blue

53) SilentTitan: Move Y3 Silenttitan Goner

54) TwoShort: Sacrifice B2 Goner
Trade B1 Y1 Goner
Trade B1 R1 Rover

55) SilentTitan: Sacrifice Y3 Goner
Move G1 Yoyodyne Goner
Move G1 Goner Twoshort
Discover G2 Yoyodyne Y2 Sky

56) TwoShort: Sacrifice B3 Rover
Trade Y1 R1 Goner
Trade G3 Y3 Twoshort
Pass

57) SilentTitan: Sacrifice R2 Yonder
Attack G1 Twoshort South
Attack Y1 Twoshort South
	TwoShort: I kinda feel bad; I try to refrain from commenting on games in progress because I always turn out to be wrong within a few moves.  But I really thought it was hopeless, and I can't even see where you did anything particularly wrong since.  Sorry if I jinxed you :)

58) TwoShort: Sacrifice Y3 Twoshort
Move R1 Rover Twoshort
Move R1 Goner Silenttitan
Move R2 Grogar Silenttitan
Catastrophe Silenttitan Red
	TwoShort: Dammit, I hate irony.  Now I'm shutting up.

	TwoShort: Excellent game.  Thank you.
	SilentTitan: thank you.


21678)
Started: 2012.2.15, Ended: 2012.3.16
Participants: lorgar (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) lorgar: Homeworld G3 Y2 B3

3) ts52: Build G1 Ts52

4) lorgar: Build B1 Lorgar

5) ts52: Discover G1 Ts52 B3 Grover

6) lorgar: Build B1 Lorgar

7) ts52: Build G1 Ts52

8) lorgar: Discover B1 Lorgar G1 Melmoth

9) ts52: Build G2 Grover

10) lorgar: Build B2 Melmoth

11) ts52: Trade G2 Y2 Grover

12) lorgar: Trade B2 R2 Melmoth

13) ts52: B G2 Grover

14) lorgar: Trade B3 G3 Lorgar

15) ts52: Trade G2 R2 Grover

16) lorgar: Build B2 Melmoth

17) ts52: Build G2 Grover

18) lorgar: Sacrifice G3 Lorgar
Build B2 Melmoth
Build B2 Lorgar
Build B3 Lorgar

19) ts52: Build G2 Grover

20) lorgar: Trade B1 Y1 Melmoth

21) ts52: Discover G2 Grover R1 Elmo

22) lorgar: Trade B2 R2 Lorgar

23) ts52: Sacrifice G3 Ts52
Build G2 Elmo
Build G3 Ts52
Build G3 Grover

24) lorgar: Build R1 Lorgar
	lorgar: crap... I deserved it

25) ts52: Trade G3 Y3 Grover

26) lorgar: Trade B1 Y1 Lorgar

27) ts52: Sacrifice G2 Grover
Build G2 Elmo
Build G3 Grover

28) lorgar: Build Y1 Melmoth

29) ts52: Sacrifice Y3 Grover
Move G2 Elmo Lorgar
Move G2 Elmo Lorgar
Move G2 Elmo Lorgar
Catastrophe Lorgar Green

30) lorgar: Build Y3 Melmoth

31) ts52: Move Y2 Grover Melmoth
Catastrophe Melmoth Yellow

32) lorgar: Build B1 Melmoth

33) ts52: Trade G1 Y1 Grover

34) lorgar: Trade R2 Y2 Melmoth

35) ts52: Build G1 Grover

36) lorgar: Sacrifice Y2 Melmoth
Move B2 Melmoth Grover
Move B1 Melmoth Grover

37) ts52: Discover G3 Grover B2 Gonzo

38) lorgar: Sacrifice R1 Lorgar
Attack R2N Grover

39) ts52: Trade Y1 B1 Grover
Catastrophe Grover Blue

40) lorgar: Build B1 Melmoth

41) ts52: Build G1 Gonzo

42) lorgar: Trade B2 G2 Melmoth

43) ts52: Trade G3 R3 Gonzo

44) lorgar: Build B1 Melmoth

45) ts52: Build G2 Gonzo

46) lorgar: Build G2 Melmoth

47) ts52: Trade G1 Y1 Gonzo

48) lorgar: Trade G2 Y2 Melmoth

49) ts52: Move R3 Gonzo Melmoth

50) lorgar: Trade B1 G1 Melmoth

51) ts52: Attack Y2 Melmoth

52) lorgar: Build G2 Melmoth
Catastrophe Melmoth Green

53) ts52: Build G1 Gonzo

54) lorgar: Discover Y1 Lorgar G3 Mhor

55) ts52: Trade G2 R2 Gonzo

56) lorgar: Build Y1 Mhor

57) ts52: Move R2 Gonzo Mhor

58) lorgar: Move Y1 Mhor Gonzo

59) ts52: Attack Y1 Mhor

60) lorgar: Trade B3 G3 Lorgar

61) ts52: Build Y2 Gonzo

62) lorgar: Build G1 Lorgar

63) ts52: Trade Y2 R2 Gonzo

64) lorgar: Discover Y1 Gonzo B3 Wall

65) ts52: Sacrifice G3 Ts52
Build Y2 Mhor
Build Y3 Mhor
Build Y3 Gonzo

66) lorgar: Move Y1 Wall Ts52

67) ts52: Sacrifice Y3 Gonzo
Move Y3 Mhor Lorgar
Move Y2 Mhor Lorgar
Move Y1 Mhor Lorgar
Catastrophe Lorgar Yellow

	lorgar: you beat me this time...
	ts52: Yep. Good game though. Thanks!
	lorgar: rematch?
	ts52: Of course!


21682)
Started: 2012.2.15, Ended: 2012.2.23
Participants: lorgar (S), ajo (N)
Winner: ajo

1) ajo: Homeworld G3 B2 Y3

2) lorgar: Homeworld G1 Y3 B3

3) ajo: Build Y1 Ajo

4) lorgar: Build B1 Lorgar

5) ajo: Build Y1 Ajo

6) lorgar: Build B1 Lorgar

7) ajo: Discover Y1 Ajo B1 Alpha

8) lorgar: Discover B1 Lorgar G2 Mnar

9) ajo: Discover Y1 Alpha B2 Beta

10) lorgar: Build B1 Mnar

11) ajo: Build Y1 Ajo

12) lorgar: Build B2 Mnar

13) ajo: Discover Y1 Ajo G1 Alpha

14) lorgar: Trade B2 Y2 Mnar

15) ajo: Build Y2 Alpha

16) lorgar: Trade B1 R1 Mnar

17) ajo: Trade Y3 G3 Ajo

18) lorgar: Move Y2 Mnar Alpha

19) ajo: Sacrifice G3 Ajo
Build Y2 Alpha
Build Y3 Beta
Build Y3 Ajo
Catastrophe Alpha Yellow
	ajo: Oh -- thank you! ;)

20) lorgar: Trade B1 R1 Lorgar

21) ajo: Trade Y3 G3 Beta

22) lorgar: Build R1 Lorgar

23) ajo: Build G1 Beta

24) lorgar: Build R2 Mnar

25) ajo: Trade G3 R3 Beta

26) lorgar: Build B1 Mnar

27) ajo: Build R2 Beta

28) lorgar: Trade B1 Y1 Mnar

29) ajo: Trade Y3 G3 Ajo

30) lorgar: Build Y2 Mnar

31) ajo: Build Y2 Beta

32) lorgar: Sacrifice Y2 Mnar
Move R1 Lorgar Beta
Move R1 Lorgar Beta
Catastrophe Beta Red

33) ajo: Move Y1 Beta Lorgar
	ajo: Okay, it's clearly past my bedtime. Last move for tonight. :P

34) lorgar: Sacrifice R1 Mnar
Attack Y1N Lorgar

35) ajo: Sacrifice G3 Ajo
Build Y2 Ajo
Build Y2 Beta
Build Y3 Ajo

36) lorgar: Trade Y1 R1 Lorgar

37) ajo: Trade Y2 R2 Ajo

38) lorgar: Build R1 Mnar
	lorgar: It's very interesting to play with you, I learn a lot :)

39) ajo: Build Y1 Beta

40) lorgar: Build Y2 Mnar

41) ajo: Move Y1 Beta Lorgar

42) lorgar: Sacrifice Y2 Mnar
Discover Y1 Mnar G1 Green
Move Y1 Green Ajo

43) ajo: Attack Y1 Ajo
	ajo: That seems like a waste...

44) lorgar: Build R1 Lorgar
	lorgar: it was XD
panic got the better of me

45) ajo: Build Y2 Lorgar

46) lorgar: Attack Y2N Lorgar

47) ajo: Build Y3 Lorgar
Catastrophe Lorgar Yellow

48) lorgar: Build B1 Mnar

49) ajo: Discover Y1 Ajo Y1 Gamma

50) lorgar: Trade R2 Y2 Mnar

51) ajo: Build Y3 Beta

52) lorgar: Build Y3 Mnar

53) ajo: Trade Y2 R2 Beta

54) lorgar: Sacrifice Y3 Mnar
Discover R1 Lorgar G2 Mors
Discover B1 Mnar G3 Mars
Discover Y2 Mnar G3 Magratgarlic

55) ajo: Build G1 Beta

56) lorgar: Build B1 Mars
	ajo: I guess that was a last-ditch effort to try and stop me from getting three green ships? ...It isn't going to work. :P  You would have been better off working on a blue castastrophe at Beta, or something.

57) ajo: Build G2 Beta

58) lorgar: Pass
	ajo: Checkmate. :) Good game.

59) ajo: Sacrifice Y3 Beta
Move G1 Beta Lorgar
Move G1 Beta Lorgar
Move G2 Beta Lorgar
Catastrophe Lorgar Green
	lorgar: thanks, rematch?



21680)
Variants: "Hard time"
Started: 2012.2.15, Ended: 2012.3.4
Participants: Subhan64 (S), Danner (N)
Winner: Danner

1) Danner: Pass
	Danner: Hello again! :)
Have a nice game!

2) Subhan64: Homeworld G1 B3 Y3

3) Danner: Homeworld G1 B2 G3 *
	Subhan64: yes, you too, thanks!

4) Subhan64: Build Y1 Subhan64

5) Danner: Build G1 Danner

6) Subhan64: Build Y1 Subhan64

7) Danner: Trade G3 Y3 Danner

8) Subhan64: Discover Y1 Subhan64 G2 Kermit

9) Danner: Build G2 Danner



21674)
Variants: "Unrated"
Started: 2012.2.20, Ended: 2012.3.17
Participants: ludiki (S), anonymousApple (N)
Winner: ludiki

1) anonymousApple: Homeworld G1 B2 Y3

2) ludiki: Homeworld Y1 G2 B3

3) anonymousApple: Build Y1 Anonymousapple

4) ludiki: Build B1 Ludiki

5) anonymousApple: Trade Y1 G1 Anonymousapple

6) ludiki: Discover B1 Ludiki G3 Cox

7) anonymousApple: Discover G1 Anonymousapple B3 Snooki

8) ludiki: Build B1 Cox

9) anonymousApple: Build G1 Snooki

10) ludiki: Trade B1 R1 Cox

11) anonymousApple: Build G2 Snooki

12) ludiki: Build B1 Ludiki

13) anonymousApple: Build Y1 Anonymousapple

14) ludiki: Trade B3 R3 Ludiki

15) anonymousApple: Sacrifice Y3 Anonymousapple
Move G1 Snooki Ludiki
Move G1 Snooki Ludiki
Move G2 Snooki Ludiki
Catastrophe Ludiki Green

16) ludiki: Trade B1 Y1 Cox

17) anonymousApple: Trade Y1 R1 Anonymousapple

18) ludiki: Build Y1 Cox

19) anonymousApple: Build R1 Anonymousapple

20) ludiki: Build Y2 Cox

21) anonymousApple: Trade R1 G1 Anonymousapple

22) ludiki: Sacrifice Y2 Cox
Move R3 Ludiki Cox
Move R3 Cox Anonymousapple

23) anonymousApple: Build R1 Anonymousapple
	anonymousApple: gg

24) ludiki: Build R2 Cox

25) anonymousApple: Build R2 Anonymousapple
Catastrophe Anonymousapple Red

26) ludiki: Move R2 Cox Anonymousapple

27) anonymousApple: Build G1 Anonymousapple

28) ludiki: Attack G1 Anonymousapple

29) anonymousApple: Build G2 Anonymousapple

30) ludiki: Attack G2 Anonymousapple
Catastrophe Anonymousapple G
	anonymousApple: SEPPUKU!
	anonymousApple: aww it won't let me catastrophe myself v.v

	anonymousApple: gg :) Twas my first so thanks for the fun!
	ludiki: you're welcome… it's quite addictive!


21716)
Variants: "Hard time"
Started: 2012.2.23, Ended: 2012.3.12
Participants: agentofchaos (S), AdamBadura (N)
Winner: agentofchaos

1) AdamBadura: Homeworld G3 B2 Y3

2) agentofchaos: Homeworld R1 B3 G3

3) AdamBadura: Build Y1 Adambadura
	agentofchaos: Good luck

4) agentofchaos: Build G1 Agentofchaos

5) AdamBadura: Trade Y1 G1 Adambadura

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) AdamBadura: Build G1 Adambadura

8) agentofchaos: Build G1 Agentofchaos

9) AdamBadura: Trade G1 R1 Adambadura

10) agentofchaos: Trade G1 R1 Agentofchaos

11) AdamBadura: Build R2 Adambadura

12) agentofchaos: Build R2 Agentofchaos

13) AdamBadura: Build R2 Adambadura

14) agentofchaos: Discover R2 Agentofchaos G2 Arcktron

15) AdamBadura: Discover R1 Adambadura G1 Shipyard

16) agentofchaos: Build R3 Arcktron

17) AdamBadura: Build R3 Shipyard

18) agentofchaos: Build R3 Agentofchaos

19) AdamBadura: Sacrifice Y3 Adambadura
Move R1 Shipyard Arcktron
Move R1 Arcktron Agentofchaos
Discover G1 Adambadura Y1 Outpost
Catastrophe Agentofchaos R

20) agentofchaos: Sacrifice Y1 Agentofchaos
Move R3 Arcktron Outpost

21) AdamBadura: Discover G1 Outpost Y2 Outpost2

22) agentofchaos: Move R3 Outpost Adambadura

	AdamBadura: Good one!


21683)
Variants: "No undo"
Started: 2012.2.24, Ended: 2012.3.9
Participants: ajo (S), lorgar (N)
Winner: lorgar

1) lorgar: Homeworld B2 Y3 G3

2) ajo: Homeworld R2 B1 G3

3) lorgar: Build G1 Lorgar
	lorgar: gl hf enjoy :D

4) ajo: Build G1 Ajo

5) lorgar: Trade G1 B1 Lorgar

6) ajo: Trade G1 Y1 Ajo

7) lorgar: Discover B1 Lorgar G1 Mnar

8) ajo: Build G1 Ajo

9) lorgar: Build B1 Mnar

10) ajo: Discover G1 Ajo B3 Alpha

11) lorgar: Build B2 Mnar

12) ajo: Build G1 Ajo

13) lorgar: Trade B1 Y1 Mnar

14) ajo: Build G2 Ajo

15) lorgar: Move B2 Mnar Alpha

16) ajo: Discover G2 Ajo B3 Beta

17) lorgar: Trade B2 R2 Alpha

18) ajo: Sacrifice G1 Alpha
Build G1 Beta

19) lorgar: Build B1 Mnar

20) ajo: Trade G2 Y2 Beta

21) lorgar: Build G2 Lorgar

22) ajo: Sacrifice G3 Ajo
Build G2 Beta
Build G2 Beta
Build G3 Ajo

23) lorgar: Discover B1 Mnar G3 Mhor

24) ajo: Discover G1 Beta Y1 Gamma

25) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build B2 Mnar
Build B2 Mnar

26) ajo: Sacrifice G2 Beta
Build G2 Gamma
Build Y2 Beta

27) lorgar: Trade G2 R2 Lorgar
	ajo: Check.
	lorgar: indeed

28) ajo: Sacrifice G3 Ajo
Build G2 Gamma
Build G3 Ajo
Build Y2 Ajo

29) lorgar: Move R2 Lorgar Gamma

30) ajo: Sacrifice Y2 Ajo
Move G2 Gamma Lorgar
Move G2 Gamma Lorgar
	lorgar: crap... bad idea XD I'm done now
	ajo: haha, yeah, you're not checkmated yet I think, but that was a BAD move. :)

31) lorgar: Trade G3 R3 Lorgar
	ajo: Check (obviously).
	lorgar: I'm getting smitten...

32) ajo: Trade G2 Y2 Lorgar

33) lorgar: Attack G2S Lorgar

34) ajo: Sacrifice G2 Beta
Build Y3 Lorgar
Build Y3 Lorgar
Catastrophe Lorgar Yellow

35) lorgar: Build B3 Mhor

36) ajo: Move G1 Gamma Mhor

37) lorgar: Sacrifice Y1 Mnar
Move B3 Mhor Gamma

38) ajo: Build G2 Ajo

39) lorgar: Move B3 Gamma Beta

40) ajo: Sacrifice Y2 Beta
Discover Y2 Beta R1 Deathtrap
Move G1 Mhor Deathtrap
	ajo: Okay, I'm about to do something stupid...

41) lorgar: Trade B3 G3 Beta

42) ajo: Discover G2 Ajo B3 Delta

43) lorgar: Move R2 Gamma Delta

44) ajo: Sacrifice G2 Delta
Build G2 Deathtrap
Build Y1 Ajo

45) lorgar: Trade B2 Y2 Mnar

46) ajo: Discover G1 Deathtrap B2 Houdini

47) lorgar: Sacrifice Y2 Mnar
Move R2 Alpha Ajo
Move R2 Delta Ajo

48) ajo: Sacrifice G3 Ajo
Build G2 Houdini
Build G3 Ajo
Build Y1 Deathtrap

49) lorgar: Sacrifice G2 Lorgar
Build R1 Ajo
Build R1 Lorgar
Catastrophe Ajo Red

50) ajo: Trade G2 R2 Houdini

51) lorgar: Sacrifice G3 Beta
Build B3 Mhor
Build B3 Mhor
Build B3 Mnar
	ajo: This game is going to come down to the last move, too... but I think you're ahead this time. All my ships are the wrong colors.

52) ajo: Move G1 Ajo Mhor

53) lorgar: Trade B2 Y2 Mnar

54) ajo: Sacrifice G2 Deathtrap
Build G2 Mhor
Build G2 Mhor
Catastrophe Mhor Green

55) lorgar: Move B3 Mnar Houdini
	ajo: *Now* I'm not sure who's ahead! :)

56) ajo: Trade G1 B1 Houdini

57) lorgar: Trade B3 R3 Houdini

58) ajo: Sacrifice Y2 Deathtrap
Move B1 Houdini Ajo
Move R2 Houdini Ajo

59) lorgar: Build Y2 Mnar

60) ajo: Discover B1 Ajo G3 Alpha

61) lorgar: Move Y2 Mnar Alpha

62) ajo: Build Y2 Ajo

63) lorgar: Sacrifice R1 Lorgar
Attack B1S Alpha

64) ajo: Move Y2 Ajo Alpha

65) lorgar: Build B2 Alpha

66) ajo: Sacrifice R2 Ajo
Attack Y2 Alpha
Attack B2 Alpha

67) lorgar: Build B3 Alpha

68) ajo: Sacrifice G3 Ajo
Build Y3 Ajo
Build Y3 Deathtrap
Build B3 Alpha
Catastrophe Alpha Blue
	ajo: Oops! (I think.) :)

69) lorgar: Sacrifice Y2 Mnar
Move R3 Houdini Ajo
Move B1 Mnar Lorgar
	ajo: Hmm, I guess you still have that big red at Houdini, huh? I suppose I'm still going to lose either way.

70) ajo: Pass
	ajo: Good game. :)

71) lorgar: Sacrifice R3 Lorgar
Attack Y3S Ajo
Attack Y1S Ajo
Attack Y1S Ajo
	lorgar: thx, rematch?



21695)
Started: 2012.2.25, Ended: 2012.4.30
Participants: agentofchaos (S), ts52 (N)
Winner: agentofchaos

1) ts52: Homeworld B1 Y2 G3

2) agentofchaos: Homeworld B1 R3 G3

3) ts52: Build G1 Ts52

4) agentofchaos: Build G1 Agentofchaos

5) ts52: Discover G1 Ts52 B3 Grover

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) ts52: Build G1 Ts52

8) agentofchaos: Discover Y1 Agentofchaos G2 Shazcatraz

9) ts52: Trade G1 Y1 Ts52

10) agentofchaos: Build G1 Agentofchaos

11) ts52: Move Y1 Ts52 Grover

12) agentofchaos: Trade G1 R1 Agentofchaos

13) ts52: Build G1 Grover

14) agentofchaos: B G1 Agentofchaos

15) ts52: Build G2 Ts52

16) agentofchaos: Trade G1 Y1 Agentofchaos

17) ts52: Trade G1 R1 Grover

18) agentofchaos: Build Y2 Shazcatraz

19) ts52: Build G1 Grover

20) agentofchaos: Move Y2 Shazcatraz Grover

21) ts52: Discover R1 Grover G2 Kermit

22) agentofchaos: Sacrifice R1 Agentofchaos
Attack Y1 Grover

23) ts52: Sacrifice G3 Ts52
Build G1 Ts52
Build G3 Ts52
Build G3 Grover

24) agentofchaos: Sacrifice Y1 Grover
Move Y2 Grover Kermit

25) ts52: Trade G1 Y1 Grover

26) agentofchaos: Build G1 Agentofchaos

27) ts52: Move G3 Grover Kermit

28) agentofchaos: Discover Y2 Kermit R3 Holodeth

29) ts52: Sacrifice G3 Kermit
Build G3 Grover
Build Y2 Grover
Build Y3 Grover

30) agentofchaos: Sacrifice G3 Agentofchaos
Build Y3 Shazcatraz
Build Y3 Holodeth
Build G3 Agentofchaos

31) ts52: Trade G2 R2 Ts52

32) agentofchaos: Move Y1 Shazcatraz Grover
Catastrophe Grover Y

33) ts52: Trade G3 Y3 Grover

34) agentofchaos: Trade G1 R1 Agentofchaos

35) ts52: Build Y1 Grover

36) agentofchaos: Build G1 Agentofchaos

37) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build G3 Grover

38) agentofchaos: Sacrifice Y2 Holodeth
Move G1 Agentofchaos Shazcatraz
Move G1 Shazcatraz Grover
Catastrophe Grover G

39) ts52: Build R1 Kermit

40) agentofchaos: Move R1 Agentofchaos Shazcatraz

41) ts52: Build R2 Kermit

42) agentofchaos: Build G1 Agentofchaos

43) ts52: Sacrifice Y3 Grover
Move R1 Kermit Agentofchaos
Move R1 Kermit Agentofchaos
Move R2 Kermit Agentofchaos
Catastrophe Agentofchaos R

44) agentofchaos: Trade G1 B1 Agentofchaos

45) ts52: Move G1 Ts52 Grover

46) agentofchaos: Build B2 Agentofchaos

47) ts52: Build R1 Ts52

48) agentofchaos: Trade B2 G2 Agentofchaos

49) ts52: Trade R2 B2 Ts52

50) agentofchaos: Build B2 Agentofchaos

51) ts52: Discover B2 Ts52 G3 Kermit

52) agentofchaos: Move B2 Agentofchaos Grover

53) ts52: Build B2 Kermit

54) agentofchaos: Sacrifice R1 Shazcatraz
Attack Y1 Grover

55) ts52: Trade B2 Y2 Kermit

56) agentofchaos: Trade G2 R2 Agentofchaos

57) ts52: Build B2 Kermit

58) agentofchaos: Move B1 Agentofchaos Holodeth

59) ts52: Build B3 Kermit

60) agentofchaos: Sacrifice Y3 Holodeth
Move B1 Holodeth Agentofchaos
Move B1 Agentofchaos Kermit
Move Y3 Shazcatraz Kermit
Catastrophe Kermit B

61) ts52: Build G1 Grover

62) agentofchaos: Sacrifice R2 Agentofchaos
Attack Y2 Kermit
Attack G1 Grover

63) ts52: Build R1 Ts52

64) agentofchaos: Trade B2 R2 Grover

65) ts52: Build G1 Ts52

66) agentofchaos: Attack G1 Grover

67) ts52: Discover G1 Ts52 B3 Cookiemonster

68) agentofchaos: Build Y1 Grover

69) ts52: Build G2 Cookiemonster

70) agentofchaos: Build Y2 Grover

71) ts52: Trade G2 R2 Cookiemonster

72) agentofchaos: Build Y3 Agentofchaos

73) ts52: Build G2 Cookiemonster

74) agentofchaos: Build Y3 Agentofchaos

75) ts52: Trade G1 B1 Cookiemonster

76) agentofchaos: Build G1 Grover

77) ts52: Trade G3 B3 Ts52

78) agentofchaos: Build R1 Grover

79) ts52: Build G2 Cookiemonster

80) agentofchaos: Trade R2 B2 Grover

81) ts52: Build R2 Cookiemonster

82) agentofchaos: M B2 Grover Agentofchaos

83) ts52: Discover R1 Ts52 G3 Robin

84) agentofchaos: Build G2 Agentofchaos

85) ts52: Sacrifice G2 Cookiemonster
Build R2 Robin
Build R3 Ts52
	ts52: I don't know how I let you monopolize yellow, but it's really frustrating. :)

86) agentofchaos: Sacrifice G2 Agentofchaos
Build R3 Grover
Build B2 Agentofchaos
	agentofchaos: I can't remember how I did it either, but it sure has been helpful to me :-)

87) ts52: Move R1 Ts52 Grover

88) agentofchaos: Attack R1 Grover

89) ts52: Move R3 Ts52 Grover
Catastrophe Grover Red

90) agentofchaos: Move B2 Agentofchaos Kermit

91) ts52: Trade B3 R3 Ts52

92) agentofchaos: Build B2 Kermit

93) ts52: Sacrifice G2 Cookiemonster
Build R1 Ts52
Build R1 Cookiemonster

94) agentofchaos: Sacrifice Y3 Agentofchaos
Move Y1 Grover Ts52
Move Y1 Grover Ts52
Move Y2 Grover Ts52
Catastrophe Ts52 Y

95) ts52: Trade R1 Y1 Ts52

96) agentofchaos: Sacrifice Y3 Agentofchaos
Move B2 Kermit Ts52
Move B2 Kermit Ts52
Move B2 Agentofchaos Kermit

97) ts52: Sacrifice R2 Cookiemonster
Attack B2 Ts52
Attack B2 Ts52

98) agentofchaos: Move B2 Kermit Ts52
Catastrophe Ts52 B

	agentofchaos: Thanks very much for a great game sir! :-)
	ts52: Thank you. That was a very interesting game.


21735)
Variants: "Hard time"
Started: 2012.2.26, Ended: 2012.4.8
Participants: Mandrel (S), ajo (N)
Winner: ajo

1) ajo: Homeworld R2 B3 G3

2) Mandrel: Homeworld B1 R2 G3

3) ajo: Build G1 Ajo
	Mandrel: Have a good game.

4) Mandrel: Build G1 Mandrel
	ajo: Thanks, you too!

5) ajo: Trade G1 B1 Ajo

6) Mandrel: Trade G1 B1 Mandrel

7) ajo: Build B2 Ajo

8) Mandrel: Build B2 Mandrel

9) ajo: Trade B2 Y2 Ajo

10) Mandrel: Trade B2 Y2 Mandrel

11) ajo: Build B2 Ajo

12) Mandrel: Build B2 Mandrel

13) ajo: Discover B2 Ajo Y1 Alpha

14) Mandrel: Trade B1 R1 Mandrel

15) ajo: Build G1 Ajo

16) Mandrel: Build G1 Mandrel

17) ajo: Build Y1 Ajo

18) Mandrel: Discover B2 Mandrel G3 Endings

19) ajo: Trade Y2 R2 Ajo

20) Mandrel: Build R1 Mandrel

21) ajo: Move R2 Ajo Alpha

22) Mandrel: Move R1 Mandrel Endings

23) ajo: Move G1 Ajo Alpha

24) Mandrel: Build R1 Mandrel

25) ajo: Build R3 Alpha



21567)
Started: 2012.2.26, Ended: 2012.5.13
Participants: lorgar (S), agentofchaos (N), wmreed (E)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3

2) wmreed: Homeworld B3 R1 G3

3) lorgar: Homeworld G3 Y2 B3

4) agentofchaos: Build G1 Agentofchaos
	wmreed: Hello!  Good luck!

5) wmreed: B G1 Wmreed

6) lorgar: Build B1 Lorgar

7) agentofchaos: Trade G1 B1 Agentofchaos

8) wmreed: T G1 Y1 Wmreed

9) lorgar: Discover B1 Lorgar G1 Mnar

10) agentofchaos: Build G1 Agentofchaos

11) wmreed: B Y1 Wmreed

12) lorgar: Build B1 Lorgar

13) agentofchaos: Build B2 Agentofchaos

14) wmreed: D Y1 Wmreed B2 Persephone

15) lorgar: Build B2 Mnar

16) agentofchaos: Trade B2 Y2 Agentofchaos

17) wmreed: B G1 Wmreed

18) lorgar: Trade B2 Y2 Mnar

19) agentofchaos: Trade G1 R1 Agentofchaos

20) wmreed: M G1 Wmreed Persephone

21) lorgar: Build B2 Mnar

22) agentofchaos: Build Y1 Agentofchaos

23) wmreed: B G1 Persephone

24) lorgar: Trade B2 R2 Mnar

25) agentofchaos: D Y2 Agentofchaos G3 Hartshope

26) wmreed: B G1 Wmreed

27) lorgar: Move Y2 Mnar Persephone

28) agentofchaos: Build G2 Agentofchaos

29) wmreed: B G2 Persephone

30) lorgar: Sacrifice R2 Mnar
Attack G2E Persephone
Attack Y1E Persephone
	wmreed: If you attack at Persephone I will catastrophe.  

31) agentofchaos: Build B2 Agentofchaos

32) wmreed: M G1 Wmreed Persephone
Catastrophe Persephone G

33) lorgar: Trade B1 R1 Lorgar

34) agentofchaos: Trade B2 R2 Agentofchaos

35) wmreed: B Y1 Wmreed

36) lorgar: Trade Y1 R1 Persephone

37) agentofchaos: Trade R1 Y1 Agentofchaos

38) wmreed: T Y1 B1 Wmreed

39) lorgar: Trade Y2 G2 Persephone

40) agentofchaos: Build B2 Agentofchaos

41) wmreed: B B2 Wmreed

42) lorgar: Build G1 Persephone

43) agentofchaos: Move B1 Agentofchaos Hartshope

44) wmreed: Discover B2 Wmreed Y2 Ariel

45) lorgar: Sacrifice G2 Persephone
Build B2 Lorgar
Build B3 Mnar

46) agentofchaos: Build B3 Hartshope

47) wmreed: B G1 Wmreed

48) lorgar: Trade B1 Y1 Mnar

49) agentofchaos: Sacrifice G2 Agentofchaos
Build Y2 Agentofchaos
Build Y3 Hartshope

50) wmreed: B Y3 Wmreed

51) lorgar: Build Y3 Mnar

52) agentofchaos: Trade Y1 G1 Agentofchaos

53) wmreed: T B2 R2 Ariel

54) lorgar: Build G2 Persephone

55) agentofchaos: Move Y3 Hartshope Persephone

56) wmreed: M G3 Wmreed Ariel

57) lorgar: Sacrifice Y1 Mnar
Discover G2 Persephone Y3 Leng

58) agentofchaos: Sacrifice R2 Agentofchaos
Attack G1S Persephone
Attack R1S Persephone

59) wmreed: B G2 Ariel

60) lorgar: Build B1 Mnar

61) agentofchaos: Build Y1 Persephone

62) wmreed: B R1 Ariel

63) lorgar: Build G2 Leng

64) agentofchaos: Build G2 Persephone

65) wmreed: D R2 Ariel Y1 Whitehall

66) lorgar: Trade B2 R2 Lorgar

67) agentofchaos: Build R2 Persephone

68) wmreed: S G3 Ariel
B G3 Ariel
B R3 Whitehall
Pass

69) lorgar: Move R1 Lorgar Whitehall

70) agentofchaos: Move R1 Persephone Whitehall
Catastrophe Whitehall R

71) wmreed: M B1 Wmreed Ariel

72) lorgar: Move G2 Leng Agentofchaos

73) agentofchaos: Trade G1 R1 Agentofchaos

74) wmreed: B R1 Ariel

75) lorgar: Sacrifice G2 Leng
Build G1 Agentofchaos
Build G2 Agentofchaos
Catastrophe Agentofchaos Green

76) agentofchaos: Trade B3 G3 Hartshope

77) wmreed: T R1 Y1 Ariel

78) wmreed: Discover Y1 Ariel Y3 Serenity

79) agentofchaos: Build B2 Hartshope

80) wmreed: M G3 Ariel Mnar

81) agentofchaos: Sacrifice Y2 Hartshope
Move Y1 Persephone Wmreed
Move Y3 Persephone Wmreed
Catastrophe Wmreed Y
	wmreed: Sorry, i don't remember getting an email about South's move.

82) wmreed: S R1 Ariel
A B3S Mnar

83) agentofchaos: Sacrifice Y2 Agentofchaos
Move G3 Hartshope Ariel
Move G3 Ariel Wmreed

	wmreed: Good game!
	lorgar: sorry guys, I wont play much these day, cello contest week -.-


21739)
Started: 2012.2.26, Ended: 2012.2.26
Participants: slothbear (S), kensho (N)
Winner: slothbear

1) kensho: Homeworld B1 Y2 G3

2) slothbear: Homeworld B1 G2 Y3

3) kensho: Build G1 Kensho

4) slothbear: Build Y1 Slothbear

5) kensho: Discover G1 Kensho R3 Rot

6) slothbear: Build Y1 Slothbear

7) kensho: Build G1 Kensho

8) slothbear: Trade Y1 R1 Slothbear

9) kensho: Discover G1 Kensho B3 Got

10) slothbear: Move Y1 Slothbear Got

11) kensho: Build G1 Rot

12) slothbear: Build R1 Slothbear

13) kensho: Build G2 Rot

14) slothbear: Sacrifice R1 Slothbear
Attack G1 Got

15) kensho: Build G2 Kensho

16) slothbear: Trade Y3 R3 Slothbear

17) kensho: Move G3 Kensho Got

18) slothbear: Build Y1 Got

19) kensho: Trade G3 Y3 Got

20) slothbear: Trade R1 Y1 Slothbear

21) kensho: Trade Y3 B3 Got

22) slothbear: Build Y2 Slothbear

23) kensho: Sacrifice B3 Got
Trade G1 R1 Rot
Trade G1 B1 Rot
Pass

24) slothbear: Sacrifice Y2 Slothbear
Move R3 Slothbear Got
Move R3 Got Kensho

25) kensho: Trade G2 R2 Kensho

26) slothbear: Attack R2 Kensho



21737)
Started: 2012.2.27, Ended: 2012.4.28
Participants: sordros (S), wmreed (N)
Winner: wmreed

1) wmreed: Homeworld B1 R2 G3

2) sordros: Homeworld G2 Y3 B3
	wmreed: Hello! Welcome!  Good luck!

3) wmreed: B G1 Wmreed
	sordros: Hello! good luck to you too!

4) sordros: Build B1 Sordros

5) wmreed: T G1 Y1 Wmreed

6) sordros: Trade B1 Y1 Sordros

7) wmreed: B G1 Wmreed

8) sordros: Build B1 Sordros

9) wmreed: D G1 Wmreed Y3 Kermit

10) sordros: Trade B1 G1 Sordros

11) wmreed: B G1 Wmreed

12) sordros: Discover G1 Sordros B1 Celeste

13) wmreed: T G1 R1 Wmreed

14) sordros: Build B1 Sordros

15) wmreed: M R1 Wmreed Kermit

16) sordros: Trade B1 R1 Sordros

17) wmreed: B G1 Kermit

18) sordros: Build G2 Celeste

19) wmreed: M G1 Kermit Wmreed

20) sordros: Trade G1 B1 Celeste

21) wmreed: B G1 Kermit

22) sordros: Sacrifice G2 Celeste
Build B2 Celeste
Build B2 Sordros

23) wmreed: B Y1 Wmreed

24) sordros: Trade B3 G3 Sordros

25) wmreed: D G1 Kermit R2 Gonzo

26) sordros: Trade B2 Y2 Celeste

27) wmreed: S G3 Wmreed
B G2 Kermit
B G2 Gonzo
B G3 Wmreed

28) sordros: Build G3 Sordros

29) wmreed: T G3 B3 Wmreed

30) sordros: Move G3 Sordros Celeste

31) wmreed: B G3 Wmreed

32) sordros: Build Y2 Celeste

33) wmreed: M B3 Wmreed Kermit

34) sordros: Sacrifice G3 Sordros
Build Y2 Celeste
Build Y3 Sordros
Build G3 Celeste

35) wmreed: T G2 B2 Kermit

36) sordros: Build B2 Sordros

37) wmreed: M B2 Kermit Gonzo

38) sordros: Discover G3 Celeste B3 Cielo

39) wmreed: B B3 Gonzo

40) sordros: Build R1 Sordros

41) wmreed: B R2 Kermit

42) sordros: Move R1 Sordros Celeste

43) wmreed: T B3 R3 Gonzo

44) sordros: Sacrifice G3 Cielo
Build R3 Celeste
Build R3 Sordros
Build B3 Sordros

45) wmreed: S G3 Wmreed
B G2 Kermit
B G3 Wmreed
B B3 Gonzo

46) sordros: Sacrifice Y2 Celeste
Move R1 Celeste Gonzo
Move R3 Celeste Gonzo
Catastrophe Gonzo Red

47) wmreed: D Y1 Wmreed B3 Scooter

48) sordros: Build Y2 Celeste

49) wmreed: M Y1 Scooter Celeste
C Celeste Y

50) sordros: Discover B3 Sordros G1 Kolbi

51) wmreed: D R2 Kermit Y2 Fozzi

52) sordros: Move Y3 Sordros Celeste

53) wmreed: M G1 Kermit Fozzi



21744)
Variants: "Hard time"
Started: 2012.2.27, Ended: 2012.3.17
Participants: sordros (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y3 G3

2) sordros: Homeworld R3 B2 G3

3) rootbier: Build G1 Rootbier
	sordros: Hi, good luck. Have fun.
	rootbier: Hey. You too. I haven't played here in like a year and a half or more.

4) sordros: Build G1 Sordros
	sordros: That's ok I haven't played in more than that I think. I just wanted to try it once more and have some fun. :-)

5) rootbier: Trade G1 R1 Rootbier

6) sordros: Trade G1 Y1 Sordros
	rootbier: it is a nice game. can go on a bit too long, but yeah. nice.

7) rootbier: Build G1 Rootbier

8) sordros: Build Y1 Sordros

9) rootbier: Discover G1 Rootbier B2 Oxix

10) sordros: Build G1 Sordros

11) rootbier: Build G1 Rootbier

12) sordros: Build G2 Sordros

13) rootbier: Sacrifice G3 Rootbier
Build G2 Oxix
Build G2 Oxix
Build G3 Rootbier

14) sordros: Trade G1 B1 Sordros

15) rootbier: Trade G2 Y2 Oxix

16) sordros: Discover G2 Sordros B1 Celeste

17) rootbier: Move G2 Oxix Celeste

18) sordros: Sacrifice G2 Celeste
Build B2 Sordros
Build Y1 Sordros

19) rootbier: Build G1 Celeste

20) sordros: Discover B2 Sordros R1 Rosa

21) rootbier: Sacrifice Y2 Oxix
Move G1 Celeste Sordros
Move G2 Celeste Sordros

22) sordros: Trade G3 B3 Sordros

23) rootbier: Trade G1 B1 Sordros
Catastrophe Sordros B

	rootbier: i know you're just getting back into it.
:(
should i have played softer?
	sordros: never! play as hard as you can always! I loved that game! didn't see that coming :-) Great moves!


21615)
Variants: "Hard time"
Started: 2012.2.28, Ended: 2012.3.16
Participants: SilentTitan (S), lorgar (N)
Winner: SilentTitan

1) lorgar: Homeworld B1 Y3 G3

2) SilentTitan: Homeworld R1 B2 G3

3) lorgar: Build G1 Lorgar

4) SilentTitan: Build G1 Silenttitan

5) lorgar: Trade G1 B1 Lorgar

6) SilentTitan: Build G1 Silenttitan

7) lorgar: Discover B1 Lorgar G2 Mnar

8) SilentTitan: Trade G1 Y1 Silenttitan

9) lorgar: Build B1 Mnar

10) SilentTitan: Discover G1 Silenttitan B3 Sol

11) lorgar: Build G1 Lorgar

12) SilentTitan: Build Y1 Silenttitan

13) lorgar: Build B2 Mnar

14) SilentTitan: Build G1 Silenttitan

15) lorgar: Trade B2 Y2 Mnar

16) SilentTitan: Discover Y1 Silenttitan G3 Soul

17) lorgar: Move Y2 Mnar Sol

18) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Silenttitan
Build G2 Silenttitan
Build G3 Sol

19) lorgar: Sacrifice Y2 Sol
Move B1 Mnar Sol
Move B1 Mnar Sol

20) SilentTitan: Sacrifice G3 Sol
Build Y1 Soul
Build Y2 Soul
Build Y2 Silenttitan

21) lorgar: Trade B1 R1 Sol

22) SilentTitan: Sacrifice G2 Silenttitan
Build G2 Sol
Build G2 Sol

23) lorgar: Sacrifice G3 Lorgar
Build G3 Lorgar
Build B1 Sol
Build B2 Sol
Catastrophe Sol Blue

24) SilentTitan: Discover Y1 Soul Y2 Sole

25) lorgar: Trade G1 R1 Lorgar

26) SilentTitan: Sacrifice G2 Silenttitan
Build Y3 Silenttitan
Build Y3 Sole

27) lorgar: Build R1 Lorgar

28) SilentTitan: Trade Y3 B3 Silenttitan

29) lorgar: Discover R1 Lorgar G2 Pastures

30) SilentTitan: Build Y3 Silenttitan
	lorgar: i'm so owned...

31) lorgar: Build R2 Pastures

32) SilentTitan: Trade Y3 R3 Silenttitan

33) lorgar: Build R2 Lorgar

34) SilentTitan: Discover B3 Silenttitan Y3 Tic
	SilentTitan: doesn't look good for you .... but I've messed up from here before.... so

35) lorgar: Trade R1 B1 Lorgar
	lorgar: I do not think I'm going anywhere. just got sorely beatean by  twoshort btw XD

36) SilentTitan: Move B3 Tic Sole

37) lorgar: Sacrifice B1 Lorgar
Trade R1 B1 Pastures

38) SilentTitan: Build Y3 Silenttitan

39) lorgar: Build B1 Pastures

40) SilentTitan: Trade Y3 G3 Silenttitan

41) lorgar: Build G1 Lorgar

42) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Sole
Build B2 Sole
Build Y3 Silenttitan

43) lorgar: Build B3 Pastures

44) SilentTitan: Sacrifice Y3 Sole
Move B3 Sole Lorgar
Move B2 Sole Lorgar
Move B2 Sole Lorgar
Catastrophe Lorgar Blue

45) lorgar: Trade B3 Y3 Pastures

46) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Sole Lorgar
Move Y2 Silenttitan Lorgar
Move Y1 Silenttitan Lorgar
Catastrophe Lorgar Yellow

	lorgar: gg
	SilentTitan: Thank you for playing


21748)
Variants: "Hard time"
Started: 2012.2.28, Ended: 2012.3.8
Participants: goulo (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) goulo: Homeworld R3 B2 G3

3) ts52: Build G1 Ts52
	goulo: hi, have fun!
	ts52: Thanks. You too!

4) goulo: Build G1 Goulo

5) ts52: Discover G1 Ts52 B3 Grover

6) goulo: Trade G1 Y1 Goulo

7) ts52: Build G1 Grover

8) goulo: Build Y1 Goulo

9) ts52: Trade G1 Y1 Grover

10) goulo: Trade Y1 R1 Goulo

11) ts52: Build G1 Grover

12) goulo: Build R1 Goulo

13) ts52: Trade G1 R1 Grover

14) goulo: Trade R1 B1 Goulo

15) ts52: Build G1 Ts52

16) goulo: Discover Y1 Goulo G1 Smeraldeto

17) ts52: Build G2 Grover

18) goulo: Build G2 Goulo

19) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Grover

20) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build B1 Goulo
Build Y1 Smeraldeto

21) ts52: Trade G3 Y3 Grover

22) goulo: Discover Y1 Smeraldeto G3 Smeraldego

23) ts52: Discover G2 Ts52 Y3 Bigbird

24) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build Y2 Smeraldeto
Build Y2 Smeraldego

25) ts52: Discover Y1 Grover B2 Gonzo

26) goulo: Discover Y1 Smeraldeto Y3 Citronego

27) ts52: Trade G2 R2 Grover

28) goulo: Move Y1 Smeraldego Ts52

29) ts52: Sacrifice G2 Bigbird
Build G2 Grover
Build Y3 Gonzo

30) goulo: Move Y2 Smeraldego Ts52

31) ts52: Trade G2 B2 Grover

32) goulo: Move Y1 Citronego Ts52
Catastrophe Ts52 Y

33) ts52: Trade G1 Y1 Ts52

34) goulo: Trade B1 Y1 Goulo

35) ts52: Discover Y3 Gonzo G1 Kermit

36) goulo: Build Y2 Smeraldeto

37) ts52: Move B2 Grover Kermit

38) goulo: Move Y2 Smeraldeto Gonzo

39) ts52: Build B1 Kermit

40) goulo: Move B1 Goulo Smeraldeto

41) ts52: Discover B2 Kermit G3 Robin

42) goulo: Sacrifice G3 Goulo
Build B3 Smeraldeto
Build Y2 Smeraldeto
Build Y3 Goulo

43) ts52: Build B3 Kermit

44) goulo: Move R1 Goulo Smeraldeto

45) ts52: Sacrifice Y3 Grover
Move Y1 Gonzo Kermit
Move Y1 Kermit Goulo
Move Y1 Ts52 Goulo
Catastrophe Goulo Yellow

46) goulo: Move B3 Smeraldeto Goulo

47) ts52: Sacrifice Y3 Kermit
Move B1 Kermit Goulo
Move B2 Robin Kermit
Move B2 Kermit Goulo
Catastrophe Goulo Blue

48) goulo: Move B1 Smeraldeto Goulo

49) ts52: Build B1 Kermit

50) goulo: Build B2 Goulo

51) ts52: Trade B1 Y1 Kermit

52) goulo: Build G2 Goulo

53) ts52: Trade B3 R3 Kermit

54) goulo: Trade Y2 B2 Gonzo

55) ts52: Move R3 Kermit Goulo

56) goulo: Sacrifice Y2 Smeraldeto
Move G2 Goulo Gonzo
Move B2 Gonzo Ts52

57) ts52: Sacrifice R2 Grover
Attack B2 Ts52
Attack B2 Goulo

58) goulo: Attack B2 Goulo

59) ts52: Sacrifice G3 Ts52
Build R1 Goulo
Build R2 Goulo
Build R2 Goulo
Catastrophe Goulo Red
	ts52: Thanks for the game!
	goulo: Thanks! That was a tough interesting one!



21749)
Started: 2012.2.28, Ended: 2016.4.18
Participants: bertilious (S), slothbear (N), emusan (E)
Winner: emusan

1) slothbear: Homeworld B2 G1 Y3

2) emusan: H B3 R2 G3
	emusan: you stole my opening! THIEF!!!!

3) bertilious: Homeworld G3 B1 Y3

4) slothbear: Build Y1 Slothbear
	slothbear: "sorry"
	slothbear: you wanted to do things differently from last game, no?

5) emusan: B G1 Emusan

6) bertilious: Build Y1 Bertilious
	emusan: yea, I was thinking of doing something like this anyway...

7) slothbear: Build Y1 Slothbear

8) emusan: T G1 Y1 Emusan
	slothbear: uh huh.  good.

9) bertilious: Build Y2 Bertilious

10) slothbear: Trade Y1 G1 Slothbear

11) emusan: B G1 Emusan

12) bertilious: Trade Y1 G1 Bertilious

13) slothbear: Build G2 Slothbear

14) emusan: B G2 Emusan

15) bertilious: Build G2 Bertilious

16) slothbear: Disc G2 Slothbear Y3 Carter

17) emusan: D G1 Emusan B1 Meow

18) bertilious: Discover Y2 Bertilious G2 Bertlandia

19) slothbear: Bu G3 Slothbear

20) emusan: S G3 Emusan
B G3 Emusan
B G3 Meow
B Y1 Emusan

21) bertilious: Trade G1 B1 Bertilious
	emusan: that was cool...
	slothbear: NICE

22) slothbear: Disco G1 Slothbear Y3 Crichton

23) emusan: M Y1 Emusan Meow

24) bertilious: Move B1 Bertilious Bertlandia

25) slothbear: Build G1 Slothbear

26) emusan: S G3 Meow
B G3 Meow
B Y1 Emusan
B Y2 Meow

27) bertilious: Build Y2 Bertilious

28) slothbear: Disc G1 Slothbear R3 Sheppard

29) emusan: M G3 Meow Sheppard

30) bertilious: Build Y2 Bertlandia

31) slothbear: Sacrifice Y1 Slothbear
Discover G1 Sheppard B1 Stewart

32) emusan: T G2 B2 Emusan
	slothbear: I'm always likely to have delays on Tuesdays and Fridays.
	emusan: that's okay

33) bertilious: Build B2 Bertlandia
	slothbear: Move 16 in Second Life. Prettier in person, but it's a start. And 3D. http://www.flickr.com/photos/oseransky/6949790115/

34) slothbear: Build G2 Stewart

35) emusan: M B2 Emusan Meow

36) bertilious: Trade B1 R1 Bertlandia

37) slothbear: Trade G3 R3 Slothbear

38) emusan: S G3 Sheppard
B G3 Meow
B Y1 Emusan
B B1 Meow

39) bertilious: Trade B2 R2 Bertlandia
	slothbear: I bet myself you couldn't resist that. You're welcome.

40) slothbear: Build G3 Carter
	emusan: couldn't resist what?
	slothbear: the g3 thing. 

41) emusan: T Y1 R1 Emusan

42) bertilious: Trade Y2 R2 Bertilious

43) slothbear: Sacrifice G3 Carter
Build G3 Crichton
Build R1 Slothbear
Build Y1 Slothbear

44) emusan: T G3 R3 Meow

45) bertilious: Build Y2 Bertilious

46) slothbear: Build G3 Carter

47) emusan: M R3 Meow Carter

48) bertilious: Trade R2 B2 Bertilious
	slothbear: O Redeo, Redeo! Wherefore art thou Redeo?

49) slothbear: Sacrifice R1 Slothbear
Attack R3E Carter

50) emusan: M R1 Emusan Meow
	emusan: oh crap... forgot you could do that lol
	slothbear: someone should have sent you an email

51) bertilious: Move B2 Bertilious Bertlandia
	emusan: I wasn't sure what you meant by redeo....

52) slothbear: Trade G2 B2 Stewart

53) emusan: B G2 Emusan

54) bertilious: Move R1 Bertlandia Bertilious

55) slothbear: Sacrifice Y3 Slothbear
Move B2 Stewart Bertlandia
Move B2 Bertlandia Meow
Discover G3 Crichton R1 Osterman
Catastrophe Meow Blue

56) emusan: T G2 R2 Emusan
	emusan: so mean! :(

57) bertilious: Build R1 Bertilious
	slothbear: meow learns of secret too late
	slothbear: Even people not involved in the game can't resist 3 of the same color: http://boardgamegeek.com/image/214310/homeworlds

58) slothbear: Trade G1 B1 Stewart

59) emusan: M R2 Emusan Stewart

60) bertilious: Build R1 Bertlandia

61) slothbear: Sacrifice G2 Carter
Build B1 Stewart
Build B2 Stewart
Catastrophe Stewart Blue

62) emusan: B G1 Emusan
	slothbear: good grief. I didn't see *that* coming.

63) bertilious: Build B1 Bertlandia

64) slothbear: Move G3 Carter Bertlandia

65) emusan: B Y1 Emusan

66) bertilious: Discover Y2 Bertlandia G1 Bertland

67) slothbear: Sacrifice R3 Carter
Attack R2S Bertlandia
Attack Y2S Bertlandia
Attack B2S Bertlandia

68) emusan: D Y1 Emusan B1 Shh
	slothbear: s r3 carter
a r2s bertlandia
a y2s bertlandia
a b2s bertlandia
	slothbear: ooops

69) bertilious: Build Y2 Bertland

70) slothbear: Build Y3 Slothbear

71) emusan: S G1 Emusan
B Y3 Shh

72) bertilious: Move Y2 Bertland Emusan


73) slothbear: Attack R1S Bertlandia

74) emusan: S Y1 Emusan
D Y1 Emusan B1 Ezpz

75) bertilious: Discover Y2 Bertland B3 Berttown

76) slothbear: Move R3 Slothbear Berttown

77) emusan: A Y2S Emusan

78) bertilious: Discover Y2 Bertilious R2 Das Spoot
	emusan: no takebacks!
	emusan: :P just kidding

79) slothbear: Trade Y3 R3 Slothbear
	slothbear: played two games with never-played-before nephew this weekend. We split 1&1.

80) emusan: B G1 Emusan

	slothbear: 3 years is as long as I'll wait.


21746)
Variants: "Hard time"
Started: 2012.2.28, Ended: 2012.3.23
Participants: SilentTitan (S), sordros (N)
Winner: sordros

1) sordros: Homeworld R1 B2 G3

2) SilentTitan: Homeworld R3 B2 G3
	sordros: Hi! good luck and have fun!

3) sordros: B G1 Sordros
	SilentTitan: alrighty.... you as well

4) SilentTitan: Build G1 Silenttitan

5) sordros: Trade G1 Y1 Sordros

6) SilentTitan: Trade G1 Y1 Silenttitan

7) sordros: Build G1 Sordros

8) SilentTitan: Build G1 Silenttitan

9) sordros: Trade G1 B1 Sordros

10) SilentTitan: Trade G1 R1 Silenttitan

11) sordros: Build B1 Sordros
	sordros: b b1 sordros
	sordros: whoops, wrong field :-)

12) SilentTitan: Build R1 Silenttitan

13) sordros: Discover B1 Sordros G3 Koora

14) SilentTitan: Discover R1 Silenttitan Y1 Sol

15) sordros: Build Y2 Sordros

16) SilentTitan: Build Y2 Silenttitan

17) sordros: Trade Y2 R2 Sordros

18) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Sol
Build R2 Sol
Build R3 Silenttitan

19) sordros: Sacrifice G3 Sordros
Build B1 Koora
Build B2 Koora
Build B3 Sordros

20) SilentTitan: Move R2 Sol Koora
	SilentTitan: you need to redo your turn .. unless you'd like me to call for a catastrophe on blue in your homeworld.  
	sordros: oh wow, I didn't see that :) Thanks


21) sordros: Sacrifice R2 Sordros
Attack R2 Koora
Pass

22) SilentTitan: Trade R3 B3 Silenttitan

23) sordros: Trade B2 Y2 Koora

24) SilentTitan: Move B3 Silenttitan Sol

25) sordros: Trade B3 G3 Sordros

26) SilentTitan: Trade Y1 G1 Silenttitan

27) sordros: Discover B1 Koora G1 Aqua

28) SilentTitan: Discover R1 Sol B3 Soul

29) sordros: Move R2 Koora Aqua

30) SilentTitan: Discover R1 Silenttitan G1 Sole

31) sordros: Build G2 Sordros

32) SilentTitan: Discover R2 Sol B3 Tic

33) sordros: Build B2 Aqua

34) SilentTitan: Trade B3 G3 Sol

35) sordros: Build B3 Koora

36) SilentTitan: Move G3 Sol Silenttitan

37) sordros: Trade B3 R3 Koora

38) SilentTitan: Trade R2 Y2 Tic

39) sordros: Build B3 Aqua

40) SilentTitan: Build G2 Silenttitan

41) sordros: Trade G3 Y3 Sordros

42) SilentTitan: Build R2 Sole

43) sordros: Sacrifice G2 Sordros
Build R2 Koora
Build R3 Aqua

44) SilentTitan: Sacrifice G2 Silenttitan
Build Y1 Tic
Build Y1 Silenttitan

45) sordros: Build Y3 Koora

46) SilentTitan: Sacrifice Y2 Silenttitan
Move Y2 Tic Sordros
Move Y1 Tic Sordros
Catastrophe Sordros Yellow

47) sordros: Build B3 Koora

48) SilentTitan: Sacrifice Y1 Silenttitan
Discover R2 Sole Y3 Sol

49) sordros: Sacrifice Y2 Koora
Move R3 Koora Sordros
Discover B3 Koora Y1 Diwo

50) SilentTitan: Trade G3 Y3 Silenttitan

51) sordros: Sacrifice Y3 Koora
Move B3 Aqua Silenttitan
Move R3 Aqua Silenttitan
Move B3 Diwo Silenttitan

52) SilentTitan: Sacrifice Y3 Silenttitan
Move R2 Sol Sordros
Move R1 Soul Sordros
Move R1 Sole Silenttitan
Catastrophe Sordros Red

53) sordros: Sacrifice R2 Koora
Attack G1 Silenttitan
Attack R1 Silenttitan

	SilentTitan: good game
	sordros: gg. Thanks for the game!


21706)
Variants: "Hard time"
Started: 2012.2.28, Ended: 2012.4.11
Participants: sordros (S), Jesse (N)
Winner: Jesse

1) Jesse: Homeworld Y1 B3 G3

2) sordros: Homeworld R1 B2 G3

3) Jesse: Build G1 Jesse

4) sordros: Build G1 Sordros

5) Jesse: Discover G1 Jesse B2 Nile

6) sordros: Trade G1 Y1 Sordros

7) Jesse: Build G1 Jesse

8) sordros: Build Y1 Sordros

9) Jesse: Build G1 Nile

10) sordros: Discover Y1 Sordros G3 Koora

11) Jesse: Build G2 Nile

12) sordros: Build G2 Sordros

13) Jesse: Trade G2 Y2 Nile

14) sordros: Build Y2 Sordros

15) Jesse: Build Y2 Nile

16) sordros: Build Y3 Koora

17) Jesse: Discover Y2 Nile B3 Moon

18) sordros: Trade Y1 B1 Sordros

19) Jesse: Discover G1 Nile B3 Lagoon

20) sordros: Discover G2 Sordros R3 Violeta

21) Jesse: Sacrifice G3 Jesse
Build G2 Lagoon
Build G2 Nile
Build G3 Jesse

22) sordros: Discover Y3 Koora B2 Zul

23) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y1 Moon
Build Y3 Nile

24) sordros: Build Y3 Koora

25) Jesse: Trade Y2 R2 Nile

26) sordros: Build Y2 Sordros

27) Jesse: Trade Y1 R1 Moon

28) sordros: Trade Y2 R2 Sordros

29) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R1 Nile
Build Y1 Moon

30) sordros: Build Y2 Koora

31) Jesse: Move R1 Nile Jesse

32) sordros: Build B1 Sordros

33) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build R2 Jesse
Build R3 Moon

34) sordros: Discover B1 Sordros R3 Rubi

35) Jesse: Sacrifice Y2 Moon
Move R1 Moon Sordros
Move R3 Moon Sordros
Catastrophe Sordros R

36) sordros: Trade B1 R1 Sordros

37) Jesse: Sacrifice G3 Jesse
Build G3 Jesse
Build Y2 Moon
Build R1 Nile



21751)
Started: 2012.2.29, Ended: 2012.3.10
Participants: lorgar (S), ludiki (N)
Winner: lorgar

1) ludiki: Homeworld G1 B2 Y3
	ludiki: This is a great game… but I think I will need a few plays before developing a feeling of it. So … Yes, rematch! :-)

2) lorgar: Homeworld B1 Y3 G3

3) ludiki: Build Y1 Ludiki

4) lorgar: Build G1 Lorgar

5) ludiki: Trade Y1 R1 Ludiki

6) lorgar: Build G1 Lorgar

7) ludiki: Discover R1 Ludiki G3 Rhodio

8) lorgar: Discover G1 Lorgar B2 Mnar

9) ludiki: Build Y1 Ludiki

10) lorgar: Build G2 Mnar

11) ludiki: Move Y1 Ludiki Rhodio

12) lorgar: Trade G2 R2 Mnar

13) ludiki: Build Y1 Ludiki

14) lorgar: Build G2 Mnar

15) ludiki: Trade Y3 R3 Ludiki

16) lorgar: Trade G2 Y2 Mnar

17) ludiki: Move R3 Ludiki Rhodio

18) lorgar: Sacrifice Y2 Mnar
Move R2 Mnar Rhodio
Move R2 Rhodio Ludiki

19) ludiki: Move R3 Rhodio Ludiki
	ludiki: Oh! I didn't understand the rule correctly. I thought sacrifices gave some kind of actions points. So that if you sacrificied a Y2, you can move two 1-dot ships or one 2-dot ships, or move twice one 1-dot ship. Too bad. I lost, once again.
	ludiki: Or did I?

20) lorgar: Build R1 Ludiki

21) ludiki: Move R1 Rhodio Mnar

22) lorgar: Attack Y1N Ludiki

23) ludiki: Attack R2 Ludiki

24) lorgar: Build R1 Ludiki
Catastrophe Ludiki Red
	lorgar: gg, rematch? Dont worry you'll learn the dirty tricks by playing against bad people (like twoshort or silent titan :P )



21764)
Started: 2012.3.1, Ended: 2012.3.9
Participants: lorgar (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) lorgar: Homeworld B1 Y2 G3

3) TwoShort: Build G1 Twoshort

4) lorgar: Build G1 Lorgar

5) TwoShort: Trade G1 Y1 Twoshort

6) lorgar: Build G1 Lorgar

7) TwoShort: Build G1 Twoshort

8) lorgar: Discover G1 Lorgar B3 Mnar

9) TwoShort: Build G2 Twoshort

10) lorgar: Sacrifice G3 Lorgar
Build G2 Mnar
Build G2 Lorgar
Build G3 Mnar

11) TwoShort: Discover G1 Twoshort Y2 Yolonda

12) lorgar: Trade G2 R2 Mnar

13) TwoShort: Sacrifice G3 Twoshort
Build G2 Twoshort
Build G3 Twoshort
Build G3 Yolonda

14) lorgar: Sacrifice G3 Mnar
Build G3 Lorgar
Build R1 Mnar
Build R1 Mnar

15) TwoShort: Trade G2 R2 Twoshort

16) lorgar: Trade R2 Y2 Mnar

17) TwoShort: Trade G3 Y3 Twoshort

18) lorgar: Discover G2 Lorgar G3 Mhor

19) TwoShort: Sacrifice Y3 Twoshort
Discover G1 Yolonda Y3 Yack
Move G3 Yolonda Yack
Move G3 Yack Lorgar

20) lorgar: Sacrifice Y2 Mnar
Move R1 Mnar Lorgar
Move G1 Mnar Lorgar
Catastrophe Lorgar Green

21) TwoShort: Build G1 Yack

22) lorgar: Trade R1 Y1 Mnar

23) TwoShort: Discover G1 Yack B2 Bluonia

24) lorgar: Sacrifice Y1 Mnar
Move G2 Mhor Lorgar

25) TwoShort: Build G1 Twoshort

26) lorgar: Build R1 Lorgar

27) TwoShort: Build G2 Yack

28) lorgar: Build G3 Lorgar

29) TwoShort: Move G2 Yack Lorgar

30) lorgar: Discover G2 Lorgar G3 Mo

31) TwoShort: Sacrifice R2 Twoshort
Attack R1 Lorgar
Attack R1 Lorgar

32) lorgar: Build G3 Mo

33) TwoShort: Sacrifice G1 Bluonia
Build G1 Lorgar

34) lorgar: Pass

35) TwoShort: Sacrifice G1 Yack
Build G1 Lorgar
Catastrophe Lorgar Green



21783)
Variants: "Hard time"
Started: 2012.3.4, Ended: 2012.3.7
Participants: Subhan64 (S), mneme (N)
Winner: Subhan64



21747)
Variants: "Unrated"
Started: 2012.3.7, Ended: 2012.4.1
Participants: sordros (S), igneel (N)
Winner: sordros

1) igneel: Homeworld G2 B1 Y3

2) sordros: Homeworld B3 R1 G3

3) igneel: Build Y1 Igneel
	sordros: Buena suerte!

4) sordros: Build G1 Sordros

5) igneel: Build Y1 Igneel

6) sordros: Trade G1 Y1 Sordros

7) igneel: Trade Y1 R1 Igneel

8) sordros: Build G1 Sordros



21750)
Variants: "Hard time"
Started: 2012.3.7, Ended: 2012.3.16
Participants: SilentTitan (S), igneel (N)
Winner: SilentTitan

1) igneel: Homeworld G2 B1 Y3

2) SilentTitan: Homeworld R3 B2 G3

3) igneel: Build Y1 Igneel

4) SilentTitan: Build G1 Silenttitan

5) igneel: Trade Y1 R1 Igneel

6) SilentTitan: Trade G1 Y1 Silenttitan

7) igneel: Build Y1 Igneel

8) SilentTitan: Build G1 Silenttitan

9) igneel: Trade Y1 B1 Igneel

10) SilentTitan: Build Y1 Silenttitan



21816)
Variants: "No undo"
Started: 2012.3.9, Ended: 2012.4.8
Participants: lorgar (S), ajo (N)
Winner: ajo

1) ajo: Homeworld R1 B2 G3

2) lorgar: Homeworld B1 Y3 G3

3) ajo: Build G1 Ajo

4) lorgar: Build G1 Lorgar

5) ajo: Trade G1 Y1 Ajo

6) lorgar: Trade G1 B1 Lorgar

7) ajo: Build G1 Ajo

8) lorgar: Build B1 Lorgar

9) ajo: Discover G1 Ajo B3 Alpha

10) lorgar: Discover B1 Lorgar G2 Mnar

11) ajo: Build G1 Ajo

12) lorgar: Build G1 Lorgar

13) ajo: Build G2 Alpha

14) lorgar: Build B2 Mnar

15) ajo: Trade G2 Y2 Alpha

16) lorgar: Discover G1 Lorgar B2 Mhor

17) ajo: Build G2 Alpha

18) lorgar: Build B3 Mnar

19) ajo: Trade G2 R2 Alpha

20) lorgar: Build G2 Lorgar

21) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G3 Ajo
Build G3 Alpha

22) lorgar: Trade B2 Y2 Mnar

23) ajo: Move G3 Alpha Mnar

24) lorgar: Sacrifice Y2 Mnar
Discover G1 Mhor Y3 Bravo
Move B3 Mnar Alpha

25) ajo: Move G1 Ajo Bravo
	lorgar: should have bought guns...

26) lorgar: Trade B1 R1 Lorgar

27) ajo: Sacrifice R2 Alpha
Attack G1 Bravo
Attack B1 Mnar

28) lorgar: Trade B3 R3 Alpha

29) ajo: Sacrifice Y2 Alpha
Discover G1 Alpha Y2 Gamma
Move G1 Bravo Gamma

30) lorgar: Move G2 Lorgar Gamma

31) ajo: Sacrifice G2 Ajo
Build G2 Gamma
Build B1 Mnar
Catastrophe Gamma Green

32) lorgar: Build G1 Lorgar

33) ajo: Trade G3 R3 Mnar

34) lorgar: Sacrifice G1 Lorgar
Build R1 Alpha

35) ajo: Build R2 Mnar

36) lorgar: Build G1 Lorgar

37) ajo: Trade R2 Y2 Mnar

38) lorgar: Trade R1 G1 Alpha

39) ajo: Build B2 Mnar

40) lorgar: Sacrifice G3 Lorgar
Build G2 Alpha
Build G2 Alpha
Build G3 Lorgar

41) ajo: Build G3 Ajo

42) lorgar: Trade G2 Y2 Alpha

43) ajo: Trade G3 Y3 Ajo

44) lorgar: Sacrifice Y2 Alpha
Move G2 Alpha Mnar
Move G1 Alpha Mnar

45) ajo: Sacrifice Y3 Ajo
Move R3 Mnar Bravo
Move B2 Mnar Lorgar
Move B1 Mnar Lorgar

46) lorgar: Build G2 Mnar
Catastrophe Mnar Green

47) ajo: Sacrifice G1 Bravo
Build B1 Lorgar
Catastrophe Lorgar Blue

48) lorgar: Build G1 Lorgar

49) ajo: Discover R3 Bravo B1 Charlie

50) lorgar: Sacrifice G1 Lorgar
Build R1 Alpha

51) ajo: Build G1 Ajo

52) lorgar: Trade R1 G1 Alpha

53) ajo: Build Y1 Ajo

54) lorgar: Build G2 Alpha

55) ajo: Discover G1 Ajo Y3 Beta

56) lorgar: Trade G2 Y2 Alpha

57) ajo: Move G1 Beta Charlie

58) lorgar: Build G2 Alpha

59) ajo: Trade G3 B3 Ajo

60) lorgar: Build Y1 Alpha

61) ajo: Build G2 Charlie

62) lorgar: Sacrifice Y2 Alpha
Move G2 Alpha Ajo
Move G1 Alpha Ajo

63) ajo: Sacrifice R3 Charlie
Attack G1 Ajo
Attack G2 Ajo
Pass
	ajo: That feels like you just gave me a present. I'll take it!

64) lorgar: Move G1 Lorgar Charlie

65) ajo: Sacrifice Y1 Ajo
Move G1 Charlie Lorgar

66) lorgar: Move R3 Alpha Charlie

67) ajo: Sacrifice G2 Charlie
Build G2 Lorgar
Build G2 Lorgar
Catastrophe Lorgar Green
	ajo: Oh dear. What happened? You had the upper hand for a while, but now I think you're on your last legs.

68) lorgar: Build G1 Charlie
	lorgar: indeed.
	lorgar: this so desperate T_T

69) ajo: Trade G2 R2 Ajo

70) lorgar: Sacrifice Y1 Alpha
Move R3 Charlie Lorgar

71) ajo: Build G2 Ajo

72) lorgar: Build G2 Charlie

73) ajo: Trade G2 Y2 Ajo

74) lorgar: Trade G2 R2 Charlie

75) ajo: Build Y1 Ajo
	ajo: I think you needed yellow or blue, more than another red. Let's see...

76) lorgar: Build G2 Charlie

77) ajo: Build G2 Ajo

78) lorgar: Trade G2 Y2 Charlie
	ajo: I think I see a checkmate in three. :)
	lorgar: I saw it coming :'(

79) ajo: Move Y1 Ajo Lorgar

80) lorgar: Attack Y1N Lorgar
	ajo: Check.

81) ajo: Move Y1 Ajo Lorgar

82) lorgar: Pass
	ajo: I believe that's checkmate! GG.

83) ajo: Sacrifice G2 Ajo
Build Y1 Lorgar
Build Y2 Lorgar
Catastrophe Lorgar Yellow
	lorgar: indeed.



21811)
Variants: "Hard time"
Started: 2012.3.10, Ended: 2012.3.13
Participants: Remneb (S), Subhan64 (N)
Winner: Remneb



21829)
Variants: "Hard time"
Started: 2012.3.12, Ended: 2012.5.25
Participants: Danner (S), AdamBadura (N)
Winner: Danner

1) AdamBadura: Homeworld G3 B2 Y3
	Danner: Hi! Have a nice game!

2) Danner: Homeworld B1 R2 G3

3) AdamBadura: Build Y1 Adambadura

4) Danner: Build G1 Danner

5) AdamBadura: Trade Y1 G1 Adambadura

6) Danner: Trade G1 Y1 Danner

7) AdamBadura: Build G1 Adambadura

8) Danner: Build Y1 Danner

9) AdamBadura: Trade G1 R1 Adambadura

10) Danner: Trade Y1 R1 Danner

11) AdamBadura: Build G1 Adambadura

12) Danner: Build G1 Danner

13) AdamBadura: Trade G1 B1 Adambadura

14) Danner: Discover G1 Danner Y3 Alpha

15) AdamBadura: Build Y1 Adambadura

16) Danner: Build G1 Alpha

17) AdamBadura: Build G2 Adambadura

18) Danner: Build G2 Danner

19) AdamBadura: Discover G2 Adambadura Y1 Ontheway

20) Danner: Move G1 Alpha Ontheway

21) AdamBadura: Build Y2 Adambadura

22) Danner: Sacrifice G3 Danner
Build G2 Ontheway
Build G3 Alpha
Build G3 Danner

23) AdamBadura: Build R1 Adambadura

24) Danner: Move G2 Ontheway Adambadura

25) AdamBadura: Sacrifice Y2 Adambadura
Move G1 Adambadura Ontheway
Move G1 Ontheway Alpha

26) Danner: Sacrifice G1 Alpha
Build G1 Adambadura

27) AdamBadura: Sacrifice R1 Adambadura
Attack G1 Ontheway

28) Danner: Sacrifice R1 Danner
Attack R1N Adambadura

29) AdamBadura: Sacrifice Y1 Adambadura
Move B1 Adambadura Ontheway

30) Danner: Trade G1 B1 Adambadura
	AdamBadura: Sorry for the extreme delays but I was moving and have lots of associated work while the games goes bad for me and I have to think lots about moves.
	Danner: No problem. :)

31) AdamBadura: Trade G2 R2 Ontheway

32) Danner: Sacrifice G3 Alpha
Build B2 Adambadura
Build B2 Adambadura
Build G1 Adambadura
Catastrophe Adambadura B



21820)
Started: 2012.3.13, Ended: 2012.4.12
Participants: lorgar (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) lorgar: Homeworld G3 Y1 B3

3) rootbier: Build G1 Rootbier

4) lorgar: Build B1 Lorgar

5) rootbier: Trade G1 R1 Rootbier

6) lorgar: Build B1 Lorgar

7) rootbier: Build G1 Rootbier

8) lorgar: Discover B1 Lorgar G2 Mnar

9) rootbier: Build G1 Rootbier

10) lorgar: Build B2 Mnar

11) rootbier: Discover G1 Rootbier B3 Oxix

12) lorgar: Trade B2 R2 Mnar

13) rootbier: Build G1 Rootbier

14) lorgar: Build B2 Mnar

15) rootbier: Discover G1 Rootbier B3 Ixox

16) lorgar: Trade B1 Y1 Mnar

17) rootbier: Sacrifice G3 Rootbier
Build G2 Oxix
Build G2 Ixox
Build G3 Rootbier

18) lorgar: Discover B2 Mnar G3 Beer

19) rootbier: Trade G1 Y1 Ixox

20) lorgar: Build B1 Beer

21) rootbier: Sacrifice G3 Rootbier
Build G1 Ixox
Build Y2 Ixox
Build G3 Rootbier

22) lorgar: Build Y2 Mnar

23) rootbier: Move Y2 Ixox Mnar

24) lorgar: Attack Y2N Mnar

25) rootbier: Move Y1 Ixox Mnar
Catastrophe Mnar Y

26) lorgar: Build B2 Beer

27) rootbier: Trade G1 Y1 Ixox

28) lorgar: Build B2 Lorgar

29) rootbier: Sacrifice G3 Rootbier
Build G1 Ixox
Build Y1 Ixox
Build G3 Rootbier

30) lorgar: Trade B2 Y2 Lorgar

31) rootbier: Discover Y1 Ixox B2 Chlor

32) lorgar: Sacrifice Y2 Lorgar
Move R2 Mnar Oxix
Move B2 Beer Chlor

33) rootbier: Sacrifice R1 Rootbier
Attack R2 Oxix

34) lorgar: Trade B2 R2 Chlor

35) rootbier: Move Y1 Chlor Oxix

36) lorgar: Trade B2 Y2 Beer

37) rootbier: Discover G2 Oxix R2 Wihabl

38) lorgar: Trade Y2 G2 Beer

39) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build Y2 Oxix
Build Y2 Ixox

40) lorgar: Build B2 Beer

41) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build Y3 Ixox
Build Y3 Oxix

42) lorgar: Trade B3 Y3 Lorgar

43) rootbier: Sacrifice Y2 Ixox
Move G1 Rootbier Beer
Move G2 Wihabl Beer
Catastrophe Beer G

44) lorgar: Build B1 Lorgar

45) rootbier: Sacrifice Y2 Oxix
Move Y3 Ixox Chlor
Move G1 Ixox Chlor

46) lorgar: Build B2 Lorgar

47) rootbier: Sacrifice G2 Ixox
Build G1 Rootbier
Build G2 Chlor

48) lorgar: Move B1 Lorgar Chlor

49) rootbier: Sacrifice Y3 Oxix
Move Y3 Chlor Lorgar
Move Y1 Ixox Chlor
Move Y1 Chlor Lorgar
Catastrophe Lorgar Y

50) lorgar: Attack G2N Chlor

51) rootbier: Sacrifice G3 Rootbier
Build G2 Chlor
Build G2 Chlor
Build G3 Rootbier
Catastrophe Chlor G

52) lorgar: Trade B1 Y1 Chlor

53) rootbier: Move G3 Rootbier Lorgar

54) lorgar: Pass

55) rootbier: Sacrifice R2 Oxix
Attack B2 Lorgar
Attack B1 Lorgar
	rootbier: good game, sir
	lorgar: sorry, I wont play much these day, cello contest week -.-



21843)
Variants: "Unrated"
Started: 2012.3.17, Ended: 2013.5.6
Participants: Websteria (S), Subhan64 (N)
Winner: Subhan64

1) Subhan64: Homeworld G2 B1 Y3

2) Websteria: Homeworld G3 B2 Y3

3) Subhan64: Build Y1 Subhan64

4) Websteria: Build Y1 Websteria

5) Subhan64: Trade Y3 G3 Subhan64

6) Websteria: Trade Y3 R3 Websteria

7) Subhan64: Build G1 Subhan64

8) Websteria: Build R1 Websteria

9) Subhan64: Trade G1 R1 Subhan64

10) Websteria: Discover Y1 Websteria Y1 Grid

11) Subhan64: Build Y2 Subhan64

12) Websteria: Move Y1 Grid Websteria

13) Subhan64: Build G1 Subhan64

14) Websteria: Trade R3 Y3 Websteria

15) Subhan64: Discover Y1 Subhan64 G3 Kermit

16) Websteria: Discover Y1 Websteria G1 Grid

17) Subhan64: Discover G1 Subhan64 Y3 Pacman

18) Websteria: Build Y1 Grid

19) Subhan64: Build Y2 Kermit

20) Websteria: Build Y2 Websteria

21) Subhan64: Build Y3 Subhan64

22) Websteria: Trade Y3 R3 Websteria

23) Subhan64: Discover G3 Subhan64 Y3 Big_bird

24) Websteria: Move R3 Websteria Grid

25) Subhan64: Discover Y1 Kermit B1 Smurfette

26) Websteria: Move R3 Grid Kermit

27) Subhan64: Move Y2 Kermit Grid

28) Websteria: Build R1 Kermit

29) Subhan64: Build R2 Subhan64



21805)
Variants: "Hard time"
Started: 2012.3.17, Ended: 2012.5.8
Participants: agentofchaos (S), SilentTitan (N)
Winner: agentofchaos

1) SilentTitan: Homeworld R1 B2 G3

2) agentofchaos: Homeworld B3 R2 G3

3) SilentTitan: Build G1 Silenttitan

4) agentofchaos: Build G1 Agentofchaos

5) SilentTitan: Trade G1 Y1 Silenttitan

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) SilentTitan: Build G1 Silenttitan

8) agentofchaos: B G1 Agentofchaos

9) SilentTitan: Trade G1 R1 Silenttitan

10) agentofchaos: Trade G1 R1 Agentofchaos

11) SilentTitan: Build R2 Silenttitan

12) agentofchaos: Build R2 Agentofchaos

13) SilentTitan: Discover R2 Silenttitan B3 Sol

14) agentofchaos: Trade R1 B1 Agentofchaos

15) SilentTitan: Trade R2 Y2 Sol

16) agentofchaos: Discover R2 Agentofchaos G1 Procyon

17) SilentTitan: Build R1 Silenttitan

18) agentofchaos: Build G1 Agentofchaos

19) SilentTitan: Move R1 Silenttitan Sol

20) agentofchaos: Move Y1 Agentofchaos Procyon

21) SilentTitan: Discover R1 Silenttitan B3 Sole

22) agentofchaos: Trade G1 Y1 Agentofchaos

23) SilentTitan: Build Y2 Silenttitan

24) agentofchaos: Build Y2 Agentofchaos

25) SilentTitan: Move Y1 Silenttitan Sole

26) agentofchaos: Build Y3 Procyon

27) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Silenttitan
Build R2 Sol
Build R3 Sole

28) agentofchaos: Build R3 Procyon

29) SilentTitan: Trade Y3 G3 Silenttitan

30) agentofchaos: Move Y3 Procyon Sol

31) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Silenttitan
Build Y3 Sol
Build R3 Sol

32) agentofchaos: Sacrifice R3 Procyon
Attack R3 Sol
Attack Y3 Sol
Attack Y2 Sol

33) SilentTitan: Move Y2 Silenttitan Sol
Catastrophe Sol Yellow

34) agentofchaos: Attack R2 Sol

35) SilentTitan: Move R3 Sole Procyon

36) agentofchaos: Move R2 Procyon Sole

37) SilentTitan: Attack Y1 Procyon South

38) agentofchaos: Attack Y1 Sole

39) SilentTitan: Build R3 Procyon

40) agentofchaos: Sacrifice Y2 Agentofchaos
Move R2 Sole Procyon
Move R2 Sol Procyon
Catastrophe Procyon R

41) SilentTitan: Trade Y3 G3 Silenttitan

42) agentofchaos: Discover Y1 Sole G2 Frendzia

43) SilentTitan: Build G1 Silenttitan

44) agentofchaos: Attack R1 Sol

45) SilentTitan: Build G1 Silenttitan

46) agentofchaos: Build G2 Agentofchaos

47) SilentTitan: Trade G3 Y3 Silenttitan

48) agentofchaos: Sacrifice G2 Agentofchaos
Build Y2 Agentofchaos
Build Y2 Frendzia

49) SilentTitan: Discover G1 Silenttitan Y3 Soul

50) agentofchaos: Build G2 Agentofchaos

51) SilentTitan: Build Y2 Procyon

52) agentofchaos: Trade Y1 B1 Agentofchaos

53) SilentTitan: Build G2 Silenttitan

54) agentofchaos: Move Y2 Frendzia Sole

55) SilentTitan: Sacrifice Y2 Procyon
Discover G1 Silenttitan Y3 Tic
Discover R1 Sole Y1 Tac

56) agentofchaos: Build Y2 Frendzia

57) SilentTitan: Build G3 Silenttitan

58) agentofchaos: Trade R3 G3 Sol

59) SilentTitan: Sacrifice Y3 Silenttitan
Move G1 Soul Tac
Move Y1 Procyon Agentofchaos
Move R1 Tac Agentofchaos

60) agentofchaos: Attack R1 Agentofchaos

61) SilentTitan: Trade Y1 B1 Agentofchaos
Catastrophe Agentofchaos Blue

62) agentofchaos: Build R2 Sol

63) SilentTitan: Trade G3 Y3 Silenttitan

64) agentofchaos: Move G2 Agentofchaos Tac

65) SilentTitan: Sacrifice G1 Tac
Build G1 Silenttitan

66) agentofchaos: Move G2 Tac Tic

67) SilentTitan: Discover G2 Silenttitan B3 Sky

68) agentofchaos: Sacrifice R1 Sol
Attack G1 Tic

69) SilentTitan: Build G1 Sky

70) agentofchaos: Build G3 Sol

71) SilentTitan: Trade G1 R1 Sky

72) agentofchaos: Sacrifice G3 Sol
Build G1 Agentofchaos
Build G3 Sol
Build Y1 Sole

73) SilentTitan: Build R2 Sky

74) agentofchaos: D R1 Agentofchaos Y1 Azafrood

75) SilentTitan: Trade R1 B1 Sky

76) agentofchaos: Sacrifice G3 Sol
Build R1 Sol
Build R3 Azafrood
Build G3 Sol

77) SilentTitan: Build R3 Sky

78) agentofchaos: Sacrifice Y2 Frendzia
Move Y1 Sole Silenttitan
Move Y2 Sole Silenttitan

	SilentTitan: Good Game
	SilentTitan: Good Game


21844)
Started: 2012.3.17, Ended: 2012.4.12
Participants: ts52 (S), anonymousApple (N)
Winner: ts52

1) anonymousApple: Homeworld Y3 B2 G3
	anonymousApple: Hello! Good luck!

2) ts52: Homeworld Y1 B2 G3
	ts52: Thanks, you too!

3) anonymousApple: Build G1 Anonymousapple

4) ts52: Build G1 Ts52

5) anonymousApple: Discover G1 Anonymousapple B1 Snickers

6) ts52: Trade G1 R1 Ts52

7) anonymousApple: Build G1 Anonymousapple

8) ts52: Build R1 Ts52

9) anonymousApple: Trade G1 R1 Anonymousapple

10) ts52: Build R2 Ts52

11) anonymousApple: Discover R1 Anonymousapple Y1 Diablo

12) ts52: Discover R2 Ts52 B3 Grover

13) anonymousApple: Discover R1 Diablo G3 Sulfur

14) ts52: Build G1 Ts52

15) anonymousApple: Build G1 Anonymousapple

16) ts52: Move G1 Ts52 Grover

17) anonymousApple: Build R2 Sulfur

18) ts52: Build R2 Grover

19) anonymousApple: Trade G1 Y1 Anonymousapple

20) ts52: Trade R2 Y2 Grover

21) anonymousApple: Sacrifice Y1 Anonymousapple
Move R2 Sulfur Ts52

22) ts52: Attack R2 Ts52

	anonymousApple: wow...my group has been playing that rule wrong for years...thought it was largest *red* ship in the system. gg.
	ts52: Ouch. Yeah, that's an easy one to mistake. Thanks for the game.


21846)
Variants: "Hard time"
Started: 2012.3.17, Ended: 2012.3.29
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) lorgar: Homeworld R2 B3 G3

3) SilentTitan: Build G1 Silenttitan
	lorgar: I'm gonna try...

4) lorgar: Build G1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Trade G1 Y1 Lorgar

7) SilentTitan: Build G1 Silenttitan

8) lorgar: Build G1 Lorgar

9) SilentTitan: Trade G1 R1 Silenttitan

10) lorgar: Build G1 Lorgar

11) SilentTitan: Build R1 Silenttitan

12) lorgar: Discover G1 Lorgar B1 Leng

13) SilentTitan: Discover R1 Silenttitan G3 Sol

14) lorgar: Build G1 Lorgar

15) SilentTitan: Build R2 Silenttitan

16) lorgar: Build G2 Leng

17) SilentTitan: Discover R2 Silenttitan Y3 Soul

18) lorgar: Sacrifice Y1 Lorgar
Discover G2 Leng B3 Mnar

19) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Sol
Build R3 Soul
Build R3 Silenttitan

20) lorgar: Sacrifice G1 Lorgar
Build G1 Mnar

21) SilentTitan: Move R3 Silenttitan Mnar

22) lorgar: Build G2 Mnar

23) SilentTitan: Sacrifice R3 Soul
Attack G2 Mnar South
Attack G2 Mnar South
Attack G1 Mnar South

24) lorgar: Trade G1 Y1 Leng

25) SilentTitan: Trade G2 Y2 Mnar

26) lorgar: Trade Y1 G1 Leng
	lorgar: I'm getting beaten even worst than usual

27) SilentTitan: Trade R3 Y3 Mnar

28) lorgar: Trade G1 Y1 Lorgar

29) SilentTitan: Discover R2 Soul Y1 Sole

30) lorgar: Build G1 Leng

31) SilentTitan: Sacrifice G2 Mnar
Build R3 Sole
Build R3 Sole

32) lorgar: Sacrifice Y1 Lorgar
Discover G1 Leng B3 Mhor

33) SilentTitan: Sacrifice Y2 Mnar
Move R3 Sole Lorgar
Move R3 Sole Lorgar

34) lorgar: Pass

35) SilentTitan: Attack G3 Lorgar South



21849)
Started: 2012.3.17, Ended: 2012.5.9
Participants: lorgar (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) lorgar: Homeworld Y1 B2 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	lorgar: thx, I feel like trying new things

4) lorgar: Build G1 Lorgar

5) ts52: Trade G1 Y1 Ts52

6) lorgar: Trade G1 B1 Lorgar

7) ts52: Build G1 Ts52

8) lorgar: Discover B1 Lorgar G3 Leng

9) ts52: Trade G1 R1 Ts52

10) lorgar: Build B1 Leng

11) ts52: Move R1 Ts52 Leng

12) lorgar: Build B2 Leng

13) ts52: Attack B1 Leng

14) lorgar: Trade B2 R2 Leng

15) ts52: Build R1 Leng

16) lorgar: Sacrifice R2 Leng
Attack R1N Leng
Attack R1N Leng

17) ts52: Build B2 Leng

18) lorgar: Build B2 Leng
Catastrophe Leng Blue

19) ts52: Trade Y1 R1 Ts52

20) lorgar: Build G1 Lorgar
	lorgar: You are annoying you know that? :)
	ts52: What? ;)

21) ts52: Build R2 Ts52

22) lorgar: Discover G1 Lorgar B3 Mnar

23) ts52: Move R2 Ts52 Mnar

24) lorgar: Build G1 Lorgar

25) ts52: Attack G1 Mnar
	lorgar: I hate you -_-

26) lorgar: Trade G1 B1 Lorgar

27) ts52: Build R2 Mnar
	ts52: You chose to make it a compact universe. 
	lorgar: I know, thats why I hate my self twice more than you.

28) lorgar: Build G1 Lorgar

29) ts52: Trade R2 Y2 Mnar

30) lorgar: Build R2 Leng

31) ts52: Move R1 Ts52 Leng
Catastrophe Leng Red

32) lorgar: Trade B1 R1 Lorgar

33) ts52: Build G1 Mnar
	ts52: You know I'm not going to let you get away with that...
	lorgar: dunno what I thought -_-

34) lorgar: Build R1 Lorgar

35) ts52: Sacrifice Y2 Mnar
Move G1 Mnar Lorgar
Move G1 Mnar Lorgar
Catastrophe Lorgar Green

36) lorgar: Trade R1 G1 Lorgar

37) ts52: Build G1 Ts52

38) lorgar: Build R1 Lorgar

39) ts52: Move G1 Ts52 Mnar

40) lorgar: Build G1 Lorgar

41) ts52: Trade G1 Y1 Mnar

42) lorgar: Trade G1 B1 Lorgar

43) ts52: Build G1 Ts52

44) lorgar: Build G1 Lorgar

45) ts52: Move G1 Ts52 Mnar

46) lorgar: Discover B1 Lorgar G3 More

47) ts52: Build G2 Mnar

48) lorgar: Build B1 More

49) ts52: Move G2 Mnar Lorgar

50) lorgar: Trade B1 Y1 More
	ts52: Welcome back. ;)

51) ts52: Sacrifice R2 Mnar
Attack R1 Lorgar
Attack R1 Lorgar

52) lorgar: Pass

53) ts52: Build G2 Lorgar
Catastrophe Lorgar Green

	ts52: Thanks for the game! Small universe, bad.... :D
	lorgar: indeed...


21857)
Variants: "Hard time"
Started: 2012.3.19, Ended: 2012.3.21
Participants: Gidaio (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) Gidaio: Homeworld B2 G1 Y3

3) dlwillson: B G1 Dlwillson
	Gidaio: Haven't we had a match before? I swear, your name seems familiar...

4) Gidaio: Build Y1 Gidaio
	dlwillson: We played Cannon in February last year. Unfortunately, sometime around then, I got bored or depressed or something, and quit practically everything I was doing on SDG. I'm back now. :-)

5) dlwillson: Trade G1 Y1 Dlwillson
	Gidaio: Heh. That kinda happened to me, too.

6) Gidaio: Discover Y1 Gidaio G3 Galifrey
	dlwillson: This should be interesting...

7) dlwillson: Discover Y1 Dlwillson G2 Field

8) Gidaio: Build Y2 Galifrey

9) dlwillson: Build Y2 Field

10) Gidaio: Build Y2 Gidaio

11) dlwillson: D Y2 Field G3 Meadow

12) Gidaio: Trade Y2 G2 Gidaio

13) dlwillson: B G1 Dlwillson

14) Gidaio: Discover G2 Gidaio Y3 Sr388

15) dlwillson: T G1 R1 Dlwillson
	Gidaio: Lemmie guess: your next system will be 'plain.'

16) Gidaio: Build G1 Sr388

17) dlwillson: B G1 Dlwillson
	dlwillson: Probably 'sky'. 'Plain' would be a bad name for blue. :-)

18) Gidaio: Move G2 Sr388 Field

19) dlwillson: S G3 Dlwillson
B G2 Dlwillson
B Y2 Field
B Y3 Meadow

20) Gidaio: Build G3 Sr388

21) dlwillson: Move Y3 Meadow Gidaio

22) Gidaio: Trade Y3 R3 Gidaio

23) dlwillson: Sacrifice R1 Dlwillson
Attack R3 Gidaio

	Gidaio: Oh, very nice. I didn't even notice that.
	dlwillson: Good game, Gidaio. Let me know if you'd like to play a friendly game.


21858)
Started: 2012.3.19, Ended: 2012.4.9
Participants: RogueJedi234 (S), krazykyle2011 (N)
Winner: RogueJedi234

1) krazykyle2011: Pass


2) RogueJedi234: Homeworld B3 G2 Y3

3) krazykyle2011: Homeworld B3 G1 R3

4) RogueJedi234: Build Y1 Roguejedi234

5) krazykyle2011: Build R1 Krazykyle2011

6) RogueJedi234: Build Y1 Roguejedi234

7) krazykyle2011: Trade R1 Y1 Krazykyle2011

8) RogueJedi234: Discover Y1 Roguejedi234 G1 Alpha1

9) krazykyle2011: Build Y2 Krazykyle2011

10) RogueJedi234: Build Y2 Roguejedi234

11) krazykyle2011: Build Y2 Krazykyle2011

12) RogueJedi234: Trade Y2 B2 Roguejedi234

13) krazykyle2011: Discover Y2 Krazykyle2011 B2 Beta2

14) RogueJedi234: Move B2 Roguejedi234 Alpha1

15) krazykyle2011: Move Y2 Krazykyle2011 Beta2

16) RogueJedi234: Build Y2 Alpha1

17) krazykyle2011: Trade Y2 G2 Beta2

18) RogueJedi234: Trade Y2 G2 Alpha1

19) krazykyle2011: Build R1 Krazykyle2011

20) RogueJedi234: Build G1 Alpha1

21) krazykyle2011: Move R1 Krazykyle2011 Beta2

22) RogueJedi234: Build Y2 Roguejedi234

23) krazykyle2011: Move R1 Beta2 Alpha1

24) RogueJedi234: Trade Y2 R2 Roguejedi234

25) krazykyle2011: Move Y2 Beta2 Alpha1

26) RogueJedi234: Sacrifice R2 Roguejedi234
Attack R1 Alpha1
Attack Y2 Alpha1

27) krazykyle2011: Build Y2 Krazykyle2011

28) RogueJedi234: Move G2 Alpha1 Roguejedi234

29) krazykyle2011: Move Y2 Krazykyle2011 Beta2

30) RogueJedi234: Trade Y1 R1 Roguejedi234

31) krazykyle2011: Discover G2 Beta2 B1 Delta 3

32) RogueJedi234: Sacrifice Y2 Alpha1
Move R1 Alpha1 Beta2
Move B2 Alpha1 Beta2

33) krazykyle2011: Move Y2 Beta2 Delta

34) RogueJedi234: Sacrifice G2 Roguejedi234
Build R1 Beta2
Build R2 Beta2

35) krazykyle2011: Build G2 Delta

36) RogueJedi234: Move G1 Alpha1 Beta2

37) krazykyle2011: Trade G2 R2 Delta

38) RogueJedi234: Build Y1 Alpha1

39) krazykyle2011: Move R3 Krazykyle2011 Beta2

40) RogueJedi234: Sacrifice Y1 Alpha1
Move R2 Beta2 Krazykyle2011

41) krazykyle2011: Build Y1 Krazykyle2011

42) RogueJedi234: Trade R2 G2 Krazykyle2011

43) krazykyle2011: Sacrifice Y2 Delta
Move R3 Beta2 Krazykyle2011
Move Y1 Krazykyle2011 Beta2

44) RogueJedi234: Build G3 Krazykyle2011

45) krazykyle2011: Build G3 Delta

46) RogueJedi234: Build G3 Krazykyle2011
Catastrophe Krazykyle2011 Green

47) krazykyle2011: Sacrifice Y1 Beta2
Discover G3 Delta B3 Gamma

48) RogueJedi234: Build B1 Beta2

49) krazykyle2011: Build G1 Gamma

50) RogueJedi234: Build B1 Beta2

51) krazykyle2011: Trade R2 Y2 Delta

52) RogueJedi234: Sacrifice Y3 Roguejedi234
Move B1 Beta2 Krazykyle2011
Move B2 Beta2 Krazykyle2011
Move B1 Beta2 Krazykyle2011
Catastrophe Krazykyle2011 Blue



21848)
Variants: "Hard time"
Started: 2012.3.20, Ended: 2012.4.2
Participants: SilentTitan (S), rootbier (N)
Winner: rootbier

1) rootbier: Homeworld B1 Y2 G3

2) SilentTitan: Homeworld R2 B3 G3

3) rootbier: Build G1 Rootbier

4) SilentTitan: Build G1 Silenttitan

5) rootbier: Trade G1 R1 Rootbier

6) SilentTitan: Trade G1 R1 Silenttitan

7) rootbier: Build G1 Rootbier

8) SilentTitan: Build G1 Silenttitan

9) rootbier: Discover G1 Rootbier B3 Oxix

10) SilentTitan: Trade G1 B1 Silenttitan

11) rootbier: Build G1 Rootbier

12) SilentTitan: Build B1 Silenttitan

13) rootbier: D G1 Rootbier B3 Ixox

14) SilentTitan: Trade B1 Y1 Silenttitan

15) rootbier: Build G1 Rootbier

16) SilentTitan: Build Y1 Silenttitan

17) rootbier: Build G2 Rootbier

18) SilentTitan: Discover Y1 Silenttitan R1 Sky

19) rootbier: Discover G2 Rootbier Y3 Skox

20) SilentTitan: Build R2 Silenttitan

21) rootbier: Build G2 Ixox

22) SilentTitan: Discover R2 Silenttitan Y1 Sol

23) rootbier: Sacrifice G3 Rootbier
Build G2 Oxix
Build G3 Skox
Build G3 Rootbier

24) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sky
Build Y2 Silenttitan
Build Y3 Silenttitan

25) rootbier: Build G3 Rootbier

26) SilentTitan: Discover R2 Sol Y3 Soul

27) rootbier: Build R2 Rootbier
	rootbier: whoops. somehow in all my manic tab flipping i bumped the undo.
	rootbier: whoops. somehow in all my manic tab flipping i bumped the undo. and then ha hah i put the ship back in the wrong place.

28) SilentTitan: Discover Y2 Silenttitan B1 Sole

29) rootbier: Move R2 Rootbier Skox

30) SilentTitan: Move Y1 Silenttitan Sole

31) rootbier: Move G3 Skox Sole

32) SilentTitan: Sacrifice Y2 Sole
Move Y1 Sole Skox
Move Y1 Sky Skox

33) rootbier: Discover R2 Skox Y1 Prong

34) SilentTitan: Move Y1 Skox Prong

35) rootbier: Sacrifice G3 Rootbier
Build G3 Rootbier
Build R3 Rootbier
Build R3 Prong

36) SilentTitan: Discover Y1 Prong Y2 Sunburst

37) rootbier: Move G3 Rootbier Soul

38) SilentTitan: Pass

39) rootbier: Sacrifice R1 Rootbier
Attack R2 Soul

40) SilentTitan: Discover Y1 Sunburst R3 Mars
	rootbier: ? hmm ?

41) rootbier: Move G3 Rootbier Mars

42) SilentTitan: Move Y1 Mars Rootbier

43) rootbier: Sacrifice R2 Soul
Attack Y1 Skox
Attack Y1 Rootbier

44) SilentTitan: Pass

45) rootbier: Move Y1 Rootbier Ixox

	SilentTitan: good game
	rootbier: thanks. rematch?
	SilentTitan: sure.


21868)
Variants: "Hard time"
Started: 2012.3.21, Ended: 2012.3.25
Participants: dragmio (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) dragmio: Homeworld G2 Y1 B3

3) SilentTitan: Build G1 Silenttitan
	dragmio: Hello! Have a good game!
	SilentTitan: Well.... thank you very much... I hope you have a good game as well.


4) dragmio: Build B1 Dragmio

5) SilentTitan: Trade G1 Y1 Silenttitan

6) dragmio: Trade B1 R1 Dragmio

7) SilentTitan: Build Y1 Silenttitan

8) dragmio: Build R1 Dragmio

9) SilentTitan: Build Y2 Silenttitan

10) dragmio: Build R2 Dragmio

11) SilentTitan: Discover Y2 Silenttitan R3 Sol

12) dragmio: Discover R2 Dragmio Y3 Prime

13) SilentTitan: Build Y2 Silenttitan

14) dragmio: Build R2 Dragmio

15) SilentTitan: Trade Y2 R2 Silenttitan

16) dragmio: Trade R2 Y2 Dragmio

17) SilentTitan: Discover Y1 Silenttitan R3 Soul

18) dragmio: Discover R1 Dragmio G3 Grassy

19) SilentTitan: Move R2 Silenttitan Grassy

20) dragmio: Move R1 Dragmio Grassy

21) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Soul
Build Y3 Sol
Build Y3 Silenttitan

22) dragmio: Build B1 Dragmio
	dragmio: Wow, didn't see this coming at all.

23) SilentTitan: Trade Y3 G3 Silenttitan

24) dragmio: Sacrifice Y2 Dragmio
Move R1 Grassy Silenttitan
Move R1 Grassy Silenttitan

25) SilentTitan: Build Y2 Silenttitan

26) dragmio: Move R2 Prime Silenttitan
Catastrophe Silenttitan R

27) SilentTitan: Move Y3 Sol Dragmio

28) dragmio: Trade B1 R1 Dragmio

29) SilentTitan: Sacrifice R2 Grassy
Attack B3 Dragmio South
Attack R1 Dragmio South
	SilentTitan: Tiny Universe are always trouble. Good Game.
	dragmio: You are too nice. You kicked my ass good. :) I'll try again when I'm better.



21877)
Variants: "Hard time"
Started: 2012.3.21, Ended: 2012.3.24
Participants: dlwillson (S), mneme (N)
Winner: dlwillson

	dlwillson: Mneme, take a turn!


21887)
Variants: "Hard time"
Started: 2012.3.25, Ended: 2012.4.9
Participants: ts52 (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

2) ts52: Homeworld B1 Y2 G3

3) dlwillson: Build G1 Dlwillson

4) ts52: Build G1 Ts52

5) dlwillson: Discover G1 Dlwillson B2 Sky
	ts52: Have a good game!

6) ts52: Discover G1 Ts52 B3 Grover
	dlwillson: You too!

7) dlwillson: Build G1 Dlwillson

8) ts52: Build G2 Grover

9) dlwillson: B G2 Dlwillson

10) ts52: Trade G2 Y2 Grover

11) dlwillson: Discover G2 Dlwillson B2 Sea

12) ts52: Build G2 Grover

13) dlwillson: Sacrifice G3 Dlwillson
Build G2 Sky
Build G3 Sea
Build G3 Dlwillson

14) ts52: Trade G2 R2 Grover

15) dlwillson: Trade G1 R1 Dlwillson

16) ts52: Build Y1 Grover

17) dlwillson: Trade G2 Y2 Sky

18) ts52: Build G1 Grover

19) dlwillson: Sacrifice G3 Sea
Build G2 Dlwillson
Build G2 Sky
Build G3 Sea

20) ts52: Sacrifice Y2 Grover
Move G1 Grover Sea
Move G1 Grover Sea
Catastrophe Sea Green

21) dlwillson: Discover G2 Sky B3 Sea

22) ts52: Build G1 Ts52

23) dlwillson: Sacrifice G3 Dlwillson
Build G1 Sea
Build G2 Sky
Build G3 Dlwillson

24) ts52: Trade G1 R1 Ts52

25) dlwillson: Sacrifice G3 Dlwillson
Build G1 Dlwillson
Build G3 Sea
Build G3 Dlwillson

26) ts52: Build R1 Ts52
	ts52: This doesn't seem to be going too well for me....

27) dlwillson: T G3 Y3 Sea

28) ts52: Trade R1 B1 Ts52

29) dlwillson: B G3 Sea

30) ts52: Build R1 Ts52

31) dlwillson: Trade G3 R3 Sea

32) ts52: Discover R1 Ts52 G3 Kermit

33) dlwillson: Move G1 Sea Ts52

34) ts52: Build R2 Ts52

35) dlwillson: Sacrifice Y3 Sea
Move G2 Sea Ts52
Move G1 Sky Sea
Move G1 Sea Ts52
Catastrophe Ts52 G

36) ts52: Trade R2 G2 Ts52

37) dlwillson: Sacrifice Y2 Sky
Move R3 Sea Ts52
Move G2 Sky Grover
	dlwillson: I think it's over in a move or three, depending.

38) ts52: Sacrifice G2 Ts52
Build R2 Ts52
Build R2 Ts52
Catastrophe Ts52 Red
	ts52: Yeah, I think you're probably right.

39) dlwillson: Sacrifice R1 Dlwillson
Attack R2 Grover

40) ts52: Sacrifice Y1 Grover
Move R1 Kermit Ts52

41) dlwillson: Trade G2 Y2 Dlwillson

42) ts52: Trade B1 G1 Ts52

43) dlwillson: Sacrifice Y2 Dlwillson
Move G2 Grover Ts52
Move R2 Grover Ts52

44) ts52: Build G1 Ts52

45) dlwillson: Sacrifice R2 Ts52
Attack R1 Ts52
Attack G1 Ts52

46) ts52: Pass
	ts52: I think thats about it.

47) dlwillson: A G1 Ts52
	dlwillson: one more move you get, and, depending on what you do, one more for me.

thanks so much for the good game.
	ts52: Thanks to you too.

	dlwillson: Good game, TS52. Thank you.
	ts52: You too. Well played.


21890)
Started: 2012.3.25, Ended: 2012.4.1
Participants: dragmio (S), lorgar (N), tcerier (E)
Winner: dragmio

1) lorgar: Homeworld B1 Y3 G3

2) dragmio: Homeworld G3 Y1 B3
	tcerier: how do i enter my move?
	dragmio: Hm, if its your first game,you should really try a "one on one" game. I'll play you, no problem.

3) lorgar: Build G1 Lorgar

4) dragmio: Build B1 Dragmio

5) lorgar: Trade G1 B1 Lorgar

6) dragmio: Trade B1 R1 Dragmio

7) lorgar: Discover B1 Lorgar G2 Mnar

8) dragmio: Move R1 Dragmio Mnar

	dragmio: Hey, what happened?
	lorgar: Can we start again using three pieces stack please?
	dragmio: Of course. I just thought this would be an interesting change. Anyway, I'll challenge you.


21880)
Variants: "Hard time"
Started: 2012.3.25, Ended: 2012.3.29
Participants: tcerier (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3



21892)
Variants: "Hard time"
Started: 2012.3.31, Ended: 2012.4.9
Participants: lorgar (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) lorgar: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) lorgar: Build G1 Lorgar

5) SilentTitan: Trade G1 Y1 Silenttitan

6) lorgar: Build G1 Lorgar

7) SilentTitan: Build Y1 Silenttitan

8) lorgar: Trade G1 B1 Lorgar

9) SilentTitan: Build Y1 Silenttitan

10) lorgar: Build B1 Lorgar

11) SilentTitan: Discover Y1 Silenttitan B3 Sol

12) lorgar: Discover B1 Lorgar G2 Mnar

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Sol
Build Y2 Silenttitan

14) lorgar: Build B2 Mnar

15) SilentTitan: Discover Y2 Sol G2 Soul

16) lorgar: Move G1 Lorgar Soul

17) SilentTitan: Build Y3 Soul

18) lorgar: Sacrifice G3 Lorgar
Build G1 Soul
Build G1 Soul
Build B2 Mnar
Catastrophe Soul Green

19) SilentTitan: Sacrifice Y2 Silenttitan
Move Y2 Sol Mnar
Move Y2 Mnar Lorgar

20) lorgar: Trade B2 G2 Mnar
	SilentTitan: I was sure you wouldn't try that...

21) SilentTitan: Trade Y2 B2 Lorgar

22) lorgar: Sacrifice B2 Mnar
Trade B1 R1 Lorgar
Trade G2 Y2 Mnar
	lorgar: yeah, and now I'm screwed

23) SilentTitan: Trade B2 R2 Lorgar

24) lorgar: Pass

25) SilentTitan: Attack R1 Lorgar South



21929)
Variants: "Hard time"
Started: 2012.3.31, Ended: 2012.4.18
Participants: rootbier (S), shmil1 (N)
Winner: rootbier

1) shmil1: Homeworld G1 B2 R3

2) rootbier: Homeworld Y2 B3 G3

3) shmil1: Build R1 Shmil1

4) rootbier: Build G1 Rootbier

5) shmil1: Trade R1 Y1 Shmil1

6) rootbier: Discover G1 Rootbier B1 Oxix

7) shmil1: Build R1 Shmil1

8) rootbier: Build G1 Rootbier

9) shmil1: Build Y1 Shmil1

10) rootbier: Discover G1 Rootbier B1 Ixox

11) shmil1: Build Y1 Shmil1

12) rootbier: Build G2 Rootbier

13) shmil1: Discover R1 Shmil1 Y3 Prechodnenebe

14) rootbier: Sacrifice G3 Rootbier
Build G2 Ixox
Build G2 Oxix
Build G3 Rootbier

15) shmil1: Move R1 Prechodnenebe Oxix
	rootbier: prehuzzawhat?

16) rootbier: Trade G2 R2 Oxix

17) shmil1: Attack G1 Oxix

18) rootbier: Attack R1 Oxix

19) shmil1: Build G2 Oxix

20) rootbier: Attack G2 Oxix

21) shmil1: Build G3 Oxix

22) rootbier: Sacrifice G1 Ixox
Build G1 Oxix
Catastrophe Oxix G

23) shmil1: Trade Y1 G1 Shmil1

24) rootbier: Move G2 Rootbier Oxix

25) shmil1: Build R1 Shmil1

26) rootbier: Trade R2 Y2 Oxix

27) shmil1: Discover Y1 Shmil1 G3 Zelenenebe

28) rootbier: Build G1 Rootbier

29) shmil1: Build Y1 Zelenenebe

30) rootbier: Sacrifice G3 Rootbier
Build G2 Ixox
Build G3 Rootbier
Build G3 Oxix

31) shmil1: Build Y2 Shmil1

32) rootbier: Trade G2 R2 Ixox

33) shmil1: Discover Y1 Zelenenebe B1 Modrenebe

34) rootbier: Sacrifice G3 Rootbier
Build G2 Ixox
Build G3 Rootbier
Build Y3 Oxix

35) shmil1: Move Y1 Zelenenebe Modrenebe

36) rootbier: Sacrifice Y3 Oxix
Move R2 Ixox Rootbier
Move R2 Rootbier Modrenebe
Discover Y2 Oxix B3 Habl

37) shmil1: Sacrifice Y2 Shmil1
Move Y1 Modrenebe Rootbier
Move Y1 Modrenebe Rootbier

38) rootbier: Sacrifice R2 Modrenebe
Attack Y1 Rootbier
Attack Y1 Rootbier

39) shmil1: Build G3 Shmil1

40) rootbier: Sacrifice Y2 Habl
Discover G2 Ixox Y3 Habl
Move G2 Habl Shmil1
Catastrophe Shmil1 G

41) shmil1: Trade R3 G3 Shmil1

42) rootbier: Move Y1 Rootbier Oxix

43) shmil1: Build Y2 Shmil1

44) rootbier: Move Y1 Rootbier Ixox

45) shmil1: Move Y2 Shmil1 Ixox

46) rootbier: Sacrifice R1 Oxix
Attack Y2 Ixox

47) shmil1: Move R1 Shmil1 Oxix

48) rootbier: Sacrifice Y1 Oxix
Discover G2 Oxix Y3 Habl

49) shmil1: Sacrifice Y1 Shmil1
Move R1 Oxix Rootbier

50) rootbier: Trade Y2 R2 Ixox

51) shmil1: Attack G1 Rootbier

52) rootbier: Sacrifice R2 Ixox
Attack G1 Rootbier
Attack R1 Rootbier

53) shmil1: Build G1 Shmil1

54) rootbier: Move G2 Habl Shmil1

55) shmil1: Trade G3 R3 Shmil1
	rootbier: laudable commitment to a bad plan
ready to throw it in?

56) rootbier: Sacrifice G3 Rootbier
Build G1 Shmil1
Build G2 Oxix
Build G3 Ixox

57) shmil1: Attack G2 Shmil1

58) rootbier: Build G3 Shmil1
Catastrophe Shmil1 G

59) shmil1: Trade R3 G3 Shmil1

60) rootbier: Move G3 Ixox Shmil1

61) shmil1: Trade G3 R3 Shmil1

62) rootbier: Sacrifice R1 Rootbier
Attack R3 Shmil1

	shmil1: interesting how long it takes to win...
	rootbier: it does take some time yeah


21926)
Variants: "Hard time"
Started: 2012.4.2, Ended: 2012.4.3
Participants: alihv (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) alihv: Homeworld G3 B1 Y3

3) SilentTitan: Build G1 Silenttitan

4) alihv: Build Y1 Alihv

5) SilentTitan: Trade G1 Y1 Silenttitan

6) alihv: Trade Y3 G3 Alihv

7) SilentTitan: Build G1 Silenttitan

8) alihv: Build G1 Alihv

9) SilentTitan: Trade G1 R1 Silenttitan

10) alihv: Discover G1 Alihv B2 Germany

11) SilentTitan: Build R1 Silenttitan

12) alihv: Build G1 Alihv

13) SilentTitan: Discover R1 Silenttitan B3 Sol

14) alihv: Discover G1 Alihv B2 France

15) SilentTitan: Build R2 Silenttitan

16) alihv: Build G1 France

17) SilentTitan: Discover R2 Silenttitan Y3 Soul

18) alihv: Build Y1 Alihv

19) SilentTitan: Build G2 Silenttitan

20) alihv: Sacrifice G3 Alihv
Build G2 Germany
Build G2 Germany
Build G3 France

21) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Sol
Build R2 Soul
Build G3 Silenttitan

22) alihv: Trade G3 R3 France

23) SilentTitan: Build Y2 Silenttitan

24) alihv: Sacrifice G2 Germany
Build Y2 Alihv
Build G2 France

25) SilentTitan: Sacrifice Y2 Silenttitan
Move R2 Sol France
Move R2 France Alihv

26) alihv: Sacrifice Y2 Alihv
Move R3 France Alihv
Discover G2 France G3 Seoul

27) SilentTitan: Sacrifice G3 Silenttitan
Build R3 Alihv
Build R3 Alihv
Build G3 Silenttitan
Catastrophe Alihv Red

28) alihv: Trade G2 R2 Germany

29) SilentTitan: Sacrifice G3 Silenttitan
Build R3 Sol
Build R3 Silenttitan
Build Y2 Silenttitan

30) alihv: Build Y2 Alihv
	SilentTitan: LMAO..... I never even thought of that Seoul... I've always done sol soul sole.... I shall promptly add that to my repertoire. 

31) SilentTitan: Sacrifice Y2 Silenttitan
Move R3 Sol France
Move R3 France Alihv

32) alihv: Sacrifice Y2 Alihv
Move G2 Seoul Silenttitan
Move R2 Germany Sol

	alihv: congrats!
	SilentTitan: did you want to play again? 


21944)
Variants: "Hard time"
Started: 2012.4.5, Ended: 2012.5.12
Participants: rootbier (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) rootbier: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) rootbier: Build G1 Rootbier

5) SilentTitan: Trade G1 Y1 Silenttitan

6) rootbier: Discover G1 Rootbier Y2 Oxix

7) SilentTitan: Build G1 Silenttitan

8) rootbier: Build G1 Rootbier

9) SilentTitan: Discover G1 Silenttitan Y3 Sol

10) rootbier: Build G2 Oxix

11) SilentTitan: Build Y1 Silenttitan

12) rootbier: Discover G2 Oxix B3 Ixox

13) SilentTitan: Discover Y1 Silenttitan G3 Soul

14) rootbier: Sacrifice G3 Rootbier
Build G2 Ixox
Build G2 Oxix
Build G3 Rootbier

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Soul
Build Y2 Silenttitan
Build G3 Sol

16) rootbier: Trade G2 R2 Ixox

17) SilentTitan: Discover G1 Sol Y2 Sole

18) rootbier: Move G1 Oxix Sol

19) SilentTitan: Build G2 Sole
	rootbier: gah. i went too mono. :)

20) rootbier: Move G1 Rootbier Sole

21) SilentTitan: Move G1 Sole Rootbier

22) rootbier: Trade G3 R3 Rootbier

23) SilentTitan: Sacrifice G2 Sole
Build Y3 Silenttitan
Pass

24) rootbier: Sacrifice G2 Oxix
Build G2 Sol
Build G2 Sol
Catastrophe Sol G

25) SilentTitan: Build Y2 Soul

26) rootbier: Attack G1 Rootbier

27) SilentTitan: Trade Y3 G3 Silenttitan

28) rootbier: Move G1 Sole Soul

29) SilentTitan: Sacrifice Y2 Soul
Discover Y1 Soul Y2 Tic
Discover Y1 Soul Y2 Tac

30) rootbier: Build G1 Ixox

31) SilentTitan: Build Y3 Silenttitan

32) rootbier: Trade G2 B2 Ixox

33) SilentTitan: Trade Y3 R3 Silenttitan

34) rootbier: Move G1 Rootbier Tic

35) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Tic
Build Y3 Silenttitan
Build R1 Silenttitan

36) rootbier: Sacrifice G1 Soul
Build R1 Rootbier

37) SilentTitan: Sacrifice R1 Silenttitan
Attack G1 Tic South

38) rootbier: Trade R3 G3 Rootbier


39) SilentTitan: Move Y3 Tic Ixox

40) rootbier: Build B1 Ixox

41) SilentTitan: Trade Y3 B3 Ixox
Catastrophe Ixox Blue

42) rootbier: Build R1 Rootbier

43) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Tac Rootbier
Move Y1 Tic Rootbier
	rootbier: i can take you with me :)
	SilentTitan: LOL... that had actually been my intent. 

44) rootbier: Build R2 Rootbier
	rootbier: hmm... had i not pushed for catastrophe you could have had them all with an r3 sac

would have been well worth it
	rootbier: not that you need worry about that now

45) SilentTitan: Sacrifice G1 Tic
Build Y2 Rootbier
Catastrophe Rootbier Yellow

46) rootbier: Trade R2 Y2 Rootbier

47) SilentTitan: Trade R3 G3 Silenttitan

48) rootbier: Build R2 Rootbier

49) SilentTitan: Build G1 Silenttitan
	rootbier: wow. i feel like i mitigated my losses there -- this is looking much less hopeless than it was a few rounds back. :)

50) rootbier: Trade R2 Y2 Rootbier

51) SilentTitan: Trade Y1 B1 Silenttitan

52) rootbier: Sacrifice Y2 Rootbier
Discover Y2 Rootbier B3 Sluph
Move R1 Rootbier Sluph

53) SilentTitan: Discover B1 Silenttitan R3 Sol

54) rootbier: Build R2 Rootbier

55) SilentTitan: Sacrifice G3 Silenttitan
Build B1 Sol
Build B2 Sol
Build Y1 Silenttitan



21978)
Variants: "Hard time"
Started: 2012.4.7, Ended: 2012.5.4
Participants: Subhan64 (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld R1 B2 G3

2) Subhan64: Homeworld R1 B3 G3

3) Remneb: Build G1 Remneb

4) Subhan64: Build G1 Subhan64

5) Remneb: Trade G1 Y1 Remneb

6) Subhan64: Trade G1 Y1 Subhan64

7) Remneb: Build G1 Remneb

8) Subhan64: Build G1 Subhan64

9) Remneb: Trade G1 R1 Remneb

10) Subhan64: Build G1 Subhan64

11) Remneb: Build R2 Remneb

12) Subhan64: Trade G3 R3 Subhan64

13) Remneb: Discover R1 Remneb Y3 Draco

14) Subhan64: Discover G1 Subhan64 R2 Elmos_world

15) Remneb: Discover R2 Remneb Y3 Taken

16) Subhan64: Discover R3 Subhan64 B2 Smurfette

17) Remneb: Discover R2 Taken Y2 Horla

18) Subhan64: Sacrifice Y1 Subhan64
Move R3 Smurfette Subhan64

19) Remneb: Move R1 Draco Horla

20) Subhan64: Trade G1 Y1 Subhan64

21) Remneb: Move R1 Horla Subhan64



21985)
Started: 2012.4.9, Ended: 2012.4.30
Participants: krazykyle2011 (S), RogueJedi234 (N)
Winner: RogueJedi234

1) RogueJedi234: Homeworld B2 G1 Y3

2) krazykyle2011: Homeworld G3 Y2 B3

3) RogueJedi234: Build Y1 Roguejedi234

4) krazykyle2011: Build B1 Krazykyle2011

5) RogueJedi234: Trade Y1 G1 Roguejedi234

6) krazykyle2011: Build B1 Krazykyle2011

7) RogueJedi234: Discover G1 Roguejedi234 B3 Alpha

8) krazykyle2011: Trade B1 G1 Krazykyle2011

9) RogueJedi234: Build G2 Alpha

10) krazykyle2011: Discover G1 Krazykyle2011 B1 Beta

11) RogueJedi234: Trade G2 R2 Alpha

12) krazykyle2011: Build G2 Beta

13) RogueJedi234: Build G2 Alpha

14) krazykyle2011: Trade G2 Y2 Beta

15) RogueJedi234: Build Y1 Roguejedi234

16) krazykyle2011: Build G2 Beta

17) RogueJedi234: Sacrifice Y1 Roguejedi234
Move G2 Alpha Beta

18) krazykyle2011: Sacrifice Y2 Beta
Discover G2 Beta B3 Delta
Move G1 Beta Delta

19) RogueJedi234: Build G2 Beta

20) krazykyle2011: Trade G1 Y1 Delta

21) RogueJedi234: Build Y1 Roguejedi234

22) krazykyle2011: Build B1 Krazykyle2011

23) RogueJedi234: Trade Y1 R1 Roguejedi234

24) krazykyle2011: Trade B1 R1 Krazykyle2011

25) RogueJedi234: Trade G2 B2 Beta

26) krazykyle2011: Build Y1 Delta

27) RogueJedi234: Build Y1 Roguejedi234

28) krazykyle2011: Move G2 Delta Roguejedi234

29) RogueJedi234: Attack G2 Roguejedi234

30) krazykyle2011: Trade B3 G3 Krazykyle2011

31) RogueJedi234: Sacrifice Y3 Roguejedi234
Move G1 Alpha Beta
Move G1 Beta Krazykyle2011
Move G2 Beta Krazykyle2011
Catastrophe Krazykyle2011 Green

32) krazykyle2011: Trade Y1 G1 Delta

33) RogueJedi234: Trade B2 R2 Beta

34) krazykyle2011: Trade R1 G1 Krazykyle2011

35) RogueJedi234: Sacrifice Y1 Roguejedi234
Move R2 Beta Krazykyle2011

36) krazykyle2011: Build Y1 Delta

37) RogueJedi234: Sacrifice R2 Alpha
Attack G1 Krazykyle2011
Attack B1 Krazykyle2011



21986)
Variants: "Hard time"
Started: 2012.4.10, Ended: 2012.5.11
Participants: agentofchaos (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3
	dlwillson: Have a lot of fun!

2) agentofchaos: Homeworld B2 R1 G3
	agentofchaos: Thanks, you too!

3) dlwillson: B G1 Dlwillson

4) agentofchaos: Build G1 Agentofchaos

5) dlwillson: T G1 Y1 Dlwillson

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) dlwillson: B Y2 Dlwillson

8) agentofchaos: Build Y2 Agentofchaos

9) dlwillson: Discover Y1 Dlwillson G2 Field

10) agentofchaos: Discover Y2 Agentofchaos G3 Galactiphage

11) dlwillson: T Y2 R2 Dlwillson

12) agentofchaos: Build Y2 Agentofchaos

13) dlwillson: Build R1 Dlwillson

14) agentofchaos: Trade Y2 R2 Agentofchaos

15) dlwillson: Build Y2 Field

16) agentofchaos: Build Y21 Galactiphage

17) dlwillson: D Y2 Field B3 Sky

18) agentofchaos: Build Y3 Agentofchaos

19) dlwillson: B Y3 Field

20) agentofchaos: Trade Y1 B1 Agentofchaos

21) dlwillson: D R1 Dlwillson B2 Sea

22) agentofchaos: M R2 Agentofchaos Galactiphage

23) dlwillson: Move Y1 Field Sky

24) agentofchaos: Move G3 Agentofchaos Sky

25) dlwillson: Trade Y1 G1 Sky

26) agentofchaos: Build R1 Galactiphage

27) dlwillson: B G1 Sky

28) agentofchaos: Sacrifice R2 Galactiphage
Attack G1 Sky
Attack G1 Sky

29) dlwillson: T Y2 G2 Sky
C Sky G

30) agentofchaos: Trade B1 G1 Agentofchaos

31) dlwillson: B R2 Dlwillson
	dlwillson: Can we go back to the speed we had at the beginning? I'm really enjoying this game. :-)

32) agentofchaos: Build R2 Galactiphage
	agentofchaos: I'm enjoying it too. I'll try to play faster but I do have a lot going on in my life. 

33) dlwillson: Move R2 Dlwillson Field

34) agentofchaos: Move R2 Galactiphage Sea

35) dlwillson: B R3 Dlwillson

36) agentofchaos: Build R3 Galactiphage

37) dlwillson: B R3 Field

38) agentofchaos: Attack R1 Sea

39) dlwillson: S Y3 Field
M R2 Field Galactiphage
M R2 Dlwillson Field
M R2 Field Galactiphage
C Galactiphage R

40) agentofchaos: Trade R1 Y1 Sea

41) dlwillson: B R1 Dlwillson

42) agentofchaos: Build Y1 Agentofchaos

43) dlwillson: M R3 Dlwillson Sea

44) agentofchaos: Sacrifice Y1 Sea
Move R2 Sea Galactiphage

45) dlwillson: Build G1 Dlwillson

46) agentofchaos: Build Y1 Galactiphage

47) dlwillson: M G1 Dlwillson Sea

48) agentofchaos: Trade G1 B1 Agentofchaos

49) dlwillson: Build R1 Sea

50) agentofchaos: Build R2 Galactiphage

51) dlwillson: Trade R3 Y3 Sea

52) agentofchaos: Discover Y2 Galactiphage G2 Quasarville

53) dlwillson: Build G1 Dlwillson

54) agentofchaos: Trade Y3 G3 Agentofchaos

55) dlwillson: S G3 Dlwillson
B G1 Sea
B G2 Sea
B G3 Dlwillson

56) agentofchaos: Build Y2 Agentofchaos

57) dlwillson: S G3 Dlwillson
B Y3 Sea
B R2 Sea
B G3 Dlwillson

58) agentofchaos: Build Y3 Quasarville

59) dlwillson: S G3 Dlwillson
B R3 Dlwillson
B R3 Field
B G3 Dlwillson

60) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y1 Galactiphage Sea
Move Y2 Galactiphage Sea
Catastrophe Sea Y

61) dlwillson: T R3 Y3 Dlwillson
	dlwillson: Wow! The bank is looking pretty slim.
	agentofchaos: You're not leaving me much!

62) agentofchaos: Build R3 Galactiphage

63) dlwillson: S Y3 Dlwillson
M G2 Sea Galactiphage
M R1 Sea Galactiphage
D R3 Field Y3 Golden
C Galactiphage R

64) agentofchaos: Trade B1 R1 Agentofchaos

65) dlwillson: S G3 Dlwillson
B R2 Golden
B R2 Dlwillson
B G3 Dlwillson

66) agentofchaos: Move Y3 Quasarville Galactiphage

67) dlwillson: T R2 Y2 Dlwillson

68) agentofchaos: M R1 Agentofchaos Galactiphage

69) dlwillson: S Y2 Dlwillson
M R2 Golden Agentofchaos
M R3 Golden Agentofchaos

70) agentofchaos: Attack R3 Agentofchaos

71) dlwillson: S G2 Galactiphage
B R2 Agentofchaos
B R3 Sea
C Agentofchaos R

72) agentofchaos: Build G2 Agentofchaos

73) dlwillson: T R3 Y3 Sea

74) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Agentofchaos
Build Y1 Quasarville
Build Y2 Quasarville

75) dlwillson: S Y3 Sea
M G3 Dlwillson Agentofchaos
M R3 Field Dlwillson
M R3 Dlwillson Agentofchaos

76) agentofchaos: Sacrifice R1 Galactiphage
Attack R3 Agentofchaos

77) dlwillson: Sacrifice R2 Sea
Attack R3 Agentofchaos
Attack Y1 Agentofchaos

	agentofchaos: Good game, well played


21982)
Variants: "No undo"
Started: 2012.4.10, Ended: 2012.4.24
Participants: ajo (S), rootbier (N)
Winner: ajo

1) rootbier: Homeworld B1 Y2 G3

2) ajo: Homeworld G3 Y1 B3

3) rootbier: Build G1 Rootbier

4) ajo: Build B1 Ajo

5) rootbier: Trade G1 R1 Rootbier

6) ajo: Discover B1 Ajo G2 Alpha

7) rootbier: Build G1 Rootbier

8) ajo: Build B1 Ajo

9) rootbier: Build G1 Rootbier

10) ajo: Build B2 Alpha

11) rootbier: Discover G1 Rootbier B3 Plague

12) ajo: Trade B2 R2 Alpha

13) rootbier: Build G1 Plague

14) ajo: Build B2 Alpha

15) rootbier: Trade G1 Y1 Plague

16) ajo: Trade B2 Y2 Alpha

17) rootbier: Discover G1 Rootbier B3 Oxix

18) ajo: Build B2 Alpha

19) rootbier: Discover G1 Plague B2 Habl

20) ajo: Build B2 Ajo

21) rootbier: Build G1 Rootbier

22) ajo: Move B2 Ajo Habl

23) rootbier: Sacrifice G3 Rootbier
Build G2 Habl
Build G2 Oxix
Build G3 Rootbier
	ajo: I think I just screwed up.
	rootbier: meh. i do it all the time.
doesn't look unrecoverable.

24) ajo: Sacrifice R2 Alpha
Attack G2 Habl
Attack G1 Habl
	ajo: Oh, I think I'll be all right now. I was momentarily worried that you were going to build your g3 at habl, grab my blue,... I hadn't thought it all through, but I was certainly worried that my role would become totally reactive for several turns. But *now*...

25) rootbier: Sacrifice G3 Rootbier
Build R1 Rootbier
Build Y1 Plague
Build G3 Rootbier
	rootbier: no. i have a weakness in not ever wanting to leave my home 3-less. it def. limits my trickiness. 
	rootbier: you've def. got the upper hand here. have had.

26) ajo: Trade G2 Y2 Habl
	ajo: Nobody ever got fired for buying IBM, and nobody ever kicked themselves for keeping a big ship at home in lieu of trickiness.

27) rootbier: Sacrifice Y1 Plague
Move G2 Oxix Habl
	rootbier: nobody ever ever? :)

28) ajo: Trade B3 R3 Ajo

29) rootbier: Discover R1 Rootbier B3 Occupyb3

30) ajo: Build R1 Ajo

31) rootbier: Sacrifice G3 Rootbier
Build G2 Oxix
Build G3 Rootbier
Build R2 Occupyb3

32) ajo: Sacrifice R1 Ajo
Attack G2 Habl

33) rootbier: Trade R1 Y1 Occupyb3

34) ajo: Sacrifice G2 Habl
Build Y3 Habl
Build Y3 Alpha

35) rootbier: Sacrifice G2 Oxix
Build Y3 Occupyb3
Build G2 Oxix

36) ajo: Move Y2 Habl Occupyb3

37) rootbier: Sacrifice Y3 Occupyb3
Move G1 Oxix Alpha
Move G2 Oxix Alpha
Discover G1 Rootbier Y3 Commit

38) ajo: Build B3 Ajo

39) rootbier: Build G2 Alpha
Catastrophe Alpha G
	rootbier: oh decisions!

40) ajo: Sacrifice R3 Ajo
Attack R2 Occupyb3
Attack Y1 Occupyb3
Pass

41) rootbier: Build G1 Rootbier
	ajo: I like making my opponent take a tough decision. It usually means both options were terrible for him. :)
	ajo: Unsolicited advertisement break: Tell all your friends to check out my Kickstarter board game project, which launched this morning! http://kck.st/colossal-cave
	rootbier: yeah. sorry, but i def. don't appreciate unsolicited advertising.

probably if you'd just talked to me. "what kind of games do you like?" "oh yeah, i'm working on a game."
probably i'd have gotten curious and asked.

42) ajo: Build Y2 Habl
	ajo: No prob. :)

43) rootbier: Discover Y1 Plague G2 Runh
	rootbier: let's fix that
my "sorry, but" was more of an "excuse me, but"
i wasn't apologizing to you

i'm saying please don't use games with me to advertise at me

44) ajo: Build G2 Habl

45) rootbier: Sacrifice G3 Rootbier
Build G2 Commit
Build G3 Rootbier
Build Y3 Runh

46) ajo: Sacrifice Y2 Habl
Move Y2 Occupyb3 Rootbier
Move Y1 Occupyb3 Rootbier

47) rootbier: Sacrifice G3 Rootbier
Build Y2 Runh
Build R1 Rootbier
Build G3 Rootbier

48) ajo: Sacrifice R2 Occupyb3
Attack R1 Rootbier
Attack R1 Rootbier

49) rootbier: Discover G2 Commit B2 Pole

50) ajo: Sacrifice B2 Habl
Trade G1 R1 Habl
Trade R1 G1 Rootbier



21994)
Variants: "Hard time"
Started: 2012.4.14, Ended: 2012.4.18
Participants: Jesse (S), alihv (N)
Winner: Jesse

1) alihv: Home B1 G2 Y3

2) Jesse: Homeworld B1 G3 B3 *
	alihv: Hi, have fun
	Jesse: Hello, you too.

3) alihv: Build Y1 Alihv

4) Jesse: Build B1 Jesse

5) alihv: Trade Y3 B3 Alihv

6) Jesse: Trade B3 Y3 Jesse

7) alihv: Discover Y1 Alihv G3 Aa

8) Jesse: Build Y1 Jesse

9) alihv: Build Y1 Aa

10) Jesse: Discover Y1 Jesse G2 Slime

11) alihv: Move Y1 Aa Alihv

12) Jesse: Build Y2 Slime

13) alihv: Build Y2 Aa

14) Jesse: Move B1 Jesse Slime

15) alihv: M B3 Alihv Aa

16) Jesse: Build B2 Slime

17) alihv: T B3 R3 Aa

18) Jesse: Trade B2 R2 Slime

19) alihv: Sacrifice Y2 Aa
Move R3 Aa Slime
Move R3 Slime Jesse

20) Jesse: Sacrifice R2 Slime
Attack R3 Jesse
Pass

	alihv: I'm such a newbie... haven't thought of the red sacrifice :) 
nice game!
	Jesse: It's a mistake you'll make, hopefully, just the one time. :) Aways watch out for sacrifices. Their actions can be taken anywhere.


21967)
Variants: "Hard time"
Started: 2012.4.14, Ended: 2012.4.28
Participants: alihv (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) alihv: Homeworld B1 G3 Y3

3) SilentTitan: Build G1 Silenttitan
	alihv: hi, good luck!

4) alihv: B Y1 Alihv

5) SilentTitan: Trade G1 Y1 Silenttitan

6) alihv: Discover Y1 Alihv B2 Los

7) SilentTitan: Build G1 Silenttitan

8) alihv: B Y1 Alihv

9) SilentTitan: Build Y2 Silenttitan

10) alihv: Build Y2 Alihv
	SilentTitan: oh... thank you ... good luck to you as well...

11) SilentTitan: Discover Y1 Silenttitan G3 Sol

12) alihv: D Y2 Alihv G2 Laos

13) SilentTitan: Discover G1 Silenttitan Y3 Soul

14) alihv: Trade Y1 G1 Los

15) SilentTitan: Build G1 Silenttitan

16) alihv: Build G2 Los

17) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Silenttitan
Build Y3 Silenttitan

18) alihv: Sacrifice Y3 Alihv
Move Y2 Laos Sol
Move Y2 Sol Silenttitan
Discover G2 Los Y3 Laws
Catastrophe Silenttitan Y

19) SilentTitan: Build G2 Silenttitan

20) alihv: Build Y2 Alihv

21) SilentTitan: Trade G2 Y2 Silenttitan

22) alihv: Move Y1 Alihv Los

23) SilentTitan: Build G2 Silenttitan

24) alihv: B Y2 Los

25) SilentTitan: Build Y3 Silenttitan

26) alihv: S G2 Laws
B Y3 Alihv
B G2 Los

27) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Sol Los
Move Y1 Los Alihv
Discover Y1 Sol B2 Sky

28) alihv: Sacrifice Y2 Alihv
Discover G2 Los Y3 Less
Move Y1 Los Soul

29) SilentTitan: Build Y2 Alihv

30) alihv: Trade Y3 G3 Alihv

31) SilentTitan: Trade Y1 B1 Alihv

32) alihv: Trade G1 R1 Los

33) SilentTitan: Sacrifice Y2 Alihv
Move G1 Soul Sky
Move G1 Sky Alihv

34) alihv: T G3 R3 Alihv

35) SilentTitan: Sacrifice G2 Silenttitan
Build G1 Alihv
Build B1 Alihv

36) alihv: Attack G1 Alihv

37) SilentTitan: Build B3 Alihv
Catastrophe Alihv Blue

38) alihv: S G1 Alihv
B R1 Alihv

39) SilentTitan: Build G1 Alihv

	alihv: Good game. Thank you for playing.


22013)
Variants: "Hard time"
Started: 2012.4.15, Ended: 2012.4.23
Participants: sompm (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld B1 Y2 G3
	MagicJohn: Have a good game!

2) sompm: Homeworld G3 B2 Y3
	sompm: You too!

3) MagicJohn: Build G1 Magicjohn



22064)
Variants: "Hard time"
Started: 2012.4.23, Ended: 2012.5.10
Participants: Aristos (S), MagicJohn (N)
Winner: Aristos

1) MagicJohn: Homeworld Y2 B1 G3
	Aristos: Well met. Good luck.
	MagicJohn: Live long and prosper!

2) Aristos: Homeworld B3 G2 Y3

3) MagicJohn: Build G1 Magicjohn

4) Aristos: Build Y1 Aristos

5) MagicJohn: Discover G1 Magicjohn B3 Firstbase
	Aristos: Sorry for taking so long on the opening moves... it's been a crazy week at work, and I've been coming home late. 
	MagicJohn: Not to worry.  Life can get a tad complicated from time to time....

6) Aristos: Build Y1 Aristos

7) MagicJohn: Build G1 Magicjohn

8) Aristos: Discover Y1 Aristos Y1 Breakout

9) MagicJohn: Build G1 Firstbase

10) Aristos: Build Y2 Aristos

11) MagicJohn: Trade G1 R1 Magicjohn

12) Aristos: Sacrifice Y1 Aristos
Discover Y2 Aristos Y1 Illium

13) MagicJohn: Build G1 Magicjohn

14) Aristos: Build Y2 Aristos

15) MagicJohn: Sacrifice G3 Magicjohn
Build G2 Firstbase
Build G2 Magicjohn
Build G3 Magicjohn

16) Aristos: Build Y3 Aristos

17) MagicJohn: Trade G3 Y3 Magicjohn

18) Aristos: Trade Y2 R2 Aristos

19) MagicJohn: Trade G2 Y2 Firstbase

20) Aristos: Discover Y2 Illium G3 Planum

21) MagicJohn: Move Y3 Magicjohn Planum

22) Aristos: Build Y1 Planum

23) MagicJohn: Sacrifice R1 Magicjohn
Attack Y2 Planum

24) Aristos: Move Y1 Breakout Planum
Catastrophe Planum Yellow

25) MagicJohn: Discover G1 Firstbase Y2 Secondbase
	Aristos: So... we meet again, MagicJohn. I see your ship has thrust itself into my space. Do not think you can sneak past my defenses so easily!
	MagicJohn: Why can't we all just get along?????

26) Aristos: Build R1 Aristos
	MagicJohn: And ignore minor indiscretions??  

27) MagicJohn: Build G2 Secondbase
	Aristos: I thought about your request to just get along, and decided you were right. So I flew in to sign a peace treaty, completely forgetting about the physics of catastrophes. My government expresses profound sorrow for your loss. Strangely, both of my ships were piloted by computer... the crew seems to have disembarked early for some reason.

28) Aristos: Sacrifice Y3 Aristos
Discover Y3 Aristos R1 Warpath
Discover Y3 Warpath R3 Warpath2
Move Y3 Warpath2 Magicjohn

29) MagicJohn: Move Y2 Firstbase Magicjohn

30) Aristos: Sacrifice R2 Aristos
Attack G2 Magicjohn
Attack Y2 Magicjohn

31) MagicJohn: Trade G1 B1 Magicjohn

32) Aristos: Trade Y2 R2 Magicjohn
	MagicJohn: First invitation, then visit! There are legitimate reasons for etiquette protocols to be observed. At a bare minimum, the soup will have to be watered down.... It's this kind of behavior that leads to xenophobia and general mistrust between peoples. SHAME, SHAME, SHAME! 

33) MagicJohn: Sacrifice G1 Secondbase
Build B1 Magicjohn
	Aristos: I am ashamed. I hope you'll forgive my barbaric manners.
	MagicJohn: Can't see any way out of this mess.  Guess it's back to primordial ooze for a rebirth in some distant part of the universe.   I do, however, get a little stronger after each extinction.  Better put on some soup. 
P.S.  Good game. Thanks for the lesson.  MJ

34) Aristos: Sacrifice R2 Magicjohn
Attack B1 Magicjohn
Attack B1 Magicjohn

	Aristos: Good game.


22005)
Started: 2012.4.24, Ended: 2012.5.5
Participants: rootbier (S), ts52 (N)
Winner: rootbier

1) ts52: Homeworld Y1 B2 G3

2) rootbier: Homeworld B1 Y3 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) rootbier: Build G1 Rootbier

5) ts52: Trade G1 B1 Ts52

6) rootbier: Discover G1 Rootbier B2 Oxies

7) ts52: Discover B1 Ts52 G3 Kermit

8) rootbier: Build G1 Rootbier

9) ts52: Build B1 Kermit

10) rootbier: Build G1 Oxies
	rootbier: Sorry, I missed your well-wishing below.

Thanks. :)
Have fun!

11) ts52: Build G2 Ts52

12) rootbier: Sacrifice G3 Rootbier
Build G2 Rootbier
Build G2 Oxies
Build G3 Rootbier

13) ts52: Build B2 Kermit

14) rootbier: Trade G2 Y2 Oxies

15) ts52: Trade G2 Y2 Ts52

16) rootbier: Trade G2 R2 Rootbier

17) ts52: Trade B2 R2 Kermit

18) rootbier: Discover G1 Oxies Y3 Comswin

19) ts52: Build G2 Ts52

20) rootbier: Sacrifice G3 Rootbier
Build G2 Comswin
Build G2 Oxies
Build G3 Rootbier

21) ts52: Discover G2 Ts52 B3 Grover

22) rootbier: Sacrifice G3 Rootbier
Build Y1 Oxies
Build Y1 Oxies
Build G3 Rootbier

23) ts52: Move Y2 Ts52 Kermit

24) rootbier: Sacrifice Y2 Oxies
Discover Y1 Oxies B3 Plesj
Move G1 Oxies Plesj

25) ts52: Discover R2 Kermit Y2 Zoe

26) rootbier: Sacrifice G3 Rootbier
Build Y2 Oxies
Build Y3 Plesj
Build G3 Plesj

27) ts52: Build B2 Kermit

28) rootbier: Sacrifice Y3 Plesj
Move G1 Comswin Ts52
Move G2 Comswin Ts52
Move G1 Plesj Ts52
Catastrophe Ts52 G

	ts52: Thanks for the game. Should've seen that coming.


22020)
Variants: "Hard time"
Started: 2012.4.24, Ended: 2012.4.24
Participants: SilentTitan (S), rentabuddha (N)
Winner: SilentTitan



22083)
Variants: "Hard time"
Started: 2012.5.1, Ended: 2012.5.6
Participants: Krooze (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) Krooze: Homeworld G2 B3 Y3

3) SilentTitan: Build G1 Silenttitan

4) Krooze: Build Y1 Krooze

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Krooze: Discover Y1 Krooze G1 Corneria

7) SilentTitan: Build G1 Silenttitan

8) Krooze: Build Y1 Krooze

9) SilentTitan: Build Y2 Silenttitan

10) Krooze: Build Y2 Krooze

11) SilentTitan: Discover Y1 Silenttitan G3 Sol

12) Krooze: Trade Y1 B1 Krooze

13) SilentTitan: Discover G1 Silenttitan Y3 Soul

14) Krooze: Build B1 Krooze

15) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Sol Corneria
Move Y1 Corneria Krooze

16) Krooze: Sacrifice B1 Krooze
Trade Y3 R3 Krooze

17) SilentTitan: Discover Y1 Krooze G1 Sole

18) Krooze: Build B1 Krooze

19) SilentTitan: Build G2 Silenttitan

20) Krooze: Trade B1 R1 Krooze

21) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Soul
Build G3 Silenttitan
Build G3 Silenttitan

22) Krooze: Move R1 Krooze Sole

23) SilentTitan: Trade G3 Y3 Silenttitan

24) Krooze: Attack Y1 Sole

25) SilentTitan: Sacrifice G3 Silenttitan
Build G3 Silenttitan
Build G3 Silenttitan
Build G3 Soul

26) Krooze: Move Y1 Corneria Soul

27) SilentTitan: Sacrifice Y3 Silenttitan
Discover G1 Soul Y1 Tic
Discover G2 Soul G1 Tac
Discover G3 Silenttitan Y3 Toe

28) Krooze: Build Y2 Krooze

29) SilentTitan: Trade G3 Y3 Silenttitan

30) Krooze: Move R1 Sole Soul

31) SilentTitan: Trade G2 R2 Silenttitan

32) Krooze: Move R3 Krooze Tic

33) SilentTitan: Sacrifice G3 Toe
Build G2 Soul
Build G3 Tic
Build G3 Tic

34) Krooze: Attack G3 Tic

35) SilentTitan: Sacrifice R2 Silenttitan
Attack R3 Tic South
Attack G3 Tic South

	Krooze: Ah, so you CAN take a larger ship with a smaller ship's sacrifice.  I must have been inputting the command incorrectly when I tried.  Really wish the UI was more streamlined.
	Krooze: I apologize, but I can't seem to figure this out.  What command would I type to sacrifice my r1 to take your g3?
	Krooze: Aaaaaah, I think I get it now.  You could only attack my r3 because of your g3.  This is my first game, as you can tell.
	Krooze: Thanks for an educational game.  I hope to play you again.
	SilentTitan: Actually, you played so well.. that I had no idea this was your first game.  Truly that is a raity. had I known this was your first game, I would have given you the option of pulling back the R3 once you failed to do so. 

You may challenge me again via my standing challenge.  That is 90% of the reason it is there 
	Krooze: Thanks for the kind words!  I'll be sure to challenge you again soon.  I enjoyed the game a lot.

My secret (if you can call it that) is having physical pieces set up at home, so I can rearrange the worlds in a way that makes more sense to me spatially.  If I'd been relying solely on the graphic representation here, I would have been lost.  Besides, having pieces set up makes a game (any game) feel more "real" to me.

For that reason, I'm limited to one game at a time, at least until I get more comfortable with the game.  Currently playing against ts52, and I'll hopefully be a more worthy opponent next time we meet.


22127)
Variants: "Hard time"
Started: 2012.5.2, Ended: 2012.5.30
Participants: ts52 (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) ts52: Homeworld Y1 B3 G3

3) SilentTitan: Build G1 Silenttitan
	ts52: Have a good game!

4) ts52: Build G1 Ts52
	SilentTitan: thank you and to you as well.

5) SilentTitan: Trade G1 R1 Silenttitan

6) ts52: Trade G3 R3 Ts52

7) SilentTitan: Build G1 Silenttitan

8) ts52: Build R1 Ts52

9) SilentTitan: Trade G1 Y1 Silenttitan

10) ts52: Build R2 Ts52

11) SilentTitan: Build R2 Silenttitan

12) ts52: Discover R2 Ts52 Y2 Zoe

13) SilentTitan: Discover R2 Silenttitan B3 Sol

14) ts52: Trade R3 G3 Ts52

15) SilentTitan: Trade R2 Y2 Sol

16) ts52: Build R2 Ts52

17) SilentTitan: Build G1 Silenttitan

18) ts52: Trade R2 Y2 Ts52

19) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Silenttitan
Build Y3 Silenttitan
Build Y3 Sol

20) ts52: Discover Y2 Ts52 G2 Kermit

21) SilentTitan: Move Y3 Sol Kermit

22) ts52: Discover Y2 Kermit G3 Robin

23) SilentTitan: Trade Y3 G3 Silenttitan

24) ts52: Build Y3 Robin

25) SilentTitan: Sacrifice Y2 Sol
Move Y1 Silenttitan Robin
Move Y1 Silenttitan Robin
Catastrophe Robin Yellow

26) ts52: Trade G1 Y1 Ts52

27) SilentTitan: Trade G1 Y1 Silenttitan

28) ts52: Build G1 Ts52

29) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Kermit
Build Y2 Silenttitan
Build Y3 Silenttitan

30) ts52: Build R2 Ts52

31) SilentTitan: Move Y3 Kermit Ts52

32) ts52: Attack Y3 Ts52

33) SilentTitan: Move Y2 Kermit Ts52
Catastrophe Ts52 Yellow

34) ts52: Trade R2 Y2 Ts52

35) SilentTitan: Trade Y1 G1 Silenttitan

36) ts52: Build R2 Ts52

37) SilentTitan: Trade R1 G1 Silenttitan

38) ts52: Move G1 Ts52 Zoe

39) SilentTitan: Discover Y2 Silenttitan R3 Rain

40) ts52: Discover R2 Zoe Y3 Bigbird

41) SilentTitan: Trade G1 B1 Silenttitan

42) ts52: Build Y1 Ts52

43) SilentTitan: Sacrifice B1 Silenttitan
Trade Y2 R2 Rain

44) ts52: Move G1 Zoe Bigbird

45) SilentTitan: Build G1 Silenttitan

46) ts52: Build G2 Bigbird

47) SilentTitan: Trade G1 B1 Silenttitan

48) ts52: Discover R2 Ts52 B2 Gonzo

49) SilentTitan: Build G1 Silenttitan

50) ts52: Sacrifice G2 Bigbird
Build R1 Ts52
Build R3 Gonzo

51) SilentTitan: Discover G1 Silenttitan B3 Sky

52) ts52: Build R3 Bigbird

53) SilentTitan: Build G2 Silenttitan

54) ts52: Trade R3 G3 Gonzo

55) SilentTitan: Trade G1 B1 Sky

56) ts52: Build R3 Gonzo

57) SilentTitan: Trade G1 B1 Silenttitan

58) ts52: Sacrifice Y1 Ts52
Move R3 Gonzo Sky

59) SilentTitan: Sacrifice Y3 Silenttitan
Move B1 Silenttitan Ts52
Move B1 Silenttitan Ts52
Discover B1 Sky Y2 Sol

60) ts52: Sacrifice R2 Bigbird
Attack B1 Ts52
Attack B1 Ts52

61) SilentTitan: Move B1 Sol Ts52
Catastrophe Ts52 Blue

	ts52: Thanks for the game!
	SilentTitan: Thank you.


22114)
Started: 2012.5.6, Ended: 2012.5.10
Participants: Krooze (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Krooze: Homeworld B3 Y1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	Krooze: Thanks!

4) Krooze: Build G1 Krooze

5) ts52: Trade G1 Y1 Ts52

6) Krooze: Build G1 Krooze

7) ts52: Build Y2 Ts52

8) Krooze: Trade G1 R1 Krooze
	Krooze: *slaps forehead*

9) ts52: Trade Y2 R2 Ts52

10) Krooze: Trade G1 B1 Krooze

11) ts52: Build Y2 Ts52

12) Krooze: Build B1 Krooze

13) ts52: Trade Y2 B2 Ts52

14) Krooze: Discover B1 Krooze B2 Colle

15) ts52: Discover B2 Ts52 G3 Kermit

16) Krooze: Sacrifice G3 Krooze
Build B1 Colle
Build B3 Krooze
Build R1 Krooze

17) ts52: Build B3 Kermit

18) Krooze:
Trade B1 R1 Colle

19) ts52: Move Y1 Ts52 Kermit

20) Krooze: Trade B3 G3 Krooze

21) ts52: Build Y2 Kermit

22) Krooze: Trade B1 G1 Colle

23) ts52: Move Y2 Kermit Colle

24) Krooze: Build R2 Colle

25) ts52: Sacrifice R2 Ts52
Attack R2 Colle
Attack R1 Colle

26) Krooze: Move R1 Krooze Colle

27) ts52: Sacrifice R2 Colle
Attack R1 Colle
Attack G1 Colle

28) Krooze: Build R2 Krooze

29) ts52: Build Y2 Kermit

30) Krooze: Trade R2 Y2 Krooze

31) ts52: Build Y3 Colle

32) Krooze: Sacrifice Y2 Krooze
Move R1 Krooze Colle
Move R1 Colle Kermit

33) ts52: Sacrifice R1 Colle
Attack R1 Kermit

34) Krooze: Build G1 Krooze

35) ts52: Move Y3 Colle Krooze

36) Krooze: Trade G1 R1 Krooze

37) ts52: Sacrifice R1 Kermit
Attack R1 Krooze

	Krooze: Good game!  Thanks for the lesson!
	ts52: Thanks for the game.


22158)
Variants: "Hard time"
Started: 2012.5.10, Ended: 2012.6.12
Participants: Aristos (S), goulo (N)
Winner: Aristos

1) goulo: Homeworld G3 B2 Y3

2) Aristos: Homeworld G1 B2 Y3
	goulo: hi, have fun!

3) goulo: Build Y1 Goulo
	Aristos: Well met.

4) Aristos: Build Y1 Aristos

5) goulo: Trade Y1 G1 Goulo

6) Aristos: Trade Y1 G1 Aristos

7) goulo: Build G2 Goulo

8) Aristos: Discover G1 Aristos Y3 Freedom

9) goulo: Discover G2 Goulo Y1 Citroneto

10) Aristos: Build Y1 Aristos

11) goulo: Trade G1 R1 Goulo

12) Aristos: Trade Y1 R1 Aristos

13) goulo: Build Y1 Goulo

14) Aristos: Build G1 Freedom

15) goulo: Build G2 Citroneto

16) Aristos: Discover G1 Freedom B1 Change

17) goulo: Move G2 Citroneto Freedom

18) Aristos: Build G2 Change

19) goulo: Build G3 Citroneto

20) Aristos: Build G3 Freedom

21) goulo: Sacrifice G2 Citroneto
Build G2 Freedom
Build R1 Goulo
Catastrophe Freedom G

22) Aristos: Build R2 Aristos

23) goulo: Move R1 Goulo Citroneto

24) Aristos: Discover R2 Aristos Y3 Transport

25) goulo: Build R2 Citroneto

26) Aristos: Build Y1 Aristos

27) goulo: Trade Y1 B1 Goulo

28) Aristos: Discover Y1 Aristos G3 Multiplier

29) goulo: Move R2 Citroneto Multiplier

30) Aristos: Move Y1 Multiplier Change

31) goulo: Sacrifice G3 Citroneto
Build R2 Goulo
Build R3 Multiplier
Build R3 Citroneto

32) Aristos: Sacrifice G1 Change
Build R3 Transport

33) goulo: Sacrifice Y3 Goulo
Move R1 Goulo Citroneto
Move R1 Citroneto Transport
Move R1 Citroneto Transport
Catastrophe Transport R

34) Aristos: Build G1 Change

35) goulo: Trade R2 Y2 Goulo

36) Aristos: Trade G1 B1 Change

37) goulo: Move R3 Citroneto Goulo

38) Aristos: Build R1 Aristos

39) goulo: Build Y1 Goulo

40) Aristos: Build G1 Change

41) goulo: Discover Y1 Goulo R1 Rubeneto
	Aristos: No way out. Good game.

42) Aristos: Move R1 Aristos Multiplier
	goulo: Thanks, though it's being tricky to actually close the deal! :)

43) goulo: Sacrifice Y1 Rubeneto
Move R3 Multiplier Change

44) Aristos: Sacrifice G2 Change
Build B2 Change
Build R1 Multiplier

45) goulo: Sacrifice Y2 Goulo
Move B1 Goulo Change
Discover R3 Change Y3 Citronego
Catastrophe Change B

46) Aristos: Build Y1 Aristos

47) goulo: Build R2 Goulo

48) Aristos: Build R2 Aristos

49) goulo: Trade R2 G2 Goulo

50) Aristos: Build Y1 Aristos

51) goulo: Build G1 Goulo

52) Aristos: Sacrifice Y1 Aristos
Discover R1 Multiplier Y1 Escape

53) goulo: Trade G2 Y2 Goulo

54) Aristos: Build R2 Multiplier

55) goulo: Build R3 Goulo

56) Aristos: Attack R2 Multiplier

57) goulo: Sacrifice Y2 Goulo
Move R3 Goulo Escape
Move R3 Escape Multiplier
Catastrophe Multiplier R

58) Aristos: Build Y1 Aristos

59) goulo: Trade R3 Y3 Goulo

60) Aristos: Discover Y1 Aristos G3 Spawn

61) goulo: Build Y2 Goulo

62) Aristos: Build Y2 Spawn

63) goulo: Discover Y2 Goulo G1 Smeraldeto

64) Aristos: Move Y2 Spawn Smeraldeto

65) goulo: Move Y2 Smeraldeto Spawn

66) Aristos: Build Y2 Smeraldeto

67) goulo: Build G2 Goulo
	Aristos: I see you're trying a new security measure: I can't invade what I cannot spell!

68) Aristos: Move Y2 Smeraldeto Goulo
	goulo: Haha! :) I pretty much always use Esperanto star names. :)

69) goulo: Sacrifice R3 Citronego
Attack Y1 Spawn
Attack Y2 Goulo
Pass

70) Aristos: Build Y3 Smeraldeto

71) goulo: Trade Y2 R2 Goulo

72) Aristos: Discover Y1 Aristos B3 Morph

73) goulo: Discover Y1 Spawn B1 Safireto

74) Aristos: Build Y2 Aristos
	Aristos: I do wish this had a way to "show me what the board would look like if I made move X" without actually making the move. I am too visual sometimes to judge the right move without actually seeing it. 

75) goulo: Move G1 Goulo Safireto

76) Aristos: Sacrifice Y2 Smeraldeto
Move Y2 Aristos Spawn
Move Y2 Spawn Safireto

77) goulo: Build Y2 Spawn

78) Aristos: Sacrifice R2 Aristos
Attack G1 Safireto
Attack Y1 Safireto

79) goulo: Move G2 Goulo Escape

80) Aristos: Build G2 Safireto

81) goulo: Build R1 Goulo

82) Aristos: Build R2 Aristos

83) goulo: Sacrifice R1 Goulo
Attack R1 Escape

84) Aristos: Discover Y1 Morph B1 Shift

85) goulo: Build R1 Goulo

86) Aristos: Move Y3 Smeraldeto Spawn

87) goulo: Sacrifice Y2 Spawn
Discover Y2 Spawn R2 Rubeno
Discover R1 Goulo B1 Mirteleto

88) Aristos: Trade Y1 G1 Shift

89) goulo: Sacrifice G2 Escape
Build R3 Goulo
Build R3 Mirteleto

90) Aristos: Build G2 Shift

91) goulo: Move R3 Goulo Safireto

92) Aristos: Sacrifice Y2 Safireto
Move G2 Safireto Goulo
Move G1 Safireto Goulo

93) goulo: Attack G2 Goulo

94) Aristos: Build G2 Goulo
Catastrophe Goulo Green

95) goulo: Attack Y1 Safireto

96) Aristos: Trade G2 B2 Shift

97) goulo: Trade R3 B3 Safireto

98) Aristos: Build B3 Shift

99) goulo: Sacrifice Y2 Rubeno
Move B3 Safireto Goulo
Move B3 Goulo Shift
Catastrophe Shift B

100) Aristos: Build R2 Aristos

101) goulo: Discover R1 Escape G3 Smeraldego

102) Aristos: Move R2 Aristos Smeraldego

103) goulo: Build R3 Smeraldego

104) Aristos: Build R3 Smeraldego
Catastrophe Smeraldego Red

105) goulo: Discover Y1 Safireto G3 Smeraldego

106) Aristos: Move R2 Aristos Smeraldego

107) goulo: Move Y1 Smeraldego Mirteleto

108) Aristos: Build Y1 Spawn

109) goulo: Trade R1 G1 Mirteleto

110) Aristos: Discover Y1 Spawn B1 Metasticize

111) goulo: Move R3 Mirteleto Smeraldego

112) Aristos: Build R1 Smeraldego

113) goulo: Sacrifice Y1 Mirteleto
Move R3 Smeraldego Mirteleto

114) Aristos: Trade Y1 G1 Metasticize

115) goulo: Build G2 Mirteleto
	goulo: blue, green... all the same thing...! :)

116) Aristos: Build G2 Metasticize
	Aristos: Really? All the same thing? Excellent... that will make causing a catastrophe in Mirteleto much easier! :-) 

117) goulo: Trade G1 Y1 Mirteleto

118) Aristos: Trade G1 B1 Metasticize

119) goulo: Build G1 Mirteleto
	goulo: well that last couple of moves didn't work out the way I wanted, duh...
	Aristos: If it's any consolation, I have no idea how to press my advantage. My ships are all the wrong colors in all the wrong places.

120) Aristos: Build B2 Metasticize

121) goulo: Trade G2 Y2 Mirteleto
	goulo: It often feels that way in Homeworlds!

122) Aristos: Build Y1 Aristos

123) goulo: Discover Y1 Mirteleto G3 Jadego

124) Aristos: Sacrifice Y1 Aristos
Discover B2 Metasticize R3 Blood

125) goulo: Move R3 Mirteleto Blood

126) Aristos: Sacrifice B2 Blood
Trade R2 B2 Smeraldego
Trade Y3 B3 Spawn

127) goulo: Build Y1 Mirteleto

128) Aristos: Sacrifice Y3 Aristos
Move B1 Metasticize Goulo
Move B2 Smeraldego Goulo
Move B3 Spawn Goulo
Catastrophe Goulo Blue

	goulo: and so the end is near... well done!
	Aristos: Thanks. An excellent game.


22165)
Variants: "Hard time"
Started: 2012.5.11, Ended: 2012.6.3
Participants: TwoShort (S), dlwillson (N)
Winner: TwoShort

1) dlwillson: Homeworld B3 Y1 G3 Dlwillson

2) TwoShort: Homeworld R1 B2 G3
	dlwillson: Long time, no play. How've you been?

3) dlwillson: B G1 Dlwillson

4) TwoShort: Build G1 Twoshort
	TwoShort: Howdy.  I've been well, you?

5) dlwillson: T G1 Y1 Dlwillson

6) TwoShort: Trade G1 Y1 Twoshort
	dlwillson: Pretty good. Got a better job. Got married. Ran pyramids at the last 3 or 4 cons by DGA. Do you ever make it to Genghis or Tacticon?

7) dlwillson: Build Y2 Dlwillson

8) TwoShort: Build Y2 Twoshort
	dlwillson: Let's keep playing really fast and chatting a lot. You don't need to worry about this game. I'm easy to beat. :-)

9) dlwillson: D Y1 Dlwillson B2 Sky
	TwoShort: I basically never make it to cons.  I've thought about coming down when you've mentioned it on the icehouse list, but it hasn't worked out so far.  Glad to hear life is treating you well.

10) TwoShort: Discover Y1 Twoshort B3 Borbor

11) dlwillson: B G1 Dlwillson
	dlwillson: Pretty funny. I ~ just ~ said let's play fast, and then I delay the game 3 hours... :-)

12) TwoShort: Build G1 Twoshort

13) dlwillson: T G1 R1 Dlwillson

14) TwoShort: Build Y2 Twoshort

15) dlwillson: D Y2 Dlwillson G2 Field

16) TwoShort: Trade Y2 R2 Twoshort

17) dlwillson: B G1 Dlwillson

18) TwoShort: Discover G1 Twoshort Y3 Yoyodyne

19) dlwillson: Sacrifice G3 Dlwillson
Build G1 Dlwillson
Build Y2 Field
Build Y3 Sky

20) TwoShort: Build G2 Twoshort
	dlwillson: Sorry for the delay, Twoshort. You're a dangerous man, and this board is interesting. I'm going to set up some plastic before I take my turn. I wonder when there will be a better Homeworlds computer program...
	dlwillson: Well, Heck, real life is too busy for the setting up of pointy plastic pyramids. Instead, it's a all pointy priorities. Pfah...
	dlwillson: I have a terribly risky move that I want to do, just to see what happens. I'd rather have looked it over in 3D first, but oh well. Let's see how this pans out. Worst case, I'll get to have a game with Tripp before I play you again. Best case, I get a lead and maybe win.

21) dlwillson: T Y1 R1 Sky

22) TwoShort: Sacrifice G2 Twoshort
Build Y1 Twoshort
Build Y3 Borbor

23) dlwillson: Build R2 Dlwillson

24) TwoShort: Sacrifice Y2 Twoshort
Move Y3 Borbor Sky
Move Y3 Sky Dlwillson

	dlwillson: Excellent move! Give me a minute to see if I can slip out of the noose.
	TwoShort: I tend to be wrong when I comment on games, but: I think you can make me take 4 more moves.
	dlwillson: Good game. I'll give everyone else a day or three to challenge before I try again.


22194)
Variants: "Hard time"
Started: 2012.5.15, Ended: 2012.5.31
Participants: ajo (S), Gidaio (N)
Winner: ajo

1) Gidaio: Homeworld G1 B3 Y3

2) ajo: Homeworld R3 B2 G3

3) Gidaio: Build Y1 Gidaio

4) ajo: Build G1 Ajo

5) Gidaio: Trade Y1 B1 Gidaio

6) ajo: Trade G1 Y1 Ajo

7) Gidaio: Discover B1 Gidaio G2 Pandora

8) ajo: Build G1 Ajo

9) Gidaio: Build B1 Pandora

10) ajo: Build G1 Ajo

11) Gidaio: Trade B1 R1 Pandora

12) ajo: Discover G1 Ajo Y1 Alpha

13) Gidaio: Build B1 Pandora

14) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Alpha
Build G3 Ajo

15) Gidaio: Trade B1 Y1 Pandora

16) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Ajo
Build Y2 Ajo

17) Gidaio: Build B1 Pandora
	Gidaio: Is it terribly obvious that I don't really have a strategy?

18) ajo: Move G2 Alpha Pandora
	ajo: Heh. Not having a strategy is okay, but you need to recognize *my* strategy and do something to counteract it. Right now you're letting me have the run of the board, which is not going to go well for you. :)
	ajo: Actually, even without a strategy, "build y2 Gidaio" would have been markedly better for you than "build b1 Pandora". When in doubt, go for material.

19) Gidaio: Move R1 Pandora Alpha
	Gidaio: Well, see, with "build y2 Gidaio" you could have factoried a bunch of yellows, then sacrificed them and moved a bunch of greens into my homeworld, then triggered a catastrophe. This game has been going bad for me from the start.

20) ajo: Trade G3 R3 Ajo

21) Gidaio: Attack G1S Alpha

22) ajo: Sacrifice R3 Ajo
Attack R1 Alpha
Attack B1 Pandora
Attack B1 Pandora

23) Gidaio: Build Y2 Gidaio
	Gidaio: I always forget that people can do that!

24) ajo: Attack G1 Alpha

25) Gidaio: Trade Y3 G3 Gidaio

26) ajo: Sacrifice R1 Alpha
Attack Y1 Pandora

27) Gidaio: Trade Y2 R2 Gidaio

28) ajo: Build G3 Pandora

29) Gidaio: Build R1 Gidaio

30) ajo: Trade G3 R3 Pandora

31) Gidaio: Trade R2 Y2 Gidaio

32) ajo: Sacrifice Y2 Ajo
Move B1 Pandora Gidaio
Move G2 Pandora Gidaio

33) Gidaio: Attack G2S Gidaio

34) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build B1 Gidaio
Build B2 Gidaio
Catastrophe Gidaio Blue
	Gidaio: More than likely, I'm going to lose...

	Gidaio: Wait, was it my turn?
	ajo: Heh. Apparently so?


22139)
Started: 2012.5.23, Ended: 2012.7.11
Participants: Werebear (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3
	Werebear: Hullo, mind if I play?

2) Werebear: Homeworld G3 B2 Y3
	ts52: Not at all, have a good game!

3) ts52: Build G1 Ts52
	Werebear: Thanks, you too. I'll see what I can figure out, here... how does that there widget work? Oh. Yeah.
	Werebear: Oh, and... We Come In Peace. (playing WCIP music to soothe the audiences)

4) Werebear: Build Y1 Werebear
	ts52: Widget, what widget?

5) ts52: Trade G1 Y1 Ts52
	Werebear: The one over... oh... your people don't have a widget. Hmmm. Perhaps you need some?

6) Werebear: Trade Y1 R1 Werebear

7) ts52: Build G1 Ts52
	ts52: What's this weapons technology you appear to be developing over there, hmmmm? What happened to WCIP?

8) Werebear: Discover R1 Werebear G1 Widget
	Werebear: I dunno. That's what happened when I twiddled the widget. Too bad you don't have one. Oh. Wait. Why is my pretty little shipster disappearing?

9) ts52: Trade G1 R1 Ts52

10) Werebear: Build Y1 Werebear
	ts52: Oooooh, you mean _that_ widget.

11) ts52: Discover Y1 Ts52 B3 Grover

12) Werebear: Build Y2 Werebear

13) ts52: Build G1 Ts52
	Werebear: Welcome to the Universe! We got here first, though, so you'll have to pay us the standard fees. Just stuff some gorleks in an envelope and send it over to us. Thanks!

14) Werebear: Move Y2 Werebear Widget
	ts52: You keep to your systems and we'll keep to ours. No gorlek exchange necessary.

15) ts52: Sacrifice G1 Ts52
Build Y2 Grover
	Werebear: Does that mean you don't want us to come visit you? We hear that grover is just loverly this time of year... what with the Pernicious Snids and all.

16) Werebear: Trade Y1 B1 Werebear

17) ts52: Trade Y1 G1 Grover

18) Werebear: Build Y1 Werebear

19) ts52: Build G1 Ts52

20) Werebear: Move B1 Werebear Widget

21) ts52: Build G2 Grover

22) Werebear: Trade Y2 G2 Widget

23) ts52: Trade G2 R2 Grover

24) Werebear: Move Y1 Werebear Widget

25) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G2 Grover
Build G3 Ts52
	Werebear: We apologize for our delays. It is Festival time on Widget, so everybody is partying nonstop.

26) Werebear: Discover G2 Widget Y3 Security

27) ts52: Trade G3 R3 Ts52

28) Werebear: Build G3 Security

29) ts52: Sacrifice Y2 Grover
Move G1 Ts52 Security
Move G2 Ts52 Security
Catastrophe Security Green

30) Werebear: Build Y1 Werebear
	Werebear: Wow! What just happened?

31) ts52: Trade G2 Y2 Grover

32) Werebear: Build Y2 Widget
	ts52: Some sort of catastrophic system failure in the security system.

33) ts52: Build G1 Grover

34) Werebear: Discover Y1 Widget G2 Winkle

35) ts52: Build G2 Grover

36) Werebear: Build B1 Widget

37) ts52: Move G1 Grover Ts52

38) Werebear: Move B1 Widget Winkle

39) ts52: Build G2 Ts52
	Werebear: Sorry (again). I was traveling and meant to submit orders, but somehow never found the time. I'm back for a bit! Game on!
	ts52: No problem.

40) Werebear: Build B1 Widget

41) ts52: Build G3 Ts52

42) Werebear: Build B2 Winkle

43) ts52: Build G3 Grover

44) Werebear: Build B3 Widget

45) ts52: Move G3 Grover Winkle

46) Werebear: Discover B2 Winkle Y3 Wecurity

47) ts52: Sacrifice R2 Grover
Attack B1 Winkle
Attack Y1 Winkle

48) Werebear: Trade B3 R3 Widget

49) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Winkle
Build Y3 Grover

50) Werebear: Move B1 Widget Wecurity

51) ts52: Move R3 Ts52 Wecurity

52) Werebear: Build B3 Widget

53) ts52: Attack B2 Wecurity

54) Werebear: Discover B3 Widget R3 Wonder

55) ts52: Build B3 Winkle

56) Werebear: Sacrifice Y2 Widget
Move B1 Wecurity Winkle
Move B1 Widget Winkle
Catastrophe Winkle B

57) ts52: Discover Y2 Grover B1 Gonzo

58) Werebear: Trade Y1 R1 Werebear

59) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Gonzo
Build Y2 Gonzo

60) Werebear: Build R2 Werebear

61) ts52: Sacrifice Y3 Grover
Move Y1 Gonzo Werebear
Move Y2 Gonzo Werebear
Move Y2 Gonzo Werebear
Catastrophe Werebear Yellow

62) Werebear: Trade R1 Y1 Werebear

63) ts52: Sacrifice Y2 Winkle
Move G3 Winkle Widget
Move G3 Widget Werebear

64) Werebear: Sacrifice Y1 Werebear
Move B3 Wonder Ts52
	Werebear: sacrifice y1
move r3 Widget ts52

65) ts52: Sacrifice R1 Ts52
Attack R2 Werebear
	Werebear: At last, we meet!
Good game - you locked me out of green quite nicely!
It was nice playing with you!
	ts52: Thank you for the game good sir. It was fun playing against you again. Now that I finally remember who you are, I hope everything is going well with you, and look forward to our next match. :)



22248)
Variants: "Hard time"
Started: 2012.5.26, Ended: 2012.6.21
Participants: MagicJohn (S), Subhan64 (N)
Winner: MagicJohn

1) Subhan64: Pass

2) MagicJohn: Pass

3) Subhan64: Pass

4) MagicJohn: Homeworld R1 B2 G3

5) Subhan64: Homeworld R1 B3 G3

6) MagicJohn: Build G1 Magicjohn

7) Subhan64: Build G1 Subhan64

8) MagicJohn: Trade G1 Y1 Magicjohn

9) Subhan64: Trade G1 Y1 Subhan64

10) MagicJohn: Build G1 Magicjohn

11) Subhan64: Build G1 Subhan64

12) MagicJohn: Trade G1 B1 Magicjohn

13) Subhan64: Build G1 Subhan64

14) MagicJohn: Build B1 Magicjohn

15) Subhan64: Discover G1 Subhan64 B2 Kermit

16) MagicJohn: Discover B1 Magicjohn G3 Never



22239)
Started: 2012.5.31, Ended: 2012.7.3
Participants: agentofchaos (S), ts52 (N)
Winner: agentofchaos

1) ts52: Homeworld Y1 B2 G3

2) agentofchaos: Homeworld R3 B2 G3
	ts52: Have a good game!
	agentofchaos: You too!

3) ts52: Build G1 Ts52

4) agentofchaos: Build G1 Agentofchaos

5) ts52: Discover G1 Ts52 B3 Gonzo

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) ts52: Build G1 Ts52

8) agentofchaos: Build Y1 Agentofchaos

9) ts52: Trade G1 R1 Ts52

10) agentofchaos: Build Y2 Agentofchaos

11) ts52: Build G1 Ts52

12) agentofchaos: Discover Y2 Agentofchaos B1 Woodhaven

13) ts52: Build G1 Gonzo

14) agentofchaos: Build G2 Agentofchaos

15) ts52: Build G2 Gonzo

16) agentofchaos: Sacrifice G2 Agentofchaos
Build Y2 Woodhaven
Build Y2 Agentofchaos

17) ts52: Build G2 Ts52

18) agentofchaos: Build G2 Agentofchaos

19) ts52: Trade G3 Y3 Ts52

20) agentofchaos: Sacrifice G3 Agentofchaos
Build Y3 Woodhaven
Build G3 Agentofchaos
Build G3 Agentofchaos

21) ts52: Discover G2 Ts52 Y3 Bigbird

22) agentofchaos: Trade G2 R2 Agentofchaos

23) ts52: Build R1 Ts52

24) agentofchaos: M Y3 Woodhaven Gonzo

25) ts52: Trade R1 B1 Ts52

26) agentofchaos: Move R2 Agentofchaos Woodhaven

27) ts52: Trade Y3 G3 Ts52

28) agentofchaos: Sacrifice G3 Agentofchaos
Build Y3 Woodhaven
Build G2 Agentofchaos
Build G3 Agentofchaos

29) ts52: Move B1 Ts52 Bigbird

30) agentofchaos: Sacrifice G3 Agentofchaos
Build R1 Woodhaven
Build R1 Woodhaven
Build G3 Agentofchaos

31) ts52: Build R2 Ts52

32) agentofchaos: Sacrifice R2 Woodhaven
Attack G2 Gonzo
Attack G1 Gonzo

33) ts52: Move R1 Ts52 Bigbird

34) agentofchaos: Sacrifice Y2 Woodhaven
Move G2 Gonzo Ts52
Move G1 Gonzo Ts52
Catastrophe Ts52 G

35) ts52: Sacrifice G2 Bigbird
Build R2 Ts52
Build R2 Bigbird

36) agentofchaos: Sacrifice R1 Woodhaven
Attack G1 Gonzo

37) ts52: Trade R2 G2 Ts52

38) agentofchaos: T G3 R3 Agentofchaos

39) ts52: Discover R2 Bigbird B1 Grover

40) agentofchaos: Move Y3 Gonzo Ts52

41) ts52: Build G1 Ts52

42) agentofchaos: Sacrifice R3 Agentofchaos
Attack G2 Ts52
Attack G1 Ts52
Attack R2 Ts52

	agentofchaos: Thanks for a great game :-)
	ts52: Thank you! Excellent game.


22281)
Variants: "Hard time"
Started: 2012.5.31, Ended: 2012.9.2
Participants: SilentTitan (S), agentofchaos (N)
Winner: SilentTitan

1) agentofchaos: H B1 R2 G3
	SilentTitan: ..... and away we go.......

2) SilentTitan: Homeworld G2 Y1 B3
	agentofchaos: Have fun!

3) agentofchaos: Build G1 Agentofchaos

4) SilentTitan: Build B1 Silenttitan

5) agentofchaos: B G1 Agentofchaos

6) SilentTitan: Build B1 Silenttitan

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) SilentTitan: Discover B1 Silenttitan G3 Sol

9) agentofchaos: Build Y1 Agentofchaos

10) SilentTitan: Build B2 Sol

11) agentofchaos: Build Y2 Agentofchaos

12) SilentTitan: Trade B3 G3 Silenttitan

13) agentofchaos: Trade Y2 R2 Agentofchaos

14) SilentTitan: Trade B2 Y2 Sol

15) agentofchaos: Move R2 Agentofchaos Sol

16) SilentTitan: Sacrifice Y2 Sol
Move B1 Sol Silenttitan
Discover B1 Silenttitan Y3 Soul

17) agentofchaos: Build Y2 Agentofchaos

18) SilentTitan: Trade G3 R3 Silenttitan

19) agentofchaos: Build R1 Sol

20) SilentTitan: Build B2 Silenttitan

21) agentofchaos: Move Y2 Agentofchaos Soul

22) SilentTitan: Build B2 Silenttitan

23) agentofchaos: Sacrifice R1 Sol
Attack B1 Soul

24) SilentTitan: Trade B2 R2 Silenttitan

25) agentofchaos: Build R1 Sol

26) SilentTitan: Move R3 Silenttitan Soul

27) agentofchaos: Sacrifice Y2 Soul
Move R2 Sol Silenttitan
Move R1 Sol Silenttitan

28) SilentTitan: Sacrifice R2 Silenttitan
Attack R2 Silenttitan North
Attack R1 Silenttitan North

29) agentofchaos: Move B1 Soul Agentofchaos

30) SilentTitan: Trade B2 Y2 Silenttitan
	dlwillson: Agent, when this game is over, forward a copy of the game log to me at DLWillson@TheGeek.NU. I want to ask you a question.

31) agentofchaos: Build Y2 Agentofchaos

32) SilentTitan: Discover R2 Silenttitan Y3 Sol

33) agentofchaos: Build B2 Agentofchaos

34) SilentTitan: Build B2 Silenttitan

35) agentofchaos: Discover Y2 Agentofchaos B3 Dreadthought

36) SilentTitan: Sacrifice Y2 Silenttitan
Move B1 Silenttitan Sol
Move B1 Sol Agentofchaos
Catastrophe Agentofchaos Blue

37) agentofchaos: Build Y2 Agentofchaos

38) SilentTitan: Build B1 Silenttitan

39) agentofchaos: Build G1 Agentofchaos

40) SilentTitan: Trade B2 Y2 Silenttitan

41) agentofchaos: Sacrifice G1 Agentofchaos
Build Y3 Dreadthought

42) SilentTitan: Move R3 Soul Silenttitan

43) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y2 Dreadthought Silenttitan
Move Y3 Dreadthought Silenttitan
Catastrophe Silenttitan Y

44) SilentTitan: Trade R3 Y3 Silenttitan



22287)
Variants: "Hard time"
Started: 2012.5.31, Ended: 2012.6.13
Participants: ajo (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B1 R2 G3

2) ajo: Homeworld B3 R1 G3

3) mneme: Build G1 Mneme

4) ajo: Build G1 Ajo

5) mneme: Trade G1 B1 Mneme

6) ajo: Trade G1 B1 Ajo

7) mneme: Build B2 Mneme

8) ajo: Build B2 Ajo
	mneme: I have a comment to make about move 4. But I'll save it; ask me after the game if you're curious?

9) mneme: Trade B2 Y2 Mneme
	ajo: Tease. :) My reasoning is: I'll come along with you for the blue feast, and then hope to gain the edge later when we both have tons of ships.

10) ajo: Trade B2 Y2 Ajo
	mneme: :)  To be fair, I've played a lot of variations of this opening.


11) mneme: Build B2 Mneme

12) ajo: Build B2 Ajo

13) mneme: Discover B2 Mneme G3 Emerald

14) ajo: Discover B1 Ajo G2 Alpha

15) mneme: Build Y1 Mneme

16) ajo: Build G1 Ajo

17) mneme: Build Y1 Mneme

18) ajo: Build Y1 Ajo

19) mneme: Move Y1 Mneme Emerald

20) ajo: Move Y2 Ajo Alpha
	ajo: Pretty soon here I'll have to pause and set up my Icehouse pieces. Normally I have them next to me when I'm playing. :)

21) mneme: Trade Y1 R1 Mneme
	mneme: Huh.  I actually find it easier to follow games on here these days; I make more dumb mistakes in person (certainly I did in Boston when I played Andy (in between other games) at Pax East.

22) ajo: Trade B1 R1 Alpha

23) mneme: Build B1 Mneme

24) ajo: Move B2 Ajo Alpha

25) mneme: Discover B1 Mneme Y3 Jacinth

26) ajo: Build R2 Alpha

27) mneme: Move R1 Mneme Emerald

28) ajo: Move R2 Alpha Jacinth

29) mneme: Sacrifice G3 Mneme
Build B2 Emerald
Build B3 Emerald
Build B3 Jacinth

30) ajo: Attack B1 Jacinth

31) mneme: Sacrifice R1 Emerald
Attack R2 Jacinth

32) ajo: Sacrifice Y2 Alpha
Move B2 Alpha Jacinth
Move B2 Jacinth Mneme

33) mneme: Sacrifice R2 Jacinth
Attack B1 Jacinth
Attack B2 Mneme

34) ajo: Build R1 Alpha
	mneme: Having worked out the response to that, I was kinda hoping you'd try it.
	ajo: Shoot. I think I've pretty much lost at this point, but I'll keep playing.

35) mneme: Sacrifice B2 Mneme
Trade B3 G3 Jacinth
Trade B3 R3 Emerald

36) ajo: Build R2 Alpha
	mneme: have to agree, but as you like.

37) mneme: Sacrifice G3 Jacinth
Build B2 Emerald
Build B3 Jacinth
B B3 Mneme

38) ajo: Sacrifice Y1 Ajo
Discover R2 Alpha Y3 Beta

39) mneme: Sacrifice B2 Emerald
Trade B3 Y3 Mneme
Trade B3 G3 Jacinth

	ajo: I don't like resigning when I still have both pieces of my star, but I don't see any way to attack you from this position. Play again?
	mneme: Any time.



22073)
Variants: "No undo"
Started: 2012.5.31, Ended: 2012.6.15
Participants: goblin981 (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B1 R3 G3

2) goblin981: Homeworld Y3 B2 G3

3) ajo: Build G1 Ajo

4) goblin981: B G1 Goblin981

5) ajo: Trade G1 Y1 Ajo

6) goblin981: D G1 Goblin981 B1 Blue

7) ajo: Build Y1 Ajo

8) goblin981: B G1 Goblin981

9) ajo: Build Y1 Ajo

10) goblin981: B G1 Goblin981

11) ajo: Discover Y1 Ajo B2 Alpha

12) goblin981: B G2 Blue

13) ajo: Build G2 Ajo

14) goblin981: T G2 R2 Blue

15) ajo: Sacrifice G2 Ajo
Build G2 Ajo
Build Y2 Alpha

16) goblin981: T G1 R1 Goblin981

17) ajo: Trade Y2 R2 Alpha

18) goblin981: D G1 Goblin981 G1 Green

19) ajo: Sacrifice G2 Ajo
Build G2 Ajo
Build Y2 Alpha

20) goblin981: B G2 Goblin981

21) ajo: Trade Y2 G2 Alpha

22) goblin981: S G2 Goblin981
Build G2 Goblin981
Build G3 Blue

23) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y2 Alpha
Build Y2 Alpha

24) goblin981: T G3 Y3 Blue

25) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Alpha
Build R1 Alpha

26) goblin981: D R2 Blue Y2 Y2

27) ajo: Sacrifice Y2 Alpha
Move Y1 Alpha Blue
Discover Y1 Ajo B2 Beta

28) goblin981: M G1 Blue Y2

29) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y2 Blue
Build Y3 Blue
Catastrophe Blue Yellow

30) goblin981: S G3 Goblin981
Build G3 Goblin981
Build R1 Y2
Build R2 Y2

31) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build R3 Alpha
Build Y1 Beta

32) goblin981: D R2 Y2 Y3 Y3

33) ajo: Move R3 Alpha Green

34) goblin981: S G1 Green
Build R3 Y3

35) ajo: Move Y1 Beta Green

36) goblin981: D R3 Y3 Y2 Yell2

37) ajo: Build Y3 Green

38) goblin981: M R2 Y3 Beta

39) ajo: Build Y3 Alpha

40) goblin981: A Y1N Beta

41) ajo: Move Y3 Green Beta

42) goblin981: S Y1 Beta
Move R2 Beta Ajo

43) ajo: Attack R2 Ajo
	ajo: Hey, thanks! *nom nom nom*

44) goblin981: B G1 Y2

45) ajo: Build Y1 Green

46) goblin981: M R3 Yell2 Green

47) ajo: Attack R3 Green

48) goblin981: T G2 Y2 Goblin981

49) ajo: Sacrifice Y2 Alpha
Move Y1 Green Goblin981
Move Y1 Green Goblin981
Catastrophe Goblin981 Yellow

50) goblin981: M R1 Y2 Ajo
	goblin981: Damn, didn't see that.

51) ajo: Sacrifice Y3 Beta
Move G3 Alpha Green
Move G3 Green Goblin981
Move G2 Ajo Goblin981

52) goblin981: M R2 Y2 Ajo
Catastrophe Ajo R
	ajo: Checkmate. :)
	ajo: Advice for learning -- Twice in this game you tried to attack a really heavily defended star by moving a single red ship in, and I just captured it without even sacrificing anything. You've gotta learn not to do that.
	ajo: ooooh shoot, disregard that "checkmate". I'd mistakenly thought your last move was "move r1 goblin981 ajo". So instead, you get a chance to even the score a bit. :P
	ajo: You're still in check, though.
	goblin981: Yeah, both times I gave you the red ship to free up a star.
I was ready to blow your red star, but you took out my y2 ship with my star.

53) ajo: Sacrifice R2 Alpha
Attack G3 Goblin981
Attack R1 Goblin981
	ajo: Of course! You have to watch one turn ahead. Especially when you're in check. ;) Good game.
	goblin981: Yeah, seeing all possible moves by the opponent is always my problem.

Thanks for the game.



22293)
Variants: "Hard time"
Started: 2012.6.2, Ended: 2012.6.25
Participants: Danner (S), ts52 (N)
Winner: Danner

1) ts52: Homeworld Y1 B2 G3
	Danner: Hi! Have a nice game!
	ts52: Thanks. You too!

2) Danner: Homeworld B1 R2 G3
	Danner: homeworld B1 R2 G3

3) ts52: Build G1 Ts52
	Danner: sorry :D stupid mistake
	ts52: No worries. Small universe, eh?

4) Danner: Build G1 Danner
	Danner: Yeah. :)

5) ts52: Trade G1 R1 Ts52

6) Danner: Trade G1 Y1 Danner

7) ts52: B G1 Ts52

8) Danner: Build Y1 Danner

9) ts52: D G1 Ts52 B3 Gonzo

10) Danner: Build Y2 Danner

11) ts52: Build G1 Ts52

12) Danner: Discover Y2 Danner G3 Cactus

13) ts52: Build R1 Ts52

14) Danner: Discover Y1 Danner R3 Outpost

15) ts52: Move R1 Ts52 Gonzo

16) Danner: Sacrifice G3 Danner
Build Y2 Outpost
Build Y2 Danner
Build Y3 Danner

17) ts52: Build R1 Gonzo

18) Danner: Trade Y3 G3 Danner

19) ts52: Build R2 Ts52

20) Danner: Discover Y2 Danner R3 Garrett

21) ts52: Move R2 Ts52 Cactus

22) Danner: Move Y2 Cactus Danner

23) ts52: Build R2 Ts52

24) Danner: Discover Y2 Danner R3 Final

25) ts52: Trade G1 B1 Ts52

26) Danner: Build Y3 Danner

27) ts52: Move B1 Ts52 Cactus

28) Danner: Build Y3 Danner

29) ts52: Build B1 Cactus

30) Danner: Trade Y3 B3 Danner

31) ts52: Build G1 Ts52

32) Danner: Trade Y3 B3 Danner

33) ts52: Trade R2 B2 Ts52

34) Danner: Build Y3 Danner

35) ts52: Discover B2 Ts52 Y3 Bigbird

36) Danner: Move B3 Danner Garrett

37) ts52: Build R2 Ts52
	Danner: That was close!
	ts52: Drat. So close!

38) Danner: Build Y3 Danner

39) ts52: Move G1 Ts52 Bigbird

40) Danner: Build G1 Danner

41) ts52: Build B2 Bigbird

42) Danner: Move B3 Danner Outpost

43) ts52: Build G2 Bigbird

44) Danner: Move G1 Danner Outpost

45) ts52: Build G2 Bigbird

46) Danner: Move Y1 Danner Outpost

47) ts52: Build G2 Gonzo

48) Danner: Move Y3 Danner Final
	Danner: Emergency evacuation in progress. :)

49) ts52: Pass

50) Danner: Move G3 Danner Final
	ts52: I see my doom coming, but I don't think I can do anything about it.
	Danner: That's strange, because I still lack the necessary resources.

51) ts52: Pass

52) Danner: Move G1 Outpost Danner
	ts52: really?

53) ts52: Pass
	Danner: Yes.

54) Danner: Move G1 Danner Bigbird
Catastrophe Bigbird G

55) ts52: Build G1 Ts52

56) Danner: Build G1 Final

57) ts52: Move G1 Ts52 Bigbird

58) Danner: Move G1 Final Danner

59) ts52: Build G2 Bigbird

60) Danner: Build G2 Final

61) ts52: Pass

62) Danner: Move Y2 Garrett Danner

63) ts52: Pass

64) Danner: Sacrifice B3 Garrett
Trade Y3 R3 Danner
Trade Y3 B3 Final
Pass

65) ts52: Discover R1 Ts52 Y3 Zoe
	Danner: I fear you don't really enjoy this game.
	ts52: I'm just not sure why you haven't moved to take me out yet. And yes, it's a bit frustrating being locked out of yellow, but that's my own fault. I'm curious to see just how this will end though.

66) Danner: Build Y3 Danner
	Danner: To take you out, I need either 1 red and 3 green ships or 3 blue ships.

67) ts52: Pass
	Danner: So I didn't meet the requirements until now.

68) Danner: Move G1 Danner Outpost

69) ts52: Pass

70) Danner: Move G1 Outpost Ts52

71) ts52: Attack G1 Ts52
	Danner: Sorry for the delay.

72) Danner: Move G3 Final Ts52
	ts52: no worries

73) ts52: Attack G3 Ts52

74) Danner: Sacrifice Y2 Outpost
Move G2 Final Ts52
Move B3 Final Ts52
Catastrophe Ts52 G

75) ts52: Move G2 Bigbird Ts52

76) Danner: Sacrifice R3 Danner
Attack R2N Ts52
Attack G2N Ts52
Pass
	ts52: ah, now I see, you wanted to be able to do it w/o sacrificing the large yellow...
	Danner: :)

	Danner: Thank you. :)


22120)
Variants: "Hard time"
Started: 2012.6.3, Ended: 2012.6.16
Participants: dlwillson (S), SilentTitan (N)
Winner: dlwillson

1) SilentTitan: Homeworld R2 B3 G3

2) dlwillson: H Y3 B2 G3 Dlwillson

3) SilentTitan: Build G1 Silenttitan
	SilentTitan: LOL

4) dlwillson: B G1 Dlwillson

5) SilentTitan: Trade G1 Y1 Silenttitan

6) dlwillson: Trade G1 Y1 Dlwillson

7) SilentTitan: Build G1 Silenttitan

8) dlwillson: D Y1 Dlwillson G1 Field

9) SilentTitan: Discover G1 Silenttitan Y1 Sol

10) dlwillson: B Y2 Field

	SilentTitan: Sorry lost track of time ... for obvious reasons.




22297)
Variants: "Hard time"
Started: 2012.6.7, Ended: 2012.6.18
Participants: SilentTitan (S), goblin981 (N)
Winner: goblin981

1) goblin981: Homeworld R2 B1 G3

2) SilentTitan: Homeworld B2 R3 G3

3) goblin981: B G1 Goblin981
	SilentTitan: Good name! Goblin, Silent and One-Eye are my three favorite characters from the Black Company by Glenn Cook. 
	goblin981: I got it from the Green Goblin.  I'm a Spider-Man fan.

4) SilentTitan: Build G1 Silenttitan

5) goblin981: B G1 Goblin981

6) SilentTitan: Build G2 Silenttitan

7) goblin981: T G1 Y1 Goblin981

8) SilentTitan: Trade G2 Y2 Silenttitan

9) goblin981: D G1 Goblin981 Y3 Yella

10) SilentTitan: Discover G1 Silenttitan B1 Sol

11) goblin981: B Y1 Goblin981

12) SilentTitan: Build Y1 Silenttitan

13) goblin981: T Y1 G1 Goblin981

14) SilentTitan: Build G2 Sol

15) goblin981: D G1 Goblin981 Y3 Y3

16) SilentTitan: Trade G2 Y2 Sol

17) goblin981: B G2 Goblin981

	SilentTitan: I am sorry about that... I had a friend die this last week and I lost track of several things I was doing including this.  You can challenge me again if you'd like

	goblin981: No probs


22349)
Variants: "Hard time"
Started: 2012.6.8, Ended: 2012.8.7
Participants: alexcobo (S), goblin981 (N)
Winner: goblin981

1) goblin981: H Y1 B2 G3

2) alexcobo: Homeworld G3 B2 Y3

3) goblin981: B G1 Goblin981

4) alexcobo: Build Y1 Alexcobo

5) goblin981: D G1 Goblin981 Y3 Alpha

6) alexcobo: Build Y1 Alexcobo

7) goblin981: B G1 Goblin981

8) alexcobo: Trade Y1 G1 Alexcobo

9) goblin981: D G1 Goblin981 Y3 Beta

10) alexcobo: Build G2 Alexcobo

11) goblin981: B G2 Goblin981

12) alexcobo: Trade G1 R1 Alexcobo

13) goblin981: T G2 R2 Goblin981

14) alexcobo: Discover G2 Alexcobo Y1 Yellowone

15) goblin981: B R1 Goblin981

16) alexcobo: Build Y2 Alexcobo

17) goblin981: B G1 Alpha

18) alexcobo: Build G2 Yellowone

19) goblin981: D G1 Alpha R1 Gamma

20) alexcobo: Build R2 Alexcobo

21) goblin981: B G2 Gamma

22) alexcobo: Trade Y3 G3 Alexcobo

23) goblin981: T R1 B1 Goblin981

24) alexcobo: Build Y2 Alexcobo

25) goblin981: D B1 Goblin981 Y3 Delta

26) alexcobo: Move G3 Alexcobo Gamma

27) goblin981: M B1 Delta Gamma

28) alexcobo: Sacrifice Y1 Alexcobo
Move G3 Gamma Beta

29) goblin981: D G1 Beta Y1 Delta

30) alexcobo: Discover Y2 Alexcobo B1 Blueone

31) goblin981: T G2 Y2 Gamma

32) alexcobo: Build Y3 Alexcobo

33) goblin981: B G2 Delta

34) alexcobo: Move G3 Beta Gamma

35) goblin981: S Y2 Gamma
D G1 Gamma B2 Beta
Discover G1 Beta B1 Epsilon

	alexcobo: 	
I am very sorry. I have a lot going on right now and I have to cut down on my game time. :-(
I will see you again soon. Good luck! 


22377)
Variants: "Hard time"
Started: 2012.6.12, Ended: 2012.7.31
Participants: AdamBadura (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld B3 G2 Y3

2) AdamBadura: Homeworld G3 B2 Y3

3) Aristos: Build Y1 Aristos
	Aristos: Good day and well met. 

4) AdamBadura: Build Y1 Adambadura

5) Aristos: Discover Y1 Aristos G1 Splinter

6) AdamBadura: Discover Y1 Adambadura G1 Shipyard

7) Aristos: Discover Y1 Splinter B3 Morph

8) AdamBadura: Build Y1 Adambadura

9) Aristos: Build Y2 Aristos

10) AdamBadura: Trade Y3 G3 Adambadura

11) Aristos: Trade Y1 G1 Morph

12) AdamBadura: Build Y1 Adambadura

13) Aristos: Build G1 Morph

14) AdamBadura: Sacrifice G3 Adambadura
Build Y2 Shipyard
Build Y2 Shipyard
Build Y3 Adambadura
	Aristos: Game is going to take a loooooong time with five days between every move.

15) Aristos: Trade Y3 R3 Aristos
	AdamBadura: I'm terribly sorry. I will do my best to speed up but recently I'm very busy with the rest of my life. :(
	Aristos: Oh, I understand. It just gets hard to remember my strategy plans under such long delays. :-)

16) AdamBadura: Discover Y2 Shipyard G2 Drydocks

17) Aristos: Build Y3 Aristos

18) AdamBadura: Trade Y1 R1 Adambadura

19) Aristos: Discover Y2 Aristos R1 Exit

20) AdamBadura: Build R1 Adambadura

21) Aristos: Build R2 Aristos
	Aristos: Ping!

22) AdamBadura: Move R1 Adambadura Shipyard
	AdamBadura: I think I'm going to lose this one. Which doesn't make my moves any faster... :(

23) Aristos: Move R3 Aristos Shipyard

24) AdamBadura: Build R2 Shipyard

25) Aristos: Sacrifice R2 Aristos
Attack Y2 Shipyard
Attack Y1 Shipyard

26) AdamBadura: Sacrifice Y2 Drydocks
Move R1 Shipyard Aristos
Discover R2 Shipyard G3 Newdrydocks

27) Aristos: Sacrifice Y2 Shipyard
Move Y2 Exit Adambadura
Move Y1 Shipyard Adambadura
Catastrophe Adambadura Yellow
	AdamBadura: Hmm... Somehow I haven't thought of that move... :(

28) AdamBadura: Build R1 Newdrydocks

29) Aristos: Trade G1 Y1 Morph

30) AdamBadura: Build R2 Adambadura
	Aristos: My main thrust has been to acquire enough yellow tech to knock out your big yellow ship. I finally had enough on hand.
	Aristos: You really threw me off at the start... I've never played a game with identically sized homeworlds before. It is a very different game when the worlds are so close.
	AdamBadura: I missed that move to which is kind of wired considering how much time did I take to make my move. (I had few attempts but after some thinking I wasn't sure what should I do.)

In general it is bad to have identical worlds. It is bad for the second player (me) since the first player has an advantage. I didn't want to make them so but did it by accident just reverting your sizes and forgetting that I had to actually change one of them.

31) Aristos: Sacrifice Y1 Morph
Move R3 Shipyard Adambadura

	Aristos: I've got you now. If you do anything other than change color in your home system, I build red and cause catastrophe. So you must change color. Regardless of what color you pick, I attack your size 2 ship. You build a new ship the next turn or you lose. I sacrifice my size 3 and attack both ships. Game over.
	AdamBadura: You are right. Somehow I hoped there will be a little race with building ships. I wanted to build an R3 in your home system. But appearently that was a bad plan.

Yet I'm not sure if it could have ended otherwise considering my previous mistakes.

Thanks for the game and I'm terribly sorry for the delays. :(
	Aristos: Thanks. No problem on the delays. Take care.


22386)
Variants: "Hard time"
Started: 2012.6.15, Ended: 2012.6.25
Participants: ajo (S), Remneb (N)
Winner: ajo

1) Remneb: Homeworld R1 B2 G3

2) ajo: Homeworld B1 R3 G3

3) Remneb: Build G1 Remneb

4) ajo: Build G1 Ajo

5) Remneb: Trade G1 Y1 Remneb

6) ajo: Trade G3 Y3 Ajo

7) Remneb: Build G1 Remneb

8) ajo: Build G1 Ajo

9) Remneb: Trade G1 R1 Remneb

10) ajo: Build Y1 Ajo

11) Remneb: Discover R1 Remneb Y3 Deneb

12) ajo: Trade Y1 R1 Ajo

13) Remneb: Build Y1 Remneb

14) ajo: Build R2 Ajo

15) Remneb: Build G1 Remneb

16) ajo: Discover R2 Ajo B2 Alpha

17) Remneb: Discover R1 Deneb Y2 Wolf

18) ajo: Move G1 Ajo Alpha

19) Remneb: Sacrifice G1 Remneb
Build R2 Wolf

20) ajo: Build R2 Alpha

21) Remneb: Build G1 Remneb

22) ajo: Build R3 Alpha

23) Remneb: Move R1 Wolf Ajo

24) ajo: Sacrifice R1 Ajo
Attack R1 Ajo

25) Remneb: Discover R2 Wolf Y3 Sirius
	ajo: *nom nom nom nom nom*

26) ajo: Trade R2 Y2 Alpha

27) Remneb: Discover G1 Remneb Y3 Centaurus

28) ajo: Move R2 Alpha Centaurus

29) Remneb: Discover G1 Centaurus Y2 Akron

30) ajo: Build G2 Alpha

31) Remneb: Build G2 Akron

32) ajo: Trade G1 B1 Alpha

33) Remneb: Discover G2 Akron B3 Helios

34) ajo: Move B1 Alpha Centaurus

35) Remneb: Build G1 Remneb

36) ajo: Sacrifice G2 Alpha
Build B1 Centaurus
Build B2 Centaurus

37) Remneb: Sacrifice G3 Remneb
Build G2 Akron
Build G2 Helios
Build G3 Remneb

38) ajo: Build G3 Ajo

39) Remneb: Trade G2 Y2 Helios

40) ajo: Trade G3 B3 Ajo

41) Remneb: Sacrifice G3 Remneb
Build G2 Helios
Build G3 Remneb
Build R1 Sirius

42) ajo: Build G3 Ajo

43) Remneb: Discover Y1 Remneb G3 Sigma

44) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build B3 Ajo
Build R2 Alpha

45) Remneb: Move R1 Sirius Akron

46) ajo: Move B1 Centaurus Remneb

47) Remneb: Attack B1 Remneb
	ajo: I think you're going to lose in about two moves. :)

48) ajo: Sacrifice Y2 Alpha
Move B1 Centaurus Remneb
Move B2 Centaurus Remneb
Catastrophe Remneb Blue
	Remneb: I'm going to lose my blue star for sure!

49) Remneb: Build R3 Akron
	ajo: Check... and I think mate.
	ajo: When you're in that situation, you have to do something dramatic to pose a counter-threat to me. You're going to get hit no matter what; the trick is to hit me back. Attacking my b1 was pretty much a waste of a turn (although admittedly if you hadn't taken it, I was going to take your two small ships and you'd be in even *more* trouble). If you'd done "build r3 Sirius" instead, I think you'd have lasted *one* more turn, at least.
	Remneb: A yellow 3 ship would have save me from final destruction.The first target was of course Alpha system, attacking it with my 2 red ships in Akron and Sirius.My last mistake was to move my red 1 ship from Sirius to Akron.I should have let it in Sirius and sacrify a yellow 2 ship to stunt Alpha system.

50) ajo: Sacrifice Y3 Ajo
Move R2 Alpha Remneb
Move R3 Alpha Remneb
Move R2 Centaurus Remneb
Catastrophe Remneb Red



22420)
Variants: "Hard time"
Started: 2012.6.22, Ended: 2012.7.19
Participants: goulo (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld B3 R1 G3

2) goulo: Homeworld B2 R1 G3
	MagicJohn: Hello, Russgoulo!  Have a good game. I'm trying to get a handle on the tactics and strategies but mostly folks have been declining challenges and defaulting.  I'm climbing the ladder without winning games....... Air's getting thin.... can't catch my breath....gasp, gasp.... turn on life-support...

3) MagicJohn: Build G1 Magicjohn
	goulo: I think I'm on a losing streak, so you may not learn much from playing against me... :)

4) goulo: Build G1 Goulo

5) MagicJohn: Trade G1 Y1 Magicjohn

6) goulo: Build G1 Goulo

7) MagicJohn: Build G1 Magicjohn

8) goulo: Trade G1 Y1 Goulo

9) MagicJohn: Trade G1 B1 Magicjohn

10) goulo: Trade G1 R1 Goulo

11) MagicJohn: Build Y1 Magicjohn

12) goulo: Build R2 Goulo

13) MagicJohn: Build Y2 Magicjohn

14) goulo: Build Y2 Goulo

15) MagicJohn: Discover Y1 Magicjohn G2 Scarboughfair

16) goulo: Discover Y1 Goulo G3 Smeraldego

17) MagicJohn: Trade Y2 R2 Magicjohn

18) goulo: Move R2 Goulo Smeraldego

19) MagicJohn: Build Y2 Scarboughfair

20) goulo: Build R2 Goulo

21) MagicJohn: Move R2 Magicjohn Scarboughfair

22) goulo: Discover R2 Goulo Y3 Citronego

23) MagicJohn: Discover Y2 Scarboughfair R3 Scairbroughfair

24) goulo: Sacrifice G3 Goulo
Build Y2 Smeraldego
Build Y3 Goulo
Build R3 Citronego

25) MagicJohn: Sacrifice G3 Magicjohn
Build Y3 Magicjohn
Build R3 Scarboughfair
Build B1 Magicjohn

26) goulo: Trade R1 B1 Goulo

27) MagicJohn: Move B1 Magicjohn Scarboughfair

28) goulo: Move B1 Goulo Smeraldego

29) MagicJohn: Move R3 Scarboughfair Smeraldego

30) goulo: Sacrifice Y2 Smeraldego
Move R2 Smeraldego Goulo
Move R3 Citronego Scarboughfair

31) MagicJohn: Sacrifice R2 Scarboughfair
Attack B1 Smeraldego
Attack Y1 Smeraldego

32) goulo: Attack Y1 Scarboughfair

33) MagicJohn: Build Y2 Smeraldego

34) goulo: Attack B1 Scarboughfair

35) MagicJohn: Sacrifice Y2 Smeraldego
Move Y1 Smeraldego Goulo
Move Y2 Scairbroughfair Goulo
Catastrophe Goulo Y

	goulo: Good game! I misread my last move; I realized that the yellow catastrophe was possible but not that it would leave you able to get a red3 to goulo while I couldn't, doh! :)
	MagicJohn: Thanks for the game. I'm now in even further over my head on the ladder. The ratings of the players around me are ridiculous!! My learning curve better get real steep real fast.... 


22446)
Variants: "Hard time"
Started: 2012.6.27, Ended: 2012.7.19
Participants: ts52 (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 R1 G3

2) ts52: Homeworld B1 Y2 G3

3) ajo: Build G1 Ajo
	ts52: Have a good game!

4) ts52: Build G1 Ts52
	ajo: You too. :)

5) ajo: Trade G1 Y1 Ajo

6) ts52: Trade G1 Y1 Ts52

7) ajo: Build G1 Ajo

8) ts52: Build G1 Ts52

9) ajo: Discover G1 Ajo B2 Alpha

10) ts52: Discover G1 Ts52 B3 Grover

11) ajo: Build G1 Ajo

12) ts52: Build G2 Grover

13) ajo: Build G2 Alpha

14) ts52: Trade G2 Y2 Grover

15) ajo: Trade G2 R2 Alpha

16) ts52: Trade Y1 R1 Ts52

17) ajo: Build G2 Alpha

18) ts52: Build G2 Ts52

19) ajo: Trade G2 Y2 Alpha

20) ts52: Build G2 Grover

21) ajo: Build Y1 Alpha

22) ts52: Discover G2 Grover B2 Gonzo

23) ajo: Discover Y1 Alpha G3 Oscar

24) ts52: Build G2 Gonzo

25) ajo: Discover G1 Ajo B2 Beta

26) ts52: Trade G2 R2 Ts52

27) ajo: Sacrifice G3 Ajo
Build Y1 Oscar
Build Y3 Ajo
Build Y3 Alpha

28) ts52: Sacrifice G2 Gonzo
Build G2 Ts52
Build Y3 Grover

29) ajo: Build G2 Beta

30) ts52: Build G3 Gonzo

31) ajo: Trade Y3 B3 Alpha

32) ts52: Trade Y3 R3 Grover

33) ajo: Sacrifice G2 Beta
Build Y3 Oscar
Build Y3 Alpha

34) ts52: Build G2 Grover

35) ajo: Move B3 Alpha Oscar

36) ts52: Trade G1 B1 Grover

37) ajo: Build B1 Oscar

38) ts52: Discover B1 Grover R2 Elmo

39) ajo: Move Y3 Oscar Elmo

40) ts52: Move R3 Grover Beta

41) ajo: Attack B1 Elmo

42) ts52: Build G1 Grover

43) ajo: Trade B3 R3 Oscar

44) ts52: Attack G1 Beta

45) ajo: Build B3 Oscar

46) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Beta
Build R3 Beta

47) ajo: Move R3 Oscar Beta
Catastrophe Beta Red

48) ts52: Move R2 Ts52 Grover

49) ajo: Discover Y2 Alpha R3 Waypoint

50) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Grover
Build R3 Grover

51) ajo: Sacrifice Y3 Elmo
Move Y2 Waypoint Ts52
Move Y1 Oscar Ts52
Move Y1 Oscar Ts52
Catastrophe Ts52 Yellow

52) ts52: Move R3 Grover Elmo
	ajo: Check... and mate, I believe. :)
	ts52: Yep, I don't believe I can stop you. Well played sir.

53) ajo: Sacrifice Y3 Alpha
Move B1 Elmo Ts52
Move B1 Oscar Ts52
Move B3 Oscar Ts52
Catastrophe Ts52 Blue
	ts52: Thanks for the game.



22457)
Started: 2012.6.29, Ended: 2012.8.25
Participants: torianironfist (S), RogueJedi234 (N)
Winner: torianironfist

1) RogueJedi234: Homeworld Y3 B1 G3

2) torianironfist: Homeworld B2 Y1 G3
	torianironfist: Homeworld b2 g1 y3
	torianironfist: homeworld b2 g1 y3
	torianironfist: homeworld B2 G1 Y3

3) RogueJedi234: Build G1 Roguejedi234

4) torianironfist: Build G1 Torianironfist

5) RogueJedi234: Discover G1 Roguejedi234 B2 Alpha

6) torianironfist: Discover G1 Torianironfist B3 Beta

7) RogueJedi234: Trade G1 Y1 Alpha

8) torianironfist: Build G1 Beta

9) RogueJedi234: Build G1 Roguejedi234

10) torianironfist: Trade G1 Y1 Beta

11) RogueJedi234: Sacrifice G1 Roguejedi234
Build Y2 Alpha

12) torianironfist: Build Y2 Beta


13) RogueJedi234: Trade Y2 G2 Alpha

14) torianironfist: Build G1 Torianironfist

15) RogueJedi234: Construct Y2 Alpha

16) torianironfist: Trade G1 R1 Torianironfist

17) RogueJedi234: Trade Y2 R2 Alpha

18) torianironfist: Trade Y1 R1 Beta

19) RogueJedi234: Move R2 Alpha Roguejedi234

20) torianironfist: Build G1 Torianironfist

21) RogueJedi234: Discover G2 Alpha B3 Gamma

22) torianironfist: Discover G1 Torianironfist Y3 Delta

23) RogueJedi234: Build G1 Gamma

24) torianironfist: Build G2 Torianironfist

25) RogueJedi234: Trade G2 Y2 Gamma

26) torianironfist: Build G2 Delta

27) RogueJedi234: Build G2 Gamma

28) torianironfist: Build G3 Beta

29) RogueJedi234: Sacrifice Y2 Gamma
Move G2 Gamma Torianironfist
Move G1 Gamma Torianironfist
Catastrophe Torianironfist Green

30) torianironfist: Move G3 Beta Alpha

31) RogueJedi234: Discover Y1 Alpha G3 Gamma

32) torianironfist: Move G2 Delta Torianironfist

33) RogueJedi234: Build Y1 Gamma

34) torianironfist: Build Y2 Beta

35) RogueJedi234: Discover Y1 Gamma R2 Epsilon

36) torianironfist: Build G1 Torianironfist

37) RogueJedi234: Build Y2 Gamma

38) torianironfist: Build Y3 Beta

39) RogueJedi234: Move Y1 Epsilon Beta
Catastrophe Beta Yellow

40) torianironfist: Sacrifice G3 Alpha
Build G2 Delta
Build G2 Beta
Build G3 Torianironfist

41) RogueJedi234: Discover Y2 Gamma B2 Alpha

42) torianironfist: Trade G2 Y2 Beta

43) RogueJedi234: Trade Y2 G2 Alpha

44) torianironfist: Move G1 Delta Alpha

45) RogueJedi234: Build R1 Roguejedi234

46) torianironfist: Sacrifice G2 Delta
Build G2 Alpha
Build R2 Beta

47) RogueJedi234: Sacrifice Y1 Gamma
Discover G2 Alpha Y3 Delta

48) torianironfist: Sacrifice G2 Torianironfist
Build Y1 Beta
Build G2 Beta

49) RogueJedi234: Build G3 Delta

50) torianironfist: Sacrifice Y2 Beta
Move G1 Torianironfist Delta
Move G1 Alpha Delta
Catastrophe Delta G

51) RogueJedi234: Discover R1 Roguejedi234 B2 Gamma

52) torianironfist: Build G1 Torianironfist

53) RogueJedi234: Trade R1 G1 Gamma

54) torianironfist: Sacrifice G3 Torianironfist
Build G2 Beta
Build G3 Alpha
Build G3 Alpha

55) RogueJedi234: Build R1 Roguejedi234

56) torianironfist: Sacrifice G3 Alpha
Build R2 Beta
Build R3 Torianironfist
Build G3 Alpha

57) RogueJedi234: Trade R1 Y1 Roguejedi234

58) torianironfist: Sacrifice G3 Alpha
Build G3 Alpha
Build Y2 Beta
Build Y2 Beta

59) RogueJedi234: Sacrifice Y1 Roguejedi234
Move G1 Gamma Beta
Catastrophe Beta Green

60) torianironfist: Sacrifice Y2 Beta
Move G3 Alpha Roguejedi234
Move G3 Alpha Roguejedi234

61) RogueJedi234: Build G1 Roguejedi234
Catastrophe Roguejedi234 Green

62) torianironfist: Sacrifice Y2 Beta
Discover R3 Torianironfist Y3 Doom
Move R3 Doom Alpha

63) RogueJedi234: Trade R2 B2 Roguejedi234

64) torianironfist: Sacrifice Y1 Beta
Move R3 Alpha Roguejedi234

65) RogueJedi234: Trade B2 Y2 Roguejedi234

66) torianironfist: Attack Y2 Roguejedi234



22442)
Variants: "Hard time"
Started: 2012.6.29, Ended: 2012.7.10
Participants: dlwillson (S), Danner (N)
Winner: Danner

1) Danner: Homeworld B1 R2 G3

2) dlwillson: Homeworld R3 B2 G3 Dlwillson
	Danner: Hi! Have a nice game!
	dlwillson: You too, Danner! I've been looking forward to playing you.

3) Danner: Build G1 Danner

4) dlwillson: Build G1 Dlwillson

5) Danner: Trade G1 Y1 Danner

6) dlwillson: Trade G1 Y1 Dlwillson

7) Danner: Build G1 Danner

8) dlwillson: Build G1 Dlwillson

9) Danner: Trade G1 B1 Danner

10) dlwillson: Trade G1 B1 Dlwillson

11) Danner: Build B2 Danner

12) dlwillson: Build B2 Dlwillson

13) Danner: Discover B1 Danner G3 Alpha

14) dlwillson: D B1 Dlwillson G1 Forest

15) Danner: Build B3 Danner
	Danner: Copycat. :)

16) dlwillson: B B3 Forest

17) Danner: Build B3 Alpha
	dlwillson: It seemed wise, until now... :-)

18) dlwillson: T B3 Y3 Forest

19) Danner: Discover B3 Danner B3 Beta

20) dlwillson: B G1 Dlwillson

21) Danner: Build G1 Danner

22) dlwillson: B G2 Dlwillson

23) Danner: Trade G1 R1 Danner
	dlwillson: Copycat... :-)

24) dlwillson: T G1 R1 Dlwillson
	Danner: :D

25) Danner: Build R1 Danner

26) dlwillson: Sacrifice Y3 Forest
Move R1 Dlwillson Forest
Move R1 Forest Beta
Move R1 Beta Danner
Catastrophe Danner R

27) Danner: Build G1 Danner

28) dlwillson: Trade G3 Y3 Dlwillson

29) Danner: Discover B2 Danner Y3 Gamma

30) dlwillson: T B1 R1 Forest

31) Danner: Trade G1 R1 Danner

32) dlwillson: B B1 Dlwillson

33) Danner: Trade B3 Y3 Alpha

34) dlwillson: Sacrifice Y3 Dlwillson
Move B2 Dlwillson Danner
Move B1 Dlwillson Danner
Pass

35) Danner: Sacrifice Y1 Danner
Discover R1 Danner B3 Delta
	dlwillson: Excellent recovery!

36) dlwillson: B Y1 Dlwillson
	Danner: Thanks! :)
	Danner: Sorry for the delay. Your move makes me think a lot! :)

37) Danner: Trade G3 R3 Danner
	dlwillson: Good! Now, I have to think a lot! Excellent match.
	Danner: Indeed!

38) dlwillson: B Y1 Dlwillson

39) Danner: Attack B2S Danner

40) dlwillson: T B1 G1 Danner

41) Danner: Build B1 Alpha

42) dlwillson: B G1 Danner

43) Danner: Attack G1S Danner

44) dlwillson: M Y1 Dlwillson Forest

45) Danner: Sacrifice Y3 Alpha
Move B3 Beta Danner
Move B3 Danner Dlwillson
Pass

	dlwillson: I meant to say, "Thanks for the great game!" but I must have clicked out. Sorry!
	Danner: No worries. Thank you too!


22475)
Variants: "Unrated"
Started: 2012.7.2, Ended: 2012.7.9
Participants: bugggg (S), tuxhedoh (N)
Winner: bugggg

1) tuxhedoh: Homeworld B2 G1 R3

2) bugggg: Homeworld Y3 B2 G3

3) tuxhedoh: Build R1 Tuxhedoh

4) bugggg: Build G1 Bugggg
	bugggg: test

5) tuxhedoh: Trade R1 Y1 Tuxhedoh

6) bugggg: Trade G1 R1 Bugggg
	tuxhedoh: got'er note

7) tuxhedoh: Build Y1 Tuxhedoh

8) bugggg: Build R1 Bugggg

9) tuxhedoh: Discover Y1 Tuxhedoh G3 Tux2

10) bugggg: Discover R1 Bugggg R1 Bug2

11) tuxhedoh: Build R2 Tuxhedoh

12) bugggg: Build R2 Bugggg

13) tuxhedoh: Trade R2 B2 Tuxhedoh

14) bugggg: Trade R1 Y1 Bugggg

15) tuxhedoh: Move B2 Tuxhedoh Tux2

16) bugggg: Build G1 Bugggg

17) tuxhedoh: Build Y2 Tux2

18) bugggg: Trade G1 B1 Bugggg

19) tuxhedoh: Move Y2 Tux2 Bug2

20) bugggg: Build R1 Bugggg

21) tuxhedoh: Attack R1 Bug2

22) bugggg: Build G1 Bugggg

23) tuxhedoh: Move R1 Bug2 Tux2

24) bugggg: Move R2 Bugggg Bug2

25) tuxhedoh: Build R2 Tux2

26) bugggg: Attack Y2 Bug2

27) tuxhedoh: Trade R1 G1 Tux2

28) bugggg: Move G1 Bugggg Bug2

29) tuxhedoh: Build Y2 Tux2

30) bugggg: Move B1 Bugggg Bug2

31) tuxhedoh: Build G2 Tux2

32) bugggg: Move G1 Bug2 Tux2
Catastrophe Tux2 Green

33) tuxhedoh: Build R1 Tuxhedoh

34) bugggg: Build R2 Bugggg

35) tuxhedoh: Trade R1 B1 Tuxhedoh

36) bugggg: Build G1 Bugggg
	tuxhedoh: :(
	bugggg: sorry =-(

37) tuxhedoh: Build Y1 Tuxhedoh

38) bugggg: Move G1 Bugggg Bug2

39) tuxhedoh: Trade Y1 R1 Tuxhedoh

40) bugggg: Build B1 Bug2

41) tuxhedoh: Build B2 Tuxhedoh

42) bugggg: Discover B1 Bug2 Y3 Bug3

43) tuxhedoh: Trade B2 G2 Tuxhedoh

44) bugggg: Move R2 Bug2 Bug3

45) tuxhedoh: Build G1 Tuxhedoh

46) bugggg: Move G1 Bug2 Bug3

47) tuxhedoh: Move G2 Tuxhedoh Bug3

48) bugggg: Attack G2 Bug3

49) tuxhedoh: Build G2 Tuxhedoh

50) bugggg: Move G1 Bug3 Tuxhedoh
Catastrophe Tuxhedoh Green

51) tuxhedoh: Trade B1 G1 Tuxhedoh

52) bugggg: Build G1 Bugggg

53) tuxhedoh: Move R3 Tuxhedoh Bug3

54) bugggg: Move R2 Bug3 Tuxhedoh

55) tuxhedoh: Move R3 Bug3 Tuxhedoh

56) bugggg: Attack G1 Tuxhedoh

57) tuxhedoh: Attack R2S Tuxhedoh

58) bugggg: Move R2 Bugggg Bug2

59) tuxhedoh: Move R1 Tuxhedoh Bug2

60) bugggg: Attack R1 Bug2

61) tuxhedoh: Move R2 Tuxhedoh Bug2
Catastrophe Bug2 Red

62) bugggg: Build B1 Bug3

63) tuxhedoh: Attack G1 Tuxhedoh

64) bugggg: Trade B1 Y1 Bug3

65) tuxhedoh: Build R1 Tuxhedoh

66) bugggg: Build Y2 Bug3

67) tuxhedoh: Move Y1 Tuxhedoh Bug3
Catastrophe Bug3 Yellow

68) bugggg: Build Y1 Bugggg

69) tuxhedoh: Trade R1 Y1 Tuxhedoh

70) bugggg: Build Y2 Bugggg

71) tuxhedoh: Build Y2 Tuxhedoh

72) bugggg: Trade Y2 R2 Bugggg

73) tuxhedoh: Discover R3 Tuxhedoh G3 Tux2

74) bugggg: Build R1 Bugggg

75) tuxhedoh: Build R1 Tux2

76) bugggg: Discover R2 Bugggg G1 Bug2

77) tuxhedoh: Trade Y1 B1 Tuxhedoh

78) bugggg: Build R2 Bug2

79) tuxhedoh: Move B1 Tuxhedoh Tux2

80) bugggg: Move Y1 Bugggg Bug2

81) tuxhedoh: Build R2 Tux2

82) bugggg: Move R2 Bug2 Tux2
Catastrophe Tux2 Red

83) tuxhedoh: Build G2 Tuxhedoh

84) bugggg: Move R2 Bug2 Tuxhedoh

85) tuxhedoh: Trade G2 R2 Tuxhedoh

86) bugggg: Attack R2 Tuxhedoh



22334)
Variants: "Hard time"
Started: 2012.7.8, Ended: 2012.8.3
Participants: dlwillson (S), SilentTitan (N)
Winner: dlwillson

1) SilentTitan: Homeworld B3 R2 G3

2) dlwillson: Homeworld Y1 B3 G3

3) SilentTitan: Build G1 Silenttitan

4) dlwillson: Build G1 Dlwillson

5) SilentTitan: Trade G1 Y1 Silenttitan

6) dlwillson: Trade G1 Y1 Dlwillson

7) SilentTitan: Build Y2 Silenttitan

8) dlwillson: Build Y2 Dlwillson

9) SilentTitan: Build Y2 Silenttitan

10) dlwillson: D Y1 Dlwillson G2 Forest

11) SilentTitan: Trade Y2 R2 Silenttitan

12) dlwillson: B Y2 Dlwillson

13) SilentTitan: Discover Y1 Silenttitan B1 Sol

14) dlwillson: Trade Y2 R2 Dlwillson

15) SilentTitan: Build Y2 Silenttitan

16) dlwillson: Build Y3 Forest

17) SilentTitan: Discover Y2 Silenttitan G1 Soul

18) dlwillson: M Y3 Forest Sol
	SilentTitan: Little bored at work today?

19) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Soul
Build Y3 Silenttitan
Build R1 Silenttitan

20) dlwillson: T Y3 R3 Sol

21) SilentTitan: Sacrifice Y2 Soul
Discover Y1 Sol Y3 Sole
Discover R1 Silenttitan G1 Tic

22) dlwillson: D Y2 Dlwillson B2 Sky

23) SilentTitan: Trade Y2 B2 Silenttitan

24) dlwillson: Build G1 Dlwillson

25) SilentTitan: Trade Y3 G3 Silenttitan

26) dlwillson: Build Y2 Forest

27) SilentTitan: Move Y3 Soul Silenttitan

28) dlwillson: Move Y2 Forest Tic

29) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sole
Build Y3 Silenttitan
Build B1 Silenttitan

30) dlwillson: M Y1 Forest Sole
C Sole Y

31) SilentTitan: Move Y3 Silenttitan Tic
	dlwillson: Sorry it took me so long to make that stupid-ass move. Really, I should be able to come up with something better in two days. I suck. Sorry.

32) dlwillson: B Y1 Tic

33) SilentTitan: Sacrifice B2 Silenttitan
Trade Y3 G3 Tic
Trade R1 B1 Tic

34) dlwillson: Move Y2 Tic Sky

35) SilentTitan: Sacrifice G3 Tic
Build B2 Silenttitan
Build B2 Tic
Build B3 Tic

36) dlwillson: Build Y1 Tic

37) SilentTitan: Trade B3 R3 Tic

38) dlwillson: S Y1 Tic
D R3 Sol G2 Field

39) SilentTitan: Attack Y1 Tic South

40) dlwillson: Trade G1 B1 Dlwillson

41) SilentTitan: Discover B1 Tic G2 Tac

42) dlwillson: D Y2 Sky B3 Sea

43) SilentTitan: Discover B2 Tic Y2 Sol

44) dlwillson: M B1 Dlwillson Field

45) SilentTitan: Trade B1 Y1 Silenttitan

46) dlwillson: Sacrifice G3 Dlwillson
Build R1 Dlwillson
Build Y3 Sky
Build Y3 Sea

47) SilentTitan: Sacrifice Y3 Silenttitan
Move R3 Tic Sol
Move B2 Sol Dlwillson
Move B1 Tac Dlwillson

48) dlwillson: Sacrifice Y3 Sea
Move B1 Field Dlwillson
Move Y3 Sky Tic
Move Y3 Tic Silenttitan
Catastrophe Dlwillson B

	dlwillson: My leg looked pretty bad. I decided to amputate.
	SilentTitan: Took what I thought was my best shot ... turns out I missed anticipating your following move.. nicely played


22520)
Variants: "Unrated"
Started: 2012.7.9, Ended: 2012.7.11
Participants: bugggg (S), tuxhedoh (N)
Winner: tuxhedoh

1) tuxhedoh: Homeworld G1 B3 Y3

2) bugggg: Homeworld B1 Y3 G3

3) tuxhedoh: Build Y1 Tuxhedoh

4) bugggg: Build G1 Bugggg

5) tuxhedoh: Trade Y1 R1 Tuxhedoh

6) bugggg: Trade G3 R3 Bugggg

7) tuxhedoh: Build Y1 Tuxhedoh

8) bugggg: Discover R3 Bugggg G2 Bug2

9) tuxhedoh: Trade Y1 B1 Tuxhedoh

10) bugggg: Build G1 Bugggg

11) tuxhedoh: Build Y1 Tuxhedoh

12) bugggg: Trade G1 Y1 Bugggg

13) tuxhedoh: Trade Y1 G1 Tuxhedoh

14) bugggg: Move Y1 Bugggg Bug2

15) tuxhedoh: Build G2 Tuxhedoh

16) bugggg: Move R3 Bug2 Tuxhedoh

17) tuxhedoh: Attack R3 Tuxhedoh

18) bugggg: Build G2 Bugggg

19) tuxhedoh: Move G2 Tuxhedoh Bug2
	tuxhedoh: yeah. I'm not convinced a head on attack like that is gonna work.
	bugggg: wait, how did that happen?! i must not understand the rules... i thought that the attacking ship had to be the same size or larger?

20) bugggg: Build Y1 Bug2

21) tuxhedoh: Build G3 Tuxhedoh

22) bugggg: Move Y1 Bug2 Bugggg
	bugggg: nope, can only undo the current turn

23) tuxhedoh: Trade G3 B3 Tuxhedoh

24) bugggg: Trade G2 R2 Bugggg

25) tuxhedoh: Build Y1 Tuxhedoh

26) bugggg: Build R1 Bugggg

27) tuxhedoh: M R3 Tuxhedoh Bug2

28) bugggg: Build R1 Bugggg

29) tuxhedoh: Attack Y1 Bug2

30) bugggg: Build G2 Bugggg

31) tuxhedoh: Build Y2 Tuxhedoh

32) bugggg: Trade G1 B1 Bugggg

33) tuxhedoh: Sacrifice Y2 Tuxhedoh
Move R1 Tuxhedoh Bug2
Move R1 Bug2 Bugggg
Catastrophe Bugggg Red

34) bugggg: Build G1 Bugggg

35) tuxhedoh: Move R3 Bug2 Bugggg

36) bugggg: Trade Y1 R1 Bugggg

37) tuxhedoh: Attack R1 Bugggg

38) bugggg: Trade B1 R1 Bugggg

39) tuxhedoh: Move G2 Bug2 Bugggg

40) bugggg: Trade G1 R1 Bugggg
Catastrophe Bugggg Red

41) tuxhedoh: Trade G2 R2 Bugggg

	bugggg: there's no way that i can recover in this game... i misunderstood the rules in the beginning =-( going to resign.
	bugggg: let's play another one.


22483)
Started: 2012.7.11, Ended: 2012.7.15
Participants: ts52 (S), tuxhedoh (N)
Winner: tuxhedoh

1) tuxhedoh: Homeworld G1 B2 R3

	tuxhedoh: Hey!
	ts52: Sorry, I was on vacation. Feel free to challenge me again.


22530)
Started: 2012.7.11, Ended: 2012.7.17
Participants: bugggg (S), tuxhedoh (N)
Winner: tuxhedoh

1) tuxhedoh: Homeworld G1 B2 R3 Tux

2) bugggg: Homeworld B1 R2 G3

3) tuxhedoh: Build R1 Tuxhedoh
	tuxhedoh: do you realize that by making your homeworld the same size as mine that it only makes us 1 star apart?

4) bugggg: Build G1 Bugggg

5) tuxhedoh: Trade R1 Y1 Tuxhedoh

6) bugggg: Build G1 Bugggg
	bugggg: yeah i do, but i hope to have a big enough fleet by then! heh
	bugggg: but i'm still learning too

7) tuxhedoh: Build Y1 Tuxhedoh

8) bugggg: Trade G1 Y1 Bugggg

9) tuxhedoh: Build Y2 Tuxhedoh

10) bugggg: Build Y2 Bugggg

11) tuxhedoh: Build R1 Tuxhedoh

12) bugggg: Trade Y2 R2 Bugggg

13) tuxhedoh: Trade Y1 B1 Tuxhedoh

14) bugggg: Build Y1 Bugggg

15) tuxhedoh: Build Y2 Tuxhedoh

16) bugggg: Build Y2 Bugggg

17) tuxhedoh: Sacrifice Y2 Tuxhedoh
Discover Y1 Tuxhedoh Y3 Tux0
Move Y1 Tux0 Bugggg
Catastrophe Bugggg Yellow

18) bugggg: Build G1 Bugggg
	tuxhedoh: Most complicated move I've made... sacrificed y2, got to move twice, 1st move into new system, 2nd move into your system, catastrophe

19) tuxhedoh: Build Y1 Tuxhedoh
	bugggg: oh shoot i didn't realize that you could do it that way, i thought that discover and move somehow couldn't be done together like that i guess. i knew about the sacrifice trick though (look up "the bluebird mistake" on youtube)

20) bugggg: Trade G1 B1 Bugggg

21) tuxhedoh: Trade Y1 G1 Tuxhedoh

22) bugggg: Build B2 Bugggg

23) tuxhedoh: Build Y1 Tuxhedoh

24) bugggg: Trade B2 Y2 Bugggg

25) tuxhedoh: Build G2 Tuxhedoh

26) bugggg: Build B2 Bugggg

27) tuxhedoh: Sacrifice Y2 Tuxhedoh
Discover B1 Tuxhedoh Y3 Tux0
Move B1 Tux0 Bugggg
Catastrophe Bugggg Blue

28) bugggg: Sacrifice Y2 Bugggg
Discover G1 Bugggg Y3 Bug2
Move G1 Bug2 Tuxhedoh
Catastrophe Tuxhedoh Green
	tuxhedoh: I know one strategy. was scared you were going to use it on me prior to my turn.
	bugggg: darnit! i was going to swap that guy, didn't realize that you'd be able to get me on that turn!

29) tuxhedoh: Trade R1 G1 Tuxhedoh
	bugggg: ahhhhhhhh i seeeee how it works now
	bugggg: oh wow am i stuck now? i don't see how i could move or swap at this point...
	bugggg: unless of course i kill one of your guys
	tuxhedoh: yeah. that was the same move that you could've done a turn earlier


30) bugggg: Build G1 Bugggg

31) tuxhedoh: Build R1 Tuxhedoh

32) bugggg: Pass

33) tuxhedoh: Trade R3 Y3 Tuxhedoh

34) bugggg: Pass

35) tuxhedoh: Build R1 Tuxhedoh

36) bugggg: Pass

37) tuxhedoh: Discover R1 Tuxhedoh Y3 Tux1
	tuxhedoh: Passing to see if I can figure out the win? :D

38) bugggg: Pass
	bugggg: WELL NOW I'M DEAD, I HOPE THAT YOU'RE SATISFIED. you'll definitely win on the next turn.

39) tuxhedoh: Sacrifice Y3 Tuxhedoh
Move R1 Tuxhedoh Tux1
Move R1 Tux1 Bugggg
Move R1 Tux1 Bugggg
Catastrophe Bugggg Red



22557)
Started: 2012.7.15, Ended: 2012.7.22
Participants: pgadey (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: H R2 B1 G3

2) pgadey: Homeworld G3 R2 B3
	Mandrel: Have a good game

3) Mandrel: Build G1 Mandrel

4) pgadey: Trade B3 G3 Pgadey

5) Mandrel: Trade G1 Y1 Mandrel



22574)
Started: 2012.7.16, Ended: 2012.7.27
Participants: swatter (S), bugggg (N)
Winner: bugggg

1) bugggg: Homeworld R1 B2 G3

2) swatter: Homeworld R2 B3 G3

3) bugggg: Build G1 Bugggg

4) swatter: Build G1 Swatter

5) bugggg: Build G1 Bugggg

6) swatter: Build G2 Swatter

7) bugggg: Trade G1 Y1 Bugggg

8) swatter: Build G1 Swatter

9) bugggg: Trade G3 Y3 Bugggg

10) swatter: Trade G1 Y1 Swatter

11) bugggg: Sacrifice Y3 Bugggg
Discover G1 Bugggg Y3 Genocyber
Discover G1 Genocyber Y1 Ranma
Move G1 Ranma Swatter
Catastrophe Swatter Green

12) swatter: Trade Y1 G1 Swatter

13) bugggg: Trade Y1 G1 Bugggg

14) swatter: Build G1 Swatter

15) bugggg: Build G2 Bugggg

16) swatter: Trade G1 R1 Swatter

17) bugggg: Trade G1 Y1 Bugggg

18) swatter: Build R1 Swatter

19) bugggg: Build Y1 Bugggg

20) swatter: Pass

21) bugggg: Discover Y1 Bugggg Y3 Moss



22531)
Started: 2012.7.17, Ended: 2012.8.27
Participants: ts52 (S), tuxhedoh (N)
Winner: ts52

1) tuxhedoh: Homeworld G1 B2 Y3

2) ts52: Homeworld B1 Y3 G3

3) tuxhedoh: Build Y1 Tuxhedoh
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) tuxhedoh: Trade Y1 R1 Tuxhedoh

6) ts52: Build G1 Ts52

7) tuxhedoh: Build R1 Tuxhedoh

8) ts52: Discover G1 Ts52 B2 Grover

9) tuxhedoh: Trade R1 Y1 Tuxhedoh

10) ts52: Build G2 Grover

11) tuxhedoh: Trade Y3 G3 Tuxhedoh
	tuxhedoh: Don't remember what I was wanting to do...

12) ts52: Trade G2 R2 Grover
	tuxhedoh: That was it, figuring out how to get a green ship of my very own.

13) tuxhedoh: Build G2 Tuxhedoh

14) ts52: Build G2 Grover

15) tuxhedoh: Build Y1 Tuxhedoh

16) ts52: T G2 Y2 Grover

17) tuxhedoh: Discover G2 Tuxhedoh B3 Ralph

18) ts52: Build G2 Grover

19) tuxhedoh: Build R1 Tuxhedoh

20) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build G3 Ts52

21) tuxhedoh: Move Y1 Tuxhedoh Ralph

22) ts52: Discover G2 Grover Y3 Bigbird

23) tuxhedoh: Build Y1 Ralph

24) ts52: Move G1 Grover Bigbird

25) tuxhedoh: Sacrifice G3 Tuxhedoh
Build R1 Tuxhedoh
Build Y2 Tuxhedoh
Build G3 Ralph

26) ts52: Discover G3 Ts52 B2 Gonzo

27) tuxhedoh: Move R1 Tuxhedoh Ralph

28) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Grover
Build R2 Grover

29) tuxhedoh: Sacrifice G3 Ralph
Build R2 Ralph
Build Y3 Tuxhedoh
Build G3 Ralph

30) ts52: Sacrifice Y2 Grover
Move Y2 Grover Bigbird
Move Y2 Bigbird Tuxhedoh
Catastrophe Tuxhedoh Yellow

31) tuxhedoh: Sacrifice G3 Ralph
Build G3 Ralph
Build R3 Tuxhedoh
Build Y1 Ralph
	tuxhedoh: Sorry, had a small crisis to deal with that had me distracted from playing.   TBH, I'm not sure what I should do at this point.

32) ts52: Trade R2 Y2 Grover

33) tuxhedoh: Move Y1 Ralph Tuxhedoh
	ts52: No worries. Hope it was nothing too serious.

34) ts52: Sacrifice Y2 Grover
Move R2 Grover Bigbird
Move R2 Bigbird Tuxhedoh
Catastrophe Tuxhedoh Red
	tuxhedoh: Complete power failure at work, rented a generator, whole 9 yards.
	ts52: Ugh, that sucks.

35) tuxhedoh: Pass

36) ts52: Trade G2 R2 Grover
	tuxhedoh: I got no idea in this game...



22585)
Started: 2012.7.18, Ended: 2012.8.3
Participants: bugggg (S), tuxhedoh (N)
Winner: tuxhedoh

1) tuxhedoh: Homeworld Y1 B2 G3

2) bugggg: Homeworld B3 R1 G3

3) tuxhedoh: Build G1 Tuxhedoh

4) bugggg: Build G1 Bugggg

5) tuxhedoh: Trade G1 Y1 Tuxhedoh

6) bugggg: Trade G1 Y1 Bugggg

7) tuxhedoh: Build Y2 Tuxhedoh

8) bugggg: Build Y2 Bugggg

9) tuxhedoh: Trade Y1 R1 Tuxhedoh

10) bugggg: Trade Y2 R2 Bugggg

11) tuxhedoh: Build G1 Tuxhedoh

12) bugggg: Build G1 Bugggg

13) tuxhedoh: Build G1 Tuxhedoh

14) bugggg: Trade R2 Y2 Bugggg

15) tuxhedoh: Discover G1 Tuxhedoh Y3 Ralph

16) bugggg: Build G2 Bugggg

17) tuxhedoh: Sacrifice G3 Tuxhedoh
Build G2 Ralph
Build G2 Tuxhedoh
Build G3 Ralph

18) bugggg: Sacrifice Y2 Bugggg
Discover G1 Bugggg Y2 Skeeter
Move G1 Skeeter Ralph
Catastrophe Ralph Green

19) tuxhedoh: Build Y1 Tuxhedoh
	bugggg: how was that one?

20) bugggg: Trade G3 Y3 Bugggg

21) tuxhedoh: Trade Y1 B1 Tuxhedoh

22) bugggg: Build G1 Bugggg

23) tuxhedoh: Discover G1 Tuxhedoh Y3 Tux2

24) bugggg: Trade G1 B1 Bugggg

25) tuxhedoh: Build G1 Tuxhedoh

26) bugggg: Build G1 Bugggg

27) tuxhedoh: Build R1 Tuxhedoh

28) bugggg: Discover Y1 Bugggg Y2 Bug2

29) tuxhedoh: Move R1 Tuxhedoh Tux2

30) bugggg: Move B1 Bugggg Bug2

31) tuxhedoh: Build R2 Tux2

32) bugggg: Move G1 Bugggg Bug2

33) tuxhedoh: Move R2 Tux2 Bug2

34) bugggg: Build G2 Bugggg

35) tuxhedoh: Attack G1 Bug2

36) bugggg: Sacrifice G2 Bugggg
Build Y1 Bug2
Build Y2 Bug2
Catastrophe Bug2 Yellow

37) tuxhedoh: Discover G1 Tux2 G2 Tux3

38) bugggg: Build Y1 Bugggg

39) tuxhedoh: Build G1 Tux3

40) bugggg: Build Y1 Bugggg

41) tuxhedoh: Move G1 Tuxhedoh Tux2

42) bugggg: Trade Y1 B1 Bugggg

43) tuxhedoh: Build G3 Tux2

44) bugggg: Move B1 Bugggg Tux3

45) tuxhedoh: Move B1 Tuxhedoh Tux2

46) bugggg: Move Y1 Bugggg Tux3

47) tuxhedoh: Sacrifice G3 Tux2
Build G3 Tux2
Build G3 Tuxhedoh
Build B1 Tux2

48) bugggg: Build G3 Bugggg

49) tuxhedoh: Trade G3 R3 Tux2

50) bugggg: Trade G2 R2 Bugggg

51) tuxhedoh: Sacrifice G3 Tuxhedoh
Build G2 Tux2
Build G3 Tuxhedoh
Build G3 Tuxhedoh

52) bugggg: Move Y1 Tux3 Bugggg

53) tuxhedoh: Move B1 Tux2 Tux3

54) bugggg: Sacrifice R2 Bugggg
Attack G1 Tux3
Attack B1 Tux3

55) tuxhedoh: Move R3 Tux2 Tux3

56) bugggg: Trade B1 Y1 Tux3

57) tuxhedoh: Build R2 Tux2

58) bugggg: Build Y2 Tux3

59) tuxhedoh: Sacrifice R2 Tux2
Attack G1 Tux3
Attack B1 Tux3

60) bugggg: Sacrifice Y2 Tux3
Move Y3 Bugggg Tux3
Move Y3 Tux3 Tux2

61) tuxhedoh: Attack Y1 Tux3

62) bugggg: Build Y2 Bugggg

63) tuxhedoh: Sacrifice G3 Tuxhedoh
Build G3 Tuxhedoh
Build B1 Tux3
Build B2 Tux3

64) bugggg: Move G3 Bugggg Tux3
Catastrophe Tux3 Green

65) tuxhedoh: Discover G2 Tux2 B2 Tux4

66) bugggg: Trade Y1 G1 Bugggg

67) tuxhedoh: Build R2 Tux2

68) bugggg: Build Y1 Bugggg

69) tuxhedoh: Build G1 Tux4

70) bugggg: Trade Y2 R2 Bugggg

71) tuxhedoh: Discover G2 Tuxhedoh Y3 Tux5

72) bugggg: Build G2 Bugggg

73) tuxhedoh: Sacrifice G3 Tuxhedoh
Build G3 Tux5
Build G3 Tuxhedoh
Build R2 Tux2

74) bugggg: Build Y1 Bugggg

75) tuxhedoh: Trade G3 B3 Tuxhedoh

76) bugggg: Move Y3 Tux2 Tux4

77) tuxhedoh: Move B3 Tuxhedoh Tux5

78) bugggg: Move Y1 Bugggg Tux4

79) tuxhedoh: Move R2 Tux2 Tux4

80) bugggg: Move Y1 Tux4 Tux5

81) tuxhedoh: Sacrifice G3 Tuxhedoh
Build G3 Tux2
Build R3 Tux4
Build R3 Tuxhedoh

82) bugggg: Move Y3 Tux4 Bugggg

83) tuxhedoh: Sacrifice Y2 Tuxhedoh
Move R3 Tux4 Bugggg
Move R2 Tux4 Bugggg
Catastrophe Bugggg Red

84) bugggg: Sacrifice G1 Bugggg
Build Y2 Bugggg

85) tuxhedoh: Trade G2 Y2 Tux5

86) bugggg: Sacrifice Y3 Bugggg
Move Y1 Tux5 Tuxhedoh
Move Y1 Bugggg Tuxhedoh
Move Y2 Bugggg Tuxhedoh
Catastrophe Tuxhedoh Yellow

87) tuxhedoh: Move G1 Tux2 Tux4

88) bugggg: Build G1 Bugggg

89) tuxhedoh: Sacrifice Y2 Tux5
Move G2 Tux4 Bugggg
Move G1 Tux4 Bugggg
Catastrophe Bugggg G

	bugggg: OOOOOOPS. oh well.


22602)
Variants: "Hard time"
Started: 2012.7.20, Ended: 2012.10.25
Participants: ts52 (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld R1 B2 G3

2) ts52: Homeworld B1 Y3 G3

3) MagicJohn: Build G1 Magicjohn
	ts52: Have a good game!
	MagicJohn: Most of my wins have been forfeits. I'm probably out of my depth so I'm hoping for a real steep learning curve.....   Have a good game!

4) ts52: Build G1 Ts52

5) MagicJohn: Trade G1 Y1 Magicjohn

6) ts52: Discover G1 Ts52 B2 Grover

7) MagicJohn: Build G1 Magicjohn

8) ts52: Build G1 Ts52

9) MagicJohn: Discover G1 Magicjohn Y3 Bisbee

10) ts52: Build G2 Grover

11) MagicJohn: Discover Y1 Magicjohn G3 Flagstaff

12) ts52: Trade G2 Y2 Grover

13) MagicJohn: Build G2 Magicjohn

14) ts52: Build G2 Grover

15) MagicJohn: Build G2 Bisbee

16) ts52: Trade G2 R2 Grover

17) MagicJohn: Trade G2 R2 Magicjohn

18) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G2 Grover
Build G3 Ts52

19) MagicJohn: Discover G1 Bisbee Y2 Tombstone

20) ts52: Trade G2 B2 Ts52

21) MagicJohn: Build G2 Magicjohn

22) ts52: Move B2 Ts52 Tombstone

23) MagicJohn: Trade G2 Y2 Magicjohn

24) ts52: Build R1 Grover

25) MagicJohn: Build G2 Magicjohn

26) ts52: Sacrifice R1 Grover
Attack G1 Tombstone

27) MagicJohn: Move R2 Magicjohn Bisbee

28) ts52: Build R1 Grover

29) MagicJohn: Build Y1 Magicjohn

30) ts52: Move R2 Grover Flagstaff

31) MagicJohn: Discover Y1 Flagstaff R2 Sunflower

32) ts52: Move Y2 Grover Flagstaff

33) MagicJohn: Move Y1 Magicjohn Bisbee

34) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Grover
Build R3 Flagstaff

35) MagicJohn: Sacrifice G3 Magicjohn
Build G3 Magicjohn
Build Y1 Sunflower
Build Y3 Magicjohn

36) ts52: M R2 Flagstaff Sunflower

37) MagicJohn: Sacrifice Y2 Magicjohn
Move Y1 Sunflower Ts52
Move Y1 Sunflower Ts52
Pass

38) ts52: Sacrifice R2 Sunflower
Attack Y1 Ts52
Attack Y1 Ts52

39) MagicJohn: Sacrifice Y3 Magicjohn
Move Y1 Bisbee Grover
Move Y1 Grover Ts52
Pass
Catastrophe Ts52 Yellow

40) ts52: Build B1 Tombstone

41) MagicJohn: Trade G3 Y3 Magicjohn

42) ts52: Trade G1 Y1 Ts52

43) MagicJohn: Build Y1 Magicjohn

44) ts52: Trade R1 Y1 Grover

45) MagicJohn: Move Y1 Magicjohn Bisbee

46) ts52: Sacrifice Y2 Flagstaff
Move Y1 Grover Bisbee
Move Y1 Ts52 Bisbee
Catastrophe Bisbee Yellow

47) MagicJohn: Build G1 Magicjohn
	MagicJohn: oops

48) ts52: Move B1 Tombstone Flagstaff

49) MagicJohn: Discover G1 Magicjohn G3 Tempe

50) ts52: Trade G1 Y1 Grover

51) MagicJohn: Build Y1 Magicjohn

52) ts52: Build B1 Flagstaff

53) MagicJohn: Move Y1 Magicjohn Tempe

54) ts52: Build B3 Flagstaff

55) MagicJohn: Trade Y3 B3 Magicjohn

56) ts52: Trade B3 Y3 Flagstaff

57) MagicJohn: Trade B3 Y3 Magicjohn

58) ts52: Build B3 Tombstone

59) MagicJohn: Discover G2 Magicjohn B3 Ajo

60) ts52: Trade B3 R3 Tombstone

61) MagicJohn: Build Y1 Tempe

62) ts52: Move R3 Tombstone Tempe

63) MagicJohn: Build G1 Ajo
	MagicJohn: Tactics 101: Apparently one should not knock out an opponent's base star early in the game just because it is possible...... 

64) ts52: Attack Y1 Tempe

65) MagicJohn: Move G1 Tempe Magicjohn
	ts52: Yeah, just because you can, doesn't always mean you should.

66) ts52: Attack Y1 Tempe
	MagicJohn: But it was kinda fun.......

67) MagicJohn: Build G2 Magicjohn

68) ts52: Build B3 Flagstaff

69) MagicJohn: Discover G1 Magicjohn B3 Payson

70) ts52: Build Y2 Grover

71) MagicJohn: Sacrifice Y3 Magicjohn
Move G1 Payson Ts52
Move G2 Ajo Ts52
Move G1 Ajo Ts52
Catastrophe Ts52 Green
	MagicJohn: Thanks for the game. Can't believe I won that mess. Sorry about taking so long between moves. My wife's been sick and my sleep patterns have been erratic, so I have been avoiding play if I'm obviously too spacey (pun intended) to initiate reasonably good moves. I know that my slow play makes it difficult for my opponents to stay engaged in the games. Take care. 
	ts52: Wow. Well done. Way to catch me napping, and lull me into a false sense of security. Good game.
	ts52: Don't worry about the slow play. That's the whole point of SDG, to let play continue around life. Hope your wife is feeling better.



21932)
Variants: "Sinister"
Started: 2012.7.20, Ended: 2012.9.6
Participants: Uglyfoot (S), goblin981 (W), alihv (N), Mandrel (E)
Winner: Uglyfoot

1) alihv: Homeworld R1 B2 G3

2) Mandrel: Homeworld R3 B2 G3
	alihv: hi, have fun

3) Uglyfoot: Homeworld B3 Y1 G3

4) goblin981: H G3 B2 Y3

5) alihv: B G1 Alihv

6) Mandrel: Build G1 Mandrel

7) Uglyfoot: Build G1 Uglyfoot

8) goblin981: B Y1 Goblin981

9) alihv: T G1 Y1 Alihv

10) Mandrel: Trade G1 Y1 Mandrel

11) Uglyfoot: Trade G1 R1 Uglyfoot

12) goblin981: T Y1 R1 Goblin981

13) alihv: B Y1 Alihv

14) Mandrel: Build G1 Mandrel

15) Uglyfoot: Build G1 Uglyfoot

16) goblin981: B Y1 Goblin981

17) alihv: T Y1 R1 Alihv

18) Mandrel: Discover G1 Mandrel B1 Running

19) Uglyfoot: Discover G1 Uglyfoot R2 Redone

20) goblin981: B R1 Goblin981

21) alihv: D R1 Alihv G3 Freepussyriot

22) Mandrel: Build G1 Running
	goblin981: Anyone watching the Olympics?  Where you guys from?
	goblin981: Anyone watching the Olympics?  Where you guys from?

23) Uglyfoot: Build G1 Uglyfoot

24) goblin981: D R1 Goblin981 Y1 Alpha

25) alihv: B Y2 Alihv

26) Mandrel: Build Y2 Mandrel

27) Uglyfoot: Build R2 Uglyfoot

28) goblin981: B Y2 Goblin981

29) alihv: M Y1 Alihv Freepussyriot

30) Mandrel: Move Y1 Mandrel Running

31) Uglyfoot: Trade R2 Y2 Uglyfoot

32) goblin981: M Y2 Goblin981 Running

33) alihv: Sacrifice G3 Alihv
Build Y2 Freepussyriot
Build R2 Freepussyriot
Build Y3 Alihv

34) Mandrel: Build Y3 Mandrel

35) Uglyfoot: Build R2 Uglyfoot

36) goblin981: T Y2 R2 Running

37) alihv: M Y2 Freepussyriot Redone

38) Mandrel: S Y3 Mandrel
M Y1 Running Goblin981
M G1 Running Goblin981
M G1 Running Goblin981

39) Uglyfoot: Trade R1 B1 Uglyfoot

40) goblin981: S R2 Running
Attack G1E Goblin981
Attack G1E Goblin981

41) alihv: Trade Y3 G3 Alihv

42) Mandrel: B Y2 Goblin981
C Goblin981 Y

43) Uglyfoot: Discover R2 Uglyfoot B2 Blueone

44) goblin981: T G1 Y1 Goblin981

45) alihv: A G1S Redone

46) Mandrel: Build G1 Mandrel

47) Uglyfoot: Move G1 Uglyfoot Blueone

48) goblin981: M G1 Goblin981 Alpha

49) alihv: Sacrifice Y2 Redone
Move G1 Redone Alpha
Move G1 Alpha Mandrel

50) Mandrel: Attack G1N Mandrel

51) Uglyfoot: Build R1 Blueone

52) goblin981: M G1 Alpha Mandrel
Catastrophe Mandrel G

53) alihv: Build G1 Alihv

54) Mandrel: Trade Y2 G2 Mandrel

55) Uglyfoot: Sacrifice Y2 Uglyfoot
Move R2 Blueone Alpha
Move R2 Alpha Goblin981

56) goblin981: B Y1 Goblin981

57) alihv: Move G3 Alihv Freepussyriot

58) Mandrel: Build G1 Mandrel

59) Uglyfoot: Attack R1W Goblin981

60) goblin981: Discover R1 Alpha Y2 Beta

61) alihv: Discover G3 Freepussyriot Y1 Good_game

62) Mandrel: Trade G2 Y2 Mandrel

63) Uglyfoot: Sacrifice R2 Goblin981
Attack Y1W Goblin981
Attack Y1W Goblin981



22593)
Variants: "Hard time"
Started: 2012.7.20, Ended: 2012.7.26
Participants: ajo (S), Danner (N)
Winner: Danner

1) Danner: Homeworld B1 R2 G3

2) ajo: Homeworld G3 Y2 B3
	Danner: Hi! Have a nice game!

3) Danner: Build G1 Danner

4) ajo: Build B1 Ajo

5) Danner: Trade G3 B3 Danner

6) ajo: Discover B1 Ajo B1 Alpha

7) Danner: Build B2 Danner

8) ajo: Build B2 Ajo

9) Danner: Trade B3 Y3 Danner

10) ajo: Trade B2 Y2 Ajo

11) Danner: Discover B2 Danner G3 Beta

12) ajo: Build B2 Ajo

13) Danner: Build B2 Beta

14) ajo: Build B3 Ajo

15) Danner: Sacrifice Y3 Danner
Move B2 Beta Alpha
Move B2 Alpha Ajo
Pass
Catastrophe Ajo B

16) ajo: Trade B1 G1 Alpha

17) Danner: Build B1 Beta
	ajo: "You maniacs! You finally did it! You blew it all up!"
	Danner: :-D

18) ajo: Build G1 Alpha

19) Danner: Build G2 Danner

20) ajo: Build G2 Alpha

21) Danner: Build G2 Danner

22) ajo: Trade G1 Y1 Alpha

23) Danner: Trade G2 Y2 Danner

24) ajo: Trade G2 R2 Alpha

25) Danner: Trade B2 R2 Beta

26) ajo: Build R1 Alpha

27) Danner: Build Y1 Danner

28) ajo: Trade R2 B2 Alpha

29) Danner: Move Y1 Danner Beta

30) ajo: Build R1 Alpha

31) Danner: Sacrifice G2 Danner
Build Y1 Danner
Build Y3 Beta
	ajo: I'm just gonna keep edging out farther and farther on this limb I'm on...

32) ajo: Move B2 Alpha Ajo
	Danner: The building of the mothership has been completed, our civilization has been restored!

33) Danner: Build Y3 Danner

34) ajo: Sacrifice Y2 Ajo
Move Y1 Alpha Beta
Move Y1 Beta Danner
Catastrophe Danner Yellow

35) Danner: Move Y3 Beta Alpha

	ajo: Put a fork in me, I'm done. :P  Play again?
	Danner: I would prefer not to, sorry. It distracts me from my project. But I don't really have a choice if it's a ladder challenge. :) Thanks for the game!


22296)
Variants: "Hard time"
Started: 2012.7.22, Ended: 2012.7.24
Participants: pgadey (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3



22647)
Variants: "Hard time"
Started: 2012.7.28, Ended: 2012.8.5
Participants: dlwillson (S), Danner (N)
Winner: Danner

1) Danner: Homeworld B1 R2 G3

2) dlwillson: H B3 Y1 G3 Dlwillson
	Danner: Hi!
I would like to apologize in advance: this game is likely to be slow.

3) Danner: Build G1 Danner

4) dlwillson: B G1 Dlwillson

5) Danner: Trade G1 Y1 Danner
	dlwillson: That wasn't slow... :-)
	dlwillson: That wasn't slow... :-)

6) dlwillson: T G1 B1 Dlwillson
	Danner: I just wanted to fill my time bank. Sorry again, but I must concentrate on my project now.

7) Danner: Build Y1 Danner
	dlwillson: NP. See you after. May I ask about your project?

8) dlwillson: B B1 Dlwillson
	Danner: Of course. :) It's a strategy browser game, still in early development.

9) Danner: Build Y2 Danner

10) dlwillson: D B1 Dlwillson G2 Field

11) Danner: Discover Y1 Danner B3 Ocean
	dlwillson: It'd be stunning if it were a strategy game we both know and love and love to play...
	Danner: Like Homeworlds? :D
Well, this game is in Hungarian. It's unlikely that it will be worthy to be translated.
Btw, it's weekend, I guess I can have some fun on SDG. :)

12) dlwillson: B B2 Field
	dlwillson: Danner, you are one of my favorite opponents!

13) Danner: Sacrifice G3 Danner
Build Y2 Ocean
Build Y2 Ocean
Build Y3 Danner
	Danner: I'm glad to hear that. :)

14) dlwillson: B B2 Dlwillson
	dlwillson: Hm. You ~ were ~ one of my favorite opponents... :-)

15) Danner: Trade Y3 G3 Danner
	Danner: :-D

16) dlwillson: D B2 Dlwillson G2 Forest

17) Danner: Build Y3 Danner

18) dlwillson: B G1 Dlwillson

19) Danner: Trade Y3 B3 Danner
	dlwillson: Sorry for the take-back...

20) dlwillson: T G3 Y3 Dlwillson
	dlwillson: Or, um, never mind? I tried to take a move back, but it didn't work. Now I have what I have. I suppose this will all be over sooon... :-)

21) Danner: Build Y3 Danner
	Danner: Maybe I made my move too fast?

22) dlwillson: B G1 Dlwillson

23) Danner: Discover Y1 Ocean G2 Hill

24) dlwillson: D G1 Dlwillson B2 Sky

25) Danner: Sacrifice Y3 Danner
Move Y2 Ocean Hill
Move Y1 Hill Dlwillson
Move Y2 Hill Dlwillson
Catastrophe Dlwillson Y

26) dlwillson: T B1 Y1 Dlwillson

27) Danner: Move B3 Danner Dlwillson

28) dlwillson: B G1 Dlwillson
	dlwillson: Airplane taking off. I'll check back when we land.
	Danner: Ok.
	dlwillson:  Oop. Never mind. Good game. See you next time.
	Danner: Have a nice flight!

29) Danner: Trade B3 R3 Dlwillson
	dlwillson: I lost this one on the sixth or seventh turn, and you played perfectly. Good game.

30) dlwillson: S B2 Field
T Y1 R1 Dlwillson
T G1 R1 Dlwillson
	Danner: Thanks.

31) Danner: Attack G1S Dlwillson

32) dlwillson: A G1 Dlwillson

33) Danner: Move Y2 Danner Dlwillson
	dlwillson: No... :-)
	Danner: Infinite loop, yay! :)

34) dlwillson: B R1 Dlwillson
C Dlwillson R

35) Danner: Trade Y2 R2 Dlwillson

36) dlwillson: Build G1 Dlwillson

37) Danner: Attack G1S Dlwillson

38) dlwillson: B G2 Dlwillson

39) Danner: Build G3 Dlwillson
Catastrophe Dlwillson G
	Danner: Good game.



22668)
Variants: "Hard time"
Started: 2012.8.3, Ended: 2012.8.9
Participants: Aristos (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) Aristos: Homeworld G2 B1 Y3

3) TwoShort: Build G1 Twoshort
	TwoShort: Howdy

4) Aristos: Build Y1 Aristos
	Aristos: Well met. I probably won't be moving further tonight, but I'll try to move again in the morning if you move soon.

5) TwoShort: Trade G1 Y1 Twoshort

6) Aristos: Discover Y1 Aristos G3 Opening
	TwoShort: No problem.  I tend to slow down a lot after the first few moves in any case.

7) TwoShort: Build G1 Twoshort

8) Aristos: Build Y1 Opening

9) TwoShort: Build Y2 Twoshort

10) Aristos: Build Y2 Aristos

11) TwoShort: Discover Y1 Twoshort G2 Grogar

12) Aristos: Discover Y1 Opening B2 Shifter

13) TwoShort: Build G1 Twoshort

14) Aristos: Trade Y1 G1 Shifter

15) TwoShort: Discover G1 Twoshort Y2 Yolonda

16) Aristos: Build G2 Shifter

17) TwoShort: Sacrifice G3 Twoshort
Build G3 Twoshort
Build G3 Yolonda
Build Y1 Grogar

18) Aristos: Sacrifice Y2 Aristos
Move G1 Shifter Twoshort
Move G2 Shifter Twoshort
Catastrophe Twoshort Green

19) TwoShort: Sacrifice G3 Yolonda
Build Y2 Grogar
Build Y3 Twoshort
Build Y3 Twoshort

20) Aristos: Discover Y1 Opening G2 Hehehehe

21) TwoShort: Move Y3 Twoshort Hehehehe

	Aristos: Well played.
	TwoShort: Thanks for the game.


22674)
Variants: "Unrated"
Started: 2012.8.4, Ended: 2012.8.5
Participants: bugggg (S), Krispy101 (N)
Winner: bugggg

1) Krispy101: Homeworld G3 B2 R3

2) bugggg: Homeworld B1 Y2 G3

3) Krispy101: Trade R3 Y3 Krispy101

4) bugggg: Build G1 Bugggg

5) Krispy101: Build Y1 Krispy101

6) bugggg: Build G1 Bugggg

7) Krispy101: Discover Y1 Krispy101 R1 Adam

8) bugggg: Trade G1 R1 Bugggg

9) Krispy101: Trade Y3 R3 Krispy101

10) bugggg: Build G1 Bugggg

11) Krispy101: Build R1 Krispy101

12) bugggg: Trade G1 Y1 Bugggg

13) Krispy101: Discover Y1 Adam G2 Bertie

14) bugggg: Build G1 Bugggg

15) Krispy101: Build Y1 Bertie

16) bugggg: Discover G1 Bugggg Y3 Eyedea

17) Krispy101: Trade R1 B1 Krispy101

18) bugggg: Build G1 Eyedea

19) Krispy101: Discover Y1 Bertie B1 Charlie

20) bugggg: Build G2 Bugggg

21) Krispy101: Build Y2 Bertie

22) bugggg: Build Y2 Bugggg

23) Krispy101: Move Y2 Bertie Charlie

24) bugggg: Move G1 Eyedea Charlie

25) Krispy101: Trade Y2 R2 Charlie

26) bugggg: Sacrifice G2 Bugggg
Build G2 Charlie
Build G2 Charlie

27) Krispy101: Attack G2 Charlie

28) bugggg: Sacrifice Y2 Bugggg
Move G1 Charlie Krispy101
Move G2 Charlie Krispy101

29) Krispy101: Attack G2 Krispy101

30) bugggg: Sacrifice G1 Bugggg
Build G1 Krispy101
Catastrophe Krispy101 Green

31) Krispy101: Discover Y1 Charlie G2 Darren

32) bugggg: Build Y2 Bugggg

33) Krispy101: Build Y2 Darren

34) bugggg: Trade Y2 B2 Bugggg

35) Krispy101: Move Y2 Darren Charlie

36) bugggg: Move B2 Bugggg Eyedea

37) Krispy101: Build Y2 Charlie

38) bugggg: Build B2 Eyedea

39) Krispy101: Move Y2 Charlie Krispy101

40) bugggg: Build Y3 Bugggg

41) Krispy101: Build Y3 Bertie

42) bugggg: Sacrifice Y3 Bugggg
Move B2 Eyedea Krispy101
Move B2 Eyedea Krispy101
Pass
Catastrophe Krispy101 Blue



22677)
Variants: "Unrated"
Started: 2012.8.5, Ended: 2012.8.6
Participants: Krispy101 (S), bugggg (N)
Winner: bugggg

1) bugggg: Homeworld B2 Y3 G3

2) Krispy101: Homeworld Y3 B2 G3

3) bugggg: Build G1 Bugggg

4) Krispy101: Build G1 Krispy101

5) bugggg: Trade G1 R1 Bugggg

6) Krispy101: Discover G1 Krispy101 B1 Alpha

7) bugggg: Build R1 Bugggg

8) Krispy101: Build G1 Krispy101

9) bugggg: Move R1 Bugggg Alpha

10) Krispy101: Trade G1 R1 Krispy101

11) bugggg: Attack G1 Alpha

12) Krispy101: Build R2 Krispy101

13) bugggg: Build R2 Alpha

14) Krispy101: Discover R1 Krispy101 Y1 Bravo

15) bugggg: Build G1 Bugggg

16) Krispy101: Move G3 Krispy101 Bravo

17) bugggg: Trade G3 R3 Bugggg

18) Krispy101: Build G1 Bravo

19) bugggg: Sacrifice R1 Alpha
Pass

20) Krispy101: Move G1 Bravo Krispy101

21) bugggg: Build G2 Alpha

22) Krispy101: Trade G1 B1 Krispy101

23) bugggg: Trade G2 Y2 Alpha

24) Krispy101: Build R1 Bravo

25) bugggg: Sacrifice Y2 Alpha
Move R3 Bugggg Alpha
Move R3 Alpha Krispy101

26) Krispy101: Move G3 Bravo Krispy101

27) bugggg: Sacrifice R2 Alpha
Attack G3 Krispy101
Attack R2 Krispy101

28) Krispy101: Move R1 Bravo Bugggg

29) bugggg: Attack B1 Krispy101



22688)
Variants: "Hard time"
Started: 2012.8.7, Ended: 2012.8.14
Participants: dlwillson (S), ajo (N)
Winner: dlwillson

1) ajo: Homeworld B3 Y1 G3

2) dlwillson: H Y3 B2 G3

3) ajo: Build G1 Ajo

4) dlwillson: Build G1 Dlwillson

5) ajo: Trade G1 Y1 Ajo

6) dlwillson: T G1 Y1 Dlwillson

7) ajo: Build Y2 Ajo

8) dlwillson: B Y2 Dlwillson

9) ajo: Trade Y2 R2 Ajo

10) dlwillson: Discover Y1 Dlwillson G1 Field

11) ajo: Discover Y1 Ajo G2 Alpha

12) dlwillson: B Y2 Dlwillson

13) ajo: Discover Y1 Alpha G1 Beta

14) dlwillson: Trade Y2 R2 Dlwillson

15) ajo: Build Y2 Beta

16) dlwillson: D Y2 Dlwillson B1 Sky

17) ajo: Build R1 Ajo

18) dlwillson: B Y2 Field

19) ajo: Trade R1 B1 Ajo

20) dlwillson: D Y2 Field B3 Sea

21) ajo: Sacrifice B1 Ajo
Trade Y1 B1 Beta

22) dlwillson: S G3 Dlwillson
B Y1 Sea
B Y3 Sky
B Y3 Sky

23) ajo: Build B1 Beta

24) dlwillson: M Y3 Sky Dlwillson

25) ajo: Build B2 Beta

26) dlwillson: T Y2 B2 Sea

27) ajo: Discover B2 Beta Y2 Gamma

28) dlwillson: D Y2 Sky B3 Focus

29) ajo: Build G1 Ajo

30) dlwillson: M B2 Sea Field

31) ajo: Build G2 Ajo

32) dlwillson: T Y3 G3 Dlwillson

33) ajo: Build Y3 Beta

34) dlwillson: T Y3 G3 Sky

35) ajo: Trade G3 Y3 Ajo

36) dlwillson: T Y2 G2 Focus

37) ajo: Move Y3 Beta Focus

38) dlwillson: S G2 Focus
B G2 Sky
B Y2 Field

39) ajo: Move G1 Ajo Gamma

40) dlwillson: Move Y2 Field Gamma

41) ajo: Sacrifice Y3 Focus
Move Y2 Beta Dlwillson
Move B1 Beta Dlwillson
Move B1 Beta Dlwillson
	ajo: I didn't want to do this...

42) dlwillson: A Y2 Dlwillson
	dlwillson: You're early, I think.
	dlwillson: Wow, phone... Anyway, excellent move. I can see several poor responses. A moment, please.

43) ajo: Sacrifice G1 Gamma
Build B3 Dlwillson
Catastrophe Dlwillson Blue

44) dlwillson: Sacrifice G3 Sky
Build B1 Field
Build G1 Dlwillson
Build Y3 Gamma
	ajo: You're still ahead by a lot, though. I'm down to just one star system, which has always been hard for me to get out of.

45) ajo: Move B2 Gamma Sea

46) dlwillson: Sacrifice Y2 Dlwillson
Move Y3 Gamma Ajo
Move Y2 Gamma Ajo
Catastrophe Ajo Y

47) ajo: Build R1 Ajo

48) dlwillson: S G3 Dlwillson
B Y1 Sea
B Y2 Field
B B1 Field

49) ajo: Sacrifice R2 Ajo
Attack Y1 Sea
Attack Y1 Sea

50) dlwillson: Move B1 Field Ajo
	ajo: Yep, I think you win. :)

51) ajo: Attack B1 Ajo
	dlwillson: Yes, but your attack was very strong, and if you'd had a follow-up, I'd be in trouble now.
	ajo: Well, that's always the case, *if* one'd had a followup. :P I would say: *Your* strong attack forced me to come up with a distraction, but you dealt with my distraction without getting rattled, and then went back to your original plan, against which I still had no real defense.

52) dlwillson: S Y2 Field
M B1 Field Ajo
M B2 Field Ajo
C Ajo B
	ajo: Maybe I did overreact to your attack on turn 20 (move y2 from Field to Gamma). You might *not* have sacced your only red ship in order to take my two ships, after all. But that's what I was reacting to. It was either let you take them, or distract you with an attack on your homeworld. :)
	dlwillson: I think I would've panicked if I hadn't had a bunch of time to consider my move.
	dlwillson: very good game, in any case



22703)
Variants: "Hard time"
Started: 2012.8.12, Ended: 2012.8.22
Participants: Aristos (S), Danner (N)
Winner: Danner

1) Danner: Homeworld B1 R2 G3 Danner

2) Aristos: Homeworld G3 B2 Y3
	Danner: Hi! Have a nice game!

3) Danner: Build G1 Danner

4) Aristos: Build Y1 Aristos

5) Danner: Build G1 Danner

6) Aristos: Discover Y1 Aristos Y1 Blip

7) Danner: Trade G1 Y1 Danner

8) Aristos: Build Y2 Aristos

9) Danner: Build Y2 Danner

10) Aristos: Discover Y1 Blip G3 Behemoth

11) Danner: Discover Y1 Danner B3 Ocean

12) Aristos: Build Y1 Behemoth

13) Danner: Sacrifice G3 Danner
Build Y2 Ocean
Build Y3 Ocean
Build Y3 Danner

14) Aristos: Sacrifice Y2 Aristos
Discover Y1 Behemoth R1 Tiny
Move Y1 Tiny Ocean
Catastrophe Ocean Yellow

15) Danner: Build G1 Danner

16) Aristos: Build Y1 Behemoth

17) Danner: Discover G1 Danner Y3 Sun

18) Aristos: Move Y1 Behemoth Danner

19) Danner: Trade Y3 G3 Danner

20) Aristos: Attack G1 Danner

21) Danner: Attack G1S Danner

22) Aristos: Build Y1 Behemoth

23) Danner: Attack Y1S Danner
	Aristos: I thought the rule was no take backs. Otherwise all attacks would end in a circular loop. 
	Aristos: (well, any that take place in a contested system)
	Aristos: If we just keep attacking and swapping the same ship back and forth, how does this get resolved?
	Danner: I don't know of any such rules. But I think it should be declared a draw if nobody wants to break the loop.
	Aristos: There's no way to declare a draw.
	Aristos: In a very strange twist of fate, I find myself trying to find a better move than "attack G1 Danner" in order to help you so that we can move the game along. Here's the best I've come up with:
You: trade G3 R3 Danner
Me: build G1 Danner
You: Sacrifice R3, take all ships.

Leaves you with 4 ships in Danner and a fifth to my 2, though I have the only capital ship on the board and it's my turn. 

It isn't my optimal play... if you trade your G3 for R3, my better play is to sacrifice the G1 to build a Y1 in Behemoth so I can build bigger yellow ships, but I'm trying to come up with a pattern that leaves us both in an ok position to break the cycle.

Thoughts?
	Danner: Losing one's last big ship while the opponent still has one... is rather unfortunate.
However, I'm very curious about the official solution for situations like this. I'm glad you paged the admin.
	Aristos: The opinion on Boardgamegeek forums is that although take backs are legal, one player or the other is misreading their best play on the board, but I really don't see it in our case.
http://boardgamegeek.com/article/9853513#9853513

24) Aristos: Build Y2 Aristos
	Aristos: Ok. Let me try this. I think this works. Your move...
	Danner: I believe a situation is possible where whoever breaks the loop will eventually lose (assuming optimal play).

25) Danner: Discover Y1 Danner B3 Ocean
	Aristos: I believe that to be the case too... it certainly may be the case in what I just tried. We shall see. I've left the "Admin Call" turned on because I really would like to hear about that scenario.

26) Aristos: Trade Y2 R2 Aristos

27) Danner: Build Y2 Danner

28) Aristos: Build R1 Aristos

29) Danner: Trade Y2 R2 Danner

30) Aristos: Build Y2 Aristos

31) Danner: Build Y2 Danner

32) Aristos: Sacrifice Y2 Aristos
Discover R1 Aristos G1 Pass
Discover R1 Pass Y3 Sol

33) Danner: Move R2 Danner Sol

34) Aristos: Build Y2 Aristos

35) Danner: Attack R1S Sol

36) Aristos: Build R1 Aristos

37) Danner: Sacrifice G1 Sun
Build Y3 Ocean

38) Aristos: Discover R2 Aristos G1 Dim

39) Danner: Move Y3 Ocean Dim

40) Aristos: Build R1 Dim

41) Danner: Sacrifice R2 Sol
Attack R2S Dim
Attack R1S Dim

42) Aristos: Build R2 Aristos

43) Danner: Sacrifice Y2 Danner
Move R1 Dim Aristos
Move R2 Dim Aristos
Catastrophe Aristos R

44) Aristos: Trade Y2 R2 Aristos

45) Danner: Build Y2 Dim

	Aristos: Congrats. All moves lead to a pretty quick ending for me. I still want to know about the take backs earlier. Admin isn't responsive, unfortunately.
	Danner: Thanks! I'm curious about it too. Fortunately, the call is still in effect.


22721)
Variants: "Hard time"
Started: 2012.8.15, Ended: 2013.1.4
Participants: dlwillson (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B2 G3

2) dlwillson: H B2 R3 G3
	dlwillson: Always takes banker... Have a great game, Two Short.
	dlwillson: Always takes banker... Have a great game, Two Short.

3) TwoShort: Build G1 Twoshort
	TwoShort: Now that you say that, I notice I took Banker our last game, but I generally take Goldilocks as first player.  I think they're comparably strong, so I mix it up occasionally.  In any case, have a great game!

4) dlwillson: Build G1 Dlwillson
	dlwillson: I think you've taken banker in every game we've played. I almost always go goldilocks, but I've been taking fortress occasionally lately. Dethdukk mocks me for it.

5) TwoShort: Trade G1 R1 Twoshort

6) dlwillson: Trade G1 R1 Dlwillson
	TwoShort: If I'd realized that, I'd definitely have gone Goldilocks :)  Oh well.  I don't like Fortress, but hence I never take it and don't really have the experience to justify my dislike. 

7) TwoShort: Build R2 Twoshort
	dlwillson: Y'know one thing I hate about Homeworlds? The first three'ish turns, where it's a lock-step dance of copying the 1st player's moves. Best game ever, but that annoys me very much.

8) dlwillson: Build R2 Dlwillson

9) TwoShort: Trade R2 Y2 Twoshort

10) dlwillson: T R2 Y2 Dlwillson

11) TwoShort: Build R2 Twoshort

12) dlwillson: Build R2 Dlwillson

13) TwoShort: Trade R2 G2 Twoshort

14) dlwillson: T R2 G2 Dlwillson

15) TwoShort: Build R2 Twoshort

16) dlwillson: B R2 Dlwillson

17) TwoShort: Discover R1 Twoshort Y3 Yolonda

18) dlwillson: Discover R1 Dlwillson G1 Field

19) TwoShort: Discover G2 Twoshort R3 Rover

20) dlwillson: T R2 B2 Dlwillson

21) TwoShort: Build G1 Twoshort

22) dlwillson: Build B1 Dlwillson
	dlwillson: Well, at least we're out of lock-step, banker... :-)

23) TwoShort: Move G1 Twoshort Yolonda

24) dlwillson: Build R2 Field

25) TwoShort: Discover R2 Twoshort B3 Bluestar

26) dlwillson: M B1 Dlwillson Field

27) TwoShort: Sacrifice G2 Rover
Build R2 Yolonda
Build R3 Bluestar

28) dlwillson: S G2 Dlwillson
B B1 Dlwillson
B B1 Field

29) TwoShort: Move R2 Yolonda Field

30) dlwillson: Sacrifice R1 Field
Attack R2 Field

31) TwoShort: Trade R3 G3 Bluestar

32) dlwillson: Trade R2 Y2 Field

33) TwoShort: Sacrifice G3 Bluestar
Build R1 Bluestar
Build R2 Bluestar
Build R3 Yolonda

34) dlwillson: Build B3 Field

35) TwoShort: Trade R2 G2 Bluestar

36) dlwillson: Build R2 Field

37) TwoShort: Build G1 Yolonda

38) dlwillson: S Y2 Field
D B1 Field G3 Forest
M R2 Field Forest

39) TwoShort: Sacrifice G2 Bluestar
Build G2 Twoshort
Build G2 Yolonda

40) dlwillson: T B3 Y3 Field

41) TwoShort: Move G2 Yolonda Field

42) dlwillson: Sacrifice Y3 Field
Discover R2 Field Y2 Nugget
Discover B2 Dlwillson Y1 Eagle
Discover B1 Field Y3 Sovereign

43) TwoShort: Sacrifice Y2 Twoshort
Move R3 Yolonda Nugget
Discover G2 Twoshort R3 Rover

44) dlwillson: B G2 Dlwillson

45) TwoShort: Trade R2 Y2 Bluestar
	TwoShort: I love these straightforward, uncomplicated games. :)

46) dlwillson: Sacrifice G3 Dlwillson
Build B3 Eagle
Build B3 Sovereign
Build G3 Dlwillson

47) TwoShort: Sacrifice G2 Rover
Build R2 Yolonda
Build R3 Bluestar

48) dlwillson: Sacrifice B2 Eagle
Trade G3 Y3 Dlwillson
Trade B3 G3 Sovereign
	dlwillson: yes. straightforward, uncomplicated. yep.
	SilentTitan: oh... for the days of simple games like this one
	dlwillson: Hey TS, ST is bombing our game!

49) TwoShort: Attack R2 Nugget

50) dlwillson: S G2 Dlwillson
Build B2 Forest
B B3 Forest

51) TwoShort: Build G2 Twoshort

52) dlwillson: M B3 Eagle Yolonda

53) TwoShort: Discover R2 Yolonda Y1 Yaz

54) dlwillson: Sacrifice B3 Yolonda
Trade Y2 G2 Dlwillson
Trade B2 Y2 Forest
Pass

55) TwoShort: Move R3 Bluestar Twoshort

56) dlwillson: S G3 Sovereign
B B2 Sovereign
B B3 Sovereign
B G3 Dlwillson

57) TwoShort: Sacrifice G3 Twoshort
Build Y1 Bluestar
Build Y1 Bluestar
Build G3 Twoshort

58) dlwillson: S Y2 Forest
M B1 Forest Twoshort
M B1 Sovereign Twoshort

59) TwoShort: Move Y1 Bluestar Twoshort

60) dlwillson: Build Y2 Dlwillson

61) TwoShort: Move G1 Yolonda Yaz

62) dlwillson: M G2 Dlwillson Field

63) TwoShort: Move R1 Yolonda Yaz

64) dlwillson: S Y2 Dlwillson
M B2 Sovereign Twoshort
M G3 Dlwillson Yaz
C Twoshort B

65) TwoShort: Discover R2 Yaz Y2 Yelly

66) dlwillson: Move B3 Sovereign Yelly
	dlwillson: Wow. I'm sorry for taking so long!
	dlwillson: We've been playing this game for more than 3 months!
	TwoShort: No problem; I haven't exactly been speedy this game.

67) TwoShort: Discover R2 Yelly Y3 Yellonia

68) dlwillson: Move G3 Yaz Yolonda
	dlwillson: It's a good game so far! I feel like I've finally turned in a decent performance against you, and that's been a long time coming.

69) TwoShort: Move G1 Yaz Forest

70) dlwillson: A G1 Forest

71) TwoShort: Move G2 Twoshort Forest

72) dlwillson: A G2 Forest
	TwoShort: Definitely an excellent game; I've felt like I'm on the edge of doom for most of it, looking for a way to weasel out.  But you never quite give me the opening.

73) TwoShort: Sacrifice Y2 Bluestar
Move G2 Field Forest
Move R2 Yellonia Field
Catastrophe Forest Green

	dlwillson: Good game, Twoshort. I know you like to see how things play out, but I prefer to wrap them up when they're done, and this one's done. Well played.


22579)
Started: 2012.8.23, Ended: 2012.9.3
Participants: ts52 (S), Aristos (N)
Winner: ts52

1) Aristos: Homeworld Y3 B1 G3

2) ts52: Homeworld Y1 B2 G3

3) Aristos: Build G1 Aristos
	ts52: Have a good game.

4) ts52: B G1 Ts52

5) Aristos: Discover G1 Aristos B2 Swap

6) ts52: Discover G1 Ts52 B3 Grover

7) Aristos: Trade G1 Y1 Swap

8) ts52: Build G1 Ts52

9) Aristos: Build G1 Aristos

10) ts52: Build G2 Grover

11) Aristos: Build G2 Aristos

12) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build G3 Ts52

13) Aristos: Move G2 Aristos Swap

14) ts52: Trade G2 Y2 Grover

15) Aristos: Sacrifice G3 Aristos
Build G2 Swap
Build G3 Aristos
Build Y1 Swap

16) ts52: Trade G3 R3 Ts52

17) Aristos: Discover Y1 Swap G3 Instantiate

18) ts52: Move R3 Ts52 Instantiate

19) Aristos: Trade G1 R1 Aristos

20) ts52: Attack Y1 Instantiate

21) Aristos: Move G2 Swap Grover

22) ts52: Build R1 Instantiate

23) Aristos: Sacrifice R1 Aristos
Attack Y2 Grover

24) ts52: Move R3 Instantiate Swap

25) Aristos: Trade G3 R3 Aristos

26) ts52: Attack Y1 Swap

27) Aristos: Sacrifice G2 Swap
Build Y2 Grover
Build G1 Grover
Catastrophe Grover Green

	Aristos: Good game.
	ts52: Thanks for the game.


22394)
Variants: "No undo"
Started: 2012.8.23, Ended: 2012.9.3
Participants: ajo (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld Y3 B1 G3

2) ajo: Homeworld R2 B3 G3

3) Aristos: Build G1 Aristos

4) ajo: Build G1 Ajo

5) Aristos: Discover G1 Aristos B2 Bubba

6) ajo: Trade G1 Y1 Ajo

7) Aristos: Build G1 Aristos

8) ajo: Build Y1 Ajo

9) Aristos: Build G1 Bubba

10) ajo: Discover Y1 Ajo B1 Alpha

11) Aristos: Trade G1 Y1 Bubba

12) ajo: Build Y2 Ajo

13) Aristos: Build Y2 Bubba

14) ajo: Move Y2 Ajo Alpha

15) Aristos: Discover Y1 Bubba G1 Yokel

16) ajo: Build G2 Ajo

17) Aristos: Build G2 Bubba

18) ajo: Trade Y2 G2 Alpha

19) Aristos: Sacrifice G3 Aristos
Build G3 Aristos
Build G3 Aristos
Build Y2 Yokel

20) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y2 Alpha
Build Y3 Ajo

21) Aristos: Trade G1 R1 Aristos

22) ajo: Trade Y1 R1 Alpha

23) Aristos: Sacrifice Y2 Bubba
Move Y1 Yokel Ajo
Move Y2 Yokel Ajo
Catastrophe Ajo Yellow

24) ajo: Build G1 Alpha

25) Aristos: Trade G2 Y2 Bubba

26) ajo: Discover G1 Alpha B2 Beta

27) Aristos: Discover G3 Aristos G2 Redneck

28) ajo: Sacrifice G3 Ajo
Build G1 Alpha
Build G3 Ajo
Build Y1 Alpha

29) Aristos: Build Y1 Bubba

30) ajo: Move G2 Alpha Redneck

31) Aristos: Sacrifice Y1 Bubba
Move G3 Redneck Alpha

32) ajo: Sacrifice Y2 Alpha
Move G1 Beta Aristos
Move G2 Redneck Aristos

33) Aristos: Sacrifice Y2 Bubba
Discover G1 Bubba Y1 Glimmer
Move G3 Alpha Ajo
	ajo: That was a pretty good move. I was expecting you'd move your g3 backward to Aristos instead.
	Aristos: Still, as good as it may have been, you counterstrike is devastating no matter how I play it. 
	Aristos: Wait... I think I found an out...

34) ajo: Trade G2 Y2 Ajo
	ajo: Hm, dramatic. I think you were pretty okay just changing your g3 at home to some other color; but this certainly raises the stakes for me.
	ajo: And I think you win, too. :P

35) Aristos: Attack G3 Ajo

36) ajo: Sacrifice Y2 Ajo
Move G1 Alpha Ajo
Move Y1 Alpha Ajo
	Aristos: If I just traded for another color I had a problem... if I picked red, you would just shift colors of your green ships to red. If I picked any other color, you would take my red ship and then build up to destroy at least one of my stars.

37) Aristos: Trade G3 R3 Ajo

38) ajo: Sacrifice G2 Aristos
Build G2 Ajo
Build Y1 Ajo

39) Aristos: Sacrifice R3 Ajo
Attack G2 Ajo
Attack G1 Ajo
Attack G1 Aristos
	ajo: You'll never take me alive! :p

40) ajo: Attack G1 Ajo
	Aristos: You can run, but you can't... build.

41) Aristos: Trade G3 R3 Ajo

	ajo: Well, I could stretch it *one* more turn, I think... but that's enough. :) Good game.
	Aristos: Thanks for the game.


22626)
Started: 2012.8.28, Ended: 2012.9.27
Participants: therealmaxl (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld R3 B2 G3

2) therealmaxl: Homeworld Y1 B2 G3

3) Mandrel: Build G1 Mandrel

4) therealmaxl: Build G1 Therealmaxl

5) Mandrel: Trade G1 Y1 Mandrel

6) therealmaxl: Discover G1 Therealmaxl Y3 Yonorium

7) Mandrel: Build G1 Mandrel

8) therealmaxl: Build G1 Yonorium

9) Mandrel: Build G2 Mandrel

10) therealmaxl: Build G2 Therealmaxl

11) Mandrel: Discover G2 Mandrel B1 Cluster

12) therealmaxl: Discover G1 Yonorium B2 Bofo

13) Mandrel: Sacrifice G3 Mandrel
Build G2 Mandrel
Build G3 Mandrel
Build G3 Cluster

14) therealmaxl: Trade G1 B1 Bofo

15) Mandrel: Trade G3 Y3 Mandrel

16) therealmaxl: Sacrifice G3 Therealmaxl
Build B1 Bofo
Build G1 Yonorium
Build G3 Therealmaxl

17) Mandrel: Build G3 Mandrel

18) therealmaxl: Move G1 Yonorium Cluster

19) Mandrel: Trade G3 R3 Cluster

20) therealmaxl: Build G3 Yonorium

21) Mandrel: Sacrifice Y3 Mandrel
Move R3 Cluster Yonorium
Move R3 Yonorium Therealmaxl
Move G2 Cluster Yonorium

22) therealmaxl: Move G3 Yonorium Therealmaxl

23) Mandrel: Move G2 Yonorium Therealmaxl
Catastrophe Therealmaxl G
	therealmaxl: good game

	Mandrel: Good game.
	therealmaxl: Good game.

I'm sorry I'm so terrible at homeworlds over such long periods of time


22755)
Started: 2012.8.29, Ended: 2012.10.9
Participants: Weishaupt (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3
	Weishaupt: This is my first time playing, FYI!
	ts52: Ok, are you familiar with the rules? Feel free to ask me questions. And post a move, then undo it, so I'll get email that you moved, and see your question.

2) Weishaupt: Homeworld G1 B2 Y3
	Weishaupt: I'm getting a handle on the rules. Thanks! Would be fine with strategy tips as well.
	ts52: To start, it's generally considered a good idea to start with blue, yellow and green in your homeworld, and make sure your homeworld system aren't the same sizes as mine (otherwise our homeworlds end up being close, in what's called a small universe, and it's easy to quickly attack each other.)
	ts52: Lastly, have fun! :)

3) ts52: Build G1 Ts52

4) Weishaupt: Build Y1 Weishaupt

5) ts52: Discover G1 Ts52 B1 Gonzo

6) Weishaupt: Discover Y1 Weishaupt B3 Horchata

7) ts52: Build G1 Ts52

8) Weishaupt: Trade Y3 G3 Weishaupt

9) ts52: Build G2 Gonzo

10) Weishaupt: Build G2 Weishaupt

11) ts52: Trade G2 Y2 Gonzo

12) Weishaupt: Build G2 Weishaupt

13) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Ts52
	ts52: Since this is your first game, I wont kill you outright. But you should _never_ build up so you have 4 pieces of the same color in the same system. I could declare a catastrophe on your homeworld now and end the game. You also shouldn't build up 3 pieces of the same color unless you are certain there's no way your opponent can move a piece of that color in to create a catastrophe.

14) Weishaupt: Trade G3 Y3 Weishaupt
	ts52: Note I just created 3 green ships in my homeworld, because I know you can't get a green ship there this turn. 
	Weishaupt: A-hah, I see my mistake. Feel free to kill me if I deserve it though!

15) ts52: Sacrifice Y2 Gonzo
Move G1 Gonzo Horchata
Move G1 Horchata Weishaupt
Catastrophe Weishaupt Green

16) Weishaupt: Trade Y1 G1 Horchata
	ts52: Fair enough. Thet
	ts52: Grrr, that's a big blow, but it's not over yet.

17) ts52: Trade G3 R3 Ts52

18) Weishaupt: Trade G1 Y1 Horchata
	Weishaupt: Ha, I am certainly wasting enough turns.

19) ts52: Discover R3 Ts52 Y1 Zoe

20) Weishaupt: Trade Y3 G3 Weishaupt
	ts52: Yeah, indecision can be tough. 

21) ts52: Move R3 Zoe Weishaupt



22622)
Variants: "Hard time"
Started: 2012.8.29, Ended: 2012.9.16
Participants: dlwillson (S), Weishaupt (N)
Winner: dlwillson

1) Weishaupt: Homeworld G3 B1 R3
	Weishaupt: This is my first game! So apologies if I make some mistakes.

2) dlwillson: H Y2 B3 G3
	dlwillson: NP. I'm a pretty good player. Do you want advice or feedback?

3) Weishaupt: Build R1 Weishaupt
	Weishaupt: That would be great! 

4) dlwillson: Build G1 Dlwillson
	dlwillson: Well, you're doing fine so far. :-)

5) Weishaupt: Trade R1 Y1 Weishaupt

6) dlwillson: Trade G1 R1 Dlwillson

7) Weishaupt: Build R1 Weishaupt

8) dlwillson: Build R1 Dlwillson

9) Weishaupt: Trade R1 G1 Weishaupt

10) dlwillson: B G1 Dlwillson
	dlwillson: OK, time for lesson 1: Never waste a move. Always be playing to win. If the win isn't in sight, play to improve your position, or damage my position, or to stop me from doing that to you. This move should work with your next move, unless I surprise you. Try to limit my options.
	dlwillson: Building another yellow is probably stronger than trading to green, right now.
	dlwillson: Trading to blue is also stronger.
	dlwillson: At this point in the game, you're trying to lock me out of a color and/or get a medium ship before I do.
	dlwillson: I'll give you a day to take back your turn, if you want to.

11) Weishaupt: Build Y1 Weishaupt

12) dlwillson: T R1 B1 Dlwillson
	Weishaupt: Thanks! I didn't check back in time, obviously.

13) Weishaupt: Build R1 Weishaupt

14) dlwillson: B B1 Dlwillson

15) Weishaupt: Build Y1 Weishaupt

16) dlwillson: D B1 Dlwillson G1 Field

17) Weishaupt: Build G2 Weishaupt

18) dlwillson: Build B2 Dlwillson

19) Weishaupt: Discover Y1 Weishaupt Y2 Fatso

20) dlwillson: D B2 Dlwillson R1 Sunset

21) Weishaupt: Build Y2 Weishaupt
	dlwillson: I hope you have a plan here. It's pretty unusual to move a ship to a star of the same color, unless doing so accomplishes some larger goal. For example: TwoShort ~loves~ to run his opponent out of yellow, and he'll do whatever it needs to get it done.
	dlwillson: I'll give it 24 hours again, in case you want to take it back.

22) dlwillson: S G3 Dlwillson
B B2 Field
B B2 Sunset
B B3 Sunset
	Weishaupt: Haha, well, again, this is my first game.
	Weishaupt: So I admit to not knowing what I'm doing. This game takes an odd sort of thinking.

	dlwillson: I just broke a strategic rule by leaving my home system without a large, but I checked carefully, and I think I can cover it before I regret it.
	dlwillson: Great job gobbling up all the yellow. Two Short would be proud.
	dlwillson: What happened?


22514)
Variants: "Hard time"
Started: 2012.9.3, Ended: 2012.9.7
Participants: juanpr2 (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R2 B1 G3



22782)
Variants: "Hard time"
Started: 2012.9.3, Ended: 2012.10.8
Participants: agentofchaos (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld B2 Y1 G3

2) agentofchaos: Homeworld R1 B3 G3

3) Aristos: Build G1 Aristos

4) agentofchaos: Build G1 Agentofchaos

5) Aristos: Discover G1 Aristos B3 Orb

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) Aristos: Build G1 Orb

8) agentofchaos: Build Y1 Agentofchaos

9) Aristos: Build G1 Orb

10) agentofchaos: Build G2 Agentofchaos

11) Aristos: Build G2 Aristos

12) agentofchaos: Build Y2 Agentofchaos

13) Aristos: Trade G1 R1 Orb

14) agentofchaos: Trade Y2 R2 Agentofchaos

15) Aristos: Trade G2 Y2 Aristos

16) agentofchaos: Discover R2 Agentofchaos Y2 Procyon

17) Aristos: Move Y2 Aristos Orb

18) agentofchaos: Move G2 Agentofchaos Procyon

19) Aristos: Build G1 Aristos

20) agentofchaos: Build G2 Agentofchaos

21) Aristos: Sacrifice G3 Aristos
Build G2 Orb
Build G3 Aristos
Build G3 Aristos

22) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Agentofchaos
Build Y2 Agentofchaos
Build R1 Procyon

23) Aristos: Sacrifice G1 Aristos
Build Y3 Orb

24) agentofchaos: Move G2 Procyon Orb
Catastrophe Orb G

25) Aristos: Discover Y3 Orb G1 Tiny
	Aristos: I think this is the highest density of ships I have ever seen in any game.
	Aristos: Ping!

26) agentofchaos: Discover Y2 Agentofchaos G2 Heartthew
	agentofchaos: Not quite so dense now.

27) Aristos: Sacrifice G3 Aristos
Build R2 Orb
Build Y3 Orb
Build Y3 Tiny

	agentofchaos: Rats...
	Aristos: Thanks for the game.


22783)
Started: 2012.9.4, Ended: 2012.11.6
Participants: ts52 (S), therealmaxl (N)
Winner: ts52

1) therealmaxl: Homeworld R3 B1 G3

2) ts52: Homeworld Y1 B2 G3

3) therealmaxl: Build G1 Therealmaxl
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) therealmaxl: Trade G1 Y1 Therealmaxl

6) ts52: Discover G1 Ts52 B3 Grover

7) therealmaxl: Build G1 Therealmaxl

8) ts52: Build G1 Ts52

9) therealmaxl: Discover G1 Therealmaxl Y2 Yelon

10) ts52: Build G2 Grover

11) therealmaxl: Build G2 Yelon

12) ts52: T G2 Y2 Grover

13) therealmaxl: Discover G2 Yelon Y3 Bigbird

14) ts52: Build G2 Grover

15) therealmaxl: Build G2 Yelon

16) ts52: Sacrifice Y2 Grover
Move G2 Grover Yelon
Discover G2 Yelon G3 Kermit

17) therealmaxl: Move G1 Yelon Kermit

18) ts52: Sacrifice G1 Ts52
Build G1 Grover

19) therealmaxl: Sacrifice G2 Yelon
Build G2 Bigbird
Build Y1 Therealmaxl

20) ts52: Trade G1 R1 Grover

21) therealmaxl: Build G1 Kermit
Catastrophe Kermit Green

22) ts52: Build G1 Ts52

23) therealmaxl: Discover Y1 Therealmaxl B2 Dabo

24) ts52: Trade G1 R1 Ts52

25) therealmaxl: Build G1 Bigbird

26) ts52: Build R1 Ts52

27) therealmaxl: Discover G1 Bigbird R2 Elmo

28) ts52: Build R2 Grover

29) therealmaxl: Move G2 Bigbird Dabo

30) ts52: Trade R2 Y2 Grover

31) therealmaxl: Build Y2 Dabo

32) ts52: Move Y2 Grover Elmo

33) therealmaxl: Trade Y2 B2 Dabo

34) ts52: Attack G1 Elmo

35) therealmaxl: Build Y2 Dabo

36) ts52: Build R2 Grover

37) therealmaxl: Build B1 Dabo

38) ts52: Build R2 Ts52

39) therealmaxl: Move B1 Dabo Bigbird

40) ts52: Build R3 Grover
	therealmaxl: goodbye 1/2 homeworld
	therealmaxl: mine i meant lol

41) therealmaxl: Move B2 Dabo Bigbird

42) ts52: Trade R3 Y3 Grover

43) therealmaxl: Build B1 Bigbird

44) ts52: Move R2 Grover Dabo

45) therealmaxl: Sacrifice Y2 Dabo
Move B1 Bigbird Ts52
Move B1 Bigbird Ts52

46) ts52: Attack Y1 Dabo

47) therealmaxl: Move B2 Bigbird Ts52
Catastrophe Ts52 Blue

48) ts52: Attack G2 Dabo

49) therealmaxl: Build G1 Bigbird

50) ts52: Build R3 Dabo



22781)
Variants: "No undo"
Started: 2012.9.10, Ended: 2012.9.16
Participants: goblin981 (S), ajo (N)
Winner: ajo

1) ajo: Homeworld R3 B1 G3

2) goblin981: H R3 B2 G3

3) ajo: Build G1 Ajo

4) goblin981: B G1 Goblin981

5) ajo: Build G1 Ajo

6) goblin981: B G2 Goblin981

7) ajo: Trade G1 Y1 Ajo

8) goblin981: T G2 Y2 Goblin981

9) ajo: Build Y1 Ajo

10) goblin981: B Y1 Goblin981

11) ajo: Build Y2 Ajo

12) goblin981: B Y2 Goblin981

13) ajo: Discover Y1 Ajo B2 Alpha

14) goblin981: D Y2 Goblin981 G1 Beta

15) ajo: Sacrifice G1 Ajo
Build Y3 Alpha

16) goblin981: B Y3 Beta

17) ajo: Trade Y3 G3 Alpha

18) goblin981: D Y2 Beta R2 Gamma

19) ajo: Build Y3 Alpha

20) goblin981: D Y1 Goblin981 G1 Delta

21) ajo: Trade Y1 R1 Alpha

22) goblin981: S Y2 Gamma
Discover Y3 Beta R2 Epsilon
Discover Y1 Delta R2 Zeta
	ajo: I think you've let yourself get too spread out.
	goblin981: Maybe.  I saw a yellow catastrophe on the way.

23) ajo: Build G1 Alpha
	ajo: Sure, you've gotta defend against catastrophes. But this past turn, I would guess that you wanted to do something more productive than burn your y2. But you couldn't build anything because all you were able to build was yellows.
	ajo: Or maybe you have a plan and I'm gonna feel dumb later. :)

24) goblin981: S Y2 Goblin981
M Y3 Epsilon Ajo
Move Y1 Zeta Ajo
Catastrophe Ajo Y

25) ajo: Sacrifice Y3 Alpha
Discover G1 Alpha Y1 Beta
Move G3 Alpha Beta
Move G3 Beta Goblin981
	goblin981: It was the latter :)
	goblin981: 
	ajo: I hope that wasn't *all* of your plan, though. I'm pretty happy to be up by r1y3g3 at this point.
	ajo: In fact, screw it, let's see if I can end it right now!

26) goblin981: T G1 B1 Goblin981
	ajo: Check. :)
	ajo: In fact, you won't have any access to green next turn, so that's got to be checkmate.

27) ajo: Attack G3 Goblin981
	goblin981: Unless I do that.  Knew you needed two moves :)
	ajo: Well yeah. Checkmate in two, I meant. Normally I don't trust myself to declare "mate in two", but this time it looked inevitable.

28) goblin981: T B1 Y1 Goblin981
	goblin981: Damn didn't see that.  You win this round.
	goblin981: Damn it.  You got me.

29) ajo: Attack Y1 Goblin981
	ajo: Toldja you shouldn't have been doing that with your yellows. :) Good game.
	goblin981: Thought for once I was going well.  Good game.



22780)
Variants: "Hard time"
Started: 2012.9.15, Ended: 2012.9.27
Participants: SilentTitan (S), tim_p (N)
Winner: SilentTitan

1) tim_p: Homeworld Y1 G2 B3

2) SilentTitan: Homeworld R1 B3 G3

3) tim_p: Build B1 Tim_p

4) SilentTitan: Build G1 Silenttitan

5) tim_p: Trade B1 G1 Tim_p

6) SilentTitan: Trade G1 Y1 Silenttitan

7) tim_p: Build G1 Tim_p

8) SilentTitan: Build Y1 Silenttitan

9) tim_p: Discover G1 Tim_p Y3 Gethen

10) SilentTitan: Build Y2 Silenttitan

11) tim_p: Build G1 Tim_p

12) SilentTitan: Build G2 Silenttitan

13) tim_p: Build G2 Gethen

14) SilentTitan: Build G3 Silenttitan

15) tim_p: Discover G1 Tim_p G3 Sjandra Kei

16) SilentTitan: Discover G2 Silenttitan Y2 Sol

17) tim_p: Trade G1 R1 Tim_p

18) SilentTitan: Discover Y1 Silenttitan Y2 Soul

19) tim_p: Move G1 Gethen Tim_p

20) SilentTitan: Build Y3 Silenttitan

21) tim_p: Trade B3 Y3 Tim_p

22) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Silenttitan Soul
Move Y1 Soul Sjandra
Move Y1 Sjandra Tim_p

23) tim_p: Discover Y3 Tim_p Y3 Acheron

24) SilentTitan: Move Y1 Tim_p Acheron

25) tim_p: Discover Y3 Acheron R1 Virga

26) SilentTitan: Trade G3 R3 Silenttitan

27) tim_p: Discover G1 Tim_p R3 Coventry

28) SilentTitan: Sacrifice Y2 Silenttitan
Move G2 Sol Coventry
Move G2 Coventry Tim_p

29) tim_p: Build R2 Tim_p

30) SilentTitan: Sacrifice R3 Silenttitan
Attack R2 Tim_p North
Attack R1 Tim_p North
Pass



22838)
Variants: "Hard time"
Started: 2012.9.16, Ended: 2012.9.19
Participants: AdamBadura (S), ajo (N)
Winner: AdamBadura



22767)
Variants: "Hard time"
Started: 2012.9.18, Ended: 2012.9.30
Participants: daselva (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) daselva: Homeworld R1 B2 G3

3) dlwillson: Build G1 Dlwillson

4) daselva: Build G1 Daselva

5) dlwillson: Trade G1 Y1 Dlwillson

6) daselva: Trade G1 Y1 Daselva

7) dlwillson: Build Y2 Dlwillson

8) daselva: Build Y2 Daselva

9) dlwillson: D Y1 Dlwillson B2 Sky

10) daselva: Trade Y1 R1 Daselva

11) dlwillson: Trade Y2 R2 Dlwillson

12) daselva: Build Y1 Daselva

13) dlwillson: B R1 Dlwillson

14) daselva: Build Y2 Daselva

15) dlwillson: B G1 Dlwillson

16) daselva: Trade Y2 R2 Daselva

17) dlwillson: M G1 Dlwillson Sky
	dlwillson: Why? You could have just built it. You didn't have to give up your y2.

18) daselva: Sacrifice Y2 Daselva
Discover R2 Daselva Y3 Ds1
Move R2 Ds1 Sky

19) dlwillson: B Y2 Sky

20) daselva: Attack Y2 Sky

21) dlwillson: B Y2 Sky

22) daselva: Trade Y2 G2 Sky

23) dlwillson: S R2 Dlwillson
A G2 Sky
A R2 Sky

24) daselva: Build Y2 Daselva

25) dlwillson: B R2 Sky

26) daselva: Build G1 Daselva

27) dlwillson: Discover R2 Sky B3 Sea

28) daselva: Discover Y2 Daselva R3 Ds1

29) dlwillson: Sacrifice G3 Dlwillson
Build R2 Sea
Build R3 Sky
Build R3 Dlwillson

30) daselva: Move G1 Daselva Ds1

31) dlwillson: S Y2 Sky
M R2 Sea Daselva
M R2 Sea Daselva
C Daselva R

32) daselva: Discover Y2 Ds1 G2 Ds2

33) dlwillson: M R3 Dlwillson Daselva



22828)
Variants: "Hard time"
Started: 2012.10.6, Ended: 2012.10.9
Participants: Sturmund_Drang (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B2 R1 G3
	Sturmund_Drang: HI, I've played Homeworlds before, but I'm new to the site. Thanks for playing!

	SilentTitan: No problem thanks for accepting my standing challenge.  If you have any question just ask.


22906)
Variants: "Hard time"
Started: 2012.10.8, Ended: 2012.10.21
Participants: Aristos (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B1 R2 G3

2) Aristos: Homeworld G3 Y1 B3

3) SilentTitan: Build G1 Silenttitan
	Aristos: Well met.
	SilentTitan: Salutations and Defiance to you good sir.

4) Aristos: Build B1 Aristos

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Aristos: Build B1 Aristos

7) SilentTitan: Build Y1 Silenttitan

8) Aristos: Discover B1 Aristos G2 Armstrong

9) SilentTitan: Discover Y1 Silenttitan G3 Sol

10) Aristos: Build B2 Armstrong

11) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Silenttitan
Build Y2 Silenttitan
Build Y2 Sol

12) Aristos: Trade B2 R2 Armstrong

13) SilentTitan: Build Y3 Sol

14) Aristos: Build B2 Armstrong
	Aristos: Well, that was totally unexpected. I suspect that's game. 

15) SilentTitan: Discover Y2 Silenttitan R3 Soul
	SilentTitan: Usually a player has to make two fairly large errors or a series of smaller error to get beat. I'v had dlwillson in this position before and he figured out a way to beat me anyway.  It was a table game running on a chess clock at a convention.  so it's not a sure thing but it helps
	SilentTitan: lol... come to think of it ... i played a game with him at my house where he let me put up three battleships in a turn ... twice and then he still won.... someone has to stop that dirty rotten @%!^ .... GO TWOSHORT!!!!!

16) Aristos: Build B2 Aristos

17) SilentTitan: Move Y3 Sol Silenttitan

18) Aristos: Discover B1 Aristos G2 Aldrin

19) SilentTitan: Trade Y3 G3 Silenttitan

	dlwillson: Uh... Hey! I don't want to be stopped! And TwoShort has beaten me too many times, already. It's time for me to beat him a bit. :-)
	Aristos: Aaaaaaand.... that's game. I just couldn't get to a large ship fast enough to pick up one of the yellows.


22839)
Variants: "No undo"
Started: 2012.10.13, Ended: 2012.10.13
Participants: cheinzmann (S), ajo (N)
Winner: ajo

1) ajo: Homeworld G3 B2 Y3

2) cheinzmann: Homeworld B3 G1 Y3

3) ajo: Build Y1 Ajo

4) cheinzmann: Build Y1 Cheinzmann

5) ajo: Build Y1 Ajo

6) cheinzmann: Build Y2 Cheinzmann


7) ajo: Sacrifice Y3 Ajo
Discover Y1 Ajo R1 Aa
Discover Y1 Aa R2 Ba
Move Y1 Ba Cheinzmann
Catastrophe Cheinzmann Yellow
	ajo: Oh, well, *that's* easy. Play again? :)
	cheinzmann: great game, beat me to the sacrifice catastrophe



22909)
Started: 2012.10.15, Ended: 2012.11.12
Participants: goblin981 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) goblin981: H G3 B2 Y3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) goblin981: B Y1 Goblin981

5) ts52: Discover G1 Ts52 B3 Grover

6) goblin981: D Y1 Goblin981 G1 Alpha

7) ts52: Build G1 Ts52

8) goblin981: B Y1 Goblin981

9) ts52: Build G2 Grover

10) goblin981: B Y2 Goblin981

11) ts52: Trade G2 Y2 Grover

12) goblin981: D Y1 Goblin981 B1 Beta

13) ts52: Build G2 Grover

14) goblin981: B Y2 Alpha

15) ts52: Build Y3 Grover

16) goblin981: T Y2 G2 Goblin981

17) ts52: Trade Y3 R3 Grover

18) goblin981: T Y3 R3 Goblin981

19) ts52: Move R3 Grover Alpha

	goblin981: Sorry man, just looked like it was way in your favour.
	ts52: No worries. Thanks for the game.


22973)
Variants: "Hard time"
Started: 2012.10.21, Ended: 2012.12.4
Participants: Mandrel (S), Gidaio (N)
Winner: Mandrel

1) Gidaio: Homeworld G3 R2 B3

2) Mandrel: Homeworld B3 R1 G3

3) Gidaio: Build B1 Gidaio
	Mandrel: Have a good game.

4) Mandrel: Build G1 Mandrel
	Gidaio: You too! Two people with (I'm assuming) internet names that are NAMES, not hax0rpwn443.

5) Gidaio: Trade B3 Y3 Gidaio
	Mandrel: Indeed, actual pronounceable strings of letters!

6) Mandrel: B G1 Mandrel
	Gidaio: Of course, admittedly different ratios of consonant-to-vowels, though.

7) Gidaio: Build Y1 Gidaio
	Mandrel: I've always been a 5:2 man, it's how I was raised.
	Gidaio: Indeed! I'm rather fond of vowels.
Anyway, family stuff happened and I won't be able to play for the next 14 days, which, given that this is a latter game, results in your win, I believe. I would say gg, but there really wasn't a game...
	Gidaio: *ladder

8) Mandrel: Trade G1 Y1 Mandrel

9) Gidaio: Discover Y1 Gidaio G1 Rizhulan
	Mandrel: OK, sorry to hear that, if you can't make it back to finish this, feel free to challenge me to a game in the future.
	Gidaio: Hah! Your delay saved the game! I'll be back come Monday, so you won't have to wait long.

10) Mandrel: Discover G1 Mandrel B2 King
	Gidaio: I'm back! :) Let's finish this thing.

11) Gidaio: Build Y1 Rizhulan

12) Mandrel: Build Y2 Mandrel

13) Gidaio: Build Y2 Gidaio

14) Mandrel: Move Y2 Mandrel King

15) Gidaio: Discover Y2 Gidaio G1 Grasslandia

16) Mandrel: Build G2 Mandrel

17) Gidaio: Build Y2 Grasslandia

18) Mandrel: Build Y3 King

19) Gidaio: Build Y3 Gidaio

20) Mandrel: Build G2 King

21) Gidaio: Discover Y1 Rizhulan G3 Brinstar

22) Mandrel: Build G2 King

23) Gidaio: Move B1 Gidaio Rizhulan

24) Mandrel: Trade G2 R2 Mandrel

25) Gidaio: Trade Y1 R1 Rizhulan

26) Mandrel: Move Y2 King Rizhulan

27) Gidaio: Build R1 Rizhulan

28) Mandrel: Sacrifice R2 Mandrel
Attack R1N Rizhulan
Attack R1N Rizhulan

29) Gidaio: Sacrifice Y2 Grasslandia
Move B1 Rizhulan King
Move B1 King Grasslandia
	Gidaio: Aaand just like every time, I'm left without any green.

30) Mandrel: B Y1 Rizhulan


31) Gidaio: Trade Y2 R2 Grasslandia

32) Mandrel: Sacrifice Y3 King
Move Y1 Rizhulan Gidaio
Move Y2 Rizhulan Gidaio
Move R1 Rizhulan Gidaio
Catastrophe Gidaio Yellow

	Mandrel: Good game.
	Gidaio: Oh, dag. I didn't even see that. I'm not actually very good at this game. :/


22991)
Variants: "Hard time"
Started: 2012.10.24, Ended: 2012.12.7
Participants: SirRuthvenMurgatroyd (S), goblin981 (N)
Winner: SirRuthvenMurgatroyd

1) goblin981: H B1 Y2 G3
	goblin981: GG

2) SirRuthvenMurgatroyd: Homeworld G3 B2 Y3

3) goblin981: B G1 Goblin981

4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

5) goblin981: B G1 Goblin981

6) SirRuthvenMurgatroyd: Trade Y1 G1 Sirruthvenmurgatroyd

7) goblin981: D G1 Goblin981 Y3 Alpha

8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

9) goblin981: D G1 Goblin981 Y3 Beta

10) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Gamma

11) goblin981: B G2 Goblin981

12) SirRuthvenMurgatroyd: Build G2 Gamma

13) goblin981: T G2 R2 Goblin981

14) SirRuthvenMurgatroyd: Move G2 Gamma Beta

15) goblin981: B G2 Goblin981

16) SirRuthvenMurgatroyd: Build G3 Gamma

17) goblin981: T G2 R2 Goblin981

18) SirRuthvenMurgatroyd: Discover G1 Gamma B3 Delta

19) goblin981: M R2 Goblin981 Beta

20) SirRuthvenMurgatroyd: Build G2 Delta

21) goblin981: A G2S Beta

22) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

23) goblin981: D G1 Beta Y1 Epsilon

24) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

25) goblin981: B R1 Goblin981
	SirRuthvenMurgatroyd: My apologies for taking a long time to make my moves...  I've been very busy; most of that should hopefully be finished now, though, so I'll probably be making moves in a more reasonable time...
	goblin981: No worries about that.  Happy to wait.

26) SirRuthvenMurgatroyd: Move Y1 Sirruthvenmurgatroyd Gamma

27) goblin981: T R1 B1 Goblin981

28) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

29) goblin981: M R2 Beta Gamma

30) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd

31) goblin981: A Y1S Gamma

32) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd
Attack R2N Gamma
Attack Y1N Gamma



22993)
Variants: "Hard time"
Started: 2012.10.25, Ended: 2013.1.5
Participants: AdamBadura (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld R1 B2 G3

2) AdamBadura: Homeworld G3 B2 Y3

3) MagicJohn: Build G1 Magicjohn

4) AdamBadura: Build Y1 Adambadura

5) MagicJohn: Build G1 Magicjohn

6) AdamBadura: Trade Y1 G1 Adambadura

7) MagicJohn: Trade G1 Y1 Magicjohn

8) AdamBadura: Build Y1 Adambadura

9) MagicJohn: Trade G1 B1 Magicjohn

10) AdamBadura: Build G1 Adambadura

11) MagicJohn: Build B1 Magicjohn

12) AdamBadura: Trade G1 R1 Adambadura

13) MagicJohn: Build G1 Magicjohn

14) AdamBadura: Discover Y1 Adambadura G1 Shipyard

15) MagicJohn: Discover G1 Magicjohn Y3 Kaline

16) AdamBadura: Build G2 Adambadura

17) MagicJohn: Build G2 Kaline

18) AdamBadura: Discover G2 Adambadura Y1 Outpost

19) MagicJohn: Build Y2 Magicjohn

20) AdamBadura: Build Y2 Shipyard

21) MagicJohn: Discover G2 Kaline B1 Colavito

22) AdamBadura: Trade G1 R1 Adambadura

23) MagicJohn: Trade G2 R2 Colavito

24) AdamBadura: Build Y2 Adambadura

25) MagicJohn: Move Y1 Magicjohn Kaline

26) AdamBadura: Discover Y2 Shipyard Y3 Highway

27) MagicJohn: Move B1 Magicjohn Kaline

28) AdamBadura: Move R1 Adambadura Outpost

29) MagicJohn: Sacrifice G3 Magicjohn
Build B2 Kaline
Build B3 Kaline
Build B3 Magicjohn

30) AdamBadura: Build R2 Adambadura

31) MagicJohn: Trade B3 G3 Magicjohn

32) AdamBadura: Build R2 Outpost

33) MagicJohn: Trade B3 R3 Kaline

	AdamBadura: Sorry for long moves and breaking the game. This was a bad time for me due to holidays and serious internet connection issues.
	MagicJohn: Certainly wasn't my choice to stop the game. I am still low on the learning curve and was picking up a lot from your moves. Re-challenge if you would like......  MJ   


23010)
Variants: "Hard time"
Started: 2012.10.31, Ended: 2013.3.19
Participants: agentofchaos (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) agentofchaos: Homeworld B1 R3 G3
	ts52: have a good game!

3) ts52: Build G1 Ts52
	agentofchaos: Thanks, you too

4) agentofchaos: Build G1 Agentofchaos

5) ts52: Discover G1 Ts52 B3 Grover

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) ts52: Build G1 Ts52

8) agentofchaos: Build Y1 Agentofchaos

9) ts52: Build G1 Grover

10) agentofchaos: Build G2 Agentofchaos

11) ts52: Build G2 Grover

12) agentofchaos: Build Y2 Agentofchaos

13) ts52: Trade G2 Y2 Grover

14) agentofchaos: Discover Y2 Agentofchaos B2 Hadepoch

15) ts52: Build G2 Grover

16) agentofchaos: Sacrifice G2 Agentofchaos
Build Y2 Agentofchaos
Build Y3 Hadepoch

17) ts52: Build Y3 Grover

18) agentofchaos: Trade Y2 R2 Hadepoch

19) ts52: Trade G2 R2 Grover

20) agentofchaos: Build G2 Agentofchaos

21) ts52: Discover G1 Grover B2 Gonzo

22) agentofchaos: Move G2 Agentofchaos Hadepoch

23) ts52: Move Y2 Grover Gonzo

24) agentofchaos: Move Y1 Agentofchaos Hadepoch

25) ts52: Build G2 Gonzo

26) agentofchaos: Trade Y1 B1 Hadepoch

27) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Grover

28) agentofchaos: Sacrifice Y2 Agentofchaos
Move G2 Hadepoch Grover
Move G2 Grover Gonzo
Catastrophe Gonzo G

29) ts52: Move G1 Grover Gonzo

30) agentofchaos: Build G1 Agentofchaos

31) ts52: Build G2 Gonzo

32) agentofchaos: Move G1 Agentofchaos Hadepoch

33) ts52: Trade G2 R2 Gonzo

34) agentofchaos: Build G2 Agentofchaos

35) ts52: Build G2 Gonzo

36) agentofchaos: Discover G2 Agentofchaos Y2 Rockworm

37) ts52: Build R1 Gonzo

38) agentofchaos: Discover G2 Rockworm Y3 Demondim

39) ts52: Trade G1 R1 Ts52

40) agentofchaos: Build G1 Demondim

41) ts52: Discover R2 Grover Y2 Zoe

42) agentofchaos: Discover G1 Hadepoch R3 Vitriol

43) ts52: Move R1 Gonzo Agentofchaos

44) agentofchaos: Attack R1 Agentofchaos

45) ts52: Sacrifice Y2 Gonzo
Move R2 Gonzo Agentofchaos
Move R2 Zoe Agentofchaos
Catastrophe Agentofchaos Red

46) agentofchaos: Build G2 Vitriol

47) ts52: Build Y1 Grover

48) agentofchaos: Sacrifice G2 Demondim
Build Y2 Hadepoch
Build G2 Demondim

49) ts52: Sacrifice Y3 Grover
Move G1 Gonzo Demondim
Move G2 Gonzo Demondim
Pass
Catastrophe Demondim Green

50) agentofchaos: Build G1 Agentofchaos

51) ts52: Build G1 Grover

52) agentofchaos: Discover G1 Agentofchaos Y3 Camtime

53) ts52: Build Y2 Grover

54) agentofchaos: Build G2 Camtime

55) ts52: Discover Y2 Grover G2 Kermit

56) agentofchaos: Sacrifice G2 Vitriol
Build R1 Hadepoch
Build G2 Vitriol
	ts52: Sorry, that didn't make any sense.

57) ts52: Sacrifice G3 Grover
Build G3 Grover
Build Y2 Kermit
Build Y3 Grover
	agentofchaos: no  problem

58) agentofchaos: S Y3 Hadepoch
Move G2 Vitriol Ts52
Move G1 Vitriol Ts52
Move G1 Camtime Ts52
Catastrophe Ts52 G

59) ts52: Move G3 Grover Ts52

60) agentofchaos: Sacrifice G2 Camtime
Build Y3 Hadepoch
Build G1 Agentofchaos

61) ts52: Build G1 Grover

62) agentofchaos: Build Y3 Agentofchaos

63) ts52: Sacrifice Y3 Grover
Move Y2 Kermit Agentofchaos
Move G1 Grover Agentofchaos
Move G1 Grover Agentofchaos
Catastrophe Agentofchaos Green

64) agentofchaos: Trade Y3 R3 Agentofchaos

65) ts52: Build Y3 Kermit

66) agentofchaos: Attack Y2 Agentofchaos

67) ts52: Discover Y3 Kermit B3 Gonzo

68) agentofchaos: Trade Y2 G2 Agentofchaos

69) ts52: Trade Y3 G3 Gonzo

70) agentofchaos: Move Y2 Hadepoch Grover

71) ts52: Build G1 Gonzo



22879)
Started: 2012.11.1, Ended: 2013.2.26
Participants: Mandrel (S), lcnh (N)
Winner: Mandrel

1) lcnh: Homeworld Y3 B1 G3

2) Mandrel: Homeworld R3 B2 G3

3) lcnh: Build G1 Lcnh
	Mandrel: Have a good game.

4) Mandrel: Build G1 Mandrel
	lcnh: Have fun!

5) lcnh: Discover G1 Lcnh Y2 Robo

6) Mandrel: Trade G1 Y1 Mandrel

7) lcnh: Build G1 Lcnh

8) Mandrel: Build Y1 Mandrel

9) lcnh: Trade G1 R1 Lcnh

10) Mandrel: Build G1 Mandrel

11) lcnh: Build R1 Lcnh

12) Mandrel: Discover G1 Mandrel Y1 Wkb

13) lcnh: Discover G1 Robo R3 Lens

14) Mandrel: Build Y2 Mandrel

15) lcnh: Build R1 Lcnh

16) Mandrel: Discover Y2 Mandrel G1 Sir

17) lcnh: Trade R1 B1 Lcnh

18) Mandrel: Build Y2 Sir

19) lcnh: Build G2 Lcnh

20) Mandrel: Build G2 Wkb

21) lcnh: Discover G2 Lcnh Y2 Klid

22) Mandrel: Build Y3 Sir

23) lcnh: Build G2 Klid

24) Mandrel: B Y3 Mandrel

25) lcnh: Build G3 Lens

26) Mandrel: Trade Y1 R1 Mandrel

27) lcnh: Trade R1 Y1 Lcnh

28) Mandrel: Discover Y2 Sir B2 Compression

29) lcnh: Move B1 Lcnh Klid

30) Mandrel: Discover Y1 Mandrel B1 Conformal

31) lcnh: Discover Y1 Lcnh R2 Model
	lcnh: I missed the last turn. Sorry.

32) Mandrel: Sacrifice Y3 Sir
Move Y2 Sir Compression
Move Y2 Compression Lcnh
Move Y2 Compression Lcnh

33) lcnh: Sacrifice G3 Lens
Build Y3 Model
Build G1 Klid
Build G3 Lens

34) Mandrel: Sacrifice R1 Mandrel
Attack R1N Lcnh

35) lcnh: Trade G3 R3 Lcnh

36) Mandrel: Sacrifice G2 Wkb
Build R1 Lcnh
Build R1 Lcnh
Catastrophe Lcnh Red

	Mandrel: Good game.


22848)
Variants: "Hard time"
Started: 2012.11.22, Ended: 2012.11.23
Participants: dlwillson (S), aayore (N)
Winner: aayore

1) aayore: Homeworld B3 G1 Y3



22801)
Started: 2012.12.3, Ended: 2013.1.3
Participants: daselva (S), syth (N), goblin981 (E)
Winner: goblin981

1) syth: Homeworld Y2 G1 B3

2) goblin981: H R1 B2 G3

3) daselva: Homeworld R1 B2 G3


4) syth: Build B1 Syth

5) goblin981: B G1 Goblin981

6) daselva: Build G1 Daselva

7) goblin981: T G1 Y1 Goblin981

8) daselva: Trade G1 Y1 Daselva

9) goblin981: B G1 Goblin981



23039)
Started: 2012.12.23, Ended: 2012.12.23
Participants: paz_newman (S), ts52 (N)
Winner: ts52



23177)
Variants: "Hard time"
Started: 2012.12.31, Ended: 2013.1.3
Participants: Danner (S), Aristos (N)
Winner: Danner

1) Aristos: Homeworld G1 B2 Y3
	Danner: Happy New Year! Have you found anything conclusive regarding the take back problem, or shall we make a rule?

2) Danner: Homeworld G1 B2 G3 *

3) Aristos: Build Y1 Aristos

4) Danner: Build G1 Danner
	Aristos: I have not found anything conclusive. Admins never replied. 

5) Aristos: Build Y1 Aristos
	Danner: I vote for allowing take backs. :)

6) Danner: Trade G3 Y3 Danner

7) Aristos: Trade Y3 G3 Aristos

8) Danner: Build G2 Danner

9) Aristos: Discover G3 Aristos Y3 Outlier

10) Danner: Move G1 Danner Outlier
	Aristos: I should resign now. I totally missed that the first move needed to be a trade to green. I've not seen the double-green opening trick before, and it's pretty devastating. I'm assuming the correct response would have been "trade y3 g3 Aristos" as my first move.
	Danner: Yes, that response seems to be correct.
However, you have seen this trick before. :)
http://superdupergames.org/?page=archive_play&gid=20292&idx=1

	Aristos: Don't recall seeing it. Been too long I guess. 


23196)
Variants: "Hard time"
Started: 2013.1.3, Ended: 2013.3.21
Participants: dethdukk (S), Salmonax (N)
Winner: dethdukk

1) Salmonax: Homeworld G3 R2 B3

2) dethdukk: Homeworld B1 R3 G3

3) Salmonax: Build B1 Salmonax
	dethdukk: Hello sal.  Good luck in the game.
	Salmonax: Hi, good luck

4) dethdukk: Build G1 Dethdukk

5) Salmonax: Trade B1 Y1 Salmonax

6) dethdukk: Build G1 Dethdukk

7) Salmonax: Build Y1 Salmonax

8) dethdukk: Trade G1 Y1 Dethdukk

9) Salmonax: Build Y2 Salmonax

10) dethdukk: Build Y2 Dethdukk

11) Salmonax: Discover Y1 Salmonax G1 Samandmax

12) dethdukk: Discover Y2 Dethdukk G2 Frontier

13) Salmonax: Build Y2 Samandmax

14) dethdukk: Build Y3 Dethdukk

15) Salmonax: Trade Y1 B1 Salmonax

16) dethdukk: Discover Y1 Dethdukk B2 Beyond

17) Salmonax: Trade B1 R1 Salmonax

18) dethdukk: Sacrifice G3 Dethdukk
Build Y1 Frontier
Build Y3 Dethdukk
Build Y3 Beyond

19) Salmonax: Move Y2 Samandmax Frontier

20) dethdukk: Build G1 Dethdukk

21) Salmonax: Sacrifice R1 Salmonax
Attack Y2 Frontier

22) dethdukk: Build G2 Dethdukk

23) Salmonax: Move Y2 Frontier Dethdukk

24) dethdukk: Trade Y3 R3 Dethdukk

25) Salmonax: Trade Y2 G2 Dethdukk
Catastrophe Dethdukk Green

26) dethdukk: Trade Y3 G3 Beyond

27) Salmonax: Build Y2 Samandmax

28) dethdukk: Build Y3 Frontier

29) Salmonax: Build Y3 Frontier
Catastrophe Frontier Yellow

30) dethdukk: Build Y1 Beyond

31) Salmonax: Build Y2 Salmonax

32) dethdukk: Move Y1 Beyond Samandmax

33) Salmonax: Sacrifice Y2 Salmonax
Discover Y2 Samandmax G2 Scoobydoo
Move Y1 Samandmax Scoobydoo

34) dethdukk: Build Y2 Samandmax

35) Salmonax: Trade Y2 R2 Salmonax

36) dethdukk: Sacrifice G3 Beyond
Build Y2 Samandmax
Build Y3 Beyond
Build Y3 Dethdukk

37) Salmonax: Move Y1 Scoobydoo Samandmax
Catastrophe Samandmax Yellow

38) dethdukk: Trade Y3 G3 Dethdukk
	dethdukk: SDG is no longer sending me turn notifications...  making it hard to keep up lol

39) Salmonax: Build Y1 Scoobydoo
	Salmonax: oh no!

40) dethdukk: Discover Y3 Beyond G1 Stone

41) Salmonax: Build B1 Salmonax

42) dethdukk: Move R3 Dethdukk Scoobydoo

43) Salmonax: Build Y1 Scoobydoo

44) dethdukk: Build R1 Scoobydoo

45) Salmonax: Move Y1 Scoobydoo Dethdukk

46) dethdukk: Attack Y2 Scoobydoo



23088)
Variants: "Hard time"
Started: 2013.1.3, Ended: 2013.1.4
Participants: dlwillson (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld Y2 B3 G3



23159)
Started: 2013.1.4, Ended: 2013.1.4
Participants: ts52 (S), musichascolors (N)
Winner: ts52



22897)
Variants: "Hard time"
Started: 2013.1.5, Ended: 2013.1.16
Participants: SilentTitan (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld G3 Y1 B3

2) SilentTitan: Homeworld R1 B2 G3

3) Broccoli_Commander: Build B1 Broccoli_commander

4) SilentTitan: Build G1 Silenttitan
	Broccoli_Commander: Good evening SilentTitan, may the stars shine upon our game.

5) Broccoli_Commander: Trade B1 Y1 Broccoli_commander
	SilentTitan: ... and the cheese sauce be ever hot and melty... Good Luck to you Sir

6) SilentTitan: Trade G3 Y3 Silenttitan
	Broccoli_Commander: You too dear fellow. Do not leave your nachos unattended though

7) Broccoli_Commander: Build B1 Broccoli_commander

8) SilentTitan: Build G1 Silenttitan

9) Broccoli_Commander: Discover B3 Broccoli_commander B2 Blueberry

10) SilentTitan: Discover G1 Silenttitan B3 Sol

11) Broccoli_Commander: Trade B3 G3 Blueberry

12) SilentTitan: Trade G1 R1 Silenttitan

13) Broccoli_Commander: Build G1 Blueberry

14) SilentTitan: Move R1 Silenttitan Sol

15) Broccoli_Commander: Build Y1 Broccoli_commander

16) SilentTitan: Build R1 Sol

17) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry

18) SilentTitan: Build R2 Sol

19) Broccoli_Commander: Sacrifice G3 Blueberry
Build Y2 Blueberry
Build Y2 Blueberry
Build Y2 Broccoli_commander
	Broccoli_Commander: All right, I'm trying a wild thing... let's see :-D

20) SilentTitan: Sacrifice G1 Sol
Build Y3 Silenttitan
	SilentTitan: That is pretty wild....

21) Broccoli_Commander: Trade Y2 R2 Blueberry

22) SilentTitan: Trade R2 Y2 Sol

23) Broccoli_Commander: Build Y3 Blueberry

24) SilentTitan: Move Y2 Sol Blueberry
Catastrophe Blueberry Yellow

25) Broccoli_Commander: Build R2 Blueberry
	Broccoli_Commander: Yeah I kinda overlooked the g1 sacrifice to build the y3.....

26) SilentTitan: Move Y3 Silenttitan Sol
	SilentTitan: .... and maybe the catastophe?
	Broccoli_Commander: yeah no this was on purpose, but frankly I guess I'm dead.... I may resign in 2-3 turns ^^
	Broccoli_Commander: (and was dead before the cat)

27) Broccoli_Commander: Trade Y2 R2 Broccoli_commander
	SilentTitan: humm... well you are slightly ahead in points.  and I'm limited by no green currently.. so your position isn't hopeless.


28) SilentTitan: Trade R1 G1 Sol

29) Broccoli_Commander: Trade R2 Y2 Blueberry
	Broccoli_Commander: Right, I see a tiny light at the end of a long tunnel; I was really afraid I could not get a 3 pointer before your arrival...

30) SilentTitan: Build G1 Sol

31) Broccoli_Commander: Build G2 Blueberry

32) SilentTitan: Move G1 Sol Silenttitan

33) Broccoli_Commander: Build R1 Blueberry

34) SilentTitan: Build G2 Silenttitan

35) Broccoli_Commander: Build R2 Broccoli_commander

36) SilentTitan: Build R3 Sol

37) Broccoli_Commander: Sacrifice G2 Blueberry
Build R3 Blueberry
Build R3 Broccoli_commander

38) SilentTitan: Sacrifice Y3 Silenttitan
Move R1 Sol Blueberry
Move R1 Blueberry Broccoli_commander
Move R3 Sol Blueberry
Catastrophe Blueberry Red
Catastrophe Broccoli_commander Red

39) Broccoli_Commander: D G1 Blueberry Y3 Cauliflower

40) SilentTitan: Build G2 Sol

41) Broccoli_Commander: B G2 Cauliflower

42) SilentTitan: Trade G2 Y2 Sol

43) Broccoli_Commander: Sacrifice Y2 Blueberry
Move G1 Cauliflower Silenttitan
Move G2 Cauliflower Silenttitan
Catastrophe Silenttitan G

	Broccoli_Commander: Errr...
Thanks for the game :-D
	SilentTitan: LOL.. you too... sorry about that ... I am glad you saw that and undid your move to capitalize on the mistake I made.  Nice Job. Let's go again eh?
	SilentTitan: ah... I spoke before I looked at the last turn in detail ... you saw the win you just forgot the CAT.  I had intended to change the G2 to R2 in SilentTitan then change the G2 to Y2 in Sol and got ahead of myself.  Happens. Either way good job.


23212)
Variants: "Hard time"
Started: 2013.1.5, Ended: 2013.1.11
Participants: dlwillson (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld G1 B2 Y3

2) dlwillson: Homeworld B3 G1 Y3
	Broccoli_Commander: Good evening dlwillson. Let the stars be our guides.

3) Broccoli_Commander: Build Y1 Broccoli_commander
	dlwillson: Good evening to you, Broccoli. I hope you are healthy.
heh... get it? healthy? broccoli? I kill myself.

4) dlwillson: Build Y1 Dlwillson
	Broccoli_Commander: Full of good ol' green vitamins! 
Good luck and have fun dear Sir.

5) Broccoli_Commander: Trade Y1 G1 Broccoli_commander
	dlwillson: I will, and you do, too! :-)

6) dlwillson: Discover Y1 Dlwillson G2 Frog

7) Broccoli_Commander: Build G2 Broccoli_commander

8) dlwillson: Build Y1 Dlwillson
	Broccoli_Commander: Heh I figure you would not have fallen in the trap ;-) (cf. undo)

9) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower
	Broccoli_Commander: cu tomorrow, bedtime (living in Europe)

10) dlwillson: Build Y1 Frog
	dlwillson: 'Night. Sleep well.

11) Broccoli_Commander: Build Y2 Broccoli_commander

12) dlwillson: B Y2 Frog

13) Broccoli_Commander: Build G2 Cauliflower

14) dlwillson: T Y1 R1 Dlwillson

15) Broccoli_Commander: Trade Y2 R2 Broccoli_commander

16) dlwillson: Trade Y3 G3 Dlwillson

17) Broccoli_Commander: Build G3 Broccoli_commander

18) dlwillson: Discover Y1 Frog B3 Sky
	dlwillson: You're playing well so far. Good opening.

19) Broccoli_Commander: Move G3 Broccoli_commander Sky

20) dlwillson: Build R1 Dlwillson

21) Broccoli_Commander: Build R1 Broccoli_commander
	Broccoli_Commander: Thanks,  it's my first time playing online... had to undo a couple o times :-D  I was very glad to find this website, even more now that I realize it's populated with friendly people.

22) dlwillson: Move Y1 Frog Dlwillson

23) Broccoli_Commander: Build G3 Sky

24) dlwillson: B Y1 Frog

25) Broccoli_Commander: Sacrifice G3 Sky
Build G3 Sky
Build R2 Broccoli_commander
Build Y2 Broccoli_commander

26) dlwillson: Move R1 Dlwillson Frog

27) Broccoli_Commander: Sacrifice Y2 Broccoli_commander
Move R2 Broccoli_commander Sky
Move G3 Sky Frog

28) dlwillson: B Y2 Frog

29) Broccoli_Commander: Sacrifice R2 Broccoli_commander
Attack Y2S Frog
Attack Y2S Frog

30) dlwillson: B Y2 Frog
C Frog Y

31) Broccoli_Commander: Sacrifice R1 Broccoli_commander
Attack R1S Frog

32) dlwillson: Discover Y1 Sky B2 Sea

33) Broccoli_Commander: Trade G3 Y3 Sky
	dlwillson: You're not a novice, are you? You're not Andy, though. Who are you?

	Broccoli_Commander: (but I don't mind finishing either)


23206)
Started: 2013.1.5, Ended: 2013.1.10
Participants: Broccoli_Commander (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Broccoli_Commander: Homeworld B1 G3 Y3

3) ts52: Build G1 Ts52

4) Broccoli_Commander: Build Y1 Broccoli_commander

5) ts52: Discover G1 Ts52 B3 Grover

6) Broccoli_Commander: Trade Y1 G1 Broccoli_commander
	Broccoli_Commander: Good game dear Sir

7) ts52: Build G1 Grover

8) Broccoli_Commander: Build G2 Broccoli_commander

9) ts52: Build G2 Grover

10) Broccoli_Commander: Discover G2 Broccoli_commander Y2 Cauliflower

11) ts52: Trade G2 Y2 Grover

12) Broccoli_Commander: Build G2 Cauliflower
	ts52: Hope you have a good game too.

13) ts52: Build G2 Ts52

14) Broccoli_Commander: Discover G2 Cauliflower G3 Space_lettuce

15) ts52: Trade G2 R2 Ts52

16) Broccoli_Commander: Trade G1 R1 Broccoli_commander

17) ts52: Build Y1 Grover

18) Broccoli_Commander: Build Y1 Broccoli_commander

19) ts52: Discover Y1 Grover G2 Kermit

20) Broccoli_Commander: Build R1 Broccoli_commander

21) ts52: Build Y2 Kermit

22) Broccoli_Commander: Move Y1 Broccoli_commander Kermit

23) ts52: Build Y3 Grover

24) Broccoli_Commander: Build G1 Cauliflower

25) ts52: Trade Y3 R3 Grover

26) Broccoli_Commander: Discover G2 Cauliflower B3 Blueberry

27) ts52: Build Y3 Grover
	Broccoli_Commander: nice pace :-) God you're not so bad at this game ^^'
	ts52: :) Thanks, I think.

28) Broccoli_Commander: Sacrifice G2 Space_lettuce
Build G2 Cauliflower
Build G3 Blueberry
	Broccoli_Commander: I'm really new to this online game system, it's some nice piece I must say

29) ts52: Move R3 Grover Cauliflower

30) Broccoli_Commander: Discover G2 Cauliflower Y3 Carrot
	ts52: I've been playing here for a while, it really is a well set up system.

31) ts52: Attack G1 Cauliflower

32) Broccoli_Commander: Trade Y3 B3 Broccoli_commander

33) ts52: Trade Y3 R3 Grover

34) Broccoli_Commander: Trade G3 Y3 Blueberry

35) ts52: Build G3 Cauliflower

36) Broccoli_Commander: Build Y3 Kermit
Catastrophe Kermit Y
	Broccoli_Commander: And I'm sorry if lost the game 10 turns ago and don't see it.......

37) ts52: Build R1 Cauliflower

38) Broccoli_Commander: Sacrifice G2 Carrot
Build G2 Blueberry
Build Y1 Blueberry

39) ts52: Trade G1 B1 Grover

40) Broccoli_Commander: Trade B3 Y3 Broccoli_commander

41) ts52: Build R2 Grover

42) Broccoli_Commander: Build Y1 Broccoli_commander

43) ts52: Build Y2 Grover

	Broccoli_Commander: You won so long ago anyway :-P
Well played and thanks for the game
	ts52: Thanks for the game.


23217)
Variants: "Hard time"
Started: 2013.1.6, Ended: 2013.4.22
Participants: SilentTitan (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) SilentTitan: Homeworld G3 B2 Y3
	dlwillson: Good skill, Mr. Titan!
	SilentTitan: Mister...Ha.... How about you just drive over here an we duke this out on the table .... with a chess clock?

3) dlwillson: Build G1 Dlwillson
	SilentTitan: Happy gaming and much defiance to you Mr. Willson

4) SilentTitan: Build Y1 Silenttitan
	dlwillson: Chess clocks are no fun, I just wet my pants, and lose... :-)
	SilentTitan: I could live with that... as long as you are not sitting in my good chair.

5) dlwillson: Trade G1 Y1 Dlwillson

6) SilentTitan: Trade Y1 R1 Silenttitan

7) dlwillson: B G1 Dlwillson

8) SilentTitan: Build R1 Silenttitan

9) dlwillson: T G1 R1 Dlwillson

10) SilentTitan: Trade R1 B1 Silenttitan

11) dlwillson: Build G1 Dlwillson

12) SilentTitan: Build B1 Silenttitan

13) dlwillson: T G1 B1 Dlwillson

14) SilentTitan: Discover B1 Silenttitan G1 Sol

15) dlwillson: B B2 Dlwillson

16) SilentTitan: Build B2 Sol

17) dlwillson: D B2 Dlwillson G2 Field

18) SilentTitan: Build B3 Silenttitan

19) dlwillson: B B3 Field
	dlwillson: Whoa! You took a turn!

20) SilentTitan: Trade B3 Y3 Silenttitan
	SilentTitan: wait.... I DID WHAT?

21) dlwillson: Trade B3 Y3 Field

22) SilentTitan: Trade B2 Y2 Sol
	dlwillson: You know, you don't actually HAVE to wait until the clock runs out. It just goes that high so you can go on vacations and things.
	SilentTitan: well... I was on vacation... went over to some sport death thing


23) dlwillson: M Y3 Field Sol

24) SilentTitan: Build Y1 Sol

25) dlwillson: S B1 Dlwillson
T Y3 R3 Sol

26) SilentTitan: Sacrifice Y2 Sol
Discover Y1 Sol B2 Sole
Discover B1 Sol Y2 Soul

27) dlwillson: M Y1 Dlwillson Field

28) SilentTitan: Trade Y3 G3 Silenttitan

29) dlwillson: B Y2 Field

30) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sole
Build Y3 Sole
Build Y3 Silenttitan

31) dlwillson: S Y2 Field
M Y1 Field Sol
M Y1 Sol Sole
Cat Sole Y

32) SilentTitan: Trade Y3 G3 Silenttitan

33) dlwillson: B G1 Dlwillson

34) SilentTitan: Discover R1 Silenttitan B1 Sole

35) dlwillson: T G1 Y1 Dlwillson

36) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Soul
Build B3 Soul
Build B3 Silenttitan

37) dlwillson: M Y1 Dlwillson Field

38) SilentTitan: Sacrifice B2 Soul
Trade B3 G3 Silenttitan
Trade B3 R3 Soul

39) dlwillson: Build B2 Field

40) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Silenttitan
Build B3 Soul
Build Y1 Silenttitan

41) dlwillson: Move B2 Field Sol

42) SilentTitan: Sacrifice B1 Silenttitan
Trade B3 G3 Soul

43) dlwillson: Build Y2 Field

44) SilentTitan: Move Y1 Silenttitan Sole

45) dlwillson: Move Y1 Field Sol

46) SilentTitan: Sacrifice G3 Soul
Build Y2 Silenttitan
Build Y3 Sole
Build B1 Soul

47) dlwillson: B Y3 Field

48) SilentTitan: Discover Y1 Sole B3 Tic

49) dlwillson: B R1 Sol

50) SilentTitan: Trade B1 G1 Soul

51) dlwillson: B B1 Sol

52) SilentTitan: Sacrifice Y2 Silenttitan
Move Y1 Tic Field
Move Y3 Sole Field
Catastrophe Field Yellow

53) dlwillson: B B3 Field

54) SilentTitan: Trade B3 G3 Silenttitan

55) dlwillson: T B2 Y2 Field



23219)
Variants: "Unrated"
Started: 2013.1.6, Ended: 2013.1.9
Participants: dungeon (S), disaac (N)
Winner: disaac

1) disaac: Homeworld G3 Y2 B3

2) dungeon: Homeworld Y3 B2 G3

3) disaac: Build B1 Disaac

4) dungeon: Build G1 Dungeon

5) disaac: Discover B1 Disaac G1 Gaea1

6) dungeon: Discover G1 Dungeon B1 Dscwrld1

7) disaac: Build B1 Disaac

8) dungeon: Build G1 Dscwrld1

9) disaac: Trade B3 G3 Disaac

10) dungeon: Trade G1 Y1 Dscwrld1

11) disaac: Sacrifice G3 Disaac
Build B2 Gaea1
Build B2 Disaac
Build B3 Disaac

12) dungeon: Discover Y1 Dscwrld1 G3 Hamsammich

13) disaac: Build B3 Gaea1

14) dungeon: Build G1 Dscwrld1
	disaac: ouch... not what I was expecting

	dungeon: You are so going to move in all of those blues in for a cat...  I do not know how I missed it.  At least I will be able to get some practice in from this and get bettr. ^_^ 

15) disaac: Sacrifice B2 Disaac
Trade B3 Y3 Gaea1
Trade B2 R2 Gaea1

16) dungeon: Build G2 Dscwrld1
	disaac: Nah... I am going to diversify.

17) disaac: Move Y3 Gaea1 Dungeon

18) dungeon: Trade G3 Y3 Dungeon
	disaac: check (-mate perhaps?)

19) disaac: Sacrifice R2 Gaea1
Attack Y3 Dungeon
Pass
	dungeon: Lol.  Close... but you know you and Rob always stomp me in this. ;-) 
	disaac: Just need to get more games under your belt.
	dungeon: Tha fun!  :-p
	disaac: I had a couple of surprises from you in this game. Didn't realize it was a small universe until you moved out to dscwrld1. And didn't expect you to soak up the last large green by discovering it as a new system. 
	dungeon: Me either.  I was on the second move before it hit me.  Lol.  That green was supposed to be a haymaker... but came off as a three-stooges eye poke. ;-)



23231)
Variants: "Hard time"
Started: 2013.1.9, Ended: 2013.1.14
Participants: TwoShort (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld G3 B2 Y3

2) TwoShort: Homeworld R1 B3 G3
	Aristos: Sorry... it took me a bit to notice that you had accepted the challenge. I got hit with a barrage of 62 e-mails that gmail flagged as "Important" all in the space of an hour, each one from a completely different person. It was like everyone in my life had a sudden crisis/epiphany/question, etc. Total coincidence, but overwhelming.

3) Aristos: Build Y1 Aristos
	TwoShort: no problem.  Have a good game.

4) TwoShort: Build G1 Twoshort

5) Aristos: Build Y1 Aristos

6) TwoShort: Trade G1 Y1 Twoshort

7) Aristos: Trade Y1 G1 Aristos

8) TwoShort: Build G1 Twoshort

9) Aristos: Discover G1 Aristos B1 Spark

10) TwoShort: Build G1 Twoshort

11) Aristos: Sacrifice Y3 Aristos
Discover G1 Spark B2 Waypoint
Move G1 Waypoint Twoshort
Pass
Catastrophe Twoshort Green

12) TwoShort: Trade Y1 G1 Twoshort

13) Aristos: Build Y1 Aristos

14) TwoShort: Build G1 Twoshort
	Aristos: Hey, TwoShort... have you ever seen anyone catastrophe one of the stars of their own homeworld in order to shorten the distance from one homeworld to the other? I thought about that idea the other day and was trying to figure out if it would ever be a useful strategy. Like in this game, if I blew my giant star, I would then be able to step directly to your homeworld. I'd have to have a giant fleet ready to move. Ever see anything like that?

15) Aristos: Build Y1 Aristos
	TwoShort: I've never seen it, but I've considered the option...  i.e. I've noticed that I could do it if my opponent made a move they ultimately didn't; and I've wanted to win a game that way, just for the cool points :)  BTW, nice move with the catastrophe, I feel dumb I missed it.
	Aristos: Thanks.

16) TwoShort: Trade G1 R1 Twoshort

17) Aristos: Discover Y1 Aristos B1 Aaa

18) TwoShort: Build R1 Twoshort

19) Aristos: Build Y2 Aristos

20) TwoShort: Build G1 Twoshort

21) Aristos: Discover Y1 Aaa G2 Bbb

	Aristos: I don't see any way for you to ever get any yellow tech or any size 2 ships as long as I don't leave any size 1 yellows in the bank.
	TwoShort: OK, you've had me from the catastrophe and I've just been waiting to see if you'd screw it up, but you won't :(  Good game.
	Aristos: Thanks. 


23232)
Started: 2013.1.9, Ended: 2013.1.15
Participants: disaac (S), dungeon (N)
Winner: disaac

1) dungeon: Homeworld Y3 B1 G3

2) disaac: H G3 Y2 B3

3) dungeon: Build G1 Dungeon

4) disaac: B B1 Disaac

5) dungeon: Discover G1 Dungeon B2 Dalmuti

6) disaac: T B3 G3 Disaac

7) dungeon: Build G1 Dungeon

8) disaac: B B1 Disaac

9) dungeon: Trade G3 Y3 Dungeon

10) disaac: Discover B1 Disaac G1 Gaea1

11) dungeon: Build G2 Dungeon

12) disaac: B B2 Gaea1

13) dungeon: Build G2 Dalmuti

14) disaac: T B2 G2 Gaea1

15) dungeon: Build G3 Dungeon

16) disaac: B B2 Disaac

17) dungeon: Trade G3 Y3 Dungeon
	dungeon: Oh buddy... ...  I think this is the tenth or so game I have played in the past 30 hours... ;-)

18) disaac: Sacrifice G3 Disaac
Build B2 Gaea1
Build B3 Gaea1
Build B3 Disaac
	disaac: And it is looking like you might win this one. :)
This turn may take me a bit of time. I need to see if I can think of a good way out of the mess I am getting into.
	dungeon: Lol.  I might do some damage... but that is as far as I have ever gotten playing against you! ;-p

19) dungeon: Sacrifice Y3 Dungeon
Move G1 Dalmuti Gaea1
Move G2 Dalmuti Gaea1
Discover G2 Dungeon B2 Saboteur
Catastrophe Gaea1 Green

20) disaac: Discover B2 Disaac Y1 Ds1

21) dungeon: Build G1 Saboteur
	dungeon: Sorry, I forgot to place the catastrophe... 

22) disaac: Trade B3 G3 Disaac

23) dungeon: Trade G2 B2 Saboteur

24) disaac: D B2 Ds1 Y2 Ds2

25) dungeon: Build G1 Saboteur

26) disaac: S G3 Disaac
B B1 Ds2
B B3 Disaac
B B3 Ds2
	dungeon: Death Star 2 huh... ^_^

27) dungeon: Sacrifice Y3 Dungeon
Discover G1 Saboteur Y1 Id
Move G1 Saboteur Id
Move B2 Saboteur Id

28) disaac: M B2 Ds2 Dungeon

29) dungeon: Build G2 Dungeon

30) disaac: T B3 R3 Ds2

31) dungeon: Trade B2 Y2 Id

32) disaac: Sacrifice R3 Ds2
Attack G2 Dungeon
Attack G1 Dungeon
Pass
	disaac: dungeon said: [Death Star 2 huh... ^_^]

Deep Space 2 (didn't make it up to 9)
	dungeon: Lol.  Breaking out the red... ;-(

	disaac: Just wrapping things up. :)
	disaac: Nice game though. You had me worried there for a while. I was just (happily) surprised that you sacked your last large from your homeworld.
	dungeon: So close...  at least I lasted longer this time... ^_^


23216)
Started: 2013.1.10, Ended: 2013.1.15
Participants: Broccoli_Commander (S), ts52 (N)
Winner: Broccoli_Commander

1) ts52: Homeworld Y1 B3 G3

2) Broccoli_Commander: Homeworld Y1 G2 Y3 *
	ts52: Have a good game!
	Broccoli_Commander: You too! Hope I won't be crushed as easily ^^'

3) ts52: Build G1 Ts52
	Broccoli_Commander: This is a wild try, let's see...
	ts52: That is wild.

4) Broccoli_Commander: Build Y1 Broccoli_commander

5) ts52: Discover G1 Ts52 B2 Gonzo

6) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce

7) ts52: Build G1 Ts52

8) Broccoli_Commander: Build Y2 Lettuce

9) ts52: Build G1 Gonzo

10) Broccoli_Commander: Build Y2 Lettuce

11) ts52: Build G2 Gonzo

12) Broccoli_Commander: Build Y2 Broccoli_commander

13) ts52: Discover G1 Ts52 B2 Grover

14) Broccoli_Commander: Discover Y2 Broccoli_commander G3 Watermelon

15) ts52: Build G2 Ts52

16) Broccoli_Commander: Build Y3 Watermelon

17) ts52: Trade G2 R2 Ts52

18) Broccoli_Commander: Build Y3 Watermelon

19) ts52: Build G2 Ts52

20) Broccoli_Commander: Move Y3 Watermelon Gonzo

21) ts52: Trade G2 R2 Gonzo

22) Broccoli_Commander: Trade Y3 R3 Gonzo
	ts52: oh nice, that's _very_ interesting

23) ts52: Sacrifice G2 Ts52
Build R1 Gonzo
Build R1 Gonzo
Catastrophe Gonzo Red
	Broccoli_Commander: t y3 r3 gonzo

24) Broccoli_Commander: Build Y3 Watermelon
	Broccoli_Commander: Oops wrong text field. Yes it's interesting :-D Technically I had at least forced a tie, let's see how it pans out now..

25) ts52: Build G2 Grover
	ts52: It's not over yet, but it will be interesting.

26) Broccoli_Commander: Move Y3 Watermelon Grover

27) ts52: Trade G1 R1 Grover

28) Broccoli_Commander: Trade Y3 R3 Grover

29) ts52: Sacrifice G2 Grover
Build R1 Grover
Build R1 Grover
Catastrophe Grover Red

30) Broccoli_Commander: Build Y3 Watermelon

31) ts52: Build G1 Ts52
	ts52: Hmmm, this isn't going to last very long. :(

32) Broccoli_Commander: Move Y3 Watermelon Gonzo
	Broccoli_Commander: Yeah like this you lose a ship each "cycle"

33) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G2 Gonzo
Build G3 Ts52

34) Broccoli_Commander: Trade Y3 R3 Gonzo

35) ts52: Trade G3 Y3 Ts52

36) Broccoli_Commander: Attack G2 Gonzo

37) ts52: Sacrifice G2 Ts52
Build G2 Gonzo
Build G3 Ts52
Catastrophe Gonzo Green

38) Broccoli_Commander: Move Y2 Lettuce Gonzo

39) ts52: Discover Y3 Ts52 G2 Kermit

40) Broccoli_Commander: Trade Y2 G2 Gonzo
	Broccoli_Commander: nice move!
	ts52: Thanks. I've still got a big uphill battle though.

41) ts52: Discover G1 Ts52 Y2 Zoe

42) Broccoli_Commander: Build G1 Gonzo

43) ts52: Discover Y3 Kermit B3 Grover

44) Broccoli_Commander: Trade G1 B1 Gonzo

45) ts52: Sacrifice G1 Zoe
Build Y2 Grover

46) Broccoli_Commander: Sacrifice B1 Gonzo
Trade Y3 R3 Broccoli_commander

47) ts52: Build G1 Ts52
	Broccoli_Commander: sorry for that undo
	ts52: no problem

48) Broccoli_Commander: Build Y3 Lettuce

49) ts52: Trade Y2 G2 Grover

50) Broccoli_Commander: B Y2 Watermelon

51) ts52: Build G1 Grover

52) Broccoli_Commander: Build G1 Gonzo

53) ts52: Discover G1 Ts52 B2 Cookie

54) Broccoli_Commander: Sacrifice Y3 Watermelon
Move Y2 Watermelon Gonzo
Move Y2 Watermelon Gonzo
Move Y3 Lettuce Cookie

55) ts52: Build G3 Cookie

56) Broccoli_Commander: Build Y3 Lettuce

57) ts52: Trade G1 R1 Cookie

58) Broccoli_Commander: Sacrifice R3 Gonzo
Attack G3 Cookie
Attack R1 Cookie
Pass
	Broccoli_Commander: pfff this was not very wise but i won't undo again ^^'

59) ts52: Build R1 Ts52

60) Broccoli_Commander: Sacrifice Y3 Lettuce
Move G1 Gonzo Ts52
Move G2 Gonzo Ts52
Move G3 Cookie Ts52
Catastrophe Ts52 G

61) ts52: Trade R2 G2 Ts52

62) Broccoli_Commander: Sacrifice Y2 Gonzo
Move Y2 Lettuce Broccoli_commander
Move Y3 Cookie Ts52

63) ts52: Sacrifice G2 Ts52
Build Y2 Grover
Build Y3 Grover

64) Broccoli_Commander: Sacrifice R1 Cookie
Attack R1 Ts52

	Broccoli_Commander: Good game!
It was hard to actually finish it ^^' You even got close of winning at some point. Did I make a big mistake after the yellow monopoly of the start?
	ts52: Hard to say for sure. I should've given up trying to keep you from getting green earlier. Not sure if you made any big mistakes.


23239)
Started: 2013.1.10, Ended: 2013.1.24
Participants: adwm86 (S), dungeon (N)
Winner: adwm86

1) dungeon: Homeworld G3 Y2 B3

2) adwm86: Homeworld B2 Y1 G3

3) dungeon: Build B1 Dungeon

4) adwm86: Build G1 Adwm86

5) dungeon: Discover B3 Dungeon Y1 Magewar

6) adwm86: Discover G3 Adwm86 Y3 Agricola
	dungeon: I find playing in this format refreshing, but I still tend to make more mistakes here than I don on the table... meh... is practice anyway ;-)

7) dungeon: Build B1 Dungeon

8) adwm86: Build G1 Adwm86

9) dungeon: Trade B1 G1 Dungeon

10) adwm86: Build G2 Adwm86

11) dungeon: Build G2 Dungeon

12) adwm86: Move G1 Adwm86 Agricola

13) dungeon: Move G2 Dungeon Magewar

14) adwm86: Trade G2 R2 Adwm86

15) dungeon: Build G2 Magewar
	adwm86: Ya just like mtg on ps3.   I find I have submit what im tryin do couple times
	adwm86: My homeworld is adwm86  it looks like 88 on end
	dungeon: No probs.  I just got m'taint handed to me yesterday... ugh... thought I was having a good game.  You got anyone to play these up here yet?

16) adwm86: Build G2 Adwm86
	adwm86: 
	adwm86: 

17) dungeon: Build G3 Dungeon

18) adwm86: Discover G3 Agricola B2 Twilight

19) dungeon: Discover G2 Magewar Y3 Bang

20) adwm86: Trade G2 Y2 Adwm86

21) dungeon: Discover G2 Magewar Y3 Dyinglights
	dungeon: You playing from your phone?  I cannot get it to work properly from mine ;-(...

22) adwm86: Move R2 Adwm86 Dyinglights

23) dungeon: Move G2 Dyinglights Adwm86
	dungeon: Accidentally hit the undo button when trying to scroll and refresh.. ugh... 

24) adwm86: Trade Y2 R2 Adwm86

25) dungeon: Build G2 Bang

26) adwm86: Attack G2 Adwm86

27) dungeon: Move B3 Magewar Bang

28) adwm86: Discover G1 Agricola Y1 Mtg

29) dungeon: Trade B3 R3 Bang

30) adwm86: Move G1 Mtg Dungeon
Catastrophe Dungeon G

31) dungeon: Move R3 Bang Adwm86

32) adwm86: Move R2 Dyinglights Dungeon
	adwm86: Sorry  I forget about txt block in bottom 
Ya I play from my phone
	dungeon: S'all good.  Lucky... I can't get it to work good on mine ;-(  I try to play early in the morning at work or during lunch...  I am ordering a demo kit from LL's later this month and will start to demo at the local stores soon!  

33) dungeon: Sacrifice G2 Bang
Build B1 Dungeon
Build B1 Dungeon

34) adwm86: Attack B1 Dungeon
	adwm86: What is LL's

35) dungeon: Attack R2 Adwm86
	dungeon: Looney Labs ;-)

36) adwm86: Attack B1 Dungeon

37) dungeon: Sacrifice G2 Bang
Build B2 Dungeon
Build B3 Dungeon

38) adwm86: Discover R2 Dungeon Y3 Mtg
Catastrophe Dungeon B

	dungeon: ;-)
	adwm86: Couldnt have sac R2 in my system to attack twice with R3 in mu home system to cap my two G1?
	dungeon: Sack of crud...  I should have done that!!!  Ugh... I will get you next time... ;-)


23215)
Variants: "Hard time"
Started: 2013.1.11, Ended: 2013.1.29
Participants: Broccoli_Commander (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y2 B3 G3
	Broccoli_Commander: Good game!

2) Broccoli_Commander: Homeworld Y1 G2 B3

3) dlwillson: Build G1 Dlwillson
	dlwillson: Good skill, Broccoli

4) Broccoli_Commander: Build B1 Broccoli_commander

5) dlwillson: T G1 B1 Dlwillson

6) Broccoli_Commander: Trade B3 G3 Broccoli_commander

7) dlwillson: Build G1 Dlwillson

8) Broccoli_Commander: Build G1 Broccoli_commander

9) dlwillson: T G1 Y1 Dlwillson

10) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

11) dlwillson: Discover B1 Dlwillson G1 Field

12) Broccoli_Commander: Build G1 Broccoli_commander

13) dlwillson: B Y1 Dlwillson

14) Broccoli_Commander: Build G2 Blueberry

15) dlwillson: M Y1 Dlwillson Field

16) Broccoli_Commander: Trade G2 Y2 Blueberry

17) dlwillson: B B1 Field

18) Broccoli_Commander: Build B2 Broccoli_commander

19) dlwillson: B B2 Field

20) Broccoli_Commander: B G2 Blueberry

21) dlwillson: M B1 Field Blueberry
	Broccoli_Commander: sorry typo..

22) Broccoli_Commander: Discover G1 Blueberry R2 Tomatoe

23) dlwillson: Build Y2 Dlwillson

24) Broccoli_Commander: B Y3 Blueberry

25) dlwillson: Sacrifice G3 Dlwillson
Build B2 Blueberry
Build B3 Blueberry
Build Y3 Field
Catastrophe Blueberry B

26) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Tomatoe
Build G2 Tomatoe
Build G3 Broccoli_commander

27) dlwillson: Trade Y3 G3 Field

28) Broccoli_Commander: Sacrifice B1 Broccoli_commander
Trade G2 Y2 Tomatoe

29) dlwillson: Sacrifice Y2 Dlwillson
Move G3 Field Dlwillson
Discover B2 Field G3 Forest

30) Broccoli_Commander: Build B1 Broccoli_commander

31) dlwillson: B G2 Dlwillson

32) Broccoli_Commander: Trade G1 R1 Broccoli_commander

33) dlwillson: Trade G2 R2 Dlwillson

34) Broccoli_Commander: Build R1 Broccoli_commander

35) dlwillson: Build G1 Dlwillson

36) Broccoli_Commander: Move Y2 Tomatoe Field

37) dlwillson: Build Y2 Field

38) Broccoli_Commander: Move Y2 Field Tomatoe

39) dlwillson: T Y2 R2 Field

40) Broccoli_Commander: Build G2 Tomatoe

41) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Dlwillson
Build Y3 Field
Build G3 Dlwillson

42) Broccoli_Commander: B Y3 Tomatoe

43) dlwillson: M Y1 Field Tomatoe

44) Broccoli_Commander: M G2 Tomatoe Field

45) dlwillson: S G3 Dlwillson
B R1 Field
B Y3 Tomatoe
B G3 Dlwillson
C Tomatoe Y

46) Broccoli_Commander: T B2 Y2 Broccoli_commander

47) dlwillson: S G3 Dlwillson
B R3 Dlwillson
B B1 Forest
B G3 Dlwillson

48) Broccoli_Commander: S Y2 Broccoli_commander
M G2 Tomatoe Field
M G1 Tomatoe Field
C Field G

49) dlwillson: T B1 Y1 Forest

50) Broccoli_Commander: Trade G3 Y3 Broccoli_commander

51) dlwillson: B Y2 Forest

	Broccoli_Commander: I don't think I stand a chance...
Well played! Thanks for the game.
Wanna go again?
	dlwillson: Time for a rubber match!


23245)
Started: 2013.1.14, Ended: 2013.1.16
Participants: dungeon (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld G1 B2 Y3

2) dungeon: Homeworld B1 Y3 G3
	Broccoli_Commander: Hello, have a good game dear Sir.
	dungeon: No problem!  You will pulverise me.... but it will be worth the experience. ;-)

3) Broccoli_Commander: Build Y1 Broccoli_commander

4) dungeon: Build G1 Dungeon

5) Broccoli_Commander: T Y3 G3 Broccoli_commander

6) dungeon: Discover G1 Dungeon Y2 Tux1

7) Broccoli_Commander: Build Y1 Broccoli_commander

8) dungeon: Build G1 Dungeon

9) Broccoli_Commander: Build G2 Broccoli_commander

10) dungeon: Sacrifice G3 Dungeon
Build G2 Tux1
Build G2 Tux1
Build G3 Dungeon

11) Broccoli_Commander: Discover G2 Broccoli_commander G3 Lettuce

12) dungeon: Discover G2 Tux1 Y3 Yoy

13) Broccoli_Commander: Build Y1 Broccoli_commander
	Broccoli_Commander: Heh it's also my fourth game or so! You do have chances!

14) dungeon: Trade G1 B1 Dungeon

15) Broccoli_Commander: Move Y1 Broccoli_commander Lettuce

16) dungeon: Build G1 Dungeon

17) Broccoli_Commander: Discover G2 Lettuce Y2 Cauliflower

18) dungeon: Trade G3 Y3 Dungeon

19) Broccoli_Commander: T Y1 R1 Broccoli_commander

20) dungeon: Move G1 Tux1 Yoy

21) Broccoli_Commander: Build G3 Cauliflower

22) dungeon: Sacrifice Y3 Dungeon
Move G2 Yoy Broccoli_commander
Move G1 Yoy Broccoli_commander
Discover G2 Tux1 Y3 Cli
Catastrophe Broccoli_commander G

23) Broccoli_Commander: Move G3 Cauliflower Dungeon

24) dungeon: Build G1 Cli

25) Broccoli_Commander: Trade G3 R3 Dungeon

26) dungeon: Build G1 Dungeon

27) Broccoli_Commander: Attack B1 Dungeon

28) dungeon: Build G2 Cli

29) Broccoli_Commander: Sacrifice R3 Dungeon
Attack G1 Dungeon
Attack G1 Dungeon
Pass
	dungeon: I am deep Bantha poodoo
	dungeon: ... in... ugh

	Broccoli_Commander: Yeah I actually hoped you would sacrifice your y3 to cat g in my homeworld. I think you should be more cautious about losing your big ship at home!

But anyway, thanks for the game :-)
	dungeon: No probs.  I thought I had a good strategy... meh.  So goes the saying with all things good... If you do not struggle for it, it is not worth a persons time.  In this instance, I counted my eggs before they were hatched... Thanks!


23238)
Started: 2013.1.16, Ended: 2013.1.31
Participants: Broccoli_Commander (S), ts52 (N)
Winner: Broccoli_Commander

1) ts52: Homeworld Y1 B2 G3
	Broccoli_Commander: Yep let's go again :-) 
	Broccoli_Commander: Woops sorry wrong guy ^^
Still, wanna play again?
	ts52: Sure!

2) Broccoli_Commander: Homeworld B1 Y3 G3

3) ts52: Build G1 Ts52

4) Broccoli_Commander: Build G1 Broccoli_commander

5) ts52: Discover G1 Ts52 B3 Grover

6) Broccoli_Commander: Discover G1 Broccoli_commander B2 Blueberry

7) ts52: Build G1 Grover

8) Broccoli_Commander: Build G2 Blueberry

9) ts52: Build G2 Ts52

10) Broccoli_Commander: Trade G1 Y1 Blueberry

11) ts52: Trade G2 Y2 Ts52

12) Broccoli_Commander: Build G1 Blueberry

13) ts52: Build G2 Ts52

14) Broccoli_Commander: Trade G2 R2 Blueberry

15) ts52: Trade G1 R1 Grover

16) Broccoli_Commander: Move R2 Blueberry Grover

17) ts52: Sacrifice G2 Ts52
Build R1 Grover
Build R1 Grover
Catastrophe Grover Red

18) Broccoli_Commander: Build Y1 Blueberry

19) ts52: Build Y2 Ts52

20) Broccoli_Commander: Build Y2 Blueberry

21) ts52: Move Y2 Ts52 Grover

22) Broccoli_Commander: Trade Y1 R1 Blueberry

23) ts52: Trade Y2 R2 Grover

24) Broccoli_Commander: Move Y1 Blueberry Broccoli_commander

25) ts52: Move Y2 Ts52 Grover

26) Broccoli_Commander: B Y1 Blueberry

27) ts52: Build Y2 Grover

28) Broccoli_Commander: D Y2 Blueberry G3 Lettuce

29) ts52: Discover Y2 Grover G2 Kermit

30) Broccoli_Commander: Build Y3 Blueberry

31) ts52: Build Y3 Grover

32) Broccoli_Commander: Build R1 Blueberry

33) ts52: Move R2 Grover Kermit

34) Broccoli_Commander: Build G1 Broccoli_commander

35) ts52: Build G2 Ts52

36) Broccoli_Commander: Build G2 Blueberry

37) ts52: Build R1 Kermit

38) Broccoli_Commander: M R1 Blueberry Lettuce

39) ts52: Trade G3 R3 Ts52

40) Broccoli_Commander: Discover G2 Blueberry G3 Prairie

41) ts52: Build R2 Ts52

42) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build R2 Blueberry
Build R3 Lettuce

43) ts52: Move R2 Ts52 Grover

44) Broccoli_Commander: Trade R2 B2 Blueberry

45) ts52: Discover Y3 Grover R2 Elmo

46) Broccoli_Commander: Build R3 Blueberry

47) ts52: Move Y3 Elmo Broccoli_commander

48) Broccoli_Commander: Sacrifice R1 Lettuce
Attack Y3 Broccoli_commander

49) ts52: Move Y2 Kermit Broccoli_commander
Catastrophe Broccoli_commander Yellow

50) Broccoli_Commander: Move Y3 Blueberry Grover

51) ts52: Sacrifice Y2 Grover
Move G1 Grover Broccoli_commander
Discover G2 Ts52 Y3 Zoe

52) Broccoli_Commander: Sacrifice Y2 Lettuce
Discover G1 Broccoli_commander Y3 Cauliflower
Move R1 Blueberry Broccoli_commander

53) ts52: Sacrifice R1 Kermit
Attack R1 Broccoli_commander

54) Broccoli_Commander: Sacrifice R3 Blueberry
Attack R2 Grover
Attack G1 Broccoli_commander
Attack R1 Broccoli_commander

55) ts52: Move G2 Zoe Ts52

56) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build Y1 Grover
Build Y2 Grover

57) ts52: Build R1 Ts52
	ts52: this is not going to end well...

58) Broccoli_Commander: S Y3 Grover
M R2 Grover Ts52
Move R1 Broccoli_commander Grover
M R1 Grover Ts52
Catastrophe Ts52 R

	ts52: d'oh! ok, there's no way I can come back from that. Thanks for the game.
	Broccoli_Commander: im afraid not
	Broccoli_Commander: Thanks for the game


23213)
Variants: "Hard time"
Started: 2013.1.16, Ended: 2013.1.24
Participants: Broccoli_Commander (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	Broccoli_Commander: Yep let's go again!
	SilentTitan: yea!! I have been soooo bored. No one has challenged me for months.  I've darn near forgotten how to play
	SilentTitan: homeworld r1 b2 g3
	SilentTitan: lol... oops ... see


2) Broccoli_Commander: Homeworld B1 G3 Y3
	SilentTitan: Be forwarned: your opponent has choosen "Banker"
	Broccoli_Commander: Oh I see... twice ;-)
Gotta think 2min about my homeworld..

3) SilentTitan: Build G1 Silenttitan
	Broccoli_Commander: Really nobody played you? I'm new here but it seems pretty active?!

4) Broccoli_Commander: Build Y1 Broccoli_commander
	SilentTitan: It is ... but been slow lately. for some reason.  After 6 months I finally got challenged for the top spot on the ladder. 
	SilentTitan: I guess that's not entirely true .. I was challenged a few times before. It has been a while tho..
	Broccoli_Commander: Oh you have the top spot on the ladder? Congrats :-D I just subscribed to it... I hope I can climb the bottom quickly, I guess the lower players are also inactive and I will have to wait for forfeits or whatever

5) SilentTitan: Trade G1 Y1 Silenttitan
	SilentTitan: LOL... it took me three years to get here and I fell into it because my bro-in-law challenged TwoShort and he failed to respond so he dropped to 6th.  Be hard to tell if I'm any good based on that last game we played.. eh?
	Broccoli_Commander: Oh I see. So if it takes 3y for a bad player to get there I might have to wait 2 months then :-D (jk)
Yeah bout the last game I merely think you fell asleep because you had won it ^^'

6) Broccoli_Commander: Trade Y3 G3 Broccoli_commander

7) SilentTitan: Build G1 Silenttitan
	SilentTitan: maybe... still <red faced> about it. 

8) Broccoli_Commander: Build G1 Broccoli_commander

9) SilentTitan: Trade G1 B1 Silenttitan

10) Broccoli_Commander: D G1 Broccoli_commander B2 Blueberry

11) SilentTitan: Build B1 Silenttitan

12) Broccoli_Commander: Build G1 Blueberry

13) SilentTitan: Discover B1 Silenttitan Y3 Sol

14) Broccoli_Commander: Trade G1 R1 Blueberry

15) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Sol
Build B3 Sol
Build B3 Silenttitan

16) Broccoli_Commander: Build G1 Broccoli_commander

17) SilentTitan: Trade B3 G3 Silenttitan
	Broccoli_Commander: Yeah sth went wrong ^^' Nice play

18) Broccoli_Commander: Build Y1 Broccoli_commander

19) SilentTitan: Build B3 Silenttitan

20) Broccoli_Commander: Build Y2 Broccoli_commander

21) SilentTitan: Sacrifice B2 Sol
Trade B3 R3 Sol
Trade B3 Y3 Silenttitan

22) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry

23) SilentTitan: Move R3 Sol Blueberry

24) Broccoli_Commander: Sacrifice Y2 Blueberry
Move R1 Blueberry Broccoli_commander
Move G1 Blueberry Sol

25) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Sol
Build B3 Sol
Build B3 Silenttitan

26) Broccoli_Commander: Build Y2 Broccoli_commander

27) SilentTitan: Sacrifice B2 Sol
Trade B3 Y3 Silenttitan
Trade B3 R3 Sol

28) Broccoli_Commander: Sacrifice G1 Sol
Build R1 Broccoli_commander

29) SilentTitan: Trade Y1 G1 Silenttitan

30) Broccoli_Commander: D R1 Broccoli_commander G2 Lettuce

31) SilentTitan: Sacrifice Y3 Silenttitan
Move G1 Silenttitan Sol
Move G1 Sol Blueberry
Move G1 Blueberry Broccoli_commander
Catastrophe Broccoli_commander Green

	Broccoli_Commander: Well played! I was really surprised by your sudden dozen of blue ships ^^
	SilentTitan: Thanks for the game.  I'm avaliable to play more anytime you'd like. 


23260)
Variants: "Hard time"
Started: 2013.1.17, Ended: 2013.2.23
Participants: Danner (S), Aristos (N)
Winner: Danner

1) Aristos: Homeworld G2 B3 Y3

2) Danner: Homeworld B1 R2 G3

3) Aristos: Build Y1 Aristos

4) Danner: Build G1 Danner

5) Aristos: Build Y1 Aristos

6) Danner: Trade G1 Y1 Danner

7) Aristos: Discover Y1 Aristos G1 Pretty

8) Danner: Build Y2 Danner

9) Aristos: Build Y2 Pretty

10) Danner: Discover Y1 Danner G3 Sssla
	Aristos: If you build yellow, I could sacrifice my Y2, move my Y1 into your home system and catastrophe. It would be your turn, and we would be *exactly* where we were on the second move of the game. Another player and I found a mini loop where either player breaking the loop lost the game. I wonder if, under optimal play, a larger "must maintain the loop" scenario exists...?
	Danner: Sorry for the delay, I'm in the middle of my exam period.
"Another player and I found a mini loop where either player breaking the loop lost the game." So we were right, cool! :) But it's also a problem, since draws are not implemented here. Do you want to use some kind of anti-loop rule in our games?

11) Aristos: Sacrifice Y1 Pretty
Discover Y1 Aristos B1 Fancy
	Aristos: Yes, I'd like such a rule. I've given some thought to this... I think that the player who owns the biggest ship involved in the loop should be the one that gets to "win" the loop. If both players tie for that, then ban the move that would take us back to an earlier game position. 
	Aristos: "Involved in the loop" means any ship that changes position/color/existence between during the turns from the first state of the loop until back to that state again.

12) Danner: Build G1 Danner
	Danner: I think it's a little over-complicated. :) It's easier to ban any move that would take us back to an earlier game position.
I've found a scenario where your rule is ambiguous.
Pic: http://dan.uw.hu/temp/loops.png
Explanation:
First, the game progresses normally: A B C D E.
Then Red creates a loop. Assuming that Blue wins the loop, Red has to break it somewhere. He chooses C, and moves into position F.
Now Blue tries to move into position A. There are multiple loops to be considered: ABCFA and ABCDEBCFA.
It's possible that one of the loops produces a tie (the move is banned) and the other does not (the move is allowed).

13) Aristos: Trade Y1 G1 Fancy
	Aristos: Ok... I can agree to that rule... no going back to an earlier state. 

14) Danner: Discover G1 Danner Y3 Ursa

15) Aristos: Build G2 Fancy
	Danner: Ok. :)

16) Danner: Build G2 Danner

17) Aristos: Discover Y2 Pretty G3 Whoaitgotbigger

18) Danner: Sacrifice G3 Danner
Build Y1 Danner
Build G1 Ursa
Build G3 Danner

19) Aristos: Trade G2 R2 Fancy

20) Danner: Trade G2 R2 Danner

21) Aristos: Build Y1 Whoaitgotbigger

22) Danner: Build G2 Danner

23) Aristos: Sacrifice Y2 Whoaitgotbigger
Move R2 Fancy Sssla
Discover G1 Fancy B2 Yowza

24) Danner: Sacrifice Y1 Sssla
Move R2 Danner Ursa

25) Aristos: Build G2 Yowza

26) Danner: Move G1 Ursa Yowza

27) Aristos: Build Y1 Aristos

28) Danner: Trade G1 B1 Yowza

29) Aristos: Sacrifice G2 Yowza
Build Y2 Whoaitgotbigger
Build Y2 Aristos

30) Danner: Discover Y1 Danner B3 Meklon

31) Aristos: Sacrifice Y1 Aristos
Discover G1 Yowza Y3 Woot

32) Danner: Build R1 Ursa

33) Aristos: Discover Y1 Whoaitgotbigger Y1 Ding

34) Danner: Move G2 Danner Woot

35) Aristos: Build R1 Sssla

36) Danner: Build G1 Danner

37) Aristos: Build R1 Sssla

38) Danner: Sacrifice Y2 Danner
Move R1 Ursa Yowza
Move R1 Yowza Sssla
Catastrophe Sssla R

39) Aristos: Build Y2 Whoaitgotbigger

40) Danner: Sacrifice G3 Danner
Build G2 Ursa
Build G3 Woot
Build G3 Danner

41) Aristos: Discover Y1 Ding B2 Bzzt

42) Danner: Sacrifice G3 Danner
Build G3 Danner
Build Y1 Meklon
Build R1 Ursa

43) Aristos: Move G1 Woot Bzzt

44) Danner: Move Y1 Meklon Danner

45) Aristos: Trade Y1 R1 Bzzt

46) Danner: Build Y1 Danner

47) Aristos: Move Y2 Whoaitgotbigger Bzzt

48) Danner: Move G3 Woot Bzzt

	Aristos: I concede. Well played.
	Danner: Thanks!


23273)
Started: 2013.1.17, Ended: 2013.1.24
Participants: dungeon (S), disaac (N)
Winner: disaac

1) disaac: H G2 Y1 B3

2) dungeon: Homeworld Y3 B2 G3

3) disaac: Build B1 Disaac

4) dungeon: Build G1 Dungeon

5) disaac: Trade B3 G3 Disaac

6) dungeon: Discover G1 Dungeon B1 Icecicle

7) disaac: B G1 Disaac

8) dungeon: Build G1 Icecicle

9) disaac: Discover G1 Disaac B3 Caravanserai

10) dungeon: Trade G1 Y1 Icecicle

11) disaac: Build B1 Disaac

12) dungeon: Discover G1 Icecicle B3 Gemini

13) disaac: D B1 Disaac Y3 Portal

14) dungeon: Move Y1 Icecicle Gemini

15) disaac: T B1 R1 Disaac

16) dungeon: Build G1 Gemini

17) disaac: D B1 Portal Y1 Portal2

18) dungeon: Build Y2 Gemini

19) disaac: Sacrifice B1 Portal2
Trade G3 R3 Disaac

20) dungeon: Trade Y1 R1 Gemini

21) disaac: B G2 Caravanserai

22) dungeon: Build G2 Dungeon

23) disaac: T G2 Y2 Caravanserai

24) dungeon: Sacrifice Y2 Gemini
Move R1 Gemini Disaac
Move G1 Gemini Disaac

25) disaac: A R1 Disaac

26) dungeon: Sacrifice G2 Dungeon
Build G2 Gemini
Build G2 Gemini

27) disaac: Build G3 Caravanserai
	dungeon: I am thinking... a bad move...
	disaac: Did you want to undo that move before make mine?

28) dungeon: Trade G1 R1 Gemini
	dungeon: Nah...  I should have seen that coming... ugh...

29) disaac: M R3 Disaac Gemini

30) dungeon: Sacrifice G2 Gemini
Build R2 Gemini
Build R2 Gemini

31) disaac: S Y2 Caravanserai
D G3 Caravanserai Y1 Portal3
M G3 Portal3 Dungeon
C Gemini R
	disaac: did you forget to signal for a catastrophe at the end of your turn? You can probably undo the move and redo it with the catastrophe.
Or else, I might be able to trigger it at the beginning of my turn if you want.

	dungeon: Lol.  I was trying to pull a bluff... see if you would trigger it ^_^

32) dungeon: Trade G3 R3 Dungeon
	disaac: Sure... I have no problem triggering it. :)

33) disaac: S R1 Disaac
A R3 Dungeon
	dungeon: I... totally forgot about the sac for attack... ugh...  I am loosing points! ^_^



23243)
Variants: "Hard time"
Started: 2013.1.21, Ended: 2013.2.12
Participants: dlwillson (S), inundator (N)
Winner: dlwillson

1) inundator: Homeworld B2 Y3 G3

2) dlwillson: Homeworld B3 R1 G3

3) inundator: Build G1 Inundator

4) dlwillson: Build G1 Dlwillson

5) inundator: Discover G1 Inundator B1 Gene

6) dlwillson: T G1 Y1 Dlwillson

7) inundator: Build G1 Inundator

8) dlwillson: B Y1 Dlwillson

9) inundator: Trade G1 R1 Inundator

10) dlwillson: Build Y1 Dlwillson

11) inundator: Build G1 Inundator

12) dlwillson: Discover Y1 Dlwillson B2 Sky

13) inundator: Build R1 Inundator

14) dlwillson: B Y2 Dlwillson

15) inundator: Build R2 Inundator

16) dlwillson: D Y2 Dlwillson B2 Sea

17) inundator: Trade R2 Y2 Inundator

18) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Sky
Build Y3 Sea
Build Y3 Dlwillson

19) inundator: Build G1 Gene

20) dlwillson: Trade Y3 G3 Dlwillson

21) inundator: Build G2 Gene

22) dlwillson: Trade Y3 R3 Sea

23) inundator: Trade G2 R2 Gene

24) dlwillson: B G2 Dlwillson

25) inundator: Sacrifice G3 Inundator
Build G2 Inundator
Build G2 Gene
Build G3 Inundator

26) dlwillson: Sacrifice G3 Dlwillson
Build Y3 Sky
Build Y3 Sea
Build G3 Dlwillson

27) inundator: Discover G2 Inundator B1 Ace

28) dlwillson: M Y3 Sky Gene

29) inundator: Build G3 Ace

30) dlwillson: Move Y3 Gene Inundator

31) inundator: Attack Y3 Inundator

32) dlwillson: Sacrifice Y2 Sea
Move Y1 Sky Gene
Move Y1 Gene Inundator
Catastrophe Inundator Y

33) inundator: Trade G3 Y3 Ace

34) dlwillson: T Y1 B1 Dlwillson

35) inundator: Sacrifice G3 Inundator
Build G3 Inundator
Build G3 Ace
Build Y1 Ace

36) dlwillson: B B3 Dlwillson

37) inundator: Trade G2 Y2 Gene

38) dlwillson: S Y3 Sea
M G3 Dlwillson Inundator
M G2 Dlwillson Inundator
M B3 Dlwillson Inundator
C Inundator G

39) inundator: Sacrifice Y2 Gene
Move G3 Ace Sky
Move G3 Sky Dlwillson

40) dlwillson: S R3 Sea
A R1 Inundator
A R1 Inundator
Pass



23307)
Variants: "Hard time"
Started: 2013.1.22, Ended: 2013.3.16
Participants: Broccoli_Commander (S), SirRuthvenMurgatroyd (N)
Winner: Broccoli_Commander

1) SirRuthvenMurgatroyd: Homeworld G1 B2 Y3

2) Broccoli_Commander: Homeworld G1 Y3 G3 *

3) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

4) Broccoli_Commander: Build G1 Broccoli_commander

5) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G3 Alpha

6) Broccoli_Commander: Discover G1 Broccoli_commander B2 Blueberry

7) SirRuthvenMurgatroyd: Trade Y3 G3 Sirruthvenmurgatroyd

8) Broccoli_Commander: Build G2 Blueberry

9) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

10) Broccoli_Commander: Trade G2 Y2 Blueberry

11) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd

12) Broccoli_Commander: Build G2 Blueberry

13) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd

14) Broccoli_Commander: Build G2 Broccoli_commander

15) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

16) Broccoli_Commander: Move G2 Blueberry Alpha

17) SirRuthvenMurgatroyd: Move R3 Sirruthvenmurgatroyd Alpha

18) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Alpha
Build G3 Alpha
Build G3 Broccoli_commander
Catastrophe Alpha G

19) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd B3 Beta

20) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G2 Blueberry
Build G3 Broccoli_commander
	SirRuthvenMurgatroyd: Boo. That wasn't very nice. :'(

21) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

22) Broccoli_Commander: Move G2 Blueberry Beta
	Broccoli_Commander: No, that was definitely not :-D

23) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

24) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build G3 Beta
Build G3 Blueberry

25) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd B3 Gamma

26) Broccoli_Commander: Sacrifice Y2 Blueberry
Move G3 Blueberry Beta
Move G3 Beta Sirruthvenmurgatroyd

27) SirRuthvenMurgatroyd: Move Y1 Beta Blueberry

28) Broccoli_Commander: Trade G3 R3 Beta

29) SirRuthvenMurgatroyd: Move Y1 Blueberry Broccoli_commander

30) Broccoli_Commander: Sacrifice R3 Beta
Attack Y1 Sirruthvenmurgatroyd
Attack Y2 Sirruthvenmurgatroyd
Pass



23269)
Variants: "Hard time"
Started: 2013.1.24, Ended: 2013.2.4
Participants: SilentTitan (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld R3 B2 G3
	Broccoli_Commander: Alright, let's play again then! I hope I will provide a better challenge this time
	SilentTitan: ah.. the classic two out of three.  

3) Broccoli_Commander: Build G1 Broccoli_commander

4) SilentTitan: Build G1 Silenttitan
	Broccoli_Commander: depending on the outcome we might push it to a 3 out of 5 ;-)

5) Broccoli_Commander: Discover G1 Broccoli_commander G3 Lettuce

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Broccoli_Commander: Build G1 Broccoli_commander

8) SilentTitan: Build Y1 Silenttitan

9) Broccoli_Commander: D G1 Broccoli_commander B3 Blueberry

10) SilentTitan: Discover Y1 Silenttitan B1 Sol

11) Broccoli_Commander: B G1 Broccoli_commander

12) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Sol
Build Y2 Silenttitan

13) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Broccoli_commander
Build G2 Blueberry
Build G2 Lettuce

14) SilentTitan: Discover Y2 Sol G3 Soul

15) Broccoli_Commander: Build G3 Broccoli_commander

16) SilentTitan: Build Y3 Soul

17) Broccoli_Commander: Trade G3 Y3 Broccoli_commander

18) SilentTitan: Discover Y1 Sol G3 Sole

19) Broccoli_Commander: Trade G1 R1 Blueberry

20) SilentTitan: Sacrifice Y2 Sol
Move Y2 Soul Broccoli_commander
Move Y1 Sole Broccoli_commander
Catastrophe Broccoli_commander Yellow

21) Broccoli_Commander: Build G1 Blueberry

22) SilentTitan: Move Y3 Soul Broccoli_commander

23) Broccoli_Commander: Sacrifice G2 Broccoli_commander
Build G2 Blueberry
Build G3 Broccoli_commander

24) SilentTitan: Move Y3 Broccoli_commander Blueberry

25) Broccoli_Commander: Sacrifice G2 Blueberry
Build G2 Broccoli_commander
Build G3 Blueberry
	Broccoli_Commander: Ah; clever...

26) SilentTitan: Discover Y3 Blueberry B1 Sol

27) Broccoli_Commander: Trade G2 Y2 Broccoli_commander

28) SilentTitan: Move Y3 Sol Silenttitan

29) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Broccoli_commander
Build G3 Broccoli_commander
Build Y1 Broccoli_commander

30) SilentTitan: Trade Y2 R2 Silenttitan

31) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build R1 Blueberry
Build R1 Blueberry

32) SilentTitan: Pass

	Broccoli_Commander: Let's play another!


23317)
Started: 2013.1.24, Ended: 2013.2.27
Participants: dungeon (S), adwm86 (N)
Winner: adwm86

1) adwm86: Homeworld B2 Y1 G3

2) dungeon: Homeworld Y3 B2 G3

3) adwm86: Build G1 Adwm86

4) dungeon: Build G1 Dungeon

5) adwm86: Discover G1 Adwm86 Y3 Dagoba

6) dungeon: Discover G1 Dungeon B1 Kashyyyk

7) adwm86: Build G1 Dagoba
	adwm86: Lol I forgot h on dagobah

8) dungeon: Build G2 Kashyyyk
	dungeon: :-)  That is okay.  I totally forgot how to spell Kashyyyk and was trying to spell it with one y...

9) adwm86: Build G2 Dagoba

10) dungeon: Build G2 Kashyyyk

11) adwm86: Build G3 Adwm86

12) dungeon: Trade G2 Y2 Kashyyyk

13) adwm86: Trade G3 R3 Adwm86

14) dungeon: Move G1 Kashyyyk Dungeon

15) adwm86: Discover G2 Dagoba Y1 Hoth

16) dungeon: Sacrifice G3 Dungeon
Build G2 Kashyyyk
Build G3 Kashyyyk
Build G3 Dungeon

17) adwm86: Move R3 Adwm86 Dagoba

18) dungeon: Trade G3 Y3 Kashyyyk

19) adwm86: Move R3 Dagoba Kashyyyk

20) dungeon: Trade G3 R3 Dungeon

21) adwm86: Attack Y3 Kashyyyk

22) dungeon: Sacrifice Y2 Kashyyyk
Move G2 Kashyyyk Dagoba
Move G2 Dagoba Adwm86

23) adwm86: Trade G3 R3 Adwm86

24) dungeon: Sacrifice G2 Kashyyyk
Build G2 Adwm86
Build G3 Adwm86

25) adwm86: Sacrifice R3 Kashyyyk
Attack G2 Adwm86
Attack G3 Adwm86
Attack G2 Adwm86

26) dungeon: Trade R3 G3 Dungeon

27) adwm86: Discover G3 Adwm86 B3 Endor
	dungeon: You... did not take my bluff.... ;-(

28) dungeon: Discover G1 Dungeon Y1 Naboo
	adwm86: The force is strong with this one


29) adwm86: Sacrifice Y3 Kashyyyk
Move G1 Dagoba Hoth
Move G1 Dagoba Hoth
Move G2 Hoth Dungeon
	dungeon: As I was scrolling down the screen... my heart literally sank per each section of the board down... ;-(  

30) dungeon: Sacrifice G1 Naboo
Build G1 Dungeon

31) adwm86: Move G1 Hoth Dungeon
	adwm86: Guess ur rebel scum lol
	dungeon: Nah.  We are totally good guys... In my version, we poured salt on JarJar and he melted away like a slug.. ;-)
	dungeon: Durp, I meant bad guys... ugh.. too early...

32) dungeon: Trade G3 R3 Dungeon

33) adwm86: Move G1 Hoth Dungeon
Catastrophe Dungeon G
	adwm86: Woops forgot catastrophe part lol
	dungeon: Just undo your move and start the cat.  I need to learn from the poor mistakes ;-)  Good show BTW.  I seem to be worse off at playing this online than in person... which also still leaves much to be desired ;-)  I will start up another challenge

34) dungeon: Trade R3 G3 Dungeon
	dungeon: You technically won this one....

35) adwm86: Build G1 Endor
	adwm86: Lets keep goin

36) dungeon: Build G1 Dungeon

37) adwm86: Trade G3 Y3 Endor

38) dungeon: Trade G3 R3 Dungeon

39) adwm86: Move G2 Adwm86 Endor

40) dungeon: Discover G1 Dungeon G1 Kessel

41) adwm86: Trade G2 Y2 Endor

42) dungeon: Build G2 Kessel

43) adwm86: Discover Y3 Endor Y2 Mustafar

44) dungeon: Trade R3 G3 Dungeon

45) adwm86: Move Y3 Mustafar Kessel

46) dungeon: Build G2 Dungeon

47) adwm86: Trade G2 Y2 Adwm86
	adwm86: Hey I made kesel run in less than 3 parsecs
Haha
	dungeon: I laughed when I found out the Kessel was an asteroid... I had no clue.  But the whole parsec thing... meh  short oversight by Lucas...

48) dungeon: Trade G2 B2 Dungeon

49) adwm86: Build Y1 Endor

50) dungeon: Move B2 Dungeon Kessel

51) adwm86: Trade R3 B3 Adwm86

52) dungeon: Build B1 Kessel

53) adwm86: Build G2 Endor

54) dungeon: Trade G1 Y1 Kessel

55) adwm86: Sacrifice Y2 Endor
Move G1 Endor Kessel
Move G2 Endor Kessel

56) dungeon: Sacrifice G2 Kessel
Build Y2 Kessel
Build Y2 Kessel

57) adwm86: Move Y1 Endor Kessel

58) dungeon: Trade B1 R1 Kessel

59) adwm86: Sacrifice Y3 Kessel
Move G1 Kessel Dungeon
Move G2 Kessel Dungeon
Move Y1 Kessel Dungeon
	dungeon: we sure have a cluster at kessel


60) dungeon: Sacrifice B2 Kessel
Trade Y2 G2 Kessel
Trade Y1 G1 Kessel

61) adwm86: Build G2 Dungeon
Catastrophe Dungeon G

	dungeon: I... I lost... again...


23315)
Started: 2013.1.24, Ended: 2013.2.4
Participants: dungeon (S), disaac (N)
Winner: disaac

1) disaac: Homeworld G2 Y1 B3

2) dungeon: Homeworld B1 Y3 G3

3) disaac: Build B1 Disaac

4) dungeon: Build G1 Dungeon

5) disaac: Discover B1 Disaac G3 Prosperity

6) dungeon: Discover G1 Dungeon B2 Radiance

7) disaac: Build B1 Disaac

8) dungeon: Build G1 Dungeon

9) disaac: Trade B3 G3 Disaac
	disaac: sorry... built in the wrong system

10) dungeon: Trade G1 R1 Dungeon
	dungeon: No prob.

11) disaac: B B2 Disaac

12) dungeon: Build G1 Radiance

13) disaac: S G3 Disaac
B B2 Prosperity
B B3 Prosperity
B B3 Disaac

14) dungeon: Trade G1 R1 Radiance

15) disaac: D B2 Disaac Y3 Sol

16) dungeon: Build R1 Radiance

17) disaac: T B2 R2 Prosperity

18) dungeon: Trade G1 Y1 Radiance

19) disaac: T B3 G3 Disaac

20) dungeon: Trade R1 G1 Radiance

21) disaac: T B3 Y3 Prosperity

22) dungeon: Discover R1 Radiance B3 Reddwarf

23) disaac: S G3 Disaac
B B2 Prosperity
B B3 Sol
B B3 Disaac
	dungeon: This is a tough game so far!

24) dungeon: Discover G1 Radiance G3 Vejur

25) disaac: T B3 R3 Disaac

26) dungeon: Build R1 Dungeon
	dungeon: Talking to the shop owners now on FB to see about getting us some tables and time to run their clientèle through the Starfleet Cadet ringer.  Would you be more interested in running Fluxx?
 

27) disaac: T B2 G2 Sol

28) dungeon: Build G1 Dungeon

29) disaac: B B2 Sol

30) dungeon: Move R1 Dungeon Radiance

31) disaac: Build B3 Disaac

32) dungeon: Discover G1 Dungeon R2 Corona

33) disaac: T B3 R3 Sol

34) dungeon: Sacrifice G3 Dungeon
Build R2 Reddwarf
Build R3 Dungeon
Build G1 Corona

35) disaac: B B3 Sol

36) dungeon: Build G2 Vejur

37) disaac: B G3 Sol

38) dungeon: Sacrifice G2 Vejur
Build Y1 Radiance
Build Y2 Radiance

39) disaac: D G3 Sol Y2 Station

40) dungeon: Build G2 Vejur

41) disaac: M B3 Sol Station

42) dungeon: Sacrifice Y2 Radiance
Discover R2 Reddwarf Y2 Derelect
Move G2 Vejur Derelect


43) disaac: M R3 Sol Station

44) dungeon: Sacrifice G1 Corona
Build Y2 Radiance

45) disaac: S Y3 Prosperity
M R3 Station Dungeon
M G3 Station Dungeon
M B3 Station Dungeon

46) dungeon: Attack R3 Dungeon

47) disaac: S R3 Disaac
A R3 Dungeon
A R3 Dungeon
A R1 Dungeon



23237)
Started: 2013.1.29, Ended: 2013.2.7
Participants: Broccoli_Commander (S), dlwillson (N)
Winner: Broccoli_Commander

1) dlwillson: H B1 R3 G3 Dlwillson

2) Broccoli_Commander: Homeworld B1 Y2 G3

3) dlwillson: B G1 Dlwillson

4) Broccoli_Commander: Build G1 Broccoli_commander

5) dlwillson: Trade G1 Y1 Dlwillson

6) Broccoli_Commander: Build G1 Broccoli_commander

7) dlwillson: B G1 Dlwillson

8) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

9) dlwillson: T G1 B1 Dlwillson

10) Broccoli_Commander: Build G1 Broccoli_commander
	dlwillson: Have you joined the ladder yet?
	Broccoli_Commander: Yes I just started :-) But I first have to go through the set of nonplaying players which is a bit annoying. I just got my first accepted challenge though.


11) dlwillson: Build G2 Dlwillson
	dlwillson: Excellent. You should do very well.

12) Broccoli_Commander: Discover G1 Broccoli_commander B3 Mushroom

13) dlwillson: B B2 Dlwillson
	Broccoli_Commander: We will see :-D 
Oh once you thought I was already a veteran, but not Andy for some reason. Did you think of Andy Looney? Do you know him?

14) Broccoli_Commander: Build G2 Blueberry

15) dlwillson: T B2 R2 Dlwillson

16) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Broccoli_commander
Build G3 Broccoli_commander
Build G3 Blueberry

17) dlwillson: Trade G3 Y3 Dlwillson

18) Broccoli_Commander: Discover G2 Broccoli_commander G3 Lettuce

19) dlwillson: D R2 Dlwillson Y2 Sun

20) Broccoli_Commander: Trade G2 R2 Blueberry

21) dlwillson: Move R2 Sun Mushroom

22) Broccoli_Commander: Sacrifice G1 Mushroom
Build R1 Blueberry
	dlwillson: I don't know him. I remember thinking, "Wow, this guy's good; I'd better pay attention! Hm... Too late to pay attention to this game."
I don't remember how I knew you weren't Andy.

23) dlwillson: Sacrifice G2 Dlwillson
Build B2 Dlwillson
Build R1 Mushroom

24) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G1 Broccoli_commander
Build G2 Broccoli_commander
Build G2 Blueberry

25) dlwillson: T Y3 G3 Dlwillson

26) Broccoli_Commander: Trade R1 Y1 Blueberry

27) dlwillson: D B2 Dlwillson Y2 Sun
	dlwillson: I do know Silent Titan, though! He told me last night  at my son's birthday what a strong player you are.

28) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build R1 Blueberry
Build R1 Blueberry

29) dlwillson: Trade R2 Y2 Mushroom

30) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build Y1 Blueberry
Build Y3 Blueberry

31) dlwillson: S G3 Dlwillson
B Y3 Dlwillson
B B2 Sun
B Y3 Mushroom
	Broccoli_Commander: Ah talking behind my back ^^ Thanks, and in any case I learned quite a bit from both of you (e.g. I think I finally get why you would get b&r stars in your homeworld). I really like this game, the strategy is kinda deep, yet it seems more understandable than chess for example

32) Broccoli_Commander: Sacrifice G2 Broccoli_commander
Build G2 Lettuce
Build G3 Broccoli_commander

33) dlwillson: Move B2 Sun Blueberry

34) Broccoli_Commander: Sacrifice Y3 Blueberry
Discover G3 Blueberry B2 Blueberry_rip
Move Y1 Blueberry Blueberry_rip
Move R1 Blueberry Blueberry_rip

35) dlwillson: S Y3 Mushroom
M B2 Blueberry Broccoli_commander
M B2 Sun Blueberry
M B2 Blueberry Broccoli_commander

36) Broccoli_Commander: Sacrifice R2 Blueberry
Attack B2 Broccoli_commander
Attack B2 Broccoli_commander

	dlwillson: Well played. Again?
	Broccoli_Commander: Sure!


23348)
Started: 2013.1.31, Ended: 2013.2.26
Participants: adwm86 (S), dungeon (N)
Winner: adwm86

1) dungeon: Homeworld B2 Y1 G3

2) adwm86: Homeworld G3 Y2 B3

3) dungeon: Build G1 Dungeon

4) adwm86: Build B1 Adwm86

5) dungeon: Discover G1 Dungeon G3 Nar_shaddaa

6) adwm86: Trade B3 R3 Adwm86
	adwm86: Is that twilight imperium

7) dungeon: Build G1 Dungeon
	adwm86: I got M.F. rainbow

8) adwm86: Build B1 Adwm86

9) dungeon: Trade G1 B1 Dungeon
	dungeon: I have decided... I will have to get MageWar with the giftcard from Gayle/Todd....  I think I can get it and the first expansion with the card and hopefully they will have the other expansion there for me to pickup!  Mwahahaaahahhahahha
	dungeon: Nah, that is a moon from Episode VI, I thinthe smugglers moon... Not sure...

10) adwm86: Build B2 Adwm86

11) dungeon: Discover B1 Dungeon Y3 Y-wing

12) adwm86: Discover B2 Adwm86 G1 Death_star

13) dungeon: Build G1 Dungeon
	adwm86: Is that yellow pieces Y-wings
	dungeon: Hahaha, yeah...
	dungeon: Hahaha, yeah...

14) adwm86: Build B2 Death_star

15) dungeon: Move G1 Dungeon Y-wing
	adwm86: Should build R3 on Endor haha
	dungeon: Lol.  Oh-yeah.

16) adwm86: Build B3 Adwm86

17) dungeon: Build G2 Nar_shaddaa

18) adwm86: Discover B3 Adwm86 Y1 Tie_fighter

19) dungeon: Build B3 Y-wing

20) adwm86: Trade B3 R3 Tie_fighter

21) dungeon: Trade B3 Y3 Y-wing

22) adwm86: Move R3 Tie_fighter Y-wing

23) dungeon: Sacrifice G2 Nar_shaddaa
Build B3 Y-wing
Build G2 Nar_shaddaa

24) adwm86: Attack B3 Y-wing

25) dungeon: Sacrifice Y3 Y-wing
Discover B1 Y-wing Y1 X-wing
Move G1 Y-wing X-wing
Move G2 Nar_shaddaa X-wing

26) adwm86: Move R3 Y-wing Dungeon

27) dungeon: Trade G3 R3 Dungeon

28) adwm86: Attack R3 Dungeon



23364)
Started: 2013.2.4, Ended: 2013.3.5
Participants: dungeon (S), disaac (N)
Winner: disaac

1) disaac: Homeworld Y1 G2 B3

2) dungeon: Homeworld B3 Y2 G3

3) disaac: B B1 Disaac

4) dungeon: Build G1 Dungeon

5) disaac: T B3 G3 Disaac

6) dungeon: Discover G1 Dungeon Y1 Snazzle

7) disaac: B G1 Disaac

8) dungeon: Build G1 Dungeon

9) disaac: D G1 Disaac B3 Hydro

10) dungeon: Sacrifice G3 Dungeon
Build G2 Snazzle
Build G2 Snazzle
Build G3 Dungeon

11) disaac: B G3 Hydro

12) dungeon: Trade G1 B1 Dungeon

13) disaac: B G1 Disaac

14) dungeon: Discover B1 Dungeon Y1 Xanth

15) disaac: D G1 Disaac Y3 Iss

16) dungeon: Discover B1 Xanth Y3 Ir

17) disaac: B B1 Disaac

18) dungeon: Trade B1 Y1 Ir

19) disaac: M G1 Iss Snazzle
C Snazzle G

20) dungeon: Build G1 Dungeon

21) disaac: D B1 Disaac Y3 Stargate

22) dungeon: Discover G1 Dungeon Y1 Caldera

23) disaac: B B1 Disaac

24) dungeon: Build G1 Caldera
	dungeon: sorry Dan... been busy this week.... :-(


25) disaac: B G2 Disaac
	disaac: Not a problem. 

26) dungeon: Build G2 Caldera

27) disaac: M G2 Disaac Stargate

28) dungeon: Discover G2 Caldera B3 Gemini

29) disaac: S G3 Hydro
B G3 Hydro
B B2 Stargate
B B2 Stargate

30) dungeon: Move G1 Caldera Hydro

31) disaac: T G1 R1 Hydro

32) dungeon: Move Y1 Ir Disaac

33) disaac: S R1 Hydro
A Y1 Disaac

34) dungeon: Trade G2 Y2 Gemini

35) disaac: T B1 R1 Disaac

36) dungeon: Build G1 Hydro

37) disaac: T B2 Y2 Stargate

38) dungeon: Build G2 Caldera

39) disaac: S Y2 Stargate
M G3 Hydro Caldera
M G3 Caldera Dungeon
	disaac: Sorry... Wrong color

40) dungeon: Trade G3 R3 Dungeon

41) disaac: S R1 Disaac
A R3 Dungeon

	disaac: You should keep a bit of a diversified fleet in your home world. Not so many that catastrophes would be easy to cause though. Also consider diversifying the rest of your fleet as well. 
	dungeon: I seem to get antsy in trying to squander early on.  Thanks for the advice!  It comes to me easier in the physical game than it does digitally.  I might start to keep a physical copy readily available to mock up the game.  That might help me out...


23366)
Variants: "Hard time"
Started: 2013.2.4, Ended: 2013.3.19
Participants: goulo (S), Mandrel (N)
Winner: goulo

1) Mandrel: Homeworld R1 B2 G3

2) goulo: Homeworld R1 B3 G3
	Mandrel: Have a good game.

3) Mandrel: Build G1 Mandrel
	goulo: thanks, you too!

4) goulo: Build G1 Goulo

5) Mandrel: Trade G1 R1 Mandrel

6) goulo: Trade G3 R3 Goulo

7) Mandrel: Build R2 Mandrel

8) goulo: Build R2 Goulo

9) Mandrel: Trade R1 Y1 Mandrel

10) goulo: Trade R3 Y3 Goulo

11) Mandrel: Build Y1 Mandrel

12) goulo: Build G1 Goulo

13) Mandrel: Discover Y1 Mandrel G3 Proof

14) goulo: Discover R2 Goulo Y2 Citrono

15) Mandrel: Trade Y1 B1 Mandrel

16) goulo: Move G1 Goulo Citrono

17) Mandrel: Build B1 Mandrel

18) goulo: Build G1 Goulo

19) Mandrel: Build G2 Mandrel

20) goulo: Build G2 Citrono

21) Mandrel: Trade G2 Y2 Mandrel

22) goulo: Trade G1 B1 Goulo

23) Mandrel: Move B1 Mandrel Proof

24) goulo: Move B1 Goulo Citrono

25) Mandrel: Build B2 Proof

26) goulo: Build B2 Citrono

	Mandrel: Apologies, been poor at keeping on top of my games here, been busier than expected.
	goulo: alas, better luck next time! :)


23316)
Variants: "Hard time"
Started: 2013.2.4, Ended: 2013.3.13
Participants: SilentTitan (S), Broccoli_Commander (N)
Winner: SilentTitan

1) Broccoli_Commander: Homeworld R1 B2 G3

2) SilentTitan: Homeworld B1 R3 G3
	Broccoli_Commander: Finally gonna try this h r1 b2 g3... But I think I understand the point now! I bet you'll probably prove me wrong, tough. 
You know dlwillson I heard! So my 2 favorite players (so far ^^) are friends :-) I love this game, but I feel like only 50 people or so in the world actually know enough to be rightfully thrilled by it. Kinda geeky, isn't it?
Anyway, have a good game dear Sir!
PS:where do you live?
	SilentTitan: David is actually my bro-in-law as I married his sister.  We all live in Denver.  I totaly agree with the geeky part.  You have a good game as well, win or lose I know I'll have a fun time. 

3) Broccoli_Commander: Build G1 Broccoli_commander
	SilentTitan: since I hardly ever play the "Goldilocks" position ... this should be interesting.

4) SilentTitan: Build G1 Silenttitan

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Broccoli_Commander: Build G1 Broccoli_commander

8) SilentTitan: Build G1 Silenttitan

9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

10) SilentTitan: Trade G1 B1 Silenttitan

11) Broccoli_Commander: Build G1 Broccoli_commander

12) SilentTitan: Build B1 Silenttitan

13) Broccoli_Commander: Trade G3 B3 Broccoli_commander
	SilentTitan: haha... I undid my turn because I was going to move the Y1 from Silenttitan out to a new system and use up the b1 ... forgot I'm playing goldilocks... I have to move out to a two.


14) SilentTitan: Discover B1 Silenttitan B2 Sol

15) Broccoli_Commander: Build G1 Broccoli_commander

16) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Sol
Build Y1 Silenttitan
Build Y2 Silenttitan

17) Broccoli_Commander: Build G2 Broccoli_commander
	Broccoli_Commander: Haha, too bad there is no undo the last undo button...  Do you actually prefer Fortress over Goldilocks?
	SilentTitan: I do, however I suspect it is only due to familiarity.

18) SilentTitan: Trade B2 G2 Sol

19) Broccoli_Commander: Sacrifice G2 Broccoli_commander
Build G2 Blueberry
Build Y2 Broccoli_commander

20) SilentTitan: Build G2 Sol

21) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower

22) SilentTitan: Sacrifice G2 Sol
Build B2 Sol
Build B3 Silenttitan

23) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry

24) SilentTitan: Trade B3 G3 Silenttitan

25) Broccoli_Commander: Sacrifice G2 Blueberry
Build Y2 Broccoli_commander
Build Y3 Blueberry

26) SilentTitan: Discover Y1 Silenttitan G2 Soul

27) Broccoli_Commander: Move Y3 Blueberry Sol

28) SilentTitan: Sacrifice G2 Sol
Build Y3 Soul
Build B3 Silenttitan
	Broccoli_Commander: Hey sorry! I'm moving and had no internet at home.
Wow this was close (8h remaining ^^)
	SilentTitan: It's all cool.. Life comes up from time to time. David and I were at a gaming con all weekend .. so no worries


29) Broccoli_Commander: Trade B3 G3 Broccoli_commander

30) SilentTitan: Trade B3 R3 Silenttitan

31) Broccoli_Commander: Trade Y2 R2 Broccoli_commander

32) SilentTitan: Build B3 Silenttitan

33) Broccoli_Commander: Move R2 Broccoli_commander Blueberry

34) SilentTitan: Move Y3 Soul Blueberry

35) Broccoli_Commander: Build Y2 Blueberry

36) SilentTitan: Sacrifice R3 Silenttitan
Attack Y2 Blueberry North
Attack Y1 Blueberry North
Attack R2 Blueberry North

37) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry
Catastrophe Blueberry Y

38) SilentTitan: Attack G1 Blueberry North

39) Broccoli_Commander: Move Y3 Sol Blueberry

40) SilentTitan: Build G2 Blueberry

41) Broccoli_Commander: Trade G3 R3 Broccoli_commander

42) SilentTitan: Sacrifice B3 Silenttitan
Trade G2 Y2 Blueberry
Trade G1 Y1 Blueberry
Trade R2 Y2 Blueberry
Catastrophe Blueberry Yellow

43) Broccoli_Commander: Build R1 Broccoli_commander

44) SilentTitan: Sacrifice Y1 Silenttitan
Discover B1 Sol R3 Sole

45) Broccoli_Commander: Trade R1 Y1 Broccoli_commander

46) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Silenttitan
Build B3 Sol
Build B3 Sole

	Broccoli_Commander: I surrender, please don't attack my ships anymore! I believe we can live in peace together.

Well played!
	SilentTitan: oh.. .alright... peace instead of pieces.



23342)
Variants: "Hard time"
Started: 2013.2.7, Ended: 2013.3.8
Participants: Broccoli_Commander (S), dlwillson (N)
Winner: Broccoli_Commander

1) dlwillson: Homeworld B3 Y1 G3 Dlwillson

2) Broccoli_Commander: Homeworld R1 B2 G3

3) dlwillson: B G1 Dlwillson

4) Broccoli_Commander: Build G1 Broccoli_commander

5) dlwillson: T G1 Y1 Dlwillson

6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

7) dlwillson: B Y2 Dlwillson

8) Broccoli_Commander: Build Y2 Broccoli_commander

9) dlwillson: T Y2 R2 Dlwillson

10) Broccoli_Commander: Build Y2 Broccoli_commander

11) dlwillson: B Y2 Dlwillson

12) Broccoli_Commander: Discover Y2 Broccoli_commander G3 Lettuce

13) dlwillson: D Y1 Dlwillson G2 Forest

14) Broccoli_Commander: Build Y3 Lettuce

15) dlwillson: B Y3 Forest

16) Broccoli_Commander: Discover Y3 Lettuce G2 Romanesco

17) dlwillson: T Y2 B2 Dlwillson

18) Broccoli_Commander: Trade Y2 R2 Broccoli_commander
	Broccoli_Commander: I saw your game against inundator, I was quite disappointed by the ending (not by the result itself, ofcourse :-D)
After turn 19:
http://superdupergames.org/?page=archive_play&gid=23243&idx=37

The situation was very interesting and I almost feel like he should have beaten you or at least have a sizeable chance of doing so(although it is counterintuitive at first sight). What would you have done if he had played

s y3 ace
m g2 ace inundator
m y1 ace inundator
m g1 gene inundator
?

And frankly tell me if you don't care :-D (after all he did _not_ play this...) I won't take any offense.

19) dlwillson: D Y3 Forest B3 Sky

20) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build Y2 Lettuce
Build Y2 Romanesco
Build Y3 Broccoli_commander

21) dlwillson: B R1 Dlwillson

22) Broccoli_Commander: Move R2 Broccoli_commander Lettuce

23) dlwillson: M B2 Dlwillson Forest

24) Broccoli_Commander: Build R1 Lettuce

25) dlwillson: M R1 Dlwillson Forest

26) Broccoli_Commander: Trade Y1 B1 Broccoli_commander

27) dlwillson: B R2 Forest

28) Broccoli_Commander: Move R1 Lettuce Romanesco

29) dlwillson: Build R3 Dlwillson

30) Broccoli_Commander: Build R3 Lettuce

	dlwillson: D'oh! Dammit. Timed out, plum blossom... Sorry about that, BC. I'm going to take a break from SDG. I'm obviously too busy.
	Broccoli_Commander: Hey no problem, I got close several times as well.... Now I get why 1/1/X is not a good idea. 
Have fun in whatever keeps you busy, and hope to see you soon again on SDG dear Sir!


23408)
Variants: "Unrated"
Started: 2013.2.19, Ended: 2013.2.20
Participants: yougurt87 (S), bugggg (N)
Winner: bugggg

1) bugggg: Homeworld Y1 B2 G3

2) yougurt87: Homeworld B1 Y2 G3

3) bugggg: Build G1 Bugggg

4) yougurt87: Build G1 Yougurt87

5) bugggg: Trade G1 R1 Bugggg

6) yougurt87: Trade G1 R1 Yougurt87


7) bugggg: Build G1 Bugggg

8) yougurt87: Build G1 Yougurt87

9) bugggg: Discover G1 Bugggg Y3 Spray

10) yougurt87: Move R1 Yougurt87 Spray

11) bugggg: Sacrifice R1 Bugggg
Attack R1 Spray

12) yougurt87: Trade G1 R1 Yougurt87

13) bugggg: Build G1 Spray

14) yougurt87: Build G1 Yougurt87

15) bugggg: Build G2 Bugggg

16) yougurt87: Build R1 Yougurt87

17) bugggg: Trade G2 Y2 Bugggg

18) yougurt87: Move G3 Yougurt87 Spray

19) bugggg: Build G2 Bugggg

20) yougurt87: Build G2 Yougurt87

21) bugggg: Sacrifice Y2 Bugggg
Move G1 Spray Yougurt87
Move G1 Spray Yougurt87
Catastrophe Yougurt87 Green

22) yougurt87: Discover R1 Yougurt87 G3 Darlin

23) bugggg: Move G2 Bugggg Darlin

24) yougurt87: Build R2 Darlin

25) bugggg: Sacrifice R1 Spray
Attack R2 Darlin

26) yougurt87: Build G1 Spray

27) bugggg: Attack R1 Darlin

28) yougurt87: Move G3 Spray Yougurt87

29) bugggg: Build G1 Bugggg

30) yougurt87: Build G1 Yougurt87

31) bugggg: Trade G1 B1 Bugggg

32) yougurt87: Move G3 Yougurt87 Darlin

33) bugggg: Build G1 Darlin
Catastrophe Darlin Green

34) yougurt87: Move R1 Yougurt87 Spray

35) bugggg: Build G1 Bugggg

36) yougurt87: Build R1 Spray

37) bugggg: Trade G1 R1 Bugggg

38) yougurt87: Build G1 Yougurt87

39) bugggg: Build G2 Bugggg

40) yougurt87: Build G2 Yougurt87

41) bugggg: Trade G2 Y2 Bugggg

42) yougurt87: Build R2 Spray

43) bugggg: Sacrifice Y2 Bugggg
Move G3 Bugggg Spray
Move G3 Spray Yougurt87
Catastrophe Yougurt87 Green



23423)
Variants: "Hard time"
Started: 2013.2.25, Ended: 2013.3.14
Participants: MagicJohn (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld R2 B3 G3

2) MagicJohn: Homeworld R1 B2 G3

3) Aristos: Build G1 Aristos

4) MagicJohn: Build G1 Magicjohn

5) Aristos: Trade G3 Y3 Aristos
	MagicJohn: Have a good game.
	Aristos: Thanks. 

6) MagicJohn: Trade G1 Y1 Magicjohn

7) Aristos: Build G1 Aristos

8) MagicJohn: Build Y1 Magicjohn

9) Aristos: Discover G1 Aristos B1 Alpha

10) MagicJohn: Trade Y1 B1 Magicjohn
	Aristos: Technological breakthrough: The Aristos empire has discovered warp technology and made its first interstellar jump. Alas, the crew is likely lost as they lack the fuel to return.

11) Aristos: Build Y1 Aristos
	MagicJohn: Planetary system MagicJohn inhabitants plod onward, obliviously (yet happily) playing with fire and newly invented wheels. Little do they know of the impending danger visited upon them by their more technologically advanced but less civilized neighbors.     

12) MagicJohn: Discover Y1 Magicjohn R3 Kaline

13) Aristos: Build Y1 Aristos
	MagicJohn: Magicjohn inhabitants quietly move to a planet inhabited largely by octogenarian Detroit Tigers while continuing their program of disinformation spread by air-dropped leaflets and door-to-door evangelicals.  

14) MagicJohn: Build B1 Magicjohn
	Aristos: Hoping to stave off future debacles like the ill-fated trip to Alpha, Aristos government stockpiles fuel supplies.

15) Aristos: Move Y1 Aristos Alpha
	MagicJohn: MagicJohn inhabitants invest more capital in blue technology based largely on color preferences expounded by Grand Poobah's wife.   

	Aristos: 2nd mission to Alpha discovers original crew still alive! Happy citizens of Aristos empire burn two cities to the ground in celebratory bonfire.
	MagicJohn: Wife's in hospital. It's going to be slow going for awhile....
	MagicJohn: Sorry about triggering hard time. My wife should be out of the hospital tomorrow, but it was a bit sticky for awhile. Priorities and all...... I'll challenge back in when life calms down a little.
	Aristos: No problem... I left the country for a bit and got away from my machine. Good luck with your other priorities. 


23367)
Variants: "Hard time"
Started: 2013.3.7, Ended: 2013.3.11
Participants: SimonDorfman (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R3 B2 G3
	SilentTitan: Welcome



23381)
Variants: "Hard time"
Started: 2013.3.10, Ended: 2013.3.18
Participants: aayore (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3
	dlwillson: WHAT? What is this?

2) aayore: Homeworld G2 Y1 B3

3) dlwillson: Build G1 Dlwillson
	aayore: I heard it was some kind of game.

4) aayore: Build B1 Aayore
	dlwillson: :-)

5) dlwillson: Trade G1 Y1 Dlwillson

6) aayore: Build B1 Aayore

7) dlwillson: B Y2 Dlwillson

8) aayore: Discover B1 Aayore Y3 Kinetica

9) dlwillson: Discover Y1 Dlwillson B2 Sky

10) aayore: Build B1 Aayore
	aayore: I had a plan but then I took too much time off and now I don't remember it.

11) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Sky
Build Y2 Sky
Build Y3 Dlwillson
	dlwillson: Story of my life. Your screwed because I have all the yellow.

12) aayore: Trade B3 Y3 Aayore

13) dlwillson: Trade Y3 G3 Dlwillson
	aayore: I have yet to fully realize the power of the sacrifice.

14) aayore: Trade Y3 G3 Aayore

15) dlwillson: Discover Y2 Sky G3 Forest
	dlwillson: Time for sleep now. Hopefully, my back is somewhat better tomorrow. :-/

16) aayore: Trade B1 G1 Aayore
	aayore: Floundering around and repeatedly doing and undoing the same moves will surely net me a win.

17) dlwillson: Build Y3 Forest

18) aayore: Build B1 Aayore

19) dlwillson: T Y2 R2 Sky
	aayore: I have no plan whatsoever.

20) aayore: Move B1 Aayore Forest

21) dlwillson: Sacrifice Y3 Forest
Move G3 Dlwillson Sky
Move G3 Sky Kinetica
Move G3 Kinetica Aayore
Catastrophe Aayore G

	aayore: Do I suck so much that beating me lowered your rating?
	dlwillson: :-) No.


23476)
Variants: "Hard time"
Started: 2013.3.11, Ended: 2013.3.23
Participants: SimonDorfman (S), SilentTitan (N)
Winner: SimonDorfman

1) SilentTitan: Homeworld R2 B3 G3

2) SimonDorfman: Homeworld R1 B2 G3

3) SilentTitan: Build G1 Silenttitan
	SilentTitan: The Object of the game is to win.  How you win is to either destroy all the planets in the opponants homeworld or all his ships. 

	SilentTitan: 
	SilentTitan: I should say destroy or control all the ships in the opponants homeworld

There is only one way to destroy your opponants planets and ships. (Planets are the squares, ships are the triangles) You may use the catastrophe command as the last command in your turn anytime a system has four of the same color (planets, ships or both) This will remove those pieces from the board and put them back into the bank
	SilentTitan: the bank is the global reserve stash at the top of the board.  These are the total pieces we have to play with.  It is determined by N+1 of each of the four colors where N is the number of players. 

Think of each color as a technology. Red=Attack, Blue=Trade, Green=Build, Yellow=Move. That means that currently in your homeworld you may attack, trade or build. If you build you may only build the color ship you already have in the system. In this case you may only build Green. (this is why trade is useful).  
	SilentTitan: since neither of us can move the first action will be to build another green ship.  When you build you have to build from smallest to largest avaliabe in the bank for the color you are building.  Since there are G1's in the bank, that is what we'll have to choose. 

4) SimonDorfman: Build G1 Simondorfman
	SilentTitan: the command I used was "Build g1 silenttitan" the name of your homeworld is your superduper username. we'll be able to name the other systems as we discover them.
	SilentTitan: in binary homeworlds command mirroring is fairly common for the first few turns

5) SilentTitan: Trade G1 Y1 Silenttitan
	SilentTitan: Now since neither of us can move. Time to trade out the g1 for a y1

6) SimonDorfman: Trade G1 Y1 Simondorfman

7) SilentTitan: Build G1 Silenttitan
	SilentTitan: Ok... Now you have the option of building another green or another yellow ship. However, building a yellow ship would use up the last y1 and allow the next player to build a y2.  the big deal about a y2 is the idea of sacrifice.  When you sacrifice you get however many actions there are pips on the piece you sacrificed. So in the case of a y2 you would get two move actions, which you can use together on the same ship or spread it out. 
	SilentTitan: OR you can move out into the universe and discover a new world.  When you discover you have to discover a world that is not the size of the world you are discovering from.  so my home world has a three-pip and a two-pip that means I can only discover out to a one-pip world.  However, I'll opt for the build 

8) SimonDorfman: Build G1 Simondorfman
	SilentTitan: Your Homeworld is comprised of a One-Pip and Two-Pip world so you have to discover a Three-Pip world when you do decide to move. 

9) SilentTitan: Discover G1 Silenttitan B1 Sol

10) SimonDorfman: Discover G1 Simondorfman Y3 Willywonka
	SilentTitan: Green is a great color to go discovering with. because where ever you go you'll be able to build another. So discovering a yellow (move) or Blue(Trade) planet are good because you'd be able to trade or move your new piece quickly.

11) SilentTitan: Build G1 Sol

12) SimonDorfman: Build G2 Willywonka
	SimonDorfman: what causes systems to be connected? when I try "move g1 willywonka silenttitan" it says "These systems are not connected."

13) SilentTitan: Build G2 Silenttitan
	SilentTitan: correct... you can only move to a system that does NOT share a same size star.  So from a 3-Pip you can only move to a 1-pip or 2-pip. Which is why WillyWonka is connected to your homeworld. 

14) SimonDorfman: Discover G1 Willywonka B1 Oompaloompa



23458)
Variants: "Unrated"
Started: 2013.3.14, Ended: 2013.9.16
Participants: slothbear (S), Leonard_Daniels (N)
Winner: Leonard_Daniels

1) Leonard_Daniels: Homeworld B1 Y2 G3
	slothbear: I've only played a couple of times, and last time was a year ago... so I hope we're a reasonable un-challenge for each other. heh.

2) slothbear: Homeworld B3 R1 G3
	Leonard_Daniels: Excellent.  This is probably going to be a frustrating match for any spectators, as we keep missing obvious moves.

3) Leonard_Daniels: Build G1 Leonard_daniels
	Leonard_Daniels: How do I refer to my homeworld for the purpose of building a ship?  It keeps telling me "The Homeworld system does not exist."

4) slothbear: Build G1 Slothbear
	Leonard_Daniels: Never mind, figured it out.

5) Leonard_Daniels: Discover G1 Leonard_daniels Y3 Fulford

6) slothbear: Trade G1 Y1 Slothbear

7) Leonard_Daniels: Build G1 Leonard_daniels

8) slothbear: Build Y1 Slothbear

9) Leonard_Daniels: Discover G1 Leonard_daniels B3 Acomb

10) slothbear: Discover Y1 Slothbear R2 Sazila

11) Leonard_Daniels: Build G1 Leonard_daniels

12) slothbear: Build G2 Slothbear

13) Leonard_Daniels: Build G2 Fulford

14) slothbear: Move G2 Slothbear Sazila
	slothbear: Uhm. That's pretty and green and everything. And a catastrophe. Supernova style. Want to undo?
	slothbear: harumph. These messages don't get emailed. Maybe we should have emails? If you agree, you can find mine on my SDG profile page.
	Leonard_Daniels: Oh, damn, for some reason I thought it was five pieces that made a catastrophe.  Awfully sporting of you to point out my error there.  Thank you.

15) Leonard_Daniels: Trade G1 B1 Leonard_daniels
	slothbear: Sorry for delay; either I've been away or SDG has been down. I'll get back on track soon.
	slothbear: When is soon, you ask? It was going to be Monday, but there was a death in the family and this week was consumed. I'm aiming for next Monday now. I do enjoy this game and am committed to playing, though I realize my record is spotty at the moment.
	Leonard_Daniels: No worries, I'm in no particular hurry.  Just come back when you can.

16) slothbear: Build Y1 Slothbear

17) Leonard_Daniels: Move B1 Leonard_daniels Fulford

18) slothbear: Trade Y1 B1 Slothbear

19) Leonard_Daniels: Build B2 Fulford

20) slothbear: Move B1 Slothbear Sazila

21) Leonard_Daniels: Trade B1 Y1 Fulford

22) slothbear: Build Y2 Sazila

23) Leonard_Daniels: Move Y1 Fulford Leonard_daniels

24) slothbear: Discover Y2 Sazila G3 Norad42

25) Leonard_Daniels: Trade G2 R2 Fulford

	Leonard_Daniels: I've been away from the site for quite some time, so I'm quite surprised that it's not me holding this one up.  Since we both don't really seem to be here at the moment, I'm going to terminate this game unrated.  Maybe we can give it another go some time when we're less busy.


23322)
Started: 2013.3.15, Ended: 2013.6.24
Participants: Mandrel (S), MattTheSpratt (N)
Winner: Mandrel

1) MattTheSpratt: Homeworld G3 Y1 B3

2) Mandrel: H Y2 B1 G3
	MattTheSpratt: The star system of Seth wishes you the best of luck!

3) MattTheSpratt: Build B1 Mattthespratt

4) Mandrel: Build G1 Mandrel

5) MattTheSpratt: Discover B1 Mattthespratt Y2 Fortran

6) Mandrel: T G1 B1 Mandrel

7) MattTheSpratt: Build B2 Mattthespratt

8) Mandrel: Build B2 Mandrel

9) MattTheSpratt: Trade B2 R2 Mattthespratt

10) Mandrel: Trade B1 R1 Mandrel

11) MattTheSpratt: Build B1 Mattthespratt

12) Mandrel: Discover B2 Mandrel G3 Master

13) MattTheSpratt: Trade B1 G1 Fortran

14) Mandrel: Build G1 Mandrel

15) MattTheSpratt: Build G1 Fortran

16) Mandrel: Build G2 Mandrel

17) MattTheSpratt: Move B1 Mattthespratt Fortran

18) Mandrel: Trade G2 Y2 Mandrel

19) MattTheSpratt: Trade G1 R1 Fortran

20) Mandrel: Move Y2 Mandrel Master

21) MattTheSpratt: Build R1 Fortran

22) Mandrel: Build R2 Mandrel

23) MattTheSpratt: Build R2 Mattthespratt

24) Mandrel: Build R3 Mandrel

25) MattTheSpratt: Move G1 Fortran Master

26) Mandrel: Sacrifice R1 Mandrel
Attack G1N Master

27) MattTheSpratt: Trade R1 G1 Fortran

28) Mandrel: Move R2 Mandrel Master

29) MattTheSpratt: Build G2 Fortran
	MattTheSpratt: Man I am bad at Homeworlds.

30) Mandrel: Build R1 Master

31) MattTheSpratt: Build R1 Fortran

32) Mandrel: Build R3 Mandrel



23268)
Started: 2013.3.17, Ended: 2013.3.17
Participants: ts52 (S), Elliefint (N)
Winner: ts52



23545)
Started: 2013.3.18, Ended: 2014.4.19
Participants: Lurch (S), aayore (N)
Winner: Lurch

1) aayore: Homeworld G2 B1 Y3

2) Lurch: Homeworld R1 B2 G3

3) aayore: Build Y1 Aayore

4) Lurch: Build G1 Lurch

5) aayore: Discover Y1 Aayore G3 Alpha

6) Lurch: Build G1 Lurch

	Lurch: Have you given up?


23537)
Started: 2013.3.20, Ended: 2013.4.24
Participants: ts52 (S), wil (N)
Winner: ts52

1) wil: Homeworld B2 R1 G3
	wil: Homeworld (b2, r1, g3)   what am I doing wrong, I have beentrying to start but it says no b2s
	ts52: Ah, no (), just: h b2 r1 g3

2) ts52: Homeworld R1 B3 G3
	wil: thanx, total newbie, thanx for your patience...where do I find these instructions??
	ts52: Instructions on SDG, or rules for Homeworld?
The different commands are listed at the top. Technically this is binary homeworlds, which is described here: http://www.wunderland.com/WTS/Andy/Games/ILoveHomeworlds.html#BinaryHomeworlds and from there you can find the link to the official rules as well.

3) wil: Build G1 Wil
	ts52: Also, I'm happy to answer any questions, but SDG doesn't email me when there's a new comment. So if you want to ask a question, and get my attention, leave a comment, then make a move and undo it. That way I get email. :)

4) ts52: Build G1 Ts52
	wil: thx...still totaly confused...that nomenclature listed doesn't work... the short hand is what  was getting me...  like this one...adding one small green ship...  I did so many things I forgot what worked...is my star system called wil?   or N?  and how wil I name a new one when it is time?

	wil: if you can cut and paste your commands into a note, I'll be able to see what you wrote and how they responded... I see now it says mine is the wil system..

	ts52: Ok, I can do that. I See you figured out your homeworld is named after your username.

5) wil: Trade G1 Y1 Wil
	ts52: My first command was: h r1 b3 g3
My second command is: b g1 ts52
	ts52: My next command will likely be: t g1 y1 ts52
	ts52: But that depends on your next move. :)

	wil: yeah, seems like that is a standard move eh?  getting a yellow so you can move to a new star system in the future, and then growing another green so you can work toward a rainbow fleet of choices?   Is there anywhere written 'opening gambits' middle game scenarios, end game like chess?

6) ts52: Trade G1 Y1 Ts52

7) wil: Build G1 Wil
	ts52: I'm not sure how much of that is still on the web. Andy Looney wrote a lot about it, most of it is probably linked from the url I posted earlier. But you might check the SDG wiki as well.

8) ts52: Build G1 Ts52
	wil: thx, I'll check...

9) wil: Trade G1 B1 Wil
	ts52: this move: b g1 ts52

10) ts52: Trade G1 B1 Ts52
	wil: thx

11) wil: Build G1 Wil
	ts52: I think your getting the hang of it.
my move: t g1 b1 ts52
Soon you're going to want to discover a new system. You do that with a command like: d b1 wil g3 big_green
	wil: big_green is the name of the system...you just pick a name correct?

12) ts52: Discover B1 Ts52 G2 Kermit
	wil: all ok?
	ts52: That's right, names can be anything. Sorry, lost my email reminding me it was my turn.

13) wil: Build G1 Wil

14) ts52: Build G1 Ts52
	ts52: Also, be careful having 3 pieces of the same color in the same system. 4 pieces of the same color == catastrophe.

15) wil: Discover G1 Wil Y3 Forttortuga
	wil: thx, i was watchin how many moves you had to get here so I could scadaddle...


16) ts52: Build G2 Ts52

17) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build G3 Forttortuga

18) ts52: Trade G2 Y2 Ts52
	ts52: Nice, well done.

19) wil: Trade G2 R2 Wil

20) ts52: Build B1 Kermit
	wil: thanx it was my first factory, lucky I saw the opp

21) wil: Discover G1 Forttortuga B2 Stalag17
	ts52: I'm sorry I didn't.

22) ts52: Build B2 Kermit

23) wil: Sacrifice G3 Wil
Build G2 Forttortuga
Build G2 Stalag17
Build G3 Wil

24) ts52: Trade B2 R2 Kermit

25) wil: Trade G2 Y2 Stalag17

26) ts52: Move Y2 Ts52 Kermit

27) wil: Sacrifice G3 Wil
Build G2 Stalag17
Build G3 Wil
Build Y1 Wil

28) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Ts52
Build Y3 Ts52

29) wil: Move Y2 Stalag17 Ts52
Catastrophe Ts52 Y

30) ts52: Move Y2 Kermit Ts52
	ts52: oops, guess I should've seen that coming. :(
	ts52: oh, that was just a stupid typo. I meant to build the y3 in kermit. oops...

31) wil: Move B1 Wil Forttortuga
	wil: is there any way to back it up that far?

	wil: is there any way to back it up that far?

	ts52: I don't think so. That's ok. We'll see if I can recover. :)

32) ts52: Trade B1 Y1 Kermit

33) wil: Discover G1 Wil Y3 Bedrock

34) ts52: Move R2 Kermit Bedrock

35) wil: Discover G1 Bedrock Y2 Dryden

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Ts52
Build Y3 Kermit

37) wil: Move Y1 Wil Forttortuga

38) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Bedrock
Build B1 Kermit

39) wil: Trade G2 R2 Forttortuga

40) ts52: Move R2 Bedrock Dryden

41) wil: Move G1 Dryden Forttortuga

42) ts52: Move G1 Ts52 Dryden

43) wil: Sacrifice G3 Forttortuga
Build G2 Wil
Build G3 Forttortuga
Build R3 Forttortuga

44) ts52: Sacrifice Y2 Ts52
Move Y1 Kermit Forttortuga
Move Y3 Kermit Forttortuga
Catastrophe Forttortuga Yellow

45) wil: Move R2 Wil Bedrock
	wil: nicely done....so wish there was a time lapse review available...

46) ts52: Move Y2 Ts52 Kermit

47) wil: Attack R1 Bedrock

48) ts52: Build R2 Dryden

49) wil: Move R1 Bedrock Stalag17

50) ts52: Discover R2 Dryden G3 Oscar

51) wil: Build R3 Stalag17

52) ts52: Build R3 Dryden

53) wil: Discover G2 Wil Y3 Fortcourage

54) ts52: Build R3 Oscar

55) wil: Build G1 Wil

56) ts52: Build Y1 Kermit

57) wil: Trade R3 Y3 Stalag17

58) ts52: Move R3 Dryden Fortcourage

59) wil: Move G2 Fortcourage Kermit

60) ts52: Sacrifice R2 Oscar
Attack G2 Kermit
Pass

61) wil: Build Y1 Stalag17

62) ts52: Move G2 Kermit Fortcourage
	wil: newbie lesson....one can sacrifice reds for an attack someplace else...
	wil: newbie lesson....one can sacrifice reds for an attack someplace else...

63) wil: Build Y2 Wil
	ts52: Ah yes, that's an important lesson. Sorry.

64) ts52: Sacrifice G2 Fortcourage
Build R2 Fortcourage
Build R3 Dryden
	wil: Don't be sorry, i need to be ambushed, slaughtered and abused to learn..

65) wil: Build G2 Stalag17

66) ts52: Move Y2 Kermit Ts52

67) wil: Sacrifice Y3 Stalag17
Move R1 Stalag17 Fortcourage
Move R2 Bedrock Stalag17
Move R2 Stalag17 Fortcourage
Catastrophe Fortcourage R

68) ts52: Build Y3 Kermit

69) wil: Trade G2 R2 Stalag17

70) ts52: Build Y3 Ts52
	wil: forgot catastrophes weren't automatic...had to back up and rewrite...
	ts52: no problem

71) wil: Sacrifice G3 Wil
Build G2 Stalag17
Build G3 Wil
Build Y3 Stalag17
	wil: just lost another game....my homeworld blown up in three moves...(no, not three moves the entire game....the last three moves....I am not that bad....I hope)

72) ts52: Move Y3 Kermit Oscar

73) wil: Trade G2 B2 Stalag17
	ts52: That's frustrating. You have to keep an eye out for the safety of your homeworld.

74) ts52: Build G2 Dryden

75) wil: Discover B2 Stalag17 R3 Tortuga
	wil: t g2 b2 stalag17

76) ts52: Move B1 Kermit Oscar
	wil: no woner it didn't work...not supposed to post instructions in the message box.

	wil: * wonder

77) wil: Discover Y1 Wil B3 Bedrock
	ts52: Yeah, The way these pages jump to different text boxes is weird.

78) ts52: Sacrifice G2 Dryden
Build B1 Oscar
Build B3 Kermit

79) wil: Trade G2 R2 Stalag17

80) ts52: Move B3 Kermit Tortuga

81) wil: Sacrifice Y1 Stalag17
Move B2 Tortuga Kermit

82) ts52: Sacrifice Y3 Oscar
Move B1 Oscar Wil
Move B1 Oscar Wil
Move B3 Tortuga Wil
Catastrophe Wil Blue

83) wil: Sacrifice Y3 Stalag17
Move Y2 Wil Stalag17
Move G3 Wil Bedrock
Move G1 Wil Bedrock

	ts52: It's ok. The best way to learn and get better is to play as much as you can. :)
	wil: and 3 red ships ready to strike with a queen yellow ready to send them....aarrrggghhhh
	wil: aaargggghh I can kill the reds but can't use my drone propulsion to do so becuase then I get bluebirded...
	wil: oops...can't kill the reds....hmmm is it all over?
	wil: I am sending all my remaining ships to new galaxies where hopefully they will be able to rebuild and play again.
	ts52: Yeah, it was all over. Thanks for the game. I'd be happy to play another.
	wil: I think that was my fifth completed game...I'm gonna win one with someone some day....   How did you like my exit?
	ts52: definitely a grandiose exit. :) 


23562)
Started: 2013.3.20, Ended: 2013.3.20
Participants: ts52 (S), wil (N)
Winner: ts52



23577)
Variants: "Hard time"
Started: 2013.3.23, Ended: 2013.5.19
Participants: agentofchaos (S), MagicJohn (N)
Winner: MagicJohn

1) MagicJohn: Homeworld B1 Y2 G3

2) agentofchaos: Homeworld R1 B3 G3

3) MagicJohn: Build G1 Magicjohn

4) agentofchaos: Build G1 Agentofchaos

5) MagicJohn: Trade G1 Y1 Magicjohn

6) agentofchaos: Build G1 Agentofchaos

7) MagicJohn: Build G1 Magicjohn

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) MagicJohn: Discover G1 Magicjohn Y3 Kaline

10) agentofchaos: Discover G1 Agentofchaos Y2 Kantele

11) MagicJohn: Build G1 Magicjohn

12) agentofchaos: B G2 Kantele

13) MagicJohn: Move G1 Kaline Kantele

14) agentofchaos: Build G2 Agentofchaos

15) MagicJohn: Sacrifice G3 Magicjohn
Build G2 Kantele
Build G3 Magicjohn
Build G3 Magicjohn
Catastrophe Kantele G

16) agentofchaos: Build G1 Agentofchaos

17) MagicJohn: Discover G1 Magicjohn Y3 Colavito

18) agentofchaos: Discover G2 Agentofchaos Y2 Dragha

19) MagicJohn: Trade Y1 B1 Magicjohn

20) agentofchaos: T G1 R1 Agentofchaos

21) MagicJohn: Build B1 Magicjohn

22) agentofchaos: Build R1 Agentofchaos

23) MagicJohn: Trade G3 R3 Magicjohn

24) agentofchaos: Build Y1 Agentofchaos

25) MagicJohn: Move B1 Magicjohn Colavito

26) agentofchaos: Move R1 Agentofchaos Dragha

27) MagicJohn: Move R3 Magicjohn Colavito

28) agentofchaos: Sacrifice G2 Dragha
Build R2 Dragha
Build G1 Agentofchaos

29) MagicJohn: Build B2 Colavito

30) agentofchaos: Build R2 Agentofchaos

31) MagicJohn: Trade B2 Y2 Colavito

32) agentofchaos: Trade R2 B2 Agentofchaos

33) MagicJohn: Build B2 Colavito

34) agentofchaos: Move B2 Agentofchaos Dragha

35) MagicJohn: Build Y1 Colavito

36) agentofchaos: Move Y1 Agentofchaos Dragha

37) MagicJohn: Discover Y2 Colavito R2 Bunning

38) agentofchaos: Build Y3 Agentofchaos

39) MagicJohn: Sacrifice G1 Colavito
Build Y3 Bunning



23507)
Variants: "Hard time"
Started: 2013.3.24, Ended: 2013.4.12
Participants: SilentTitan (S), SimonDorfman (N)
Winner: SilentTitan

1) SimonDorfman: Homeworld R2 B3 G3
	SimonDorfman: i'm not sure why our last game ended. did you resign? or run out of time? i can't say i have a grasp of this game at all, but i'd like to continue to try it.

2) SilentTitan: Homeworld R1 B2 G3
	SilentTitan: sure... that was my fault the challenge is set to HARD TIME and I was the one that ran out of time.  we will try again.  


3) SimonDorfman: Build G1 Simondorfman

4) SilentTitan: Build G1 Silenttitan

5) SimonDorfman: Trade G3 Y3 Simondorfman
	SimonDorfman: I tried doing this "discover g1 simondorfman r3 willywonka" and got this message "You do not have access to propulsion technology (YELLOW) in this sector." so i tried this "build y1 simondorfman" and got this message "To build a new ship you must already control one of the same colour (Y)."

6) SilentTitan: Trade G1 Y1 Silenttitan
	SimonDorfman: okay, i'm starting to get it...
	SilentTitan: yep... that sounds about right

7) SimonDorfman: Discover G1 Simondorfman R1 Willywonka

8) SilentTitan: Build G1 Silenttitan

9) SimonDorfman: Build G1 Willywonka
	SimonDorfman: I feel like I need to make a spreadsheet map of how to get to your home world... Hard to do on my phone...

10) SilentTitan: Discover G1 Silenttitan Y3 Sol

11) SimonDorfman: Sacrifice G1 Willywonka
Build Y1 Simondorfman
	SimonDorfman: i pretty much messed this up. not sure what i should do. can't seem to think of any useful moves that i can do. any suggestions?
	SilentTitan: you could sacrifice a g1 in willywonka and build a y1 in simondorfman. then trade the y1 to a g1 next turn. 

12) SilentTitan: Build Y1 Silenttitan
	SimonDorfman: Thank you. I understand the sacrifice action now.

13) SimonDorfman: Trade Y1 G1 Simondorfman

14) SilentTitan: Build G2 Sol

15) SimonDorfman: Build G2 Simondorfman

16) SilentTitan: Move G1 Sol Silenttitan

17) SimonDorfman: Move Y3 Simondorfman Willywonka

18) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Silenttitan
Build G3 Silenttitan
Build G3 Sol

19) SimonDorfman: Build G3 Willywonka
	SimonDorfman: wow

20) SilentTitan: Trade G3 Y3 Silenttitan

21) SimonDorfman: Trade G1 R1 Simondorfman

22) SilentTitan: Sacrifice Y3 Silenttitan
Move G3 Sol Willywonka
Move G3 Willywonka Simondorfman
Discover Y1 Silenttitan G3 Tic
	SilentTitan: ok.. so you are in a position that is overextended.  you do not have a Battleship (3-pip) in your homeworld and I can reach it with a battle ship by sacrificing the Y3 in my homeworld. There are considering issues like. Would I be able to take all ships in your homeworld before you'd be able to remove me. Doubtful as you could just sac the G3 in willy and build two more of the ships in your homeworld build the one you just sacked back into willy and then cat green in your homeworld.  Can you see what I'm talking about or should we do it as a practical exercise and start again?
	SimonDorfman: I'm not fully understanding so I'd like to play this to the end and then play again.
	SilentTitan: ok

23) SimonDorfman: Build Y1 Willywonka

24) SilentTitan: Attack G2 Simondorfman North

	SilentTitan: I was able to attack you because the "planets" in the system give the technology to everyone in the system.  
	SimonDorfman: shoot, sorry i let it run out of time. thanks for your efforts to teach me this game. i haven't really gotten it yet, but i may sit down and try to play a game in person with a friend sometime.


23591)
Variants: "Hard time"
Started: 2013.3.25, Ended: 2013.4.10
Participants: Aristos (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) Aristos: Homeworld B3 Y2 G3

3) TwoShort: Build G1 Twoshort

4) Aristos: Build G1 Aristos

5) TwoShort: Trade G1 Y1 Twoshort

6) Aristos: Trade G1 Y1 Aristos

7) TwoShort: Build G1 Twoshort

8) Aristos: Discover Y1 Aristos G1 Peek

9) TwoShort: Discover G1 Twoshort Y2 Yolonda

10) Aristos: Build Y1 Peek

11) TwoShort: Build Y2 Twoshort

12) Aristos: Discover Y1 Peek G2 Poke

13) TwoShort: Discover G1 Yolonda Y3 Yoyodyne

14) Aristos: Build Y2 Peek

15) TwoShort: Discover Y1 Twoshort B2 Bluestar

16) Aristos: Build Y3 Poke

17) TwoShort: Build Y3 Twoshort

18) Aristos: Discover Y1 Peek B3 Push

19) TwoShort: Sacrifice G1 Yoyodyne
Build Y3 Bluestar



23590)
Variants: "Hard time"
Started: 2013.3.28, Ended: 2013.4.16
Participants: SilentTitan (S), wil (N)
Winner: SilentTitan

1) wil: Homeworld R2 B1 G3

2) SilentTitan: Homeworld B2 R3 G3
	wil: newbie....learning game....abuse at wil, I figure I'll learn by getting beat until I see the moves coming at me...

3) wil: Build G1 Wil
	SilentTitan: good plan... Hint... think of the colors as technologies.  green=build, red=attack, blue=trade, yellow=move.  don't forget about sacrifice and catastrophe those are the ones that newbies get hung up on. 

Good Luck. 
	wil: Yeah, I think I have those 4 of one color, and sac = pips of that action, and factory... and in my mind I'm looking at the star systems as mega corporations, the green as venture captialists supporting new business and bolstering old businesses...Red is Vulture Capitalists, take over/acquisition specialists, yellow is HR, in house headhunters, Blue is stock brokers....

I look forward to learning from my loss.

4) SilentTitan: Build G1 Silenttitan

5) wil: Trade G1 Y1 Wil

6) SilentTitan: Trade G1 Y1 Silenttitan

7) wil: Build G1 Wil

8) SilentTitan: Build G1 Silenttitan
	wil: Do you know of anyone who has written more on the strategy of this game?  Opening gambits, mid game strategy plays (I've seen factory, bluebird, catastrohe) end game...but like when not to catastophe or how to set someone else up by enticing them to catastrophe or such?

9) wil: Trade G1 B1 Wil

10) SilentTitan: Trade G3 B3 Silenttitan

11) wil: Build G1 Wil

12) SilentTitan: Build G1 Silenttitan
	SilentTitan: those are interesting questions... catastrophe are pretty much straight forward.  I was able one time to build two battleships in a system and entice my opponent to take those and thereby he missed protecting against a sac of a Y3 and a cat for the win in his home world, but it was a truly desperation move and I could not believed it worked. 
	SilentTitan: I've learned most of the stuff I do from losing to TwoShort or nmeme.  

13) wil: Build G2 Wil
	wil: yes losing is the way I intend to learn...thanx!


14) SilentTitan: Build G2 Silenttitan

15) wil: Trade G1 R1 Wil

16) SilentTitan: Trade G2 B2 Silenttitan

17) wil: Discover B1 Wil Y3 Fortcourage
	wil: sytem down two days...me just joining..thought i broke it!

	SilentTitan: ah... I guess I didn't know it was down for two days


18) SilentTitan: Trade B2 R2 Silenttitan

19) wil: Build R1 Wil

20) SilentTitan: Discover B3 Silenttitan R1 Sol

21) wil: Discover G2 Wil R3 Taratupa

22) SilentTitan: Build R2 Silenttitan

23) wil: Trade G3 Y3 Wil

24) SilentTitan: Trade R2 Y2 Silenttitan

25) wil: Move R1 Wil Fortcourage

26) SilentTitan: Sacrifice Y1 Silenttitan
Move B3 Sol Fortcourage
	wil: That was a complete bonehead move on my part....I meant to move a red ship forward....so if you took that I'd get a 3....but then I thought...I can keep him from getting the other one by using the red star....and now I get nothing but anihilated....
 
hopefully a lesson learned...whilst you are over there chuckling at my stupidity.


27) wil: Move B1 Fortcourage Wil
	SilentTitan: I've read your post three times and I'm still a bit confused as to exactly what you are talking about ..... I cannot build the R3 as I already have 3 reds in the only system I could build it in, and a fourth would invite a catastrophe.  I have to move and that will allow you to build out to a red 3 world.
	wil: no you can't now....and again, I am just learning the system...but it appears to me in all likelihood you will be capable of building it before I....again newbie trying to make sense of it all.
	wil: oh and yes I see how awful my original plan was which I mistakenly thwarted...if moved up and captured my ship you'd then easily be able to catastrophe me!  arrrggghh
	SilentTitan: Then you will be able to sac the g2 and build that R3 as a ship at your leisure. I'd like to prevent that from happening .. but I'm not sure I can .. you are playing very well so far. 

28) SilentTitan: Discover G1 Silenttitan Y1 Sol
	SilentTitan: Ha... fun isn't it ... I love pretzel brain

29) wil: Move R1 Fortcourage Sol

30) SilentTitan: Move B3 Fortcourage Sol

31) wil: Move R1 Sol Taratupa

32) SilentTitan: Build G1 Silenttitan

33) wil: Build G2 Taratupa

34) SilentTitan: Discover G1 Silenttitan B1 Sole

35) wil: Discover R1 Wil G3 Forttortuga

36) SilentTitan: Build G2 Sole

37) wil: Move Y1 Wil Taratupa

38) SilentTitan: Build G3 Silenttitan

39) wil: Build Y1 Taratupa

40) SilentTitan: Build G3 Sol

41) wil: Build Y2 Taratupa

42) SilentTitan: Trade G2 Y2 Sole

43) wil: Discover Y1 Taratupa R1 Stalag17

44) SilentTitan: Sacrifice Y2 Sole
Move B3 Sol Forttortuga
Move G3 Sol Forttortuga

45) wil: Sacrifice G2 Taratupa
Build R2 Taratupa
Build R3 Forttortuga

46) SilentTitan: Sacrifice R2 Silenttitan
Attack R3 Forttortuga North
Attack R1 Forttortuga North

47) wil: Build G2 Taratupa

48) SilentTitan: Sacrifice Y2 Silenttitan
Move R1 Forttortuga Sol
Move R1 Sol Taratupa
Catastrophe Taratupa Red

	SilentTitan: ok... now in this case what happened here is that you had three reds in taratup two ships in a red system.  All I had to do was add a fourth red to the system and call for a catastrophe.  This destroyed the entire system and all the ships in it.  I sacrificed my y2 to give me the two moves I needed to get the r1 from forttortuga to taratupa via the sol system.  Did this make sense?
	SilentTitan: sorry to be clearer you had two RED ships in a RED system,  1-pip red and a two-pip red 
	wil: yeah...i didn't notice this was close enough....to bad the system doesn't allow for instant replay so I can go back and watch it happen and see what i missed...thanx for the flogging!

	wil: yeah...i didn't notice this was close enough....to bad the system doesn't allow for instant replay so I can go back and watch it happen and see what i missed...thanx for the flogging!

	wil: As I see it, I've now got zero greens...can't trade for them....your goal will be to keep me locked out of them and I can't even prolong the end?



23568)
Started: 2013.3.28, Ended: 2013.3.28
Participants: ts52 (S), wil (N)
Winner: ts52

	wil: oops



23499)
Variants: "Hard time"
Started: 2013.3.28, Ended: 2013.3.29
Participants: dlwillson (S), wil (N)
Winner: wil

1) wil: Homeworld G2 B1 R3

	wil: Have just learned the game in real space... want to get beat so I can learn how to keep from getting beat. Please cut and paste the 'orders' you submit so I can learn the short cuts and compare them to what happens.   If you wish whilst you anihilate me you may provide any info you would like to on why my move was so stupid and what would have been a better one.
	dlwillson: Wil, accept my challenge again, or set one up. Sorry for timing out on you; I was on vacation.


23183)
Variants: "Unrated"
Started: 2013.3.29, Ended: 2013.8.6
Participants: Leonard_Daniels (S), MattTheSpratt (W), OnePageWars (N), wil (E)
Winner: wil

1) OnePageWars: Homeworld G3 B2 Y3
	OnePageWars: gl hf!

2) wil: Homeworld R2 B1 G3

3) Leonard_Daniels: Homeworld B3 Y1 G3

4) MattTheSpratt: Homeworld R3 G1 B3

5) OnePageWars: Build Y1 Onepagewars

6) wil: Build G1 Wil

7) Leonard_Daniels: Build G1 Leonard_daniels

8) MattTheSpratt: Build B1 Mattthespratt

9) OnePageWars: Trade Y1 G1 Onepagewars

10) wil: Trade G1 R1 Wil

11) Leonard_Daniels: Trade G1 B1 Leonard_daniels

12) MattTheSpratt: Trade B1 Y1 Mattthespratt

13) OnePageWars: Build G1 Onepagewars

14) wil: Build G1 Wil

15) Leonard_Daniels: Build B1 Leonard_daniels

16) MattTheSpratt: Build B1 Mattthespratt

17) OnePageWars: Trade G1 R1 Onepagewars

18) wil: Trade G1 B1 Wil
	OnePageWars: figured I didn't want to be defenseless if someone  attacked me, lol.
	MattTheSpratt: Aye, good point.
	Leonard_Daniels: Something tells me that the first conflict in this war won't involve you, OnePageWars...
	wil: You feelin it LD?  

19) Leonard_Daniels: Trade B1 R1 Leonard_daniels

20) MattTheSpratt: Trade B1 G1 Mattthespratt
	OnePageWars: yeah, South and West are close to eachother.
	Leonard_Daniels: Come on, Matt, pull your finger out mate.
	wil: Does anyone have 'physical' connection (vs virtual/spacial) with Matt?

21) OnePageWars: Build G1 Onepagewars
	MattTheSpratt: Massively sorry, guys.
	wil: No worries, tis the game and the health of the battling ships that is important!  We didn't want you to lose a crew unjustly...that being said, one more infractin and and.....oh....    I'd like to discuss openings and options and play....would you be interested?  If interested, would the best place to be on the forum, or maybe a google doc?

22) wil: Build B1 Wil

23) Leonard_Daniels: Build R1 Leonard_daniels

24) MattTheSpratt: Build Y1 Mattthespratt

25) OnePageWars: Trade G1 B1 Onepagewars

26) wil: Trade B1 Y1 Wil

27) Leonard_Daniels: Build G1 Leonard_daniels

28) MattTheSpratt: Discover G1 Mattthespratt R2 Pppppppp

29) wil: Build G1 Wil
	wil: wzzup??

30) Leonard_Daniels: Discover R1 Leonard_daniels Y2 Malton

31) MattTheSpratt: Build G2 Pppppppp

32) wil: Build G2 Wil

33) Leonard_Daniels: Move G1 Leonard_daniels Malton

34) Leonard_Daniels: Build G2 Malton

35) wil: Discover G2 Wil Y3 Y3
	wil: we gonna see movement?

36) Leonard_Daniels: Build G2 Leonard_daniels
	Leonard_Daniels: Just you and me now, Wil.  May the best captain win.  I think there are now enough random elements in this game that I might actually win it.

37) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build G3 Y3
	wil: You've got the command.....

38) Leonard_Daniels: Move R1 Malton Mattthespratt

39) wil: Move G3 Y3 Pppppppp

40) Leonard_Daniels: Move G2 Leonard_daniels Pppppppp
Catastrophe Pppppppp Green

41) wil: Build G1 Y3

42) Leonard_Daniels: Attack Y1W Mattthespratt

43) wil: Discover G2 Y3 Y1 Y1

	wil: hellllloooooooooo
	wil: I guess we've had enough?



23211)
Variants: "Hard time"
Started: 2013.4.2, Ended: 2013.4.9
Participants: sou (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y2 G3

2) sou: Homeworld R3 B2 G3

3) dlwillson: B G1 Dlwillson

4) sou: Build G1 Sou

5) dlwillson: Trade G1 R1 Dlwillson



23620)
Variants: "Hard time"
Started: 2013.4.2, Ended: 2013.4.9
Participants: sou (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) sou: Homeworld B2 Y1 G3 *

3) SilentTitan: Build G1 Silenttitan

4) sou: Build G1 Sou

5) SilentTitan: Trade G1 Y1 Silenttitan

6) sou: Trade G1 R1 Sou

7) SilentTitan: Build Y1 Silenttitan

8) sou: Build R1 Sou

9) SilentTitan: Discover Y1 Silenttitan G3 Sol



23689)
Variants: "Hard time"
Started: 2013.4.2, Ended: 2013.5.6
Participants: headphoned (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld Y1 B2 G3

2) headphoned: Homeworld B1 Y3 G3

3) Broccoli_Commander: Build G1 Broccoli_commander

4) headphoned: Build G1 Headphoned

5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

6) headphoned: Discover G1 Headphoned B2 Omicron

7) Broccoli_Commander: Build G1 Blueberry

8) headphoned: Build G2 Omicron

9) Broccoli_Commander: Build G2 Blueberry

10) headphoned: Trade G1 Y1 Omicron

11) Broccoli_Commander: Trade G1 Y1 Blueberry

12) headphoned: Build Y2 Omicron

13) Broccoli_Commander: Build Y2 Blueberry

14) headphoned: Build G1 Headphoned

15) Broccoli_Commander: Discover Y2 Blueberry B2 Muffin

16) headphoned: Sacrifice Y2 Omicron
Move Y1 Omicron Blueberry
Move Y1 Blueberry Broccoli_commander

17) Broccoli_Commander: Build Y2 Blueberry

18) headphoned: Trade Y1 B1 Broccoli_commander

19) Broccoli_Commander: Trade G1 R1 Blueberry

20) headphoned: Sacrifice G2 Omicron
Build B1 Broccoli_commander
Build B2 Broccoli_commander
Catastrophe Broccoli_commander Blue

21) Broccoli_Commander: Build G1 Broccoli_commander

22) headphoned: Move G1 Headphoned Muffin

23) Broccoli_Commander: Sacrifice Y2 Blueberry
Move G3 Broccoli_commander Muffin
Move G3 Muffin Headphoned

24) headphoned: Trade G3 R3 Headphoned

25) Broccoli_Commander: Sacrifice R1 Blueberry
Attack R3 Headphoned



23623)
Variants: "Hard time"
Started: 2013.4.2, Ended: 2013.4.3
Participants: wil (S), dlwillson (N)
Winner: wil



23691)
Started: 2013.4.2, Ended: 2013.4.29
Participants: netskaven (S), wil (N)
Winner: wil

1) wil: Homeworld R3 B1 G3

2) netskaven: Homeworld G2 B3 Y3
	wil: I am new as well...good luck!

3) wil: Build G1 Wil
	netskaven: good luck!

4) netskaven: Build Y1 Netskaven

5) wil: Build G1 Wil

6) netskaven: Trade Y1 R1 Netskaven

7) wil: Trade G1 R1 Wil

8) netskaven: Build Y1 Netskaven

9) wil: Build G1 Wil

10) netskaven: Trade Y1 B1 Netskaven

11) wil: Trade G1 B1 Wil

12) netskaven: Build Y1 Netskaven

13) wil: Trade G1 Y1 Wil

14) netskaven: Trade Y1 G1 Netskaven

15) wil: Build G1 Wil

16) netskaven: Discover G1 Netskaven Y1 Neworld

17) wil: Build B2 Wil

18) netskaven: Move R1 Netskaven Neworld

19) wil: Discover G1 Wil B2 Forttortuga

20) netskaven: Move R1 Neworld Forttortuga

21) wil: Move B2 Wil Forttortuga

22) netskaven: Attack G1 Forttortuga

23) wil: Sacrifice R1 Wil
Attack R1 Forttortuga

24) netskaven: Build Y1 Netskaven

25) wil: Attack G1 Forttortuga

26) netskaven: Build B2 Netskaven

27) wil: Build Y2 Wil

28) netskaven: Trade B2 R2 Netskaven

29) wil: Build R1 Forttortuga

30) netskaven: Build Y2 Netskaven

31) wil: Trade B2 R2 Forttortuga

32) netskaven: Trade Y2 R2 Netskaven

33) wil: Move Y1 Wil Forttortuga

34) netskaven: Move B1 Netskaven Neworld

35) wil: Move R2 Forttortuga Neworld

36) netskaven: Discover G1 Neworld Y2 Otherlimit

37) wil: Attack B1 Neworld

38) netskaven: Trade R2 B2 Netskaven

39) wil: Build Y2 Forttortuga

40) netskaven: Build Y3 Netskaven

41) wil: Build Y3 Wil

42) netskaven: Discover R2 Netskaven G1 Spc1889

43) wil: Sacrifice Y2 Wil
Move Y1 Forttortuga Neworld
Move Y1 Neworld Netskaven
Catastrophe Netskaven Y

44) netskaven: Build B2 Netskaven

45) wil: Move B1 Neworld Netskaven
Catastrophe Netskaven B

	wil: Thank you for the game, I'm slowly learning how to see trouble brewing and to take advantage of opportunity when it strikes...   

I look forward to playing another game, thanx again.


23700)
Variants: "Hard time"
Started: 2013.4.3, Ended: 2013.5.1
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B3 Y2 G3 Dlwillson

2) wil: Homeworld B3 R1 G3

3) dlwillson: Build G1 Dlwillson

4) wil: Build G1 Wil

5) dlwillson: Trade G1 R1 Dlwillson

6) wil: Build G1 Wil

7) dlwillson: B R1 Dlwillson

8) wil: Trade G3 R3 Wil

9) dlwillson: B R2 Dlwillson

10) wil: Build R2 Wil

11) dlwillson: T R2 Y2 Dlwillson

12) wil: Trade G1 Y1 Wil

13) dlwillson: Discover R1 Dlwillson G1 Forest

14) wil: Discover R2 Wil Y2 Forttortuga

15) dlwillson: B R2 Dlwillson

16) wil: Build G1 Wil

17) dlwillson: B G2 Dlwillson

18) wil: Build G2 Wil

19) dlwillson: Discover G2 Dlwillson B1 Sky

20) wil: Trade G1 B1 Wil

21) dlwillson: B R2 Forest

22) wil: Move G1 Wil Forttortuga

23) dlwillson: B R3 Dlwillson

24) wil: Build R3 Forttortuga

25) dlwillson: S Y2 Dlwillson
M R1 Forest Forttortuga
M R2 Forest Forttortuga
C Forttortuga R

26) wil: Build Y1 Wil

27) dlwillson: T R3 Y3 Dlwillson

28) wil: Build G1 Forttortuga

29) dlwillson: M Y3 Dlwillson Sky

30) wil: Discover Y1 Wil G2 Dryden

31) dlwillson: B G1 Dlwillson

32) wil: Build G3 Wil

33) dlwillson: Build G3 Sky

34) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 Wil
Build B1 Wil

35) dlwillson: Trade G2 B2 Sky

36) wil: Discover B1 Wil G2 Stalag17

37) dlwillson: Move B2 Sky Stalag17

38) wil: Move R3 Wil Stalag17

39) dlwillson: B B2 Stalag17

40) wil: Attack B2 Stalag17

41) dlwillson: Build B2 Stalag17
Catastrophe Stalag17 B

42) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Stalag17
Build R2 Stalag17
	wil: interesting tactic....

43) dlwillson: Sacrifice Y3 Sky
Move R1 Dlwillson Sky
Move R1 Sky Stalag17
Discover G3 Sky B2 Sea
Catastrophe Stalag17 R
	dlwillson: meh... It goes badly for me. I'm not being nearly aggressive enough.

44) wil: Sacrifice G3 Wil
Build G2 Forttortuga
Build G3 Wil
Build Y2 Wil
	wil: don't go easy on me....i can't learn that way....

45) dlwillson: T G3 Y3 Sea
	dlwillson: I'm not going easy on you, I'm having a hard time finding moves with impact. ie: You're playing very well, and not giving me easy ways to hurt you.

46) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 Dryden
Build Y3 Dryden

47) dlwillson: D R2 Dlwillson B1 Sky
	dlwillson: Actually, I need to consider the situation a moment.
	dlwillson: And since I'm at work, it will have to wait...
	wil: no worries

48) wil: Sacrifice Y3 Dryden
Discover G1 Forttortuga R1 Bedrock
Move G1 Forttortuga Bedrock
Move Y2 Wil Forttortuga
	dlwillson: Let's see how that works out...
	wil: I'll give you choices!!

49) dlwillson: S G1 Dlwillson
B Y3 Sea
	dlwillson: Impressive!

50) wil: Sacrifice Y2 Forttortuga
Move Y1 Wil Sea
Move Y1 Wil Sea
Catastrophe Sea Y
	wil: You didn't like the choices I gave you???

	dlwillson: Good game, Wil. Very well played.
	wil: I almost went to build more greens for the attack...It is an awful interesting learning curve to this game, there are a lot of moving parts....thanks for playing....are you up for another one?


23780)
Variants: "Hard time"
Started: 2013.4.13, Ended: 2013.6.27
Participants: AdamBadura (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld R1 B2 G3

2) AdamBadura: Homeworld G3 B2 Y3

3) Remneb: Build G1 Remneb
	AdamBadura: Sorry for the delay. I forgot about the game!
	Remneb: It's ok. Have a good game.

4) AdamBadura: Build Y1 Adambadura

5) Remneb: Trade G1 Y1 Remneb

6) AdamBadura: Trade Y1 R1 Adambadura

7) Remneb: Build G1 Remneb

8) AdamBadura: Build R1 Adambadura

9) Remneb: Build Y1 Remneb

10) AdamBadura: Build R2 Adambadura

11) Remneb: Build G1 Remneb

12) AdamBadura: Discover R1 Adambadura G1 Shipyard

13) Remneb: Build G2 Remneb

14) AdamBadura: Build R2 Shipyard

15) Remneb: Trade G2 R2 Remneb

16) AdamBadura: Build R3 Adambadura

17) Remneb: Discover G1 Remneb Y3 Zeta

18) AdamBadura: Discover R3 Adambadura Y1 Onmyway

19) Remneb: Discover R2 Remneb B3 Jordan

20) AdamBadura: Move R3 Onmyway Jordan

21) Remneb: Sacrifice Y1 Remneb
Move R2 Jordan Remneb

22) AdamBadura: Build R3 Adambadura

23) Remneb: Build R3 Remneb

24) AdamBadura: Sacrifice Y3 Adambadura
Move R1 Shipyard Jordan
Move R1 Jordan Remneb
Move R3 Jordan Shipyard
Catastrophe Remneb R

25) Remneb: Trade G1 R1 Remneb

26) AdamBadura: Trade R1 Y1 Adambadura

27) Remneb: Build R1 Remneb

28) AdamBadura: Build Y1 Adambadura

29) Remneb: Build Y2 Remneb

30) AdamBadura: Move Y1 Adambadura Shipyard

31) Remneb: Move R1 Remneb Shipyard

32) AdamBadura: Move R3 Shipyard Zeta

33) Remneb: Attack Y1 Shipyard


34) AdamBadura: Attack R1 Shipyard

35) Remneb: Sacrifice Y2 Remneb
Discover Y1 Shipyard Y2 Aldan
Move G1 Zeta Aldan

36) AdamBadura: Build Y2 Adambadura

37) Remneb: Discover Y1 Aldan G1 Robar

38) AdamBadura: Move Y1 Adambadura Shipyard

39) Remneb: Sacrifice G3 Remneb
Build Y2 Robar
Build Y3 Remneb
Build G2 Aldan

40) AdamBadura: Build Y3 Shipyard

41) Remneb: Build G2 Aldan

42) AdamBadura: Sacrifice Y2 Adambadura
Move Y3 Shipyard Remneb
Move Y1 Shipyard Remneb
Catastrophe Remneb Y

43) Remneb: Sacrifice Y2 Robar
Move G1 Aldan Zeta
Move G1 Zeta Remneb

44) AdamBadura: Trade R2 Y2 Adambadura

45) Remneb: Build G2 Remneb
	AdamBadura: I didn't thought about that. Shouldn't have rush so much. :(
	Remneb: It's my last stand anyway :)

46) AdamBadura: Trade R3 G3 Adambadura

47) Remneb: Sacrifice G2 Remneb
Build G2 Aldan
Build G3 Remneb

48) AdamBadura: Build Y1 Adambadura

49) Remneb: Move G2 Aldan Robar

50) AdamBadura: Move Y1 Adambadura Shipyard

51) Remneb: Trade G3 Y3 Remneb

52) AdamBadura: Move R3 Zeta Aldan

53) Remneb: Build G3 Remneb

54) AdamBadura: Attack G2 Aldan

55) Remneb: Sacrifice Y3 Remneb
Move G2 Aldan Robar
Move G2 Robar Adambadura
Move G2 Robar Adambadura
Catastrophe Adambadura G

56) AdamBadura: Trade Y2 G2 Adambadura

57) Remneb: Sacrifice G3 Remneb
Build G2 Remneb
Build G3 Remneb
Build Y1 Robar

58) AdamBadura: Build G3 Aldan

59) Remneb: Trade G2 Y2 Remneb

60) AdamBadura: Sacrifice G3 Aldan
Build G2 Aldan
Build G3 Adambadura
Build Y2 Shipyard

61) Remneb: Move G1 Remneb Robar

62) AdamBadura: Discover Y2 Shipyard G3 Drydocks

63) Remneb: Build Y3 Remneb

64) AdamBadura: Build Y3 Shipyard

65) Remneb: Sacrifice Y3 Remneb
Move G1 Robar Adambadura
Move G3 Remneb Shipyard
Move G3 Shipyard Adambadura
Catastrophe Adambadura G

	Remneb: Thanks for the game.
	AdamBadura: How?! How I didn't sow that?! Obvously way to rare moves (on my side) where bad for me... :( Congratulations!


23755)
Started: 2013.4.13, Ended: 2013.4.25
Participants: wil (S), zoltar (N)
Winner: zoltar

1) zoltar: Homeworld B1 R3 G3

2) wil: Homeworld B2 R1 G3
	zoltar: Greetings, Earthling.

3) zoltar: Build G1 Zoltar
	wil: newbie...learning by losing...
	zoltar: b g1 zoltar

4) wil: Build G1 Wil

5) zoltar: Trade G1 Y1 Zoltar

6) wil: Trade G1 Y1 Wil

7) zoltar: Build G1 Zoltar

8) wil: Build G1 Wil

9) zoltar: Trade G1 R1 Zoltar

10) wil: Trade G1 R1 Wil

11) zoltar: Build R2 Zoltar

12) wil: Build R2 Wil

13) zoltar: Trade R1 B1 Zoltar

14) wil: Trade R2 B2 Wil

15) zoltar: Discover B1 Zoltar G2 Emeraldforest

16) wil: Build G1 Wil

17) zoltar: Build B1 Emeraldforest

18) wil: Build G1 Wil

19) zoltar: Trade B1 Y1 Emeraldforest

20) wil: Build Y2 Wil

21) zoltar: Build Y2 Emeraldforest

22) wil: Discover G1 Wil Y3 Fortcourage

23) zoltar: Discover Y2 Emeraldforest B3 Blueball

24) wil: Discover Y1 Wil G3 Stalag17

25) zoltar: Move R2 Zoltar Emeraldforest

26) wil: Build Y2 Stalag17

27) zoltar: Move R2 Emeraldforest Fortcourage

28) wil: Discover G1 Fortcourage B2 Dryden

29) zoltar: Sacrifice G3 Zoltar
Build B1 Emeraldforest
Build Y3 Blueball
Build Y3 Zoltar

30) wil: Discover B2 Wil G3 Taratupa

31) zoltar: Move B1 Emeraldforest Taratupa

32) wil: Trade B2 R2 Taratupa

33) zoltar: Build B2 Taratupa
	wil: oh excellent move...again...a learning curve of not seeing how to capitalize on something other than a factory...thank you!


34) wil: Attack B2 Taratupa

35) zoltar: Build B3 Emeraldforest

36) wil: Build B3 Taratupa

37) zoltar: Move B1 Emeraldforest Taratupa
Catastrophe Taratupa B

38) wil: Build R1 Taratupa

39) zoltar: Build B1 Emeraldforest

40) wil: Build R2 Taratupa

41) zoltar: Trade B3 R3 Emeraldforest

42) wil: Build G1 Dryden
	wil: interesting how these play out....  like a little slate cleaning...  

43) zoltar: Trade Y2 G2 Blueball

44) wil: Build Y2 Wil

45) zoltar: Build G2 Blueball

46) wil: Trade G1 B1 Dryden

47) zoltar: Sacrifice G2 Blueball
Build G1 Blueball
Build R3 Fortcourage

48) wil: Sacrifice Y2 Wil
Move Y2 Stalag17 Dryden
Move Y1 Stalag17 Dryden

49) zoltar: Trade Y3 G3 Zoltar

50) wil: Build G2 Dryden

51) zoltar: Sacrifice G2 Blueball
Build Y2 Blueball
Build Y3 Emeraldforest

52) wil: Move Y1 Dryden Taratupa
	zoltar: I was expecting the same Y2 sac, but for you to send one of your yellow ships not to Dryden, but right into my homeworld. This move also threatens checkmate, but moving one yellow ship twice right into my homeworld would have been much stronger than moving both ships one step away. I could not capture the ship or else you then sac your second y2 and send the other yellow ship in and win. This is still a good move, but now I have many more options to defend.

53) zoltar: Build G2 Blueball
	wil: thank you for the lesson!!!

54) wil: Move R2 Taratupa Dryden
	wil: I see what you are saying....you could have still changed yes?  Or left with one ship...   to ancy....still waaaaaaayyyy green....

55) zoltar: Sacrifice Y3 Emeraldforest
Move Y3 Blueball Wil
Move G2 Blueball Wil
Move G1 Blueball Wil
Catastrophe Wil G

56) wil: Build Y3 Taratupa

57) zoltar: Sacrifice R2 Fortcourage
Attack R1 Wil
Attack Y2 Wil

	zoltar: The Zoltarian Empire has achieved a peaceful liberation of citizenz who were being held against their Wil. 
	wil: We tried to escape annihilation by your occupying forces but the system wouldn't let us....thank you so much for the abuse....eventualy I'll start to see how the hell this all works


23624)
Started: 2013.4.13, Ended: 2013.7.24
Participants: Nupanick (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Nupanick: Homeworld B2 R3 G3

3) ts52: Build G1 Ts52

4) Nupanick: Build G1 Nupanick

5) ts52: Discover G1 Ts52 B3 Grover

6) Nupanick: Trade G3 Y3 Nupanick

7) ts52: Build G1 Ts52

8) Nupanick: Build G2 Nupanick
	Nupanick: Whoops, forgot to check my notes... thought I was playing a different table.

9) ts52: Build G2 Grover
	ts52: no worries

10) Nupanick: Discover G1 Nupanick B1 Damogran

11) ts52: Trade G1 Y1 Grover

12) Nupanick: Build G1 Damogran

13) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build G3 Grover

14) Nupanick: Build G3 Nupanick

15) ts52: Trade G2 R2 Grover
	Nupanick: Ooh, so that's how Factory works. Wasn't expecting that!

16) Nupanick: Trade G1 Y1 Damogran

17) ts52: Move R2 Grover Damogran
	ts52: Yeah, factory is pretty handy.

18) Nupanick: Move G1 Damogran Grover

19) ts52: Move G3 Grover Damogran

20) Nupanick: Sacrifice Y1 Damogran
Move G1 Grover Ts52

21) ts52: Trade G3 R3 Ts52

22) Nupanick: Discover G2 Nupanick B1 Cerulean

23) ts52: Attack G1 Ts52

24) Nupanick: Build G1 Cerulean

25) ts52: Build R1 Damogran

26) Nupanick: Trade G1 Y1 Cerulean

27) ts52: Build Y2 Grover

28) Nupanick: Build Y2 Nupanick

29) ts52: Build G1 Damogran

30) Nupanick: Build Y2 Cerulean

31) ts52: Move Y1 Grover Damogran

32) Nupanick: Move Y1 Cerulean Grover

33) ts52: Sacrifice G2 Grover
Build Y3 Grover
Build Y3 Damogran

34) Nupanick: Move Y2 Cerulean Grover
Catastrophe Grover Yellow

35) ts52: Build R1 Damogran
	Nupanick: ...darn. I basically have to do this now though.

36) Nupanick: Build G2 Cerulean

37) ts52: Discover G1 Ts52 B3 Grover
	Nupanick: this puts you WAY in the lead by my estimates... good luck!

38) Nupanick: Trade G2 Y2 Cerulean

39) ts52: Build G2 Grover

40) Nupanick: Build G2 Nupanick

41) ts52: Build G3 Ts52



23787)
Started: 2013.4.13, Ended: 2013.5.20
Participants: Nupanick (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) Nupanick: Homeworld B2 G3 Y3
	Nupanick: Woo, homeworlds! It's been too long~

3) wil: Build G1 Wil

4) Nupanick: Build Y1 Nupanick
	wil: I'm a newbie and am looking forward to learning...

	Nupanick: I assume you've done some research though, since you're starting out with Banker?

5) wil: Trade G1 Y1 Wil

6) Nupanick: Trade Y1 G1 Nupanick

7) wil: Build G1 Wil

8) Nupanick: Build Y1 Nupanick

9) wil: Trade G1 B1 Wil

10) Nupanick: Discover Y1 Nupanick G1 Pitstop
	Nupanick: Ooh, nice. Wasn't expecting you to trade into blue so early. Hmm.

11) wil: Build B1 Wil
	Nupanick: my scout decides to avoid speculating in the blue economy and instead takes a detour to a lone maintenance station.

12) Nupanick: Build Y1 Pitstop
	wil:  I see....well blue is cool...

	Nupanick: Oh, no, I have nothing wrong with blue, in fact I would have liked to build into it, but I just realized that if I did I'd be giving you the first medium. Sorry for the confusion!

13) wil: Discover B1 Wil G3 Fortcourage

14) Nupanick: Build Y2 Pitstop

15) wil: Build Y2 Wil

16) Nupanick: Discover Y1 Pitstop B3 Coruscant

17) wil: Build B2 Wil

18) Nupanick: Build Y2 Nupanick
	Nupanick: Reminder: overpopulation occurs when there are four pieces of the same color in the same place. That's "pieces," not "ships." Three blue ships and a blue star is enough to call a catastrophe.

19) wil: Trade B2 R2 Wil
	wil: yeah thanx....I'm thinking i can only catastrophe myself...and I'll be buildin stars soon...


20) Nupanick: Trade Y2 G2 Nupanick

21) wil: Move R2 Wil Coruscant

22) Nupanick: Discover Y1 Coruscant B2 Aislefive

23) wil: Build G1 Wil

24) Nupanick: Move Y2 Pitstop Aislefive

25) wil: Build B2 Fortcourage

26) Nupanick: Build Y2 Pitstop

27) wil: Build B3 Fortcourage

28) Nupanick: Trade Y2 G2 Aislefive

29) wil: Trade B3 Y3 Fortcourage

30) Nupanick: Trade G1 R1 Nupanick

31) wil: Build B3 Wil

32) Nupanick: Build Y2 Pitstop
	wil: I'm gonna get you to fire that scout!

33) wil: Build Y3 Fortcourage

34) Nupanick: Sacrifice Y2 Pitstop
Move Y2 Pitstop Fortcourage
Move Y1 Pitstop Fortcourage
Catastrophe Fortcourage Yellow
	wil: My bad, don't fire him....he's a triple agent...

35) wil: Build B3 Fortcourage
	Nupanick: A suicide bomber, actually >:)

36) Nupanick: Build Y1 Aislefive
	wil: nah, he came back to the fold, his mission was done, and will soon be on a new assignment.
	Nupanick: Argh, that gives you a monopoly on Blue. Gotta break that up somehow.

37) wil: Trade B3 Y3 Fortcourage

38) Nupanick: Discover G2 Aislefive B3 Catplanet

39) wil: Build Y2 Fortcourage

40) Nupanick: Move Y1 Aislefive Catplanet

41) wil: Sacrifice Y2 Wil
Discover Y2 Fortcourage G1 Bedrock
Move G1 Wil Coruscant

	wil: This game showed me the value of cornering blue...  every game teaches me either something to never try again, watch out for, or something to try again...quite the learning curve...
	Nupanick: Why'd you quit? You were doing really well.
	wil: it said you resigned??


23786)
Variants: "Hard time"
Started: 2013.4.14, Ended: 2013.4.21
Participants: zoltar (S), goulo (N)
Winner: zoltar

1) goulo: Homeworld R3 B2 G3

2) zoltar: Homeworld R1 B2 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo
	zoltar: hi!

4) zoltar: Build G1 Zoltar

5) goulo: Trade G1 Y1 Goulo

6) zoltar: Trade G1 Y1 Zoltar

7) goulo: Build G1 Goulo

8) zoltar: Build G1 Zoltar

9) goulo: Trade G1 R1 Goulo
	goulo: trade g1 r1 goulo

10) zoltar: Trade G1 R1 Zoltar
	goulo: hmm, strangely, it works better if the order is typed above instead of in the comment section. :P
	zoltar: yes, I've made that mistake as well.

11) goulo: Build R2 Goulo

12) zoltar: Build R2 Zoltar

13) goulo: Trade R1 G1 Goulo

14) zoltar: Build G1 Zoltar

15) goulo: Discover G1 Goulo Y1 Poleneto

16) zoltar: Discover G1 Zoltar Y3 Oldyeller

17) goulo: Build Y2 Goulo

18) zoltar: Build Y2 Zoltar

19) goulo: Move R2 Goulo Poleneto

20) zoltar: Move R2 Zoltar Oldyeller

21) goulo: Build G1 Goulo

22) zoltar: Build G2 Zoltar

23) goulo: Build G2 Goulo

24) zoltar: Sacrifice Y2 Zoltar
Move G1 Oldyeller Poleneto
Move G1 Poleneto Goulo
Catastrophe Goulo G

25) goulo: Trade Y2 G2 Goulo
	goulo: Hmm, well that was a big blunder by me...

26) zoltar: Build Y2 Zoltar
	zoltar: Yes, putting three of one color together

27) goulo: Build Y2 Goulo

28) zoltar: Discover Y1 Zoltar G3 Greengiant

29) goulo: Move Y1 Goulo Poleneto

30) zoltar: Move R1 Zoltar Greengiant

31) goulo: Discover G1 Poleneto Y3 Polenego

32) zoltar: Move G2 Zoltar Polenego

33) goulo: Build G1 Polenego

34) zoltar: Sacrifice G2 Polenego
Build Y2 Zoltar
Build Y3 Greengiant

	goulo: Thanks for the game. I am way too rusty and played way too carelessly... :/
	zoltar: gg -- yeah, I was going to sac a y2 and move the y3 into your homeworld next turn, which would be close to checkmate.


23788)
Started: 2013.4.18, Ended: 2013.4.18
Participants: wil (S), rentabuddha (N)
Winner: wil



23688)
Variants: "Hard time"
Started: 2013.4.19, Ended: 2013.4.30
Participants: SilentTitan (S), wil (N)
Winner: SilentTitan

1) wil: Homeworld R1 B2 G3

2) SilentTitan: Homeworld R2 B3 G3

3) wil: Build G1 Wil

4) SilentTitan: Build G1 Silenttitan

5) wil: Trade G1 R1 Wil

6) SilentTitan: Trade G1 Y1 Silenttitan

7) wil: Build G1 Wil

8) SilentTitan: Build Y1 Silenttitan

9) wil: Build G1 Wil

10) SilentTitan: Build Y1 Silenttitan

11) wil: Trade G3 Y3 Wil

12) SilentTitan: Discover Y1 Silenttitan G1 Sol

13) wil: Build Y2 Wil

14) SilentTitan: Discover Y1 Silenttitan B1 Soul

15) wil: Build G2 Wil

16) SilentTitan: Build Y2 Sol

17) wil: Discover G1 Wil Y3 Fortcourage

18) SilentTitan: Build G2 Silenttitan

19) wil: Build G2 Wil

20) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Soul
Build Y3 Silenttitan
Build G3 Silenttitan

21) wil: Trade G1 B1 Wil

22) SilentTitan: Trade Y2 R2 Soul

23) wil: Build G1 Wil

24) SilentTitan: Move G2 Silenttitan Soul

25) wil: Build G3 Fortcourage

26) SilentTitan: Build G3 Soul

27) wil: Build B1 Wil

28) SilentTitan: Trade G2 B2 Soul

29) wil: Discover G2 Wil R3 Tortuga

30) SilentTitan: Sacrifice Y2 Sol
Move B2 Soul Tortuga
Move B2 Tortuga Wil
Catastrophe Wil Blue

31) wil: Move Y2 Wil Tortuga

32) SilentTitan: Build G2 Silenttitan

33) wil: Sacrifice G3 Fortcourage
Build G3 Fortcourage
Build Y2 Wil
Build Y2 Tortuga

34) SilentTitan: Trade Y1 R1 Silenttitan

35) wil: Sacrifice Y2 Tortuga
Move G1 Wil Silenttitan
Move G2 Wil Silenttitan
Catastrophe Silenttitan G

36) SilentTitan: Move G3 Soul Silenttitan

37) wil: Build G1 Tortuga

38) SilentTitan: Sacrifice Y3 Silenttitan
Move R2 Soul Silenttitan
Move R2 Silenttitan Wil
Move R1 Silenttitan Wil
Catastrophe Wil Red
	SilentTitan: good game... Thanks
	wil: slaughtered I was, learning I did..hopefully.
	SilentTitan: I don't know about slaughtered .. you got a darn good shot in on me ...taking out the greens in my homeworld. 

	wil: you up for another?



23810)
Started: 2013.4.21, Ended: 2013.5.13
Participants: daselva (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) daselva: Homeworld R1 B2 G3

3) wil: Build G1 Wil
	wil: yikes this is a first for me...

4) daselva: Build G1 Daselva

5) wil: Trade G3 Y3 Wil

6) daselva: Trade G3 R3 Daselva

7) wil: Build Y1 Wil

8) daselva: Build R1 Daselva

9) wil: Build Y1 Wil

10) daselva: Trade R3 Y3 Daselva

11) wil: Build G1 Wil



23823)
Variants: "Hard time"
Started: 2013.4.21, Ended: 2013.4.28
Participants: zoltar (S), Aristos (N)
Winner: zoltar

1) Aristos: Homeworld G3 B2 Y3

2) zoltar: Homeworld B1 R2 G3
	Aristos: Aristos Empire launches first interstellar ship. Cost of building the ship so expensive, leads to riots among lower classes. Aristos Empire leaders reduce population by 1/3 to prevent revolution. New sources of serfs will have to be found. Luckily, this new "spaceship" offers a solution to the problems it has created.

3) Aristos: Build Y1 Aristos
	zoltar: The Zoltarian Empire has established that the Aristos Empire is primitive and dangerous, and prone to self-destruction. Therefore, they will be enslaved for their own protection, or will be annihilated while being pacified for the protection of surrounding peaceful star systems. A fleet will be dispatched immediately.

4) zoltar: Build G1 Zoltar

5) Aristos: Discover Y1 Aristos Y1 Blossom

6) zoltar: Trade G1 Y1 Zoltar
	Aristos: First interstellar jump a success!

7) Aristos: Discover Y1 Blossom G3 Spark

8) zoltar: Build G1 Zoltar

9) Aristos: Build Y1 Spark

10) zoltar: Build Y2 Zoltar

11) Aristos: Build Y2 Aristos

12) zoltar: Move Y1 Zoltar Spark
	Aristos: Interstellar fleet sending home material resources allows for construction of modestly larger models, closer to the design of the original prototype. Aristian engineers have begun calling for new ship designs they claim will have capabilities "substantially of interest to the Empire."

13) Aristos: Discover Y1 Spark G2 Flash

14) zoltar: Discover G1 Zoltar Y3 Mellowyellow

15) Aristos: Trade Y2 G2 Aristos
	Aristos: Fleet Captain Zandos reports sighting a Zoltarian craft. Giving it a wide berth until we can analyze its military potential. Appears to be purely civilian currently. 

16) zoltar: Build G1 Zoltar

17) Aristos: Sacrifice G2 Aristos
Build Y2 Flash
Build Y2 Spark

18) zoltar: Build Y3 Zoltar

19) Aristos: Discover Y2 Flash B1 Blink

20) zoltar: Discover Y3 Zoltar B3 Bluedanube

21) Aristos: Discover Y1 Spark B2 Glimmer

22) zoltar: Sacrifice G1 Mellowyellow
Build Y3 Zoltar

23) Aristos: Trade Y1 R1 Glimmer

24) zoltar: Trade Y3 R3 Zoltar
	Aristos: B or G. Not much of a difference when typing. Major difference in board position. DOH.
	zoltar: Yep!

25) Aristos: Sacrifice R1 Glimmer
Attack Y1 Spark

26) zoltar: Move R3 Zoltar Spark

27) Aristos: Trade Y2 R2 Blink

28) zoltar: Attack Y2 Spark
	Aristos: First blood!
	zoltar: Well, that wasn't very nice!

	Aristos: Yeah, I know... I'm constantly on guard against it. Just missed that one.
	Aristos: Well played. I can't see any way out of the convergence of your large ships. 
	zoltar: Yeah, it's a slow death from this point on. Still can't believe I missed that obvious 'checkmate' in two moves. I'm rusty and haven't really played in over a year, but at least I was able to swindle you in the opening to get the big ships. I was worried you'd get a lock on the yellow from the start so was aggressively trying to stop that. gg


23819)
Started: 2013.4.22, Ended: 2013.4.23
Participants: wil (S), pgadey (N)
Winner: wil



23818)
Variants: "Unrated"
Started: 2013.4.23, Ended: 2013.6.8
Participants: zoltar (S), OnePageWars (W), Leonard_Daniels (N), wil (E)
Winner: zoltar

1) Leonard_Daniels: Homeworld Y1 B2 G3

2) wil: Homeworld R3 B1 G3
	Leonard_Daniels: Good luck everyone.

3) zoltar: Homeworld B3 R2 G3

4) OnePageWars: Homeworld G3 B2 Y3
	zoltar: Heghlu'meH QaQ jajvam!
	Leonard_Daniels: It doesn't bode well that I've been outgeeked this early in the game.
	OnePageWars: what does "Heghlu'meH QaQ jajvam!" mean?
	OnePageWars: zoltar, will you enter into alliance with me? I wish to avoid early confronataion.

5) Leonard_Daniels: Build G1 Leonard_daniels
	wil: An alliance???  LD...should if I sacrifice to take out OPWs drone star you'll have a direct line into his world...  

Has this newbie got protocol correct?
	wil: Should only three player games be played to eliminate this issue?
	OnePageWars: The peaceful planet of Ailaria stands by it's offer. We await you response.
	OnePageWars: (OOC: I just now named my planet, if you didn't catch it)
	OnePageWars: (OOC: http://rinkworks.com/namegen )
	zoltar: Right now, so far, I consider myself to be at peace with everyone. If one player gets too strong I can help out, but for now, Zoltar plans to peacefully develop the Zoltarian Empire.

And "Heghlu'meH QaQ jajvam!" means "Today is a good day to die" in Klingon. Has not your civilization developed 'Google', yet you have mastered interstellar flight? Intriguing.
	zoltar: Right now, so far, I consider myself to be at peace with everyone. If one player gets too strong I can help out, but for now, Zoltar plans to peacefully develop the Zoltarian Empire.

And "Heghlu'meH QaQ jajvam!" means "Today is a good day to die" in Klingon. Has not your civilization developed 'Google', yet you have mastered interstellar flight? Intriguing.
	zoltar: Ah, now I see: OnePageWarse, you and I both have gateways to the small star systems. Yes, I don't plan on attacking my closer neighbor right away, if that's what you mean, though I don't want to gang up on anyone either. In the 4-player game (at least) 2 players must share the same size double star and so are closer to each other. It has not been a problem in previous 4-player games, because of the extra pyramids in the bank to choose from in the four-player game.
	wil: Nice zoltar chastising our computer translation ability whilst double posting....
	OnePageWars: The proud Ailarians will not stoop to gleaning information from an invasive Google. We shall continue to prosper as our ancestors have before us.
	OnePageWars: Honorable Zoltarians.
Our culture highly values such objective views of things.
Sincerely, The Council of Foreign Relations.
	zoltar: Nice Zoltar did not double post: Zoltar'z tranzmizzion was bifurcated by a wormhole and echoed twice by server.
	Leonard_Daniels: Like Zoltar, I intend to consider myself at peace, and not gang up on anyone.  I'm new to the game, so I would probably be a liability anyway.

6) wil: Build G1 Wil

7) zoltar: Build G1 Zoltar
	wil: Shouldn't the program actually start with everyone having one large ship and one small ship of the same color???  I mean what else are you gonna do?  Trade your ship in for another color first turn?


8) OnePageWars: Build Y1 Onepagewars

9) Leonard_Daniels: Trade G1 B1 Leonard_daniels

10) wil: Build G1 Wil

11) zoltar: Trade G1 Y1 Zoltar

12) OnePageWars: Build Y1 Onepagewars

13) Leonard_Daniels: Build G1 Leonard_daniels
	OnePageWars: Ailaria contines it's production of mobile ships.
	OnePageWars: A strange transmission has been intercepted by an Ailarian: http://www.twitch.tv/riotgames

Ailarian intelligence is working on decoding the significance of this broadcast. In keeping with our belief in freedom of information, we will keep you updated on the decoding process.

14) wil: Trade G1 Y1 Wil
	Leonard_Daniels: Leonardian scientists detect signals emanating from foreign systems.  They prepare craft for first contact.
	OnePageWars: Their are two schools of thought developing within the Ailarian people. Some think that there is some code hidden withing the broadcast. Others think it is simply a sports broadcast, or something comparable. This dissent remains to be resolved.

15) zoltar: Build Y2 Zoltar
	wil: the eastern lemurians have discovered propulsion...

16) OnePageWars: Trade Y1 R1 Onepagewars
	OnePageWars: The Ailarians, due to a strong belief in self defense have crowdfunded the overhaul of a transport ship into a gunship.

17) Leonard_Daniels: Trade G1 R1 Leonard_daniels
	Leonard_Daniels: The Leonardian fleet suddenly looks a little defenceless.

18) wil: Trade G1 R1 Wil

19) zoltar: Trade Y1 R1 Zoltar
	wil: um..er...so much for all that peaceful talk...
	zoltar: What a bunch of war mongers. Now you've forced me to get a gun too, when I was ready to go blue!

20) OnePageWars: Trade Y1 B1 Onepagewars
	OnePageWars: Due to the recent articles in major news outlets written by prominent Ailarian statisticians public opinion on the strange broadcast has experienced a significant shift.

Popular opinion now holds that the broadcast is in fact a sports game. The nature of said game is still under debate, but those who insist it contains a secret message are dwindling by the minute.
	OnePageWars: Despite the recent hype regarding the transmission, the Ailarian Council of Foreign Relations is currently focusing on a more pressing issue.

Rumors have been circulating of a supposed surprise attack by the Ailarian troops. The council is working on a plan to dispel such superfluous rumors.

21) Leonard_Daniels: Build G1 Leonard_daniels

22) wil: Build G1 Wil

23) zoltar: Build G1 Zoltar

24) OnePageWars: Build B1 Onepagewars

25) Leonard_Daniels: Trade G1 Y1 Leonard_daniels
	OnePageWars: (OOC: It's awfully quiet around here. Isn't anyone else going to get into the role playing aspect of this? It's quite enjoyable.)

26) wil: Trade G1 B1 Wil

27) zoltar: Build Y1 Zoltar
	wil: The east coast has now accumulated acess to resources of all varieties....as he looks furtively through space and future possibilities.


28) OnePageWars: Trade B1 G1 Onepagewars

29) Leonard_Daniels: Build G1 Leonard_daniels

30) wil: Build G1 Wil

31) zoltar: Trade G1 B1 Zoltar
	wil: wondering how exactly this coast and that got a step behind the hordes of the poles....

32) OnePageWars: Build B2 Onepagewars
	Leonard_Daniels: Looks about equal to me - everybody has four small ships plus their original ship, apart from West, who have a turn in hand anyway.  What makes you say you're behind?
	zoltar: I'd say North has the lead, simply from having the factory setup. East I'd say is next. South and West share the same-sized outlet to the outside, and our both having the fortress setup with only 4 smalls in the bank makes it difficult for us to expand, giving us by far the worse positions.
	zoltar: I mean to say North probably has the lead from the banker setup, and with the medium pieces coming out next, soon North can sit on some large stars and then cash them in.

33) Leonard_Daniels: Discover B1 Leonard_daniels G3 Heworth
	OnePageWars: What's around the river bend?

(OOC: Quoted from Disney's Pocahontas.)

34) wil: Build B2 Wil

35) zoltar: Discover B1 Zoltar G1 Greenpea

36) OnePageWars: Discover B1 Onepagewars G1 Kolorvar
	zoltar: Zoltar considered the destruction of the Y2 drone to propel the b1 scout on a suicide mission into the Ailarian Homeworld where it would supernova the blue twin star; but the Zoltarian Senate overruled the action and instead legislated that establishing a peaceful outpost on a key moon would be more in line with the goals of the Zoltarian space exploration program.
	wil: hmmm in comparision to previous comments....my only comment can be.....er...yeah right.
	zoltar: The Zoltarian fllet is also now in position to destroy have of the Wil homeworld with a similar Y2 sacrifice. In a 2-Empire galaxy, that would be an obvious tactical ploy. But in a 4-Empire galaxy, and this early, the Zoltarian ruling counsel deems it unwise to weaken oneself so early in the game just to also weaken one of three other empires more. Such tactics appear to be poor long-term strategy. 
	wil: So I see....the peace loving Zoltarians as described earlier in this discussion are only peace loving until the time comes where they can clearly dominate...and then they will gladly take up the mantle of conquereror....

37) Leonard_Daniels: Build B2 Heworth
	OnePageWars: The fertile planet of Kolorvar has been discovered by an Ailarian trade vessel. It appears to be uninhabited, but time will tell.
	Leonard_Daniels: [One of my messages from earlier appears to have been deleted - was it because I made reference to specific moves that a specific player could make?  If so, who deleted my message?]

38) wil: Discover B2 Wil G2 Fortcourage
	zoltar: Zoltarians love peace. Zoltarians will abide by the will of the gods, who have stated in the prophecies that the Zoltarians have been chosen by the gods to rule the universe. The Zoltarians only follow the will of the gods, nothing more, nothing less.
	zoltar: The Zoltarians know of no method that anyone can delete any messages, even one's own. The answer is that no mortal deleted your message, that it was what is known as a 'computer glitch' or perhaps it is the will of the gods, whose methods are beyond the understandings of all mortals.

39) zoltar: Build B3 Greenpea
	wil: F troop is establishing a trading post.

40) OnePageWars: Build B3 Kolorvar
	OnePageWars: Upon further inspection it is discovered that there are heretofore unknown substances existing on Kolorvar which can aid in ship design. A state of the art freighter is constructed by Ailarian engineers.

41) Leonard_Daniels: Trade B1 Y1 Heworth

42) wil: Build Y2 Wil

43) zoltar: Trade B3 Y3 Greenpea
	Leonard_Daniels: Leonardian settlers have installed a stargate in the Heworth system, in an attempt to attract interstellar trade.

44) OnePageWars: Trade B3 Y3 Kolorvar

45) Leonard_Daniels: Discover G1 Leonard_daniels Y3 Clifton
	OnePageWars: The freighter receives an overhaul with most of the cargo hold being occupied by thrusters.

46) wil: Build G2 Wil

47) zoltar: Build G2 Zoltar
	Leonard_Daniels: Leonardian explorers have discovered a new star system rich in fuel deposits.  They get to work on finding a way to exploit it.

48) zoltar: Build Y2 Greenpea
	wil: meanwhile a civilization that has never seen so many ships and so many stars so close is absolutely clueless about what to do....so will make eggplant parmesan, spaghetti squash and some sourdough garlic bread...

49) Leonard_Daniels: Build Y2 Heworth

50) wil: Discover R1 Wil G2 Dryden

51) zoltar: Move Y3 Greenpea Onepagewars

52) Leonard_Daniels: Build G2 Leonard_daniels

53) wil: Discover G2 Wil R2 Bedrock
	wil: are these now abndonned ships and stars ready to be utilized by any occupying force walking in without resistance?  I don't know what occurs here...could someone actually own two homeworlds now??
	wil: how was it it said my time had expired?  

54) zoltar: Sacrifice R1 Zoltar
Attack R1W Onepagewars

55) Leonard_Daniels: Sacrifice G3 Leonard_daniels
Build Y2 Heworth
Build Y3 Leonard_daniels
Build G3 Leonard_daniels
	Leonard_Daniels: I guess so.  Certainly shakes up the balance of power.  In South's favour, though.

56) wil: Sacrifice G3 Wil
Build G3 Wil
Build B1 Fortcourage
Build B3 Fortcourage

57) zoltar: Move B1 Greenpea Fortcourage
Catastrophe Fortcourage B

58) Leonard_Daniels: Sacrifice Y2 Heworth
Move Y3 Leonard_daniels Heworth
Move Y3 Heworth Kolorvar

59) wil: Discover B1 Wil G2 Fortcourage

60) zoltar: Attack Y3W Onepagewars

61) Leonard_Daniels: Build R1 Leonard_daniels

62) wil: Sacrifice G3 Wil
Build G3 Wil
Build B1 Fortcourage
Build R1 Dryden

63) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Greenpea
Build R2 Onepagewars

64) Leonard_Daniels: Sacrifice Y2 Heworth
Move R1 Leonard_daniels Heworth
Move R1 Heworth Kolorvar

65) wil: Move Y1 Wil Fortcourage
	zoltar: Zoltarian xenoanthropologists salvage an ancient alien vessel.

66) zoltar: Sacrifice Y2 Greenpea
Move Y1 Zoltar Kolorvar
Move Y3 Onepagewars Kolorvar
Catastrophe Kolorvar Y
	wil: the wilians, wellian behindian in everythinian, creates a factory for measly little ships as the others rumage through the refuge of one page
	zoltar: You mean Wilful Willians build weapons of mass destruction while making insinuations about peaceful Zoltarian archeological expeditions? 

67) Leonard_Daniels: Sacrifice G3 Leonard_daniels
Build G3 Leonard_daniels
Build R2 Kolorvar
Build Y1 Heworth
	wil: me thinks thou protesteth too much.... but alas, have I read it wrong but with my oposing hemispheres demise has that alone caused me  to lose?
	zoltar: Lose? You may win, if the other two powers damage each other fatally while you slowly strengthen your position.

68) wil: Discover B1 Fortcourage R3 Whynot
	Leonard_Daniels: Leonardian strategists predict a wave of Zoltarian warships sweeping across the galaxy, destroying all in their path.  The Leonardian salvage missions are stepped up a notch in the meantime.

69) zoltar: Move Y3 Onepagewars Kolorvar
	wil: willians continue to flounder not being prepared to purchase the larger model ships when available finding difficulty finding resources...

70) Leonard_Daniels: Attack B1W Kolorvar

71) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 Fortcourage
Build B1 Fortcourage
	zoltar: The Zoltarian council determined that the alien OnePageWars tech was too dangerous for anyone to use, so we have purged it from the entire galaxy.
	Leonard_Daniels: ...at the cost of the lives of the several hundred Leonardian citizens who made up the crew of the starship destroyed by the Zoltarian weapon of mass destruction.  The Leonardian homeworld enters a period of mourning, and its leaders vow to never forget this atrocity.

72) zoltar: Sacrifice R2 Onepagewars
Attack B1N Kolorvar
Attack R2N Kolorvar

73) Leonard_Daniels: Build R2 Leonard_daniels

74) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 Wil
Build Y3 Wil

75) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Zoltar
Build Y3 Greenpea

76) Leonard_Daniels: Move R2 Leonard_daniels Heworth

77) wil: Move Y2 Wil Dryden

78) zoltar: Attack R1N Kolorvar

79) Leonard_Daniels: Sacrifice G3 Leonard_daniels
Build G3 Leonard_daniels
Build R2 Leonard_daniels
Build R3 Heworth
	Leonard_Daniels: As predicted, the Zoltarian battle fleet is sweeping through the galaxy, destroying all in its path.  The Leonardian government declares a state of emergency, while religious leaders claim that the apocalypse is nigh.

80) wil: Sacrifice Y2 Wil
Discover B1 Fortcourage R3 Wtf
Discover R1 Dryden B3 Ohwell

81) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R3 Onepagewars
Build Y2 Kolorvar

82) Leonard_Daniels: Move Y1 Heworth Kolorvar

83) wil: Sacrifice Y1 Fortcourage
Move G2 Bedrock Wtf

84) zoltar: Sacrifice Y2 Greenpea
Move Y3 Kolorvar Wtf
Move R1 Onepagewars Greenpea

85) Leonard_Daniels: Trade R2 B2 Leonard_daniels

86) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 Fortcourage
Build R2 Dryden

87) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build B3 Kolorvar
Build R2 Greenpea

88) Leonard_Daniels: Sacrifice G3 Leonard_daniels
Build G3 Leonard_daniels
Build Y1 Kolorvar
Build Y2 Heworth

89) wil: Sacrifice Y2 Dryden
Move G2 Wtf Dryden
Move B1 Wtf Leonard_daniels


90) zoltar: Sacrifice Y2 Zoltar
Move B1 Kolorvar Wtf
Move B1 Wtf Leonard_daniels
Catastrophe Leonard_daniels B

91) Leonard_Daniels: Sacrifice Y2 Heworth
Move G3 Leonard_daniels Zoltar
Move G2 Leonard_daniels Zoltar
Catastrophe Zoltar G

92) zoltar: Sacrifice Y2 Kolorvar
Move B3 Kolorvar Zoltar
Move Y3 Greenpea Heworth

93) wil: Build G2 Dryden

94) zoltar: Sacrifice R2 Greenpea
Attack R3N Heworth
Attack G1W Onepagewars

95) wil: Sacrifice Y2 Fortcourage
Move G2 Dryden Leonard_daniels
Move R1 Dryden Greenpea

96) zoltar: Move R3 Heworth Leonard_daniels

97) wil: Move G2 Leonard_daniels Clifton

98) zoltar: Attack B2W Onepagewars

99) wil: Build R2 Dryden
	Leonard_Daniels: The major star of the Leonardian system, Leonard Alpha, is destroyed.  Billions are dead.  The few survivors board colony ships and flee the sector, abandoning their existing facilities and ships.  The Leonardian military have just enough time to launch a suicide attack against the Zoltarian shipyards.  Despite their bitterness against the residents of the Wil system for their betrayal, the Leonardian strategists recognise that the sector will be safer in their hands than in the hands of the bloodthirsty Zoltarian horde.
	Leonard_Daniels: [Is there any way to continue to watch this match after my resignation?  I should probably have asked before resigning, but there you go.]

100) zoltar: Sacrifice B2 Onepagewars
Trade B3 G3 Zoltar
Trade Y3 G3 Wtf
	Leonard_Daniels: [nvm, turns out this is still listed in My SDG.]

101) wil: Sacrifice G3 Wil
Build G2 Clifton
Build G3 Wil
Build Y2 Wil

102) zoltar: Sacrifice R2 Kolorvar
Attack R2N Heworth
Attack B2N Heworth
	zoltar: Having one of your binary stars destroyed isn't the end of the game. In a multi-player game especially, you always have a chance. 


103) wil: Move Y2 Wil Fortcourage

104) zoltar: Sacrifice G3 Wtf
Build G3 Zoltar
Build R2 Kolorvar
Build R3 Heworth

105) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 Wil
Build Y2 Fortcourage

106) zoltar: Sacrifice R2 Heworth
Attack Y1N Heworth
Attack Y1N Kolorvar

107) wil: Sacrifice Y2 Wil
Discover Y2 Fortcourage B1 B1
Discover G2 Clifton B1 B2

108) zoltar: Sacrifice Y3 Zoltar
Move G3 Zoltar B1
Move Y3 Heworth B2
Move Y1 Kolorvar Zoltar

109) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 Fortcourage
Build B2 Whynot

110) zoltar: Sacrifice R2 Kolorvar
Attack Y2E B1
Attack G2E B2

111) wil: Attack R1E Greenpea

112) zoltar: Sacrifice R3 Onepagewars
Attack Y1N Kolorvar
Attack R1E Greenpea
Attack R1N Leonard_daniels
	wil: love how those peaceful zoltarians speak with forked tongue, takeover and capitalize on others invesstments and star system buildig rather than build their own....nothing but vulture capitalists and parasites....

	wil: how did you take green pea back, whenI had both?

	zoltar: Yes, that doesn't make sense. Looking back, there was some sort of glitch, I think. The game log below says:

East's R1 ship was overtaken by East. 

But it should have said "South's R1 ship". I don't understand it. When I looked at the game, I still saw a R1 of mine in the system. Or maybe my R1 ship has acquired a new secret tech and not reported it. Oh well.
	wil: Yeah,....i was just completely overpowered....aint like those two little guyss would have made much difference....just prolonged the agony
	zoltar: If you'd seen the glitch, I'd have passed so you could redo your move. But yeah, it was prolonging the inevitable. I would have sent a non-red 2-pip ship to that star and then taken them both by sacking an R2 or R3 somewhere else -- as long as I don't let you start building red or blue at small stars, I'm safe and have a pretty easy victory. I made some sacrifices just to make my homeworld maximally safe and minimize counterplay at that point. Leonard could have kept playing, though, and had a chance if I was weakened taking you out. The 3 and 4-p games can be interesting like that: if you're weak you can sit back and try to fortify your position and let the others fight.
	wil: Yes I thiink i have an interest in 3 player games, not much in four...I don't like the siamese homeworld issue
	zoltar: Right. I haven't played a multi-player homeworlds game in years, and I'd forgotten that because there are only 3 distinct star formations, a four-player game forces a conflict between two players. 3 is better, then.


23832)
Started: 2013.4.23, Ended: 2013.7.15
Participants: pgadey (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) pgadey: Homeworld B3 G2 Y3
	wil: ah ya got it started cool...

3) wil: Build G1 Wil

4) pgadey: Build Y1 Pgadey

5) wil: Build G1 Wil

6) pgadey: Trade Y1 G1 Pgadey

7) wil: Trade G1 Y1 Wil

8) pgadey: Discover G1 Pgadey Y1 Avocado

9) wil: Trade G1 B1 Wil

10) pgadey: Build Y1 Pgadey

11) wil: Build B1 Wil

12) pgadey: Trade Y1 R1 Pgadey

13) wil: Build G1 Wil

14) pgadey: Build R1 Pgadey

15) wil: Trade B1 R1 Wil

16) pgadey: Trade R1 G1 Pgadey

17) wil: Build G2 Wil

18) pgadey: Discover G1 Avocado B3 Pomegranate

19) wil: Discover G2 Wil Y3 Fortcourage

20) pgadey: Build Y1 Pgadey

21) wil: Sacrifice G3 Wil
Build G2 Fortcourage
Build G3 Fortcourage
Build G3 Wil

22) pgadey: Discover G1 Pgadey Y1 Banana

23) wil: Discover G2 Fortcourage B1 Bedrock

24) pgadey: Sacrifice Y3 Pgadey
Move G1 Banana Pomegranate
Move G1 Pomegranate Wil
Move G1 Pomegranate Wil
Catastrophe Wil G

25) wil: Sacrifice Y1 Wil
Move G2 Bedrock Pgadey
	wil: ballsy attack...now do I just counter....or amass an army?

I guess counter and then amass if I fail...

26) pgadey: Build Y1 Pgadey

27) wil: Trade G2 R2 Pgadey

28) pgadey: Trade Y1 B1 Pgadey

29) wil: Attack B1 Pgadey

30) pgadey: Build R1 Pgadey
	wil: you lose the game by not having any of your own ships in your homeworld, or by losing the stars of your homeworld.  I will continue taking ships in this game....  (unless you have something up your sleeve I don't see!)  I would be happy to answer any questions on strategy (even though I am still learning!)  My method has been to lose... I think the more you lose the more you learn what works, what doesn't, and what attacks look like as they start to come at ya!


31) wil: Attack Y1 Pgadey
	pgadey: I think you are right, I have essentially lost. This has been an interesting game though. 

I think that this is the kind of game that takes  a lot of losses to understand.

32) pgadey: Attack B1 Pgadey
	wil: yes between catastrophes, attacks and sacrifices a lot of things can happen...this is a great thinking game...total strategy and skill and a lot can happen....keep playing.   (I look at the top player, I know he plays live games offline and has played over 200 games online and only lost 35)  So plan to lose a dozen games and I guarantee you will win a few prior to making that dozen losses!
	wil: Right now i just took over your yellow...so you can't move, now to delay you could change the color of one red to green  (otherwise I just build a green and cause a catastrophe)...but the end is near ..  just today I asked a guy if he was willing let me play rather than resign  so I could see what he was going to do with the advantage he has over me...I know he'll beat me in less than ten moves...but I wanna see how he'll do it to learn.
	wil: I just started playing and am now playing 8 games, monitoring the top games in the ladder challenge...to see what the good guys are doing...

33) wil: Build R2 Pgadey
Catastrophe Pgadey R
	pgadey: Wow! You are really into this one. I dig it! I would happily play some more rounds against you, to learn a bit more about this stuff. I have all the physical stuff to play at home, but never seem to get around to it.

How did you find out about this one?
	wil: It is tough to find folks willing to play...anyone into Chess or Shogi is more likely.... and if you play online it is to your advantage to set up the starfield at home and you can see it better as the representation here leaves a lot to be desired.

I just found it to be quite the intrigueing game, and with folks only moving every day or two, sometimes you can catch them online and get two or three moves a day....the games are spread out....  seeing all vaieties of attacks come at you though teaches you a lot  (that being said, I often make the same mistakes repeatedly...thinking one day I'll see them coming)

Challenge again, I'd b glad to play.

34) pgadey: Build B2 Pgadey
	wil: oops!!   game is still on..i didn't notice I didn't capture your blue before I catastrophed red...you get  reprieve and I have to rebuild everything to get back in again!!
	pgadey: Hehehe -- I see that trying to stick it out works sometimes. I was going to build a red then catastrophe to "go out with a bang" but decided to build a blue, pray you wouldn't capture it, then build a red and catastrophe. Turns out -- Everything worked out in my favour.

Round two!

35) wil: Build G1 Fortcourage
	wil: this is the amazing nature of the game...one can be dominating and a stupid mistake clears the board and makes a whole new game....now to capitalize on my error whilst I attempt to keep from making another @$@%&*##

36) pgadey: Trade B2 R2 Pgadey

37) wil: Move G3 Fortcourage Wil

38) pgadey: Attack Y1 Pgadey

39) wil: Build G1 Wil

40) pgadey: Build Y1 Pgadey

41) wil: Build B2 Wil

42) pgadey: Trade Y1 G1 Pgadey

43) wil: Trade B2 Y2 Wil

44) pgadey: Discover B1 Pgadey Y1 Asparagus
	wil: where is you ain't?
	pgadey: I completely fell off the internet for a while. Sorry about the timing. 

45) wil: Discover B1 Wil G3 G3
	wil: hope  y didn't hurt yourself

46) pgadey: Build G2 Pgadey

47) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Wil
Build Y1 Wil

48) pgadey: Move G2 Pgadey Asparagus

49) wil: Discover G3 Wil Y3 Y3

50) pgadey: Build Y2 Pgadey

51) wil: Move Y2 Wil G3

52) pgadey: Sacrifice Y2 Pgadey
Move G2 Asparagus Fortcourage
Move B1 Asparagus Fortcourage
	wil: You done?

53) wil: Sacrifice R1 Wil
Attack G2 Fortcourage

54) pgadey: Discover G1 Pgadey Y1 Artichoke

55) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 G3
Build B2 G3

56) pgadey: Move G1 Artichoke Fortcourage
Catastrophe Fortcourage Green
	wil: 
	wil: celebrating still?
	wil: helllooooooooo

57) wil: Trade B2 R2 G3

58) pgadey: Discover B1 Fortcourage Y1 Papaya

59) wil: Sacrifice Y2 G3
Move G3 Y3 Papaya
Move G3 Papaya Pgadey

60) pgadey: Move B1 Papaya Pgadey

61) wil: Sacrifice R2 G3
Attack R2 Pgadey
Attack Y1 Pgadey

	pgadey: Next move you'll sacrifice your red ship and cause me to have no ships in my homeworld.  That was a good long game. Thanks for playing. Wanna try again?


	wil: I just set my record and another's for long games....it took him 55 moves to kick my butt (I kept running in circles), but yeah, when I moved in I thought I had my count right...but was afeared I was missing something.   Always up for another game....trying to learn this thing!   thx...


23847)
Started: 2013.4.24, Ended: 2013.4.30
Participants: ts52 (S), wil (N)
Winner: ts52

1) wil: Homeworld R2 B1 G3

2) ts52: Homeworld R1 B3 G3

3) wil: Build G1 Wil
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) wil: Trade G1 B1 Wil

6) ts52: Trade G1 Y1 Ts52

7) wil: Build G1 Wil

8) ts52: Build G1 Ts52

9) wil: Trade G1 R1 Wil

10) ts52: Discover G1 Ts52 B2 Gonzo

11) wil: Build G1 Wil

12) ts52: Build Y1 Ts52

13) wil: Build B1 Wil

14) ts52: Build Y1 Ts52

15) wil: Trade G3 Y3 Wil
	wil: yeah, major mistake at the beginning eh?


	wil: am I wrong or is it game over already...because I can't move or trade for fuel?

16) ts52: Move Y1 Ts52 Gonzo
	wil: oh, DOH... I was blinded....  now I can see....I lost a couple seps by trading early and letting you get ahead....behind but not out yet....
	ts52: it can get rough if you get locked out of one color, but it's recoverable

17) wil: Build Y2 Wil
	ts52: I don't usually start with red in my homeworld. But I've been experimenting lately.

18) ts52: Build Y2 Gonzo

19) wil: Discover Y2 Wil G3 Fortcourage

20) ts52: Trade Y2 B2 Gonzo

21) wil: Move B1 Wil Fortcourage

22) ts52: Discover B2 Gonzo G3 Oscar

23) wil: Discover B1 Fortcourage G2 Tortuga

24) ts52: Build Y2 Gonzo

25) wil: Build G1 Wil

26) ts52: Build G2 Ts52

27) wil: Build G2 Wil

28) ts52: Sacrifice Y2 Gonzo
Move G1 Gonzo Oscar
Move G1 Oscar Wil
Catastrophe Wil Green

29) wil: Build Y2 Fortcourage
	wil: b y2 wil

30) ts52: Move G2 Ts52 Gonzo
	wil: I will eventually see these coming....I hope
	wil: I will eventually see these coming....I hope

31) wil: Build B2 Tortuga
	ts52: Yeah, the hardest ones to see coming, I find, are when someone moves two ships to cause the catastrophe.

32) ts52: Build B3 Oscar

33) wil: Sacrifice Y2 Fortcourage
Move B1 Tortuga Oscar
Move B2 Tortuga Oscar
Catastrophe Oscar B

34) ts52: Build Y2 Gonzo

35) wil: Trade R1 G1 Wil

36) ts52: Trade Y2 R2 Gonzo

37) wil: Build Y2 Fortcourage

38) ts52: Move R2 Gonzo Fortcourage

39) wil: Discover Y2 Fortcourage G2 Bedrock

40) ts52: Attack Y2 Fortcourage

41) wil: Build G1 Wil

42) ts52: Build R1 Fortcourage

43) wil: Discover G1 Wil Y3 Tortuga

44) ts52: Sacrifice G2 Gonzo
Build Y2 Fortcourage
Build Y3 Gonzo
	wil: there is that two move red catastrophe lurking...

45) wil: B B1 Wil

46) ts52: Build R1 Fortcourage

47) wil: D B1 Wil G3 Dryden

48) ts52: Move R2 Fortcourage Gonzo

49) wil: B B2 Dryden


50) ts52: Trade R2 G2 Gonzo

51) wil: B B2 Dryden

52) ts52: Move Y3 Gonzo Dryden

53) wil: Move B1 Wil Dryden
Catastrophe Dryden B

54) ts52: Build R2 Fortcourage

55) wil: Build G1 Wil

56) ts52: Build G2 Ts52

57) wil: Discover G1 Wil B3 Lastditch
	wil: just a matter of time eh?
	ts52: I think so, yeah.

58) ts52: Move R2 Fortcourage Bedrock
	wil: I was surprised those reds didn't come in a half dozen moves ago....I see them commies at the border again

59) wil: Move Y2 Bedrock Lastditch

60) ts52: Sacrifice G2 Ts52
Build R2 Fortcourage
Build R3 Bedrock
	ts52: Half-destroying your homeworld isn't the end, and sometimes it can be done to early
	wil: yeah...i understand it is best to be prepared with the second wave prior to sending in the first.

61) wil: Build G2 Wil
	wil: and I see i'll just get bullied into submission....

62) ts52: Sacrifice Y3 Dryden
Move R1 Fortcourage Wil
Move R1 Fortcourage Wil
Move R2 Fortcourage Wil
Catastrophe Wil Red
	ts52: that seems a bit harsh, but yeah, that's the general idea.

63) wil: Build Y3 Lastditch

64) ts52: Sacrifice Y1 Gonzo
Move R3 Bedrock Wil

65) wil: Build G3 Lastditch

66) ts52: Sacrifice R2 Bedrock
Attack Y3 Wil
Attack G2 Wil
	wil: hmmmm....still learning, know I am just getting trounced, but changing that ship to red would have slowed things again yeah?

	ts52: Thanks for the game. I'd be happy to play more, anytime. You can make the challenge 'unrated' too, I think. If you'd like.


23857)
Variants: "Hard time"
Started: 2013.4.25, Ended: 2013.6.20
Participants: TwoShort (S), dlwillson (N)
Winner: TwoShort

1) dlwillson: Homeworld B3 R1 G3

2) TwoShort: Homeworld B1 Y3 G3

3) dlwillson: B G1 Dlwillson

4) TwoShort: Build G1 Twoshort
	dlwillson: Small universe?
	TwoShort: I said I'd play Goldilocks next time we played :)

5) dlwillson: T G1 B1 Dlwillson

6) TwoShort: Trade G1 B1 Twoshort
	dlwillson: I should've remembered. :-)

7) dlwillson: B B2 Dlwillson

8) TwoShort: Build B2 Twoshort

9) dlwillson: Trade B2 Y2 Dlwillson

10) TwoShort: Discover B1 Twoshort G2 Grogar

11) dlwillson: B B2 Dlwillson

12) TwoShort: Build B2 Grogar

13) dlwillson: Trade B2 R2 Dlwillson

14) TwoShort: Trade B2 R2 Twoshort

15) dlwillson: Build B2 Dlwillson
	TwoShort: Are you still periodically organizing Homeworlds (and/or other pyramid game) tournaments at cons in Denver?  Or more relevantly, do you expect to be doing so at some point in the future?
	dlwillson: Depends. Why do you ask?

16) TwoShort: Trade B2 Y2 Grogar
	TwoShort: If I could compete in a Homeworlds tournament in Denver in the space of a day and evening (like the Saturday of a con), sometime in the near (or probably far) future, I would.

17) dlwillson: M B2 Dlwillson Grogar

18) TwoShort: Discover Y2 Grogar B3 Bluestar
	dlwillson: Let me chat with Tripp and see what I can come up  with.

19) dlwillson: T B2 R2 Grogar

20) TwoShort: Build G1 Twoshort

21) dlwillson: Attack B1 Grogar

22) TwoShort: Discover G1 Twoshort Y2 Yolonda

23) dlwillson: B B2 Grogar

24) TwoShort: Build R1 Twoshort

25) dlwillson: Build B2 Dlwillson
	dlwillson: The next Denver Gamers convention starts August 29th. If you and Tripp will be the organizers, I'll help. Like, I can put you in touch with Jarrod Abel, who coordinates board games.

26) TwoShort: Move R2 Twoshort Yolonda

27) dlwillson: Discover B2 Dlwillson G2 Forest

28) TwoShort: Discover R2 Yolonda B3 Bonanza

29) dlwillson: B B2 Forest

30) TwoShort: Build G1 Twoshort

31) dlwillson: Trade B2 G2 Grogar
	dlwillson: My son Evan would do artwork, like signs and posters.

32) TwoShort: Sacrifice G3 Twoshort
Build G1 Yolonda
Build G3 Yolonda
Build G3 Twoshort



23887)
Started: 2013.5.1, Ended: 2013.5.15
Participants: heavytanhat (S), rdb (N)
Winner: heavytanhat

1) rdb: Homeworld R1 G3 B3

2) heavytanhat: Homeworld R2 B3 G3

3) rdb: Build B1 Rdb

4) heavytanhat: Build G1 Heavytanhat

5) rdb: Trade B1 Y1 Rdb

6) heavytanhat: Trade G1 Y1 Heavytanhat

7) rdb: Discover Y1 Rdb R2 Star1

8) heavytanhat: Build G1 Heavytanhat

9) rdb: Build B1 Rdb

10) heavytanhat: Discover G1 Heavytanhat Y1 Heavystar

11) rdb: Discover Y1 Star1 G1 Star2

12) heavytanhat: Build Y2 Heavytanhat



23701)
Variants: "Hard time"
Started: 2013.5.1, Ended: 2013.5.9
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B3 Y1 G3 Dlwillson

2) wil: Homeworld R2 B1 G3

3) dlwillson: Build G1 Dlwillson

4) wil: Build G1 Wil

5) dlwillson: T G1 B1 Dlwillson

6) wil: Trade G1 B1 Wil

7) dlwillson: B B2 Dlwillson

8) wil: Build B2 Wil

	wil: hope everything is ok.....  I look forward to playing again, this is not the way for one to end...
	dlwillson: Oh, for... Dammit.
	wil: absof/nlutely agree.....  you just swamped and missed it?  Start another one whenever you have time.


23884)
Started: 2013.5.1, Ended: 2013.5.8
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) ts52: Homeworld B2 R3 G3

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52
	wil: I read somewhere where someone was trying to clean up this board...so the ships and stars aligned more like we would in physical play....any idea what ever happenned to that?  (I have zero code knowledge, but would dream of dragging pieces from bank to board on a tablet)
	ts52: I hadn't heard anything about that. Yeah, being able to drag and drop playing this on a tablet would be amazing.

5) wil: Trade G1 B1 Wil

6) ts52: Trade G1 Y1 Ts52

7) wil: Build G1 Wil

8) ts52: Build G1 Ts52

9) wil: Trade G1 Y1 Wil

10) ts52: Discover G1 Ts52 R1 Elmo

11) wil: Build G1 Wil

12) ts52: Move Y1 Ts52 Elmo

13) wil: Discover G1 Wil Y3 Fortcourage

14) ts52: Build G1 Ts52

15) wil: Build G2 Wil

16) ts52: Build G2 Ts52

17) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Fortcourage
Build G3 Wil

18) ts52: Trade G2 Y2 Ts52
	ts52: well played

19) wil: Trade G2 R2 Wil

20) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G2 Elmo
Build G3 Ts52

21) wil: Discover G1 Fortcourage Y2 Tortuga

22) ts52: Trade G2 B2 Ts52

23) wil: Sacrifice G3 Wil
Build G2 Tortuga
Build G3 Wil
Build R1 Wil

24) ts52: Move B2 Ts52 Elmo

25) wil: Discover G1 Tortuga Y3 Dryden

26) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Elmo
Build B2 Elmo

27) wil: Move B1 Wil Dryden

28) ts52: Trade B2 R2 Elmo

29) wil: Move R2 Wil Dryden

30) ts52: Discover R2 Elmo Y3 Bigbird

31) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Dryden
Build R3 Dryden

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Bigbird
Build Y1 Elmo

33) wil: Build Y2 Wil

34) ts52: Move B2 Elmo Bigbird

35) wil: Move R3 Dryden Elmo
	wil: choices...options.....I'm still learning the fallout/reprecussions of actions.

36) ts52: Move G2 Elmo Bigbird

37) wil: Sacrifice R2 Dryden
Attack Y1 Elmo
Attack Y1 Elmo

38) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Elmo
Build B3 Bigbird

39) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Dryden
Build B3 Dryden

40) ts52: Sacrifice Y2 Ts52
Move B2 Elmo Dryden
Move B1 Elmo Dryden
Catastrophe Dryden Blue

41) wil: Sacrifice G3 Fortcourage
Build G3 Dryden
Build Y2 Elmo
Build Y3 Wil

42) ts52: Move R3 Bigbird Tortuga

43) wil: Sacrifice Y2 Elmo
Discover G2 Tortuga B1 Fortcourage
Move G1 Dryden Fortcourage

44) ts52: Move R3 Tortuga Fortcourage

45) wil: Sacrifice Y2 Wil
Move G2 Fortcourage Ts52
Move G1 Fortcourage Ts52
Catastrophe Ts52 G

	wil: thx for the game...  the learning curve on this thing is awfully interesting....  ready for another when you are.

	ts52: D'oh. Should've seen that one coming. Well played. Always happy to play another.
	wil: You guys have been teaching me the pitfalls of having only one, even just two colors in your homeworld....yeah, I think you were blinded by your march forward blowing up stars with that red ship...funny thing is, i had two games were I was working toward the exact same thing....the other fellow just changed his homeworld to yellow on me...


23811)
Variants: "Hard time"
Started: 2013.5.1, Ended: 2013.5.15
Participants: wil (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	SilentTitan: Once more into the breach... dear friend


2) wil: Homeworld R3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) wil: Build G1 Wil

5) SilentTitan: Trade G1 Y1 Silenttitan

6) wil: Trade G1 Y1 Wil

7) SilentTitan: Build G1 Silenttitan

8) wil: Build G1 Wil

9) SilentTitan: Discover G1 Silenttitan Y3 Sol

10) wil: B Y1 Wil
	wil: When is someone going to make this drag and drop app for tablets?  
	SilentTitan: I don't know ... maybe you should do it? good practice on writing tablet apps

11) SilentTitan: Build Y2 Silenttitan
	wil: I know absolutely no code...but you are correct...if I would like to learn that would be one helluva way to start!  I could make an investment in my education just as you just did in transportation!

12) wil: Build Y2 Wil

13) SilentTitan: Discover Y1 Silenttitan B3 Soul
	SilentTitan: Coding easy to learn. 

14) wil: Discover Y2 Wil G2 Fortcourage

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Soul
Build Y3 Silenttitan
Build Y3 Silenttitan

16) wil: Discover G1 Wil G2 Tortuga

17) SilentTitan: Discover Y2 Silenttitan G3 Sole

18) wil: Move Y1 Wil Tortuga
	wil: helluva move cornering the rest of the fuel reserves in the universe....I sure hope I retain some of this abuse to inflict it on others someday.

19) SilentTitan: Sacrifice G1 Sol
Build Y3 Sole
	SilentTitan: well.... I do unto you as TooShort and dlwillson have done unto me.

20) wil: Build G1 Wil
	wil: 
	wil: I absolutely appreciate the lessons...

21) SilentTitan: Trade Y2 B2 Soul
	wil: investment paid off.....I am in soooo much trouble

22) wil: Build Y2 Wil

23) SilentTitan: Sacrifice B2 Soul
Trade Y2 B2 Sole
Trade Y3 G3 Silenttitan

24) wil: Trade Y1 B1 Wil

25) SilentTitan: Build B1 Sole

26) wil: Sacrifice G3 Wil
Build G1 Wil
Build G2 Tortuga
Build G3 Wil

27) SilentTitan: Trade B2 R2 Sole

28) wil: Move B1 Wil Fortcourage

29) SilentTitan: Sacrifice Y3 Sole
Move G3 Silenttitan Sole
Move G3 Sole Tortuga
Move G3 Tortuga Wil
Catastrophe Wil Green

30) wil: Build B2 Fortcourage

31) SilentTitan: Trade Y3 G3 Silenttitan

32) wil: Discover G1 Tortuga Y3 Dryden

33) SilentTitan: Build G1 Silenttitan

34) wil: Build G1 Dryden

35) SilentTitan: Trade G1 Y1 Silenttitan

36) wil: Build G1 Dryden

37) SilentTitan: Sacrifice Y1 Soul
Move R2 Sole Fortcourage

38) wil: Sacrifice Y2 Fortcourage
Move G1 Dryden Silenttitan
Move G1 Dryden Silenttitan

39) SilentTitan: Trade G3 Y3 Silenttitan

40) wil: Sacrifice B2 Fortcourage
Trade G1 Y1 Silenttitan
Trade G2 Y2 Tortuga

41) SilentTitan: Trade Y3 R3 Silenttitan

42) wil: Build Y2 Tortuga

43) SilentTitan: Sacrifice R2 Fortcourage
Attack Y1 Silenttitan S
Attack G1 Silenttitan S
	wil: dang I should have grown g3s when I had the opportunity....I anticipated your switch...but not what occurred in the bank.... greed....dang overanxious greed...

44) wil: Move Y2 Tortuga Sole

45) SilentTitan: Move Y1 Silenttitan Sole

46) wil: B Y3 Tortuga

47) SilentTitan: Move Y1 Sole Tortuga
Catastrophe Tortuga Yellow

48) wil: B B2 Fortcourage

49) SilentTitan: Trade B1 Y1 Sole

50) wil: Trade Y2 G2 Wil
	wil: How did i miss that where is the instant replay?

51) SilentTitan: Build Y1 Silenttitan

52) wil: Trade B2 Y2 Fortcourage

53) SilentTitan: Discover Y1 Silenttitan Y3 Sol

54) wil: Build Y2 Fortcourage

55) SilentTitan: Build Y3 Silenttitan

56) wil: Trade Y2 G2 Fortcourage

57) SilentTitan: Move R3 Silenttitan Sole
	wil: these reboots are interesting..... it is like a whole new game has developed as the star systems get rearranged    I'd like to discuss openings and options and play....would you be interested?  If interested, would the best place to be on the forum, or maybe a google doc?
	SilentTitan: I would be interested in discussing all that. I don't know where the best place to do that would be.  I have access to several teamspeak servers and/or can give you a cell number if you'd like to call me.  I don't know where your comfort zone lies in contacting someone.  

58) wil: Build G1 Dryden

59) SilentTitan: Attack Y2 Sole South
	wil: my cell is 410/365-6699 but I think I need to see things to figure them out....and would lose a lot in conversation...

60) wil: Build G3 Wil

61) SilentTitan: Move R3 Sole Fortcourage
	wil: was there any other way out of mate in two moves?
	SilentTitan: take back this move and build g1 dryden
next turn build g3 wil 

62) wil: Sacrifice Y2 Fortcourage
Discover G2 Fortcourage B3 Carson
Discover B1 Fortcourage G3 Bedrock
	wil: ok, but I thought you'd sac your homeworld Y3 to move r3 into mine??
	SilentTitan: ah... I am really glad you saw that ... however the problem with doing that was that you would be able to sac the y2 in fortcourage and send back both the g2 and b2 or better yet send the g2 to wil and the y2 in sole into silenttitan ... now it becomes a race to who can capture faster. I might have won that one... but send both g2 and b1 in fortcourage back to wil and I have a big issue trying to caputre everyone. additionally you start trading ships to red and my remaining battleship is threatened.  
	SilentTitan: meanwhile my homeworld is left completely undefended ... which is ok... if I know I can win in a turn or two ... but three or four turns out .. that's not turned out well for me in the past

	SilentTitan: hummm... I'm not doing the best job of explaining this .... I sack y3 and move r3 to wil. then you sack y2 in fortcourage and send g2, b1 back to wil.  Now I attack and grab one of the 2-pip. you attack and take it back. what then attack again and take it back, convention says I cannot do that. otherwise the game becomes a draw at that point. so I instead sac the g1 in silenttitan and build a r1 .. that doesn't help ..you just use the b1 to change one of the 2-pips to red and catastophe red. hurts you .. but hurts me more ... I have no 2-pip ships. 

63) SilentTitan: Sacrifice Y1 Sole
Move R3 Fortcourage Carson
	SilentTitan: so instead I'm going to go the slow route and cost you as many ships as I can until you build the G3 and/or some red for defense. 

64) wil: Sacrifice G2 Carson
Build B1 Bedrock
Build B2 Bedrock
	wil: these are the kind of alternatives that would be handy...  a book would require some kind of overlay to watch it happen...  quite interesting scenarios...thanx


65) SilentTitan: Sacrifice Y2 Sole
Discover R3 Carson Y2 Temp
Move R3 Temp Bedrock

66) wil: Sacrifice B2 Bedrock
Trade B1 Y1 Bedrock
Trade G1 B1 Dryden

67) SilentTitan: Attack Y1 Bedrock South

68) wil: Trade B1 G1 Bedrock

69) SilentTitan: Attack G1 Bedrock South

70) wil: Build G2 Dryden

71) SilentTitan: Build Y2 Silenttitan
	wil: Sorry to drive you so crazy when I should resign, I am just seeing to what trouble one can put one through...how am I doing?

	SilentTitan: you are doing well.. One of the very main points of the game is... "The person who wins is the one who makes the fewest mistakes"  Therefore, it is always in ones best interest to hang in as long as possible you never know when the other guy will make a mistake. I told you I won into 2 place by using a trick in the last turn of the game and the other guy fell for it. 

72) wil: Discover G1 Dryden Y2 Fortcourage

73) SilentTitan: Discover Y1 Silenttitan G3 Tic

74) wil: Trade G2 Y2 Dryden

75) SilentTitan: Build G2 Silenttitan

76) wil:
Build G2 Fortcourage

77) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Bedrock Fortcourage
Move G1 Fortcourage Wil

78) wil: Trade G2 B2 Wil

79) SilentTitan: Sacrifice G2 Silenttitan
Build G2 Wil
Build G2 Wil
Catastrophe Wil Green

80) wil: Move G1 Fortcourage Wil

81) SilentTitan: Build Y2 Bedrock

	wil: ah, I see, I somehow didn't read the second one...makes sense....I had nowhere to turn then, capturing would have allowed you to move one in, which I saw, but didn't se this.  I love learning, now if I can only remember!
	wil: ah, I see, I somehow didn't read the second one...makes sense....I had nowhere to turn then, capturing would have allowed you to move one in, which I saw, but didn't se this.  I love learning, now if I can only remember!
	wil: can't build a three, and get it home, you sac y2 and swoop in, thx forthe lesson!
	SilentTitan: You do better with each game we play ... so obviously you are remembering parts of it... tying it all together is something I'm still working on.  This game is deceptively difficult... it seems straight forward but there are hiccups in the thinking at various points. Also notice this one went over 40 turns.  very seldom does that happen except where both players are committed to running it down to the end to see what happens.  Either way we were 20+ maybe even 30+ when you decided to see what would happen.  Anything over 20 means you are getting better at playing ... anything over 30 means you're a danger to everyone on the ladder. 
	wil: Danger, Danger Wil Robinson....   It is quite the game and I look forward to learning more and absolutely appreciate your assistance to date.


23888)
Variants: "Hard time"
Started: 2013.5.5, Ended: 2013.5.15
Participants: wil (S), Argel (N)
Winner: wil

1) Argel: Homeworld Y3 G3 R3 *

2) wil: Homeworld R3 B2 G3

3) Argel: Build R1 Argel
	wil: Howdy Angel, I'm fairly new to the game and trying to play a lot to learn....have you played much??
	wil: as discussed on the other game....unless you are testing some new idears...we could start over...in general two sizes in your binary homeworld star provides better protection (two systems to get from one homeworld to the other) also in your homeworld you'd like red because you want to be able to defend, green because you need it to grow, and blue because you need it to change colors...yellow is for moving, and is important...but can be aquired through growing and changing (as can red....but blue and green are required as far as I know, not in your star, but being present)  


4) wil: Build G1 Wil

5) Argel: Discover R1 Argel G2 Galata

6) wil: Build G1 Wil

	wil: Your are going to need trade capability in your homeworld...you'll need to eventually build to a blue star, get both transportation (yellow) and blue there and get it back to your homeworld....just my thoughts...
	wil: Argel, I've been on a rapid path of learning this game in the past few months.  I am open to playing more and discussing what we can learn from one another about its complexities.


23889)
Variants: "Unrated, Hard time"
Started: 2013.5.5, Ended: 2013.5.25
Participants: Argel (S), zoltar (N), wil (E)
Winner: zoltar

1) zoltar: Homeworld B2 R1 G3

2) wil: Homeworld R3 B1 G3

3) Argel: Homeworld R3 B3 R3 *

4) zoltar: Build G1 Zoltar
	zoltar: Angel, have you played before? You really don't want to have stars the same size, as it puts your homeworld directly next to mine in distance. Also, you need to have green to grow ships. You're only first move here would be to exchange your R3 for a G3. Perhaps you want to undo your move and try "H R3 B2 G3" which would be a much better stating move. 
	zoltar: Do you want to alter your starting position while you still can, or should I just make a move?

5) wil: Build G1 Wil

6) Argel: Trade R3 G3 Argel

7) zoltar: Trade G1 Y1 Zoltar

8) wil: Trade G1 Y1 Wil

9) Argel: Build G1 Argel

10) zoltar: Build Y1 Zoltar

11) wil: Build G1 Wil

12) Argel: Trade G1 Y1 Argel
	wil: I just now noticed it is aRgel not Angel...my bad...    I'd like to discuss openings and options and play....would you be interested?  If interested, would the best place to be on the forum, or maybe a google doc?

13) zoltar: Trade Y1 R1 Zoltar

14) wil: Trade G1 R1 Wil

15) Argel: Build G1 Argel

16) zoltar: Build G1 Zoltar

17) wil: Build G1 Wil

18) Argel: Trade G1 R1 Argel

19) zoltar: Trade G1 B1 Zoltar

20) wil: Trade G1 B1 Wil

21) wil: Build R2 Wil
	wil: first time in a three way playin it safe...
	zoltar: Weak moves aren't necessarily saver. You could have bought an R2 then flipped it to blue next move, and that would have made your homeworld much 'safer'. 
	wil: nice tip!  thx, I didn't see that.  Yes growng bigger pieces when you can, gotta keep that in mind.  (currently refraining from backing up so to cement the lesson)

	wil: nice tip!  thx, I didn't see that.  Yes growng bigger pieces when you can, gotta keep that in mind.  (currently refraining from backing up so to cement the lesson)


22) zoltar: Build R2 Zoltar
	wil: This zero/time is up feature when you've only been gone a couple of hours needs fixing....when someone is way behind and finally takes action, the next player is suddenly behind...

So what do we do now, play a two player game with lots of pieces?   You've got an easy shot waltzing in and aquiring a  g3 for  free...

23) wil: Discover R2 Wil G2 Wtf
	zoltar: Yeah, if it didn't have the 'hard time' option, then now we could choose to make Argel resign or terminate the game. up to you if you want to continue, but yeah, it gives me an advantage.

24) zoltar: Discover R1 Zoltar G3 Greenslime
	wil: I like losing...being new it is the best way for me to learn.  If you don't mind, I'd like to play it out and see how you take advantage of the advantage and how I can counter...

25) wil: Build R2 Wil

26) zoltar: Build R2 Zoltar

27) wil: Build R3 Wtf

28) zoltar: Build R3 Greenslime

29) wil: Sacrifice Y1 Wil
Move R2 Wtf Argel

30) zoltar: Trade R2 Y2 Zoltar

31) wil: Trade R2 Y2 Argel

32) zoltar: Sacrifice Y2 Zoltar
Move R1 Greenslime Wtf
Move R1 Wtf Wil
Catastrophe Wil R

33) wil: Attack R1S Argel

34) zoltar: Move B1 Zoltar Greenslime
	wil: hate that, forgot that altogther, great play!  

35) wil: Trade R1 G1 Argel

36) zoltar: Build B1 Greenslime
	zoltar: Yeah, any time an opponent constructs either a Y2 or Y3, you've always got to ask yourself, "is there any weakness a double (or triple if the case) move can exploit, either by focusing on hyperloading one color in one location, or making two simultaneous threads in two different locations.

37) wil: Build R1 Wtf

38) zoltar: Trade R3 Y3 Greenslime
	wil: nice hint thanx much!


39) wil: Sacrifice Y2 Argel
Move R3 Wtf Argel
Move B1 Wil Wtf

40) zoltar: Build B2 Greenslime

	zoltar: Leaving yourself completely void everywhere in the yellow market when your opponent can make serious threats is also something to avoid....
	zoltar: The Rebel Base is now in range of the Death Star. Prepare to fire the Doomsday Machine! Stand by....
	wil: yes I see...  I thought I had one yellow to move in when you created your third blue...one step behind....day late....dollar short...and homeworld about to be anihilated...thanx for the lessons...  


23891)
Variants: "Hard time"
Started: 2013.5.6, Ended: 2013.5.17
Participants: dlwillson (S), goblin981 (N)
Winner: dlwillson

1) goblin981: H G3 B1 R3

2) dlwillson: Homeworld B3 Y1 G3 Dlwillson

3) goblin981: B R1 Goblin981

4) dlwillson: B G1 Dlwillson

5) goblin981: T R1 Y1 Goblin981

6) dlwillson: Trade G1 Y1 Dlwillson

7) goblin981: B Y2k Goblin981

8) dlwillson: T Y1 R1 Dlwillson



23892)
Variants: "Hard time"
Started: 2013.5.6, Ended: 2013.5.23
Participants: SilentTitan (S), Subhan64 (N)
Winner: SilentTitan

1) Subhan64: Homeworld Y3 B1 G3

2) SilentTitan: Homeworld R1 B2 G3

3) Subhan64: Build G1 Subhan64

4) SilentTitan: Build G1 Silenttitan

5) Subhan64: Discover G1 Subhan64 B2 Smurfcity

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Subhan64: Trade G1 Y1 Smurfcity

8) SilentTitan: Build G1 Silenttitan

9) Subhan64: Build G1 Subhan64

10) SilentTitan: Discover G1 Silenttitan B3 Sol

11) Subhan64: Trade G1 R1 Subhan64

12) SilentTitan: Trade G1 Y1 Sol

13) Subhan64: Move Y1 Smurfcity Sol

14) SilentTitan: Build Y2 Silenttitan

15) Subhan64: Trade Y1 G1 Sol

16) SilentTitan: Discover Y1 Sol Y1 Sole

17) Subhan64: Discover R1 Subhan64 Y2 Bigbird

18) SilentTitan: Discover Y1 Silenttitan G3 Soul

19) Subhan64: Build G1 Subhan64

20) SilentTitan: Build Y2 Silenttitan

21) Subhan64: Move R1 Bigbird Sole

22) SilentTitan: Discover Y1 Sole G2 Tic

23) Subhan64: Move G1 Subhan64 Tic

24) SilentTitan: Discover Y1 Tic B1 Tac

25) Subhan64: Move R1 Sole Soul

26) SilentTitan: Discover Y1 Soul Y1 Toe

27) Subhan64: Build G1 Subhan64

28) SilentTitan: Build G2 Silenttitan

29) Subhan64: Sacrifice G3 Subhan64
Build G2 Sol
Build G3 Subhan64
Build R1 Soul

30) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Toe
Build Y3 Tac
Build G3 Silenttitan

31) Subhan64: Trade G3 Y3 Subhan64

32) SilentTitan: Trade G2 R2 Silenttitan

33) Subhan64: Sacrifice Y3 Subhan64
Move R1 Soul Silenttitan
Move R1 Soul Silenttitan
Move G1 Tic Subhan64
Catastrophe Silenttitan Red

34) SilentTitan: Trade G3 R3 Silenttitan

35) Subhan64: Trade G1 R1 Subhan64

36) SilentTitan: Move Y2 Silenttitan Subhan64

37) Subhan64: Sacrifice G2 Sol
Build R1 Subhan64
Build R1 Subhan64

38) SilentTitan: Sacrifice R3 Silenttitan
Attack R1 Subhan64 North
Attack R1 Subhan64 North
Attack R1 Subhan64 North



23904)
Variants: "No undo, Unrated, Hard time"
Started: 2013.5.6, Ended: 2013.5.9
Participants: Subhan64 (S), Argel (N)
Winner: Argel

1) Argel: Homeworld B1 G3 R3 *



23905)
Variants: "Hard time"
Started: 2013.5.6, Ended: 2013.5.13
Participants: wil (S), Subhan64 (N)
Winner: wil

1) Subhan64: Homeworld Y1 B2 G3

2) wil: Homeworld B3 R1 G3

3) Subhan64: Build G1 Subhan64
	wil: good luck, looking forward to great game!


4) wil: Build G1 Wil

	Subhan64: Hmm, I seem to not be getting my turn notifications, sorry :(
	wil: phooey!!  pheel phree to try again, I'd love a game!


23917)
Variants: "Hard time"
Started: 2013.5.6, Ended: 2013.5.18
Participants: ajo (S), Subhan64 (N)
Winner: ajo

1) Subhan64: Homeworld Y2 B3 G3
	ajo: It's been a looong time since I played Homeworlds! I might be a tiny bit rusty. Let's see.

2) ajo: Homeworld B3 R1 G3
	Subhan64: me too, but let's have at it!


3) Subhan64: Build G1 Subhan64

4) ajo: Build G1 Ajo

5) Subhan64: Trade G3 Y3 Subhan64

6) ajo: Trade G3 Y3 Ajo

7) Subhan64: Build Y1 Subhan64

8) ajo: Build Y1 Ajo

9) Subhan64: Discover Y1 Subhan64 B1 Smurfberry

10) ajo: Discover Y1 Ajo G2 Alpha

11) Subhan64: Discover Y1 Smurfberry G2 Kermit

12) ajo: Build G1 Ajo

13) Subhan64: Trade Y3 G3 Subhan64
	ajo: This is where it starts getting tricky, not having the physical pieces set up in front of me...

14) ajo: Trade G1 B1 Ajo

15) Subhan64: Trade G1 B1 Subhan64

16) ajo: Move B1 Ajo Alpha

17) Subhan64: Build G1 Subhan64

18) ajo: Build G1 Ajo

19) Subhan64: Discover G3 Subhan64 R1 Elmos_world

20) ajo: Move G1 Ajo Alpha

21) Subhan64: Build G2 Elmos_world

22) ajo: Build G3 Ajo

23) Subhan64: Build G3 Subhan64

24) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y1 Alpha
Build Y2 Alpha

25) Subhan64: Sacrifice G3 Elmos_world
Build G3 Elmos_world
Build Y2 Kermit
Build B1 Subhan64

26) ajo: Sacrifice Y2 Alpha
Move B1 Alpha Elmos_world
Move B1 Elmos_world Subhan64
Catastrophe Subhan64 Blue
	ajo: I think that was a mistake! :)

	Subhan64: apparently so :( Thanks for the game!


23927)
Started: 2013.5.8, Ended: 2013.5.20
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) wil: Homeworld Y3 G2 R3 *

3) ts52: Build G1 Ts52

4) wil: Build R1 Wil
	wil: bein stupid testing limits and did it wrong!

5) ts52: Trade G1 R1 Ts52
	ts52: no worries

6) wil: Discover R1 Wil B1 Fortcourage

7) ts52: Build G1 Ts52

8) wil: Trade R1 G1 Fortcourage

9) ts52: Discover G1 Ts52 B3 Grover

10) wil: Build R1 Wil

11) ts52: Build R1 Ts52

12) wil: Build R2 Wil

13) ts52: Build R2 Ts52

14) wil: Move R2 Wil Fortcourage

15) ts52: Move R2 Ts52 Grover

16) wil: Build R2 Wil

17) ts52: Build R3 Grover

18) wil: Build R3 Fortcourage
	wil: My faux pas opening sure makes for a wierd game....I'd like to discuss openings and options and play....would you be interested?  Would the best place to be on the forum, or maybe a google doc?

19) ts52: Trade R3 Y3 Grover
	ts52: I don't frequent the forums, but I could. Whichever you prefer. I'm squatront@gmail.com if you want to use google. I know Andy's posted something about opening strategies, but I can't recall where. Might've been in a zine and not online.

20) wil: Discover R2 Wil B1 Tortuga
	ts52: Check out http://forums.superdupergames.org/viewtopic.php?t=1467

21) ts52: Build R3 Grover

22) wil: Trade R2 G2 Tortuga

23) ts52: Move R3 Grover Tortuga
	wil: yeah, I started there....I just added there...it seems fairly dead....

24) wil: Discover R1 Wil Y1 Dryden

25) ts52: Build R2 Grover
	ts52: Ah right, now I see that you posted there.
	wil: well that looks like game over eh?  many major mistakes...can't move, you can move two guys in...

26) wil: Trade R2 B2 Fortcourage
	ts52: Yeah, it shouldn't be long now.

27) ts52: Attack G2 Tortuga

28) wil: Trade G1 Y1 Fortcourage

29) ts52: Build R2 Tortuga

30) wil: Move B2 Fortcourage Wil

31) ts52: Move R2 Grover Dryden

32) wil: Trade R3 Y3 Wil

33) ts52: Attack R1 Dryden

34) wil: Build B1 Wil

35) ts52: Build Y2 Grover

36) wil: Build B2 Wil

37) ts52: Build R3 Grover

38) wil: Discover B2 Wil G1 Bedrock

39) ts52: Move Y2 Grover Tortuga

40) wil: Build B3 Bedrock

41) ts52: Build Y2 Tortuga

42) wil: Trade B2 Y2 Bedrock

43) ts52: Build G1 Ts52

44) wil: Trade Y3 B3 Wil

45) ts52: Sacrifice G3 Ts52
Build Y3 Grover
Build G2 Tortuga
Build G3 Ts52
	wil: he's lining them up....

46) wil: Build B2 Bedrock

47) ts52: Move Y3 Grover Bedrock
	ts52: I probably should've traded for that last b2, but we'll see.

48) wil: Sacrifice Y2 Bedrock
Discover B3 Bedrock G3 Whynot
Move B2 Bedrock Whynot
	wil: you've got the forces to clean my clock thrice

49) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Bedrock
Build G3 Grover

50) wil: Pass
	wil: I'm overpowered and running around like insects in a RAID commercial....

51) ts52: Sacrifice Y3 Bedrock
Move Y2 Bedrock Wil
Move Y2 Tortuga Wil
Move Y2 Tortuga Wil
Catastrophe Wil Yellow

52) wil: Sacrifice B2 Wil
Trade B3 Y3 Wil
Trade B3 Y3 Whynot

53) ts52: Sacrifice Y3 Grover
Move G1 Grover Wil
Move G2 Tortuga Wil
Move G2 Tortuga Wil
Catastrophe Wil Green

	wil: Yeah....I didn't see that either....I knew I was cornered...but missed how bad...while the end feels inevitable...I continue to play rope a dope (not knowing if you are old enough for the reference)

	ts52: I think I'm old enough that I should know the reference, and I know the phrase, but I'm don't actually know off hand where exactly it's from.
Thanks for the game!
	wil: Butt kicked...thanx!!  More stuff to watch out for.  If you are up for another give me a challenge and I'll gladly play, get whipped and learn some more.  Hopefully one day i'll be able to give you a proper run for your money....

Rope a Dope was what Muhamed Ali did in boxing, stood on the ropes getting pummelled watching for overconfidence, tiring, a mistake, an opening to capitalize on....of course with him...he had two things I don't...skill and intent..he did it with intent...I did it because I was not skillful and boxed into  a corner...


23911)
Variants: "Hard time"
Started: 2013.5.9, Ended: 2013.5.27
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3 Dlwillson
	wil: Looking forward to playing one....all the way out...

2) wil: Homeworld R2 B1 G3
	dlwillson: Well, we'll see if I can manage it.

3) dlwillson: Build G1 Dlwillson

4) wil: Build G1 Wil
	wil: you got no clue how bad I wanted to try h B2 G2 Y3 ....  

5) dlwillson: Trade G1 Y1 Dlwillson
	wil: I still think we should autostart with a small ship of our whatever big ship since that is a given...unless I guess someone may have some need to change colors first thing...
	dlwillson: Wouldn't it have been g2 y2 r3?
And yes, the first move is usually "I build a small green."

6) wil: Trade G1 Y1 Wil
	wil: no I was thinking I could out build Ys and then fly into catastrophe...  I just wanna machine like War Games total nuclear distruction to run all the options and watch it go with varrioius openings..

7) dlwillson: Build Y2 Dlwillson

8) wil: Build Y2 Wil

9) dlwillson: Discover Y1 Dlwillson G2 Field
	wil: you interested in taking part in creating booklet/pdf on homeworlds strategies?
	dlwillson: Not I. I barely have time to play! Check with Twoshort and Silenttitan, though.

10) wil: Discover Y1 Wil G3 Fortcourage

11) dlwillson: Trade Y2 R2 Dlwillson
	dlwillson: grabbed the wrong piece... :-)

12) wil: Build Y2 Fortcourage

13) dlwillson: B Y2 Field

14) wil: Build Y3 Wil

15) dlwillson: D Y1 Field Y3 Golden

16) wil: Trade Y2 R2 Wil

17) dlwillson: D Y1 Golden G2 Forest

18) wil: Move R2 Wil Fortcourage

19) dlwillson: B G1 Dlwillson

20) wil: Discover Y2 Fortcourage B2 Dryden

21) dlwillson: B Y2 Forest

22) wil: Build Y3 Fortcourage

23) dlwillson: B Y3 Field

24) wil: Build G1 Wil

25) dlwillson: Discover Y3 Field B3 Sky

26) wil: M R2 Fortcourage Forest

27) dlwillson: S R2 Dlwillson
A R2 Forest
Pass

28) wil: Trade Y2 G2 Dryden

29) dlwillson: T G1 R1 Dlwillson

30) wil: Sacrifice G3 Wil
Build G1 Dryden
Build G1 Dryden
Build G3 Wil

31) dlwillson: M Y2 Forest Sky

32) wil: Sacrifice Y3 Fortcourage
Move G2 Dryden Dlwillson
Move G1 Dryden Dlwillson
Move G1 Dryden Dlwillson
Catastrophe Dlwillson G

33) dlwillson: T Y3 G3 Sky

34) wil: Trade G3 R3 Wil

35) dlwillson: S G3 Sky
B Y2 Forest
B Y3 Field
B Y3 Sky

36) wil: Sacrifice Y3 Wil
Move R3 Wil Fortcourage
Move R3 Fortcourage Field
Move R3 Field Dlwillson

37) dlwillson: Sacrifice Y2 Forest
Move Y3 Field Dlwillson
Move Y3 Sky Wil

38) wil: Attack Y3 Dlwillson

39) dlwillson: Attack G1 Wil
	wil: I think this works...still figuring out how all thse things play out...
	wil: If it doesn't it is game over as I am in a world of hurt...
	wil: If it doesn't it is game over as I am in a world of hurt...

	dlwillson: Yes. Now, I'm sure you miscounted!
	wil: yeah....I did...I was one step behind when I thought I was one step ahead...   so I just made one more sucide mission as I prepared for my demise...
	dlwillson: I'm up for another, if you like.
	wil: great, thanx


23932)
Variants: "Hard time"
Started: 2013.5.11, Ended: 2013.5.18
Participants: wil (S), goblin981 (N)
Winner: wil

1) goblin981: H G3 B2 Y3

2) wil: Homeworld B2 R1 G3

	wil: Just joined and am learning the game and look forward to seeing how I do here...
	wil: resigned?  What up?


23931)
Variants: "No undo, Unrated, Hard time"
Started: 2013.5.11, Ended: 2013.5.18
Participants: Cakemaster77 (S), Argel (N)
Winner: Cakemaster77

1) Argel: Homeworld B3 G2 R3 *
	Cakemaster77: hi


2) Cakemaster77: Homeworld B2 G1 Y3
	Cakemaster77: B1, G2, Y3
	Cakemaster77: homeworld B1, G2, Y3

	Cakemaster77: I'm new here


23918)
Variants: "Hard time"
Started: 2013.5.11, Ended: 2013.5.14
Participants: SilentTitan (S), Kane (N)
Winner: SilentTitan



23933)
Variants: "Hard time"
Started: 2013.5.11, Ended: 2013.5.14
Participants: dlwillson (S), Kane (N)
Winner: dlwillson



23986)
Variants: "Hard time"
Started: 2013.5.19, Ended: 2013.6.22
Participants: zoltar (S), MagicJohn (N)
Winner: zoltar

1) MagicJohn: Homeworld Y1 B2 G3
	zoltar: gl!
	MagicJohn: Probably need it..... Saw your rating... Couldn't count that high until I was 28......

2) zoltar: Homeworld R3 B2 G3

3) MagicJohn: Build G1 Magicjohn

4) zoltar: Build G1 Zoltar

5) MagicJohn: Trade G1 Y1 Magicjohn

6) zoltar: Trade G1 Y1 Zoltar

7) MagicJohn: Build Y2 Magicjohn

8) zoltar: Build Y2 Zoltar

9) MagicJohn: Discover Y2 Magicjohn G3 Herbert

10) zoltar: Discover Y1 Zoltar G1 Greenpea

11) MagicJohn: Build G1 Magicjohn

12) zoltar: Build G1 Zoltar

13) MagicJohn: Trade Y1 R1 Magicjohn

14) zoltar: Trade G1 R1 Zoltar

15) MagicJohn: Trade G1 B1 Magicjohn

16) zoltar: Build Y1 Zoltar

17) MagicJohn: Move Y2 Herbert Greenpea

18) zoltar: Move Y1 Zoltar Greenpea

19) MagicJohn: Build Y2 Greenpea
Catastrophe Greenpea Yellow

20) zoltar: Build Y1 Zoltar

21) MagicJohn: Build G1 Magicjohn

22) zoltar: Trade Y1 B1 Zoltar

23) MagicJohn: Build G1 Magicjohn

24) zoltar: Discover B1 Zoltar G1 Greenpea

25) MagicJohn: Discover G1 Magicjohn Y3 Bruton

26) zoltar: Build G2 Zoltar

27) MagicJohn: Trade G3 Y3 Magicjohn

28) zoltar: Discover G2 Zoltar B1 Blueberry

	MagicJohn: Ewww, Sorry about that. Our daughter came in from out of state and time got away from me......
	zoltar: No problem. We can play a game sometime without the 'hard time' restriction that ladder games impose, when you have more time.


23980)
Variants: "No undo, Unrated, Hard time"
Started: 2013.5.20, Ended: 2013.6.13
Participants: Argel (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) Argel: Homeworld B3 G2 R3 *

3) wil: Build G1 Wil

4) Argel: Build R1 Argel

5) wil: Discover G1 Wil Y3 C1

6) Argel: Trade R1 Y1 Argel

7) wil: Build G1 Wil

8) Argel: Build Y1 Argel

9) wil: Build G1 Wil

10) Argel: Discover Y1 Argel B1 Atenas

11) wil: Trade G1 Y1 Wil

12) Argel: Trade Y1 G1 Atenas

13) wil: Build G2 C1

14) Argel: Build G2 Atenas

15) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Wil
Build Y1 Wil

16) Argel: Trade G2 Y2 Atenas

17) wil: Discover G3 Wil Y3 C2

18) Argel: Discover Y2 Atenas G3 Rhodes

19) wil: Move Y1 Wil C1

20) Argel: Build G2 Atenas

21) wil: Trade G3 B3 Wil

22) Argel: Build G3 Atenas

23) wil: Trade Y1 R1 Wil

24) Argel: Trade G3 B3 Atenas

25) wil: Build G3 Wil

26) Argel: Trade G1 Y1 Atenas

27) wil: Discover Y1 C1 G1 D1

28) Argel: Trade B3 Y3 Atenas

29) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 D1
Build R1 Wil



23940)
Variants: "Hard time"
Started: 2013.5.20, Ended: 2013.6.12
Participants: wil (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	SilentTitan: Welcome back


2) wil: Homeworld Y3 B2 G3

3) SilentTitan: Build G1 Silenttitan
	wil: thx..still experimenting and learning...(as you can see with this opening)

4) wil: B G1 Wil

5) SilentTitan: Trade G1 Y1 Silenttitan

6) wil: T G1 Y1 Wil


7) SilentTitan: Build G1 Silenttitan

8) wil: B G1 Wil

9) SilentTitan: Build Y1 Silenttitan

10) wil: Build Y2 Wil

11) SilentTitan: Build Y2 Silenttitan

12) wil: Discover Y1 Wil G1 Fortcourage

13) SilentTitan: Discover Y1 Silenttitan G3 Sol

14) wil: Build G2 Wil

15) SilentTitan: Discover Y1 Silenttitan B3 Sole

16) wil: Trade G1 R1 Wil

17) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Sole
Build Y3 Silenttitan

18) wil: Build R1 Wil
	wil: I like that move!
	wil: Well not for me....but in theory...

19) SilentTitan: Trade Y2 B2 Silenttitan

20) wil: Build Y2 Fortcourage

21) SilentTitan: Trade Y3 G3 Sole

22) wil: Discover Y1 Fortcourage Y3 Dryden

23) SilentTitan: Move Y1 Sol Fortcourage

24) wil: Sacrifice R1 Wil
Attack Y1 Fortcourage

25) SilentTitan: Sacrifice B2 Silenttitan
Trade G3 R3 Sole
Trade Y3 G3 Silenttitan

26) wil: Trade Y2 B2 Wil

27) SilentTitan: Build Y2 Sol

28) wil: Sacrifice Y2 Fortcourage
Move G2 Wil Fortcourage
Discover G2 Fortcourage Y3 Ynot

29) SilentTitan: Move Y2 Sol Silenttitan

30) wil: Build Y2 Fortcourage

31) SilentTitan: Move G1 Silenttitan Sole

32) wil: Build G1 Wil

33) SilentTitan: Build G2 Silenttitan

34) wil: Sacrifice G3 Wil
Build G2 Ynot
Build G3 Wil
Build B1 Wil

35) SilentTitan: Trade G2 R2 Silenttitan

36) wil: Move B2 Wil Fortcourage

37) SilentTitan: Move R3 Sole Fortcourage

38) wil: Sacrifice B2 Fortcourage
Trade Y1 R1 Fortcourage
Trade Y2 R2 Fortcourage

39) SilentTitan: Sacrifice Y2 Sol
Move R3 Fortcourage Ynot
Move R2 Silenttitan Sole

40) wil: Discover G2 Ynot Y2 Bedrock

41) SilentTitan: Attack G2 Ynot South

42) wil: Sacrifice G3 Wil
Build G2 Bedrock
Build G3 Bedrock
Build G3 Wil

43) SilentTitan: Move G1 Sole Bedrock
Catastrophe Bedrock Green

44) wil: Build B1 Wil

45) SilentTitan: Build G1 Silenttitan

46) wil: Discover G1 Wil Y1 Phooey

47) SilentTitan: Build G2 Silenttitan

48) wil: Move G1 Phooey Dryden

49) SilentTitan: Move G2 Silenttitan Sole

50) wil: Build G2 Wil

51) SilentTitan: Trade G2 B2 Sole

52) wil: Move B1 Wil Fortcourage

53) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Ynot
Build G3 Ynot
Build G3 Silenttitan

54) wil: Trade R2 Y2 Fortcourage

55) SilentTitan: Discover G3 Ynot Y1 Tic

56) wil: Build Y2 Fortcourage

57) SilentTitan: Sacrifice Y1 Sole
Discover G2 Ynot Y1 Tac

58) wil: Sacrifice G3 Wil
Build G3 Wil
Build B1 Fortcourage
Build R2 Fortcourage

59) SilentTitan: Move R3 Ynot Tic

60) wil: Move G2 Wil Fortcourage

61) SilentTitan: Sacrifice Y2 Silenttitan
Move G1 Silenttitan Ynot
Move G2 Ynot Fortcourage

62) wil: Sacrifice Y2 Fortcourage
Move G2 Fortcourage Dryden
Move G1 Dryden Silenttitan

63) SilentTitan: Sacrifice R3 Tic
Attack Y2 Fortcourage South
Attack R2 Fortcourage South
Attack R1 Fortcourage South

64) wil: Build B3 Fortcourage

65) SilentTitan: Sacrifice Y2 Fortcourage
Move B2 Sole Fortcourage
Move G3 Tic Dryden
Catastrophe Fortcourage Blue

66) wil: Move G2 Dryden Silenttitan

67) SilentTitan: Sacrifice R2 Sole
Attack G1 Silenttitan South
Attack G2 Silenttitan South
	wil: didn't go the way I expected....don't know why I didn't think you'd use the big gun....

68) wil: Build R2 Wil
	SilentTitan: yeah... you pack enough ships in a system and it becomes a huge target.

69) SilentTitan: Trade G2 B2 Silenttitan
	wil: yeah....I'd like to think I 'm learning by making mistakes...but I think I'm just making mistakes...

70) wil: Build G2 Wil
	SilentTitan: well either way you've keep me hopping again this game

71) SilentTitan: Sacrifice R1 Fortcourage
Attack Y1 Dryden South
	wil: hopping?  I am struggling to stay alive and you are gaining armament everywhere....26 to 12 by pip count....and I blew my attack all together...can't get there from here...it's been a matter of time for a while..

72) wil: Discover R2 Wil B1 Phoeey

73) SilentTitan: Sacrifice B2 Silenttitan
Trade G1 Y1 Silenttitan
Trade G2 Y2 Fortcourage

74) wil: Move G2 Wil Phoeey

75) SilentTitan: Build Y2 Silenttitan

76) wil: Trade R2 Y2 Phoeey

77) SilentTitan: Sacrifice G1 Ynot
Build Y3 Fortcourage

78) wil: Build G1 Wil

79) SilentTitan: Discover G3 Dryden B1 Toe

80) wil: Trade G3 R3 Wil
	wil: always nice to have someone else use your investments...
	wil: always nice to have someone else use your investments...

81) SilentTitan: Sacrifice Y2 Silenttitan
Move Y3 Fortcourage Wil
Move G3 Toe Wil

82) wil: Attack G3 Wil

83) SilentTitan: Sacrifice R2 Fortcourage
Attack R3 Wil South
Attack G3 Wil South

	SilentTitan: Thanks for playing.  made it out to 43 turns again


23919)
Variants: "Hard time"
Started: 2013.5.20, Ended: 2013.5.29
Participants: Subhan64 (S), wil (N)
Winner: Subhan64

1) wil: H Y2 B1 G3

2) Subhan64: Homeworld Y3 B1 G3
	wil: Thx 4 da game!

3) wil: B G1 Wil

4) Subhan64: Build G1 Subhan64

5) wil: Discover G1 Wil Y3 D1

6) Subhan64: Trade G1 Y1 Subhan64

7) wil: Build G1 Wil

8) Subhan64: Build Y1 Subhan64

9) wil: Trade G1 Y1 Wil

10) Subhan64: Trade Y1 G1 Subhan64

11) wil: Build G1 Wil

12) Subhan64: Trade G1 R1 Subhan64

13) wil: Trade G1 R1 Wil

14) Subhan64: Build G1 Subhan64

15) wil: Build G1 Wil

16) Subhan64: Discover G1 Subhan64 Y2 Big_bird

17) wil: Discover G1 Wil Y3 Ynot

18) Subhan64: Build G2 Big_bird

19) wil: Build G2 Wil

20) Subhan64: Discover G2 Big_bird G3 Lrrr

21) wil: Sacrifice G3 Wil
Build G2 Ynot
Build G3 Wil
Build R1 Wil

22) Subhan64: Sacrifice G2 Lrrr
Build G2 Big_bird
Build G3 Subhan64

23) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Wil
Build Y1 Wil

24) Subhan64: Sacrifice G3 Subhan64
Build G3 Subhan64
Build Y2 Subhan64
Build R2 Subhan64

25) wil: Move R2 Wil D1

26) Subhan64: Move R2 Subhan64 Big_bird

27) wil: Move R1 Wil Ynot


28) Subhan64: Trade Y1 B1 Subhan64

29) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Ynot
Build R3 D1

30) Subhan64: Sacrifice G3 Subhan64
Build G3 Subhan64
Build R3 Subhan64
Build R3 Big_bird

31) wil: Discover R3 D1 B2 Ohwell

32) Subhan64: Sacrifice B1 Subhan64
Trade G1 Y1 Big_bird

33) wil: Build G1 D1

34) Subhan64: Sacrifice Y2 Subhan64
Move Y1 Big_bird D1
Move Y1 D1 Wil
Catastrophe Wil Yellow

35) wil: Trade R1 Y1 Wil

36) Subhan64: Move R3 Big_bird D1

37) wil: Move G1 D1 Ohwell



38) Subhan64: Trade G3 B3 Subhan64

39) wil: Build R1 D1

40) Subhan64: Sacrifice B3 Subhan64
Trade R3 B3 D1
Trade R2 B2 Big_bird
Trade G2 B2 Big_bird

41) wil: Move R2 D1 Big_bird

42) Subhan64: Sacrifice R1 Subhan64
Attack R2 Big_bird

43) wil: Sacrifice G3 Wil
Build G2 Ohwell
Build G3 Ynot
Build G3 Wil
	wil: still learning how that works....'nother lesson is always good!

44) Subhan64: Trade R2 Y2 Big_bird

45) wil: Sacrifice Y1 Wil
Move R3 Ohwell D1

46) Subhan64: Sacrifice Y2 Big_bird
Move B3 D1 Wil
Move B2 Big_bird Wil

47) wil: Trade G3 B3 Wil





48) Subhan64: Move B2 Big_bird Wil
Catastrophe Wil Blue
	Subhan64: good game, thanks!

	wil: fun game to learn...thanx for the lessons
	wil: thanx!!


23982)
Variants: "Hard time"
Started: 2013.5.21, Ended: 2013.5.25
Participants: Subhan64 (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R1 B2 G3

2) Subhan64: Homeworld Y3 B2 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) Subhan64: Build G1 Subhan64

5) goulo: Trade G1 Y1 Goulo

6) Subhan64: Build G1 Subhan64

7) goulo: Build Y1 Goulo

8) Subhan64: Discover G1 Subhan64 G1 Kermie

9) goulo: Build G2 Goulo

10) Subhan64: Sacrifice G3 Subhan64
Build G2 Kermie
Build G2 Subhan64
Build G3 Subhan64

11) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build G3 Goulo
Build Y1 Goulo

12) Subhan64: Trade G2 Y2 Subhan64

13) goulo: Discover G3 Goulo B3 Mirtelego

14) Subhan64: Sacrifice Y2 Subhan64
Discover G2 Kermie G2 Scooter
Discover G3 Subhan64 R1 Elmo

15) goulo: Move Y1 Goulo Mirtelego

16) Subhan64: Sacrifice G2 Scooter
Build G2 Subhan64
Build G2 Subhan64

17) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build Y2 Goulo
Build Y2 Mirtelego

18) Subhan64: Trade G2 Y2 Subhan64

19) goulo: Sacrifice G3 Goulo
Build G2 Mirtelego
Build G3 Goulo
Build Y3 Mirtelego

20) Subhan64: Sacrifice G2 Subhan64
Build G2 Elmo
Build Y3 Subhan64

21) goulo: Sacrifice Y2 Goulo
Move Y1 Mirtelego Elmo
Move Y1 Elmo Subhan64
Catastrophe Subhan64 Y

22) Subhan64: Sacrifice G3 Elmo
Build G3 Subhan64
Pass
Pass

23) goulo: Sacrifice Y2 Mirtelego
Move G2 Mirtelego Subhan64
Move G3 Mirtelego Subhan64
Catastrophe Subhan64 G

	goulo: Thanks for the game!


23985)
Variants: "Hard time"
Started: 2013.5.21, Ended: 2013.7.31
Participants: ajo (S), agentofchaos (N)
Winner: ajo

1) agentofchaos: Homeworld B1 R2 G3

2) ajo: Homeworld R1 B2 G3

3) agentofchaos: Build G1 Agentofchaos

4) ajo: Build G1 Ajo

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) ajo: Trade G3 Y3 Ajo

7) agentofchaos: Discover Y1 Agentofchaos G3 Ghostar

8) ajo: Build G1 Ajo

9) agentofchaos: Build G1 Agentofchaos

10) ajo: Build G2 Ajo

11) agentofchaos: Trade G1 R1 Agentofchaos

12) ajo: Discover G2 Ajo B3 Central

13) agentofchaos: Build R1 Agentofchaos

14) ajo: Build Y1 Ajo

15) agentofchaos: Trade R1 Y1 Agentofchaos

16) ajo: Move Y1 Ajo Central

17) agentofchaos: Build Y2 Ghostar

18) ajo: Build Y2 Central

19) agentofchaos: Build Y2 Agentofchaos

20) ajo: Trade Y1 R1 Central

21) agentofchaos: Move R1 Agentofchaos Ghostar

22) ajo: Build R2 Central

23) agentofchaos: Build R2 Ghostar

24) ajo: Trade R1 B1 Central

25) agentofchaos: Trade Y1 B1 Agentofchaos

26) ajo: Build Y1 Central

27) agentofchaos: Move B1 Agentofchaos Ghostar

28) ajo: Discover B1 Central G2 Alpha

29) agentofchaos: Build B2 Ghostar

30) ajo: Build B2 Alpha

31) agentofchaos: Discover B2 Ghostar G2 Firencola

32) ajo: Sacrifice Y1 Central
Discover B1 Alpha G3 Beta
	ajo: build b2 Alpha

33) agentofchaos: Build B3 Firencola
	ajo: Whoops, wrong box. :)
	agentofchaos: I've done that a few times :-)

34) ajo: Build B3 Beta

35) agentofchaos: Sacrifice Y2 Ghostar
Move B3 Firencola Beta
Move B2 Firencola Beta
Catastrophe Beta B

36) ajo: Build R1 Central

37) agentofchaos: Build B1 Ghostar

38) ajo: Build B2 Alpha

39) agentofchaos: Build B3 Ghostar

40) ajo: Sacrifice Y2 Central
Move R1 Central Alpha
Move B2 Alpha Ghostar
Catastrophe Ghostar Blue

41) agentofchaos: Build R3 Ghostar

42) ajo: Sacrifice G2 Central
Build R3 Central
Build R3 Alpha

43) agentofchaos: Build Y1 Agentofchaos
	ajo: I feel better now. :)

44) ajo: Sacrifice Y3 Ajo
Move R1 Alpha Ghostar
Move B2 Alpha Ghostar
Move R3 Central Ajo
Catastrophe Ghostar Red
	agentofchaos: Not sure how I feel though!

45) agentofchaos: Discover Y1 Ghostar G2 Hadeon

46) ajo: Build R1 Ajo

47) agentofchaos: Trade Y2 R2 Agentofchaos

48) ajo: Trade R3 Y3 Ajo

49) agentofchaos: Discover R2 Agentofchaos Y3 Ergovore

50) ajo: Move G1 Ajo Central

51) agentofchaos: Build Y1 Agentofchaos

52) ajo: Build Y2 Ajo

53) agentofchaos: Build Y2 Hadeon

54) ajo: Build B1 Ghostar

55) agentofchaos: Build G1 Agentofchaos

56) ajo: Build G2 Central

57) agentofchaos: Move G1 Agentofchaos Ergovore

58) ajo: Build G3 Ajo

59) agentofchaos: Build Y2 Hadeon

60) ajo: Move Y2 Ajo Central

61) agentofchaos: Discover Y2 Hadeon Y3 Agrajag

62) ajo: Trade G1 B1 Central

63) agentofchaos: Build G1 Ergovore

64) ajo: Move G3 Ajo Ergovore

	agentofchaos: well played


23994)
Variants: "Hard time"
Started: 2013.5.21, Ended: 2013.5.24
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3
	ts52: Let's go again. Have a good game!
	wil: gonna try

2) ts52: Homeworld B1 Y3 G3

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52

5) wil: Discover G1 Wil Y3 C1

6) ts52: Trade G1 B1 Ts52

7) wil: Build G1 Wil
	wil: uh oh

8) ts52: Discover B1 Ts52 G2 Kermit

9) wil: Build G1 Wil

10) ts52: Build B2 Kermit

11) wil: Discover G1 Wil B3 Gottadoit
	wil: ah phooey, miss moved, but I'll still get there...
	wil: ah phooey, miss moved, but I'll still get there...

12) ts52: Trade B2 Y2 Kermit
	wil: crap that miss move may have missed me...  the first grow should have been on C1 then I would have got there....dang..

13) wil: Build G2 Gottadoit
	ts52: Hmmm, this one is going to be interesting.

14) ts52: Discover B1 Kermit G3 Robin

15) wil: Trade G1 Y1 Gottadoit

16) ts52: Build B2 Robin

17) wil: Sacrifice G3 Wil
Build G1 Gottadoit
Build G2 C1
Build G3 Wil
	wil: I thought we were in a blue/green race...  that I was losing, but I guess winning the blues was as dangerous as losing the greens?  it is interesting watching the eb and flow 

18) ts52: Trade B2 Y2 Robin
	wil: now I see the blue man group preparing for attack...
	ts52: Yeah, loosing the greens probably hurts me more. Oh well, it's fun to try different things...

19) wil: Build Y1 Gottadoit

20) ts52: Build B2 Robin
	wil: i have to eventually give you a green to get into blues myself..otherwise it looks like you will simply over power me with the larger pyramid sizes..

21) wil: Discover G2 Gottadoit R2 Ynot
	ts52: Not having a factory is really going to slow me down though. Maybe I should've given you the large green in order to have my own factory....

22) ts52: Build B2 Robin
	wil: yeah...so i hold off slowly growing while you slowly grow I just don't know....i think I should allow you the factory just so I can get into blue..

23) wil: Move Y1 Gottadoit Ynot

24) ts52: Move B2 Robin Kermit

25) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 Ynot
Build Y3 Gottadoit

26) ts52: Build B2 Kermit

27) wil: Discover G1 C1 R2 Ineedblues

28) ts52: Move B2 Robin Ineedblues
	ts52: sneaky...

29) wil: Move Y3 Gottadoit Ineedblues

30) ts52: Build B3 Robin
	wil: i know you like to trap...but I don't see it yet..  i say IneedBlues and then you offe one whilst calling me sneaky...i smell a rat but can't find it (but am very looking forward to learning as I get bit!!)
	ts52: Well crap, I didn't think of you coming in with your large yellow. :(

31) wil: Sacrifice G2 C1
Build G2 Ynot
Build Y3 Gottadoit

32) ts52: Move B3 Robin Ynot
	wil: I'm still concerned....these things seem to come outta the blue...

33) wil: Sacrifice Y3 Gottadoit
Move G2 Ynot Ts52
Move G2 Ynot Ts52
Move G1 Ineedblues Ts52
Catastrophe Ts52 G
	wil: I was absolutely certain you had something going that I wasn't seeing!!   Thank you for the game.
	ts52: Dammit! Well played. I was watching for that a few moves ago, and then missed it anyway. Again?
	wil: Of course I'd like to play again...  learning the nuance here is incredible...


I thought you were gonna change your g3 last minute....or had something up your sleeve I couldn't see.   As I see it, I capitalized on the fact that you were singular in your homeworld, used the disguise of an investment (look at this big yellow ship I just got) to cover my placement of the green (rather than obviously move one forward) and that moving of the yellow ship in...  I was watching your blues but thought it was to my advantage for you to attack me as our homeworlds would be connected...I almost changed myg3 to a b3 just to entice you....  I am learning....thanx so much
	ts52: It's funny, because the reason I moved into your red systems was to try to capture your greens to keep you from doing what you did. I just missed the fact that you'd got up to 3 greens to kill me. Oops.



23989)
Started: 2013.5.24, Ended: 2013.5.26
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) ts52: Homeworld B2 Y3 G3

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52

5) wil: Trade G1 B1 Wil

6) ts52: Trade G1 B1 Ts52

7) wil: Build B2 Wil

8) ts52: Discover B1 Ts52 G1 Robin

9) wil: Trade B1 Y1 Wil

10) ts52: Build G1 Ts52

11) wil: Discover B2 Wil G3 Foist

12) ts52: Build B1 Robin

13) wil: Build B2 Foist

14) ts52: Trade B1 Y1 Robin

15) wil: Build G1 Wil

16) ts52: Build B1 Robin

17) wil: Build G2 Wil

18) ts52: Discover B1 Robin G2 Kermit

19) wil: Discover G2 Wil Y3 Ynot

20) ts52: Build B3 Robin

21) wil: Trade B2 R2 Foist

22) ts52: Trade B3 R3 Robin

23) wil: Sacrifice G3 Wil
Build G2 Ynot
Build G3 Wil
Build R1 Foist

24) ts52: Move R3 Robin Ynot

25) wil: Discover G2 Ynot Y1 Lastditch

26) ts52: Attack G2 Ynot

27) wil: Sacrifice G3 Wil
Build Y2 Wil
Build G3 Wil
Build R1 Foist

28) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Robin
Build Y3 Robin

29) wil: Sacrifice Y2 Wil
Move Y1 Wil Ynot
Move Y1 Ynot Robin
Catastrophe Robin Y

30) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Kermit
Build B3 Robin

31) wil: Trade B2 Y2 Foist

32) ts52: Trade B3 Y3 Robin

33) wil: Move G1 Wil Foist

34) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Robin
Build B3 Kermit

35) wil: Discover G1 Foist R1 I'mintrouble

36) ts52: Move B2 Robin Ynot
	wil: I should have done my last few moves at home...I saw where I went wrong both times and you had already moved and I could not undo!!   

37) wil: Sacrifice Y2 Foist
Move G1 I'mintrouble Ts52
Move G2 Lastditch Ts52
Catastrophe Ts52 G

	ts52: Damn. I did it again... Well played sir.
	wil: I couldn't quite track the moves....I made two mistakes that I thought would have assured something but was actually thinking you had me by a step in this race.
	ts52: Yep, I got greedy and let my guard down. Another?
	wil: gladly....I  just miscounted exactly has you and let your brother in law clock me...
	ts52: My brother in law?
	wil: oh I don't recall.. I thought a bunch of you were related somehow....dl wilson cleand my clock...


24020)
Variants: "Hard time"
Started: 2013.5.26, Ended: 2013.6.9
Participants: goulo (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld G3 B2 Y3

2) goulo: Homeworld R1 B2 G3

3) Aristos: Build Y1 Aristos
	goulo: hi, have fun!

4) goulo: Build G1 Goulo

5) Aristos: Discover Y1 Aristos Y1 Glimmer

6) goulo: Build G1 Goulo

7) Aristos: Build Y1 Aristos

8) goulo: Trade G3 Y3 Goulo

9) Aristos: Trade Y1 G1 Aristos

10) goulo: Build G2 Goulo

11) Aristos: Build G2 Aristos

12) goulo: Discover G1 Goulo Y3 Citronego

13) Aristos: Move G1 Aristos Glimmer

14) goulo: Build G2 Goulo

15) Aristos: Build G3 Glimmer

16) goulo: Build G3 Citronego

17) Aristos: Move G1 Glimmer Citronego

18) goulo: Discover G1 Goulo B3 Mirtelego

19) Aristos: Sacrifice G2 Aristos
Build G2 Citronego
Build Y1 Aristos
Catastrophe Citronego Green

20) goulo: Build Y2 Goulo

21) Aristos: Build Y2 Glimmer

22) goulo: Move Y2 Goulo Mirtelego

23) Aristos: Sacrifice Y2 Glimmer
Discover G3 Glimmer Y3 Flash
Discover Y1 Glimmer G2 Shine

24) goulo: Build G1 Mirtelego

25) Aristos: Trade Y1 R1 Aristos

26) goulo: Trade G1 R1 Mirtelego

27) Aristos: Build R2 Aristos

28) goulo: Build R2 Mirtelego

29) Aristos: Discover R2 Aristos G1 Flare

30) goulo: Discover R2 Mirtelego Y1 Citroneto

31) Aristos: Move G3 Flash Citroneto

32) goulo: Discover R2 Citroneto Y3 Citronego

33) Aristos: Build Y1 Shine

34) goulo: Build Y2 Mirtelego

35) Aristos: Build Y2 Aristos

36) goulo: Discover G2 Goulo G3 Smeraldego

37) Aristos: Move Y1 Shine Mirtelego

38) goulo: Attack Y1 Mirtelego

39) Aristos: Sacrifice Y2 Aristos
Move R2 Flare Mirtelego
Move Y1 Shine Mirtelego
Catastrophe Mirtelego Yellow

40) goulo: Build R2 Mirtelego

41) Aristos: Sacrifice G3 Citroneto
Build R3 Aristos
Build R3 Aristos
Build R3 Mirtelego
Catastrophe Mirtelego Red
	Aristos: There's no official rule (I know -- I've checked with the developers of the game) about take backs of a ship and infinite cycles. If I capture your g1 ship, you can just take it back. We could do that infinitely. What rule would you like to use to resolve that? No take backs? Or no capturing if the ship can just be taken back? 

42) goulo: Sacrifice Y3 Goulo
Discover G1 Mirtelego Y1 Citroneto
Move R2 Citronego Citroneto
Move R2 Citroneto Aristos
Catastrophe Aristos R
	Aristos: My earlier question turns out not to apply... I decided to go with a different strategy. 
	goulo: The question of loops was discussed a lot also in this thread:
http://boardgamegeek.com/thread/578548/repeated-previous-game-state-is-there-a-ko-rule

it seems there's a loose informal consensus that looping means the game ends in a tie/draw...

43) Aristos: Build Y1 Aristos
	goulo: desperate times call for desperate measures...

44) goulo: Move G1 Citroneto Aristos

45) Aristos: Trade Y3 R3 Aristos

46) goulo: Build G1 Aristos

47) Aristos: Attack G1 Aristos

48) goulo: Sacrifice G2 Smeraldego
Build G1 Aristos
Build G2 Goulo
Catastrophe Aristos G

49) Aristos: Trade Y1 G1 Aristos

50) goulo: Build G1 Goulo
	Aristos: So, I saw this possible position when I built the two Y3 ships... but I have no ability to see beyond it... I have no idea which of us is in the better position going forward. Very unique.

51) Aristos: Build R1 Aristos

52) goulo: Trade G2 Y2 Goulo

53) Aristos: Trade R1 Y1 Aristos

54) goulo: Discover G2 Goulo Y3 Citronego

55) Aristos: Move R3 Aristos Citronego

56) goulo: Sacrifice G2 Citronego
Build G1 Goulo
Build G2 Goulo

57) Aristos: Build G2 Aristos

58) goulo: Trade G1 R1 Goulo

59) Aristos: Move G1 Aristos Citronego

60) goulo: Trade G1 B1 Goulo
	Aristos: What is the significance of the names you choose for stars?
	goulo: They are esperanto words (e.g. citronego = big lemon). :)

61) Aristos: Build R1 Citronego

62) goulo: Discover B1 Goulo Y3 Bananego

63) Aristos: Discover R1 Citronego Y1 Twinkle

64) goulo: Build G1 Goulo

65) Aristos: Build R2 Citronego

66) goulo: Sacrifice G2 Goulo
Build B1 Bananego
Build B1 Bananego

67) Aristos: Move R3 Citronego Goulo
	Aristos: Aw. Hell. Missed that.

68) goulo: Build R2 Goulo
Catastrophe Goulo R
	Aristos: Actually, I think I've still got speed on you by one move. Close. 

69) Aristos: Move R2 Citronego Goulo

70) goulo: Move B1 Bananego Aristos

71) Aristos: Attack Y2 Goulo
	goulo: yeah, i misread what would happen if you moved your r3 to goulo. alas! close one indeed! one move too slow for me...

72) goulo: Move B1 Bananego Aristos

73) Aristos: Attack G1 Goulo
	goulo: If you'd captured my g1 instead of y2, and I sacrificed my y2 to send both b1 from bananego to aristos for a blue catastrophe, we'd both lose our homeworlds at the same time, and I'm not sure how SDG resolves that. (I think officially it would be a win for me, but I'm not 100% sure...) :)
	Aristos: Just because there are 4 in a system does not mean you have to declare a catastrophe. You just wouldn't declare for your home world. 
	Aristos: Good game. Thanks. 
	goulo: Yes, but I would have been declaring a catastrophe at YOUR world, not at MY world! I would have lost MY world due to having no ships there if I could have sacrificed my Y2 to move the 2 B1s to your world.

Anyway, yes, cool game, thanks! :)
	Aristos: Ah, right. I was thinking backwards. In that case you would lose since you instantly lose if your own homeworld ever has none of your own ships, which would happen before the catastrophe at mine.
	goulo: I notice the current official rules say:

Game Over: It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over. However, you are eliminated from the game if both stars in your Homeworld are destroyed, or if none of the ships at your Homeworld are yours.
http://www.looneylabs.com/rules/homeworlds

so in fact you DON'T instantly lose if your own homeworld has none of your ships.

From curiosity, I posted the question here:
http://boardgamegeek.com/thread/991015/what-if-both-homeworlds-destroyed-at-the-end-of-a



24026)
Variants: "Hard time"
Started: 2013.5.26, Ended: 2013.6.3
Participants: Danner (S), ts52 (N)
Winner: Danner

1) ts52: Homeworld Y2 B1 G3

2) Danner: Homeworld R1 B2 G3

3) ts52: Build G1 Ts52
	Danner: Hi! Have a nice game!

4) Danner: Build G1 Danner
	ts52: Thanks! You too.

5) ts52: Trade G1 R1 Ts52

6) Danner: Trade G1 R1 Danner

7) ts52: Build G1 Ts52

8) Danner: Build R2 Danner

9) ts52: Build R2 Ts52

10) Danner: Trade R2 Y2 Danner

11) ts52: Discover G1 Ts52 B3 Grover

12) Danner: Build R2 Danner

13) ts52: Build G1 Grover

14) Danner: Move R2 Danner Grover

15) ts52: Trade R2 Y2 Ts52

16) Danner: Attack G1N Grover

17) ts52: Build R2 Ts52

18) Danner: Build R2 Grover

19) ts52: Discover R2 Ts52 Y3 Bigbird

20) Danner: Trade R2 B2 Grover

21) ts52: Build G1 Ts52

22) Danner: Attack G1N Grover

23) ts52: Move G1 Ts52 Bigbird

24) Danner: Trade G1 Y1 Grover

25) ts52: Discover Y2 Ts52 G3 Kermit

26) Danner: Build Y1 Danner

27) ts52: Build G1 Bigbird

28) Danner: Build G2 Grover

29) ts52: Build G2 Bigbird

30) Danner: Sacrifice Y2 Danner
Move G1 Grover Ts52
Move G1 Ts52 Bigbird
Catastrophe Bigbird G

31) ts52: Build G1 Ts52

32) Danner: Build Y1 Danner

33) ts52: Trade G1 B1 Ts52

34) Danner: Discover Y1 Danner B3 Alpha

35) ts52: Move B1 Ts52 Kermit

36) Danner: Sacrifice G3 Danner
Build Y2 Grover
Build Y3 Alpha
Build Y3 Danner

37) ts52: Build G1 Ts52

38) Danner: Build G1 Grover

39) ts52: Move G1 Ts52 Bigbird

40) Danner: Move G2 Grover Danner

41) ts52: Build B1 Kermit

42) Danner: Move Y3 Danner Kermit

43) ts52: Sacrifice Y2 Kermit
Discover B1 Kermit Y2 Zoe
Move B1 Kermit Zoe

44) Danner: Sacrifice B2 Grover
Trade Y3 B3 Kermit
Trade Y3 G3 Alpha

45) ts52: Move B1 Zoe Bigbird

46) Danner: Sacrifice G2 Danner
Build Y3 Danner
Build Y3 Alpha

47) ts52: Build B2 Bigbird

48) Danner: Trade Y3 R3 Alpha

49) ts52: Build R2 Bigbird

50) Danner: Sacrifice G3 Alpha
Build R3 Alpha
Build R3 Grover
Build Y3 Alpha

51) ts52: Build G1 Ts52

52) Danner: Sacrifice Y3 Alpha
Move R3 Alpha Ts52
Move R3 Alpha Ts52
Move B3 Kermit Ts52

53) ts52: Sacrifice R2 Bigbird
Attack R3 Ts52
Attack R3 Ts52

54) Danner: Sacrifice R3 Grover
Attack R3N Ts52
Attack R3N Ts52
Attack G3N Ts52

55) ts52: Build R2 Ts52
Catastrophe Ts52 Red

56) Danner: Sacrifice R1 Danner
Attack G1N Ts52
	Danner: Thanks for the game!
	ts52: Thanks. You threw me with the small universe play. Good game!



23957)
Variants: "Hard time"
Started: 2013.5.27, Ended: 2013.6.12
Participants: dlwillson (S), mnkr (N)
Winner: dlwillson

1) mnkr: Homeworld G2 B1 Y3

2) dlwillson: H B3 R1 G3
	mnkr: Good game. It's my first game at Homeworlds
	dlwillson: Have fun! I'm at the top of the Homeworlds ladder until Twoshort beats me again, so I've played a few times. :-)

3) mnkr: Build Y1 Mnkr

4) dlwillson: Build G1 Dlwillson
	mnkr: well, I will lose, but I hope learn something.

5) mnkr: Discover Y1 Mnkr G3 Lsd
	dlwillson: And with any luck at all, have some fun.

6) dlwillson: Trade G1 Y1 Dlwillson

7) mnkr: Build Y1 Mnkr

8) dlwillson: B Y2 Dlwillson

9) mnkr: Build Y2 Lsd

10) dlwillson: D Y1 Dlwillson G2 Forest

11) mnkr: Discover Y1 Mnkr G3 Dna

12) dlwillson: B G1 Dlwillson

13) mnkr: Build Y2 Mnkr

14) dlwillson: S G3 Dlwillson
B G1 Dlwillson
B Y3 Dlwillson
B Y3 Forest



24033)
Started: 2013.5.27, Ended: 2013.5.28
Participants: Erik2point0 (S), scotward (N)
Winner: scotward

1) scotward: Homeworld R3 G1 B3

2) Erik2point0: Homeworld B3 G2 Y3

3) scotward: Build B1 Scotward

4) Erik2point0: Build Y1 Erik2point0

5) scotward: Trade B1 Y1 Scotward

6) Erik2point0: Discover Y1 Erik2point0 B1 Alpha

7) scotward: Build B1 Scotward

8) Erik2point0: Build Y1 Erik2point0

9) scotward: Build Y2 Scotward

10) Erik2point0: Trade Y1 G1 Erik2point0

11) scotward: Discover Y1 Scotward G2 Sirius

12) Erik2point0: Move G1 Erik2point0 Alpha

13) scotward: Trade B1 G1 Scotward

14) Erik2point0: Discover Y1 Alpha B2 Beta

15) scotward: Build B1 Scotward

16) Erik2point0: Build G2 Alpha

17) scotward: Build G3 Scotward

18) Erik2point0: Trade G2 Y2 Alpha

19) scotward: Move G3 Scotward Beta

20) Erik2point0: Build Y1 Erik2point0

21) scotward: Trade G3 R3 Beta

22) Erik2point0: Discover Y1 Beta Y3 Gamma

23) scotward: Sacrifice Y2 Scotward
Move R3 Beta Alpha
Move R3 Alpha Erik2point0

24) Erik2point0: Trade Y1 R1 Erik2point0

25) scotward: Attack Y3S Erik2point0



24001)
Variants: "Hard time"
Started: 2013.5.27, Ended: 2013.5.28
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3 Dlwillson

2) wil: Homeworld Y2 B1 G3

3) dlwillson: Build G1 Dlwillson
	wil: I  look forward to more education

4) wil: Build G1 Wil
	dlwillson: From last game: The "gun" rule: When the other "goes for his gun", go for yours. When he gets a red ship, you get one, too.
	dlwillson: Also from last game: Each ship is worth roughly the number of it's pips, plus one for each step toward the opponent. So, a big in his orbit is worth 5, approximately.
	dlwillson: Also, also from last game: If the opponent will have two or more turns to recover from the kicking you're about to give him before you can give him another kicking, don't overspend on this kicking.

5) dlwillson: Trade G1 Y1 Dlwillson

6) wil: Trade G1 Y1 Wil

7) dlwillson: B Y2 Dlwillson
	wil: oops didn't mean to hit that...


8) wil: Build Y2 Wil

9) dlwillson: D Y1 Dlwillson G2 Field

10) wil: Discover Y1 Wil G3 Aaarghhh

11) dlwillson: Build Y3 Field

12) wil: Build Y3 Aaarghhh

13) dlwillson: Discover Y3 Field B3 Sky

14) wil: Discover Y2 Wil Y3 Phooey

15) dlwillson: Trade Y3 R3 Sky

16) wil: Trade G3 R3 Wil

17) dlwillson: Build Y3 Field
	wil: yiikes

	dlwillson: I know, right. The last few moves have been bad for you, and I don't see an easy way for you to have gotten out of it. At least now the pressure's off for one move. Maybe two...
	wil: oh crap it is all over....   so where did it all go wrong...  I almost switched out before the Y3s so to put a Y1 in the way
	wil: embarrassing loss....wow
	dlwillson: That'll be another good one to replay. You let me run the bank in my favor.
Incidentally, I didn't see the end coming. Did you resign over the material advantage I had?
	wil: I had no green, could not do anything anywhere....couldn't change back, you move in with your red and it is over..
	dlwillson: You could've moved your Y3 from argh to wil and turned it green, I think. It would've cost you two turns, and I probably might've been able to build the y3 away from you, so it wasn't going well. Feel free to start another, if you like. If you're learning, but you don't feel like you're going to get a win, feel free to start an un-rated game.
	wil: heck I don't care what my ratings look like...i really appreciate the game and the lessons....it looked like I was gonna be a step behind and my mistakes would be more likely than yours...   I don't feel right running in circles wasting time of better players...


24040)
Started: 2013.5.28, Ended: 2013.5.31
Participants: scotward (S), Erik2point0 (N)
Winner: scotward

1) Erik2point0: Homeworld G3 B1 R3

2) scotward: Homeworld R1 B2 G3

3) Erik2point0: Build R1 Erik2point0

4) scotward: Build G1 Scotward

5) Erik2point0: Trade R1 Y1 Erik2point0

6) scotward: Build G1 Scotward

7) Erik2point0: Build Y1 Erik2point0

8) scotward: Trade G1 Y1 Scotward

9) Erik2point0: Build Y2 Erik2point0

10) scotward: Build Y2 Scotward

11) Erik2point0: Trade Y1 G1 Erik2point0

12) scotward: Discover Y2 Scotward B3 Spica

13) Erik2point0: Discover Y2 Erik2point0 R2 Degoba

14) scotward: Build Y1 Scotward

15) Erik2point0: Build Y2 Erik2point0

16) scotward: Discover Y1 Scotward B3 Cygnus

17) Erik2point0: Trade Y2 G2 Erik2point0

18) scotward: Sacrifice G3 Scotward
Build Y2 Cygnus
Build Y3 Spica
Build Y3 Scotward

19) Erik2point0: Build Y3 Erik2point0

20) scotward: Move Y3 Spica Degoba

21) Erik2point0: Sacrifice Y2 Degoba
Move G2 Erik2point0 Degoba
Move G2 Degoba Spica

22) scotward: Trade Y2 R2 Spica

23) Erik2point0: Sacrifice G2 Spica
Build R1 Erik2point0
Pass

24) scotward: Sacrifice Y1 Scotward
Move R2 Spica Degoba

25) Erik2point0: Discover Y3 Erik2point0 B2 Hoth

26) scotward: Trade Y2 R2 Cygnus

27) Erik2point0: Move R1 Erik2point0 Hoth

28) scotward: Discover R2 Cygnus G2 Dune

29) Erik2point0: Move G1 Erik2point0 Hoth

30) scotward: Build R1 Dune

31) Erik2point0: Build R3 Hoth

32) scotward: Build R3 Dune

33) Erik2point0: Move R3 Hoth Cygnus

34) scotward: Sacrifice Y3 Degoba
Move R2 Degoba Erik2point0
Move R1 Dune Erik2point0
Move R2 Dune Erik2point0
Catastrophe Erik2point0 R

35) Erik2point0: Sacrifice Y3 Hoth
Move R1 Hoth Cygnus
Move R3 Cygnus Hoth
Move R3 Hoth Erik2point0

36) scotward: Move Y1 Cygnus Dune

37) Erik2point0: Trade R1 Y1 Cygnus

38) scotward: Build Y2 Dune

39) Erik2point0: Build Y2 Erik2point0

40) scotward: Move R3 Dune Cygnus

41) Erik2point0: Move Y1 Cygnus Dune

42) scotward: Build Y2 Scotward

43) Erik2point0: Build Y3 Dune
Catastrophe Dune Y

44) scotward: Move Y2 Scotward Cygnus

45) Erik2point0: Build Y1 Erik2point0

46) scotward: Move R3 Cygnus Hoth

47) Erik2point0: Sacrifice Y1 Erik2point0
Discover G1 Hoth B1 Alderan

48) scotward: Build G1 Scotward

49) Erik2point0: Build G2 Alderan

50) scotward: Move G1 Scotward Cygnus

51) Erik2point0: Trade G1 Y1 Alderan

52) scotward: Move Y2 Cygnus Hoth

53) Erik2point0: Discover G2 Alderan Y2 Tatooine

54) scotward: Trade R3 G3 Hoth

55) Erik2point0: Move R3 Erik2point0 Hoth

56) scotward: Move Y2 Hoth Erik2point0

57) Erik2point0: Sacrifice Y1 Erik2point0
Move G2 Tatooine Erik2point0

58) scotward: Sacrifice Y2 Erik2point0
Move G3 Hoth Erik2point0
Pass
	Erik2point0: Aaaaaaaaarg

59) Erik2point0: Move G2 Erik2point0 Hoth

60) scotward: Trade G3 R3 Erik2point0



24027)
Started: 2013.5.28, Ended: 2013.8.20
Participants: ts52 (S), mnkr (N)
Winner: ts52

1) mnkr: Homeworld B2 Y1 G3

2) ts52: Homeworld Y1 B3 G3
	mnkr: Good game, I'm new at this game.

3) mnkr: Build G1 Mnkr
	ts52: Thanks. You have a good game too. Feel free to ask questions.

4) ts52: Build G1 Ts52

5) mnkr: Discover G1 Mnkr Y3 Lsdr

6) ts52: Discover G1 Ts52 B2 Gonzo

7) mnkr: Build G1 Mnkr

8) ts52: Build G2 Gonzo

9) mnkr: Build G2 Lsdr

10) ts52: Trade G2 Y2 Gonzo

11) mnkr: Discover G1 Lsdr Y2 Dnar

12) ts52: Build G2 Gonzo

13) mnkr: Trade G1 Y1 Mnkr

14) ts52: Build Y2 Gonzo

15) mnkr: Discover Y1 Mnkr G3 Unr

16) ts52: Discover Y2 Gonzo B3 Grover

17) mnkr: Build Y3 Unr

18) ts52: Build Y3 Gonzo

19) mnkr: Discover Y3 Unr B2 Nator

20) ts52: Trade Y3 R3 Gonzo

21) mnkr: Build G1 Dnar

22) ts52: Trade G3 R3 Ts52

23) mnkr: Trade Y3 R3 Nator

24) ts52: Move G1 Gonzo Ts52

25) mnkr: Build Y3 Unr

26) ts52: Build Y3 Gonzo

27) mnkr: Move Y1 Unr Nator

28) ts52: Build R1 Gonzo

29) mnkr: Build G2 Lsdr

30) ts52: Build G3 Gonzo

31) mnkr: Move G2 Lsdr Nator

32) ts52: Move R3 Gonzo Lsdr

33) mnkr: Sacrifice G2 Lsdr
Build G2 Nator
Build R1 Nator

34) ts52: Move G2 Gonzo Lsdr

35) mnkr: Move R1 Nator Unr
	mnkr: very good! i'm almost losing my religion, hehe

36) ts52: Move R3 Lsdr Dnar

37) mnkr: Move R3 Nator Lsdr

38) ts52: Move G2 Lsdr Gonzo

39) mnkr:
Build R1 Unr

40) ts52: Attack G1 Dnar

41) mnkr: Move G1 Dnar Lsdr

42) ts52: Move R3 Dnar Grover

43) mnkr: Build R2 Lsdr

44) ts52: Move R3 Grover Nator

45) mnkr: Move R3 Lsdr Gonzo

46) ts52: Attack R3 Gonzo

47) mnkr: Move R2 Lsdr Dnar

48) ts52: Attack G2 Nator

49) mnkr: Sacrifice G1 Lsdr
Build Y3 Unr
	mnkr: wo I thought that It couldn't be done! my god, 

50) ts52: Attack Y1 Nator
	ts52: Yeah, attacks are tricky to figure out. Red lets you attack any ship that is the same size or smaller than your largest ship in the same system.

	ts52: there's a resignation button under the box where you enter your move
	mnkr: thanks
good game!


24034)
Variants: "Hard time"
Started: 2013.5.29, Ended: 2013.6.5
Participants: dlwillson (S), Subhan64 (N)
Winner: dlwillson

1) Subhan64: Homeworld Y1 B2 G3

2) dlwillson: Homeworld B3 R1 G3 Dlwillson

3) Subhan64: Build G1 Subhan64

4) dlwillson: Build G1 Dlwillson

5) Subhan64: Discover G1 Subhan64 Y3 Bigbird

6) dlwillson: Trade G1 Y1 Dlwillson

7) Subhan64: Build G1 Subhan64

8) dlwillson: Build Y1 Dlwillson

9) Subhan64: Trade G3 Y3 Subhan64

10) dlwillson: B Y2 Dlwillson

11) Subhan64: Build Y2 Subhan64

12) dlwillson: D Y1 Dlwillson B2 Sky

13) Subhan64: Discover G1 Subhan64 Y3 Omicronpersei8

14) dlwillson: S Y2 Dlwillson
M Y1 Sky Bigbird
M Y1 Bigbird Subhan64
Catastrophe Subhan64 Y
	Subhan64: gg, thanks!




24049)
Variants: "Unrated, Hard time"
Started: 2013.5.29, Ended: 2013.6.19
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: Homeworld B3 R1 G3 Dlwillson

2) wil: Homeworld R2 B1 G3

3) dlwillson: Build G1 Dlwillson

4) wil: Build G1 Wil

5) dlwillson: Trade G1 Y1 Dlwillson

6) wil: Trade G1 Y1 Wil

7) dlwillson: Build G1 Dlwillson

8) wil: Build G1 Wil

9) dlwillson: T G1 B1 Dlwillson

10) wil: Trade G1 B1 Wil

11) dlwillson: B B2 Dlwillson

12) wil: Build B2 Wil

13) dlwillson: D B1 Dlwillson G2 Forest

14) wil: Discover B2 Wil Y3 Camp Wilson

15) dlwillson: T B2 Y2 Dlwillson

16) wil: Build G1 Wil

17) dlwillson: B B2 Forest

18) wil: Discover B1 Wil G3 Fortcourage

19) dlwillson: T B2 R2 Forest

20) wil: Build B2 Fortcourage

21) dlwillson: Sacrifice Y1 Dlwillson
Move R2 Forest Fortcourage

22) wil: Sacrifice Y1 Wil
Discover B2 Fortcourage Y2 Wakeup
	dlwillson: Gun rule!
	wil: when someone gets a gun, i gotta getta gun.....crap, I will learn someday....just slow...

23) dlwillson: A B1 Fortcourage

24) wil: Trade B2 R2 Wakeup

25) dlwillson: B B2 Forest

26) wil: Build G1 Wil

27) dlwillson: T B2 G2 Forest

28) wil: Trade G1 Y1 Wil

29) dlwillson: B B2 Forest

30) wil: M G1 Wil Camp

	wil: ah phooey...hope all is alright...


24035)
Variants: "Hard time"
Started: 2013.5.31, Ended: 2013.6.7
Participants: wil (S), ahzipeanut (N)
Winner: wil

1) ahzipeanut: Homeworld R3 B1 G3

2) wil: Homeworld Y2 B1 G3

3) ahzipeanut: Build G1 Ahzipeanut


	wil: thx for the game, good luck
	wil: Welcome to SDG...I'm a newbie to the group...and homeworlds but am playng a lot of games and trying to learn...you?

4) wil: Build G1 Wil

	wil: aaargghh...  I tried to tell you....


24062)
Started: 2013.5.31, Ended: 2013.6.6
Participants: scotward (S), Erik2point0 (N)
Winner: Erik2point0

1) Erik2point0: Homeworld G3 B1 R3

2) scotward: Homeworld R3 B2 G3

3) Erik2point0: Build R1 Erik2point0
	scotward:  did you start with the exact same homeworld?

4) scotward: Build G1 Scotward

5) Erik2point0: Build R1 Erik2point0

6) scotward: Trade G1 Y1 Scotward

7) Erik2point0: Trade R1 Y1 Erik2point0

8) scotward: Build G1 Scotward

9) Erik2point0: Trade R1 G1 Erik2point0

10) scotward: Build Y1 Scotward

11) Erik2point0: Build Y2 Erik2point0

12) scotward: Build Y2 Scotward

13) Erik2point0: Trade Y1 B1 Erik2point0

14) scotward: Trade Y2 B2 Scotward

15) Erik2point0: Build R1 Erik2point0

16) scotward: Trade G1 R1 Scotward

17) Erik2point0: Build G1 Erik2point0

18) scotward: Discover R1 Scotward B1 Shatner

19) Erik2point0: Discover G1 Erik2point0 B2 Rivendell

20) scotward: Build B3 Scotward

21) Erik2point0: Build B3 Erik2point0

22) scotward: Move B3 Scotward Shatner

23) Erik2point0: Trade B3 G3 Erik2point0

24) scotward: Build B3 Scotward

25) Erik2point0: Build B3 Erik2point0

26) scotward: Trade B2 G2 Scotward

27) Erik2point0: Discover B1 Erik2point0 G2 Bree

28) scotward: Trade B3 Y3 Scotward

29) Erik2point0: Move G1 Erik2point0 Bree

30) scotward: Move G2 Scotward Shatner

31) Erik2point0: Build Y1 Erik2point0

32) scotward: Sacrifice Y3 Scotward
Move B3 Shatner Bree
Move R1 Shatner Bree
Discover G2 Shatner Y2 Nimoy

33) Erik2point0: Move R3 Erik2point0 Nimoy

34) scotward: Discover G2 Nimoy Y3 Doohan

35) Erik2point0: Sacrifice R1 Erik2point0
Attack R1 Bree

36) scotward: Trade B3 R3 Bree

37) Erik2point0: Sacrifice G3 Erik2point0
Build R1 Bree
Build R1 Bree
Build G1 Bree
Catastrophe Bree Red

38) scotward: Move G2 Doohan Rivendell

39) Erik2point0: Trade B3 G3 Erik2point0

40) scotward: Build G2 Scotward

41) Erik2point0: Move Y1 Erik2point0 Bree

42) scotward: Sacrifice Y1 Scotward
Move G2 Rivendell Erik2point0

43) Erik2point0: Move G3 Erik2point0 Nimoy

44) scotward: Sacrifice Y1 Scotward
Move G2 Erik2point0 Bree
Catastrophe Bree G

45) Erik2point0: Build Y1 Erik2point0

46) scotward: Trade G2 Y2 Scotward

47) Erik2point0: Build R1 Nimoy

48) scotward: Build Y1 Scotward

49) Erik2point0: Trade Y1 R1 Erik2point0

50) scotward: Discover Y2 Scotward G1 Nichols

51) Erik2point0: Build G1 Rivendell

52) scotward: Build Y1 Nichols

53) Erik2point0: Trade G1 Y1 Rivendell

54) scotward: Move Y1 Nichols Rivendell

55) Erik2point0: Build Y3 Erik2point0

56) scotward: Build Y3 Nichols

57) Erik2point0: Discover R1 Nimoy G1 Rohan

58) scotward: Build Y3 Scotward

59) Erik2point0: Sacrifice G3 Nimoy
Build R1 Rohan
Build R2 Rohan
Build G2 Rivendell

60) scotward: Sacrifice Y3 Scotward
Move Y2 Nichols Rivendell
Move Y2 Rivendell Erik2point0
Move Y1 Rivendell Erik2point0
Catastrophe Erik2point0 Y

61) Erik2point0: Move R3 Nimoy Erik2point0

62) scotward: Move Y3 Nichols Rivendell

63) Erik2point0: Trade G2 Y2 Rivendell

64) scotward: Trade Y3 R3 Rivendell

65) Erik2point0: Move Y2 Rivendell Rohan

66) scotward: Sacrifice Y1 Scotward
Move R3 Rivendell Rohan

67) Erik2point0: Sacrifice Y2 Rohan
Move R1 Rohan Scotward
Move R2 Rohan Scotward

68) scotward: Attack R1N Rohan



24050)
Variants: "Unrated, Hard time"
Started: 2013.6.1, Ended: 2013.6.4
Participants: pallas (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H G2 B3 Y3
	pallas: h g2 b1 y3



24067)
Variants: "Unrated, Hard time"
Started: 2013.6.1, Ended: 2013.6.4
Participants: pallas (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3



24059)
Variants: "Hard time"
Started: 2013.6.5, Ended: 2013.6.10
Participants: Marmalade (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) Marmalade: Homeworld Y2 B3 G3
	Marmalade: homeworld Y2 R3 G3

3) wil: Build G1 Wil

4) Marmalade: Build G1 Marmalade

5) wil: Discover G1 Wil Y3 Fortcourage

6) Marmalade: Discover G1 Marmalade B1 Toast

7) wil: Build G1 Fortcourage

8) Marmalade: Build G2 Toast

9) wil: Build G2 Fortcourage

10) Marmalade: Trade G1 Y1 Toast

11) wil: Discover G1 Fortcourage B1 Dryden

12) Marmalade: Build G1 Marmalade

13) wil: Discover G1 Fortcourage Y1 Y1

14) Marmalade: Discover Y1 Toast G3 Moose

15) wil: Build G2 Wil

16) Marmalade: Build Y1 Moose

17) wil: Trade G2 Y2 Wil

18) Marmalade: Trade G1 R1 Marmalade

19) wil: Trade G1 R1 Dryden

20) Marmalade: Move Y1 Moose Toast

21) wil: Build Y3 Wil

22) Marmalade: Move Y1 Moose Wil
Catastrophe Wil Y

23) wil: Build G1 Wil
	wil: I just tried to undo this as this layout made me miss what was going on....

24) Marmalade: Build G1 Toast
	Marmalade: Ah, sorry man. No worries, we can always rematch if you'd like.

25) wil: Sacrifice G3 Wil
Build G2 Y1
Build G3 Wil
Build G3 Fortcourage

26) Marmalade: Move Y1 Toast Marmalade

27) wil:
Trade G1 Y1 Wil

28) Marmalade: Build Y2 Marmalade

29) wil: Move Y1 Wil Marmalade
Catastrophe Marmalade Y

30) Marmalade: Trade G2 R2 Toast

31) wil: Sacrifice G3 Fortcourage
Build G1 Y1
Build G2 Wil
Build G3 Wil

32) Marmalade: Trade G1 Y1 Toast
	wil: ya let me even up the game...

33) wil: Trade G3 Y3 Wil
	Marmalade: Yep. This is my second game of Homeworlds - I've wanted to play forever, but never gotten around to it :)
	wil: well you are doing quite well then I've been playing a couple of months..but a lot of games...it is a great game with a steep learning curve...lose a lot...learn a lot...

34) Marmalade: Trade G3 R3 Marmalade
	wil: simple hints...always get a gun when they have a gun (r) in general, make sure you get whatever they get (r, y, b) don't get skunked in any economy.  and WATCHOUT whenver they trade for a Y2 or Y3...

35) wil: Sacrifice G3 Wil
Build G1 Wil
Build G3 Wil
Build R1 Dryden
	wil: do you have the piece at home?  Often best to set them up, so you can follow the play and arrange the star systems in a fashion easier to see than this.
	Marmalade: Cheers - clearly the Y3 was to threaten catastrophe in my home system (emptying out y1, probably). so trading for the R3 was just defence.

First game I lost because my mind blanked regarding sacrificing red ships - just didn't occur to me.


	Marmalade: I've ordered my pyramids - should be turning up in a couple of weeks.
	wil: oops....tight squeeze now...you made the move to stop checkmate...but now have no power to build new ships..
	Marmalade: Yeah, but desperation really, I could have moved the G3 away I suppose - but this seemed more sensible.

36) Marmalade: Sacrifice Y1 Toast
Move R3 Marmalade Dryden

37) wil: Sacrifice Y3 Wil
Move R1 Dryden Marmalade
Move R1 Dryden Marmalade
Move G1 Y1 Marmalade
	Marmalade: I don't think there's much hope for me left :)

	wil: ouch...no big gun at home?  no way to move?  

38) Marmalade: Sacrifice R3 Dryden
Attack R1N Marmalade
Attack R1N Marmalade
Attack G1N Marmalade
	Marmalade: Yeah, just moving in a G2 ship would have done it, or sacrificing a G1 to build another red in dryden (and a catastrophe)
	wil: can't move or build..the only thing you can do is trade or attack....either way I  grow another red ship and catastrophe red in your system.....yes your doom is inevitable....but I did make a mistake you could prolong...

39) wil: Trade G2 R2 Wil
	Marmalade: Still going to suffer from a lack of large ships though.
	wil: I'll be glad to play again, and discuss what I've learned...
	wil: I'll be glad to play again, and discuss what I've learned...
	wil: oops...nice play...that I didn't see??
	wil: I may have just gave you the game back, maybe I can learn from you!

40) Marmalade: Trade R1 Y1 Marmalade

41) wil: Move G2 Y1 Marmalade
	Marmalade: I still don't think there's a way out, but I'll give it a go.

42) Marmalade: Build G2 Marmalade

43) wil: Sacrifice R2 Wil
Attack G2 Marmalade
Attack R1 Marmalade

44) Marmalade: Attack R1N Marmalade

45) wil: Build G3 Y1

46) Marmalade: Build G3 Marmalade
Catastrophe Marmalade G

47) wil: Trade G3 R3 Wil
	wil: You did it for me??

48) Marmalade: Trade R2 G2 Toast

49) wil: Move G3 Y1 Marmalade

50) Marmalade: Sacrifice G2 Toast
Build Y1 Marmalade
Build Y2 Marmalade

51) wil: Build R1 Wil
	Marmalade: Yep, forgot I didn't have any green ships left. Was going to build a couple of greens and force a catastrophe.
	wil: another nice move...you really understand the powers of the pieces

52) Marmalade: Sacrifice Y2 Marmalade
Move R1 Marmalade Wil
Move R1 Marmalade Wil
Catastrophe Wil R

53) wil: Sacrifice G3 Marmalade
Build G1 Fortcourage
Build G2 Y1
Build G2 Wil
	Marmalade: Cheers, but it's all a little futile.
	wil: too much fun!

54) Marmalade: Trade Y1 R1 Marmalade
	wil: its like herdin cats

55) wil: Trade G2 R2 Wil

56) Marmalade: Discover Y1 Marmalade G2 Desperation

57) wil: Trade G1 Y1 Wil

58) Marmalade: Build Y2 Desperation

59) wil: Move G2 Y1 Marmalade

60) Marmalade: Sacrifice Y2 Desperation
Move Y1 Desperation Marmalade
Move R1 Marmalade Wil
	wil: I was thinking after the our second debacle, I should just sit back and accumulate a large force of ships..with my factory abilities.....but then said...no I think I can put an end to his misery rather than drag this out....it appears i made yet another mistake in this regard....
	Marmalade: If there's a mistake here, I'm not seeing it.


61) wil: Attack R1 Wil
	wil: Oh I think I've finally got you tied up now....but prior I should have just been building large ships of all varieties instead of trying to end it...

62) Marmalade: Trade Y1 G1 Marmalade
	wil: no use leaving any of your crew alive to repopulate....but thanks for the ship.  That is  a great theory of homeworlds...ships are monsterous undertakings to build, major capital investment...why would one ever destroy a ship of anothers vs just taking it?  And you only sac your own when it provides a dramatic advantage...
	Marmalade: To be honest, you could have ended it a while ago - any time you had moved a size 2 ship into my homeworld, you could have sacrificed your 2 red ship at home to capture mine.

63) wil: Sacrifice R1 Wil
Attack G1 Marmalade
	wil: I only wish I had played that well my second game...
	Marmalade: Cheers :)

Good game. I'll run over the pgn's I think, try and work out where I went badly wrong.

If you do want another game, give me a shout.
	wil: up for a challenge any time....2nd time playing you played real well...if at my games you'll see I've played a lot and lost a lot....every time I see different things come at me I learn something....but there is a lot involved....   whenever you are ready challenge me again... you play fairly regular when youget online (this needs that feature, so you  know when someone else is willing to sit for a couple hours and play)  Sometimes, you can get a few moves in a day, sometimes each move takes a few days!!



23988)
Variants: "Hard time"
Started: 2013.6.5, Ended: 2013.6.7
Participants: Marmalade (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) Marmalade: Homeworld G3 B2 R3
	SilentTitan: Welcome!

3) SilentTitan: Build G1 Silenttitan
	Marmalade: Cheers! I've never played Homeworlds, but I've been meaning to for ages - my pyramids should turn up in a few weeks :)

4) Marmalade: Build R1 Marmalade
	SilentTitan: Nice.... If you have any questions, I will attempt to answer them.  Good Luck to you.

5) SilentTitan: Build G1 Silenttitan

6) Marmalade: Build R1 Marmalade

7) SilentTitan: Trade G1 Y1 Silenttitan

8) Marmalade: Trade R1 Y1 Marmalade

9) SilentTitan: Trade G1 R1 Silenttitan

10) Marmalade: Discover R1 Marmalade B1 Hyperion

11) SilentTitan: Build R2 Silenttitan

12) Marmalade: Trade R1 G1 Hyperion

13) SilentTitan: Build G1 Silenttitan

14) Marmalade: Build Y1 Marmalade

15) SilentTitan: Discover G1 Silenttitan Y3 Sol

16) Marmalade: Build Y2 Marmalade

17) SilentTitan: Build G1 Silenttitan

18) Marmalade: Sacrifice Y2 Marmalade
Move R3 Marmalade Hyperion
Move R3 Hyperion Sol

19) SilentTitan: Build Y2 Silenttitan

20) Marmalade: Attack G1N Sol

21) SilentTitan: Sacrifice Y2 Silenttitan
Move G3 Silenttitan Sol
Move G3 Sol Hyperion
	Marmalade: This is probably stupid, but I'll do it anyway and work out where I went wrong later...


22) Marmalade: Move R3 Sol Hyperion
	Marmalade: (Actually, changed my mind.)

23) SilentTitan: Sacrifice R1 Silenttitan
Attack R3 Hyperion South

24) Marmalade: Build G2 Sol

25) SilentTitan: Sacrifice Y1 Silenttitan
Move G3 Hyperion Marmalade
	Marmalade: Ah yes, that :)


26) Marmalade: Sacrifice G2 Sol
Build Y1 Marmalade
Build Y2 Marmalade
	Marmalade: I think you've got this one - I was tempted to catastrophe your homeworld earlier, but then you'd have the only 3-ship. I just didn't consider what sacrificing reds could do.

27) SilentTitan: Pass
Catastrophe Marmalade Yellow
	SilentTitan: I believe so.. but I've seen weirder things happen.  However, lets play again if you're up for it.

	Marmalade: Yep, no problem - I'll accept your standing challenge.



24093)
Variants: "Unrated, Hard time"
Started: 2013.6.5, Ended: 2013.6.13
Participants: Subhan64 (S), dlwillson (N)
Winner: Subhan64

1) dlwillson: Homeworld B3 G2 Y3

2) Subhan64: Homeworld G1 B2 Y3

3) dlwillson: B Y1 Dlwillson

4) Subhan64: Build Y1 Subhan64

5) dlwillson: T Y1 R1 Dlwillson

6) Subhan64: Trade Y1 G1 Subhan64

7) dlwillson: B R1 Dlwillson

8) Subhan64: Build Y1 Subhan64



24099)
Variants: "Hard time"
Started: 2013.6.7, Ended: 2013.6.12
Participants: Marmalade (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) Marmalade: Homeworld R3 G1 B3

3) SilentTitan: Build G1 Silenttitan

4) Marmalade: Build B1 Marmalade

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Marmalade: Trade B1 Y1 Marmalade

7) SilentTitan: Build G1 Silenttitan

8) Marmalade: Discover Y1 Marmalade G2 Quoth

9) SilentTitan: Build Y1 Silenttitan

10) Marmalade: Build Y2 Quoth

11) SilentTitan: Build Y2 Silenttitan

12) Marmalade: Move Y2 Quoth Marmalade

13) SilentTitan: Discover Y1 Silenttitan G3 Sol

14) Marmalade: Build Y2 Marmalade

15) SilentTitan: Trade Y1 R1 Silenttitan

16) Marmalade: Trade Y2 R2 Marmalade

17) SilentTitan: Build G1 Silenttitan

18) Marmalade: Build Y1 Marmalade

19) SilentTitan: Discover G1 Silenttitan Y3 Soul

20) Marmalade: Trade Y2 G2 Marmalade

21) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Soul
Build G3 Silenttitan
Build G3 Silenttitan

22) Marmalade: Move G2 Marmalade Quoth

23) SilentTitan: Discover G2 Soul Y2 Sole

24) Marmalade: Build Y2 Marmalade

25) SilentTitan: Sacrifice G3 Silenttitan
Build Y3 Sol
Build Y3 Silenttitan
Build G3 Sole
	Marmalade: These settlers are pretty imaginative.
	SilentTitan: lol, I don't believe anyone has ever commented on my star name choices before


26) Marmalade: Build B1 Marmalade

27) SilentTitan: Trade G3 B3 Silenttitan
	Marmalade: I'm really bad at setting up "factory" things - or in managing the stash in general.
	SilentTitan: most beginners are... it's a component of the game that comes with actually playing it and having someone mess you over with it a few times. 
	SilentTitan: to that end.. if you want to pick up this game and start another I have no problem with that... or if you'd like to continue to play this out for the knowledge I have no issue with that either. 

28) Marmalade: Build G3 Quoth
	Marmalade: Oh no, I'm not suggesting I'm giving up! I'd much rather be soundly beaten and have a game I can pull apart later, then abandon it as soon as it looks like I'm in trouble.

29) SilentTitan: Move G1 Soul Quoth
Catastrophe Quoth Green

30) Marmalade: Move Y1 Marmalade Sole

31) SilentTitan: Sacrifice B3 Silenttitan
Trade G2 B2 Sole
Trade Y1 B1 Sol
Trade Y3 G3 Silenttitan

32) Marmalade: Trade Y2 G2 Marmalade

33) SilentTitan: Sacrifice G3 Sole
Build B1 Sol
Build B2 Sol
Build B3 Sole

34) Marmalade: Sacrifice B1 Marmalade
Trade B3 Y3 Marmalade

35) SilentTitan: Sacrifice R1 Silenttitan
Attack Y1 Sole South

36) Marmalade: Discover G2 Marmalade Y2 Seoul
	Marmalade: Sorry about the undo, being stupid.

37) SilentTitan: Sacrifice B2 Sol
Trade Y1 G1 Sole
Trade B1 R1 Sol
	SilentTitan: don't worry about undo I am always using that.... the worst part is to make two dumb mistakes in a row.. then you're stuck with the second mistake and for some reason it's always worse the second time.

38) Marmalade: Build Y1 Marmalade
	Marmalade: I suspect that I'm far too behind with this one. This would be my third game, but the third different way of losing, which is good to know :)

39) SilentTitan: Trade B2 R2 Sole
	SilentTitan: Third different way of losing? how so?
	Marmalade: Well, first game against you I think the major turning point was that I just blanked insofar as sacrificing reds worked.

The second, with someone else, I lost mostly because of my stack management, but also because I made a crucial error whilst half asleep one morning.

This one I've been massively outclassed economically - my actions have been purely reactive, and generally less efficient. You have control over everything, and dominance in most colours and ship sizes, with nowhere for me to excel.

You're not immediately threatening my homeworld, but it will take something major to claw back any kind of initiative.

40) Marmalade: Move R2 Marmalade Seoul
	SilentTitan: oh... I was thinking ... in different terms .... you lose by losing the stars in your homeworld or you lose by losing all the ships in your homeworld and I couldn't for the life of me figure out how you could lose a third way. 


41) SilentTitan: Build Y1 Sol

42) Marmalade: Discover Y1 Marmalade B2 Sool
	Marmalade: Do you think it's a little strange to have a text-based interface for this? It works well, and relates directly to the pgn, but given that the options are limited to begin with there's no reason why it couldn't be done with drop-down menus, tick-boxes or whatever.
	SilentTitan: True. however, I also play the chase game on this site and one of the things that bugs me about that game is every possible move for each turn is offered to you on a menu. I'd rather not have the computer show me all my possible choices. 

43) SilentTitan: Discover Y1 Sol G2 Tic

44) Marmalade: Build R1 Seoul

45) SilentTitan: Trade B3 Y3 Sole

46) Marmalade: Move R1 Seoul Marmalade

47) SilentTitan: Build Y1 Tic

48) Marmalade: Move R2 Seoul Marmalade

49) SilentTitan: Sacrifice Y3 Sol
Move Y1 Tic Marmalade
Move Y1 Tic Marmalade
Move R2 Sole Marmalade
Catastrophe Marmalade Red

50) Marmalade: Move G2 Seoul Marmalade

51) SilentTitan: Sacrifice Y3 Sole
Move G1 Sole Marmalade
Move G1 Silenttitan Sol
Move G1 Sol Marmalade
Catastrophe Marmalade Green

	SilentTitan: Thanks for playing. 
	Marmalade: Cheers for that - I lost that one a long time ago, but it was worth playing out. Thank you.



24127)
Variants: "Hard time"
Started: 2013.6.10, Ended: 2013.7.8
Participants: Aristos (S), Subhan64 (N)
Winner: Aristos

1) Subhan64: Homeworld B1 Y2 G3
	Aristos: Good luck.

2) Aristos: Homeworld G3 B2 Y3

3) Subhan64: Build G1 Subhan64
	Subhan64: thanks, you too!


4) Aristos: Build Y1 Aristos

5) Subhan64: Trade G1 Y1 Subhan64

6) Aristos: Trade Y1 B1 Aristos

7) Subhan64: Build G1 Subhan64

8) Aristos: Build B1 Aristos

9) Subhan64: Build Y1 Subhan64

10) Aristos: Discover B1 Aristos Y1 Spark

11) Subhan64: Trade Y1 G1 Subhan64

12) Aristos: Trade Y3 G3 Aristos

13) Subhan64: Discover G1 Subhan64 B3 Papasmurf

14) Aristos: Sacrifice G3 Aristos
Build B2 Spark
Build B2 Spark
Build B3 Aristos
	Aristos: Ping!

15) Subhan64: Trade G3 B3 Subhan64

16) Aristos: Sacrifice B2 Spark
Trade B3 Y3 Aristos
Trade B2 G2 Spark

17) Subhan64: Trade G1 R1 Papasmurf

18) Aristos: Build B2 Spark

19) Subhan64: Build G1 Subhan64

20) Aristos: Sacrifice G2 Spark
Build B2 Aristos
Build B3 Spark

21) Subhan64: Build Y1 Subhan64

22) Aristos: Sacrifice B2 Aristos
Trade B2 Y2 Spark
Trade B3 R3 Spark

23) Subhan64: Discover G1 Subhan64 B3 Blueberry

24) Aristos: Move R3 Spark Blueberry

25) Subhan64: Sacrifice Y1 Subhan64
Discover G1 Blueberry B2 Crunch

26) Aristos: Build B2 Aristos

27) Subhan64: Discover Y1 Subhan64 G3 Kermit

28) Aristos: Trade R3 G3 Blueberry

29) Subhan64: Trade B3 Y3 Subhan64

30) Aristos: Sacrifice G3 Blueberry
Build B3 Spark
Build B3 Spark
Build Y1 Aristos
	Aristos: ping
	Aristos: ping ping

	Aristos: I did not force the resignation... it happened automatically because this was a ladder game.
	Subhan64: Yes, sorry, was out of town & didn't put enough vacation time in :( Oh well!


24121)
Variants: "Hard time"
Started: 2013.6.10, Ended: 2013.6.18
Participants: Broccoli_Commander (S), wil (N)
Winner: Broccoli_Commander

1) wil: Homeworld B2 R1 G3
	Broccoli_Commander: Have a good game Sir!
	wil: Yea!!  I get to play a game while trying to climb the ladder...(instead of waiting for declines)!!

2) Broccoli_Commander: Homeworld B2 Y3 G3

3) wil: Build G1 Wil
	Broccoli_Commander: I know the pain, I've even kinda given up trying climbing higher because of this very reason
	wil: I've told them....they need to instigate a program...so the dead can be removed...

4) Broccoli_Commander: Build G1 Broccoli_commander
	Broccoli_Commander: Yeah for sure! But also the system is a bit stupid: I actually hesitated before accepting your challenge because I can only go *down* the ladder or, if I win, stay on the same spot!? 
==> why would I ever accept a challenge?

Well in the end I don't care about my rank so I accepted :-D Nevertheless it is much more interesting playing against the top players! Btw the worst thing is when an almost dead player still accepts the challenge: you then have to wait 3days between each turn till the #20 (i.e. 2 months!) even though you won on turn #5 (which was two weeks already). It strips out all of your motivation...


5) wil: Trade G1 R1 Wil
	wil: gad, I hear you....to me it is all about playing and learning...and when you lose you only go one down the ladder, when you do the denies at least you drop to the bottom.   I just wanna get up in that top 12-15 where it looks like they actuallly play games.

6) Broccoli_Commander: Trade G1 R1 Broccoli_commander

7) wil: Build R2 Wil

8) Broccoli_Commander: Build R2 Broccoli_commander

9) wil: T R1 Y1 Wil

10) Broccoli_Commander: Build G1 Broccoli_commander

11) wil: Build G1 Wil

12) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry

13) wil: Discover G1 Wil Y3 Y3

14) Broccoli_Commander: Move R2 Broccoli_commander Blueberry

15) wil: Move R2 Wil Y3

16) Broccoli_Commander: Build R1 Blueberry

17) wil: Build G1 Wil

18) Broccoli_Commander: Build G2 Broccoli_commander

19) wil: Build G2 Wil

20) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Broccoli_commander
Build G3 Broccoli_commander
Build G3 Blueberry

21) wil: Trade G1 B1 Wil

22) Broccoli_Commander: Trade R1 Y1 Blueberry
	wil: very nice...didnt see where the factory would be so advantageous....and how did you pick your moniker here?

23) wil: Build B1 Wil
	Broccoli_Commander: Thanks, well a factory is always useful ;)
About my moniker, well I came here to play homeworlds (I could try it live once and wanted to play more) and I came up with sth sounding both homeworlds-ish and very serious. Funnily I discovered afterwards that an online comic is also named broccoli commander.
And you, are you in anyway related to dlwillson or is it a "coincidence"?
	wil: coincidence...Iast name ...first name I believe, yeah I just didn't see I was setting you up for a factory....slowly learning.

24) Broccoli_Commander: Move G3 Blueberry Y3

25) wil: Discover R2 Y3 G1 G1

26) Broccoli_Commander: Trade G2 B2 Broccoli_commander

27) wil: Discover G1 Y3 Y1 Y1

28) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G3 Broccoli_commander
Build B3 Broccoli_commander

29) wil: Discover B1 Wil Y3 Y3a

30) Broccoli_Commander: Move B3 Broccoli_commander G1
	Broccoli_Commander: sorry for the undo

31) wil: Move G2 Wil Y3a
	wil: heck undo's aren't a problem...one should actually have a committ button here...so youcan see the lay of the land after a potential move prior to allowing it to become permanent...


I've lost a couple games becasuse after seeng what it looked like I wanted to change...yet the other had already moved.

32) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build B3 Broccoli_commander
Build B3 G1
	wil: i just gotta learn to bully

33) wil: Build Y2 Wil

34) Broccoli_Commander: Move B3 Broccoli_commander Y1
	Broccoli_Commander: beware of the factory it quickly gets out of control :-)
And note that you had a factory too! But not anymore since you moved the g2 from your homeworld...
	wil: had a factory...but no place to grow....some bully is in town taking over every place we settle!
	wil: had a factory...but no place to grow....some bully is in town taking over every place we settle!

35) wil: Move G1 Y1 Broccoli_commander

36) Broccoli_Commander: Sacrifice G2 Broccoli_commander
Build G2 Y3
Build Y2 Blueberry
	Broccoli_Commander: those damn bullies ^_^

37) wil: Build R1 G1

38) Broccoli_Commander: Sacrifice R2 Blueberry
Attack R1 G1
Attack R2 G1

39) wil: Discover Y1 Wil R3 R3

40) Broccoli_Commander: Move B3 Y1 Y3a
	wil: yeah...that was stupid...of course you'd sac one for two..
	wil: I'm digging myself so deep I need you to make about four major mistakes...

41) wil: Discover G2 Y3a Y1 Y1

42) Broccoli_Commander: Sacrifice Y2 Blueberry
Move G3 Y3 Wil
Move B3 Y3a Wil

43) wil: Attack B3 Wil
	Broccoli_Commander: Yeah I think it's pretty much over, but nasty surprises are always possible :-)  Although the lack of y3 ships really mitigates the possibilities 
	wil: he says as his chameleon moves in to control yet another peaceful star system...

44) Broccoli_Commander: Sacrifice R2 G1
Attack B3 Wil
Attack G3 Wil
	wil: I'm just hopin you woud oblige me another game (you know if you'd lose one to me it wouldn't take me six months of attempting to crawl over the masses of dead...and then i'd gladly lose one right back to you to regain your honor)

45) wil: Move B1 Y3a Wil
Catastrophe Wil B
	Broccoli_Commander: Sure! Always glad to actually play :-)
	Broccoli_Commander: But if I lose the next one, we can also continue playing outside the ladder (and meet back at the top ;-) )
	wil: ah you took my guns and I forgot to rebuild....a cavalcade of errors...

46) Broccoli_Commander: Attack Y2 Wil

	wil: I can solve that...


24139)
Started: 2013.6.14, Ended: 2013.6.21
Participants: thejackdiaz (S), EarlOfSlothel (N)
Winner: thejackdiaz

1) EarlOfSlothel: Homeworld B3 G2 Y3

2) thejackdiaz: Homeworld Y2 B1 G3
	EarlOfSlothel: MY ART
	EarlOfSlothel: SHAPE OF PLANE



24135)
Variants: "No undo, Unrated, Hard time"
Started: 2013.6.15, Ended: 2013.6.18
Participants: wil (S), Argel (N)
Winner: wil



24113)
Variants: "Hard time"
Started: 2013.6.18, Ended: 2013.7.11
Participants: wil (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) wil: Homeworld R3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) wil: Build G1 Wil

5) SilentTitan: Trade G1 Y1 Silenttitan
	wil: I don't think I've gone terribly wrong yet...   
	SilentTitan: Ha.... I think you're right.  

6) wil: Trade G1 Y1 Wil
	wil: I'd appreciate when you see me make what you would consider a poor move or a grevious mistake to point it out (take advantage of it by all means) but tell me where I went wrong and why...  I seem to make some biggies, but some small tactical ones that lead to a cumulative disadvantage that I don't understand....twould be appreciated...

7) SilentTitan: Build G1 Silenttitan
	SilentTitan: ok.. I will be glad to do that.

8) wil: Build G1 Wil
	SilentTitan: first I will be building up... trying to get to a position where I can use the G3 to my advantage.  Also I like to corner the yellows as you well know.  Additionally, I'm manipulating the bank so as to try putting you into making a bad selection, one that would allow me to get a 2-pip build and have you unable to because it would put you in danger of a catastrophe. 


9) SilentTitan: Discover G1 Silenttitan Y3 Sol
	wil: Thank you....  and you've already gone beyond...hints on strategy...thanx.

10) wil: Trade G1 R1 Wil

11) SilentTitan: Build G1 Silenttitan

12) wil: Build R1 Wil

13) SilentTitan: Build G1 Sol

14) wil: Build G2 Wil

15) SilentTitan: Build G2 Silenttitan

16) wil: Discover G2 Wil Y2 Y2
	wil: very nice move...

17) SilentTitan: Discover G2 Silenttitan G3 Soul

18) wil: Build G2 Wil

19) SilentTitan: Sacrifice G2 Soul
Build G2 Sol
Build G3 Silenttitan

20) wil: Move G2 Y2 Sol
Catastrophe Sol G

21) SilentTitan: Trade G3 R3 Silenttitan

22) wil: Discover R1 Wil Y2 Y2

23) SilentTitan: Discover R3 Silenttitan Y3 Sol

24) wil: Discover R1 Y2 G3 G3

25) SilentTitan: Move G1 Silenttitan Sol

26) wil: Build Y1 Wil

27) SilentTitan: Build R2 Sol

28) wil: Build Y2 Wil

29) SilentTitan: Build Y2 Silenttitan

30) wil: Discover Y1 Wil R2 R2

31) SilentTitan: Discover Y2 Silenttitan R3 Soul

32) wil: Build R2 G3

33) SilentTitan: Build G1 Silenttitan

34) wil: Discover Y2 Wil G2 G2

35) SilentTitan: Discover G1 Silenttitan Y3 Tic

36) wil: Sacrifice G3 Wil
Build Y2 G2
Build Y3 Wil
Build G1 Wil

37) SilentTitan: Move R3 Sol G2

38) wil: Sacrifice Y2 G2
Move Y2 G2 G3
Discover Y1 Wil B2 B2

39) SilentTitan: Build G2 Silenttitan

40) wil: Trade G1 B1 Wil
	SilentTitan: ok.. I undid this move and I feel I need to explain.  If you use your pyramids to process the turn I've backup up from.. you should see that you'd have been able to sac your y3 in wil and run both the yellows from g3 and r2 into my homeworld and cause a cat thereby winning you the game. 

41) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Sol
Build G3 Tic
Build G3 Silenttitan
	wil: color me confused?  won the game?  I would have only killed your yellows..you'd be left with a binary star and a g3 and my I'd have zero queen ships...

42) wil: Build Y2 G3
	SilentTitan: North's ship G3 was sacrificed in the SilentTitan system. North created a Y2 ship in the SilentTitan system. North created a G2 ship in the sol system. North created a G3 ship in the tic system. 

was the turn I undid.  in this case you can see I sac'ed the G3 in my homeworld and built a y2..  so at that point only the y1 and y2 were in my homeworld.

43) SilentTitan: Move Y2 Soul G2
	wil: ok, I missed the I would have been able to...I read it wrong and thought you were referring to what I should have done....btw I just lost a physical game to that very bluebird mistake!!  aaarrggghhhh
	wil: ok, I missed the I would have been able to...I read it wrong and thought you were referring to what I should have done....btw I just lost a physical game to that very bluebird mistake!!  aaarrggghhhh

44) wil:
Move R1 Wil B2

45) SilentTitan: Move G3 Tic B2

46) wil: Sacrifice Y2 G3
Move R2 G3 G2
Move R2 G2 Tic

47) SilentTitan: Sacrifice G3 B2
Build R3 Sol
Build Y2 G2
Build G3 Tic

48) wil: Move R2 Tic R2

49) SilentTitan: Move G1 Tic G2

50) wil: Move B1 Wil B2

51) SilentTitan: Discover R3 Sol B2 Tac

52) wil: Move B1 B2 G3

53) SilentTitan: Sacrifice G3 Tic
Build Y3 Silenttitan
Build G3 Silenttitan
Pass
	wil: It's only a matter of time.......you should resign now ;D


54) wil: Build B1 G3
	SilentTitan: It always is .... I shall consider your advice carefully. 

55) SilentTitan: Move G1 Sol Tac

56) wil: Move G2 Wil R2

57) SilentTitan: Move G3 Silenttitan Sol

58) wil: Build B3 G3

59) SilentTitan: Discover Y1 Silenttitan B3 Toe

60) wil: Move B3 G3 R2

61) SilentTitan: Move G2 Silenttitan Toe

62) wil: Build B3 G3

63) SilentTitan: Move Y1 Toe Tac

64) wil: Move B3 R2 Wil

65) SilentTitan: Move G3 Sol B2

66) wil: Move R1 B2 G3

67) SilentTitan: Sacrifice Y3 Silenttitan
Move G1 Tac G3
Move G1 G2 G3
Move G3 B2 G3
Catastrophe G3 Green

68) wil: Build G1 R2

69) SilentTitan: Build G1 Silenttitan

70) wil: Trade B3 G3 Wil

71) SilentTitan: Sacrifice G3 Silenttitan
Build G3 Silenttitan
Build G3 Sol
Build R1 Sol

72) wil: Discover G2 R2 Y3 Y3

73) SilentTitan: Trade G1 B1 Silenttitan

74) wil: Build G1 Wil

75) SilentTitan: Discover R2 Sol Y2 Hic

76) wil: Trade Y1 B1 B2

77) SilentTitan: Build R1 Sol

78) wil: Sacrifice G2 Y3
Build Y1 Wil
Build Y3 R2

79) SilentTitan: Sacrifice Y2 G2
Move R1 Sol R2
Move R1 Sol R2
Catastrophe R2 Red

80) wil: Move Y1 Wil B2

81) SilentTitan: Sacrifice G3 Sol
Build Y1 G2
Build Y2 Tac
Build G1 Silenttitan

82) wil: Trade B1 R1 B2

83) SilentTitan: Sacrifice Y2 G2
Move R3 G2 Wil
Move R2 Hic Wil

84) wil: Attack R3 Wil

85) SilentTitan: Sacrifice G3 Silenttitan
Build R1 Wil
Build G2 Toe
Build G3 Silenttitan
Catastrophe Wil Red

86) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 B2
Build R1 B2

87) SilentTitan: Sacrifice Y2 Tac
Move G2 Toe Wil
Move G2 Toe Wil
Catastrophe Wil Green

88) wil: Trade Y3 R3 Wil

89) SilentTitan: Build Y2 G2

90) wil: Trade R1 G1 B2

91) SilentTitan: Trade G1 B1 Silenttitan

92) wil: Build G1 B2
	SilentTitan: I'm currently in Rochester NY.  
	wil: Is that where you reside?  or are you on travel?  (i have a lot of family up there)

93) SilentTitan: Build G2 Silenttitan
	wil: I was close a couple of moments but have been running most of the game and it appears I'm gonna be outta wind soon.
	SilentTitan: We are on summer vacation.  Wife has family up here in finger lake region.

94) wil: Move G1 B2 Wil

95) SilentTitan: Trade G2 Y2 Silenttitan
	wil: Pretty time to be up there...  nice boating/skiing on those lakes....lots of pretty scenery, make sure you wear your shades so you don't get in trouble.    

96) wil: Build G2 B2

97) SilentTitan: Discover B1 Silenttitan Y3 Miney

98) wil: Move R1 B2 Sol

99) SilentTitan: Sacrifice G1 Sol
Build B3 Miney
	wil: I know it is over, and I have been running in circles playing rope a dope...but this is I think my longest game yet...50 moves.

100) wil: Discover Y1 B2 G3 G3
	SilentTitan: Yeah. I need to work on taking down opponants faster.

101) SilentTitan: Sacrifice Y2 G2
Move B3 Miney Wil
Move B1 Miney Wil

102) wil: Attack B3 Wil

103) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Wil
Pass
Pass
Catastrophe Wil Blue

	SilentTitan: Good game 55 turns.  That's a record for me.
	wil: You chased me around like a cornered rat most of the time...a sensible person would have forfieted....me...i'm hoping you accidentally sink the 8 ball...


24163)
Variants: "Hard time"
Started: 2013.6.18, Ended: 2013.7.26
Participants: SirRuthvenMurgatroyd (S), wil (N)
Winner: SirRuthvenMurgatroyd

1) wil: Homeworld R2 B1 G3

2) SirRuthvenMurgatroyd: Homeworld G3 B2 Y3

3) wil: Build G1 Wil

4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

5) wil: Trade G1 Y1 Wil

6) SirRuthvenMurgatroyd: Trade Y1 G1 Sirruthvenmurgatroyd

7) wil: Build G1 Wil

8) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd

9) wil: Discover G1 Wil Y3 Y3

10) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd B1 B1

11) wil: Build Y1 Wil

12) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G1 G1

13) wil: Build G2 Wil

14) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

15) wil: Discover Y1 Wil G3 G3

16) SirRuthvenMurgatroyd: Build G2 B1

17) wil: Sacrifice G3 Wil
Build G2 Y3
Build Y2 G3
Build G3 Wil

18) SirRuthvenMurgatroyd: Sacrifice Y1 G1
Discover G2 B1 Y3 Sol

19) wil: Trade Y1 B1 Wil

20) SirRuthvenMurgatroyd: Build G1 Sol

21) wil: Discover Y2 G3 R1 R1

22) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd

23) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 Wil
Build Y1 R1

24) SirRuthvenMurgatroyd: Move G2 Sol Wil

25) wil: Sacrifice Y1 R1
Move G2 Wil Sol

26) SirRuthvenMurgatroyd: Trade G2 B2 Wil
Catastrophe Wil Blue

27) wil: Move G2 Y3 B1
	wil: what was I thinking...nice move.

28) SirRuthvenMurgatroyd: Build G2 Sol

29) wil: Trade G2 R2 B1

30) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd
Move G1 B1 Wil
Move G1 Sol Wil
Move G2 Sol Wil
Catastrophe Wil Green
	wil: thanx for the annihilation...
	SirRuthvenMurgatroyd: haha no problem :p
I thought you had me for a while, though, with your vastly superior number of ships.



24098)
Variants: "Hard time"
Started: 2013.6.19, Ended: 2013.6.29
Participants: wil (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld B1 Y2 G3
	Broccoli_Commander: Hello again,
I was waiting for your challenge on the ladder ?! But I saw you challenged SirRuthvenSomething so I figured I'd come here instead.
Good game

2) wil: Homeworld R3 B1 G3

3) Broccoli_Commander: Build G1 Broccoli_commander

4) wil: Build G1 Wil

5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry
	wil: I guess I lost the right to challenge you (5 away first try, 4 second?) as you did not show up on the challenge me list...

6) wil: Trade G1 R1 Wil
	Broccoli_Commander: I see... maybe you just can't challenge the same guy twice in a row
	wil: Yeah...don't know...but good luck in your game...you may just bolt through the muck...
	wil: so there is that get right out there move....hmmmm.....

7) Broccoli_Commander: Build G1 Blueberry

8) wil: Build R1 Wil

9) Broccoli_Commander: Trade G1 R1 Blueberry

10) wil: Trade R1 Y1 Wil

11) Broccoli_Commander: Build G1 Blueberry

12) wil: Build Y1 Wil

13) Broccoli_Commander: Trade G1 Y1 Blueberry

14) wil: Discover Y1 Wil G2 G2

15) Broccoli_Commander: Build Y2 Blueberry

16) wil: Build Y2 G2

17) Broccoli_Commander: Discover Y1 Blueberry G2 Lettuce

18) wil: Build Y3 Wil

19) Broccoli_Commander: Build Y3 Blueberry

20) wil: Move Y1 G2 Blueberry

21) Broccoli_Commander: Build Y3 Lettuce

22) wil: Move Y2 G2 Blueberry
Catastrophe Blueberry Y

23) Broccoli_Commander: Build G1 Broccoli_commander

24) wil: Discover Y3 Wil G2 G2

25) Broccoli_Commander: Move Y3 Lettuce Blueberry

26) wil: Move R1 Wil G2

27) Broccoli_Commander: Build G1 Blueberry

28) wil: Build G2 Wil

29) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build G3 Blueberry
Build R1 Blueberry

30) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 G2
Build Y2 Wil

31) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build Y2 Blueberry
Build Y3 Lettuce

32) wil: Discover G2 Wil B2 B2

33) Broccoli_Commander: Sacrifice Y3 Blueberry
Move R1 Blueberry Lettuce
Discover G1 Broccoli_commander B3 Muffin
Move G1 Blueberry Lettuce

34) wil: Trade Y1 B1 Wil

35) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build R2 Blueberry
Build R2 Lettuce

36) wil: Build B2 Wil

37) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build Y1 Lettuce
Build Y3 Blueberry

38) wil: Move Y2 Wil Lettuce
Catastrophe Lettuce Y

39) Broccoli_Commander: Trade R2 B2 Blueberry

40) wil: Trade B2 Y2 Wil

41) Broccoli_Commander: Move Y3 Blueberry Lettuce

42) wil: Move B1 Wil G2

43) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build R2 Blueberry
Build Y1 Blueberry

44) wil: Build B2 G2

45) Broccoli_Commander: Move B2 Blueberry Lettuce
	Broccoli_Commander: There's a high population in Blueberry

46) wil:
Discover Y1 G2 B3 B3
	wil: there is, looks like a carrier fleet ready to advance....starting to bother me...
	Broccoli_Commander: Ah I see you have mean plans

47) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build Y1 Blueberry
Build Y3 Lettuce

48) wil: Build R2 G2

49) Broccoli_Commander: Sacrifice Y2 Blueberry
Move R1 Blueberry G2
Move R2 Blueberry G2
Catastrophe G2 R

50) wil: Build Y2 G2

51) Broccoli_Commander: Sacrifice Y3 Lettuce
Move Y3 Lettuce Wil
Move G3 Blueberry Lettuce
Move G3 Lettuce Wil

52) wil: Move G3 Wil G2

53) Broccoli_Commander: Attack Y2 Wil

	wil: We leave in peace to form a new civilization away from marauders..
	Broccoli_Commander: oh well... It was a trap :P
	wil: well done trap...   I gotta learn it.


24162)
Variants: "Hard time"
Started: 2013.6.20, Ended: 2013.6.27
Participants: ausmuh (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) ausmuh: Homeworld G3 Y1 B3

3) SilentTitan: Build G1 Silenttitan

4) ausmuh: Build B1 Ausmuh

5) SilentTitan: Trade G1 Y1 Silenttitan

6) ausmuh: Build B1 Ausmuh

7) SilentTitan: Build Y1 Silenttitan

8) ausmuh: Discover B1 Ausmuh G2 Gwar

9) SilentTitan: Build Y2 Silenttitan

10) ausmuh: Build B1 Gwar

11) SilentTitan: Discover Y1 Silenttitan B3 Sol

12) ausmuh: Trade B3 Y3 Ausmuh

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Sol
Build Y3 Silenttitan

14) ausmuh: Build B2 Ausmuh

15) SilentTitan: Trade Y2 B2 Sol

16) ausmuh: Discover B2 Ausmuh Y2 Slayer

17) SilentTitan: Discover B2 Sol G2 Sole

18) ausmuh: Build B3 Gwar

19) SilentTitan: Sacrifice Y2 Silenttitan
Move B2 Sole Sol
Move B2 Sol Gwar
Catastrophe Gwar Blue

20) ausmuh: Trade B1 R1 Ausmuh

21) SilentTitan: Trade Y2 R2 Sol



24171)
Variants: "Hard time"
Started: 2013.6.20, Ended: 2013.6.23
Participants: Marmalade (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B1 R2 G3

2) Marmalade: Homeworld Y1 B3 G3

3) SilentTitan: Build G1 Silenttitan

4) Marmalade: Build G1 Marmalade

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Marmalade: Discover G1 Marmalade B2 Canopus

7) SilentTitan: Build Y1 Silenttitan

8) Marmalade: Build G1 Canopus

9) SilentTitan: Build Y2 Silenttitan

10) Marmalade: Trade G1 R1 Canopus

11) SilentTitan: Discover Y1 Silenttitan G3 Sol

12) Marmalade: Build G1 Marmalade

13) SilentTitan: Discover Y1 Sol R2 Sole

14) Marmalade: Build G1 Canopus

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sole
Build Y2 Sole
Build Y3 Silenttitan

16) Marmalade: Move G3 Marmalade Sole

17) SilentTitan: Sacrifice Y2 Sole
Discover Y2 Sole G3 Soul
Discover Y1 Sole G3 Tic

18) Marmalade: Build G2 Sole

19) SilentTitan: Build Y2 Tic

20) Marmalade: Sacrifice G3 Sole
Build G2 Sole
Build G2 Canopus
Build G3 Marmalade

21) SilentTitan: Build Y3 Soul

22) Marmalade: Trade G3 Y3 Marmalade

23) SilentTitan: Trade Y3 G3 Silenttitan

24) Marmalade: Build Y3 Marmalade

25) SilentTitan: Sacrifice Y2 Soul
Move Y1 Tic Sole
Move Y1 Sole Marmalade
Catastrophe Marmalade Yellow

26) Marmalade: Trade G1 R1 Marmalade

27) SilentTitan: Move G3 Silenttitan Marmalade

28) Marmalade: Trade G2 Y2 Canopus

29) SilentTitan: Trade G3 R3 Marmalade

30) Marmalade: Sacrifice Y2 Canopus
Move G2 Sole Marmalade
Move R1 Canopus Marmalade

31) SilentTitan: Attack G2 Marmalade South

32) Marmalade: Trade R1 G1 Marmalade

33) SilentTitan: Sacrifice R3 Marmalade
Attack R1 Marmalade South
Attack G1 Marmalade South
Pass
	Marmalade: Thanks for the game :)
	SilentTitan: Thank you for the game



24165)
Variants: "Hard time"
Started: 2013.6.20, Ended: 2013.6.24
Participants: Marmalade (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) Marmalade: Homeworld Y3 B1 G3

3) wil: Build G1 Wil

4) Marmalade: Build G1 Marmalade

5) wil: Discover G1 Wil Y3 Y3

6) Marmalade: Discover G1 Marmalade B2 Formalhaut

7) wil: Build G1 Wil

8) Marmalade: Build G2 Marmalade

9) wil: Sacrifice G3 Wil
Build G2 Wil
Build G2 Y3
Build G3 Wil

10) Marmalade: Sacrifice G2 Marmalade
Build G2 Marmalade
Build G3 Formalhaut

11) wil: Trade G2 R2 Wil

12) Marmalade: Trade G1 R1 Formalhaut

13) wil: Trade G1 B1 Wil

14) Marmalade: Build G1 Formalhaut

15) wil: Build B2 Wil

16) Marmalade: Build R1 Formalhaut

17) wil: Discover G2 Y3 Y2 Y2

18) Marmalade: Trade G2 Y2 Marmalade

19) wil: Move B1 Wil Y3

20) Marmalade: Sacrifice Y2 Marmalade
Move G3 Formalhaut Y3
Move R1 Formalhaut Y3

21) wil: Sacrifice G2 Y2
Build G1 Y3
Build G2 Y3
Catastrophe Y3 G

22) Marmalade: Attack B1N Y3

23) wil: Discover B2 Wil G3 G3

24) Marmalade: Build G1 Marmalade

25) wil: Build B2 G3

26) Marmalade: Sacrifice G3 Marmalade
Build B3 Y3
Build B3 Y3
Build G1 Marmalade

27) wil: Build B3 G3

28) Marmalade: Trade B3 G3 Y3
	wil: wow

29) wil: Sacrifice B2 G3
Trade B3 R3 G3
Trade B2 Y2 G3
	wil: you sure made it get interesting fast!

30) Marmalade: Move G3 Y3 Formalhaut
	Marmalade: heehee cheers


31) wil: Sacrifice Y2 G3
Move R3 G3 Formalhaut
Move R3 Formalhaut Marmalade

32) Marmalade: Build G2 Marmalade

33) wil: Sacrifice R2 Wil
Attack G2 Marmalade
Attack G1 Marmalade
	wil: I think I got outta the jam and into the marmalade
	wil: I'm still new to this game...  it took me 10 games just to learn the system halfway...the past 20 games I've been winning some and losing some...every loss teaches me something that I didn't see coming....  one rule...always keep a queen (3pip) in your homeworld (unless she goes out for the kill)   
	wil: I'm still new to this game...  it took me 10 games just to learn the system halfway...the past 20 games I've been winning some and losing some...every loss teaches me something that I didn't see coming....  one rule...always keep a queen (3pip) in your homeworld (unless she goes out for the kill)   

34) Marmalade: Trade G1 R1 Marmalade
	Marmalade: Yep, think I may have screwed up here.

I was trying to gain an advantage in size-three ships, and didn't see the trade for red/double-move, which may have been the only thing that could have saved me.

35) wil: Attack R1 Marmalade
	wil: It was a valid plan....another hint I've learned...anytime anyone trades for a yellow...especially a two or three pip....look at where they can move..they are usually getting set for an attack someplace...

	Marmalade: yeah, no way out of this one.

Cheers :)
	wil: diving into my homeworld with your triple blue would have extended the game and given me a chance to do something stupid...another thing I've learned....prolonging the game provides opportunities for openings when it appears all is lost as the dominator gets cocky....a reboot (catastrophe or two) changes the game quickly....  good game...love to play another when you are interested....this is definitely a game you learn by losing...


24193)
Variants: "Hard time"
Started: 2013.6.24, Ended: 2013.12.8
Participants: Danner (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) Danner: Homeworld B1 R2 G3
	Danner: Wow, this will be epic! The top ladder position is at stake, and I'm playing with the player with the highest rating!
Good luck!

3) TwoShort: Build G1 Twoshort

4) Danner: Build G1 Danner

5) TwoShort: Trade G1 B1 Twoshort
	Danner: How do you resolve cycles in games?

6) Danner: Trade G1 B1 Danner
	TwoShort: There isn't an explicit rule, so my theory is that if neither player is willing to break the cycle it's a draw.  It's easy to construct artificial examples where both players should take a draw; and I've seen the potential in past games, and considered whether I wanted a draw, but I've never  seen it actually happen.

	TwoShort: There isn't an explicit rule, so my theory is that if neither player is willing to break the cycle it's a draw.  It's easy to construct artificial examples where both players should take a draw; and I've seen the potential in past games, and considered whether I wanted a draw, but I've never  seen it actually happen.

	TwoShort: Not sure why I got the double post there.  Anyway, I'd think it was kind of neat if a game led to such a situation, but the lack of an "offer draw" button here would be a pain :)


7) TwoShort: Build B2 Twoshort
	Danner: I use the same rule in offline games! :) But as you said, there is no draw button. :(
I have encountered such a situation. If you are interested in it: http://superdupergames.org/?page=archive_play&gid=22703&idx=19

8) Danner: Build B2 Danner

9) TwoShort: Trade B2 Y2 Twoshort

10) Danner: Trade B2 Y2 Danner

11) TwoShort: Build B2 Twoshort

12) Danner: Build B2 Danner
	TwoShort: I can't decide if I think someone has a better move in that one...
	TwoShort: But in any case, there are possible positions where it is clear whoever breaks the cycle loses.  So by the default ko rule, there ought to be a draw button :)


13) TwoShort: Trade B2 R2 Twoshort
	Danner: Indeed!

14) Danner: Trade B2 R2 Danner

15) TwoShort: Discover B1 Twoshort G2 Grogar

16) Danner: Discover B1 Danner G3 Ragorg

17) TwoShort: Build B2 Grogar

18) Danner: Build B2 Ragorg

19) TwoShort: Trade B1 R1 Grogar

20) Danner: Trade B1 R1 Ragorg

21) TwoShort: Build R3 Grogar

22) Danner: Build R3 Ragorg

23) TwoShort: Discover R2 Twoshort G2 Greenland

24) Danner: Trade R1 Y1 Ragorg

25) TwoShort: Trade R3 Y3 Grogar

26) Danner: Build B1 Ragorg

27) TwoShort: Discover R1 Grogar Y3 Yolonda

28) Danner: Build Y1 Danner

29) TwoShort: Build Y1 Grogar

30) Danner: Move R2 Danner Yolonda

31) TwoShort: Move Y3 Grogar Yolonda

32) Danner: Move Y1 Danner Yolonda

33) TwoShort: Sacrifice G3 Twoshort
Build Y2 Grogar
Build Y3 Twoshort
Build B1 Grogar

34) Danner: Attack R1 Yolonda

35) TwoShort: Sacrifice B2 Grogar
Trade Y2 G2 Twoshort
Trade Y3 G3 Yolonda

36) Danner: Move R3 Ragorg Grogar

37) TwoShort: Sacrifice R2 Greenland
Attack R2 Yolonda
Attack R1 Yolonda

38) Danner: Sacrifice G3 Danner
Build Y2 Yolonda
Build Y3 Yolonda
Build R1 Grogar
Catastrophe Yolonda Y

39) TwoShort: Discover Y2 Grogar G3 Greenland

40) Danner: Attack Y1 Grogar

41) TwoShort: Build G1 Twoshort

42) Danner: Move R3 Grogar Greenland

43) TwoShort: Build Y1 Greenland

44) Danner: Trade Y2 G2 Danner

45) TwoShort: Sacrifice G2 Twoshort
Build Y2 Greenland
Build B2 Grogar

46) Danner: Move Y1 Grogar Greenland
Catastrophe Greenland Y

47) TwoShort: Trade B2 R2 Grogar

48) Danner: Build R1 Grogar

49) TwoShort: Build B2 Grogar

50) Danner: Build R2 Greenland

51) TwoShort: Sacrifice R2 Grogar
Attack R1 Grogar
Attack R1 Grogar

52) Danner: Sacrifice B1 Ragorg
Trade R3 Y3 Greenland

53) TwoShort: Trade B2 Y2 Grogar
	Danner: Sorry for being so slow. School, work, competitions...

54) Danner: Build R2 Greenland

55) TwoShort: Discover R1 Grogar G3 Gondor

56) Danner: Sacrifice B2 Ragorg
Trade R2 B2 Greenland
Pass

57) TwoShort: Build R2 Grogar

58) Danner: Build R3 Greenland

59) TwoShort: Build R3 Gondor

60) Danner: Move Y3 Greenland Danner

61) TwoShort: Sacrifice Y2 Grogar
Move R2 Grogar Greenland
Move R1 Grogar Greenland
Catastrophe Greenland Red

62) Danner: Build G1 Danner

63) TwoShort: Build Y1 Twoshort

64) Danner: Trade G2 R2 Danner

65) TwoShort: Move Y1 Twoshort Grogar

66) Danner: Move R2 Danner Ragorg

67) TwoShort: Build Y1 Twoshort

68) Danner: Build Y2 Danner

69) TwoShort: Build Y2 Grogar

	Danner: Ooops, sorry. And thanks for the game.


24195)
Variants: "Hard time"
Started: 2013.6.24, Ended: 2013.6.27
Participants: Broccoli_Commander (S), sordros (N)
Winner: Broccoli_Commander



24160)
Variants: "No undo, Unrated, Hard time"
Started: 2013.6.24, Ended: 2013.6.27
Participants: Argel (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3



24101)
Variants: "Unrated, Hard time"
Started: 2013.6.24, Ended: 2013.6.27
Participants: wil (S), dlwillson (N)
Winner: wil



24200)
Started: 2013.6.26, Ended: 2014.8.30
Participants: guntz1092 (S), thejackdiaz (N)
Winner: thejackdiaz

1) thejackdiaz: Homeworld B2 G1 R3
	guntz1092: homeworld
	guntz1092: okay so this is the chat and not the command box...

2) guntz1092: Homeworld G2 B1 R3
	guntz1092: homeworld G2 Y3 R3

3) thejackdiaz: Build R1 Thejackdiaz
	guntz1092: uhm. this is going to be a really bad game /relearning x_x

4) guntz1092: Build R1 Guntz1092

5) thejackdiaz: Trade R3 Y3 Thejackdiaz

6) guntz1092: Build R1 Guntz1092

7) thejackdiaz: Build R2 Thejackdiaz
	guntz1092: lol

8) guntz1092: Build R2 Guntz1092

9) thejackdiaz: Discover R1 Thejackdiaz B3 Badmovedude
Catastrophe Guntz1092 R



24216)
Variants: "No undo"
Started: 2013.6.27, Ended: 2013.7.3
Participants: scotward (S), Erik2point0 (N)
Winner: scotward

1) Erik2point0: Homeworld G2 B1 R3

2) scotward: Homeworld B3 R1 G3

3) Erik2point0: Build R1 Erik2point0

4) scotward: Build G1 Scotward

5) Erik2point0: Trade R1 Y1 Erik2point0

6) scotward: Build G1 Scotward

7) Erik2point0: Build R1 Erik2point0

8) scotward: Trade G1 Y1 Scotward

9) Erik2point0: Trade R1 G1 Erik2point0

10) scotward: Trade G1 B1 Scotward

11) Erik2point0: Build G1 Erik2point0

12) scotward: Build B1 Scotward

13) Erik2point0: Build R1 Erik2point0

14) scotward: Build G1 Scotward

15) Erik2point0: Discover G1 Erik2point0 G3 Biggreen

16) scotward: Discover B1 Scotward G2 Alpha

17) Erik2point0: Build Y1 Erik2point0

18) scotward: Build B2 Alpha

19) Erik2point0: Discover Y1 Erik2point0 G3 Alsobiggreen

20) scotward: Build Y2 Scotward

21) Erik2point0: Build G2 Erik2point0

22) scotward: Discover Y2 Scotward B2 Beta

23) Erik2point0: Move G2 Erik2point0 Alsobiggreen

24) scotward: Sacrifice G3 Scotward
Build B2 Alpha
Build B3 Scotward
Build G3 Scotward

25) Erik2point0: Move Y1 Alsobiggreen Erik2point0

26) scotward: Move B3 Scotward Beta

27) Erik2point0: Sacrifice G2 Alsobiggreen
Build G2 Biggreen
Build G3 Erik2point0

28) scotward: Sacrifice G3 Scotward
Build Y2 Beta
Build B3 Beta
Build G3 Scotward

29) Erik2point0: Sacrifice Y1 Erik2point0
Discover G1 Biggreen Y2 Medyellow
	Erik2point0: Man I screwed this game up

30) scotward: Sacrifice B3 Beta
Trade B3 Y3 Beta
Trade Y2 R2 Beta
Trade B2 R2 Alpha

31) Erik2point0: Discover G1 Erik2point0 B3 Bigblue

32) scotward: Move Y3 Beta Bigblue

33) Erik2point0: Move R3 Erik2point0 Bigblue

34) scotward: Sacrifice R2 Alpha
Attack R3 Bigblue
Attack G1 Bigblue

35) Erik2point0: Build Y1 Erik2point0

36) scotward: Sacrifice Y2 Beta
Move Y3 Bigblue Erik2point0
Move R3 Bigblue Erik2point0
	Erik2point0: Ugh

37) Erik2point0: Attack R3 Erik2point0

38) scotward: Sacrifice R2 Beta
Attack R3 Erik2point0
Attack G3 Erik2point0
	scotward:  Resistance is futile!

39) Erik2point0: Sacrifice G2 Biggreen
Build R1 Erik2point0
Build R2 Erik2point0
Catastrophe Erik2point0 Red
	Erik2point0: Mommy!

40) scotward: Sacrifice G3 Erik2point0
Build Y2 Erik2point0
Pass
Pass
Catastrophe Erik2point0 Y



24208)
Variants: "Hard time"
Started: 2013.6.28, Ended: 2013.6.28
Participants: Broccoli_Commander (S), Marmalade (N)
Winner: Broccoli_Commander

1) Marmalade: Homeworld B1 Y2 G3

2) Broccoli_Commander: Homeworld B1 G3 Y3

3) Marmalade: Build G1 Marmalade

4) Broccoli_Commander: Build Y1 Broccoli_commander

5) Marmalade: Discover G1 Marmalade G3 Tau_ceti
	Broccoli_Commander: Hi!

6) Broccoli_Commander: Trade Y1 B1 Broccoli_commander
	Marmalade: Hello there :)

7) Marmalade: Build G1 Marmalade

8) Broccoli_Commander: Build B2 Broccoli_commander
	Broccoli_Commander: Good luck and have fun dear Sir

9) Marmalade: Discover G1 Marmalade B3 Formalhaut

10) Broccoli_Commander: Discover B2 Broccoli_commander Y2 Cauliflower

11) Marmalade: Build G1 Formalhaut

12) Broccoli_Commander: Move B2 Cauliflower Formalhaut

13) Marmalade: Trade G1 R1 Formalhaut

14) Broccoli_Commander: Trade B2 R2 Formalhaut

15) Marmalade: Trade G1 R1 Formalhaut

16) Broccoli_Commander: Build B2 Broccoli_commander

17) Marmalade: Build G1 Marmalade

18) Broccoli_Commander: Discover B2 Broccoli_commander Y2 Cauliflower

19) Marmalade: Build G1 Tau_ceti

20) Broccoli_Commander: Trade B2 G2 Cauliflower

21) Marmalade: Build G2 Marmalade

22) Broccoli_Commander: Sacrifice Y3 Broccoli_commander
Discover G2 Cauliflower R3 Thxforthegame
Move G2 Thxforthegame Marmalade
Move R2 Formalhaut Marmalade
Catastrophe Marmalade G
	Broccoli_Commander: Thanks for the live play! :-)
	Marmalade: Damn, I didn't see that at all.

Thanks for the game. I've yet to win a game of Homeworlds on here :)

	Broccoli_Commander: Well that's the danger of trying to get an early color monopoly... The payoff for the factory would have been great though. This is why I liked your opening! 

But then I think you lost too much time by defending your little green ships in Formalhaut: 
-You could maybe have "teleported" them (sac g1 to rebuild it 
somewhere else)
-Or just let me the possibility of attacking them. At least this would not have refilled the green stash as your trades did!



24220)
Variants: "Hard time"
Started: 2013.6.28, Ended: 2013.7.1
Participants: Marmalade (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3

2) Marmalade: Homeworld B1 R3 G3
	Broccoli_Commander: Hello again - I won't play it as fast as the last one :-P

3) Broccoli_Commander: Build G1 Broccoli_commander
	Marmalade: This is probably my eighth or ninth game of Homeworlds, total. I've lost all of the online ones, and won all the face-to-face ones, but that's mostly as I've been teaching people how to play.

I wanted to try Homeworlds for ages, and just recently imported some pyramids for the purpose.
	Broccoli_Commander: Imported? Where do you live?

And don't worry about the online losses there are some monsters online... Plus Homeworlds is not particularly forgiving for mistakes

And well this must only be my 20th game or so. I received some pyramids recently and we tried homeworlds once with a friend by chance. We didn't know it before but I thought it was a great game. Unfortunately I don't get a lot of opportunities to play it in real life so I'm really glad that there is this website!

4) Marmalade: Build G1 Marmalade

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) Marmalade: Trade G1 Y1 Marmalade
	Marmalade: The UK - Looney Pyramids failed their EU safety check thing a couple of years ago, so retailers can't sell pyramids in Europe (outside retailers selling to individuals is fine). Looking at the paperwork, it looks like something that could be easily argued against, but it's probably not within Looney Lab's means (especially as their main market is in the US).

7) Broccoli_Commander: Build G1 Broccoli_commander

8) Marmalade: Build G1 Marmalade

9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry
	Broccoli_Commander: Ah OK this explains why I could not find them either! (I actually wanted to buy the proper colors for homeworlds) I'm living in switzerland btw.

I guess the pyramids are too pointy -_- 

10) Marmalade: Discover G1 Marmalade Y2 Mote

11) Broccoli_Commander: Build Y1 Broccoli_commander

12) Marmalade: Build Y2 Marmalade

13) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry
	Marmalade: What, you don't get the urge to jam them into your eyes?

14) Marmalade: Discover Y2 Marmalade B2 Dust

15) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build Y2 Broccoli_commander
Build Y3 Broccoli_commander
Build Y3 Blueberry

16) Marmalade: Build Y3 Marmalade

17) Broccoli_Commander: Trade Y1 R1 Broccoli_commander
	Broccoli_Commander: haha :-p

18) Marmalade: Trade Y1 R1 Marmalade

19) Broccoli_Commander: Trade Y3 G3 Broccoli_commander

20) Marmalade: Build R2 Marmalade

21) Broccoli_Commander: Build R2 Broccoli_commander

22) Marmalade: Move R2 Marmalade Dust

23) Broccoli_Commander: Move R2 Broccoli_commander Blueberry

24) Marmalade: Move G3 Marmalade Dust

25) Broccoli_Commander: Build Y1 Broccoli_commander

26) Marmalade: Move G1 Mote Marmalade

27) Broccoli_Commander: Trade Y1 B1 Blueberry

28) Marmalade: Build Y1 Dust

29) Broccoli_Commander: Build B1 Blueberry

30) Marmalade: Discover R1 Marmalade G2 Grit

31) Broccoli_Commander: Move Y3 Blueberry Grit

32) Marmalade: Sacrifice Y2 Dust
Move G3 Dust Marmalade
Move G3 Marmalade Grit

33) Broccoli_Commander: Sacrifice R2 Blueberry
Attack R1 Grit
Attack G3 Grit

34) Marmalade: Build G1 Marmalade

35) Broccoli_Commander: Sacrifice G3 Grit
Build G2 Broccoli_commander
Build G2 Broccoli_commander
Build G3 Blueberry
	Broccoli_Commander: errr... you didn't know about that?

36) Marmalade: Trade R2 B2 Dust
	Marmalade: Nah, I'm just being dense.

37) Broccoli_Commander: Sacrifice Y1 Broccoli_commander
Move B1 Blueberry Grit

38) Marmalade: Sacrifice G1 Marmalade
Build B3 Dust

39) Broccoli_Commander: Sacrifice G2 Broccoli_commander
Build B3 Grit
Build R2 Grit

40) Marmalade: Discover B3 Dust R3 Speck

41) Broccoli_Commander: Sacrifice Y2 Broccoli_commander
Move Y3 Grit Marmalade
Move B3 Grit Marmalade

42) Marmalade: Attack Y3N Marmalade

43) Broccoli_Commander: Sacrifice R2 Grit
Attack Y3 Marmalade
Attack Y3 Marmalade

44) Marmalade: Move Y1 Dust Blueberry

45) Broccoli_Commander: Attack G1 Marmalade
	Marmalade: Cheers for the game!



24219)
Variants: "Hard time"
Started: 2013.6.28, Ended: 2013.7.4
Participants: Broccoli_Commander (S), shmil1 (N)
Winner: Broccoli_Commander

1) shmil1: Homeworld R1 B2 G3

2) Broccoli_Commander: Homeworld R2 B3 G3

3) shmil1: Build G1 Shmil1

4) Broccoli_Commander: Build G1 Broccoli_commander

5) shmil1: Trade G1 Y1 Shmil1

6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

7) shmil1: Build G1 Shmil1

8) Broccoli_Commander: Build G1 Broccoli_commander

9) shmil1: Trade G1 R1 Shmil1

10) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry

11) shmil1: Build G1 Shmil1

12) Broccoli_Commander: B G1 Broccoli_commander

13) shmil1: Build G2 Shmil1

14) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G2 Blueberry
Build G3 Broccoli_commander

15) shmil1: Discover G1 Shmil1 Y3 Slunce

16) Broccoli_Commander: Build G3 Broccoli_commander

17) shmil1: Move G1 Slunce Blueberry
Catastrophe Blueberry G

18) Broccoli_Commander: Discover G3 Broccoli_commander B1 Blueberry

19) shmil1: Discover R1 Shmil1 Y3 Slunce2

20) Broccoli_Commander: Build G1 Blueberry

21) shmil1: Sacrifice G2 Shmil1
Build R1 Slunce2
Build G1 Shmil1

22) Broccoli_Commander: Trade G3 R3 Blueberry

23) shmil1: Discover R1 Slunce2 B1 Obloha1

24) Broccoli_Commander: Build G2 Blueberry

25) shmil1: Move R1 Slunce2 Obloha1

26) Broccoli_Commander: Trade G2 Y2 Blueberry

27) shmil1: Sacrifice G1 Shmil1
Build R2 Obloha1

28) Broccoli_Commander: Build R2 Blueberry

29) shmil1: Trade R1 Y1 Obloha1

30) Broccoli_Commander: Discover R2 Blueberry Y3 Cauliflower

31) shmil1: Trade R1 G1 Obloha1

32) Broccoli_Commander: Build G2 Blueberry

33) shmil1: Build G2 Obloha1

34) Broccoli_Commander: Move G2 Blueberry Cauliflower

35) shmil1: Sacrifice G2 Obloha1
Build G2 Obloha1
Build Y2 Obloha1

36) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G3 Cauliflower
Build G3 Broccoli_commander

37) shmil1: Sacrifice Y2 Obloha1
Move G1 Obloha1 Broccoli_commander
Move G2 Obloha1 Broccoli_commander
Catastrophe Broccoli_commander G

38) Broccoli_Commander: Sacrifice G2 Blueberry
Build Y2 Broccoli_commander
Build R1 Blueberry

39) shmil1: Build Y2 Shmil1

40) Broccoli_Commander: Move R3 Blueberry Broccoli_commander

41) shmil1: Build Y3 Shmil1

42) Broccoli_Commander: Sacrifice Y2 Broccoli_commander
Move Y2 Blueberry Cauliflower
Move Y2 Cauliflower Shmil1
Catastrophe Shmil1 Y

43) shmil1: Build G1 Shmil1

44) Broccoli_Commander: Move G3 Cauliflower Shmil1

45) shmil1: Attack G3 Shmil1

	shmil1: nice :)
	Broccoli_Commander: Thx :-)


24224)
Variants: "Hard time"
Started: 2013.6.28, Ended: 2013.9.27
Participants: zoltar (S), ts52 (N)
Winner: zoltar

1) ts52: Homeworld Y1 B2 G3

2) zoltar: Homeworld B3 R1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	zoltar: You too!

4) zoltar: Build G1 Zoltar

5) ts52: Discover G1 Ts52 B3 Grover

6) zoltar: Trade G1 Y1 Zoltar

7) ts52: Trade G1 Y1 Grover

8) zoltar: Build Y2 Zoltar

9) ts52: Build G1 Ts52

10) zoltar: Build Y2 Zoltar

11) ts52: Move G1 Ts52 Grover

12) zoltar: Trade Y1 R1 Zoltar

13) ts52: Build G1 Ts52

14) zoltar: Build R1 Zoltar

15) ts52: Trade G3 R3 Ts52

16) zoltar: Trade R1 B1 Zoltar

17) ts52: Build G1 Ts52

18) zoltar: Build G2 Zoltar

19) ts52: Build G2 Grover

20) zoltar: Discover G2 Zoltar B2 Bluebird

21) ts52: Discover G1 Ts52 B3 Gonzo

22) zoltar: Build G2 Zoltar

23) ts52: B G3 Gonzo

24) zoltar: Build G3 Bluebird

25) ts52: Trade G2 Y2 Grover

26) zoltar: Trade G2 R2 Bluebird

27) ts52: Discover Y1 Grover G2 Kermit

28) zoltar: Move Y2 Zoltar Bluebird

29) ts52: Build G2 Grover

30) zoltar: Move R1 Zoltar Kermit

31) ts52: Move Y1 Kermit Gonzo

32) zoltar: Move R2 Bluebird Grover

33) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build Y1 Gonzo
Build Y3 Grover

34) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y3 Zoltar
Build Y3 Bluebird

35) ts52: Trade Y3 R3 Grover

36) zoltar: Sacrifice Y2 Bluebird
Move R2 Grover Bluebird
Move Y2 Zoltar Kermit

37) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build Y2 Gonzo
Build Y3 Grover

38) zoltar: Move Y2 Kermit Gonzo
Catastrophe Gonzo Y

39) ts52: Trade G3 R3 Gonzo

40) zoltar: Sacrifice G2 Zoltar
Build G2 Bluebird
Build G3 Zoltar

41) ts52: Sacrifice Y2 Grover
Move G1 Grover Bluebird
Move G2 Grover Bluebird
Catastrophe Bluebird G

42) zoltar: Move G3 Zoltar Bluebird

43) ts52: Trade R3 G3 Grover

44) zoltar: Discover G3 Bluebird R3 Redgiant

45) ts52: Build Y1 Grover

46) zoltar: Build Y1 Zoltar

47) ts52: Move Y3 Grover Kermit

48) zoltar: Build G1 Redgiant

49) ts52: Build Y2 Kermit

50) zoltar: Move Y1 Zoltar Kermit

51) ts52: Move Y3 Kermit Gonzo

52) zoltar: Build G2 Zoltar

53) ts52: Build G2 Grover

54) zoltar: Sacrifice G3 Redgiant
Build G3 Redgiant
Build Y2 Kermit
Build Y2 Zoltar

55) ts52: Sacrifice G3 Grover
Build G3 Grover
Build R1 Ts52
Build R2 Gonzo

56) zoltar: Attack Y2 Kermit

57) ts52: Move Y1 Grover Kermit
Catastrophe Kermit Yellow

58) zoltar: Sacrifice G3 Redgiant
Build G3 Redgiant
Build R2 Bluebird
Build Y1 Bluebird

59) ts52: Move R3 Gonzo Kermit

60) zoltar: Sacrifice G3 Redgiant
Build G3 Redgiant
Build Y1 Bluebird
Build Y2 Zoltar

61) ts52: Attack R1 Kermit

62) zoltar: Discover B1 Zoltar Y2 Goldeneye

63) ts52: Move R2 Gonzo Goldeneye

64) zoltar: Sacrifice Y2 Zoltar
Move G3 Redgiant Goldeneye
Move Y3 Bluebird Redgiant

65) ts52: Build Y2 Gonzo

66) zoltar: Sacrifice Y2 Zoltar
Move Y1 Bluebird Gonzo
Move Y1 Bluebird Gonzo
Catastrophe Gonzo Y

67) ts52: Trade G2 Y2 Grover

68) zoltar: Sacrifice G3 Zoltar
Build G2 Redgiant
Build G3 Zoltar
Build Y1 Zoltar

69) ts52: Build Y1 Grover

70) zoltar: Move Y3 Zoltar Bluebird

71) ts52: Move Y1 Grover Kermit

72) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Zoltar
Build Y3 Bluebird

73) ts52: Attack B1 Goldeneye

74) zoltar: Sacrifice R2 Bluebird
Attack R2 Goldeneye
Attack B1 Goldeneye

75) ts52: Move R1 Ts52 Grover

76) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build R2 Bluebird
Build B1 Goldeneye

77) ts52: Move R1 Kermit Gonzo

78) zoltar: Move Y3 Bluebird Gonzo

79) ts52: Sacrifice Y2 Grover
Move R1 Grover Bluebird
Move R1 Gonzo Bluebird
Catastrophe Bluebird Red

80) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y2 Gonzo
Build B1 Goldeneye

81) ts52: Sacrifice G3 Grover
Build G3 Gonzo
Build R1 Kermit
Build R1 Ts52

82) zoltar: Sacrifice R2 Goldeneye
Attack G3 Gonzo
Attack G1 Gonzo

83) ts52: Move R3 Kermit Gonzo

84) zoltar: Trade G2 R2 Zoltar

85) ts52: Attack Y3 Gonzo

86) zoltar: Sacrifice R2 Zoltar
Attack R3 Gonzo
Attack Y3 Gonzo

87) ts52: Build R2 Kermit

88) zoltar: Move B1 Goldeneye Redgiant

89) ts52: Build R2 Kermit

90) zoltar: Sacrifice G2 Redgiant
Build B2 Redgiant
Build B3 Redgiant

91) ts52: Move R1 Kermit Redgiant
	ts52: I'm pretty sure I'm not coming back from this one.

92) zoltar: Sacrifice Y3 Bluebird
Move B3 Redgiant Ts52
Move G3 Gonzo Ts52
Move Y3 Redgiant Ts52

	zoltar: However, the Zoltarian Empire declines the offer and instead has sent a peace delegation, consisting of representatives from the 3 non-warrior casts, the merchants, breeders, and engineers, to extend goodwill and promote the annexation of the ts52 homeworld into the Zoltarian Empire. It has been decided that with all the defections, annexing the rebel homeworld would be a more compassionate response than sending its stars into supernova, as had been planned.
	ts52: Well done sir. The citizens of the ts52 homeworld accept the holy word of Zoltar and his bountiful offering of peace, and convert.


24221)
Variants: "Hard time"
Started: 2013.6.29, Ended: 2013.7.15
Participants: Marmalade (S), wil (N)
Winner: Marmalade

1) wil: Homeworld Y2 B1 G3

2) Marmalade: Homeworld R1 B3 G3

3) wil: Build G1 Wil

4) Marmalade: Build G1 Marmalade

5) wil: Discover G1 Wil Y3 Y3

6) Marmalade: Trade G1 Y1 Marmalade

7) wil: Build G1 Wil

8) Marmalade: Build Y1 Marmalade

9) wil: Trade G1 Y1 Wil

10) Marmalade: Build Y2 Marmalade

11) wil: Discover Y1 Wil G3 G3

12) Marmalade: Discover Y2 Marmalade G2 Sinistra

13) wil: Build Y2 G3

14) Marmalade: Build Y3 Sinistra

15) wil: Discover Y1 G3 G2 G2

16) Marmalade: Trade Y1 R1 Marmalade

17) wil: Trade G3 R3 Wil
	wil: crap

18) Marmalade: Build G1 Marmalade
	Marmalade: I thought this far ahead, but I have no idea where to go from here, without screwing myself :)

19) wil: Build G1 Y3

20) Marmalade: Build R1 Marmalade
	wil: thats what they all say....

21) wil: Move G1 Y3 Wil

22) Marmalade: Move Y2 Sinistra G3

23) wil: Move Y2 G3 G2

24) Marmalade: Move Y2 G3 G2

25) wil: Sacrifice Y2 G2
Discover Y1 G2 G3 G3
Discover Y1 G3 G2 G2a

26) Marmalade: Move R1 Marmalade Sinistra

27) wil: Build G3 Wil

28) Marmalade: Sacrifice G3 Marmalade
Build G3 Marmalade
Build G3 Marmalade
Build R2 Sinistra

29) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Wil
Build Y1 G2a

30) Marmalade: Sacrifice G3 Marmalade
Build G3 Marmalade
Build Y2 Sinistra
Build Y3 G2

31) wil: Discover Y1 G2a B3 B3

32) Marmalade: Move R2 Sinistra Y3

33) wil: Move R3 Wil Y3

34) Marmalade: Sacrifice G3 Marmalade
Build G3 Marmalade
Build R2 Y3
Build R3 Y3
Catastrophe Y3 R

35) wil: Sacrifice G1 Y3
Build Y3 G2a

36) Marmalade: Sacrifice Y3 G2
Move Y2 G2 B3
Move Y2 B3 G2a
Move Y1 Marmalade G2a
Catastrophe G2a Y

37) wil: Build R2 Wil

38) Marmalade: Build R2 Sinistra

39) wil: Discover G1 Wil Y3 Y3

40) Marmalade: Sacrifice G3 Marmalade
Build R3 Marmalade
Build R3 Sinistra
Build Y1 Sinistra

41) wil: Move Y1 B3 Sinistra
Catastrophe Sinistra Y

42) Marmalade: Trade G1 B1 Marmalade

43) wil: Move R2 Wil Y3

44) Marmalade: Sacrifice B1 Marmalade
Trade R2 Y2 Sinistra

45) wil: Build G1 Wil

46) Marmalade: Trade R1 Y1 Marmalade

47) wil: Build R1 Wil

48) Marmalade: Move R3 Sinistra Y3

49) wil: Build R2 Y3

50) Marmalade: Attack G1N Y3

51) wil: Move R2 Wil Y3
Catastrophe Y3 R

52) Marmalade: Build G1 Y3

53) wil: Discover G1 Wil Y3 Pftt

54) Marmalade: Sacrifice Y2 Sinistra
Move G1 Y3 Wil
Move G1 Y3 Wil

55) wil: Trade G3 R3 Wil

56) Marmalade: Build G2 Marmalade
	wil: oops

57) wil: Attack G1 Wil

58) Marmalade: Sacrifice G3 Marmalade
Build G2 Wil
Build G3 Marmalade
Build G3 Marmalade

59) wil: Trade G1 B1 Wil
	wil: a bread crumb?

60) Marmalade: Trade G3 Y3 Marmalade
	Marmalade: Just trying something. Mostly trying to figure out how to end this :)

61) wil: Attack G2 Wil
	wil: if you'da grown three before i turned one it would be over...
	wil: not that I am complaining....struggling at the end of the rope trying to find the escape hatchis worthy practice for me...

62) Marmalade: Sacrifice G2 Marmalade
Build G1 Wil
Build G2 Wil
Catastrophe Wil G

63) wil: Trade R3 G3 Wil

64) Marmalade: Move Y3 Marmalade Sinistra

65) wil: Build R2 Wil

66) Marmalade: Build R2 Marmalade

67) wil: Build G1 Wil

68) Marmalade: Move R3 Marmalade Sinistra

69) wil: Trade R2 Y2 Wil

70) Marmalade: Move R3 Sinistra Pftt

71) wil: Discover G1 Pftt Y2 Y2

72) Marmalade: Move R2 Marmalade Y2

73) wil: Discover G1 Y2 Y3 Y3

74) Marmalade: Build G1 Marmalade

75) wil: Discover G1 Wil B3 B3

76) Marmalade: Move G1 Marmalade Sinistra

77) wil: Build G2 Wil

78) Marmalade: Move G1 Sinistra Pftt

79) wil: Sacrifice G3 Wil
Build G2 Y3
Build G3 Wil
Build G3 B3

80) Marmalade: Build R2 Pftt

81) wil: Move R1 Wil B3

82) Marmalade: Move R2 Pftt Y2

83) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 Wil
Build R2 B3

84) Marmalade: Build R3 Pftt

85) wil: Sacrifice Y1 Wil
Move G3 B3 Y2

86) Marmalade: Sacrifice Y3 Sinistra
Move R2 Y2 B3
Move R2 Y2 B3
Move R3 Pftt Wil
Catastrophe B3 R

87) wil: Sacrifice Y2 Wil
Move G3 Wil B3
Discover G2 Wil Y3 Escape2freedom

88) Marmalade: Attack B1N Wil

	wil: the civilians have left to populate other galaxies....as they see the evil hourde has polluted their own star system with its citrusy jam
	Marmalade: whee! Thanks for the game. That's the first online game of Homeworlds I've won, even if I did make a mess of it in the middle. Thanks for sticking with it.
	wil: congrats to ya!!  glad to be the sucker you beat!!   that was an excellent move at the end...while I did see the triple threat with two queen attackers and your movement capablity I did not contemplate you wiping out my reds in the process of the attack....sweet....always looking to play again.


24215)
Variants: "No undo, Unrated, Hard time"
Started: 2013.6.29, Ended: 2013.7.2
Participants: Argel (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3



24198)
Variants: "Unrated, Hard time"
Started: 2013.6.29, Ended: 2013.7.2
Participants: wil (S), dlwillson (N)
Winner: wil



24153)
Variants: "Hard time"
Started: 2013.6.29, Ended: 2013.7.2
Participants: Broccoli_Commander (S), wil (N)
Winner: Broccoli_Commander

1) wil: Homeworld Y2 B1 G3

2) Broccoli_Commander: Homeworld R1 B3 G3
	wil: ready to get my butt kicked again...

3) wil: Build G1 Wil
	Broccoli_Commander: I'll try my best 

4) Broccoli_Commander: Build G1 Broccoli_commander

5) wil: Discover G1 Wil Y3 Y3

6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

7) wil: Build G1 Wil

8) Broccoli_Commander: Build Y1 Broccoli_commander

9) wil: Trade G1 Y1 Wil

10) Broccoli_Commander: Discover Y1 Broccoli_commander G2 Mint

11) wil: Discover Y1 Wil G3 G3

12) Broccoli_Commander: Build Y2 Mint

13) wil: Build Y2 G3
	wil: I do not have this opening right...
	wil: I do not have this opening right...

14) Broccoli_Commander: Build Y3 Broccoli_commander

15) wil: Discover Y1 G3 G2 G2
	Broccoli_Commander: Not sure either... In fact I think you helped me by going yellow as well :-)

16) Broccoli_Commander: Build Y3 Mint

17) wil: Sacrifice G1 Y3
Build Y3 G3

18) Broccoli_Commander: Sacrifice Y3 Mint
Move Y1 Mint G3
Move Y1 Broccoli_commander Mint
Move Y1 Mint G3
Catastrophe G3 Y

19) wil: Build G1 Wil
	wil: that didn't work out so well...

20) Broccoli_Commander: Build G1 Broccoli_commander

21) wil: Discover G1 Wil Y3 Y3
	wil: that was worse than the way I did it..

22) Broccoli_Commander: Trade G1 R1 Broccoli_commander
	Broccoli_Commander: ?

23) wil: Build G1 Wil

24) Broccoli_Commander: Build R1 Broccoli_commander

25) wil: Build G1 Y3

26) Broccoli_Commander: Sacrifice Y3 Broccoli_commander
Move G3 Broccoli_commander G2
Move G3 G2 Y3
Move G3 Y3 Wil

27) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build G3 Wil
Catastrophe Wil G

	wil: How did I let that happen....and me with no gun again!!



23856)
Variants: "Unrated"
Started: 2013.7.3, Ended: 2013.9.2
Participants: Broccoli_Commander (S), OnePageWars (W), Marmalade (N), Leonard_Daniels (E)
Winner: Marmalade

1) Marmalade: Homeworld B2 Y1 G3

2) Leonard_Daniels: Homeworld R3 B1 G3
	Broccoli_Commander: Hi everybody!
So this is north&south vs east&west? i.e. OnePageWars with Leonard_Daniels against Marmalade and myself?

Good luck and have fun, and just so it is clear from the get-go: all your base are belong to us.
	Broccoli_Commander: Hey Marmalade, let's do the strategy you told me about this game! 

You know, the whole pyramids eye jamming thing...
	Marmalade: That was my understanding, woo.

Good luck guys.
	Marmalade: It was less of a strategy, and more of a compulsion. On the plus side, it has the advantage of surprise.

3) Broccoli_Commander: Homeworld G1 Y2 B3

4) Broccoli_Commander: Build B1 Broccoli_commander
	Broccoli_Commander: Errrr OnePageWars has been inactive for the last 40 days...Don't think he'll come back !?!

Do you want to play last man standing instead? (in 2d and 16h)
	Marmalade: I'd be happy with that, but we'll see.
	Leonard_Daniels: Certainly I don't want to be in a team on my own.

5) Marmalade: Build G1 Marmalade

6) Leonard_Daniels: Build G1 Leonard_daniels
	Broccoli_Commander: ?! why was it my turn? It is a bug, isn't it?

7) Broccoli_Commander: T B3 G3 Broccoli_commander

8) Marmalade: Build G1 Marmalade

9) Leonard_Daniels: Trade G1 Y1 Leonard_daniels

10) Broccoli_Commander: Build B1 Broccoli_commander

11) Marmalade: Trade G1 B1 Marmalade

12) Leonard_Daniels: Build G1 Leonard_daniels

13) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce

14) Marmalade: Discover B1 Marmalade Y3 Paracetamol

15) Leonard_Daniels: Trade G1 R1 Leonard_daniels

16) Broccoli_Commander: Build G1 Broccoli_commander

17) Marmalade: Trade G1 R1 Marmalade

18) Leonard_Daniels: Build G1 Leonard_daniels

19) Broccoli_Commander: Trade G1 R1 Broccoli_commander

20) Marmalade: Build G1 Marmalade



24258)
Variants: "No undo"
Started: 2013.7.3, Ended: 2013.7.14
Participants: scotward (S), Erik2point0 (N)
Winner: scotward

1) Erik2point0: Homeworld B1 G2 R3

2) scotward: Homeworld R3 B2 G3

3) Erik2point0: Build R1 Erik2point0

4) scotward: Build G1 Scotward

5) Erik2point0: Build R1 Erik2point0

6) scotward: Build G1 Scotward

7) Erik2point0: Trade R1 G1 Erik2point0

8) scotward: Trade G1 B1 Scotward

9) Erik2point0: Trade R1 Y1 Erik2point0

10) scotward: Trade G1 Y1 Scotward

11) Erik2point0: Build R1 Erik2point0

12) scotward: Build B1 Scotward

13) Erik2point0: Trade R3 B3 Erik2point0

14) scotward: Discover B1 Scotward G1 Ares

15) Erik2point0: Build B2 Erik2point0

16) scotward: Sacrifice G3 Scotward
Build B2 Ares
Build B3 Ares
Build B3 Scotward

17) Erik2point0: Trade B3 Y3 Erik2point0

18) scotward: Sacrifice B2 Ares
Trade B3 R3 Ares
Trade B3 G3 Scotward

19) Erik2point0: Build B2 Erik2point0

20) scotward: Build B3 Ares

21) Erik2point0: Discover B2 Erik2point0 G3 Washington

22) scotward: Trade B1 Y1 Ares

23) Erik2point0: Build Y2 Erik2point0

24) scotward: Move R3 Ares Washington

25) Erik2point0: Discover Y1 Erik2point0 G3 Adams

26) scotward: Attack B2 Washington

27) Erik2point0: Build Y2 Adams

28) scotward: Move B3 Ares Adams

29) Erik2point0: Build R1 Erik2point0

30) scotward: Trade B3 R3 Adams

31) Erik2point0: Sacrifice Y1 Adams
Move Y2 Adams Ares

32) scotward: Move Y1 Ares Adams

33) Erik2point0: Discover Y2 Ares B3 Jefferson

34) scotward: Build Y1 Adams

35) Erik2point0: Trade Y2 G2 Jefferson

36) scotward: Move Y1 Adams Erik2point0

37) Erik2point0: Trade Y2 G2 Erik2point0

38) scotward: Build Y2 Erik2point0

39) Erik2point0: Trade Y3 B3 Erik2point0

40) scotward: Trade Y1 B1 Erik2point0
Catastrophe Erik2point0 B

41) Erik2point0: Attack Y2 Erik2point0

42) scotward: Move R3 Adams Erik2point0

43) Erik2point0: Build R1 Erik2point0
Catastrophe Erik2point0 Red

44) scotward: Sacrifice Y1 Scotward
Move R3 Washington Erik2point0



24261)
Variants: "Hard time"
Started: 2013.7.4, Ended: 2013.8.14
Participants: Mandrel (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3

2) Mandrel: Homeworld B3 R2 G3

3) Broccoli_Commander: Build G1 Broccoli_commander
	Mandrel: Have a good game.

4) Mandrel: Build G1 Mandrel
	Broccoli_Commander: Thanks, you too

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) Mandrel: Trade G1 Y1 Mandrel

7) Broccoli_Commander: Build G1 Broccoli_commander

8) Mandrel: Build G1 Mandrel

9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

10) Mandrel: Discover G1 Mandrel B1 Sale

11) Broccoli_Commander: Build G1 Blueberry

12) Mandrel: Build G2 Sale

13) Broccoli_Commander: Build G2 Broccoli_commander

14) Mandrel: Trade G1 R1 Sale

15) Broccoli_Commander: Build G1 Blueberry

16) Mandrel: Build R1 Sale

17) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G3 Broccoli_commander
Build G3 Broccoli_commander

18) Mandrel: Build R2 Sale
Catastrophe Blueberry Green

19) Broccoli_Commander: Trade G3 R3 Broccoli_commander

20) Mandrel: Trade R2 Y2 Sale

21) Broccoli_Commander: Discover R3 Broccoli_commander Y3 Cauliflower

22) Mandrel: Build R2 Sale

23) Broccoli_Commander: Discover G2 Broccoli_commander R3 Tomatoe



24232)
Variants: "Hard time"
Started: 2013.7.5, Ended: 2013.7.10
Participants: Broccoli_Commander (S), wil (N)
Winner: Broccoli_Commander

1) wil: Homeworld R2 B1 G3
	wil: ready willing and able to be abused yet again...

2) Broccoli_Commander: Homeworld Y1 G3 B3

3) wil: Build G1 Wil
	Broccoli_Commander: Always a pleasure.
	wil: I've never seen this as an opeming, I figure you thought you could try anything with me.....lol

4) Broccoli_Commander: Build B1 Broccoli_commander

5) wil: Trade G1 B1 Wil
	wil: okee dokee, I see I gotta get on the stick or be colored out..

6) Broccoli_Commander: Discover B1 Broccoli_commander G2 Lettuce
	Broccoli_Commander: Hehe well You re awake...

7) wil: Build B2 Wil

8) Broccoli_Commander: Build B2 Lettuce

9) wil: Trade B1 Y1 Wil

10) Broccoli_Commander: Build B1 Broccoli_commander

11) wil: Build B2 Wil

12) Broccoli_Commander: Build B3 Lettuce

13) wil: Discover B2 Wil Y3 Y3

14) Broccoli_Commander: Trade B2 Y2 Lettuce

15) wil: Move B2 Wil Y3

16) Broccoli_Commander: Trade B3 G3 Broccoli_commander

17) wil: Trade B2 G2 Y3

18) Broccoli_Commander: Discover B3 Lettuce Y3 Cauliflower

19) wil: Build B2 Y3

20) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Cauliflower
Build B3 Lettuce
Build B3 Broccoli_commander

21) wil: Move B2 Y3 Lettuce

22) Broccoli_Commander: Trade B1 R1 Lettuce

23) wil: Build B1 Lettuce

24) Broccoli_Commander: Move B3 Lettuce Y3
	wil: I don't think I thought that out very well.

25) wil: Trade B1 Y1 Lettuce

26) Broccoli_Commander: Attack B2 Lettuce

27) wil: Discover G2 Y3 Y2 Y2

28) Broccoli_Commander: Sacrifice R1 Lettuce
Attack B2 Y3

29) wil: Discover Y1 Lettuce G3 G3

30) Broccoli_Commander: Sacrifice B2 Y3
Trade B3 R3 Y3
Trade B2 R2 Cauliflower

31) wil: Build G1 Wil

32) Broccoli_Commander: Sacrifice Y2 Lettuce
Move R3 Y3 Wil
Move B3 Cauliflower Wil

33) wil: Move G3 Wil G3

34) Broccoli_Commander: Sacrifice R2 Cauliflower
Attack G1 Wil
Attack Y1 Wil
	wil: I fell for the get one take two again????

	wil: We leave with the best and brightest to find a peaceful universe without such mean aggressors...
	Broccoli_Commander: Sorry, but all your base are belong to us :-D

Well yes you fall for the get one take two again ^^
But it is, maybe, THE way to win for not too long games (otherwise it is catastrophing both hw stars and that surely takes a LOT of time)

And otherwise how did you like that opening :-) ?

	Broccoli_Commander: or the infamous you take two I take three, but I think it is less common


24230)
Variants: "Hard time"
Started: 2013.7.9, Ended: 2013.7.15
Participants: Marmalade (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld G1 Y2 B3

2) Marmalade: Homeworld Y3 B1 G3
	Broccoli_Commander: sup

3) Broccoli_Commander: Build B1 Broccoli_commander

4) Marmalade: Build G1 Marmalade

5) Broccoli_Commander: Build B1 Broccoli_commander
	Marmalade: Sup indeed :)

6) Marmalade: Discover G1 Marmalade B2 Alamak

7) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce

8) Marmalade: Build G1 Marmalade

9) Broccoli_Commander: Build B2 Lettuce

10) Marmalade: Trade G3 B3 Marmalade

11) Broccoli_Commander: Trade B2 Y2 Lettuce

12) Marmalade: Build G2 Marmalade

13) Broccoli_Commander: Trade B3 G3 Broccoli_commander

14) Marmalade: Build G2 Alamak

15) Broccoli_Commander: Build B2 Broccoli_commander

16) Marmalade: Trade G2 Y2 Alamak

17) Broccoli_Commander: Discover B2 Broccoli_commander G3 Watermelon

18) Marmalade: Build G2 Alamak

19) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Watermelon
Build B3 Lettuce
Build B3 Broccoli_commander

20) Marmalade: Trade B3 G3 Marmalade

21) Broccoli_Commander: Trade B2 G2 Watermelon

22) Marmalade: Sacrifice Y2 Alamak
Move G1 Alamak Watermelon
Move G2 Alamak Watermelon
Catastrophe Watermelon G

23) Broccoli_Commander: Trade B3 R3 Lettuce

24) Marmalade: Trade G2 R2 Marmalade

25) Broccoli_Commander: Trade B3 G3 Broccoli_commander

26) Marmalade: Build R1 Marmalade

27) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Lettuce
Build B2 Lettuce
Build B2 Broccoli_commander

28) Marmalade: Trade R2 Y2 Marmalade

29) Broccoli_Commander: Discover B2 Lettuce Y1 Lemon
	Marmalade: Well, this is all kinds of wrong


30) Marmalade: Discover G1 Marmalade G2 Moop

31) Broccoli_Commander: Build B3 Broccoli_commander

32) Marmalade: Build Y1 Marmalade

33) Broccoli_Commander: Trade B3 G3 Broccoli_commander

34) Marmalade: Move Y2 Marmalade Moop
	Broccoli_Commander: Relax it will be over soon now :-)

35) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B3 Broccoli_commander
Build B3 Lettuce
Build B3 Lemon

36) Marmalade: Build Y1 Moop

37) Broccoli_Commander: Sacrifice B2 Lettuce
Trade B3 Y3 Lettuce
Trade B3 Y3 Broccoli_commander

38) Marmalade: Discover Y1 Marmalade B2 Meep

39) Broccoli_Commander: Move B3 Lemon Moop

40) Marmalade: Build G1 Moop

41) Broccoli_Commander: Sacrifice Y3 Broccoli_commander
Move Y3 Lettuce Moop
Move Y3 Moop Marmalade
Move B3 Moop Marmalade

42) Marmalade: Attack B3N Marmalade

43) Broccoli_Commander: Sacrifice R3 Lettuce
Attack B3 Marmalade
Attack G3 Marmalade
Attack R1 Marmalade

	Marmalade: Well, that was a lot faster than it should have been :) Cheers for the game.
	Broccoli_Commander: Thank you for the game


24290)
Variants: "Unrated"
Started: 2013.7.10, Ended: 2013.7.10
Participants: Noetherium (S), Orl (N)
Winner: Orl

1) Orl: Homeworld B2 Y1 G3

2) Noetherium: Homeworld B2 Y3 G3

3) Orl: Build G1 Orl

4) Noetherium: Discover G3 Noetherium Y1 Burbel



24291)
Variants: "Hard time"
Started: 2013.7.10, Ended: 2013.7.17
Participants: Subhan64 (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld R1 B2 G3

2) Subhan64: Homeworld Y1 B3 G3

3) Remneb: Build G1 Remneb



24288)
Variants: "Hard time"
Started: 2013.7.11, Ended: 2013.8.31
Participants: MagicJohn (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld B3 G2 Y3

2) MagicJohn: Homeworld Y3 B2 G3

3) Aristos: Build Y1 Aristos

4) MagicJohn: Build G1 Magicjohn

5) Aristos: Trade Y1 G1 Aristos

6) MagicJohn: Trade G1 Y1 Magicjohn

7) Aristos: Discover G1 Aristos Y1 Spark

8) MagicJohn: Trade Y1 R1 Magicjohn

9) Aristos: Discover G1 Spark R2 Shine

10) MagicJohn: Build G1 Magicjohn

11) Aristos: Build Y1 Aristos
	Aristos: typo

12) MagicJohn: Trade G1 Y1 Magicjohn
	MagicJohn: I'm still working on perfect myself..... Might be awhile....

13) Aristos: Trade Y1 R1 Aristos
	MagicJohn: 

14) MagicJohn: Build Y1 Magicjohn

15) Aristos: Build R1 Aristos

16) MagicJohn: Build R2 Magicjohn

17) Aristos: Discover R1 Aristos Y1 Flicker

18) MagicJohn: Move R2 Magicjohn Flicker

19) Aristos: Build Y2 Aristos

20) MagicJohn: Trade Y1 B1 Magicjohn

21) Aristos: Move Y3 Aristos Flicker

22) MagicJohn: Move Y1 Magicjohn Flicker

23) Aristos: Attack Y1 Flicker

24) MagicJohn: Sacrifice B1 Magicjohn
Trade R2 Y2 Flicker
Catastrophe Flicker Y

25) Aristos: Build G1 Shine

26) MagicJohn: Build G1 Magicjohn

27) Aristos: Build G2 Shine
	Aristos: Better move. Someday I have to get some actual pieces so I can visualize the possible moves better. I just can't see it in my head sometimes.
	Aristos: Crap. That still doesn't fix the problem. Oh well. Congrats on this game. I doubt I can come back from your next move.

28) MagicJohn: Discover G1 Magicjohn Y1 Depot
	MagicJohn: The visualization thing is really difficult for me too. It absolutely kills me when I am silly enough to try and play reasonably good chess players.
I'm still relatively new at this game. Although I do have my moments, I am, unfortunately, very likely to blunder away most any lead I attain. Try to think of this as a handicap you have granted me.......  

29) Aristos: Sacrifice G1 Shine
Build Y1 Aristos

30) MagicJohn: Build G1 Depot

31) Aristos: Move Y2 Aristos Depot

32) MagicJohn: Move G1 Depot Shine

33) Aristos: Sacrifice R1 Aristos
Attack G1 Depot

34) MagicJohn: Build G2 Shine
Catastrophe Shine Green

35) Aristos: Build G1 Depot

36) MagicJohn: Build R1 Magicjohn

37) Aristos: Build Y1 Depot

38) MagicJohn: Discover R1 Magicjohn B1 Misanthropy

39) Aristos: Build Y2 Aristos

40) MagicJohn: Build R1 Magicjohn

41) Aristos: Discover Y1 Depot Y2 Outpost

42) MagicJohn: Move R1 Magicjohn Depot

43) Aristos: Build Y3 Aristos

44) MagicJohn: Attack G1 Depot

45) Aristos: Trade Y2 R2 Aristos

46) MagicJohn: Build G1 Depot

47) Aristos: Sacrifice R2 Aristos
Attack R1 Depot
Attack G1 Depot

48) MagicJohn: Sacrifice R1 Misanthropy
Attack R1 Depot

49) Aristos: Sacrifice G1 Depot
Build Y2 Outpost

50) MagicJohn: Attack G1 Depot

51) Aristos: Build Y3 Aristos

52) MagicJohn: Move G1 Depot Aristos

53) Aristos: Trade Y3 R3 Aristos

54) MagicJohn: Build G1 Aristos

55) Aristos: Sacrifice R3 Aristos
Attack G1 Aristos
Attack G1 Aristos
Attack R1 Depot

56) MagicJohn: Move G1 Depot Aristos
Catastrophe Aristos G

57) Aristos: Trade Y3 G3 Aristos

58) MagicJohn: Build G1 Magicjohn

59) Aristos: Sacrifice G3 Aristos
Build Y3 Aristos
Build Y3 Depot
Build R1 Depot

60) MagicJohn: Build R2 Magicjohn

61) Aristos: Trade Y3 G3 Aristos

62) MagicJohn: Trade R2 B2 Magicjohn

63) Aristos: Build Y3 Aristos

64) MagicJohn: Build R2 Magicjohn

65) Aristos: Build G1 Aristos

66) MagicJohn: Trade R2 B2 Magicjohn

67) Aristos: Move G1 Aristos Depot

68) MagicJohn: Build R2 Magicjohn

69) Aristos: Build G1 Aristos

70) MagicJohn: Move R1 Magicjohn Depot

71) Aristos: Sacrifice R1 Depot
Attack R1 Depot

72) MagicJohn: Build R1 Magicjohn

73) Aristos: Trade G1 B1 Aristos
	MagicJohn: Gaaakk...... My troops have been reduced to hitchhiking....
	MagicJohn: Trade r2 b2 magicjohn
	MagicJohn: ooops... typed my command into the message window.....

74) MagicJohn: Move R1 Magicjohn Depot

75) Aristos: Sacrifice Y2 Depot
Move B1 Aristos Depot
Move B1 Depot Magicjohn
Catastrophe Magicjohn Blue
	Aristos: The Hitchhiker's Guide To The Galaxy says nothing about what to do if your civilization lacks the technology for towels... :-)

76) MagicJohn: Move G1 Magicjohn Outpost

77) Aristos: Sacrifice Y3 Aristos
Move Y2 Outpost Magicjohn
Move Y1 Outpost Magicjohn
Move Y3 Depot Magicjohn
Catastrophe Magicjohn Yellow
	Aristos: As an honorable opponent, I would prefer to offer you a quick and painless death, but the only sure stategy I see is going to be SLOW, I'm afraid. 
	MagicJohn: One of my opponents just sent me a message saying that my position in the game was clearly superior but that they were stubborn and sometimes found a way to turn things around...... Kinda where I'm at now......

	MagicJohn: My learning curve needs to improve. Once again I sacrificed too much material to gain an early advantage.......  Guess I have to spend more time in development.  Or did I miss opportunities in the middle game??
	Aristos: I'm not sure... I never saw a move that felt like an outright mistake, but I knew if you didn't make some play to get some yellow tech, I had a creeping advantage on you. 
	Aristos: Good game.


24173)
Variants: "Hard time"
Started: 2013.7.14, Ended: 2013.8.21
Participants: wil (S), SilentTitan (N)
Winner: wil

1) SilentTitan: Homeworld R1 B3 G3

2) wil: Homeworld B2 R1 G3
	SilentTitan: I almost never try goldilocks.  So I am going to give it a go.

3) SilentTitan: Build G1 Silenttitan
	wil: You go with fortress over goldilocks?
	SilentTitan: yeah... I really like fortress.  you can really trap your opponent up against their inability to get to your homeworld. 

4) wil: Build G1 Wil
	wil: yeah...the ones can disappear early....

5) SilentTitan: Trade G1 Y1 Silenttitan

6) wil: Trade G1 R1 Wil

7) SilentTitan: Build G1 Silenttitan

8) wil: Build R2 Wil

9) SilentTitan: Trade G3 R3 Silenttitan

10) wil: Build G1 Wil

11) SilentTitan: Build R2 Silenttitan

12) wil: Trade R2 Y2 Wil

13) SilentTitan: Trade R3 G3 Silenttitan

14) wil: Build R2 Wil

15) SilentTitan: Build R2 Silenttitan

16) wil: Discover R2 Wil G3 G3

17) SilentTitan: Discover R2 Silenttitan Y2 Sol

18) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 G3
Build Y1 Wil

19) SilentTitan: Sacrifice G1 Silenttitan
Build R3 Sol

20) wil: Trade R3 Y3 Wil

21) SilentTitan: Trade R2 Y2 Silenttitan

22) wil: Sacrifice Y1 Wil
Discover R2 G3 G2 G2

23) SilentTitan: Discover R2 Sol G3 Soul

24) wil: Trade R1 B1 Wil

25) SilentTitan: Build G1 Silenttitan

26) wil: Build B1 Wil

27) SilentTitan: Trade G1 B1 Silenttitan

28) wil: Move B1 Wil G3

29) SilentTitan: Move B1 Silenttitan Sol

30) wil: Move Y2 Wil G3

31) SilentTitan: Build G1 Silenttitan

32) wil: Build B2 G3

33) SilentTitan: Discover Y1 Silenttitan R2 Sole

34) wil: Move B2 G3 G2

35) SilentTitan: Move G1 Silenttitan Sol

36) wil: Build B2 G2

37) SilentTitan: Build B3 Sol

38) wil: Build B3 G3

39) SilentTitan: Build Y1 Silenttitan

40) wil: Trade B3 Y3 G3

41) SilentTitan: Sacrifice Y2 Silenttitan
Move R3 Sol G3
Move R3 G3 G2

42) wil: Sacrifice Y3 G3
Move B2 G2 Soul
Move B2 G2 Soul
Move R2 G2 G3

43) SilentTitan: Sacrifice Y1 Sole
Discover R2 Soul R1 Tic

44) wil: Build B3 G3

45) SilentTitan: Move B3 Sol G3

46) wil: Attack B3 G3

47) SilentTitan: Move B1 Sol G3
Catastrophe G3 Blue

48) wil: Move R2 G3 Sol

49) SilentTitan: Discover G1 Sol Y3 Tac

50) wil: Trade B2 Y2 Soul

51) SilentTitan: Build Y1 Silenttitan

52) wil: Build B1 Wil

53) SilentTitan: Move Y1 Silenttitan G2

54) wil: Move B1 Wil G3

55) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 G2
Build Y3 Silenttitan
Build G1 Tac

56) wil: Build G2 Wil

57) SilentTitan: Move R3 G2 Soul

58) wil: Move Y2 Soul G2
	wil: crap I knew that was going to come sometime....

59) SilentTitan: Trade Y1 B1 Silenttitan

60) wil: Move G2 Wil Tac

61) SilentTitan: Sacrifice Y1 G2
Move R3 Soul G2

62) wil: Sacrifice R3 G3
Attack Y1 G2
Attack G1 Tac
Attack G1 Tac

63) SilentTitan: Sacrifice R2 Tic
Attack Y2 G2 South
Attack Y1 G2 South

64) wil: Build B2 G3



24231)
Variants: "Unrated, Hard time"
Started: 2013.7.14, Ended: 2013.7.17
Participants: wil (S), dlwillson (N)
Winner: wil

	dlwillson: No time, Wil. Sorry. I'm doing all I can to have a successful Linux Camp in August.
	wil: oops sorry....I saw ur challenge up....give me a shout when you have the time...


24270)
Variants: "Hard time"
Started: 2013.7.14, Ended: 2013.7.19
Participants: Broccoli_Commander (S), wil (N)
Winner: Broccoli_Commander

1) wil: Homeworld R2 B1 G3

2) Broccoli_Commander: Homeworld Y2 G3 B3

3) wil: Build G1 Wil
	wil: again with this!

4) Broccoli_Commander: Build B1 Broccoli_commander

5) wil: Build G1 Wil
	Broccoli_Commander: Sorry bout that, im playing on my phone and misclicked...
	Broccoli_Commander: And good game to you &#55357;&#56833;

6) Broccoli_Commander: Trade B3 G3 Broccoli_commander

7) wil: Trade G1 B1 Wil

8) Broccoli_Commander: Build B2 Broccoli_commander

9) wil: Build B2 Wil

10) Broccoli_Commander: Discover B1 Broccoli_commander G1 Pea

11) wil: Trade B1 Y1 Wil

12) Broccoli_Commander: Build B1 Broccoli_commander

13) wil: Build B2 Wil

14) Broccoli_Commander: Discover B2 Broccoli_commander R1 Tomatoe

15) wil: Trade B2 R2 Wil
	wil: I 'blue' it.

16) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Tomatoe
Build B3 Broccoli_commander
Build B3 Pea

17) wil: Build B3 Wil

18) Broccoli_Commander: Trade B3 R3 Pea

19) wil: Trade B3 Y3 Wil

20) Broccoli_Commander: Trade B2 Y2 Tomatoe

21) wil: Discover B2 Wil G3 G3

22) Broccoli_Commander: Build R1 Pea

23) wil: Move Y1 Wil G3

24) Broccoli_Commander: Build R1 Pea

25) wil: Build B2 G3

26) Broccoli_Commander: Build B3 Pea

27) wil: Discover B2 G3 Y1 Y1

28) Broccoli_Commander: Sacrifice B2 Tomatoe
Trade B3 R3 Broccoli_commander
Trade B1 Y1 Pea

29) wil: Move R2 Wil G3

30) Broccoli_Commander: Move R3 Pea G3

31) wil: Sacrifice G3 Wil
Build R2 G3
Build R3 G3
Build B1 Y1
Catastrophe G3 R

32) Broccoli_Commander: M B3 Pea G3

33) wil: Discover B2 G3 G1 G1

34) Broccoli_Commander: Sacrifice R1 Pea
Attack Y1 G3
	wil: ya get rid of one bully and they just go call their friends..

35) wil: Build B2 G1
	Broccoli_Commander: Yeah I should talk to them about that at some point

36) Broccoli_Commander: Build Y2 G3
	wil: yeah...why did I leave that y1 behind anywho...shoulda sacrificed her?  or was it good to have just made you waste a move?

37) wil: Build Y3 Wil
	Broccoli_Commander: In that situation id say sacrifice

38) Broccoli_Commander: Sacrifice Y2 Tomatoe
Move Y1 G3 Wil
Move Y2 G3 Wil
Catastrophe Wil Y

	wil: I must be blind...I looked to see if you could get me and missed it...

	wil: downright embarassin that one..

	Broccoli_Commander: No worries, you put up a good fight, especially at the beginning


24254)
Variants: "No undo, Unrated, Hard time"
Started: 2013.7.14, Ended: 2013.7.17
Participants: Argel (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3



24302)
Variants: "No undo"
Started: 2013.7.14, Ended: 2013.7.17
Participants: Erik2point0 (S), scotward (N)
Winner: scotward

1) scotward: Homeworld G3 R1 B3

2) Erik2point0: Homeworld B1 G2 Y3

3) scotward: Build B1 Scotward

4) Erik2point0: Build Y1 Erik2point0

5) scotward: Trade B1 Y1 Scotward

6) Erik2point0: Trade Y1 G1 Erik2point0

7) scotward: Build Y1 Scotward

8) Erik2point0: Build G1 Erik2point0

9) scotward: Trade Y1 G1 Scotward

10) Erik2point0: Discover G1 Erik2point0 Y3 Intrigue

11) scotward: Build G2 Scotward

12) Erik2point0: Build G2 Erik2point0

13) scotward: Discover G2 Scotward B2 Mystery

14) Erik2point0: Build G3 Intrigue

15) scotward: Build G3 Mystery

16) Erik2point0: Trade G1 R1 Erik2point0

17) scotward: Trade G2 Y2 Mystery

18) Erik2point0: Build Y1 Erik2point0

19) scotward: Build G1 Mystery
	Erik2point0: Sorry, I missed the email and thought it was still your turn

20) Erik2point0: Trade Y1 B1 Erik2point0

21) scotward: Build G2 Scotward

22) Erik2point0: Sacrifice Y3 Erik2point0
Move G1 Intrigue Mystery
Move G1 Mystery Scotward
Discover G2 Erik2point0 B3 Seaside
Catastrophe Scotward Green
	scotward:  no prob. 

23) scotward: Sacrifice Y2 Mystery
Move G3 Mystery Intrigue
Move G3 Intrigue Erik2point0

24) Erik2point0: Build G1 Intrigue

25) scotward: Trade G1 R1 Mystery

26) Erik2point0: Trade R1 Y1 Erik2point0

27) scotward: Trade G3 R3 Erik2point0



24172)
Variants: "Hard time"
Started: 2013.7.17, Ended: 2013.8.18
Participants: wil (S), pgadey (N)
Winner: wil

1) pgadey: Homeworld B3 G2 Y3

2) wil: Homeworld R2 B1 G3

3) pgadey: Build Y1 Pgadey

4) wil: Build G1 Wil

5) pgadey: Trade Y1 G1 Pgadey

6) wil: Trade G1 Y1 Wil

7) pgadey: Trade G1 B1 Pgadey

8) wil: Build G1 Wil
	pgadey: The opening in this game always feels a little clunky to me. I feel like there is a long build up before anything ``begins''. I guess that just says how little I understand what's going on.

9) pgadey: Build B1 Pgadey
	wil: No you are correct....it is like chess, pushing pawns, getting out knights and bishops...the first five moves go fairly quickly, until someone does something unique....and then the game slows pace...
	pgadey: Right -- What other games are you interested in, by the way?

10) wil: Discover G1 Wil Y3 Y3
	wil: This is the only one I play here...I have thought of learning martian chess...but i play live chess, gin, hold-em, craps, euchre, all variety cards, wide variety of board games, grew up in a gaming family, and play regular with a good size group.

11) pgadey: Trade B1 G1 Pgadey

12) wil: Build Y1 Wil
	pgadey: Good times! I play a number of abstracts. I go through phases of playing things online with regularity. Here I play Entropy, Amazons, Homeworlds. I wish I could play more Entropy and Homeworlds face to face. They're really great.
	wil: where abouts do you live...no homeworlds players to develop??

13) pgadey: Discover G1 Pgadey Y1 Banana

14) wil: Discover Y1 Wil G3 G3
	pgadey: I'm in Toronto. A lovely city, with a couple board game cafés but they are all about the Euro Games. My girlfriend has got a knack for abstracts, but we're heavily into playing Nick Bentley's Catchup: http://nickbentleygames.wordpress.com/2012/04/29/my-best-game-i-suspect-ketchup/

So we haven't been playing much else lately.
	pgadey: I'm in Toronto. A lovely city, with a couple board game cafés but they are all about the Euro Games. My girlfriend has got a knack for abstracts, but we're heavily into playing Nick Bentley's Catchup: http://nickbentleygames.wordpress.com/2012/04/29/my-best-game-i-suspect-ketchup/

So we haven't been playing much else lately.

15) pgadey: Build B1 Pgadey
	wil: you play klunker?

16) wil: Build Y2 G3

17) pgadey: Move B1 Pgadey Banana

18) wil: Build Y2 Wil

19) pgadey: Build B2 Banana

20) wil: Trade Y1 R1 Wil

21) pgadey: Trade B2 Y2 Banana

22) wil: Build G1 Wil

23) pgadey: Trade B1 R1 Banana

24) wil: Build G2 Y3

25) pgadey: Build R1 Banana

26) wil: Discover G1 Y3 B1 B1

27) pgadey: Move G1 Banana Y3

28) wil: Sacrifice G3 Wil
Build G2 Y3
Build G3 B1
Build G3 Wil

29) pgadey: Build B2 Pgadey

30) wil: Move R1 Wil Y3

	wil: awe...hate when that happens...


24311)
Variants: "No undo"
Started: 2013.7.17, Ended: 2013.8.6
Participants: scotward (S), Erik2point0 (N)
Winner: scotward

1) Erik2point0: Homeworld B1 G2 Y3

2) scotward: Homeworld R1 B3 G3

3) Erik2point0: Build Y1 Erik2point0

4) scotward: Build G1 Scotward

5) Erik2point0: Trade Y1 G1 Erik2point0

6) scotward: Trade G1 B1 Scotward

7) Erik2point0: Build G1 Erik2point0

8) scotward: Build B1 Scotward

9) Erik2point0: Build Y1 Erik2point0

10) scotward: Build G1 Scotward

11) Erik2point0: Discover G1 Erik2point0 B3 Alpha

12) scotward: Trade G1 Y1 Scotward

13) Erik2point0: Trade Y1 R1 Erik2point0

14) scotward: Discover B1 Scotward G2 Omega

15) Erik2point0: Build Y1 Erik2point0

16) scotward: Build B2 Omega

17) Erik2point0: Build G1 Alpha

18) scotward: Trade B2 G2 Omega

19) Erik2point0: Build G3 Erik2point0

20) scotward: Build G3 Scotward

21) Erik2point0: Trade G1 Y1 Alpha

22) scotward: Build B2 Omega

23) Erik2point0: Sacrifice G3 Erik2point0
Build G1 Alpha
Build G3 Erik2point0
Build Y2 Alpha

24) scotward: Sacrifice G3 Scotward
Build Y2 Scotward
Build G3 Scotward
Build B2 Omega

25) Erik2point0: Sacrifice Y2 Alpha
Move G1 Alpha Omega
Move G1 Alpha Omega
Catastrophe Omega Green

26) scotward: Discover G3 Scotward B2 Omega2

27) Erik2point0: Trade G1 B1 Erik2point0

28) scotward: Move Y2 Scotward Omega2

29) Erik2point0: Build Y2 Erik2point0

30) scotward: Build G1 Omega2

31) Erik2point0: Move Y2 Erik2point0 Alpha

32) scotward: Trade G3 R3 Omega2

33) Erik2point0: Trade Y2 R2 Alpha

34) scotward: Build Y2 Omega2

35) Erik2point0: Discover Y3 Erik2point0 R3 Beta

36) scotward: Trade Y2 G2 Omega2

37) Erik2point0: Discover R2 Alpha G2 Gamma
	Erik2point0: How are you guys doing?

38) scotward: Discover G2 Omega2 Y3 Psi

39) Erik2point0: Sacrifice G3 Erik2point0
Build Y2 Alpha
Build Y2 Beta
Build Y3 Erik2point0

40) scotward: Sacrifice G2 Psi
Build Y3 Scotward
Build G1 Omega2

41) Erik2point0: Move Y3 Beta Gamma

42) scotward: Discover G1 Omega2 B3 Chi

43) Erik2point0: Build R1 Gamma

44) scotward: Sacrifice G3 Scotward
Build G1 Chi
Build G2 Chi
Build G3 Omega2

45) Erik2point0: Build R2 Gamma

46) scotward: Sacrifice Y3 Scotward
Move G1 Chi Gamma
Move G1 Chi Gamma
Move G2 Chi Gamma
Catastrophe Gamma G

47) Erik2point0: Trade Y2 G2 Alpha

48) scotward: Move G3 Omega2 Scotward

49) Erik2point0: Trade Y3 G3 Erik2point0

50) scotward: Move R3 Omega2 Alpha

51) Erik2point0: Sacrifice G3 Erik2point0
Build Y2 Alpha
Build Y3 Beta
Build Y3 Erik2point0

52) scotward: Attack Y2 Alpha

53) Erik2point0: Sacrifice Y1 Alpha
Discover G2 Alpha B2 Gamma

54) scotward: Move R3 Alpha Gamma

55) Erik2point0: Sacrifice G2 Gamma
Build R1 Erik2point0
Build R2 Erik2point0

56) scotward: Trade Y2 G2 Alpha

57) Erik2point0: Trade R1 G1 Erik2point0

58) scotward: Build G1 Alpha

59) Erik2point0: Move G1 Erik2point0 Beta

60) scotward: Discover G1 Omega2 Y3 Phi

61) Erik2point0: Sacrifice Y2 Beta
Move Y3 Beta Omega2
Move R2 Erik2point0 Phi

62) scotward: Sacrifice Y2 Omega2
Move G1 Alpha Erik2point0
Move G2 Alpha Erik2point0

63) Erik2point0: Attack G1 Phi

64) scotward: Sacrifice R3 Gamma
Attack R1 Erik2point0
Attack B1 Erik2point0
Attack Y1 Erik2point0

65) Erik2point0: Sacrifice R2 Phi
Attack G1 Erik2point0
Attack G2 Erik2point0
	Erik2point0: Hmm. I expected a build green followed by catastrophe

66) scotward: Attack G1 Erik2point0

67) Erik2point0: Trade G2 R2 Erik2point0

68) scotward: Build B2 Erik2point0

69) Erik2point0: Sacrifice R2 Erik2point0
Attack B1 Erik2point0
Attack B2 Erik2point0

70) scotward: Build G2 Erik2point0

71) Erik2point0: Trade B2 R2 Erik2point0

72) scotward: Attack R2 Erik2point0

73) Erik2point0: Trade Y3 G3 Omega2

74) scotward: Sacrifice G2 Erik2point0
Build Y1 Erik2point0
Build Y2 Erik2point0
Catastrophe Erik2point0 Y

	Erik2point0: Ouch. Good game. 


24283)
Variants: "Hard time"
Started: 2013.7.22, Ended: 2013.8.3
Participants: wil (S), Marmalade (N)
Winner: Marmalade

1) Marmalade: Homeworld G1 Y2 B3

2) wil: Homeworld B3 R2 G3
	wil: dang blue starts..

3) Marmalade: Build B1 Marmalade

4) wil: Build G1 Wil
	Marmalade: It's not something I've played with before, but I've been crushed by it :)

5) Marmalade: Build B1 Marmalade

6) wil: Trade G1 Y1 Wil

7) Marmalade: Discover B1 Marmalade G3 Ain

8) wil: Trade Y1 G1 Wil

9) Marmalade: Build B1 Ain

10) wil: Trade G1 Y1 Wil
	wil: dang....typed wrong....meant y1 b1.....what a mistake...
	Marmalade: You can still undo...
	wil: you sir are a gentlemen and scholar....but alas I cannot, it is done.  Go ahead, take advantage of my mistake as a proper gamesman, teach me my lesson, and move toward universal dominance...maybe next time I'll not be so impetuous.

11) Marmalade: Build B2 Ain

12) wil: Build G1 Wil

13) Marmalade: Build B2 Marmalade

14) wil: Trade G3 B3 Wil

15) Marmalade: Trade B2 Y2 Ain

16) wil: Build G1 Wil

17) Marmalade: Discover B1 Ain Y1 Kleeia

18) wil: Discover G1 Wil Y1 Y1

19) Marmalade: Build B2 Ain

20) wil: Build Y2 Wil

21) Marmalade: Build Y3 Ain

22) wil: Trade B3 G3 Wil

23) Marmalade: Trade Y2 R2 Ain

24) wil: Build G2 Wil

25) Marmalade: Trade B2 G2 Ain

26) wil: Trade G2 R2 Wil

27) Marmalade: Move G2 Ain Kleeia

28) wil: Build G2 Y1

29) Marmalade: Move Y3 Ain Y1

30) wil: Discover G2 Y1 Y3 Y3

31) Marmalade: Sacrifice G2 Kleeia
Build B2 Ain
Build B2 Kleeia

32) wil: Discover G1 Y1 Y3 Y3a

33) Marmalade: Trade B2 Y2 Ain

34) wil: Build G2 Y3a

35) Marmalade: Sacrifice B2 Marmalade
Trade Y3 G3 Y1
Trade B3 Y3 Marmalade

36) wil: Discover Y1 Wil R1 R1

37) Marmalade: Trade B2 G2 Kleeia

38) wil: Move R2 Wil R1

39) Marmalade: Build R1 Ain

40) wil: Move G1 Y3a R1

41) Marmalade: Build B2 Marmalade

42) wil: Sacrifice G2 Y3a
Build Y3 R1
Build G2 R1

43) Marmalade: Sacrifice G3 Y1
Build G3 Kleeia
Build B2 Kleeia
Build B2 Ain

44) wil: Move Y3 R1 Ain

45) Marmalade: Discover B2 Ain Y1 Mooose

46) wil: Sacrifice R2 R1
Attack Y2 Ain
Attack B1 Ain

47) Marmalade: Sacrifice G3 Kleeia
Build G3 Kleeia
Build B3 Mooose
Build B3 Kleeia
	Marmalade: crap

48) wil: Trade G1 R1 Wil

49) Marmalade: Sacrifice Y3 Marmalade
Move B3 Kleeia Wil
Move B3 Mooose Wil
Move G3 Kleeia Wil
	wil: this is quite the fight...

50) wil: Sacrifice G2 Y3
Build Y3 Wil
Build R2 Wil
	wil: very nice....thought I was gonna end the smurf dominance...

51) Marmalade: Sacrifice R2 Ain
Attack G3S Wil
Attack Y3S Wil

52) wil: Move Y3 Ain Marmalade
	Marmalade: If I've done my sums properly, I think that's done it...
	Marmalade: I could, of course, be hilariously wrong.
	Marmalade: Still, the galaxy may yet quake under the tyrannical yoke of Papa Smurf.
	wil: ouch

53) Marmalade: Attack R2S Wil

54) wil: S R1 Wil
A B2 Marmalade

55) Marmalade: Attack Y2S Wil
	wil: at least I'm trying...

	wil: Yup one step behind
	Marmalade: Cheers for the game :)
	wil: Wonder if i'll ever learn...


24301)
Variants: "Hard time"
Started: 2013.7.22, Ended: 2013.7.30
Participants: wil (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3

2) wil: Homeworld R3 G2 B3
	Broccoli_Commander: Greetings Human, we come in peace. (But we installed Blastoids on our homeworld for defense)

3) Broccoli_Commander: Build G1 Broccoli_commander

4) wil: Build B1 Wil

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) wil: Build B1 Wil

7) Broccoli_Commander: Build Y1 Broccoli_commander

8) wil: Trade B1 Y1 Wil

9) Broccoli_Commander: Build Y2 Broccoli_commander

10) wil: Build Y2 Wil

11) Broccoli_Commander: Discover Y2 Broccoli_commander B3 Blueberry

12) wil: Discover Y1 Wil G1 G1

13) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Muffin

14) wil: Trade B3 G3 Wil

15) Broccoli_Commander: Build G1 Broccoli_commander

16) wil: Sacrifice G3 Wil
Build Y2 G1
Build Y3 G1
Build Y3 Wil

17) Broccoli_Commander: Move Y1 Muffin G1
Catastrophe G1 Y
	wil: does he want a y3 or to catastrophe me?  choices...

18) wil: Build B1 Wil

19) Broccoli_Commander: Move G1 Broccoli_commander Blueberry

20) wil: Discover B1 Wil G1 G1

21) Broccoli_Commander: Build G1 Broccoli_commander

22) wil: Build B1 Wil

23) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Broccoli_commander
Build G2 Blueberry
Build G3 Broccoli_commander

24) wil: Trade Y3 G3 Wil

25) Broccoli_Commander: Trade G2 R2 Blueberry

26) wil: Trade B1 Y1 G1

27) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G3 Blueberry
Build G3 Broccoli_commander

28) wil: Sacrifice G3 Wil
Build Y1 G1
Build Y2 G1
Build Y3 Wil

29) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build Y3 Broccoli_commander
Build Y3 Blueberry

30) wil: Discover Y1 G1 G3 G3

31) Broccoli_Commander: Move G3 Blueberry G1

32) wil: Discover Y2 G1 B3 B3

33) Broccoli_Commander: Sacrifice Y3 Broccoli_commander
Move G3 G1 Wil
Move Y3 Blueberry G1
Move Y3 G1 Wil

34) wil: Attack G3 Wil
	Broccoli_Commander: and once again the two brave warriors invade the enemy's homeworld...
	wil: yeah.and I didn't trade for a red....will I ever learn?

35) Broccoli_Commander: Sacrifice R2 Blueberry
Attack Y3 Wil
Attack G3 Wil

36) wil: Build Y3 Wil

37) Broccoli_Commander: Attack B1 Wil
Catastrophe Wil Y



24335)
Started: 2013.7.29, Ended: 2013.9.27
Participants: harmiton (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) harmiton: Homeworld Y2 B1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52



24148)
Variants: "Unrated"
Started: 2013.7.29, Ended: 2013.7.31
Participants: zoltar (S), Leonard_Daniels (N), harmiton (E)
Winner: harmiton

1) harmiton: Homeworld Y1 B2 G3

	zoltar: We lost a player from the start
Better to start a new game.


24300)
Variants: "Unrated, Hard time"
Started: 2013.7.30, Ended: 2013.8.2
Participants: harmiton (S), dlwillson (N)
Winner: harmiton



24361)
Variants: "Hard time"
Started: 2013.7.30, Ended: 2013.9.2
Participants: wil (S), Salmonax (N)
Winner: wil

1) Salmonax: Homeworld G3 B2 Y3

2) wil: Homeworld R2 B1 G3

3) Salmonax: Build Y1 Salmonax
	wil: thanx for the game!

4) wil: Build G1 Wil

5) Salmonax: Trade Y1 G1 Salmonax

6) wil: Trade G1 Y1 Wil
	Salmonax: Thanks to you too, good luck. =)

7) Salmonax: Discover G1 Salmonax B1 Slippydee

8) wil: Build G1 Wil

9) Salmonax: Build Y1 Salmonax

10) wil: Build Y1 Wil

11) Salmonax: Trade Y3 R3 Salmonax

12) wil: Trade Y1 R1 Wil

13) Salmonax: Build G1 Slippydee

14) wil: Build G2 Wil

15) Salmonax: Build G2 Slippydee

16) wil: Discover G2 Wil Y3 Y3

17) Salmonax: Trade G2 R2 Slippydee

18) wil: Build G2 Y3

19) Salmonax: Build R1 Slippydee

20) wil: S G3 Wil
B G2 Y3
B G3 Wil
B G3 Wil

21) Salmonax: Sacrifice Y1 Salmonax
Move G1 Slippydee Y3
Catastrophe Y3 G

22) wil: T G3 Y3 Wil

23) Salmonax: Build G1 Slippydee

24) wil: Build G2 Wil

25) Salmonax: Build G2 Slippydee

26) wil: Discover G1 Wil Y3 Y3

27) Salmonax: Trade G1 Y1 Slippydee

28) wil: Build G1 Wil

29) Salmonax: Move G2 Slippydee Y3

30) wil: Sacrifice G3 Wil
Build G2 Y3
Build G3 Y3
Build G3 Wil
Catastrophe Y3 G

31) Salmonax: Build R1 Salmonax
	wil: a reboot...

32) wil: Discover G2 Wil Y3 Y3

33) Salmonax: Trade R3 Y3 Salmonax
	Salmonax: Heh. =)

34) wil: Move R1 Wil Y3
	Salmonax: oops

35) Salmonax: Build R2 Salmonax

36) wil: Build R3 Y3
	wil: now you can do that...

37) Salmonax: Build Y1 Salmonax
	Salmonax: Well, I think I will!

38) wil: Discover R3 Y3 B1 B1

39) Salmonax: Build Y2 Slippydee
	wil: me too!

40) wil: Build R3 Y3


41) Salmonax: Discover R1 Slippydee G3 Wheskler

42) wil: Move R3 Y3 Slippydee

43) Salmonax: Build R3 Slippydee

44) wil: Sacrifice R3 B1
Attack R3 Slippydee
Attack G1 Slippydee
Attack Y2 Slippydee

45) Salmonax: Move R1 Salmonax Slippydee
Catastrophe Slippydee R
	wil: you must be west coast?
	Salmonax: Mountain time.
	wil: ah...I's east coast....I knew one of us was up late/early...

46) wil: Build R1 Y3
	wil: I was wondering if you might choose that route....

47) Salmonax: Move Y1 Slippydee Wheskler

48) wil: Build Y2 Slippydee
	Salmonax: Really swingy game. =)
	wil: another reboot!  Once you took that path it was fairly inevitable eh?

49) Salmonax: Move Y1 Salmonax Slippydee

50) wil: Sacrifice R1 Y3
Attack Y1 Slippydee

51) Salmonax: Move Y1 Wheskler Slippydee
Catastrophe Slippydee Y

52) wil: Build R1 Y3

53) Salmonax: Build R2 Wheskler

54) wil: Move R1 Y3 Slippydee

55) Salmonax: Build Y1 Salmonax

56) wil: Build R3 Slippydee

57) Salmonax: Trade Y1 B1 Salmonax

58) wil: Build R3 Y3

	wil: I should have it...it seems to me anyway...but i just can't get a handle on how to get it done....the thing about this game is that taking advantage of a little mistake rotates the power during reboots and anything can happen...quite the give and take so far...
	wil: awe.... I would have like to have finished....hope all is ok in your world.



24362)
Variants: "Unrated, Hard time"
Started: 2013.8.5, Ended: 2013.8.7
Participants: wil (S), harmiton (N)
Winner: wil



24330)
Variants: "Hard time"
Started: 2013.8.10, Ended: 2013.8.22
Participants: Marmalade (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3
	wil: just a masochist...

2) Marmalade: Homeworld G1 Y3 B3

3) wil: Build G1 Wil
	Marmalade: We seem to be about the same level, which is great.

	wil: So far I am learning from all intergalactic battles....when I play better folks I get annihilated by various tactics and then try to use these against weaker player and learn how it plays out.  I use them against equal players and see how they defended it vs how I did....but I lose to weaker and beat much better occasionally.....it is such a game of steps...and while you can make one glorious mistake that someone takes advantage of....mostly it is a series of little things that add upto you being in a bad position....and then waiting andsearching for some way to turn the tide..

4) Marmalade: Build B1 Marmalade

5) wil: Trade G1 B1 Wil

6) Marmalade: Build B2 Marmalade

7) wil: Build B2 Wil

8) Marmalade: Discover B2 Marmalade G2 Coo

9) wil: Trade B1 Y1 Wil

	wil: phooey


24331)
Variants: "Hard time"
Started: 2013.8.10, Ended: 2013.8.20
Participants: wil (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3
	wil: I think I am beginning to learn...  unless I screw up on my game I should be climbing the ladder a bit...

2) wil: Homeworld B3 R1 G3

3) Broccoli_Commander: Build G1 Broccoli_commander
	wil: did I somehow goof up and put us in two games?

4) wil: Build G1 Wil
	Broccoli_Commander: Yes it looks like it, I'll just let the other one die...
Anyway, looking forward to seeing wil 2.0 ;)

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander
	wil: ah...too bad...I was gonna suggest we start out the same and see how a change in choice somewhere creates a totally different game...

6) wil: Trade G1 Y1 Wil

7) Broccoli_Commander: Build G1 Broccoli_commander

8) wil: Build G1 Wil
	Broccoli_Commander: Oh... Well it's not a bad idea, but I wouldn't know when to make a change to get a meaningful result... This particular opening is pretty common so for instance any early change will simply yield two different games
	wil: I don't think it would be an intentional change....as the two games played out one of us would make an adjustment to strategy and a new game would be developed...   hmmmm  that makes me think... we should pick openings and have a lot of people play the exact same openings..and switch sides...and see the variety of games that are created...


9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

10) wil: Trade G1 R1 Wil

11) Broccoli_Commander: Build Y1 Broccoli_commander

12) wil: Build R2 Wil

13) Broccoli_Commander: Build Y2 Broccoli_commander

14) wil: Build Y2 Wil

15) Broccoli_Commander: Trade Y2 R2 Broccoli_commander

16) wil: Discover R2 Wil G2 G2

17) Broccoli_Commander: Move R2 Broccoli_commander Blueberry

18) wil: Move Y1 Wil G2

19) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry

20) wil: Build Y2 Wil

21) Broccoli_Commander: Build G1 Broccoli_commander

22) wil: Build R2 Wil

23) Broccoli_Commander: Build R3 Blueberry

24) wil: Build R3 G2

25) Broccoli_Commander: Discover R3 Blueberry G2 Lettuce

26) wil: Trade R2 G2 Wil

27) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G1 Broccoli_commander
Build G3 Broccoli_commander
Build G3 Blueberry

28) wil: Sacrifice Y2 Wil
Discover Y2 Wil B2 B2
Move R1 Wil B2

29) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build R2 Lettuce
Build R3 Blueberry

30) wil: Build Y2 G2

31) Broccoli_Commander: Trade G1 B1 Broccoli_commander

32) wil: Move Y2 G2 Wil

33) Broccoli_Commander: Build B1 Broccoli_commander

34) wil: Build Y2 G2

35) Broccoli_Commander: Build Y3 Broccoli_commander

36) wil: Build Y3 Wil

37) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G1 Broccoli_commander
Build G3 Broccoli_commander
Build Y3 Blueberry

38) wil: Trade Y3 B3 Wil

39) Broccoli_Commander: Sacrifice Y3 Broccoli_commander
Move R2 Blueberry G2
Move R3 Blueberry G2
Move G3 Blueberry B2
Catastrophe G2 R

40) wil: Build Y3 Wil
	wil: ouch
	wil: ouch

41) Broccoli_Commander: Sacrifice R2 Lettuce
Attack Y2 B2
Attack R1 B2

42) wil: Trade Y2 R2 Wil

43) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Blueberry
Build Y2 B2
Build Y3 Broccoli_commander

44) wil: Move B3 Wil G2

45) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build R2 B2
Build R2 Lettuce

46) wil: Move R2 Wil G2

47) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build R3 Lettuce
Build R3 B2

48) wil: Build B1 G2
	wil: Ooops I blew it again...

49) Broccoli_Commander: Sacrifice Y3 Blueberry
Move R3 Lettuce Wil
Move G3 B2 Wil
Move R3 B2 Wil

50) wil: Sacrifice R2 G2
Attack R3 Wil
Attack G3 Wil
	Broccoli_Commander: Good game though!
You really got me worried when you took the last r1 at the beginning... This was also a mistake from my part

51) Broccoli_Commander: Sacrifice R3 Lettuce
Attack R3 Wil
Attack Y3 Wil
Attack G3 Wil

52) wil: Sacrifice Y2 G2
Move B1 G2 Blueberry
Move B1 Blueberry Broccoli_commander
C Broccoli_commander B

53) Broccoli_Commander: Sacrifice R2 B2
Attack G3 Wil
Attack G2 Wil
	wil: gad have you got my homeworld full of your large ships...
	Broccoli_Commander: You gave me no other choice ;-)
	wil: it was inevitable.....that is the most imposing force I've ever seen in my homeworld....so I thought I'd give your home star something to remember us by...



24395)
Variants: "Hard time"
Started: 2013.8.10, Ended: 2013.8.13
Participants: wil (S), Broccoli_Commander (N)
Winner: wil



24407)
Variants: "Hard time"
Started: 2013.8.14, Ended: 2013.11.8
Participants: Broccoli_Commander (S), AdamBadura (N)
Winner: Broccoli_Commander

1) AdamBadura: Homeworld G3 B2 Y3

2) Broccoli_Commander: Homeworld R1 B2 G3

3) AdamBadura: Build Y1 Adambadura

4) Broccoli_Commander: Build G1 Broccoli_commander

5) AdamBadura: Trade Y1 R1 Adambadura

6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

7) AdamBadura: Build R1 Adambadura

8) Broccoli_Commander: Build G1 Broccoli_commander

9) AdamBadura: Build R2 Adambadura

10) Broccoli_Commander: Build G1 Broccoli_commander

11) AdamBadura: Trade R1 G1 Adambadura

12) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

13) AdamBadura: Build G2 Adambadura

14) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G2 Blueberry
Build G3 Broccoli_commander

15) AdamBadura: Trade G1 Y1 Adambadura

16) Broccoli_Commander: Trade G2 R2 Blueberry

17) AdamBadura: Discover R2 Adambadura B1 Changeroom

18) Broccoli_Commander: Build G1 Broccoli_commander

19) AdamBadura: Build R1 Adambadura

20) Broccoli_Commander: Discover G1 Broccoli_commander B3 Muffin

21) AdamBadura: Trade Y3 G3 Adambadura

22) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Muffin
Build Y1 Broccoli_commander
Build Y2 Broccoli_commander

23) AdamBadura: Sacrifice G2 Adambadura
Build R2 Adambadura
Build R3 Changeroom

24) Broccoli_Commander: Build R3 Blueberry

25) AdamBadura: Build Y2 Adambadura

26) Broccoli_Commander: Sacrifice Y1 Broccoli_commander
Move R3 Blueberry Broccoli_commander

27) AdamBadura: Trade R1 B1 Adambadura

28) Broccoli_Commander: Build G2 Broccoli_commander

29) AdamBadura: Trade R3 G3 Changeroom

30) Broccoli_Commander: Sacrifice Y2 Broccoli_commander
Move G2 Blueberry Changeroom
Move G1 Blueberry Changeroom

31) AdamBadura: Trade G3 R3 Changeroom
	AdamBadura: Tomorrow I'm going on a trip. I will be back on Monday evening. In the mean time I don't expect to be able to make any moves. On the other hand considering slowness of my moves that would not really be a change. :(

32) Broccoli_Commander: Build G3 Muffin

33) AdamBadura: Attack G2 Changeroom

34) Broccoli_Commander: Sacrifice G2 Muffin
Build R1 Blueberry
Build R3 Blueberry

35) AdamBadura: Build G2 Adambadura

36) Broccoli_Commander: Sacrifice Y1 Broccoli_commander
Move G1 Changeroom Adambadura
Catastrophe Adambadura G

37) AdamBadura: Move R1 Adambadura Blueberry
Catastrophe Blueberry R

38) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

39) AdamBadura: Move Y1 Adambadura Changeroom
	AdamBadura: Somehow I missed that... :(

40) Broccoli_Commander: Sacrifice Y1 Broccoli_commander
Move G3 Muffin Adambadura



24422)
Started: 2013.8.20, Ended: 2013.10.23
Participants: mnkr (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3
	mnkr: good day. I thought that was a 10 days/movement.
can we change it?

2) mnkr: Homeworld B3 Y1 G3
	ts52: Not sure we can change an existing game, but I'm happy to abandon this one and start a new if you like (I'm also really lax on forcing a game end just because you ran out of time, happy to just agree to let it slide for a month or so if you like).

3) ts52: Build G1 Ts52
	mnkr: with 10 days per movement I can play well. Have you to create the game?
	ts52: I think you have to create a new challenge to change the days/move.

4) mnkr: Build G1 Mnkr

5) ts52: Trade G1 Y1 Ts52

6) mnkr: Discover G1 Mnkr Y2 Nnkr

7) ts52: Build G1 Ts52
	mnkr: excuse me I had several connection problems.
	ts52: No problem. Glad you were able to get connected.

8) mnkr: Trade G3 Y3 Mnkr

9) ts52: Discover G1 Ts52 B3 Grover
	mnkr: Thanks, I think thatI have to learn a lot about this game before win you.

10) mnkr: Build G1 Nnkr
	ts52: There is definitely a bit of a learning curve in this game, but it's one of my favorites.

11) ts52: Build G2 Grover

12) mnkr: Move G1 Nnkr Mnkr

13) ts52: Build G2 Ts52

14) mnkr: Build G2 Mnkr

15) ts52: Discover G2 Ts52 B3 Gonzo

16) mnkr: Build G3 Nnkr
	mnkr: build G3 nnkr

17) ts52: Build G3 Ts52

18) mnkr: Discover Y3 Mnkr B2 Onkr

19) ts52: Trade G2 Y2 Grover

20) mnkr: Trade G2 Y2 Mnkr

21) ts52: Build Y3 Grover

22) mnkr: Build Y3 Mnkr

23) ts52: Sacrifice Y3 Grover
Move Y1 Ts52 Grover
Move Y1 Grover Onkr
Move Y1 Onkr Mnkr
Catastrophe Mnkr Yellow

24) mnkr: Build G2 Mnkr

25) ts52: Trade G3 R3 Ts52
	mnkr: wow good movement! I didn't see it!

26) mnkr: Move Y3 Onkr Mnkr
	mnkr: Am I die?

27) ts52: Move R3 Ts52 Mnkr

28) mnkr: Sacrifice Y3 Mnkr
Move G3 Nnkr Mnkr
Move G3 Mnkr Ts52
Move G1 Nnkr Mnkr
	ts52: I think so, yes.

29) ts52: Trade G3 R3 Ts52

30) mnkr: Build G2 Ts52

31) ts52: Attack G2 Mnkr

32) mnkr: Trade G2 R2 Ts52

33) ts52: Attack R2 Ts52

34) mnkr: Build G2 Ts52

35) ts52: Sacrifice R2 Ts52
Attack G1 Mnkr
Attack G1 Mnkr
	ts52: Thanks for the game!



24179)
Started: 2013.8.21, Ended: 2013.9.18
Participants: thejackdiaz (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) thejackdiaz: Homeworld B3 R2 G3

3) wil: Build G1 Wil

4) thejackdiaz: Build G1 Thejackdiaz

5) wil: Trade G1 Y1 Wil

6) thejackdiaz: Trade G1 Y1 Thejackdiaz

7) wil: Build G1 Wil

8) thejackdiaz: Build G1 Thejackdiaz

9) wil: Discover G1 Wil Y3 Y3



24394)
Variants: "Hard time"
Started: 2013.8.23, Ended: 2013.9.4
Participants: Marmalade (S), wil (N)
Winner: Marmalade

1) wil: Homeworld Y2 B1 G3

2) Marmalade: Homeworld G3 Y1 B3

3) wil: Build G1 Wil
	Marmalade: Hi ho, sorry - I must have totally missed the last one, I was on holiday :)
	wil: I am ready to be abused agin

4) Marmalade: Build B1 Marmalade

5) wil: Trade G1 B1 Wil

6) Marmalade: Discover B1 Marmalade G2 Floob

7) wil: Build B2 Wil

8) Marmalade: Build B2 Floob

9) wil: Discover B2 Wil Y3 Y3

10) Marmalade: Trade B2 Y2 Floob

11) wil: Discover B2 Y3 G2 G2

12) Marmalade: Build B2 Marmalade

13) wil: Build G1 Wil

14) Marmalade: Trade B2 R2 Marmalade

15) wil: Build B2 G2

16) Marmalade: Build Y1 Floob

17) wil: Trade B2 Y2 G2

18) Marmalade: Build B2 Marmalade

19) wil: Build G1 Wil

20) Marmalade: Trade B3 G3 Marmalade

21) wil: Discover G1 Wil Y3 Y3

22) Marmalade: Move R2 Marmalade G2

23) wil: Sacrifice Y2 G2
Move B2 G2 Y3
Discover B2 Y3 G2 Phooey
	wil: some fool did not get a gun....AGAIN

24) Marmalade: Sacrifice G3 Marmalade
Build B2 Floob
Build B3 Marmalade
Build B3 Floob

25) wil: Trade B1 R1 Wil

26) Marmalade: Trade B3 G3 Floob

27) wil: Sacrifice G3 Wil
Build G1 Y3
Build G3 Wil
Build R1 Wil

28) Marmalade: Move B2 Floob Y3

29) wil: Discover R1 Wil Y3 Y3a

30) Marmalade: Sacrifice G3 Floob
Build B1 Floob
Build B3 Floob
Build B3 Y3

31) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Wil
Build R1 Wil

32) Marmalade: Sacrifice R2 G2
Attack G1N Y3
Attack G1N Y3

33) wil: Move G3 Wil Y3a

34) Marmalade: Sacrifice Y2 Floob
Move G1 Y3 Wil
Move G1 Y3 Wil
Catastrophe Wil G

35) wil: Move G3 Y3a Wil
	wil: oops

36) Marmalade: Trade B2 R2 Marmalade

37) wil: Build B2 Phooey

38) Marmalade: Move B3 Floob Y3a

39) wil: Discover R1 Y3a Y2 Y2

40) Marmalade: Build R2 Marmalade
	wil: got behind and on the run yet agin....

41) wil: Build G1 Wil
	Marmalade: I find that really interesting about Homeworlds - one mistake, or less-than-efficient move can have consequences for several turns after.

I still haven't worked out how you play the mid-to-end game, but I can see how you can gain an advantage in the early game (even if that's by watching someone beat me)

42) Marmalade: Trade R2 Y2 Marmalade

43) wil: Move G1 Wil Y3 Y3

44) Marmalade: Build R2 Marmalade
	wil: absolutely agree..only i don't appear to be learning...

45) wil: Build G1 Wil
	Marmalade: See, this is where I flounder - I've clearly gained an advantage in ships, but I don't know how to exploit it yet.

46) Marmalade: Sacrifice Y2 Marmalade
Move B3 Y3 Wil
Move B3 Y3a Wil

47) wil: Sacrifice G3 Wil
Build R2 Y2
Build R3 Wil
Build R3 Wil
Catastrophe Wil R
	wil: beware thespeech..... i missed the take one you get back two scenario yet again...

48) Marmalade: Sacrifice R2 Marmalade
Attack G1N Wil
Pass
	Marmalade: I wasn't bluffing earlier - I couldn't see a way forward, then it just fell into place. Thanks for the game again.
	wil: Someday I hope to actually challenge you.



24299)
Variants: "Hard time"
Started: 2013.8.26, Ended: 2013.10.2
Participants: SilentTitan (S), wil (N)
Winner: SilentTitan

1) wil: Homeworld Y2 G1 B3
	wil: lamb walking into slaughter agin....mutton for punishment

2) SilentTitan: Homeworld R3 B2 G3
	SilentTitan: no....no.. you had me on that last game and I timed out.... I apologize for that. I have been insanely busy getting jobs leaving jobs.. hopefully it's all going to slow down a bit in about a week.



3) wil: Build B1 Wil

4) SilentTitan: Build G1 Silenttitan

	wil: hope all goes well on the work search...

5) wil: Discover B1 Wil G3 G3

6) SilentTitan: Trade G1 B1 Silenttitan

7) wil: Build B1 Wil

8) SilentTitan: Build B2 Silenttitan

9) wil: Build B2 G3

10) SilentTitan: Trade B2 Y2 Silenttitan

11) wil: Trade B2 Y2 G3

12) SilentTitan: Build G1 Silenttitan

13) wil: Build B2 Wil

14) SilentTitan: Discover B1 Silenttitan G1 Sol

15) wil: Trade B2 R2 Wil

16) SilentTitan: Build B2 Sol

17) wil: Discover B1 Wil Y3 Y3

18) SilentTitan: Trade B1 Y1 Sol

19) wil: Build B1 Wil

20) SilentTitan: Trade B2 R2 Sol

21) wil: Build B2 Wil

22) SilentTitan: Build Y1 Sol

23) wil: Trade B3 G3 Wil

24) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y3 Silenttitan
Build Y3 Silenttitan

25) wil: Sacrifice G3 Wil
Build B2 Y3
Build B3 Y3
Build B3 Wil

26) SilentTitan: Discover Y1 Sol B3 Tic

27) wil: Trade B3 G3 Y3

28) SilentTitan: Build G2 Silenttitan
	wil: simply amazing how differently these games all play out.

29) wil: Build B3 G3

30) SilentTitan: Discover Y1 Sol R3 Tac
	SilentTitan: Yes it is

31) wil: Trade B3 G3 G3

32) SilentTitan: Discover Y2 Silenttitan R1 Toe

33) wil: Build B3 G3

34) SilentTitan: Move Y2 Toe Tic

35) wil: Trade B3 R3 G3

36) SilentTitan: Move R2 Sol Silenttitan

37) wil: Move R3 G3 Sol

38) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Tic Wil
Move Y1 Tac Wil
Discover Y1 Sol B3 Toe

39) wil: Build Y3 G3




40) SilentTitan: Trade Y2 G2 Tic

41) wil: Build G2 Y3

42) SilentTitan: Build Y2 Silenttitan

43) wil: Sacrifice G3 Y3
Build G3 Y3
Build R1 Sol
Build R1 Wil

44) SilentTitan: Move Y1 Toe Wil
Catastrophe Wil Yellow

45) wil: Sacrifice G3 Y3
Build G3 Y3
Build B3 G3
Build Y1 G3

46) SilentTitan: Sacrifice Y3 Silenttitan
Move G2 Silenttitan Wil
Move G1 Silenttitan Wil
Move G2 Tic Wil
Catastrophe Wil Green

	wil: have you any idear what a relief that is you finally blew that up??
	SilentTitan: Bugging you was it?
	SilentTitan: Ok... So I believe this is checkmate.... I don't believe you can do anything to stop it.  my next move is:

Sacrifice Y3 Silenttitan
move g2 silenttitan wil
move g1 silentttian wil
move g2 tic wil
catastrophe wil green

you can undo your last move and see if there is anything you can do.  I did want you to be aware of what I was going to do before I did it .... because it's hard to see what happened after it happens.


	SilentTitan: nevermind.... I found an issue
	SilentTitan: turns out you could sac your y3 and move the three blue ships in your homeworld to kill the Tic system and that would have taken my third green away so I would not have been able to cat your homeworld.  
	wil: argghh...I missed it.   So in reality I didn't start another game while we were in one...I was out and didn't realize it...I was looking elsewhere and didn't see that...nice play, thanx 


24447)
Variants: "Hard time"
Started: 2013.9.3, Ended: 2013.9.18
Participants: wil (S), shmil1 (N)
Winner: wil

1) shmil1: Homeworld R3 G2 B3

2) wil: Homeworld G2 Y1 B3

3) shmil1: Build B1 Shmil1
	wil: thank you for the game!

4) wil: Build B1 Wil
	shmil1: i didn´t play for a while. looking forward...


5) shmil1: Trade B1 Y1 Shmil1

6) wil: Discover B1 Wil G3 G3

7) shmil1: Build Y1 Shmil1

8) wil: Build B1 G3

9) shmil1: Build Y2 Shmil1

10) wil: Build B1 Wil

11) shmil1: Discover Y2 Shmil1 G1 Zelena1

12) wil: Build B2 G3

13) shmil1: Build Y2 Zelena1

14) wil: Trade B2 Y2 G3

15) shmil1: Sacrifice Y2 Zelena1
Move Y2 Zelena1 G3
Move Y2 G3 Wil

16) wil: T B3 R3 Wil

17) shmil1: Build Y2 Wil
	wil: wow...what have I done...nice move you scurvy dog!!

18) wil: Build Y3 G3
	wil: This could very well be a record loss for me!

19) shmil1: Trade B3 G3 Shmil1

20) wil: Discover Y3 G3 G1 G1

21) shmil1: Discover Y1 Shmil1 G1 Malazelena

22) wil: Build Y3 G1

23) shmil1: Discover Y1 Malazelena B3 Modra

24) wil: Build Y3 G3


25) shmil1: Move Y1 Modra Wil
Catastrophe Wil Y

26) wil: Build B2 G3

27) shmil1: Move Y1 Shmil1 G1

28) wil: Sacrifice Y2 G3
Move Y3 G1 Shmil1
Move Y3 G1 Shmil1

29) shmil1: Attack Y3 Shmil1

30) wil: Sacrifice R3 Wil
Attack G3 Shmil1
Attack Y3 Shmil1
Pass

	wil: the ole you take one, I take two has been used against me half a dozen times and I've finally learned how to get through it.


24436)
Variants: "Hard time"
Started: 2013.9.6, Ended: 2013.9.9
Participants: SilentTitan (S), Marmalade (N)
Winner: SilentTitan



23909)
Variants: "Unrated, Hard time"
Started: 2013.9.10, Ended: 2013.11.9
Participants: wil (S), Marmalade (N), Aristos (E)
Winner: wil

1) Marmalade: Homeworld Y1 G2 B3

2) Aristos: Homeworld B3 G2 Y3

3) wil: Homeworld R3 B1 G3 Wil

4) Marmalade: Build B1 Marmalade
	wil: Well welcome to the fray!  I didn't like the four way because two people were inherently 1 star away...so glad you all started this one up...it is my first time in a three way battle for the universe and I intend to enjoy annihilation...

5) Aristos: Build Y1 Aristos

6) wil: Build G1 Wil
	Aristos: I've only played one previous more-than-two-player game, so this will be novel -- especially as that last one ended in a "withdraw due to failure to play in time" by two of my three opponents.
	wil: yeah....that sucks...can't find time to make a move in 5 days??  watsup widat?

7) Marmalade: Build B1 Marmalade

8) Aristos: Build Y1 Aristos

9) wil: Trade G1 B1 Wil

10) Marmalade: Discover B1 Marmalade G3 Bigpointything

11) Aristos: Discover Y1 Aristos Y1 Spark

12) wil: Build B2 Wil

13) Marmalade: Build B2 Bigpointything

14) Aristos: Build Y2 Aristos

15) wil: Trade B2 Y2 Wil

16) Marmalade: Build B2 Marmalade

17) Aristos: Trade Y2 B2 Aristos
	wil: oops....just about killeded myselfish
	Marmalade: heehee

18) wil: Build Y2 Wil

19) Marmalade: Trade B2 Y2 Marmalade

20) Aristos: Trade Y1 R1 Aristos

21) wil: Discover B1 Wil G2 G2

22) Marmalade: Trade B2 R2 Bigpointything
	Aristos: As I said, this is my first multiplayer game... I find myself having trouble contemplating moves that Wil would never play against me 1-on-1 because it would give me too much advantage, but because I'm not the next player are fine because Marmalade takes advantage instead of me.  Tricky.
	wil: you underestimate my stupidity...

23) Aristos: Discover B2 Aristos G1 Ping

24) wil: Build B2 G2
	Aristos: You named a star system G2? That's just evil. At least it is a green size 2 star. Had you named a Y3 as G2... hm... as a strategy, that's worth considering... :-)

25) Marmalade: Build B2 Bigpointything

26) Aristos: Build Y1 Aristos
	wil: ah...I do it out of convenience...evil is making us type some long convoluted made up name for star systems...but i definetly like the idear of naming them what they are not...you've put it out in the universe expect it in a star near you soon!   Btw...I was in one 4 person game and it was PAINFUL how slow play went and the game eventually died...I absolutely appreciate the responsiveness of you both...it makes it fun.  Gotta find someone to make an app, I'd be blown away to see this in real time.

27) wil: Trade B2 R2 G2
	Marmalade: This is the longest-lasting multiplayer game I've had on this site...
	wil: Wow, that is awful...14 moves in 9 days and that is the longest??

28) Marmalade: Trade B2 Y2 Bigpointything

29) Aristos: Move Y1 Aristos Ping
	Marmalade: Yep, so far they've all been abandoned 3-4 moves in.

30) wil: Move Y2 Wil G2

31) Marmalade: Build Y3 Bigpointything

32) Aristos: Build Y3 Ping
	wil: Well we've got playas here this time....we is rollin!  Star systems building and expanding.

33) wil: Build Y3 G2

34) Marmalade: Build B2 Bigpointything

35) Aristos: Build B2 Ping
	wil: you all are so sweet, you shared and left me one!

36) wil: Trade Y2 B2 Wil

37) Marmalade: Discover B2 Bigpointything G2 Floop
	Aristos: We aim to please. 

38) Aristos: Build Y2 Aristos

39) wil: Build B3 G2
	Aristos: I'm trying to figure out how afraid to be of BigPointyThing. In a two-player game, I'd have to worry about his those yellow ships jumping into my homeworld or into Ping in short order, but in the three-player, it seems like either move would leave Marmalade and me totally at the mercy of wil. Weird balance of power. 

40) Marmalade: Build B3 Bigpointything
	Marmalade: I'm having the same issue. It's a lot harder to judge this in free-for-all. I suspect that Homeworlds multiplayer is best with the sinister variant (i.e., attack left), but we'll see how this goes.
	wil: BUUWAAHHAAAHAAAA

41) Aristos: Sacrifice Y2 Aristos
Move Y1 Spark G2
Move Y1 Ping G2
Catastrophe G2 Yellow
	wil: I'm actually just totally confused...  I enjoy being able to play with you two...hope I can put up a good game.  I think I'll realy have to set this one up at home.   I say however it turns out, we reboot it switching homeworlds and keep playing the same game from different seats to see the variances...

42) wil: Trade B3 Y3 G2
	Aristos: Ok. You both took B3s without leaving one for me. Therefore, one of you must suffer. I will either remove all yellows in G2 or all yellows in BigPointyThing. Please make your case as to why you are the lesser threat and I need to go after your opponent. You have a couple hours, maybe even until dawn, before I flip a coin.

43) Marmalade: Build B3 Floop
	Aristos: Decided not to wait... Finally decided to take out G2 on the grounds that wil has no yellow remaining so the loss was more devastating. If I am going to "use up" my fire power on one opponent, it seemed to make the most sense to go after the one that would be most devastated. Sorry, wil. I just felt threatened by two strong opponents. I may pay for this zealotry... I've left Marmalade rather well positioned. 

44) Aristos: Build R1 Aristos

45) wil: Build Y1 G2

46) Marmalade: Trade B2 Y2 Floop

47) Aristos: Discover B2 Ping G3 Pong

48) wil: Build B2 G2

49) Marmalade: Move B3 Floop Pong

50) Aristos: Build Y1 Ping
	wil: this has got to be the most responsive/active game I've been in...love participation.

51) wil: Trade B2 Y2 Wil

52) Marmalade: Trade B3 R3 Pong
	Aristos: Why, hello there, Marmalade. Glad we can *share* this Pong system. As a G3, it is certainly big enough for both of us. RIGHT?

53) Aristos: Sacrifice Y3 Ping
Move B2 Ping Pong
Move B2 Pong Marmalade
Move B2 Pong Marmalade
Catastrophe Marmalade Blue
	wil: I was thinking of joining you....still may...

54) wil: Build G1 Wil
	Marmalade: Phenomenal Cosmic Triangles... Itty Bitty Living Space.
	Aristos: Sacrifice y3 Ping
move b2 Ping g2
move b2 g2 Marmalade
move b2 Pong Marmalade
catastrophe Marmalade Blue

55) Marmalade: Move B3 Bigpointything Marmalade
	Aristos: Typed in the wrong slot. 

I attacked Wil earlier. Now, I balanced the scales of justice... I took out the same number of ships, even. 

What was that about itty bitty living spaces? :-) 

56) Aristos: Trade R1 B1 Aristos
	wil: I'm not quite understanding the logic...you knocked out two of my ships at a cost of 3 of yours, spent another three to knock out two of Marmalades...has the aggresiveness paid off?
	wil: I'm not quite understanding the logic...you knocked out two of my ships at a cost of 3 of yours, spent another three to knock out two of Marmalades...has the aggresiveness paid off?

57) wil: Discover Y1 G2 G1 G1
	Marmalade: "Never interrupt your enemy when he is making a mistake."
	Aristos: Has the aggressiveness paid off? I don't know. I'm still figuring out all the levers that I have to play with in a 3-way game. 

58) Marmalade: Build B2 Marmalade
	wil: I have no enemies here.   I have fellow gamers exploring new territory...for us....once we get the hang of it....

59) Aristos: Trade Y3 G3 Aristos

60) wil: Sacrifice G3 Wil
Build G1 Wil
Build G3 Wil
Build R1 G2

61) Marmalade: Build B2 Bigpointything

62) Aristos: Build R1 Aristos
	wil: What are the levers you are thinking are here and are not in binary?   Or what is it you are calling levers in binary?  bluebird...factory....etc??
	wil: we are at 30 moves the equivalaent of 20 in a binary game...

63) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 G2
Build Y3 G1

64) Marmalade: Build Y3 Floop
	Aristos: Levers? Well, take a look at my position. It's a disaster in a two player game. But neither of you can really afford to commit enough forces to truly knock me out of the game without leaving yourself too weak once it is a two-player match. Oh, you could hit me, sure, just like I've hit both of you, but taking me out requires a bigger slice of forces. I find that interesting. It means that in a three-player game, there are tactical options that are suicidal in a two-player game -- which I would have guessed before the game started, but I am surprised how far I have pushed that. 

65) Aristos: Move Y1 Ping Aristos

66) wil: M B1 G2 G1

67) Marmalade: Discover B1 Bigpointything G1 Fluff

68) Aristos: Move R1 Aristos Fluff

69) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 G2
Build B3 G1

70) Marmalade: Build B3 Fluff

71) Aristos: Build R1 Fluff

72) wil: Move R1 G2 G1

73) Marmalade: Move Y2 Bigpointything Fluff

74) Aristos: Attack B1N Fluff

75) wil: Build R2 G1

76) Marmalade: Sacrifice R2 Bigpointything
Attack R1E Fluff
Attack R1E Fluff
	Aristos: Why did I attack? Because it was pretty much the only move I had... all others were suicide. 
	Aristos: In case you didn't know (because I didn't and had to go find out) in a multiplayer game, to attack you have to specify which opponent's ship. So the command I just did was:
     attack b1N Fluff
The "N" specifies "North".

77) Aristos: Build R2 Aristos

78) wil: Discover B3 G1 R3 R3

79) Marmalade: Attack B1E Fluff

80) Aristos: Pass
	wil: Now we know, you just like to attack.  But for future reference, it is at the top of our page... "the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E)."

81) wil: Move R1 G1 Pong
	Aristos: :-) Missed seeing that. Thanks. 

82) Marmalade: Sacrifice Y3 Floop
Move R3 Pong Floop
Move R1 Fluff Aristos
Move R1 Fluff Aristos
Catastrophe Aristos Red
	Aristos: Ok... at some point your two massive armies are going to have to actually move against each other. Perhaps you'll kill me along the way... regardless, I'm going to just sit here and watch for a bit.

83) Aristos: Build Y3 Aristos
	wil: You will have to pay for that front row seat..

84) wil: Move Y1 G2 Pong

85) Marmalade: Move R3 Floop Pong

86) Aristos: Trade Y1 R1 Aristos

87) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Pong
Build R1 Pong
Catastrophe Pong R

88) Marmalade: Trade B2 R2 Marmalade

89) Aristos: Build Y1 Aristos

90) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 R3
Build R1 G1

91) Marmalade: Build R1 Marmalade

92) Aristos: Discover Y3 Aristos R1 Flash

93) wil: Move G1 Wil G2

94) Marmalade: Move R2 Marmalade Pong
	wil: The way these games play out sure is interesting...you always have to look behind your back...I like it a lot better than four players and while it will get to two at sometime, I have a feeling that when it makes it to two....the game is essentially over.   As I see it the game is to not anihilate another, but be in a position to take over their homeworld and quickly take over one or more of their star systems.
	wil: I wish there was an 'online' light on our names, so we would know who is there and if a move was to happen to hang around..

95) Aristos: Move Y3 Flash Pong
	Aristos: Wil: I started with a similar hypothesis, but I'm not sure it is supported by this game.

That hypothesis suggests that at some point, one player will make a tragic mistake and you just need to have an armada built up so you can trivially take advantage of that mistake and attack your remaining opponent in a single turn. Let's call it the "lurker hypothesis". 

My current hypothesis is that I think *both* of you have a short term goal to remove me from the board, rather than waiting for me to make a mistake. After that, you'll then play a robust two-player game. Call it the "joint strike hypothesis". 

Here's my argument...

I attacked both of you early on. That action was predicated on the idea that neither of you could afford to actually take me out without leaving yourselves vulnerable. I thought maybe an early strike would put me in a beneficial position later on. 

Clearly it did not leave me in a good position. I was wrong there. But I am still alive because it is expensive for you to take me out. That would seem to support the lurker hypothesis.

But in the current position, although I have very small chance of winning, I have a very high chance of playing kingmaker. I inject a lot of chaos into the game precisely because I have no clear path to victory, which is going to lead me to make moves that are unusual if only because they are unexplored. That's going to continually jerk around your strategies. My ships mean that there are moves that Wil cannot take and moves that Marmalade cannot take -- but which limitations are more extreme are totally variable at my whim. And unless I'm missing something, I really don't have any reason to accept any diplomacy from either of you -- if I *actively* help one destroy the other, I definitely lose the game. If I tilt the balance such that one of you decides to attack the other and you both lose strength, that's the only shot I have at winning. 

So in a game between Alice, Bob and Chuck, I think the best strategy is for Alice to quickly identify the weakest player (Chuck) and then ally with the other opponent (Bob) to take Chuck out. The easiest way to do this without creating a formal alliance is for Alice to make an attack on Chuck that makes it dead easy for Bob to deliver the killing blow. 

In short, I have no reason to help you, and I am a chaotic force on the board that might swing for or against you. I disrupt your strategy versus the opponent that really matters. So it makes most sense for you to both be setting yourselves up to take me out, and if you watch each other's moves on the assumption that that is the goal, you can probably coordinate the strike without ever formally negotiating the alliance. 

96) wil: Move Y1 G1 Pong
	wil: I don't know...being a relative novice to the entire game this one has a twist.  I surely don't see anyone being able to wipe out anyone ina single move after a split...I also don't see a reason for any alliance....I see it as winner take all...what is the bennie of helping someone only to come in second?

97) Marmalade: Sacrifice Y3 Bigpointything
Move B2 Bigpointything Fluff
Move B1 Fluff R3
Move B2 Fluff R3
Catastrophe R3 Blue
	Marmalade: If it's worth anything for your analysis - your early attacks were somewhat wasteful, so I saw an opportunity to get a step up the ladder. Then, for a few reasons, but mostly my fault, this allowed Wil to take the advantage from me.

I don't have a short-term goal of removing you, so much as there was a tactical opening to do so.
	wil: Yes currently scary for me..I'm the worst player of the three, and much more used to seeing an uphill battle by 30 moves into the game.   The whole king maker concept I still don't understand....if you were to continue waiting and watching when one of us attacks you'd be in a position to be even up due to losses and risks during the attack.

98) Aristos: Build Y3 Aristos

99) wil: Build G3 G2

100) Marmalade: Move Y2 Fluff Pong
Catastrophe Pong Y
	Marmalade: Feeling the need to do something dramatic, or else this is going to end very poorly for me :)

101) Aristos: Discover G3 Aristos Y1 Twinkle

102) wil: Trade R2 Y2 G1

103) Marmalade: Build R1 Marmalade

104) Aristos: Move G3 Twinkle G2
Catastrophe G2 Green

105) wil: Build R2 G1

106) Marmalade: Build R2 Pong
	Aristos: Man, Wil, you do know how to tempt me. I lose one G3 ship to take out six of your ships in the G2 system? I was expecting you to move a green ship somewhere. Now I'm not sure whether I should attack or not.  

107) Aristos: Build R2 Aristos
	Aristos: It cost me all of my green tech, but I just couldn't see any way that destroying *6* ships with one of mine was a bad trade. 

108) wil: Discover R2 G1 Y3 G3

109) Marmalade: Discover R1 Marmalade Y3 Moof

110) Aristos: Discover R2 Aristos Y1 Blip

111) wil: Build R3 G1

112) Marmalade: Trade Y2 G2 Marmalade

113) Aristos: Build R3 Aristos

114) wil: Trade R3 G3 G1

115) Marmalade: Trade B3 G3 Fluff

116) Aristos: Discover R1 Aristos G1 Glint

117) wil: Sacrifice G3 Wil
Build G3 Wil
Build R3 G1
Build R3 G3
	wil: Yeah...my stupidity allowed you to get back from your attacks earlier...

118) Marmalade: Build Y1 Floop

119) Aristos: Discover R2 Blip Y2 Shimmer

120) wil: Move R2 G3 Glint

121) Marmalade: Move Y1 Floop G1

122) Aristos: Move Y3 Aristos Glint

123) wil: Sacrifice Y2 G1
Move R2 Glint Moof
Discover Y3 G1 B3 B3

124) Marmalade: Build B1 Marmalade

125) Aristos: Move Y3 Glint Pong
	wil: attacked on two fronts...you guys ganging up??
	wil: ok, one was defensive...

126) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 Wil
Build Y2 B3

127) Marmalade: Sacrifice B1 Marmalade
Trade R2 B2 Pong
	Marmalade: I do wonder how likely this is to simply stalemate. It's a problem in any free-for-all multiplayer game, of course, but I wonder if the simplicity of Homeworlds doesn't tend towards that outcome, given good play.

	wil: with a three way here, I don't see a stalemate...there will be a moment where one does pounce and the other take advantage the two on one will build both, the loser making some last ditch effort to be kingmaker as they die out...

128) Aristos: Sacrifice R2 Shimmer
Attack R2N Pong
Attack B2N Pong

129) wil: Attack Y1N G1

130) Marmalade: Build Y2 Floop

131) Aristos: Build R2 Pong

132) wil: Move R3 G1 Floop

133) Marmalade: Sacrifice Y2 Floop
Move Y2 Floop Fluff
Move R1 Moof Fluff

134) Aristos: Build Y2 Pong

135) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Floop
Build B1 G1
	wil: No matter how this works out...it has been a great game...I moved just before I went out to dinner, came home, went out to the garage and had a beer with the neighborhood boys and come back and have a move to make!!  Amazing.  Earlier you were saying you hadn't got so far in a multiplayer game...looks like to me this is going to go over a hundred moves.  And I look forward to them.

136) Marmalade: Build B2 Marmalade

137) Aristos: Build B2 Pong
	wil: ah....I found such a nice star system...I thought it had inhabitants, but it seems they must have just left it for me...the coffee is still hot.

138) wil: Move B1 G1 G3

139) Marmalade: Move R1 Fluff Floop

140) Aristos: Sacrifice Y2 Pong
Move R1 Glint Floop
Discover R2 Pong Y2 Zip
Catastrophe Floop Red
	Aristos: Sooo many times in this game I have wished I played after Wil instead of before...
	wil: we play again we can reverse orders....so each of you can have a fair shake at my stupid moves!

141) wil:
Build B2 G1

142) Marmalade: Sacrifice B2 Marmalade
Trade G3 B3 Fluff
Trade Y2 R2 Fluff

143) Aristos: Build Y2 Pong
	Aristos: It's not about your mistakes. It's about the timing holes between your moves and Marmalade's. Moves that are great for me right after Wil moves are no longer advantageous after Marmalade moves. You two do a great job of defending each other's assets. 
	Aristos: (That's not an accusation of collaboration... just the way the plays have worked out.)

144) wil: Discover G1 Wil B2 R3

145) Marmalade: Build R1 Fluff

146) Aristos: Trade B2 G2 Pong

147) wil: Sacrifice Y2 B3
Move B1 G1 Aristos
Move B2 G1 Aristos
Catastrophe Aristos B

148) Aristos: Sacrifice G2 Pong
Build R1 Aristos
Build R3 Pong

149) wil: Sacrifice Y2 Wil
Move R2 Moof Aristos
Move R1 G1 Aristos
Catastrophe Aristos R

150) Aristos: Sacrifice Y2 Pong
Move Y3 Pong Aristos
Move R3 Pong Aristos

151) wil: Move Y3 B3 Fluff
	wil: Everyone ok?   Not nagging but playing had a lull here and just making sure folks are alright.
	wil: 77th move coming up....

	Aristos: Well played... but there's no way I'm coming back from that. I was ok as long as you had another opponent to deal with. ;-) 


24472)
Variants: "Hard time"
Started: 2013.9.10, Ended: 2013.10.29
Participants: SilentTitan (S), Aristos (N)
Winner: SilentTitan

1) Aristos: Homeworld G3 B2 Y3

2) SilentTitan: Homeworld B1 R2 G3
	Aristos: So, we meet once again. I have fended off a few opponents since our last contest... perhaps I have learned something? In any case, good game!
	SilentTitan: I however have been playing chase.  But I am glad to have a challenger.  Good game to you as well.

3) Aristos: Build Y1 Aristos

4) SilentTitan: Build G1 Silenttitan

5) Aristos: Trade Y1 G1 Aristos

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Aristos: Discover G1 Aristos Y1 Spark

8) SilentTitan: Build G1 Silenttitan

9) Aristos: Build G1 Spark

10) SilentTitan: Discover G1 Silenttitan Y3 Sol

11) Aristos: Move G1 Spark Sol

12) SilentTitan: Build G2 Silenttitan
	Aristos: Dang it. Sequences that work just fine against other players never work out when playing against you. And for some reason, I just can't see more than one move down the line in your games. 

13) Aristos: Build G2 Spark

14) SilentTitan: Discover G2 Silenttitan G3 Soul
	SilentTitan: No battleplan survives meeting with the enemy.

15) Aristos: Build Y1 Aristos

16) SilentTitan: Build Y2 Silenttitan

17) Aristos: Build G2 Sol

18) SilentTitan: Sacrifice G2 Soul
Build G2 Sol
Build G3 Silenttitan
Catastrophe Sol Green

19) Aristos: Build Y2 Aristos

20) SilentTitan: Trade G3 R3 Silenttitan

21) Aristos: Trade Y3 R3 Aristos

22) SilentTitan: Discover Y1 Silenttitan G3 Tic

23) Aristos: Build G1 Spark

24) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Tic
Build Y3 Silenttitan
Build Y3 Silenttitan

25) Aristos: Discover Y1 Aristos G1 Pong

26) SilentTitan: Discover Y3 Silenttitan Y3 Sol

27) Aristos: Discover G1 Spark B3 Pop

28) SilentTitan: Trade Y2 G2 Silenttitan

29) Aristos: Build Y2 Pong

30) SilentTitan: Sacrifice Y1 Tic
Discover Y3 Sol R1 Tac

31) Aristos: Build R1 Aristos

32) SilentTitan: Sacrifice G2 Silenttitan
Build Y1 Tac
Build Y3 Silenttitan

33) Aristos: Build G2 Pop

34) SilentTitan: Move R3 Silenttitan Pop

35) Aristos: Sacrifice Y2 Pong
Move G2 Pop Spark
Move G2 Spark Tic

36) SilentTitan: Sacrifice Y2 Tic
Move R3 Pop Spark
Discover Y1 Tac B2 Toe

37) Aristos: Build G2 Tic

38) SilentTitan: Attack G2 Spark North

39) Aristos: Sacrifice G2 Tic
Build G2 Spark
Build G3 Pop

40) SilentTitan: Sacrifice G2 Spark
Build R1 Spark
Build Y2 Tac

41) Aristos: Trade R1 B1 Aristos

42) SilentTitan: Attack G2 Spark North

43) Aristos: Build Y2 Pong

44) SilentTitan: Move Y3 Silenttitan Pop

	Aristos: Good game. Thanks.


24476)
Variants: "Hard time"
Started: 2013.9.11, Ended: 2013.9.25
Participants: goulo (S), MagicJohn (N)
Winner: goulo

1) MagicJohn: Homeworld B1 Y2 G3
	goulo: hi, have fun!

2) goulo: Homeworld R3 B1 G3
	MagicJohn: backatcha...

3) MagicJohn: Build G1 Magicjohn

4) goulo: Build G1 Goulo

5) MagicJohn: Trade G1 Y1 Magicjohn

6) goulo: Trade G1 Y1 Goulo

7) MagicJohn: Build G1 Magicjohn

8) goulo: Build G1 Goulo

9) MagicJohn: Trade G1 R1 Magicjohn

10) goulo: Build G1 Goulo

11) MagicJohn: Trade R1 B1 Magicjohn

12) goulo: Trade G3 B3 Goulo

13) MagicJohn: Build B2 Magicjohn

14) goulo: Build B2 Goulo

15) MagicJohn: Discover B2 Magicjohn R3 Shelob

16) goulo: Trade B2 Y2 Goulo

17) MagicJohn: Build B2 Magicjohn

18) goulo: Discover Y1 Goulo G2 Smeraldego

19) MagicJohn: Discover B1 Magicjohn Y3 Gimli

20) goulo: Discover Y1 Smeraldego B3 Safirego

	MagicJohn: My wife is still quite ill and I think I need to spend my efforts helping her to recover. I'll get back to gaming when (hopefully) that occurs. Take care and thanks for the game. 
MJ
	goulo: Oh no! I'm sorry to hear that! I wish you and your wife the best.


24480)
Started: 2013.9.19, Ended: 2014.1.19
Participants: wil (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld R2 B3 G3

2) wil: Homeworld G2 Y1 B3
	Mandrel: Have a good game

3) Mandrel: Build G1 Mandrel
	wil: I look forward to it...I've been learning by getting slaughtered by excellent players...looks like I got another whipping coming!

4) wil: Build B1 Wil
	Mandrel: You're very kind, but I'm not so sure that will be the outcome!

5) Mandrel: Trade G1 Y1 Mandrel

6) wil: Trade B1 Y1 Wil

7) Mandrel: Build Y2 Mandrel

8) wil: Build Y2 Wil

9) Mandrel: B Y2 Mandrel
	wil: I can see i am in trouble already!

10) wil: Trade Y1 R1 Wil

11) Mandrel: D Y2 Mandrel B1 Loop

12) wil: Build B1 Wil

13) Mandrel: B G1 Mandrel

14) wil: Build R1 Wil

15) Mandrel: B G1 Mandrel

16) wil: Discover Y2 Wil G3 G3

17) Mandrel: M G1 Mandrel Loop

18) wil: Move R1 Wil G3

19) Mandrel: T G1 R1 Mandrel

20) wil: Build R2 Wil

21) Mandrel: M R1 Mandrel Loop

22) wil: Move B1 Wil G3

23) Mandrel: Build Y1 Mandrel

24) wil: Build Y3 G3

25) Mandrel: B Y3 Loop

26) wil: Discover Y2 G3 G1 G1

27) Mandrel: D Y1 Mandrel G1 Solution

28) wil: Build Y3 G3

29) Mandrel: B G2 Mandrel

30) wil: Trade Y3 R3 G3

31) Mandrel: Build Y3 Solution

32) wil: Move R3 G3 G1

33) Mandrel: S G3 Mandrel
Build G2 Loop
Build G3 Mandrel
B G3 Mandrel

34) wil: Build B1 G3

35) Mandrel: T G3 B3 Mandrel

36) wil: Trade Y3 G3 G3

37) Mandrel: B Y3 Loop

38) wil: Build R2 G3

39) Mandrel: Build R3 Loop

40) wil: Build R3 G1

41) Mandrel: Sacrifice Y2 Loop
Move G1 Loop G3
Move G2 Loop G3
Catastrophe G3 G

42) wil: Discover R3 G1 B2 B2

43) Mandrel: D Y3 Loop G3 Box

44) wil: Trade R3 G3 B2

45) Mandrel: Build Y2 Box

46) wil: Build G1 B2

47) Mandrel: Discover Y1 Solution R3 Twist

48) wil: Trade R2 G2 Wil

49) Mandrel: S Y3 Loop
Move Y2 Box Wil
Move Y3 Box Wil
Move Y1 Twist Wil

50) wil: Sacrifice R3 G1
Attack Y3 Wil
Attack Y2 Wil
Attack Y1 Wil

51) Mandrel: Build Y3 Solution
Catastrophe Wil Y

52) wil: Trade G2 R2 Wil
	wil: the end is nigh...

53) Mandrel: M G2 Mandrel Loop

54) wil: Trade G1 Y1 B2

55) Mandrel: Build G1 Loop

56) wil: Trade R1 Y1 Wil

57) Mandrel: S Y3 Solution
M G1 Loop Wil
Move G2 Loop Wil
Move R3 Loop Wil

	wil: very nice either or...


24519)
Started: 2013.9.23, Ended: 2013.9.27
Participants: JudithTruman (S), AbacusWizard (N)
Winner: AbacusWizard

1) AbacusWizard: Homeworld B3 R2 G3

2) JudithTruman: Homeworld Y3 B1 G3
	JudithTruman: Booyah!

3) AbacusWizard: Build G1 Abacuswizard

4) JudithTruman: Build G1 Judithtruman

5) AbacusWizard: Trade G1 Y1 Abacuswizard

6) JudithTruman: Trade G1 R1 Judithtruman

7) AbacusWizard: Build Y1 Abacuswizard

8) JudithTruman: Build R1 Judithtruman

9) AbacusWizard: Discover Y1 Abacuswizard G1 Konstruktstarr

10) JudithTruman: Discover R1 Judithtruman G2 Fleern

11) AbacusWizard: Build Y1 Konstruktstarr

12) JudithTruman: Build R1 Fleern

13) AbacusWizard: Build Y2 Abacuswizard

14) JudithTruman: Build R2 Judithtruman

15) AbacusWizard: Trade Y2 R2 Abacuswizard

16) JudithTruman: Build R3 Judithtruman

17) AbacusWizard: Move R2 Abacuswizard Konstruktstarr

18) JudithTruman: Trade R3 Y3 Judithtruman

19) AbacusWizard: Build R3 Konstruktstarr

20) JudithTruman: Move Y3 Judithtruman Fleern

21) AbacusWizard: Move R2 Konstruktstarr Fleern

22) JudithTruman: Discover R1 Fleern B1 Apple

23) AbacusWizard: Attack R1 Fleern

24) JudithTruman: Sacrifice R1 Apple
Attack R2 Fleern

25) AbacusWizard: Build R1 Fleern

26) JudithTruman: Discover R2 Fleern B1 Apple

27) AbacusWizard: Build Y2 Abacuswizard

28) JudithTruman: Sacrifice R1 Judithtruman
Attack R1 Fleern

29) AbacusWizard: Attack R1 Fleern

30) JudithTruman: Sacrifice R2 Apple
Attack R1 Fleern
Attack R1 Fleern

31) AbacusWizard: Build Y2 Konstruktstarr

32) JudithTruman: Discover Y3 Fleern B1 Apple

33) AbacusWizard: Sacrifice Y2 Konstruktstarr
Move R3 Konstruktstarr Fleern
Move R3 Fleern Apple

34) JudithTruman: Sacrifice R1 Fleern
Attack R3 Apple

35) AbacusWizard: Build Y2 Konstruktstarr

36) JudithTruman: Build G1 Judithtruman

37) AbacusWizard: Move Y2 Konstruktstarr Fleern

38) JudithTruman: Build R1 Fleern

39) AbacusWizard: Build Y2 Fleern

40) JudithTruman: Sacrifice G1 Judithtruman
Build Y3 Apple

41) AbacusWizard: Sacrifice Y2 Abacuswizard
Move Y2 Fleern Apple
Move Y2 Fleern Apple
Catastrophe Apple Yellow

42) JudithTruman: Trade R2 B2 Judithtruman

43) AbacusWizard: Discover Y1 Konstruktstarr Y2 Dagobah

44) JudithTruman: Build B1 Judithtruman

45) AbacusWizard: Discover Y1 Konstruktstarr G2 Hoth

46) JudithTruman: Trade B2 Y2 Judithtruman

47) AbacusWizard: Build Y2 Hoth

48) JudithTruman: Move Y2 Judithtruman Fleern

49) AbacusWizard: Build Y3 Abacuswizard

50) JudithTruman: Build Y3 Fleern

51) AbacusWizard: Move Y1 Dagobah Judithtruman

52) JudithTruman: Move R1 Fleern Judithtruman

53) AbacusWizard: Build Y2 Hoth

54) JudithTruman: Sacrifice Y3 Fleern
Move R3 Apple Abacuswizard
Discover Y2 Fleern G1 Pear
Move Y2 Pear Hoth
Catastrophe Hoth Yellow

55) AbacusWizard: Attack R3 Abacuswizard

56) JudithTruman: Attack Y1 Judithtruman

57) AbacusWizard: Build G1 Abacuswizard

58) JudithTruman: Move Y1 Judithtruman Fleern

59) AbacusWizard: Discover G3 Abacuswizard B1 Appleiie

60) JudithTruman: Build R1 Fleern

61) AbacusWizard: Move R3 Abacuswizard Appleiie

62) JudithTruman: Build G1 Judithtruman

63) AbacusWizard: Build R2 Appleiie

64) JudithTruman: Move G1 Judithtruman Fleern

65) AbacusWizard: Trade R2 Y2 Appleiie

66) JudithTruman: Build B2 Judithtruman

67) AbacusWizard: Build R2 Appleiie

68) JudithTruman: Trade B2 Y2 Judithtruman

69) AbacusWizard: Discover R2 Appleiie B2 Ifruity

70) JudithTruman: Move B1 Judithtruman Fleern

71) AbacusWizard: Move G3 Appleiie Ifruity

72) JudithTruman: Discover R1 Fleern Y1 Froboz

73) AbacusWizard: Move R3 Appleiie Ifruity

74) JudithTruman: Sacrifice G3 Judithtruman
Build R2 Froboz
Build Y2 Fleern
Build Y3 Fleern

75) AbacusWizard: Sacrifice Y2 Appleiie
Move R3 Ifruity Judithtruman
Move G3 Ifruity Judithtruman

76) JudithTruman: Sacrifice G1 Fleern
Build R3 Judithtruman

77) AbacusWizard: Sacrifice R3 Judithtruman
Attack Y2 Judithtruman
Attack R1 Judithtruman
Attack R3 Judithtruman



24524)
Variants: "Hard time"
Started: 2013.9.26, Ended: 2013.10.18
Participants: wil (S), mneme (N)
Winner: wil

1) mneme: Homeworld R1 B2 G3
	mneme: It's been a while since I last played this.

2) wil: Homeworld B2 R1 G3
	wil: I look forward to playing...I've been at it for a little over 6 months and getting my butt kicked by various folks and hopefully learning along the way.

3) mneme: Build G1 Mneme
	mneme: We'll see.  I do ok.

4) wil: Build G1 Wil
	mneme: Although I've actually never done small universe.  Playing dangerously?
	wil: no...instant stupidity....what was I thinkin??

5) mneme: Trade G1 R1 Mneme
	wil: yikes what have ai wrought??
	wil: now I am just climbin this ladder so I can get up high enough where people are playing (it has taken since may to climb over all the dead wood that haven't even signed in for months or years..  so if you want to resign, so I can step up....I won't complain!!!

6) wil: Trade G1 Y1 Wil
	mneme: I think I'll stick around for a bit longer.  But you can resign if you want.  :-P

7) mneme: Build R2 Mneme

8) wil: Build Y1 Wil

9) mneme: Trade R2 Y2 Mneme

10) wil: Discover Y1 Wil G3 G3

11) mneme: Build R2 Mneme

12) wil: B Y1 Wil

13) mneme: Move R2 Mneme G3

14) wil: Discover Y1 G3 G2 G2

15) mneme: Build Y2 Mneme

16) wil: Build Y2 Wil

17) mneme: Move Y2 Mneme G3

18) wil: Build Y3 G2

19) mneme: Build Y3 Mneme

20) wil: Trade Y2 R2 Wil

21) mneme: Discover R1 Mneme B3 Sapphire

22) wil: Discover R2 Wil Y3 Y3

23) mneme: Sacrifice G3 Mneme
Build R2 Sapphire
Build R3 Sapphire
Build R3 G3

24) wil: Build Y2 Wil

25) mneme: Move Y2 G3 Wil
Catastrophe Wil Y

26) wil: Build G1 Wil

27) mneme: Trade R2 G2 Sapphire

28) wil: Trade G1 Y1 Wil

29) mneme: Trade Y2 R2 Mneme

30) wil: Build G1 Wil

31) mneme: Build R3 Sapphire

32) wil: Move Y1 G2 G3
	wil: Yikes...what a mistake that short universe was...and you are walking all over me...

33) mneme: Attack Y1 G3
	mneme: Thanks.  And yeah--small universe really magnifies small mistakes, I think.

34) wil: Build Y1 Wil
	wil: oh....that was foolish...i was moving it to a new star and didn't realize I walked into my old star...putting blunder on top or errors.

	wil: argghh...I hate it when these end this way...and especially against a good player.  I hope to meet you again sometime.
	mneme: Likewise.  The problem is, I'm only in one game at a time, tops, so if I miss the ready signal I'm likely to hard time.  :(
	wil: 
	wil: That can be solved by playing more often!  I hear you are a wonderful player.  But yeah, as I am in the learning curve I try to be in half a dozen games at a time...so I check in once a day (unless I am outta range for a few days)
	mneme: Wow -- from whom?  It, um, is true that when I was in form, I think TwoShort was the only player here who could regularly beat me (and I did take a game from him once :).  It's just a matter of time management, alas.
	wil: "The only people I never beat were mneme and two short" I believe was the quote.   Yes, I am afraid I don't give the game justice yet.  I move rather quickly make a lot of mistakes, but seeing the result of my mistakes and getting taken to the cleaners on a regular basis is assistingthe learning curve...
	wil: I see you are playing again...I've got a standing game up...challenge me if you'd like to whip me appropriately.
	mneme: That works.  I tend to play very quickly myself.  I've accepted a challenge, so if you're still playing it's possible I'll actually keep up this time.
	wil: Yup, continuing to try to learn this game!  Challenge me anytime, I prefer to keep half a dozen games going on at once..


24456)
Variants: "Hard time"
Started: 2013.10.2, Ended: 2013.11.23
Participants: wil (S), SilentTitan (N)
Winner: wil

1) SilentTitan: Homeworld R1 B2 G3
	wil: I miss clicked and started another one with ya...and now we've got two games...my weak attempt to confuse you...
	SilentTitan: LOL.... 

2) wil: Homeworld R3 B2 G3

3) SilentTitan: Build G1 Silenttitan

4) wil: Build G1 Wil

5) SilentTitan: Trade G1 Y1 Silenttitan

6) wil: Build G1 Wil

7) SilentTitan: Build Y1 Silenttitan

8) wil: Trade G1 Y1 Wil

9) SilentTitan: Trade Y1 R1 Silenttitan

10) wil: Trade G1 R1 Wil

11) SilentTitan: Build G1 Silenttitan

12) wil: Build R2 Wil

13) SilentTitan: Build G1 Silenttitan

14) wil: Trade R2 B2 Wil

15) SilentTitan: Build R2 Silenttitan

16) wil: Build R2 Wil

17) SilentTitan: Discover G1 Silenttitan R3 Sol

18) wil: Trade R2 G2 Wil
	SilentTitan: Just for information sake... I'll let you know that Mneme and TooShort and the only two people I've not managed to beat on the ladder. I've played each about 6 or 7 times. 
	SilentTitan: ...TooShort are...
	wil: I screwed up at the beginning of the game with mneme...I am almost sure to lose.  unless that is he times out...  I have heard two short is an excellent player.   I like losing to the best, makes me feel better...


19) SilentTitan: Trade R2 Y2 Silenttitan

20) wil: Build R2 Wil

21) SilentTitan: Build R2 Silenttitan

22) wil: Discover R2 Wil G1 G1

23) SilentTitan: Move Y2 Silenttitan Sol

24) wil: Trade G2 Y2 Wil

25) SilentTitan: Trade R1 B1 Silenttitan

26) wil: Build G2 Wil

27) SilentTitan: Build B1 Silenttitan

28) wil: Discover G2 Wil Y1 Y1

29) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Silenttitan
Build Y3 Silenttitan

30) wil: Move Y1 Wil G1

31) SilentTitan: Discover Y1 Silenttitan Y3 Sole
	wil: very nice

32) wil: Build G2 Wil

33) SilentTitan: Move B1 Silenttitan Sol

34) wil: Move B2 Wil Y1

35) SilentTitan: Build G2 Sol

36) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Y1
Build R1 G1

37) SilentTitan: Sacrifice Y2 Sol
Move G2 Sol Y1
Move G1 Sol Y1
Catastrophe Y1 Green

38) wil: Build Y2 G1

39) SilentTitan: Sacrifice B1 Silenttitan
Trade Y1 G1 Sole

40) wil: Move G2 Wil Y1

41) SilentTitan: Build G2 Silenttitan

42) wil: Build G2 Wil

43) SilentTitan: Trade G1 B1 Silenttitan

44) wil: Discover R2 G1 G3 G3

45) SilentTitan: Move Y3 Silenttitan G3

46) wil: Discover R1 Wil Y1 Why1

47) SilentTitan: Sacrifice R2 Silenttitan
Attack R2 G3 South
Pass

48) wil: Sacrifice G3 Wil
Build G1 Y1
Build G3 Y1
Build G3 Wil

49) SilentTitan: Sacrifice Y2 Sol
Move G2 Silenttitan Sole
Move G1 Sole Y1
Catastrophe Y1 Green

50) wil: Move B2 Y1 Sol
	SilentTitan: Y1 .... Why1. Too funny
	wil: why, ynot?

51) SilentTitan: Move B1 Silenttitan Sol

52) wil: Trade B2 G2 Sol

53) SilentTitan: Trade B1 Y1 Sol

54) wil: Attack Y1 Sol

55) SilentTitan: Build G1 Sole
	wil: I somehow got the best of mmeme...i have to replay that game to see what I did.  I am now losing terribly to goulo, I really blew it in that game.  
	SilentTitan: Wow good for you.   He actually has a medallion from origins for binary Homeworlds. 
	SilentTitan: Wow good for you.   He actually has a medallion from origins for binary Homeworlds. 

56) wil: Sacrifice G3 Wil
Build G1 Sol
Build G3 Wil
Build Y2 Sol
	wil: I think it was a fluke....but what does that mean "medallion from origins"?

57) SilentTitan: Move R2 G3 Why1
	SilentTitan: oh... a medal from the national boardgaiming convention for winning at the binary homeworlds tournament held there.
	wil: I just went back thru...I am playing a number of games and got confused...I did NOT beat him....he timed out on me and I was thinking of another game that ended about that time....but I did not beat him by play...
	wil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?

58) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Sol
Build R2 G1

59) SilentTitan: Attack R1 Why1 South

60) wil: Attack B1 Sol

61) SilentTitan: Sacrifice Y3 G3
Move G1 Sole Why1
Move G1 Why1 Sol
Move G2 Sole Why1
Catastrophe Sol Green

62) wil: Sacrifice G2 Wil
Build Y3 Wil
Build Y3 Sol

63) SilentTitan: Trade Y3 G3 Silenttitan

64) wil: T Y3 G3 Sol

65) SilentTitan: Build G1 Silenttitan

66) wil: Sacrifice G3 Wil
Build Y3 Sol
Build Y3 G1
Build G1 Sol

67) SilentTitan: Trade G1 B1 Silenttitan

68) wil: Sacrifice Y2 Sol
Discover Y3 G1 G3 G3
Move R1 G1 G3

69) SilentTitan: Build G1 Why1

70) wil: Sacrifice G3 Sol
Build R2 G1
Build R3 G3
Build Y2 G3

71) SilentTitan: Build G2 Silenttitan

72) wil: Trade Y3 G3 Sol

73) SilentTitan: Move G1 Why1 Sol

74) wil: Sacrifice Y2 G1
Move G3 Sol Silenttitan
Move G1 Sol Silenttitan
Catastrophe Silenttitan G

75) SilentTitan: Sacrifice R2 Why1
Attack Y1 Sol South
Attack B1 Sol South

76) wil: Move R3 G3 Silenttitan

77) SilentTitan: Move G1 Sol Silenttitan

78) wil: S R2 G1
A G1 Silenttitan
A B1 Silenttitan
	wil: How long had that been there?

	SilentTitan: Not sure
	SilentTitan: Congratulations.   Yea!
	wil: Thank you forthe game....I am so positive you'll kick my but when I try this on the ladder


	SilentTitan: Well we will see.  you played very well.


24528)
Started: 2013.10.2, Ended: 2013.10.24
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) ts52: Homeworld Y3 B2 G3

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52

5) wil: Trade G1 B1 Wil

6) ts52: Trade G1 R1 Ts52

7) wil: Build G1 Wil

8) ts52: Discover R1 Ts52 G1 Kermit

9) wil: Trade G1 R1 Wil

10) ts52: Build G1 Ts52

11) wil: Build B1 Wil

12) ts52: Trade G1 Y1 Ts52

13) wil: Build G1 Wil

14) ts52: Build Y1 Ts52

15) wil: Trade G1 Y1 Wil

16) ts52: Move Y1 Ts52 Kermit

17) wil: Discover B1 Wil G3 G3

18) ts52: Build Y2 Kermit

19) wil: Build Y2 Wil

20) ts52: Build R1 Kermit

21) wil: Build B2 G3

22) ts52: Build G1 Ts52

23) wil: Sacrifice Y1 Wil
Discover B2 G3 G1 G1

24) ts52: Build R2 Kermit

25) wil: Sacrifice G3 Wil
Build B2 G1
Build B3 Wil
Build B3 G3

26) ts52: Discover R1 Kermit Y3 Zoe

27) wil: Trade B3 G3 Wil

28) ts52: Move R1 Kermit Zoe

29) wil: Sacrifice G3 Wil
Build B3 Wil
Build B3 G1
Build Y1 Wil

30) ts52: Sacrifice Y2 Kermit
Move R1 Zoe Wil
Move R1 Zoe Wil
Catastrophe Wil Red

31) wil: Sacrifice B3 G3
Trade B3 G3 Wil
Trade B3 Y3 G1
Trade Y2 G2 Wil

32) ts52: Move R2 Kermit G3

33) wil: Build B3 G3

34) ts52: Attack B1 G3

35) wil: Trade B3 R3 G3

36) ts52: Sacrifice Y1 Ts52
Move B1 G3 Kermit

37) wil: Build B3 Wil

38) ts52: Build B3 Kermit

39) wil: Trade B3 R3 Wil

40) ts52: Trade G1 R1 Ts52

41) wil: Build B3 G1

42) ts52: Discover B1 Kermit G2 Robin

43) wil: Sacrifice Y3 G1
Move B3 G1 Ts52
Move R3 Wil Ts52
Move G3 Wil Ts52

44) ts52: Sacrifice R2 G3
Attack R3 Ts52
Attack G3 Ts52
	wil: My what a fine and healthy star system you have here, I don't suppose you noticed but someone has abolished a large portion of mine, we were awfully crowded on this small blue dwarf.  I see you have plenty of room here on these two spacious systems
	ts52: Hmmmmm, how very clever... well played sir.

45) wil: Sacrifice R3 G3
Attack G3 Ts52
Attack G3 Ts52
Attack R3 Ts52
	wil: I was searching for my error...I was headed to a bluebird but amassing giant ships...when you avoided the bluebird...I said hmmmm...I couldn't  see the downside (and frankly am still concerned there is something up your sleeve.

46) ts52: Sacrifice Y1 Kermit
Move B1 Robin Wil

47) wil: Sacrifice R3 Ts52
Attack R1 Ts52
Attack B1 Wil
Pass
	wil: we welcome the small trader and attack ship to our armada...  I got lucky on that one, me thinks I caught you sleepin.
	ts52: I didn't see it coming, that's for sure. Good game.



24396)
Variants: "Hard time"
Started: 2013.10.2, Ended: 2013.10.19
Participants: wil (S), Broccoli_Commander (N)
Winner: wil

1) Broccoli_Commander: Homeworld R1 B2 G3

2) wil: Homeworld R3 B2 G3
	Broccoli_Commander: Hey wil! Long time no play, how do you fare?

3) Broccoli_Commander: Build G1 Broccoli_commander

4) wil: Build G1 Wil

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander
	wil: Fare thee well.  Still losing and hopefully learning.

6) wil: Build G1 Wil

7) Broccoli_Commander: Build G1 Broccoli_commander

8) wil: Trade G1 Y1 Wil
	Broccoli_Commander: Hey just realized you sent me a pm :D

9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry
	wil: Yeah....I hopefully can get through my game....slow play to the point I think hardtime is gonna kick in....aaarggghhh....but we are getting there..

10) wil: Build Y1 Wil
	wil: Looks to me like you are gonna get a factory over there and be in the catbird seat with yellows quite soon.

11) Broccoli_Commander: Build Y2 Broccoli_commander

12) wil: Build Y2 Wil

13) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry

14) wil: Trade Y1 R1 Wil

	wil: ah phooey brother...   that is a lousy way to win...
	wil: hope all is well.


24585)
Variants: "Hard time"
Started: 2013.10.18, Ended: 2013.11.2
Participants: Remneb (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) Remneb: Homeworld B2 R1 G3

3) wil: Build G1 Wil
	wil: yikes, small universe....

4) Remneb: Build G1 Remneb
	Remneb: The big pips for battle !

5) wil: Trade G1 B1 Wil

6) Remneb: Trade G1 Y1 Remneb

7) wil: Build B1 Wil

8) Remneb: Build G1 Remneb

9) wil: Build G1 Wil

10) Remneb: Discover G1 Remneb Y3 Altar

11) wil: Trade G1 Y1 Wil

12) Remneb: Build G1 Remneb

13) wil: Discover B1 Wil G3 G3

14) Remneb: Trade G1 R1 Remneb

15) wil: Build B2 G3

16) Remneb: Move R1 Remneb G3

17) wil: Trade B2 R2 G3

18) Remneb: Build Y1 Remneb

19) wil: Build Y2 Wil

20) Remneb: Move Y1 Remneb Altar

21) wil: Move Y2 Wil Altar

22) Remneb: Sacrifice G3 Remneb
Build Y2 Remneb
Build Y2 Altar
Build Y3 Remneb
Catastrophe Altar Y

23) wil: Sacrifice G3 Wil
Build B2 G3
Build B2 G3
Build B3 Wil

24) Remneb: Trade Y1 G1 Remneb

25) wil: Sacrifice B2 G3
Trade B2 Y2 G3
Trade B3 G3 Wil

26) Remneb: Discover Y2 Remneb G3 Noah

27) wil: Sacrifice G3 Wil
Build B2 G3
Build B2 G3
Build B3 Wil

28) Remneb: Build G1 Remneb

29) wil: Sacrifice B2 G3
Trade B3 G3 Wil
Trade B2 Y2 G3

30) Remneb: Build Y1 Remneb

31) wil: Build B2 Wil

32) Remneb: Attack B1 G3

33) wil:
Attack R1 G3

34) Remneb: Sacrifice Y1 Remneb
Move B1 G3 Wil
Catastrophe Wil B

35) wil: Build G1 Wil

36) Remneb: Build Y1 Remneb

37) wil: Discover Y2 G3 B2 B2
	wil: I was blind to that....good move.

38) Remneb: Discover G1 Remneb Y3 Rob
	Remneb: It was my first idea when i took that ship...but i was sure that you would take it back into your fleet. The second idea was to force you to use the red 2 ship to attack both blue and red one.

39) wil: Build Y1 Wil

40) Remneb: Build G2 Remneb
	wil: Yes, I looked at the latter but not the former...didn't see it at all...thought you were trying to grow my blues there and swamp itself...I missed it completely...I saw what I thought was a great comeback which blinded me to reality...

41) wil: Build Y3 G3

42) Remneb: Discover Y1 Remneb R3 Oban

43) wil: Trade Y2 B2 B2

44) Remneb: Build G2 Rob

45) wil: Sacrifice B2 B2
Trade G1 B1 Wil
Trade Y2 B2 G3

46) Remneb: Trade G1 R1 Remneb

47) wil: Build Y2 G3

48) Remneb: Move R1 Remneb Rob

49) wil: Discover R1 G3 G2 G2

50) Remneb: Build R2 Rob

51) wil: Build R3 G2

52) Remneb: Discover R2 Rob Y2 Aldo

53) wil: Build R3 G3

54) Remneb: Build G1 Remneb

55) wil: Sacrifice Y1 Wil
Move R3 G2 Rob

56) Remneb: Sacrifice Y2 Noah
Move G2 Rob Aldo
Move G1 Rob Aldo

57) wil: Move R3 Rob Aldo
	Remneb: That's a croud of ships indeed !


58) Remneb: Sacrifice G2 Aldo
Build Y1 Oban
Build Y2 Remneb

59) wil: Attack R2 Aldo

60) Remneb: Move G1 Aldo G3

61) wil: Sacrifice Y2 G3
Move Y3 G3 Remneb
Move R3 G3 Remneb
	wil: It is a crowd of ships... I gotta replay this to see how the heck I accumulated them!  Meanwhile, I've got a rogue attack ship violating the prime directive, I disavow that captains current actions.


62) Remneb: Attack R3 Remneb

63) wil: Sacrifice R3 Aldo
Attack R3 Remneb
Attack Y3 Remneb
Attack G2 Remneb

64) Remneb: Move Y1 Oban Remneb
Catastrophe Remneb Y

65) wil: Sacrifice R2 Aldo
Attack G1 G3
Attack G1 Remneb

	Remneb: Thanks for the game.
	wil: Thank you!  Again, I have to replay this to see what I did right.  I know I felt in trouble for a time, and I know I got away with a little factory of sorts, but I have to figure out what happenned and how to duplicate it.


24588)
Variants: "Hard time"
Started: 2013.10.19, Ended: 2013.11.1
Participants: mneme (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3

2) mneme: Homeworld B3 R1 G3
	agentofchaos: Have fun

3) agentofchaos: Build G1 Agentofchaos
	mneme: you too!  Hopefully I won't lose track -again-.  :(

4) mneme: Build G1 Mneme
	agentofchaos: I've lost track a few times myself :-)

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) mneme: Trade G1 Y1 Mneme

7) agentofchaos: Build G1 Agentofchaos



24548)
Variants: "Hard time"
Started: 2013.10.21, Ended: 2013.10.24
Participants: wil (S), Broccoli_Commander (N)
Winner: wil

	wil: ah phooey...hit me up when you are ready to play...and did you ever tell me how you picked the name broccoli commander?


24617)
Started: 2013.10.25, Ended: 2013.11.27
Participants: mnkr (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3
	mnkr: another oportunity? hehe thanks
	ts52: absolutely!

2) mnkr: Homeworld Y1 B2 G3

3) ts52: Build G1 Ts52

4) mnkr: Build G1 Mnkr

5) ts52: Discover G1 Ts52 B2 Gonzo

6) mnkr: Discover G1 Mnkr B3 Nnkr

7) ts52: Build G1 Ts52

8) mnkr: Build G2 Nnkr

9) ts52: Build G2 Gonzo

10) mnkr: Build G2 Mnkr

11) ts52: Build G3 Gonzo

12) mnkr: Trade G2 Y2 Nnkr

13) ts52: Trade G3 Y3 Gonzo

14) mnkr: Build Y1 Nnkr

15) ts52: Trade G2 R2 Gonzo

16) mnkr: Trade G3 R3 Mnkr

17) ts52: Build G2 Gonzo

18) mnkr: Build G2 Nnkr

19) ts52: Discover G2 Gonzo B3 Grover

20) mnkr: Discover G2 Nnkr B2 Onkr

21) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build G3 Gonzo

22) mnkr:
Move G1 Nnkr Onkr
	mnkr: good action! I wanted to do this before!
	mnkr: move G1 nnkr onkr

23) ts52: Trade G1 R1 Ts52

24) mnkr: Trade G2 R2 Onkr

25) ts52: Trade G3 Y3 Grover

26) mnkr: Build R1 Onkr

27) ts52: Move Y3 Grover Onkr

28) mnkr: Trade Y1 G1 Nnkr

29) ts52: Sacrifice R2 Gonzo
Attack R2 Onkr
Attack R1 Onkr

30) mnkr: Sacrifice G1 Onkr
Build G1 Nnkr
	mnkr: great! I never think abouth the red sacrifices!

31) ts52: Sacrifice G3 Gonzo
Build G2 Ts52
Build G3 Gonzo
Build G3 Grover

32) mnkr: Build Y1 Nnkr

33) ts52: Move R2 Onkr Nnkr

34) mnkr: Sacrifice Y2 Nnkr
Move G1 Nnkr Gonzo
Move G1 Nnkr Gonzo
Catastrophe Gonzo Green

35) ts52: Attack Y1 Nnkr

36) mnkr: Build R1 Mnkr

37) ts52: Sacrifice Y3 Gonzo
Move R2 Nnkr Mnkr
Move R1 Onkr Grover
Move R1 Grover Mnkr
Catastrophe Mnkr Red

	mnkr: Very good!
I have to learn more.
I take some holidays... when I return I will recall to you, hehe
	ts52: Thanks for the game. I look forward to playing you again.


24310)
Variants: "Hard time"
Started: 2013.10.26, Ended: 2013.11.4
Participants: wil (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld R2 B1 G3

2) wil: Homeworld B3 Y2 G3
	TeeTeeTee: Greetings!
	wil: Welcome!  Thanx for the game!

3) TeeTeeTee: Build G1 Teeteetee

4) wil: Build G1 Wil

5) TeeTeeTee: Trade G1 Y1 Teeteetee

6) wil: Discover G1 Wil Y1 Y1

7) TeeTeeTee: Build G1 Teeteetee

8) wil: Build G1 Wil

9) TeeTeeTee: Discover G1 Teeteetee B3 Slough

10) wil: Build G2 Wil

11) TeeTeeTee: Build G2 Teeteetee

12) wil: Sacrifice G3 Wil
Build G2 Y1
Build G3 Y1
Build G3 Wil

13) TeeTeeTee: Sacrifice G3 Teeteetee
Build G3 Teeteetee
Build Y1 Teeteetee
Build Y2 Teeteetee

14) wil: Trade G2 B2 Wil

15) TeeTeeTee: Sacrifice Y2 Teeteetee
Move G2 Teeteetee Slough
Move G1 Slough Y1
Catastrophe Y1 Green

16) wil: Trade G1 Y1 Wil

17) TeeTeeTee: Move Y1 Teeteetee Slough

18) wil: Build Y2 Wil

19) TeeTeeTee: Sacrifice G2 Slough
Build Y2 Teeteetee
Build Y3 Slough

20) wil: Discover Y1 Wil G1 G1

21) TeeTeeTee: Trade Y3 G3 Slough

22) wil: Build Y3 G1

23) TeeTeeTee: Build Y3 Slough

24) wil: Discover Y2 Wil G1 Gee1

25) TeeTeeTee: Trade Y1 B1 Slough

26) wil: Build G1 Wil

27) TeeTeeTee: Build G2 Slough

28) wil: Move G1 Wil G1

29) TeeTeeTee: Build G2 Teeteetee

30) wil: Build G2 Wil

31) TeeTeeTee: Trade G3 R3 Slough

32) wil: Trade B2 R2 Wil

33) TeeTeeTee: Sacrifice G3 Teeteetee
Build G3 Teeteetee
Build G3 Slough
Build R1 Slough

34) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 G1
Build Y3 Gee1
	wil: I see you joined the ladder, welcome to the fray.  It takes a while to climb thru the dead wood.

35) TeeTeeTee: Sacrifice Y2 Teeteetee
Move Y1 Teeteetee Slough
Move Y1 Slough G1
Catastrophe G1 Yellow
	TeeTeeTee: Ahhh, I've noticed. Tricky to rise up when all but one of the people I can challenge haven't been online in months.

36) wil: Discover Y2 Gee1 B3 B3
	wil: It took me six months to get up the ladder, and I got a few games in along the way...but now I am where I can get my arse kicked regularly...

37) TeeTeeTee: Build Y1 Slough

38) wil: Sacrifice G3 Wil
Build Y1 B3
Build G3 Wil
Build R1 Wil

39) TeeTeeTee: Move R3 Slough G1

40) wil: Sacrifice Y1 B3
Move G1 G1 B3
	wil: am I playin someone I know?

41) TeeTeeTee: Move Y3 Slough G1
	TeeTeeTee: Heh, I don't think so; I've not played a game on this site before, and I've never played Homeworlds before either. It's certainly an interesting game, though!
	wil: You've never played?  wow!  you are doing well.  You don't have a physical set?

42) wil: Move G2 Wil Gee1
	wil: you've really figured out the system...you must be quite the gamer.   it is a great game.

43) TeeTeeTee: Move B1 Slough Teeteetee
	TeeTeeTee: Heh, perhaps I put too much thought into this. I've got my hands on an Icehouse set recently, but haven't had a chance to try it out yet. 
Right, here we go!

44) wil: Trade R1 B1 Wil

45) TeeTeeTee: Sacrifice G3 Slough
Build G3 Slough
Build Y1 G1
Build R1 G1

46) wil: Sacrifice Y3 Gee1
Move G2 Gee1 B3
Move G2 B3 Teeteetee
Move G1 B3 Teeteetee
Catastrophe Teeteetee G

47) TeeTeeTee: Move Y3 G1 B3

48) wil: Move Y2 B3 Teeteetee

49) TeeTeeTee: Move Y3 B3 Teeteetee

50) wil: Discover Y2 Teeteetee G3 G3

51) TeeTeeTee: Sacrifice G3 Slough
Build Y1 G1
Build Y2 Teeteetee
Build Y3 Slough

52) wil: Build Y3 G3

53) TeeTeeTee: Sacrifice Y2 Teeteetee
Move Y1 G1 G3
Move Y1 G1 G3
Catastrophe G3 Yellow

54) wil: Build G1 Wil

55) TeeTeeTee: Build G1 Slough

56) wil: Build R1 Wil

57) TeeTeeTee: Sacrifice G2 Slough
Build Y1 Slough
Build Y1 Teeteetee

58) wil: Move R1 Wil G1

59) TeeTeeTee: Attack R1 G1

60) wil: Move R2 Wil G1
Catastrophe G1 R

61) TeeTeeTee: Sacrifice Y3 Teeteetee
Discover Y3 Slough G1 Staines
Move Y1 Slough Staines
Move Y3 Staines Wil
	wil: I am totally outplayed...great game, you've abused the heck outta me.

62) wil: Move G3 Wil Staines

63) TeeTeeTee: Sacrifice R1 Slough
Attack B1 Wil

64) wil: Trade G1 R1 Wil

65) TeeTeeTee: Sacrifice B1 Wil
Trade Y3 R3 Wil

66) wil: Sacrifice G3 Staines
Build R1 Wil
Build R1 Wil
Build R2 Wil
Catastrophe Wil R

	TeeTeeTee: Heh, thanks for the praise. :p
I didn't want to acknowledge victory after 29. ... m r1 wil g1 - that was a bold move. It left me an opening, but I had to give up most of my fleet to use it, and if I was careless, then the game's outcome could have easily been different.
	wil: If this is your first game....you are gonna be a terror!   on the ladder, look for someone up 4/5 levels that has logged on in the last 30/60 days...play them.  I look forward to playing again.


24624)
Started: 2013.10.27, Ended: 2013.12.20
Participants: wil (S), ts52 (N)
Winner: wil

1) ts52: Homeworld Y1 B2 G3

2) wil: Homeworld R3 B2 G3
	ts52: Have a good game! Hopefully you wont catch me napping this time.

3) ts52: Build G1 Ts52
	wil: ah...come on...the only way I win at pool is when my opponent sinks the 8 ball.

4) wil: Build G1 Wil

5) ts52: Discover G1 Ts52 B3 Grover

6) wil: Trade G1 Y1 Wil

7) ts52: Build G1 Ts52

8) wil: Build Y1 Wil

9) ts52: Build G1 Ts52

10) wil: Build Y2 Wil

11) ts52: Build G2 Grover

12) wil: Build G2 Wil

13) ts52: Trade G2 Y2 Grover

14) wil: Sacrifice Y2 Wil
Discover G2 Wil B1 B1
Move Y1 Wil B1

15) ts52: Discover G1 Ts52 B3 Gonzo

16) wil: Build Y2 B1

17) ts52: Build G2 Gonzo

18) wil: Discover Y2 B1 G3 G3

19) ts52: Trade G2 R2 Gonzo

20) wil: Build G2 Wil

21) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build R1 Gonzo

22) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 Wil
Build Y3 B1

23) ts52: Build Y3 Grover

24) wil: Trade Y3 R3 B1

25) ts52: Trade Y3 R3 Grover

26) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 G3
Build Y3 B1

27) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Grover
Build R1 Grover

28) wil: Trade Y3 B3 B1

29) ts52: Discover Y3 Grover R2 Elmo

30) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 B1
Build B1 B1

31) ts52: Move Y3 Elmo Gonzo

32) wil: Sacrifice Y2 G3
Move G2 B1 G3
Move G2 G3 Ts52

33) ts52: Trade G1 R1 Ts52

34) wil: Sacrifice G2 Wil
Build G1 Ts52
Build G2 Ts52
Catastrophe Ts52 G

35) ts52: Move R3 Grover Ts52

36) wil: Move R3 B1 Grover
	ts52: Ouch!

37) ts52: Sacrifice G2 Grover
Build R2 Grover
Build R2 Grover
Catastrophe Grover Red
	wil: I stared at that maneuver for quite a while....

38) wil: Trade B3 R3 B1
	wil: yeah...so I made a stupd move to balance the power that was great...

39) ts52: Trade R3 G3 Ts52

40) wil: Build Y2 G3
	ts52: You're still ahead by a good margin.

41) ts52: Build G1 Ts52

42) wil: Build G2 Wil

43) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Gonzo
Build G3 Ts52
	wil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?
	ts52: Wow, I love the idea. I'll try to think back and see if I can find any games that seem like they're worthy. I wish I had a record of the in-person game where I beat Andy for the Homeworld championship at Origins one year. It wasn't the best game, for sure, but it had some interesting points.

44) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 B1
Build B1 B1

45) ts52: Trade G3 R3 Ts52

46) wil: Sacrifice Y2 G3
Move R3 B1 Grover
Move B1 B1 G3

47) ts52: Build G3 Ts52
	wil: The idea is to be instructional...so people can see all the elements happen, or happen spectacularly....

48) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 G3
Build R2 B1

49) ts52: Sacrifice Y2 Grover
Discover G2 Grover Y2 Bigbird
Move G1 Grover Bigbird

50) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 G3
Build R2 Grover

51) ts52: Discover G1 Bigbird B3 Cookiemonster

52) wil: Move R2 B1 Cookiemonster

53) ts52: Move R3 Ts52 Cookiemonster

54) wil: Sacrifice Y3 B1
Move B1 B1 G3
Move B1 G3 Ts52
Move B1 G3 Ts52

55) ts52: Build Y3 Gonzo

56) wil: Sacrifice Y2 Wil
Move B2 G3 Ts52
Move G2 Wil B1
Catastrophe Ts52 B

57) ts52: Attack R2 Cookiemonster

58) wil: Sacrifice Y2 G3
Move R3 Grover B1
Move R3 B1 Wil

59) ts52: Move Y3 Gonzo B1

60) wil: Sacrifice Y3 G3
Move G3 Wil Ts52
Move G2 B1 Wil
Move G2 Wil Ts52
Catastrophe Ts52 G

61) ts52: Move Y3 Gonzo Ts52
	ts52: Well shoot. There I go napping again... :(

62) wil: Move Y1 B1 Grover

63) ts52: Trade G1 B1 Gonzo

64) wil: Trade Y1 G1 Grover

65) ts52: Trade R2 Y2 Gonzo

66) wil: Trade R3 G3 Wil

67) ts52: Move B1 Gonzo Ts52

68) wil: Build Y1 Wil

69) ts52: Trade Y3 G3 Ts52

70) wil: Discover Y1 Wil G1 G1

71) ts52: Sacrifice G2 Bigbird
Build R2 Gonzo
Build R3 Ts52

72) wil: B G2 Wil

73) ts52: Move R2 Gonzo B1

74) wil: Sacrifice G3 Wil
Build G2 Grover
Build G3 Grover
Build G3 Wil

75) ts52: Attack R1 B1

76) wil: Build Y2 G1

77) ts52: Sacrifice G3 Ts52
Build G3 Gonzo
Build Y2 B1
Build Y3 Gonzo

78) wil: Move Y2 G1 Grover

79) ts52: Move G2 Gonzo B1

80) wil: Build Y3 G1

81) ts52: Move Y2 B1 Cookiemonster

82) wil: Trade G2 B2 Wil

83) ts52: Move G2 B1 Grover
Catastrophe Grover Green

84) wil: Move Y1 G1 Grover

85) ts52: Sacrifice Y3 Gonzo
Move Y3 B1 Grover
Move Y2 Gonzo B1
Move Y2 B1 Grover
Catastrophe Grover Yellow

86) wil: Discover Y3 G1 G3 G3

87) ts52: Trade R2 Y2 B1

88) wil: Sacrifice G3 Wil
Build Y1 Wil
Build Y2 G3
Build R2 Grover

89) ts52: Sacrifice Y2 Cookiemonster
Move R3 Cookiemonster B1
Move R3 B1 Wil

90) wil: Sacrifice Y3 G3
Move Y2 G3 Ts52
Move Y1 Wil Ts52
Move Y1 Wil Ts52
Catastrophe Ts52 Y

	wil: golly day that was scary...so often I am off on move count by one...
	ts52: Well played sir. I look forward to our next game.
	wil: thx, trying to learn so I can get up that ladder


24647)
Variants: "Hard time"
Started: 2013.11.2, Ended: 2013.11.7
Participants: wil (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B2 G3
	wil: You were right...it didn't take a year!

2) wil: Homeworld R1 B2 G3
	goulo: I'm glad! :)

Have a good game!

3) goulo: Build G1 Goulo
	wil: May 9th, took just under 6 months to get upto ya!  The slow players and nonplayers were just soooo frustrating.

4) wil: Build G1 Wil
	goulo: Well, I can guarantee I'll play, but sadly I can make no guarantee about my competence. :)

5) goulo: Trade G1 Y1 Goulo
	wil: I look forward to the game, I appreciate the encouragement you offered...every game to me is a learing experience.  Both the ones I lose and win.

6) wil: Trade G1 Y1 Wil

7) goulo: Build G1 Goulo

8) wil: Build Y1 Wil

9) goulo: Build Y2 Goulo

10) wil: Discover Y1 Wil B3 B3

11) goulo: Discover Y1 Goulo G1 Smeraldeto

12) wil: Build G1 Wil

13) goulo: Build G2 Goulo

14) wil: Sacrifice G3 Wil
Build Y2 B3
Build Y2 B3
Build Y3 Wil

15) goulo: Move Y1 Smeraldeto B3
Catastrophe B3 Y

16) wil: Build G1 Wil

17) goulo: Discover G2 Goulo Y1 Citroneto
	wil: quite the reboot...

	wil: quite the reboot...


18) wil: Build G2 Wil
	goulo: indeed! :)
	wil: I almost tossed us back to one ship each...

19) goulo: Sacrifice G3 Goulo
Build G2 Citroneto
Build G3 Citroneto
Build G3 Goulo

20) wil: Sacrifice Y3 Wil
Discover G1 Wil Y3 Y3
Move G1 Wil Y3
Move G1 Y3 Citroneto
Catastrophe Citroneto G
	wil: very nice...

21) goulo: Build Y1 Goulo
	goulo: Conventional wisdom would say that you've put yourself at a disadvantage by having no 3-ship now, but who knows... :)

22) wil: Build Y1 Wil
	wil: Oh, I believe I did...but you already had me outnumbered 3-1 so desperate situations require desp measures...

23) goulo: Discover Y1 Goulo R1 Rubeneto

24) wil: Trade Y1 R1 Wil

25) goulo: Discover Y1 Rubeneto G3 Smeraldego

26) wil: Build R1 Wil

27) goulo: Build Y1 Goulo

28) wil: M R1 Wil Smeraldego

29) goulo: Discover Y1 Smeraldego B2 Mirtelo

30) wil: Build Y2 Wil

31) goulo: Discover Y1 Goulo B1 Safireto

32) wil: Move Y2 Wil Smeraldego

33) goulo: Sacrifice G3 Goulo
Build Y2 Mirtelo
Build Y3 Safireto
Build Y3 Goulo

34) wil: Build R2 Smeraldego

35) goulo: Sacrifice Y2 Mirtelo
Move Y3 Safireto Y3
Move Y3 Y3 Wil

36) wil: Build Y2 Wil

37) goulo: Attack G2 Wil

38) wil: Move Y2 Smeraldego Wil
Catastrophe Wil Y

39) goulo: Attack R1 Wil
	wil: You've soundly defeated me with your evil ways...we will play agin
	goulo: mwahahaha! :)
Thanks for the game! I look forward to the next one.



24688)
Variants: "Hard time"
Started: 2013.11.8, Ended: 2014.1.14
Participants: ajo (S), AdamBadura (N)
Winner: ajo

1) AdamBadura: Homeworld G3 B2 R3
	ajo: Wow, it's been a while since I've played on SDG. :)

2) ajo: Homeworld B1 R3 G3

3) AdamBadura: Build R1 Adambadura

4) ajo: Build G1 Ajo

5) AdamBadura: Trade R1 G1 Adambadura

6) ajo: Trade G3 Y3 Ajo

7) AdamBadura: Build R1 Adambadura

8) ajo: Build Y1 Ajo

9) AdamBadura: Trade R1 Y1 Adambadura

10) ajo: Discover Y1 Ajo B2 Alpha

11) AdamBadura: Build R1 Adambadura

12) ajo: Build G1 Ajo

13) AdamBadura: Build G2 Adambadura

14) ajo: Build G2 Ajo

15) AdamBadura: Discover G2 Adambadura R1 Outpost

16) ajo: Move G2 Ajo Alpha

17) AdamBadura: Build R1 Adambadura

18) ajo: Build G2 Ajo

19) AdamBadura: Build G3 Outpost

20) ajo: Sacrifice G2 Ajo
Build G2 Alpha
Build G3 Ajo

21) AdamBadura: Discover R1 Adambadura B1 Mutator

22) ajo: Trade G2 R2 Alpha

23) AdamBadura: Build Y1 Adambadura

24) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G3 Ajo
Build Y2 Alpha

25) AdamBadura: Sacrifice Y1 Adambadura
Discover G3 Outpost R2 Deathstar

26) ajo: Move G2 Alpha Mutator

27) AdamBadura: Sacrifice Y1 Adambadura
Move G3 Deathstar Ajo
Catastrophe Ajo G

28) ajo: Build R2 Alpha
	ajo: Whoops, got the names of the stars backwards. :P Anyway, I'm back from vacation!

29) AdamBadura: Trade R1 Y1 Mutator

30) ajo: Sacrifice R2 Alpha
Attack Y1 Mutator
Pass

31) AdamBadura: Build G1 Outpost

32) ajo: Build R1 Alpha

33) AdamBadura: Trade R1 Y1 Adambadura

34) ajo: Build G1 Mutator

35) AdamBadura: Discover G1 Adambadura R1 Deathstar

36) ajo: Build G3 Mutator

37) AdamBadura: Build Y2 Adambadura
	ajo: You really like those red/green deathtraps, don't you? What's the attraction there?

38) ajo: Trade G2 R2 Mutator

39) AdamBadura: Move Y2 Adambadura Deathstar
	AdamBadura: I play poorly. :( I was somewhat better when I was playing more, but since long I only answer chelenges which is rare.

40) ajo: Discover Y2 Alpha B1 Beta



24687)
Variants: "Hard time"
Started: 2013.11.9, Ended: 2013.11.26
Participants: Aristos (S), wil (N)
Winner: Aristos

1) wil: Homeworld B2 R1 G3

2) Aristos: Homeworld G3 B2 Y3
	wil: thanks for the game, we's heads up over there with more pieces...

3) wil: Build G1 Wil
	Aristos: Aristos Empire, having eliminated the last resistance on Homeworld, constructs a ship to explore the stars.

4) Aristos: Build Y1 Aristos

5) wil: Trade G1 Y1 Wil

6) Aristos: Discover Y1 Aristos B1 Aleph

7) wil: Build G1 Wil

8) Aristos: Trade Y1 G1 Aleph

9) wil: Discover G1 Wil B3 B3

10) Aristos: Build Y1 Aristos

11) wil: Build Y1 Wil
	wil: 
(Hide Notebook)


 	 
	wil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?

12) Aristos: Build Y2 Aristos
	Aristos: Could definitely be educational. Let's see how the game develops, but I'm definitely open to it. 
	wil: Oh, I am not talking about this game...I am talking about particularly memorable learning moments you've had in games....

13) wil: Move Y1 Wil B3
	Aristos: The best games I've had have been in person, not online here. My single best: My opponent built a successful doomsday device, but before he could deploy it, I attacked and managed to successfully own the two Y3s and then deployed it the other direction. ;-)

14) Aristos: Trade Y1 R1 Aristos

15) wil: Build G1 Wil

16) Aristos: Build G2 Aleph

17) wil: Sacrifice G3 Wil
Build G2 B3
Build G2 B3
Build G3 Wil

18) Aristos: Sacrifice Y2 Aristos
Move G1 Aleph B3
Discover G2 Aleph Y3 Beda
Catastrophe B3 Green

19) wil: Trade G1 R1 Wil

20) Aristos: Build R2 Aristos

21) wil: Build R2 Wil

22) Aristos: Build G1 Beda
	Aristos: I forgot to trigger the catastrophe the first time. 

23) wil: Discover R2 Wil G3 G3

24) Aristos: Build G1 Beda

25) wil: Build G1 Wil

26) Aristos: Sacrifice Y3 Aristos
Move G1 Beda Wil
Move G1 Beda Wil
Discover R1 Aristos B1 Gimme
Catastrophe Wil Green

27) wil: Sacrifice Y1 Wil
Move R2 G3 Wil

28) Aristos: Build R2 Aristos

29) wil: Trade R2 G2 Wil

30) Aristos: Trade R2 Y2 Aristos
	Aristos: I spent a long time considering the wisdom of that move. I hope I've analyzed this right. 

31) wil: Build G1 Wil
	wil: and I didnt think you'd pull that trigger....

32) Aristos: Build G1 Beda

33) wil: Trade G1 Y1 Wil

34) Aristos: Build R2 Aristos

35) wil: Discover R1 Wil G3 G3
	wil: startin over...

36) Aristos: Sacrifice G2 Beda
Build R2 Gimme
Build R3 Aristos

37) wil: Build R3 G3

38) Aristos: Trade R2 Y2 Aristos

39) wil: Build Y1 Wil

40) Aristos: Sacrifice Y2 Aristos
Move R1 Gimme G3
Move R2 Gimme Beda

41) wil: S Y1 Wil
M R3 G3 Wil

42) Aristos: Sacrifice Y2 Aristos
Move R1 G3 Wil
Move R2 Beda Wil
Catastrophe Wil Red

43) wil: B Y1 Wil

44) Aristos: Build R1 Aristos

45) wil: Build Y2 Wil

46) Aristos: Trade R3 Y3 Aristos

47) wil: Move Y1 Wil G3

48) Aristos: Build Y2 Aristos

49) wil: Sacrifice G2 Wil
Build Y2 B3
Build Y3 G3

50) Aristos: Sacrifice Y2 Aristos
Discover Y3 Aristos B1 Temp
Move Y3 Temp Wil

	Aristos: "But, admiral, that will leave our homeworld undefended!"
"Yes, senator, but once I destroy the enemy's home fleet, I shall loot their world and be back before they cause us any difficulties."
"You realize if you fail, we'll be conquered and likely killed or enslaved."
"Senator, you worry about your reelection. Let me worry about the empire."
	wil: yes....i was a step behind....too slow...nice game
	Aristos: Thanks. Good game.
	wil: I looke foreard to plaaying agan....challenge me off the ladder if you wish...   I am way still learning thi thing


24693)
Variants: "Hard time"
Started: 2013.11.9, Ended: 2013.11.25
Participants: Broccoli_Commander (S), MagicJohn (N)
Winner: Broccoli_Commander

1) MagicJohn: Homeworld Y1 B2 G3

2) Broccoli_Commander: Homeworld B1 R3 G3
	MagicJohn: Wishing you and your little broccolites a good game......

3) MagicJohn: Build G1 Magicjohn
	Broccoli_Commander: Likewise dear John

4) Broccoli_Commander: Build G1 Broccoli_commander

5) MagicJohn: Trade G1 R1 Magicjohn

6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander
	MagicJohn: Memo to Magic One: encryption code 18.
Have established outpost in sector 8.  Currently setting up defenses.
Intelligence indicates a possible alien presence in sector 10. Source describes "little green men sporting Afros."  (chuckle)  Agent may be over-indulging in spirits or reading  early-american science fiction mags.
Will send additional intel when information is more reliable or can be taken seriously...... 

7) MagicJohn: Build R1 Magicjohn

8) Broccoli_Commander: Build Y1 Broccoli_commander

9) MagicJohn: Trade G3 Y3 Magicjohn

10) Broccoli_Commander: Build Y2 Broccoli_commander

11) MagicJohn: Trade R1 G1 Magicjohn

12) Broccoli_Commander: Discover Y1 Broccoli_commander B2 Blueberry

13) MagicJohn: Discover Y3 Magicjohn G3 Ruffage
	MagicJohn: Memo to MJ
Aliens are stockpiling propulsion materials. May be aware of our presence. Suggest counter measures.
Agent Orange

14) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build Y2 Blueberry
Build Y2 Blueberry
Build Y3 Broccoli_commander
	MagicJohn: Memo to MJ
Interstellar movement detected. Aliens may be more aggressive and mobile than typical autotrophs.
Also, beware command-post decor and accents. One could be a plant.

15) MagicJohn: Move Y3 Ruffage Magicjohn
	MagicJohn: Memo to MJ from Orange:
DUCK!!
	MagicJohn: Memo to Magic One:
Outpost under threat.  Little green veggies to be taken seriously.  Send herbicide and delivery system... SOON!!!
MJ 

16) Broccoli_Commander: D Y2 Blueberry G3 Lettuce
	MagicJohn: Attention alien commander (Caesar of Salads): Please be advised that we are an expeditionary force representing an entire federation of allied civilizations. If you surrender now, we can guarantee that you will be relocated into a space sector free of herbivores and other vegan species. We also offer Obamacare and/or a Thousand Islands to restore your aged foliage or environmentally stressed sprouts.      

17) MagicJohn: Trade Y3 R3 Magicjohn

18) Broccoli_Commander: Build Y3 Lettuce

19) MagicJohn: Trade R1 B1 Magicjohn
	MagicJohn: MJ to Orange: Threats and/or promises not effective. Other suggestions?
	MagicJohn: Orange to MJ: Try obsequious,,,
	MagicJohn: MJ: Ob-se.....
	MagicJohn: Orange: Sniveling
	MagicJohn: MJ: oh....
	MagicJohn: Oh great Mandarin of Oranges, Royal Palm, Crown of Broccoli, Head of Lettuce, Heart of Artichoke, Caesar of Salads:  We poor pilgrims, cast out from our native lands, request the favor of an  audience with a legume leader to discuss peaceful co-existence in this corner of space. Please send one starship to our docking port. We regret that our poor facilities cannot accommodate your entire,glorious fleet.....    

20) Broccoli_Commander: Build Y3 Lettuce

21) MagicJohn: Build G1 Magicjohn
	Broccoli_Commander: Dear MJ, dreadful agent O,

I, the ever healthy Broccoli Commander, would like to express my greenest sympathy to you and your people. You see, with my fellow flowerheads, we had to face an intestine war. One of those that requires a mouthful of diplomatic fibers to settle.

Captain Lemon had always added a needed zest to our team. In fact he protected our little seeds and sprouts from the terrible vegan attack of last summer. We had to express our gratitude!

But captain Lemon went overboard this time. A rooting spot in the holy lands (with an endless supplies of bees!) was not enough for him. He drained all the cosmopropellant from the entire universe to make a fleet in his glory.

Do not worry for us, I think the old disputes have rotten now. But I'm afraid I cannot give you any access to cosmoprop tanks anymore. I can only advise you to stay away from Captain Lemon ships or he might unite his acids with his old pal the T to reduce you to ketchup.

Yours delicacy,
The ever healthy Broccoli Commander.

PS No seriously: All your base are belong to us. Surrender or tell your kids they gonna have to eat spinach!
	Broccoli_Commander: Hilarious:
http://news.yahoo.com/blogs/news/obama-broccoli-gate-211714643.html
I should have taken the obamacare you offered me

22) Broccoli_Commander: Trade Y2 R2 Broccoli_commander

23) MagicJohn: Move B1 Magicjohn Lettuce
	MagicJohn: Oh Czar of Zucchini,
Our heartfelt greetings to you and the Cumquat Queen. (Or vice versa, depending upon who's in charge)
We regret to hear how poorly your Captains obey orders. The insurrection and resulting anarchy must wreck havoc on your magnificent civilization. The stronger hand of the Federation could give you a welcome respite from your societal turmoil.
To prove our sincerity, we are preparing a nutritious compound of potassium nitrate and various other chemicals for your continued good health.
MJ       
	MagicJohn: Oh Pontiff of Peach,
We are sending an emissary to begin a peaceful dialogue and, hopefully, negotiate a lasting peace and mutual respect between our peoples. We trust that your cambium is as pure as one would expect from the leader of such an advanced civilization and our emissary will be safe and treated well.
May your pith forever prosper!
MJ   

24) Broccoli_Commander: Sacrifice Y2 Blueberry
Move Y3 Lettuce Magicjohn
Move Y3 Lettuce Magicjohn

25) MagicJohn: Build R1 Magicjohn
	Broccoli_Commander: You say potassium nitrate, we come and get it. Our two oversized cargo ships are ready,please deliver.
	MagicJohn: Magic 1 to MJ:
Having successfully and irrevocably pollenated up the tactics needed to complete objectives in your sector, we trust you are willing to accept a small demotion to Private MJ.  Agent Orange has returned to Nam where he is trying to ingratiate himself to the current generation of flora.

26) Broccoli_Commander: Sacrifice R2 Broccoli_commander
Attack R3 Magicjohn
Attack R1 Magicjohn
	MagicJohn: Dear Poobah of Pomegranate, Great Royalty of Rhubarb:

Our esteemed commander, Private MJ, has been called back to his home planet due to an impending death in his family.
As acting commander, I am organizing the delivery of nutritious consumables to your magnificent ships as quickly as possible. Loading will most certainly be complete in the current growing season.
May your bulbs always bloom.
Major Minor 

27) MagicJohn: Trade G1 B1 Magicjohn
	Broccoli_Commander: Dear Major Minor,

Thank you for your generosity, this is more than we would have asked for! We took the liberty of borrowing two of your ships to bring the cargo back to all of our ramifications. I'm sure you understand; rest assured we will return them briskly!

I hope Private MJ is alright, we had quite the fun with him. Transmit our condolences, may he not forget that one's soul harvesting leads to new germinations

Best wishes of peace, joy and chlorophyll,
The ever healthy Broccoli Commander

28) Broccoli_Commander: Sacrifice R3 Magicjohn
Attack B1 Magicjohn
Attack G1 Magicjohn
Attack B1 Lettuce
	MagicJohn: Command fleet to MJ outpost:
Prepare to receive incoming shipment of raspberry Kool Aid. You know the drill.
	MagicJohn: Command fleet to MJ outpost:
P.S. Please instruct Major Disaster's wife to stop rearranging our fleet to accommodate her "feng shui" impulses. Isn't ANYONE in charge out there?
	Broccoli_Commander: We are looking forward to feeding on your decomposing bodies.

PS Thanks for the game, I may have beaten you in space but you are light years ahead in eloquence ;)
	MagicJohn: Well played!  It's been a while since I have been that thoroughly annihilated…….  Going back to home base for more advanced tactical classes……. May recruit Ender…..



24604)
Variants: "Hard time"
Started: 2013.11.10, Ended: 2013.11.15
Participants: Broccoli_Commander (S), wil (N)
Winner: Broccoli_Commander

1) wil: Homeworld B2 R1 G3

2) Broccoli_Commander: Homeworld B1 R2 G3

3) wil: Build G1 Wil
	wil: Oh, these short unis...

4) Broccoli_Commander: Build G1 Broccoli_commander

5) wil: Trade G1 Y1 Wil
	Broccoli_Commander: ?
	wil: you've done built us a short universe....we are one 3 star away or two moves away from each other...this is only the second time I've played this...

6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

7) wil: Build G1 Wil
	Broccoli_Commander: Ha! That was not intended! (I meant to h b1 r3 g3)
	wil: well this is another fine mess you've gotten us into.

8) Broccoli_Commander: Build G1 Broccoli_commander
	wil: The goal, videos which teach the intracies of games of homeworlds.   The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe...  And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds.....   You pick the game number (from the archive) and if you wish we give you credit for your half of the game....  If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?
	Broccoli_Commander: Heh nice project! Are you its instigator?
I might submit, but I'll need some archive browsing time... deadline?

9) wil: Build Y1 Wil
	Broccoli_Commander: Well in #23216 vs ts52 I had a funny opening that led to a yellow monopole. But while I thought it was "brilliant" at the time, I'm not sure anymore... I mean the point of the opening is rather obvious...
	Broccoli_Commander: In #23213 vs SilentTitan I was really helpless after turn 8 already: he had set up himself nicely for a blue monopoly and caught me totally unprepared.
	Broccoli_Commander: Finally #23269 vs SilentTitan was also funny:
He played for a yellow monopole (pretty much as I tried in #23216) and I went for a green monopole. 

I barely managed to prevent his yellow monopole and then he went for a preemptive y cat at my homeworld.

A terrific war followed that I could only win by "teleporting" g2 repeatedly (s g2, b g2 elsewhere + build anywhere) and because I had built the lone r1 of the game somewhere.

If you want to look at one game only I would suggest this one :) But the other two are fun too I think. Note that I won't be offended at all if you judge that none of them are worth for the project ;)
	wil: Wow, thanx for the quick response....they are gonna be excited!  

no deadline, yes I am instigating, the idea is to review them and pick ones to add 'color commentary' them thinking outloud about moves and what they do to figure out what to do next...

10) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

11) wil: Build Y2 Wil
	Broccoli_Commander: Hehe I could not resist going through the old games again ;) Hence the quick reply. But this is really a nice idea! Did you get support from other people of the community already?

Another thing I've been thinking about is a smartphone version of homeworlds! It is a hobby of mine... I dunno if there would be any interest from the community and/or creators of the game, though?
	wil: Oh we've been drooling of the concept of an app....where you could drag and drop ships from star to star, to and from the bank....real time reactions and a live chat feature with players....an actual coin to move to lock in your play....it would be amazing...you have that talent??

12) Broccoli_Commander: Trade G1 R1 Blueberry

13) wil: Trade Y1 R1 Wil

14) Broccoli_Commander: Build G1 Broccoli_commander

15) wil: Move Y2 Wil Blueberry

16) Broccoli_Commander: Build G1 Broccoli_commander
	Broccoli_Commander: Hell I'm not on top of this game :D :D :D :D

Hey nice to hear that there would be excitement about an app! I was wondering which platform would be the best... Basically iOS is the most convenient because they provide servers for matchmaking whereas (as far as I know) we need to provide our own server on the other platforms (android, windows phone, ... )

Now I'm definitely not ready to invest money into this, so I think I would do it for iOS. Do you have an iPhone?

The other possibility would be to make a plain windows game; but I guess mobile platforms are preferred nowadays?

But otherwise yeah I would be able to make it (hopefully :D) 

17) wil: Sacrifice R1 Wil
Attack R1 Blueberry

18) Broccoli_Commander: Discover G1 Broccoli_commander B3 Muffin

19) wil: Move G1 Wil Blueberry
	wil: whew

20) Broccoli_Commander: Build G2 Muffin

21) wil: Build G2 Wil
	wil: short uni issues are crazy
	wil: You up early or late?
	Broccoli_Commander: Its noon here, you?

22) Broccoli_Commander: Trade G2 R2 Muffin
	wil: you in Europe?
	wil: I'm on the east coast USA

23) wil: Build G2 Blueberry
	Broccoli_Commander: yep I'm in europe, so you're up very late or reasonably early now?

24) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Muffin
Build G3 Broccoli_commander
Build Y1 Broccoli_commander

25) wil: Sacrifice Y2 Blueberry
Move G1 Blueberry Broccoli_commander
Move G2 Blueberry Broccoli_commander
Catastrophe Broccoli_commander G
	wil: unreasonably early, I was on holiday for a couple of years..back at work now...  looks like i missed an opportunity already...

26) Broccoli_Commander: Move Y1 Broccoli_commander Muffin
	Broccoli_Commander: Well my opening was really bad.... Indeed you could have killed me already :|

27) wil: Build Y2 Wil

28) Broccoli_Commander: Sacrifice G2 Muffin
Build Y2 Muffin
Build Y2 Broccoli_commander

29) wil: Move Y2 Wil Blueberry

30) Broccoli_Commander: Trade Y2 G2 Broccoli_commander

31) wil: Sacrifice G3 Wil
Build Y2 Blueberry
Build Y3 Wil
Build R1 Blueberry

32) Broccoli_Commander: Build Y3 Broccoli_commander

33) wil: Trade Y3 R3 Wil

34) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Topping

35) wil: Build Y3 Wil

36) Broccoli_Commander: Sacrifice G2 Broccoli_commander
Build Y3 Topping
Build R2 Muffin

37) wil: Discover Y1 Wil G3 G3

38) Broccoli_Commander: Move R2 Muffin Broccoli_commander

39) wil: Sacrifice Y2 Blueberry
Move R1 Blueberry Broccoli_commander
Move R1 Blueberry Broccoli_commander
Catastrophe Broccoli_commander R
	wil: now somebodies up late!
	Broccoli_Commander: Yes indeed.... way too late actually

40) Broccoli_Commander: Build Y2 Muffin

41) wil: Move Y3 Wil G3

42) Broccoli_Commander: Build R1 Muffin

43) wil: Trade R3 G3 Wil

44) Broccoli_Commander: Build G1 Muffin
	wil: we gotta play a real game after this...this is just so wild....not that I am good at the regular game...but this is foriegn...

45) wil: Sacrifice Y1 G3
Move G2 Wil Muffin
	wil: do you have any locals you play homeworlds with?  the physical game?

46) Broccoli_Commander: Attack G2 Muffin
	Broccoli_Commander: No, I only played once with physical pieces unfortunately. Sure we can play again :)

	wil: Knowledge of this game is quite limited by me...I cannot prolong the agony any longer...
	Broccoli_Commander: I should never have won this game :D It was an intense uphill battle...
	wil: Yes, I blew it early on...didn't see the win...  


24628)
Variants: "Hard time"
Started: 2013.11.15, Ended: 2013.11.23
Participants: wil (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3

2) wil: Homeworld R3 B1 G3
	Broccoli_Commander: Let's play a normal game! (don't pick a h r3 b3 g3* please :D)
	Broccoli_Commander: For the app thing: do you have windows 8?

3) Broccoli_Commander: Build G1 Broccoli_commander
	wil: I'll have to check on my other computer...I use an asus droid most of the time...are you workin on somethin??

4) wil: Build G1 Wil
	Broccoli_Commander: Not quite yet, still prospecting to see what would be the best platform...
	wil: nah, I am on windows7...  over here seems the most popular are droids and ios

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander
	Broccoli_Commander: Yeah droid is the one I know the least but it is also the most popular... I'll have a look into droid first [no promises on the whole thing, don't tell all your friends yet :D]

6) wil: Trade G1 Y1 Wil
	wil: Where was your one live game??   and I know i asked you about the broccoli commander name...I was accusing Andy of bein sneaky (tirade)
	wil: Where was your one live game??   and I know i asked you about the broccoli commander name...I was accusing Andy of bein sneaky (tirade)

7) Broccoli_Commander: Build G1 Broccoli_commander

8) wil: Build Y1 Wil
	Broccoli_Commander: At a friend s place, but he did not particularly like it...
as for my name it was just an invention.. 

9) Broccoli_Commander: Build Y2 Broccoli_commander
	wil: I don't know if we spoke about it  But the inventor of the pyramids had a cartoon character of broccoli, and often calls himself the emporer...so broccoli commander made me think it was him at first....

10) wil: Build Y2 Wil
	Broccoli_Commander: Haha ok I see... Well dlwillson also thought I was Andy. I understand now...

11) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry

12) wil: Trade Y1 R1 Wil

13) Broccoli_Commander: Trade Y1 R1 Blueberry
	wil: That was probably the reason...from the comic book....Andy doesn't look at broccoli as food but as a cartoonn character.

14) wil: B Y1 Wil

15) Broccoli_Commander: Move G1 Broccoli_commander Blueberry

16) wil: Discover R1 Wil G2 G2

17) Broccoli_Commander: Build R2 Blueberry

18) wil: Build R2 G2

19) Broccoli_Commander: Trade R2 Y2 Blueberry

20) wil: Trade Y1 B1 Wil

21) Broccoli_Commander: Build R2 Blueberry

22) wil: Build B1 Wil

23) Broccoli_Commander: Discover R2 Blueberry G2 Lettuce

24) wil: Move B1 Wil G2

25) Broccoli_Commander: Build R2 Lettuce

26) wil: Trade R1 Y1 G2

27) Broccoli_Commander: Build G1 Broccoli_commander

28) wil: Build B2 G2

29) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build Y1 Broccoli_commander
Build Y3 Broccoli_commander
Build Y3 Blueberry

30) wil: Build Y3 G2

31) Broccoli_Commander: Trade Y3 G3 Broccoli_commander

32) wil: Discover B2 G2 G3 G3
	wil: I was so close to catastrophing your homeworld..

33) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G1 Blueberry
Build G2 Blueberry
Build G3 Broccoli_commander
	Broccoli_Commander: I would have preferred ;-)

34) wil: Move Y1 G2 G3
	wil: It was tempting...as I looked at moves it kept coming back...

35) Broccoli_Commander: Build Y3 Broccoli_commander

36) wil:

Move Y1 G3 Broccoli_commander
Catastrophe Broccoli_commander Y

37) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build R1 Blueberry
Build R3 Blueberry

38) wil: Build R3 G2

39) Broccoli_Commander: Sacrifice Y2 Blueberry
Move R1 Blueberry G2
Move R1 Blueberry G2
Catastrophe G2 R

40) wil: Trade Y2 R2 Wil

41) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build Y1 Blueberry
Build R1 Blueberry

42) wil: Move R2 Wil G2

43) Broccoli_Commander: Discover R1 Blueberry Y2 Cauliflower

44) wil: Sacrifice Y1 Wil
Move B2 G3 Cauliflower

45) Broccoli_Commander: Sacrifice Y3 Blueberry
Move G1 Blueberry G2
Move G1 Blueberry G2
Move G2 Blueberry G2
Catastrophe G2 G

46) wil: Trade B1 R1 Wil

47) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build R2 Blueberry
Build R3 Cauliflower
Build Y1 Blueberry

48) wil: Discover B2 Cauliflower Y3 Y3

49) Broccoli_Commander: Move R3 Blueberry Broccoli_commander
	wil: nice, I missed that...

50) wil: Build G1 Wil
	wil: reboot to a new game...with you with a big lead...

51) Broccoli_Commander: Trade Y1 G1 Blueberry
	Broccoli_Commander: Thanks, at last you missed something, I was seriously worried ;-)
And I dont know if it was your plan, but you forced my hand: you could have done the same with your blues and my beloved Blueberry  

52) wil: Trade G1 Y1 Wil

53) Broccoli_Commander: Trade R3 Y3 Broccoli_commander

54) wil: Build G1 Wil

55) Broccoli_Commander: Build R3 Blueberry

56) wil: Discover G1 Wil Y2 Y2
	wil: Yeah...i blew it as usual..  my issue is I don't take enough time to look at these games.  I should set up a physical set and evaluate longer...but i don't have the patience...i shoot from the hip and make mistakes...time for me to wake up.

57) Broccoli_Commander: Trade R3 G3 Blueberry

58) wil: Move R1 Wil Y2

59) Broccoli_Commander: Build R3 Blueberry

60) wil: Move G1 Y2 Y3

61) Broccoli_Commander: Move G3 Blueberry Y2

62) wil: Build G2 Wil

63) Broccoli_Commander: Sacrifice Y3 Broccoli_commander
Move G3 Y2 Wil
Move R3 Cauliflower Wil
Move R3 Blueberry Broccoli_commander

64) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build G3 Wil

65) Broccoli_Commander: Attack Y1 Wil
Catastrophe Wil G

	wil: thank you for the beating!
	Broccoli_Commander: Anytime ;)

Any news from your best-games-replay project?
	wil: We are discussing the format, I'd like to make it easy and less complicated so it can be accomplished quickly and improved upon if it shows value...  others want more polish and professionalism....but expect something accomplished early next year.
	wil: on the homeworlds ap front....odds are IOS would be the best format...as it is still the most widely used...
	Broccoli_Commander: OK good news :)
For the app->it might actually be possible to do a multiplatform thing using "Unity"/ but do not expect anything before next year :P


24739)
Variants: "Hard time"
Started: 2013.11.19, Ended: 2014.1.7
Participants: TeeTeeTee (S), SirRuthvenMurgatroyd (N)
Winner: TeeTeeTee

1) SirRuthvenMurgatroyd: Homeworld B1 Y2 G3

2) TeeTeeTee: Homeworld Y1 B3 G3

3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

4) TeeTeeTee: Build G1 Teeteetee

5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol
	TeeTeeTee: Greetings! Thanks for accepting my challenge.

6) TeeTeeTee: Trade G1 Y1 Teeteetee

7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

8) TeeTeeTee: Build Y1 Teeteetee

9) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd

10) TeeTeeTee: Discover Y1 Teeteetee G2 Stepney

11) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd

12) TeeTeeTee: Build Y2 Stepney

13) SirRuthvenMurgatroyd: Discover Y2 Sirruthvenmurgatroyd Y3 Aleph

14) TeeTeeTee: Trade Y1 R1 Teeteetee

15) SirRuthvenMurgatroyd: Discover Y2 Aleph G2 Beth

16) TeeTeeTee: Build R1 Teeteetee

17) SirRuthvenMurgatroyd: Build G1 Sol

18) TeeTeeTee: Move Y2 Stepney Sol

19) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd

20) TeeTeeTee: Build G3 Teeteetee

21) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd

22) TeeTeeTee: Sacrifice G3 Teeteetee
Build G3 Teeteetee
Build Y1 Sol
Build Y3 Stepney

23) SirRuthvenMurgatroyd: Move Y2 Beth Sol
Catastrophe Sol Yellow

24) TeeTeeTee: Discover G3 Teeteetee Y2 Aldgate

25) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y3 Gimel

26) TeeTeeTee: Move Y3 Stepney Gimel

27) SirRuthvenMurgatroyd: Discover G3 Gimel R2 Dalet

28) TeeTeeTee: Move Y3 Gimel Sirruthvenmurgatroyd

29) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Yellow

30) TeeTeeTee: Move G3 Aldgate Sirruthvenmurgatroyd

31) SirRuthvenMurgatroyd: Trade G1 Y1 Sirruthvenmurgatroyd

32) TeeTeeTee: Sacrifice R1 Teeteetee
Attack Y1 Sirruthvenmurgatroyd

33) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd

34) TeeTeeTee: Build G1 Sirruthvenmurgatroyd
Catastrophe Sirruthvenmurgatroyd Green
	TeeTeeTee: Thanks for the game!



24744)
Variants: "Hard time"
Started: 2013.11.20, Ended: 2013.12.11
Participants: goulo (S), agentofchaos (N)
Winner: goulo

1) agentofchaos: Homeworld B1 R2 G3

2) goulo: Homeworld R3 B1 G3

3) agentofchaos: Build G1 Agentofchaos
	goulo: hi, have fun!

4) goulo: Build G1 Goulo
	agentofchaos: Thanks, you too!

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) goulo: Build G1 Goulo

7) agentofchaos: Build G1 Agentofchaos

8) goulo: Trade G1 Y1 Goulo

9) agentofchaos: Discover Y1 Agentofchaos G3 Hadaeon

10) goulo: Build Y1 Goulo

11) agentofchaos: Build Y2 Hadaeon

12) goulo: Build Y2 Goulo

13) agentofchaos: Trade G1 B1 Agentofchaos

14) goulo: Discover Y1 Goulo G2 Smeraldo

15) agentofchaos: Build G1 Agentofchaos

16) goulo: Discover Y2 Goulo R2 Rubeno

17) agentofchaos: Build B2 Agentofchaos

18) goulo: Sacrifice G3 Goulo
Build Y2 Rubeno
Build Y3 Smeraldo
Build Y3 Goulo

19) agentofchaos: Move Y1 Hadaeon Agentofchaos

20) goulo: Build Y3 Goulo

21) agentofchaos: Move B2 Agentofchaos Hadaeon

22) goulo: Trade Y1 R1 Goulo

23) agentofchaos: Trade B1 R1 Agentofchaos

24) goulo: Trade R1 B1 Goulo



24473)
Variants: "Unrated, Hard time"
Started: 2013.11.22, Ended: 2014.1.4
Participants: Phil_Coulson (S), wil (N), Leonard_Daniels (E)
Winner: wil

1) wil: Homeworld B2 G1 Y3
	wil: Make sure you pick a different homeworld

2) Leonard_Daniels: Homeworld Y1 B3 G3

3) Phil_Coulson: Homeworld B3 R2 G3

4) wil: Build Y1 Wil

5) Leonard_Daniels: Build G1 Leonard_daniels

6) Phil_Coulson: Build G1 Phil_coulson

7) wil: Discover Y1 Wil G3 G3

8) Leonard_Daniels: Trade G1 B1 Leonard_daniels

9) Phil_Coulson: Trade G1 Y1 Phil_coulson

10) wil: Build Y1 Wil

11) Leonard_Daniels: Build B1 Leonard_daniels

12) Phil_Coulson: Build Y2 Phil_coulson

13) wil: Build Y2 Wil

14) Leonard_Daniels: Build G1 Leonard_daniels
	Leonard_Daniels: Arse.  Frozen out of the yellow economy this early.  At some point I'm just going to have to accept that I'm terrible at this game.

15) Phil_Coulson: Discover Y1 Phil_coulson G1 G1

16) wil: Discover Y2 Wil B3 B3

17) Leonard_Daniels: Discover B1 Leonard_daniels G2 G2
	Phil_Coulson: Or you can build a blue fleet and eventually trade them for yellows. 
	wil: or trade g3 for y3....but defiantly not frozen out...

18) Phil_Coulson: Build Y2 Phil_coulson
	Leonard_Daniels: Didn't even occur to me.  Definitely terrible at this game.

19) wil: Trade Y3 G3 Wil

20) Leonard_Daniels: Build B1 G2

21) Phil_Coulson: Trade Y2 B2 Phil_coulson

22) wil: Build Y2 G3

23) Leonard_Daniels: Trade B1 R1 G2

24) Phil_Coulson: Move B2 Phil_coulson G1

25) wil: Discover Y2 G3 B1 B1

26) Leonard_Daniels: Build R1 G2
	wil: I have never had anyone else use my star nomenclature before and now an entire game of it??


27) Phil_Coulson: Build G1 Phil_coulson

28) wil: Sacrifice G3 Wil
Build Y2 B1
Build Y3 B1
Build Y3 Wil

29) Leonard_Daniels: Build G2 Leonard_daniels

30) Phil_Coulson: Move Y2 Phil_coulson B1
Catastrophe B1 Y
	Phil_Coulson: Well, this sets me back, but the move is forced, so I have to play it.
	Phil_Coulson: Well, this sets me back, but the move is forced, so I have to play it.

31) wil: Trade Y1 R1 Wil
	wil: ouch

32) Leonard_Daniels: Trade G1 Y1 Leonard_daniels

33) Phil_Coulson: Trade G1 R1 Phil_coulson

34) wil: Build R2 Wil

35) Leonard_Daniels: Move Y1 Leonard_daniels G2

36) Phil_Coulson: Build Y2 G1

37) wil: Build Y2 Wil

38) Leonard_Daniels: Move R1 G2 Leonard_daniels

39) Phil_Coulson: Move Y1 G1 Phil_coulson
	wil: now this is synister yes?? only can attack left? I've never done this yet...
	Leonard_Daniels: Is it?  If it is, I'd forgotten.  Sinister doesn't affect who you CAN attack, though, does it?  I thought it just affected your victory conditions.

40) wil: Trade Y3 G3 Wil

41) Leonard_Daniels: Build R2 Leonard_daniels

42) Phil_Coulson: Move R1 Phil_coulson G1
	wil: i dunno...never done it...I'm asking...so it is a free for all?
	Leonard_Daniels: Pretty sure it's a free-for-all.  It doesn't say Sinister at the top of the page, anyway.  In any case, I've looked up the rules for Sinister Homeworlds and you can attack anybody you like, it's just that you win if the player to your left is eliminated.

43) wil: Build G1 Wil
	wil: thx...although the only way I've seen these games end so far is get timed out...

44) Leonard_Daniels: Build B1 G2

45) Phil_Coulson: Build R2 G1

46) wil: Sacrifice G3 Wil
Build Y2 G3
Build Y3 B3
Build Y3 Wil

47) Leonard_Daniels: Build Y3 G2

48) Phil_Coulson: Discover R1 G1 G3 G3prime

49) wil: Move Y3 B3 G1

50) Leonard_Daniels: Move Y1 G2 Leonard_daniels

51) Phil_Coulson: Sacrifice G3 Phil_coulson
Build Y3 Phil_coulson
Build R3 G3prime
Build R3 G3prime

52) wil: Sacrifice R2 Wil
Attack R2S G1
Attack Y2S G1
	Phil_Coulson: And I would have expected you to move the y1 to planet g1 rather than back to your homeworld!

53) Leonard_Daniels: Sacrifice Y3 G2
Move R1 G2 G1
Move R1 Leonard_daniels G2
Move R1 G2 G1
	Phil_Coulson: Shit. That doesn't work because you moved your y1 from the right place to a bad place so you can't help out next turn.
	wil: Help out??  What is this 'help out' notion?  Am I playing a team or two individual players?
	Phil_Coulson: No, but if any of us get too powerful the the others help out. In this case, had Leonard moved his y1 into the 'g1' system, that would be asking me to sacrifice and build a y3 and blow up all the yellow commodity in the system. It would help Leonard the most, but it would help me too as it would save my little ships, so I would take that offer. You would similarly do the same to me if I were intruding. That's the fun of 3-player games.

However, Leonard made a move worse than passing, and didn't build big ships. I have to wonder what that is about. As it is, you have a 90% chance of winning, Wil, as you will have all the yellow ships soon. If Leonard doesn't aggressively attack you now, I should simply resign. 

54) Phil_Coulson: Sacrifice B2 G1
Trade R3 Y3 G3prime
Trade Y1 G1 Phil_coulson
	Phil_Coulson: I think my position is lost no matter what, so I'll make a desperation move.

55) wil: Attack R1E G1
	wil: golly day....g3 prime looks like come kill me...  it can't grow, can't trade, can't move..witout a sacrifice in the home world...and the home world can't grow,    It is quite the stiuation...
	Leonard_Daniels: Phil, were you not listening when I told you I was terrible at this game?  Lesson for the future: never make plans based on the assumption that I know what I'm doing...

56) Leonard_Daniels: Sacrifice G2 Leonard_daniels
Build R2 G1
Build R3 Leonard_daniels
Catastrophe G1 R
	Phil_Coulson: Yeah, I've no idea what I'm doing here either. But I know you want to move everything out of your home world but one big and one small ship of the the two colors different from your stars.

and wil is right, I can't move my red ships. 

57) Phil_Coulson: Discover R3 G3prime Y1 Y1
	Phil_Coulson: My blue ship was dead in the water too, so might as well sacrifice it to change colors, I guess.

58) wil: M G1 Wil B3

59) Leonard_Daniels: Build G2 Leonard_daniels

60) Phil_Coulson: Build G2 Phil_coulson

61) wil: Build R1 Wil

	Leonard_Daniels: Sorry guys, still not used to this system; was on holiday for a couple of days in the Yorkshire Dales without internet access.  Haven't been playing a game over holidays before so it slipped my mind that this would be problematic.
	wil: It happens.   Now it is me and you Phil....   Are you guys both from England?
	Phil_Coulson: Nah, not worth it. Should have ended when one player is out, shouldn't it?
	wil: ah phooey....I like playing them out...I've yet to see a three player game last....someone always drops out....but a two player game with that large a bank is awfully interesting.    I was so ready to go get his ships!


24715)
Variants: "Hard time"
Started: 2013.11.25, Ended: 2013.11.29
Participants: Broccoli_Commander (S), wil (N)
Winner: Broccoli_Commander

1) wil: Homeworld R2 B1 G3

2) Broccoli_Commander: Homeworld Y2 B3 G3
	wil: Just got lucky in a game vs SilentTitan, got TS52 last time, but he's got the best of me this time...not doing so good in my ladder battle with Aristos...

3) wil: Build G1 Wil
	Broccoli_Commander: Nice :) Well these guys are tough, really looking forward to playing them on the ladder too! 
(I've won the game against MagicJohn, just waiting for his last turn...)
	Broccoli_Commander: Have you ever played TwoShort?
	wil: Not yet...everyone tells me they've never beat two short...he lost the top because the fell asleep at the wheel and got timed out...didn't take him long to get back up there.

4) Broccoli_Commander: Build G1 Broccoli_commander

5) wil: Trade G1 R1 Wil
	Broccoli_Commander: the final boss of the game, can't wait :D
	wil: Zoltar will be a good one for you to prepare on...he hasn't been able to get by two short..   

6) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry

7) wil: Build G1 Wil

8) Broccoli_Commander: Build G1 Broccoli_commander

9) wil: Trade G1 Y1 Wil

10) Broccoli_Commander: Trade G1 B1 Broccoli_commander

11) wil: Build R1 Wil

12) Broccoli_Commander: Build B2 Broccoli_commander
	wil: Yes way to slow on thet uptake, I realized it after I did it that that was the move

13) wil: Discover R1 Wil G3 G3
	Broccoli_Commander: Well you would have needed to re-trade one of yours so you had no good choice. But this is a minor victory...

14) Broccoli_Commander: Discover B2 Broccoli_commander G1 Pea

15) wil: Build R1 Wil

16) Broccoli_Commander: Build B2 Pea
	wil: minor victories at thiss stage create huge advantagws later

17) wil: Build R2 G3

18) Broccoli_Commander: Trade B2 R2 Pea

19) wil: Build R3 G3

20) Broccoli_Commander: Build R3 Pea

21) wil: Build Y1 Wil

22) Broccoli_Commander: Trade R3 Y3 Pea
	wil: my mistakes are compounding..opening more doors for you to take advantage of...

23) wil: Sacrifice Y1 Wil
Discover R2 G3 G1 G1
	Broccoli_Commander: Go easy on yourself, you have not really made mistakes!?

24) Broccoli_Commander: Build R3 Pea
	wil: yes, exactly what i meant

25) wil: Build R3 G1

26) Broccoli_Commander: Build G2 Broccoli_commander

27) wil: Build G2 Wil

28) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Pea
Build B2 Pea
Build B3 Broccoli_commander

29) wil: Trade G3 B3 Wil

30) Broccoli_Commander: Trade B2 Y2 Pea

31) wil: Discover R1 Wil Y3 Y3

32) Broccoli_Commander: Trade B3 G3 Broccoli_commander

33) wil: Trade B3 G3 Wil

34) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G3 Broccoli_commander
Build B2 Broccoli_commander

35) wil: Build Y1 Wil

36) Broccoli_Commander: Move B1 Broccoli_commander Blueberry

37) wil: Move Y1 Wil G3

38) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build B3 Pea
Build B3 Blueberry

39) wil: Build Y1 G3

40) Broccoli_Commander: Trade B3 Y3 Blueberry

41) wil: Build Y2 G3
	wil: I've been in a game of waitng for you to make a mistake and provide an opening....   hurry up will ya?

42) Broccoli_Commander: Move Y2 Pea G3
Catastrophe G3 Y

43) wil: Build Y1 Wil
	wil: I's still waitin


44) Broccoli_Commander: Move R2 Pea Y3
	Broccoli_Commander: did that qualify?
	wil: nah...looks like you came out ahead agin...

45) wil: Move Y1 Wil G3

46) Broccoli_Commander: Attack R1 Y3

47) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 G3
Build Y2 Wil

48) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build Y2 Blueberry
Build B3 Blueberry

49) wil: Sacrifice Y2 Wil
Move Y1 G3 Blueberry
Move Y1 G3 Blueberry
Catastrophe Blueberry Y

50) Broccoli_Commander: Trade B3 Y3 Blueberry

51) wil: Build Y1 Wil

52) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build B3 Blueberry
Build Y1 Pea

53) wil: Move Y1 Wil G3

54) Broccoli_Commander: Move B3 Pea Y3

55) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 Wil
Build Y2 G3

56) Broccoli_Commander: Sacrifice Y3 Pea
Move B2 Pea Y3
Move R1 Y3 Wil
Move R2 Y3 Wil
Catastrophe Wil R

57) wil: Sacrifice Y2 G3
Move R3 G3 Pea
Move R1 G3 Pea

58) Broccoli_Commander: Sacrifice Y3 Blueberry
Move B2 Pea Y3
Move B2 Y3 Wil
Move B2 Y3 Wil

59) wil: Build R1 Pea
Catastrophe Pea R

60) Broccoli_Commander: Move B3 Y3 Wil
Catastrophe Wil B
	wil: nice


	wil: it was that R3 that was my issue...thanx for the game
	wil: it was that R3 that was my issue...thanx for the game
	Broccoli_Commander: Sure, the r3 was a key piece too

Thanks for the game


24784)
Variants: "Hard time"
Started: 2013.11.26, Ended: 2014.1.1
Participants: ts52 (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3

2) ts52: Homeworld B1 Y3 G3
	Broccoli_Commander: Greetings

3) Broccoli_Commander: Build G1 Broccoli_commander
	ts52: Salutations

4) ts52: Build G1 Ts52
	Broccoli_Commander: It's a pleasure meeting you again. Took a while to crack the dead wood in the abysses of the ladder...

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) ts52: Discover G1 Ts52 B2 Gonzo

7) Broccoli_Commander: Build G1 Broccoli_commander

8) ts52: Build G1 Ts52

9) Broccoli_Commander: Trade G1 B1 Broccoli_commander

10) ts52: Trade G1 Y1 Ts52

11) Broccoli_Commander: Build B1 Broccoli_commander

12) ts52: Build G1 Ts52

13) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce

14) ts52: Move Y1 Ts52 Gonzo

15) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Lettuce
Build B3 Lettuce
Build B3 Broccoli_commander

16) ts52: Discover G1 Gonzo B3 Grover

17) Broccoli_Commander: Sacrifice B2 Lettuce
Trade B3 G3 Broccoli_commander
Trade B3 Y3 Lettuce

18) ts52: Move G1 Ts52 Gonzo

19) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Lettuce
Build B3 Lettuce
Build B3 Broccoli_commander

20) ts52: Build G1 Ts52

21) Broccoli_Commander: Trade B3 R3 Lettuce

22) ts52: Trade G1 R1 Ts52

23) Broccoli_Commander: Move R3 Lettuce Gonzo

24) ts52: Sacrifice Y1 Gonzo
Move G1 Gonzo Grover

25) Broccoli_Commander: Build B3 Lettuce

26) ts52: Trade G1 Y1 Grover

27) Broccoli_Commander: Trade B3 R3 Broccoli_commander



24547)
Variants: "Hard time"
Started: 2013.11.26, Ended: 2013.12.1
Participants: SilentTitan (S), OnePageWars (N)
Winner: SilentTitan

1) OnePageWars: Homeworld G1 B2 Y3

2) SilentTitan: Homeworld B3 R2 G3
	OnePageWars: gl hf!

3) OnePageWars: Build Y1 Onepagewars

4) SilentTitan: Build G1 Silenttitan

5) OnePageWars: Build Y1 Onepagewars

6) SilentTitan: Trade G1 Y1 Silenttitan

7) OnePageWars: Trade Y1 B1 Onepagewars

8) SilentTitan: Build G1 Silenttitan
	OnePageWars: I can't believe I almost did that.

9) OnePageWars: Build B1 Onepagewars

10) SilentTitan: Trade G1 B1 Silenttitan
	SilentTitan: Yeah that might have been counterproductive.

11) OnePageWars: Discover B1 Onepagewars G3 Zendo

12) SilentTitan: Build B2 Silenttitan

13) OnePageWars: Build B2 Zendo
	OnePageWars: guess which pyramid game I recently got excited about?

14) SilentTitan: Trade B2 R2 Silenttitan

15) OnePageWars: Trade B2 R2 Zendo

16) SilentTitan: Build B2 Silenttitan

17) OnePageWars: Sacrifice Y3 Onepagewars
Discover B1 Zendo R1 Nada
Move B1 Nada Silenttitan
Pass
Catastrophe Silenttitan B

18) SilentTitan: Discover G3 Silenttitan Y3 Sol

19) OnePageWars: Build R1 Zendo
	OnePageWars: sry.
	SilentTitan: LOL...  No need to apologize.

20) SilentTitan: Move G3 Sol Onepagewars

21) OnePageWars: Build Y1 Onepagewars

22) SilentTitan: Sacrifice R2 Silenttitan
Attack Y1 Onepagewars North
Attack Y1 Onepagewars North

23) OnePageWars: Sacrifice R2 Zendo
Attack Y1S Onepagewars
Attack Y1S Onepagewars

24) SilentTitan: Trade G3 R3 Onepagewars
	OnePageWars: nice.
didn't know you could do that.
but it makes sense.

25) OnePageWars: Sacrifice Y1 Onepagewars
Move R1 Zendo Silenttitan
	OnePageWars: I'll take the trade :)
	OnePageWars: losing trade tech is harsh. :(

26) SilentTitan: Attack R1 Silenttitan North
	SilentTitan: You still have trade tech, I am not understanding your lament.
	SilentTitan: I'm going to guess homeworlds.

	SilentTitan: Thanks. Did you join the ladder yet?
	OnePageWars: nah.
	OnePageWars: wp. I enjoyed it. This game is so deep.


24675)
Variants: "Hard time"
Started: 2013.11.26, Ended: 2013.11.27
Participants: Marmalade (S), OnePageWars (N)
Winner: OnePageWars

1) OnePageWars: Homeworld G3 B2 Y3



24781)
Variants: "Hard time"
Started: 2013.11.27, Ended: 2013.12.2
Participants: OnePageWars (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3
	wil: Thanx for the game!   I  believe I was in a 4 way game with you when I just started learning but havn't played??   I'm still learning...I'm sure you'll teach me some more lessons!
	wil: Thanx for the game!   I  believe I was in a 4 way game with you when I just started learning but havn't played??   I'm still learning...I'm sure you'll teach me some more lessons!

2) OnePageWars: Homeworld B2 Y3 G3

3) wil: Build G1 Wil

4) OnePageWars: Build G1 Onepagewars
	OnePageWars: gl hf. :)

5) wil: Trade G1 B1 Wil

6) OnePageWars: Trade G3 Y3 Onepagewars

7) wil: Build B1 Wil
	OnePageWars: I've got a 4 player game available for joining currently. It has the sinister variant, so we'll see how that goes with the adjacent homeworld problem and stuff. :)
	wil: yes, I learned I so disliked the adjacent...I've only got involved with threes since.   and have run into a couple of binaries that were short uni's and that drove me crazy...but if you don't fill it...maybe I'll play if you don't get anyone soon....sinister means you only attack left??

8) OnePageWars: Build G1 Onepagewars
	OnePageWars: yeah. The more I think about it the more I'm tempted to cancel the game and create one that's identical except for 3 players. Acutally, I'm going to go do that now if no-one has joined.
	OnePageWars: My intent was to set it up for three players with one of them being you if you wanted and the other being random? Is that what was created or was a 1v1 challenge inadvertently created?

9) wil: Build G1 Wil

10) OnePageWars: Build G2 Onepagewars

11) wil: Trade G1 Y1 Wil

12) OnePageWars: Trade G1 R1 Onepagewars

13) wil: Discover B1 Wil G3 G3

14) OnePageWars: Discover Y3 Onepagewars G1 Starcraft2

15) wil: Build B2 Wil

16) OnePageWars: Build R1 Onepagewars
	wil: Ok now...movin your big gun outta your homeworld??  like your goalie comin out of the goal....scary part!

17) wil: Build Y1 Wil
	OnePageWars: It's only a gun if there's a red with it. :) I'm a peaceful civilization before I start attacking. :)
	OnePageWars: PS - I know that you know the rules of the game, my previous comment was not meant in any way to imply ignorance on your part (which would be an incorrect implication, btw) but rather as a lighthearted joke.
	OnePageWars: I hope I didn't give the wrong impression. Sorry if I did.
	wil: no worries...

18) OnePageWars: Move R1 Onepagewars Starcraft2
	wil: my concern was not for me...but for your open goal.
	wil: I also accepted that challenge game...

19) wil: Trade B2 R2 Wil

20) OnePageWars: Trade G2 B2 Onepagewars

21) wil: Build B2 G3

22) OnePageWars: Build B3 Onepagewars

23) wil: Sacrifice Y1 Wil
Discover B1 G3 Y1 Y1

24) OnePageWars: Move B2 Onepagewars Y1

25) wil: Sacrifice G3 Wil
Build B3 G3
Build B3 Y1
Build Y1 Wil
	OnePageWars: your naming conventions are messing with me, lol.
	wil: I am in a three way game where everyone decided to take on my nomenclature....it is drving me CRAZY

26) OnePageWars: Build R1 Onepagewars
	OnePageWars: hey, you took trade tech. :( well, at least I still have trade tech ships.

27) wil: Trade B3 R3 Y1

28) OnePageWars: Build R2 Starcraft2
	OnePageWars: ok, I'm getting scared now.

29) wil: Trade B3 G3 G3
	OnePageWars: and yes, I am aware of the possibility of a r3 sac attack on my homeworld.

30) OnePageWars: Move R2 Starcraft2 G3

31) wil: S R2 Wil
Attack R2 G3
Attack B2 Y1

32) OnePageWars: Build Y2 Starcraft2
	OnePageWars: I'm thinking I should resign this position. I don't see much in the way of not losing, lol.
	wil: You've got a point...I intend on growing big blues and swapping them out for big guns of all colors until I control the Universe bwwahhhaaahhaaa.....but that being said...I've stayed involved under dire straights before, because powere does go to ones head....and the lesser can often tempt the greater and take advantage of their size.  One or two catastrophes and their is a completely new game...  your choice though
	OnePageWars: I think I'll keep going, then, if only to learn how you close out the game so that I can improve. :)

33) wil: Sacrifice G3 G3
Build B3 Wil
Build B3 G3
Build Y2 Wil
	wil: that is what I did....lost dozens of games....and way too many of them the same way....but after a while you begin to see it coming and learn how to defend against it.  look up bluebird and doomsday they are often used.

34) OnePageWars: Sacrifice Y3 Starcraft2
Move B3 Onepagewars Starcraft2
Move B3 Starcraft2 G3
Move B3 G3 Wil
Catastrophe Wil B
	OnePageWars: I've read the strategy article at icehousegames.org (not com); I think I just need experience right now, lol.

35) wil: Sacrifice Y2 Wil
Move B3 G3 Y1
Move B3 Y1 Onepagewars

36) OnePageWars: Build R2 Starcraft2
	wil: this is the risk of leaving your homeworld without a big gun...   Once you did it, I began setting up for this opportunity.... I laid a trap that I hoped you could not resist in blowing up my homeworld...that system was toxic...we were leaving it anyway...since you left, we like what you've done with the place....we think we'll take it.
	OnePageWars: interesting; I think you had me beat just in the economy.

37) wil: Sacrifice R3 Y1
Attack R1 Onepagewars
Attack G1 Onepagewars
Attack R1 Onepagewars
	wil: to me the game is a series of tipping points, I can't always identify them...which move caused it to tip in who's favor....to me the tip was you moving your gun out, it changed my focus...there were a number of moves better than that one at that juncture...if you had a specific intent, it didn't play out. ....observation not condemnation...i am learning as well.
	OnePageWars: No offense taken. I appreciate the constructive criticism. We're both learning. :)



24788)
Variants: "Hard time"
Started: 2013.11.27, Ended: 2013.12.31
Participants: wil (S), MagicJohn (N)
Winner: wil

1) MagicJohn: Homeworld R1 B2 G3

2) wil: Homeworld R3 B2 G3
	MagicJohn: Outpost established in new star system. We extend greetings to all life forms in the quadrant.

3) MagicJohn: Build G1 Magicjohn

4) wil: Build G1 Wil

5) MagicJohn: Trade G1 Y1 Magicjohn
	wil: thankful to be in and aware of the universe this fine day

6) wil: Trade G1 Y1 Wil

7) MagicJohn: Build G1 Magicjohn

8) wil: Build G1 Wil

9) MagicJohn: Trade G1 B1 Magicjohn

10) wil: Trade G1 B1 Wil

11) MagicJohn: Build G1 Magicjohn

12) wil: Build G1 Wil

13) MagicJohn: Discover Y1 Magicjohn G3 Abra

14) wil: Trade G1 R1 Wil

15) MagicJohn: Build G1 Magicjohn

16) wil: Build R1 Wil

17) MagicJohn: Trade G3 R3 Magicjohn

18) wil: Discover R1 Wil G1 G1

19) MagicJohn: Build R2 Magicjohn

20) wil: Build G2 Wil

21) MagicJohn: Build G2 Magicjohn

22) wil: Discover G2 Wil B1 B1

23) MagicJohn: Trade R2 Y2 Magicjohn

24) wil: Build G2 Wil

25) MagicJohn: Move G2 Magicjohn Abra

26) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 B1
Build B2 Wil

27) MagicJohn: Build B3 Magicjohn

28) wil: Move B2 Wil G1

29) MagicJohn: Move B1 Magicjohn Abra

30) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 G1
Build R2 G1

31) MagicJohn: Build B3 Abra

32) wil: Build B3 G1

33) MagicJohn: Discover G2 Abra Y1 Kadabra

34) wil: Sacrifice B2 G1
Trade R2 Y2 G1
Trade G2 Y2 B1

	wil: now while I think I was doing ok...I hate winning that way.
	MagicJohn: Sorry, my bad. My wife has been ill and our pat dog just developed some issues.. I shouldn't have left my move until the last minute. You were indeed winning so I took too long to analyze the board.  Congrats, MJ
	MagicJohn: .... make that "pet" dog.....
	wil: When things are better, I'd love to play again, feel free to challenge me.  I am raising a glass to a new and improved year for you and yours!!
	MagicJohn: Thanks! (Better make that two glasses....) Hope the new year finds you well and is happy and productive! 


24807)
Started: 2013.11.28, Ended: 2013.11.29
Participants: Ultan_the_Blind (S), Bangle_Tiger (N)
Winner: Ultan_the_Blind

1) Bangle_Tiger: Homeworld R3 B2 G3

2) Ultan_the_Blind: Homeworld Y2 B1 G3

3) Bangle_Tiger: Build G1 Bangle_tiger

4) Ultan_the_Blind: Build G1 Ultan_the_blind

5) Bangle_Tiger: Trade G1 Y1 Bangle_tiger

6) Ultan_the_Blind: Discover G1 Ultan_the_blind Y3 Tatooine

7) Bangle_Tiger: Build G1 Bangle_tiger

8) Ultan_the_Blind: Build G1 Tatooine

9) Bangle_Tiger: Discover G1 Bangle_tiger R1 Dantooine

10) Ultan_the_Blind: Discover G1 Tatooine B2 Hoth

11) Bangle_Tiger: Build Y1 Bangle_tiger

12) Ultan_the_Blind: Build G2 Hoth

13) Bangle_Tiger: Build G2 Bangle_tiger

14) Ultan_the_Blind: Trade G1 Y1 Hoth

15) Bangle_Tiger: Move G2 Bangle_tiger Dantooine

16) Ultan_the_Blind: Build Y2 Hoth

17) Bangle_Tiger: Move Y1 Bangle_tiger Dantooine

18) Ultan_the_Blind: Trade Y2 R2 Hoth

19) Bangle_Tiger: Build Y2 Bangle_tiger

20) Ultan_the_Blind: Build G1 Hoth

21) Bangle_Tiger: Move G2 Dantooine Tatooine

22) Ultan_the_Blind: Discover G1 Hoth B1 Fest

23) Bangle_Tiger: Move Y2 Bangle_tiger Dantooine

24) Ultan_the_Blind: Move G1 Tatooine Ultan_the_blind

25) Bangle_Tiger: Move Y2 Dantooine Tatooine

26) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind
Build G2 Hoth
Build G3 Ultan_the_blind
Build G3 Fest

27) Bangle_Tiger: Move G1 Dantooine Tatooine

28) Ultan_the_Blind: Trade G1 R1 Ultan_the_blind

29) Bangle_Tiger: Sacrifice Y2 Tatooine
Move G1 Tatooine Fest
Move G2 Tatooine Fest
Catastrophe Fest Green

30) Ultan_the_Blind: Build Y2 Hoth

31) Bangle_Tiger: Sacrifice G3 Bangle_tiger
Build Y2 Dantooine
Build Y3 Bangle_tiger
Build Y3 Bangle_tiger

32) Ultan_the_Blind: Sacrifice Y2 Hoth
Discover Y1 Hoth B1 Festus
Move Y1 Festus Bangle_tiger
Catastrophe Bangle_tiger Y



24800)
Variants: "No undo, Sinister"
Started: 2013.11.29, Ended: 2013.12.27
Participants: Bangle_Tiger (S), OnePageWars (N), wil (E)
Winner: wil

1) OnePageWars: Homeworld R2 B1 G3

2) wil: Homeworld Y3 G2 B3
	OnePageWars: who is left of who?

3) Bangle_Tiger: Homeworld Y1 B2 G3
	Bangle_Tiger: I'm guessing its clockwise?

4) OnePageWars: Build G1 Onepagewars
	wil: so wil attacks only bangle, bangle only one, and one only wil?
	OnePageWars: makes sense to me.
	OnePageWars: If I elim bangle, does that make wil win, or does his target change to me?

5) wil: Build B1 Wil
	wil: since it is always attack left....I am would now attack the new the one who's left.
	wil: double entendre pun intendred

6) Bangle_Tiger: Build G1 Bangle_tiger

7) OnePageWars: Trade G1 B1 Onepagewars
	Bangle_Tiger: Btw this is my second time playing homeworlds so tips are welcome :)
	wil: tip 1....play more...lose a lot...you learn by getting wupped in various ways... look up bluebird, catastrophe, doomsday machine, teleport...

8) wil: Discover B1 Wil G1 G1

9) Bangle_Tiger: Build G1 Bangle_tiger

10) OnePageWars: Build B1 Onepagewars

11) wil: Build B2 G1

12) Bangle_Tiger: Trade G1 R1 Bangle_tiger

13) OnePageWars: Trade B1 Y1 Onepagewars

14) wil: Build B1 G1
	wil: I just noticed you two created short universes...

15) Bangle_Tiger: Build G1 Bangle_tiger
	OnePageWars: yep. :) very interesting topography.

16) OnePageWars: Build Y1 Onepagewars
	Bangle_Tiger: 3 player seems to have significantly more complexity.

17) wil: Trade B1 Y1 G1

18) wil: Build Y2 G1
	wil: this is how these typically end....

19) OnePageWars: Trade Y1 R1 Onepagewars

20) wil: Trade B2 R2 G1
	wil: we may as well finish the game without him and with a large bank!

21) OnePageWars: Build R1 Onepagewars

22) wil: Sacrifice Y2 G1
Discover R2 G1 Y3 Y3
Move R2 Y3 Onepagewars
Catastrophe Onepagewars R

	wil: did I fall into some kinda trap?
	wil: Everything OK?  I see you dropped out of the other game?
	OnePageWars: oh, yeah. Kind-of got a little sick, but I'm fine now.
	OnePageWars: good game, wp.
	OnePageWars: good game, wp.
	OnePageWars: oops, sry.


24820)
Started: 2013.11.29, Ended: 2013.12.7
Participants: Ultan_the_Blind (S), Bangle_Tiger (N)
Winner: Ultan_the_Blind

1) Bangle_Tiger: Homeworld B2 Y1 G3

2) Ultan_the_Blind: Homeworld Y3 G1 B3

3) Bangle_Tiger: Build G1 Bangle_tiger

4) Ultan_the_Blind: Build B1 Ultan_the_blind

5) Bangle_Tiger: Build G1 Bangle_tiger

6) Ultan_the_Blind: Trade B3 G3 Ultan_the_blind

7) Bangle_Tiger: Discover G1 Bangle_tiger B3 Coruscant
	Ultan_the_Blind: Gah, only move #2 and you are already forcing my hand...

8) Ultan_the_Blind: Build G2 Ultan_the_blind

9) Bangle_Tiger: Build G2 Coruscant

10) Ultan_the_Blind: Discover G2 Ultan_the_blind Y2 Sullust

11) Bangle_Tiger: Trade G2 R2 Coruscant

12) Ultan_the_Blind: Discover G2 Sullust R1 Kessel

13) Bangle_Tiger: Build G2 Coruscant

14) Ultan_the_Blind: Build B1 Ultan_the_blind
	Bangle_Tiger: Wouldn't have it any other way.

15) Bangle_Tiger: Sacrifice G3 Bangle_tiger
Build G2 Bangle_tiger
Build G3 Bangle_tiger
Build G3 Coruscant

16) Ultan_the_Blind: Trade B1 Y1 Ultan_the_blind

17) Bangle_Tiger: Trade G2 Y2 Coruscant

18) Ultan_the_Blind: Sacrifice Y1 Ultan_the_blind
Discover G2 Kessel Y3 Alderaan

19) Bangle_Tiger: Trade G2 R2 Bangle_tiger

20) Ultan_the_Blind: Trade G3 B3 Ultan_the_blind

21) Bangle_Tiger: Discover G3 Coruscant R2 Sullest

22) Ultan_the_Blind: Trade B1 R1 Ultan_the_blind

23) Bangle_Tiger: Build Y1 Coruscant

24) Ultan_the_Blind: Build B1 Ultan_the_blind

25) Bangle_Tiger: Build G2 Sullest

26) Ultan_the_Blind: Build G2 Alderaan

27) Bangle_Tiger: Sacrifice G3 Sullest
Build G3 Sullest
Build G3 Coruscant
Build R1 Coruscant

28) Ultan_the_Blind: Move G2 Alderaan Bangle_tiger

29) Bangle_Tiger: Discover G1 Bangle_tiger Y3 Hoth
	Ultan_the_Blind: Welp, this is not looking good!

30) Ultan_the_Blind: Sacrifice G2 Bangle_tiger
Build G2 Alderaan
Build B1 Ultan_the_blind

31) Bangle_Tiger: Sacrifice G3 Coruscant
Build G3 Coruscant
Build R1 Bangle_tiger
Build R3 Bangle_tiger
	Bangle_Tiger: Nice try! Now get outta here before I eat you.
	Bangle_Tiger: And yes, I chose Hoth because I'm freezing you out.
	Ultan_the_Blind: but but but... Hoth is blue and white because of ICE and SNOW!

32) Ultan_the_Blind: Sacrifice B1 Ultan_the_blind
Trade G2 Y2 Alderaan

33) Bangle_Tiger: Sacrifice Y2 Coruscant
Move G3 Sullest Ultan_the_blind
Move G2 Sullest Ultan_the_blind
	Bangle_Tiger: Well there's no white color piece in this game--Yellow is the closest in tone. What happens when you combine yellow and blue? You get green!!
	Ultan_the_Blind: Such greed. Much anger. So win.

34) Ultan_the_Blind: Attack G3N Ultan_the_blind

35) Bangle_Tiger: Build G2 Ultan_the_blind
Catastrophe Ultan_the_blind G
	Bangle_Tiger: Like this?

36) Ultan_the_Blind: Move R1 Ultan_the_blind Bangle_tiger
Catastrophe Bangle_tiger R

37) Bangle_Tiger: Move R2 Coruscant Bangle_tiger
	Ultan_the_Blind: I will not go down without a fight!

38) Ultan_the_Blind: Trade B3 G3 Ultan_the_blind
	Bangle_Tiger: Well played. I forgot that blowing up half a homeworld changed the hyperspace lanes lol

39) Bangle_Tiger: Move R2 Bangle_tiger Ultan_the_blind

40) Ultan_the_Blind: Sacrifice B1 Ultan_the_blind
Trade Y2 R2 Alderaan

41) Bangle_Tiger: Move G3 Coruscant Bangle_tiger
	Bangle_Tiger: Lets try a new approach

42) Ultan_the_Blind: Build R1 Alderaan

43) Bangle_Tiger: Trade G3 R3 Bangle_tiger

44) Ultan_the_Blind: Sacrifice R1 Alderaan
Attack R2N Ultan_the_blind

45) Bangle_Tiger: Build G1 Hoth

46) Ultan_the_Blind: Discover R2 Alderaan Y2 Geonosis
	Bangle_Tiger: Ah, didn't know that's how that worked.
	Bangle_Tiger: Well there goes my advantage.

47) Bangle_Tiger: Move R3 Bangle_tiger Alderaan
	Ultan_the_Blind: Heh, I kinda guessed that might have been the case. You actually could have won by now if you had. However, if you read careful you WOULD notice that was legal from the wording of the rules and my explanation...
	Ultan_the_Blind: Don't count yourself out just yet. You still have quite a strong position.

48) Ultan_the_Blind: Discover G2 Alderaan Y2 Tatooine

49) Bangle_Tiger: Build G2 Coruscant
	Bangle_Tiger: Yeah, I just wasn't paying attention.

50) Ultan_the_Blind: Build G2 Ultan_the_blind

51) Bangle_Tiger: Build G3 Bangle_tiger

52) Ultan_the_Blind: Discover G2 Tatooine B3 Fondor

53) Bangle_Tiger: Sacrifice G3 Bangle_tiger
Build G3 Bangle_tiger
Build Y1 Coruscant
Build Y2 Coruscant

54) Ultan_the_Blind: Move R2 Geonosis Hoth

55) Bangle_Tiger: Discover R3 Alderaan Y2 Lando

56) Ultan_the_Blind: Attack G1N Hoth

57) Bangle_Tiger: Sacrifice Y2 Coruscant
Move Y1 Coruscant Lando
Move Y1 Coruscant Lando

58) Ultan_the_Blind: Move G3 Ultan_the_blind Bangle_tiger

59) Bangle_Tiger: Trade G3 R3 Bangle_tiger

60) Ultan_the_Blind: Sacrifice R2 Hoth
Attack R3N Bangle_tiger
Attack G3N Bangle_tiger
	Ultan_the_Blind: I have stayed the wrath of my mighty fleet long enough. No more. Good luck, mine honorable foe..


	Ultan_the_Blind: Brave but foolish...
	Ultan_the_Blind: Well Played though. You are learning.
	Bangle_Tiger: ARGH WTF RED. Never see that.


24799)
Variants: "Hard time"
Started: 2013.12.2, Ended: 2013.12.4
Participants: wil (S), OnePageWars (N)
Winner: wil

1) OnePageWars: Homeworld R2 B1 G3
	OnePageWars: hi again. :)

2) wil: Homeworld B3 Y1 G3
	wil: we's starting fresh....you play a lot of games....I only play this one(here...I play a lot in 3d)...which are your favorites that I shoiuld expand my horizons on?  

3) OnePageWars: Build G1 Onepagewars
	OnePageWars: most of the games I have going on I'm just trying out. Mirador is quick but enjoyable, but I prefer binary homeworlds.

4) wil: Build G1 Wil
	wil: I play a variety of card games and board games, i really think homeworlds is an incredible game of intergalactic chess....it seems to contain all the complexity of chess with some interesting twist as pieces never leave the realm of the game...

5) OnePageWars: Trade G1 Y1 Onepagewars
	OnePageWars: Yeah, it's undoubtedly similar to chess, but I am fain to question if it has anywhere near the strategic depth. I could just be selling it short, though.

Have you ever played shogi?

6) wil: Discover G1 Wil B2 B2
	OnePageWars: are there any other viable opening moves besides building a pawn on turn 1 and trading it for a different color turn 2? I guess you could trade the 3 point on turn 2, but other than that?

7) OnePageWars: Build G1 Onepagewars

8) wil: Build G1 Wil

9) OnePageWars: Discover G1 Onepagewars B3 Miranda

10) wil: Build G2 B2

11) OnePageWars: Build G2 Miranda

12) wil: Sacrifice G3 Wil
Build G2 B2
Build G3 Wil
Build G3 Wil

13) OnePageWars: Trade G2 Y2 Miranda

14) wil: Trade G1 R1 Wil
	OnePageWars: risky factory play. :)

15) OnePageWars: Build Y1 Miranda
	wil: I'll say....open for two catastrophies....  

16) wil: Trade G2 Y2 B2

17) OnePageWars: Trade Y1 R1 Miranda

18) wil: Trade G2 R2 B2
	OnePageWars: tense game.

19) OnePageWars: Build R1 Miranda

20) wil: Build R2 Wil

21) OnePageWars: Trade R1 B1 Miranda
	wil: missed the conversation...I have not played shop...The openings are always slow...build trade build trade, like a farmer or a small manufacturer trying to get ahead...

22) wil: Discover G3 Wil Y2 Y2

23) OnePageWars: Build G1 Onepagewars

24) wil: Move G3 Y2 Miranda

25) OnePageWars: Build G2 Miranda

26) wil: Trade G3 R3 Miranda

27) OnePageWars: Sacrifice G3 Onepagewars
Build G2 Onepagewars
Build G2 Onepagewars
Build G3 Miranda
	wil: it was the right try....

28) wil: Sacrifice Y2 B2
Move R3 Miranda Onepagewars
Move R2 Wil B2
	wil: should've recreated the g3 in your own system...I am there first so I take it...you'll have to grown the other one...three wasted moves and all your greens go back into the bank and I begin owning the system anyway...of course I will lose my G3 but you will have no big gun....oops it is worse...my move is to abandon Miranda...let you have her...and just move my R3 into your homeworld and take over...I'll give you time to change if you wish....
	OnePageWars: no, go ahead. :) I appreciate the offer, but I don't think that taking back my move would do anything to improve my play.

29) OnePageWars: Build Y1 Miranda

30) wil: Sacrifice R2 B2
Attack Y1 Onepagewars
Attack G2 Onepagewars

31) OnePageWars: Sacrifice G3 Miranda
Build G3 Miranda
Build Y2 Miranda
Build R1 Miranda
	wil: You'v got the right angle...I think I am just one step ahead of you...

32) wil: Sacrifice R2 B2
Attack G1 Onepagewars
Attack G2 Onepagewars
	wil: carmen she is a growing colony, but her homeworld has been taken over...
	OnePageWars: wp. You're good at this game. :)
	wil: I am learning... I've been beat by the best...(well not the best yet...twoshort holds that title online and I've yet to play him) But Broccoli Commander, TS52, SilentTitan, Zoltar, all regularly beat me and I am learning from them all by the way they move in for the kill...I usually see it too late, and am only now (after dozens of games) seeing what that tipping point is a the middle of the game that starts to shift the power...usually they have won the game essentially long before I see it...it is that one move that takes advantage in the first 8 moves...and then whether they add up, or multiply after that...
	OnePageWars: I guess strength is relative. :)
	wil: Yes, most definitely...defense of your homeworld is imperative.  Did you see/read 'enders game'?  when the homeworld is destroyed, the queen is dead and all is lost...   A key for my learning (beyond the various attacks and tactics) is begin with the end in mind...always be looking as to how to take the homeworld...either take out the stars or take it over..
	OnePageWars: I've heard of ender's game. Sounds interesting. Billboard art reminds me of Pacific Rim, but I have no idea if it's even remotely similar. Is it? without spoilers, if you please. :)
	wil: It is aliens vs earthlings...I had only been recommended in the past.  I don't know of Pacific Rim...
	OnePageWars: Pacific Rim is aliens vs earthlings. Well, regardless, I'll probably have to check out Ender's game eventually unless I am presented with really good reasons as to why it would be a waste of 1.5 hours of my life, lol.



24836)
Variants: "Hard time"
Started: 2013.12.3, Ended: 2013.12.4
Participants: OnePageWars (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) OnePageWars: Homeworld B1 R2 G3
	wil: he is ready to go agin...nice...I like playin...I try to stay in 4-5 games at a time...and some 3d world games along the way as well.

3) wil: Build G1 Wil
	OnePageWars: First microverse game. :)
	wil: oh my....i just got into another of these not to long ago...

4) OnePageWars: Build G1 Onepagewars

5) wil: Trade G1 Y1 Wil

6) OnePageWars: Trade G1 Y1 Onepagewars

7) wil: Build G1 Wil

8) OnePageWars: Build G1 Onepagewars

9) wil: Trade G1 R1 Wil
	OnePageWars: I feel like this must be the equivalent of the giuco piano in chess.
	wil: it is an interesting dance of chicken...

10) OnePageWars: Trade G1 B1 Onepagewars

11) wil: Build G1 Wil
	OnePageWars: and thus do the builds diverge. :)

12) OnePageWars: Build G1 Onepagewars

13) wil: Build R1 Wil

14) OnePageWars: Build B1 Onepagewars

15) wil: Discover R1 Wil G3 G3

16) OnePageWars: Discover B1 Onepagewars R3 Ilikesdg

17) wil: Build R2 Wil

18) OnePageWars: Build B2 Onepagewars

19) wil: Move R2 Wil Ilikesdg

20) OnePageWars: Build Y1 Onepagewars
	OnePageWars: I think you're edging me out here. Won't be long before my empire falls to pieces.

21) wil: Attack B1 Ilikesdg

22) OnePageWars: Trade B2 R2 Onepagewars
	wil: I could have just swapped and built one, could've moved out and formed my own starsystem, so I don't gain anything by taking yours...but you lose one...which makes the effort of bullying worthwhile...it is a game of increments....capturing space...

23) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 G3
Build Y2 Wil

24) OnePageWars: Build Y2 Onepagewars

25) wil: Sacrifice Y2 Wil
Move R1 G3 Onepagewars
Move R2 Ilikesdg Onepagewars
Catastrophe Onepagewars R

26) OnePageWars: Trade Y2 R2 Onepagewars
	wil: typically there is no reason to wipe out half a starsystem and less you can see clear to wiping out the other half and winning...however in this case I am also voiding you of red, making you start over in that economy...that made my decision.

27) wil: Trade R3 G3 Wil

28) OnePageWars: Build Y2 Onepagewars

29) wil: Build Y2 Wil

30) OnePageWars: Build R1 Onepagewars

31) wil: Move Y2 Wil Ilikesdg

32) OnePageWars: Discover Y1 Onepagewars G2 Ireallylikesdg
	wil: 2 moves to mate.

33) wil: Sacrifice G3 Wil
Build Y2 Ilikesdg
Build Y3 Wil
Build B2 Ilikesdg
	OnePageWars: I believe you. :)

34) OnePageWars: Build Y3 Ireallylikesdg
	wil: I was wrong...did you see it coming?  you can still avoid it....but me in your position would be blinded by greed typically and not see that that my doom was around the corner.

35) wil: Sacrifice Y2 Ilikesdg
Move B1 Ilikesdg Onepagewars
Move B2 Ilikesdg Onepagewars
Catastrophe Onepagewars B
	wil: greed won out...the same blind spot I often have...this you need to conquer
	wil: the pisser is you are going to be beating me soon!
	wil: I did present a dodge...the appearance that I was trying to take all those yellows before you could get to them...but all I really wanted was that one little blue...if I would have done that by itself it would have been more obvious my motive.
	OnePageWars: nah. Maybe eventually. But then again, maybe not. And I would have to get pretty lucky to beat you in a 'soon' time scedule.
	wil: You'll be surprised... I get a win in every now and again amongst those better...
	OnePageWars: Yeah, I might get lucky.



24792)
Variants: "Hard time"
Started: 2013.12.4, Ended: 2013.12.15
Participants: wil (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) wil: Homeworld B3 Y2 G3
	SilentTitan: Welcome back.

3) SilentTitan: Build G1 Silenttitan

4) wil: Build G1 Wil

5) SilentTitan: Trade G1 R1 Silenttitan
	wil: time to keep practicin

6) wil: Trade G1 R1 Wil

7) SilentTitan: Build R2 Silenttitan

8) wil: Build R2 Wil

9) SilentTitan: Trade R1 Y1 Silenttitan

10) wil: Discover R2 Wil G1 G1

11) SilentTitan: Build G1 Silenttitan

12) wil: Build G1 Wil

13) SilentTitan: Build Y1 Silenttitan

14) wil: B G2 Wil

15) SilentTitan: Discover G1 Silenttitan R3 Sol

16) wil: Trade G2 Y2 Wil

17) SilentTitan: Move Y1 Silenttitan Sol

18) wil: Build G2 Wil

19) SilentTitan: Build G2 Silenttitan

20) wil: Trade G1 B1 Wil

21) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Sol
Build Y3 Silenttitan

22) wil: Move Y2 Wil G1

23) SilentTitan: Build Y3 Silenttitan

24) wil: Build Y3 G1

25) SilentTitan: Sacrifice Y2 Sol
Move Y1 Sol G1
Move Y1 Sol G1
Catastrophe G1 Yellow

26) wil: Trade G2 Y2 Wil
	wil: that was a learning curve...will he do it...after the fact I thought sure..over course, to have two queens to my one, why not lose three to take out two...

27) SilentTitan: Move Y3 Silenttitan Sol
	SilentTitan: Well sort of..... The measure for me is the total pip count not the ship count.   I lost 4 pips to take out 5 pips from you.  Additionally I cleared you of yellow. Which is always an advantage. Now the turn you built the y3 you had a chance to take my 4 pips in yellow for only 2 pips.  I'd have taken that over building the y3.

28) wil: Move Y2 Wil G1
	wil: thanx
	wil: thanx

29) SilentTitan: Trade Y1 B1 Silenttitan

30) wil: Build Y1 G1

31) SilentTitan: Move B1 Silenttitan Sol

32) wil: Move B1 Wil G1

33) SilentTitan: Build Y1 Sol

34) wil: Discover Y1 G1 G3 G3

35) SilentTitan: Move Y3 Sol G1

36) wil: Build Y1 G1

37) SilentTitan: Sacrifice R2 Silenttitan
Attack R2 G1 South
Attack B1 G1 South

38) wil: Build Y2 G1
Catastrophe G1 Y

39) SilentTitan: Build B1 G1

40) wil: Build G1 Wil
	wil: that was a nice recovery...  my only chance is for you to make some errors...that ain't gonna happen if you keep playing like that!   Was that a Y formation?  if i do x you do y and if i do y you do x?
	SilentTitan: Not really.  More like I had an opportunity to mess with you so I took it.  Then you decided to make it about the battleship. So rather than run away I took what I could.  I thought you might take the r2 back with a sac on your r1. If you had done that I would have traded the y3 for a g3.

41) SilentTitan: Sacrifice G2 Silenttitan
Build B2 Sol
Build B2 G1

42) wil: Discover G1 Wil R1 R1

43) SilentTitan: Build B3 Sol

44) wil: Build R2 Wil

45) SilentTitan: Trade B3 G3 Sol

46) wil: Build G2 Wil
	wil: yes it is over for me..

47) SilentTitan: Build B3 Sol

48) wil: Trade G2 Y2 Wil

49) SilentTitan: Trade B2 Y2 G1

50) wil: Build Y1 G3

51) SilentTitan: Move R2 G1 G3

52) wil: Sacrifice Y1 G3
Move Y1 G3 Silenttitan

53) SilentTitan: Attack Y1 Silenttitan South

54) wil: Build G2 Wil

55) SilentTitan: Trade B3 Y3 Sol

56) wil: Trade R2 B2 Wil

57) SilentTitan: Sacrifice Y3 Sol
Move Y2 G1 Wil
Move Y1 Sol G1
Move Y1 G1 Wil
Catastrophe Wil Yellow

58) wil: Trade B2 Y2 Wil

59) SilentTitan: Trade G3 Y3 Sol

60) wil: Build R2 Wil

61) SilentTitan: Sacrifice Y3 Sol
Move B1 Sol G1
Move B1 G1 Wil
Move B1 G1 Wil

62) wil: Sacrifice R2 Wil
Attack B1 Wil
Attack B1 Wil

63) SilentTitan: Sacrifice Y1 Silenttitan
Move B1 G1 Wil
Catastrophe Wil Blue

	wil: You'll have to all but abandon your civilization to take out mine....now you don't wanna do that you could build and decimate me and be ready for all intruders...
	SilentTitan: Yeah.. I'll take it.
	wil: See how you are!   thanx again for the game!!


24853)
Variants: "Hard time"
Started: 2013.12.4, Ended: 2013.12.11
Participants: SilentTitan (S), OnePageWars (N)
Winner: SilentTitan

1) OnePageWars: Homeworld B1 R2 G3 Yes

2) SilentTitan: Homeworld R2 B3 G3
	OnePageWars: hi there! gl hf!

3) OnePageWars: Build G1 Onepagewars
	SilentTitan: And to you as well.

4) SilentTitan: Build G1 Silenttitan

5) OnePageWars: Trade G1 Y1 Onepagewars

6) SilentTitan: Trade G1 Y1 Silenttitan

7) OnePageWars: Build G1 Onepagewars

8) SilentTitan: Build G1 Silenttitan



24845)
Variants: "Hard time"
Started: 2013.12.4, Ended: 2014.1.6
Participants: wil (S), OnePageWars (N)
Winner: wil

1) OnePageWars: Homeworld R2 B1 G3

2) wil: Homeworld Y3 G1 B3

3) OnePageWars: Build G1 Onepagewars
	OnePageWars: gl hf!

4) wil: Build B1 Wil

5) OnePageWars: Trade G1 R1 Onepagewars
	wil: you oughta join the ladder...it takes a few months to work your way up...but then it is more gaming

6) wil: Build B1 Wil
	OnePageWars: I might. I've joined a few times and left just as many.
	wil: I thought I'd never get through the dead wood...it took me six months to get to 13...but got a few games in the ladder along the way...a lot of timing out and pushing folks who should be booted down behind me and gaining one slot at a time...

7) OnePageWars: Build R1 Onepagewars

8) wil: Discover B1 Wil G2 G2

9) OnePageWars: Trade R1 Y1 Onepagewars
	wil: the rule here is when you get a gun, I should get a gun (red) but currently you haven't got any transportation system...so I've got a minute..as long as I don't forget.

10) wil: Build B2 G2

11) OnePageWars: Build Y1 Onepagewars

12) wil: Trade B2 R2 G2

13) OnePageWars: Build G1 Onepagewars

14) wil: Build B2 G2

15) OnePageWars: Discover Y1 Onepagewars G3 Ilikedogs

16) wil: Trade B2 Y2 G2
	OnePageWars: I'm a dog person. :)

17) OnePageWars: Build Y1 Onepagewars
	OnePageWars: I think my main problem (besides falling behind in the tech race) was no having any size 2 ships to trade. Well, live and learn.
	OnePageWars: Not, not no. Not not not no. Not no, but not. I mean, it should be not. Not that it shouldn't exist. Just that it should exist as not. I give up.

18) wil: Build Y2 G2
	wil: Yes, it is imperative to attempt to keep up on each economy....get in the ones, as the twos will disappear and then the same problem may occur with threes...

19) OnePageWars: Build Y2 Ilikedogs
	OnePageWars: Do the ship sizes tend to increase in importance throughout the game and peak in the late-game? Because so long as you have at least one size three in every system you care about, they only thing the sizes are good for are sacrifices?

20) wil: Discover Y2 G2 B3 B3
	OnePageWars: y2s when you have your natural expansion are quite scary.

21) OnePageWars: Discover Y1 Ilikedogs G2 Idislikecats

22) wil: Build B2 G2
	OnePageWars: I try to use a distinct nomenclature for each game of Binary Homeworlds I play.

23) OnePageWars: Build Y3 Ilikedogs

24) wil: Build Y3 G2

25) OnePageWars: Trade G3 B3 Onepagewars

26) wil: Move B2 G2 B3

27) OnePageWars: Move B3 Onepagewars Ilikedogs
	wil: I thought we still had a game goin....i seez we gots another started.

28) wil: Trade B2 G2 B3
	OnePageWars: Yes, Binary Homeworlds and Archimedes are my two current fascinations on SDG.

29) OnePageWars: Build B2 Ilikedogs

30) wil: Trade B3 R3 Wil

31) OnePageWars: Move R1 Onepagewars Ilikedogs

32) wil: Move G2 B3 Onepagewars

33) OnePageWars: Move B3 Ilikedogs Onepagewars

34) wil: Build G1 Onepagewars

35) OnePageWars: Attack G2S Onepagewars

36) wil: Build G3 Onepagewars
Catastrophe Onepagewars G

37) OnePageWars: Trade Y3 R3 Ilikedogs

38) wil: Trade Y3 G3 G2
	wil: oh I did that backasswards...
	wil: oh I did that backasswards...

39) OnePageWars: Build Y3 Ilikedogs

40) wil: Sacrifice G3 G2
Build Y3 B3
Build R1 G2
Build B2 Wil
	OnePageWars: This has been a quite, arguably, epic game.

41) OnePageWars: Move R3 Ilikedogs G2

42) wil: Build R1 G2
Catastrophe G2 R

43) OnePageWars: Build R1 Ilikedogs

44) wil: Build R1 Wil

45) OnePageWars: Trade Y1 G1 Onepagewars

46) wil: Trade Y2 G2 B3

47) OnePageWars: Move R1 Ilikedogs Idislikecats

48) wil: Move R1 Wil G2

49) OnePageWars: Build R2 Idislikecats

50) wil: Trade Y3 G3 B3

51) OnePageWars: Build Y1 Onepagewars

52) wil: Trade R3 G3 Wil

53) OnePageWars: Build G1 Onepagewars

54) wil: Trade B2 R2 Wil

55) OnePageWars: Build R3 Ilikedogs
	OnePageWars: How do we know who's winning in this sort of situation?
	wil: This game can change control in a few moves, one missed opportunity and the other taking advantage is huge.   Some folks just count pieces, others will count pips and give an extra pip count for ever step away from your homeworld. But neither of these are real...how close are you to taking out a homeworld, how many positions do you have safe from catastrophe or attack...

56) wil: Sacrifice G3 B3
Build G3 B3
Build R3 Wil
Build R3 G2
	OnePageWars: I came to the conclusion that you were ahead because your 2 g3s strike me as more useful than my y3 and b3. The y3 could come in handy, but the b3 seems like a waste of a large.

57) OnePageWars: Sacrifice Y2 Ilikedogs
Move R1 Idislikecats Wil
Move R2 Idislikecats Wil
Catastrophe Wil R
	wil: you'd be amazed at what color changes can do...but yes you need a g3 for a factory and once you used one on a star I was determined to corner the market..


58) wil: Sacrifice G3 B3
Build G3 B3
Build B2 G2
Build B2 Wil

59) OnePageWars: Build Y2 Ilikedogs
	OnePageWars: was it a necessary sacrifice or just a waste of a y2? I honestly don't know.

60) wil: Sacrifice B2 G2
Trade R3 Y3 G2
Trade Y2 R2 G2
	wil: necessary....no...an option...yes....a bad move...I don't think so...we have to see how it plays out
	OnePageWars: I think I lost this from the time I let you get 2 of the g3 pieces and stuck the third in a planet.

61) OnePageWars: Trade B3 R3 Onepagewars

62) wil: Trade B2 R2 Wil
	wil: I like blues for this reason...  and yeah...build a g3 prior to using a G3 as a star...
	OnePageWars: well, I did start out with a g3, but I don't remember what happened to it.

63) OnePageWars: Build Y2 Idislikecats

64) wil: Sacrifice G3 B3
Build G3 B3
Build Y2 G2
Build B2 G2

65) OnePageWars: Move G1 Onepagewars Ilikedogs

66) wil: Move R1 G2 B3

67) OnePageWars: Discover Y2 Idislikecats R3 Ilikewolves

68) wil: Sacrifice Y3 G2
Move R2 G2 B3
Move R2 B3 Onepagewars
Move R1 B3 Onepagewars
Catastrophe Onepagewars R
	wil: awfully tempting that was....it would be quite the reboot...

	OnePageWars: oh. I think that's fatal.
	OnePageWars: I can't even grab up the y3.
	OnePageWars: good game wp.
	wil: the tempting was two greens in g3, while I'd lose my factory...if I headed that way I'd completely restock the bank with that Ilikedogs system...  but I was poised on heading in after blues or reds to take out your homeworld.

I do like B3s  they can be a game changer by sacking them for three color changes...cornering blues to me is a powerful strategy.  But having the only factory...for every one you build I build two...is quite an advantage.
	wil: good game, thanx  (I would have backed up my R3 and played to the bitter end...I like seeing how things play out and sometimes can take advantage of errors...have won more than once with a solo homeworld)
	OnePageWars: Yeah, I have so much still to learn about this game.
	wil: You aint th eonly one....I try to stay in 5-8 games so I can be beat in more ways!
	OnePageWars: It just seemed comparable to an endgame in chess where you have a king on g1 and they have a king on d5 with only queenside pawns remaining for both players and you're down the exchange with their rook on the 2nd rank.

Maybe it's not that bad, but that was my impression.


24795)
Variants: "Hard time"
Started: 2013.12.12, Ended: 2013.12.13
Participants: wil (S), Marmalade (N)
Winner: Marmalade

1) Marmalade: Homeworld B2 Y1 G3

2) wil: Homeworld B3 G1 Y3

3) Marmalade: Build G1 Marmalade

4) wil: Build Y1 Wil

5) Marmalade: Discover G1 Marmalade Y3 Doom

6) wil: Discover Y1 Wil G2 G2

7) Marmalade: Build G1 Doom

8) wil: Build Y1 G2

9) Marmalade: Build G2 Marmalade

10) wil: Build Y2 Wil

11) Marmalade: Build G2 Doom

12) wil: Trade Y3 G3 Wil

13) Marmalade: Build G3 Marmalade

14) wil: Build Y2 G2

15) Marmalade: Trade G2 Y2 Marmalade

16) wil: Discover Y2 G2 B3 B3

17) Marmalade: Move G3 Marmalade B3

18) wil: Discover Y2 B3 G2 Gtoo

19) Marmalade: Trade G3 R3 B3

20) wil: Discover Y2 Gtoo G3 G3

21) Marmalade: Sacrifice Y2 Marmalade
Move R3 B3 G2
Move R3 G2 Wil

22) wil:
Move G3 Wil G2
	wil: I gottq go and drive....this is where a heads up display and voice commands woulld be handy....
	wil: or not
	wil: shoulda seen that...oh well

23) Marmalade: Attack Y2S Wil
	wil: We take our best and brightest peacemakers and leave you agressive imperialist to overpopulate and pollute yet another star system....
	Marmalade: Sorry man, it's always a good idea to match red for red.
	wil: No worries...it is a lesson...I was blinded...that happens to me....I need to be reminded...thanx for the annihilation.



24926)
Variants: "Hard time"
Started: 2013.12.12, Ended: 2014.1.19
Participants: TwoShort (S), SilentTitan (N)
Winner: TwoShort

1) SilentTitan: Homeworld B1 R2 G3
	SilentTitan: It would seem that no one else wants to play me and since I cannot challenge downward.  You're it.  Tag.

2) TwoShort: Homeworld B1 G3 B3 *

3) SilentTitan: Build G1 Silenttitan
	TwoShort: Glad to be it :)  Have a good game.

4) TwoShort: Build B1 Twoshort

5) SilentTitan: Build G1 Silenttitan

6) TwoShort: Trade B3 Y3 Twoshort

7) SilentTitan: Trade G3 B3 Silenttitan

8) TwoShort: Build B2 Twoshort

9) SilentTitan: Trade G1 Y1 Silenttitan

10) TwoShort: Discover B2 Twoshort G2 Grogar

11) SilentTitan: Build B2 Silenttitan

12) TwoShort: Build B2 Grogar

13) SilentTitan: Discover B2 Silenttitan G3 Sol

14) TwoShort: Trade B2 Y2 Grogar

15) SilentTitan: Build Y1 Silenttitan

16) TwoShort: Build Y1 Grogar

17) SilentTitan: Move Y1 Silenttitan Sol

18) TwoShort: Trade Y2 R2 Grogar

19) SilentTitan: Trade B2 R2 Sol

20) TwoShort: Build Y2 Twoshort

21) SilentTitan: Build Y2 Silenttitan

22) TwoShort: Build B2 Grogar

23) SilentTitan: Discover Y1 Silenttitan B3 Soul

24) TwoShort: Discover B2 Grogar Y3 Yolonda

25) SilentTitan: Trade B3 G3 Silenttitan

26) TwoShort: Trade Y2 G2 Twoshort

27) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Soul
Build Y3 Silenttitan

28) TwoShort: Sacrifice G2 Twoshort
Build B2 Yolonda
Build B3 Grogar

29) SilentTitan: Discover Y2 Silenttitan B3 Tic

30) TwoShort: Move B3 Grogar Sol

31) SilentTitan: Sacrifice Y2 Sol
Move Y1 Sol Silenttitan
Move R2 Sol Silenttitan

32) TwoShort: Build Y2 Twoshort

33) SilentTitan: Build G1 Silenttitan

34) TwoShort: Trade B3 R3 Sol

35) SilentTitan: Discover G1 Silenttitan B3 Tac

36) TwoShort: Sacrifice Y3 Twoshort
Move R2 Grogar Sol
Move R2 Sol Silenttitan
Move R3 Sol Silenttitan
Catastrophe Silenttitan Red

37) SilentTitan: Trade Y2 R2 Tic
	SilentTitan: Pretty
	SilentTitan: Pretty

38) TwoShort: Move B2 Grogar Silenttitan
	TwoShort: Great game, thanks.

39) SilentTitan: Pass
	SilentTitan: Hey, thanks for putting up with me yet again.

40) TwoShort: Sacrifice Y2 Twoshort
Move B2 Yolonda Silenttitan
Move B2 Yolonda Silenttitan
Catastrophe Silenttitan Blue



24835)
Started: 2013.12.16, Ended: 2013.12.20
Participants: foksieloy (S), OnePageWars (N)
Winner: OnePageWars

1) OnePageWars: Homeworld B2 R1 G3
	OnePageWars: gl hf all!

2) foksieloy: Homeworld B3 Y2 G3

3) OnePageWars: Build G1 Onepagewars
	foksieloy: gl hf!

4) foksieloy: Build G1 Foksieloy

5) OnePageWars: Trade G1 Y1 Onepagewars

6) foksieloy: Trade G1 Y1 Foksieloy

7) OnePageWars: Build G1 Onepagewars

8) foksieloy: Build G1 Foksieloy

9) OnePageWars: Trade G1 B1 Onepagewars

10) foksieloy: Discover G1 Foksieloy R1 Blackadder

11) OnePageWars: Build B1 Onepagewars

12) foksieloy: Build G1 Foksieloy

13) OnePageWars: Discover B1 Onepagewars G3 Bravelyranrobin

14) foksieloy: Sacrifice Y1 Foksieloy
Discover G1 Blackadder R3 Balldrick

15) OnePageWars: Build Y1 Onepagewars
	foksieloy: Sorry if this was a stupid move, I am new to this game, it just seemed like it might be the less of few evils of giving you medium ships this soon.

16) foksieloy: Trade G1 R1 Foksieloy
	OnePageWars: Sorry, I don't know enough about this game to judge the viability of that move.

17) OnePageWars: Build G1 Onepagewars

18) foksieloy: Build R1 Foksieloy

19) OnePageWars: Build B1 Bravelyranrobin

20) foksieloy: Discover R1 Foksieloy Y1 Percy

21) OnePageWars: Build B2 Bravelyranrobin

22) foksieloy: Sacrifice G1 Balldrick
Build R2 Percy

23) OnePageWars: Trade B2 R2 Bravelyranrobin

24) foksieloy: Build G1 Foksieloy

25) OnePageWars: Build B2 Bravelyranrobin

26) foksieloy: Trade G3 B3 Foksieloy

27) OnePageWars: Trade B2 Y2 Bravelyranrobin

28) foksieloy: Build B2 Foksieloy
	OnePageWars: Have you seen Frozen?

29) OnePageWars: Sacrifice Y2 Bravelyranrobin
Move B1 Bravelyranrobin Percy
Move B1 Percy Foksieloy
Catastrophe Foksieloy B
	foksieloy: Haven't. Is it good?
	OnePageWars: I think so. They only had 90 some minutes, but I think they used the time very well to create well developed characters. I like the focus on internal conflict in Anna and especially Elsa.

30) foksieloy: Build R2 Foksieloy
	foksieloy: I should have seen this coming, just did it 5 min ago in another game. :) Ok, I will check that movie out then.

31) OnePageWars: Build R3 Bravelyranrobin

	foksieloy: Ok, I lost. No matter what I do, you will either catastrophe my red in foksieloy if I build r3 there, in Percy if I sac g1 to build r3 there, or just capture my system if I don't build r3. Good game!
	foksieloy: Perhaps another game?
	OnePageWars: yes, good game. And sure, I'd be happy to play another.


24767)
Variants: "Unrated, Hard time"
Started: 2013.12.17, Ended: 2014.1.30
Participants: Ultan_the_Blind (S), wil (N), foksieloy (E)
Winner: Ultan_the_Blind

1) wil: Homeworld B2 R1 G3

2) foksieloy: Homeworld G3 B2 Y3
	wil: Welcome to the game....be sure to create different homeworlds so nobody is dealing with a short universe...

3) Ultan_the_Blind: Homeworld Y1 B3 G3
	foksieloy: Hi everyone, good luck, have fun!

4) wil: Build G1 Wil
	Ultan_the_Blind: G'day! This shall be my first 3 player game. Lets see how it goes... Good luck mine most honorable foes!

5) foksieloy: Build Y1 Foksieloy

6) Ultan_the_Blind: Build G1 Ultan_the_blind

7) wil: Trade G1 Y1 Wil

8) foksieloy: Discover Y1 Foksieloy G1 Katsushiro
	wil: I played one four way..and didn't like it...I played one other three way...and suddenly I am in three more!   Great stuff....but I was told by another player that he has never finished any more multiples than binary...and so far that is true for me....seems most of us don't have the attention span required to play at least once every 5 days....

9) Ultan_the_Blind: Build G1 Ultan_the_blind

10) wil: Build Y1 Wil

11) foksieloy: Build Y2 Foksieloy

12) Ultan_the_Blind: Discover G1 Ultan_the_blind Y2 Sol

13) wil: Discover Y1 Wil G3 G3

14) foksieloy: Trade Y2 G2 Foksieloy

15) Ultan_the_Blind: Trade G3 Y3 Ultan_the_blind

16) wil: Build G1 Wil

17) foksieloy: Build G2 Foksieloy

18) Ultan_the_Blind: Build Y2 Ultan_the_blind

19) wil: Build Y2 Wil

20) foksieloy: Sacrifice G2 Foksieloy
Build Y2 Katsushiro
Build Y3 Foksieloy

21) Ultan_the_Blind: Trade Y3 G3 Ultan_the_blind
	foksieloy: So, seems yellow is popular this game. Never played a 3p game, this is quite fun already. :)

22) wil: Build Y3 G3
	wil: isolation of any economy, or cornering any economy is always popular....and when one sees someone else take a run on the bank....we should all try to get a little of what is owed to us out before the bank is empty and commodity prices skyrocket.

23) foksieloy: Trade Y3 B3 Foksieloy

24) Ultan_the_Blind: Discover Y2 Ultan_the_blind G2 Urth

25) wil: Discover G1 Wil Y3 Y3

26) foksieloy: Build Y3 Foksieloy

27) Ultan_the_Blind: Discover G1 Sol B1 Neptune

28) wil: Trade Y2 R2 Wil

29) foksieloy: Discover Y1 Katsushiro G2 Shichiroji

30) Ultan_the_Blind: Build G2 Neptune

31) wil: Build Y2 Wil

32) foksieloy: Build Y2 Shichiroji
	Ultan_the_Blind: Merry Christmas, O you who I do not know!
	foksieloy: Best wishes for the holidays!
	wil: backatcha

33) Ultan_the_Blind: Trade G1 B1 Neptune

34) wil: Trade Y2 R2 Wil

35) foksieloy: Trade Y3 R3 Foksieloy

36) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind
Build G1 Neptune
Build Y2 Urth
Build G3 Ultan_the_blind

37) wil: Move R2 Wil G3
	foksieloy: I am not making that mistake again. :>

38) foksieloy: Build Y3 Foksieloy
	Ultan_the_Blind: The bank is getting kinda depleted....

39) Ultan_the_Blind: Sacrifice Y2 Urth
Move B1 Neptune Foksieloy
Move G1 Neptune Foksieloy

40) wil: Build R1 G3

41) foksieloy: Attack G1S Foksieloy
	Ultan_the_Blind: I apologise for my slow and errant playing. Just got back from a long holiday visit with my family.

42) Ultan_the_Blind: Build B1 Foksieloy
Catastrophe Foksieloy Blue

43) wil: Discover R2 G3 Y2 Y2

44) foksieloy: Move Y1 Shichiroji Ultan_the_blind

45) Ultan_the_Blind: Trade G1 R1 Ultan_the_blind

46) wil: Build G1 Wil

47) foksieloy: Sacrifice Y3 Foksieloy
Move Y2 Katsushiro Shichiroji
Move Y2 Shichiroji Ultan_the_blind
Move Y2 Shichiroji Ultan_the_blind
Catastrophe Ultan_the_blind Yellow

48) Ultan_the_Blind: Build G1 Neptune

49) wil: Move G1 Wil Foksieloy
Catastrophe Foksieloy G

50) Ultan_the_Blind: Build R1 Ultan_the_blind

51) wil: Move R2 Y2 Ultan_the_blind
	Ultan_the_Blind: :Sigh: I feared that would be the result of angering you, Foksieloy... We could easily destroy each other without Wil needing to do a thing!

52) Ultan_the_Blind: Sacrifice R1 Ultan_the_blind
Attack R2N Ultan_the_blind
	wil: I would have liked to have had a few of your ships, but it looks like I can manage from here...
	foksieloy: For some reason I thought this was sinister and I was targeting you. Hence my confusion at you making it easier on wil :) I should pay more attention. But yea, if I haven't done that I would have been dead anyway, so why not go out in a blaze of glory! Good game guys, I'll be watching you.

53) wil: Build R1 Wil

54) Ultan_the_Blind: Sacrifice Y2 Urth
Move G1 Neptune Ultan_the_blind
Move R1 Ultan_the_blind Wil
Catastrophe Wil Red

55) wil: Build G1 Wil
	wil: well that didn't go as planned.

56) Ultan_the_Blind: Trade G1 Y1 Ultan_the_blind
	Ultan_the_Blind: Yeah... I was getting quite worried there for a moment! Was about to do something rather rash...

57) wil: Trade G1 B1 Wil

58) Ultan_the_Blind: Trade G2 B2 Neptune

59) wil: Move Y3 G3 Neptune

60) Ultan_the_Blind: Build Y1 Ultan_the_blind

61) wil: Build Y2 G3

62) Ultan_the_Blind: Sacrifice Y1 Ultan_the_blind
Move B2 Neptune Wil

63) wil: Trade G3 R3 Wil

64) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind
Build B1 Wil
Build B1 Wil
Build B2 Wil
Catastrophe Wil Blue

	Ultan_the_Blind: Good game, good sirs! You were most honorable foes (and I realize that I got lucky this time). Thank you for an enjoyable game (and sorry again for my slow playing).


24859)
Variants: "Hard time"
Started: 2013.12.17, Ended: 2013.12.21
Participants: wil (S), foksieloy (N)
Winner: foksieloy

1) foksieloy: Homeworld R1 G3 B3

2) wil: Homeworld R2 B1 G3
	foksieloy: Hi, good luck, have fun!

3) foksieloy: Build B1 Foksieloy
	wil: Thanx for the game!  How did you discover homeworlds?  Do you play the physical game as well?
	foksieloy: Yep, I play the physical game, but most people I played it with (family, friends) either didn't like it, or don't have the time, so I decided to try it online. :) Seems there is much more strategy to this game than I expected (and I expected it to be brutal), so I am hoping to learn a lot here.

4) wil: Build G1 Wil
	wil: Yes, it is for folks with a chess playing mentality

5) foksieloy: Trade B1 G1 Foksieloy

6) wil: Trade G1 B1 Wil

7) foksieloy: Build G1 Foksieloy

8) wil: Build G1 Wil

9) foksieloy: Trade G1 Y1 Foksieloy

10) wil: Build G1 Wil

11) foksieloy: Build G2 Foksieloy

12) wil: Trade G1 Y1 Wil

13) foksieloy: Trade G1 R1 Foksieloy

14) wil: Trade G1 R1 Wil

15) foksieloy: Build R2 Foksieloy

16) wil: Build R2 Wil

17) foksieloy: Discover R2 Foksieloy G2 Garthmarenghi

18) wil: Trade R2 Y2 Wil

19) foksieloy: Build B1 Foksieloy

20) wil: Build B2 Wil

21) foksieloy: Move B1 Foksieloy Garthmarenghi

22) wil: Trade B2 Y2 Wil

23) foksieloy: Trade R2 Y2 Garthmarenghi

24) wil: Build R2 Wil

25) foksieloy: Build B2 Garthmarenghi
	wil: awe....you wasn't gonna let me get all the y2s?   Now I have a commute to work....see you on the other side....I am on the east coast US, whereabouts are you in the world?
	foksieloy: Europe, GMT + 1. :)

Well I am new in the game, but as far as I can tell not having access to a ship of certain size+color can seriously limit you later on. Still learning, been reading the wiki, seemed like something I need to avoid.

26) wil: Discover R2 Wil G3 G3
	wil: yes, don't want to be frozen out of any economy...if you are new you are playing well

27) foksieloy: Move R1 Foksieloy Garthmarenghi

28) wil: Move Y2 Wil G3

29) foksieloy: Build B2 Foksieloy

30) wil: Build G1 Wil

31) foksieloy: Discover B2 Garthmarenghi Y3 Toddrivers

32) wil: Discover G1 Wil Y3 Y3

33) foksieloy: Trade B3 Y3 Foksieloy

34) wil: Build G1 Wil

35) foksieloy: Sacrifice Y3 Foksieloy
Move B1 Garthmarenghi Toddrivers
Move B1 Toddrivers Wil
Move B2 Toddrivers Wil
Catastrophe Wil Blue

36) wil: Sacrifice G3 Wil
Build G1 Y3
Build G2 Y3
Build G3 Wil
	foksieloy: Boom :)
	wil: You've traded a pawn, drone and queen for half my homeworld...making it so we are directly connected and you are without a big gun in your homeworld...  Dangerous footing...I wish you the best.

37) foksieloy: Sacrifice G2 Foksieloy
Build Y1 Garthmarenghi
Build Y3 Foksieloy
	foksieloy: I know, but I have to see if I can work at close quarters. Learning as I play.

38) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build Y3 G3

39) foksieloy: Discover Y1 Foksieloy B2 Madeleinewool

40) wil: Discover Y3 G3 B2 B2

41) foksieloy: Build B1 Foksieloy
	foksieloy: I see what you mean now, I have been pondering on my move and noticed a lot of way for you to destroy me quickly. Live and learn, like I said, lack of experience. :)
	wil: And I agree fully...the way to learn is to be annihilated...crushed...repeatedly in different ways so you can see them building.

42) wil: Move G1 Y3 B2

43) foksieloy: Trade B2 R2 Foksieloy

44) wil: Build R3 G3

45) foksieloy: Sacrifice Y3 Foksieloy
Move R1 Garthmarenghi Foksieloy
Move R1 Foksieloy Wil
Move R2 Foksieloy Wil
Catastrophe Wil Red
	foksieloy: You took control over G, I just now noticed how badly it will affect me.
	wil: A monopoly in any ecoomy hurts....I find the moving and trading sectors most worthwhile to corner, but building is valuabe...just having the only factory in the universe can cripple ya.  

	foksieloy: Good game!
	foksieloy: Perhaps another? I really am enjoying this, wish I joined this site sooner. I am having a nice game in paralel with OnePageWars, and I see you are too, perhaps the three of us should  do a multiplayer. :)
	wil: I didn't even see it coming...great move...caught asleep at the wheel... 


24855)
Variants: "Hard time"
Started: 2013.12.17, Ended: 2014.1.3
Participants: SilentTitan (S), OnePageWars (N)
Winner: SilentTitan

1) OnePageWars: Homeworld R1 B2 G3

2) SilentTitan: Homeworld R2 B3 G3

3) OnePageWars: Build G1 Onepagewars

4) SilentTitan: Build G1 Silenttitan
	OnePageWars: is there any reason one would wish to trade his size 3 ship on turn 3 rather than his size 1 besides mindgaming his opponent?
	SilentTitan: If you are in danger of being locked out of a color.  

5) OnePageWars: Trade G1 Y1 Onepagewars
	OnePageWars: Would that happen in a 2 player game?

6) SilentTitan: Trade G1 Y1 Silenttitan
	SilentTitan: It could, if each player had say a b1 in homeworld.  Then first player to go blue, would have pip advantage into the two-pip pieces and the odd out player would need to change the 3-pip rather than the1-pip to stay in the color.

7) OnePageWars: Build G1 Onepagewars
	OnePageWars: Hmmm, interesting.

8) SilentTitan: Build G1 Silenttitan

9) OnePageWars: Trade G1 R1 Onepagewars

10) SilentTitan: Trade G1 R1 Silenttitan

11) OnePageWars: Build R2 Onepagewars

12) SilentTitan: Build R2 Silenttitan

13) OnePageWars: Trade R1 B1 Onepagewars

14) SilentTitan: Trade R2 Y2 Silenttitan

15) OnePageWars: Build B1 Onepagewars

16) SilentTitan: Build R1 Silenttitan

17) OnePageWars: Build G1 Onepagewars

18) SilentTitan: Discover R1 Silenttitan G1 Sol

19) OnePageWars: Discover R2 Onepagewars G3 Ienjoyedfrozen

20) SilentTitan: Trade R1 B1 Silenttitan

21) OnePageWars: Trade B1 R1 Onepagewars

22) SilentTitan: Build G1 Silenttitan

23) OnePageWars: Build G2 Onepagewars

24) SilentTitan: Move Y2 Silenttitan Sol

25) OnePageWars: Move G2 Onepagewars Ienjoyedfrozen

26) SilentTitan: Build G2 Silenttitan



24940)
Variants: "Hard time"
Started: 2013.12.18, Ended: 2014.1.4
Participants: OnePageWars (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) OnePageWars: Homeworld B1 R3 G3
	OnePageWars: Should I go small universe?

3) wil: Build G1 Wil
	wil: why would you want to do that?  Do you know who bangle tiger is?   That game is dying....

4) OnePageWars: Build G1 Onepagewars
	OnePageWars: I don't see what the problem with small universe is in a two player game.

5) wil: Trade G1 Y1 Wil

6) OnePageWars: Trade G1 Y1 Onepagewars

7) wil: Build G1 Wil

8) OnePageWars: Build G1 Onepagewars

9) wil: Discover G1 Wil Y3 Y3

10) OnePageWars: Discover G1 Onepagewars B2 Wormhole

11) wil: Build Y1 Wil

12) OnePageWars: Build Y2 Onepagewars

13) wil: Discover Y1 Wil B3 B3

14) OnePageWars: Build Y2 Onepagewars

15) wil: Sacrifice G3 Wil
Build Y2 Wil
Build Y3 Wil
Build Y3 B3

16) OnePageWars: Move Y1 Onepagewars Wormhole

17) wil: Trade Y1 G1 Wil

18) OnePageWars: Build G2 Wormhole

19) wil: Build G2 Y3

20) OnePageWars: Trade G1 R1 Wormhole

21) wil: Trade Y2 R2 Wil

22) OnePageWars: Build R1 Wormhole

23) wil: Discover G1 Y3 Y2 Y2

	wil: hate when this happens
	OnePageWars: Sorry about that.


24954)
Variants: "Hard time"
Started: 2013.12.20, Ended: 2013.12.20
Participants: wil (S), OnePageWars (N)
Winner: wil

1) OnePageWars: Homeworld R2 B1 G3

2) wil: Homeworld Y3 G2 B3

3) OnePageWars: Build G1 Onepagewars

4) wil: Build B1 Wil

5) OnePageWars: Build G1 Onepagewars

6) wil: Build B1 Wil

7) OnePageWars: Trade G1 Y1 Onepagewars

8) wil: Discover B1 Wil G1 G1

9) OnePageWars: Discover G1 Onepagewars B3 Shogiisfun

10) wil: Build B2 G1

11) OnePageWars: Build Y1 Onepagewars
	OnePageWars: I think you've outplayed me in this game.

12) wil: Build B2 Wil
	wil: oh, give me a chance, I'll screw it up

	OnePageWars: Don't be to sure, I may have improved, but you're still better. :)
	OnePageWars: also, you have a monopoly on trade tech ships.
	OnePageWars: good game, well played.


24970)
Started: 2013.12.20, Ended: 2013.12.28
Participants: OnePageWars (S), foksieloy (N)
Winner: foksieloy

1) foksieloy: Homeworld B1 R2 G3

2) OnePageWars: Homeworld B1 R3 G3

3) foksieloy: Build G1 Foksieloy
	OnePageWars: Let's see how the fight for blue econ shapes up. :)
	OnePageWars: gl hf!, btw.
	foksieloy: Oh, this is an interesting start! Good luck, have fun!

4) OnePageWars: Build G1 Onepagewars

5) foksieloy: Trade G1 Y1 Foksieloy

6) OnePageWars: Trade G1 Y1 Onepagewars

7) foksieloy: Build G1 Foksieloy

8) OnePageWars: Build G1 Onepagewars

9) foksieloy: Trade G1 B1 Foksieloy

10) OnePageWars: Build G1 Onepagewars

11) foksieloy: Build B2 Foksieloy

12) OnePageWars: Trade G3 B3 Onepagewars

13) foksieloy: Trade B2 R2 Foksieloy

14) OnePageWars: Trade G1 R1 Onepagewars

15) foksieloy: Build B2 Foksieloy
	OnePageWars: Sorry for being late to move.

16) OnePageWars: Build B2 Onepagewars

17) foksieloy: Build G1 Foksieloy

18) OnePageWars: Build R1 Onepagewars

19) foksieloy: Trade G3 Y3 Foksieloy

20) OnePageWars: Discover R1 Onepagewars G2 Dota2

21) foksieloy: Sacrifice Y3 Foksieloy
Discover B1 Foksieloy G3 Leagueoflegends
Move B1 Leagueoflegends Dota2
Move B1 Dota2 Onepagewars
Catastrophe Onepagewars Blue

	OnePageWars: ok. Didn't see that, obviously. :)
	OnePageWars: good game wp.
	foksieloy: Good game! Another?


24969)
Variants: "Hard time"
Started: 2013.12.20, Ended: 2014.1.4
Participants: Laurie_Menke (S), wil (N)
Winner: wil

1) wil: Homeworld R1 B2 G3
	wil: Well...there she is.  I do believe neither of our schedules have more than brief holes that aren't filled... a games afoot

2) Laurie_Menke: Homeworld B3 Y1 G3
	Laurie_Menke: I do believe you're right!  And yay for finding holes!  :o)

3) wil: B G1 Wil

4) Laurie_Menke: Build G1 Laurie_menke

5) wil: T G1 Y1 Wil

6) Laurie_Menke: Build G1 Laurie_menke

7) wil: Build Y1 Wil

8) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller
	wil: I take its youse is back in California?

	Laurie_Menke: Just back now.  Landed about an hour ago.  But they gave me the job!!!  I'm so excited!!!  So you'll see me again as soon as I can get back there.  Oh, and don't worry...I'll be living in the Pepperland basement, not at Wunderland.  ;o)

9) wil: Build Y2 Wil

10) Laurie_Menke: Trade G1 B1 Laurie_menke
	wil: what me worry?  So what is your job?  
	Laurie_Menke: "Personal Assistant to the Looneys"  :o)  The first line of my job description is to keep the family happy.  LOL!  But basically, it's what I've been doing--organization projects, a little cooking and cleaning, running errands...that sort of thing.  :o)

11) wil: Discover Y2 Wil B3 B3
	wil: great....they can use the assitance.

12) Laurie_Menke: Build B1 Laurie_menke
	Laurie_Menke: :o)
	wil: they just have so much goin on...tracking everyday stuff gets behind...
	Laurie_Menke: Right.  Hopefully I'll be able to help keep them on track when things get crazy.  At least I'm going to try!  :o)  Ihopeyou had a great Christmas!

13) wil: Build Y2 Wil

14) Laurie_Menke: Trade B1 R1 Laurie_menke

15) wil: Trade Y2 R2 Wil

16) Laurie_Menke: Build B1 Laurie_menke

17) wil: Build Y2 Wil
	wil: rainy 40's here...the beginning of the wet sloppy cold dc winter

18) Laurie_Menke: Trade G3 Y3 Laurie_menke
	Laurie_Menke: Looking forward to it!  :o)  Though I'm sure the iciness isn't fun.  It's sunny & 80 here today.

19) wil: Discover Y2 Wil G3 G3
	Laurie_Menke: Hated to lose my g3, but I had to get some yellow.  :o/

20) Laurie_Menke: Trade B1 G1 Laurie_menke
	wil: uh oh, that could be bad...
	Laurie_Menke: LOL...see, I'm such a newbie that I don't know if that's bad for me or for you.  ;o)  Most likely me...

21) wil: Sacrifice G3 Wil
Build Y3 B3
Build Y3 G3
Build R1 Wil
	Laurie_Menke: Yeah, I'm starting to see why it's bad for me.  ::sigh::

22) Laurie_Menke: Sacrifice Y3 Laurie_menke
Move R1 Laurie_menke Yeller
Move R1 Yeller B3
Move R1 B3 Wil
Catastrophe Wil Red
	wil: I learn by losing....often...
	wil: that is often losing....I'm still working on learning from my losses...
	Laurie_Menke: LOL...me, too!  So since it's pretty clear I've lost this one, I'm going to go out with a bang by breaking starship rule number one.  ;o)

23) wil: Sacrifice Y2 B3
Move Y3 G3 Yeller
Move Y3 Yeller Laurie_menke
	wil: I thought I set that bait correctly....

24) Laurie_Menke: Build B1 Laurie_menke
	Laurie_Menke: LOL...now you're just toying with me, eh?  ;o)

25) wil: Trade Y3 R3 B3

26) Laurie_Menke: Build G1 Laurie_menke

27) wil: Sacrifice R3 B3
Attack G1 Laurie_menke
Attack G1 Laurie_menke
Attack B1 Laurie_menke
	wil: yes there was
	wil: I am trying to end it painlessly for you....
	Laurie_Menke: I appreciate the kindness.  :o)  But I'm not going down without a fight.  ;o)

28) Laurie_Menke: Move G1 Yeller Laurie_menke
	Laurie_Menke: Just because I need the practice, mind you.  I hope you don't mind me dragging it out a little.  :o)

29) wil: Build G2 Laurie_menke
Catastrophe Laurie_menke G
	wil: no worries that is part of it...

30) Laurie_Menke: Trade B1 G1 Laurie_menke
	Laurie_Menke: Thanks.  :o)  And Happy New Year!  :oD

31) wil: Trade Y3 R3 Laurie_menke
	wil: HNY back atcha....funny trying to figure how to end it...
	Laurie_Menke: LOL...I have one tiny little ship left.  ;o)

32) Laurie_Menke: Build G1 Laurie_menke

33) wil: Sacrifice R3 Laurie_menke
Attack G1 Laurie_menke
Attack G1 Laurie_menke
Pass

	Laurie_Menke: And now for the finale.  ;o)
	wil: I don't think I've ever completed a game with so few pieces left on the board.
	Laurie_Menke: It is pretty sparse!  Only one star system besides our homeworlds.  :o)  Thank you very much for the game!  I won't start another right now because I'm in crazy moving-in-11-days mode.  But once I'm settled, maybe I can try again?
	wil: Of course...  and yeah...we blew up so much there is nothing left...
	Laurie_Menke: :o)  Thanks!


24983)
Variants: "Sinister, Hard time"
Started: 2013.12.21, Ended: 2013.12.31
Participants: wil (S), foksieloy (N), OnePageWars (E)
Winner: foksieloy

1) foksieloy: Homeworld R1 B3 G3
	foksieloy: Hi guys, sinister is on, so I think that means I am attacking OnePageWars, OnePageWars is attacking wil, and wil is attacking me. Have fun. :)

2) OnePageWars: Homeworld B1 R2 G3
	foksieloy: Oh, and please, let's not have a small universe.

3) wil: H B3 Y2 G3

4) foksieloy: Build G1 Foksieloy

5) wil: Build G1 Wil
	foksieloy: Best wishes for the holidays!

6) foksieloy: Trade G3 Y3 Foksieloy
	wil: well then?

7) wil: Discover G1 Wil B1 B1
	foksieloy: This was unexpected.

8) foksieloy: Build G1 Foksieloy

9) wil: Build G1 Wil

10) foksieloy: Build G2 Foksieloy

11) wil: Build G2 B1

12) foksieloy: Trade G2 R2 Foksieloy

13) wil: Trade G2 R2 B1

14) foksieloy: Build G2 Foksieloy

15) wil: Build G2 B1

16) foksieloy: Discover G1 Foksieloy B2 Parasoul

17) wil: Trade G1 Y1 B1
	wil: wonder why it always tells us that we are late for our turns??

18) foksieloy: Build Y1 Foksieloy

19) wil: Move R2 B1 Parasoul
	OnePageWars: lol, yeah. That keeps scaring me.

20) foksieloy: Sacrifice G1 Parasoul
Build G1 Foksieloy

21) wil: Build G1 B1

22) foksieloy: Discover G1 Foksieloy Y2 Squigly

23) wil: Trade G2 R2 B1

24) foksieloy: Build G2 Squigly

25) wil: Build G2 B1

26) foksieloy: Discover G2 Squigly R1 Filia

27) wil: Move G1 B1 Parasoul

28) foksieloy: Sacrifice Y3 Foksieloy
Move G1 Squigly Filia
Move G1 Filia Wil
Move G2 Filia Wil
Catastrophe Wil Green

	foksieloy: Good game!
	OnePageWars: same
	foksieloy: Happy new year guys!
	OnePageWars: happy new year!
	wil: Well I blew that....Happy New Year!


24984)
Variants: "Hard time"
Started: 2013.12.21, Ended: 2013.12.25
Participants: wil (S), foksieloy (N)
Winner: wil

1) foksieloy: Homeworld B1 G3 Y3

2) wil: H B2 R1 G3
	foksieloy: Hi, welcome back. :)

3) foksieloy: Build Y1 Foksieloy
	wil: Thx ilook fwd to the game!


4) wil: Build G1 Wil

5) foksieloy: Trade Y1 G1 Foksieloy

6) wil: T G1 B1 Wil

7) foksieloy: Build G1 Foksieloy

8) wil: Build B1 Wil

9) foksieloy: Build Y1 Foksieloy

10) wil: Trade B1 Y1 Wil

11) foksieloy: Trade G1 B1 Foksieloy

12) wil: Build B2 Wil

13) foksieloy: Sacrifice Y3 Foksieloy
Discover B1 Foksieloy G2 Temporary1
Discover B1 Temporary1 G3 Temporary2
Move B1 Temporary2 Wil
Catastrophe Wil B

14) wil: Build Y1 Wil
	foksieloy: I know, risky, but I have to see how this strategy works out.
	wil: I said to my self....self will he do this?  maybe....probably....nah...well let's see....got my answer!!

15) foksieloy: Build Y2 Foksieloy
	foksieloy: I am always trigger happy in games! :)

16) wil: Discover Y1 Wil G2 G2

17) foksieloy: Trade Y1 R1 Foksieloy

18) wil: Build Y1 Wil

19) foksieloy: Build Y2 Foksieloy

20) wil: Build Y2 G2

21) foksieloy: Discover Y2 Foksieloy G2 Warvick

22) wil: Discover Y2 G2 B3 B3

23) foksieloy: Build Y3 Warvick

24) wil: Trade Y2 R2 B3

25) foksieloy: Build Y2 Foksieloy

26) wil: Build Y3 G2

27) foksieloy: Trade Y2 B2 Foksieloy
	wil: I have played this misearably I hope you have found more admirable oponents in other games...

28) wil: Build G1 Wil
	foksieloy: Oh, the games are very enjoyable, don't worry. I made a similar mistake in a game with OnePageWars, and he was quick to punish me there. So, you could say I am learning from my mistakes quickly enough to apply it to other games.

29) foksieloy: Build B1 Foksieloy
	wil: Yeah, that is my issue...It takes me a while to learn from my mistakes....but losing is the way to grow for sure.

30) wil: Move Y3 G2 Foksieloy

31) foksieloy: Build R1 Foksieloy

32) wil: Sacrifice R2 B3
Attack R1 Foksieloy
Attack R1 Foksieloy
	foksieloy: Damn, I shouldn't be making moves so early in the morning. :)

33) foksieloy: Move Y2 Warvick Foksieloy

34) wil: Attack B2 Foksieloy

35) foksieloy: Trade Y2 R2 Foksieloy

36) wil: Attack R2 Foksieloy

37) foksieloy: Trade Y2 R2 Foksieloy
Catastrophe Foksieloy Red

38) wil: Trade Y3 R3 Foksieloy
	foksieloy: We are both indecisive today. Must be all the food. :)

	foksieloy: I didn't even realise I was in danger until it happened. Lack of experience.
	wil: we are basically at checkmate I believe...
	foksieloy: Yea, too late. Good game!
	foksieloy: Another perhaps? :)
	wil: always willing...  challenge away...  leaving up the challenge allows me to play multiple games with multiple folks and learn this daggone strategy.  and I get swamped all the time, not seeing the armada creeping in...


24801)
Started: 2013.12.25, Ended: 2013.12.30
Participants: wil (S), ts52 (N)
Winner: wil



24947)
Variants: "Hard time"
Started: 2013.12.25, Ended: 2014.2.4
Participants: wil (S), SilentTitan (N)
Winner: wil

1) SilentTitan: Homeworld R1 B2 G3

2) wil: Homeworld R3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) wil: Build G1 Wil
	wil: oops..short uni...hate short unis
	SilentTitan: Lol.... Yeah that's a different set of skills.


5) SilentTitan: Trade G1 B1 Silenttitan
	wil: a game will sometimes get to that in 30 moves...or even ultra short and direct connect....but starting out that way is just somehow unfulfilling.

6) wil: Trade G1 B1 Wil

7) SilentTitan: Build B2 Silenttitan

8) wil: Build B2 Wil

9) SilentTitan: Trade B2 Y2 Silenttitan

10) wil: Trade B2 R2 Wil

11) SilentTitan: Build B2 Silenttitan

12) wil: Build B2 Wil
	wil: this is where I go wrong, I should just play follow the leader...I always deviate to soon, or much wrongly...

13) SilentTitan: Discover B1 Silenttitan G3 Sol

14) wil: Trade B2 Y2 Wil

15) SilentTitan: Build B2 Sol

16) wil: Discover B1 Wil G2 G2

17) SilentTitan: Trade B1 Y1 Sol

18) wil: Build Y1 Wil

19) SilentTitan: Build G1 Silenttitan

20) wil: Move Y1 Wil G2

21) SilentTitan: Trade G1 R1 Silenttitan

22) wil: Move R2 Wil G2

23) SilentTitan: Build G1 Silenttitan

24) wil: Build G1 Wil

25) SilentTitan: Move R1 Silenttitan Sol

26) wil: Discover G1 Wil Y2 Y2

27) SilentTitan: Discover G1 Silenttitan Y3 Sole

28) wil: Build G1 Wil

29) SilentTitan: Build G2 Silenttitan

30) wil: Build G2 Y2

31) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Silenttitan
Build Y3 Sol
Build G3 Silenttitan

32) wil: S G3 Wil
Build G3 Wil
Build Y3 G2
Build R1 G2

33) SilentTitan: Discover Y1 Silenttitan R3 Soul

34) wil: Move R2 G2 Sole

35) SilentTitan: Sacrifice G1 Sole
Build R2 Sol

36) wil: Move G2 Y2 Soul

37) SilentTitan: Sacrifice Y1 Soul
Discover B2 Silenttitan R3 Tic

38) wil: Sacrifice G3 Wil
Build G1 Soul
Build R2 Sole
Build G3 Wil

39) SilentTitan: Sacrifice G2 Silenttitan
Build B1 Tic
Build B3 Sol

40) wil: Sacrifice G3 Wil
Build G2 Y2
Build B3 G2
Build G3 Wil

41) SilentTitan: Sacrifice Y2 Silenttitan
Move Y3 Sol G2
Move Y1 Sol G2
Catastrophe G2 Yellow

42) wil: Trade B3 Y3 G2

43) SilentTitan: Trade B3 Y3 Sol

44) wil: Move G1 Y2 Sole

45) SilentTitan: Move Y3 Sol Silenttitan

46) wil: Move Y3 G2 Sol

47) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Sol
Build B3 Sol
Build B3 Tic

48) wil: Sacrifice Y2 Wil
Move B1 G2 Sol
Discover R1 G2 G3 G3
Catastrophe Sol B

49) SilentTitan: Trade B1 Y1 Tic

50) wil: Sacrifice R2 Sole
Attack R2 Sol
Attack R1 Sol

51) SilentTitan: Trade B2 G2 Tic

52) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 G3
Build Y1 Sol

53) SilentTitan: Build B1 Tic

54) wil: Trade G1 Y1 Wil

55) SilentTitan: Build Y2 Tic

56) wil: Build Y2 Wil

57) SilentTitan: Sacrifice Y2 Tic
Move B3 Tic Y2
Move B3 Y2 Soul

58) wil: Sacrifice G2 Soul
Build G1 Sole
Build G2 Wil

59) SilentTitan: Build Y2 Tic

60) wil: Sacrifice Y2 Wil
Move R1 G3 Silenttitan
Move R1 Sol Silenttitan

61) SilentTitan: Attack G1 Soul South

62) wil: Build Y2 Wil

63) SilentTitan: Build B1 Tic

64) wil: Move R2 Sole Silenttitan
Catastrophe Silenttitan R

65) SilentTitan: Trade Y3 B3 Silenttitan

66) wil: Move Y3 Sol Silenttitan

67) SilentTitan: Pass

68) wil: Sacrifice R2 Sol
Attack B3 Silenttitan
Pass

	SilentTitan: Good game


25000)
Variants: "Hard time"
Started: 2013.12.25, Ended: 2014.1.4
Participants: wil (S), foksieloy (N)
Winner: wil

1) foksieloy: Homeworld G1 B3 Y3
	wil: Onepagewars has me in two games now..he had me playin three!  We are game 25,000!  gotta mean sometin!
	foksieloy: It means we are superior. :)

2) wil: Homeworld R2 B1 G3

3) foksieloy: Build Y1 Foksieloy

4) wil: Build G1 Wil

5) foksieloy: Trade Y1 G1 Foksieloy

6) wil: Build G2 Wil

7) foksieloy: Build G2 Foksieloy

8) wil: Trade G2 Y2 Wil

9) foksieloy: Trade G2 R2 Foksieloy

10) wil: Discover G1 Wil Y3 Y3

11) foksieloy: Discover G1 Foksieloy B2 Banana

12) wil: Build G2 Y3

13) foksieloy: Build G2 Banana

14) wil: Build G2 Wil

15) foksieloy: Trade G1 Y1 Banana

16) wil: Trade G2 R2 Wil

17) foksieloy: Build G1 Banana

18) wil: Build G2 Wil

19) foksieloy: Discover G2 Banana Y3 Orange

20) wil: Trade G2 B2 Wil

21) foksieloy: Build Y1 Banana

22) wil: Discover G1 Y3 Y2 Y2

23) foksieloy: Build R1 Foksieloy

24) wil: Build B1 Wil
	foksieloy: I think I had way too many games going at once for a while there. Took me a bit of time to remember what I was doing in each one.
	wil: that is a challenge....especiallly when some have similar characteristics!

25) foksieloy: Trade Y1 R1 Banana

26) wil: Move G2 Y3 Banana

27) foksieloy: Build G2 Banana

28) wil: Build G3 Y2

29) foksieloy: Attack G2 Banana

30) wil: Sacrifice G3 Y2
Build G3 Y2
Build G3 Wil
Build Y1 Wil

31) foksieloy: Move G1 Banana Orange
	wil: I traded one g2 for two g3s...

32) wil: Discover R2 Wil Y3 Y3
	foksieloy: I know, but I would have lost that g3 anyway, and then everything else in banana.

33) foksieloy: Sacrifice G2 Banana
Build Y1 Foksieloy
Build Y2 Banana

34) wil: Move G3 Wil Y3

35) foksieloy: Trade Y1 B1 Banana

36) wil: Move B2 Wil Y3

37) foksieloy: Sacrifice B1 Banana
Trade G1 B1 Orange

38) wil: Sacrifice G3 Y2
Build G1 Wil
Build G2 Y3
Build G3 Y2

39) foksieloy: Build B2 Orange

40) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 Y3
Build R1 Y3
	foksieloy: Did I notice correctly that if I was to build that last g2 you could use your g3 for massive factory production?
	wil: Yes...sack g3, build g3 and two more...

41) foksieloy: Sacrifice Y2 Banana
Move B2 Orange Wil
Move B1 Orange Wil
Catastrophe Wil B
	wil: for example
	foksieloy: Ah, so it was unavoidable. :>

42) wil: Move Y1 Wil Foksieloy
	wil: well that was just green....now that i have the factories I can reproduce at will

43) foksieloy: Sacrifice Y1 Foksieloy
Move R1 Banana Orange

44) wil: Sacrifice G2 Y3
Build Y1 Foksieloy
Build Y1 Foksieloy
Catastrophe Foksieloy Y
	foksieloy: And now your factory is right next to me it seems. Good luck to me, I will need it.

	wil: I would love some cookies.
	foksieloy: Oh damn, didn't expect that, nice. Good game!
	wil: I don't know if it has a name....but you move in with one....getting set to catastrophe...if they resppond with an attack you move in with another, if they don't, you grow...tis the bain of having a green star.
	foksieloy: I will have to remember that one! :)
	wil: Yes, losing a dozen games teaches you a dozen things to avoid and a  dozen ways to win.  Steven Covey in Seven Habits of Highly Effective people...one of the habits is 'Begin with the end in mind'  that is what I focus on...I have to either take out your star system, or eliminate your ships from your star system...so I try to insure that I make that hard for you to do to me, and keep lookng at what I need to accumulate to do that to you...


24857)
Started: 2013.12.27, Ended: 2014.1.12
Participants: haukec (S), OnePageWars (N)
Winner: haukec

1) OnePageWars: Homeworld B1 R2 G3
	OnePageWars: Ah, a brand new game, I see. :) Welcome! gl hf!

2) haukec: Homeworld R1 B2 G3

3) OnePageWars: Build G1 Onepagewars

4) haukec: Build G1 Haukec

5) OnePageWars: Trade G1 B1 Onepagewars

6) haukec: Build G1 Haukec

7) OnePageWars: Build G1 Onepagewars

8) haukec: Trade G1 Y1 Haukec

9) OnePageWars: Trade G1 Y1 Onepagewars

10) haukec: Discover G1 Haukec G3 Somewherelse

11) OnePageWars: Build G1 Onepagewars

12) haukec: Build G1 Haukec

13) OnePageWars: Move G1 Onepagewars Somewherelse

14) haukec: Discover G1 Haukec Y3 Anewworld

15) OnePageWars: Build G2 Onepagewars

16) haukec: Build G2 Haukec

17) OnePageWars: Build B1 Onepagewars
	haukec: this game is amazingly strategic - about once per turn i realize another error i made before... though first game ever :)

18) haukec: Sacrifice G3 Haukec
Build G2 Anewworld
Build G3 Haukec
Build Y1 Haukec
	OnePageWars: This is your first game? Welcome to Homeworlds!
	OnePageWars: And yes, the strategy and tactics of this game abound. I'm still learning new things virtually every game, but I am relatively new to this game.

19) OnePageWars: Move B1 Onepagewars Somewherelse

20) haukec: Build Y2 Haukec

21) OnePageWars: Sacrifice G3 Onepagewars
Build G3 Onepagewars
Build B2 Somewherelse
Build Y2 Onepagewars

22) haukec: Sacrifice Y2 Haukec
Move G1 Somewherelse Onepagewars
Move G1 Anewworld Onepagewars
Catastrophe Onepagewars G

23) OnePageWars: Move Y1 Onepagewars Somewherelse

24) haukec: Move G2 Haukec Somewherelse
	OnePageWars: Nice one.

25) OnePageWars: Move G1 Somewherelse Onepagewars

26) haukec: Sacrifice G2 Anewworld
Build G1 Somewherelse
Build G1 Somewherelse
Catastrophe Somewherelse G
	haukec: thank you :) but now i realize why there was this warning in the manual of inclomplete annilation-plans, you walled me in quite effective ;)

27) OnePageWars: Build G1 Onepagewars

28) haukec: Discover Y1 Haukec G3 Nowhere

29) OnePageWars: Discover G1 Onepagewars B3 Serenity_valley

30) haukec: Build Y1 Haukec
	OnePageWars: Have you seen Firefly?

31) OnePageWars: Build Y2 Onepagewars
	haukec: Yes! :D Bad omen for me? ;)
	OnePageWars: Only if you're one of them independents.

32) haukec: Move Y1 Haukec Serenity_valley

33) OnePageWars: Move Y2 Onepagewars Serenity_valley

34) haukec: Sacrifice G3 Haukec
Build Y2 Serenity_valley
Build Y3 Nowhere
Build Y3 Haukec
	OnePageWars: "They thought they'd march through Serenity Valley, and we choked them with those words. We have done the impossible, and that makes us mighty." - Mal as near as I can remember it.

35) OnePageWars: Build Y3 Onepagewars
	OnePageWars: Well, since I'm defending Serenity Valley, that would make me the Independents. I guess this is appropriate considering the unfortunate outcome of that fateful battle.

36) haukec: Sacrifice Y2 Serenity_valley
Move Y1 Nowhere Onepagewars
Move Y1 Serenity_valley Onepagewars
Catastrophe Onepagewars Y
	OnePageWars: Unless of course you plan to cancel project make psychotic psychics and cease war on the Independents rather than wipe so many of them out in Serenity Valley at unthinkable cost of life to both sides.

37) OnePageWars: Build Y1 Serenity_valley
	haukec: So much for the unthinkable cost of life to both sides ;)
I think, i will make an android-clone of this game :D

38) haukec: Move Y3 Nowhere Onepagewars
	OnePageWars: Though high command, having only 2 small ships in their home system, has surrendered, the Independents at Serenity_Valley shall still hold out for some three weeks. (Did I get the timeline correct? It's been a while since I watched the series.)
	haukec: To be honest, i don't know for sure too, but I will definetively watch the series again sometime soon :)

39) OnePageWars: Build Y1 Serenity_valley
	OnePageWars: Zoe: They're not coming. Command says it's to hot. They're pulling out. We're to lay down arms.

40) haukec: Move Y1 Haukec Serenity_valley
Catastrophe Serenity_valley Y
	OnePageWars: And btw, I looked it up and according to http://wiki.serenitymush.com/wiki/index.php/Battle_of_Serenity_Valley It was only two weeks that they held out after Independent High Command had surrendered.

41) OnePageWars: Sacrifice G1 Serenity_valley
Build B1 Onepagewars

42) haukec: Attack G1 Onepagewars
	OnePageWars: The Independent forces at Serenity Valley who refused to surrender have been eliminated or captured.

43) OnePageWars: Pass

44) haukec: Trade Y3 B3 Onepagewars
Catastrophe Onepagewars B
	OnePageWars: "We're all just folk now." - Mal
	haukec: Thank you very much for this challenging and interesting match :)
	OnePageWars: The same to you. I very much enjoyed both the gameplay and the Firefly quotations with a little role play thrown in at the end.
	haukec: Half of writing history is hiding the truth. ;)
	haukec: btw, I started implementing the game in java, having this as an android app would be awesome :)
	OnePageWars: Yes, it would.



25012)
Variants: "Unrated"
Started: 2013.12.29, Ended: 2014.1.14
Participants: foksieloy (S), fogus (N)
Winner: foksieloy

1) fogus: Homeworld R1 B2 G3
	foksieloy: Hi! Have fun, if you have questions, ask. :)
	fogus: Thank you.  Will do.

2) foksieloy: Homeworld G1 B3 Y3

3) fogus: Build G1 Fogus
	fogus: I totally went with Andrew Looney's opening move without fully understanding why.  I suspect that I'll get it as I get more (some) games under my belt.

4) foksieloy: Build Y1 Foksieloy
	foksieloy: The homeworld setup you are playing is called a banker. It involves quickly using g1 ships to "reserve" large pieces in the form of stars to later build by sacrificing the g1 ship (since the star returns to the stash if no ships are present). I anticipated that, so that is why g1 is in my system as opposed to b1. It reduces the number of g1 ships you can build without giving me access to g2.

5) fogus: Trade G1 Y1 Fogus

6) foksieloy: Trade Y1 G1 Foksieloy

7) fogus: Build G1 Fogus

8) foksieloy: Build G2 Foksieloy
	fogus: How long have you been playing?  My son and I have played a few games, but I never felt that I knew what I was doing.  I very much appreciate your taking the time to play/discuss with me.
	foksieloy: Not long truth be told, played a bit with family and recently joined here. But had (and still have) a lot of parallel games here, been reading a bit on forums, and just generally analyzing the game. I have a tendency to learn quickly. In its essence this is a resource management game. Here is something that might help you at first: consider each ship pip to be 1 point, and each distance that the ship is closer to the enemy homeworld is 1 point more. So a g2 in your system is 2 points, a g1 next to the enemies system is 4 points. And then try to keep your score growing while not allowing the opponent to do the same. It is a solid abstraction for the beginning of learning the game.

9) fogus: Trade G1 B1 Fogus
	foksieloy: Just a warning, you might not see it but if you build a green ship now, you lose the game. Just a fair warning. :)
	fogus: The pip-scoring is a nice idea.  Thanks.
	fogus: Can you say more about the dangers of another green ship?  I know about catastrophes, but I thought it was 4 of the same color.

10) foksieloy: Trade G2 R2 Foksieloy
	foksieloy: You would have 3 green ships . I sacrifice my y3. I move my g1 to your system and declare catastrophe green. You only have y1 left. I just need to get my 2pip ship into your system and it is game over (and I can get it there within 3 turns), and 3 turns is not enough for you to reach a 2 pip ship.

11) fogus: Discover Y1 Fogus R3 Abalone
	fogus: Wow!  So cool.  Way deeper than I can see ATM.
	fogus: Hmm, I'm beginning to see how I'm at a disadvantage for ship size.

12) foksieloy: Build R1 Foksieloy

13) fogus: Build G1 Fogus
	foksieloy: A y3 ship is quite good as a pressure strategy, your opponent is constantly evaluating whether to go or not to go over 2 pyramids of same color in system. And yes, I am trying to lock your out of mediums. This is the main advantage of the Goldilocks start (x1 and x3): good control over 2pip, and through that over 3pip.
	foksieloy: Also, happy new year!

14) foksieloy: Build G2 Foksieloy

15) fogus: Trade B1 Y1 Fogus
	fogus: Happy new year to you too. :-)

16) foksieloy: Trade G2 B2 Foksieloy

17) fogus: Move G1 Fogus Abalone

18) foksieloy: Build G2 Foksieloy

19) fogus: Build G2 Abalone

20) foksieloy: Trade G2 B2 Foksieloy

21) fogus: Build G2 Fogus

22) foksieloy: Discover B2 Foksieloy Y2 Nurgle

23) fogus: Trade Y1 R1 Fogus

24) foksieloy: Build Y1 Foksieloy
	fogus: My ham-handed attempt at a catastrophe was thwarted, so instead I thought it wise to try and get a G2.  However, I have no clear vision of a strategy at the moment.  Do you mind sharing your thoughts?

25) fogus: Build R2 Fogus
	foksieloy: At the moment I am trying to lock you out of blue to limit your color mobility (switching to colors you need). This is putting me at a slight disadvantage with green which I now intend to start working on. Your best bet at the moment might be to pressure me into giving you a g3 and get some presence in a size 2 system to threaten invasion of my homeworld.

26) foksieloy: Sacrifice Y3 Foksieloy
Move R1 Foksieloy Nurgle
Move R1 Nurgle Abalone
Move R1 Abalone Fogus
Catastrophe Fogus Red

27) fogus: Trade G2 Y2 Fogus

28) foksieloy: Sacrifice B2 Nurgle
Trade B2 G2 Foksieloy
Trade G1 B1 Foksieloy
	foksieloy: See what I meant with y3 being a threat? :)
	fogus: OMG!  Lol.  I suck so bad. :-)

29) fogus: Build G1 Fogus
	foksieloy: Warning: our homesystems are now connected. :)

30) foksieloy: Build Y1 Foksieloy

31) fogus: Trade G1 B1 Fogus

32) foksieloy: Discover Y1 Foksieloy G2 Ramsesii

33) fogus: Build Y2 Abalone
	foksieloy: So, I see you are on BGG as well.

34) foksieloy: Build Y2 Ramsesii

35) fogus: Move B1 Fogus Abalone
	fogus: I'm beginning to see how this game works... but my trouble still is seeing more than 1.5 moves ahead.  I'm working on it though. :-)

36) foksieloy: Build Y3 Foksieloy

37) fogus: Sacrifice Y2 Fogus
Move Y1 Abalone Ramsesii
Move Y2 Abalone Ramsesii
Catastrophe Ramsesii Y

38) foksieloy: Move Y3 Foksieloy Fogus

39) fogus: Trade G1 Y1 Abalone

40) foksieloy: Sacrifice R2 Foksieloy
Attack G3 Fogus
Pass
	foksieloy: And that was a mistake :>

	foksieloy: Good game. :)
	fogus: You're being kind.  Thanks a ton for talking through many moves with me.


25033)
Variants: "Hard time"
Started: 2014.1.1, Ended: 2014.2.1
Participants: Broccoli_Commander (S), Danner (N)
Winner: Broccoli_Commander

1) Danner: Homeworld B1 R2 G3 Orion
	Danner: Hi! Have a good game.

2) Broccoli_Commander: Homeworld B2 R3 G3
	Danner: How shall we resolve cycles?

3) Danner: Build G1 Danner
	Broccoli_Commander: Hi, thanks have a good game too

For cycles I never encountered the problem but I'd suggest the following:

If a given situation is encountered twice we are not allowed to create it a third time.
	Broccoli_Commander: For instance player 1 plays X -> A and thus initiates a cycle like:

X->A->B->C->D->A

Player 2 is still allowed to play A->B (it might be the very best option; P1 is responsible for this play because he chose to play X->A in the first place) So we could have

X->A->B->C->D->A->B->C->D

but at this stage P1 must deviate from D->A: he started it so he must end it.

X->A->B->C->D->A->B->C->D->Y

Whaddya think?
	Danner: Ok, it seems fine to me.

4) Broccoli_Commander: Build G1 Broccoli_commander

5) Danner: Trade G1 Y1 Danner

6) Broccoli_Commander: Trade G1 B1 Broccoli_commander

7) Danner: Build Y1 Danner

8) Broccoli_Commander: Build G1 Broccoli_commander

9) Danner: Build Y1 Danner

10) Broccoli_Commander: Build B1 Broccoli_commander

11) Danner: Discover Y1 Danner G3 Tirade

12) Broccoli_Commander: Trade G3 Y3 Broccoli_commander

13) Danner: Build Y2 Danner

14) Broccoli_Commander: Discover B1 Broccoli_commander G1 Pea

15) Danner: Trade Y2 B2 Danner

16) Broccoli_Commander: Build B2 Pea
	Danner: I'm sorry for the delay.

17) Danner: Move B2 Danner Tirade

18) Broccoli_Commander: Trade B2 R2 Pea

19) Danner: Build Y2 Tirade

20) Broccoli_Commander: Build Y2 Broccoli_commander

21) Danner: Trade Y2 R2 Tirade

22) Broccoli_Commander: Build B2 Broccoli_commander

23) Danner: Build B3 Tirade

24) Broccoli_Commander: Build B3 Pea

25) Danner: Discover B2 Tirade G1 Bob

26) Broccoli_Commander: Sacrifice B2 Broccoli_commander
Trade B3 Y3 Pea
Trade Y3 G3 Broccoli_commander

	Danner: Darn it. Sorry.
	Broccoli_Commander: Too bad, the interesting things were just ahead :P
No worries, though. It happens.


25024)
Variants: "Hard time"
Started: 2014.1.2, Ended: 2014.1.11
Participants: Aristos (S), wil (N)
Winner: Aristos

1) wil: Homeworld B2 R1 G3
	Aristos: Well met, again. 

2) Aristos: Homeworld G3 B2 Y3
	wil: I look forward to the game....wondering where my first mistake will be...

3) wil: Build G1 Wil

4) Aristos: Build Y1 Aristos

5) wil: Trade G1 Y1 Wil
	Aristos: Your first mistake was challenging the dread power of the Aristos Empire! Mwuhahahahahaha!
	Aristos: [Later, in Aristos Command Center]
"Um, sir..."
"Yes?"
"There's a problem with the omnipotent strategy module."
"Problem?"
"Yes, sir. Someone spilled coffee on it. It's busted."
"But... but I already broadcast my maniacal laugh across the galaxy! I assumed the module would be working. Get it fixed!" 
"Right away, sir. I just thought you should know."
"If you can't get it fixed, I need you to research technology for recalling radio transmissions..." 

6) Aristos: Trade Y1 R1 Aristos
	wil: Omnipotent strategy module??  You are still using those?  We've sent a telescope many multiples of the speed of light to the next galaxy looking back and are watching the history of our galaxy and we can't get back far enough to see when we used those ancient contraptions.

7) wil: Build Y1 Wil
	Aristos: "Get in here, private!"
"Yes, sir?"
"How in hell did the wil ambassador hear our discussion about the omniscient strategy module?"
"Well, sir, the last output of the omniscient strategy module before the coffee was spilled on it was a directive to enable permanent galactic broadcast mode on all command ships."
"What kind of ridiculous plan is that?"
"An omniscient strategy means making sure that everyone knows everything."
"WHAT?! We'll never win like that!"
"Oh. Then we should have been using the victory strategy modules all along. I believe that's what the wil are using." 
"Right. Effective immediately, we will begin using the victory strategy modules. AND TURN OFF THE BROADCAST."
"Yes, sir."

8) Aristos: Build R1 Aristos
	wil: We've got word now that they are confusing their omniscient strategy with their omnimpotent stategy module...  it is better than we thought.  

9) wil: Discover Y1 Wil G3 G3
	Aristos: It could hardly be omnipotent if it wasn't also omniscient. 

10) Aristos: Build R2 Aristos

11) wil: Build Y1 G3

12) Aristos: Trade R2 G2 Aristos
	wil: Beware the speech...I knew you were an aggressive violent race by all that shouting.... 

13) wil: Build Y2 Wil
	Aristos: I just like the color red, that's all.

14) Aristos: Build Y2 Aristos

15) wil: Trade Y2 R2 Wil

16) Aristos: Discover R1 Aristos G1 First

17) wil: Build Y2 Wil

18) Aristos: Move Y2 Aristos First

19) wil: Trade Y2 B2 Wil

20) Aristos: Build R2 First

21) wil: Build Y2 Wil

22) Aristos: Sacrifice G2 Aristos
Build Y2 First
Build Y3 Aristos

23) wil: Sacrifice Y2 Wil
Move B2 Wil G3
Move R2 Wil G3

24) Aristos: Sacrifice Y2 First
Move Y3 Aristos First
Move Y3 First G3

25) wil: Build Y2 G3
Catastrophe G3 Y

26) Aristos: Build Y1 First

27) wil: Build B1 G3
	wil: Sorry, that ship was contaminated with yellow fever, while we 'know' it entered our airspace for medical assistance it was to far gone and infected two of our ships as well, they all had to be quarantined back in the bank.

28) Aristos: Trade R1 B1 Aristos
	Aristos: I totally understand. I would have done the same. 

29) wil: Trade B1 Y1 G3

30) Aristos: Build B1 Aristos

31) wil: Build Y2 Wil

32) Aristos: Trade B1 R1 Aristos

33) wil: Discover Y2 Wil B3 B3

34) Aristos: Discover R2 First Y3 Second

35) wil: Build B1 G3

36) Aristos: Build R2 First

37) wil: Build R3 G3

38) Aristos: Build R3 Aristos

39) wil: Move R2 G3 First

40) Aristos: Attack R2N First

41) wil: Build R3 G3

42) Aristos: Sacrifice Y2 First
Move R1 First G3
Move R2 First G3
Catastrophe G3 Red
	Aristos: First blood.

43) wil: Trade B2 R2 G3
	wil: "I just like the color of red, that's all"
	Aristos: Yes. And I like it so much, I want *all* of it. ;-)
	Aristos: sacrifice y2 First
move r1 First g3
move r2 First g3
catastrophe g3 red

44) Aristos: Build Y2 First
	Aristos: I felt bad about taking all the red, so I decided to share with you. I'm not sure what went wrong in the transfer. 

45) wil: Build G1 Wil

46) Aristos: Move Y2 First B3

47) wil: Discover G1 Wil Y3 Y3
	Aristos: You are one move ahead of me on every branch. I think I paid too much to get ahead of you on size 3 ships.

48) Aristos: Sacrifice R1 Aristos
Attack Y2 B3

49) wil: Build Y2 G3
	wil: What do you mean, ahead on every branch?  I feel like I haven't yet come close to learning this game.

	Aristos: I feel like I'm short one move -- if I build, I open you up to a much more successful build unless I can build twice. If I move to attack, I end up short enough ships to defend afterward. It's like I'm one move out of sync with every strategy that I can come up with. I lost tempo when I attacked... I still think it was a good move because the extra size 3 ship puts me ahead, but I can't figure anything to *do* with it. It's like I'm just in a holding pattern, unable to advance now. 

50) Aristos: Build R1 Aristos
	wil: Have no fear...I will make some mistake which you can capitalize.

51) wil: Sacrifice G1 Y3
Build Y3 Wil

52) Aristos: Move R3 Aristos First

53) wil: Trade Y2 B2 G3

54) Aristos: Move R3 First G3

55) wil: Build R1 G3

56) Aristos: Build R3 First

57) wil: Build R3 G3
Catastrophe G3 R

58) Aristos: Move R3 First G3
	wil:  	
"I just like the color of red, that's all" 

59) wil: Discover B2 G3 G1 G1

60) Aristos: Sacrifice R2 First
Attack Y1 G3
Attack B1 G3
	wil: I've flumoxed this up

61) wil: Trade Y1 R1 Wil
	Aristos: Believe it or not, I don't think you made a mistake until you just now triggered the catastrophe in red. You made an excellent play and caught up on the number of size-3 ships. I piled into your g3 system. I *think* your better move, rather than catastrophe me, was to keep advancing your blue ships toward my homeworld. If I took the time to actually capture some of your ships, I think you would have beaten me home. By triggering the catastrophe, you actually lost more ground than I did -- yes, I lost a size-3 ship, but you lost a size-2 and a size-1 AND you lost a turn. I don't have any pressure on me now, so I was free to use my other red ship to come right back into the system. 

You've fought very well, and I certainly wouldn't call the game at this point. I may have a small advantage now, but it isn't enough to declare victory by any means! Game on!

62) Aristos: Build R2 G3
	wil: I considered that, but I figured you'd sack your r3 and take them all in one fell swoop and then I'd be right where I am now, except you could grow another R3 and I couldn't.

63) wil: Build G1 Wil
	Aristos: Perhaps. I didnt think it was worth the expense, but I guess you couldn't know what was in my head. :-)
	Aristos: Wow. That was almost a disaster.

64) Aristos: Sacrifice Y2 B3
Move R2 G3 Wil
Move R2 Second Wil
Catastrophe Wil Red

65) wil: Trade G1 R1 Wil

66) Aristos: Move R3 G3 G1
	Aristos: Listening to a new piece of music I found online... to the tune of "Carry On, My Wayward Son":
"Those carry ons must weigh a ton... each passenger's allowed just one... so give my weary arms some rest... don't'cha fly no more!" 
https://origin.cdbaby.com/cd/bohnhoff3
	wil: hee hee...  sounds better than Kansas to me.


	wil: I'll just not get outta this one...thanx
	Aristos: Thanks for the game. 


24998)
Started: 2014.1.5, Ended: 2014.3.15
Participants: ts52 (S), OnePageWars (N)
Winner: ts52

1) OnePageWars: Homeworld R1 B2 G3

2) ts52: H Y3 B2 G3
	OnePageWars: gl hf!

3) OnePageWars: Build G1 Onepagewars
	ts52: Hi. Have a good game.
	ts52: Hi. Have a good game.

4) ts52: B G1 Ts52
	OnePageWars: tagg!

5) OnePageWars: Trade G1 B1 Onepagewars

6) ts52: Discover G1 Ts52 B1 Grover

7) OnePageWars: Build G1 Onepagewars

8) ts52: Build G1 Grover

9) OnePageWars: Trade G1 Y1 Onepagewars

10) ts52: Trade G1 R1 Grover

11) OnePageWars: Build Y1 Onepagewars

12) ts52: Build G1 Ts52

13) OnePageWars: Build B1 Onepagewars

14) ts52: Build R1 Grover

15) OnePageWars: Discover B1 Onepagewars G3 Rubik's_cube

16) ts52: Build R2 Grover

17) OnePageWars: Build B2 Rubik's_cube

18) ts52: Trade R2 Y2 Grover

19) OnePageWars: Build B3 Rubik's_cube

20) ts52: Build R2 Grover

21) OnePageWars: Trade B3 R3 Rubik's_cube

22) ts52: Discover R2 Grover Y3 Bigbird

23) OnePageWars: Move Y1 Onepagewars Rubik's_cube

24) ts52: D R1 Grover Y3 Zoe

25) OnePageWars: Build R2 Rubik's_cube

26) ts52: Build G1 Grover

27) OnePageWars: Move R3 Rubik's_cube Grover

28) ts52: Sacrifice Y2 Grover
Move G1 Grover Zoe
Move G1 Grover Bigbird

29) OnePageWars: Attack R1 Grover

30) ts52: B G2 Zoe

31) OnePageWars: Trade R1 Y1 Grover

32) ts52: Build R1 Bigbird

33) OnePageWars: Move R3 Grover Bigbird

34) ts52: Move R2 Bigbird Grover

35) OnePageWars: Move R3 Bigbird Grover

36) ts52: Build G2 Bigbird

37) OnePageWars: Attack R2 Grover

38) ts52: Sacrifice G2 Zoe
Build R2 Bigbird
Build R3 Zoe

39) OnePageWars: Build R3 Rubik's_cube

40) ts52: Build G2 Zoe

41) OnePageWars: Build B3 Rubik's_cube

42) ts52: Build G2 Ts52

43) OnePageWars: Move R3 Grover Bigbird

44) ts52: M R3 Zoe Grover

45) OnePageWars: Attack R2 Bigbird

46) ts52: Attack R2 Grover

47) OnePageWars: Attack G2 Bigbird

48) ts52: A Y1 Grover

49) OnePageWars: Discover R3 Rubik's_cube Y2 Hoban_washburne

50) ts52: M G2 Ts52 Grover

51) OnePageWars: Move R3 Hoban_washburne Zoe

52) ts52: Move R2 Grover Bigbird
Catastrophe Bigbird Red

53) OnePageWars: Attack G2 Zoe

54) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Zoe
Build R2 Zoe
Catastrophe Zoe Red

55) OnePageWars: Trade B3 R3 Rubik's_cube

56) ts52: Build R1 Grover

57) OnePageWars: Build B3 Rubik's_cube

58) ts52: Move R3 Grover Bigbird

59) OnePageWars: Move R3 Rubik's_cube Grover

60) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Grover
Build R2 Grover
Catastrophe Grover Red

	OnePageWars: good game, wp.
	ts52: Thanks. I wasn't so sure I'd won.


25014)
Started: 2014.1.6, Ended: 2014.6.2
Participants: Mandrel (S), wil (N)
Winner: Mandrel

1) wil: Homeworld B2 R1 G3

2) Mandrel: Homeworld B3 R2 G3
	wil: starting another prior to finishing me off on the last??

3) wil: Build G1 Wil
	Mandrel: I like to have gamea at different stages. Plus I don't think things are at all settled in the other game yet...
	wil: I don't mind at all!   I was in three games with one person, it was quite interesting looking at them.  As players response varies I like to keep 6 or more games going at once...the more the merrier as I am still way learning.

4) Mandrel: Build G1 Mandrel
	wil: I think for the first move when you select a big ship the same color little ship should come with it.

5) wil: Trade G1 R1 Wil

6) Mandrel: Trade G1 R1 Mandrel

7) wil: Build R2 Wil

8) Mandrel: B R2 Mandrel

9) wil: Trade R2 Y2 Wil

10) Mandrel: T R1 Y1 Mandrel

11) wil: Build Y1 Wil

12) Mandrel: Build G1 Mandrel

13) wil: Trade Y1 B1 Wil

14) Mandrel: B Y1 Mandrel

15) wil: Build B1 Wil

16) Mandrel: T Y1 B1 Mandrel

17) wil: Discover B1 Wil G3 G3

18) Mandrel: Discover B1 Mandrel G1 Fear

19) wil: Build B2 G3

20) Mandrel: Build B2 Fear

21) wil: Build B3 Wil

22) Mandrel: T B1 R1 Fear

23) wil: Trade B3 Y3 Wil

24) Mandrel: T R2 Y2 Mandrel

25) wil: Move Y2 Wil G3

26) Mandrel: B R2 Fear

27) wil: M R1 Wil G3

28) Mandrel: T R1 Y1 Fear

29) wil: D B2 G3 G1 G1

30) Mandrel: B G2 Mandrel

31) wil: Build G2 Wil

32) Mandrel: Move G1 Mandrel Fear

33) wil: Build Y1 G3

34) Mandrel: Trade Y1 R1 Mandrel

35) wil: M Y1 G3 G1

36) Mandrel: D G1 Fear B3 George

37) wil: B Y1 Wil

38) Mandrel: Build Y2 Mandrel

39) wil: S G3 Wil
B R2 G3
B Y3 G3
B Y3 G1

40) Mandrel: S G3 Mandrel
Build G2 George
Build G3 Mandrel
Build R3 Fear

41) wil: B G3 Wil
	wil: 4 moves to mate. (He says not very confidently at all)
	wil: All planets must align, and the moon be in aquarius...

42) Mandrel: M R3 Fear George
	Mandrel: I fear you may be correct.
	Mandrel: I'm muttering incantations to gain favour from the Fates.

43) wil: S Y3 G1
M B1 G3 G1
M B1 G1 Mandrel
M B2 G1 Mandrel
	wil: Your incantations worked...I can't see whatever I thought I saw and I left myself no notes!

44) Mandrel: S R2 Fear
Attack B1N Mandrel
Attack B2N Mandrel
	Mandrel: I fear that it is undoubtedly only a stay of execution. 

45) wil: S Y3 G3
M B1 Wil G3
M B1 G3 G1
M B1 G1 Mandrel
C Mandrel B
	wil: Yes, I think I've come to my senses and quit wasting time.  Any preferences for last meal?

46) Mandrel: M R1 Mandrel G3

47) wil: S G3 Wil
B G3 Wil
B Y3 G3
B Y3 G1

48) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build R2 G3
Build R3 George
Catastrophe G3 R

49) wil: T Y1 B1 Wil
	wil: I was gonna just send a pawn in, but that looked like it was gonna get circular....

50) Mandrel: Sacrifice Y2 Mandrel
Move R3 George Wil
Move R3 George Wil

51) wil: T G2 R2 Wil
C Wil R

52) Mandrel: Move B2 Fear Wil

	wil: Sweet!  Nice plays!
	Mandrel: Good game, well played.


25077)
Started: 2014.1.6, Ended: 2014.2.15
Participants: OnePageWars (S), wil (N)
Winner: wil

1) wil: Homeworld R3 B2 G3

2) OnePageWars: Homeworld R1 B2 G3
	wil: Gonna try fortress..

3) wil: Build G1 Wil
	OnePageWars: tagg!

4) OnePageWars: Build G1 Onepagewars

5) wil: Trade G1 R1 Wil

6) OnePageWars: Trade G1 R1 Onepagewars

7) wil: Build R2 Wil

8) OnePageWars: Build R2 Onepagewars

9) wil: Trade R2 B2 Wil

10) OnePageWars: Trade R2 Y2 Onepagewars

11) wil: Build R2 Wil

12) OnePageWars: Build R2 Onepagewars

13) wil: Trade R2 Y2 Wil

14) OnePageWars: Trade R2 G2 Onepagewars

15) wil: Build R2 Wil
	OnePageWars: These are some early size twos that we're getting. :) It's amazing how quickly each game I play diverges from every other I have ever played.

16) OnePageWars: Build R2 Onepagewars
	wil: Yes they can be quite different.

17) wil: Discover R2 Wil G1 G1

18) OnePageWars: Discover R2 Onepagewars G3 Hi____

19) wil: Discover R1 Wil B1 B1
	OnePageWars: I was hoping it would run the underscores together and then you would have a really hard time moving to my world :)

20) OnePageWars: Build Y1 Onepagewars

21) wil: Build G1 Wil

22) OnePageWars: Move Y1 Onepagewars Hi____

23) wil: Move G1 Wil B1

24) OnePageWars: Move R2 Hi____ B1

25) wil: Build R2 G1

26) OnePageWars: Move R1 Onepagewars Hi____

27) wil: Sacrifice Y2 Wil
Move B2 Wil G1
Move R2 G1 Hi____

28) OnePageWars: Build R3 Hi____
	wil: I like 'lets see what happens' moves.

29) wil: Build R3 G1

30) OnePageWars: Attack R2 Hi____

31) wil: Trade R3 Y3 G1
	OnePageWars: So much red tech.

32) OnePageWars: Discover R2 Hi____ G2 Hola__

33) wil: Build R3 G1
	OnePageWars: Close game, afaict.

34) OnePageWars: Attack G1 B1

35) wil: Build Y1 G1

36) OnePageWars: Build Y1 Onepagewars

37) wil: Move Y1 G1 Wil

38) OnePageWars: Build Y2 Hi____

39) wil: Build Y2 G1

40) OnePageWars: Discover Y1 Hi____ G2 Hey___

41) wil: Build Y3 Wil

42) OnePageWars: Build Y3 Hi____

43) wil: Move Y3 G1 Hola__

44) OnePageWars: Move R3 Hi____ Hey___

45) wil: Sacrifice R1 B1
Attack R2 Hola__

46) OnePageWars: Trade G1 B1 B1

47) wil: Build G1 Wil

48) OnePageWars: Move Y2 Hi____ B1

49) wil: Move Y3 Hola__ B1

50) OnePageWars: Sacrifice Y2 B1
Move R2 B1 Hey___
Move B1 B1 Hey___

51) wil: Build Y2 G1

52) OnePageWars: Move G2 Onepagewars Hi____

53) wil: Discover Y3 B1 B3 B3

54) OnePageWars: Build B1 Hey___

55) wil: Build B1 G1

56) OnePageWars: Move B1 Hey___ G1

57) wil: Move B1 G1 B3

58) OnePageWars: Build B3 Hey___

59) wil: Trade B1 G1 B3

60) OnePageWars: Build B1 G1

61) wil: Move B2 G1 Hola__

62) OnePageWars: Move R3 Hey___ Hi____

63) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 Hola__
Build R1 Hola__

64) OnePageWars: Move B1 Hey___ Hi____

65) wil: Attack B1 G1

66) OnePageWars: Pass

67) wil: Move G1 Wil G1

68) OnePageWars: Pass

69) wil: Sacrifice Y3 Wil
Move G1 B3 G1
Move G1 G1 Hi____
Move G1 G1 Hi____
Catastrophe Hi____ G

70) OnePageWars: Build Y3 Hey___

71) wil: Build Y3 Wil

72) OnePageWars: Build G1 Onepagewars

73) wil: Trade B3 G3 Hola__

74) OnePageWars: Discover G1 Onepagewars B3 Yippee

75) wil: Move R2 G1 Yippee



24922)
Variants: "Hard time"
Started: 2014.1.7, Ended: 2014.1.7
Participants: balon (S), Marmalade (N)
Winner: Marmalade



25097)
Variants: "Hard time"
Started: 2014.1.7, Ended: 2014.2.8
Participants: OnePageWars (S), foksieloy (N)
Winner: foksieloy

1) foksieloy: Homeworld R1 B3 G3

2) OnePageWars: Homeworld R2 B1 G3
	foksieloy: Howdy, good luck and have fun! :)

3) foksieloy: Build G1 Foksieloy

4) OnePageWars: Build G1 Onepagewars
	OnePageWars: gl hf!

5) foksieloy: Trade G1 Y1 Foksieloy

6) OnePageWars: Trade G1 Y1 Onepagewars

7) foksieloy: Build G1 Foksieloy

8) OnePageWars: Build G1 Onepagewars

9) foksieloy: Trade G1 B1 Foksieloy

10) OnePageWars: Trade G1 B1 Onepagewars

11) foksieloy: Build G1 Foksieloy

12) OnePageWars: Build B2 Onepagewars

13) foksieloy: Trade G3 Y3 Foksieloy

14) OnePageWars: Discover B2 Onepagewars G3 Hydrogen

15) foksieloy: Build G1 Foksieloy

16) OnePageWars: Build B2 Hydrogen

17) foksieloy: Discover B1 Foksieloy G2 Tibbers

18) OnePageWars: Trade B2 Y2 Hydrogen

19) foksieloy: Build B2 Tibbers
	OnePageWars: Flash into Tibbers stun OP! :)

20) OnePageWars: Build B2 Hydrogen

21) foksieloy: Sacrifice Y1 Foksieloy
Discover B1 Tibbers G3 Valor
	foksieloy: Annie now has blue :P
	OnePageWars: Is it a supp Annie? If so, then at least your mid doesn't have it.

22) OnePageWars: Trade B2 R2 Hydrogen

23) foksieloy: Build B2 Valor

24) OnePageWars: Build B3 Hydrogen

25) foksieloy: Build B3 Tibbers

26) OnePageWars: Trade B3 R3 Hydrogen

27) foksieloy: Trade B3 R3 Tibbers

28) OnePageWars: Build B3 Hydrogen

29) foksieloy: Build B3 Tibbers

30) OnePageWars: Build Y1 Hydrogen

31) foksieloy: Trade B2 Y2 Tibbers

32) OnePageWars: Trade Y1 G1 Hydrogen

33) foksieloy: Sacrifice Y2 Tibbers
Move B2 Valor Onepagewars
Move B1 Valor Onepagewars
Catastrophe Onepagewars Blue

	OnePageWars: good game.
	foksieloy: Good game!


24978)
Variants: "Hard time"
Started: 2014.1.7, Ended: 2014.3.8
Participants: Grosseteste (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) Grosseteste: Homeworld G3 B1 R3
	wil: thx for the game!

3) wil: Build G1 Wil
	Grosseteste: My first ever SDG game.  Good Luck!
	Grosseteste: My first ever SDG game.  Good Luck!

4) Grosseteste: Build R1 Grosseteste
	wil: first sdg?  have you played homeworlds?
	Grosseteste: Only a couple games of solitaire. A big part of the reason I joined SDG is to make sure I'm playing it right before I inflict it on friends :)

5) wil: Trade G1 R1 Wil
	wil: solitaire homworlds??  playing both sides?

6) Grosseteste: Trade R1 Y1 Grosseteste

7) wil: Build G1 Wil

8) Grosseteste: Discover Y1 Grosseteste G2 Luce
	Grosseteste: How did I undo that?
	Grosseteste: How did I undo that?
	Grosseteste: And yes, playing both sides.  Unitary Homeworlds?
	wil: you get one undo...it appears you may have pushed the button twice?

9) wil: Trade G1 B1 Wil

10) Grosseteste: Build Y1 Luce

11) wil: Trade B1 Y1 Wil
	wil: You've got the right idea...but you should have built another yellow before you moved one out so you could build in multiple locations...

12) Grosseteste: Build Y2 Luce
	Grosseteste: Thanks; also, could you tell me what "hard time" is?
	wil: hard time means that if you don't play in so many days you automatically resign....
	wil: hard time means that if you don't play in so many days you automatically resign....

13) wil: Build Y2 Wil

14) Grosseteste: Sacrifice Y2 Luce
Discover Y1 Luce G1 Colore
Discover Y1 Luce B1 Compotus

15) wil: Trade Y1 B1 Wil

16) Grosseteste: Trade Y1 G1 Compotus

17) wil: Build B2 Wil
	wil: since you can only travel from a star that is not the same size as your own, your goal is to place ships within range of my homweworld, and me in range of yours...going to a star two moves away from either of us is typically used as a safe zone, sort of counter productive toward attacking..(he says as is opponent amasses armament to beat him rudely 20 moves from now.

18) Grosseteste: Build G1 Compotus
	wil: b b2 wil

19) wil: Discover B2 Wil G3 G3

20) Grosseteste: Build G2 Compotus

21) wil: Build B2 G3

22) Grosseteste: Trade G2 Y2 Compotus

23) wil: Build B3 G3

24) Grosseteste: Build R1 Grosseteste

25) wil: Trade B3 Y3 G3

26) Grosseteste: Trade R3 B3 Grosseteste

27) wil: Build B3 G3

28) Grosseteste: Build R2 Grosseteste

29) wil: Build B3 Wil

30) Grosseteste: Trade R2 Y2 Grosseteste

31) wil: Sacrifice B2 G3
Trade B3 R3 G3
Trade B3 Y3 Wil

32) Grosseteste: Build R2 Grosseteste

33) wil: Build B2 G3

34) Grosseteste: T R2 G2 Grosseteste

35) wil: Discover B2 G3 G2 G2

36) Grosseteste: Trade B3 Y3 Grosseteste

37) wil: Build G2 Wil

38) Grosseteste: Build R2 Grosseteste

39) wil: Sacrifice G3 Wil
Build B3 G2
Build B3 G2
Build G3 Wil

40) Grosseteste: Sacrifice Y3 Grosseteste
Move G1 Compotus G2
Move G1 Compotus G2
Move G2 Grosseteste G2
Catastrophe G2 Green

41) wil: Build B2 G3

42) Grosseteste: Build Y1 Grosseteste

43) wil: Build B3 G3

44) Grosseteste: Build Y1 Colore

45) wil: Discover B3 G3 G2 G2

46) Grosseteste: Build Y3 Grosseteste

47) wil: Sacrifice Y2 Wil
Move Y3 G3 G2
Move Y3 G2 Grosseteste
Catastrophe Grosseteste Y

48) Grosseteste: S Y2 Compotus
Move Y1 Colore G2
Move Y1 G2 Grosseteste

49) wil: Sacrifice G3 Wil
Build B1 G3
Build B3 G2
Build B3 Wil

50) Grosseteste: B Y1 Grosseteste

51) wil: Sacrifice B2 G3
Trade B3 Y3 G2
Trade B3 G3 Wil

52) Grosseteste: T R2 G2 Grosseteste
	wil: I believe I could have ended this by sacking my transportfule and moving my bigBhind intoyour homeworld...then sacking my armor next move and attacking whatever is in your homeworld...but i always miss something...so I figured I'd play it safe and do a little nuclear proliferation
	Grosseteste: Cool.  You may have noticed that I'm squeezing all the tactical analysis I can out of this one.

53) wil: Move B3 G2 Grosseteste

54) Grosseteste: Trade R1 G1 Grosseteste

55) wil: Sacrifice R3 G3
Attack G2 Grosseteste
Attack G1 Grosseteste
Attack Y1 Grosseteste

56) Grosseteste: Build Y2 Grosseteste

57) wil: Build Y2 Grosseteste
Catastrophe Grosseteste Y

	wil: Well, there was a lot to analyze there!  If you desire more analysis, I am always willing to play..and my belief in this game is you learn by losing (take a look at how many losses I've achieved!!)
	Grosseteste: Thanks for the game!


25096)
Variants: "Hard time"
Started: 2014.1.9, Ended: 2014.2.23
Participants: Mandrel (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld B1 R2 G3

2) Mandrel: H R3 B2 G3

3) TeeTeeTee: Build G1 Teeteetee
	Mandrel: Have a good game

4) Mandrel: Build G1 Mandrel

5) TeeTeeTee: Trade G1 Y1 Teeteetee
	TeeTeeTee: You too!

6) Mandrel: T G1 Y1 Mandrel

7) TeeTeeTee: Build G1 Teeteetee

8) Mandrel: B G1 Mandrel

9) TeeTeeTee: Discover G1 Teeteetee Y3 Barbican

10) Mandrel: D G1 Mandrel R1 District

11) TeeTeeTee: Build Y1 Teeteetee

12) Mandrel: Build Y2 Mandrel

13) TeeTeeTee: Discover Y1 Teeteetee G3 Temple

14) Mandrel: M Y1 Mandrel District

15) TeeTeeTee: Build Y2 Temple

16) Mandrel: Build Y2 District

17) TeeTeeTee: Build Y3 Teeteetee

18) Mandrel: Build Y3 Mandrel

19) TeeTeeTee: Discover Y1 Temple B1 Victoria

20) Mandrel: Move Y2 Mandrel Victoria

21) TeeTeeTee: Sacrifice G1 Barbican
Build Y3 Temple

22) Mandrel: Move Y1 District Temple

23) TeeTeeTee: Move Y3 Temple District

24) Mandrel: B G1 Mandrel

25) TeeTeeTee: Trade Y1 B1 Teeteetee

	Mandrel: So sorry to have let this game slide, I can't always keep up as well as I'd like.


25138)
Variants: "Hard time"
Started: 2014.1.11, Ended: 2014.1.21
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) ts52: Homeworld Y3 B1 G3

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52

5) wil: Trade G1 B1 Wil

6) ts52: Discover G1 Ts52 B2 Gonzo

7) wil: Build B2 Wil

8) ts52: Build G1 Ts52

9) wil: Trade B2 Y2 Wil

10) ts52: Trade G1 Y1 Ts52

11) wil: Build B2 Wil

12) ts52: Move Y1 Ts52 Gonzo

13) wil: Discover B2 Wil G3 G3

14) ts52: Build G1 Ts52

15) wil: Build B2 Wil

16) ts52: Build Y1 Gonzo

17) wil: Build B3 G3

18) ts52: Trade Y1 R1 Gonzo
	ts52: This isn't looking too good for me.

19) wil: Trade B3 R3 G3

20) ts52: Build R1 Gonzo
	wil: I'm afraid for whatever shoe to drop...

21) wil: Build B3 G3
	ts52: I don't think there's a shoe. You just managed to get a good head start to get to large ships faster. Well played.

22) ts52: Build Y1 Gonzo
	wil: Yes, but I feel I need to pinchmyself, it is like dream....and learn how to duplicate that.

23) wil: T B3 Y3 G3

24) ts52: Build G1 Gonzo

25) wil: Build B3 G3

26) ts52: Build G2 Gonzo

27) wil: Move B3 G3 Gonzo

28) ts52: Move G2 Gonzo G3

29) wil: Sacrifice R3 G3
Attack G2 G3
Attack R1 Gonzo
Attack R1 Gonzo

30) ts52: Trade G3 R3 Ts52

31) wil: Sacrifice G2 G3
Build B3 G3
Build B3 Gonzo

32) ts52: Move G1 Gonzo G3
	wil: I suppose I coulda just sent the two red ones in...and then grew them...  if you changed again sent in a queen... I don't always see the endings right.

33) wil: Trade B3 R3 G3

34) ts52: Move G1 Gonzo G3

35) wil: Sacrifice Y2 Wil
Move B3 Gonzo Ts52
Move B3 Gonzo Ts52

36) ts52: Build G2 G3
Catastrophe G3 Green

37) wil: Sacrifice R1 Gonzo
Attack R3 Ts52

38) ts52: Build G1 Ts52

39) wil: Sacrifice R3 Ts52
Attack G1 Ts52
Attack G1 Ts52
Attack Y1 Gonzo
	ts52: Thanks for the game. I look forward to the next one.
	wil: I was hopin I'd stay one step ahead...I've been one step behind so many times..
	wil: Thank you...anytime, learning this is a blast.



25139)
Variants: "Hard time"
Started: 2014.1.12, Ended: 2014.2.3
Participants: zoltar (S), Aristos (N)
Winner: zoltar

1) Aristos: Homeworld G3 B2 Y3

2) zoltar: Homeworld B1 Y2 G3
	Aristos: Well met, Zoltar. I do not believe we have played each other before. Please forgive and remind me if my memory is faulty. 

3) Aristos: Build Y1 Aristos
	zoltar: I don't think we have. I don't play very often.

4) zoltar: Build G1 Zoltar

5) Aristos: Discover Y1 Aristos G1 Glow

6) zoltar: Discover G1 Zoltar B3 Bluecheese

7) Aristos: Build Y1 Aristos

8) zoltar: Build G1 Zoltar

9) Aristos: Build Y1 Glow

10) zoltar: Build G2 Bluecheese

11) Aristos: Build Y2 Glow

12) zoltar: Trade G2 Y2 Bluecheese

13) Aristos: Build Y3 Aristos

14) zoltar: Build Y3 Bluecheese

15) Aristos: Sacrifice Y2 Glow
Move Y1 Glow Bluecheese
Move Y1 Glow Bluecheese
Catastrophe Bluecheese Yellow

16) zoltar: Build G1 Bluecheese

17) Aristos: Trade Y3 G3 Aristos
	zoltar: Ouch. Haven't played much lately and fell for an opening trap. Looks like I'm pretty much lost already! Well done.

18) zoltar: Build G2 Bluecheese
	zoltar: I would normally resign here, but I'll play on a few more moves, as it's a 'ladder' game.
	Aristos: I've screwed up leads like this before, but I'm going to try very hard not to do that this time. 

19) Aristos: Discover G3 Aristos Y1 Spark

20) zoltar: Trade G2 Y2 Bluecheese

21) Aristos: Trade Y1 R1 Aristos
	Aristos: See, like that... I almost screwed it up. 

22) zoltar: Build G2 Bluecheese

23) Aristos: Build R1 Aristos

24) zoltar: Trade G1 R1 Zoltar

25) Aristos: Move R1 Aristos Spark

26) zoltar: Discover G2 Bluecheese B1 Blueberry

27) Aristos: Build R2 Spark

28) zoltar: Build R2 Zoltar

29) Aristos: Build Y1 Aristos

30) zoltar: Build G1 Zoltar

31) Aristos: Discover G3 Spark B3 Blaze

32) zoltar: Sacrifice G3 Zoltar
Build G2 Blueberry
Build G2 Blueberry
Build G3 Zoltar

33) Aristos: Move R1 Spark Blaze

34) zoltar: Move R2 Zoltar Bluecheese

35) Aristos: Sacrifice G3 Blaze
Build R2 Aristos
Build R3 Blaze
Build R3 Spark

36) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build G3 Bluecheese
Build R3 Bluecheese

37) Aristos: Discover R3 Spark Y2 Shine

38) zoltar: Move R3 Bluecheese Blueberry
	zoltar: I think I finally have compensation for the extra large ship, though I've been wondering just how many extra smaller ships do I need to make up for a large one. 

39) Aristos: Move R2 Spark Shine
	Aristos: > just how many extra smaller ships do I need 
> to make up for a large one

Typically, a lot, though I've never been sure why. I just know that when I've gotten behind with other players, it goes badly, but that could just be a reflection of me playing badly in the first place and then continuing to do so. Correlation does not equal causation. :-)

40) zoltar: Trade G3 Y3 Bluecheese

41) Aristos: Trade R3 G3 Blaze

42) zoltar: Build R3 Blueberry
	zoltar: The best player I know, Andy Looney, said that your side of the game he'd rather play (I showed him the position back when it was your G3 vs my 3 mediums and a small), because the game is about the big ships. One big ship can bully all the rest. Now you let me catch up by letting me get all the greens, so you couldn't move your g3 around without my blowing it up, and when you sacked it, you let me get two big ships as well the next move, so I've equalized now, but if you'd got more greens, I think you could have kept the advantage and pressed it.
	Aristos: I realize that now... I thought that by popping it to pick up more of the red that I'd be able to threaten you the way you were threatening me. 
	Aristos: I've definitely lost that momentum now.

43) Aristos: Discover Y1 Aristos B1 Flicker

44) zoltar: Trade R3 Y3 Blueberry

45) Aristos: Build R3 Blaze

46) zoltar: Sacrifice G3 Zoltar
Build G3 Zoltar
Build Y1 Blueberry
Build Y1 Blueberry

47) Aristos: Move Y1 Flicker Blaze

48) zoltar: Move Y3 Blueberry Aristos

	Aristos: Well done. I see the end. 
	zoltar: Thanks. Interesting that neither one of us ever got a blue piece. I hought about it, but never had the time. At the beginning I had no time to waste stopping you from getting all the yellows, and even so I let you get the extra large piece, and after that it always seemed better to grow new pieces on blue stars rather than get any blue pieces. In fact all the starts I created were blue. And at the end I realized if I could just trade and get yellows I would have a winning attack, so again I didn't need blue, and didn't care if you get the r3 and g3 I was trading in for the Y3s.


25128)
Started: 2014.1.12, Ended: 2014.2.24
Participants: OnePageWars (S), sleepinggreenideas (N)
Winner: sleepinggreenideas

1) sleepinggreenideas: Homeworld Y3 B1 G3

2) OnePageWars: Homeworld R1 B2 G3

3) sleepinggreenideas: Build G1 Sleepinggreenideas
	OnePageWars: gl hf!

4) OnePageWars: Build G1 Onepagewars

5) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas

6) OnePageWars: Build G1 Onepagewars

7) sleepinggreenideas: Discover R1 Sleepinggreenideas B2 Hello

8) OnePageWars: Trade G1 Y1 Onepagewars

9) sleepinggreenideas: Build G1 Sleepinggreenideas

10) OnePageWars: Build Y1 Onepagewars

11) sleepinggreenideas: Move G1 Sleepinggreenideas Hello

12) OnePageWars: Discover Y1 Onepagewars G3 Anivia

13) sleepinggreenideas: Trade G1 Y1 Hello

14) OnePageWars: Build Y2 Onepagewars

15) sleepinggreenideas: Build G1 Sleepinggreenideas

16) OnePageWars: Trade G1 B1 Onepagewars

17) sleepinggreenideas: Move R1 Hello Anivia

18) OnePageWars: Trade Y2 R2 Onepagewars

19) sleepinggreenideas: Build R1 Anivia

20) OnePageWars: Move R2 Onepagewars Anivia

21) sleepinggreenideas: Build R2 Anivia

22) OnePageWars: Build Y2 Anivia
Catastrophe Anivia R

23) sleepinggreenideas: Sacrifice G1 Sleepinggreenideas
Build Y2 Hello

24) OnePageWars: Build G1 Onepagewars

25) sleepinggreenideas: Build G1 Sleepinggreenideas

26) OnePageWars: Trade G1 R1 Onepagewars

27) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas

28) OnePageWars: Build R2 Onepagewars

29) sleepinggreenideas: Build R2 Sleepinggreenideas

30) OnePageWars: Move R2 Onepagewars Anivia

31) sleepinggreenideas: Trade Y1 G1 Hello

32) OnePageWars: Build R2 Anivia

33) sleepinggreenideas: Build G1 Hello

34) OnePageWars: Build R3 Onepagewars
	sleepinggreenideas: Try get red ships into pnrpagewars by discovering new universe
	sleepinggreenideas: With gorillas.

35) sleepinggreenideas: Move R2 Sleepinggreenideas Hello

36) OnePageWars: Sacrifice Y2 Anivia
Move R3 Onepagewars Anivia
Move R3 Anivia Hello

37) sleepinggreenideas: Build R3 Hello

38) OnePageWars: Attack R3 Hello

39) sleepinggreenideas: Build R3 Hello
Catastrophe Hello Red

40) OnePageWars: Move R2 Anivia Hello

41) sleepinggreenideas: Sacrifice R1 Sleepinggreenideas
Attack R2S Hello



24999)
Variants: "Hard time"
Started: 2014.1.13, Ended: 2014.2.9
Participants: SilentTitan (S), sleepinggreenideas (N)
Winner: SilentTitan

1) sleepinggreenideas: Homeworld G1 Y3 B3

2) SilentTitan: Homeworld R1 B2 G3

3) sleepinggreenideas: Build B1 Sleepinggreenideas

4) SilentTitan: Build G1 Silenttitan

5) sleepinggreenideas: Build B1 Sleepinggreenideas

6) SilentTitan: Trade G1 Y1 Silenttitan

7) sleepinggreenideas: Discover B1 Sleepinggreenideas G2 Alpha

8) SilentTitan: Build Y1 Silenttitan

9) sleepinggreenideas: Trade B1 G1 Sleepinggreenideas

10) SilentTitan: Build Y1 Silenttitan

11) sleepinggreenideas: Build B1 Sleepinggreenideas

12) SilentTitan: Discover Y1 Silenttitan B3 Sol

13) sleepinggreenideas: Build B1 Alpha

14) SilentTitan: Build G1 Silenttitan

15) sleepinggreenideas: Build B2 Alpha

16) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Sol
Build Y2 Silenttitan

17) sleepinggreenideas: Trade B1 R1 Alpha

18) SilentTitan: Discover Y2 Sol G2 Soul

19) sleepinggreenideas: Trade B3 R3 Sleepinggreenideas

20) SilentTitan: Discover Y1 Silenttitan G3 Sole

21) sleepinggreenideas: Build B1 Alpha

22) SilentTitan: Build Y3 Silenttitan

23) sleepinggreenideas: Build B2 Sleepinggreenideas

24) SilentTitan: Build Y3 Sole

25) sleepinggreenideas: Build B3 Sleepinggreenideas

26) SilentTitan: Discover Y1 Sole G2 Tic

27) sleepinggreenideas: Trade B2 R2 Alpha

28) SilentTitan: Build G3 Silenttitan

29) sleepinggreenideas: Trade B3 G3 Sleepinggreenideas

30) SilentTitan: Sacrifice Y3 Sole
Move G1 Silenttitan Sol
Move G1 Sol Tic
Move G1 Tic Sleepinggreenideas
Catastrophe Sleepinggreenideas Green

	sleepinggreenideas: Thanks for the game.
	SilentTitan: Yeah. Thank you.


25142)
Variants: "Hard time"
Started: 2014.1.14, Ended: 2014.1.29
Participants: fogus (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) fogus: Homeworld R1 B2 G3
	SilentTitan: Welcome and good luck
	fogus: I've only a few games under my belt, but I will try my best to provide a challenge.

3) SilentTitan: Build G1 Silenttitan

4) fogus: Build G1 Fogus

5) SilentTitan: Trade G1 Y1 Silenttitan

6) fogus: Trade G1 Y1 Fogus

7) SilentTitan: Build G1 Silenttitan

8) fogus: Build G1 Fogus

9) SilentTitan: Trade G1 R1 Silenttitan
	fogus: I'm not really trying to mirror you... it just seems that way. ;-)

10) fogus: Trade G1 B1 Fogus
	SilentTitan: The first three to five moves of most games are mirrored.

11) SilentTitan: Build R2 Silenttitan

12) fogus: Build Y1 Fogus
	fogus: I'm already feeling the resource squeeze.  :-O

13) SilentTitan: Build Y2 Silenttitan

14) fogus: Trade Y1 B1 Fogus

15) SilentTitan: Build G1 Silenttitan

16) fogus: Build G1 Fogus

17) SilentTitan: Discover R1 Silenttitan G3 Sol

18) fogus: Discover B1 Fogus Y3 Bacon

19) SilentTitan: Sacrifice G3 Silenttitan
Build R2 Sol
Build R2 Sol
Build R3 Silenttitan

20) fogus: Build B1 Fogus
	fogus: Uh oh.
	fogus: I'm still learning, but that looks bad to me.  :p
	SilentTitan: Yeah.... Not so good.

21) SilentTitan: Move R3 Silenttitan Bacon

22) fogus: Move B1 Fogus Bacon

23) SilentTitan: Sacrifice G1 Silenttitan
Build R3 Bacon
	SilentTitan: Ok.... You need to take your turn back and make another choice,  otherwise I will just call for a catastrophe in your homeworld on blue.
	fogus: Oh.. Stars count for catastrophes also?! I didn't know that.

24) fogus: Trade B1 Y1 Bacon

25) SilentTitan: Sacrifice Y2 Silenttitan
Move R3 Bacon Fogus
Move R3 Bacon Fogus

26) fogus: Build Y2 Fogus

27) SilentTitan: Sacrifice R3 Fogus
Attack G3 Fogus South
Attack Y2 Fogus South
Attack Y1 Fogus South

	fogus: I believe that about does it for me.  Wow.  That was a lesson in resource strangulation.  Thank you for the game.
	SilentTitan: Thank you for playing.


25162)
Variants: "Hard time"
Started: 2014.1.16, Ended: 2014.4.14
Participants: ajo (S), MagicJohn (N)
Winner: ajo

1) MagicJohn: Homeworld B3 R2 G3

2) ajo: Homeworld R1 B2 G3

3) MagicJohn: Build G1 Magicjohn

4) ajo: Build G1 Ajo

5) MagicJohn: Trade G1 Y1 Magicjohn

6) ajo: Trade G1 Y1 Ajo

7) MagicJohn: Build G1 Magicjohn

8) ajo: Build G1 Ajo

9) MagicJohn: Discover G1 Magicjohn R1 Prancer

10) ajo: Discover G1 Ajo B3 Alpha

11) MagicJohn: Build G1 Magicjohn

12) ajo: Build G2 Ajo

13) MagicJohn: Trade G1 R1 Magicjohn

14) ajo: Trade G2 R2 Ajo

15) MagicJohn: Discover R1 Magicjohn B1 Comet

16) ajo: Build G1 Ajo

17) MagicJohn: Build G2 Magicjohn

18) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Alpha
Build G3 Ajo

19) MagicJohn: Build G3 Magicjohn
	ajo: Agh. I tried to build "g3 g2 g2" and then forgot to switch the system names around when I had to switch it to "g2 g2 g3".

20) ajo: Trade G2 Y2 Alpha
	MagicJohn: I don't mind redos, no need explain. I make enough mistakes tyypiing that other folks mistakes pale in comparison. I still feel like a newbie at the game and appreciate any critiques/discussions that others might offer as post scrips.

21) MagicJohn: Trade G2 Y2 Magicjohn

22) ajo: Move G2 Alpha Prancer

23) MagicJohn: Move Y2 Magicjohn Comet

24) ajo: Attack G1 Prancer

25) MagicJohn: Move G3 Magicjohn Comet

26) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Prancer
Build G3 Ajo

27) MagicJohn: Sacrifice G3 Comet
Build R2 Comet
Build R3 Comet
Build G3 Magicjohn

28) ajo: Sacrifice Y2 Alpha
Move G1 Prancer Magicjohn
Move G2 Prancer Magicjohn
Catastrophe Magicjohn Green

29) MagicJohn: Move R3 Comet Magicjohn

30) ajo: Sacrifice G3 Ajo
Build G1 Prancer
Build G2 Alpha
Build G3 Ajo

31) MagicJohn: Trade R3 G3 Magicjohn

32) ajo: Trade G2 Y2 Alpha

33) MagicJohn: Trade R2 G2 Comet

34) ajo: Trade G1 B1 Alpha

35) MagicJohn: Build R2 Comet

36) ajo: Sacrifice G3 Ajo
Build G1 Prancer
Build G3 Ajo
Build G3 Alpha

37) MagicJohn: Trade R2 B2 Comet

38) ajo: Sacrifice Y2 Alpha
Move G1 Prancer Magicjohn
Move G1 Prancer Magicjohn

39) MagicJohn: Trade G3 R3 Magicjohn

40) ajo: Trade G2 Y2 Alpha
	ajo: I think that was a fatal slip…

41) MagicJohn: Build R2 Comet

42) ajo: Sacrifice G3 Ajo
Build G2 Magicjohn
Build G3 Ajo
Build G3 Alpha

43) MagicJohn: Move G2 Comet Magicjohn
Catastrophe Magicjohn Green

44) ajo: Move G3 Alpha Comet
	ajo: Wait a minute, I should make you spend that r2 first...

45) MagicJohn: Move B2 Comet Magicjohn

46) ajo: Sacrifice R2 Ajo
Attack R2 Comet
Attack Y2 Comet

47) MagicJohn: Trade B2 G2 Magicjohn

48) ajo: Attack R1 Comet

49) MagicJohn: Trade R3 Y3 Magicjohn
	ajo: If I were you, I would have sacrificed the y2 to get all those ships out of Comet, rather than letting them fall into my hands.

50) ajo: Sacrifice G2 Prancer
Build Y1 Comet
Build Y2 Alpha
	MagicJohn: Figured you needed something on which to take out your aggressive tendencies.
	MagicJohn: I did consider the sacrifice but, perhaps incorrectly, I thought that the sacrifice made placement really problematic. My Home World would be more open to catastrophe. Establishing new worlds made your sacrificing a green a more potent threat and spread my forces (small though they may be) to an even more vulnerable state. Your lead is pronounced that it's getting hard to find moves that do more good than harm.    
	MagicJohn: OOPS... make that "so pronounced".....
	ajo: Yes, you're definitely in a bad spot; but you let me sac an r2 to capture an r2 PLUS something else (i.e., strictly improve my position), plus you lost both of the ships that I captured. Sacrificing those ships would definitely have been preferable to letting me capture them.

51) MagicJohn: Discover Y1 Magicjohn G1 Donder

52) ajo: Move Y2 Alpha Donder

53) MagicJohn: Build Y3 Donder

54) ajo: Build Y3 Donder
Catastrophe Donder Yellow

55) MagicJohn: Build G1 Magicjohn

56) ajo: Build G1 Alpha

57) MagicJohn: Discover G1 Magicjohn Y1 Prancer

58) ajo: Move G3 Alpha Prancer

59) MagicJohn: Build G2 Prancer

60) ajo: Sacrifice Y2 Alpha
Move Y1 Comet Magicjohn
Move Y2 Comet Magicjohn

61) MagicJohn: Trade Y3 B3 Magicjohn

62) ajo: Trade Y1 B1 Magicjohn

63) MagicJohn: Attack Y2 Magicjohn

64) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G3 Ajo
Build B2 Magicjohn
Catastrophe Magicjohn Blue

65) MagicJohn: Move G2 Magicjohn Prancer
Catastrophe Prancer Green

66) ajo: Sacrifice Y1 Ajo
Move G3 Comet Magicjohn

67) MagicJohn: Pass

68) ajo: Attack Y2 Magicjohn
	MagicJohn: Alone in a still-savage universe.......

	ajo: Good game. :)
	MagicJohn: I tried to sail off into the sunset, or, in this case, "Elysian Fields" but the game seems to endorse the social imperative against suicide.....   
	MagicJohn: I think my game is lacking an opening strategy. I may need to base my opening moves more on a long-range goal rather than trying for small, short-term tactical advantages.
Suggestions? 
	MagicJohn: Oh..... Thanks for the game...
	ajo: Well, I'd say you should start with things like my "If I were you" comment a while back. Sure, by then you were already basically losing, but you should have recognized that that move was bad anyway. You gotta train your "muscle memory" to handle the obvious good/bad moves before you can worry about the subtler things.
	ajo: One more obvious bad move: your fifth move was to discover a red star. Red stars suck. The best stars are blue (with green a distant second, and yellow and red reserved for subtle stash-management and/or endgame positions).


25155)
Variants: "Sinister, Hard time"
Started: 2014.1.20, Ended: 2014.2.3
Participants: wil (S), TeeTeeTee (W), raster51 (N), sleepinggreenideas (E)
Winner: TeeTeeTee

1) sleepinggreenideas: Homeworld B1 Y2 G3
	wil: Well now...let's see how this goes...I've yet to see a multiple homeworlds come to a conclusion, one or more typically drop out/time out.  went 60 moves with one, and then it died.  Am down to one on one game...that may be the first that completes.  
	wil: Now if anyone wishes to play a binary game...my challenge is open, I like to keep a few games going to improve my skills.
	TeeTeeTee: I'm hoping that the (fairly fierce) +6h turn increment will keep the game moving, as the last game I played went at a snail's pace... but I think that 6 hours per turn may be a little too low; this game's outcome may well be decided by what time zones we're in. If this one falls through, I'll start a new 4-player challenge with a +12h turn increment.
	wil: I didn't notice that...I'll probably be first to fail...

2) wil: Homeworld B3 R2 G3
	wil: one down  before the kickoff...

3) TeeTeeTee: Homeworld Y1 B2 G3

4) sleepinggreenideas: Build G1 Sleepinggreenideas

5) wil: Build G1 Wil

6) TeeTeeTee: Build G1 Teeteetee
	TeeTeeTee: That's a hell of a lot of pieces in the stash.
	wil: I go to sleep and wake up finding I am now late...

Yup, huge stash for two people (the two that stick it out)
	wil: It is one more of each size than their are players...2 get three of each, 4 get five of each...  

And you just created a short universe with sleepin..odds are I'll be standing back watching the fray whilst I amass and army to take on the victor.

7) sleepinggreenideas: Trade G1 Y1 Sleepinggreenideas
	wil: b g1 wil

8) wil: Trade G1 Y1 Wil

9) TeeTeeTee: Trade G1 Y1 Teeteetee

10) sleepinggreenideas: Build G1 Sleepinggreenideas

11) wil: Build G1 Wil

12) TeeTeeTee: Build G1 Teeteetee

13) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas

14) wil: Discover G1 Wil B1 B1

15) TeeTeeTee: Trade G1 R1 Teeteetee

16) sleepinggreenideas: Build G1 Sleepinggreenideas

17) wil: Build G1 B1

18) TeeTeeTee: Build R1 Teeteetee

19) wil: Trade G1 R1 B1

20) TeeTeeTee: Build G1 Teeteetee

21) wil: Sacrifice Y1 Wil
Discover R1 B1 Y3 Y3

22) TeeTeeTee: Build Y1 Teeteetee
	wil: and then there were two

23) wil: Move R1 Y3 Sleepinggreenideas
	TeeTeeTee: Ho-hum. Six hours is too small an increment..
	wil: I don't think it is that...I think nobody commits fully to these multiplayer games.  Binary Homeworlds is great, and three way isn't bad in realtime real life....but both you can walk away and do other things while folks move...but I've yet to hear anyone say they were in one of these that made it to the end with all players staying on till they got beat...they just leave the game when they think they don't have a chance.

24) TeeTeeTee: Discover Y1 Teeteetee G3 Bow

25) wil: Attack G1E Sleepinggreenideas

26) TeeTeeTee: Move R1 Teeteetee Bow

27) wil: Attack R1E Sleepinggreenideas

28) TeeTeeTee: Build R1 Teeteetee

29) wil: Trade R1 B1 Sleepinggreenideas

30) TeeTeeTee: Build Y1 Teeteetee

31) wil: Attack Y1E Sleepinggreenideas

32) TeeTeeTee: Discover Y1 Teeteetee G3 Whitechapel

33) wil: Build Y2 Sleepinggreenideas
	sleepinggreenideas: Sorry to die like that. At least I learner something. Namely, that six hours is too short a setting...
	wil: no worries...it happens....

34) TeeTeeTee: Move Y1 Bow Sleepinggreenideas
Catastrophe Sleepinggreenideas Yellow

35) wil: Build G1 Sleepinggreenideas

36) TeeTeeTee: Trade G1 B1 Teeteetee

37) wil: Build G1 B1

38) TeeTeeTee: Move B1 Teeteetee Whitechapel

39) wil: Trade G1 Y1 B1

40) TeeTeeTee: Build G1 Teeteetee

41) wil: Build G1 Wil

42) TeeTeeTee: Build G2 Teeteetee

43) wil: Build G2 B1

44) TeeTeeTee: Move G2 Teeteetee Whitechapel

45) wil: Trade G2 R2 B1

46) TeeTeeTee: Build G2 Teeteetee

47) wil: Build G2 B1

48) TeeTeeTee: Discover G1 Teeteetee Y3 Moorgate

49) wil: Trade G2 R2 B1

50) TeeTeeTee: Move G1 Moorgate Sleepinggreenideas
Catastrophe Sleepinggreenideas Green

51) wil: Move R2 B1 Bow

52) TeeTeeTee: Sacrifice G2 Teeteetee
Build R1 Bow
Build R2 Bow
Catastrophe Bow Red

53) wil: Build G1 B1

54) TeeTeeTee: Discover G2 Whitechapel Y1 Shoreditch

55) wil: Build Y2 B1

56) TeeTeeTee: Build Y2 Whitechapel

57) wil: Discover Y2 B1 G3 G3

58) TeeTeeTee: Discover Y1 Teeteetee G3 Stratford

59) wil: Build Y2 B1

60) TeeTeeTee: Build Y2 Stratford

61) wil: Trade Y1 R1 B1

62) TeeTeeTee: Build B1 Whitechapel

63) wil: Trade G1 Y1 Wil

64) TeeTeeTee: Move Y2 Stratford Sleepinggreenideas

65) wil: Move R2 B1 Stratford

66) TeeTeeTee: Discover Y1 Stratford G1 Limehouse

67) wil: Build G1 Wil

68) TeeTeeTee: Build G1 Shoreditch

69) wil: Discover G1 Wil R1 R1

70) TeeTeeTee: Move Y2 Whitechapel R1

71) wil: Discover G1 B1 B3 B3

72) TeeTeeTee: Sacrifice G2 Shoreditch
Build Y2 Whitechapel
Build Y3 Limehouse

73) wil: Build Y3 B1

74) TeeTeeTee: Sacrifice Y2 Sleepinggreenideas
Move Y1 Whitechapel B1
Move Y2 Whitechapel B1
Catastrophe B1 Yellow

75) wil: Build G2 B1

76) TeeTeeTee: Build G2 Shoreditch

77) wil: Build G2 B3

78) TeeTeeTee: Attack G1S R1

79) wil: Sacrifice Y2 G3
Move G1 B3 Teeteetee
Move R2 Stratford Teeteetee

80) TeeTeeTee: Sacrifice R1 Teeteetee
Attack R2S Teeteetee

81) wil: Sacrifice G2 B1
Build G2 Teeteetee
Build G2 Teeteetee
Catastrophe Teeteetee G

82) TeeTeeTee: Move Y3 Limehouse B3

83) wil: Sacrifice G2 B3
Build B2 Sleepinggreenideas
Build G1 B1

84) TeeTeeTee: Sacrifice Y1 Limehouse
Move B1 Whitechapel Sleepinggreenideas
Catastrophe Sleepinggreenideas Blue

	TeeTeeTee: A wise undo: I'd already typed in my move.
	TeeTeeTee: ... what?!
I thought that, after sleepinggreenideas lost, I had to destroy you...
God, that could've ended days ago.
	TeeTeeTee: Thanks for the game, though - it's nice to play a quick-paced match for a change!
	wil: Interesting...let's play binary sometime...too many ships here...


25103)
Variants: "Hard time"
Started: 2014.1.21, Ended: 2014.1.28
Participants: wil (S), Laurie_Menke (N)
Winner: wil

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Hi, Wil!  Have fun!  :o)

2) wil: Homeworld B2 R1 G3
	wil:  a game is afoot.

3) Laurie_Menke: Build G1 Laurie_menke

4) wil: Build G1 Wil

	wil: Which way did she go?

Who's wine, what wine, where the hell did I dine?
	Laurie_Menke: Argh!  I'm sorry, Wil.  :o(  I'm an idiot.  I'm just having a hard time keeping track of everything right now.  I need about 10 more hours in every day.  ;o)  Can we try again?  I promise to play frequently!


25064)
Started: 2014.1.21, Ended: 2014.3.11
Participants: ts52 (S), CDMoose (N)
Winner: ts52

1) CDMoose: Homeworld Y3 R1 G3 *

2) ts52: Homeworld Y1 B2 G3

3) CDMoose: Build G1 Cdmoose

4) ts52: Build G1 Ts52

5) CDMoose: Discover G1 Cdmoose B2 Aqua

6) ts52: Discover G1 Ts52 B3 Grover

7) CDMoose: Pass

8) ts52: Build G1 Ts52

9) CDMoose: Build G2 Aqua

10) ts52: Build G2 Grover

11) CDMoose: Trade G2 R2 Aqua

12) ts52: Trade G1 R1 Grover

13) CDMoose: Build G1 Aqua

14) ts52: Build G2 Grover

15) CDMoose: Trade G1 Y1 Aqua

16) ts52: Trade G2 Y2 Grover

17) CDMoose: Trade G1 B1 Aqua

18) ts52: B G1 Grover



25207)
Variants: "Hard time"
Started: 2014.1.21, Ended: 2014.1.25
Participants: wil (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) wil: Homeworld R2 B1 G3
	wil: I've been months learning this game and climbing this ladder to get the chance to get my clock cleaned by the guy at the top...  (and that learning part is debatable)

3) TwoShort: Build G1 Twoshort

4) wil: Build G1 Wil

5) TwoShort: Trade G1 Y1 Twoshort
	wil: I always think the pawn of your queen color should be part of the homeworld setup...   I guess it is a safety valve should you have started a particularly embarassing opening and had to change you queen color first thing??

6) wil: Trade G1 Y1 Wil
	TwoShort: Yeah, the first turn is pretty predictable.

7) TwoShort: Build G1 Twoshort

8) wil: Build G1 Wil

9) TwoShort: Discover G1 Twoshort Y2 Yolonda

10) wil: Trade G1 B1 Wil

11) TwoShort: Build G1 Twoshort

12) wil: Build B1 Wil

13) TwoShort: Build G1 Yolonda

14) wil: Discover B1 Wil G3 G3

15) TwoShort: Discover G1 Yolonda Y3 Yoyodyne

16) wil: Build B2 G3

17) TwoShort: Build G2 Yoyodyne

18) wil: Build G2 Wil

19) TwoShort: Move G1 Yoyodyne Wil

20) wil: Trade G2 R2 Wil
	wil: OMG watha a plan

21) TwoShort: Sacrifice G3 Twoshort
Build G2 Wil
Build G2 Wil
Build G3 Yoyodyne
Catastrophe Wil Green

22) wil: Trade B1 Y1 G3
	wil: wow...did that backwards...

23) TwoShort: Move G3 Yoyodyne Wil
	TwoShort: you needed to trade 3 pointer to avoid doom.  But then I'd have grown it so it would have been ugly in any case :)

24) wil: Trade B1 G1 Wil
	wil: I expected to be slaughtered...glad I wasn't disappointed.

25) TwoShort: Attack R2 Wil

	wil: Yup, I'm a just way outta your league...although I'd like to play another...please challenge me whenever you wish to experiment...


25087)
Variants: "Hard time"
Started: 2014.1.22, Ended: 2014.1.26
Participants: Marmalade (S), ausmuh (N)
Winner: ausmuh

1) ausmuh: Homeworld B3 Y1 G3

2) Marmalade: Homeworld G2 Y1 B3

3) ausmuh: Build G1 Ausmuh

4) Marmalade: Build B1 Marmalade

5) ausmuh: Trade G1 Y1 Ausmuh

6) Marmalade: Build B1 Marmalade

7) ausmuh: Build Y2 Ausmuh

8) Marmalade: Discover B1 Marmalade G3 Groob

9) ausmuh: Discover Y2 Ausmuh G2 Gwar

10) Marmalade: Build B1 Marmalade

11) ausmuh: Build Y2 Gwar

12) Marmalade: Build B2 Groob

13) ausmuh: Discover Y2 Gwar B3 Bflat

14) Marmalade: Trade B2 Y2 Groob

15) ausmuh: Sacrifice G3 Ausmuh
Build Y3 Ausmuh
Build Y3 Gwar
Build Y3 Bflat

16) Marmalade: Build B2 Groob

17) ausmuh: Discover Y3 Gwar G3 Grass

18) Marmalade: Build B2 Groob

19) ausmuh: Trade Y3 R3 Ausmuh

20) Marmalade: Trade B2 R2 Groob

21) ausmuh: Build Y3 Grass

22) Marmalade: Move R2 Groob Gwar

23) ausmuh: Move Y2 Gwar Bflat

24) Marmalade: Build R1 Gwar

25) ausmuh: Trade Y2 G2 Bflat

26) Marmalade: Trade B3 G3 Marmalade

27) ausmuh: Build G1 Bflat

28) Marmalade: Build Y2 Groob

29) ausmuh: Sacrifice Y3 Grass
Move G2 Bflat Marmalade
Move G1 Bflat Marmalade
Move Y3 Grass Marmalade
Catastrophe Marmalade Green



25204)
Variants: "Hard time"
Started: 2014.1.24, Ended: 2014.2.3
Participants: radynski (S), wil (N)
Winner: radynski

1) wil: Homeworld R2 B1 G3
	wil: thank you for the game

2) radynski: Homeworld B1 G3 Y3

3) wil: Build G1 Wil

4) radynski: Build Y1 Radynski

5) wil: Trade G1 B1 Wil

6) radynski: Discover Y1 Radynski G2 George

7) wil: Build B2 Wil

8) radynski: Build Y1 George

9) wil: Trade B2 Y2 Wil

10) radynski: Discover Y1 George B3 Nexus

11) wil: Build B2 Wil

12) radynski: Build Y1 George

13) wil: Trade B2 R2 Wil

14) radynski: Build Y2 Radynski

15) wil: Build B2 Wil

16) radynski: Trade Y2 B2 Radynski

17) wil: Discover B2 Wil G3 G3

18) radynski: Build Y2 Radynski

19) wil: Build Y2 Wil

20) radynski: Build Y3 Radynski

21) wil: Move Y2 Wil G3

22) radynski: Trade Y2 R2 Radynski

23) wil: Build G1 Wil

24) radynski: Build R1 Radynski

25) wil: Move B2 G3 George

26) radynski: Sacrifice Y1 George
Move Y3 Radynski George

27) wil: Build B2 Wil

28) radynski: Sacrifice R1 Radynski
Attack B2 George

29) wil: Move B2 Wil G3

30) radynski: Move Y3 George G3

31) wil: Build Y1 G3

32) radynski: Sacrifice R2 Radynski
Attack B2 G3
Attack Y2 G3

33) wil: Build Y2 G3
Catastrophe G3 Y

34) radynski: Build B3 Radynski

35) wil: Move B1 Wil G3

36) radynski: Trade B2 R2 Radynski

37) wil: Build Y1 Wil

38) radynski: Build Y2 George

39) wil: Discover Y2 Wil B3 B3

40) radynski: Trade Y1 R1 George

41) wil: Build Y1 Wil

42) radynski: Trade Y1 R1 Nexus

43) wil: Build B2 G3

44) radynski: Sacrifice R2 Radynski
Attack B2 G3
Attack B1 G3

45) wil: Move R2 Wil Nexus

46) radynski: Sacrifice Y3 Radynski
Move B2 G3 Wil
Move B2 G3 Wil
Move B1 G3 Wil
Catastrophe Wil Blue

47) wil: Attack R1 Nexus

48) radynski: Build B1 Radynski

49) wil: Sacrifice Y2 B3
Move G1 Wil Radynski
Move Y1 Wil Radynski

50) radynski: Trade B3 R3 Radynski

51) wil: Trade Y1 R1 Radynski

52) radynski: Attack R1 Radynski

53) wil: Build Y1 Wil

54) radynski: Attack G1 Radynski

55) wil: Move Y1 Wil Nexus

56) radynski: Trade R3 Y3 Radynski

57) wil: Discover R2 Nexus G2 G2

58) radynski: Discover R1 George G3 Studio

59) wil: Trade R1 G1 Nexus
	wil: Well I miscounted by one....and now I am dangling from the cliff...

60) radynski: Build R1 Studio

61) wil: Build G1 Wil
	radynski: Yeah, I assumed something happened there.

62) radynski: Sacrifice Y3 Radynski
Move R1 Studio Wil
Move R1 Studio Wil
Move R1 Radynski Wil
Catastrophe Wil Red

	radynski: Good game, I enjoyed this.
	wil: Thanx for the game, challenge me anytime.  I enjoy playing...even if I'm notso good.


25236)
Variants: "Hard time"
Started: 2014.1.26, Ended: 2014.1.29
Participants: ausmuh (S), wil (N)
Winner: ausmuh

1) wil: Homeworld R2 B1 G3

2) ausmuh: Homeworld B3 Y1 G3
	wil: Welcome and thanx for the game!

3) wil: Build G1 Wil
	ausmuh: Thank you. ^_^

4) ausmuh: Build G1 Ausmuh

5) wil: Trade G1 Y1 Wil

6) ausmuh: Trade G1 Y1 Ausmuh

7) wil: Build Y2 Wil
	ausmuh: Huh. Didn't think about that earlier...

8) ausmuh: Build Y2 Ausmuh

9) wil: Discover Y2 Wil G3 G3

10) ausmuh: Build G1 Ausmuh

11) wil: Sacrifice G3 Wil
Build Y2 G3
Build Y3 Wil
Build Y3 Wil

12) ausmuh: Discover Y1 Ausmuh G2 Gwar

13) wil: Move Y2 G3 Gwar

14) ausmuh: Sacrifice Y2 Ausmuh
Move Y1 Gwar G3
Move Y1 G3 Wil
Catastrophe Wil Yellow
	wil: I was evidently blinded...thank you for the slaughter!



25254)
Variants: "Hard time"
Started: 2014.1.27, Ended: 2014.2.21
Participants: SilentTitan (S), wil (N)
Winner: SilentTitan

1) wil: Homeworld R2 B1 G3

2) SilentTitan: Homeworld B1 G2 B3 *

3) wil: Build G1 Wil

4) SilentTitan: Build B1 Silenttitan

5) wil: Build G1 Wil

6) SilentTitan: Trade B3 R3 Silenttitan

7) wil: Trade G1 Y1 Wil

8) SilentTitan: Build B2 Silenttitan

9) wil: Build Y1 Wil

10) SilentTitan: Trade B2 Y2 Silenttitan

11) wil: Discover Y1 Wil G3 G3

12) SilentTitan: Build B2 Silenttitan

13) wil: Build Y1 G3

14) SilentTitan: Move R3 Silenttitan G3

15) wil: Build Y2 Wil

16) SilentTitan: Attack Y1 G3 North

17) wil: Discover Y1 G3 G2 G2

18) SilentTitan: Move B2 Silenttitan G3

19) wil: Trade Y2 B2 Wil

20) SilentTitan: Build B2 Silenttitan

21) wil: Discover B2 Wil Y3 Y3

22) SilentTitan: Trade B2 R2 Silenttitan

23) wil: Sacrifice G1 Wil
Build B2 Y3

24) SilentTitan: Build B3 G3

25) wil: Move B2 Y3 Silenttitan

26) SilentTitan: Trade B1 R1 Silenttitan



24939)
Variants: "Unrated, Hard time"
Started: 2014.1.29, Ended: 2014.2.13
Participants: wil (S), pgadey (N), sleepinggreenideas (E)
Winner: wil

1) pgadey: Homeworld G1 B3 Y3

2) sleepinggreenideas: Homeworld G1 B2 Y3

3) wil: Homeworld B3 Y2 G3

4) pgadey: Build Y1 Pgadey
	wil: Let's do this!



5) wil: Build G1 Wil

6) pgadey: Trade Y1 G1 Pgadey
	wil: a return to normalcy already

7) wil: Build G2 Wil



25260)
Variants: "Hard time"
Started: 2014.1.30, Ended: 2014.2.27
Participants: wil (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Let's try this again...  :o/

2) wil: Homeworld G2 B1 B3 *
	wil: okee dokee

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Hmmm...interesting starting move!

4) wil: Build B1 Wil

5) Laurie_Menke: Discover G1 Laurie_menke B2 Gotone
	wil: It is my, if you are gonna start with a blue pawn in your homeworld I'm gonna try to corner the blues move...
	wil: I shouldn'ta given that away...
	Laurie_Menke: LOL!  Good to know!  ;o)

6) wil: Trade B3 Y3 Wil

7) Laurie_Menke: Build G1 Laurie_menke

8) wil: Build B2 Wil

9) Laurie_Menke: Build G1 Gotone
	Laurie_Menke: I didn't see you Thursday.  Were you there?  I had to work until 10:30, so maybe you left before that.  Anyway, I talked with Andy about the machine repairs and have a general sense of what needs to happen, but I'd still like to coordinate with you sometime....both about that and about the basement.  Will you be around this weekend?
	wil: I was asleep...headed to game day now..

10) wil: Discover B2 Wil G3 G3
	Laurie_Menke: Glad you got the rest you needed!  It was good seeing you at game day & Rink's BD!  :o)

11) Laurie_Menke: Build G2 Laurie_menke

12) wil: Build B2 G3

13) Laurie_Menke: Build G2 Gotone

14) wil: Build Y1 Wil

15) Laurie_Menke: Discover G2 Laurie_menke Y2 Yeller

16) wil: Build B3 G3

17) Laurie_Menke: Build G3 Yeller

18) wil: Trade B3 R3 G3

19) Laurie_Menke: Trade G2 Y2 Gotone

	Laurie_Menke: Ugh...I hate when it rates the resignations.  It's just not fair to anyone.  :o(  Want me to see if Aaron will reverse it?
	wil: Nah...no worries...I like having my score lowered to increase confidence of my competitors...

no worries...I just lost a bunch due to lost focus...including a ladder game.
	Laurie_Menke: Bummer.  But LOL about competitor confidence.  ;o)  Have a great weekend!  (BTW... I will be down in the basement moving wood over part of today.)


25273)
Variants: "Unrated"
Started: 2014.1.31, Ended: 2014.2.6
Participants: ausmuh (S), fogus (N)
Winner: fogus

1) fogus: Homeworld R1 B2 G3
	ausmuh: Hello.  I'm certainly not the worlds greatest player,  but I know and love the game.   I'm sure we can get you started.  Please feel free to ask any questions you have.
	fogus: Thanks a ton.  My first game was catastrophe-o-rama and my second was a resource-strangulation.  So far I've covered a broad swath of the ways to lose.  :-)

2) ausmuh: Homeworld B3 Y1 G3
	ausmuh: Haha, it happens. After family few games you start to know what to look for and avoid.  Looks like you know about your homeworld options, woo!

3) fogus: Build G1 Fogus
	ausmuh: *After a few.  Autocorrect..... 
	ausmuh: The next move is pretty much always the same, then it gets fun.  When you start trading pieces you want to avoid getting locked out,  and if possible,  lock me out. 

4) ausmuh: Build G1 Ausmuh

5) fogus: Trade G1 Y1 Fogus

6) ausmuh: Trade G1 Y1 Ausmuh
	ausmuh: The colors I'd consider swapping to would be yellow or red. Because if I want to swap to one of those, you would get the first two pip out of it.  It can also sometimes be difficult to get into a color once the 1pips are gone.

From here on out it's my opinion,  take it with a grain of salt :) everyone sees things different and you may know something I don't.
	ausmuh: Yup,  just like that. 

7) fogus: Build G1 Fogus

8) ausmuh: Build Y2 Ausmuh

9) fogus: Build Y2 Fogus
	ausmuh: It's usually not a bad idea to get a 2pip when you can. You do need to watch out for me being able to catastrophe you, but right now it's safe.  Also keep an eye out for a way to put me under the same threat.

10) ausmuh: Discover Y1 Ausmuh G2 Gwar
	fogus: The threat of catastrophe is not a problem now because you're not within striking distance?

	fogus: There are two things about HWs that I'm not entirely clear about: 1) How systems connect and 2) How attacking works.  
	ausmuh: Ah,  ok.  Systems connect as long as they are NOT the same size.  So from a 1pip planet you can move to a 2pip or 3pip.  Homeworlds have 2 parts,  so because of that you can only move to the size you didn't use in your home planet. 

For you the path is home-3pip,  3pip-2pip, then the 2pip is connected to me
	ausmuh: So the reason you are safe is I have to move my 1 pip yellow out of my home first,  after that,  I -could- sacrifice my 2pip yellow for two moves and make it to your base. 
	ausmuh: Hopefully that makes sense.

Attacking is more like capturing in this game.  Ships must be at the same planet. A ship can attack the same size or smaller,  but instead of blowing it up,  you take control of it. 

11) fogus: Trade Y1 R1 Fogus

12) ausmuh: Discover Y1 Gwar G3 Grass
	ausmuh: So now that I moved out, I have a new mini-base,  one step closer to you.

The mid game is somewhat about spreading pieces out so you can get bigger and more. 
	ausmuh: Lets try an attack! Move your red ship and lay waste to my tiny yellow minion

13) fogus: Move R1 Fogus Grass

14) ausmuh: Build G1 Ausmuh
	fogus: Would it have been better to sacrifice to make the move and attack in one turn?

15) fogus: Attack Y1 Grass
	ausmuh: Sadly a sacrifice can
	ausmuh: Sadly a sacrifice cant do that.  You only get the actions of what color you sacrificed.  So sacrificing a 2pip yellow gets you 2 moves.  That becomes important later on. 

16) ausmuh: Build Y1 Ausmuh
	fogus: Oh!  If I sacrifice a yellow2 then I can only move twice?
	ausmuh: Correct, when ever you sacrifice a piece you only get actions of that color's power
	ausmuh: So at this point, were pretty much just spreading out and racing to build bigger pieces used in future plans.... something to think about is sacrificing a g3 and building other 3pips with those actions (while avoiding catastrophe)

17) fogus: Sacrifice Y2 Fogus
Discover Y1 Grass Y2 Cats
Move Y1 Cats Ausmuh
Catastrophe Ausmuh Y
	ausmuh: I wouldn't normally do that, but it gives you an example of sacrificing for a catastrophe.  Your y2 can move your y1 in and destroy part of my hw

18) ausmuh: Trade G1 Y1 Ausmuh
	fogus: Oh!  I see how that works now.  I had to discover a system before moving into yours for the catastrophe.  Was there a better way?
	fogus: A point I always miss (for whatever reason) is that the star colors count toward catastrophe also.
	ausmuh: Nope, the discovery was needed. If i had a system you could of used that one, but either works

Ah,  yes,  that's worth noting, planets count :) Also pay attention to our homeworlds being connected now.  

"The doomsday machine" involves two y3's, enough pieces to destroy me, and takes advantage of the new connections.

Its a double edge sword though because I'm connected to you just the same
	ausmuh: So one way to win is blowing me up.  That probably the most common tactic. 

19) fogus: Trade G1 Y1 Fogus
	ausmuh: Next I want to show what a homeworld attack looks like.  Its a little tougher to set up,  easier to notice, but well worth knowing.  

What you need is at least one more 3pip than I have in my homeworld (2 in this case) and a big enough red piece to sacrifice to take what I have. And enough yellow to move them in.

Normally an opponent will build red when you do,  and sometimes its hard to build enough 3 pips to overpower your opponent,  especially if you have to leave one at home

20) ausmuh: Build G1 Ausmuh

21) fogus: Build G1 Fogus
	fogus: Is there ever a reason not to put a 3-pip at your homeworld?
	ausmuh: Sometimes... like now.   You have red and I do not.  Our home worlds are connected. If you move your big guy in,  you'll take my 3pip before I get the red to react.

Be very careful with that,  if an opponent is ready to move big ships in on you,  you want to keep a 3pip at home

22) ausmuh: Discover G1 Ausmuh B2 Gwar

23) fogus: Trade G1 R1 Fogus

24) ausmuh: Build G1 Gwar

25) fogus: Build R2 Fogus

26) ausmuh: Build Y1 Ausmuh

27) fogus: Build Y2 Fogus

28) ausmuh: Build G1 Ausmuh

29) fogus: Build G2 Fogus
	ausmuh: Just don't forget planets count towards catastrophes :)

30) ausmuh: Move Y1 Ausmuh Gwar
	fogus: I almost forgot :-O (whew)

31) fogus: Sacrifice Y2 Fogus
Move G3 Fogus Ausmuh
Move R1 Fogus Ausmuh
	fogus: It seems like blue ships are kinda the weakest.  If there is a blue star then what use is a blue ship?
	ausmuh: This game didn't see much blue but it can come in handy.   One example is sacrificing to trade multiple ships for a catastrophe,  and sometimes you can trade a blue ship for another color before anyone has access to it.  I. E. Trade a b3 for a r3 when its good timing.   You'll feel it out the more you play :)
	ausmuh: I've purposely been neglecting red to show you what moving in for a homeworld attack looks like (sort of) 

Sense our homeworlds are connected and I've got no red,  you have a perfect opportunity to move your big ship in and sweep up in my homeworld.  Normally an opponent would somehow scramble for their own red,  but is just some practice to show you a few things. 

32) ausmuh: Build Y2 Gwar
	fogus: I can't seem to do what I'm thinking:
sacrifice r2 fogus
move g3 fogus ausmuh
attack G3S ausmuh
	fogus: Oh wait... all actions must be that of the color sacrificed. 
	ausmuh: Close.  Because,  and only because,  I have no red,  you can move in as one turn,  then attack on the next turn :)

33) fogus: Attack G3 Ausmuh

34) ausmuh: Build G2 Ausmuh
Catastrophe Ausmuh Green
	ausmuh: Many of my moves were less then smart,  but hopefully it gave you a chance to figure a couple things out :)

35) fogus: Attack Y1 Ausmuh

	ausmuh: There really is not,  even after a catastrophe,  you are more than prepared to overtake my homeworld 
	fogus: I definitely missed that catastrophe option.  It's a good thing I decided to bring in the r1... even if that wasn't my initial goal. ;-)

Thank you very much for the lesson.  I learned a ton.
	ausmuh: :) thanks for your patience, I'm not much of a teacher,  but I'm glad you learned some stuff.  Have fun!


25291)
Variants: "Hard time"
Started: 2014.2.2, Ended: 2014.2.28
Participants: Salmonax (S), ausmuh (N)
Winner: ausmuh

1) ausmuh: Homeworld B3 R1 G3

2) Salmonax: Homeworld G2 R1 B3
	ausmuh: Thanks for accepting. Have fun!

3) ausmuh: Build G1 Ausmuh

4) Salmonax: Build B1 Salmonax
	Salmonax: Good luck, have fun. =)

5) ausmuh: Trade G1 R1 Ausmuh

6) Salmonax: Trade B1 Y1 Salmonax

7) ausmuh: Build R2 Ausmuh

8) Salmonax: Build Y1 Salmonax

9) ausmuh: Trade R2 Y2 Ausmuh

10) Salmonax: Trade Y1 B1 Salmonax

11) ausmuh: Build R2 Ausmuh

12) Salmonax: Build Y1 Salmonax

13) ausmuh: Discover R2 Ausmuh G2 Gwar

14) Salmonax: Trade B3 R3 Salmonax

15) ausmuh: Build R2 Ausmuh

16) Salmonax: Build B1 Salmonax

17) ausmuh: Discover R2 Ausmuh Y2 Slayer

18) Salmonax: Trade B1 G1 Salmonax

19) ausmuh: Sacrifice G3 Ausmuh
Build R2 Gwar
Build R3 Slayer
Build R3 Ausmuh

20) Salmonax: Discover Y1 Salmonax G3 S2
	Salmonax: Yipes!

21) ausmuh: Trade R3 Y3 Ausmuh

22) Salmonax: Build Y1 S2
	ausmuh: Getting locked out of a color is rough.   The same thing happened to me in the other game I'm playing. :P

23) ausmuh: Discover R3 Slayer G3 Glob

24) Salmonax: Build Y2 Salmonax

25) ausmuh: Trade Y2 G2 Ausmuh

26) Salmonax: Build Y2 Salmonax

27) ausmuh: Move R2 Slayer S2

28) Salmonax: Build Y2 S2

29) ausmuh: Build Y3 Ausmuh

30) Salmonax: Sacrifice Y2 S2
Discover Y1 S2 B2 S3
Move Y1 S2 S3

31) ausmuh: Sacrifice Y3 Ausmuh
Move R2 S2 Salmonax
Move R2 Gwar Glob
Move R2 Glob Salmonax
Catastrophe Salmonax Red

32) Salmonax: Trade B1 R1 Salmonax

33) ausmuh: Sacrifice Y3 Ausmuh
Move R3 Glob Salmonax
Pass
Pass

34) Salmonax: Move Y2 Salmonax Ausmuh
	Salmonax: I used to be okay at this game. =)

35) ausmuh: Sacrifice R2 Gwar
Attack Y2S Ausmuh
Attack Y2S Salmonax

36) Salmonax: Build G1 Salmonax
	ausmuh: ^_^ I'm sure you still got it. Kind of like riding a bike.

37) ausmuh: Sacrifice R3 Salmonax
Attack R1S Salmonax
Attack G1S Salmonax
Attack Y1S Salmonax

38) Salmonax: Trade Y1 B1 S3

39) ausmuh: Attack G1S Salmonax
	ausmuh: Thanks for the game ^_^ 
I'm not certain,  but both of us putting a red 1pip in our home seemed to give me some quick access to 2pips.   That's a thinker.   
I hope we get another game sometime!
	Salmonax: gg!



25158)
Variants: "Hard time"
Started: 2014.2.3, Ended: 2014.3.14
Participants: Grosseteste (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) Grosseteste: H Y3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) Grosseteste: Build G1 Grosseteste

5) SilentTitan: Trade G1 B1 Silenttitan

6) Grosseteste: Trade G1 B1 Grosseteste

7) SilentTitan: Build B2 Silenttitan

8) Grosseteste: Build B2 Grosseteste

9) SilentTitan: Trade B2 Y2 Silenttitan

10) Grosseteste: Discover B1 Grosseteste G2 Hexaemeron

11) SilentTitan: Build G1 Silenttitan

12) Grosseteste: Build B2 Grosseteste

13) SilentTitan: Build B3 Silenttitan

14) Grosseteste: Trade B2 Y2 Grosseteste

15) SilentTitan: Discover B1 Silenttitan B3 Sol

16) Grosseteste: Build B2 Hexaemeron

17) SilentTitan: Discover G1 Silenttitan B3 Soul

18) Grosseteste: T B1 Y1 Hexaemeron

19) SilentTitan: Build G1 Silenttitan

20) Grosseteste: M B2 Hexaemeron Soul

21) SilentTitan: Trade B3 R3 Silenttitan

22) Grosseteste: Trade B2 R2 Soul

23) SilentTitan: Move R3 Silenttitan Soul

24) Grosseteste: S Y2 Grosseteste
M R2 Soul Hexaemeron
M R2 Hexaemeron Grosseteste

25) SilentTitan: Build Y1 Silenttitan

26) Grosseteste: Build R1 Grosseteste

27) SilentTitan: Trade B1 R1 Sol

28) Grosseteste: Trade R1 Y1 Grosseteste

29) SilentTitan: Move Y1 Silenttitan Soul

	Grosseteste: Doh! Sorry about that.
	SilentTitan: That's ok.   Challenge me again. If you'd like


25286)
Variants: "Hard time"
Started: 2014.2.3, Ended: 2014.3.19
Participants: TwoShort (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3

2) TwoShort: Homeworld B1 R3 G3

3) Broccoli_Commander: Build G1 Broccoli_commander

4) TwoShort: Build G1 Twoshort
	Broccoli_Commander: Greetings, have a good game

5) Broccoli_Commander: Trade G1 B1 Broccoli_commander
	TwoShort: Thanks; you too.

6) TwoShort: Trade G1 Y1 Twoshort

7) Broccoli_Commander: Build G1 Broccoli_commander

8) TwoShort: Build G1 Twoshort

9) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

10) TwoShort: Build G1 Twoshort

11) Broccoli_Commander: Build B1 Broccoli_commander

12) TwoShort: Discover G1 Twoshort Y2 Yolonda

13) Broccoli_Commander: Discover B1 Broccoli_commander Y3 Cauliflower

14) TwoShort: Build G1 Twoshort

15) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build B2 Cauliflower
Build B2 Cauliflower
Build B3 Broccoli_commander

16) TwoShort: Discover G1 Twoshort G2 Grogar

17) Broccoli_Commander: Sacrifice B2 Cauliflower
Trade B2 R2 Cauliflower
Trade B3 G3 Broccoli_commander

18) TwoShort: Build G2 Twoshort

19) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce

20) TwoShort: Trade G2 R2 Twoshort

21) Broccoli_Commander: Build G2 Broccoli_commander

22) TwoShort: Discover G1 Yolonda Y3 Yoyodyne

23) Broccoli_Commander: Build B2 Lettuce

24) TwoShort: Sacrifice Y1 Twoshort
Move G1 Grogar Lettuce

25) Broccoli_Commander: Discover R2 Cauliflower G2 Pea

26) TwoShort: Trade R2 Y2 Twoshort
	TwoShort: Sorry to play so slow, I've been busy... 

27) Broccoli_Commander: Move G2 Broccoli_commander Cauliflower
	Broccoli_Commander: It's alright, I understand that you want to stay on the top of the ladder for a few more days. Whatever works. ;D ;D
	TwoShort: At this point I'm all about the rematch :)  And wishing I'd peeked at your game history before I went for the "blow off the blue lock" experiment :)

28) TwoShort: Sacrifice G3 Twoshort
Build G2 Lettuce
Build Y1 Twoshort
Build G3 Twoshort

29) Broccoli_Commander: Build B2 Cauliflower
	Broccoli_Commander: Yet you almost pulled it off. Besides I'm still very wary of your bag of tricks

30) TwoShort: Sacrifice G1 Twoshort
Build G1 Lettuce
Catastrophe Lettuce Green

31) Broccoli_Commander: Build B1 Cauliflower

32) TwoShort: Build G1 Twoshort
	TwoShort: You've given me a rough game and have me in a tough spot.  But I enjoy trying to weasel out of such positions, and so don't give up easily :)  It'd be helpful if you would become overconfident though. :)

33) Broccoli_Commander: Build R1 Pea
	Broccoli_Commander: I was not expecting less of you ;)
and also sorry, I ve been in the most stressful period of my life... Almost forgot the existence of superdupergames :P 
	Broccoli_Commander: I was not expecting less of you ;)
and also sorry, I ve been in the most stressful period of my life...but it s over. Almost forgot the existence of superdupergames :P 

34) TwoShort: Build G1 Yoyodyne

35) Broccoli_Commander: Trade B2 Y2 Cauliflower

36) TwoShort: Discover Y1 Twoshort B2 Borbor

37) Broccoli_Commander: Move G2 Cauliflower Borbor

	TwoShort: Dang! I didn't mean to time out;  But I did mean to resign, so I guess it's OK :)  I could stall briefly from here, but you've got me.  Thanks for a great game!
	Broccoli_Commander: No problem, thanks for the game! I look forward to playing you again


25290)
Variants: "Hard time"
Started: 2014.2.7, Ended: 2014.2.18
Participants: ausmuh (S), Grosseteste (N)
Winner: ausmuh

1) Grosseteste: H Y2 B1 G3

2) ausmuh: Homeworld B3 R1 G3
	Grosseteste: Thanks for the game!

3) Grosseteste: Build G1 Grosseteste
	ausmuh: Have fun! :)

4) ausmuh: Build G1 Ausmuh

5) Grosseteste: Trade G1 B1 Grosseteste

6) ausmuh: Trade G1 Y1 Ausmuh

7) Grosseteste: Build B1 Grosseteste

8) ausmuh: Build G1 Ausmuh
	ausmuh: Nice work with blue!  

9) Grosseteste: Discover B1 Grosseteste G3 Lineis

10) ausmuh: Trade G3 B3 Ausmuh
	Grosseteste: Thanks, I learned to look for that through bitter experience.  I expect you to teach me a thing or two (like how to thwart my cunning plan?).
	ausmuh: Well,  plan A is not to make silly mistakes. After that mistake inevitably happens I go into plan B, "wing it" :)

11) Grosseteste: Build B2 Lineis

12) ausmuh: Build B2 Ausmuh

	Grosseteste: Doh! Sorry about that.
	ausmuh: Oops? 
	ausmuh: Oh,  hard time triggers automatically?  I thought I had to force your resignation?  :P To be continued! 


25353)
Variants: "Hard time"
Started: 2014.2.9, Ended: 2014.3.1
Participants: foksieloy (S), shmil1 (N)
Winner: shmil1

1) shmil1: Homeworld R2 B1 G3

2) foksieloy: Homeworld R1 B3 G3
	foksieloy: Hi! Good luck and have fun!

3) shmil1: Build G1 Shmil1

4) foksieloy: Build G1 Foksieloy

5) shmil1: Trade G1 Y1 Shmil1

6) foksieloy: Trade G1 B1 Foksieloy

7) shmil1: Build G1 Shmil1

8) foksieloy: Build G1 Foksieloy

9) shmil1: Build Y1 Shmil1

10) foksieloy: Build B1 Foksieloy

11) shmil1: Trade Y1 R1 Shmil1



25230)
Variants: "Hard time"
Started: 2014.2.12, Ended: 2014.2.15
Participants: fogus (S), Marmalade (N)
Winner: Marmalade

1) Marmalade: Homeworld Y1 B2 G3

2) fogus: Homeworld R1 B2 G3

3) Marmalade: Build G1 Marmalade

4) fogus: Build G1 Fogus

5) Marmalade: Discover G1 Marmalade Y3 Formalhaut

6) fogus: Trade G1 Y1 Fogus

7) Marmalade: Build G1 Marmalade

8) fogus: Build Y1 Fogus

9) Marmalade: Build G1 Formalhaut

10) fogus: Trade Y1 R1 Fogus

11) Marmalade: Trade G1 R1 Marmalade

12) fogus: Build R2 Fogus

13) Marmalade: Build R2 Marmalade

14) fogus: Move R2 Fogus Formalhaut

15) Marmalade: Move G3 Marmalade Formalhaut

16) fogus: Attack G1 Formalhaut
	fogus: Off to shovel some snow. :-|

17) Marmalade: Sacrifice R2 Marmalade
Attack R2 Formalhaut
Attack G1 Formalhaut

18) fogus: Discover R1 Fogus Y3 Oboe
	Marmalade: Not much in the way of snow here (it's getting close), but do have to worry about flooding :/
	fogus: Huh... I didn't know that you could attack even without a ship in the same system.  :-( I'm still learning how to best utilize sacrifices, this is a painful way to learn. ;-)

19) Marmalade: Move G3 Formalhaut Marmalade
	fogus: And of course as I said that I almost walked right into a catastrophe myself.

20) fogus: Build G1 Fogus
	Marmalade: Sacrificing allows you to take that action wherever it would be legal - so I could sac a g1 to create a single red ship at Marmalade, for example.

21) Marmalade: Build R2 Marmalade

22) fogus: Move G1 Fogus Oboe

23) Marmalade: Move R2 Marmalade Oboe

24) fogus: Build G2 Fogus

25) Marmalade: Attack R1S Oboe
	fogus: Now that I finally understand the rules (well, mostly) I'm starting to appreciate the subtitles of your position and moves.  Very nice.

26) fogus: Move G1 Oboe Fogus

27) Marmalade: Move G1 Formalhaut Fogus
Catastrophe Fogus G
	Marmalade: I'm not particularly brilliant at this, but I'm always happy to play.

28) fogus: Discover Y1 Fogus R3 Caprica

	fogus: D'oh!
	fogus: As thus did the last of humanity flee the fogus system in search of a new home... verily did they find after much toil, a 4-star cluster suitable for habitation.  After much deliberation their new home was named Caprica.  Little is known of what happened to those survivors.
	Marmalade: Aw, poor little triangular guys. It's amazing, considering that they're only difference is pointing in different directions, that they can't get on.

Cheers for the game.

	fogus: Thank you for the game.  My apologies for not putting up a very strong fight. I hope to get there one day.


25277)
Variants: "Unrated, Hard time"
Started: 2014.2.16, Ended: 2014.4.7
Participants: goulo (S), Grosseteste (N), wil (E)
Winner: goulo

1) Grosseteste: H B2 Y1 G3

2) goulo: Homeworld R3 B2 G3

3) Grosseteste: Build G1 Grosseteste

4) goulo: Build G1 Goulo
	goulo: wow, one player eliminated even before my first turn! :P
	Grosseteste: :p
	Grosseteste: This'll be a little different with an extra stash...

5) Grosseteste: Discover G1 Grosseteste B3 Luce

6) goulo: Trade G1 Y1 Goulo
	goulo: true, I'd not thought about that side effect of a player being dropped before their first turn.

7) Grosseteste: Build G1 Luce

8) goulo: Build G1 Goulo

9) Grosseteste: Build G1 Grosseteste

10) goulo: Trade G1 R1 Goulo

11) Grosseteste: Trade G1 R1 Luce

12) goulo: Build G1 Goulo

13) Grosseteste: B R1 Luce

14) goulo: Discover R1 Goulo Y1 Citroneto

15) Grosseteste: B G1 Luce

16) goulo: Build G2 Goulo

17) Grosseteste: T R1 Y1 Luce

18) goulo: Move G2 Goulo Citroneto

19) Grosseteste: Build Y2 Luce

20) goulo: Build Y2 Goulo

21) Grosseteste: T G1 R1 Grosseteste

22) goulo: Trade Y1 B1 Goulo
	wil: Can this game get eliminated from the current list...


	Grosseteste: Up till now, for me it has always said "Your time is up!"
	goulo: I'm confused what the issue is. wil, you were eliminated due to Hard Time but Grosseteste and I are still playing.
	wil: Oooopss my bad!   I thought it was just sitting there..my apologies!!

23) Grosseteste: Build G1 Grosseteste
	Grosseteste: Well that seemed to work.  Does frozen just mean our timers aren't running?
	goulo: Ok, it seems I un-called the admin. (I think Aaron is rarely maintaining the site these days in any case, so it might have been a long wait before he appeared...) :)

24) goulo: Build G2 Citroneto

25) Grosseteste: D G1 Luce Y1 Iride

26) goulo: Discover G2 Citroneto Y3 Citronego

27) Grosseteste: M G1 Iride Goulo

28) goulo: Discover G3 Goulo Y1 Vortareto

29) Grosseteste: B G2 Grosseteste

30) goulo: Move G2 Citronego Grosseteste
Catastrophe Grosseteste G

31) Grosseteste: Sacrifice Y2 Luce
Move G1 Luce Grosseteste
M Y1 Luce Grosseteste

32) goulo: Attack G1N Goulo
	Grosseteste: Nooooooooooooo!  I meant to build in goulo, of course.  GG
	Grosseteste: Eh, actually I'll try to get what I can tactically out of this as penance for the blunder.  Expect a separate challenge though!

33) Grosseteste: B Y2 Grosseteste
	goulo: Aha, I wondered what the plan was with that build in Grosseteste! :)

34) goulo: Build Y2 Goulo

35) Grosseteste: Discover Y1 Grosseteste G3 Colore

36) goulo: Discover Y2 Goulo G1 Smeraldeto

37) Grosseteste: B Y2 Colore

38) goulo: Build Y3 Goulo

39) Grosseteste: T Y2 G2 Grosseteste

40) goulo: Move G3 Vortareto Luce

	Grosseteste: GG, didn't intend to let it go down to hard time after all that (caught what appears to be the bubonic plague a couple days ago).

I will challenge again when I'm feeling better.
	wil: awe  sorry that happened... 
	goulo: heh, it was an unusual game! :)


25397)
Variants: "Unrated"
Started: 2014.2.16, Ended: 2014.3.6
Participants: fogus (S), pedrop (N)
Winner: fogus

1) pedrop: Homeworld Y1 B2 G3

2) fogus: Homeworld R1 B2 G3

3) pedrop: Build G1 Pedrop

4) fogus: Build G1 Fogus

5) pedrop: Trade G1 Y1 Pedrop

6) fogus: Trade G1 Y1 Fogus

7) pedrop: Discover Y1 Pedrop G3 Kaziu

8) fogus: Build G1 Fogus

9) pedrop: Build G1 Pedrop

10) fogus: Trade G1 R1 Fogus

11) pedrop: Trade G1 R1 Pedrop

12) fogus: Move R1 Fogus Kaziu

13) pedrop: Sacrifice R1 Pedrop
Attack R1 Kaziu

14) fogus: Build G1 Fogus

15) pedrop: Build G1 Pedrop
	fogus: ARGH!  I always forget about to look for red sacrifices. :-(

16) fogus: Build Y2 Fogus

17) pedrop: Build Y2 Kaziu
	pedrop: Yeah... forgeting is not good thing:) But I feel this game is all about Your opponent mistakes... you are just waiting for it. Without it we could play for years... Having written it... it seems quite obvious and relevent to most games... lol... ;)

18) fogus: Discover Y1 Fogus B3 Chum

19) pedrop: Discover Y1 Kaziu G2 Zbysiu

20) fogus: Trade G1 R1 Fogus

21) pedrop: B R2 Kaziu

22) fogus: Move R1 Fogus Chum

23) pedrop: Move R2 Kaziu Zbysiu

24) fogus: Build G1 Fogus



25369)
Variants: "Hard time"
Started: 2014.2.16, Ended: 2014.2.20
Participants: wil (S), Marmalade (N)
Winner: Marmalade

1) Marmalade: Homeworld B1 Y2 G3



25280)
Variants: "Hard time"
Started: 2014.2.21, Ended: 2014.2.24
Participants: wil (S), qwertyu63 (N)
Winner: qwertyu63

1) qwertyu63: Homeworld G1 Y3 B3



25427)
Variants: "Hard time"
Started: 2014.2.21, Ended: 2014.2.24
Participants: wil (S), qwertyu63 (N)
Winner: qwertyu63

1) qwertyu63: Homeworld G1 Y3 B3



25407)
Variants: "Hard time"
Started: 2014.2.23, Ended: 2014.3.15
Participants: qwertyu63 (S), Marmalade (N)
Winner: Marmalade

1) Marmalade: Homeworld Y2 G1 B3

2) qwertyu63: Homeworld Y3 G1 B3

3) Marmalade: Build B1 Marmalade

4) qwertyu63: Build B1 Qwertyu63

5) Marmalade: Discover B1 Marmalade G3 Foom

6) qwertyu63: Trade B1 Y1 Qwertyu63

7) Marmalade: Build B1 Foom

8) qwertyu63: Discover Y1 Qwertyu63 R2 Asdf

9) Marmalade: Trade B1 Y1 Foom

10) qwertyu63: Build B1 Qwertyu63

11) Marmalade: Build B1 Marmalade

12) qwertyu63: Move B1 Qwertyu63 Asdf

13) Marmalade: Build B2 Foom

14) qwertyu63: Build B2 Qwertyu63

15) Marmalade: Move B2 Foom Asdf

16) qwertyu63: Move Y1 Asdf Qwertyu63

17) Marmalade: Attack B1 Asdf

18) qwertyu63: Trade B2 R2 Qwertyu63

19) Marmalade: Trade B2 R2 Asdf

20) qwertyu63: Build B2 Qwertyu63

21) Marmalade: Build B2 Foom

22) qwertyu63: Discover Y1 Qwertyu63 G2 Zxc

23) Marmalade: Build B2 Foom

24) qwertyu63: Build Y1 Zxc

25) Marmalade: Build B3 Marmalade

26) qwertyu63: Build Y2 Zxc

27) Marmalade: Move Y1 Foom Zxc
Catastrophe Zxc Y

28) qwertyu63: Trade B2 Y2 Qwertyu63

29) Marmalade: Trade B3 Y3 Marmalade



25438)
Variants: "Hard time"
Started: 2014.2.23, Ended: 2014.4.11
Participants: fnord (S), Grosseteste (N)
Winner: Grosseteste

1) Grosseteste: H B2 Y1 G3

2) fnord: Homeworld B2 G1 Y3
	Grosseteste: Awesome, have gotten zero action on the ladder so far.  Guess it took some new people at the bottom.
	Grosseteste: Have a good game!
	fnord: Thanks, I'll try, though I'll warn you I'm going to be very rusty at the game. 
I hope you have fun!

3) Grosseteste: Build G1 Grosseteste

4) fnord: B Y1 Fnord

5) Grosseteste: B G1 Grosseteste

6) fnord: Build Y1 Fnord
	fnord: b y1 fnord
	fnord: Whoops, wrong field!

7) Grosseteste: D G1 Grosseteste Y3 Luce

8) fnord: Discover Y1 Fnord B3 Eris

9) Grosseteste: M G1 Luce Fnord

10) fnord: Trade Y3 R3 Fnord

11) Grosseteste: Build G2 Fnord

12) fnord: Attack G2 Fnord

13) Grosseteste: B G2 Fnord
Catastrophe Fnord Green

14) fnord: Trade Y1 G1 Fnord
	fnord: Nicely done.

15) Grosseteste: Trade G1 Y1 Grosseteste

16) fnord: Build R1 Fnord
	Grosseteste: Thanks, I'm not sure if South can stop North from destroying its green star given the initial setup; I'll look at it more closely when I'm less sleepy.

17) Grosseteste: T Y1 R1 Grosseteste



25319)
Variants: "Hard time"
Started: 2014.2.23, Ended: 2014.2.27
Participants: SilentTitan (S), qwertyu63 (N)
Winner: SilentTitan

1) qwertyu63: Homeworld Y1 G2 B3

2) SilentTitan: Homeworld B3 R2 G3

3) qwertyu63: Build B1 Qwertyu63

4) SilentTitan: Build G1 Silenttitan

5) qwertyu63: Trade B1 Y1 Qwertyu63

6) SilentTitan: Trade G1 Y1 Silenttitan

7) qwertyu63: Discover Y1 Qwertyu63 R3 Asdf

8) SilentTitan: Build Y2 Silenttitan

9) qwertyu63: Build B1 Qwertyu63

10) SilentTitan: Trade Y1 B1 Silenttitan

11) qwertyu63: Move B1 Qwertyu63 Asdf

12) SilentTitan: Build G1 Silenttitan

13) qwertyu63: Build B1 Qwertyu63

14) SilentTitan: Discover B1 Silenttitan Y1 Sol

15) qwertyu63: Build B2 Qwertyu63

16) SilentTitan: Sacrifice Y2 Silenttitan
Move B1 Sol Asdf
Move B1 Asdf Qwertyu63
Catastrophe Qwertyu63 Blue



25445)
Variants: "Hard time"
Started: 2014.2.24, Ended: 2014.2.28
Participants: TeeTeeTee (S), Remneb (N)
Winner: TeeTeeTee

1) Remneb: Homeworld R1 B2 G3

2) TeeTeeTee: Homeworld B1 Y3 G3

3) Remneb: Build G1 Remneb

4) TeeTeeTee: Build G1 Teeteetee

5) Remneb: Trade G1 Y1 Remneb
	Remneb: Have a good game.

6) TeeTeeTee: Trade G1 B1 Teeteetee

7) Remneb: Build G1 Remneb

8) TeeTeeTee: Build B1 Teeteetee

9) Remneb: Build Y1 Remneb
	TeeTeeTee: You too!

10) TeeTeeTee: Discover B1 Teeteetee G2 Dirac

11) Remneb: Trade Y1 R1 Remneb

12) TeeTeeTee: Build B2 Dirac

13) Remneb: Discover R1 Remneb Y3 Redrum

14) TeeTeeTee: Trade B2 R2 Dirac

15) Remneb: Build Y1 Remneb

16) TeeTeeTee: Build B2 Dirac

17) Remneb: Discover R1 Redrum Y2 Ouja

18) TeeTeeTee: Build B2 Teeteetee

19) Remneb: Discover Y1 Remneb B3 Altar

20) TeeTeeTee: Build B3 Dirac

21) Remneb: Build G1 Remneb

22) TeeTeeTee: Trade B3 Y3 Dirac

23) Remneb: Discover G1 Remneb Y3 Horla

24) TeeTeeTee: Build B3 Dirac

25) Remneb: Build G1 Horla

26) TeeTeeTee: Move R2 Dirac Horla

27) Remneb: Sacrifice G3 Remneb
Build G2 Horla
Build G2 Horla
Build G3 Remneb
Catastrophe Horla G

28) TeeTeeTee: Trade B3 G3 Dirac

29) Remneb: Move G1 Remneb Altar

30) TeeTeeTee: Build B3 Dirac

31) Remneb: Build G1 Altar

32) TeeTeeTee: Move B3 Dirac Altar

33) Remneb: Move G1 Altar Dirac

34) TeeTeeTee: Sacrifice Y3 Dirac
Move G3 Dirac Altar
Move G3 Altar Remneb
Move B3 Altar Remneb

35) Remneb: Sacrifice G3 Remneb
Build G1 Dirac
Build G2 Dirac
Build Y1 Altar
Catastrophe Dirac G



36) TeeTeeTee: Attack Y1 Remneb
	Remneb: Thanks for the game.
	TeeTeeTee: Thanks! It's nice to play a quick-paced game for a change: the last few people I played took days to make a single move...
	Remneb: I've played some games who took months ! 
	Babamots: In case anyone is interested, this game was featured in Homeworlds Theater episode 1:

https://www.youtube.com/watch?v=CXG1GETk4_g



25442)
Variants: "Hard time"
Started: 2014.2.25, Ended: 2014.3.8
Participants: SilentTitan (S), ausmuh (N)
Winner: SilentTitan

1) ausmuh: Homeworld B3 Y2 G3

2) SilentTitan: Homeworld R1 B2 G3

3) ausmuh: Build G1 Ausmuh

4) SilentTitan: Build G1 Silenttitan

5) ausmuh: Trade G1 R1 Ausmuh

6) SilentTitan: Trade G1 Y1 Silenttitan

7) ausmuh: Build R1 Ausmuh

8) SilentTitan: Build G1 Silenttitan

9) ausmuh: Build R2 Ausmuh

10) SilentTitan: Build Y1 Silenttitan

11) ausmuh: Trade R2 Y2 Ausmuh

12) SilentTitan: Discover Y1 Silenttitan G3 Sol

13) ausmuh: Build R2 Ausmuh

14) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Silenttitan
Build Y3 Silenttitan

15) ausmuh: Sacrifice Y2 Ausmuh
Discover R2 Ausmuh G1 Temp
Move R2 Temp Sol

16) SilentTitan: Sacrifice Y2 Silenttitan
Discover Y1 Sol B1 Soul
Discover Y1 Sol G1 Sole

17) ausmuh: Move R1 Ausmuh Soul

18) SilentTitan: Discover Y1 Soul R3 Tic

19) ausmuh: Build R2 Ausmuh
	ausmuh: Heh,  clever planet names :)
	SilentTitan: Lol.  Thanks

20) SilentTitan: Trade Y3 R3 Silenttitan

21) ausmuh: Trade R2 Y2 Ausmuh

22) SilentTitan: Build Y2 Silenttitan

23) ausmuh: Build Y3 Ausmuh

24) SilentTitan: Move Y1 Sole Ausmuh
Catastrophe Ausmuh Yellow

25) ausmuh: Sacrifice G3 Ausmuh
Build R2 Soul
Build R2 Sol
Build R3 Ausmuh

26) SilentTitan: Trade R3 B3 Silenttitan

27) ausmuh: Build R3 Sol

28) SilentTitan: Build B1 Silenttitan

29) ausmuh: Trade R2 Y2 Soul

30) SilentTitan: Trade Y2 R2 Silenttitan

31) ausmuh: Sacrifice Y2 Soul
Move R2 Sol Silenttitan
Move R2 Sol Silenttitan
Catastrophe Silenttitan Red

32) SilentTitan: Trade B1 R1 Silenttitan

33) ausmuh: Trade R3 G3 Ausmuh

34) SilentTitan: Build B1 Silenttitan

35) ausmuh: Trade R1 Y1 Ausmuh

36) SilentTitan: Build Y2 Silenttitan

37) ausmuh: Trade R1 B1 Soul

38) SilentTitan: Discover B1 Silenttitan G1 Sole

39) ausmuh: Sacrifice Y1 Ausmuh
Move B1 Soul Sol

40) SilentTitan: Build Y1 Silenttitan
	ausmuh: Ahhh!  Everything of mine is in the wrong place :)

41) ausmuh: Build B1 Sol
	SilentTitan: That is the general lament of binary Homeworlds

42) SilentTitan: Move Y1 Silenttitan Sole

43) ausmuh: Trade R3 Y3 Sol

44) SilentTitan: Sacrifice Y2 Silenttitan
Move B3 Silenttitan Ausmuh
Move B1 Sole Ausmuh

45) ausmuh: Sacrifice Y3 Sol
Move B1 Sol Silenttitan
Move B1 Sol Silenttitan
Pass

46) SilentTitan: Sacrifice G1 Silenttitan
Build B2 Ausmuh
Catastrophe Ausmuh Blue
	ausmuh: Ugh,  I kinda lost my grip the second half :/ Good game though! I had a lot of fun :)

	ausmuh: Grip is not the right word,  more like strategy or something. O.o
	SilentTitan: Thanks for the game.


25450)
Started: 2014.2.26, Ended: 2014.3.9
Participants: Laurie_Menke (S), Otts (N)
Winner: Otts

1) Otts: Homeworld B2 Y1 G3
	Laurie_Menke: Thanks for the challenge, Alex!  Have fun!  (For starters, you'll want to build a homeworld with any two colors except green, and then build a large green ship.)

2) Laurie_Menke: Homeworld Y3 B1 G3

3) Otts: Build G1 Otts
	Laurie_Menke: The second move has no choice involved...we each have only one thing we can do:  build a small green.  After that, the choices start to open up.  :o)
	Otts: Ok, I think I've got a grasp of it here!  But...just to be (overly) technical and make sure I'm clear, before building that little green I could still have a few moves: pass, sacrifice my g3, or trade my g3 for another color.  I couldn't move it out because I wouldn't have any ships in my homeworld.  Granted none of those make sense, but I want to be sure I've got my head around it properly!

4) Laurie_Menke: Build G1 Laurie_menke

5) Otts: Discover G1 Otts B3 Beagle
	Laurie_Menke: It is true that you could pass or trade it for another color.  Good thinking!  :o)  You couldn't sacrifice it because that would leave your homeworld empty and end the game.

6) Laurie_Menke: Trade G1 Y1 Laurie_menke

7) Otts: Build G1 Otts

8) Laurie_Menke: Build Y1 Laurie_menke

9) Otts: Build G1 Beagle

10) Laurie_Menke: Build G2 Laurie_menke

11) Otts: Sacrifice G3 Otts
Build G2 Beagle
Build G2 Otts
Build G3 Otts
	Laurie_Menke: One thing you want to look out for is taking the last of any size.  When you took the last small green, I was able to get a medium green.  It was basically like you lost a turn, because I got 2 points of green power in one turn and those same two points of green power took you two turns.  It's not really avoidable a lot of the time, but it's something to watch for.  And BTW... you're doing well so far!
	Laurie_Menke: P.S.  I was safe taking the last yellow earlier because you didn't have the ability to grow yellow.
	Otts: Damn.  The learning curve is steep here, but I'm working my way through it.  I'm already finding holes in things I was thinking were solid yesterday.  I see now I'm frozen out of yellow ships for the time being.  You sly fox, I'll remember that.  ;)

12) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build G3 Laurie_menke
Pass

13) Otts: Trade G3 Y3 Otts
	Laurie_Menke: Yes, the learning curve is extremely steep for this game.  But it's worth the time and effort.  And you are doing well!  That last move was a nice move!  That is called the "factory" move.  It's a great way to speed up production, but you have to be careful not to set yourself up for destruction...which you have done!  Nice job!
	Laurie_Menke: Yes, the learning curve is extremely steep for this game.  But it's worth the time and effort.  And you are doing well!  That last move was a nice move!  That is called the "factory" move.  It's a great way to speed up production, but you have to be careful not to set yourself up for destruction...which you have done!  Nice job!
	Laurie_Menke: Oops!  Not sure why that posted twice...

14) Laurie_Menke: Discover Y1 Laurie_menke B2 Blue
	Laurie_Menke: LOL!  I don't know why I did that that way.  I could have just grown the green the regular way.  ::sigh::
	Otts: I realized its much tougher to learn this game when trying to learn other pyramid games at the same time.  Since they all have different trade mechanisms, I've had a little trouble connecting all the pips...er, dots, but I think I'm there now.  The thing that messed me up was thinking that when you trade, if your size ship is not available, you just take the next size up.  Well, that's not the case, so then I was thinking that I was frozen out of yellow ships, and even said so yesterday.  However, I just realized that I could swap my G3 for a Y3.  Gotta watch this game carefully!!

15) Otts: Sacrifice Y3 Otts
Discover G2 Otts Y3 I_hope
Discover G2 I_hope Y2 This_works
Move G2 This_works Laurie_menke
Catastrophe Laurie_menke G
	Laurie_Menke: Yep...there are always more options than appear on the surface.  :o)  And I know what you mean about learning multiple pyramid games at once!

16) Laurie_Menke: Discover Y1 Blue R3 Red

17) Otts: Sacrifice G2 Beagle
Build G2 Otts
Build G2 Otts
	Laurie_Menke: A well-executed move!  And it may pay off.  But it left your homeworld very weak.  We'll have to see how this pans out.  :o)

18) Laurie_Menke: Move Y1 Red Otts

19) Otts: Trade G2 R2 Otts
	Otts: Thanks! I'm not completely sure how the attacking works, so I'm interested to see how this ends up as well!
	Laurie_Menke: I'm not actually attacking.  I'm just protecting myself against an attack from you.  ;o)  In general, it takes two moves to attack--one to move into the same star system, and the other to turn an opponent's equal or smaller sized ship into your own ship (assuming you have accessto red).

20) Laurie_Menke: Discover Y1 Otts G3 Green
	Laurie_Menke: I should be nice and warn you that you are in imminent danger.  ;o)
	Otts: Hmmm...I sure do appreciate the courtesy...But I honestly can't figure out how.  There are no little greens you can trade your little yellow for, so I'm thinking I'm safe from catastrophe...Can you use the build technology off my green ships?  In any event, I was planning on switching a G2 to a R2, so that's what I guess I'm going to roll with...

21) Otts: Move R2 Otts Green
	Laurie_Menke: Ah, you are right...no little greens.  ::sigh::  And now i have to retreat.  ::double sigh::  You are doing very well!

22) Laurie_Menke: Discover Y1 Green G2 G2

23) Otts: Trade G2 Y2 Otts

24) Laurie_Menke: Move Y1 G2 Laurie_menke

25) Otts: Sacrifice Y2 Otts
Discover R2 Green G2 Sativa
Move R2 Sativa Laurie_menke

26) Laurie_Menke: Discover Y1 Laurie_menke G2 Ack

27) Otts: Attack Y1 Laurie_menke

	Otts: Well thanky!  I'm thinking I may have gotten lucky while your guard was down playing a newbie, but I'll take the compliment!  I do believe a rematch be a fair proposition!


25447)
Variants: "Hard time"
Started: 2014.2.26, Ended: 2014.3.25
Participants: radynski (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) radynski: Homeworld G1 B3 Y3

3) SilentTitan: Build G1 Silenttitan

4) radynski: Build Y1 Radynski

5) SilentTitan: Trade G1 Y1 Silenttitan

6) radynski: Trade Y1 G1 Radynski

7) SilentTitan: Build Y1 Silenttitan

8) radynski: Build Y1 Radynski

9) SilentTitan: Trade Y1 R1 Silenttitan

10) radynski: Trade Y1 R1 Radynski

11) SilentTitan: Build R2 Silenttitan

12) radynski: Build R2 Radynski

13) SilentTitan: Discover R1 Silenttitan B3 Sol

14) radynski: Build Y1 Radynski
	radynski: Shouldn't sol be a y2?  :)

15) SilentTitan: Build G1 Silenttitan
	SilentTitan: :)

16) radynski: Build G2 Radynski

17) SilentTitan: Build G2 Silenttitan

18) radynski: Sacrifice Y3 Radynski
Discover G1 Radynski B2 George
Move G1 George Sol
Move G1 Sol Silenttitan
Catastrophe Silenttitan Green
	radynski: I have no idea whether or not this is a good idea, but I'm going to try it.

19) SilentTitan: Trade R2 G2 Silenttitan

20) radynski: Build R2 Radynski

21) SilentTitan: Build G1 Silenttitan

22) radynski: Discover R2 Radynski R2 Beetle

23) SilentTitan: Sacrifice G1 Silenttitan
Build R3 Sol

24) radynski: Build R3 Radynski

25) SilentTitan: Trade R1 Y1 Sol

26) radynski: Trade R3 Y3 Radynski

27) SilentTitan: Build Y2 Silenttitan

28) radynski: Move Y1 Radynski Beetle

29) SilentTitan: Trade Y1 G1 Sol

30) radynski: Build Y1 Radynski

31) SilentTitan: Build G1 Sol

32) radynski: Sacrifice G2 Radynski
Build Y2 Beetle
Build Y2 Radynski

33) SilentTitan: Move Y1 Silenttitan Sol

34) radynski: Sacrifice Y1 Radynski
Discover R2 Beetle G3 Lush

35) SilentTitan: Sacrifice G2 Silenttitan
Build Y1 Sol
Build Y3 Silenttitan

36) radynski: Move Y2 Beetle Lush

37) SilentTitan: Trade Y2 G2 Silenttitan

38) radynski: Trade Y2 G2 Radynski

39) SilentTitan: Discover Y1 Sol B2 Soul

40) radynski: Trade R1 B1 Radynski

41) SilentTitan: Move G1 Sol Soul

42) radynski: Move G2 Radynski Beetle

43) SilentTitan: Trade Y3 G3 Silenttitan

44) radynski: Build R1 Lush

45) SilentTitan: Sacrifice G3 Silenttitan
Build G2 Sol
Build G3 Soul
Build G3 Silenttitan

46) radynski: Build R1 Lush

47) SilentTitan: Trade G3 B3 Soul

48) radynski: Move R1 Lush Silenttitan

49) SilentTitan: Sacrifice B3 Soul
Trade Y1 B1 Soul
Trade G2 Y2 Sol
Trade G2 B2 Silenttitan

50) radynski: Sacrifice B1 Radynski
Trade Y1 B1 Beetle

51) SilentTitan: Attack R1 Silenttitan South

52) radynski: Sacrifice Y2 Lush
Move R2 Lush Silenttitan
Move R1 Lush Silenttitan
Catastrophe Silenttitan Red

53) SilentTitan: Move R3 Sol Beetle

54) radynski: Sacrifice G2 Beetle
Build R1 Radynski
Build Y1 Radynski

55) SilentTitan: Build B1 Soul

56) radynski: Move R2 Radynski Soul

57) SilentTitan: Sacrifice Y2 Sol
Move B1 Soul Radynski
Move B1 Soul Radynski

58) radynski: Attack G1 Soul

59) SilentTitan: Build B3 Radynski
Catastrophe Radynski Blue

60) radynski: Build G2 Soul

61) SilentTitan: Build G2 Silenttitan

62) radynski: Trade G1 B1 Soul

63) SilentTitan: Sacrifice B2 Silenttitan
Trade Y1 G1 Sol
Trade R3 Y3 Beetle

64) radynski: Move Y3 Radynski Silenttitan

65) SilentTitan: Sacrifice Y3 Beetle
Move G1 Sol Radynski
Move G1 Sol Radynski
Move G2 Silenttitan Radynski
Catastrophe Radynski Green

	radynski: You may blow up my home, but you've lost yours in the process!  Ha ha!

You may win by the rules of the game, but the moral victory shall be mine!

Good game.  ;-)
	SilentTitan: Actually a phenomenol game.  You are a very good player.  Definitely a cut above the norm.
	SilentTitan: Actually a phenomenol game.  You are a very good player.  Definitely a cut above the norm.


25428)
Variants: "Hard time"
Started: 2014.2.27, Ended: 2014.3.6
Participants: wil (S), radynski (N)
Winner: wil

1) radynski: Homeworld G1 B2 Y3

2) wil: Homeworld B3 G1 G3 *

3) radynski: Build Y1 Radynski

4) wil: Build G1 Wil

5) radynski: Trade Y1 R1 Radynski

6) wil: Trade G3 Y3 Wil

7) radynski: Build Y1 Radynski

8) wil: Build G2 Wil

9) radynski: Discover Y1 Radynski B3 George

10) wil: Trade G2 R2 Wil

11) radynski: Build R1 Radynski

12) wil: Build G2 Wil

13) radynski: Discover Y1 George R1 Banks

14) wil: Build R2 Wil
	wil: shaping up to be one strange game....


15) radynski: Build R2 Radynski

16) wil: Build R3 Wil
	radynski: this is just not going well

17) radynski: Sacrifice Y3 Radynski
Discover R2 Radynski B3 George
Discover R2 George B2 Georgy
Move R2 Georgy Wil
Catastrophe Wil Red

18) wil: Discover G2 Wil Y2 Y2

19) radynski: Build R2 Radynski

20) wil: Build G2 Y2

21) radynski: Trade R2 G2 Radynski

22) wil: Build G3 Wil

23) radynski: Build G3 Radynski

24) wil: Sacrifice Y3 Wil
Discover G2 Y2 Y3 Y3
Move G2 Y2 Y3
Move G2 Y3 Radynski
Catastrophe Radynski G
	wil: It is all about experimentation in learning this game...  lots of strategy with few moving parts...

	wil: it just got worse...
	radynski: yeah, I knew I was screwed like 10 turns ago, but was hoping you would just screw up.  :)
Good game.
	wil: that is always the potentiall....a couple of reboots and this game can turn on the dime.


25426)
Variants: "Unrated"
Started: 2014.2.28, Ended: 2014.3.13
Participants: wil (S), qwertyu63 (N)
Winner: wil

1) qwertyu63: Homeworld B1 Y2 G3

2) wil: Homeworld G3 B1 B3 *

3) qwertyu63: Build G1 Qwertyu63

4) wil: Build B1 Wil

5) qwertyu63: Trade G1 Y1 Qwertyu63

6) wil: Trade B3 Y3 Wil

7) qwertyu63: Build Y1 Qwertyu63

8) wil: Build B2 Wil

	wil: Hellooooooo


25475)
Variants: "Hard time"
Started: 2014.2.28, Ended: 2014.3.6
Participants: ausmuh (S), Remneb (N)
Winner: ausmuh

1) Remneb: Homeworld B3 R2 G3

2) ausmuh: Homeworld G3 B1 B3 *

3) Remneb: Build G1 Remneb
	ausmuh: Greetings and Have fun!
	Remneb: Have a good game too !

4) ausmuh: Build B1 Ausmuh

5) Remneb: Build G1 Remneb

6) ausmuh: Trade B3 Y3 Ausmuh

7) Remneb: Trade G1 B1 Remneb

8) ausmuh: Build B2 Ausmuh

9) Remneb: Trade G1 Y1 Remneb

10) ausmuh: Discover B1 Ausmuh G2 Gwar

11) Remneb: Discover B1 Remneb Y1 Trek

12) ausmuh: Build B2 Gwar

13) Remneb: Build G1 Remneb

14) ausmuh: Trade B2 Y2 Gwar

15) Remneb: Sacrifice G1 Remneb
Build B2 Trek

16) ausmuh: Build B2 Gwar

17) Remneb: Trade B2 R2 Trek

18) ausmuh: Trade B2 R2 Gwar

19) Remneb: Build G1 Remneb

20) ausmuh: Build B2 Gwar

21) Remneb: Build G1 Remneb

22) ausmuh: Discover B2 Gwar G1 Slayer

23) Remneb: Move G1 Remneb Trek

24) ausmuh: Trade Y3 G3 Ausmuh

25) Remneb: Sacrifice G3 Remneb
Build G2 Trek
Build G2 Trek
Build G3 Remneb

26) ausmuh: Sacrifice G3 Ausmuh
Build B2 Gwar
Build B3 Slayer
Build B3 Ausmuh
	ausmuh: Oops,  color blind today -_-

27) Remneb: Trade G2 Y2 Trek

28) ausmuh: Sacrifice B2 Gwar
Trade B3 G3 Slayer
Trade B3 Y3 Ausmuh

29) Remneb: Build B2 Trek

30) ausmuh: Build B3 Slayer

31) Remneb: Discover G2 Trek Y2 Moon

32) ausmuh: Sacrifice G3 Slayer
Build Y1 Ausmuh
Build B3 Gwar
Build Y3 Gwar

33) Remneb: Sacrifice G3 Remneb
Build G2 Moon
Build G3 Moon
Build Y3 Remneb

34) ausmuh: Build R1 Gwar

35) Remneb: Build G3 Remneb

36) ausmuh: Sacrifice Y2 Gwar
Move B3 Gwar Trek
Move R1 Gwar Trek

37) Remneb: Sacrifice Y2 Trek
Move R2 Trek Moon
Move B2 Trek Moon

38) ausmuh: Sacrifice R2 Gwar
Attack B1N Trek
Attack G1N Trek

39) Remneb: Sacrifice Y3 Remneb
Move G2 Moon Ausmuh
Move G2 Moon Ausmuh
Move G3 Moon Ausmuh
Catastrophe Ausmuh G

40) ausmuh: Sacrifice B2 Slayer
Trade B3 R3 Slayer
Trade B2 R2 Ausmuh

41) Remneb: Build Y2 Remneb

42) ausmuh: Sacrifice Y3 Gwar
Move R2 Ausmuh Remneb
Move R3 Slayer Remneb
Move R1 Trek Remneb
Catastrophe Remneb Red

43) Remneb: Move G3 Remneb Ausmuh

44) ausmuh: Sacrifice Y3 Ausmuh
Move B3 Trek Remneb
Move B1 Trek Remneb
Move B1 Gwar Remneb
Catastrophe Remneb Blue

	ausmuh: Good game,  thanks again!
	Remneb: Thanks for the game !


25474)
Variants: "Hard time"
Started: 2014.3.1, Ended: 2014.4.17
Participants: SilentTitan (S), wil (N)
Winner: SilentTitan

1) wil: Homeworld B2 R1 G3

2) SilentTitan: Homeworld R2 B3 G3

3) wil: Build G1 Wil
	wil: I got overloaded and ddin't get back..sorry

4) SilentTitan: Build G1 Silenttitan

5) wil: Trade G1 Y1 Wil
	SilentTitan: Not a problem

6) SilentTitan: Trade G1 Y1 Silenttitan

7) wil: Build G1 Wil

8) SilentTitan: Build G1 Silenttitan

9) wil: Trade G1 R1 Wil

10) SilentTitan: Build Y1 Silenttitan
	wil: Looks like BC has TS in a predicament...He's not going to hard time out his he?
	SilentTitan: That happens occasionally. That's how I got to #1
	SilentTitan: That happens occasionally. That's how I got to #1

11) wil: Build Y2 Wil
	wil: I recall you dancing on top there for a bit!  But didn't it happen because TS missed a challenge and dropped to 6?

12) SilentTitan: Discover Y1 Silenttitan G1 Sol

13) wil: Trade Y1 B1 Wil

14) SilentTitan: Build Y1 Sol

15) wil: Build Y2 Wil

16) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Silenttitan
Build Y3 Silenttitan
	SilentTitan: Yes. That is exactly correct.  However, the underlying cause is probably the same.  Real life got busy.

17) wil: Discover Y2 Wil G3 G3

18) SilentTitan: Sacrifice Y1 Silenttitan
Discover Y2 Sol R3 Soul
	wil: nice move

19) wil: Build B1 Wil

20) SilentTitan: Trade Y3 G3 Silenttitan

21) wil: Move B1 Wil G3

22) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y3 Soul
Build Y3 Silenttitan

23) wil: Discover R1 Wil G3 Gee3

24) SilentTitan: Discover Y1 Sol R3 Sole

25) wil: Build B1 Wil

26) SilentTitan: Trade Y3 B3 Silenttitan

27) wil: B Y3 Wil

28) SilentTitan: Sacrifice Y3 Soul
Move Y2 Soul Wil
Move Y1 Sole Wil
Discover B3 Silenttitan G1 Tic
Catastrophe Wil Yellow

29) wil: B Y1 G3

30) SilentTitan: Build Y2 Silenttitan

31) wil: B B2 G3

32) SilentTitan: Sacrifice Y2 Silenttitan
Move B3 Tic G3
Move B3 G3 Wil
Catastrophe Wil Blue

33) wil: S Y1 G3
M R1 Gee3 Sol

34) SilentTitan: Sacrifice Y1 Sol
Discover Y1 Sol G3 Soul

35) wil: B R1 Sol

36) SilentTitan: Build G1 Silenttitan

37) wil: Build Y1 G3
	SilentTitan: I've forgotten what I was doing here..


38) SilentTitan: Build G2 Silenttitan

39) wil: Move B1 G3 Sol

40) SilentTitan: Build Y1 Silenttitan

41) wil: Sacrifice B2 G3
Trade Y1 B1 G3
Trade G3 B3 Wil

42) SilentTitan: Trade G2 R2 Silenttitan

43) wil: Sacrifice Y2 G3
Move R1 Sol Silenttitan
Move R1 Sol Silenttitan
Catastrophe Silenttitan R

44) SilentTitan: Build G2 Silenttitan

45) wil: Trade B1 R1 Sol

46) SilentTitan: Trade G2 R2 Silenttitan
	wil: you just teasin?
	SilentTitan: Sorry fell asleep actually.

47) wil: T B1 Y1 G3

48) SilentTitan: Build Y2 Silenttitan

49) wil: B Y2 G3

50) SilentTitan: Trade Y3 R3 Silenttitan

51) wil: T B3 G3 Wil

52) SilentTitan: Sacrifice Y2 Silenttitan
Move R3 Silenttitan Wil
Move R2 Silenttitan Wil

	wil: Thanx for the game


25480)
Variants: "Hard time"
Started: 2014.3.2, Ended: 2014.3.4
Participants: goulo (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld B1 Y2 G3 Teeteetee

2) goulo: Homeworld R1 B3 G3

3) TeeTeeTee: Build G1 Teeteetee
	goulo: hi, have fun!

4) goulo: Build G1 Goulo
	TeeTeeTee: Thanks: you too!

5) TeeTeeTee: Trade G1 B1 Teeteetee

6) goulo: Build G1 Goulo

7) TeeTeeTee: Build B1 Teeteetee

8) goulo: Trade G3 B3 Goulo

9) TeeTeeTee: Discover B1 Teeteetee G3 Pauli

10) goulo: Trade G1 Y1 Goulo

11) TeeTeeTee: Build B2 Pauli

12) goulo: Build B2 Goulo

13) TeeTeeTee: Build B2 Pauli

14) goulo: Trade B2 R2 Goulo

15) TeeTeeTee: Trade B2 Y2 Pauli

16) goulo: Build Y1 Goulo

17) TeeTeeTee: Build B2 Teeteetee

18) goulo: Discover R2 Goulo G2 Smeraldo

19) TeeTeeTee: Discover B1 Pauli G2 Bohr

20) goulo: Move Y1 Goulo Smeraldo

21) TeeTeeTee: Build B2 Bohr

22) goulo: Discover R2 Smeraldo B3 Safirego

23) TeeTeeTee: Trade B1 R1 Teeteetee

24) goulo: Build G1 Goulo

25) TeeTeeTee: Build B1 Bohr

26) goulo: Move G1 Goulo Smeraldo

27) TeeTeeTee: Sacrifice Y2 Pauli
Move B1 Bohr Goulo
Move B1 Bohr Goulo
Catastrophe Goulo Blue

	goulo: thanks for the game
	TeeTeeTee: Thanks again!


25440)
Variants: "Hard time"
Started: 2014.3.2, Ended: 2014.3.15
Participants: wil (S), Marmalade (N)
Winner: wil

1) Marmalade: Homeworld G1 Y2 B3
	wil: sorry I missed that last offer...

2) wil: Homeworld B3 G1 G3 *

3) Marmalade: Build B1 Marmalade

4) wil: Build G1 Wil

5) Marmalade: Build B1 Marmalade

6) wil: Trade G3 Y3 Wil

7) Marmalade: Discover B1 Marmalade G3 Foop

8) wil: Build G2 Wil

9) Marmalade: Build B1 Foop

10) wil: Trade G2 B2 Wil

11) Marmalade: Build B2 Foop

12) wil: Build B2 Wil

13) Marmalade: Trade B2 Y2 Foop

14) wil: Discover B2 Wil G2 G2

15) Marmalade: Sacrifice Y2 Foop
Move B1 Foop G2
Move B1 G2 Wil

16) wil: Discover B2 Wil Y2 Y2
	Marmalade: Let's try this :P

	wil: that worx well..

17) Marmalade: Build B2 Wil

18) wil: Build B3 G2



25451)
Variants: "Hard time"
Started: 2014.3.6, Ended: 2014.3.14
Participants: fogus (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) fogus: Homeworld G1 B3 Y3

3) SilentTitan: Build G1 Silenttitan

4) fogus: Build Y1 Fogus

5) SilentTitan: Trade G1 Y1 Silenttitan

6) fogus: Trade Y1 R1 Fogus

7) SilentTitan: Trade Y1 R1 Silenttitan

8) fogus: Build R2 Fogus

9) SilentTitan: Build R2 Silenttitan

10) fogus: Sacrifice Y3 Fogus
Discover R1 Fogus Y2 Ping
Discover R1 Ping Y3 Pong
Move R1 Pong Silenttitan
Catastrophe Silenttitan R

11) SilentTitan: Build G1 Silenttitan

12) fogus: Build R1 Fogus

13) SilentTitan: Build G1 Silenttitan

14) fogus: Trade R2 G2 Fogus

15) SilentTitan: Trade G1 Y1 Silenttitan

16) fogus: Build R1 Fogus

17) SilentTitan: Trade Y1 R1 Silenttitan

18) fogus: Trade R1 Y1 Fogus

19) SilentTitan: Trade G1 Y1 Silenttitan

20) fogus: Build Y1 Fogus

21) SilentTitan: Build Y2 Silenttitan

22) fogus: Discover Y1 Fogus G2 Mac

23) SilentTitan: Trade Y2 R2 Silenttitan

24) fogus: Build Y2 Mac

25) SilentTitan: Move G3 Silenttitan Fogus

26) fogus: Build Y2 Fogus

27) SilentTitan: Sacrifice R2 Silenttitan
Attack Y2 Fogus South
Attack R1 Fogus South

28) fogus: Build G1 Fogus
	fogus: Nice!

29) SilentTitan: Attack Y1 Fogus South
Catastrophe Fogus Green
	SilentTitan: Good game.  Thanks for playing.  Defiantly a challenge to figure out the end there.
	fogus: Stinks to lose, but that was a pleasure to watch.  :-)  Thanks a ton.



25499)
Variants: "Hard time"
Started: 2014.3.7, Ended: 2014.3.15
Participants: ts52 (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld R1 B2 G3

2) ts52: Homeworld B3 Y1 G3

3) TeeTeeTee: Build G1 Teeteetee

4) ts52: Build G1 Ts52

5) TeeTeeTee: Trade G1 Y1 Teeteetee

6) ts52: Discover G1 Ts52 B2 Gonzo

7) TeeTeeTee: Build Y1 Teeteetee

8) ts52: Build G1 Ts52

9) TeeTeeTee: Build Y2 Teeteetee

10) ts52: Build G1 Gonzo

11) TeeTeeTee: Build G2 Teeteetee

12) ts52: Build G2 Ts52

13) TeeTeeTee: Discover Y1 Teeteetee G3 Feynman

14) ts52: Trade G2 Y2 Ts52

15) TeeTeeTee: Sacrifice G3 Teeteetee
Build Y2 Feynman
Build Y3 Feynman
Build Y3 Teeteetee

16) ts52: Move Y2 Ts52 Gonzo

17) TeeTeeTee: Move Y3 Feynman Gonzo

18) ts52: Trade G1 R1 Gonzo

19) TeeTeeTee: Trade Y3 R3 Teeteetee

20) ts52: Sacrifice Y2 Gonzo
Discover G1 Gonzo Y3 Bigbird
Move R1 Gonzo Bigbird

21) TeeTeeTee: Sacrifice G2 Teeteetee
Build Y2 Gonzo
Build Y3 Teeteetee

22) ts52: Build G1 Bigbird

23) TeeTeeTee: Trade Y3 G3 Gonzo

24) ts52: Build R1 Bigbird

25) TeeTeeTee: Move Y2 Teeteetee Bigbird

26) ts52: Move R1 Bigbird Teeteetee

27) TeeTeeTee: Sacrifice R3 Teeteetee
Attack R1 Teeteetee
Attack R1 Bigbird
Attack G1 Bigbird

28) ts52: Trade G3 R3 Ts52

29) TeeTeeTee: Build Y3 Gonzo

30) ts52: Build R2 Ts52

31) TeeTeeTee: Trade Y3 R3 Gonzo

32) ts52: Sacrifice R2 Ts52
Attack R1 Bigbird
Attack G1 Bigbird

33) TeeTeeTee: Sacrifice R3 Gonzo
Attack R1 Bigbird
Attack G1 Bigbird
Attack G1 Bigbird

34) ts52: Build R2 Ts52

35) TeeTeeTee: Build Y3 Feynman

36) ts52: Build G2 Ts52

37) TeeTeeTee: Trade Y3 G3 Teeteetee

38) ts52: Discover R2 Ts52 B2 Grover

39) TeeTeeTee: Move Y3 Feynman Grover

40) ts52: Trade R2 G2 Grover

41) TeeTeeTee: Sacrifice Y2 Gonzo
Move G3 Gonzo Ts52
Move Y3 Grover Ts52

42) ts52: Attack G3 Ts52
	TeeTeeTee: I think you needed to keep hold of an r2, there...
	ts52: Hmmm, that is a problem, isn't it. :/ I don't think I was winning this one anyway.

43) TeeTeeTee: Sacrifice R1 Teeteetee
Attack R3 Ts52

44) ts52: Trade G2 R2 Ts52

45) TeeTeeTee: Sacrifice R3 Ts52
Attack G3 Ts52
Attack R2 Ts52
Attack G1 Ts52
	TeeTeeTee: Thanks for the game!
	ts52: Thank you. Well played.



25503)
Variants: "Hard time"
Started: 2014.3.8, Ended: 2014.3.9
Participants: ausmuh (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R1 B2 G3

2) ausmuh: Homeworld G3 B2 R3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo
	ausmuh: Hello. Thanks for accepting and you have fun too! 

4) ausmuh: Build R1 Ausmuh

5) goulo: Build G1 Goulo

	goulo: that was unexpectedly short...!


25460)
Variants: "Hard time"
Started: 2014.3.8, Ended: 2014.3.9
Participants: ausmuh (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3
	wil: thx 4 da game

2) ausmuh: Homeworld G3 Y2 B3

3) wil: Build G1 Wil
	ausmuh: You too, have fun :)

4) ausmuh: Build B1 Ausmuh
	wil: Win or lose I always have fun...and when I lose I hopefully get to learn something as well.

5) wil: Trade G1 B1 Wil

	wil: Well now...that wasn't fun.


25509)
Started: 2014.3.10, Ended: 2014.4.20
Participants: Laurie_Menke (S), Otts (N)
Winner: Otts

1) Otts: Homeworld Y3 B1 G3

2) Laurie_Menke: Homeworld Y1 B2 G3
	Laurie_Menke: OK, let's see if I can give you a better run for your money this time.  :o)

3) Otts: Build G1 Otts
	Otts: :)  I like that B2Y1 homeworld ya got there!  I used it last time and am curious to see the difference with this Y3B1!  Good lucks!!

4) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: :o)

5) Otts: Discover G1 Otts Y2 Old_yeller

6) Laurie_Menke: Trade G1 B1 Laurie_menke

7) Otts: Build G1 Otts

8) Laurie_Menke: Build G1 Laurie_menke

9) Otts: Build G2 Old_yeller

10) Laurie_Menke: Discover G1 Laurie_menke Y3 Fuel

11) Otts: Trade G1 B1 Otts

12) Laurie_Menke: Build B2 Laurie_menke

13) Otts: Build B2 Otts

14) Laurie_Menke: Discover B1 Laurie_menke Y3 Useemup

15) Otts: Move B2 Otts Old_yeller

16) Laurie_Menke: Build B3 Laurie_menke

17) Otts: Discover G2 Old_yeller G3 Greendica

18) Laurie_Menke: Trade B2 Y2 Laurie_menke

19) Otts: Move B2 Old_yeller Useemup

20) Laurie_Menke: Discover B1 Useemup Y2 Closer

21) Otts: Build G1 Old_yeller

22) Laurie_Menke: Sacrifice G1 Fuel
Build B2 Closer

23) Otts: Move B1 Otts Old_yeller

24) Laurie_Menke: Build Y1 Laurie_menke

25) Otts: Build B3 Old_yeller

26) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move B1 Closer Otts
Move B2 Closer Otts

27) Otts: Trade B3 Y3 Old_yeller

28) Laurie_Menke: Move B3 Laurie_menke Useemup

29) Otts: Move B2 Useemup Laurie_menke

30) Laurie_Menke: Trade Y1 R1 Laurie_menke

31) Otts: Sacrifice G2 Greendica
Build B3 Laurie_menke
Build B3 Laurie_menke
Catastrophe Laurie_menke Blue

32) Laurie_Menke: Discover B3 Useemup Y2 Almostthere

33) Otts: Trade G1 R1 Old_yeller
	Laurie_Menke: Grrr...should have seen that coming...

34) Laurie_Menke: Move B3 Almostthere Otts
Catastrophe Otts B

35) Otts: Build Y1 Old_yeller

36) Laurie_Menke: Build R1 Laurie_menke

37) Otts: Move Y1 Old_yeller Otts

38) Laurie_Menke: Discover R1 Laurie_menke B2 Phonebooth

39) Otts: Build Y1 Old_yeller

40) Laurie_Menke: Move R1 Laurie_menke Otts

41) Otts: Sacrifice R1 Old_yeller
Attack R1 Otts
	Laurie_Menke: Oohhh...tricky!  :o)

42) Laurie_Menke: Build G1 Laurie_menke

43) Otts: Build Y2 Otts
	Laurie_Menke: Sometimes this game makes me feel very stupid.  :o/  Nice move!

44) Laurie_Menke: Build G1 Laurie_menke
	Otts: There is too much to think about here.  I don't know that I'll ever reach the point of being ready to play this game in person again because of it.  I am learning though.  I've seen the early scramble to get into the 3rd non-red color twice from you now, and Andy did the same to me in person, so I'm finding that to be something to watch out for.  I'm also finding the red power to be almost too powerful.  With the ability to sacrifice one small red for an attack anywhere on the board, I don't know that I'd ever go as long without getting my hands on one again.  This is one dynamic game!
	Otts: ..And I wouldn't say it should make you feel stupid.  This game has so many options, it almost depends on someone making a mistake, or missing out on noticing someones intentions, to create a crack of opportunity.  Those cracks can be certainly tough to seal, however!  

45) Otts: Move G1 Old_yeller Laurie_menke
Catastrophe Laurie_menke G
	Laurie_Menke: You are very kind...and observant and a quick study!  If you enjoy the game, then don't give up!  You are very talented!  You keep whooping me soundly, and *I* play Andy all the time.  He makes short order of everyone.  Don't let that experience sour you.  You're right that there are tons of options, which is what makes the game fun and interesting...if a bitof a brain burner.  ;o)  And you're right that it's hard to recover from goofs, which is what makes it frustrating.  :o/  But you should definitely explore your theory about red.  Most players don't see it as particularly powerful or necessary early on, but you are better at this than most players.  :o)  Anyway, if it's more work than fun for you, then absolutely move on to more fun!  I've definitely enjoyed the challenge you've provided!

	Otts: Thank you back for the kind words and gracious games!  I'm not soured from getting whipped in person, nor ready to give up on my homeworlds experience just yet!  I'm going go try to teach a friend how to play, but I think I'll be back for another rematch soon if you're interested!
	Laurie_Menke: Sounds good!  Anytime!  Just ping me on FaceBook so I know you've challenged me.  Congrats!  :o)


25512)
Started: 2014.3.11, Ended: 2014.3.18
Participants: Remneb (S), fogus (N)
Winner: Remneb

1) fogus: Homeworld G1 B3 Y3

2) Remneb: Homeworld R1 B2 G3

3) fogus: Build Y1 Fogus

4) Remneb: Build G1 Remneb

5) fogus: Trade Y1 R1 Fogus

6) Remneb: Trade G1 Y1 Remneb

7) fogus: Build Y1 Fogus

8) Remneb: Build G1 Remneb

9) fogus: Trade Y1 G1 Fogus

10) Remneb: Discover G1 Remneb Y3 Zork

11) fogus: Build G2 Fogus

12) Remneb: Build G2 Zork

13) fogus: Discover G1 Fogus Y2 Floop

14) Remneb: Move G2 Zork Floop

15) fogus: Build G2 Floop

16) Remneb: Build G3 Zork

17) fogus: Sacrifice G2 Floop
Build R1 Fogus
Build R2 Fogus

18) Remneb: Move G3 Zork Remneb

19) fogus: Move R2 Fogus Floop

20) Remneb: Discover G2 Floop Y1 Thor

21) fogus: Build G2 Floop

22) Remneb: Build G3 Thor

23) fogus: Move R2 Floop Zork

24) Remneb: Move G1 Zork Floop

25) fogus: Move R1 Fogus Floop

26) Remneb: Sacrifice G3 Remneb
Build Y1 Remneb
Build Y2 Remneb
Build G3 Remneb

27) fogus: Trade G2 R2 Fogus

28) Remneb: Move G2 Thor Floop
Catastrophe Floop G

29) fogus: Discover R1 Floop B3 Wonka
	fogus: CATASTROPHE AS SIMPLIFYING MECHANISM  :-)
	Remneb: You cannot build somewhere else then in your homeworld...for few moves.

30) Remneb: Move G3 Remneb Wonka

31) fogus: Trade R1 G1 Wonka

32) Remneb: Move Y2 Remneb Wonka

33) fogus: Move R2 Zork Remneb

34) Remneb: Attack R2 Remneb

35) fogus: Build Y2 Fogus
	fogus: OH MY!  I feel much more comfortable with this game then a month ago, but I still have this huge hole in my planning around attacking. :-O

36) Remneb: Trade G3 R3 Wonka
	Remneb: I'm not so familiar with this game either.
	fogus: No worries.  We can learn together. :-)

37) fogus: Sacrifice G1 Wonka
Build Y2 Fogus

38) Remneb: Move G3 Thor Wonka

39) fogus: Discover Y2 Fogus G2 Leaf

40) Remneb: Move R3 Wonka Leaf

41) fogus: Discover Y2 Leaf G3 Pill

42) Remneb: Build G1 Remneb

43) fogus: Trade R1 G1 Fogus

44) Remneb: Build G2 Wonka

45) fogus: Trade Y2 B2 Fogus
	fogus: I feel the resource squeeze! 

46) Remneb: Discover G2 Wonka Y2 Argo

47) fogus: Sacrifice B2 Fogus
Trade R2 G2 Fogus
Trade G1 R1 Fogus
	Remneb: Yes...well my only task for now is to get all the greens that i can.

48) Remneb: Build G1 Argo

49) fogus: Discover G2 Fogus R2 Gnome

50) Remneb: Move R2 Remneb Pill

51) fogus: Move Y2 Pill Argo

52) Remneb: Sacrifice R2 Pill
Attack Y2 Argo
Pass

	fogus: I stink at this game.  :-(
	fogus: Thanks for the game.
	Remneb: Ok. Thanks.


25403)
Variants: "Unrated, Hard time"
Started: 2014.3.15, Ended: 2014.5.21
Participants: Grosseteste (S), fogus (N), wil (E)
Winner: fogus

1) fogus: Homeworld G1 B3 Y3
	wil: I'll try to keep up...

2) wil: Homeworld B2 G1 Y3

3) Grosseteste: H B3 Y2 G3

4) fogus: Build Y1 Fogus

5) wil: B Y1 Wil

6) Grosseteste: B G1 Grosseteste

7) fogus: Trade Y1 G1 Fogus

8) wil: D Y1 Wil G3 G3

9) Grosseteste: T G1 R1 Grosseteste

10) fogus: Build Y1 Fogus

11) wil: B Y1 Wil

12) Grosseteste: B R1 Grosseteste

13) fogus: Trade Y1 R1 Fogus

14) wil: T Y1 R1 Wil

15) Grosseteste: Discover R1 Grosseteste G1 Luce

16) fogus: Build G2 Fogus

17) wil: Build R2 Wil

18) Grosseteste: B G2 Grosseteste

19) fogus: Build R2 Fogus

20) wil: M R2 Wil G3

21) Grosseteste: Build R2 Luce

22) fogus: Discover G1 Fogus B2 Grapes

23) wil: B Y1 Wil

24) Grosseteste: T G2 Y2 Grosseteste

25) fogus: Build G2 Grapes

26) wil: T Y1 B1 Wil

27) Grosseteste: B G2 Grosseteste

28) fogus: Move R1 Fogus Grapes

29) wil: B R2 Wil

30) Grosseteste: S G2 Grosseteste
B R3 Grosseteste
B R3 Luce

31) fogus: Sacrifice G2 Grapes
Build R3 Fogus
Build R3 Grapes

32) wil: M R2 G3 Luce
C Luce R

33) Grosseteste: T R1 B1 Grosseteste

34) fogus: Build Y1 Fogus

35) wil: B B1 Wil

36) Grosseteste: Build G1 Grosseteste

37) fogus: Trade Y1 B1 Fogus

38) wil: M B1 Wil G3

39) Grosseteste: Discover G1 Grosseteste Y1 Luce

40) fogus: Build G2 Grapes

41) wil: B B2 G3

42) Grosseteste: B G2 Luce

43) fogus: Trade G2 B2 Grapes

44) wil: T B1 R1 G3

45) Grosseteste: Discover G1 Luce Y2 Colore

46) fogus: Build Y1 Fogus

47) wil: T R2 G2 Wil

48) wil: B R1 G3

49) fogus: Move Y1 Fogus Grapes

50) wil: B R2 Wil
	fogus: So now what?  Are we still trying to attack the left-hand player?  Or is it me vs wil now?
	wil: Me n you... The issue with online multiplayer...rarely does it actually last...we are now in a binary game.
	fogus: Shoot.  Having those extra pyramids hanging and out of play around makes things super interesting... and super-confusing. ;-)
	Grosseteste: Sorry guys.

51) fogus: Discover B2 Grapes Y3 Flipper

52) wil: M R1 G3 Luce

53) fogus: Trade R1 B1 Grapes

54) wil: B B3 G3

55) fogus: Sacrifice Y3 Fogus
Move B1 Grapes Flipper
Move B2 Flipper Wil
Move B1 Flipper Wil
Catastrophe Wil B

56) wil: M B3 G3 Luce

57) fogus: Trade R3 Y3 Fogus

58) wil: A G2S Luce

59) fogus: Sacrifice Y3 Fogus
Move G2 Fogus Colore
Move G2 Colore Wil
Move G1 Grapes Wil
Catastrophe Wil G

	fogus: Thank you for the game.
	wil: I didn't see that you had two greens!!!  I was working toward insuring you wouldn't get three and thought you only had one and am now babbling incoherently due to my grevious error!!!   Oh well...yes...good game!  Till next time...give me another chaLlenge whenever...I enjoy getting my butt whipped!
	wil: I didn't see that you had two greens!!!  I was working toward insuring you wouldn't get three and thought you only had one and am now babbling incoherently due to my grevious error!!!   Oh well...yes...good game!  Till next time...give me another chaLlenge whenever...I enjoy getting my butt whipped!
	fogus: I was hoping that the cover of the extra pieces would shield me... my strategy was totally, cross my fingers and hope that obfuscation would pan out. :-)


25485)
Variants: "Hard time"
Started: 2014.3.15, Ended: 2014.4.9
Participants: Grosseteste (S), Marmalade (N)
Winner: Marmalade

1) Marmalade: Homeworld Y2 B1 G3

2) Grosseteste: Homeworld Y3 B1 G3

3) Marmalade: Build G1 Marmalade

4) Grosseteste: B G1 Grosseteste

5) Marmalade: Discover G1 Marmalade B3 Foop

6) Grosseteste: B G1 Grosseteste

7) Marmalade: Build G2 Marmalade

8) Grosseteste: T G1 B1 Grosseteste

9) Marmalade: Build G1 Foop

10) Grosseteste: D G1 Grosseteste Y2 Luce

11) Marmalade: Trade G1 Y1 Foop

12) Grosseteste: B B2 Grosseteste

13) Marmalade: Trade G2 B2 Marmalade

14) Grosseteste: Move B1 Grosseteste Luce

15) Marmalade: Build Y1 Foop

16) Grosseteste: S G3 Grosseteste
B B2 Luce
B B3 Luce
B B3 Grosseteste

17) Marmalade: Discover B2 Marmalade G3 Cloom

18) Grosseteste: D B3 Luce Y3 Hexaemeron

19) Marmalade: Build G1 Marmalade

20) Grosseteste: Sacrifice B2 Luce
Trade B3 G3 Grosseteste
Trade B3 R3 Hexaemeron

21) Marmalade: Trade G1 R1 Marmalade

	Grosseteste: Sorry about that; I was sick over the weekend and apparently miscounted the time left in this one by a couple hours :(


25540)
Variants: "Hard time"
Started: 2014.3.15, Ended: 2014.4.7
Participants: SilentTitan (S), Grosseteste (N)
Winner: SilentTitan

1) Grosseteste: Homeworld Y2 B1 G3

2) SilentTitan: Homeworld R2 B3 G3

3) Grosseteste: B G1 Grosseteste

4) SilentTitan: Build G1 Silenttitan

5) Grosseteste: B G1 Grosseteste

6) SilentTitan: Build G2 Silenttitan

7) Grosseteste: D G1 Grosseteste G3 Luce

8) SilentTitan: Trade G2 Y2 Silenttitan

9) Grosseteste: B G2 Grosseteste

10) SilentTitan: Trade G1 B1 Silenttitan

11) Grosseteste: T G1 B1 Grosseteste

12) SilentTitan: Build B2 Silenttitan

13) Grosseteste: B B2 Grosseteste

14) SilentTitan: Discover B1 Silenttitan G1 Sol

	Grosseteste: Sorry again! I plead illness this time, hopefully I won't be as flaky should we meet again.
	SilentTitan: No problem.  We can meet again anytime you like


25506)
Variants: "Hard time"
Started: 2014.3.15, Ended: 2014.3.25
Participants: Remneb (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) Remneb: Homeworld B3 R1 G3

3) wil: Build G1 Wil

4) Remneb: Build G1 Remneb

5) wil: Trade G1 Y1 Wil

6) Remneb: Trade G1 Y1 Remneb

7) wil: Build G1 Wil

8) Remneb: Build G1 Remneb

9) wil: Trade G1 R1 Wil

10) Remneb: Trade G1 R1 Remneb

11) wil: Build R2 Wil

12) Remneb: Build R2 Remneb

13) wil: Discover R1 Wil B3 B3

14) Remneb: Discover R1 Remneb Y2 Op

15) wil: Build R3 Wil

16) Remneb: Discover R1 Op Y3 Rem

17) wil: Trade R2 Y2 Wil

18) Remneb: Build G1 Remneb

19) wil: Move R3 Wil Rem

20) Remneb: Discover R1 Rem Y2 Orb

21) wil: Build G1 Wil

22) Remneb: Discover R2 Remneb Y2 Pod

23) wil: Move Y2 Wil B3

24) Remneb: Discover R1 Orb Y3 Juno

25) wil: M G1 Wil B3

26) Remneb: Discover G1 Remneb Y2 Seth

27) wil: S G3 Wil
B Y1 B3
B Y3 Wil
B R2 Rem

28) Remneb: Sacrifice G1 Seth
Build R3 Juno

29) wil: B R3 B3

30) Remneb: Build Y2 Remneb

31) wil: T R3 G3 B3

32) Remneb: Build G1 Remneb

33) wil: B R3 B3

34) Remneb: Move G1 Remneb Pod

35) wil: M G3 B3 Pod

36) Remneb: Move R2 Pod Rem

37) wil: M R2 Rem Pod

38) Remneb: Sacrifice Y2 Remneb
Discover R2 Rem G2 Log
Move G1 Pod Juno

39) wil: M R3 Rem Log

40) Remneb: Sacrifice Y1 Remneb
Discover R2 Log Y3 Top

41) wil: Build G1 Pod
	wil: Stay still will ya?  

42) Remneb: Build G2 Juno

43) wil: S Y2 B3
M G1 Pod Remneb
M G3 Pod Remneb

44) Remneb: Sacrifice R2 Top
Attack G3 Remneb
Attack G1 Remneb

45) wil: S Y3 Wil
M R3 Log Remneb
M G1 B3 Pod
M G1 Pod Remneb
C Remneb G

	wil: I gave you three choices...all bad...thanx for the game...I look forward to the next!
	Remneb: Thanks for the game.


25542)
Variants: "Hard time"
Started: 2014.3.20, Ended: 2014.4.8
Participants: wil (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3
	Broccoli_Commander: Hey! Decided to accept your suggestion now that I officially avenged you ;)

2) wil: H B3 Y2 G3

3) Broccoli_Commander: Build G1 Broccoli_commander

4) wil: B G1 Wil

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) wil: D G1 Wil B1 B1

7) Broccoli_Commander: Build G1 Broccoli_commander

8) wil: B G1 Wil

9) Broccoli_Commander: Build Y1 Broccoli_commander

10) wil: Build G2 Wil

11) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce

12) wil: S G3 Wil
B G2 B1
B G2 B1
B G3 Wil

13) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build Y1 Broccoli_commander
Build Y2 Lettuce

14) wil: T G2 Y2 B1

15) Broccoli_Commander: Build Y3 Broccoli_commander

16) wil: T G2 R2 Wil

17) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry

18) wil: B Y3 B1

19) Broccoli_Commander: Sacrifice Y2 Lettuce
Move Y1 Lettuce B1
Move Y1 Blueberry B1
Catastrophe B1 Y

20) wil: D G1 Wil Y1 Y1

21) Broccoli_Commander: Discover Y3 Broccoli_commander G3 Lettuce

22) wil: B G2 Wil

23) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Broccoli_commander
Build G3 Broccoli_commander
Build Y1 Lettuce

24) wil: T G2 Y2 B1

25) Broccoli_Commander: Trade G1 R1 Broccoli_commander

26) wil: T G2 B2 Wil

27) Broccoli_Commander: Move Y3 Lettuce B1

28) wil: M Y2 B1 Lettuce

29) Broccoli_Commander: Sacrifice G2 Broccoli_commander
Build Y2 Lettuce
Build Y3 B1

30) wil: S Y2 Lettuce
M R2 Wil Y1
M R2 Y1 Lettuce

31) Broccoli_Commander: Sacrifice R1 Broccoli_commander
Attack R2 Lettuce

32) wil: Build B1 Wil
	wil: What was I thinkin?   Obviously I wasn't

	Broccoli_Commander: Yeah, not your best move 

33) Broccoli_Commander: Move Y3 B1 Wil

	wil: Why do I always forget I need a gun?  


25516)
Started: 2014.3.23, Ended: 2014.4.18
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H B2 R1 G3

2) ts52: Homeworld R3 B2 G3

3) wil: B G1 Wil

4) ts52: Build G1 Ts52

5) wil: T G1 Y1 Wil

6) ts52: Trade G1 Y1 Ts52

7) wil: B G1 Wil

8) ts52: Build G1 Ts52

9) wil: Trade G1 R1 Wil

10) ts52: Discover G1 Ts52 B1 Gonzo

11) wil: D R1 Wil Y3 Y3

12) ts52: Trade G1 R1 Gonzo

13) wil: B G1 Wil

14) ts52: Build G1 Ts52

15) wil: B Y1 Wil

16) ts52: Build Y2 Ts52

17) wil: D Y1 Wil G3 G3

18) ts52: Move Y2 Ts52 Gonzo

19) wil: B Y2 G3

20) ts52: Move G1 Ts52 Gonzo

21) wil: D Y1 G3 G2 G2

22) ts52: Build R2 Gonzo

23) wil: S G3 Wil
B Y2 G2
B Y3 G3
B Y3 Wil


24) ts52: Move R2 Gonzo Y3

25) wil: M R1 Y3 G2

26) ts52: Build R2 Gonzo

27) wil: Move Y3 G3 Gonzo

28) ts52: Sacrifice Y2 Gonzo
Discover R2 Gonzo Y2 Zoe
Move R1 Gonzo Zoe

29) wil: Build R2 G2

30) ts52: Sacrifice G1 Gonzo
Build R3 Y3

31) wil: Sacrifice Y2 G2
Move R2 G2 Y3
Move R1 G2 Y3
Catastrophe Y3 R

32) ts52: Move R2 Zoe G3

33) wil: Trade Y3 G3 Wil

34) ts52: Attack Y2 G3

35) wil: Sacrifice G3 Wil
Build Y2 Gonzo
Build Y3 Wil
Build Y3 G2

36) ts52: Build G1 Ts52

37) wil: Trade Y2 R2 Gonzo

38) ts52: Build Y2 Ts52

39) wil: Move Y3 G2 G3

40) ts52: Move R2 G3 G2

41) wil: D Y1 G2 B1 Bone

42) ts52: Move Y2 Ts52 Bone

43) wil: T Y1 B1 Wil

44) ts52: Build Y1 G3

45) wil: Build B2 Wil

46) ts52: Sacrifice R1 Zoe
Attack Y1 Bone

47) wil: S B2 Wil
T Y3 R3 G3
T Y3 G3 Wil

48) ts52: Sacrifice Y1 G3
Move Y2 G3 G2

49) wil: T G1 Y1 Wil

50) ts52: Trade Y1 G1 Bone

51) wil: B B2 Wil

52) ts52: Build R1 G2

53) wil: D B2 Wil Y3 Y3

54) ts52: Build G1 Bone

55) wil: S G3 Wil
B B3 Wil
B B3 Wil
B B3 Y3

56) ts52: Discover G1 Bone Y3 Bigbird

57) wil:
T B3 G3 Wil

58) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G2 Bone
Build G3 Ts52

59) wil: T B3 R3 Wil

60) ts52: Move R2 G2 Bigbird

61) wil: M B3 Y3 Bone

62) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Bone
Build Y2 G2

63) wil: S R3 Wil
A G1 Bone
A Y2 Bone
A G2 Bone

64) ts52: Sacrifice Y1 Bone
Discover G1 Ts52 Y1 Zoe

65) wil: B B3 Bone

66) ts52: Build R1 Bigbird

67) wil: T B3 R3 Bone

68) ts52: Build R2 G2

69) wil: B B3 Bone

70) ts52: Move Y2 G2 Y3
	wil: I yi captain, the guns are loaded and in place as directed...

71) wil: S Y3 Gonzo
M B3 Bone Ts52
M B3 Bone Ts52
M R3 Bone Ts52

72) ts52: Sacrifice R2 Bigbird
Attack R3 Ts52
Attack B3 Ts52

73) wil: S R3 G3
A R3 Ts52
A G3 Ts52
A B3 Ts52
	ts52: Yeah, I was pretty sure there was no way out of this. Sorry for dragging it out, but I always like to play it to the end. Well played sir. 
	wil: I agree, playing them out, one missed move capitalized on and the tide turns quickly.

74) ts52: Sacrifice G1 Bigbird
Build Y3 Ts52

75) wil: S G3 Ts52
B R2 Ts52
B R3 Ts52
B B3 Ts52
C Ts52 R
C Ts52 B
	ts52: I've been losing the race to large ships a lot recently. Have to sit down and figure that out. Thanks for the game!
	wil: I couldn't let it end with me with seven ships in your homeworld...
	wil: This game always intrigues...  I had a great game against someone who beats me consistently and lost a game to someone I was teaching for the second time..
	wil: This game always intrigues...  I had a great game against someone who beats me consistently and lost a game to someone I was teaching for the second time..



25716)
Variants: "Hard time"
Started: 2014.4.14, Ended: 2014.5.17
Participants: TwoShort (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld R1 B2 G3

2) TwoShort: Homeworld B1 R3 G3

3) Broccoli_Commander: Build G1 Broccoli_commander

4) TwoShort: Build G1 Twoshort

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) TwoShort: Trade G1 B1 Twoshort

7) Broccoli_Commander: Build Y1 Broccoli_commander

8) TwoShort: Build B1 Twoshort

9) Broccoli_Commander: Build Y1 Broccoli_commander

10) TwoShort: Trade G3 Y3 Twoshort

11) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce

12) TwoShort: Discover B1 Twoshort G2 Grogar

13) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry

14) TwoShort: Build B2 Grogar

15) Broccoli_Commander: Build Y2 Lettuce

16) TwoShort: Trade B2 G2 Grogar

17) Broccoli_Commander: Discover Y1 Lettuce Y2 Cauliflower

18) TwoShort: Sacrifice G2 Grogar
Build B2 Grogar
Build B2 Twoshort

19) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build Y2 Lettuce
Build Y3 Broccoli_commander
Build Y3 Blueberry

20) TwoShort: Build B3 Grogar

21) Broccoli_Commander: Trade Y3 R3 Blueberry

22) TwoShort: Sacrifice B2 Twoshort
Trade B2 R2 Grogar
Trade B3 Y3 Grogar

23) Broccoli_Commander: Trade Y3 G3 Broccoli_commander
	Broccoli_Commander: heh i fell for it

24) TwoShort: Build B2 Grogar

25) Broccoli_Commander: Build Y3 Broccoli_commander

26) TwoShort: Build B2 Grogar

27) Broccoli_Commander: Trade Y3 R3 Broccoli_commander

28) TwoShort: Trade B2 G2 Grogar

29) Broccoli_Commander: Build Y3 Broccoli_commander

30) TwoShort: Sacrifice G2 Grogar
Build B2 Grogar
Build B3 Twoshort

31) Broccoli_Commander: Move R3 Broccoli_commander Lettuce

32) TwoShort: Build R1 Grogar

33) Broccoli_Commander: Build R1 Lettuce

34) TwoShort: Trade B3 G3 Twoshort

35) Broccoli_Commander: Build G1 Broccoli_commander

36) TwoShort: Build B3 Twoshort

37) Broccoli_Commander: Move G1 Broccoli_commander Blueberry

	TwoShort: Dammit.  Sorry, life got busy...
	Broccoli_Commander: No worries, it's just a game


25580)
Variants: "Hard time"
Started: 2014.4.14, Ended: 2014.6.15
Participants: wil (S), Broccoli_Commander (N)
Winner: wil

1) Broccoli_Commander: Homeworld Y1 B2 G3

2) wil: Homeworld B3 G2 Y3
	Broccoli_Commander: Have a good game dear wil!
Any news from your commented-games project?
	wil: Lonely at the top?  No challengers yet?  If I don't win the game I'm on, I am challenging Zoltar next...   and still discussng format...

3) Broccoli_Commander: Build G1 Broccoli_commander

4) wil: Build Y1 Wil

5) Broccoli_Commander: Trade G1 R1 Broccoli_commander

6) wil: B Y1 Wil
	Broccoli_Commander: Well TwoShort just challenged me again... And I thought you won the game against silentTitan but now he can win I think.... Ok for the format, I hope it will work out though, the game needs some publicity ;)

7) Broccoli_Commander: Build R1 Broccoli_commander

8) wil: D Y1 Wil G1 G1

9) Broccoli_Commander: Discover R1 Broccoli_commander G3 Lettuce

10) wil: B Y2 Wil

11) Broccoli_Commander: Build R1 Broccoli_commander

12) wil: B Y2 G1

13) Broccoli_Commander: Build R2 Broccoli_commander

14) wil: B Y2 G1

15) Broccoli_Commander: Discover R2 Broccoli_commander Y3 Cauliflower

16) wil: T Y3 G3 Wil

17) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build R2 Cauliflower
Build R2 Cauliflower
Build R3 Broccoli_commander

18) wil: T G3 R3 Wil

19) Broccoli_Commander: Build R3 Lettuce
	wil: Weird game and me without a gun!

20) wil: B Y3 Wil

21) Broccoli_Commander: Discover R1 Broccoli_commander Y3 Banana

22) wil: D Y2 G1 B3 B3

23) Broccoli_Commander: Move R2 Cauliflower G1

24) wil: S Y1 G1
M Y2 G1 B3
	wil: This is a first for me...it will be interesting!  And I don't know what happened to my Zoltar ladder challenge, it just disapeared...and now the undefeated ttt is gunnin for me

25) Broccoli_Commander: Trade R1 Y1 Broccoli_commander
	Broccoli_Commander: We'll see...
weird for the challenge, but teach the boy how it's done here ;)

26) wil: B R1 Wil

27) Broccoli_Commander: Move Y1 Broccoli_commander Lettuce

28) wil: M Y3 Wil G1
	wil: I feel suckered somehow...had three good moves to pick from and couldn't choose which was better.

29) Broccoli_Commander: Discover R1 Lettuce G1 Pea

30) wil: S R1 Wil
A R2 G1

31) Broccoli_Commander: Trade R3 G3 Broccoli_commander

32) wil: M Y2 Wil Pea
	wil: No matter the outcome, this will remain one strange game...

33) Broccoli_Commander: Build G1 Broccoli_commander
	Broccoli_Commander: Absolutely :) But I'm afraid (for myself) you will win this one! And deserve it! notwithstanding the strangeness of it all
	Broccoli_Commander: (PS: I think you chose the best move 2 turns ago)

34) wil: M Y3 G1 Cauliflower

35) Broccoli_Commander: Build G2 Broccoli_commander

36) wil: T Y2 G2 B3
	wil: You know darn well I need a significant lead to cover for my mistakes.

37) Broccoli_Commander: Move G2 Broccoli_commander B3

38) wil: S R2 G1
A G2 B3
A R1 Pea

39) Broccoli_Commander: Trade G1 B1 Broccoli_commander

40) wil: B G1 B3

41) Broccoli_Commander: Build B1 Broccoli_commander

42) wil: T G2 R2 B3

43) Broccoli_Commander: Move R2 Cauliflower Broccoli_commander

44) wil: B Y2 Wil

45) Broccoli_Commander: Move B1 Broccoli_commander Lettuce

46) wil: T G1 B1 B3

47) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build R1 Lettuce
Build R3 Broccoli_commander
Build B2 Lettuce

48) wil: M B1 B3 Pea
	wil: Ah the day when this can be played real time with a chess clock and we can put 10 minutes on each side and enter a game knowing we are going to play a 20 minute game!  Dragging our ships around the starfield...one can dream...

49) Broccoli_Commander: Trade R2 G2 Broccoli_commander

50) wil: B R2 Pea

51) Broccoli_Commander: Trade R1 G1 Lettuce
	Broccoli_Commander: Yeah would be nice indeed ;)

52) wil: Trade R1 G1 Pea

53) Broccoli_Commander: Build G3 Broccoli_commander

54) wil: Build G3 B3

55) Broccoli_Commander: Discover G1 Lettuce R1 Tomatoe

56) wil: B R1 B3

57) Broccoli_Commander: Move B2 Lettuce Tomatoe

58) wil: S R1 B3
A R2 Cauliflower

59) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build B2 Tomatoe
Build B3 Lettuce

60) wil: M Y3 Cauliflower Tomatoe

61) Broccoli_Commander: Move B3 Lettuce Pea

62) wil: S Y2 Pea
M G1 Pea Cauliflower
M R2 Pea Banana

63) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build R1 Lettuce
Build Y2 Lettuce

64) wil: A R1 Banana

65) Broccoli_Commander: Sacrifice Y2 Lettuce
Move B2 Tomatoe B3
Move B2 Tomatoe B3

66) wil: S Y2 B3
M G3 B3 Broccoli_commander
M G2 B3 Broccoli_commander
C Broccoli_commander G
	wil: The universe as we know it is about to go through a dramatic change...


67) Broccoli_Commander: Build Y2 Lettuce

68) wil: A G1 Tomatoe

69) Broccoli_Commander: Trade B3 G3 Pea

70) wil: S Y1 Wil
M B1 Pea B3
C B3 B

71) Broccoli_Commander: Build B1 Lettuce

72) wil: B G2 Tomatoe

73) Broccoli_Commander: Sacrifice Y1 Lettuce
Move G3 Pea Banana
	wil: Universe reboot complete... Not to my benefit...

74) wil: S Y2 Wil
M R1 Banana Broccoli_commander

M R2 Banana Broccoli_commander
	Broccoli_Commander: Strange game indeed ;)

75) Broccoli_Commander: Trade R3 G3 Broccoli_commander
	wil: The variations in this gane are endless...  Ya get going with a plan...it gets subverted and you start another direction...and then... And ... And...

76) wil: M R1 Broccoli_commander Lettuce

77) Broccoli_Commander: Sacrifice R1 Lettuce
Attack R2 Broccoli_commander

78) wil: S G2 Tomatoe
B R1 Lettuce
B R2 Lettuce
C Lettuce R

79) Broccoli_Commander: Build B2 Broccoli_commander

80) wil: B Y1 Tomatoe

81) Broccoli_Commander: Build Y1 Lettuce
	Broccoli_Commander: Welcome to turn #41 stone age!

82) wil: D Y3 Tomatoe B3 B3
	Broccoli_Commander: oops forgot to send the command yesterday, sorry

83) Broccoli_Commander: Move B2 Broccoli_commander Banana

84) wil: T Y3 B3 B3

85) Broccoli_Commander: Move B2 Banana Tomatoe

86) wil: S Y1 Tomatoe
M B3 B3 Tomatoe

87) Broccoli_Commander: Sacrifice Y2 Lettuce
Move B1 Lettuce Tomatoe
Move B1 Lettuce Tomatoe
Catastrophe Tomatoe B

88) wil: B R1 Wil

89) Broccoli_Commander: Build Y1 Lettuce

90) wil: B R1 Cauliflower

91) Broccoli_Commander: Build R2 Broccoli_commander
	wil: A reboot with ne way behind...

92) wil: T R3 Y3 Wil

93) Broccoli_Commander: Move R2 Broccoli_commander Lettuce

94) wil: B R3 Wil

95) Broccoli_Commander: Build Y2 Lettuce

96) wil: D R3 Wil B1 B1

97) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build R3 Broccoli_commander
Build R3 Lettuce
Build B1 Broccoli_commander

98) wil: B Y2 Wil

99) Broccoli_Commander: Move R2 Broccoli_commander Cauliflower

100) wil: T R3 B3 B1

101) Broccoli_Commander: Sacrifice R2 Lettuce
Attack R2 Cauliflower
Attack R1 Cauliflower

102) wil: S Y2 Wil
M B3 B1 Cauliflower
D G1 Tomatoe B3 B3

103) Broccoli_Commander: Sacrifice Y2 Lettuce
Move B1 Broccoli_commander Cauliflower
Move B1 Broccoli_commander Cauliflower

104) wil: T B3 G3 Cauliflower

105) Broccoli_Commander: Trade R1 G1 Cauliflower

106) wil: D G3 Cauliflower B1 B1
	wil: Congrats on the defend... And I see ttt laid in wait!

107) Broccoli_Commander: Build Y2 Lettuce
	Broccoli_Commander: Thanks! Was pretty happy how it turned out ;) Yeah ttt gonna be interesting

108) wil: B R1 Wil

109) Broccoli_Commander: Sacrifice Y2 Lettuce
Move G3 Banana B1
Move R3 Lettuce B1

110) wil: S G3 B1
B G2 Cauliflower
B G2 Cauliflower
B G3 B3
C Cauliflower G

111) Broccoli_Commander: Build Y2 Lettuce

112) wil: T R1 G1 Wil

113) Broccoli_Commander: Trade R3 B3 B1

114) wil: T G3 R3 B3

115) Broccoli_Commander: Sacrifice Y2 Lettuce
Move B3 B1 B3
Move G3 B1 B3

116) wil: Sacrifice R3 B3
Pass
Pass
Pass

117) Broccoli_Commander: Build Y2 Lettuce
	wil: Well hopefully I am exercising you a little while you run me in circles...

118) wil: B G1 B3

119) Broccoli_Commander: Sacrifice Y2 Lettuce
Discover B3 B3 R1 Tomatoe
Move G3 B3 Tomatoe

120) wil: B Y2 Wil

121) Broccoli_Commander: Discover Y1 Lettuce R2 Cherry

122) wil: T G1 R1 B3
	Broccoli_Commander: What a sad destiny for your r3 ship. At least its admiral had the courage to trigger the self-destruction

123) Broccoli_Commander: Sacrifice G3 Tomatoe
Build R3 Cauliflower
Build R3 Broccoli_commander
Build Y2 Cherry

124) wil: S Y2 Wil
M R1 B3 Cherry
M R1 Cherry Cauliflower
C Cauliflower R

125) Broccoli_Commander: Build Y2 Lettuce

126) wil: B R1 Wil

127) Broccoli_Commander: Discover Y2 Lettuce G1 Pea

128) wil: B G2 B3

129) Broccoli_Commander: Build Y2 Pea
	wil: I lost over 40 moves ago and just keep running around waiting for you to blunder

130) wil: T G2 R2 B3
	Broccoli_Commander: And it almost worked, I was not patient enough... 
It can still take a while :D

131) Broccoli_Commander: Move R3 Broccoli_commander Lettuce

132) wil: B G2 Wil

133) Broccoli_Commander: Build Y3 Lettuce
	wil: All over but the cryin

134) wil: D G2 Wil B1 B1

135) Broccoli_Commander: Move R3 Lettuce B1

136) wil: S G2 B1
B R2 B3
B G2 B3

	wil: WHAT??  I was running in circles for a record number of moves...not the way to win!!  hope all is alright on your end.


25718)
Variants: "Hard time"
Started: 2014.4.14, Ended: 2014.4.16
Participants: TeeTeeTee (S), ajo (N)
Winner: TeeTeeTee

1) ajo: Homeworld R3 B2 G3

2) TeeTeeTee: Homeworld B1 Y2 G3

3) ajo: Build G1 Ajo

4) TeeTeeTee: Build G1 Teeteetee

5) ajo: Trade G3 Y3 Ajo

6) TeeTeeTee: Trade G1 B1 Teeteetee

7) ajo: Build G1 Ajo

8) TeeTeeTee: Build B1 Teeteetee

9) ajo: Discover G1 Ajo Y1 Alpha

10) TeeTeeTee: Discover B1 Teeteetee G3 Paris
	ajo: Nicely opened!

11) ajo: Build G1 Ajo

12) TeeTeeTee: Build B2 Teeteetee
	TeeTeeTee: Thanks!

13) ajo: Build G2 Alpha

14) TeeTeeTee: Build G2 Teeteetee

15) ajo: Discover G2 Alpha B3 Beta
	TeeTeeTee: I'd say more, but I feel a little, well, pompous when commenting on a game in-progress. Ask me about the opening later!

16) TeeTeeTee: Build B2 Paris
	ajo: And I'd say more about what I had expected you to do this last turn instead of "build g2", but I don't want to give you ideas. ;D

17) ajo: Build G2 Beta
	TeeTeeTee: I'd definitely be interested to know what you had in mind. :P

18) TeeTeeTee: Sacrifice G3 Teeteetee
Build G3 Teeteetee
Build G3 Teeteetee
Build B3 Paris

19) ajo: Trade G2 Y2 Beta
	ajo: Well, I think that from this position ( http://superdupergames.org/?page=archive_play&gid=25718&idx=12 ) I would have done "trade b2 r2" to get that fourth color, relieve the blue situation at your homeworld, and threaten my forward development a bit.
	ajo: Although I guess you're in a good position now, too. Bother. :)

20) TeeTeeTee: Move G3 Teeteetee Beta

21) ajo: Move Y2 Beta Teeteetee

22) TeeTeeTee: Trade B3 R3 Paris
	ajo: Innnteresting...

23) ajo: Sacrifice G2 Beta
Build Y1 Teeteetee
Build Y1 Teeteetee
Catastrophe Teeteetee Yellow

24) TeeTeeTee: Trade G3 Y3 Teeteetee
	ajo: wait, this move is strictly better :D
	TeeTeeTee: Oi!
	TeeTeeTee: That was somewhat rude: I'd already made my move. D:

25) ajo: Build G2 Alpha
	TeeTeeTee: It was a strong move, though; I rarely get surprised  like that in this game. Well done

26) TeeTeeTee: Discover B1 Teeteetee Y3 Berlin
	ajo: We might *both* be getting careless with all these quick moves...

27) ajo: Discover G2 Alpha B3 Gamma

28) TeeTeeTee: Sacrifice G2 Teeteetee
Build G2 Beta
Build B3 Teeteetee

29) ajo: Build G2 Gamma

30) TeeTeeTee: Trade B3 G3 Teeteetee

31) ajo: Build Y1 Ajo

32) TeeTeeTee: Sacrifice G3 Beta
Build G3 Beta
Build B3 Teeteetee
Build R1 Paris

33) ajo: Move Y1 Ajo Alpha

34) TeeTeeTee: Sacrifice Y3 Teeteetee
Move B3 Teeteetee Ajo
Move G3 Beta Teeteetee
Move G3 Teeteetee Ajo
	ajo: Yup, I'm in a bad spot.

35) ajo: Build Y1 Ajo

36) TeeTeeTee: Sacrifice R3 Paris
Attack Y3 Ajo
Attack Y1 Ajo
Attack G1 Ajo

37) ajo: Pass

38) TeeTeeTee: Attack G1 Ajo

	ajo: Good game! So what were you going to say about the opening? :)
	TeeTeeTee: Thanks for the game! I always prefer the games where people don't take days to make a single move.

I think that I was ahead from the start because I had a far stronger opening than you did. I reckon that it's always the stronger move to choose a small/medium homeworld if your oppenent hasn't done so already. Also, the colour of the small pyramid in someone's homeworld is generally the easiest colour to monopolise, so I think you should have grabbed a blue pyramid on your third move - that was your last chance to get a grasp on blue in the game...

Also, I stand by "7: ... Build g2 TeeTeeTee"; I think that it gave me a chance to access more greens without risking losing control of the blues, and I wasn't at risk of a blue catastrophe. I think that a better time for me to get a red ship would have been to trade a g3 for an r3 on my 10th move.
	ajo: That's a good point about small blue. You definitely locked me out of blue very effectively. I'll try monopolizing your small homeworld pyramid's color next game. ;)  Play again?


25726)
Variants: "Hard time"
Started: 2014.4.15, Ended: 2014.5.17
Participants: mneme (S), Grosseteste (N)
Winner: mneme

1) Grosseteste: H B2 Y1 G3

2) mneme: Homeworld G2 B3 Y3

3) Grosseteste: B G1 Grosseteste

4) mneme: Build Y1 Mneme

5) Grosseteste: Trade G1 B1 Grosseteste

6) mneme: Build Y1 Mneme

7) Grosseteste: Build G1 Grosseteste

8) mneme: Trade Y1 R1 Mneme

9) Grosseteste: Trade G1 R1 Grosseteste

10) mneme: Trade Y1 B1 Mneme

11) Grosseteste: Build G1 Grosseteste

12) mneme: Build Y1 Mneme

13) Grosseteste: T G1 Y1 Grosseteste

14) mneme: Build Y2 Mneme

15) Grosseteste: Discover Y1 Grosseteste G3 Hexaemeron

16) mneme: Discover Y1 Mneme G1 Emerald

17) Grosseteste: Build Y2 Hexaemeron

18) mneme: Trade Y2 G2 Mneme

	Grosseteste: Sorry about that.
	mneme: so it goes.


25607)
Started: 2014.4.16, Ended: 2014.5.7
Participants: ts52 (S), inundator (N)
Winner: ts52

1) inundator: Homeworld B2 Y3 G3

2) ts52: Homeworld Y1 B2 G3

3) inundator: Build G1 Inundator

4) ts52: Build G1 Ts52

5) inundator: Trade G1 Y1 Inundator
	inundator: Wow, there sure are a lot of spectators in this game. Are you famous or something?

6) ts52: Discover G1 Ts52 B3 Grover

7) inundator: Build Y1 Inundator

8) ts52: Build G1 Ts52

9) inundator: Trade Y1 B1 Inundator

10) ts52: T G1 Y1 Ts52

11) inundator: Build Y2 Inundator

12) ts52: Build G1 Ts52

13) inundator: Discover Y1 Inundator B1 Oscar

14) ts52: Move Y1 Ts52 Grover

15) inundator: Build Y2 Inundator

16) ts52: Build Y2 Grover

17) inundator: Trade Y2 R2 Inundator

18) ts52: Trade Y2 R2 Grover

19) inundator: Build Y2 Inundator

20) ts52: Build Y2 Grover

21) inundator: Discover Y2 Inundator G1 Bigbird

22) ts52: Move R2 Grover Oscar

23) inundator: Discover Y1 Oscar G2 Elmo

24) ts52: Move Y1 Grover Oscar
	ts52: Sorry, just saw your message. I'm not famous, no. Not sure why there are so many spectators.

25) inundator: Build Y3 Elmo

26) ts52: Build Y3 Grover

27) inundator: Sacrifice Y2 Inundator
Move Y1 Elmo Grover
Move Y2 Bigbird Grover
Catastrophe Grover Yellow





28) ts52: Discover G1 Ts52 Y3 Bigbird

29) inundator: Trade B1 G1 Inundator

30) ts52: Build G2 Ts52

31) inundator: Sacrifice G3 Inundator
Build G2 Inundator
Build G3 Inundator
Build Y1 Elmo

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build Y2 Oscar

33) inundator: Discover G1 Inundator B1 Count

34) ts52: Move Y2 Oscar Grover

35) inundator: Move Y1 Elmo Count

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Oscar
Build Y2 Grover

37) inundator: Move G3 Inundator Oscar

38) ts52: Sacrifice Y2 Grover
Move G3 Grover Count
Move G3 Count Inundator

39) inundator: Sacrifice G3 Oscar
Build G3 Inundator
Build R1 Inundator
Build Y2 Elmo

40) ts52: Sacrifice R2 Oscar
Attack R2 Inundator
Attack G3 Inundator

	inundator: Nice job!
	ts52: Thanks for the game!


25723)
Variants: "Unrated"
Started: 2014.4.18, Ended: 2014.5.7
Participants: fogus (S), wil (N)
Winner: wil

1) wil: H B2 R1 G3

2) fogus: Homeworld B3 Y2 G3

3) wil: B G1 Wil

4) fogus: Build G1 Fogus

5) wil: T G1 R1 Wil

6) fogus: Build G1 Fogus

7) wil: B R1 Wil

8) fogus: Trade G1 Y1 Fogus

9) wil: T R1 Y1 Wil

10) fogus: Trade G1 R1 Fogus
	wil: Thanx for the game and goodluck!  

11) wil: B R2 Wil

12) fogus: Build R2 Fogus

13) wil: D R2 Wil G3 G3

14) fogus: Build G1 Fogus

15) wil: B R2 G3

16) fogus: Build R3 Fogus

17) wil: B R3 Wil

18) fogus: Discover R1 Fogus Y1 Timmy

19) wil: T R1 B1 Wil

20) fogus: Move G3 Fogus Timmy

21) wil: B B1 Wil

22) fogus: Build Y2 Fogus

23) wil: Build Y2 Wil

24) fogus: Discover Y2 Fogus B1 Pickle

25) wil: B Y3 Wil

26) fogus: Trade Y1 G1 Fogus

27) wil: S Y2 Wil
M Y1 Wil G3
M B1 Wil G3

28) fogus: Discover Y2 Pickle B2 Goo

29) wil: T R3 Y3 Wil
	fogus: OMG I'm finding the 3-player game super-confusing.  :-O
	fogus: Not that this one isn't, but at least I feel like I have some notion of what's happening. :-)
	wil: Binary is the best...four player the worst...multiplayer are funky as you are working towards a plan that will make you ship leader once it gets to binary...

30) fogus: Build G1 Timmy

31) wil: D R2 G3 B1 B1

32) fogus: Discover R2 Fogus Y1 Hit

33) wil: S G3 Wil
B B2 G3
B B3 G3
B B3 Wil

34) fogus: Build G2 Fogus

35) wil: S B2 G3
T B3 Y3 G3
T B3 G3 Wil

36) fogus: Move Y2 Goo Timmy

37) wil: B G2 Wil

38) fogus: Trade G2 B2 Fogus

39) wil: S G3 Wil
B Y2 Wil
B B2 G3
B B3 Wil

40) fogus: Discover G1 Timmy B3 Nil

41) wil: S Y3 Wil
M Y2 Wil G3
M Y2 G3 Timmy
M Y1 G3 Timmy
C Timmy Y

42) fogus: Build G2 Nil
	fogus: Hrmph.  Missed that one.

43) wil: T B3 G3 Wil

44) fogus: Trade B2 Y2 Fogus

45) wil: S G3 Wil
B B2 Wil
B B3 G3
B R1 B1
	wil: Yes getting caught unawares... Happens to me all the time...

46) fogus: Move G1 Fogus Hit
	fogus: Oh nice.  I never thought about dominating a color via pointed sacrifice.  Nice technique.

47) wil: T B3 Y3 G3
	wil: As this game gains popularity, more moves and gambits will be named..can't wait for the day books begin to be written.

48) fogus: Trade R3 G3 Fogus

49) wil: T Y3 G3 Wil

50) fogus: Sacrifice Y2 Fogus
Move G1 Nil Wil
Move G2 Nil Wil
Catastrophe Wil G

51) wil: S B2 G3
T R1 G1 B1
T R2 G2 G3
	fogus: I doubt they will name this gambit.  Maybe the Fogus Folly? ;-)

52) fogus: Build G2 Hit
	wil: It is quite the move!
	fogus: Whoa!  Nice block on the reds!  That took the wind out of my sails. :-) This is the first really effective use of blue that I've seen (I'm usually out of the game much sooner than this)
	wil: Cornering any economy can give you a big ship advantage....blues you trade like crazy...yellows stagnating the opponents ability to move is devestating...green, no growth...red..no attacks...no defense.  Monopolies are powerful and almost always detrmine the game.  But yeah..unloading small ships back in when someone is drooling for the opportunity...mean...just mean...and DISTRACTING!

	wil: I warned you about my distraction... Now you wanna take that back?  (Hint you and I currently both are guilty of the same very bad practice)
	wil: Can you see that it is currently checkmate?  We can either end here, and play another, or you can back up and try again,
	fogus: I do see it yes.  Too late of course.
	wil: Ah crap...the undo last move button was gone?  I wonder how long it lasts...

This situation is called Bluebird, when you only have one color ship in your homeworld...diversity is good.


25745)
Variants: "Hard time"
Started: 2014.4.19, Ended: 2014.7.22
Participants: ts52 (S), MagicJohn (N)
Winner: ts52

1) MagicJohn: Homeworld B1 Y2 G3

2) ts52: Homeworld Y2 B3 G3
	MagicJohn: have a good game!
	ts52: Thanks. You too!

3) MagicJohn: Build G1 Magicjohn

4) ts52: Build G1 Ts52

5) MagicJohn: Trade G1 B1 Magicjohn

6) ts52: Trade G1 B1 Ts52

7) MagicJohn: Build B2 Magicjohn

8) ts52: Discover B1 Ts52 G1 Oscar

9) MagicJohn: Discover B2 Magicjohn Y3 Elysian

10) ts52: Build B2 Oscar

11) MagicJohn: Sacrifice G3 Magicjohn
Build B2 Elysian
Build B3 Magicjohn
Build B3 Elysian

12) ts52: Trade B2 Y2 Oscar

13) MagicJohn: Sacrifice B2 Elysian
Trade B3 G3 Elysian
Trade B3 G3 Magicjohn

14) ts52: Build B2 Oscar

15) MagicJohn: Trade B2 R2 Elysian

16) ts52: Trade B2 R2 Oscar

17) MagicJohn: Move G3 Elysian Oscar

18) ts52: Discover R2 Oscar Y3 Bigbird

19) MagicJohn: Sacrifice R2 Elysian
Attack Y2 Oscar
Attack B1 Oscar

20) ts52: Build G1 Ts52

21) MagicJohn: Trade B1 R1 Oscar

22) ts52: Discover G1 Ts52 Y1 Zoe

23) MagicJohn: Build B1 Magicjohn

24) ts52: Discover G1 Zoe B2 Grover

25) MagicJohn: Discover B1 Magicjohn B3 Missp

26) ts52: Build G1 Grover

27) MagicJohn: Discover B1 Magicjohn Y3 Kermit

28) ts52: Build G2 Ts52

29) MagicJohn: Build G2 Magicjohn

30) ts52: Trade G1 Y1 Grover

31) MagicJohn: Sacrifice G3 Oscar
Build B2 Kermit
Build B2 Missp
Build B3 Kermit

32) ts52: Build G1 Grover

33) MagicJohn: Move G2 Magicjohn Kermit

34) ts52: Move G1 Grover Bigbird

35) MagicJohn: Trade B3 G3 Kermit

36) ts52: Discover Y1 Grover B3 Gonzo

37) MagicJohn: Build G2 Magicjohn

38) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Gonzo
Build R1 Bigbird

39) MagicJohn: Trade B1 Y1 Missp

40) ts52: Trade G3 Y3 Ts52

41) MagicJohn: Move G2 Magicjohn Missp

42) ts52: Build G3 Ts52

43) MagicJohn: Discover G2 Kermit B1 Animal

44) ts52: Move G3 Ts52 Oscar
	MagicJohn: My first inclination was to sac a y2 and "discover" a new star from kermit and move from magicjohn to missp. Apparently that's not legal?
	ts52: That's odd. I think it should be legal.

45) MagicJohn: Discover Y2 Oscar R2 Fozzie

46) ts52: Sacrifice R1 Bigbird
Attack R1 Oscar

47) MagicJohn: Trade B2 R2 Kermit

48) ts52: Move Y1 Gonzo Oscar

49) MagicJohn: Discover B2 Missp R1 Rowlf

50) ts52: Sacrifice G3 Oscar
Build G3 Bigbird
Build R1 Bigbird
Build R3 Oscar

51) MagicJohn: Build R3 Kermit

52) ts52: Move G3 Bigbird Rowlf

53) MagicJohn: Move R3 Kermit Animal

54) ts52: Attack B2 Rowlf

55) MagicJohn: Build B2 Kermit

56) ts52: Move R3 Oscar Missp

57) MagicJohn: Move Y1 Missp Animal

58) ts52: Build R3 Oscar

59) MagicJohn: Move Y2 Fozzie Animal

60) ts52: Attack G2 Missp

61) MagicJohn: Move Y1 Animal Ts52

62) ts52: Sacrifice R1 Bigbird
Attack Y1 Ts52

63) MagicJohn: Move Y2 Animal Ts52
Catastrophe Ts52 Y

64) ts52: Move R3 Oscar Ts52

65) MagicJohn: Trade B2 Y2 Kermit

66) ts52: Trade G3 Y3 Rowlf

67) MagicJohn: Build G3 Animal

68) ts52: Sacrifice Y3 Rowlf
Move G1 Bigbird Magicjohn
Move G2 Missp Magicjohn
Move G2 Ts52 Magicjohn
Catastrophe Magicjohn Green



25496)
Variants: "Hard time"
Started: 2014.4.20, Ended: 2014.4.23
Participants: SilentTitan (S), richpee (N)
Winner: SilentTitan

	richpee: I'm new here. Interface is confusing. How the hell do I construct a new star, G3/B2?
	SilentTitan: So to set up your home world you type "Homeworld b1 r2 g3". Which sets up a two star Homeworld of b1 and r2 then gives you a green battleship in that Homeworld.  Every other star comes into existence when you use the discover command.
	SilentTitan: Keep in mind that you done have to type that exact command you can type Homeworld then whichever star combo you'd like, that is legal. Then the last letter number group is the ship.  Does this help?
	SilentTitan: Done = don't


25751)
Variants: "Hard time"
Started: 2014.4.20, Ended: 2014.5.5
Participants: TeeTeeTee (S), wil (N)
Winner: TeeTeeTee

1) wil: H B2 R1 G3
	wil: Procedural question, I had a challenge against Zoltar in play.  It was neither accepted or rejected as far as I can see... What happens there?
	wil: I gueSs if they don't answer -kll start...but where did you come from outta the blue?  Undefeated in Zemdo or HW... Impressive climb on the ladder...everently no newbie...  
	TeeTeeTee: Heh, I'm not sure what to say to that. I'm not sure how your challenge to zoltar was deleted, but as (at the time) all the players above you were inactive or playing ladder games, and as you had asked to play another binary game with me at some point, I thought you'd be fine with accepting a ladder challenge...

2) TeeTeeTee: Homeworld B1 Y3 G3
	wil: I am ok, with playing another game...many more as a matter o fact!  I was just hoping to ascertain what went on or at least highlight a hiccup...but let's have at it!

3) wil: B G1 Wil

4) TeeTeeTee: Build G1 Teeteetee

5) wil: T G1 R1 Wil

6) TeeTeeTee: Trade G1 R1 Teeteetee

7) wil: B R2 Wil

8) TeeTeeTee: Build R2 Teeteetee

9) wil: T R2 Y2 Wil

10) TeeTeeTee: Trade R1 B1 Teeteetee

11) wil: B Y1 Wil

12) TeeTeeTee: Build B1 Teeteetee

13) wil: D Y1 Wil G3 G3

14) TeeTeeTee: Discover B1 Teeteetee G2 Hull

15) wil: B Y1 Wil

16) TeeTeeTee: Build B2 Hull
	wil: I did that back asswards.... Lovely day here in DC wherabouts are you on this big blue ball?

17) wil: T Y2 B2 Wil
	TeeTeeTee: What did you do back-asswards? I was going to mention, I expected you to move the y2 out instead of the y1.
I'm from lovely sunny London, and today I am going to name my stars after the less well-loved British cities.

18) TeeTeeTee: Trade B2 Y2 Hull

19) wil: M B2 Wil G3

20) TeeTeeTee: Discover B1 Teeteetee G2 Scunthorpe
	wil: Not moving that y2 was my backasswards move... Sunny London?  You blokes fond of sarcasm too?  How did you get introduced to homeworlds?

21) wil: M B2 G3 Scunthorpe
	TeeTeeTee: Erm, I just saw it described on the internet, and it looked interesting. Not played it in person yet, but I may well introduce some people to it in the next few weeks - I've got a set, now.

22) TeeTeeTee: Build B2 Scunthorpe
	wil: Are you a chess player? Quite logical I take it...howdja get so good?  

Less loved cities?  But appreciated by you?  Are they places I should visit ifn I get across the pond?  Places my English friends would know?

23) wil: B B3 Scunthorpe
C Scunthorpe B

24) TeeTeeTee: Build B1 Hull
	wil: I can understand the sentiment.  I mean, I just stopped in to visit scunthorpe and some bloke from hull came over and spoiled the hole thing...

25) wil: B Y1 G3

26) TeeTeeTee: Build Y2 Hull

27) wil: B Y2 Wil

28) TeeTeeTee: Move Y2 Hull G3

29) wil: S G3 Wil
B Y3 Wil
B Y3 G3
B R1 Wil
C G3 Y

30) TeeTeeTee: Build R2 Teeteetee

31) wil: D Y2 Wil G3 G3

32) TeeTeeTee: Move R2 Teeteetee Hull

33) wil: M R1 Wil G3

34) TeeTeeTee: Discover B1 Hull G3 Milton_keynes

35) wil: T R1 G1 Wil

36) TeeTeeTee: Build B2 Milton_keynes

37) wil: B R1 G3

38) TeeTeeTee: Build B2 Hull

39) wil: D R1 G3 G2 G2

40) TeeTeeTee: Build B3 Milton_keynes

41) wil: B R2 G3

42) TeeTeeTee: Build R3 Hull

43) wil: B R3 G2
	wil: I think I lost this before I started... Now with no factory or blues it is just me playing around...

44) TeeTeeTee: Build R3 Teeteetee

45) wil: S Y2 G3
M R1 G3 Hull
M R2 G3 Hull
C Hull R

46) TeeTeeTee: Trade B3 R3 Milton_keynes

47) wil: B Y1 Wil

48) TeeTeeTee: Move R3 Teeteetee Hull
	wil: Treading water in high seas...

49) wil: S Y1 Wil
D R3 G2 B3 B3

50) TeeTeeTee: Build B3 Milton_keynes

51) wil: T R3 G3 B3

52) TeeTeeTee: Sacrifice Y2 Hull
Move B3 Milton_keynes Wil
Move R3 Milton_keynes Wil

	TeeTeeTee: You needed that r3, there.
	TeeTeeTee: Thanks for the game!
	wil: Thank you!! (For the abuse and the geography lesson)

Feel free to challenge me anytime.  I do like to try to learn by getting beat. And I like to keep a number of games in play so I keep learning.


25741)
Started: 2014.4.25, Ended: 2014.5.10
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) wil: H B3 G2 Y3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) wil: B Y1 Wil

5) ts52: Trade G1 Y1 Ts52

6) wil: B Y2 Wil

7) ts52: Discover Y1 Ts52 G3 Kermit

8) wil: T Y2 R2 Wil

9) ts52: Build G1 Ts52

10) wil: B Y2 Wil

11) ts52: Trade G1 R1 Ts52

12) wil: T Y2 B2 Wil

13) ts52: Build Y2 Kermit

14) wil: T Y1 G1 Wil

15) ts52: Build G1 Ts52
	wil: I think I blew it in my opening...

16) wil: D B2 Wil G1 G1

17) ts52: Discover G1 Ts52 B3 Grover

18) wil: D G1 Wil Y1 Y1

19) ts52: Build G2 Ts52

20) wil: B Y2 Wil

21) ts52: Trade G2 R2 Ts52

22) wil: B G2 Y1

23) ts52: Move R2 Ts52 Kermit

24) wil: D G2 Y1 R3 R3

25) ts52: Move Y2 Kermit G1

26) wil: S R2 Wil
A Y2 G1
P

27) ts52: Move R2 Kermit G1

28) wil: S Y2 Wil
M Y2 G1 R3
M B2 G1 R3

29) ts52: Build Y2 Kermit

30) wil: B Y2 Wil

31) ts52: Move Y1 Kermit G1

32) wil: T Y2 R2 Wil

33) ts52: Build R1 G1

34) wil: B R1 Wil

35) ts52: Move R2 G1 Grover

36) wil: M B2 R3 G1

37) ts52: Sacrifice G3 Ts52
Build R2 Grover
Build R3 Ts52
Build R3 G1

38) wil: B G2 R3

39) ts52: Attack B2 G1

40) wil: B G3 Y1

41) ts52: Build G3 Grover

42) wil: S G3 Y1
B G3 Y1
B Y2 Wil
B Y3 R3

43) ts52: Sacrifice G3 Grover
Build G3 Grover
Build B1 G1
Build Y3 Kermit

44) wil: T R2 B2 Wil

45) ts52: Sacrifice Y2 Kermit
Move B1 G1 Wil
Move B2 G1 Wil
Catastrophe Wil Blue

46) wil: B R2 Wil
	wil: Well I guess that is that...

47) ts52: Sacrifice Y3 Kermit
Move R1 G1 Wil
Move R2 Grover Wil
Pass
Catastrophe Wil Red

48) wil: D Y2 Wil B3 B3

49) ts52: Move R3 G1 Wil

	wil: Yeah, -nice
	ts52: Thanks for the game! 
	wil: Thank you!!  Someday -'ll learn...


25750)
Variants: "Hard time"
Started: 2014.4.25, Ended: 2014.4.30
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: H R2 B1 G3

2) SilentTitan: Homeworld Y1 G3 B3

3) wil: B G1 Wil
	SilentTitan: Welcome

4) SilentTitan: Build B1 Silenttitan

5) wil: T G1 B1 Wil



25779)
Variants: "Hard time"
Started: 2014.5.5, Ended: 2014.6.1
Participants: wil (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3

2) wil: H B3 G2 R3

3) SilentTitan: Build G1 Silenttitan

4) wil: B R1 Wil

5) SilentTitan: Build G1 Silenttitan

6) wil: B R1 Wil

7) SilentTitan: Trade G1 Y1 Silenttitan

8) wil: T R3 Y3 Wil

9) SilentTitan: Discover G1 Silenttitan R3 Sol

10) wil: B R2 Wil

11) SilentTitan: Build G1 Silenttitan

12) wil: D R2 Wil Y1 Y1

13) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Sol
Build G2 Sol
Build G2 Silenttitan

14) wil: T Y3 G3 Wil

15) SilentTitan: Trade G2 Y2 Silenttitan

16) wil: B R2 Wil

17) SilentTitan: Build G2 Silenttitan

18) wil: D R2 Y1 G3 G3

19) SilentTitan: Build G3 Silenttitan

20) wil: T R2 B2 Wil

21) SilentTitan: Trade G3 B3 Silenttitan

22) wil: B R2 Wil

23) SilentTitan: Build G3 Silenttitan
	wil: You gonna make this a slow and painful death?
	SilentTitan: Obviously, you see something I don't. Or maybe you're not as impressed with your playing as I am.

24) wil: B R2 G3

25) SilentTitan: Trade G3 R3 Silenttitan

26) wil: T R1 Y1 Wil

27) SilentTitan: Build G3 Silenttitan

28) wil: T R2 Y2 Wil

29) SilentTitan: Move R3 Silenttitan G3

30) wil: B R1 G3
C G3 R

31) SilentTitan: Trade G3 Y3 Silenttitan

32) wil: B R1 Wil

33) SilentTitan: Build G3 Silenttitan

34) wil: B R2 Wil

35) SilentTitan: Sacrifice Y1 Silenttitan
Discover G1 Sol Y1 Soul

36) wil: S B2 Wil
T R1 B1 Wil
T G3 R3 Wil

37) SilentTitan: Sacrifice G3 Silenttitan
Build G3 Soul
Build G3 Soul
Build G3 Silenttitan

38) wil: D Y1 Wil B1 B1

39) SilentTitan: Trade G3 R3 Silenttitan

40) wil: D B1 Wil Y1 Y1

41) SilentTitan: Sacrifice Y3 Silenttitan
Move R3 Silenttitan Sol
Move R3 Sol Soul
Move R3 Soul Wil
Catastrophe Wil Red

42) wil: T B1 R1 Y1

43) SilentTitan: Trade G2 R2 Silenttitan

44) wil: B Y2 Wil

45) SilentTitan: Move G3 Soul Wil
	wil: Hopin I give you more of a run next time!



25791)
Variants: "Unrated"
Started: 2014.5.17, Ended: 2014.6.9
Participants: daselva (S), fogus (N)
Winner: fogus

1) fogus: Homeworld B1 Y2 G3

2) daselva: Homeworld R1 B2 G3


3) fogus: Build G1 Fogus

4) daselva: Build G1 Daselva

5) fogus: Trade G1 Y1 Fogus

6) daselva: Trade G1 Y1 Daselva

7) fogus: Build G1 Fogus

8) daselva: Build G1 Daselva

9) fogus: Discover G1 Fogus Y3 Goo

10) daselva: Trade G1 B1 Daselva

11) fogus: Build G1 Fogus

12) daselva: Trade B1 R1 Daselva

13) fogus: Trade G1 B1 Fogus

14) daselva: Move R1 Daselva Goo

15) fogus: Move G1 Goo Fogus

16) daselva: Build G1 Daselva

17) fogus: Trade B1 R1 Fogus

18) daselva: Move G1 Daselva Goo

19) fogus: Build R2 Fogus

20) daselva: Build R2 Goo

21) fogus: Discover R2 Fogus Y3 Boo

22) daselva: Build G1 Goo

23) fogus: Move G1 Fogus Boo

24) daselva: Build G2 Daselva

25) fogus: Build G2 Boo

26) daselva: Trade G2 Y2 Daselva

27) fogus: Discover G2 Boo B2 Glob

28) daselva: Move R1 Goo Daselva

29) fogus: Build G2 Glob

30) daselva: Sacrifice Y2 Daselva

Move G1 Goo Glob
Move G1 Goo Glob
Catastrophe Glob G



31) fogus: Build R2 Boo

32) daselva: Build G1 Daselva

33) fogus: Build R3 Fogus

34) daselva: Sacrifice G1 Daselva
Build R3 Goo
	fogus: Bold move! :-)

35) fogus: Trade R3 Y3 Fogus

36) daselva: Discover R1 Daselva G3 R1

37) fogus: Move Y3 Fogus R1

38) daselva: Build R3 R1

39) fogus: Sacrifice R2 Boo
Attack R3 R1
Attack R1 R1

40) daselva: Build G1 Daselva

41) fogus: Build R2 Boo

42) daselva: Trade G1 B1 Daselva

43) fogus: Build R3 Boo



25541)
Variants: "Hard time"
Started: 2014.5.17, Ended: 2014.5.18
Participants: AndoDaan (S), Marmalade (N)
Winner: Marmalade

1) Marmalade: Homeworld G2 Y1 B3



25839)
Variants: "Hard time"
Started: 2014.5.18, Ended: 2014.6.15
Participants: TeeTeeTee (S), Broccoli_Commander (N)
Winner: TeeTeeTee

1) Broccoli_Commander: Homeworld R1 B2 G3

2) TeeTeeTee: Homeworld B1 Y3 G3
	Broccoli_Commander: Have a good game

3) Broccoli_Commander: Build G1 Broccoli_commander
	TeeTeeTee: And to you too! As you guessed, I am indeed a physicist; I suppose you noticed that I'd named some planets after early 20th-Century physicists in a previous game...

4) TeeTeeTee: Build G1 Teeteetee
	Broccoli_Commander: Thanks!
Indeed I did. Are you working in academia?

5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander

6) TeeTeeTee: Trade G1 R1 Teeteetee

7) Broccoli_Commander: Build Y1 Broccoli_commander

8) TeeTeeTee: Build R1 Teeteetee

9) Broccoli_Commander: Build Y1 Broccoli_commander

10) TeeTeeTee: Build R2 Teeteetee

11) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Tomatoe

12) TeeTeeTee: Discover R1 Teeteetee B2 Riemann

13) Broccoli_Commander: Build Y2 Broccoli_commander

14) TeeTeeTee: Sacrifice G3 Teeteetee
Build R2 Riemann
Build R2 Riemann
Build R3 Teeteetee

15) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Cherry

16) TeeTeeTee: Trade R3 G3 Teeteetee

17) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Chili

18) TeeTeeTee: Trade R2 Y2 Riemann

19) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build Y2 Cherry
Build Y3 Tomatoe
Build Y3 Broccoli_commander

20) TeeTeeTee: Discover Y2 Riemann G3 Fourier

21) Broccoli_Commander: Discover Y1 Tomatoe R2 Strawberry

22) TeeTeeTee: Trade R2 G2 Riemann

23) Broccoli_Commander: Trade Y2 R2 Broccoli_commander

24) TeeTeeTee: Build Y2 Fourier

25) Broccoli_Commander: Sacrifice Y1 Strawberry
Move Y3 Tomatoe Riemann

26) TeeTeeTee: Sacrifice G2 Riemann
Build R2 Riemann
Build R3 Teeteetee

27) Broccoli_Commander: Sacrifice R2 Broccoli_commander
Attack R1 Riemann
Attack R2 Riemann
	Broccoli_Commander: Wha-?
That possibility did not occur to me...

28) TeeTeeTee: Discover R3 Teeteetee B2 Bernoulli

29) Broccoli_Commander: Trade R2 G2 Riemann

30) TeeTeeTee: Trade R1 B1 Teeteetee

31) Broccoli_Commander: Trade Y3 B3 Riemann
	TeeTeeTee: I'm sorry to have to put a hold on this game, but I will be away from the internet for several days - I'll be back on Sunday evening.

32) TeeTeeTee: Sacrifice Y2 Fourier
Discover Y2 Fourier G2 Laplace
Move B1 Teeteetee Laplace
	Broccoli_Commander: OK, no problem
I appreciate the notice :)

33) Broccoli_Commander: Build G1 Riemann

34) TeeTeeTee: Build B1 Laplace

35) Broccoli_Commander: Build G1 Riemann

36) TeeTeeTee: Build B3 Laplace

37) Broccoli_Commander: Sacrifice Y2 Cherry
Move G1 Riemann Teeteetee
Move G2 Riemann Teeteetee

38) TeeTeeTee: Attack G2 Teeteetee

39) Broccoli_Commander: Build G1 Teeteetee
Catastrophe Teeteetee G

40) TeeTeeTee: Move B3 Laplace Teeteetee

41) Broccoli_Commander: Build G1 Riemann

42) TeeTeeTee: Build B3 Laplace

	TeeTeeTee: Ahhh... I thought you'd have played on for a little longer. Thanks for the game!


25717)
Variants: "Hard time"
Started: 2014.5.20, Ended: 2014.6.14
Participants: wil (S), vanoosbree (N)
Winner: wil

1) vanoosbree: Homeworld B1 Y2 G3

2) wil: H Y3 G2 B3
	vanoosbree: My VERY first game here and just discovering Looney Pyramids etc. Thanks for your patience!

3) vanoosbree: Build G1 Vanoosbree
	wil: Congrats on selecting one of the finest game systems out there...AND picking my fav game! (Published that is)... So how did you come across them (the pyramids) do you have a set? 
	vanoosbree: Kotaku Moneysaver linked to a deal on Pink Hijinks, which led me to the Looney Labs site, Fluxx, Looney Pyramids, etc... Got some pyramids coming in the mail!

4) wil: B B1 Wil
	wil: Very cool!  A physical set not only allows you to play with friends but also setting it up to mirror the computer games allows you to see the situation more clearly and test moves (this interface is lousy but all we got). Are you stateside?  I am near DC

5) vanoosbree: Discover G1 Vanoosbree Y3 Omega_centauri

6) wil: B B1 Wil
	vanoosbree: I spent a couple months in DC and am in the San Fran bay area these days. Good gaming community here (wish I had more free time) and my SO is very indulgent ;)
	wil: I used to live in Carson city, my sister in SF and visited often...wunnerful town...napa sonoma weren't bad either....Marin, mariposa...memories

7) vanoosbree: Build G1 Vanoosbree
	wil: I am learning by seeing how I get beat...and then trying to avoid that while using what I learned against others.  This lesson is on not letting another corner/monopolize any one economy (action/color).  I am hoping I will teach it well.

8) wil: D B1 Wil Y1 Y1

9) vanoosbree: Trade G1 R1 Vanoosbree

10) wil: B B2 Wil

11) vanoosbree: Build G1 Vanoosbree

12) wil: T B2 G2 Wil

13) vanoosbree: Build R1 Vanoosbree

14) wil: B B2 Wil

15) vanoosbree: Build R1 Vanoosbree

16) wil: T B2 R2 Wil

17) vanoosbree: Build R2 Vanoosbree

18) wil: B R2 Wil

19) vanoosbree: Trade R1 Y1 Vanoosbree
	wil: Four of one color in any star system is overpopulated and can cause a catastrophe... A warning...
	vanoosbree: I noticed that as soon as I completed my last turn. Thanks for the warning!

20) wil: M R2 Wil Y1

21) vanoosbree: Move R1 Vanoosbree Omega_centauri

22) wil: M R2 Y1 Omega_centauri

23) vanoosbree: Trade R2 B2 Vanoosbree

24) wil: A G1 Omega_centauri

25) vanoosbree: Build B2 Vanoosbree

26) wil: S G2 Wil
B B2 Wil
B B3 Y1

27) vanoosbree: Trade G3 R3 Vanoosbree

28) wil: T B3 Y3 Y1

29) vanoosbree: Trade B2 Y2 Vanoosbree

30) wil: A R1 Omega_centauri

31) vanoosbree: Build B2 Vanoosbree

32) wil: Sacrifice Y3 Y1
M B1 Y1 Omega_centauri
M B1 Omega_centauri Vanoosbree
M R1 Omega_centauri Vanoosbree
C Vanoosbree B

33) vanoosbree: Attack R1 Vanoosbree

34) wil: M R2 Omega_centauri Vanoosbree
C Vanoosbree R

	wil: I felt safe having three of one color in my homeworld...because you couldn't get to me.  Anytime anyone trades for a triple three look around, danger is afoot.  Once half you homeworld was gone acess is easier... I sent the small ship in as a tease...and a trojan horse.   I'll play again whenever you are intereted.


25847)
Variants: "Hard time"
Started: 2014.5.23, Ended: 2014.5.26
Participants: wil (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld B3 Y1 G3

	wil: Sorry about that...  I was cell free for a while...  Challenge agin...anytime.
	bhorner: Ah, ok, I will.  :)


25874)
Variants: "Hard time"
Started: 2014.5.31, Ended: 2014.7.8
Participants: bhorner (S), Grosseteste (N)
Winner: Grosseteste

1) Grosseteste: H Y2 B1 G3

2) bhorner: Homeworld B3 Y2 G3

3) Grosseteste: B G1 Grosseteste

4) bhorner: Build G1 Bhorner

5) Grosseteste: D G1 Grosseteste B3 Luce

6) bhorner: Discover G1 Bhorner Y1 Y1

7) Grosseteste: Build G1 Luce

8) bhorner: Build G2 Y1

9) Grosseteste: Build G2 Grosseteste

10) bhorner: Discover G1 Y1 Y3 Y3

11) Grosseteste: Trade G2 R2 Grosseteste

12) bhorner: Build G2 Bhorner

13) Grosseteste: Trade G1 Y1 Luce

14) bhorner: Trade G2 R2 Bhorner

15) Grosseteste: Build G1 Luce

16) bhorner: Build R1 Bhorner

17) Grosseteste: Discover G1 Luce Y1 Colore



25853)
Variants: "Hard time"
Started: 2014.5.31, Ended: 2014.6.26
Participants: bhorner (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) bhorner: H B3 Y2 G3
	wil: 
Thanx for the game, let us see if I can stay alert!

3) wil: B G1 Wil
	bhorner: It's been quite a while since I played.  I will also try to stay alert!

4) bhorner: Build G1 Bhorner

5) wil: T G1 B1 Wil

6) bhorner: Trade G1 B1 Bhorner

7) wil: B B2 Wil

8) bhorner: Build B2 Bhorner

9) wil: D B1 Wil G3 G3

10) bhorner: Discover B2 Bhorner Y1 Y1

11) wil: T B2 R2 Wil

12) bhorner: Trade B1 R1 Bhorner

13) wil: Build R1 Wil

14) bhorner: Build G1 Bhorner

15) wil: Build G1 Wil

16) bhorner: Move G1 Bhorner Y1

17) wil: T G1 Y1 Wil

	wil: hate when that happens
	bhorner: Me too...  Sorry about that.  Work got busy, so I wasn't checking every night...


25886)
Variants: "Hard time"
Started: 2014.6.2, Ended: 2014.6.24
Participants: wil (S), TwoShort (N)
Winner: TwoShort

1) TwoShort: Homeworld R1 B3 G3

2) wil: H Y2 B1 G3
	TwoShort: Howdy.  

3) TwoShort: Build G1 Twoshort

4) wil: B G1 Wil

5) TwoShort: Trade G1 Y1 Twoshort

6) wil: T G1 B1 Wil

7) TwoShort: Trade Y1 B1 Twoshort

8) wil: B B2 Wil

9) TwoShort: Build B2 Twoshort

10) wil: T B2 R2 Wil

11) TwoShort: Trade B2 Y2 Twoshort

12) wil: B B2 Wil

13) TwoShort: Build B2 Twoshort

14) wil: D B1 Wil G3 G3

15) TwoShort: Discover B1 Twoshort Y2 Yolonda

16) wil: B G1 Wil

17) TwoShort: Build Y1 Twoshort

18) wil: B R1 Wil

19) TwoShort: Sacrifice G3 Twoshort
Build B2 Yolonda
Build B3 Yolonda
Build B3 Twoshort

20) wil: T R1 Y1 Wil
	wil: I was thinkin of goin yelloe...but not for that reason....I've pulled the same move...it is great..and now that I've let the horse outta the barn and you are gigglin of what short shrift you've made of me....

21) TwoShort: Trade B2 R2 Yolonda
	wil: Well I am dominated...and BC just timed out to TTT...  it would be right of me to resign now so you could challenge first place...if you'd rather I did that than fight out this game...and I'll challenge you again when I reach a position to do so.

22) wil: Build R1 Wil

23) TwoShort: Trade B3 G3 Twoshort

24) wil: Discover G1 Wil Y3 Y3

25) TwoShort: Move B3 Yolonda Y3

26) wil: Discover G1 Y3 R2 R2
	TwoShort: As far as resigning or not, I'm not particularly concerned about jumping into the next game fast (I feel a little guilty for timing out my previous game, and I'm still pretty busy).  I'm pretty sure I'm going to win this one, but I still find it interesting to figure out how to turn an advantage into actual victory.  In the past I've gotten annoyed at people I thought quit too early, but I'm trying to adopt a more relaxed attitude :)  Don't feel like you should resign on my account; but also don't feel you need to keep playing a bad position if you're not having fun or you'd rather go on to the next game.
	wil: thanks for that, I enjoy the struggle and watching it play out...and so often in this game one can take advantabe of an opening that occurs and turn the tide instantly with a new universe (an error I  doubt you will present)  Yes it is intriguing how you can 'get ahead' significantly but still have to fight to put the pieces in place to end the game.

27) TwoShort: Sacrifice G3 Twoshort
Build B2 Y3
Build B3 Twoshort
Build R1 Yolonda

28) wil: Move R1 Wil G3

29) TwoShort: Sacrifice B2 Twoshort
Trade B2 G2 Y3
Trade R1 Y1 Yolonda
	wil: the assemblage of massive ships begins...  I just played this very same game (from your side with TS52 and  just finally amassed the numbers required...I can see the future...it is not good.

30) wil: Move Y1 Wil G3
	wil: m y1 wil g3

31) TwoShort: Sacrifice G2 Y3
Build B2 Y3
Build Y3 Twoshort
	wil: ding dong place the move in the wrong box...you've got me flustered


32) wil: Sacrifice G3 Wil
Build R1 G3
Build R3 Wil
Build Y3 G3

33) TwoShort: Sacrifice Y3 Twoshort
Move B3 Y3 Wil
Move B2 Y3 Wil
Discover Y1 Yolonda G3 Grogar

34) wil: Move Y3 G3 Yolonda
Catastrophe Wil B

35) TwoShort: Build Y3 Grogar

36) wil: S R2 Wil
A R2 Yolonda
A B1 Yolonda

37) TwoShort: Sacrifice Y3 Grogar
Move Y1 Grogar Wil
Move Y1 Twoshort Wil
Move Y2 Twoshort Wil
Catastrophe Wil Yellow
	wil: Just whistlin while sending forces to waterloo..
	TwoShort: Thanks for the game!
	wil: very nice...thank you!



25793)
Started: 2014.6.2, Ended: 2014.6.12
Participants: Timetech (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3
	Timetech: Y3 G1 R2
	Timetech: what
is
why
is
this not
working
	Timetech: OOOOOOOHHHHHHHHH, sorry.  Its my first time.  I think maybe its actually your turn.
	Timetech: homeworld y3 g1 r2
	Timetech: nope

	ts52: Yes, it's my turn. 

2) Timetech: Homeworld B3 G1 Y3
	Timetech: SOrry, I'm so confused.


3) ts52: Build G1 Ts52
	ts52: That's ok, looks like you're figuring it out. Have you played much homeworlds before?

4) Timetech: Build Y1 Timetech
	Timetech: No I have never played before . ...  I'm brand new, any chance of going easy on me?

5) ts52: Trade G1 B1 Ts52
	Timetech: Um, I'm having trouble figuring out how to build a different color ship?  Could you perhaps give me a hint?
	ts52: Sure. You can't build a color you don't have in that system. You have to trade a ship you have for another of the same size of a different color.

6) Timetech: Trade Y3 R3 Timetech

7) ts52: Discover B1 Ts52 G3 Kermit
	Timetech: DEFENSE INITIATED
PROJECT: RED SHIP

8) Timetech: Discover Y1 Timetech R2 Two

9) ts52: Trade B1 R1 Kermit

10) Timetech: Build R1 Timetech

11) ts52: Build G1 Ts52

12) Timetech: Trade R1 Y1 Timetech

13) ts52: Build G1 Ts52

14) Timetech: Build Y2 Timetech

15) ts52: Discover G1 Ts52 B3 Gonzo

16) Timetech: Discover Y1 Timetech R2 Three

17) ts52: Build G2 Gonzo



25892)
Variants: "Unrated"
Started: 2014.6.4, Ended: 2014.6.6
Participants: Timetech (S), fogus (N)
Winner: fogus

1) fogus: Homeworld B1 Y2 G3

2) Timetech: Homeworld R3 G2 B3

3) fogus: Build G1 Fogus

4) Timetech: Build B1 Timetech

5) fogus: Build G1 Fogus

6) Timetech: Trade B1 Y1 Timetech

7) fogus: Discover G1 Fogus Y3 Ape

8) Timetech: Discover Y1 Timetech R1 A2

9) fogus: Build G1 Ape

10) Timetech: Build B1 Timetech

11) fogus: Build G2 Ape



25767)
Variants: "Hard time"
Started: 2014.6.13, Ended: 2014.7.6
Participants: wil (S), SilentTitan (N)
Winner: wil

1) SilentTitan: Homeworld Y3 B1 G3

2) wil: H G2 B1 B3 *

3) SilentTitan: Build G1 Silenttitan

4) wil: B B1 Wil

5) SilentTitan: Trade G3 B3 Silenttitan

6) wil: T B1 Y1 Wil

7) SilentTitan: Build G1 Silenttitan

8) wil: B Y1 Wil

9) SilentTitan: Build G1 Silenttitan

10) wil: Discover Y1 Wil G3 G3

11) SilentTitan: Discover G1 Silenttitan Y2 Sol

12) wil: Build Y1 Wil

13) SilentTitan: Build G2 Silenttitan

14) wil: Build Y2 Wil

15) SilentTitan: Trade B3 Y3 Silenttitan

16) wil: Build Y2 G3

17) SilentTitan: Build G2 Sol

18) wil: Build Y3 G3

19) SilentTitan: Move G1 Sol G3

20) wil: Sacrifice Y2 Wil
Move Y1 G3 Sol
Move Y1 Sol Silenttitan

21) SilentTitan: Sacrifice G2 Silenttitan
Build G2 G3
Build G3 G3
Catastrophe G3 Green

22) wil: Build Y2 Wil

23) SilentTitan: Trade G1 R1 Silenttitan

24) wil: Sacrifice Y2 Wil
Discover Y1 Wil G3 G3
Discover Y1 G3 G2 G2

25) SilentTitan: Trade Y3 G3 Silenttitan
	wil: I don't know exactly what I was thinkin there...
	SilentTitan: I'm not either.  I was prepared to move out of Sol in order to drop a y2 into the bank and delay your y3 build another couple of turns.

26) wil: Build Y2 G2
	SilentTitan: Heh. But the talkin almost distracted me enough, of course the two hours of sleep may be part of it as well

27) SilentTitan: Attack Y1 Silenttitan S

28) wil: Build B1 Wil

29) SilentTitan: Move Y1 Silenttitan G2

30) wil: Build Y2 Wil

31) SilentTitan: Build Y3 G2
Catastrophe G2 Yellow

32) wil: Discover B1 Wil Y3 Y3

33) SilentTitan: Sacrifice G3 Silenttitan
Build G1 Sol
Build G1 Sol
Build G2 Silenttitan
	SilentTitan: I had no idea, yellow in my home world would mess me up so bad.

34) wil: Trade Y1 R1 Wil

35) SilentTitan: Build G3 Silenttitan
	wil: yellow homeworlds are different....but my opening borders on the ridiculous....but I thought it might fly...
	SilentTitan: Oh, yeah I tried that one once. Also tough.

36) wil: Build B2 Wil

37) SilentTitan: Discover G1 Sol Y3 Soul

38) wil: B R1 Wil

39) SilentTitan: Sacrifice G3 Silenttitan
Build G3 Soul
Build G3 Soul
Build G3 Silenttitan

40) wil: Trade B2 Y2 Wil



25838)
Variants: "Hard time"
Started: 2014.6.13, Ended: 2014.6.23
Participants: Marmalade (S), wil (N)
Winner: wil

1) wil: H R2 B1 G3

2) Marmalade: Homeworld B2 Y3 G3

3) wil: B G1 Wil

4) Marmalade: Build G1 Marmalade

5) wil: T G1 B1 Wil

6) Marmalade: Trade G3 B3 Marmalade

7) wil: B G1 Wil

8) Marmalade: Build G1 Marmalade

9) wil: B G2 Wil

10) Marmalade: Build G2 Marmalade

11) wil: Trade G1 Y1 Wil

12) Marmalade: Discover G1 Marmalade Y1 Krom

13) wil: Discover G2 Wil Y3 Y3

14) Marmalade: Sacrifice G1 Marmalade
Build G1 Krom

15) wil: Build Y1 Wil

16) Marmalade: Build G1 Marmalade

17) wil: Build Y2 Wil

18) Marmalade: Trade G2 Y2 Marmalade

19) wil: Discover Y2 Wil G3 G3

20) Marmalade: Build G2 Marmalade

21) wil: Sacrifice G3 Wil
Build Y2 G3
Build Y3 Wil
Build G2 Y3

22) Marmalade: Sacrifice G2 Marmalade
Build G2 Krom
Build G3 Marmalade

23) wil: Move G2 Y3 Krom
Catastrophe Krom G

24) Marmalade: Discover G1 Marmalade Y1 Phaf

25) wil: Trade Y1 R1 Wil

26) Marmalade: Trade B3 R3 Marmalade

27) wil: Move Y2 G3 Phaf

28) Marmalade: Move R3 Marmalade Phaf

29) wil: Move Y2 Phaf Marmalade

30) Marmalade: Trade G3 R3 Marmalade

31) wil: Sacrifice G2 Y3
Build Y1 Marmalade
Build B1 Wil
Catastrophe Marmalade Y

32) Marmalade: Build G1 Phaf
	Marmalade: Well, that was silly :) Ah well.

33) wil: Move B1 Wil G3

34) Marmalade: Move R3 Phaf G3

35) wil: Sacrifice Y2 G3
Discover B1 G3 G1 G1
Discover B1 Wil G3 Gee3

36) Marmalade: Build G2 Phaf

37) wil: Build B2 G1
	wil: dang big school yard bullies....  all I am doing is trying to take over the universe...  sheesh...

	wil: doomsday machine parts assembled.
	Marmalade: Ah yes, you're quite right.

	wil: Thank you for the game, I look forward to playing again...


25891)
Started: 2014.6.13, Ended: 2014.6.30
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H R2 B1 G3

2) ts52: Homeworld Y1 B3 G3

3) wil: B G1 Wil

4) ts52: Build G1 Ts52

5) wil: Trade G1 B1 Wil

6) ts52: Trade G1 B1 Ts52

7) wil: Build B2 Wil

8) ts52: Discover B1 Ts52 G2 Oscar

9) wil: Trade B1 Y1 Wil

10) ts52: Build G1 Ts52

11) wil: Build Y1 Wil

12) ts52: Build G1 Ts52

13) wil: Build Y2 Wil

14) ts52: Discover G1 Ts52 B2 Gonzo

15) wil: Trade Y2 R2 Wil

16) ts52: Trade G3 Y3 Ts52

17) wil: Trade Y1 R1 Wil

18) ts52: Build B1 Oscar

19) wil: Discover R2 Wil Y3 Y3

20) ts52: Trade B1 R1 Oscar

21) wil: Move R2 Y3 Oscar

22) ts52: Build R1 Oscar

23) wil: Attack B1 Oscar

24) ts52: Attack B1 Oscar
	wil: I almost grew an R2 at home....don't know which was the better move...

25) wil: Attack B1 Oscar
	ts52: Hmmm, not sure, might've been the better option...

26) ts52: Build R2 Oscar
Catastrophe Oscar Red
	wil: I suppose if the circuitous route were to continue...it is always on the table.

27) wil: Build B1 Wil
	ts52: Meh, I'm not inclined to follow this cycle any farther. Though I suspect this isn't going to end well for me.

28) ts52: Build G1 Ts52
	wil: If you were to have chosen to flip it back, Ida taken the other route...as the stalemate is obviously not in my best interest...  (I frankly didn't see it coming initially)

	wil: But yeah, either way it appears to me my game to lose at this point...

29) wil: Build B2 Oscar

30) ts52: Trade G1 R1 Ts52

31) wil: Build B3 Oscar

32) ts52: Build Y1 Ts52

33) wil: Trade B3 Y3 Oscar

34) ts52: Move Y1 Ts52 Gonzo

35) wil: Build B3 Oscar

36) ts52: Build Y2 Gonzo

37) wil: Trade B3 R3 Oscar

38) ts52: Trade Y2 R2 Gonzo

39) wil: Build B3 Oscar

40) ts52: Build Y2 Gonzo

41) wil: Trade B3 Y3 Oscar
	wil: oh my...that was the faux pas you were waiting for!!
	ts52: Oh, man. If only I'd caught you in those 44 seconds...

42) ts52: Discover Y2 Gonzo G3 Kermit

43) wil: Build Y2 Wil

44) ts52: Build Y2 Gonzo

45) wil: Build B3 Oscar

46) ts52: Trade Y2 R2 Gonzo

47) wil: S Y2 Wil
M B3 Oscar Kermit
M B3 Kermit Gonzo

48) ts52: Sacrifice Y2 Kermit
Discover R2 Gonzo G3 Kermit
Move R2 Gonzo Kermit

49) wil: Build B3 Oscar

50) ts52: Build Y2 Gonzo

51) wil: Sacrifice Y3 Oscar
Move Y3 Oscar Ts52
Move B3 Oscar Ts52
Move B3 Gonzo Ts52
	wil: I believe the occupation forces are at the border, and enough munitions are at hand for a regime change.

52) ts52: Sacrifice R2 Kermit
Attack Y3 Ts52
Attack B3 Ts52
	wil: 

53) wil: Sacrifice R3 Oscar
Attack Y3 Ts52
Attack Y3 Ts52
Attack B3 Ts52

54) ts52: Trade R1 G1 Ts52

55) wil: Sacrifice Y1 Wil
Move B1 Oscar Ts52
Catastrophe Ts52 B
	wil: We come promoting democracy and freedom...

56) ts52: Build R1 Kermit

57) wil: Sacrifice G3 Wil
Build Y1 Ts52
Build B1 Oscar
Build B3 Oscar
Catastrophe Ts52 Y
	wil: I suppose converting a blue to an attack ship would have been the other option...now I am just in catastrophe mode and not much will be left of the universe when I finish....and after building that huge flotilla...seems a waste...

	ts52: Yeah, I've really got no way out of this.
	wil: thank you for the game...  I like to keep numerous games going so I can continue to learn...feel free to challenge me anytime...
	ts52: Sure thing. I owe you one.
	wil: oh my....


25933)
Variants: "Unrated"
Started: 2014.6.19, Ended: 2014.6.21
Participants: Timetech (S), Moman1 (N)
Winner: Timetech

1) Moman1: Homeworld R2 B1 G3
	Timetech: the letters have to be lower case


2) Timetech: Homeworld R1 G2 B3

3) Moman1: Build G1 Moman1

4) Timetech: Build B1 Timetech

5) Moman1: Build G1 Moman1

6) Timetech: Trade B1 Y1 Timetech

7) Moman1: Trade G1 R1 Moman1

8) Timetech: Build B1 Timetech

9) Moman1: Build G1 Moman1

10) Timetech: Trade B1 R1 Timetech

11) Moman1: Build R2 Moman1

12) Timetech: Discover R1 Timetech R3 W2

13) Moman1: Build R2 Moman1

14) Timetech: Build B1 Timetech
Catastrophe Moman1 R

15) Moman1: Trade G1 Y1 Moman1

16) Timetech: Build B1 Timetech

17) Moman1: Trade G1 R1 Moman1

18) Timetech: Trade B3 R3 Timetech

19) Moman1: Build R2 Moman1

20) Timetech: Build R2 Timetech

21) Moman1: Build Y1 Moman1

22) Timetech: Discover R2 Timetech R3 W3

23) Moman1: Build R2 Moman1

24) Timetech: Build Y2 Timetech

25) Moman1: Discover Y1 Moman1 B2 E1

26) Timetech: Sacrifice Y2 Timetech
Move R1 W2 E1
Move R2 W3 E1

27) Moman1: Build R3 Moman1

28) Timetech: Attack Y1 E1
Catastrophe Moman1 R

29) Moman1: Build Y2 Moman1

30) Timetech: Move R2 E1 Moman1

31) Moman1: Build Y2 Moman1

32) Timetech: Sacrifice R3 Timetech
Attack Y2 Moman1
Attack Y2 Moman1
Attack Y1 Moman1

33) Moman1: Trade G3 R3 Moman1

34) Timetech: Sacrifice Y2 Moman1
Move R2 Moman1 E1
Move Y2 Moman1 E1

35) Moman1: Attack Y1 Moman1

36) Timetech: Build Y2 Timetech

37) Moman1: Move R3 Moman1 E1

38) Timetech: Sacrifice Y2 E1
Move R2 E1 Moman1
Move R1 E1 Moman1

39) Moman1: Attack Y1 E1

40) Timetech: Attack Y1 Moman1



25942)
Variants: "Hard time"
Started: 2014.6.22, Ended: 2014.7.15
Participants: TeeTeeTee (S), SilentTitan (N)
Winner: TeeTeeTee

1) SilentTitan: Homeworld R1 B2 G3
	TeeTeeTee: Hello, and welcome!
	SilentTitan: Hello and thanks

2) TeeTeeTee: Homeworld B1 R3 G3

3) SilentTitan: Build G1 Silenttitan

4) TeeTeeTee: Build G1 Teeteetee

5) SilentTitan: Trade G1 Y1 Silenttitan

6) TeeTeeTee: Trade G1 Y1 Teeteetee

7) SilentTitan: Build G1 Silenttitan

8) TeeTeeTee: Build G1 Teeteetee

9) SilentTitan: Trade G1 B1 Silenttitan

10) TeeTeeTee: Trade G1 B1 Teeteetee

11) SilentTitan: Build B2 Silenttitan

12) TeeTeeTee: Build B2 Teeteetee

13) SilentTitan: Discover B2 Silenttitan G3 Sol

14) TeeTeeTee: Trade B1 R1 Teeteetee

15) SilentTitan: Sacrifice G3 Silenttitan
Build B1 Sol
Build B3 Sol
Build B3 Silenttitan
	TeeTeeTee: I just saw the announcement about Super Duper Games shutting down... sad news. :( 
	SilentTitan: Yes

16) TeeTeeTee: Build B3 Teeteetee

17) SilentTitan: Trade B2 Y2 Sol

18) TeeTeeTee: Trade B3 Y3 Teeteetee

	TeeTeeTee: Argh! That's a shame. I think you had a much stronger start than I did, and I was struggling to keep up.

If you have more time in the near future, then feel free to send me another challenge.


25944)
Variants: "Unrated"
Started: 2014.6.23, Ended: 2015.1.14
Participants: SilentTitan (S), Link2888 (N)
Winner: SilentTitan

1) Link2888: Homeworld G3 B1 Y3

2) SilentTitan: Homeworld R1 B2 G3

3) Link2888: Build Y1 Link2888

4) SilentTitan: Build G1 Silenttitan

5) Link2888: Trade Y1 R1 Link2888

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Link2888: Build Y1 Link2888

8) SilentTitan: Build Y1 Silenttitan

9) Link2888: Build Y2 Link2888

10) SilentTitan: Build Y2 Silenttitan

11) Link2888: Trade Y2 G2 Link2888

12) SilentTitan: Trade Y1 B1 Silenttitan

13) Link2888: Trade Y1 B1 Link2888

14) SilentTitan: Build B2 Silenttitan

15) Link2888: Discover B1 Link2888 G2 Endor

16) SilentTitan: Discover B1 Silenttitan G3 Sol

17) Link2888: Discover R1 Link2888 Y2 Dune

18) SilentTitan: Build B2 Sol

19) Link2888: Move R1 Dune Sol

20) SilentTitan: Trade B2 R2 Silenttitan

21) Link2888: Attack B1 Sol

22) SilentTitan: Sacrifice R2 Silenttitan
Attack B1 Sol North
Attack R1 Sol North

23) Link2888: Build B2 Endor

24) SilentTitan: Sacrifice Y1 Silenttitan
Discover B1 Sol Y2 Soul

25) Link2888: Trade B2 Y2 Endor

26) SilentTitan: Build B2 Sol

27) Link2888: Discover B1 Endor Y1 Blue

28) SilentTitan: Sacrifice Y2 Silenttitan
Move B2 Sol Endor
Discover B2 Sol G2 Sole

29) Link2888: Move B1 Blue Sole

30) SilentTitan: Sacrifice R1 Sol
Attack Y2 Endor North

31) Link2888: Build Y1 Link2888

32) SilentTitan: Trade B2 R2 Sole

33) Link2888: Trade B1 G1 Sole

34) SilentTitan: Attack G1 Sole North



25893)
Started: 2014.6.24, Ended: 2014.10.25
Participants: wil (S), Mandrel (N)
Winner: wil

1) Mandrel: Homeworld R3 B2 G3

2) wil: Homeworld Y2 B1 G3
	Mandrel: Have a good game!

3) Mandrel: Build G1 Mandrel
	wil: Lookin forward to it...  I have yet to have a bad game (well except the ones that linger and then get lost by time)...I've played badly, played terribly even, but always enjoy the game and learning.

4) wil: Build G1 Wil

5) Mandrel: Trade G1 Y1 Mandrel

6) wil: Trade G1 B1 Wil

7) Mandrel: Build Y1 Mandrel

8) wil: Build B1 Wil

9) Mandrel: Build G1 Mandrel

10) wil: Discover B1 Wil G3 G3

11) Mandrel: Build Y1 Mandrel

12) wil: Build B2 G3

13) Mandrel: Discover Y1 Mandrel G1 Bowl

14) wil: Build B2 Wil

15) Mandrel: Build Y2 Bowl

16) wil: Build B3 G3

17) Mandrel: Build Y2 Mandrel

18) wil: Trade B3 Y3 G3

19) Mandrel: B Y3 Bowl

20) wil: Build B3 G3

21) Mandrel: T Y1 R1 Mandrel

22) wil: Trade B3 R3 G3

23) Mandrel: Trade G3 B3 Mandrel

24) wil: Trade B1 R1 Wil

25) Mandrel: Sacrifice Y2 Mandrel
Move B3 Mandrel Bowl
Move Y3 Bowl Mandrel

26) wil: Build R1 G3

27) Mandrel: Move R1 Mandrel Bowl

28) wil: Discover R3 G3 G1 G1

29) Mandrel: Build G2 Mandrel

30) wil: Build G2 Wil

31) Mandrel: Build R2 Bowl

32) wil: Move B2 G3 G1

33) Mandrel: Build Y1 Bowl

34) wil: Build Y2 G3

35) Mandrel: Build Y3 Mandrel

36) wil: S Y3 G3
Move R3 G1 Mandrel
Move Y2 G3 G1
Move Y2 G1 Mandrel
Catastrophe Mandrel Y

37) Mandrel: S Y2 Bowl
Move R1 Bowl Mandrel
Move R2 Bowl Mandrel
C Mandrel R
	wil: It appears a disaster has occurred with your large propulsion refineries, we are utilizing a portion of our superfund budget to send in our largest trojan horse, I mean red cross ship to assist in the cleanup efforts.

38) wil: Sacrifice G3 Wil
Build B1 G1
Build B3 G3
Build B3 Wil
	Mandrel: Apologies, my own relief effort appears to have made matters worse.

39) Mandrel: Trade G1 Y1 Mandrel
	wil: Yes it looks like my Red Cross ship is missing with all its crew and supplies...

40) wil: S B2 Wil
T B3 R3 G3
T B2 Y2 G1

41) Mandrel: Build Y2 Mandrel

42) wil: Build Y3 G1

43) Mandrel: Build Y3 Bowl

44) wil: Sacrifice Y2 G1
Move B3 Wil G3
Move B3 G3 Mandrel

45) Mandrel: Build Y2 Mandrel

46) wil: S R3 G3
A G2 Mandrel
A Y2 Mandrel
A Y2 Mandrel

47) Mandrel: Move B3 Bowl Mandrel

48) wil: Move B1 G1 Mandrel
Catastrophe Mandrel B
	wil: The operation was a success, but the patient died...thanx for the game!



25921)
Variants: "Hard time"
Started: 2014.6.26, Ended: 2014.6.26
Participants: wil (S), Marmalade (N)
Winner: Marmalade



25949)
Variants: "Hard time"
Started: 2014.6.26, Ended: 2014.6.29
Participants: wil (S), Marmalade (N)
Winner: wil

	wil: oops....wanted to play a game...but got two...
	wil: or rather...guess I didn't get any...


25955)
Variants: "Hard time"
Started: 2014.6.30, Ended: 2014.7.24
Participants: TwoShort (S), wil (N)
Winner: TwoShort

1) wil: Homeworld Y2 B1 G3
	wil: there was no one else I was allowed to challenge on the ladder....I've been beat by the rest, might as well get beat by the best again.

2) TwoShort: Homeworld B1 G3 B3 *

3) wil: Build G1 Wil

4) TwoShort: Build B1 Twoshort
	wil: lol...deja view

5) wil: Build G1 Wil

6) TwoShort: Trade B3 Y3 Twoshort

7) wil: Discover G1 Wil Y3 Y3

8) TwoShort: Build B2 Twoshort

9) wil: Build G1 Wil

10) TwoShort: Discover B2 Twoshort B2 Bluzilla

11) wil: Build G2 Y3

12) TwoShort: Build B2 Twoshort

13) wil: Trade G1 R1 Wil

14) TwoShort: Trade B2 R2 Twoshort

15) wil: Trade G3 B3 Wil

16) TwoShort: Discover B1 Twoshort G2 Grogar

17) wil: Build G1 Wil

18) TwoShort: Build B2 Grogar

19) wil: Build G2 Wil

20) TwoShort: Build B3 Grogar

21) wil: Discover G1 Wil Y3 Why3

22) TwoShort: Sacrifice Y3 Twoshort
Move B3 Grogar Twoshort
Discover B2 Grogar G3 Greenland
Discover B1 Grogar G3 Greedo

23) wil: Build B3 Wil

24) TwoShort: Trade B2 Y2 Bluzilla

25) wil: Trade B3 Y3 Wil

26) TwoShort: Build B2 Greedo

27) wil: Move B3 Wil Y3

28) TwoShort: Build B3 Greenland

29) wil: Trade G2 Y2 Y3
	wil: and here I expected bluezilla to get sacked and greedo to take out half my homeworld...
	TwoShort: But after tha, I had no quick way to finish you; Our homeworlds would be adjacent; and you'd have a massive piece advantage... 

30) TwoShort: Trade B1 Y1 Greedo

31) wil: Build G2 Y3
	wil: hmmm  I'd be outta blues...no position to trade ships anywhere and be stuck trying move to a blue to do it...and many of my ships two steps away...  would be cool to be able to after a game completes set the program to restart from x move and try again...   

32) TwoShort: Build Y1 Greedo

33) wil: Trade G2 R2 Y3

34) TwoShort: Sacrifice Y2 Bluzilla
Move Y1 Greedo Wil
Move Y1 Greedo Wil
Catastrophe Wil Yellow

35) wil: Move B3 Y3 Wil

36) TwoShort: Trade B3 Y3 Twoshort

37) wil: Trade B3 R3 Wil

38) TwoShort: Sacrifice Y3 Twoshort
Move B2 Greedo Wil
Move B2 Greenland Wil
Move B3 Greenland Wil
Catastrophe Wil Blue
	wil: Well that be it yet again...

	wil: It'll at least look like we tried to defend...
	TwoShort: Thanks for the game.
	wil: thank you for the butt whoopin!


25922)
Started: 2014.7.11, Ended: 2014.8.4
Participants: ts52 (S), Conflux (N)
Winner: ts52

1) Conflux: Homeworld B3 G2 R3

2) ts52: Homeworld Y1 B2 G3

	ts52: Have a good game!


25920)
Variants: "Hard time"
Started: 2014.7.14, Ended: 2014.7.17
Participants: SilentTitan (S), Grosseteste (N)
Winner: Grosseteste

1) Grosseteste: Homeworld B1 Y2 G3

	Grosseteste: Let's see if I can keep the time control this time.  Have fun!


25950)
Variants: "Hard time"
Started: 2014.7.14, Ended: 2014.7.17
Participants: Grosseteste (S), Marmalade (N)
Winner: Grosseteste

	Grosseteste: Trying to make amends for my Hard Time losses.  Have a good game!


26005)
Started: 2014.7.15, Ended: 2014.9.24
Participants: Grosseteste (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B1 R2 G3

2) Grosseteste: Homeworld Y3 B1 G3

3) mneme: Build G1 Mneme

4) Grosseteste: B G1 Grosseteste

5) mneme: Trade G1 B1 Mneme

6) Grosseteste: B G1 Grosseteste

7) mneme: Build B2 Mneme

8) Grosseteste: Trade G1 R1 Grosseteste

9) mneme: Trade B2 Y2 Mneme

10) Grosseteste: T G3 B3 Grosseteste

11) mneme: Build B2 Mneme

12) Grosseteste: B R1 Grosseteste

13) mneme: Discover B2 Mneme G3 Staging

14) Grosseteste: D R1 Grosseteste Y2 Luce

15) mneme: Build B2 Staging

16) Grosseteste: D R1 Luce G3 Compotus

17) mneme: Build B2 Mneme

18) Grosseteste: B R1 Compotus

19) mneme: Build B3 Staging

20) Grosseteste: B R2 Compotus

21) mneme: Trade B2 R2 Mneme

22) Grosseteste: B R3 Grosseteste
	mneme: I'm pretty sure you wanted to make that last r2 in your home system.
	Grosseteste: B r3 Grosseteste
	Grosseteste: B r3 Grosseteste

23) mneme: Build R3 Mneme
	Grosseteste: Doh, wrong window. It was intentional, but I did not see your trade coming.
	Grosseteste: Doh, wrong window. It was intentional, but I did not see your trade coming.

24) Grosseteste: B R3 Grosseteste
	mneme: Well, you did get a 3 out of it, but I did too, and at a very high cost.

25) mneme: Move R2 Mneme Compotus
Catastrophe Compotus R
	mneme: ok, 2 3s, but I didn't want to say that until you built the third one

26) Grosseteste: T R3 G3 Grosseteste

27) mneme: Trade B3 Y3 Staging

28) Grosseteste: Discover B3 Grosseteste G2 Hexaemeron

29) mneme: Build B2 Staging

30) Grosseteste: T R3 Y3 Grosseteste

31) mneme: Move B2 Staging Hexaemeron

32) Grosseteste: Sacrifice R1 Grosseteste
Attack B2 Hexaemeron

33) mneme: Sacrifice Y2 Mneme
Move B2 Staging Hexaemeron
Move B2 Staging Hexaemeron
Catastrophe Hexaemeron B

34) Grosseteste: Discover G1 Grosseteste Y2 Colore

35) mneme: Sacrifice Y3 Staging
Discover G3 Mneme Y3 Staging
Move G3 Staging Colore
Move G3 Colore Grosseteste

	mneme: good game.
	Grosseteste: Thanks, gg
	Grosseteste: Thanks, gg


25999)
Variants: "Hard time"
Started: 2014.7.15, Ended: 2014.9.19
Participants: Grosseteste (S), Mandrel (N)
Winner: Grosseteste

1) Mandrel: Homeworld R1 B2 G3

2) Grosseteste: Homeworld B1 Y3 G3
	Mandrel: Have a good game

3) Mandrel: Build G1 Mandrel
	Grosseteste: You too!

4) Grosseteste: Build G1 Grosseteste

5) Mandrel: Trade G1 R1 Mandrel

6) Grosseteste: Trade G1 R1 Grosseteste

7) Mandrel: Build R2 Mandrel

8) Grosseteste: B R2 Grosseteste

9) Mandrel: T R1 B1 Mandrel

10) Grosseteste: B G1 Grosseteste

11) Mandrel: Build G1 Mandrel

12) Grosseteste: D G1 Grosseteste R2 Hexaemeron

13) Mandrel: Trade G1 Y1 Mandrel

14) Grosseteste: B G1 Grosseteste

15) Mandrel: Discover B1 Mandrel G3 Corn

16) Grosseteste: Discover R1 Grosseteste G2 Colore

17) Mandrel: Build B1 Corn

18) Grosseteste: B G1 Hexaemeron

19) Mandrel: Build B2 Corn

20) Grosseteste: B G2 Grosseteste

21) Mandrel: Build G2 Mandrel

22) Grosseteste: T G2 B2 Grosseteste

23) Mandrel: Trade B1 Y1 Corn

24) Grosseteste: S G3 Grosseteste
B R1 Colore
B R3 Grosseteste
B R3 Grosseteste



25539)
Variants: "Unrated, Hard time"
Started: 2014.7.15, Ended: 2014.7.22
Participants: ts52 (S), TeeTeeTee (N), wil (E)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld B1 Y2 G3

2) wil: Homeworld G3 B1 B3 *
	TeeTeeTee: Shall we have another try at a multiplayer game, then?
	wil: Heck...you think we'll complete one??  Maybe with you two!  Now convention says we each create a different homeworld yes?   I suppose I'll take fortress....

3) ts52: Homeworld Y2 B3 G3

4) TeeTeeTee: Build G1 Teeteetee
	ts52: Wow, I can't remember the last time I played Homeworlds with more than one opponent. This should be fun.

5) wil: Build B1 Wil
	TeeTeeTee: I've not played a game with more than two players before, with the exception of one that lasted for only a few days before two players dropped out. We've got a good chance of this one playing out, though... 
	wil: I've yet to complete one... I think binary is still the best...but these do lead to a binary game with lots of pieces once one is eliminated...I just haven't got that far with one yet...

6) ts52: Build G1 Ts52
	wil: I meant to take fortress and instead to goldilocks and just noticed...  And you TTT sure rallied up the ladder!!

7) TeeTeeTee: Trade G1 B1 Teeteetee

8) wil: Build B2 Wil

9) ts52: Build G1 Ts52
	TeeTeeTee: ...?

10) TeeTeeTee: Build B2 Teeteetee
Catastrophe Wil Blue

11) ts52: Trade G1 B1 Ts52
	TeeTeeTee: Right. I think that we should try this, again.

12) TeeTeeTee: Discover B1 Teeteetee G3 Duvel
	ts52: d'oh! how did I miss that. I'm up for trying again...
	ts52: Wil just wanted to make sure the 3 player game didn't finish. ;)


13) ts52: Discover B1 Ts52 G1 Kermit

14) TeeTeeTee: Build G1 Teeteetee

15) ts52: Trade G1 Y1 Ts52
	TeeTeeTee: Okay - feel free to set up another 3-player challenge, then, wil (or ts52). Perhaps you two should agree to team up, this time?
	wil: oops...what the hell did i do?  did I overload myself??...I did I did...foolishness!
	wil: oops...what the hell did i do?  did I overload myself??...I did I did...foolishness!
	TeeTeeTee: Yeah... I have to say, you each made terrible blunders in Homeworlds games yesterday. (ts52: can you see what you should have done here, instead of sacrificing the r1? http://superdupergames.org/?page=archive_play&gid=25745&idx=60 )

Also, wil, did you ever follow through with your plan to discuss/comment on interesting Homeworlds games?
	ts52: TTT: I missed the yellow you had one move away from my homeworld. So sacrificing the r1 was a complete waste. 

16) TeeTeeTee: Trade G1 R1 Teeteetee
	ts52: TTT: Er, sorry, wasn't your yellow, but the rest is the same.

17) ts52: Build G1 Ts52

18) TeeTeeTee: Build G1 Teeteetee

19) ts52: Trade G1 R1 Ts52

20) TeeTeeTee: Build R1 Teeteetee

21) ts52: Build G1 Ts52

22) TeeTeeTee: Trade B2 Y2 Teeteetee

23) ts52: Move Y1 Ts52 Kermit

24) TeeTeeTee: Discover G1 Teeteetee B3 Chimay

25) ts52: Build Y1 Kermit

26) TeeTeeTee: Build Y1 Teeteetee

27) ts52: Discover Y1 Kermit G2 Oscar

28) TeeTeeTee: Move Y1 Teeteetee Chimay

29) ts52: Move G1 Ts52 Kermit

30) TeeTeeTee: Build G1 Chimay

31) ts52: Build G2 Ts52

32) TeeTeeTee: Move G1 Chimay Kermit

33) ts52: Move B1 Kermit Oscar

34) TeeTeeTee: Sacrifice G3 Teeteetee
Build G2 Kermit
Build G2 Chimay
Build G3 Chimay
Catastrophe Kermit Green

35) ts52: Build Y1 Oscar
	wil: Yeah, we only got a few suggestions...but we are going to do it..
	TeeTeeTee: Great! I'd certainly be interested in seeing what you come up with. If you'd like, then I could offer some suggestions for games? Alternatively, if you've already chosen some games, then I could offer my own comments on them? Send me a private message if you're interested.
	wil: send me suggestions...  The suggestions I am asking for are ones from players that got whipped by something they didn't see coming...or perfect examples of setting up a doomsday machine or taking advantage of a bluebird, or cornering an economy.... teachable moments for those learning.


36) TeeTeeTee: Move G1 Chimay Oscar

37) ts52: Trade G2 R2 Ts52

38) TeeTeeTee: Sacrifice G2 Chimay
Build G1 Oscar
Build G1 Oscar
Catastrophe Oscar Green

39) ts52: Discover R2 Ts52 Y1 Zoe
	ts52: It's funny, I should've seen that coming, since you just did it to me a turn ago. Sigh.

40) TeeTeeTee: Move Y2 Teeteetee Duvel

41) ts52: Build G1 Ts52
	TeeTeeTee: Actually, I think I made an error, there: the stronger move for me would have been to build a single g1 at Oscar. If you took both g1s by sacrificing the r2, then I could move in the g2 to cause a catastrophe, and we'd have both lost a medium ship; otherwise, I'd have built a g1, and we'd have both kept our medium ships. Oh well - guess it makes the game more interesting!

42) TeeTeeTee: Build Y1 Duvel

43) ts52: Build G1 Ts52

44) TeeTeeTee: Sacrifice G3 Chimay
Build Y1 Duvel
Build Y2 Chimay
Build Y3 Chimay

45) ts52: Move G1 Ts52 Zoe

46) TeeTeeTee: Trade Y2 R2 Duvel

47) ts52: Discover R2 Zoe Y3 Bigbird

48) TeeTeeTee: Move Y2 Chimay Teeteetee

49) ts52: Trade G1 B1 Ts52

50) TeeTeeTee: Trade Y3 G3 Chimay

51) ts52: Discover G1 Zoe B3 Gonzo

52) TeeTeeTee: Sacrifice G3 Chimay
Build Y1 Chimay
Build Y2 Chimay
Build Y3 Teeteetee

53) ts52: Build G1 Gonzo

54) TeeTeeTee: Trade Y3 G3 Teeteetee

55) ts52: Discover B1 Ts52 G1 Kermit

56) TeeTeeTee: Move Y2 Chimay Kermit

57) ts52: Sacrifice G1 Gonzo
Build R1 Bigbird

58) TeeTeeTee: Sacrifice Y2 Kermit
Move R1 Teeteetee Bigbird
Move R1 Teeteetee Bigbird
Catastrophe Bigbird Red

59) ts52: Build R1 Ts52

60) TeeTeeTee: Sacrifice G3 Teeteetee
Build Y2 Chimay
Build Y3 Teeteetee
Build Y3 Duvel

61) ts52: Discover R1 Ts52 G1 Oscar
	ts52: Yeah, being locked out of yellow is really hurting me. I don't expect this will last too much longer.

62) TeeTeeTee: Move Y3 Duvel Oscar

63) ts52: Build R1 Ts52

64) TeeTeeTee: Build Y3 Oscar
	TeeTeeTee: Yeah, I didn't exactly leave you with many options, here...

65) ts52: Discover R1 Ts52 G1 Robin

66) TeeTeeTee: Sacrifice Y2 Teeteetee
Move Y3 Oscar Ts52
Move Y3 Oscar Ts52

67) ts52: Sacrifice R1 Robin
Attack Y3N Ts52
	ts52: And that will do it. Thanks for the game.

68) TeeTeeTee: Sacrifice R2 Duvel
Attack G3S Ts52
Attack Y3S Ts52

69) ts52: Build R1 Oscar

70) TeeTeeTee: Trade Y3 R3 Ts52
	TeeTeeTee: Thanks for the game! Although it is a shame that both attempts at a three-player game fell through...

71) ts52: Sacrifice G1 Gonzo
Build R1 Ts52

72) TeeTeeTee: Sacrifice R3 Ts52
Attack R1S Ts52
Attack R1S Ts52
Pass



26006)
Variants: "Unrated, Hard time"
Started: 2014.7.17, Ended: 2014.7.21
Participants: TeeTeeTee (S), wil (N), ts52 (E)
Winner: wil

1) wil: Homeworld B2 R1 G3

	TeeTeeTee: ffs
	wil: the record still stands...I still haven't been able to play one...
	ts52: Sorry guys, went on vacation over the weekend, and didn't have enough time built up. Honest, we'll get one of these through to the end.
	wil: no worries....it is funny how it works...  the best game is binary anyway....



25880)
Variants: "Hard time"
Started: 2014.7.17, Ended: 2014.8.4
Participants: justin (S), wil (N)
Winner: wil

1) wil: Homeworld B3 R1 G3
	wil: Howdy Justin, first time playing this here?

2) justin: Homeworld G2 R3 B3
	wil: Are you familiar with the game?

3) wil: Build G1 Wil
	justin: I used to play it about 3 years ago on here and had then I had a kid, so lost most of my free time. Almost certainly rusty, but I'll pick it up again soon enough. 
	wil: Cool!  A little time absorption capsule....I know what they are like, sucking up all the free time known to man.  My twins just turned 21, they are in the middle of the next joy...college tuitions...

4) justin: Build B1 Justin

5) wil: Trade G1 R1 Wil

6) justin: Trade B1 Y1 Justin

7) wil: Build G1 Wil

8) justin: Build Y1 Justin

9) wil: Trade G1 Y1 Wil

10) justin: Discover Y1 Justin B1 Wyoming

11) wil: Build Y2 Wil

12) justin: Build Y2 Justin

13) wil: Trade Y1 B1 Wil
	wil: I so want these to be real time...

14) justin: Trade Y2 G2 Justin

15) wil: Build R1 Wil
	justin: Yeah. I'm going to a game store today at lunch to pick up some pyramids to try to get some games going at work. 
	wil: I have one set up that me and my housemate play all the time....  we make moves whenever...you walk by and see it and contmemplate

16) justin: Move G2 Justin Wyoming

17) wil: Discover R1 Wil G2 G2

18) justin: Build G1 Wyoming

19) wil: Sacrifice G3 Wil
Build R2 Wil
Build R2 G2
Build R2 G2

20) justin: Discover G1 Wyoming Y2 Ohio

21) wil: Sacrifice Y2 Wil
Move R2 G2 Wyoming
Discover R1 G2 G1 G1

22) justin: Sacrifice Y1 Wyoming
Discover G2 Wyoming B2 Maine
	wil: I enjoy trying weird things to see how they work out...
	wil: and I do get myself in much trouble with these weird gambits....but gotta see how they play out

	justin: Yeah, the sacrifice to block out red is interesting. 

23) wil: Build R3 G2

24) justin: Build Y1 Justin

25) wil: Build R3 G1

26) justin: Trade Y1 G1 Justin

27) wil: Trade B1 Y1 Wil

28) justin: Build G3 Ohio

29) wil: Move R2 Wil Maine
	wil: yeah...that didn't work out


30) justin: Sacrifice Y1 Justin
Move G2 Maine Wil

31) wil: Sacrifice Y1 Wil
Move R3 G2 Wil
	justin: It's a pain right now, though!
	wil: O to the M to the G you let me outta that one!!  My silly ruse worked?  What have you up your sleeve it was game over I thought??

32) justin: Build G3 Wil

33) wil: Sacrifice R2 Maine
Attack G3 Wil
Attack G2 Wil
	justin: Let's see. You've got a real stranglehold on attacks, so I'm stuck trying to make a catastrophe out of nothing!
	wil: If your big green moved in...no catastrophe, you would have used my red homeworld star to attack me...i was one step behind....and thought it was over..


	wil: My cornering the red economy failed...I didn't think it all the way out (I'm afraid I never do)  I've got to start thinking ahead...my usual only chance is taking advantage of others oopses
	wil: awe....where did you go?


26018)
Variants: "Hard time"
Started: 2014.7.24, Ended: 2014.8.5
Participants: fogus (S), justin (N)
Winner: fogus

1) justin: Homeworld R1 G3 B3

2) fogus: Homeworld B1 Y2 G3

3) justin: Build B1 Justin

4) fogus: Build G1 Fogus

5) justin: Trade B3 G3 Justin

6) fogus: Build G1 Fogus

7) justin: Build B1 Justin

8) fogus: Discover G1 Fogus Y3 Sacsac

9) justin: Trade B1 Y1 Justin

10) fogus: Trade G1 B1 Fogus

11) justin: Discover B1 Justin G2 Sourdough

12) fogus: Build B2 Fogus

13) justin: Build B2 Sourdough

14) fogus: Trade B1 Y1 Fogus

15) justin: Build G1 Justin

16) fogus: Trade B2 Y2 Fogus

17) justin: Trade B2 Y2 Sourdough

18) fogus: Sacrifice Y2 Fogus
Discover G1 Sacsac R2 Temp
Move G1 Temp Justin
Catastrophe Justin G

19) justin: Discover Y2 Sourdough G3 Rye

20) fogus: Build G1 Fogus

21) justin: Build B1 Sourdough

22) fogus: Build G1 Fogus



25983)
Started: 2014.7.24, Ended: 2014.8.4
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld R3 B1 G3

2) ts52: Homeworld Y1 B2 G3
	wil: I was down to two games in play....I need to play more!!!

	ts52: Excellent!

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52

5) wil: Trade G1 Y1 Wil

6) ts52: Build G1 Ts52

7) wil: Build Y1 Wil

8) ts52: Discover G1 Ts52 B3 Grover

9) wil: Build Y2 Wil

10) ts52: Build G1 Ts52

11) wil: B G2 Wil

12) ts52: Build G2 Grover

13) wil: Discover G2 Wil G2 G2

14) ts52: Trade G1 R1 Ts52

15) wil: Trade Y2 R2 Wil

16) ts52: Trade G2 Y2 Grover

17) wil: Build Y2 Wil

18) ts52: Discover G1 Ts52 B3 Gonzo

19) wil: Move R2 Wil G2

20) ts52: Build G1 Ts52

21) wil: Build G2 Wil

22) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build R1 Ts52
	wil: nice move...had no choice....

23) wil: Discover Y1 Wil B2 B2
	ts52: Thanks.

24) ts52: Move R1 Ts52 Gonzo

25) wil: Move Y1 Wil G2

26) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Ts52
Build R2 Gonzo

27) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 G2
Build Y3 B2

28) ts52: Build Y3 Grover

29) wil: Trade Y3 R3 B2

30) ts52: Trade G3 R3 Grover

31) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 Wil
Build Y3 B2

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Gonzo
Build R2 Grover

33) wil: Discover R2 G2 B3 B3

34) ts52: Move R3 Grover G2
	wil: gotta look funny on a physical board... a wall of B3s...


35) wil: Sacrifice Y2 G2
Move Y1 G2 B3
Move G2 G2 B3
	ts52: I really should start setting these up with real pieces again.
	wil: I think there is incredible value in that...when an app or program is created that clearly reflects the preferred fly on the right and orderly starscape...it'll make it much easier...

36) ts52: Move Y2 Grover G2

37) wil: Build Y2 B3

38) ts52: Move R3 G2 B3
	wil: I created a delicious appateezer for a hungry red monster that just missed a meal.
	ts52: It's a trap! (Wha?)

39) wil: Sacrifice Y2 B3
Move Y1 B3 Ts52
Move G2 B3 Ts52

40) ts52: Attack G2 Ts52
	wil: Well that was the plan...now we'll see how it plays out...  
	ts52: See, I knew it was a trap...

41) wil: Sacrifice R3 B2
Attack R1 Ts52
Attack R1 Ts52
Attack G1 Ts52

42) ts52: Build R3 Grover

43) wil: Build Y2 Ts52

44) ts52: Sacrifice R2 Gonzo
Attack Y2 Ts52
Attack R2 B3

45) wil: Sacrifice G2 Wil
Build G2 Ts52
Build R2 Ts52
Catastrophe Ts52 G

46) ts52: Sacrifice Y2 Ts52
Move G3 Gonzo Ts52
Move R1 Gonzo Ts52
Catastrophe Ts52 Red
	wil: the system would not let me end the game... s y3 m y1 in and catastrophe yellow leaves me g2 to move in from wil direct one step to ts52 game over...but the system doesn't allow any moves past the catastrophe..doesn't allow for two catastrophes....dang it.
	ts52: Odd. Nice play, I hadn't anticipated the double catastrophe. That should be fixed.


47) wil: Trade Y2 G2 Wil
	wil: dang system...  now I am behind...

48) ts52: Move R3 Grover B2

49) wil: Sacrifice Y1 B2
Move Y3 B2 Gonzo
	ts52: Yeah, I'm curious to see if I can fight back from here. But you totally won this. I'll resign before the end, regardless.

50) ts52: Move Y3 Grover B2

51) wil: Sacrifice G2 Wil
Build Y1 Ts52
Build Y2 Ts52
Catastrophe Ts52 Y

52) ts52: Sacrifice Y2 G2
Move Y3 B2 Wil
Move R3 B2 Wil

53) wil: Sacrifice G3 Wil
Build Y1 Wil
Build Y1 Wil
Build Y1 Wil
	ts52: I think that's it. You can take one of those, but I've still got an r3 to retake them all.
	wil: Sorry, we don't have dinner enough for all of you.  Yeah, I saw it aftermy move...not before...

	ts52: Nice. Thanks for the game. We should get them to fix that bug.
	wil: All we left you with is that hungry red ship and a world infected with yellow fever, an epidemic soon to be an issue...
	wil: hey...you resigned...not fair...
	ts52: Interesting, just found this in the Homeworlds rules:
Overpopulation and Catastrophes 
If a system contains four or more pieces of the same color (including system markers and ships of any ownership), that system contains an overpopulation of that color. At the end of your turn, you may trigger catastrophes for any overpopulations that exist on the board, regardless of where they are or who owns the ships in them. To trigger a catastrophe, remove all of the pieces of that color from the system (including system markers), and return the pieces to the global stash. If you remove a system marker from a binary system, the system becomes a single-star system. (This may cause the system to become connected to more systems.) If you remove the system marker from a single-star system, the system itself is destroyed, and all of the ships in it are returned to the global stash. Triggering a catastrophe for any given overpopulation is always optional, but if you do choose to trigger it, you must remove all of the pieces causing the overpopulation.
	ts52: Note it specifically mentions catastrophes happening 'at the end of your turn'.
	ts52: I resigned because I thought you should've been able to win with your catastrophes, but apparently that's not the case. Oh well. At least it's not a bug.


26003)
Variants: "Hard time"
Started: 2014.7.24, Ended: 2014.7.27
Participants: wil (S), SilentTitan (N)
Winner: wil



26038)
Variants: "Hard time"
Started: 2014.7.24, Ended: 2014.8.7
Participants: wil (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld B1 Y2 G3

2) wil: Homeworld B3 Y1 G3

3) TeeTeeTee: Build G1 Teeteetee

4) wil: Build G1 Wil

5) TeeTeeTee: Trade G1 Y1 Teeteetee
	wil: we been saying the rules should be a binary homeworld and then a large and a small of the same color to start....


6) wil: Trade G1 Y1 Wil
	TeeTeeTee: Might as well. I guess it's possible to start a game without a green star or ship, and trade for one on the first turn, but there isn't really any benefit from that at all.

7) TeeTeeTee: Build Y2 Teeteetee

8) wil: Build Y2 Wil

9) TeeTeeTee: Discover Y1 Teeteetee G3 Hammerfall
	wil: The only issue I see is if someone makes an extreme counter play to your opening...so extreme that you wish to change your ship prior to building your first small ship...  but yeah the typical opening requires G n B, Y n R are the options....and both have their reasoning...

10) wil: D Y1 Wil G2 G2

11) TeeTeeTee: Build Y3 Hammerfall

12) wil: Build Y3 G2
	TeeTeeTee: Just so you know, I'm going on holiday for the rest of the week - I'll be back before I time out, though.
	wil: poifect....I won't be badmouthin you then...hee hee tee tee

13) TeeTeeTee: Discover Y3 Hammerfall B2 Avantasia

14) wil: Discover Y1 G2 Y3 Y3

15) TeeTeeTee: Trade Y2 G2 Teeteetee

16) wil: Trade Y2 R2 Wil

17) TeeTeeTee: Sacrifice G2 Teeteetee
Build Y2 Hammerfall
Build Y2 Avantasia

18) wil: Build G1 Wil
	TeeTeeTee: Sorry! I know that an undo after a few minutes is a little cheeky, but, erm, I'd rather be slightly rude than lose the top ladder position on a blunder like that.

19) TeeTeeTee: Trade Y3 R3 Avantasia
	TeeTeeTee: ... on second thought, you don't have a winning move on this turn, after all. Sorry to mess you around :p
	TeeTeeTee: (I think)
	wil: whoa now...two things...first and formost I need a good blunder on your part to win...and second...in the physical game we have a move token...this thing misses setting the stage to review prior to deciding it is your final answer....so one undo is nothing...it should be unlimited..

20) wil: Build Y3 G2
	TeeTeeTee: Righto. In my mind, when I submit a turn, that's the online equivalent of passing the move token across, so I should have just let it go. 

I realised after submitting my last move that you could have sacrificed your y3 to move your g3 to my homeworld. From that position, there would have been nothing I could do to stop you from conquering my homeworld by sacrificing the r2 - but you'd have had no ships at your world, either. Guess you're after a win, and not a draw, then?

21) TeeTeeTee: Sacrifice Y2 Avantasia
Move Y1 Hammerfall G2
Move Y2 Hammerfall G2
Catastrophe G2 Yellow
	wil: a I am never after a draw...  and I can't abandon a home world to win or draw...that is a loss before the draw or win happens...  but b...   tis  a flaw in the system, the game is complex enough that you need to see it played out...and then decide if it is what you want to do.... with the configuration here...the undo is required..imo

22) wil: Trade G1 Y1 Wil

23) TeeTeeTee: Build G1 Teeteetee

24) wil: Build Y2 Wil
	wil: I dint think you'd pull that trigger!

25) TeeTeeTee: Trade G1 R1 Teeteetee

26) wil: Discover Y2 Wil G2 G2

27) TeeTeeTee: Trade R3 Y3 Avantasia
	TeeTeeTee: Yeah, I kind of had to, as I didn't want to be a large ship down. There's the blunder you were waiting on - I didn't expect you to build a y3 there because I could go a large ship up if you did. I'm now a large ship up, but definitely in a weaker position than you. Let's see if I can come back from this!

By the way, did you get my email, and find the time to have a look at it?

28) wil: Sacrifice G3 Wil
Build Y2 Y3
Build Y3 Wil
Build R1 Wil
	wil: hmmm email must've got in wrong box...will check...  and I need you to make bigger blunders.... but look G2 is back and building yellows is a thing again!!

29) TeeTeeTee: Move Y3 Avantasia Wil
Catastrophe Wil Yellow

30) wil: Build Y1 G2

31) TeeTeeTee: Build R1 Teeteetee

32) wil: Trade R2 G2 Wil
	wil: yeah, some how I was blinded to see that comin...face palm...  I'm so outta my league.


33) TeeTeeTee: Discover R1 Teeteetee Y3 Hevydevy

34) wil: Build G1 Wil

35) TeeTeeTee: Build R2 Teeteetee

36) wil: Build R2 Wil

37) TeeTeeTee: Trade G3 B3 Teeteetee

38) wil: Trade G1 Y1 Wil

39) TeeTeeTee: Discover R1 Teeteetee Y3 Apocalyptica

40) wil: Move R1 Wil Teeteetee

41) TeeTeeTee: Attack R1 Teeteetee
	wil: I must admit... I have no clue what is going on.

42) wil: Build R2 Wil
	wil: oh...I see

43) TeeTeeTee: Trade R2 G2 Teeteetee
	wil: I saw before the move...but don't yet really know who has the step ahead...probably you.

44) wil: Move R2 Wil Teeteetee

45) TeeTeeTee: Sacrifice R1 Teeteetee
Attack R2 Teeteetee
	TeeTeeTee: Until that last move, you were definitely ahead.
	TeeTeeTee: ... perhaps you still are.

46) wil: Move Y1 Y3 G2
	wil: hmmm...  I thought you had me by one step...

	wil: and still think you have me...

47) TeeTeeTee: Move B3 Teeteetee Wil

	wil: Well that was a strange one, nice game...thanx... 
	TeeTeeTee: Thanks for the game. Perhaps I was being too negative about my position, but I did feel like I was in trouble for most of that game. I reckon that "10. Trade y3 r3 Avantasia" was a major error on my part: as I said, I assumed you wouldn't build a large ship as I could destroy them both - but building that ship anyway meant I had the choice of being a large ship down or losing all my yellow ships.

Even after you made the mistake of letting me blow up your large ship and half your homeworld, I still didn't feel like I was winning: you had a total monopoly on yellows, far more ships than I did, and I couldn't just move my large ship to your homeworld without losing, then. If, at that point, I'd played carefully and just tried to acquire more ships, then you would have soon built large ships, I would still have had no yellow ships, and my last chance to attack would be gone. 

My only real chance of winning was to get an attack together before you acquired a large ship - and I was fortunate that it worked. I get the feeling that you could have acquired a large ship at some point somehow, though. Perhaps, on your last move, instead of moving that y1 to g2, you could have sacrificed the y1 at the star y3, and moved the y2 there to TeeTeeTee? On the next go, you could have sacrificed the g2 to build a y3 at wil (and a y1 at g2).

Still, I think you underestimate yourself at this game - and I think I underestimated you too! You played much better than me for the first half of the game. By the way, do you want me to resend you the email I wrote via PM?
	wil: The game is a blast.  Your circumventing my control of the yellows was awesome...we were neck and neck, I thought I had it for a minute, until you got my homeworld, and then I thought I had a chance with my red game to get to that big ship...you cut me off masterfully.   Yes please send the email via pm...I can't find it.
thx again for the lesson


26004)
Variants: "Hard time"
Started: 2014.8.4, Ended: 2014.8.7
Participants: a_magical_me (S), Marmalade (N)
Winner: a_magical_me



26068)
Started: 2014.8.4, Ended: 2015.4.17
Participants: ts52 (S), a_magical_me (N)
Winner: ts52

1) a_magical_me: Homeworld Y3 B1 G3

2) ts52: Homeworld Y1 B2 G3

3) a_magical_me: Build G1 A_magical_me
	ts52: Have a good game!
	a_magical_me: Thanks, you too

4) ts52: Build G1 Ts52

5) a_magical_me: Discover G1 A_magical_me B2 Pisces

6) ts52: Discover G1 Ts52 B3 Grover

7) a_magical_me: Build G1 Pisces

8) ts52: Build G2 Ts52

9) a_magical_me: Build G2 A_magical_me

10) ts52: Trade G2 Y2 Ts52

11) a_magical_me: Trade G1 Y1 Pisces

12) ts52: Move Y2 Ts52 Grover

13) a_magical_me: Discover G1 Pisces Y3 Orion

14) ts52: Build G1 Ts52

15) a_magical_me: Discover Y1 Pisces G3 Virgo

16) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Grover
Build G3 Ts52

17) a_magical_me: Move G1 Orion Ts52

18) ts52: Trade G1 R1 Ts52
	ts52: Sorry, _bad_ typo there

19) a_magical_me: Move G1 Ts52 Grover
Catastrophe Grover Green

20) ts52: Build G1 Ts52

21) a_magical_me: Build G1 A_magical_me
	a_magical_me: Nice try

22) ts52: Move G1 Ts52 Grover

23) a_magical_me: Discover G2 A_magical_me B2 Pyxis

24) ts52: Build R1 Ts52

25) a_magical_me: Trade G1 B1 A_magical_me

26) ts52: Build G1 Ts52

27) a_magical_me: Build B1 A_magical_me

28) ts52: Move R1 Ts52 Virgo

29) a_magical_me: Move Y1 Virgo Pyxis

30) ts52: Build R1 Ts52

31) a_magical_me: Move B1 A_magical_me Pyxis

32) ts52: Build R2 Ts52

33) a_magical_me: Build B2 Pyxis

34) ts52: Move R2 Ts52 Grover

35) a_magical_me: Trade B2 R2 Pyxis

36) ts52: Discover R1 Ts52 Y3 Bigbird

37) a_magical_me: Build B2 Pyxis

38) ts52: Sacrifice G3 Ts52
Build R2 Bigbird
Build R3 Ts52
Build R3 Grover

39) a_magical_me: Build R3 Pyxis

40) ts52: Sacrifice Y2 Grover
Move R1 Virgo Pyxis
Move R1 Bigbird Pyxis
Catastrophe Pyxis Red

41) a_magical_me: Build B3 A_magical_me

42) ts52: Move R2 Bigbird Pyxis

43) a_magical_me: Sacrifice B2 Pyxis
Trade B1 R1 A_magical_me
Trade B3 R3 A_magical_me

44) ts52: Sacrifice R2 Grover
Attack G2 Pyxis
Attack Y1 Pyxis

45) a_magical_me: Move R3 A_magical_me Pyxis

46) ts52: Sacrifice G2 Pyxis
Build R1 Pyxis
Build R2 Pyxis
Catastrophe Pyxis Red

47) a_magical_me: Build R1 A_magical_me

48) ts52: Build R2 Grover
	a_magical_me: Nice.

49) a_magical_me: Build R2 A_magical_me

50) ts52: Trade R2 Y2 Grover

51) a_magical_me: Sacrifice R1 A_magical_me
Attack Y1S Pyxis

52) ts52: Build R1 Grover

53) a_magical_me: Move R2 A_magical_me Pyxis

54) ts52: Move R3 Grover Pyxis

55) a_magical_me: Sacrifice G3 A_magical_me
Build R2 Pyxis
Build R2 Pyxis
Build R3 A_magical_me
Catastrophe Pyxis Red

56) ts52: Build R2 Grover

57) a_magical_me: Trade B1 G1 Pyxis

58) ts52: Move R2 Grover Pyxis

59) a_magical_me: Trade R3 G3 A_magical_me

60) ts52: Attack Y1 Pyxis

61) a_magical_me: Build R2 A_magical_me

62) ts52: Attack G1 Pyxis

63) a_magical_me: Discover R2 A_magical_me Y2 Andromeda

64) ts52: Build G2 Grover

65) a_magical_me: Build G2 A_magical_me

66) ts52: Sacrifice G2 Grover
Build R2 Pyxis
Build R3 Grover

67) a_magical_me: Sacrifice G2 A_magical_me
Build R3 Andromeda
Build G2 A_magical_me

68) ts52: Build G2 Grover

69) a_magical_me: Discover G2 A_magical_me B2 Hydra

70) ts52: Trade R1 B1 Ts52

71) a_magical_me: Trade R1 B1 A_magical_me

72) ts52: Discover B1 Ts52 G3 Kermit

73) a_magical_me: Move R3 Andromeda Kermit

74) ts52: Trade R3 B3 Grover

75) a_magical_me: Move B1 A_magical_me Andromeda

76) ts52: Move B3 Grover Andromeda

77) a_magical_me: Sacrifice G2 Hydra
Build B2 Andromeda
Build B3 Andromeda
Catastrophe Andromeda Blue

78) ts52: Build G2 Ts52

79) a_magical_me: Attack B1S Kermit

80) ts52: Discover G2 Ts52 G3 Oscar

81) a_magical_me: Trade R3 Y3 Kermit
	a_magical_me: Kaboom

82) ts52: Build G2 Pyxis

83) a_magical_me: Build B1 Kermit

84) ts52: Sacrifice G2 Oscar
Build G2 Pyxis
Build G3 Grover

85) a_magical_me: Move R2 Andromeda Kermit

86) ts52: Trade R2 B2 Pyxis

87) a_magical_me: Move B1 Kermit Ts52

88) ts52: Attack B1 Ts52

89) a_magical_me: Build B3 Kermit

90) ts52: Discover B1 Ts52 Y3 Bigbird

91) a_magical_me: Move B3 Kermit Pyxis
	a_magical_me: Sorry about the wait. Been busy.
	ts52: No worries.

92) ts52: Sacrifice G3 Grover
Build G3 Grover
Build B3 Bigbird
Build Y1 Grover

93) a_magical_me: Sacrifice R2 Kermit
Attack R2S Pyxis
Attack Y1S Pyxis

94) ts52: Sacrifice Y2 Grover
Move G2 Pyxis Bigbird
Move G2 Pyxis Bigbird

95) a_magical_me: Trade B3 R3 Pyxis

96) ts52: Sacrifice G3 Grover
Build G3 Grover
Build B3 Bigbird
Build Y2 Grover

97) a_magical_me: Attack B2S Pyxis

98) ts52: Discover B3 Bigbird R2 Elmo

99) a_magical_me: Sacrifice B2 Pyxis
Trade G3 R3 A_magical_me
Trade R3 G3 Pyxis

100) ts52: Trade B3 R3 Bigbird

101) a_magical_me: Build B2 Kermit

102) ts52: Build B3 Bigbird

103) a_magical_me: Attack G1S Pyxis

104) ts52: Move G2 Grover Elmo

105) a_magical_me: Sacrifice G3 Pyxis
Build G3 Pyxis
Build Y2 Pyxis
Build Y2 Kermit

106) ts52: S Y2 Grover
M G2 Bigbird Pyxis
M G2 Bigbird Pyxis
C Pyxis Green

107) a_magical_me: Discover Y2 Pyxis G3 Cancer

108) ts52: Build Y2 Grover
	ts52: sorry for the delay

109) a_magical_me: Move R2 Pyxis Kermit

110) ts52: Move Y2 Grover Elmo

111) a_magical_me: Build R1 Kermit

112) ts52: Build G1 Elmo

	a_magical_me: Hey, sorry for not finishing the game. I just want to say thanks for the game and congrats. I think it was pretty clear that you were the winner.
	ts52: No problem. Thanks for the game.


26084)
Variants: "Hard time"
Started: 2014.8.8, Ended: 2014.9.6
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3

2) SilentTitan: Homeworld B3 G2 Y3

3) wil: Build G1 Wil
	wil: I'm ready for a new lesson...

4) SilentTitan: Build Y1 Silenttitan

5) wil: B G1 Wil

6) SilentTitan: Trade Y1 G1 Silenttitan

7) wil: Trade G1 B1 Wil

8) SilentTitan: Build G1 Silenttitan

9) wil: Build B1 Wil

10) SilentTitan: Discover G1 Silenttitan Y1 Sol

11) wil: Trade G1 Y1 Wil

12) SilentTitan: Build G1 Sol

13) wil: Discover B1 Wil G3 G3

14) SilentTitan: Build G2 Silenttitan

15) wil: Build B2 G3

16) SilentTitan: Trade G2 B2 Silenttitan

17) wil: Trade B2 Y2 G3

18) SilentTitan: Build G2 Silenttitan

19) wil: Build G2 Wil

	wil: dang it!


26014)
Variants: "Unrated, Hard time"
Started: 2014.8.12, Ended: 2014.9.10
Participants: wil (S), TeeTeeTee (N), ts52 (E)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld B1 Y2 G3
	TeeTeeTee: Let's give this another try.

2) ts52: Homeworld Y1 B3 G3

3) wil: Homeworld B3 R2 G3

4) TeeTeeTee: Pass
	wil: No problemo!   But hey there top of the ladder, are you unaware of the star captain's code?

5) ts52: Build G1 Ts52
	TeeTeeTee: I am unaware of the `star captain's code' ... but I can make a guess of what you're getting at.

6) wil: Build G1 Wil

7) TeeTeeTee: Build G1 Teeteetee

8) ts52: Discover G1 Ts52 B2 Grover
	wil: lol, and your guess is?

	wil: Oh wow...I wondered what happenned!  You passed, you didn't have to do that...but quite honorable of you fearless leader!    And yes you just gave us junior officers a chance there..I guess maybe it is unwritten that the best player would not take banker...  too funny tho...  your are too honorable!

9) wil: Trade G1 Y1 Wil

10) TeeTeeTee: Trade G1 Y1 Teeteetee

11) ts52: Build G1 Grover

12) wil: Build G1 Wil

13) TeeTeeTee: Discover Y1 Teeteetee G3 B1

14) ts52: Trade G1 Y1 Grover
	wil: Look forward to this being my first multi player game to finish...


15) wil: Build Y2 Wil

16) TeeTeeTee: Build Y2 B1
	wil: I love it....calling a g3 a b1....too funny..

17) ts52: Build G1 Ts52

18) wil: Discover Y2 Wil R1 R1

19) TeeTeeTee: Discover Y1 B1 G2 Bigbird

20) ts52: Trade G1 R1 Ts52

21) wil: Trade G1 R1 Wil

22) TeeTeeTee: Build G1 Teeteetee

23) ts52: Build G1 Ts52

24) wil: Sacrifice G3 Wil
Build Y2 Wil
Build Y3 Wil
Build Y3 R1

25) TeeTeeTee: Trade G1 R1 Teeteetee

26) ts52: Build Y3 Grover

27) wil: Trade Y3 G3 Wil

28) TeeTeeTee: Build Y3 Bigbird

29) ts52: Trade Y3 R3 Grover

30) wil: Trade Y1 B1 Wil

31) TeeTeeTee: Build R2 Teeteetee

32) ts52: Build R2 Grover
	wil: It is funny, when I see that a move has been made in an HW game....  I never expect that it is this one that needs attention...  It is a completely different game though...  Cutthroat is right...  somewhere along the line, you gotta cut someone out...without making yourself vulnerable.

33) wil: Discover Y2 R1 B2 B2
	TeeTeeTee: Yeah, this game can be quite unforgiving at times. A few turns back, I was very tempted to build a y3 instead of trading for an r1, thinking that I could get away without a red ship for another turn. I noticed just in time, though, that I would have been knocked out immediately if I'd done that.

There's another element in the three-player game that isn't there in the two player-game: if it's in the players' interests (or at least they think it is), then they can work together to knock someone else out, as they have two attacking turns to the defender's one turn. Everyone has to guess: would they? (And wil: is it worth an r2 to find out? :P)

34) TeeTeeTee: Move R1 Teeteetee B1
	wil: exactamentary.....  and funny enough this is the fastest moving game I am currently in!

35) ts52: Discover R3 Grover Y3 Zoe

36) wil: Build G1 Wil
	TeeTeeTee: ts52: wil is going to sacrifice his g3 to build three yellow ships on the next turn. If you want to stop him having more large ships than you (and me), then you need to block off a large yellow, either by trading your r3 for a y3, or by discovering a y3 star.
	wil: Captain, received a transmission on SETI, evidently someone thinks we would risk losing our current fuel reserves by reducing our ability to build and simultaneously increasing our refining capacity....  our scientists looked at this and determined it wasn't worth the risk of a potential well site catastrophe which would destroy all reserves and exploration in one or more systems...  first contact and what are they thinking?

37) TeeTeeTee: Discover Y3 Bigbird B3 G3
	ts52: Ok Tee, you convinced me. Here's hoping I don't regret it.
	TeeTeeTee: Good call. If I was wil, I'd have definitely sacrificed the g3.

38) ts52: Sacrifice G3 Ts52
Build R2 Zoe
Build R3 Ts52
Build R3 Grover
	wil: cutthroat already...

39) wil: D Y3 R1 R3 R3

40) TeeTeeTee: Build R1 Teeteetee

41) ts52: Discover R2 Grover Y3 Bert

42) wil: Sacrifice G1 Wil
Build Y1 B2

43) TeeTeeTee: Build G1 Teeteetee

44) ts52: Trade R1 B1 Ts52

45) wil: B B1 Wil

46) TeeTeeTee: Trade R2 B2 Teeteetee

47) ts52: Move B1 Ts52 Grover

48) wil: Trade Y1 G1 B2

49) TeeTeeTee: Move B2 Teeteetee B1
	wil: I need to be in more games!!  my housemate is gone, no games going on at home to move...only in 3 others online...and this is the fastest!  challenge me!!

50) ts52: Build G2 Grover

51) wil: Sacrifice B1 Wil
Trade Y3 G3 R3
	TeeTeeTee: I very rarely play more than one Homeworlds game at a time...
	wil: As fast as they move, I used to like to keep 6-8 going....that way there was a move or two to make every day...

52) TeeTeeTee: Build B1 B1

53) ts52: Move G2 Grover Zoe

54) wil: B G2 Wil

55) TeeTeeTee: Move B2 B1 Bigbird

56) ts52: Move B1 Grover Zoe

57) wil: S G3 Wil
Build G2 B2
Build G3 Wil
Build Y1 Wil

58) TeeTeeTee: Sacrifice G3 Teeteetee
Build G3 Teeteetee
Build Y3 Bigbird
Build R1 Teeteetee

59) wil: Sacrifice Y2 Wil
Move G3 R3 Grover
Move G2 B2 Bert

60) TeeTeeTee: Sacrifice G3 Teeteetee
Build G3 Teeteetee
Build R2 B1
Build R3 Teeteetee
	TeeTeeTee: If I were you, wil, I would have sacrificed the g2 to build a y3 on your last move.
	wil: And that is why you are top dog!!  Thanx I missed that.  I don't take enough time on moves.
	wil: I was concentrating on slyly causing the eliminating of all the small ships and securing my fortress...

61) wil: Sacrifice R1 Wil
Attack R3E Grover
	TeeTeeTee: Damnit, ts52- just when things were about to get interesting...
	ts52: oh crap. sorry guys... things got hectic here and I lost track
	ts52: can we try again without hard time?
	ts52: looks like you can only specify one person to challenge. wil, if you join up, we can try again.
	TeeTeeTee: I'm sorry, but I won't play without hard time... perhaps we can try another three-player game later on, when things are less hectic.
	ts52: Ok, that's fair.
	wil: Dang it!  My record holds... can't complete a multi person game.

62) TeeTeeTee: Discover B2 Bigbird R1 Ts52e

63) wil: Sacrifice Y1 Wil
Move G3 Grover Ts52e

64) TeeTeeTee: Sacrifice Y3 Bigbird
Move B1 B1 Ts52e
Move B1 Ts52e Wil
Move B2 Ts52e Wil
Catastrophe Wil Blue

65) wil: Attack Y1E Grover

66) TeeTeeTee: Move R1 Teeteetee G3
	wil: I knew I shouldn't have sacked that single pip...  my fortress was strong....

	wil: well that is that.... I think I still way prefer the binary game...
	TeeTeeTee: Yes, I prefer binary too, but I did enjoy this game: Ternary Homeworlds plays very differently to binary. There's a much greater degree of guessing each players' intentions and working out whether it's in players' interests to collude or not. There were instances in that game when two players could have caused serious damage to a third, if they could work together - but there was no guarantee that the player you were working with would do what you expected... 

Also, nobody wanted to start attacking because the third player would continue to acquire ships while the other two were sparring. (For my part, I noticed that by sacrificing and discovering a y1 world, I could be in a position to attack your homeworld - but doing this would quite likely have put ts52 at an advantage. I couldn't see any obvious way to attack ts52's homeworld.)

It was surprising just how quickly the game changed once ts52 timed out, though. Once ts52 was out, there were lots of free large ships to claim, and no reason to not attack... 
	wil: There is another method where you can only attack to the left...keeps folks from ganging up...hmmm I wonder if it also allows one to use the stars to the right...interesting...


26016)
Variants: "Hard time"
Started: 2014.8.12, Ended: 2014.8.13
Participants: wil (S), anonfunc (N)
Winner: anonfunc

1) anonfunc: Homeworld B1 R3 G3
	anonfunc: Hi!  I've played HW a few times physically, but not yet on SDG.

2) wil: Homeworld B3 Y2 G3

3) anonfunc: Build G1 Anonfunc
	wil: Very cool... you can't straigten ou the universe but you can play.  It is often best to set up a mock set hat home when it gets compilcated.  Where are you from?  How did you find the game?
	anonfunc: I'm in California (Bay Area), and came to the pyramids via BGG

4) wil: Build G1 Wil
	anonfunc: Wow, looks like we've been playing wrong in person.  I thought I should have been able to build a B1 at home, but couldn't.

5) anonfunc: Trade G1 B1 Anonfunc
	wil: very cool, I used to live near tahoe and visit my sister in SF...
	wil: ah...yes you can only build the color that you already have in your star system (need blue to build a blue)  Hence the reason you have to have a blue and green in your homeworld otherwise you can't build or change
	wil: It takes a while to build when you have to keep changing colors...you had faster games

6) wil: Trade G1 B1 Wil
	anonfunc: How about yourself?  You've been doing the pyramid thing for a while, if I'm not mistaken.

7) anonfunc: Build B2 Anonfunc

8) wil: Build B2 Wil
	wil: I like the game, I've played since last march...I've played a lot, I like to keep 5 or more games going at one...I lost a lot to learn, keep getting beat by new strategies, keep making same mistakes....  just looked...played 147, won 83, 56%

9) anonfunc: Trade B2 Y2 Anonfunc
	wil: *once

10) wil: Discover B2 Wil Y1 Y1

11) anonfunc: Discover Y2 Anonfunc G2 Green

12) wil: Build B2 Wil
	wil: You name your new stars whatever you want...I tend to keep it simple.
	wil: You name your new stars whatever you want...I tend to keep it simple.

13) anonfunc: Build Y1 Green

14) wil: Sacrifice G3 Wil
Build B2 Y1
Build B3 Y1
Build B3 Wil

15) anonfunc: Move Y1 Green Anonfunc
Catastrophe Wil B
	anonfunc: Thanks for the game!
	wil: what did I do?  overpopulate myself?  What was I thinkin?
	wil: too funny....
	wil: I'd say I committed suicide on that game....but I wouldn't want to make light of Mork.



26040)
Variants: "Hard time"
Started: 2014.8.12, Ended: 2014.8.15
Participants: SilentTitan (S), anonfunc (N)
Winner: anonfunc

1) anonfunc: Homeworld B1 R2 G3
	anonfunc: Hi!  I've played a few times physically, but am just getting started with SDG.



26070)
Started: 2014.8.12, Ended: 2014.8.12
Participants: ts52 (S), pinkpan (N)
Winner: ts52

	pinkpan: Sorry, this was a mistake.


26067)
Variants: "Hard time"
Started: 2014.8.13, Ended: 2014.8.13
Participants: peterh58 (S), Marmalade (N)
Winner: Marmalade



26103)
Variants: "Hard time"
Started: 2014.8.13, Ended: 2014.8.16
Participants: Marmalade (S), peterh58 (N)
Winner: peterh58

1) peterh58: Homeworld G1 B2 R3
	peterh58: My first online Homeworlds game, so be patient!




26102)
Started: 2014.8.13, Ended: 2014.8.21
Participants: anonfunc (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y2 B3 G3

2) anonfunc: Homeworld Y1 B2 G3

3) ts52: Build G1 Ts52

4) anonfunc: Build G1 Anonfunc

5) ts52: Discover G1 Ts52 B1 Gonzo

6) anonfunc: Discover G1 Anonfunc B3 Blue

7) ts52: Build G1 Ts52

8) anonfunc: Build G2 Anonfunc

9) ts52: Trade G1 Y1 Gonzo

10) anonfunc: Trade G1 Y1 Blue

11) ts52: Move G1 Ts52 Gonzo

12) anonfunc: Sacrifice G2 Anonfunc
Build Y2 Blue
Build G1 Anonfunc

13) ts52: Build Y2 Gonzo

14) anonfunc: Trade Y2 G2 Blue

15) ts52: Build G1 Ts52

16) anonfunc: Discover G1 Anonfunc G3 Green

17) ts52: Trade Y2 R2 Gonzo

18) anonfunc: Build G2 Anonfunc

19) ts52: Move R2 Gonzo Green

20) anonfunc: Sacrifice G2 Blue
Build G2 Green
Build G2 Green
Catastrophe Green G

21) ts52: Build Y2 Gonzo

22) anonfunc: Trade G2 R2 Anonfunc

23) ts52: Trade Y2 R2 Gonzo

24) anonfunc: Build G1 Anonfunc

25) ts52: Build Y2 Gonzo

26) anonfunc: Move G1 Anonfunc Blue

27) ts52: Move R2 Gonzo Blue

28) anonfunc: Build G2 Anonfunc

29) ts52: Attack Y1 Blue

	anonfunc: Don't see a way out of this.  Thanks for the game!
	ts52: Fair enough. Thanks for the game.


26100)
Variants: "Hard time"
Started: 2014.8.13, Ended: 2014.8.16
Participants: anonfunc (S), wil (N)
Winner: wil

1) wil: Homeworld R3 B1 G3

2) anonfunc: Homeworld Y1 B2 G3
	wil: thanx for the rematch...lets see what mistakes I can make this time!  Nave ya joined the ladder yet?  It takes a while to work thru the dead wood.

3) wil: Build G1 Wil
	anonfunc: I didn't opt-in to anything, but it did print out some rank numbers on the last game

4) anonfunc: Build G1 Anonfunc

5) wil: Trade G1 B1 Wil

6) anonfunc: Discover G1 Anonfunc B3 Blue
	wil: Yeah, I've actually only played HW here...but and it will record your games and ranking based on play....but there is a ladder to compete for position that is separate... 
	wil: Yeah, I've actually only played HW here...but and it will record your games and ranking based on play....but there is a ladder to compete for position that is separate... 
	anonfunc: Gotcha.  It's nice in person... the games run about 30-40 minutes for us, and there's some good heckling around mistakes.

7) wil: Build B1 Wil
	wil: I agree.... in person is great (and now you have a twist you missed, only growing ships you already have)  And playing with a chess clock you can make it a ten minute game and multiply the mistakes, increase the learning...

8) anonfunc: Build G1 Blue

9) wil: Build G1 Wil

10) anonfunc: Trade G1 Y1 Blue

11) wil: Trade G1 Y1 Wil

12) anonfunc: Build Y2 Blue

13) wil: Build Y2 Wil

14) anonfunc: Trade Y2 B2 Blue

15) wil: Trade B1 R1 Wil

16) anonfunc: Build Y2 Blue

17) wil: Discover Y2 Wil G2 G2

18) anonfunc: Build G1 Anonfunc

19) wil: Build Y2 G2

20) anonfunc: Discover B2 Blue G2 Green

21) wil: Move Y2 G2 Blue

22) anonfunc: Sacrifice G3 Anonfunc
Build G1 Blue
Build G2 Blue
Build G3 Anonfunc

23) wil: Sacrifice G3 Wil
Build Y3 Wil
Build Y3 G2
Build Y3 Blue
Catastrophe Blue Y

24) anonfunc: Sacrifice G3 Anonfunc
Build G3 Anonfunc
Build G3 Anonfunc
Build B1 Green
	wil: well I made it past 8 moves...that's progress!!

25) wil: Trade Y3 G3 Wil
	anonfunc: :-D

26) anonfunc: Sacrifice B2 Green
Trade B1 R1 Green
Trade G3 Y3 Anonfunc

27) wil: Build G3 Wil

28) anonfunc: Build R1 Green

29) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 Wil
Build Y2 Wil

30) anonfunc: Sacrifice Y3 Anonfunc
Move R1 Green Wil
Move R1 Green Wil
Discover G1 Blue B2 Bluish
Catastrophe Wil Red

31) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build Y2 G2

32) anonfunc: Trade G1 B1 Anonfunc
	wil: I was considering moving the red out...I thought the loss was too great to lose all your red and your Y3, that the reboot at that time would leave me with even more advantage...it appears it did dang interesting universe right now...
	anonfunc: I'm a sucker for the easy catastrophes, but I'm too close to being locked out of yellow.

33) wil: Sacrifice Y2 G2
Move Y3 G2 Blue
Discover G3 Wil Y3 Y3

34) anonfunc: Trade G2 Y2 Blue

35) wil: Trade Y1 R1 Wil

36) anonfunc: Trade B1 R1 Anonfunc
	wil: whew barely escaped disaster....once I looked at that oh my...

37) wil: Trade G2 R2 Wil

38) anonfunc: Sacrifice G3 Anonfunc
Build R1 Anonfunc
Build R2 Anonfunc

Build Y1 Blue
	anonfunc: Hmm.  Just saw something I hadn't thought of...
	wil: I thought you were gonna sack your yellow and move all the way in...  I think I still had a step on you though.
	wil: this is a 'red alert'  Unless you get a red ship, I'm moving my Y3 into your homeworld and will take it over...   

	wil: You may back up your move and try another 
	anonfunc: Thanks for the warning!

	anonfunc: Yep, dead.  Good game!
	wil: thank you for the game...don't hesitate to challenge me again...  I've played as many as three games with the same person simultaneously....funny how different they all are...look forward to another.


26105)
Variants: "Hard time"
Started: 2014.8.15, Ended: 2014.9.13
Participants: peterh58 (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3
	peterh58: homeworld G1 B2 R3

2) peterh58: Homeworld G1 B2 R3
	wil: you can make your move now...do you play the physical game with pyramids?

	wil: thank you for the game!!
	peterh58: homeworld G1 B2 R3

3) wil: Build G1 Wil
	peterh58: Oops, I see now.

	peterh58: I've played a couple of times with my pyramids, but find it difficult to persuade people to play. I think it's a very cool game though.


4) peterh58: Build R1 Peterh58
	wil: Chess players are the best...they already have the mindset for this kind of game... and I like it better....
	wil: You switched from fortress to banker I see...

5) wil: Build G1 Wil
	peterh58: Fortress to banker? Not familiar with the jargon... I'm clearly doomed already  :)


6) peterh58: Trade R1 Y1 Peterh58
	wil: Well not doomed but you did provide me the early advantage.  
	wil: the starting HWs  Banker 2/1 stars in homeworld allowing you to build 'investments' of 3 pip stars which by sacrificing green ships can become your own later in the game...    Fortress is 3/2 pip homeworld because 1 pips often get used up in the game if played correctly you've got a 1 pip mote that is hard to penetrate.  Mine 3/1 hw, is goldilocks...no strategy...just not big, not small for first stars to access...  
	peterh58: Flip. There's clearly a lot to think about! I must have a hunt round for strategy articles...


7) wil: Discover G1 Wil B2 B2

8) peterh58: Build Y1 Peterh58
	wil: where abouts you from? how did you find the pyramids?

	peterh58: I'm in Oxford UK. I bought Zendo many years ago from my FLGS. I love the "open source" nature of the pyramid games.


9) wil: Build G2 B2
	wil: lol...zendo was also my introduction!   My daughter bought it.   

10) peterh58: Discover Y1 Peterh58 G3 Deneb

11) wil: Sacrifice G3 Wil
Build G2 B2
Build G2 Wil
Build G3 Wil

12) peterh58: Trade R3 G3 Peterh58

13) wil: T G2 Y2 B2
	peterh58: Oof! That was effective!

14) peterh58: Build Y2 Deneb

15) wil: Trade G2 R2 B2
	wil: That is called a factory....any time you have a large G3 and another green you've built yourself a factory....the factory doesn't go into operation though until you can sac your G3 to build 3 and actually get a 3 back...(so the bank has to be out of green or low on green.)

16) peterh58: Trade G3 R3 Peterh58

17) wil: Trade G2 R2 Wil

18) peterh58: Build R1 Peterh58

19) wil: Build G2 B2

20) peterh58: Move R1 Peterh58 Deneb

21) wil: Trade G2 B2 B2

22) peterh58: Build R1 Deneb
	peterh58: I should have given myself a shorter name, saved on typing!

	wil: lol.... I think some folks name their new star systems long convuluted names just to keep folks from attacking...

23) wil: Build G2 B2
	peterh58: Haha! That's mean.

24) peterh58: Discover Y1 Deneb G2 Vega

25) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build G3 B2

26) peterh58: Build Y2 Vega

27) wil: Discover G3 B2 Y3 Y3
	peterh58: I get it (too late). I can't take advantage of your green buildup, as you now have the monopoly.

28) peterh58: Build Y3 Deneb

29) wil: Build Y3 B2
	wil: Yes you don't want anyone to get a monopoly in any economy.

30) peterh58: Move Y3 Deneb Peterh58

31) wil: Move Y3 B2 Deneb

32) peterh58: Move Y1 Peterh58 Y3

33) wil: Sacrifice R2 B2
Attack Y1 Y3
Attack Y2 Deneb

34) peterh58: Build R1 Peterh58

35) wil: Trade G2 R2 B2

36) peterh58: Move Y1 Vega Deneb

37) wil: Sacrifice G3 Wil
Build G2 B2
Build R2 Wil
Build G3 Wil

38) peterh58: Build R3 Deneb

39) wil: Sacrifice Y2 Deneb
Move Y3 Deneb Vega
Move R2 B2 Deneb
Catastrophe Deneb R

40) peterh58: Trade R1 B1 Peterh58

41) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Wil
Build Y2 B2
	peterh58: Darn! Only one undo...

42) peterh58: Move B1 Peterh58 Deneb
	wil: One is sometimes better than none...but not always...

43) wil: Move Y2 B2 Deneb

44) peterh58: Build B1 Deneb

45) wil: Sacrifice R2 Wil
Attack Y2 Vega
Attack B1 Deneb

46) peterh58: Build R1 Peterh58

47) wil: Move B2 B2 Y3

48) peterh58: Sacrifice R1 Peterh58
Attack B1N Deneb

49) wil: Sacrifice R2 Wil
Attack B1 Deneb
Attack Y1 Deneb

50) peterh58: Build R1 Peterh58

51) wil: Trade Y2 R2 Deneb

52) peterh58: Build Y2 Peterh58
	wil: If I were a better player this would probably be over... The mass of pieces I have against you should have created victory long ago...but alas..all I seem to be doing is building an army at your border...
	peterh58: Well, yes, I am feeling a bit outnumbered!


53) wil: Sacrifice Y2 Vega
Move Y1 Deneb Peterh58
Move Y1 Y3 Peterh58
Catastrophe Peterh58 Y

54) peterh58: Build B1 Deneb

55) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 Y3
Build B3 Y3

56) peterh58: Trade B1 Y1 Deneb
	wil: the end is near...

	wil: where are you out of?  I am east coast, near DC.
	peterh58: Ouch! 
I'm in Oxford, England, I work as a neuroscientist. How about you?


57) wil: Attack Y1 Deneb
	wil: I was just asked to ask if Thirsty Meeples (?) has a set yet?  NeuroScientist...  wow.  Construction Manager..

58) peterh58: Trade R1 Y1 Peterh58

59) wil: Sacrifice Y3 Vega
Move B3 Y3 Peterh58
Move B3 Y3 Peterh58
Move G3 Y3 Peterh58
	peterh58: They might have a Zendo set, I'll look out for it when I'm next in there. Have you heard of Thirsty Meeples over there then?
	wil: lol, i was thinking he was talkin about a mutual friends screen/ nickname...

60) peterh58: Build Y2 Peterh58
	peterh58: Ah, OK. Thirtsy Meeples is this excellent games cafe in Oxford.


61) wil: Sacrifice R2 Deneb
Attack R3 Peterh58
Attack Y2 Peterh58
	wil: Well then, they need to get a set of pyramids

62) peterh58: Build Y2 Peterh58
	wil: I look forward to playing with you again... please challenge me however many times you wish...
	peterh58: build y2 peterh58

63) wil: Sacrifice G3 Wil
Build Y3 Peterh58
Build B1 Peterh58
Build Y3 Deneb
Catastrophe Peterh58 Y
Catastrophe Peterh58 B


	peterh58: Thanks, I will read the strategy wiki and try to do better next time!

	peterh58: I played another pyramid game last weekend, World War 5. It was great fun. Have you tried it?
	wil: ten times better than risk!
	wil: I lost about half of my games of homeworlds...  by doing so I've watched the strategies that come at me... yet there are still folks who beat me everytime (but they are getting fewer) 



26104)
Variants: "Hard time"
Started: 2014.8.16, Ended: 2014.8.19
Participants: Marmalade (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3



26150)
Variants: "Hard time"
Started: 2014.9.4, Ended: 2014.9.28
Participants: TeeTeeTee (S), TwoShort (N)
Winner: TeeTeeTee

1) TwoShort: Homeworld R1 B3 G3
	TeeTeeTee: I was hoping that you'd challenge me! Have a good game.

2) TeeTeeTee: Homeworld B1 R2 G3

3) TwoShort: Build G1 Twoshort

4) TeeTeeTee: Build G1 Teeteetee

5) TwoShort: Trade G1 B1 Twoshort

6) TeeTeeTee: Trade G1 R1 Teeteetee
	wil: Do I get to get beat by the winner or loser?
	TeeTeeTee: I'll accept a challenge after this game, if you like... but I think it might be more appropriate for you to wait a bit and not make a ladder challenge, this time. You've avoided being challenged on the ladder before by immediately re-challenging someone as soon as you've lost a game, so nobody lower down on the ladder ever has the opportunity to play you: I only got the chance to challenge you once before due to a glitch in the system.

Also, please ask peterh58 if the Thirsty Meeples has a pyramid set. :P

7) TwoShort: Build B1 Twoshort
	wil: I'm on the third rung like a sitting duck until this game concludes!   So I'll be right here in the spectator stands..

8) TeeTeeTee: Build R1 Teeteetee

9) TwoShort: Trade B1 Y1 Twoshort

10) TeeTeeTee: Trade R1 Y1 Teeteetee

11) TwoShort: Build B1 Twoshort

12) TeeTeeTee: Build R1 Teeteetee

13) TwoShort: Discover B1 Twoshort G2 Grogar

14) TeeTeeTee: Discover R1 Teeteetee B3 Edinburgh

15) TwoShort: Build B2 Grogar

16) TeeTeeTee: Sacrifice G3 Teeteetee
Build R2 Edinburgh
Build R2 Edinburgh
Build R3 Teeteetee

17) TwoShort: Trade B1 Y1 Grogar

18) TeeTeeTee: Sacrifice Y1 Teeteetee
Move R2 Edinburgh Grogar

19) TwoShort: Sacrifice Y1 Grogar
Discover B2 Grogar R3 Rover

20) TeeTeeTee: Trade R3 G3 Teeteetee

21) TwoShort: Build B1 Twoshort

22) TeeTeeTee: Build R3 Teeteetee

23) TwoShort: Discover B1 Twoshort B2 Borbor

24) TeeTeeTee: Trade R3 Y3 Teeteetee

25) TwoShort: Sacrifice G3 Twoshort
Build B2 Borbor
Build B3 Twoshort
Build Y1 Twoshort

26) TeeTeeTee: Move G3 Teeteetee Rover

	TeeTeeTee: Thanks for the game
	TeeTeeTee: May I ask, did you unintentionally run out of time here, or was that a tacit resignation?
	TwoShort: Whoops, sorry.  I meant to resign intentionally.  I kept coming back looking for a decent move, but there isn't one.   Good game.


26110)
Started: 2014.9.13, Ended: 2014.11.13
Participants: ts52 (S), wil (N)
Winner: ts52

1) wil: Homeworld Y3 B1 G3

2) ts52: Homeworld B2 Y3 G3

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52
	wil: I gotta go on a serious effort to recruit homeworlds players to this site... I need to play more!!
	ts52: You know homeworlds players not on this site?

5) wil: Trade G1 B1 Wil
	wil: I am just starting to teach neighbors...but I have three players that I play live games with occasionally now.  I like this because when you are waiting for a train, or appt, you can make moves and check out the games...(like the game, not the format) 

6) ts52: Trade G1 B1 Ts52

7) wil: Build B2 Wil
	ts52: Nice that you have local players. This is the only way I get to play these days.

8) ts52: Discover B1 Ts52 G1 Kermit
	wil: Got to play again today...teachin nieghbors


9) wil: Trade B1 R1 Wil

10) ts52: Build B1 Kermit

11) wil: Build R1 Wil

12) ts52: Trade B1 R1 Kermit

13) wil: Build R2 Wil

14) ts52: Build R2 Kermit

15) wil: Discover R2 Wil G2 G2

16) ts52: Build G1 Ts52

17) wil: Trade R1 Y1 Wil

18) ts52: Trade R2 Y2 Kermit

19) wil: Build Y1 Wil

20) ts52: Build B1 Kermit

21) wil: Move B2 Wil G2

22) ts52: Discover B1 Kermit G2 Oscar

23) wil: Move Y1 Wil G2

24) ts52: Trade G1 R1 Ts52

25) wil: Build R2 G2

26) ts52: Build G1 Ts52

27) wil: T R2 Y2 G2

28) ts52: Build R2 Kermit

29) wil: D Y2 G2 G1 G1

30) ts52: Move R2 Kermit Oscar

31) wil: Build Y1 G2

32) ts52: Sacrifice G3 Ts52
Build R2 Kermit
Build R3 Ts52
Build R3 Oscar

33) wil: B R3 G2

34) ts52: Sacrifice Y2 Kermit
Move R1 Kermit G2
Move R2 Kermit G2
Catastrophe G2 Red

35) wil: Sacrifice G3 Wil
Build Y2 G2
Build Y2 G1
Build Y3 Wil

36) ts52: Build G2 Ts52
	ts52: Well that's unfortunate. Well played

37) wil: Discover Y2 G2 G3 G3

38) ts52: Build G3 Ts52

39) wil: Discover Y2 G1 B3 B3
	wil: I was avoiding what I was afraid of and moved from the wrong star!!!   I thought you'd move your big red gun in and take one of my Y2s...

40) ts52: Discover G3 Ts52 R1 Elmo

41) wil: Move R1 Wil G2

42) ts52: Sacrifice G2 Ts52
Build G2 Elmo
Build G3 Ts52

43) wil: Build R2 G2

44) ts52: Sacrifice G3 Ts52
Build B2 Oscar
Build B3 Oscar
Build B3 Kermit
	wil: Is it possible I will have my first stalemate as we hold our control by stubbornly refusing to lose our monopolies and begin to pass?

45) wil: Sacrifice Y2 B3
Move R1 G2 G1
Move R1 G1 Ts52

46) ts52: Trade R3 G3 Ts52

47) wil: Build R2 G2

48) ts52: Trade B2 Y2 Oscar

49) wil: Discover Y1 Wil B2 B2

50) ts52: Attack R1 Ts52
	wil: why did I let you have a yellow??  I would never win, but I assurred a stalemate..


51) wil: Move R2 G2 G1

52) ts52: Move R3 Oscar G3

53) wil: Move Y2 G3 B2

54) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Oscar
Build R3 G3

55) wil: Discover Y1 G2 B3 B3

56) ts52: Move R3 Oscar G1
	wil: the struggle is real

57) wil: Sacrifice Y2 G1
Discover R2 G1 Y2 Y3
Move R2 G2 B3
	ts52: Wow, maximum utilization. I'm impressed... now what? :)
	wil: my only choice since my early mistakes was to attempt to force a stalemate by you not being able to move...it is still my only choice...you have not made a mistake that I found to capitalize on...

	wil: I am outnumbered...out gunned... are ties possible in this format?  If not....I guess I should resign as you clearly have and have had the advantage.
	wil: I am thinking you finish me off by sacking your only yellow and moving two big guns into two different systems....and taking over ships...I don't know where that leads for sure though...


58) ts52: Move Y2 Oscar G3
	wil: yeah, that is better... don't think I can squirm out of this.

	wil: yeah, that is better... don't think I can squirm out of this.

	ts52: It seems unlikely, but I've certainly screwed up before.

59) wil: Pass

60) ts52: Move R3 G3 G2

61) wil: Sacrifice Y1 G2
Discover B2 G2 Y1 Y1
	wil: It has now gone past borderline ridiculous...I am a mouse without much life, that the cat is just toying with...

62) ts52: Sacrifice G3 Elmo
Build G3 Ts52
Pass
Pass

63) wil: Pass

64) ts52: Move G3 Ts52 Y1

65) wil: Sacrifice Y2 B2
Discover B2 Y1 Y2 Y2
Pass

66) ts52: Sacrifice G3 Y1
Build G3 Elmo
Build Y1 G3
Pass

67) wil: Pass
	wil: look at the armada of ships you have my galaxy is surrounded...

68) ts52: Move Y1 G3 Kermit

69) wil: Pass

70) ts52: Move Y1 Kermit Oscar

71) wil: Move R2 B3 Y3
	wil: Fought on 2nd August, 216 BC, it was one of the major battles of Second Punic War. It took place in the town of Cannae in Italy. The army of Cathage, very easily defeated a numerically greater army of the Romans. The most significant fact associated with the battle is that more than 80% of the losing side was captured or killed by the army of Cathage under the leadership of legendary Hannibal.

72) ts52: Move B3 Oscar Wil

73) wil: Sacrifice R2 Y3
Attack B3 Wil
Pass

74) ts52: Build R2 G3

75) wil: Pass

76) ts52: Sacrifice Y2 G3
Move B3 Kermit Oscar
Move B3 Oscar Wil

77) wil: Move B2 Y2 Wil
Catastrophe Wil B
	wil: I'm gonna resign at 40....I'll have drug it out long enough...funny freakin game this one was.

78) ts52: Build Y2 Oscar
	ts52: :) This has definitely been a unique game.

79) wil: Pass

80) ts52: Sacrifice Y1 Oscar
Move G3 Elmo Wil

81) wil: Sacrifice R2 Y3
Attack G3 Wil
Pass
	wil: hee hee

82) ts52: Sacrifice Y2 Oscar
Move R3 G1 Wil
Move R3 G2 Wil

83) wil: Sacrifice G3 Wil
Build Y1 Wil
Build Y2 Wil
Build Y2 B2
Catastrophe Wil Y

	wil: now then, that doesn't look near as bad as it did a while ago....  beatin me up all over the board you are!
	ts52: :) Well played. Thanks for the game!
	wil: the game is supposed to not allow you to commit suicide... I get away with it every now and then...I believe this ranks amongst the weirdest games i've played (mostly my fault)
	ts52: Definitely one of the strangest games I've every played too.


26200)
Variants: "Hard time"
Started: 2014.9.14, Ended: 2014.9.18
Participants: goulo (S), Aristos (N)
Winner: goulo

1) Aristos: Homeworld G3 B2 Y3

2) goulo: Homeworld R3 B1 G3
	Aristos: The great Aristos Empire celebrates the launching of its first interstellar vessel. Scientists eagerly debate what sort of creatures we will find in the depths. Theologians debate whether they will share our mythos. Chefs debate whether they will be tasty.

3) Aristos: Build Y1 Aristos
	goulo: happy exploration!

4) goulo: Build G1 Goulo

5) Aristos: Discover Y1 Aristos B1 Spark

6) goulo: Trade G1 Y1 Goulo

7) Aristos: Discover Y1 Spark G2 Flash

8) goulo: Build G1 Goulo

9) Aristos: Build Y1 Aristos

10) goulo: Build Y2 Goulo

11) Aristos: Build Y2 Flash

12) goulo: Trade Y2 R2 Goulo

13) Aristos: Trade Y1 B1 Aristos

14) goulo: Move R2 Goulo Flash

15) Aristos: Sacrifice Y1 Flash
Discover Y2 Flash R3 Refuge
	Aristos: "Captain! Aliens! We've never seen another species before!" 
"What a wonderful opportunity! Open hailing frequencies!"
"Sir! They appear to be hostile!"
"WHAT? Just attacking without greeting? By the gods, we shall remember this. Let us withdraw for now."

16) goulo: Build Y1 Goulo

17) Aristos: Build B1 Aristos
	goulo: "Wait, they weren't hostile. They just had their ship painted red."

18) goulo: Move Y1 Goulo Flash
	Aristos: Diplomats have patched relations for the moment, but the leadership of the Aristos Empire remains wary.

19) Aristos: Trade B1 G1 Aristos

20) goulo: Discover R2 Flash Y1 Citroneto

21) Aristos: Trade G1 R1 Aristos
	Aristos: "You gave what command to our troops, Captain?!?!?!"
"Don't worry, General... the Edit Universe Project was a success."

22) goulo: Build Y2 Flash

23) Aristos: Build R1 Aristos

24) goulo: Sacrifice G3 Goulo
Build Y2 Flash
Build Y3 Goulo
Build Y3 Goulo

	Aristos: good game
	goulo: thanks!


26106)
Variants: "Hard time"
Started: 2014.9.15, Ended: 2014.9.20
Participants: wil (S), jotarp (N)
Winner: wil

1) jotarp: Homeworld G1 B2 Y3

2) wil: Homeworld B3 G1 G3 *

	wil: Thank you for the game!   First time playing homeworlds?


26223)
Variants: "Hard time"
Started: 2014.9.18, Ended: 2014.12.6
Participants: dlwillson (S), SilentTitan (N)
Winner: dlwillson

1) SilentTitan: Homeworld R1 B2 G3

2) dlwillson: Homeworld Y1 B3 G3

3) SilentTitan: Build G1 Silenttitan
	dlwillson: You thought you'd never see me again, didn't you?

Well, I remembered my password!

Actually, I didn't, but the reminder thing finally worked. :-)
	SilentTitan: What r u on about?  I saw you at tacticon!

4) dlwillson: Build G1 Dlwillson

5) SilentTitan: Trade G1 Y1 Silenttitan
	dlwillson: Ha! Take that! You *never* would've guessed I'd do that, would you?

Enough of my silliness... It's good to be back.

6) dlwillson: D G1 Dlwillson B2 Smurf

7) SilentTitan: Build Y1 Silenttitan

8) dlwillson: B G1 Dlwillson

9) SilentTitan: Build Y2 Silenttitan

10) dlwillson: Trade G3 Y3 Dlwillson

11) SilentTitan: Sacrifice Y2 Silenttitan
Discover Y1 Silenttitan G3 Sol
Discover Y1 Sol G2 Soul

12) dlwillson: Build G1 Dlwillson

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Soul
Build Y2 Soul
Build Y2 Silenttitan

14) dlwillson: Move Y3 Dlwillson Soul
Catastrophe Soul Y

15) SilentTitan: Trade Y2 G2 Silenttitan
	SilentTitan: Funny looks like I should have six ships out of those builds

16) dlwillson: Build G2 Smurf

17) SilentTitan: Build Y1 Silenttitan

18) dlwillson: T G2 Y2 Smurf

19) SilentTitan: Build Y2 Silenttitan

20) dlwillson: B G2 Dlwillson

21) SilentTitan: Discover Y1 Silenttitan G3 Sol

22) dlwillson: D G1 Dlwillson B2 Sky

23) SilentTitan: Discover Y1 Silenttitan G3 Soul

24) dlwillson: D Y2 Smurf G3 Turf

25) SilentTitan: Sacrifice G2 Silenttitan
Build Y2 Sol
Build Y3 Silenttitan
	dlwillson: drat

26) dlwillson: Build Y3 Turf

27) SilentTitan: Trade Y2 G2 Silenttitan

28) dlwillson: S Y2 Turf
D G1 Smurf Y3 Sunny
D G2 Dlwillson Y2 Golden

29) SilentTitan: Sacrifice Y2 Sol
Move Y1 Sol Sky
Move Y1 Sky Dlwillson

30) dlwillson: Sacrifice G2 Golden
Build Y2 Turf
Build Y2 Turf

31) SilentTitan: Trade Y1 R1 Dlwillson

32) dlwillson: B G2 Dlwillson

33) SilentTitan: Attack G1 Dlwillson South

34) dlwillson: Sacrifice Y2 Turf
Move Y3 Turf Sky
Move Y3 Sky Dlwillson

35) SilentTitan: Build R1 Dlwillson

36) dlwillson: Trade G2 R2 Dlwillson

37) SilentTitan: Sacrifice G2 Silenttitan
Build G2 Dlwillson
Build G2 Dlwillson

38) dlwillson: Sacrifice R2 Dlwillson
Attack G2 Dlwillson
Attack G2 Dlwillson

39) SilentTitan: Build G2 Dlwillson
Catastrophe Dlwillson Green

40) dlwillson: Build G1 Sunny

41) SilentTitan: Trade R1 Y1 Dlwillson

42) dlwillson: Trade Y3 G3 Dlwillson

43) SilentTitan: Move R1 Dlwillson Sky

44) dlwillson: Sacrifice G1 Sky
Build G1 Sunny

45) SilentTitan: Build Y2 Soul
	dlwillson: You're really quite good at this game. It's very satisfying to play against you.

46) dlwillson: Build G2 Dlwillson

47) SilentTitan: Move Y2 Soul Silenttitan

48) dlwillson: Trade G2 R2 Dlwillson

49) SilentTitan: Trade Y2 G2 Silenttitan

50) dlwillson: Attack Y1 Dlwillson

51) SilentTitan: Move G2 Silenttitan Sunny
Catastrophe Sunny Green

52) dlwillson: Build Y2 Turf

53) SilentTitan: Discover Y1 Soul G2 Sol

54) dlwillson: Sacrifice Y2 Turf
Move Y1 Dlwillson Sky
Discover Y1 Sky G3 Field

	dlwillson: Good game, bro'


26272)
Variants: "Hard time"
Started: 2014.9.29, Ended: 2014.10.7
Participants: TeeTeeTee (S), wil (N)
Winner: TeeTeeTee

1) wil: Homeworld Y2 B1 G3

2) TeeTeeTee: Homeworld Y1 B3 G3

3) wil: B G1 Wil

4) TeeTeeTee: Build G1 Teeteetee
	wil: Disappointing clock run out last game, I'm gonna do my darndest to give you a little challenge.

5) wil: T G1 B1 Wil

6) TeeTeeTee: Trade G1 Y1 Teeteetee
	TeeTeeTee: I was treating TwoShort's time-out as if it was a resignation: I'd taken the lead very early on in the game, and would have been very surprised if TwoShort had found a way to catch up after my last move.

7) wil: B B1 Wil

8) TeeTeeTee: Build Y1 Teeteetee

9) wil: D B1 Wil G3 G3

10) TeeTeeTee: Discover Y1 Teeteetee G2 Grasshopper

11) wil: B B2 G3

12) TeeTeeTee: Sacrifice G3 Teeteetee
Build Y2 Grasshopper
Build Y2 Grasshopper
Build Y3 Teeteetee

13) wil: Build B2 Wil
	wil: Congrats on the game...
	wil: this one too it appears...

14) TeeTeeTee: Trade Y3 G3 Teeteetee

15) wil: D B1 Wil Y3 Y3

16) TeeTeeTee: Discover Y2 Grasshopper B3 Beetle

17) wil: Build B2 Wil
	wil: b b2 wil

18) TeeTeeTee: Discover Y2 Grasshopper B3 Ant

19) wil: Trade B2 R2 G3
	wil: nice...it is so over for me...

20) TeeTeeTee: Sacrifice G3 Teeteetee
Build Y3 Ant
Build Y3 Beetle
Pass

21) wil: Trade B2 R2 Wil
	TeeTeeTee: I'm in the lead again, yes, but it'd be quite easy for me to lose that advantage if I'm careless here. Can you see why did that last move, by the way?
	wil: Oh yeah...you successfully cornered me out...I had plenty of opportunity to correct early on and blew it.  the likelihood of your errors is slim...but I am waitn

22) TeeTeeTee: Trade Y3 R3 Ant

23) wil: Build B2 Wil

24) TeeTeeTee: Trade Y3 G3 Beetle

25) wil: Build B2 G3

26) TeeTeeTee: Build Y3 Grasshopper

27) wil: Trade B2 G2 Wil

28) TeeTeeTee: Move Y3 Grasshopper G3

29) wil: Discover B2 Wil Y3 Why3

30) TeeTeeTee: Sacrifice R3 Ant
Attack R2 G3
Attack B2 G3
Attack B1 G3
	wil: If I had any sense I'd resigned move 7

31) wil: Move G2 Wil Y3
	TeeTeeTee: Hmm. It would have been a stronger move for me to build another y3 on my last move, rather than move that y3 to your world g3 - guess I was being impatient...

32) TeeTeeTee: Build B2 G3
	wil: I just tried to take a little of your clout away and prolong the agony.

33) wil: Build G1 Y3

34) TeeTeeTee: Move Y3 G3 Grasshopper

35) wil: Discover G1 Y3 R2 R2
	TeeTeeTee: Hmm. This game punishes impatience.

36) TeeTeeTee: Sacrifice B1 G3
Trade Y3 R3 Grasshopper

37) wil: Build R1 Wil

38) TeeTeeTee: Build Y3 Grasshopper

39) wil: Build G1 R2

40) TeeTeeTee: Build R1 G3

41) wil: Build G1 Wil

42) TeeTeeTee: Sacrifice Y3 Grasshopper
Move R1 G3 Wil
Move R2 G3 Wil
Move G3 Beetle Wil
Catastrophe Wil Red

	TeeTeeTee: A more stalling move for you would have been "trade b1 y3 r1".
	wil: ah...   I stalled long enough...   I played pittifully....I'll give it a few days for someone else to challenge you before I try again...thanx
	TeeTeeTee: Hmmm... I don't think you played 'pitifully'. You made a catastrophic mistake at the start, but after that, I don't think there was much else you could have done better - you were only playing on in the hope that I'd slip up somewhere from that point - and you put up quite a strong defence. TwoShort made the same catastrophic error right at the start of the last game that I played, too.

At the beginning of the game, when there's a choice of two colours with two small pyramids in the stash - yellow and blue in this case, and red and blue in the game with TwoShort - it's surely better to choose the colour with fewer medium pyramids in the stash. I was able to very quickly cut off all access to yellows in this game, and then stake out the large blues as stars, which made your monopoly on blue not very useful. A similar thing happened in the last game I played: TwoShort had a monopoly on blue, but couldn't use that to any effect as I was able to repeatedly attack their worlds with impunity due to my red monopoly.

I'd like to wait for a bit to see if there are any other ladder challengers, as we have played quite a lot of games recently. Thanks for the game!
	wil: yeah...a pitiful catastrophic mistake...which by all rights in a 'championship' game should have caused an immediate resignation on my part.  but yeah...I am gone till early week...and I'll be glad to let a challenger slip in...  

	wil: thank you for the game.
	wil: appears I must challenge two short now...again tho...I'll wait till next week in case he wishes to challenge you.


26269)
Variants: "Hard time"
Started: 2014.9.29, Ended: 2014.11.22
Participants: Aristos (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3

2) Aristos: Homeworld B3 Y2 G3
	ts52: have a good game!

3) ts52: Build G1 Ts52
	Aristos: You as well.

4) Aristos: Build G1 Aristos

5) ts52: Trade G1 B1 Ts52
	Aristos: Sorry for delay... I'm in a play and tonight was final dress rehearsal... play opens tomorrow night. All this week was chaos. 
	ts52: No problem. Break a leg!

6) Aristos: Build G1 Aristos

7) ts52: Build B1 Ts52

8) Aristos: Trade G1 Y1 Aristos

9) ts52: Discover B1 Ts52 G2 Kermit

10) Aristos: Trade G3 B3 Aristos

11) ts52: Build B2 Kermit

12) Aristos: Build B2 Aristos

13) ts52: Trade B2 Y2 Kermit

14) Aristos: Discover B2 Aristos G1 Ping

15) ts52: Build B2 Kermit

16) Aristos: Build Y1 Aristos

17) ts52: Discover B1 Ts52 G2 Oscar

18) Aristos: Move Y1 Aristos Ping

19) ts52: Trade B2 R2 Kermit

20) Aristos: Trade Y1 R1 Ping

21) ts52: Build B2 Oscar

22) Aristos: Build Y1 Aristos

23) ts52: Build R1 Kermit

24) Aristos: Trade B3 G3 Aristos

25) ts52: Build Y1 Kermit

26) Aristos: Move Y1 Aristos Ping

27) ts52: Discover Y2 Kermit G3 Robin

28) Aristos: Discover Y1 Aristos R1 Spark

29) ts52: Move R1 Kermit Robin

30) Aristos: Sacrifice G3 Aristos
Build Y2 Spark
Build Y3 Spark
Build Y3 Ping

31) ts52: Move Y1 Kermit Spark
Catastrophe Spark Yellow

32) Aristos: Build G1 Aristos

33) ts52: B Y1 Robin

34) Aristos: Move Y3 Ping Aristos

35) ts52: Move Y1 Robin Kermit

36) Aristos: Discover G1 Aristos Y1 Flash

37) ts52: Move R2 Kermit Flash

38) Aristos: Discover G1 Flash R2 Buzz

39) ts52: Move Y2 Robin Buzz
	Aristos: Sorry for the indecisions... I don't have physical pieces laid out to move around to plan moves, and it helps if I can actually see the next board state. 
	ts52: No problem

40) Aristos: Sacrifice G1 Buzz
Build G1 Aristos
	Aristos: Wow. My move to Flash was a truly spectacularly bad move. Nice trap. I think it may have cost me the game. 

41) ts52: Build R1 Robin
	Aristos: We'll try this path... I'm not sure if this is an escape or just delay of inevitable. 

42) Aristos: Move G1 Aristos Ping

43) ts52: Move Y2 Buzz Robin

44) Aristos: Trade Y3 G3 Aristos

45) ts52: Build G2 Ts52

46) Aristos: Build R2 Ping

47) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Flash
Build R3 Flash

48) Aristos: Move R2 Ping Kermit

49) ts52: Move R3 Flash Kermit

50) Aristos: Sacrifice G3 Aristos
Build G3 Aristos
Build R3 Kermit
Build R3 Kermit
Catastrophe Kermit Red

51) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Robin
Build Y3 Kermit

52) Aristos: Build Y3 Ping

53) ts52: Trade Y3 R3 Kermit

54) Aristos: Build B2 Ping

55) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Kermit
Build B3 Kermit

	Aristos: Good game.
	ts52: Thanks. You too.


26202)
Variants: "Hard time"
Started: 2014.10.1, Ended: 2014.10.8
Participants: cacodemon (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3
	wil: welcome to sdg... do you play homeworlds irl?

2) cacodemon: Homeworld G2 B1 Y3

3) wil: Build G1 Wil
	cacodemon: Thank you and yes I play irl, any chance I get. Forgive my typing. My mobile device is the only access to sdg I have.  Have fun.
	wil: no worries about your typing...  where are you from, I am near DC

4) cacodemon: Build Y1 Cacodemon

5) wil: Trade G1 Y1 Wil

6) cacodemon: Trade Y1 B1 Cacodemon
	wil: what other pyramid games do you like?  I first was introduced through zendo (my daughter bought it)

7) wil: Build Y1 Wil
	cacodemon: I am from utah where pyramid players are few (that I know). Ive played and enjoy zark city and ice house. Volcano and zendo once but I liked both. HW is just mind blowing to me. A real amazing thing. Wish everyone played it. :)
	wil: Absolutely agree....where abouts are you in Utah?  Near any of the national parks?

8) cacodemon: Build Y2 Cacodemon
	wil: I have always liked chess, HW is sooo much more...


9) wil: Discover Y1 Wil G2 G2

10) cacodemon: Build Y2 Cacodemon

11) wil: Build G1 Wil
	wil: I've enjoyed your parks, brice, arches, zion...and the wasatch...ran around provo in the late 70's for a bit.


12) cacodemon: Discover Y2 Cacodemon G3 Green3

	wil: oh nooooooooo


26307)
Variants: "Hard time"
Started: 2014.10.6, Ended: 2015.1.31
Participants: fogus (S), Salmonax (N)
Winner: fogus

1) Salmonax: Homeworld R1 B3 G3

2) fogus: Homeworld B1 Y2 G3

3) Salmonax: Build G1 Salmonax

4) fogus: Build G1 Fogus

5) Salmonax: Trade G1 Y1 Salmonax

6) fogus: Build G1 Fogus

7) Salmonax: Build G1 Salmonax

8) fogus: Trade G1 Y1 Fogus

9) Salmonax: Discover G1 Salmonax B2 Frootyloops

10) fogus: Trade Y1 R1 Fogus

11) Salmonax: Build Y1 Salmonax

12) fogus: Discover R1 Fogus Y3 Way

13) Salmonax: Trade G1 R1 Frootyloops

14) fogus: Sacrifice G1 Fogus
Build R2 Way

15) Salmonax: Build G1 Salmonax

16) fogus: Move R2 Way Frootyloops

17) Salmonax: Sacrifice Y1 Salmonax
Move R1 Frootyloops Salmonax

18) fogus: Build G1 Fogus

19) Salmonax: Move G3 Salmonax Frootyloops

20) fogus: Trade R2 B2 Frootyloops

21) Salmonax: Sacrifice R1 Salmonax
Attack B2 Frootyloops

22) fogus: Trade G1 Y1 Fogus

23) Salmonax: Trade B2 Y2 Frootyloops

24) fogus: Build G1 Fogus

25) Salmonax: Build G1 Frootyloops

26) fogus: Move G1 Fogus Way

27) Salmonax: Trade G1 R1 Frootyloops
	Salmonax: Sorry for the delay

28) fogus: Build R2 Way

29) Salmonax: Move G3 Frootyloops Way

30) fogus: Discover R2 Way Y2 Foo

31) Salmonax: Move Y2 Frootyloops Salmonax

32) fogus: Move R1 Way Fogus

33) Salmonax: Move G3 Way Foo
	fogus: no problem about the delay.  i'm in no rush. :)

34) fogus: Move R2 Foo Way

35) Salmonax: Build G1 Foo

36) fogus: Move R2 Way Frootyloops

37) Salmonax: Sacrifice Y1 Salmonax
Move R1 Frootyloops Salmonax

38) fogus: Build R2 Fogus

39) Salmonax: Move G3 Foo Way

40) fogus: Move G1 Way Fogus

41) Salmonax: Build G2 Way

42) fogus: Discover G1 Fogus Y3 Flipper

43) Salmonax: Move G3 Way Frootyloops

44) fogus: Trade R2 B2 Frootyloops

45) Salmonax: Sacrifice R1 Salmonax
Attack B2 Frootyloops
	fogus: Curse frootyloops!  Something bad happens whenever I go there! ;)
	Salmonax: It's that Toucan Sam!

46) fogus: Build G2 Fogus

47) Salmonax: Build G2 Salmonax

48) fogus: Build G3 Flipper

49) Salmonax: Build Y1 Salmonax

50) fogus: Trade R1 B1 Fogus

51) Salmonax: Trade G1 R1 Salmonax

52) fogus: Move G3 Flipper Foo

53) Salmonax: Sacrifice Y1 Salmonax
Move G3 Frootyloops Salmonax

54) fogus: Build Y1 Fogus

55) Salmonax: Build G1 Way

56) fogus: Move G3 Fogus Way

57) Salmonax: Discover G1 Foo Y3 Blipper

58) fogus: Discover Y1 Fogus R3 Warworld

59) Salmonax: Build Y1 Salmonax
	Salmonax: blipper flipper foo.

60) fogus: Sacrifice G1 Flipper
Build Y3 Warworld

61) Salmonax: Sacrifice G2 Salmonax
Build G1 Way
Build G2 Blipper
Catastrophe Way G

62) fogus: Build Y3 Fogus

63) Salmonax: Trade B2 R2 Frootyloops

64) fogus: Build R1 Fogus

65) Salmonax: Sacrifice G2 Blipper
Build G1 Blipper
Build R2 Frootyloops

66) fogus: Move Y3 Warworld Frootyloops

67) Salmonax: Discover Y1 Salmonax G2 Charlier

68) fogus: Discover Y1 Fogus R3 Chthon

69) Salmonax: Sacrifice Y1 Charlier
Move R2 Frootyloops Chthon

70) fogus: Sacrifice R1 Fogus
Attack R2 Frootyloops

71) Salmonax: Attack Y1 Chthon

72) fogus: Sacrifice G2 Fogus
Build R1 Frootyloops
Build R3 Fogus

73) Salmonax: Build G1 Salmonax

74) fogus: Sacrifice Y3 Frootyloops
Move R1 Frootyloops Salmonax
Move R2 Frootyloops Salmonax
Move G3 Foo Warworld
Catastrophe Salmonax R

75) Salmonax: Build Y1 Salmonax

76) fogus: Discover Y3 Fogus Y3 Gipf

77) Salmonax: Sacrifice G1 Salmonax
Build R1 Chthon

78) fogus: Move R2 Fogus Gipf
	Salmonax: I had my eye off that possibility for a little while.

79) Salmonax: Build G1 Salmonax

80) fogus: Move G3 Warworld Fogus

81) Salmonax: Discover R2 Chthon G2 Ziggle

82) fogus: Build B1 Fogus

83) Salmonax: Sacrifice G1 Salmonax
Build Y2 Chthon

84) fogus: Move B1 Fogus Gipf

85) Salmonax: Build R1 Ziggle

86) fogus: Build B2 Fogus

87) Salmonax: Trade Y2 B2 Salmonax

88) fogus: Sacrifice Y3 Gipf
Move B1 Fogus Salmonax
Move B2 Fogus Salmonax
Pass
Catastrophe Salmonax B

	fogus: Thank you for the game.  I'll never forget the scourge that was frootyloops! :-)


26333)
Variants: "Hard time"
Started: 2014.10.14, Ended: 2014.10.17
Participants: TwoShort (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3
	wil: I climbed the ladder so I can lose to better and better players...hopefully I'll give you a little run for your money!



26338)
Started: 2014.10.15, Ended: 2014.10.17
Participants: JaredL (S), hellajoey (N)
Winner: hellajoey

1) hellajoey: Homeworld B2 G3 R3
	JaredL: homeworld blue3 green2 red
	JaredL: homeworld g3 b2 r3

2) JaredL: Homeworld G2 B1 R3
	JaredL: homeworld g2 b1 r3 

3) hellajoey: Build R1 Hellajoey

4) JaredL: Build R1 Jaredl

5) hellajoey: Trade R1 Y1 Hellajoey

6) JaredL: Trade R1 Y1 Jaredl

7) hellajoey: Build R1 Hellajoey

8) JaredL: Build R1 Jaredl

9) hellajoey: Trade R1 G1 Hellajoey

10) JaredL: Trade R1 B1 Jaredl

11) hellajoey: Discover G1 Hellajoey Y1 Lemonasia

12) JaredL: Discover B1 Jaredl G3 Greenie

13) hellajoey: Build Y2 Hellajoey

14) JaredL: Build Y2 Jaredl

15) hellajoey: Discover Y2 Hellajoey G1 Beanstone

16) JaredL: Build B1 Greenie

17) hellajoey: Build Y2 Hellajoey

18) JaredL: Move Y2 Jaredl Greenie

19) hellajoey: Build Y3 Hellajoey

20) JaredL: Build Y3 Greenie

21) hellajoey: Build Y3 Beanstone

22) JaredL: Sacrifice Y3 Greenie
Move Y1 Jaredl Greenie
Move Y1 Greenie Beanstone
Move Y1 Beanstone Hellajoey
Catastrophe Hellajoey Y

23) hellajoey: Build R1 Hellajoey

24) JaredL: Build B2 Greenie

25) hellajoey: Move Y2 Beanstone Hellajoey

26) JaredL: Discover B2 Greenie G2 Sectorg

27) hellajoey: Discover G1 Lemonasia B3 Blunder

28) JaredL: Build B2 Sectorg

29) hellajoey: Sacrifice Y2 Hellajoey
Move R3 Hellajoey Beanstone
Move R3 Beanstone Greenie

30) JaredL: Sacrifice Y2 Greenie
Move B1 Greenie Beanstone
Move B1 Greenie Beanstone

31) hellajoey: Build R1 Hellajoey

32) JaredL: Build B3 Beanstone

33) hellajoey: Sacrifice R1 Hellajoey
Attack B3 Beanstone



26339)
Started: 2014.10.16, Ended: 2014.10.23
Participants: hellajoey (S), abridged (N)
Winner: hellajoey

1) abridged: Homeworld G3 B1 R3

2) hellajoey: Homeworld B1 G2 R3

3) abridged: Build R1 Abridged

4) hellajoey: Build R1 Hellajoey

5) abridged: Trade R1 Y1 Abridged

6) hellajoey: Trade R1 Y1 Hellajoey

7) abridged: Build R1 Abridged

8) hellajoey: Build R1 Hellajoey

9) abridged: Discover Y1 Abridged G2 Gazebo

10) hellajoey: Trade R1 B1 Hellajoey

11) abridged: Trade R3 B3 Abridged

12) hellajoey: Build B2 Hellajoey

13) abridged: Build B2 Abridged

14) hellajoey: Discover B2 Hellajoey G3 Weedsville

15) abridged: Trade B3 R3 Abridged

16) hellajoey: Build B2 Weedsville

17) abridged: Build B3 Abridged

18) hellajoey: Build B3 Hellajoey

19) abridged: Discover Y1 Gazebo B3 Bozega

20) hellajoey: Trade B2 Y2 Weedsville

21) abridged: Build R1 Abridged

22) hellajoey: Sacrifice Y2 Weedsville
Discover B2 Weedsville R2 Tempworld
Move B2 Tempworld Abridged
Catastrophe Abridged Blue

23) abridged: Discover Y1 Bozega G2 Hideyhole
	abridged: Wow! So catastrophes don't require a separate turn, eh?

24) hellajoey: Sacrifice Y1 Hellajoey
Move R3 Hellajoey Abridged
Catastrophe Abridged Red



26351)
Started: 2014.10.20, Ended: 2014.10.22
Participants: JaredL (S), hellajoey (N)
Winner: hellajoey

1) hellajoey: Homeworld B1 G2 R3

2) JaredL: Homeworld G3 B1 R3

3) hellajoey: Build R1 Hellajoey

4) JaredL: Build R1 Jaredl

5) hellajoey: Trade R1 Y1 Hellajoey

6) JaredL: Trade R1 Y1 Jaredl

7) hellajoey: Build R1 Hellajoey

8) JaredL: Build R1 Jaredl

9) hellajoey: Trade R1 G1 Hellajoey

10) JaredL: Trade R1 B1 Jaredl

11) hellajoey: Trade R3 B3 Hellajoey

12) JaredL: Build B2 Jaredl

13) hellajoey: Build B2 Hellajoey

14) JaredL: Discover B2 Jaredl G2 Green2

15) hellajoey: Discover B2 Hellajoey B3 Bluton

16) JaredL: Move B1 Jaredl Green2

17) hellajoey: Build B2 Hellajoey

18) JaredL: Trade B2 Y2 Green2

19) hellajoey: Trade B3 R3 Hellajoey

20) JaredL: Build R1 Jaredl

21) hellajoey: Build G1 Hellajoey

22) JaredL: Move R1 Jaredl Green2

23) hellajoey: Discover G1 Hellajoey R3 Redrock

24) JaredL: Move Y2 Green2 Redrock

25) hellajoey: Build R1 Hellajoey

26) JaredL: Attack G1 Redrock

27) hellajoey: Move R3 Hellajoey Redrock

28) JaredL: Move Y2 Redrock Green2

29) hellajoey: Attack G1 Redrock

30) JaredL: Move R3 Jaredl Green2

31) hellajoey: Trade B2 Y2 Bluton

32) JaredL: Move R3 Green2 Jaredl

33) hellajoey: Discover Y2 Bluton G1 Grunonia

34) JaredL: Discover B1 Green2 G3 Green3

35) hellajoey: Build G2 Hellajoey

36) JaredL: Build R1 Green2

37) hellajoey: Discover G2 Hellajoey B3 Blubox

38) JaredL: Sacrifice Y2 Green2
Move R1 Green2 Redrock
Move R1 Green2 Redrock
Catastrophe Redrock R

39) hellajoey: Build G1 Hellajoey

40) JaredL: Trade R3 G3 Jaredl

41) hellajoey: Build G2 Blubox

42) JaredL: Build B2 Green3

43) hellajoey: Trade G2 B2 Blubox

44) JaredL: Trade B2 Y2 Green3

45) hellajoey: Move G1 Hellajoey Green3

46) JaredL: Discover B1 Green3 G2 Green22

47) hellajoey: Move Y2 Grunonia Green22

48) JaredL: Build B2 Green22

49) hellajoey: Move B2 Hellajoey Green3

50) JaredL: Discover Y2 Green3 R1 Red1

51) hellajoey: Build B3 Green3

52) JaredL: Sacrifice Y2 Red1
Move B1 Green22 Green3
Move B2 Green22 Green3
Catastrophe Green3 B

53) hellajoey: Build G1 Blubox

54) JaredL: Build Y1 Jaredl

55) hellajoey: Build Y2 Green22

56) JaredL: Trade Y1 R1 Jaredl

57) hellajoey: Sacrifice Y2 Green22
Discover G2 Blubox B2 Blubon
Move G1 Blubox Blubon



26354)
Variants: "Hard time"
Started: 2014.10.22, Ended: 2014.10.31
Participants: wil (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld Y1 B2 G3

2) wil: Homeworld B3 R1 G3

3) TeeTeeTee: Build G1 Teeteetee
	wil: Two short must be busy....  I only had one person available to challenge!

4) wil: Build G1 Wil

5) TeeTeeTee: Trade G1 R1 Teeteetee

6) wil: Trade G1 R1 Wil

7) TeeTeeTee: Build R2 Teeteetee

8) wil: Build R2 Wil

9) TeeTeeTee: Build R2 Teeteetee

10) wil: Trade R2 Y2 Wil

11) TeeTeeTee: Discover R1 Teeteetee B3 Mercia

12) wil: Discover R1 Wil G2 G2

13) TeeTeeTee: Discover R2 Teeteetee Y3 Wessex

14) wil: Build Y1 Wil

15) TeeTeeTee: Move R2 Wessex G2

16) wil: Sacrifice Y1 Wil
Move R1 G2 Wil

17) TeeTeeTee: Build G1 Teeteetee
	wil: awe the early attack...makes sense..  almost grew a red...
	TeeTeeTee: I sort of hoped you would grow a red: I'd have got a red monopoly in a few turns if you'd done that.

18) wil: Build Y1 Wil

19) TeeTeeTee: Trade G1 Y1 Teeteetee

20) wil: Discover R1 Wil G2 Gee2

21) TeeTeeTee: Sacrifice G3 Teeteetee
Build R2 G2
Build R3 Mercia
Build R3 Teeteetee

22) wil: Build R3 Gee2

23) TeeTeeTee: Trade R3 G3 Mercia

24) wil: Build Y2 Wil

25) TeeTeeTee: Move Y1 Teeteetee Mercia

26) wil: Sacrifice Y1 Wil
Discover R3 Gee2 G3 G3

27) TeeTeeTee: Build R3 Mercia

28) wil: Build G1 Wil

29) TeeTeeTee: Move R3 Mercia Gee2

30) wil: Build Y1 Wil

31) TeeTeeTee: Build Y2 Mercia

32) wil: Discover Y2 Wil G2 Gtoo

33) TeeTeeTee: Move Y1 Mercia G2

34) wil: Sacrifice G3 Wil
Build Y3 Wil
Build Y3 Gtoo
Build Y3 Gtoo

35) TeeTeeTee: Trade R3 G3 Teeteetee

36) wil: Sacrifice Y1 Wil
Discover Y3 Gtoo R3 R3
	TeeTeeTee: I guess we'll stick with the original plan, after all.
	wil: I wish I had an original plan...

37) TeeTeeTee: Attack R1 Gee2
	wil: I think this will leave me one up...

38) wil: Build G1 Wil
	TeeTeeTee: Hah! Well done.
	wil: not quite well done...you made the best response...  I sure was hopin you'd miss it!!

39) TeeTeeTee: Build G1 Mercia

40) wil: Move G1 Wil Gee2
	TeeTeeTee: I have to say, I was quite hoping that you'd miss that last move.
	wil: LOL....that is what I was going to say...  I was at the cusp, on the edge...of actually winning a game against you...now it is back to the foxhole to see if I can hold out against your far superior prowess!

41) TeeTeeTee: Attack G1 Gee2

42) wil: Discover Y2 Wil B2 B2

43) TeeTeeTee: Build Y1 G2

44) wil: Move Y2 Gtoo G3
	TeeTeeTee: ...? I don't get it.
	wil: I went to the wrong g2, foiled by my own devices...didn't check where it went and went to another game to make a move...CRAP
	wil: CRAP
	TeeTeeTee: Ahhhh... I'm actually sorry to hear that it was a typo. I don't believe that there's the opportunity to double-undo, is there?

If you like, I can wait a little longer before responding to moves in the future... but, I have to say, you should always double-check that you're moving to the right place before submitting orders. (Also, perhaps you should give more original names to your planets? :P)
	TeeTeeTee: Ohhh, very well. 
Would you like me to undo my last move, so that you can (potentially) undo your last move, and move your ship to the correct g2 (gtoo)?
	wil: nope...I screwed up... what a royal mistake!

	TeeTeeTee: Very well. (If it's any consolation, I reckon that moving the g1 to gtoo would've been a mistake, too - albeit not as drastic.)
	wil: I don't think you would have wasted y2 g3 g1 to catastrophe, it would have given me the opp to get back a factory and set you further behind...

45) TeeTeeTee: Trade R2 B2 Teeteetee

46) wil: Build R2 G3

47) TeeTeeTee: Sacrifice Y2 Mercia
Move R1 Gee2 G3
Move R2 G2 G3
Catastrophe G3 Red

48) wil: Build Y2 G3

49) TeeTeeTee: Sacrifice G3 Mercia
Build G3 Mercia
Build R1 Gee2
Build R2 G2

50) wil: Move Y2 G3 Teeteetee

51) TeeTeeTee: Sacrifice R1 Gee2
Attack Y2 Teeteetee

52) wil: Sacrifice Y2 B2
Move Y2 G3 Teeteetee
Move Y3 R3 Teeteetee
Catastrophe Teeteetee Y

53) TeeTeeTee: Sacrifice G3 Mercia
Build G3 Mercia
Build G3 Teeteetee
Build R1 Gee2

54) wil: Build Y1 Wil

55) TeeTeeTee: Trade B2 Y2 Teeteetee
	wil: I had a chance before I gave away that little green one...

56) wil: Trade Y3 B3 Wil

57) TeeTeeTee: Sacrifice Y2 Teeteetee
Move G3 Teeteetee Wil
Move R3 Gee2 Wil

	wil: and there it is...congrats..
	TeeTeeTee: ... Well, this one was a complex game. I've not played many games where I've both failed to monopolise a colour and been behind on large ships - it was not at all clear who was winning for most of this game, despite your lead on large ships.

My mistake in this game was not trying to cut you off from getting the large y3's, as I assuming that you couldn't build them without losing one of them to catastrophe immediately. It was only after you built the three large yellows that I saw that I'd have lost by `bluebird' if I'd done that: I couldn't destroy all three y3's in the same turn. (Also, as I said earlier, your response to "18: Trade r3 g3 TeeTeeTee" was a strong move.)

I think you made three major mistakes in this game. Firstly, I think that your moving that g1 out was a weak move, but not for the reason you thought it was. At this stage, you could only win the game by setting up a doomsday device, which you had the means to do - but you needed to trade that g1 for a b1 to start it, and you couldn't do that once you moved it out (even if you had moved it to the correct place!) I suppose now that you were planning to move the g1 to gtoo and on the next turn destroy my greens at Mercia by catastrophe? You'd have got a large green from that, but would no longer have had all the y3s, which was your greatest advantage in this game.

Secondly, I think "23: ... Build r2 g3" was not a good move, as it gave me the chance to monopolise the reds, which I'd been threatening to do all game. I would not have been able to invade, though, as I didn't have a y2 or a y3: but you would have had to have given one of them up to attack me. You could perhaps have scratched out a draw or even an unlikely win if you'd got some blue ships and blew up one of my homeworlds, but then you played "25 ... Move y2 g3 TeeTeeTee". I think that was your third mistake, and the move that lost you the game: without your yellows, you no longer had a chance to set up a doomsday machine before I invaded. You needed to try and blow up my blue homeworld first.

Once again, thanks for the game! This was definitely a tough one.
	wil: thanks for the feedback, sincerely appreciated!!


26358)
Started: 2014.10.22, Ended: 2014.11.5
Participants: hellajoey (S), JaredL (N)
Winner: hellajoey

1) JaredL: Homeworld Y1 B2 G3

2) hellajoey: Homeworld B2 G3 Y3

3) JaredL: Build G1 Jaredl

4) hellajoey: Build Y1 Hellajoey

5) JaredL: Discover G1 Jaredl B3 Blue3

6) hellajoey: Build Y1 Hellajoey

7) JaredL: Build G1 Blue3

8) hellajoey: Discover Y1 Hellajoey G1 Grun

9) JaredL: Build G2 Jaredl

10) hellajoey: Build Y2 Hellajoey

11) JaredL: Build G2 Blue3

12) hellajoey: Build Y2 Grun

13) JaredL: Trade G2 Y2 Blue3

14) hellajoey: Discover Y2 Grun B3 Blooth

15) JaredL: Discover G1 Blue3 B2 Blue2

16) hellajoey: Trade Y2 G2 Blooth

17) JaredL: Sacrifice G3 Jaredl
Build G2 Blue2
Build G3 Blue3
Build G3 Jaredl

18) hellajoey: Discover Y1 Hellajoey R1 Reedle

19) JaredL: Trade G3 R3 Blue3

20) hellajoey: Build G3 Blooth

21) JaredL: Sacrifice Y2 Blue3
Move G2 Blue2 Blooth
Move G1 Blue2 Blooth
Catastrophe Blooth G

22) hellajoey: Trade Y3 G3 Hellajoey

23) JaredL: Trade G2 Y2 Jaredl

24) hellajoey: Trade Y2 R2 Hellajoey

25) JaredL: Build Y2 Jaredl

26) hellajoey: Build Y2 Grun

27) JaredL: Move Y2 Jaredl Blue3

28) hellajoey: Discover Y2 Grun G2 Grande

29) JaredL: Trade Y2 G2 Jaredl

30) hellajoey: Build Y2 Grun

31) JaredL: Sacrifice G3 Jaredl
Build G1 Blue3
Build G2 Blue3
Build G3 Jaredl

32) hellajoey: Build Y3 Grande

33) JaredL: Discover G2 Blue3 R1 Red1

34) hellajoey: Move Y3 Grande Red1

35) JaredL: Trade G3 Y3 Jaredl

36) hellajoey: Discover Y2 Grun G3 Grown

37) JaredL: Sacrifice Y3 Jaredl
Move G2 Red1 Hellajoey
Move G1 Blue3 Red1
Move G1 Red1 Hellajoey
Catastrophe Hellajoey G

38) hellajoey: Move Y3 Red1 Hellajoey

39) JaredL: Move R3 Blue3 Jaredl

40) hellajoey: Build Y3 Grown

41) JaredL: Build Y3 Blue3

42) hellajoey: Sacrifice Y2 Grown
Move Y1 Grun Blue3
Move Y1 Reedle Blue3
Catastrophe Blue3 Yellow

43) JaredL: Build G1 Blue3

44) hellajoey: Trade Y3 R3 Hellajoey



26361)
Started: 2014.10.23, Ended: 2014.12.17
Participants: hellajoey (S), abridged (N)
Winner: hellajoey

1) abridged: Homeworld B1 R2 G3

2) hellajoey: Homeworld B1 G3 Y3

3) abridged: Build G1 Abridged

4) hellajoey: Build Y1 Hellajoey

5) abridged: Build G1 Abridged

6) hellajoey: Trade Y1 B1 Hellajoey

7) abridged: Trade G1 Y1 Abridged

8) hellajoey: Build Y1 Hellajoey

9) abridged: Discover G1 Abridged B3 Dracut

10) hellajoey: Build B2 Hellajoey
	hellajoey: Are you enjoying this game, Jake? You got a little whirlwinded in your first just like I did in my first 2. That will pass though. I think there's probably about 3 or 4 games worth of concepts to get acquainted with. Anyway, hope it's enjoyable enough for you. Also, I'm mostly just testing out this message feature right now ;)
	abridged: I feel like I'm getting the hang of the rules. They're still not fully internalized -- e.g. I just tried to create a blue ship, and then realized I couldn't -- but I'm getting there. I'm definitely enjoying it. I got creamed in game 1, but it was clear at various points what mistakes I'd made, which always makes me want to play more.

11) abridged: Build G1 Abridged

12) hellajoey: Trade B2 G2 Hellajoey

13) abridged: Discover G1 Abridged B3 Overthere

14) hellajoey: Build B2 Hellajoey

15) abridged: Build G1 Abridged

16) hellajoey: Discover B2 Hellajoey G2 Grun

17) abridged: Sacrifice G3 Abridged
Build G2 Dracut
Build G3 Abridged
Build G3 Overthere

18) hellajoey: Build B2 Grun

19) abridged: Sacrifice G3 Abridged
Build G3 Abridged
Build Y1 Abridged
Build Y2 Abridged

20) hellajoey: Sacrifice G2 Hellajoey
Build B2 Hellajoey
Build B3 Grun

21) abridged: Trade Y1 R1 Abridged

22) hellajoey: Trade B3 R3 Grun

23) abridged: Move R1 Abridged Overthere

24) hellajoey: Build B3 Grun

25) abridged: Sacrifice G2 Dracut
Build G2 Overthere
Build G2 Abridged

26) hellajoey: Move Y1 Hellajoey Grun

27) abridged: Move Y1 Abridged Overthere

28) hellajoey: Trade B3 R3 Grun

29) abridged: Trade G3 B3 Abridged
	hellajoey: By the by, it was noticed in my last game that if a person activates the "take back move" option there is some strange behavior that it's tempting to imagine is a glitch with the interface: the opponent is presented with a pair of buttons that seem to allow either of forced victory or a forced end of game. Jared and I decided on a gentleman's agreement to just never click either of these buttons. I'd like to make the same arrangement with you if you're down :)

30) hellajoey: Move R3 Grun Dracut

31) abridged: Sacrifice G3 Overthere
Build G3 Overthere
Build G3 Abridged
Build R1 Overthere

32) hellajoey: Attack G1 Dracut



26350)
Variants: "Unrated"
Started: 2014.10.25, Ended: 2014.11.27
Participants: Northman01 (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

	wil: first time you say?
	wil: I give you the opportunity to have banker...as I should
	Northman01: sorry man, I've read the rules but this game interface is odd...i'm not writing the orders properly i guess..can't make a move..
	wil: no worries  I just write the first letter H for homeworlds...  so H (star size like) R2 (second of your binary star like ) B1 (and then your ship size) G3   ask any question you like along the way!
	wil: I'm hoping you find your way back...I'll work with you on learning the correct input...it is confusing, but quick learning curve once you understand.


26287)
Variants: "Hard time"
Started: 2014.10.28, Ended: 2014.11.4
Participants: wil (S), dsabremaster (N)
Winner: wil

1) dsabremaster: Homeworld Y3 G1 B3

2) wil: Homeworld B3 Y2 G3
	wil: thanx for the game!!
	wil: interesting open,  where do you play?

3) dsabremaster: Build B1 Dsabremaster

4) wil: Build G1 Wil
	dsabremaster: I play with friends when I can find a partner, which is rare.
	wil: ah...live games?  so you have pyramids?  Yeah, we have to teach the games to others, I'm finding chess players most interested...

5) dsabremaster: Discover B1 Dsabremaster G2 Gamma 37
	dsabremaster: Yeah I have pyramids. I think they're great; lots of different games. Chess players makes sense; this is like the spiritual successor in my opinion.

6) wil: Build G1 Wil
	wil: agree...agree...agree...agree...  I am in USA...DC area...  You?  and how did you find the games??

7) dsabremaster: Build B1 Gamma
	dsabremaster: Missouri. A cousin introduced me to homeworlds, and I looked up all the other games through looneylabs.com.

8) wil: Discover G1 Wil Y1 Y1
	wil: very cool...I have a friend in Columbia, actually a little south, headed to Jeff City
I was introduced first thru Zendo..my daughter played it and wanted it.

9) dsabremaster: Build B1 Dsabremaster

10) wil: Build G2 Y1
	dsabremaster: I've wanted to try zendo but haven't had the pyramids, time or players.

11) dsabremaster: Trade B1 Y1 Gamma

12) wil: Build G2 Wil

13) dsabremaster: Build B1 Gamma
	wil: zendo is fun, and people enjoy it that like riddles...  I also like volcano/caldera... what other games do you play?
	dsabremaster: I've played a little martian chess, as well as some zark city.

14) wil: Move G1 Y1 Gamma

15) dsabremaster: Move B1 Gamma Y1
	wil: I haven't tried any martian chess yet ( I think they have it here, but I've only played HW on this site... I came because I was told this was a great place to learn..and I've learned by losing...lots...I'm still losing... but to better players!)

16) wil: Trade G3 R3 Wil
	dsabremaster: Nothing has been quite as endearing to me as HW, because it's so different every time.

17) dsabremaster: Discover B1 Gamma G3 Aspire
	wil: no kidding, no two games even close to alike...  intergalactic chess, control of the universe!

18) wil: Sacrifice R3 Wil
Attack Y1 Gamma
Attack B1 Y1
Pass

19) dsabremaster: Build B2 Aspire
	wil: that was downright mean of my big red ship to do that...glad that angry guy is gone..
	dsabremaster: Huh. Didn't see that coming. Usually not advisable to sacrifice your big ship... unless you're ready to build it back next turn of course...

20) wil: Build G3 Wil
	wil: Yeah, you got that right... risky business...but I have a correction coming..

21) dsabremaster: Trade B1 R1 Dsabremaster
	wil: If you didn't move out, I was going to grow two greens and blow up the star... since you moved out I did the next best thing.
	dsabremaster: That's what I WAS expecting...

22) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Y1
Build Y1 Gamma

23) dsabremaster: Trade B2 Y2 Aspire

24) wil: Build Y2 Gamma

25) dsabremaster: Move Y2 Aspire Gamma
Catastrophe Gamma Y

26) wil: Trade G3 Y3 Y1

27) dsabremaster: Build B1 Dsabremaster
	dsabremaster: Now the question is, was that a mistake on your part, or was that your intention all along....
	wil: It was my intention.  The I wanted to insure you didn't get a big one at this time...If you didn't do it to me, I was going to do it to you..

28) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Y1
Build B2 Y1

29) dsabremaster: Build B2 Aspire

30) wil: Discover B2 Y1 Y2 Y2

31) dsabremaster: Trade B3 Y3 Dsabremaster

32) wil: Sacrifice G3 Y1
Build B2 Y1
Build B3 Y1
Build B3 Y2

33) dsabremaster: Move R1 Dsabremaster Gamma

34) wil: Sacrifice Y3 Y1
Move G1 Gamma Dsabremaster
Move B1 Y1 Aspire
Move B2 Y1 Aspire
Catastrophe Aspire B

35) dsabremaster: Sacrifice R1 Gamma
Attack G1S Dsabremaster

36) wil: Trade G1 R1 Wil

37) dsabremaster: Trade Y3 R3 Dsabremaster
	wil: looks like you got plenty of computer skillz!  Ever built an app, or had your students build apps?

38) wil: Trade G2 Y2 Wil
	dsabremaster: No, I haven't. But I've spent quite a lot of time around computers, mostly playing games.

39) dsabremaster: Discover G1 Dsabremaster B2 Lagoon

40) wil: Sacrifice B2 Y2
Trade B3 G3 Y2
Trade G3 R3 Wil
	wil: looks like I have prolonged the game by blowing so much up...

41) dsabremaster: Build R1 Dsabremaster
	dsabremaster: Perhaps. I just wish you had affected the outcome!
	wil: lol


42) wil: Move B3 Y1 Y2

43) dsabremaster: Build G1 Lagoon

44) wil: Sacrifice Y2 Wil
Move G3 Y2 Dsabremaster
Move B3 Y2 Dsabremaster

45) dsabremaster: Attack G3S Dsabremaster

46) wil: S R3 Wil
Attack R3 Dsabremaster
Attack R1 Dsabremaster
Attack G3 Dsabremaster
	wil: We have seen that your galaxy needs help and have sent in two of our top change and grow ships to adjust your economy, correct your social mores, and make you a better civilization....  because WE know better, and we can.
	dsabremaster: Alas, our lack of foresight has been our downfall not once, but twice. We will not underestimate you again...

47) dsabremaster: Build B1 Dsabremaster
	wil: My people came in peace to enlighten, and you attack with your big mean ship?  Really??  While it is against our wishes we are forced to respond in kind...

48) wil: Sacrifice R3 Dsabremaster
Attack B1 Dsabremaster
Attack B1 Dsabremaster
Pass
	wil: that was the old, you can have one I get three swap.  it also works with the you get two I get three deal or even 1/2...  not beneficial to have your big red in the homeworld where it can't be utilized...  but I'm afraid in this game I gotcha way early, and then used my factory extensively...building a factory is a powerful tool, it is only safe to not have one when the opponent can't get one...
	wil: I thank you for the game...  I like to play, and don't wish to be obnoxious, so feel free to challenge me to as many or few games as you'd like.  It is all about the learning and sharing..
	dsabremaster: Yeah, it's been a while since I've played, and I'm not quite back in the mindset to anticipate those things again yet. I'd like to try again, although I think I'd change my opening setup slightly and go for a Banker instead of a Goldilocks. Not sure if that's enough to deal with what you started with (which I think is one of the most solid starts in the game), but I'd be interestd to try.

	wil: Yeah, I'd love it if we had a program which could say....let us back up to that mistake, or turning point and try it differently...that would be a dream (oh and the live action app where you could watch the other person move and you just slid the pyramids with your fingers on your smart phone...


26386)
Variants: "Hard time"
Started: 2014.10.30, Ended: 2014.11.4
Participants: fogus (S), dsabremaster (N)
Winner: dsabremaster

1) dsabremaster: Homeworld G3 B2 Y3

2) fogus: Homeworld B1 Y2 G3
	wil: ah, the elusive three player game...they are rarely found, and even rarer to finish...
	wil: pardon me...I was lost...didn't know where i was....leaving now...

3) dsabremaster: Build Y1 Dsabremaster

4) fogus: Build G1 Fogus

5) dsabremaster: Discover Y1 Dsabremaster B1 Venture

6) fogus: Build G1 Fogus

7) dsabremaster: Trade Y1 G1 Venture

8) fogus: Trade G1 R1 Fogus

9) dsabremaster: Build Y1 Dsabremaster

10) fogus: Discover R1 Fogus Y3 Plug

11) dsabremaster: Build Y1 Dsabremaster

12) fogus: Move R1 Plug Venture

13) dsabremaster: Sacrifice Y1 Dsabremaster
Discover G1 Venture B3 Azure

14) fogus: Trade G1 Y1 Fogus

15) dsabremaster: Build Y1 Dsabremaster

16) fogus: Move Y1 Fogus Azure

17) dsabremaster: Build G1 Azure

18) fogus: Move Y1 Azure Venture

19) dsabremaster: Trade Y1 R1 Dsabremaster

20) fogus: Discover R1 Venture Y3 Flipper

21) dsabremaster: Discover Y1 Dsabremaster Y1 Hermes

22) fogus: Move R1 Flipper Fogus

23) dsabremaster: Build Y2 Dsabremaster
	fogus: sorry for the undo.  i mistyped the moving ship
	dsabremaster: No problem.

	fogus: I made a HUGE mistake chasing you around early in the game.  :(  Live and learn I guess. :)
	dsabremaster: Yup. Hope to play again soon, thanks for the game!


26395)
Started: 2014.10.30, Ended: 2014.12.11
Participants: jimbojimbojimbojimbo (S), hellajoey (N)
Winner: hellajoey

1) hellajoey: Homeworld B1 Y2 G3

2) jimbojimbojimbojimbo: Homeworld G3 R2 Y3 *

3) hellajoey: Build G1 Hellajoey

4) jimbojimbojimbojimbo: Build Y1 Jimbojimbojimbojimbo

5) hellajoey: Trade G1 B1 Hellajoey

6) jimbojimbojimbojimbo: Discover Y1 Jimbojimbojimbojimbo G1 Kashif
	jimbojimbojimbojimbo: Now I wish I didn't name myself jimbojimbojimbojimbo

7) hellajoey: Build B1 Hellajoey
	jimbojimbojimbojimbo: jimbo was taken by me 2,095 days ago on a prev. email addy

8) jimbojimbojimbojimbo: Build Y1 Kashif

9) hellajoey: Trade B1 Y1 Hellajoey

10) jimbojimbojimbojimbo: Discover Y1 Kashif B3 Bongo_solo

11) hellajoey: Build G1 Hellajoey

12) jimbojimbojimbojimbo: Build Y2 Jimbojimbojimbojimbo

13) hellajoey: Discover Y1 Hellajoey G3 Gruner

14) jimbojimbojimbojimbo: Build Y2 Kashif

15) hellajoey: Build Y3 Gruner

16) jimbojimbojimbojimbo: Build Y3 Kashif

17) hellajoey: Move Y1 Gruner Kashif
Catastrophe Kashif Yellow

18) jimbojimbojimbojimbo: Trade Y1 G1 Bongo_solo

19) hellajoey: Trade G1 R1 Hellajoey

20) jimbojimbojimbojimbo: Build G1 Bongo_solo

21) hellajoey: Move R1 Hellajoey Bongo_solo



26394)
Variants: "Hard time"
Started: 2014.10.31, Ended: 2014.11.12
Participants: wil (S), dsabremaster (N)
Winner: wil

1) dsabremaster: Homeworld B1 G2 Y3

2) wil: Homeworld G3 B1 B3 *
	wil: I saw you posted a challenge....thought if interested we could play more than one game at a time...

3) dsabremaster: Build Y1 Dsabremaster

4) wil: Build B1 Wil
	dsabremaster: Why not. That one will probably be over soon anyway. :P
	dsabremaster: Speaking of interesting opens... Double blue?
	wil: Yes, you actually have to * asterisk it, the system says you are NUTS...the only two colors required in your homeworld to get going are green to grow and blue to change...  everynow and then I test that theory...making mistakes is how I learn...pushing the envelope is what I do..

5) dsabremaster: Discover Y1 Dsabremaster G3 Garden

6) wil: Trade B3 Y3 Wil

7) dsabremaster: Build Y1 Garden

8) wil: Build B2 Wil

9) dsabremaster: Discover Y1 Garden B2 Lagoon

10) wil: Trade B2 R2 Wil

11) dsabremaster: Build Y1 Garden

12) wil: Build R1 Wil

13) dsabremaster: Build Y2 Garden

14) wil: Move R2 Wil Lagoon

15) dsabremaster: Move Y1 Lagoon Wil

16) wil: Attack Y1 Wil

17) dsabremaster: Build Y2 Dsabremaster

18) wil: Move Y1 Wil Lagoon

19) dsabremaster: Discover Y1 Garden B2 Meridian

20) wil: Move R2 Lagoon Garden

21) dsabremaster: Sacrifice Y1 Garden
Move Y2 Garden Lagoon

22) wil: Move Y1 Lagoon Garden

23) dsabremaster: Trade Y2 G2 Dsabremaster

24) wil: Build B2 Wil

25) dsabremaster: Build G1 Dsabremaster

26) wil: Discover B2 Wil Y2 Y2

27) dsabremaster: Trade G1 R1 Dsabremaster

28) wil: Trade Y3 G3 Wil
	wil: ya got yourself a gun, yup mine was about to move again...

29) dsabremaster: Build Y1 Dsabremaster
	dsabremaster: I had that feeling...

30) wil: Sacrifice G3 Wil
Build B3 Wil
Build B3 Y2
Build B3 Y2

31) dsabremaster: Move Y3 Dsabremaster Garden

32) wil: Sacrifice B2 Y2
Trade B3 R3 Y2
Trade B3 Y3 Wil

33) dsabremaster: Sacrifice G2 Dsabremaster
Build Y2 Meridian
Build Y3 Dsabremaster
	wil: Moved your big ship outta the home world?  You are going to have to pay for that!!
	wil: But yeah, anytime anyone trades a big ship for another color (and they don't have a reason to avoid or can't build it right back next move) you gotta look...just got a g3?  What are you going to build?  Just got a R3 what are you going to attack?  Just got a y3, what are you going to move?   
	dsabremaster: We will see...

34) wil: Discover R2 Garden G2 G2

35) dsabremaster: Move Y3 Garden G2
	wil: lol, this fool got in a hurry quit thinkin and gave you that big yellow!!
	dsabremaster: Always helpful when your opponent gets in a hurry...
	wil: oh I rely on the mistakes of others to win in this game!

36) wil: Build R1 G2
	dsabremaster: That's usually what it comes down to. The tricky part is that it can be the smallest mistake which starts a chain reaction that you can't recover from....
	dsabremaster: That's usually what it comes down to. The tricky part is that it can be the smallest mistake which starts a chain reaction that you can't recover from....

37) dsabremaster: Sacrifice R1 Dsabremaster
Attack R2S G2
	wil: yes, like simply not taking the best of three good moves...but in this case...I simply blew it.


38) wil: Build R1 G2
	dsabremaster: It can be very difficult to know what the actual best available move is until later.

39) dsabremaster: Sacrifice R2 G2
Attack R1S G2
Attack R1S G2
	wil: tru

40) wil: Build R2 Wil

41) dsabremaster: Move R1 G2 Wil

42) wil: Attack R1 Wil

43) dsabremaster: Build R2 G2

44) wil: Move R1 Wil G2

45) dsabremaster: Move R1 G2 Garden

46) wil: Build R2 G2

47) dsabremaster: Sacrifice R2 G2
Attack R2S G2
Attack Y1S Garden
	dsabremaster: Choices, choices...

48) wil: Build B2 Wil

49) dsabremaster: Trade Y1 G1 Dsabremaster

50) wil: Discover B1 Wil G2 Gtoo

51) dsabremaster: Sacrifice Y2 Meridian
Move Y3 G2 Garden
Move Y3 Garden Gtoo

52) wil: Trade B1 G1 Gtoo

53) dsabremaster: Build G1 Dsabremaster

54) wil: Trade Y3 G3 Wil

55) dsabremaster: Sacrifice Y2 Lagoon
Discover G1 Dsabremaster R3 Ares
Discover Y1 Meridian B3 Didact
	dsabremaster: Shoot, that's what I should have done....

56) wil: Move B3 Y2 Ares

57) dsabremaster: Sacrifice G1 Ares
Build R2 Garden

58) wil: Build R3 G2

59) dsabremaster: Move R1 Garden G2
Catastrophe G2 R

60) wil: Move R3 Y2 Garden

61) dsabremaster: Sacrifice Y1 Garden
Move R2 Garden Gtoo

62) wil: Build G1 Gtoo

63) dsabremaster: Sacrifice R2 Gtoo
Attack G1S Gtoo
Attack G1S Gtoo

64) wil: Trade R1 Y1 Wil

65) dsabremaster: Trade G1 R1 Dsabremaster

66) wil: Move G3 Wil Gtoo
Catastrophe Gtoo G

67) dsabremaster: Trade Y1 G1 Didact

68) wil: Build B1 Wil
	dsabremaster: *Epic Facepalm*
	dsabremaster: *Epic Facepalm*
	dsabremaster: I guess that's that.

69) dsabremaster: Build G1 Didact
	wil: We'll see how it goes, risky maneuver, now I got to get a big three back in my homeworld...

70) wil: Trade B2 Y2 Wil

71) dsabremaster: Build R1 Dsabremaster
	dsabremaster: Even if I lose, I have to say that this was a pretty intense game for a while there.
	wil: That is one of the most interesting parts of the game how the universe reboots...

72) wil: Sacrifice Y2 Wil
Move R3 Garden Dsabremaster
Move B3 Ares Dsabremaster

73) dsabremaster: Build R1 Dsabremaster
Catastrophe Dsabremaster Red
	dsabremaster: I usually find that, as in this case, there's too big a disparity in the resources controlled by players once a catastrophe takes place.
	wil: yup, it is a powerful tool, and the reason to be careful of overpopulating a star with the star color...


74) wil: Sacrifice R2 Wil
Attack Y3 Dsabremaster
Pass

	wil: well, not much of a universe left...  thx for the game, I look forward to the next.
	dsabremaster: Ditto
	wil: I just set up challenges in martian chess and volcano...the next pyramid games I am learning...


26101)
Variants: "Hard time"
Started: 2014.10.31, Ended: 2014.11.3
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3



26383)
Variants: "Hard time"
Started: 2014.11.1, Ended: 2014.11.28
Participants: Glutnix (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) Glutnix: Homeworld G3 B2 Y3
	wil: thank you for the game!   
	wil: If unfamiliar with the game don't hesitate to ask questions.

3) wil: Build G1 Wil
	Glutnix: Hi wil, thanks! I've never played before, so please offer recommendations or corrections, and I will accept them humbly!

4) Glutnix: Build Y1 Glutnix
	wil: So far so good, you made a good opening...  

5) wil: Trade G1 Y1 Wil

6) Glutnix: Discover Y3 Glutnix R1 Virginmary
	wil: the rule for me there was...you have a yellow, I should have a the capability to create more yellow as well... and since there was only one small one left, I better get it now before you corner the market on fuel to move about the universe...
	wil: while the game is about taking over the universe...one way to do it is a monopoly of any economy, ability to horde and create a false shortage...

7) wil: Build Y2 Wil

8) Glutnix: Build Y2 Glutnix

9) wil: Discover Y1 Wil G2 G2

10) Glutnix: Trade Y2 G2 Glutnix

11) wil: Build Y2 G2

12) Glutnix: Build G1 Glutnix

13) wil: Trade Y2 R2 Wil

14) Glutnix: Move G1 Glutnix Virginmary

15) wil: Discover Y2 G2 G1 G1

16) Glutnix: Move Y3 Virginmary Glutnix

17) wil: Build Y2 G2

18) Glutnix: Discover Y1 Glutnix G1 Oldfashioned
	wil: your current trouble...  you can't build a yellow at home or I'll send one in and catastrophe the bunch....if I move a drone into the mother of G!d system I can take it over... the game has many moving parts..

19) wil: Sacrifice G3 Wil
Build Y2 G1
Build Y3 G1
Build Y3 G2

20) Glutnix: Move Y1 Oldfashioned G2
Catastrophe G2 Y
	wil: New troubles..while your g1 is still at risk...the bigger trouble is at home...no gun...no red economy...no department of defense...I move in with a yellow queen and you are without defense.
	wil: I learned by losing lots (lots) of games and watching these various attacks come at me from one direction after another...

21) wil: Sacrifice Y2 G1
Discover Y2 G1 G2 G2
Move Y2 G2 Wil

22) Glutnix: Build G1 Glutnix
	wil: ya done good, I wasn't thinkin right!!

23) wil: Move Y3 G1 Glutnix
	Glutnix: Thanks! If I lose this game, at least I caused a catastrophe :)

24) Glutnix: Trade G2 R2 Glutnix

25) wil: Sacrifice R2 Wil
Attack R2 Glutnix
Attack Y3 Glutnix
	wil: yes you did,  you changed my whole universe!

	wil: risky behavior me leaving and attacking like that, but it appeared I would stay one step ahead...so I proceeded...
	wil: keep playin, keep challenging, this is a great game...  any questions...ask.
	wil: If you look at my record I've played a lot of homeworlds....and one just over half of them...the first 20 I probably lost...but each time watched different strategies come at me, and eventually learned them.  I like the way this game plays, I've always liked chess and actually prefer it over chess now...   I hope you continue playing it and enjoy it as much as I.


26181)
Started: 2014.11.4, Ended: 2015.2.1
Participants: ts52 (S), wil (N), dsabremaster (E)
Winner: ts52

1) wil: Homeworld B3 G1 Y3

2) dsabremaster: Homeworld B2 Y2 G3 *

3) ts52: H Y1 B2 G3

4) wil: Build Y1 Wil
	wil: Oh my, you've got a twin star...we are in a short universe!!

5) dsabremaster: Build G1 Dsabremaster

6) ts52: Build G1 Ts52
	dsabremaster: I guess that makes us next-door neighbors.
	wil: I've yet to actually conclude on of these three or four person games online...done so in person, but since they end up binary....to me that is really the best way for this game.
	ts52: b g1 ts52
	ts52: oops, sorry

7) wil: Build Y1 Wil

8) dsabremaster: Trade G1 R1 Dsabremaster

9) ts52: Trade G1 R1 Ts52

10) wil: Trade Y3 R3 Wil
	ts52: Sorry for the delay

11) dsabremaster: Build G1 Dsabremaster

12) ts52: Build G1 Ts52

13) wil: Build Y1 Wil

14) dsabremaster: Discover G1 Dsabremaster B1 Kepler

15) ts52: Build R1 Ts52

16) wil: Discover Y1 Wil G2 G2

17) dsabremaster: Build G1 Dsabremaster

18) ts52: Build G2 Ts52

19) wil: Build Y2 Wil

20) dsabremaster: Build G2 Kepler

21) ts52: Discover G2 Ts52 B3 Grover

22) wil: Build R1 Wil

23) dsabremaster: Trade G2 Y2 Kepler

24) ts52: Build G2 Grover

25) wil: Trade R3 G3 Wil

26) dsabremaster: Sacrifice G3 Dsabremaster
Build G2 Kepler
Build G3 Kepler
Build G3 Dsabremaster

27) ts52: Move R1 Ts52 Grover

28) wil: Build R2 Wil

29) dsabremaster: Sacrifice G3 Kepler
Build G3 Kepler
Build Y2 Kepler
Build R2 Dsabremaster

30) ts52: Build R2 Ts52

31) wil: Build Y3 G2

32) dsabremaster: Sacrifice Y2 Kepler
Discover G2 Kepler R2 Aurora
Move Y2 Kepler Aurora

33) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Ts52
Build R3 Grover

34) wil: Build R3 Wil

35) dsabremaster: Discover R1 Dsabremaster Y3 Telas

36) ts52: Move R3 Ts52 Telas

37) wil: Move G3 Wil Aurora

38) dsabremaster: Sacrifice Y2 Aurora
Discover G2 Aurora B3 Abyss
Move R1 Telas Kepler

39) ts52: Sacrifice G2 Grover
Build G2 Grover
Build R3 Telas

40) wil: Build Y2 G2

41) dsabremaster: Trade G2 Y2 Abyss

42) ts52: Trade R3 Y3 Grover

43) wil: Sacrifice Y2 G2
Move G3 Aurora Abyss
Move R2 Wil G2

44) dsabremaster: Move Y2 Abyss Kepler
	wil: I think we are about the longest running multiplayer hw i've been in...
	dsabremaster: Sorry for the Delay

45) ts52: Discover R3 Telas Y2 Bigbird

46) wil: Build Y3 G2

47) dsabremaster: Move Y2 Kepler G2
Catastrophe G2 Yellow

48) ts52: Sacrifice G2 Grover
Build R2 Bigbird
Build R3 Grover

49) wil: Build G2 Abyss

50) dsabremaster: Trade G1 Y1 Kepler

51) ts52: Move R3 Grover G2

52) wil: Move R1 Wil G2

53) dsabremaster: Build Y2 Kepler

54) ts52: Attack R2N G2

55) wil: Discover Y1 Wil G2 Gee2
	wil: d y1 wil g2 gee2

56) dsabremaster: Discover G1 Dsabremaster Y3 Spiral
	wil: always feel silly when I do that....

57) ts52: Build Y3 Grover

58) wil: Sacrifice Y1 Wil
Move R1 G2 Abyss

59) dsabremaster: Build G1 Dsabremaster

60) ts52: Move Y3 Grover G2

61) wil: Build Y1 Gee2

62) dsabremaster: Move G1 Dsabremaster Spiral

63) ts52: Move G1 Ts52 Telas

64) wil: Move Y1 Gee2 Abyss

65) dsabremaster: Discover Y1 Kepler B2 Orion

66) ts52: Move R3 G2 Spiral

67) wil: Trade Y1 B1 Abyss

68) dsabremaster: Move G1 Spiral Orion

69) ts52: Attack G1E Spiral

70) wil: Build Y1 Gee2

71) dsabremaster: Trade Y1 B1 Orion

72) ts52: B Y1 G2

73) wil: Move Y1 Gee2 Abyss

74) dsabremaster: Sacrifice G1 Orion
Build G1 Kepler

75) ts52: Move R3 Spiral Orion

76) wil: Move B1 Abyss Gee2

77) dsabremaster: Sacrifice G3 Kepler
Build G3 Kepler
Build B1 Orion
Build B2 Orion

78) ts52: Sacrifice Y1 G2
Move R3 Orion Spiral
Catastrophe Orion Blue

79) wil: Sacrifice G3 Abyss
Build G3 Abyss
Build Y1 Abyss
Build B1 Gee2

80) ts52: Move R3 Spiral Kepler
	wil: another multiplayer game bites the dust...I'm gonna remove this from challenges....we so rarely get to the end of them.
	ts52: Might just be delayed over the holidays. I've been remiss in making my plays in other games.
	wil: yup...tis the season of the reason not to end games prematurely...


81) wil: Move G2 Abyss Dsabremaster
	wil: now this is a fine mess..
	ts52: d'oh! sorry everyone. moving now.
	ts52: oh, didn't realize he resigned.. yeah, this will be interesting

82) ts52: A G3E Kepler

83) wil: Move G2 Dsabremaster Spiral
	wil: What are you toying with that other game?  You never go that easy on me...

84) ts52: M R3 Bigbird Spiral

85) wil: Move G3 Abyss Dsabremaster

86) ts52: Attack G2N Spiral

87) wil: Discover B1 Gee2 B3 B3

88) ts52: Attack Y2E Kepler

89) wil: Sacrifice R1 Abyss
Attack R2E Dsabremaster
	wil: I've discontinued my challenge on multiplayer...I like binary so much better...

90) ts52: Attack R1E Kepler
	ts52: Yeah, I definitely prefer binary...

91) wil: Attack G3E Dsabremaster

92) ts52: Move R3 Kepler Abyss

93) wil: Move B1 Gee2 Abyss

94) ts52: Attack Y1N Abyss

95) wil: Sacrifice G3 Dsabremaster
Build B1 Abyss
Build B2 Abyss
Build B2 B3
Catastrophe Abyss B

96) ts52: Build G3 Telas

97) wil: Move Y1 Gee2 B3

98) ts52: Sacrifice G3 Telas
Build G2 Grover
Build Y1 Kepler
Build G3 Telas

99) wil: Move G3 Dsabremaster B3

100) ts52: Sacrifice G3 Telas
Build G3 Telas
Build R1 G2
Build R3 Bigbird

101) wil: Move B1 B3 Ts52

102) ts52: Attack B1N Ts52

103) wil: Build Y1 B3

104) ts52: Move B1 Ts52 Telas

105) wil: Build B1 B3

106) ts52: Move B1 Telas G2

107) wil: Move B1 B3 Dsabremaster
	wil: You are like a cat playing with a half dead mouse...when are you gonna put me outta my misery?

108) ts52: Move R3 Telas Dsabremaster
	ts52: Sorry. I'll focus on ending this. Been on vacation...
	wil: no worries...you've been moving....just not in for the kill...I think your intending on owning every ship before you take me out...
	wil: Where did you go on holiday?

	wil: very cool....  memories are worth making...
	wil: there was just no getting anywhere here...  You've had me for a while and you couldn't even make a mistake disasterous enough for me to catch up.
	ts52: Fair enough. Thanks for the game!
	wil: thank you


26419)
Variants: "Unrated"
Started: 2014.11.6, Ended: 2014.11.13
Participants: fogus (S), dsabremaster (N)
Winner: fogus

1) dsabremaster: Homeworld G1 R2 B3

2) fogus: Homeworld B1 Y2 G3

3) dsabremaster: Build B1 Dsabremaster

4) fogus: Build G1 Fogus

5) dsabremaster: Trade B1 G1 Dsabremaster
	fogus: Thanks (again) for the game.  I'll try my best to provide a more convincing challenge this time. 
	dsabremaster: No problem. I actually have more fun when I don't have to worry that any move I make might be the one that dooms me... 

6) fogus: Build G2 Fogus
	fogus: That's part of the reason why I tend to only play unrated games on this site.  It's too easy to get stressed about ratings and such.

7) dsabremaster: Build G2 Dsabremaster

8) fogus: Discover G1 Fogus Y3 Turtle

9) dsabremaster: Trade G1 Y1 Dsabremaster

10) fogus: Build G1 Fogus

11) dsabremaster: Discover G2 Dsabremaster R3 Requiem

12) fogus: Trade G1 R1 Fogus

13) dsabremaster: Build Y1 Dsabremaster

14) fogus: Build R1 Fogus

15) dsabremaster: Build B1 Dsabremaster

16) fogus: Move G3 Fogus Requiem

17) dsabremaster: Build G1 Requiem

18) fogus: Sacrifice G3 Requiem
Build G2 Turtle
Build G3 Fogus
Build G3 Turtle
	dsabremaster: I think you might have jumped the gun there, just a little.

19) dsabremaster: Sacrifice Y1 Dsabremaster
Discover G2 Requiem Y2 Sigma-2

20) fogus: Move G3 Turtle Sigma-2
	dsabremaster: Or maybe I jumped the gun in thinking that you had. O.o

21) dsabremaster: Build G3 Requiem

22) fogus: Sacrifice R1 Fogus
Attack G2 Sigma-2

23) dsabremaster: Move B1 Dsabremaster Requiem

24) fogus: Build R1 Fogus

25) dsabremaster: Sacrifice G3 Requiem
Build G3 Requiem
Build B1 Dsabremaster
Build B2 Requiem

26) fogus: Trade G2 Y2 Fogus

27) dsabremaster: Build Y1 Dsabremaster

28) fogus: Build G2 Fogus

29) dsabremaster: Move Y1 Dsabremaster Requiem

30) fogus: Trade G3 R3 Fogus

31) dsabremaster: Trade B1 R1 Dsabremaster

32) fogus: Build G3 Fogus
	fogus: Hmmm, catastrophe didn't quite work the way that I thought. :(
	fogus: Back to re-reading the rules to make sure I didn't miss anything else.
	dsabremaster: How did you think it worked?

33) dsabremaster: Sacrifice G3 Requiem
Build G3 Requiem
Build Y1 Requiem
Build R2 Dsabremaster
	fogus: I thought that it destroyed all ships in the system, not just the same color.  Needless to say, that changed my plans drastically. :(

34) fogus: Sacrifice Y2 Fogus
Move R1 Fogus Turtle
Move R1 Turtle Dsabremaster
Catastrophe Dsabremaster R
	dsabremaster: It will destroy all ships in the system if you destroy the star.

35) dsabremaster: Sacrifice G3 Requiem
Build G3 Requiem
Build Y2 Requiem
Build Y3 Dsabremaster

36) fogus: Move G3 Sigma-2 Dsabremaster
	fogus: That was the missing part of my understanding... the connection between the star and the ships at it.

37) dsabremaster: Sacrifice Y3 Dsabremaster
Move G3 Requiem Dsabremaster
Move B2 Requiem Dsabremaster
Move Y2 Requiem Dsabremaster

38) fogus: Move G1 Turtle Dsabremaster
Catastrophe Dsabremaster G
	dsabremaster: wow, I baked myself. And I was only one mistake from victory...

	dsabremaster: Luckily there's usually plenty of time to think about it. Also, I decided not to just give up. Probably didn't change the outcome though...
	fogus: Thanks for the re-match.  I really enjoyed the games.  
	dsabremaster: Ditto, and well done.


26428)
Started: 2014.11.6, Ended: 2014.11.11
Participants: Grissom (S), hellajoey (N)
Winner: hellajoey

1) hellajoey: Homeworld B1 Y2 G3

2) Grissom: Homeworld G3 B1 Y3

3) hellajoey: Build G1 Hellajoey

4) Grissom: Build Y1 Grissom

5) hellajoey: Build G1 Hellajoey
	Grissom: I didn't realize I can only build ships the same color as the ships I have. I thought it included the homeworld colors...

6) Grissom: Discover Y1 Grissom G2 Moria
	hellajoey: Yeah, there will probably be a few discoveries like that. That's a first game is for I guess :)
	hellajoey: Yeah, there will probably be a few discoveries like that. That's a first game is for I guess :)

7) hellajoey: Discover G1 Hellajoey B3 Blubot
	hellajoey: Luckily, you're not in a bad spot yet. I would trade that yellow for a green this move though.

8) Grissom: Build Y1 Moria

9) hellajoey: Trade G1 Y1 Hellajoey

10) Grissom: Build Y2 Grissom

11) hellajoey: Move Y1 Hellajoey Blubot

12) Grissom: Discover Y2 Grissom B2 Rohan

13) hellajoey: Build Y2 Blubot

14) Grissom: Build Y3 Grissom

15) hellajoey: Discover Y2 Blubot G2 Grunland

16) Grissom: Trade Y3 R3 Grissom

17) hellajoey: Build Y3 Grunland

18) Grissom: Build Y3 Grissom

19) hellajoey: Sacrifice Y3 Grunland
Move Y1 Blubot Grunland
Move Y1 Grunland Grissom
Move Y2 Grunland Grissom
Catastrophe Grissom Yellow

20) Grissom: Trade Y2 G2 Rohan

21) hellajoey: Build G1 Hellajoey

22) Grissom: Build R1 Grissom

23) hellajoey: Build G1 Blubot

24) Grissom: Move Y1 Moria Grissom

25) hellajoey: Sacrifice G3 Hellajoey
Build G2 Blubot
Build G3 Hellajoey
Build G3 Hellajoey

26) Grissom: Move Y1 Grissom Rohan

27) hellajoey: Trade G1 Y1 Blubot

28) Grissom: Trade R3 Y3 Grissom

29) hellajoey: Discover G3 Hellajoey B3 Ruddin

30) Grissom: Build Y2 Grissom

31) hellajoey: Trade G1 B1 Blubot

32) Grissom: Sacrifice G2 Rohan
Build Y2 Rohan
Build Y3 Moria

33) hellajoey: Build Y3 Blubot

34) Grissom: Sacrifice Y2 Grissom
Move Y1 Rohan Blubot
Move Y1 Moria Blubot
Catastrophe Blubot Yellow

35) hellajoey: Build G1 Ruddin
	hellajoey: Crap. After I just got done telling you I'm always watching out for that :)

36) Grissom: Trade Y2 G2 Rohan

37) hellajoey: Sacrifice G3 Hellajoey
Build G1 Blubot
Build G3 Hellajoey
Build B2 Blubot

38) Grissom: Discover Y3 Moria B3 Thebluegate

39) hellajoey: Trade B2 Y2 Blubot

40) Grissom: Build Y1 Grissom

41) hellajoey: Discover B1 Blubot G2 Gruner

42) Grissom: Move Y1 Grissom Rohan

43) hellajoey: Sacrifice G3 Hellajoey
Build G3 Hellajoey
Build B2 Gruner
Build B2 Gruner

44) Grissom: Trade Y3 R3 Grissom

45) hellajoey: Trade G1 R1 Hellajoey

46) Grissom: Move G2 Rohan Thebluegate

47) hellajoey: Sacrifice G3 Ruddin
Build G1 Hellajoey
Build G3 Ruddin
Build Y1 Blubot
	hellajoey: I lied. I did a move ;)
	hellajoey: undid

48) Grissom: Move Y1 Rohan Thebluegate

49) hellajoey: Move Y1 Blubot Gruner

50) Grissom: Move Y3 Thebluegate Gruner

51) hellajoey: Sacrifice G3 Hellajoey
Build G3 Hellajoey
Build Y1 Gruner
Build Y2 Gruner
Catastrophe Gruner Yellow

52) Grissom: Build Y1 Thebluegate

53) hellajoey: Build Y1 Blubot

54) Grissom: Trade R3 Y3 Grissom

55) hellajoey: Move Y1 Blubot Gruner

56) Grissom: Trade Y1 R1 Thebluegate

57) hellajoey: Move B1 Gruner Grissom

58) Grissom: Sacrifice G2 Thebluegate
Build Y1 Thebluegate
Build Y2 Grissom

59) hellajoey: Move B2 Gruner Grissom

60) Grissom: Build R2 Grissom

61) hellajoey: Move G1 Blubot Gruner

62) Grissom: Discover Y2 Grissom G2 Gondor

63) hellajoey: Discover G2 Blubot B2 Blub

64) Grissom: Build Y3 Grissom

65) hellajoey: Sacrifice G3 Ruddin
Build G3 Blub
Build R2 Hellajoey
Pass

66) Grissom: Build Y3 Gondor

67) hellajoey: Move B2 Gruner Grissom
Catastrophe Grissom Blue

68) Grissom: Sacrifice Y3 Gondor
Move Y1 Thebluegate Hellajoey
Move Y1 Thebluegate Hellajoey
Move Y3 Grissom Hellajoey
Catastrophe Hellajoey Yellow

69) hellajoey: Move G1 Gruner Grissom

70) Grissom: Sacrifice Y2 Gondor
Move R1 Thebluegate Hellajoey
Move R1 Grissom Hellajoey
Catastrophe Hellajoey Red

71) hellajoey: Sacrifice Y2 Blubot
Move G2 Blub Grissom
Move G3 Blub Grissom
Catastrophe Grissom Green

	Grissom: Good game
	hellajoey: Hey. Fun game. How's it goin'?


26463)
Variants: "Hard time"
Started: 2014.11.11, Ended: 2014.11.13
Participants: TeeTeeTee (S), wil (N)
Winner: TeeTeeTee

1) wil: Homeworld Y2 B1 G3

2) TeeTeeTee: Homeworld Y1 B3 G3
	wil: tis me an u agin...

3) wil: Build G1 Wil

4) TeeTeeTee: Build G1 Teeteetee

5) wil: Trade G1 B1 Wil
	TeeTeeTee: So it is! You know, half of the games of Homeworlds I've played have been against you. (Not that I mind, though: you play very quickly!)

6) TeeTeeTee: Trade G1 Y1 Teeteetee
	wil: lol...you need better players... we need to create more players...  

	wil: I think quickly has a lot to do with my downfall..


7) wil: Build B1 Wil

8) TeeTeeTee: Build Y1 Teeteetee

9) wil: Discover B1 Wil G3 G3

10) TeeTeeTee: Discover Y1 Teeteetee G2 Spite

11) wil: Build B2 G3
	wil: Nice, I see the error of my ways...finally

12) TeeTeeTee: Sacrifice G3 Teeteetee
Build Y2 Spite
Build Y2 Spite
Build Y3 Teeteetee

13) wil: Build B2 Wil

14) TeeTeeTee: Trade Y3 G3 Teeteetee

15) wil: Trade B2 R2 Wil

16) TeeTeeTee: Build Y3 Teeteetee

17) wil: Discover R2 Wil Y3 Y3

18) TeeTeeTee: Trade Y3 R3 Teeteetee
	wil: amazing how I lost this game so early nice play

19) wil: Build G1 Wil

20) TeeTeeTee: Build Y3 Teeteetee

	TeeTeeTee: Yeah, I think that this one was my game from as soon as I took the last y1. A possible stalling move would have been to discover a g3 as soon as I sacrificed by g3: this would have also have stopped you from being able to sacrifice your own g3, but would have certainly slowed me down too.

You've made this mistake before! The first seven moves we each played in this game were identical to this one: http://superdupergames.org/main.html?page=archive_play&gid=26272 - I tried to monopolise yellow, you tried to monopolise blue, but choosing the colour with fewer medium pyramids in the stash gave me the advantage.

Thanks for the game. Feel free to re-challenge me, as this one was quite brief.
	wil: Yeah..story of my life making the same mistakes over and over...  I'ma gonna wait and see if you get a real challenger, if not, I'll step back in as a sparring partner and hope to give you a little run for your money...
	TeeTeeTee: I think you're a little harsh on yourself, here. You've played stronger games and weaker games: I thought that the previous game we played could have gone either way right up until near the the end. The other relatively recent game we played (#26038) was close, and I felt that I was lucky to win that one. It does feel like games are decided on just one or two errors these days, though... 


26418)
Variants: "Hard time"
Started: 2014.11.12, Ended: 2014.12.10
Participants: dsabremaster (S), wil (N)
Winner: wil

1) wil: Homeworld B3 G2 Y3

2) dsabremaster: Homeworld B1 Y2 G3

3) wil: Build Y1 Wil

4) dsabremaster: Build G1 Dsabremaster

5) wil: Build Y1 Wil

6) dsabremaster: Build G1 Dsabremaster

7) wil: Discover Y1 Wil B1 B1

8) dsabremaster: Discover G1 Dsabremaster Y3 Depot

9) wil: Trade Y1 R1 Wil

10) dsabremaster: Trade G1 R1 Dsabremaster

11) wil: Build Y1 Wil

12) dsabremaster: Build G1 Dsabremaster

13) wil: Trade Y1 G1 Wil

14) dsabremaster: Trade G1 Y1 Dsabremaster

15) wil: Move G1 Wil B1

16) dsabremaster: Trade Y1 B1 Dsabremaster

17) wil: Build R1 Wil

18) dsabremaster: Build R2 Dsabremaster

19) wil: Build R2 Wil

20) dsabremaster: Move B1 Dsabremaster Depot

21) wil: Move R2 Wil B1

22) dsabremaster: Build B2 Depot

23) wil: Move R1 Wil B1

24) dsabremaster: Build B2 Depot

25) wil: Trade R2 B2 B1

26) dsabremaster: Discover B2 Depot R2 Dais

27) wil: Build Y1 B1

28) dsabremaster: Trade R2 Y2 Dsabremaster

29) wil: Discover B2 B1 G3 G3

30) dsabremaster: Discover B1 Depot G1 Knoll

31) wil: Build B3 G3

32) dsabremaster: Build B3 Knoll

33) wil: Build R2 B1

34) dsabremaster: Build G2 Dsabremaster

35) wil: Trade R2 Y2 B1

36) dsabremaster: Build R2 Dsabremaster

37) wil: Trade B3 G3 G3

38) dsabremaster: Sacrifice G3 Dsabremaster
Build G2 Depot
Build B3 Depot
Build G3 Dsabremaster

39) wil: Sacrifice Y1 B1
Move G3 G3 B1


40) dsabremaster: Trade B1 Y1 Knoll

41) wil: Sacrifice G3 B1
Build R2 B1
Build R3 Wil
Build G3 B1

42) dsabremaster: Sacrifice B2 Dais
Trade B3 R3 Depot
Trade B3 Y3 Knoll

43) wil: Sacrifice G3 B1
Build G3 B1

Build R2 Wil
Build R3 B1

44) dsabremaster: Sacrifice Y2 Dsabremaster
Move R1 Dsabremaster Depot
Move R1 Depot B1
Catastrophe B1 Red

45) wil: Move R2 Wil B1

46) dsabremaster: Sacrifice G3 Dsabremaster
Build G3 Dsabremaster
Build R1 Dsabremaster
Build B1 Depot

47) wil: Sacrifice G3 B1
Build G3 B1
Build B2 G3
Build B3 G3

48) dsabremaster: Move B1 Depot Knoll

49) wil: Discover Y1 B1 B3 B3

50) dsabremaster: Move B1 Knoll G3
Catastrophe G3 Blue

51) wil: Sacrifice G3 B1
Build G3 B1
Build Y1 B1
Build Y2 B3

52) dsabremaster: Move B2 Depot Knoll

53) wil: Sacrifice Y2 B1
Move Y1 B3 Knoll
Move Y2 B3 Knoll
Catastrophe Knoll Y

54) dsabremaster: Sacrifice G3 Dsabremaster
Build G3 Dsabremaster
Build B1 Knoll
Build B2 Knoll

55) wil: Trade R2 B2 B1

56) dsabremaster: Trade B2 Y2 Knoll

57) wil: Move R3 Wil Knoll

58) dsabremaster: Sacrifice B2 Knoll
Trade B1 R1 Knoll
Trade Y2 R2 Knoll

59) wil: Sacrifice G3 B1
Build G3 B1
Build R2 Knoll
Build R3 Wil
Catastrophe Knoll R

60) dsabremaster: Discover G1 Depot Y1 Ryloth

61) wil: D B2 B1 G3 G3

62) dsabremaster: Trade R1 Y1 Dsabremaster

63) wil: M R3 Wil Ryloth

64) dsabremaster: Sacrifice G3 Dsabremaster
Build G1 Ryloth
Build G3 Dsabremaster
Build R1 Dsabremaster

65) wil: Attack G1 Ryloth

66) dsabremaster: Discover Y1 Dsabremaster R3 Echo

67) wil: Sacrifice G3 B1
Build G3 B1
Build B1 G3
Build B2 G3

68) dsabremaster: Discover G1 Ryloth B2 Midway

69) wil: Sacrifice G3 B1
Build G3 B1
Build Y2 B1
Build R1 Ryloth

70) dsabremaster: Sacrifice G3 Dsabremaster
Build G3 Dsabremaster
Build R2 Depot
Build Y2 Echo

71) wil: Sacrifice G3 B1
Build G3 B1
Build Y3 Wil
Build R2 Wil

72) dsabremaster: Sacrifice Y1 Echo
Discover R3 Depot Y1 Pit

73) wil: Sacrifice Y2 B1
Move G3 B1 Depot
Move B2 G3 Ryloth

74) dsabremaster: Move R2 Depot B1

75) wil: Sacrifice Y1 B1
Move G1 B1 G3

76) dsabremaster: Sacrifice G3 Dsabremaster
Build G3 Dsabremaster
Build Y1 Echo
Build Y2 Echo

77) wil: Sacrifice R1 Wil
Attack G2 Depot

78) dsabremaster: Move Y1 Echo B1

79) wil: Sacrifice Y3 Wil
Move G1 G3 Dsabremaster
Move R1 Ryloth G3
Move G2 Depot Dsabremaster
Catastrophe Dsabremaster G

80) dsabremaster: Sacrifice Y2 Echo
Move Y2 Echo Dsabremaster
Move R3 Pit Wil

81) wil: Attack R3 Wil
	wil: had to wait for the planets to align...
	dsabremaster: Welp. I knew it was coming, eventually. I got out-economied again.

82) dsabremaster: Sacrifice G1 Midway
Build R1 B1

83) wil: Sacrifice Y3 Wil
Move G3 Depot Dsabremaster
Move R2 Wil B1
Move R1 G3 B1
Catastrophe B1 R
	wil: yes, monopolies cause problems... but lol.. I had two plans in place depending on what you did...and I almost fired one off after I saw what you did in your homeworld...  and almost did it until I took one last look and saw what you did in MY homeworld!!  While we are but moves away from the end, that was a good game.  I thought I had you early and you changed the universe on me.  Ready for more whenever you are...
	dsabremaster: Yeah, I was hoping you might not notice... heh.
I thought I had a chance in the middle there but I managed to get out-manuevered again. I'll have to take a few more risks next time.

84) dsabremaster: Move Y1 B1 Wil

85) wil: Sacrifice R3 Ryloth
Attack R2 Dsabremaster
Attack R1 Dsabremaster
Attack Y2 Dsabremaster
	wil: Going for galactic domination now....

	wil: We send a team in to sanitize the ship, as rumors of there being yellow fever aboard... have no fear we will take good care of your women and children...


26519)
Variants: "Hard time"
Started: 2014.11.18, Ended: 2014.11.19
Participants: wil (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld Y1 B2 G3

2) wil: Homeworld B3 Y2 G3
	TeeTeeTee: Another re-challenge! Have a good game.

(Perhaps I should play some more non-ladder games, as I only ever make a conservative choice of homeworlds in these ladder games.)

3) TeeTeeTee: Build G1 Teeteetee

4) wil: Build G1 Wil
	wil: Yeah, I just signed up on the ladders of volcano an martian chess and put up challenges so I can learn those...

5) TeeTeeTee: Trade G1 Y1 Teeteetee

6) wil: Trade G1 Y1 Wil
	TeeTeeTee: Maybe I should give those two a go at some point... Homeworlds and Zendo were the only two pyramids games that have really leapt out at me so far. (I think Zendo works better in a pub than online, though: the SDG interface for Zendo is arcane and ineffective, and the game that I was running has completely fizzled out, now.)
	wil: Zendo was my first introduction to them...my daughter bought it at a game designer gathering, she met Kory, played the game with others there and wanted to get it..

7) TeeTeeTee: Build Y2 Teeteetee

8) wil: Build Y2 Wil
	wil: I still am working on the strategies involved in Martian Chess and Volcano...have yet to win a game (but I am might just have one soon)

9) TeeTeeTee: Discover Y1 Teeteetee G3 Leviathan
	wil: hmmm  am I still gonna make the same mistake?  I should have had a y3 homeworld?

10) wil: Discover Y1 Wil G1 G1

11) TeeTeeTee: Build Y3 Leviathan
	wil: i think that worx

12) wil: Build Y3 G1

13) TeeTeeTee: Move Y3 Leviathan G1
	TeeTeeTee: This game is very different from the last few: you've not been frozen out of yellow, or any other colour. By choosing to not have a y3 in your homeworld, you immediately made yellows the most advantageous ships to go for: if I'd done anything else but go for a large yellow and let you do the same, then I think I'd have been at a great disadvantage. 

I'll have to stop and think about my next move for a bit, here. Up till now, my moves have been mostly automatic, as the opening was more-or-less decided by your choice of homeworld.
	TeeTeeTee: Let's try this.

14) wil: Move Y3 G1 Leviathan
	wil: oh my
	wil: incredible move... so many ways to make a big costly mistake on my part!  let us hope this isn't one of them.

15) TeeTeeTee: Build Y3 Leviathan

16) wil: Move Y3 Leviathan Teeteetee

17) TeeTeeTee: Trade Y2 R2 Teeteetee
	wil: I just don't know...

18) wil: Discover Y3 Teeteetee R3 R3
	TeeTeeTee: I wouldn't have done that. I don't believe you can both keep that y3 and stop me invading your homeworld on my next turn, now.
	wil: amazing defeat yet agin...

19) TeeTeeTee: Move Y3 G1 Wil

20) wil: Move Y1 G1 Wil
Catastrophe Wil Y
	TeeTeeTee: I think this is my game again, yes. You can blow up your homeworld and my large yellow, but I'll invade in a turn or two anyway as our homeworlds will be directly connected.

21) TeeTeeTee: Build R1 Teeteetee
	wil: I think I lose before I challenge with you!

22) wil: Build G1 Wil

23) TeeTeeTee: Move G3 Teeteetee Wil

24) wil: Sacrifice G3 Wil
Build G1 Wil
Build G1 Wil
Build Y1 R3
Catastrophe Wil G
	TeeTeeTee: I think this game went badly for you because you sort of gave up as soon as I moved my y3 to g1. I was definitely ahead at that point, but the game wasn't over! Once you made the unfortunate move of invading with the y3, that was when the game was practically decided.
	wil: I didn't see any move at that time...the move I made I missed you getting the red...



26402)
Variants: "Hard time"
Started: 2014.11.19, Ended: 2014.12.1
Participants: SilentTitan (S), DetectiveAzul (N)
Winner: DetectiveAzul

1) DetectiveAzul: Homeworld B1 G2 Y3

2) SilentTitan: Homeworld B2 R3 G3

3) DetectiveAzul: Build Y1 Detectiveazul

4) SilentTitan: Build G1 Silenttitan

5) DetectiveAzul: Trade Y3 R3 Detectiveazul

6) SilentTitan: Trade G1 Y1 Silenttitan

7) DetectiveAzul: Build R1 Detectiveazul

8) SilentTitan: Build G1 Silenttitan

9) DetectiveAzul: Build R1 Detectiveazul

10) SilentTitan: Trade G1 B1 Silenttitan

11) DetectiveAzul: Trade R1 G1 Detectiveazul

12) SilentTitan: Build B1 Silenttitan

13) DetectiveAzul: Trade R3 B3 Detectiveazul

14) SilentTitan: Discover B1 Silenttitan G1 Sol

15) DetectiveAzul: Build B2 Detectiveazul

16) SilentTitan: Sacrifice G3 Silenttitan
Build B2 Sol
Build B3 Sol
Build B3 Silenttitan

17) DetectiveAzul: Discover B2 Detectiveazul R3 Flordealeli

18) SilentTitan: Trade B1 R1 Sol

19) DetectiveAzul: Trade B3 Y3 Detectiveazul

20) SilentTitan: Trade B3 G3 Silenttitan

21) DetectiveAzul: Sacrifice Y1 Detectiveazul
Move B2 Flordealeli Detectiveazul

22) SilentTitan: Trade B2 Y2 Sol

23) DetectiveAzul: Build Y1 Detectiveazul

24) SilentTitan: Build B1 Sol

25) DetectiveAzul: Trade B2 R2 Detectiveazul

26) SilentTitan: Discover B3 Sol G3 Soul

27) DetectiveAzul: Trade R2 B2 Detectiveazul

28) SilentTitan: Build B2 Soul

29) DetectiveAzul: Trade B2 R2 Detectiveazul



26484)
Variants: "Hard time"
Started: 2014.11.19, Ended: 2014.11.19
Participants: DetectiveAzul (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld R1 B2 G3

2) DetectiveAzul: Homeworld B1 G2 Y3
	TeeTeeTee: Hello, and welcome!

3) TeeTeeTee: Build G1 Teeteetee
	DetectiveAzul: Hello!

4) DetectiveAzul: Build Y1 Detectiveazul

5) TeeTeeTee: Trade G1 B1 Teeteetee

6) DetectiveAzul: Trade Y1 G1 Detectiveazul

7) TeeTeeTee: Build B1 Teeteetee

8) DetectiveAzul: Discover G1 Detectiveazul R3 Kamino

9) TeeTeeTee: Build G1 Teeteetee

10) DetectiveAzul: Build G1 Kamino

11) TeeTeeTee: Build G2 Teeteetee

12) DetectiveAzul: Build Y1 Detectiveazul

13) TeeTeeTee: Trade G2 Y2 Teeteetee

14) DetectiveAzul: Build Y1 Detectiveazul

15) TeeTeeTee: Discover G1 Teeteetee Y3 Frodo

16) DetectiveAzul: Trade Y1 R1 Detectiveazul

17) TeeTeeTee: Build G2 Teeteetee

18) DetectiveAzul: Build Y1 Detectiveazul

19) TeeTeeTee: Sacrifice G3 Teeteetee
Build G2 Frodo
Build G3 Frodo
Build G3 Teeteetee

20) DetectiveAzul: Sacrifice Y3 Detectiveazul
Move G1 Kamino Detectiveazul
Move G1 Detectiveazul Frodo
Move Y1 Detectiveazul Kamino
Catastrophe Frodo G

21) TeeTeeTee: Trade G3 R3 Teeteetee

22) DetectiveAzul: Build R1 Detectiveazul

23) TeeTeeTee: Sacrifice Y2 Teeteetee
Move G2 Teeteetee Kamino
Move G2 Kamino Detectiveazul

	TeeTeeTee: Thanks for the game! I must say, you do have a surprisingly aggressive style - I've not played a game with a short universe before. It certainly makes for an interesting change from most of the games that I play, though! Have you played Homeworlds much before?


26426)
Variants: "Unrated"
Started: 2014.11.21, Ended: 2014.12.28
Participants: dsabremaster (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld B1 R2 G3

2) dsabremaster: Homeworld Y1 G3 B3

3) Remneb: Build G1 Remneb

4) dsabremaster: Build B1 Dsabremaster

5) Remneb: Trade G1 Y1 Remneb

6) dsabremaster: Trade B1 Y1 Dsabremaster

7) Remneb: Build Y2 Remneb

8) dsabremaster: Build B1 Dsabremaster

9) Remneb: Trade Y1 B1 Remneb

10) dsabremaster: Trade B1 G1 Dsabremaster

11) Remneb: Build G1 Remneb

12) dsabremaster: Discover G1 Dsabremaster B2 Union

13) Remneb: Discover B1 Remneb Y3 Thor

14) dsabremaster: Build B1 Dsabremaster

15) Remneb: Build Y1 Remneb

16) dsabremaster: Build Y2 Dsabremaster

17) Remneb: Move Y1 Remneb Thor

18) dsabremaster: Move Y1 Dsabremaster Union

19) Remneb: Move B1 Thor Union

20) dsabremaster: Build G1 Union

21) Remneb: Move Y1 Thor Union

22) dsabremaster: Discover G1 Union Y3 Felix

23) Remneb: Trade B1 R1 Union

24) dsabremaster: Trade Y2 R2 Dsabremaster

25) Remneb: Attack Y1 Union

26) dsabremaster: Sacrifice R2 Dsabremaster
Attack R1N Union
Attack Y1N Union

27) Remneb: Discover Y1 Union G3 Drako

28) dsabremaster: Build G2 Felix

29) Remneb: Build Y2 Drako

30) dsabremaster: Build Y2 Union

31) Remneb: Build Y3 Remneb

32) dsabremaster: Discover Y1 Union B3 Khalla

33) Remneb: Discover Y3 Remneb Y3 Altar

34) dsabremaster: Discover G1 Felix B1 Opal

35) Remneb: Move G1 Remneb Altar

36) dsabremaster: Build G2 Opal

37) Remneb: Move Y3 Altar Union

38) dsabremaster: Move R1 Union Altar

39) Remneb: Trade Y3 R3 Union

40) dsabremaster: Sacrifice Y2 Union
Move G1 Union Khalla
Move G2 Opal Altar

41) Remneb: Sacrifice Y1 Drako
Move R3 Union Altar



26536)
Variants: "No undo"
Started: 2014.11.22, Ended: 2014.11.26
Participants: hellajoey (S), Grissom (N)
Winner: hellajoey

1) Grissom: Homeworld Y2 B1 G3

2) hellajoey: Homeworld B3 Y1 G3

3) Grissom: Build G1 Grissom

4) hellajoey: Build G1 Hellajoey

5) Grissom: Discover G1 Grissom B3 Narnia

6) hellajoey: Discover G1 Hellajoey B2 Blubot

7) Grissom: Trade G1 Y1 Narnia

8) hellajoey: Build G1 Hellajoey

9) Grissom: Build G1 Grissom

10) hellajoey: Build G2 Blubot

11) Grissom: Move G1 Grissom Narnia

12) hellajoey: Trade G1 Y1 Blubot

13) Grissom: Build G1 Grissom

14) hellajoey: Build Y2 Blubot

15) Grissom: Discover G1 Grissom B3 Telmar

16) hellajoey: Move Y2 Blubot Hellajoey

17) Grissom: Build Y2 Narnia

18) hellajoey: Build Y3 Blubot

19) Grissom: Sacrifice Y2 Narnia
Move G1 Narnia Blubot
Move G1 Blubot Hellajoey

20) hellajoey: Trade G1 R1 Hellajoey

21) Grissom: Build G1 Hellajoey

22) hellajoey: Trade G3 R3 Hellajoey

23) Grissom: Build G2 Grissom

24) hellajoey: Attack G1 Hellajoey

25) Grissom: Sacrifice G3 Grissom
Build G2 Hellajoey
Build G3 Grissom
Build G3 Telmar

26) hellajoey: Build G3 Blubot

27) Grissom: Trade G2 Y2 Hellajoey

28) hellajoey: Attack Y2 Hellajoey

29) Grissom: Sacrifice G3 Grissom
Build G2 Hellajoey
Build Y3 Narnia
Build G3 Grissom

30) hellajoey: Move G3 Blubot Narnia

31) Grissom: Sacrifice Y3 Narnia
Move Y1 Narnia Blubot
Move Y1 Blubot Hellajoey
Discover G2 Grissom Y3 Kalormen
Catastrophe Hellajoey Yellow

32) hellajoey: Sacrifice Y1 Blubot
Move G3 Narnia Grissom

33) Grissom: Trade G3 R3 Grissom

34) hellajoey: Sacrifice R1 Hellajoey
Attack R3 Grissom



26479)
Started: 2014.11.24, Ended: 2015.2.15
Participants: rosbi (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B3 G3

2) rosbi: Homeworld B3 R2 G3

3) ts52: Build G1 Ts52

4) rosbi: Build G1 Rosbi

5) ts52: Discover G1 Ts52 Y2 Bigbird

6) rosbi: Trade G1 Y1 Rosbi

7) ts52: Build G1 Ts52

8) rosbi: Build G1 Rosbi

9) ts52: Build G2 Bigbird

10) rosbi: Trade G1 R1 Rosbi

11) ts52: Trade G1 R1 Ts52

12) rosbi: Discover R1 Rosbi Y1 Smallworm

13) ts52: Build G1 Ts52

14) rosbi: Build Y2 Rosbi

15) ts52: Trade G1 B1 Ts52

16) rosbi: Move Y1 Rosbi Smallworm

17) ts52: Move B1 Ts52 Bigbird

18) rosbi: Build G1 Rosbi

19) ts52: Trade G2 R2 Bigbird

20) rosbi: Move Y2 Rosbi Smallworm

21) ts52: Build B1 Bigbird

22) rosbi: Discover Y1 Smallworm G2 Blackcat

23) ts52: Build B1 Bigbird

24) rosbi: Sacrifice G3 Rosbi
Build Y2 Blackcat
Build Y3 Smallworm
Build Y3 Blackcat

25) ts52: Discover B1 Bigbird Y3 Telly

26) rosbi: Move Y3 Smallworm Rosbi

27) ts52: Build B2 Bigbird

28) rosbi: Build G1 Rosbi

29) ts52: Build G2 Ts52

30) rosbi: Move G1 Rosbi Smallworm

31) ts52: S G2 Ts52
B G2 Ts52
B B2 Telly

32) rosbi: Build G2 Rosbi

33) ts52: Build G3 Bigbird

34) rosbi: Build G3 Smallworm

35) ts52: Discover B2 Bigbird R1 Elmo

36) rosbi: Trade G2 B2 Rosbi

37) ts52: Sacrifice G2 Ts52
Build G2 Ts52
Build B3 Elmo

38) rosbi: Build R2 Smallworm

39) ts52: Build R3 Bigbird

40) rosbi: Move R1 Smallworm Rosbi

41) ts52: Build R3 Ts52

42) rosbi: Build R3 Rosbi

43) ts52: Move G3 Bigbird Telly

44) rosbi: Sacrifice Y3 Rosbi
Move Y1 Blackcat Ts52
Move Y2 Blackcat Ts52
Move Y3 Blackcat Ts52
Catastrophe Ts52 Y

45) ts52: Trade B2 Y2 Elmo

46) rosbi: Trade R1 Y1 Rosbi
	ts52: sorry for the delay
	rosbi: no problem, happy new year !

47) ts52: S Y2 Elmo
M G1 Bigbird Smallworm
M G2 Ts52 Smallworm
C Smallworm G

48) rosbi: Build Y1 Rosbi

49) ts52: M R3 Bigbird Smallworm

50) rosbi: Move Y1 Rosbi Smallworm

51) ts52: Build G1 Telly

52) rosbi: Build G1 Rosbi

53) ts52: Attack R2S Smallworm

54) rosbi: Move Y1 Rosbi Smallworm
Catastrophe Smallworm Y

55) ts52: Move G1 Telly Elmo

56) rosbi: Trade G1 Y1 Rosbi

57) ts52: Build B2 Elmo

58) rosbi: Build Y1 Rosbi

59) ts52: Trade B2 Y2 Elmo

60) rosbi: Discover Y1 Rosbi G1 Pinewood

61) ts52: Build G2 Ts52

62) rosbi: Build G2 Rosbi

63) ts52: Sacrifice G3 Ts52
Build G2 Elmo
Build G3 Ts52
Build G3 Telly



26099)
Variants: "Unrated, Hard time"
Started: 2014.11.24, Ended: 2014.11.30
Participants: Rizzotto (S), DetectiveAzul (N), wil (E)
Winner: Rizzotto

1) DetectiveAzul: Homeworld G3 B2 R3

2) wil: Homeworld B3 Y2 G3
	wil: I haven't played either of you in a binary game...feel free to challenge me!

3) Rizzotto: Homeworld B3 G2 R3

4) DetectiveAzul: Build R1 Detectiveazul
	DetectiveAzul: Uhm, we're new at this game, only a week playing it, so we're not too goods. Playing here to learn and to have some fun :3

5) wil: Build G1 Wil
	wil: I blew it...and you followed suit....we now have a short universe...only one star between us all!

6) Rizzotto: Build R1 Rizzotto

7) DetectiveAzul: Trade R1 B1 Detectiveazul
	Rizzotto: ..fuck, I'm copying movements. Not intentional, I swear. I didn't have many options. 
	wil: What I am getting at is usually there is a protection level of two star systems between each homeworld...with all of us picking queens and drones only pawn systems will be in the middle, two moves, easy access to each...should be a short battle....you both are welcome to challenge me to a binary game, and each could 'monitor' the other game and I will do my best to teach you some ins and outs...(best way to win is by losing  and seeing different strategies play out)

8) wil: Build G1 Wil

9) Rizzotto: Trade R1 Y1 Rizzotto

10) DetectiveAzul: Build R1 Detectiveazul

11) wil: Discover G1 Wil Y1 Y1

12) Rizzotto: Build Y1 Rizzotto

13) DetectiveAzul: Trade R1 Y1 Detectiveazul

14) wil: Sacrifice G3 Wil
Build G1 Y1
Build G1 Wil
Build G2 Y1

15) Rizzotto: Build R1 Rizzotto

16) DetectiveAzul: Build Y2 Detectiveazul
	DetectiveAzul: Build y2 detectiveazul

17) wil: Build G2 Wil

18) Rizzotto: Build Y2 Rizzotto
	wil: in sooooo much trouble....can't count...

19) DetectiveAzul: Trade R3 G3 Detectiveazul

20) wil: Move G1 Y1 Detectiveazul

21) Rizzotto: Move Y1 Rizzotto Y1

22) DetectiveAzul: Sacrifice Y2 Detectiveazul
Move G3 Detectiveazul Y1
Move G3 Y1 Wil
Catastrophe Wil G

23) Rizzotto: Sacrifice Y2 Rizzotto
Move R3 Rizzotto Y1
Move R3 Y1 Detectiveazul

24) DetectiveAzul: Build Y2 Detectiveazul

25) Rizzotto: Attack Y2N Detectiveazul

26) DetectiveAzul: Build Y2 Detectiveazul

27) Rizzotto: Move R3 Detectiveazul Y1

28) DetectiveAzul: Trade Y2 R2 Detectiveazul

29) Rizzotto: Move R3 Y1 Detectiveazul

30) DetectiveAzul: Build R1 Detectiveazul

31) Rizzotto: Sacrifice R3 Detectiveazul
Attack R2N Detectiveazul
Attack R1N Detectiveazul
Attack Y1N Detectiveazul

32) DetectiveAzul: Build B1 Detectiveazul

33) Rizzotto: Sacrifice R2 Detectiveazul
Attack B1N Detectiveazul
Attack B1N Detectiveazul



26561)
Variants: "Unrated"
Started: 2014.11.24, Ended: 2014.11.24
Participants: DetectiveAzul (S), Rizzotto (N)
Winner: DetectiveAzul

1) Rizzotto: Homeworld G1 B2 Y3
	DetectiveAzul: Eres una putilla :3

2) DetectiveAzul: Homeworld B1 G2 R3
	Rizzotto: Cerdillo tú

3) Rizzotto: Discover Y3 Rizzotto B3 Azul



26563)
Variants: "Unrated"
Started: 2014.11.24, Ended: 2014.11.30
Participants: DetectiveAzul (S), Rizzotto (N)
Winner: DetectiveAzul

1) Rizzotto: Homeworld B1 G2 Y3

2) DetectiveAzul: Homeworld G3 B2 Y3
	Rizzotto: Puto juego

3) Rizzotto: Build Y1 Rizzotto

4) DetectiveAzul: Build Y1 Detectiveazul
	DetectiveAzul: jajaja, aprendiste a mandar mensajes

5) Rizzotto: Discover Y1 Rizzotto B3 Azulita
	Rizzotto: Ya había aprendido la otra vez :( 

6) DetectiveAzul: Trade Y1 G1 Detectiveazul

7) Rizzotto: Build Y1 Rizzotto

8) DetectiveAzul: Build G1 Detectiveazul

9) Rizzotto: Move Y3 Rizzotto Azulita

10) DetectiveAzul: Trade G1 R1 Detectiveazul

11) Rizzotto: Trade Y3 R3 Azulita

12) DetectiveAzul: Build R1 Detectiveazul

13) Rizzotto: Build Y1 Rizzotto

14) DetectiveAzul: Trade R1 B1 Detectiveazul

15) Rizzotto: Move Y1 Rizzotto Azulita

16) DetectiveAzul: Build Y2 Detectiveazul

17) Rizzotto: Trade Y1 R1 Azulita

18) DetectiveAzul: Discover B1 Detectiveazul G1 Putilla

19) Rizzotto: Move R3 Azulita Putilla

20) DetectiveAzul: Sacrifice Y2 Detectiveazul
Move B1 Putilla Azulita
Move B1 Azulita Rizzotto
	Rizzotto: Mi naaaaaaaaaaaveee
Me la controlarooon
Anoooooosheeeeeee
Cuando dormíaaaaaaa

	Rizzotto: (Y ahora Rizzotto puede adivinar perfectamente el adjetivo con el que DetectiveAzul va a calificar su última intervención)
	DetectiveAzul: Pues si no me hubieras dicho nada, no me habría dado cuenta. Así que gracias :3, te has contrarrestado tú sola.

21) Rizzotto: Build Y1 Rizzotto
	Rizzotto: Meh, lo hice por hacer la gracia y porque pegaba xD
	Rizzotto: De todas formas...¿qué comando es para controlar? Porque en principio no veo nada

22) DetectiveAzul: Trade B1 R1 Rizzotto
	DetectiveAzul: Attack es el comando para atacar y controlar

23) Rizzotto: Build Y2 Rizzotto

24) DetectiveAzul: Trade Y3 R3 Detectiveazul

25) Rizzotto: Trade Y2 R2 Rizzotto

26) DetectiveAzul: Build R2 Rizzotto

27) Rizzotto: Attack R2S Rizzotto

28) DetectiveAzul: Sacrifice R3 Detectiveazul
Attack Y1 Rizzotto
Attack Y1 Rizzotto
Pass

29) Rizzotto: Sacrifice R3 Putilla
Attack Y1 Rizzotto
Attack R1 Rizzotto
Pass

30) DetectiveAzul: Build Y2 Rizzotto

31) Rizzotto: Sacrifice R2 Rizzotto
Attack Y1S Rizzotto
Attack Y2 Rizzotto

32) DetectiveAzul: Build R2 Detectiveazul

33) Rizzotto: Trade Y1 G1 Rizzotto

34) DetectiveAzul: Trade R1 B1 Detectiveazul

35) Rizzotto: Move G1 Rizzotto Azulita

36) DetectiveAzul: Build R1 Detectiveazul

37) Rizzotto: Trade Y2 G2 Rizzotto

38) DetectiveAzul: Trade R1 Y1 Detectiveazul

39) Rizzotto: Trade G2 R2 Rizzotto

40) DetectiveAzul: Build Y2 Detectiveazul

41) Rizzotto: Move R2 Rizzotto Azulita

42) DetectiveAzul: Build Y2 Detectiveazul

43) Rizzotto: Discover R2 Azulita G1 Estaclaro

44) DetectiveAzul: Trade Y2 B2 Detectiveazul

45) Rizzotto: Build G2 Azulita

46) DetectiveAzul: Discover B2 Detectiveazul B1 Estrambolico

47) Rizzotto: Build Y2 Azulita

48) DetectiveAzul: Trade B2 G2 Estrambolico
	Rizzotto: *tiritirititiiii* wiggle wiggle wiggle *tiritirititiiii*

49) Rizzotto: Move G1 Azulita Estaclaro
	DetectiveAzul: They see me rollin'! They hatiiiinggg

50) DetectiveAzul: Build G3 Estrambolico
	Rizzotto: Batmaaaan, se va casar con Vicky Vaaale/ Batmaaan, se va a casar con Vicky Vaaale 
	DetectiveAzul: Build g3 estrambolico

51) Rizzotto: Build G3 Estaclaro

52) DetectiveAzul: Move G1 Detectiveazul Estaclaro
Catastrophe Estaclaro G

53) Rizzotto: Trade G2 R2 Azulita
	Rizzotto: Mierda xD

54) DetectiveAzul: Sacrifice Y2 Detectiveazul
Move G3 Estrambolico Azulita
Move G3 Azulita Rizzotto

55) Rizzotto: Move R2 Rizzotto Azulita

56) DetectiveAzul: Sacrifice R2 Detectiveazul
Attack R1 Rizzotto
Attack Y1 Rizzotto



26562)
Variants: "Unrated, Hard time"
Started: 2014.11.30, Ended: 2014.12.10
Participants: Rizzotto (S), DetectiveAzul (N), wil (E)
Winner: DetectiveAzul

1) DetectiveAzul: Homeworld G1 B2 Y3

2) wil: H Y3 B1 G3

3) Rizzotto: Homeworld G2 B3 R3 Rizzotto

4) DetectiveAzul: Build Y1 Detectiveazul

5) wil: B G1 Wil

6) Rizzotto: Build R1 Rizzotto

7) DetectiveAzul: Build Y1 Detectiveazul

8) wil: T G1 Y1 Wil

9) Rizzotto: Trade R1 Y1 Rizzotto

10) DetectiveAzul: Trade Y1 G1 Detectiveazul

11) wil: Build G1 Wil

12) Rizzotto: Build R1 Rizzotto
	wil: at least we are all protected two stars away from each other....one does look very angry though...

13) DetectiveAzul: Trade Y1 B1 Detectiveazul
	Rizzotto: hahaha 

14) wil: Discover G1 Wil B2 B2

15) Rizzotto: Build Y1 Rizzotto

16) DetectiveAzul: Build B1 Detectiveazul

17) wil: Build G1 Wil

18) Rizzotto: Trade Y1 B1 Rizzotto

19) DetectiveAzul: Build G2 Detectiveazul

20) wil: Build G2 B2

21) Rizzotto: Build B2 Rizzotto

22) DetectiveAzul: Trade G2 Y2 Detectiveazul

23) wil: Trade G2 B2 B2

24) Rizzotto: Build B3 Rizzotto
	Rizzotto: build b3 Rizzotto
	Rizzotto: oops 

25) DetectiveAzul: Trade Y3 R3 Detectiveazul
Catastrophe Rizzotto B

26) wil: Build G2 B2
	wil: now we see your evil plan...

27) Rizzotto: Move R3 Rizzotto Wil

28) DetectiveAzul: Build R1 Detectiveazul

29) wil: Trade G2 R2 B2
	wil: he attacks you and you lash out at me?  Is this a tag team?

30) Rizzotto: Attack G3E Wil
	Rizzotto: Nop, it was just easy. Sorry. 

31) DetectiveAzul: Build Y1 Detectiveazul

32) wil: Build G2 Wil

33) Rizzotto: Trade G3 R3 Wil
	wil: I don't know why I didn't just move into your system...murder suicide is my only way to go now...

34) DetectiveAzul: Sacrifice Y2 Detectiveazul
Discover R3 Detectiveazul R3 Armada
Move R3 Armada Rizzotto
	Rizzotto: You shouldn't have told me. 
	Rizzotto: shouldn't had*
	Rizzotto: No, wait....*have. My english is broken. Help. 

35) wil: Sacrifice B2 B2
Trade G1 R1 Wil
Trade Y1 R1 Wil
Catastrophe Wil R

36) Rizzotto: Build R1 Rizzotto
	wil: We were a peace loving people, growing, trading, and you came into my world with your big warships, and then converted our largest ship supplying food and aid to foreign lands into one of your ugly warships...they had to be eliminated, while our days in this galaxy are numbered, they will not be spent in war, but in personal growth and meditation...we could not allow such evil to win.
	wil: broken english.... where are you guys from?
	Rizzotto: Spain

37) DetectiveAzul: Attack Y1S Rizzotto

38) wil: Trade G1 Y1 B2

39) Rizzotto: Build R1 Rizzotto
	wil: Welcome to homeworlds!  do you have a physical set of pyramids to play with?  
	DetectiveAzul: Yep, but not official pyramids. I printed some cards with ships on the face, and the stars on the back, so i can bring them all anywhere.
	wil: Interesting... while you can't nest or tree some other games are lacking, but that should work well for this...  

40) DetectiveAzul: Move R3 Rizzotto Wil

	Rizzotto: The game won't let me cause catastrophe in my own system, sooo...That's it haha But we didn't double team, wil, I just made one horrible mistake after another.
	DetectiveAzul: Oh D: Game is concluded. 
	wil: lol...it is fine...first game ever for me for more than two players that really reached a conclusion
	wil: seriously, either of a both challenge me...
	Rizzotto: Will do later today. 


26585)
Variants: "Unrated"
Started: 2014.11.30, Ended: 2014.11.30
Participants: DetectiveAzul (S), Rizzotto (N)
Winner: DetectiveAzul

1) Rizzotto: Homeworld B3 G2 R3

2) DetectiveAzul: Homeworld G1 B1 R3 *

3) Rizzotto: Build R1 Rizzotto

4) DetectiveAzul: Build R1 Detectiveazul
	DetectiveAzul: If any ocasional watcher has following this game, is an experimental game to test universe 0-between steps

5) Rizzotto: Trade R1 Y1 Rizzotto

6) DetectiveAzul: Trade R1 Y1 Detectiveazul

7) Rizzotto: Build R1 Rizzotto

8) DetectiveAzul: Build R1 Detectiveazul

9) Rizzotto: Trade R1 G1 Rizzotto

10) DetectiveAzul: Trade R1 G1 Detectiveazul

11) Rizzotto: Build R1 Rizzotto

12) DetectiveAzul: Build R1 Detectiveazul

13) Rizzotto: Build Y1 Rizzotto

14) DetectiveAzul: Build Y2 Detectiveazul

15) Rizzotto: Build G2 Rizzotto

16) DetectiveAzul: Move G1 Detectiveazul Rizzotto
Catastrophe Rizzotto Green

17) Rizzotto: Trade Y1 G1 Rizzotto

18) DetectiveAzul: Trade Y1 B1 Detectiveazul

19) Rizzotto: Build Y1 Rizzotto

20) DetectiveAzul: Build Y1 Detectiveazul

21) Rizzotto: Discover R1 Rizzotto B2 Explotido

22) DetectiveAzul: Trade Y1 G1 Detectiveazul

23) Rizzotto: Move G1 Rizzotto Explotido

24) DetectiveAzul: Build Y1 Detectiveazul

25) Rizzotto: Build G2 Explotido

26) DetectiveAzul: Move R3 Detectiveazul Explotido

27) Rizzotto: Move R3 Rizzotto Detectiveazul

28) DetectiveAzul: Move Y1 Detectiveazul Rizzotto

29) Rizzotto: Attack Y2 Detectiveazul

30) DetectiveAzul: Sacrifice R3 Explotido
Attack Y1 Rizzotto
Attack Y1 Rizzotto
Pass



26587)
Variants: "Unrated"
Started: 2014.11.30, Ended: 2014.12.4
Participants: DetectiveAzul (S), Rizzotto (N)
Winner: DetectiveAzul

1) Rizzotto: Homeworld B1 G2 R3

2) DetectiveAzul: Homeworld G1 B3 Y3

3) Rizzotto: Build R1 Rizzotto

4) DetectiveAzul: Build Y1 Detectiveazul

5) Rizzotto: Build R1 Rizzotto

6) DetectiveAzul: Trade Y1 R1 Detectiveazul

7) Rizzotto: Trade R1 Y1 Rizzotto

8) DetectiveAzul: Build R1 Detectiveazul

9) Rizzotto: Discover R1 Rizzotto G3 Hulk

10) DetectiveAzul: Build R2 Detectiveazul

11) Rizzotto: Build R2 Hulk

12) DetectiveAzul: Trade R2 B2 Detectiveazul

13) Rizzotto: Build R2 Rizzotto

14) DetectiveAzul: Build Y1 Detectiveazul

15) Rizzotto: Trade R2 Y2 Rizzotto
	Rizzotto: Cada vez me gusta más esto aunque casi la jieda en este turno xD

16) DetectiveAzul: Trade Y1 G1 Detectiveazul
	DetectiveAzul: Me congratula, me congratula. Pero ¿tú no estás trabajando?
	Rizzotto: Algunas veces paro para desayunar :3

17) Rizzotto: Build R2 Rizzotto

18) DetectiveAzul: Build Y1 Detectiveazul

19) Rizzotto: Move Y1 Rizzotto Hulk

20) DetectiveAzul: Discover Y3 Detectiveazul G2 Cristina
	DetectiveAzul: En la partida que jugaba contra el top 4 del servidor al final ha muerto por no jugar. Lo puso en hardtime y llevaba 5 días sin postear :(. Yo que quería ganarla con justicia y honor. Se ha batido en retirada.

21) Rizzotto: Build Y1 Rizzotto
	Rizzotto: El que ha perdido el honor es él, por huir ò.ó Cobarde

22) DetectiveAzul: Move R1 Detectiveazul Cristina

23) Rizzotto: Sacrifice Y2 Rizzotto
Move R2 Hulk Cristina
Move R2 Cristina Detectiveazul

24) DetectiveAzul: Attack R2 Detectiveazul

25) Rizzotto: Build Y2 Hulk

26) DetectiveAzul: Build Y2 Cristina

27) Rizzotto: Trade Y1 B1 Rizzotto
	Rizzotto: Vale...cualquier nave de cualquier color podía atacar a cualquier nave de cualquier color? xD

28) DetectiveAzul: Move R2 Detectiveazul Cristina
	DetectiveAzul: Cualquier nave puede capturar una de tamaño igual o inferior si hay tecnología roja en el sistema (sea de otra nave o de un planeta)

29) Rizzotto: Move Y1 Hulk Rizzotto

30) DetectiveAzul: Move Y3 Cristina Hulk

31) Rizzotto: Move Y2 Hulk Rizzotto

32) DetectiveAzul: Sacrifice R1 Cristina
Attack R1 Hulk
	Rizzotto: Qué perdida estoy ahora mismo...xD Mi fallo me ha descolocao totalmente. 

33) Rizzotto: Discover Y2 Rizzotto B3 Kirito
	DetectiveAzul: Sí, si no hubieras tenido ese fallo, estarías muy bien con todo lo que tienes. Ahora tendrías que haber reconfigurado tu estrategia.

34) DetectiveAzul: Build R1 Hulk
	Rizzotto: Aún estoy superando la pérdida, ssssshhh

35) Rizzotto: Move R2 Rizzotto Kirito

36) DetectiveAzul: Build R2 Detectiveazul

37) Rizzotto: Trade Y2 G2 Kirito

38) DetectiveAzul: Build R3 Cristina

39) Rizzotto: Build R3 Kirito

40) DetectiveAzul: Sacrifice Y3 Hulk
Move R1 Detectiveazul Cristina
Move R1 Cristina Kirito
Move R2 Cristina Kirito
Catastrophe Kirito R

41) Rizzotto: Trade G2 Y2 Kirito

42) DetectiveAzul: Sacrifice B2 Detectiveazul
Trade R1 B1 Hulk
Pass

43) Rizzotto: Build R1 Rizzotto

44) DetectiveAzul: Build B2 Hulk

45) Rizzotto: Trade B1 G1 Rizzotto

46) DetectiveAzul: Build B1 Hulk

47) Rizzotto: Move G1 Rizzotto Kirito

48) DetectiveAzul: Sacrifice Y2 Cristina
Move B1 Hulk Rizzotto
Move B1 Hulk Rizzotto

49) Rizzotto: Attack B1S Rizzotto

50) DetectiveAzul: Sacrifice Y1 Detectiveazul
Move B2 Hulk Rizzotto
Catastrophe Rizzotto B

51) Rizzotto: Move R3 Rizzotto Detectiveazul

52) DetectiveAzul: Build R1 Detectiveazul

53) Rizzotto: Attack G1 Detectiveazul

54) DetectiveAzul: Attack G1 Detectiveazul

55) Rizzotto: Sacrifice Y1 Rizzotto
Move R3 Detectiveazul Rizzotto

56) DetectiveAzul: Trade R2 Y2 Detectiveazul

57) Rizzotto: Build G2 Kirito

58) DetectiveAzul: Sacrifice Y2 Detectiveazul
Move R1 Detectiveazul Rizzotto
Move R1 Hulk Rizzotto
Catastrophe Rizzotto R



26568)
Variants: "Hard time"
Started: 2014.11.30, Ended: 2014.12.10
Participants: dlwillson (S), dethdukk (N)
Winner: dlwillson

1) dethdukk: Homeworld B2 R1 G3

2) dlwillson: Homeworld B1 Y3 G3
	dethdukk: forgot how slow this website is sometimes.

3) dethdukk: Build G1 Dethdukk
	dlwillson: It can be.

4) dlwillson: Build G1 Dlwillson

5) dethdukk: Trade G1 R1 Dethdukk

6) dlwillson: Trade G1 R1 Dlwillson

7) dethdukk: Build R2 Dethdukk

8) dlwillson: B R2 Dlwillson

9) dethdukk: Trade R1 Y1 Dethdukk

10) dlwillson: T R1 B1 Dlwillson

11) dethdukk: Build R1 Dethdukk
	dethdukk: b r1 dethdukk

12) dlwillson: B B1 Dlwillson
	dethdukk: whoops, wrong box.

	dlwillson: :-)


26601)
Variants: "Hard time"
Started: 2014.12.1, Ended: 2014.12.8
Participants: wil (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld B1 Y2 G3

2) wil: Homeworld G3 B1 B3 *
	wil: round 43...  ttt swats the fly away agin...


3) TeeTeeTee: Build G1 Teeteetee

4) wil: Build B1 Wil
	TeeTeeTee: Oooh: something different.

5) TeeTeeTee: Trade G3 B3 Teeteetee

6) wil: Trade B3 Y3 Wil

7) TeeTeeTee: Build B2 Teeteetee

8) wil: Build B2 Wil

9) TeeTeeTee: Trade B3 R3 Teeteetee

10) wil: Trade B1 R1 Wil

11) TeeTeeTee: Build G1 Teeteetee
	TeeTeeTee: That's a fierce opening you chose, there, wil.

12) wil: Discover B2 Wil G2 G2
	wil: I had to do something...  it was quite scary...

13) TeeTeeTee: Build G1 Teeteetee

14) wil: Build B1 G2

15) TeeTeeTee: Discover G1 Teeteetee B3 Earlgrey

16) wil: Trade B2 G2 G2

17) TeeTeeTee: Discover G1 Teeteetee Y3 Ceylon

18) wil: Build Y1 Wil
	wil: nice..step behind again...

19) TeeTeeTee: Build G2 Teeteetee

20) wil: Sacrifice Y1 Wil
Discover G2 G2 Y3 Y3

21) TeeTeeTee: Move G1 Teeteetee Y3

22) wil: Sacrifice R1 Wil
Attack G1 Y3

23) TeeTeeTee: Build G3 Earlgrey

24) wil: Build G3 Y3

25) TeeTeeTee: Move G2 Teeteetee Y3
Catastrophe Y3 Green

26) wil: Build B2 G2

27) TeeTeeTee: Build G1 Ceylon

28) wil: Trade B2 R2 G2

29) TeeTeeTee: Sacrifice G3 Earlgrey
Build G2 Ceylon
Build G2 Earlgrey
Build G3 Earlgrey

30) wil: Build B2 G2
	wil: over again....you need to find better competition..

31) TeeTeeTee: Move G1 Ceylon G2

32) wil: Attack G1 G2
	wil: dang your good..

33) TeeTeeTee: Move G1 Ceylon G2

34) wil: Trade G1 Y1 G2
	wil: dang I wish I had a reason to continue this charade

35) TeeTeeTee: Sacrifice G3 Earlgrey
Build G1 G2
Build G3 G2
Build G3 Earlgrey
Catastrophe G2 Green

	TeeTeeTee: You might as well have attacked that g1 on your last turn - I'd have lost more ships.
	TeeTeeTee: Thanks for the game. I liked your opening, but I feel like you would have been in a stronger position if you'd pushed your blue advantage more at the start, i.e. not traded a b1 for an r1, or a b2 for a g2, but kept building blue ships for as long as you could get away with it.
	wil: I would've, but you immediately traded for a B3...ended that gambit...


26540)
Variants: "Unrated"
Started: 2014.12.2, Ended: 2014.12.28
Participants: DetectiveAzul (S), dsabremaster (N)
Winner: DetectiveAzul

1) dsabremaster: Homeworld G2 B1 Y3

2) DetectiveAzul: Homeworld B3 G1 R3

3) dsabremaster: Build Y1 Dsabremaster

4) DetectiveAzul: Build R1 Detectiveazul

5) dsabremaster: Discover Y1 Dsabremaster G3 Clover

6) DetectiveAzul: Build R1 Detectiveazul

7) dsabremaster: Build Y1 Dsabremaster

8) DetectiveAzul: Trade R1 G1 Detectiveazul

9) dsabremaster: Build Y1 Clover

10) DetectiveAzul: Build R1 Detectiveazul

11) dsabremaster: Build Y2 Dsabremaster

12) DetectiveAzul: Trade R3 Y3 Detectiveazul

13) dsabremaster: Trade Y1 B1 Dsabremaster

14) DetectiveAzul: Build R1 Detectiveazul

15) dsabremaster: Move B1 Dsabremaster Clover

16) DetectiveAzul: Discover R1 Detectiveazul G2 Hulk

17) dsabremaster: Build B1 Clover

18) DetectiveAzul: Build R2 Hulk

19) dsabremaster: Build B2 Clover

20) DetectiveAzul: Build R2 Hulk

21) dsabremaster: Trade B2 R2 Clover

22) DetectiveAzul: Sacrifice R1 Hulk
Pass

23) dsabremaster: Build B2 Clover

24) DetectiveAzul: Build G1 Detectiveazul



26567)
Variants: "Hard time"
Started: 2014.12.2, Ended: 2014.12.23
Participants: dlwillson (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) dlwillson: Homeworld Y3 B1 G3

3) mneme: Build G1 Mneme
	dlwillson: Hey mneme, It's good to play you again. I kept meaning to tell you on FB that I had setup the challenge, but kept forgetting to do it. Anyway, have fun! 
	mneme: Oh, I noticed, I just needed to get around to replying.  My habits have mostly left out sdg, which is why I dropped so many games.

4) dlwillson: Build G1 Dlwillson

5) mneme: Trade G1 B1 Mneme

6) dlwillson: Trade G1 B1 Dlwillson

7) mneme: Build B2 Mneme

8) dlwillson: B B2 Dlwillson

9) mneme: Trade B2 Y2 Mneme

10) dlwillson: T B1 R1 Dlwillson

11) mneme: Build B1 Mneme

12) dlwillson: B R1 Dlwillson

13) mneme: Discover B1 Mneme G3 Livery

14) dlwillson: D B2 Dlwillson G2 Field

15) mneme: Discover B1 Mneme Y3 Portal

16) dlwillson: M R1 Dlwillson Field

17) mneme: Build B2 Livery

18) dlwillson: B B3 Field

19) mneme: Build B3 Livery

20) dlwillson: T B3 Y3 Field

21) mneme: Trade B2 R2 Livery

22) dlwillson: B R2 Field

23) mneme: Build G1 Mneme
	mneme: b g1 mneme

24) dlwillson: Discover R2 Field B3 Sky

25) mneme: Move G1 Mneme Portal

26) dlwillson: B Y1 Field

27) mneme: Build Y1 Mneme

28) dlwillson: Discover Y1 Field R3 Mars

29) mneme: Discover Y2 Mneme R3 Ruby

30) dlwillson: B G1 Dlwillson

31) mneme: Build G1 Mneme

32) dlwillson: D G1 Dlwillson Y2 Golden

33) mneme: Trade B1 Y1 Livery

34) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Mars
Build R2 Sky
Build R3 Dlwillson
	dlwillson: So much going on! I have to get out the plastic now. Sorry for the delay.
	mneme: heh.  I try not to take it quite that seriously. :)
	dlwillson: My ladder-match took a sudden turn, so I have to use my plastic for that match. So... I guess I'll follow your lead and take this one less seriously. I'll play the best I can from the screen, and hope you'll excuse me if I disappoint you. :-)

35) mneme: Build G2 Portal
	mneme: I don't mind if you use a model, btw.  I don't take things too seriously, but I can also model pretty well in my head... :)

36) dlwillson: Sacrifice Y2 Mars
Move R2 Sky Mneme
Move R2 Sky Mneme

37) mneme: Sacrifice R2 Livery
Attack R2 Mneme
Attack R2 Mneme

38) dlwillson: Sacrifice Y3 Field
Discover G1 Golden Y3 Sunny
Move R1 Field Mars
Move R1 Mars Mneme
Catastrophe Mneme R

39) mneme: Trade G1 R1 Mneme

40) dlwillson: Trade R3 G3 Dlwillson
	dlwillson: Sorry, forgot the catastrophe
	mneme: Whoops.  Yeah, that would have been a bit of a blunder.  No big.  

41) mneme: Build G1 Mneme

42) dlwillson: B G2 Sunny
	mneme: :)  Figured it was worth having r at this stage in the game. :)

43) mneme: Move G1 Mneme Sunny
	dlwillson: Very discerning of you. :-)

44) dlwillson: Sacrifice G2 Sunny
Build B1 Field
Build Y2 Mars

45) mneme: Sacrifice G2 Portal
Build B2 Livery
Build B3 Portal

46) dlwillson: Sacrifice Y2 Mars
Discover B1 Field B3 Sky
Move B2 Field Sunny

47) mneme: Build G2 Portal

48) dlwillson: Sacrifice Y1 Mars
Move B1 Sky Mneme

49) mneme: Attack B1 Mneme

50) dlwillson: B B3 Sunny

51) mneme: Move B1 Mneme Ruby

52) dlwillson: Discover B2 Sunny Y2 Golden

53) mneme: Trade G2 R2 Portal

54) dlwillson: B G2 Dlwillson

55) mneme: Move B2 Livery Golden

56) dlwillson: T B3 R3 Sunny

57) mneme: Sacrifice G1 Sunny
Build B3 Golden

58) dlwillson: B G1 Sunny

59) mneme: Build G2 Mneme

60) dlwillson: M G1 Sunny Mneme

61) mneme: Move G2 Mneme Dlwillson

62) dlwillson: S G2 Dlwillson
B G2 Mneme
B G2 Mneme
C Mneme G

63) mneme: Sacrifice R2 Portal
Attack R1 Dlwillson
Attack B2 Golden

64) dlwillson: M G1 Sunny Mneme

65) mneme: Attack G1 Mneme

66) dlwillson: M R3 Sunny Mneme

67) mneme: Sacrifice G2 Dlwillson
Build R1 Mneme
Build R2 Mneme
Catastrophe Mneme R

68) dlwillson: Trade G3 R3 Dlwillson

69) mneme: Sacrifice G1 Portal
Build R1 Dlwillson

70) dlwillson: Trade R3 G3 Dlwillson

71) mneme: Move B3 Golden Dlwillson
	mneme: That was fascinating until that last blunder. :(

72) dlwillson: Build G1 Dlwillson
	dlwillson: I think you only lost one turn, if that.

73) mneme: Sacrifice B2 Golden
Trade B3 G3 Dlwillson
Trade R1 G1 Dlwillson
Catastrophe Dlwillson G
	mneme: I meant the r3 entry into my home.  I'm not sure you had a choice at that point--but it did make the endgame relatively trivial.  I think I had a solid endgame even without that, though (although running an endgame with no large ships in my home system is interesting.

	dlwillson: Not that it matters much, but I don't like passing, and we're within a turn of the end anyway.
	mneme: I think playing out your home system and hoping I blunder might have been better.  If I made a mistake on the blue kill you might get tempo for an attack on my home system.
	dlwillson: Again?
	dlwillson: And I disagree with you about the potential of playing to regain control of my home-system. I saw that option, and I don't think your win would have been any more difficult. I would have had to sac my R3 to get i, then all you have to do is swap B3 to Y3, ignore my next turn, because it can't get me a multi-pip R, and come in with two B3. Done either way. The R3 seemed to me to have more chances for you to make a mistake, which I needed, due to your massive material advantage.
	mneme: Fair enough; I'm not going to spend too much time on post-analysis right now anyway.  The issue with coming in with two b3 is if you can get two b in your home system, in which case my attack can be easily repelled.

Totally again.


26634)
Variants: "No undo"
Started: 2014.12.6, Ended: 2015.1.1
Participants: Grissom (S), hellajoey (N)
Winner: hellajoey

1) hellajoey: Homeworld R1 B2 G3

2) Grissom: Homeworld R3 B2 G3

3) hellajoey: Build G1 Hellajoey

4) Grissom: Build G1 Grissom

5) hellajoey: Trade G1 Y1 Hellajoey

6) Grissom: Build G1 Grissom
	hellajoey: Hey, Larry. I have an Android question: Do you have experience with pinch-to-zoom or panning? I've started working on a Homeworlds player in my spare time. I've implemented both pinch-to-zoom and panning but there are some problems. The biggest issue is I need to be able to pan or zoom out and see parts of the board that started outside of the screen window but anything that starts outside of the screen window gets chopped off once it's moved into the screen window. Does that make sense? I'd really like to be able to accomplish this without having to know how big the game view is going to be since it will be built dynamically.

Any ideas? Also, how's eBay and how's life? 
	Grissom: Hi Joey, eBay is good I'm really enjoying it. I do have some experience with pinch to zoom and panning but it is a bit difficult to make sense of it without seeing the code. Do you have a git project? I would be interested in contributing. Regardless I would recommend looking into an existing library like a pinch to zoom image view and reviewing how they handle drawing the bitmap.

7) hellajoey: Build Y1 Hellajoey

8) Grissom: Trade G1 Y1 Grissom

9) hellajoey: Build Y2 Hellajoey

10) Grissom: Build Y2 Grissom

11) hellajoey: Discover Y1 Hellajoey G3 Grun

12) Grissom: Discover Y1 Grissom G1 Greengob

13) hellajoey: Trade Y1 B1 Hellajoey

14) Grissom: Discover G1 Grissom Y1 Flash

15) hellajoey: Move B1 Hellajoey Grun

16) Grissom: Discover Y1 Greengob B3 Blubot

17) hellajoey: Build G1 Hellajoey
	hellajoey: Thanks, Larry. I don't think the project is in the place where I want to open it up yet. It's still a little haywire until I figure out how I want the visuals to work. I'll keep you posted though. Once I have a general player working there will still be a lot of work to make it awesome. Glad things are going well at eBay. Miss you guys.

18) Grissom: Discover G1 Flash B3 Blubot2point0
	Grissom: This may be helpful: https://github.com/sephiroth74/ImageViewZoom

19) hellajoey: Trade G3 R3 Hellajoey

20) Grissom: Build G1 Grissom

21) hellajoey: Build G2 Hellajoey

22) Grissom: Build G2 Blubot2point0

23) hellajoey: Move G2 Hellajoey Grun

24) Grissom: Trade G3 R3 Grissom

25) hellajoey: Move R3 Hellajoey Blubot2point0

26) Grissom: Sacrifice G2 Blubot2point0
Build G2 Grissom
Build Y1 Blubot

27) hellajoey: Attack G1 Blubot2point0

28) Grissom: Sacrifice G2 Grissom
Build Y2 Blubot
Build Y3 Grissom

29) hellajoey: Sacrifice G2 Grun
Build Y3 Grun
Build Y3 Hellajoey

30) Grissom: Sacrifice Y2 Blubot
Move Y1 Blubot Hellajoey
Move Y1 Blubot Hellajoey
Catastrophe Hellajoey Yellow

31) hellajoey: Move Y3 Grun Hellajoey

32) Grissom: Build G2 Grissom

33) hellajoey: Build G2 Blubot2point0

34) Grissom: Discover G1 Grissom Y1 Yo

35) hellajoey: Build Y1 Hellajoey

36) Grissom: Discover Y2 Grissom B1 Hop

37) hellajoey: Move Y1 Hellajoey Blubot2point0

38) Grissom: Build Y2 Grissom

39) hellajoey: Sacrifice G2 Blubot2point0
Build Y2 Blubot2point0
Build Y3 Hellajoey

40) Grissom: Build G2 Yo

41) hellajoey: Build G2 Blubot2point0

42) Grissom: Build G3 Grissom

43) hellajoey: Build G3 Hellajoey

44) Grissom: Trade Y2 B2 Grissom

45) hellajoey: Build Y2 Grun

46) Grissom: Move Y2 Hop Grun

47) hellajoey: Build R1 Blubot2point0

48) Grissom: Move R3 Grissom Yo

49) hellajoey: Move Y2 Grun Yo

50) Grissom: Sacrifice R3 Yo
Attack Y2 Yo
Attack B1 Grun
Attack Y1 Grun

51) hellajoey: Discover Y3 Hellajoey B3 Blut

52) Grissom: Sacrifice G3 Grissom
Build G3 Grissom
Build B1 Grun
Build B1 Grun

53) hellajoey: Discover G1 Hellajoey B3 Druid

54) Grissom: Move G2 Yo Druid

55) hellajoey: Move R3 Blubot2point0 Yo

56) Grissom: Sacrifice B2 Grissom
Trade G2 R2 Druid
Trade Y1 R1 Grun

57) hellajoey: Attack G1 Yo

58) Grissom: Build R2 Grun

59) hellajoey: Sacrifice Y3 Blut
Move G1 Blubot2point0 Yo
Move G1 Yo Grissom
Move G1 Yo Grissom
Catastrophe Grissom Green

60) Grissom: Sacrifice Y2 Yo
Move R2 Druid Hellajoey
Move R1 Grun Hellajoey

61) hellajoey: Move Y3 Hellajoey Grun

62) Grissom: Sacrifice Y2 Grun
Discover B1 Grun G1 Skip
Move R2 Grun Hellajoey
Catastrophe Hellajoey Red

63) hellajoey: Move Y2 Blubot2point0 Skip

64) Grissom: Build B2 Grun

65) hellajoey: Sacrifice R3 Yo
Attack B1 Skip
Attack B2 Grun
Attack B1 Grun

66) Grissom: Build B3 Grun
Catastrophe Grun Blue

67) hellajoey: Build Y1 Skip

68) Grissom: Trade Y3 G3 Grissom

69) hellajoey: Move G2 Blubot2point0 Skip

70) Grissom: Build G1 Grissom

71) hellajoey: Sacrifice Y3 Grun
Move G1 Druid Skip
Move G1 Skip Grissom
Move G2 Skip Grissom
Catastrophe Grissom Green
	hellajoey: That was probably the coolest game I've been in.
	Grissom: Just saw this comment, ya it was a fun one.



26638)
Variants: "Hard time"
Started: 2014.12.6, Ended: 2015.1.2
Participants: dlwillson (S), wil (N)
Winner: dlwillson

1) wil: Homeworld B1 Y2 G3
	wil: Been a while...if I recall your life/work got real busy....hope you are back to an even keel.

2) dlwillson: Homeworld B3 R2 G3

3) wil: Build G1 Wil

4) dlwillson: Build G1 Dlwillson
	dlwillson: I am, mostly. Still very busy, but I'm making time for SDG::Homeworlds again.

5) wil: Trade G1 B1 Wil

6) dlwillson: T G1 B1 Dlwillson

7) wil: Build B2 Wil
	dlwillson: Blue. Yuck. :-)

8) dlwillson: B B2 Dlwillson
	wil: Building trading ships looked like a fine venture to investigate.

9) wil: Discover B2 Wil G3 G3

10) dlwillson: Trade B1 Y1 Dlwillson

11) wil: Build G1 Wil

12) dlwillson: Build Y1 Dlwillson

13) wil: Trade G1 R1 Wil

14) dlwillson: B Y1 Dlwillson

15) wil: Build B1 G3

16) dlwillson: Discover Y1 Dlwillson G1 Field

17) wil: Trade B2 Y2 G3

18) dlwillson: Discover Y1 Dlwillson G1 Sea

19) wil: Discover B1 Wil Y3 Y3

20) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Field
Build Y3 Sea
Build Y3 Dlwillson

21) wil: Build B2 G3
	wil: Yeah, I got behind on that one...  and good luck with ttt since you guys left the playing field he's been beating the pants off me...
	dlwillson: He's good, and he got me. I guess I'll play someone else next, you or TwoShort, or maybe I'll wait a few days and see if I get challenged.
	wil: I wanna see he an two short go at it..  

22) dlwillson: Trade Y1 R1 Dlwillson

23) wil: Discover B2 G3 Y1 Y1

24) dlwillson: M B2 Dlwillson Field

25) wil: Trade B1 G1 Y3

26) dlwillson: D Y3 Sea B3 Sky

27) wil: Sacrifice G1 Y3
Build Y3 G3

28) dlwillson: S Y2 Field
M Y1 Field G3
M Y1 Sea G3
C G3 Y

29) wil: Build R1 Wil

30) dlwillson: T Y3 G3 Dlwillson

31) wil: Build R2 Wil

32) dlwillson: B R2 Dlwillson

33) wil: Move R1 Wil G3

34) dlwillson: Trade R2 Y2 Dlwillson

35) wil: Trade R2 Y2 Wil

36) dlwillson: Move R1 Dlwillson Field

37) wil: Build R2 G3

38) dlwillson: Build B1 Field

39) wil: Trade R1 Y1 G3

40) dlwillson: T B1 Y1 Field

41) wil: Build Y3 G3

42) dlwillson: B Y3 Field

43) wil: Discover Y2 Wil B3 B3
	dlwillson: Happy Christmas, Wil!
	wil: back atcha brother!

44) dlwillson: T Y3 R3 Field

45) wil: Move Y1 G3 Field

46) dlwillson: B Y3 Dlwillson

47) wil: Build B1 G3

48) dlwillson: B B2 Field

49) wil: Build G1 Wil

50) dlwillson: Attack Y1 Field

51) wil: Discover B1 G3 R1 R1

52) dlwillson: M B2 Field B3

53) wil: Move Y2 B3 R1

54) dlwillson: T B2 G2 B3

55) wil: Build R2 G3

56) dlwillson: M R1 Field B3

57) wil: Build R3 Wil

58) dlwillson: B R3 B3

59) wil:
B B2 G3


60) dlwillson: Trade Y2 G2 Dlwillson

61) wil: Build Y2 G3

62) dlwillson: Build G1 B3

63) wil: Move B1 G3 R1

64) dlwillson: Sacrifice Y3 Dlwillson
Move G2 B3 Wil
Move G1 B3 Wil
Move R3 B3 Wil
Catastrophe Wil G

65) wil: Sacrifice Y2 R1
Move R2 G3 Wil
Move Y3 G3 Wil
Catastrophe Wil R
	dlwillson: I think that's got it.
	wil: Why was I blind?

66) dlwillson: Move Y1 Field B3
	wil: I was ready to pull the plug on my first step...and thought i should pull out that green, but just didn't see it!

67) wil: Build Y2 G3
	dlwillson: Wow! You slipped out of the noose! I thought I had you!

68) dlwillson: Sacrifice Y3 Sky
Move Y1 B3 Wil
Move Y1 Field B3
Move Y1 B3 Wil
Catastrophe Wil Y
	dlwillson: I guess I did after all. I was expecting you to trade back to green that turn.
	wil: I wasn't counting again....sheesh...nice game!



26648)
Variants: "Hard time"
Started: 2014.12.9, Ended: 2014.12.14
Participants: TeeTeeTee (S), dlwillson (N)
Winner: TeeTeeTee

1) dlwillson: H B3 Y1 G3
	TeeTeeTee: Hello! That was a quick challenge.
	dlwillson: I was waiting for you to finish your game with Wil, and worrying that someone would challenge me before you did. :-)

2) TeeTeeTee: Homeworld B1 Y2 G3

3) dlwillson: B G1 Dlwillson
	TeeTeeTee: Indeed - I have been challenged a lot, here.

4) TeeTeeTee: Build G1 Teeteetee
	dlwillson: Did you have to beat TwoShort? He's a great player. Have you played Zoltar? I was away for about a year and a half.

5) dlwillson: T G1 B1 Dlwillson

6) TeeTeeTee: Trade G1 Y1 Teeteetee

7) dlwillson: B B1 Dlwillson
	TeeTeeTee: I've never played Zoltar, which is a shame - I've heard good things about him. I've played TwoShort only once, but I had a very strong start in that game and didn't really give him a chance to get started. I've also heard that SilentTitan is a strong player, but I haven't played a full game with them yet. I reckon that the strongest people that I've played full games with so far are Broccoli_Commander and Wil.

8) TeeTeeTee: Build Y1 Teeteetee

9) dlwillson: D B1 Dlwillson G2 Field

10) TeeTeeTee: Discover Y1 Teeteetee B3 Dalwhinnie

11) dlwillson: B B2 Field

12) TeeTeeTee: Sacrifice G3 Teeteetee
Build Y2 Dalwhinnie
Build Y2 Teeteetee
Build Y3 Dalwhinnie

13) dlwillson: Build B2 Dlwillson
	dlwillson: NICE!

14) TeeTeeTee: Trade Y3 G3 Dalwhinnie

15) dlwillson: T G3 Y3 Dlwillson

16) TeeTeeTee: Discover Y1 Teeteetee B3 Strathisla

17) dlwillson: T B2 R2 Dlwillson

18) TeeTeeTee: Build G1 Dalwhinnie

19) dlwillson: M Y3 Dlwillson Field

20) TeeTeeTee: Trade G1 R1 Dalwhinnie
	TeeTeeTee: Haha! I like that move.

21) dlwillson: Discover Y3 Field G3 Sea
	dlwillson: I'm glad you approve. Your "Going for the Gold", what I secretly call "TwoShort's Gambit" caught me by surprise, but I think you pulled it a move too early, and I'm doing my best to prove it, but you're a strong player, so it's going to be difficult. I'll need a moment to consider my next move.

22) TeeTeeTee: Sacrifice Y2 Dalwhinnie
Move G3 Dalwhinnie Field
Move G3 Field Dlwillson

23) dlwillson: Sacrifice Y3 Sea
Discover R2 Dlwillson Y2 Golden
Move B1 Field Dlwillson
Discover B2 Field Y3 Sunny

24) TeeTeeTee: Move Y1 Strathisla Teeteetee

25) dlwillson: T B1 G1 Dlwillson
	TeeTeeTee: I reckon that, if you'd played "S b2 field, t r2 g2 dlwillson, t b1 r1(or g1) field" instead of sacrificing the y3, then you could have forced a draw (I assume that if someone sacrifices their last ship at their homeworld to capture the other one, then it's a draw?)

26) TeeTeeTee: Trade Y2 R2 Teeteetee
	dlwillson: I think the game won't allow that, but I'm not sure.

27) dlwillson: B G1 Dlwillson

28) TeeTeeTee: Sacrifice R1 Dalwhinnie
Attack B1 Dlwillson

29) dlwillson: Build G1 Dlwillson

30) TeeTeeTee: Pass
Catastrophe Dlwillson Green
	dlwillson: Confirmed. A player may not eliminate himself/herself.
	TeeTeeTee: Aha. I see now that it's explicitly stated in the rules file that a player can't eliminate themselves. That would have been a shock...

Thanks for the game! Let me know if you have any comments or insights on the game (or if you wanted to hear mine.)



26652)
Variants: "Unrated"
Started: 2014.12.10, Ended: 2014.12.14
Participants: DetectiveAzul (S), Rizzotto (N)
Winner: DetectiveAzul

1) Rizzotto: Homeworld B3 G1 R3

2) DetectiveAzul: Homeworld B2 G1 G3 *

3) Rizzotto: Build R1 Rizzotto

4) DetectiveAzul: Build G1 Detectiveazul

5) Rizzotto: Build R1 Rizzotto

6) DetectiveAzul: Trade G3 Y3 Detectiveazul

7) Rizzotto: Trade R1 Y1 Rizzotto

8) DetectiveAzul: Build G2 Detectiveazul

9) Rizzotto: Discover Y1 Rizzotto G2 Kaguya

10) DetectiveAzul: Discover G1 Detectiveazul R3 Pisdemono

11) Rizzotto: Build R1 Rizzotto

12) DetectiveAzul: Build G2 Pisdemono

13) Rizzotto: Trade R1 Y1 Rizzotto

14) DetectiveAzul: Build G3 Detectiveazul
	Rizzotto: Al siguiente lo voy a llamar Gifu. Así jamás me lo robarás. 

15) Rizzotto: Trade R3 G3 Rizzotto

16) DetectiveAzul: Build G3 Pisdemono
	Rizzotto: (En el otro juego no podía hacer otra cosa que rendirme. El juego me prohibió hacer catástrofe en mi propio planeta porque me suicidaba. No podía crear, no podía cambiar, no podía moverme...xD...Mierda, podría haberte atacao. Pero pa qué)

17) Rizzotto: Build R1 Rizzotto

18) DetectiveAzul: Trade G2 B2 Detectiveazul
	DetectiveAzul: Eeestoy jugando con fueeeego

19) Rizzotto: Trade R1 B1 Rizzotto
	Rizzotto: Nah, no tanto. No tengo forma de hacerte catástrofe de momento xD

20) DetectiveAzul: Move B2 Detectiveazul Pisdemono

21) Rizzotto: Move B1 Rizzotto Kaguya

22) DetectiveAzul: Trade G1 Y1 Pisdemono

23) Rizzotto: Build Y2 Kaguya

24) DetectiveAzul: Trade G2 R2 Pisdemono

25) Rizzotto: Trade Y1 G1 Kaguya

26) DetectiveAzul: Build Y1 Detectiveazul

27) Rizzotto: Trade G3 R3 Rizzotto

28) DetectiveAzul: Sacrifice B2 Pisdemono
Trade Y1 R1 Detectiveazul
Trade G3 B3 Pisdemono

29) Rizzotto: Build B1 Kaguya
	Rizzotto: Qué hacemos con el guiri? Nos unimos a otra con él?
	DetectiveAzul: Por mí guay

30) DetectiveAzul: Build Y1 Detectiveazul

31) Rizzotto: Build Y2 Rizzotto
	Rizzotto: Chachi, pues esta noche ya si eso lo hacemos, que ahora voy a pegarme una ducha ^^

32) DetectiveAzul: Trade Y1 B1 Detectiveazul

33) Rizzotto: Build G2 Kaguya

34) DetectiveAzul: Discover G3 Detectiveazul B3 Capitanchurros

35) Rizzotto: Trade G2 R2 Kaguya
	Rizzotto: Questo di pesto

36) DetectiveAzul: Build G2 Capitanchurros

37) Rizzotto: Discover Y2 Rizzotto B2 Gifu

38) DetectiveAzul: Move B3 Pisdemono Gifu

39) Rizzotto: Trade Y2 B2 Gifu

40) DetectiveAzul: Trade B3 Y3 Gifu

41) Rizzotto: Build R1 Kaguya

42) DetectiveAzul: Move R2 Pisdemono Detectiveazul

43) Rizzotto: Sacrifice Y1 Rizzotto
Discover B2 Gifu R3 Sovietrussia

44) DetectiveAzul: Trade G2 Y2 Capitanchurros

45) Rizzotto: Trade R1 Y1 Rizzotto

46) DetectiveAzul: Move G3 Capitanchurros Gifu

47) Rizzotto: Move B1 Kaguya Rizzotto

48) DetectiveAzul: Move B1 Detectiveazul Capitanchurros

49) Rizzotto: Trade B2 G2 Sovietrussia

50) DetectiveAzul: Discover B1 Capitanchurros G2 Sinverduras

51) Rizzotto: Build G3 Sovietrussia

52) DetectiveAzul: Discover R1 Detectiveazul G3 Nomoregreen

53) Rizzotto: Build Y1 Rizzotto

54) DetectiveAzul: Build B2 Sinverduras

55) Rizzotto: Build B3 Kaguya

56) DetectiveAzul: Sacrifice Y2 Capitanchurros
Move B1 Sinverduras Rizzotto
Move B2 Sinverduras Rizzotto
Catastrophe Rizzotto B

57) Rizzotto: Move B3 Kaguya Rizzotto

58) DetectiveAzul: Build Y2 Detectiveazul

59) Rizzotto: Move Y1 Rizzotto Sovietrussia

60) DetectiveAzul: Trade Y2 B2 Detectiveazul

61) Rizzotto: Move G3 Sovietrussia Rizzotto

62) DetectiveAzul: Trade R2 G2 Detectiveazul

63) Rizzotto: Build R1 Rizzotto

64) DetectiveAzul: Sacrifice Y3 Detectiveazul
Move G3 Gifu Rizzotto
Move G2 Detectiveazul Nomoregreen
Move G2 Nomoregreen Rizzotto
Catastrophe Rizzotto G



26654)
Variants: "Hard time"
Started: 2014.12.12, Ended: 2014.12.22
Participants: Gungho (S), dsabremaster (N)
Winner: Gungho

1) dsabremaster: Homeworld B1 Y2 G3

2) Gungho: Homeworld G3 Y1 B3

3) dsabremaster: Build G1 Dsabremaster

4) Gungho: Build B1 Gungho

5) dsabremaster: Discover G1 Dsabremaster B3 Shoal

6) Gungho: Build B1 Gungho

7) dsabremaster: Build G1 Dsabremaster

8) Gungho: Discover B1 Gungho G2 Gg



26586)
Variants: "Unrated, Hard time"
Started: 2014.12.12, Ended: 2015.1.28
Participants: DetectiveAzul (S), Rizzotto (N), wil (E)
Winner: DetectiveAzul

1) Rizzotto: Homeworld B1 G3 R3

2) wil: Homeworld Y1 B2 G3

3) DetectiveAzul: Homeworld B3 G2 Y3

4) Rizzotto: Build R1 Rizzotto

5) wil: Build G1 Wil

6) DetectiveAzul: Build Y1 Detectiveazul

7) Rizzotto: Trade R1 Y1 Rizzotto

8) wil: Trade G1 Y1 Wil

9) DetectiveAzul: Build Y2 Detectiveazul

10) Rizzotto: Build Y2 Rizzotto

11) wil: Build Y2 Wil

12) DetectiveAzul: Discover Y1 Detectiveazul G1 Pedroelchurros

13) Rizzotto: Build R1 Rizzotto

14) wil: Trade Y1 R1 Wil

15) DetectiveAzul: Trade Y2 R2 Detectiveazul

16) Rizzotto: Discover Y1 Rizzotto B2 Pedrobear

17) wil: Build G1 Wil

18) DetectiveAzul: Build Y1 Detectiveazul

19) Rizzotto: Build Y2 Rizzotto

20) wil: Discover Y2 Wil G3 G3

21) DetectiveAzul: Build Y2 Pedroelchurros

22) Rizzotto: Trade Y1 G1 Pedrobear

23) wil: Build R1 Wil

24) DetectiveAzul: Trade Y1 G1 Detectiveazul

25) Rizzotto: Build G2 Pedrobear

26) wil: Discover G1 Wil Y3 Y3

27) DetectiveAzul: Build G2 Detectiveazul

28) Rizzotto: Trade G1 R1 Pedrobear

29) wil: Move R1 Wil G3

30) DetectiveAzul: Discover Y2 Pedroelchurros G3 Oioioioi

31) Rizzotto: Build R2 Pedrobear

32) wil: Build G1 Wil
	Rizzotto: Sorry I took so long to answer. Happy Christmas!

33) DetectiveAzul: Trade G1 Y1 Detectiveazul

34) Rizzotto: Trade R1 Y1 Pedrobear

35) wil: Build Y3 G3

36) DetectiveAzul: Build Y3 Pedroelchurros

37) Rizzotto: Build R1 Pedrobear

38) wil: Move Y3 G3 Pedrobear

39) DetectiveAzul: Move Y3 Pedroelchurros G3

40) Rizzotto: Trade R2 G2 Pedrobear

41) wil: Build R2 Wil

42) DetectiveAzul: Sacrifice R2 Detectiveazul
Attack Y2E G3
Attack R1E G3

43) Rizzotto: Trade G2 B2 Pedrobear

44) wil: Sacrifice R2 Wil
Attack R1N Pedrobear
Attack G2N Pedrobear

45) DetectiveAzul: Build R2 G3

46) Rizzotto: Sacrifice Y1 Pedrobear
Move B2 Pedrobear Y3

47) wil: Build R2 Pedrobear

48) DetectiveAzul: Trade Y1 B1 Detectiveazul

49) Rizzotto: Trade B2 R2 Y3

50) wil: Move Y3 Pedrobear Y3

51) DetectiveAzul: Move Y3 G3 Pedrobear

52) Rizzotto: Move R2 Y3 Pedroelchurros

53) wil: Sacrifice G3 Wil
Build G1 Wil
Build G2 Y3
Build G3 Wil

54) DetectiveAzul: Sacrifice R2 G3
Attack R2E Pedrobear
Attack G2E Pedrobear

55) Rizzotto: Attack Y1S Pedroelchurros

56) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Pedrobear
Build R2 Pedrobear
Catastrophe Pedrobear R

57) DetectiveAzul: Sacrifice Y2 Oioioioi
Move G2 Pedrobear Y3
Move G2 Y3 Wil
Catastrophe Wil G

58) Rizzotto: Build R1 Pedroelchurros

59) wil: Move Y3 Y3 Wil

60) DetectiveAzul: Build Y1 G3

61) Rizzotto: Trade Y2 G2 Rizzotto

62) wil: Discover G1 Y3 Y2 Y2

63) DetectiveAzul: Sacrifice Y3 Pedrobear
Move Y1 G3 Wil
Move Y2 G3 Wil
Discover R1 G3 G1 Conejos
Catastrophe Wil Y

64) Rizzotto: Move R2 Pedroelchurros Wil

65) wil: Sacrifice G2 Y3
Build R2 Wil
Build R2 Wil
Catastrophe Wil R

66) Rizzotto: Move R1 Rizzotto Y2

67) DetectiveAzul: Build Y1 Detectiveazul
	wil: thanx for the game...  Feel free to challenge me in binary homeworlds.... 
	wil: or volcano, or martian chess...the current games I'm trying to learn on this site...
	DetectiveAzul: Uhm, i will see how to play martian chess or volcano :O



26674)
Variants: "Hard time"
Started: 2014.12.15, Ended: 2014.12.20
Participants: Gungho (S), DetectiveAzul (N)
Winner: Gungho

1) DetectiveAzul: Homeworld G3 B1 Y3

2) Gungho: Homeworld Y2 G1 B3

3) DetectiveAzul: Build Y1 Detectiveazul

4) Gungho: Build B1 Gungho

5) DetectiveAzul: Build Y1 Detectiveazul

6) Gungho: Build B1 Gungho

7) DetectiveAzul: Discover Y1 Detectiveazul G2 Coladelparo

8) Gungho: Trade B1 Y1 Gungho

9) DetectiveAzul: Build Y2 Coladelparo

10) Gungho: Discover Y1 Gungho G3 Ggg

11) DetectiveAzul: Trade Y1 R1 Detectiveazul

12) Gungho: Trade B1 R1 Gungho

13) DetectiveAzul: Build Y1 Detectiveazul

14) Gungho: Build B1 Gungho

15) DetectiveAzul: Move Y2 Coladelparo Ggg

16) Gungho: Discover Y1 Ggg B1 Bl

17) DetectiveAzul: Build Y2 Ggg

18) Gungho: Build B2 Gungho

19) DetectiveAzul: Build Y3 Coladelparo

20) Gungho: Discover B2 Gungho G3 Ggg2

21) DetectiveAzul: Build Y3 Detectiveazul

22) Gungho: Build B2 Ggg2

23) DetectiveAzul: Discover Y1 Coladelparo R3 Morenasabrosona

24) Gungho: Build B2 Gungho

25) DetectiveAzul: Sacrifice Y3 Coladelparo
Move Y1 Morenasabrosona Gungho
Move Y2 Ggg Gungho
Move Y2 Ggg Gungho
Catastrophe Gungho Y

26) Gungho: Build B3 Ggg2

27) DetectiveAzul: Trade Y3 B3 Detectiveazul

28) Gungho: Trade B2 Y2 Gungho

29) DetectiveAzul: Discover B3 Detectiveazul Y2 Nopasaras

30) Gungho: Sacrifice B2 Ggg2
Trade B3 G3 Gungho
Trade B3 Y3 Ggg2

31) DetectiveAzul: Trade Y1 G1 Detectiveazul

32) Gungho: Build B2 Ggg2

33) DetectiveAzul: Discover G1 Detectiveazul R2 Allevoy

34) Gungho: Discover B2 Ggg2 G2 Gwar

35) DetectiveAzul: Sacrifice Y3 Detectiveazul
Move R1 Detectiveazul Allevoy
Move R1 Allevoy Gungho
Move G1 Allevoy Gungho

	DetectiveAzul: lol, noob failure
	DetectiveAzul: I dont know what i did xDDD, np, congrats, i failed.
	Gungho: Oh no! That's no good. But thanks for the game. Lets have a rematch some tome. Its a shame you couldn't undo. Good job dominating yellow at the start.
	Gungho: Oh. Yellow 3 Pip went to bank then your 1 pips left. An empty homeworld is a loss. I think that's what happened. Sorry of I stated what you already knew :)
	DetectiveAzul: Yep, but for some reason i thought i had a ship left at homeworld, and when i noticed i coudn't undo. Thanks, was a good game, until i failed :3


26678)
Variants: "Unrated"
Started: 2014.12.16, Ended: 2014.12.20
Participants: DetectiveAzul (S), Rizzotto (N)
Winner: Rizzotto

1) Rizzotto: Homeworld R3 G1 B3

2) DetectiveAzul: Homeworld G3 B1 Y3

3) Rizzotto: Build B1 Rizzotto

4) DetectiveAzul: Build Y1 Detectiveazul
	Rizzotto: Tiiiiiniiiini ninininini do that conga...nosé qué no se cuánto any longah

5) Rizzotto: Trade B1 Y1 Rizzotto

6) DetectiveAzul: Trade Y1 B1 Detectiveazul

7) Rizzotto: Build B1 Rizzotto

8) DetectiveAzul: Build B2 Detectiveazul

9) Rizzotto: Trade B1 R1 Rizzotto

10) DetectiveAzul: Trade B1 G1 Detectiveazul

11) Rizzotto: Build Y1 Rizzotto

12) DetectiveAzul: Build B1 Detectiveazul

13) Rizzotto: Build R1 Rizzotto

14) DetectiveAzul: Trade B1 R1 Detectiveazul

15) Rizzotto: Trade R1 G1 Rizzotto

16) DetectiveAzul: Build G2 Detectiveazul

17) Rizzotto: Discover G1 Rizzotto B2 Dasdingo

18) DetectiveAzul: Move G2 Detectiveazul Dasdingo
	Rizzotto: Buenos días, caballero *reverencia*

19) Rizzotto: Build G2 Dasdingo
	DetectiveAzul: Síiii, das dingo

20) DetectiveAzul: Build G2 Dasdingo
Catastrophe Dasdingo G
	Rizzotto: Verás tú que la jiedo xD Tú siempre avasallando mis planetas

21) Rizzotto: Build B1 Rizzotto

22) DetectiveAzul: Build G1 Detectiveazul

23) Rizzotto: Build Y1 Rizzotto
	Rizzotto: "A lo mejor no destruye por destruir" me dije "Vamos a arriesgarnos", me dije. Casi cuela :(

24) DetectiveAzul: Build Y2 Detectiveazul

25) Rizzotto: Discover Y1 Rizzotto G2 Gilipolless

26) DetectiveAzul: Discover G1 Detectiveazul Y2 Mulatillas

27) Rizzotto: Build Y2 Gilipolless

28) DetectiveAzul: Build G2 Mulatillas

29) Rizzotto: Sacrifice B1 Rizzotto
Trade Y2 G2 Gilipolless
	Rizzotto: Bsjsjjs yo antes sabía un poco cómo jugar a esto

30) DetectiveAzul: Sacrifice B2 Detectiveazul
Trade G1 R1 Mulatillas
Trade G2 R2 Mulatillas
	DetectiveAzul: xDDD, no pasa na, mujé. Lo que pasa es que estoy jugando estrategia de monopolio y he sido más rápido, y ahora andas un poco más jodidilla.

31) Rizzotto: Move R1 Rizzotto Gilipolless

32) DetectiveAzul: Move Y3 Detectiveazul Gilipolless
	Rizzotto: Muy jodida xD ...has desecho tu mvoimiento para hacer el mismo?

33) Rizzotto: Sacrifice G2 Gilipolless
Build Y2 Gilipolless
Build Y3 Gilipolless
Catastrophe Gilipolless Y

34) DetectiveAzul: Build G1 Detectiveazul

35) Rizzotto: Build R2 Gilipolless

36) DetectiveAzul: Trade G1 B1 Detectiveazul

37) Rizzotto: Move Y1 Rizzotto Gilipolless

38) DetectiveAzul: Build R2 Detectiveazul

39) Rizzotto: Move R1 Gilipolless Rizzotto

40) DetectiveAzul: Sacrifice Y2 Detectiveazul
Move R1 Mulatillas Rizzotto
Move R2 Mulatillas Rizzotto
Catastrophe Rizzotto R

41) Rizzotto: Build R1 Gilipolless

42) DetectiveAzul: Build G1 Detectiveazul

43) Rizzotto: Build B1 Rizzotto

44) DetectiveAzul: Trade R2 Y2 Detectiveazul

45) Rizzotto: Trade B3 R3 Rizzotto

46) DetectiveAzul: Build B2 Detectiveazul

47) Rizzotto: Build B2 Rizzotto

48) DetectiveAzul: Trade B2 R2 Detectiveazul

49) Rizzotto: Move R1 Gilipolless Rizzotto

50) DetectiveAzul: Build B2 Detectiveazul

51) Rizzotto: Trade B2 Y2 Rizzotto

52) DetectiveAzul: Trade B2 Y2 Detectiveazul

53) Rizzotto: Build B2 Rizzotto

54) DetectiveAzul: Sacrifice Y2 Detectiveazul
Move R1 Detectiveazul Gilipolless
Move R1 Gilipolless Rizzotto

55) Rizzotto: Trade R1 Y1 Rizzotto

56) DetectiveAzul: Build R1 Rizzotto

57) Rizzotto: Discover R3 Rizzotto Y3 Help

58) DetectiveAzul: Sacrifice R2 Detectiveazul
Attack Y1 Rizzotto
Attack B1 Rizzotto

59) Rizzotto: Sacrifice R2 Gilipolless
Attack Y1 Rizzotto
Attack B1 Rizzotto

60) DetectiveAzul: Attack Y1 Rizzotto

61) Rizzotto: Build B2 Rizzotto

62) DetectiveAzul: Build Y2 Rizzotto
Catastrophe Rizzotto Y

63) Rizzotto: Trade B1 R1 Rizzotto

64) DetectiveAzul: Sacrifice Y2 Detectiveazul
Move B1 Detectiveazul Gilipolless
Move B1 Gilipolless Rizzotto

65) Rizzotto: Trade B2 Y2 Rizzotto

66) DetectiveAzul: Attack R1 Rizzotto

67) Rizzotto: Trade Y2 R2 Rizzotto
Catastrophe Rizzotto R

68) DetectiveAzul: Build B1 Rizzotto

69) Rizzotto: Trade B2 R2 Rizzotto

70) DetectiveAzul: Build B2 Rizzotto

71) Rizzotto: Attack B2 Rizzotto

72) DetectiveAzul: Trade B1 R1 Rizzotto

73) Rizzotto: Move Y1 Gilipolless Detectiveazul

74) DetectiveAzul: Sacrifice R1 Rizzotto
Attack Y1 Detectiveazul

75) Rizzotto: Attack B1 Rizzotto

76) DetectiveAzul: Build Y1 Detectiveazul

77) Rizzotto: Trade B2 Y2 Rizzotto

78) DetectiveAzul: Build Y1 Detectiveazul

79) Rizzotto: Sacrifice Y2 Rizzotto
Discover R3 Help G2 Salto
Move R3 Salto Detectiveazul
	DetectiveAzul: gg wp

80) DetectiveAzul: Trade Y1 R1 Detectiveazul

81) Rizzotto: Attack R1 Detectiveazul

82) DetectiveAzul: Trade G1 R1 Detectiveazul

83) Rizzotto: Sacrifice R3 Detectiveazul
Attack R1 Detectiveazul
Attack G1 Detectiveazul
Attack Y1 Detectiveazul



26686)
Variants: "Hard time"
Started: 2014.12.18, Ended: 2015.1.10
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld Y3 B1 G3

2) wil: Homeworld B2 Y1 G3
	dlwillson: I hope you were hoping for another game with me, because I can't challenge TeeTeeTee again, and TwoShort seems to be dormant, and nobody seems eager to challenge me, and well... it seems like time to do something. :-)
	wil: Oh you only had to wait another day to challenge ttt...I see your evil plan...you'll just kick my ass on the way up!
	wil: and seriously... If I had my druthers I'd be in half a dozen different games with one person...I think it amazing how different they all get...

3) dlwillson: B G1 Dlwillson

4) wil: Build G1 Wil

5) dlwillson: T G1 B1 Dlwillson

6) wil: Trade G1 B1 Wil

7) dlwillson: B B2 Dlwillson

8) wil: Build B2 Wil

9) dlwillson: D B1 Dlwillson Y2 Golden

10) wil: Trade B1 R1 Wil

11) dlwillson: T B2 R2 Dlwillson

12) wil: Discover B2 Wil Y3 Y3

13) dlwillson: B R1 Dlwillson

14) wil: Build G1 Wil

15) dlwillson: Trade R2 Y2 Dlwillson

16) wil: Discover G1 Wil Y3 Why3
	wil: twas an oops...not the move...the undo...unintentional undo...

17) dlwillson: Build G1 Dlwillson

18) wil: Build G1 Wil

19) dlwillson: Move G1 Dlwillson Golden

20) wil: Trade G1 Y1 Wil

21) dlwillson: D Y2 Dlwillson G2 Field

22) wil: Discover Y1 Wil B3 B3

23) dlwillson: B Y1 Field

24) wil: Build G1 Wil

25) dlwillson: B G2 Dlwillson

26) wil: Sacrifice G1 Wil
Build Y2 B3

27) dlwillson: B B1 Golden

28) wil: Build G1 Wil

29) dlwillson: Move B1 Golden Why3

30) wil: Sacrifice G3 Wil
Build G2 Why3
Build G3 Why3
Build G3 Wil

31) dlwillson: M G1 Golden Why3
C Why3 Green

32) wil: Move G1 Wil Y3
	dlwillson: You sure?
	wil: you got a better move for me?  I was gonna lose my position....those two new ships aren't really mine, there was no way for me to get them and keep them...it only makes it so you lose one to get my one...if I move my one...you gain those two now...meh...yeah....it is only a game.

33) dlwillson: S G2 Dlwillson
B B2 Golden
B B3 Why3

34) wil: Build B3 Y3

35) dlwillson: T B3 G3 Why3

36) wil: T B3 R3 Y3

37) dlwillson: Build B3 Why3

38) wil: Build B3 Y3

39) dlwillson: Sacrifice Y2 Field
Move B2 Golden Y3
Move B1 Golden Y3
Catastrophe Y3 B

40) wil: Move G1 Y3 Field

41) dlwillson: Sacrifice G3 Why3
Build Y2 Field
Build G1 Dlwillson
Build B1 Why3

42) wil: Build G1 Field

43) dlwillson: Sacrifice Y2 Field
Move G1 Dlwillson Field
Discover Y1 Field B3 Sky
Catastrophe Field G

44) wil: Build G1 Wil

45) dlwillson: Trade B3 G3 Why3

46) wil: Trade Y1 G1 B3

47) dlwillson: T B1 R1 Why3

48) wil: Trade G1 B1 Wil

49) dlwillson: Build B2 Why3

50) wil: Move B1 Wil B3

51) dlwillson: Discover B1 Why3 G2 Field

52) wil: Build R2 Wil

53) dlwillson: B B2 Why3

54) wil: Build B3 B3

55) dlwillson: S Y1 Sky
M B1 Field B3
C B3 B

56) wil: Discover R2 Wil B3 B3
	dlwillson: You sure?
	wil: I should have moved a r2 to b3 to keep you from getting it...but I didn't ... I made a mistake....I eat it...

57) dlwillson: Build B1 Why3

58) wil: Build R2 Wil

59) dlwillson: S G3 Why3
B R2 Dlwillson
B R3 Why3
B R3 Dlwillson

60) wil: Trade R1 B1 Wil

61) dlwillson: Move B2 Why3 Wil

62) wil: Discover B1 Wil G3 G3

63) dlwillson: S R1 Why3
A R2 Wil

64) wil: Sacrifice R2 B3
Attack B2 Wil
Attack R2 Wil

65) dlwillson: M B2 Why3 Wil

66) wil: Move B2 Wil Y3

67) dlwillson: Sacrifice R1 Dlwillson
Attack R2 Wil

68) wil: Build B3 G3
	wil: I just love it how diverse these games can get..  You've got me...I blew it...but it is still fun to watch it play out.

69) dlwillson: Sacrifice G3 Dlwillson
Build R1 Wil
Build B3 Wil
Build R1 Why3

70) wil: Sacrifice R3 Y3
Attack B3 Wil
Attack B2 Wil
Attack R2 Wil

71) dlwillson: Move B1 Why3 Wil
Catastrophe Wil B
	dlwillson: Me too. I love this game.

72) wil: Attack R1 Wil

73) dlwillson: Trade R3 G3 Dlwillson

74) wil: Move R2 Wil G3

75) dlwillson: D R3 Why3 B2 Sky

76) wil: Build R1 Wil

77) dlwillson: B G1 Dlwillson

78) wil: Move R1 Wil Y3

79) dlwillson: Sacrifice G3 Dlwillson
Build R2 Why3
Build R3 Sky
Build R3 Dlwillson

80) wil: Sacrifice B3 G3
Trade R2 Y2 G3
Trade B1 Y1 G3
Trade R1 Y1 Y3

81) dlwillson: Trade R2 Y2 Dlwillson
	wil: nice, I expected that..couldn't do much about it...  https://www.youtube.com/watch?v=DtpGgdBzy2Q

82) wil: Build Y2 G3

83) dlwillson: Move Y2 Dlwillson Sky
	dlwillson: Hm. Good defensive move. This is going to take longer than I hoped.
	dlwillson: :-)


84) wil: Trade B2 R2 Y3
	wil: me like a chicken running around in the corner from the farmers knife...

85) dlwillson: Move R3 Sky Y3

86) wil: Sacrifice Y1 Y3
Discover R2 Y3 Y1 Y1

87) dlwillson: Sacrifice Y2 Sky
Move R3 Sky Wil
Move R3 Y3 Wil

88) wil: Build R1 Wil
Catastrophe Wil R

89) dlwillson: Discover R2 Why3 B2 Sky

90) wil: Discover Y2 G3 B2 B2
	wil: McGiver is still trying to find a paperclip and matchbook cover to save the skin on his teeth for the next episode.

91) dlwillson: T R2 Y2 Sky
	dlwillson: Yeah... I saw the mistake as soon as I made it.
	dlwillson: But I figured that with our relative positions, I should just take what I had.

92) wil: Build G1 Wil

93) dlwillson: S G1 Dlwillson
B Y3 Sky

94) wil: Move R2 Y1 Why3

95) dlwillson: Move R1 Why3 Sky

96) wil: Move G1 Wil B2

97) dlwillson: Move Y2 Sky G3

98) wil: Discover Y2 G3 G2 G2

99) dlwillson: T R1 G1 Sky

100) wil: Discover Y1 G3 G2 Geetoo

101) dlwillson: B Y1 Sky

102) wil: Build G1 B2

103) dlwillson: M Y1 Sky Wil

104) wil: Sacrifice R2 Why3
Attack Y1 Wil
Pass

105) dlwillson: Sacrifice Y2 G3
Move G1 Sky Dlwillson
Move Y3 Sky Wil

106) wil: Sacrifice G3 Wil
Build Y2 Wil
Build Y3 B2
Build G2 B2
Catastrophe Wil Y

	wil: The vagabond (without a homeworld) rebels have populated the known universe and have you surrounded....the siege of the multiverse begins  ....thanx for the game...now go get TTT
	dlwillson: I will! Thanks for the game! I'm surprised the system let you get away with a suicide; usually, it won't accept valid moves that result in the active player's loss.
	wil: Ever since I found the system did not allow suicide...I've been working on ways to trick it...but it is NOT suicide, we simply move on to safe planets and live on!


26529)
Variants: "Hard time"
Started: 2014.12.19, Ended: 2014.12.22
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3



26411)
Variants: "Hard time"
Started: 2014.12.21, Ended: 2015.1.1
Participants: wil (S), Gungho (N)
Winner: Gungho

1) Gungho: Homeworld G3 Y1 B3

2) wil: Homeworld B2 G1 Y3

3) Gungho: Build B1 Gungho

4) wil: B Y1 Wil

5) Gungho: Build B1 Gungho

6) wil: T Y1 B1 Wil

7) Gungho: Trade B1 Y1 Gungho

8) wil: Build B1 Wil

9) Gungho: Build B2 Gungho
	wil: yup...I'd do it just to see where the game goes...

10) wil: Build Y1 Wil

11) Gungho: Build Y2 Gungho

12) wil: Sacrifice Y3 Wil
Discover B1 Wil R3 R3
Discover B1 R3 B2 B2
Move B1 B2 Gungho
Catastrophe Gungho B

13) Gungho: Discover Y1 Gungho B2 Tywil
	Gungho: Lol awesome 

14) wil: Build Y2 Wil

15) Gungho: Trade Y1 G1 Tywil
	wil: crazy eh?  I just had to see where it would take us.

16) wil: Build B1 Wil

17) Gungho: Build G1 Tywil

18) wil: Trade Y2 G2 Wil

19) Gungho: Build G2 Tywil

20) wil: Build G2 Wil

21) Gungho: Trade G1 Y1 Tywil

22) wil: Trade G2 R2 Wil

23) Gungho: Build Y2 Tywil

24) wil: Discover G2 Wil Y3 Y3

25) Gungho: Trade Y1 R1 Tywil

26) wil: Discover B1 Wil G3 G3

27) Gungho: Build Y1 Tywil

28) wil: Move Y1 Wil G3

29) Gungho: Discover Y1 Tywil B3 Bflat

30) wil: Build B1 G3

31) Gungho: Sacrifice G2 Tywil
Build Y2 Tywil
Build Y3 Bflat

32) wil: Build Y3 G3

33) Gungho: Move Y3 Bflat Wil

34) wil: Sacrifice Y3 G3
Move Y1 G3 Wil
Move R2 Wil G3
Move B1 G3 Wil

35) Gungho: Sacrifice G1 Tywil
Build Y3 Bflat

36) wil: Move B1 Wil Bflat
	wil: nice move, I blew that...

37) Gungho: Trade Y2 R2 Tywil
	Gungho: Thanks. I don't have the atk I want... but the opportunity was there.  
	wil: yeah...it is game over thou

38) wil: Sacrifice G2 Y3
Build Y2 Wil
Build Y3 Wil
Catastrophe Wil Y
	wil: I look forward to another game...I just had to see where it would go with that disaster I caused earlier..  it went disaterously (for me)

39) Gungho: Sacrifice Y2 Tywil
Move R2 Tywil Bflat
Move R2 Bflat Wil
	Gungho: It was fun. It may not have worked out but it's worth a try. Sometimes I think about destroying part of my own hw to connect to connect to the other one.  
	Gungho: Err.. sorry. Touch screen type fail. :)

40) wil: Build B2 Wil
	wil: might as well delay the inevitable a moment...

	wil: I look forward to another game, challenge anytime.....thanx
	Gungho: Thanks, same here! Happy new year.


26692)
Variants: "Hard time"
Started: 2014.12.22, Ended: 2014.12.25
Participants: Gungho (S), SilentTitan (N)
Winner: Gungho



26698)
Variants: "Hard time"
Started: 2014.12.24, Ended: 2014.12.27
Participants: Rizzotto (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 B2 G3

	wil: thanx for the game!
	wil: What happened?
	Rizzotto: Sorry, I've been very busy and completely forgot about this D: Can I challenge you again?
	wil: Of course!!


26709)
Variants: "Unrated"
Started: 2014.12.24, Ended: 2015.1.15
Participants: DetectiveAzul (S), Rizzotto (N)
Winner: DetectiveAzul

1) Rizzotto: Homeworld R3 B2 G3

2) DetectiveAzul: Homeworld G3 B1 Y3

3) Rizzotto: Build G1 Rizzotto

4) DetectiveAzul: Build Y1 Detectiveazul

5) Rizzotto: Trade G1 R1 Rizzotto

6) DetectiveAzul: Build Y1 Detectiveazul

7) Rizzotto: Build R1 Rizzotto

8) DetectiveAzul: Trade Y1 R1 Detectiveazul

9) Rizzotto: Trade R1 Y1 Rizzotto

10) DetectiveAzul: Trade Y1 B1 Detectiveazul

11) Rizzotto: Build G1 Rizzotto

12) DetectiveAzul: Build Y1 Detectiveazul

13) Rizzotto: Trade G1 B1 Rizzotto

14) DetectiveAzul: Trade Y1 G1 Detectiveazul

15) Rizzotto: Build B2 Rizzotto

16) DetectiveAzul: Build B2 Detectiveazul

17) Rizzotto: Discover B1 Rizzotto G1 Piticli

18) DetectiveAzul: Discover B2 Detectiveazul G2 Potoclo

19) Rizzotto: Build B3 Piticli

20) DetectiveAzul: Build B3 Detectiveazul

21) Rizzotto: Trade B3 Y3 Piticli

22) DetectiveAzul: Trade B3 R3 Detectiveazul

23) Rizzotto: Build B3 Piticli

24) DetectiveAzul: Build B3 Potoclo

25) Rizzotto: Trade B3 R3 Piticli

26) DetectiveAzul: Trade B3 G3 Potoclo

27) Rizzotto: Build B3 Piticli

28) DetectiveAzul: Build B3 Potoclo

29) Rizzotto: Discover B3 Piticli G2 Bocasecaman

30) DetectiveAzul: Trade B3 Y3 Potoclo

31) Rizzotto: Build R1 Piticli

32) DetectiveAzul: Build B3 Potoclo

33) Rizzotto: Trade B2 Y2 Rizzotto

34) DetectiveAzul: Discover G3 Potoclo Y1 Laconcha
	Rizzotto: wow
so many blu
wow
much tradingg

35) Rizzotto: Move R1 Piticli Bocasecaman

36) DetectiveAzul: Move B3 Potoclo Laconcha

37) Rizzotto: Build R2 Piticli

38) DetectiveAzul: Move R1 Detectiveazul Potoclo

39) Rizzotto: Build R2 Bocasecaman

40) DetectiveAzul: Build R2 Potoclo

41) Rizzotto: Build B2 Piticli

42) DetectiveAzul: Build B3 Laconcha

43) Rizzotto: Build Y1 Piticli

44) DetectiveAzul: Build Y2 Detectiveazul

45) Rizzotto: Build Y2 Rizzotto

46) DetectiveAzul: Discover B2 Potoclo G1 Agentcarter

47) Rizzotto: Sacrifice Y3 Piticli
Move Y1 Rizzotto Laconcha
Move Y2 Rizzotto Laconcha
Move Y2 Rizzotto Laconcha
Catastrophe Laconcha Y

48) DetectiveAzul: Build B3 Agentcarter

49) Rizzotto: Trade B2 Y2 Piticli
	Rizzotto: Hsjdjjdjjdjdjdjdvhufhdu nerviooooos

50) DetectiveAzul: Sacrifice Y2 Detectiveazul
Discover B1 Detectiveazul G2 Pepapig
Discover B1 Pepapig Y1 Pepapig2
	DetectiveAzul: A impulsar la economíaaaa

51) Rizzotto: Trade B3 Y3 Bocasecaman

52) DetectiveAzul: Sacrifice Y3 Potoclo
Move B2 Agentcarter Rizzotto
Move B3 Agentcarter Rizzotto
Move B1 Pepapig2 Rizzotto
Catastrophe Rizzotto B
	Rizzotto: Vamos a mover esto un poco ò.ó 

53) Rizzotto: Sacrifice B1 Piticli
Trade R1 B1 Rizzotto

54) DetectiveAzul: Sacrifice Y3 Detectiveazul
Move R1 Potoclo Rizzotto
Move R2 Potoclo Rizzotto
Discover R3 Detectiveazul Y2 Rocketraccoon



26711)
Variants: "Hard time"
Started: 2014.12.24, Ended: 2015.1.2
Participants: Gungho (S), foksieloy (N)
Winner: Gungho

1) foksieloy: Homeworld Y3 B1 G3

2) Gungho: Homeworld G3 R2 B3
	foksieloy: Hi, good luck and have fun! It has been a while since I played. :)

3) foksieloy: Build G1 Foksieloy
	Gungho: Hello. Have fun! :)

4) Gungho: Build B1 Gungho

5) foksieloy: Trade G1 R1 Foksieloy

6) Gungho: Build B1 Gungho

7) foksieloy: Build R1 Foksieloy

8) Gungho: Trade B1 R1 Gungho

9) foksieloy: Trade R1 B1 Foksieloy

10) Gungho: Build B2 Gungho

11) foksieloy: Build G1 Foksieloy

12) Gungho: Trade B1 Y1 Gungho

13) foksieloy: Trade G3 Y3 Foksieloy

14) Gungho: Discover B2 Gungho G1 Imove

15) foksieloy: Build G1 Foksieloy

16) Gungho: Build Y1 Gungho

17) foksieloy: Discover G1 Foksieloy Y2 Tibbers

18) Gungho: Build B1 Imove

19) foksieloy: Build B2 Foksieloy

20) Gungho: Trade B2 Y2 Imove

21) foksieloy: Move B2 Foksieloy Tibbers

22) Gungho: Build B2 Imove

23) foksieloy: Build G2 Tibbers

24) Gungho: Trade B2 G2 Imove

25) foksieloy: Build B2 Tibbers

26) Gungho: Sacrifice G2 Imove
Build B2 Gungho
Build B3 Imove

27) foksieloy: Trade G2 Y2 Tibbers

28) Gungho: Discover B3 Imove G2 Voodoo

29) foksieloy: Move B2 Tibbers Imove

30) Gungho: Sacrifice R1 Gungho
Attack B2N Imove

31) foksieloy: Build B3 Tibbers

32) Gungho: Move Y1 Gungho Imove

33) foksieloy: Trade B3 R3 Tibbers

34) Gungho: Move Y1 Imove Voodoo
	foksieloy: Happy new year!
	Gungho: You too! Thanks. :)

35) foksieloy: Build B3 Tibbers

36) Gungho: Build Y1 Voodoo

37) foksieloy: Discover B2 Tibbers Y3 Annie

38) Gungho: Sacrifice Y2 Imove
Move Y1 Voodoo Foksieloy
Move Y1 Voodoo Foksieloy
Catastrophe Foksieloy Yellow

39) foksieloy: Move R3 Tibbers Foksieloy

40) Gungho: Trade B3 Y3 Voodoo

41) foksieloy: Sacrifice B1 Foksieloy
Trade B3 R3 Tibbers

	foksieloy: Good game!
	Gungho: You too, Thanks for playing! 


26710)
Variants: "Hard time"
Started: 2014.12.26, Ended: 2015.1.16
Participants: wil (S), agentofchaos (N)
Winner: wil

1) agentofchaos: Homeworld R1 B2 G3

2) wil: Homeworld Y3 B1 G3
	agentofchaos: Hi, have fun
	wil: I recall this name....Merry Christmas and thanx for the game...

3) agentofchaos: Build G1 Agentofchaos

4) wil: Build G1 Wil
	agentofchaos: Been a while since I last played! Merry Christmas to you too

5) agentofchaos: Trade G1 Y1 Agentofchaos

6) wil: Trade G1 R1 Wil

7) agentofchaos: Trade Y1 R1 Agentofchaos

8) wil: Build R2 Wil

9) agentofchaos: Build R2 Agentofchaos

10) wil: Build R2 Wil

11) agentofchaos: Trade R2 G2 Agentofchaos

12) wil: Trade R1 B1 Wil

13) agentofchaos: Build G1 Agentofchaos

14) wil: Build B1 Wil

15) agentofchaos: Trade G1 Y1 Agentofchaos

16) wil: Discover B1 Wil G2 G2

17) agentofchaos: Discover G2 Agentofchaos Y3 Dare

18) wil: Build B2 Wil

19) agentofchaos: Build G1 Dare

20) wil: Discover B2 Wil B2 B2

21) agentofchaos: Build G1 Agentofchaos

22) wil: Sacrifice G3 Wil
Build B3 Wil
Build B3 B2
Build B3 G2

23) agentofchaos: Build R1 Agentofchaos

24) wil: Sacrifice B2 B2
Trade B3 Y3 G2
Trade B3 G3 Wil

25) agentofchaos: Discover G2 Dare Y2 Hadestorm

26) wil: Sacrifice Y3 G2
Move R2 Wil G2
Move R2 G2 Dare
Move R2 Dare Agentofchaos
Catastrophe Agentofchaos R

27) agentofchaos: Trade G1 R1 Agentofchaos

28) wil: Sacrifice G3 Wil
Build B2 G2
Build B3 B2
Build B3 Wil

29) agentofchaos: Build G1 Hadestorm

30) wil: Trade B3 G3 B2

31) agentofchaos: Discover R1 Agentofchaos G1 Dospair

32) wil: Move B1 Wil Agentofchaos

33) agentofchaos: Trade G3 R3 Agentofchaos

34) wil: Trade B3 Y3 B2

	wil: unless I am missing  something that gives me two avenues to end it..  Play another?  
	agentofchaos: yeah sure


26667)
Variants: "Unrated, Hard time"
Started: 2014.12.29, Ended: 2015.1.11
Participants: wil (S), Sarthobi (N), agentofchaos (E)
Winner: agentofchaos

1) Sarthobi: Homeworld G2 B1 Y3

2) agentofchaos: Homeworld R1 B3 G3

3) wil: Homeworld Y3 B2 G3

4) Sarthobi: Build Y1 Sarthobi

5) agentofchaos: Build G1 Agentofchaos

6) wil: Build G1 Wil

7) Sarthobi: Trade Y1 G1 Sarthobi

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) wil: Trade G1 B1 Wil

10) Sarthobi: Build G1 Sarthobi

11) agentofchaos: Build Y1 Agentofchaos

12) wil: Build B1 Wil

13) Sarthobi: Trade G1 B1 Sarthobi

14) agentofchaos: Build G1 Agentofchaos

15) wil: Discover B1 Wil G1 G1

16) Sarthobi: Build B2 Sarthobi

17) agentofchaos: Trade Y1 R1 Agentofchaos

18) wil: Build B2 G1

19) Sarthobi: Discover B1 Sarthobi G3 G3

20) agentofchaos: Discover R1 Agentofchaos Y2 Kralizec

21) wil: Trade B2 Y2 G1

22) Sarthobi: Build B2 G3

23) agentofchaos: Build Y1 Agentofchaos

24) wil: Sacrifice G3 Wil
Build B2 G1
Build B3 G1
Build B3 Wil

25) Sarthobi: Build B3 Sarthobi

26) agentofchaos: Discover Y1 Agentofchaos G2 Skanknor

27) wil: Sacrifice Y2 G1
Move B1 G1 G3
Move B1 G3 Sarthobi
Catastrophe Sarthobi B

28) Sarthobi: Sacrifice Y3 Sarthobi
Move B1 G3 G1
Move B1 G1 Wil
Move B2 G3 Sarthobi
Catastrophe Wil B

29) agentofchaos: Move G3 Agentofchaos Sarthobi

30) Sarthobi: T G1 R1 Sarthobi

31) agentofchaos: Sacrifice R1 Kralizec
Attack B2N Sarthobi

32) Sarthobi: Build R1 Sarthobi

33) agentofchaos: Trade B2 R2 Sarthobi

34) Sarthobi: Build R1 Sarthobi

35) agentofchaos: Pass
Catastrophe Sarthobi R
	Sarthobi: nice nice :]

	agentofchaos: Thanks for a fun game :-)
	Sarthobi: indeed :)
good game 
	wil: nice...


26716)
Variants: "Hard time"
Started: 2014.12.29, Ended: 2015.1.23
Participants: Rizzotto (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 B1 G3

2) Rizzotto: Homeworld R3 B2 G3

3) wil: Build G1 Wil
	Rizzotto: Hello again!
	wil: let's get this universe populated!


4) Rizzotto: Build G1 Rizzotto

5) wil: Trade G1 B1 Wil
	Rizzotto: Yeeeaah!

6) Rizzotto: Trade G1 Y1 Rizzotto

7) wil: Build B1 Wil
	Rizzotto: Happy (late) New Year!
	wil: backatcha

8) Rizzotto: Build Y1 Rizzotto

9) wil: Discover B1 Wil G2 G2

10) Rizzotto: Build G1 Rizzotto

11) wil: Sacrifice G3 Wil
Build B2 G2
Build B2 G2
Build B3 Wil

12) Rizzotto: Trade G1 Y1 Rizzotto

13) wil: Sacrifice B2 G2
Trade B2 Y2 G2
Trade B3 G3 Wil

14) Rizzotto: Discover Y1 Rizzotto G1 Gamora

15) wil: Sacrifice G3 Wil
Build B2 G2
Build B2 G2
Build B3 Wil

16) Rizzotto: Build Y2 Gamora

17) wil: Trade B3 G3 Wil

18) Rizzotto: Trade Y1 R1 Rizzotto

19) wil: Trade B2 R2 G2

20) Rizzotto: Build G1 Rizzotto

21) wil: Discover B2 G2 Y1 Y1



26719)
Variants: "Unrated"
Started: 2014.12.30, Ended: 2015.1.3
Participants: dsabremaster (S), Sarthobi (N)
Winner: Sarthobi

1) Sarthobi: Homeworld B2 Y1 G3



26724)
Variants: "Hard time"
Started: 2015.1.2, Ended: 2015.1.10
Participants: Gungho (S), wil (N)
Winner: Gungho

1) wil: Homeworld Y2 B1 G3
	Gungho: Round 2. Fight. :)
	wil: yee haw!!

2) Gungho: Homeworld G3 Y1 B3

3) wil: Build G1 Wil

4) Gungho: Build B1 Gungho

5) wil: Trade G1 B1 Wil

6) Gungho: Build B2 Gungho

7) wil: Build B2 Wil

8) Gungho: Discover B1 Gungho G2 Trogdor

9) wil: Trade B1 R1 Wil

10) Gungho: Build B1 Gungho

11) wil: Discover B2 Wil Y3 Y3

12) Gungho: Trade B1 Y1 Trogdor

13) wil: Build R1 Wil

14) Gungho: Trade B2 R2 Gungho

15) wil: Build G1 Wil

16) Gungho: Build B1 Gungho

17) wil: Move G1 Wil Y3

18) Gungho: Build Y1 Trogdor

19) wil: Move B2 Y3 Trogdor

20) Gungho: Sacrifice Y1 Trogdor
Discover Y1 Trogdor G3 Gwar

21) wil: Build B2 Trogdor

22) Gungho: Discover B1 Gungho Y2 Yeller

23) wil: Build B2 Trogdor

24) Gungho: Build B3 Gungho

25) wil: Trade B2 Y2 Trogdor

26) Gungho: Sacrifice B1 Gungho
Trade B3 Y3 Gungho

27) wil: Move R1 Wil Y3

28) Gungho: Move Y3 Gungho Trogdor

29) wil: Sacrifice G3 Wil
Build Y1 Trogdor
Build Y3 Trogdor
Build R1 Y3
Catastrophe Trogdor Y

30) Gungho: Build R2 Gungho

31) wil: Build R2 Y3

32) Gungho: Trade R2 Y2 Gungho

33) wil: Move R2 Y3 Trogdor

34) Gungho: Build Y1 Gwar

35) wil: Build R2 Trogdor
	Gungho: Ugh... just had one of those hindsight moments.....
	Gungho: That was an unexpected yellow catastrophe!

36) Gungho: Build Y3 Gungho
	wil: Yeah didn't do so well, you've got this in the bag..

37) wil: Build R3 Y3

38) Gungho: Sacrifice Y3 Gungho
Move B3 Gungho Yeller
Move B3 Yeller Gwar
Move B3 Gwar Wil
	Gungho: Maybe. Being locked out of yellow sucks. I'm also capable of making really stupid moves in my end game. My keep you away from 3 pips gambit has ended, too.

39) wil: Sacrifice G1 Y3
Build R3 Wil

40) Gungho: Sacrifice R2 Gungho
Attack R3N Wil
Attack R1N Wil
	wil: done well....well done

	wil: just some more for your fleet...
	Gungho: Thanks for playing! ^_^
	wil: thank you!  I enjoy the heck out of this game...win or lose...and it is always different...please challenge any time... I like being in lots of games (since often there are days between moves)


26729)
Variants: "Unrated"
Started: 2015.1.3, Ended: 2015.1.12
Participants: sounde (S), dsabremaster (N)
Winner: sounde



26737)
Variants: "Hard time"
Started: 2015.1.4, Ended: 2015.1.10
Participants: Sarthobi (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 B1 G3

2) Sarthobi: Homeworld B1 Y2 G3

3) wil: Build G1 Wil
	wil: thanx for the game!  Challenge as many times as you wish, I enjoy playing this!!  (and teaching if you have any questions)

4) Sarthobi: Build G1 Sarthobi
	wil: a little faux pas in the opening....when you pick the same small for your star you leave an easy monopoly start...when I change my g1 for blue you'll be cornered out of blues...your fix before it gets to far will be after you grow g1 switch your g3 for b3 (unless i get two close with a b and can catastrophe)  

5) wil: Trade G1 B1 Wil

6) Sarthobi: Build G1 Sarthobi

7) wil: Build B2 Wil

8) Sarthobi: Discover G1 Sarthobi B3 B3

9) wil: Discover B2 Wil Y2 Y2

10) Sarthobi: Build G1 B3

11) wil: Sacrifice G3 Wil
Build B2 Y2
Build B2 Y2
Build B3 Wil

12) Sarthobi: Build G2 B3

13) wil: Sacrifice B2 Y2
Trade B3 G3 Wil
Trade B2 Y2 Y2

14) Sarthobi: Trade G1 Y1 B3
	wil: don't fall for the sucker move I just dangled...

15) wil: Sacrifice G3 Wil
Build B2 Y2
Build B2 Y2
Build B3 Wil
	Sarthobi: Thanks for all the tips, trying to learn the game flow :)
This is as far as i've gotten with any game challange so far
	wil: I learned by losing...a lot...by seeing the moves and strategies come at me repeatedly

16) Sarthobi: Move Y1 B3 Y2
	wil: monopolies in any economy are bad...by allowing me to get a monopoly I can continually produce multiple ships and then change them into a variety of other ships accumulating twice as fast ..

17) wil: Sacrifice Y2 Y2
Discover B2 Y2 Y3 Y3

Discover B2 Y2 G3 G3
	Sarthobi: Good to know.. will try to avoid it next time i guess
	wil: best way to learn in my opinion is to see the power of it...
	wil: lol, nice effort!!

18) Sarthobi: Move Y1 Y2 Wil

19) wil: Build B3 G3

20) Sarthobi: Sacrifice G2 B3
Build Y1 Wil
Build Y1 Wil
Catastrophe Wil Y

21) wil: Sacrifice B2 Y2
Trade B3 Y3 G3
Trade B3 G3 Wil
	Sarthobi: Btw i love the commentary. helps a lot.
if i make any silly move, give me feed back :)

22) Sarthobi: Trade G1 Y1 B3

23) wil: Sacrifice G3 Wil
Build B2 G3
Build B3 Y3
Build B3 Wil

24) Sarthobi: Move Y1 B3 Wil

25) wil: Sacrifice B2 G3
Trade B3 R3 Wil
Trade B3 G3 Y3

26) Sarthobi: Trade G1 R1 Sarthobi
	wil: Ya got no red man!  no ability to attack...what is that little yellow mosquito doing in my homeworld?

27) wil: Attack Y1 Wil
	Sarthobi: yeah, i messed that up, didnt think all the way through :]


28) Sarthobi: Build R1 Sarthobi

29) wil: Sacrifice G3 Y3
Build B2 Wil
Build B3 G3
Build B3 Y3
	wil: Your crew have been anesthetized, your ship retrofitted for our use.  Send another transport ship and we'll have your crew loaded aboard for return to a neutral zone. 
	wil: attack is interesting...you can't move in and attack since it is turn based...the other guy can attack you if he is equal size and has the capability...  what I am working toward now, and I don't think you can stop because of my blue monopoly is.. you take one, I take three...  I send two big ships into your homeworld...you may be able to take one but with my Red Queen I'll be able to take that back and yours in the process...  so I'll sack my g3 again...for two more b3s then with my y3 send them in for the kill...

30) Sarthobi: Build G1 Sarthobi

31) wil: Build B3 G3

32) Sarthobi: Move G3 Sarthobi Y3

33) wil: Sacrifice Y3 G3
Move B3 Y3 Sarthobi
Move B2 Y3 Sarthobi
Discover B1 Wil Y3 Why3
	wil: the ships are on the horizon....

34) Sarthobi: Sacrifice G3 Y3
Build G1 Sarthobi
Build G1 Sarthobi
Build R1 Sarthobi
	wil: Ah....they've left their star system...attempting to discover greener pastures elsewhere...
 

35) wil: Trade B2 R2 Sarthobi
Catastrophe Sarthobi R
	Sarthobi: I can either lose this round or claw my way to another round and then lise :p

36) Sarthobi: Trade G1 R1 Sarthobi

37) wil: Sacrifice R3 Wil
Attack R1 Sarthobi
Attack G1 Sarthobi
Attack G1 Sarthobi
	wil: https://www.youtube.com/watch?v=Zf-fORxQvW0


	wil: The monopoly is what killed you... When someone gets a color...insure you get that color (unless you are able to hold a simultaneous monopoly of another color...but that is fraught with peril) 
	Sarthobi: Thanks a lot for the game :)
Learned a few things hehe.
I'll finish some challanges and will try out some new ones later.
Good game!
	wil: I try to keep a half dozen to a dozen games going (since some folks take 3-7 days to play) challenge me anytime...  I lost probably 80% if my first few dozen games of homeworlds...but I love watching it..


26738)
Variants: "Hard time"
Started: 2015.1.4, Ended: 2015.1.6
Participants: Gungho (S), Sarthobi (N)
Winner: Gungho

1) Sarthobi: Homeworld Y2 B1 G3

2) Gungho: Homeworld G3 Y1 B3
	Gungho: Hello. Have fun :)

3) Sarthobi: Build G1 Sarthobi
	Sarthobi: Thanks, you too :)

4) Gungho: Build B1 Gungho

5) Sarthobi: Trade G1 Y1 Sarthobi

6) Gungho: Build B1 Gungho

7) Sarthobi: Build Y1 Sarthobi

8) Gungho: Discover B1 Gungho G2 Buildy

9) Sarthobi: Discover Y1 Sarthobi G3 G3buildy

10) Gungho: Build B2 Buildy

11) Sarthobi: Build Y2 Sarthobi

12) Gungho: Trade B3 Y3 Gungho

13) Sarthobi: Build Y2 G3buildy
	Gungho: O.o I'm not really sure what my best choice was there.  Sometimes you gotta pull out plan "wing it".

14) Gungho: Build B2 Gungho
	Sarthobi: Plan 'wing it' it is then!
I'm not sure of any of my moves yet :p

15) Sarthobi: Sacrifice Y2 Sarthobi
Move Y1 G3buildy Buildy
Move Y1 Buildy Gungho
	Gungho: Sometimes the options are overwhelming, but you start to learn how you like to get things done after a while.  Not me.. but ya know... other players. :)

16) Gungho: Trade Y3 R3 Gungho

17) Sarthobi: Sacrifice G3 Sarthobi
Build Y2 Gungho
Build Y3 Gungho
Build Y3 Sarthobi
Catastrophe Gungho Y

18) Gungho: Trade B1 Y1 Buildy

19) Sarthobi: Trade Y3 G3 Sarthobi

20) Gungho: Sacrifice Y1 Buildy
Move R3 Gungho Sarthobi

21) Sarthobi: Move G3 Sarthobi Gungho

22) Gungho: Attack Y1N Sarthobi
	Gungho: Thanks for the game. You had a strong open. You had me locked out of yellow, and you were out pacing me on getting to 3 pips.
	Sarthobi: Thanks :)
I thought i could have one more round that i lose if i dont have ships in the home world by the end of my turn.
Great game :)



26704)
Variants: "Hard time"
Started: 2015.1.4, Ended: 2015.1.27
Participants: Sarthobi (S), SilentTitan (N)
Winner: Sarthobi

1) SilentTitan: Homeworld R1 B2 G3

2) Sarthobi: Homeworld Y3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) Sarthobi: Build G1 Sarthobi

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Sarthobi: Build G1 Sarthobi

7) SilentTitan: Build Y1 Silenttitan

8) Sarthobi: Trade G1 B1 Sarthobi

9) SilentTitan: Build Y1 Silenttitan

10) Sarthobi: Build B1 Sarthobi

11) SilentTitan: Discover Y1 Silenttitan G3 Sol

12) Sarthobi: Discover B1 Sarthobi G2 G2

13) SilentTitan: Discover Y1 Silenttitan B3 Soul

14) Sarthobi: Build B2 G2

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Soul
Build Y2 Silenttitan

16) Sarthobi: B B2 G2

17) SilentTitan: Build Y3 Sol

18) Sarthobi: B B3 Sarthobi

19) SilentTitan: Discover Y1 Silenttitan Y3 Sole

20) Sarthobi: Trade B3 R3 Sarthobi

21) SilentTitan: Move Y3 Sol Silenttitan
	SilentTitan: Oooooh Shiny

22) Sarthobi: Build B3 Sarthobi

23) SilentTitan: Move Y1 Sol Silenttitan
	Sarthobi: brand new and shiny :]
you can smell the scent all the way to your home world :P
	SilentTitan: Ah... Well I believe this is a draw. First one I've ever seen, and maybe I've missed something somewhere.  I do tend to be wrong from time to time.

24) Sarthobi: Trade B3 R3 Sarthobi

25) SilentTitan: Discover Y1 Soul R2 Tic
	Sarthobi: i dont think it's a draw.. maybe i didnt think that far, but we have some options for the game :)

26) Sarthobi: M R3 Sarthobi Tic

27) SilentTitan: Move Y1 Tic Sol

28) Sarthobi: B B3 Sarthobi

29) SilentTitan: Discover Y1 Sol R2 Tac

30) Sarthobi: B R1 Sarthobi

31) SilentTitan: Discover Y2 Soul G2 Toe

32) Sarthobi: M B3 Sarthobi Tac

33) SilentTitan: Move Y1 Tac Sol

34) Sarthobi: B B3 Sarthobi

35) SilentTitan: Discover Y1 Sol G2 Ying

36) Sarthobi: B R1 Sarthobi

37) SilentTitan: Discover Y2 Toe B3 Yang

38) Sarthobi: Move R1 Sarthobi G2

39) SilentTitan: Discover Y2 Yang G2 Mish

40) Sarthobi: M B1 Sarthobi Tic

41) SilentTitan: Move Y1 Silenttitan Sol

42) Sarthobi: B B3 Sarthobi

43) SilentTitan: Discover Y1 Sol R2 Mash

44) Sarthobi: B R3 Sarthobi

45) SilentTitan: Move Y1 Mash Sol

46) Sarthobi: T R3 G3 Tic

47) SilentTitan: Move Y1 Sol Silenttitan

48) Sarthobi: M R3 Sarthobi Mish

49) SilentTitan: Discover Y2 Mish R3 Eenie

50) Sarthobi: M R3 Sarthobi Ying

51) SilentTitan: Discover Y1 Ying G1 Meenie

52) Sarthobi: M G3 Sarthobi G2

53) SilentTitan: Move Y2 Eenie Meenie

54) Sarthobi: T B3 R3 Sarthobi

55) SilentTitan: Move Y1 Meenie Sol

56) Sarthobi: B B3 Sarthobi

57) SilentTitan: Move Y1 Sol Meenie

58) Sarthobi: Build R2 Sarthobi

59) SilentTitan: Move Y1 Silenttitan Sol

60) Sarthobi: Build G1 Sarthobi

61) SilentTitan: Move Y1 Sol Silenttitan

62) Sarthobi: Sacrifice B1 Tic
Pass

63) SilentTitan: Pass
	SilentTitan: Draw?
	Sarthobi: not yet :)
gonna do some crazy moves now
	Sarthobi: btw, how do we call a draw?

64) Sarthobi: Pass
	SilentTitan: Not sure.  Like I said this would be the first ever for me.

65) SilentTitan: Move Y2 Meenie Sol

66) Sarthobi: Move G1 Sarthobi Tac

67) SilentTitan: Move Y2 Sol Meenie

68) Sarthobi: Trade G1 B1 Tac

69) SilentTitan: Move Y2 Silenttitan Sol

70) Sarthobi: B G1 Sarthobi

71) SilentTitan: Move Y2 Sol Silenttitan

72) Sarthobi: Pass

73) SilentTitan: Move Y2 Meenie Sol

74) Sarthobi: Pass

	SilentTitan: Draw?
	dlwillson: Huh. Too bad there's no league. We could call a judge. I think it's supposed to end when both players pass, but I'm not sure.
	Sarthobi: Draw
	SilentTitan: Good game


26759)
Variants: "Hard time"
Started: 2015.1.6, Ended: 2015.1.16
Participants: mneme (S), Gungho (N)
Winner: Gungho

1) Gungho: Homeworld G3 Y1 B3

2) mneme: Homeworld R1 B2 G3
	Gungho: Thanks for accepting.  Have fun

3) Gungho: Build B1 Gungho

4) mneme: Build G1 Mneme

5) Gungho: Build B1 Gungho

6) mneme: Trade G1 B1 Mneme

7) Gungho: Discover B1 Gungho G2 Mold

8) mneme: Build B2 Mneme

9) Gungho: Build B2 Mold

10) mneme: Trade B1 Y1 Mneme

11) Gungho: Trade B2 Y2 Mold

12) mneme: Discover B2 Mneme G3 Forest

13) Gungho: Build B1 Mold

14) mneme: Build G1 Mneme

15) Gungho: Trade B1 R1 Mold

16) mneme: Trade G1 R1 Mneme

17) Gungho: Build R2 Mold

18) mneme: Move R1 Mneme Forest

19) Gungho: Trade R1 B1 Mold

20) mneme: Build G1 Mneme

21) Gungho: Trade B1 G1 Mold
	mneme: Oh, missed your chat--have fun!
	Gungho: Thanks! :)

22) mneme: Discover G1 Mneme B3 Ocean

23) Gungho: Discover G1 Mold B3 Puddle

24) mneme: Build G1 Mneme

25) Gungho: Build G2 Puddle

26) mneme: Discover G1 Mneme Y3 Sol

27) Gungho: Move R2 Mold Ocean

28) mneme: Sacrifice G1 Ocean
Build Y1 Mneme

29) Gungho: Build Y2 Mold

30) mneme: Move Y1 Mneme Forest

31) Gungho: Sacrifice Y2 Mold
Move G1 Puddle Mneme
Move G2 Puddle Mneme

32) mneme: Sacrifice G3 Mneme
Build Y2 Forest
Build Y2 Forest
Build Y3 Mneme
	Gungho: This ought to stir the pot some. :)

33) Gungho: Build Y3 Mold

34) mneme: Attack G2 Mneme
	mneme: Well, yes.  

35) Gungho: Move Y2 Mold Forest
Catastrophe Forest Yellow

36) mneme: Attack G1 Mneme

37) Gungho: Move Y3 Mold Forest
	mneme: NOT happy with being behind in larges.  But still, a successful defense.

38) mneme: Sacrifice G2 Mneme
Build R1 Forest
Build R2 Forest

39) Gungho: Sacrifice R2 Ocean
Attack R2S Forest
Attack B2S Forest

40) mneme: Build R2 Forest
Catastrophe Forest R

41) Gungho: Trade B3 G3 Gungho

42) mneme: Trade Y1 R1 Mneme

43) Gungho: Sacrifice G3 Gungho
Build B1 Mold
Build B2 Mold
Build B3 Gungho

44) mneme: Build Y1 Mneme

45) Gungho: Build B3 Forest

46) mneme: Discover G1 Mneme B3 No

47) Gungho: Sacrifice B2 Forest
Trade B2 Y2 Mold
Trade B3 R3 Gungho

48) mneme: Trade Y3 G3 Mneme

49) Gungho: Sacrifice Y2 Mold
Move B3 Forest Mneme
Move Y3 Forest Mneme

	mneme: nicely done.  Missed that you'd set up your freeze quite so close to my home system, but once you did it was all over.  Another game?
	Gungho: Thanks. You had quite the bag of defensive tricks. I enjoyed that game.  Another game sounds great.


26750)
Variants: "Hard time"
Started: 2015.1.10, Ended: 2015.1.14
Participants: wil (S), Sarthobi (N)
Winner: wil

1) Sarthobi: Homeworld B1 Y2 G3
	Sarthobi: Lets see how i'll do this time

2) wil: Homeworld R3 B2 G3
	wil: COOL!!  Thanx..so openings...you've chosen the best one...or the one the best players like to use most and win with most... The Banker...I'll take Goldilocks...no...I'll take fortress, I want to learn how to use it to my advantage.

3) Sarthobi: Build G1 Sarthobi
	Sarthobi: I guess the red in the opening lets you stay defensive if i come by with a shi, right?
And i like this game :)
Trying to think of a way to make some AI for it that wont act foolish.

	Sarthobi: I guess the red in the opening lets you stay defensive if i come by with a shi, right?
And i like this game :)
Trying to think of a way to make some AI for it that wont act foolish.


4) wil: Build G1 Wil
	wil: We dream of someone creating an app where you just slide pieces from the bank to the position...it jumps back if it is an illegal move... you can toggle on helps so whenever you touch a piece it shows where it can move...  of the day we can play a computer...  
	wil: Yes, having the power of defense in my star is just like having a gun at my star...  While I like having immediate transportation, having a defense system (can't be used in agression when it can't move or be sacked) is valuable...we come in peace.

5) Sarthobi: T G1 B1 Sarthobi
	Sarthobi: I saw how peacful you are. You wont fool me with that act :p

6) wil: Trade G1 B1 Wil

7) Sarthobi: B B2 Sarthobi

8) wil: Build B2 Wil

9) Sarthobi: T B1 Y1 Sarthobi

10) wil: Trade B2 Y2 Wil

11) Sarthobi: D Y1 Sarthobi G3 G3

12) wil: Build G1 Wil

13) Sarthobi: B G1 Sarthobi

14) wil: Trade G1 R1 Wil

15) Sarthobi: T G1 R1 Sarthobi

16) wil: Build G1 Wil

17) Sarthobi: Build G1 Sarthobi

18) wil: Build Y1 Wil

19) Sarthobi: Move B2 Sarthobi G3
	wil: So this is the building game...you've avoided being locked out of anything...and now it is trying to not be the person that lets the other gain in the larger ships...(while being the person that takes the upper eddge in the larger ships)
	Sarthobi: seems like it :]

20) wil: Discover Y1 Wil G1 G1

21) Sarthobi: Build G2 Sarthobi

22) wil: Discover G1 Wil Y1 Y1

23) Sarthobi: M G2 Sarthobi G3
	wil: Do you have a physical set of pyramids?  This display is just about the worst for actually figuring out what is going on...  
	Sarthobi: Hehe i dont, and this display aint toi good.. but we can manage :)

24) wil: Build G2 Y1

25) Sarthobi: D G2 G3 G2 G2
	wil: You should get a set....playing real time with others is great...and when you get to critical conditions in an online game seeing a real layout helps...a lot.  (I should do it more, but don't)

26) wil: Discover G2 Y1 Y3 Y3
	Sarthobi: I'm thinking about it, wanted to try out the game a few times before :)

27) Sarthobi: D G1 Sarthobi Y3 Y-3
	wil: That makes sense...I know no better two player strategy game.   I enjoy chess, but the flavor of this is superior...games are not ever close in look or feel, and the reboot caused by catastrophes as well as the 'banking' system is great.

28) wil: Move B1 Wil G1
	Sarthobi: When i first read the rules i wasn't sure the game had this much depth. The rules intriged me, but Playing it really changed the way i saw it.

29) Sarthobi: S G2 G2
B G2 Y-3
B G2 Sarthobi
	wil: John Cooper developed the most amazing game with the Looney Pyramids...  I am now learning Volcano, and Martian Chess, both good, but this is the best published game with them I know...having a set of them though is quite versatile...lots of games to play...  this one, play anywhere, no board needed...just a table.

	wil: John Cooper developed the most amazing game with the Looney Pyramids...  I am now learning Volcano, and Martian Chess, both good, but this is the best published game with them I know...having a set of them though is quite versatile...lots of games to play...  this one, play anywhere, no board needed...just a table.


30) wil: Move R1 Wil Y1

31) Sarthobi: Move G2 Y-3 Y1

32) wil: Move G1 Y1 Wil

33) Sarthobi: Sacrifice R1 Sarthobi
Attack R1 Y1

34) wil: Sacrifice G3 Wil
Build Y2 Wil
Build Y3 G1
Build G3 Wil

35) Sarthobi: Sacrifice G1 Y-3
Build Y3 G3

36) wil: Trade Y2 R2 Wil

37) Sarthobi: B R1 Y1
	wil: Hence the banker...used exactly correctly

38) wil: Discover Y1 G1 B3 B3

39) Sarthobi: S Y3 G3
M R1 Y1 Wil
M R1 Y1 Wil
M G2 Y1 Wil
C Wil R

40) wil: Trade G1 R1 Wil

41) Sarthobi: T G2 Y2 Sarthobi
	wil:  a little reboot... but it looks like you've left me in decent shape...don't need that big red...

42) wil: Attack G2 Wil
	wil: one move to mate..  starship captains warning....

43) Sarthobi: B B1 G3
	wil: good job!!

44) wil: Sacrifice G2 Wil
Build Y1 G1
Build Y3 B3

45) Sarthobi: M B1 G3 Wil
	Sarthobi: Thnks :p

46) wil: Attack B1 Wil
	wil: I was about ready to go to bed....should I stay up... tell me if you are going to think about a move for a while...
	Sarthobi: You can go if you want, i have likr an hour of free time right now
	wil: yes there is thinking to be had....I think you are one step behind...you got a good plan thou...

47) Sarthobi: B B2 G3
	Sarthobi: I think you can out menuver me no matter what move i whould have done..
But i think this might open the mist options for me..
It is a good game any way :)

48) wil: Sacrifice Y3 G1
Move B1 G1 G3
Move B1 Wil G3
Move Y3 B3 Sarthobi
Catastrophe G3 B

49) Sarthobi: T Y2 R2 Sarthobi

50) wil: Sacrifice R1 Wil
Attack R2 Sarthobi
	wil: Now that, is a reboot of the universe...  
	wil: again one move to mate...  and I don't yet see a way out...hmmmm there is another delaying tactic..

51) Sarthobi: M Y1 G3 Sarthobi
	Sarthobi: Nice move, 
I'm stuck on a diffrent game. Both players are locked :p
On #26704

52) wil: Sacrifice R2 Sarthobi
Attack Y1 Sarthobi
Attack G3 Sarthobi
	wil: and nice try..  enjoyed the game... before you made your move on me...if you'd have added a piece in your homeworld so you could sack your y2 and move two blues in...you'd've had the game!  
	Sarthobi: Thanks, great game.
I didnt think that move through. It was the general idea and i rushed it.
Oh well :)
	wil: lol...interesting battle over there..both of you going for monopolies... he's a good player... good luck

	wil: Please don't hesitate to challenge me again!
	wil: So many moving parts with so few pieces...  learn the bluebird, monopolies, u take 1/2, I take 2/3, factory... you are a formidable foe!


26774)
Variants: "Unrated, Hard time"
Started: 2015.1.11, Ended: 2015.1.13
Participants: Gungho (S), Sarthobi (N)
Winner: Gungho

1) Sarthobi: Homeworld B1 Y2 G3

2) Gungho: Homeworld G3 Y1 B3

3) Sarthobi: Build G1 Sarthobi
	Gungho: Hello. Enjoy the game!
	Gungho: Hello. Enjoy the game!
	Gungho: Oops. Double tap. O.o

4) Gungho: Build B1 Gungho
	Sarthobi: Thanks, you too!
:]

5) Sarthobi: Trade G1 B1 Sarthobi

6) Gungho: Trade B1 Y1 Gungho

7) Sarthobi: Build G1 Sarthobi

8) Gungho: Build Y1 Gungho

9) Sarthobi: Sacrifice G3 Sarthobi
Build G1 Sarthobi
Build G1 Sarthobi
Build B1 Sarthobi

10) Gungho: Build B2 Gungho
	Gungho: That's a pretty wild move. Opened up the 2 pips for sure. Beware bigger ships getting to your HW!

11) Sarthobi: Discover G1 Sarthobi B3 B3

12) Gungho: Trade B3 R3 Gungho
	Sarthobi: yeah, seems like a bad move in retro spec
	Gungho: Someone who's better than me would know exactly what to do to take advantage of it.  I have a rough idea.  The presence of a 3 pip at HW is really important for defense in the early game.

13) Sarthobi: B G2 B3

14) Gungho: Discover R3 Gungho Y2 Darkcloud
	Sarthobi: Yeah.. i'm still a newb..
Well i'll learn the hard way :)

15) Sarthobi: T G2 Y2 B3

16) Gungho: Discover R3 Darkcloud Y3 Brightlight

17) Sarthobi: Build Y2 B3

18) Gungho: Move R3 Brightlight Sarthobi

19) Sarthobi: B Y3 B3

20) Gungho: Attack G1N Sarthobi

21) Sarthobi: Sacrifice Y2 B3
Discover Y2 B3 R2 R2
Move Y2 R2 Gungho
Catastrophe Gungho Y

22) Gungho: Sacrifice R3 Sarthobi
Attack G1N Sarthobi
Attack B1N Sarthobi
Attack B1N Sarthobi
	Gungho: Thanks for the game. I was happy to see you get the yellow catastrophe. Next time maybe keep a big ship at your hw.  And also remember the "gun rule".  If your opponent draws his gun (red ship) it's almost always a good idea to draw your own.

Sorry I'm not a great teacher, but feel free to send me a challenge any time (rated or not)
	Sarthobi: Thanks a lot, i didnt think about you using the sacrifice on the red ship a head of time, thought i'd get to destroy the second star before you catch all my ships :]




26780)
Variants: "Hard time"
Started: 2015.1.12, Ended: 2015.1.26
Participants: TeeTeeTee (S), dlwillson (N)
Winner: TeeTeeTee

1) dlwillson: H Y3 B1 G3

2) TeeTeeTee: Homeworld Y1 B2 G3

3) dlwillson: B G1 Dlwillson

4) TeeTeeTee: Build G1 Teeteetee

5) dlwillson: Trade G1 B1 Dlwillson

6) TeeTeeTee: Trade G1 B1 Teeteetee

7) dlwillson: Build B2 Dlwillson

8) TeeTeeTee: Build B2 Teeteetee

9) dlwillson: Discover B2 Dlwillson G2 Field

10) TeeTeeTee: Trade B2 Y2 Teeteetee

11) dlwillson: B B2 Field

12) TeeTeeTee: Build B3 Teeteetee

13) dlwillson: B B3 Dlwillson

14) TeeTeeTee: Discover B1 Teeteetee G3 Pear

15) dlwillson: Trade B1 R1 Dlwillson

16) TeeTeeTee: Sacrifice G3 Teeteetee
Build Y1 Teeteetee
Build B1 Teeteetee
Build B3 Pear

17) dlwillson: Trade B2 Y2 Field
	dlwillson: Interesting!

18) TeeTeeTee: Trade B1 R1 Teeteetee

19) dlwillson: Move B2 Field Pear
	TeeTeeTee: It's always nice to try something different.

20) TeeTeeTee: Sacrifice B1 Pear
Trade B3 R3 Pear

21) dlwillson: S Y2 Field
D B2 Pear Y2 Sunny
D B3 Dlwillson G2 Field
	dlwillson: I'll come back after work.

22) TeeTeeTee: Move Y2 Teeteetee Pear

23) dlwillson: B B1 Field

24) TeeTeeTee: Build Y1 Pear

25) dlwillson: Trade B3 Y3 Field

26) TeeTeeTee: Build Y2 Pear

27) dlwillson: Discover B2 Sunny Y3 Golden

28) TeeTeeTee: Trade B3 G3 Teeteetee

29) dlwillson: Build Y2 Field

30) TeeTeeTee: Sacrifice Y2 Pear
Move Y2 Pear Field
Move Y1 Pear Field
Catastrophe Field Yellow

31) dlwillson: Build G1 Dlwillson

32) TeeTeeTee: Build Y1 Teeteetee

33) dlwillson: Trade G1 B1 Dlwillson

34) TeeTeeTee: Sacrifice Y1 Teeteetee
Move R3 Pear Field

35) dlwillson: T B1 G1 Field

36) TeeTeeTee: Attack G1 Field

37) dlwillson: B G1 Dlwillson

38) TeeTeeTee: Build Y1 Teeteetee

39) dlwillson: T B2 G2 Golden

40) TeeTeeTee: Build G1 Teeteetee

41) dlwillson: Move G1 Dlwillson Field

42) TeeTeeTee: Sacrifice Y1 Teeteetee
Move R3 Field Golden

43) dlwillson: Discover G2 Golden Y2 Sunny

44) TeeTeeTee: Sacrifice G3 Teeteetee
Build G2 Field
Build G3 Teeteetee
Build G3 Teeteetee
Catastrophe Field Green

45) dlwillson: B G1 Dlwillson

46) TeeTeeTee: Build Y1 Teeteetee
	dlwillson: Well. Good game. I'll play it out, if you like.
	TeeTeeTee: That's up to you! It'd be quite reasonable to stop, here, if you think you can't make a come-back from this. (I don't believe that I've won a game after being two large ships down, before.)

	dlwillson: I'll resign so the ladder is open to other attackers. No point wasting time. Well played.
	wil: Helluva game guys!  I'ma gonna wait... see if you can get 2short outta the woods DL
	TeeTeeTee: Okay, then. Thanks!

I reckon that two things cost you the game, here. First was "15. Build y2 field": it let me go a large ship ahead, and I was able to harrass your small and medium ships in the centre from then on. The second was to trade away your blues, starting from "18. Trade b1 g1 field". At this point in the game, you had a far better grasp on the blue ships than I did, and there were lots of unbuilt b3s in the stash, which made blues very valuable. Indeed, sacrificing the g3 on this turn would have put you level with me on large ships (and you could have then sacrificed a smaller ship to prevent catastrophe on the next turn).

Also, I'm probably only going to defend my ladder position for maybe one or two more games: I kind of feel like I should give Homeworlds a rest for a bit. (Or, at least, I'd like to have the choice of when to accept games...)
	wil: dang they reach the top and then retire....



26751)
Variants: "Hard time"
Started: 2015.1.14, Ended: 2015.3.14
Participants: agentofchaos (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	agentofchaos: Hi have fun

2) agentofchaos: Homeworld B3 R2 G3

3) SilentTitan: Build G1 Silenttitan

4) agentofchaos: Build G1 Agentofchaos

5) SilentTitan: Trade G1 R1 Silenttitan

6) agentofchaos: Trade G1 R1 Agentofchaos

7) SilentTitan: Build R2 Silenttitan

8) agentofchaos: Build R2 Agentofchaos

9) SilentTitan: Trade R2 Y2 Silenttitan

10) agentofchaos: Trade R1 Y1 Agentofchaos

11) SilentTitan: Build Y1 Silenttitan

12) agentofchaos: Discover R2 Agentofchaos Y1 Hartstorm

13) SilentTitan: Discover Y1 Silenttitan B3 Sol

14) agentofchaos: Build Y2 Agentofchaos

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Silenttitan
Build Y3 Silenttitan

16) agentofchaos: Discover Y1 Agentofchaos G1 Krillsol

17) SilentTitan: Discover Y3 Silenttitan Y3 Soul

18) agentofchaos: Build G1 Agentofchaos

19) SilentTitan: Trade Y1 G1 Sol

20) agentofchaos: Build Y1 Krillsol

21) SilentTitan: Trade Y2 G2 Silenttitan

22) agentofchaos: Build Y2 Agentofchaos

23) SilentTitan: Build G2 Silenttitan

24) agentofchaos: Move Y1 Krillsol Soul

25) SilentTitan: Build G2 Sol

26) agentofchaos: Move Y1 Krillsol Soul
Catastrophe Soul Y

27) SilentTitan: Sacrifice G2 Sol
Build Y1 Sol
Build Y1 Silenttitan

28) agentofchaos: Discover Y2 Agentofchaos G1 Akastroph

29) SilentTitan: Sacrifice Y2 Sol
Discover G2 Silenttitan Y3 Sole
Discover G2 Silenttitan Y3 Soul

30) agentofchaos: Build Y2 Akastroph

31) SilentTitan: Sacrifice G2 Soul
Build Y3 Sol
Build G2 Sol

32) agentofchaos: Discover Y2 Akastroph G3 Doomclysm

33) SilentTitan: Discover Y3 Sol B1 Soul

34) agentofchaos: Move Y2 Akastroph Doomclysm

35) SilentTitan: Sacrifice G2 Sole
Build Y3 Sol
Pass

36) agentofchaos: M R2 Hartstorm Doomclysm

37) SilentTitan: Trade Y3 G3 Silenttitan



26776)
Variants: "Hard time"
Started: 2015.1.15, Ended: 2015.1.19
Participants: wil (S), Sarthobi (N)
Winner: Sarthobi

1) Sarthobi: Homeworld B1 Y2 G3
	Sarthobi: Hello again :)

2) wil: Homeworld B3 Y1 G3

3) Sarthobi: B G1 Sarthobi

4) wil: Build G1 Wil

5) Sarthobi: T G1 B1 Sarthobi

6) wil: Trade G1 Y1 Wil

7) Sarthobi: B B1 Sarthobi

8) wil: Build Y1 Wil

9) Sarthobi: D B1 Sarthobi G3 G3

10) wil: Discover Y1 Wil G2 G2

11) Sarthobi: B B2 G3

12) wil: Sacrifice G3 Wil
Build Y2 G2
Build Y2 Wil
Build Y3 G2

13) Sarthobi: B B2 Sarthobi
	wil: in this case I went for yellow because even thou you were a step ahead...there were only two drone yellows...which would allow me to jump ahead and get to queens first... we'll see how it plays out..
	wil: a big thing in this game is...'darnit...how did s/he get ahead of me?'

14) wil: Discover Y3 G2 B3 B3
	Sarthobi: Yeah indeed, i learn things as i see them against me.
Nice
	wil: Yes, exactly how I learned...somewhere between the third and seventh attack of the same way I began to catch on... top players still kick my butt...every time!

15) Sarthobi: D B1 Sarthobi Y3 Y3
	wil: It is easy to see the move that gets ya...it takes a bit to see the set up that allows the move..


16) wil: Trade Y3 B3 B3

17) Sarthobi: B G1 Sarthobi
	wil: very weird game...love it!  

18) wil: Build Y3 G2

19) Sarthobi: T G3 Y3 Sarthobi

20) wil: Trade Y1 G1 Wil

21) Sarthobi: T B1 Y1 G3

22) wil: Build G1 Wil

23) Sarthobi: B G2 Sarthobi

24) wil: Trade G1 R1 Wil

25) Sarthobi: M Y1 G3 G2
Catastrophe G2 Y

26) wil: Trade B3 G3 B3
	wil: what...was I blind?


27) Sarthobi: B B1 G3

28) wil: Build Y1 Wil
	Sarthobi: Seems so :)
Got a little lucky 

29) Sarthobi: B B2 G3

30) wil: Discover Y1 Wil G2 G2

31) Sarthobi: T B2 Y2 G3

32) wil: Move Y1 G2 Y3

33) Sarthobi: T G1 R1 Sarthobi

34) wil: Sacrifice R1 Wil
Attack B1 Y3

35) Sarthobi: B Y1 G3

36) wil: Build G1 Wil

37) Sarthobi: Discover B2 G3 G2 G2
	wil: I am playing terribly

38) wil: Trade G1 R1 Wil

39) Sarthobi: Build B2 G2

40) wil: Discover Y1 Y3 G2 Gee2

41) Sarthobi: Build G1 Sarthobi

42) wil: Sacrifice G3 B3
Build B3 Y3
Build Y3 Gee2
Build R1 Wil

43) Sarthobi: Sacrifice Y2 G3
Move B2 G2 Wil
Move B2 G2 Wil
	Sarthobi: nice play.. i wonder how this effects my plan :)

44) wil: Move B1 Y3 Sarthobi

45) Sarthobi: Sacrifice G2 Sarthobi
Build B3 Wil
Build Y2 G3
Catastrophe Wil B
	wil: Nice plan...let us see how she plays out...
	Sarthobi: i dont think you can stop it, at least not with out a huge lose on your side

46) wil: Sacrifice Y3 Gee2
Move Y1 Gee2 Y3
Move B3 Y3 Sarthobi

Move Y1 Y3 Sarthobi
Catastrophe Sarthobi B
	wil: you got me by one I think...

	wil: nope...you got me by a glitch in the system!!  darnitall...  

s y3 gee2
m b3 y3 sarthobi
c sarthobi b
m y1 gee2 sarthobi
m y1 wil sarthobi
c sarthobi y



47) Sarthobi: S Y3 Sarthobi
M Y2 G3 Wil
M Y1 G3 Wil
Pass
C Wil Y
	wil: good game!
	wil: good game!
	Sarthobi: Great game :)
Thanks!



26791)
Variants: "Unrated"
Started: 2015.1.15, Ended: 2015.2.18
Participants: wil (S), sounde (N)
Winner: sounde

1) sounde: Homeworld Y1 B3 G3

2) wil: Homeworld B2 Y3 G3
	sounde: Haven't played this in years. Hope I still offer some amount of challenge.
	wil: I like the game....we'll see about a challenge...

3) sounde: Build G1 Sounde

4) wil: Build G1 Wil
	wil: Where did you play?  Here?

5) sounde: Trade G1 Y1 Sounde

6) wil: Trade G1 Y1 Wil
	sounde: Yeah. I also own a set of pyramids, but haven't played in person in a long time.

7) sounde: Build Y2 Sounde
	wil: cool.... I prefer this over chess now...  Although I have more folks that will play chess...  and seems chess folks get leery of learning something they may like better than chess...
	sounde: Ha hah. This is chessy in some ways and yeah... chess folks seem to get stuck in chess.

8) wil: Build Y2 Wil
	wil: intragalactic war game instead of land based... 

9) sounde: Discover Y2 Sounde G2 Sissa

10) wil: Trade Y1 R1 Wil

11) sounde: Trade Y1 R1 Sounde

12) wil: Build G1 Wil

13) sounde: Build G1 Sounde
	sounde: How long have you been playing?

14) wil: Trade G1 B1 Wil
	wil: It says first game march 2013... almost two years, and almost 200 games...  hmmm  that would be about 2 games a week...  I lost a lot while learning....

15) sounde: Build Y1 Sissa

16) wil: Discover Y2 Wil G1 G1

17) sounde: Discover Y2 Sissa B1 Huin

18) wil: Build B1 Wil

19) sounde: Trade Y2 G2 Huin

20) wil: Move B1 Wil G1

21) sounde: Sacrifice G3 Sounde
Build G1 Huin
Build G2 Huin
Build G3 Sounde

22) wil: Build G3 Wil

23) sounde: Trade G2 Y2 Huin

24) wil: Discover G3 Wil Y1 Y1

25) sounde: Sacrifice Y2 Huin
Move G1 Huin Wil
Move G2 Huin Wil

26) wil: Trade G3 Y3 Wil

27) sounde: Trade G2 Y2 Wil

28) wil: Trade Y3 R3 Wil

29) sounde: Sacrifice G3 Sounde
Build G2 Wil
Build G2 Wil
Build G3 Sounde
	wil: did that wrong last time...  coulda stopped ya from being such a pest..

30) wil: Move G3 Y1 Wil
Catastrophe Wil G
	sounde: nuisancing!
	sounde: i'm relearning how some of these things play out. may be a bit too bold, but it's all process. :)
	wil: no, it is great...I agree, I lost so many games, correct that lose so many games, by experimentation, but there are lessons to be learned...

31) sounde: Discover Y2 Wil G1 Huin

32) wil: Trade R3 G3 Wil

33) sounde: Build G2 Sounde

34) wil: Build B1 G1

35) sounde: Discover G2 Sounde B2 Tra

36) wil: Discover B1 G1 G3 G3

37) sounde: Sacrifice G3 Sounde
Build G2 Tra
Build G3 Sounde
Build Y1 Huin

38) wil: Sacrifice G3 Wil
Build B2 G3
Build B3 Wil
Build B3 G1

39) sounde: Sacrifice G3 Sounde
Build G3 Sounde
Build G3 Tra
Build Y2 Huin

40) wil: Build Y3 G1
	sounde: i'm probably in some trouble now with the blue lock-out. i remember that being problematic.

41) sounde: Sacrifice Y2 Huin
Move G3 Tra G3
Discover G2 Tra R1 Dorst
	wil: it could be...but you've got greens..any monopoly is an issue...

42) wil: Move B3 G1 Tra

43) sounde: Sacrifice G2 Tra
Build G2 Dorst
Build Y2 Sissa
	wil: so we'll end both monopolies with a prisoner exchange...

44) wil: Trade B3 Y3 Tra
	sounde: nah.

45) sounde: Build R2 Sounde

46) wil: Build B3 G1

47) sounde: Sacrifice R1 Sounde
Attack B2 G3

48) wil: Move B1 G1 G3

49) sounde: Sacrifice B2 G3
Trade G2 B2 Dorst
Trade Y1 R1 Huin

50) wil: Trade Y2 R2 G1
	sounde: thanks for the patience

51) sounde: Sacrifice G3 G3
Build G2 Sounde
Build G3 Dorst
Build R2 Huin

52) wil: Build R3 G1

53) sounde: Sacrifice Y2 Sissa
Move G3 Dorst Wil
Move B2 Dorst Wil
Catastrophe Wil B
	wil: de nada.... the game gives you a length of time to play.. sometimes we play rapidly, sometimes life gets in the way...

54) wil: S Y3 G1
M B3 G1 Wil
M R2 G1 Wil
M Y3 Tra Sounde
	sounde: i almost feel like that was a trap, but i don't really see how you can recover....
	sounde: oh... there's a way you can live a little longer... but not sure it saves you
	sounde: well yeah.... the game reminds me why it is so good.... things are never as simple as they seem

55) sounde: Sacrifice R2 Huin
Attack B3 Wil
Attack Y3 Sounde

	wil: Good game 



26788)
Variants: "Hard time"
Started: 2015.1.15, Ended: 2015.2.16
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: Homeworld R2 B1 G3
	wil: oops?  what have I done? challenged you twice... my bad...I am up for simultaneous games to see where they go... but will resign from one if you wish...

2) SilentTitan: Homeworld B2 R3 G3

3) wil: Build G1 Wil

4) SilentTitan: Build G1 Silenttitan

5) wil: Trade G1 B1 Wil

6) SilentTitan: Trade G1 B1 Silenttitan

7) wil: Build B2 Wil
	wil: interesting theme...

8) SilentTitan: Build B2 Silenttitan

9) wil: Trade B2 Y2 Wil

10) SilentTitan: Trade B1 Y1 Silenttitan

11) wil: Build Y1 Wil

12) SilentTitan: Build Y1 Silenttitan

13) wil: Discover Y1 Wil G3 G3

14) SilentTitan: Discover Y1 Silenttitan G1 Sol

15) wil: Build Y2 Wil

16) SilentTitan: Build G1 Silenttitan

17) wil: Trade Y2 R2 Wil

18) SilentTitan: Build Y2 Silenttitan

19) wil: Build Y2 G3

20) SilentTitan: Build Y3 Sol

21) wil: Build Y3 Wil

22) SilentTitan: Discover Y1 Sol B3 Soul

23) wil: Discover R2 Wil Y3 Y3

24) SilentTitan: Trade Y1 R1 Silenttitan

25) wil: Build G1 Wil

26) SilentTitan: Build Y1 Sol

27) wil: Move G1 Wil Y3

28) SilentTitan: Sacrifice B2 Silenttitan
Trade Y3 R3 Sol
Trade G1 B1 Silenttitan

29) wil: Discover B1 Wil Y3 Why3

30) SilentTitan: Move R3 Sol Y3

31) wil: Build R1 Y3

32) SilentTitan: Attack G1 Y3 North
	wil: shoo
	SilentTitan: Omg. I actually laughed out loud.

33) wil: Sacrifice G3 Wil
Build R1 Y3
Build B2 Why3
Build B2 Why3
Catastrophe Y3 R

34) SilentTitan: Sacrifice G1 Y3
Build Y3 Soul

35) wil: Sacrifice B2 Why3
Trade B2 G2 Why3
Trade Y2 G2 Wil

36) SilentTitan: Trade Y1 G1 Soul

37) wil: Build B2 Why3

38) SilentTitan: Discover B1 Silenttitan Y1 Sole

39) wil: Trade B2 R2 Why3

40) SilentTitan: Build G1 Silenttitan

41) wil: Build Y2 Wil



26793)
Variants: "Hard time"
Started: 2015.1.15, Ended: 2015.1.30
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) SilentTitan: Homeworld Y2 B3 G3

3) wil: Build G1 Wil

4) SilentTitan: Build G1 Silenttitan

5) wil: Trade G1 B1 Wil

6) SilentTitan: Trade G1 B1 Silenttitan
	SilentTitan: On a theme here are we

7) wil: Build B2 Wil

8) SilentTitan: Build B2 Silenttitan

9) wil: Trade B2 Y2 Wil

10) SilentTitan: Discover B1 Silenttitan G1 Sol

11) wil: Discover B1 Wil G3 G3

12) SilentTitan: Build B2 Sol

13) wil: Build B2 G3

14) SilentTitan: Trade B1 Y1 Sol

15) wil: Trade B1 R1 G3

16) SilentTitan: Trade Y1 R1 Sol

17) wil: Build Y1 Wil

18) SilentTitan: Build B1 Sol

19) wil: Build B1 G3

20) SilentTitan: Trade B1 Y1 Sol

21) wil: Move Y1 Wil G3

22) SilentTitan: Build B1 Sol

23) wil: Discover B1 G3 R1 R1

24) SilentTitan: Discover B2 Sol Y3 Soul

25) wil: Build B3 G3

26) SilentTitan: Build B3 Sol

27) wil: Trade B3 Y3 G3

	SilentTitan: Good game. Well played
	wil: Wow, I wasn't positive I could execute an ending...
	wil: I did like watching the two games side by side though..intriguing.   I think an interesting tourney would be everyone playing from the same midgame situation....


26794)
Variants: "Hard time"
Started: 2015.1.15, Ended: 2015.2.1
Participants: SilentTitan (S), Gungho (N)
Winner: SilentTitan

1) Gungho: Homeworld G3 Y1 B3

2) SilentTitan: Homeworld R1 B2 G3
	Gungho: Hello.  Have fun. 
	SilentTitan: You as well

3) Gungho: Build B1 Gungho

4) SilentTitan: Build G1 Silenttitan

5) Gungho: Build B1 Gungho

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Gungho: Discover B1 Gungho G2 Mold

8) SilentTitan: Build G1 Silenttitan

9) Gungho: Build B1 Mold

10) SilentTitan: Build Y1 Silenttitan

11) Gungho: Build B2 Mold

12) SilentTitan: Discover Y1 Silenttitan B3 Sol



26773)
Variants: "Hard time"
Started: 2015.1.16, Ended: 2015.2.23
Participants: agentofchaos (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3

2) agentofchaos: Homeworld B3 R2 G3

3) wil: Build G1 Wil
	wil: thx for the game...I my old housemate and I kept a game of hw going almost continuously....like here...when someone walked by and looked at it...they'd move...and whenever the other looked at it...they'd move...  I miss that.

4) agentofchaos: Build G1 Agentofchaos

5) wil: Trade G1 Y1 Wil
	agentofchaos: Sounds like it was a fun arrangement 
	wil: Made me just talk to my new housemate of his need to learn homeworlds..

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) wil: Discover Y1 Wil G2 G2
	agentofchaos: Definitely a skill worth learning!

8) agentofchaos: Discover Y1 Agentofchaos G1 Hartax

9) wil: Build G1 Wil

10) agentofchaos: Build Y2 Hartax

11) wil: Build Y2 G2

12) agentofchaos: Build G1 Agentofchaos

13) wil: Trade G1 R1 Wil

14) agentofchaos: Trade G1 R1 Agentofchaos

15) wil: Discover Y1 G2 B1 B1

16) agentofchaos: Build G1 Agentofchaos

17) wil: Build Y2 G2

18) agentofchaos: Move Y1 Hartax Agentofchaos

19) wil: Sacrifice G3 Wil
Build Y3 B1
Build Y3 B1
Build Y3 G2

20) agentofchaos: Trade G1 B1 Agentofchaos

21) wil: Trade Y1 B1 B1

22) agentofchaos: Build Y1 Hartax

23) wil: Move Y3 G2 Wil

24) agentofchaos: Build G1 Agentofchaos

25) wil: Move B1 B1 G2

26) agentofchaos: Build G1 Agentofchaos

27) wil: Build B2 G2

28) agentofchaos: Move R1 Agentofchaos Hartax

29) wil: Trade Y2 R2 G2

30) agentofchaos: Build Y2 Agentofchaos
	wil: And now i gotta do it!

31) wil: Trade B2 G2 G2
	agentofchaos: It's an arms race!

32) agentofchaos: Trade G1 R1 Agentofchaos
	wil: I couldn't even win a foot race...

33) wil: Trade Y3 G3 Wil

34) agentofchaos: Move B1 Agentofchaos Hartax

35) wil: Build Y3 G2

36) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y1 Hartax G2
Move Y2 Hartax G2
Catastrophe G2 Y

37) wil: Build G1 Wil

38) agentofchaos: Build B2 Hartax

39) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build G3 G2

40) agentofchaos: Build R2 Hartax

41) wil: Sacrifice G3 Wil
Build G3 Wil
Build R3 Wil
Build R3 G2



26802)
Variants: "Hard time"
Started: 2015.1.17, Ended: 2015.1.18
Participants: wil (S), Gungho (N)
Winner: Gungho

1) Gungho: Homeworld G2 Y2 B3 *

2) wil: Homeworld Y3 G1 R3 *
	Gungho: And now for something completely different.
(I have never tried any of the obscure homeworlds.)
	wil: a short homeworld??  really??

3) Gungho: Build B1 Gungho
	wil: I sir shall be equally silly...

4) wil: Build R1 Wil

5) Gungho: Trade B1 R1 Gungho

6) wil: Discover R1 Wil B2 B2

7) Gungho: Build R1 Gungho

8) wil: Build R2 Wil

9) Gungho: Move R1 Gungho Wil

10) wil: Build R2 Wil
Catastrophe Wil R
	wil: yup...we'll have to play another real game..
	Gungho: For sure



26821)
Variants: "Hard time"
Started: 2015.1.17, Ended: 2015.2.6
Participants: agentofchaos (S), Gungho (N)
Winner: agentofchaos

1) Gungho: Homeworld G3 Y1 B3
	Gungho: Thanks for accepting. Have fun!

2) agentofchaos: Homeworld B1 R2 G3

3) Gungho: Build B1 Gungho
	agentofchaos: Thanks for the challenge! Enjoy!

4) agentofchaos: Build G1 Agentofchaos

5) Gungho: Build B1 Gungho

6) agentofchaos: Build G1 Agentofchaos

7) Gungho: Discover B1 Gungho G2 Mold

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) Gungho: Build B2 Mold

10) agentofchaos: Build Y1 Agentofchaos

11) Gungho: Trade B2 Y2 Mold

12) agentofchaos: Build Y2 Agentofchaos

13) Gungho: Build B2 Mold

14) agentofchaos: Trade Y2 B2 Agentofchaos

15) Gungho: Discover B2 Mold Y3 Taffy

16) agentofchaos: Discover Y1 Agentofchaos G3 Holdgar

17) Gungho: Build B2 Mold

18) agentofchaos: Move B2 Agentofchaos Holdgar

19) Gungho: Build B3 Gungho

20) agentofchaos: Build B3 Holdgar



26838)
Variants: "Hard time"
Started: 2015.1.20, Ended: 2015.1.27
Participants: mneme (S), ajo (N)
Winner: mneme

1) ajo: Homeworld B2 R3 G3

2) mneme: Homeworld R1 G3 B3
	ajo: Wow, it's been a loooong time. I should be easy prey. :)
	mneme: :)  I've mostly been retired for a bit, though I did play a couple of games recently.

3) ajo: Build G1 Ajo

4) mneme: Build B1 Mneme

5) ajo: Trade G1 Y1 Ajo

6) mneme: Trade B1 Y1 Mneme

7) ajo: Build G1 Ajo

8) mneme: Build B1 Mneme

9) ajo: Trade G3 B3 Ajo

10) mneme: Trade B1 R1 Mneme

11) ajo: Build B1 Ajo

12) mneme: Build R1 Mneme

13) ajo: Discover B1 Ajo G1 Alpha

14) mneme: Discover R1 Mneme Y2 Hester

15) ajo: Build G1 Ajo

16) mneme: Build R2 Mneme

17) ajo: Build G2 Ajo

18) mneme: Trade R2 G2 Mneme

19) ajo: Move G2 Ajo Alpha

20) mneme: Move G2 Mneme Hester

21) ajo: Trade G2 R2 Alpha

22) mneme: Build R2 Hester

23) ajo: Build R2 Alpha

24) mneme: Build R3 Mneme

25) ajo: Trade R2 Y2 Alpha

26) mneme: Trade R3 Y3 Mneme

27) ajo: Build R2 Alpha

28) mneme: Discover R1 Hester R3 Andromeda

29) ajo: Trade R2 Y2 Alpha

30) mneme: Sacrifice G2 Hester
Build R2 Andromeda
Build R3 Hester

31) ajo: Move R2 Alpha Andromeda
Catastrophe Andromeda Red

32) mneme: Move R3 Hester Alpha

33) ajo: Sacrifice Y2 Alpha
Discover Y2 Alpha G2 Gamma
Move B1 Alpha Gamma

34) mneme: Move B3 Mneme Gamma

35) ajo: Build G2 Ajo

36) mneme: Sacrifice R2 Hester
Attack Y2 Gamma
Attack B1 Gamma

37) ajo: Discover G1 Ajo B1 Beta

38) mneme: Move B3 Gamma Beta

39) ajo: Discover G2 Ajo B1 Delta

40) mneme: Sacrifice B1 Gamma
Trade Y3 R3 Mneme

41) ajo: Build G2 Ajo

42) mneme: Sacrifice Y2 Gamma
Move R3 Alpha Ajo
Move B3 Beta Ajo

43) ajo: Attack R3 Ajo
	ajo: I'm almost inclined to resign at this point... you're pretty far ahead.

44) mneme: Sacrifice R3 Mneme
Attack R3 Ajo
Attack B3 Ajo
Attack G2 Ajo

	mneme: It would probably have made the pain easier. :)
	mneme: I probably spent a few extra turns on the kill, actually, since I could have done more or less the same kill on the turn I sacced my first r2.  But it was (a bit) safer to retrench first.
	ajo: I could drag it out one more turn, but that's all. :) Good game.
	mneme: yes, it was, thanks.


26852)
Started: 2015.1.22, Ended: 2015.7.29
Participants: Gungho (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B3 G3
	Gungho: Hello again! Enjoy the game.
	mneme: You too!

2) Gungho: Homeworld G2 Y1 B3

3) mneme: Build G1 Mneme

4) Gungho: Build B1 Gungho

5) mneme: Trade G1 Y1 Mneme

6) Gungho: Trade B1 R1 Gungho

7) mneme: Build Y1 Mneme

8) Gungho: Build R1 Gungho

9) mneme: Build Y2 Mneme

10) Gungho: Build R2 Gungho

11) mneme: Trade Y2 R2 Mneme

12) Gungho: Trade R1 G1 Gungho

13) mneme: Build Y2 Mneme

14) Gungho: Discover G1 Gungho B3 Bflat

15) mneme: Discover Y2 Mneme B2 Eris

16) Gungho: Trade R2 Y2 Gungho

17) mneme: Sacrifice G3 Mneme
Build Y2 Eris
Build Y3 Eris
Build Y3 Mneme

18) Gungho: Move Y2 Gungho Bflat

19) mneme: Trade Y2 G2 Eris

20) Gungho: Build Y2 Bflat

21) mneme: Trade Y1 G1 Mneme

22) Gungho: Build G1 Bflat

23) mneme: Discover Y3 Eris G3 Clotho

24) Gungho: Trade G1 R1 Bflat

25) mneme: Sacrifice G2 Eris
Build Y1 Clotho
Build Y3 Eris

26) Gungho: Build R2 Bflat
	Gungho: Oh man. Tough choices ahead. :)

27) mneme: Trade Y3 G3 Eris
	mneme: Yeah.  I played a lot more aggressively this time.

28) Gungho: Discover R2 Bflat G2 Myohmy

29) mneme: Move R2 Mneme Eris

30) Gungho: Trade B3 G3 Gungho

31) mneme: Sacrifice Y2 Eris
Move G3 Eris Bflat
Move Y3 Clotho Myohmy

	mneme: You going to finish this?


26892)
Variants: "Hard time"
Started: 2015.2.3, Ended: 2015.2.7
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: Homeworld Y3 B1 G3

2) wil: Homeworld B2 Y1 G3

3) dlwillson: Build G1 Dlwillson

4) wil: Build G1 Wil

5) dlwillson: Trade G1 Y1 Dlwillson
	wil: So since no one challenged ttt, you or me...I thought I'd give them another chance while we play a game to determine that it will be you to challenge that top again...

6) wil: Trade G1 B1 Wil

7) dlwillson: Build Y1 Dlwillson
	wil: I just can't be conventional...
	dlwillson: :-)

I'm glad you have such confidence! I'm so busy right now, but I want to study his games. I think I've figured out my bad pattern.

8) wil: Build B1 Wil

9) dlwillson: D Y1 Dlwillson G2 Field

10) wil: Discover B1 Wil Y3 Y3

11) dlwillson: B Y2 Field

12) wil: Sacrifice G3 Wil
Build B2 Y3
Build B2 Y3
Build B3 Wil

13) dlwillson: Discover Y2 Field B3 Sky

14) wil: Trade B3 Y3 Wil

15) dlwillson: M Y2 Sky Wil

16) wil: Trade Y3 R3 Wil
	wil: I still play by the seat of my pants...making the same mistakes often..

17) dlwillson: D Y2 Wil B3 Sky

18) wil: Trade R3 G3 Wil
	dlwillson: Actually, I think I made a mistake. Dunno, we'll see.

19) dlwillson: Build G1 Dlwillson

20) wil: Build B3 Wil
	wil: b b3 wil

21) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Field
Build Y2 Sky
Build Y3 Sky
	wil: helps if I put the input info in the right place

22) wil: Trade B2 R2 Y3
	wil: and why did i not see that potential?

23) dlwillson: T Y3 R3 Sky

24) wil: Discover B3 Wil G3 G3

25) dlwillson: B Y3 Field

26) wil: Build B2 G3

27) dlwillson: S Y2 Field
M Y3 Field Sky
M Y3 Sky Wil

28) wil: Sacrifice R2 Y3
Attack Y3 Wil
Pass
	wil: nice
	wil: I'm blind...I don't deserve another shot at the top!  Go for it!
	wil: but first

29) dlwillson: M R3 Sky Wil
	wil: is there a hole in your plan?  

30) wil: Trade B3 R3 G3
	dlwillson: Probably. We'll see.

31) dlwillson: M R3 Wil Y3
	wil: now shoo

32) wil: Sacrifice Y3 Wil
Move G3 Wil Y3
Move G3 Y3 Field
Move G3 Field Dlwillson

	wil: now if you weren't so menacing with that big red attack craft I may not have seen... this (and still am not sure it is right)

	TeeTeeTee: Impressive!
	dlwillson: Very well done! :-)
	wil: I did not see that coming... I didn't see you coming, I didn't see my way out....I was just about to resign when I thought I saw a possible window...I never saw how it could all play out..


26916)
Variants: "Hard time"
Started: 2015.2.6, Ended: 2015.2.9
Participants: Subhan64 (S), fogus (N)
Winner: fogus

1) fogus: Homeworld B1 Y2 G3



26911)
Variants: "Hard time"
Started: 2015.2.6, Ended: 2015.3.2
Participants: TeeTeeTee (S), SilentTitan (N)
Winner: TeeTeeTee

1) SilentTitan: Homeworld R1 B2 G3

2) TeeTeeTee: Homeworld B1 Y3 G3

3) SilentTitan: Build G1 Silenttitan

4) TeeTeeTee: Build G1 Teeteetee

5) SilentTitan: Trade G1 Y1 Silenttitan

6) TeeTeeTee: Trade G1 B1 Teeteetee

7) SilentTitan: Build Y1 Silenttitan

8) TeeTeeTee: Build B1 Teeteetee

9) SilentTitan: Build Y1 Silenttitan

10) TeeTeeTee: Discover B1 Teeteetee G2 Alice

11) SilentTitan: Discover Y1 Silenttitan B3 Sol

12) TeeTeeTee: Sacrifice G3 Teeteetee
Build B2 Alice
Build B2 Alice
Build B3 Teeteetee

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Sol
Build Y2 Silenttitan

14) TeeTeeTee: Trade B3 G3 Teeteetee

15) SilentTitan: Sacrifice Y2 Sol
Discover Y1 Silenttitan B3 Soul
Discover Y1 Silenttitan B3 Sole
	TeeTeeTee: Quirky

16) TeeTeeTee: Trade B2 Y2 Alice

17) SilentTitan: Trade Y1 G1 Sol

18) TeeTeeTee: Build B2 Teeteetee

19) SilentTitan: Build Y1 Sol

20) TeeTeeTee: Sacrifice Y2 Alice
Move G3 Teeteetee Alice
Discover G3 Alice Y3 Bob

	TeeTeeTee: I guess it only takes one yellow ship to break the blockade. Also, I think that if you'd traded your y2 for a green ship instead of the y1, you'd have been able to get your large ship back... 
Thanks for the game!
	SilentTitan: Oh... Good points.  Thanks for the game. 


27000)
Variants: "Unrated"
Started: 2015.2.18, Ended: 2015.3.22
Participants: wil (S), sounde (N)
Winner: wil

1) sounde: Homeworld Y3 B1 G3
	wil: thanx for the rematch...i was blindsided last time...didn't see the danger...good job taking advantage of it...and then I blew it on my response!
	sounde: you'll get me this time :)

2) wil: Homeworld B2 Y1 G3
	wil: we'll see...and I agree with your last sentiment...the game is ALWAYS different, and always new, and watching a game reboot through catastrophes and attacks is so interesting...

3) sounde: Build G1 Sounde

4) wil: Build G1 Wil
	sounde: yeah - it's all push pull push pull

5) sounde: Trade G1 Y1 Sounde

6) wil: Trade G1 Y1 Wil

7) sounde: Build G1 Sounde

8) wil: Build Y2 Wil

9) sounde: Build Y2 Sounde

10) wil: Discover Y1 Wil G3 G3

11) sounde: Trade Y2 R2 Sounde

12) wil: B Y2 Wil

13) sounde: Discover Y1 Sounde B2 Willow

14) wil: T Y2 R2 Wil

15) sounde: Move G1 Sounde Willow

16) wil: Build Y2 Wil

17) sounde: Build R1 Sounde

18) wil: Discover Y2 Wil B3 B3

19) sounde: Build G1 Sounde

20) wil: Build R1 Wil

21) sounde: Move R1 Sounde Willow

22) wil: Move Y2 B3 Willow

23) sounde: Sacrifice G3 Sounde
Build R1 Willow
Build R2 Sounde
Build R3 Sounde
	wil: our transportation ship is looking for a fueling station...
	sounde: that sounds potentially catastrophic

24) wil: Build R3 Wil
	sounde: i seem to be off on some weird side-quest... not sure what I'm aiming for


25) sounde: Trade R3 G3 Sounde
	wil: All I can think is there a trap I can't see...

26) wil: Sacrifice R3 Wil
Attack R1 Willow
Attack R1 Willow
Attack Y1 Willow

27) sounde: Sacrifice R2 Sounde
Attack Y1 Willow
Attack R1 Willow

28) wil: Attack R1 Willow

29) sounde: Build G1 Willow

30) wil: Sacrifice R2 Wil
Attack G1 Willow

Attack G1 Willow



26999)
Variants: "Hard time"
Started: 2015.2.18, Ended: 2015.2.28
Participants: Aristos (S), fogus (N)
Winner: fogus

1) fogus: Homeworld B1 Y2 G3

2) Aristos: Homeworld G3 B1 Y3

3) fogus: Build G1 Fogus

4) Aristos: Build Y1 Aristos

5) fogus: Trade G1 Y1 Fogus

6) Aristos: Trade Y1 B1 Aristos

7) fogus: Build G1 Fogus

8) Aristos: Build B2 Aristos

9) fogus: Build Y1 Fogus

10) Aristos: Discover B2 Aristos G2 Boing

11) fogus: Build G1 Fogus

12) Aristos: Build B2 Boing

13) fogus: Trade Y1 R1 Fogus

14) Aristos: Build B2 Aristos

15) fogus: Discover G1 Fogus B3 Kismet

16) Aristos: Build B3 Boing

17) fogus: Build Y1 Fogus

18) Aristos: Discover B1 Aristos R2 Pop

19) fogus: Build G1 Kismet

20) Aristos: Trade B2 Y2 Boing

21) fogus: Build G2 Fogus

22) Aristos: Sacrifice Y3 Aristos
Move Y2 Boing Kismet
Move Y2 Kismet Fogus
Discover B2 Boing G3 Whack
Catastrophe Fogus Yellow

23) fogus: Trade G2 Y2 Fogus

24) Aristos: Build B2 Aristos

25) fogus: Trade G3 R3 Fogus
	Aristos: Sorry for the undo/redos. I don't have a physical set of these to model with, and sometimes I have to make the move and then tweak it to see the strategy I really want. I try to always undo right away after grabbing a screenshot to avoid you thinking it's really your turn. 

26) Aristos: Sacrifice B2 Aristos
Trade B3 R3 Boing
Trade B2 Y2 Whack
	fogus: No worries at all.  I missed that in any case. :)

27) fogus: Sacrifice Y2 Fogus
Move R3 Fogus Pop
Move R3 Pop Aristos

	Aristos: Oh. I forgot you could now jump straight there. DOH. 
	fogus: Thank you for the game.  I was really sweating after you destroyed my star!


27021)
Variants: "Hard time"
Started: 2015.2.21, Ended: 2015.4.18
Participants: Grosseteste (S), Remneb (N)
Winner: Grosseteste

1) Remneb: Homeworld R1 B2 G3

2) Grosseteste: H B1 Y3 G3

3) Remneb: Build G1 Remneb

4) Grosseteste: B G1 Grosseteste

5) Remneb: Trade G1 Y1 Remneb

6) Grosseteste: B G1 Grosseteste

7) Remneb: Build Y1 Remneb

8) Grosseteste: D G1 Grosseteste B2 Lucy

9) Remneb: Discover Y1 Remneb G3 Thor

10) Grosseteste: T G1 B1 Grosseteste

11) Remneb: Build G1 Remneb


12) Grosseteste: D B1 Grosseteste G2 Linus

13) Remneb: Move G1 Remneb Thor

14) Grosseteste: B G1 Grosseteste

15) Remneb: Build G2 Remneb

16) Grosseteste: B G2 Lucy

17) Remneb: Move G1 Thor Linus

18) Grosseteste: T G1 R1 Grosseteste

19) Remneb: Sacrifice G2 Remneb
Build Y1 Thor
Build Y2 Remneb

20) Grosseteste: Build G1 Grosseteste

21) Remneb: Build G2 Remneb

22) Grosseteste: T G1 B1 Grosseteste

23) Remneb: Trade G2 R2 Remneb

24) Grosseteste: Sacrifice G3 Grosseteste
Build B2 Linus
Build B3 Linus
Build B3 Grosseteste

25) Remneb: Discover Y1 Remneb B3 Roma

26) Grosseteste: Trade B3 G3 Grosseteste

27) Remneb: Sacrifice Y1 Thor
Move G1 Linus Thor


28) Grosseteste: B B3 Grosseteste

29) Remneb: Build G1 Remneb

30) Grosseteste: T B3 Y3 Linus

31) Remneb: Move G1 Remneb Roma

32) Grosseteste: B B3 Linus

33) Remneb: Move G1 Roma Lucy

34) Grosseteste: B G2 Grosseteste

35) Remneb: Move G1 Thor Lucy
Catastrophe Lucy G

36) Grosseteste: S Y3 Linus
D B3 Linus Y3 Rerun
M B2 Linus Rerun
M B1 Linus Rerun

37) Remneb: Trade R2 B2 Remneb

38) Grosseteste: M B3 Rerun Remneb

39) Remneb: Attack B3 Remneb

40) Grosseteste: M B1 Rerun Remneb
C Remneb Blue

41) Remneb: Build G1 Remneb

42) Grosseteste: T B2 R2 Rerun

43) Remneb: Trade Y1 B1 Roma

44) Grosseteste: T B3 Y3 Grosseteste

45) Remneb: Discover Y1 Thor G2 Rem

46) Grosseteste: S Y3 Grosseteste
M R2 Rerun Remneb
M R1 Grosseteste Rem
M R1 Rem Remneb

47) Remneb: Attack R2 Remneb

48) Grosseteste: S G2 Grosseteste
B R1 Remneb
P
C Remneb Red

	Grosseteste: Good game, thanks!
	Remneb: Thanks.


27037)
Variants: "No undo, Hard time"
Started: 2015.2.23, Ended: 2015.4.5
Participants: hellajoey (S), Grissom (N)
Winner: Grissom

1) Grissom: Homeworld B3 R2 G3

2) hellajoey: Homeworld B1 G2 R3

3) Grissom: Build G1 Grissom

4) hellajoey: Build R1 Hellajoey

5) Grissom: Trade G1 Y1 Grissom

6) hellajoey: Trade R1 Y1 Hellajoey

7) Grissom: Build G1 Grissom

8) hellajoey: Build R1 Hellajoey

9) Grissom: Discover G1 Grissom B1 Star

10) hellajoey: Discover R3 Hellajoey Y3 Goldstar

11) Grissom: Build G1 Grissom

12) hellajoey: Move R3 Goldstar Star

13) Grissom: Trade G1 R1 Star

14) hellajoey: Attack R1 Star

15) Grissom: Discover G1 Grissom B1 Newblu

16) hellajoey: Trade R3 G3 Star

17) Grissom: Build G1 Newblu

18) hellajoey: Build R1 Hellajoey

19) Grissom: Trade G1 Y1 Newblu

20) hellajoey: Build R2 Hellajoey

21) Grissom: Build G1 Grissom

22) hellajoey: Discover R2 Hellajoey Y3 Planetx

23) Grissom: Build Y2 Newblu

24) hellajoey: Move R2 Planetx Newblu

25) Grissom: Sacrifice Y2 Newblu
Discover Y1 Newblu R3 Bigred
Move G1 Newblu Bigred

26) hellajoey: Sacrifice G3 Star
Build R2 Star
Build R3 Newblu
Build R3 Hellajoey

27) Grissom: Build Y2 Bigred

28) hellajoey: Trade R3 Y3 Newblu

29) Grissom: Build Y2 Grissom

30) hellajoey: Trade R2 G2 Star

31) Grissom: Discover Y1 Grissom G1 Missinglink

32) hellajoey: Build R2 Star

33) Grissom: Sacrifice G3 Grissom
Build G2 Bigred
Build G3 Bigred
Build G3 Grissom

34) hellajoey: Sacrifice Y1 Hellajoey
Move G2 Star Bigred
Catastrophe Bigred Green

35) Grissom: Sacrifice G3 Grissom
Build Y1 Bigred
Build Y2 Missinglink
Build Y3 Grissom

36) hellajoey: Trade R3 Y3 Hellajoey

37) Grissom: Trade Y3 G3 Grissom

38) hellajoey: Move Y3 Hellajoey Bigred
Catastrophe Bigred Yellow

39) Grissom: Discover Y2 Missinglink B3 Spot

40) hellajoey: Trade R2 G2 Star

41) Grissom: Trade Y2 R2 Spot

42) hellajoey: Move Y3 Newblu Spot

43) Grissom: Sacrifice Y1 Missinglink
Move R2 Spot Hellajoey

44) hellajoey: Move Y3 Spot Hellajoey

45) Grissom: Build R3 Hellajoey
Catastrophe Hellajoey Red

46) hellajoey: Trade R2 G2 Newblu

47) Grissom: Discover G1 Grissom Y1 Yellno

48) hellajoey: Build G1 Star

49) Grissom: Discover G1 Yellno B3 Blubo

50) hellajoey: Build Y1 Hellajoey

51) Grissom: Build Y1 Grissom
	hellajoey: How's it going, Larry? How's eBay treating you? I heard a rumor there was some downsizing.

52) hellajoey: Trade G1 Y1 Star
	Grissom: Hi Joey, I am doing well. eBay is great, classifieds was not effected by the down sizing. I was converted so I am enjoying officially being on the team. 
	Grissom: How are you?

53) Grissom: Discover Y1 Grissom G1 Gbot

54) hellajoey: Move R1 Star Blubo

55) Grissom: Discover Y1 Gbot G3 Gbot2point0
	hellajoey: Things are pretty good. Also pretty strange. I haven't actually been doing any Android development since I left eBay and I think I need to get back into it by EOS (end of Spring ;) at the latest. I'm glad to hear things are going well for you still at eBay. I accidentally met the new Product Manager for Classifieds at a dance club a couple weeks ago (another strange story). She seemed cool. But when I heard there was downsizing (did you really lose the 3rd floor?) I was feeling bad for you guys. Nice to hear things are still good.
	Grissom: Ya we are on 9 now. It is different but I feel like it has been good for the team. Also they started catering breakfast every day and that has been great. 

56) hellajoey: Attack G1 Blubo

57) Grissom: Build Y2 Gbot2point0

58) hellajoey: Build G1 Blubo

59) Grissom: Sacrifice Y2 Grissom
Move Y2 Gbot2point0 Hellajoey
Move Y1 Gbot2point0 Hellajoey
Catastrophe Hellajoey Yellow
	hellajoey: Oh, dang. I was thinking those were two jumps away. Good job!



26967)
Started: 2015.2.23, Ended: 2015.3.22
Participants: wil (S), ts52 (N)
Winner: wil

1) ts52: Homeworld Y1 B2 G3

2) wil: Homeworld Y3 B1 G3

3) ts52: Build G1 Ts52

4) wil: Build G1 Wil

5) ts52: Discover G1 Ts52 B3 Grover

6) wil: Trade G1 B1 Wil

7) ts52: Build G1 Grover

8) wil: Build B1 Wil

9) ts52: Trade G1 Y1 Grover

10) wil: Discover B1 Wil G2 G2

11) ts52: Build G1 Ts52

12) wil: Build B2 G2



26801)
Variants: "Hard time"
Started: 2015.2.23, Ended: 2015.3.26
Participants: SilentTitan (S), wil (N)
Winner: SilentTitan

1) wil: Homeworld Y2 B1 G3

2) SilentTitan: Homeworld R1 B3 G3

3) wil: Build G1 Wil

4) SilentTitan: Build G1 Silenttitan

5) wil: Discover G1 Wil B3 B3

6) SilentTitan: Trade G1 Y1 Silenttitan

7) wil: Build G1 B3

8) SilentTitan: Build Y1 Silenttitan

9) wil: T G1 Y1 B3

10) SilentTitan: Trade Y1 R1 Silenttitan

11) wil: Build Y1 B3

12) SilentTitan: Discover R1 Silenttitan Y2 Sol

13) wil: T Y1 R1 B3

14) SilentTitan: Build Y1 Silenttitan

15) wil: Build R2 B3

16) SilentTitan: Discover Y1 Silenttitan G2 Soul

17) wil: M R2 B3 Soul

18) SilentTitan: Discover Y1 Soul G3 Sole

19) wil: Build R2 B3

20) SilentTitan: Build G1 Silenttitan

21) wil: Build G1 Wil

22) SilentTitan: Build G2 Silenttitan

23) wil: Move R2 B3 Sol

24) SilentTitan: Discover R1 Sol Y3 Tac

25) wil: Trade G1 B1 Wil

26) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Silenttitan
Build Y3 Silenttitan
Build Y3 Sole

27) wil: Move G1 B3 Sol

28) SilentTitan: Move Y3 Sole Soul

29) wil: Build G1 Wil
	wil: you did do it...

30) SilentTitan: Move Y3 Silenttitan Sol
	SilentTitan: I confess it was me. I did it. I killed them all.... Wait!  Is this mike still on?

31) wil: Move G1 Sol B3

32) SilentTitan: Trade Y2 R2 Silenttitan

33) wil: Build Y2 B3

34) SilentTitan: Sacrifice R2 Silenttitan
Attack R2 Sol North
Attack R2 Soul North

35) wil: Build R2 B3
	wil: I am doing terribly this game..  I'm completely undeserving of being #1 on that ladder..
	SilentTitan: First of all: congrats.  Second we've all felt that way. Third enjoy while you can.  (Grin)

36) SilentTitan: Sacrifice Y3 Sol
Move Y3 Soul Silenttitan
Move Y1 Silenttitan Soul
Move G1 Silenttitan Sol
	wil: Oh I feel I am a decent player... just not in the caliber of two short, brocolli or TTT... I'm outta their league..  would there be a real tournament, I'd have to be lucky to beat you, dlwilson an zoltar...

37) wil: Trade G3 Y3 Wil

38) SilentTitan: Build R3 Sol
	SilentTitan: Hummel.. I disagree with most of your analysis, but am too short(ha) of time to elaborate at the moment.  Maybe get a chance to later this weekend.

39) wil: Discover R2 B3 G2 G2

40) SilentTitan: Build G3 Sol

41) wil: B G3 Wil
	SilentTitan: Ok.  I have a moment.  I believe you are a very strong player. As for better or worse than the list of players you provided.  That would remain to be seen.  Too short is by his own admission a very poor performer live.  Broccoli and TTT while they have been very powerful in a relatively short time, I've seen little evidence that they are comprehensive players.  The only player on the entire ladder to win an actual medallion at a tournament (that I know of) is neme and he is currently only passively playing the ladder.  Since the ladder is supposedly weighted like chess the relative strength of a player is supposed to be the value, but I believe that is only part of the story.  

42) SilentTitan: Sacrifice G3 Sol
Build G3 Sol
Build R3 Soul
Build R3 Tac
	wil: while I appreciate your analysis... I have made terrible blunders this game and you are kicking my butt

43) wil: B B1 Wil

44) SilentTitan: Move R3 Soul Silenttitan
	SilentTitan: I hope to make no mistakes and thereby win. Nothing is certain.

45) wil: Move Y1 B3 G2

46) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Soul Sole
Move Y1 Sole Wil
Move Y1 Sole Wil
Catastrophe Wil Yellow
	wil: So was it you that slipped into first when i first started learning hw on the ladder like I just did? (when two short missed a challenge and slipped to 6?)

47) wil: Move R1 B3 G2
	SilentTitan: Yes and it was my brother in law that had made the challenge,and thereby alerted me to the fact that I was in first. Hence my analysis regarding broccoli and TTT. 

48) SilentTitan: Move G3 Sol Wil

49) wil: Sacrifice Y2 B3
Move R1 G2 Silenttitan
Move R2 G2 Silenttitan
Catastrophe Silenttitan R

50) SilentTitan: Sacrifice R3 Sol
Attack G3 Wil North
Attack B1 Wil North
Attack B1 Wil North
	wil: this is the end...

51) wil: Build G3 B3

52) SilentTitan: Sacrifice R1 Tac
Attack G1 Wil North

	wil: thx for the whoopin!
	SilentTitan: Anytime......


27071)
Variants: "Hard time"
Started: 2015.3.2, Ended: 2015.3.6
Participants: TeeTeeTee (S), wil (N)
Winner: TeeTeeTee

1) wil: Homeworld B2 Y1 G3
	TeeTeeTee: That was fast...
	wil: I just finished a move in another game and the top of the page said I had a ladder opening...didnt expect this one...

2) TeeTeeTee: Homeworld B1 Y3 G3

3) wil: Build G1 Wil
	TeeTeeTee: Well, you're at spot #2 on the ladder, so I'm not sure what you were expecting... were you surprised by SilentTitan resigning?
	wil: Yeah, somewhat... After I clicked on challenge i went back to look at what happened

4) TeeTeeTee: Build G1 Teeteetee

5) wil: Trade G1 B1 Wil

6) TeeTeeTee: Trade G1 B1 Teeteetee

7) wil: Build B2 Wil
	wil: Also, I sure don't feel I deserve to be at 2...  Silent titan often bests me...two short...like you, I've never beaten.
	wil: Also, I sure don't feel I deserve to be at 2...  Silent titan often bests me...two short...like you, I've never beaten.

8) TeeTeeTee: Build B2 Teeteetee

9) wil: Trade B2 R2 Wil

10) TeeTeeTee: Discover B1 Teeteetee G2 Apple

11) wil: Discover B1 Wil G3 G3
	wil: That is the point right there...

12) TeeTeeTee: Sacrifice G3 Teeteetee
Build B2 Apple
Build B3 Apple
Build B3 Teeteetee

13) wil: Build B3 G3

14) TeeTeeTee: Trade B3 Y3 Apple

15) wil: Trade B1 Y1 G3

16) TeeTeeTee: Trade B3 G3 Teeteetee

17) wil: Build Y1 G3

18) TeeTeeTee: Build Y2 Apple

19) wil: Move Y1 G3 Apple

20) TeeTeeTee: Trade Y3 R3 Apple
	TeeTeeTee: Haha: good idea.

21) wil: Build Y2 Apple

22) TeeTeeTee: Move B1 Apple G3

23) wil: Build R1 Wil

24) TeeTeeTee: Sacrifice G3 Teeteetee
Build B1 G3
Build B3 Teeteetee
Build B3 G3
Catastrophe G3 Blue

25) wil: S R2 Wil
A B2 Apple
A Y2 Apple

26) TeeTeeTee: Attack B2 Apple

27) wil: Sacrifice G3 Wil
Build Y2 Apple
Build Y3 G3
Build Y3 G3
Catastrophe Apple Y

28) TeeTeeTee: Trade B3 G3 Teeteetee

29) wil: M Y3 G3 Wil

30) TeeTeeTee: Sacrifice G3 Teeteetee
Build B1 Apple
Build B1 Apple
Build B3 Teeteetee

31) wil: T Y3 G3 Wil
	TeeTeeTee: I think that you just traded away your constructive and offensive options for a large ship.

32) TeeTeeTee: Trade B3 G3 Teeteetee

33) wil: M Y3 G3 Wil

34) TeeTeeTee: Build B3 Teeteetee
	wil: me? Make a game-changing blunder against you? never.... 

35) wil: Trade Y3 B3 Wil

36) TeeTeeTee: Trade B3 Y3 Teeteetee

37) wil: Move B3 Wil G3

38) TeeTeeTee: Build B3 Teeteetee
	wil: It was a risk...but I had to keep up in the Queen game or I was gonna be swamped.

39) wil: Discover B3 G3 G2 G2

40) TeeTeeTee: Move B3 Teeteetee G2

41) wil: Sacrifice Y1 G3
Discover B3 G2 Y3 Y3

42) TeeTeeTee: Build B3 G2

	TeeTeeTee: Going to play this out?
	wil: I am just so far outta your league...  I make wunnerful blunders and you capitalize on them all...
	TeeTeeTee: I'm trying to think where it all went wrong for you, here. As I said earlier, when you built those large yellow ships, you got yourself an immediate material gain, but put yourself in a very weak position: you had no ability to trade ships or put pressure on my ships, and that let me get an effective monopoly on blue.
	wil: I lost way back...early mistake...that move you pointed out was a last ditch effort...
	wil: outgunned and virtual blue factory...its over...time to let someone give you some competition again...
	TeeTeeTee: What do you think the early mistake was? Trading for the r2 in the opening? I think that did let me get a foothold on blues, yes, but going unarmed for so long did put me at risk, and I was fortunate to get away unscathed. Or were you referring to letting me blow up your blue ship?


26820)
Variants: "Hard time"
Started: 2015.3.4, Ended: 2015.3.16
Participants: Takvorian (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 B1 G3

2) Takvorian: Homeworld R1 B2 G3
	wil: thx for the game.
	Takvorian: my first ever game of Homworlds...

3) wil: Build G1 Wil
	wil: That is a near perfect opening response...do you want me to walk you through stuff I see as we go?

4) Takvorian: Build G1 Takvorian
	Takvorian: Yes, that would be very helpful! This game is really different from all that I played before, I have no clue what to do...
If my English sounds a bit strange to you - I am from Berlin Germany, so it's not my native language.
Thanks for your help!

5) wil: T G1 R1 Wil
	wil: No worries .. Where chest is a land based war game this is a inter inter galactic war game the colors of your ships and stars indicate what powers you have
	wil: typically you want to make sure you don't get isolated out of any economy / color...

6) Takvorian: Trade G1 Y1 Takvorian

7) wil: B R1 Wil
	Takvorian: ok, so I tried to diversify my colors...
	wil: True,  but to show you what happens I'll go for a red monopoly 


8) Takvorian: Build Y1 Takvorian

9) wil: B R2 Wil
	Takvorian: Just discovered that my small red star, doesn't help to buil a red ship...
	wil: Exactly.... Picture it like you need a template of the other color to retrofit / trade it was not for another 

10) Takvorian: Build Y1 Takvorian

11) wil: Discover R2 Wil B2 B2
	Takvorian: Am I already doomed?

12) Takvorian: Discover Y1 Takvorian R3 Cygnus-x1
	wil: nah...well maybe...as you'll have work to figure out how to get back out of this mess...but even if you were...it will be educational to see how powerful this is, and how it plays out... yellow and blue monopolies are the worst in my opinion...but any monopoly can be disastrous.

13) wil: Discover R1 Wil R2 R2
	Takvorian: To be honest, I have no real plan for this game yet.
I suppose you need many games under your belt, before things click.
	wil: lol...yeah I lost dozens in different ways before I saw the attacks coming...two ways to win...take over all the ships in the homeworld or blow up the stars..

14) Takvorian: Build Y2 Takvorian

15) wil: Sacrifice G3 Wil
Build R2 B2
Build R3 B2
Build R3 Wil

16) Takvorian: Discover Y1 Takvorian B3 Aldebaran
	wil: Sacrificing...by sacrificing any ship anywhere you transmit the power throughout your armada... be it attacking, building, trading, or moving...by the strength (pip number) on that sacrificed ship...hence my sacrificing a g3 allowed me three grows.

17) wil: T R3 Y3 B2

18) Takvorian: Build Y2 Takvorian

19) wil: T R3 G3 Wil
	Takvorian: I feel completely clueless in this game...
	wil: It'll take you less than 10 games... 

20) Takvorian: Move Y2 Takvorian Aldebaran
	wil: It'll take you less than 10 games... Watch for catastrophe.... 4 of any color in one star system will move all of that color back to the bank... Including the star 

21) wil: Build R3 Wil
	Takvorian: I don't know, I think I'll need around 50...
So far, I have no strategy. Because I have no access to red ships, I don't have an idea how I could harm you in any way. And it seems that you can easily overtake my two systems...
But I checked the rankings and saw that you are one of the strongest Homeworld players here.
Perhaps we can play an unranked teaching game hereafter where you can tell me the ideas behind your moves.
The game itself looks very promising to me, if I could only wrap my head around...

22) Takvorian: Trade G3 R3 Takvorian

23) wil: T R2 G2 B2

24) Takvorian: Trade Y2 R2 Aldebaran

25) wil: B Y2 B2

26) Takvorian: Trade Y1 G1 Takvorian
	wil: you did good on grabbing that r3to stop the monopoly. but now you have no greens can't grow.

27) wil: D Y2 B2 B3 B3
	Takvorian: So I have green again, but still don't know what to do ;)
	wil: Always look at how to end the game and build the ships required to do it

28) Takvorian: Move G1 Takvorian Cygnus-x1
	wil: It is about moving a force in range and of the numbers needed 
	wil: It is about moving a force in range and of the numbers needed 
	wil: It is about moving a force in range and of the numbers needed 

29) wil: Build G1 B2

30) Takvorian: Discover Y1 Cygnus-x1 Y2 Ertrus

31) wil: S G2 B2
B Y1 B2
B Y3 B3
	wil: There is a building stage, an arms race, there are only a limited number of pieces in the bank.  That morphs into a positioning stage, protecting and taking territory in space as you are working toward their homeworld.  Skirmishes of attacks and catastrophes.  Here is where it beats the crap out of chess... you don't destroy pieces if you can help it...when you attack you take over the ship...these are multitrillion dollar intragalactic crafts which carry upto thousands of people from one star system to another...you surely don't want to destroy that...   and then the way catastrophied or sacrificed pieces can come back into play... the universe can reboot over and over as this happens.  until someone goes in for the kill...building a doomsday machine, or taking advantage of a bluebird.

32) Takvorian: Move R2 Aldebaran Ertrus

33) wil: Move R2 B2 Aldebaran
	Takvorian: That is really a lot of stuff to consider, and I even don't know what doomsday machine and bluebird means ;)
I can't remember that I was ever so clueless, the depth of this game must be similar to Go.

34) Takvorian: Sacrifice G1 Cygnus-x1
Build R3 Ertrus

35) wil: Sacrifice Y3 B3
Move R1 R2 Aldebaran
Move R1 Aldebaran Takvorian
Move R2 Aldebaran Takvorian
Catastrophe Takvorian R

36) Takvorian: Trade Y2 G2 Takvorian
	wil: You'll get the handle of it...  It is a great game for having set up in the house...with a move coin going back and forth from side to side and everytime you or you wife moves as you walk by you see it...and then make your move and move the coin...  I've played numerous games with roomates this way. (as for definitions)  http://www.looneylabs.com/rules/homeworlds 
	wil: four colors, three sizes of pieces... so much variation...  yes like GO...simple rules, tons of strategy
	Takvorian: great idea setting up a game at home. Unfortunately we have some cats and because of that game positions would probably change while absent from the table...;)

37) wil: Move R3 Wil Takvorian
	wil: cat moves are part of the game..

38) Takvorian: Move R2 Ertrus B3
	Takvorian: That was quite a hit!
I think my days are counted (I don't know if this is also an English proverb).

39) wil: Attack G2 Takvorian
	wil: You got it!  We call it "My days are numbered"
	wil: You are in trouble...but you wanna watch the end play out.
	wil: I said that before looking at the board...yeah...you needed to sacrifice the y2 for two moves to get your big red gun back home to protect the remaining star... it is over..

	Takvorian: Thanks for the instructive game. Perhaps I learned a few things...
But comparing to the alphabet, now I know A, B and perhaps C, but all the other letters are well behind my horizon;)
	wil: imagine how long chess took... in less than ten games you'll be beating some folks\


27112)
Variants: "Hard time"
Started: 2015.3.4, Ended: 2015.3.20
Participants: Takvorian (S), foksieloy (N)
Winner: Takvorian

1) foksieloy: Homeworld B1 G3 Y3

2) Takvorian: Homeworld R1 B2 G3

3) foksieloy: Build Y1 Foksieloy
	Takvorian: Have fun!
	foksieloy: Hey, good luck, have fun!

4) Takvorian: Build G1 Takvorian

5) foksieloy: Trade Y1 G1 Foksieloy

6) Takvorian: Trade G1 Y1 Takvorian



27038)
Variants: "Hard time"
Started: 2015.3.8, Ended: 2015.3.16
Participants: DiEvAl (S), SilentTitan (N)
Winner: DiEvAl

1) SilentTitan: Homeworld R1 B2 G3
	DiEvAl: Hi

2) DiEvAl: Homeworld R2 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) DiEvAl: Build G1 Dieval

5) SilentTitan: Trade G1 Y1 Silenttitan

6) DiEvAl: Trade G1 Y1 Dieval

7) SilentTitan: Build G1 Silenttitan

8) DiEvAl: Build G1 Dieval



27111)
Variants: "Hard time"
Started: 2015.3.19, Ended: 2015.4.9
Participants: Takvorian (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 B1 G3
	wil: welcome back!

2) Takvorian: Homeworld B2 R1 G3
	Takvorian: Hello again! Hopefully I will perform a bit better than in our last game.
By the way, I entered the Homeworlds ladder and already won my first game. After two moves my opponent was timed out...
Probably he had to think too long because of my clever moves ;)

3) wil: Build G1 Wil
	wil: lol....  now ya got me scared...  played snake oil the other night... have you seen that game?  too much fun!
	wil: But ya done goofed up on this opening...taking a b1 when I already did leaves one in the stash...I trade my g1 for a b1 and you are aced outta blues from the get...if you want to retract and pick adifferent start...

4) Takvorian: Build G1 Takvorian
	Takvorian: Thanks for the hint. You see, I am still as bad as before. I just didn't think that the first move is already so important...
	wil: Yes, you'll develop your favorite opening moves (mine is a form of banker...but banker seems to be a slight advantage(not confirmed due to better players simply choosing it)) So as an intragalactic warlord training a young starship captain is is only appropriate that I not take banker...(I should start with fortress as I soooo dislike it and should be practicing) and yes..you can lose the game in your first move (making a bad choice of a homeworld and ship)

5) wil: Trade G1 R1 Wil
	wil: I do see an exploit here though....red.. while convention has it that having red in your homeworld is advantageous (protection) I also find it tough when I can move and you can't...should be interesting.  (and when I say you can lose on an opening move, you can still win, but you have to find mistakes to take advantage of...a bad opehing move and you have an uphill battle until you do)

6) Takvorian: Trade G1 R1 Takvorian
	Takvorian: Thanks for your comments, trainer. These are really helpful for me, because this game is still a mystery for me.
	Takvorian: What abaout choosing the same sizes as your opponent and making the universe smaller this way. Do you recommend this?
	wil: we hate that...a short universe changes soooo much.   I don't know if anyone does it intentionally....usually a mistake (be worth considering though)

7) wil: Build R2 Wil

8) Takvorian: Build R2 Takvorian
	Takvorian: in our last game I took a y here and got in severe trouble without any r, so let's see what will happen now...

9) wil: Build R2 Wil

10) Takvorian: Trade R1 Y1 Takvorian
	Takvorian: Just saw that I didn't reply to you mentioning Snake Oil...
No, I don't own or played it yet. It sounds like a light Party game. Would you recommend it?

11) wil: Trade R1 B1 Wil

12) Takvorian: Build Y1 Takvorian

13) wil: Build B1 Wil

14) Takvorian: Build Y1 Takvorian
	wil: party game yes....silly as all get out...who knows about shelflife...


15) wil: Discover B1 Wil G2 G2

16) Takvorian: Build G1 Takvorian

17) wil: B B2 G2

18) Takvorian: Discover Y1 Takvorian B3 Tb3

19) wil: Sacrifice G3 Wil
Build B2 G2
Build B3 Wil
Build R1 Wil

20) Takvorian: Move R2 Takvorian Tb3

21) wil: Trade B3 Y3 Wil

22) Takvorian: Discover G1 Takvorian Y3 Tak-2

23) wil: Trade B2 Y2 G2
	Takvorian: This game is still twisting my brain, I feel completely overwhelmed...
	wil: you are a gamer...in games and in the world...the more experience often has the advantage... I'm not giving you any breaks..I'm using all the tricks so you can see them coming...

24) Takvorian: Trade Y1 R1 Takvorian

25) wil: Discover R2 Wil G2 Gee2
	wil: Okee dokee...figuring out attacks is a tough one sometimes...everything is a move...so you have to have the jump.  I can right now attack your r2 you moved in.  I will sacrifice an r1 in my homeworld and attack your r2 (turn it around to be mine) should I proceed or would yoiu like to back up?
	Takvorian: omg, I really suck...
So I did take back my stupid move.

26) Takvorian: Build G1 Takvorian
	Takvorian: I suppose this is not much better though

27) wil: Trade R1 G1 Wil
	wil: it is better than losing your only attack ship...  Now i hope you know what I am upto next..
	wil: lol...oh crap...I didn't really look!! You did what I was gonna do next...before I mentioned it...sheesh...nice move!
	Takvorian: You expect too much from me, I don't know what you plan.
	Takvorian: Have to think about it...
	wil: you took it perfect...invested a green 1 in a y3 poifection!


28) Takvorian: Build G2 Tak-2

29) wil: Build G3 Wil

30) Takvorian: Build G3 Takvorian

31) wil: Sacrifice Y3 Wil
Move G1 Wil G2
Move G1 G2 Tb3
Move G1 Tb3 Takvorian
Catastrophe Takvorian G

32) Takvorian: Move G2 Tak-2 Takvorian

33) wil: Build B2 G2

34) Takvorian: Move R1 Takvorian Tak-2

35) wil: Move B2 G2 Tak-2
	wil: gotta watch out for overpopulation...

36) Takvorian: Build G1 Takvorian
	Takvorian: did'nt see it coming. This game is still so confusing for me...
	wil: believe me...I know the feeling...  I had to see somethings two or three times before I was able to catch them

37) wil: Sacrifice R2 Gee2
Attack R1 Tak-2
Attack G1 Tak-2

38) Takvorian: Move G1 Takvorian Tb3

39) wil: Build B3 Wil

40) Takvorian: Build G1 Takvorian

41) wil: Build B3 G2

	Takvorian: So I resign here to concentrate on our teaching game (not that I have any idea how to continue here ;))
	wil: it was over when you lost your queen


27163)
Variants: "Hard time"
Started: 2015.3.21, Ended: 2015.3.30
Participants: SilentTitan (S), OnePageWars (N)
Winner: SilentTitan

1) OnePageWars: Homeworld G1 B2 Y3

2) SilentTitan: Homeworld R1 B3 G3
	OnePageWars: gl hf!

3) OnePageWars: Build Y1 Onepagewars

4) SilentTitan: Build G1 Silenttitan

5) OnePageWars: Trade Y3 G3 Onepagewars

6) SilentTitan: Trade G3 Y3 Silenttitan

7) OnePageWars: Build Y1 Onepagewars

8) SilentTitan: Discover Y3 Silenttitan G2 Sol

9) OnePageWars: Discover Y1 Onepagewars B3 Rossum

10) SilentTitan: Build G1 Silenttitan

11) OnePageWars: Move G3 Onepagewars Rossum

12) SilentTitan: Trade G1 R1 Silenttitan

13) OnePageWars: Trade Y1 R1 Onepagewars

14) SilentTitan: Build R2 Silenttitan

15) OnePageWars: Build R2 Onepagewars

16) SilentTitan: Trade R2 Y2 Silenttitan

17) OnePageWars: Trade R1 Y1 Onepagewars

18) SilentTitan: Sacrifice Y2 Silenttitan
Move Y3 Sol Rossum
Move Y3 Rossum Onepagewars

19) OnePageWars: Move G3 Rossum Onepagewars

20) SilentTitan: Sacrifice R1 Silenttitan
Attack R2 Onepagewars North

	OnePageWars: Thanks for the game.
	SilentTitan: Thank you.  


27282)
Variants: "Hard time"
Started: 2015.3.21, Ended: 2015.4.1
Participants: dlwillson (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) dlwillson: H B3 R1 G3
	wil: If I recall correctly when I first started learning this game you slipped into this very place under similar circumstances.

3) wil: Build G1 Wil
	dlwillson: I don't think I've ever hit #1. I think Silent Titan has.
	dlwillson: Have a lot of fun.

4) dlwillson: B G1 Dlwillson
	wil: hmmm...well then you got a chance now!!!

5) wil: Trade G1 B1 Wil

6) dlwillson: T G1 B1 Dlwillson

7) wil: Build B2 Wil
	dlwillson: Good luck to both of us!

8) dlwillson: B B2 Dlwillson
	wil: no such thing as a bad homeworlds game...  bad plays... but no bad games

9) wil: Discover B1 Wil G3 G3

10) dlwillson: Trade B1 Y1 Dlwillson

11) wil: B G1 Wil

12) dlwillson: Build Y1 Dlwillson

13) wil: T B2 Y2 Wil

14) dlwillson: D Y1 Dlwillson G2 Field

15) wil: Trade G1 R1 Wil

16) dlwillson: B Y1 Field

17) wil: Move Y2 Wil G3

18) dlwillson: Discover Y1 Field B3 Lake

19) wil: Build R1 Wil

20) dlwillson: D Y1 Field Y3 Sol
	wil: the best man is winning...
	SilentTitan: I was at number one for almost 1 year.  I believe I had 11 defends and then dlwillson challenged me and we were Neck and Neck when I was suddenly let go from my job. I then timed out on the match and you were number one until... Not sure.  I think tooshort beat you to reclaim.
	wil: lol...we'll see if I can get one defend!

21) wil: Discover R1 Wil Y3 Y3
	dlwillson: :-)

22) dlwillson: B G1 Dlwillson

23) wil: Build R2 Wil

24) dlwillson: D B2 Dlwillson G2 Field
	dlwillson: I'd say the odds are good!

25) wil: M R2 Wil Sol

26) dlwillson: M Y1 Sol Field

27) wil: S G3 Wil
B R2 Wil
B R2 Y3
B R3 Wil

28) dlwillson: S G3 Dlwillson
B Y2 Dlwillson
B Y3 Dlwillson
B B1 Field

29) wil: Trade R3 G3 Wil

30) dlwillson: T Y3 R3 Dlwillson

31) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 Sol
Build Y3 G3

32) dlwillson: Discover B1 Field G1 Forest

33) wil: Move R2 Sol Field

34) dlwillson: Sacrifice Y1 Field
Discover B2 Field Y1 Sunny

35) wil: Discover Y2 G3 B2 B2

36) dlwillson: D B2 Sunny G3 Vale
	wil: It is a little scary and a little different defending the top of the ladder...
	dlwillson: You're doing a fine job. Did you know I can see up your skirt from here?
	wil: oops...bad day for me to have gone commando

37) wil: S Y3 G3
M R1 Y3 Field
M R1 Field Dlwillson
M R2 Field Dlwillson
C Dlwillson R

38) dlwillson: T Y1 R1 Dlwillson

39) wil: Move R3 Wil Dlwillson

40) dlwillson: B R1 Dlwillson

41) wil: Sacrifice R3 Sol
Attack R1 Dlwillson
Attack R1 Dlwillson
Attack G1 Dlwillson

42) dlwillson: T Y2 G2 Dlwillson
	wil: who are all these 'spectators' and why don't I see them playing homeworlds?
	dlwillson: Dunno. It's been that way forever.

43) wil: Attack G2 Dlwillson
	wil: That could have easily blown up in my face, I barely stayed one step ahead of disaster there..
	dlwillson: Well played, Wil!

Congrats on your first defend. I'll give the others a week or so before I attack again.
	wil: thanx and anytime.... we'll see who steps upto the plate.



27287)
Variants: "Hard time"
Started: 2015.3.22, Ended: 2015.5.12
Participants: fogus (S), Takvorian (N)
Winner: Takvorian

1) Takvorian: Homeworld B1 R2 G3

2) fogus: Homeworld B1 Y2 G3
	Takvorian: have fun!

3) Takvorian: Build G1 Takvorian

4) fogus: Build G1 Fogus

5) Takvorian: Trade G1 B1 Takvorian

6) fogus: Trade G1 Y1 Fogus

7) Takvorian: Build G1 Takvorian

8) fogus: Build G1 Fogus

9) Takvorian: Trade G1 Y1 Takvorian
	fogus: thanks! you too

10) fogus: Build G1 Fogus
	Takvorian: I like Homeworlds, but I really have no clue in this game. It knots my brain...

11) Takvorian: Build B2 Takvorian

12) fogus: Discover G1 Fogus B3 Scan

13) Takvorian: Trade B2 R2 Takvorian

14) fogus: Trade Y1 R1 Fogus

15) Takvorian: Move R2 Takvorian Scan

16) fogus: Sacrifice G1 Scan
Build R1 Fogus

17) Takvorian: Build B2 Takvorian

18) fogus: Trade G1 Y1 Fogus

19) Takvorian: Trade B2 Y2 Takvorian

20) fogus: Build G1 Fogus

21) Takvorian: Build G1 Takvorian

22) fogus: Discover G1 Fogus Y3 Blip
	fogus: I've gotten myself in a pickle

23) Takvorian: Trade Y2 R2 Takvorian

24) fogus: Build G1 Fogus

25) Takvorian: Move R2 Takvorian Blip

26) fogus: Discover G1 Blip Y2 Flip

27) Takvorian: Move G1 Takvorian Blip

28) fogus: Build G2 Flip

29) Takvorian: Build G2 Blip

30) fogus: Discover R1 Fogus G3 Chip

31) Takvorian: Build B2 Takvorian

32) fogus: Trade R1 Y1 Fogus

33) Takvorian: Build Y2 Takvorian

34) fogus: Move Y1 Fogus Chip

35) Takvorian: Build G2 Takvorian

36) fogus: Build Y3 Chip

37) Takvorian: Sacrifice Y2 Takvorian
Move G2 Blip Fogus
Move G1 Blip Fogus
Catastrophe Fogus G



27274)
Variants: "Hard time"
Started: 2015.3.24, Ended: 2015.4.15
Participants: Laurie_Menke (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 B1 G3
	Laurie_Menke: Hey, Wil!  You wanna give this another shot and see if I can remember to check into SDG on a regular basis?  :)
	wil: lol


2) Laurie_Menke: Homeworld B2 R1 G3

3) wil: Build G1 Wil

4) Laurie_Menke: Build G1 Laurie_menke

5) wil: Trade G1 B1 Wil

6) Laurie_Menke: Trade G1 B1 Laurie_menke

7) wil: Build B2 Wil

8) Laurie_Menke: Build G1 Laurie_menke

9) wil: Trade B1 R1 Wil
	wil: looks like I just may defend my number 1 spot at least once!!
	wil: of course that is me counting chickens...

10) Laurie_Menke: Trade G1 R1 Laurie_menke
	Laurie_Menke: I have complete faith in you and have had from the beginning!  Congrats in advance!  :)

11) wil: Build R2 Wil

12) Laurie_Menke: Build R2 Laurie_menke

13) wil: Discover R2 Wil B2 B2
	wil: I held onto my rung!!

14) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Wooooo-hooooo!!!!!  Congrats... I knew you could do it!  :)

15) wil: Sacrifice G3 Wil
Build R2 B2
Build R3 B2
Build R3 Wil

16) Laurie_Menke: Trade G1 Y1 Laurie_menke

17) wil: Trade R2 Y2 B2
	Laurie_Menke: Grrr....  ;)

18) Laurie_Menke: Discover R2 Laurie_menke Y3 Yellow
	wil: I think the two intermediary goals are similar cousins even...the race to the queens, it can be by acing out singles or by isolation.  
	Laurie_Menke: True.  And you are far too good at all of the above (or below)!

19) wil: Move R3 B2 Yellow

20) Laurie_Menke: Discover R2 Yellow G2 Green

21) wil: Trade R3 G3 Wil

22) Laurie_Menke: Discover B1 Laurie_menke G3 Greentoo

23) wil: Sacrifice G3 Wil
Build R2 Yellow
Build R3 B2
Build R3 Wil

24) Laurie_Menke: Move R1 Laurie_menke Yellow
	Laurie_Menke: Well, at least I accurately predicted what you would do.  Didn't have any good way to stop it, but saw it coming.  ;)

25) wil: Move R3 Yellow Green

26) Laurie_Menke: Build B1 Greentoo
	wil: I'm not gonna swat that little mosquito...I am just gonna go sight seeing...
	Laurie_Menke: Yeah, yeah....  was worth a shot...  ;)

27) wil: Move R3 B2 Greentoo

28) Laurie_Menke: Build Y1 Laurie_menke
	wil: You gonna make me another star?
	wil: I mean I appreciate all the stars you've created for me so far...they are very nice...
	Laurie_Menke: grumblegrumblegrumble

29) wil: Sacrifice R2 B2
Attack B1 Greentoo
Attack B1 Greentoo

	wil: I have never played John Cooper...but John Cooper has changed my game play dramatically.   Andy came back from the JoCo cruise last year saying he got to play a number of games with John...and that John has a very aggressive game play....so I began attacking stars that others created... it is obnoxious, but it works...   
	Laurie_Menke: It works for you!  I tried that on Andy and it cost me my current game, I think.  :/  I just need a lot more practice...
	Laurie_Menke: Hmmm...  I think I should concede this game.  Congratulations, and Happy Birthday!!!  (Don't say I never gave you anything.)  ;)  ;)  ;)
	wil: Andy is such a tricky player... he's seen it all..and comes up with moves that I baffle me at times when I think I have him cornered.
	wil: Musta been ts52's birthday too...
	Laurie_Menke: LOL... musta been...  ;)   And yes, he is tricky!
	Laurie_Menke: Actually, I guess it was mine... did you see how that turned out?  :)
	wil: Yeah, I am surprised neither of you saw that...it was sittin there and he moved and you moved and he moved...  I was bouncin off the walls!
	Laurie_Menke: So weird.  I don't know why I didn't see it, either!
	wil: That was why I said it must've been his birthday...  

	Laurie_Menke: Gotcha.  :)


27281)
Variants: "Hard time"
Started: 2015.3.24, Ended: 2015.4.27
Participants: Laurie_Menke (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B3 G3
	Laurie_Menke: Hi, SilentTitan!  Here's to a good game!  :)
	SilentTitan: Hello, and a good game to you as well

2) Laurie_Menke: Homeworld B1 R2 G3

3) SilentTitan: Build G1 Silenttitan

4) Laurie_Menke: Build G1 Laurie_menke

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Laurie_Menke: Trade G1 R1 Laurie_menke

7) SilentTitan: Build Y1 Silenttitan

8) Laurie_Menke: Build R1 Laurie_menke

9) SilentTitan: Discover Y1 Silenttitan G2 Sol

10) Laurie_Menke: Trade R1 Y1 Laurie_menke

11) SilentTitan: Build Y2 Sol

12) Laurie_Menke: Build R1 Laurie_menke

13) SilentTitan: Discover Y2 Sol B3 Soul

14) Laurie_Menke: Build Y2 Laurie_menke

15) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Soul
Build Y3 Silenttitan

16) Laurie_Menke: Move Y2 Laurie_menke Soul

17) SilentTitan: Trade Y3 R3 Soul

18) Laurie_Menke: Move Y2 Soul Sol

19) SilentTitan: Move R3 Soul Laurie_menke
Catastrophe Laurie_menke Red

20) Laurie_Menke: Sacrifice G3 Laurie_menke
Build Y3 Laurie_menke
Build Y3 Sol
Pass
Catastrophe Sol Y

21) SilentTitan: Trade Y3 G3 Silenttitan
	Laurie_Menke: Ack!  Why didn't I see that???  ::sigh::

22) Laurie_Menke: Discover Y1 Laurie_menke G2 Green
	Laurie_Menke: Good game!  Congratulations and thanks for the fun!  :)

23) SilentTitan: Build Y1 Silenttitan

24) Laurie_Menke: Build Y2 Green
	Laurie_Menke: Oops!  I was thinking you had me last turn, but I miscounted.  You were one pip short.

25) SilentTitan: Trade Y2 B2 Soul

26) Laurie_Menke: Move Y1 Green Laurie_menke

27) SilentTitan: Sacrifice Y1 Silenttitan
Move B2 Soul Laurie_menke

28) Laurie_Menke: Trade Y1 G1 Laurie_menke

29) SilentTitan: Sacrifice G3 Silenttitan
Build B1 Laurie_menke
Build B1 Laurie_menke
Build Y1 Silenttitan
Catastrophe Laurie_menke Blue

	SilentTitan: Thanks for the game
	Laurie_Menke: Nice job!  Thanks for the fun and congratulations!  :)


27290)
Started: 2015.3.24, Ended: 2015.4.16
Participants: ts52 (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld B3 R1 G3
	Laurie_Menke: Hi, ts52!  Have fun!  :)

2) ts52: Homeworld Y1 B2 G3
	ts52: Thanks! You too!

3) Laurie_Menke: Build G1 Laurie_menke

4) ts52: Build G1 Ts52

5) Laurie_Menke: Trade G1 Y1 Laurie_menke

6) ts52: Build G1 Ts52

7) Laurie_Menke: Build Y1 Laurie_menke

8) ts52: Discover G1 Ts52 B3 Gonzo_the_great

9) Laurie_Menke: Build Y2 Laurie_menke

10) ts52: Build G1 Ts52
	Laurie_Menke: LOL!  I like the name!

11) Laurie_Menke: Discover Y2 Laurie_menke G2 Green

12) ts52: Build G2 Gonzo_the_great
	Laurie_Menke: Sorry I keep undoing stupid moves.  :/

13) Laurie_Menke: Build G2 Laurie_menke

14) ts52: Build G3 Gonzo_the_great

15) Laurie_Menke: Sacrifice Y2 Green
Discover G2 Laurie_menke Y2 Yellow
Move G2 Yellow Gonzo_the_great
Catastrophe Gonzo_the_great G

16) ts52: Discover G1 Ts52 B3 Gonzo

17) Laurie_Menke: Build Y2 Laurie_menke

18) ts52: Build G1 Ts52

19) Laurie_Menke: Build G2 Laurie_menke

20) ts52: Build G2 Gonzo

21) Laurie_Menke: Discover G2 Laurie_menke Y2 Yellow

22) ts52: Trade G2 Y2 Gonzo

23) Laurie_Menke: Build G2 Laurie_menke

24) ts52: Build Y3 Gonzo
	ts52: Sorry about the undo, was typing on autopilot. 
	Laurie_Menke: No worries!

25) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move G2 Yellow Gonzo
Move G2 Gonzo Ts52
Catastrophe Ts52 G

	Laurie_Menke: Good game, ts52!  Thanks for the fun!  :)
	ts52: Thanks for the game! Well played.


27311)
Started: 2015.3.24, Ended: 2015.4.30
Participants: hellajoey (S), JaredL (N)
Winner: hellajoey

1) JaredL: Homeworld B2 Y1 G3

2) hellajoey: Homeworld R1 B2 G3

3) JaredL: Build G1 Jaredl

4) hellajoey: Build G1 Hellajoey

5) JaredL: Discover G1 Jaredl B3 Blue3

6) hellajoey: Trade G1 Y1 Hellajoey

7) JaredL: Build G1 Blue3

8) hellajoey: Build Y1 Hellajoey

9) JaredL: Build G1 Jaredl

10) hellajoey: Build Y2 Hellajoey

11) JaredL: Build G2 Blue3

12) hellajoey: Build G2 Hellajoey

13) JaredL: Trade G2 Y2 Blue3

14) hellajoey: Discover Y1 Hellajoey G3 Grun

15) JaredL: Move G1 Blue3 Hellajoey

16) hellajoey: Trade G3 R3 Hellajoey

17) JaredL: Trade G1 R1 Jaredl

18) hellajoey: Move R3 Hellajoey Blue3

19) JaredL: Move Y2 Blue3 Hellajoey

20) hellajoey: Attack Y2 Hellajoey

21) JaredL: Sacrifice G1 Blue3
Build G1 Hellajoey

22) hellajoey: Move G2 Hellajoey Blue3

23) JaredL: Build G1 Jaredl

24) hellajoey: Attack G1 Hellajoey

25) JaredL: Sacrifice G3 Jaredl
Build G2 Hellajoey
Build G2 Hellajoey
Build G3 Jaredl
Catastrophe Hellajoey G

26) hellajoey: Build Y2 Grun

27) JaredL: Trade G3 Y3 Jaredl

28) hellajoey: Sacrifice Y2 Hellajoey
Move Y2 Grun Jaredl
Move Y1 Grun Jaredl
Catastrophe Jaredl Yellow

29) JaredL: Build G1 Jaredl

30) hellajoey: Sacrifice Y2 Hellajoey
Move G2 Blue3 Jaredl
Move R3 Blue3 Jaredl

31) JaredL: Build R1 Jaredl

32) hellajoey: Sacrifice R3 Jaredl
Attack R1 Jaredl
Attack R1 Jaredl
Attack G1 Jaredl

33) JaredL: Build G1 Jaredl

34) hellajoey: Pass
Catastrophe Jaredl Green



27308)
Variants: "Hard time"
Started: 2015.3.30, Ended: 2015.4.10
Participants: wil (S), Aghmarck (N)
Winner: wil

1) Aghmarck: Homeworld Y1 B2 G3

2) wil: Homeworld Y3 B1 G3
	wil: welcome and thx for the game!  You new around these parts?  would this be anderson?

3) Aghmarck: Build G1 Aghmarck
	Aghmarck: Hi! Yes, I'm kind of new, but I'm not sure who Mr. Anderson is though, reminds me of a movie somehow...

4) wil: Build G1 Wil
	wil: hee hee...just someone who said he was going to join and challenge me...  if you have any questions about the game, don't hesitate to ask.
	wil: hee hee...just someone who said he was going to join and challenge me...  if you have any questions about the game, don't hesitate to ask.

5) Aghmarck: Discover G1 Aghmarck B3 Storm

6) wil: Trade G1 B1 Wil

7) Aghmarck: Build G1 Aghmarck

8) wil: Build B1 Wil

9) Aghmarck: Trade G1 Y1 Aghmarck

10) wil: Discover B1 Wil G2 G2

11) Aghmarck: Build Y1 Aghmarck

12) wil: Sacrifice G3 Wil
Build B2 G2
Build B2 G2
Build B3 Wil

13) Aghmarck: Move Y1 Aghmarck Storm

14) wil: Trade B2 Y2 G2

15) Aghmarck: Build Y2 Storm

16) wil: B Y2 G2

17) Aghmarck: Trade Y2 B2 Storm

18) wil: Trade Y2 R2 G2

19) Aghmarck: Trade B2 R2 Storm

20) wil: Build B2 G2

21) Aghmarck: Build Y2 Storm

22) wil: Discover B2 G2 Y3 Y3

23) Aghmarck: Discover Y1 Aghmarck B3 Sea

24) wil: Trade B3 G3 Wil

25) Aghmarck: Build G1 Aghmarck

26) wil: Build B3 G2

27) Aghmarck: Trade G3 Y3 Aghmarck

28) wil: Discover Y2 G2 G3 G3

29) Aghmarck: Build Y2 Aghmarck

30) wil: Move Y2 G3 Aghmarck
Catastrophe Aghmarck Y

	Aghmarck: How did I miss that? :)
	wil: I don't know... I moved so you couldn't have it...then you grew it...I was looking all over for a trap!  Thanx for the game!


27350)
Variants: "Hard time"
Started: 2015.3.30, Ended: 2015.4.7
Participants: Aghmarck (S), foksieloy (N)
Winner: Aghmarck

1) foksieloy: Homeworld G1 B3 Y3

2) Aghmarck: Homeworld Y1 B2 G3
	foksieloy: Hi, good luck, have fun!

3) foksieloy: Build Y1 Foksieloy

4) Aghmarck: Build G1 Aghmarck

5) foksieloy: Trade Y1 G1 Foksieloy

6) Aghmarck: Build G2 Aghmarck

7) foksieloy: Build G2 Foksieloy

8) Aghmarck: Trade G1 Y1 Aghmarck

9) foksieloy: Trade G2 B2 Foksieloy

10) Aghmarck: Discover G2 Aghmarck B3 Storm

11) foksieloy: Build Y1 Foksieloy
	Aghmarck: Hi! I'm new around here and had missed your message. good luck and have fun!

12) Aghmarck: Build Y2 Aghmarck
	foksieloy: No problem, if you need assistance, give me a shout.

13) foksieloy: Discover Y1 Foksieloy G2 Tibbers

14) Aghmarck: Trade Y1 B1 Aghmarck

15) foksieloy: Build B1 Foksieloy

16) Aghmarck: B G1 Aghmarck

17) foksieloy: Move B1 Foksieloy Tibbers

18) Aghmarck: Sacrifice G3 Aghmarck
Build G2 Aghmarck
Build G3 Aghmarck
Build G3 Storm

19) foksieloy: Build Y1 Tibbers

20) Aghmarck: Trade G3 Y3 Storm

21) foksieloy: Build Y2 Tibbers

22) Aghmarck: Discover G2 Aghmarck B3 Sea

23) foksieloy: Trade Y1 R1 Tibbers

24) Aghmarck: Sacrifice G3 Aghmarck
Build G3 Aghmarck
Build G3 Sea
Build G3 Storm

25) foksieloy: Discover Y1 Tibbers Y3 Annie

26) Aghmarck: Trade G3 R3 Sea

27) foksieloy: Sacrifice G1 Foksieloy
Build Y1 Annie

28) Aghmarck: Trade G3 R3 Aghmarck

29) foksieloy: Sacrifice Y2 Tibbers
Move Y1 Annie Aghmarck
Move Y1 Annie Aghmarck
Catastrophe Aghmarck Y

30) Aghmarck: Sacrifice Y3 Storm
Move R3 Aghmarck Foksieloy
Move R3 Sea Tibbers
Move R3 Tibbers Foksieloy

	foksieloy: A light miscalculation :D

sacrifice y3 foksieloy
move b2 foksieloy Aghmarck
move b1 Tibbers sea
move b1 sea Aghmarck
catastrophe Aghmarck blue

You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.

Good game!
	Aghmarck: Yes, that was pretty close.

Good game!


27309)
Variants: "Hard time"
Started: 2015.3.30, Ended: 2015.4.8
Participants: SilentTitan (S), OnePageWars (N)
Winner: SilentTitan

1) OnePageWars: Homeworld G1 B2 Y3
	OnePageWars: hi gl hf!

2) SilentTitan: Homeworld R2 B3 G3

3) OnePageWars: Build Y1 Onepagewars

4) SilentTitan: Build G1 Silenttitan

5) OnePageWars: Build Y1 Onepagewars
	SilentTitan: One more time into the breach.....

6) SilentTitan: Trade G1 Y1 Silenttitan

7) OnePageWars: Discover Y1 Onepagewars G3 Tvtropes

8) SilentTitan: Build Y2 Silenttitan

9) OnePageWars: Build Y2 Tvtropes

10) SilentTitan: Discover Y1 Silenttitan G1 Sol

11) OnePageWars: Trade Y1 B1 Onepagewars

12) SilentTitan: Build Y1 Sol

13) OnePageWars: Build B1 Onepagewars

14) SilentTitan: Discover Y1 Sol B3 Soul

15) OnePageWars: Move B1 Onepagewars Tvtropes

16) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Soul
Build Y3 Silenttitan

17) OnePageWars: Trade Y2 R2 Tvtropes
	OnePageWars: Oh no, I'm dead I'm dead, I'm alive, but I'm dead!
I'm dead, deceased, I'm dead alack the day --
Alack the day, I'm dead, I'm dead, I'm dead.

18) SilentTitan: Trade Y3 G3 Silenttitan
	OnePageWars: Do you recognize the two (almost) quotes?
	SilentTitan: I do not ... If you said "Aliens one, Humans nothing".  That one I would have recognized 

19) OnePageWars: Trade Y3 G3 Onepagewars
	OnePageWars: The first one (line 1) is paraphrased from 'The Incredibles', the second (lines 2 and 3) is paraphrased from 'Romeo and Juliet'.

20) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Soul
Build Y3 Silenttitan
Build Y3 Silenttitan
	SilentTitan: Yeah, I'd have got the first if you'd had written, "we're dead", Dash says it when they resurface after diving to avoid a large piece of the plane they just bailed from.

	OnePageWars: But not the second if I had said: "She's dead, deaceased, she's dead, alack the day, // Alack the day, she's dead, she's dead, she's dead!"?
	OnePageWars: thanks for the game.


27349)
Variants: "Hard time"
Started: 2015.4.2, Ended: 2015.4.6
Participants: wil (S), OnePageWars (N)
Winner: wil

1) OnePageWars: Homeworld B2 G1 Y3

2) wil: Homeworld Y3 B1 G3
	OnePageWars: gl hf!
	wil: Thanx for the game!!

3) OnePageWars: Build Y1 Onepagewars

4) wil: Build G1 Wil

5) OnePageWars: Discover Y1 Onepagewars G3 Table_tennis

6) wil: Build G1 Wil

7) OnePageWars: Build Y1 Onepagewars

8) wil: Discover G1 Wil B2 B2

9) OnePageWars: Trade Y1 B1 Onepagewars

10) wil: Build G2 Wil

11) OnePageWars: Build Y1 Onepagewars

12) wil: Discover G2 Wil Y2 Y2

13) OnePageWars: Trade Y1 R1 Onepagewars

14) wil: Sacrifice G3 Wil
Build G2 Y2
Build G2 B2
Build G3 Wil

15) OnePageWars: Build Y1 Onepagewars

16) wil: Trade G2 Y2 B2

17) OnePageWars: Build R1 Onepagewars

18) wil: S G3 Wil
B G2 B2
B G3 B2
B G3 Wil

19) OnePageWars: Move R1 Onepagewars Table_tennis

20) wil: T G3 Y3 B2

21) OnePageWars: Build R1 Table_tennis

22) wil: Trade Y2 R2 B2

23) OnePageWars: Build R2 Onepagewars

24) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 B2
Build R2 B2

	OnePageWars: good game, thanks for the game.
	wil: Yes there wasn't enough room in this galaxy for both of us!


27401)
Variants: "Hard time"
Started: 2015.4.8, Ended: 2015.5.27
Participants: Aghmarck (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld R2 B3 G3

2) Aghmarck: Homeworld G1 B2 Y3
	Mandrel: Have a good game.
	Aghmarck: Hi, good luck and have fun!

3) Mandrel: Build G1 Mandrel

4) Aghmarck: Build Y1 Aghmarck

5) Mandrel: Build G1 Mandrel

6) Aghmarck: Trade Y1 B1 Aghmarck

7) Mandrel: Trade G1 Y1 Mandrel

8) Aghmarck: Build Y1 Aghmarck

9) Mandrel: Discover G1 Mandrel B1 Anomaly
	Aghmarck: Hi Mandrel, are you still there? Cheers!

10) Aghmarck: Build B1 Aghmarck
	Mandrel: Apologies, hectic few days, should be able to keep up a bit better now.
	Aghmarck: That's ok. I just wanted to make sure you were not going to run out of time without realizing it.
	Mandrel: Cheers, wouldn't have been the first time that's happened sadly!

11) Mandrel: Build G1 Mandrel

12) Aghmarck: Discover B1 Aghmarck G3 Treant

13) Mandrel: Build G2 Anomaly

14) Aghmarck: Build B2 Treant

15) Mandrel: Build G2 Anomaly

16) Aghmarck: T B2 Y2 Treant

17) Mandrel: Trade G2 B2 Anomaly

18) Aghmarck: Build B2 Treant

19) Mandrel: Trade G2 Y2 Anomaly

20) Aghmarck: Trade B2 G2 Treant

21) Mandrel: Build G2 Anomaly

22) Aghmarck: Build B2 Treant

23) Mandrel: Trade G2 R2 Anomaly

24) Aghmarck: Sacrifice Y2 Treant
Move B1 Treant Anomaly
Move B2 Treant Anomaly
Catastrophe Anomaly Blue

25) Mandrel: Discover G1 Mandrel B1 Anomaly2

26) Aghmarck: Build B1 Aghmarck

27) Mandrel: B G1 Mandrel

28) Aghmarck: B B2 Aghmarck

29) Mandrel: B G2 Anomaly2
Catastrophe Aghmarck Blue

	Aghmarck: whoops :)


27414)
Variants: "Unrated"
Started: 2015.4.9, Ended: 2015.5.6
Participants: Takvorian (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3
	Takvorian: Hello again,
thanks for setting up a teaching game! I am very interested to know what you are thinking when making moves in Homeworlds.

2) Takvorian: Homeworld R1 B2 G3
	wil: I've tried other scenarios but have always come back to green ships...I don't wanna give up a factory possibility..it just isn't worth it.  Now for you...since the bank is limited you need to insure you don't give me a monopoly opportunity immediately (no small yellow!!)
	Takvorian: So far, I had always chosen a homeworld with a red star, so I will do it again here. I remember not to choose the same color of your small star from our other game.

3) wil: Build G1 Wil

4) Takvorian: Build G1 Takvorian
	wil: red in homeworld is good..you never have to worry about protection in your homeworld...I like yellow..it allows me to get out early and take to the stars...but differing openings require differing responses.

5) wil: D G1 Wil Y2 Y2
	wil: i didn't mean to back up..I was being clumsy
	wil: Begin with the end in mind...  I look at three things...how can I get rid of the other homeworld stars...how can I get rid of the ships....how can I get to Queens first.

6) Takvorian: Trade G1 R1 Takvorian
	Takvorian: So the first move is always easy ;)
It seems to me that as in many strategy games there is a bit of a first player advantage, right?
And the only possibility to get rid of homeworld stars is to trigger a catastrophe, or?
	wil: Yes and yes

7) wil: B G1 Y2
	wil: The advantage of yellow in my homeworld... Being able to get right out

8) Takvorian: Build R1 Takvorian
	Takvorian: I don't know, was my move o.k.?
	Takvorian: Or should I go for yellow?
	wil: either are good choices...  there are only two smalls. yellow however only has two yellows..possibly a faster way to get to queens and lets you get outta your homeworld...you already have a red so you are limited on how many of those you can grow before you have to get a yellow to move out...  
	wil: red should force me to get a red soon...yellow doesn't...but yellow looks to me to be the better path...although both will force me off greens soon.
	Takvorian: ok, so because my red isn't a big blunder, I'll keep it and see what will happen...

	wil: You tell me if you wanna back up and play differently or want to leave it alone and tell me if you want to play it out and see how it works out.

9) wil: Build G1 Wil
	Takvorian: As I see it, my options are very limited at this point. I will grab the last small red...

10) Takvorian: Build G2 Takvorian
	wil: That is right...at this point...as I said,I wold have headed for yellow...so you could get out and about...but this isn't bad..I have to build a green, lets you get into drones, you usually don't want the last small of anything, lets somebody else get into mediums...unless you control the market...which you currently do...

11) wil: Discover G1 Y2 B3 B3
	Takvorian: My Homeworld looks a bit crowded with reds at the moment but as you do not have a red yet I think it is not too dangerous...
I will build a g2 now and perhaps trade it later on into a y2

12) Takvorian: Trade G2 Y2 Takvorian

13) wil: Build G2 B3
	wil: Exactly and I made a mistake my not doing the move I just made last time....that way I would have got the g2 when you built a g1

14) Takvorian: Build Y1 Takvorian
	Takvorian: Is this trade reasonable now?

15) wil: Trade G2 Y2 B3

16) Takvorian: Discover R1 Takvorian B3 Tb3
	Takvorian: Now the point has come, where I really have no idea how to proceed...

17) wil: Build G2 Wil
	wil: There are two major stall points in the game...when you run out of smalls or mediums and taking the last one will allow the other guy to jump up a notch on ya and get more powerful ships... (one goal...get to 3s first) the other is when we've completely exhausted the bank...there is nothing else left to take...now what do I do...  In both cases it must always be, begin with the end in mind...you need to put 3 blues and 3 yellows within shooting distance of my homeworld to create a doomsday machine and end the game (and have a way to get them in)  Or you need to get enough 3s within shooting distance and enough big red guns to out power me in my homeworld...the entire game is about amassing enough ships in the right positions to be able to accomplish an end game condition.

	wil: Along the way, you try to take over stars that the other has built, take over ships the other has created, and catastrophe at times to reboot the galaxy...  It is a game of chess, of positioning and control of the galaxy...in a balanced way so as the other guy cannot do the same to you.
	wil: Along the way, you try to take over stars that the other has built, take over ships the other has created, and catastrophe at times to reboot the galaxy...  It is a game of chess, of positioning and control of the galaxy...in a balanced way so as the other guy cannot do the same to you.
	wil: I am looking at, I build another g2, trade for r2, have the y2 to send it in if you don't clear out your reds (forces you to move some out)...  I took the Y2 so if you took a Y1 I would be able to get a Y3...if you move Ys out so you can get two to my one...I'll create an investment and leave a y2 back in the bank just to cause trouble maybe...If I were you I'd be moving out and creating more stars, more bases of operation in the galaxy to prepare to launch attacks..
	Takvorian: Your thoughts are very helpful for me, although they are still at a much higher level than mine...;)
I see that my homeworld is a bit crowded with reds, so I will move one out, but even then I don't know if it is better to build a yellow or blue system. I opt for blue. What do you think?

18) Takvorian: Move Y2 Takvorian B3

19) wil: Discover Y2 B3 G2 G2
	wil: a.  we may get another commentator!  TeeTeeTee one of the best on the board (if not the best) has asked to pipe in...his thoughts and analysis are always top notch.  But tell me why you should n't build a yellow...
	TeeTeeTee: Hi Takvorian,

I had written some comments, but you've both already moved in the time it took me to write them! Serves me right for trying to say too much, I guess...

I would probably have done something different on the last turn... I think that your greatest advantage at this point in the game is that you have red ships and Wil does not. At present, if you started moving ships into Wil's worlds, then he has to run, or lose the ships. (Remember that you can attack a ship by sacrificing a red ship in a different system, and that the attacking ship doesn't need to be red: it only needs to be the same size or larger than the attacked ship.)

(On the question of blue or yellow world: I'd have opted for discovering a green world. In the early game, the primary aim is to get a large ship before your opponent, or to prevent your opponent from getting one. Wil's route to large ships is through building greens, and staking out a g3 star stops him from going a large ship ahead.)

Hope this helps!

20) Takvorian: Build R2 Takvorian
	Takvorian: Sorry for my late answer wasn't online very often during the last days.

	Takvorian: Hi TeeTeeTee,

Thanks for taking the time to comment on our game. Very helpful ideas! There is so much to discover in this game...
	wil: no worries..  So nice move, I like the agressiveness... you've got a red, I haven't any, nice move to head in and attack... do I mitigate it by moving on?  or by growing yellows?  

21) wil: Sacrifice G3 Wil
Build G2 Y2
Build G3 B3
Build G3 Wil

22) Takvorian: Build Y1 Takvorian
	Takvorian: is building another red reasonable?

	wil: Its not terrible...but at every move there is a theoretical 'best move' your concern is the inability to factory...mine is I have no red...so while I can factory, I can also be in great trouble... I think my thing is to factory and get another big 3...since I have a y2 I'll be able to keep you at bay from getting a factory... I'll wait a day...
	wil: note:  not that I ever know what the theoretical best move is...  the game takes such wonderful twists and turns..
	Takvorian: I simply have no other ides what to do...


23) wil: Build Y3 G2
	wil: moving a r1 to a new G3 star would have kept me from getting the new 3....but I've still plenty of work to do...  trading out my 3 is not easy as you can grow it...(although I could trade it for  Y3...and that would keep you at bay)

24) Takvorian: Move Y1 Takvorian Tb3
	wil: b y3 g2

25) wil: Trade G3 R3 B3

	Takvorian: Wil, thanks for the patience you had with me, but I will resign now. Seems that Homeworlds is not really my cup of tea...
	wil: Oh well...  take care...  hope to see you around.
	wil: http://new.wunderland.com/2015/05/05/the-i-beat-andy-medal/



27413)
Started: 2015.4.10, Ended: 2015.4.13
Participants: anirtak (S), ringebri (N)
Winner: ringebri

1) ringebri: Homeworld B3 G2 Y3

	ringebri: I've played this before but was bad at it. John got to be pretty good and even joined the ladder.
	anirtak: ugh - i can't figure out the commands.  i need to look at the rules when i have more time :( - maybe tomorrow
	ringebri: That's ok.  I never quite got it, myself. Though it is one of the most popular games on this system.


26789)
Variants: "Unrated, Hard time"
Started: 2015.4.14, Ended: 2015.7.23
Participants: agentofchaos (S), wil (W), DiEvAl (N), OnePageWars (E)
Winner: wil

1) DiEvAl: Homeworld R1 B2 G3

2) OnePageWars: Homeworld Y3 B1 G3

3) agentofchaos: Homeworld R2 B3 G3

4) wil: Homeworld B3 R1 G3

5) DiEvAl: Build G1 Dieval

6) OnePageWars: Build G1 Onepagewars

7) agentofchaos: Build G1 Agentofchaos
	OnePageWars: gl hf!

8) wil: Build G1 Wil

9) DiEvAl: Trade G1 Y1 Dieval

10) OnePageWars: Trade G1 Y1 Onepagewars

11) agentofchaos: Trade G1 Y1 Agentofchaos

12) wil: Trade G1 Y1 Wil

13) DiEvAl: Build G1 Dieval

14) OnePageWars: Build G1 Onepagewars

15) agentofchaos: Build G1 Agentofchaos

16) wil: Build G1 Wil
	wil: b g1 wil

17) DiEvAl: Trade G1 R1 Dieval

18) OnePageWars: Trade G1 R1 Onepagewars

19) agentofchaos: Trade G1 R1 Agentofchaos

20) wil: Build Y1 Wil

21) DiEvAl: Build R2 Dieval

22) OnePageWars: Build R2 Onepagewars

23) agentofchaos: Build R2 Agentofchaos

24) wil: Build Y2 Wil

25) DiEvAl: Build Y2 Dieval

26) OnePageWars: Discover R2 Onepagewars G2 Tom_m_riddle

27) agentofchaos: Build Y2 Agentofchaos

28) wil: Trade Y2 R2 Wil

29) DiEvAl: Discover G3 Dieval R3 Draco_l_malfoy

30) OnePageWars: Build R3 Tom_m_riddle

31) agentofchaos: Discover R1 Agentofchaos G1 Kakrafoon

32) wil: Discover R2 Wil G2 Serenity
	DiEvAl: Let's keep the theme. ;-)
	OnePageWars: I agree. :)

33) DiEvAl: Move Y1 Dieval Draco_l_malfoy
	DiEvAl: We should attack anyone who disagrees!
	OnePageWars: let's. :)
	wil: theme?  what theme?
	OnePageWars: That of Harry Potter. :) Or Harry Potter Characters. Or Harry Potter Evil Characters. I'm not quite sure which.

34) OnePageWars: Build R3 Onepagewars

35) agentofchaos: Build R3 Kakrafoon

36) wil: Build R3 Serenity

37) DiEvAl: Build G1 Draco_l_malfoy
	OnePageWars: Just to keep a record,

Tom_M_Riddle and Draco_L_Malfoy are referencing Harry Potter.

Kakrafoon is referencing The Hitchhiker's Guide to the Galaxy.

Serenity is referencing Serenity (Joss Whedon, 2005)
	OnePageWars: Is that correct on the last one? Or is it just a serene planet?
	wil: Firefly...
	OnePageWars: Keep Flying.

38) OnePageWars: Build G1 Onepagewars

39) agentofchaos: Build Y2 Agentofchaos
	agentofchaos: A diverse bunch of franchises here!

40) wil: Move Y1 Wil Serenity

41) DiEvAl: Move G1 Draco_l_malfoy Dieval

42) OnePageWars: Trade G1 B1 Onepagewars

43) agentofchaos: Move Y1 Agentofchaos Kakrafoon

44) wil: Build Y2 Serenity

45) DiEvAl: Trade R1 B1 Dieval
	wil: bumpin....

46) OnePageWars: Move B1 Onepagewars Tom_m_riddle

47) agentofchaos: Trade Y2 B2 Agentofchaos

48) wil: Discover Y2 Serenity G3 Xuan-wu

49) DiEvAl: Move B1 Dieval Draco_l_malfoy

50) OnePageWars: Build B1 Tom_m_riddle

51) agentofchaos: Build Y2 Kakrafoon

52) wil: Sacrifice G3 Wil
Build Y2 Serenity
Build Y3 Xuan-wu
Build Y3 Wil

53) DiEvAl: Sacrifice G3 Draco_l_malfoy
Build R1 Dieval
Build Y3 Draco_l_malfoy
Build Y3 Dieval
	OnePageWars: Is xuan-wu a firefly reference to Niska's inspiration?

54) OnePageWars: Build G1 Onepagewars
	wil: in the firefly system...
	wil: I need more binary Homeworld games...I am not in any right now....
	wil: rated or non rated, competitive or training/discussion games...all are welcome.
	wil: Is this about to go the way of the vast majority of multiplayer games??
	OnePageWars: stagnation?
	wil: historically (in my experience) someone drops out... and yeah it could be due to just the time between the moves when there are so many people...if each move takes a few days it is a couple of weeks before you move again and someone forgets...
	wil: historically (in my experience) someone drops out... and yeah it could be due to just the time between the moves when there are so many people...if each move takes a few days it is a couple of weeks before you move again and someone forgets...

55) agentofchaos: Move B2 Agentofchaos Kakrafoon
	agentofchaos: Sorry for holding up the game, been a bit distracted and busy lately

56) wil: Trade Y1 B1 Wil

57) DiEvAl: Trade Y3 G3 Draco_l_malfoy

58) OnePageWars: Trade B1 Y1 Tom_m_riddle

59) agentofchaos: Build Y3 Agentofchaos

60) wil: Move B1 Wil Serenity

61) DiEvAl: Build G1 Draco_l_malfoy

62) OnePageWars: Discover G3 Onepagewars B2 River_tam

63) agentofchaos: Build B1 Kakrafoon

64) wil: Build G2 Wil

65) DiEvAl: Sacrifice Y2 Dieval
Discover G3 Draco_l_malfoy G2 Readtheinstruct
Move R1 Dieval Draco_l_malfoy

66) OnePageWars: Build G2 River_tam

67) agentofchaos: Build G3 Agentofchaos

68) wil: Build Y2 Wil
	OnePageWars: He looks better in red. No, can't go back, don't want to go back. They took Christmas away. Doesn't matter: they're here. Two by two hands of blue, two by two hands of blue. 

69) DiEvAl: Sacrifice G3 Readtheinstruct
Build G2 Dieval
Build G3 Draco_l_malfoy
Build B2 Draco_l_malfoy

70) OnePageWars: Build B2 Tom_m_riddle

71) wil: Build B3 Serenity

72) DiEvAl: Move G3 Draco_l_malfoy Kakrafoon
	DiEvAl: Just Read The Instructions is a reference both to Culture series and to Elon Musk's pet project.

73) OnePageWars: Discover B2 Tom_m_riddle B3 Simon_tam
	OnePageWars: River_Tam and my comment are both references to Firefly.

74) wil: Sacrifice Y2 Serenity
Move B3 Serenity Kakrafoon
Move B3 Kakrafoon Agentofchaos

75) DiEvAl: Sacrifice G2 Dieval
Build G2 Dieval
Build Y2 Draco_l_malfoy

76) OnePageWars: Move R3 Tom_m_riddle Xuan-wu

77) wil: Sacrifice R2 Serenity
Attack R3E Xuan-wu
Attack Y3S Agentofchaos

78) DiEvAl: Sacrifice R2 Dieval
Attack R3S Kakrafoon
Attack Y2S Kakrafoon

79) OnePageWars: Build R2 Tom_m_riddle

80) wil: Build B3 Serenity

81) DiEvAl: Attack R1S Kakrafoon

82) OnePageWars: Build R2 Onepagewars

83) wil: Attack G3S Agentofchaos

84) DiEvAl: Sacrifice Y2 Kakrafoon
Move R1 Kakrafoon Serenity
Move R1 Serenity Onepagewars
Catastrophe Onepagewars R

85) OnePageWars: Build Y2 Tom_m_riddle

86) wil: Attack R2S Agentofchaos

87) DiEvAl: Attack Y1S Kakrafoon

88) OnePageWars: Move R2 Tom_m_riddle Onepagewars

89) wil: Move R3 Serenity Draco_l_malfoy

90) DiEvAl: Sacrifice Y2 Draco_l_malfoy
Discover Y1 Draco_l_malfoy R2 Readtheinstruct
Move G1 Draco_l_malfoy Readtheinstruct

91) OnePageWars: Move Y1 Tom_m_riddle Simon_tam

92) wil: Build Y2 Serenity

93) DiEvAl: Trade B1 R1 Draco_l_malfoy
Catastrophe Draco_l_malfoy R
	OnePageWars: I get the strangest feeling this is not so good for me.

94) OnePageWars: Build R1 Tom_m_riddle

95) wil: Move G2 Wil Readtheinstruct

96) DiEvAl: Sacrifice Y3 Dieval
Move Y1 Kakrafoon Readtheinstruct
Move Y1 Readtheinstruct Onepagewars
Move Y1 Readtheinstruct Onepagewars
Catastrophe Onepagewars Y

97) OnePageWars: Build R1 Onepagewars

98) wil: Attack G1N Readtheinstruct
	DiEvAl: Is the timer broken for anyone else?

99) DiEvAl: Build R1 Kakrafoon
	wil: the way this multiplayer game works (as far as I can tell) when someone drops out and it becomes my turn...it says that MY time ran out...
	OnePageWars: yeah; same here. scared me for a few turns. :)

100) OnePageWars: Trade G3 R3 River_tam

101) wil: Build G3 Wil

102) DiEvAl: Attack B2S Kakrafoon
	DiEvAl: Poor Draco :(
	DiEvAl: Does anyone want to write an eulogy for him?
	OnePageWars: Nah; noone likes Draco. :)

103) OnePageWars: Build R3 River_tam

104) wil: Sacrifice Y2 Wil
Move G1 Readtheinstruct Kakrafoon
Move G2 Readtheinstruct Kakrafoon
Catastrophe Kakrafoon G
	DiEvAl: What about Astoria Greengrass?

105) DiEvAl: Trade G1 B1 Dieval

106) OnePageWars: Trade G2 Y2 River_tam

107) wil: Sacrifice Y3 Agentofchaos
Move B3 Agentofchaos Onepagewars
Move B1 Serenity Onepagewars
Move B3 Serenity Onepagewars
Catastrophe Onepagewars B

108) wil: Move Y3 Xuan-wu Dieval

	DiEvAl: nope...just wil
	wil: lol...you are back early... and I was just about to send a cruise ship full of tourists to visit your fine home...
	wil: wierd...I have to move?  It shows you, OPW still in the mix?
	wil: Well how about that...our tourist ship got to dock anyway...
	OnePageWars: good game, all!
	wil: It was my first 4 person game to make it to the end...and I guess we didn't really since agent of chaos got kicked out..


26822)
Variants: "Unrated, Hard time"
Started: 2015.4.14, Ended: 2015.6.2
Participants: agentofchaos (S), wil (N), DiEvAl (E)
Winner: wil

1) wil: Homeworld Y3 B2 G3

2) DiEvAl: Homeworld R1 B2 G3
	wil: While I feel binary is the only way to go... and these multiplayer hw games often end up with someone forgetting about it....  I got a jones for HW...so I'll play!

3) agentofchaos: Homeworld R1 B3 G3
	DiEvAl: Why is "E" at the bottom?
	wil: N is at the bottom for me...the default always puts 'you' at the bottom so to provide you a perspective of sitting at the table.

4) wil: Build G1 Wil
	agentofchaos: I'll try not to forget about the game! Have fun all :-)
	wil: uh oh...I may have a bit of an advantage with you two with short universes...  I'll wait a bit to see if you wanna change your homeworld AOC

5) DiEvAl: Build G1 Dieval
	agentofchaos: OK thanks, for some reason I was sure my system was different from East
	wil: no worries....

6) agentofchaos: Build G1 Agentofchaos

7) wil: Trade G1 R1 Wil

8) DiEvAl: Trade G1 Y1 Dieval

9) agentofchaos: Trade G1 R1 Agentofchaos

10) wil: Build R2 Wil

11) DiEvAl: Build Y1 Dieval

12) agentofchaos: Build R2 Agentofchaos

13) wil: Discover R2 Wil G1 G1

14) DiEvAl: Trade Y1 G1 Dieval

15) agentofchaos: Trade R2 Y2 Agentofchaos

16) wil: Build R2 Wil

17) DiEvAl: Trade G3 R3 Dieval

18) agentofchaos: Build Y1 Agentofchaos

19) wil: Trade R2 B2 Wil

20) DiEvAl: Discover R3 Dieval Y3 Y3

21) agentofchaos: Discover Y2 Agentofchaos G2 Morgostar

22) wil: Build R2 G1

23) DiEvAl: Move R3 Y3 Morgostar

24) agentofchaos: Discover Y2 Morgostar G3 Hadehome

25) wil: Build R2 Wil

26) DiEvAl: Build G1 Dieval

27) agentofchaos: Build Y1 Agentofchaos

28) wil: Trade R2 Y2 Wil

29) DiEvAl: Build Y1 Dieval

30) agentofchaos: Build Y2 Agentofchaos

31) wil: Move Y2 Wil G1

32) DiEvAl: Build R2 Morgostar

33) agentofchaos: Discover R1 Agentofchaos G2 Elysiadrome

34) wil: Discover R2 G1 G3 G3

35) DiEvAl: Sacrifice Y1 Dieval
Move R3 Morgostar G3

36) agentofchaos: Build R2 Elysiadrome

37) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 G1
Build R3 G3

38) DiEvAl: Attack R3N G3

39) agentofchaos: Sacrifice Y2 Agentofchaos
Move R1 Elysiadrome G3
Move Y2 Hadehome Dieval
Catastrophe G3 R

40) wil: Move R3 G1 Elysiadrome

41) DiEvAl: Build Y1 Dieval
	DiEvAl: Thanks for that ship
	wil: You do realize the dire straights you are in...yes?  No large ship in your homeworld, anyone can waltz in and pick off those pawns one by one... and I gave up that toxic planet G3 there is an infection spreading due to overpopulation and either of us will be soon saving the galaxy by eliminating it and all its inhabitants...  star ship captains code requires me to at least give you a heads up..  you now have a chance to save yourself...

42) agentofchaos: Sacrifice R2 Elysiadrome
Attack Y1E Dieval
Attack Y1E Dieval

43) wil: Build Y2 G1

44) DiEvAl: Trade G1 R1 Dieval

45) agentofchaos: Attack R1E Dieval

46) wil: Discover Y2 G1 B2 B2

47) DiEvAl: Attack R1S Dieval

48) agentofchaos: Discover Y1 Dieval G3 Jartravartid

49) wil: Trade R3 G3 Wil

50) DiEvAl: Build R2 Dieval

51) agentofchaos: Attack R2E Dieval

52) wil: Sacrifice G3 Wil
Build R2 Elysiadrome
Build R3 Wil
Build R3 Wil

53) DiEvAl: Build R3 Dieval

54) agentofchaos: Attack G1E Dieval
Catastrophe Dieval R

55) wil: Trade R3 Y3 Wil

56) agentofchaos: Trade Y2 R2 Dieval

57) wil: Build Y2 G1

58) agentofchaos: Build Y2 Dieval

59) wil: Move Y2 G1 Jartravartid

60) agentofchaos: Build Y3 Jartravartid

61) wil: Build Y3 G1

62) agentofchaos: Build G1 Agentofchaos

63) wil: Move Y2 G1 Jartravartid
Catastrophe Jartravartid Y

64) wil: Move Y3 G1 Morgostar



27359)
Variants: "Hard time"
Started: 2015.4.14, Ended: 2015.4.26
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y2 G3

2) SilentTitan: Homeworld G1 R3 B3
	SilentTitan: Lol.  Are u bored?

3) wil: Build G1 Wil
	wil: Why do you ask that?  I just like playing the game. Dang interesting opening!

4) SilentTitan: Build B1 Silenttitan
	wil: Interesting opening, but I possibly problematic with the small g?

5) wil: Build G1 Wil

6) SilentTitan: Trade B1 Y1 Silenttitan

7) wil: Discover G1 Wil B1 B1

8) SilentTitan: Build B1 Silenttitan

9) wil: Build G2 Wil

10) SilentTitan: Trade B3 G3 Silenttitan

11) wil: Trade G2 Y2 Wil

12) SilentTitan: Discover G3 Silenttitan Y2 Sol

13) wil: Build G2 B1
	wil: I just had someone do that to me the other day...interesting...

14) SilentTitan: Sacrifice G3 Sol
Build B1 Silenttitan
Build B2 Silenttitan
Build Y1 Silenttitan
	wil: the opening I tried the other day... yellow/red homeworld...against all rules...but I need to try again...

15) wil: Build G2 Wil

	wil: dang..

	SilentTitan: So sorry. Life has gotten very hectic again.


27376)
Variants: "Hard time"
Started: 2015.4.15, Ended: 2015.5.6
Participants: wil (S), Grosseteste (N)
Winner: wil

1) Grosseteste: H Y1 B2 G3

2) wil: Homeworld Y3 B1 G3
	wil: thx for the game!  

3) Grosseteste: B G1 Grosseteste

4) wil: Build G1 Wil

5) Grosseteste: D G1 Grosseteste B3 Lucy

6) wil: Trade G1 B1 Wil

7) Grosseteste: B G1 Grosseteste

8) wil: Build B1 Wil

9) Grosseteste: T G1 Y1 Grosseteste

10) wil: Discover B1 Wil G2 G2

11) Grosseteste: Build G1 Grosseteste

12) wil: Sacrifice G3 Wil
Build B2 G2
Build B2 Wil
Build B3 G2

13) Grosseteste: Trade G3 B3 Grosseteste

14) wil: Sacrifice B2 G2
Trade B3 R3 G2
Trade B2 Y2 Wil

15) Grosseteste: T Y1 R1 Grosseteste

16) wil: Build B2 G2

17) Grosseteste: B R1 Grosseteste

18) wil: Build B2 G2

	wil: hate that...
	Grosseteste: Thanks for the game, sorry I didn't get back to take my medicine but you got ahead of me really quick there.  Well done.


27448)
Started: 2015.4.18, Ended: 2015.4.24
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B3 G3

2) wil: Homeworld Y2 B1 G3

3) ts52: Build G1 Ts52
	wil: should i terminate?
	ts52: No. Sorry... man, I suck at keeping up with these. Moving now.

4) wil: Build G1 Wil

5) ts52: Discover G1 Ts52 B2 Gonzo

6) wil: Trade G1 B1 Wil

7) ts52: Build G1 Gonzo

8) wil: Build B1 Wil

9) ts52: Trade G1 Y1 Gonzo

10) wil: Discover B1 Wil Y3 Y3

11) ts52: Build Y1 Gonzo

12) wil: Sacrifice G3 Wil
Build B2 Y3
Build B2 Y3
Build B3 Wil
	wil: lol...you are making up for slow moves now!!  (would be great if the site had a button for us to press saying..."online and ready to play live!"  

13) ts52: Build Y2 Gonzo

14) wil: Move B1 Y3 Gonzo
	ts52: :) Trying to make up for it a bit. 

15) ts52: Trade Y2 R2 Gonzo

16) wil: Move B2 Y3 Gonzo

17) ts52: Discover G1 Gonzo B3 Grover
	wil: I love how weird and interesting this game can be...  


18) wil: Trade B3 G3 Wil
	ts52: I agree. Very interesting. I really need to get some of my coworkers into it so I can play in person.

19) ts52: Attack B2 Gonzo

20) wil: Build B3 Wil
	wil: yes in person games are great...although they do reach stalls and need some time...  (unless you are chess clocking it) my roomate and i used to keep a game going all the time... we'd get the early play down face to face..and then it would slow as the plot thickened..and become more like this...
	wil: yes in person games are great...although they do reach stalls and need some time...  (unless you are chess clocking it) my roomate and i used to keep a game going all the time... we'd get the early play down face to face..and then it would slow as the plot thickened..and become more like this...

21) ts52: Move B2 Gonzo Y3

22) wil: Discover B2 Y3 Y2 Y2

23) ts52: Move B2 Y3 Wil
Catastrophe Wil Blue

24) wil: Build G1 Wil
	wil: had no idea where this experiment would go...still don't
	wil: lol what was I thinkin?  I new I had to change that....Good show!!
	wil: this is over....

25) ts52: Attack B1 Gonzo

26) wil: Discover G1 Wil B3 B3
	ts52: Yeah, but my endgame sucks....

27) ts52: Move Y1 Gonzo Grover

28) wil: Build G1 B3

29) ts52: Build G2 Grover
	wil: I feel like that poor knight in MP Holy Grail...no arms, no legs, still want to fight...
	wil: and to think I woke you up for this abuse!!  (I surely don't deserve the top of the ladder, someone needs to knock me outta there!)

30) wil: Build G2 B3
	ts52: damn, meant to type y2, not g2. oh well...
	ts52: I can't remember the last ladder game I played. Maybe it's time to challenge you... :)

31) ts52: Build Y2 Grover
	wil: I'd say so!

32) wil: Build G2 Wil

33) ts52: Sacrifice Y2 Grover
Move G1 Grover Wil
Move G2 Grover Wil
Catastrophe Wil Green
	ts52: Thanks for the game!



27463)
Variants: "Hard time"
Started: 2015.4.21, Ended: 2015.5.18
Participants: Grosseteste (S), goulo (N)
Winner: goulo

1) goulo: Homeworld G1 R2 B3

2) Grosseteste: H Y3 B1 G3
	goulo: man, i've not played this game in a while! thanks for the invitation.

3) goulo: Build B1 Goulo

4) Grosseteste: B G1 Grosseteste

5) goulo: Build B1 Goulo

6) Grosseteste: B G1 Grosseteste

7) goulo: Trade B3 Y3 Goulo

8) Grosseteste: Discover G1 Grosseteste B2 Chuck

9) goulo: Discover B1 Goulo G3 Smeraldego

10) Grosseteste: B G2 Grosseteste

11) goulo: Build B2 Smeraldego

12) Grosseteste: Trade G2 Y2 Grosseteste

13) goulo: Build B2 Smeraldego

14) Grosseteste: T G3 B3 Grosseteste

15) goulo: Build B3 Goulo

	goulo: ludus interruptus. :/
	Grosseteste: Sorry, had a bit of life intervene.  I suspect this won't be out last meeting :)


27464)
Variants: "No undo, Hard time"
Started: 2015.4.21, Ended: 2015.4.28
Participants: Grissom (S), hellajoey (N)
Winner: hellajoey

1) hellajoey: Homeworld B2 Y1 G3
	Grissom: I was just thinking about you the other day. I would have challenged but i was busy with the release.

2) Grissom: Homeworld R3 B2 G3

3) hellajoey: Build G1 Hellajoey

4) Grissom: Build G1 Grissom

5) hellajoey: Discover G1 Hellajoey B3 Blu3

6) Grissom: Trade G1 Y1 Grissom

7) hellajoey: Build G1 Blu3

8) Grissom: Build Y1 Grissom

9) hellajoey: Build G1 Hellajoey

10) Grissom: Build G2 Grissom

11) hellajoey: Build G2 Hellajoey

12) Grissom: Discover Y1 Grissom B1 Lilblu

13) hellajoey: Discover G2 Hellajoey G3 Gre3n

14) Grissom: Sacrifice G3 Grissom
Build G2 Grissom
Build G3 Grissom
Build Y2 Grissom

15) hellajoey: Sacrifice G2 Gre3n
Build G2 Blu3
Build G3 Hellajoey

16) Grissom: Sacrifice G3 Grissom
Build Y2 Lilblu
Build Y2 Lilblu
Build Y3 Grissom

17) hellajoey: Discover G3 Hellajoey G3 Gre3n

18) Grissom: Sacrifice Y2 Lilblu
Move Y2 Lilblu Blu3
Move Y2 Blu3 Hellajoey

19) hellajoey: Trade G2 Y2 Blu3

20) Grissom: Sacrifice G2 Grissom
Build Y3 Hellajoey
Build Y3 Hellajoey
Catastrophe Hellajoey Yellow

21) hellajoey: Discover G1 Blu3 Y1 Yel1ow

22) Grissom: Discover Y2 Grissom B1 Blop

23) hellajoey: Build G2 Blu3

24) Grissom: Trade Y1 B1 Lilblu

25) hellajoey: Trade G3 R3 Hellajoey

26) Grissom: Trade Y3 G3 Grissom

27) hellajoey: Move G1 Yel1ow Grissom

28) Grissom: Move G2 Grissom Lilblu
	hellajoey: Hey, Larry. I know you've got a busy schedule and so do I but let me know if you'd like to get together for a live game sometime. I think it would be pretty fun.

29) hellajoey: Sacrifice G2 Blu3
Build G2 Grissom
Build G2 Grissom
Catastrophe Grissom Green
	Grissom: Absolutely! I have a good amount of time between now and the end of May.
	hellajoey: Cool. If I remember correctly you have children and you live in Gresham. I live in SE. So maybe a happy hour thing near me on your way home would work well? Seems like you could stop by on your way home sometime? If that's not as good a weekend afternoon also works.
	hellajoey: I should warn you a full game could take us a couple hours.
	hellajoey: Something I've been thinking of trying but haven't is playing with a chess clock. We could try that for limiting game time.

30) Grissom: Sacrifice Y2 Blop
Move G2 Lilblu Gre3n
Move B1 Lilblu Hellajoey
	Grissom: I really wanted the undo option after that last move.
	Grissom: My family is out of town until the end of may so pretty much any time is good. Chess timer sounds interesting.

31) hellajoey: Sacrifice R3 Hellajoey
Attack G2 Gre3n
Attack B1 Hellajoey
Pass

32) Grissom: Trade Y1 G1 Grissom

33) hellajoey: Sacrifice Y2 Blu3
Discover G3 Gre3n R1 C1ose
Move G3 C1ose Grissom

34) Grissom: Build G2 Grissom

35) hellajoey: Build G2 Grissom
Catastrophe Grissom Green



27456)
Started: 2015.4.26, Ended: 2015.5.6
Participants: ts52 (S), rockabilly (N)
Winner: ts52

1) rockabilly: Homeworld G3 Y1 B3

2) ts52: Homeworld B1 Y2 G3

3) rockabilly: Build B1 Rockabilly
	ts52: Have a good game.

4) ts52: Build G1 Ts52
	rockabilly: Thanks, you too.

5) rockabilly: Build B1 Rockabilly

6) ts52: Build G1 Ts52

7) rockabilly: Discover B1 Rockabilly G2 Vincent

8) ts52: Discover G1 Ts52 B3 Gonzo

9) rockabilly: Build B2 Rockabilly

10) ts52: Build G1 Gonzo

11) rockabilly: Build B2 Vincent

12) ts52: Build G2 Ts52

13) rockabilly: Trade B2 Y2 Vincent

14) ts52: Discover G2 Ts52 B3 Grover

15) rockabilly: Discover B1 Vincent G3 Buddy

16) ts52: Build G2 Grover

17) rockabilly: Sacrifice B2 Rockabilly
Trade B1 Y1 Rockabilly
Trade B1 Y1 Buddy

18) ts52: Trade G2 Y2 Grover

19) rockabilly: Build Y3 Rockabilly

20) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build Y3 Grover

21) rockabilly: Build Y3 Buddy

22) ts52: Trade G2 R2 Grover

23) rockabilly: Trade Y3 R3 Rockabilly

24) ts52: Discover G1 Ts52 Y3 Bigbird

25) rockabilly: Sacrifice Y2 Vincent
Discover R3 Rockabilly Y2 Tmp
Move R3 Tmp Gonzo

26) ts52: Sacrifice Y2 Grover
Move G1 Gonzo Ts52
Discover G1 Gonzo Y2 Zoe



27486)
Variants: "Hard time"
Started: 2015.4.27, Ended: 2015.5.23
Participants: SilentTitan (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld B3 R1 G3

3) ts52: Build G1 Ts52

4) SilentTitan: Build G1 Silenttitan

5) ts52: Trade G1 Y1 Ts52

6) SilentTitan: Trade G3 Y3 Silenttitan

7) ts52: Build G1 Ts52

8) SilentTitan: Build G1 Silenttitan

9) ts52: Discover G1 Ts52 B3 Gonzo

10) SilentTitan: Discover G1 Silenttitan Y2 Sol

11) ts52: Build G2 Ts52

12) SilentTitan: Build G2 Silenttitan

13) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Gonzo

14) SilentTitan: Build G3 Sol

15) ts52: Discover G2 Ts52 Y3 Bigbird

16) SilentTitan: Trade G2 R2 Silenttitan

17) ts52: Trade G1 R1 Gonzo

18) SilentTitan: Build Y1 Silenttitan

19) ts52: Move Y1 Ts52 Gonzo

20) SilentTitan: Move G3 Sol Bigbird

21) ts52: Sacrifice G3 Ts52
Build G1 Bigbird
Build G2 Bigbird
Build G3 Ts52
Catastrophe Bigbird Green

	SilentTitan: Thanks for the game


27489)
Started: 2015.4.27, Ended: 2015.4.29
Participants: ts52 (S), wil (N)
Winner: ts52

1) wil: Homeworld Y2 R1 G3 *

2) ts52: Homeworld Y2 B3 G3
	wil: I am trying unconventional....

3) wil: Build G1 Wil
	ts52: _Very_ unconventional. Interesting.
	wil: I saw you started the ladder again....with a familiar opponent... 

4) ts52: Build G1 Ts52

5) wil: Discover G1 Wil B3 B3
	ts52: Yeah, I tried to challenge you, but couldn't. Guessing either you were in a game already, or I wasn't high enough up.
	wil: Somebody opened with it against me...  in a live game.  I played it with mixed results...  

6) ts52: Discover G1 Ts52 B1 Gonzo
	wil: Yeah, you can only go five up at a time... takes a long time to crawl thru the dead wood up that ladder..

7) wil: Build G1 B3
	ts52: I really need to get more people playing so I can play more live games. :(
	wil: I'd like to see Silent, Two, Tee, Broc, Zoltar, DL all active... we'd have some go arounds on that ladder!

8) ts52: Build G2 Gonzo
	wil: great job screwin up my whole plan!

9) wil: Build G2 Wil
	ts52: There was a plan? ;)

10) ts52: Trade G2 Y2 Gonzo
	wil: Well there was you spoiler..  you had two choices and you took the unexpected one...

11) wil: Trade G1 R1 B3

12) ts52: Build Y1 Gonzo

13) wil: Build R1 B3

14) ts52: Trade Y2 R2 Gonzo
	wil: so... so far while this opening set has been frowned upon...no major ill effects, eh?

15) wil: Build R2 B3
	ts52: Hasn't hurt you yet, true.

16) ts52: Move R2 Gonzo B3
Catastrophe B3 Red
	wil: Yet... he says...   dangles carrot.

17) wil: Discover G2 Wil B3 Bee3
	ts52: ok, I'll take that bait.

18) ts52: Build Y1 Gonzo
	wil: it was tempting wasn't it... hopefully it was crisp and tastee!

19) wil: Build G1 Wil

20) ts52: Build G2 Gonzo

21) wil: Sacrifice G3 Wil
Build G2 B3
Build G3 Bee3
Build G3 Wil

22) ts52: Sacrifice G2 Gonzo
Build G2 Ts52
Build Y1 Gonzo
	ts52: Why is it I always forget that trick. :( Well played.

23) wil: Trade G2 Y2 B3

24) ts52: Discover Y1 Gonzo G2 Kermit

25) wil: Sacrifice Y2 B3
Move G1 B3 Gonzo
Move G1 Gonzo Ts52

26) ts52: Trade G2 R2 Ts52

27) wil: Sacrifice G2 Bee3
Build G2 Ts52
Build G2 Ts52
Catastrophe Ts52 G

28) ts52: Build Y2 Kermit
	ts52: Wow, very nice play. 

29) wil: Build G1 Bee3

30) ts52: Build Y3 Gonzo
	wil: it wasn't completely thought out...

31) wil: Trade G3 Y3 Bee3

32) ts52: Build Y3 Kermit

33) wil: Move Y3 Bee3 Gonzo
Catastrophe Gonzo Y

34) ts52: Build G2 Gonzo
	wil: should be thinking...but am enjoying just shooting from the hip...

35) wil: Build G2 Bee3
	wil: unfortunately shooting from the hip hits me in the foot...  I 'was' doing well...

36) ts52: Build G3 Gonzo

37) wil: Trade G1 R1 Bee3
	ts52: Time will tell.

38) ts52: Sacrifice Y2 Kermit
Discover G3 Gonzo Y3 Bigbird
Move G1 Gonzo Bigbird
	wil: my main problem is I play here like a play live...not taking the time to evaluate enough...

39) wil: Build R1 Bee3

40) ts52: Sacrifice Y3 Kermit
Move G1 Bigbird Wil
Move G3 Bigbird Wil
Pass
Catastrophe Wil Green
	ts52: Yeah, I almost screwed that up, but I think that start probably cost you. Thanks for the game!
	wil: I'll try it again...
	wil: I think my quick play lost me the game...not the opening...I am not ready to concede that yet...  I'll be testing it against Andy within the month...he'll flip out.
	ts52: Good luck!



27492)
Variants: "No undo, Hard time"
Started: 2015.4.28, Ended: 2015.5.19
Participants: Grissom (S), hellajoey (N)
Winner: Grissom

1) hellajoey: Homeworld B1 Y2 G3

2) Grissom: Homeworld B3 R2 G3

3) hellajoey: Build G1 Hellajoey

4) Grissom: Build G1 Grissom

5) hellajoey: Discover G1 Hellajoey B3 Blu3

6) Grissom: Trade G1 Y1 Grissom

7) hellajoey: Build G1 Hellajoey

8) Grissom: Build Y1 Grissom

9) hellajoey: Trade G1 Y1 Hellajoey

10) Grissom: Discover Y1 Grissom B1 B1ue

11) hellajoey: Build Y2 Hellajoey

12) Grissom: Build G1 Grissom

13) hellajoey: Build G1 Hellajoey

14) Grissom: Sacrifice G3 Grissom
Build Y2 B1ue
Build Y3 Grissom
Build Y3 Grissom

15) hellajoey: Move Y1 Hellajoey Blu3

16) Grissom: Trade Y3 G3 Grissom

17) hellajoey: Build Y3 Blu3

18) Grissom: Discover Y2 B1ue B3 Blomb

	hellajoey: Crap. I'm so sorry. Was just remembering today that I need to take a turn. Didn't realize I was about to time out though :) I still want to play. I promise I won't screw the next one up!


27500)
Started: 2015.5.1, Ended: 2015.5.6
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) wil: Homeworld Y3 R1 G3 *
	ts52: I know, so boring.... have a good game!

3) ts52: Build G1 Ts52
	wil: never boring this game..
never know where it will go...
safe openings... I'm testin troubled waters

4) wil: Build G1 Wil

5) ts52: Trade G1 B1 Ts52

6) wil: Discover G1 Wil B2 B2

7) ts52: Discover B1 Ts52 G3 Kermit

8) wil: Build G1 B2

9) ts52: Build B1 Kermit

10) wil: Build G1 Wil

11) ts52: Build G2 Ts52

12) wil: Build G2 B2

13) ts52: Build B2 Kermit

14) wil: Trade G1 Y1 B2

15) ts52: Trade B2 Y2 Kermit

16) wil: Trade G2 R2 B2

17) ts52: Trade G2 R2 Ts52

18) wil: Discover G1 B2 B3 B3

19) ts52: Move R2 Ts52 B3

20) wil: B G1 B3

21) ts52: Build G2 Ts52

22) wil: Build G2 B3

23) ts52: Attack G2 B3

24) wil: Sacrifice G3 Wil
Build G2 B3
Build Y1 B2
Build G3 Wil
Catastrophe B3 G

25) ts52: Move G2 Ts52 B3

26) wil: Trade R2 B2 B2

27) ts52: Sacrifice Y2 Kermit
Move B1 Kermit B2
Move B1 Kermit B2
Catastrophe B2 Blue

28) wil: Discover G1 Wil B2 B2

29) ts52: Build G1 B3
	wil: this opening is not easy...obviously a couple steps behind...which means buckets in this game...

30) wil: Build G1 Wil
	ts52: definitely a tough opening, for sure

31) ts52: Trade G1 Y1 B3

32) wil: Build G1 B2

33) ts52: Move R2 B3 B2
	wil: it was a bad plan, poorly executed..

34) wil: Build G2 Wil

35) ts52: Attack G1 B2

36) wil: Discover G1 Wil B2 Bee2

37) ts52: Trade G1 Y1 B2

38) wil: Build G1 B2

39) ts52: Attack G1 B2

40) wil: Sacrifice G3 Wil
Build G2 Bee2
Build G3 Wil
Build G3 Wil

41) ts52: Move G1 B2 Wil
Catastrophe Wil Green

	ts52: Thanks for the game. But I feel like my stats are getting falsely inflated.
	wil: lol...  blind he was...  hint don't look at the computer when you come back from a cinco de mayo partay...
	ts52: :D


27437)
Variants: "Hard time"
Started: 2015.5.1, Ended: 2015.5.9
Participants: wil (S), SilentTitan (N)
Winner: wil

1) SilentTitan: Homeworld R1 B2 G3

2) wil: Homeworld R3 Y2 G3 *

3) SilentTitan: Build G1 Silenttitan
	SilentTitan: No blue harsh way to go
	SilentTitan: No blue harsh way to go

4) wil: Build G1 Wil
	wil: experimentation

5) SilentTitan: Trade G1 Y1 Silenttitan

6) wil: Discover G1 Wil B1 B1



27416)
Variants: "Unrated"
Started: 2015.5.5, Ended: 2015.5.12
Participants: wil (S), mcowper (N)
Winner: wil

1) mcowper: Homeworld G3 B2 Y3

2) wil: Homeworld Y3 B1 G3
	wil: Welcome and thank you for the game!  Good luck!

3) mcowper: Build Y1 Mcowper

4) wil: Build G1 Wil
	wil: new to homeworlds?  feel free to ask questions...

5) mcowper: Trade Y1 R1 Mcowper

6) wil: Trade G1 B1 Wil
	mcowper: Thanks. I'm not new to homeworlds, but this is my first online homeworlds games, so I'm new to this interface.

7) mcowper: Build Y1 Mcowper
	wil: ah...the interface sucks...the new systems layout as haphazardly as the ships in the star systems....but...it allows me to play more games with more people...so we put up with it!   

8) wil: Build B1 Wil

9) mcowper: Build Y1 Mcowper

10) wil: Discover B1 Wil G2 G2

11) mcowper: Trade Y1 G1 Mcowper

12) wil: Sacrifice G3 Wil
Build B2 Wil
Build B2 G2
Build B3 G2

13) mcowper: Discover Y1 Mcowper G1 Omega

14) wil: Trade B2 G2 Wil

15) mcowper: Build Y1 Omega

16) wil: Trade B3 Y3 G2

17) mcowper: Build Y1 Mcowper

18) wil: Build Y2 G2

19) mcowper: Discover Y1 Mcowper G1 Psi

20) wil: Build B2 G2

21) mcowper: Build Y2 Mcowper

22) wil: Discover B2 G2 R1 R1

23) mcowper: Sacrifice Y2 Mcowper
Move Y1 Psi G2
Move Y1 Omega G2
Catastrophe G2 Y

24) wil: Build B3 G2
	wil: I left the bait...wondering...

25) mcowper: Build Y1 Omega

26) wil: Sacrifice G2 Wil
Build B3 R1
Build B3 Wil

27) mcowper: Build Y1 Mcowper

28) wil: Sacrifice B3 G2
Trade B2 R2 G2
Trade B3 Y3 R1
Trade B3 G3 Wil

29) mcowper: Trade Y3 B3 Mcowper
	wil: I've got a queen building factory in place...

30) wil: Sacrifice G3 Wil
Build B2 R1
Build B3 G2
Build B3 Wil

31) mcowper: Build Y2 Mcowper
	wil: captains log... trade ships are amassed at strike location, overpopulation will destroy new large trade ships as well as half of home world...

32) wil: Sacrifice Y3 R1
Move B3 G2 R1
Move B2 R1 Mcowper
Move B2 R1 Mcowper
Catastrophe Mcowper B

33) mcowper: Discover G1 Mcowper B2 Psi

34) wil: Build B2 G2

35) mcowper: Build Y2 Mcowper

36) wil: Trade B3 G3 Wil

37) mcowper: Move Y2 Mcowper Psi

38) wil: Sacrifice G3 Wil
Build B2 R1
Build B3 G2
Build B3 Wil

39) mcowper: Build Y2 Psi

40) wil: Trade B3 Y3 R1

41) mcowper: Build Y3 Omega

42) wil: Sacrifice Y3 R1
Move B3 G2 Mcowper
Move B2 R1 Psi
Pass

43) mcowper: Build Y3 Mcowper

44) wil: Sacrifice R2 G2
Attack Y3 Mcowper
Attack R1 Mcowper

45) mcowper: Trade G1 R1 Psi

46) wil: Attack Y2 Mcowper

47) mcowper: Sacrifice R1 Psi
Attack R1 Mcowper
	wil: it is all but over....thanx for the game....ALWAYS willing to play!

48) wil: Trade Y3 R3 Mcowper

49) mcowper: Build Y3 Mcowper

50) wil: Sacrifice R3 Mcowper
Attack Y3 Mcowper
Attack Y1 Mcowper
Attack R1 Mcowper
	mcowper: Thanks for the game. I'm sure that we will play again.
	wil: I look forward to it... I can't get enough of this game...  



27520)
Started: 2015.5.8, Ended: 2015.5.13
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 R1 G3 *

2) ts52: Homeworld Y3 B1 G3
	wil: Ok, the last run at yr homeworlds... 

3) wil: Build G1 Wil
	ts52: :) Have a good time.

4) ts52: Build G1 Ts52
	wil: I'm a gonna take my time...or try to... I got that game in... and re-insured my medal..
	ts52: Nice! Not sure when I'm going to get to collect mine.

5) wil: Discover G1 Wil B3 B3

6) ts52: Discover G1 Ts52 B2 Gonzo

7) wil: Build G1 B3

8) ts52: Build G2 Ts52

9) wil: Trade G1 R1 B3

10) ts52: Trade G2 R2 Ts52

11) wil: Build R1 B3

12) ts52: Build R2 Ts52

13) wil: Trade R1 Y1 B3
	wil: I am getting further behind at every turn

14) ts52: Move R2 Ts52 Gonzo

15) wil: Discover R1 B3 G2 G2

16) ts52: Build G1 Ts52

17) wil: Build G2 B3

18) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Gonzo

19) wil: Trade G1 B1 B3

20) ts52: Move R2 Ts52 G2

21) wil: Build R1 G2

22) ts52: Trade G1 Y1 Gonzo

23) wil: Build G1 Wil

24) ts52: Sacrifice R2 Gonzo
Attack R1 G2
Attack R1 G2

25) wil: Build G1 B3

26) ts52: Sacrifice Y1 Gonzo
Move R2 G2 B3

27) wil: Discover G2 B3 Y2 Y2

28) ts52: Sacrifice G2 Ts52
Build G2 Gonzo
Build R2 B3

29) wil: Sacrifice Y1 B3
Move B1 B3 Y2

30) ts52: Trade R2 Y2 B3

31) wil: Sacrifice G3 Wil
Build B1 Y2
Build B2 Y2
Build G3 Wil

32) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build R2 B3
Build R2 B3

33) wil: Discover B2 Y2 B3 Bee3

34) ts52: Move R2 B3 Wil

35) wil: Sacrifice G3 Wil
Build B2 Bee3
Build B3 Y2
Build G3 Wil

36) ts52: Sacrifice Y2 B3
Move R2 B3 Wil
Move R2 B3 Wil
Catastrophe Wil Red

37) wil: Trade B3 Y3 Y2

38) ts52: Move G3 Ts52 Wil

39) wil: Sacrifice Y3 Y2
Move G1 B3 Wil
Move B2 Bee3 Wil
Move G2 Y2 Ts52
Catastrophe Wil G

40) ts52: Trade G2 Y2 Gonzo
	wil: I thought that was too costly a trigger to pull...

41) wil: Sacrifice G2 Ts52
Build B3 Wil
Build B3 Wil
	ts52: I really hope I've thought this through correctly.
	wil: lol, I knew I should have got an R3....I knew there was a catch I couldn't see..

42) ts52: Move G3 Gonzo Ts52

43) wil: Sacrifice B3 Wil
Trade B2 R2 Bee3
Trade B3 G3 Wil
Trade B1 R1 Y2
	wil: forgot to initiate the collapse...  
	ts52: Damn. I knew I hadn't thought it through enough. Now to see if I can come back.

44) ts52: Move G1 Ts52 Gonzo
	wil: I think you are still ahead...

45) wil: Sacrifice G3 Wil
Build B1 Y2
Build B2 Y2
Build B3 Wil
	wil: well, I've got blue in my hw now!!

46) ts52: Build G1 Ts52
	ts52: Yes, yes you do...

47) wil: Trade B3 G3 Wil
	wil: wotta crazy game!

48) ts52: Build Y1 Gonzo
	ts52: Absolutely crazy.

49) wil: Sacrifice G3 Wil
Build B3 Wil
Build B3 Wil
Build R2 Y2

50) ts52: Discover Y2 Gonzo G1 Kermit

51) wil: Trade B3 Y3 Wil
	wil: I believe it is now mine to lose...

52) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G2 Gonzo
Build G3 Ts52
	wil: and I am quite capable of just that!!
	ts52: I think you may be right.

53) wil: Trade B3 G3 Wil

54) ts52: Trade G3 R3 Ts52
	wil: are syou still a step ahead?  I knew I should have moved a piece to stop the y3 growth...to greedy
	wil: are you still a step ahead?  I knew I should have moved a piece to stop the y3 growth...to greedy

55) wil: Build B3 Wil
	wil: still... I think it is clear that the yr opening is not the disaster it was thought to be..
	wil: it appears it made you pause.... I am taking that as a good sign.... however you probably just got distracted...and your next move will end the game..
	ts52: I was offline this morning. Have to get my head back into it. :)

56) ts52: Build Y1 Kermit

57) wil: Sacrifice Y3 Wil
Move G3 Wil Ts52
Move B3 Wil Ts52
Discover B2 Y2 Y3 Y3

58) ts52: Move Y2 Kermit Wil

59) wil: Sacrifice R2 Y2
Attack R3 Ts52
Attack Y2 Wil

60) ts52: Move Y1 Kermit Wil

61) wil: Sacrifice R3 Ts52
Attack G2 Ts52
Attack G1 Ts52
Attack Y1 Wil
	wil: he pulls the plug and hopes calculations are correct...
	wil: Good game...  whole lotta fun...despite the ending!

	wil: aarrghh...I slipped out by default...  I didn't see it...and evidently you didn't either..  s y2 m r3 into wil and y1 gonzo into your hw...
	wil: one move apart....either of us hiccup and it was game over....wow.

	ts52: Damn. Sorry I missed that too... very good game.


27530)
Started: 2015.5.12, Ended: 2015.5.21
Participants: mcowper (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y2 B3 G3

2) mcowper: Homeworld G3 R1 B3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) mcowper: Build B1 Mcowper

5) ts52: Trade G1 B1 Ts52

6) mcowper: Trade B1 Y1 Mcowper

7) ts52: Discover B1 Ts52 G1 Robin

8) mcowper: Build Y1 Mcowper

9) ts52: Build G1 Ts52

10) mcowper: Trade Y1 R1 Mcowper

11) ts52: Trade G1 R1 Ts52

12) mcowper: Build R2 Mcowper

13) ts52: Build R2 Ts52

14) mcowper: Trade R2 G2 Mcowper

15) ts52: Move R2 Ts52 Robin

16) mcowper: Build R2 Mcowper

17) ts52: Sacrifice G3 Ts52
Build R2 Robin
Build R3 Robin
Build R3 Ts52

18) mcowper: Trade R2 Y2 Mcowper

19) ts52: Trade R3 Y3 Robin

20) mcowper: Discover R1 Mcowper G2 Alpha

21) ts52: Move R2 Robin Alpha

22) mcowper: Discover Y1 Mcowper R2 Beta

23) ts52: Attack R1 Alpha

24) mcowper: Build Y1 Mcowper

25) ts52: Build R3 Robin

26) mcowper: Build B1 Mcowper

27) ts52: Build R3 Alpha

28) mcowper: Build G1 Mcowper

29) ts52: Trade R3 G3 Ts52

30) mcowper: Move G2 Mcowper Beta

31) ts52: Build R3 Ts52

32) mcowper: Discover Y2 Mcowper B2 Gamma

33) ts52: Trade R2 Y2 Robin

34) mcowper: Trade Y2 R2 Gamma

35) ts52: Move Y2 Robin Alpha

36) mcowper: Build Y1 Mcowper

37) ts52: Build G1 Ts52

38) mcowper: Move B1 Mcowper Beta

39) ts52: Move R3 Robin Gamma

40) mcowper: Sacrifice Y1 Mcowper
Move R2 Gamma Robin

41) ts52: Sacrifice R1 Ts52
Attack R2 Robin

42) mcowper: Trade Y1 R1 Beta

43) ts52: Move Y3 Robin Beta

44) mcowper: Sacrifice Y1 Mcowper
Move R1 Beta Mcowper

45) ts52: Sacrifice Y2 Alpha
Move R1 Alpha Mcowper
Move R2 Alpha Mcowper
Catastrophe Mcowper Red

46) mcowper: Sacrifice G2 Beta
Build B1 Beta
Build B2 Mcowper

47) ts52: Sacrifice Y3 Beta
Move R3 Gamma Mcowper
Move G1 Ts52 Robin
Move G1 Robin Mcowper

48) mcowper: Build G2 Mcowper

49) ts52: Sacrifice R3 Ts52
Attack B3 Mcowper
Attack B2 Mcowper
Attack G2 Mcowper
Catastrophe Mcowper Green
	ts52: Thanks for the game.
	mcowper: Thanks for playing. Perhaps we'll play again some time.
	ts52: I look forward to it.



27580)
Variants: "No undo, Hard time"
Started: 2015.5.22, Ended: 2015.6.7
Participants: Grissom (S), hellajoey (N)
Winner: hellajoey

1) hellajoey: Homeworld Y1 B2 G3

2) Grissom: Homeworld B2 R1 G3

3) hellajoey: Build G1 Hellajoey

4) Grissom: Build G1 Grissom

5) hellajoey: Discover G1 Hellajoey B3 Blu3

6) Grissom: Trade G1 Y1 Grissom

7) hellajoey: Build G1 Hellajoey

8) Grissom: Build Y1 Grissom

9) hellajoey: Discover G1 Hellajoey Y3 Y3llow

10) Grissom: Discover Y1 Grissom G3 Gr33n

11) hellajoey: Build G1 Hellajoey

12) Grissom: Build Y2 Grissom

13) hellajoey: Build G2 Y3llow

14) Grissom: Discover Y2 Grissom B3 Eulb

15) hellajoey: Sacrifice G3 Hellajoey
Build G2 Blu3
Build G2 Blu3
Build G3 Hellajoey

16) Grissom: Sacrifice G3 Grissom
Build Y2 Eulb
Build Y2 Gr33n
Build Y3 Grissom

17) hellajoey: Build G3 Y3llow

18) Grissom: Build Y3 Gr33n

19) hellajoey: Trade G1 R1 Hellajoey

20) Grissom: Trade Y1 G1 Grissom

21) hellajoey: Discover G2 Y3llow B1 B1ue

22) Grissom: Build Y1 Grissom

23) hellajoey: Sacrifice G2 Blu3
Build R1 Hellajoey
Build G2 Hellajoey

24) Grissom: Trade Y3 R3 Grissom

25) hellajoey: Discover R1 Hellajoey Y3 Olyeller

26) Grissom: Sacrifice Y2 Eulb
Move R3 Grissom Y3llow
Move Y3 Gr33n Grissom

27) hellajoey: Sacrifice R1 Hellajoey
Attack R3 Y3llow

28) Grissom: Build Y2 Gr33n

29) hellajoey: Sacrifice G3 Hellajoey
Build R1 Olyeller
Build R2 Y3llow
Build G3 Hellajoey

30) Grissom: Move Y1 Gr33n Hellajoey

31) hellajoey: Move G2 Hellajoey Gr33n

32) Grissom: Sacrifice Y2 Eulb
Move Y2 Gr33n Hellajoey
Move Y2 Gr33n Hellajoey
Catastrophe Hellajoey Yellow

33) hellajoey: Move R2 Y3llow Hellajoey

34) Grissom: Trade Y1 B1 Grissom

35) hellajoey: Trade R2 Y2 Hellajoey

36) Grissom: Build Y1 Grissom

37) hellajoey: Sacrifice G3 Y3llow
Build G3 Y3llow
Build Y1 Hellajoey
Build Y1 Hellajoey

38) Grissom: Discover Y1 Grissom B3 Eulb

39) hellajoey: Move Y2 Hellajoey Eulb

40) Grissom: Discover Y1 Eulb B1 Eu1b

41) hellajoey: Sacrifice G3 Y3llow
Build G3 Y3llow
Build R2 Y3llow
Build R2 Olyeller

42) Grissom: Build Y2 Grissom

43) hellajoey: Sacrifice G3 Y3llow
Build G3 Y3llow
Build Y2 Eulb
Build R2 Y3llow

44) Grissom: Discover Y2 Grissom R3 R3d

45) hellajoey: Sacrifice Y2 Eulb
Move R1 Olyeller Grissom
Move R1 Olyeller Grissom

46) Grissom: Build B2 Grissom

47) hellajoey: Sacrifice G3 Y3llow
Build G3 Y3llow
Build R3 Grissom
Build Y2 Eulb
Catastrophe Grissom Red

48) Grissom: Trade B1 R1 Grissom

49) hellajoey: Trade Y1 B1 Hellajoey

50) Grissom: Sacrifice Y2 R3d
Move R1 Grissom Y3llow
Discover B2 Grissom Y1 Ye11ow
Catastrophe Y3llow Red

51) hellajoey: Move G3 Y3llow Grissom

52) Grissom: Move B2 Ye11ow Hellajoey

53) hellajoey: Sacrifice R2 Olyeller
Attack Y3 Grissom
Attack G1 Grissom
	Grissom: Good game
	hellajoey: Thanks. Feels like I drug it out at the end. Wasn't trying to though.



27518)
Variants: "Unrated"
Started: 2015.5.22, Ended: 2015.7.1
Participants: wil (S), mcowper (N)
Winner: wil

1) mcowper: Homeworld R1 B2 G3

2) wil: Homeworld Y3 B1 G3

3) mcowper: Build G1 Mcowper
	wil: thx for the game...good luck

4) wil: Build G1 Wil

5) mcowper: Trade G1 Y1 Mcowper

6) wil: Trade G1 B1 Wil

7) mcowper: Build Y1 Mcowper

8) wil: Build B1 Wil

9) mcowper: Build G1 Mcowper

10) wil: Discover B1 Wil Y2 Y2

11) mcowper: Discover G1 Mcowper B3 Alef

12) wil: Build B2 Wil

13) mcowper: Build G1 Mcowper

14) wil: Discover B2 Wil Y2 Whytoo

15) mcowper: Build Y1 Mcowper

16) wil: Build B2 Wil

17) mcowper: Discover Y1 Mcowper G3 Bet

18) wil: Discover B2 Whytoo Y3 Y3

19) mcowper: Build Y2 Bet

20) wil: Trade B2 Y2 Y3

21) mcowper: Build Y3 Bet

22) wil: Discover B2 Wil G2 G2

23) mcowper: Discover Y3 Bet B2 Gimel

24) wil: Build B3 G2

25) mcowper: Trade Y3 B3 Gimel

26) wil: Discover B1 Y2 Y3 Why3

27) mcowper: Build Y2 Bet

28) wil: Trade B3 R3 G2

29) mcowper: Sacrifice Y2 Bet
Move Y1 Mcowper Y3
Move Y1 Mcowper Y3
Catastrophe Y3 Y

30) wil: Build B3 G2

31) mcowper: Move Y1 Bet Gimel

32) wil: Trade B3 Y3 G2

33) mcowper: Move B3 Gimel Bet

34) wil: Move R3 G2 Bet

35) mcowper: Sacrifice Y2 Bet
Discover B3 Bet G2 Dalet
Move G1 Alef Gimel

36) wil: Build B3 G2

37) mcowper: Build B3 Dalet

38) wil: Trade B3 R3 G2

39) mcowper: Sacrifice G3 Mcowper
Build G1 Gimel
Build G2 Gimel
Build G3 Mcowper

40) wil: Build B3 G2

41) mcowper: Trade G2 Y2 Gimel

42) wil: Trade B3 R3 G2

43) mcowper: Sacrifice Y2 Gimel
Move B3 Dalet Wil
Move B3 Dalet Wil
Catastrophe Wil B

44) wil: Move R3 G2 Wil

45) mcowper: Discover G1 Gimel Y1 Alef

46) wil: Build G2 Wil

47) mcowper: Trade G1 B1 Mcowper
	wil: b g2 wil

48) wil: Move Y3 G2 Bet
	wil: ya gotta type the directions in the right box

49) mcowper: Build Y1 Gimel

50) wil: Move R3 Bet Gimel

51) mcowper: Move Y1 Gimel Alef

52) wil: Attack Y1 Gimel

53) mcowper: Move Y1 Alef Bet

54) wil: Attack G1 Gimel

55) mcowper: Build Y2 Bet

56) wil: Sacrifice R3 G2
Attack Y2 Bet
Attack Y1 Bet
Pass

57) mcowper: Build G1 Alef

58) wil: Build Y2 Gimel
	wil: s g2 wil
b b3 why3
b b1 g2

59) mcowper: Move G1 Alef Wil

60) wil: Sacrifice G2 Wil
Build B1 G2
Build B3 Why3
	wil: you are teachin me Hebrew numbers..
	mcowper: I'm teaching myself too.

61) mcowper: Sacrifice B1 Mcowper
Trade G1 B1 Alef

62) wil: S Y3 Bet
Move B3 Why3 Mcowper
Move R3 Gimel Why3
Move R3 Why3 Mcowper

63) mcowper: Attack R3 Mcowper
	wil: cool


64) wil: Sacrifice R3 Wil
Attack G1 Wil
Attack R3 Mcowper
Attack G3 Mcowper
	wil: It looks like I have two choices...
S y3 bet m b3 why3 mcowper m r3 gimel why3 m r3 why3 mcowper   Or   s y3 bet m g3 wil mcowper m g1 gimel wil  m g1 wil mcowper.... both appear unstoppable?  If you'd like to change your move you may.
	mcowper: Thanks. Let's play it out this way. You are a better player than I and I will most likely lose, but I'll learn stuff along the way and improve. I think that I have improved from our previous game.

	wil: Have fun....  and challenge any time..


27586)
Variants: "Hard time"
Started: 2015.5.26, Ended: 2015.5.28
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) ts52: Homeworld Y1 B3 G3
	wil: here we go!  good luck
	ts52: Thanks! Have a good game!

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52

5) wil: Trade G1 Y1 Wil

6) ts52: Trade G1 B1 Ts52

7) wil: Build Y1 Wil

8) ts52: Build B1 Ts52
	wil: oopsie...

9) wil: Discover Y1 Wil B3 B3

10) ts52: Discover B1 Ts52 G2 Robin
	wil: s g3 wil
b y2 b3
b y2 b3
b y3 wil

11) wil: Sacrifice G3 Wil
Build Y2 B3
Build Y2 B3
Build Y3 Wil

12) ts52: Build B2 Robin
	ts52: That's a lot of yellow

13) wil: Discover Y2 B3 G2 G2

14) ts52: Build G1 Ts52

15) wil: Trade Y3 G3 Wil

16) ts52: Build B2 Ts52
	wil: that move surprised me...while i am seeing red, I am not seeing a need for concern right away...

17) wil: Sacrifice G3 Wil
Build Y3 Wil
Build Y3 B3
Build Y3 G2

18) ts52: Trade B2 R2 Ts52
	wil: now this is a lot of yellow!

19) wil: Trade Y3 G3 Wil
	ts52: Yes, yes it is.

20) ts52: Move R2 Ts52 G2
	wil: Now I want all the Queens!

21) wil: Discover Y2 G2 R3 R3

22) ts52: Build B2 Ts52

23) wil: Trade Y3 B3 B3

24) ts52: Discover B2 Ts52 G2 Oscar

25) wil: Sacrifice G3 Wil
Build Y3 Wil
Build Y3 B3
Build B2 B3
	wil: It is interesting ...there are factories and then there are queen factories....the regular factory creates extra ships...the queen factory creates extra large ships....through the monopoly race...

26) ts52: Build G1 Ts52
	ts52: Yeah, this seems to be quickly turning into a slaughter. Why did I think I could challenge you again?

27) wil: Sacrifice B3 B3
Trade Y3 B3 G2
Trade Y3 G3 Wil
Trade Y3 R3 B3
	wil: Because you've beaten me before with my silly mistakes!   But I capitalized on yours way back when I said "oopsie"... you let me corner the yellows... 

28) ts52: Discover G1 Ts52 R2 Elmo
	ts52: Yeah, that was definitely a mistake. Thought I could let you have the smalls, and still build up to trade a medium in time. Now I know just how wrong I was... :)

29) wil: Sacrifice G3 Wil
Build Y3 Wil
Build Y3 R3
Build Y3 B3
	wil: there were three Blue drones...and only two yellow ones...once I had that edge I knew I could keep you from queens...lessons learned from TTT and BC..

30) ts52: Sacrifice G3 Ts52
Build G1 Elmo
Build G3 Ts52
Build G3 Ts52
	wil: he leaves the bait...if you take it, it is two moves to mate...if you don't it'll be a little longer.
	wil: it is too funny that I wasted my time building a red...  but I can't hardly imagine winning without one!

31) wil: Sacrifice Y3 R3
Move B2 B3 G2
Move B2 G2 Ts52
Move B3 G2 Ts52
Catastrophe Ts52 B
	ts52: I'm assuming I bit. But I can't see it. So lets see what happens next...

32) ts52: Sacrifice B2 Robin
Trade G3 R3 Ts52
Trade G3 B3 Ts52
	wil: and now the end is clear  (in his best Frank Sinatra voice)
	ts52: Ah yes, figures I wasn't looking for that... :(

33) wil: Sacrifice Y3 Wil
Move Y3 B3 Ts52
Move Y2 B3 Ts52
Move Y2 R3 Ts52
Catastrophe Ts52 Y
	wil: the goal of cornering yellow is the doomsday machine...

	wil: thx for the game!  I look forward to the next one!!
	ts52: Good game! I'll try not to let you win so easily next time. ;)
	wil: by the looks of the end game you almost had me!!

it was that one hiccup early...I was pretty sure after that it was my game to lose...



27600)
Variants: "Hard time"
Started: 2015.5.28, Ended: 2015.6.2
Participants: ts52 (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) ts52: Homeworld Y1 B2 G3
	ts52: Have a good game!

3) dlwillson: B G1 Dlwillson

4) ts52: Build G1 Ts52

5) dlwillson: T G1 Y1 Dlwillson

6) ts52: Discover G1 Ts52 B3 Gonze

7) dlwillson: B Y2 Dlwillson
	dlwillson: You too!

8) ts52: Build G1 Ts52

9) dlwillson: D Y1 Dlwillson B2 Sky

10) ts52: Build G1 Gonze

11) dlwillson: B G2 Dlwillson

12) ts52: Build G2 Gonze

13) dlwillson: S G3 Dlwillson
B Y2 Sky
B Y2 Sky
B Y3 Dlwillson

14) ts52: Discover G1 Ts52 B3 Grover

15) dlwillson: D Y2 Dlwillson B2 Sea

16) ts52: Sacrifice G2 Gonze
Build G2 Ts52
Build G2 Grover

17) dlwillson: B G3 Dlwillson

18) ts52: Sacrifice G2 Grover
Build G2 Gonze
Build G3 Grover

19) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B Y3 Sea
B Y3 Sea

20) ts52: Trade G2 R2 Ts52

21) dlwillson: T Y3 R3 Sea

22) ts52: Trade G3 Y3 Grover

23) dlwillson: T Y3 R3 Dlwillson

24) ts52: Sacrifice G2 Gonze
Build G2 Ts52
Build Y3 Grover

25) dlwillson: S Y2 Sky
M Y1 Sky Grover
M Y2 Sea Grover
C Grover Y

26) ts52: Sacrifice G3 Ts52
Build G2 Gonze
Build G3 Ts52
Build G3 Grover

27) dlwillson: M R3 Sea Gonze

28) ts52: Trade G1 Y1 Grover

29) dlwillson: A G2 Gonze

30) ts52: Build Y2 Grover

31) dlwillson: T G2 Y2 Gonze

32) ts52: Sacrifice G3 Ts52
Build G1 Gonze
Build G2 Grover
Build G3 Ts52

33) dlwillson: S G3 Dlwillson
B Y3 Gonze
B Y3 Sea
B G3 Dlwillson

34) ts52: Trade G2 R2 Grover

35) dlwillson: A G1 Gonze

36) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build R1 Grover

37) dlwillson: A G1 Gonze

38) ts52: Sacrifice G2 Ts52
Build G2 Gonze
Build R1 Ts52
Catastrophe Gonze Green

39) dlwillson: Sacrifice Y2 Sky
Discover Y3 Sea R3 Mars
Move Y3 Sea Mars

40) ts52: Build Y2 Grover

41) dlwillson: T Y2 G2 Gonze
	dlwillson: Huh... Good struggle. I can't quite seem to pluck off your head.

42) ts52: Discover Y2 Grover G1 Robin

43) dlwillson: Sacrifice G3 Dlwillson
B Y2 Gonze
B R1 Gonze
B R2 Dlwillson
	ts52: :) I screwed up in the beginning letting you monopolize yellow. Just glad I've been able to make you work for it.

44) ts52: Sacrifice Y2 Grover
Discover R2 Grover Y2 Bigbird
Move R2 Ts52 Grover

45) dlwillson: Sacrifice Y3 Mars
Move Y3 Mars Ts52
Move Y3 Gonze Ts52
Move R3 Gonze Ts52

46) ts52: Sacrifice G3 Grover
Build G1 Ts52
Build R3 Ts52
Build Y3 Grover

47) dlwillson: Sacrifice R2 Dlwillson
Attack R3 Ts52
Attack G3 Ts52

48) ts52: Sacrifice Y2 Robin
Move R1 Grover Ts52
Move Y1 Grover Ts52
Catastrophe Ts52 Red
Catastrophe Ts52 Yellow

49) dlwillson: Sacrifice R1 Gonze
Attack G1 Ts52
	ts52: Thanks for the game!
	dlwillson: Wow! That was a lot of fireworks!
	dlwillson: Good game!



27547)
Variants: "Unrated, Hard time"
Started: 2015.5.28, Ended: 2015.5.29
Participants: wil (S), jrandom (N)
Winner: wil

1) jrandom: Homeworld G2 B3 Y3

2) wil: Homeworld Y3 B1 G3

3) jrandom: Build Y1 Jrandom
	wil: thanx for the game!

4) wil: Build G1 Wil
	jrandom: My first game... there will be blood.  Probably mine.
	wil: Do you want any explanation or hints or just play and learn from losing (this is a great game and I lost dozens...watching different scenarios attack me until I saw them coming)
	wil: Do you want any explanation or hints or just play and learn from losing (this is a great game and I lost dozens...watching different scenarios attack me until I saw them coming)

5) jrandom: Discover Y1 Jrandom Y1 Fungus

6) wil: Discover G1 Wil B2 B2
	jrandom: I think I'll learn by losing (for now), but thank you for the offer.  Seems like I have to do things the hard way...

7) jrandom: Build Y1 Jrandom

8) wil: Build G1 Wil

9) jrandom: Discover Y3 Jrandom B1 Horsehair
	wil: You got it good...I'm making plenty of mistakes!

10) wil: Build G1 Wil

11) jrandom: Trade Y3 G3 Horsehair
	wil: scary to take your big ship out of you homeworld..

12) wil: Trade G1 R1 Wil
	jrandom: I had a brilliant reason for doing it, but I don't remember what it is now.

13) jrandom: Build Y2 Jrandom
	wil: lol...only a brilliant reason would do!

14) wil: Build G1 Wil

15) jrandom: Trade Y2 R2 Jrandom

16) wil: Build G2 B2

17) jrandom: Build G2 Horsehair

18) wil: Trade G2 Y2 B2

19) jrandom: Build Y2 Jrandom

20) wil: Build Y2 B2

21) jrandom: Move Y2 Jrandom Horsehair

22) wil: Discover Y2 B2 G3 G3

23) jrandom: Move G3 Horsehair Jrandom

24) wil: Sacrifice G3 Wil
Build G2 B2
Build Y3 B2
Build Y3 G3

25) jrandom: Build G3 Jrandom

26) wil: Sacrifice Y3 B2
Move G1 B2 Horsehair
Move G1 Horsehair Jrandom
Move Y3 G3 Horsehair
Catastrophe Jrandom G

27) jrandom: Build Y3 Horsehair
	wil: catastrophes....ya gotta watch out for them ...  I left the g3 because I knew you couldn't safely build it..

28) wil: Move Y3 Horsehair Jrandom
	jrandom: I should probably stop thinking of my spaceships as "spaceships" -- then I wouldn't be so shy about sacrificing them...

29) jrandom: Move Y3 Horsehair B2
	wil: Nah...that is a good thought...that is why when we capture them we don't lose a ship that capable of interstellar travel and thousands of crew when we attack...however when we cause a castrophe, we are looking further at endgame...  that being said...y3s are powerful tools (as are all 3s)

30) wil: Sacrifice R1 Wil
Attack R2 Jrandom

31) jrandom: Move G2 Horsehair Jrandom

32) wil: Sacrifice R2 Jrandom
Attack G2 Jrandom
Attack Y1 Jrandom
	jrandom: I'm guessing you're going to send in a Yellow ship to my homeworld and catastrophize.

	jrandom: Now you can explode me some other way...
	wil: nah...only catastrophe when I need to...much prefer to enslave your people and take over the ships you offer me!  Feel free to challenge as often as you want...  I'll be glad to show you various attacks and grows...


27582)
Variants: "Unrated"
Started: 2015.5.29, Ended: 2015.6.1
Participants: wil (S), jrandom (N)
Winner: wil

1) jrandom: Homeworld B3 G2 Y3

2) wil: Homeworld Y3 B1 G3
	jrandom: Well, you've got me addicted now.
	wil: Cool.  So you've started with Fortress...you get out of your homeworld with one pip pawns...they disappear early so a long game makes it harder for the other side to get in... Folks believe the best start is banker, because my moving out greens you can sacrifice the investment later and build a queen star...  I am taking goldilocks...because it isn't right for me to take that start...  

3) jrandom: Build Y1 Jrandom

4) wil: Build G1 Wil

5) jrandom: Trade Y1 G1 Jrandom

6) wil: Trade G1 B1 Wil

7) jrandom: Build Y1 Jrandom

8) wil: Build B1 Wil

9) jrandom: Trade Y3 G3 Jrandom

10) wil: Discover B1 Wil G2 G2
	wil: a.  I like the speed of your play...makes me gotta watch so I don't delay you (I've had some games take months as people are so slow to respond)  b.  I am making a 'b' line to corner a commodity  (it is always what I attempt...if I can't do it I simply switch to building and trying to be the first in larger pyramids in any situation.  c.  is this your first pyramid game?  do you own and physical Looney Pyramids?

11) jrandom: Discover G1 Jrandom G1 Connery
	wil: one of the problems with having a green in your homestar is the fact that you cannot create a factory at home...always at risk of catastrophe
	jrandom: I've actually ordered a pile of Looney Pyramids.  This is my second game of Homeworlds.

12) wil: Build B2 Wil

13) jrandom: Build Y1 Jrandom
	wil: lol a pile of pyramids...

14) wil: Build G1 Wil
	jrandom: Six stashes!

15) jrandom: Move Y1 Jrandom Connery

16) wil: Discover B2 Wil Y2 Y2
	wil: This game is one of the best... there are other good ones, but for this former chess player this is my favorite by far.  on this site I am enjoying megavolcano, martian chess and blam!

17) jrandom: Build Y1 Jrandom

18) wil: Sacrifice G3 Wil
Build B2 G2
Build B2 Y2
Build B3 Y2

19) jrandom: Discover Y1 Connery R2 Moore

20) wil: Build B3 Wil

21) jrandom: Trade Y1 R1 Jrandom

22) wil: Sacrifice B2 Y2
Trade B3 G3 Y2
Trade B3 G3 Wil

23) jrandom: Build G2 Jrandom

24) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 Y2
Build B3 G2

25) jrandom: Discover G2 Jrandom Y1 Lazenby

26) wil: Trade B3 Y3 G2

27) jrandom: Build Y2 Jrandom

28) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 G2
Build Y3 G2

29) jrandom: Discover Y1 Moore R1 Dalton

30) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 G2
Build B3 Y2

31) jrandom: Pass
	wil: the power of the factory cannot be overlooked... once the Gs are out...a G3 and any other G is a factory...sacrifice the G3 rebuild it right back where it was, and then build two more ships wherever you can..
	wil: risky in that I've got 3 Ys and two of them Queens...but they are two star systems away..so you have to sack a y2 to hop a y1 one in to catastrophe...leaving you with only one y...and I have the ability (thru B monopoly and factory) to grow faster.  

32) wil: Sacrifice B2 Y2
Trade B3 R3 Y2
Trade B3 R3 G2
	jrandom: What does "You did not provide a recognized colour name" mean?
	jrandom: sacrifice y2 jrandom
move y1 Moore Connery
move y1 Connery g2
catastrophe

33) jrandom: Trade G3 R3 Jrandom
	wil: s y2 jrandom 
m y1 Moore Connery 
m y1 Connery g2 
c g2 y   (y being the recongized color to catastrophe)
	wil: I'll wait to see if you wanna back up and change your move...
	wil: I'll go mix another martini whilst I wait..
	jrandom: I just did a different move.

34) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 Y2
Build B2 Y2

35) jrandom: Move Y1 Dalton G2
Catastrophe G2 Y

36) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 G2
Build B3 Y2

37) jrandom: Discover G2 Lazenby R2 Horton

38) wil: Sacrifice B2 Y2
Trade B3 Y3 G2
Trade B3 Y3 Y2

39) jrandom: Sacrifice Y2 Jrandom
Move R3 Jrandom Connery
Move R3 Connery Horton
	wil: lol great timing on that...next two moves were:
s y3 g2
m g3 y2 lazenby
m g3 y2 dalton
m r3 g2 connery

s y3 g2
m g3 lazenby jrandom
m g3 dalton jrandom
m r3 connery jrandom
	wil: that would be the you take one I take three move after that...  but now you put me back to work!

40) wil: Sacrifice Y3 Y2
Move G3 Y2 Connery
Move R3 Y2 Connery
Move G3 Connery Jrandom

41) jrandom: Sacrifice Y1 Jrandom
Move R3 Horton Wil

42) wil: Sacrifice R3 G2
Attack R1 Jrandom
Attack G1 Connery
Attack R3 Wil

	jrandom: Here, I'll make things even easier for you.
	wil: a visitor....  It took me a little over ten games to get the handle of this...prolly five times that to understand the intracies... to me it is chess on steroids in space
	wil: we thank you and your people for donating the fine ships, pilots and technicians... you will all be treated well and given a path to citizenship...


27612)
Variants: "Unrated"
Started: 2015.6.1, Ended: 2015.6.3
Participants: jrandom (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 R1 G3 *
	wil: thank you for the game!!  What do you think of it so far...frustration level?

2) jrandom: Homeworld B1 G3 Y3
	jrandom: I think the worst part is when I suddenly discover that my clever move isn't allowed.  E.g. not being able to create ships with a colour that you don't already control.
	wil: this is an unconventional opening...opening without a blue in the past was considered ludicrous...I am busy proving that otherwise
	jrandom: Which means that you need to use blue to trade.  Except you can't trade unless there's a ship of the appropriate size.
	wil: yes you must have the resources to build new ships...the star can't provide...your team must have another ship, a pattern to build it..  that and 'how exactly do I attack?" are common hurdles
	wil: exactly right again...hence the reason if someone else gets that color...you better as well

3) wil: Build G1 Wil
	jrandom: Since we're both doing Goldilocks, this game will probably be quick.
	wil: oh my...short universe!

4) jrandom: Build Y1 Jrandom

5) wil: Discover G1 Wil B2 B2

6) jrandom: Trade Y1 R1 Jrandom

7) wil: Build G1 Wil

8) jrandom: Build Y1 Jrandom

9) wil: Build G1 B2

10) jrandom: Move R1 Jrandom B2

11) wil: Sacrifice G3 Wil
Build G2 Wil
Build G2 B2
Pass

12) jrandom: Trade Y1 B1 Jrandom
	wil: cool...you've got me on the ropes
	jrandom: Do I?  That seems unlikely.

13) wil: Trade G2 R2 B2

14) jrandom: Trade B1 R1 Jrandom

15) wil: Attack R1 B2

16) jrandom: Build R2 Jrandom

17) wil: Build G2 B2

18) jrandom: Build Y1 Jrandom

19) wil: Trade G2 Y2 B2

20) jrandom: Trade R2 B2 Jrandom

21) wil: Build G2 B2

22) jrandom: Build R2 Jrandom
	jrandom: Argh, wrong move!

23) wil: Discover G1 Wil Y2 Y2
	wil: which move was wrong?  the second was much better than the first..
	jrandom: I know, but it wasn't the second move I wanted.  Oh, well.

24) jrandom: Move R2 Jrandom Y2
	jrandom: You now have an opportunity to beat our swords into ploughshares.

25) wil: Discover G1 Y2 Y3 Y3
	wil: yeah there is that..but starting over isn't in the current plan
	wil: one of my thoughts is always begin with the end in mind....two ways to win the game...take over all the pieces in the homeworld or destroy both homeworld stars... every move should be thinking about building a flotilla that is preparing one or both scenarios whilst wheedling the others chances of doing the same..  
	wil: short universes are generally frowned upon as games...but interesting thing about them is that killing half a homeworld provides no advantage

26) jrandom: Move B2 Jrandom Y2

27) wil: Move R2 B2 Y3

28) jrandom: Trade B2 G2 Y2

29) wil: Trade G1 B1 B2

30) jrandom: Build R2 Y2

31) wil: Build R3 B2

32) jrandom: Build R3 Jrandom

33) wil: Build R3 Y3

34) jrandom: Sacrifice Y3 Jrandom
Move R2 Y2 Y3
Move R2 Y2 Y3
Move R1 Jrandom Y2
Catastrophe Y3 R

35) wil: Build B1 B2

36) jrandom: Build R2 Y2
	wil: reboot the galaxy

37) wil: Move B1 B2 Wil

38) jrandom: Build Y1 Jrandom

39) wil: Move R1 B2 Y3

40) jrandom: Move Y1 Jrandom Y2

41) wil: Build R2 Y3

42) jrandom: Discover Y1 Y2 R3 Betelgeuse

43) wil: Build R2 B2

44) jrandom: Build Y1 Jrandom

45) wil: Move R2 Y3 Y2

46) jrandom: Attack R2 Y2
	wil: very nice...the 'if I can't get it neither can you move.'   now if that would have been done with a green....that becomes an investment.

47) wil: Move R1 Y3 Y2
Catastrophe Y2 R

48) jrandom: Move G2 Y2 Jrandom
	wil: Greetings....we were out traveling and were drawn to the light from your star...  
	wil: it looked familiar to us....so we thought we'd visit...for old times sake.  

49) wil: Build Y2 B2

50) jrandom: Discover Y1 Betelgeuse B2 Beetlejuice

51) wil: Discover Y2 B2 G3 G3

52) jrandom: Move G2 Jrandom Beetlejuice

53) wil: Sacrifice G2 B2
Build Y2 B2
Build Y3 G3

54) jrandom: Trade Y1 G1 Jrandom

55) wil: Sacrifice G2 Wil
Build B2 B2
Build B3 Wil

56) jrandom: Build G2 Beetlejuice

57) wil: Trade B3 G3 Wil

58) jrandom: Trade G2 R2 Beetlejuice

59) wil: Build G2 B2
	wil: so much for a short game!  i don't have a handle yet but it is about to get real...

60) jrandom: Move R2 Beetlejuice Y3

61) wil: Move B1 B2 Jrandom

62) jrandom: Attack G1 Y3
	wil: good move...I just saw I missed abusing that situation!

63) wil: Sacrifice Y2 B2
Move G1 B2 Jrandom
Move G2 B2 Jrandom
Catastrophe Jrandom G

64) jrandom: Move R2 Y3 Beetlejuice

65) wil: Sacrifice Y3 G3
Move B2 B2 Jrandom
Move B1 Wil B2
Move B1 B2 Jrandom
Catastrophe Jrandom B

	jrandom: In fact, your next move will probably be to sacrifice y3 in g3, then move b2 from b2 to jrandom, then b1 from wil to b2, then b2 to jrandom, then catastrophe blue.
	wil: exactly...and that is why the b1 moved in...didn't matter if you attacked her...she is still blue..  I was forever without a big three in this match...you should have got and sacked a y2 attacked me directly with your Queen and used my own red star to anihilate me...but you are starting to see things
	wil: the more you play the more you see...games are all so unique...  ya try one gambit, get foiled, move onto another...  whattya think?  gonna get started up the ladder?


27510)
Variants: "Hard time"
Started: 2015.6.2, Ended: 2015.6.14
Participants: SilentTitan (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3

2) SilentTitan: Homeworld B1 R2 G3

3) wil: Build G1 Wil
	wil: thanx for the game!

4) SilentTitan: Build G1 Silenttitan

5) wil: Trade G1 B1 Wil

6) SilentTitan: Build G1 Silenttitan

7) wil: Discover B1 Wil G2 G2

8) SilentTitan: Trade G1 Y1 Silenttitan

9) wil: Build B1 G2

10) SilentTitan: Build Y1 Silenttitan

11) wil: Build B2 G2
	wil: he wakes up after a four day festival to two hours to go in the game...

	wil: phooey
	SilentTitan: So sorry, I do hope the festival was fun. 
	wil: 19 hours of straight sleep...woke up once during it to get off the couch and crawl into bed...without stopping for water or toilet... that...THAT is how fun the festival was..as defined by the recovery period


27550)
Started: 2015.6.2, Ended: 2015.6.10
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y2 G3

2) ts52: Homeworld Y1 B2 G3

3) wil: Build G1 Wil
	wil: Hava great game...good luck!

4) ts52: Build G1 Ts52
	ts52: Thanks. You too!

5) wil: Trade G1 Y1 Wil

6) ts52: Trade G1 Y1 Ts52

7) wil: Build Y2 Wil

8) ts52: Discover Y1 Ts52 G3 Kermit

9) wil: Discover Y2 Wil B1 B1

10) ts52: Build G1 Ts52

11) wil: Trade Y1 B1 Wil

12) ts52: Trade G1 B1 Ts52

13) wil: Build B2 Wil

14) ts52: Build G1 Ts52

15) wil: Discover B2 Wil G1 G1

16) ts52: Move B1 Ts52 Kermit

17) wil: Trade B1 R1 Wil

18) ts52: Trade G1 R1 Ts52

19) wil: Build R1 Wil

20) ts52: Build R2 Ts52

21) wil: Build R2 Wil

22) ts52: Move R2 Ts52 Kermit

23) wil: Trade R1 Y1 Wil

24) ts52: Build G1 Ts52

25) wil: Build G1 Wil

26) ts52: Build G2 Ts52

27) wil: Move G1 Wil B1

28) ts52: Discover G2 Ts52 B3 Grover

29) wil: Move Y1 Wil G1

30) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Grover
Build G3 Ts52

31) wil: Move G1 B1 Grover
Catastrophe Grover G

32) ts52: Build R1 Kermit

33) wil: Move R1 Wil G1

34) ts52: Build B1 Kermit

35) wil: Build B2 G1

36) ts52: Discover B1 Kermit G1 Robin

37) wil: Trade B2 G2 G1

38) ts52: Discover G1 Ts52 Y3 Bigbird

39) wil: Build G2 Wil

40) ts52: Move R1 Kermit Robin

41) wil: Discover Y2 B1 G2 G2

42) ts52: Sacrifice G3 Ts52
Build G3 Bigbird
Build R2 Robin
Build R3 Ts52

43) wil: Sacrifice G3 Wil
Build G3 Wil
Build R3 Wil
Build R3 G1

44) ts52: Trade R3 Y3 Ts52

45) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 G2
Build Y3 G1

46) ts52: Sacrifice G3 Bigbird
Build G3 Bigbird
Build R3 Ts52
Build B1 Robin

47) wil: Sacrifice Y2 G2
Discover Y1 G1 B3 B3
Move R1 G1 B3

48) ts52: Sacrifice Y3 Ts52
Move G1 Bigbird G1
Move G3 Bigbird G1
Move R2 Robin B3
Catastrophe G1 Green

49) wil: Sacrifice G2 Wil
Build Y2 B3
Build Y3 B3

50) ts52: Build R3 Robin

51) wil: Build Y3 G2

52) ts52: Build Y3 Kermit

53) wil: Sacrifice Y3 G2
Move R3 Wil Robin
Move R3 Robin B3
Move R3 B3 Ts52

54) ts52: Sacrifice R2 Kermit
Attack R3 Ts52
Attack R1 B3

55) wil: Sacrifice Y3 B3
Move R2 Wil Robin
Move R2 Robin B3
Move R2 B3 Ts52
Catastrophe Ts52 R
	wil: the excrement is about to impact the rotating propellers....

	wil: it was a surprising conclusion to me.... I was not on that path at all...
	ts52: Indeed, I was struggling for a while. Thanks for the game!
	wil: Heck, I thought I was behind, trying to play catchup on reds...he's cornering blues, can i stayout of that economy, yellows big yellows are coming what do I do...  the y2/g2 trade was unique I thought and my turning point...  trading for a g2 to sack when I can't have a factory.. I'm putting that in the memory banks... thanx for the game!  I look forward to the next one...challenge me anytime...heck 10 times...I like playing this thing!
	ts52: Funny to think we both felt behind... I too look forward to our next match.


27635)
Variants: "Hard time"
Started: 2015.6.2, Ended: 2015.6.15
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3
	wil: thx for the game!

2) wil: Homeworld Y2 B1 G3

3) dlwillson: B G1 Dlwillson
	wil: now I gotta be on my toes and not play reckless, good luck.  

4) wil: Build G1 Wil

5) dlwillson: T G1 Y1 Dlwillson

6) wil: Trade G1 Y1 Wil

7) dlwillson: B Y2 Dlwillson

8) wil: Build Y2 Wil

9) dlwillson: D Y1 Dlwillson G2 Field

10) wil: Discover Y1 Wil G3 G3

11) dlwillson: Build Y3 Field

12) wil: Build Y3 G3

13) dlwillson: D Y1 Field B3 Sky
	wil: I got behind on this race!

14) wil: Move Y3 G3 Field

15) dlwillson: T Y1 R1 Sky

16) wil: Move Y3 Field Sky
	dlwillson: Sorry I forgot about this game for a bit!
	dlwillson: Hey! Don't you time out on me, Wil!
	wil: just woke up from a four day festival

17) dlwillson: Move Y3 Field Sky

18) wil: Discover Y3 Sky G2 G2
	dlwillson: Nice! Burning man, or something?

19) dlwillson: B G1 Dlwillson

20) wil: Build G1 Wil

21) dlwillson: D G1 Dlwillson B2 Sea

22) wil: Trade Y2 G2 Wil

23) dlwillson: Sacrifice Y3 Sky
Move G3 Dlwillson Sea
Move G3 Sea Sky
Move G3 Sky Wil
Catastrophe Wil G
	wil: well that was both disappointing and appropriate!
	dlwillson: What happened? I waited and waited, hoping you would take it back...
	wil: I couldn't take it back...not in the ladder....wouldn't be prudent...not when it took me that long to see it.



27625)
Variants: "Unrated"
Started: 2015.6.3, Ended: 2015.7.12
Participants: jrandom (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3

2) jrandom: Homeworld B1 G2 Y3

3) wil: Build G1 Wil

4) jrandom: Build Y1 Jrandom

5) wil: Trade G1 Y1 Wil

6) jrandom: Build Y2 Jrandom

7) wil: Build Y2 Wil

8) jrandom: Trade Y2 G2 Jrandom

9) wil: Discover Y2 Wil B2 B2

10) jrandom: Build G1 Jrandom

11) wil: Trade Y1 R1 Wil

12) jrandom: Discover G2 Jrandom R3 Abalone

13) wil: Build R1 Wil

14) jrandom: Discover Y1 Jrandom B3 Bartleby

15) wil: Discover R1 Wil G2 G2

16) jrandom: Trade Y1 G1 Bartleby

17) wil: Move Y2 B2 Bartleby

18) jrandom: Build Y1 Jrandom

19) wil: Sacrifice R1 G2
Attack G1 Bartleby

20) jrandom: Trade Y1 R1 Jrandom

21) wil: Build G1 Wil

22) jrandom: Build Y1 Jrandom
	wil: headed off camping for a few days soon...  into Pennsylvania...pocono mtns eastern US...where abouts are you?
	jrandom: About 40 miles west of Toronto.

23) wil: Discover G1 Wil Y2 Y2
	wil: I've a ton of family in Rochester...just crossed that little lake...

24) jrandom: Move Y1 Jrandom Abalone

25) wil: Build G2 Y2

26) jrandom: Build G3 Abalone

27) wil: Build G3 Wil

28) jrandom: Trade G1 B1 Jrandom

29) wil: Move G2 Y2 Abalone

30) jrandom: Move G2 Abalone Y2

31) wil: Move G1 Y2 Abalone

32) jrandom: Attack G2 Abalone
	jrandom: move g2 Abalone y2

33) wil: Sacrifice G3 Wil
Build G1 Abalone
Build R1 Wil
Build G3 Wil
Catastrophe Abalone G

34) jrandom: Build R2 Jrandom

35) wil: Discover R1 Wil G2 G2

36) jrandom: Move R2 Jrandom Bartleby

37) wil: Sacrifice R1 G2
Attack R2 Bartleby

38) jrandom: Build G1 Y2

39) wil: Discover G3 Wil B2 B2

40) jrandom: Move Y1 Abalone Y2

41) wil: Build G1 B2

42) jrandom: Build R1 Jrandom

43) wil: Build G2 Bartleby

44) jrandom: Discover G1 Y2 G3 Cooper

45) wil: Sacrifice G3 B2
Build G3 B2
Build R2 Bartleby
Build Y1 Bartleby

46) jrandom: Build Y2 Jrandom

47) wil: Sacrifice G3 B2
Build G3 B2
Build R2 Wil
Build R3 Wil

48) jrandom: Build R3 Jrandom

49) wil: Move R2 Bartleby Jrandom
Catastrophe Jrandom R

50) jrandom: Trade Y3 R3 Jrandom

51) wil: Move Y1 Bartleby B2
	wil: I can just move on of my reds in and catastrophe all the reds in your homeworld...are you aware of this?
	wil: m r2 bartleby jrandom
c jrandom r
	wil: I'm waiting for a response before I move...or if it gets upto the last couple days I'll just go ahead...
	wil: another day...and I'll go ahead and move...

52) jrandom: Build Y3 Jrandom

53) wil: Sacrifice G3 B2
Build G3 B2
Build Y3 B2
Build Y3 Bartleby

54) jrandom: Move Y2 Jrandom Cooper

55) wil: Move R3 Wil Y2

56) jrandom: Move G2 Y2 Cooper

57) wil: Move G1 B2 Cooper
Catastrophe Cooper G

58) jrandom: Trade Y3 G3 Jrandom

59) wil: Sacrifice Y2 Bartleby
Move G1 Bartleby Jrandom
Move G2 Bartleby Jrandom
Catastrophe Jrandom G

60) jrandom: Trade B1 G1 Jrandom
	wil: Oh no, my little builder came to the convention and it was too much... 

61) wil: Sacrifice Y3 B2
Move Y3 Bartleby Jrandom
Move G3 B2 Bartleby
Move G3 Bartleby Jrandom

62) jrandom: Attack G3 Jrandom

63) wil: Sacrifice R3 Y2
Attack G3 Jrandom
Attack R3 Jrandom
Attack G1 Jrandom

	wil: thx for the game....challenge me anytime...


27632)
Started: 2015.6.3, Ended: 2015.6.11
Participants: ts52 (S), jrandom (N)
Winner: ts52

1) jrandom: Homeworld B1 G3 Y3

2) ts52: Homeworld B1 Y2 G3

3) jrandom: Build Y1 Jrandom

4) ts52: Build G1 Ts52

5) jrandom: Trade Y1 R1 Jrandom

6) ts52: Trade G1 B1 Ts52

7) jrandom: Build Y1 Jrandom

8) ts52: Build B2 Ts52

9) jrandom: Trade Y1 G1 Jrandom

10) ts52: Trade B2 R2 Ts52

11) jrandom: Build Y1 Jrandom

12) ts52: Build B2 Ts52

13) jrandom: Trade Y3 B3 Jrandom

14) ts52: Build G1 Ts52

15) jrandom: Build B2 Jrandom

16) ts52: Discover B2 Ts52 G3 Kermit

17) jrandom: Trade B3 Y3 Jrandom

18) ts52: Sacrifice G3 Ts52
Build B2 Kermit
Build B3 Kermit
Build B3 Ts52

19) jrandom: Discover G1 Jrandom R2 Artichoke

20) ts52: Trade B3 Y3 Kermit

21) jrandom: Sacrifice Y1 Jrandom
Move G1 Artichoke Jrandom

22) ts52: Build B3 Kermit

23) jrandom: Build B3 Jrandom

24) ts52: Trade B3 G3 Ts52

25) jrandom: Discover B2 Jrandom Y2 Artichoke

26) ts52: Trade B3 R3 Kermit

27) jrandom: Build R1 Jrandom

28) ts52: Move R3 Kermit Artichoke

29) jrandom: Discover B2 Artichoke Y3 Bartleby

30) ts52: Build B3 Kermit

31) jrandom: Build Y1 Jrandom

32) ts52: Discover G1 Ts52 B3 Gonzo

33) jrandom: Discover R1 Jrandom Y2 Cummerbund

34) ts52: Move B2 Kermit Artichoke

35) jrandom: Move G1 Jrandom Cummerbund

36) ts52: Trade B3 R3 Kermit

37) jrandom: Move G1 Cummerbund Bartleby

38) ts52: Build B3 Kermit

39) jrandom: Move R1 Cummerbund Gonzo

40) ts52: Move R2 Ts52 Gonzo

41) jrandom: Move B2 Bartleby Ts52

42) ts52: Sacrifice R2 Gonzo
Attack R1 Gonzo
Attack B2 Ts52

43) jrandom: Sacrifice Y3 Jrandom
Move B3 Jrandom Artichoke
Move B3 Artichoke Bartleby
Move B3 Bartleby Ts52
Catastrophe Ts52 B

44) ts52: Move R3 Artichoke Jrandom

45) jrandom: Build R1 Jrandom

46) ts52: Sacrifice R3 Kermit
Attack R1 Jrandom
Attack R1 Jrandom
Attack Y1 Jrandom

	ts52: Thanks for the game!


27440)
Variants: "Hard time"
Started: 2015.6.10, Ended: 2015.6.11
Participants: wil (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3
	Simon: Hi. I hope you don't mind bashing a newb. :-) I've played 5-10 games IRL.

2) wil: Homeworld B3 Y2 G3
	wil: no problem at all...  If you have any questions...don't hesitate to ask!

3) Simon: Build G1 Simon
	Simon: Alright, cool. Have fun!

4) wil: Build G1 Wil

5) Simon: Trade G1 Y1 Simon

6) wil: Trade G1 R1 Wil

7) Simon: Build G1 Simon
	wil: bashing a newb....   we'll see how well meet that goal...

8) wil: Build R1 Wil

9) Simon: Discover G1 Simon B2 Blue2

10) wil: Discover R1 Wil Y1 Y1

11) Simon: Build G1 Simon

12) wil: Sacrifice G3 Wil
Build R2 Wil
Build R2 Y1
Build R2 Y1

13) Simon: Build Y1 Simon

14) wil: Trade R2 G2 Wil

15) Simon: Build Y2 Simon
	wil: the bashing will soon commence...

16) wil: Sacrifice G2 Wil
Build R2 Wil
Build R3 Wil
	Simon: I didn't see the G3 sacrifice, and the counter-G3-sac wouldn't have cut it :)

17) Simon: Move Y1 Simon Blue2
	wil: you are correct...  gotta watch out for hoarding/monopolizing any economy...

18) wil: Trade R3 G3 Wil

19) Simon: Sacrifice G3 Simon
Build Y2 Blue2
Build Y3 Blue2
Build Y3 Simon

20) wil: Move R1 Y1 Blue2

21) Simon: Trade Y3 R3 Simon

22) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 Y1
Pass
	wil: nice choice!
	Simon: Is there a ko rule on SDG? The wiki didn't mention anything. What's the designer's official stance on ko?
	Simon: > nice choice!
thanks :) it's gonna be very expensive defense though

23) Simon: Build Y3 Simon
	wil: ko?
	Simon: I mean a rule to prevent repetition. (taking the same ship using red back and forth, with neither player wanting to break the cycle.)

24) wil: Trade R3 Y3 Wil
	wil: ah....that hasn't happened to me yet in 200 games...  but I sure blew this game

	Simon: > that hasn't happened to me yet in 200 games
okay, thanks. I thought it would come up more often. :)
> but I sure blew this game
Now as you say it, I see how I missed the one-move win (sac Y3, move R3 to wil)... I'd rather not undo, because I didn't see it. I don't see a forced win for me right now :)

25) Simon: Move R3 Simon Blue2

26) wil: Move R2 Y1 Blue2

27) Simon: Sacrifice Y2 Simon
Discover R3 Blue2 G1 Green1
Move Y2 Blue2 Green1

28) wil: Trade R2 G2 Wil

29) Simon: Build R2 Green1

30) wil: Build R3 Wil

31) Simon: Sacrifice R2 Green1
Attack R2S Blue2
Attack R1S Blue2

32) wil: Trade R1 B1 Wil

33) Simon: Build Y2 Green1

34) wil: Build G2 Wil

35) Simon: Trade R1 B1 Blue2
	wil: my blunders have got me in full regroup mode...

36) wil: Move G2 Wil Y1
	Simon: small blue ship seems better for now than diving in with all the yellows. let's see whether I should have been greedy instead.

37) Simon: Discover Y3 Blue2 R1 Red1

38) wil: Move R3 Y1 Blue2

39) Simon: Move B1 Blue2 Red1
	wil: yes there are times when we have no great move...and have to not make a bad one..

40) wil: Attack R2 Blue2

41) Simon: Sacrifice Y1 Blue2
Move G1 Blue2 Red1

42) wil: Trade R3 G3 Blue2

43) Simon: Build G2 Simon

44) wil: Build G3 Y1

45) Simon: Build G3 Red1

46) wil: Discover Y3 Wil R1 R1

47) Simon: Sacrifice G3 Red1
Build G3 Red1
Build Y1 Red1
Build B1 Red1

48) wil: Sacrifice G3 Y1
Build G3 Y1
Build R2 Y1
Build R3 Blue2

49) Simon: Sacrifice Y3 Red1
Move B1 Red1 Wil
Move B1 Red1 Wil
Move Y2 Green1 Wil
Catastrophe Wil B

50) wil: Sacrifice Y3 R1
Move G3 Blue2 Green1
Move R3 Blue2 Green1
Discover G2 Wil Y3 Y3
	wil: sweet!  nice move...and enough set up for the doomsday machine...great job!

51) Simon: Sacrifice Y2 Green1
Move Y1 Red1 Wil
Move Y1 Simon Wil
Catastrophe Wil Y
	Simon: Thanks, I believe it was the only variation that was guarantueed to work in 2 turns. Now I don't know whether I lucked out in the middlegame, or if 'newb' doesn't match -- in any case, I learned new things, and have offer a rematch. :-)
	wil: Good game...now challenge me again so I can get a reprieve!!
	wil: or buttwhipped...
	Simon: Good game!



27671)
Started: 2015.6.11, Ended: 2015.6.20
Participants: Simon (S), ts52 (N)
Winner: Simon

1) ts52: Homeworld Y3 B2 G3
	Simon: Hi. It's my second game on SDG. I've played 5 to 10 times IRL, and am doing okay in my first online one. Enjoy the game!
	ts52: Welcome! Feel free to ask any questions you like. Since you're new, I wont play the arguably stronger opening, as per star captain etiquette. ;)

2) Simon: Homeworld B3 R1 G3
	ts52: Which is 'h y1 b2 g3' or 'h b1 y2 g3'.

3) ts52: Build G1 Ts52

4) Simon: Build G1 Simon
	Simon: Yeah, I've read about the ideas behind it. It'll be fun to experiment with later. :-)

5) ts52: Trade G1 B1 Ts52

6) Simon: Trade G1 Y1 Simon

7) ts52: Build B1 Ts52

8) Simon: Build G1 Simon

9) ts52: Discover B1 Ts52 G1 Robin

10) Simon: Discover G1 Simon B2 Sea

11) ts52: Build B1 Robin

12) Simon: Build G1 Sea

13) ts52: Build B2 Ts52

14) Simon: Build G2 Simon

15) ts52: Build B3 Robin

16) Simon: Sacrifice G3 Simon
Build G2 Simon
Build G2 Simon
Build G3 Sea

17) ts52: Build G3 Ts52

18) Simon: Trade G3 Y3 Sea

19) ts52: Trade B3 Y3 Robin

20) Simon: Sacrifice G2 Simon
Build G2 Sea
Build G3 Simon

21) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Robin
Build Y1 Robin

22) Simon: Trade G2 R2 Simon

23) ts52: Discover B3 Robin G2 Oscar
	Simon: I considered destroying both of the non-homeworlds, but then you'd take the first turn with a slightly stronger setup.

24) Simon: Discover G1 Sea B3 Snatch

25) ts52: Discover G3 Ts52 R1 Elmo

26) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 Simon
Build Y2 Sea

27) ts52: Trade B2 R2 Ts52

28) Simon: Sacrifice Y2 Sea
Discover G2 Simon Y2 Melon
Move R2 Simon Melon

29) ts52: Move Y1 Robin Oscar

30) Simon: Sacrifice G2 Sea
Build G2 Simon
Build Y2 Sea

31) ts52: Build Y2 Oscar

32) Simon: Trade Y2 B2 Sea

33) ts52: Build Y2 Robin

34) Simon: Trade Y1 R1 Simon

35) ts52: Trade B3 R3 Oscar

36) Simon: Sacrifice G3 Simon
Build G3 Simon
Build R2 Melon
Build R3 Melon

37) ts52: Sacrifice G3 Ts52
Build G3 Elmo
Build B3 Robin
Build R3 Ts52

38) Simon: Move B2 Sea Robin
Catastrophe Robin Blue

39) ts52: Move Y2 Oscar Elmo

40) Simon: Move R2 Melon Snatch

41) ts52: Move G3 Elmo Snatch

42) Simon: Sacrifice Y1 Simon
Move R2 Snatch Sea

43) ts52: Sacrifice G3 Snatch
Build G3 Elmo
Build Y1 Elmo
Build Y1 Oscar
	Simon: hmm, I should have chosen the route via a yellow star instead >_>

44) Simon: Trade G1 B1 Sea

45) ts52: Discover G3 Elmo B2 Gonzo

46) Simon: Discover B1 Sea G1 Nan

47) ts52: Move B1 Ts52 Robin

48) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B1 Nan
Build B3 Nan

49) ts52: Move G3 Elmo Gonzo

50) Simon: Move R3 Melon Elmo

51) ts52: Sacrifice Y3 Robin
Move G3 Gonzo Simon
Move G3 Gonzo Simon
Move R2 Ts52 Robin
Catastrophe Simon Green

52) Simon: Move Y3 Sea Simon

53) ts52: Build Y3 Robin

54) Simon: Attack Y2 Elmo

55) ts52: Move Y3 Robin Melon

56) Simon: Move R2 Melon Nan

57) ts52: Move R2 Robin Melon

58) Simon: Sacrifice R2 Sea
Attack R2 Melon
Attack Y1 Elmo

59) ts52: Build R2 Oscar

60) Simon: Move R2 Melon Nan

61) ts52: Trade R3 G3 Ts52

62) Simon: Move G2 Melon Elmo

63) ts52: Move R3 Oscar Robin

64) Simon: Build G2 Elmo

65) ts52: Discover Y2 Robin B2 Grover

66) Simon: Trade B3 G3 Nan

67) ts52: Sacrifice Y1 Oscar
Move R3 Robin Ts52

68) Simon: Trade B1 Y1 Nan

69) ts52: Build R3 Oscar

70) Simon: Sacrifice G2 Elmo
Build G2 Snatch
Build G3 Snatch

71) ts52: Move Y3 Melon Robin

72) Simon: Sacrifice G3 Snatch
Build G3 Snatch
Build Y2 Nan
Build B1 Nan

73) ts52: Sacrifice Y2 Grover
Move R2 Oscar Elmo
Move R3 Oscar Elmo
Catastrophe Elmo Red

74) Simon: Trade G2 Y2 Snatch

75) ts52: Build Y1 Robin

76) Simon: Build Y2 Snatch

77) ts52: Build B2 Robin

78) Simon: Move Y2 Snatch Robin

79) ts52: Trade Y3 R3 Robin

80) Simon: Move Y2 Robin Ts52

81) ts52: Attack Y2 Ts52

82) Simon: Sacrifice Y2 Snatch
Move Y1 Nan Ts52
Move Y2 Nan Ts52
Catastrophe Ts52 Y

83) ts52: Move B1 Robin Oscar

84) Simon: Trade G3 Y3 Nan

85) ts52: Build B2 Robin

86) Simon: Trade Y3 B3 Simon

87) ts52: Build G2 Ts52

88) Simon: Sacrifice Y3 Nan
Move B1 Nan Ts52
Move B1 Nan Ts52
Move B3 Simon Ts52
Catastrophe Ts52 B

	Simon: Hm, this may have looked like an easy endgame; I've learned something in the opening though. <_< And have to offer you a rematch to play against the stronger homeworld.
	ts52: Well played. Thanks for the game. I look forward to the rematch.
	Simon: Thanks for the game!


27676)
Started: 2015.6.11, Ended: 2015.6.13
Participants: ts52 (S), wil (N)
Winner: ts52

1) wil: Homeworld Y3 B1 G3

2) ts52: Homeworld Y1 B2 G3

3) wil: Build G1 Wil

4) ts52: Build G1 Ts52

5) wil: Trade G1 B1 Wil

6) ts52: Trade G1 Y1 Ts52

7) wil: Build B1 Wil

8) ts52: Build Y1 Ts52

9) wil: Discover B1 Wil G2 G2

10) ts52: Discover Y1 Ts52 G3 Kermit

11) wil: Build B2 G2

12) ts52: Build Y2 Ts52

13) wil: Trade B2 R2 G2

14) ts52: Trade Y2 R2 Ts52

15) wil: Sacrifice G3 Wil
Build B2 Wil
Build B2 G2
Build B3 G2

16) ts52: Build Y2 Kermit

17) wil: Trade B3 Y3 G2

18) ts52: Build Y2 Ts52

19) wil: Build Y2 G2

20) ts52: Discover Y2 Ts52 G3 Oscar

21) wil: Discover B2 G2 Y3 Y3

22) ts52: Sacrifice Y2 Kermit
Move Y1 Kermit G2
Move Y2 Oscar G2
Catastrophe G2 Yellow

23) wil: Build B3 G2

24) ts52: Build Y1 Ts52
	wil: I was wondering if you were willing to pull that trigger...poor kermit and oscar...
	ts52: Yeah, not sure if it'll save me, but I figured it was worth the shot.

25) wil: Trade B3 Y3 G2

26) ts52: Discover Y1 Ts52 G3 Kermit

27) wil: Build B3 G2

28) ts52: Build Y2 Kermit

29) wil: Build Y2 G2

30) ts52: Build R1 Ts52

31) wil: Move B3 G2 Kermit

32) ts52: Build Y2 Ts52

33) wil: Sacrifice Y3 G2
Move B3 Kermit Ts52
Move Y2 G2 Kermit
Move Y2 Kermit Ts52
Catastrophe Ts52 Y

34) ts52: Attack B3 Ts52

35) wil: Build B3 G2

36) ts52: Sacrifice Y1 Kermit
Move B3 Ts52 Wil
Catastrophe Wil Blue
	ts52: Thanks for the game. I wasn't sure I was going to get away with that one.
	wil: lol....what a space cadet I was...



27668)
Variants: "Hard time"
Started: 2015.6.11, Ended: 2015.6.14
Participants: Simon (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 R1 G3 *
	Simon: Have fun!

2) Simon: Homeworld R2 B1 G3

3) wil: Build G1 Wil

4) Simon: Build G1 Simon
	wil: experimental opening....  

5) wil: Discover G1 Wil B2 B2

6) Simon: Trade G1 Y1 Simon

7) wil: Build G1 B2

8) Simon: Build Y1 Simon

9) wil: Trade G1 Y1 B2

10) Simon: Discover Y1 Simon G3 G3

11) wil: Build Y2 B2

12) Simon: Build Y2 Simon

13) wil: Trade Y1 R1 B2

14) Simon: Trade Y2 R2 Simon

15) wil: Build R1 B2

16) Simon: Move R2 Simon G3

17) wil: Trade R1 B1 B2

18) Simon: Build Y1 Simon

19) wil: Build B1 B2

20) Simon: Build Y2 G3

21) wil: Discover B1 B2 Y3 Y3

22) Simon: Discover Y1 Simon B3 B3

23) wil: Discover G1 B2 Y3 Why3

24) Simon: Build Y2 Simon

25) wil: Move B1 B2 Wil

26) Simon: Trade Y2 R2 Simon

27) wil: Build B2 Wil

28) Simon: Move R2 Simon Y3

29) wil: Sacrifice G3 Wil
Build B2 Y3
Build B3 Y3
Build B3 Wil

30) Simon: Sacrifice R2 G3
Attack B2 Y3
Attack B1 Y3
	wil: I know you thought my little trade ship was easy pickins....but he has friends.
	Simon: nice, didn't see it at all. In general, blue ships are much more important than I've always thought

31) wil: Trade B3 G3 Wil

32) Simon: Discover R2 Y3 G2 Geetoo

33) wil: Trade B3 R3 Y3

34) Simon: Move B2 Y3 Simon

35) wil: Attack B1 Y3

36) Simon: Build G1 Simon

37) wil: Build B3 Wil

38) Simon: Move B2 Simon Why3

39) wil: Trade B2 G2 Wil

40) Simon: Build R1 Geetoo

41) wil: Sacrifice G3 Wil
Build R2 B2
Build R3 B2
Build R3 Y3

42) Simon: Build Y2 Simon

43) wil: Move R3 B2 Why3
	Simon: I feel this is a lost game, with 1 large against 4. I should have went for the 3 red ships, even if it's pricey. >_>
	wil: Yeah, I don't have a closing argument yet...but it is a mater of time....although mistakes are made....when I am this far behind I still don't quit because folks are known to be focused on an end game and make a huge blunder.

44) Simon: Move B2 Why3 Geetoo
	Simon: Alright, then I'll play on happily. :)

45) wil: Move R3 Why3 Geetoo
	wil: no force...you can resign if you wish...the other thing I liked about sticking it out was watching the end game...watching how others beat me (ts52 just slaughtered me, like our old game..I was blinded by my scheme and missed the obvious)

46) Simon: Build B2 Geetoo

47) wil: Sacrifice R3 Y3
Attack R2 Geetoo
Attack R1 Geetoo
Attack B2 Geetoo

	Simon: This sac is the safest play. Thanks for the game. :-)
	wil: Yeah...that pretty much sealed the deal...look forward to another whenever you are upto it.


27644)
Variants: "Unrated"
Started: 2015.6.14, Ended: 2015.6.28
Participants: wil (S), dragon76n (N)
Winner: wil

1) dragon76n: Homeworld G3 B2 Y3

2) wil: Homeworld Y3 B1 G3
	dragon76n: Hello Wil, I'm new to Homeworlds. I just read the rules of the game today on http://www.looneylabs.com/rules/homeworlds and was hoping to find an open game here that would be willing to show me the ropes. 
	wil: I'm glad to help...just about my favorite game!  So now openings, folks think banker is best, you took fortress so I'll take goldilocks...

3) dragon76n: Build Y1 Dragon76n
	wil: Having a green star in your homeworld makes it hard to have a factory later..as you can't have one there...reduces opportunity.

4) wil: Build G1 Wil
	dragon76n: Ok. Thanks for the tip about The Factory. I'll try to keep that in mind for the future. 

5) dragon76n: Trade Y1 B1 Dragon76n
	wil: Are you a chess player?  What is your favorite game?
	dragon76n: I play chess once in a while. My favorite game is Conquest of the Empire, but it is tough for me to find people who will play. I play Dominion and Settlers of Catan the most with my wife and son.

6) wil: Trade G1 B1 Wil
	dragon76n: At this point I'm not even sure how I should be expanding. I'm just trying to read over the instructions to try to grasp the basic ideas, so any tips you're willing to give a "Junior Officer" is much appreciated, even if they don't come until after you are in position to destroy me. 
	wil: You've picked perfectly...the shortest stack...tis the game to get to the big pieces...

7) dragon76n: Build B2 Dragon76n
	wil: You are first working to build a variety of ships for use later, to build new outposts with protection and diversity
	wil: Begin with the end in mind...there are two ways to win... take over the ships in the other homeworld or destroy the stars...

8) wil: Build B2 Wil

9) dragon76n: Trade B2 Y2 Dragon76n

10) wil: Trade B1 R1 Wil
	dragon76n: Is it common for players to build up a lot at the homeworld before moving away to another star? 

11) dragon76n: Trade Y3 R3 Dragon76n
	wil: nah...sometimes build two and move one...or you may simply move one straight out...depends

12) wil: Discover B2 Wil G2 G2
	dragon76n: Based on what I was reading in the rules, bigger yellow ships seem to be able to move further than smaller ones, but I didn't see anything in the "Move" section that would confirm that. 
	wil: they don't...sacking a y3 allows you 3 moves with other ships...like sacrificing a r2 allows you to attack two ships and sacking a g1 build one, sacking a b3 changing the colors of 3 ships...

13) dragon76n: Discover Y2 Dragon76n Y1 Yellone
	dragon76n: Ok. Thanks for the clarification. 

14) wil: Build R1 Wil

15) dragon76n: Build B1 Dragon76n

16) wil: Build B2 G2
	dragon76n: I guess I just tried a couple illegal plays, trying to build ships that I couldn't.
	wil: you must have one of the ships in the star system you want to build... it is like you need an example to build another one...

17) dragon76n: Move Y2 Yellone Dragon76n
	wil: If you are confused...don't hesitate to ask questions...right there taking the last blue pawn, you opened up blue drones for me...and in the safety of you not being able to build another without a catastrophe

18) wil: Trade B2 Y2 G2
	dragon76n: Ok. Thanks again. Is it possible for you to get to my Homeworld in one turn if there is no connecting star? For example, if you had a Y3 ship that you Sacrifice, would it allow you to do a discovery with one ship and then move past there with another? I don't think that's allowed since each "pip" only allows one ship from the current star to move to the next star, right? 
	wil: yes and no...the star system is created momentarily for you to land and then disappears again after you leave it.   

s y3 hw
m g1 hw existingstar
d g1 existingstar newstar
m g1 newstar opponentHW

19) dragon76n: Discover B1 Dragon76n G1 Greeone
	wil: and now suddenly your question is appropriate!

20) wil: Build R1 Wil
	dragon76n: So a Sacrifice doesn't have to be applied at the same location?
	wil: No...once you sac something you provide that power (trade, build, attack, move) anywhere on the board to any piece regardless of its color or the color of its star system, tis galaxy wide (for your ships)

21) dragon76n: Build R2 Dragon76n

22) wil: Move R1 Wil G2
	dragon76n: Ok. Thanks for the info. I'm glad to be playing against you for my first game. Too many times I've tried playing games online with people who have no tolerance for new players. I tried playing some stuff on VASSAL last week... a game that I know the rules to but didn't know how to play in using that program, but I was told to leave in a rather rude manner. And it wasn't my first experience like that. 
	wil: humans...
	wil: and I missed my moment by one move...I shoulda moved in on your new star with my ship...you wouldn't sac a 3 for one kill and I would have had it....

23) dragon76n: Move R2 Dragon76n Greeone

24) wil: Trade R1 Y1 Wil
	dragon76n: Ahh... I think I'm now realizing why even having small red ships would be nice, since you've pointed out that I "wouldn't sac a 3 for one kill." Those little red ones can just sit back like long range missiles. 
	wil: zactly, inter galactic star wars protection...lazer accuracy

25) dragon76n: Build Y1 Dragon76n

26) wil: Build G1 Wil
	dragon76n: Sorry, I thought I had submitted the orders for my turn yesterday. 

27) dragon76n: Move Y1 Dragon76n Greeone
	wil: no worries..

28) wil: Discover G1 Wil Y2 Y2

29) dragon76n: Build B2 Greeone

30) wil: Build B3 G2

31) dragon76n: Move R2 Greeone Y2

32) wil: Trade B3 Y3 G2
	wil: do you know about overpopulation?  that you can cause an environmental catastrophe by having 4 of any one color in a star system?  That if I sac my y2 in g2 I can send a blue thru greeone into your homeworld and catastrophe all your blues?  Which would include half your homeworld star?  
	wil: I'll wait till you decide to make a different move before I go.
	wil: tell me if you wish to keep this move..
	dragon76n: I read about catastrophe before, but didn't notice you were in range to do out. I will accept the consequences if you choose to do that. 
	wil: no...if you didn't know you can always back up...I've got no choice to go forward and do that...this is your chance, the learning game...next time I won't be so nice (note so much changes when you move...when we play live we move a coin or something when we are done..because you really need to look to see how the board changes...you legitimately get  a reprieve on this one...
	dragon76n: Ok. Thanks. I'll adjust my move. 

33) dragon76n: Attack G1 Y2
	dragon76n: Ok. I think I'm set now. Do players get the option to take back their turn every time? I don't see an option to do it now. I only see an option to Resign up where I saw the option to undo my move before. Not that I'm trying to take back this move, I'm just wondering if it's possible. 
	wil: you can back up one move at a time...  each move allows run redo...but not two...  in real life you can try as much as you want...until you move the coin

34) wil: Build B3 G2

35) dragon76n: Sacrifice Y2 Dragon76n
Move B1 Greeone G2
Move B2 Greeone G2
Catastrophe G2 Blue

36) wil: Trade Y1 B1 Wil

37) dragon76n: Trade B1 Y1 Dragon76n
	dragon76n: Ok. I noticed that multiple moves in one turn are submitted all together. 

38) wil: Build B1 Wil

39) dragon76n: Discover Y1 Greeone B3 Bluethr

40) wil: Move B1 Wil G2

41) dragon76n: Build R1 Y2

42) wil: Build R2 G2

43) dragon76n: Move R2 Y2 Bluethr

44) wil: Discover R2 G2 G3 G3

45) dragon76n: Build R2 Y2

46) wil: Build R3 G2

47) dragon76n: Build R3 Dragon76n

48) wil: Sacrifice G3 Wil
Build B2 G2
Build B2 G2
Build B3 Wil

49) dragon76n: Discover R2 Bluethr G2 Gretwo
	wil: looks like I might get both of those...hmmm
	dragon76n: Ouch. Yeah... I was wondering if that was coming. 

50) wil: Trade B3 G3 Wil

51) dragon76n: Move Y1 Bluethr Gretwo

52) wil: Discover B2 G2 G1 G1

53) dragon76n: Move R3 Dragon76n G1

54) wil: Move B1 G2 G3

55) dragon76n: Attack B2 G1

56) wil: Sacrifice G3 Wil
Build B3 Wil
Build B3 G2
Build B3 G3

57) dragon76n: Build G1 Y2

58) wil: Trade B3 G3 Wil

59) dragon76n: Trade B2 Y2 G1

60) wil: Trade B3 Y3 G3

61) dragon76n: Build Y1 Gretwo

62) wil: Build B2 G3

63) dragon76n: Move Y1 Gretwo Wil

64) wil: Attack Y1 Wil

65) dragon76n: Move Y1 Dragon76n G1

66) wil: Move Y3 G3 Y2

67) dragon76n: Move Y1 G1 Gretwo

68) wil: Sacrifice R1 G2
Attack R2 Y2

69) dragon76n: Sacrifice Y2 G1
Move Y1 Gretwo Wil
Move Y1 Gretwo Wil
Catastrophe Wil Yellow

70) wil: Sacrifice Y3 G2
Move R3 G2 Wil
Move R3 Wil Dragon76n
Move R1 Wil Dragon76n

71) dragon76n: Attack R3 Dragon76n

72) wil: Sacrifice Y2 G2
Move R2 G3 Wil
Move R2 Wil Dragon76n
Catastrophe Dragon76n R

	dragon76n: Yep... I realized that I have no movement after I sent in my attack. I was hoping that it would be worth the sacrifice but I'm wondering about that now. 
	wil: good game... I look forward to the next!
	wil: the issue is one color in your homeworld leaves you open for the blue bird (simply eliminating that color through catastrophe)...
	dragon76n: Oh wow... I saw that you were probably going to eliminate the red ships from my homeworld. I had forgotten about that causing an immediate loss. Good game. 
	wil: Can't run your fleet if you have no leaders left at  home


27678)
Variants: "Hard time"
Started: 2015.6.14, Ended: 2015.6.16
Participants: wil (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 Y1 G3
	Simon: Have fun!

2) wil: Homeworld B3 R1 G3

3) Simon: Build G1 Simon
	wil: THere he is again...  thanx for the game

4) wil: Build G1 Wil

5) Simon: Trade G1 B1 Simon
	wil: I'm  in the DC area...  I'm guessing you are west coast?
	Simon: I'm from Germany. :) I have a weird sleeping schedule these days, sleeping in the evenings, and getting to play early in the morning before university.

6) wil: Trade G1 Y1 Wil
	wil: lol....for some reason I was first gonna say EU...but then the late night responses made no sense!   now they do!

7) Simon: Build B1 Simon

8) wil: Build Y1 Wil

9) Simon: Discover B1 Simon G2 Gee
	wil: the race...

10) wil: Discover Y1 Wil R2 R2
	Simon: Getting no blue ships in the last game was worse than getting no yellows.

11) Simon: Build B1 Gee
	wil: oh crap..dang short universe my bad

12) wil: Build Y2 Wil

13) Simon: Build B2 Gee
	wil: while blues are great for trading...ya can't move without y...

14) wil: Discover Y2 Wil G2 G2

15) Simon: Trade B2 Y2 Gee

16) wil: Build G1 Wil

17) Simon: Build B2 Gee

18) wil: Build Y2 Wil

19) Simon: Build Y3 Gee

20) wil: Sacrifice Y2 G2
Move Y1 Wil Gee
Move Y2 Wil Gee
Catastrophe Gee Y

21) Simon: Trade B2 Y2 Gee

22) wil: Build G1 Wil
	Simon: now nobody can move without yellow.

23) Simon: Sacrifice Y2 Gee
Move G3 Simon Gee
Move G3 Gee Wil
Catastrophe Wil G
	wil: yeah...I've been playin real bad lately
	Simon: Small universe seems to makes the first move even more valuable. >_>



27692)
Variants: "Hard time"
Started: 2015.6.17, Ended: 2015.6.23
Participants: wil (S), Simon (N)
Winner: wil

1) Simon: Homeworld B2 R1 G3

2) wil: Homeworld Y3 B1 G3
	Simon: Let's do another one. Enjoy!
	wil: Yay-yuh!
	wil: I think at one time I was playing 3 with the same player...it was fun...but confusing..

3) Simon: Build G1 Simon

4) wil: Build G1 Wil

5) Simon: Trade G1 B1 Simon

6) wil: Trade G1 B1 Wil

7) Simon: Build B2 Simon

8) wil: Build B2 Wil

9) Simon: Trade B1 Y1 Simon

10) wil: Trade B1 R1 Wil

11) Simon: Build Y1 Simon

12) wil: Build R1 Wil

13) Simon: Discover B2 Simon G3 G3

14) wil: Discover R1 Wil Y2 Y2

15) Simon: Build G1 Simon

16) wil: Build R2 Wil

17) Simon: Build B1 G3

18) wil: Sacrifice G3 Wil
Build R2 Y2
Build R2 Y2
Build R3 Wil

19) Simon: Trade B2 Y2 G3

20) wil: Move R2 Y2 G3

21) Simon: Discover Y2 G3 G1 G1

22) wil: Build R3 G3
	Simon: nowhere to hide!

23) Simon: Discover G1 Simon Y3 Y3
	wil: tis a cat and mouse game...I was one step ahead on growth, if you didn't trade for a red I could see a way to control the economy...worse than that...it is the red economy which covers attacks...(all monopolies are bad this just has another aspect.  

only one move I see that can delay me winning in 3
	Simon: I didn't pay attention after getting a b2 ship. That sure had to cover everything that could possibly happen. :]

24) wil: Build R3 G3

25) Simon: Sacrifice G3 Simon
Build Y1 G1
Build Y2 G1
Build Y3 Simon
	wil: close...you needed to create an R3 star...

26) wil: Attack B1 G3
	wil: ar that that worked

27) Simon: Discover Y2 G1 B3 B3

28) wil: Move R2 Y2 G1

29) Simon: Sacrifice G1 Y3
Build Y3 B3

30) wil: Attack Y2 G1

31) Simon: Trade Y3 G3 Simon

32) wil: Sacrifice Y2 G1
Move R3 G3 Simon
Move R3 G3 Simon

	wil: this is the you take one I'll take three maneuver....you held it off with your yellow monopoly...I couldn't move in with two until I got that y2
	Simon: gg. Instructive game again.
	wil: I still miss stuff all the time...and probably lost 90% of my first 20 games....recognizing both attacks and opportunities comes from watching yourself get whooped (my opinion)
	wil: thanx challenge me anytime...start climbing the ladder we need more playing at the top!


27685)
Started: 2015.6.18, Ended: 2015.6.23
Participants: ts52 (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y2 G3

2) ts52: Homeworld B2 Y3 G3

3) endo: Build G1 Endo

4) ts52: Build G1 Ts52

5) endo: Trade G1 R1 Endo

6) ts52: Trade G1 B1 Ts52

7) endo: Build R1 Endo

8) ts52: Discover B1 Ts52 G1 Robin

9) endo: Build R1 Endo

10) ts52: Build B1 Robin

11) endo: Discover R1 Endo B3 Union

12) ts52: Build B2 Robin

13) endo: Sacrifice G3 Endo
Build R2 Endo
Build R2 Union
Build R2 Union

14) ts52: Trade B2 Y2 Robin

15) endo: Discover R1 Endo G3 Powerset

16) ts52: Discover B1 Robin G3 Kermit

17) endo: Move R2 Endo Kermit

18) ts52: Build G1 Ts52

19) endo: Attack B1 Kermit

20) ts52: Build B2 Robin

21) endo: Build R3 Kermit

22) ts52: Build G1 Ts52

23) endo: Trade B1 Y1 Kermit

24) ts52: Build B1 Robin

25) endo: Build R3 Powerset

26) ts52: Discover B2 Robin Y3 Bigbird

27) endo: Build R3 Kermit

28) ts52: Discover G1 Ts52 Y1 Zoe

29) endo: Move R3 Kermit Zoe

30) ts52: Build G2 Zoe

31) endo: Move R3 Zoe Ts52

32) ts52: Move B2 Bigbird Endo

33) endo: Sacrifice R2 Union
Attack G3 Ts52
Attack G1 Ts52
	ts52: Thanks for the game. Shouldn't have let you get the monopoly in red. Well played.



27716)
Started: 2015.6.19, Ended: 2015.6.20
Participants: KatsCyl (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y1 G3 *
	KatsCyl: homeworld B3 Y2 G3

2) KatsCyl: Homeworld B3 R1 G3

3) endo: Build G1 Endo

4) KatsCyl: Build G1 Katscyl

5) endo: Discover G1 Endo B2 Mono
	KatsCyl: Tämä on varmaan kämäsin webbipeli mitä oon koskaan pelannut +D

6) KatsCyl: Trade G1 Y1 Katscyl
	endo: Noh, toimii

7) endo: Build G1 Mono

8) KatsCyl: Build Y1 Katscyl

9) endo: Trade G1 R1 Mono

10) KatsCyl: Build Y2 Katscyl

11) endo: Build R1 Mono

12) KatsCyl: Discover Y2 Katscyl B2 Serenity

13) endo: Build R2 Mono

14) KatsCyl: Build G1 Katscyl

15) endo: Trade R2 Y2 Mono

16) KatsCyl: Move G1 Katscyl Serenity

17) endo: Build R2 Mono

18) KatsCyl: Build Y2 Serenity

19) endo: Build Y3 Mono

20) KatsCyl: Sacrifice Y2 Serenity
Move Y1 Katscyl Mono
Move Y1 Katscyl Mono
Catastrophe Mono Y

21) endo: Trade R2 Y2 Mono

22) KatsCyl: Build Y1 Serenity

23) endo: Build R2 Mono

24) KatsCyl: Trade Y2 R2 Serenity

25) endo: Trade R1 B1 Mono

26) KatsCyl: Build G1 Serenity

27) endo: Build G2 Mono

28) KatsCyl: Build G2 Katscyl

	KatsCyl: Minä olen tuuba...


27628)
Variants: "Hard time"
Started: 2015.6.21, Ended: 2015.7.6
Participants: endo (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B1 R2 G3

2) endo: Homeworld Y1 B3 G3

3) SilentTitan: Build G1 Silenttitan

4) endo: Build G1 Endo

5) SilentTitan: Trade G1 Y1 Silenttitan

6) endo: Trade G1 B1 Endo

7) SilentTitan: Build Y1 Silenttitan

8) endo: Build B1 Endo

9) SilentTitan: Build Y2 Silenttitan

10) endo: Discover B1 Endo G2 Ideal

11) SilentTitan: Discover Y2 Silenttitan G3 Sol

12) endo: Build B2 Ideal

13) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Sol
Build Y3 Silenttitan

14) endo: Build B2 Endo

15) SilentTitan: Discover Y1 Silenttitan B3 Soul

16) endo: Discover B2 Endo B2 Filter

17) SilentTitan: Discover Y1 Silenttitan B3 Sole

18) endo: Build G1 Endo

19) SilentTitan: Discover Y2 Sol G2 Tic

20) endo: Trade G3 Y3 Endo

21) SilentTitan: Move Y2 Sol Silenttitan

22) endo: Trade B2 G2 Filter

23) SilentTitan: Build Y3 Sol

24) endo: Build G1 Filter

25) SilentTitan: Sacrifice Y3 Sol
Move Y2 Sol Tic
Move Y2 Tic Endo
Move Y2 Tic Endo
Catastrophe Endo Yellow

26) endo: Trade B1 Y1 Endo

27) SilentTitan: Trade Y3 R3 Silenttitan

28) endo: Build Y2 Endo

29) SilentTitan: Move R3 Silenttitan Endo

30) endo: Move Y2 Endo Silenttitan

31) SilentTitan: Attack Y2 Silenttitan South

32) endo: Move Y1 Endo Silenttitan

33) SilentTitan: Attack G1 Endo South



27719)
Started: 2015.6.22, Ended: 2015.9.18
Participants: Simon (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Simon: Homeworld G3 B1 Y3
	Simon: Have fun! :)

3) ts52: Build G1 Ts52
	ts52: Thanks. You too!

4) Simon: Build Y1 Simon

5) ts52: Trade G1 Y1 Ts52

6) Simon: Build Y2 Simon

7) ts52: Discover Y1 Ts52 G3 Kermit

8) Simon: Discover Y2 Simon G2 Grass

9) ts52: Build Y2 Kermit

10) Simon: Trade Y1 B1 Simon

11) ts52: Build G1 Ts52

12) Simon: Build B1 Simon

13) ts52: Move Y2 Kermit Ts52

14) Simon: Move B1 Simon Grass

15) ts52: Trade Y2 B2 Ts52

16) Simon: Build B2 Grass

17) ts52: Move B2 Ts52 Kermit

18) Simon: Build B3 Simon

19) ts52: Build B3 Kermit

20) Simon: Trade B3 R3 Simon

21) ts52: Trade B3 R3 Kermit

22) Simon: Build B3 Simon

23) ts52: Build B3 Kermit

24) Simon: Trade B3 Y3 Simon

25) ts52: Discover B3 Kermit G2 Robin

26) Simon: Build B3 Grass

27) ts52: Build B3 Robin

28) Simon: Trade B3 Y3 Grass

29) ts52: Build B3 Kermit

30) Simon: Discover Y3 Simon R2 Wine

31) ts52: Trade B3 R3 Robin

32) Simon: Build B3 Grass

33) ts52: Move B2 Kermit Grass
Catastrophe Grass Blue

34) Simon: Move B1 Simon Grass

35) ts52: Discover G1 Ts52 B3 Gonzo

36) Simon: Build R1 Simon

37) ts52: Build G1 Ts52

38) Simon: Move R3 Simon Grass

39) ts52: Sacrifice G3 Ts52
Build G1 Ts52
Build G2 Gonzo
Build G3 Ts52

40) Simon: Move R3 Grass Gonzo

41) ts52: Sacrifice G3 Ts52
Build Y1 Kermit
Build Y2 Kermit
Build G3 Ts52

42) Simon: Attack G2 Gonzo

43) ts52: Trade G1 R1 Ts52

44) Simon: Attack G1 Gonzo

45) ts52: Move Y1 Kermit Robin

46) Simon: Sacrifice Y2 Grass
Move G1 Gonzo Ts52
Move G2 Gonzo Ts52
Catastrophe Ts52 G

47) ts52: Move B3 Kermit Ts52

48) Simon: Build Y2 Grass

49) ts52: Trade B3 G3 Ts52

50) Simon: Build Y2 Simon

51) ts52: Build G1 Ts52

52) Simon: Build B1 Grass

53) ts52: Build B2 Robin

54) Simon: Trade B1 G1 Grass

55) ts52: Move B3 Robin Kermit

56) Simon: Move G1 Grass Gonzo

57) ts52: Move Y1 Kermit Robin

58) Simon: Trade Y2 G2 Simon

59) ts52: Build Y2 Kermit

60) Simon: Move G2 Simon Wine

61) ts52: Discover Y2 Kermit G1 Oscar

62) Simon: Sacrifice Y3 Grass
Move G1 Gonzo Ts52
Move G2 Wine Gonzo
Move G2 Gonzo Ts52
Catastrophe Ts52 Green

63) ts52: Move B3 Kermit Ts52

64) Simon: Build Y3 Grass

65) ts52: Trade B3 G3 Ts52

66) Simon: Build B1 Grass

67) ts52: Move Y2 Oscar Grass

68) Simon: Move Y2 Grass Gonzo

69) ts52: Build G1 Ts52

70) Simon: Move B1 Grass Gonzo

71) ts52: Build G1 Ts52

72) Simon: Trade B1 G1 Gonzo

73) ts52: Move G1 Ts52 Kermit

74) Simon: Build R1 Gonzo

75) ts52: Build R2 Kermit

76) Simon: Build R2 Simon

77) ts52: Sacrifice R1 Ts52
Attack B1S Grass

78) Simon: Build G2 Gonzo

79) ts52: Trade G1 R1 Ts52

80) Simon: Sacrifice R2 Simon
Attack Y2 Grass
Attack B1 Grass

81) ts52: Build R2 Robin

82) Simon: Discover Y3 Wine B3 Sea

83) ts52: Build R2 Ts52

84) Simon: Build B1 Grass

85) ts52: Sacrifice Y2 Kermit
Move R1 Ts52 Gonzo
Move R2 Robin Gonzo
Catastrophe Gonzo Red

86) Simon: Sacrifice G1 Gonzo
Build Y2 Sea

87) ts52: Move R3 Robin Gonzo

88) Simon: Trade B1 R1 Grass

89) ts52: Sacrifice R2 Kermit
Attack Y2 Gonzo
Attack G2 Gonzo

90) Simon: Trade Y2 R2 Sea

91) ts52: Build Y2 Gonzo

92) Simon: Build B1 Grass

93) ts52: Build G1 Ts52

94) Simon: Trade B1 G1 Grass

95) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Robin
Build R1 Gonzo

96) Simon: Build B2 Grass

97) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build R3 Kermit

98) Simon: Move G1 Grass Sea

99) ts52: Move B1 Robin Kermit

100) Simon: Discover B1 Grass B3 B3

101) ts52: Move Y1 Robin Kermit

102) Simon: Move Y2 Grass B3

103) ts52: Move R3 Kermit Robin

104) Simon: Move R2 Sea Grass

105) ts52: Move R1 Gonzo Robin

106) Simon: Move R1 Grass Sea

107) ts52: Move R2 Ts52 Kermit

108) Simon: Move R1 Sea Grass

109) ts52: Move R3 Robin B3

110) Simon: Sacrifice Y2 B3
Move R1 Grass Kermit
Move R2 Grass Kermit
Catastrophe Kermit R

111) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build R1 Robin

112) Simon: Build R2 Simon

113) ts52: Sacrifice Y2 Gonzo
Move R1 Robin Simon
Move R1 Robin Simon
Catastrophe Simon Red

114) Simon: Trade G1 R1 Sea

115) ts52: Sacrifice G3 Ts52
Build G1 Ts52
Build G3 Ts52
Build Y2 Robin

116) Simon: Move R1 Sea Grass

117) ts52: Sacrifice Y2 Kermit
Move Y1 Robin Simon
Move Y2 Robin Simon

118) Simon: Trade Y3 R3 Simon

119) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Gonzo
Build Y3 Kermit

120) Simon: Attack Y2 Simon

121) ts52: Move R3 Gonzo Robin

122) Simon: Build R1 Grass

123) ts52: Attack B1 B3

124) Simon: Attack Y1 Simon

125) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Robin
Build R2 Robin

126) Simon: Sacrifice Y2 Simon
Move R1 Grass Simon
Move R1 Simon Robin
Catastrophe Robin R

127) ts52: Move Y2 Gonzo Robin

128) Simon: Build Y2 Grass

129) ts52: Discover Y3 Kermit R2 Elmo

130) Simon: Build R1 Grass

131) ts52: Sacrifice Y1 Kermit
Move R3 B3 Robin

132) Simon: Move Y3 Grass Gonzo

133) ts52: Sacrifice Y2 Robin
Move Y3 Elmo Simon
Move R3 Robin Simon

	Simon: Nice, didn't see this. Thanks for the game!
	ts52: Thanks! Good game!


27705)
Variants: "Hard time"
Started: 2015.6.22, Ended: 2015.6.23
Participants: wil (S), endo (N)
Winner: wil

1) endo: Homeworld B1 Y3 G3

2) wil: Homeworld R2 Y1 B3 *

3) endo: Build G1 Endo
	wil: thanx for the game!  my fav...

4) wil: Trade B3 G3 Wil
	wil: oh crap, what was I thinkin?  

5) endo: Trade G1 B1 Endo
	endo: hehe it happens :) I thought you were giving the beginner the "second turn timewarp"

6) wil: Build G1 Wil

7) endo: Discover B1 Endo G2 Ring
	wil: are you a beginner?  well good...  I've got a huge uphill battle now!

8) wil: Discover G1 Wil B3 B3

9) endo: Build B1 Ring
	wil: you done gave me a fightin chance!

10) wil: Build G1 B3

11) endo: Build B2 Ring

12) wil: Build G1 Wil

13) endo: Trade B2 Y2 Ring

14) wil: Build G2 B3

15) endo: Build B2 Ring

16) wil: Trade G2 R2 B3

17) endo: Build G2 Endo

18) wil: Trade G1 Y1 B3

19) endo: Trade B2 R2 Ring

20) wil: Build G1 Wil

21) endo: Build B2 Ring

22) wil: Build G2 B3

23) endo: Sacrifice G3 Endo
Build G3 Endo
Build G3 Endo
Build R1 Ring

24) wil: Build R1 B3

25) endo: Discover R2 Ring B3 Module

26) wil: Discover G2 B3 B2 B2

27) endo: Move G3 Endo B2

28) wil: Move G1 Wil B3

29) endo: Sacrifice R1 Ring
Attack G2 B2

30) wil: Move G1 B3 B2

31) endo: Trade G2 Y2 B2

32) wil: Build G2 B2

33) endo: Sacrifice Y2 Ring
Move Y2 B2 Module
Move G3 B2 B3

34) wil: Sacrifice G1 B2
Build G1 B3

35) endo: Sacrifice G3 B3
Build Y1 Module
Build Y2 Module
Build R1 Module
	wil: you and your running me in circles with that green queen

36) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 B2
Build Y2 B3

37) endo: Sacrifice Y2 Module
Move G2 Endo Ring
Discover G2 Ring B3 Monoid

38) wil: Move Y1 B3 B2

39) endo: Trade G3 R3 Endo

40) wil: Move G3 B2 Monoid

41) endo: Sacrifice G2 Monoid
Build R1 Module
Build R3 Endo

42) wil: Sacrifice G3 Wil
Build G2 Monoid
Build G3 Wil
Build G3 B2

43) endo: Trade B2 Y2 Ring

44) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 B2
Build Y3 B3

45) endo: Sacrifice Y2 Ring
Move R1 Module Wil
Move R1 Module Wil
	wil: have I cemented the value of the factory in yet?

46) wil: Sacrifice Y2 B3
Move R1 B3 B2
Move R1 B2 Endo
	endo: I think you have. sacrificing the green was a beautiful disaster in one move, had I just left it there I would've been fine

47) endo: Move R2 Module Wil
Catastrophe Wil R
	wil: lol my very next move... and you did it first!  although I think I am still a step ahead...

48) wil: Sacrifice G1 Wil
Build R1 Endo
Catastrophe Endo R
	endo: well, at least I got something!
	wil: lol...blew up half my homeworld!!
	wil: ya done darn well!  challenge me anytime!  start climbing the ladder now and I'll see you at the top



27737)
Variants: "Hard time"
Started: 2015.6.22, Ended: 2015.6.28
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B2 R3 G3

2) wil: Homeworld Y2 B1 G3
	wil: keep my seat warm!

3) dlwillson: B G1 Dlwillson
	dlwillson: :-)

4) wil: Build G1 Wil

5) dlwillson: T G1 B1 Dlwillson

6) wil: Trade G1 B1 Wil

7) dlwillson: Build B2 Dlwillson

8) wil: Build B2 Wil

9) dlwillson: Trade B2 Y2 Dlwillson

10) wil: Discover B2 Wil G3 G3

11) dlwillson: D B1 Dlwillson G1 Field

12) wil: Build B2 G3

13) dlwillson: B B3 Field

14) wil: Trade B2 Y2 G3
	wil: I look and it isn't where I think it should be...dang fingers typing wrong...
	dlwillson: You're still given me a battleship!

15) dlwillson: T B3 R3 Field
	wil: mistakes....  I make them...

16) wil: Trade B1 R1 Wil

17) dlwillson: Build R1 Field

18) wil: Build R1 Wil
	wil: our spacescopes have picked up activity of refitting a trade ship into a warship...while this doesn't violate any treaties it is a cause for concern and has required us to move funds from our indigent care and intergalactic support to homeworld defense..

19) dlwillson: T R1 Y1 Field
	dlwillson: LOL! Excellent!
Meanwhile I have to bumble along on voluntary contributions. If I ever screw up, the people will stop giving, and I'll have to go get a real job. :-)

20) wil: Move R1 Wil G3

21) dlwillson: M R3 Field G3

22) wil: Build R1 G3

23) dlwillson: A Y2 G3

24) wil: Build R2 G3
Catastrophe G3 R

25) dlwillson: D Y2 G3 G1 Forest

26) wil: Build G1 Wil
	wil: i needed the reboot
	wil: i needed the reboot

27) dlwillson: B Y1 Forest
	dlwillson: I'm sorry about my last move. That was bogus and I should have taken it back, but I didn't get back soon enough.
	wil: I thought you had another plan in place...too move out it woulda cost you your yellows...

28) wil: Trade G1 Y1 Wil

29) dlwillson: S G3 Dlwillson
B Y3 Dlwillson
B Y3 Dlwillson
B Y3 Field
	dlwillson: No, I mean you could have just taken the y2 back. 
	wil: I'm clueless..


30) wil: Build R1 Wil

31) dlwillson: T Y3 R3 Field
	wil: well that is that!

32) wil: Discover R1 Wil Y3 Y3
	wil: I'll soon be waiting for the computer to give me another chance...

33) dlwillson: Discover Y2 Forest B3 Sky

34) wil: Build R1 Wil

35) dlwillson: S Y3 Dlwillson
M Y1 Forest Sky
M Y1 Sky Wil
M Y2 Sky Wil
C Wil Y

36) wil: Trade R1 Y1 Wil
	wil: I should resign....now I am just waiting for you to make a mistake...

37) dlwillson: T Y3 G3 Dlwillson

38) wil: Build G1 Wil

39) dlwillson: Move R3 Field G3

40) wil: Sacrifice Y1 Wil
Discover B2 G3 Y2 Y2

41) dlwillson: Build G1 Dlwillson

42) wil: Trade G1 Y1 Wil

43) dlwillson: M B1 Field G3

44) wil: Build G1 Wil

45) dlwillson: Move G3 Dlwillson Wil

46) wil: Sacrifice G3 Wil
Build G2 Wil
Build G2 Wil
Build R1 Wil
Catastrophe Wil G

47) dlwillson: Sacrifice Y1 Field
Move R3 G3 Wil

48) wil: Move R1 Y3 Wil
Catastrophe Wil R

49) dlwillson: Build Y1 Dlwillson

50) wil: Trade B2 R2 Y2

51) dlwillson: Trade Y2 R2 Dlwillson
	wil: Seriously weird ending...

52) wil: Move R2 Y2 Wil
	dlwillson: I made a mistake going in with the red. If I'd gone in with the yellow, instead... I think it would have been over a turn or two quicker.

53) dlwillson: Build R1 Dlwillson
	wil: I thought I saw where you were headed and prepared by blowing myself up as a diversion while building the r1....hoping you'd see i did your work for you and you'd jump on in before checking the water...

54) wil: Trade Y1 G1 Wil

55) dlwillson: Build B1 G3
	wil: I wasted a step there...but let the games begin...again!

56) wil: Build G1 Wil

57) dlwillson: B G2 Dlwillson
	dlwillson: This is going to take a minute, isn't it?

58) wil: Trade G1 Y1 Wil

59) dlwillson: B B2 G3
	wil: I told you I was waitin for you to make a couple mistakes.... that was one...a couple more would help.

60) wil: Build G1 Wil

61) dlwillson: Trade G2 Y2 Dlwillson

62) wil: Move R2 Wil Dlwillson
Catastrophe Dlwillson R

63) dlwillson: Sacrifice Y2 Dlwillson
Move B2 G3 Wil
Move B1 G3 Wil

64) wil: Discover G1 Wil Y3 Y3

65) dlwillson: S Y1 Dlwillson
M B1 G3 Wil
C Wil B

	wil: Just so when it ends it doesn't look like I did as poorly as the truth is...thanks for the game...I'll be back!
	dlwillson: This may be the cleanest ending board I've ever seen. Good game! See you for the rematch. :-)
	wil: too funny....


27731)
Variants: "Hard time"
Started: 2015.6.22, Ended: 2015.7.10
Participants: SilentTitan (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B2 R3 G3

2) SilentTitan: Homeworld B1 R2 G3
	SilentTitan: Lol
	SilentTitan: Homeworld b1 r2 g3
	SilentTitan: I forgot how to play

3) dlwillson: B G1 Dlwillson

4) SilentTitan: Build G1 Silenttitan

5) dlwillson: T G1 B1 Dlwillson
	dlwillson: :-)

6) SilentTitan: Trade G3 B3 Silenttitan

7) dlwillson: B G1 Dlwillson

8) SilentTitan: Build G1 Silenttitan

9) dlwillson: B G2 Dlwillson

10) SilentTitan: Build G2 Silenttitan

11) dlwillson: Trade G2 Y2 Dlwillson

12) SilentTitan: Trade G2 Y2 Silenttitan

13) dlwillson: Build G2 Dlwillson

14) SilentTitan: Discover G1 Silenttitan Y3 Sol

15) dlwillson: D G2 Dlwillson Y1 Sirius

16) SilentTitan: Build G2 Silenttitan
	dlwillson: What is our count? I know you usually win on the table. Do I usually win on SDG?
	SilentTitan: Hummmm.   Good question, I would doubt the assertion that I always win "on table", more like I lose less often when a chess clock is involved.

17) dlwillson: Move B1 Dlwillson Sirius

18) SilentTitan: Discover B3 Silenttitan Y3 Soul

19) dlwillson: Build B1 Sirius

20) SilentTitan: Sacrifice G1 Silenttitan
Build B2 Soul

21) dlwillson: S Y2 Dlwillson
M B1 Sirius Soul
M B1 Sirius Soul
C Soul B

22) SilentTitan: Sacrifice G2 Silenttitan
Build Y1 Silenttitan
Build Y1 Silenttitan

23) dlwillson: Trade G3 Y3 Dlwillson

24) SilentTitan: Discover Y1 Silenttitan G3 Soul

25) dlwillson: Build Y2 Dlwillson

	SilentTitan: Good game thanks


27740)
Variants: "Hard time"
Started: 2015.6.24, Ended: 2015.6.29
Participants: wil (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G2 B1 Y3

2) wil: Homeworld B3 Y1 G3
	Simon: Alright, have fun!

3) Simon: Build Y1 Simon

4) wil: Build G1 Wil

5) Simon: Build Y1 Simon

6) wil: Trade G1 B1 Wil

7) Simon: Discover Y1 Simon G3 G3

8) wil: Build B1 Wil

9) Simon: Build Y2 Simon

10) wil: Discover B1 Wil G2 G2

11) Simon: Trade Y2 B2 Simon

12) wil: Build B2 G2

13) Simon: Move B2 Simon G3

14) wil: Trade B2 Y2 G2

15) Simon: Build Y2 G3

16) wil: Build B2 G2

17) Simon: Build B2 G3

18) wil: Discover B2 G2 G3 Gee3

19) Simon: Trade B2 R2 G3

20) wil: Trade B1 R1 G2

21) Simon: Trade Y1 R1 Simon

22) wil: Move B1 Wil G2

23) Simon: Trade Y2 G2 G3

24) wil: Build G1 Wil

25) Simon: Discover G2 G3 Y2 Y2

26) wil: Discover G1 Wil B2 B2

27) Simon: Build G1 Y2

28) wil: Build G1 Wil

29) Simon: Sacrifice Y3 Simon
Move G1 Y2 Wil
Move G2 Y2 Wil
Pass
Catastrophe Wil G
	Simon: I wanted to prevent that last g1 build. It seemed like the best move if I couldn't sac the yellow >_>
	wil: ya done good!
	wil: I look forward to the next...
	Simon: thanks for the game :)



27761)
Variants: "Hard time"
Started: 2015.6.26, Ended: 2015.7.7
Participants: Aghmarck (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 Y1 G3

2) Aghmarck: Homeworld B1 G2 Y3
	Simon: Hi, have fun!

3) Simon: Build G1 Simon
	Aghmarck: Hello there! Good luck and have fun.

4) Aghmarck: Build Y1 Aghmarck

5) Simon: Trade G1 Y1 Simon

6) Aghmarck: Trade Y1 B1 Aghmarck

7) Simon: Build G1 Simon

8) Aghmarck: Build B1 Aghmarck

9) Simon: Build Y1 Simon

10) Aghmarck: Build Y2 Aghmarck

11) Simon: Discover Y1 Simon G2 Leaf

12) Aghmarck: Discover B1 Aghmarck G3 Verdega

13) Simon: Build Y2 Leaf

14) Aghmarck: Move Y2 Aghmarck Verdega

15) Simon: Build Y2 Simon

16) Aghmarck: Build Y3 Aghmarck

17) Simon: Trade Y2 B2 Simon

18) Aghmarck: B B2 Verdega

19) Simon: Move B2 Simon Leaf

20) Aghmarck: Discover B2 Verdega G2 Verda

21) Simon: Discover G1 Simon B2 Sea

22) Aghmarck: Build B3 Verda

23) Simon: Build B3 Leaf

24) Aghmarck: Trade B3 R3 Verda

25) Simon: Trade B2 R2 Leaf

26) Aghmarck: Build B2 Verda

27) Simon: Build B3 Leaf

28) Aghmarck: Sacrifice Y3 Aghmarck
Move B1 Verdega Leaf
Move B2 Verda Simon
Move B2 Simon Leaf
Catastrophe Leaf B

29) Simon: Build G1 Simon

30) Aghmarck: Build Y2 Verdega

31) Simon: Sacrifice G3 Simon
Build G1 Sea
Build G3 Sea
Build G3 Simon

32) Aghmarck: B Y3 Aghmarck

33) Simon: Trade G3 Y3 Sea

34) Aghmarck: B B1 Verda

35) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 Sea
Build R1 Leaf

36) Aghmarck: Build B2 Verda

37) Simon: Move G3 Sea Verdega

38) Aghmarck: Sacrifice Y2 Verdega
Move R3 Verda Verdega
Move R3 Verdega Leaf

39) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y2 Sea
Build R1 Leaf
Catastrophe Leaf R

40) Aghmarck: Build B3 Aghmarck

41) Simon: Trade Y3 B3 Sea

42) Aghmarck: Trade B3 R3 Aghmarck

43) Simon: Trade Y1 R1 Simon

44) Aghmarck: Sacrifice Y3 Aghmarck
Move B1 Verda Simon
Move B2 Verda Simon
Move B2 Verda Simon
Catastrophe Simon B

45) Simon: Sacrifice G3 Simon
Build G2 Verdega
Build G3 Simon
Build R1 Simon

46) Aghmarck: Build Y1 Verdega

47) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y3 Sea
Build Y3 Leaf

48) Aghmarck: Discover Y2 Verdega B2 Blua

49) Simon: Discover B3 Sea R3 Cow

50) Aghmarck: Trade Y3 R3 Aghmarck

51) Simon: Sacrifice R1 Simon
Attack Y1 Verdega

	Aghmarck: Thanks for the game!
	Simon: Thanks!


27762)
Variants: "Hard time"
Started: 2015.6.28, Ended: 2015.9.5
Participants: foksieloy (S), MagicJohn (N)
Winner: foksieloy

1) MagicJohn: Homeworld Y1 B2 G3
	foksieloy: Good luck, have fun!
	MagicJohn: Hey! Somebody accepted a challenge!! The "declines" really get old. Thanks for the game ..... Enjoy!

2) foksieloy: Homeworld B1 G3 Y3

3) MagicJohn: Build G1 Magicjohn

4) foksieloy: Build Y1 Foksieloy

5) MagicJohn: Build G1 Magicjohn

6) foksieloy: Trade Y1 G1 Foksieloy

7) MagicJohn: Discover G1 Magicjohn Y3 Pine

8) foksieloy: Build G2 Foksieloy

9) MagicJohn: Trade G3 Y3 Magicjohn

10) foksieloy: Trade G2 B2 Foksieloy

11) MagicJohn: Build G2 Magicjohn

12) foksieloy: Discover G1 Foksieloy B2 Tibbers

13) MagicJohn: Trade G1 R1 Magicjohn

14) foksieloy: Build Y1 Foksieloy

15) MagicJohn: Move R1 Magicjohn Pine

16) foksieloy: Trade Y1 R1 Foksieloy

17) MagicJohn: Build Y1 Magicjohn

18) foksieloy: Build Y1 Foksieloy

19) MagicJohn: Trade Y1 B1 Magicjohn

20) foksieloy: Move Y1 Foksieloy Tibbers

21) MagicJohn: Move B1 Magicjohn Pine

22) foksieloy: Discover B2 Foksieloy G2 Annie

23) MagicJohn: Move G2 Magicjohn Pine

24) foksieloy: Build G1 Tibbers

25) MagicJohn: Move G1 Pine Magicjohn

26) foksieloy: Discover G1 Tibbers B1 Lulu

27) MagicJohn: Build B3 Pine

28) foksieloy: Build B3 Annie

29) MagicJohn: Trade B3 R3 Pine

30) foksieloy: Trade B3 R3 Annie

31) MagicJohn: Build B3 Pine

32) foksieloy: Build B3 Annie

33) MagicJohn: Move R3 Pine Tibbers

34) foksieloy: Trade B3 R3 Annie

35) MagicJohn: Sacrifice Y3 Magicjohn
Move R3 Tibbers Pine
Move R3 Pine Annie
Move R1 Pine Annie
Catastrophe Annie Red

36) foksieloy: Build B3 Annie

37) MagicJohn: Trade B3 R3 Pine

38) foksieloy: Trade B3 R3 Annie

39) MagicJohn: Move R3 Pine Magicjohn

40) foksieloy: Build B3 Annie

41) MagicJohn: Build B3 Pine

42) foksieloy: Trade B3 Y3 Annie

43) MagicJohn: Build G2 Pine

44) foksieloy: Build G3 Tibbers

45) MagicJohn: Sacrifice G2 Pine
Build G2 Pine
Build G3 Magicjohn

46) foksieloy: Sacrifice G3 Tibbers
Build G3 Tibbers
Build B3 Annie
Build R1 Annie

47) MagicJohn: Trade B1 Y1 Pine

48) foksieloy: Sacrifice G3 Tibbers
Build G3 Tibbers
Build Y2 Annie
Build Y2 Tibbers

49) MagicJohn: Discover Y1 Pine R1 Elm

50) foksieloy: Sacrifice Y3 Annie
Move Y1 Tibbers Pine
Move Y2 Tibbers Pine
Move Y2 Annie Pine
Catastrophe Pine Yellow

51) MagicJohn: Build R2 Magicjohn

52) foksieloy: Sacrifice B2 Annie
Trade R1 Y1 Annie
Trade G1 B1 Tibbers

53) MagicJohn: Sacrifice G1 Magicjohn
Build Y2 Elm

54) foksieloy: Build Y2 Annie

55) MagicJohn: Discover Y2 Elm G2 Mulberry

56) foksieloy: Discover Y2 Annie B3 Shen

57) MagicJohn: Trade R3 B3 Magicjohn

58) foksieloy: Trade Y2 G2 Shen

59) MagicJohn: Build Y2 Mulberry

60) foksieloy: Build G1 Tibbers

	MagicJohn: Sorry.... Family health issues..Time got away from me. You were torching me anyway, so congrats.  Thanks for the game.
	foksieloy: Aww, sorry to hear that. It was a very enjoyable game, I have to admit, the most turns I played so far. Good game!


27753)
Variants: "Hard time"
Started: 2015.6.28, Ended: 2015.6.29
Participants: wil (S), endo (N)
Winner: wil

1) endo: Homeworld Y1 B2 G3

2) wil: Homeworld Y3 B1 G3
	endo: hey, let's play another one
	wil: I'll play as many as you like... this game makes me think!

3) endo: Build G1 Endo

4) wil: Build G1 Wil

5) endo: Trade G1 Y1 Endo

6) wil: Trade G1 B1 Wil

7) endo: Build Y1 Endo

8) wil: Build B1 Wil

9) endo: Discover Y1 Endo B3 Epi

10) wil: Discover B1 Wil G2 G2

11) endo: Build Y2 Endo

12) wil: Sacrifice G3 Wil
Build B2 Wil
Build B2 G2
Build B3 G2

13) endo: Discover Y2 Endo B3 Iso

14) wil: Trade B3 Y3 G2

15) endo: Discover Y1 Endo B3 Auto

16) wil: Trade B2 Y2 G2

17) endo: Build G1 Endo

18) wil: Build B2 G2

19) endo: Trade G1 R1 Endo

20) wil: Trade Y2 R2 G2

21) endo: Sacrifice G3 Endo
Build Y2 Epi
Build Y2 Auto
Build Y3 Iso

22) wil: Sacrifice Y3 G2
Move R2 G2 Auto
Move B2 G2 Auto
Move B2 Auto Endo

23) endo: Sacrifice Y2 Auto
Move Y3 Iso Endo
Discover Y1 Auto G2 Mono

24) wil: Sacrifice R2 Auto
Attack R1 Endo
Pass

25) endo: Build Y2 Mono
	wil: lol...forgot you had a 3....silly o me!

26) wil: Trade B2 G2 Wil

27) endo: Build Y3 Mono

28) wil: Sacrifice G2 Wil
Build B2 Wil
Build B3 Endo

29) endo: Trade Y3 R3 Endo
	endo: crap, I forgot you can also build at my homeworld

30) wil: Attack R3 Endo
	wil: That was quite the interesting go around there...  I look forward to our next game..  challenge me anytime, ask any questions!



27745)
Started: 2015.6.29, Ended: 2015.7.11
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) wil: Homeworld B3 G1 Y3
	ts52: Have a good game!
	wil: If you insist...

3) ts52: Build G1 Ts52

4) wil: Build Y1 Wil

5) ts52: Trade G1 Y1 Ts52

6) wil: Discover Y1 Wil G2 G2

7) ts52: Discover Y1 Ts52 G3 Kermit

8) wil: Build Y2 Wil

9) ts52: Build Y2 Kermit

10) wil: Trade Y2 R2 Wil

11) ts52: Build G1 Ts52

12) wil: Build Y2 G2

13) ts52: Trade G1 R1 Ts52

14) wil: Discover Y2 G2 G3 G3

15) ts52: Build G1 Ts52

16) wil: Build Y2 G2

17) ts52: Discover Y2 Kermit G2 Oscar

18) wil: Build Y3 G3

19) ts52: Build Y3 Kermit

20) wil: Sacrifice Y2 G3
Move Y1 G2 Kermit
Move Y2 G2 Kermit
Catastrophe Kermit Y

21) ts52: Build G1 Ts52
	wil: oh phooey, a fuel fire at your oil field....we ame to help...but it looks like pouring rocket fuel on it doesn't help...sorry

22) wil: Build Y1 Wil
	ts52: Dangit! I hate it when that happens.

23) ts52: Discover G1 Ts52 Y3 Bigbird
	wil: I'm sure your expedition was insured right?

24) wil: Build R1 Wil
	ts52: Insufficiently, it seems. :)

25) ts52: Build G2 Bigbird

26) wil: Trade R2 G2 Wil

27) ts52: Build G3 Bigbird

28) wil: Sacrifice Y3 G3
Discover Y1 Wil B2 B2
Move G2 Wil B2
Move G2 B2 Bigbird
Catastrophe Bigbird G

29) ts52: Build G1 Ts52

30) wil: Build R1 Wil
	wil: oops...that didn't look right!

31) ts52: Discover G1 Ts52 B3 Gonzo

32) wil: Discover R1 Wil G2 G2

33) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Gonzo

34) wil: Discover Y1 B2 G3 G3

35) ts52: Trade G3 Y3 Gonzo

36) wil: Build R2 G2
	wil: I've definitely lost this game...

37) ts52: Build G3 Gonzo

38) wil: Build R2 Wil

39) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build R2 Ts52
Build R3 Ts52

40) wil: Build R3 Wil

41) ts52: Sacrifice Y3 Gonzo
Move R1 Ts52 Gonzo
Move R1 Gonzo G2
Move R1 G2 Wil
Catastrophe Wil Red

42) wil: Build Y1 Wil

43) ts52: Trade G3 Y3 Gonzo

44) wil: Sacrifice Y1 Wil
Discover R1 G2 G3 Gee3

45) ts52: Move R2 Ts52 Gee3

46) wil: Build Y1 Wil

47) ts52: Attack R1 Gee3

48) wil: Trade Y1 B1 Wil

49) ts52: Move R3 Ts52 Gonzo

50) wil: Build B1 Wil

51) ts52: Move R3 Gonzo G2

52) wil: Trade B1 R1 Wil

53) ts52: Attack R2 G2

54) wil: Build B1 Wil

55) ts52: Move Y2 Oscar Gee3

56) wil: Discover B1 Wil Y2 Y2

57) ts52: Move R2 Gee3 Y2
	wil: this game is so over...

58) wil: Discover B1 Y2 Y3 Y3

59) ts52: Move Y3 Gonzo G2

60) wil: Build B1 Wil
	wil: it appears an impossibility for you to make a fatal error when I have nothing....but if you simply continue to chase me in circles and torture me instead of putting an end to my misery I may find an opening somehow...somewhere..
	ts52: My endgame is my weakest. Much as I see that I should be able to overpower you, finding my way to it is difficult for me somehow.

61) ts52: Sacrifice Y2 Gee3
Move R3 G2 Wil
Move Y3 G2 Wil

62) wil: Build R1 Wil

63) ts52: Sacrifice R2 G2
Attack Y3S Wil
Attack B1S Wil
	wil: see there...the ole I get one you get two...

64) wil: Build R2 Wil

65) ts52: Attack B1S Wil
Catastrophe Wil Red
	ts52: Yep, took me a while to see it.
	ts52: Hmmm, guess I could've sac'd the R3 that turn. Oh well.

	ts52: Thanks for the game!
	wil: thank you for the game...


27690)
Variants: "Unrated"
Started: 2015.6.29, Ended: 2015.7.17
Participants: wil (S), dragon76n (N)
Winner: wil

1) dragon76n: Homeworld B2 G1 Y3

2) wil: Homeworld Y3 B1 G3
	dragon76n: Hello again. 

3) dragon76n: Build Y1 Dragon76n
	wil: thx for the game....let us have at it!

4) wil: Build G1 Wil

5) dragon76n: Discover Y1 Dragon76n G3 Grethr

6) wil: Build G1 Wil

7) dragon76n: Build Y1 Dragon76n

8) wil: Trade G1 Y1 Wil

9) dragon76n: Build Y2 Dragon76n

10) wil: Discover Y1 Wil G2 G2

11) dragon76n: Discover Y2 Dragon76n B3 Bluthr

12) wil: Build Y2 G2

13) dragon76n: Trade Y1 R1 Dragon76n

14) wil: Trade G1 R1 Wil

15) dragon76n: Trade Y2 R2 Bluthr

16) wil: Build G1 Wil

17) dragon76n: Build Y1 Grethr

18) wil: Move Y2 G2 Grethr

19) dragon76n: Sacrifice Y1 Grethr
Move R2 Bluthr G2

20) wil: Discover Y1 G2 G3 G3

21) dragon76n: Build Y1 Grethr

22) wil: Build Y2 G3

23) dragon76n: Sacrifice Y1 Grethr
Move R2 G2 G3

24) wil: Sacrifice R1 Wil
Attack R2 G3

25) dragon76n: Build R1 Dragon76n
	wil: I'll gladly trade my little pawn for your glorious attack drone...I like the way you've outfitted it.
	dragon76n: I was wondering about that. 

26) wil: Build R1 G3
	wil: everything is a move.... when it comes to attack who is bigger will trump....or who gets the first to fire their weapon in the case of evenly matched.

27) dragon76n: Trade R1 B1 Dragon76n

28) wil: Trade G1 B1 Wil
	wil: t g1 b1 wil

29) dragon76n: Build B2 Dragon76n
	wil: basic strategy always get piece the same color as the other fellow has...gotta keep up...more basic stategy....write the directions in the correct box.

30) wil: Discover B1 Wil Y2 Y2
	dragon76n: Ok. Thanks for the tips. Btw, I'm assuming my build setup is safe since you don't have a y3 to move your b1 straight to my homeworld.

	dragon76n: It looks like there are some more abbreviated words that the system will accept. Are all of the commands able to be shortened to 1 letter?

31) dragon76n: T B2 R2 Dragon76n
	wil: yes you were correct...now you are not...cha cha cha..

32) wil: Build G1 Wil

33) dragon76n: Trade R1 G1 Dragon76n

34) wil: Move G1 Wil Y2

35) dragon76n: Build R1 Dragon76n

36) wil: Build B2 Y2

37) dragon76n: Move Y1 Grethr Y2

38) wil: Sacrifice R1 G3
Attack Y1 Y2

39) dragon76n: Move B1 Dragon76n Grethr

40) wil: Build R1 G3

41) dragon76n: Discover R2 Dragon76n Y3 Yelthr

42) wil: Sacrifice R1 G3
Attack B1 Grethr

43) dragon76n: Build R1 Dragon76n

44) wil: Build G2 Wil

45) dragon76n: Move G1 Dragon76n Yelthr

46) wil: Trade G2 R2 Wil
	wil: factory installed.
	dragon76n: Ooohhhhhh....

47) dragon76n: Build G2 Yelthr

48) wil: Build G2 Wil
	wil: ok, so I'll postpone factory production for some planetary defense.

49) dragon76n: Move G1 Yelthr Y2

50) wil: Sacrifice G3 Wil
Build G2 Y2
Build Y1 Grethr
Build G3 Wil

51) dragon76n: M G2 Yelthr Y2
C Y2 Green

52) wil: Sacrifice G2 Wil
Build G1 Wil
Build G1 Wil

53) dragon76n: Move R1 Dragon76n Yelthr

54) wil: Build B2 Grethr

55) dragon76n: M R2 Yelthr Dragon76n

56) wil: Build B3 Grethr

57) dragon76n: T R2 G2 Dragon76n

58) wil: Sacrifice G1 Wil
Build B3 Y2

59) dragon76n: Build G1 Dragon76n

60) wil: Trade B3 R3 Grethr

61) dragon76n: Sacrifice G2 Dragon76n
Build R1 Yelthr
Build G2 Dragon76n

62) wil: Build B3 Grethr

63) dragon76n: S G2 Dragon76n
B R2 Yelthr
B G2 Dragon76n

64) wil: Build R3 G3
	wil: got a two step plan where the second step requires two steps so we are three steps away....not from annihilation but massive control

65) dragon76n: B R3 Dragon76n

66) wil: Discover G1 Wil G2 G2

67) dragon76n: Move R2 Yelthr Y2

68) wil: Sacrifice Y2 G3
Move G1 G2 G3
Move G1 G3 Dragon76n
Catastrophe Dragon76n G

69) dragon76n: A B2 Y2

70) wil: Sacrifice Y2 Grethr
Move R2 Wil Dragon76n
Move R2 G3 Dragon76n
Catastrophe Dragon76n R

71) dragon76n: M B2 Y2 Grethr
C Grethr Blue

72) wil: Build R1 Grethr

73) dragon76n: D R2 Y2 G1 Greone

74) wil: Build R2 Grethr

75) dragon76n: Move R1 Yelthr Dragon76n

76) wil: Move B3 Y2 Greone

77) dragon76n: M R1 Yelthr Y2

78) wil: Sacrifice B3 Greone
Trade R3 B3 G3
Trade R3 Y3 Grethr
Trade Y1 B1 Grethr

79) dragon76n: A Y1 Y2

80) wil: Build B2 G3

81) dragon76n: A B1 Y2

82) wil: Sacrifice Y3 Grethr
Move B1 Grethr Dragon76n
Move B2 G3 Dragon76n
Move B3 G3 Dragon76n
Catastrophe Dragon76n B

	wil: it was...42 moves...you made me work for it!
	wil: I look forward to the next game...  I am playing HW, blam!, subdivision, mega volcano (lotso pyramid games) but am interested in any other game that you are willing to help teach!


27768)
Variants: "Hard time"
Started: 2015.6.29, Ended: 2015.7.2
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: Homeworld B2 Y1 G3

2) Simon: Homeworld Y3 B1 G3
	wil: that last one was just too easy for you...and I was blind to reality

3) wil: Build G1 Wil
	Simon: Have fun!

4) Simon: Build G1 Simon

5) wil: Trade G1 B1 Wil

6) Simon: Trade G1 B1 Simon

7) wil: Build B2 Wil

8) Simon: Discover B1 Simon G2 G2

9) wil: Trade B1 Y1 Wil

10) Simon: Build G1 Simon

11) wil: Build Y1` Wil

12) Simon: Build B1 G2

13) wil: Discover B2 Wil G3 G3

14) Simon: Trade G3 Y3 Simon

15) wil: Build B2 G3

16) Simon: Build Y2 Simon

17) wil: Trade B2 R2 G3

18) Simon: Trade Y2 R2 Simon

19) wil: Build B2 G3

20) Simon: Build Y2 Simon

21) wil: Trade B2 Y2 G3

22) Simon: Discover Y2 Simon R2 R2

23) wil: Move R2 G3 G2

24) Simon: Build G1 Simon

25) wil: Attack B1 G2

26) Simon: Build B2 G2

27) wil: Build B3 G3

28) Simon: Sacrifice R2 Simon
Attack R2 G2
Attack B1 G2

29) wil: Move B2 G3 G2
Catastrophe G2 B

30) Simon: Move G1 Simon R2

31) wil: Move B3 G3 R2

32) Simon: Move Y2 R2 G3

33) wil: Move Y2 G3 R2

34) Simon: Move Y2 G3 Wil
Catastrophe Wil Y

35) wil: Trade B3 R3 R2

36) Simon: Trade Y3 B3 Simon

37) wil: Attack G1 R2

38) Simon: Build B1 Simon

39) wil: Build G1 Wil

40) Simon: Build G2 Simon

41) wil: Move G1 R2 Simon

42) Simon: Trade G1 R1 Simon

43) wil: Build G1 Simon

44) Simon: Sacrifice R2 G2
Attack G1 Simon
Attack G1 Simon

45) wil: Trade G1 Y1 Wil

46) Simon: Move B1 Simon Wil

47) wil: Move G3 Wil Simon
Catastrophe Simon G
	wil: nice game...

48) Simon: Sacrifice R1 Simon
Attack Y1 Wil
	Simon: Thanks -- most claustrophobic came I've seen. I should have chosen other homeworld stars to not yield a monopoly again, but that is hard to see :)
	wil: thanx, challenge me anytime!!



27785)
Variants: "Hard time"
Started: 2015.7.4, Ended: 2015.7.7
Participants: dlwillson (S), wil (N)
Winner: dlwillson

1) wil: Homeworld Y2 B1 G3

2) dlwillson: H B3 Y1 G3

3) wil: Build G1 Wil

4) dlwillson: B G1 Dlwillson

5) wil: Trade G1 Y1 Wil

6) dlwillson:

T G1 Y1 Dlwillson

7) wil: Build Y2 Wil

8) dlwillson: B Y2 Dlwillson

9) wil: Discover Y1 Wil B3 B3

10) dlwillson: D Y1 Dlwillson G2 Field

11) wil: Discover Y2 Wil G3 G3

12) dlwillson: D Y2 Dlwillson G2 Forest

13) wil: Build G1 Wil

14) dlwillson: B Y3 Field

15) wil: Sacrifice G3 Wil
Build G1 Wil
Build Y3 B3
Build Y3 G3

16) dlwillson: Sacrifice Y2 Forest
Move Y3 Field B3
Move Y3 B3 Wil

17) wil: Move Y1 B3 Wil

18) dlwillson: Trade Y3 R3 Wil
	wil: record fast game


19) wil: Build Y2 Wil
	dlwillson: Yup


20) dlwillson: Attack Y2 Wil

21) wil: Build G1 Wil

22) dlwillson: B G2 Dlwillson

23) wil: Trade Y3 B3 B3

24) dlwillson: Attack G1 Wil

25) wil: Build Y3 Wil
Catastrophe Wil Y

26) dlwillson: B G2 Wil
C Wil G
	dlwillson: :-) I think you forgot the big rule.
	wil: I forgot a lot... the end was coming fast enough...just thought I'd accelerate it.
	dlwillson: Sure, but you lost back when you sac'd your big green without looking.

The "big" rule is that you leave a big at home.

The "gun" rule is that when the other guy goes for his gun (a red), you go for yours.

There are probably other rules but I can't think of them.

And the rules are just rules. You can break with them, but you gotta be careful. :-)
	wil: Oh I agree...I broke them all...but I lost right out of the gates.  Once the early mistake was made it was written on the wall.
I also have a habit of simply moving..and the format is such I can't see the field...I should at least set up a physical galaxy during a ladder game... I look and shoot from the hip way too often.



27773)
Variants: "Hard time"
Started: 2015.7.5, Ended: 2015.7.17
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: Homeworld Y3 B1 G3
	Simon: Once more, enjoy. :-)
	wil: can't stop me!  I always enjoy this game

2) Simon: Homeworld R1 B2 G3

3) wil: Build G1 Wil

4) Simon: Build G1 Simon

5) wil: Trade G1 B1 Wil

6) Simon: Trade G1 B1 Simon

7) wil: Trade B1 R1 Wil

8) Simon: Build B1 Simon

9) wil: Build R1 Wil

10) Simon: Build G1 Simon

11) wil: Build R2 Wil

12) Simon: Trade G1 Y1 Simon

13) wil: Discover R2 Wil G2 G2

14) Simon: Discover B1 Simon R3 R3

15) wil: Sacrifice G3 Wil
Build R2 G2
Build R2 G2
Build R3 Wil

16) Simon: Sacrifice G3 Simon
Build B2 R3
Build B2 R3
Build B3 Simon

17) wil: Trade R3 G3 Wil

18) Simon: Trade B3 G3 Simon

19) wil: Build R3 Wil

20) Simon: Build B3 Simon

21) wil: Trade R3 B3 Wil

22) Simon: Trade B2 Y2 R3

23) wil: Build R3 Wil

24) Simon: Discover B3 Simon G3 G3

25) wil: Trade R3 Y3 Wil

26) Simon: Trade B3 R3 G3

27) wil: Build R3 Wil

28) Simon: Discover B2 R3 G1 G1
	wil: conundrum launched...

29) wil: Discover R3 Wil G2 Gee2

30) Simon: Build B2 G1

31) wil: Move B3 Wil Gee2

32) Simon: Build B3 G1

33) wil: Move Y3 Wil Gee2

34) Simon: Trade B3 Y3 G1

35) wil: Move B3 Gee2 R3

36) Simon: Build B3 G1

37) wil: Sacrifice R2 G2
Attack Y2 R3
Attack B1 R3
	Simon: Can't build 3 blue ships, the stack is one short. >_> Nice timing for moving in. I will make one tasty ship instead.

38) Simon: Sacrifice Y3 G1
Move B2 G1 R3
Move B1 Simon R3
Discover R3 G3 G2 Third
Catastrophe R3 Blue

39) wil: Build R2 Wil

40) Simon: Trade B3 Y3 G1

41) wil: Trade R2 Y2 Wil

42) Simon: Build R2 Third

43) wil: Trade R1 B1 Wil

44) Simon: Build G1 Simon

45) wil: Build G1 Wil

46) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 G1
Build B1 G1

47) wil: Move B1 Wil G2

48) Simon: Move B1 G1 Third

49) wil: Move Y2 Wil G2

50) Simon: Move Y1 G1 Third

51) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 Gee2
Build Y2 G2

52) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B2 G1
Build B3 Third

53) wil: Build B3 G2

54) Simon: Move B3 Third R3

55) wil: Trade B3 G3 G2

56) Simon: Attack Y2 R3

57) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Wil
Build B3 G2

58) Simon: Build B3 Third

59) wil: Sacrifice Y2 G2
Move R1 Wil Third
Move R1 Wil Third
Catastrophe Third R

60) Simon: Trade B2 R2 G1

61) wil: Discover G3 G2 R3 Arr3

62) Simon: Sacrifice G3 Simon
Build G3 Simon
Build R1 G1
Build Y2 Third
	wil: from the debris we discovered a pirate system...

63) wil: Move B3 G2 Arr3
	Simon: New and exciting, making a catastrophe only to recover a piece as a pathway.

64) Simon: Move R1 G1 Arr3
	wil: Similar to a teleport with ships...but in two moves...

65) wil: Attack R1 Arr3
	Simon: All abort the pirate ship!

66) Simon: Sacrifice G3 Simon
Build G3 Simon
Build R1 G1
Build B2 G1
	wil: welcome aboard young straggler, are you lost?  we will accommodate your needs...said the spider to the fly...me thinks you may have just entered the web, now if you'd please string the trap

67) wil: Sacrifice Y2 G2
Move R2 G2 G1
Move R1 Arr3 G1
Catastrophe G1 R

68) Simon: Trade B2 R2 G1
	wil: sproing... foist trap released

69) wil: Move Y3 Gee2 Arr3

70) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y2 G1
Build R1 G1

71) wil: Move G3 Arr3 Simon
	wil: nice moves...that exchange lost me ground

72) Simon: Attack G3 Simon

73) wil: Sacrifice Y3 Arr3
Move G1 Wil G2
Move G1 G2 Arr3
Move G1 Arr3 Simon
Catastrophe Simon G
	Simon: thanks :) I expected a retreat, but then I get first dips on moving in. Returning the 1 large ship seems better, you get to make the first move later.

74) Simon: Sacrifice Y1 Third
Move B3 R3 Simon

75) wil: Build R1 G2

76) Simon: Trade B3 G3 Simon

77) wil: Build G1 Wil

78) Simon: Build G1 Simon

79) wil: Trade G3 Y3 Wil

80) Simon: Sacrifice Y3 G1
Move Y2 Third Wil
Move Y2 R3 Third
Move Y2 Third Wil
Catastrophe Wil Yellow

81) wil: Move R3 Gee2 Wil
	wil: sweet, missed that.

82) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 G1
Build B2 G1

83) wil: Build G3 Wil
	Simon: hnn, it was an opening after a long while >_>

84) Simon: Discover B2 G1 Y3 Y3

85) wil: Build B3 G2

86) Simon: Move B2 Y3 Wil

87) wil: Attack B2 Wil
	wil: this is the end...

88) Simon: Sacrifice Y2 G1
Move B3 Third Wil
Move B1 Third Wil
Catastrophe Wil Blue
	Simon: You've played a better opening game again. I somehow managed to equalize later on, not sure how exactly. Thanks, great ideas in this round.
	wil: feel free to challenge me anytime...



27809)
Variants: "Hard time"
Started: 2015.7.8, Ended: 2015.7.30
Participants: endo (S), Aghmarck (N)
Winner: endo

1) Aghmarck: Homeworld Y1 B2 G3

2) endo: Homeworld Y1 B3 G3

3) Aghmarck: Build G1 Aghmarck

4) endo: Build G1 Endo

5) Aghmarck: Trade G1 Y1 Aghmarck

6) endo: Trade G3 Y3 Endo

7) Aghmarck: Build Y2 Aghmarck

8) endo: Build Y2 Endo

9) Aghmarck: Trade Y2 G2 Aghmarck

10) endo: Discover Y2 Endo G2 Subtle

11) Aghmarck: Build Y2 Aghmarck

12) endo: Build Y2 Subtle

13) Aghmarck: Discover Y2 Aghmarck G3 Verdega

14) endo: Build Y3 Endo

15) Aghmarck: Build Y3 Verdega

16) endo: Trade Y3 R3 Endo

17) Aghmarck: Trade Y1 R1 Aghmarck

18) endo: Build R1 Endo

19) Aghmarck: Discover Y3 Verdega G2 Verda

20) endo: Move Y2 Subtle Verdega

21) Aghmarck: Build Y1 Verdega

22) endo: Build Y3 Subtle

23) Aghmarck: Build G1 Aghmarck

24) endo: Sacrifice Y3 Endo
Move G1 Endo Verda
Move G1 Verda Verdega
Move G1 Verdega Aghmarck
Catastrophe Aghmarck G



27810)
Variants: "Hard time"
Started: 2015.7.9, Ended: 2015.7.21
Participants: Simon (S), Mandrel (N)
Winner: Simon

1) Mandrel: Homeworld R1 B2 G3

2) Simon: Homeworld B3 Y1 G3
	Mandrel: Have a good game

3) Mandrel: Build G1 Mandrel
	Simon: Hi, enjoy!

4) Simon: Build G1 Simon

5) Mandrel: Trade G1 Y1 Mandrel

6) Simon: Trade G1 R1 Simon

	Simon: Hi, you're low on time. Take care. :)


27822)
Variants: "Hard time"
Started: 2015.7.12, Ended: 2015.7.27
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B3 R1 G3

2) wil: Homeworld Y2 B1 G3
	dlwillson: Have fun!
	wil: the pest is back

3) dlwillson: B G1 Dlwillson

4) wil: Build G1 Wil
	dlwillson: Happy to see you. I'm here to play.
	wil: b g1 wil

5) dlwillson: T G1 Y1 Dlwillson
	wil: ya gotta put the order in the right box

6) wil: Trade G1 Y1 Wil

7) dlwillson: B G1 Dlwillson

8) wil: Build G1 Wil

9) dlwillson: T G1 R1 Dlwillson

10) wil: Trade G1 R1 Wil

11) dlwillson: B R2 Dlwillson

12) wil: Build R2 Wil

13) dlwillson: T R2 Y2 Dlwillson

14) wil: Trade R2 Y2 Wil

15) dlwillson: D Y1 Dlwillson B2 Sky

16) wil: Discover Y1 Wil G3 G3

17) dlwillson: B R2 Dlwillson

18) wil: Build R2 Wil

19) dlwillson: M R1 Dlwillson Sky

20) wil: Discover Y2 Wil B3 B3

21) dlwillson: Build G1 Dlwillson

22) wil: Trade R2 G2 Wil

23) dlwillson: B R2 Dlwillson

24) wil: Build R2 Wil

25) dlwillson: S G1 Dlwillson
B R3 Sky

26) wil: Move R2 Wil B3

27) dlwillson: T R2 G2 Dlwillson

28) wil: Sacrifice G2 Wil
Build R2 B3
Build R3 Wil

29) dlwillson: M R3 Sky G3

30) wil: Move R2 B3 Sky
	dlwillson: Sorry for the delay. I didn't see an obvious move, and then I forgot about it for a while.

31) dlwillson: S G3 Dlwillson
B Y1 Sky
B Y3 Dlwillson
B R3 G3

32) wil: Sacrifice Y2 B3
Move R1 Wil G3
Move R2 Sky G3
Catastrophe G3 R

33) dlwillson: T Y1 G1 Sky

34) wil: Sacrifice Y1 G3
Move R2 B3 Sky

35) dlwillson: Sacrifice G2 Dlwillson
Build R1 Sky
Build R2 Sky
Catastrophe Sky R

36) wil: Build G1 Wil

37) dlwillson: T Y3 G3 Dlwillson

38) wil: Trade G1 B1 Wil

39) dlwillson: Trade Y1 B1 Sky

40) wil: Discover B1 Wil G3 G3

41) dlwillson: Build B2 Sky

42) wil: Build B2 G3

43) dlwillson: T B2 Y2 Sky

44) wil: Trade B1 Y1 G3

45) dlwillson: M R2 Dlwillson Sky

46) wil: Build R1 Wil

47) dlwillson: M B1 Sky G3

48) wil: Move R3 Wil G3

49) dlwillson: B B1 G3
	wil: The home office has sent an emissary to greet our visitor.   

50) wil: Discover B2 G3 G2 G2

51) dlwillson: T Y2 R2 Sky
	wil: Interesting position...I wish we could play it out this way...and then play it out again where I sacked by R3 and took both of those...

52) wil: Attack B1 G3
	dlwillson: You might have me beat this time.

53) dlwillson: Sacrifice Y2 Dlwillson
Move R2 Sky G3
Move R2 Sky G3
	wil: there is time for me to screw up still...

54) wil: Attack B1 G3

55) dlwillson: Attack Y1 G3
	wil: even more interesting...I was sure before you were going to send the two blues in to attack half my homeworld..this is all a surprise


56) wil: Build R1 G3
Catastrophe G3 R

57) dlwillson: M Y1 G3 Sky
	wil: again unexpected...and I don't want to play othello...so I'll move it on...

58) wil: Build B2 G2

59) dlwillson: B G1 Dlwillson

60) wil: Build B3 G2

61) dlwillson: B G1 Sky

62) wil: Build G2 Wil

63) dlwillson: S G3 Dlwillson
B G2 Sky
B Y1 Sky
B G3 Dlwillson

64) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 G3
Build R1 Wil

65) dlwillson: T G2 Y2 Sky
	wil: I am feeling more comfortable now that your prediction is correct...

66) wil: Sacrifice B2 G2
Trade B3 Y3 G3
Trade B3 R3 G2

67) dlwillson: Move Y1 Sky G3

68) wil: Sacrifice G2 Wil
Build B2 G2
Build B3 G3

69) dlwillson: Move G1 Sky G3

70) wil: Move B3 G3 Sky

71) dlwillson: Sacrifice G3 Dlwillson
Build G2 G3
Build G2 G3
Build G3 Dlwillson
Catastrophe G3 G

72) wil: Sacrifice R3 G2
Attack G1 Sky
Attack Y1 Sky
Attack Y2 Sky

73) dlwillson: Trade G1 Y1 Dlwillson
	wil: I didn't see that coming either...nice
	wil: while it is one I'll hopefully save in my memory banks..it appears it backfired somewhat.
	dlwillson: I have no illusions about who's ultimately winning here. I'm just looking for interesting opportunities, like that one, in the declining game.

74) wil: Sacrifice G3 Wil
Build B1 G2
Build B1 Sky
Build R2 Wil

75) dlwillson: B G1 Dlwillson
	dlwillson: What I need is a bow and arrow. Two free moves and I could have them. The and I could fire it. :-)

76) wil: Trade B3 G3 Sky

77) dlwillson: M G1 Dlwillson G2
	wil: lol...yup...treadin dangerouse waters...
	wil: I've never cornered two commodities before...but I've got them backwards...I need the red on the frontline and the blue in my homeworld...
	wil: ah...you just made me aware of what I need to do..
	wil: something I never really saw before...dawn just broke over marble head

78) wil: Trade B2 R2 G2

79) dlwillson: B G1 G2

80) wil: Sacrifice R2 Wil
Attack G1 G2
Attack G1 G2

81) dlwillson: B G2 Dlwillson

82) wil: Sacrifice Y2 Sky
Move G1 Sky Dlwillson
Move G1 G2 Dlwillson
Catastrophe Dlwillson G
	wil: one strange game...

83) dlwillson: T Y1 G1 Dlwillson

84) wil: Move B1 Sky Dlwillson

85) dlwillson: A B1 Dlwillson

86) wil: Move G3 Sky Dlwillson
	wil: yup, one strange game... 

87) dlwillson: B G1 Dlwillson
	wil: LOL...what was I thinking?

88) wil: Sacrifice R2 G2
Attack G1 Dlwillson
Attack G1 Dlwillson

89) dlwillson: Pass

90) wil: Attack B1 Dlwillson
	wil: unless you have another rabbit in that hat

	dlwillson: Nope. That's a wrap.
	wil: and now I have to defend...
	wil: If there was only a b1 in the bank...I wanted to sack my b2 and change the colors of my green to catastrophe b's...all that would be left would be pawns on the board
	dlwillson: Congrats and good game! See you in about a week.


27820)
Started: 2015.7.13, Ended: 2015.9.1
Participants: r01andg (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3

2) r01andg: Homeworld Y2 G3 B3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	r01andg: You too!

4) r01andg: Build B1 R01andg

5) ts52: Trade G1 B1 Ts52

6) r01andg: Discover B1 R01andg G1 Terra1

7) ts52: Build B2 Ts52

8) r01andg: Build B2 R01andg

9) ts52: Discover B2 Ts52 G2 Kermit

10) r01andg: Trade B1 G1 Terra1

11) ts52: Build G1 Ts52

12) r01andg: Move B2 R01andg Terra1

13) ts52: Discover G1 Ts52 Y2 Bigbird

14) r01andg: Trade B2 Y2 Terra1

15) ts52: Build G2 Bigbird

16) r01andg: Build Y1 Terra1

17) ts52: Trade B1 Y1 Ts52

18) r01andg: Move Y2 Terra1 Kermit

19) ts52: Trade B2 R2 Kermit

20) r01andg: Discover Y1 Terra1 G3 Terr2

21) ts52: Attack Y2 Kermit



27772)
Variants: "Unrated"
Started: 2015.7.13, Ended: 2015.7.18
Participants: wil (S), AcetyleneLamp (N)
Winner: wil

1) AcetyleneLamp: Homeworld B1 G2 Y3
	AcetyleneLamp: Where are the system lablels? I clicked hide/show system labels a couple of times and there still aren't any labels.
	AcetyleneLamp: What kind of first move should I make?
	AcetyleneLamp: Have you played this before? I don't understand how to do anything.

2) wil: Homeworld B3 Y2 G3
	AcetyleneLamp: I found the games in progress on this site and looked at the commands for archived games. I still don't quite understand what I'm doing though.
	AcetyleneLamp: I'm trying to learn how to play some Looney Pyramid games on this site so I can introduce them to people I know in an offline gaming group. They might not go for this one (I think Zendo is out of the question), but they might like some of the simpler games like Blam.
	wil: You've chosen a fine start...banker star system...the yellow big ship is questionable...it works but is better suited for an experienced star ship captain...easier with a green (to maintain factory) I'll show you why... (don't know about system labels, never clicked that before)
	wil: anyone who likes chess will love this when they grock how incredible it is.

3) AcetyleneLamp: Build Y1 Acetylenelamp
	AcetyleneLamp: Ok, what kinds of things can I do now? I tried to build a new ship in my home system but it's telling me I need to already have one of the same color? How do I get that?
	wil: You have a G in your homeworld star so you can always build (I have a G ship, so while my homeworld stars don't have that ability I do)  So you only have a mockup for a yellow ship, you can only build what you already have...so you can build yellow.

After you've built (first real move is a small ship the same color as the large ship..we are discussing as to whether that is will be the real start (there are times when a response may not be)..anywho... then you can trade (since you have blue in your star) either of those ships to a different color and then have the ability to build it as well)  G build/grow...Y move/fuel  B  trade/change  R attack

one other biggie...over population, 4 of any one color in a star system (including the star) can cause a catastrophe and all the pieces of that color go back to the bank (if the star blows too, then all the ships anchored in that system are destroyed as well.   We call this a reboot...

4) wil: Build G1 Wil
	AcetyleneLamp: Sorry if it seems like I'm relying on you to teach me these games, the rules for some of them don't really make sense to me until I've had a chance to play a game or two, and the somewhat clunky interface on this site doesn't help.
	AcetyleneLamp: Why doesn't think game have a list of legal rules you can bring up like the others?
	AcetyleneLamp: Legal moves, I mean.
	wil: this site is basically been running wild for awhile..aint the best and all we got... to much work coding legal moves on this one....but there is some behind the scenes (different curtain) shenanigans going on
	wil: like any game there is a learning curve...some slow some fast...learning curve for something as simple as go...  this is not as long as chess..four or five games and you'll have about all the tricks figured...then it is seeing them

	wil: If you wish, I'll inform you reason of and ask you to back off of a noticeably bad move.. and try again... I'll also tell you of situations I established and why...
	wil: you can only move to stars of a different star than the one your ship is currently in...so you can only move to 3s and I can only move to 1s right now.  
	wil: When you discover a new system...you name it..whatever you'd like..for future reference (in live games they don't get a name)
	AcetyleneLamp: I'm trying to discover a new system but it says there are insufficient pieces in the stash.
	wil: what is listed as the global reserve stash is the bank...you can't discover a star that doesn't have it in the bank...


27742)
Variants: "Hard time"
Started: 2015.7.20, Ended: 2015.7.23
Participants: wil (S), SilentTitan (N)
Winner: wil



27829)
Variants: "Unrated"
Started: 2015.7.21, Ended: 2015.8.27
Participants: jeep (S), wil (N)
Winner: wil

1) wil: Homeworld Y3 B2 G3
	wil: ooo ooh thx for the game!

2) jeep: Homeworld B3 Y1 G3

3) wil: Build G1 Wil
	jeep: thanks for leaving up the challenge. I've been away for a couple years and am trying to ease back into playing here. I will be travelling for GenCon, but expect I can keep up with this one game. ;)
	wil: lol...  I can't get enough of this game.. 

4) jeep: Build G1 Jeep

5) wil: Trade G1 R1 Wil
	jeep: Cool... FYI, I am unlikely to make a play tomorrow as I'll be driving, but I will make my move when I can.
	wil: no worries...ome folks don't play for days...I just look when it shows up and play then...

6) jeep: Trade G1 R1 Jeep

7) wil: Build G1 Wil

8) jeep: Build G1 Jeep

9) wil: Trade G1 Y1 Wil

10) jeep: Trade G1 Y1 Jeep
	jeep: Ugh... I am so rusty...

11) wil: Build Y2 Wil

12) jeep: Build Y2 Jeep
	wil: I need rusty...

13) wil: Discover Y1 Wil G1 G1

14) jeep: Discover Y1 Jeep G2 G2

15) wil: Discover Y2 Wil B1 B1

16) jeep: Build G1 Jeep

17) wil: Build G1 Wil

18) jeep: Build G2 Jeep

19) wil: Sacrifice G3 Wil
Build G2 Wil
Build G3 Wil
Build Y2 B1

20) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y3 G2
Build R1 Jeep

21) wil: Move G2 Wil B1
	jeep: Sorry for the delay. I should play more frequently when GenCon is over.

22) jeep: Discover G2 Jeep B2 B2
	wil: Were you a vendor or participant?  Did you see the Looneys?
	jeep: Participant. I saw Kristin as she walked by. Said "hi" to Andy, but he didn't remember me and he was too busy for me to remind him who I was. ;)


23) wil: S G3 Wil
Build G3 B1
Build G3 Wil
Build Y3 G1

24) jeep: Discover Y1 G2 B1 B1-2

25) wil: Trade G3 R3 B1
	jeep: Sorry for the delay. It always seems to happen that when I start up a game here, something happens...
	wil: no worries

26) jeep: Build G3 B2

27) wil: Sacrifice G3 Wil
Build R2 Wil
Build R2 B1
Build G3 Wil

28) jeep: Trade G2 R2 B2

29) wil: Trade R1 B1 Wil

30) jeep: Sacrifice G3 Jeep
Build G2 B2
Build G3 Jeep
Build R1 B2

31) wil: Sacrifice G3 Wil
Build G3 Wil
Build R3 Wil
Build B2 Wil

32) jeep: Trade G3 B3 B2

33) wil: S Y2 B1
M R3 Wil G1
M B2 Wil G1
	jeep: Yeah, this game is all over but the crying...

34) jeep: Sacrifice Y2 Jeep
Move R2 B2 B1
Move R1 B2 B1
Catastrophe B1 Red

35) wil: S G3 Wil
B G3 Wil
B G3 B1
B Y2 B1

36) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y2 B1-2
Pass

37) wil: S G3 Wil
B G3 Wil
B R1 Wil
B B3 G1

38) jeep: Move R1 Jeep B2

39) wil: M R2 Wil B1

40) jeep: Move Y1 B1-2 B2

41) wil: S Y2 B1
M B3 G1 G2
M Y3 G1 G2

42) jeep: Trade B3 R3 B2

43) wil: S R1 Wil
A Y3 G2

44) jeep: Sacrifice G3 Jeep
Build G3 Jeep
Build Y2 B2
Build R1 Jeep
	jeep: And it gets more and more grim...
	wil: Yeah,but that's a good move....slowed my plan...
	wil: Yeah,but that's a good move....slowed my plan...

45) wil: S G3 Wil
B B3 G2
B R2 B1
B G3 Wil

46) jeep: Move Y1 B2 B1-2

47) wil: T B3 R3 G2

48) jeep: Trade Y2 R2 B1-2

49) wil: S Y2 B1
M R2 B1 B2
M R2 B1 B2
C B2 R
	wil: Two moves to mate...unless

50) jeep: Move Y1 B1-2 Wil

51) wil: S Y3 G2
M Y3 G2 Jeep
M R3 G2 Jeep
M B3 G2 Jeep
	wil: Occupation vehicles in place...

52) jeep: Sacrifice G3 Jeep
Build G2 Jeep
Build Y2 Wil
Build Y2 Wil
Catastrophe Wil Yellow

53) wil: S R3 Jeep
A G2 Jeep
A R1 Jeep
A R1 Jeep
	wil: We gracefully accept your gift
	wil: And have sent a welcoming envoy to introduce your peoples tontheir new rulers..

54) jeep: Sacrifice Y2 B2
Move G2 B2 B1
Move G2 B1 Wil

55) wil: A G1 Jeep
	wil: Our old homeworld was a superfund site, se are amazed at not only what a wonderful job you've done on the environment here.,.but also how fast you cleameed uot that oil spill...

	jeep: gg
	wil: We just kind of oil does rusty parts and gets too short back in the games and it back


27790)
Variants: "Hard time"
Started: 2015.7.22, Ended: 2015.7.29
Participants: wil (S), Simon (N)
Winner: wil

1) Simon: Homeworld B3 G1 R3

2) wil: Homeworld B3 Y2 G3
	Simon: Have fun!
	wil: Oh, alright, if you insist!  Seriously thanx for the game...
	wil: and now he looks at your opening and says "WoW"

3) Simon: Build R1 Simon

4) wil: Build G1 Wil

5) Simon: Build R1 Simon

6) wil: Trade G1 R1 Wil

7) Simon: Trade R1 Y1 Simon

8) wil: Build G1 Wil

9) Simon: Discover R1 Simon G2 G2

10) wil: Build G1 Wil

11) Simon: Build Y1 Simon

12) wil: Discover G1 Wil B1 B1

13) Simon: Build R1 Simon

14) wil: Sacrifice G3 Wil
Build G2 Wil
Build G2 B1
Build G3 Wil

15) Simon: Build R2 G2

16) wil: Sacrifice G3 Wil
Build G3 Wil
Build G3 B1
Build R2 Wil

17) Simon: Build R2 Simon

18) wil: Trade G3 R3 B1

19) Simon: Build R3 G2

20) wil: Build G3 B1

21) Simon: Trade R2 B2 Simon

22) wil: Trade G3 Y3 B1

23) Simon: Sacrifice B2 Simon
Trade R1 B1 G2
Trade R3 Y3 G2

24) wil: Discover G2 B1 B2 B2

25) Simon: Discover Y3 G2 G3 G3

26) wil: Build G3 B2

27) Simon: Trade Y1 B1 Simon

28) wil: Trade G3 R3 B2
	Simon: Alright, the red ship sucked x_X

29) Simon: Trade R3 G3 Simon
	wil: You dang war mongers...

30) wil: Sacrifice G2 Wil
Build R1 B2
Build G2 B2

31) Simon: Sacrifice G3 Simon
Build B2 G2
Build B2 G2
Build B3 Simon
	wil: Oh....so now you wanna go green?   After the sea rises?

32) wil: Build G3 B2
	wil: https://www.youtube.com/watch?t=14&v=d90ZWD4I9O0

33) Simon: Trade B2 Y2 G2

34) wil: Trade G3 Y3 B2

35) Simon: Trade B3 G3 Simon

36) wil: Sacrifice Y3 B1
Move G2 B2 Simon
Move G2 B2 Simon
Move R3 B2 Simon
Catastrophe Simon G

37) Simon: Sacrifice Y2 G2
Move B1 G2 Simon
Move B2 G2 Simon
Catastrophe Simon B
	Simon: Nice, thanks for the game. Anything else than making a g3 didn't look enticing either.
	wil: no, ya done right...I got ahead when I created that queen mill...
	wil: Challenge me anytime...this game is never the same..



27903)
Variants: "Hard time"
Started: 2015.7.27, Ended: 2015.9.29
Participants: Grosseteste (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 Y1 G3

2) Grosseteste: Homeworld B2 Y1 G3
	Simon: Hi, have fun!

3) Simon: Build G1 Simon
	Grosseteste: Likewise, thanks for the game!

4) Grosseteste: Build G1 Grosseteste

5) Simon: Trade G1 Y1 Simon

6) Grosseteste: Discover G1 Grosseteste B3 Charlie

7) Simon: Build Y2 Simon

8) Grosseteste: Build G1 Charlie

9) Simon: Discover Y2 Simon G2 G2

10) Grosseteste: Build G1 Grosseteste

11) Simon: Build Y2 G2

12) Grosseteste: Trade G3 Y3 Grosseteste

13) Simon: Build G2 Simon

14) Grosseteste: Build G2 Grosseteste

15) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y2 Simon
Build Y3 G2

16) Grosseteste: Discover G1 Grosseteste B3 Linus

17) Simon: Trade Y2 B2 Simon

18) Grosseteste: Build G3 Grosseteste

19) Simon: Sacrifice B2 Simon
Trade Y2 R2 G2
Trade Y2 B2 G2

20) Grosseteste: Sacrifice Y3 Grosseteste
Move G1 Linus G2
Move G1 Charlie G2
Move G1 Charlie G2
Catastrophe G2 G

21) Simon: Build Y2 Simon

22) Grosseteste: Trade G2 Y2 Grosseteste

23) Simon: Discover Y2 Simon B2 B2

24) Grosseteste: Build G1 Grosseteste

25) Simon: Sacrifice G3 Simon
Build Y2 B2
Build Y3 B2
Build Y3 Simon

26) Grosseteste: Discover G1 Grosseteste Y3 Chuck

27) Simon: Trade Y3 G3 B2

28) Grosseteste: D Y2 Grosseteste G3 Linus

29) Simon: Trade Y2 R2 B2

30) Grosseteste: B G1 Grosseteste

31) Simon: Sacrifice Y2 B2
Move G3 B2 Chuck
Move G3 Chuck Grosseteste

	Grosseteste: Doh! Didn't see that coming.  GG
	Simon: gg -- Thanks for the game!


27883)
Variants: "Hard time"
Started: 2015.7.29, Ended: 2015.8.15
Participants: DOA (S), wil (N)
Winner: DOA

1) wil: Homeworld B3 Y1 G3
	wil: thanx for the game...

2) DOA: Homeworld G3 Y2 B3
	wil: Can't find a live game?

3) wil: Build G1 Wil
	DOA: Thanks and have fun.  Not many live games for me, sadly. People just don't "get" homeworlds sometimes or don't like the head to head aspect of games that I enjoy, so....  what do ya do? :)
	wil: I always liked chess...and think the complexity here is more than equivalent, I keep thinking I should find a local chess club and introduce it.

4) DOA: Build B1 Doa
	wil: Interesting opening...  so how many games have you played?  And do you like fortress and blue or are you experimenting?

5) wil: Trade G1 B1 Wil
	DOA: I've played maybe... 40 games tops, but mostly against the same opponent. Fortress is an experiment but I like blue.

Yeah, I feel like most chess people would like this game. The fact that homeworlds is comparatively young is a huge draw for me.  The future is wide open. I have a hard time hooking anyone with it  because of the learning curve and many choices.

6) DOA: Trade B1 G1 Doa

7) wil: Build G1 Wil

8) DOA: Discover G1 Doa B1 Lxsx
	wil: I don't see where the learning curve is longer than chess...  I played and played here watched various attacks take me out...

9) wil: Discover B1 Wil G2 G2

10) DOA: Build G1 Lxsx

11) wil: Trade G1 R1 Wil

12) DOA: Trade G1 Y1 Lxsx

13) wil: Trade B1 Y1 G2

14) DOA: Build Y2 Lxsx
	wil: yup...did that backwards..

15) wil: Build Y2 G2

16) DOA: Trade Y1 R1 Lxsx

17) wil: Build G1 Wil

18) DOA: Build B1 Doa

19) wil: Trade G1 B1 Wil

20) DOA: Discover B1 Doa Y1 Opip

21) wil: Discover Y1 G2 G1 G1
	wil: where are you out of...and how did you find homeworlds?

22) DOA: Sacrifice Y2 Lxsx
Discover B1 Opip G2 Gee
Discover G1 Lxsx B2 Bee
	DOA: I'm out of AZ. I discovered homeworlds out of PwP, then binary from wunderland.  Got stashes, found a friend to learn with, and now here we are. 

Came here because of that post on Wunderland about Andy wanting opponents and offering a metal to the winners haha.  I have never made it out east for anything game related nor would I win, but a guy can have a dream. ^_^

23) wil: Move Y2 G2 Lxsx
	wil: I am in the DC area and picked up HW during localgame nights...my daughter bought zendo first...a long time ago..
	wil: Practice here...and then challenge him at a convention and earn that medal!!
	wil: 1st grade to 3rd grade I lived in Pheonix...  visited often...love the SW

24) DOA: Build B2 Gee

25) wil: Discover B1 Wil G2 G2

26) DOA: Trade B2 Y2 Gee
	DOA: I have to agree about the SW. :) I have not visited the DC area sense I was in middle school. All the historical stuff, it was neat. Only played zendo a few times, but it was a lot of fun. It's awesome you're daughter had/has a zendo box. "alpha" pyramid stuff is really cool.

27) wil: Build B2 G2
	wil: I took my kids to a local game developer gathering, them showing and playtesting new games...Corey was there with Zendo, wits and wagers was being tested..my kids were each allowed to pick one game... it was a great experience...we did it a couple of years and then got caught up in life...didn't find pyramids again till a few years ago.
	wil: DC/MD/VA great spring and fall...stay away summer and winter...

28) DOA: Build B2 Gee

29) wil: Build R1 Wil
	wil: I just so enjoy how each game is sooo different

30) DOA: Build B3 Doa
	DOA: And how! It's one of the best parts for sure.
	wil: that and how a couple of reboots with catastrophes or attacks turns it into a brand new game in the middle...

31) wil: Trade B1 Y1 G2

32) DOA: Build Y3 Gee

33) wil: Build Y3 G2

34) DOA: Sacrifice Y2 Gee
Move B2 Gee Wil
Move B1 Gee Wil

35) wil: Build B1 G2

36) DOA: Sacrifice G1 Bee
Build B2 Wil
Catastrophe Wil Blue

37) wil: Move B2 G2 G1

38) DOA: Trade B3 R3 Doa

39) wil: Sacrifice R1 Wil
Attack R1 Lxsx

40) DOA: Build Y2 Gee

41) wil: Build Y3 G1
	DOA: uhh... never mind, then never mind that never mind. -_-

42) DOA: Discover Y2 Gee G3 Ugh

43) wil: B G1 Wil

44) DOA: Build B1 Doa

45) wil: B B2 G2

46) DOA: Sacrifice Y2 Ugh
Move Y3 Gee Wil
Move B3 Doa Wil

47) wil: A Y3 Wil

48) DOA: Sacrifice R3 Doa
Attack G3N Wil
Attack Y3N Wil
Attack R1N Wil

49) wil: S Y3 G2
M Y3 G1 Doa
M B2 G1 Doa
M B2 G2 Wil

50) DOA: Sacrifice G3 Wil
Build Y2 Wil
Build Y3 Wil
Pass
Catastrophe Wil Yellow

	wil: Luv it when it gets interesting
	wil: Luv it when it gets interesting
	DOA: Good game, thanks for playing.
	wil: Thank you! Challenge me anytime.. I enjoy playing hw..


27876)
Variants: "Unrated"
Started: 2015.8.3, Ended: 2015.8.6
Participants: mcowper (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3

2) mcowper: Homeworld R2 B1 G3
	wil: THANX for the game!  Good Luck.

3) wil: Build G1 Wil

4) mcowper: Build G1 Mcowper

5) wil: Trade G1 B1 Wil

6) mcowper: Trade G1 Y1 Mcowper

7) wil: Build B1 Wil

8) mcowper: Build G1 Mcowper

9) wil: Discover B1 Wil G2 G2

10) mcowper: Discover G1 Mcowper B3 Heinlein

11) wil: Build B2 G2

12) mcowper: Build G1 Mcowper

13) wil: Build B2 Wil

14) mcowper: Discover G1 Mcowper B3 Asimov

15) wil: Build B2 G2

16) mcowper: Build G1 Mcowper

17) wil: Sacrifice B2 Wil
Trade B2 Y2 G2
Trade B2 R2 G2
	wil: very nice

18) mcowper: Sacrifice G3 Mcowper
Build G2 Heinlein
Build G2 Asimov
Build G3 Mcowper

19) wil: Build G3 Wil

20) mcowper: Sacrifice G3 Mcowper
Build G3 Mcowper
Build Y1 Mcowper
Build Y2 Mcowper

21) wil: Move R2 G2 Asimov

22) mcowper: Sacrifice Y2 Mcowper
Discover G1 Asimov B2 Clarke
Discover G2 Asimov B2 Williamson
	wil: this is where I'd love to push a button, play it one way, then another, and another...I've no clue which is the best direction...

23) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Asimov
Build Y2 G2

24) mcowper: Move Y1 Mcowper Heinlein

25) wil: Move Y2 G2 Heinlein

26) mcowper: Sacrifice G3 Mcowper
Build Y2 Mcowper
Build Y3 Heinlein
Build G3 Mcowper

27) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 Heinlein
Build Y3 G2
Catastrophe Heinlein Y

28) mcowper: Sacrifice Y2 Mcowper
Move G1 Clarke Wil
Move G2 Williamson Wil
Catastrophe Wil G
	wil: Again three choices and don't know which was best...this should be fun.
	wil: these are the times I wish I was the kinda guy that set up a physical board and thought about it and didn't just shoot from the hip...

29) wil: Move Y2 G2 Heinlein

30) mcowper: Trade G2 R2 Heinlein

31) wil: Sacrifice R2 Asimov
Attack R2 Heinlein
Attack G1 Heinlein

32) mcowper: Build Y1 Mcowper
	wil: Putting two queen g's on the chopping block doesn't seem so ridiculous now

33) wil: Build G1 Heinlein

34) mcowper: Discover G1 Mcowper G3 Niven

35) wil: Build G2 Heinlein

36) mcowper: Move Y1 Mcowper Niven

37) wil: Move Y3 G2 Niven

38) mcowper: Sacrifice G3 Mcowper
Build Y2 Niven
Build Y2 Niven
Build Y3 Mcowper
Catastrophe Niven Y

39) wil: Discover G1 Heinlein Y2 Y2
	wil: oh hell....great move!!

40) mcowper: Trade Y3 R3 Mcowper

41) wil: Sacrifice Y2 Heinlein
Move R2 Heinlein Mcowper
Move R1 Asimov Mcowper
Catastrophe Mcowper R
	mcowper: Thank you. I think I'm getting better at this.

42) mcowper: Sacrifice G1 Niven
Build Y1 Mcowper
	wil: me thinks we both made the same mistake!
	mcowper: How did I not see that coming? Maybe I'm not getting better. I'm pretty sure that I have lost at this point. I'll go a couple of more turns and see what happens.

43) wil: Trade G2 R2 Heinlein
	wil: It is going to take me a couple of moves...but you didn't see it the exact same way I didn't see yours...we get a plan, and then ego and tunnel vision collude...

44) mcowper: Trade Y1 G1 Mcowper

45) wil: Build G2 Heinlein

46) mcowper: Build Y1 Mcowper
	wil: Interesting, you are one step ahead...so I've got to do some maneuvering to retake or I'll be in another blunder..

47) wil: Build B2 G2

48) mcowper: Build Y2 Mcowper

49) wil: Trade B2 Y2 G2

50) mcowper: Trade Y2 R2 Mcowper

51) wil: Build B2 G2
	wil: the dance of not givin your opponent access to the next larger size...

52) mcowper: Build Y2 Mcowper
	wil: I've got a plan to come visit your fine homeworld..the ships are gassed up

53) wil: Build Y3 G2
	wil: here goes nuthin
	wil: nope...that ain't gonna work..

54) mcowper: Build G2 Mcowper
	wil: ball back in your court...taking it the slow safe way...

55) wil: Build B2 G2
	mcowper: I'm pretty sure that all that I can do is delay the inevitable.

	wil: lol... I've been wasting my time..  and we've just encountered an error in the system..I could sack my y3 and send in y2 and two Gs and catastrophe all your Ys and Gs but the system won't allow any moves after the first catastrophe.... which made me realize why am i focused on your ships when I only need to attack the star...
	mcowper: I saw that double catastrophe and was wondering if the system could handle it. I was kind of figuring that you would go after the star. I'm resigning. Thank you for a good game. We'll play again soon.
	wil: quite the back and forth...challenge anytime...thanx


27920)
Variants: "Unrated"
Started: 2015.8.7, Ended: 2015.8.12
Participants: mcowper (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3
	wil: thanks...hava good game

2) mcowper: Homeworld R2 B1 G3

3) wil: Build G1 Wil

4) mcowper: Build G1 Mcowper

5) wil: Trade G1 B1 Wil

6) mcowper: Trade G1 B1 Mcowper

7) wil: Trade B1 Y1 Wil

8) mcowper: Build G1 Mcowper

9) wil: Build Y1 Wil

10) mcowper: Trade G3 Y3 Mcowper

11) wil: Discover Y1 Wil G2 G2

12) mcowper: Build Y2 Mcowper

13) wil: Build Y2 Wil

14) mcowper: Build G1 Mcowper

15) wil: Trade Y1 R1 Wil

16) mcowper: Discover G1 Mcowper Y3 Asimov

17) wil: Build R1 Wil

18) mcowper: Trade Y3 G3 Mcowper

19) wil: Move R1 Wil G2

20) mcowper: Trade G1 R1 Mcowper

21) wil: Build R2 G2

22) mcowper: Build G1 Mcowper

23) wil: Move R2 G2 Asimov

24) mcowper: Discover G1 Asimov B2 Bradbury

25) wil: Sacrifice G3 Wil
Build R2 Asimov
Build R3 Wil
Build R3 Wil

26) mcowper: Discover R1 Mcowper B3 Clarke

27) wil: Trade R3 Y3 Wil

28) mcowper: Build Y1 Mcowper

29) wil: Discover Y3 Wil G2 Gee2

30) mcowper: Discover Y1 Mcowper B3 Delaney

31) wil: Build R3 G2

32) mcowper: Sacrifice G3 Mcowper
Build R3 Clarke
Build Y2 Delaney
Build Y3 Mcowper

33) wil: Trade R3 G3 Wil

34) mcowper: Trade Y3 G3 Mcowper

35) wil: Build Y3 G2

36) mcowper: Sacrifice G3 Mcowper
Build G1 Bradbury
Build G2 Bradbury
Build G3 Mcowper

37) wil: Build R3 Wil

38) mcowper: Trade G1 B1 Bradbury

39) wil: Move R3 Wil Bradbury

40) mcowper: Sacrifice G2 Bradbury
Build B2 Bradbury
Build B2 Bradbury
Catastrophe Bradbury B

41) wil: Build R3 Wil

42) mcowper: Build G1 Mcowper

43) wil: Sacrifice Y3 Gee2
Move R1 Wil G2
Move R1 G2 Clarke
Move R1 G2 Clarke
Catastrophe Clarke R
	wil: On the precipice... 


44) mcowper: Build Y3 Mcowper

45) wil: B R1 G2

46) mcowper: Discover G1 Mcowper B3 Ellison

47) wil: M Y3 G2 Ellison

48) mcowper: Sacrifice Y2 Mcowper
Discover G1 Ellison Y2 Flint
Move G1 Mcowper Delaney

49) wil: M R3 G2 Delaney

50) mcowper: Trade G3 R3 Mcowper

51) wil: S Y3 Ellison
M R3 Wil Flint
M R2 Asimov Mcowper
M R2 Asimov Mcowper
C Mcowper R

	mcowper: I should have resigned last turn. Thank you for the game.
	wil: Thank you! For the game...challenge me anytime!


27944)
Variants: "Hard time"
Started: 2015.8.9, Ended: 2015.9.1
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B3 Y1 G3 Dlwillson

2) wil: Homeworld Y2 B1 G3

3) dlwillson: Build G1 Dlwillson

4) wil: Build G1 Wil

5) dlwillson: Trade G1 Y1 Dlwillson

6) wil: Trade G1 Y1 Wil

7) dlwillson: Build Y2 Dlwillson

8) wil: Build Y2 Wil

9) dlwillson: Discover Y1 Dlwillson G2 Field

10) wil: Discover Y1 Wil G3 G3

11) dlwillson: Build Y3 Field

12) wil: Build Y3 G3

13) dlwillson: T Y2 R2 Dlwillson

14) wil: Trade Y2 R2 Wil

15) dlwillson: D Y1 Field B3 Sky

16) wil: D Y3 G3 G2 G2
	dlwillson: Sorry for the delay

17) dlwillson: B Y2 Field
	dlwillson: B y2 field

18) wil: B Y2 G3
	dlwillson: Oops :-)

19) dlwillson: Trade Y1 G1 Sky
	wil: I do that all the time... 

20) wil: B R1 Wil

21) dlwillson: Move Y2 Field Sky

22) wil: D R2 Wil Y3 Y3

23) dlwillson: Build G1 Dlwillson

24) wil: B G1 Wil

25) dlwillson: Sacrifice G3 Dlwillson
Build G2 Sky
Build Y1 Field
Build G3 Dlwillson

26) wil: Build R1 Wil

27) dlwillson: S Y3 Field
M G2 Sky Wil
M G1 Sky Wil
M Y2 Sky Wil
C Wil G

28) wil: M Y2 G3 Wil
	wil: Igotts watch better

29) dlwillson: B Y3 Field

30) wil: A Y2 Wil

31) dlwillson: M Y3 Field Y3
	wil: I thought I already lost this game... Oh I see I did... But this is where super duper games as an issue or it would be ended next move
	dlwillson: Actually, I goofed.
	wil: Join the club!

32) wil: D Y1 G3 B2 B2
	dlwillson: Sorry for the long delay. No obvious moves.

33) dlwillson: B R1 Dlwillson

34) wil: M Y1 B2 Y3
	dlwillson: Now that we're a couple moves out, what do you mean about SDG having an issue?
	wil: It doesn't allow you to continue to move after a catastrophe which would have allowed you to move in on me more 
	wil: It doesn't allow you to continue to move after a catastrophe which would have allowed you to move in on me more 

35) dlwillson: M Y3 Y3 Wil
C Wil Y

36) wil: T R1 G1 Wil
	dlwillson: All my fiddling around bought me nothing! Good job!

37) dlwillson: M R2 Dlwillson Field
	wil: Half a homeworld out numbered..
	wil: Half a homeworld out numbered..

38) wil: B G1 Wil

39) dlwillson: T G1 B1 Dlwillson

40) wil: B Y2 G2

41) dlwillson: B Y2 Field

42) wil: M Y3 G2 Wil

43) dlwillson: B B1 Dlwillson

44) wil: B Y2 Wil

45) dlwillson: Move Y1 Field Wil

46) wil: B Y3 G2

47) dlwillson: Move Y2 Field Wil
Catastrophe Wil Y
	dlwillson: I will snatch defeat from the jaws of victory!

48) wil: B Y1 G2
	wil: Should we really concern oucellves with Vic's foot fetish?

49) dlwillson: Move B1 Dlwillson Field

50) wil: M Y3 G2 Wil

51) dlwillson: Build B2 Field

52) wil: M Y3 Wil Field
	wil: Not quite deja vu... More like Groundhog Day, I keep seeing the same things and trying something different

53) dlwillson: T R2 Y2 Field

54) wil: S R2 Y3
A Y2 Field
A B2 Field
	wil: And this is different...

55) dlwillson: B B2 Field

56) wil: S R1 Wil
A B2 Field

57) dlwillson: B B2 Field
C Field B

58) wil: B Y2 Field
	wil: The twists and turns of this game are just so dramatic.,.

59) dlwillson: B B1 Dlwillson

60) wil: T G1 R1 Wil

61) dlwillson: D B1 Dlwillson G2 Forest

62) wil: B Y3 G2

63) dlwillson: Build B2 Dlwillson

64) wil: B R1 Wil

65) dlwillson: B R2 Dlwillson

66) wil: B R2 Wil

67) dlwillson: M R2 Dlwillson Forest

68) wil: T R2 B2 Wil

69) dlwillson: M B2 Dlwillson Field

70) wil: B R2 Wil

71) dlwillson: B B2 Field

72) wil: S R2 Wil
A B2 Field
A B2 Field

73) dlwillson: D B1 Dlwillson R2 Mars

74) wil: B B3 Wil

75) dlwillson: Build B3 Forest

76) wil: S Y2 Field
M B2 Wil Forest
M B3 Wil Forest
C Forest B

77) dlwillson: Sacrifice B1 Mars
Trade R2 Y2 Forest

78) wil: M Y3 G2 Wil

79) dlwillson: B R2 Dlwillson

80) wil: B R2 Wil

81) dlwillson: Move R2 Dlwillson Forest

82) wil: M R2 Wil Y3

83) dlwillson: Build R2 Dlwillson

84) wil: T R1 B1 Wil

85) dlwillson: Build G1 Dlwillson

86) wil: M B1 Wil G2

87) dlwillson: Discover R2 Dlwillson B2 Sky

88) wil: S Y3 Field
M B2 Field Dlwillson
M B2 Field Dlwillson
M B1 G2 Dlwillson
C Dlwillson B
	wil: Well...that took long enough
	wil: I believe doomsday machine is finally in place

89) dlwillson: Sacrifice G3 Dlwillson
Build R1 Sky
Build R3 Forest
Build R3 Dlwillson

90) wil: S Y3 Wil
M Y2 Field Dlwillson
M Y2 G2 Dlwillson
M Y1 G2 Dlwillson
C Dlwillson Y

	wil: It is time to rebuild the galaxy...  Lot o warships out tgere
	dlwillson: gg
	wil: Thanx for the game..I feel you had me...I got lucky as each big reboot I seemed to gain a little position.... And then it took me forever to close the deal..
	TeeTeeTee: You know, you had a perfect doomsday machine set up a dozen or so turns back, just before you triggered a catastrophe at Forest...
	wil: I realized that I didn't see it...I took my I off the ball...


27938)
Variants: "Unrated"
Started: 2015.8.13, Ended: 2015.9.2
Participants: wil (S), mcowper (N)
Winner: wil

1) mcowper: Homeworld Y2 B1 G3

2) wil: H Y3 B1 G3

3) mcowper: Build G1 Mcowper
	wil: Thank for the game..the one thing we know is that it will be new and different

4) wil: B G1 Wil

5) mcowper: Discover G1 Mcowper B3 Angel

6) wil: T G1 B1 Wil

7) mcowper: Build G1 Mcowper
	wil: You didn't capitalize on my error

8) wil: B B2 Wil

9) mcowper: Build G1 Angel
	mcowper: I missed your error.

10) wil: D B1 Wil G2 G2

11) mcowper: Sacrifice G3 Mcowper
Build G2 Angel
Build G2 Mcowper
Build G3 Mcowper
	wil: And I am thoroughly glad you did

12) wil: B G3 Wil

13) mcowper: Trade G2 B2 Mcowper

14) wil: S G3 Wil
B B2 G2
B B3 G2
B B3 Wil

15) mcowper: Trade G1 Y1 Angel
	wil: Smurfs up...ride the wave

16) wil: S B2 G2
T B3 Y3 G2
T B3 G3 Wil

17) mcowper: Discover G2 Angel Y2 Beast

18) wil: S G3 Wil
B B2 G2
B B3 G2
B B3 Wil

19) mcowper: Build Y1 Angel

20) wil: S B2 G2
T B3 R3 G2
T B3 G3 Wil

21) mcowper: Discover Y1 Angel G2 Cyclops

22) wil: S G3 Wil
B B2 G2
B B3 G2
B B3 Wil

23) mcowper: Trade G1 R1 Mcowper

24) wil: T B3 Y3 Wil

25) mcowper: Build G1 Mcowper

26) wil: M B3 G2 Angel

27) mcowper: Move Y1 Angel Beast

28) wil: T B3 G3 Angel

29) mcowper: Discover B2 Mcowper B3 Dazzler

30) wil: B G1 Wil

31) mcowper: Sacrifice G3 Mcowper
Build G3 Mcowper
Build Y1 Cyclops
Build Y2 Cyclops
	wil: Has Elvis left the building?

32) wil: S Y3 Wil
M G3 Angel Mcowper
M Y3 G2 Angel
M Y3 Angel Mcowper
	mcowper: Sorry. I've just been very busy lately.
	wil: No worries..
	wil: No worries..
	wil: No worries..

33) mcowper: Attack Y3 Mcowper

34) wil: S R3 G2
A Y3 Mcowper
A G3 Mcowper
A R1 Mcowper
	mcowper: This is not looking good for me.

	wil: The ole you take one I'll take three...
	mcowper: I don't see any way out. I think I'll resign. Thanks for the game.
	wil: Thanx for the game.. Challenge anytime...


27957)
Variants: "Unrated"
Started: 2015.8.19, Ended: 2015.8.27
Participants: wil (S), Professor_Rabbit (N)
Winner: wil

1) Professor_Rabbit: Homeworld B2 G3 Y3

2) wil: H B2 Y1 G3

3) Professor_Rabbit: Build Y1 Professor_rabbit
	wil: At the game
	wil: Have! A good game
	Professor_Rabbit: you too

	Professor_Rabbit: you too


4) wil: B G1 Wil

5) Professor_Rabbit: Trade Y1 R1 Professor_rabbit


6) wil: T G1 R1 Wil
	wil: So what brings you to play homeworlds?

7) Professor_Rabbit: Build Y1 Professor_rabbit
	Professor_Rabbit: I wanted to practice a few times before playing Andy.


8) wil: B R1 Wil

9) Professor_Rabbit: Build R2 Professor_rabbit
	wil: Lol...I heard that from another!!   Doni know you?
	Professor_Rabbit: I'm Shane. I ran their events at GenCon.


10) wil: B R2 Wil
	wil: Ah, I see...didna get to play there? Or was it work all the time?

11) Professor_Rabbit: Discover R2 Professor_rabbit G1 Alpha

12) wil: T R1 Y1 Wil
	Professor_Rabbit: A little bit of playing in the morning and running the Looney event in the afternoon and evening.

13) Professor_Rabbit: Build Y2 Professor_rabbit

14) wil: B Y2 Wil

15) Professor_Rabbit: Move Y3 Professor_rabbit Alpha

16) wil: D Y1 Wil G3 G3

17) Professor_Rabbit: Build Y2 Alpha

18) wil: B Y3 G3

19) Professor_Rabbit: Build Y3 Professor_rabbit

20) wil: S Y2 Wil
M Y1 G3 Alpha
M Y1 Alpha Professor_rabbit
C Professor_rabbit Y

21) Professor_Rabbit: Build R1 Professor_rabbit

22) wil: M R2 Wil G3

23) Professor_Rabbit: Trade R1 B1 Professor_rabbit
	wil: That is something you are going to want to avoid....  How do you wanna play these? Do  you want me to warn you so you can back off? Or full steam ahead...the way I've learned is watching me make stupid mistakes and others move in with various attacks..join the ladder and you can play a variety of players..
	Professor_Rabbit: Play to win


24) wil: D Y3 G3 R1 R1

25) Professor_Rabbit: Build B1 Professor_rabbit

26) wil: M Y3 R1 Professor_rabbit

27) Professor_Rabbit: Move Y3 Alpha Professor_rabbit

28) wil: S R1 Wil
A Y3 Professor_rabbit
	wil: No big gun in your homeworld...you keft yourself unprotected...

	wil: The struggle is real!!
	Professor_Rabbit: Good game.
	wil: Feel free to challenge anytime


28012)
Variants: "Hard time"
Started: 2015.8.24, Ended: 2015.8.28
Participants: Remneb (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) Remneb: Homeworld B3 R2 G3
	endo: thanks for the game, it took me ages to get through the decliners... gl hf

3) endo: Build G1 Endo

4) Remneb: Build G1 Remneb
	Remneb: Ya. There is some who are no more on SDG.

5) endo: Trade G1 B1 Endo

6) Remneb: Trade G1 Y1 Remneb
	endo: Couldn't they simply leave the ladder to avoid receiving challenges and slowing down active players? Also, the player I just dropped to the last spot has posted a challenge...
	Remneb: There are plenty of people who don't care for
what ever.

7) endo: Build B1 Endo

8) Remneb: Build Y1 Remneb

9) endo: Discover B1 Endo G2 Kernel

10) Remneb: Discover Y1 Remneb G1 Rem

11) endo: Build B2 Kernel

12) Remneb: Build Y1 Rem

13) endo: Trade B2 Y2 Kernel

14) Remneb: Build Y2 Remneb

15) endo: Build B2 Kernel

16) Remneb: Trade Y2 B2 Remneb

17) endo: Move B2 Kernel Rem

18) Remneb: Move B2 Remneb Rem

19) endo: Sacrifice G3 Endo
Build B2 Endo
Build B3 Kernel
Build B3 Rem

20) Remneb: Move B2 Rem Kernel

21) endo: Sacrifice B2 Rem
Trade B2 R2 Endo
Trade B3 R3 Kernel

22) Remneb: Trade B2 Y2 Kernel

23) endo: Sacrifice R3 Kernel
Attack Y2S Kernel
Attack Y1S Rem
Attack Y1S Rem

	Remneb: Thanks for the game.
	endo: thanks


27995)
Variants: "Unrated"
Started: 2015.8.26, Ended: 2015.8.27
Participants: crothlisberger (S), wil (N)
Winner: wil

1) wil: H R3 Y1 G3 *
	wil: Thx for the game

2) crothlisberger: Homeworld B1 R2 G3
	wil: So you've dove right in! Do ya play this in the real world?

3) wil: B G1 Wil
	crothlisberger: Not yet,  have a set in the mail. 

4) crothlisberger: Build G1 Crothlisberger
	wil: Never played?  Ask any questions you wish... And I can play instructional...or for blood..your choice...

5) wil: D G1 Wil B2 B2
	crothlisberger: Nope,  ok,  ha nah just play your game I'll learn as I go. 
	crothlisberger: Nope,  ok,  ha nah just play your game I'll learn as I go. 
	crothlisberger: Oh weird just gave an error then sent three times. This site could definitely use some work. 
	wil: This site is fairly stagnant as far as work on improvement goes... FYI you picked a quite tried and true opening... Mine is quite unconventional...

6) crothlisberger: Trade G1 Y1 Crothlisberger

7) wil: B G1 Wil

8) crothlisberger: Build G1 Crothlisberger

9) wil: B G2 B2

10) crothlisberger: Discover G1 Crothlisberger B3 B3

11) wil: T G1 R1 B2

12) crothlisberger: Trade G1 R1 B3

13) wil: B R1 B2

14) crothlisberger: Move Y1 Crothlisberger B3

15) wil: B R2 B2

16) crothlisberger: Move R1 B3 B2
Catastrophe B2 R

17) wil: B G1 B2

18) crothlisberger: Build G1 Crothlisberger

19) wil: T G1 R1 B2

20) crothlisberger: Move Y1 B3 Crothlisberger

21) wil: M G1 Wil B2

22) crothlisberger: Trade G1 R1 Crothlisberger

23) wil: T G2 Y2 B2

24) crothlisberger: Build G1 Crothlisberger

25) wil: B G1 B2

26) crothlisberger: Discover R1 Crothlisberger G3 G3

27) wil: B G2 Wil

28) crothlisberger: Trade G1 B1 Crothlisberger

29) wil: D G1 B2 B3 B3

30) crothlisberger: Move B1 Crothlisberger G3

31) wil: B G1 B3

32) crothlisberger: Trade G3 R3 Crothlisberger

33) wil: S G3 Wil
B G2 B2
B G2 B3
B G3 Wil

34) crothlisberger: Move R3 Crothlisberger B3
	wil: You may have just list the capability to dactiey
	wil: *factory...

35) wil: B G3 B2
	wil: S y2 b2
Move in two green pawns to your homeworld and you experience a catastrophe in the power to build including your big ship
	wil: Essentially game oveer...it'll take a little bit but is inevitable unless I blunders of course
	wil: So do you want to back up one, or just proceed and watch it playout like it is?
	crothlisberger: Ah cause if you sacrifice a piece those actions can be used in any system? 
	wil: Yes...the power of move, growth, trade, attack becomes galaxy wide...
	crothlisberger: Gotcha, yes Im screwed ha. Maybe I should just resign and we could play again.
	wil: Uoto you...you can challenge another, back this one up and keep playing...
	wil: Uoto you...you can challenge another, back this one up and keep playing...

36) crothlisberger: Attack G2 B3

37) wil: S Y2 B2
M G3 B2 B3
M G3 B3 Crothlisberger
	wil: Or both

	wil: Yes...here you can (because you have to activate it and it is a choice) live games it catastrophes... But unless you are out of that size star...you can land on a previously unknown star for a bit and then fly off to your next destination and when you leave it moves back to the bank (they only aooear in the starfueld when they are populated)
	crothlisberger: Ok. 
	wil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different
	wil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different
	wil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different
	wil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different
	crothlisberger: Thanks for the clarifications on some of these rules. 


27871)
Variants: "Hard time"
Started: 2015.8.26, Ended: 2015.9.8
Participants: SilentTitan (S), crothlisberger (N)
Winner: crothlisberger

1) crothlisberger: Homeworld R2 B1 G3

2) SilentTitan: Homeworld B3 R1 G3

3) crothlisberger: Build G1 Crothlisberger

4) SilentTitan: Build G1 Silenttitan

5) crothlisberger: Trade G1 Y1 Crothlisberger

6) SilentTitan: Trade G1 Y1 Silenttitan

7) crothlisberger: Build G1 Crothlisberger

8) SilentTitan: Build G1 Silenttitan

9) crothlisberger: Discover G1 Crothlisberger B3 B3

10) SilentTitan: Discover G1 Silenttitan Y2 Sol

11) crothlisberger: Build G1 Crothlisberger

12) SilentTitan: Build G2 Silenttitan

13) crothlisberger: Trade G1 Y1 Crothlisberger

14) SilentTitan: Build Y2 Silenttitan

15) crothlisberger: Move Y1 Crothlisberger B3

16) SilentTitan: Discover G1 Sol Y3 Soul

17) crothlisberger: Build Y2 B3

18) SilentTitan: Discover Y1 Silenttitan G2 Sole

19) crothlisberger: Trade Y1 R1 B3

20) SilentTitan: Trade G2 Y2 Silenttitan

21) crothlisberger: Move R1 B3 Sole



28022)
Variants: "Unrated"
Started: 2015.8.27, Ended: 2015.9.22
Participants: wil (S), jeep (N)
Winner: wil

1) jeep: Homeworld Y2 B1 G3

2) wil: H B3 Y1 G3

3) jeep: Build G1 Jeep

4) wil: B G1 Wil

5) jeep: Trade G1 Y1 Jeep

6) wil: T G1 Y1 Wil

7) jeep: Build Y2 Jeep

8) wil: B Y2 Wil

9) jeep: Discover Y2 Jeep B3 Bigblue

10) wil: D Y1 Wil G2 G2

11) jeep: Build G1 Jeep
	jeep: Heh, I thought I moved my y1... hmm... 

12) wil: B Y3 G2

13) jeep: Sacrifice G1 Jeep
Build Y3 Bigblue

14) wil: D Y3 G2 B3 B3

15) jeep: Trade Y2 G2 Bigblue

16) wil: B G1 Wil

17) jeep: Build G1 Jeep

18) wil: B Y2 G2

19) jeep: Discover G1 Jeep Y3 Bank

20) wil: T G1 R1 Wil
	jeep: So many basic concepts that I have forgotten and am learning the hard way. ;)

21) jeep: Trade Y1 R1 Jeep
	wil: That is the only way to learn!  First you get slammed when you don't see it coming..then you see it coming and can't figure out how to stop it...then you start using the same thing against others

22) wil: B Y1 G2
	jeep: Yeah, the problem is that I used to be pretty good at this.
	jeep: Yeah, the problem is that I used to be pretty good at this.

23) jeep: Discover Y3 Bigblue B2 Medblue

24) wil: B G1 Wil

25) jeep: Sacrifice G1 Bank
Build Y3 Medblue

26) wil: S Y3 B3
M Y1 G2 Bigblue
M Y1 Bigblue Medblue
M Y2 Wil Medblue
C Medblue Y

27) jeep: Trade G2 Y2 Bigblue

28) wil: D Y1 G2 G3 G3

29) jeep: Build G1 Jeep

30) wil: T G1 B1 Wil

31) jeep: Trade G1 B1 Jeep

32) wil: T B1 Y1 Wil

33) jeep: Discover Y2 Bigblue G2 Medgreen

34) wil: B Y3 G2

35) jeep: Build Y3 Medgreen

36) wil: S Y2 G2
M Y1 G3 Medgreen
M Y1 Wil Medgreen
C Medgreen Y

37) jeep: Build G1 Jeep

38) wil: B Y1 G2
	jeep: Heh, I saw that and then made the play anyway. I was so far behind already that I didn't know what to do. :/

39) jeep: Build B1 Jeep

40) wil: B R1 Wil

41) jeep: Build R2 Jeep

42) wil: B R2 Wil

43) jeep: Build R2 Jeep
	jeep: Yep, I see little in the way of getting out of this mess.

44) wil: M R1 Wil G2

45) jeep: Trade R2 Y2 Jeep

46) wil: B R2 G2

47) jeep: Discover G1 Jeep B3 Changer

48) wil: M R2 G2 Changer

49) jeep: Sacrifice G1 Changer
Build G1 Jeep

50) wil: S G3 Wil
B R3 Changer
B R3 G2
B R3 Wil

	jeep: GG, There is no getting out of this even for a few moves. I need to take care of some family issues, but will be back to accept your standing challenge again in a few days. I'll get the rust off sooner or later. ;)
	wil: Take care of family!! Yay.  And thanx for the game I look forward to the next


28033)
Variants: "Unrated"
Started: 2015.8.27, Ended: 2015.9.5
Participants: crothlisberger (S), wil (N)
Winner: wil

1) wil: H B3 Y2 G3

2) crothlisberger: Homeworld B2 Y1 G3

3) wil: B G1 Wil

4) crothlisberger: Build G1 Crothlisberger

5) wil: T G1 Y1 Wil

6) crothlisberger: Build G1 Crothlisberger

7) wil: B Y1 Wil
	wil: Oops this can spell trouble if I can monopolize an economy..

8) crothlisberger: Trade G3 Y3 Crothlisberger

9) wil: D Y1 Wil G1 G1
	wil: That is a solution!

10) crothlisberger: Build Y2 Crothlisberger

11) wil: B Y2 Wil

12) crothlisberger: Sacrifice Y3 Crothlisberger
Discover Y2 Crothlisberger B3 Hoth
Move Y2 Hoth G1
Move Y2 G1 Wil
Catastrophe Wil Y

13) wil: B Y1 G1
	wil: You are a crazy man!!   What are you gonna do without a big ship?  I'll wait a bit for you to rethink that or tell me to go ahead..
	crothlisberger: Ha I debated whether or not it was worth it, but wasn't really sure, figured it was risky.

14) crothlisberger: Build G2 Crothlisberger
	crothlisberger: eh I already did it, let's just play it out this time.

15) wil: M Y1 G1 Wil

16) crothlisberger: Trade G1 R1 Crothlisberger

17) wil: B Y2 Wil
	crothlisberger: Just realized something unfortunate. 
	crothlisberger: Just realized something unfortunate. 
	crothlisberger: Just realized something unfortunate. 
	crothlisberger: Just realized something unfortunate. 

18) crothlisberger: Trade G2 Y2 Crothlisberger

19) wil: T Y1 R1 Wil

20) crothlisberger: Build G1 Crothlisberger

21) wil: B G2 Wil

22) crothlisberger: Build R1 Crothlisberger

23) wil: B Y1 G1

24) crothlisberger: Move G1 Crothlisberger Wil

25) wil: T G2 R2 Wil

26) crothlisberger: Build G2 Wil

27) wil: S G3 Wil
B Y2 Wil
B Y3 G1
B Y3 Wil

28) crothlisberger: Move Y2 Crothlisberger Wil
Catastrophe Wil Y

29) wil: A G2 Wil

30) crothlisberger: Build G2 Wil

31) wil: A G2 Wil
	wil: Crazy game...

32) crothlisberger: Build G2 Wil

33) wil: M Y3 G1 Wil
C Wil G

34) crothlisberger: Build G1 Crothlisberger

35) wil: M Y3 Wil Crothlisberger

36) crothlisberger: Build G2 Crothlisberger

37) wil: S R2 Wil
A R1 Crothlisberger
A R1 Crothlisberger

38) crothlisberger: Move G2 Crothlisberger Wil

39) wil: A G1 Crothlisberger
	crothlisberger: Oh dang I didn't realize you could do that without having a red ship in the system. 
	crothlisberger: Oh dang I didn't realize you could do that without having a red ship in the system. 

40) crothlisberger: Trade G2 R2 Wil
	crothlisberger: I'm out of options 

41) wil: A G1 Crothlisberger
	wil: A sacrifice is intragalactic...if you have the other requirements any ability is deployed system wide
	crothlisberger: But when you sacrifice a green you can't build in a system unless you have green there. 

	wil: Exactly.it just imoparts the ability to every star system..  As if you had a green there..you can always onkybuild where you have the color..
	wil: I counted the steps and just stayed one ahead..good game
	crothlisberger: Like you can sacrifice a green,  and then build a yellow in a system you have yellow but not green? 
	crothlisberger: Yeah good game,  better than the first ha 
	wil: Yes in order for the build power of the green anywhere ...you must have that color to build from...and why/how blue is important...


28031)
Variants: "Unrated"
Started: 2015.8.27, Ended: 2016.4.21
Participants: crothlisberger (S), sompm (N)
Winner: sompm

1) sompm: Homeworld G2 B3 Y3

2) crothlisberger: Homeworld B1 Y2 G3

3) sompm: Build Y1 Sompm

4) crothlisberger: Build G1 Crothlisberger

5) sompm: Trade Y1 B1 Sompm

6) crothlisberger: Discover G1 Crothlisberger B3 Hoth

7) sompm: Discover B1 Sompm Y1 Mirrodin

8) crothlisberger: Build G1 Hoth

9) sompm: Trade B1 G1 Mirrodin

10) crothlisberger: Trade G1 Y1 Hoth

11) sompm: Discover G1 Mirrodin G3 Galifrey

12) crothlisberger: Build Y1 Hoth

13) sompm: Build Y1 Sompm

14) crothlisberger: Build Y2 Hoth

15) sompm: Build G1 Galifrey

16) crothlisberger: Move Y1 Hoth Crothlisberger

17) sompm: Sacrifice Y1 Sompm
Move G1 Galifrey Crothlisberger

18) crothlisberger: Trade G3 R3 Crothlisberger

19) sompm: Discover G1 Crothlisberger Y3 Vulcan

20) crothlisberger: Trade R3 G3 Crothlisberger

21) sompm: Build G2 Vulcan

22) crothlisberger: Build Y1 Hoth

23) sompm: Discover G2 Vulcan B1 Fodra

24) crothlisberger: Move Y1 Hoth Fodra

25) sompm: Build Y2 Sompm
	sompm: Are you dropping SDG or are you doing what I did and forgetting about it because there are no persistent reminders after your last "your turn" message arrives? I think you might get a "time is almost up" message right before the end, but yeah, it's possible to fall off entirely.
	crothlisberger: Oh wow sorry,  yeah just been busy and never got any email or anything. 

26) crothlisberger: Build Y3 Hoth

27) sompm: Trade Y3 R3 Sompm
	sompm: I know how that goes. You get busy, and Homeworlds is also not the easiest game in terms of turn-time.
	sompm: I ended up attaching a second email to my phone so I would be reminded. I'm hoping if I keep my number of running games down I won't get overloaded and go offline again. We'll see how that goes.

28) crothlisberger: Trade Y2 R2 Hoth
	crothlisberger: I should probably do that 

29) sompm: Build G2 Vulcan

30) crothlisberger: Build G3 Hoth

31) sompm: Move G1 Vulcan Crothlisberger

32) crothlisberger: Trade G3 R3 Crothlisberger

33) sompm: Build G3 Fodra

	sompm: Poke.


28035)
Variants: "Unrated"
Started: 2015.8.27, Ended: 2015.9.14
Participants: sompm (S), wil (N)
Winner: sompm

1) wil: H R3 Y1 G3 *

2) sompm: Homeworld B3 G1 Y3

3) wil: B G1 Wil
	wil: By also picking goldilocks... We have a short universe is that your intent?  You may back up and change
	sompm: That was intentional. If there is a known disadvantage to matched planets for a given player, then I'll switch back, but I do want to see how a short universe pans out.
	wil: K, typically it is just a shorter game..

4) sompm: Build Y1 Sompm

5) wil: D G1 Wil B2 B2

6) sompm: Move Y1 Sompm B2

7) wil: T G1 R1 B2

8) sompm: Discover Y1 B2 Y1 Y1

9) wil: B G1 Wil

10) sompm: Build Y2 Sompm

11) wil: B G1 Wil

12) sompm: Trade Y2 G2 Sompm

13) wil: M G1 Wil B2

14) sompm: Discover G2 Sompm Y2 Y2

15) wil: B G2 B2

16) sompm: Build Y2 Sompm

17) wil: T G2 Y2 B2

18) sompm: Trade Y2 R2 Sompm

19) wil: B G2 B2

20) sompm: Build G2 Y2

21) wil: B G3 B2

22) sompm: Sacrifice Y3 Sompm
Move G2 Y2 Wil
Move G2 Y2 Wil
Pass
Catastrophe Wil G

	sompm: Good game. Not kidding about matched Homeworlds being fast - I think that was the shortest game I've ever played.
	wil: Yez..n I fell asleep at the wheel
	sompm: That's sometimes literal. I once took a game of chess from slightly in my advantage to lost in six moves by playing late at night.


28032)
Variants: "Hard time"
Started: 2015.8.27, Ended: 2015.9.9
Participants: sompm (S), SilentTitan (N)
Winner: sompm

1) SilentTitan: Homeworld B1 R3 G3

2) sompm: Homeworld G2 Y1 B3

3) SilentTitan: Build G1 Silenttitan

4) sompm: Build B1 Sompm

5) SilentTitan: Build G1 Silenttitan

6) sompm: Discover B1 Sompm G3 Pandora

7) SilentTitan: Trade G1 Y1 Silenttitan

8) sompm: Build B1 Pandora

9) SilentTitan: Build Y1 Silenttitan

10) sompm: Build B2 Sompm



28045)
Started: 2015.8.29, Ended: 2015.9.7
Participants: crothlisberger (S), DOA (N)
Winner: crothlisberger

1) DOA: Homeworld G3 Y1 B3

2) crothlisberger: Homeworld B1 Y2 G3
	DOA: Hello. Good luck and have fun!

3) DOA: Build B1 Doa

4) crothlisberger: Build G1 Crothlisberger

5) DOA: Discover B1 Doa G2 Lxsx

6) crothlisberger: Discover G1 Crothlisberger B3 Hoth

7) DOA: Build B1 Doa

8) crothlisberger: Build G1 Crothlisberger

9) DOA: Build B2 Lxsx

10) crothlisberger: Build G1 Crothlisberger

11) DOA: Trade B2 Y2 Lxsx

12) crothlisberger: Build G2 Hoth

13) DOA: Trade B3 G3 Doa

14) crothlisberger: Trade G1 R1 Crothlisberger

15) DOA: Build B2 Lxsx

16) crothlisberger: Trade G2 Y2 Hoth

17) DOA: Discover B1 Lxsx Y3 Mxwx

18) crothlisberger: Build G1 Hoth

19) DOA: Sacrifice G3 Doa
Build B2 Mxwx
Build B2 Lxsx
Build B3 Doa

20) crothlisberger: Move G1 Hoth Lxsx

21) DOA: Build B3 Doa

22) crothlisberger: Sacrifice G3 Crothlisberger
Build G2 Lxsx
Build G2 Hoth
Build G3 Crothlisberger

23) DOA: Sacrifice Y2 Lxsx
Discover B2 Lxsx G3 Gwar
Move B2 Lxsx Gwar

24) crothlisberger: Trade G2 Y2 Hoth



28063)
Variants: "Hard time"
Started: 2015.8.30, Ended: 2015.9.14
Participants: ajo (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) ajo: Homeworld R2 B3 G3

3) endo: Build G1 Endo

4) ajo: Build G1 Ajo

5) endo: Trade G1 B1 Endo

6) ajo: Build G1 Ajo

7) endo: Build B1 Endo

8) ajo: Trade G1 Y1 Ajo

9) endo: Discover B1 Endo G2 Image

10) ajo: Discover G1 Ajo Y1 Alpha

11) endo: Build B2 Endo

12) ajo: Build G1 Ajo

13) endo: Discover B1 Endo B2 Quotient

14) ajo: Build G1 Alpha

15) endo: Sacrifice G3 Endo
Build B2 Image
Build B3 Endo
Build B3 Quotient

16) ajo: Discover G1 Ajo Y1 Delos

17) endo: Trade B3 G3 Endo

18) ajo: Discover G1 Alpha B3 Lebling

19) endo: Trade B3 G3 Quotient

20) ajo: Build G2 Lebling

21) endo: Sacrifice G3 Quotient
Build G2 Endo
Build G3 Endo
Build B3 Quotient

22) ajo: Build Y2 Ajo

23) endo: Trade G2 R2 Endo

24) ajo: Trade G2 Y2 Lebling

25) endo: Trade B3 Y3 Quotient

26) ajo: Build Y2 Ajo

27) endo: Sacrifice G3 Endo
Build R1 Endo
Build B3 Quotient
Build Y3 Quotient

28) ajo: Build G2 Ajo

29) endo: Trade B3 G3 Quotient
	ajo: I'm definitely going to lose...

30) ajo: Discover G1 Alpha B3 Kotok
	endo: probably... I've got quite a few larges

31) endo: Move Y3 Quotient Kotok

32) ajo: Sacrifice G3 Ajo
Build G2 Delos
Build G3 Ajo
Build Y1 Lebling

33) endo: Sacrifice B2 Endo
Trade B1 R1 Image
Trade B1 R1 Quotient

34) ajo: Trade Y2 R2 Lebling

35) endo: Sacrifice G3 Quotient
Build G3 Endo
Build R3 Image
Build R3 Quotient

36) ajo: Sacrifice G1 Kotok
Build R3 Lebling

37) endo: Sacrifice Y3 Kotok
Discover R3 Image Y3 Sub
Move R1 Image Lebling
Move R1 Quotient Lebling
Catastrophe Lebling R

38) ajo: Trade Y2 B2 Ajo

39) endo: Move R3 Quotient Delos

40) ajo: Sacrifice G2 Delos
Build Y2 Lebling
Build Y2 Lebling

41) endo: Attack G1S Delos

42) ajo: Discover Y1 Lebling R2 Kotok

43) endo: Sacrifice G3 Endo
Build G1 Endo
Build G2 Endo
Build G3 Delos

44) ajo: Sacrifice Y2 Lebling
Move G1 Lebling Delos
Move G2 Ajo Delos
Catastrophe Delos Green

45) endo: Sacrifice G3 Endo
Build R1 Delos
Build R1 Delos
Build R3 Sub

46) ajo: Move Y1 Kotok Endo

47) endo: Sacrifice G2 Endo
Build Y2 Quotient
Build R2 Sub

48) ajo: Build G1 Ajo

49) endo: Sacrifice Y3 Quotient
Move R3 Delos Ajo
Move R3 Sub Delos
Move R3 Delos Ajo

50) ajo: Sacrifice G1 Ajo
Build Y3 Endo

51) endo: Sacrifice R3 Ajo
Attack G3 Ajo
Attack B2 Ajo
Attack Y2 Ajo

52) ajo: Pass

53) endo: Attack Y1 Ajo
	ajo: Good game!
	endo: Thanks for the game. I like how the stashes kept swinging between the different colors throughout.



28064)
Variants: "No undo, Hard time"
Started: 2015.9.3, Ended: 2015.9.7
Participants: wil (S), DOA (N)
Winner: wil

1) DOA: Homeworld B3 Y1 G3

2) wil: H B3 G2 Y3
	DOA: Hello again :) Have fun!
	wil: Let's!!

3) DOA: Build G1 Doa

4) wil: B Y1 Wil

5) DOA: Discover G1 Doa B2 Clue

6) wil: B Y1 Wil

7) DOA: Build G1 Clue

8) wil: D Y1 Wil B1 B1

9) DOA: Build G1 Clue

10) wil: B Y2 Wil

11) DOA: Build G2 Doa

12) wil: T Y2 G2 Wil

13) DOA: Trade G2 Y2 Doa

14) wil: M G2 Wil B1

15) DOA: Discover Y2 Doa G2 Badplan

16) wil: D Y1 Wil B1 Be1
	DOA: Haha I'm out of my element this time around. I should not have neglected that yellow! That was a clever reason to take fortress.

17) DOA: Trade G1 R1 Clue
	wil: Cornering any economy has advantages...
	wil: But you've got in...I was not successful..
	wil: You stopped OPEC from controlling fissil fuels and I stopped Halibutron from and endless cycle of no bid contracts...

18) wil: B Y2 B1
	DOA: Haha!



28080)
Variants: "Hard time"
Started: 2015.9.4, Ended: 2015.9.7
Participants: DOA (S), Aghmarck (N)
Winner: Aghmarck

1) Aghmarck: Homeworld Y1 B2 G3

2) DOA: Homeworld G3 Y1 B3

3) Aghmarck: Build G1 Aghmarck



28042)
Variants: "Unrated"
Started: 2015.9.6, Ended: 2015.9.10
Participants: wil (S), panglott (N)
Winner: wil

1) panglott: Homeworld G3 B1 Y3

2) wil: H B3 Y2 G3

3) panglott: Trade Y3 G3 Panglott

4) wil: B G1 Wil
	wil: Why didn't you build a yellow one?
	wil: You'll now need to trade back for a yellow to move...I'll wait a bit...un case you want to take back that move.  
	wil: You'll now need to trade back for a yellow to move...I'll wait a bit...un case you want to take back that move.  
	panglott: Thanks, but no worries ;) I might have to learn things the hard way :)
	wil: That is the way i see it too....  I lost a few dozen games learning what various attacks look like...then how to use them...then how to stop them...

5) panglott: Build G1 Panglott

6) wil: T G1 B1 Wil

7) panglott: Trade G1 Y1 Panglott

8) wil: B B1 Wil

9) panglott: Build Y1 Panglott
	wil: Second contemplation if I get a color you should make sure you have the same color 

10) wil: D B1 Wil G1 G1

11) panglott: Discover Y1 Panglott G2 Helium

12) wil: S G3 Wil
B B2 G1
B B2 G1
B B2 Wil

13) panglott: Build G1 Panglott

14) wil: T B2 G2 Wil

15) panglott: Trade G1 R1 Panglott

16) wil: T B2 Y2 G1

17) panglott: Build R1 Panglott

18) wil: B B2 G1

19) panglott: Move R1 Panglott Helium

20) wil: T B2 R2 G1

21) panglott: Build G1 Panglott

22) wil: M B2 G1 Helium

23) panglott: Move G3 Panglott Helium

24) wil: S Y2 G1
M B2 Helium Panglott
D B1 G1 G2 Geetoo

25) panglott: Build R1 Panglott
	wil: I've made some silly mistakes for ya. But I think I am still safe.

26) wil: S R2 G1
A R1 Panglott
A R1 Panglott

27) panglott: Build R2 Helium

28) wil: A Y1 Panglott

29) panglott: Move R1 Helium Panglott

30) wil: A G1 Panglott

31) panglott: Sacrifice R2 Helium
Attack R1 Panglott
Attack R1 Panglott
	wil: This is the scary part about counting as nd verifying that I thought I could stay one step ahead...

32) wil: T B2 R2 Panglott
C Panglott R
	panglott: Whew! ;)

	wil: Good try...and I forgot this didn't automatically catastrophe!  You'll take a few beatings along the way but eventually be rewarded with a great game...  Challenge me anytime...ask any questions
	panglott: Good game, thanks! ;)


28072)
Started: 2015.9.10, Ended: 2015.10.30
Participants: MattTheSpratt (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B2 Y3 G3

2) MattTheSpratt: Homeworld Y2 B1 G3
	ts52: Have a good game!
	MattTheSpratt: Same to you!

3) ts52: Build G1 Ts52

4) MattTheSpratt: Build G1 Mattthespratt

5) ts52: Trade G1 B1 Ts52

6) MattTheSpratt: Discover G1 Mattthespratt R3 Corneria

7) ts52: Build B1 Ts52

8) MattTheSpratt: Build G1 Mattthespratt

9) ts52: Discover B1 Ts52 Y1 Zoe

10) MattTheSpratt: Move G1 Mattthespratt Corneria

11) ts52: Build B2 Ts52

12) MattTheSpratt: Trade G3 B3 Mattthespratt

13) ts52: Trade B2 G2 Ts52



28131)
Variants: "Hard time"
Started: 2015.9.11, Ended: 2015.9.18
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: Homeworld B3 Y1 G3
	wil: good luck...  I look forward to when there are more players who work there way up to the top

2) wil: H Y2 B1 G3

3) dlwillson: Build G1 Dlwillson
	wil: Until then I'll gladly battle you to improve my skill

4) wil: B G1 Wil
	dlwillson: I always kinda hope someone will write an android app of this.

:-)


5) dlwillson: Trade G1 Y1 Dlwillson
	wil: We all do... Where you could slide with your fingers and see resoonse s real time...  Got one contendah...currently not an app..but live java script in alpa.. When it goes beta and I am allowed I'll get you in testing...

6) wil: T G1 Y1 Wil

7) dlwillson: Build Y2 Dlwillson

8) wil: B Y2 Wil

9) dlwillson: D Y1 Dlwillson G2 Sky

10) wil: D Y1 Wil G3 G3
	dlwillson: Cool!

11) dlwillson: B Y3 Sky

12) wil: Build Y3 G3

13) dlwillson: D Y3 Sky B3 Sea

14) wil: T Y2 R2 Wil

15) dlwillson: T Y2 R2 Dlwillson

16) wil: D Y3 G3 B2 B2

17) dlwillson: Build Y2 Sky

18) wil: D R2 Wil Y3 Y3

19) dlwillson: Move Y2 Sky Sea

20) wil: B Y2 G3

21) dlwillson: Trade Y2 G2 Sea

22) wil: M Y2 G3 B2

23) dlwillson: Build Y2 Sea

24) wil: B G1 Wil

25) dlwillson: Build G1 Dlwillson

26) wil: M G1 Wil Y3

27) dlwillson: Build R1 Dlwillson

28) wil: B R1 Y3

29) dlwillson: Build G1 Sea

30) wil: M R1 Y3 Wil

31) dlwillson: Build G2 Sea
	wil: Done forgot to fix the bluebird

32) wil: S Y2 B2
M G1 Y3 B2
M G1 B2 Sea
C Sea G

33) dlwillson: Trade Y2 G2 Sea

34) wil: B G1 Wil

35) dlwillson: Build G1 Sea

36) wil: M G1 Wil Y3

37) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Sea
Build G2 Sea
Build G3 Dlwillson

38) wil: B R1 Wil

39) dlwillson: Trade G2 R2 Sea

40) wil: B Y2 G3

41) dlwillson: Sacrifice Y2 Sea
Move G1 Sea Wil
Discover R2 Dlwillson B2 Life

42) wil: A G1 Wil

43) dlwillson: Sacrifice G3 Dlwillson
Build R3 Sea
Build R3 Life
Build R3 Dlwillson

44) wil: S G3 Wil
B G2 Y3
B G3 Y3
B G3 Wil
	wil: I don't like where this is going

45) dlwillson: Trade R2 Y2 Life

46) wil: M G1 Y3 B2

47) dlwillson: M R3 Life G3

48) wil: M R1 Wil Sea

49) dlwillson: Sacrifice R2 Sea
Attack Y2 G3
Attack Y1 G3

50) wil: B R2 Wil
	dlwillson: I wish I had hit those greens a few turns ago. :-/

51) dlwillson: M G1 Dlwillson Life
	wil: Yeah that wasn't so smart

52) wil: B R2 Y3
	wil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..
	wil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..
	wil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..
	wil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..
	wil: The not so smart...I was talking if my move not yours...but I did stick my neck out there...

53) dlwillson: A R1 Sea

54) wil: M R2 Y3 B2

55) dlwillson: Sacrifice Y2 G3
Move R3 G3 Wil
Move G2 Sea Wil

56) wil: S Y3 B2
M R2 Y3 B2
M R2 B2 Dlwillson
M R2 B2 Dlwillson
C Dlwillson R

	dlwillson: I believe that's checkmate, but you've surprised me before. Let's see what you think of.
	wil: I believe you were blinded like I often am...I get so focused on my gamut that I can't see anything else...
	dlwillson: Yup. I knew I was putting home in danger when I pulled the green out, but I didn't make the connection when you split your reds. I would have, on a table. Well done.


28183)
Started: 2015.9.18, Ended: 2015.10.6
Participants: torianironfist (S), RogueJedi234 (N)
Winner: torianironfist

1) RogueJedi234: Homeworld B1 Y2 G3

2) torianironfist: Homeworld G3 B1 Y3
	torianironfist: homeworld g3 b1 y3 

3) RogueJedi234: Build G1 Roguejedi234

4) torianironfist: Build Y1 Torianironfist

5) RogueJedi234: Trade G1 R1 Roguejedi234

6) torianironfist: Trade Y1 R1 Torianironfist

7) RogueJedi234: Build G1 Roguejedi234

8) torianironfist: Build Y1 Torianironfist

9) RogueJedi234: Discover G1 Roguejedi234 B3 Yavin4

10) torianironfist: Trade Y1 G1 Torianironfist

11) RogueJedi234: Build G1 Yavin4

12) torianironfist: Build G2 Torianironfist

13) RogueJedi234: Build G2 Yavin4

14) torianironfist: Discover G1 Torianironfist B2 Dathomir

15) RogueJedi234: Trade G2 R2 Yavin4

16) torianironfist: Build G2 Dathomir

17) RogueJedi234: Trade G1 Y1 Yavin4

18) torianironfist: Move R1 Torianironfist Dathomir

19) RogueJedi234: Build Y1 Yavin4

20) torianironfist: Trade G2 Y2 Dathomir

21) RogueJedi234: Discover Y1 Yavin4 G2 Ossus

22) torianironfist: Trade G2 R2 Torianironfist

23) RogueJedi234: Build Y1 Ossus

24) torianironfist: Discover G1 Dathomir Y3 Sonamazekot

25) RogueJedi234: Build Y2 Yavin4

26) torianironfist: Sacrifice G1 Sonamazekot
Build Y3 Dathomir

27) RogueJedi234: Sacrifice Y2 Yavin4
Move Y1 Ossus Torianironfist
Move Y1 Ossus Torianironfist

28) torianironfist: Attack Y1 Torianironfist

29) RogueJedi234: Build Y2 Torianironfist
Catastrophe Torianironfist Yellow

30) torianironfist: Move Y3 Dathomir Torianironfist

31) RogueJedi234: Discover G1 Yavin4 B2 Moncalamari

32) torianironfist: Build Y1 Torianironfist

33) RogueJedi234: Build G1 Moncalamari

34) torianironfist: Move Y1 Torianironfist Dathomir

35) RogueJedi234: Build G1 Moncalamari

36) torianironfist: Trade Y2 G2 Dathomir
	torianironfist: trade y2 g2 dathomir 

37) RogueJedi234: Move R2 Yavin4 Moncalamari

38) torianironfist: Build G2 Dathomir

39) RogueJedi234: Sacrifice G1 Moncalamari
Build Y1 Yavin4

40) torianironfist: Build Y2 Dathomir

41) RogueJedi234: Move Y1 Yavin4 Dathomir

42) torianironfist: Discover Y2 Dathomir G3 Kashyyyk

43) RogueJedi234: Move Y1 Yavin4 Moncalamari

44) torianironfist: Attack Y1 Dathomir

45) RogueJedi234: Build Y2 Moncalamari

46) torianironfist: Build Y3 Kashyyyk

47) RogueJedi234: Sacrifice Y2 Moncalamari
Move G1 Moncalamari Torianironfist
Move G1 Moncalamari Torianironfist

48) torianironfist: Sacrifice R2 Torianironfist
Attack G1 Torianironfist
Attack G1 Torianironfist

49) RogueJedi234: Trade R2 G2 Moncalamari

50) torianironfist: Trade G1 R1 Torianironfist

51) RogueJedi234: Build Y2 Moncalamari

52) torianironfist: Build Y3 Torianironfist

53) RogueJedi234: Sacrifice Y2 Moncalamari
Move Y1 Moncalamari Torianironfist
Move G2 Moncalamari Torianironfist

54) torianironfist: Attack G2 Torianironfist

55) RogueJedi234: Build Y2 Torianironfist
Catastrophe Torianironfist Yellow

56) torianironfist: Discover Y1 Dathomir B3 Alderaan

57) RogueJedi234: Build R2 Roguejedi234

58) torianironfist: Move G2 Dathomir Alderaan

59) RogueJedi234: Move R2 Roguejedi234 Alderaan

60) torianironfist: Sacrifice R1 Torianironfist
Attack R2 Alderaan



28182)
Variants: "Hard time"
Started: 2015.9.18, Ended: 2015.10.9
Participants: SilentTitan (S), goulo (N)
Winner: SilentTitan

1) goulo: Homeworld R3 B2 G3

2) SilentTitan: Homeworld B1 R2 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo
	SilentTitan: Thx

4) SilentTitan: Build G1 Silenttitan

5) goulo: Trade G3 Y3 Goulo

6) SilentTitan: Trade G1 Y1 Silenttitan

7) goulo: Discover Y3 Goulo G1 Verdeto

8) SilentTitan: Build Y1 Silenttitan

9) goulo: Build G1 Goulo

10) SilentTitan: Build G2 Silenttitan

11) goulo: Build G2 Goulo

12) SilentTitan: Discover Y1 Silenttitan G3 Sol

13) goulo: Trade G1 Y1 Goulo

14) SilentTitan: Move Y1 Sol Verdeto

15) goulo: Move Y3 Verdeto Goulo

16) SilentTitan: Build Y2 Silenttitan

17) goulo: Trade Y1 R1 Goulo

18) SilentTitan: Discover Y2 Silenttitan G3 Sol

19) goulo: Discover G2 Goulo Y1 Flaveto

20) SilentTitan: Build Y2 Verdeto

21) goulo: Discover G2 Flaveto Y3 Flavego

22) SilentTitan: Build Y1 Silenttitan

23) goulo: Build G1 Flavego

24) SilentTitan: Sacrifice G2 Silenttitan
Build Y2 Sol
Build Y3 Silenttitan

25) goulo: Build G2 Flavego

26) SilentTitan: Move G3 Silenttitan Flavego
Catastrophe Flavego Green

	goulo: Congrats - Thanks for the game!


28197)
Variants: "Hard time"
Started: 2015.9.20, Ended: 2015.9.21
Participants: Aristos (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) Aristos: Homeworld Y3 G2 B3
	endo: Good luck, have fun!

3) endo: Build G1 Endo
	Aristos: The Aristos Empire, spurred by a message from the stars, builds its first starship. As the scientists say: "We have no idea what 'G-o-o-d- -l-u-c-k' means, but it is clearly a non-natural signal. We must investigate." 

4) Aristos: Build B1 Aristos

5) endo: Discover G1 Endo Y2 Stationary

6) Aristos: Discover B1 Aristos B1 Plum

7) endo: Build G1 Endo

8) Aristos: Build B2 Aristos

9) endo: Build G1 Stationary

10) Aristos: Trade B2 G2 Aristos

11) endo: Discover G1 Stationary Y1 Club

12) Aristos: Trade B1 R1 Plum

13) endo: Sacrifice G3 Endo
Build G2 Stationary
Build G3 Endo
Build G3 Club

14) Aristos: Move G2 Aristos Plum

15) endo: Build G3 Endo

16) Aristos: Build B1 Aristos

17) endo: Trade G1 R1 Endo

18) Aristos: Build G1 Plum

19) endo: Trade G3 B3 Endo

	Aristos: Oh well .


27906)
Variants: "Hard time"
Started: 2015.9.20, Ended: 2015.9.29
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: H B3 Y1 G3
	Simon: Hi. Once again, have fun!
	wil: Thanx...I wil

2) Simon: Homeworld R2 B1 G3

3) wil: B G1 Wil

4) Simon: Build G1 Simon

5) wil: T G1 B1 Wil

6) Simon: Trade G1 Y1 Simon

7) wil: B B1 Wil

8) Simon: Build Y1 Simon

9) wil: D B1 Wil B2 B2

10) Simon: Build Y2 Simon

11) wil: S G3 Wil
B B2 B2
B B2 B2
B B3 Wil

12) Simon: Discover Y2 Simon G3 G3
Catastrophe B2 Blue

13) wil: T B3 G3 Wil
	Simon: hmm, what have I been missing? I pondered about the g3 sac while showering, and decided that you had to get 4 of blue in a system?
	wil: I just screwed up...pure and simple
	wil: Odds are a non recoverable error...

14) Simon: Build Y2 Simon

15) wil: B B1 Wil

16) Simon: Trade Y2 B2 Simon

17) wil: T B1 R1 Wil

18) Simon: Move B2 Simon G3

19) wil: B R1 Wil

20) Simon: Build Y2 G3

21) wil: B R1 Wil

22) Simon: Trade Y2 R2 G3

23) wil: D R1 Wil B2 B2

24) Simon: Build R2 G3

25) wil: D R1 Wil Y2 Y2

26) Simon: Build R3 G3

27) wil: M R1 Y2 G3
C G3 R

28) Simon: Sacrifice G3 Simon
Build Y2 Simon
Build Y2 G3
Build Y3 G3

29) wil: B R1 Wil

30) Simon: Discover Y1 Simon Y3 Y3

31) wil: B R2 Wil

32) Simon: Trade Y3 R3 G3

33) wil: D R1 Wil G2 G2

34) Simon: Build Y3 G3

35) wil: D R1 Wil G2 Gtoo
	wil: Yup, you've got that queen factory goin...
	wil: It really should just knock over my king
	wil: It really should just knock over my king

36) Simon: Discover Y3 G3 G2 Gtree

37) wil: B R2 G2
	Simon: Hmm yeah, I can produce a large every other turn. But maybe the game will become complex enough for me to err still. :-) It's your call.

38) Simon: Build R3 G3

39) wil: B R3 Wil

40) Simon: Build Y3 Gtree

41) wil: M B1 Wil G2

42) Simon: Build B1 G3
	wil: Waiting on those mistakes you promised
	wil: Waiting on those mistakes you promised

43) wil: T R3 B3 Wil

44) Simon: Move B1 G3 Gtree

45) wil: M B3 Wil G2

46) Simon: Build B2 Gtree

47) wil: B R3 Wil
	wil: I don't need to help with your doomsday machine

48) Simon: Build B3 Gtree

49) wil: T R3 G3 Wil

50) Simon: Sacrifice Y3 Gtree
Move B1 Gtree Wil
Move B2 Gtree Wil
Move B3 Gtree Wil
Catastrophe Wil B

51) wil: T B3 Y3 G2

52) Simon: Sacrifice Y3 Gtree
Move Y1 Y3 Wil
Move Y2 G3 Wil
Move Y2 G3 Wil
Catastrophe Wil Y

	Simon: Nyargh, it turned out straightforward enough to avoid mistakes >_>
	wil: I got a yellow....I got a yellow!


28224)
Variants: "No undo"
Started: 2015.9.23, Ended: 2015.10.20
Participants: neilb (S), rjbs (N)
Winner: rjbs

1) rjbs: Homeworld G2 B1 R3

2) neilb: Homeworld G1 B2 R3
	rjbs: I have no idea what I'm doing, Neil, but I doubt you do, either, so allons-y!

3) rjbs: Build R1 Rjbs

4) neilb: Build R1 Neilb

5) rjbs: Trade R1 Y1 Rjbs

6) neilb: Trade R1 Y1 Neilb

7) rjbs: Build R1 Rjbs

8) neilb: Discover Y1 Neilb B3 Frobozz

9) rjbs: Move R3 Rjbs Frobozz

10) neilb: Build R1 Neilb

11) rjbs: Attack Y1 Frobozz

12) neilb: Trade R1 Y1 Neilb

13) rjbs: Build R1 Rjbs

14) neilb: Build R1 Neilb

15) rjbs: Trade R1 G1 Rjbs

16) neilb: Discover Y1 Neilb G3 Banana

17) rjbs: Move G1 Rjbs Frobozz

18) neilb: Build Y2 Banana

19) rjbs: Build Y2 Rjbs

20) neilb: Build Y2 Banana

21) rjbs: Build Y3 Frobozz

22) neilb: Discover Y2 Banana R1 Trumpton

23) rjbs: Trade Y3 R3 Frobozz

24) neilb: Build Y3 Banana

25) rjbs: Build R2 Rjbs
	neilb: It always feels like a minor victory if the first move I enter is actually valid!

26) neilb: Build R2 Neilb

27) rjbs: Move R3 Frobozz Trumpton

28) neilb: Trade R1 G1 Neilb

29) rjbs: Attack Y2 Trumpton

30) neilb: Build R1 Neilb

31) rjbs: Move R3 Trumpton Banana

32) neilb: Move Y1 Banana Neilb

33) rjbs: Attack Y3 Banana

34) neilb: Build G2 Neilb

35) rjbs: Attack Y2 Banana

36) neilb: Discover R3 Neilb Y3 Pogle

37) rjbs: Move R3 Frobozz Neilb

38) neilb: Build Y3 Neilb

39) rjbs: Attack Y3 Neilb

40) neilb: Build R2 Neilb

41) rjbs: Move G1 Frobozz Neilb
Catastrophe Neilb Green

42) neilb: Move R3 Pogle Trumpton

43) rjbs: Trade Y1 B1 Rjbs

44) neilb: Attack Y2 Trumpton

45) rjbs: Trade R2 G2 Rjbs

46) neilb: Move R3 Trumpton Neilb
	neilb: Arrgh!

47) rjbs: Move G2 Rjbs Frobozz
Catastrophe Neilb Red
	neilb: This log would sure be a lot longer if it recorded all the "neilb tried to make a bonehead move"! :-)



28200)
Variants: "Hard time"
Started: 2015.9.27, Ended: 2015.10.20
Participants: wil (S), sompm (N)
Winner: wil

1) sompm: Homeworld R1 Y3 G3 *

2) wil: H Y2 B1 G3

3) sompm: Build G1 Sompm
	wil: I thought I was the only one crazy enough for that opening!
	sompm: Good luck.

I'm trying out a weird homeworld arrangement because I think it only rearranges the inevitable first three moves rather than restricting them, and it might help the endgame. We'll find out.
	sompm: You might not be. :)

4) wil: B G1 Wil
	wil: I've played it...just to break convention... Took me a few times to win with it..first time I get this side!

5) sompm: Discover G1 Sompm B2 Octothorpe

6) wil: T G1 B1 Wil

7) sompm: Build G1 Octothorpe

8) wil: B B1 Wil

9) sompm: Trade G1 Y1 Octothorpe

10) wil: D B1 Wil Y3 Y3

11) sompm: Build G1 Octothorpe

12) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

13) sompm: Discover Y1 Octothorpe G3 G3
	wil: Better than a factory.,.tis a queen mill...
	sompm: I come to understand why lacking easy access to blue is a disadvantage.

14) wil: D B2 Y3 G2 G2

15) sompm: Build Y1 G3
	wil: Yup...it ain't easy

16) wil: B B3 G2

17) sompm: Move Y1 G3 Wil

18) wil: T B3 R3 Wil

19) sompm: Sacrifice G1 Octothorpe
Build Y1 Wil
	wil: Where is that mosquito repellent?
	wil: He has tossed in a Molotov cocktail..
	wil: Little itty bitty suicide ship filled with fuel..

20) wil: T B3 Y3 G2
	sompm: Hey, I have to get rid of that dumb long-named planet somehow...
	sompm: I knew I played with someone who named planets after their piece (which actually does make things a lot easier, so I may pick up the practice), I just forgot who it was. I haven't yet tired of naming planets dumb jokes, but I'll keep it to other games so you don't have to type build g2 ApocryphalDeuterocanon or anything.
	wil: Yeah...some folks don't like it...for them I think about using g3 for b1...  I think the naming if some star systems long goofy names I'd to keep me from attacking!!

21) sompm: Sacrifice G1 Octothorpe
Build Y2 Wil
Catastrophe Wil Y

22) wil: B B2 G2

23) sompm: Build Y1 G3
	wil: Lol...wrong move...I'll leave it alone...but it is over
	sompm: The temptation to (trade g3 b3 sompm) right now is real. But it would also result in immediately undoing it to avoid death.
	sompm: Your message seems to suggest that one of us can force a win... I'm having trouble seeing it. What am I missing?

24) wil: B B3 G2
	wil: We are close... II lengthened it a step

25) sompm: Move Y1 G3 G2

26) wil: T B3 R3 G2
	sompm: I do see the attack - I don't think it's fast enough I can't survive it. But we'll see... I get to mosquito until then. :)

27) sompm: Discover Y1 G2 B3 B3

28) wil: B B3 G2

	wil: Swat...
	sompm: Hoisted by my own hard time pitard. Apologies.
	wil: Hate that...it was all but ovah though
	sompm: What was the plan, by the way?
	wil: S y3...send in r3 n b3...  You attack one I sack r3 in my homeworld... And take over all your ships.,.
	sompm: Gotcha. I was keeping careful track of saccable yellows for catastrophes, but not size 3s, apparently.
	wil: Yes you used one up in your hw...


28265)
Variants: "Hard time"
Started: 2015.9.29, Ended: 2015.10.21
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y2 G3

2) wil: H B2 Y1 G3

3) dlwillson: B G1 Dlwillson
	dlwillson: Don't you *ever* get tired of banker?

4) wil: B G1 Wil
	wil: I've played them all...I like it playing second for sure...

5) dlwillson: T G1 Y1 Dlwillson

6) wil: T G1 Y1 Wil

7) dlwillson: B Y2 Dlwillson

8) wil: B Y2 Wil

9) dlwillson: T Y1 R1 Dlwillson

10) wil: D Y1 Wil G3 G3

11) dlwillson: D Y2 Dlwillson G1 Field

12) wil: B G1 Wil

13) dlwillson: Build R1 Dlwillson

14) wil: T G1 R1 Wil

15) dlwillson: M R1 Dlwillson Field

16) wil: D Y2 Wil B3 B3

17) dlwillson: Build R2 Field

18) wil: B R2 Wil

19) dlwillson: M R2 Field G3

20) wil: D Y1 G3 B1 B1

21) dlwillson: B G1 Dlwillson

22) wil: T R1 B1 Wil

23) dlwillson: T G1 B1 Dlwillson

24) wil: B B2 Wil
	dlwillson: Sorry for the delay. I forgot the game!

25) dlwillson: B B2 Dlwillson

26) wil: D B2 Wil Y3 Y3

27) dlwillson: M B1 Dlwillson Field

28) wil: S G3 Wil
B B3 Y3
B Y1 B3
B Y3 B1

29) dlwillson: B Y3 Field

30) wil: S Y3 B1
M Y1 B1 B3
M Y1 B3 Field
M Y1 B3 Field
C Field Y

31) dlwillson: B G1 Dlwillson

32) wil: T B3 G3 Y3

33) dlwillson: B R1 Field

34) wil: B G1 Y3

35) dlwillson: Trade R1 Y1 Field

36) wil: B G2 Y3

37) dlwillson: T B2 Y2 Dlwillson

38) wil: T G2 R2 Y3

39) dlwillson: D Y1 Field R3 Mars

40) wil: M R2 Y3 Field

41) dlwillson: S G3 Dlwillson
B R1 G3
B R3 Dlwillson
B R3 Field

42) wil: T G1 Y1 Y3
	wil: Well that didn't work well?

43) dlwillson: S Y2 Dlwillson
M R3 Field G3
M R3 G3 Wil

	wil: I'm not worthy!
	wil: I'm not worthy!
	dlwillson: Thanks for the game!
	wil: I'll be back..


28239)
Variants: "Unrated"
Started: 2015.9.29, Ended: 2015.10.20
Participants: kanzenryu (S), fogus (N)
Winner: fogus

1) fogus: Homeworld B1 Y2 G3

2) kanzenryu: Homeworld B1 G3 Y3

3) fogus: Build G1 Fogus
	kanzenryu: This is my first game, so don't expect much! BTW, are you the famous Clojure guy?

4) kanzenryu: Build Y1 Kanzenryu
	fogus: I hesitate to say famous, but yes, I do stuff with Clojure.  Don't worry about this being your first game.  We can talk through it if you'd like.

5) fogus: Trade G1 Y1 Fogus
	kanzenryu: I bought The Joy of Clojure a while back. So I'm the reason you're rich now ;-)
	fogus: Thanks (I say from my yacht)

6) kanzenryu: Trade Y1 G1 Kanzenryu

7) fogus: Build G1 Fogus
	kanzenryu: Really quite stoked to finally be playing a game of Homeworlds

8) kanzenryu: Build Y1 Kanzenryu

9) fogus: Discover G1 Fogus Y3 Foo

10) kanzenryu: Discover Y1 Kanzenryu G2 Bar

11) fogus: Discover G1 Foo Y2 Baz

12) kanzenryu: Build Y1 Bar

13) fogus: Build G1 Fogus

14) kanzenryu: Build Y2 Kanzenryu

15) fogus: Build G2 Baz
	fogus: You might want to rethink that move.  I've one move away from your home world and can move in and declare a catastrophe.  that'll leave you in bad shape.  Feel free to undo if you'd like.

16) kanzenryu: Trade Y2 R2 Kanzenryu
	kanzenryu: Okay, thanks. I had carefully checked that there would not be a catastrophe before the move, but not after the move :-(
	kanzenryu: Playing around with rendering the position... http://imgur.com/OmNUlyU
	kanzenryu: Playing around with rendering the position... http://imgur.com/OmNUlyU

17) fogus: Trade G1 R1 Fogus
	fogus: Very cool.  What did you use to render them?

18) kanzenryu: Discover Y1 Bar G3 Staging
	kanzenryu: Rendered with povray. I had to hunt around on the net to find the files specifying the pyramids, and then change the colouring to make them less annoyingly transparent. I still don't have the lighting right.
	kanzenryu: And in the actual game... Red Alert!

19) fogus: Discover Y1 Fogus B3 Prod
	fogus: trade g1 r1 fogus

20) kanzenryu: Build R1 Kanzenryu

21) fogus: Discover Y1 Prod G2 Boink
	kanzenryu: Are you still there?

22) kanzenryu: Move Y3 Kanzenryu Baz

23) fogus: Discover G2 Baz Y3 Frob

24) kanzenryu: Trade R2 Y2 Kanzenryu

25) fogus: Build Y3 Boink

26) kanzenryu: Build R1 Kanzenryu

27) fogus: Move Y3 Boink Kanzenryu

28) kanzenryu: Move Y3 Baz Kanzenryu

29) fogus: Sacrifice R1 Fogus
Attack Y3 Kanzenryu

	kanzenryu: Pretty much time to resign. I keep overlooking the power of the sacrifice! Thanks for the game; I really enjoyed it.
	fogus: It takes a few games to really get a hang of the possibilities at any moment.  I'm happy to play again if you want, or to try out your MCTS player one day.  :)
	kanzenryu: I confess I'd love another game.
	kanzenryu: I've set up a challenge.


28267)
Variants: "Hard time"
Started: 2015.9.29, Ended: 2015.10.15
Participants: Aristos (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R2 B1 G3
	Aristos: The people of the Aristos Empire look out on the vast empty reaches of space and call upon their leaders, "We should see what's out there... maybe it is edible!"
	Simon: Hehe -- enjoy the game!

2) Aristos: Homeworld Y3 G2 B3

3) Simon: Build G1 Simon
	Aristos: Oh! A message from the stars spurs science research... The people of Aristos launch their first ship capable of FTL travel. "Unfortunately, we are dependent on our G-class yellow sun for jump ability, which limits our empire's reach. Research in artificial jump engines on ships is proceeding. 

4) Aristos: Build B1 Aristos

5) Simon: Trade G1 B1 Simon

6) Aristos: Trade B1 G1 Aristos

7) Simon: Build G1 Simon

8) Aristos: Discover G1 Aristos B1 Plum

9) Simon: Build B2 Simon

10) Aristos: Build B2 Aristos

11) Simon: Trade B2 Y2 Simon

12) Aristos: Build B2 Aristos

13) Simon: Discover B1 Simon G3 G3

14) Aristos: Trade B2 R2 Aristos

15) Simon: Build B2 G3

16) Aristos: Trade B2 Y2 Aristos

17) Simon: Trade B2 Y2 G3
	Aristos: At long last, Aristoi science discovers how to build ships with built in interstellar jump capacity! The new ship is christened "The Ubiquitous" for its ability to travel everywhere. 
	Aristos: Signals reach Homeworld from a new star, but in the same language, indicating that at least one other star-faring people exists in the universe. Thus far, the language defies our efforts at translation. 

18) Aristos: Build G1 Plum

19) Simon: Discover G1 Simon B3 B3

20) Aristos: Build G2 Plum

21) Simon: Build G2 Simon

22) Aristos: Sacrifice Y2 Aristos
Discover G2 Plum G3 Pear
Discover G1 Plum Y3 Banana

23) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B2 G3
Build B2 G3

24) Aristos: Sacrifice G2 Pear
Build G2 Banana
Build G3 Plum

25) Simon: Trade B2 R2 G3

26) Aristos: Sacrifice G3 Plum
Build G3 Plum
Build R1 Aristos
Build B2 Aristos

27) Simon: Discover B2 G3 R1 R1

28) Aristos: Trade B2 Y2 Aristos

29) Simon: Sacrifice G3 Simon
Build G3 Simon
Build R1 G3
Build R3 G3

30) Aristos: Sacrifice Y2 Aristos
Move R1 Aristos Plum
Move R1 Plum G3
Catastrophe G3 Red

31) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B2 R1
Build B2 R1
	Aristos: Disaster! On entering a new system, something destabilized our ship. The final readings from the ship suggest that there was an overabundance of the red energy used in our splitter beams (used for peaceful mining purposes). Perhaps it was a triple star system? We will never know now as all contact with that system was lost. 

32) Aristos: Trade G1 Y1 Plum

33) Simon: Sacrifice G3 Simon
Build G1 B3
Build G3 Simon
Build B3 G3

34) Aristos: Move G3 Plum G3

35) Simon: Sacrifice Y2 G3
Discover B3 G3 R1 R1b
Move G1 B3 R1b
	Aristos: FIRST CONTACT! "Ma'am... they outnumber us. How do we know they are friendly?" "Have they powered up any weapons?" "Not that we can detect..." 

36) Aristos: Sacrifice Y1 Plum
Move G3 G3 R1
	Simon: yeah, having no reds was the price for getting the large ship

37) Simon: Sacrifice G2 Simon
Build G2 R1b
Build B1 G3

38) Aristos: Attack B2 R1

39) Simon: Sacrifice G1 B3
Build B3 R1b
	Aristos: "I have good news and bad news, Captain! The bad news is we *still* haven't translated their announcement. The good news is our weapons work against their shields! Oh... even better news... yes, they are edible!" 

40) Aristos: Build G1 R1

41) Simon: Trade B3 Y3 R1b
	Aristos: Stunning announcement... the enemy has discovered time warping technology! They are able to leap back into the past at least one full cycle! We are doomed if we cannot replicate this dark magic!

42) Aristos: Attack B2 R1

43) Simon: Build B3 R1b

44) Aristos: Trade B2 R2 R1

45) Simon: Sacrifice B2 R1
Trade B3 R3 R1b
Trade B1 Y1 G3

46) Aristos: Trade B2 Y2 R1

47) Simon: Move R3 R1b Banana

48) Aristos: Move R2 R1 G3
	Aristos: Well, we figured out the time travel trick. That alternate timeline was a bad idea!

49) Simon: Attack G2 Banana

50) Aristos: Sacrifice G3 R1
Build G3 R1
Build R1 G3
Build R3 Aristos

51) Simon: Sacrifice G2 Banana
Build G2 Simon
Build R3 Banana

52) Aristos: Sacrifice R2 Aristos
Attack Y1 G3
Attack B1 G3

53) Simon: Attack G1 Banana

54) Aristos: Sacrifice G3 R1
Build G3 R1
Build B1 G3
Build B2 G3

55) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 R1b
Build B2 R1b

56) Aristos: Move B1 G3 Simon

57) Simon: Sacrifice G3 Simon
Build G3 Simon
Build R2 Banana
Build B2 R1b

58) Aristos: Move B1 G3 Simon

59) Simon: Discover R3 Banana Y1 Y1
	Aristos: Intrepid explorers report that they have found the homeworld of the aliens. It is a strange place with red and blue suns. Not like our friendly yellow star and its green companion. Initial photos stir xenophobia among the populace. The popular press dubs the red star "krypton" and warns of a race of supermen seeking to take us over. It seems unlikely that there can be peace between our species...

60) Aristos: Move B2 G3 Simon
Catastrophe Simon Blue
	Simon: The red sun is only for decoration!

61) Simon: Build Y2 Simon

62) Aristos: Move G1 R1 Simon

63) Simon: Sacrifice G2 Simon
Build G2 Banana
Pass

64) Aristos: Move R1 G3 Simon

65) Simon: Attack R1 Simon
	Aristos: We have destroyed one of their Homeworld stars! Weirdly, they have managed to stabilize their world's orbit and continue to live. You'd think blowing up a star that close would be game over, but noooooo! :-)

66) Aristos: Move Y2 R1 Aristos

67) Simon: Move R1 Simon R1

	Aristos: Well played.
	Simon: Thanks for a challenging game!


28286)
Variants: "Hard time"
Started: 2015.10.1, Ended: 2015.10.12
Participants: MagicJohn (S), foksieloy (N)
Winner: MagicJohn

1) foksieloy: Homeworld B1 G3 Y3
	foksieloy: Hi, good luck, have fun.

2) MagicJohn: Homeworld B1 G3 B3 *

3) foksieloy: Build Y1 Foksieloy

4) MagicJohn: Build B1 Magicjohn

5) foksieloy: Build Y1 Foksieloy
	MagicJohn: Enjoy de game!

6) MagicJohn: Trade B3 Y3 Magicjohn

7) foksieloy: Trade Y1 G1 Foksieloy

8) MagicJohn: Build B2 Magicjohn

9) foksieloy: Trade Y3 B3 Foksieloy

10) MagicJohn: Discover B2 Magicjohn B2 Bbking

11) foksieloy: Build Y1 Foksieloy

12) MagicJohn: Build B2 Magicjohn

13) foksieloy: Discover B3 Foksieloy G2 Tibbers

14) MagicJohn: Trade B2 R2 Magicjohn

15) foksieloy: Trade B3 R3 Tibbers

16) MagicJohn: Build Y1 Magicjohn

17) foksieloy: Build Y2 Foksieloy

18) MagicJohn: Discover B1 Magicjohn G2 Muddywaters

19) foksieloy: Discover Y1 Foksieloy G2 Gnar

20) MagicJohn: Build B2 Muddywaters

21) foksieloy: Build Y2 Gnar

22) MagicJohn: Move Y1 Magicjohn Muddywaters

23) foksieloy: Trade Y2 R2 Foksieloy

24) MagicJohn: Build R1 Magicjohn

25) foksieloy: Build R1 Tibbers

26) MagicJohn: Build B3 Muddywaters

27) foksieloy: Build Y2 Foksieloy

28) MagicJohn: Discover B2 Muddywaters Y3 Eclapton

29) foksieloy: Discover Y1 Gnar B3 Teemo

30) MagicJohn: Trade B3 G3 Muddywaters

31) foksieloy: Trade Y1 G1 Teemo

32) MagicJohn: Sacrifice G3 Muddywaters
Build Y1 Muddywaters
Build B3 Muddywaters
Build B3 Bbking

33) foksieloy: Build G1 Teemo

34) MagicJohn: Trade B3 G3 Bbking

35) foksieloy: Trade G1 R1 Teemo

36) MagicJohn: Trade B3 R3 Muddywaters

37) foksieloy: Build Y2 Gnar

38) MagicJohn: Sacrifice Y1 Muddywaters
Move G3 Bbking Foksieloy

39) foksieloy: Sacrifice Y2 Foksieloy
Move G1 Teemo Tibbers
Move G1 Tibbers Foksieloy
Catastrophe Foksieloy Green

40) MagicJohn: Sacrifice Y1 Muddywaters
Move R3 Muddywaters Foksieloy

	foksieloy: Compressed space means we start with same star system (mirror match). Reason why it is compressed is because in a normal setup (different star systems) there are 2 systems of distance between homeworlds, while in compressed games the distance is 1 system (in our case: medium stars). Only worse scenario is if we start with dual same size homeworlds of different sizes (example I start g3 b3 and you start g1 b1) in which case the distance is 0 (we can directly attack each others systems).
	foksieloy: Congrats, I enjoyed this game!
	MagicJohn: Challenge back if you like. Both of our games have been instructive for me.


28320)
Variants: "Hard time"
Started: 2015.10.6, Ended: 2015.10.11
Participants: torianironfist (S), RogueJedi234 (N)
Winner: torianironfist

1) RogueJedi234: Homeworld B2 Y3 G3

2) torianironfist: Homeworld G1 B2 Y3

3) RogueJedi234: Build G1 Roguejedi234

4) torianironfist: Build Y1 Torianironfist



28331)
Variants: "Hard time"
Started: 2015.10.8, Ended: 2015.10.25
Participants: ts52 (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) ts52: Homeworld Y1 B2 G3

3) endo: Build G1 Endo

4) ts52: Build G1 Ts52

5) endo: Trade G1 B1 Endo

6) ts52: Trade G1 B1 Ts52

7) endo: Build B2 Endo

8) ts52: Discover B1 Ts52 G3 Kermit

9) endo: Discover B1 Endo G2 Pspace

10) ts52: Build G1 Ts52

11) endo: Build G1 Endo

12) ts52: Trade G1 Y1 Ts52

13) endo: Trade G1 Y1 Endo

14) ts52: Build Y2 Ts52

15) endo: Build Y2 Endo

16) ts52: Discover Y2 Ts52 B3 Grover

17) endo: Discover Y1 Endo G2 Bqp



28245)
Variants: "Hard time"
Started: 2015.10.8, Ended: 2015.10.11
Participants: wil (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3

	Simon: Undo, in hopes that it resets your clock, but it doesn't :-/
	wil: I was gone camping...give me another shot!  Homeworls thinking will take the space of my brain contemplating aching bones and muscles...
.


28294)
Variants: "Unrated"
Started: 2015.10.8, Ended: 2015.10.15
Participants: kanzenryu (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3

2) kanzenryu: Homeworld G1 B2 Y3
	Simon: Hi, enjoy. Since you're new, ask away if you have any questions whatsoever. :-) If you like, we can play with a 1-turn handicap (I will pass twice, because I'm starting player) or an even game with you moving first (I will pass once).

3) Simon: Pass
	kanzenryu: Hi, thanks for playing! I have no objection to getting squashed quickly... this is only my second game and one thing I'd like to learn is how quickly it can turn to custard.

4) kanzenryu: Build Y1 Kanzenryu
	Simon: Hehe, that's the spirit. Then let's still make it a game where you go first.

5) Simon: Build G1 Simon
	kanzenryu: Then it's a yellow star destroyer coming at ya.

6) kanzenryu: Build Y1 Kanzenryu

7) Simon: Trade G1 Y1 Simon

8) kanzenryu: Discover Y1 Kanzenryu G3 Glorp

9) Simon: Build Y2 Simon

10) kanzenryu: Trade Y1 G1 Kanzenryu

11) Simon: Discover Y2 Simon B2 B2

12) kanzenryu: Trade Y3 R3 Kanzenryu
	kanzenryu: trade y3 r3 kanzenryu

13) Simon: Build G1 Simon

14) kanzenryu: Build G2 Kanzenryu

15) Simon: Build G2 Simon

16) kanzenryu: Build R1 Kanzenryu

17) Simon: Move G2 Simon B2

18) kanzenryu: Trade G1 Y1 Kanzenryu

19) Simon: Sacrifice G3 Simon
Build G1 B2
Build G2 B2
Build G3 Simon
	kanzenryu: Ouch... Was trying to move but had no yellow at home

20) kanzenryu: Build Y2 Glorp
	Simon: The opponent's yellows are important to assess frequently, to plan where & what to build, yeah. I can ignore making red ships so far, because you can't move yours out.

21) Simon: Trade G2 R2 B2

22) kanzenryu: Sacrifice Y2 Glorp
Move R3 Kanzenryu Glorp
Move R3 Glorp B2

23) Simon: Sacrifice G2 B2
Build R1 B2
Build R2 B2
Catastrophe B2 R
	kanzenryu: I suspect this will either be very good or very bad...

24) kanzenryu: Build Y2 Glorp
	Simon: I have to sacrifice to defend, but the net result is a 3-ship for a 2-ship.

25) Simon: Build G2 B2
	kanzenryu: That was a learning experience! Defending by sacrifice and catastrophe did not occur to me. More possibilities than meets the eye in this game.

26) kanzenryu: Discover Y2 Glorp G2 Staging

27) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y2 Simon
Build Y3 B2

28) kanzenryu: Build Y3 Staging

29) Simon: Trade Y2 R2 B2
	kanzenryu: Nice trick with building multiple ships per turn. I can't see a way to stop you from doing that.
	kanzenryu: Nice trick with building multiple ships per turn. I can't see a way to stop you from doing that.
	Simon: Setting this up is a common midgame target, and opening with a g3 ship is strong for this reason.

30) kanzenryu: Build G3 Kanzenryu

31) Simon: Sacrifice Y2 Simon
Move G1 B2 Glorp
Move G1 Glorp Kanzenryu
Catastrophe Kanzenryu G

	kanzenryu: Haha, I thought I had carefully checked for that. Okay, I guess I can safely resign at this point. Thanks very much for the game, it was a lot of fun.
	Simon: Thanks. Yeah, there were some neat tactical ideas. This might have given the impression that every possible catastrophe is a good play. But whenever you make one, you pay 1 turn + maybe a sacrificed ship + the ships to bring the count to 4. This is expensive, and making a developing move can be better on occasion.
	kanzenryu: It does tell me I need to pay far more attention to the possibilities of sacrifices! My wife just ordered me some of the pyramids for my birthday, so that should be fun when they arrive.


28106)
Variants: "Unrated"
Started: 2015.10.9, Ended: 2015.10.20
Participants: mathieuzebest (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) mathieuzebest: Homeworld G1 B2 Y3

3) wil: B G1 Wil

4) mathieuzebest: Build Y1 Mathieuzebest

5) wil: T G1 Y1 Wil

6) mathieuzebest: Trade Y1 G1 Mathieuzebest

7) wil: D Y1 Wil B2 B2

8) mathieuzebest: Discover G1 Mathieuzebest B3 B1

9) wil: B G1 Wil

10) mathieuzebest: Build G2 B1

11) wil: T G1 R1 Wil

12) mathieuzebest: Trade G1 Y1 B1

13) wil: B R1 Wil

14) mathieuzebest: Build Y2 B1

15) wil: D R1 Wil G2 G2

16) mathieuzebest: Move Y2 B1 B2

17) wil: B R1 G2

18) mathieuzebest: Build Y2 B1

19) wil: D Y1 B2 G3 G3

20) mathieuzebest: Build Y2 Mathieuzebest

21) wil: B Y3 G3

22) mathieuzebest: Trade Y2 R2 B2

23) wil: M Y3 G3 Mathieuzebest

24) mathieuzebest: Trade Y2 R2 Mathieuzebest

25) wil: S R1 G2
A Y3 Mathieuzebest

26) mathieuzebest: Build R1 Mathieuzebest

27) wil: S R1 G2
A R2 Mathieuzebest

28) mathieuzebest: Move Y1 B1 Mathieuzebest

29) wil: S R2 Mathieuzebest
A R1 Mathieuzebest
A Y1 Mathieuzebest



28345)
Started: 2015.10.10, Ended: 2015.10.10
Participants: mathieuzebest (S), ulric (N)
Winner: ulric

1) ulric: Homeworld B3 G2 Y3

2) mathieuzebest: Homeworld G1 Y2 B3

3) ulric: Build Y1 Ulric

4) mathieuzebest: Build B1 Mathieuzebest

5) ulric: Discover Y1 Ulric Y1 Paf

6) mathieuzebest: Discover B1 Mathieuzebest Y3 Zoulou

7) ulric: Build Y1 Ulric

8) mathieuzebest: Trade B1 R1 Zoulou

9) ulric: Build Y2 Ulric

10) mathieuzebest: Move R1 Zoulou Paf

11) ulric: Trade Y2 R2 Ulric

12) mathieuzebest: Attack Y1 Paf

13) ulric: Move R2 Ulric Paf

14) mathieuzebest: Discover R1 Paf G3 Urss

15) ulric: Attack Y1 Paf

16) mathieuzebest: Build B1 Mathieuzebest

17) ulric: Move R2 Paf Urss

18) mathieuzebest: Move B3 Mathieuzebest Urss

19) ulric: Attack R1 Urss

20) mathieuzebest: Trade B3 R3 Urss

21) ulric: Sacrifice Y1 Ulric
Discover R2 Urss B1 Bim

22) mathieuzebest: Attack R1 Urss

23) ulric: Build Y1 Ulric

24) mathieuzebest: Build R1 Urss

25) ulric: Trade Y1 B1 Ulric

26) mathieuzebest: Build B2 Mathieuzebest

27) ulric: Build B2 Ulric

28) mathieuzebest: Trade B2 Y2 Mathieuzebest

29) ulric: Trade B2 G2 Ulric

30) mathieuzebest: Move Y2 Mathieuzebest Urss

31) ulric: Sacrifice Y1 Paf
Move R2 Bim Urss
Catastrophe Urss R

32) mathieuzebest: Discover Y2 Urss B2 Glouda

33) ulric: Discover G2 Ulric Y1 Paf

34) mathieuzebest: Build B1 Mathieuzebest

35) ulric: Build B2 Ulric

36) mathieuzebest: Trade B1 G1 Mathieuzebest

37) ulric: Move B2 Ulric Paf

38) mathieuzebest: Discover G1 Mathieuzebest Y3 Name

39) ulric: Build G1 Paf

40) mathieuzebest: Move G1 Name Glouda

41) ulric: Trade G1 R1 Paf

42) mathieuzebest: Build Y1 Glouda

43) ulric: Build G1 Paf

44) mathieuzebest: Trade Y2 R2 Glouda

45) ulric: Move G1 Paf Ulric

46) mathieuzebest: Build G2 Glouda

47) ulric: Build G3 Paf

48) mathieuzebest: Build G3 Glouda

49) ulric: Build G3 Ulric

50) mathieuzebest: Trade G3 Y3 Glouda

51) ulric: Discover G2 Paf B3 Bim

52) mathieuzebest: Move Y3 Glouda Bim

53) ulric: Build G3 Bim

54) mathieuzebest: Sacrifice Y3 Bim
Move G2 Glouda Bim
Move G1 Glouda Bim
Move R2 Glouda Bim
Catastrophe Bim G

55) ulric: Move G1 Ulric Paf

56) mathieuzebest: Move Y1 Glouda Bim

57) ulric: Move G3 Ulric Paf

58) mathieuzebest: Discover Y1 Bim G1 Yoda

59) ulric: Trade G3 R3 Paf

60) mathieuzebest: Move Y1 Yoda Ulric

61) ulric: Sacrifice Y3 Ulric
Move R1 Paf Bim
Move R1 Bim Mathieuzebest
Move R3 Paf Ulric

62) mathieuzebest: Trade Y1 R1 Ulric

63) ulric: Attack B1 Mathieuzebest



28373)
Variants: "Hard time"
Started: 2015.10.13, Ended: 2015.11.15
Participants: MagicJohn (S), foksieloy (N)
Winner: MagicJohn

1) foksieloy: Homeworld R1 B3 G3
	foksieloy: Hey, let's play another, I enjoyed the previous games. :) Good luck, have fun!

2) MagicJohn: Homeworld B1 G3 B3 *

3) foksieloy: Build G1 Foksieloy
	MagicJohn: Live long and prosper...

4) MagicJohn: Build B1 Magicjohn

5) foksieloy: Trade G1 B1 Foksieloy

6) MagicJohn: Trade B3 Y3 Magicjohn

7) foksieloy: Build B2 Foksieloy

8) MagicJohn: Build B2 Magicjohn

9) foksieloy: Trade B1 Y1 Foksieloy

10) MagicJohn: Discover B2 Magicjohn B2 Billieholiday

11) foksieloy: Discover B2 Foksieloy G2 Tibbers

12) MagicJohn: Trade B1 R1 Magicjohn

13) foksieloy: Build B1 Tibbers

14) MagicJohn: Build Y1 Magicjohn

15) foksieloy: Trade B2 G2 Tibbers

16) MagicJohn: Trade B2 R2 Billieholiday

17) foksieloy: Build G1 Foksieloy

18) MagicJohn: Discover Y1 Magicjohn G2 Gatemouth

19) foksieloy: Discover G1 Foksieloy B2 Warwick

20) MagicJohn: Build R1 Magicjohn

21) foksieloy: Build Y1 Foksieloy

22) MagicJohn: Build Y2 Gatemouth

23) foksieloy: Trade Y1 B1 Foksieloy

24) MagicJohn: Build R2 Magicjohn
	MagicJohn: Warwick :-)

25) foksieloy: Build B2 Tibbers

26) MagicJohn: Move R2 Magicjohn Tibbers

27) foksieloy: Sacrifice G2 Tibbers
Build B3 Foksieloy
Build G1 Warwick

28) MagicJohn: Attack B2 Tibbers

29) foksieloy: Trade B3 Y3 Foksieloy

30) MagicJohn: Attack B1 Tibbers

31) foksieloy: Move B1 Foksieloy Warwick

32) MagicJohn: Move R1 Magicjohn Warwick

33) foksieloy: Move Y3 Foksieloy Warwick

34) MagicJohn: Sacrifice R2 Tibbers
Attack B1 Warwick
Attack G1 Warwick

35) foksieloy: Trade Y3 R3 Warwick

36) MagicJohn: Build B3 Tibbers

37) foksieloy: Sacrifice R3 Warwick
Attack G1 Warwick
Attack B1 Warwick
Attack R1 Warwick

38) MagicJohn: Trade B3 Y3 Tibbers

39) foksieloy: Trade G1 Y1 Warwick

40) MagicJohn: Build B3 Tibbers

41) foksieloy: Discover B1 Warwick Y3 Gnar

42) MagicJohn: Trade B2 G2 Tibbers

43) foksieloy: Build Y2 Warwick

44) MagicJohn: Sacrifice G2 Tibbers
Build Y2 Magicjohn
Build R2 Billieholiday

45) foksieloy: Build G1 Warwick

46) MagicJohn: Move B3 Tibbers Gnar

47) foksieloy: Build G1 Warwick

48) MagicJohn: Sacrifice R1 Magicjohn
Attack B1 Gnar

49) foksieloy: Move G1 Warwick Magicjohn

50) MagicJohn: Trade B1 R1 Tibbers

51) foksieloy: Sacrifice Y2 Warwick
Move G1 Warwick Magicjohn
Move G1 Warwick Magicjohn
Catastrophe Magicjohn Green

52) MagicJohn: Sacrifice Y3 Tibbers
Move R1 Tibbers Foksieloy
Move R2 Billieholiday Foksieloy
Move R2 Billieholiday Foksieloy
Catastrophe Foksieloy Red
	foksieloy: Missclick :)
	MagicJohn: Who is this "Miss Click" and how did you meet? Does your significant other know?

53) foksieloy: Build Y2 Foksieloy

54) MagicJohn: Trade Y3 G3 Magicjohn

55) foksieloy: Discover Y1 Warwick G3 Annie

56) MagicJohn: Build Y3 Magicjohn

57) foksieloy: Build Y3 Annie

58) MagicJohn: Sacrifice Y2 Gatemouth
Move Y1 Gatemouth Annie
Move Y2 Magicjohn Annie
Catastrophe Annie Yellow

59) foksieloy: Sacrifice Y2 Foksieloy
Move G3 Foksieloy Magicjohn
Move R1 Warwick Magicjohn

60) MagicJohn: Trade B3 R3 Gnar

	MagicJohn: Yep! :)
	foksieloy: Argh I seen wrong, I though you had a blue ship in MagicJohn, wanted to build 3 blue ships. :D

GG!
	MagicJohn: Thanks for the game! We seem to play on about the same level. Makes for a good game.  Challenge me any time!


28334)
Variants: "Hard time"
Started: 2015.10.13, Ended: 2015.10.18
Participants: wil (S), Simon (N)
Winner: wil

1) Simon: Homeworld B3 R1 G3

2) wil: H B3 Y2 G3
	Simon: Enjoy!
	wil: I will!...played three games camping 2/1 

3) Simon: Build G1 Simon

4) wil: B G1 Wil

5) Simon: Trade G1 Y1 Simon

6) wil: T G1 R1 Wil

7) Simon: Build Y1 Simon

8) wil: B R1 Wil

9) Simon: Discover Y1 Simon G2 G2

10) wil: D R1 Wil B1 B1

11) Simon: Build Y1 G2

12) wil: B R2 Wil

13) Simon: Build Y2 Simon

14) wil: S G3 Wil
B R2 B1
B R2 B1
B R3 Wil

15) Simon: Build Y2 G2

16) wil: T R3 G3 Wil

17) Simon: Discover Y2 G2 B1 B1a

18) wil: M R2 Wil B1a

19) Simon: Sacrifice G3 Simon
Build Y3 Simon
Build Y3 B1a
Build Y3 B1a

20) wil: S G3 Wil
B R3 Wil
B R3 B1a
B R3 B1a
	wil: Fat fingers
	Simon: Against 6 red ships, and the natural reaction is *not* to defend!

21) Simon: Sacrifice Y2 B1a
Discover Y3 B1a G3 G3
Discover Y3 B1a B3 B3

22) wil: T R3 G3 Wil

23) Simon: Trade Y3 G3 Simon

24) wil: T R3 Y3 B1a

25) Simon: Trade Y3 R3 B3
	Simon: Assume I'd have built the last y2 instead of trade to g3 here. Then I would only move ships back and forth and never let go of a yellow. Does the game allow a draw by mutual agreement?
	wil: Doesn't look like it..,and I've not encountered one yet 
	wil: Doesn't look like it..,and I've not encountered one yet 
	wil: Doesn't look like it..,and I've not encountered one yet 
	wil: Doesn't look like it..,and I've not encountered one yet 
	wil: Doesn't look like it..,and I've not encountered one yet 
	wil: Doesn't look like it..,and I've not encountered one yet 

26) wil: B R3 Wil

27) Simon: Build G1 Simon

28) wil: B G1 Wil

29) Simon: Sacrifice G3 Simon
Build G1 Simon
Build Y2 G3
Build Y3 Simon

30) wil: M R3 B1a G2

31) Simon: Move Y3 G3 B1

32) wil: A Y1 G2

33) Simon: Trade Y2 B2 Simon

34) wil: S G1 Wil
B Y2 B1a

35) Simon: Sacrifice R3 B3
Attack Y1 G2
Attack R2 B1
Attack R2 B1

36) wil: M R1 Wil B1
C B1 R

37) Simon: Discover B2 Simon G2 G2a

38) wil: M R2 B1a G2a

39) Simon: Move Y1 G2 B1a

40) wil: T Y2 G2 B1a

41) Simon: Sacrifice G1 Simon
Build Y2 B1

42) wil: A Y1 G2

43) Simon: Sacrifice B2 G2a
Trade Y2 R2 B1
Trade Y3 G3 Simon
	wil: Most folks name their star systems... I just like naming mine by the star...
	wil: Most folks name their star systems... I just like naming mine by the star...

44) wil: M Y3 B1a G2a
	Simon: I found this to be the most descriptive name. Cute names obscure what it is, and naming by strategical idea is bad because that will change.
	wil: Agree..
	wil: Agree..

45) Simon: Sacrifice G3 Simon
Build Y2 B1
Build Y3 Simon
Build R1 B1

46) wil: B R1 G2a

47) Simon: Build G1 Simon
	Simon: And my sleep schedule is botched again, making for good Homeworlds.

48) wil: B G1 Wil

49) Simon: Build G3 Simon

50) wil: S G3 Wil
B G3 Wil
B R2 Wil
B R3 G2

51) Simon: Discover G3 Simon B2 B2

52) wil: S R1 G2a
A Y1 B1a

53) Simon: Move G1 Simon B2

54) wil: M G3 Wil B1a

55) Simon: Move Y1 Simon B2

56) wil: D G3 B1a B2 Beetwo

57) Simon: Move G3 B2 B1a

58) wil: S Y3 G2a
M R3 G2 Simon
M R3 G2 Simon
M G3 Beetwo Simon

	wil: It is 'the ole you take two I'll take three trick'
	Simon: yep, gg!
	wil: Ready anytime...win or lose...


28385)
Variants: "Hard time"
Started: 2015.10.15, Ended: 2015.11.2
Participants: SilentTitan (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R3 B1 G3

2) SilentTitan: Homeworld R1 B2 G3
	Simon: Hi, enjoy the game!
	SilentTitan: Thanks and the same back at you

3) Simon: Build G1 Simon

4) SilentTitan: Build G1 Silenttitan

5) Simon: Trade G1 B1 Simon

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Simon: Build B1 Simon

8) SilentTitan: Build Y1 Silenttitan

9) Simon: Build G1 Simon

10) SilentTitan: Build Y1 Silenttitan

11) Simon: Trade G3 Y3 Simon

12) SilentTitan: Discover Y1 Silenttitan G3 Sol

13) Simon: Discover B1 Simon G2 G2

14) SilentTitan: Build G1 Silenttitan

15) Simon: Build B2 G2



28336)
Variants: "Unrated"
Started: 2015.10.16, Ended: 2015.11.11
Participants: wil (S), dragon76n (N)
Winner: dragon76n

1) dragon76n: Homeworld G1 B3 Y3

2) wil: H Y2 B1 G3
	dragon76n: Hello Wil, we meet again. 

3) dragon76n: Build Y1 Dragon76n

4) wil: B G1 Wil

5) dragon76n: T Y1 G1 Dragon76n

6) wil: B G2 Wil

7) dragon76n: B G2 Dragon76n
	wil: I think I had a better move..
	wil: It has been awhile...

8) wil: T G1 B1 Wil
	dragon76n: I'm still learning the game anyway... I think I'me only played Homeworlds twice since I played online here with you. 

9) dragon76n: B Y1 Dragon76n

10) wil: B B1 Wil

11) dragon76n: T G2 R2 Dragon76n

12) wil: D B1 Wil G3 G3

13) dragon76n: Build R1 Dragon76n

14) wil: B B2 Wil

15) dragon76n: D R2 Dragon76n Y2 Yeltwo

16) wil: T B2 R2 Wil

17) dragon76n: Move R2 Yeltwo G3

18) wil: B B2 G3

19) dragon76n: A B2 G3

20) wil: B B2 G3

21) dragon76n: Sacrifice Y1 Dragon76n
Discover B2 G3 Y1 Yelone

22) wil: S R2 Wil
A R2 G3
P

23) dragon76n: B R1 Dragon76n

24) wil: T B2 Y2 G3

25) dragon76n: D B2 Yelone B3 Bluthr

26) wil: B B2 Wil

27) dragon76n: B Y1 Dragon76n

28) wil: D B1 Wil G3 Gee3

29) dragon76n: T B2 G2 Bluthr

30) wil: B B2 Gee3

31) dragon76n: B G1 Bluthr

32) wil: B B2 Wil

33) dragon76n: Trade Y3 B3 Dragon76n

34) wil: D G2 Wil Y3 Y3

35) dragon76n: Trade G1 Y1 Bluthr

36) wil: B G1 Wil

37) dragon76n: B G2 Bluthr

38) wil: T B2 Y2 Gee3

39) dragon76n: T G2 B2 Bluthr

40) wil: S G3 Wil
B G2 Y3
B G3 Wil
B R1 G3

41) dragon76n: M B2 Bluthr Wil
C Wil Blue

42) wil: M R1 G3 Wil

43) dragon76n: Sacrifice G2 Bluthr
Build Y1 Bluthr
Build Y3 Bluthr
	dragon76n: My previous orders were submitted in a browser that had old data still so when the page reloaded the results were quite different than I was expecting.
	wil: Do you wanna back up nmakecths move you wanted?

44) wil: B Y3 G3
	dragon76n: I had already done that. Thanks for checking though. 

45) dragon76n: Sacrifice Y3 Bluthr
Move Y1 Bluthr Wil
Move Y1 Bluthr Wil
Move Y1 Dragon76n Wil
Catastrophe Wil Y

	wil: Doh...  I didn't scroll down far enough
	dragon76n: GG
	wil: Miss count... Thx for the game...


28398)
Variants: "Hard time"
Started: 2015.10.19, Ended: 2015.12.1
Participants: MagicJohn (S), Salmonax (N)
Winner: MagicJohn

1) Salmonax: Homeworld R3 B2 G3

2) MagicJohn: Homeworld B1 G3 B3 *

3) Salmonax: Build G1 Salmonax

4) MagicJohn: Build B1 Magicjohn

5) Salmonax: Trade G1 Y1 Salmonax

6) MagicJohn: Trade B3 Y3 Magicjohn

7) Salmonax: Build G1 Salmonax

8) MagicJohn: Build B1 Magicjohn

9) Salmonax: Build G1 Salmonax

10) MagicJohn: Discover B1 Magicjohn G2 Leaf

11) Salmonax: Trade G3 B3 Salmonax

12) MagicJohn: Build B2 Leaf

13) Salmonax: Build Y1 Salmonax

14) MagicJohn: Build Y1 Magicjohn

15) Salmonax: Discover Y1 Salmonax G1 Two

16) MagicJohn: Trade B2 Y2 Leaf

17) Salmonax: Build Y2 Two

18) MagicJohn: Build B2 Leaf

19) Salmonax: Build G2 Salmonax

20) MagicJohn: Build B2 Leaf

21) Salmonax: Sacrifice Y2 Two
Move Y1 Two Leaf
Move Y1 Leaf Magicjohn

22) MagicJohn: Trade Y3 R3 Magicjohn

23) Salmonax: Build Y2 Magicjohn

24) MagicJohn: Attack Y2 Magicjohn

25) Salmonax: Build Y2 Magicjohn

26) MagicJohn: Discover B2 Leaf G1 Stem
Catastrophe Magicjohn Yellow

27) Salmonax: Build Y1 Salmonax
	Salmonax: Sorry for the delay

28) MagicJohn: Build B3 Stem

	MagicJohn: Life happens...


28375)
Variants: "Hard time"
Started: 2015.10.20, Ended: 2015.10.31
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: H B3 Y1 G3

2) Simon: Homeworld B1 R2 G3

3) wil: B G1 Wil

4) Simon: Build G1 Simon

5) wil: T G1 B1 Wil
	Simon: Still wondering about the mutually agreed draw when one person has all the yellows with nothing else, and is too weak to trade any. The red player can probably prevent the forced draw by moving to a y star.
	wil: Exactly...  I have yet to draw...often eventually you have to give up your monopoly to trade to continue...  And then pandoeas box is open...  Last ditch I trade my queen at home if I feel out manipulated it one economy.
	wil: Exactly...  I have yet to draw...often eventually you have to give up your monopoly to trade to continue...  And then pandoeas box is open...  Last ditch I trade my queen at home if I feel out manipulated it one economy.

6) Simon: Trade G1 Y1 Simon

7) wil: B B1 Wil

8) Simon: Build Y1 Simon

9) wil: D B1 Wil G2 G2

10) Simon: Discover Y1 Simon B3 B3

11) wil: B B2 Wil

12) Simon: Build Y2 Simon

13) wil: T B2 Y2 Wil

14) Simon: Build G1 Simon

15) wil: B B2 Wil

16) Simon: Sacrifice G3 Simon
Build Y2 B3
Build Y3 B3
Build Y3 Simon

17) wil: M Y2 Wil G2

18) Simon: Trade Y2 B2 B3

19) wil: T B1 R1 Wil

20) Simon: Trade Y1 R1 B3

21) wil: B B1 G2

22) Simon: Discover B2 B3 G2 G2a

23) wil: D B2 Wil Y2 Y2

24) Simon: Trade Y3 G3 Simon

25) wil: T B1 R1 G2

26) Simon: Build B1 G2a

27) wil: B R2 Wil

28) Simon: Trade B2 R2 G2a

29) wil: T R2 G2 Wil

30) Simon: Build B2 G2a

31) wil: S G2 Wil
B B2 Y2
B B3 G2

32) Simon: Discover Y1 Simon R3 R3

33) wil: T B3 Y3 G2

34) Simon: Trade B1 Y1 G2a

35) wil: D B2 Y2 Y3 Y3

36) Simon: Move G1 Simon B3

37) wil: B R2 G2

38) Simon: Build R3 G2a

39) wil: B R3 Wil

40) Simon: Build G1 Simon

41) wil: M Y2 G2 R3
	Simon: The game flows too comfortably. This is the most likely time to overlook something <_<

42) Simon: Discover Y1 R3 G1 G1

43) wil: T B2 G2 Y3

44) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 B3
Pass

45) wil: S G2 Y3
B Y3 R3
B G2 Wil

46) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B1 G2a
Build B2 G2a
	wil: I bought an option on a factory early...my investment paid off

47) wil: B B3 G2
	wil: And the bank... She is empty

48) Simon: Move B1 G2a Wil
	wil: But I suspect we'll see an economic collapse followed quickly by a govt bailout and our coffers will be full again soon.

49) wil: A B1 Wil
	Simon: I've won a different game because the other guy spent 3 moves on flying blues in.
	wil: Looks like I'll be flying blues out...

50) Simon: Sacrifice Y2 Simon
Move B2 G2a Wil
Move B2 G2a Wil
Catastrophe Wil B
	wil: And the bank will be full and universe reboot...
	wil: The wicket....she is about to get sticky...
	wil: Surely you won't waste three moves on this venture....he says slyly

51) wil: S Y3 R3
M B2 Y2 B3
M B1 G2 B3
M B3 G2 B3
C B3 B

52) Simon: Trade G1 B1 Simon
	wil: And the bank is replenished
	Simon: In the other game, I didn't steal the first blue. But that position offered big alternative moves, unlike the empty bank.

53) wil: B Y2 G2

54) Simon: Build Y2 G2a

55) wil: M Y2 G2 G1

56) Simon: Discover Y1 G1 G3 G3

57) wil: S G3 Wil
B Y3 G1
B Y3 R3
B G1 Wil

58) Simon: Move Y1 G3 Simon

59) wil: S Y3 G2
M R1 G2 Wil
M R1 Wil G2a
M R1 Wil G2a
C G2a R

60) Simon: Build Y3 Simon

61) wil: S Y2 G1
M Y3 R3 Simon
M Y2 R3 Simon
C Simon Y

62) Simon: Build Y1 G2a
	Simon: The board is a blank void.

63) wil: B Y2 G1
	wil: Yeah...but it is still over
	wil: I've just been delaying the inevitable

64) Simon: Move Y1 G2a Wil

65) wil: A Y1 Wil
	Simon: Hmm, I'd have expected the yellow catastrophe at g2a, then it would have played out like an opening with extra ships instead of blue.
	wil: Yeah...I blew it....

66) Simon: Move Y1 G2a Wil

67) wil: M Y1 Wil G2a

68) Simon: Sacrifice G3 Simon
Build Y2 Wil
Build Y3 Wil
Build Y3 Wil
Catastrophe Wil Y
	wil: Thx for the game...challenge anytime
	wil: Thx for the game...challenge anytime
	Simon: gg, and challenge coming right up.



28422)
Variants: "Unrated"
Started: 2015.10.21, Ended: 2015.11.4
Participants: fogus (S), kanzenryu (N)
Winner: fogus

1) kanzenryu: Homeworld B1 Y2 G3

2) fogus: Homeworld B1 Y2 G3

3) kanzenryu: Build G1 Kanzenryu
	fogus: let's try a claustrophobic game this time. :)

4) fogus: Build G1 Fogus
	kanzenryu: Variety is the spice of life. The spice must flow!

5) kanzenryu: Discover G1 Kanzenryu G3 Alpha

6) fogus: Trade G1 R1 Fogus

7) kanzenryu: Build G1 Kanzenryu

8) fogus: Move R1 Fogus Alpha

9) kanzenryu: Trade G1 R1 Kanzenryu

10) fogus: Attack G1 Alpha
	kanzenryu: In trouble already...

11) kanzenryu: Build G1 Kanzenryu

12) fogus: Build G1 Fogus

13) kanzenryu: Trade G1 Y1 Kanzenryu

14) fogus: Discover G1 Fogus Y3 Beta
	kanzenryu: So at least I've learned not to create another green ship

15) kanzenryu: Build R1 Kanzenryu

16) fogus: Build G1 Fogus

17) kanzenryu: Move R1 Kanzenryu Beta

18) fogus: Build G2 Beta

19) kanzenryu: Attack G1 Beta

20) fogus: Sacrifice R1 Alpha
Attack R1 Beta

21) kanzenryu: Move G1 Beta Fogus

22) fogus: Trade G1 R1 Fogus
	kanzenryu: Hmmm... let's try this

23) kanzenryu: Discover G1 Fogus Y3 Gamma

24) fogus: Build R2 Fogus

25) kanzenryu: Build R2 Kanzenryu

26) fogus: Sacrifice G3 Fogus
Build R2 Beta
Build R3 Fogus
Build G1 Beta

27) kanzenryu: Move R2 Kanzenryu Gamma

28) fogus: Move R3 Fogus Gamma

29) kanzenryu: Sacrifice G3 Kanzenryu
Build R3 Gamma
Build R3 Gamma
Build G2 Gamma
Catastrophe Gamma Red
	kanzenryu: Don't forget about our alien city game!

30) fogus: Move R2 Beta Kanzenryu

	kanzenryu: Of course it's not enough to save me


28392)
Variants: "Unrated"
Started: 2015.10.22, Ended: 2015.12.21
Participants: wil (S), sompm (N)
Winner: wil

1) sompm: Homeworld G3 Y2 B3

2) wil: H B3 Y1 G3

3) sompm: Build B1 Sompm
	wil: We meet again...have fun.

4) wil: B G1 Wil
	sompm: You too.

I have an exhibition match scheduled in ten months. I have to practice.
	wil: Exhibition match?

5) sompm: Build B1 Sompm

6) wil: T G1 Y1 Wil
	sompm: Every year around PAX Prime/Dev, one certain Andy Looney will be in town and desires to play Homeworlds with whomever he can. I was a poor opponent for him last year, so I must train.

7) sompm: Discover B1 Sompm G1 G1
	wil: Ah...and he is giving out medals for those that beat him!  

8) wil: B Y1 Wil
	sompm: The medal is one of the goals. It would be more of a physical record of an event than anything. Basically I want to give him a good fight.

9) sompm: Build B1 G1
	wil: While I've been working on the early advantage, he is more long build for the end game...

10) wil: D Y1 Wil G2 G2

11) sompm: Build B2 Sompm

12) wil: B Y2 Wil

13) sompm: Trade B2 Y2 Sompm

14) wil: B Y3 G2

15) sompm: Sacrifice Y2 Sompm
Move B1 G1 G2
Discover B1 G1 Y3 Y3

16) wil: T Y1 R1 Wil

17) sompm: Sacrifice B1 G2
Trade B1 Y1 Sompm

18) wil: B Y2 G2

19) sompm: Build B1 Sompm

20) wil: B Y3 Wil

21) sompm: Discover B1 Sompm G1 G1
	sompm: I think I may not be very good at this game.

22) wil: T Y2 B2 Wil
	wil: It took probably a dozen games to start to understand.... Another two dozen games before I started to develop strategies...

23) sompm: Build B1 G1

24) wil: B B2 Wil

25) sompm: Build B2 G1

26) wil: D Y2 G2 B3 B3

27) sompm: Trade B2 Y2 G1

28) wil: M B2 Wil G2

29) sompm: Trade B1 G1 G1

30) wil: B R1 Wil

31) sompm: Trade Y1 R1 Sompm

32) wil: M Y3 G2 G1

33) sompm: Build G1 G1

34) wil: B G2 Wil

35) sompm: Discover Y2 G1 G2 G2a

36) wil: D B2 G2 G3 G3

37) sompm: Build B1 G1
	sompm: What's your naming convention for identically-sized planets?
	wil: I'm really the only one around that calls them like this...Andy likes to use star names, others sci-fi references.... Geetoo, beewon, whytree...is my next steos

38) wil: S G3 Wil
B G3 Wil
B Y1 B3
B B2 G3

39) sompm: Build R2 Sompm

40) wil: M R1 Wil G2

41) sompm: Move R1 Sompm G1

42) wil: S G3 Wil
B G3 Wil
B R2 Wil
B R2 G2

43) sompm: Sacrifice Y2 G2a
Discover B1 G1 Y2 Y2
Move B1 G1 Y2

44) wil: S G3 Wil
B G2 Wil
B G3 Wil
B R3 G2

45) sompm: Move B1 Y2 Wil
	sompm: Well, it's approaching concede time. Most of the resources are claimed and not by me. Might as well go out with a bang, eh?

46) wil: M Y1 B3 G1

47) sompm: Move B1 Y2 Wil
Catastrophe Wil Blue

48) wil: S R2 G2
A R1 G1
A G1 G1

49) sompm: Build B1 Sompm
	sompm: I just realized a blue nuke opens me up (further) to a green nuke. Hmm...

50) wil: S G3 Wil
B G3 Wil
B Y2 G1
B R2 G1
	sompm: Screw it, right? You're not really living if you don't die once in a while.

51) sompm: Build R3 Sompm

52) wil: S Y2 G1
M R1 G1 Sompm
M R1 Wil Sompm
C Sompm R

53) sompm: Trade B3 R3 Sompm

54) wil: S Y3 Wil
M R3 G2 G1
M R3 G1 Sompm
M Y3 G1 Sompm

55) sompm: Attack R3 Sompm
	wil: Finale...

56) wil: S R2 G1
A R3 Sompm
A R3 Sompm
	sompm: I believe it must take you at least three moves to wipe me out, not two. :)
	wil: That will be your choice

57) sompm: Build B1 Sompm

58) wil: S R2 Wil
A B1 Sompm
A B1 Sompm

	sompm: Good game.
	wil: Yez it is...challenge me anytime


28444)
Variants: "Hard time"
Started: 2015.10.25, Ended: 2015.11.3
Participants: dlwillson (S), endo (N)
Winner: endo

1) endo: Homeworld Y1 B2 G3

2) dlwillson: H B3 R1 G3
	endo: At last I've reached the top 5! Good luck and have fun.

3) endo: Build G1 Endo
	dlwillson: Congratulations on making it so far!
Good skill and fun to you!

4) dlwillson: B G1 Dlwillson

5) endo: Trade G1 Y1 Endo

6) dlwillson: Trade G1 Y1 Dlwillson

7) endo: Build Y2 Endo

8) dlwillson: B Y2 Dlwillson

9) endo: Trade Y1 R1 Endo

10) dlwillson: D Y1 Dlwillson B2 Sky

11) endo: Build R1 Endo

12) dlwillson: S G3 Dlwillson
B Y1 Sky
B Y2 Sky
B Y3 Dlwillson

13) endo: Discover Y2 Endo G3 Zf

14) dlwillson: T Y1 G1 Sky

15) endo: Build Y1 Zf

16) dlwillson: T Y3 G3 Dlwillson

17) endo: Discover Y1 Zf G2 Kp

18) dlwillson: T Y2 R2 Sky

19) endo: Build R2 Endo

20) dlwillson: B R2 Sky

21) endo: Move R2 Endo Zf

22) dlwillson: Trade R2 G2 Sky

23) endo: Discover R1 Endo Y3 Nf

24) dlwillson: D G1 Sky Y3 Sol

25) endo: Sacrifice G3 Endo
Build R2 Zf
Build R3 Endo
Build R3 Nf

26) dlwillson: B R3 Sky

27) endo: Trade R3 G3 Endo

28) dlwillson: T R3 Y3 Sky

29) endo: Build R3 Endo

30) dlwillson: S G2 Sky
B Y2 Dlwillson
B R3 Sky

31) endo: Trade R3 B3 Endo

32) dlwillson: M R3 Sky Zf

33) endo: Build R3 Zf
Catastrophe Zf R
	dlwillson: Do your system names mean anything?

34) dlwillson: D Y1 Sky B3 Sea
	endo: I name my systems after mathematical concepts. In this game they're axiom systems of set theory. Zermelo-Fraenkel set theory, Kripke-Platek set theory, New Foundations.

35) endo: Move B3 Endo Sol
	dlwillson: I want to know more about them. Should I head to Wikipedia, or somewhere else?

36) dlwillson: M G1 Sol Sky
	endo: Wikipedia is what I've used the most. Mathematics Stack Exchange also contains a lot of good facts, and might be more accessible than the technical Wikipedia articles. If you know the basics about logic and set theory, you could start immediately with the lists of axioms in the relevant Wikipedia articles. If not, the article https://en.wikipedia.org/wiki/Set_theory looks like a good introduction, and browsing the Stack Exchange questions would be useful if you don't understand something. There are also some other sites like PlanetMath, Wolfram MathWorld and Stanford Encyclopedia of Philosophy. If you're looking for a particular concept, Google is probably your best friend.

37) endo: Build R2 Endo
	dlwillson: I'll do some reading. Thanks!

38) dlwillson: T Y2 R2 Dlwillson
	endo: You're welcome! I hope you'll read about some things that are interesting to you - I personally find set theory fascinating, but I don't think it's a branch of mathematics for everyone.

39) endo: Move R2 Endo Sea

40) dlwillson: M R2 Dlwillson Kp

41) endo: Sacrifice G3 Endo
Build Y2 Zf
Build R3 Endo
Build R3 Sea

42) dlwillson: Attack Y1 Kp

43) endo: Attack Y1S Sea

44) dlwillson: Trade Y3 G3 Sky

45) endo: Discover R1 Endo Y3 Tg

46) dlwillson: M R2 Kp Tg

47) endo: Trade R2 G2 Sea

48) dlwillson: B R2 Sky

49) endo: Move R1 Tg Endo

50) dlwillson: M R2 Tg Endo

51) endo: Trade R3 Y3 Endo

52) dlwillson: A R1 Endo

53) endo: Build R3 Sea

54) dlwillson: S Y2 Dlwillson
M R2 Sky Sea
M R2 Endo Sea
C Sea R

55) endo: Build Y2 Sea

56) dlwillson: Build G1 Dlwillson

57) endo: Build G1 Sea

58) dlwillson: Trade G1 B1 Sky

59) endo: Sacrifice R1 Nf
Attack R1 Endo

60) dlwillson: M Y1 Kp Dlwillson

61) endo: Sacrifice G2 Sea
Build B1 Sol
Build R1 Nf

62) dlwillson: M Y1 Dlwillson Sky

63) endo: Sacrifice Y2 Zf
Move B1 Sol Sky
Move B3 Sol Sky
Catastrophe Sky B

64) dlwillson: T G3 Y3 Dlwillson

65) endo: Discover Y1 Sea G2 Nbg

66) dlwillson: B Y1 Dlwillson

67) endo: Sacrifice Y3 Endo
Move Y2 Zf Nbg
Move Y1 Nbg Dlwillson
Move Y2 Nbg Dlwillson
Catastrophe Dlwillson Y

	dlwillson: Good game well played. I look forward to playing you again someday.
	endo: Thanks for an interesting game!


28487)
Variants: "Hard time"
Started: 2015.10.31, Ended: 2015.11.6
Participants: goulo (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) goulo: Homeworld R3 B2 G3

3) ts52: Build G1 Ts52
	goulo: hi, have fun!
	ts52: Thanks! You too!


4) goulo: Build G1 Goulo

5) ts52: Trade G1 B1 Ts52

6) goulo: Trade G1 Y1 Goulo

7) ts52: Build B1 Ts52

8) goulo: Build G1 Goulo

9) ts52: Discover B1 Ts52 G2 Kermit

10) goulo: Trade G3 B3 Goulo

11) ts52: Build B2 Kermit

12) goulo: Build G1 Goulo

13) ts52: Trade B2 Y2 Kermit

14) goulo: Discover B3 Goulo Y1 Flaveto

15) ts52: Build B2 Kermit

16) goulo: Move B3 Flaveto Goulo

17) ts52: Trade B2 G2 Kermit

18) goulo: Discover G1 Goulo Y1 Flaveto

19) ts52: Build B2 Kermit

20) goulo: Move G1 Flaveto Kermit

21) ts52: Discover G2 Kermit B3 Grover

22) goulo: Build G1 Kermit

23) ts52: Discover B2 Kermit G3 Oscar

24) goulo: Build G2 Kermit
Catastrophe Kermit G

25) ts52: Build B1 Ts52

26) goulo: Build G1 Goulo

27) ts52: Discover B1 Ts52 G2 Kermit

28) goulo: Trade G1 R1 Goulo

29) ts52: Trade B1 R1 Ts52

30) goulo: Build Y1 Goulo

31) ts52: Build B1 Oscar

32) goulo: Discover Y1 Goulo Y1 Flaveto

33) ts52: Trade B2 Y2 Oscar

34) goulo: Build Y2 Goulo

35) ts52: Build B2 Kermit

36) goulo: Build G1 Goulo

37) ts52: Build B2 Oscar

38) goulo: Discover Y1 Flaveto G2 Verdo

39) ts52: Build B3 Oscar

40) goulo: Build Y1 Verdo

41) ts52: Trade B3 Y3 Oscar

42) goulo: Build Y2 Verdo

43) ts52: Move Y2 Oscar Verdo
Catastrophe Verdo Yellow

	goulo: i can't see any hope for me here... thanks for the game!
	ts52: Thanks for the game!


28420)
Variants: "Hard time"
Started: 2015.11.1, Ended: 2015.11.5
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: H B3 Y2 G3

2) Simon: Homeworld R3 B1 G3

3) wil: B G1 Wil

4) Simon: Build G1 Simon

5) wil: T G1 B1 Wil

6) Simon: Trade G1 B1 Simon

7) wil: B B2 Wil

8) Simon: Build B2 Simon

9) wil: D B2 Wil G1 G1

10) Simon: Trade B2 Y2 Simon

11) wil: T B1 R1 Wil

12) Simon: Discover B1 Simon G2 G2

13) wil: B R1 Wil

14) Simon: Build B1 G2

15) wil: M R1 Wil G1

16) Simon: Build B2 G2

17) wil: B R1 G1

18) Simon: Trade B2 R2 G2

19) wil: T R1 Y1 G1

20) Simon: Trade B1 Y1 G2

21) wil: B G1 Wil

22) Simon: Build Y1 Simon

23) wil: B Y2 G1

24) Simon: Discover Y2 Simon B2 B2

25) wil: M Y1 G1 B2

26) Simon: Sacrifice G3 Simon
Build Y3 Simon
Build Y3 B2
Build Y3 G2

27) wil: M Y2 G1 B2
C B2 Y

28) Simon: Trade Y3 G3 Simon
	wil: Yeah, I got behind the ball there

29) wil: T G1 Y1 Wil

30) Simon: Move Y3 G2 G1
	Simon: hmm, and catastrophe is expensive as always, but looks like the only move still.

31) wil: D Y1 Wil G1 Gee1

32) Simon: Sacrifice R2 G2
Attack R1 G1
Attack B2 G1
	wil: It is really time to knock over my king

33) wil: B Y2 Gee1

34) Simon: Build Y2 G2

35) wil: D Y1 Gee1 B2 B2

36) Simon: Build Y3 G1

37) wil: B Y3 Gee1

38) Simon: Trade Y3 R3 G1

39) wil: D Y2 Gee1 B2 Bee2

40) Simon: Build Y3 Simon

	wil: I could wait for an error...but you got me
	Simon: gg.


28488)
Variants: "Hard time"
Started: 2015.11.2, Ended: 2015.11.13
Participants: wil (S), foksieloy (N)
Winner: wil

1) foksieloy: Homeworld Y3 B1 G3
	foksieloy: Hi wil, been a while. Let's hit one.

2) wil: H Y3 B2 G3
	wil: It has and thx!

3) foksieloy: Build G1 Foksieloy

4) wil: B G1 Wil

5) foksieloy: Discover G1 Foksieloy B2 Tibbers

6) wil: T G1 B1 Wil

7) foksieloy: Trade G1 B1 Tibbers

8) wil: B B2 Wil

9) foksieloy: Build G1 Foksieloy

10) wil: D B1 Wil Y1 Y1

11) foksieloy: Move G1 Foksieloy Tibbers

12) wil: B B3 Wil

13) foksieloy: Build G1 Foksieloy

14) wil: T B2 R2 Wil

15) foksieloy: Trade G1 R1 Foksieloy

16) wil: B B2 Wil

17) foksieloy: Build G1 Tibbers

18) wil: S G3 Wil
B B3 Y1
B B3 Y1
B R1 Wil

19) foksieloy: Trade G1 Y1 Tibbers

20) wil: T B3 R3 Y1

21) foksieloy: Discover B1 Tibbers G1 Annie

22) wil: T B1 G1 Y1

23) foksieloy: Sacrifice Y1 Tibbers
Move B1 Annie Wil
Catastrophe Wil Blue

24) wil: M R3 Y1 Tibbers
	wil: Ouch

25) foksieloy: Sacrifice G1 Tibbers
Build R1 Foksieloy
	foksieloy: You still have an economic advantage.

26) wil: B B1 Y1
	wil: He says twisting the sword...

27) foksieloy: Build R2 Foksieloy

28) wil: B B1 Y1

29) foksieloy: Trade R2 Y2 Foksieloy

30) wil: M B3 Y1 Wil

31) foksieloy: Discover R1 Foksieloy G2 Fiora

32) wil: B B2 Y1

33) foksieloy: Build R2 Foksieloy

34) wil: T R1 G1 Wil

35) foksieloy: Trade R2 B2 Foksieloy

36) wil: D B2 Y1 Y2 Y2

37) foksieloy: Move B2 Foksieloy Fiora

38) wil: T B1 Y1 Y1

39) foksieloy: Build R1 Fiora

40) wil: T R3 Y3 Tibbers

41) foksieloy: Build B1 Fiora

42) wil: B B3 Y1

43) foksieloy: Trade B1 Y1 Fiora

44) wil: T B3 G3 Y1

45) foksieloy: Build Y2 Fiora

46) wil: S G3 Y1
B B1 Wil
B B3 Y2
B B3 Y1

47) foksieloy: Move Y2 Fiora Wil

48) wil: A Y2 Wil

49) foksieloy: Move Y2 Foksieloy Fiora

50) wil: B R2 Wil
	wil: To early

51) foksieloy: Move Y2 Fiora Wil

52) wil: D Y2 Wil G2 G2

53) foksieloy: Sacrifice Y2 Wil
Move R1 Fiora Wil
Move R1 Fiora Wil
Catastrophe Wil Red

54) wil: B Y2 G2

55) foksieloy: Trade G3 R3 Foksieloy

56) wil: T B3 R3 Wil

57) foksieloy: Build B3 Fiora

58) wil: T B3 G3 Y2

59) foksieloy: Trade B3 R3 Fiora

60) wil: S G3 Y2
B B3 Y2
B B3 Wil
B R1 Wil

61) foksieloy: Build R1 Fiora

62) wil: B G1 Y1

63) foksieloy: Move R1 Fiora Wil

64) wil: M R3 Wil Y2

65) foksieloy: Build R2 Fiora

66) wil: S G1 Y1
B R2 Y2

67) foksieloy: Trade R1 G1 Foksieloy

68) wil: A R1 Wil

69) foksieloy: Build G2 Foksieloy

70) wil: S Y2 G2
M R1 Wil Fiora
M R1 Wil Fiora
C Fiora R

71) foksieloy: Build Y2 Fiora

72) wil: S Y2 G2
M Y3 Tibbers Foksieloy
M B3 Y2 Foksieloy

73) foksieloy: Attack Y3 Foksieloy

74) wil: S R3 Y2
A Y3 Foksieloy
A R3 Foksieloy
A G2 Foksieloy

	wil: Why this system looks suitable for a new colony.... They've left all these nice ships!
	wil: 40 moves...good game!
	foksieloy: This was quite fun. gg!


28043)
Variants: "Hard time"
Started: 2015.11.3, Ended: 2015.11.6
Participants: kanzenryu (S), SilentTitan (N)
Winner: kanzenryu



28186)
Started: 2015.11.3, Ended: 2015.11.10
Participants: ts52 (S), kanzenryu (N)
Winner: ts52

1) kanzenryu: Homeworld R1 B2 G3

2) ts52: Homeworld Y3 B1 G3
	kanzenryu: If you don't feel like playing a newbie just let me know and I'll resign.
	ts52: I'm always happy to play a newbie. More players is a good thing. Feel free to ask questions. Just make a move then undo it, so SDG will still send me an email.

3) kanzenryu: Build G1 Kanzenryu

4) ts52: Build G1 Ts52
	kanzenryu: I'm having a hard time convincing people to play with the plastic pyramids I got for my birthday so it's great to be able to play online.
	ts52: Oh no. That's terrible. Although I have the same problem. No one around here want's to play homeworlds... :(

5) kanzenryu: Trade G1 Y1 Kanzenryu

6) ts52: Trade G1 B1 Ts52

7) kanzenryu: Build G1 Kanzenryu
	kanzenryu: I've been kind of obsessed with this game ever since I read the rules.

8) ts52: Build B1 Ts52

9) kanzenryu: Build Y1 Kanzenryu

10) ts52: Discover B1 Ts52 G2 Kermit

11) kanzenryu: Discover Y1 Kanzenryu G3 Moon

12) ts52: Build B2 Kermit

13) kanzenryu: Build Y1 Moon

14) ts52: Trade B2 Y2 Kermit

15) kanzenryu: Build Y2 Kanzenryu

16) ts52: Sacrifice G3 Ts52
Build B2 Kermit
Build B2 Kermit
Build B3 Ts52

17) kanzenryu: Discover G1 Kanzenryu B3 Desperation
	kanzenryu: Ironically the Smurf fleet warps into the Kermit system

18) ts52: Trade B3 G3 Ts52

19) kanzenryu: Build G1 Kanzenryu
	kanzenryu: Oops meant b3, that's better

20) ts52: Build B3 Ts52

21) kanzenryu: Sacrifice Y2 Kanzenryu
Discover Y1 Moon G2 Close
Move Y1 Moon Close

22) ts52: Discover B2 Kermit G3 Oscar

23) kanzenryu: Move Y1 Close Ts52

24) ts52: Trade B3 R3 Ts52

25) kanzenryu: Sacrifice G3 Kanzenryu
Build Y2 Ts52
Build Y2 Ts52
Build G1 Desperation
Catastrophe Ts52 Y
	kanzenryu: And... this marks the first time I've made it to the other side in any game so far ;-)

26) ts52: Sacrifice Y2 Kermit
Move R3 Ts52 Oscar
Move R3 Oscar Kanzenryu
	ts52: :)

	kanzenryu: Yes indeed. But the current economic climate was not favorable for starship building for any strategy. Thanks so much for the game.
	ts52: Thank you for the game. Happy to play again, any time.


28397)
Variants: "Hard time"
Started: 2015.11.3, Ended: 2015.11.8
Participants: kanzenryu (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R3 B1 G3
	Simon: Hi, enjoy. :-)

2) kanzenryu: Homeworld B1 Y2 G3

3) Simon: Build G1 Simon
	kanzenryu: More fun coming up

4) kanzenryu: Build G1 Kanzenryu

5) Simon: Trade G1 B1 Simon

6) kanzenryu: Trade G1 Y1 Kanzenryu

7) Simon: Build B2 Simon

8) kanzenryu: Build G1 Kanzenryu

9) Simon: Trade B2 Y2 Simon
	kanzenryu: Ah, now I see why you did that. Medium ship.

10) kanzenryu: Trade G1 R1 Kanzenryu
	Simon: Yeah, this follows from the colors of 1-pointers in the homeworlds.

11) Simon: Discover B1 Simon G2 G2

12) kanzenryu: Discover Y1 Kanzenryu G3 Foothold

13) Simon: Build B2 G2

14) kanzenryu: Build G1 Kanzenryu

15) Simon: Trade B2 Y2 G2
	kanzenryu: Not being able to trade for a small blue ship is annoying!

16) kanzenryu: Build Y1 Foothold

17) Simon: Build B2 G2

18) kanzenryu: Build R1 Kanzenryu

19) Simon: Trade B2 R2 G2

20) kanzenryu: Discover Y1 Foothold G2 Staging

21) Simon: Build B2 G2

22) kanzenryu: Build Y1 Staging

23) Simon: Build Y3 G2

24) kanzenryu: Build Y3 Foothold

25) Simon: Build Y3 Simon

26) kanzenryu: Trade G3 B3 Kanzenryu

27) Simon: Trade Y3 R3 Simon

28) kanzenryu: Move R1 Kanzenryu Foothold

29) Simon: Move R3 Simon Staging

30) kanzenryu: Sacrifice Y1 Staging
Discover Y1 Staging G3 Other

31) Simon: Build G1 Simon

32) kanzenryu: Discover Y3 Foothold R2 Brink

33) Simon: Move B2 G2 Foothold

34) kanzenryu: Move Y3 Brink Foothold

35) Simon: Sacrifice Y3 G2
Move B2 Foothold Kanzenryu
Move B1 G2 Foothold
Move B1 Foothold Kanzenryu
Catastrophe Kanzenryu B

36) kanzenryu: Move Y3 Foothold Kanzenryu

37) Simon: Build Y1 Simon

38) kanzenryu: Build Y3 Foothold

39) Simon: Build Y3 G2

40) kanzenryu: Discover Y1 Foothold R2 Hopeful

41) Simon: Discover Y2 Simon R2 R2

42) kanzenryu: Build G1 Kanzenryu

43) Simon: Sacrifice Y2 G2
Move Y2 R2 Foothold
Move Y2 Foothold Kanzenryu

44) kanzenryu: Discover Y3 Kanzenryu R3 Yikes
	kanzenryu: Wow, nice.

45) Simon: Sacrifice R3 Staging
Attack R1 Kanzenryu
Attack G1 Kanzenryu
Attack G1 Kanzenryu
	kanzenryu: Party at my place
	Simon: Yes, this kind of maneuver needs thorough calculation, otherwise it's too expensive. You may have one star left only, but haven't done any maneuvers that exhaust your own fleet, potentially giving you the more active position.
	Simon: Nonetheless, you seem to understand well the moves that occur. :) Even if you don't anticipate all of them, but that's the experience growing still. gg. Have your reallife pieces arrived yet?
	kanzenryu: Yes. Mainly been playing IceTowers with my family.  They're not into more hardcore games.



28433)
Variants: "Unrated"
Started: 2015.11.3, Ended: 2015.11.11
Participants: wil (S), kanzenryu (N)
Winner: wil

1) kanzenryu: Homeworld Y1 B3 G3

2) wil: H B3 Y2 G3
	kanzenryu: If you're not keen on playing newbies let me know and I'll resign.
	wil: No problem... If you'd like any instructions just ask....enjoy teaching the game

3) kanzenryu: Build G1 Kanzenryu

4) wil: B G1 Wil
	kanzenryu: I'm really enjoying learning this game. Trying to concentrate on noticing what sacrifice opportunities exist for both sides.
	wil: It took me a while to see the strategies come at me...

5) kanzenryu: Trade G1 Y1 Kanzenryu

6) wil: T G1 Y1 Wil

7) kanzenryu: Build Y2 Kanzenryu

8) wil: B Y2 Wil
	kanzenryu: Now I'm wondering why you let me build a y2...

9) kanzenryu: Discover Y2 Kanzenryu G2 Foothold

10) wil: D Y1 Wil G1 G1

11) kanzenryu: Build Y3 Foothold

12) wil: B Y3 G1

13) kanzenryu: Trade Y1 R1 Kanzenryu

14) wil: T Y2 R2 Wil

15) kanzenryu: Build G1 Kanzenryu

16) wil: D Y1 G1 G2 G2

17) kanzenryu: Build R1 Kanzenryu

18) wil: B G1 Wil

19) kanzenryu: Move R1 Kanzenryu Foothold

20) wil: T G1 B1 Wil

21) kanzenryu: Trade G1 B1 Kanzenryu

22) wil: M B1 Wil G1

23) kanzenryu: Move B1 Kanzenryu Foothold

24) wil: B Y1 G2

25) kanzenryu: Build G1 Kanzenryu

26) wil: B G1 Wil

27) kanzenryu: Discover Y2 Foothold R1 Peep

28) wil: M G1 Wil G1

29) kanzenryu: Build R2 Foothold

30) wil: D G1 G1 Y3 Y3

31) kanzenryu: Build Y2 Foothold

32) wil: B G2 Wil

33) kanzenryu: Sacrifice G3 Kanzenryu
Build B1 Foothold
Build R2 Kanzenryu
Build G3 Kanzenryu

34) wil: B G3 Y3

35) kanzenryu: Move R2 Kanzenryu G2

36) wil: S G2 Wil
B R3 Wil
B B2 G1

37) kanzenryu: Attack Y1 G2

38) wil: M R2 Wil G1

39) kanzenryu: Build R3 G2

40) wil: S G3 Y3
B G2 Wil
B G3 Y3
B R3 G1

41) kanzenryu: Move Y1 G2 Peep

42) wil: D Y1 G2 B3 B3

43) kanzenryu: Sacrifice Y3 Foothold
Move Y2 Foothold Peep
Move Y1 Peep Wil
Move Y2 Peep Wil

44) wil: B Y3 G1

45) kanzenryu: Move Y2 Peep Wil
Catastrophe Wil Y

46) wil: M Y3 G1 Foothold
	kanzenryu: This is when I want to negotiate a peace treaty ;-)
	wil: I will send over a red cardinal to discuss your surrender

47) kanzenryu: Trade R1 Y1 Foothold

48) wil: S R2 G1
A R2 Foothold
A Y1 Foothold
	wil: On second thought our secretary of transportation might be better suited
	kanzenryu: Ha ha, nice

	kanzenryu: Staring down a lot of barrels pointed at me.
	wil: True... I still had work to do but was in control


28495)
Variants: "Hard time"
Started: 2015.11.3, Ended: 2015.11.24
Participants: TwoShort (S), Simon (N)
Winner: TwoShort

1) Simon: Homeworld R3 B1 G3

2) TwoShort: Homeworld B1 G2 B3 *
	Simon: Hi, enjoy the game!

3) Simon: Build G1 Simon
	TwoShort: Howdy!

4) TwoShort: Build B1 Twoshort

5) Simon: Build G1 Simon

6) TwoShort: Trade B3 Y3 Twoshort

7) Simon: Trade G3 Y3 Simon

8) TwoShort: Build B2 Twoshort

9) Simon: Discover G1 Simon B2 B2

10) TwoShort: Discover B2 Twoshort G3 Grogar

11) Simon: Build G1 B2

12) TwoShort: Build B2 Twoshort

13) Simon: Build G2 B2

14) TwoShort: Build B3 Grogar

15) Simon: Trade G2 Y2 B2

16) TwoShort: Discover B2 Twoshort G3 Greenland

17) Simon: Build G2 B2

18) TwoShort: Build B3 Twoshort

19) Simon: Move G1 B2 Grogar

20) TwoShort: Build B3 Greenland

21) Simon: Build G2 B2

22) TwoShort: Discover B1 Twoshort G3 Gondor

23) Simon: Trade G2 R2 B2

24) TwoShort: Trade B2 R2 Greenland

25) Simon: Sacrifice G2 B2
Build G2 Grogar
Build G2 Grogar
Catastrophe Grogar G

26) TwoShort: Build B2 Gondor

27) Simon: Build G1 Simon

28) TwoShort: Build B2 Greenland

29) Simon: Build G2 Simon

30) TwoShort: Build B3 Twoshort

31) Simon: Build G2 B2

32) TwoShort: Sacrifice B2 Gondor
Trade B3 Y3 Greenland
Trade B3 G3 Twoshort

33) Simon: Trade G2 B2 Simon

34) TwoShort: Sacrifice G3 Twoshort
Build B3 Gondor
Build B3 Greenland
Build R1 Greenland

35) Simon: Build G2 B2

36) TwoShort: Move B3 Greenland B2

37) Simon: Build G3 Simon

38) TwoShort: Sacrifice R2 Greenland
Attack R2 B2
Attack Y2 B2

39) Simon: Discover G3 Simon R2 R2

40) TwoShort: Sacrifice Y3 Twoshort
Move Y3 Greenland B2
Move Y3 B2 Simon
Move B3 B2 Simon

	Simon: gg
	Simon: And instructive opening too. There should be no problem if I trade the queen at home to blue once, but it must done very early.
	TwoShort: Thanks for the game!  You can escape the blue lock by trading the queen asap, but I think forcing you to spend a few early turns dealing with it gives me enough of a jump that it's still a problem :)


28507)
Variants: "Hard time"
Started: 2015.11.3, Ended: 2015.11.6
Participants: endo (S), wil (N)
Winner: endo

1) wil: H Y3 B1 G3

2) endo: Homeworld Y1 B2 G3

3) wil: B G1 Wil

4) endo: Build G1 Endo

5) wil: T G1 B1 Wil

6) endo: Trade G1 Y1 Endo

7) wil: B B1 Wil

8) endo: Build Y1 Endo
	wil: Ah you chose to race

9) wil: D B1 Wil G2 G2

10) endo: Discover Y1 Endo B3 Well

11) wil: S G3 Wil
B B2 G2
B B2 G2
B B3 Wil

12) endo: Build Y2 Endo

13) wil: T B2 Y2 G2

14) endo: Discover Y1 Endo B3 Lattice

15) wil: B Y2 G2

16) endo: Build G1 Endo

17) wil: D Y2 G2 G3 G3

18) endo: Sacrifice G3 Endo
Build G1 Endo
Build Y3 Well
Build Y3 Lattice

19) wil: T B3 G3 Wil

20) endo: Trade Y1 R1 Well

21) wil: T B2 R2 G2

22) endo: Sacrifice Y2 Endo
Move Y3 Well Endo
Move Y3 Lattice G2

23) wil: B Y1 G2

24) endo: Sacrifice R1 Well
Attack R2 G2

25) wil: M Y2 G3 G2
C G2 Y

26) endo: Attack B1 G2

27) wil: B B2 Wil

28) endo: Sacrifice Y1 Lattice
Move B1 G2 Wil
Catastrophe Wil B

29) wil: B G1 Wil

30) endo: Move Y3 Endo Wil
	wil: Nice plays

	endo: Thanks for the game! You had me in a kinda tight situation at around moves 6-11 with your blue domination, catastrophe threats and bunch of medium ships against my extra Y3, but apparently I managed to create enough complications to wrestle my way out.


28499)
Started: 2015.11.3, Ended: 2015.11.11
Participants: ts52 (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) ts52: Homeworld Y3 B2 G3

3) endo: Build G1 Endo
	ts52: Have a good game!

4) ts52: Build G1 Ts52
	endo: Same to you!

5) endo: Trade G1 B1 Endo

6) ts52: Trade G1 B1 Ts52

7) endo: Build B2 Endo

8) ts52: Discover B1 Ts52 G1 Kermit

9) endo: Discover B1 Endo G2 Cyclic

10) ts52: Build G1 Ts52

11) endo: Sacrifice G3 Endo
Build B2 Cyclic
Build B3 Endo
Build B3 Cyclic

12) ts52: Build B3 Kermit

13) endo: Trade B2 Y2 Cyclic

14) ts52: Trade B3 Y3 Kermit

15) endo: Trade B3 G3 Endo

16) ts52: Build Y1 Kermit

17) endo: Discover B1 Cyclic G1 Simple
	endo: Gotta get the move order right!

18) ts52: Trade Y3 R3 Kermit

19) endo: Trade B2 R2 Endo

20) ts52: Build B2 Kermit

21) endo: Build B2 Cyclic

22) ts52: Discover B2 Kermit G2 Oscar

23) endo: Build B3 Simple

24) ts52: Build B3 Oscar

25) endo: Trade B2 G2 Cyclic

26) ts52: Discover G1 Ts52 Y1 Zoe

27) endo: Build G3 Endo

28) ts52: Build B2 Kermit

29) endo: Sacrifice G3 Endo
Build G3 Endo
Build R1 Endo
Build R1 Endo

30) ts52: Trade B2 R2 Oscar

31) endo: Sacrifice G3 Endo
Build G3 Endo
Build B2 Cyclic
Build Y1 Cyclic

32) ts52: Move Y1 Kermit Oscar

33) endo: Move R2 Endo Cyclic

34) ts52: Build Y2 Oscar

35) endo: Move B2 Cyclic Zoe

36) ts52: Move G1 Zoe Ts52

37) endo: Move Y2 Cyclic Simple

38) ts52: Move Y2 Oscar Kermit

39) endo: Sacrifice G3 Endo
Build G3 Endo
Build Y2 Simple
Build Y3 Cyclic

40) ts52: Build R1 Kermit

41) endo: Sacrifice Y3 Cyclic
Move G3 Endo Oscar
Move G3 Oscar Kermit
Move G3 Kermit Ts52

42) ts52: Trade G3 R3 Ts52

43) endo: Sacrifice R2 Cyclic
Attack G1 Ts52
Attack R3 Ts52

	ts52: Thanks for the game.
	endo: Thanks!


28500)
Variants: "Hard time"
Started: 2015.11.3, Ended: 2015.11.7
Participants: Simon (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) Simon: Homeworld B3 R1 G3
	endo: Hey, we haven't played yet! Have fun!
	Simon: Hi, enjoy! :-)

3) endo: Build G1 Endo

4) Simon: Build G1 Simon

5) endo: Trade G1 B1 Endo

6) Simon: Trade G1 B1 Simon

7) endo: Build B2 Endo

8) Simon: Build B2 Simon

9) endo: Discover B1 Endo G2 Compact

10) Simon: Trade B2 Y2 Simon

11) endo: Build B2 Compact
	Simon: oh yeah, small universe.

12) Simon: Build B2 Simon
	endo: It took me a while to realize that as well...

13) endo: Trade B2 Y2 Endo

14) Simon: Sacrifice B1 Simon
Trade B2 Y2 Simon

15) endo: Trade B2 R2 Compact

16) Simon: Discover Y2 Simon G2 G2

17) endo: Build R1 Compact

18) Simon: Build Y1 G2

19) endo: Move Y2 Endo G2

20) Simon: Build Y1 Simon

21) endo: Build B1 Compact

22) Simon: Discover Y1 Simon B2 B2

23) endo: Sacrifice R2 Compact
Attack Y1 G2
Attack Y2 G2

24) Simon: Move Y2 Simon G2
Catastrophe G2 Y

25) endo: Build R1 Compact

26) Simon: Build G1 Simon

27) endo: Build B2 Compact

28) Simon: Trade G1 Y1 Simon

29) endo: Trade B2 Y2 Compact

30) Simon: Build G1 Simon

31) endo: Build B2 Compact

32) Simon: Build G1 Simon

33) endo: Build R2 Compact

34) Simon: Move G1 Simon B2

35) endo: Trade R2 Y2 Compact

36) Simon: Sacrifice G3 Simon
Build Y1 B2
Build Y2 B2
Build Y3 Simon

37) endo: Move B1 Compact Simon

38) Simon: Build G1 B2

39) endo: Sacrifice Y2 Compact
Move B1 Compact Simon
Move B2 Compact Simon
Catastrophe Simon B

40) Simon: Build G2 Simon

41) endo: Move R1 Compact Endo

42) Simon: Build G2 Simon

43) endo: Build R2 Compact

44) Simon: Move G1 B2 Endo

45) endo: Build R2 Compact

46) Simon: Sacrifice Y3 Simon
Move G1 Endo Compact
Move G1 Simon Compact
Move G2 Simon Compact
Catastrophe Compact G

47) endo: Build G1 Endo

48) Simon: Build Y2 Simon

49) endo: Build R1 Endo

50) Simon: Discover Y2 Simon Y2 Y2

51) endo: Build R2 Endo

52) Simon: Build Y3 Simon

53) endo: Move R2 Endo B2

54) Simon: Sacrifice Y2 Y2
Move Y1 B2 Endo
Move Y1 B2 Endo

55) endo: Attack Y2 B2

	Simon: gg. :) It might have remained playable had I sacrificed the other y2, but it would have been hard still.
	endo: Good game! I think you were winning (by gaining total control over yellow) until the last few moves. You should have traded into red to prevent the invasion. Interestingly, I had a draw after your move 22 (which I think I should have taken, objectively speaking). I sacrifice my Y2 and bring my R1 and R2 to your homeworld, threatening to sacrifice the G3 for a catastrophe. You sacrifice your Y3 and blow up my G3 with your G1's. Then we attack one of your G2's back and forth. The system could probably not deal very well with such a situation!
	Simon: Yeah, that's a draw. I don't know what the official ruling is about repetition, there is no draw offer on this implementation at least. I believe it's still a hole in the rules.

I should have traded the y2 for an r2 instead of sending in the g1 on move 22, right. Trading for red seemed necessary, but slow; but it was very urgent by then.
	Simon: And I'd always be happy to play again :)


28520)
Variants: "Hard time"
Started: 2015.11.5, Ended: 2015.11.28
Participants: fogus (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y2 G3

2) fogus: Homeworld Y3 B1 G3
	fogus: homeworld g3 y3 b1

3) endo: Build G1 Endo

4) fogus: Build G1 Fogus

5) endo: Trade G1 B1 Endo

6) fogus: Trade G1 Y1 Fogus

7) endo: Build B2 Endo

8) fogus: Build G1 Fogus

9) endo: Discover B1 Endo G3 Separable

10) fogus: Build G1 Fogus

11) endo: Build B2 Endo

12) fogus: Trade G1 R1 Fogus

13) endo: Discover B2 Endo Y3 Regular

14) fogus: Discover R1 Fogus Y2 Flib

15) endo: Sacrifice G3 Endo
Build B2 Separable
Build B3 Endo
Build B3 Regular

16) fogus: Build G1 Fogus
	fogus: I've never faced this strategy before.  It's blowing my mind! 

17) endo: Build B3 Separable

18) fogus: Build Y1 Fogus

19) endo: Trade B3 G3 Regular

20) fogus: Move G1 Fogus Flib

21) endo: Build B3 Regular

22) fogus: Build R1 Flib

23) endo: Trade B3 R3 Separable

24) fogus: Trade Y1 R1 Fogus

25) endo: Move B3 Regular Flib

26) fogus: Sacrifice G1 Flib
Build R2 Fogus

27) endo: Sacrifice R3 Separable
Attack R1 Flib
Attack R1 Flib
Pass

28) fogus: Discover R2 Fogus Y2 Frogger

29) endo: Build B3 Separable

30) fogus: Build R2 Fogus

31) endo: Trade B3 R3 Separable

32) fogus: Build Y1 Fogus

33) endo: Build B3 Separable

34) fogus: Discover R1 Fogus G2 Flipper

35) endo: Trade B3 R3 Endo

36) fogus: Trade R2 G2 Fogus

37) endo: Trade B3 Y3 Separable



28492)
Variants: "Hard time"
Started: 2015.11.5, Ended: 2015.11.15
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: H B2 Y1 G3
	wil: I'll try harder!

2) Simon: Homeworld R3 B1 G3

3) wil: B G1 Wil
	Simon: Have fun!

4) Simon: Build G1 Simon

5) wil: T G1 B1 Wil

6) Simon: Trade G1 Y1 Simon

7) wil: B B1 Wil

8) Simon: Build Y1 Simon

9) wil: D B1 Wil G3 G3

10) Simon: Build Y2 Simon

11) wil: B B2 Wil

12) Simon: Discover Y2 Simon G2 G2

13) wil: T B2 Y2 Wil

14) Simon: Build Y2 Simon

15) wil: D B1 Wil Y3 Y3

16) Simon: Build Y3 G2

17) wil: M Y2 Wil G3

18) Simon: Trade Y2 B2 Simon

19) wil: B G1 Wil

20) Simon: Move B2 Simon G2

21) wil: D G1 Wil Y3 Why3

22) Simon: Trade Y3 R3 G2

23) wil: T B1 G1 Y3

24) Simon: Build R1 G2

25) wil: B Y2 G3

26) Simon: Build Y3 G2

27) wil: T Y2 R2 G3
	wil: You missed the win...s y2 send r3 in
	wil: Not that you still ain't in the catbird seat

28) Simon: Build Y2 Simon

29) wil: S G1 Why3
B Y3 G3
	Simon: Hnn yeah, I didn't even look for anything, was focused on development only.

30) Simon: Discover Y2 Simon G2 G2b

31) wil: B R1 G3

32) Simon: Build B1 G2

33) wil: D Y2 G3 G2 Gee2

34) Simon: Move B2 G2 Y3

35) wil: M G1 Y3 Wil

36) Simon: Build G1 Simon

37) wil: M R1 G3 Wil

38) Simon: Move G1 Simon G2b

39) wil: D R2 G3 G1 G1

40) Simon: Move Y3 G2 G1

41) wil: B R1 Wil

42) Simon: Sacrifice R1 G2
Attack R2 G1

43) wil: M R1 Wil G3

44) Simon: Move R2 G1 Y3

45) wil: S G3 Wil
B G3 Wil
B R1 G3
B R2 Wil

46) Simon: Discover Y3 G1 R3 R3

47) wil: D R1 G3 G1 G1

48) Simon: Move G1 G2b Y3

49) wil: S G3 Wil
B G3 Wil
B R2 G3
B B2 G3
	Simon: no, I will not go and mop it up again. You can have it sit at the g1!

50) Simon: Build B3 Y3

51) wil: M B1 G3 Gee2

52) Simon: Move Y3 R3 Gee2

53) wil: S G3 Wil
B G3 Wil
B B3 G3
B R3 G1

54) Simon: Build B3 G2

55) wil: S Y2 Gee2
Move B1 Gee2 G3
D B1 G3 Y2 Y2

56) Simon: Move Y2 G2b Y3

57) wil: M Y3 G3 G1

58) Simon: Build G2 Y3

59) wil: M R3 G1 Y2

60) Simon: Sacrifice Y2 Y3
Move G1 Y3 Wil
Move G2 Y3 Wil
Catastrophe Wil G

	wil: Yeah...that's the end
	Simon: gg.


28559)
Variants: "Hard time"
Started: 2015.11.8, Ended: 2015.11.13
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B3 Y1 G3

2) wil: H Y2 B1 G3
	wil: Been gettin my butt kicked all over the board

3) dlwillson: B G1 Dlwillson
	dlwillson: Played endo? He's pretty good.

4) wil: B G1 Wil

5) dlwillson: T G1 B1 Dlwillson

6) wil: T G1 Y1 Wil

7) dlwillson: B B1 Dlwillson

8) wil: B Y1 Wil

9) dlwillson: D B1 Dlwillson G2 Forest

10) wil: D Y1 Wil B3 B3

11) dlwillson: B B2 Forest

12) wil: S G3 Wil
B Y2 B3
B Y2 B3
B Y3 Wil

13) dlwillson: B G1 Dlwillson

14) wil: T Y3 G3 Wil

15) dlwillson: T G3 Y3 Dlwillson

16) wil: B Y3 Wil

17) dlwillson: Build B2 Dlwillson

18) wil: T Y3 B3 Wil

19) dlwillson: Move Y3 Dlwillson Forest

20) wil: B Y3 Wil

21) dlwillson: B G1 Dlwillson

22) wil: T B3 R3 Wil

23) dlwillson: S B2 Forest
T G1 R1 Dlwillson
T B2 G2 Dlwillson

24) wil: T Y2 B2 B3

25) dlwillson: B Y2 Forest

26) wil: D Y2 B3 G2 G2

27) dlwillson: D Y2 Forest G3 Field

28) wil: D Y3 Wil Y3 Y3

29) dlwillson: M Y3 Forest Dlwillson

30) wil: B G1 Wil

31) dlwillson: T Y3 R3 Dlwillson
	wil: Ya finally got the big one back home
..you were surprisingly well protected...

32) wil: B Y3 G2

33) dlwillson: M R1 Dlwillson Forest

34) wil: M G1 Wil Y3

35) dlwillson: S G2 Dlwillson
B B2 Forest
B R1 Forest

36) wil: M Y3 Y3 Forest

37) dlwillson: Build R1 Forest

38) wil: S G1 Y3
B Y3 Forest

39) dlwillson: Discover Y2 Field G2 Fen

40) wil: B R2 Wil

41) dlwillson: Sacrifice B2 Forest
Trade B1 G1 Forest
Trade R1 G1 Forest

42) wil: S Y3 G2
M Y3 Forest B3
M Y3 Forest B3
M Y3 B3 Fen
	wil: Nice try

43) dlwillson: B G3 Dlwillson

44) wil: B Y3 G2

45) dlwillson: M G1 Dlwillson Fen

46) wil: B G3 Wil

47) dlwillson: M G3 Dlwillson Fen

48) wil: S R3 Wil
A G3 Fen
A G1 Fen
A Y2 Fen

	wil: Two moves to mate I believe
	dlwillson: Good game! You kept picking up bigs. Well done.
	wil: You were off you game..


28530)
Variants: "Hard time"
Started: 2015.11.8, Ended: 2015.11.10
Participants: kanzenryu (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) kanzenryu: Homeworld R1 G2 B3

3) endo: Build G1 Endo
	kanzenryu: Hi, I'm just a newbie but I'm really loving this game

4) kanzenryu: Build B1 Kanzenryu
	endo: Hi! I think I've played some 25 games so far. I like the game, but the deeper I learn to calculate, the more confusing it seems to get... Enjoy the match!

5) endo: Discover G1 Endo Y2 Gch
	kanzenryu: I've played about five and lost in five interesting ways.

6) kanzenryu: Trade B3 Y3 Kanzenryu

7) endo: Build G1 Endo

8) kanzenryu: Build Y1 Kanzenryu

9) endo: Sacrifice G3 Endo
Build G1 Gch
Build G2 Endo
Build G2 Gch

10) kanzenryu: Trade Y1 R1 Kanzenryu

11) endo: Build G3 Endo

12) kanzenryu: Build Y1 Kanzenryu

13) endo: Discover G2 Gch Y3 Ac

14) kanzenryu: Trade Y3 G3 Kanzenryu

15) endo: Trade G2 Y2 Endo

16) kanzenryu: Move R1 Kanzenryu Ac

17) endo: Sacrifice G3 Endo
Build G2 Endo
Build G3 Endo
Build G3 Ac
	kanzenryu: Hmmm... And to think I couldn't get in trouble early if I built one of each ship.

18) kanzenryu: Trade G3 R3 Kanzenryu

19) endo: Trade G3 R3 Endo
	endo: Although the tutorials tell you to get at least one of each, that's a gross oversimplification. The main reason it's bad to give your opponent control of some color is that then they'll be able to build medium/large ships in that color while you won't. For building those ships, however, they need room on a star with a ship of that color. Each star can usually house two ships of the same color (three in the early game or when there are no catastrophe threats, such as when you already control a color). The stars in the system reduce this value by one or two, depending on the situation.

In order to gain build capacity, you need to send your ships to new stars with a free "slot" as you build more. In here, you can't build green, because your green star takes away the slot.

You usually don't need to rush into all the colors, you just need to make sure you don't get frozen out of anything. In this case, I was only building green ships, so I wasn't threatening to take all the small ships of some other color.

What you do need to take care about is that your opponent doesn't get bigger *sizes* of ships than you. Bigger ships get produced once the smaller ones run out (this is why you need a lot of build capacity in a color you are trying to control, to "push" the color to the bigger sizes). When you get to the medium ships, it's much easier to obtain any color when necessary, because the medium ships are exhausted only after the small ones. And, size is power, obviously.

To get to the larger ships, you can either use the same color as your opponent (build capacity less important, since either player can store the small ships) or start a "race" with a different color (build capacity very important). If your opponent has controlled a color, having one small of each other color won't get you towards medium and large ships.

20) kanzenryu: Move R1 Ac Gch
	kanzenryu: Wow, thanks for all the great advice. In fact everybody on this site seems extra nice.

21) endo: Sacrifice G3 Ac
Build G3 Endo
Build G3 Gch
Build G3 Ac
	endo: You're welcome! If some questions come to your mind, feel free to ask. Good luck to your upcoming games!
	kanzenryu: Thanks, I'm going to need it ;-)

	kanzenryu: I won't waste any more of your time on this disaster ;-)
	endo: Thanks for the game!


28517)
Variants: "Hard time"
Started: 2015.11.8, Ended: 2015.11.19
Participants: Simon (S), kanzenryu (N)
Winner: Simon

1) kanzenryu: Homeworld G1 R3 B3
	kanzenryu: Thanks for the previous game! Up for another?

2) Simon: Homeworld B2 R1 G3
	Simon: Sure sure, always happy to play!

3) kanzenryu: Build B1 Kanzenryu

4) Simon: Build G1 Simon

5) kanzenryu: Trade B3 Y3 Kanzenryu

6) Simon: Trade G1 Y1 Simon

7) kanzenryu: Build Y1 Kanzenryu

8) Simon: Build G1 Simon

9) kanzenryu: Trade Y3 G3 Kanzenryu

10) Simon: Trade G1 B1 Simon

11) kanzenryu: Build G1 Kanzenryu

12) Simon: Discover B1 Simon G3 G3

13) kanzenryu: Discover G1 Kanzenryu Y2 First

14) Simon: Build G1 Simon

15) kanzenryu: Build G2 First

16) Simon: Build G2 Simon

17) kanzenryu: Build B1 Kanzenryu

18) Simon: Discover G2 Simon B3 B3

19) kanzenryu: Build G2 Kanzenryu

20) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 Simon
Build Y2 Simon

21) kanzenryu: Discover G2 Kanzenryu Y2 Out

22) Simon: Trade Y1 R1 Simon

23) kanzenryu: Trade B1 R1 Kanzenryu

24) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B1 G3
Build B2 G3

25) kanzenryu: Move R1 Kanzenryu First

26) Simon: Trade B2 R2 G3

27) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Out
Build Y1 Kanzenryu
Build Y3 Kanzenryu

28) Simon: Move Y1 Simon G3

29) kanzenryu: Move Y1 Kanzenryu Out

30) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y3 Simon
Build Y3 G3

31) kanzenryu: Sacrifice G3 Out
Build G3 Out
Build B2 Kanzenryu
Build R2 First

32) Simon: Discover B1 G3 R2 R2

33) kanzenryu: Discover Y1 Out B3 Nearly

34) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B2 G3
Build B3 R2

35) kanzenryu: Move R2 First Nearly

36) Simon: Build R3 G3

37) kanzenryu: Sacrifice G3 Out
Build G3 Out
Build R3 Nearly
Pass

38) Simon: Move R3 G3 First

39) kanzenryu: Move R3 Nearly Simon

40) Simon: Sacrifice R1 Simon
Attack R3 Simon

41) kanzenryu: Sacrifice Y3 Kanzenryu
Move R1 First Nearly
Move R1 Nearly Simon
Move R2 Nearly Simon
Catastrophe Simon R

42) Simon: Sacrifice Y3 Simon
Move R3 First Kanzenryu
Move B3 R2 Kanzenryu
Move B1 R2 Kanzenryu
Catastrophe Kanzenryu B

	kanzenryu: Nice, thanks
	Simon: gg. Always happy to play again.


28498)
Variants: "Hard time"
Started: 2015.11.9, Ended: 2015.11.14
Participants: endo (S), SilentTitan (N)
Winner: endo

1) SilentTitan: Homeworld R1 B2 G3

2) endo: Homeworld B1 Y3 G3



28561)
Variants: "Hard time"
Started: 2015.11.9, Ended: 2015.11.12
Participants: Simon (S), endo (N)
Winner: endo

1) endo: Homeworld R1 B2 G3

2) Simon: Homeworld B1 R3 G3
	endo: Let's do another one then! I'll try a Planetary Defense System for the first time...
	Simon: Have fun!

3) endo: Build G1 Endo

4) Simon: Build G1 Simon

5) endo: Trade G1 B1 Endo

6) Simon: Trade G1 R1 Simon

7) endo: Build B1 Endo

8) Simon: Build G1 Simon

9) endo: Trade B1 Y1 Endo

10) Simon: Trade G1 Y1 Simon

11) endo: Build B1 Endo

12) Simon: Build R1 Simon

13) endo: Discover B1 Endo R3 Sat

14) Simon: Discover R1 Simon B2 B2

15) endo: Sacrifice G3 Endo
Build B2 Sat
Build B3 Endo
Build B3 Sat

16) Simon: Build G1 Simon

17) endo: Trade B3 G3 Endo

18) Simon: Build R2 Simon

19) endo: Build B3 Endo

20) Simon: Discover R1 Simon Y2 Y2

21) endo: Trade B3 R3 Endo

22) Simon: Sacrifice G3 Simon
Build R2 B2
Build R2 Y2
Build Y1 Simon

23) endo: Build Y2 Endo

24) Simon: Build Y2 Simon

25) endo: Build Y3 Endo

26) Simon: Discover Y1 Simon G2 G2

27) endo: Sacrifice Y2 Endo
Move B3 Sat B2
Move B3 B2 Simon

	Simon: one of the many ways to do it. gg.
	endo: Good game, thanks for playing. I've got a standing challenge up too, so you can use that when you feel like playing another one.


28560)
Variants: "Hard time"
Started: 2015.11.10, Ended: 2015.11.17
Participants: kanzenryu (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y2 G3
	kanzenryu: I guess I know one more thing to avoid now

2) kanzenryu: Homeworld G1 B3 Y3

3) endo: Build G1 Endo

4) kanzenryu: Build Y1 Kanzenryu

5) endo: Build G1 Endo

6) kanzenryu: Trade Y3 G3 Kanzenryu

7) endo: Discover G1 Endo B3 Grp

8) kanzenryu: Build G2 Kanzenryu

9) endo: Sacrifice G3 Endo
Build G2 Grp
Build G2 Grp
Build G3 Endo

10) kanzenryu: Trade G2 R2 Kanzenryu

11) endo: Trade G2 Y2 Grp

12) kanzenryu: Discover R2 Kanzenryu Y2 First

13) endo: Trade G2 R2 Grp

14) kanzenryu: Build Y1 Kanzenryu
	kanzenryu: Hmmm in trouble already

15) endo: Build G2 Grp

16) kanzenryu: Trade Y1 B1 Kanzenryu

17) endo: Discover G2 Grp B2 Top

18) kanzenryu: Build Y1 Kanzenryu

19) endo: Sacrifice G3 Endo
Build G2 Grp
Build G2 Top
Build G3 Endo

20) kanzenryu: Trade G3 R3 Kanzenryu

21) endo: Sacrifice G3 Endo
Build G3 Endo
Build G3 Grp
Build G3 Top

22) kanzenryu: Build R1 Kanzenryu
	kanzenryu: This game simultaneously fills me with joy and makes me want to curl up into a ball rocking back and forward.

23) endo: Trade G3 R3 Endo

24) kanzenryu: Move R1 Kanzenryu Top

25) endo: Sacrifice G3 Grp
Build G3 Endo
Build G3 Grp
Build R1 Grp

26) kanzenryu: Build R1 Kanzenryu

27) endo: Sacrifice R1 Grp
Attack R1 Top

28) kanzenryu: Move B1 Kanzenryu First

29) endo: Sacrifice G3 Grp
Build R1 Top
Build R2 Endo
Build R3 Grp

30) kanzenryu: Move Y1 Kanzenryu First

31) endo: Move R3 Grp First

32) kanzenryu: Sacrifice Y1 First
Discover R2 First G3 Peep

33) endo: Sacrifice Y2 Grp
Move R1 Top Kanzenryu
Move R1 Top Kanzenryu
Catastrophe Kanzenryu R

	kanzenryu: Thanks, despite the crushing result I'm loving this game.


28576)
Started: 2015.11.10, Ended: 2015.11.28
Participants: ts52 (S), kanzenryu (N)
Winner: ts52

1) kanzenryu: Homeworld G1 B3 Y3

2) ts52: Homeworld Y1 B2 G3
	kanzenryu: Keen for more!
	ts52: Absolutely!

3) kanzenryu: Build Y1 Kanzenryu

4) ts52: Build G1 Ts52

5) kanzenryu: Discover Y1 Kanzenryu G2 First

6) ts52: Build G1 Ts52

7) kanzenryu: Trade Y3 G3 Kanzenryu

8) ts52: Discover G1 Ts52 B3 Grover

9) kanzenryu: Build G2 Kanzenryu

10) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Grover
Build G3 Ts52

11) kanzenryu: Build Y1 First

12) ts52: Trade G2 Y2 Grover

13) kanzenryu: Trade G2 R2 Kanzenryu

14) ts52: Sacrifice G3 Grover
Build G2 Ts52
Build G2 Grover
Build G3 Grover

15) kanzenryu: Build R1 Kanzenryu

16) ts52: Trade G3 R3 Grover

17) kanzenryu: Discover Y1 First B3 Nearly

18) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build Y2 Grover

19) kanzenryu: Build Y2 First

20) ts52: Discover Y2 Grover B2 Gonzo

21) kanzenryu: Move Y1 First Kanzenryu

22) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Grover
Build Y3 Gonzo
	kanzenryu: Retreat!

23) kanzenryu: Build Y3 Kanzenryu

24) ts52: Trade G2 R2 Ts52

25) kanzenryu: Move G3 Kanzenryu First

26) ts52: Sacrifice Y2 Grover
Move G1 Grover First
Move G2 Grover First
Catastrophe First Green

27) kanzenryu: Discover Y1 Kanzenryu G2 New

28) ts52: Build Y2 Grover

29) kanzenryu: Build Y2 New

30) ts52: Trade Y2 G2 Gonzo

31) kanzenryu: Build Y2 Kanzenryu

32) ts52: Sacrifice G3 Ts52
Build G1 Gonzo
Build G2 Grover
Build G3 Ts52

33) kanzenryu: Trade Y3 G3 Kanzenryu

34) ts52: Sacrifice Y2 Grover
Move G1 Gonzo Kanzenryu
Move G2 Gonzo Kanzenryu
Catastrophe Kanzenryu Green

	kanzenryu: Good game, thanks
	ts52: Thanks for the game.


28501)
Variants: "Unrated"
Started: 2015.11.11, Ended: 2015.11.15
Participants: wil (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld B3 Y1 G3

2) wil: H Y2 B1 G3
	Ausmuh: Hello again.  I'm back after a hiatus. Sorry about the sudden disappearance last year ish...
	wil: Why apologize for life?  Welcome back!

3) Ausmuh: Build G1 Ausmuh

4) wil: B G1 Wil

5) Ausmuh: Trade G1 Y1 Ausmuh

6) wil: T G1 Y1 Wil

7) Ausmuh: Build Y2 Ausmuh

8) wil: B Y2 Wil

9) Ausmuh: Discover Y1 Ausmuh G2 Blellow

10) wil: D Y1 Wil G3 G3

11) Ausmuh: Build Y3 Blellow

12) wil: B Y3 G3

13) Ausmuh: Discover Y1 Blellow B3 Srv

14) wil: D Y2 Wil Y3 Y3

15) Ausmuh: Build G1 Ausmuh

16) wil: B G1 Wil

17) Ausmuh: Trade G1 B1 Ausmuh

18) wil: T G1 B1 Wil

19) Ausmuh: Move B1 Ausmuh Blellow
	wil: I didn't want to join the trade treaty... But it looked like you gave me no choice

20) wil: M B1 Wil G3

21) Ausmuh: Trade Y3 R3 Blellow

22) wil: D Y1 G3 G2 G2

23) Ausmuh: Sacrifice Y2 Ausmuh
Move R3 Blellow Srv
Move R3 Srv Wil

	wil: Well crap...no excuses...why didn't I get a gun?
	wil: Well crap...no excuses...why didn't I get a gun?


28579)
Variants: "Unrated"
Started: 2015.11.11, Ended: 2015.11.28
Participants: kanzenryu (S), wil (N)
Winner: wil

1) wil: H R2 B1 G3

2) kanzenryu: Homeworld B2 Y3 G3

3) wil: B G1 Wil
	kanzenryu: And now for something completely different

4) kanzenryu: Build G1 Kanzenryu

5) wil: T G1 B1 Wil

6) kanzenryu: Trade G1 Y1 Kanzenryu

7) wil: B B1 Wil

8) kanzenryu: Build G1 Kanzenryu
	kanzenryu: It amazes me how quickly I can get into trouble but still not see it coming one move earlier.

9) wil: T G3 Y3 Wil
	wil: It takes a while to see them coming... Rule of thumb... Rarely on insure what they get you get..  Often when it comes to growing new economies, copy cat is recommended...unless you have another plan to gain access...

10) kanzenryu: Discover G1 Kanzenryu Y1 First

11) wil: D B1 Wil G3 G3

12) kanzenryu: Build G1 Kanzenryu

13) wil: T Y3 G3 Wil

14) kanzenryu: Discover G1 Kanzenryu Y1 Dwarf

15) wil: S G3 Wil
B B2 G3
B B2 G3
B B3 Wil

16) kanzenryu: Build Y2 Kanzenryu

17) wil: T B3 G3 Wil

18) kanzenryu: Trade Y2 R2 Kanzenryu

19) wil: B B3 Wil

20) kanzenryu: Build R1 Kanzenryu

21) wil: T B3 R3 Wil

22) kanzenryu: Build Y2 Kanzenryu

23) wil: B B3 Wil

24) kanzenryu: Move R2 Kanzenryu First

25) wil: T B3 Y3 Wil

26) kanzenryu: Move Y2 Kanzenryu Dwarf

27) wil: B Y2 Wil

28) kanzenryu: Discover R2 First Y3 Peep

29) wil: M R3 Wil Peep

30) kanzenryu: Sacrifice G1 First
Build R1 Peep

31) wil: M R3 Peep Dwarf

32) kanzenryu: Move G1 Dwarf Peep

33) wil: A Y2 Dwarf

34) kanzenryu: Build R1 Peep

35) wil: T B2 Y2 G3

36) kanzenryu: Move R1 Peep Wil

37) wil: A R1 Wil

38) kanzenryu: Move R2 Peep Wil

39) wil: T R1 Y1 Wil

40) kanzenryu: Sacrifice G1 Peep
Build R1 Wil

41) wil: M Y3 Wil Peep

42) kanzenryu: Move R1 Peep Wil
Catastrophe Wil R

43) wil: S Y2 G3
M Y2 Dwarf Kanzenryu
M Y1 Wil Kanzenryu
C Kanzenryu Y

44) kanzenryu: Build G1 Kanzenryu
	wil: I'm afraid I let you walk right into this one...  

45) wil: S Y3 Peep
M B1 Wil Kanzenryu
M B2 G3 Kanzenryu
M B1 G3 Kanzenryu
C Kanzenryu B
	kanzenryu: I could see that I've been significantly behind for quite some time (like all my games ;-) so some big attack has to happen at some stage.
	wil: This is a variation of the doomsday machine...using yellows and strategically placed ships to blow up your opponents homeworld...your blowing up half my homeworld helped to give me access to yours.
	wil: Not much left in my galaxy after that...but enough to rebuild civilization...



28535)
Variants: "Hard time"
Started: 2015.11.11, Ended: 2015.12.11
Participants: wil (S), dragon76n (N)
Winner: wil

1) dragon76n: Homeworld B2 G1 Y3
	dragon76n: Hi Wil, I'm back for another game. 

2) wil: H Y3 B1 G3
	wil: I'm glad!  Let us hope I don't blink

3) dragon76n: B Y1 Dragon76n

4) wil: B G1 Wil

5) dragon76n: T Y1 G1 Dragon76n

6) wil: T G1 B1 Wil

7) dragon76n: B Y1 Dragon76n

8) wil: B B1 Wil

9) dragon76n: B G1 Dragon76n

10) wil: D B1 Wil Y2 Y2

11) dragon76n: D Y1 Dragon76n G3 Grethr

12) wil: B G2 Wil

13) dragon76n: Discover G1 Dragon76n Y3 Yelthr

14) wil: B B2 Wil

15) dragon76n: B G2 Dragon76n

16) wil: S G2 Wil
B B2 Y2
B B3 Y2

17) dragon76n: Sacrifice G2 Dragon76n
Build G2 Yelthr
Build G2 Yelthr

18) wil: T B3 G3 Y2

19) dragon76n: Sacrifice G2 Yelthr
Build Y1 Grethr
Build G2 Dragon76n

20) wil: B B3 Y2

21) dragon76n: Trade G2 R2 Dragon76n

22) wil: T B3 R3 Y2

23) dragon76n: Build Y1 Grethr

24) wil: T B2 Y2 Wil

25) dragon76n: S Y3 Dragon76n
M Y1 Grethr Y2
M Y1 Grethr Y2
M Y1 Grethr Y2
C Y2 Yellow

26) wil: B G2 Wil

27) dragon76n: D G1 Yelthr B2 Blutwo

28) wil: T G2 R2 Wil

29) dragon76n: B G2 Blutwo

30) wil: B G2 Wil

	wil: I hate to win that way


28571)
Variants: "Hard time"
Started: 2015.11.12, Ended: 2015.11.20
Participants: endo (S), Simon (N)
Winner: endo

1) Simon: Homeworld Y1 B3 G3

2) endo: Homeworld B1 Y2 G3
	Simon: Yes yes, more homeworlds.

3) Simon: Build G1 Simon

4) endo: Build G1 Endo

5) Simon: Trade G1 B1 Simon

6) endo: Trade G1 B1 Endo

7) Simon: Build B2 Simon

8) endo: Build B2 Endo

9) Simon: Discover B2 Simon G2 G2

10) endo: Trade B1 Y1 Endo

11) Simon: Build B1 Simon

12) endo: Build Y1 Endo

13) Simon: Discover B1 Simon R2 R2

14) endo: Discover Y1 Endo B3 Clique

15) Simon: Trade B2 Y2 G2

16) endo: Sacrifice G3 Endo
Build Y2 Clique
Build Y3 Endo
Build Y3 Clique

17) Simon: Build Y3 G2

18) endo: Trade Y3 R3 Clique

19) Simon: Discover Y3 G2 R3 R3

20) endo: Sacrifice Y3 Endo
Move R3 Clique R2
Move R3 R2 Simon
Move Y2 Clique R2

	Simon: Flat-out oversight. gg!
	endo: Good game! The position after move 9 was pretty crazy. "s y3 g2, m y2 g2 clique, m y2 clique endo, c endo y, m b1 r2 endo" would have been enough to win, I think, but if I understand it correctly, SDG doesn't allow taking actions after declaring catastrophes. I had to check the sources to make sure but was busy with real-life matters, that's why it took me so long. :)
	Simon: Right, catastrophe and then normal moves is forbidden here, which is the older version of the rules. Is the site open source?
	endo: There's a copy of the source from 2014 available in the author's Google Drive at https://drive.google.com/folderview?id=0Bw8J0V9P_9hMeEJUSXE1LXRBN00. I'm not sure if it's completely up to date.
	Simon: Cool, thanks.


28599)
Variants: "Unrated"
Started: 2015.11.13, Ended: 2016.1.14
Participants: kanzenryu (S), fogus (N)
Winner: kanzenryu

1) fogus: Homeworld B1 Y2 G3

2) kanzenryu: Homeworld Y1 G3 B3

3) fogus: Build G1 Fogus
	kanzenryu: I'm still loving this game...

4) kanzenryu: Build B1 Kanzenryu

5) fogus: Build G1 Fogus

6) kanzenryu: Build B1 Kanzenryu
	kanzenryu: After being crushed a number of times and getting into trouble pretty quickly I'm now getting scared just doing the first few moves

7) fogus: Trade G3 B3 Fogus

8) kanzenryu: Trade B1 G1 Kanzenryu
	fogus: I like the "Blue Rush" strategy.  It's fun to play against. :)

9) fogus: Build G2 Fogus

10) kanzenryu: Build G2 Kanzenryu

11) fogus: Discover G1 Fogus Y3 Fripp

12) kanzenryu: Discover G1 Kanzenryu Y2 Out

13) fogus: Trade G2 Y2 Fogus

14) kanzenryu: Build G2 Out

15) fogus: Build G2 Fogus

16) kanzenryu: Discover G1 Out Y3 Nearly

17) fogus: Build G3 Fripp

18) kanzenryu: Build G3 Nearly

19) fogus: Move G1 Fripp Out

20) kanzenryu: Trade B1 R1 Kanzenryu

21) fogus: Build B1 Fogus

22) kanzenryu: Sacrifice G3 Nearly
Build G3 Nearly
Build R1 Kanzenryu
Build B1 Kanzenryu

23) fogus: Move G1 Out Fripp

24) kanzenryu: Sacrifice G3 Nearly
Build G3 Nearly
Build R1 Kanzenryu
Build B2 Kanzenryu
	fogus: How's the MCTS player coming along?
	kanzenryu: I was reading some articles on the MCTS and UCT algorithms. So far I'm confused as to how a position that looks good but allows one very good move for the opponent will be handled. So the short answer is "not started" ;-)

25) fogus: Trade G2 R2 Fogus

26) kanzenryu: Trade B3 Y3 Kanzenryu

27) fogus: Move B1 Fogus Fripp

28) kanzenryu: Sacrifice B1 Kanzenryu
Trade G3 B3 Nearly

29) fogus: Sacrifice G3 Fripp
Build G2 Fogus
Build G3 Fripp
Build R2 Fogus

30) kanzenryu: Build G3 Nearly

31) fogus: Move R2 Fogus Fripp

32) kanzenryu: Move R1 Kanzenryu Out

33) fogus: Discover R2 Fripp Y1 Eno

34) kanzenryu: Sacrifice G3 Nearly
Build G3 Nearly
Build Y1 Kanzenryu
Build B1 Nearly

35) fogus: Sacrifice G3 Fripp
Build R2 Fogus
Build R3 Eno
Build G3 Fripp

36) kanzenryu: Sacrifice G3 Nearly
Build G3 Nearly
Build B2 Nearly
Build R3 Out

37) fogus: Trade B3 R3 Fogus

38) kanzenryu: Move R1 Out Nearly

39) fogus: Move R2 Fogus Fripp
	kanzenryu: BTW I sent you a challenge for alien city

40) kanzenryu: Move Y1 Kanzenryu Out

41) fogus: Move B1 Fripp Fogus

42) kanzenryu: Move B1 Nearly Fogus

43) fogus: Move B1 Fogus Fripp

44) kanzenryu: Move B2 Nearly Fogus

45) fogus: Sacrifice G3 Fripp
Build G3 Fripp
Build B2 Fripp
Build B3 Fripp

46) kanzenryu: Sacrifice G2 Kanzenryu
Build G2 Out
Build B3 Fogus
Catastrophe Fogus B

47) fogus: Discover B3 Fripp B2 Zakir

48) kanzenryu: Move Y1 Out Nearly
	kanzenryu: Congrats on making it to the top of Hacker News with your blog. Awesome stuff. Have you tried out parinfer? I'm using vim-parinfer which is still pretty great.

49) fogus: Move Y2 Fogus Fripp
	fogus: I have not tried parinfer yet.  People keep telling me about it though. :)

50) kanzenryu: Move R3 Out Nearly
	kanzenryu: Parinfer seems to have dramatically improved the speed that I can write working Clojure code. But then I started from a position of being pretty crap.

51) fogus: Move R2 Fogus Nearly

52) kanzenryu: Move G3 Nearly Fogus
	fogus: Whoops. Accidental undo.

53) fogus: Attack G3 Fogus

54) kanzenryu: Move G1 Nearly Fogus
Catastrophe Fogus G

55) fogus: Move G3 Fripp Fogus

56) kanzenryu: Attack R2 Nearly
	fogus: Sorry that it's taking me so long to play, but the new year has brought much busy-ness at work.

57) fogus: Move R2 Eno Nearly
Catastrophe Nearly R
	kanzenryu: No problem at all. At least your work involves Clojure. I once managed to write a GUI testing framework in Clojure, but a couple of years later it got rewritten in Groovy.

58) kanzenryu: Trade B3 R3 Nearly

59) fogus: Sacrifice Y2 Fripp
Move R3 Eno Nearly
Move B3 Zakir Nearly

60) kanzenryu: Discover Y1 Nearly G1 Side

61) fogus: Attack R3 Nearly

62) kanzenryu: Sacrifice G2 Out
Build Y1 Side
Build Y2 Side

	kanzenryu: So far my homeworlds AI code really only finds the legal moves for a position (which is quite complex for sacrifices).

Maybe you could have a quick look at https://github.com/davidplumpton/homeworldsai and when you stop laughing give me some advice.
	fogus: ARGGH!!!  I got too greedy!  I knew that I should have traded for that y2.  Great game!
	kanzenryu: Thanks, that game was pretty epic.
	fogus: This game is great because very often you're balancing on a knife's edge the whole time.  This game was a good example of that.


28601)
Variants: "Hard time"
Started: 2015.11.13, Ended: 2015.12.1
Participants: wil (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) wil: H B2 Y1 G3

3) endo: Build G1 Endo
	wil: Another try... I like the ladder because I get to play

4) wil: B G1 Wil
	endo: Good luck, have fun!

5) endo: Trade G1 B1 Endo

6) wil: T G1 B1 Wil

7) endo: Build B2 Endo

8) wil: B B2 Wil

9) endo: Discover B1 Endo G2 Directed

10) wil: D B1 Wil Y3 Y3

11) endo: Build B3 Directed

12) wil: B B3 Wil

13) endo: Build B3 Endo

14) wil: T B3 Y3 Wil

15) endo: Trade B2 Y2 Endo

16) wil: B Y1 Wil

17) endo: Move Y2 Endo Directed

18) wil: T Y1 R1 Wil

19) endo: Trade B1 R1 Directed

20) wil: B Y1 Wil

21) endo: Build Y1 Directed

22) wil: D Y3 Wil G3 G3

23) endo: Build Y2 Directed

24) wil: D Y3 G3 G2 G2

25) endo: Trade Y1 G1 Directed

26) wil: B G1 Wil

27) endo: Build G1 Endo

28) wil: M G1 Wil Y3

29) endo: Discover G1 Directed B3 Dense

30) wil: M Y3 G2 Dense

31) endo: Build G2 Dense

32) wil: B G2 Y3

33) endo: Sacrifice G3 Endo
Build G3 Endo
Build G3 Dense
Build R1 Directed

34) wil: S R1 Wil
A G3 Dense

35) endo: Sacrifice Y2 Directed
Move B3 Directed Dense
Move B3 Dense Wil

36) wil: S G3 Dense
B G3 Wil
B B1 Wil
B B2 Y3
C Wil B

37) endo: Move Y2 Directed Wil

38) wil: S G3 Wil
B Y1 Dense
B Y2 Dense
B Y2 Dense

39) endo: Sacrifice G3 Endo
Build G3 Endo
Build B1 Endo
Build R1 Directed
Catastrophe Dense Y
	wil: Curses... Slaughtered again.

40) wil: S G2 Y3
B Y1 Wil
B G2 Y3

	endo: You denied me my historic triple catastrophe :(
	wil: Lol... I set it up... I took it down 

We need to build a tourney... 


28566)
Variants: "Hard time"
Started: 2015.11.15, Ended: 2015.11.20
Participants: Simon (S), Ausmuh (N)
Winner: Simon

1) Ausmuh: Homeworld G3 Y2 B3

2) Simon: Homeworld R1 B3 G3
	Ausmuh: Hello. Have a fun game.
	Simon: Hi, have fun!

3) Ausmuh: Build B1 Ausmuh

4) Simon: Build G1 Simon

5) Ausmuh: Trade B1 Y1 Ausmuh

6) Simon: Trade G1 Y1 Simon

7) Ausmuh: Build B1 Ausmuh

8) Simon: Build G1 Simon

9) Ausmuh: Discover Y1 Ausmuh B1 Ls1

10) Simon: Trade G1 B1 Simon

11) Ausmuh: Discover Y1 Ls1 G2 Mw2

12) Simon: Discover B1 Simon G2 G2

13) Ausmuh: Trade B1 R1 Ausmuh

14) Simon: Build B1 G2

15) Ausmuh: Build B1 Ausmuh

16) Simon: Build B2 G2

17) Ausmuh: Build B2 Ausmuh

18) Simon: Trade B2 Y2 G2

19) Ausmuh: Build R1 Ausmuh

20) Simon: Sacrifice Y2 G2
Discover B1 G2 G1 G1
Move B1 G1 Ausmuh
Catastrophe Ausmuh B

21) Ausmuh: Build R2 Ausmuh
	Ausmuh: Wow I was not paying attention. 

22) Simon: Build B1 G2

23) Ausmuh: Discover R1 Ausmuh Y1 Sm1
	Simon: Yeah, such threats can often restrict the choice of colors for a while.

24) Simon: Build Y2 Simon

25) Ausmuh: Move R1 Sm1 Mw2

26) Simon: Move Y2 Simon G2

27) Ausmuh: Build R2 Mw2

28) Simon: Trade Y2 R2 G2

29) Ausmuh: Build R3 Ausmuh

30) Simon: Build R3 G2

31) Ausmuh: Build R3 Mw2

32) Simon: Trade R3 Y3 G2

33) Ausmuh: Discover R2 Ausmuh B1 Ls1

34) Simon: Build R3 G2

35) Ausmuh: Trade R2 B2 Ls1
	Ausmuh: Oops, wrong color :P

36) Simon: Move R3 G2 Ls1

37) Ausmuh: Sacrifice B2 Ls1
Trade R2 Y2 Mw2
Trade R3 B3 Ausmuh

38) Simon: Trade B1 G1 G2

39) Ausmuh: Discover Y1 Mw2 G1 Mw1

40) Simon: Move G1 G2 Ls1

41) Ausmuh: Trade R1 B1 Ausmuh

42) Simon: Build G1 Simon

43) Ausmuh: Move B1 Ausmuh Mw1

44) Simon: Sacrifice G3 Simon
Build G2 Ls1
Build G3 Ls1
Build G3 Simon

45) Ausmuh: Build B2 Mw1

46) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 G2
Build B2 G2

47) Ausmuh: Build B2 Ausmuh

48) Simon: Move B1 G2 Mw1

49) Ausmuh: Move R3 Mw2 Mw1

50) Simon: Sacrifice Y3 G2
Move B1 Mw1 Ausmuh
Move B2 G2 Mw1
Move B2 Mw1 Ausmuh
Catastrophe Ausmuh B

	Simon: I wanted to make room for building the last b3 myself, while gaining time by forcing responses to the various blue threats. >_>;

Thanks for the game still, I had to make some good decisions, and I'd be up for rematches anytime!


28588)
Variants: "Hard time"
Started: 2015.11.15, Ended: 2015.11.19
Participants: Ausmuh (S), endo (N)
Winner: endo

1) endo: Homeworld Y1 B2 G3

2) Ausmuh: Homeworld G3 Y2 B3

3) endo: Build G1 Endo

4) Ausmuh: Build B1 Ausmuh

5) endo: Build G1 Endo

6) Ausmuh: Trade B1 Y1 Ausmuh

7) endo: Discover G1 Endo Y3 Abelian

8) Ausmuh: Discover Y1 Ausmuh G1 Mw1

9) endo: Build G2 Abelian

10) Ausmuh: Discover Y1 Mw1 G3 Mw3

11) endo: Discover G1 Abelian G1 Solvable

12) Ausmuh: Build Y1 Mw3

13) endo: Sacrifice G3 Endo
Build G2 Endo
Build G2 Abelian
Build G3 Endo

14) Ausmuh: Build Y2 Mw3

15) endo: Trade G3 R3 Endo

16) Ausmuh: Sacrifice Y2 Mw3
Move Y1 Mw3 Endo
Discover Y1 Endo G3 Mj3

17) endo: Move G2 Endo Mj3

18) Ausmuh: Build Y2 Mw3

19) endo: Sacrifice G2 Abelian
Build G2 Endo
Build R1 Endo

20) Ausmuh: Discover Y1 Mj3 Y2 Md1
	Ausmuh: That was a sweet move.

21) endo: Move R3 Endo Mw3

22) Ausmuh: Sacrifice Y1 Mw3
Discover Y2 Mw3 Y1 Sm1

23) endo: Sacrifice G2 Mj3
Build G2 Abelian
Build G3 Endo

24) Ausmuh: Build B1 Ausmuh

25) endo: Trade G3 Y3 Endo

26) Ausmuh: Discover Y2 Sm1 G3 Mj3

27) endo: Move G2 Endo Mj3

28) Ausmuh: Build Y1 Mj3

29) endo: Sacrifice R3 Mw3
Attack Y1 Mj3
Attack Y2 Mj3
Pass

30) Ausmuh: Discover Y1 Md1 G3 Mw3

31) endo: Sacrifice Y2 Mj3
Move Y1 Mj3 Endo
Move Y1 Endo Mw3

32) Ausmuh: Trade B3 R3 Ausmuh

33) endo: Sacrifice R1 Endo
Attack Y1 Mw3

34) Ausmuh: Build B1 Ausmuh

35) endo: Sacrifice G2 Mj3
Build G2 Endo
Build G3 Endo

36) Ausmuh: Build B1 Ausmuh

37) endo: Sacrifice G3 Endo
Build G3 Endo
Build Y2 Endo
Build Y2 Mw3

38) Ausmuh: Move B1 Ausmuh Solvable

39) endo: Discover Y3 Endo B3 Nilpotent

40) Ausmuh: Trade B1 R1 Solvable

41) endo: Sacrifice G1 Solvable
Build Y3 Nilpotent

42) Ausmuh: Move B1 Ausmuh Solvable

43) endo: Move G2 Abelian Solvable

44) Ausmuh: Trade B1 G1 Solvable

45) endo: Sacrifice Y3 Nilpotent
Move G2 Abelian Solvable
Move G2 Solvable Ausmuh
Move G2 Solvable Ausmuh

46) Ausmuh: Build R1 Ausmuh

47) endo: Sacrifice G3 Endo
Build G3 Ausmuh
Build Y3 Nilpotent
Build Y3 Nilpotent
Catastrophe Ausmuh G

48) Ausmuh: Build G2 Solvable
	Ausmuh: Thanks for playing.  Nice work taking over yellow and nice doomsday machine. :)

49) endo: Sacrifice Y3 Nilpotent
Move Y1 Mw3 Ausmuh
Move Y1 Mw3 Ausmuh
Move Y2 Mw3 Ausmuh
Catastrophe Ausmuh Y
	endo: Thanks for the game.



28583)
Variants: "Hard time"
Started: 2015.11.15, Ended: 2015.12.9
Participants: wil (S), Ausmuh (N)
Winner: wil

1) Ausmuh: Homeworld G3 Y2 B3

2) wil: H B3 Y1 G3
	Ausmuh: Last one was just the warm up. :)
	wil: And another interesting open!

3) Ausmuh: Build B1 Ausmuh

4) wil: B G1 Wil
	Ausmuh: Fortress intrigues me because it's less popular
	wil: Yes...but it is your opening colors that surprised me...

5) Ausmuh: Trade B1 Y1 Ausmuh

6) wil: T G1 Y1 Wil

7) Ausmuh: Build Y2 Ausmuh

8) wil: B Y2 Wil

9) Ausmuh: Discover Y1 Ausmuh G1 Mw1

10) wil: D Y1 Wil G2 G2

11) Ausmuh: Trade Y2 B2 Ausmuh
	Ausmuh: My, what symmetric openings we can produce. :)

12) wil: T Y2 R2 Wil

13) Ausmuh: Build Y2 Mw1

14) wil: B Y2 G2

15) Ausmuh: Trade B2 R2 Ausmuh

16) wil: D Y1 G2 B3 B3

17) Ausmuh: Move Y1 Mw1 B3

18) wil: B Y3 G2

19) Ausmuh: Sacrifice R2 Ausmuh
Attack Y1S B3
Pass

20) wil: M Y3 G2 Mw1

21) Ausmuh: Trade Y1 R1 B3

22) wil: B R1 Wil

23) Ausmuh: Move Y2 Mw1 B3

24) wil: B Y1 G2

25) Ausmuh: Trade Y1 G1 B3

26) wil: B Y1 G2

27) Ausmuh: Discover Y2 B3 G2 Mw2

28) wil: M Y2 G2 B3

29) Ausmuh: Build B1 Ausmuh

30) wil: S R2 Wil
A R1 B3
A G1 B3

31) Ausmuh: Trade B1 R1 Ausmuh

32) wil: B G1 Wil

33) Ausmuh: Build Y3 Mw2

34) wil: S G3 Wil
B G2 B3
B Y3 B3
B G3 Wil

35) Ausmuh: Discover Y2 Mw2 B1 Ls1

36) wil: S G3 Wil
B G3 Wil
B G3 B3
B R2 B3

37) Ausmuh: Trade Y2 R2 Ls1

38) wil: B Y2 Mw1

39) Ausmuh: Build B1 Ausmuh

40) wil: M R1 B3 Mw1

41) Ausmuh: Build B1 Ausmuh

42) wil: T G2 B2 B3

43) Ausmuh: Move B1 Ausmuh Ls1

44) wil: S G3 Wil
B G2 Wil
B G3 Wil
B B2 B3

45) Ausmuh: Sacrifice Y3 Mw2
Move B1 Ls1 B3
Pass
Pass
Catastrophe B3 Blue

46) wil: B R2 Wil

47) Ausmuh: Trade B1 G1 Ausmuh

48) wil: T R1 B1 Wil

49) Ausmuh: Move G1 Ausmuh Ls1

50) wil: D Y1 G2 B1 B1

51) Ausmuh: Trade R2 Y2 Ls1

52) wil: S G2 Wil
B Y3 B1
B Y3 G2

53) Ausmuh: Build G2 Ls1

54) wil: M Y3 G2 Ls1

55) Ausmuh: Move Y2 Ls1 G2

56) wil: S R2 Wil
A G1 Ls1
A G2 Ls1

	wil: I hate it when that happens


28618)
Variants: "Hard time"
Started: 2015.11.16, Ended: 2015.11.23
Participants: wil (S), Simon (N)
Winner: wil

1) Simon: Homeworld B2 Y1 G3

2) wil: H B3 Y2 G3
	Simon: More homeworlds, more homeworlds!

3) Simon: Build G1 Simon

4) wil: B G1 Wil

5) Simon: Trade G1 Y1 Simon

6) wil: T G1 Y1 Wil

7) Simon: Build Y2 Simon

8) wil: B Y2 Wil

9) Simon: Discover Y2 Simon G3 G3

10) wil: T Y1 R1 Wil

11) Simon: Build Y1 G3

12) wil: D Y2 Wil G1 G1

13) Simon: Build Y3 Simon

14) wil: B Y3 G1

15) Simon: Trade Y3 R3 Simon

16) wil: D Y2 G1 B3 B3

17) Simon: Move R3 Simon B3

18) wil: B Y3 G1

19) Simon: Attack Y2 B3

20) wil: D Y3 G1 Y3 Y3

21) Simon: Build G1 Simon

22) wil: B R1 Wil

23) Simon: Move G1 Simon B3

24) wil: T R1 B1 Wil

25) Simon: Discover Y1 G3 G1 G1a

26) wil: B G2 Wil

27) Simon: Build G2 Simon

28) wil: B R1 Wil

29) Simon: Sacrifice G3 Simon
Build G2 B3
Build G3 Simon
Build R1 B3

30) wil: M R1 Wil G1

31) Simon: Move R1 B3 G1a

32) wil: S G3 Wil
B G3 Wil
B B1 Wil
B R2 G1

33) Simon: Trade G1 B1 B3

34) wil: M B1 Wil G1

35) Simon: Move B1 B3 G1a

36) wil: M G2 Wil G1a

37) Simon: Discover Y2 G3 G1 G1b

38) wil: B G3 Wil

39) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B2 G1a
Build B2 G1a

40) wil: S R2 G1
A B2 G1a
A R1 G1a

41) Simon: Sacrifice Y2 G1b
Move B1 G1a Wil
Move B2 G1a Wil
Catastrophe Wil B

42) wil: B Y2 G1

43) Simon: Sacrifice Y2 B3
Move Y1 Simon Y3
Move Y1 G1a Y3
Catastrophe Y3 Y

44) wil: D G3 Wil Y3 Y3

45) Simon: Sacrifice G3 Simon
Build G1 B3
Build R2 B3
Build G3 Simon

46) wil: S Y3 G1
M G2 G1a Y3
M G2 Y3 Simon
M G3 Y3 Simon
C Simon G

	wil: The bluebird
	Simon: Smart, because the distance is 2 only now. I stopped reading the move after "ventured forth from wil".
	wil: Yes taking out a homeworld is a one two punch....if you can't do the follow-up eight away you often forget it is a short universe..


28581)
Variants: "Unrated"
Started: 2015.11.16, Ended: 2015.11.18
Participants: Danielaurence (S), wil (N)
Winner: wil

1) wil: H Y3 B1 G3
	Danielaurence: homeworld G2 B1 Y3

2) Danielaurence: Homeworld R2 B1 G3
	wil: Good luck... Have you played this?  
	Danielaurence: Only with real pyramids. I haven't played online yet. Figuring the controls out now.

3) wil: B G1 Wil
	wil: You have go catastrophe... It isn't automatic here... And you can't make any moves after one

4) Danielaurence: Build G1 Danielaurence

5) wil: T G1 B1 Wil
	Danielaurence: Got it. Thanks for the tips. Good luck!

6) Danielaurence: Trade G1 Y1 Danielaurence

7) wil: B B2 Wil

8) Danielaurence: Build Y1 Danielaurence

9) wil: D B2 Wil G2 G2

10) Danielaurence: Build G1 Danielaurence

11) wil: B B2 Wil

12) Danielaurence: Discover G1 Danielaurence B3 B3

13) wil: T B2 R2 Wil

14) Danielaurence: Build G1 B3

15) wil: B B2 G2

16) Danielaurence: Trade G3 B3 Danielaurence

17) wil: T B2 Y2 G2

18) Danielaurence: Trade Y1 G1 Danielaurence

19) wil: B G2 Wil

20) Danielaurence: Build G2 Danielaurence

21) wil: B G3 Wil

22) Danielaurence: Build G3 Danielaurence
	Danielaurence: I have a lot to learn about this game... part of the reason I'm on here is to get a firmer grasp on the rules. For instance, I didn't know that you can only build a ship if you have another SHIP of the same color. I thought being in a system with that color was enough.

23) wil: S G3 Wil
B B2 Wil
B B2 G2
B B3 G2

24) Danielaurence: Build G3 B3

25) wil: T B3 Y3 G2

26) Danielaurence: Trade G3 Y3 Danielaurence

27) wil: S Y2 G2
M G2 Wil G2
M G2 G2 B3
C B3 G

28) Danielaurence: Discover B3 Danielaurence G3 Forest

29) wil: M B2 G2 Forest

30) Danielaurence: Trade B3 R3 Forest

31) wil: T B2 R2 Forest
	wil: Forgot to tell it to catastrophe

32) Danielaurence: Attack R2 Forest

33) wil: B B2 G2

34) Danielaurence: Move Y1 Danielaurence Forest
	wil: Nice

35) wil: D B1 Wil Y2 Y2

36) Danielaurence: Move R2 Forest Y2
	Danielaurence: Thanks!

37) wil: S G3 Wil
B B3 Wil
B B3 Y2
B B3 G2
	wil: We.are a peaceful people and would like to offer you a warship

38) Danielaurence: Move R3 Forest Y2

39) wil: S R2 Wil
A R3 Y2
A R2 Y2

40) Danielaurence: Build Y1 Forest

41) wil: T B3 G3 Wil
	wil: It was nice to have you come visit, you may stay for breakfast but you better be gone before nightfall
	wil: It was nice to have you come visit, you may stay for breakfast but you better be gone before nightfall

42) Danielaurence: Trade G1 R1 Danielaurence
	Danielaurence: I think I'd like to sleep over :)

43) wil: M B3 Y2 Forest
	wil: What was I thinking? Pardon my manners, in that case I welcome you to the fold like family...you can stay as long as like
	Danielaurence: Cripes. Nice move!
	wil: Your donation is gratefully accepted, while we are not a warring factions, these are nice ships...

44) Danielaurence: Sacrifice Y1 Forest
Move Y1 Forest Danielaurence

45) wil: S Y3 G2
M B3 G2 Forest
M B3 Forest Danielaurence
M B3 Forest Danielaurence

46) Danielaurence: Trade Y3 B3 Danielaurence
Catastrophe Danielaurence Blue

47) wil: M G3 Wil Danielaurence

48) Danielaurence: Build G1 Danielaurence

49) wil: S R3 Y2
A G2 Danielaurence
A G1 Danielaurence
A R1 Danielaurence

50) Danielaurence: Pass
	Danielaurence: You left me with no choice...
	wil: It was you only delaying tactic

51) wil: A Y1 Danielaurence

	Danielaurence: Haha, brilliant strategy on the name change! :) Great game. As a beginner, I definitely learned a lot.
	wil: Challenge me anytime...join the ladder now and by the time you work your way painfully through the deadwood... You'll be ready for those on top!


28582)
Started: 2015.11.16, Ended: 2015.11.23
Participants: Danielaurence (S), ts52 (N)
Winner: Danielaurence

1) ts52: Homeworld Y3 B1 G3

2) Danielaurence: Homeworld B2 R1 G3

3) ts52: Build G1 Ts52

4) Danielaurence: Build G1 Danielaurence

5) ts52: Trade G1 B1 Ts52

6) Danielaurence: Trade G1 B1 Danielaurence
	Danielaurence: Good luck! I'm relatively new to the game, but I'll give it my best.

7) ts52: Build B2 Ts52
	ts52: Have a good game. Feel free to ask questions if you like. Always happy to help new players get into the game.

8) Danielaurence: Build B2 Danielaurence

9) ts52: Discover B2 Ts52 G2 Oscar

10) Danielaurence: Trade B1 Y1 Danielaurence

11) ts52: Build G1 Ts52

12) Danielaurence: Build Y1 Danielaurence

13) ts52: Move B1 Ts52 Oscar

14) Danielaurence: Discover B2 Danielaurence G3 Forest

15) ts52: Trade B2 Y2 Oscar

16) Danielaurence: Build G1 Danielaurence

17) ts52: Discover G1 Ts52 B2 Gonzo

18) Danielaurence: Move Y1 Danielaurence Forest

19) ts52: Build G1 Ts52

20) Danielaurence: Move G1 Danielaurence Forest

21) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G2 Gonzo
Build G3 Ts52

22) Danielaurence: Discover G1 Forest Y2 Desert

23) ts52: Trade G2 R2 Gonzo

24) Danielaurence: Move G1 Desert Ts52
Catastrophe Ts52 Green
	Danielaurence: Good game! I hope you didn't let me win just because I'm a beginner! I'd love to play again sometime.
	ts52: I did not. Well played. I"d be happy to play again, any time.



28616)
Variants: "Hard time"
Started: 2015.11.17, Ended: 2015.11.27
Participants: kanzenryu (S), endo (N)
Winner: endo

1) endo: Homeworld Y1 B3 G3

2) kanzenryu: Homeworld B1 G2 Y3

3) endo: Build G1 Endo
	kanzenryu: Can I stay out of trouble for one extra move this time? ;-)

4) kanzenryu: Build Y1 Kanzenryu
	endo: You have to be really careful if you don't pick a green ship, especially when going second...

5) endo: Discover G1 Endo B2 Adjoint

6) kanzenryu: Trade Y3 G3 Kanzenryu

7) endo: Build G1 Adjoint

8) kanzenryu: Build Y1 Kanzenryu

9) endo: Build G1 Endo

10) kanzenryu: Discover Y1 Kanzenryu G3 Out

11) endo: Sacrifice G3 Endo
Build G2 Endo
Build G2 Adjoint
Build G3 Endo

12) kanzenryu: Build Y2 Out

13) endo: Discover G1 Endo B2 Monoidal

14) kanzenryu: Build Y2 Out

15) endo: Trade G2 Y2 Adjoint

16) kanzenryu: Discover Y2 Out B2 Peep

17) endo: Sacrifice G3 Endo
Build G2 Monoidal
Build G3 Endo
Build Y3 Adjoint
	kanzenryu: Are these stars functional programming or math terms? Or both?

18) kanzenryu: Move Y1 Out Peep
	endo: I pick a math theme for each game. In this case it's functors from category theory, which is strongly related to functional programming, yes.

19) endo: Discover Y2 Adjoint B3 Enriched

20) kanzenryu: Build Y3 Out

21) endo: Sacrifice G2 Endo
Build G2 Endo
Build Y3 Enriched

22) kanzenryu: Trade Y2 R2 Peep

23) endo: Trade Y3 R3 Enriched

24) kanzenryu: Build Y2 Kanzenryu

25) endo: Sacrifice G3 Endo
Build G3 Endo
Build Y3 Adjoint
Build R1 Enriched

26) kanzenryu: Move Y3 Out Peep

27) endo: Move G1 Adjoint Enriched

28) kanzenryu: Trade Y1 R1 Kanzenryu

29) endo: Sacrifice Y3 Adjoint
Move G1 Adjoint Enriched
Move G1 Enriched Kanzenryu
Move G1 Enriched Kanzenryu
Catastrophe Kanzenryu G

30) kanzenryu: Move Y3 Peep Kanzenryu

31) endo: Move Y3 Adjoint Kanzenryu

	kanzenryu: I just want to say this is not the first time I have been defeated by functional programming ;-)


28563)
Variants: "Hard time"
Started: 2015.11.18, Ended: 2015.12.6
Participants: SilentTitan (S), Danielaurence (N)
Winner: Danielaurence

1) Danielaurence: Homeworld B2 Y1 G3

2) SilentTitan: Homeworld B3 R1 G3

3) Danielaurence: Build G1 Danielaurence

4) SilentTitan: Build G1 Silenttitan

5) Danielaurence: Discover G1 Danielaurence B3 Boris

6) SilentTitan: Trade G1 Y1 Silenttitan

7) Danielaurence: Build G1 Boris

8) SilentTitan: Build Y1 Silenttitan

9) Danielaurence: Build G1 Danielaurence

10) SilentTitan: Discover Y1 Silenttitan G2 Sol

11) Danielaurence: Build G2 Boris

12) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Silenttitan
Build Y2 Silenttitan
Build Y2 Sol

13) Danielaurence: T G3 Y3 Danielaurence

14) SilentTitan: Build Y3 Sol

15) Danielaurence: T G1 R1 Boris

16) SilentTitan: Discover Y2 Silenttitan B2 Soul

17) Danielaurence: Move Y3 Danielaurence Boris

	Danielaurence: Thanks for playing


28622)
Variants: "Unrated"
Started: 2015.11.18, Ended: 2015.11.24
Participants: wil (S), Danielaurence (N)
Winner: wil

1) Danielaurence: Homeworld B3 G2 Y3

2) wil: H R3 Y1 G3 *
	Danielaurence: Again! Again! Hopefully I have learned from some of my mistakes last time.
	wil: Hopefully we'll find new mistakes for you to try!

3) Danielaurence: Build Y1 Danielaurence

4) wil: B G1 Wil

5) Danielaurence: Build Y1 Danielaurence

6) wil: D G1 Wil B2 B2

7) Danielaurence: Discover Y1 Danielaurence G1 Jelloland

8) wil: B G1 Wil

9) Danielaurence: Build Y2 Jelloland

10) wil: B G2 B2

11) Danielaurence: Trade Y3 G3 Danielaurence

12) wil: T G2 Y2 B2
	Danielaurence: I see your green and raise you a yellow!

13) Danielaurence: Move Y1 Jelloland Danielaurence
	wil: I'd jelly of yo yelly

14) wil: B G2 B2

15) Danielaurence: Trade Y1 B1 Danielaurence

16) wil: D G2 B2 Y1 Y1

17) Danielaurence: Build B1 Danielaurence

18) wil: S G3 Wil
B G2 Y1
B G3 B2
B G3 Wil

19) Danielaurence: Sacrifice G3 Danielaurence
Build Y2 Danielaurence
Build Y3 Jelloland
Build Y3 Danielaurence

20) wil: S G3 Wil
B G3 Wil
B G3 B2
B Y3 B2

21) Danielaurence: Trade Y2 R2 Danielaurence

22) wil: T G3 R3 B2

23) Danielaurence: Move B1 Danielaurence Jelloland

24) wil: D Y2 B2 B1 B1

25) Danielaurence: Trade Y3 G3 Jelloland

26) wil: T G3 Y3 B2
	wil: Note... My opening...starting without a blue...is completely unorthodox.. But I have been successful with it...currently mixed reviews... And most popular opening is the banker, currently considered strongest and as a starship commander and galactic overlord, decorum does not allow me to use it against you...

27) Danielaurence: Discover G3 Jelloland B2 Topos

28) wil: S G3 Wil
B G3 Wil
B G3 B2
B Y2 B1
	Danielaurence: I love using unorthodox strategies in games like this. I didn't know that the banker is considered stronger. I really like learning how to use less popular strategies and openings in these games. Thank you for your grace in avoiding the banker, oh great galactic overlord. Please allow my humble construction/conversion fortress to exist in peace!

29) Danielaurence: Sacrifice G3 Topos
Build B2 Jelloland
Build B2 Jelloland
Build B3 Danielaurence

30) wil: M Y3 B2 Jelloland
	wil: We will let you live in peace....and expect similar diplomacy on your side...you do have an excess of resources which we will gladly facilitate taking off your hands at some point in time, and should your ancestral lands ever become desrbalized we will assist by eliminating the star before it nebulizes and puts my galaxy at risk

31) Danielaurence: Sacrifice Y3 Danielaurence
Move B2 Jelloland B2
Move B2 Jelloland B2
Move B1 Jelloland B2
Catastrophe B2 Blue

32) wil: S G3 Wil
B G1 Y1
B G3 Wil
B G3 Wil

33) Danielaurence: Build Y3 Danielaurence

34) wil: T Y2 R2 B1

35) Danielaurence: Trade B3 G3 Danielaurence

36) wil: D G3 Wil B2 B2

37) Danielaurence: Trade G3 R3 Danielaurence

38) wil: B G3 B2

39) Danielaurence: Move R3 Danielaurence Y1

40) wil: T G3 Y3 B2

41) Danielaurence: Attack G2 Y1

42) wil: S G3 Wil
B G3 Wil
B G3 Y1
B Y2 B1
C Y1 G

43) Danielaurence: Trade Y1 G1 Danielaurence

44) wil: B G2 B2

45) Danielaurence: Move B1 Danielaurence Jelloland

46) wil: M G3 B2 B1

47) Danielaurence: Move G1 Danielaurence Y1
	wil: You giving me that fine ship?
	Danielaurence: Nope :)

48) wil: S G3 Wil
B G2 B2
B G3 B1
B G3 Wil

49) Danielaurence: Build Y1 Jelloland

50) wil: T G2 R2 B2

51) Danielaurence: Build G2 Y1

52) wil: S G3 Wil
B G3 Wil
B R1 B1
B R1 B2

53) Danielaurence: Discover G1 Y1 B2 Ice Town

54) wil: M G1 Wil B2

55) Danielaurence: Build B1 Jelloland

56) wil: S R2 B2
A Y2 Jelloland
A B1 Jelloland

57) Danielaurence: Move B1 Jelloland Ice

58) wil: S R1 B1
A Y1 Jelloland

59) Danielaurence: Move R3 Y1 Ice
	Danielaurence: I knew you wouldn't fall for that, but it was worth a shot!

60) wil: S Y3 B2
M Y1 Jelloland Danielaurence
M Y2 Jelloland Danielaurence
M Y2 B1 Danielaurence
C Danielaurence Y

61) Danielaurence: Build R1 Ice

62) wil: M Y3 Jelloland Danielaurence
	wil: It was worth a shot!
	wil: It was worth a shot!
	wil: It was worth a shot!

63) Danielaurence: Pass

64) wil: S R1 B2
A R2 Danielaurence

	wil: Anytime...
	Danielaurence: Any tips regarding strategy? I'm still quite bad at this but I'd love any pointers from my new galactic dictator. You know... just in case I find a chance to spark a rebellion and overthrow your empire.
	wil: Try to keep up in color/economy...not to allow a monopoly...begin and stay with the ends in mind... Loss  lot, learn a lot...seeing various attacks come at you..
	Danielaurence: Thanks!


28638)
Variants: "Hard time"
Started: 2015.11.18, Ended: 2015.11.27
Participants: Danielaurence (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld G3 Y1 B3

2) Danielaurence: Homeworld B3 Y2 G3
	Ausmuh: Have fun!
	Danielaurence: Thanks, you too!

3) Ausmuh: Build B1 Ausmuh

4) Danielaurence: Build G1 Danielaurence

5) Ausmuh: Build B1 Ausmuh

6) Danielaurence: Trade G1 B1 Danielaurence

7) Ausmuh: Discover B1 Ausmuh G2 Mw2

8) Danielaurence: Build B2 Danielaurence

9) Ausmuh: Build B2 Mw2

10) Danielaurence: Discover B2 Danielaurence G1 Foris

11) Ausmuh: Sacrifice B2 Mw2
Trade B1 Y1 Mw2
Trade B1 R1 Ausmuh

12) Danielaurence: Build B1 Foris

13) Ausmuh: Build Y1 Mw2

14) Danielaurence: Trade B2 Y2 Foris

15) Ausmuh: Build R1 Ausmuh

16) Danielaurence: Trade Y2 R2 Foris

17) Ausmuh: Build Y2 Mw2

18) Danielaurence: Build G1 Danielaurence

19) Ausmuh: Move Y2 Mw2 Ausmuh

20) Danielaurence: Move G1 Danielaurence Foris

21) Ausmuh: Trade Y2 B2 Ausmuh

22) Danielaurence: Build G1 Danielaurence

23) Ausmuh: Build Y2 Mw2

24) Danielaurence: Sacrifice G3 Danielaurence
Build G2 Foris
Build G2 Danielaurence
Build G3 Danielaurence

25) Ausmuh: Discover Y2 Mw2 R1 Cc1

26) Danielaurence: Trade G2 Y2 Foris

27) Ausmuh: Trade B2 G2 Ausmuh

28) Danielaurence: Sacrifice G3 Danielaurence
Build G3 Foris
Build Y3 Foris
Build G3 Danielaurence

29) Ausmuh: Sacrifice Y2 Cc1
Move G2 Ausmuh Mw2
Move G2 Mw2 Foris
Catastrophe Foris Green

30) Danielaurence: Trade G2 Y2 Danielaurence

31) Ausmuh: Build R1 Ausmuh
	Danielaurence: Nice play!

32) Danielaurence: B Y2 Danielaurence
	Ausmuh: Thanks, I don't have many. :)

33) Ausmuh: Discover Y1 Mw2 G1 Mw1

34) Danielaurence: Discover Y2 Danielaurence G1 Naboo

35) Ausmuh: Build Y3 Mw1

36) Danielaurence: S G3 Danielaurence
B G2 Danielaurence
B Y3 Danielaurence
B Y3 Naboo

37) Ausmuh: Move Y1 Mw1 Danielaurence
Catastrophe Danielaurence Y

38) Danielaurence: M Y3 Naboo Danielaurence
	Danielaurence: Ouch. I missed that!

39) Ausmuh: Move Y3 Mw1 Danielaurence

40) Danielaurence: Build Y1 Danielaurence

41) Ausmuh: Trade Y3 R3 Danielaurence
	Danielaurence: Well done. I didn't see that gambit coming at all and it worked beautifully! I have learned.

42) Danielaurence: Build Y2 Danielaurence
	Ausmuh: Catastrophes are sneaky indeed.  It's usually advised to get into red when your opponent does. A 2  pip red has the ability to ward off most direct attacks on your Homeworld, as you would need three 3 pip ships to survive the sacrifice attack. Good game and thanks for playing

43) Ausmuh: Attack Y3S Danielaurence
	Danielaurence: I see that now. And I forgot that you can always sacrifice an r1 to attack with a non-red ship in another system. Sneaky indeed! 

44) Danielaurence: Sacrifice G2 Danielaurence
Build B1 Danielaurence
Build B1 Danielaurence

45) Ausmuh: Trade R3 B3 Danielaurence
Catastrophe Danielaurence Blue
	Danielaurence: Let me help you out there ;)



28614)
Variants: "Hard time"
Started: 2015.11.19, Ended: 2015.12.2
Participants: kanzenryu (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B2 R1 G3

2) kanzenryu: Homeworld Y1 B3 G3

3) Simon: Build G1 Simon
	kanzenryu: This game is an amazing universe of every idea turns out to be wrong ;-)
	Simon: It's a battle of several unevenly distributed resources, hard to estimate the value of them all.

4) kanzenryu: Build G1 Kanzenryu

5) Simon: Trade G1 Y1 Simon

6) kanzenryu: Trade G1 Y1 Kanzenryu

7) Simon: Build Y2 Simon

8) kanzenryu: Build G1 Kanzenryu

9) Simon: Discover Y1 Simon B3 B3

10) kanzenryu: Discover G1 Kanzenryu B2 Foo

11) Simon: Build Y2 Simon

12) kanzenryu: Build G1 Foo

13) Simon: Discover Y2 Simon G3 G3

14) kanzenryu: Move Y1 Kanzenryu Foo

15) Simon: Sacrifice G3 Simon
Build Y2 B3
Build Y3 Simon
Build Y3 B3

16) kanzenryu: Move Y1 Foo B3
Catastrophe B3 Y

17) Simon: Trade Y3 G3 Simon

18) kanzenryu: Trade G1 Y1 Foo

19) Simon: Build G1 Simon

20) kanzenryu: Move Y1 Foo G3

21) Simon: Trade G1 R1 Simon

22) kanzenryu: Build G1 Kanzenryu

23) Simon: Move R1 Simon G3

24) kanzenryu: Discover Y1 G3 G1 Ouch

25) Simon: Build G2 Simon

26) kanzenryu: Build G2 Foo

27) Simon: Sacrifice G3 Simon
Build G2 Simon
Build G3 Simon
Build Y1 G3

28) kanzenryu: Trade G2 R2 Foo

29) Simon: Discover Y2 G3 R2 R2

30) kanzenryu: Sacrifice G3 Kanzenryu
Build Y2 Ouch
Build G2 Foo
Build G3 Kanzenryu

31) Simon: Sacrifice G3 Simon
Build Y3 Simon
Build Y3 G3
Build Y3 R2

32) kanzenryu: Trade G1 R1 Kanzenryu

33) Simon: Move Y3 G3 Foo

34) kanzenryu: Sacrifice Y2 Ouch
Move R2 Foo G3
Move G2 Foo G3

35) Simon: Sacrifice R1 G3
Attack G1 Foo

36) kanzenryu: Attack Y1 G3

37) Simon: Sacrifice G2 Simon
Build G1 Simon
Build G2 Foo

38) kanzenryu: Build Y2 G3

39) Simon: Sacrifice Y2 R2
Move G1 Simon G3
Move G1 Foo G3
Catastrophe G3 G

40) kanzenryu: Build G1 Kanzenryu

41) Simon: Build G1 Foo

42) kanzenryu: Discover G1 Kanzenryu B2 Somewhere

43) Simon: Build G2 Simon

44) kanzenryu: Build G3 Somewhere

45) Simon: Build G3 Foo

46) kanzenryu: Trade G3 R3 Kanzenryu

47) Simon: Trade G2 R2 Foo

48) kanzenryu: Trade G1 Y1 Somewhere

49) Simon: Sacrifice G2 Simon
Build R1 Foo
Build Y2 Foo

50) kanzenryu: Build Y2 Somewhere

	Simon: The last build threatens mate. >_> If you would like to undo, feel free to do so. Or we can always play a fresh one. :)
	kanzenryu: I can see that it's all bad news for this game...


28637)
Variants: "Hard time"
Started: 2015.11.19, Ended: 2015.12.14
Participants: kanzenryu (S), Danielaurence (N)
Winner: kanzenryu

1) Danielaurence: Homeworld B2 Y1 G3

2) kanzenryu: Homeworld B1 Y3 G3
	Danielaurence: Good luck! Have you played this before?
	kanzenryu: Hi, I've played about 10 games and lost them all. Fun, though.

3) Danielaurence: Build G1 Danielaurence
	Danielaurence: I've lost all my games too so this should be interesting :) good luck!

4) kanzenryu: Build G1 Kanzenryu
	kanzenryu: The pressure is on now ;-) It does seem like any small mistake early on can be ruthlessly exploited by a good player.

5) Danielaurence: Trade G1 B1 Danielaurence

6) kanzenryu: Trade G1 B1 Kanzenryu
	Danielaurence: Definitely. I'm not a very player yet, though, so you have less to fear from your early mistakes.

	Danielaurence: good player*

7) Danielaurence: Discover B1 Danielaurence G3 Boreal

8) kanzenryu: Discover B1 Kanzenryu G2 Out

9) Danielaurence: Build B2 Boreal

10) kanzenryu: Build G1 Kanzenryu

11) Danielaurence: Trade B1 Y1 Boreal

12) kanzenryu: Build G1 Kanzenryu

13) Danielaurence: Build G1 Danielaurence

14) kanzenryu: Discover G1 Kanzenryu Y2 Other

15) Danielaurence: Build B1 Boreal

16) kanzenryu: Build G2 Other

17) Danielaurence: S G3 Danielaurence
Build G2 Danielaurence
Build G3 Danielaurence
B B2 Boreal

18) kanzenryu: Build B3 Out
	kanzenryu: Do you want to undo that? I can catastrophe in green in your home system.
	Danielaurence: No, that's okay. I don't really believe in undoing moves if I missed something, so iif I made a mistake, you should definitely take advantage of it!
	Danielaurence: I"m not totally sure you can get to my home system right now though. Is there some sneaky way you can get there that I'm missing?
	kanzenryu: Ha ha, sorry, I'm hallucinating a y2 from some other game.

19) Danielaurence: T B2 R2 Boreal

20) kanzenryu: Trade B1 R1 Out

21) Danielaurence: Sacrifice G3 Danielaurence
Build G3 Danielaurence
Build Y1 Boreal
Build Y2 Boreal

22) kanzenryu: Sacrifice G3 Kanzenryu
Build R1 Out
Build B1 Out
Build G3 Kanzenryu

23) Danielaurence: Discover Y2 Boreal B2 Gate

24) kanzenryu: Trade B3 Y3 Out

25) Danielaurence: D G2 Danielaurence Y3 Sol

26) kanzenryu: Build B3 Out

27) Danielaurence: B Y2 Boreal

28) kanzenryu: Move B3 Out Boreal

29) Danielaurence: S Y2 Boreal
M G1 Danielaurence Sol
M G2 Sol Gate

30) kanzenryu: Sacrifice R1 Out
Attack R2 Boreal

31) Danielaurence: Move G1 Sol Gate

32) kanzenryu: Trade G1 R1 Kanzenryu

33) Danielaurence: Move B2 Boreal Danielaurence

34) kanzenryu: Build Y2 Out

35) Danielaurence: Trade B2 R2 Danielaurence

36) kanzenryu: Attack B1 Boreal

37) Danielaurence: Build Y3 Gate

38) kanzenryu: Build B2 Boreal

39) Danielaurence: Move Y1 Boreal Gate

40) kanzenryu: Sacrifice Y3 Out
Move B1 Boreal Gate
Move B2 Boreal Gate
Move B3 Boreal Gate
Catastrophe Gate B

41) Danielaurence: Discover Y1 Boreal G2 Gate

42) kanzenryu: Build G1 Kanzenryu

43) Danielaurence: Build G1 Danielaurence

44) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build B1 Out
Build B2 Out

45) Danielaurence: B Y1 Gate

46) kanzenryu: Move B1 Out Boreal

47) Danielaurence: M Y1 Gate Kanzenryu

48) kanzenryu: Attack Y1 Kanzenryu

49) Danielaurence: Build Y2 Gate

50) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build Y3 Out
Build R1 Out

51) Danielaurence: Discover Y2 Gate B3 Warp

52) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build B2 Boreal
Build B3 Boreal

53) Danielaurence: Build Y3 Gate
	Danielaurence: Yikes,.... that's a lot of ships pointed my way!

54) kanzenryu: Sacrifice Y3 Out
Move B1 Boreal Danielaurence
Move B2 Boreal Danielaurence
Move B3 Boreal Danielaurence
Catastrophe Danielaurence B

55) Danielaurence: Sacrifice G3 Danielaurence
Build G3 Danielaurence
Build Y3 Warp
Pass

56) kanzenryu: Discover Y1 Kanzenryu B2 Moon

57) Danielaurence: Move Y3 Warp Out

58) kanzenryu: Build R2 Out

59) Danielaurence: Build R3 Danielaurence
	kanzenryu: This game really is interesting. I clearly overcommitted myself with that first attack. Now I'm struggling. Awesome stuff!
	Danielaurence: It is very interesting! I had a game against another opponent recently where I blew up half of their homeworld, but I didn't have the resources to finish the job, so they creamed me in return. I don't know if I can manage to hit you back as hard here, but it is definitely dangerous to attack without the ability to finish the job!

60) kanzenryu: Sacrifice Y2 Out
Move R1 Out Danielaurence
Move R1 Out Danielaurence
Catastrophe Danielaurence R

61) Danielaurence: Trade Y2 B2 Warp

62) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build Y2 Moon
Build R1 Boreal

63) Danielaurence: Sacrifice Y1 Gate
Move B2 Warp Danielaurence

64) kanzenryu: Sacrifice Y2 Moon
Move G1 Other Danielaurence
Move G2 Other Danielaurence
Catastrophe Danielaurence G

65) Danielaurence: T B2 G2 Danielaurence
	kanzenryu: Hmmm, catastrophe didn't seem to happen. Trying again...

66) kanzenryu: Sacrifice Y1 Moon
Move R2 Boreal Danielaurence

67) Danielaurence: M Y3 Gate Danielaurence
	Danielaurence: This game is intense :) 
	kanzenryu: I confess to setting up my plastic pyramids a couple of moves ago and looking for about 30 minutes to find a way to proceed.

68) kanzenryu: Attack G2 Danielaurence
	Danielaurence: Haha! Perhaps I should try that!

69) Danielaurence: Move Y3 Out Kanzenryu
	Danielaurence: I think you have the upper hand now though

70) kanzenryu: Attack Y3 Kanzenryu
	kanzenryu: All glory to the plastic pyramids

71) Danielaurence: Pass

72) kanzenryu: Sacrifice B2 Out
Trade R2 Y2 Danielaurence
Trade G2 Y2 Danielaurence
Catastrophe Danielaurence Y

	Danielaurence: You got me. Good game!
	Danielaurence: I have a new account on here that I am moving to (I got tired of typing in Danielaurence all the time in this game), so I will challenge you again from my new one (Felix) if you would like to rematch!
	Danielaurence: I have a new account on here that I am moving to (I got tired of typing in Danielaurence all the time in this game), so I will challenge you again from my new one (Felix) if you would like to rematch!
	kanzenryu: Felix will be much shorter to type, thanks for the game, my first ever win.
	Danielaurence: Yes, it's an old alias of mine. And congrats! You definitely earned it!


28671)
Variants: "Hard time"
Started: 2015.11.22, Ended: 2015.12.12
Participants: Uglyfoot (S), kanzenryu (N)
Winner: Uglyfoot

1) kanzenryu: Homeworld Y1 B3 G3

2) Uglyfoot: Homeworld B2 Y3 G3
	kanzenryu: I'm pretty bad at this game, too!

3) kanzenryu: Build G1 Kanzenryu
	Uglyfoot: Something always eludes me but maybe I'll get it this time...

4) Uglyfoot: Build G1 Uglyfoot

5) kanzenryu: Trade G1 Y1 Kanzenryu

6) Uglyfoot: Discover G1 Uglyfoot B1 Bluette

7) kanzenryu: Build G1 Kanzenryu

8) Uglyfoot: Build G1 Uglyfoot

9) kanzenryu: Discover G1 Kanzenryu Y2 Out

10) Uglyfoot: Build G2 Bluette

11) kanzenryu: Build G2 Out

12) Uglyfoot: Trade G2 Y2 Bluette

13) kanzenryu: Discover G2 Out Y1 Peep

14) Uglyfoot: Trade G1 R1 Uglyfoot

15) kanzenryu: Trade Y1 R1 Kanzenryu

16) Uglyfoot: Build Y1 Bluette

17) kanzenryu: Build R1 Kanzenryu

18) Uglyfoot: Build Y2 Bluette

19) kanzenryu: Build R2 Kanzenryu

20) Uglyfoot: Discover Y2 Bluette R2 Kaboom

21) kanzenryu: Move R1 Kanzenryu Out

22) Uglyfoot: Build Y3 Bluette

23) kanzenryu: Build G1 Peep

24) Uglyfoot: Trade Y3 R3 Bluette

25) kanzenryu: Discover G1 Out B1 Peep2

26) Uglyfoot: Build G2 Bluette

27) kanzenryu: Build G2 Peep2

28) Uglyfoot: Move R3 Bluette Uglyfoot

29) kanzenryu: Build G3 Kanzenryu

30) Uglyfoot: Build Y3 Bluette

31) kanzenryu: Trade G3 Y3 Kanzenryu

32) Uglyfoot: Sacrifice Y3 Bluette
Move Y1 Bluette Kaboom
Move Y1 Kaboom Kanzenryu
Move Y2 Kaboom Kanzenryu
Catastrophe Kanzenryu Y

33) kanzenryu: Build G3 Kanzenryu

34) Uglyfoot: Move R1 Uglyfoot Bluette

35) kanzenryu: Trade G1 Y1 Peep2

36) Uglyfoot: Sacrifice Y2 Bluette
Move G1 Bluette Kanzenryu
Move G2 Bluette Kanzenryu
Catastrophe Kanzenryu G

	kanzenryu: Two have one catastrophe in your home system may be considered a misfortune, but two looks like carelessness... ;-)


28675)
Started: 2015.11.23, Ended: 2015.12.4
Participants: Danielaurence (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B2 Y3 G3

2) Danielaurence: Homeworld G3 Y1 B3

3) ts52: Build G1 Ts52

4) Danielaurence: Build B1 Danielaurence

5) ts52: Discover G1 Ts52 B1 Gonzo

6) Danielaurence: Discover B1 Danielaurence G2 Gate

7) ts52: Build G1 Ts52

8) Danielaurence: B B1 Gate

9) ts52: Build G1 Gonzo

10) Danielaurence: Build B2 Danielaurence

11) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G2 Ts52
Build G3 Ts52

12) Danielaurence: Build B2 Gate

13) ts52: Discover G2 Ts52 Y1 Zoe

14) Danielaurence: Trade B3 G3 Danielaurence

15) ts52: Trade G2 Y2 Gonzo

16) Danielaurence: Trade B2 Y2 Gate

17) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build Y1 Gonzo

18) Danielaurence: Build B2 Danielaurence

19) ts52: Trade G3 B3 Ts52

20) Danielaurence:
B B3 Gate

21) ts52: Build G3 Ts52

22) Danielaurence: T B3 R3 Gate

23) ts52: Trade G3 R3 Ts52

24) Danielaurence: Move R3 Gate Gonzo

25) ts52: Move B3 Ts52 Zoe

26) Danielaurence: Attack G2 Gonzo

27) ts52: Build G3 Ts52

28) Danielaurence: Attack Y2 Gonzo

29) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Gonzo
Build Y3 Gonzo
Catastrophe Gonzo Yellow

30) Danielaurence: Build B3 Danielaurence

31) ts52: Sacrifice G3 Ts52
Build G3 Zoe
Build B3 Zoe
Build R1 Ts52

32) Danielaurence: Sacrifice B2 Danielaurence
Trade B3 Y3 Danielaurence
Trade G2 Y2 Gonzo

33) ts52: Trade B3 R3 Zoe

34) Danielaurence: Sacrifice G3 Danielaurence
Build Y1 Gate
Build Y2 Gate
Build Y3 Gonzo

35) ts52: Move R3 Zoe Gate

36) Danielaurence: Sacrifice Y2 Gate
Move B1 Gate Gonzo
Move B1 Gate Gonzo

37) ts52: Attack Y2 Gate

38) Danielaurence: Sacrifice Y1 Gate
Discover B2 Danielaurence G2 Safe

39) ts52: Sacrifice G3 Zoe
Build G3 Ts52
Build G3 Zoe
Build Y1 Gate
	Danielaurence: Nice move!

40) Danielaurence: Move Y2 Gonzo Safe

41) ts52: Move Y1 Gate Danielaurence

42) Danielaurence: Sacrifice B1 Gonzo
Trade Y3 B3 Danielaurence

43) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Danielaurence
Build Y3 Gate

44) Danielaurence: Attack G1 Gonzo

45) ts52: Move Y2 Gate Danielaurence
Catastrophe Danielaurence Yellow
	Danielaurence: Nice one. I'm learning, but that hurt!


46) Danielaurence: Attack G1 Gonzo

47) ts52: Sacrifice Y3 Gate
Move G2 Zoe Danielaurence
Move G3 Zoe Danielaurence
Move G1 Ts52 Zoe

48) Danielaurence: Sacrifice R3 Gonzo
Attack G3 Danielaurence
Attack G2 Danielaurence
Pass

49) ts52: Move G1 Zoe Danielaurence
Catastrophe Danielaurence Green

	ts52: Thanks for the game!
	Danielaurence: Likewise. I think I have learned!
	ts52: Always happy to play another. :)


28624)
Variants: "Hard time"
Started: 2015.11.23, Ended: 2015.11.28
Participants: endo (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3

2) endo: Homeworld B1 R2 G3
	Simon: More homeworlds! Have fun!

3) Simon: Build G1 Simon
	endo: Glhf!

4) endo: Build G1 Endo

5) Simon: Trade G1 Y1 Simon

6) endo: Trade G1 Y1 Endo

7) Simon: Build G1 Simon

8) endo: Build G1 Endo

9) Simon: Trade G1 B1 Simon

10) endo: Trade G1 B1 Endo

11) Simon: Build B2 Simon

12) endo: Build B2 Endo

13) Simon: Discover B2 Simon G2 G2

14) endo: Discover B1 Endo G3 Homotopy

15) Simon: Build G1 Simon

16) endo: Build Y1 Endo

17) Simon: Build Y2 Simon

18) endo: Move Y1 Endo Homotopy

19) Simon: Move Y1 Simon G2

20) endo: Build Y2 Homotopy

21) Simon: Build Y2 Simon

22) endo: Trade Y2 R2 Homotopy

23) Simon: Trade Y2 R2 Simon

24) endo: Build Y2 Homotopy

25) Simon: Move R2 Simon G2

26) endo: Discover Y2 Homotopy G2 Fibration

27) Simon: Discover B1 Simon G2 G2a

28) endo: Build R1 Homotopy

29) Simon: Build B2 G2a

30) endo: Move R1 Homotopy Fibration

31) Simon: Build B3 G2

32) endo: Build B3 Homotopy

33) Simon: Sacrifice Y2 Simon
Move B1 G2a Homotopy
Move B2 G2a Homotopy
Catastrophe Homotopy B

34) endo: Sacrifice G3 Endo
Build Y2 Homotopy
Build Y2 Fibration
Build Y3 Endo

35) Simon: Move B3 G2 Homotopy

36) endo: Build Y3 Fibration

37) Simon: Sacrifice R2 G2
Attack R2 Homotopy
Attack Y2 Homotopy

38) endo: Build Y3 Homotopy

39) Simon: Attack Y3 Homotopy

40) endo: Move Y2 Fibration Homotopy
Catastrophe Homotopy Y

41) Simon: Build B1 G2

42) endo: Build R1 Fibration

43) Simon: Build R2 Homotopy

44) endo: Discover R1 Fibration G3 Path

45) Simon: Trade R2 Y2 Homotopy

46) endo: Build R2 Fibration

47) Simon: Build R3 Homotopy

48) endo: Build R3 Path

49) Simon: Move R3 Homotopy G2

50) endo: Sacrifice B2 Endo
Trade R2 B2 Fibration
Trade R3 B3 Path

51) Simon: Build R2 Homotopy

52) endo: Build R3 Path

53) Simon: Build R3 G2

54) endo: Trade R3 Y3 Path

55) Simon: Trade B2 Y2 G2

56) endo: Trade Y1 G1 Endo

57) Simon: Discover R3 G2 R3 R3

58) endo: Sacrifice Y3 Path
Move R1 Path Fibration
Move R1 Fibration R3
Move R1 Fibration R3
Catastrophe R3 R

59) Simon: Build R1 Homotopy

60) endo: Trade Y3 R3 Fibration

61) Simon: Move R1 Homotopy Endo

62) endo: Build B1 Path

63) Simon: Build B2 Homotopy

64) endo: Build B2 Fibration

65) Simon: Sacrifice Y2 G2
Move R2 Homotopy Endo
Move B2 Homotopy Endo

66) endo: Sacrifice Y2 Fibration
Move B1 Path G2
Move B3 Path G2

67) Simon: Attack B3 G2

	endo: Good game! I let you have all the medium and large red ships, not realizing how dangerous that could become... That said, I was in an uncomfortable position ever since my move 15, when I definitely had to build immediately to avoid the catastrophe, but missed the whole idea. Well played.
	Simon: gg! I didn't feel much ahead until discover r3 r3. But yeah, the game has developed smoothly even before.


28620)
Variants: "Hard time"
Started: 2015.11.24, Ended: 2015.12.10
Participants: wil (S), Simon (N)
Winner: wil

1) Simon: Homeworld B3 R1 G3

2) wil: H Y3 B2 G3

3) Simon: Build G1 Simon

4) wil: B G1 Wil

5) Simon: Trade G1 R1 Simon

6) wil: T G1 R1 Wil

7) Simon: Build R2 Simon

8) wil: B R2 Wil

9) Simon: Trade R2 Y2 Simon
	wil: You must be west coast or Europe
	Simon: Yeah, Germany, with the weird sleeping habits. :-) Awake today since 3 a.m.

10) wil: D R2 Wil Y1 Y1

11) Simon: Discover R1 Simon B2 B2

12) wil: M R2 Y1 B2

13) Simon: Build Y1 Simon

14) wil: A R1 B2

15) Simon: Trade Y2 R2 Simon
	wil: I couldn't make it till 3am...had to head to sleep...

16) wil: T R2 Y2 B2

17) Simon: Discover R2 Simon G2 G2

18) wil: B R2 Wil

19) Simon: Build Y1 Simon

20) wil: D R1 Wil Y1 Y1

21) Simon: Move Y1 Simon G2

22) wil: D R1 Y1 Y3 Y3

23) Simon: Build G1 Simon

24) wil: S G3 Wil
B R2 Y3
B R3 B2
B R3 Wil

25) Simon: Build R3 G2

26) wil: S Y2 B2
M R2 Y3 G2
M R1 Y3 G2
C G2 R

27) Simon: Build Y1 Simon

28) wil: T R3 G3 Wil

29) Simon: Build Y2 G2

30) wil: T R3 Y3 B2

31) Simon: Build Y2 Simon

32) wil: B G1 Wil

33) Simon: Trade Y1 B1 Simon

34) wil: S G3 Wil
B R1 B2
B R2 B2
B R2 Wil

35) Simon: Discover B1 Simon G2 G2a

36) wil: B R3 Wil

37) Simon: Discover G1 Simon B2 B2a

38) wil: D R2 Wil Y1 Y1

39) Simon: Build G1 Simon

40) wil: M R2 Y1 G2

41) Simon: Sacrifice G3 Simon
Build G2 B2a
Build G3 B2a
Build G3 Simon

42) wil: B R3 Wil

43) Simon: Trade G3 R3 B2a

44) wil: D R3 Wil Y1 Y1

45) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y2 Simon
Build Y3 G2

46) wil: B G3 Wil

47) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 B2a
Build B1 G2a
	Simon: You have a wicked preference for the reds and aversion for the yellows.

48) wil: M R3 Y1 G2a

49) Simon: Discover Y2 G2 Y1 Y1

50) wil: A B1 G2a
	wil: I actually prefer fuel reserves

51) Simon: Sacrifice Y1 G2
Move B1 G2a Y1

52) wil: S G3 Wil
B Y1 B2
B G3 Wil
P

53) Simon: Move Y2 Simon B2a

54) wil: M R3 Wil Y1

55) Simon: Sacrifice G3 Simon
Build G3 Simon
Build B1 Y1
Build B3 Y1

56) wil: A B3 Y1

57) Simon: Sacrifice Y2 Y1
Move R3 B2a Y1
Move R3 Y1 G2

58) wil: T R2 Y2 Wil
	wil: I thank you for the pretty blue ship... It looks so sell kept it is as if it camer right from the bank...so thoughtful of you.

59) Simon: Attack R2 G2

60) wil: S G3 Wil
B G3 Wil
B R2 Y1
B B3 G2a

61) Simon: Sacrifice Y2 Simon
Move B1 Y1 G2
Move B1 Y1 G2

62) wil: M R2 Y1 Wil
	wil: Fortress... So named because if you don't create some pawn stars before they are gone...accessed is severely limited..

63) Simon: Sacrifice G1 B2a
Build Y2 G2
	Simon: Many things to do still before homeworld access becomes a problem!

64) wil: D Y2 Wil G1 G1

65) Simon: Move Y3 G2 G1

66) wil: S Y2 G1
M R2 B2 Simon
M R1 B2 Simon

	Simon: gg
	wil: A version of the doomsday machine...built and ready.
	Simon: Yeah. I considered sac y3 and cata y, but then you can trade for a y3 with no substantial delay.


28688)
Variants: "Hard time"
Started: 2015.11.24, Ended: 2015.12.11
Participants: dlwillson (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3
	Simon: Hi, enjoy!

2) dlwillson: H B3 R2 G3

3) Simon: Build G1 Simon

4) dlwillson: Build G1 Dlwillson

5) Simon: Trade G1 Y1 Simon
	dlwillson: You too! Thanks for challenging me and good luck!

6) dlwillson: Trade G1 Y1 Dlwillson

7) Simon: Build G1 Simon

8) dlwillson: Build G1 Dlwillson

9) Simon: Trade G1 R1 Simon

10) dlwillson: T G1 R1 Dlwillson

11) Simon: Build R2 Simon

12) dlwillson: B R2 Dlwillson

13) Simon: Discover R2 Simon B2 B2

14) dlwillson: T R2 Y2 Dlwillson

15) Simon: Sacrifice G3 Simon
Build R2 B2
Build R3 B2
Build R3 Simon

16) dlwillson: Sacrifice Y2 Dlwillson
Discover R1 Dlwillson Y1 Sunny
Move R1 Sunny B2
Catastrophe B2 R

17) Simon: Trade R3 G3 Simon

18) dlwillson: B G1 Dlwillson

19) Simon: Build R1 Simon

20) dlwillson: T G3 R3 Dlwillson

21) Simon: Discover R1 Simon B2 B2

22) dlwillson: B R2 Dlwillson

23) Simon: Sacrifice G3 Simon
Build R2 B2
Build R3 B2
Build R3 Simon

24) dlwillson: D R2 Dlwillson G1 Forest

25) Simon: Trade R2 Y2 B2

26) dlwillson: B R2 Forest

27) Simon: Trade R3 G3 Simon

28) dlwillson: M Y1 Dlwillson Forest

29) Simon: Build R3 Simon

30) dlwillson: D R2 Forest Y2 Sol

31) Simon: Move R3 Simon Sol

32) dlwillson: T R3 G3 Dlwillson
	dlwillson: Sorry. Typo.

33) Simon: Trade R1 G1 B2
	Simon: No problem with undo, it's no dexterity game :-)

34) dlwillson: D R2 Sol Y1 Rigel

35) Simon: Move R3 Sol Forest
	dlwillson: That one wasn't a typo, but I'm down two larges. You'll forgive me. :-)

36) dlwillson: S Y1 Forest
D R2 Forest Y2 Sol

37) Simon: Build G2 Simon

38) dlwillson: T G1 Y1 Dlwillson

39) Simon: Sacrifice G3 Simon
Build Y2 B2
Build Y3 Simon
Build Y3 B2

40) dlwillson: S G3 Dlwillson
B Y3 Dlwillson
B R1 Rigel
B R3 Sol

41) Simon: Move Y3 B2 Rigel

42) dlwillson: T Y1 G1 Dlwillson

43) Simon: Sacrifice R1 Simon
Attack R2 Rigel

44) dlwillson: B G2 Dlwillson

45) Simon: Build R1 Forest

46) dlwillson: D G1 Dlwillson B1 Sky

47) Simon: Build Y1 B2

48) dlwillson: Build G2 Sky

49) Simon: Build G3 B2

50) dlwillson: B G3 Dlwillson

51) Simon: Attack R1 Rigel

52) dlwillson: T G1 B1 Sky

53) Simon: Move R3 B2 Sky

54) dlwillson: S G2 Sky
B B1 Sky
B B2 Sky
C Sky B

55) Simon: Trade G1 B1 B2

56) dlwillson: D G3 Dlwillson B1 Sky

57) Simon: Move Y2 B2 Forest

58) dlwillson: M R2 Sol Sky

59) Simon: Build B1 B2

	dlwillson: Very well done! :-)
	Simon: Thanks for the game! Always happy to play a rematch.


28653)
Variants: "Hard time"
Started: 2015.11.24, Ended: 2015.11.30
Participants: Danielaurence (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3

2) Danielaurence: Homeworld B3 Y2 G3
	Simon: Hi, enjoy the game!
	Danielaurence: Hi there. Thanks, you too!

3) Simon: Build G1 Simon

4) Danielaurence: Build G1 Danielaurence

5) Simon: Trade G1 Y1 Simon

6) Danielaurence: D G1 Danielaurence B1 Gate

7) Simon: Build G1 Simon

8) Danielaurence: B G1 Gate

9) Simon: Build G2 Simon

10) Danielaurence: Build G2 Gate

11) Simon: Trade G2 B2 Simon

12) Danielaurence: Build G2 Danielaurence

13) Simon: Discover B2 Simon R2 R2

14) Danielaurence: T G1 Y1 Gate

15) Simon: Move G1 Simon R2

16) Danielaurence: Discover G2 Gate B2 Door

17) Simon: Build B1 R2

18) Danielaurence: B G1 Door

19) Simon: Trade B2 Y2 R2

20) Danielaurence: Trade G2 R2 Danielaurence

21) Simon: Build G2 Simon

22) Danielaurence: B G2 Danielaurence

23) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 R2
Build Y1 R2

24) Danielaurence: B Y2 Gate

25) Simon: Discover Y2 R2 R1 R1

26) Danielaurence: S Y2 Gate
M G1 Door Simon
M G2 Door Simon
Catastrophe Simon Green

27) Simon: Sacrifice G3 R2
Build Y2 R1
Build Y3 Simon
Build Y3 R2

28) Danielaurence: B Y3 Gate

29) Simon: Trade Y3 G3 R2

30) Danielaurence: T G3 Y3 Danielaurence

31) Simon: Trade Y3 G3 Simon

32) Danielaurence: Trade Y3 G3 Gate

33) Simon: Sacrifice G3 R2
Build Y3 R2
Build Y3 Simon
Build B1 R2

34) Danielaurence: Discover G3 Gate B2 Ice

35) Simon: Build B2 R2
	Danielaurence: I think I'm pretty bad at this :)
	Simon: No problem -- there's no matchmaking system on this server other than "that person sounds like he won't bite my head off, so I'll accept their game offer". I'm happy to play no matter what happens. If you feel like you're learning something new, that's perfectly fine. :-) Always happy about rematches, too.

36) Danielaurence: Build G1 Ice
	Danielaurence: Same here! I am having fun and I am learning, even when I get my butt handed to me, so I'm not complaining. I'll look forward to a rematch!

37) Simon: Sacrifice Y3 Simon
Move Y2 R1 Danielaurence
Move Y2 R1 Danielaurence
Pass
Catastrophe Danielaurence Y

38) Danielaurence: Pass

39) Simon: Sacrifice Y3 R2
Move B1 R2 Danielaurence
Move B1 R2 Danielaurence
Move B2 R2 Danielaurence
Catastrophe Danielaurence B
	Danielaurence: Nicely done!
	Simon: gg -- up for another game whenever you feel like it.



28635)
Variants: "Unrated"
Started: 2015.11.25, Ended: 2015.11.30
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H Y3 B1 G3
	wil: Thx for the game!

2) Felix: Homeworld R3 Y2 G3 *
	wil: Feel free to ask any questions...
	Felix: Okay thanks! I have played a few games of this before offline but I am still learning the ins and outs.

3) wil: B G1 Wil
	wil: Dangerous opening...no blue...but.can be done

4) Felix: Build G1 Felix
	wil: Oops... I have a b1 you need.a b1 to move to...this game may be over fast...
	Felix: Oh... yeah, that could be bad. Oh well, here we go!

5) wil: T G1 B1 Wil

6) Felix: Discover G1 Felix B1 Lasthope

7) wil: B B2 Wil

8) Felix: Build G1 Lasthope

9) wil: D B2 Wil Y2 Y2

10) Felix: B G1 Felix

11) wil: S G3 Wil
B B2 Y2
B B2 Y2
B B3 Wil

12) Felix: Build G2 Lasthope
	wil: If you wish to continue you may...but I will first be trading for g3s then reds, then whys...

13) wil: T B3 G3 Wil

14) Felix: Trade G1 Y1 Lasthope

15) wil: B B3 Wil

16) Felix: B Y1 Lasthope

17) wil: T B3 R3 Wil

18) Felix: T G1 R1 Lasthope

19) wil: B B3 Wil

20) Felix: D Y1 Lasthope G2 Newhope

21) wil: D B2 Y2 G1 G1

22) Felix: Build Y1 Newhope

23) wil: S G3 Wil
B B3 G1
B B3 G1
B R1 Wil
	Felix: Is the "Goldilocks" homeworld setup considered strongest? I have seen most of the top-rated players on here using it almost exclusively.
	wil: It appeara to go banker, goldilocks, fortress...but I like trying fortress... If you are a starship commander, you should allow the lessor player to play banker...which leaves us playing goldilocks and fortress more often...it is decorum.... But once you win a few games...gloves are off!

24) Felix: Build Y2 Newhope
	Felix: Oh, I see. Makes sense! And that's assuming I'll ever win a game :) Perhaps I shall try the banker next time and see if I can get a leg up.

25) wil: M R3 Wil Newhope
	wil: You understand the investment strategy right?  It is what helps.
	Felix: I think I get the principle. Parking g1 ships at large stars and then cashing them in later?

26) Felix: Sacrifice G2 Lasthope
Build Y3 Lasthope
Build Y3 Lasthope
	wil: Exactly...
	wil: I need to fill up my ship with fuel...it will soon be used for a long distance mission.

27) wil: A Y2 Newhope
	Felix: I'll just make some more fuel for you, then. You're welcome to take what you need.

28) Felix: Move Y3 Lasthope Y2
	wil: That was kind of you...especially since it appears fossil fuels are at a premium...thankfully I think that is all that is required
	wil: You have some options... But it is one move to mate as it stands

29) wil: S Y2 Newhope
M B3 G1 Felix
M B3 G1 Felix

30) Felix: Sacrifice Y3 Lasthope
Move Y1 Newhope Wil
Move Y1 Newhope Wil
Move Y3 Y2 Wil
Catastrophe Wil Yellow
	wil: The ole u get 1 I get 2 gambit

31) wil: S R3 Newhope
A G3 Felix
A G1 Felix
P
	Felix: Ah yes, I know it well. And I counter with the ol' desperate last-ditch fuel explosion technique.
	wil: Yes....we were so reliant on fossil fuels we had to leave our homeworld...we saw you had similar issues, reliant on fuel and violence in your stars...we've brought the power and ability to change that....Felix's dark side is no longer..
	Felix: I learned much. Thanks, and I look forward to a rematch!



28695)
Variants: "Hard time"
Started: 2015.11.25, Ended: 2015.12.17
Participants: Felix (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 B3 G3

2) Felix: H B3 G2 Y3
	Simon: Hi, enjoy the game!
	Felix: Thanks, you also!

3) Simon: Build G1 Simon

4) Felix: Build Y1 Felix

5) Simon: Trade G1 Y1 Simon

6) Felix: T Y1 G1 Felix

7) Simon: Build G1 Simon

8) Felix: Discover G1 Felix B1 Fw1

9) Simon: Trade G1 B1 Simon

10) Felix: B G1 Fw1

11) Simon: Discover B1 Simon G2 G2

12) Felix: T G1 B1 Fw1

13) Simon: Build B2 G2

14) Felix: B B2 Fw1

15) Simon: Sacrifice Y1 Simon
Move B1 G2 Fw1
Catastrophe Fw1 B

16) Felix: B Y1 Felix

17) Simon: Build G1 Simon

18) Felix: Trade Y1 G1 Felix

19) Simon: Build B1 G2

20) Felix: Build G1 Felix

21) Simon: Trade B2 Y2 G2

22) Felix: Discover G1 Felix B1 Rappa

23) Simon: Build Y1 G2

24) Felix: Build G2 Rappa

25) Simon: Sacrifice Y1 G2
Discover G1 Simon B2 B2

26) Felix: Trade G2 Y2 Rappa

27) Simon: Build G2 Simon

28) Felix: Build G3 Rappa

29) Simon: Trade G2 Y2 Simon

30) Felix: T G1 B1 Felix

31) Simon: Build B2 G2

32) Felix: Discover B1 Felix G1 Ghost

33) Simon: Build G2 Simon

34) Felix: Trade G3 R3 Rappa

35) Simon: Move B2 G2 Ghost

36) Felix: Move R3 Rappa G2

37) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 B2
Build B2 Ghost

38) Felix: Attack B1 G2

39) Simon: Trade B2 R2 Ghost

40) Felix: Build G3 Rappa

41) Simon: Trade G3 Y3 B2

42) Felix: Attack Y2 G2

43) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 B2
Build B2 Ghost

44) Felix: Sacrifice G3 Rappa
Build G3 Rappa
Build B3 G2
Build R1 G2

45) Simon: Trade G3 Y3 B2

46) Felix: Sacrifice G3 Rappa
Build G3 Rappa
Build Y1 Felix
Build Y1 G2

47) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 B2
Build Y1 Simon

48) Felix: Move B1 G2 Ghost
Catastrophe Ghost Blue

49) Simon: Trade G3 R3 B2

50) Felix: S G3 Rappa
B G3 Rappa
B B1 G2
B B1 G2

51) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 B2
Build R1 Ghost

52) Felix: Sacrifice Y2 G2
Move R1 G2 Rappa
Move R1 Rappa Felix

53) Simon: Move Y3 B2 Ghost

54) Felix: Sacrifice G3 Rappa
Build G3 Rappa
Build Y2 G2
Build R2 Felix

55) Simon: Build R2 B2

56) Felix: Sacrifice Y2 G2
Move B1 G2 Simon
Move B1 G2 Simon

57) Simon: Sacrifice G1 B2
Build Y2 Ghost

58) Felix: Sacrifice G3 Rappa
Build B2 G2
Build B2 Simon
Build R3 G2
Catastrophe Simon Blue

59) Simon: Sacrifice Y3 B2
Move Y3 Ghost Felix
Move R1 Ghost Felix
Move R2 Ghost Felix
Catastrophe Felix R

60) Felix: S R3 G2
A Y3 Felix
Pass
Pass
	Felix: Nice move!

61) Simon: Move Y2 Ghost Felix
Catastrophe Felix Y
	Simon: Thanks, yeah, the game got rather tricky at once. gg
	Felix: Good game! Thanks for playing.



28711)
Variants: "Unrated"
Started: 2015.11.27, Ended: 2015.12.2
Participants: kanzenryu (S), Felix (N)
Winner: Felix

1) Felix: H B3 R2 G3
	Felix: Thanks for the game! I'm still learning the strategies, but it's lots of fun! Hope you have fun

2) kanzenryu: Homeworld Y1 B2 G3

3) Felix: Build G1 Felix
	kanzenryu: Hi there! I'm also a relative beginner. Enjoy the game...

4) kanzenryu: Build G1 Kanzenryu

5) Felix: Trade G1 Y1 Felix

6) kanzenryu: Trade G1 Y1 Kanzenryu

7) Felix: B Y2 Felix

8) kanzenryu: Build Y2 Kanzenryu

9) Felix: D Y2 Felix G1 Loop

10) kanzenryu: Trade Y1 B1 Kanzenryu

11) Felix: Build G1 Felix

12) kanzenryu: Discover B1 Kanzenryu G3 Out

13) Felix: Trade G1 B1 Felix

14) kanzenryu: Build G1 Kanzenryu

15) Felix: B G1 Felix

16) kanzenryu: Build G2 Kanzenryu

17) Felix: Move B1 Felix Loop

18) kanzenryu: Discover G2 Kanzenryu Y3 About

19) Felix: Build Y1 Loop

20) kanzenryu: Sacrifice G3 Kanzenryu
Build G2 Kanzenryu
Build G2 About
Build G3 Kanzenryu

21) Felix: S G3 Felix
B G3 Felix
B Y2 Felix
B Y3 Loop

22) kanzenryu: Move Y2 Kanzenryu Out

23) Felix: S Y3 Loop
Move G1 Felix Loop
M G1 Loop Out
M G1 Out Kanzenryu
Catastrophe Kanzenryu Green
	Felix: Good game! That was a lucky strike for me for sure. I'd love to play again some time!
	kanzenryu: Thanks for the game. I've joined the ladder now so I might be challenging you on that soon.
	Felix: Please do! I look forward to it :)



28724)
Variants: "Hard time"
Started: 2015.11.27, Ended: 2015.12.9
Participants: Felix (S), Ausmuh (N)
Winner: Felix

1) Ausmuh: Homeworld G3 Y1 B3

2) Felix: Homeworld B3 Y2 G3
	Felix: Thanks for the game. Good luck!

3) Ausmuh: Build B1 Ausmuh

4) Felix: B G1 Felix
	Ausmuh: Thanks! Have fun

5) Ausmuh: Trade B1 Y1 Ausmuh

6) Felix: Trade G1 Y1 Felix

7) Ausmuh: Build Y2 Ausmuh

8) Felix: B Y2 Felix

9) Ausmuh: Discover Y1 Ausmuh G2 Mw1

10) Felix: D Y2 Felix G1 Fort



28687)
Variants: "Hard time"
Started: 2015.11.27, Ended: 2015.12.6
Participants: endo (S), kanzenryu (N)
Winner: endo

1) kanzenryu: Homeworld Y1 B2 G3

2) endo: Homeworld B1 Y3 G3
	kanzenryu: Is there any way to rename your homeworld?

3) kanzenryu: Build G1 Kanzenryu
	endo: I don't think there is.

4) endo: Build G1 Endo

5) kanzenryu: Trade G1 B1 Kanzenryu

6) endo: Trade G1 B1 Endo

7) kanzenryu: Build B2 Kanzenryu

8) endo: Build B2 Endo

9) kanzenryu: Discover B2 Kanzenryu G3 Out

10) endo: Trade B2 Y2 Endo

11) kanzenryu: Build G1 Kanzenryu

12) endo: Build Y1 Endo

13) kanzenryu: Trade G1 Y1 Kanzenryu

14) endo: Discover Y1 Endo G2 Hamiltonian

15) kanzenryu: Move Y1 Kanzenryu Out

16) endo: Build Y2 Endo

17) kanzenryu: Build G1 Kanzenryu

18) endo: Discover Y2 Endo G2 Knapsack

19) kanzenryu: Discover G1 Kanzenryu Y3 More

20) endo: Move B1 Endo Hamiltonian

21) kanzenryu: Build G1 Kanzenryu

22) endo: Move Y2 Knapsack More

23) kanzenryu: Build Y2 Out

24) endo: Build Y3 Hamiltonian

25) kanzenryu: Move Y1 Out Hamiltonian

26) endo: Trade Y3 R3 Hamiltonian

27) kanzenryu: Move Y1 Hamiltonian Endo

28) endo: Sacrifice Y2 Endo
Move R3 Hamiltonian Out
Move R3 Out Kanzenryu

	kanzenryu: Of course...


28718)
Variants: "Hard time"
Started: 2015.11.29, Ended: 2015.12.9
Participants: Simon (S), endo (N)
Winner: endo

1) endo: Homeworld R1 B3 G3

2) Simon: Homeworld B1 R2 G3
	endo: Even more homeworlds! Have fun!
	Simon: Yes yes, have fun!

3) endo: Build G1 Endo

4) Simon: Build G1 Simon

5) endo: Trade G1 B1 Endo

6) Simon: Build G1 Simon

7) endo: Build B1 Endo

8) Simon: Trade G1 Y1 Simon

9) endo: Build G1 Endo

10) Simon: Trade G3 B3 Simon

11) endo: Trade B1 Y1 Endo

12) Simon: Build G1 Simon

13) endo: Build G2 Endo

14) Simon: Build G2 Simon

15) endo: Discover G1 Endo B2 Alternating

16) Simon: Discover G2 Simon B3 B3

17) endo: Sacrifice G3 Endo
Build G2 Endo
Build G3 Endo
Build G3 Alternating

18) Simon: Build G3 B3

19) endo: Discover G2 Endo B2 Dihedral

20) Simon: Sacrifice G3 B3
Build G3 B3
Build B1 Simon
Build Y1 Simon

21) endo: Sacrifice G3 Endo
Build G3 Endo
Build B2 Endo
Build Y2 Endo

22) Simon: Move Y1 Simon B3

23) endo: Sacrifice Y2 Endo
Move G1 Alternating B3
Move G2 Dihedral B3
Catastrophe B3 G

24) Simon: Move G1 Simon B3

25) endo: Build Y2 Endo

26) Simon: Build Y2 B3

27) endo: Move Y1 Endo Alternating

28) Simon: Discover B1 Simon G3 G3

29) endo: Trade B1 R1 Endo

30) Simon: Discover Y1 B3 G2 G2

31) endo: Build R1 Endo

32) Simon: Build Y2 Simon

33) endo: Sacrifice G3 Alternating
Build Y3 Endo
Build Y3 Endo
Build Y3 Alternating

34) Simon: Move Y1 G2 Endo
Catastrophe Endo Y

35) endo: Move Y3 Alternating B3

36) Simon: Trade Y2 R2 Simon

37) endo: Sacrifice R1 Endo
Attack Y2 B3

38) Simon: Trade B3 G3 Simon

39) endo: Build R1 Endo

40) Simon: Discover G1 Simon Y3 Y3

41) endo: Sacrifice R1 Endo
Attack G1 B3

42) Simon: Move R2 Simon G3

43) endo: Trade Y3 R3 B3

44) Simon: Build G1 Simon

45) endo: Sacrifice G3 Endo
Build G2 Endo
Build G2 B3
Build G3 Endo

46) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 Simon
Build Y2 Simon

47) endo: Sacrifice Y2 B3
Move G1 B3 Simon
Move G2 B3 Simon
Catastrophe Simon G

	Simon: gg
	endo: Good game.


28710)
Variants: "Unrated"
Started: 2015.11.30, Ended: 2015.12.7
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H B3 Y2 G3

2) Felix: Homeworld B2 R1 G3

3) wil: B G1 Wil
	Felix: Alright, let's try this investment strategy and see how she works....

4) Felix: Build G1 Felix

5) wil: T G1 R1 Wil

6) Felix: Trade G1 Y1 Felix

7) wil: B R1 Wil

8) Felix: Build Y1 Felix
	wil: Rule of thumb...play follow the leader at the beginning...especially with guns..  
	Felix: Got it. Thanks for the tip.

9) wil: B R2 Wil

10) Felix: D Y1 Felix G3 Rubble

11) wil: D R1 Wil B1 B1

12) Felix: B Y1 Rubble

13) wil: S G3 Wil
B R2 B1
B R2 B1
B R3 Wil

14) Felix: Sacrifice G3 Felix
Build Y2 Rubble
Build Y2 Felix
Build Y3 Felix

15) wil: T R3 G3 Wil
	wil: This red yellow game agin

16) Felix: Trade Y3 G3 Felix

17) wil: B R3 Wil
	Felix: Very warm colors indeed!

18) Felix: Discover Y2 Rubble G1 Tilt

19) wil: T R3 Y3 Wil

20) Felix: Build Y3 Tilt

21) wil: B R3 Wil

22) Felix: Sacrifice Y3 Tilt
Move Y1 Rubble Tilt
Move Y2 Tilt Wil
Move Y1 Tilt Wil
Catastrophe Wil Yellow

23) wil: T R3 Y3 Wil

24) Felix: Trade Y1 B1 Felix
	wil: While blowing up half a homeworld feels good...unless the plan is in place to take out the rest it is often trouble

25) wil: B R3 Wil
	Felix: I'm still working on the rest of the plan :)

26) Felix: Build B1 Felix

27) wil: S Y3 Wil
M G3 Wil Felix
M R3 Wil Felix
M R2 B1 Rubble

28) Felix: S Y2 Felix
Pass
Pass

29) wil: S R3 Felix
A G3 Felix
A B1 Felix
A B1 Felix

	wil: Gg
	Felix: You too. I have learned some things, I think.
	wil: I think it takes a dozen gsmes or more to "get it" for the berage joe like me...and a mother couple dozen to feel competent... But after a couple hundred games I get slaughtered by the best...
	Felix: Well... I guess I'm on my way to playing hundreds of games ;) Thanks, and I"m happy to rematch any time.
	wil: I am always up for a challenge... Endo is repeatedly kicking my butt.right now




28731)
Started: 2015.11.30, Ended: 2015.12.15
Participants: kanzenryu (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) kanzenryu: Homeworld Y1 B2 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	kanzenryu: Still loving this game...

4) kanzenryu: Build G1 Kanzenryu
	ts52: That's good to hear. The more players the better!
	kanzenryu: I've joined the ladder. I'll be way down the bottom of it for a long time, I think.

5) ts52: Discover G1 Ts52 B2 Grover

6) kanzenryu: Discover G1 Kanzenryu B3 Out
	ts52: Nice!

7) ts52: Build G1 Ts52
	kanzenryu: Well I can't seem to convince anybody to play with the plastic pyramids

8) kanzenryu: Trade G1 Y1 Out
	kanzenryu: This time I can see some problems in advance. But now all moves look bad...

9) ts52: Trade G1 Y1 Grover

10) kanzenryu: Build G1 Kanzenryu
	ts52: What kind of games do you usually play? I can't get anyone to play with the pyramids much either, though I'm thinking of bringing them out at work again.
	kanzenryu: So far some IceTowers and Caldera. One game of Ice House, one of Zendo. I want to try RAMBots, Zagami and Gnostica.

11) ts52: Move G1 Ts52 Grover

12) kanzenryu: Move G1 Kanzenryu Out
	ts52: Impressive. Gnostica is great, but Zark City is a really nice, lighter alternative.
	kanzenryu: Thanks, might try Zark City next

13) ts52: Build Y2 Grover

14) kanzenryu: Build Y2 Out
	kanzenryu: Have you played Icehouse or Zendo much?

15) ts52: Trade Y2 R2 Grover

16) kanzenryu: Trade Y1 R1 Out
	ts52: I've played icehouse a few times. Even played in an IIT, but it's a tough one to get people to play. There was a time when I was playing Zendo at lunch almost every day. But I haven't played it in quite a while.

17) ts52: Build R1 Grover

18) kanzenryu: Build G1 Kanzenryu

19) ts52: Build G2 Ts52

20) kanzenryu: Build G2 Out

21) ts52: Trade G2 Y2 Ts52

22) kanzenryu: Discover G1 Out Y2 Peep

23) ts52: Build G2 Ts52

24) kanzenryu: Sacrifice G3 Kanzenryu
Build G2 Out
Build G3 Kanzenryu
Build G3 Peep

25) ts52: Discover G2 Ts52 B2 Gonzo

26) kanzenryu: Build R1 Out

27) ts52: Move Y2 Ts52 Gonzo

28) kanzenryu: Trade G1 B1 Kanzenryu

29) ts52: Trade R1 B1 Grover

30) kanzenryu: Move G1 Peep Ts52

31) ts52: Trade G3 R3 Ts52

32) kanzenryu: Build G1 Kanzenryu

33) ts52: Build G3 Grover

34) kanzenryu: Discover B1 Kanzenryu Y3 Moon

35) ts52: Sacrifice G3 Grover
Build G3 Grover
Build Y1 Grover
Build Y3 Gonzo
	ts52: That's no moon.

36) kanzenryu: Move B1 Moon Peep

37) ts52: Discover B1 Grover Y3 Bigbird
	kanzenryu: It was a verb

38) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build B3 Peep
Build R1 Out
	ts52: :)

39) ts52: Sacrifice G3 Grover
Build G3 Grover
Build B3 Bigbird
Build R2 Grover

40) kanzenryu: Move R1 Out Peep

41) ts52: Move G1 Grover Bigbird

42) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build R2 Out
Build R3 Peep

43) ts52: Sacrifice Y3 Gonzo
Move G2 Gonzo Bigbird
Move G2 Bigbird Kanzenryu
Move G1 Bigbird Kanzenryu
Catastrophe Kanzenryu Green
	ts52: Thanks for the game!
	kanzenryu: Thanks, good game



28745)
Variants: "Hard time"
Started: 2015.12.2, Ended: 2015.12.26
Participants: kanzenryu (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 B2 G3

2) kanzenryu: Homeworld B1 Y3 G3
	Simon: More homeworlds, more homeworlds, have fun!

3) Simon: Build G1 Simon
	kanzenryu: Mo 'worlds!

4) kanzenryu: Build G1 Kanzenryu

5) Simon: Trade G1 B1 Simon

6) kanzenryu: Trade G1 B1 Kanzenryu

7) Simon: Build B2 Simon

8) kanzenryu: Build B2 Kanzenryu

9) Simon: Trade B2 Y2 Simon

10) kanzenryu: Discover B2 Kanzenryu G2 Out

11) Simon: Discover B1 Simon G3 G3

12) kanzenryu: Build G1 Kanzenryu

13) Simon: Build G1 Simon

14) kanzenryu: Trade G1 Y1 Kanzenryu

15) Simon: Trade G1 R1 Simon

16) kanzenryu: Trade B1 R1 Kanzenryu

17) Simon: Move R1 Simon G3

18) kanzenryu: Move Y1 Kanzenryu Out

19) Simon: Build R2 G3

20) kanzenryu: Build G1 Kanzenryu

21) Simon: Trade R2 Y2 G3

22) kanzenryu: Build Y1 Out

23) Simon: Build R2 G3

24) kanzenryu: Build R2 Kanzenryu

25) Simon: Discover R1 G3 G2 G2

26) kanzenryu: Move R2 Kanzenryu Out

27) Simon: Build Y1 G3

28) kanzenryu: Discover Y1 Out B3 Peep

29) Simon: Move Y2 G3 G2

30) kanzenryu: Build B1 Out

31) Simon: Sacrifice G3 Simon
Build Y2 G2
Build Y3 G3
Build Y3 Simon

32) kanzenryu: Move R2 Out Peep

33) Simon: Trade Y2 G2 Simon

34) kanzenryu: Build Y2 Out

35) Simon: Build G1 Simon

36) kanzenryu: Move B1 Out Peep

37) Simon: Discover Y1 G3 G1 G1

38) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build R2 Kanzenryu
Build R3 Peep

39) Simon: Discover G2 Simon R3 R3

40) kanzenryu: Discover B2 Out G3 Soon

41) Simon: Build R3 G2

42) kanzenryu: Build B2 Soon

43) Simon: Build B3 G3

44) kanzenryu: Move B1 Peep Simon

45) Simon: Move B3 G3 Out

46) kanzenryu: Sacrifice Y2 Out
Move B2 Soon Simon
Move B2 Soon Simon
Catastrophe Simon B

47) Simon: Sacrifice G2 R3
Build B1 Out
Build B2 Out

48) kanzenryu: Discover R2 Kanzenryu Y2 Run

49) Simon: Sacrifice Y3 G3
Move B1 Out Kanzenryu
Move B2 Out Kanzenryu
Move B3 Out Kanzenryu
Catastrophe Kanzenryu B

50) kanzenryu: Build Y3 Out

51) Simon: Sacrifice Y3 Simon
Move Y1 G1 Kanzenryu
Move Y2 G2 Kanzenryu
Move Y2 G2 Kanzenryu
Catastrophe Kanzenryu Y
	Simon: This game was considerably harder than any of our earlier games -- I believe made a few weak moves myself along the way, and don't have much left over by now. Never get discouraged, I feel you're getting the hang of it :)
	kanzenryu: I'm still enjoying it; thanks for the game.



28634)
Variants: "Hard time"
Started: 2015.12.4, Ended: 2015.12.7
Participants: SilentTitan (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3



28751)
Variants: "Unrated"
Started: 2015.12.4, Ended: 2015.12.10
Participants: Tamiel (S), Felix (N)
Winner: Tamiel

1) Felix: H B3 R2 G3

2) Tamiel: Homeworld Y3 B1 G3
	Felix: Hi, thanks for the challenge! Have you played this before? Let me know if you have any questions.

3) Felix: B G1 Felix
	Tamiel: Thank you. This is my first game.
	Felix: Alright, good luck! I'm happy to help answer any questions you have about it

4) Tamiel: Build G1 Tamiel

5) Felix: T G1 Y1 Felix

6) Tamiel: Build G1 Tamiel

7) Felix: Build G1 Felix

8) Tamiel: Discover G1 Tamiel B2 Gliesse1

9) Felix: Discover G1 Felix B1 Gate

10) Tamiel: Build G2 Gliesse1

11) Felix: B G2 Gate

12) Tamiel: Trade G2 Y2 Gliesse1

13) Felix: Build G2 Felix

14) Tamiel: Sacrifice G3 Tamiel
Build G2 Tamiel
Build G3 Tamiel
Build G3 Gliesse1

15) Felix: Trade G2 Y2 Gate

16) Tamiel: Trade G2 R2 Tamiel

17) Felix: Trade G2 R2 Felix

18) Tamiel: Move G1 Gliesse1 Gate

19) Felix: Build G2 Felix

20) Tamiel: Build G2 Gliesse1

21) Felix: Discover G1 Gate B2 Door

22) Tamiel: Move R2 Tamiel Door

23) Felix: B G2 Door

24) Tamiel: Attack G2N Door

25) Felix: Sacrifice G3 Felix
Build G3 Door
Build Y1 Gate
Build Y1 Felix

26) Tamiel: Attack G1N Door

27) Felix: Sacrifice R2 Felix
Attack R2 Door
Attack G2 Door

28) Tamiel: Sacrifice Y2 Gliesse1
Move G1 Gate Door
Move G3 Gliesse1 Gate
Catastrophe Door G

29) Felix: Trade Y1 B1 Gate
	Felix: Are you sure this is your first game? :)

30) Tamiel: Trade G2 R2 Gliesse1

31) Felix: B G1 Felix
	Tamiel: beginner's luck :-)

32) Tamiel: Trade G1 R1 Tamiel

33) Felix: M G1 Felix Gate

34) Tamiel: Sacrifice R2 Gliesse1
Attack Y2N Gate
Attack B1N Gate

35) Felix: Sacrifice G2 Felix
Build G1 Gate
Build G1 Gate
Catastrophe Gate Green

36) Tamiel: Move Y2 Gate Felix

37) Felix: Sacrifice Y1 Felix
Pass

38) Tamiel: Sacrifice G3 Tamiel
Build Y1 Felix
Build Y1 Felix
Build Y2 Felix
Catastrophe Felix Y
	Felix: Well done! I'd be happy to rematch any time.
	Tamiel: Good game. Looking forward to the next one.



28818)
Variants: "Hard time"
Started: 2015.12.7, Ended: 2015.12.10
Participants: endo (S), wil (N)
Winner: endo

1) wil: H R2 B1 G3

2) endo: Homeworld B1 G3 B3 *

3) wil: B G1 Wil

4) endo: Build B1 Endo
	wil: Cool...I've played that game... Not so successfully..

5) wil: T G1 Y1 Wil
	endo: I saw TwoShort crush Simon with this opening in a ladder match and got inspired... Oh, what kind of tourney did you have in mind? I'll gladly play in an online one, but might not make it to a physical one if it's in the US since I live in Europe.

6) endo: Trade B3 Y3 Endo
	wil: Investigating the online tourneys here..
	wil: I may have played that backwards
	wil: I may have played that backwards

7) wil: B G1 Wil

8) endo: Build B2 Endo
	wil: Yeah.. I did

9) wil: T G3 B3 Wil

10) endo: Discover B1 Endo G2 Hod
	wil: Yes...another short game

11) wil: B B2 Wil

12) endo: Sacrifice Y3 Endo
Discover B1 Hod R3 V_omega
Move B1 V_omega Wil
Pass
Catastrophe Wil B

13) wil: B G1 Wil
	wil: I wondered
	wil: I wondered

14) endo: Build B1 Endo

15) wil: D G1 Wil B3 B3

16) endo: Trade B1 R1 Endo

17) wil: B G1 B3
	wil: I dont think I stand a chance here..

18) endo: Build B1 Endo

19) wil: B G2 B3
	endo: Yeah, might be over soonish, given that I can simply build enough red at my homeworld and invade...

20) endo: Trade B2 Y2 Endo
	wil: Zackly

21) wil: B G2 Wil

22) endo: Build R1 Endo

23) wil: T G2 Y2 B3
	endo: Yup, I believe the second catastrophe is unstoppable now...

24) endo: Build R1 Endo
	wil: You are correct

25) wil: M Y1 Wil Endo

26) endo: Attack Y1 Endo

	wil: The sooner I can rechallenge and be abused agin!


28846)
Variants: "Hard time"
Started: 2015.12.9, Ended: 2016.1.7
Participants: Felix (S), sompm (N)
Winner: Felix

1) sompm: Homeworld Y3 B1 G3

2) Felix: H B3 Y2 G3
	Felix: Thanks for the game. Good luck!

3) sompm: Build G1 Sompm
	sompm: To you too! I'm still climbing through all of the inactives as well.

4) Felix: B G1 Felix
	Felix: Yeah... It's hard to get anyone to accept around here!

5) sompm: Discover G1 Sompm B2 Hoth

6) Felix: Discover G1 Felix B1 Wampa

7) sompm: Build G1 Hoth

8) Felix: B G2 Wampa

9) sompm: Build G2 Hoth

10) Felix: T G1 Y1 Wampa

11) sompm: Trade G2 Y2 Hoth

12) Felix: Build G1 Felix

13) sompm: Build G2 Sompm

14) Felix: Sacrifice G3 Felix
Build G2 Wampa
Build G3 Felix
Build Y1 Wampa

15) sompm: Sacrifice G3 Sompm
Build G3 Sompm
Build G3 Sompm
Build Y1 Hoth

16) Felix: Discover Y1 Wampa B2 Gate



28753)
Variants: "Unrated"
Started: 2015.12.10, Ended: 2015.12.13
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y1 G3

2) wil: H B3 Y2 G3

3) Felix: Build G1 Felix

4) wil: B G1 Wil

5) Felix: Trade G1 B1 Felix

6) wil: T G1 Y1 Wil

7) Felix: Trade B1 Y1 Felix
	wil: Next trick...start with a pawn stack less than three... I just took over the early advantage..

8) wil: B Y2 Wil
	Felix: Good tip. I see that now. I seem to have wasted a turn, but thanks for helping me learn!
	wil: No worries... See how I did it after... Allowing you to experience the full effect if your error...I am so thoughtful!  And modest

9) Felix: Build Y2 Felix

10) wil: D Y1 Wil G1 G1
	Felix: And cruel :)

11) Felix: Discover Y1 Felix G2 Pickle
	wil: There is no way I wouldn't allow you the full repercussions of your ways.

12) wil: B Y3 G1

13) Felix: Build Y3 Pickle

14) wil: D Y1 G1 G2 G2

15) Felix: Move Y3 Pickle G1

16) wil: B Y3 G2

17) Felix: T Y2 R2 Felix

18) wil: B Y2 G1

19) Felix: Move Y3 G1 Wil

20) wil: M Y2 G1 Wil
C Wil Y
	Felix: This is either stupid or brilliant, probably the first.
	wil: Yeah..I was blinded

21) Felix: Build Y2 Pickle
	wil: Your red move was on target..our mutually agreed suicide...we'll see.

22) wil: B G1 Wil
	Felix: Eh, it was fun anyway :)

23) Felix: Sacrifice Y2 Pickle
Move G3 Felix Pickle
Move G3 Pickle Wil

24) wil: M Y3 G1 Wil

25) Felix: T G3 R3 Wil
	wil: Yes it is fun...no two matches ever alike.

26) wil: M Y3 G2 Felix
	Felix: I love that about this game. Also... I'm just a loose cannon right now.
	wil: It is working
	wil: I think you've won this

27) Felix: Attack G3 Wil

28) wil: T Y3 R3 Felix
	Felix: Perhaps... But I don't know if I have the skills to finish the job!
	wil: I think you just did

29) Felix: S R3 Wil
A Y3 Wil
A G1 Wil
Pass
	Felix: Good game! I doubt I'll be so lucky next time :)
	wil: Well played



28811)
Variants: "Unrated"
Started: 2015.12.10, Ended: 2015.12.18
Participants: Tamiel (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3

2) Tamiel: Homeworld Y1 B2 G3

3) Felix: Build G1 Felix

4) Tamiel: Build G1 Tamiel
	Felix: Good luck! I enjoy playing against you because the other players on here utterly destroy me, but I think you are a bit closer to my skill level, if still a  bit better :)

5) Felix: T G1 Y1 Felix

6) Tamiel: Build G1 Tamiel

7) Felix: Build Y1 Felix
	Tamiel: I think I was probably lucky the last game. You started with a red star in your homesystem and from what I've read that's harder to play, at least for beginners.
	Felix: Yeah, that's what I have heard, too. I like trying different strategies to experience for myself what works and what doesn't, and why. I've also heard that starting with a small and medium home star (the banker) is usually a bit stronger :)

8) Tamiel: Trade G3 Y3 Tamiel
	Felix: I am definitely still learning how to develop strategies in this. Hopefully you will learn some things too!

9) Felix: Discover Y1 Felix G1 Pickle

10) Tamiel: Discover G1 Tamiel B3 Gliesse1

11) Felix: B Y2 Pickle

12) Tamiel: Build G2 Gliesse1

13) Felix: B G2 Felix

14) Tamiel: Trade G2 Y2 Gliesse1

15) Felix: Move Y2 Pickle Gliesse1

16) Tamiel: Build Y3 Gliesse1

17) Felix: Build Y3 Pickle

18) Tamiel: Sacrifice Y3 Tamiel
Move Y2 Gliesse1 Pickle
Move Y3 Gliesse1 Pickle
Pass
Catastrophe Pickle Y

19) Felix: Move Y2 Gliesse1 Tamiel
	Felix: Woah. Bold move! But I think it leaves you pretty vulnerable because now you don't have a large ship, and I can come into your home system and take it over in a few moves, I think. Do you want to take it back?
	Tamiel: No, I don't take back the move. Thank you. I was in a bad position and I think this move might give me some (not much) fighting chance.  

	Tamiel: And that's that. :-) You win. Good game. I'll start a new challenge sometime at the beginning of Jan; until then I'm not sure about the internet connection since I'll be traveling around. You are more than welcome to join that the challenge.
	Felix: Good game! I had fun. I am definitely happy to play again any time. I will look for you challenge in January!


28799)
Started: 2015.12.10, Ended: 2015.12.21
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) Felix: Homeworld G3 Y2 B3

3) ts52: Build G1 Ts52

4) Felix: B B1 Felix
	Felix: Have fun!

5) ts52: Trade G1 B1 Ts52
	ts52: Thanks! You too.

6) Felix: B B2 Felix

7) ts52: Build B2 Ts52

8) Felix: Discover B2 Felix G1 Pickle

9) ts52: Discover B2 Ts52 G2 Robin

10) Felix: Build B2 Pickle

11) ts52: Build B3 Robin

12) Felix: Build B3 Pickle

13) ts52: Trade B3 Y3 Robin
	Felix: I'm feeling blue.

14) Felix: Trade B2 Y2 Pickle

15) ts52: Build G1 Ts52

16) Felix: T B3 R3 Felix

17) ts52: Trade B1 R1 Ts52

18) Felix: Trade B3 G3 Pickle

19) ts52: Discover G1 Ts52 B2 Gonzo

20) Felix: Build R1 Felix

21) ts52: Build Y1 Robin

22) Felix: Build Y1 Pickle

23) ts52: Build G1 Ts52

24) Felix: Build B1 Felix

25) ts52: Build B3 Robin

26) Felix: Build B3 Pickle

27) ts52: Discover B3 Robin Y1 Bigbird

28) Felix: Move B1 Felix Bigbird
	Felix: Do you like the muppets? :)

29) ts52: Trade B3 R3 Bigbird
	ts52: I do. Honestly I'm not sure how it started, but at one point I started naming my systems after sesame street characters and muppets, and I've just kept it up.

30) Felix: Build B3 Felix

31) ts52: Build B3 Robin
	Felix: Nice! I often struggle with a good naming system for my own stars :)
	Felix: They end up with very random names...

32) Felix: S Y2 Pickle
M B1 Bigbird Robin
M B2 Pickle Robin
Catastrophe Robin Blue

33) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G2 Gonzo
Build G3 Ts52

34) Felix: Discover G3 Pickle B2 Ice

35) ts52: Trade G2 Y2 Gonzo

36) Felix: Build G2 Ice

37) ts52: Discover Y3 Robin R1 Elmo

38) Felix: Trade B3 Y3 Felix

39) ts52: Trade G3 R3 Ts52

40) Felix: S G3 Ice
B B1 Felix
B Y2 Pickle
B G3 Ice

41) ts52: Build G3 Gonzo

42) Felix: Sacrifice G3 Ice
Build G3 Ice
Build B2 Felix
Build B3 Pickle

43) ts52: Trade G3 B3 Gonzo

44) Felix: M B3 Pickle Robin

45) ts52: Build G3 Gonzo

46) Felix: S R1 Felix
A Y1 Robin

47) ts52: Move B3 Gonzo Bigbird

48) Felix: M Y1 Pickle Robin

49) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build R1 Bigbird
Build R2 Bigbird

50) Felix: Move Y1 Robin Ts52

51) ts52: Attack Y1 Ts52

52) Felix: S Y3 Felix
M Y2 Pickle Robin
M Y2 Robin Ts52
M Y1 Robin Ts52
Catastrophe Ts52 Yellow

53) ts52: Sacrifice Y3 Elmo
Move R1 Bigbird Felix
Move R2 Bigbird Felix
Move R3 Bigbird Felix
Catastrophe Felix Red

54) Felix: T B1 R1 Felix

55) ts52: Sacrifice Y2 Gonzo
Move G3 Gonzo Bigbird
Move G3 Bigbird Felix
	Felix: I think I miscalculated my attack...

56) Felix: Sacrifice G3 Ice
Build G3 Ice
Build R1 Felix
Build R2 Felix

57) ts52: Sacrifice R3 Ts52
Attack R1 Felix
Attack R1 Felix
Attack R2 Felix
	Felix: Yep... definitely miscalculated.

58) Felix: T B2 R2 Felix
Catastrophe Felix Red
	ts52: It's never over 'till it's over.

59) ts52: Sacrifice R1 Ts52
Attack B1 Felix
	Felix: I think it's over. Well played! I thought I had you for a moment
	ts52: And now it's over. ;) Thanks for the game!
	ts52: I was starting to get a bit anxious. It was definitely close for a moment there.



28794)
Variants: "Hard time"
Started: 2015.12.10, Ended: 2015.12.19
Participants: SilentTitan (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3

2) SilentTitan: Homeworld R1 B2 G3

3) Felix: Build G1 Felix
	Felix: Thanks for playing. Good luck!

4) SilentTitan: Build G1 Silenttitan

5) Felix: Trade G1 R1 Felix

6) SilentTitan: Trade G1 R1 Silenttitan

7) Felix: B R2 Felix

8) SilentTitan: Build G1 Silenttitan

9) Felix: Build R2 Felix



28689)
Variants: "Hard time"
Started: 2015.12.11, Ended: 2016.1.13
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: H B3 Y1 G3
	wil: Gl

2) Simon: Homeworld R1 B2 G3
	Simon: Have fun!

3) wil: B G1 Wil
	wil: If you insist...

4) Simon: Build G1 Simon

5) wil: T G1 B1 Wil

6) Simon: Trade G1 B1 Simon

7) wil: B G1 Wil

8) Simon: Build G1 Simon

9) wil: T G1 R1 Wil

10) Simon: Trade G1 Y1 Simon

11) wil: B R1 Wil

12) Simon: Build Y1 Simon

13) wil: B R2 Wil

14) Simon: Discover Y1 Simon G3 G3

15) wil: D R2 Wil Y2 Y2

16) Simon: Build Y2 Simon

17) wil: M R2 Y2 G3
	wil: Lol what was I thinking
	wil: Lol what was I thinking
	wil: Now I remember

18) Simon: Discover Y1 G3 B2 B2

19) wil: B R2 Wil

20) Simon: Trade Y2 R2 Simon

21) wil: T R2 Y2 Wil

22) Simon: Discover R2 Simon B3 B3

23) wil: D R1 Wil B2 Betwo

24) Simon: Sacrifice G3 Simon
Build Y2 B2
Build Y2 B2
Build Y3 Simon

25) wil: M Y2 Wil B2
C B2 Y

26) Simon: Trade Y3 G3 Simon

27) wil: S G3 Wil
B R2 Wil
B R3 Wil
B R3 Betwo

28) Simon: Sacrifice G3 Simon
Build R3 B3
Build Y1 Simon
Build Y2 Simon

29) wil: T R2 Y2 Wil
	wil: The tables can turn fast and furious

30) Simon: Sacrifice Y2 Simon
Move R3 B3 Simon
Discover Y1 Simon G3 G3a

31) wil: T R3 G3 Betwo

32) Simon: Build Y2 G3a

33) wil: M Y2 Wil Betwo

34) Simon: Discover Y2 G3a G2 G2

35) wil: S G3 Betwo
B B1 Wil
B R2 G3
B R3 Betwo

36) Simon: Trade R3 G3 Simon

37) wil: T R3 Y3 Betwo

38) Simon: Sacrifice G3 Simon
Build Y2 G2
Build Y3 Simon
Build R3 B3

39) wil: T Y2 G2 Betwo

40) Simon: Trade R3 G3 B3

41) wil: B R3 Betwo

42) Simon: Build R3 B3

43) wil: T R3 Y3 Betwo

44) Simon: Move B1 Simon G3a

45) wil: T B1 G1 Wil

46) Simon: Build Y2 G3a

47) wil: B R3 Betwo

48) Simon: Move Y1 Simon B3

49) wil: T R3 B3 Betwo

50) Simon: Move R3 B3 G2

51) wil: B R3 Betwo

52) Simon: Sacrifice Y2 G3a
Move Y1 G3a Betwo
Move Y1 B3 Betwo
Catastrophe Betwo Y

53) wil: T R1 Y1 Betwo

54) Simon: Build R1 G2

55) wil: B Y1 Betwo

56) Simon: Move Y2 G2 B3

57) wil: M Y1 Betwo G3

58) Simon: Sacrifice G3 B3
Build Y2 Simon
Build Y3 B3
Build Y3 G2

59) wil: T R3 G3 Wil

60) Simon: Build B1 G3a

61) wil: D B1 Wil G2 Geetwo

62) Simon: Sacrifice Y2 G2
Move B1 G3a Betwo
Move B1 G3a Betwo
Catastrophe Betwo B

63) wil: D G1 Wil Y2 Y2

64) Simon: Trade Y2 G2 B3
	wil: It is so over

65) wil: B R3 Wil
	Simon: I feel like your opening is much stronger than mine all the time, but then you somehow lose grip on all the goodies >_>

66) Simon: Build R3 B3
	wil: I shoot from the hip and don't take enough consideration on moves...

67) wil: T R3 G3 Wil

68) Simon: Move R3 B3 Geetwo

69) wil: B R3 Wil

70) Simon: Attack B1 Geetwo

71) wil: T G3 B3 Wil

72) Simon: Build B1 Geetwo

73) wil: M B3 Wil Y2

74) Simon: Build B1 Geetwo

75) wil: M R1 Wil G2

76) Simon: Build Y1 B3

77) wil: B Y2 G3

78) Simon: Move G2 B3 Simon

79) wil: M R2 G3 G2
C G2 R

80) Simon: Discover Y2 Simon R3 R3

81) wil: B B2 Y2

82) Simon: Sacrifice Y3 G2
Move B1 Geetwo Wil
Move B1 Geetwo Wil
Move B1 Geetwo Wil
Catastrophe Wil B

83) wil: T B3 Y3 Y2

84) Simon: Sacrifice Y3 Simon
Move Y3 B3 Wil
Move Y1 B3 Wil
Move Y2 R3 Wil
Catastrophe Wil Y



28868)
Variants: "Hard time"
Started: 2015.12.12, Ended: 2015.12.15
Participants: endo (S), Simon (N)
Winner: endo



28872)
Variants: "Hard time"
Started: 2015.12.12, Ended: 2016.1.31
Participants: MagicJohn (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 R1 G3

2) MagicJohn: Homeworld G1 B2 B3 *
	MagicJohn: I'm puzzled. I am trying to set up my homeworld move and the computer keeps telling me that there are no B3s left in the stash.... ??? Reason?

3) ajo: Build G1 Ajo

4) MagicJohn: Build B1 Magicjohn
	ajo: Could you have been trying to do "homeworld b3 b3 b3"? That would do it. ;P  I'm interested to see how you do with only two colors in your home system. I would think of that as a disadvantage... but we'll see. :)
	MagicJohn: I needed to leave a space between the "homeworld" directions and the "*" that the game requires to indicate that I knew I was only requesting two colors....

5) ajo: Build G1 Ajo

6) MagicJohn: Trade B1 Y1 Magicjohn

7) ajo: Trade G3 Y3 Ajo

8) MagicJohn: Build B1 Magicjohn

9) ajo: Build G2 Ajo

10) MagicJohn: Discover B1 Magicjohn G3 Outpost

11) ajo: Discover G2 Ajo B2 Alpha

12) MagicJohn: Build B1 Outpost

13) ajo: Build G2 Alpha

14) MagicJohn: Build B1 Magicjohn

15) ajo: Trade G2 Y2 Alpha

16) MagicJohn: Trade B3 R3 Magicjohn

17) ajo: Build G2 Alpha

18) MagicJohn: Build B2 Outpost

19) ajo: Trade G2 R2 Alpha

20) MagicJohn: Build B3 Magicjohn

21) ajo: Build G2 Alpha

22) MagicJohn: Trade B2 R2 Outpost

23) ajo: Trade G2 B2 Alpha

24) MagicJohn: Trade B3 G3 Magicjohn

25) ajo: Discover B2 Alpha G3 Beta

26) MagicJohn: Sacrifice Y1 Magicjohn
Discover B1 Outpost Y2 Toolies

27) ajo: Build B3 Beta

28) MagicJohn: Build B3 Outpost

29) ajo: Trade B3 Y3 Beta

30) MagicJohn: Sacrifice G3 Magicjohn
Build B3 Toolies
Build R1 Magicjohn
Build R1 Outpost

31) ajo: Build R2 Alpha

32) MagicJohn: Trade R1 Y1 Magicjohn

33) ajo: Move R2 Alpha Beta

34) MagicJohn: Build Y1 Magicjohn

35) ajo: Build R1 Beta

36) MagicJohn: Discover B1 Toolies Y1 Outback

37) ajo: Build Y2 Beta

38) MagicJohn: Trade R2 G2 Outpost

39) ajo: Build Y3 Alpha

	MagicJohn: Sorry - wife is ill and my time priorities are there just now...


28859)
Variants: "Unrated"
Started: 2015.12.14, Ended: 2015.12.17
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) Felix: Homeworld G3 B2 Y3
	wil: I'll try for 17 moves this time!
	Felix: Including my moves? :) What's the fastest you've ever won?

3) wil: B G1 Wil
	wil: One move is both sides moving... I've no clue...average games are 20-25...
	wil: I think I've been beat in ten

4) Felix: Build Y1 Felix
	wil: You just kicked my butt in 15... I'm gonna last at least 17 with this go around

5) wil: T G1 Y1 Wil
	Felix: I wouldn't say I kicked your butt. It was really close! Looking over the last game, I see where I think you could have turned the tables back on me on turn 12
	Felix: If you had traded your g3 for an r3 in your home system, I don't know if I could have overcome you, since I couldn't sacrifice my r2 at home. I may eventually have, but it would have been very tough.
	Felix: Good luck on 17 :) I'm just hoping I don't get beat in 10!

6) Felix: Discover Y1 Felix G1 Olive

7) wil: B Y2 Wil

8) Felix: Build Y2 Olive

9) wil: T Y1 R1 Wil

10) Felix: Build Y1 Felix

11) wil: D Y2 Wil G2 G2

12) Felix: Trade Y1 R1 Felix

13) wil: B G1 Wil

14) Felix: Discover Y2 Olive B2 Grape

15) wil: B G1 Wil

16) Felix: Trade Y2 G2 Grape

17) wil: D G1 Wil B2 B2

18) Felix: M Y1 Olive Grape

19) wil: T G1 B1 Wil

20) Felix: Build G1 Grape

21) wil: B B1 Wil

22) Felix: Discover G1 Grape Y3 Banana

23) wil: B G1 Wil

24) Felix: Build G2 Grape

25) wil: B G3 B2

26) Felix: Build Y1 Grape

27) wil: M B1 Wil G2

28) Felix: Sacrifice G2 Grape
Build Y2 Grape
Build Y2 Felix

29) wil: B Y3 G2

30) Felix: Trade Y1 B1 Grape

31) wil: M B1 Wil Grape

32) Felix: Move B1 Grape Wil

33) wil: A B1 Wil

34) Felix: Build G2 Grape
	wil: We thank you for the peace offering of the trade.ship... She is a little.small but quite nice.

35) wil: S G3 Wil
B G3 Wil
B B3 Wil
B B3 Grape

36) Felix: Sacrifice Y2 Grape
Move G2 Grape Wil
Move G2 Grape Wil
Catastrophe Wil Green
	Felix: ...uh oh.
	Felix: I think I'm learning that having green in your home system is a liability...

37) wil: T B3 G3 Wil
	wil: Yez, harder to create a factory

38) Felix: Trade Y3 B3 Felix
	wil: And I now have a queen factory so will be casually swooping up all the big guys

39) wil: T B3 Y3 Grape
	wil: Now that want nice

40) Felix: Build G1 Banana
	wil: Wasn't

41) wil: B B3 G2
	Felix: I'm a fish out of water, flailing and gasping.

42) Felix: Sacrifice R1 Felix
Attack B1 Grape

43) wil: S Y2 G2
D G3 B2 R1 R1
M G3 R1 Felix

44) Felix: Sacrifice Y2 Felix
Pass
Pass
	wil: Uh oh... Not a game for unarmed pacifists..

45) wil: S R1 Wil
A B3 Felix
	wil: 23 moves...about average... I have gone over 40...but those were games I lost and just kept running and playing mosquito hoping for a mistake



28878)
Variants: "Unrated"
Started: 2015.12.14, Ended: 2015.12.30
Participants: kanzenryu (S), Felix (N)
Winner: kanzenryu

1) Felix: H B3 R2 G3

2) kanzenryu: Homeworld B1 Y2 G3

3) Felix: B G1 Felix
	kanzenryu: More fun ahoy!

4) kanzenryu: Build G1 Kanzenryu
	Felix: Indeed! Here we go! Good luck to you, fleet commander!

5) Felix: T G1 Y1 Felix
	kanzenryu: Fleet? What fleet? And certainly not near the Neutral Zone.
	Felix: Oh! Er.... I mean, of course I would never think of breaking the treaty! What are you even talking about? We are a peaceful people. Don't let this bright red war star fool you...

6) kanzenryu: Trade G1 Y1 Kanzenryu

7) Felix: B G1 Felix

8) kanzenryu: Build G1 Kanzenryu

9) Felix: Discover G1 Felix B1 Ice

10) kanzenryu: Discover Y1 Kanzenryu G3 Moon

11) Felix: Build G1 Felix

12) kanzenryu: Trade G1 B1 Kanzenryu

13) Felix: B G1 Ice

14) kanzenryu: Build G2 Kanzenryu

15) Felix: Build G2 Ice

16) kanzenryu: Sacrifice G3 Kanzenryu
Build G2 Kanzenryu
Build G3 Kanzenryu
Build B2 Kanzenryu

17) Felix: T G1 R1 Ice

18) kanzenryu: Trade B2 R2 Kanzenryu

19) Felix: Trade G1 Y1 Ice

20) kanzenryu: Discover G2 Kanzenryu Y3 Party

21) Felix: Build Y2 Ice

22) kanzenryu: Move B1 Kanzenryu Party

23) Felix: T Y2 B2 Ice

24) kanzenryu: Build Y2 Moon

25) Felix: B Y2 Felix

26) kanzenryu: Build B2 Party

27) Felix: Build Y3 Ice

28) kanzenryu: Discover Y1 Moon G1 Soon

29) Felix: Move Y1 Felix Soon

30) kanzenryu: Build Y3 Moon

31) Felix: B R1 Ice

32) kanzenryu: Sacrifice G3 Kanzenryu
Build G1 Party
Build R1 Kanzenryu
Build G3 Kanzenryu

33) Felix: Move Y3 Ice Party

34) kanzenryu: Sacrifice Y2 Moon
Move B1 Party Ice
Move B2 Party Ice
Catastrophe Ice B

35) Felix: Trade G1 R1 Felix
	kanzenryu: Party Ice

36) kanzenryu: Discover G2 Party Y1 Brink

37) Felix: Build Y2 Felix

38) kanzenryu: Discover G1 Party B1 Peep

39) Felix: Sacrifice R1 Felix
Attack Y1 Soon

40) kanzenryu: Move R1 Kanzenryu Moon

41) Felix: T Y2 R2 Felix

42) kanzenryu: Sacrifice G3 Kanzenryu
Build G1 Brink
Build G2 Peep
Build G3 Kanzenryu

43) Felix: B Y2 Felix

44) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build R1 Moon
Build R1 Kanzenryu

45) Felix: M Y3 Party Peep

46) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build R3 Kanzenryu
Build Y3 Moon

47) Felix: S Y2 Felix
M Y1 Soon Moon
M Y1 Soon Moon
Catastrophe Moon Yellow

48) kanzenryu: Discover R3 Kanzenryu Y3 More
	kanzenryu: Very easy to make a typo in this game...

49) Felix: M R2 Felix Peep
	Felix: Indeed, indeed... Your factory is really giving you an edge in this one!

50) kanzenryu: Sacrifice R1 Moon
Attack R2 Peep

51) Felix: Trade G3 R3 Felix

52) kanzenryu: Sacrifice G3 Kanzenryu
Build G1 Peep
Build G3 Brink
Build G3 Kanzenryu

53) Felix: S R3 Felix
A R2 Peep
A G2 Peep
A G1 Peep

54) kanzenryu: Move G3 Brink Felix

55) Felix: B Y1 Peep

56) kanzenryu: Sacrifice R1 Kanzenryu
Attack Y2 Felix

	Felix: Got me again. Good game!
	kanzenryu: If you don't mind I'd like to do a ladder challenge after this since every other person above me on the ladder declined.
	Felix: I'm game! I think I'm in a ladder challenge with someone else right now so challenge me when that's over. I will let you know.


28728)
Variants: "Hard time"
Started: 2015.12.15, Ended: 2015.12.17
Participants: endo (S), Felix (N)
Winner: endo

1) Felix: Homeworld G2 R1 B3
	Felix: Intermediate player here. I've reviewed some of your games and I'm impressed with your techniques! Hoping I can learn a thing or two by playing against you, and I hope I provide enough of a challenge for you to at least be entertained :) Have fun!

2) endo: Homeworld Y1 B3 G3

3) Felix: Build B1 Felix

4) endo: Build G1 Endo
	endo: Hey, thanks :) I enjoy playing against all levels of Homeworlds players. If any questions come into your mind, don't be afraid to ask! Good luck, have fun!

5) Felix: Trade B1 Y1 Felix

6) endo: Trade G1 Y1 Endo

7) Felix: Build Y2 Felix

8) endo: Build Y2 Endo

9) Felix: Build Y2 Felix

10) endo: Discover Y1 Endo G2 Amc

11) Felix: T Y1 G1 Felix

12) endo: Sacrifice G3 Endo
Build Y1 Amc
Build Y3 Endo
Build Y3 Amc

13) Felix: S Y2 Felix
D Y2 Felix Y3 A1
M Y2 A1 Amc
Catastrophe Amc Yellow

14) endo: Trade Y3 G3 Endo

15) Felix: Build B1 Felix

16) endo: Build G1 Endo

17) Felix: Trade B1 Y1 Felix

18) endo: Discover G1 Endo B2 Zorn

19) Felix: Discover G1 Felix B3 Kress

20) endo: Build G1 Endo

21) Felix: Build B1 Felix

22) endo: Build G2 Endo

23) Felix: Trade B3 G3 Felix

24) endo: Discover G2 Endo B2 Antichain

25) Felix: Build G2 Kress

26) endo: Build G3 Zorn

27) Felix: Build Y1 Felix

28) endo: Build Y2 Endo

29) Felix: Sacrifice Y1 Felix
Discover G1 Kress Y2 Bannermene

30) endo: Sacrifice Y2 Endo
Move G3 Zorn Kress
Move G3 Kress Felix

31) Felix: Attack G3 Felix

32) endo: Sacrifice Y2 Endo
Move G1 Zorn Kress
Move G1 Kress Felix
Catastrophe Felix G

33) Felix: Move G1 Bannermene Felix

34) endo: Build G1 Antichain
	Felix: Yow! Nice going. I should have seen that coming.

35) Felix: Build G2 Felix

36) endo: Sacrifice G3 Endo
Build G3 Endo
Build G3 Endo
Build G3 Antichain
	endo: The green situation was quite nasty in any case... Had you traded your G3, I would simply have built it and the larges would go 3-1 for me. You couldn't have moved it away either, because then I could invade with my extra large as usual.

Situations like this are the reason I almost always play with a green ship. The problem with having your ship in some other color is not that you don't have a G3 (which you can obtain via trade), but that you DO have a green star, which will become a huge liability once you get the G3. Green is the color of the large you need in the early game. Once you get more larges, you can house the Y3's and R3's you'll then need at stars other than your homeworld, where your yellow or red half-star won't be a problem.

I see a green ship is what you've been playing in all your previous games, I just thought I'd elaborate a bit on why it's important to do that :)

37) Felix: Discover G1 Felix Y2 Obelisk
	Felix: Wow, thanks for the in-depth tip! That's really helpful, and I definitely get what you're talking about. I have noticed that players start with a green ship 90% of the time. When I play games like this, however, I often want to try to use less-used strategies and ideas. I think it's fun to "go against the grain" and do things differently. However, sometimes there's a very good reason nobody does things a certain way! And I can tell that having green in my home system is a big liability, so I'll avoid it in the future. Thanks very much for the tip. I have learned!

38) endo: Trade G1 Y1 Endo

39) Felix: Build Y2 Felix

40) endo: Trade G3 R3 Antichain

41) Felix: Move G2 Felix Obelisk

42) endo: Trade G3 R3 Endo

43) Felix: Build G1 Kress

44) endo: Sacrifice Y1 Endo
Move R3 Antichain Felix

	Felix: Good game! I learned some things :)
	endo: Thanks for the game, and good luck in your upcoming matches :)


28892)
Variants: "Hard time"
Started: 2015.12.15, Ended: 2015.12.19
Participants: endo (S), wil (N)
Winner: endo

1) wil: H Y2 B1 G3
	wil: Stuck with the sparring partner again!

2) endo: Homeworld Y1 B3 G3

3) wil: B G1 Wil
	endo: Hehe, have fun!

4) endo: Build G1 Endo

5) wil: T G1 Y1 Wil

6) endo: Trade G1 Y1 Endo

7) wil: B Y2 Wil

8) endo: Build Y2 Endo

9) wil: D Y1 Wil G3 G3

10) endo: Discover Y1 Endo G2 Projection

11) wil: B Y3 G3

12) endo: Build Y3 Projection

13) wil: D Y2 Wil Y3 Y3

14) endo: Discover Y1 Projection B3 Injection

15) wil: B G1 Wil

16) endo: Build G1 Endo

17) wil: T G1 R1 Wil

18) endo: Trade G1 R1 Endo

19) wil: B G1 Wil

20) endo: Build G1 Endo

21) wil: T G1 B1 Wil

22) endo: Trade G1 B1 Endo

23) wil: M B1 Wil G3

24) endo: Move B1 Endo Projection

25) wil: B B2 G3

26) endo: Build B2 Projection

27) wil: T B2 R2 G3

28) endo: Trade B2 R2 Projection

29) wil: B B2 G3

30) endo: Build B2 Projection

31) wil: T B2 R2 G3

32) endo: Trade Y1 R1 Injection

33) wil: D R2 G3 B2 B2

34) endo: Sacrifice G3 Endo
Build R3 Endo
Build R3 Projection
Build R3 Injection

35) wil: B G1 Wil

36) endo: Trade R1 G1 Injection

37) wil: M Y1 G3 B2

38) endo: Trade Y2 G2 Endo

39) wil: B B2 G3

40) endo: Trade R3 G3 Projection

41) wil: T B2 G2 G3

42) endo: Discover G3 Projection B3 Terminal

43) wil: S G2 G3
B R1 B2
B R3 G3

44) endo: Build G1 Terminal

45) wil: B B2 G3

46) endo: Sacrifice Y3 Projection
Move R3 Injection Wil
Move G1 Injection Wil
Move G1 Terminal Wil
Catastrophe Wil G

47) wil: S Y3 G3
M R2 G3 Wil
M R3 G3 Wil
M B2 G3 Wil
C Wil R
	wil: Nice... Lol
	wil: I was supposed to take out your reds last move!   

48) endo: Trade R1 Y1 Endo
	wil: Ya got me again... 

	endo: I do have a R2 outside my homeworld though... What you could have done was to deal with the catastrophe threat by trading or bringing in another large, which is why I probably should just have caused the catastrophe on my previous move with my G3, rather than using a move to get the G1. That would have created a situation where I have the only large.
	wil: Hmmm thx...happy new year...and time for another try!


28877)
Variants: "Unrated"
Started: 2015.12.18, Ended: 2016.1.16
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H Y3 B1 G3

2) Felix: H Y1 B2 G3

3) wil: B G1 Wil

4) Felix: Build G1 Felix

5) wil: T G1 B1 Wil

6) Felix: T G1 B1 Felix

7) wil: B B2 Wil

8) Felix: Build B2 Felix

9) wil: T B1 Y1 Wil

10) Felix: Trade B2 Y2 Felix

11) wil: B G1 Wil

12) Felix: Build G1 Felix

13) wil: T G1 R1 Wil

14) Felix: T G1 R1 Felix

15) wil: B G1 Wil

16) Felix: Build G1 Felix

17) wil: D Y1 Wil G2 G2

18) Felix: Discover Y2 Felix G3 Grass

19) wil: D G1 Wil B2 B2

20) Felix: Move Y2 Grass G2

21) wil: D Y1 G2 G3 G3

22) Felix: Discover G1 Felix B3 Ice
	Felix: I waved as I went by

23) wil: B G1 Wil

24) Felix: Build G2 Felix

25) wil: B G2 B2

26) Felix: B R1 Felix

27) wil: S G3 Wil
B G3 Wil
B R2 Wil
B R2 Wil

28) Felix: S G3 Felix
B G3 Felix
B R2 Felix
B Y1 G2

29) wil: M R2 Wil B2

30) Felix: D R1 Felix Y3 Sun

31) wil: S G3 Wil
B G3 Wil
B R3 B2
B Y2 G3

32) Felix: M Y2 G2 Ice

33) wil: T R3 Y3 B2

34) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 G2
Build R3 Sun

35) wil: S G3 Wil
B G3 Wil
B R3 B2
B R3 Wil

36) Felix: M B1 Felix Sun

37) wil: M R3 Wil G2

38) Felix: M Y2 G2 Wil

39) wil: S R2 Wil
A Y2 Wil
A Y1 G2

40) Felix: S G3 Felix
B G3 Felix
B B1 Sun
Pass

41) wil: B R2 G2

42) Felix: S Y2 Ice
D B1 Sun Y2 Star
M R3 Sun Star

43) wil: M B2 Wil G2

44) Felix: S G3 Felix
B G3 Felix
B B3 Sun
B B3 Star

45) wil: M R3 B2 Ice

46) Felix: M R3 Star G3

47) wil: S Y1 G3
M Y2 G3 G2

48) Felix: T R1 Y1 Sun

49) wil: B R1 Wil

50) Felix: M G2 Felix G3

51) wil: M G2 B2 G3

52) Felix: Sacrifice Y1 Sun
Move G2 G3 Star

53) wil: A G1 Ice

54) Felix: Attack G2 G3

55) wil: M G1 B2 G3

56) Felix: Trade B1 Y1 Star

57) wil: S Y2 G2
M G1 Wil G2
M G1 G2 G3
C G3 G

58) Felix: Trade B3 R3 Sun

59) wil: B Y2 G2

60) Felix: Build G1 Felix

61) wil: T R3 G3 G2

62) Felix: Sacrifice G1 Felix
Build R3 Sun

63) wil: S Y2 G2
M R2 G2 Sun
M R2 B2 Sun
C Sun R

64) Felix: Move R2 Felix Sun

65) wil: B Y2 G2
	Felix: I'm getting wrecked :)

66) Felix: B G1 Felix
	wil: I'm gonna try not to make a mistake and you are gonna try to find a chink in my armor...

67) wil: T Y2 G2 G2
	Felix: That sums it up quite well!

68) Felix: Sacrifice G3 Felix
Build G1 Star
Build G3 Felix
Build R2 Sun

69) wil: S G2 G2
B Y2 G2
B R2 Ice

70) Felix: Build R3 Felix

71) wil: T G3 R3 G2

72) Felix: D G3 Felix B3 Snow

73) wil: T R3 G3 Ice

74) Felix: B G2 Snow

75) wil: B R3 Ice

76) Felix: M Y1 Star Snow
	wil: ....this is the end...

77) wil: S Y3 B2
M R3 Ice Felix
M R2 Ice Felix
M G3 Ice Felix
C Felix R

	Felix: Well done!
	wil: There werent any good ships left in the bank...might as well attack
	wil: Googd game


28862)
Variants: "Hard time"
Started: 2015.12.21, Ended: 2015.12.24
Participants: Felix (S), SilentTitan (N)
Winner: Felix



28933)
Variants: "Hard time"
Started: 2015.12.21, Ended: 2015.12.28
Participants: endo (S), dlwillson (N)
Winner: endo

1) dlwillson: Homeworld Y3 B1 G3 Dlwillson

2) endo: Homeworld Y1 B2 G3

3) dlwillson: Build G1 Dlwillson

4) endo: Build G1 Endo

5) dlwillson: Trade G1 Y1 Dlwillson

6) endo: Trade G1 B1 Endo

7) dlwillson: B Y1 Dlwillson

8) endo: Build B1 Endo

9) dlwillson: D Y1 Dlwillson G2 Forest

10) endo: Discover B1 Endo Y3 Foundation

11) dlwillson: Build Y2 Dlwillson

12) endo: Sacrifice G3 Endo
Build B2 Endo
Build B2 Foundation
Build B3 Foundation

13) dlwillson: Discover Y1 Dlwillson G2 Stream

14) endo: Discover B1 Endo Y3 Comprehension

15) dlwillson: Build Y2 Dlwillson

16) endo: Trade B3 G3 Foundation

17) dlwillson: Build G1 Dlwillson

18) endo: Sacrifice G3 Foundation
Build B3 Endo
Build B3 Foundation
Build B3 Comprehension

19) dlwillson: B Y2 Forest

20) endo: Trade B3 G3 Comprehension

21) dlwillson: D Y2 Forest B3 Sky

22) endo: Trade B3 R3 Endo

23) dlwillson: T G3 B3 Dlwillson

24) endo: Trade B1 G1 Foundation

25) dlwillson: T Y2 R2 Dlwillson

26) endo: Trade B2 Y2 Endo

27) dlwillson: Discover G1 Dlwillson B2 Sea

28) endo: Build G1 Comprehension

29) dlwillson: Trade Y2 G2 Dlwillson

30) endo: Sacrifice G3 Comprehension
Build G3 Foundation
Build G3 Foundation
Build G3 Comprehension

31) dlwillson: S Y2 Sky
M G1 Sea Foundation
M Y1 Stream Comprehension
C Foundation G

32) endo: Sacrifice G3 Comprehension
Build B1 Comprehension
Build B2 Comprehension
Build B3 Foundation

33) dlwillson: Sacrifice G2 Dlwillson
Build R1 Dlwillson
Build Y2 Comprehension
	dlwillson: Typo

34) endo: Trade B2 Y2 Comprehension
Catastrophe Comprehension Y

35) dlwillson: Discover R2 Dlwillson B2 Sky

36) endo: Discover B3 Foundation Y2 Collection

37) dlwillson: Trade B3 G3 Dlwillson
	dlwillson: I need to improve my early game against you, so I am not playing out games where you have an insurmountable capital advantage...

38) endo: Trade B3 G3 Foundation
	endo: I think you played much of our previous game accurately though... We were well into a somewhat complicated middlegame, when I finally gained any significant advantage with my economic trickery. Still, winning the game economically in the opening is my favorite strategy...

39) dlwillson: Build Y1 Forest

40) endo: Build B1 Foundation

41) dlwillson: T R1 B1 Dlwillson

42) endo: Sacrifice G3 Foundation
Build R1 Endo
Build B3 Foundation
Build B3 Collection

43) dlwillson: M Y1 Forest Foundation

44) endo: Move B3 Foundation Sky

	dlwillson: See you in a few weeks.


28890)
Started: 2015.12.21, Ended: 2016.1.5
Participants: ts52 (S), Felix (N)
Winner: ts52

1) Felix: Homeworld B3 Y1 G3

2) ts52: Homeworld B2 Y3 G3

3) Felix: B G1 Felix
	Felix: Again! I must avenge my father :)

4) ts52: Build G1 Ts52
	ts52: :D Have a good game!

5) Felix: T G1 Y1 Felix

6) ts52: Trade G1 Y1 Ts52

7) Felix: Build Y2 Felix

8) ts52: Build Y2 Ts52

9) Felix: D Y2 Felix G2 Grass

10) ts52: Discover Y2 Ts52 G1 Robin

11) Felix: D Y1 Felix B2 Ice

12) ts52: Build G1 Ts52

13) Felix: B Y2 Grass

14) ts52: Build Y3 Robin

15) Felix: M Y2 Grass Robin

16) ts52: Discover Y3 Robin B2 Grover

17) Felix: B Y3 Grass

18) ts52: Trade Y1 R1 Ts52

19) Felix: M Y3 Grass Robin

20) ts52: Build Y1 Robin
Catastrophe Robin Yellow

21) Felix: B G1 Felix

22) ts52: Move Y3 Grover Felix

23) Felix: S G3 Felix
B G1 Felix
B Y1 Grass
B Y2 Ice

24) ts52: Trade Y3 R3 Felix

	Felix: Nice! Good game.
	ts52: Thanks for the game. Happy to play another any tim.


28841)
Variants: "Unrated"
Started: 2015.12.30, Ended: 2016.1.17
Participants: Felix (S), kanzenryu (N)
Winner: kanzenryu

1) kanzenryu: Homeworld B1 Y3 G3

2) Felix: H G3 B1 B3 *
	kanzenryu: Actually you are one spot up the ladder further than I can issue challenges
	Felix: Bummer! I look forward to your challenge. Soon...

3) kanzenryu: Build G1 Kanzenryu
	Felix: I'm feeling crazy. Let's do this.

4) Felix: B B1 Felix
	kanzenryu: I've played on of these before, and it was short and sharp.
	Felix: I've never done it. Should be fun!

5) kanzenryu: Discover G1 Kanzenryu Y2 Mid

6) Felix: T B1 Y1 Felix

7) kanzenryu: Build G1 Mid

8) Felix: B B1 Felix

9) kanzenryu: Build G1 Kanzenryu
	Felix: I think I screwed that up...

10) Felix: T B3 G3 Felix

11) kanzenryu: Build G2 Mid

12) Felix: T G3 R3 Felix

13) kanzenryu: Trade G1 R1 Kanzenryu

14) Felix: Move R3 Felix Mid

15) kanzenryu: Move G2 Mid Felix

16) Felix: B B2 Felix

17) kanzenryu: Trade G2 B2 Felix
Catastrophe Felix B

18) Felix: Attack G1 Mid
	Felix: Yow. I somehow didn't see that coming. Thought you'd sacrifice your red instead.
	Felix: Nice going!

19) kanzenryu: Move G1 Mid Felix

20) Felix: S R3 Mid
A G1 Felix
Pass
Pass
	kanzenryu: And planning more...

21) kanzenryu: Build R1 Kanzenryu

22) Felix: Build Y1 Felix

23) kanzenryu: Move G3 Kanzenryu Mid

24) Felix: B G1 Felix

25) kanzenryu: Move G3 Mid Felix
Catastrophe Felix G
	Felix: Good one again! I can't seem to get the edge on you :) Happy to rematch any time. I think I may have moved just out of your reach on the ladder though...
	kanzenryu: Trying to get a different game going on the ladder, but it's not happening yet...



28919)
Variants: "Unrated"
Started: 2015.12.30, Ended: 2016.1.29
Participants: wil (S), kanzenryu (N)
Winner: wil

1) kanzenryu: Homeworld R1 B2 G3

2) wil: H Y3 B1 G3
	wil: Good luck, and thanx for the game...

3) kanzenryu: Build G1 Kanzenryu

4) wil: B G1 Wil
	kanzenryu: Thanks for the game, I still love this one.

5) kanzenryu: Trade G1 Y1 Kanzenryu

6) wil: Trade G1 B1 Wil

7) kanzenryu: Build Y1 Kanzenryu

8) wil: B B1 Wil

9) kanzenryu: Discover Y1 Kanzenryu G3 Out

10) wil: D B1 Wil B2 B2

11) kanzenryu: Build Y1 Out

12) wil: B B2 Wil

13) kanzenryu: Build Y2 Kanzenryu

14) wil: D B1 Wil G2 G3

15) kanzenryu: Build Y2 Out

16) wil: S G3 Wil
B B3 Wil
B B3 G3
B B3 B2

17) kanzenryu: Build G1 Kanzenryu

18) wil: T B3 Y3 G3
	kanzenryu: I'm facing the Blue Man Group

19) kanzenryu: Discover Y2 Out G2 Along
	wil: Tis a bmg queen factory.... I am about to take all the biggins

20) wil: T B3 Y3 B2

21) kanzenryu: Discover Y2 Kanzenryu B3 Bigblue

22) wil: B B3 G3

23) kanzenryu: Build Y2 Along

24) wil: T B3 R3 G3

25) kanzenryu: Trade G1 R1 Kanzenryu

26) wil: B B3 G3

27) kanzenryu: Move Y2 Along Wil

28) wil: M R3 G3 Wil

29) kanzenryu: Sacrifice Y2 Bigblue
Move Y1 Out Along
Move Y1 Along Wil

30) wil: A Y2 Wil

31) kanzenryu: Move Y2 Along Wil
Catastrophe Wil Y
	wil: Welcome fuel supply ships from far lands, is this a peace offering, so sweet of you!
	kanzenryu: Whoops, it's getting crowded in here

32) wil: T B3 G3 Wil
	wil: Oh it was a trap...you rolled fully loaded tankers into my homeworld??

33) kanzenryu: Build G1 Kanzenryu
	kanzenryu: Not so much a trap as I can't think of anything else to do

34) wil: T B3 R3 G3

35) kanzenryu: Build G1 Kanzenryu
	wil: I gotta admit....the view from your end must be a little scary...

36) wil: B G1 Wil
	kanzenryu: Like most of my games...

37) kanzenryu: Discover G1 Kanzenryu Y3 Blob

38) wil: M R3 G3 Blob

39) kanzenryu: Build G2 Blob
	wil: This is the end...two moves to mate

40) wil: S Y3 G3
M R3 Blob Kanzenryu
M Y3 B2 Blob
M Y3 Blob Kanzenryu
	kanzenryu: I can't see how you can do it in only two moves... Should be educational.
	wil: You are correct it's more than two moves but its inevitable

	kanzenryu: Ah, I didn't think of you attacking with different colours. Thanks for the game!
	wil: It is the old you take one I'll take three ploy...used when one has larger attack ships...


28891)
Variants: "Hard time"
Started: 2015.12.30, Ended: 2016.1.27
Participants: kanzenryu (S), endo (N)
Winner: endo

1) endo: Homeworld R1 B3 G3

2) kanzenryu: Homeworld B1 Y2 G3

3) endo: Build G1 Endo
	kanzenryu: Ready for more

4) kanzenryu: Build G1 Kanzenryu
	endo: Good luck, have fun!

5) endo: Trade G1 Y1 Endo

6) kanzenryu: Trade G1 Y1 Kanzenryu

7) endo: Build G1 Endo

8) kanzenryu: Discover Y1 Kanzenryu G3 Jeep

9) endo: Trade G1 B1 Endo

10) kanzenryu: Build G1 Kanzenryu

11) endo: Build B1 Endo

12) kanzenryu: Build G1 Kanzenryu

13) endo: Discover B1 Endo Y2 Open

14) kanzenryu: Discover G1 Kanzenryu B3 Bigblue

15) endo: Build B2 Endo

16) kanzenryu: Trade G1 R1 Kanzenryu

17) endo: Trade B2 R2 Endo

18) kanzenryu: Build G1 Kanzenryu

19) endo: Build B2 Endo

20) kanzenryu: Discover G1 Kanzenryu B3 Other

21) endo: Discover B2 Endo G2 Dense

22) kanzenryu: Build G1 Kanzenryu

23) endo: Build G2 Endo

24) kanzenryu: Sacrifice G3 Kanzenryu
Build G2 Other
Build G3 Kanzenryu
Build R1 Kanzenryu

25) endo: Sacrifice G3 Endo
Build G3 Endo
Build B2 Open
Build B2 Open

26) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build R2 Kanzenryu
Build Y1 Jeep

27) endo: Sacrifice G3 Endo
Build G3 Endo
Build Y2 Endo
Build Y3 Endo

28) kanzenryu: Discover R2 Kanzenryu Y3 Sun

29) endo: Sacrifice Y2 Endo
Move Y1 Endo Dense
Move R2 Endo Open

30) kanzenryu: Discover Y1 Jeep R2 Brink

31) endo: Sacrifice G3 Endo
Build G3 Endo
Build Y2 Endo
Build Y3 Dense

32) kanzenryu: Sacrifice G2 Other
Build G2 Other
Build R3 Sun

33) endo: Sacrifice G2 Endo
Build G2 Endo
Build R3 Open

34) kanzenryu: Move G1 Kanzenryu Sun

35) endo: Move R2 Open Jeep

36) kanzenryu: Move Y1 Jeep Brink

37) endo: Build R3 Jeep

38) kanzenryu: Move R1 Kanzenryu Bigblue

39) endo: Move Y3 Endo Brink

	kanzenryu: You've got me completely locked out. Thanks!


28767)
Variants: "Hard time"
Started: 2015.12.30, Ended: 2016.2.5
Participants: Simon (S), kanzenryu (N)
Winner: Simon

1) kanzenryu: Homeworld R1 B2 G3

2) Simon: Homeworld B3 Y1 G3

3) kanzenryu: Build G1 Kanzenryu
	Simon: Have fun, have fun!

4) Simon: Build G1 Simon
	kanzenryu: That's why I play

5) kanzenryu: Trade G1 Y1 Kanzenryu

6) Simon: Trade G1 R1 Simon

7) kanzenryu: Build Y1 Kanzenryu

8) Simon: Build R1 Simon

9) kanzenryu: Build Y2 Kanzenryu

10) Simon: Discover R1 Simon B2 B2

11) kanzenryu: Discover Y2 Kanzenryu G3 First

12) Simon: Build R2 Simon

13) kanzenryu: Build Y2 First

14) Simon: Discover R2 Simon G2 G2

15) kanzenryu: Discover Y2 First G2 Med

16) Simon: Build R2 Simon

17) kanzenryu: Trade Y1 B1 Kanzenryu

18) Simon: Sacrifice G3 Simon
Build R2 G2
Build R3 Simon
Build R3 B2

19) kanzenryu: Trade G3 R3 Kanzenryu

20) Simon: Trade R3 G3 Simon

21) kanzenryu: Trade B1 G1 Kanzenryu

22) Simon: Build R3 Simon
	kanzenryu: I did not think that through...

23) kanzenryu: Build Y1 Kanzenryu
	Simon: Hmm, countering monopolies can take several turns with specific order of moves.

24) Simon: Trade R3 G3 B2

25) kanzenryu: Build R3 Kanzenryu

26) Simon: Build G1 B2

27) kanzenryu: Move R3 Kanzenryu First

28) Simon: Move R3 Simon Med

29) kanzenryu: Discover Y2 Med G1 Back

30) Simon: Build G2 Simon

31) kanzenryu: Build Y2 First

32) Simon: Trade G3 Y3 B2

33) kanzenryu: Build Y3 Kanzenryu

34) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y3 B2
Build G3 B2

35) kanzenryu: Trade Y1 B1 Kanzenryu

36) Simon: Discover Y3 B2 B3 B3

37) kanzenryu: Move B1 Kanzenryu First

38) Simon: Trade G1 B1 B2

39) kanzenryu: Discover Y2 First B2 Up

40) Simon: Sacrifice G3 Simon
Build G1 B2
Build G3 Simon
Build Y1 B2

41) kanzenryu: Move Y2 Back Up

42) Simon: Move R2 Simon Up

43) kanzenryu: Sacrifice Y2 First
Move Y2 Up Simon
Move Y2 Up Simon

44) Simon: Sacrifice G3 Simon
Build G1 B2
Build G3 Simon
Build Y2 B3

45) kanzenryu: Sacrifice Y3 Kanzenryu
Move Y1 Kanzenryu B3
Move Y1 B3 G2
Move Y1 G2 Simon
Catastrophe Simon Y

46) Simon: Discover B1 B2 Y3 Y3
	kanzenryu: Does it show that I have no ideas? ;-)
	Simon: It's not at all clear. I have more pieces, but must make two invasions now while I can't allow you to make even one.

47) kanzenryu: Build B1 First

48) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 B2
Build Y1 B3

	kanzenryu: I'm locked out of yellow... not good. Thanks for the game.
	Simon: gg


28934)
Started: 2015.12.30, Ended: 2016.1.19
Participants: kanzenryu (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) kanzenryu: Homeworld Y1 B2 G3

3) ts52: Build G1 Ts52

4) kanzenryu: Build G1 Kanzenryu

5) ts52: Trade G1 B1 Ts52

6) kanzenryu: Trade G1 Y1 Kanzenryu

7) ts52: Build B1 Ts52

8) kanzenryu: Build G1 Kanzenryu

9) ts52: Discover B1 Ts52 G2 Robin

10) kanzenryu: Discover G1 Kanzenryu B3 Bigblue

11) ts52: Build B2 Robin

12) kanzenryu: Build G1 Bigblue

13) ts52: Build B2 Ts52

14) kanzenryu: Trade G1 Y1 Bigblue

15) ts52: Build B3 Robin

16) kanzenryu: Build Y2 Bigblue

17) ts52: Trade B3 Y3 Robin

18) kanzenryu: Trade Y2 R2 Bigblue

19) ts52: Trade B2 R2 Robin

20) kanzenryu: Build Y2 Bigblue

21) ts52: Build B2 Robin

22) kanzenryu: Discover Y1 Kanzenryu B3 Other

23) ts52: Build B3 Robin

24) kanzenryu: Build G1 Kanzenryu

25) ts52: Discover B2 Robin Y3 Bigbird

26) kanzenryu: Discover Y1 Bigblue G2 Peep

27) ts52: Trade B3 G3 Robin

	kanzenryu: I can see I'm being crushed in this game... no real point in dragging it out. Thanks!


28978)
Variants: "Hard time"
Started: 2016.1.1, Ended: 2016.1.24
Participants: endo (S), wil (N)
Winner: endo

1) wil: H Y2 B1 G3

2) endo: Homeworld Y1 B3 G3

3) wil: B G1 Wil
	endo: Happy new year, and GLHF

4) endo: Build G1 Endo

5) wil: T G1 Y1 Wil

6) endo: Trade G1 Y1 Endo

7) wil: B Y2 Wil

8) endo: Build Y2 Endo

9) wil: D Y1 Wil G3 G3

10) endo: Discover Y1 Endo G2 Diamond

11) wil: B Y3 G3

12) endo: Build Y3 Diamond

13) wil: D Y2 Wil Y3 Y3

14) endo: Build G1 Endo

15) wil: B G1 Wil

16) endo: Trade G1 R1 Endo

17) wil: T G1 R1 Wil

18) endo: Build G1 Endo

19) wil: B G1 Wil

20) endo: Trade G1 B1 Endo

21) wil: T G1 B1 Wil

22) endo: Move B1 Endo Diamond

23) wil: M B1 Wil G3

24) endo: Build B2 Diamond

25) wil: B B2 G3

26) endo: Discover B1 Diamond G1 Club

	wil: Oops


29013)
Variants: "Unrated"
Started: 2016.1.8, Ended: 2016.2.10
Participants: Tamiel (S), Felix (N)
Winner: Felix

1) Felix: H B3 Y2 G3

2) Tamiel: Homeworld Y1 B2 G3

3) Felix: Build G1 Felix

4) Tamiel: Build G1 Tamiel
	Felix: Welcome back. I hope you have a good game!

5) Felix: Trade G1 Y1 Felix
	Tamiel: Thank you, you too.

6) Tamiel: Build G1 Tamiel

7) Felix: B G1 Felix

8) Tamiel: Discover G1 Tamiel Y3 Gliesse1

9) Felix: D G1 Felix B1 Ice
	Tamiel: I'll be away until Monday. I don't think I'll be able to make a move until then. Sorry for the delay.
	Felix: That's okay! I will wait a day or two for my move so that you have more time on your limit.

10) Tamiel: Build G2 Gliesse1

11) Felix: Build G2 Felix
	Tamiel: Thank you.

12) Tamiel: Sacrifice G3 Tamiel
Build G2 Gliesse1
Build G3 Tamiel
Build G3 Tamiel

13) Felix: Trade G2 Y2 Felix

14) Tamiel: Trade G3 Y3 Tamiel
	Felix: Good move! I thought at first that it was unwise but I see now that it works greatly in your favor!

15) Felix: Build G2 Felix
	Tamiel: I always keep my eyes open for possible sacrifices. Mostly as a defensive measure. 
	Felix: Ah, but now I can sacrifice my Y2 in my homeworld and move my G1 from ice to your homeward and cause a catastrophe there. Do you want to take your move back and try something else?
	Tamiel: I thought you cannot move g1 from ice because there is no yellow color there. I've reread the sacrifice rule and realized my mistake. I will take back the last move. Thank you for allowing it and sorry for my lapse of judgement regarding the rules of play.

16) Tamiel: Move G2 Gliesse1 Ice
	Felix: That's okay! It does take a little while to learn all of the ins and outs of the rules. And I am still learning them myself! The sacrifice lets you move any ship in any of your systems.

17) Felix: T G1 R1 Ice

18) Tamiel: Move G2 Gliesse1 Ice

19) Felix: M Y2 Felix Ice

20) Tamiel: Sacrifice Y3 Tamiel
Move G2 Ice Felix
Move G2 Ice Felix
Pass
Catastrophe Felix Green

21) Felix: Trade Y1 G1 Felix

22) Tamiel: Build G2 Tamiel

23) Felix: Build G2 Felix
	Felix: Ouch! Nice move.

24) Tamiel: Trade G2 B2 Tamiel

25) Felix: Move G1 Felix Ice

26) Tamiel: Build G2 Gliesse1

27) Felix: Move G1 Ice Gliesse1

28) Tamiel: Move B2 Tamiel Gliesse1

29) Felix: Move G1 Gliesse1 Tamiel

30) Tamiel: Trade G3 R3 Tamiel

31) Felix: Discover G1 Tamiel B3 Rim

32) Tamiel: Discover G1 Gliesse1 B1 Gliesse2

33) Felix: Move Y2 Ice Gliesse1

34) Tamiel: Build R1 Tamiel

35) Felix: Move Y2 Gliesse1 Gliesse2

36) Tamiel: Trade R3 G3 Tamiel

37) Felix: Sacrifice R1 Ice
Attack G1 Gliesse2

38) Tamiel: Move R1 Tamiel Rim

39) Felix: Build G2 Rim

40) Tamiel: Attack G1N Rim

41) Felix: Sacrifice Y2 Gliesse2
Move G2 Rim Tamiel
Discover G1 Gliesse2 Y3 Brink

42) Tamiel: Trade G3 R3 Tamiel

43) Felix: Sacrifice G2 Tamiel
Build G2 Brink
Build G3 Felix

44) Tamiel: Sacrifice G2 Gliesse1
Build G2 Rim
Build G3 Rim

45) Felix: Build G3 Felix

46) Tamiel: Move R3 Tamiel Brink

47) Felix: Move G2 Brink Tamiel

48) Tamiel: Trade G2 Y2 Rim

49) Felix: S G2 Felix
B G2 Tamiel
B G2 Tamiel
C Tamiel Green

	Tamiel: Ooops, I made a mistake.
	Felix: That's unfortunate! I hate when I make them!
	Felix: Good game though! I'm happy to rematch any time.


29006)
Started: 2016.1.8, Ended: 2016.1.21
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3

2) Felix: Homeworld B3 Y2 G3
	ts52: Have a good game!
	Felix: Thanks, you too! I appreciate you accepting my challenges as you are helping me learn to be a better player!

3) ts52: Build G1 Ts52

4) Felix: Build G1 Felix
	ts52: Always happy to play more homeworlds. I need to work on convince my local friends to play so I can play more irl games.
	Felix: Same, haha. I can't even get my wife to play with me!

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix
	ts52: My wife has some deep aversion to pyramid games. Not really sure why. :(

7) ts52: Build B2 Ts52
	Felix: Mine tolerates some of the simper games, but no homeworlds, sadly!

8) Felix: Build B2 Felix

9) ts52: Discover B2 Ts52 G2 Kermit

10) Felix: Discover B2 Felix G1 Grape

11) ts52: Build G1 Ts52

12) Felix: Build B2 Grape

13) ts52: Build B3 Kermit

14) Felix: Build B3 Grape

15) ts52: Trade B3 Y3 Kermit

16) Felix: Trade B2 Y2 Grape

17) ts52: Discover B1 Ts52 G2 Oscar

18) Felix: Discover B1 Felix G1 Olive

19) ts52: Build Y1 Kermit

20) Felix: B Y1 Grape

21) ts52: Trade Y1 R1 Kermit

22) Felix: Trade Y1 R1 Grape

23) ts52: Build Y1 Kermit

24) Felix: Trade B1 Y1 Olive

25) ts52: Build B1 Oscar

26) Felix: Discover Y1 Olive R2 Apple

27) ts52: Discover G1 Ts52 Y2 Bigbird

28) Felix: Build G1 Felix

29) ts52: Build G2 Ts52

30) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Grape
Build Y3 Apple

31) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Bigbird
Build B2 Kermit

32) Felix: B R1 Grape

33) ts52: Discover B2 Kermit R3 Elmo

34) Felix: Move Y2 Grape Oscar

35) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Kermit
Build R2 Kermit

36) Felix: Move R1 Grape Felix

37) ts52: Sacrifice B1 Oscar
Trade G3 R3 Bigbird

38) Felix: S G3 Felix
B G3 Felix
B R2 Felix
B R3 Grape

39) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Bigbird
Build B1 Elmo

40) Felix: M Y2 Oscar Ts52

41) ts52: Move Y3 Kermit Elmo

42) Felix: M Y1 Apple Ts52

43) ts52: Sacrifice Y1 Kermit
Discover R3 Bigbird Y1 Zoe

44) Felix: Sacrifice Y3 Apple
Discover Y1 Grape R2 Apple
Move Y1 Apple Ts52
Move B3 Grape Kermit

45) ts52: Sacrifice G3 Bigbird
Build G3 Bigbird
Build Y3 Elmo
Build R2 Zoe

46) Felix: S R2 Felix
A R2 Kermit
A B3 Kermit
Catastrophe Ts52 Yellow
	Felix: Crud. I forgot to catastrophe. Whoops.
	ts52: You can undo and redo if you want. I'll give it a couple hours before I move. 
	Felix: I already undid a mistake I made on this turn, and the system only allows one redo, I think. But that's okay. I will just press on! Thanks very much for offering.

47) ts52: Move B1 Elmo Kermit
Catastrophe Kermit Blue
	ts52: Fair enough. It will be interesting to see how this plays out.

48) Felix: M G3 Felix Ts52
	ts52: Huh, I missed that one.

49) ts52: Sacrifice Y3 Elmo
Move Y3 Elmo Ts52
Move G1 Bigbird Ts52
Move R3 Zoe Felix
Catastrophe Ts52 Green

50) Felix: B R2 Felix
	Felix: Interesting indeed! I think I may have gotten you... Unless I'm overlooking something. And I likely am!
	ts52: This certainly doesn't look good, but I may be able to at least forestall the inevitable another turn or two.

51) ts52: Sacrifice R2 Zoe
Attack R2 Felix
Attack R1 Felix
	Felix: Oh dear. I think you managed to turn the tables back on me. I overextended and couldn't finish the job. Well done! I think I'm done for now

	Felix: Close one. Good game!
	ts52: Very close. Thanks for the game. Well played!


29032)
Variants: "Hard time"
Started: 2016.1.12, Ended: 2016.3.5
Participants: Felix (S), Salmonax (N)
Winner: Felix

1) Salmonax: Homeworld B3 R2 G3

2) Felix: Homeworld Y3 B1 G3
	Felix: Have a good game!


3) Salmonax: Build G1 Salmonax

4) Felix: Build G1 Felix
	Salmonax: You too

5) Salmonax: Trade G1 Y1 Salmonax

6) Felix: Trade G1 B1 Felix

7) Salmonax: Build G1 Salmonax

8) Felix: B B1 Felix

9) Salmonax: Build Y1 Salmonax

10) Felix: Discover B1 Felix G2 Grass

11) Salmonax: Trade Y1 R1 Salmonax

12) Felix: Build B2 Grass

13) Salmonax: Discover G1 Salmonax Y1 Mars

14) Felix: T B2 Y2 Grass

15) Salmonax: Build G1 Mars

16) Felix: Build B2 Grass

17) Salmonax: Move G1 Mars Grass

18) Felix: Trade B2 R2 Grass

19) Salmonax: Sacrifice G3 Salmonax
Build G1 Grass
Build G2 Grass
Build G2 Mars
Catastrophe Grass G

20) Felix: B B1 Felix

21) Salmonax: Move G1 Mars Salmonax

22) Felix: D B1 Felix G2 Rim
	Felix: Woah. Bold move!
	Salmonax: Let's see how it goes. =)

23) Salmonax: Move G2 Mars Rim
	Felix: Indeed! Should be interesting:)

24) Felix: Sacrifice G3 Felix
Build B2 Rim
Build B2 Rim
Build B2 Felix

25) Salmonax: Build G1 Rim

26) Felix: Trade B2 R2 Felix

27) Salmonax: Build G1 Rim

28) Felix: Sacrifice B2 Rim
Trade R2 G2 Felix
Trade B1 R1 Felix

29) Salmonax: Build G3 Salmonax
Catastrophe Rim G

30) Felix: Build G1 Felix

31) Salmonax: Trade G1 B1 Salmonax
	Felix: Oh, that was clever! I was wondering why you didn't catastrophe. I should have...

32) Felix: Trade G1 B1 Felix
	Salmonax: I wasn't sure that would work. =)

33) Salmonax: Discover B1 Salmonax G1 Greenone
	Felix: I like unconventional strategies like that, and I will remember that one! Once, I intentionally blew up half of my own homeworld in order to immediately put some of my ships within one jump of my opponents homeworld. It ended up working against me, ultimately, but it did cause him react to the immediate threat :)

34) Felix: B B2 Felix

35) Salmonax: Build B2 Greenone

36) Felix: D B1 Felix G2 Hope

37) Salmonax: Build Y1 Salmonax

38) Felix: Sacrifice G2 Felix
Build B2 Hope
Build B3 Felix

39) Salmonax: Build B3 Greenone

40) Felix: Sacrifice B2 Felix
Trade B3 G3 Felix
Trade B2 Y2 Hope

41) Salmonax: Trade B3 R3 Greenone

42) Felix: Build B2 Hope

43) Salmonax: Move Y1 Salmonax Greenone

44) Felix: Discover B2 Hope G1 Rim

45) Salmonax: Move R3 Greenone Hope

46) Felix: Move Y2 Hope Rim

47) Salmonax: Attack B1 Hope

48) Felix: Build Y1 Rim

49) Salmonax: Move Y1 Salmonax Rim

50) Felix: Build B2 Rim

51) Salmonax: Build Y2 Rim
Catastrophe Rim Yellow

52) Felix: T B2 Y2 Rim

53) Salmonax: Build B2 Hope

54) Felix: B B3 Rim

55) Salmonax: Build B3 Hope

56) Felix: M B2 Rim Hope
C Hope Blue

57) Salmonax: Trade B2 R2 Greenone

58) Felix: B G1 Felix
	Salmonax: Ah, I should have done that in greenone instead.

59) Salmonax: Build G2 Salmonax
	Felix: Yeah, probably. I always overlook stuff like that!

60) Felix: D G1 Felix B2 Ichor

61) Salmonax: Discover B1 Greenone G2 Greentwo

62) Felix: Build G3 Ichor

63) Salmonax: Move R2 Greenone Ichor

64) Felix: Sacrifice R1 Felix
Attack R2 Ichor

65) Salmonax: Sacrifice Y1 Greenone
Move R3 Hope Felix

66) Felix: Sacrifice R2 Ichor
Attack R3 Felix
Pass

67) Salmonax: Trade G2 Y2 Salmonax

68) Felix: Trade G1 Y1 Ichor
	Salmonax: Man, I didn't see that R2 at all...
	Salmonax: Man, I didn't see that R2 at all...
	Felix: I thought you had me for a moment. That was scary!

69) Salmonax: Build Y1 Salmonax

70) Felix: Move G3 Ichor Rim

71) Salmonax: Build B1 Greentwo
	Felix: Regardless of how this turns out, I've really enjoyed playing against you and I'd love to have a rematch, ladder or otherwise. I feel like our skill levels are pretty close
	Felix: Everyone else on here destroys me...

72) Felix: Sacrifice Y2 Rim
Move B3 Rim Salmonax
Move G3 Rim Salmonax
	Salmonax: Yeah, this is pretty fun. =)

73) Salmonax: Build B2 Greentwo

74) Felix: S R3 Felix
A G3 Salmonax
A Y2 Salmonax
A R1 Salmonax
	Felix: I think I may have you now.... unless I'm overlooking something.
	Salmonax: Not immediately, but I think so.

75) Salmonax: Attack R1 Salmonax

76) Felix: Trade G3 R3 Salmonax

77) Salmonax: Sacrifice Y1 Salmonax
Move B2 Greentwo Felix

78) Felix: A R1 Salmonax
	Salmonax: GG

	Felix: You too! Very close and exciting. I'd love to have a rematch!


28961)
Variants: "Unrated"
Started: 2016.1.18, Ended: 2016.3.12
Participants: wil (S), Ottia (N)
Winner: Ottia

1) Ottia: Homeworld B2 G3 R3

2) wil: H Y3 B1 G3
	Ottia: Good morning again, Wil! It's my first game, I guarantee that here I won't be playing too quickly (grin), should I make any mistakes please let me know, I'll apologise and correct immediately
	wil: Do I know you?  

3) Ottia: Build R1 Ottia
	wil: First battle you have is G in your homeworld star...keeps you from a factory at home...not insurmountable... But troublesome
	Ottia: If half a game of Blam! is knowing each other then we do, Sir. My pleasure. Now let's see what to do next (thanks for the advice, by the way!).

4) wil: B G1 Wil
	wil: Ah...okee... And no problem...I've played that...

5) Ottia: Trade R1 Y1 Ottia

6) wil: T G1 B1 Wil
	Ottia: Goodness, you make it sound difficult HAHAHAHA... I'll add some egg yolk to my system.

7) Ottia: Discover Y1 Ottia G1 Ashikawa

8) wil: B B1 Wil

9) Ottia: Build R1 Ottia
	wil: Normally I would build whatever color you built to keep up...but their were only two pawns and two drones in the blue bank...which meant to me I could get to drones and queens in blue and hopefully swap for yellow queens....so I entered the race rather than matching....your moving out yourpawn means you can't build more yellow at home right away ..  Which puts me another step closer to winning the race..
	wil: This game does have a learning curve...but is amazing... I learned it by losing doEns of games watching the attacks come after me....and then trying them against others and learning the gambits

10) wil: D B1 Wil R2 R2
	Ottia: Well, now it's your turn to inflict lots of pain HAHAHAHA... I can imagine both that the game has got a long learning curve and that it's stunning once you get past it. I will have to practice a bit to get all the chains of moves you need to make to achieve mid- or long-term goals...

11) Ottia: Trade R1 Y1 Ottia

12) wil: B B2 Wil
	Ottia: Alright, now I see resources for trading are scarce at least at the beginning ;)
	wil: Yes early phase is building and trying to corner bigger oieecda or a monopoly

13) Ottia: Build Y1 Ottia

14) wil: D B2 Wil G2 G2
	Ottia: What does oieecda mean? (if you pardon my question, I suppose you mean systems but being a novice I can never be sure...)
	wil: Pyramids..,. One helluva typo

15) Ottia: Build Y2 Ashikawa

16) wil: S G3 Wil
B B2 G2
B B3 R2
B B3 Wil
	Ottia: Goodness me... was that the autocorrector? I can't quite follow all the hand displacements to touch-type that from "Pyramids"... interesting! HAHA, patterns! By the way, do you like games like Zendo and the sort?
	wil: There  is no telling how that happened... It is just me...

17) Ottia: Trade R3 B3 Ottia

18) wil: T B3 Y3 R2
	Ottia: Some blue stuff for me still (I start fist pumping and shouting Tuco-style)...

19) Ottia: Trade Y1 R1 Ottia

20) wil: B B3 G2

21) Ottia: Build R1 Ottia

22) wil: S B2 G2
T B3 R3 G2
T B3 G3 Wil

23) Ottia: Discover Y2 Ashikawa B2 Ojima

24) wil: B B3 G2

25) Ottia: Build Y1 Ashikawa

26) wil: T B3 Y3 G2

27) Ottia: Build Y2 Ottia

28) wil: M R3 G2 Ashikawa

29) Ottia: Move Y1 Ashikawa G2

30) wil: A Y1 Ashikawa

31) Ottia: Move Y2 Ottia Ashikawa

	Ottia: I'm sorry that I terminate the game like this but it's not moving forward, you're obviously busy and I need to declutter. I'll be looking forward to our next games (you can always invite me when you have time again).


29041)
Variants: "Unrated"
Started: 2016.1.20, Ended: 2016.2.11
Participants: Felix (S), kanzenryu (N)
Winner: Felix

1) kanzenryu: Homeworld Y2 B3 G3

2) Felix: Homeworld Y3 B1 G3
	kanzenryu: I'll try something different again
	Felix: The fortress, eh? I actually really like using that opening! It rarely works well for me, but I like it!

3) kanzenryu: Build G1 Kanzenryu

4) Felix: Build G1 Felix

5) kanzenryu: Trade G1 B1 Kanzenryu

6) Felix: T G1 B1 Felix

7) kanzenryu: Build G1 Kanzenryu

8) Felix: D B1 Felix G2 Grass

9) kanzenryu: Discover B1 Kanzenryu G1 Out

10) Felix: B B2 Grass

11) kanzenryu: Build B2 Out

12) Felix: Trade B1 R1 Grass

13) kanzenryu: Trade B2 R2 Out

14) Felix: B R1 Grass

15) kanzenryu: Trade G1 Y1 Kanzenryu

16) Felix: Trade R1 Y1 Grass

17) kanzenryu: Build G1 Kanzenryu

18) Felix: B G1 Felix

19) kanzenryu: Discover G1 Kanzenryu B1 Beep

20) Felix: Move B2 Grass Beep

21) kanzenryu: Build B2 Out

22) Felix: Sacrifice R1 Grass
Attack G1 Beep

23) kanzenryu: Build G2 Kanzenryu

24) Felix: S G3 Felix
B G2 Felix
B G3 Felix
B G3 Beep

25) kanzenryu: Sacrifice G3 Kanzenryu
Build G3 Kanzenryu
Build R1 Out
Build R1 Out

26) Felix: T G1 R1 Felix

27) kanzenryu: Move Y1 Kanzenryu Out

28) Felix: T G2 Y2 Felix

29) kanzenryu: Move R2 Out Grass

30) Felix: Move Y1 Grass Beep

31) kanzenryu: Build R2 Out

32) Felix: Build G1 Felix

33) kanzenryu: Trade G2 R2 Kanzenryu

34) Felix: Build R3 Felix

35) kanzenryu: Sacrifice G3 Kanzenryu
Build R3 Kanzenryu
Build R3 Grass
Build Y1 Out

36) Felix: Build G2 Beep

37) kanzenryu: Sacrifice B2 Out
Trade R3 G3 Kanzenryu
Trade R3 Y3 Grass

38) Felix: S G2 Beep
B Y2 Felix
B Y3 Beep

39) kanzenryu: Build R3 Kanzenryu

40) Felix: Trade G3 R3 Beep

41) kanzenryu: Build G2 Kanzenryu

42) Felix: Discover B2 Beep G2 Ichor

43) kanzenryu: Move Y3 Grass Felix
Catastrophe Felix Y

44) Felix: Sacrifice Y3 Beep
Move R3 Beep Kanzenryu
Move R1 Felix Kanzenryu
Move G1 Beep Kanzenryu
Catastrophe Kanzenryu Red
	kanzenryu: I didn't have any other ideas

45) kanzenryu: Sacrifice R1 Out
Attack G1 Kanzenryu
	Felix: Not a bad plan! You've damaged my system greatly, but I think I may just pull through!

46) Felix: Sacrifice Y1 Beep
Move G1 Felix Kanzenryu
Catastrophe Kanzenryu Green
	kanzenryu: Heh. I actually spent a couple of minutes looking for that kind of attack and didn't see it :-(
	Felix: Good game though! Rematch?



29079)
Started: 2016.1.21, Ended: 2016.1.25
Participants: ts52 (S), Felix (N)
Winner: ts52

1) Felix: Homeworld R3 B1 G3

2) ts52: Homeworld B1 Y2 G3

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: Trade G1 B1 Felix

6) ts52: Discover G1 Ts52 B3 Gonzo

7) Felix: Build B2 Felix

8) ts52: Build G1 Ts52

9) Felix: Trade B2 Y2 Felix

10) ts52: Build G1 Gonzo

11) Felix: Build G2 Felix

12) ts52: Build G2 Gonzo

13) Felix: Discover G2 Felix B2 Ice

14) ts52: Trade G2 Y2 Gonzo
	ts52: What's up? Did you click the 'call an admin' on purpose?
	Felix: Oh shoot! No, I didn't! That was an accident. What happens now?
	ts52: No idea. I'll make my move as normal. You can try clicking 'cancel call'

15) Felix: B G2 Felix
	Felix: Ah, didn't notice that. That seems to have done the trick!

16) ts52: Discover G1 Gonzo B2 Grover

17) Felix: S G3 Felix
B G2 Ice
B G3 Felix
B B2 Felix
	ts52: Yep, seems to be cancelled now. Not sure it would've done anything anyway.

18) ts52: Build G3 Gonzo

19) Felix: S G2 Ice
B B3 Felix
B Y1 Felix

20) ts52: Trade G3 B3 Gonzo

21) Felix: S G3 Felix
B G2 Ice
B G3 Ice
B G3 Felix
C Felix Blue
	Felix: I'm not sure this site implements the rules correctly. In the official rules from Andrew Looney, you can catastrophe at any point in your turn. I was going to catastrophe my own system and then sacrifice my y2 to move both my greens from my homeworld to yours, but the system won't let me do that
	Felix: It was a crazy idea and I really wish it would work :p 

22) ts52: Trade G3 R3 Ts52

23) Felix: T G3 Y3 Ice
	ts52: That is a very interesting play. I don't think I've ever seen anyone intentionally create a catastrophe in their homeworld

24) ts52: Build G3 Grover
	Felix: I thought it would be a very unique form of attack, and it would have been effective if the rules were implemented differently! Now I know catastrophes must take place at the end of a turn...

25) Felix: T G2 B2 Ice

26) ts52: Sacrifice G3 Grover
Build G2 Ts52
Build G3 Grover
Build G3 Gonzo

27) Felix: M B2 Ice Felix

28) ts52: Sacrifice Y2 Gonzo
Move G1 Ts52 Felix
Move G1 Grover Felix
Catastrophe Felix Green

29) Felix: Build G1 Ice

30) ts52: Trade G1 Y1 Gonzo

31) Felix: Move Y3 Ice Felix

32) ts52: Trade B3 Y3 Gonzo

33) Felix: Sacrifice Y2 Felix
Discover G1 Ice B3 Slash
Move G2 Ice Felix

34) ts52: Sacrifice G3 Gonzo
Build R1 Ts52
Build R1 Ts52
Build G1 Grover

35) Felix: Trade G1 R1 Slash

36) ts52: Sacrifice Y3 Gonzo
Move R3 Ts52 Felix
Move R1 Ts52 Felix
Move R1 Ts52 Felix
Catastrophe Felix Red

	ts52: Thanks for the game!
	Felix: You too! I left myself wide open after that failed attack by destroying my own homeworld. It was fun though! I'm always up for a rematch.
	ts52: Yeah, it was an interesting gambit, but didn't work out for you. Always happy to play another game.


28866)
Variants: "Hard time"
Started: 2016.1.22, Ended: 2016.1.26
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y3 B2 G3

2) wil: H R3 B1 G3

3) Felix: B G1 Felix

4) wil: B G1 Wil

5) Felix: T G1 B1 Felix

6) wil: T G1 B1 Wil

7) Felix: B B2 Felix

8) wil: B B2 Wil

9) Felix: Discover B2 Felix G1 Grass

10) wil: T B1 Y1 Wil

11) Felix: S G3 Felix
B B1 Grass
B B3 Grass
B B3 Felix

12) wil: B B3 Wil

13) Felix: S B2 Grass
T B3 Y3 Grass
T B3 G3 Felix

14) wil: D B2 Wil G2 G2

15) Felix: B G1 Felix

16) wil: D B3 Wil G2 Gee2

17) Felix: T B1 R1 Felix

18) wil: T B3 Y3 Gee2

19) Felix: D G1 Felix B1 Ice

20) wil: B G1 Wil

21) Felix: B G2 Felix

22) wil: D Y3 Gee2 G3 G3

23) Felix: S G3 Felix
B G2 Ice
B G3 Felix
B Y1 Grass

24) wil: S G3 Wil
B G3 Wil
B Y1 G3
B Y2 Wil

25) Felix: M Y1 Grass G3

26) wil: M Y3 G3 Ice

27) Felix: S G3 Felix
B G3 Felix
B Y2 Grass
B Y2 G3

28) wil: T Y2 R2 Wil

29) Felix: S G2 Ice
B B2 Grass
B R1 Felix

30) wil: B B3 G2

31) Felix: D B2 Grass G2 Plain

32) wil: T B2 Y2 G2

33) Felix: Sacrifice G3 Felix
Build B2 Grass
Build B3 Plain
Build G3 Felix

34) wil: B B3 G2

35) Felix: Sacrifice Y2 G3
Move B1 Grass G2
Move B2 Grass G2
Catastrophe G2 Blue

36) wil: M Y1 G3 Grass

37) Felix: Sacrifice Y1 G3
Move Y3 Grass G2

38) wil: M Y1 Grass G2
	Felix: Sorry. Decided I wanted to sacrifice a different yellow.
	wil: Undoing is not a sorry....it is a given in this game

39) Felix: Sacrifice B3 Plain
Trade Y3 R3 G2
Trade B2 R2 Plain
Trade R1 B1 Felix
	Felix: Oh okay. :) I thought it might be poor form to do so

40) wil: D Y2 G2 R1 R2
	wil: No...in a live game we use a turn token...your turn isn't over until you move the token...as when you do major moves with catastrophes and grows you may not like the repercussions, when you see the final layout...so you try multiple moves prior to moving the token...the board layout here is a mess...so it is easy to miss something...the issue is you are only allowed one redo...which is wrong for this game...it should be unlimited....  However... If one doesn't undo fast enough... And the other moves...oops!  N fair game as well

41) Felix: S Y2 Grass
M R3 G2 Wil
M R2 Plain Wil
Catastrophe Wil Red

42) wil: S Y2 R2
M G3 Wil Felix
M G1 Wil Felix
C Felix G

43) Felix: M R1 Felix Wil

	Felix: Hello. We are an investigation party sent to check out this small moon. What are you doing out here? Nothing illegal, I hope. We may have to board your vessel and check for contraband...
	wil: Nice


28962)
Variants: "Hard time"
Started: 2016.1.22, Ended: 2016.1.25
Participants: endo (S), Felix (N)
Winner: endo

1) Felix: Homeworld Y3 B2 G3

2) endo: Homeworld Y1 B3 G3

3) Felix: B G1 Felix
	endo: Hi again, GLHF!
	Felix: Thanks! You too! I did NOT mean to click the call an admin button!

4) endo: Build G1 Endo

5) Felix: Discover G1 Felix B1 Ice

6) endo: Trade G1 B1 Endo
	endo: I can't see the system message about calling an admin :) Perhaps it doesn't show up to other players...

7) Felix: Build G1 Felix

8) endo: Build B1 Endo

9) Felix: Trade G1 Y1 Felix

10) endo: Discover B1 Endo G2 Wellorder
	Felix: Hmm... I'm not sure. It sent me an email saying it had been clicked. I don't even know what it does, but I guess we're fine as long as nothing blows up :)

11) Felix: B Y1 Felix

12) endo: Build B2 Endo

13) Felix: D Y1 Felix G1 Grass

14) endo: Discover B2 Endo B2 Basis

15) Felix: B Y2 Grass

16) endo: Build B3 Wellorder

17) Felix: D Y1 Grass B3 Molnak

18) endo: Trade B3 Y3 Wellorder

19) Felix: S G3 Felix
B Y2 Molnak
B Y2 Grass
B Y3 Felix

20) endo: Build B3 Wellorder

21) Felix: T Y1 G1 Felix

22) endo: Trade B3 R3 Wellorder

23) Felix: Trade G1 R1 Ice

24) endo: Build B3 Wellorder

25) Felix: Trade Y3 G3 Felix

26) endo: Build R1 Wellorder

27) Felix: Move G1 Felix Ice

28) endo: Move R3 Wellorder Grass

29) Felix: Build G1 Ice

30) endo: Sacrifice Y3 Wellorder
Move B3 Wellorder Ice
Move B3 Ice Felix
Move R3 Grass Felix

	Felix: Well done! That was a slick move to end it. I have learned. Thanks for playing!


29072)
Variants: "Unrated"
Started: 2016.1.22, Ended: 2016.1.25
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H Y3 B1 G3 G3

2) Felix: H G2 B1 B3 *

3) wil: B G1 Wil
	Felix: I'm gonna try this and hope I don't botch it :)

4) Felix: B B1 Felix
	wil: Way scary....but love multiple games..

5) wil: B G1 Wil
	Felix: So far I haven't succeeded at this strategy. Multiple games are great!

6) Felix: T B3 Y3 Felix

7) wil: D G1 Wil Y2 Y2

8) Felix: B B2 Felix

9) wil: B G1 Y2

10) Felix: D B1 Felix G3 Plain

11) wil: D G1 Y2 Y3 Y3

12) Felix: Discover B2 Felix G3 Grass

13) wil: B G2 Wil

14) Felix: B B2 Grass

15) wil: B G2 Y3

16) Felix: B B2 Plain

17) wil: T G3 B3 Wil

18) Felix: B B3 Grass

19) wil: B B3 Wil

20) Felix: S B2 Grass
T B3 G3 Grass
T B2 Y2 Plain

21) wil: M G1 Y2 Grass

22) Felix: S Y2 Plain
D B1 Plain B2 B2
M B1 B2 Wil
Catastrophe Wil Blue

23) wil: S G2 Y3
B G2 Grass
B G3 Wil
C Grass G

24) Felix: B Y1 Felix

25) wil: D G1 Wil B2 B2

26) Felix: T Y3 R3 Felix

27) wil: T G1 R1 B2

28) Felix: B Y1 Felix

29) wil: S G2 Wil
B R1 B2
B G1 Wil
	wil: Shoveling or homeworlds....shoveling or homeworlds...HOMEWORRLDS!!!

30) Felix: B Y1 Felix
	wil: Ya got me on the run here
	Felix: Bahahaha. Good choice!  We got a lot of snow too. 

31) wil: M G1 Wil B2
	Felix: I'm not quite sure how to finish the job yet though...

32) Felix: D Y1 Felix G3 Grass

33) wil: B G1 Wil

34) Felix: B Y2 Grass
	wil: Finishing is always tricky...even with a big advantage you have to be patient to administer it

35) wil: B G2 B2

36) Felix: Build Y2 Felix

37) wil: T G2 Y2 B2

38) Felix: Sacrifice Y2 Felix
Move Y1 Felix Wil
Move Y1 Felix Wil

39) wil: M G3 Wil B2
	wil: There ya go

40) Felix: Sacrifice Y2 Grass
Move Y1 Grass Felix
Move Y1 Felix Wil
Catastrophe Wil Yellow
	wil: We've left our homeworld to form a new colony in hooes of finding more peaceful neighbors
	wil: Freudian slip....we hope we find hooes too!
	Felix: Good luck on your quest to fine hooes! :) Since it's dangerous to leave this much fuel sitting in space without being monitored, I will go ahead and create a controlled fire to burn it all up. It's safer that way. I'm sure you understand. Bon voyage!
	Felix: Good game! The banker setup probably gave me an edge, but I sure had to work for it! I like having two at once with you. Care for a rematch?
	wil: You may start as many games as you like...try different openings.. I enjoy playing this game...
	wil: Look at my happy colony...they will survive..



29118)
Variants: "Hard time"
Started: 2016.1.24, Ended: 2016.3.9
Participants: endo (S), Simon (N)
Winner: endo

1) Simon: Homeworld R1 B3 G3
	Simon: I was away right after the previous challenge. Now trying to be more attentive. Have fun!

2) endo: Homeworld B1 Y2 G3

3) Simon: Build G1 Simon
	endo: Hehe, I seem to be winning a lot of ladder matches on time lately. Have a nice game!

4) endo: Build G1 Endo

5) Simon: Trade G1 Y1 Simon

6) endo: Trade G1 Y1 Endo

7) Simon: Build G1 Simon

8) endo: Build G1 Endo

9) Simon: Discover G1 Simon B2 B2

10) endo: Trade G1 B1 Endo

11) Simon: Build G1 B2

12) endo: Build B1 Endo

13) Simon: Build G1 Simon

14) endo: Discover B1 Endo Y3 Sheaf

15) Simon: Build G2 B2

16) endo: Sacrifice G3 Endo
Build B2 Sheaf
Build B2 Sheaf
Build B3 Endo

17) Simon: Trade G2 R2 B2

18) endo: Trade B3 G3 Endo

19) Simon: Sacrifice Y1 Simon
Move R2 B2 Sheaf

20) endo: Build B3 Endo

21) Simon: Build G2 B2

22) endo: Trade B3 R3 Endo

23) Simon: Trade G2 Y2 B2

24) endo: Build B3 Endo

25) Simon: Discover G1 B2 B3 B3

26) endo: Build R1 Endo

27) Simon: Attack B2 Sheaf

28) endo: Sacrifice R3 Endo
Attack B2 Sheaf
Attack R2 Sheaf
Pass

29) Simon: Build G2 B3

30) endo: Move R2 Sheaf B2

31) Simon: Build G2 B2

32) endo: Attack G2 B2

33) Simon: Sacrifice G3 Simon
Build G2 B3
Build G3 Simon
Build G3 B2

34) endo: Attack Y2 B2

35) Simon: Trade G1 R1 B2

36) endo: Attack R1 B2

37) Simon: Trade G2 R2 B3

38) endo: Sacrifice G3 Endo
Build G1 B2
Build G2 B2
Build R2 B2
Catastrophe B2 G

39) Simon: Build R3 B3

40) endo: Sacrifice Y2 B2
Move R1 B2 B3
Move R2 B2 B3
Catastrophe B3 R

41) Simon: Trade G2 R2 B3

42) endo: Trade B3 G3 Endo

43) Simon: Trade G3 B3 Simon

44) endo: Build R1 Endo

45) Simon: Build G1 B3

46) endo: Build G2 Endo

47) Simon: Build G2 Simon

48) endo: Discover G2 Endo G3 Stalk

49) Simon: Trade G2 Y2 Simon

50) endo: Build G2 Endo

51) Simon: Build G2 Simon

52) endo: Sacrifice G3 Endo
Build G3 Endo
Build G3 Stalk
Build Y1 Endo

53) Simon: Build Y1 Simon

54) endo: Sacrifice Y1 Endo
Move G3 Stalk B2

55) Simon: Build R2 B3

56) endo: Sacrifice G3 Endo
Build R3 Endo
Build R3 B2
Build R3 B2

57) Simon: Build G3 Simon

58) endo: Sacrifice G2 Stalk
Build G2 B2
Build G3 Endo

59) Simon: Discover G2 Simon Y2 Y2

60) endo: Sacrifice B2 Sheaf
Trade R3 Y3 Endo
Trade R3 Y3 B2

61) Simon: Move B3 Simon Y2

62) endo: Sacrifice Y3 Endo
Move G2 B2 Simon
Move G3 B2 Simon
Move Y3 B2 Simon
Catastrophe Simon G

	Simon: gg


29103)
Variants: "Hard time"
Started: 2016.1.25, Ended: 2016.1.27
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H Y3 B1 G3

2) Felix: Homeworld B3 R2 G3

3) wil: B G1 Wil

4) Felix: B G1 Felix

5) wil: T G1 B1 Wil

6) Felix: Trade G1 B1 Felix

7) wil: B G1 Wil

8) Felix: Build G1 Felix

9) wil: T G1 R1 Wil

10) Felix: Build B2 Felix

11) wil: B B2 Wil

12) Felix: Trade B2 Y2 Felix

13) wil: D B1 Wil G2 G2

14) Felix: Build B2 Felix

15) wil: B B2 Wil

16) Felix: Discover B1 Felix Y1 Rim

17) wil: B B3 G2

18) Felix: Build B3 Felix

19) wil: T B2 Y2 Wil

20) Felix: Move G1 Felix Rim

21) wil: S Y2 Wil
M B1 G2 Rim
M B1 Rim Felix
C Felix B
	wil: Whenever anyone trades for a transport ship you should look to see why...

22) Felix: Build B1 Rim

23) wil: B R1 Wil
	Felix: Sage advice, given too late!
	wil: Not for the next game... Ya gotta touch the stove, feel the pain...to cement the lesson...or I could tell you if you wish and let you change your move...would that be preferable?

24) Felix: Build B2 Rim
	Felix: Nah, I like to learn from my mistakes!

25) wil: T B3 Y3 G2

26) Felix: Move B1 Rim Felix

27) wil: B R1 Wil

28) Felix: Sacrifice B2 Rim
Trade Y2 R2 Felix
Trade G3 R3 Felix

29) wil: M R1 Wil Felix
C Felix R
	Felix: More firepower is always good, right? :)
	wil: Lol...



29105)
Variants: "Unrated"
Started: 2016.1.26, Ended: 2016.1.27
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld G3 B1 Y3

2) wil: H Y3 B2 G3

3) Felix: Build Y1 Felix

4) wil: B G1 Wil

5) Felix: Trade Y1 B1 Felix

6) wil: T G1 B1 Wil

7) Felix: Build B2 Felix

8) wil: B B2 Wil

9) Felix: Sacrifice Y3 Felix
Discover B1 Felix Y2 Y2
Discover B1 Y2 Y1 Y1
Move B1 Y1 Wil
Catastrophe Wil Blue

10) wil: B G1 Wil
	wil: Interesting risk...well see how it play oit

11) Felix: B B1 Felix

12) wil: D G1 Wil B2 B2

13) Felix: T B2 Y2 Felix
	Felix: I hope it pays off, but I have my doubts.

14) wil: B G1 Wil

15) Felix: Build Y1 Felix

16) wil: B G1 Wil

17) Felix: Discover Y1 Felix G2 Gambit

18) wil: M G1 Wil Gambit

19) Felix: Build Y1 Gambit

20) wil: B G2 Gambit

21) Felix: Move Y1 Gambit Wil

22) wil: S G3 Wil
B G2 Gambit
B G3 B2
B G3 Wil

23) Felix: Move Y1 Gambit Wil
Catastrophe Gambit Green

24) wil: T G3 R3 B2

25) Felix: Discover Y2 Felix G2 Oust
	wil: All dicey...move by move
	wil: Tiptoe, thru the tulips..

26) wil: M G3 Wil B2
	Felix: Haha. I know, the last handful of moves have been so tense! 
	wil: Very nice..

27) Felix: Move Y2 Oust Wil
Catastrophe Wil Yellow
	wil: This system is too pollutes from uae of fossil fuels and refi ing waste from petroleum products... We are moving on to a clean one rather than take care of our own..you may have it...it is now a superfund site
	Felix: I suppose I will just stay and clean up this mess. Another controlled burn ought to do it. It's unfortunate you were unable to evacuate your small construction vessel, but the loss will benefit the greater good of the galaxy's stability.
	Felix: Frankly I'm surprised my risk paid off. I thought I was done for!
	wil: This is where I wish we could backup.to move x and retry various endings...gg
	wil: Good job cleaning up the mess.,.now the debris is propelling itself through the galaxy



29120)
Variants: "Hard time"
Started: 2016.1.27, Ended: 2016.2.4
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y3 B1 G3

2) wil: H Y3 B2 G3
	Felix: More! More! I hope you don't mind so many games against me. Few people make moves on here as regularly as you do, and playing against you is definitely helping me improve!
	wil: More games...more games...start as many as you like...as long as the choice is shoveling out car spaces or playing...I'll play

3) Felix: Build G1 Felix

4) wil: B G1 Wil
	Felix: Definitely the better choice :) I work on a computer all day for my job, so this gives me a nice little break now and then.

5) Felix: Trade G1 B1 Felix

6) wil: T G1 B1 Wil

7) Felix: Build B2 Felix

8) wil: B B2 Wil

9) Felix: D B1 Felix G2 Cintas

10) wil: T B1 Y1 Wil

11) Felix: Build G1 Felix

12) wil: B Y1 Wil

13) Felix: Trade G1 Y1 Felix

14) wil: T Y1 R1 Wil

15) Felix: Build G1 Felix

16) wil: D B2 Wil G1 G1

17) Felix: Trade B2 R2 Felix

18) wil: B R1 Wil

19) Felix: Discover G1 Felix B2 Efrit

20) wil: M Y1 Wil G1

21) Felix: Move R2 Felix Efrit

22) wil: M B2 G1 Cintas

23) Felix: B B1 Cintas

24) wil: T B2 R2 Cintas

25) Felix: Build G1 Felix

26) wil: A B1 Cintas

27) Felix: Build B2 Cintas

28) wil: A B2 Cintas

29) Felix: Build B3 Cintas

30) wil: B G2 Wil
C Cintas B

31) Felix: S G3 Felix
B G2 Efrit
B G3 Efrit
B G3 Felix

32) wil: S G3 Wil
B G3 Wil
B Y1 G1
B Y2 G1

33) Felix: Trade G2 Y2 Efrit

34) wil: S Y2 G1
M Y1 G1 Cintas
D Y1 G1 B2 B2

35) Felix: Build Y2 Efrit

36) wil: S G2 Wil
B Y2 Cintas
B Y3 B2

37) Felix: Sacrifice Y2 Efrit
Move G3 Efrit Felix
Move G3 Felix Cintas

38) wil: S Y2 Cintas
M Y1 Cintas Felix
M Y1 B2 Felix
C Felix Y

39) Felix: Trade G1 R1 Felix

40) wil: D R1 Wil Y1 Y1

41) Felix: Sacrifice R1 Felix
Attack R2 Cintas
	Felix: Oops

42) wil: B G1 Wil

43) Felix: Build G1 Efrit

44) wil: D G1 Wil Y1 Why1

45) Felix: Move R2 Efrit Why1

46) wil: B G2 Wil

47) Felix: Attack G1 Why1

48) wil: M Y3 B2 Why1

49) Felix: Build G2 Why1

50) wil: M G2 Wil Y1

51) Felix: Move Y2 Efrit Why1

52) wil: M Y3 Why1 Efrit
	wil: Nice distraction

53) Felix: Trade G1 Y1 Efrit
	Felix: I tried :)

54) wil: S R1 Y1
A G1 Efrit
	wil: You did, and it was admirable, and I almost missed it.

55) Felix: Sacrifice G2 Why1
Build Y2 Efrit
Build Y2 Efrit
Catastrophe Efrit Yellow

56) wil: B G1 Wil

57) Felix: S G3 Cintas
B G2 Felix
B G3 Why1
B Y1 Why1

58) wil: T G3 Y3 Wil

59) Felix: Trade G2 Y2 Felix

60) wil: B R1 Wil

61) Felix: Sacrifice Y2 Felix
Move Y1 Why1 Wil
Move Y2 Why1 Wil
Catastrophe Wil Yellow

62) wil: B G2 Wil

63) Felix: M G3 Why1 Wil
	Felix: Ah, ah, ah, ah, stayin' alive, stayin' alive...

64) wil: S G2 Y1
B G2 Wil
B G3 Efrit
C Wil G
	wil: I wish I was!

65) Felix: M R2 Why1 Wil

66) wil: S G1 Efrit
B R1 Wil
C Wil R
	wil: Gg

	Felix: And you! I'm surprised I recovered after you took out half my homeworld
	wil: It was my mistake... One should never take out half without a plan in place for the first other half....impatience is a problem with this one...
	wil: Self destruction is not allowed in this game.. I do like finding gapsin the programming
	Felix: So you can self-destruct through a catastrophe?
	wil: Not always... I don't know the criteria... I just know I periodically get away with it...  But not always... I have also got away with evacuating or sacrificing...it is simply a slightly more satisfying end to a loss
	Felix: Yeah. You are the captain of your fate, and all :)
	wil: That is disconcerting.... I miss blame...


29135)
Variants: "Unrated"
Started: 2016.1.27, Ended: 2016.2.1
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H G2 B1 R3

2) Felix: Homeworld R3 G2 Y3 *
	Felix: Interesting open! I want to try a unique one too...

3) wil: B R1 Wil

4) Felix: Build Y1 Felix

5) wil: T R1 B1 Wil

6) Felix: Discover Y1 Felix G1 Petri

7) wil: T B1 Y1 Wil

8) Felix: Build Y1 Petri

9) wil: B Y2 Wil

10) Felix: B Y2 Felix

11) wil: D Y1 Wil G3 G3

12) Felix: Discover Y2 Felix B1 Algae

13) wil: B Y2 Wil

14) Felix: Move Y1 Petri G3

15) wil: D Y2 Wil G3 Gee3

16) Felix: Trade Y2 B2 Algae

17) wil: B R1 Wil

18) Felix: Sacrifice Y1 G3
Move B2 Algae Felix

19) wil: M Y1 G3 Petri

20) Felix: D Y1 Petri G3 Dish

21) wil: M R1 Wil Dish

22) Felix: Build Y1 Felix

23) wil: A Y1 Dish

24) Felix: Trade Y1 R1 Felix

25) wil: B R1 Wil

26) Felix: Build B1 Felix

27) wil: B R2 Wil

28) Felix: M B2 Felix Petri

29) wil: B R2 Dish

30) Felix: Move R1 Felix Petri

31) wil: S R1 Dish
A R1 Petri

32) Felix: Build B1 Felix
	wil: Petri dish...one of my favorite unpublished pyramid games

33) wil: M R2 Dish Petri
	Felix: I've never played it.
	Felix: But it's going to be a part of the upcoming Pyramid Arcade!
	wil: Yez...

34) Felix: Build B2 Felix

35) wil: A B2 Petri

36) Felix: D B2 Felix Y1 Out

37) wil: M R2 Wil Dish

38) Felix: Trade B1 G1 Felix

39) wil: B Y2 Petri

40) Felix: Discover G1 Felix B1 Apophis

41) wil: B Y3 Wil

42) Felix: Build G1 Apophis

43) wil: B Y3 Dish

44) Felix: Build G2 Apophis

45) wil: M Y2 Gee3 Apophis

46) Felix: Sacrifice G2 Apophis
Build B2 Out
Build B3 Felix

47) wil: B B3 Petri

48) Felix: Trade B3 R3 Felix

49) wil: S Y2 Wil
M R2 Petri Felix
M R1 Petri Felix
C Felix R

	wil: There is trouble... Right here in river city
	wil: If he grows a yellow I kill them all...if he grows a blue I kill them... If he does nothing..I'll win the game...imminent danger...
	Felix: Doesn't look good. I'm out of here!


29086)
Variants: "Unrated"
Started: 2016.1.29, Ended: 2016.2.4
Participants: Felix (S), random56 (N)
Winner: Felix

1) random56: Homeworld G3 B2 Y3

2) Felix: Homeworld Y3 B1 G3
	Felix: Hey there. Good luck to you!

3) random56: Build Y1 Random56

4) Felix: B G1 Felix

5) random56: Discover Y1 Random56 G1 Go39

6) Felix: Discover G1 Felix B2 Rim

7) random56: Build Y1 Go39

8) Felix: Build G1 Felix

9) random56: Build Y1 Go39

10) Felix: Build G2 Rim

11) random56: Move Y1 Go39 Rim

12) Felix: Trade G2 R2 Rim

13) random56: Build Y2 Random56

14) Felix: A Y1 Rim

15) random56: Trade Y2 R2 Random56

16) Felix: B G2 Rim

17) random56: Move R2 Random56 Go39

18) Felix: B G2 Rim

19) random56: Build Y2 Random56

20) Felix: B Y2 Rim

21) random56: Build R1 Go39

22) Felix: Discover G2 Rim B1 Gate

23) random56: Sacrifice Y2 Random56
Move R2 Go39 Rim
Move R2 Rim Gate

24) Felix: S G3 Felix
B G2 Rim
B G3 Gate
B G3 Felix

25) random56: Attack G2 Gate

26) Felix: S R2 Rim
A R2 Gate
A G2 Gate

27) random56: Build Y2 Random56

28) Felix: M Y1 Rim Gate

29) random56: Move R1 Go39 Random56

30) Felix: S G3 Felix
B Y2 Rim
B Y3 Gate
B G3 Felix

31) random56: Build R1 Random56

32) Felix: S Y2 Rim
M Y1 Gate Random56
M Y3 Gate Random56
C Random56 Yellow

33) random56: Trade R1 Y1 Random56

34) Felix: Sacrifice Y2 Rim
Move G3 Gate Random56
Move R2 Gate Random56

35) random56: Build Y2 Random56

36) Felix: Sacrifice R2 Random56
Attack R1 Random56
Attack Y2 Random56

37) random56: Build Y2 Go39
	Felix: And I believe that's it. Good game. For next time, a good tip would be to try to not let me get all of one color (like green). If you get locked out of a particular color, it will make things very difficult for you. Cheers! And rematch me any time.

38) Felix: Attack Y1 Random56
	random56: Thanks for the tip,  I really wanna get better. And good game. 
	Felix: I'm not totally advanced myself, but I am happy to help you get better. Make sure you get all of the colors if possible. If you see that there is only one small of a particular color left, and you don't have that color yet, try to trade one of your smalls for it. That's a good general rule, but you shouldn't necessarily always do that, depending on the circumstances.
	Felix: As a beginner, it's also a good rule of thumb to always start with a large green ship. This allows you to set up what's called a "factory" which is what I have in my homeworld right now. Late in the game, you can sacrifice your G3, then rebuild it and build two other ships elsewhere. It's a great way to get an edge over your opponent.
	Felix: Also, using a small and medium for your homeworld is good as a beginner. This is called the "banker" setup and it allows you easier access to large stars that you can potentially trade in later for large ships. Finally, it's always a good idea to try to get a red ship whenever your opponent does. If he has a red ship and you do not, that means trouble!



29153)
Variants: "Unrated"
Started: 2016.1.31, Ended: 2017.3.15
Participants: wil (S), YsdkRichard (N)
Winner: wil

1) YsdkRichard: Homeworld G3 B2 R3

2) wil: H Y3 B1 G3

3) YsdkRichard: Build R1 Ysdkrichard
	wil: An attack ship in my galaxy... This is a peaceful system....
	YsdkRichard: This is my first time playing lol
	YsdkRichard: This is my first time playing lol
	YsdkRichard: you should help me out with the commands lol. How do I know what the system name is?
	YsdkRichard: you should help me out with the commands lol. How do I know what the system name is?

4) wil: B G1 Wil
	YsdkRichard: Oh yay I did it!

5) YsdkRichard: Trade R1 Y1 Ysdkrichard

6) wil: T G1 B1 Wil

7) YsdkRichard: Build R1 Ysdkrichard

8) wil: B B1 Wil

9) YsdkRichard: Trade R1 G1 Ysdkrichard
	wil: I am sorry....missed all your notes... First lesson....don't let the other guy monopolize any economy . 
	wil: I am sorry....missed all your notes... First lesson....don't let the other guy monopolize any economy . 
	wil: This is a great game ...lose about ten times and you'll begin to grasp it.
	YsdkRichard: okie thanks :)

10) wil: D B1 Wil G2 G2
	King: hi?
	King: homeworld g3 b2 y3
	wil: Howdy king...you'll have to start a new game to challenge



29095)
Started: 2016.2.1, Ended: 2016.2.4
Participants: ts52 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y1 G3
	Felix: Hello again :) Good luck!

2) ts52: Homeworld B2 Y3 G3
	ts52: Greetings! :) Have a good game!

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: Trade G1 Y1 Felix

6) ts52: Build G1 Ts52

7) Felix: Build Y1 Felix

8) ts52: Discover G1 Ts52 B1 Gonzo

9) Felix: Trade Y1 B1 Felix

10) ts52: Trade G1 Y1 Ts52

11) Felix: Build Y2 Felix

12) ts52: Build Y2 Ts52

13) Felix: Trade Y1 R1 Felix

14) ts52: Trade Y1 R1 Ts52

15) Felix: Discover B1 Felix G2 Rim

16) ts52: Build G1 Gonzo

17) Felix: Build B1 Rim

18) ts52: Move Y2 Ts52 Gonzo

19) Felix: Build B2 Rim

20) ts52: Build Y1 Gonzo

21) Felix: Trade B2 Y2 Rim

22) ts52: Discover G1 Gonzo Y3 Bigbird

23) Felix: Discover B1 Rim G3 Bank

24) ts52: Build G1 Ts52

25) Felix: Build G2 Felix

26) ts52: Build G2 Gonzo

27) Felix: S G3 Felix
B G3 Felix
B B2 Bank
B B2 Rim

28) ts52: Discover Y2 Gonzo R2 Elmo

29) Felix: Sacrifice G2 Felix
Build B3 Bank
Build B3 Rim

30) ts52: Sacrifice G2 Gonzo
Build Y1 Elmo
Build Y3 Gonzo

31) Felix: Trade B3 R3 Rim

32) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G2 Bigbird
Build G3 Ts52

33) Felix: Sacrifice Y2 Felix
Move B3 Bank Gonzo
Move R3 Rim Gonzo

34) ts52: Move Y3 Gonzo Bank

35) Felix: Sacrifice G3 Felix
Build B3 Gonzo
Build R1 Gonzo
Build R2 Felix

36) ts52: Sacrifice Y2 Elmo
Move Y3 Bank Elmo
Move Y3 Elmo Felix

37) Felix: S Y2 Rim
M B3 Gonzo Ts52
M B3 Gonzo Ts52

38) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build G3 Gonzo

39) Felix: Sacrifice R3 Gonzo
Attack G3 Ts52
Attack R2 Ts52
Attack R1 Ts52

40) ts52: Trade G3 R3 Gonzo

41) Felix: Attack G1 Ts52

	Felix: Thank you! Great game. 
	Felix: Up for a rematch? I always am.
	ts52: Always up for a rematch!


29197)
Variants: "Unrated"
Started: 2016.2.1, Ended: 2016.2.8
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y1 G3

2) wil: H Y2 B1 G3
	wil: There e is

3) Felix: Build G1 Felix
	Felix: Hehe.

4) wil: B G1 Wil

5) Felix: Trade G1 B1 Felix

6) wil: T G1 B1 Wil

7) Felix: Build B2 Felix

8) wil: B B2 Wil

9) Felix: Discover B2 Felix G2 Luno

10) wil: T B2 Y2 Wil

11) Felix: Build B2 Luno

12) wil: B Y1 Wil

13) Felix: Trade B2 Y2 Luno

14) wil: D Y2 Wil G3 G3

15) Felix: Build B2 Luno

16) wil: T Y1 R1 Wil

17) Felix: Trade B1 R1 Felix

18) wil: M B1 Wil G3

19) Felix: D B2 Luno Y3 Orbit

20) wil: B G1 Wil

21) Felix: Build G1 Felix

22) wil: B Y1 G3

23) Felix: Build Y1 Luno

24) wil: T Y2 R2 G3

25) Felix: Discover Y2 Luno G1 Brink

26) wil: B G2 Wil

27) Felix: S G3 Felix
B G2 Felix
B G3 Felix
B Y2 Brink

28) wil: S G3 Wil
B G3 Wil
B Y3 G3
B B1 G3

29) Felix: S G3 Felix
B G3 Felix
B Y3 Luno
B B2 Orbit

30) wil: S Y3 G3
M G1 Wil Orbit
M G1 Orbit Luno
M G1 Luno Felix
C Felix G

31) Felix: Build B3 Luno

32) wil: B Y3 G3

33) Felix: Sacrifice Y2 Brink
Move Y2 Brink G3
Move Y1 Luno G3
Catastrophe G3 Yellow

34) wil: T B1 Y1 G3
	wil: Why am I so blind sometimes?

35) Felix: Move B3 Luno Felix
	Felix: I looked like easy prey :) I don't blame your eagerness!

36) wil: B R1 Wil

37) Felix: Trade B3 G3 Felix

38) wil: D G2 Wil B3 B3

39) Felix: Build R2 Felix

40) wil: B G1 Wil

41) Felix: Move Y3 Luno B3

42) wil: B G1 B3

43) Felix: Sacrifice R2 Felix
Attack G2 B3
Attack G1 B3

44) wil: B R2 G3

45) Felix: Sacrifice Y3 B3
Move G1 B3 Wil
Move G2 B3 Wil
Move B2 Orbit Wil
Catastrophe Wil Green

	Felix: Hullo. We noticed your system had an overabundance of construction technology, but your small and medium stars do not seem capable of supporting such growth. In order to help control your population and maintain stability in your sector, we had to remove some of your facilities from the area. I do hope you understand. We have left one of our conversion vessels in the area to aid in the clean up. They will also be inspecting your weaponry and potentially converting said weapons into dust. Still in the interest of maintaining stability and peace in your system. I do hope you understand and appreciate our neighborly interest.
	wil: Uh..oh...


28931)
Variants: "Hard time"
Started: 2016.2.1, Ended: 2016.2.4
Participants: Felix (S), SilentTitan (N)
Winner: Felix



29180)
Variants: "Unrated"
Started: 2016.2.4, Ended: 2016.2.7
Participants: random56 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3

2) random56: Homeworld Y1 B2 G3
	Felix: Good luck and let me know if you have any questions!

3) Felix: Build G1 Felix

4) random56: Build G1 Random56

5) Felix: Trade G1 B1 Felix

6) random56: Build G1 Random56

7) Felix: Build G1 Felix

8) random56: Discover G1 Random56 B3 Zal

9) Felix: Discover G1 Felix B1 Ichor

10) random56: Trade G1 R1 Random56

11) Felix: Trade B1 R1 Felix

12) random56: Build G1 Zal

13) Felix: Build G2 Felix

14) random56: Build G2 Random56

15) Felix: Trade G2 B2 Felix

16) random56: Build G2 Random56

17) Felix: Build G2 Ichor

18) random56: Build G3 Zal

19) Felix: Build B1 Felix

20) random56: Trade G1 Y1 Zal

21) Felix: Build G1 Felix

22) random56: Sacrifice G3 Zal
Build G3 Zal
Build Y1 Zal
Build Y2 Zal

23) Felix: Trade G2 Y2 Ichor

24) random56: Trade G2 B2 Random56

25) Felix: Build Y3 Ichor

26) random56: Discover Y1 Zal G2 Hco3

27) Felix: Discover Y2 Ichor G2 Maia

28) random56: Build Y3 Hco3

29) Felix: Build Y3 Maia
	random56: if i have a red ship in a system and you do not can you use the red power too? 

30) random56: Sacrifice Y3 Hco3
Move B2 Random56 Zal
Move B2 Zal Ichor
Move B2 Ichor Felix
Catastrophe Felix B
	Felix: No, I cannot. I can only use the powers of the ships that I own, or of the star itself. However, I CAN sacrifice a red ship from a different system and use a non-red to attack. For instance, I could sacrifice my r1 in my homeworld and attack with another ship in another system using that sacrifice action. Make sense?
	random56: yes


31) Felix: Sacrifice Y2 Maia
Move G1 Ichor Zal
Move G1 Felix Zal
Catastrophe Zal Green

32) random56: Discover Y1 Hco3 G3 Pco2
	Felix: Hey, nice move.

33) Felix: Move Y3 Maia Pco2

34) random56: Build G1 Random56

35) Felix: Sacrifice Y3 Ichor
Move G3 Felix Pco2
Move G3 Pco2 Random56
Move Y3 Pco2 Random56
Catastrophe Random56 Green

36) random56: Move Y1 Zal Random56

37) Felix: Trade Y3 R3 Random56

38) random56: Build Y2 Pco2
	random56: Sorry, I am afraid I have lost but I am still trying to see a solution 

39) Felix: Attack R1 Random56

40) random56: Move Y1 Pco2 Random56
	Felix: I think I got you, but it was a very close game! And it's always good to look hard for a way out. Sometimes there is one even when it seems like there isn't.

41) Felix: Trade R3 Y3 Random56
Catastrophe Random56 Yellow
	Felix: Very close. Feel free to challenge me again!
	random56: Thanks for the game, I will



29085)
Variants: "Hard time"
Started: 2016.2.4, Ended: 2016.2.9
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld Y1 B2 G3

2) Felix: Homeworld B1 Y3 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	Felix: You too!

4) Felix: Build G1 Felix

5) ts52: Discover G1 Ts52 B3 Gonzo

6) Felix: Trade G1 B1 Felix

7) ts52: Build G1 Ts52

8) Felix: Build B1 Felix

9) ts52: Trade G1 Y1 Ts52

10) Felix: Trade B1 Y1 Felix

11) ts52: Build Y2 Ts52

12) Felix: Build Y2 Felix

13) ts52: Move Y2 Ts52 Gonzo

14) Felix: Discover Y2 Felix G2 Ichor

15) ts52: Build G1 Ts52

16) Felix: Build G1 Felix

17) ts52: Build G2 Gonzo

18) Felix: Move G1 Felix Ichor

19) ts52: Trade G2 R2 Gonzo

20) Felix: Trade Y1 R1 Felix

21) ts52: Build G2 Gonzo

22) Felix: B G2 Felix

23) ts52: Discover G2 Gonzo Y2 Bigbird

24) Felix: Sacrifice G2 Felix
Build G2 Ichor
Build G3 Felix

25) ts52: Move G1 Gonzo Ichor
Catastrophe Ichor G

26) Felix: Move G3 Felix Bigbird

27) ts52: Build G1 Bigbird

28) Felix: Move G3 Bigbird Gonzo

29) ts52: Move R2 Gonzo Bigbird

30) Felix: S R1 Felix
A Y2 Gonzo

31) ts52: Discover G2 Bigbird B3 Grover

32) Felix: B G1 Gonzo

33) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G2 Grover
Build G3 Ts52

34) Felix: Sacrifice G3 Gonzo
Build G3 Gonzo
Build Y1 Gonzo
Build B1 Felix

35) ts52: Move Y1 Ts52 Grover

36) Felix: Sacrifice Y2 Gonzo
Move G3 Gonzo Ts52
Move G1 Gonzo Ts52
Catastrophe Ts52 Green
	Felix: I think you may have missed that... Good game though!
	ts52: Yep, totally missed it. Well played! Good game. Happy to play another any time.



29236)
Variants: "Unrated"
Started: 2016.2.7, Ended: 2016.3.1
Participants: Felix (S), random56 (N)
Winner: Felix

1) random56: Homeworld B1 Y2 G3

2) Felix: H B3 G2 Y3

3) random56: Build G1 Random56

4) Felix: Build Y1 Felix

5) random56: Build G1 Random56

6) Felix: T Y1 G1 Felix

7) random56: Discover G1 Random56 B3 A1c

8) Felix: B G2 Felix

9) random56: Sacrifice G3 Random56
Build G2 Random56
Build G3 A1c
Build G3 A1c

10) Felix: Discover G2 Felix B1 Door

11) random56: Trade G1 Y1 Random56

12) Felix: Build Y1 Felix

13) random56: Trade G1 Y1 A1c

14) Felix: Move Y1 Felix Door

15) random56: Sacrifice G3 A1c
Build G1 A1c
Build G1 A1c
Build G3 Random56

16) Felix: Move G2 Door A1c
Catastrophe A1c Green

17) random56: Trade Y1 G1 A1c

18) Felix: Build Y1 Felix

19) random56: Build Y2 Random56

20) Felix: M G1 Felix Door

21) random56: Discover Y1 Random56 G3 Fio2

22) Felix: Build Y2 Door

23) random56: Sacrifice G3 Random56
Build Y3 Random56
Build Y3 Fio2
Build G1 A1c

24) Felix: Build G2 Door

25) random56: Discover Y2 Random56 G3 Aki

26) Felix: Trade Y1 R1 Felix

27) random56: Trade G2 R2 Random56

28) Felix: Discover G2 Door B3 Gate

29) random56: Build Y1 Aki
	random56: I'm sorry it took me so long

30) Felix: Build G2 Door

31) random56: Build G3 A1c
	Felix: That's okay. Better late than never!

32) Felix: Move G1 Door A1c
Catastrophe A1c Green

33) random56: Discover Y1 Aki G1 Help

34) Felix: Move Y2 Door Gate

35) random56: Move Y1 Fio2 Help

36) Felix: Move Y1 Door Gate

37) random56: Trade Y3 R3 Random56

38) Felix: Trade Y1 R1 Gate

39) random56: Build Y1 Help

40) Felix: Move R1 Gate Random56



29152)
Variants: "Hard time"
Started: 2016.2.8, Ended: 2016.2.14
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H Y2 B1 G3

2) Felix: Homeworld B1 G2 B3 *

3) wil: B G1 Wil

4) Felix: Build B1 Felix

5) wil: B G1 Wil
	Felix: These should both be fast games...

6) Felix: Trade B3 G3 Felix

7) wil: T G1 R1 Wil

8) Felix: Build B2 Felix

9) wil: B R1 Wil

10) Felix: Trade B2 R2 Felix

11) wil: D R1 Wil B3 B3
	wil: Lol.,I didn't notice short uni
	wil: And I think I already list the other one

12) Felix: Build B2 Felix
	Felix: Yeah, I was a bit obnoxious by starting to small universe games. *shrug* I like to change things up a bit sometimes. And you may not have lost the other! I am very prone to mistakes :)

13) wil: B R1 Wil

14) Felix: Build R2 Felix

15) wil: B R2 Wil

16) Felix: Build R3 Felix

17) wil: S G1 Wil
B R3 B3

18) Felix: T R3 Y3 Felix

19) wil: T R1 Y1 B3

20) Felix: Discover B2 Felix G3 Nomans

21) wil: T R2 B2 Wil

22) Felix: Build B2 Nomans

23) wil: B G1 Wil

24) Felix: B B3 Felix

25) wil: T R3 B3 B3

26) Felix: T B3 Y3 Felix

27) wil: M G1 Wil B3

28) Felix: S Y3 Felix
M B1 Felix B3
M B2 Nomans Felix
M B2 Felix B3
C B3 Blue

29) wil: D B2 Wil Y3 Y3

30) Felix: Move G3 Felix Y3

31) wil: D B2 Y3 Y2 Y2

32) Felix: Discover Y3 Felix B3 Fulcrum

33) wil: B G1 Wil

34) Felix: Trade R2 Y2 Felix

35) wil: T G1 Y1 Wil

36) Felix: Sacrifice Y2 Felix
Move Y3 Fulcrum Wil
Move G3 Y3 Wil

37) wil: A G3 Wil

38) Felix: Build R1 Felix

39) wil: A Y3 Wil
	wil: I think you missed one step...
	wil: Did I miss something or did you need just a tad more patience?
	Felix: Dang it. Nope, you didn't miss anything. I just messed up. I didn't account for not being able to sacrifice my r2 at home...

40) Felix: T R2 Y2 Felix
	wil: Yez....can't sacrifice control of your homeworld to kill me... Your team would not exist before the attack would occur.

41) wil: M Y3 Wil Nomans

42) Felix: B Y1 Felix

43) wil: D Y1 Wil B3 B3

44) Felix: T Y2 G2 Felix

45) wil: T G3 R3 Wil
	Felix: Yep... I knew that, but I didn't look carefully enough for it. FAtal mistake!

46) Felix: T B2 Y2 Nomans

47) wil: S Y3 Nomans
M G3 Wil B3
M G3 B3 Felix
P
	wil: Yes these are the moments I wish we could say, Hey lets finish this game, buy back up to move 20 and play again.

48) Felix: S Y2 Nomans
M R1 Felix B3
M R1 B3 Wil
C Wil Red
	Felix: Yeah, same

	Felix: We both made mistakes I guess. Good game! Very intense!


29217)
Variants: "Unrated"
Started: 2016.2.8, Ended: 2016.2.14
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 Y1 G3 *

2) wil: H G3 Y1 Y3 *
	Felix: I feel like trying some new things :)
	wil: Oh boy...

3) Felix: Build G1 Felix

4) wil: B Y1 Wil

5) Felix: Discover G1 Felix B2 Zimmer

6) wil: M Y1 Wil Zimmer

7) Felix: Trade G1 R1 Zimmer

8) wil: D Y1 Zimmer G3 G3

9) Felix: Build G1 Felix

10) wil: B Y2 G3

11) Felix: M G1 Felix Zimmer

12) wil: M Y2 G3 Zimmer

13) Felix: B R1 Zimmer

14) wil: T Y2 R2 Zimmer

15) Felix: Build R2 Zimmer
Catastrophe Zimmer Red

16) wil: B Y2 Wil

17) Felix: Build G1 Zimmer

18) wil: B Y2 G3

19) Felix: B G1 Felix

20) wil: M Y2 Wil Zimmer

21) Felix: D G1 Felix B2 Duluth

22) wil: T Y2 R2 Zimmer

23) Felix: B G2 Duluth

24) wil: A G1 Zimmer

25) Felix: Build G2 Felix

26) wil: A G1 Zimmer

27) Felix: Discover G2 Felix B2 Alazar

28) wil: M Y1 G3 Zimmer

29) Felix: Trade G2 Y2 Duluth
	Felix: It doesn't look good for me!
	wil: It does in the other game

30) wil: B Y2 G3

31) Felix: Build Y3 Duluth

32) wil: B Y3 Zimmer

33) Felix: B G2 Alazar

34) wil: T Y3 B3 Zimmer

35) Felix: M Y2 Duluth Wil

36) wil: S Y2 G3
M B3 Zimmer Wil
M Y3 Wil Alazar

37) Felix: S G2 Alazar
B Y2 Wil
B Y3 Wil
C Wil Yellow

38) wil: T G1 B1 Zimmer

39) Felix: S G2 Alazar
B G1 Duluth
B G2 Felix

40) wil: B G2 Zimmer

41) Felix: S Y3 Duluth
M G1 Duluth Wil
M G1 Duluth Wil
M G2 Felix Wil
C Wil Green

	wil: Sweet
	Felix: You have trained me well, Sensei!


29216)
Started: 2016.2.10, Ended: 2016.2.24
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld Y3 B2 G3

2) Felix: Homeworld Y1 B3 G3

3) ts52: Build G1 Ts52

4) Felix: Build G1 Felix

5) ts52: Trade G1 Y1 Ts52
	Felix: And here we go again. Have fun!
	ts52: Thanks! You too!

6) Felix: T G1 Y1 Felix

7) ts52: Build Y2 Ts52

8) Felix: B Y2 Felix

9) ts52: Discover Y1 Ts52 G1 Kermit

10) Felix: T Y1 B1 Felix

11) ts52: Build Y1 Ts52

12) Felix: Discover Y2 Felix G2 Bereth

13) ts52: Build G1 Ts52

14) Felix: Build B1 Felix

15) ts52: Trade Y1 B1 Ts52

16) Felix: Move B1 Felix Bereth

17) ts52: Move B1 Ts52 Kermit

18) Felix: Trade B1 R1 Felix

19) ts52: Trade G1 R1 Ts52

20) Felix: Build G1 Felix

21) ts52: Move Y2 Ts52 Kermit

22) Felix: D G1 Felix B2 Jogrit

23) ts52: Trade Y2 R2 Kermit

24) Felix: Build G1 Felix

25) ts52: Build G2 Ts52

26) Felix: Sacrifice G3 Felix
Build G2 Jogrit
Build G3 Jogrit
Build G3 Felix

27) ts52: Discover G2 Ts52 Y1 Bigbird

28) Felix: Sacrifice G3 Jogrit
Build G3 Felix
Build Y2 Bereth
Build B1 Bereth

29) ts52: Build Y2 Kermit

30) Felix: Trade G3 Y3 Felix

31) ts52: Build G3 Ts52

32) Felix: S Y2 Bereth
M G1 Jogrit Bigbird
M G1 Bigbird Ts52

33) ts52: Trade G3 R3 Ts52

34) Felix: S G2 Jogrit
B G2 Ts52
B G3 Ts52
C Ts52 Green

35) ts52: Trade R1 G1 Ts52

36) Felix: Discover G1 Felix Y2 Jigrit

37) ts52: Build Y3 Kermit

38) Felix: Move Y2 Bereth Kermit
Catastrophe Kermit Yellow

39) ts52: Build B2 Kermit

40) Felix: Trade B1 Y1 Bereth

41) ts52: Trade B2 Y2 Kermit

42) Felix: Build G2 Felix

43) ts52: Build G3 Ts52

44) Felix: S G3 Felix
B G3 Felix
B Y2 Felix
B Y3 Bereth

45) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Bigbird
Build R1 Ts52

46) Felix: M Y3 Bereth Kermit

47) ts52: Move R2 Kermit Bereth

48) Felix: M Y3 Felix Bereth

49) ts52: Sacrifice Y2 Kermit
Move R2 Bereth Bigbird
Discover B1 Kermit Y2 Zoe

50) Felix: S G3 Felix
B G3 Felix
B B1 Bereth
B R1 Felix

51) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Zoe
Build R2 Bigbird

52) Felix: M R1 Felix Bereth

53) ts52: Move R2 Bigbird Jigrit

54) Felix: Sacrifice G3 Felix
Build R2 Bereth
Build R3 Felix
Build G3 Jigrit

55) ts52: Build R3 Bigbird

56) Felix: Sacrifice R1 Felix
Attack R2 Jigrit
	Felix: I thought I saw a better move, but then I decided it wasn't better, so I made the same move, haha.
	ts52: Heh, no problem.

57) ts52: Move R3 Bigbird Zoe

58) Felix: Sacrifice Y2 Felix
Move R1 Bereth Kermit
Move G1 Jigrit Kermit

59) ts52: Trade B2 Y2 Zoe

60) Felix: Sacrifice Y3 Bereth
Move R2 Jigrit Kermit
Move R2 Kermit Ts52
Move R1 Kermit Ts52
Catastrophe Ts52 Red

61) ts52: Trade G3 R3 Ts52

62) Felix: Sacrifice G3 Jigrit
Build G3 Felix
Build Y2 Kermit
Build Y3 Bereth

63) ts52: Sacrifice G3 Bigbird
Build G3 Ts52
Build G3 Bigbird
Build B2 Zoe

64) Felix: Move G1 Kermit Ts52

65) ts52: Discover G3 Ts52 R1 Elmo

66) Felix: Sacrifice Y3 Kermit
Move Y1 Bereth Kermit
Move Y1 Kermit Zoe
Move Y2 Kermit Zoe
Catastrophe Zoe Yellow

67) ts52: Attack G1 Ts52

68) Felix: Sacrifice G3 Felix
Build G1 Felix
Build Y1 Bereth
Build G3 Felix

69) ts52: Trade G1 B1 Ts52

70) Felix: D B1 Bereth G1 Ocelot

71) ts52: Move B1 Ts52 Bigbird

72) Felix: M Y1 Bereth Ocelot

73) ts52: Sacrifice G3 Bigbird
Build G3 Bigbird
Build B2 Bigbird
Build R1 Bigbird

74) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Bereth
Build B3 Ocelot

75) ts52: Trade B2 Y2 Bigbird

76) Felix: Sacrifice G3 Felix
Build Y2 Ocelot
Build Y2 Ocelot
Build Y3 Bereth

77) ts52: Sacrifice G3 Bigbird
Build G3 Ts52
Build G3 Bigbird
Build B2 Bigbird

78) Felix: Sacrifice Y3 Bereth
Move Y1 Ocelot Ts52
Move Y2 Ocelot Ts52
Move Y2 Ocelot Ts52
Catastrophe Ts52 Yellow

79) ts52: Move G3 Bigbird Bereth

80) Felix: Sacrifice Y3 Bereth
Move B3 Ocelot Ts52
Move B1 Ocelot Ts52
Move B1 Bereth Felix

81) ts52: Sacrifice R3 Ts52
Attack B3 Ts52
Attack B1 Ts52
Attack R2 Bereth

82) Felix: Move B1 Felix Ts52
Catastrophe Ts52 Blue

	Felix: Really close one! Great game. I had fun!
	ts52: D'oh, I missed that one. Very good game! Thanks!


28963)
Variants: "Hard time"
Started: 2016.2.10, Ended: 2016.3.14
Participants: Felix (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B2 R1 G3

2) Felix: H Y3 B2 G3
	Simon: Hi again, have fun :)
	Felix: Hello! Thanks, you too!

3) Simon: Build G1 Simon

4) Felix: B G1 Felix

5) Simon: Trade G1 B1 Simon

6) Felix: Trade G1 R1 Felix

7) Simon: Build G1 Simon

8) Felix: B R1 Felix

9) Simon: Trade G3 R3 Simon

10) Felix: T R1 B1 Felix

11) Simon: Build R1 Simon

12) Felix: Build R2 Felix

13) Simon: Trade R3 Y3 Simon

14) Felix: T R2 Y2 Felix

15) Simon: Discover B1 Simon G3 G3

16) Felix: Discover B1 Felix G1 Rim

17) Simon: Build R2 Simon

18) Felix: Build R2 Felix

19) Simon: Move R2 Simon G3

20) Felix: Discover R2 Felix Y1 Spawn

21) Simon: Build Y1 Simon

22) Felix: Sacrifice G3 Felix
Build R2 Felix
Build R3 Felix
Build R3 Spawn

23) Simon: Build R3 G3

24) Felix: T R3 G3 Felix

25) Simon: Trade R2 Y2 G3

26) Felix: Move R2 Felix Rim

27) Simon: Build Y1 G3

28) Felix: Move Y2 Felix Rim

29) Simon: Discover R1 Simon B3 B3

30) Felix: Build G1 Felix

31) Simon: Build G2 Simon

32) Felix: Move R2 Spawn B3

33) Simon: Sacrifice G2 Simon
Build R2 G3
Build R3 B3

34) Felix: Build Y2 Rim

35) Simon: Discover Y1 G3 G2 G2

36) Felix: Discover Y2 Rim Y3 Stow

37) Simon: Sacrifice R1 B3
Attack R2 B3

38) Felix: Build R1 Rim

39) Simon: Build G2 Simon

40) Felix: Sacrifice Y2 Stow
Move R1 Rim G3
Move R2 Rim G3
Catastrophe G3 Red

41) Simon: Sacrifice G2 Simon
Build Y2 G2
Build Y3 G3

42) Felix: Move R3 Spawn G2

43) Simon: Sacrifice Y1 G2
Move Y2 G2 B3

44) Felix: Build Y1 Rim

45) Simon: Build G2 Simon

46) Felix: Discover G1 Felix B1 Cassa

47) Simon: Move G2 Simon B3

48) Felix: D Y2 Rim G3 Slit

49) Simon: Build Y1 B3

50) Felix: B G2 Felix

51) Simon: Move R2 B3 Rim

52) Felix: Move Y1 Rim Slit

53) Simon: Attack B1 Rim

54) Felix: M Y1 Slit Simon

55) Simon: Discover Y1 Simon R3 R3

56) Felix: D Y1 Simon B3 Slat

57) Simon: Build B2 G3

58) Felix: S Y1 Slat
M R3 G2 Rim

59) Simon: Build R1 Rim

60) Felix: Attack B1 Rim

61) Simon: Build R2 Rim
Catastrophe Rim R

62) Felix: Sacrifice G3 Felix
Build G2 Cassa
Build G3 Felix
Build B3 Rim

63) Simon: Build Y1 Simon

64) Felix: M Y2 Slit Rim

65) Simon: Build G3 B3

66) Felix: Move B3 Rim R3

67) Simon: Discover Y1 R3 R1 R1

68) Felix: S G3 Felix
B G3 Felix
B R2 Felix
B B3 Rim

69) Simon: Build R2 B3

70) Felix: Move R2 Felix Rim

71) Simon: Move G3 B3 R1

72) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R2 Felix
Build R3 Rim

73) Simon: Move G2 B3 R1

74) Felix: Move R3 Rim B3

75) Simon: Sacrifice R2 B3
Attack R3 B3
Pass

76) Felix: B R2 Rim
	Felix: Oh, nicely done!

77) Simon: Move R3 B3 Cassa

78) Felix: M B1 Rim R3
	Simon: hnn >_> the special defense against red
	Felix: Amazingly, I hadn't seen that defense used until now. It's obvious in retrospect. I have learned!

79) Simon: Move Y3 G3 Cassa

80) Felix: M B3 Rim G3

81) Simon: Sacrifice Y3 Simon
Move Y3 Cassa Felix
Move G3 R1 Felix
Move G2 R1 Felix
Catastrophe Felix G

82) Felix: Sacrifice Y2 Rim
Move R2 Rim Felix
Move R2 Rim Felix

83) Simon: Pass
Catastrophe Felix R
	Felix: Good game :)
	Simon: gg!



29104)
Variants: "Hard time"
Started: 2016.2.10, Ended: 2016.3.2
Participants: endo (S), Felix (N)
Winner: endo

1) Felix: Homeworld B3 Y2 G3

2) endo: Homeworld B1 Y3 G3
	Felix: Hello again! Still trying to sharpen my skills.... I hope you have fun!

3) Felix: Build G1 Felix
	endo: Hey, sorry for the late response. I'm certainly up for another game of Homeworlds, as I'm not really overflowing with Homeworlds matches at the moment :) Amazons, on the other hand...

4) endo: Build G1 Endo
	Felix: No problem! I need to play more Amazons. I tried it once and got trashed!

5) Felix: T G1 B1 Felix

6) endo: Trade G1 B1 Endo

7) Felix: Build B2 Felix

8) endo: Build B2 Endo

9) Felix: Discover B2 Felix G1 Rim

10) endo: Discover B1 Endo Y2 Site

11) Felix: T B1 R1 Felix

12) endo: Build B1 Endo

13) Felix: Build R1 Felix

14) endo: Discover B1 Endo G2 Topos

15) Felix: Trade G3 Y3 Felix
	Felix: I see where this is going. I think I've already messed up pretty badly...

16) endo: Build G1 Endo

17) Felix: B B2 Rim

18) endo: Build B3 Topos
	endo: Whoops... just realized you have a red sacrifice, so I can't do that just yet :)

Getting the reds was dangerous. No reds were gone from the bank yet, and since medium blues are available, there was no way for you to control red (which would be very powerful if you could do it, hovewer). Getting into the red economy a bit later in the game creates threats your opponent needs to respond to (typically by getting red himself), but here you weren't in range (no yellow sacrifices, no yellow on your G1 star), so I could continue creating more blue build capacity for myself. Being able to build a lot of ships in a color in which the large ships are going to be exposed in the bank is the main goal of the early game (and usually very useful later as well). I strongly believe Homeworlds is a first-player win with optimal play (draws are rare, and I don't think getting to see your opponent's homeworld choice before making yours can win you the game). That means you have to be extremely careful to make the moves that make the greatest difference, since throwing away even one move effectively makes your opponent the one going first.
	endo: Oh, and another thing: By trading away the last ship of a color on a star you lose your build capacity in that color on that star. Even if you get a new color, that's inferior to trading away one of two (or three) ships of the same color on the same star. So, in general, you should first build, then trade (two moves used, two colors available on that star), rather than trading before building (two moves used, but only one color available). In this case, even though red is a better color to build at your homeworld (because of the blue star), I didn't have immediate catastrophe threats, so you shouldn't have given up the blue ship there just yet. Continuing this logic, discovering new stars when you are supposed to get in some new color is something to avoid. It uses up TWO moves - one for building the ship you discover with, and another for the discovery itself. After the discovery, you are forced to either make a trade that does not increase the number of your color accesses (counting the same color on different stars separately), or risk giving your opponent a monopoly. That didn't happen in this game (blue was the color being contested, so splitting your blues was definitely correct), but see the initial moves in my ongoing ladder game against Simon for an example: http://superdupergames.org/?page=archive_play&gid=29118
	Felix: Wow, thanks so much for the detailed tips! I appreciate the help a lot. :) I'll keep that in mind in future and maybe have a better shot!

19) Felix: Trade B2 Y2 Rim

20) endo: Trade B3 R3 Topos

21) Felix: Trade R1 G1 Felix

22) endo: Trade G1 Y1 Endo

23) Felix: Build Y1 Felix

24) endo: Move Y1 Endo Topos

25) Felix: Trade Y3 G3 Felix

26) endo: Move R3 Topos Rim

27) Felix: Sacrifice Y2 Rim
Move B2 Rim Site
Move B2 Site Endo

28) endo: Sacrifice R3 Rim
Attack B2 Endo
Pass
Pass

29) Felix: Discover G3 Felix Y1 Flow

30) endo: Trade B2 R2 Endo

31) Felix: Build Y2 Felix

32) endo: Build Y3 Topos

33) Felix: Discover Y2 Felix G1 Oust

34) endo: Discover Y1 Topos Y3 Germ

35) Felix: B R1 Felix

36) endo: Build B2 Topos

37) Felix: Move G3 Flow Felix

38) endo: Sacrifice G3 Endo
Build B2 Site
Build B3 Endo
Build B3 Site

	Felix: I didn't do well at all. :) Time to keep practicing! Thanks for the tips and good game.


29218)
Variants: "Hard time"
Started: 2016.2.10, Ended: 2016.2.20
Participants: zmehaffey (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld R1 B2 G3
	zmehaffey: homeworld G3, B1

2) zmehaffey: H Y3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) zmehaffey: B G1 Zmehaffey

5) SilentTitan: Trade G1 Y1 Silenttitan

6) zmehaffey: D G1 Zmehaffey B2 Hornet

7) SilentTitan: Build Y1 Silenttitan



29272)
Variants: "Unrated"
Started: 2016.2.10, Ended: 2017.3.15
Participants: wil (S), zmehaffey (N)
Winner: wil

1) zmehaffey: Homeworld B3 Y2 G3

2) wil: H B3 Y1 G3
	wil: Ty 4 da game...gl

3) zmehaffey: B G1 Zmehaffey

4) wil: B G1 Wil

5) zmehaffey: D G1 Zmehaffey Y1 Hornet

6) wil: T G1 Y1 Wil

7) zmehaffey: B G1 Hornet

8) wil: B Y2 Wil

9) zmehaffey: B G1 Zmehaffey

10) wil: D Y1 Wil B2 B2

11) zmehaffey: D G1 Hornet B2 Fig

12) wil: S G3 Wil
B Y2 B2
B Y3 B2
B Y3 Wil

13) zmehaffey: B G2 Hornet

14) wil: T Y3 G3 Wil



29304)
Started: 2016.2.10, Ended: 2016.2.11
Participants: Felix (S), zmehaffey (N)
Winner: zmehaffey

1) zmehaffey: Homeworld B3 Y2 G3

2) Felix: H R3 B1 G3

3) zmehaffey: Build G1 Zmehaffey

4) Felix: B G1 Felix

5) zmehaffey: Trade G1 R1 Zmehaffey

6) Felix: T G1 Y1 Felix
	Felix: Hey there sexy pants

7) zmehaffey: Build G1 Zmehaffey

8) Felix: B Y1 Felix

9) zmehaffey: Discover G1 Zmehaffey B1 Brony

10) Felix: D Y1 Felix G2 Butts

11) zmehaffey: Build G1 Brony

12) Felix: B Y1 Felix

13) zmehaffey: B G1 Zmehaffey

14) Felix: B G2 Felix

15) zmehaffey: S G3 Zmehaffey
B G2 Brony
B G3 Zmehaffey
B G3 Zmehaffey

16) Felix: B Y2 Butts

17) zmehaffey: T G2 Y2 Brony

18) Felix: B Y3 Felix

19) zmehaffey: D G3 Zmehaffey R1 Harlem

20) Felix: T Y1 B1 Felix

21) zmehaffey: S G3 Zmehaffey
B G2 Harlem
B G3 Zmehaffey
B R1 Zmehaffey

22) Felix: M B1 Felix Butts
	zmehaffey: I just seen your flattering sexy pants statement 

23) zmehaffey: M Y2 Brony Butts
	Felix: I meant every word :) and you are whipping my butt so far.

24) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Butts
Build Y3 Felix
Catastrophe Butts Yellow
	zmehaffey: I feel like this might have been a bad idea. I will have no life for the next two weeks... lol
	Felix: Good, good.... mwahaha. My evil plan is working. Just remember, all good things in moderation! You're only allowed to play it while you're not working or loving on your wife. I work on a computer all day, so I have an excuse to play all the time :)

25) zmehaffey: T G1 Y1 Brony

26) Felix: Trade Y3 R3 Felix

27) zmehaffey: B Y1 Brony

28) Felix: Move R3 Felix Butts

29) zmehaffey: D Y1 Brony B3 Vince

30) Felix: Move Y3 Felix Butts

31) zmehaffey: B Y2 Brony

32) Felix: Discover G2 Felix B2 Pony

33) zmehaffey: B G1 Brony

34) Felix: Move Y3 Butts Brony

35) zmehaffey: S G3 Harlem
B G3 Harlem
B Y2 Brony
B Y3 Vince
C Brony Y

36) Felix: Build B2 Butts

37) zmehaffey: T Y3 R3 Vince

38) Felix: Trade B2 Y2 Butts

39) zmehaffey: S G3 Harlem
B G3 Harlem
B R2 Vince
B Y1 Vince

40) Felix: Sacrifice G3 Felix
Build G3 Pony
Build Y2 Butts
Build Y3 Felix

41) zmehaffey: M R2 Vince Harlem

42) Felix: Sacrifice G3 Pony
Build G3 Pony
Build B2 Butts
Build B2 Butts

43) zmehaffey: M R3 Vince Pony

44) Felix: Sacrifice R3 Butts
Attack R3 Pony
Pass
Pass

45) zmehaffey: M Y1 Vince Harlem

46) Felix: Move Y2 Butts Brony

47) zmehaffey: S G3 Harlem
B G3 Harlem
B Y3 Harlem
B Y3 Vince

48) Felix: Move B2 Butts Brony

49) zmehaffey: T Y3 R3 Vince

50) Felix: Trade B2 R2 Butts

51) zmehaffey: M R3 Vince Butts

52) Felix: Sacrifice R2 Butts
Attack G1 Brony
Attack G1 Brony

53) zmehaffey: S R2 Harlem
A B1S Butts
A Y2S Butts

54) Felix: Build Y3 Brony

55) zmehaffey: S Y3 Harlem
M Y2 Butts Felix
M Y1 Vince Butts
M Y1 Butts Felix
C Felix Y



29291)
Started: 2016.2.10, Ended: 2016.3.22
Participants: zmehaffey (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) zmehaffey: H G3 Y1 B3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	zmehaffey: You as well!

4) zmehaffey: B B1 Zmehaffey

5) ts52: Trade G1 Y1 Ts52

6) zmehaffey: B B1 Zmehaffey

7) ts52: Build Y1 Ts52

8) zmehaffey: D B1 Zmehaffey G2 Hornet

9) ts52: Discover Y1 Ts52 G1 Kermit

10) zmehaffey: B B1 Hornet

11) ts52: Build Y2 Ts52

12) zmehaffey: B B2 Zmehaffey

13) ts52: Trade Y2 B2 Ts52

14) zmehaffey: B B3 Hornet

15) ts52: Build B3 Ts52

16) zmehaffey: T B2 Y2 Zmehaffey

17) ts52: Move B3 Ts52 Kermit

18) zmehaffey: T B3 G3 Hornet

19) ts52: Build Y2 Kermit



29311)
Variants: "Hard time"
Started: 2016.2.11, Ended: 2016.2.24
Participants: Felix (S), zmehaffey (N)
Winner: Felix

1) zmehaffey: H B2 Y1 G3

2) Felix: H B1 Y3 G3

3) zmehaffey: B G1 Zmehaffey

4) Felix: Build G1 Felix

5) zmehaffey: T G3 R3 Zmehaffey

6) Felix: Trade G1 B1 Felix

7) zmehaffey: B G1 Zmehaffey

8) Felix: Build B1 Felix

9) zmehaffey: D G1 Zmehaffey Y3 Hornet

10) Felix: Discover B1 Felix G2 Turtle

11) zmehaffey: B R1 Zmehaffey

12) Felix: Build B2 Turtle

13) zmehaffey: B G1 Hornet

14) Felix: Build B2 Felix

15) zmehaffey: B G2 Zmehaffey

16) Felix: B B3 Turtle

17) zmehaffey: T R3 B3 Zmehaffey

18) Felix: T B2 Y2 Turtle

19) zmehaffey: B G2 Hornet

20) Felix: B G3 Felix

21) zmehaffey: B G3 Zmehaffey

22) Felix: D B1 Turtle R3 Rage

23) zmehaffey: M G3 Zmehaffey Rage

24) Felix: S G3 Felix
B G3 Felix
B B2 Rage
B B3 Turtle

25) zmehaffey: A B2 Rage

26) Felix: T B3 R3 Turtle

27) zmehaffey: S G3 Rage
B G3 Zmehaffey
B B3 Zmehaffey
B R1 Zmehaffey

28) Felix: S Y2 Turtle
M B1 Rage Zmehaffey
M R3 Turtle Hornet
C Zmehaffey Blue

29) zmehaffey: D G2 Hornet Y2 Killer
	Felix: Boom :)

30) Felix: Trade B2 Y2 Felix

31) zmehaffey: M G1 Zmehaffey Rage

32) Felix: Attack G1 Hornet

33) zmehaffey: S G3 Zmehaffey
B G3 Zmehaffey
B B1 Rage
B R1 Zmehaffey

34) Felix: S Y2 Felix
M R3 Hornet Zmehaffey
M G1 Hornet Zmehaffey
C Zmehaffey Red

35) zmehaffey: M G2 Zmehaffey Rage
	Felix: I have you now.

36) Felix: S G3 Felix
B G3 Zmehaffey
B B2 Turtle
Pass




29302)
Variants: "Hard time"
Started: 2016.2.11, Ended: 2016.2.14
Participants: SilentTitan (S), Felix (N)
Winner: Felix

1) Felix: H B3 Y2 G3
	Felix: Have fun!



29320)
Started: 2016.2.12, Ended: 2016.4.28
Participants: Nupanick (S), nycavri (N)
Winner: nycavri

1) nycavri: Homeworld Y1 B2 G3

2) Nupanick: Homeworld B1 G3 Y3
	nycavri: Let's see if I remember how to do this . . .
	nycavri: TaGG!

3) nycavri: Build G1 Nycavri
	Nupanick: Okay! Also, what's TaGG mean?
	nycavri: It's my toast, "To a Good Game!"

4) Nupanick: Build Y1 Nupanick

5) nycavri: D G1 Nycavri Y3 Deacon

6) Nupanick: Trade Y1 R1 Nupanick
	Nupanick: What's deacon mean?

7) nycavri: B G1 Nycavri
	nycavri: My first 4 systems will be Deacon, May, Mercury and Taylor . . .

8) Nupanick: Trade R1 G1 Nupanick

9) nycavri: B G2 Deacon
	Nupanick: Aw, hell, I can't believe I almost just got locked out of green.
	Nupanick: Aw, hell, I can't believe I almost just got locked out of green.
	Nupanick: Also, is that a reference to a band? Actors? I don't recognize the names.
	nycavri: It's the members of Queen . . .
	nycavri: It's the members of Queen . . .

10) Nupanick: Discover G1 Nupanick Y2 Discworld

11) nycavri: T G1 B1 Nycavri

12) Nupanick: Build Y1 Nupanick

13) nycavri: Move B1 Nycavri Deacon

14) Nupanick: Discover G1 Discworld B3 Chalkzone

15) nycavri: Trade G1 R1 Deacon

16) Nupanick: Trade Y1 R1 Nupanick

17) nycavri: Build G1 Deacon

	nycavri: *poke*


29238)
Variants: "Hard time"
Started: 2016.2.13, Ended: 2016.2.16
Participants: arcpollux (S), Felix (N)
Winner: Felix

1) Felix: H B3 Y2 G3

	Felix: Hi there. Thanks for the game, and have fun! Have you played this before?


29270)
Variants: "Unrated"
Started: 2016.2.13, Ended: 2016.2.17
Participants: Felix (S), arcpollux (N)
Winner: Felix



29329)
Variants: "Unrated"
Started: 2016.2.14, Ended: 2016.2.21
Participants: Felix (S), hunter547 (N)
Winner: Felix

	Felix: Hi there. Have a good game! Need any tips?


29269)
Variants: "Hard time"
Started: 2016.2.14, Ended: 2016.2.29
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H Y3 B1 G3

2) Felix: Homeworld B3 Y2 G3

3) wil: B G1 Wil
	Felix: Here we go again. Have fun!

4) Felix: B G1 Felix

5) wil: T G1 B1 Wil

6) Felix: T G1 B1 Felix

7) wil: B B2 Wil

8) Felix: B B2 Felix

9) wil: T B1 R1 Wil

10) Felix: Discover B1 Felix Y1 Spawn

11) wil: D B2 Wil Y2 Y2

12) Felix: Build B1 Felix

13) wil: B R1 Wil

14) Felix: Discover B2 Felix G1 Nascent

15) wil: B G1 Wil

16) Felix: Sacrifice G3 Felix
Build B2 Nascent
Build B3 Spawn
Build B3 Felix

17) wil: B G1 Wil
	Felix: I used to be super hesitant to get rid of my green at home, but I saw Endo do this in one of his games (against you, I think!) and it seemed pretty effective...

18) Felix: Sacrifice B2 Nascent
Trade B1 R1 Spawn
Trade B3 G3 Felix

19) wil: B R2 Wil

20) Felix: Sacrifice G3 Felix
Build B1 Nascent
Build B2 Spawn
Build B3 Felix

21) wil: T R2 Y2 Wil

22) Felix: Sacrifice B2 Nascent
Trade B3 G3 Felix
Trade B3 Y3 Spawn

23) wil: M B2 Y2 Nascent

24) Felix: Build G2 Felix

25) wil: D G1 Wil Y2 Y2

26) Felix: Sacrifice G3 Felix
Build B2 Spawn
Build B3 Spawn
Build B3 Nascent



29336)
Variants: "Hard time"
Started: 2016.2.14, Ended: 2016.2.29
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H B2 Y1 G3

2) Felix: Homeworld Y3 B1 G3

3) wil: B G1 Wil

4) Felix: B G1 Felix

5) wil: T G1 B1 Wil

6) Felix: T G1 B1 Felix

7) wil: B B2 Wil

8) Felix: B B2 Felix

9) wil: D B1 Wil Y3 Y3

10) Felix: Trade B2 Y2 Felix
	Felix: Ah, I know this game... :)


11) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil
	wil: Then that is the game we shall play

12) Felix: Sacrifice Y2 Felix
Discover B1 Felix Y2 Out
Move B1 Out Y3
Catastrophe Y3 Blue

13) wil: T B3 G3 Wil

14) Felix: Build G1 Felix

15) wil: B B1 Wil

16) Felix: Trade G1 B1 Felix
	Felix: Rats. That gave you an edge. I should have changed by mg to a y3 instead earlier.
	Felix: g3*

17) wil: T B1 Y1 Wil

18) Felix: Build B1 Felix

19) wil: B B2 Wil

20) Felix: Discover B1 Felix Y2 Brisingr

21) wil: D B2 Wil Y3 Y3

22) Felix: Build G1 Felix

23) wil: D B2 Y3 G2 G2

24) Felix: Trade G3 Y3 Felix

25) wil: B B3 G2

26) Felix: Move B1 Felix G2

27) wil: T B2 R2 G2

28) Felix: Build B2 G2

	Felix: I know that feeling

	Felix: Aw man.... sorry this had to happen.


29338)
Variants: "Unrated"
Started: 2016.2.23, Ended: 2016.2.27
Participants: ugoggino (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3
	Felix: Hi there, thanks for the game! Good luck. Have you played this before?

2) ugoggino: Homeworld Y3 B2 G3
	ugoggino: Hi, as you could guess... it's my first play. Thanks and good luck

3) Felix: B G1 Felix
	Felix: Welcome! I am happy to give you tips or answer any questions you may have.
	Felix: The colors you chose to start with are good

4) ugoggino: Build G1 Ugoggino
	ugoggino: thank you, any advice is welcome

5) Felix: Trade G1 B1 Felix
	Felix: Some general tips to get started with:
Starting with a large green ship is a good idea, and having blue and yellow as your starting homeworld colors is also great. As a beginner, it's easiest to also start with small and medium homeworld pieces, as this allows you to access large pieces more quickly from the beginning.
	Felix: You typically don't need to bother with red at the beginning, but focus on building up your fleet of ships as fast as possible. Try to get the best ships you can without letting me get them. And diversify your colors as soon as possible, trying to rarely have three of the same color in a system if possible (and definitely never have four, because I could call catastrophe and blow them up!)

If your opponent gets a red ship, however, you should also try to get at least one as soon as possible so you aren't defenseless if they move in to attack.
	Felix: Also remember that if you sacrifice a ship for actions, you can use those actions in any system, so you don't necessarily have to have a red ship in a system, for instance, in order to attack. You could sacrifice your red elsewhere and still attack in a different system, so long as you had a ship there big enough to successfully attack. Make sense?

6) ugoggino: Trade G1 Y1 Ugoggino
	Felix: If I think of other tips along the way, I'll let you know. Good luck!

7) Felix: Build B1 Felix

8) ugoggino: Build Y1 Ugoggino

9) Felix: Discover B1 Felix G1 Rim

10) ugoggino: Discover Y1 Ugoggino G1 Vega

11) Felix: Build B1 Rim

12) ugoggino: Build G1 Ugoggino

13) Felix: Build B2 Felix

14) ugoggino: Build G2 Ugoggino

15) Felix: Discover B2 Felix Y1 Spark

16) ugoggino: Trade G2 B2 Ugoggino

17) Felix: Build G2 Felix

18) ugoggino: Move B2 Ugoggino Vega

19) Felix: Sacrifice G3 Felix
Build B3 Spark
Build B3 Rim
Build G2 Felix

20) ugoggino: Sacrifice G3 Ugoggino
Build Y2 Vega
Build Y2 Vega
Build Y3 Ugoggino

21) Felix: T B3 Y3 Rim

22) ugoggino: Sacrifice Y3 Ugoggino
Move Y1 Vega Felix
Move Y2 Vega Felix
Move Y2 Vega Felix
Catastrophe Felix Y

23) Felix: Trade B3 R3 Spark

24) ugoggino: Build B3 Vega

25) Felix: Move B2 Spark Ugoggino
	Felix: Good move to blow up half my system, but also dangerous. You now only have small ships in your home system, so it is vulnerable to attack. You should try to always have a large ship at home if possible.

26) ugoggino: Sacrifice Y1 Ugoggino
Move B3 Vega Felix
	ugoggino: why didn't you move r3 to my homesystem? 

27) Felix: S R3 Spark
A G1 Ugoggino
Pass
Pass
	Felix: I wanted to be able to sacrifice  my red in order to capture all of your ships at once. You can sacrifice her read in another system and text chips and a different system. So if you had build another ship in your system, I could have sacrificed my large red and used my blue medium to attack all of your pieces at once
	Felix: Sorry, speech to text is not much good. I  meant if you can sacrifice a red in one system and attack ships in a different system 
	Felix: Like that. Not bad and good game!
	ugoggino: thank you, I've got much to understand and learn
	Felix: No problem. It takes a few games to get a handle on the strategy, but I'm happy to help you learn! Feel free to challenge me as many times as you wish.



29363)
Variants: "Unrated"
Started: 2016.2.23, Ended: 2016.3.2
Participants: Felix (S), ugoggino (N)
Winner: Felix

1) ugoggino: Homeworld G3 B2 Y3
	ugoggino: homeworld G3 B2 Y3

2) Felix: H R1 B3 G3

3) ugoggino: Build Y1 Ugoggino

4) Felix: Build G1 Felix

5) ugoggino: Trade Y1 G1 Ugoggino
	Felix: Starting with a yellow ship is slightly harder. Having a large green at the beginning gives you a lot more potential build power later if you sacrifice it. Having a large yellow has its advantages too, though, so it all comes down to how you like to play.
	Felix: Starting with a red, as I did, is pretty dangerous. But it can also have its advantages if used properly. It just makes things more difficult for me in the beginning game, because I have to trade for yellow before I can move anywhere.

6) Felix: Trade G1 Y1 Felix

7) ugoggino: Build G1 Ugoggino

8) Felix: Build G1 Felix

9) ugoggino: Discover G1 Ugoggino B1 Rigel

10) Felix: Trade G1 B1 Felix

11) ugoggino: Build Y1 Ugoggino

12) Felix: Build B1 Felix

13) ugoggino: Move Y1 Ugoggino Rigel

14) Felix: Discover B1 Felix G2 Out
	Felix: It is dangerous to let your opponent get all of the smalls of a particular color before you yourself have any mediums, especially blue. In this case, I have all the small blues, and you can't trade for blue unless you first build a medium, or trade away your large yellow, which isn't ideal.  In general, you don't want to let the opponent get a monopoly on any one color, but blue is especially dangerous since I can easily trade blues for other ships. If there is only one small of any color left, ad you don't have it yet, it's usually a good idea to try to get it.

15) ugoggino: Build G1 Rigel

16) Felix: Build B2 Out

17) ugoggino: Build G2 Ugoggino

18) Felix: B G2 Felix

19) ugoggino: Build G3 Rigel

20) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Felix
Build B3 Out

21) ugoggino: Trade G3 B3 Rigel
	ugoggino: Don't know what I can do... It's getting complex

22) Felix: Trade B1 R1 Felix
	Felix: Getting a blue was smart, since I have so much in my home system, and you also don't want me to monopolize it. You want to try to cause a catastrophe in my home system if possible, but you also want some sort of plan to finish the job after you blow up half my homeworld. If you don't, you may leave yourself open to a counterattack. It does get pretty complex, but a few games will help you wrap your head around it!

23) ugoggino: Sacrifice G2 Ugoggino
Build G2 Rigel
Build G3 Ugoggino

24) Felix: T B1 Y1 Out

25) ugoggino: Trade G1 R1 Rigel

26) Felix: Discover G2 Felix Y2 Gate

27) ugoggino: Discover G3 Ugoggino B1 Polar

28) Felix: Build G1 Felix

29) ugoggino: Sacrifice G2 Rigel
Build G2 Polar
Build Y2 Ugoggino

30) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Out
Build Y3 Felix

31) ugoggino: Sacrifice G3 Polar
Build G3 Polar
Build Y3 Rigel
Build R2 Rigel

32) Felix: D Y1 Out B1 In

33) ugoggino: Discover Y3 Rigel R2 Sirio

34) Felix: Move R1 Felix Out

35) ugoggino: Move R1 Rigel Ugoggino

36) Felix: Move B3 Out In

37) ugoggino: Sacrifice G3 Polar
Build G3 Polar
Build R2 Ugoggino
Build R3 Rigel

38) Felix: M Y2 Out In

39) ugoggino: Move R3 Rigel Gate

40) Felix: Build R3 Out

41) ugoggino: Attack G2 Gate

42) Felix: Sacrifice Y3 Felix
Move Y2 In Ugoggino
Move Y1 In Ugoggino
Move B3 In Ugoggino
Catastrophe Ugoggino Yellow

43) ugoggino: Pass
	Felix: By stripping away your large yellow ship with a catastrophe and moving my own large ship in at the same time, I have disabled your defenses, while having my own large red waiting to be sacrificed essentially guarantees I can capture any defenses you try to move in. I know it was tempting to capture my green ship in the gate system, but in this case, that was just a distraction, and I didn't need that ship anymore to put my plan into motion.
	Felix: It's definitely difficult to recognize maneuvers like this, and even harder to defend against them, but you have actually played very well in this game! You've got a great sense for the game, and I think you will get very good at it with practice.
	ugoggino: good game, thanks

44) Felix: Sacrifice R3 Out
Attack R2 Ugoggino
Attack R1 Ugoggino
Attack G1 Ugoggino
	Felix: Happy to play again! Just challenge me.



29362)
Variants: "Unrated"
Started: 2016.2.29, Ended: 2016.3.8
Participants: Anshir (S), ugoggino (N)
Winner: ugoggino

1) ugoggino: Homeworld R1 B3 G3
	Anshir: Hi, first at all I want to say this is going to be my first play here, so I don't know how many mistakes I will make :) Please be patience with me XD

2) Anshir: Homeworld B2 Y3 G3
	ugoggino: hi, I'm new at this game too. so we can experitment.. ;) good luck

3) ugoggino: Build G1 Ugoggino

4) Anshir: Build G1 Anshir

5) ugoggino: Trade G1 Y1 Ugoggino

6) Anshir: Build G1 Anshir

7) ugoggino: Build G1 Ugoggino

8) Anshir: Discover G1 Anshir B1 Rigel

9) ugoggino: Build G2 Ugoggino

10) Anshir: Build G2 Rigel

11) ugoggino: Discover G2 Ugoggino Y2 Alfa

12) Anshir: Trade G2 Y2 Rigel

13) ugoggino: Build Y1 Ugoggino

14) Anshir: Sacrifice G3 Anshir
Build G2 Anshir
Build G2 Rigel
Build G3 Anshir

15) ugoggino: Build G3 Alfa

16) Anshir: Sacrifice Y2 Rigel
Move G1 Rigel Alfa
Move G2 Rigel Alfa
Catastrophe Alfa G

17) ugoggino: Trade G1 B1 Ugoggino

18) Anshir: Trade G2 Y2 Anshir

19) ugoggino: Build G1 Ugoggino

20) Anshir: Trade G1 B1 Anshir

21) ugoggino: Discover Y1 Ugoggino G2 Beta

22) Anshir: Build G1 Anshir

23) ugoggino: Move B1 Ugoggino Beta

24) Anshir: Discover G1 Anshir R1 Antares

25) ugoggino: Build Y1 Ugoggino

26) Anshir: Build Y2 Anshir

27) ugoggino: Build Y2 Beta

28) Anshir: Move Y2 Anshir Antares

29) ugoggino: Trade Y2 B2 Beta

30) Anshir: Build G1 Antares

31) ugoggino: Trade Y1 B1 Ugoggino

32) Anshir: Build G2 Anshir

33) ugoggino: Discover B1 Ugoggino Y2 Alfa

34) Anshir: Sacrifice G3 Anshir
Build G2 Anshir
Build G3 Antares
Build G3 Anshir

35) ugoggino: Sacrifice G3 Ugoggino
Build G3 Ugoggino
Build Y1 Beta
Build Y3 Ugoggino

36) Anshir: Build Y3 Antares

37) ugoggino: Sacrifice G3 Ugoggino
Build G3 Ugoggino
Build B2 Beta
Build B3 Alfa

38) Anshir: Move B1 Anshir Antares

39) ugoggino: Sacrifice Y1 Beta
Move Y3 Ugoggino Beta

40) Anshir: Trade G2 R2 Anshir

41) ugoggino: Sacrifice B2 Beta
Trade B1 R1 Alfa
Trade B2 R2 Beta

42) Anshir: Discover B1 Antares G2 Vega

43) ugoggino: Sacrifice G3 Ugoggino
Build G3 Ugoggino
Build R2 Beta
Build Y1 Ugoggino

44) Anshir: Sacrifice G3 Anshir
Build G3 Anshir
Build B1 Vega
Build B2 Vega
	Anshir: Sorry, I was out the weekend and today was...one of those days...however, difficult movement :D

45) ugoggino: Sacrifice G3 Ugoggino
Build G3 Ugoggino
Build R3 Beta
Build R3 Alfa

46) Anshir: Sacrifice Y3 Antares
Move B1 Vega Ugoggino
Move B1 Vega Ugoggino
Move B2 Vega Ugoggino
Catastrophe Ugoggino B

47) ugoggino: Sacrifice Y3 Beta
Move Y1 Ugoggino Anshir
Move Y1 Ugoggino Anshir
Move B3 Alfa Ugoggino
Catastrophe Anshir Y

48) Anshir: Sacrifice G3 Anshir
Build G2 Anshir
Build G3 Anshir
Build R3 Anshir

49) ugoggino: Sacrifice G3 Ugoggino
Build B1 Ugoggino
Build B1 Ugoggino
Build G3 Ugoggino

50) Anshir: Sacrifice Y2 Antares
Move G2 Anshir Ugoggino
Move G2 Anshir Ugoggino
Catastrophe Ugoggino G

51) ugoggino: Move Y1 Beta Ugoggino

52) Anshir: Trade R3 Y3 Anshir

53) ugoggino: Sacrifice B1 Beta
Trade R3 Y3 Alfa

54) Anshir: Sacrifice Y3 Anshir
Move G3 Anshir Antares
Move R2 Anshir Antares
Pass
	Anshir: I didn't see that :D well done
	ugoggino: Very enjoiable match. I didn't imagine I could win untill I saw your attack with blue and a possibile counteroffensive just ready with yellow from my home system plus the monopoly of red pieces. 
Thx



29367)
Started: 2016.3.1, Ended: 2016.3.7
Participants: ts52 (S), Felix (N)
Winner: ts52

1) Felix: Homeworld Y3 B2 G3
	Felix: Hello again :) Good luck and have fun!

2) ts52: Homeworld B1 Y3 G3
	ts52: Thanks. You too!

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: T G1 B1 Felix

6) ts52: Trade G1 B1 Ts52

7) Felix: Build B2 Felix

8) ts52: Discover B1 Ts52 G2 Kermit

9) Felix: Discover B2 Felix G1 Range

10) ts52: Build G1 Ts52

11) Felix: Sacrifice G3 Felix
Build B2 Range
Build B3 Range
Build B3 Felix

12) ts52: Build B3 Kermit

13) Felix: Trade B3 Y3 Range

14) ts52: Trade B1 Y1 Kermit

15) Felix: Trade B3 G3 Felix

16) ts52: Build Y1 Kermit

17) Felix: D B2 Range Y2 Settlement

18) ts52: Trade Y1 R1 Kermit

19) Felix: Sacrifice G3 Felix
Build B1 Settlement
Build B3 Range
Build B3 Felix

20) ts52: Discover B3 Kermit Y1 Bigbird

21) Felix: Sacrifice B3 Range
Trade B1 G1 Settlement
Trade B2 G2 Range
Trade B3 G3 Felix

22) ts52: Discover G1 Ts52 Y2 Zoe

23) Felix: Sacrifice G2 Range
Build G2 Settlement
Build G2 Settlement

24) ts52: Trade G3 R3 Ts52

25) Felix: Build G3 Felix

26) ts52: Sacrifice G1 Zoe
Build R1 Ts52

27) Felix: Trade G2 R2 Settlement

28) ts52: Trade R1 G1 Ts52

29) Felix: S Y3 Range
M R2 Settlement Ts52
M G2 Settlement Ts52
M G1 Settlement Ts52

30) ts52: Attack R2 Ts52

31) Felix: T G2 R2 Ts52

32) ts52: Sacrifice R2 Ts52
Attack R2 Ts52
Attack G1 Ts52

33) Felix: T G3 R3 Felix
	Felix: Ah, dang. Definitely overlooked that!

34) ts52: Sacrifice G1 Ts52
Build B1 Bigbird

35) Felix: B G1 Felix
	ts52: I almost missed it too.

36) ts52: Trade B1 G1 Bigbird

37) Felix: D G1 Felix B1 Stead

38) ts52: Build B2 Bigbird

39) Felix: B G2 Felix

40) ts52: Trade B3 G3 Bigbird

41) Felix: Sacrifice G3 Felix
Build G2 Stead
Build G3 Stead
Build G3 Felix

42) ts52: Build B3 Bigbird

43) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B3 Settlement
Build R1 Felix

44) ts52: Trade B3 Y3 Bigbird

45) Felix: Sacrifice B2 Settlement
Trade G2 Y2 Stead
Trade G2 Y2 Felix

46) ts52: Build B2 Bigbird

47) Felix: Sacrifice G3 Stead
Build Y1 Felix
Build G2 Stead
Build B3 Settlement

48) ts52: Sacrifice Y3 Bigbird
Move Y1 Kermit Bigbird
Move Y1 Bigbird Felix
Move B2 Bigbird Felix
Catastrophe Felix Yellow

49) Felix: Sacrifice Y2 Stead
Move R3 Felix Ts52
Move B1 Felix Ts52

50) ts52: Sacrifice G3 Bigbird
Build G2 Bigbird
Build G3 Ts52
Build B3 Felix
	Felix: Ooh. Nicely done. I anticipated (and even hoped for) the yellow catastrophe, but I didn't anticipate the one-two followup punch with blue.

51) Felix: Sacrifice B3 Settlement
Trade B1 R1 Ts52
Trade G3 B3 Felix
Pass
Catastrophe Ts52 Red
Catastrophe Felix Blue

	ts52: Thanks. It took me a bit to find it.
	Felix: Nice one! Very close.  I made a fatal mistake in my earlier attack and you turned it back on me very well!
	ts52: Absolutely. Another close game. Happy to play again, any time.


29337)
Variants: "Hard time"
Started: 2016.3.1, Ended: 2016.3.4
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y3 B2 G3
	Felix: Hope all is well! I hate that our other games timed out. Good luck and have fun!

	Felix: :(


29313)
Variants: "Hard time"
Started: 2016.3.1, Ended: 2016.3.11
Participants: SilentTitan (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3
	Felix: Hello again. Good luck and have fun!

2) SilentTitan: Homeworld B1 R2 G3

3) Felix: Build G1 Felix

4) SilentTitan: Build G1 Silenttitan

5) Felix: T G1 B1 Felix

6) SilentTitan: Build G1 Silenttitan

7) Felix: Build B1 Felix

8) SilentTitan: Trade G3 B3 Silenttitan

9) Felix: Discover B1 Felix Y1 Gora

10) SilentTitan: Build B2 Silenttitan

11) Felix: S G3 Felix
B B2 Gora
B B2 Gora
B B3 Felix

12) SilentTitan: Trade B3 Y3 Silenttitan

13) Felix: Sacrifice B1 Gora
Trade B3 G3 Felix



29395)
Variants: "Hard time"
Started: 2016.3.2, Ended: 2016.3.5
Participants: Felix (S), wil (N)
Winner: Felix



29295)
Variants: "Hard time"
Started: 2016.3.3, Ended: 2016.3.22
Participants: alexcobo (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y3 G3

2) alexcobo: Homeworld G3 B2 Y3

3) endo: Build G1 Endo

4) alexcobo: Build Y1 Alexcobo

5) endo: Build G1 Endo

6) alexcobo: Build Y1 Alexcobo

7) endo: Discover G1 Endo Y2 Pushout

8) alexcobo: Trade Y1 B1 Alexcobo

9) endo: Build G1 Pushout

10) alexcobo: Build Y1 Alexcobo

11) endo: Build G2 Pushout

12) alexcobo: Discover Y1 Alexcobo B1 Noidea

13) endo: Move G2 Pushout Noidea

14) alexcobo: Build B2 Alexcobo

15) endo: Sacrifice G3 Endo
Build G2 Endo
Build G2 Pushout
Build G3 Endo

16) alexcobo: Trade Y3 G3 Alexcobo

17) endo: Trade G3 Y3 Endo

18) alexcobo: Trade B2 Y2 Alexcobo

19) endo: Sacrifice Y3 Endo
Move G1 Pushout Noidea
Move G1 Noidea Alexcobo
Move G2 Noidea Alexcobo
Catastrophe Alexcobo G

20) alexcobo: Trade Y2 G2 Alexcobo

21) endo: Trade G2 R2 Endo

22) alexcobo: Trade B1 R1 Alexcobo

23) endo: Build R1 Endo

24) alexcobo: Trade Y1 G1 Noidea

25) endo: Trade R1 B1 Endo

26) alexcobo: Build Y1 Alexcobo

27) endo: Build B2 Endo

28) alexcobo: Build G2 Alexcobo

29) endo: Build G3 Endo

30) alexcobo: Sacrifice G2 Alexcobo
Build G2 Noidea
Build G3 Alexcobo

31) endo: Discover G1 Pushout B3 Terminal

32) alexcobo: Trade G2 Y2 Noidea

33) endo: Sacrifice G3 Endo
Build G2 Pushout
Build G3 Endo
Build G3 Terminal

34) alexcobo: Sacrifice Y2 Noidea
Move G1 Noidea Terminal
Move G2 Alexcobo Terminal
Catastrophe Terminal G

35) endo: Trade G3 Y3 Endo

36) alexcobo: Build G1 Alexcobo

37) endo: Sacrifice Y3 Endo
Move B1 Endo Alexcobo
Move B2 Endo Alexcobo
Pass

38) alexcobo: Attack B2 Alexcobo

39) endo: Sacrifice G1 Endo
Build B1 Alexcobo
Catastrophe Alexcobo B



29409)
Variants: "Hard time"
Started: 2016.3.6, Ended: 2016.3.11
Participants: Felix (S), ajo (N)
Winner: Felix

1) ajo: Homeworld G3 Y1 B3

2) Felix: H B3 Y2 G3
	Felix: Thanks for accepting my challenge. Good luck!

3) ajo: Build B1 Ajo

4) Felix: Build G1 Felix

5) ajo: Discover B1 Ajo B2 Alpha

6) Felix: Trade G1 B1 Felix

7) ajo: Trade B1 G1 Alpha

8) Felix: Build G1 Felix

9) ajo: Build B1 Ajo

10) Felix: Discover G1 Felix B1 Out

11) ajo: Build B2 Ajo

12) Felix: B B2 Felix

13) ajo: Trade B2 R2 Ajo

14) Felix: T B1 Y1 Felix

15) ajo: Move R2 Ajo Alpha

16) Felix: B Y1 Felix
	Felix: Oops. Didn't mean to click that

17) ajo: Build R1 Alpha

18) Felix: M Y1 Felix Out

19) ajo: Trade R2 Y2 Alpha

20) Felix: T Y1 R1 Felix

21) ajo: Trade B3 Y3 Ajo

22) Felix: B G1 Felix

23) ajo: Build G2 Alpha

24) Felix: B G2 Out

25) ajo: Trade G2 R2 Alpha

26) Felix: Discover G2 Out B2 Jelwick

27) ajo: Move R2 Alpha Out

28) Felix:
M G3 Felix Out

29) ajo: Trade R2 G2 Out

30) Felix: S G3 Out
B G2 Out
B G3 Felix
B G3 Jelwick

31) ajo: Sacrifice G2 Out
Build B1 Ajo
Build B3 Ajo
	ajo: Ouch. Nicely done, I missed that.

32) Felix: D B2 Felix Y1 Arthos
	Felix: Thanks! You had me scrambling with that red attack 

33) ajo: Sacrifice B1 Ajo
Trade B3 R3 Ajo

34) Felix: B Y2 Out

35) ajo: Build Y3 Alpha

36) Felix: M Y2 Out Jelwick

37) ajo: Move Y3 Alpha Out

38) Felix: S G2 Out
B Y3 Jelwick
B R1 Felix

39) ajo: Move Y3 Ajo Alpha

40) Felix: S Y2 Jelwick
M G3 Jelwick Ajo
M Y3 Jelwick Ajo

41) ajo: Attack Y3 Ajo

42) Felix: S R1 Felix
A R3 Ajo

43) ajo: Sacrifice R1 Alpha
Attack R3 Ajo

44) Felix: S R1 Felix
A R3 Ajo

45) ajo: Sacrifice Y3 Alpha
Move G1 Alpha Out
Move G1 Out Felix
Move Y2 Alpha Ajo
	Felix: Back and forth...
	ajo: Yeah, it's fruitless; you should just give up now. :)

46) Felix: S R3 Ajo
A Y2 Ajo
A Y3 Ajo
A B1 Ajo
	Felix: Never give up! Never surrender! :) great game. Very close. I'd love to rematch sometime!



29419)
Started: 2016.3.7, Ended: 2016.3.8
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) Felix: Homeworld B3 Y1 G3

3) ts52: Build G1 Ts52

4) Felix: B G1 Felix

5) ts52: Trade G1 Y1 Ts52

6) Felix: T G1 Y1 Felix

7) ts52: Build Y2 Ts52

8) Felix: B Y2 Felix

9) ts52: Discover Y1 Ts52 G1 Kermit

10) Felix: D Y1 Felix G2 Sirius

11) ts52: Build G1 Ts52

12) Felix: Build G1 Felix

13) ts52: Build G2 Ts52

14) Felix: Build G2 Felix

15) ts52: Discover G2 Ts52 B1 Gonzo

16) Felix: Trade G1 B1 Felix

17) ts52: Sacrifice G3 Ts52
Build G1 Ts52
Build G3 Ts52
Build G3 Gonzo

18) Felix: Discover G2 Felix B2 Brinstar

19) ts52: Trade G1 R1 Ts52

20) Felix: Build G1 Felix

21) ts52: Sacrifice Y2 Ts52
Move G3 Gonzo Brinstar
Move G3 Brinstar Felix

22) Felix: Trade G2 R2 Brinstar

23) ts52: Sacrifice G3 Ts52
Build G2 Felix
Build G3 Ts52
Build Y2 Kermit
Catastrophe Felix G

24) Felix: Trade Y2 G2 Felix
	Felix: I knew I should have gotten a red when you did :)

25) ts52: Move Y1 Kermit Sirius
	ts52: Yeah, when your enemy get's a gun, you get a gun. - Old Homeworlds adage.  :)

26) Felix: Discover Y1 Sirius B1 Alpha

27) ts52: Build Y2 Sirius

28) Felix: Build B2 Felix

29) ts52: Sacrifice G2 Gonzo
Build Y2 Sirius
Build Y3 Kermit

30) Felix: Discover Y1 Alpha G2 Beta

31) ts52: Sacrifice Y2 Sirius
Move Y3 Kermit Brinstar
Move Y3 Brinstar Felix

32) Felix: Build G1 Felix

33) ts52: Trade Y3 R3 Felix

34) Felix: Build G3 Felix

35) ts52: Attack G3 Felix

36) Felix: Build G3 Felix
Catastrophe Felix Green
	Felix: Very nicely done. That was fast!

37) ts52: Trade R3 B3 Felix
Catastrophe Felix B

	ts52: Thanks. Definitely worth strongly considering getting a gun as soon as your opponent does.
	Felix: Definitely. That was a big mistake. I overlooked the fact that you could actually move a ship to my homeworld already, so I thought I could wait another turn before building one. I thought wrong :)
	ts52: :) Still, an exellent game. Happy for a rematch any time.


29413)
Variants: "Hard time"
Started: 2016.3.7, Ended: 2016.3.17
Participants: Salmonax (S), Felix (N)
Winner: Felix

1) Felix: H R3 B2 G3

2) Salmonax: Homeworld Y1 G3 B3
	Felix: Hello again :) have fun!
	Salmonax: You too!

3) Felix: Build G1 Felix

4) Salmonax: Build B1 Salmonax

5) Felix: Trade G1 Y1 Felix

6) Salmonax: Trade B1 Y1 Salmonax

7) Felix: Build Y2 Felix

	Felix: Aw :(
	Salmonax: Sorry about that, lost track of time



29328)
Variants: "Hard time"
Started: 2016.3.8, Ended: 2016.3.25
Participants: alexcobo (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3

2) alexcobo: Homeworld B3 Y2 G3
	Felix: Hey there! First game?
	Felix: Nevermind. I see you've played a few! Have fun!

3) Felix: Build G1 Felix
	alexcobo: I played a few. Long time ago. :-)
Please, do not hold back. How would I ever get better otherwise?

4) alexcobo: Build G1 Alexcobo
	Felix: Welcome back! I am certainly not the best player on here, so you don't have to worry about me holding back. I regularly get thrashed by other players, but doing so is also making me better :)

5) Felix: Trade G1 Y1 Felix

6) alexcobo: Build G1 Alexcobo

7) Felix: Build Y1 Felix

8) alexcobo: Discover G1 Alexcobo B1 Blueone

9) Felix: Discover Y1 Felix G1 Cephas

10) alexcobo: Build G2 Blueone

11) Felix: B Y1 Felix

12) alexcobo: Trade G2 Y2 Blueone

13) Felix: Trade Y1 B1 Felix

14) alexcobo: Build G2 Blueone

15) Felix: Build B1 Felix

16) alexcobo: Discover G2 Blueone R2 R2

17) Felix: Move B1 Felix Cephas

18) alexcobo: Build G2 Blueone

19) Felix: B B2 Cephas

20) alexcobo: Sacrifice G3 Alexcobo
Build G2 Alexcobo
Build G3 R2
Build G3 Alexcobo

21) Felix: D B1 Cephas Y3 Ingot

22) alexcobo: Trade G1 R1 Alexcobo

23) Felix: T Y1 R1 Felix

24) alexcobo: Build Y1 Blueone

25) Felix: S G3 Felix
B B2 Cephas
B B2 Ingot
B B3 Felix

26) alexcobo: Sacrifice G3 R2
Build G1 R2
Build G3 R2
Build G3 Blueone
	Felix: Blue vs Green...

27) Felix: T B2 R2 Cephas
	Felix: Hmm. Not having any green is a problem...

28) alexcobo: Trade G2 B2 Blueone

29) Felix: Sacrifice B1 Felix
Trade B2 G2 Ingot
	alexcobo: Here. Have one. :-)

30) alexcobo: Sacrifice Y1 Blueone
Move G3 R2 Ingot
	Felix: Why thank you, good sir. Too kind!

31) Felix: Move B1 Ingot Blueone

32) alexcobo: Trade G1 Y1 Blueone

33) Felix: Sacrifice G2 Ingot
Build B1 Blueone
Build B2 Cephas
Catastrophe Blueone Blue

34) alexcobo: Sacrifice G3 Alexcobo
Build G1 R2
Build G2 Ingot
Build G3 Alexcobo

35) Felix: T B3 G3 Felix

36) alexcobo: Trade G2 B2 Alexcobo

37) Felix: B G2 Felix

38) alexcobo: Sacrifice B2 Alexcobo
Trade G2 Y2 Ingot
Trade G1 Y1 R2

39) Felix: D G2 Felix B1 Rathe

40) alexcobo: Sacrifice G2 R2
Build Y1 Ingot
Build Y3 R2

41) Felix: Build Y3 Cephas

	Felix: Aw :(
	alexcobo: I'm sorry about that.
	Felix: That's okay! I should have turned off the hard time setting. Want a rematch without that on so we don't have to worry about timing out?


29432)
Started: 2016.3.8, Ended: 2016.3.11
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) Felix: Homeworld B3 Y2 G3
	Felix: Hope you don't get tired of the rematches! I work on a computer all day for my job, so this provides a much needed mind break from my work :)

3) ts52: Build G1 Ts52
	ts52: I don't mind at all. Also spend all day staring at a computer. ;)

4) Felix: Build G1 Felix

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: Build B2 Felix

9) ts52: Build G1 Ts52

10) Felix: Discover B2 Felix Y1 Braxus

11) ts52: Discover B1 Ts52 Y2 Bigbird

12) Felix: Build G1 Felix

13) ts52: Trade B2 Y2 Ts52

14) Felix: T G1 Y1 Felix

15) ts52: Discover Y2 Ts52 G2 Kermit

16) Felix: B G1 Felix

17) ts52: Move G1 Ts52 Bigbird

18) Felix: M G1 Felix Braxus

19) ts52: Build B2 Bigbird

20) Felix: B B2 Braxus

21) ts52: Build Y1 Kermit

22) Felix: D B2 Braxus G2 Omen

23) ts52: Build Y3 Kermit

24) Felix: Build B3 Omen

25) ts52: Trade B2 R2 Bigbird

26) Felix: Trade B2 R2 Omen

27) ts52: Build R1 Bigbird

28) Felix: Discover Y1 Felix G1 Brink

29) ts52: Move Y3 Kermit Brink

30) Felix: T B3 Y3 Omen

31) ts52: Sacrifice R1 Bigbird
Attack Y1 Brink

32) Felix: Build R1 Omen

33) ts52: Build B2 Bigbird

34) Felix: Move B2 Braxus Kermit

35) ts52: Move Y2 Kermit Braxus

36) Felix: Sacrifice R1 Omen
Attack Y1 Kermit

37) ts52: Build R1 Bigbird

38) Felix: Move G1 Braxus Kermit

39) ts52: Move B1 Bigbird Brink

40) Felix: Move G1 Kermit Ts52

41) ts52: Sacrifice R1 Bigbird
Attack G1 Ts52

42) Felix: M B2 Kermit Ts52

43) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build G3 Bigbird

44) Felix: B R1 Omen

45) ts52: Build R1 Bigbird

46) Felix: Move B2 Ts52 Omen

47) ts52: Move R2 Bigbird Brink

48) Felix: Move Y1 Kermit Ts52

49) ts52: Trade G3 R3 Ts52

50) Felix: Sacrifice Y3 Omen
Move R2 Omen Ts52
Move R1 Omen Ts52
Move B2 Omen Ts52

51) ts52: Sacrifice R2 Brink
Attack R2 Ts52
Attack B2 Ts52
	ts52: Hmmmm, I guess I didn't think that through enough.

52) Felix: Attack G1 Ts52
	Felix: Or I'm just flailing in my death throes :)

53) ts52: Sacrifice R2 Ts52
Attack R1 Ts52
Attack G1 Ts52

54) Felix: Sacrifice G3 Felix
Build Y3 Ts52
Build B2 Felix
Build B3 Felix
	ts52: Hmmmm, hadn't thought about it that way. ;)

55) ts52: Attack Y3 Ts52
Catastrophe Felix Blue
	Felix: That's what we call an attack falling flat on its face. I saw the way the game was going and thought it was worth a shot :) Well played!
	ts52: Happens to the best of us. Thanks for the game! Another?
	Felix: Indeed! I'm always up for more. Challenge away.



29428)
Variants: "Hard time"
Started: 2016.3.11, Ended: 2016.4.8
Participants: ts52 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y3 B1 G3
	Felix: Oops. Looks like we're playing two at once. Sorry about that, my mistake. I don't mind playing two games though!

2) ts52: Homeworld B2 Y3 G3
	ts52: No worries. 

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: Trade G1 B1 Felix

6) ts52: Trade G1 B1 Ts52

7) Felix: B B2 Felix

8) ts52: Discover B1 Ts52 G1 Kermit

9) Felix: D B2 Felix Y2 Rim

10) ts52: Build G1 Ts52

11) Felix: Build G1 Felix

12) ts52: Build G2 Ts52

13) Felix: Move G1 Felix Rim

14) ts52: Trade G2 Y2 Ts52

15) Felix: Build G2 Rim

16) ts52: Move Y2 Ts52 Kermit

17) Felix: Build G2 Felix

18) ts52: Discover G1 Ts52 Y1 Bigbird

19) Felix: Discover G2 Rim G3 Bank

20) ts52: Build G2 Ts52

21) Felix: Discover G2 Felix Y2 Ram

22) ts52: Move Y2 Kermit Bank

23) Felix: Trade G1 R1 Rim

24) ts52: Trade G2 R2 Ts52

25) Felix: Sacrifice R1 Rim
Attack Y2 Bank

26) ts52: Build G1 Ts52

27) Felix: Build G2 Felix

28) ts52: Trade G1 Y1 Ts52

29) Felix: Sacrifice G3 Felix
Build G1 Ram
Build G3 Felix
Build B2 Rim

30) ts52: Build B3 Kermit

31) Felix: Sacrifice G3 Felix
Build Y1 Bank
Build Y3 Bank
Build G3 Felix

32) ts52: Move Y1 Ts52 Kermit

33) Felix: S Y1 Bank
D B2 Rim Y1 Rom

34) ts52: Move B3 Kermit Ram

35) Felix: T B1 R1 Felix

36) ts52: Build R1 Ts52

37) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R1 Felix
Build R2 Felix

38) ts52: Sacrifice R2 Ts52
Attack G2 Ram
Attack G1 Ram

39) Felix: Move Y2 Bank Kermit

40) ts52: Sacrifice G2 Ram
Build B1 Ram
Build B3 Kermit

41) Felix: Sacrifice R2 Felix
Attack B1 Kermit
Attack Y1 Kermit

42) ts52: Trade B3 R3 Kermit

43) Felix: Sacrifice Y2 Kermit
Discover Y1 Kermit Y2 Rum
Move B1 Kermit Rum

44) ts52: Trade B3 R3 Ram

45) Felix: Sacrifice G3 Felix
Build B3 Rom
Build B3 Rim
Build B3 Rum

46) ts52: Build R2 Ram

47) Felix: Move B3 Rim Felix

48) ts52: Sacrifice G3 Ts52
Build R2 Kermit
Build R2 Kermit
Build R3 Ts52

49) Felix: M R1 Felix Rim

50) ts52: Trade R3 G3 Ram

51) Felix: B R3 Felix

52) ts52: Trade R3 G3 Ts52

53) Felix: Sacrifice G2 Bank
Build G2 Felix
Build R3 Rim

54) ts52: Build G2 Ts52

55) Felix: M R3 Rim Bigbird

56) ts52: Move G1 Bigbird Rum

57) Felix: Move R1 Rim Kermit
Catastrophe Kermit Red

58) ts52: Build R1 Ram

59) Felix: Sacrifice R1 Felix
Attack G1 Rum

60) ts52: Trade G3 R3 Ts52

61) Felix: Sacrifice G2 Felix
Build R1 Bigbird
Build G1 Felix

62) ts52: Sacrifice G3 Ram
Build G2 Ts52
Build G3 Ram
Build G3 Ts52

63) Felix: S Y3 Bank
M G1 Rum Bigbird
M G1 Bigbird Ts52
M R1 Bigbird Ts52
C Ts52 Green

64) ts52: Trade R3 Y3 Ts52

65) Felix: Attack R1 Ts52

66) ts52: Sacrifice R2 Ram
Attack R1 Ts52
Attack R1 Ts52
	Felix: You're gonna make me fight for this :)

67) Felix: Sacrifice B2 Rim
Trade B2 Y2 Rom
Trade B1 G1 Rum
	ts52: Yes, yes I am. ;)

68) ts52: Build R2 Ram

69) Felix: Sacrifice G2 Felix
Build G2 Felix
Build B1 Rom

70) ts52: Build B2 Ram

71) Felix: Move Y1 Rum Bigbird

72) ts52: Move B1 Ram Felix

73) Felix: Move Y1 Bigbird Ts52

74) ts52: Trade Y3 G3 Ts52

75) Felix: Sacrifice G2 Felix
Build G2 Felix
Build Y3 Ts52

76) ts52: Attack Y3 Ts52

77) Felix: Move Y2 Rom Ts52
Catastrophe Ts52 Yellow

78) ts52: Trade R1 Y1 Ts52
	Felix: I'm so nervous of messing up right now, haha.

79) Felix: Sacrifice B3 Felix
Trade R3 B3 Bigbird
Trade B3 Y3 Rum
Pass

80) ts52: Sacrifice G3 Ram
Build B2 Felix
Build B3 Felix
Build Y2 Ts52
Catastrophe Felix Blue
	ts52: :)

81) Felix: S Y3 Rum
M B3 Bigbird Ts52
M B3 Rom Ts52
M B1 Rom Ts52
C Ts52 Blue

	Felix: Thanks! That was a fun one. Happy to go again!
	ts52: Any time. Good game!


29440)
Started: 2016.3.11, Ended: 2016.3.29
Participants: ts52 (S), Felix (N)
Winner: ts52

1) Felix: Homeworld R2 B3 G3

2) ts52: Homeworld B1 Y2 G3
	ts52: Trying something different. Interesting

3) Felix: Build G1 Felix
	Felix: It's always good to change things up now and then!

4) ts52: Build G1 Ts52

5) Felix: Trade G1 B1 Felix

6) ts52: Trade G1 B1 Ts52

7) Felix: B B2 Felix

8) ts52: Build B2 Ts52

9) Felix: T B2 Y2 Felix

10) ts52: Discover B2 Ts52 G3 Kermit

11) Felix: Build B2 Felix

12) ts52: Build G1 Ts52

13) Felix: Discover B2 Felix G1 Still

14) ts52: Trade B1 Y1 Ts52

15) Felix: Build G1 Felix

16) ts52: Build G2 Ts52

17) Felix: Build G2 Felix

18) ts52: Discover G2 Ts52 B3 Gonzo

19) Felix: Trade G1 R1 Felix

20) ts52: Trade G1 R1 Ts52

21) Felix: Discover G2 Felix B1 Estate

22) ts52: Build G1 Ts52

23) Felix: Build G1 Estate

24) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build Y1 Ts52

25) Felix: Trade G2 Y2 Estate

26) ts52: Move Y1 Ts52 Kermit

27) Felix: Build G2 Felix

28) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Kermit
Build B3 Kermit

29) Felix: Sacrifice Y2 Estate
Move B2 Still Kermit
Discover G1 Estate Y3 Fulcrum

30) ts52: Sacrifice B2 Kermit
Trade B3 R3 Kermit
Trade G2 Y2 Gonzo

31) Felix: Sacrifice G2 Felix
Build B1 Kermit
Build B2 Kermit
Catastrophe Kermit Blue

32) ts52: Sacrifice G3 Ts52
Build Y1 Kermit
Build Y3 Ts52
Build Y3 Gonzo

33) Felix: Sacrifice G1 Fulcrum
Build Y3 Felix

34) ts52: Trade Y3 G3 Ts52

35) Felix: D Y2 Felix G1 Prescience

36) ts52: Move R3 Kermit Prescience

37) Felix: M Y2 Prescience Kermit

38) ts52: Build Y3 Gonzo

39) Felix: Discover Y2 Kermit B1 Sink

40) ts52: Trade Y2 R2 Gonzo

41) Felix: Build Y2 Felix

42) ts52: Move Y3 Gonzo Prescience

43) Felix: Discover Y2 Felix G1 Onus

44) ts52: Trade R2 B2 Gonzo

45) Felix: Build G2 Felix
	Felix: Well things are certainly stacked against me :)

46) ts52: Move B2 Gonzo Prescience

47) Felix: Move B1 Felix Onus
	ts52: That may be true, but I think my end game is still pretty weak.

48) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build B2 Prescience
	Felix: So is mine, haha

49) Felix: Move R1 Felix Onus

50) ts52: Trade G2 R2 Gonzo

51) Felix: B B2 Onus

52) ts52: Move B2 Prescience Kermit

53) Felix: T B1 R1 Onus

54) ts52: Sacrifice G2 Gonzo
Build B1 Kermit
Build B3 Prescience

55) Felix: Move G2 Felix Sink

56) ts52: Sacrifice Y3 Gonzo
Move B3 Prescience Felix
Move Y3 Prescience Felix
Move Y1 Ts52 Gonzo

57) Felix: S G2 Sink
B Y3 Felix
B G2 Felix
	Felix: Ah, nicely done!

58) ts52: Sacrifice R3 Prescience
Attack Y3 Felix
Attack Y3 Felix
Attack G3 Felix

59) Felix: Move Y2 Sink Felix
Catastrophe Felix Yellow
	ts52: Thanks! GG!

60) ts52: Attack G2 Felix



29439)
Variants: "Hard time"
Started: 2016.3.11, Ended: 2016.4.1
Participants: Felix (S), kanzenryu (N)
Winner: Felix

1) kanzenryu: Homeworld Y1 B2 G3

2) Felix: H Y3 B2 G3
	kanzenryu: Haven't played for a while... have fun!
	Felix: You too!

3) kanzenryu: Build G1 Kanzenryu
	kanzenryu: build g1 kanzeryu

4) Felix: Build G1 Felix

5) kanzenryu: Trade G1 B1 Kanzenryu
	kanzenryu: Typing in the wrong box... shows how long since I've played! Have you been following the AlphaGo games? Incredible stuff.
	Felix: Haha, I've done that plenty of times! And no! Never heard of them. What are they?

6) Felix: Trade G1 Y1 Felix
	kanzenryu: It's a five game match of the game of Go between a new computer program and a to human player. It's pretty much the only game that humans are still better than computers. Until now. But the human did win game 4. Final game tomorrow. It's steamed live on YouTube. Search for AlphaGo.
	Felix: Woah, sounds pretty cool. I don't know much about Go. Wonder when they'll develop a computer to kick butt at Homeworlds :)

7) kanzenryu: Build G1 Kanzenryu

8) Felix: Build Y1 Felix
	kanzenryu: I attempted an AI for Homeworlds but it was pretty terrible. At times there are several thousand possible moves if you consider all the various sacrifice combinations, which makes it awkward for software.
	Felix: I can imagine. That's what makes it such a fun game to play though. So many possibilities!

9) kanzenryu: Trade G3 Y3 Kanzenryu

10) Felix: Discover Y1 Felix G1 Ripkin

11) kanzenryu: Build Y2 Kanzenryu

12) Felix: Build Y2 Ripkin

13) kanzenryu: Discover Y2 Kanzenryu G3 Out

14) Felix: Move Y1 Ripkin Out

15) kanzenryu: Trade B1 R1 Kanzenryu

16) Felix: Build Y2 Out

17) kanzenryu: Build Y3 Out
Catastrophe Out Y

18) Felix: B G1 Felix

19) kanzenryu: Build G2 Kanzenryu

20) Felix: T G1 R1 Felix

21) kanzenryu: Discover G2 Kanzenryu B3 Moon

22) Felix: Trade Y1 B1 Felix

23) kanzenryu: Build Y1 Kanzenryu

24) Felix: Build Y1 Ripkin

25) kanzenryu: Move Y1 Kanzenryu Moon

26) Felix: Discover Y1 Ripkin G3 Foil

27) kanzenryu: Discover G2 Moon B1 Peep

28) Felix: Build Y2 Foil

29) kanzenryu: Trade Y3 G3 Kanzenryu

30) Felix: Build B1 Felix

31) kanzenryu: Discover G1 Kanzenryu Y3 Also

32) Felix: B Y2 Ripkin

33) kanzenryu: Build G1 Kanzenryu

34) Felix: Move Y2 Ripkin Moon

35) kanzenryu: Move Y1 Moon Peep

36) Felix: Build Y3 Ripkin

	kanzenryu: I think I can safely resign at this point. Thanks for the game.


29438)
Variants: "Hard time"
Started: 2016.3.11, Ended: 2016.3.15
Participants: Felix (S), ajo (N)
Winner: ajo

1) ajo: Homeworld G3 Y1 B3

2) Felix: H R3 B2 G3
	ajo: Here we go again. :)
	Felix: Indeed. I enjoy playing against you! Good luck and have fun!

3) ajo: Build B1 Ajo
	ajo: build b1
	ajo: Ha. Wrong box.

4) Felix: B G1 Felix

5) ajo: Trade B1 G1 Ajo

6) Felix: Trade G1 Y1 Felix

7) ajo: Build G1 Ajo

8) Felix: B Y1 Felix

9) ajo: Discover G1 Ajo B2 Alpha

10) Felix: Build Y2 Felix

11) ajo: Build G1 Ajo

12) Felix: Build G2 Felix

13) ajo: Build G2 Alpha

14) Felix: D G2 Felix B1 Rogue

15) ajo: Trade G1 R1 Ajo

16) Felix: Move Y1 Felix Rogue

17) ajo: Trade G2 Y2 Alpha

18) Felix: Trade Y1 R1 Felix

19) ajo: Build B1 Ajo

20) Felix: Build G1 Rogue

21) ajo: Build G2 Alpha

22) Felix: Discover G2 Rogue B2 Rebel

23) ajo: Discover G1 Alpha Y1 Beta

24) Felix: Build G2 Felix

25) ajo: Build G3 Beta

26) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y3 Rogue
Build G3 Felix

27) ajo: Sacrifice G3 Beta
Build G3 Beta
Build Y3 Alpha
Build R1 Ajo

28) Felix: Sacrifice Y1 Rogue
Move G2 Rebel Ajo

29) ajo: Attack G2 Ajo

30) Felix: Sacrifice Y2 Felix
Move G1 Rogue Alpha
Move G1 Alpha Ajo
Catastrophe Ajo Green

31) ajo: Sacrifice Y3 Alpha
Move R1 Ajo Felix
Move R1 Ajo Felix
Move B1 Ajo Felix
Catastrophe Felix Red

32) Felix: Pass
	ajo: :)

33) ajo: Sacrifice G2 Alpha
Build B1 Felix
Build B2 Felix
Catastrophe Felix Blue
	Felix: I took the bait! Very well done.



29475)
Started: 2016.3.18, Ended: 2016.6.27
Participants: Felix (S), Salmonax (N)
Winner: Felix

1) Salmonax: Homeworld G1 Y2 B3

2) Felix: Homeworld R3 B2 G3

3) Salmonax: Build B1 Salmonax

4) Felix: B G1 Felix

5) Salmonax: Trade B1 G1 Salmonax

6) Felix: Trade G1 Y1 Felix

7) Salmonax: Build G1 Salmonax

8) Felix: B G2 Felix

9) Salmonax: Discover G1 Salmonax B3 Bees

10) Felix: B G2 Felix

11) Salmonax: Build G2 Salmonax

12) Felix: Discover G2 Felix B1 Echo

13) Salmonax: Build G3 Bees

14) Felix: Build G3 Echo
	Salmonax: That's a lot of green ships. =D

15) Salmonax: Trade G2 R2 Salmonax
	Felix: Gosh, sure is! And another!

16) Felix: Trade G3 Y3 Echo

17) Salmonax: Trade G1 Y1 Bees

18) Felix: Trade G2 R2 Felix
	Felix: And now it all goes away...

19) Salmonax: Build G1 Bees

20) Felix: Build G2 Felix

21) Salmonax: Discover G1 Bees Y1 Wyeone

22) Felix: Sacrifice G3 Felix
Build G2 Echo
Build G3 Echo
Build G3 Felix

23) Salmonax: Move G3 Bees Echo
Catastrophe Echo Green

24) Felix: Move G2 Felix Echo

25) Salmonax: Build G2 Wyeone

26) Felix: B Y2 Echo

27) Salmonax: Sacrifice G1 Wyeone
Build Y2 Bees

28) Felix: Discover Y2 Echo G3 Pillow

29) Salmonax: Move G2 Wyeone Bees

30) Felix: S G3 Felix
B Y1 Echo
B Y3 Pillow
B Y3 Felix

31) Salmonax: Move Y2 Bees Echo
	Felix: Now the yellow is taking over!
	Salmonax: lol

32) Felix: Trade Y1 B1 Echo

33) Salmonax: Build Y1 Bees

34) Felix: Trade Y1 G1 Felix

35) Salmonax: Move Y1 Bees Echo

36) Felix: Discover Y3 Echo G3 Crux

37) Salmonax: Trade Y2 R2 Echo

38) Felix: Sacrifice R2 Felix
Attack R2 Echo
Attack Y1 Echo

39) Salmonax: Build G2 Bees

40) Felix: Build G3 Echo

41) Salmonax: Trade G2 Y2 Bees

42) Felix: Sacrifice G3 Echo
Build G2 Felix
Build G3 Echo
Build Y1 Echo
	Salmonax: What a build-up. =D

43) Salmonax: Build B1 Salmonax
	Felix: Indeed :O

44) Felix: Move B1 Echo Pillow

45) Salmonax: Trade G2 R2 Bees
	Salmonax: Man, I'm kinda stuck

46) Felix: Build B2 Pillow
	Felix: I feel for you. It's hard to live without those large yellows!

47) Salmonax: Trade B1 R1 Salmonax

48) Felix: Discover G2 Echo B3 Slipstream

49) Salmonax: Move R2 Salmonax Slipstream

50) Felix: B G2 Echo

51) Salmonax: Attack G2 Slipstream

52) Felix: Move G3 Echo Bees

53) Salmonax: Build R1 Salmonax

54) Felix: Sacrifice R2 Echo
Attack R2 Bees
Attack Y2 Bees

55) Salmonax: Discover Y1 Bees B1 Stars

56) Felix: Sacrifice Y3 Pillow
Move G3 Bees Salmonax
Move G2 Echo Bees
Move G2 Bees Salmonax
Catastrophe Salmonax Green



29303)
Variants: "Unrated"
Started: 2016.3.23, Ended: 2016.3.26
Participants: Pheonixian (S), wil (N)
Winner: Pheonixian



29499)
Variants: "Hard time"
Started: 2016.3.24, Ended: 2016.4.6
Participants: Simon (S), endo (N)
Winner: endo

1) endo: Homeworld B1 Y1 G3 *

2) Simon: Homeworld B1 G2 B3 *
	endo: Gotta try a Gemini opening for a change... Despite all the animosity towards them, I believe this one should be powerful when going first.

3) endo: Build G1 Endo
	Simon: hf! The b1 in first position is vulnerable for this, but haven't played it from this side yet.

4) Simon: Build B1 Simon
	endo: I've played that opening against wil, who had a red half-star, and won, but I thought it's too slow if the first player uses yellow. Let's see...

5) endo: Build G1 Endo

6) Simon: Trade B3 Y3 Simon

7) endo: Discover G1 Endo G2 Poset

8) Simon: Build B2 Simon

9) endo: Sacrifice G3 Endo
Build G1 Endo
Build G2 Poset
Build G3 Endo

10) Simon: Discover B2 Simon G3 G3

11) endo: Discover G1 Endo Y3 Filter

12) Simon: Build B2 Simon

13) endo: Build G3 Filter

14) Simon: Build B2 G3

15) endo: Trade G3 R3 Endo

16) Simon: Build B3 G3

17) endo: Move G3 Filter Simon

	Simon: gg, expected r3 endo-g3.


29441)
Started: 2016.3.24, Ended: 2016.4.16
Participants: nycavri (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) nycavri: Homeworld G3 B1 Y3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	nycavri: TaGG!

4) nycavri: Build Y1 Nycavri

5) ts52: Trade G1 Y1 Ts52

6) nycavri: T Y1 G1 Nycavri

7) ts52: Build G1 Ts52

8) nycavri: B Y1 Nycavri

9) ts52: Discover G1 Ts52 B1 Gonzo

10) nycavri: D Y1 Nycavri G2 Deacon

11) ts52: Move Y1 Ts52 Gonzo

12) nycavri: T G1 R1 Nycavri

13) ts52: Trade Y1 R1 Gonzo

14) nycavri: Build Y1 Nycavri

15) ts52: Build G1 Ts52

16) nycavri: B Y1 Deacon

17) ts52: Build G1 Gonzo

18) nycavri: B Y2 Deacon

19) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G2 Gonzo
Build G3 Ts52

20) nycavri: B Y2 Nycavri

21) ts52: Trade G3 Y3 Ts52

22) nycavri: D Y2 Deacon B1 May

23) ts52: Move Y3 Ts52 Gonzo

24) nycavri: B Y2 Deacon

25) ts52: Build G3 Ts52

26) nycavri: Sacrifice Y2 Deacon
M Y1 Deacon May
M Y1 Deacon May

27) ts52: Discover G2 Gonzo Y2 Bigbird

28) nycavri: S Y3 Nycavri
M Y2 May Ts52
M Y1 May Ts52
M Y1 May Ts52
C Ts52 Y

29) ts52: Move Y3 Gonzo Ts52

30) nycavri: B Y1 Nycavri

31) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build G3 Gonzo

32) nycavri: D Y1 Nycavri B2 Mercury

33) ts52: Move G3 Ts52 Nycavri

34) nycavri: Discover Y1 Mercury B3 Taylor

35) ts52: Sacrifice R1 Gonzo
Attack R1 Nycavri

36) nycavri: Move Y1 Taylor Ts52

37) ts52: Attack Y2 Nycavri

38) nycavri: B Y1 Nycavri

39) ts52: Build Y2 Nycavri
Catastrophe Nycavri Yellow
	ts52: Thanks for the game!
	nycavri: Thank you, too.



29506)
Variants: "Hard time"
Started: 2016.3.26, Ended: 2016.4.2
Participants: mneme (S), Felix (N)
Winner: mneme

1) Felix: H B3 Y1 G3
	Felix:  Thanks for  accepting. Good luck! 

2) mneme: Homeworld B1 G2 Y3

3) Felix: B G1 Felix

4) mneme: Build Y1 Mneme

5) Felix: Trade G1 Y1 Felix

6) mneme: Trade Y1 B1 Mneme

7) Felix: Build Y1 Felix

8) mneme: Build B1 Mneme

9) Felix: Discover Y1 Felix G2 Ramp

10) mneme: Build Y2 Mneme

11) Felix: Build Y2 Felix

12) mneme: Discover Y2 Mneme G3 Sparta

13) Felix: Trade Y2 B2 Felix

14) mneme: Move B1 Mneme Sparta

15) Felix: Build Y2 Felix

16) mneme: Build Y2 Mneme

17) Felix: Trade Y1 R1 Felix

18) mneme: Trade Y2 R2 Mneme

19) Felix: Move B2 Felix Ramp

20) mneme: Discover B1 Mneme G3 Macc

21) Felix: Build G1 Felix

22) mneme: Build B2 Macc

23) Felix: Build G1 Felix

24) mneme: Build Y1 Sparta

25) Felix: Discover G1 Felix B2 Stake

26) mneme: Build B3 Sparta

27) Felix: Build B3 Ramp

28) mneme: Sacrifice Y2 Sparta
Move B1 Sparta Ramp
Move B1 Macc Ramp
Catastrophe Ramp B

29) Felix: Sacrifice G3 Felix
Build G1 Stake
Build G2 Stake
Build G3 Felix

30) mneme: Build R1 Mneme

31) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Felix
Build R1 Felix

32) mneme: Sacrifice Y3 Mneme
Move Y1 Sparta Ramp
Move Y1 Ramp Felix
Move B3 Sparta Mneme
Catastrophe Felix Y

33) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Felix
Build Y1 Ramp

34) mneme: Build B1 Mneme

35) Felix: T R1 B1 Felix

36) mneme: Trade B3 Y3 Mneme

37) Felix: S B1 Felix
T G3 Y3 Felix

38) mneme: Build B1 Mneme
	mneme: Check.

39) Felix: T G2 B2 Stake

40) mneme: Sacrifice Y3 Mneme
Move B1 Mneme Felix
Move B1 Mneme Felix
Discover B2 Macc Y2 Checkmate
	Felix: Nicely done!

	mneme: The out, btw, was:
s y3 felix
m g1 stake macc
m g1 stake macc
m g2 stake macc
c macc g

	Felix: Oh, I see it now. Probably wouldn't have made a difference. Good game!
	mneme: Thanks -- good game!


29294)
Variants: "Hard time"
Started: 2016.3.26, Ended: 2016.4.4
Participants: Simon (S), Pheonixian (N)
Winner: Simon

1) Pheonixian: Homeworld Y1 B2 G3

2) Simon: Homeworld R1 B3 G3
	Simon: Hi, have fun!

3) Pheonixian: Build G1 Pheonixian

4) Simon: Build G1 Simon
	Pheonixian: Hello, you too! This is my first game so we'll see how it goes but I think in any case I will enjoy it.

5) Pheonixian: Discover G1 Pheonixian B3 Eris
	Simon: No problem -- fire away with questions about rules or this implementation. This implementation forbids catastrophe in the middle of a the turn, catastrophe can only occur at end of turn.

6) Simon: Trade G1 Y1 Simon
	Pheonixian: Okay good to know about catastrophes. Is that the standard rule that most people play? Also can one pass a turn or is the pass command only for passing extra sacrifice actions?
	Simon: Pass is to pass one action. You may pass all actions of your turn. I believe this impl has the end-of-turn-only catastrophe merely due to age. Any-time-during-turn catastrophe is the newer ruleset. I don't know what people play in real life, it's advisable to agree. :-)
	Simon: Turns without sacrifice have one action, which you may pass.

7) Pheonixian: Build G1 Pheonixian

8) Simon: Build Y1 Simon
	Pheonixian: Thanks for the information.

9) Pheonixian: Trade G1 B1 Pheonixian

10) Simon: Build Y2 Simon

11) Pheonixian: Build G1 Eris

12) Simon: Trade Y2 B2 Simon

13) Pheonixian: Build G1 Pheonixian

14) Simon: Discover B2 Simon G2 G2

15) Pheonixian: Sacrifice G3 Pheonixian
Build G2 Pheonixian
Build G2 Eris
Build G3 Pheonixian

16) Simon: Build G3 Simon

17) Pheonixian: Trade G2 Y2 Eris

18) Simon: Move Y1 Simon G2

19) Pheonixian: Discover G2 Pheonixian Y3 Sol

20) Simon: Build Y2 G2

21) Pheonixian: Sacrifice G3 Pheonixian
Build G2 Sol
Build G3 Pheonixian
Build B1 Pheonixian

22) Simon: Sacrifice Y2 G2
Move B2 G2 Eris
Move B2 Eris Pheonixian
Catastrophe Pheonixian B

23) Pheonixian: Trade G1 B1 Eris

24) Simon: Build Y2 G2

25) Pheonixian: Sacrifice G3 Pheonixian
Build G1 Eris
Build B1 Eris
Build G3 Pheonixian

26) Simon: Move Y1 G2 Pheonixian

27) Pheonixian: Move B1 Eris Pheonixian

28) Simon: Sacrifice G3 Simon
Build Y2 Pheonixian
Build Y3 Pheonixian
Pass
Catastrophe Pheonixian Y
	Simon: It's rare to see no red ships at all. gg, always happy to rematch!



29366)
Variants: "Unrated"
Started: 2016.3.26, Ended: 2016.4.3
Participants: Pheonixian (S), Felix (N)
Winner: Felix

1) Felix: H B3 Y2 G3

2) Pheonixian: Homeworld B1 G2 Y3
	Felix: Thanks for the game! Have you played before?

3) Felix: Build G1 Felix
	Pheonixian: Thank you as well! This is my first game so I have a lot to learn. I'm looking forward to it.
	Felix: Welcome! I'm pretty familiar with the game, but I'm definitely not the best on here. I'm happy to answer any questions you have or provide tips along the way. Hope you have fun!

4) Pheonixian: Build Y1 Pheonixian

5) Felix: Trade G1 B1 Felix
	Pheonixian: I hear the best on here are some of the best anywhere so certainly nothing wrong with not yet being ready to match them.
	Felix: Yeah. They crush me repeatedly, but the best way to improve is to play against good players and see what tactics they use against you!

6) Pheonixian: Trade Y1 G1 Pheonixian

7) Felix: Build B1 Felix
	Pheonixian: Indeed so. One learns quite a bit more from playing better players than oneself than from playing worse players.

8) Pheonixian: Build G1 Pheonixian

9) Felix: Discover B1 Felix G1 Ramp
	Felix: Certainly! One tip... you notice that I got the last small blue, and now you are unable to trade for blue until you are able to make a medium ship. You COULD trade your large yellow away for a blue, but that wouldn't be particularly helpful because then you would lose the ability to build yellow. Since I have all the small blues, I have essentially blocked you from getting to blue until you are able to build medium ships. That's not the ideal situation for you. So, in the early game, when you see that there is only one small left of a color you don't yet have, it's wise to try to trade for it and not let your opponent block you out of that color. Make sense? I hope that helps.

10) Pheonixian: Discover G1 Pheonixian B3 Ice

11) Felix: Build B2 Ramp
	Pheonixian: I see how that makes sense indeed. Thanks. I also noticed you took the last small green but avoided giving me the first new medium ship because I had nowhere available to build it.
	Felix: Exactly!

12) Pheonixian: Build G2 Ice

13) Felix: Trade B2 Y2 Ramp

14) Pheonixian: Trade G2 B2 Ice

15) Felix: Build B2 Ramp

16) Pheonixian: Build G2 Pheonixian

17) Felix: Trade B2 R2 Ramp

18) Pheonixian: Trade B2 R2 Ice

19) Felix: B B2 Ramp
	Felix:  Smart thinking to get a red when your opponent does. 

20) Pheonixian: Trade G2 B2 Pheonixian

21) Felix: Build G2 Felix
	Pheonixian: Yes I've heard that as a basic rule of strategy when I was reading the little writing that there is on Homeworlds strategy. "The Weapon Rule: once your opponent has a weapon, you need a weapon." 
But even without having already known that that it was clear you could move the R2 into ice, take the G1 and that would be a pretty weak position for me.
I was going to build the G2 but then I realized it was the last one so I reconsidered the wisdom of giving you an easy large green.

22) Pheonixian: Discover B2 Pheonixian G3 Kale
	Felix: Yeah, good call. It's always good to be aware of what your choice will allow your opponent to do. If it lets your opponent get something better than you, it may not be the wisest choice (although sometimes, you just have to bite the bullet and take a less-than-optimal choice)
	Felix: You seem to have a pretty solid grasp on the basic strategy. With a little practice, you'll be doing great

23) Felix: Discover B2 Ramp G3 Scale

24) Pheonixian: Build G2 Ice
	Pheonixian: I think a solid grasp of basic strategy is a fair evaluation. I think I can generally tell approximately how strong a move is in the short term. I still feel a little bit lost in terms of longer-term strategy, questions like "what colors should I be prioritizing?" and "where is it good to put my ships" and "when is it time to be more threatening?". If I had to sum it up with one question I'd say I don't have a good idea of how the overall game plays out. I guess those types of questions are the first part of the deep strategy that makes Homeworlds a great game.
	Felix: I think you hit the nail on the head. When I started on here a few months ago, I also had a pretty good understanding of the mechanics and I could discern what seemed to be a strong move in the short term. It took me at least 10-20 games to begin to really see and understand the deeper strategy, and I'm still learning it. Formulating that long term strategy and positioning your ships in an effective way is crucial, but really difficult to pull off, especially against a good opponent.
	Felix: One tip I have discovered is that starting with blue/yellow in your homeworld and starting with a large green as your first ship seems to be the most effective opening setup. It can be really helpful in the mid-game to have a large green ship that you can either sacrifice for three build actions, or you can set up a "factory" in your homeworld. This is more difficult to pull off when you have green as one of your home stars, since green quickly becomes a crowded color in your home system. This also comes down to preference and play style, of course, but I have found that I have struggled a lot more when I have included green in my home system instead of as my starting ship.
	Felix: Red can be pretty much ignored in the early game, unless of course your opponent gets it. You want to focus on building up your other colors and spreading out as much as possible so you have a lot of build potential. I would say Blue is actually one of the most important colors to prioritize early on. This depends on what your opponent is doing, of course, but blue is a strong color because you can easily trade it for anything. You also want to be careful about trading away the last of any color in a system. If you trade the last of any color, you immediately lose the ability to build that color in that system. It's usually preferable to try to build a second blue, for instance, and then trade one of those blues for another color. Make sense?
	Felix: Lastly, regarding longer-term strategy (and color prioritization) you obviously need to factor in what colors are present in your opponent's homeworld. I have blue and yellow in mine, so you will probably want to focus on building up enough blue and yellow ships in locations close to my homeworld. Once you have enough to cause a catastrophe, you can work on figuring out a way to move them into my system. Alternatively, you could also try to bring in green to destroy most of my ships (and my biggest ones) and then bring in your own medium or large ship to try to capture my remaining ships. If I changed one of my greens to a red or some other color, though, that would make things trickier for you. It truly is a deep game...

25) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Ramp
Build B3 Scale
	Pheonixian: I was in fact noticing that exact problem. I wanted to build green but it was getting very crowded quickly in my homeworld, so having yellow/blue as the star and a green ship seems likely to be better. The yellow ship hasn't seemed particularly useful at the beginning of the game, whereas green would allow a powerful sacrifice it seems. 
	Pheonixian: When I first started blue seemed a bit underpowered as a ship option honestly but as we move through the game it seems better and better, so it seems you are right about that. 

	Pheonixian: The multiple options for victory conditions also seem to be an important part of the depth of this game. There's also a really neat effect it seems where ships build up more and more which pushes the game towards catastrophes and ultimately a conclusion. It seems an important part of a well-designed game is a force driving it naturally to a conclusion and Homeworlds definitely has that feeling.

26) Pheonixian: Build Y1 Pheonixian
	Felix: Right. I recommend having no more than two of any color in a system if possible. If green is one of your homeworld stars, that makes it impossible to set up a factory... And you're right, the game does sort of drive itself to a conclusion in that way. I hadn't thought of it like that, but you're right!

27) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Ramp
Build R1 Ramp
	Felix: And here you see an effective use of the factory, which results in me nearly monopolizing blue...

28) Pheonixian: Discover Y1 Pheonixian R3 Warship
	Pheonixian: Ouch. I planned to sac the g2 to take both blue pieces next turn but somehow completely blanked on the fact that you could just do that and prevent me. 
Much to learn for me it seems.
	Felix: That's okay. Best way to learn is to make mistakes! I've made many. It's always a learning experience.

29) Felix: Trade B3 Y3 Scale

30) Pheonixian: Build B3 Kale
	Pheonixian: Indeed, making mistakes has much potential to teach us.
This turn was kind of awkward I wasn't really sure what would be a good move. That might have been because I got myself into a bad spot and there wasn't a great move.
	Felix: Sometimes there just isn't a great move available and you have to do the best you can, or try to work toward a better move. It can be very difficult to see good moves in the midge when things are very complex. I often miss the ideal move myself.

31) Felix: Move R2 Ramp Scale

32) Pheonixian: Trade G1 R1 Pheonixian
	Pheonixian: That makes sense. Considering one's options for the next turns can probably reduce the difficulty but not eliminate it. The middle game does seem to be the most complex part of the game.

33) Felix: Move Y2 Ramp Warship

34) Pheonixian: Discover Y1 Warship G1 Venus

35) Felix: Build Y1 Scale
	Felix: Yeah, in my opinion, the mid game is the easiest place to lose track of things and make mistakes!

36) Pheonixian: Sacrifice G2 Ice
Build Y2 Pheonixian
Build Y3 Venus

37) Felix: Sacrifice Y3 Scale
Move Y1 Scale Pheonixian
Move Y2 Warship Pheonixian
Move B2 Scale Pheonixian
Catastrophe Pheonixian Yellow
	Pheonixian: It makes sense, as this is the time when the most pieces are on the board and therefore the most options are available.

38) Pheonixian: Sacrifice Y3 Venus
Move R2 Ice Pheonixian
Move B3 Kale Pheonixian
Move G1 Ice Pheonixian

39) Felix: S R2 Scale
A R1 Pheonixian
A R2 Pheonixian

40) Pheonixian: Trade B3 R3 Pheonixian

41) Felix: B R1 Pheonixian
C Pheonixian Red
	Pheonixian: Hm, I didn't see that when I build the yellow ship. This is a pretty bad place to be in it seems; though I don't think I lose instantly.
	Felix: It's so easy to overlook stuff like that when the game gets complex. I do it often! It doesn't look good for you, but you should be able to survive a bit longer and hope I make a mistake!

42) Pheonixian: Trade B2 R2 Kale
	Felix: You always want to guard against losing control of red, though. I'm not sure there's much else you could have done though. I think you made the best move, given the scenario

43) Felix: S R1 Ramp
A G1 Pheonixian

	Pheonixian: It looks pretty bad and I don't really see a way out from here honestly. I'll keep playing a bit but I don't see myself succeeding in the end.
	Felix: Hey, that's okay. Don't be discouraged. I think you played very well for a first time! You will definitely be a very solid player after a few games under your belt. I'm happy to rematch any time!
	Pheonixian: I didn't expect to win my very first game against an experienced player, so I'm not discouraged I would say. I definitely have a much greater appreciation for the size of the learning curve of this game though :)

	Felix: It can be a bit overwhelming at times, but I'm happy to do what i can to give you pointers. If you want to rematch, I'm happy to play an even more casual game and just talk through it as we go.


29514)
Variants: "Hard time"
Started: 2016.3.27, Ended: 2016.4.9
Participants: goulo (S), Aristos (N)
Winner: goulo

1) Aristos: Homeworld B3 R2 G3

2) goulo: Homeworld R2 B1 G3
	Aristos: Hello. Good game.

3) Aristos: Build G1 Aristos
	goulo: hi, have fun!

4) goulo: Build G1 Goulo

5) Aristos: Trade G3 Y3 Aristos

6) goulo: Trade G3 Y3 Goulo

7) Aristos: Build Y1 Aristos

8) goulo: Build Y1 Goulo

9) Aristos: Trade Y3 B3 Aristos

10) goulo: Trade Y1 R1 Goulo

11) Aristos: Build B1 Aristos

12) goulo: Build Y1 Goulo

13) Aristos: Discover B1 Aristos B1 Plum

14) goulo: Trade Y3 B3 Goulo

15) Aristos: Trade B1 G1 Plum

16) goulo: Build G2 Goulo

17) Aristos: Build G2 Plum

18) goulo: Discover G2 Goulo Y3 Parnaso

19) Aristos: Trade G1 Y1 Plum

20) goulo: Build Y2 Goulo

21) Aristos: Build Y2 Plum

22) goulo: Move Y1 Goulo Parnaso

23) Aristos: Discover Y1 Plum G3 Pear

24) goulo: Sacrifice G2 Parnaso
Build Y2 Parnaso
Build Y3 Goulo

25) Aristos: Build Y3 Aristos
	Aristos: Sorry... mistyped g3 as g2. 

26) goulo: Move Y2 Parnaso Plum

27) Aristos: Trade Y1 R1 Aristos

28) goulo: Move Y2 Plum Pear

29) Aristos: Build Y1 Pear

30) goulo: Sacrifice R1 Goulo
Attack Y1 Pear

31) Aristos: Move Y2 Plum Pear
Catastrophe Pear Yellow

32) goulo: Build Y1 Goulo

33) Aristos: Build Y1 Aristos

34) goulo: Trade Y1 R1 Goulo

35) Aristos: Move Y1 Aristos Plum

36) goulo: Build B1 Goulo

37) Aristos: Sacrifice G2 Plum
Build Y1 Plum
Build Y2 Aristos

38) goulo: Move B1 Goulo Parnaso

39) Aristos: Move Y1 Plum Parnaso

40) goulo: Discover B1 Parnaso Y2 Hesse

41) Aristos: Sacrifice R1 Aristos
Attack Y1 Parnaso

42) goulo: Discover Y2 Goulo G3 Kalevala

43) Aristos: Build G1 Aristos

44) goulo: Build G2 Goulo

45) Aristos: Move G1 Aristos Plum

46) goulo: Move G2 Goulo Parnaso

47) Aristos: Move Y3 Aristos Plum

48) goulo: Sacrifice R1 Goulo
Attack Y1 Parnaso

49) Aristos: Move Y1 Plum Parnaso
Catastrophe Parnaso Yellow

50) goulo: Build G2 Goulo

51) Aristos: Build G2 Plum

52) goulo: Sacrifice G1 Goulo
Build B2 Hesse

53) Aristos: Trade Y2 R2 Aristos

54) goulo: Discover B1 Hesse Y1 Parnaseto

55) Aristos: Trade B3 G3 Aristos

56) goulo: Trade B2 G2 Hesse

57) Aristos: Move G2 Plum Hesse

58) goulo: Discover G2 Hesse Y1 Flaveto

59) Aristos: Sacrifice G3 Aristos
Build G1 Hesse
Build G3 Plum
Build G3 Aristos

60) goulo: Sacrifice G2 Flaveto
Build B2 Parnaseto
Build B2 Parnaseto

61) Aristos: Trade G3 B3 Plum

62) goulo: Build Y1 Goulo

63) Aristos: Move B3 Plum Kalevala

64) goulo: Sacrifice Y2 Kalevala
Move B1 Parnaseto Aristos
Move B2 Parnaseto Aristos

65) Aristos: Sacrifice G3 Aristos
Build G2 Plum
Build G3 Aristos
Build B2 Kalevala

66) goulo: Attack R2 Aristos
	Aristos: Wow. That would've been stupid. 

67) Aristos: Attack R2 Aristos
	goulo: heh! :)

68) goulo: Pass
	Aristos: What's the rule on take backs? I.e. you attack my red ship, I attack right back. You attack again... deadlock. Which of us wins that scenario to break the cycle? 
	Aristos: Hm... found a citation where the official ruling is that such a game is a draw. I'll assume that's the case. You can either take a draw by attacking my red ship before you catastrophe or play for victory by catastrophe first. Either way, I'm going to leverage my green advantage while I have it. 

69) Aristos: Pass
	Aristos: Ok, so now if you attack my red (or my green for that matter), I attack back. Stalemate. 

70) goulo: Pass
	goulo: there seems to be a technical problem of SDG not providing a way to propose a draw in Homeworlds. Or am I blind and missing it somewhere?
	Aristos: We have to both pass twice in a row. The problem with that is that if I pass, you press advantage. So the only way to a draw is to agree to it here and then actually execute on it. 

71) Aristos: Pass
	Aristos: You can move your b2 into Aristos to break the cycle. 
	goulo: Oh, interesting, I didn't know we could both pass and that would let SDG recognize it's a draw. I'm content to agree to a draw if you are. So I officially propose doing that. OK? If you agree to a draw too, then let's both pass and finish it rather than capturing back and forth the rest of our lives. :)
	Aristos: I agree.

72) goulo: Pass

	Aristos: I challenged. I'll resign so you can keep your seat. 
	goulo: Thanks, that's very gracious of you, since I think if we'd kept playing instead of trying to make SDG recognize a draw, you were winning. 
	goulo: Too bad Aaron isn't developing SDG any more. This game needs a "propose draw" option! :)


29541)
Variants: "Hard time"
Started: 2016.4.3, Ended: 2016.5.4
Participants: Felix (S), TeeTeeTee (N)
Winner: TeeTeeTee

1) TeeTeeTee: Homeworld B1 Y2 G3
	TeeTeeTee: Well, if you insist.

2) Felix: Homeworld G3 B1 B3 *
	Felix: No one else will accept, either. Good luck!
	Felix: h g3 b1 b3*

3) TeeTeeTee: Build G1 Teeteetee

4) Felix: Build B1 Felix

5) TeeTeeTee: Trade G3 B3 Teeteetee

6) Felix: Trade B3 Y3 Felix

7) TeeTeeTee: Build B2 Teeteetee

8) Felix: Build B2 Felix

9) TeeTeeTee: Trade B3 R3 Teeteetee
	Felix: Nice work dodging around that early blue advantage I was going for!

10) Felix: Trade B1 G1 Felix

11) TeeTeeTee: Build R1 Teeteetee

12) Felix: Build Y1 Felix

13) TeeTeeTee: Build G1 Teeteetee

14) Felix: Build G2 Felix

15) TeeTeeTee: Build G2 Teeteetee

16) Felix: Discover G1 Felix B2 Stilt

17) TeeTeeTee: Discover G1 Teeteetee Y3 Sunn

18) Felix: Build G2 Stilt

19) TeeTeeTee: Build G3 Sunn

20) Felix: Build G3 Felix

21) TeeTeeTee: Trade G2 Y2 Teeteetee

22) Felix: Trade G2 R2 Felix

23) TeeTeeTee: Sacrifice G3 Sunn
Build G2 Teeteetee
Build G2 Teeteetee
Build G3 Sunn

24) Felix: Move Y1 Felix Stilt

25) TeeTeeTee: Move B2 Teeteetee Sunn

26) Felix: Move G1 Stilt Sunn

27) TeeTeeTee: Sacrifice G3 Sunn
Build G3 Sunn
Build B1 Sunn
Build B3 Sunn

28) Felix: Discover B2 Felix Y2 Stamp

29) TeeTeeTee: Move B2 Sunn Stamp

30) Felix: Sacrifice G3 Felix
Build G3 Stilt
Build R1 Felix
Build B3 Stamp

31) TeeTeeTee: Sacrifice Y2 Teeteetee
Move B1 Sunn Stamp
Move G3 Sunn Stamp
Catastrophe Stamp Blue

32) Felix: Move G1 Sunn Teeteetee
Catastrophe Teeteetee Green

33) TeeTeeTee: Build B1 Sunn

34) Felix: Trade G2 B2 Stilt

35) TeeTeeTee: Move B1 Sunn Stamp

36) Felix: Move R1 Felix Stilt

37) TeeTeeTee: Sacrifice G3 Stamp
Build B2 Sunn
Build B3 Stamp
Build B3 Stamp

38) Felix: Discover B2 Stilt G3 Stake

39) TeeTeeTee: Move B3 Stamp Stake

40) Felix: Build R1 Stilt

41) TeeTeeTee: Trade B3 R3 Sunn

42) Felix: Discover R1 Stilt Y3 Stall

43) TeeTeeTee: Sacrifice R1 Teeteetee
Attack B2 Stake

44) Felix: Discover R1 Stilt B3 Stab

45) TeeTeeTee: Trade B3 R3 Stake

46) Felix: Discover G3 Stilt B3 Onus

47) TeeTeeTee: Build G1 Sunn

48) Felix: B G1 Onus

49) TeeTeeTee: Move B3 Stamp Stall

50) Felix: Build G2 Onus

51) TeeTeeTee: Build G2 Sunn

52) Felix: S G2 Onus
B R1 Stab
B R2 Stab

53) TeeTeeTee: Move B3 Stall Teeteetee

54) Felix: Sacrifice G3 Onus
Build Y1 Felix
Build Y1 Stilt
Build Y2 Stilt

55) TeeTeeTee: Move R3 Sunn Stilt

56) Felix: Sacrifice Y2 Stilt
Move R2 Stab Stamp
Move Y1 Stilt Stab

57) TeeTeeTee: Attack Y1 Stilt

58) Felix: A B1 Stamp

59) TeeTeeTee: Move R3 Stilt Onus

60) Felix: S G1 Onus
B Y2 Stab

61) TeeTeeTee: Trade R3 G3 Onus

62) Felix: Trade R1 G1 Stab

63) TeeTeeTee: Trade G1 R1 Sunn

64) Felix: Move R2 Felix Stilt

65) TeeTeeTee: Sacrifice G3 Onus
Build B3 Sunn
Build R2 Stake
Build R3 Sunn

66) Felix: A Y1 Stilt

67) TeeTeeTee: Move B3 Sunn Stamp

68) Felix: M B1 Stamp Stall

69) TeeTeeTee: Sacrifice R1 Sunn
Attack R2 Stamp

70) Felix: Build R1 Stab

71) TeeTeeTee: Move B3 Stamp Stab

72) Felix: Sacrifice Y2 Stab
Move R1 Stab Teeteetee
Move R1 Stab Teeteetee

73) TeeTeeTee: Sacrifice R3 Teeteetee
Attack Y1 Stab
Attack G1 Stab
Attack R1 Teeteetee

74) Felix: Trade Y3 R3 Felix

75) TeeTeeTee: Trade R3 Y3 Stake

76) Felix: Build R3 Felix

77) TeeTeeTee: Sacrifice Y3 Stake
Move R2 Stake Stamp
Move R2 Stamp Felix
Move R2 Stamp Felix
Catastrophe Felix Red

78) Felix: Build Y2 Felix

79) TeeTeeTee: Move B3 Stab Stilt

80) Felix: Trade Y2 G2 Felix

81) TeeTeeTee: Sacrifice Y1 Stab
Move B3 Stilt Felix

82) Felix: Sacrifice B1 Stall
Trade R1 B1 Teeteetee

83) TeeTeeTee: Sacrifice R3 Sunn
Attack G2 Felix
Attack Y1 Felix
Attack B1 Teeteetee
	Felix: Nicely done. I think you will have me soon!

	Felix: Good game. Thanks for accepting my challenge!
	TeeTeeTee: Thanks for the game. Just out of curiosity, how come you decided to sacrifice your last large ship in the centre? It was a very valuable piece at that point. ( http://superdupergames.org/?page=archive_play&gid=29541&idx=53 )
	Felix: I did it to try to gain a monopoly on yellow, but in retrospect, that was an unwise decision. As you said, I couldn't maintain the monopoly, and I ended up getting destroyed by my lack of large ships.


29496)
Variants: "Unrated"
Started: 2016.4.8, Ended: 2016.4.15
Participants: wil (S), orangeblood (N)
Winner: orangeblood

1) orangeblood: Homeworld Y3 B2 G3

	orangeblood: My first-ever Homeworlds game. No clue what to do, haha.


29517)
Started: 2016.4.9, Ended: 2016.4.19
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld Y1 B2 G3

2) Felix: H B1 Y3 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	Felix: Likewise!

4) Felix: B G1 Felix
	ts52: I can't wait for PAX East! I know I'll be able to get in a few games of homeworlds in person!

5) ts52: Discover G1 Ts52 B3 Gonzo

6) Felix: Trade G1 B1 Felix
	Felix: Aw man, sounds awesome! I wish I could make it, but I won't be able to. I hope you have a great time! 

7) ts52: Build G1 Ts52

8) Felix: Build B1 Felix

9) ts52: Trade G1 Y1 Ts52

10) Felix: Discover B1 Felix G2 Grip

11) ts52: Build Y1 Ts52

12) Felix: Build B2 Grip

13) ts52: Move Y1 Ts52 Gonzo

14) Felix: Trade B2 Y2 Grip

15) ts52: Build Y2 Gonzo

16) Felix: Build Y2 Grip

17) ts52: Discover Y1 Ts52 G3 Kermit

18) Felix: Move Y2 Grip Kermit

19) ts52: Build Y3 Kermit

20) Felix: Build Y3 Grip

21) ts52: Move Y1 Kermit Grip

22) Felix: Trade Y2 R2 Grip

23) ts52: Trade Y2 R2 Gonzo

24) Felix: M Y3 Grip Gonzo

25) ts52: Discover R2 Gonzo Y2 Bigbird

26) Felix: A Y1 Grip

27) ts52: Move G1 Gonzo Bigbird

28) Felix: B B2 Grip

29) ts52: Build R1 Bigbird

30) Felix: Move Y3 Gonzo Bigbird

31) ts52: Sacrifice R1 Bigbird
Attack Y2 Kermit

32) Felix: Sacrifice R2 Grip
Attack R2 Bigbird
Attack G1 Bigbird

33) ts52: Trade Y1 R1 Gonzo

34) Felix: Discover B2 Grip R3 Surge

35) ts52: Build G1 Ts52

36) Felix: Sacrifice G3 Felix
Build B2 Felix
Build B3 Surge
Build B3 Surge

37) ts52: Move G1 Ts52 Gonzo

38) Felix: Sacrifice Y3 Bigbird
Move B3 Surge Ts52
Move B3 Surge Ts52
Discover G1 Bigbird Y3 Oster

39) ts52: Sacrifice Y2 Kermit
Move Y3 Kermit Bigbird
Move Y3 Bigbird Felix

40) Felix: Sacrifice R2 Bigbird
Attack G3 Ts52
Pass
	Felix: Scared me to death to not have a large at home. I think maybe it paid off though?
	ts52: Definitely a scary thought, but I think you have me.

	Felix: Looks like it! Great game. :)
	ts52: Very good game.


29400)
Variants: "Hard time"
Started: 2016.4.14, Ended: 2016.4.17
Participants: Felix (S), wil (N)
Winner: Felix



29396)
Variants: "Hard time"
Started: 2016.4.14, Ended: 2016.4.17
Participants: Felix (S), SilentTitan (N)
Winner: Felix



29511)
Variants: "Hard time"
Started: 2016.4.14, Ended: 2016.5.2
Participants: Simon (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 Y2 G3

2) Simon: Homeworld B3 R1 G3
	Felix: Hi, good luck and have fun!
	Simon: You too, have fun!

3) Felix: B G1 Felix

4) Simon: Build G1 Simon

5) Felix: T G1 B1 Felix

6) Simon: Trade G1 B1 Simon

7) Felix: B B2 Felix

8) Simon: Build B2 Simon

9) Felix: Discover B2 Felix G3 Rise

10) Simon: Trade B2 Y2 Simon

11) Felix: Build B2 Rise

12) Simon: Build Y1 Simon

13) Felix: Trade B2 Y2 Rise

14) Simon: Discover Y2 Simon G2 G2

15) Felix: Build B2 Rise

16) Simon: Move B1 Simon G2

17) Felix: Discover B2 Rise G2 Whorl

18) Simon: Build Y1 G2

19) Felix: B G1 Felix

20) Simon: Trade Y1 R1 G2

21) Felix: Trade G1 R1 Felix

22) Simon: Build R2 G2

23) Felix: Build B2 Rise

24) Simon: Build B3 G2

25) Felix: B B3 Whorl

26) Simon: Trade B3 Y3 G2

27) Felix: Trade B2 R2 Rise

28) Simon: Build G1 Simon

29) Felix: Build G1 Felix

30) Simon: Discover Y2 G2 B3 B3

31) Felix: Build B2 Rise

32) Simon: Move R1 G2 B3

33) Felix: Discover G1 Felix Y3 Opus

34) Simon: Sacrifice G3 Simon
Build Y1 G2
Build Y1 B3
Build Y3 Simon

35) Felix: Sacrifice G1 Opus
Build Y3 Rise
	Felix: I have seen the face of death, and it is yellow.

36) Simon: Discover Y1 G2 R3 R3

37) Felix: Build R2 Rise
	Simon: Hnn, the good y3s

38) Simon: Build R3 G2

39) Felix: Build R3 Felix

40) Simon: Trade Y3 G3 Simon

41) Felix: Discover R1 Felix Y3 Slipstream

42) Simon: Move R3 G2 Slipstream

43) Felix: Move R3 Felix B3

44) Simon: Sacrifice Y2 B3
Discover Y1 B3 G1 G1
Move R1 B3 G2

45) Felix: Discover B2 Rise Y2 Codex

46) Simon: Attack R1 Slipstream

47) Felix: S Y2 Rise
M B2 Whorl Simon
M B3 Whorl Simon

48) Simon: Attack B3 Simon

49) Felix: M B2 Codex Simon
C Simon Blue

50) Simon: Sacrifice Y3 G2
Move R1 G2 Rise
Move R2 G2 Rise
Move Y1 R3 Felix
Catastrophe Rise R

51) Felix: Trade B2 R2 Rise

52) Simon: Build B2 G2
	Simon: Expensive defense x_X
	Felix: Definitely, but well done! I didn't realize you had a way out there...

53) Felix: Build R1 Rise

	Simon: gg
	Felix: Likewise! Well fought!


29518)
Variants: "Unrated"
Started: 2016.4.15, Ended: 2016.4.26
Participants: Felix (S), orangeblood (N)
Winner: orangeblood

1) orangeblood: Homeworld Y3 B2 G3

2) Felix: H G3 B2 Y3
	orangeblood: Hi... first game, no idea what I'm doing! But I've heard a lot about it, and looking forward to learning.
	Felix: Hey there! Welcome! I'm glad you decided to jump in. It's and extremely fun game. I'd be happy to help you learn the ropes. I don't think I'm as scary as some of the other players on here, who are insanely good!

3) orangeblood: Build G1 Orangeblood
	Felix: Let me know if you have any questions, and if I think of any tips along the way, I'll give em! Most importantly, have fun

4) Felix: B Y1 Felix
	orangeblood: Thanks for offer to help! First question: Why did you choose to build a a star system the same size as mine. Everything I've read indicates it's better not to... but I'm guessing the answer is that a more experienced player can take advantage of that. :)
	Felix: You know what? I actually didn't notice I built the same size until now! The fortress setup, which is what we both have, is usually considered weaker, and I usually pick it when playing against a new player. I didn't look closely enough at your setup and just made a mistake :) I actually did intend them to be different. This will make for a much faster and more close range game!
	Felix: Your choice of starting colors is really smart. I normally don't put green as one of my starting homeworld colors. A yellow/blue star with a green ship is the most effective from my experience. It all comes down to personal preference though!

5) orangeblood: Trade G1 B1 Orangeblood

6) Felix: T Y1 B1 Felix
	orangeblood: I notice you trade for a blue ship early... why don't you start with a blue ship? Because you want to keep a large yellow at home?
	orangeblood: (BTW, do you know about the Pyramid Arcade Kickstarter currently underway?)
	Felix: Usually I start with a large green, actually. It's one of the most useful colors to have a large early on because you can sacrifice it any time for three builds, and it can also allow you to set up a "factory" situation. I tend to trade for blue early on because it's usually one of the more contested colors in the game for some reason so it's good to try to get some of it early, especially if your opponent is also going for it.
	Felix: If there are only two small a of a particular color on the second turn, you usually want to trade your first small ship for that color to make sure you don't get locked out of it.
	Felix: And yes! I backed it! Looks awesome :)

7) orangeblood: Build G1 Orangeblood

8) Felix: Build Y1 Felix
	orangeblood: The rules seem pretty easy to grasp... but i wont have much of a clue what to do until I've played a couple times. 
	orangeblood: I backed the Kickstarter also... even though I've not played any of the pyramid games. 

9) orangeblood: Trade G1 Y1 Orangeblood
	Felix: Yeah, this is one of those games where the basic rules are pretty simple, and the short-term strategy isn't too hard, but developing longer term strategies takes quite a few games to understand!

I think you will find the pyramid arcade well worth your money. it includes so many games, and the ability to play many more!

10) Felix: Trade Y1 G1 Felix
	orangeblood: I've sort of been frozen for a couple of days trying to figure out what to do, so I've decided to just do some things and not worry about making mistakes in this first game. :)
	Felix: Yeah, don't worry about it! You will make a lot of mistakes in your first few games. I still make mistakes, and I've played 70 games now!
	Felix: Just do what seems best, and you will learn as you go when you see the consequences of your moves :) 

11) orangeblood: Discover B1 Orangeblood G1 Bevo
	Felix: Trading for a yellow was a pretty good idea. I'd recommend sending your yellow or blue ship out to a new planet soon. One thing to keep in mind, though, is that if you only have one of a color in a system, then moving that color to a new system will immediately lose you the ability to build that color in the old system. So if you move out your blue now, for instance, you will no longer be able to build blue in your homeworld. That isn't necessarily always a bad thing, especially since you have blue as one of your home stars, so you don't really want to build much blue there anyway and risk a catastrophe. But it's just a good tip to remember that if you build a second ship of a color first and THEN move a ship to discover new lands, you will have the ability to build that color in both systems.

12) Felix: Discover G1 Felix B1 Opus
	orangeblood: Thanks for all the great tips!

13) orangeblood: Trade B1 R1 Bevo

14) Felix: Build G1 Opus
	orangeblood: Red hits the table! ;)
	Felix: Oh snap! It's getting real now!

15) orangeblood: Build G2 Orangeblood

16) Felix: Trade G1 R1 Opus
	Felix: It may have been an error on my part to allow you to build the first medium green like that. I didn't really have too much of a choice though. Nice job taking advantage of it!

17) orangeblood: Move Y1 Orangeblood Bevo

18) Felix: Build Y1 Felix

19) orangeblood: Move R1 Bevo Felix
	orangeblood: Do you know why when I try move to Felix, it tells me the system does not exist?

20) Felix: Sacrifice R1 Opus
Attack R1 Felix
	orangeblood: Ah, I wasn't writing my own system first. 

21) orangeblood: Build Y1 Bevo
	Felix: Glad you figured it out! And here's a painful lesson to learn. It's possible to sacrifice a red in one system and attack a ship in a different system. That's how I was able to take over your small red just now, giving me the only red at this point. You should always look out for that possibility! But I don't think it has set you back too much.
	orangeblood: Ah! Good thing to know. Now that you say it it makes sense. 

22) Felix: Move Y1 Felix Opus

23) orangeblood: Build Y2 Bevo

24) Felix: Build Y2 Opus

25) orangeblood: Move Y2 Bevo Orangeblood

26) Felix: Trade Y2 B2 Opus
	orangeblood: I assume if you sacrifice to construct in another system... you must still have a ship in the system you're building in of the same color you want to construct?
	Felix: Yep. You are correct. You still have to have a ship in the target system of that color. This is crucial when you try to set up a "factory." You need to have a large green on your home system, plus another green. Then, when there are no greens left, or only larges left, you can sacrifice the large green, then immediately rebuild it in the same system, and you can also use two other build actions. It is difficult to set up but can be very effective when used properly.

27) orangeblood: Trade Y2 R2 Orangeblood

28) Felix: Build G1 Opus

29) orangeblood: Trade G3 B3 Orangeblood

30) Felix: Build Y2 Opus

31) orangeblood: Build G2 Orangeblood

32) Felix: Discover B1 Felix R1 Echo

33) orangeblood: M G2 Orangeblood Bevo

34) Felix: S Y2 Opus
M B2 Opus Orangeblood
M B1 Echo Orangeblood
C Orangeblood Blue

35) orangeblood: Move R2 Orangeblood Opus
	orangeblood: Other than avoiding a catastrophe, what are the advantages of finding a second system like you did? (Unless that gives away what you're going to do, haha.)
	Felix: I don't mind giving away my plan at the moment :) the main benefit is just spreading your ships out so you can avoid a catastrophe and build more ships. It really limits how large your fleet can grow if you don't spread them out. In this case, however, I wanted to have two blue ships that are each one jump away from your system. It would have been too risky to put both blue ships in a blue system because you could have easily caused a catastrophe there and blown up the whole system
	orangeblood: I think I know what your next move is. I'll tell you why if it turns out I'm right. :)

36) Felix: B G2 Opus
	Felix: Were you right? :)

37) orangeblood: Attack G2 Opus
	orangeblood: Yes, and there’s a funny story behind it. I saw you’d answered my question, and just glanced over it without really absorbing what you said. Later I was checking out a video Andy Looney did about the “Bluebird Mistake."
https://www.boardgamegeek.com/video/7488/homeworlds/strategy-lesson-and-bluebird-mistake

Which is pretty much what you did — sacrifice a ship to overload a color in the opponent’s home system. Then I went back and read your note more closely, and OF COURSE if you wanted to get two blue ships one jump away from my system, I figured that’s what you had in mind. :)

Now I get to learn how hard it is to play with one star in my system… and to have no blue!
	Felix: Good catch! I made the bluebird mistake myself several times. The best way to learn is to experience it for yourself! Making mistakes is the best way to learn from them so I hope this is helping your improve your game :) it is also challenging to not have a large ship, so you have quite an uphill battle in front of you!

38) Felix: Sacrifice Y3 Felix
Move G1 Opus Orangeblood
Move G1 Opus Orangeblood
Move Y1 Opus Felix
	Felix: Here's another situation where the blue bird mistake is possible. Can you catch it and prevent it?

39) orangeblood: Sacrifice R2 Opus
Attack G1 Orangeblood
Attack G1 Orangeblood
	orangeblood: I guess this will temporarily help.

40) Felix: Build Y2 Felix
	Felix: Yep, that will help. Good move!

41) orangeblood: Sacrifice G2 Bevo
Build G2 Opus
Build G3 Opus
	Felix: And another good move. You repelled my attack very nicely, and I may be in trouble now!

42) Felix: Move Y2 Felix Opus

43) orangeblood: Trade G3 R3 Opus

44) Felix: Discover Y2 Opus Y2 Hope

45) orangeblood: S Y1 Bevo
M R3 Opus Felix

46) Felix: Build R1 Felix

47) orangeblood: Attack Y1 Felix

48) Felix: Build R1 Felix

49) orangeblood: Move Y1 Bevo Felix
Catastrophe Felix Red
	orangeblood: Man, you've expertly guided me through a dozen learning processes this game. I have to stare at the screen for an hour figuring things out. :)
	Felix: I'm glad you're learning! I actually made quite a mistake myself in this game, and I think I'm about to lose. I hope it has taught you some things though! Would you be up for a rematch?

	Felix: There's two different ways you could finish me off right now. Do you see both?
	orangeblood: I only saw the catastrophe... 
	orangeblood: Absolutely we'll do a rematch!

	Felix: The catastrophe was by far the more obvious, but you could also have sacrificed your R3 ship in my system and used your three attack actions to take over all three of my small reds with your small yellow. :) Rematch sounds good! If you want, you can just go accept my open challenge on the challenge list
	Felix: And nicely done! You played well.
	orangeblood: Ah, yes. I had actually tried sacrificing the R3 before I had the yellow ship in there, but of course you can't sacrifice first if you have no other ship in the system. 

I'll start our new game later on tonight... thanks very much again for all your help!
	orangeblood: And by the way, what mistake did you make other than taking it easy on a newbie?
	Felix: No problem! I'm looking forward to our next game.


29608)
Started: 2016.4.17, Ended: 2016.4.17
Participants: doctorfedora (S), lowtiergrgl (N)
Winner: doctorfedora

1) lowtiergrgl: Homeworld Y1 G1 R3 *

2) doctorfedora: Homeworld Y1 G3 B3

3) lowtiergrgl: Discover R3 Lowtiergrgl Y2 Pooptown



29606)
Variants: "Hard time"
Started: 2016.4.17, Ended: 2016.10.4
Participants: MagicJohn (S), Grosseteste (N)
Winner: MagicJohn

1) Grosseteste: H Y3 B2 G3

2) MagicJohn: Homeworld B2 G3 B3 *
	Grosseteste: Hello and thanks for the game, good luck!

3) Grosseteste: B G1 Grosseteste
	MagicJohn: Live long and prosper!

4) MagicJohn: Build B1 Magicjohn

5) Grosseteste: T G1 B1 Grosseteste

6) MagicJohn: Trade B1 Y1 Magicjohn

7) Grosseteste: D B1 Grosseteste Y1 Charlie

8) MagicJohn: Trade Y1 R1 Magicjohn

9) Grosseteste: Build G1 Grosseteste

10) MagicJohn: Build R1 Magicjohn
	Grosseteste: Congrats on getting one of your games picked for the Homeworlds demo game video!  I enjoyed it.
	MagicJohn: Aaaah.... well.... hmmmm..... didn't know I had been given an opportunity to publicly humiliate myself.... Where can I find the game?

11) Grosseteste: Trade G1 R1 Grosseteste
	Grosseteste: Part of the Kickstarter campaign for Pyramid Arcade, here is the Homeworlds video: https://www.youtube.com/watch?v=7l_IouG6mOA
I only learned it was you when I followed the link in the description.

12) MagicJohn: Trade R1 Y1 Magicjohn

13) Grosseteste: B G1 Grosseteste
	MagicJohn: Thanks for the info.

14) MagicJohn: Discover Y1 Magicjohn G1 Strawberry Fields

15) Grosseteste: T G1 B1 Grosseteste

16) MagicJohn: Trade B3 Y3 Magicjohn

17) Grosseteste: M R1 Grosseteste Strawberry
	MagicJohn: This opening is becoming something of a learning experience...

18) MagicJohn: Sacrifice R1 Magicjohn
Attack R1 Strawberry
	Grosseteste: For you and me both, brother.

19) Grosseteste: M B1 Charlie Magicjohn
	MagicJohn: I suspect that I will NOT create matching homeworld systems again (star sizes) without including a yellow star.

20) MagicJohn: Sacrifice R1 Strawberry
Attack B1 Magicjohn

21) Grosseteste: Build G1 Grosseteste

22) MagicJohn: Trade B1 R1 Magicjohn

23) Grosseteste: T G1 R1 Grosseteste

24) MagicJohn: Build Y1 Strawberry

25) Grosseteste: B B1 Grosseteste

26) MagicJohn: Build Y1 Magicjohn

27) Grosseteste: Discover B1 Grosseteste G1 Lucy

28) MagicJohn: Build Y2 Strawberry
	MagicJohn: Sorry about yet another time delay but Sara (wife) had a TIA and we spent the weekend and Monday in the hospital.

29) Grosseteste: Sacrifice G3 Grosseteste
Build B1 Lucy
Build B2 Lucy
Build B3 Grosseteste
	Grosseteste: I would be in no position to complain.  Hope she is feeling better and you can avoid another one.

30) MagicJohn: Build Y2 Magicjohn
	MagicJohn: Thnx

31) Grosseteste: T B3 G3 Grosseteste

32) MagicJohn: Discover Y1 Strawberry G2 Walrus

33) Grosseteste: Build B3 Grosseteste

34) MagicJohn: Build Y2 Walrus

35) Grosseteste: D B3 Grosseteste G1 Linus

36) MagicJohn: Build Y3 Walrus

37) Grosseteste: B B3 Grosseteste

38) MagicJohn: Discover Y2 Walrus B3 Bluejway

39) Grosseteste: T B3 R3 Grosseteste

40) MagicJohn: Discover Y1 Strawberry B3 Revolution

41) Grosseteste: Move R3 Grosseteste Strawberry

42) MagicJohn: Move Y2 Strawberry Bluejway

43) Grosseteste: Build G2 Grosseteste

44) MagicJohn: Build R1 Magicjohn

45) Grosseteste: S G3 Grosseteste
B G2 Grosseteste
B G3 Grosseteste
B R2 Strawberry

46) MagicJohn: Build R2 Magicjohn

47) Grosseteste: Move G2 Grosseteste Lucy

48) MagicJohn: Move R1 Magicjohn Strawberry

49) Grosseteste: Sacrifice G3 Grosseteste
Build G3 Grosseteste
Build G3 Lucy
Build R2 Grosseteste

50) MagicJohn: Build R3 Magicjohn

51) Grosseteste: Build R3 Grosseteste

52) MagicJohn: Move R1 Magicjohn Strawberry
Catastrophe Strawberry Red

53) Grosseteste: Discover R3 Grosseteste G1 Charlie

54) MagicJohn: Build R1 Magicjohn

55) Grosseteste: S G3 Grosseteste
B G3 Grosseteste
B R1 Charlie
B R2 Grosseteste

56) MagicJohn: Move R1 Magicjohn Charlie

57) Grosseteste: Move R2 Grosseteste Lucy

58) MagicJohn: Build R3 Magicjohn

59) Grosseteste: Sacrifice G2 Grosseteste
Build G2 Grosseteste
Pass

60) MagicJohn: Move R2 Magicjohn Charlie
Catastrophe Charlie Red

61) Grosseteste: Discover R1 Grosseteste R1 Rerun

62) MagicJohn: Build R1 Magicjohn

63) Grosseteste: Build G1 Grosseteste

64) MagicJohn: Move R1 Magicjohn Rerun

65) Grosseteste: Sacrifice G3 Grosseteste
Build G3 Grosseteste
Build R2 Rerun
Build R3 Grosseteste
Catastrophe Rerun Red

66) MagicJohn: Build R1 Magicjohn

67) Grosseteste: M R2 Grosseteste Linus

68) MagicJohn: Discover Y1 Magicjohn R1 Honeypie

69) Grosseteste: S G3 Grosseteste
B R1 Grosseteste
B R2 Grosseteste
B G3 Grosseteste

70) MagicJohn: Move R1 Magicjohn Honeypie

71) Grosseteste: Move R2 Grosseteste Honeypie

72) MagicJohn: Move Y1 Honeypie Walrus

73) Grosseteste: Attack R1 Honeypie

74) MagicJohn: Move Y1 Walrus Revolution

75) Grosseteste: Sacrifice G1 Grosseteste
Build G1 Grosseteste

76) MagicJohn: Move Y3 Magicjohn Honeypie

77) Grosseteste: Move R1 Grosseteste Honeypie
Catastrophe Honeypie Red

78) MagicJohn: Build Y3 Walrus

79) Grosseteste: Sacrifice G3 Grosseteste
Build R1 Linus
Build R1 Grosseteste
Build G3 Grosseteste

80) MagicJohn: Discover Y3 Walrus R1 Blackbird

81) Grosseteste: B R2 Grosseteste

82) MagicJohn: Move Y1 Walrus Bluejway

	Draw5PlayAll: If you want, I have some advice... but I need permission or else I break the Prime Directive.
	Draw5PlayAll: On the other hand, Grosseteste has very little time.
	Grosseteste: I've been thinking about this for several moves now.  I don't see a way to force a trade for some yellow.  I would like a draw, but I don't think the rules allow it.  Incidentally, I may be posting this position in different places later to ask for advice on something we missed or to brainstorm a draw mechanic for the game (perhaps 3 consecutive catastrophes of the same color might be a draw?).
	Grosseteste: Just resigned so we can kibitz in earnest.  So what are you thinking, Draw5PlayAll?  How would you break the impasse?
	Draw5PlayAll: First off, there was an "Offer Draw" button. Second, the only way to draw by force is to give up your homeworld to destroy the other, e.g. sac the last yellow and move 3 blues in and destroy the second half.

Belay my idea. I wanted to suggest a way for MJ to send 2 yellows in and then another next turn, keeping the Y3s. This fails since Grosseteste can use the Y3 star.
	MagicJohn: It was my thinking that if I exploded gross's yellow star that he could trade for the dead yellow then use his green/blue technologies to out-build me.
	Draw5PlayAll: Oh well. Congratulation on the ladder promotion!
	Grosseteste: Where is the offer draw button in Homeworlds?
	Grosseteste: My thought was the same.  Also, good game MagicJohn!
	MagicJohn: Thanks for an interesting game.......We should have figured out some way of getting a draw......
	Draw5PlayAll: There are plenty of ways.
1. Both Homeworlds are destroyed if someone sacs (or moves) their last ship there to destroy the opponent. Andy said this makes a draw.
2. All blue and yellow is removed, and neither player can do anything useful with the green and red.
3. Both players are fighting over a large ship, and they keep attacking forever. If either side backs off they either lose or have a bad position.
4. A fortress like in this game; destroying one star gives the opponent the chance to kill both of yours.

And there are likely many more. This game (and also Praetorian) should have the draw feature.

I think I was thinking of Martian Chess which has a draw feature.


29609)
Started: 2016.4.17, Ended: 2016.4.22
Participants: doctorfedora (S), lowtiergrgl (N)
Winner: lowtiergrgl

1) lowtiergrgl: Homeworld G1 Y1 R3 *

2) doctorfedora: Homeworld R2 B1 G3

3) lowtiergrgl: Build R1 Lowtiergrgl

4) doctorfedora: Build G1 Doctorfedora

5) lowtiergrgl: Build R1 Lowtiergrgl

6) doctorfedora: Trade G1 Y1 Doctorfedora

7) lowtiergrgl: Discover R1 Lowtiergrgl B3 Pooptown

8) doctorfedora: Discover Y1 Doctorfedora G3 Sloam

9) lowtiergrgl: Move R3 Lowtiergrgl Pooptown

10) doctorfedora: Build Y1 Sloam

11) lowtiergrgl: Build R1 Lowtiergrgl

12) doctorfedora: Build Y2 Sloam

13) lowtiergrgl: Build R2 Lowtiergrgl

14) doctorfedora: Discover Y1 Sloam B2 Funkdunker

15) lowtiergrgl: Move R1 Lowtiergrgl Sloam

16) doctorfedora: Move Y1 Sloam Funkdunker

17) lowtiergrgl: Build R2 Sloam

18) doctorfedora: Move Y2 Sloam Funkdunker

19) lowtiergrgl: Build R3 Lowtiergrgl

20) doctorfedora: Trade Y1 G1 Funkdunker

21) lowtiergrgl: Build R3 Sloam

22) doctorfedora: Build Y1 Funkdunker

23) lowtiergrgl: Trade R3 Y3 Pooptown

24) doctorfedora: Build G1 Doctorfedora
	doctorfedora: what am I even trying to do
	lowtiergrgl: It's a mystery kek

I'm surprised how much pressure a green ship can put on from it's homeworld though. It seems like a much faster method of what I'm trying to do right now, kek

25) lowtiergrgl: Sacrifice Y3 Pooptown
Move R3 Sloam Doctorfedora
Move R3 Lowtiergrgl Pooptown
Move R3 Pooptown Doctorfedora

26) doctorfedora: Trade G3 R3 Doctorfedora
Catastrophe Doctorfedora Red

27) lowtiergrgl: Move R2 Lowtiergrgl Pooptown

28) doctorfedora: Build G2 Doctorfedora

29) lowtiergrgl: Trade R2 Y2 Pooptown
	doctorfedora: ohhhh this is not good

30) doctorfedora: Trade Y2 R2 Funkdunker

31) lowtiergrgl: Sacrifice Y2 Pooptown
Move R2 Sloam Doctorfedora
Move R1 Sloam Doctorfedora

32) doctorfedora: Build G2 Doctorfedora

33) lowtiergrgl: Trade R2 G2 Doctorfedora
Catastrophe Doctorfedora Green



29602)
Variants: "Unrated"
Started: 2016.4.19, Ended: 2016.5.23
Participants: Felix (S), aRough1 (N)
Winner: Felix

1) aRough1: Homeworld R1 B2 G3

2) Felix: Homeworld Y2 B3 G3
	Felix: Hi there! Is this your first time playing the game? Got any questions? Hope you have fun!

3) aRough1: Build G1 Arough1
	aRough1: Yeah first timer! Getting used to word commands! Will do my best!

4) Felix: Build G1 Felix
	Felix: Not a problem! I'm always happy to help new players get used to the game. The word command system is a bit clunky at first. One tip is that you don't have to type out the entire word. Just the first letter will suffice. So instead of typing "build g1 aRough1" you could type "b g1 aRough1" Make sense?

5) aRough1: Trade G1 B1 Arough1
	Felix: If you have any questions, just let me know!
	aRough1: Yeah! Cheers for the tip!

6) Felix: Trade G1 B1 Felix

7) aRough1: B G1 Arough1

8) Felix: Build B1 Felix

9) aRough1: Build B2 Arough1

10) Felix: Discover B1 Felix G1 Semper

11) aRough1: Trade B2 Y2 Arough1

12) Felix: B B2 Semper

13) aRough1: T G1 R1 Arough1

14) Felix: Trade B2 R2 Semper

15) aRough1: B B2 Arough1

16) Felix: Build B2 Semper

17) aRough1: Build B3 Arough1

18) Felix: Build B3 Felix
	Felix: Ooh, you should be careful not to build four of any color in a system, like you've done with blue. I could call a catastrophe now and destroy all your blue. Do you want to take that move back and try something else?

19) aRough1: Trade B3 R3 Arough1
	Felix: I'll give you a pass this time :) But not next time!
	aRough1: Oh! Dammit!  You shouldt go that easy on me!

20) Felix: Trade B2 Y2 Semper

21) aRough1: Discover Y2 Arough1 Y3 Bowie
	Felix: Oh don't worry. I won't go easy on you again. That was your one freebie :P

22) Felix: Build Y1 Semper

23) aRough1: Trade B1 Y1 Arough1

24) Felix: Move B1 Felix Semper

25) aRough1: M R1 Arough1 Bowie

26) Felix: Build G1 Felix



29501)
Started: 2016.4.19, Ended: 2016.5.3
Participants: ts52 (S), Felix (N)
Winner: ts52

1) Felix: Homeworld R1 B2 G3

2) ts52: Homeworld B2 Y3 G3

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52
	Felix: And here we go again :) Good luck!

5) Felix: Trade G1 Y1 Felix
	ts52: Indeed! Have a good game.

6) ts52: Trade G1 B1 Ts52

7) Felix: Build Y1 Felix

8) ts52: Discover B1 Ts52 G1 Kermit

9) Felix: Build Y1 Felix

10) ts52: Build B1 Kermit

11) Felix: D Y1 Felix G3 Gorm

12) ts52: Build G1 Ts52

13) Felix: Build Y2 Felix

14) ts52: Discover G1 Ts52 B1 Gonzo

15) Felix: Build Y2 Gorm

16) ts52: Build B2 Kermit

17) Felix: Discover Y1 Felix B3 Fritz
	Felix: Uh oh...

18) ts52: Trade B2 Y2 Kermit
	Felix: Blue vs. Yellow
	ts52: Yeah, yellow is a bit more important than blue I'm afraid.

19) Felix: Build Y3 Felix
	Felix: Definitely later on, but blue can be much more versatile in the early game, in my opinion. It's going to be close!

20) ts52: Build Y3 Kermit

21) Felix: Sacrifice Y2 Felix
Move Y1 Gorm Kermit
Move Y1 Fritz Kermit
Catastrophe Kermit Yellow

22) ts52: Build B2 Kermit

23) Felix: Trade Y3 B3 Felix

24) ts52: Trade B2 Y2 Kermit

25) Felix: Move B3 Felix Gorm

26) ts52: Build Y1 Kermit

27) Felix: Build B2 Gorm

28) ts52: Discover B1 Kermit G2 Oscar

29) Felix: D B2 Gorm G1 Issol

30) ts52: Build B3 Kermit

31) Felix: Build B3 Issol

32) ts52: Trade B3 R3 Kermit

33) Felix: Trade B2 R2 Issol

34) ts52: Build G2 Ts52

35) Felix: Build G2 Felix

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Kermit
Build B3 Oscar
	Felix: Nice maneuvering there on blue. I am still struggling to get a solid grasp on how to best manipulate the piece pool to my advantage.
	ts52: Thanks, though this game is far from over.

37) Felix: Discover B3 Gorm Y1 Opus

38) ts52: Move Y2 Kermit Oscar

39) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Felix
Build Y3 Gorm

40) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y3 Oscar
Build R1 Kermit

41) Felix: Move B3 Opus Gorm

42) ts52: Discover Y3 Oscar R3 Elmo

43) Felix: Sacrifice Y2 Felix
Move Y3 Gorm Kermit
Move B3 Gorm Kermit

44) ts52: Move R3 Kermit Gorm

45) Felix: Trade B3 R3 Kermit

46) ts52: Build B3 Oscar

47) Felix: Sacrifice Y2 Gorm
Move B3 Issol Oscar
Pass
Catastrophe Oscar Blue

48) ts52: Move B2 Kermit Oscar

49) Felix: Sacrifice R2 Issol
Attack R1 Kermit
Attack B1 Kermit

50) ts52: Move Y1 Kermit Gorm

51) Felix: Move R3 Kermit Oscar

52) ts52: Sacrifice Y2 Oscar
Move B2 Oscar Gorm
Move G1 Gonzo Elmo

53) Felix: T R1 G1 Kermit

54) ts52: Trade G2 R2 Ts52

55) Felix: Discover G1 Kermit B3 Opus

56) ts52: Build G2 Ts52

57) Felix: S G3 Felix
B G3 Felix
B B1 Kermit
B Y1 Kermit

58) ts52: Sacrifice G3 Ts52
Build Y2 Elmo
Build Y2 Gorm
Build G3 Ts52

59) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Felix
Build R1 Oscar

60) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Gorm
Build R2 Ts52

61) Felix: Discover B1 Kermit B3 Chuckle
	Felix: Things are about to start happening, I have a feeling :)

62) ts52: Sacrifice Y2 Gorm
Move R2 Ts52 Kermit
Move R2 Kermit Opus

63) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B1 Chuckle
Build B3 Kermit

64) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Gorm
Build R2 Opus

65) Felix: Sacrifice Y1 Kermit
Discover B1 Chuckle Y1 Esper

66) ts52: Attack G1 Opus

67) Felix: Move B1 Kermit Ts52

68) ts52: Sacrifice Y2 Elmo
Move R1 Gorm Oscar
Move R2 Opus Oscar
Catastrophe Oscar Red

69) Felix: Build Y2 Kermit
	Felix: Ooh nice. You've thrown a serious wrench in my works.

70) ts52: Sacrifice Y2 Gorm
Move R3 Gorm Felix
Move Y3 Elmo Felix
	Felix: Oops. Hold on. Just saw a serious flaw in my new plan.
	ts52: Darn.... :) No worries.

71) Felix: Sacrifice Y3 Kermit
Move B3 Kermit Ts52
Move B1 Esper Ts52
Move Y2 Kermit Ts52
Catastrophe Ts52 Blue
	Felix: Sorry if I cut you off mid turn. I think you were about to destroy me :P

72) ts52: Sacrifice R3 Felix
Attack G3 Felix
Attack G2 Felix
Attack Y2 Felix
	ts52: No worries. I _think_ I have you. But I've been wrong before.

	ts52: Very good game though. That was a close one right to the end.
	Felix: Yeah that was definitely a nail biter there at the end. Very well fought!
	ts52: I look forward to a rematch.


31896)
Variants: "Hard time"
Started: 2017.4.5, Ended: 2017.4.18
Participants: agentofchaos (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) agentofchaos: Homeworld B1 R2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) agentofchaos: Build G1 Agentofchaos

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) Draw5PlayAll: Build G1 Draw5playall

8) agentofchaos: Build G1 Agentofchaos

9) Draw5PlayAll: Discover G1 Draw5playall B2 B2

10) agentofchaos: Discover Y1 Agentofchaos G3 Dreadzone

11) Draw5PlayAll: Build G1 Draw5playall

12) agentofchaos: Build G2 Agentofchaos

13) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B2
Build G2 B2
Build G3 Draw5playall

14) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Agentofchaos
Build Y1 Dreadzone
Build Y2 Dreadzone

15) Draw5PlayAll: Trade G2 Y2 B2

16) agentofchaos: Move Y1 Dreadzone Agentofchaos

17) Draw5PlayAll: Sacrifice Y2 B2
Move G1 B2 Dreadzone
Move G1 Dreadzone Agentofchaos
Catastrophe Agentofchaos Green

	agentofchaos: You got me, well played


29629)
Variants: "Unrated"
Started: 2016.4.19, Ended: 2016.4.22
Participants: kensho (S), slothbear (N)
Winner: kensho

1) slothbear: Homeworld B2 Y1 G3

2) kensho: Homeworld G1 B2 Y3

3) slothbear: Build G1 Slothbear

4) kensho: Build Y1 Kensho

5) slothbear: Discover G1 Slothbear G3 Katastrofo

6) kensho: Trade Y1 G1 Kensho

7) slothbear: Build G2 Slothbear

8) kensho: Move G1 Kensho Katastrofo

9) slothbear: Trade G2 Y2 Slothbear

10) kensho: Build Y1 Kensho

11) slothbear: Build G2 Slothbear

12) kensho: Build Y1 Kensho

13) slothbear: Trade Y2 B2 Slothbear

14) kensho: Trade Y1 R1 Kensho

15) slothbear: Move B2 Slothbear Katastrofo

16) kensho: Move R1 Kensho Katastrofo

17) slothbear: Move G3 Slothbear Katastrofo

18) kensho: Move Y1 Kensho Katastrofo

19) slothbear: Build B1 Katastrofo

20) kensho: Build R1 Katastrofo

21) slothbear: Trade B2 Y2 Katastrofo

22) kensho: Build Y1 Katastrofo

23) slothbear: Build Y2 Katastrofo

24) kensho: Build Y2 Kensho

25) slothbear: Build Y3 Katastrofo

26) kensho: Trade Y2 B2 Kensho

27) slothbear: Trade Y2 R2 Katastrofo

28) kensho: Move B2 Kensho Katastrofo

29) slothbear: Build G2 Slothbear

30) kensho: Build Y2 Kensho

31) slothbear: Move G2 Slothbear Katastrofo

32) kensho: Move Y2 Kensho Katastrofo

33) slothbear: Build G2 Slothbear

34) kensho: Build Y2 Kensho

35) slothbear: Sacrifice Y2 Katastrofo
Pass
Pass

36) kensho: Trade Y2 R2 Kensho

37) slothbear: Trade G2 Y2 Slothbear

38) kensho: Pass



29616)
Variants: "Hard time"
Started: 2016.4.20, Ended: 2016.6.5
Participants: sompm (S), Salmonax (N)
Winner: Salmonax

1) Salmonax: Homeworld Y1 B2 G3

2) sompm: Homeworld G3 B2 Y3

3) Salmonax: Build G1 Salmonax

4) sompm: Build Y1 Sompm

5) Salmonax: Trade G1 Y1 Salmonax

6) sompm: Build Y2 Sompm

7) Salmonax: Trade Y1 R1 Salmonax

8) sompm: Discover Y2 Sompm B1 Ted

9) Salmonax: Build R1 Salmonax

10) sompm: Trade Y2 G2 Ted

11) Salmonax: Build G1 Salmonax

12) sompm: Build G1 Ted

13) Salmonax: Trade R1 Y1 Salmonax

14) sompm: Build Y2 Sompm

15) Salmonax: Trade G3 Y3 Salmonax

16) sompm: Discover Y2 Sompm B1 Hdmi

17) Salmonax: Discover Y1 Salmonax G3 Submarines

18) sompm: Discover Y1 Sompm G1 Lox

19) Salmonax: Move Y1 Submarines Lox

20) sompm: Build G2 Ted

21) Salmonax: Move Y1 Lox Sompm

22) sompm: Build Y2 Lox

23) Salmonax: Build Y2 Sompm

24) sompm: Sacrifice G2 Ted
Build Y3 Hdmi
Build G2 Ted

25) Salmonax: Build G2 Salmonax

26) sompm: Trade Y2 R2 Hdmi

27) Salmonax: Build Y2 Sompm
Catastrophe Sompm Yellow
	Salmonax: gg
	sompm: Apparently I forgot I was in danger. Good game; thanks!



29649)
Started: 2016.4.26, Ended: 2016.5.12
Participants: velgarath2 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y1 B3 G3
	Felix: Hola! Tenga un buen juego :) 

2) velgarath2: Homeworld G3 B2 Y3

3) Felix: Build G1 Felix

4) velgarath2: Build Y1 Velgarath2
	velgarath2: Gracias! La verdad es que no tengo mucha idea de cómo se juega, pero haré lo que pueda :)


5) Felix: Trade G1 Y1 Felix
	Felix: No hay problema. Estoy feliz de ayudarle a aprender , y responder a cualquier pregunta que tenga ! Además, español no es mi primera lengua , así que perdoname si es malo

6) velgarath2: Build Y2 Velgarath2

7) Felix: Build Y2 Felix

8) velgarath2: Discover Y1 Velgarath2 G1 Alpha

9) Felix: Discover Y2 Felix G2 Opus

10) velgarath2: Trade Y2 B2 Velgarath2

11) Felix: Build Y2 Felix

12) velgarath2: Build Y2 Velgarath2

13) Felix: Trade Y2 B2 Felix

14) velgarath2: Build Y2 Alpha

15) Felix: Build Y3 Opus

16) velgarath2: Sacrifice Y2 Velgarath2
Move Y1 Alpha Opus
Move Y2 Alpha Opus
Catastrophe Opus Y

17) Felix: Build G1 Felix
	Felix: Very nice :)

18) velgarath2: Build B1 Velgarath2

19) Felix: Build G1 Felix
	velgarath2: need to go....will resume tomorrow!
	Felix: Ok!

20) velgarath2: Build Y1 Velgarath2

21) Felix: Discover G1 Felix Y2 Out

22) velgarath2: Build Y2 Velgarath2

23) Felix: Build G1 Out

24) velgarath2: Trade Y2 G2 Velgarath2

25) Felix: Move B2 Felix Out

26) velgarath2: Discover B2 Velgarath2 R1 Bravo
	velgarath2: discover b2 velgarath2 r1 bravo

27) Felix: Trade G1 R1 Felix

28) velgarath2: Build Y2 Velgarath2

29) Felix: Build B1 Out

30) velgarath2: Discover Y2 Velgarath2 R1 Charly

31) Felix: Trade B2 R2 Out

32) velgarath2: Move G2 Velgarath2 Bravo

33) Felix: Build R2 Felix

34) velgarath2: Build Y2 Velgarath2

35) Felix: Discover Y1 Felix G2 Opus

36) velgarath2: Move Y2 Velgarath2 Bravo

37) Felix: Build Y3 Opus

38) velgarath2: Build Y3 Bravo

39) Felix: Discover G1 Out B1 Rumple

40) velgarath2: Trade Y3 R3 Velgarath2

41) Felix: Discover G1 Out Y3 Bank

42) velgarath2: Build B2 Bravo
	velgarath2: ok...I think I did some things wrong. I misunderstood the firing rule and now I am going to be in trouble. Anyways.....let's continue and resist

43) Felix: Move Y1 Opus Rumple
	Felix: That's ok. Making mistakes is the best way to learn! We will continue :)

44) velgarath2: Move B1 Velgarath2 Charly

45) Felix: Build G1 Felix

46) velgarath2: Sacrifice B2 Bravo
Trade Y3 R3 Bravo
Trade Y2 G2 Charly

47) Felix: Build G3 Rumple

48) velgarath2: Move R3 Bravo Out

49) Felix: Sacrifice G3 Rumple
Build G3 Rumple
Build R2 Out
Build R3 Out
Catastrophe Out Red

50) velgarath2: Build R2 Velgarath2

51) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Opus
Build Y3 Rumple
	velgarath2: wow! that was crazy. I certainly lack experience.

52) velgarath2: Sacrifice G2 Bravo
Build B2 Charly
Build B3 Bravo

53) Felix: Sacrifice G3 Felix
Build G2 Bank
Build G3 Felix
Build B3 Out
	Felix: You will learn! It is a very complex game. I had to play many games before I understood all the possibilities.

54) velgarath2: Sacrifice Y2 Bravo
Move B1 Charly Out
Move B2 Bravo Out
Catastrophe Out B

55) Felix: Trade G1 B1 Rumple

56) velgarath2: Build Y2 Velgarath2
	Felix: You can see that the "factory" is a very powerful thing.
	velgarath2: indeed...wow!

57) Felix: Build G1 Rumple

58) velgarath2: Move Y2 Velgarath2 Bravo

59) Felix: Move B1 Rumple Bank

60) velgarath2: Build Y2 Velgarath2

61) Felix: Discover G1 Bank B1 Ragg

62) velgarath2: Trade B3 R3 Bravo

63) Felix: Trade R2 B2 Felix

64) velgarath2: Move R3 Bravo Bank

65) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B3 Bank
Build B3 Bank

66) velgarath2: Sacrifice R2 Velgarath2
Attack B3 Bank
Attack B3 Bank

67) Felix: Sacrifice G1 Ragg
Build B1 Bank
Catastrophe Bank Blue

68) velgarath2: Attack G2 Bank

69) Felix: T G1 B1 Rumple

70) velgarath2: Build R2 Bank

71) Felix: Move B2 Felix Opus

72) velgarath2: Move Y1 Velgarath2 Charly

73) Felix: Build R2 Felix

74) velgarath2: Move Y2 Bravo Opus

75) Felix: Move Y3 Opus Charly

76) velgarath2: Sacrifice R2 Bank
Attack Y2 Opus
Attack B2 Opus

77) Felix: Attack G2 Charly

78) velgarath2: Sacrifice Y2 Velgarath2
Move Y2 Opus Rumple
Move Y2 Opus Rumple
Catastrophe Rumple Y

79) Felix: Sacrifice R2 Felix
Attack Y1 Charly
Attack B2 Charly

80) velgarath2: Build R1 Bank

81) Felix: Sacrifice G3 Felix
Build G1 Charly
Build G1 Rumple
Build G3 Felix

82) velgarath2: Build R2 Bank

83) Felix: Build B1 Charly

84) velgarath2: Move R2 Bank Rumple

85) Felix: Sacrifice R1 Felix
Attack R2 Rumple

86) velgarath2: Build B3 Opus

87) Felix: Trade G3 Y3 Rumple

88) velgarath2: Build G3 Bank

89) Felix: Sacrifice Y3 Rumple
Move B2 Charly Velgarath2
Move B1 Charly Velgarath2
Move B1 Rumple Velgarath2
Catastrophe Velgarath2 Blue

90) velgarath2: Sacrifice B2 Opus
Trade B3 Y3 Opus
Trade G2 Y2 Bank

91) Felix: Sacrifice Y3 Charly
Move G1 Charly Velgarath2
Move G2 Charly Velgarath2
Move G1 Rumple Velgarath2
Catastrophe Velgarath2 Green

	Felix: Good game! You played very well! I would love to play again any time.


29601)
Variants: "Hard time"
Started: 2016.4.26, Ended: 2016.5.19
Participants: orangeblood (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y2 B3 G3

2) orangeblood: Homeworld G1 B2 Y3
	Felix: Here we go again! Have fun :)

3) Felix: Build G1 Felix
	orangeblood: Well, let's see what happens. Enjoy!

4) orangeblood: Build Y1 Orangeblood
	Felix: And you too!

5) Felix: Trade G1 Y1 Felix

6) orangeblood: Trade Y1 G1 Orangeblood

7) Felix: Build G1 Felix

8) orangeblood: Build G2 Orangeblood

9) Felix: Discover G1 Felix B1 Opus

10) orangeblood: Discover G1 Orangeblood B3 Bevo

11) Felix: Build G2 Felix

12) orangeblood: B Y1 Orangeblood

13) Felix: Discover G2 Felix Y1 Opal

14) orangeblood: Build Y2 Orangeblood

15) Felix: Build G2 Felix

16) orangeblood: Build G3 Bevo

17) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Opus
Build Y2 Felix

18) orangeblood: Move Y1 Orangeblood Bevo

19) Felix: Trade Y1 R1 Felix

20) orangeblood: Trade G3 R3 Bevo

21) Felix: B G3 Opal
	Felix: Good thinking getting a weapon when I do...

22) orangeblood: Build R1 Bevo

23) Felix: Trade G1 B1 Opus
	orangeblood: I read somewhere that's what you're supposed to do, so I did... haha. Now, this latest red build is more a lack of knowing what else to do.

24) orangeblood: T R1 B1 Bevo
	Felix: It's a good rule of thumb to follow! You may want to try to diversify into blue soon.

25) Felix: Sacrifice G3 Felix
Build G1 Opus
Build G3 Felix
Build R1 Felix
	orangeblood: The problem with blue is the rule of thumb about taking the last piece of a size. Of course, if everyone followed those rules no one would be building. 
	Felix: That's true. There's pros and cons to every action, and sometimes you have to violate a rule of thumb just to get a certain color. If you get locked out of the color, you will be in trouble. But in this case, it wasn't a bad move, because I can't build a blue at the moment anyway, or I would have three blues in the opus system and you could easily cause a catastrophe there.

26) orangeblood: Move B1 Bevo Orangeblood

27) Felix: Discover G2 Opal Y3 Brink
	orangeblood: Sorry for the delay.

28) orangeblood: Trade Y3 R3 Orangeblood
	Felix: 
no problem!

29) Felix: Trade G1 Y1 Opus

30) orangeblood: Build Y3 Orangeblood

31) Felix: Build Y3 Opus

32) orangeblood: M R3 Orangeblood Brink

33) Felix: Move G2 Brink Orangeblood
	orangeblood: Hi, just wanted to take a look at the neighborhood you're building!
	Felix: Eep! Don't look! 
It's not finished!

34) orangeblood: Build R1 Bevo
	Felix: I'll just have a look at your home!

35) Felix: Build G1 Orangeblood
Catastrophe Orangeblood Green
	orangeblood: All are welcome, as long as they come in peace.

36) orangeblood: Move Y2 Orangeblood Brink

37) Felix: Trade G2 B2 Felix
	orangeblood: Huh, I was blind to that one.

38) orangeblood: Sacrifice Y2 Brink
Move R3 Brink Opus
Move R3 Bevo Opus
	Felix: I'm sneaky sneaky :)

39) Felix: Sacrifice Y3 Opus
Move B1 Opus Orangeblood
Move B2 Felix Opus
Move B2 Opus Orangeblood
Catastrophe Orangeblood Blue
	Felix: Good maneuver with your large reds there. That would normally be an effective attack, but I was lucky enough to have an opening to finish you off before you could pull off your attack. Very well played! Would be happy to rematch any time!
	orangeblood: Ah, well done. I'll hit you up for a rematch soon.



29618)
Variants: "Unrated"
Started: 2016.4.27, Ended: 2016.4.29
Participants: Steele (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3

2) Steele: Homeworld G3 Y1 B3
	Felix: Welcome! First game? Have fun!

3) Felix: Build G1 Felix
	Steele: Yeah, first game of homeworlds ever, but it looks like a cool game.  It looks like I game I will quickly fall in love with.
	Felix: I'm sure you will! I fell in love with it myself last year and it is my favorite game of all time now. I hope you have fun. Let me know if you have any questions and I'd be happy to help you learn the ropes.
	Felix: But the best way to learn is to make mistakes, so I won't take it TOO easy on you :) Some of the other players on here are brutal! I'll try to give you tips along the way if I think of them.

4) Steele: B B1 Steele
	Felix: One quick tip to start with: you don't have to type out the full word of the commands. You can just type "b b1 steele" instead of "build b1 Steele". Saves a bit of time!

5) Felix: T G1 B1 Felix
	Steele: Good to know!  Also good to know it won't let me make invalid moves (because the first two attempts weren't valid).  :)
	Felix: Yeah! The system will only let you make valid moves, which is a great way to learn the rules 

6) Steele: Trade B3 G3 Steele

7) Felix: B G1 Felix

8) Steele: Build G1 Steele

9) Felix: T G1 Y1 Felix

10) Steele: Trade B1 Y1 Steele

11) Felix: Build B1 Felix

12) Steele: Discover G1 Steele B2 Alpha

13) Felix: Discover B1 Felix G1 Orpheus

14) Steele: B Y2 Steele

15) Felix: Build Y2 Felix
	Felix: I recommend trying to get a blue ship in your home system. It can cause a real color clog if you don't, since you can't trade any of your colors for others. It may have been a mistake to trade your B3 ship away at the beginning without building another blue first. If you had built a small blue and THEN traded your large blue away, you would still have the capacity to build blue and to trade in your homeworld, but now you have a difficult situation in your home system...

16) Steele: Build G1 Alpha
	Steele: Yeah, I noticed that as soon as I did it.  Now I'm trying to use the blue star to fix it :)

17) Felix: Move Y1 Felix Orpheus

18) Steele: Build G2 Alpha

19) Felix: Build Y3 Orpheus
	Felix: Yeah. It's going to cost you a few turns to fix things, though, and momentum is crucial at this point in the game!

20) Steele: Move Y1 Steele Alpha

21) Felix: Discover Y1 Orpheus G2 Mikal

22) Steele: Trade G2 B2 Alpha

23) Felix: Build Y3 Mikal

24) Steele: Move B2 Alpha Steele

25) Felix: Build B1 Orpheus

26) Steele: Build G2 Steele

27) Felix: Build G2 Felix

28) Steele: Sacrifice G3 Steele
Build G3 Steele
Build Y3 Alpha
Build B2 Steele

29) Felix: Move B1 Orpheus Mikal
	Felix: Now you're in better shape. Nice use of the factory!

30) Steele: Discover Y2 Steele R2 Beta
	Steele: Thanks, I wasn't sure if I was doing that right - but I like the effect.  Now to get myself out of this yellow catastrophe threat you have me in...

31) Felix: B B3 Orpheus

32) Steele: Discover Y2 Beta R1 Gamma
	Felix: Good catch. And watch out with all that green you've got at home too...
	Steele: Yep, not sure green was a good homeworld choice...

33) Felix: Sacrifice Y3 Orpheus
Move G2 Felix Orpheus
Move G2 Orpheus Mikal
Move G2 Mikal Steele
Catastrophe Steele Green

34) Steele: Sacrifice Y3 Alpha
Move Y1 Alpha Gamma
Move Y1 Gamma Felix
Move Y2 Gamma Felix
Catastrophe Felix Yellow
	Felix: Putting green in your Homeworld can definitely make things more difficult. The main problem is that it makes it hard to set up a factory there. Of course, it's always possible to try to set up a factory in another system instead. If you can accomplish that, it can actually be a good homeworld color to have because it forces your opponent to potentially use green as an invasion color, and it's usually a tricky color to invade with.
	Felix: On the whole, I think the most effective starting homeworld is blue and yellow with a large green ship. This comes down to preference, though. I know a player who always starts with blue and red, with a green ship, and he wins often. As a beginner, it will also help you to start with the "banker" homeworld (a small and medium star).

35) Felix: Sacrifice Y3 Mikal
Move B1 Mikal Steele
Move B1 Felix Steele
Pass
Catastrophe Steele Blue
	Felix: Now things might be a bit tricky for you :/ But not impossible to recover from!

	Steele: I was wondering if you could double move the same ship or not.  Looks like you can - so I gave it a go too ;)
	Felix: Absolutely. You can even triple move a ship. Nice move! But it has also left you vulnerable to my own counterattack!
	Felix: Nicely played! I hope you learned some things. I have an open challenge on the challenges list so feel free to challenge me again and we'll have a rematch :)
	Felix: It can be really satisfying to destroy half of your opponent's homeworld, as you did to mine, but you also need to have a plan in place for finishing the job, or you may leave yourself vulnerable.
	Steele: Learned a ton and I will definitely be starting a rematch soon!


29666)
Variants: "Hard time"
Started: 2016.4.28, Ended: 2016.5.11
Participants: nycavri (S), Pheonixian (N)
Winner: nycavri

1) Pheonixian: Homeworld B1 R2 G3

2) nycavri: Homeworld B2 Y3 G3
	nycavri: TaGG!

3) Pheonixian: Build G1 Pheonixian

4) nycavri: Build G1 Nycavri
	Pheonixian: Have Fun!


5) Pheonixian: Trade G1 Y1 Pheonixian

6) nycavri: Trade G1 Y1 Nycavri

7) Pheonixian: Build G1 Pheonixian

8) nycavri: B G1 Nycavri

9) Pheonixian: Trade G1 B1 Pheonixian

10) nycavri: T G1 R1 Nycavri

11) Pheonixian: Discover B1 Pheonixian G3 Garden

12) nycavri: B G1 Nycavri

13) Pheonixian: Build B1 Garden

14) nycavri: D Y1 Nycavri G1 Taylor



29665)
Variants: "Unrated"
Started: 2016.4.30, Ended: 2016.4.30
Participants: Mister (S), Felix (N)
Winner: Felix



29644)
Variants: "Unrated"
Started: 2016.4.30, Ended: 2016.4.30
Participants: nycavri (S), Mister (N)
Winner: nycavri



29663)
Started: 2016.4.30, Ended: 2016.4.30
Participants: Mister (S), Felix (N)
Winner: Felix



29570)
Variants: "Unrated"
Started: 2016.4.30, Ended: 2017.3.15
Participants: Mister (S), wil (N)
Winner: wil

1) wil: Homeworld B3 R1 G3



29678)
Variants: "Unrated"
Started: 2016.5.1, Ended: 2016.5.2
Participants: Steele (S), nycavri (N)
Winner: nycavri



29675)
Variants: "Unrated"
Started: 2016.5.2, Ended: 2016.5.6
Participants: wil (S), Steele (N)
Winner: Steele

1) Steele: Homeworld R3 B2 G3



29586)
Variants: "Hard time"
Started: 2016.5.2, Ended: 2016.5.7
Participants: Felix (S), Simon (N)
Winner: Felix

	Simon: Whoops -- I'm back from a trip this week. Will try to be more attentive.
	Felix: No problem!


29619)
Started: 2016.5.2, Ended: 2016.5.17
Participants: benr (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B2 Y3 G3
	benr: homeworld B1 Y2 G3
	ts52: not your turn yet, that box is for comments/messages, the box will appear at the top if it's your turn. :) Have a good game!

2) benr: Homeworld B1 Y2 G3
	benr: Oh! Now I get it. Thanks. You too! :)

3) ts52: Build G1 Ts52

4) benr: Build G1 Benr

5) ts52: Discover G1 Ts52 B1 Grover

6) benr: Discover G1 Benr Y3 Kermit

7) ts52: Build G1 Ts52

8) benr: Build G2 Benr

9) ts52: Trade G1 B1 Ts52

10) benr: Trade G2 B2 Benr

11) ts52: Discover B1 Ts52 G1 Oscar

12) benr: Build G2 Benr

13) ts52: Build G2 Ts52

14) benr: Move B2 Benr Kermit

15) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Grover

16) benr: Move G2 Benr Kermit

17) ts52: Trade G2 Y2 Ts52

18) benr: Sacrifice G2 Kermit
Build G2 Kermit
Build G2 Benr

19) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Oscar
Build B3 Oscar

20) benr: Sacrifice G2 Kermit
Build G2 Benr
Build B3 Kermit

21) ts52: Sacrifice Y2 Ts52
Move G1 Grover Kermit
Move G1 Kermit Benr
Catastrophe Benr Green

	ts52: Thanks for the game!
	benr: Wow! Good move, good victory. You're welcome, thank you as well for a good game!


29690)
Started: 2016.5.3, Ended: 2016.6.6
Participants: ts52 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3

2) ts52: Homeworld Y3 B1 G3
	Felix: And away we go.
	ts52: :D

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: Trade G1 B1 Felix

6) ts52: Trade G1 B1 Ts52

7) Felix: Build B2 Felix

8) ts52: Build B2 Ts52

9) Felix: Discover B2 Felix G1 Settlement

10) ts52: Discover B2 Ts52 G2 Kermit

11) Felix: Sacrifice G3 Felix
Build B2 Settlement
Build B3 Settlement
Build B3 Felix

12) ts52: Build G1 Ts52

13) Felix: Trade B1 G1 Felix

14) ts52: Trade G1 Y1 Ts52

15) Felix: Trade B3 Y3 Settlement

16) ts52: Move Y1 Ts52 Kermit

17) Felix: Build G1 Felix

18) ts52: Build G2 Ts52

19) Felix: Discover B2 Settlement G2 Village

20) ts52: Discover G2 Ts52 Y2 Bigbird

21) Felix: Build G3 Felix

22) ts52: Discover G2 Bigbird Y1 Zoe

23) Felix: Trade G1 R1 Felix

24) ts52: Trade B1 R1 Ts52

25) Felix: Move B3 Felix Zoe

26) ts52: Discover G2 Zoe G3 Oscar

27) Felix: Sacrifice G3 Felix
Build G1 Felix
Build G3 Felix
Build B1 Village

28) ts52: Build Y1 Kermit

29) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B1 Zoe
Build B3 Settlement

30) ts52: Move Y1 Kermit Oscar

31) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R1 Felix
Build Y2 Settlement

32) ts52: Sacrifice G2 Oscar
Build Y2 Oscar
Build Y3 Kermit

33) Felix: Discover B2 Settlement G2 Duchy

34) ts52: Sacrifice Y2 Oscar
Move Y1 Oscar Settlement
Move Y1 Kermit Settlement
Catastrophe Settlement Yellow

35) Felix: Trade G1 Y1 Felix
	Felix: Ooh, nice one.

36) ts52: Build R2 Ts52

37) Felix: Move Y1 Felix Settlement
	ts52: Thanks, but you already thwarted my plan. ;)

38) ts52: Move R2 Ts52 Kermit

39) Felix: Move R1 Felix Settlement

40) ts52: Build Y1 Kermit

41) Felix: Build Y2 Settlement

42) ts52: Discover Y3 Kermit G3 Oscar

43) Felix: Move Y1 Settlement Village

44) ts52: Move Y3 Oscar Village

45) Felix: Build Y2 Village

46) ts52: Build Y3 Kermit

47) Felix: Sacrifice Y2 Village
Move B1 Village Ts52
Move B2 Village Ts52
	Felix: Shoot. I'm not sure how I missed that.

48) ts52: Build R2 Ts52

49) Felix: Build Y2 Settlement

50) ts52: S R2 Ts52
A Y1 Village
A B2 Ts52

51) Felix: Move Y2 Settlement Duchy

52) ts52: Move B2 Ts52 Village

53) Felix: Sacrifice R1 Settlement
Attack R1 Ts52

54) ts52: Sacrifice R2 Kermit
Attack R1 Ts52
Attack B1 Ts52

55) Felix: Move B2 Duchy Ts52

56) ts52: Attack B2 Ts52

57) Felix: Sacrifice Y2 Settlement
Move B1 Zoe Duchy
Move B1 Duchy Ts52
Catastrophe Ts52 Blue

58) ts52: B G1 Ts52

59) Felix: D G1 Felix B1 Argyle

60) ts52: Discover Y3 Kermit G3 Oscar

61) Felix: Trade G3 R3 Felix

62) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build B1 Village

63) Felix: Sacrifice Y2 Duchy
Move B3 Zoe Ts52
Move B3 Settlement Ts52

64) ts52: Sacrifice G3 Ts52
Build G1 Ts52
Build R1 Ts52
Build R2 Ts52

65) Felix: Sacrifice R3 Felix
Attack R1 Ts52
Attack R1 Ts52
Attack R2 Ts52

66) ts52: Sacrifice Y3 Village
Move Y3 Oscar Argyle
Move Y3 Argyle Felix
Move B1 Village Ts52
	Felix: Interesting defense! Divide and clog :)

67) Felix: Sacrifice B3 Ts52
Trade B3 Y3 Ts52
Trade R2 Y2 Ts52
Trade R1 Y1 Ts52
Catastrophe Ts52 Yellow
	ts52: I think I can drag it out another turn, but I suspect that's about it.
	Felix: I found a way to speed things up :) Great game!
	ts52: Yep, that will do it. Very well played.



29585)
Variants: "Hard time"
Started: 2016.5.3, Ended: 2016.5.6
Participants: Felix (S), SilentTitan (N)
Winner: Felix



29687)
Variants: "Unrated"
Started: 2016.5.4, Ended: 2016.5.9
Participants: mcowper (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 R2 G3
	Felix: Welcome! First game?

2) mcowper: Homeworld B2 Y1 G3

3) Felix: Build G1 Felix

4) mcowper: Build G1 Mcowper

5) Felix: Trade G1 Y1 Felix

6) mcowper: Discover G1 Mcowper G3 Alpha

7) Felix: Build Y1 Felix

8) mcowper: Build G1 Mcowper

9) Felix: Build Y2 Felix

10) mcowper: Discover G1 Mcowper Y3 Bravo

11) Felix: Discover Y1 Felix G1 Out

12) mcowper: Build G2 Mcowper

13) Felix: Build G2 Felix

14) mcowper: Build G2 Mcowper

15) Felix: Build Y2 Out

16) mcowper: Trade G2 B2 Mcowper

17) Felix: Trade G2 B2 Felix

18) mcowper: Sacrifice G3 Mcowper
Build G2 Bravo
Build G2 Mcowper
Build G3 Mcowper

19) Felix: Build Y2 Felix

20) mcowper: Sacrifice B2 Mcowper
Trade G2 B2 Mcowper
Trade G3 Y3 Mcowper

21) Felix: Build Y3 Out

22) mcowper: Move B2 Mcowper Alpha

23) Felix: Discover Y1 Out G3 Brink

24) mcowper: Build G2 Mcowper

25) Felix: M B2 Felix Out

26) mcowper: Trade G2 R2 Mcowper

27) Felix: T Y2 R2 Out

28) mcowper: Trade B2 Y2 Alpha

29) Felix: Build G2 Felix

30) mcowper: Trade R2 B2 Mcowper

31) Felix: Sacrifice Y2 Felix
Move Y3 Out Brink
Move Y3 Brink Mcowper

32) mcowper: Trade G2 R2 Mcowper
	Felix: Always be careful of not having a weapon when your opponent does. Very dangerous!

33) Felix: Sacrifice R2 Out
Attack Y3 Mcowper
Attack R2 Mcowper

	mcowper: Thanks for the game.
	Felix: No problem! feel free to challenge me agin any time. I hope you had fun and have learned something


29698)
Started: 2016.5.4, Ended: 2016.5.31
Participants: nycavri (S), zeder (N)
Winner: nycavri

1) zeder: Homeworld Y2 B1 G3
	nycavri: Hello again!  Let's get you started on the steep learning curve.  (I still very much play in the shallow end . . .)
	nycavri: TaGG!
	zeder: This one seems very rich!

	zeder: homeworld y2 b1 g3

2) nycavri: Homeworld G3 B1 Y3
	zeder: wrong place!  not an good start!

3) zeder: Build G1 Zeder

4) nycavri: Build Y1 Nycavri

5) zeder: Trade G1 Y1 Zeder

6) nycavri: T Y1 B1 Nycavri

7) zeder: Build G1 Zeder

8) nycavri: Build B2 Nycavri

9) zeder: Build G1 Zeder
	zeder: I am feel uncomfortable already!

10) nycavri: Trade B2 G2 Nycavri

11) zeder: Discover G1 Zeder B3 Aaa

12) nycavri: B B2 Nycavri

13) zeder: Build Y1 Zeder

14) nycavri: Discover B2 Nycavri G2 Taylor

15) zeder: Discover Y1 Zeder B3 Bbb

16) nycavri: Build B2 Taylor

17) zeder: Move Y1 Zeder Aaa

18) nycavri: D G2 Nycavri Y2 Mercury

19) zeder: Trade G1 R1 Zeder

20) nycavri: B B2 Taylor

21) zeder: Build G1 Zeder

22) nycavri: B B3 Nycavri

23) zeder: Build R1 Zeder

24) nycavri: T B2 Y2 Taylor

25) zeder: Sacrifice G3 Zeder
Build G1 Aaa
Build G2 Aaa
Build G3 Zeder

26) nycavri: B B2 Taylor



29711)
Variants: "Unrated"
Started: 2016.5.6, Ended: 2016.5.23
Participants: raptorial (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R3 B2 G3
	Felix: Welcome! First game? Let me know if you have any questions.



29721)
Variants: "Unrated"
Started: 2016.5.6, Ended: 2016.5.18
Participants: Steele (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R3 B2 G3
	Steele: We meet again :)
	Felix: Welcome back! Good luck and have fun :]

2) Steele: Homeworld B3 R1 G3

3) Felix: B G1 Felix

4) Steele: B G1 Steele

5) Felix: Trade G1 R1 Felix

6) Steele: T G1 Y1 Steele

7) Felix: Build G1 Felix

8) Steele: B G1 Steele

9) Felix: Trade G1 Y1 Felix

10) Steele: Discover G1 Steele B2 Alpha

11) Felix: Build G1 Felix

12) Steele: Build G1 Steele

13) Felix: Build G2 Felix

14) Steele: Sacrifice G3 Steele
Build G2 Alpha
Build G2 Alpha
Build G3 Steele

15) Felix: Discover G2 Felix Y1 Rim
	Felix: Nice!

16) Steele: T G2 R2 Alpha

17) Felix: Sacrifice G3 Felix
Build G2 Felix
Build G3 Felix
Build G3 Rim

18) Steele: B Y2 Steele

19) Felix: Trade G1 B1 Felix

20) Steele: M Y1 Steele Alpha

21) Felix: Move B1 Felix Rim

22) Steele: M R2 Alpha Rim

23) Felix: Sacrifice R1 Felix
Attack R2 Rim

24) Steele: S Y2 Steele
M G1 Alpha Rim
M G2 Alpha Rim
C Rim G
	Steele: Nice!  Didn't see that coming :)

25) Felix: Build Y2 Felix
	Felix: Thanks! it's so hard to anticipate everything in this game because there are so many possibilities! It truly is like chess in that regard.

26) Steele: T Y1 G1 Alpha

27) Felix: Move G2 Felix Rim

28) Steele: B G1 Alpha

29) Felix: Trade G2 Y2 Rim

30) Steele: T G1 Y1 Alpha

31) Felix: Build G1 Felix

32) Steele: B Y2 Alpha

33) Felix: Move G1 Felix Rim

34) Steele: T Y1 R1 Alpha

35) Felix: Build G2 Rim

36) Steele: S G3 Steele
B G2 Alpha
B G2 Alpha
B G3 Steele
Pass

37) Felix: Build G3 Felix

38) Steele: D G2 Alpha Y1 Beta
	Steele: Well that wasn't exactly what I was aiming to do :)
	Felix: Whoopsie :P

39) Felix: Discover Y1 Felix B1 Opal

40) Steele: B Y3 Alpha

41) Felix: Sacrifice G3 Felix
Build Y3 Opal
Build Y3 Felix
Build G3 Felix

42) Steele: S Y3 Alpha
M G1 Alpha Beta
M G2 Beta Felix
M G1 Beta Felix
C Felix G

43) Felix: Trade Y3 G3 Felix

44) Steele: Discover R1 Alpha Y1 Beta

45) Felix: Build Y3 Felix
	Felix: Ooh, nice move!

46) Steele: S G3 Steele
B Y3 Alpha
B R1 Beta
B R2 Beta
Pass
	Steele: I'm trying to think longer term in my tactics.  So many possibilities!!

47) Felix: Build B1 Rim
	Felix: It's truly mind boggling sometimes!

48) Steele: S Y3 Alpha
M R1 Beta Felix
M R1 Beta Felix
M R2 Beta Felix
C Felix R

49) Felix: Move Y3 Felix Steele
	Felix: Ooh, be careful leaving your homeworld without a large like that. If I moved a large or medium ship in there now, you'd be done for!
	Steele: Good advice, yeah, I may be rushing this, but...

50) Steele: S G2 Alpha
B G1 Steele
B G2 Steele
Pass

51) Felix: Trade Y3 G3 Steele
Catastrophe Steele Green
	Felix: You did rush a bit. I know that it feels really good to blow up half your opponent's world, but if you don't have a plan already in place to deal with the other half, you may leave yourself vulnerable to a quick counterattack, like I'm doing now.

	Steele: Yeah, I'm certainly on the defense now... 
	Felix: Very good game. You got a bit overeager at the end and it left you vulnerable. I've had to learn that lesson many times. Patience can be more frustrating sometimes, but it usually pays to wait until you have a full plan. That said, sometimes doing something radical and unexpected can really pay off, so keep being creative! I'd love to rematch any time.
	Steele: So much to learn - a rematch is coming soon :)


29726)
Variants: "Hard time"
Started: 2016.5.6, Ended: 2016.5.10
Participants: Felix (S), goulo (N)
Winner: Felix

1) goulo: Homeworld R1 B2 G3

2) Felix: Homeworld B1 Y3 G3
	goulo: hi, have fun!
	Felix: Thanks for accepting. Hope you have fun too!

3) goulo: Build G1 Goulo

4) Felix: Build G1 Felix

5) goulo: Trade G1 Y1 Goulo

6) Felix: Trade G1 B1 Felix

7) goulo: Build G1 Goulo

8) Felix: Build B1 Felix

9) goulo: Build Y1 Goulo

10) Felix: Discover B1 Felix G2 Opus

11) goulo: Discover Y1 Goulo G3 Verdego

12) Felix: Build B2 Opus

13) goulo: Trade G3 B3 Goulo

14) Felix: Trade B2 Y2 Opus

15) goulo: Build G1 Goulo

16) Felix: Build B2 Opus

17) goulo: Discover G1 Goulo B3 Bluego

18) Felix: Build B2 Felix

19) goulo: Build Y1 Verdego

20) Felix: Build B3 Opus

21) goulo: Build Y2 Goulo

22) Felix: Discover B2 Opus G3 Brink

23) goulo: Discover Y1 Verdego G2 Verdo

24) Felix: Build G1 Felix

25) goulo: Build G2 Bluego

26) Felix: Trade B1 R1 Felix

27) goulo: Build Y2 Verdo

28) Felix: Build Y3 Opus

29) goulo: Build Y3 Verdego

30) Felix: Sacrifice Y3 Opus
Move B1 Opus Brink
Move B2 Brink Goulo
Move B1 Brink Goulo
Catastrophe Goulo Blue

31) goulo: Build G3 Goulo

32) Felix: Sacrifice G3 Felix
Build Y3 Opus
Build G3 Felix
Build R1 Felix

33) goulo: Discover Y1 Verdego B2 Bluo

34) Felix: Move R1 Felix Opus

35) goulo: Move Y1 Verdo Felix

36) Felix: Sacrifice Y3 Opus
Move R1 Opus Goulo
Move R1 Felix Opus
Move R1 Opus Goulo

37) goulo: Sacrifice Y2 Goulo
Move Y1 Bluo Felix
Move Y2 Verdo Felix
Catastrophe Felix Y

38) Felix: Sacrifice G1 Felix
Build R2 Goulo
Catastrophe Goulo Red
	goulo: man, you outplayed me early with that blue lead, congrats and thanks.
	Felix: Good game! Thank you for playing. Would love to rematch any time!



29686)
Variants: "Unrated"
Started: 2016.5.9, Ended: 2016.5.12
Participants: mcowper (S), wil (N)
Winner: mcowper



29750)
Variants: "Hard time"
Started: 2016.5.10, Ended: 2016.6.20
Participants: ts52 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 Y2 G3
	Felix: We meet on the battlefield at last. Good luck to you!

2) ts52: Homeworld Y3 B2 G3
	ts52: And to you! :)

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: Trade G1 B1 Felix

6) ts52: Trade G1 B1 Ts52

7) Felix: Build B2 Felix

8) ts52: Discover B1 Ts52 G1 Kermit

9) Felix: Discover B2 Felix G3 Raid

10) ts52: Build G1 Ts52

11) Felix: Build G1 Felix

12) ts52: Build G2 Ts52

13) Felix: Discover G1 Felix B3 Maraud

14) ts52: Trade G2 Y2 Ts52

15) Felix: Build G2 Felix

16) ts52: Move Y2 Ts52 Kermit

17) Felix: Sacrifice G3 Felix
Build G2 Felix
Build G2 Maraud
Build G3 Felix

18) ts52: Discover G1 Ts52 Y1 Bigbird

19) Felix: Discover G2 Felix B3 Pillage

20) ts52: Discover G1 Bigbird B3 Grover

21) Felix: Trade G1 Y1 Maraud

22) ts52: Build G1 Ts52

23) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Raid
Build Y1 Maraud

24) ts52: Sacrifice G1 Grover
Build B3 Kermit

25) Felix: Trade B2 R2 Raid

26) ts52: T G1 R1 Ts52

27) Felix: Build B2 Raid

28) ts52: Build R1 Ts52

29) Felix: Trade B2 Y2 Raid

30) ts52: Move R1 Ts52 Kermit

31) Felix: Sacrifice G3 Felix
Build G1 Maraud
Build G1 Pillage
Build G3 Felix

32) ts52: Trade B3 R3 Kermit

33) Felix: Move Y1 Maraud Felix

34) ts52: M R3 Kermit Maraud

35) Felix: Sacrifice Y2 Raid
Move G2 Maraud Kermit
Move G2 Pillage Kermit

36) ts52: A Y1 Maraud

37) Felix: S G1 Maraud
B G1 Kermit
C Kermit Green

38) ts52: Build G1 Ts52

39) Felix: Sacrifice G3 Felix
Build B1 Raid
Build B2 Raid
Build B3 Felix

40) ts52: Discover G1 Ts52 Y1 Bigbird

41) Felix: Trade B3 G3 Felix

42) ts52: Move G1 Bigbird Maraud

43) Felix: Build B3 Felix

44) ts52: Build R1 Maraud

45) Felix: Trade B2 Y2 Raid

46) ts52: Discover R3 Maraud Y2 Zoe

47) Felix: Move B3 Felix Raid

48) ts52: Move R3 Zoe Pillage

49) Felix: Sacrifice G1 Pillage
Build B2 Felix

50) ts52: Build G1 Ts52

51) Felix: Trade B3 Y3 Raid

52) ts52: Discover G1 Ts52 Y1 Zoe

53) Felix: Build B3 Raid

54) ts52: Build G1 Ts52

55) Felix: Trade B3 Y3 Raid

	Felix: :(
	ts52: Dammit! Got distracted and forgot about my SDG games again. Sorry Felix.
	Felix: That's okay. I just hate that you had to lose that way, and on a ladder game no less! I've already been challenged by someone else but I hope you'll challenge me again in future, and I'd love to just plat a non-ladder game in the meantime!
	Draw5PlayAll: And the ts52 system is now in the main grid... odd...
	ts52: No worries, it's my own fault.
	Draw5PlayAll: Felix: you were clearly winning. How were you going to try to finish ts52 off?
All: Why do you suppose the ts52 system drifted into the middle of the field with all the other systems?
	ts52: Draw5PlayAll: That's just what happens when someone loses. SDG no longer thinks ts52 is a homeworld, so it doesn't treat it special any more.
	ts52: fwiw I Would've factoried g2 at zoe and maraud, probably.
	Felix: I didn't quite have a concrete finishing him off plan in place yet, but my plan was to just keep trying to dominate the blue market while continuing to rebuild that b3 and trade it, scooping up the rest of the larges and giving myself plenty of forces and options. I think I would have just positioned my blue and yellow ships and then sacrificed some y3s to move them into place and catastrophe his homeworld. Jury's out on whether it would work though. Ts52 has upset my plans before when I thought I was winning!
	ts52: :)


29725)
Variants: "Unrated"
Started: 2016.5.15, Ended: 2016.5.26
Participants: Draw5PlayAll (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 R2 G3
	Felix: Welcome! First game? Hope you enjoy and let me know if you have any questions!

2) Draw5PlayAll: Homeworld B1 R2 G3

3) Felix: Build G1 Felix
	Draw5PlayAll: Here's what I think is going to happen.
We each will build a G1 and then either build another green or trade for something (probably yellow).
	Felix: That sounds pretty accurate to me. The beginnings of games are usually pretty similar.

4) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Hold it. How do I construct ships in the home world? Do I write `build G1 Draw5PlayAll` or `build G1 homeworld` or `build G1 S`?

5) Felix: Trade G1 Y1 Felix
	Draw5PlayAll: Figured it out from the system message "North created a G1 ship in the Felix system".
	Felix: Glad you figured it out! You also don't have to write out the whole word for an action. You can just type "B G1 Draw5PlayAll" instead of "Build G1 ...."

6) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Despite several doubts we are going to attempt to build another small construction ship. As no enemies are in range of a suicide attack, we are safe for the time being.

———

I have a question. Suppose you have a green and a Y3 in your base while I have three greens. If you sac the Y3 to fly your green into my home and call catastrophe, who wins? Or is it a draw?

7) Felix: Build G1 Felix
	Felix: Before we venture forth on a discovery mission, we would also like to increase the construction capacity of our system by building a new small construction ship.

- - - - -

I think in an offline game it would be considered a draw if that situation came up. If there are no ships left in MY homeworld at the end of my turn, I would also lose. The system here on SDG, however, doesn't allow you to fully abandon your homeworld like that. The move is impossible on here, so it couldn't happen that way. That's just how the game is programmed here.

8) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: By popular request, we have decided to implement warp drive on one of our small ships. Unfortunately we had to remove its construction capabilities to do so. We've been trying for years to fit two abilities into one ship but it is simply impossible.

9) Felix: Trade G1 B1 Felix

10) Draw5PlayAll: Discover G1 Draw5playall R3 Dangerzone
	Felix: My people, meanwhile, have been demanding that we expand our trade market, so we have retrofitted one of our construction vessels with trade technology. We hope to venture forth into the unknown soon in search of peaceful people with which to trade.

11) Felix: Build B1 Felix
	Draw5PlayAll: A lone green ventured out into space and found a huge red planet. The people there had many weapons, but surprisingly the green was undetected in orbit. That's what I'm told at least.
	Felix: The people are pleased with the new trade regime and demand its further expansion. We complied by building yet another trade vessel. The technology powering our trade vessels is also found in the core of the larger of our two home planets, so we must send out one of our trade vessels soon to avoid any natural catastrophes occurring by overtaxing the planet's reactor.

12) Draw5PlayAll: Build Y1 Draw5playall
	Draw5PlayAll: We got a little annoyed by your actions and decided to construct another ship, this time with warp drives from the beginning.  We fear your later actions and are trying to access more planets to diversify and spread out our fleet.

Be aware that if you upsize your movement vessels, we many launch suicide ships to destroy your warp drive.

13) Felix: Discover B1 Felix G1 Littlewood
	Draw5PlayAll: Incidentally, I saw your 4P challenge. I'm a bit hesitant because that forces either two people to share a homeworld size (causing them to fight bitterly in LCS; not as bad in Sinister) or someone to choose a "Gemini" star (1-1, 2-2, or 3-3) which also creates bitter fighting. (I think a gemini is an awful choice for any battle.)

I think they should add a 2v2 mode for four players. I've hypothesized about how this might work (the teams obviously should pick the same size stars). Not sure if partners should go sequentially (1,2 vs 3,4) or not (1,3 vs 2,4).
However, I don't think this will happen any time soon because I'm not sure if teams are implemented at all.

14) Draw5PlayAll: Build Y2 Draw5playall
	Felix: Despite the threatening message of suicide bombers received by an alien race somewhere to the south of us, we are sending out one of our small trade vessels in search of peaceful people with which to trade. The vessel is fragile and unprotected, but it has discovered a small and seemingly peaceful forest planet. We are dubbing this planet "LittleWood." The planet seems conducive to a construction facility, so we are installing a ship factory on the planet and soon hope to produce larger ships that will protect our small trade vessel. We hope that the suicide bomber threats are simply a ruse.
	Felix: (I hadn't thought of that problem in a 4p game but I believe you're right. I still think it could be fun to give it a try though! Would love to have you join in and see how it goes.
	Draw5PlayAll: We are risk-takers, and decided to upsize our ships in the warp drive industry. 
We have also canceled the threat. There has been some slight amounts of radiation coming from the warp drives, and we fear it will be too much if we don't explore soon.

--
So far, I dislike the map structuring. Specifically, the proximity from your base to DangerZone, despite both systems having a Large. I keep getting tempted to barge in to Little Wood, despite impossibility.

15) Felix: Build B2 Littlewood
	Draw5PlayAll: We detected aliens from DangerZone and LittleWood are observing our actions. I hope they leave soon because this could get messy.

16) Draw5PlayAll: Move Y1 Draw5playall Dangerzone
	Felix: Fearing attack from the nearby DangerZone system, our colony on LittleWood has decided to build a larger trade vessel to help protect the smaller. We do not wish a confrontation, as we are a peaceful trading people, so we are not equipping our vessels with weapons at the moment.
	Felix: (It does take some time to get one's head around the movement and layout on here. It's much easier to arrange things how you wish when playing on a table.)
	Draw5PlayAll: We decided to fly a Constellation-class ship into Danger Zone. With the earlier green ship we could potentially upsize our fleet.

17) Felix: Build Y2 Felix
	Felix: The lack of warp capability in our LittleWood colony is worrisome, so we are creating a new warp vessel at home to send out to the colony.

18) Draw5PlayAll: Trade Y1 R1 Draw5playall
	Draw5PlayAll: Since your mission is peace, you clearly don't need to be involved in the red economy. Plus we want to diversify our fleet. Red seemed like a good option, just in case you changed your mind at some point.

19) Felix: Move Y2 Felix Littlewood
	Felix: Our sensors indicate that the alien race to the south is developing weapons in its home system. This is troubling for a peaceful people such as ourselves. We may need to arm ourselves with a warship, purely for defensive reasons, of course. But first, we are sending our new warship out to the LittleWood colony so that the colony can evacuate if an attack should come from our southern neighbors.

20) Draw5PlayAll: Discover R1 Draw5playall Y3 Biglemon
	Draw5PlayAll: Well, fine then. If you prefer, we are sending the weaponed ship to a new, more peaceful star known as the Big Lemon. Seems like a strange name for a star.

21) Felix: Trade B1 R1 Littlewood
	Draw5PlayAll: The map got completely messed up. The large stars should be closer to me than they are to you.
	Felix: Since we now have a larger trade ship capable of carrying out our trade directives, we no longer need our smallest trade vessel, so we will be stripping out its trade facilities and replacing them with weapons. This is purely for defense, since the alien warship located at the Big Lemon is only one warp jump away from us.

22) Draw5PlayAll: Build Y1 Dangerzone
	Felix: The map looks right to me, but it does sometimes get messed up. You just have to think of it more abstractly and less literally in terms of distance.
	Draw5PlayAll: Well, in this case, we're just going to build another yellow ship at Danger Zone.

23) Felix: Build Y2 Littlewood

24) Draw5PlayAll: Build Y3 Draw5playall
	Felix: We see the need to explore further in search of peaceful species with which to trade, so we are increasing our fleet with a new warp ship.
	Draw5PlayAll: Well, our Ambassador-class ships aren't enough. We are going to Galaxy-class. And it's being built right here in the base.

25) Felix: Build Y3 Felix
	Felix: We have noticed that the resources required for building Galaxy-class warp ships have dropped to nearly nonexistent levels. We suspect the aliens to the south of us are also drawing on the same resources. We are going to build our own galaxy-class warp cruiser to make sure we have one before resources are fully depleted.

26) Draw5PlayAll: Build G1 Dangerzone
	Draw5PlayAll: Ah, you've robbed us of the blue economy! Well then, we're going to a planet covered in ice, and sending a construction ship with the boost from the warp ships in Danger Zone. We have a way of transporting ships without sacrificing, so long as we have a yellow in the area.
	Draw5PlayAll: Slight change in plans. We decided we needed more resources and are just going to build another construction ship in the danger zone.
Our star charts lost the planet in the process.

27) Felix: Build B1 Littlewood

28) Draw5PlayAll: Build G2 Dangerzone
	Felix: We are building a new trade vessel to send out on a contact mission of peace.
	Draw5PlayAll: Despite the potential for catastrophe, we have decided to build an Ambassador-class construction ship in the Danger Zone system. We are aware that you have the means to invade with your large green but you would be unwise to do so.

29) Felix: Move B2 Littlewood Biglemon

30) Draw5PlayAll: Discover G1 Dangerzone B2 Epsilonvi
	Felix: We have sent our liaison-class trade vessel on a mission of discovery and peace. A particularly large desert planet has shown up on our charts so we are beginning our search there. Hopefully the denizens of this big lemon are peaceful.
	Draw5PlayAll: Meanwhile our own people at Danger Zone realized the, well, danger.. They decided to flee off to a small watery planet, but the name is unknown....

31) Felix: Sacrifice R1 Littlewood
Attack R1 Biglemon
	Draw5PlayAll: As soon as we were within sensor range, aliens completely obliterated the planet and killed themselves in the act. A time warp sent us back to where we started.
	Draw5PlayAll: One of the crew was able to prevent the same mistake from occurring again. We instead ventured to a slightly larger planet Epsilon VI, again covered in water.

32) Draw5PlayAll: Build G2 Epsilonvi
	Felix: We made contact with a small vessel at BigLemon. However, the small vessel appears to be armed with high powered lasers and warheads. We were expecting to open peaceful trade relations with this people, but they seem to be aggressive. We have no choice but to take over this vessel so that it does not harm us or our people. Purely defensive measures, you understand. Our defensive vessel in LittleWood is sending a warp-powered boarding crew to take the ship intact.

33) Felix: Build G2 Felix
	Felix: Unfortunately, the amount of power required to send the warp-powered boarding vessel was too much for our defense ship's core to handle. The ship self-destructed in the process, but we were able to successfully take over the enemy vessel, so we are calling it even.
	Draw5PlayAll: Our small Constellation ship at Epsilon VI is lonely and we decided to build an Ambassador-class construction vessel on that planet.

34) Draw5PlayAll: Trade G2 B2 Epsilonvi

35) Felix: Sacrifice G3 Felix
Build B3 Biglemon
Build B3 Littlewood
Build G2 Felix
	Felix: We are short on construction ships, so we are building a new construction vessel in our home system.
	Draw5PlayAll: Despite the knowledge that you can send suicide ships to destroy me, we traded out the construction power of our Ambassador-class ship at Epsilon VI for trading power, using the planet of course.
---
You have the possibility of sacrificing a medium yellow to bring two blues into Epsilon VI and call catastrophe. If you don't, we will begin actions you will not like.

36) Draw5PlayAll: Build G3 Epsilonvi

37) Felix: Discover G2 Felix R1 Lavaflow
	Felix: We have ignored your beckon to cause a catastrophe on Epsilon VI. We do not believe in such overt aggression as a suicide attack. Instead, we tried to send our biggest construction vessel out to LittleWood to begin construction operations there. However, something strange happened in transit and our ship entered a wormhole. When it came out the other side of the wormhole, it had been split into three ships, a medium construction ship and two large trade vessels! These ships showed up in random locations around our domain. We aren't sure what happened in the wormhole, but we are happy with the net gain to our fleet.
	Draw5PlayAll: We build a Galaxy-class construction vessel in Epsilon VI. Go on, blow us up. We dare you.

--

Ha, just right after I got a blue, you removed the color from the stash. I need two turns in a row here!!

38) Draw5PlayAll: Sacrifice Y1 Dangerzone
Move G3 Epsilonvi Lavaflow
	Draw5PlayAll: I see us both left with a single medium red as our homeworlds.
Here's what I see for you:
You run a ship into Little Wood and then sac a yellow to bomb our small blue star, leaving me with just a red. (There's a change you might sabotage my yellow economy, but I think that won't work.)
Meanwhile I see multiple ways that I can get to YOUR homeworld and either call catastrophe or sabotage your Planetary Defense System (if you sac your only large there and I get a large inside, you can't attack me).
	Felix: Interesting prediction :) We shall see! It's generally a terrible idea to ever leave your homeworld without a large ship to defend it, so I will tell you that I am unlikely to sac my y3 any time soon...

39) Felix: S G2 Lavaflow
B R1 Biglemon
B R2 Biglemon
	Felix: We were intending to send our medium construction vessel out to Big Lemon to establish a factory on that world, but the vessel became lost in transit and ended up stumbling upon a small planet covered in active volcanoes. We have dubbed this planet Lava Flow and may commence our construction operations here.
	Draw5PlayAll: Oh no. This is bad. This is really bad.

The large green from Epsilon VI heard about this lava planet and decided to go there. We used the engine from a yellow at DangerZone, but said engine broke down as soon as we reached Lava Flow.

40) Draw5PlayAll: Sacrifice G2 Dangerzone
Build G2 Lavaflow
Build G2 Epsilonvi

41) Felix: Build G3 Felix
	Felix: Our construction vessel on lava flow was startled by the appearance of a large and unknown ship. It lost control and careened into the planet, blowing itself up. The construction energy within the ship reacted with the planet, however, and created two new warships equipped with heat lasers. The reaction propelled these new ships back over to big lemon for some reason...
	Draw5PlayAll: I can't think of a good way to phrase this move in our... narrative...

42) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move G2 Lavaflow Felix
Move G3 Lavaflow Felix
Catastrophe Felix Green
	Draw5PlayAll: You know, the only reason I picked a 1-2 home world is for the Investment strategy, where I park a single green at a star and try to cash it in via a sacrifice. Result? I got *nearly* frozen out of blue.
	Felix: That's okay if you we don't narrate every move. it's fun though! And yeah... the banker strategy is a good one though! It's definitely the strongest homeworld set up and can be used very effectively, but I have found it difficult to actually pull off the "banker" move in games.

43) Felix: Move R1 Biglemon Draw5playall
	Draw5PlayAll: We wanted to trade for a Galaxy-class attacking ship but the risk of invasion is just too great. We instead decided to run a suicide mission to hold back your green economy.

44) Draw5PlayAll: Sacrifice G2 Epsilonvi
Build Y1 Draw5playall
Build Y2 Dangerzone

45) Felix: Discover B1 Littlewood G3 Bigwood
	Felix: Despite our peaceful intentions, it seems the aliens to our south are a warlike species interested only in our destruction. We are sending out one of our small warships on a scouting mission to their homeworld to see if we can find a way to neutralize their weapons. Purely in self defense, of course.
	Draw5PlayAll: Not sure if there's anything I can do here. You rip away my red next move, then you can sac yellows to throw your blues at me and wipe out my homeworld. My only shot here is to...

46) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move Y2 Dangerzone Littlewood
Move Y1 Dangerzone Littlewood
Discover B2 Epsilonvi R1 Lavaflow
Catastrophe Littlewood Yellow
	Draw5PlayAll: We have developed a "distant construction" device, and used it on our G2 in Epsilon VI, but it has a problem. It draws so much power that the ship self-destructs in the process.
	Draw5PlayAll: This game will be very close.

47) Felix: Move R1 Biglemon Draw5playall
	Felix: Little did we know that the planet Little Wood was actually just a forest moon for a much larger forest planet. We're not very creative, so we're dubbing this planet Big Wood.
	Draw5PlayAll: There's only one thing I can really do at this point. Commence Brutal Destruction!!

	Felix: Our small warship needs backup in the alien home system. Soon, we will be able to neutralize all weapons, and then perhaps we can build peace between our peoples...
	Draw5PlayAll: Facing unavoidable doom, we had a last ditch effort to save our remaining crew. We piled everyone into our large green and used engines from the yellow to flee into space. We also poisoned the planets with lots of deadly gases and radiation (there were nobody there except us) so we leave nothing behind for the "peaceful" invaders in the direction of Polaris.

——————————————

Good game. I just needed two more moves, attack red and move it away. Sadly when I ransacked your yellow economy in the Little Wood system, you had the move advantage to destroy us. I had traps set if you sacrificed too early. But you managed to trap me in a corner.

Perhaps we will meet again. In the meantime, so long, and thanks for all the fish. (Yes, we tried to raid your incoming red ships. We failed, but at least we got some fish.)
	Felix: Great game yourself! Very well played for a beginner. You will have a very solid grasp on the strategy with a few more games. I'd love to have a rematch any time! Enjoy that fish!


29701)
Variants: "Unrated"
Started: 2016.5.15, Ended: 2016.6.5
Participants: Draw5PlayAll (S), nycavri (N)
Winner: nycavri

1) nycavri: Homeworld Y1 B2 G3
	nycavri: TaGG!

2) Draw5PlayAll: Homeworld B1 R3 G3

3) nycavri: Build G1 Nycavri

4) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Interesting. You appear to have skilled explorers in your home world but you lack a planetary defense system. We are going to build another construction ship before taking on any adventurous actions.

5) nycavri: T G1 Y1 Nycavri

6) Draw5PlayAll: Build G1 Draw5playall
	nycavri: We come in peace . . . ?
	Draw5PlayAll: We are risk-takers, and we build another construction ship in our system. There is no risk of a suicide bomber blowing up all our green.

7) nycavri: D Y1 Nycavri B3 Deacon
	nycavri: Yet . . .

8) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: I take note of your actions and decide to implement warp drives in one of the small Constellation-class ships. As always, we have to remove the construction capabilities.

9) nycavri: Build G1 Nycavri

10) Draw5PlayAll: Build Y2 Draw5playall
	nycavri: Looks like you're all set to escalate  / accelerate . . .
	Draw5PlayAll: Ah, but we have an Ambassador-class movement ship in our system. We hope to use it to explore strange new worlds.

11) nycavri: S G1 Nycavri
Build Y2 Deacon

12) Draw5PlayAll: Discover Y2 Draw5playall G2 Greenville
	nycavri: And you've stolen tempo . . .
	Draw5PlayAll: Well, in that case... We discovered a medium-sized planet covered in forest. The local aliens have construction facilities that we could use to our advantage. 

13) nycavri: T Y2 G2 Deacon

14) Draw5PlayAll: Build Y2 Greenville
	nycavri: Not enjoying how loneyly my mothership is . . .
	Draw5PlayAll: We're building another Ambassador class ship with warp drives.

15) nycavri: B G1 Nycavri

16) Draw5PlayAll: Build Y2 Draw5playall
	Draw5PlayAll: Hmmm... I could sac the G1 and build three times but I don't think I have enough influence. Instead we decided to build an Ambassador-class movement ship.

17) nycavri: D Y1 Deacon G2 May

18) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G1 Draw5playall
Build G3 Draw5playall
Build Y3 Greenville

19) nycavri: S G3 Nycavri
B G3 Nycavri
B Y3 May
B G3 Deacon
	Draw5PlayAll: What's interesting is that even though I am in danger of an overpopulation (I have 3 of a color in two systems) but you can't get anything there to call.

20) Draw5PlayAll: Trade G1 B1 Draw5playall

21) nycavri: T G3 Y3 Deacon
	Draw5PlayAll: Because of the threat of a disaster we decided to swap out our Constellation-class construction vessel for a trading vessel.

22) Draw5PlayAll: Sacrifice Y2 Greenville
Discover Y1 Draw5playall R2 Firefly
Move B1 Draw5playall Firefly

23) nycavri: T G1 R1 Nycavri
	Draw5PlayAll: Oh, your forces are quite annoying!

24) Draw5PlayAll: Move Y3 Greenville Deacon

25) nycavri: B R1 Nycavri
	nycavri: Happy system!

26) Draw5PlayAll: Trade Y3 R3 Deacon

27) nycavri: S R1 Nycavri
A R3 Deacon

28) Draw5PlayAll: Discover B1 Firefly G3 Large-green

29) nycavri: B R1 Nycavri

30) Draw5PlayAll: Build B1 Large-green

31) nycavri: S Y3 May
Move R3 Deacon May
M R3 May Large-green
M R1 Nycavri Large-green

32) Draw5PlayAll: Build Y2 Greenville

33) nycavri: A B1 Large-green

34) Draw5PlayAll: Discover Y2 Greenville B3 Bigocean

35) nycavri: B Y3 May
	Draw5PlayAll: That was unexpected. *sigh* I guess I'll build an Ambassador-class ship in the Greenville system.

36) Draw5PlayAll: Sacrifice G1 Draw5playall
Build Y3 Bigocean

37) nycavri: B G1 Nycavri

38) Draw5PlayAll: Sacrifice B1 Large-green
Trade Y2 B2 Greenville

39) nycavri: S G3 Nycavri
B G1 Deacon
B G1 Deacon
B G3 Nycavri

40) Draw5PlayAll: Move Y2 Draw5playall Greenville

41) nycavri: B Y2 Deacon

42) Draw5PlayAll: Discover Y2 Greenville R3 Dangerzone
	Draw5PlayAll: He was doomed anyway. Plus I get to have a stake in the blue economy

43) nycavri: T G2 R2 Deacon
	nycavri: Factory is fully operational . . .
	Draw5PlayAll: This behavior will not be tolerated. Prepare for destruction on a planetary scale.

44) Draw5PlayAll: Build G2 Draw5playall

45) nycavri: S G3 Nycavri
B G3 Nycavri
B R1 Deacon
B R2 Deacon
	Draw5PlayAll: Same effect, but now I have a stake in the blue economy.

46) Draw5PlayAll: Build B1 Greenville

47) nycavri: S Y2 Deacon
Discover R1 Deacon Y2 Mercury
M R2 Deacon Mercury

48) Draw5PlayAll: Move Y1 Firefly Dangerzone

49) nycavri: S Y3 May
Move R1 Large-green May
M R1 Mercury Draw5playall
M R2 Mercury Draw5playall
	Draw5PlayAll: I'm risking the so-called Bluebird Mistake in the hope of getting to build, trade, or move other ships soon.

50) Draw5PlayAll: Sacrifice Y3 Bigocean
Move Y2 Bigocean Nycavri
Move Y2 Dangerzone Nycavri
Move Y1 Dangerzone Nycavri
Catastrophe Nycavri Yellow

51) nycavri: S Y3 Deacon
M G1 Nycavri Draw5playall
M G3 Nycavri Draw5playall
M R3 Large-green Nycavri
C Draw5playall G

	Draw5PlayAll: We have successfully launched an invasion force to the base of those two mean attackers. Our long-range action technology used the Galaxy-class warp ship in BigOcean to move three suicide yellow ships into your homeworld. The energy from the ranged action system destroyed the four warp drive ships and your small yellow planet.
	nycavri: Thanks for the game, perhaps the favorite Homeworlds contest I have played.  You mentioned Bluebird, then missed the fact that destroying my yellow world would give me direct access to your own Homeworld . . .
	Draw5PlayAll: Actually, I knew it too late. I was hoping you wouldn't realize it. I didn't have much else anyway. Oddly enough, your planned attack would NOT have connected our homeworlds.
	Draw5PlayAll: Interestingly enough, it moved my homeworld into the middle fray, as if it was simply another star system.


29732)
Variants: "Unrated"
Started: 2016.5.15, Ended: 2016.5.24
Participants: Draw5PlayAll (S), wil (N)
Winner: Draw5PlayAll



29689)
Variants: "Hard time"
Started: 2016.5.17, Ended: 2016.6.8
Participants: Simon (S), Felix (N)
Winner: Simon

1) Felix: Homeworld B1 Y3 G3
	Felix: Good luck and have fun :)

2) Simon: Homeworld B2 R1 G3
	Simon: You too!

3) Felix: Build G1 Felix

4) Simon: Build G1 Simon

5) Felix: Trade G1 B1 Felix

6) Simon: Trade G1 B1 Simon

7) Felix: Build B2 Felix

8) Simon: Build G1 Simon

9) Felix: Discover B2 Felix G2 Raven

10) Simon: Trade G1 Y1 Simon

11) Felix: Sacrifice G3 Felix
Build B2 Raven
Build B3 Raven
Build B3 Felix

12) Simon: Build B3 Simon

13) Felix: Trade B3 G3 Felix

14) Simon: Trade B3 Y3 Simon

15) Felix: Trade B2 Y2 Raven

16) Simon: Discover Y3 Simon G3 G3

17) Felix: Discover B2 Raven Y3 Albatross

18) Simon: Move B1 Simon G3

19) Felix: Build G1 Felix

20) Simon: Build Y1 G3

21) Felix: Discover B1 Felix Y2 Rim

22) Simon: Trade Y1 R1 G3

23) Felix: Trade G1 R1 Felix

24) Simon: Build R2 G3

25) Felix: Sacrifice G3 Felix
Build B2 Raven
Build B3 Albatross
Build B3 Rim

26) Simon: Sacrifice Y3 G3
Move G3 Simon Albatross
Move G3 Albatross Raven
Move G3 Raven Felix

27) Felix: Sacrifice Y2 Raven
Move B3 Raven Felix
Move B3 Rim Felix
	Felix: I could have sworn I saw a way out of this before I made my last move. But now it's gone. I think I somehow thought I had a y3 available, which would have changed everything. I think I made a big mistake.Oops :)

28) Simon: Sacrifice R2 G3
Attack B3 Felix
Attack B3 Felix

29) Felix: Move B1 Rim Felix
Catastrophe Felix Blue
	Simon: Flying in my y3 wouldn't have cut it either. If flying in the g3 didn't work, you'd have the huge advantage. :-)
	Felix: Oh... I thought *I* had a Y3. I anticipated you moving in the G3, and I was planning to move two of my ships back home and move one ship to your homeworld to take out your remaining small. Miscalculated. Well done!

30) Simon: Sacrifice R1 G3
Attack R1 Felix
	Simon: gg!



29771)
Variants: "Unrated"
Started: 2016.5.17, Ended: 2016.6.24
Participants: dijek (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y2 G3
	Felix: Hi! First game? Hope you have fun. Let me know if you have any questions.

2) dijek: Homeworld G1 Y3 B3
	dijek: Yes, I thought this game looked interesting, although it seems fairly simple.

3) Felix: Build G1 Felix
	dijek: Is there any limit to the number of systems, other than the size of the global stash?
	Felix: No limit. There can be as many as the global stash will allow!

4) dijek: Build B1 Dijek

5) Felix: Trade G1 B1 Felix

6) dijek: Discover B1 Dijek R2 Galois
	Felix: The game seems fairly simple, but I assure you it is anything but. It becomes incredibly complex, and the strategy is very deep and takes many games to truly figure out. 
	dijek: Yes, I only meant the rules seemed easy enough to understand. The strategy of easy to learn games is often quite fun and complex. :)

7) Felix: Discover B1 Felix G1 Littlewood
	Felix: True! Yes, I think that's what makes a game great. Easy to understand rules, but depth of strategy. Hive is another favorite of mine for that reason.

8) dijek: Build B1 Dijek
	dijek: I am not endangering Golois for next turn, I think, because although you could build a b2 in littlewood now, you could not yet move it.
	dijek: Oh, but you could attack even with the smallest ship size; it is greater than or equal to.

9) Felix: Build B2 Littlewood
	Felix: Right. I can't move my ship there right now without a yellow. And even if I could move it there, I can't move and attack on the same turn, so you could just attack my ship as soon as it arrived. I would want to move a bigger ship into your system if I wanted to attack.

10) dijek: Build B2 Dijek
	Felix: The early game is usually more focused on just building up your fleet as quickly as possible. Blue is a good color to go for at this point, as you can see I'm doing. And spreading your blue ships out to green planets is useful so you can keep building faster.

11) Felix: Trade B1 Y1 Littlewood

12) dijek: Discover B2 Dijek B2 Klein

13) Felix: Build B1 Littlewood

14) dijek: Trade B2 Y2 Klein

15) Felix: Build Y1 Littlewood

16) dijek: Build B2 Dijek

17) Felix: D B1 Littlewood G2 Othlorien

18) dijek: Move Y2 Klein Dijek

19) Felix: B B2 Othlorien

20) dijek: Move B2 Dijek Galois

21) Felix: Build B3 Littlewood

22) dijek: Build Y1 Dijek

23) Felix: Trade B2 Y2 Othlorien

24) dijek: Trade Y2 G2 Dijek

25) Felix: Build G1 Felix

26) dijek: Move G2 Dijek Galois

27) Felix: Discover G1 Felix R1 Sapros

28) dijek: Trade B3 G3 Dijek

29) Felix: Build G2 Felix

30) dijek: Build G3 Galois

31) Felix: Build Y2 Othlorien

32) dijek: Move Y1 Dijek Galois

33) Felix: Sacrifice Y1 Littlewood
Move G1 Sapros Othlorien

34) dijek: Discover B2 Galois R1 Kowa

35) Felix: Discover B2 Littlewood R2 Lavaflow

36) dijek: Sacrifice G3 Galois
Build B2 Galois
Build B3 Kowa
Build G3 Galois

37) Felix: Sacrifice G3 Felix
Build Y1 Othlorien
Build Y3 Littlewood
Build G3 Felix

38) dijek: Build Y3 Galois

39) Felix: Trade G2 R2 Felix
	Felix: Nice move!

40) dijek: Sacrifice Y3 Galois
Move Y1 Galois Kowa
Move Y1 Kowa Othlorien
Pass
Catastrophe Othlorien Yellow
	dijek: Oh no, you've got one of my stars...
	dijek: I can't stop it

41) Felix: Sacrifice Y1 Littlewood
Move G1 Othlorien Dijek
	Felix: I'm afraid I do :) Sorry...
	Felix: Except I can't get it yet.... if I did, it would leave me open to a counterattack by you that could take out all of my green and destroy me. So I must be patient...

42) dijek: Trade G3 R3 Dijek

43) Felix: Build G2 Dijek
	Felix: Ooh, nice one.

44) dijek: Build R1 Dijek
	dijek: Are you supposed to be able to trigger a catastrophe during the middle of your turn? The rules here say the end, but those on the looney labs site say any time.

45) Felix: Build G3 Dijek
Catastrophe Dijek Green
	Felix: There's always been some confusion over that. You're right about the rule difference between here and Looney Labs. In my opinion, Looney Labs has the rules correct, and I play that way when I play real games, but yeah, unfortunately the implementation of the rules on here only allows you to catastrophe at the end of your turn. I wish it were different, as there have been opportunities where it could have been really handy!

46) dijek: Trade R1 G1 Dijek
	dijek: I guess it would change the strategy, especially since it stops you from doing multiple catastrophes at once.
	dijek: I guess it would change the strategy, especially since it stops you from doing multiple catastrophes at once.
	dijek: Oh wow, this attack is really good

47) Felix: Build G1 Felix

48) dijek: Trade B1 Y1 Galois
	Felix: Thank you! Yeah, I hadn't thought about being able to do two catastrophes in one turn, but that would be awesome if you could pull it off!

49) Felix: Sacrifice Y3 Littlewood
Move G3 Felix Littlewood
Move B3 Littlewood Dijek
Move G3 Littlewood Dijek

50) dijek: Attack B3 Dijek

51) Felix: Sacrifice R2 Felix
Attack R3 Dijek
Attack B3 Dijek

52) dijek: Sacrifice G3 Galois
Build G1 Dijek
Build B1 Dijek
Build G2 Galois
	Felix: I hope this works out.... scary stuff.

53) Felix: Build G3 Dijek
Catastrophe Dijek Green

54) dijek: Trade B1 R1 Dijek
	dijek: So tense
	dijek: ugh I messed up

55) Felix: Sacrifice R3 Dijek
Attack B1 Dijek
Attack R1 Dijek
Pass

	Felix: Good game! You played well and I hope you learned some stuff. Let's play again any time!
	dijek: Thank you! I had fun. I still think I'm a beginner, though.
	Felix: I got utterly destroyed the first 20 or so games I played on here, so don't be discouraged!


29703)
Started: 2016.5.17, Ended: 2016.7.18
Participants: ts52 (S), Draw5PlayAll (N)
Winner: ts52

1) Draw5PlayAll: Homeworld B2 R1 G3

2) ts52: Homeworld Y3 B2 G3
	Draw5PlayAll: We have settled ourselves on a binary system with a blue and red star. Our large ship is geared for construction.

3) Draw5PlayAll: Build G1 Draw5playall
	ts52: :) Have a good game!

4) ts52: Build G1 Ts52
	ts52: Sorry about the delay.

5) Draw5PlayAll: Trade G1 R1 Draw5playall

6) ts52: Trade G1 R1 Ts52
	Draw5PlayAll: That was intentional, not a typo.

7) Draw5PlayAll: Build R2 Draw5playall
	ts52: How aggressive. Interesting.

8) ts52: Build R2 Ts52
	Draw5PlayAll: That was a mistake. Hopefully everything is resolved.

9) Draw5PlayAll: Trade R1 Y1 Draw5playall
	ts52: Things seem to be ok now. No worries. I'll try to keep up so I don't end up with negative time again. Thanks for being patient.

10) ts52: Build G1 Ts52

11) Draw5PlayAll: Build G1 Draw5playall

12) ts52: Discover G1 Ts52 B1 Grover

13) Draw5PlayAll: Trade G1 B1 Draw5playall

14) ts52: B G1 Ts52
	Draw5PlayAll: I don't want to get frozen out of blue like I was in another game...

15) Draw5PlayAll: Build Y1 Draw5playall

16) ts52: T R2 Y2 Ts52

17) Draw5PlayAll: Discover Y1 Draw5playall G3 Thirdgen

18) ts52: Move Y2 Ts52 Grover
	Draw5PlayAll: ThirdGen is a pun: green three-pip => G3 => 3G => third generation

19) Draw5PlayAll: Move R2 Draw5playall Thirdgen
	ts52: :) I'm not sure how I started with muppets, but it's become a thing I think.

20) ts52: Move R1 Ts52 Grover
	Draw5PlayAll: We received an order to create more warrior ships because aliens away from the direction of Polaris might potentially be hostile. In order to reduce the threat of civil war leading to catastrophe, we send the red to the ThirdGen planet to defend the Constellation ship there.

21) Draw5PlayAll: Build B1 Draw5playall
	Draw5PlayAll: We are peacefully building another Constellation-class trading vessel in order to access more technologies.

22) ts52: Build Y1 Grover

23) Draw5PlayAll: Build Y2 Thirdgen
	ts52: We are investing in new fusing drive technology to facilitate our exploratory nature.
	Draw5PlayAll: Interesting. I think I'll take the next Ambassador-class ship.

24) ts52: Trade Y2 B2 Grover

25) Draw5PlayAll: Move B1 Draw5playall Thirdgen

26) ts52: Build Y2 Grover
	Draw5PlayAll: To reduce threats we have decided to transfer our small trading vessel over to our well-populated ThirdGen planet.

27) Draw5PlayAll: Discover Y1 Thirdgen G1 Littleforest

28) ts52: Discover B2 Grover G2 Oscar

29) Draw5PlayAll: Build B3 Thirdgen

30) ts52: Build B3 Oscar

31) Draw5PlayAll: Trade B3 R3 Thirdgen

32) ts52: Trade B3 Y3 Oscar

33) Draw5PlayAll: Build B3 Thirdgen

34) ts52: Build B3 Oscar

35) Draw5PlayAll: Sacrifice B1 Draw5playall
Trade B3 Y3 Thirdgen

36) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Grover
Build G3 Ts52

37) Draw5PlayAll: Build Y2 Littleforest

38) ts52: Trade G2 R2 Grover

39) Draw5PlayAll: Discover Y2 Thirdgen R1 Lavaflow

40) ts52: Move B3 Oscar Lavaflow

41) Draw5PlayAll: Sacrifice Y3 Thirdgen
Move Y2 Lavaflow Ts52
Move Y1 Littleforest Ts52
Move Y2 Littleforest Ts52
Catastrophe Ts52 Yellow

42) ts52: Move Y2 Grover Ts52

43) Draw5PlayAll: Trade R3 Y3 Thirdgen
	Draw5PlayAll: WARNING: You have only ONE COLOR AT YOUR HOMEWORLD!

44) ts52: M R1 Grover Ts52
	ts52: Thanks for the warning. Well done setting up the catastrophe.

45) Draw5PlayAll: Build B1 Thirdgen
	Draw5PlayAll: South's ship Y2 was not sacrificed in the ts52 system. South did not move their R2 ship from Grover to ThirdGen. South did not move their R1 ship from Grover to ThirdGen. A catastrophe did not occur in the ThirdGen system. No attack (R) technology was lost.

46) ts52: B B3 Oscar

47) Draw5PlayAll: Move B1 Thirdgen Oscar

48) ts52: Trade B3 R3 Oscar

49) Draw5PlayAll: Build B3 Thirdgen

50) ts52: Attack B1 Oscar
	Draw5PlayAll: I do not have time to plan this out. Will move later.

51) Draw5PlayAll: Discover B3 Thirdgen G1 Port1
	Draw5PlayAll: In case you are wondering, the B1@oscar is mine, so the threat of sacrificing Y2@ts52 to explode my blues is gone.

52) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build B3 Lavaflow
	ts52: There's one solution to that problem. :)

53) Draw5PlayAll: Trade B3 R3 Port1
	Draw5PlayAll: And there is a way to prevent you from doing that next move. True, I had access to ts52 from ThirdGen, but I had to evacuate. I chose the B1 because most of your fleet is at the wrong size
	Draw5PlayAll: Actually, no. I want a large there.

54) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Oscar
Build R3 Grover

55) Draw5PlayAll: Build B3 Thirdgen
	Draw5PlayAll: I thought I was winning!! Wow.

56) ts52: Discover R3 Oscar Y3 Bigbird
	Draw5PlayAll: Trying this on for size...
	Draw5PlayAll: You can supernova the ThirdGen system, but it would cost you so much that it would not be worth it, and plus, you would lose your bind on the green economy

57) Draw5PlayAll: Move B1 Thirdgen Lavaflow

58) ts52: Sacrifice Y2 Ts52
Move B3 Lavaflow Bigbird
Move G2 Grover Bigbird
	Draw5PlayAll: You have WAY too many ships!!

59) Draw5PlayAll: Build Y1 Thirdgen

60) ts52: Attack B1 Lavaflow

61) Draw5PlayAll: Build Y2 Draw5playall

62) ts52: Build Y2 Grover

63) Draw5PlayAll: Move Y1 Thirdgen Port1

64) ts52: Move R2 Grover Bigbird

65) Draw5PlayAll: Build Y2 Port1

66) ts52: Move Y2 Grover Ts52

67) Draw5PlayAll: Sac Y3 Thirdgen
Move Y1 Port1 Bigbird
Move Y1 Draw5playall Bigbird
Move Y2 Port1 Bigbird
Catastrophe Bigbird Yellow

68) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build B3 Oscar
	Draw5PlayAll: There are zero ships in the global stash

69) Draw5PlayAll: Build Y1 Draw5playall
	Draw5PlayAll: I do not know if this is worthwhile, but I am about to do a very interesting move

70) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Oscar
Build R3 Grover
	Draw5PlayAll: Problem is, I lost too much yellow.

71) Draw5PlayAll: Move Y1 Draw5playall Thirdgen
Pass
	ts52: True enough. That may have hurt you more than it hurt me.
	Draw5PlayAll: Your factory. Ugh.

72) ts52: Discover B3 Oscar Y3 Bigbird

73) Draw5PlayAll: Move Y1 Thirdgen Port1

74) ts52: Move R2 Oscar Bigbird

75) Draw5PlayAll: Build Y1 Port1
	Draw5PlayAll: If we were on Hard Time, I would probably use the Page Admin just to freeze the timer...

76) ts52: Discover R3 Grover Y3 Zoe
	ts52: Thanks. Much appreciated. Just got back, making all my moves.

77) Draw5PlayAll: Build Y2 Draw5playall

78) ts52: Move R2 Oscar Bigbird

	Draw5PlayAll: You had the infamous Doomsday Machine, and there is no defense. Good game.
	ts52: Thanks for the game!


29784)
Started: 2016.5.19, Ended: 2016.6.1
Participants: Jaegernjos (S), doctorfedora (N)
Winner: doctorfedora

1) doctorfedora: Homeworld B1 G3 Y3

2) Jaegernjos: Homeworld B3 G1 R3
	doctorfedora: So feel free to ask if you have any questions about the rules. All commands can be abbreviated as just the first letter (e.g. I sent the command "h b1 g3 y3" for my homeworld instead of typing out "homeworld" as the command)

3) doctorfedora: Build Y1 Doctorfedora

4) Jaegernjos: B R1 Jaegernjos

5) doctorfedora: Trade Y1 G1 Doctorfedora

6) Jaegernjos: Trade R1 Y1 Jaegernjos

7) doctorfedora: Discover G1 Doctorfedora G2 Middy

8) Jaegernjos: Move R3 Jaegernjos Middy

9) doctorfedora: Build Y1 Doctorfedora

10) Jaegernjos: A G1 Middy

11) doctorfedora: Trade Y3 R3 Doctorfedora

12) Jaegernjos: B Y1 Jaegernjos

13) doctorfedora: Build Y2 Doctorfedora

14) Jaegernjos: Move Y1 Jaegernjos Middy
	Jaegernjos: What is the command for discovering a new system?  What do I put for the second system name?

15) doctorfedora: Discover Y2 Doctorfedora B2 Sidey

16) Jaegernjos: Build Y2 Jaegernjos

17) doctorfedora: Move Y2 Sidey Jaegernjos

18) Jaegernjos: Trade Y1 G1 Jaegernjos

19) doctorfedora: Trade R3 G3 Doctorfedora

20) Jaegernjos: Move R3 Middy Jaegernjos
	doctorfedora: check

21) doctorfedora: Discover Y2 Jaegernjos B2 Bluey
	doctorfedora: wait, yeah, not-check after all, duh

22) Jaegernjos: Discover G1 Middy Y1 Sideytoo
	Jaegernjos: I'm just blindly moving things around; I still don't quite have a handle on this yet, lol.  I'm starting to get a better understanding though, I think

23) doctorfedora: Trade Y2 R2 Bluey

24) Jaegernjos: Build G2 Sideytoo

25) doctorfedora: Build Y2 Doctorfedora

26) Jaegernjos: Move G2 Sideytoo Middy

27) doctorfedora: Trade R2 G2 Bluey

28) Jaegernjos: Trade G1 R1 Jaegernjos

29) doctorfedora: T Y1 R1 Doctorfedora

30) Jaegernjos: Move R1 Jaegernjos Middy

31) doctorfedora: Build R1 Doctorfedora

32) Jaegernjos: Build R2 Middy

33) doctorfedora: Trade R1 Y1 Doctorfedora

34) Jaegernjos: Build Y2 Middy

35) doctorfedora: Move Y2 Doctorfedora Bluey

36) Jaegernjos: Discover R2 Middy B1 Blueytoo

37) doctorfedora: Sacrifice G2 Bluey
Build Y3 Bluey
Build Y3 Doctorfedora

38) Jaegernjos: Sacrifice Y2 Jaegernjos
Move Y2 Middy Doctorfedora
Move Y1 Middy Doctorfedora
Catastrophe Doctorfedora Y

39) doctorfedora: Trade Y2 R2 Bluey

40) Jaegernjos: Trade R2 Y2 Blueytoo

41) doctorfedora: Sacrifice G3 Doctorfedora
Build R1 Bluey
Build R2 Bluey
Build R2 Doctorfedora

42) Jaegernjos: Sacrifice Y2 Blueytoo
Move R3 Jaegernjos Bluey
Move G2 Middy Jaegernjos
Catastrophe Bluey R

43) doctorfedora: Move Y3 Bluey Jaegernjos

44) Jaegernjos: Build R1 Middy

45) doctorfedora: Sacrifice R2 Doctorfedora
Attack G2 Jaegernjos
Pass
	doctorfedora: Clever idea, but it's still checkmate, I believe.

	Jaegernjos: Good game!


29777)
Variants: "Unrated, Sinister"
Started: 2016.5.19, Ended: 2016.6.13
Participants: Draw5PlayAll (S), Steele (N), Felix (E)
Winner: Steele

1) Steele: H B3 R1 G3

2) Felix: Homeworld G3 Y2 B3
	Felix: So how does sinister work again? You have to try to destroy the player on your left?

3) Draw5PlayAll: Homeworld B1 R2 G3 Invincible
	Felix: Have fun everyone :)
	Draw5PlayAll: Oh! My request was accepted and I get banker!
Felix, THAT is a weird home world.

So I take it that:
I must destroy Steele
Steele must destroy Felix
Felix must destroy me

And we get 4 of each piece, how nice is that.

4) Steele: B G1 Steele

5) Felix: B B1 Felix

6) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: I suppose I should get my green going before I get frozen out of blue — knowing Felix, he'll probably do just that.

7) Steele: T G1 Y1 Steele

8) Felix: Discover B1 Felix G1 Colony
	Felix: Haha I'll do my best!

9) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: I want to do a GB home world with an R3 ship, as that gets me in the weapons economy from move one. Too bad I already picked for this game

10) Steele: B Y1 Steele

11) Felix: Build B1 Colony
	Felix: That's doable, but difficult. It's generally less useful to have weapons in the early game, and it can also cause problems to have green in your homeworld. It makes it more difficult to set up the "factory" in your homeworld. I chose green in my homeworld in this game to give myself a slight handicap since I have more experience than you two.

12) Draw5PlayAll: Build G1 Draw5playall

13) Steele: D Y1 Steele G2 Alpha
	Draw5PlayAll: So is the home-world that I have (ignoring the two Constellation ships) the optimal one? Or is it better to have yellow in your world so you can move from the start?

14) Felix: Trade B1 Y1 Colony
	Felix: From my experience, the optimal starting homeworld is a small blue and medium yellow star, and a large green ship. It all comes down to preference though!

15) Draw5PlayAll: Build Y2 Draw5playall

16) Steele: B Y2 Alpha

17) Felix: Build B1 Colony

18) Draw5PlayAll: Trade Y1 R1 Draw5playall

19) Steele: Build Y1 Steele

20) Felix: Trade B1 R1 Colony

21) Draw5PlayAll: Trade G1 B1 Draw5playall

22) Steele: T Y1 R1 Steele

23) Felix: Build R2 Colony
	Draw5PlayAll: No more blue freezing, Felix!

24) Draw5PlayAll: Discover R1 Draw5playall G3 Bigwood
	Felix: That would be a lot harder to do with this many pieces in the pool!

25) Steele: Discover Y1 Alpha G1 Beta

26) Felix: Discover R2 Colony Y2 Ridgeline
	Draw5PlayAll: Sorry for stealing the planet name!

27) Draw5PlayAll: Build R2 Bigwood

28) Steele: S G3 Steele
B Y1 Alpha
B Y3 Steele
B Y3 Beta
Pass

29) Felix: Build Y3 Colony

30) Draw5PlayAll: Build Y3 Draw5playall

31) Steele: Trade Y1 B1 Steele
	Draw5PlayAll: Eek! The resources for creating movement ships are near nonexistent. We are forced to take the last share of that economy before it's too late and we freeze out of it.

32) Felix: Build B2 Felix

33) Draw5PlayAll: Move B1 Draw5playall Bigwood
	Felix: This got really hectic, really fast o.o

34) Steele: M R1 Steele Alpha
	Draw5PlayAll: Our colony on Big Wood is in slight danger of catastrophe and so we are sending a Constellation-class trading vessel over to the planet.

35) Felix: Move Y3 Colony Bigwood
	Draw5PlayAll: I did notice that all of us have *exactly* two large ships.

36) Draw5PlayAll: Sacrifice B1 Bigwood
Trade Y3 R3 Draw5playall

37) Steele: M B1 Steele Alpha

38) Felix: Sacrifice R2 Ridgeline
Attack R2S Bigwood
Attack R1S Bigwood

39) Draw5PlayAll: Discover R3 Draw5playall G3 Inflation
	Draw5PlayAll: We couldn't let you have access to our precious ships in the BigWood system. And plus, we needed a Galaxy-class ship that had phasers. We decided to use our long-range action system to suicide the small blue.

40) Steele: M B1 Alpha Beta

41) Felix: Move Y3 Bigwood Alpha
	Felix: We are a warlike race, so I'm afraid it is in our nature to capture as many enemy ships as possible. It is just the way we are... please don't hold it against us! 

42) Draw5PlayAll: Build Y1 Draw5playall

43) Steele: Build B1 Beta

44) Felix: Sacrifice B1 Colony
Trade Y3 B3 Alpha
	Draw5PlayAll: I was going to inflate my red economy, but I realized you could diplomatically send in small reds, one each, and explode my large and medium. Instead I'm interested in propulsion technology.

45) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Draw5playall
Build Y3 Draw5playall
Build Y3 Draw5playall
Catastrophe Draw5playall Yellow

46) Steele: Sacrifice Y2 Alpha
Move B1 Beta Felix
Move B1 Beta Felix
Catastrophe Felix B

	Draw5PlayAll: Interestingly enough, my guy at Inflation did NOT disintegrate.
	Felix: Oh wow - definitely did not see that. Should have been more careful. It gets hectic with 3 players. Was fun though! Let's do it again some time. And well done Steele!
	Steele: You have taught me well :)


29688)
Variants: "Hard time"
Started: 2016.5.19, Ended: 2016.5.31
Participants: Steele (S), Felix (N)
Winner: Steele

1) Felix: Homeworld G3 B2 Y3

2) Steele: H B3 R1 G3
	Felix: hello again. :) have fun!

3) Felix: Build Y1 Felix
	Steele: Anything special I should know with the "hard time" variant?
	Felix: Oh. No, that just means that if you time out (don't make a move in 10 days or whatever the cap is) then the system will make you automatically surrender. I don't really like the setting and didn't realize I had it turned on!

4) Steele: B G1 Steele
	Steele: Oh, no worries - I'll try not and make you wait 10 days between moves :)

5) Felix: Trade Y1 G1 Felix
	Felix: Haha thanks :)

6) Steele: T G1 Y1 Steele

7) Felix: B Y1 Felix

8) Steele: B G1 Steele

9) Felix: D G1 Felix B1 Element

10) Steele: B Y1 Steele

11) Felix: Build Y2 Felix

12) Steele: B Y2 Steele

13) Felix: Move Y2 Felix Element

14) Steele: S Y2 Steele
D G1 Steele B2 Temp
D G1 Temp B1 Alpha
Pass

15) Felix: Build Y2 Element

16) Steele: B G1 Alpha
	Felix: That was an interesting move. I've never seen someone jump directly to a star close to my homeworld like that. Most people build up their feet at a star closer to their own home first. I like your idea though!

17) Felix: Build G2 Element
	Steele: Seeing what happens if I put you back on your heals a bit ;)

18) Steele: D Y1 Steele G2 Beta
	Felix: I"m all for thinking out of the box and being unpredictable :)

19) Felix: Discover G2 Element G3 Investment

20) Steele: B Y2 Beta

21) Felix: Discover Y2 Element B2 Rigor

22) Steele: M Y1 Beta Alpha

23) Felix: Build Y3 Element

24) Steele: B Y3 Alpha

25) Felix: Build G2 Element

26) Steele: Sacrifice Y2 Beta
Move Y1 Alpha Felix
Move Y3 Alpha Felix
Catastrophe Felix Y

	Felix: Wow. I did not see that at all. Very well done!!! 
	Steele: My rush tactic worked this time, I don't expect it to work again in the future though... at least not against you :)


29723)
Variants: "Hard time"
Started: 2016.5.19, Ended: 2016.8.12
Participants: Felix (S), MagicJohn (W), sompm (N), dijek (E)
Winner: Felix

1) sompm: Homeworld Y1 G2 B3

2) dijek: Homeworld Y3 B1 G3

3) Felix: Homeworld R2 B3 G3
	Felix: No idea how well this will work, but have fun everyone!

4) MagicJohn: Homeworld Y1 B3 G3

5) sompm: Build B1 Sompm
	sompm: From what little experience I have; it will take us a while, but I think we knew that already. Good luck, all!
	sompm: From what little experience I have; it will take us a while, but I think we knew that already. Good luck, all!
	sompm: Hmm; that's not a new glitch.

6) dijek: Build G1 Dijek

7) Felix: B G1 Felix
	MagicJohn: Can't we all just get along?
	Felix: I don't mind a drawn out game. :)

8) MagicJohn: Build G1 Magicjohn

9) sompm: Trade B1 G1 Sompm

10) dijek: Trade G1 B1 Dijek

11) Felix: Trade G1 Y1 Felix

12) MagicJohn: Trade G1 R1 Magicjohn
	Felix: We have detected aliens out there, so we are retrofitting one of our construction vessels with a warp drive. To do so, we are forced to remove the construction facilities aboard. We hope to explore the surrounding planets soon and see if any of these other life forms are peaceful.
	MagicJohn: Aliens?? Out there?? Where??   No Way!!!  We believe/know that we are the center of the universe and all that dead space "out there" revolves around us. 

13) sompm: Build B1 Sompm

14) dijek: Build B1 Dijek
	sompm: "Sir, the meat has discovered warp drive."
"They WHAT? How do they control their ships?"
"They build pistons and variable resistors  and push them around with meat. Alternatively they use sensitive gold films and electromagnets to record and interpret their meat sounds."
"Oh dear. We told everyone there was nobody here because they wouldn't believe our stories. Are we comfortable with the introduction of meat-based life forms to the galactic community?"
"I'm not sure, sir, but we need to decide quickly or we're going to have an inefficient little Von Neumann meat farm on our hands."

15) Felix: Build Y1 Felix
	MagicJohn:    Com Officer: "Sir Magic, we have indeed intercepted communications from space, and there is some indication that there are multiple alien life forms in our sector. We must somehow protect ourselves from the alien presence and from a populace that may no longer accept our current line of dogmatic "Center of the Universe" BS. We must formulate a plan.."
   S.M.: "Contact Agent Orange."
	Felix: *Squishy meat sounds*
Translation: Sir, detecting the presence of weapons technology in a nearby sector. Suggest developing our own meat missiles to defend ourselves from threat.

16) MagicJohn: Build G1 Magicjohn

17) sompm: Discover B1 Sompm G3 Halc
	MagicJohn: Agent Orange:  "Assemble the council. Advise immediate discontinuation of clandestine population control measures that limit Trog population.... May soon need cannon fodder."

18) dijek: Build G1 Dijek
	sompm: Dateline: an untended base in an empty sector of the outer dark regions. Unregistered materialization that set the network abuzz, conspiracy theories gaining some footing today when a transformation pod made a system-leap, consuming relatively huge amounts of energy to get from one empty, worthless system to another supposedly empty, worthless system. Speculation abounds, some saying that an industry deep-scanner found an unexpected reserve of underground ice or helium atmosphere; aqueous water and resource scans had already ruled the sector out for physical exploration. Might this be good for the local economy, or will foreign exporters exploit the rim worlds again? Stay tuned to 15/3, your source for fourth-arm section-five local news. Up next: is exposure to too much cuteness bad for athletic performance? Find out after these messages.

19) Felix: Trade Y1 B1 Felix

20) MagicJohn: Build R1 Magicjohn

21) sompm: Build B2 Sompm

22) dijek: Trade B1 R1 Dijek

23) Felix: Build Y1 Felix

24) MagicJohn: Discover R1 Magicjohn Y2 Pie

25) sompm: Build G1 Sompm

26) dijek: Discover G1 Dijek Y2 Pi

27) Felix: Trade Y1 R1 Felix

28) MagicJohn: Discover R1 Pie Y3 Cookies
	MagicJohn: Sorry about yet another time delay but Sara (wife) had a TIA and we spent the weekend and Monday in the hospital.

29) sompm: Trade B2 R2 Sompm

30) dijek: Trade B1 Y1 Dijek

31) Felix: Build G1 Felix
	Felix: No worries! I don't mind a delay. I'm so sorry you had to spend the weekend in the hospital! Everyone is okay, I hope?

32) MagicJohn: Discover G1 Magicjohn Y2 Kaline

33) sompm: Discover G1 Sompm Y3 Milk

34) dijek: Build G2 Pi

35) Felix: Discover G1 Felix B1 Ouster

36) MagicJohn: Build G2 Kaline

37) sompm: Build G2 Sompm

38) dijek: Move G1 Pi Dijek

39) Felix: Build B1 Felix

40) MagicJohn: Build G2 Magicjohn

41) sompm: Build G3 Milk

42) dijek: Discover G2 Pi B3 Omicron

43) Felix: Discover B1 Felix Y1 Chance
	sompm: Gah. Forgot I was south and saw my own ship as a catastrophe threat, than didn't see the sacrifice-build-build move available. Now is not the time of sleep cycle to be making important decisions.
	dijek: Sorry, I was away from the computer for a couple of days.

44) MagicJohn: Trade G2 Y2 Magicjohn

45) sompm: Sacrifice G2 Sompm
Build B2 Sompm
Build B2 Halc

46) dijek: Build G2 Omicron

47) Felix: Build G2 Ouster

48) MagicJohn: Sacrifice G2 Kaline
Build R1 Cookies
Build G2 Kaline

49) sompm: Trade B2 Y2 Halc

50) dijek: Trade G2 B2 Omicron

51) Felix: Build G2 Felix

52) MagicJohn: Build R2 Magicjohn

53) sompm: Sacrifice G3 Milk
Build G3 Milk
Build B2 Halc
Build Y2 Halc

54) dijek: Build R2 Dijek

55) Felix: Trade G2 Y2 Ouster

56) MagicJohn: Discover G2 Kaline B3 Colavito

57) sompm: Sacrifice G3 Milk
Build G2 Sompm
Build G3 Milk
Build Y3 Halc

58) dijek: Discover Y1 Dijek B2 Krow

59) Felix: Sacrifice G3 Felix
Build Y3 Ouster
Build G3 Felix
Build B2 Chance

60) MagicJohn: Sacrifice Y2 Magicjohn
Move G2 Colavito Sompm
Move R1 Magicjohn Kaline
Catastrophe Sompm Green

61) sompm: Sacrifice Y2 Halc
Move B3 Sompm Kaline
Move G3 Milk Krow

62) Felix: Move B2 Chance Cookies

63) MagicJohn: Move G1 Kaline Dijek
	Draw5PlayAll: So many planets!

64) sompm: Move B3 Kaline Dijek
	Draw5PlayAll: Wow! That was... weird. Now we have a bunch of sleeper ships that people will want to attack, sompm is left in a horrible shape, and not a single R3 exists on the board in any form at all.

Wow.

65) Felix: Sacrifice G2 Felix
Build B3 Chance
Build G1 Felix

66) MagicJohn: Build G2 Magicjohn

67) sompm: Sacrifice R2 Sompm
Attack G3E Dijek
Attack R2E Dijek
	sompm: Eeyep. Y'all are welcome to keep me in this game for as long or as short as you want, I'll try to survive, but there's not much I can do right now that a well-placed R3 can't fix.
	Draw5PlayAll: [Comment withheld due to Prime Directive]

68) Felix: Trade Y2 R2 Ouster
	Draw5PlayAll: [Comment with help due to Prime Directive]
	Draw5PlayAll: *withheld

69) MagicJohn: Sacrifice G3 Magicjohn
Build R2 Kaline
Build R3 Magicjohn
Build G2 Magicjohn

70) sompm: Sacrifice R2 Dijek
Attack G1W Dijek
Attack Y1E Krow

71) Felix: Move B2 Cookies Sompm

72) MagicJohn: Move R2 Kaline Halc

73) sompm: Sacrifice Y2 Halc
Move Y3 Halc Sompm
Move B2 Halc Krow
	sompm: Don't mind me, just securing my ride home.

74) Felix: Trade B2 Y2 Sompm
	Draw5PlayAll: [Comment withheld due to Prime Directive]

75) MagicJohn: Sacrifice G2 Magicjohn
Build R2 Halc
Build R3 Kaline

76) sompm: Sacrifice Y3 Sompm
Move G3 Dijek Kaline
Discover B3 Dijek G2 Goodotglee8ebm
Move B3 Goodotglee8ebm Sompm

77) Felix: Sacrifice G3 Felix
Build R3 Ouster
Build R3 Felix
Build G2 Ouster

78) MagicJohn: Attack G3N Kaline
	sompm: Bah. If I had one more yellow ship outside of my home planet I could prevent the build-catastrophe by running us out of yellow, but alas, it is not to be. Thanks for the game.

79) sompm: Sacrifice G3 Krow
Build Y2 Krow
Build Y2 Krow
Build G2 Milk
	sompm: Heh.

80) Felix: Sacrifice G2 Ouster
Build Y2 Ouster
Build Y3 Sompm
	Felix: Not yet, but soon...

81) MagicJohn: Move R3 Kaline Omicron

82) sompm: Trade B3 R3 Sompm
	sompm: No? Well, nuts to this death thing, then!

83) Felix: S R2 Ouster
A R3N Sompm
A B2N Sompm

84) Felix: Pass

85) MagicJohn: Move R2 Magicjohn Krow
	Draw5PlayAll: July 21: "not a single R3 exists on the board in any form at all."
Now: All of the five R3 tokens are ships.

SO many planets!

86) Felix: Move R3 Sompm Krow
	Felix: And there it is. Sorry mate!

87) MagicJohn: Move R1 Cookies Krow
	Felix: Odd. The game gave me two turns in a row. Glitch?
	Draw5PlayAll: Eleven planets. This will be quite a conclusion. Go {[(USERNAME)]}!

88) Felix: Sacrifice R3 Ouster
Attack Y2N Krow
Attack Y2N Krow
Attack R2W Krow

89) MagicJohn: Move R1 Cookies Krow
Catastrophe Krow Red

90) Felix: Sacrifice Y3 Ouster
Move Y2 Krow Magicjohn
Move Y2 Krow Magicjohn
Move Y2 Sompm Krow

91) MagicJohn: Trade R3 Y3 Omicron

92) Felix: Move Y2 Krow Magicjohn
Catastrophe Magicjohn Yellow

93) MagicJohn: Sacrifice Y3 Omicron
Move R2 Halc Sompm
Move R2 Sompm Felix
Move R2 Halc Krow
Catastrophe Felix Red

94) Felix: Sacrifice Y3 Sompm
Move B2 Sompm Magicjohn
Move B1 Chance Magicjohn
Move B3 Chance Magicjohn
Catastrophe Magicjohn Blue

	Felix: Good game!
	MagicJohn: Felix,
Sorry about the "spite check" but I had to whack you once before I joined Spock, Scotty and Bones in the great vortex in the sky. Good Game!
	Draw5PlayAll: What vortex? Where is Kirk?
	Draw5PlayAll: And what happened to all the R3s again?
	sompm: Thanks for the game, y'all!
	Felix: John,
Quite understandable. I'd have done the same :)
	Draw5PlayAll: I believe this game was from when Felix said "Never tried a 4P game before. Who's up?" or something in the challenge description.

What did you all think of the four-player setup?
	Felix: A bit chaotic, but I enjoyed it. Definitely entertaining, but perhaps less strategic.
	Draw5PlayAll: Well, in the two 4P games I have seen, someone has time forfeited.
	sompm: It felt like it needed a bit more active politics to make a whole lot of sense. Normally in a Homeworlds game I make quite certain to be immune to whatever my opponent could do in a single turn. With three adversaries, so much can change in one round, it's not worth considering every permutation. Also, if the rest of the group wanted you gone, they might very well be able to do so before you had a turn to safeguard against it. With a little more table-talk we might get alliances and betrayals and a little more ability to make "unsafe" moves without worry.
	MagicJohn: I agree with the Sommer. Communication should probably be limited to open comments (written in the game comment window)so all would have opportunities to "negotiate" and propose alternative scenarios. I considered a number of moves in the last game that would have relied on some "help" from the next player but did not feel right about leaving "hints" in the dialogue between plays. I would like to try a more political game. I suspect that anyone that cannot stand a little well-meant betrayal should take a pass but are any of you thick-skinned commanders up for another game?
	Draw5PlayAll: I wish we had a 2v2 mode where opposite seats are partners. You can do this unofficially but it is so easy to break the alliance.
	sompm: Ooh, I would play that. We would have to use house rules, run it as an unrated game so we can declare an alternate victory than SDG will recognize. Not sure if we would want to do SW/NE or NS/WE to allow or prevent teams getting two turns in a row.
	Draw5PlayAll: I said "opposite seats", implying that teams will not get two turns in a row.

MagicJohn proposed a challenge for 4P which I entered, but I am not 100% sure about what he means by "politics". I do not want to debate about You-Know-Who and You-Know-As-Well.

We could even custom-implement Good/Evil rules as long as a fifth person monitors the game.

Partners should choose identical homeworld configurations (e.g. both goldilocks, both banker, etc). This is so they can send resources to each other more easily.

Main problem is that players 1 and 3 can gang up on player 4, and then after 4 dies, 2 is an easy target. Though maybe 2 could send extra resources and cause some catastrophes, so it evens out.

But it becomes nearly impossible to do the factory since you have TWO opponents who could each sac a Y2 and send a G1 to blow up the overpopulation.
	MagicJohn: Maybe the "rules" could be altered to forestall immediate attacks on #4.  Maybe no invasions for X number of turns...
	Draw5PlayAll: P4 can simply not connect his homeworld to the opposition and then get help from 2 in stopping the attack.

1,4 vs 2,3 seems fairer in this regard but then you have a team making 2 consecutive turns.
	MagicJohn: But after the first move both teams would move in consecutive turns..... might work?....
	Draw5PlayAll: So to recap:
1,3 vs 2,4.
Advantages: team members do not get to make 2 consecutive turns.
Disadvantages: player 4 is an easy target for attack.
1,4 vs 2,3.
Advantages: Balances number of turns.
Disadvantages: after the first move, teams get 2 turns in a row.

Honestly, I think we should have a vote. I vote for 1,3 vs 2,4.


29782)
Variants: "Unrated"
Started: 2016.5.23, Ended: 2016.6.28
Participants: haymire (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 R2 G3
	haymire: Hello mate, this is my first game of Homeworlds, I will learn as I play.
	haymire: Hello mate, this is my first game of Homeworlds, I will learn as I play.
	Felix: Welcome! I hope you have fun. I hope you learn a lot too, and don't hesitate to ask me if you have any questions!

2) haymire: Homeworld R3 B1 G3
	haymire: Having a bit of trouble with inputting my commands, errors keep popping up.
I want my Homeworld to be R3, B1, with a ship G3. What do I need to type?

3) Felix: Build G1 Felix
	Felix: Oops, sorry. It didn't notify me of your message so I didn't see it till now. Looks like you figured it out though! It can take bit of trial and error to figure out the command inputs. You can also just type the first letter of your command. So you could type "H R3 B1 G3" instead of "Homeworld R3 B1 G3." Same goes for other commands like build.
	Felix: Oops, sorry. It didn't notify me of your message so I didn't see it till now. Looks like you figured it out though! It can take bit of trial and error to figure out the command inputs. You can also just type the first letter of your command. So you could type "H R3 B1 G3" instead of "Homeworld R3 B1 G3." Same goes for other commands like build.

4) haymire: Build G1 Haymire

5) Felix: Trade G1 Y1 Felix

6) haymire: Trade G1 Y1 Haymire

7) Felix: Build G1 Felix

8) haymire: Build G1 Haymire

9) Felix: Trade G1 B1 Felix

10) haymire: Discover G1 Haymire Y2 Mt Cheese

11) Felix: Build B1 Felix

12) haymire: Build G1 Haymire
	Felix: If there's only small left of a particular color that you don't have yet, it's best to try to trade for it if possible. Otherwise it becomes more difficult to get that color. For instance, I just took the last small blue, and you have no medium ships to trade for blue currently, so you either must wait until you have a medium, or you must trade your large for blue, neither of which is an ideal situation.
	haymire: Okay, I thought the build action was any colour of a ship or the star system its at.

13) Felix: Discover B1 Felix G1 Orchid
	Felix: Ah, no. That's a mistake I made early on, too. You must actually control a ship of a color in order to build that color, I'm afraid.

14) haymire: Build G2 Haymire

15) Felix: Build B2 Orchid

16) haymire: Trade G2 B2 Haymire

17) Felix: Build G2 Felix

18) haymire: Sacrifice G3 Haymire
Build G2 Mt
Build G2 Mt
Build G3 Haymire

19) Felix: Build G3 Felix

20) haymire: Trade G3 Y3 Haymire

21) Felix: Trade G2 R2 Felix

22) haymire: Move G2 Mt Orchid

23) Felix: Move R2 Felix Orchid

24) haymire: Sacrifice Y3 Haymire
Move G2 Orchid Felix
Move G2 Mt Orchid
Move G2 Orchid Felix
Catastrophe Felix Green

25) Felix: Trade B2 Y2 Orchid

26) haymire: Build G2 Haymire

27) Felix: Move R2 Orchid Mt
	Felix: Woah. No more larges!

28) haymire: Trade G2 R2 Haymire

29) Felix: Attack G1 Mt

30) haymire: Build G2 Haymire

31) Felix: Build B2 Orchid

32) haymire: Discover G1 Haymire Y2 Cheese

33) Felix: Move B2 Orchid Mt

34) haymire: Build G2 Cheese

35) Felix: Build B2 Mt

36) haymire: Sacrifice G2 Cheese
Build Y1 Haymire
Build Y3 Haymire

37) Felix: Build Y3 Orchid

38) haymire: Sacrifice Y3 Haymire
Move Y1 Haymire Mt
Move Y1 Haymire Mt
Move G1 Cheese Orchid

39) Felix: Sacrifice Y2 Orchid
Move Y3 Orchid Mt
Move Y3 Mt Haymire

40) haymire: Sacrifice G1 Orchid
Build Y2 Mt
Catastrophe Mt Yellow

41) Felix: Build B2 Orchid
	Felix: Man, your play style is fun to play against :) Very loose and aggressive. Most players are super cautious and don't make sacrifices very often until late in the game. This is fun, but risky!

42) haymire: Build G1 Haymire

43) Felix: Trade B2 R2 Orchid

44) haymire: Trade G1 Y1 Haymire

45) Felix: Build B2 Orchid

46) haymire: Discover R2 Haymire Y2 Moonhead

47) Felix: Sacrifice R2 Orchid
Attack G2 Haymire
Attack B2 Haymire

48) haymire: Move R2 Moonhead Haymire

49) Felix: Attack R2 Haymire

50) haymire: Trade Y1 G1 Haymire

51) Felix: Attack G1 Haymire

	Felix: Good game! You had me worried for a minute. Very well played. I'd love to play again any time!
	haymire: 'ANNIHILATION OF ALL OPPOSITION' lol that's nice, it was only my first game. 
Yeah that was fun, could do a re-match.
Any advice for me to improve?
	haymire: 'ANNIHILATION OF ALL OPPOSITION' lol that's nice, it was only my first game. 
Yeah that was fun, could do a re-match.
Any advice for me to improve?
	haymire: Good game, well played
	Felix: Hmm... I'll try to provide tips as I think of them in our second game. Just try to diversify your colors as much as possible. Try not to get locked out of any color, and try not to have more than 2 of a color in any system, if possible, at least not for more than a turn and only if you know you'll be safe that turn. Also, it feels good to be aggressive and try to cause a catastrophe any time it's possible, but it can also leave you vulnerable to a counterattack, which is what happened here. Sometimes it's wiser to build up your forces first and wait to attack until you're sure you can finish the opponent off. Finally, you might have a bit more luck if you start with the "banker" formation for your home world. A small and medium of yellow and blue with a large green ship is generally considered the best starting set up for beginners.


29797)
Started: 2016.5.26, Ended: 2016.9.6
Participants: Felix (S), zakmagnus (N)
Winner: zakmagnus

1) zakmagnus: Homeworld B3 G2 Y3

2) Felix: Homeworld B1 G3 R3
	Felix: Welcome! First game?

3) zakmagnus: Build Y1 Zakmagnus

4) Felix: Build R1 Felix

5) zakmagnus: Discover Y1 Zakmagnus Y1 Submarine

6) Felix: Trade R1 Y1 Felix

7) zakmagnus: Build Y2 Zakmagnus

8) Felix: Build Y2 Felix
	zakmagnus: First online game.
	Felix: I hope you have fun. Let me know if you have any questions!

9) zakmagnus: Trade Y2 R2 Zakmagnus

10) Felix: Discover Y2 Felix G2 Rykan

11) zakmagnus: Move R2 Zakmagnus Submarine

12) Felix: Build R1 Felix

13) zakmagnus: Build Y2 Zakmagnus

14) Felix: Build Y2 Rykan

15) zakmagnus: Trade Y2 R2 Zakmagnus

16) Felix: Discover Y2 Rykan G1 Issichar

17) zakmagnus: Discover Y1 Submarine G3 Lush

18) Felix: Build Y2 Felix

19) zakmagnus: Build Y3 Zakmagnus

20) Felix: Build Y3 Issichar

21) zakmagnus: Discover Y3 Zakmagnus B1 Bill

22) Felix: Trade Y1 B1 Felix

23) zakmagnus: Trade Y3 G3 Bill

24) Felix: Build B2 Felix

25) zakmagnus: Build G1 Bill

26) Felix: Trade B2 G2 Felix

27) zakmagnus: Move Y1 Lush Bill

28) Felix: Discover G2 Felix B2 Still

29) zakmagnus: Sacrifice G3 Bill
Build G1 Bill
Build G3 Bill
Build R1 Zakmagnus

30) Felix: Build G3 Still

31) zakmagnus: Sacrifice G3 Bill
Build G3 Bill
Build Y1 Zakmagnus
Build Y3 Bill

32) Felix: Build B2 Felix

33) zakmagnus: Sacrifice Y3 Bill
Move G1 Bill Still
Move G1 Bill Still
Discover R2 Submarine B3 Thumb
Catastrophe Still Green

34) Felix: Move B1 Felix Rykan

35) zakmagnus: Build G1 Bill
	zakmagnus: build g1 bill

36) Felix: Build B2 Rykan
	zakmagnus: Sorry for the delay.
	Felix: Not a problem!

37) zakmagnus: Trade R2 G2 Thumb

38) Felix: Build B2 Felix

39) zakmagnus: Sacrifice G3 Bill
Build G1 Thumb
Build G3 Bill
Build G3 Bill

40) Felix: Build B3 Rykan

41) zakmagnus: Sacrifice G3 Bill
Build G3 Thumb
Build Y1 Bill
Build Y3 Bill

42) Felix: Move Y2 Rykan Bill
Catastrophe Bill Yellow
	Felix: Well we're overpowered :)

43) zakmagnus: Move Y1 Zakmagnus Bill

44) Felix: Build Y1 Felix

45) zakmagnus: Sacrifice G3 Bill
Build G3 Bill
Build Y1 Zakmagnus
Build Y2 Bill

46) Felix: Trade B3 Y3 Rykan

47) zakmagnus: Move Y1 Bill Thumb

48) Felix: Build B3 Rykan

49) zakmagnus: Sacrifice Y2 Bill
Move Y1 Thumb Issichar
Move Y1 Zakmagnus Issichar
Catastrophe Issichar Yellow

50) Felix: Trade R1 G1 Felix

51) zakmagnus: Trade G2 Y2 Thumb

52) Felix: Discover Y2 Felix G2 Opus

53) zakmagnus: Sacrifice G3 Bill
Build G3 Bill
Build Y1 Zakmagnus
Build Y1 Thumb

54) Felix: Build Y2 Rykan

55) zakmagnus: Sacrifice G3 Bill
Build G3 Bill
Build Y3 Zakmagnus
Build R1 Zakmagnus

56) Felix: Sacrifice Y2 Rykan
Move Y2 Opus Bill
Move Y2 Bill Zakmagnus
Catastrophe Zakmagnus Yellow

57) zakmagnus: Sacrifice Y1 Thumb
Move G3 Bill Zakmagnus

58) Felix: Build R1 Felix

59) zakmagnus: Trade R1 Y1 Zakmagnus

60) Felix: D B2 Rykan Y1 Onyx

61) zakmagnus: Sacrifice G3 Thumb
Build G2 Bill
Build G3 Thumb
Build Y2 Zakmagnus

62) Felix: Move B3 Rykan Bill

63) zakmagnus: Sacrifice G2 Bill
Build Y2 Thumb
Build Y3 Thumb

64) Felix: Build Y3 Felix

65) zakmagnus: Move G3 Thumb Onyx

66) Felix: Move B2 Onyx Rykan

67) zakmagnus: Sacrifice G1 Bill
Build G1 Onyx

68) Felix: Discover G1 Felix R2 Ledge

69) zakmagnus: Build G2 Thumb

70) Felix: Move R1 Felix Rykan

71) zakmagnus: Move R1 Zakmagnus Onyx

72) Felix: Sacrifice Y1 Felix
Discover B2 Rykan Y1 Entry

73) zakmagnus: Sacrifice G3 Onyx
Build G3 Onyx
Build R1 Zakmagnus
Build R2 Onyx

74) Felix: Build R3 Rykan

75) zakmagnus: Build R3 Zakmagnus

76) Felix: Move B2 Entry Zakmagnus

77) zakmagnus: Attack B2 Zakmagnus
	zakmagnus: This means war!

78) Felix: Sacrifice Y3 Rykan
Move B3 Bill Zakmagnus
Move B1 Rykan Onyx
Move B1 Onyx Zakmagnus
Catastrophe Zakmagnus Blue

79) zakmagnus: Move G3 Onyx Ledge
	Felix: Retaliation!

80) Felix: Sacrifice G1 Ledge
Build Y1 Felix

81) zakmagnus: Sacrifice Y2 Thumb
Move Y2 Zakmagnus Felix
Move Y1 Zakmagnus Felix
Catastrophe Felix Yellow

82) Felix: Trade B2 Y2 Felix

83) zakmagnus: Sacrifice G3 Ledge
Build G1 Zakmagnus
Build G3 Onyx
Build Y1 Thumb

84) Felix: Build R2 Felix

85) zakmagnus: Sacrifice Y2 Thumb
Move R1 Zakmagnus Felix
Move R2 Zakmagnus Felix
Catastrophe Felix Red

86) Felix: Sacrifice Y2 Felix
Move R3 Rykan Felix
Move R1 Rykan Felix

87) zakmagnus: Sacrifice Y3 Thumb
Move R1 Onyx Zakmagnus
Move R1 Zakmagnus Felix
Move R3 Zakmagnus Felix
Catastrophe Felix Red

88) Felix: Build B1 Felix
	Felix: Ooh, nicely done.

89) zakmagnus: Sacrifice Y1 Thumb
Move G3 Zakmagnus Felix

90) Felix: Build B1 Felix

91) zakmagnus: Sacrifice G2 Thumb
Build G2 Felix
Build G2 Felix
Catastrophe Felix Green
Catastrophe Felix Blue
	Felix: Nice work and good game!
	zakmagnus: Good game. You've been a brutal opponent.
	Felix: Thanks! You definitely got me fair and square. I try to play well even against newer players so you can learn, and you definitely have improved.
	Felix: If love to rematch any time



29776)
Variants: "Hard time"
Started: 2016.5.28, Ended: 2016.6.23
Participants: Draw5PlayAll (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B2 R1 G3

2) Draw5PlayAll: Homeworld B3 R2 G3
	Simon: Hi, have fun!

3) Simon: Build G1 Simon

4) Draw5PlayAll: Build G1 Draw5playall

5) Simon: Trade G1 Y1 Simon

6) Draw5PlayAll: Trade G1 B1 Draw5playall

7) Simon: Build Y1 Simon
	Draw5PlayAll: These games are too predictable at the start. I'm going to try something different this time.

As we prepared for our expedition, an announcement from a parallel universe came in. The message, when decrypted, reads:
"Learn your lesson: do not lose control of the traders economy. We failed at this and had to evacuate when an opposing alien race, whose leader was named Felix, destroyed our planet."

We're changing the Constellation ship to a trader ship for this reason.

8) Draw5PlayAll: Build B1 Draw5playall

9) Simon: Discover Y1 Simon G3 G3
	Draw5PlayAll: We have taken the risk of creating another Constellation-class trading vessel. We will need to diversify our economy before a disaster happens.

10) Draw5PlayAll: Trade B1 Y1 Draw5playall

11) Simon: Build Y2 G3

12) Draw5PlayAll: Build Y2 Draw5playall

13) Simon: Discover Y1 G3 B2 B2

14) Draw5PlayAll: Discover Y2 Draw5playall G1 Constructbase

15) Simon: Sacrifice G3 Simon
Build Y2 G3
Build Y3 B2
Build Y3 Simon

16) Draw5PlayAll: Build Y3 Constructbase

17) Simon: Trade Y1 G1 Simon
	Draw5PlayAll: Every ship you have is yellow. You should start trading them or else I will Bluebird Assault you.

18) Draw5PlayAll: Move B1 Draw5playall Constructbase

19) Simon: Trade Y1 R1 B2

20) Draw5PlayAll: Trade Y3 R3 Constructbase

21) Simon: Move Y2 G3 B2
	Draw5PlayAll: Yeah, I realized I don't need weapons. I think I'd rather own more trading vessels. I just don't like doing it at a homeworld containing blue.

22) Draw5PlayAll: Build B1 Constructbase

23) Simon: Trade Y2 G2 B2

24) Draw5PlayAll: Build G1 Draw5playall

25) Simon: Build G2 B2

26) Draw5PlayAll: Build R1 Constructbase

27) Simon: Build R2 B2

28) Draw5PlayAll: Discover B1 Constructbase G3 Thegreen

29) Simon: Move G2 B2 Thegreen

30) Draw5PlayAll: Build B1 Constructbase

31) Simon: Sacrifice R1 B2
Attack B1 Thegreen

32) Draw5PlayAll: Move G1 Draw5playall Constructbase

33) Simon: Sacrifice Y2 G3
Move G2 B2 Constructbase
Move G2 Thegreen Constructbase
Catastrophe Constructbase G

34) Draw5PlayAll: Build Y1 Draw5playall

35) Simon: Build B1 Thegreen

36) Draw5PlayAll: Discover Y1 Draw5playall G1 Constructbase2
	Draw5PlayAll: What the... wow. That was a sweeping change.I think I'm going to attempt to cover the most important economy.

37) Simon: Trade B1 Y1 Thegreen
	Simon: yeah >_> Other than for this, you had a rock-solid position.

38) Draw5PlayAll: Build Y2 Constructbase2

39) Simon: Build Y2 Thegreen

40) Draw5PlayAll: Build G1 Draw5playall

41) Simon: Build G2 Simon
	Draw5PlayAll: You're allowed to just demolish a ship, right? Sacrifice it and pass...
	Simon: Yeah. Everything is optional. You can pass the regular one action, or sac a ship and pass all actions.

42) Draw5PlayAll: Discover Y2 Constructbase2 B3 Bigocean

43) Simon: Sacrifice G2 Simon
Build Y2 Thegreen
Build Y3 B2

44) Draw5PlayAll: Move Y1 Constructbase2 Thegreen
Catastrophe Thegreen Yellow

45) Simon: Trade Y3 G3 B2

46) Draw5PlayAll: Discover G1 Draw5playall R1 Lavaflow

47) Simon: Build R1 B2
	Draw5PlayAll: Revenge!!

48) Draw5PlayAll: Trade Y2 G2 Bigocean

49) Simon: Discover R2 B2 G1 G1

50) Draw5PlayAll: Build G2 Bigocean

51) Simon: Build G2 B2

52) Draw5PlayAll: Trade G2 Y2 Bigocean

53) Simon: Sacrifice G3 B2
Build R2 G1
Build R3 G1
Build R3 B2

54) Draw5PlayAll: Build G2 Lavaflow

55) Simon: Sacrifice Y3 Simon
Move Y3 B2 G1
Move Y3 G1 Draw5playall
Move R3 G1 Draw5playall

56) Draw5PlayAll: Attack R3N Draw5playall

57) Simon: Sacrifice R3 B2
Attack R3 Draw5playall
Attack G3 Draw5playall
Attack Y1 Draw5playall

	Simon: wil has called this you-take-one-I-take-three. Nonetheless, a solid opening. gg, always happy to rematch.
	Draw5PlayAll: I could have delayed defeat by moving my guys from LavaFlow into Draw5PlayAll but it was pointless.

This is my (I think) 4th 1v1 game I have finished, and my 4th loss.
	Draw5PlayAll: I wonder something.
Suppose we were fighting and you had no other reds, and we kept going back and forth attacking the ships for eternity.
I would likely rule the ship in question destroyed, and force one player to evacuate the star. Or let it be a draw. Of course, this requires both people to not have any better moves.
	Simon: The game lacks a ko rule, you can repeat positions as often as you want. I consider this a hole in the rules. The implementation here doesn't recognize repetition, we'd have to notify an admin.

Surprisingly, I haven't had a game with repetition yet. They feel like they come up often, but happen rarely in practice.

Teach the game to a friend in real life!
	Draw5PlayAll: Although if both players agreed they had nothing better then they could agree to a draw. It is no different from perpetual check in Earth Chess, except that Earth Chess has rules for that sort of thing.


29836)
Variants: "Unrated"
Started: 2016.5.29, Ended: 2016.6.17
Participants: Draw5PlayAll (S), Steele (N)
Winner: Steele

1) Steele: H B2 G1 Y3

2) Draw5PlayAll: Homeworld R2 B3 G3

3) Steele: B Y1 Steele

4) Draw5PlayAll: Build G1 Draw5playall

5) Steele: B Y1 Steele

6) Draw5PlayAll: Trade G1 B1 Draw5playall

7) Steele: Trade Y1 G1 Steele
	Draw5PlayAll: As we had no need for too much construction, we decided to trade the construction capabilities in our Constellation ship for more trading abilities.

8) Draw5PlayAll: Build B1 Draw5playall
	Draw5PlayAll: Welp, I think I'm safe for now. I'm going to continue building Constellation-class trading vessels.

--

I have terminology for ships:
Small = Constellation class
Medium = Ambassador class
Large = Galaxy class

9) Steele: Discover Y1 Steele G3 Alpha
	Steele: I like it.

10) Draw5PlayAll: Trade B1 R1 Draw5playall

11) Steele: B Y1 Alpha
	Draw5PlayAll: We decided that it would be best to proceed to control all economies before embarking on a journey.

12) Draw5PlayAll: Build R1 Draw5playall

13) Steele: Trade G1 R1 Steele

14) Draw5PlayAll: Build G1 Draw5playall

15) Steele: Build R2 Steele

16) Draw5PlayAll: Trade R1 Y1 Draw5playall

17) Steele: T R1 B1 Steele

18) Draw5PlayAll: Build Y2 Draw5playall

19) Steele: Move B1 Steele Alpha

20) Draw5PlayAll: Discover B1 Draw5playall G1 Littlewood

21) Steele: B Y2 Steele

22) Draw5PlayAll: Build G2 Draw5playall

23) Steele: T Y1 R1 Alpha

24) Draw5PlayAll: Discover G2 Draw5playall B1 Traderpool

25) Steele: B R1 Alpha

26) Draw5PlayAll: Build G2 Traderpool

27) Steele: Discover R1 Alpha Y1 Beta

28) Draw5PlayAll: Build B2 Littlewood

29) Steele: B R2 Alpha
	Draw5PlayAll: The next system I discover in this game will be called Fluxx, no matter what star it is.

30) Draw5PlayAll: Move R1 Draw5playall Littlewood

31) Steele: T R2 G2 Alpha

32) Draw5PlayAll: Build R2 Littlewood

33) Steele: B R3 Alpha

34) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover R2 Littlewood G3 Fluxx

35) Steele: Move G2 Alpha Beta
	Draw5PlayAll: I did that for a reason — not just to have one with that name.

36) Draw5PlayAll: Build R3 Fluxx

37) Steele: B R3 Beta

38) Draw5PlayAll: Trade B2 Y2 Littlewood

39) Steele: Move R3 Alpha Traderpool
	Draw5PlayAll: You CAN destroy my red home star in two moves... but you'd have to give up your LARGE yellow to do it.
	Draw5PlayAll: Oh, and your large RED! Is it really worth it?

By the way, I refuse to move in our me-you-Felix game because you're just going to win.

40) Draw5PlayAll: Sacrifice Y2 Littlewood
Discover G2 Traderpool Y3 Port1
Discover G2 Traderpool Y3 Port2
	Steele: Nah - going for your red star doesn't really help just yet.  Soon though :)

41) Steele: B B2 Alpha
	Draw5PlayAll: No. You are not taking my Ambassador-class construction vessels from me!!

42) Draw5PlayAll: Sacrifice G1 Draw5playall
Build G1 Port2

43) Steele: Move B1 Alpha Beta
	Draw5PlayAll: Green Teleportation!
	Steele: Take your turn in the other game.

44) Draw5PlayAll: Build Y1 Draw5playall

45) Steele: Sacrifice G2 Beta
Build Y2 Alpha
Build B2 Beta
Pass

46) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move G1 Port2 Steele
Move G2 Port2 Steele

47) Steele: S Y2 Alpha
M B2 Alpha Beta
M B2 Beta Draw5playall
Pass
	Draw5PlayAll: Looks like I got the first strike

48) Draw5PlayAll: Build G2 Steele
Catastrophe Steele Green

49) Steele: S Y2 Steele
M B2 Beta Draw5playall
M B1 Beta Draw5playall
C Draw5playall B
	Draw5PlayAll: Since you made no effort to clear the attackers and they were green, they decided to build a new ship to cause the catastrophe.

However, it appears that you will win by a one-move margin. The only way I could stop you is to hammer you with reds but I'd need 2-3 turns to do anything useful.

50) Draw5PlayAll: Build Y2 Draw5playall
	Steele: Yeah - my green star had to be sacrificed in order to follow through with my original plan.  Good game though!

51) Steele: S Y3 Steele
Move R1 Beta Draw5playall
Move R3 Beta Draw5playall
Move R3 Traderpool Draw5playall
C Draw5playall R
	Draw5PlayAll: Good game! I somehow always end up moves behind my opponents. Like, if given just a few more moves, I could win.



29834)
Variants: "Hard time"
Started: 2016.5.31, Ended: 2016.6.21
Participants: Simon (S), zeder (N)
Winner: Simon

1) zeder: Homeworld G3 B1 Y3

2) Simon: Homeworld B2 R1 G3
	Simon: Hi, have fun!

3) zeder: Build Y1 Zeder

4) Simon: Build G1 Simon

5) zeder: Trade Y1 G1 Zeder

6) Simon: Trade G1 B1 Simon

7) zeder: Trade Y3 B3 Zeder

8) Simon: Build G1 Simon

9) zeder: Trade G1 Y1 Zeder

10) Simon: Trade G1 Y1 Simon

11) zeder: Build Y1 Zeder
	zeder: I am already feelings uncomfortable. :(

12) Simon: Build Y2 Simon

13) zeder: Build Y2 Zeder
	Simon: Slow openings are normal in non-yellow homeworlds

14) Simon: Discover Y2 Simon G3 G3
	zeder: This game am so confusing!

15) zeder: Trade Y1 G1 Zeder

16) Simon: Move B1 Simon G3

17) zeder: Discover Y1 Zeder G2 Aaa

18) Simon: Build G1 Simon

19) zeder: Trade G1 R1 Zeder

20) Simon: Build B1 G3



29809)
Variants: "Unrated"
Started: 2016.6.1, Ended: 2016.7.6
Participants: Felix (S), AcetyleneLamp (N)
Winner: Felix

1) AcetyleneLamp: Homeworld B1 Y2 G3
	AcetyleneLamp: I can't get the names of the systems to show up.

2) Felix: Homeworld B3 Y2 G3
	AcetyleneLamp: Nevermind
	Felix: It takes some figuring out. The language for submitting orders is a bit finicky, but just play around and you'll get it. Is this your first game? Hope you have fun and let me know if you have questions!

3) AcetyleneLamp: Build G1 Acetylenelamp
	AcetyleneLamp: I attempted to play this before and asked for some help in figuring it out and I had to just give up because I never got a reply (The one time I attempted to play Zendo went similarly as well). I decided to give this another chance after watching the video about how to play Homeworlds that Looney Labs put on YouTube and that cleared up things a little.

4) Felix: Build G1 Felix
	AcetyleneLamp: I'm hoping the new version of SDG that's in the works will have a less fiddly/confusing input system for games, I think that would improve this site a lot.
	Felix: I hope so too! And sorry you never got a response before. I'm happy to help you figure the game out, since it's really a great game! You're off to a great start with your choice of piece sizes and colors. In my opinion, the homeworld colors/sizes and the large green ship you have are the best starting combination.
	Felix: When you're entering orders, it helps to abbreviate the words. Rather than saying "built g1 felix" I just type "b g1 felix" and the system will take that. Each command can be shortened to its first letter like that. The names of systems must be typed out fully though.

5) AcetyleneLamp: Trade G1 Y1 Acetylenelamp

6) Felix: Trade G1 B1 Felix

7) AcetyleneLamp: Discover Y1 Acetylenelamp R3 Giedi_prime

8) Felix: Discover B1 Felix G1 Rygar

9) AcetyleneLamp: Build G1 Acetylenelamp

10) Felix: Build G1 Felix

11) AcetyleneLamp: Move G1 Acetylenelamp Giedi_prime

12) Felix: Build B1 Rygar

13) AcetyleneLamp: Build G2 Acetylenelamp

14) Felix: Build B2 Rygar

15) AcetyleneLamp: Trade G2 R2 Acetylenelamp

16) Felix: Trade B2 R2 Rygar

17) AcetyleneLamp: Build R1 Acetylenelamp

18) Felix: Build B2 Rygar

19) AcetyleneLamp: Move R1 Acetylenelamp Giedi_prime

20) Felix: Trade B2 Y2 Rygar

21) AcetyleneLamp: Build G2 Acetylenelamp

22) Felix: Build B2 Rygar

23) AcetyleneLamp: Trade G2 B2 Acetylenelamp

24) Felix: Discover B2 Rygar G3 Rappa

25) AcetyleneLamp: Move R2 Acetylenelamp Rappa

26) Felix: Sacrifice R2 Rygar
Attack R2 Rappa
Pass

27) AcetyleneLamp: Build B2 Acetylenelamp

28) Felix: Build B3 Rappa

29) AcetyleneLamp: Trade B2 R2 Acetylenelamp

30) Felix: Trade B3 Y3 Rappa

31) AcetyleneLamp: Discover Y1 Giedi_prime B2 Corneria

32) Felix: Build B3 Rappa

33) AcetyleneLamp: Build B3 Acetylenelamp

34) Felix: Move B2 Rappa Acetylenelamp
Catastrophe Acetylenelamp Blue

35) AcetyleneLamp: Build G2 Acetylenelamp

36) Felix: Build Y1 Rygar
	Felix: Oopsie. Watch out for that overpopulation threat!
	AcetyleneLamp: I'm confused as to how that happened, I thought it had to be four or more pieces of the same color in one system for a catastrophe.
	AcetyleneLamp: Oh, wait, you moved a blue ship in and caused it.

37) AcetyleneLamp: Build G2 Giedi_prime
	Felix: Yeah. Any time you build three ships of the same color in a system, you should make sure that there's no way your opponent can get a fourth ship in there to cause a catastrophe.

38) Felix: Build Y1 Rappa

39) AcetyleneLamp: Move Y1 Corneria Giedi_prime

40) Felix: Sacrifice Y3 Rappa
Move Y1 Rappa Acetylenelamp
Move Y2 Rygar Acetylenelamp
Move Y1 Rygar Acetylenelamp
Catastrophe Acetylenelamp Yellow

	Felix: Good game! I hope you had fun and learned some things. I'd be happy to rematch any time you want to!


29863)
Started: 2016.6.6, Ended: 2016.6.21
Participants: Steele (S), ladybugsfly (N)
Winner: Steele

1) ladybugsfly: H R2 G1 B3

2) Steele: Homeworld Y3 B2 G3

3) ladybugsfly: B B1 Ladybugsfly

4) Steele: Build G1 Steele
	ladybugsfly: I won't admit how long it took me to realize my home system's name was my username. 0:-)

5) ladybugsfly: Build B1 Ladybugsfly
	Steele: lol - I love you <3

6) Steele: Build G1 Steele

7) ladybugsfly: Trade B1 Y1 Ladybugsfly

8) Steele: Discover G1 Steele Y1 Yourecute

9) ladybugsfly: Discover B1 Ladybugsfly G3 Loveyoutoo
	ladybugsfly: d b1 ladybugsfly g3 loveyoutoo
	ladybugsfly: Haha, whoops! Wrong box.

10) Steele: B G2 Yourecute

11) ladybugsfly: Discover Y1 Ladybugsfly G3 Shouldbeworking

12) Steele: Sacrifice G3 Steele
Build G2 Steele
Build G2 Yourecute
Build G3 Steele
Pass

13) ladybugsfly: Build Y1 Shouldbeworking

14) Steele: Discover G2 Yourecute Y3 Kisses

15) ladybugsfly: Build Y2 Shouldbeworking

16) Steele: T G1 B1 Steele

17) ladybugsfly: Move Y1 Shouldbeworking Yourecute

18) Steele: Trade B1 R1 Steele

19) ladybugsfly: Sacrifice Y1 Yourecute
Discover B1 Loveyoutoo G1 Happy

20) Steele: T G2 B2 Steele

21) ladybugsfly: Build B1 Happy

22) Steele: M B2 Steele Yourecute

23) ladybugsfly: Build B1 Happy

24) Steele: T G1 Y1 Yourecute

25) ladybugsfly: Trade B1 R1 Happy

26) Steele: B G1 Yourecute

27) ladybugsfly: Move Y1 Shouldbeworking Yourecute

28) Steele: D Y1 Yourecute G3 Nicetry

29) ladybugsfly: Sacrifice R1 Happy
Attack G1S Yourecute
Pass

30) Steele: M B2 Yourecute Kisses

31) ladybugsfly: Sacrifice Y2 Shouldbeworking
Move B1 Happy Steele
Move B1 Happy Steele
Pass

32) Steele: Sacrifice G2 Kisses
Build Y2 Nicetry
Build R1 Steele
Pass

33) ladybugsfly: Sacrifice G1 Yourecute
Build B1 Steele
Catastrophe Steele B

34) Steele: B R1 Steele

35) ladybugsfly: Build B1 Ladybugsfly

36) Steele: S Y2 Nicetry
Move R1 Steele Ladybugsfly
Move R1 Steele Ladybugsfly
Pass

37) ladybugsfly: Discover Y1 Yourecute G2 Runforestrun

38) Steele: S B2 Kisses
T R1 B1 Ladybugsfly
T R1 B1 Ladybugsfly
C Ladybugsfly B

	Steele: Even though I'm going to destroy all your ships, just know I love you still and you are always welcome to ride around on my ships <3


29870)
Variants: "Hard time"
Started: 2016.6.8, Ended: 2016.8.7
Participants: sompm (S), Remneb (N)
Winner: sompm

1) Remneb: Homeworld R1 B2 G3

2) sompm: Homeworld Y3 B1 G3

3) Remneb: Build G1 Remneb

4) sompm: Build G1 Sompm

5) Remneb: Trade G1 Y1 Remneb

6) sompm: Trade G1 Y1 Sompm

7) Remneb: Build G1 Remneb

8) sompm: Discover Y1 Sompm G2 Fruitbat

9) Remneb: Discover G1 Remneb Y3 Ninbo

10) sompm: Build G1 Sompm

11) Remneb: Discover G1 Ninbo Y2 Alba

12) sompm: Trade G1 R1 Sompm

13) Remneb: Build G1 Remneb

14) sompm: Build R1 Sompm

15) Remneb: Build Y1 Remneb

16) sompm: Build Y2 Fruitbat

17) Remneb: Discover Y1 Remneb G3 Mora

18) sompm: Discover Y1 Fruitbat B3 Jesse

19) Remneb: Sacrifice G3 Remneb
Build Y2 Mora
Build Y3 Remneb
Build G1 Remneb

20) sompm:
Build G2 Sompm

21) Remneb: Discover G1 Remneb Y3 Harum

22) sompm: Discover G2 Sompm B2 Nodule

23) Remneb: Discover Y2 Mora R2 Orion

24) sompm: Move R1 Sompm Alba

25) Remneb: Move G1 Alba Jesse

26) sompm: Sacrifice R1 Alba
Attack G1 Jesse

27) Remneb: Build Y2 Mora

28) sompm: Sacrifice G3 Sompm
Build G2 Nodule
Build G3 Jesse
Build R1 Sompm

29) Remneb: Build G3 Harum

30) sompm: Sacrifice Y2 Fruitbat
Move G3 Jesse Orion
Move G2 Nodule Harum

31) Remneb: Sacrifice Y2 Orion
Move G3 Harum Orion
Move G3 Orion Sompm

32) sompm: Sacrifice Y1 Jesse
Move G3 Orion Sompm

33) Remneb: Move G3 Sompm Nodule

34) sompm: Build G2 Sompm

35) Remneb: Trade G3 R3 Nodule

36) sompm: Sacrifice G2 Nodule
Build G2 Harum
Build G3 Jesse

37) Remneb: Sacrifice Y1 Mora
Move R3 Nodule Harum

38) sompm: Discover R1 Sompm Y2 Disco

39) Remneb: Attack G2 Harum

40) sompm: Sacrifice G2 Sompm
Build G2 Harum
Build R2 Disco
Catastrophe Harum G

41) Remneb: Build G1 Remneb

42) sompm: Discover R2 Disco B3 Ranch

43) Remneb: Move G1 Remneb Mora

44) sompm: Build G2 Sompm

45) Remneb: Build G2 Remneb

46) sompm: Sacrifice G2 Sompm
Build G2 Sompm
Build R2 Ranch

47) Remneb: Move G1 Remneb Harum

48) sompm: Trade G1 Y1 Jesse

49) Remneb: Build G1 Remneb

50) sompm: Sacrifice G3 Sompm
Build G2 Jesse
Build Y1 Jesse
Build G3 Sompm

51) Remneb: Build Y2 Mora

52) sompm: Move R1 Disco Mora

53) Remneb: Discover G1 Mora Y2 Zek

54) sompm: Build R2 Mora

55) Remneb: Sacrifice Y3 Remneb
Move G1 Harum Zek
Move G1 Zek Sompm
Move G1 Zek Sompm
Catastrophe Sompm G

56) sompm: Sacrifice G2 Jesse
Build R3 Sompm
Build R3 Mora

57) Remneb: Sacrifice Y2 Mora
Move R3 Harum Remneb
Move Y2 Mora Remneb

58) sompm: Sacrifice Y1 Jesse
Move R2 Mora Remneb

59) Remneb: Trade R3 B3 Remneb

60) sompm: Sacrifice R3 Mora
Attack G2N Remneb
Attack G1N Remneb
Attack Y2N Remneb

61) Remneb: Attack R2 Remneb

62) sompm: Sacrifice Y2 Remneb
Move R1 Mora Remneb
Move R2 Ranch Remneb
Catastrophe Remneb R

63) Remneb: Trade B3 R3 Remneb

64) sompm: Sacrifice G2 Remneb
Build G1 Remneb
Build Y1 Jesse

65) Remneb: Attack G1 Remneb

66) sompm: Build G1 Remneb

67) Remneb: Attack G1 Remneb

68) sompm: Build G2 Remneb
Catastrophe Remneb G

69) Remneb: Trade Y1 G1 Remneb

70) sompm: Trade Y1 B1 Jesse

71) Remneb: Build G1 Remneb
	sompm: This is definitely one of the more feel-bad moments in this game, but it's a one-step hop from you to me now and my home planet is not exactly diverse at the moment.

72) sompm: Build B1 Jesse
	Remneb: It is a difficult part in the game. I really don't know what to do in my position.Try to survive is my only task here.

73) Remneb: Trade G1 Y1 Remneb
	sompm: In other games, this would be the part where I really sit back and consider the possibilities in depth and try to really leverage my advantage as hard as possible. Unfortunately, my brain just can't seem to hold all the options at once to go any further than one or two turns deep. I'm pretty sure I have one of two or three primary paths to take and make sure that you don't counter them or sneak an attack while I'm winding up, but man do I not know what that should look like.

74) sompm: Trade R2 B2 Ranch

75) Remneb: Build G1 Remneb

76) sompm: Trade R3 Y3 Sompm

	sompm: Whoops! That would have been a lethal typo. Anyhow, thanks for the game!
	Remneb: Thanks for the game.


29769)
Started: 2016.6.10, Ended: 2016.6.10
Participants: Vilci (S), Draw5PlayAll (N)
Winner: Draw5PlayAll



29884)
Variants: "Hard time"
Started: 2016.6.12, Ended: 2016.7.19
Participants: endo (S), Simon (N)
Winner: endo

1) Simon: Homeworld B1 Y2 G3
	Simon: have fun!

2) endo: Homeworld Y1 B3 G3

3) Simon: Build G1 Simon
	endo: Glhf!

4) endo: Build G1 Endo

5) Simon: Trade G1 B1 Simon

6) endo: Trade G1 Y1 Endo

7) Simon: Build B1 Simon

8) endo: Build Y1 Endo

9) Simon: Discover B1 Simon G3 G3

10) endo: Discover Y1 Endo Y2 Measure

11) Simon: Build B2 Simon

12) endo: Build Y2 Endo

13) Simon: Discover B2 Simon Y3 Y3

14) endo: Discover Y1 Endo G2 Topology

15) Simon: Build B2 G3

16) endo: Build Y3 Endo

17) Simon: Sacrifice G3 Simon
Build B2 Y3
Build B3 Y3
Build B3 Simon

18) endo: Trade Y3 R3 Endo

19) Simon: Trade B3 R3 Y3

20) endo: Sacrifice G3 Endo
Build Y3 Measure
Build Y3 Topology
Build R1 Endo

21) Simon: Build B3 G3

22) endo: Trade R3 G3 Endo

23) Simon: Trade B3 G3 Simon

24) endo: Discover Y3 Topology B3 Matroid

25) Simon: Build G1 Simon

26) endo: Build R1 Endo

27) Simon: Trade B2 R2 G3

28) endo: Move R1 Endo Measure

29) Simon: Build B2 G3

30) endo: Build R1 Endo

31) Simon: Move G1 Simon Y3

32) endo: Build G1 Endo

33) Simon: Build G1 Simon

34) endo: Discover R1 Endo R2 Manifold

35) Simon: Build G2 Y3

36) endo: Sacrifice G3 Endo
Build R2 Endo
Build R3 Endo
Build R3 Measure

37) Simon: Move G2 Y3 Manifold

38) endo: Discover Y1 Measure G3 Filter

39) Simon: Build G2 Y3

40) endo: Move Y3 Measure Filter

41) Simon: Attack R1 Manifold

42) endo: Move Y3 Filter Manifold

43) Simon: Move G2 Y3 Topology

44) endo: Sacrifice R2 Endo
Attack G2 Manifold
Attack R1 Manifold

45) Simon: Sacrifice R2 G3
Attack Y1 Topology
Pass

46) endo: Move Y3 Matroid Simon

	Simon: gg


29770)
Variants: "Unrated"
Started: 2016.6.15, Ended: 2016.6.19
Participants: Skully (S), wil (N)
Winner: Skully

	Skully: Well this sucked! Thanx alot will! 

	Skully: Well this sucked! Thanx alot will! 



29902)
Started: 2016.6.19, Ended: 2016.11.11
Participants: Felix (S), Skully (N)
Winner: Felix

1) Skully: Homeworld Y3 G2 B3

2) Felix: Homeworld R1 G3 Y3 *

3) Skully: Build B1in Skully
	Felix: Hey there! First game? Hope you have fun and let me know if you have questions!

4) Felix: Build Y1 Felix
	Skully: Oh hey. It actually is my first game. Hopefully i wont make it to easy for ya :)  
	Skully: To be sure, the only way to get the bigger size ships is if there arent any smaller ones left, correct?
	Felix: Hey, no worries. I'm happy to help you learn the game, but I won't take it TOO easy on you. The best way to learn is to make mistakes against a better player. That's how I learned and am still learning!

And yep, you're right. You cannot build a bigger ship until the smaller ones are all used up. You also can ONLY build a ship of a color you already own in that system. You cannot use the star's color(s) when doing this, but you can only use a ship color you already own. For instance, I can ONLY build yellow in my home system right now, not green or red until I trade for one of those colors (but I have no blue, so that will be tricky!)

5) Skully: Trade B1 R1 Skully

6) Felix: Discover Y1 Felix B2 Rim
	Skully: Ok great thanx for the clarafication. I would preffer if you didnt hold back at all hehe. 
	Felix: Then I won't! :)

7) Skully: Discover R1 Skully Y1 Evil

8) Felix: Build Y1 Felix

9) Skully: Build B1 Skully

10) Felix: Move Y1 Felix Rim

11) Skully: Move R1 Evil Rim

12) Felix: Discover Y1 Rim G1 Escape

13) Skully: Attack Y1 Rim

14) Felix: Build Y1 Escape

15) Skully: Trade B1 R1 Skully
	Felix: Man, I'm already in a dire position!

16) Felix: Build Y2 Felix
	Skully: I dont think its too dire

17) Skully: Build R2 Skully

18) Felix: Move Y2 Felix Rim

19) Skully: Move R2 Skully Escape
	Felix: I just need to try to get a blue ships somehow

	Skully: Haha yeah  i know tryed to stop you but cant now.  Well played. I had heard the majority of players use blue and red as thier stars. Or atleast have blue and red in the mix between ship and stars. I personally hate when people implament a metta,  so i sat down and came up wit my combo to use against the Meta. To my suprise i find your combo, is this an experamentle  game for you?

20) Felix: Trade Y2 R2 Rim
	Felix: Interesting. Yes, some top players incorporate red and blue into their home stars. My preference is usually to use a yellow and blue star with a green starting ship. Yeah, this is a bit of an experimental game for me. I'd be happy to try another with my traditional starting colors, though!

21) Skully: Attack Y1 Escape

22) Felix: Attack R1 Rim

23) Skully: Discover Y1 Rim G3 Factory

24) Felix: Move Y1 Escape Rim
	Skully: I'd be happy to accept that challange once this match is over. Im glad to see that in my very first Home World match im playing against a non meta player. I have the feeling that we'll  be playing against each other many times. :)
	Felix: Sounds good to me! I have a few games under my belt, so I know some things, but I am definitely not a meta player haha. I'd rather have fun than crush everyone around me :P

25) Skully: Discover Y1 Escape R2 War

26) Felix: Trade R1 B1 Rim

27) Skully: Build R1 Skully

28) Felix: Trade B1 G1 Rim

29) Skully: Move Y1 War Escape

30) Felix: Build Y2 Rim

31) Skully: Move Y1 Factory Rim

32) Felix: Trade Y1 B1 Rim

33) Skully: Discover Y1 Rim B3 Eye

34) Felix: Move B1 Rim Felix

35) Skully: Trade Y1 G1 Eye
	Felix: Finally got a blue to my homeworld!

36) Felix: Build G2 Rim
	Skully: Hehe yeah, cant say im happy for you :p

37) Skully:
Build G2 Eye

38) Felix: Discover G2 Rim B1 Scyther

39) Skully: Trade G1 Y1 Eye
	Skully: pokemon? stuck on go huh? :D

40) Felix: B G1 Scyther
	Felix: You caught me :p it's a real problem...

41) Skully: Build G3 Eye

42) Felix: Build G3 Rim

43) Skully: Trade G3 R3 Eye

44) Felix: Trade G1 Y1 Scyther

45) Skully: Move R3 Eye Scyther

46) Felix: S Y1 Scyther
D G2 Scyther Y3 Ekans

47) Skully: Sacrifice G2 Eye
Build R2 Scyther
Build R3 Escape

48) Felix: Build R3 Rim

49) Skully: Move Y1 Eye Scyther

50) Felix: Discover G1 Rim B1 Oddish

51) Skully: Build B2 Skully

52) Felix: Build G1 Ekans

53) Skully: Trade B2 Y2 Skully

54) Felix: Sacrifice G3 Rim
Build G2 Oddish
Build G3 Oddish
Build G3 Ekans

55) Skully: Sacrifice Y2 Skully
Move R2 Scyther Rim
Move R2 Escape Rim
Catastrophe Rim R

56) Felix: Trade G3 R3 Oddish

57) Skully: Move R3 Scyther Ekans

58) Felix: Sacrifice R3 Oddish
Attack R3 Ekans
Pass
Pass

59) Skully: Move R1 Skully Scyther
	Skully: Wow very well played. Didnt see that one.

60) Felix: Build G3 Oddish
	Felix: Thank you! I learned the hard way about that move myself once upon a time. It's easy to overlook the ability to sacrifice a red and attack in another system. Definitely something to watch out for!

61) Skully: Move R3 Escape Rim

62) Felix: Move Y2 Rim Oddish

63) Skully: Build B2 Skully

64) Felix: Trade G3 B3 Oddish

65) Skully: Trade B3 G3 Skully

66) Felix: Sacrifice Y3 Felix
Move G1 Oddish Skully
Move G2 Oddish Skully
Move B3 Oddish Skully
Catastrophe Skully Green

	Skully: Hmmmm quite a bind you have me in. I thinck its safe to say I lost this one. GG. 
	Felix: I think you're right. But really, great game! Very well done! You played well.


29921)
Variants: "Hard time"
Started: 2016.6.21, Ended: 2016.6.27
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld Y1 B2 G3

2) dlwillson: H B3 R1 G3
	Felix: Hey, have fun and good luck!
	dlwillson: Sorry for fumbling your challenge! I wad clicking too quick and I missed the correct click. But, now we're playing! :-) You have fun, too, and thanks for the game!

	dlwillson: s/wad/was/

3) Felix: Build G1 Felix
	Felix: No worries, Thanks for accepting the challenge!


4) dlwillson: B G1 Dlwillson

5) Felix: Trade G1 Y1 Felix

6) dlwillson: T G1 Y1 Dlwillson

7) Felix: Build Y2 Felix

8) dlwillson: B Y2 Dlwillson

9) Felix: Discover Y2 Felix G3 Opus

10) dlwillson: D Y1 Dlwillson B2 Sky

11) Felix: Trade Y1 B1 Felix

12) dlwillson: B G1 Dlwillson

13) Felix: Move B1 Felix Opus

14) dlwillson: Move G1 Dlwillson Sky

15) Felix: Build B1 Opus

16) dlwillson: Build Y1 Sky

17) Felix: Discover B1 Opus G2 Magnum

18) dlwillson: D Y1 Sky Y3 Sol

19) Felix: Build B1 Opus

20) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Sky
Build Y3 Dlwillson
Build Y3 Dlwillson

21) Felix: B B2 Opus

22) dlwillson: T Y3 R3 Dlwillson

23) Felix: Build Y3 Opus

24) dlwillson: Sacrifice Y3 Dlwillson
Move R3 Dlwillson Sky
Move R3 Sky Sol
Move R3 Sol Felix

25) Felix: Sacrifice Y3 Opus
Move Y2 Opus Magnum
Move Y2 Magnum Dlwillson
Move B2 Opus Felix
	Felix: Well dang, that was fast. I definitely made a mistake last turn!

26) dlwillson: A Y2 Dlwillson

27) Felix: Build B3 Felix
	dlwillson: Took me that long to remember I could do that... :-)

28) dlwillson: A G3 Felix

29) Felix: Trade B1 R1 Opus

30) dlwillson: S R3 Felix
A B3 Felix
A B2 Felix
Pass
	Felix: Well done! You knocked me out fast. I definitely messed up by not building a red when you did.
	dlwillson: Thanks for the game!



29780)
Started: 2016.6.21, Ended: 2016.7.25
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld Y1 B2 G3

2) Felix: Homeworld B1 Y3 G3

3) ts52: Build G1 Ts52

4) Felix: Build G1 Felix

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: B B2 Ts52

8) Felix: Build B2 Felix

9) ts52: D B2 Ts52 G3 Kermit

10) Felix: Trade B2 Y2 Felix

11) ts52: Build G1 Ts52

12) Felix: Discover B1 Felix G2 Grass

13) ts52: Trade G1 Y1 Ts52

14) Felix: Build G1 Felix

15) ts52: Build G1 Ts52

16) Felix: Build Y1 Felix

17) ts52: Move Y1 Ts52 Kermit

18) Felix: Trade Y2 R2 Felix

19) ts52: Trade G1 R1 Ts52

20) Felix: Build Y2 Felix

21) ts52: Build G1 Ts52

22) Felix: Move Y2 Felix Grass

23) ts52: Build Y2 Kermit

24) Felix: Build Y2 Grass

25) ts52: Discover Y2 Kermit G2 Oscar

26) Felix: Discover Y2 Grass B3 Ocean

27) ts52: Build Y3 Kermit

28) Felix: Sacrifice G1 Felix
Build Y3 Ocean

29) ts52: Build G1 Ts52

30) Felix: Build G1 Felix

31) ts52: Discover G1 Ts52 B3 Gonzo

32) Felix: Trade Y2 G2 Ocean
	Felix: Hope you have fun camping!

33) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Oscar
Build R1 Ts52

34) Felix: Sacrifice G1 Felix
Build G1 Ocean
	ts52: Thanks! We had a blast!
	Felix: My wife and I went camping with our 6-month-old infant a few weekends back and it was a blast too. Got rained on though!

35) ts52: Move R1 Ts52 Gonzo
	ts52: That
	ts52: That's awesome! We started when my youngest was 3 or so, I don't think I'd be brave enough to try camping with a 6 month old. Well done!

36) Felix: Move Y2 Grass Gonzo
	Felix: Thanks! It wasn't the easiest or most relaxing camping trip, but we made it work! She co-sleeps with my wife, so the two of them just slept in a hammock together. I was impressed they pulled it off!
	Felix: Next time we're going to try out this cool tent we got called a "Tentsile Connect" tree tent. It's a tent that you suspend from trees kind of like a hammock. Should be a bit more comfy than the ground, but we'll see.

37) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Gonzo
Build R2 Gonzo
	ts52: Let me know how it goes. We have a massive 160 sq ft tent for the 4 of us to sprawl out in, but I've been curious about the tree tents. Was looking at one only a month or so ago actually.

38) Felix: Sacrifice Y3 Ocean
Move G1 Ocean Ts52
Move G2 Ocean Ts52
Move Y2 Gonzo Ts52
Catastrophe Ts52 Green

39) ts52: Sacrifice Y2 Oscar
Move R2 Gonzo Ts52
Move G1 Gonzo Ts52
	Felix: Will do!
	ts52: Well played sir, I did not see that coming.

40) Felix: Sacrifice R2 Felix
Attack R2 Ts52
Attack B1 Ts52
	Felix: Thank you! I assumed you would move your Y3 ship back home after my move, so your move makes things more interesting...

41) ts52: Sacrifice Y2 Oscar
Move R1 Gonzo Ts52
Move R1 Gonzo Ts52
Catastrophe Ts52 Red

42) Felix: Trade Y1 R1 Felix
	ts52: Yeah, I couldn't let you get the catastrophe that easy. But this still isn't looking too good for me.

43) ts52: Build G1 Ts52

44) Felix: Build G1 Felix

45) ts52: Trade Y3 R3 Kermit

46) Felix: Sacrifice G3 Felix
Build B2 Ts52
Build B3 Ts52
Build Y1 Ts52
Catastrophe Ts52 Blue

47) ts52: Move R3 Kermit Ts52
	Felix: Very well thought! I think I may have you now though.
	Felix: fought*
	ts52: Yeah, I don't see a way out of that. Good game.

48) Felix: Sacrifice G1 Felix
Build Y2 Ts52
Catastrophe Ts52 Yellow

	Felix: I almost gave you a way out by forgetting to catastrophe! Great game.


29918)
Variants: "Unrated"
Started: 2016.6.22, Ended: 2016.7.14
Participants: Kalimantan (S), Felix (N), Draw5PlayAll (E)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) Draw5PlayAll: Homeworld R1 B2 G3
	Felix: RAWR!!!!

3) Kalimantan: Homeworld B3 R1 G3
	Draw5PlayAll: I was actually predicting a me-Felix-someone setup, where the someone was "likely Steele, unlikely ts52"...

4) Felix: Build G1 Felix
	Felix: Interesting that everyone chose the same colors as me! Looks like we'll be fighting for yellow :P

5) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Well, I was doing what Andy Looney says his strategy is.

6) Kalimantan: Build G1 Kalimantan

7) Felix: Trade G1 Y1 Felix

8) Draw5PlayAll: Trade G1 Y1 Draw5playall

9) Kalimantan: Trade G1 Y1 Kalimantan
	Draw5PlayAll: The beginnings are too predictable. I do not know if I should send out a Y1 or G1 or B1 to explore.

10) Felix: B G1 Felix

11) Draw5PlayAll: Build G1 Draw5playall
	Felix: The first few moves are typically the same, but the possibilities become endless pretty quickly :)

12) Kalimantan: Discover Y1 Kalimantan G2 Dagoba
	Draw5PlayAll: Well, with a finite number of pieces and a finite number of possible positions....

13) Felix: Trade G1 R1 Felix

14) Draw5PlayAll: Trade G1 B1 Draw5playall

15) Kalimantan: Build Y1 Dagoba

16) Felix: Build R1 Felix

17) Draw5PlayAll: Con Y2 Draw5playall

18) Kalimantan: Build Y2 Dagoba

19) Felix: Discover R1 Felix G1 Rim

20) Draw5PlayAll: Build G1 Draw5playall

21) Kalimantan: Move Y2 Dagoba Kalimantan
	Draw5PlayAll: I think I will invest in the future.

22) Felix: Build Y2 Felix

23) Draw5PlayAll: Discover G1 Draw5playall B3 Traderpool

24) Kalimantan: Build Y2 Kalimantan
	Draw5PlayAll: I see you two have been throwing your Y and R ships at green planets, while I send a green ship to a blue planet.

25) Felix: Move Y1 Felix Rim

26) Draw5PlayAll: Build G1 Traderpool

27) Kalimantan: Trade Y2 R2 Kalimantan
	Felix: Different strokes for different folks :)

28) Felix: Build R2 Rim

29) Draw5PlayAll: Discover B1 Draw5playall G3 Heh

30) Kalimantan: Move R2 Kalimantan Dagoba

31) Felix: Move R2 Rim Heh

32) Draw5PlayAll: Sacrifice B1 Heh
Trade Y2 R2 Draw5playall

33) Kalimantan: Move R2 Dagoba Rim
	Felix: *cue Jaws music* :)

34) Felix: Build R3 Rim
	Draw5PlayAll: See, *THIS* is my problem. I get my development too slow and I end up behind the race for the large ships, particularly yellow.
	Felix: It can be hard to keep up, especially in a 3p game. But it's arguably more important to develop red when your opponents do. That way you at least will be less likely to lose ships.

35) Draw5PlayAll: Trade G1 B1 Traderpool

36) Kalimantan: Build R3 Rim
Catastrophe Rim R
	Draw5PlayAll: I cannot resist!!
	Draw5PlayAll: Darn, I wanted to explode the reds at rim, but I cannot. Oh well, TraderPool needs support.

37) Felix: Build Y2 Felix

38) Draw5PlayAll: Build B1 Traderpool

39) Kalimantan: Build G1 Kalimantan

40) Felix: Trade Y2 B2 Felix
	Draw5PlayAll: This is safe because I have control of the blue economy.

41) Draw5PlayAll: Trade B1 R1 Traderpool

42) Kalimantan: Trade G3 R3 Kalimantan
	Felix: Not any more :)

43) Felix: Build Y2 Felix

44) Draw5PlayAll: Discover R2 Draw5playall Y3 Port

45) Kalimantan: Build G1 Kalimantan

46) Felix: Build G2 Felix
	Draw5PlayAll: I think I was playing ts52 or someone and I discovered two yellow stars as a plot to destroy the other guy's homeworld. I named them "Port1" and "Port2", so now "Port" is my name for any Y3 star system.

47) Draw5PlayAll: Build G2 Traderpool

48) Kalimantan: Trade G1 B1 Kalimantan
	Felix: Sounds like a plan. I shall name all my red ships "Port Destroyer" then ;)

49) Felix: Discover Y2 Felix B1 Ice
	Draw5PlayAll: This game (With 3P) has a lot of diplomacy. If Felix got too strong, the other two players can agree to each send a ship of the same color into his homeworld, which prevents the need for sacrificing while still attacking the enemy.

Perhaps that game was with Simon or nycavri...I do not think it was ts52.

50) Draw5PlayAll: Trade G2 Y2 Traderpool

51) Kalimantan: Move B1 Kalimantan Dagoba

52) Felix: Sacrifice G3 Felix
Build Y3 Felix
Build Y3 Rim
Build Y3 Ice
	Draw5PlayAll: Next blue planet should be Icehouse...

53) Draw5PlayAll: Build G1 Draw5playall

54) Kalimantan: Sacrifice Y2 Kalimantan
Move Y1 Dagoba Ice
Move Y1 Dagoba Ice
Catastrophe Ice Y
	Felix: That would be clever :) 

55) Felix: Sacrifice Y1 Rim
Move R2 Heh Dagoba

56) Draw5PlayAll: Build G2 Traderpool

57) Kalimantan: Build G2 Kalimantan
	Draw5PlayAll: I wish I could sac my G1 and build the G2 before the G1 is returned to the stash

58) Felix: Build G3 Felix

59) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R2 Port
Build Y1 Traderpool

60) Kalimantan: Build G3 Kalimantan

61) Felix: Attack B1S Dagoba
	Draw5PlayAll: I really need to get some of my ships off of TraderPool before it goes supernova!

62) Draw5PlayAll: Discover G2 Traderpool B2 Icehouse
	Draw5PlayAll: That is also a good move.
	Draw5PlayAll: I would not be surprised if Felix sacrificed his Y3@Felix to send his G2@Felix to Kalimantan, exploding your army. Which would only help me.

63) Kalimantan: Trade G2 Y2 Kalimantan

64) Felix: Build R3 Dagoba
	Draw5PlayAll: I tried to distance my ship from the evils that await in the direction of Polaris. It was a choice between sending a blue to a green system (which would not work) or a green to a blue system.

65) Draw5PlayAll: D R2 Port Y1 Port5

66) Kalimantan: Discover R3 Kalimantan Y2 Yarvin

67) Felix: Trade R3 Y3 Dagoba

68) Draw5PlayAll: Sac G3 Draw5playall
Build G2 Icehouse
Build G3 Draw5playall
Build R3 Port5
Pass
Pass
Pass
Pass

69) Kalimantan: Discover R3 Yarvin Y1 Hoth
	Felix: About time to attack :)

70) Felix: Discover G2 Felix B1 Flip

71) Draw5PlayAll: Move B1 Traderpool Port5
	Draw5PlayAll: Well, I do not like this... But I have a plan.

72) Kalimantan: Build G3 Kalimantan

73) Felix: Sacrifice Y3 Felix
Move G2 Flip Dagoba
Move G2 Dagoba Kalimantan
Move Y3 Dagoba Kalimantan
Catastrophe Kalimantan Green

74) Draw5PlayAll: Discover R1 Traderpool G1 Treehouse

75) Kalimantan: Move R3 Hoth Felix

76) Felix: Sacrifice R1 Felix
Attack Y2S Kalimantan
	Felix: *spaceship noises*
	Draw5PlayAll: This only helps me.

77) Draw5PlayAll: Sacrifice Y2 Traderpool
Move R1 Treehouse Felix
Move R2 Port5 Felix
Catastrophe Felix R
	Draw5PlayAll: The thing about a 3P battle is that here Felix sacrificed many resources to bomb Kalimantan, meaning I will have an edge. However, the Kalimantan system is now like a second homeworld, because the star is intact.

A quick pip count shows that I have 22 pips of ships while Felix has 17. Notice that he has more larges (but I can craft larges easily)...

Interesting game.

78) Felix: Build G1 Felix
	Draw5PlayAll: I wonder if anyone caught my reasons for the name Treehouse. Apart from being a green planet, of course.

79) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Traderpool
Build G3 Draw5playall
Build B1 Port5
	Felix: Sorry about that, Kalimantan. That's just how it goes sometimes! And I'm guessing you named it because of the other looney pyramid game, Treehouse?
	Kalimantan: Well gg. Let me know if you guys do a 3p again. I want in. Is 4p offered at sdg? Anyway 3p and up I definitely want to participate.  Thanks for a grest game.

80) Felix: Sacrifice Y3 Kalimantan
Move G3 Felix Draw5playall
Move G1 Felix Draw5playall
Move B2 Felix Draw5playall
Catastrophe Draw5playall Green
	Draw5PlayAll: Note to self. Be careful.

I like the spite/revenge move that Kalimantan did.
	Draw5PlayAll: 4P is offered, but I do not like it because it creates sizing problems.

81) Draw5PlayAll: Sacrifice G2 Icehouse
Build Y1 Draw5playall
Build Y2 Draw5playall

82) Felix: Trade B2 Y2 Draw5playall
Catastrophe Draw5playall Yellow
	Draw5PlayAll: I think when I built a G2, my mind assumed I had reinstated the factory...

	Draw5PlayAll: Hahaha you do not have enough red!!
	Felix: Who needs red? :)
	Draw5PlayAll: Do you think I had any way out? It did not look like it.
	Draw5PlayAll: Good game though.
	Felix: I didn't see any way out for you. The move you used was probably the best you could have used, but unlucky for you I had a blue ship so I could trade it for the color your had! Great game.
	Draw5PlayAll: Oh, I was predicting some freak move with sacrificing a large yellow and then taking over. You could have preserved my base, at the cost of Kalimantan's.


29904)
Variants: "Unrated"
Started: 2016.6.23, Ended: 2017.3.15
Participants: wil (S), Ben10 (N)
Winner: wil

1) Ben10: Homeworld Y3 B1 G3

2) wil: Homeworld B2 Y1 G3



29949)
Variants: "No undo"
Started: 2016.6.24, Ended: 2016.6.24
Participants: tinlef (S), Dahgrow (N)
Winner: Dahgrow

	tinlef: hi
	tinlef: i don't know what i'm doing


29957)
Variants: "Unrated"
Started: 2016.6.28, Ended: 2016.7.14
Participants: Felix (S), haymire (N)
Winner: haymire

1) haymire: Homeworld R3 B2 G3

2) Felix: Homeworld G1 B3 R3

3) haymire: Build G1 Haymire

4) Felix: Build R1 Felix
	haymire: Last game, I just copied the colours of your home world for mine, the same this time as well. Cheers for the advice.
	Felix: Blue and red is not a bad combo either. I know several top players who always use that combo and do very well with it. It comes down to personal style, but I find yellow/blue to be the easiest to work with. Having a large green is really helpful early on because it gives you lots of build potential in the early game where it's important to build your fleet up quickly. You can potentially sac the g3 for 3 builds, or you can more easily set up a "factory" situation in your homeworld.

5) haymire: Trade G1 Y1 Haymire

6) Felix: Trade R1 Y1 Felix

7) haymire: Build G1 Haymire

8) Felix: Build Y1 Felix

9) haymire: Build Y2 Haymire

10) Felix: Trade Y1 G1 Felix

11) haymire: Build G2 Haymire

12) Felix: Discover G1 Felix B2 Rim

13) haymire: Discover G2 Haymire R1 Blood

14) Felix: Build G2 Rim

15) haymire: Sacrifice G3 Haymire
Build G2 Blood
Build G3 Haymire
Build G3 Haymire

16) Felix: Trade G2 Y2 Rim

17) haymire: Discover G3 Haymire Y1 Cheeseball
	Felix: Nice move!

18) Felix: Build Y2 Rim

19) haymire: Trade Y1 B1 Haymire

20) Felix: Trade Y2 B2 Rim

21) haymire: Move B1 Haymire Blood

22) Felix: Build R1 Felix

23) haymire: Trade G2 Y2 Blood

24) Felix: Trade R3 G3 Felix

25) haymire: Build B1 Blood

26) Felix: Build G2 Rim
	Draw5PlayAll: I am watching your actions from another sector of the galaxy. Your styles of defense intrigue me.

27) haymire: Sacrifice G2 Blood
Build Y1 Haymire
Build Y3 Haymire
	Felix: *gasp* Who is this ethereal observer?

28) Felix: Sacrifice G3 Felix
Build Y3 Felix
Build Y3 Rim
Build R1 Felix

29) haymire: Sacrifice Y2 Haymire
Move B1 Blood Rim
Move B1 Blood Rim
Catastrophe Rim Blue

30) Felix: Discover Y1 Felix G2 Opus
	Felix: Oh, snap. Nice.

31) haymire: Discover G3 Cheeseball B2 Aquatear
	Draw5PlayAll: Ah, we made the same mistake in another galaxy, and our immense fleet could not evacuate the supernova in time :(

32) Felix: Move Y3 Felix Aquatear

33) haymire: Sacrifice Y1 Haymire
Move G3 Aquatear Felix

34) Felix: Move Y3 Aquatear Felix

35) haymire: Sacrifice G3 Haymire
Build G1 Felix
Build G2 Felix
Build G2 Haymire
Catastrophe Felix Green

36) Felix: Trade R1 G1 Felix

37) haymire: Build Y1 Haymire

38) Felix: Build G1 Felix

39) haymire: Trade G1 B1 Haymire

40) Felix: Trade G1 B1 Felix

41) haymire: Discover B1 Haymire G1 Bogey

42) Felix: Build Y1 Opus

43) haymire: Trade Y1 B1 Haymire

44) Felix: Move B1 Felix Opus

45) haymire: Build G1 Haymire

46) Felix: Build B2 Opus

47) haymire: Move B1 Haymire Blood

48) Felix: Trade Y1 R1 Opus

49) haymire: Trade G2 B2 Haymire

50) Felix: Discover B1 Opus Y1 Raggy

51) haymire: Sacrifice Y3 Haymire
Move B2 Haymire Bogey
Move B2 Bogey Felix
Move B1 Bogey Felix
	Draw5PlayAll: I think haymire is winning.

52) Felix: Move B1 Raggy Felix

53) haymire: Move B1 Blood Felix
Catastrophe Felix Blue
	Felix: Very nicely done!
	Draw5PlayAll: Missed Catastrophe??
	haymire: Good game mate, thank you. I learnt from you.
	Felix: Glad you learned! Good game. I'd love to rematch any time!



29989)
Variants: "Hard time"
Started: 2016.7.2, Ended: 2016.8.6
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y1 G3

2) Felix: Homeworld B1 Y2 G3
	dlwillson: Have fun!

3) dlwillson: B G1 Dlwillson
	Felix: Thanks, you too!

4) Felix: Build G1 Felix

5) dlwillson: T G1 B1 Dlwillson

6) Felix: Trade G1 B1 Felix

7) dlwillson: B B2 Dlwillson

8) Felix: Build B2 Felix

9) dlwillson: Trade B2 Y2 Dlwillson

10) Felix: Trade B2 Y2 Felix

11) dlwillson: Build B2 Dlwillson
	Felix: I feel a bit like a copycat right now.

12) Felix: Build B2 Felix

13) dlwillson: Trade B2 R2 Dlwillson

14) Felix: Trade B2 R2 Felix

15) dlwillson: B B2 Dlwillson

16) Felix: Build B2 Felix
	dlwillson: It's the nature of it. You can copy for free, or break out at a cost. Copying is more correct, most of the time, in the early game, I think.
	dlwillson: But I am late to move out now... Losing momentum.

17) dlwillson: D B1 Dlwillson G2 Field

18) Felix: Discover B2 Felix G3 Dagobah

19) dlwillson: Discover B2 Dlwillson G2 Forest

20) Felix: Discover B1 Felix Y3 Tattooine

21) dlwillson: Build Y1 Dlwillson

22) Felix: Build Y1 Felix

23) dlwillson: M Y1 Dlwillson Field

24) Felix: Move Y1 Felix Dagobah
	Draw5PlayAll: I am always late and I never fail to lose momentum.
	dlwillson: Sorry for the delay. Interesting position. I'm going to set it up in plastic before I move.
	dlwillson: Bah. Too busy. I'll just move and hope for the best. :-)

25) dlwillson: B Y3 Field
	dlwillson: Shoot. I thought I submitted that move this morning!

26) Felix: Build Y3 Dagobah
	Felix: I think I had a plan for my last move, but now I can't remember it, haha
	Draw5PlayAll: That is what the notebook is for, haha

27) dlwillson: Trade Y3 R3 Field

28) Felix: Trade Y1 R1 Dagobah

29) dlwillson: Build B2 Field

30) Felix: Build B3 Dagobah

31) dlwillson: B B3 Forest

32) Felix: Sacrifice Y2 Felix
Move B1 Tattooine Forest
Move B2 Dagobah Forest
Catastrophe Forest Blue

33) dlwillson: D B2 Field Y3 Sol

34) Felix: Build G1 Felix

35) dlwillson: Discover Y2 Dlwillson B2 Sky

36) Felix: Discover G1 Felix B3 Jade

37) dlwillson: B G1 Dlwillson

38) Felix: B G1 Felix

39) dlwillson: Build R1 Dlwillson

40) Felix: Sacrifice G3 Felix
Build G2 Felix
Build G2 Jade
Build G3 Felix

41) dlwillson: M R3 Field Jade

42) Felix: Sacrifice G2 Jade
Build Y1 Dagobah
Build B1 Dagobah

43) dlwillson: A G1 Jade

44) Felix: Discover G2 Felix Y3 Escape

45) dlwillson: S G3 Dlwillson
B G2 Jade
B G3 Dlwillson
B Y2 Sky

46) Felix: Trade G1 R1 Felix

47) dlwillson: S G3 Dlwillson
B G1 Jade
B G3 Dlwillson
B B2 Sol

48) Felix: Move Y3 Dagobah Field

49) dlwillson: M Y2 Sky Escape

50) Felix: Sacrifice R2 Felix
Attack Y2 Escape
Attack Y1 Field

51) dlwillson: Sacrifice Y2 Sky
Move B2 Sol Felix
Move B2 Sol Felix

52) Felix: Sacrifice G2 Escape
Build Y2 Field
Build Y3 Dagobah

53) dlwillson: S R1 Dlwillson
A R1 Felix

54) Felix: Trade B3 R3 Dagobah
	Felix: Huh. For some reason I thought you had no yellows left after my attack. That was a mistake!

55) dlwillson: S G3 Dlwillson
B G2 Dlwillson
B G3 Dlwillson
B B2 Felix

56) Felix: Sacrifice R1 Dagobah
Attack B1 Field
	Draw5PlayAll: Red Teleportaion?!?

57) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B R1 Felix
B B3 Felix

58) Felix: Move Y3 Field Dlwillson
Catastrophe Felix Blue

59) dlwillson: A Y3 Dlwillson

60) Felix: Sacrifice Y2 Escape
Move Y2 Field Dlwillson
Move Y1 Field Dlwillson
Catastrophe Dlwillson Yellow

61) dlwillson: Trade G3 Y3 Dlwillson

62) Felix: Move Y3 Dagobah Felix

63) dlwillson: T G2 Y2 Jade

64) Felix: B B1 Field

65) dlwillson: M Y3 Dlwillson Felix

66) Felix: S Y3 Felix
M B1 Field Dlwillson
M B1 Field Dlwillson
D B1 Dagobah Y2 Soclose

67) dlwillson: S G2 Dlwillson
B Y1 Felix
B Y1 Felix
C Felix Y
	Felix: This is so tense :O
	Draw5PlayAll: Wow, it does look tense.

	Felix: Well played indeed. I was one move away. I knew I should have kept you locked out of yellow a bit longer!
	dlwillson: Excellent game :-)


29970)
Variants: "Unrated"
Started: 2016.7.4, Ended: 2016.7.4
Participants: jslimify (S), Felix (N)
Winner: Felix

	jslimify: Gl
	jslimify: Gl


29942)
Variants: "Unrated"
Started: 2016.7.4, Ended: 2016.7.31
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld R1 B2 G3



29956)
Started: 2016.7.6, Ended: 2016.7.26
Participants: Felix (S), Kalimantan (N)
Winner: Felix

1) Kalimantan: Homeworld Y3 G1 R3 *

2) Felix: Homeworld R3 Y2 G3 *
	Felix: Have fun! :)

3) Kalimantan: Build R1 Kalimantan
	Felix: A blueless intro...

4) Felix: Build G1 Felix

5) Kalimantan: Build R1 Kalimantan

6) Felix: Build G1 Felix

7) Kalimantan: Discover R1 Kalimantan B2 Dagoba

8) Felix: Discover G1 Felix B1 Flip

9) Kalimantan: Move R1 Kalimantan Dagoba

10) Felix: Build G2 Flip

11) Kalimantan: Trade R1 B1 Dagoba

12) Felix: Trade G2 B2 Flip

13) Kalimantan: Trade R1 Y1 Dagoba

14) Felix: Build G2 Flip

15) Kalimantan: Move B1 Dagoba Kalimantan

16) Felix: Trade G2 Y2 Flip

17) Kalimantan: Build R1 Kalimantan

18) Felix: Move B2 Flip Felix

19) Kalimantan: Move R1 Kalimantan Dagoba

20) Felix: Build G2 Flip
	Draw5PlayAll: What is with this name "Dagoba"?
	Felix: @Draw5 - it's from Star Wars

21) Kalimantan: Move R1 Dagoba Flip
	Kalimantan: Lol. Yeah I'm butchering all the names I can remember from star wars systems. Like yarvin was supposed to be from yavin 4 but I misspelled it so now I just use yarvin all the time. I can't remember to many names of starsystems and star wars is pretty much the only exposure I've had to galactic warfare. 

22) Felix: Trade G2 R2 Flip

23) Kalimantan: Attack G1 Flip
	Felix: You need to watch some Star Trek or Battlestar Galactica!
	Kalimantan: Well I like startrek but I don't know of any memorable star systems. I was very young when I watched it. And I always saw as more about galactic exploration and diplomacy and not warfare. Battlestar galatica on the other I've just never actully watched it. I'm not sure why, maybe it was past my generation, I don't remember ever seeing on tv.

24) Felix: Sacrifice R2 Flip
Attack R1 Flip
Attack G1 Flip
	Felix: Quite understandable :) I watched both those shows but i can't really remember any memorable system names either!

25) Kalimantan: Build R1 Kalimantan

26) Felix: Build G2 Flip

27) Kalimantan: Trade R3 G3 Kalimantan
	Draw5PlayAll: But this game IS exploration, and diplomacy in a 3+ player game...
	Kalimantan: It's time implement a monopoly breaking transaction y

28) Felix: D G2 Flip B2 Flop
	Felix: Good thinking!

29) Kalimantan: Sacrifice G3 Kalimantan
Build B1 Kalimantan
Build B3 Kalimantan
Build Y1 Dagoba

30) Felix: Build B3 Felix
	Felix: Did you mean to pass? You can undo your move and do it again if you wish.

31) Kalimantan: Trade B3 G3 Kalimantan

32) Felix: Build B3 Felix

33) Kalimantan: Sacrifice G3 Kalimantan
Build B3 Kalimantan
Build R1 Kalimantan
Build R2 Kalimantan

34) Felix: Discover B3 Felix Y1 Flap

35) Kalimantan: Move R2 Kalimantan Flop

36) Felix: Sacrifice R1 Flip
Attack R2 Flop

37) Kalimantan: Move Y1 Dagoba Flip

38) Felix: Move B3 Flap Flop

39) Kalimantan: Sacrifice R1 Kalimantan
Attack G1 Flip

40) Felix: Sacrifice Y2 Flip
Move B3 Flop Kalimantan
Move R2 Flop Kalimantan
Catastrophe Kalimantan Blue

41) Kalimantan: Build R1 Kalimantan

42) Felix: Sacrifice G1 Felix
Build R1 Kalimantan
Catastrophe Kalimantan Red
	Felix: Watch out for that overpopulation threat! It's a killer. I know it was super tempting to attack my ship, but you left yourself open in your homeworld. 

	Kalimantan: Well I think I lost this match from the point where I made the g3, l thought it was a good move then but now in hindsight it seems like that's the precise moment I sealed my doom.  And hey who knows, maybe I would've fared better if I kept the pass. But I think I saw the catastrophe coming but there was really nothing I can do to stop it I think, can't quite remember now that the ships r gone.
	Felix: Yeah, that G3 might have been a mistake. It's difficult to work with a G3 in your homeworld if you also have green as one of your home stars, too. That said, you played well, and I hope you learned some things! I'd be happy to rematch any time :)
	Draw5PlayAll: Felix, was the no-blue homeworld a handicap thing? Because I have always found that a blue star is helpful (I have not tried a blue ship, but I prefer green ships). It helps me diversify the local defense fleet without having to go to blue stars or worry about keeping blues at home.
	Felix: @Draw5 it's generally considered more difficult to not have any blue at all at the start of the game. Since we both did it, neither of us were handicapped!


29930)
Started: 2016.7.6, Ended: 2016.8.8
Participants: ts52 (S), Kalimantan (N)
Winner: ts52

1) Kalimantan: Homeworld R3 G2 B3

2) ts52: Homeworld Y1 B2 G3

3) Kalimantan: Build B1 Kalimantan
	ts52: Sorry for the delay.
	Kalimantan: It's okay

4) ts52: Build G1 Ts52

5) Kalimantan: Build B1 Kalimantan

6) ts52: Trade G1 B1 Ts52

7) Kalimantan: Trade B1 Y1 Kalimantan

8) ts52: Build G1 Ts52

9) Kalimantan: Trade B1 G1 Kalimantan

10) ts52: Discover G1 Ts52 B3 Gonzo

11) Kalimantan: Build B1 Kalimantan

12) ts52: Discover B1 Ts52 G3 Oscar

13) Kalimantan: Trade B1 R1 Kalimantan

14) ts52: Trade B1 R1 Oscar

15) Kalimantan: Discover R1 Kalimantan G1 Dagoba

16) ts52: Build G2 Ts52

17) Kalimantan: Build G2 Kalimantan

18) ts52: Build G3 Gonzo

19) Kalimantan: Build B1 Kalimantan

20) ts52: Trade G3 Y3 Gonzo

21) Kalimantan: Move G2 Kalimantan Dagoba

22) ts52: Build G3 Gonzo

23) Kalimantan: Move Y1 Kalimantan Dagoba

24) ts52: Trade G2 B2 Ts52

25) Kalimantan: Trade G1 Y1 Kalimantan

26) ts52: Sacrifice G3 Gonzo
Build G1 Ts52
Build G2 Ts52
Build G3 Gonzo

27) Kalimantan: Build Y2 Kalimantan

28) ts52: Discover G1 Ts52 Y3 Bigbird

29) Kalimantan: Move R1 Dagoba Bigbird

30) ts52: Sacrifice R1 Oscar
Attack R1 Bigbird

31) Kalimantan: Discover Y1 Dagoba G3 Yavin

32) ts52: Move Y3 Gonzo Dagoba

33) Kalimantan: Sacrifice G2 Dagoba
Build Y2 Yavin
Build Y2 Yavin

34) ts52: Sacrifice G3 Gonzo
Build G2 Bigbird
Build G3 Gonzo
Build Y3 Dagoba

35) Kalimantan: Sacrifice Y2 Kalimantan
Move Y2 Yavin Ts52
Move Y2 Yavin Ts52

36) ts52: Trade G3 R3 Ts52

37) Kalimantan: Build Y2 Yavin

38) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build G3 Ts52
Build R1 Bigbird

39) Kalimantan: Move Y1 Yavin Ts52
Catastrophe Ts52 Y

40) ts52: Sacrifice Y3 Dagoba
Move G3 Gonzo Dagoba
Move G3 Dagoba Kalimantan
Move Y3 Dagoba Kalimantan

41) Kalimantan: Attack G3S Kalimantan

42) ts52: Sacrifice R3 Ts52
Attack G3 Kalimantan
Attack B3 Kalimantan
Attack Y1 Kalimantan

43) Kalimantan: Attack Y1 Kalimantan

44) ts52: Sacrifice G3 Kalimantan
Build Y1 Kalimantan
Build Y1 Kalimantan
Build B1 Kalimantan
Catastrophe Kalimantan Yellow

45) Kalimantan: Attack B1S Kalimantan

46) ts52: Build B1 Kalimantan
Catastrophe Kalimantan Blue

	ts52: Thanks for the game!


29584)
Variants: "Hard time"
Started: 2016.7.7, Ended: 2016.7.10
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B1 R2 G3



30027)
Variants: "Unrated"
Started: 2016.7.9, Ended: 2016.7.19
Participants: Draw5PlayAll (S), Kalimantan (N)
Winner: Draw5PlayAll

1) Kalimantan: Homeworld Y3 G2 R3 *

2) Draw5PlayAll: Homeworld B2 R1 G3

3) Kalimantan: Build R1 Kalimantan
	Draw5PlayAll: We have geared up to start a new civilization with our best Galaxy-class construction vessel.
	Kalimantan: And we have geared up to start a new empire with our Galaxy class war machine.

4) Draw5PlayAll: Build G1 Draw5playall

5) Kalimantan: Discover R1 Kalimantan Y1 Dagoba
	Draw5PlayAll: On the other hand, our empire is usually peaceful. We only attack in self-defense.
	Kalimantan: Well I guess that means you wont be that peaceful this time around

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Kalimantan: Build R1 Kalimantan
	Draw5PlayAll: Well, we usually choose a Planeary Defense System because invaders often are less peaceful and we need protection. We have noticed, though, that it seems to only discourage attacks from reaching our base, instead of actually stopping those that happen.
	Draw5PlayAll: *Planetary

8) Draw5PlayAll: Build G1 Draw5playall

9) Kalimantan: Discover R1 Kalimantan B1 Yarvin Iv

10) Draw5PlayAll: Build G1 Draw5playall

11) Kalimantan: Trade R1 G1 Yarvin

12) Draw5PlayAll: Trade G1 R1 Draw5playall

13) Kalimantan: Build G1 Yarvin

14) Draw5PlayAll: Build R2 Draw5playall

15) Kalimantan: Build R2 Kalimantan

16) Draw5PlayAll: Discover R2 Draw5playall B3 Icehouse

17) Kalimantan: Move R2 Kalimantan Yarvin
	Draw5PlayAll: When we sent out on our quest for new life and new civilizations, we found a large icy planet. A few members of our defense ship beamed down and found inhabitants playing the game Icehouse, which has spread in popularity around the Galaxy.
	Kalimantan: Is that from the book?

18) Draw5PlayAll: Move G1 Draw5playall Icehouse
	Draw5PlayAll: The captain of our Constellation-class construction vessel heard about a Martian Chess tournament and traveled over to have some R&R, as well as to begin to build outside our homeworld.

--

No, I have not read The Empty City, so there is no way I could have taken that from the book.

19) Kalimantan: Trade G1 Y1 Yarvin
	Kalimantan: Oh ok. Lol.

20) Draw5PlayAll: Build G1 Draw5playall

21) Kalimantan: Build G2 Yarvin

22) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Icehouse
Build G3 Draw5playall
Build Y2 Draw5playall

23) Kalimantan: Sacrifice G2 Yarvin
Build Y2 Yarvin
Build G2 Yarvin

24) Draw5PlayAll: Move Y1 Draw5playall Icehouse

25) Kalimantan: Discover Y1 Yarvin R3 Hoth
	Draw5PlayAll: The problem with using a G2 for the factory is that you really only get 1 growth. But that growth can be in places you have no greens...
	Kalimantan: I thought I did something wrong.

26) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y2 Icehouse
Build Y3 Draw5playall
Pass

27) Kalimantan: Sacrifice G2 Yarvin
Build R2 Dagoba
Build R3 Yarvin
	Draw5PlayAll: The other thing about a G2 factory is that you can use Green Teleportation. So if you had a green at Hoth, you could sac G2@Yarvin and build the G2 at Hoth, as well as getting another build.

My homeworld and the blue star are both kind of cramped.

28) Draw5PlayAll: Discover G2 Icehouse B1 Icetraders

29) Kalimantan: Build Y3 Yarvin

30) Draw5PlayAll: Sac G3 Draw5playall
Build G2 Icetraders
Build G3 Draw5playall
Build G3 Icehouse

31) Kalimantan: Move R1 Dagoba Hoth
	Draw5PlayAll: This will be close.

32) Draw5PlayAll: Discover R1 Draw5playall G3 Builders

33) Kalimantan: Move R3 Yarvin Builders

34) Draw5PlayAll: Sacrifice Y1 Icehouse
Discover R1 Builders B1 Pluto

35) Kalimantan: Move R2 Dagoba Builders

36) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 Icehouse
Build Y1 Icehouse

37) Kalimantan: Sacrifice Y3 Yarvin
Move R1 Hoth Draw5playall
Move R2 Builders Draw5playall
Move R3 Builders Draw5playall

38) Draw5PlayAll: Move Y1 Icehouse Pluto
Catastrophe Draw5playall Red

39) Kalimantan: Build Y3 Yarvin
	Draw5PlayAll: Close close close!!!

40) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R1 Icehouse
Build R1 Pluto
Pass

41) Kalimantan: Build G3 Yarvin

42) Draw5PlayAll: Sacrifice Y1 Icehouse
Discover R1 Icehouse Y1 Port4

43) Kalimantan: Move Y3 Yarvin Kalimantan
	Draw5PlayAll: The icehouse system is too crowded so we decided to set up a new colony. We needed access to the trading economy so we decided on a planet with trained navigators.

44) Draw5PlayAll: Move Y1 Pluto Kalimantan
	Draw5PlayAll: Insufficient.

45) Kalimantan: Attack Y1S Kalimantan

46) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y2 Icehouse Port4
Move Y2 Port4 Kalimantan
Catastrophe Kalimantan Yellow

47) Kalimantan: Move Y2 Yarvin Kalimantan
	Draw5PlayAll: Well, you can mess me up and leave 1 ship in my homeworld.

48) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move G1 Icehouse Kalimantan
Move G2 Icetraders Kalimantan
Move G2 Icetraders Kalimantan
Catastrophe Kalimantan Green
	Draw5PlayAll: Problem is, the icehouse and IceTraders both connected to your homeworld, allowing me to score my first EVER home worlds win on SDG.

Good game, want to play again?
	Kalimantan: Yeah sure
	Draw5PlayAll: Interestingly enough, none of us really took hold of the blue economy.
If you had three blue ships, I would have had to been much more careful.

Looking for / making the challenge.



30021)
Variants: "Unrated"
Started: 2016.7.10, Ended: 2016.9.21
Participants: Ben10 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y2 B3 G3

2) Ben10: Homeworld Y3 B1 G3
	Felix: Welcome! First game?

3) Felix: Build G1 Felix
	Ben10: Yeah, absolute first game, might take me a while to get into the swing of things!
	Felix: Not a problem. I'd be happy to help you figure things out. Let me know if you have any questions! And if I have tips along the way I'll try to give them

4) Ben10: Build G1 Ben10
	Ben10: Thanks, I'll let you know if I have any questions!

5) Felix: Trade G1 B1 Felix

6) Ben10: Build G1 Ben10

7) Felix: Build B1 Felix

8) Ben10: Trade G3 B3 Ben10
	Felix: Lesson 1: if there's only one small left of a color you don't yet have, it's wise to try and trade for it if possible. Otherwise your opponent may snap up all the smalls, like I just did with the blues, and then it becomes more difficult for you to trade for a blue ship, since you now have to get a medium before you can trade for blue. Make sense?
	Ben10: Makes a lot of sense! Thanks

9) Felix: Build G1 Felix

10) Ben10: Build G2 Ben10

11) Felix: Discover B1 Felix Y1 Station

12) Ben10: Discover G1 Ben10 B2 Bampton

13) Felix: Move G1 Felix Station

14) Ben10: Move G2 Ben10 Bampton

15) Felix: Build G2 Station

16) Ben10: Trade G1 Y1 Bampton

17) Felix: Trade G2 Y2 Station

18) Ben10: Build B2 Ben10

19) Felix: Build G1 Felix

20) Ben10: Build G2 Bampton

21) Felix: Build G2 Station

22) Ben10: Move B2 Ben10 Bampton

23) Felix: B G3 Felix

24) Ben10: Build G3 Ben10

25) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Felix
Build B3 Station

26) Ben10: Discover B2 Bampton Y1 Oddington

27) Felix: Trade B2 R2 Felix

28) Ben10: Trade B2 R2 Oddington

29) Felix: Discover G2 Station B2 Pulse
	Felix: Smart thinking getting a red when I do. You're playing very well so far!

30) Ben10: Sacrifice G3 Ben10
Build G3 Ben10
Build R1 Oddington
Build Y2 Bampton

31) Felix: Discover G3 Felix R1 Battleship
	Ben10: Haha thank you for pretending ;) I feel very much on the defensive, trying to think offensively a few moves ahead is a bit tricky first time round!
	Felix: No, really. For a first game, you're avoiding many of the mistakes beginners make in their first game. You are keeping pace with my movements. You aren't overpopulating your systems with any one color. You got weapons when I did. Good stuff. It's very hard to develop long term strategies for your first several games, but it will come!

32) Ben10: Sacrifice Y2 Bampton
Move G3 Ben10 Pulse
Move R1 Oddington Pulse

33) Felix: Sacrifice G2 Pulse
Build G2 Station
Build B2 Felix
	Ben10: Apologies for the delay, I've been away the last couple of weeks, normal service should be resumed henceforth.

34) Ben10: Sacrifice G3 Pulse
Build G3 Ben10
Build R1 Pulse
Build Y2 Bampton
	Felix: Not a problem. Welcome back!

35) Felix: Move Y2 Station Pulse



30005)
Started: 2016.7.10, Ended: 2016.9.6
Participants: ts52 (S), njmickel (N)
Winner: ts52

1) njmickel: Homeworld B3 Y1 G3

2) ts52: Homeworld B1 Y2 G3

3) njmickel: Build G1 Njmickel

4) ts52: Build G1 Ts52

5) njmickel: Discover G1 Njmickel B2 Batmanville

6) ts52: Discover G1 Ts52 B3 Gonzo

7) njmickel: Trade G1 Y1 Batmanville

8) ts52: Trade G1 Y1 Gonzo



29847)
Variants: "Hard time"
Started: 2016.7.10, Ended: 2016.7.21
Participants: Simon (S), njmickel (N)
Winner: Simon

1) njmickel: Homeworld B3 Y2 G3

2) Simon: Homeworld G2 R1 B3
	Simon: Hi, have fun!

3) njmickel: Build G1 Njmickel

4) Simon: Build B1 Simon
	njmickel: Good luck, have fun!
	njmickel: Good luck, have fun!

5) njmickel: Build G1 Njmickel

6) Simon: Trade B1 Y1 Simon



30048)
Variants: "Unrated"
Started: 2016.7.11, Ended: 2016.7.11
Participants: GalateanGemmate (S), Mitotic (N)
Winner: Mitotic

1) Mitotic: Homeworld R1 G2 B3

2) GalateanGemmate: Homeworld R3 B1 G3
	GalateanGemmate: R3 B1 G3

3) Mitotic: Build B1 Mitotic

4) GalateanGemmate: Build G1 Galateangemmate
	GalateanGemmate: build g1 galateangemmate
	Mitotic: sup nerd

5) Mitotic: Trade B1 Y1 Mitotic
	Mitotic: saucy move, girl

6) GalateanGemmate: Trade G1 B1 Galateangemmate
	Mitotic: copycat <3

7) Mitotic: Build Y1 Mitotic

8) GalateanGemmate: Trade B1 Y1 Galateangemmate
	Mitotic: I'll do what you say for now, <3

9) Mitotic: Trade Y1 R1 Mitotic

10) GalateanGemmate: Build Y1 Galateangemmate

11) Mitotic: Trade B3 R3 Mitotic

12) GalateanGemmate: Build G1 Galateangemmate
	Mitotic: militarism, GO!

13) Mitotic: Discover R1 Mitotic B3 Aegis

14) GalateanGemmate: Build Y2 Galateangemmate

15) Mitotic: Move Y1 Mitotic Aegis
	Mitotic: As usual, militarism proves a bad idea

16) GalateanGemmate: Trade Y1 B1 Galateangemmate

17) Mitotic: Trade R1 B1 Aegis

18) GalateanGemmate: Discover B1 Galateangemmate G2 Sofa
	Mitotic: *squints suspiciously*

19) Mitotic: Move B1 Aegis Mitotic

20) GalateanGemmate: Build B2 Sofa

21) Mitotic: Trade B1 G1 Mitotic

22) GalateanGemmate: Move Y1 Galateangemmate Sofa



30049)
Variants: "Unrated"
Started: 2016.7.11, Ended: 2016.7.12
Participants: GalateanGemmate (S), Mitotic (N)
Winner: GalateanGemmate

1) Mitotic: Homeworld G2 B3 Y3

2) GalateanGemmate: Homeworld G3 R1 B3

3) Mitotic: Build Y1 Mitotic

4) GalateanGemmate: Build B1 Galateangemmate
	Mitotic: yeah!

5) Mitotic: Trade Y1 G1 Mitotic
	Mitotic: impressive

6) GalateanGemmate: Build B1 Galateangemmate

7) Mitotic: Build Y1 Mitotic

8) GalateanGemmate: Trade B1 Y1 Galateangemmate

9) Mitotic: Discover Y1 Mitotic Y1 Phlegm

10) GalateanGemmate: Build Y2 Galateangemmate

11) Mitotic: Build Y2 Mitotic

12) GalateanGemmate: Trade Y1 G1 Galateangemmate

13) Mitotic: Trade Y2 R2 Mitotic
	GalateanGemmate: hon hon hon

14) GalateanGemmate: Discover G1 Galateangemmate B2 Black Bile
	Mitotic: Note: ggg is TOO CUTE TO BE ALLOWED TO WIN
	Mitotic: Note: ggg is TOO CUTE TO BE ALLOWED TO WIN

15) Mitotic: Move R2 Mitotic Phlegm

16) GalateanGemmate: Build G1 Black

17) Mitotic: Move R2 Phlegm Black

18) GalateanGemmate: Sacrifice Y2 Galateangemmate
Discover G1 Black B3 Cholera
Move G1 Black Cholera
	Mitotic: I've got a bad feeling about this scoob...
	Mitotic: I've got a bad feeling about this scoob...

19) Mitotic: Build G2 Mitotic

20) GalateanGemmate: Trade B3 Y3 Galateangemmate

21) Mitotic: Move Y1 Phlegm Black

22) GalateanGemmate: Build Y1 Galateangemmate
	GalateanGemmate: note: prepare to be stomped by zylphia

23) Mitotic: Discover Y1 Black Y1 Phlegm2

24) GalateanGemmate: Build Y2 Galateangemmate

25) Mitotic: Build Y2 Mitotic

26) GalateanGemmate: Sacrifice Y2 Galateangemmate
Move G1 Cholera Phlegm2
Move G1 Phlegm2 Mitotic
Catastrophe Mitotic Green

27) Mitotic: Discover Y1 Phlegm2 G2 Uuugh

28) GalateanGemmate: Trade Y1 R1 Galateangemmate

29) Mitotic: Move Y2 Mitotic Black

30) GalateanGemmate: Build G1 Cholera

31) Mitotic: Move R2 Black Cholera

32) GalateanGemmate: Move Y3 Galateangemmate Black

33) Mitotic: Attack G1 Cholera

34) GalateanGemmate: Sacrifice G1 Cholera
Build B1 Galateangemmate

35) Mitotic: Build R1 Cholera

36) GalateanGemmate: Trade Y3 R3 Black

37) Mitotic: Move Y2 Black Cholera

38) GalateanGemmate: Trade B1 Y1 Galateangemmate

39) Mitotic: Build Y1 Cholera

40) GalateanGemmate: Trade R3 G3 Black

41) Mitotic: Discover Y1 Cholera R2 Ihunger

42) GalateanGemmate: Build G1 Black

43) Mitotic: Move R2 Cholera Uuugh

44) GalateanGemmate: Build Y2 Galateangemmate

45) Mitotic: Move R1 Cholera Uuugh

46) GalateanGemmate: Trade R1 B1 Galateangemmate

47) Mitotic: Trade Y3 B3 Mitotic

48) GalateanGemmate: Trade G1 R1 Black

49) Mitotic: Build G1 Cholera

50) GalateanGemmate: Build R2 Black

51) Mitotic: Trade B3 R3 Mitotic

52) GalateanGemmate: Discover B1 Galateangemmate G2 Sanguinos

53) Mitotic: Build R3 Uuugh

54) GalateanGemmate: Sacrifice Y2 Galateangemmate
Move R1 Black Cholera
Move R1 Cholera Uuugh
Catastrophe Uuugh Red

55) Mitotic: Move G1 Cholera Uuugh

56) GalateanGemmate: Build Y2 Galateangemmate

57) Mitotic: Move Y1 Ihunger Mitotic

58) GalateanGemmate: Trade Y2 B2 Galateangemmate

59) Mitotic: Move G1 Uuugh Mitotic

60) GalateanGemmate: Build Y2 Galateangemmate

61) Mitotic: Build R1 Mitotic
	GalateanGemmate: oh! I see it's my turn again! forutunately I have ~9 more days

62) GalateanGemmate: Build B1 Sanguinos
	GalateanGemmate: built a ship! take that!
	GalateanGemmate: wait actually don't take my ship! :O

63) Mitotic: Build Y2 Mitotic
	Mitotic: oh gosh what am I doing

64) GalateanGemmate: Build B2 Sanguinos
	GalateanGemmate: my sinister plot is unfolding!
it is to deprive you of blues!

65) Mitotic: Move R3 Mitotic Sanguinos
	Mitotic: *metal gear alert noise*

66) GalateanGemmate: Sacrifice Y2 Galateangemmate
Move B1 Sanguinos Mitotic
Move B2 Sanguinos Mitotic
	GalateanGemmate: I love that noise! I have no idea how I know what it sounds like, but I love it!

67) Mitotic: Attack B1 Mitotic

68) GalateanGemmate: Sacrifice Y1 Galateangemmate
Move B1 Sanguinos Mitotic
Catastrophe Mitotic Blue
	Mitotic: https://www.youtube.com/watch?v=2P5qbcRAXVk
	GalateanGemmate: :D

	GalateanGemmate: !
	Mitotic: *sweats nervously*


30051)
Variants: "Unrated"
Started: 2016.7.11, Ended: 2016.7.11
Participants: Mitotic (S), GalateanGemmate (N)
Winner: Mitotic



30052)
Variants: "Unrated"
Started: 2016.7.12, Ended: 2016.7.12
Participants: Draw5PlayAll (S), GalateanGemmate (N)
Winner: Draw5PlayAll

	Draw5PlayAll: Whaaaaat?
	GalateanGemmate: ah - my apologies, I am new and just wanted to start a single game with my friend. And, apparently it ended up starting 3 games???
	Draw5PlayAll: Standing Challenges will renew themselves when accepted. If you want to play a specific user, you can create a challenge from the Games list, and select the user from "Challenge whom?"
	GalateanGemmate: ohhh thanks! that is very helpful!


30058)
Variants: "Unrated"
Started: 2016.7.12, Ended: 2016.7.12
Participants: Kalimantan (S), GalateanGemmate (N)
Winner: Kalimantan



30065)
Started: 2016.7.12, Ended: 2016.7.13
Participants: Mitotic (S), GalateanGemmate (N)
Winner: GalateanGemmate

1) GalateanGemmate: Homeworld B2 Y3 G3
	Mitotic: Let's go GGG! I won't be bested this time!

2) Mitotic: Homeworld Y2 G3 B3
	GalateanGemmate: yeah! let's do it!

3) GalateanGemmate: Build G1 Galateangemmate

4) Mitotic: Build B1 Mitotic
	GalateanGemmate: interesting
a mirror match-up
our homeworlds will be v close to each other
2 away instead of 4
	GalateanGemmate: 3*

5) GalateanGemmate: Build G1 Galateangemmate

6) Mitotic: Trade B1 G1 Mitotic

7) GalateanGemmate: Trade G1 Y1 Galateangemmate

8) Mitotic: Build B1 Mitotic

9) GalateanGemmate: Trade G1 B1 Galateangemmate

10) Mitotic: Trade B1 Y1 Mitotic

11) GalateanGemmate: Discover B1 Galateangemmate G1 Phlegmnation
	GalateanGemmate: I didn't think I'd undone my move! whoops!
	Mitotic: <3

12) Mitotic: Build B1 Mitotic

13) GalateanGemmate: Build B1 Phlegmnation

14) Mitotic: Trade B3 R3 Mitotic
	Mitotic: Whoops! I forgot to hit enter on the command I typed, that was dumb!
	Mitotic: Nice name for that star. That's gonna be fun to type. :D
	GalateanGemmate: haha I'll bet!

15) GalateanGemmate: Trade B1 R1 Phlegmnation
	GalateanGemmate: oh man that was hard to type! :O hoisted by my own petard!

16) Mitotic: Build R1 Mitotic

17) GalateanGemmate: Build R1 Phlegmnation

18) Mitotic: Trade R1 B1 Mitotic

19) GalateanGemmate: Build B2 Phlegmnation

20) Mitotic: Move B1 Mitotic Phlegmnation

21) GalateanGemmate: Trade B1 Y1 Phlegmnation
	Mitotic: whoo! that was close! almost made a bad move there!
	GalateanGemmate: oh no! what was your bad move?

22) Mitotic: Build B1 Phlegmnation
	Mitotic: The move I undid. I move my r3 to phlegmnation and then you could have made another red ship and gotten rid of my 3 ship this early in the game.
On second thought, it wasn't *that* bad a move, but it was still kinda bad.

23) GalateanGemmate: Build Y2 Phlegmnation
	GalateanGemmate: ah! I was planning for that, actually! that is why I made the red ship

24) Mitotic: Build B2 Phlegmnation
Catastrophe Phlegmnation Blue

25) GalateanGemmate: Trade Y1 B1 Galateangemmate

26) Mitotic: Build G1 Mitotic

27) GalateanGemmate: Build G2 Galateangemmate
	Mitotic: my first catastrophe! Granted, it didn't really help me that much, but still!
	GalateanGemmate: I'll have to trade my yellow ship in for a blue
	GalateanGemmate: but yeah you lost more ships than I

28) Mitotic: Move G1 Mitotic Phlegmnation

29) GalateanGemmate: Attack G1 Phlegmnation

30) Mitotic: Build B1 Mitotic

31) GalateanGemmate: Move B1 Galateangemmate Phlegmnation

32) Mitotic: Move B1 Mitotic Phlegmnation

33) GalateanGemmate: Attack B1 Phlegmnation

34) Mitotic: Discover Y1 Mitotic Y1 Fasst

35) GalateanGemmate: Sacrifice Y2 Phlegmnation
Move R1 Phlegmnation Mitotic
Move R1 Phlegmnation Mitotic

36) Mitotic: Attack R1 Mitotic

37) GalateanGemmate: Build R1 Mitotic
Catastrophe Mitotic Red
	GalateanGemmate: lol nice name

38) Mitotic: Build B2 Mitotic

39) GalateanGemmate: Trade G3 R3 Galateangemmate
	Mitotic: AHHHHHHHHHHHHHHHHHHHHH

40) Mitotic: Trade B2 Y2 Mitotic
	Mitotic: also thanks I was trying to think of something lewd to say but then I thought of fast and ass and I couldn't come up with anything else
	Mitotic: oh no
	GalateanGemmate: LOL fast ass I love it &#9829;

41) GalateanGemmate: Move G1 Phlegmnation Mitotic
	Mitotic: my ass is losing pretty fast lol
	Mitotic: &#9829; is that a heart?
	Mitotic: D'aww it is 
	GalateanGemmate: wow unicode support much? guess not :/

42) Mitotic: Trade G1 R1 Mitotic
	Mitotic: *swallows nervously*

43) GalateanGemmate: Build Y2 Phlegmnation

44) Mitotic: Attack G1 Mitotic

45) GalateanGemmate: Move Y2 Phlegmnation Mitotic

46) Mitotic: Trade Y2 R2 Mitotic
	GalateanGemmate: dang I forgot about how the attack mechanics work
I was trying to defend against a really terrifying attack earlier on when you sent your blues after me
but then I realized you couldn't do it
and now I was about to do the same thing

47) GalateanGemmate: Sacrifice R3 Galateangemmate
Attack R2 Mitotic
Attack R1 Mitotic
Attack B1 Mitotic
	Mitotic: I just glanced at a strategy guide and one of the first things it said was to not copy the sizes of your opponents stars bc then you'll be too close and it is too hard to defend with only one buffer star in between unless I had some amazing strategy for blitzing you.
Which I don't
	GalateanGemmate: oh! btw here's a strategy link
I think I read it a long time ago, before I even had the game
http://icehousegames.org/wiki/index.php?title=Homeworlds_strategy
	GalateanGemmate: oh hey you found a strategy guide! probably the one I just gave you!
	GalateanGemmate: yeah I think it might just highlight the turn advantage player 1 gets

48) Mitotic: Build G1 Mitotic

49) GalateanGemmate: Sacrifice R2 Mitotic
Attack G1 Mitotic
Attack G1 Mitotic
	Mitotic: yeah it is the same strategy guide I was looking at <3

	Mitotic: I forgot how attacking works (and that the y2 you had made it so you could take my r2), but even if I had remembered, I wouldn't have realized that you could, or even would, do that. Good move!
	GalateanGemmate: thanks! the reason I figured it out is that I was *really* worried about you doing it earlier
	GalateanGemmate: oops! I didn't mean to make that a rated game!
	GalateanGemmate: I mean IDK if it matters
	GalateanGemmate: and yeah attacking is p confusing
	Mitotic: GG GGG
	GalateanGemmate: yes! that was a good game! I think you're p close to beating me!


30076)
Variants: "Hard time"
Started: 2016.7.14, Ended: 2016.7.25
Participants: Draw5PlayAll (S), foksieloy (N)
Winner: foksieloy

1) foksieloy: Homeworld R1 B3 G3

2) Draw5PlayAll: Homeworld B1 R2 G3
	foksieloy: Hi, good luck, have fun!

3) foksieloy: Build G1 Foksieloy

4) Draw5PlayAll: Build G1 Draw5playall

5) foksieloy: Trade G1 B1 Foksieloy

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) foksieloy: Build G1 Foksieloy

8) Draw5PlayAll: Build Y1 Draw5playall

9) foksieloy: Trade G1 Y1 Foksieloy

10) Draw5PlayAll: Trade Y1 B1 Draw5playall

11) foksieloy: Build B2 Foksieloy
	Draw5PlayAll: I have played several games, but as of now I have never won. Though I might win in the future...

12) Draw5PlayAll: Discover B1 Draw5playall G3 Builders
	foksieloy: Well there is always a first time for everything. :)

13) foksieloy: Discover B2 Foksieloy G2 Tibbers

14) Draw5PlayAll: Build B2 Builders

15) foksieloy: Build B2 Tibbers

16) Draw5PlayAll: Build G1 Draw5playall

17) foksieloy: Build B3 Foksieloy

18) Draw5PlayAll: Trade B2 R2 Builders

19) foksieloy: Trade B2 R2 Tibbers

20) Draw5PlayAll: Discover G1 Draw5playall B3 Civilization

21) foksieloy: Build B2 Tibbers

22) Draw5PlayAll: Build B2 Builders

23) foksieloy: Discover B3 Foksieloy Y2 Valor

24) Draw5PlayAll: Build G1 Draw5playall

25) foksieloy: Trade B2 G2 Tibbers

26) Draw5PlayAll: Build G1 Civilization

27) foksieloy: Build B2 Tibbers

28) Draw5PlayAll: Trade B2 Y2 Builders

29) foksieloy: Trade B2 Y2 Tibbers

30) Draw5PlayAll: Trade G1 R1 Civilization

31) foksieloy: Discover G2 Tibbers Y3 Gnar

32) Draw5PlayAll: Build B2 Builders

33) foksieloy: Build G1 Gnar

34) Draw5PlayAll: Build G2 Civilization

35) foksieloy: Sacrifice Y2 Tibbers
Move G1 Gnar Draw5playall
Move G2 Gnar Draw5playall
Catastrophe Draw5playall Green

36) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move G2 Civilization Draw5playall

37) foksieloy: Discover B3 Valor Y3 Sion
	Draw5PlayAll: How... Did not see that coming!

38) Draw5PlayAll: Sacrifice G2 Draw5playall
Build R1 Civilization
Build R3 Builders
	Draw5PlayAll: Homeworld Stability is quite useful!!

	foksieloy: I usually play quite aggressive, so I always look for opportunities to sacrifice y2 and catastrophe a system with 2 in it.
	Draw5PlayAll: Weird, SDG did not stop me from losing.
	foksieloy: I am quite sure it used to. Also, the y1 sacrifice you did used to be illegal, you can't leave your home system empty even during turn. Are they programming a new version?

Anyway, I was 3 turns from winning. Move b3 to your system, trade to r3, win.
	Draw5PlayAll: You did not even really need to trade, as sacrificing an R2@Tibbers would have been sufficient no matter what I did.

The homeworlds rules at http://www.looneylabs.com/rules/homeworlds say:
"Game Over: It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over. However, you are eliminated from the game if both stars in your Homeworld are destroyed, or if none of the ships at your Homeworld are yours."

I interpreted the homeworlds as having "stability", so that instead of collapsing immediately, they take time to deteriorate, which can be stopped if you can get a ship there.
	foksieloy: Ok, I was wrong about the ships at homeworld rule it seems. Anyway, Good game! If you want a rematch, or a non ranked game, just send me a shout.


30024)
Variants: "Hard time"
Started: 2016.7.14, Ended: 2016.7.17
Participants: foksieloy (S), wil (N)
Winner: foksieloy

	foksieloy: Hi, been a while! Good luck, have fun!


30073)
Variants: "Unrated"
Started: 2016.7.15, Ended: 2016.7.15
Participants: Felix (S), GalateanGemmate (N)
Winner: Felix



30020)
Started: 2016.7.15, Ended: 2016.8.7
Participants: haymire (S), Felix (N)
Winner: haymire

1) Felix: Homeworld R1 B3 G3
	haymire: Hello again mate
	Felix: Hello! Good luck and have fun

2) haymire: Homeworld Y3 B2 G3

3) Felix: Build G1 Felix
	haymire: Let's try this set up
	Felix: That's a good one! My favorite color combo.

4) haymire: Build G1 Haymire

5) Felix: Trade G1 Y1 Felix

6) haymire: Trade G1 Y1 Haymire

7) Felix: B G1 Felix

8) haymire: Build G1 Haymire

9) Felix: Trade G1 B1 Felix

10) haymire: Trade G1 B1 Haymire

11) Felix: Build G1 Felix

12) haymire: Build G1 Haymire

13) Felix: Discover G1 Felix B2 Rim

14) haymire: Trade G1 R1 Haymire

15) Felix: Build G1 Felix

16) haymire: Build G1 Haymire

17) Felix: Build G2 Rim

18) haymire: Discover G1 Haymire Y1 Fret

19) Felix: Trade G2 Y2 Rim

20) haymire: Build Y2 Haymire

21) Felix: Build G2 Rim

22) haymire: Build G2 Haymire

23) Felix: Discover G2 Rim B1 Epic

24) haymire: Discover G2 Haymire R1 Scar

25) Felix: Sacrifice G3 Felix
Build G2 Rim
Build G3 Felix
Build G3 Epic

26) haymire: Sacrifice Y2 Haymire
Move B1 Haymire Fret
Move Y1 Haymire Scar

27) Felix: Build Y2 Rim

28) haymire: Move B1 Fret Rim

29) Felix: Sacrifice Y2 Rim
Move Y2 Rim Epic
Move G2 Rim Fret

30) haymire: Build R2 Haymire

31) Felix: Trade G2 R2 Epic

32) haymire: Trade R2 B2 Haymire

33) Felix: Build R2 Epic

34) haymire: Sacrifice G3 Haymire
Build B3 Haymire
Build G2 Fret
Build G3 Scar

35) Felix: Sacrifice R2 Epic
Attack B1 Rim
Attack G2 Fret

36) haymire: Trade B2 Y2 Haymire

37) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Felix
Build Y3 Epic

38) haymire: Sacrifice G3 Scar
Build G3 Scar
Build Y3 Scar
Build R2 Haymire

39) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Felix
Build B3 Rim

40) haymire: Sacrifice Y3 Scar
Move B3 Haymire Fret
Move B3 Fret Rim
Move B3 Rim Felix
Catastrophe Felix Blue

41) Felix: M G3 Epic Haymire
	haymire: hmmm... maybe that wasn't the best idea

42) haymire: Sacrifice G3 Scar
Build G3 Scar
Build Y3 Scar
Build R2 Haymire
	Felix: Haha yeah, maybe not!
	Draw5PlayAll: I generally get quite nervous when destroying half the homeworld causes a direct connection. Of course, sometimes this works in my favor.
	haymire: Didn't feel like I had much else I could do

43) Felix: T B3 R3 Rim

44) haymire: Sacrifice Y3 Scar
Move R1 Haymire Felix
Move R2 Haymire Felix
Move R2 Haymire Felix
Catastrophe Felix Red
	haymire: Good game mate, 
	Felix: Likewise. Nice work laying the bait like that. I definitely overlooked that!
	Draw5PlayAll: Can you explain?



30083)
Started: 2016.7.15, Ended: 2016.8.1
Participants: ladybugsfly (S), Steele (N)
Winner: ladybugsfly

1) Steele: H B2 G1 Y3

2) ladybugsfly: Homeworld Y3 B1 G3

3) Steele: B Y1 Steele

4) ladybugsfly: Build G1 Ladybugsfly

5) Steele: Trade Y1 G1 Steele

6) ladybugsfly: Build G2 Ladybugsfly

7) Steele: Build G2 Steele

8) ladybugsfly: Trade G1 R1 Ladybugsfly

9) Steele: B Y1 Steele
	ladybugsfly: I absentmindedly typed p for pink instead of r for red. Glad it error-ed out and didn't make a move I wasn't expecting. 0:-)

10) ladybugsfly: Discover G2 Ladybugsfly B2 Ravenclaw

11) Steele: Discover G2 Steele Y3 Alpha

12) ladybugsfly: Build G1 Ladybugsfly

13) Steele: Discover G2 Alpha Y2 Beta

14) ladybugsfly: Discover G1 Ladybugsfly Y2 Mystic

15) Steele: Build G2 Beta

16) ladybugsfly: Sacrifice G3 Ladybugsfly
Build G3 Mystic
Build G3 Mystic
Build G3 Ravenclaw

17) Steele: Trade Y1 R1 Steele

18) ladybugsfly: Move G3 Mystic Ladybugsfly

19) Steele: Build Y1 Steele

20) ladybugsfly: Sacrifice G2 Ravenclaw
Build R1 Ladybugsfly
Build R2 Ladybugsfly

21) Steele: B G2 Steele

22) ladybugsfly: Discover G1 Mystic Y3 Squirtle

23) Steele: Move G1 Steele Squirtle

24) ladybugsfly: Sacrifice R1 Ladybugsfly
Attack G1 Squirtle

25) Steele: M G2 Steele Squirtle

26) ladybugsfly: Move G1 Squirtle Steele

27) Steele: A G1 Steele

28) ladybugsfly: Move G1 Squirtle Steele

29) Steele: M G1 Steele Squirtle

30) ladybugsfly: Sacrifice R2 Ladybugsfly
Attack R1 Steele
Attack Y1 Steele

31) Steele: Trade Y3 R3 Steele

32) ladybugsfly: Sacrifice G3 Ravenclaw
Build R1 Steele
Build R2 Steele
Catastrophe Steele R
Pass



30082)
Variants: "Unrated"
Started: 2016.7.15, Ended: 2016.8.1
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld R1 B3 G3

2) Felix: H B1 Y2 G3
	Draw5PlayAll: There has been analysis and 1-3 vs 1-2 is perfectly even, off by a margin that could be statistical error.

3) Draw5PlayAll: Build G1 Draw5playall
	Felix: We shall see!

4) Felix: Build G1 Felix

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Felix: Trade G1 B1 Felix

7) Draw5PlayAll: Build G1 Draw5playall

8) Felix: Build B1 Felix

9) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse

10) Felix: Discover B1 Felix G3 Wild

11) Draw5PlayAll: Build G1 Icehouse

12) Felix: Build B2 Wild

13) Draw5PlayAll: Trade G1 Y1 Icehouse
	Felix: We have decided that taking control of the blue resources in this system will be the most efficient way to expand our fleet.

14) Felix: Trade B2 Y2 Wild
	Draw5PlayAll: Meanwhile, we have been meaning to expand out over the galaxy, and wish to create warp-capable ships. Interestingly enough, our favorite type of Fluxx card is the New Rule...

15) Draw5PlayAll: Build G1 Draw5playall

16) Felix: Build B2 Wild

17) Draw5PlayAll: Trade G1 R1 Draw5playall

18) Felix: Trade B2 R2 Wild

19) Draw5PlayAll: Build G1 Draw5playall

20) Felix: Build B2 Wild

21) Draw5PlayAll: Build Y1 Icehouse

22) Felix: Discover B2 Wild G2 Erness

23) Draw5PlayAll: Build Y2 Draw5playall

24) Felix: Build Y3 Wild

25) Draw5PlayAll: Move R1 Draw5playall Icehouse

26) Felix: Move Y2 Wild Erness

27) Draw5PlayAll: Build G1 Icehouse
	Draw5PlayAll: Why are the pieces arranged pseudo-randomly in a 5x5 grid?

28) Felix: Build G2 Felix
	Felix: You mean why does the visual layout differ each time? Not sure. There must be some algorithm telling it how to lay out the grid depending on which systems are created first. And then the ships just spawn randomly in each block I suppose.

29) Draw5PlayAll: Build G2 Icehouse

30) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y3 Wild
Build Y3 Erness
	Draw5PlayAll: Like how wild is actually on my side while Icehouse and erness are on yours? I hope SDG2.0 puts them in a better position relating more to the connections.
	Felix: *shrug* I don't know how it works, really. I've just gotten kind of used to seeing the connections wherever they are, rather than needing them to be laid out in order. It may not make that much sense, but then again, we are in outer space :)

31) Draw5PlayAll: Discover G1 Icehouse B3 Cool

32) Felix: Sacrifice G3 Felix
Build B2 Wild
Build B3 Erness
Build G3 Felix

33) Draw5PlayAll: Sacrifice G1 Icehouse
Build G1 Cool
	Felix: You let me get all the blue again :)

34) Felix: Sacrifice Y2 Erness
Move B3 Erness Draw5playall
Move Y3 Erness Draw5playall
	Draw5PlayAll: Green teleportation

35) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move G1 Cool Felix
Move G1 Cool Felix
Catastrophe Felix Green

36) Felix: Sacrifice R2 Wild
Attack G3 Draw5playall
Attack Y1 Draw5playall
	Draw5PlayAll: One...move...short...

Good game!

37) Draw5PlayAll: Sacrifice G2 Icehouse
Build G1 Draw5playall
Build G1 Draw5playall
	Felix: Pretty close! Good game. What was your plan to finish me off?
	Draw5PlayAll: Nothing. I just saw a trick to threaten your large, but...

I could delay the game for 4 more moves but there is no point.

38) Felix: Pass
Catastrophe Draw5playall Green
	Felix: Good game! I hope you've learned some things :)
	Draw5PlayAll: That I need a red ship to match the number of larges my opponent can invade with?



30096)
Variants: "Unrated"
Started: 2016.7.19, Ended: 2016.8.7
Participants: Draw5PlayAll (S), Kalimantan (N)
Winner: Draw5PlayAll

1) Kalimantan: Homeworld Y3 B2 G3

2) Draw5PlayAll: Homeworld B1 R3 G3

3) Kalimantan: Build G1 Kalimantan
	Draw5PlayAll: Have you ever won a game of homeworlds?
	Kalimantan: Nope never. My first game ever was the 3p with u and felix.

4) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Oh, interesting. I had to lose seven games before winning that one...

--

We have prepared the civilization vessels to peacefully explore the galaxy.

5) Kalimantan: Discover G1 Kalimantan Y1 Fleeting

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Kalimantan: Discover G1 Fleeting B2 Dagoba

8) Draw5PlayAll: Build G1 Draw5playall

9) Kalimantan: Build G1 Dagoba

10) Draw5PlayAll: Trade G1 B1 Draw5playall

11) Kalimantan: Trade G1 R1 Dagoba

12) Draw5PlayAll: Discover B1 Draw5playall G2 Draw3play2

13) Kalimantan: Build R1 Dagoba

14) Draw5PlayAll: Build Y1 Draw5playall

15) Kalimantan: Build R1 Dagoba

16) Draw5PlayAll: Move Y1 Draw5playall Draw3play2

17) Kalimantan: Build G1 Dagoba

18) Draw5PlayAll: Build B1 Draw3play2

19) Kalimantan: Trade G1 Y1 Dagoba

20) Draw5PlayAll: Build Y2 Draw3play2

21) Kalimantan: Build Y2 Dagoba

22) Draw5PlayAll: Trade Y2 R2 Draw3play2

23) Kalimantan: Sacrifice Y2 Dagoba
Move R1 Dagoba Draw5playall
Move R1 Dagoba Draw5playall

24) Draw5PlayAll: Build B2 Draw3play2

25) Kalimantan: Build R2 Dagoba

26) Draw5PlayAll: Discover B2 Draw3play2 G1 Keeper

27) Kalimantan: Build Y2 Dagoba

28) Draw5PlayAll: Build B3 Keeper

29) Kalimantan: Sacrifice G1 Dagoba
Build G1 Kalimantan

30) Draw5PlayAll: Build B3 Keeper

31) Kalimantan: Move R1 Dagoba Draw5playall
Catastrophe Draw5playall R

32) Draw5PlayAll: Build B3 Draw3play2

33) Kalimantan: Move Y1 Dagoba Draw5playall
	Draw5PlayAll: You have no blue :P

34) Draw5PlayAll: Move R2 Draw3play2 Draw5playall

35) Kalimantan: Move Y1 Draw5playall Draw3play2

36) Draw5PlayAll: Trade Y1 R1 Draw3play2

37) Kalimantan: Sacrifice R2 Dagoba
Attack R1 Draw3play2
Attack B1 Draw3play2

38) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack R1N Draw3play2
Attack B1N Draw3play2
Pass

39) Kalimantan: Move Y1 Draw3play2 Draw5playall

40) Draw5PlayAll: Trade Y1 R1 Draw5playall

41) Kalimantan: Move Y1 Draw5playall Dagoba
	Draw5PlayAll: Not sure what you are doing, but I do know our homeworlds are connected.

42) Draw5PlayAll: Build R1 Draw5playall

43) Kalimantan: Trade Y2 G2 Dagoba

44) Draw5PlayAll: Build R2 Draw3play2

45) Kalimantan: Sacrifice G3 Kalimantan
Build G1 Dagoba
Build G2 Dagoba
Build G3 Kalimantan

46) Draw5PlayAll: Trade R1 Y1 Draw5playall

47) Kalimantan: Trade G2 Y2 Dagoba
	Draw5PlayAll: Ugh, I let you have a factory... though I think I might be safe. For now.
	Draw5PlayAll: This is tenser than I thought. But I have a plan.

48) Draw5PlayAll: Move G3 Draw5playall Kalimantan

49) Kalimantan: Sacrifice Y2 Dagoba
Move Y1 Dagoba Draw5playall
Move Y1 Draw5playall Kalimantan
	Draw5PlayAll: How do you like the, uh, visitor?

Good game.
	Draw5PlayAll: Well, I may have spoken too soon. If you see a way out, please let me know by making the move.

50) Draw5PlayAll: Sacrifice R2 Draw3play2
Attack G1 Kalimantan
Attack G3 Kalimantan

	Kalimantan: Well gg.


30070)
Variants: "Unrated"
Started: 2016.7.19, Ended: 2016.10.1
Participants: GalateanGemmate (S), Mitotic (N)
Winner: GalateanGemmate

1) Mitotic: Homeworld Y3 G2 B3

2) GalateanGemmate: Homeworld R1 B2 G3

3) Mitotic: Build B1 Mitotic

4) GalateanGemmate: Build G1 Galateangemmate

5) Mitotic: Trade B1 Y1 Mitotic

6) GalateanGemmate: Build G1 Galateangemmate

7) Mitotic: Build B1 Mitotic

8) GalateanGemmate: Trade G1 B1 Galateangemmate

9) Mitotic: Trade B1 G1 Mitotic
	GalateanGemmate: &#9829;

10) GalateanGemmate: Trade G1 Y1 Galateangemmate

11) Mitotic: Discover G1 Mitotic R1 Friendship

12) GalateanGemmate: Build G1 Galateangemmate

13) Mitotic: Build B1 Mitotic
	GalateanGemmate: that is a cute name!

14) GalateanGemmate: Trade B1 R1 Galateangemmate
	Mitotic: you know who else has a cute name?
You!

15) Mitotic: Trade B1 G1 Mitotic

16) GalateanGemmate: Build G2 Galateangemmate

17) Mitotic: Build G2 Mitotic

18) GalateanGemmate: Trade G2 B2 Galateangemmate

19) Mitotic: Trade G2 R2 Mitotic

20) GalateanGemmate: Discover B2 Galateangemmate G3 Laughter

21) Mitotic: Move Y1 Mitotic Friendship

22) GalateanGemmate: Build G2 Galateangemmate

23) Mitotic: Build G2 Friendship

24) GalateanGemmate: Trade G1 B1 Galateangemmate

25) Mitotic: Build B1 Mitotic

26) GalateanGemmate: Discover G2 Galateangemmate Y3 Moscow

27) Mitotic: Move B1 Mitotic Friendship

28) GalateanGemmate: Move R1 Galateangemmate Laughter

29) Mitotic: Build R2 Mitotic

30) GalateanGemmate: Trade B2 Y2 Laughter

31) Mitotic: Move R2 Mitotic Friendship

32) GalateanGemmate: Build G1 Moscow

33) Mitotic: Move R2 Friendship Moscow

34) GalateanGemmate: Sacrifice R1 Laughter
Attack R2 Moscow

35) Mitotic: Trade G1 R1 Mitotic

36) GalateanGemmate: Build G1 Galateangemmate

37) Mitotic: Move R1 Mitotic Friendship

38) GalateanGemmate: Sacrifice G3 Galateangemmate
Build G3 Galateangemmate
Build G3 Galateangemmate
Build Y1 Laughter

39) Mitotic: Move R1 Friendship Laughter

40) GalateanGemmate: Discover G1 Galateangemmate B3 Fun

41) Mitotic: Attack Y1 Laughter

42) GalateanGemmate: Sacrifice G3 Galateangemmate
Build G3 Fun
Build R2 Moscow
Build R3 Moscow

43) Mitotic: Move R1 Laughter Friendship

44) GalateanGemmate: Move R2 Moscow Friendship

45) Mitotic: Move R1 Friendship Moscow

46) GalateanGemmate: Sacrifice R3 Moscow
Attack G2 Friendship
Attack G1 Friendship
Attack Y1 Friendship

47) Mitotic: Build B1 Mitotic

48) GalateanGemmate: Sacrifice G3 Fun
Build G3 Fun
Build B2 Galateangemmate
Build Y2 Galateangemmate

49) Mitotic: Build R3 Mitotic

50) GalateanGemmate: Trade G3 Y3 Fun

51) Mitotic: Trade R2 Y2 Mitotic
	GalateanGemmate: you can also great r3s
	GalateanGemmate: create*

52) GalateanGemmate: Build G3 Fun
	GalateanGemmate: oh unless the reason you made the blue ship was so there's only one way in or out of your homeworld?

53) Mitotic: Attack G1 Moscow

54) GalateanGemmate: Move Y1 Galateangemmate Laughter

55) Mitotic: Build R2 Moscow
	Mitotic: rn I'm basically on the defensive until I can get another buffer system going

56) GalateanGemmate: Sacrifice R2 Moscow
Attack R2 Moscow
Attack G1 Moscow
	GalateanGemmate: got it

57) Mitotic: Attack G1 Moscow

58) GalateanGemmate: Move B1 Galateangemmate Laughter

59) Mitotic: Build R2 Moscow

60) GalateanGemmate: Sacrifice R2 Moscow
Attack R2 Moscow
Attack R1 Moscow

61) Mitotic: Move G1 Moscow Friendship

62) GalateanGemmate: Move Y1 Laughter Friendship

63) Mitotic: Build R2 Mitotic
	GalateanGemmate: phew! I just realized you could've sacrificed that medium yellow you have to blow up one of my stars

64) GalateanGemmate: Sacrifice Y2 Laughter
Move Y1 Friendship Mitotic
Move Y1 Friendship Mitotic
Catastrophe Mitotic Yellow



30092)
Started: 2016.7.23, Ended: 2016.7.23
Participants: Ryzorrin (S), ts52 (N)
Winner: ts52



30078)
Variants: "Hard time"
Started: 2016.7.26, Ended: 2016.7.29
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 Y2 G3
	Felix: You back?

	Draw5PlayAll: This is why I will never do Standing Challenges again.


30039)
Variants: "Hard time"
Started: 2016.7.26, Ended: 2016.8.25
Participants: Felix (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 B2 G3

2) Felix: Homeworld Y1 B3 G3
	Simon: Have fun!
	Felix: You too!

3) Simon: Build G1 Simon

4) Felix: Build G1 Felix

5) Simon: Trade G1 Y1 Simon

6) Felix: Trade G1 Y1 Felix

7) Simon: Build Y2 Simon

8) Felix: Build Y2 Felix

9) Simon: Discover Y2 Simon G3 G3

10) Felix: Trade Y2 R2 Felix

11) Simon: Build Y2 G3

12) Felix: Discover Y1 Felix G2 Rim

13) Simon: Discover Y2 G3 B2 B2

14) Felix: Build R1 Felix

15) Simon: Build Y2 Simon

16) Felix: Build Y3 Rim

17) Simon: Build Y3 G3

18) Felix: Discover Y1 Rim B3 Opus

19) Simon: Sacrifice Y1 Simon
Move Y3 G3 B2

20) Felix: Build G1 Felix

21) Simon: Trade Y2 R2 B2

22) Felix: Trade G1 B1 Felix

23) Simon: Sacrifice G3 Simon
Build Y1 G3
Build Y2 B2
Build Y3 Simon

24) Felix: Move R1 Felix Rim

25) Simon: Trade Y2 G2 B2

26) Felix: Build G1 Felix

27) Simon: Build Y2 B2

28) Felix: Build R1 Rim

29) Simon: Build G1 B2

30) Felix: Discover G1 Felix B2 Ledge

31) Simon: Trade G1 B1 B2

32) Felix: Build G1 Ledge

33) Simon: Move B1 B2 G3

34) Felix: Move R1 Rim Opus

35) Simon: Sacrifice G2 B2
Build B1 G3
Build B3 G3

36) Felix: Discover Y3 Rim G3 Hangar

37) Simon: Move Y2 Simon Opus

38) Felix: Sacrifice G3 Felix
Build R2 Rim
Build R3 Opus
Build R3 Felix

39) Simon: Sacrifice Y2 Opus
Move B3 G3 Rim
Move B1 G3 B2

40) Felix: B R3 Rim

41) Simon: Sacrifice Y1 G3
Move B3 Rim Felix

42) Felix: Attack B3 Felix

43) Simon: Move B1 B2 Felix
Catastrophe Felix B

44) Felix: Sacrifice Y3 Hangar
Move R3 Rim G3
Move Y1 Opus Simon
Move R1 Opus Simon

45) Simon: Move Y2 G3 Felix

46) Felix: Sacrifice R2 Rim
Attack Y2 Felix
Attack B1 G3

47) Simon: Move Y3 B2 Felix

48) Felix: Sacrifice Y2 Felix
Move G1 Ledge Felix
Move R3 Opus Simon

49) Simon: Sacrifice R2 B2
Attack R3 Felix
Attack R3 Simon

50) Felix: Sacrifice G1 Ledge
Build R2 Simon
Catastrophe Simon Red

51) Simon: Sacrifice R3 Felix
Attack R2 Felix
Attack G1 Felix
Attack Y1 Simon
	Felix: Really nice move.
	Draw5PlayAll: This is sure to be an exciting conclusion. If R2N@B2 was sacrificed, Simon would only attack two of the three ships and thus Felix could blast the alien army...

	Felix: What I would have given to have a B2 during the last several moves...
	Simon: gg! Sharpest ending in a while, yes :)
	Simon: Always happy to rematch!
	Draw5PlayAll: Would you have given up your R3@g3 for a B2?


30118)
Variants: "Unrated"
Started: 2016.7.26, Ended: 2016.8.25
Participants: Kalimantan (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 R1 G3

2) Kalimantan: Homeworld Y3 B2 G3
	Felix: Good luck and have fun!

3) Felix: Build G1 Felix
	Kalimantan: Thanks

4) Kalimantan: Build G1 Kalimantan

5) Felix: Trade G1 Y1 Felix

6) Kalimantan: Trade G1 R1 Kalimantan

7) Felix: Build Y1 Felix

8) Kalimantan: Discover R1 Kalimantan R1 Redplanet

9) Felix: Build Y1 Felix

10) Kalimantan: Build G1 Kalimantan

11) Felix: Discover Y1 Felix G2 Rim

12) Kalimantan: Build G1 Kalimantan

13) Felix: Build Y2 Rim

14) Kalimantan: Move G1 Kalimantan Redplanet

15) Felix: Build Y2 Felix

16) Kalimantan: Trade G3 Y3 Kalimantan

17) Felix: D Y1 Rim G1 Arkos

18) Kalimantan: Move Y3 Kalimantan Arkos

19) Felix: Trade Y2 R2 Felix

20) Kalimantan: Build R2 Redplanet

21) Felix: Build Y2 Rim

22) Kalimantan: Sacrifice R1 Redplanet
Attack Y1N Arkos

23) Felix: B G2 Felix

24) Kalimantan: Build G2 Redplanet
	Draw5PlayAll: Interesting very interesting

25) Felix: Sacrifice Y2 Rim
Move Y2 Rim Arkos
Move Y2 Arkos Kalimantan

26) Kalimantan: Sacrifice G2 Redplanet
Build G2 Kalimantan
Build G2 Kalimantan

27) Felix: Sacrifice R2 Felix
Attack G2 Kalimantan
Attack G2 Kalimantan

28) Kalimantan: Move Y3 Arkos Kalimantan

29) Felix: S G2 Felix
B Y2 Kalimantan
B G2 Kalimantan
C Kalimantan Yellow
C Kalimantan Green

	Felix: Good game! I didn't know it was possible to do a double catastrophe like that... 


30097)
Variants: "Unrated, Sinister"
Started: 2016.7.27, Ended: 2016.11.23
Participants: Felix (S), Kalimantan (W), Skully (N), Draw5PlayAll (E)
Winner: Felix

1) Skully: Homeworld G3 Y2 B3

2) Draw5PlayAll: Homeworld R3 B1 G3

3) Felix: Homeworld G2 R3 B3

4) Kalimantan: Homeworld G2 B1 Y3

5) Skully: Build B1 Skully
	Kalimantan: Hey what does it mean that the variant is sinister?
	Draw5PlayAll: Objective is to destroy the guy on your left.
Skulls must destroy Draw5PlayAll (me)
I must destroy Felix (annoyingly)
Felix must destroy Kalimantan
Kali must destroy Skully
	Draw5PlayAll: If someone other than your right destroys you, the game continues without you. So if I was destroyed by Felix (say) then Skully's target becomes Felix.

6) Draw5PlayAll: Build G1 Draw5playall

7) Felix: Build B1 Felix
	Draw5PlayAll: There is a flaw though. If I am facing imminent doom from Skully, I might set up the conditions so that one of the other two players can call catastrophe and eliminate me, preventing Skully from winning.

8) Kalimantan: Build Y1 Kalimantan

9) Skully: Discover B1 Skully Y1 Evil

10) Draw5PlayAll: Build G1 Draw5playall
Pass
Pass
Pass
Pass
Pass
Pass
Pass

11) Felix: Trade B1 Y1 Felix

12) Kalimantan: Build Y1 Kalimantan

13) Skully: Trade B1 Y1 Evil

14) Draw5PlayAll: Trade G1 B1 Draw5playall

15) Felix: Build Y2 Felix

16) Kalimantan: Discover Y1 Kalimantan B3 Hell
	Draw5PlayAll: The Evil system is completely redundant!

17) Skully: Build B1 Skully
	Skully: Redundent?? No... Evil?? Yesss! 

18) Draw5PlayAll: Build G1 Draw5playall

19) Felix: T Y1 G1 Felix
	Draw5PlayAll: There really is no point to this conspiracy. If I really, really have to move out I can easily trade my G3 into a Y3 to give myself movement powers.
	Skully: Ah that is true. Id have to be just plane Sinister if that were part of my plan. ;)

20) Kalimantan: Build Y1 Kalimantan
	Felix: I see what you did there :p
	Draw5PlayAll: *I'd *plain

Kali should be the one to break the conspiracy. After all, the more damage I do to Felix, the less Kali has to worry about Felix.

21) Skully: Move B1 Skully Evil

22) Draw5PlayAll: Trade G1 R1 Draw5playall

23) Felix: Build Y2 Felix

24) Kalimantan: Discover Y1 Kalimantan G3 Paradise

25) Draw5PlayAll: Trade G3 Y3 Draw5playall

26) Felix: Discover Y2 Felix G1 Lykos

27) Kalimantan: Trade Y1 G1 Kalimantan

28) Draw5PlayAll: Discover B1 Draw5playall G2 Keeper
	Draw5PlayAll: Hahahaha
	Skully: Dam srry guys been having issues wit my internet srry guys
	Felix: No problem. Sorry you had to drop out!

29) Felix: B B1 Felix
	Draw5PlayAll: Blame me. After all, normally I would give a 1-3 day allowance before forcing a resignation.
	Draw5PlayAll: Seriously??
	Draw5PlayAll: I will keep Kalimantan purely because I cannot fight Felix alone!

30) Kalimantan: Move G1 Kalimantan Hell

31) Draw5PlayAll: Build B2 Keeper

32) Felix: Move B1 Felix Lykos
	Draw5PlayAll: Felix is not so nice...

33) Kalimantan: Build G1 Hell

34) Draw5PlayAll: Build G2 Draw5playall
	Felix: What does the vote thing mean?


35) Felix: Build B2 Lykos
	Draw5PlayAll: System console.

36) Kalimantan: Build G2 Hell

37) Draw5PlayAll: Build G3 Draw5playall
	Felix: That doesn't help me :P

38) Felix: Discover G1 Felix Y1 Pax
	Draw5PlayAll: Go to your user page. It should have a thing called system console.

39) Kalimantan: Build Y2 Kalimantan

40) Draw5PlayAll: Discover G2 Draw5playall B2 Icehouse

41) Felix: Build G3 Pax
	Draw5PlayAll: Hmmmm....
	Draw5PlayAll: For a second I thought I had just made a huge mistake. But really, Felix just set it up on that move.

42) Kalimantan: Trade G2 B2 Hell

43) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Icehouse
Build G3 Draw5playall
Build Y2 Draw5playall

44) Felix: Sacrifice G3 Pax
Build G3 Pax
Build Y3 Lykos
Build Y3 Felix

45) Felix: Trade Y2 R2 Lykos

46) Draw5PlayAll: Move Y3 Draw5playall Keeper
	Draw5PlayAll: Funny how I went from frozen out of yellow to leading pip counts 17-14-11-5. Though that is in turn order so it might be 17-20-14 next time it comes to my turn.

47) Felix: Sacrifice Y2 Felix
Move Y3 Lykos Keeper
Move G3 Pax Keeper
	Draw5PlayAll: I see a move for West. Sac your Y2@Kalimantan and move two greens at Hell into Pax, blowing up his factory. This move is completely optional.
	Draw5PlayAll: Time to resume the clocks.
	Draw5PlayAll: What I mean is, I have belayed the orders to assist our galactic neighbors in life support. In approximately 84 hours they will be dead.

48) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover Y3 Keeper B3 B3
Move G1 Draw5playall Keeper

49) Felix: Sacrifice Y3 Felix
Move Y3 Keeper Draw5playall
Move G3 Keeper Draw5playall
Pass

50) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R1 Draw5playall
Build R1 Draw5playall
Build R1 Draw5playall
	Felix: Just us then, eh?
	Draw5PlayAll: 4P never seems to work. Someone ALWAYS seems to forfeit on time. :(

Me vs you vs dragon has not had that happen yet though!

51) Felix: Catastrophe Draw5playall Red
Pass



30110)
Started: 2016.7.27, Ended: 2016.10.25
Participants: ts52 (S), Ryzorrin (N)
Winner: ts52

1) Ryzorrin: Homeworld B2 R1 G3

2) ts52: Homeworld B2 Y3 G3

3) Ryzorrin: Build G1 Ryzorrin
	ts52: Have a good game!

4) ts52: Build G1 Ts52
	Ryzorrin: Thanks, you too.  I only learned how to play this game over the weekend at Looney Con.
	ts52: That's great! I was bummed I couldn't make it. Hopefully they'll do it again next year.

5) Ryzorrin: Trade G1 Y1 Ryzorrin

6) ts52: Build G1 Ts52
	Ryzorrin: I hope so too!  It was utterly fantastic.

7) Ryzorrin: Build Y1 Ryzorrin

8) ts52: Discover G1 Ts52 B1 Gonzo

9) Ryzorrin: Trade Y1 B1 Ryzorrin
	Ryzorrin: trade y1 b1 Ryzorrin

10) ts52: Trade G1 Y1 Ts52
	Draw5PlayAll: A while back I *almost* typed my move into the chat box, but then I realized what happened. Huh.

11) Ryzorrin: Build G1 Ryzorrin
	ts52: Sorry for the delay.

	Ryzorrin: No problem.  I figured this game would take quite awhile.

12) ts52: Move Y1 Ts52 Gonzo

13) Ryzorrin: Discover G1 Ryzorrin B3 Click
	ts52: Thanks for understanding. I'm afraid I'm going off grid again until Friday. But I'll be back online to make my move Friday night.

14) ts52: Build G1 Ts52

15) Ryzorrin: Build G2 Click

16) ts52: Build G2 Gonzo

17) Ryzorrin: Trade G2 Y2 Click

18) ts52: Trade G2 B2 Gonzo

19) Ryzorrin: Build G2 Click

20) ts52: Build G2 Gonzo

21) Ryzorrin: Trade G2 R2 Click

22) ts52: Trade G1 R1 Ts52

23) Ryzorrin: Build G1 Ryzorrin

24) ts52: Build G2 Ts52

25) Ryzorrin: Sacrifice G3 Ryzorrin
Build G2 Click
Build B1 Ryzorrin
Build G3 Ryzorrin

26) ts52: Discover B2 Gonzo G3 Kermit

27) Ryzorrin: Discover B1 Ryzorrin Y3 Knock

28) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Kermit
Build B3 Kermit

29) Ryzorrin: Move B1 Ryzorrin Kermit
Catastrophe Kermit B

30) ts52: Discover G2 Gonzo G3 Kermit

31) Ryzorrin: Move R2 Click Gonzo

32) ts52: Discover G2 Ts52 Y1 Bigbird

33) Ryzorrin: Attack Y1 Gonzo

34) ts52: Sacrifice G2 Kermit
Build G2 Ts52
Build G3 Gonzo

35) Ryzorrin: Sacrifice G3 Ryzorrin
Build G3 Ryzorrin
Build Y2 Gonzo
Build Y2 Click

36) ts52: Sacrifice R1 Ts52
Attack R2 Gonzo

37) Ryzorrin: Build Y3 Ryzorrin

38) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build R1 Gonzo
Build R1 Gonzo

39) Ryzorrin: Sacrifice B1 Knock
Trade Y2 R2 Gonzo
Catastrophe Gonzo R

40) ts52: T G1 R1 Gonzo

41) Ryzorrin: Discover Y1 Gonzo R3 Tap

42) ts52: Trade G3 Y3 Gonzo
	Ryzorrin: discover y1 gonzo r3 Tap
	Ryzorrin: Ah shoot I did that again.

43) Ryzorrin: Discover G2 Click B1 Clap

44) ts52: Sacrifice G3 Ts52
Build G1 Bigbird
Build G3 Ts52
Build Y2 Gonzo
	Ryzorrin: g2 click discover b1 Clap

45) Ryzorrin: Build G3 Clap
	Draw5PlayAll: I keep putting chat messages into the notebook. Of course I usually catch before I even finish.
	ts52: Yeah, I'm not sure I see much point in the notebook.

46) ts52: Trade G2 R2 Ts52
	Draw5PlayAll: Record ideas? Like you find this killer strategy idea and you want to not forget?

47) Ryzorrin: Trade G3 R3 Clap

48) ts52: Move Y3 Gonzo Tap

49) Ryzorrin: Discover Y3 Ryzorrin B3 Thud

50) ts52: Attack Y1 Tap

51) Ryzorrin: Sacrifice G3 Ryzorrin
Build G2 Click
Build G3 Clap
Build G3 Ryzorrin

52) ts52: Sacrifice G2 Bigbird
Build R1 Ts52
Build R2 Gonzo

53) Ryzorrin: Move G1 Click Clap

54) ts52: Trade R2 B2 Ts52
	Draw5PlayAll: Sounds vs Muppets.

55) Ryzorrin: Sacrifice Y3 Thud
Move G3 Clap Ts52
Move G1 Clap Ts52
Move G2 Clap Ts52
Catastrophe Ts52 G

56) ts52: Sacrifice Y2 Gonzo
Move Y3 Tap Gonzo
Move Y3 Gonzo Ts52

57) Ryzorrin: Move G2 Click Clap

58) ts52: Move B2 Ts52 Bigbird

59) Ryzorrin: Trade Y2 G2 Click

60) ts52: Build B1 Bigbird

61) Ryzorrin: Build R2 Clap

62) ts52: Build B3 Bigbird

63) Ryzorrin: Trade R3 B3 Clap

64) ts52: Move B3 Bigbird Tap

65) Ryzorrin: Sacrifice Y2 Click
Move R2 Clap Click
Move R2 Click Bigbird

66) ts52: Sacrifice R1 Gonzo
Attack R2 Bigbird

67) Ryzorrin: Sacrifice G3 Ryzorrin
Build G1 Click
Build G2 Clap
Build G3 Ryzorrin

68) ts52: Build G3 Bigbird

69) Ryzorrin: Sacrifice G3 Ryzorrin
Build G3 Clap
Build G3 Ryzorrin
Build Y2 Ryzorrin

70) ts52: Move G1 Bigbird Tap

71) Ryzorrin: Trade G3 R3 Clap

72) ts52: Build G3 Tap

73) Ryzorrin: Sacrifice G1 Ryzorrin
Build R1 Clap

74) ts52: Sacrifice G3 Tap
Build G1 Bigbird
Build G3 Tap
Build Y2 Tap

75) Ryzorrin: Trade G2 Y2 Clap

76) ts52: Discover G3 Bigbird Y3 Zoe

77) Ryzorrin: Trade G2 R2 Click

78) ts52: Build R3 Bigbird

79) Ryzorrin: Move R3 Clap Zoe
	Draw5PlayAll: These are diverse systems! IDIC.

80) ts52: Sacrifice R1 Ts52
Attack R3 Zoe

81) Ryzorrin: Sacrifice Y2 Clap
Move R1 Clap Ts52
Move B3 Clap Ts52
	Ryzorrin: Move r3 clap zoe

82) ts52: Sacrifice R2 Bigbird
Attack R1 Ts52
Attack B3 Ts52

83) Ryzorrin: Build G2 Clap

84) ts52: Sacrifice Y3 Ts52
Move B3 Tap Ryzorrin
Move G3 Tap Ryzorrin
Move G3 Zoe Ryzorrin

85) Ryzorrin: Sacrifice R2 Click
Attack B3 Ryzorrin
Attack G3 Ryzorrin

86) ts52: Sacrifice R3 Bigbird
Attack G3 Ryzorrin
Attack G3 Ryzorrin
Attack B3 Ryzorrin

	ts52: Thanks for the game!


30116)
Variants: "Hard time"
Started: 2016.7.27, Ended: 2016.7.30
Participants: wil (S), mxpf (N)
Winner: mxpf

1) mxpf: Homeworld G1 B2 Y3

	mxpf: Hi! This is my first time playing Homeworlds online...let's see how I do!
	Draw5PlayAll: I think you should challenge someone else. Wil has not responded in weeks.

I am willing to play, just select Draw5PlayAll in the Challenge Whom field.
	mxpf: I KILLED IT!
	Draw5PlayAll: Uhhh... the user has not logged on for a month. It's anyone's guess if&when he will return.
	mxpf: I kid, I kid.


30137)
Variants: "Hard time"
Started: 2016.7.28, Ended: 2016.7.29
Participants: Draw5PlayAll (S), mxpf (N)
Winner: Draw5PlayAll

1) mxpf: Homeworld G1 B2 Y3

2) Draw5PlayAll: Homeworld R1 B3 G3
	mxpf: Hi! Thanks for finding me in that other game. Good luck!
	mxpf: Hi! Thanks for finding me in that other game. Good luck!
	mxpf: Weird, not sure why that message double posted, haha
	Draw5PlayAll: Well, I chose the option to observe all Homeworlds games. Double posting is NOT a new bug.

3) mxpf: Build Y1 Mxpf

4) Draw5PlayAll: Build G1 Draw5playall

5) mxpf: Trade Y3 B3 Mxpf

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) mxpf: Discover B3 Mxpf Y3 Mutaranebula
	Draw5PlayAll: We needed to obtain warp drives to pursue our peaceful quest for new life and new civilizations.
	mxpf: hahaha

8) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: !!!

9) mxpf: Trade B3 G3 Mutaranebula
	mxpf: probably a bad move, I have no idea what I'm doing

10) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse
	Draw5PlayAll: You are safe because I cannot access your home world yet.
http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy

11) mxpf: Trade Y1 R1 Mxpf

12) Draw5PlayAll: Build G1 Draw5playall

13) mxpf: Build G2 Mutaranebula

14) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Icehouse
Build G2 Draw5playall
Build G3 Draw5playall

15) mxpf: Sacrifice G3 Mutaranebula
Build G3 Mutaranebula
Build G3 Mutaranebula
Build R1 Mxpf
	mxpf: Nice one!

16) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move G1 Icehouse Mutaranebula
Catastrophe Mutaranebula Green

	mxpf: Good game!
	Draw5PlayAll: Well, you always want to have a large in the homeworld... that was probably your mistake. (Unless you are going for THE winning kill and you are 100% sure you will succeed.)
http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy
	mxpf: Gotcha. Thanks!


30117)
Variants: "Hard time"
Started: 2016.7.29, Ended: 2016.8.13
Participants: mxpf (S), Simon (N)
Winner: mxpf

1) Simon: Homeworld R2 B1 G3

2) mxpf: Homeworld Y1 G3 B3
	Simon: Hi, have fun!

3) Simon: Build G1 Simon
	mxpf: You too!

4) mxpf: Build B1 Mxpf

5) Simon: Trade G1 B1 Simon

6) mxpf: Build B2 Mxpf

7) Simon: Build B2 Simon

8) mxpf: Trade B1 Y1 Mxpf
	mxpf: I'm screwed already!! Haha

9) Simon: Trade B2 Y2 Simon

10) mxpf: Trade B2 R2 Mxpf

11) Simon: Discover B1 Simon G3 G3

12) mxpf: Discover R2 Mxpf Y2 Mutara

13) Simon: Build G1 Simon

14) mxpf: Move R2 Mutara G3

15) Simon: Trade G1 R1 Simon

16) mxpf: Attack B1 G3

17) Simon: Move G3 Simon G3

18) mxpf: Sacrifice Y1 Mxpf
Discover R2 G3 Y2 Ceres

19) Simon: Move R1 Simon G3

20) mxpf: Discover R2 Ceres B3 Luna

21) Simon: Build G1 G3

22) mxpf: Trade B1 G1 G3
Catastrophe G3 G

	Simon: gg
	mxpf: U2!


30135)
Started: 2016.8.2, Ended: 2016.8.17
Participants: mxpf (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B1 R3 G3

2) mxpf: Homeworld B3 Y2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) mxpf: Build G1 Mxpf

5) Draw5PlayAll: Trade G1 Y1 Draw5playall
	mxpf: I'll try to last longer this time

6) mxpf: Build G1 Mxpf

7) Draw5PlayAll: Build G1 Draw5playall

8) mxpf: Trade G1 B1 Mxpf

9) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse

10) mxpf: Discover G1 Mxpf G1 Arboria

11) Draw5PlayAll: Build G2 Draw5playall

12) mxpf: Sacrifice G1 Arboria
Build B1 Mxpf

13) Draw5PlayAll: Build Y1 Draw5playall

14) mxpf: Discover B1 Mxpf Y1 Amber

15) Draw5PlayAll: Build Y2 Draw5playall

16) mxpf: Build B2 Mxpf

17) Draw5PlayAll: Move Y2 Draw5playall Icehouse

18) mxpf: Trade B2 Y2 Mxpf

19) Draw5PlayAll: Build Y3 Icehouse

20) mxpf: Sacrifice G3 Mxpf
Build B2 Amber
Build B2 Amber
Build B3 Mxpf

21) Draw5PlayAll: Trade Y3 R3 Icehouse

22) mxpf: Move B1 Amber Icehouse

23) Draw5PlayAll: Sacrifice Y2 Icehouse
Move R3 Icehouse Amber
Move G1 Icehouse Amber

24) mxpf: Trade B1 R1 Icehouse

25) Draw5PlayAll: Attack B2S Amber
	mxpf: I think I'm in trouble...

26) mxpf: Sacrifice B2 Amber
Trade B3 R3 Mxpf
Trade B1 G1 Mxpf
	Draw5PlayAll: Have it.

27) Draw5PlayAll: Discover G2 Draw5playall B2 Action

28) mxpf: Build Y2 Mxpf

29) Draw5PlayAll: Build Y3 Draw5playall

30) mxpf: Discover Y2 Mxpf G1 Scrofula

31) Draw5PlayAll: Move Y1 Draw5playall Action

32) mxpf: Build Y3 Scrofula
	mxpf: A size 3 ship can capture a size 3 ship, right?
	Draw5PlayAll: Yes, it can.

33) Draw5PlayAll: Build Y3 Action
	mxpf: Hmm.

34) mxpf: Build G2 Mxpf
	mxpf: What would you do if you were me right now? I mean, besides surrender
	Draw5PlayAll: Sacrifice that Y2@mxpf and bomb all my yellows... if it were your move!

35) Draw5PlayAll: Build G2 Draw5playall
	mxpf: Haha!

36) mxpf: Trade G1 R1 Mxpf

37) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G1 Action
Build G3 Draw5playall
Build B1 Amber
	mxpf: There are a lot f pieces on the board. My head hurts
	Draw5PlayAll: You never moved.
	mxpf: I know, I know
	mxpf: I have 4 days to mull it over ;-)

38) mxpf: Move Y3 Scrofula Action

39) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Amber
Build B1 Amber

40) mxpf: Sacrifice R3 Mxpf
Attack Y3 Action
Attack G2 Action
Attack Y1 Action

41) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move Y1 Draw5playall Action
Move R3 Amber Mxpf
Move G3 Amber Mxpf

42) mxpf: Sacrifice Y2 Scrofula
Discover Y1 Action Y3 Argo
Move Y3 Action Amber

43) Draw5PlayAll: Sacrifice R3 Mxpf
Attack R1S Mxpf
Attack G2S Mxpf
Attack Y2S Mxpf

	Draw5PlayAll: But then I just kill all your ships.
	Draw5PlayAll: Yeah, your big mistake was when you gave up your R3. You *always* need to keep a large at your homeworld unless you are 100% sure you are delivering the final blow (or you can get a large back in time).

Good game!
	mxpf: Ah OK. I appreciate all the commentary, it's helping me learn!


30141)
Variants: "Hard time"
Started: 2016.8.2, Ended: 2016.8.24
Participants: Simon (S), mxpf (N)
Winner: Simon

1) mxpf: Homeworld Y3 G2 B3
	mxpf: Hi!

2) Simon: Homeworld B3 Y1 G3
	Simon: Have fun :)

3) mxpf: Build B1 Mxpf

4) Simon: Build G1 Simon

5) mxpf: Trade B1 G1 Mxpf

6) Simon: Discover G1 Simon B2 B2

7) mxpf: Build B1 Mxpf

8) Simon: Build G1 Simon

9) mxpf: Build G2 Mxpf

10) Simon: Build G2 Simon

11) mxpf: Discover G2 Mxpf Y1 Artax

12) Simon: Build G3 B2

13) mxpf: Build G3 Artax

14) Simon: Trade G1 Y1 B2

15) mxpf: Discover G2 Artax Y2 Amber

16) Simon: Trade G1 R1 Simon

17) mxpf: Sacrifice G3 Artax
Build G1 Amber
Build G1 Amber
Build G3 Mxpf

18) Simon: Sacrifice G3 Simon
Build G3 Simon
Build Y1 B2
Build Y2 B2

19) mxpf: Trade G3 Y3 Mxpf

20) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 B2
Build R1 Simon

21) mxpf: Sacrifice B1 Mxpf
Trade G2 Y2 Amber

22) Simon: Sacrifice Y2 B2
Move G2 Simon Amber
Discover Y1 B2 R1 R1

23) mxpf: Sacrifice Y3 Mxpf
Move Y2 Amber Simon
Move G1 Amber Simon
Move G1 Amber Simon

24) Simon: Attack Y2 Simon

25) mxpf: Build G2 Simon
Catastrophe Simon G

26) Simon: Sacrifice G3 B2
Build Y2 B2
Build Y3 R1
Build Y3 Simon

27) mxpf: Trade B3 R3 Mxpf

28) Simon: Build G1 B2

29) mxpf: Build R2 Mxpf

30) Simon: Discover G3 B2 B1 B1

31) mxpf: Build R2 Mxpf

32) Simon: Build G1 B1

	mxpf: Good game! I learned a lot. Sorry I didn't put up much of a fight!
	Simon: gg! No need to feel sorry, always happy for a rematch.
	Draw5PlayAll: Time forfeit, or what?
	Simon: Not time. With the y monopoly, I can build for doomsday in absolute safety.
	mxpf: Time forfeit!? What do you take me for?? ;-)


30167)
Started: 2016.8.2, Ended: 2016.8.11
Participants: Steele (S), ladybugsfly (N)
Winner: ladybugsfly

1) ladybugsfly: Homeworld Y3 G2 B3

2) Steele: H B2 Y1 G3

3) ladybugsfly: Build B1 Ladybugsfly

4) Steele: B G1 Steele

5) ladybugsfly: Trade B1 G1 Ladybugsfly

6) Steele: B G1 Steele

7) ladybugsfly: Build G2 Ladybugsfly

8) Steele: D G1 Steele Y3 Alpha

9) ladybugsfly: Trade G1 R1 Ladybugsfly

10) Steele: S G3 Steele
B G1 Alpha
B G2 Alpha
B G3 Steele
Pass

11) ladybugsfly: Build G3 Ladybugsfly

12) Steele: B G3 Steele

13) ladybugsfly: Trade G3 Y3 Ladybugsfly

14) Steele: D G1 Steele G3 Beta

15) ladybugsfly: Sacrifice Y3 Ladybugsfly
Discover B3 Ladybugsfly R1 Good
Discover B3 Good R3 Morning
Move B3 Morning Steele

16) Steele: D G1 Alpha Y1 Gamma

17) ladybugsfly: Sacrifice G2 Ladybugsfly
Build R1 Ladybugsfly
Build R1 Ladybugsfly

18) Steele: Discover G1 Gamma B3 Omega

19) ladybugsfly: Sacrifice R1 Ladybugsfly
Attack G3 Steele

20) Steele: Move G2 Alpha Steele

21) ladybugsfly: Trade G3 R3 Steele

22) Steele: Pass
	Steele: Good move...

23) ladybugsfly: Sacrifice R3 Steele
Attack G3 Steele
Attack G2 Steele
Pass
	ladybugsfly: <3



30180)
Started: 2016.8.3, Ended: 2016.8.29
Participants: Babamots (S), RogueJedi234 (N)
Winner: Babamots

1) RogueJedi234: Homeworld B3 R2 G3

2) Babamots: Homeworld G2 R1 B3

3) RogueJedi234: Build G1 Roguejedi234
	Babamots: So is this a chat box?

4) Babamots: Build B1 Babamots

5) RogueJedi234: Build G1 Roguejedi234

6) Babamots: Build B1 Babamots

7) RogueJedi234: Trade G1 Y1 Roguejedi234

8) Babamots: Trade B1 Y1 Babamots

9) RogueJedi234: Discover G1 Roguejedi234 B1 Yavin4

10) Babamots: Build B1 Babamots

11) RogueJedi234: Build G1 Yavin4

12) Babamots: Discover B1 Babamots G3 Cuellar

13) RogueJedi234: Build G1 Roguejedi234

14) Babamots: Build B2 Cuellar

15) RogueJedi234: Build G2 Yavin4

16) Babamots: Discover B1 Babamots G3 Galorndon

17) RogueJedi234: Trade G2 R2 Yavin4

18) Babamots: Trade B2 R2 Cuellar

19) RogueJedi234: Discover G1 Roguejedi234 Y1 Tatooine

20) Babamots: Build B2 Galorndon

21) RogueJedi234: Build G2 Roguejedi234

22) Babamots: Trade B2 G2 Galorndon

23) RogueJedi234: Sacrifice G3 Roguejedi234
Build G3 Roguejedi234
Build Y2 Roguejedi234
Build R1 Yavin4

24) Babamots: Build Y2 Babamots

25) RogueJedi234: Move Y2 Roguejedi234 Tatooine

26) Babamots: Sacrifice G2 Galorndon
Build B2 Galorndon
Build B2 Cuellar

27) RogueJedi234: Discover Y2 Tatooine B3 Bespin

28) Babamots: Trade B2 Y2 Cuellar

29) RogueJedi234: Sacrifice G3 Roguejedi234
Build Y3 Bespin
Build G2 Tatooine
Build G3 Roguejedi234

30) Babamots: Sacrifice Y2 Babamots
Move Y2 Cuellar Yavin4
Move B2 Galorndon Yavin4

31) RogueJedi234: Trade Y3 R3 Bespin

32) Babamots: Sacrifice R2 Cuellar
Attack R2N Yavin4
Attack G1N Yavin4

33) RogueJedi234: Sacrifice G3 Roguejedi234
Build G3 Roguejedi234
Build R1 Bespin
Build Y2 Bespin

34) Babamots: Attack R1N Yavin4

35) RogueJedi234: Sacrifice Y2 Bespin
Discover G2 Tatooine Y3 Hoth
Move G1 Tatooine Hoth

36) Babamots: Attack G1N Yavin4

37) RogueJedi234: Trade G2 B2 Roguejedi234

38) Babamots: Build B2 Cuellar

39) RogueJedi234: Sacrifice G1 Hoth
Build Y1 Bespin

40) Babamots: Trade B2 Y2 Cuellar

41) RogueJedi234: Trade Y1 G1 Bespin

42) Babamots: Discover B1 Cuellar Y1 Wolf359

43) RogueJedi234: Move B2 Roguejedi234 Wolf359

44) Babamots: Build Y3 Yavin4

45) RogueJedi234: Sacrifice R1 Bespin
Attack B1 Wolf359

46) Babamots: Build Y3 Cuellar

47) RogueJedi234: Trade B2 G2 Wolf359

48) Babamots: Move Y3 Cuellar Wolf359

49) RogueJedi234: Sacrifice Y2 Bespin
Move B1 Wolf359 Bespin
Move G2 Wolf359 Bespin

50) Babamots: Build Y2 Cuellar

51) RogueJedi234: Build R1 Bespin

52) Babamots: Sacrifice Y3 Wolf359
Move B1 Galorndon Yavin4
Move B1 Yavin4 Bespin
Move B2 Yavin4 Bespin
Catastrophe Bespin B

53) RogueJedi234: Build G1 Hoth

54) Babamots: Trade Y2 B2 Yavin4

55) RogueJedi234: Discover G2 Hoth Y1 Ossus

56) Babamots: Sacrifice Y2 Cuellar
Move G1 Yavin4 Roguejedi234
Move G1 Yavin4 Roguejedi234

57) RogueJedi234: Trade G3 B3 Roguejedi234

58) Babamots: Sacrifice B2 Yavin4
Trade G1 B1 Roguejedi234
Trade G1 B1 Roguejedi234
Catastrophe Roguejedi234 B

59) RogueJedi234: Move G1 Hoth Babamots

60) Babamots: Move Y3 Yavin4 Roguejedi234

61) RogueJedi234: Sacrifice G2 Ossus
Build G1 Babamots
Build G1 Babamots
Catastrophe Babamots Green

62) Babamots: Attack Y1N Roguejedi234



30216)
Variants: "Hard time"
Started: 2016.8.7, Ended: 2016.10.24
Participants: endo (S), Felix (N)
Winner: endo

1) Felix: Homeworld Y1 B2 G3

2) endo: Homeworld R1 B3 G3

3) Felix: Build G1 Felix
	endo: Hi! Nice to see that you've made your way into the top 5 of the ladder. Enjoy the game!
	Felix: Thank you! I hope you have fun :)

4) endo: Build G1 Endo

5) Felix: Trade G1 R1 Felix

6) endo: Trade G1 Y1 Endo

7) Felix: Build R1 Felix

8) endo: Build Y1 Endo

9) Felix: Build R2 Felix

10) endo: Discover Y1 Endo Y2 Norm

11) Felix: Discover R1 Felix Y3 Rim

12) endo: Sacrifice G3 Endo
Build Y2 Endo
Build Y2 Norm
Build Y3 Endo

13) Felix: Build G1 Felix

14) endo: Trade Y3 G3 Endo

15) Felix: Sacrifice G3 Felix
Build R2 Rim
Build R2 Rim
Build R3 Felix
	Felix: I knew in my gut it was a mistake to go for red instead of yellow!

16) endo: Build Y3 Endo

17) Felix: Move R2 Rim Norm

18) endo: Trade Y3 R3 Endo

19) Felix: Attack Y2 Norm

20) endo: Move Y1 Endo Norm
Catastrophe Norm Y

21) Felix: Trade R2 Y2 Felix
	endo: I did get an extra large, but you have a whole bunch of ships in compensation...

22) endo: Build Y1 Endo

23) Felix: Trade R3 G3 Felix

24) endo: Discover Y1 Endo Y2 Metric

25) Felix: Move R1 Rim Metric

26) endo: Sacrifice G3 Endo
Build Y1 Endo
Build Y3 Endo
Build Y3 Metric

27) Felix: Move R1 Metric Endo

28) endo: Sacrifice R3 Endo
Attack R1 Endo
Pass
Pass

29) Felix: Discover Y2 Felix G3 Oligarchy

30) endo: Move Y3 Metric Oligarchy

31) Felix: Discover Y2 Oligarchy G2 Bastion

32) endo: Trade Y1 B1 Endo

33) Felix: Build Y1 Bastion

34) endo: Trade Y2 G2 Endo

35) Felix: Build R2 Felix

36) endo: Discover R1 Endo G2 Uniformity

37) Felix: Discover R2 Felix B3 Anarchy

38) endo: Trade Y3 G3 Endo

39) Felix: Move R2 Rim Uniformity

40) endo: Sacrifice Y1 Metric
Move R1 Uniformity Oligarchy

41) Felix: Discover G1 Felix R3 Inflation

42) endo: Build R2 Oligarchy

43) Felix: Build R3 Uniformity

44) endo: Sacrifice Y3 Oligarchy
Discover R2 Oligarchy Y2 Topology
Move G2 Endo Uniformity
Discover G2 Uniformity R3 Product

45) Felix: Sacrifice G1 Inflation
Build R3 Anarchy

46) endo: Sacrifice G2 Product
Build R3 Topology
Build B1 Endo

47) Felix: Trade R2 B2 Anarchy

48) endo: Trade B1 Y1 Endo

49) Felix: Build G1 Felix

50) endo: Build Y2 Endo

51) Felix: Move Y2 Bastion Anarchy
	Draw5PlayAll: Someone here likes to name the stars after forms of government

52) endo: Move Y2 Endo Bastion

53) Felix: Sacrifice G1 Felix
Build Y3 Anarchy

54) endo: Build Y3 Endo

55) Felix: Discover Y3 Anarchy G2 Incident

56) endo: Build Y3 Bastion

57) Felix: Move Y2 Anarchy Bastion
Catastrophe Bastion Yellow

58) endo: Build G1 Endo

59) Felix: Build G1 Felix

60) endo: Discover Y3 Endo G2 Manifold

61) Felix: Build Y1 Incident

62) endo: Sacrifice G3 Endo
Build Y2 Manifold
Build Y2 Manifold
Build Y3 Endo

63) Felix: Sacrifice Y3 Incident
Move Y1 Incident Anarchy
Move Y1 Anarchy Manifold
Move G1 Felix Anarchy
Catastrophe Manifold Yellow

64) endo: Build B1 Endo

65) Felix: Build R2 Anarchy

66) endo: Move B1 Endo Topology

67) Felix: Trade R2 Y2 Anarchy

68) endo: Trade R3 G3 Topology

69) Felix: Move B2 Anarchy Uniformity

70) endo: Discover B1 Endo Y2 Convex

71) Felix: Build Y1 Anarchy

72) endo: Discover Y1 Endo R2 Vector

73) Felix: Sacrifice B2 Uniformity
Trade R3 Y3 Uniformity
Trade Y1 B1 Anarchy

74) endo: Sacrifice G3 Topology
Build B2 Topology
Build R3 Topology
Build R3 Oligarchy

75) Felix: Build G1 Felix

76) endo: Sacrifice B2 Topology
Trade R2 G2 Topology
Trade R3 G3 Oligarchy

77) Felix: Sacrifice G3 Felix
Build G2 Anarchy
Build G3 Felix
Build R2 Uniformity

78) endo: Sacrifice G3 Oligarchy
Build G3 Endo
Build Y1 Endo
Build R3 Oligarchy

79) Felix: Build Y3 Uniformity

80) endo: Sacrifice G3 Endo
Build G3 Endo
Build B2 Topology
Build B2 Topology

81) Felix: Sacrifice Y3 Uniformity
Move R2 Uniformity Endo
Move R2 Uniformity Endo
Move B1 Anarchy Topology
Catastrophe Topology Blue

82) endo: Sacrifice G3 Endo
Build G3 Endo
Build Y3 Vector
Pass

83) Felix: Move R3 Anarchy Convex

84) endo: Move B1 Convex Oligarchy

85) Felix: Trade G2 B2 Anarchy

86) endo: Attack R2 Endo

87) Felix: Sacrifice Y3 Uniformity
Move R3 Convex Endo
Catastrophe Endo Red
Move G1 Felix Endo
Discover G1 Anarchy Y2 Concave

88) endo: Sacrifice Y3 Vector
Move G3 Endo Felix
Move R3 Oligarchy Felix
Move Y1 Endo Vector

89) Felix: Attack R3 Felix
	Draw5PlayAll: A fight broke out in the endo system! South's R2 ship was overtaken by North.
A fight broke out in the endo system! North's R2 ship was overtaken by South.
ad infinitum...

Or not.

90) endo: Sacrifice R3 Topology
Attack G3 Felix
Attack R1 Felix
Attack R3 Felix

	Felix: Ah. Well done! I missed that counterattack.
	endo: I've made a similar mistake versus Simon, and that wasn't when I was new :) See here: http://superdupergames.org/?page=archive_play&gid=28624&idx=56
Thanks for a long and difficult game. This was my longest game yet. I was afraid you had bested me halfway through the game when you gained those two larges. I somehow managed to equalize with yellow after some time.
	Felix: Thanks! I'll study that game and this one and hopefully learn to avoid it in future. This may have been my longest game as well. Definitely a difficult and interesting one. I also felt that advantage halfway through but I wasn't quite able to capitalize on it. You recovered really well. I look forward to our next game whenever that may be!


30215)
Variants: "Hard time"
Started: 2016.8.7, Ended: 2016.8.25
Participants: dlwillson (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R2 B1 G3

2) dlwillson: H B3 R1 G3 Dlwillson
	Simon: Hi, have fun!

3) Simon: Build G1 Simon
	dlwillson: Hi! You too!

4) dlwillson: Build G1 Dlwillson

5) Simon: Trade G1 Y1 Simon

6) dlwillson: T G1 Y1 Dlwillson

7) Simon: Build G1 Simon

8) dlwillson: B G1 Dlwillson

9) Simon: Trade G1 R1 Simon

10) dlwillson: T G1 R1 Dlwillson

11) Simon: Build R2 Simon

12) dlwillson: B R2 Dlwillson

13) Simon: Discover R2 Simon G3 G3

14) dlwillson: T R1 B1 Dlwillson

15) Simon: Build G1 Simon

16) dlwillson: B B1 Dlwillson

17) Simon: Discover R1 Simon B3 B3

18) dlwillson: Discover B1 Dlwillson G2 Field

19) Simon: Move G1 Simon B3

20) dlwillson: B B2 Field

21) Simon: Build R1 G3

22) dlwillson: B R3 Dlwillson

23) Simon: Build R3 B3

24) dlwillson: Move R2 Dlwillson Field

25) Simon: Build R3 G3

26) dlwillson: S Y1 Dlwillson
M R2 Field G3
C G3 R

27) Simon: Trade R1 Y1 B3

28) dlwillson: T B2 Y2 Field

29) Simon: Build Y1 B3

30) dlwillson: Sacrifice G3 Dlwillson
Build B2 Dlwillson
Build B2 Field
Build R1 Dlwillson

31) Simon: Move R3 B3 Field

32) dlwillson: S Y2 Field
M B2 Field B3
Discover R1 Dlwillson G2 Forest

33) Simon: Attack B1 Field
	dlwillson: Why you gotta kick my ass so hard?

34) dlwillson: T B2 R2 B3
	Simon: I was able to force your (sacrifice y1 dlwilson, move r2 into my 3 reds, cata red) with your only y1. That was expensive, maybe you must let me get away with the extra large, I'm not sure.

35) Simon: Sacrifice Y1 B3
Move B1 Field Dlwillson
Catastrophe Dlwillson B

36) dlwillson: T R2 B2 B3

37) Simon: Sacrifice G3 Simon
Build Y1 Simon
Build Y2 Simon
Build R1 Field
	dlwillson: I actually missed that. Wow.

38) dlwillson: S B2 B3
T R3 G3 Dlwillson
T R1 B1 Forest

39) Simon: Sacrifice Y2 Simon
Move R1 Field Dlwillson
Move R3 Field Dlwillson
	dlwillson: Sorry for the delay. I've been teaching Linux Camp.

40) dlwillson: Attack R3 Dlwillson

41) Simon: Sacrifice G1 B3
Build R1 Dlwillson
Catastrophe Dlwillson R
	dlwillson: GG TY :-)
	Simon: gg!



30219)
Variants: "Unrated"
Started: 2016.8.7, Ended: 2016.8.7
Participants: Rizzotto (S), DetectiveAzul (N)
Winner: DetectiveAzul

1) DetectiveAzul: Homeworld G2 B1 Y3
	DetectiveAzul: Hola chat

2) Rizzotto: Homeworld G3 B2 R3
	DetectiveAzul: jajajajaja puti
	Rizzotto: homeworld G3 B2 R3

3) DetectiveAzul: Build Y1 Detectiveazul
	Rizzotto: chocho

4) Rizzotto: Build R1 Rizzotto

5) DetectiveAzul: Build Y1 Detectiveazul

6) Rizzotto: Trade R1 Y1 Rizzotto

7) DetectiveAzul: Discover Y1 Detectiveazul G3 Yvolo

8) Rizzotto: Build Y2 Rizzotto

9) DetectiveAzul: Discover Y1 Detectiveazul G3 Yyovoledeel

10) Rizzotto: Build Y2 Rizzotto
	DetectiveAzul: chocho los que me meto en la boca en edimburgo

11) DetectiveAzul: Build Y2 Yvolo
	Rizzotto: :3 

12) Rizzotto: Trade Y2 R2 Rizzotto
	Rizzotto: Hay alguien que va a recibir una felación nada más llegue a casa...~ 

13) DetectiveAzul: Build Y2 Yyovoledeel

14) Rizzotto: Build R1 Rizzotto

15) DetectiveAzul: Build Y3 Detectiveazul

16) Rizzotto: Discover R2 Rizzotto G1 Elpan
	DetectiveAzul: 8===============================DO:

17) DetectiveAzul: Build Y3 Detectiveazul

18) Rizzotto: Move Y1 Rizzotto Elpan
	Rizzotto: :3============8
	DetectiveAzul: Po voy a haserte una foto con mi pene en tu boca para los momentos de soledad en los fines de semana que tu trabajes, ea

19) DetectiveAzul: Trade Y3 R3 Detectiveazul
	Rizzotto: Hazla, si quieres. Pero pudiendo hacer un vídeo...

20) Rizzotto: Build Y3 Rizzotto
	DetectiveAzul: Bueno, es que un vídeo en el móvil no va a ser muy bonito, pero por mí vale
	DetectiveAzul: Bueno, es que un vídeo en el móvil no va a ser muy bonito, pero por mí vale

21) DetectiveAzul: Trade Y3 B3 Detectiveazul
	Rizzotto: A ver, hasta que tengamos la gopro...De algo habrá que tirar. Te haces un POV casero. 

22) Rizzotto: Sacrifice Y2 Rizzotto
Move R3 Rizzotto Elpan
Move R3 Elpan Yvolo
	DetectiveAzul: Bueno, con el móvil se pueden hacer semipovs de cosas sin mucho movimiento. Con la gopro falsa ya podremos hacer acrobacias.

23) DetectiveAzul: Sacrifice Y2 Yvolo
Move R3 Detectiveazul Yvolo
Move R3 Yvolo Elpan
	Rizzotto: Bajar y subir los labios sobre tu pene no es mucho movimiento :3

24) Rizzotto: Move R2 Elpan Yvolo

25) DetectiveAzul: Sacrifice Y1 Yvolo
Move Y2 Yyovoledeel Elpan
	DetectiveAzul: Pero antes me quito los pelitos, que no quedan bien en la cámara, ya lo he podido comprobar en los intentos fallidos de vídeos para mandarte
	Rizzotto: A lo mejor a mí me gustaban los pelos. EL PORNO VINTAGE ERA CON PELOS. 

26) Rizzotto: Sacrifice Y1 Elpan
Move R3 Yvolo Detectiveazul
	DetectiveAzul: RESPETA MI DECISIÓN A NO TENER PELOS Ò,Ó
	DetectiveAzul: Al final no te mando foto :#
	DetectiveAzul: Yo que iba a hacer eso de correrme en tu cara y luego darte besos para compartir fluidos...

27) DetectiveAzul: Sacrifice R3 Elpan
Attack R3S Detectiveazul
Pass
Pass
	Rizzotto: .......Sin pelos, sin pelos. :3

28) Rizzotto: Build Y1 Rizzotto

29) DetectiveAzul: Build Y1 Yyovoledeel

30) Rizzotto: Trade Y3 R3 Rizzotto

31) DetectiveAzul: Build Y2 Elpan

32) Rizzotto: Build Y2 Rizzotto

33) DetectiveAzul: Build Y3 Detectiveazul

34) Rizzotto: Trade R3 Y3 Rizzotto

35) DetectiveAzul: Move Y2 Elpan Rizzotto
Catastrophe Rizzotto Yellow
	Rizzotto: y cuándo pensabas mandarme el vídeo?



30188)
Started: 2016.8.7, Ended: 2016.9.17
Participants: Draw5PlayAll (S), RogueJedi234 (N)
Winner: Draw5PlayAll

1) RogueJedi234: Homeworld B3 R2 G3

2) Draw5PlayAll: Homeworld B1 R3 G3

3) RogueJedi234: Build G1 Roguejedi234

4) Draw5PlayAll: Build G1 Draw5playall

5) RogueJedi234: Trade G1 Y1 Roguejedi234

6) Draw5PlayAll: Build G1 Draw5playall

7) RogueJedi234: Build G1 Roguejedi234

8) Draw5PlayAll: Trade G1 B1 Draw5playall

9) RogueJedi234: Build Y1 Roguejedi234

10) Draw5PlayAll: Trade G1 Y1 Draw5playall

11) RogueJedi234: Discover Y1 Roguejedi234 G1 Tatooine

12) Draw5PlayAll: Build Y2 Draw5playall

13) RogueJedi234: Build Y2 Tatooine

14) Draw5PlayAll: Discover B1 Draw5playall G2 Earth

15) RogueJedi234: Build Y2 Roguejedi234
	Draw5PlayAll: Are they star systems or planets? I have seen them called both of those nouns...

16) Draw5PlayAll: Move Y1 Draw5playall Earth
	RogueJedi234: I believe the upright pyramids are referred to as star systems, but regardless of that I always draw my names from star wars planets. It just helps me keep track of things. Either that or greek letter designations.

17) RogueJedi234: Sacrifice Y2 Tatooine
Discover G1 Roguejedi234 B1 Hoth
Move Y1 Roguejedi234 Hoth

18) Draw5PlayAll: Build B2 Earth

19) RogueJedi234: Build G1 Hoth

20) Draw5PlayAll: Build G2 Draw5playall

21) RogueJedi234: Build G2 Roguejedi234

22) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Draw5playall
Build Y3 Earth
Build G3 Draw5playall
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass

23) RogueJedi234: Sacrifice G3 Roguejedi234
Build G3 Roguejedi234
Build Y3 Roguejedi234
Build Y3 Tatooine

24) Draw5PlayAll: Trade Y3 R3 Earth
Pass Pass Pass

25) RogueJedi234: Discover Y3 Tatooine B2 Endor

26) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y3 Earth
Build R1 Earth

27) RogueJedi234: Sacrifice Y2 Roguejedi234
Move Y1 Hoth Earth
Move Y1 Tatooine Earth
Catastrophe Earth Yellow

28) Draw5PlayAll: Discover G2 Draw5playall B2 Icehouse

29) RogueJedi234: Trade G1 Y1 Hoth

30) Draw5PlayAll: Build B3 Earth

31) RogueJedi234: Build G1 Hoth

32) Draw5PlayAll: Build Y1 Draw5playall

33) RogueJedi234: Sacrifice Y3 Endor
Discover G1 Hoth B2 Alderaan
Move Y1 Hoth Alderaan
Move Y1 Alderaan Draw5playall
Catastrophe Draw5playall Yellow

34) Draw5PlayAll: Trade G3 Y3 Draw5playall

35) RogueJedi234: Sacrifice G3 Roguejedi234
Build G1 Hoth
Build G3 Roguejedi234
Build G3 Alderaan

36) Draw5PlayAll: Build G3 Icehouse

37) RogueJedi234: Trade G3 R3 Alderaan

38) Draw5PlayAll: Trade G2 Y2 Icehouse

39) RogueJedi234: Trade G1 Y1 Hoth

40) Draw5PlayAll: Move G3 Icehouse Draw5playall

41) RogueJedi234: Sacrifice G3 Roguejedi234
Build G1 Hoth
Build G2 Alderaan
Build G3 Roguejedi234

42) Draw5PlayAll: Build Y1 Draw5playall

43) RogueJedi234: Sacrifice G3 Roguejedi234
Build G3 Roguejedi234
Build G3 Hoth
Build R1 Alderaan

44) Draw5PlayAll: Move G3 Draw5playall Icehouse

45) RogueJedi234: Discover G1 Hoth Y2 Korriban

46) Draw5PlayAll: Build Y1 Icehouse

47) RogueJedi234: Trade G2 Y2 Alderaan

48) Draw5PlayAll: Move G3 Icehouse Draw5playall

49) RogueJedi234: Build G2 Korriban

50) Draw5PlayAll: Sacrifice Y1 Icehouse
Discover B1 Earth Y3 Wolf359

51) RogueJedi234: Build Y1 Alderaan

52) Draw5PlayAll: Move Y1 Draw5playall Earth

53) RogueJedi234: Discover G1 Korriban R1 Belkadan

54) Draw5PlayAll: Move B2 Earth Belkadan

55) RogueJedi234: Sacrifice Y3 Roguejedi234
Move G3 Hoth Earth
Move G1 Hoth Earth
Move G1 Belkadan Earth
Catastrophe Earth Green

56) Draw5PlayAll: Trade Y2 G2 Icehouse

57) RogueJedi234: Trade G2 Y2 Roguejedi234

58) Draw5PlayAll: Sacrifice G2 Icehouse
Build B2 Wolf359
Build B3 Belkadan
	Draw5PlayAll: Just what I needed! Really.

59) RogueJedi234: Build G1 Roguejedi234

60) Draw5PlayAll: Trade B2 G2 Wolf359
	Draw5PlayAll: First I tried to build two B3s but forgot that I sacrificed the only ship at a B2 system, so I had to build the b2 before the B3s.

61) RogueJedi234: Build R1 Alderaan

62) Draw5PlayAll: Build B2 Wolf359

63) RogueJedi234: Sacrifice Y2 Alderaan
Move R3 Alderaan Draw5playall
Move R1 Alderaan Draw5playall

64) Draw5PlayAll: Attack R3 Draw5playall

65) RogueJedi234: Sacrifice G3 Roguejedi234
Build R2 Draw5playall
Build R2 Alderaan
Build R3 Alderaan
Catastrophe Draw5playall Red

66) Draw5PlayAll: Trade B2 R2 Wolf359

67) RogueJedi234: Move R3 Alderaan Wolf359
	Draw5PlayAll: I would have been more scared if you went to Wolf359 with that thing...

68) Draw5PlayAll: Sac Y3 Draw5playall
Move B3 Belkadan Roguejedi234
Move B1 Wolf359 Belkadan
Move R2 Wolf359 Draw5playall

	Draw5PlayAll: The really amazing thing is that no B1 ships exist for you to try and catastrophe my invader!


30223)
Variants: "Hard time"
Started: 2016.8.8, Ended: 2016.8.31
Participants: Draw5PlayAll (S), foksieloy (N)
Winner: Draw5PlayAll

1) foksieloy: Homeworld R3 B1 G3

2) Draw5PlayAll: Homeworld R1 B2 G3
	foksieloy: Hi, good luck, have fun!

3) foksieloy: Build G1 Foksieloy

4) Draw5PlayAll: Build G1 Draw5playall

5) foksieloy: Trade G1 B1 Foksieloy

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) foksieloy: Build B1 Foksieloy

8) Draw5PlayAll: Build G1 Draw5playall

9) foksieloy: Trade B1 Y1 Foksieloy

10) Draw5PlayAll: Discover G1 Draw5playall B3 Action

11) foksieloy: Discover B1 Foksieloy G2 Tibbers

12) Draw5PlayAll: Build G1 Action

13) foksieloy: Build B1 Tibbers

14) Draw5PlayAll: Trade G1 R1 Action

15) foksieloy: Build B2 Tibbers

16) Draw5PlayAll: Build G1 Draw5playall

17) foksieloy: Trade B2 R2 Tibbers

18) Draw5PlayAll: Build Y1 Draw5playall

19) foksieloy: Build Y2 Foksieloy

20) Draw5PlayAll: Build Y2 Draw5playall

21) foksieloy: Build B2 Tibbers

22) Draw5PlayAll: Move Y2 Draw5playall Action

23) foksieloy: Trade B2 G2 Tibbers

24) Draw5PlayAll: Build G1 Action

25) foksieloy: Move Y2 Foksieloy Tibbers

26) Draw5PlayAll: Sacrifice Y2 Action
Move G1 Action Tibbers
Move G1 Action Tibbers
Catastrophe Tibbers Green

27) foksieloy: Build Y2 Foksieloy
	Draw5PlayAll: You had two greens...
	foksieloy: That's what I get for playing a turn at 6 am.

28) Draw5PlayAll: Build Y2 Draw5playall

29) foksieloy: Discover Y2 Foksieloy G2 Annie

30) Draw5PlayAll: Move Y2 Draw5playall Action

31) foksieloy: Build G1 Foksieloy
	foksieloy: Damn missclick.

32) Draw5PlayAll: Move G1 Draw5playall Action

33) foksieloy: Trade G1 B1 Foksieloy

34) Draw5PlayAll: Build G1 Draw5playall

35) foksieloy: Move B1 Foksieloy Annie

36) Draw5PlayAll: Build G1 Action

37) foksieloy: Build G2 Foksieloy

38) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Draw5playall
Build G3 Draw5playall
Build R1 Action

39) foksieloy: Sacrifice G3 Foksieloy
Build G3 Foksieloy
Build Y2 Annie
Build Y3 Foksieloy

40) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y3 Action
Build R2 Action

41) foksieloy: Sacrifice Y3 Foksieloy
Move G2 Foksieloy Annie
Discover G2 Annie Y3 Tibbers
Move G2 Tibbers Draw5playall
Catastrophe Draw5playall Green

42) Draw5PlayAll: Move R2 Action Draw5playall
	Draw5PlayAll: The action system is crowded.

43) foksieloy: Trade Y2 B2 Annie
	Draw5PlayAll: Oops... This time I can recover.

44) Draw5PlayAll: Trade Y3 G3 Action
	Draw5PlayAll: Tibbers? What is that?

45) foksieloy: Build Y2 Foksieloy
	foksieloy: Annie and Tibbers https://s-media-cache-ak0.pinimg.com/736x/2d/89/2d/2d892d4cde04e7c4c34770207da65484.jpg

46) Draw5PlayAll: Build Y3 Action

47) foksieloy: Discover B2 Annie Y3 Tibbers

48) Draw5PlayAll: Move G3 Action Draw5playall

49) foksieloy: Discover B1 Annie G3 Gnar

50) Draw5PlayAll: Build R2 Action

51) foksieloy: Build B1 Gnar

52) Draw5PlayAll: Move R2 Draw5playall Gnar

53) foksieloy: Sacrifice Y2 Foksieloy
Move B1 Gnar Draw5playall
Move B1 Gnar Draw5playall

54) Draw5PlayAll: Build R2 Gnar

55) foksieloy: Move B2 Tibbers Draw5playall
Catastrophe Draw5playall Blue

56) Draw5PlayAll: Build R3 Gnar

57) foksieloy: Build Y2 Annie

58) Draw5PlayAll: Discover G1 Action B2 Icetraders

59) foksieloy: Build Y3 Foksieloy

60) Draw5PlayAll: Discover Y1 Draw5playall R3 Qo'nos

61) foksieloy: Discover Y2 Annie B3 Teemo

62) Draw5PlayAll: Build Y3 Draw5playall

63) foksieloy: Trade Y1 B1 Foksieloy

64) Draw5PlayAll: Trade Y2 B2 Action

65) foksieloy: Move B1 Foksieloy Annie

66) Draw5PlayAll: Discover B2 Action Y1 Hyperspace

67) foksieloy: Build Y2 Annie

68) Draw5PlayAll: Move Y1 Draw5playall Icetraders

69) foksieloy: Build B1 Annie

70) Draw5PlayAll: Move R2 Action Annie

71) foksieloy: Sacrifice Y2 Annie
Move B1 Annie Action
Move B1 Annie Action
	foksieloy: I can't say I had a lot of games where the stash is about to get empty. :)

72) Draw5PlayAll: Move Y3 Action Icetraders
	Draw5PlayAll: I can't say I had a lot of games where I managed to completely dominate the red economy.

73) foksieloy: Sacrifice Y2 Annie
Discover Y2 Teemo G2 Valor
Move B1 Action Valor

74) Draw5PlayAll: Move B2 Hyperspace Gnar
	Draw5PlayAll: Fine then. Blow up a bunch of 1-pointers. I don't care.

75) foksieloy: Build B2 Valor

76) Draw5PlayAll: Sacrifice Y1 Icetraders
Move B2 Gnar Annie

77) foksieloy: Move B2 Valor Qo'nos

78) Draw5PlayAll: Build B3 Annie

79) foksieloy: Build G1 Foksieloy

80) Draw5PlayAll: Sacrifice Y3 Icetraders
Move B3 Annie Foksieloy
Move R3 Gnar Annie
Move R3 Annie Foksieloy
Pass
	Draw5PlayAll: Thought so.

81) foksieloy: Attack R3 Foksieloy

82) Draw5PlayAll: Sacrifice R2 Annie
Attack R3N Foksieloy
Attack G3N Foksieloy
Pass
Pass
Pass

	foksieloy: Ok, you have two r2, that is sufficient for you. GG!
	Draw5PlayAll: Checking ladder...


30129)
Started: 2016.8.9, Ended: 2016.10.3
Participants: ts52 (S), Pheonixian (N)
Winner: ts52

1) Pheonixian: Homeworld B1 Y2 G3

2) ts52: Homeworld Y1 B3 G3

3) Pheonixian: Build G1 Pheonixian
	ts52: Have a good game! FYI I'm' going off grid until Friday, but will be back online to make my move Friday night.

4) ts52: Build G1 Ts52
	Pheonixian: Okay, no problem. Have a good game!

5) Pheonixian: Trade G1 B1 Pheonixian

6) ts52: Build G1 Ts52

7) Pheonixian: Build B1 Pheonixian

8) ts52: Discover G1 Ts52 B2 Grover

9) Pheonixian: Trade B1 Y1 Pheonixian

10) ts52: Trade G1 Y1 Ts52

11) Pheonixian: Build Y2 Pheonixian

12) ts52: Move Y1 Ts52 Grover

13) Pheonixian: Discover Y2 Pheonixian G3 Eden

14) ts52: Build G1 Ts52

15) Pheonixian: Build B1 Pheonixian

16) ts52: Trade G1 R1 Ts52

17) Pheonixian: Move B1 Pheonixian Eden

18) ts52: Build G1 Grover

19) Pheonixian: Build B2 Eden

20) ts52: Build R1 Ts52

21) Pheonixian: Trade B1 R1 Eden

22) ts52: Move R1 Ts52 Grover

23) Pheonixian: Build B1 Eden

24) ts52: Build R2 Grover

25) Pheonixian: Build R2 Eden

26) ts52: Discover G1 Grover Y3 Bigbird

27) Pheonixian: Discover B2 Eden G2 Spinach

28) ts52: M R1 Grover Bigbird

29) Pheonixian: Build B2 Spinach

30) ts52: Sacrifice G3 Ts52
Build R2 Grover
Build R3 Ts52
Build R3 Bigbird

31) Pheonixian: Move R2 Eden Pheonixian

32) ts52: Trade R3 G3 Ts52

33) Pheonixian: Sacrifice G3 Pheonixian
Build B3 Eden
Build R3 Pheonixian
Build R3 Eden

34) ts52: Move R3 Bigbird Spinach

35) Pheonixian: Sacrifice Y2 Eden
Discover B2 Spinach G3 Avocado
Move B2 Spinach Avocado

36) ts52: Build Y2 Grover

37) Pheonixian: Build B3 Eden

38) ts52: Build Y2 Grover

39) Pheonixian: Trade B3 Y3 Eden

40) ts52: Build G1 Ts52

41) Pheonixian: Build Y3 Eden

42) ts52: Sacrifice Y1 Grover
Move R3 Spinach Avocado

43) Pheonixian: Sacrifice Y3 Eden
Discover B2 Avocado G2 Lemon
Move B2 Avocado Lemon
Discover B1 Eden G2 Apple

44) ts52: Move R2 Grover Bigbird

45) Pheonixian: Discover R2 Pheonixian B3 Icetower

46) ts52: Move Y2 Grover Avocado

47) Pheonixian: Trade B2 G2 Lemon

48) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Avocado
Build Y3 Grover

49) Pheonixian: Move Y1 Pheonixian Eden

50) ts52: Move Y3 Grover Icetower

51) Pheonixian: Build B2 Apple

52) ts52: Sacrifice R1 Bigbird
Attack R2 Icetower

53) Pheonixian: Sacrifice Y3 Eden
Move B1 Apple Ts52
Move B2 Apple Ts52
Move B2 Lemon Ts52
Catastrophe Ts52 Blue

54) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build Y3 Icetower

55) Pheonixian: Build B1 Eden
	Babamots: I've been enjoying your game! Instead of continuing to lurk, I thought I'd test whether observers really get to post comments.
	ts52: Glad you're enjoying it. And yes, lurkers can comment!

56) ts52: Trade G2 B2 Grover
	Draw5PlayAll: Very intense.. I like these ones where half the homeworld dies, yet said player has control.

[Removed due to Prime Directive]
	Babamots: What does "Removed due to Prime Directive" mean? Was a comment censored somehow or is that what Draw5 actually typed? Maybe redaction due to interfering with the natural development of a "culture" (i.e. game)?
	ts52: I'm pretty sure that's just Draw5PlayAll's sense of humor coming through. :)

57) Pheonixian: Move B1 Eden Lemon
	Pheonixian: Indeed, I'm pretty sure of that. It is amusing. 
The game itself has been very interesting, thank you much for it, ts52. 

58) ts52: Move B2 Grover Bigbird
	ts52: Agreed, this had been a very interesting game.
	Draw5PlayAll: Why the past tense? I see no immediate win for either side.
	ts52: No, not over yet, I agree.

59) Pheonixian: Build B2 Lemon

60) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build B3 Bigbird

61) Pheonixian: Move R1 Eden Lemon

62) ts52: Sacrifice Y2 Grover
Move B2 Bigbird Pheonixian
Move B3 Bigbird Pheonixian
Catastrophe Pheonixian Blue

	Pheonixian: And I think that is game. I see no way to prevent destruction of the other half of my homeworld. Well played. 
	ts52: Thanks. Good game!


30235)
Variants: "Hard time"
Started: 2016.8.11, Ended: 2016.10.18
Participants: nycavri (S), Salmonax (N)
Winner: nycavri

1) Salmonax: Homeworld G1 R3 B3

2) nycavri: Homeworld Y1 B2 G3
	Salmonax: Good luck, have fun
	nycavri: TaGG!

3) Salmonax: Build B1 Salmonax

4) nycavri: B G1 Nycavri

5) Salmonax: Trade B1 G1 Salmonax

6) nycavri: B G2 Nycavri

7) Salmonax: Build G2 Salmonax

8) nycavri: T G2 Y2 Nycavri

9) Salmonax: Trade G2 Y2 Salmonax

10) nycavri: B Y1 Nycavri

11) Salmonax: Build G2 Salmonax

12) nycavri: T Y1 B1 Nycavri

13) Salmonax: Discover G1 Salmonax B2 Oats

14) nycavri: Trade G1 R1 Nycavri

15) Salmonax: Build Y1 Salmonax

16) nycavri: B B1 Nycavri

17) Salmonax: Build G1 Oats

18) nycavri: Build G2 Nycavri
	Salmonax: Sorry for the delay

19) Salmonax: Build G2 Oats

20) nycavri: S Y2 Nycavri
D G2 Nycavri Y3 Deacon
Discover G2 Deacon Y2 May

21) Salmonax: Trade G1 R1 Oats

22) nycavri: T B1 G1 Nycavri

23) Salmonax: Build G3 Oats

24) nycavri: S G3 Nycavri
Build G3 Nycavri
B G3 May
B B1 Nycavri

25) Salmonax: Move Y1 Salmonax Oats

26) nycavri: Sacrifice B1 Nycavri
Trade G2 Y2 May

27) Salmonax: Discover G2 Oats Y3 Pebble

28) nycavri: Discover G1 Nycavri Y3 Mercury

29) Salmonax: Sacrifice G2 Salmonax
Build Y1 Salmonax
Build Y3 Oats

30) nycavri: Build G2 May

31) Salmonax: Trade G3 R3 Oats

32) nycavri: Move G2 May Salmonax



30140)
Variants: "Hard time"
Started: 2016.8.11, Ended: 2016.8.24
Participants: ladybugsfly (S), mxpf (N)
Winner: ladybugsfly

1) mxpf: Homeworld R3 B1 G3

2) ladybugsfly: Homeworld G3 Y2 B3
	mxpf: Good luck! :-)

3) mxpf: Build G1 Mxpf
	ladybugsfly: You, too!

4) ladybugsfly: Build B1 Ladybugsfly

5) mxpf: Trade G3 B3 Mxpf

6) ladybugsfly: Discover B1 Ladybugsfly Y1 Squirtle

7) mxpf: Build G1 Mxpf

8) ladybugsfly: Build B1 Ladybugsfly

9) mxpf: Build B2 Mxpf

10) ladybugsfly: Discover B1 Squirtle Y2 Wartortle

11) mxpf: Trade B2 Y2 Mxpf

12) ladybugsfly: Trade B1 G1 Wartortle

13) mxpf: Trade G1 R1 Mxpf

14) ladybugsfly: Build G1 Wartortle

15) mxpf: Move Y2 Mxpf Wartortle

16) ladybugsfly: Trade B3 R3 Ladybugsfly

17) mxpf: Sacrifice R1 Mxpf
Attack G1 Wartortle

18) ladybugsfly: Build G2 Wartortle

19) mxpf: Build G2 Mxpf

20) ladybugsfly: Sacrifice G2 Wartortle
Build R1 Ladybugsfly
Build B1 Ladybugsfly

21) mxpf: Build G2 Mxpf

	mxpf: Ah shoot, I screwed up, haha! Another?
	ladybugsfly: Sure!


30247)
Started: 2016.8.12, Ended: 2016.8.25
Participants: ladybugsfly (S), Steele (N)
Winner: ladybugsfly

1) Steele: H B3 G2 Y3

2) ladybugsfly: Homeworld Y3 B1 G3

3) Steele: B Y1 Steele

4) ladybugsfly: Build G1 Ladybugsfly

5) Steele: T Y1 G1 Steele

6) ladybugsfly: Discover G1 Ladybugsfly B2 Diglett

7) Steele: B Y1 Steele

8) ladybugsfly: Trade G1 Y1 Diglett

9) Steele: T Y1 R1 Steele

10) ladybugsfly: Build G1 Ladybugsfly

11) Steele: B Y1 Steele

12) ladybugsfly: Move G1 Ladybugsfly Diglett

13) Steele: D G1 Steele Y1 Alpha

14) ladybugsfly: Build Y2 Diglett

15) Steele: Build G1 Alpha

16) ladybugsfly: Build G2 Ladybugsfly

17) Steele: Discover G1 Alpha Y2 Beta

18) ladybugsfly: Trade G2 R2 Ladybugsfly

19) Steele: Build G2 Beta

20) ladybugsfly: Discover Y2 Diglett R1 Dugtrio

21) Steele: Discover G1 Alpha B2 Gamma

22) ladybugsfly: Sacrifice G3 Ladybugsfly
Build Y1 Diglett
Build Y2 Diglett
Build Y3 Dugtrio

23) Steele: Trade Y1 R1 Steele

24) ladybugsfly: Sacrifice Y2 Diglett
Move Y3 Dugtrio Steele
Move Y2 Dugtrio Steele

25) Steele: T Y3 G3 Steele

26) ladybugsfly: Trade Y3 G3 Steele

27) Steele: T G3 B3 Steele

28) ladybugsfly: Trade G3 B3 Steele

29) Steele: S B3 Steele
T G1 R1 Beta
T G2 R2 Beta
T R1 Y1 Steele
Pass

30) ladybugsfly: Move G1 Diglett Ladybugsfly

31) Steele: B R1 Steele

32) ladybugsfly: Build R2 Ladybugsfly

33) Steele: B Y2 Steele

34) ladybugsfly: T B3 R3 Steele

35) Steele: B R3 Steele
C Steele Red

36) ladybugsfly: B Y3 Steele
C Steele Y



30119)
Started: 2016.8.12, Ended: 2016.8.12
Participants: Felix (S), Benjeski (N)
Winner: Felix

	Benjeski: Sorry im a bit of a newb



30227)
Started: 2016.8.12, Ended: 2016.8.12
Participants: Benjeski (S), ts52 (N)
Winner: ts52

	Benjeski: Hey :D


30134)
Variants: "Hard time"
Started: 2016.8.12, Ended: 2016.8.15
Participants: wil (S), Benjeski (N)
Winner: Benjeski

1) Benjeski: Homeworld R3 G1 B3



30173)
Variants: "Hard time"
Started: 2016.8.12, Ended: 2016.8.24
Participants: Benjeski (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 B2 G3
	Benjeski: Hey :D 

2) Benjeski: Homeworld R3 G1 B3
	Simon: Hi, have fun!

3) Simon: Build G1 Simon

4) Benjeski: Build B1 Benjeski


5) Simon: Build G1 Simon
	Benjeski: Sorry man its 1` in the morning where i live. see you in the morning

6) Benjeski: Trade B1 Y1 Benjeski

7) Simon: Trade G3 Y3 Simon

8) Benjeski: Discover Y1 Benjeski G2 Sigma

9) Simon: Discover G1 Simon B3 B3

10) Benjeski: Build Y1 Sigma

11) Simon: Build G2 B3



30258)
Variants: "Hard time"
Started: 2016.8.21, Ended: 2016.8.31
Participants: Draw5PlayAll (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3

2) Draw5PlayAll: Homeworld B1 R2 G3
	Simon: Have fun :)

3) Simon: Build G1 Simon
	Draw5PlayAll: I actually prefer a 1-3 more... Investment rarely works and it is super easy to throw an R2 at someone's investment.

4) Draw5PlayAll: Build G1 Draw5playall

5) Simon: Trade G1 Y1 Simon

6) Draw5PlayAll: Build G1 Draw5playall

7) Simon: Build Y1 Simon

8) Draw5PlayAll: Trade G1 Y1 Draw5playall

9) Simon: Build Y2 Simon

10) Draw5PlayAll: Build Y2 Draw5playall

11) Simon: Discover Y2 Simon B2 B2
	Simon: The 1-3 seems best to me, yeah. You can park ships at 2-pointers of the same color, to deplete the color for a monopoly.

12) Draw5PlayAll: Discover G1 Draw5playall B3 Neptune

13) Simon: Discover Y1 Simon Y2 Y2
	Draw5PlayAll: *planet

14) Draw5PlayAll: Move Y1 Draw5playall Neptune

15) Simon: Sacrifice G3 Simon
Build Y3 Simon
Build Y3 B2
Build Y3 Y2

16) Draw5PlayAll: Move Y1 Neptune Y2
Catastrophe Y2 Yellow
Pass

17) Simon: Trade Y2 G2 B2
	Draw5PlayAll: That is not the way to monopolize yellow.

18) Draw5PlayAll: Build G1 Neptune

19) Simon: Build Y1 B2

20) Draw5PlayAll: Build G1 Draw5playall

21) Simon: Trade Y3 R3 B2

22) Draw5PlayAll: Build G2 Neptune

23) Simon: Move R3 B2 Neptune

24) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover G2 Neptune B2 Action
Move G1 Neptune Action
Pass Pass Pass
	Draw5PlayAll: Drats

25) Simon: Attack G1 Neptune

26) Draw5PlayAll: Trade G1 Y1 Draw5playall

27) Simon: Build Y2 B2

28) Draw5PlayAll: Build Y2 Draw5playall

29) Simon: Move Y1 B2 Neptune

30) Draw5PlayAll: Trade G2 B2 Action

31) Simon: Trade Y1 B1 Simon

32) Draw5PlayAll: Build G1 Draw5playall

33) Simon: Build G2 B2

34) Draw5PlayAll: Trade B2 R2 Action

35) Simon: Discover G2 B2 Y3 Y3

36) Draw5PlayAll: Trade G1 B1 Draw5playall

37) Simon: Build Y1 B2

38) Draw5PlayAll: Discover B1 Draw5playall G3 Earth

39) Simon: Build G1 Y3

40) Draw5PlayAll: Build B2 Earth

41) Simon: Move G1 Y3 Draw5playall

42) Draw5PlayAll: Trade G3 B3 Draw5playall

43) Simon: Build Y2 Neptune

44) Draw5PlayAll: Attack G1 Draw5playall

45) Simon: Sacrifice G2 Y3
Build Y3 Simon
Build Y3 B2
	Draw5PlayAll: I did not type "G1N", but it worked anyway.

46) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 Draw5playall Neptune
Move Y1 Neptune B2
Catastrophe B2 Yellow

47) Simon: Move Y3 Simon Action

	Draw5PlayAll: I really have nothing. One main problem is that I kept having to change the color of my initial large.
	Simon: gg still. Always happy to rematch!


30293)
Variants: "Hard time"
Started: 2016.8.24, Ended: 2016.9.16
Participants: zeder (S), mxpf (N)
Winner: zeder

1) mxpf: Homeworld B1 G3 Y3

2) zeder: Homeworld Y2 B1 G3
	zeder: homeworld Y2 B1 G3 

3) mxpf: Build Y1 Mxpf

4) zeder: Build G1 Zeder

5) mxpf: Trade Y1 G1 Mxpf

6) zeder: Trade G1 Y1 Zeder

7) mxpf: Build Y1 Mxpf

8) zeder: Build G1 Zeder

9) mxpf: Discover Y1 Mxpf G2 Monad

10) zeder: Discover Y1 Zeder B3 Functor

11) mxpf: Build Y1 Mxpf

12) zeder: Sacrifice G1 Zeder
Build Y2 Functor

13) mxpf: Trade Y1 R1 Mxpf

14) zeder: Build G1 Zeder

15) mxpf: Discover G1 Mxpf Y2 Dyad
	mxpf: I just realized you're my Morelli opponent on Little Golem!
	mxpf: trade y3 g3 mxpf

16) zeder: Trade Y1 R1 Functor

17) mxpf: Build Y1 Mxpf
	zeder: Small world!
	zeder: I am not feeling very happy about that Morelli game so far. :(

18) zeder: Trade Y2 G2 Functor



30303)
Variants: "Hard time"
Started: 2016.8.24, Ended: 2016.9.8
Participants: ladybugsfly (S), mxpf (N)
Winner: ladybugsfly

1) mxpf: Homeworld Y1 G3 B3

2) ladybugsfly: Homeworld B3 G2 Y3
	mxpf: I'll try to last longer this time!

3) mxpf: Build B1 Mxpf

4) ladybugsfly: Build Y1 Ladybugsfly

5) mxpf: Build B1 Mxpf

6) ladybugsfly: Trade Y1 B1 Ladybugsfly

7) mxpf: Trade B1 R1 Mxpf

8) ladybugsfly: B Y1 Ladybugsfly

9) mxpf: Trade B1 Y1 Mxpf

10) ladybugsfly: B Y2 Ladybugsfly

11) mxpf: Build Y2 Mxpf

12) ladybugsfly: Discover Y1 Ladybugsfly G1 Pikachu

13) mxpf: Discover Y1 Mxpf B2 Cornholio

14) ladybugsfly: B Y2 Pikachu

15) mxpf: Move Y1 Cornholio Pikachu

16) ladybugsfly: Sacrifice B1 Ladybugsfly
Trade Y2 R2 Pikachu
	mxpf: Oh shoot. Almost built a y3 at my homeworld...but realized that you could sacrifice that y2 to trigger a catastrophe.

17) mxpf: Move Y1 Pikachu Ladybugsfly

18) ladybugsfly: Trade Y3 R3 Ladybugsfly
	ladybugsfly: Almost catastrophied you with yellow two turns ago, but realized I'd leave my homeworld without a big ship. ;)
	Draw5PlayAll: This is a problem.

19) mxpf: Discover Y1 Ladybugsfly G1 Abraham
	mxpf: Here, let me help you with removing that big ship!

20) ladybugsfly: D R2 Pikachu Y2 Riachu
	mxpf: (just kidding)

21) mxpf: Build Y3 Abraham

22) ladybugsfly: Build Y3 Pikachu

23) mxpf: Move Y3 Abraham Riachu

24) ladybugsfly: Build Y3 Ladybugsfly

25) mxpf: Sacrifice R1 Mxpf
Attack R2 Riachu

26) ladybugsfly: S Y2 Ladybugsfly
M Y1 Pikachu Riachu
M Y1 Riachu Mxpf

27) mxpf: Trade Y2 R2 Mxpf

28) ladybugsfly: Move Y1 Mxpf Riachu

29) mxpf: Move Y3 Riachu Abraham
	mxpf: I'm guessing by your system names that you're a Go player? :-)

30) ladybugsfly: M Y1 Riachu Abraham
	ladybugsfly: You bet! Is your name Abraham?
	mxpf: Ha, actually reading a sci-fi  book by Daniel Abraham right now.

31) mxpf: Discover Y3 Abraham B2 Scopuli

32) ladybugsfly: Build R1 Ladybugsfly

33) mxpf: Build Y2 Abraham

34) ladybugsfly: Build Y2 Abraham
Catastrophe Abraham Y

35) mxpf: Trade Y3 G3 Scopuli

36) ladybugsfly: Build Y1 Pikachu

37) mxpf: Build G1 Scopuli

38) ladybugsfly: D Y1 Pikachu B2 Squirtle

39) mxpf: Trade G3 Y3 Scopuli
	ladybugsfly: Whoops! Forgot to abandon Abraham to the hyperspatial flux the firs time.

40) ladybugsfly: Move Y3 Pikachu Squirtle

41) mxpf: Trade R2 Y2 Mxpf

42) ladybugsfly: M Y1 Squirtle Mxpf

43) mxpf: Sacrifice Y2 Mxpf
Move R2 Riachu Mxpf
Discover Y3 Scopuli R1 Caliban

44) ladybugsfly: Build Y1 Mxpf
	mxpf: Easily the grossest name for a planet

	mxpf: Gg!'
	Draw5PlayAll: Huh? Was there a time forfeit?


30297)
Variants: "Hard time"
Started: 2016.8.25, Ended: 2016.8.28
Participants: sompm (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld Y1 B2 G3



30291)
Variants: "Hard time"
Started: 2016.8.25, Ended: 2016.9.12
Participants: Felix (S), Simon (N)
Winner: Felix

1) Simon: Homeworld R1 B3 G3

2) Felix: H B1 R2 G3
	Simon: Have fun :)
	Felix: You too! Good luck :) hey, how do you set it up so that your open challenge automatically renews after someone accepts it? Make sense? I'm tired of having to set up new challenges each time...
	Simon: The feature is called Standing challenge, accessible from main navigation -> Challenges -> Manage standing challenges, near the top.
	Draw5PlayAll: Though personally I dislike it because if I go AFK unexpectedly for long periods of time, I can accumulate vast numbers of time forfeits. Just look at wil.

3) Simon: Build G1 Simon

4) Felix: Build G1 Felix
	Felix: Ah, that's it! Thanks for the tip mate.

5) Simon: Trade G1 R1 Simon

6) Felix: Trade G1 B1 Felix

7) Simon: Build R1 Simon

8) Felix: Build B1 Felix

9) Simon: Build G1 Simon

10) Felix: Build G1 Felix

11) Simon: Trade G1 Y1 Simon

12) Felix: Trade G1 Y1 Felix

13) Simon: Discover R1 Simon R2 R2

14) Felix: Discover B1 Felix R3 Carnagie

15) Simon: Build R2 Simon

16) Felix: Build G1 Felix

17) Simon: Discover R1 Simon G2 G2

18) Felix: Discover G1 Felix R3 Keepaway

19) Simon: Build R3 G2

20) Felix: Build B2 Felix

21) Simon: Trade R2 B2 Simon

22) Felix: Trade B2 R2 Felix

23) Simon: Move B2 Simon G2

24) Felix: Sacrifice G1 Keepaway
Build R3 Felix

25) Simon: Trade R3 Y3 G2

26) Felix: Discover R2 Felix R3 Pax

27) Simon: Build B2 G2

28) Felix: Build G1 Felix

29) Simon: Trade B2 Y2 G2

30) Felix: Move G3 Felix Carnagie

31) Simon: Build B2 G2

32) Felix: Build B2 Carnagie

33) Simon: Discover B2 G2 G3 G3

34) Felix: Trade B2 Y2 Carnagie

35) Simon: Build B2 G3

36) Felix: Build B3 Carnagie

37) Simon: Sacrifice Y2 G2
Move B2 G3 Felix
Move B2 G3 Felix
Catastrophe Felix B

38) Felix: M B3 Carnagie Felix

39) Simon: Move Y3 G2 Pax

40) Felix: Sacrifice Y2 Carnagie
Move R3 Felix Simon
Move B3 Felix Simon
	Draw5PlayAll: Klingon invasion!

	Felix: *Closes eyes tightly and prays this will work*
	Simon: gg
	Felix: It was touch and go there at the end. Good game!
	Simon: "A catastrophe occurred in the Felix system. All conversion (B) technology was lost."
This would have made sense only if I could move the reds, then build 2 reds afterwards. But there would have been only 1 in the stash, that's wasn't a followup thread. :-)
	Felix: Yeah, it probably would have been wiser to try to capture one or more of my reds before connecting our systems with that catastrophe. It ended up working in my favor to have our systems connected like that...
	Draw5PlayAll: I hate connecting the systems and I prefer to trigger the one that will not cause a connection.


30309)
Variants: "Hard time"
Started: 2016.8.25, Ended: 2016.9.18
Participants: mxpf (S), Felix (N)
Winner: Felix

1) Felix: H R1 B3 G3

2) mxpf: Homeworld Y2 G3 B3

3) Felix: Build G1 Felix
	Felix: Hi, good luck and have fun!

4) mxpf: Build B1 Mxpf

5) Felix: Trade G1 Y1 Felix

6) mxpf: Trade B1 R1 Mxpf

7) Felix: Build Y1 Felix

8) mxpf: Build R1 Mxpf
	mxpf: thanks! you too

9) Felix: Build Y1 Felix

10) mxpf: Build R2 Mxpf

11) Felix: Discover Y1 Felix G2 Darrow

12) mxpf: Trade R2 Y2 Mxpf

13) Felix: Build Y2 Darrow

14) mxpf: Discover Y2 Mxpf G1 Clarence

15) Felix: Trade Y1 B1 Felix

16) mxpf: Build R2 Mxpf

17) Felix: Move B1 Felix Darrow

18) mxpf: Move Y2 Clarence Darrow

19) Felix: Sacrifice G3 Felix
Build Y1 Darrow
Build Y3 Felix
Build Y3 Felix
Catastrophe Darrow Yellow

20) mxpf: Discover R1 Mxpf Y1 Cleveland

21) Felix: Trade Y3 G3 Felix

22) mxpf: Trade B3 G3 Mxpf

23) Felix: Build Y1 Felix

24) mxpf: Sacrifice G3 Mxpf
Build R2 Cleveland
Build R2 Mxpf
Build R3 Cleveland

25) Felix: Trade G3 R3 Felix

26) mxpf: Discover R3 Cleveland Y2 Springfield

27) Felix: M R3 Felix Darrow

	Felix: That's a shame!
	Draw5PlayAll: Both of you had a bluebird mistake.
	Felix: But he had no yellow, so mine was no mistake
	Draw5PlayAll: Was there a reason you neglected to sac Y3@Felix and move the red three steps to mxpf, winning instantly?
	Felix: Suspense? :)


30319)
Variants: "Hard time"
Started: 2016.8.26, Ended: 2016.9.27
Participants: Felix (S), ladybugsfly (N)
Winner: Felix

1) ladybugsfly: Homeworld Y3 G2 B3

2) Felix: Homeworld R1 B3 G3

3) ladybugsfly: Build B1 Ladybugsfly
	Felix: Welcome! First game?

4) Felix: Build G1 Felix

5) ladybugsfly: Discover B1 Ladybugsfly G1 Squirtle
	ladybugsfly: Nope, I've played in person a bit, but was just recently introduced to SuperDuper. :)

6) Felix: Trade G1 Y1 Felix
	Felix: Excellent. Well have fun and good luck!

7) ladybugsfly: Build B1 Ladybugsfly

8) Felix: Build Y1 Felix

9) ladybugsfly: Discover B1 Ladybugsfly G1 Wartortle

10) Felix: Trade Y1 B1 Felix

11) ladybugsfly: Build B2 Squirtle

12) Felix: Build B2 Felix

13) ladybugsfly: Build B2 Wartortle

14) Felix: Trade B2 Y2 Felix

15) ladybugsfly: Trade B2 Y2 Squirtle

16) Felix: Discover B1 Felix G2 Rim

17) ladybugsfly: Trade B1 R1 Wartortle

18) Felix: Trade Y1 R1 Felix

19) ladybugsfly: Build R2 Wartortle

20) Felix: Move R1 Felix Rim

21) ladybugsfly: B Y1 Squirtle

22) Felix: Build R2 Rim

23) ladybugsfly: Trade R1 Y1 Wartortle

24) Felix: Trade R2 Y2 Rim

25) ladybugsfly: Build B1 Ladybugsfly

26) Felix: Build B2 Rim

27) ladybugsfly: Trade B3 G3 Ladybugsfly

28) Felix: Discover B2 Rim G1 Pax

29) ladybugsfly: Sacrifice G3 Ladybugsfly
Build B2 Wartortle
Build B3 Squirtle
Build B3 Ladybugsfly

30) Felix: Build G2 Felix

31) ladybugsfly: Sacrifice Y2 Squirtle
Discover B3 Squirtle Y2 Blastoise
Move Y1 Squirtle Blastoise

32) Felix: Build G3 Felix

33) ladybugsfly: Sacrifice B1 Squirtle
Trade Y1 G1 Blastoise

34) Felix: Sacrifice G2 Felix
Build B1 Pax
Build Y1 Rim

35) ladybugsfly: Trade B1 R1 Ladybugsfly

36) Felix: Sacrifice G3 Felix
Build Y1 Rim
Build Y3 Felix
Build Y3 Felix

37) ladybugsfly: Sacrifice B2 Wartortle
Trade B3 G3 Blastoise
Trade B3 G3 Ladybugsfly

38) Felix: Build G2 Felix

39) ladybugsfly: Move G3 Blastoise Felix

40) Felix: Attack G3 Felix

41) ladybugsfly: Move G1 Blastoise Felix
Catastrophe Felix G

42) Felix: Trade B2 Y2 Pax

43) ladybugsfly: Discover Y1 Wartortle G2 Pikachu

44) Felix: Move Y2 Felix Pikachu

45) ladybugsfly: Move Y1 Pikachu Wartortle

46) Felix: Build B1 Pax

47) ladybugsfly: Move Y1 Wartortle Rim
Catastrophe Rim Y

48) Felix: B R2 Rim

49) ladybugsfly: Trade R2 Y2 Wartortle

50) Felix: Trade R1 Y1 Rim

51) ladybugsfly: Build Y1 Wartortle

52) Felix: Trade Y3 G3 Felix

53) ladybugsfly: Build R1 Ladybugsfly

54) Felix: Build G1 Felix

55) ladybugsfly: M R1 Ladybugsfly Wartortle

56) Felix: Build G3 Felix

57) ladybugsfly: Build R2 Wartortle

58) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Pikachu
Build Y3 Rim

59) ladybugsfly: Discover R1 Wartortle B2 Riachu

60) Felix: Move Y3 Rim Wartortle

61) ladybugsfly: Sacrifice G3 Ladybugsfly
Build R2 Wartortle
Build R3 Wartortle
Build R3 Ladybugsfly

62) Felix: Move R2 Rim Wartortle
Catastrophe Wartortle Red

63) ladybugsfly: Move R3 Ladybugsfly Wartortle

64) Felix: Move Y3 Wartortle Rim

65) ladybugsfly: Move R3 Wartortle Rim

66) Felix: Sacrifice Y3 Rim
Move B1 Pax Ladybugsfly
Move B1 Pax Ladybugsfly
Move Y2 Pax Ladybugsfly

67) ladybugsfly: S Y2 Wartortle
M R3 Rim Wartortle
M R3 Wartortle Ladybugsfly

68) Felix: Sacrifice G3 Felix
Build Y2 Ladybugsfly
Build Y3 Ladybugsfly
Build B2 Ladybugsfly
Catastrophe Ladybugsfly Yellow

69) ladybugsfly: B B3 Wartortle

70) Felix: Trade B2 R2 Ladybugsfly

71) ladybugsfly: Attack R2 Ladybugsfly

72) Felix: Trade G3 R3 Felix

73) ladybugsfly: Sacrifice R2 Ladybugsfly
Attack B1 Ladybugsfly
Attack B1 Ladybugsfly

74) Felix: B B2 Rim

75) ladybugsfly: M B3 Wartortle Pikachu

76) Felix: Build G1 Felix

77) ladybugsfly: Build B3 Pikachu

78) Felix: Build G3 Felix

79) ladybugsfly: S R1 Riachu
A Y2 Pikachu

80) Felix: Sacrifice Y3 Felix
Move G1 Felix Ladybugsfly
Move G1 Felix Ladybugsfly
Move G3 Felix Ladybugsfly
Catastrophe Ladybugsfly Green

	Felix: Thanks, you too! You played very well!
	Felix: I'm happy to rematch any time.


30316)
Variants: "Hard time"
Started: 2016.8.26, Ended: 2016.9.9
Participants: mxpf (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) mxpf: Homeworld Y1 B2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) mxpf: Build G1 Mxpf

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) mxpf: Trade G1 Y1 Mxpf

7) Draw5PlayAll: Build Y2 Draw5playall

8) mxpf: Build Y2 Mxpf

9) Draw5PlayAll: Trade Y2 B2 Draw5playall

10) mxpf: Discover Y1 Mxpf B3 Bootstrap

11) Draw5PlayAll: Discover B2 Draw5playall G2 Keeper

12) mxpf: Discover Y2 Mxpf G3 Cyclades
	Draw5PlayAll: What made you choose bootstrap as your system name?
	mxpf: we were just kicking off a bootstrap project at work, it was on my mind

13) Draw5PlayAll: Build Y2 Draw5playall

14) mxpf: Build G1 Mxpf
	mxpf: Why do you ask? :-)

15) Draw5PlayAll: Build B1 Keeper

16) mxpf: Build Y2 Cyclades

17) Draw5PlayAll: Move Y2 Draw5playall Keeper

18) mxpf: Trade G1 R1 Mxpf

19) Draw5PlayAll: Build Y3 Draw5playall

20) mxpf: Move Y2 Cyclades Keeper

21) Draw5PlayAll: Trade Y1 R1 Draw5playall

22) mxpf: Sacrifice G3 Mxpf
Build Y1 Keeper
Build Y3 Bootstrap
Build Y3 Cyclades

23) Draw5PlayAll: Sacrifice Y2 Keeper
Move B2 Keeper Cyclades
Move B2 Cyclades Mxpf

24) mxpf: Move Y3 Bootstrap Mxpf

25) Draw5PlayAll: Sacrifice R1 Draw5playall
Attack R1 Mxpf

26) mxpf: Trade Y3 R3 Mxpf

27) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R1 Mxpf
Build R2 Mxpf
Pass
Catastrophe Mxpf Red
	Draw5PlayAll: Wrong choice!



30320)
Started: 2016.8.27, Ended: 2016.9.7
Participants: Steele (S), ladybugsfly (N)
Winner: Steele

1) ladybugsfly: H Y2 B1 G3

2) Steele: Homeworld G3 B2 Y3

3) ladybugsfly: Build G1 Ladybugsfly

4) Steele: Build Y1 Steele

5) ladybugsfly: Discover G1 Ladybugsfly Y3 Snorlax

6) Steele: Discover Y1 Steele G1 Alpha

7) ladybugsfly: Build G1 Ladybugsfly

8) Steele: B Y1 Steele

9) ladybugsfly: Discover G1 Ladybugsfly Y3 Lapras

10) Steele: Trade Y1 B1 Steele

11) ladybugsfly: B G2 Ladybugsfly

12) Steele: D B1 Steele Y1 Beta

13) ladybugsfly: Sacrifice G3 Ladybugsfly
Build G2 Lapras
Build G2 Snorlax
Build G3 Ladybugsfly

14) Steele: Build Y1 Steele

15) ladybugsfly: T G2 Y2 Ladybugsfly

16) Steele: B Y2 Alpha

17) ladybugsfly: D G1 Snorlax B1 Squirtle

18) Steele: Trade Y1 R1 Steele

19) ladybugsfly: Trade G1 R1 Squirtle

20) Steele: Trade B1 G1 Beta

21) ladybugsfly: Discover G1 Lapras Y1 Eevee

22) Steele: Build G2 Beta

23) ladybugsfly: Build G3 Ladybugsfly

24) Steele: Discover G2 Beta B3 Gamma

25) ladybugsfly: Discover Y2 Ladybugsfly B3 Drowzee

26) Steele: Sacrifice Y3 Steele
Move G1 Beta Gamma
Move G1 Gamma Ladybugsfly
Move G2 Gamma Ladybugsfly
Catastrophe Ladybugsfly G



30318)
Variants: "Unrated"
Started: 2016.8.29, Ended: 2016.9.27
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld R1 B3 G3

2) Felix: Homeworld Y2 B3 G3

3) Draw5PlayAll: Build G1 Draw5playall
	Felix: Here we go again :) Have fun
	Draw5PlayAll: A fortress.

4) Felix: Build G1 Felix
	Felix: It's actually my favorite opening, but it's generally considered 
weaker, so I don't use it as often as I'd like.

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Felix: Trade G1 Y1 Felix

7) Draw5PlayAll: Build G1 Draw5playall

8) Felix: Build G1 Felix

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) Felix: Trade G1 R1 Felix

11) Draw5PlayAll: Discover B1 Draw5playall G2 Keeper

12) Felix: Build R1 Felix

13) Draw5PlayAll: Build Y1 Draw5playall

14) Felix: Build Y2 Felix

15) Draw5PlayAll: Build Y2 Draw5playall

16) Felix: Discover Y1 Felix G1 Rim

17) Draw5PlayAll: Move Y2 Draw5playall Keeper

18) Felix: Sacrifice G3 Felix
Build Y3 Felix
Build Y3 Rim
Build R2 Felix

19) Draw5PlayAll: Build Y3 Keeper

20) Felix: Trade Y3 G3 Felix

21) Draw5PlayAll: Trade Y3 R3 Keeper

22) Felix: Build Y3 Felix

23) Draw5PlayAll: Build Y3 Keeper

24) Felix: T Y3 B3 Felix

25) Draw5PlayAll: Build R2 Keeper

26) Felix: Move R1 Felix Rim

27) Draw5PlayAll: Discover Y3 Keeper B1 Action

28) Felix: Sacrifice Y1 Rim
Discover Y2 Felix G1 Pax

29) Draw5PlayAll: Build G1 Draw5playall

30) Felix: Build G2 Felix

31) Draw5PlayAll: Move R2 Keeper Action

32) Felix: Move B3 Felix Pax

33) Draw5PlayAll: Discover G1 Draw5playall B2 Draw2useem

34) Felix: Discover G2 Felix B1 Arakkis

35) Draw5PlayAll: Build G2 Draw5playall

36) Felix: Build G3 Arakkis

37) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R2 Keeper
Build R3 Action

38) Felix: Sacrifice G3 Arakkis
Build G3 Arakkis
Build R3 Rim
Build B2 Pax

39) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 Keeper
Build Y3 Action

40) Felix: Move R3 Rim Draw2useem
	Draw5PlayAll: Too many ships, too small of an area. Perhaps I should sac a Y1 and develop a colony there?

41) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover G1 Draw2useem Y1 Newrule
	Felix: There are quite a few ships out here... But I could always use more :)

42) Felix: Sacrifice Y2 Pax
Discover G2 Arakkis Y2 Dune
Move G3 Arakkis Dune
	Draw5PlayAll: Oh, so systems are sorted alphabetically.

43) Draw5PlayAll: Sacrifice G2 Draw5playall
Build G2 Newrule
Build B1 Keeper
	Felix: Huh. That's new to me too.

44) Felix: Move G3 Dune Newrule
	Draw5PlayAll: Weak factory, if you ask me. More for the green teleportation, but with an extra blue on the side.

45) Draw5PlayAll: Discover G2 Newrule B2 Spacejackpot
	Felix: Clever move! I would have had you in the next two moves if you hadn't evacuated your green.

46) Felix: Sacrifice R1 Felix
Attack G1 Newrule
	Draw5PlayAll: Now I do that to you.

47) Draw5PlayAll: Move R3 Action Dune

48) Felix: Sacrifice G2 Dune
Build G2 Felix
Build R1 Draw2useem

49) Draw5PlayAll: Move Y3 Action Spacejackpot

50) Felix: Move G1 Newrule Draw2useem

51) Draw5PlayAll: Sacrifice Y2 Keeper
Move B1 Keeper Pax
Move B1 Keeper Pax
Catastrophe Pax B
Pass
Pass
Pass

52) Felix: Sacrifice G3 Felix
Build G1 Draw2useem
Build G3 Felix
Build Y2 Rim

53) Draw5PlayAll: Discover R3 Dune B1 Icetraders
	Draw5PlayAll: I needed to get some ships in the bank!!

54) Felix: Move Y2 Rim Draw2useem
	Felix: It was getting pretty thin!

55) Draw5PlayAll: Sacrifice G2 Spacejackpot
Build Y2 Action
Pass
	Draw5PlayAll: This only backfired...

56) Felix: Build G2 Draw2useem
	Draw5PlayAll: Taking advantage  of the fact that you have nowhere safe to build that yellow!

57) Draw5PlayAll: Trade G3 B3 Draw5playall
	Felix: That's a great strategic technique, if you can tell that the opponent has nowhere safe to build, you can guarantee yourself the piece on your next move.

58) Felix: Build G3 Newrule
	Draw5PlayAll: Green Teleportaion and trading in one move!

59) Draw5PlayAll: Move Y3 Action Felix

60) Felix: Attack Y3 Felix
	Felix: Good threat anticipation. But now you have no ability to build!

61) Draw5PlayAll: Sacrifice Y3 Spacejackpot
Move Y2 Action Felix
Move Y1 Keeper Action
Move Y1 Action Felix
Catastrophe Felix Y
	Draw5PlayAll: GRRRR.

62) Felix: Trade R1 B1 Draw2useem

63) Draw5PlayAll: Trade R2 B2 Action

64) Felix: T G2 B2 Felix

65) Draw5PlayAll: Trade B3 Y3 Draw5playall

66) Felix: Build Y1 Draw2useem

67) Draw5PlayAll: Trade Y1 R1 Draw5playall

68) Felix: Build Y1 Draw2useem

69) Draw5PlayAll: Trade Y3 B3 Draw5playall

70) Felix: Sacrifice Y3 Rim
Move B1 Draw2useem Draw5playall
Move B2 Felix Keeper
Move B2 Keeper Draw5playall
Catastrophe Draw5playall Blue

71) Draw5PlayAll: Sacrifice B2 Action
Trade R3 Y3 Keeper
Pass

72) Felix: Sacrifice Y2 Draw2useem
Move R3 Draw2useem Draw5playall
Move R2 Felix Draw5playall
Catastrophe Draw5playall Red

	Draw5PlayAll: Our planet has become inhospitable and we rigged the Auto-Destruct to explode the empty starship if it was not destroyed by our [CONFIDENTIAL INFORMATION NOT DISCLOSED]
	Felix: We are glad to hear that we helped solve your tribble problem. However, when our first aid vessels entered the sector they discovered that the small red star remaining was also infested with tribbles. Our medical ships are also equipped with nuclear warheads, so we went ahead and took care of the tribble trouble for you. Unfortunately, the extermination process also destroyed your remaining home planet. Sorry about that...
	Draw5PlayAll: We do not mind. Anyone still alive at the time of the first catastrophe was already in the Galaxy-class warp ship when the second hit. We need a new planet to settle on, but we can survive on the large ship for a few years.

I wish the defense system was better, but every time they try to give me one, it repels our own ships during tests.


30327)
Variants: "Unrated, Hard time"
Started: 2016.8.31, Ended: 2016.9.29
Participants: MagicJohn (S), Felix (W), Draw5PlayAll (N), mxpf (E)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld R1 B3 G3
	Draw5PlayAll: This is the political chatter game and NOT the team game.

2) mxpf: Homeworld G2 B3 Y3

3) MagicJohn: Homeworld Y1 B2 G3

4) Felix: Homeworld R2 G3 B3

5) Draw5PlayAll: Build G1 Draw5playall

6) mxpf: Build Y1 Mxpf

7) MagicJohn: Build G1 Magicjohn
	mxpf: So...what does everything think about Larreta's plan to urbanize Villa 31? I'm all for it, myself.
	mxpf: *everyone DANG THESE CHUBBY FINGERS
	Draw5PlayAll: Felix is clearly the best player in the group. Be careful before he denies each of us of a different economy and then proceeds to build every legal R3 not used as a star.
	MagicJohn: build g1 magicjohn

8) MagicJohn: Trade G3 R3 Magicjohn
	Draw5PlayAll: I wonder if we should all target Felix though... After all, he can probably find ways of snagging all R3 ships and then implode our armies, dominating the battlefield.

I think we should not do this. After all, it is too risky for the rest of us. What if someone has to consistently make the big sacs and send in 2s and 3s while others send 1s and 2s? An anti-Felix conspiracy, or any other player for that matter, would cause some game-theoretical issues.

I have only one suggestion: Don't panic.
	Draw5PlayAll: Really though, if two people are going to cooperate to destroy a third, MAKE SURE that both people are giving up an equal amount. Otherwise the deal could flop: "Ha! Why don't you just lose those ships instead!" Or "Ha! I will not give up an R3 & Y3 for this!"
	MagicJohn: What I intended to initiate was a  Homeworlds game where players would form alliances and negotiate actions that could influence the outcome of games. Perhaps my languaging (political chatter) was misleading...... Sorry if it was. Real-life political discussion was not my intent. Given what is now happening in the presidential race, I'm not at all sure rational discussion or discourse is even possible. The Villa 31 situation is well discussed at http://www.bubblear.com/how-viable-is-the-villa-31-urbanization-plan-a-shantytown-delegate-weighs-in/. Sounds like another country is having to deal with the gaps between ideas, proposals, promises, and implementation of legislation...... with a tad of corruption tossed in on the side. Good luck with that...    
	Draw5PlayAll: Exactly the point of my last 2 posts

9) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Felix: Oops. I didn't want that to happen! Sorry for timing out, everyone, but have fun!
	Draw5PlayAll: This game just got a LOT more interesting.
	Draw5PlayAll: When we sighted the sleeper ship, our planetary empire immediately passed laws that would support the education of highly intelligent members of our species, so that we could build the biggest ships faster and claim the sleeper.

10) mxpf: Build Y1 Mxpf
	MagicJohn: Note to battleship commanders: Please initiate beautification project and paint ships an eye-catching tone of red. 

11) MagicJohn: Build R1 Magicjohn
	Draw5PlayAll: We are not interested in "looking nice". Instead we wish to peacefully explore the Galaxy.
	MagicJohn: First impressions are important....
	Draw5PlayAll: We disagree, especially when large-scale and important galactic success vs failure is at stake.

12) Draw5PlayAll: Build Y1 Draw5playall
	mxpf: oh! Look at that! That sleeper is so close to our system! We must away to the stars, my people.
	Draw5PlayAll: So, how do you like the idea of each person throwing a B1 at the system and destroying the sleeper? After all, there is only a 1/3 chance you will get it.
	Draw5PlayAll: Plus the system is green so if someone bails, you just build another blue
	MagicJohn: We will consider your plan carefully..

13) mxpf: Discover Y1 Mxpf B1 Monad

14) MagicJohn: Trade R3 Y3 Magicjohn

15) Draw5PlayAll: Build Y2 Draw5playall
	mxpf: Indeed, I am considering the pants off of that plan.

16) MagicJohn: Build Y2 Magicjohn

17) Draw5PlayAll: Trade Y2 B2 Draw5playall
	Felix: Enjoy fighting over my corpse, folks!
	Draw5PlayAll: *ping*
	Draw5PlayAll: I have intercepted  message from one of the crew on mxpf' ships.

Life support systems are failing! We know you have the fix. Can you please assist?

Fascinating.

18) MagicJohn: Discover Y2 Magicjohn G3 Kennedy
	MagicJohn: good grief.....

19) Draw5PlayAll: Discover B2 Draw5playall G2 Keeper
	Draw5PlayAll: This game is pointless now

20) MagicJohn: Build Y2 Kennedy

21) Draw5PlayAll: Move Y1 Draw5playall Keeper
	MagicJohn: Well, there are still two races trying to take over the universe,,,,,

22) MagicJohn: Move Y2 Kennedy Keeper

23) Draw5PlayAll: Sacrifice Y1 Keeper
Discover B2 Keeper G1 Earth

24) MagicJohn: Move Y2 Keeper Earth
	Draw5PlayAll: The whole intent of your game was ruined though. Now we have no diplomacy or making deals. But we still have 5 of every piece. This will make for a crowded Galaxy.
	MagicJohn: What do you want to do??
	Draw5PlayAll: Your move

25) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move B2 Earth Mxpf

26) MagicJohn: Build Y1 Earth

27) Draw5PlayAll: Build B1 Mxpf

28) MagicJohn: Build R1 Magicjohn

29) Draw5PlayAll: Trade B2 R2 Mxpf

	MagicJohn: Sorry, 15 year old pup just died and our "pack" is taking some time off....
	Draw5PlayAll: This game was boring. We should do another with 4/4/10 time control
	Draw5PlayAll: I knew it was just a matter of.... time... before something like this would happen.
I have a new challenge with a better time control and not using Hard Time.


30357)
Variants: "Hard time"
Started: 2016.9.2, Ended: 2016.11.4
Participants: Pheonixian (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3 Null
Pass

2) Pheonixian: Homeworld B1 R2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) Pheonixian: Build G1 Pheonixian

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Pheonixian: Trade G1 Y1 Pheonixian

7) Draw5PlayAll: Build G1 Draw5playall

8) Pheonixian: Build G1 Pheonixian

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) Pheonixian: Trade G1 R1 Pheonixian

11) Draw5PlayAll: Discover B1 Draw5playall G2 Earth

12) Pheonixian: Build G1 Pheonixian

13) Draw5PlayAll: Build B1 Earth

14) Pheonixian: Discover G1 Pheonixian B3 Apple

15) Draw5PlayAll: Build B2 Earth

16) Pheonixian: Build G1 Apple

17) Draw5PlayAll: Trade B2 R2 Earth

18) Pheonixian: Trade G1 R1 Apple

19) Draw5PlayAll: Build B2 Earth

20) Pheonixian: Build G1 Pheonixian

21) Draw5PlayAll: Build G1 Draw5playall

22) Pheonixian: Sac G3 Pheonixian
Build G2 Apple
Build G2 Apple
Build G3 Pheonixian

23) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse

24) Pheonixian: Build G3 Pheonixian

25) Draw5PlayAll: Trade B2 Y2 Earth

26) Pheonixian: Trade G3 B3 Pheonixian

27) Draw5PlayAll: Build G3 Icehouse

28) Pheonixian: Trade G2 B2 Apple

29) Draw5PlayAll: Sacrifice G3 Icehouse
Build G2 Draw5playall
Build G3 Icehouse
Build Y1 Earth

30) Pheonixian: Trade G2 Y2 Apple

31) Draw5PlayAll: Build R2 Earth

32) Pheonixian: Sacrifice G3 Pheonixian
Build G2 Apple
Build G3 Pheonixian
Build R3 Apple

33) Draw5PlayAll: Sacrifice Y2 Earth
Move B1 Earth Apple
Move B1 Earth Apple
Catastrophe Apple Blue

34) Pheonixian: Build Y2 Pheonixian

35) Draw5PlayAll: Sacrifice G3 Icehouse
Build Y2 Draw5playall
Build Y2 Draw5playall
Build Y3 Earth

36) Pheonixian: Discover G1 Pheonixian Y3 Sol

37) Draw5PlayAll: Move Y2 Draw5playall Icehouse
	Draw5PlayAll: Wanted the Y3 at Earth

38) Pheonixian: Build G1 Pheonixian
	Draw5PlayAll: Ah, this Investment thing.

39) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Icehouse
Build G3 Draw5playall
Build Y3 Icehouse
	Pheonixian: I'm not sure that's what I was going for, but it was where I ended up. 

40) Pheonixian: Build G3 Sol

41) Draw5PlayAll: Trade G1 B1 Icehouse

42) Pheonixian: Discover G3 Sol B2 Icecube

43) Draw5PlayAll: Sacrifice B1 Icehouse
Trade R2 B2 Earth

44) Pheonixian: Build G1 Icecube

45) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B1 Earth
Build R1 Earth

46) Pheonixian: Trade G1 B1 Icecube

47) Draw5PlayAll: Move B2 Earth Sol

48) Pheonixian: Move B3 Pheonixian Sol
	Draw5PlayAll: Excuse me, I need access to Sol. This will only take a moment.

49) Draw5PlayAll: Discover B2 Sol G1 G1

50) Pheonixian: Move R1 Pheonixian Sol
	Pheonixian: I'm afraid I simply cannot allow this. 

51) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B3 G1
Pass

52) Pheonixian: Discover G1 Sol R2 Firebrand

53) Draw5PlayAll: Move R1 Earth G1

54) Pheonixian: Sacrifice G3 Pheonixian
Build G3 Pheonixian
Build R3 Sol
Pass

55) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R3 Earth
Build R3 G1
Build G3 Draw5playall

56) Pheonixian: Move R3 Sol Icecube

57) Draw5PlayAll: Move G2 Draw5playall Firebrand
	Draw5PlayAll: You have a new chat message in the 4P game.

58) Pheonixian: Move R1 Sol Icecube

59) Draw5PlayAll: Sacrifice Y3 Earth
Move B1 Earth Sol
Move B1 Sol Icecube
Move B2 G1 Icecube
Catastrophe Icecube Blue

60) Pheonixian: Discover G1 Pheonixian Y3 Emrakul
	Draw5PlayAll: I am sort of just shuffling my pieces around to improve my position. I think I have the advantage in a cat and mouse situation.

61) Draw5PlayAll: Build G3 Icehouse

62) Pheonixian: Discover Y1 Pheonixian R3 Fireball
	Draw5PlayAll: NEVER put a ship in a system of the same color if you care about that system!

63) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R3 G1 Emrakul

64) Pheonixian: Discover G1 Emrakul Y1 Venus

65) Draw5PlayAll: S G3 Icehouse
Build G3 Icehouse
Build R1 Emrakul
Build B1 G1

66) Pheonixian: Move G1 Venus Sol

67) Draw5PlayAll: Move R2 Earth Fireball

68) Pheonixian: Move B3 Sol Firebrand

69) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R1 Emrakul Pheonixian
Move R1 G1 Emrakul

70) Pheonixian: Attack G2 Firebrand

71) Draw5PlayAll: Sacrifice Y1 Earth
Move B1 G1 Emrakul

72) Pheonixian: Attack R1 Pheonixian
	Draw5PlayAll: Having the lone green scares me..

73) Draw5PlayAll: Sacrifice Y2 Icehouse
Move R1 Emrakul Pheonixian
Move R2 Fireball Pheonixian
Catastrophe Pheonixian Red

74) Pheonixian: Build Y1 Pheonixian
	Pheonixian: I realized what you were doing after your first move, but I don't think I have a way to prevent the catastrophe. 
	Draw5PlayAll: Time was precisely what I needed!

75) Draw5PlayAll: Move R3 Emrakul Pheonixian
	Draw5PlayAll: My fear of a screwup is high but I think I can defend.
	Pheonixian: Okay you didn't do what I expected. I'm not sure if that's good or bad for me.

	Draw5PlayAll: To be honest I did not expect it to be this easy myself. Trading for an R2 would set me back several moves, forcing me to defend my homeworld.


30367)
Started: 2016.9.4, Ended: 2016.10.3
Participants: Pheonixian (S), dragonlord (N)
Winner: Pheonixian

1) dragonlord: Homeworld G1 R2 B3

2) Pheonixian: Homeworld B1 Y2 G3

3) dragonlord: Build B1 Dragonlord

4) Pheonixian: Build G1 Pheonixian

5) dragonlord: Trade B1 G1 Dragonlord

6) Pheonixian: Build G2 Pheonixian

7) dragonlord: Build G2 Dragonlord

8) Pheonixian: Trade G2 B2 Pheonixian

9) dragonlord: Trade G2 Y2 Dragonlord

10) Pheonixian: Build G2 Pheonixian

11) dragonlord: Build G2 Dragonlord

12) Pheonixian: Trade G2 Y2 Pheonixian

13) dragonlord: Discover G2 Dragonlord Y3 Portals

14) Pheonixian: Build B1 Pheonixian

15) dragonlord: Build G2 Portals

16) Pheonixian: Trade B2 R2 Pheonixian

17) dragonlord: Build B1 Dragonlord

18) Pheonixian: Build R1 Pheonixian

19) dragonlord: Trade B1 R1 Dragonlord

20) Pheonixian: Discover R2 Pheonixian G3 Peach

21) dragonlord: Build B1 Dragonlord

22) Pheonixian: Move G1 Pheonixian Peach

23) dragonlord: Move B1 Dragonlord Portals

24) Pheonixian: Build G2 Pheonixian

25) dragonlord: Trade G2 B2 Portals

26) Pheonixian: Move B1 Pheonixian Peach

27) dragonlord: Build B2 Dragonlord

28) Pheonixian: Build Y1 Pheonixian

29) dragonlord: Trade B3 Y3 Dragonlord

30) Pheonixian: Move Y2 Pheonixian Peach

31) dragonlord: Discover G1 Dragonlord R3 Icehouse

32) Pheonixian: Build R1 Pheonixian

33) dragonlord: Build B2 Dragonlord

34) Pheonixian: Sacrifice G3 Pheonixian
Build B3 Peach
Build G2 Peach
Build G3 Pheonixian

35) dragonlord: Sacrifice Y2 Dragonlord
Move G1 Icehouse Dragonlord
Move G1 Dragonlord Peach
Catastrophe Peach Green

36) Pheonixian: Trade G2 Y2 Pheonixian

37) dragonlord: Discover B2 Dragonlord G3 Garden

38) Pheonixian: Discover R1 Pheonixian Y3 Sol

39) dragonlord: Trade B2 R2 Dragonlord

40) Pheonixian: Move R1 Sol Dragonlord
Catastrophe Dragonlord Red

41) dragonlord: Build Y1 Dragonlord

42) Pheonixian: Discover Y2 Pheonixian G3 Terra

43) dragonlord: Sacrifice B1 Portals
Trade Y1 B1 Dragonlord

44) Pheonixian: Build Y1 Terra

45) dragonlord: Build B1 Dragonlord

46) Pheonixian: Build G1 Pheonixian

47) dragonlord: Trade Y3 R3 Dragonlord

48) Pheonixian: Discover G1 Pheonixian R3 Dragon

49) dragonlord: Trade B1 Y1 Dragonlord

50) Pheonixian: Build G1 Pheonixian

51) dragonlord: Build G2 Portals

52) Pheonixian: Sacrifice G3 Pheonixian
Build R1 Pheonixian
Build G2 Dragon
Build G3 Pheonixian

53) dragonlord: Build Y2 Dragonlord

54) Pheonixian: Move Y1 Pheonixian Dragon

55) dragonlord: Move Y2 Dragonlord Portals

56) Pheonixian: Build Y3 Dragon

57) dragonlord: Discover Y2 Portals R2 Jail

58) Pheonixian: Discover G1 Pheonixian Y3 Lemon

59) dragonlord: Build B1 Dragonlord
	Pheonixian: Are you sure about that?
It lets me win.

60) Pheonixian: Sacrifice Y3 Dragon
Move G1 Dragon Dragonlord
Move G2 Dragon Dragonlord
Move G1 Lemon Dragonlord
Catastrophe Dragonlord Green



30315)
Variants: "Hard time"
Started: 2016.9.9, Ended: 2016.9.23
Participants: Simon (S), ladybugsfly (N)
Winner: Simon

1) ladybugsfly: Homeworld Y3 G1 B3

2) Simon: Homeworld B2 R1 G3
	Simon: Hi, have fun!

3) ladybugsfly: Build B1 Ladybugsfly

4) Simon: Build G1 Simon
	ladybugsfly: You, too!

5) ladybugsfly: Discover B1 Ladybugsfly Y2 Charmander

6) Simon: Trade G3 Y3 Simon

7) ladybugsfly: T B1 G1 Charmander

8) Simon: Build G2 Simon

9) ladybugsfly: B G2 Charmander

10) Simon: Discover G2 Simon B3 B3

11) ladybugsfly: D G1 Charmander Y3 Charmeleon

12) Simon: Build Y1 Simon

13) ladybugsfly: B B1 Ladybugsfly

14) Simon: Move Y1 Simon B3

15) ladybugsfly: T B3 G3 Ladybugsfly

16) Simon: Build G2 Simon

17) ladybugsfly: Sacrifice G3 Ladybugsfly
Build G3 Charmander
Build G3 Charmander
Build G3 Charmeleon

18) Simon: Move G2 B3 Charmander
Catastrophe Charmander G

19) ladybugsfly: D G3 Charmeleon Y2 Charmander

20) Simon: Move G2 Simon B3

21) ladybugsfly: Build B1 Ladybugsfly

22) Simon: Build G2 B3

23) ladybugsfly: Trade B1 R1 Ladybugsfly

24) Simon: Trade G2 R2 B3

25) ladybugsfly: Build G2 Charmander

26) Simon: Build G2 B3

27) ladybugsfly: M G3 Charmander Ladybugsfly

28) Simon: Build G3 Simon

29) ladybugsfly: Trade G3 R3 Ladybugsfly

30) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 Simon
Build G3 B3

31) ladybugsfly: Move G1 Charmeleon Simon
Catastrophe Simon G

32) Simon: Sacrifice G2 B3
Build Y1 Simon
Build Y1 B3

33) ladybugsfly: B B1 Ladybugsfly

34) Simon: Discover Y1 B3 G2 G2

35) ladybugsfly: M R1 Ladybugsfly G2

36) Simon: Sacrifice G3 B3
Build Y2 B3
Build Y2 G2
Build Y3 G2
	Draw5PlayAll: Simon, what do you do if you discover two identical systems?
	Simon: g2b and g3c :)

37) ladybugsfly: A Y1 G2

38) Simon: Sacrifice R2 B3
Attack R1 G2
Attack Y1 G2

39) ladybugsfly: M B1 Ladybugsfly Charmander

40) Simon: Build R1 G2

41) ladybugsfly: B B1 Charmander
	Draw5PlayAll: Direct star names vs pocket monsters

42) Simon: Build R2 G2

43) ladybugsfly: T R3 G3 Ladybugsfly

44) Simon: Move Y3 G2 Ladybugsfly

45) ladybugsfly: Sacrifice G3 Ladybugsfly
Build B2 Charmander
Build B2 Ladybugsfly
Build B3 Ladybugsfly
	ladybugsfly: Nice game
	ladybugsfly: Nice game

46) Simon: Sacrifice R2 G2
Attack B3 Ladybugsfly
Attack B2 Ladybugsfly

47) ladybugsfly: Sacrifice B2 Charmander
Trade B1 G1 Charmander
Trade B1 G1 Charmander
	Simon: gg!

48) Simon: Sacrifice R1 G2
Attack B1 Ladybugsfly



31871)
Started: 2017.4.4, Ended: 2017.8.14
Participants: gjimenez (S), velgarath2 (N)
Winner: velgarath2

1) velgarath2: Homeworld B2 Y3 G3

2) gjimenez: Homeworld G1 Y2 R3 *

3) velgarath2: Build G1 Velgarath2

4) gjimenez: Build R1 Gjimenez
	gjimenez: build R gjimenez
	gjimenez: Joder, no funciona
	gjimenez: There are insufficient R pieces in the stash.
	Draw5PlayAll: You want:
build R1 gjimenez

5) velgarath2: Discover G1 Velgarath2 B1 Jagermeister



30256)
Started: 2016.9.13, Ended: 2016.9.29
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Felix: Homeworld B1 R3 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	Felix: Same to you :)

4) Felix: Build G1 Felix

5) ts52: Trade G1 Y1 Ts52

6) Felix: Trade G1 Y1 Felix

7) ts52: Build Y2 Ts52

8) Felix: Build Y2 Felix

9) ts52: Discover Y2 Ts52 G3 Kermit

10) Felix: Discover Y1 Felix G2 Caladan

11) ts52: Build G1 Ts52

12) Felix: Build G1 Felix

13) ts52: Trade G1 B1 Ts52

14) Felix: Build Y2 Caladan

15) ts52: Build Y3 Kermit

16) Felix: Build Y3 Felix

17) ts52: Move B1 Ts52 Kermit

18) Felix: Trade Y3 B3 Felix

19) ts52: Trade Y3 R3 Kermit

20) Felix: Build Y3 Felix
	Draw5PlayAll: Star Wars planets vs muppets
	Felix: Wrong on Star Wars. Caladan comes from the book Dune by Frank Herbert :)

21) ts52: Move R3 Kermit Caladan

22) Felix: Sacrifice Y2 Caladan
Move Y1 Caladan Kermit
Move Y1 Kermit Ts52

23) ts52: Trade Y1 R1 Ts52

24) Felix: Sacrifice G3 Felix
Build Y1 Ts52
Build Y2 Ts52
Build G1 Felix
Catastrophe Ts52 Yellow

25) ts52: Build R1 Ts52

26) Felix: Discover B3 Felix G2 Geidi_prime

27) ts52: Trade R1 Y1 Ts52

28) Felix: Trade G1 R1 Felix

29) ts52: Build R1 Caladan

30) Felix: Move R1 Felix Geidi_prime

31) ts52: Build R2 Ts52

32) Felix: Build R2 Geidi_prime

33) ts52: Build Y1 Ts52

34) Felix: Trade Y2 B2 Felix

35) ts52: Build B1 Kermit

36) Felix: Trade R2 Y2 Geidi_prime

37) ts52: Build B2 Kermit

38) Felix: Move B3 Geidi_prime Kermit
Catastrophe Kermit Blue

39) ts52: Build Y1 Ts52

40) Felix: Build B1 Felix

41) ts52: Move R1 Ts52 Felix

42) Felix: Attack R1 Felix

43) ts52: Sacrifice Y2 Kermit
Move R1 Caladan Felix
Move Y1 Ts52 Felix

44) Felix: Move B1 Felix Geidi_prime

45) ts52: Sacrifice G3 Ts52
Build Y2 Felix
Build Y2 Felix
Build R2 Felix
Catastrophe Felix Red
Catastrophe Felix Yellow

46) Felix: Build B1 Felix
	Felix: Verrrrry nice defense.

47) ts52: Sacrifice Y1 Ts52
Move R3 Caladan Felix
	ts52: Thanks. I explored several other options before finding that one.

48) Felix: Sacrifice Y2 Geidi_prime
Move B1 Felix Ts52
Move B2 Felix Ts52
	Felix: It was effective on multiple fronts. I admit I thought I had you. Very nice playing and good game!

49) ts52: Attack G1 Felix
	ts52: It was definitely touch and go there for a while. Always tough to recover from catastrophes in your homeworld. Definitely a good game.



30392)
Variants: "Sinister"
Started: 2016.9.13, Ended: 2017.1.4
Participants: Pheonixian (S), Draw5PlayAll (W), Felix (N), dragonlord (E)
Winner: Draw5PlayAll

1) Felix: Homeworld R2 B3 G3

2) dragonlord: Homeworld R1 B2 G3
	Felix: Here we go! Have fun all :)

3) Pheonixian: Homeworld B1 R3 G3
	dragonlord: Good luck everyone

4) Draw5PlayAll: Homeworld R2 B3 G3
	Draw5PlayAll: Exclamation mark!

5) Felix: Build G1 Felix
	Draw5PlayAll: When did I join this game?
	Felix: Looks like it's going to be a battle over yellow!

6) dragonlord: Build G1 Dragonlord

7) Pheonixian: Build G1 Pheonixian
	Draw5PlayAll: We all can build one though.
	dragonlord: Please don't make anyone surrender.
	Draw5PlayAll: It never fails. Every time we try a 4P game, someone seems to die on time.
	Draw5PlayAll: If you do not like time forfeits, use at least 5/3/7 as the time control. 3/1/10 rarely works.
	Draw5PlayAll: If you do not like time forfeits, use at least 5/3/7 as the time control. 3/1/10 rarely works.

8) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: What??? When I actually wrote that, it showed up once.

9) Felix: Trade G1 Y1 Felix
	Felix: Even if time runs out, just don't force a surrender. I think you can choose to or not to, unless hard time is activated.

10) dragonlord: Trade G1 Y1 Dragonlord

11) Pheonixian: Trade G1 Y1 Pheonixian
	Draw5PlayAll: Hard time by definition is the variant in which a time forfeit immediately surrenders you. Perhaps sis is good if you find that your opponent moved before you even got to eliminate them.

All ladder games are hard time and 3/3/10.

12) Draw5PlayAll: Trade G1 Y1 Draw5playall

13) Felix: Build G1 Felix
	Draw5PlayAll: Soon our paths will diverge.

14) dragonlord: Build Y1 Dragonlord

15) Pheonixian: Build Y2 Pheonixian

16) Draw5PlayAll: Build Y2 Draw5playall

17) Felix: Build Y2 Felix

18) dragonlord: Build G1 Dragonlord

19) Pheonixian: Build Y2 Pheonixian

20) Draw5PlayAll: Trade Y2 B2 Draw5playall

21) Felix: Discover Y2 Felix G1 Caladan
	Draw5PlayAll: Captain's log, Stardate 47011.2: We have seen three other alien races are going along similar lines of action to our own. We have decided to attempt to diverge by attaining Ambassador-class trading capabilities.

22) dragonlord: Discover G1 Dragonlord Y3 Terrace
	Felix: Venturing forth, commander! We don't know what's out there, but we aim to find out!

23) Pheonixian: Build G1 Pheonixian

24) Draw5PlayAll: Discover B2 Draw5playall G1 Keeper

25) Felix: Build Y2 Felix

26) dragonlord: Build G2 Dragonlord

27) Pheonixian: Discover Y2 Pheonixian G2 Seraphim
	Draw5PlayAll: Admiral's Log, Stardate 47014.9: The aliens of the star system Phoenixian are experiencing life support problems. We are waiting until they either fix the problem or die trying.

28) Draw5PlayAll: Build G2 Draw5playall
	Pheonixian: The life support systems have been restored to proper condition. An unexpected surge in energy consumption was experienced in conjunction with a surge in industry, resulting in a failure of temperature regulation and a pipe bursting due to freezing of dihydrogen monoxide. Personnel loss occured. Steps to prevent failure of this manner in the future have been taken.
	Draw5PlayAll: Admiral's log, Supplemental: We are pursuing Ambassador-class construction vessels as we wait for more exciting action.

29) Felix: Discover G1 Felix B1 Bazoik

30) dragonlord: Build G2 Terrace

31) Pheonixian: Trade Y1 B1 Pheonixian
	dragonlord: Farming is taken very seriously here in dragonlord. It is the key to civilization and food. Farmers are constantly being trained.

32) Draw5PlayAll: Build B1 Keeper

33) Felix: Build G2 Bazoik

34) dragonlord: Trade G2 B2 Dragonlord
	Felix: Reek rik ark kram korpo rak rak rimmy rook krame korkra koori [Translation: Increasing build capacity to expand fleet. Detect carbon-based life-forms in the vicinity.]

35) Pheonixian: Build Y1 Seraphim

36) Draw5PlayAll: Discover G2 Draw5playall B1 B1


Pass
	dragonlord: Captain's log 111: Increasing life support to prevent situations such as  the life support loss on Phoenixian and have more resource potential
	dragonlord: Captain's log 111: Increasing life support to prevent situations such as  the life support loss on Phoenixian and have more resource potential

37) Felix: Sacrifice Y2 Felix
Move G2 Bazoik Draw5playall
Move G1 Bazoik Draw5playall
	Draw5PlayAll: Admital's log star date 47019.4: We decided to branch out and found a small IceTraders star base on a water planet. We wonder why the IceTraders like blue so much...

38) dragonlord: Move B2 Dragonlord Terrace
	Felix: &#1490;&#1463;&#1501; &#1502;&#1506;&#1489;&#1493;&#1491;&#1514;&#1493; &#1492;&#1497;&#1488; &#1493;&#1513;&#1500;&#1497;&#1513;&#1497;&#1514; &#1502;&#1506;&#1500; &#1492;&#1514;&#1492; &#1489;&#1506;&#1491; &#1492;&#1504;&#1493;&#1512;&#1488;&#1497;&#1501; &#1514;&#1468;&#1461;&#1513;&#1473;&#1461;&#1489; &#1500;&#1492;&#1497;&#1512;&#1488;&#1493;&#1514; &#1505;&#1500;&#1495; &#1497;&#1460;&#1492;&#1456;&#1497;&#1493;&#1468;. &#1493;&#1502;&#1506;&#1489;&#1493;&#1491;&#1514;&#1493; &#1489;&#1506;&#1512;&#1489;&#1493;&#1489;&#1497;&#1492; &#1506;&#1462;&#1513;&#1474;&#1456;&#1512;&#1461;&#1492; &#1493;&#1502;&#1508;&#1493;&#1514;&#1495;&#1497;&#1501; &#1497;&#1463;&#1495;&#1456;&#1491;&#1468;&#1464;&#1493; &#1505;&#1456;&#1512;&#1493;&#1468;&#1495;&#1464;&#1492;. &#1490;&#1500; &#1488;&#1507; &#1499;&#1512;&#1493;&#1514;&#1497;&#1501; &#1500;&#1490;&#1494;&#1512;&#1497;&#1501; &#1505;&#1490; &#1510;&#1491; &#1502;&#1513;&#1500;&#1502;&#1497;&#1501; &#1513;&#1473;&#1462;&#1492;&#1461;&#1501; &#1492;&#1501; &#1500;&#1456;&#1513;&#1473;&#1461;&#1501; &#1514;&#1492; &#1490;&#1497;&#1489;&#1493;&#1512;&#1497;. &#1488;&#1501; &#1489;&#1488;&#1495;&#1493;&#1494;&#1514;&#1497; &#1512;&#1498; &#1500;&#1497; &#1488;&#1497; &#1489;&#1468;&#1456;&#1508;&#1460;&#1497;&#1493; &#1500;&#1492;&#1514;&#1512;&#1488;&#1493;&#1514; &#1495;&#1503; &#1493;&#1492;&#1514;&#1502;&#1500;&#1488;&#1493; &#1499;&#1489;&#1512;&#1494;&#1497;&#1500;&#1497; &#1511;&#1500; &#1491;&#1501; &#1493;&#1488;&#1493;&#1499;&#1500;&#1497;&#1501; &#1490;&#1503;. &#1497;&#1513;. [TRANSLATION: Reactor explosion in home sector! Teleportation beams going haywire. Construction vessels teleported to unknown sector.]

39) Pheonixian: Build G2 Pheonixian
	dragonlord: Captain's log 121: Increasing strength of Terrace. As said before, farming is taken very seriously on Dragonlord. All these wars cause so much starvation and we will keep everyone who fights for us fed, allies included.

40) Draw5PlayAll: Trade G3 B3 Draw5playall
	Draw5PlayAll: Ah, these intruders again. The ones with this "peace" scandal. Oh, I remember the day when they claimed the destruction of a planet was an "accident". Any reasonable starship captain should know that having a concentration of technology creates an inevitable disaster!

We are considering the most efficient way to delete the intruders.

41) Felix: Build G3 Felix

42) dragonlord: Build G3 Dragonlord

43) Pheonixian: Move B1 Pheonixian Seraphim
	Felix: Blip blip blip blip blip blip Blip blip blip blip blip blip bloop. [We seem to have lost contact with our construction vessels in the unknown sector. Building new and better construction vessels to replace them.]
	Draw5PlayAll: I should wait until these aliens fire Felix and appoint a new government. Sadly, I hear he is named "dictator for life and then some".

44) Draw5PlayAll: Attack G2N Draw5playall

45) Felix: Trade G1 B1 Draw5playall

46) dragonlord: Discover G1 Terrace Y2 Solblast
	Draw5PlayAll: I vote we cause a G catastrophe.
	Pheonixian: Where is it you are trying to cause this catastrophe?
	Draw5PlayAll: Ummm.. Uh... Felix or DragonLord's homeworld, obviously...
	dragonlord: I'll assist causing a catastrophe in Felix's homeworld.

47) Pheonixian: Build B2 Seraphim
	Felix: Ah, but may I point out that it is now much easier to cause a blue catastrophe in Draw5's homeworld? Dragonlord, I believe you need to eliminate said world, isn't that right? You know what to do...
	Draw5PlayAll: GAAH!! If you do then I will abandon my homeworld and you will have to defeat Felix instead!
	Draw5PlayAll: Felix, you are actually talking to Phoenixian.. and so am I. Phoenixian can knock out my blue star and ship in one move, and is the one who needs to destroy me.

However, if he decides to blow up my star and ship then I will resign the game and blast into hyperspace, leaving the remaining players. Then Phoenixian will have to destroy Felix instead. Muhahaha!

48) Draw5PlayAll: Trade B3 R3 Draw5playall

49) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y3 Caladan
Build Y3 Felix

50) dragonlord: Move G1 Solblast Pheonixian
Catastrophe Pheonixian G
	Draw5PlayAll: Felix, if you rip apart my blue star then Phoenixian can have an easy attack... and you do not want him to win because then you lose.
	Felix: I thought whoever eliminated the player to their left just became the winner? In that case, Phoenixian will win if he destroys you. Not ideal...
	Felix: Hmm, but you have a point. Offense may not be the best defense after all.
	Draw5PlayAll: Well, if Phoenixian breaks down one of my stars then I will probably suicide so he does not get the win.

This variant is not broken but it seems like it is more last man standing than its intent.

51) Pheonixian: Trade Y1 G1 Seraphim
	Felix: I don't think the system allows you to suicide, but perhaps it does.
	Draw5PlayAll: Even then, I could set up a catastrophe and then tell Felix or DragonLord to finish me off. And they would, unless they WANTED Phoenixian to win.

52) Draw5PlayAll: Attack B1N Draw5playall

53) Felix: Trade Y3 B3 Felix

54) dragonlord: Discover G3 Dragonlord R3 Firebeam

55) Pheonixian: Build Y1 Seraphim

56) Draw5PlayAll: Build Y2 Draw5playall

57) Felix: Sacrifice Y1 Felix
Discover Y3 Caladan B3 Bazoik
	dragonlord: With all the fights breaking out the council of Dragonlord has decided to attempt to pacify those fights but be prepared. If you're not alive you can't farm-Dragonlord Motto

58) dragonlord: Build G1 Terrace

59) Pheonixian: Trade B1 R1 Seraphim
	Draw5PlayAll: No, that was just some futile invaders we were clearing. They are of lesser intellect than most of their species...

60) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move B1 Keeper Felix
Move B2 Keeper Felix
Catastrophe Felix Blue
Pass
Pass
Pass

61) Felix: Build Y1 Caladan
	dragonlord: Farming will always continue here on Dragonlord

62) dragonlord: Trade G2 R2 Terrace

63) Pheonixian: Build R1 Seraphim

64) Draw5PlayAll: Build G1 B1

65) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y3 Felix
Build Y3 Bazoik
	dragonlord: Captain's log 323: Farmers can fight effectively. Giving are farming ships weapons to be ready. Fights are still breaking out and Dragonlord will be ready. If you're not alive, you can't farm- Dragonlord Motto

66) dragonlord: Build B1 Terrace

67) Pheonixian: Sacrifice G1 Seraphim
Build Y3 Pheonixian

68) Draw5PlayAll: Move Y1 Draw5playall B1

69) Felix: Move Y2 Felix Pheonixian

70) dragonlord: Discover B1 Terrace R2 Firefarm

71) Pheonixian: Move Y2 Pheonixian Firefarm

72) Draw5PlayAll: Build G1 Draw5playall

73) Felix: Sacrifice Y3 Bazoik
Move Y1 Caladan Felix
Move Y1 Felix Pheonixian
Move Y2 Felix Pheonixian
Catastrophe Pheonixian Yellow

74) dragonlord: Build G1 Dragonlord
	dragonlord: New FireFarming(copyright) technology is being used: blow up stars and objects and use that energy to farm.

75) Draw5PlayAll: Build Y1 B1

76) Felix: Move Y3 Bazoik Firefarm

77) dragonlord: Move Y1 Dragonlord Terrace
	Felix: Kaboom. Sorry Pheonixian. I couldn't let Dragonlord kill you and take the win!
	Draw5PlayAll: How could he?

78) Draw5PlayAll: Trade G2 Y2 Draw5playall

79) Felix: Attack B1E Firefarm

80) dragonlord: Build G2 Firebeam

81) Draw5PlayAll: Build Y2 Draw5playall
	dragonlord: Dragonlord is a proud supporter of economic diversity. To support this, terrace has been given ships of all kinds.

82) Felix: Build Y3 Caladan

83) dragonlord: Build Y3 Dragonlord
	Draw5PlayAll: Ahem!
	Draw5PlayAll: Please do not make me press the red button!
	Draw5PlayAll: At -7 days we are removing the dragons.
	Draw5PlayAll: That gives DragonLord 6 days.
	Draw5PlayAll: What happened??
	Draw5PlayAll: I really don't want ANOTHER time forfeit! Phoenix lost legitimately, dragon did not!
	Draw5PlayAll: This is the only way to get a message to our opponent.

84) Draw5PlayAll: Discover Y2 Draw5playall B1 B1'
	Draw5PlayAll: YES!!!

85) Felix: Sacrifice Y2 Caladan
Move B1 Firefarm Caladan
Move B1 Caladan Felix

86) dragonlord: Build B1 Terrace

87) Draw5PlayAll: Sacrifice G2 B1
Build G2 B1
Build Y2 B1'

88) Felix: Trade Y3 G3 Felix

89) dragonlord: Move B1 Terrace Dragonlord

90) Draw5PlayAll: Build Y3 Draw5playall

91) Felix: Attack Y2S Firefarm

92) dragonlord: Move B1 Dragonlord Firebeam
	Felix: It looks grim for me!

93) Draw5PlayAll: Move R3 Draw5playall B1

94) Felix: Move Y3 Caladan Felix

95) dragonlord: Build B2 Firebeam

96) Draw5PlayAll: Build R1 B1

97) Felix: B B2 Felix

98) dragonlord: Discover Y1 Terrace G1 Farm

99) Draw5PlayAll: Discover B1 Draw5playall R1 R1

100) Felix: D B2 Felix G3 Safety

101) dragonlord: Move Y1 Dragonlord Firebeam

102) Draw5PlayAll: Sacrifice G2 B1
Build G2 B1
Build B3 R1

103) Felix: Build B3 Safety

104) dragonlord: Move B1 Firebeam Farm

105) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R3 B1 Felix
Move R1 B1 Felix
	Draw5PlayAll: I am pondering a plan which will remove Felix and let DragonLord take the win.

106) Felix: Trade G3 R3 Felix
Catastrophe Felix Red

107) Draw5PlayAll: Pass

108) dragonlord: Discover B2 Terrace R1 Anger

109) Draw5PlayAll: Build G2 Draw5playall

110) dragonlord: Move B2 Firebeam Anger
	Draw5PlayAll: Our people are watching the attack on their computer screens... and fake news about conspiracies and threats to our planet is swarming our communications!
	Draw5PlayAll: There is one too many red in the stash. I win. If Felix stacks, DragonLord can only discover three of them as stars, and if Felix discovers them then he loses ships as I get the first shot.

111) Draw5PlayAll: Trade Y2 R2 B1'
	Felix: Huh. That probably wasn't supposed to work.
	Felix: But good luck to the both of ya :D
	Draw5PlayAll: You could simply have clicked "Resign" after confirming it.
	Draw5PlayAll: Was DragonLord just skipped?!?

112) dragonlord: Sacrifice Y3 Dragonlord
Move B1 Farm Draw5playall
Move B2 Anger Draw5playall
Move B2 Anger Draw5playall
Catastrophe Draw5playall Blue

113) Draw5PlayAll: Sacrifice G2 Draw5playall
Build Y2 B1'
Build R1 B1'

114) dragonlord: Build R2 Terrace
	Felix: Would it give you the win if I clicked resign? I don't think I could resign after I was removed from the game...
	Felix: There seems to be a loophole in Sinister where suiciding is possible to deny someone else the win.

115) Draw5PlayAll: Sacrifice Y2 B1'
Move G1 B1 Safety
Move G1 Safety Dragonlord
	Draw5PlayAll: Either way, DragonLord could have done the catastrophe. That is a loophole in Sinister, yes, and that is why I think Last Man Standing is better for 3-4 players.

116) dragonlord: Trade G3 R3 Dragonlord

117) Draw5PlayAll: Sacrifice G2 B1
Build Y2 Draw5playall
Build G2 Dragonlord

118) dragonlord: Trade R3 Y3 Dragonlord

119) Draw5PlayAll: Trade G2 Y2 Dragonlord

120) dragonlord: Discover R2 Terrace B1 Ice

121) Draw5PlayAll: Build Y3 Dragonlord

122) dragonlord: Move Y3 Dragonlord Safety

123) Draw5PlayAll: Attack G1E Dragonlord

	Draw5PlayAll: I thought I was lost! Good game.


30331)
Variants: "Unrated"
Started: 2016.9.14, Ended: 2016.10.12
Participants: Felix (S), zeder (N)
Winner: Felix

1) zeder: Homeworld G3 B1 Y3

2) Felix: Homeworld R2 B3 G3

3) zeder: Build Y1 Zeder
	Felix: Welcome! First game?
	zeder: Not first, but maybe 3rd or 4th.

4) Felix: Build G1 Felix
	Felix: Awesome. Well I hope you have fun and let me know if you have any questions

5) zeder: Trade Y1 G1 Zeder

6) Felix: Trade G1 Y1 Felix
	zeder: Thank you!  I am very pondering why you chose to have no yellow?

7) zeder: Build Y1 Zeder
	Felix: Sometimes I prefer to start without yellow and then trade for it on my second turn - as I have just done. It can be helpful to have red in my home system instead of yellow sometimes. it really depends on play style.

8) Felix: Build G1 Felix

9) zeder: Trade Y1 B1 Zeder

10) Felix: Trade G1 B1 Felix

11) zeder: Build B2 Zeder

12) Felix: Discover B1 Felix G1 Rim

13) zeder: Trade B1 Y1 Zeder

14) Felix: Build B1 Rim

15) zeder: Build B2 Zeder

16) Felix: Trade B1 Y1 Rim

17) zeder: Build Y2 Zeder

18) Felix: Build Y2 Rim

19) zeder: Trade Y1 R1 Zeder

20) Felix: Trade Y1 R1 Rim

21) zeder: Discover B2 Zeder G2 Flip

22) Felix: Build Y1 Rim

23) zeder: Trade B2 R2 Flip

24) Felix: Discover Y1 Rim G2 Bazoik

25) zeder: Move Y2 Zeder Flip

26) Felix: Build G1 Felix

27) zeder: Build G2 Zeder

28) Felix: Discover G1 Felix B1 Ralston

29) zeder: Trade G1 R1 Zeder

30) Felix: Build G1 Felix

31) zeder: Discover G2 Zeder Y2 Lips

32) Felix: Sacrifice G3 Felix
Build G3 Ralston
Build G3 Felix
Build B2 Rim

33) zeder: Move R1 Zeder Lips

34) Felix: Sacrifice G3 Ralston
Build Y1 Rim
Build Y3 Bazoik
Build Y3 Felix

35) zeder: Build G3 Lips

36) Felix: Move B1 Rim Bazoik

37) zeder: Move G3 Lips Rim

38) Felix: Move B1 Bazoik Zeder

39) zeder: Trade B2 R2 Zeder

40) Felix: Sacrifice G3 Felix
Build B2 Zeder
Build B2 Zeder
Catastrophe Zeder Blue
Build G3 Felix

41) zeder: Sacrifice R1 Lips
Attack R1 Rim
	zeder: OUCH!!

42) Felix: Sacrifice Y2 Rim
Move B2 Rim Bazoik
Discover Y1 Rim Y2 Arrakis
	Felix: Sorry :) You're about to wreak havoc on my ships in Rim, though!

43) zeder: Sacrifice Y2 Flip
Move G3 Rim Bazoik
Move R1 Rim Bazoik
	Draw5PlayAll: Arrakis?

44) Felix: Sacrifice Y3 Bazoik
Move G1 Felix Ralston
Move G1 Ralston Zeder
Move G1 Ralston Zeder
	Felix: @Draw5 Read Dune. :)

45) zeder: Attack G1 Zeder
	Felix: @Zeder You're making me quite nervous!
	zeder: Not sure why... that were an killer moves!

46) Felix: Build G1 Zeder
Catastrophe Zeder Green
	Felix: Well... I got nervous before that move, haha
	Felix: And I thought you might sacrifice your r2 to take over both of my G ships, which would have forced me to sac my Y3 at my home and move my g3 in to finish the job. That would only leave me a y1 at home, which would be scary, but I guess you'd actually be dead at that point, so...
	Felix: Great game! You played well and that was fun. I like your aggressive play style.
	zeder: I saw the y3 sacrifice so decided to take the move that I thoughts would let me live in case you didn't see it. :) thanks you for the game!



30323)
Variants: "Hard time"
Started: 2016.9.20, Ended: 2016.9.23
Participants: zeder (S), mxpf (N)
Winner: zeder



30440)
Variants: "Hard time"
Started: 2016.9.20, Ended: 2016.9.23
Participants: Draw5PlayAll (S), mxpf (N)
Winner: Draw5PlayAll



30447)
Variants: "Unrated, Hard time"
Started: 2016.9.21, Ended: 2016.9.25
Participants: Draw5PlayAll (S), sompm (N)
Winner: Draw5PlayAll



30408)
Started: 2016.9.29, Ended: 2016.10.18
Participants: ts52 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 Y3 G3

2) ts52: Homeworld Y3 B2 G3
	Felix: No time wasted between games :) Good luck!
	ts52: :D Have a good game.

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: Trade G1 B1 Felix

6) ts52: Trade G1 B1 Ts52

7) Felix: Build B2 Felix

8) ts52: Discover B1 Ts52 G1 Robin

9) Felix: Discover B2 Felix G2 Flemoid

10) ts52: Build G1 Ts52

11) Felix: Sacrifice G3 Felix
Build B2 Flemoid
Build B3 Flemoid
Build B3 Felix

12) ts52: Build B3 Robin

13) Felix: Trade B2 Y2 Flemoid

14) ts52: Trade B3 Y3 Robin

15) Felix: Trade B3 G3 Felix

16) ts52: Build Y1 Robin

17) Felix: T B2 R2 Flemoid

18) ts52: Trade Y1 R1 Robin

19) Felix: Build B2 Flemoid

20) ts52: Build R1 Robin

21) Felix: Trade B2 Y2 Flemoid

22) ts52: Build B2 Robin

23) Felix: Build B2 Flemoid

24) ts52: Discover B2 Robin Y2 Bigbird

25) Felix: Discover B2 Flemoid G1 Ralston

26) ts52: Build B3 Robin

27) Felix: Build B3 Ralston

28) ts52: Build G2 Ts52

29) Felix: Trade B2 G2 Ralston

30) ts52: Trade G2 R2 Ts52

31) Felix: Sacrifice G2 Ralston
Build G2 Felix
Build B2 Ralston

32) ts52: Move G1 Ts52 Robin

33) Felix: Move Y2 Flemoid Ralston

34) ts52: Move G1 Robin Bigbird

35) Felix: Build Y1 Ralston

36) ts52: Build G2 Ts52

37) Felix: Move B3 Ralston Bigbird

38) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Ts52
Build Y1 Robin

39) Felix: Trade B3 R3 Bigbird

40) ts52: Trade G3 B3 Ts52

41) Felix: Move B2 Ralston Flemoid

42) ts52: Move B2 Bigbird Felix

43) Felix: Sacrifice Y2 Ralston
Move B2 Flemoid Ralston
Move B2 Ralston Ts52

44) ts52: Move G1 Bigbird Felix

45) Felix: S R2 Flemoid
A G1 Felix
A B2 Felix

46) ts52: Sacrifice Y3 Robin
Move B1 Robin Bigbird
Move B1 Bigbird Felix
Discover G2 Ts52 Y1 Scooter
Catastrophe Felix Blue

47) Felix: Sacrifice G3 Felix
Build B1 Ts52
Build Y2 Flemoid
Build Y3 Ralston
Catastrophe Ts52 Blue

48) ts52: Move B3 Robin Felix

49) Felix: Sacrifice Y3 Ralston
Move Y1 Ralston Ts52
Move Y2 Flemoid Ts52
Move Y2 Flemoid Ts52
Catastrophe Ts52 Yellow
	Felix: Good game! Very close there at the end!
	ts52: Wow, very well done. I missed that at the end. Good game!
	Felix: Thank you. I stared at the game for a LONG time before I finally discovered the ability to build enough yellows for that final rush.



30436)
Variants: "Unrated, Sinister"
Started: 2016.9.29, Ended: 2016.12.5
Participants: Draw5PlayAll (S), Felix (N), sompm (E)
Winner: Felix

1) Felix: Homeworld B2 G3 R3

2) sompm: Homeworld B1 Y2 G3
	sompm: Was this supposed to be the teams game?

3) Draw5PlayAll: Homeworld R1 B3 G3
	Draw5PlayAll: No, since it is 3P not 4P

4) Felix: Build R1 Felix

5) sompm: Build G1 Sompm
	Felix: Just normal sinister, right?
	Draw5PlayAll: Correct

6) Draw5PlayAll: Build G1 Draw5playall

7) Felix: Trade R1 Y1 Felix

8) sompm: Trade G1 Y1 Sompm
	Felix: You always end up having to eliminate me!
	Draw5PlayAll: That might have something to do with the order people join...

9) Draw5PlayAll: Trade G1 Y1 Draw5playall

10) Felix: Build Y1 Felix

11) sompm: Build Y2 Sompm

12) Draw5PlayAll: Build Y2 Draw5playall

13) Felix: Discover Y1 Felix G1 Flemoid

14) sompm: Discover Y1 Sompm B3 Bombs

15) Draw5PlayAll: Trade Y2 B2 Draw5playall

16) Felix: Build Y2 Felix

17) sompm: Build G1 Sompm

18) Draw5PlayAll: Discover B2 Draw5playall G2 G2

19) Felix: Trade Y2 G2 Felix

20) sompm: Build G1 Sompm

21) Draw5PlayAll: Build Y2 Draw5playall

22) Felix: S G2 Felix
B Y2 Flemoid
B Y3 Felix

23) sompm: Sacrifice G3 Sompm
Build Y3 Bombs
Build Y3 Bombs
Build Y3 Sompm

24) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Bad move, verrrrrry bad move

25) Felix: Move Y1 Flemoid Bombs
Catastrophe Bombs Yellow
	Draw5PlayAll: North's ship Y3 was sacrificed in the Felix system. North moved their Y1 ship from Femoid to bombs. North moved their Y1 ship from bombs to sompm. North moved their Y2 ship from Flemoid to bombs. A catastrophe occurred in the sompm system. All propulsion (Y) technology was lost. A catastrophe occurred in the bombs system. All propulsion (Y) technology was lost. The bombs system has been abandoned to the hyperspatial flux.
	Draw5PlayAll: Actually, Felix, if you want please leave a chat message and I will take back my G1 and blow bombs, letting you destroy the sompm homeworld yourself.

26) sompm: Trade Y3 R3 Sompm
	Felix: Thanks for the offer, but I think I'd like to just proceed this way for now :)
	sompm: I knew part of that was getting blown, I was banking on the Sinister politics to keep me alive; seems to have panned out.

27) Draw5PlayAll: Build G2 Draw5playall

28) Felix: Trade Y3 G3 Felix

29) sompm: Discover G1 Sompm B3 Bones

30) Draw5PlayAll: Discover G2 Draw5playall B2 B2

31) Felix: Discover G3 Felix B1 Wesgorix

32) sompm: Build G2 Bones

33) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B2
Build G3 Draw5playall
Build Y1 Draw5playall

34) Felix: Build G3 Wesgorix

35) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B1 G2
Build B1 G2

36) Felix: Sacrifice G3 Wesgorix
Build G3 Wesgorix
Build Y1 Flemoid
Build Y3 Felix
	Draw5PlayAll: I clicked "terminate game".

37) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move G2 B2 Wesgorix
Move G2 B2 Wesgorix
Catastrophe Wesgorix Green
	Draw5PlayAll: The game is ruined.

38) Felix: Move R3 Felix Flemoid

39) Draw5PlayAll: Discover Y1 Draw5playall B2 B2

40) Felix: Move Y1 Flemoid Bones

41) Draw5PlayAll: Build G2 Draw5playall
	Draw5PlayAll: I think the loss of the other players ruined the game.

42) Felix: Build R1 Flemoid
	Felix: You're welcome to resign then ;)

43) Draw5PlayAll: Sacrifice G2 Draw5playall
Build Y2 Draw5playall
Build Y3 B2

44) Felix: Build Y3 Flemoid

45) Draw5PlayAll: Trade Y3 R3 B2

46) Felix: Move R3 Flemoid Bones

47) Draw5PlayAll: Sacrifice G1 Draw5playall
Build Y3 B2

48) Felix: Attack G2E Bones

49) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R3 B2 Bones
Move R3 Bones Sompm

50) Felix: Build R1 Bones

51) Draw5PlayAll: Attack Y2E Sompm

52) Felix: Move Y2 Flemoid G2

53) Draw5PlayAll: Trade Y1 R1 B2

54) Felix: Sacrifice R3 Bones
Attack B1S G2
Attack B1S G2
Attack B2S G2

55) Draw5PlayAll: Attack R3E Sompm
	Draw5PlayAll: Tricky!

56) Felix: Build R2 Bones
	Felix: :) It's kinda fun to have so many assets lying around in space. Nice work getting to sompm's system first!

57) Draw5PlayAll: Move R3 Sompm Bones

58) Felix: Sacrifice Y2 G2
Discover R2 Bones Y2 Slipstream
Move R1 Bones Slipstream

59) Draw5PlayAll: Sacrifice Y2 Sompm
Move R3 Sompm Bones
Move R3 Bones Slipstream

60) Felix: Sacrifice Y3 Flemoid
Move R2 Slipstream Draw5playall
Move R1 Slipstream Draw5playall
Discover R1 Flemoid Y2 Insert

61) Draw5PlayAll: Trade R1 B1 B2

62) Felix: Sacrifice Y3 Felix
Move B1 G2 Draw5playall
Move B1 G2 Draw5playall
Move B2 G2 Draw5playall
Catastrophe Draw5playall Blue
	Draw5PlayAll: Only move.

63) Draw5PlayAll: Sacrifice Y3 B2
Move R3 Bones Draw5playall
Move R3 Draw5playall Felix
Pass R3 Felix
	Draw5PlayAll: No! I thought I had an amazing trap...

64) Felix: Move R1 Insert Draw5playall
Catastrophe Draw5playall Red
	Felix: What was your trap going to be?

	Felix: Oh, I see. That wouldn't have accomplished anything as long as my Y3 was still there, though
	Felix: Good game! A bit hectic with all those resources.
	Draw5PlayAll: As I said, the removal of sompm ruined it.


30489)
Variants: "Hard time"
Started: 2016.10.4, Ended: 2016.10.10
Participants: foksieloy (S), Subhan64 (N)
Winner: foksieloy

1) Subhan64: Homeworld B3 G2 Y3
	foksieloy: Hi! good luck, have fun!

2) foksieloy: Homeworld B1 R3 G3

3) Subhan64: Build Y1 Subhan64

4) foksieloy: Build G1 Foksieloy

5) Subhan64: Trade Y1 G1 Subhan64

6) foksieloy: Trade G1 Y1 Foksieloy

7) Subhan64: Build Y1 Subhan64

8) foksieloy: Build G1 Foksieloy

9) Subhan64: Discover G1 Subhan64 G1 Kermit

10) foksieloy: Discover G1 Foksieloy B2 Tibbers

11) Subhan64: Build G2 Kermit

12) foksieloy: Build G2 Tibbers

13) Subhan64: Trade Y1 B1 Subhan64

14) foksieloy: Build G3 Foksieloy

15) Subhan64: Sacrifice B1 Subhan64
Trade G1 Y1 Kermit

16) foksieloy: Trade G2 Y2 Tibbers

17) Subhan64: Discover G2 Kermit G3 Scooter

18) foksieloy: Discover G3 Foksieloy B2 Annie

19) Subhan64: Move Y1 Kermit Annie

20) foksieloy: Build G1 Annie

21) Subhan64: Sacrifice Y1 Annie
Move G2 Scooter Annie


22) foksieloy: Trade G1 R1 Annie

23) Subhan64: Build Y1 Subhan64

24) foksieloy: Attack G2 Annie

25) Subhan64: Trade Y1 R1 Subhan64

26) foksieloy: Build Y1 Tibbers

27) Subhan64: Discover R1 Subhan64 G1 Scooter

28) foksieloy: Discover Y2 Tibbers G1 Fishbone

29) Subhan64: Build Y1 Subhan64

30) foksieloy: Sacrifice G3 Annie
Build G2 Tibbers
Build G3 Annie
Build G3 Foksieloy

31) Subhan64: Build Y2 Subhan64

32) foksieloy: Move Y2 Fishbone Subhan64
Catastrophe Subhan64 Y
	Subhan64: good game, but I know when I'm licked!
	foksieloy: Good game!



30484)
Started: 2016.10.4, Ended: 2016.10.18
Participants: Draw5PlayAll (S), ladybugsfly (N)
Winner: Draw5PlayAll

1) ladybugsfly: Homeworld B3 Y2 G3

2) Draw5PlayAll: Homeworld R3 B1 G3 *

3) ladybugsfly: B G1 Ladybugsfly

4) Draw5PlayAll: Build G1 Draw5playall

5) ladybugsfly: Trade G1 R1 Ladybugsfly
	Draw5PlayAll: Does north seat always go first?

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) ladybugsfly: Build G1 Ladybugsfly

8) Draw5PlayAll: Build G1 Draw5playall

9) ladybugsfly: Discover G1 Ladybugsfly B1 Dumbledore

10) Draw5PlayAll: Trade G1 B1 Draw5playall

11) ladybugsfly: B G1 Dumbledore

12) Draw5PlayAll: Discover B1 Draw5playall G2 G2

13) ladybugsfly: T G1 Y1 Dumbledore

14) Draw5PlayAll: Build B2 G2

15) ladybugsfly: Build Y1 Dumbledore

16) Draw5PlayAll: Build Y2 Draw5playall

17) ladybugsfly: D Y1 Dumbledore R2 Snape

18) Draw5PlayAll: Build B2 G2

19) ladybugsfly: S G3 Ladybugsfly
B Y2 Dumbledore
B Y3 Dumbledore
B Y3 Snape

20) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 Draw5playall Snape
Move Y1 Snape Dumbledore
Catastrophe Dumbledore Yellow
	Draw5PlayAll: This could get interesting.

21) ladybugsfly: Move Y3 Snape Dumbledore

22) Draw5PlayAll: Trade B2 R2 G2

23) ladybugsfly: M G1 Dumbledore Snape
	Draw5PlayAll: "trade B2 R2 G2"... wow, did not expect that pattern

24) Draw5PlayAll: Build G1 Draw5playall

25) ladybugsfly: Build G1 Snape

26) Draw5PlayAll: Trade G1 Y1 Draw5playall

27) ladybugsfly: Build G1 Snape

28) Draw5PlayAll: Trade B2 Y2 G2

29) ladybugsfly: M Y3 Dumbledore Ladybugsfly

30) Draw5PlayAll: Build B1 G2

31) ladybugsfly: Discover G1 Snape Y1 Hagrid

32) Draw5PlayAll: Build B2 G2

33) ladybugsfly: Build G2 Snape

34) Draw5PlayAll: Build Y2 Draw5playall

35) ladybugsfly: B Y3 Snape

36) Draw5PlayAll: Discover Y2 Draw5playall B2 B2

37) ladybugsfly: Build G2 Hagrid

38) Draw5PlayAll: Build Y3 G2

39) ladybugsfly: Move G2 Hagrid Ladybugsfly

40) Draw5PlayAll: Trade G3 B3 Draw5playall
	Draw5PlayAll: I cannot take the suspense.

41) ladybugsfly: Build G3 Hagrid
	ladybugsfly: Haha, I needed a one-two punch and wasn't going to move before I had it.

42) Draw5PlayAll: Discover Y3 G2 B3 B3

43) ladybugsfly: M G1 Hagrid B2

44) Draw5PlayAll: Trade Y3 G3 B3

45) ladybugsfly: Sacrifice G3 Hagrid
Build G3 B2
Build G3 Ladybugsfly
Build R1 Ladybugsfly

46) Draw5PlayAll: Move Y2 B2 B3

47) ladybugsfly: Sacrifice G3 B2
Build G3 B2
Build R1 Ladybugsfly
Build Y1 Ladybugsfly

48) Draw5PlayAll: Build Y3 G2

49) ladybugsfly: Trade G3 R3 B2

50) Draw5PlayAll: Build G3 B3

51) ladybugsfly: Sacrifice Y3 Snape
Discover G1 Snape R3 Lupin
Move G1 Snape Lupin
Move G2 Snape Lupin

52) Draw5PlayAll: Sacrifice Y2 G2
Move G3 B3 Snape
Move G3 Snape Lupin
Catastrophe Lupin Green

53) ladybugsfly: Sacrifice Y3 Ladybugsfly
Discover R1 Ladybugsfly G1 Ginny
Move R1 Ladybugsfly Ginny
Discover R1 Ginny Y2 Krum
	Draw5PlayAll: Keep in mind you had to lose a Y3 to move them to Lupin.
	ladybugsfly: No judgement, you don't have to justify your moves.

54) Draw5PlayAll: Sacrifice G3 B3
Build Y3 Draw5playall
Build Y3 B3
Build R2 G2

55) ladybugsfly: Move Y1 Snape Ginny

56) Draw5PlayAll: Trade B3 G3 Draw5playall

57) ladybugsfly: Build R2 Ginny

58) Draw5PlayAll: Move Y3 B3 Ginny

59) ladybugsfly: M R2 Ginny B3

60) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move Y3 Ginny Ladybugsfly
Move Y2 B3 Ginny
Move Y2 Ginny Ladybugsfly
Catastrophe Ladybugsfly Yellow

61) ladybugsfly: Move R1 Krum Draw5playall
	ladybugsfly: Nice game! You had that one-two punch. ;)

62) Draw5PlayAll: Sacrifice Y3 G2
Move B2 G2 Ladybugsfly
Move B1 G2 Ladybugsfly
Move B1 G2 Ladybugsfly
Catastrophe Ladybugsfly Blue
	Draw5PlayAll: This is why I get nervous every time I put a ship in a same-color star.



30476)
Started: 2016.10.4, Ended: 2016.10.25
Participants: ts52 (S), Draw5PlayAll (N)
Winner: ts52

1) Draw5PlayAll: Homeworld R1 B3 G3

2) ts52: Homeworld Y2 B3 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) ts52: Build G1 Ts52
	ts52: Have a good game!

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) ts52: Build G1 Ts52

7) Draw5PlayAll: Build Y1 Draw5playall

8) ts52: Discover G1 Ts52 B1 Gonzo

9) Draw5PlayAll: Trade Y1 B1 Draw5playall

10) ts52: Build G1 Gonzo

11) Draw5PlayAll: Discover B1 Draw5playall G2 G2

12) ts52: Build G2 Gonzo

13) Draw5PlayAll: Build G2 Draw5playall

14) ts52: Trade G2 Y2 Gonzo
	Draw5PlayAll: Factory engaging in 3.... 2.... 1...

15) Draw5PlayAll: Build B1 G2

16) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Gonzo
	ts52: :)

17) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 Draw5playall
Build B2 G2

18) ts52: Trade G3 R3 Gonzo

19) Draw5PlayAll: Discover G2 Draw5playall B2 B2
	Draw5PlayAll: Fascinating. - Spock

20) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Gonzo
Build R1 Gonzo
	Draw5PlayAll: Going to yellow alert!!

21) Draw5PlayAll: Trade B2 Y2 G2

22) ts52: Trade G3 R3 Ts52

23) Draw5PlayAll: Build G3 Draw5playall

24) ts52: Move R3 Gonzo B2

25) Draw5PlayAll: S G2 B2
Build Y1 Draw5playall
Build Y3 G2

26) ts52: Sacrifice G3 Gonzo
Build G2 Ts52
Build G3 Gonzo
Build Y3 Gonzo

27) Draw5PlayAll: Sacrifice Y2 G2
Move G3 Draw5playall G2
Move G3 G2 Gonzo
Catastrophe Gonzo G
	Draw5PlayAll: Facing destruction or assimilation the crew aboard our Ambassador class starship decided to fire off the Long Range Construction Mechanism, which destroyed the ship but actually gave us a Galaxy-class wormhole generation ship! 

28) ts52: Move G2 Ts52 Gonzo

29) Draw5PlayAll: Build B2 G2
	Draw5PlayAll: I had to :(

30) ts52: Move Y2 Gonzo B2
	ts52: fair enough

31) Draw5PlayAll: Discover Y1 Draw5playall B2 B2'

32) ts52: Sacrifice G2 Ts52
Build Y2 Gonzo
Build Y3 B2

33) Draw5PlayAll: Move Y1 Draw5playall B2'

34) ts52: Sacrifice Y2 Gonzo
Move R3 B2 Draw5playall
Move Y3 B2 Draw5playall
	Draw5PlayAll: DANG

35) Draw5PlayAll: Move G3 Draw5playall G2

	Draw5PlayAll: I think the issue was the factories. You got all the good stuff and I just got some smalls and mediums. Once you allow a "sac G3, build a bunch of 2's and 3's" move you are toast unless you can counter it.
	ts52: Factories are tough to defend against, but I think the issue this time was letting me get a monopoly on trade, which let me safely build up my large fleet. And also, not building up your own red supply as soon as I started. If you had even a medium red, you could've held me off for a while.
	Draw5PlayAll: Monopoly on trade? I had three blue ships and you never had more than one...
	ts52: Sorry, conflating different games. 


30501)
Variants: "Hard time"
Started: 2016.10.6, Ended: 2016.11.3
Participants: Grosseteste (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld Y3 B1 G3

2) Grosseteste: H Y3 B2 G3

3) agentofchaos: Build G1 Agentofchaos

4) Grosseteste: Build G1 Grosseteste

5) agentofchaos: Discover G1 Agentofchaos Y2 Skaros

6) Grosseteste: Trade G1 B1 Grosseteste

7) agentofchaos: Build G1 Agentofchaos
	Grosseteste: Thanks for the game, looking forward to it.

8) Grosseteste: Build G1 Grosseteste
	agentofchaos: Thanks, looking forward to it too

9) agentofchaos: Build G2 Agentofchaos

10) Grosseteste: Build G2 Grosseteste

11) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Skaros
Build G3 Skaros
Build G3 Agentofchaos

12) Grosseteste: Trade G2 R2 Grosseteste

13) agentofchaos: Trade G1 R1 Agentofchaos

14) Grosseteste: Build G1 Grosseteste

15) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Agentofchaos
Build R1 Agentofchaos
Build G3 Agentofchaos
	Grosseteste: Nice one, I'm disappointed I didn't see that move.
	agentofchaos: I almost didn't see it either!

16) Grosseteste: Discover G1 Grosseteste Y1 Charlie

17) agentofchaos: Move G3 Skaros Charlie

	Grosseteste: Sorry about that, I haven't been able to give this the time I needed to.  Maybe later on I can give you a game.


30444)
Variants: "Hard time"
Started: 2016.10.6, Ended: 2016.10.9
Participants: Subhan64 (S), mxpf (N)
Winner: Subhan64



30492)
Started: 2016.10.7, Ended: 2016.10.26
Participants: Subhan64 (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3

2) Subhan64: Homeworld B2 Y1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) Subhan64: Build G1 Subhan64

5) ts52: Trade G1 B1 Ts52

6) Subhan64: Build G1 Subhan64

7) ts52: Build B1 Ts52

8) Subhan64: Trade G1 Y1 Subhan64

9) ts52: Discover B1 Ts52 G2 Kermit

10) Subhan64: Discover G1 Subhan64 G3 Scooter

11) ts52: Build B2 Kermit

12) Subhan64: Build G1 Subhan64

13) ts52: Build B2 Ts52

14) Subhan64: Trade G1 Y1 Subhan64

15) ts52: Build B3 Kermit

16) Subhan64: Move Y1 Subhan64 Scooter

17) ts52: Trade B3 Y3 Kermit

18) Subhan64: Build Y2 Scooter

19) ts52: Build B3 Kermit

20) Subhan64: Build Y2 Subhan64

21) ts52: Trade B3 R3 Kermit

22) Subhan64: Trade G3 B3 Subhan64

23) ts52: Discover B2 Kermit G3 Oscar

24) Subhan64: Move B3 Subhan64 Scooter

25) ts52: Sacrifice Y3 Kermit
Move R3 Kermit Oscar
Move R3 Oscar Subhan64
Move B2 Oscar Subhan64

26) Subhan64: Sacrifice Y2 Scooter
Move B3 Scooter Kermit
Move B3 Kermit Ts52
Catastrophe Ts52 B

27) ts52: Sacrifice R3 Subhan64
Attack Y2 Subhan64
Attack Y1 Subhan64
Pass
	Subhan64: gg!
	Subhan64: gg!
	ts52: Thanks for the game!



30509)
Started: 2016.10.7, Ended: 2016.10.7
Participants: lordrefa (S), ladybugsfly (N)
Winner: ladybugsfly

1) ladybugsfly: Homeworld B3 G1 Y3

2) lordrefa: Homeworld G2 Y3 R3 *

3) ladybugsfly: Build Y1 Ladybugsfly

4) lordrefa: Discover R3 Lordrefa G1 Superduper
	Draw5PlayAll: ???



30510)
Started: 2016.10.7, Ended: 2016.10.11
Participants: lordrefa (S), ladybugsfly (N)
Winner: ladybugsfly

1) ladybugsfly: H B3 Y2 G3

2) lordrefa: Homeworld B2 G1 Y3

3) ladybugsfly: B G1 Ladybugsfly

4) lordrefa: Build Y1 Lordrefa

5) ladybugsfly: B G1 Ladybugsfly

6) lordrefa: Discover Y1 Lordrefa B3 Poop

7) ladybugsfly: Discover G1 Ladybugsfly Y1 Unicorn

8) lordrefa: Build Y1 Lordrefa

9) ladybugsfly: B G2 Unicorn

10) lordrefa: Build Y2 Lordrefa

11) ladybugsfly: Discover G2 Unicorn B3 Centaur

12) lordrefa: Discover Y1 Poop Y2 Devilhorns

13) ladybugsfly: Sacrifice G3 Ladybugsfly
Build G2 Unicorn
Build G2 Centaur
Build G3 Ladybugsfly

14) lordrefa: Discover Y1 Devilhorns G3 Newname

15) ladybugsfly: Trade G2 Y2 Centaur

16) lordrefa: Move Y3 Lordrefa Centaur

17) ladybugsfly: Build Y3 Centaur

18) lordrefa: Trade Y3 R3 Centaur

19) ladybugsfly: M Y3 Centaur Lordrefa

20) lordrefa: Attack Y2 Centaur

21) ladybugsfly: Build Y3 Lordrefa
Catastrophe Lordrefa Y



30475)
Started: 2016.10.10, Ended: 2016.10.30
Participants: Subhan64 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y2 B3 G3

2) Subhan64: Homeworld Y2 B1 G3
	Felix: Welcome, and have fun! Have you played before?

3) Felix: Build G1 Felix
	Subhan64: yes, but I always lose!

	Draw5PlayAll: I lost 7 times before winning once, and I still lose a lot.
	Felix: I had the same experience at first. It took me a good 10-15 games before I started winning. Stick with it!

4) Subhan64: Build G1 Subhan64

5) Felix: Trade G1 B1 Felix

6) Subhan64: Build G1 Subhan64

7) Felix: Build G1 Felix

8) Subhan64: Trade G1 Y1 Subhan64

9) Felix: Build B1 Felix

10) Subhan64: Build Y1 Subhan64

11) Felix: Trade B1 Y1 Felix

12) Subhan64: Discover Y1 Subhan64 G3 Kermit

13) Felix: Discover Y1 Felix G1 Flemoid

14) Subhan64: Sacrifice G3 Subhan64
Build G2 Subhan64
Build Y2 Kermit

Build Y3 Subhan64

15) Felix: Build Y3 Flemoid

16) Subhan64: Move Y1 Kermit Flemoid

17) Felix: Move Y3 Flemoid Kermit
	Felix: Nice move!

18) Subhan64: Move Y1 Subhan64 Kermit

19) Felix: Sacrifice B1 Felix
Trade Y3 R3 Kermit

20) Subhan64: Sacrifice Y1 Kermit
Move Y2 Kermit Flemoid

21) Felix: Build Y1 Flemoid
Catastrophe Flemoid Yellow

22) Subhan64: Trade Y3 R3 Subhan64

23) Felix: Trade G1 B1 Felix

24) Subhan64: Build R1 Subhan64

25) Felix: Build G1 Felix

26) Subhan64: Trade G2 Y2 Subhan64

27) Felix: Trade G1 Y1 Felix

28) Subhan64: Trade R1 B1 Subhan64

29) Felix: Discover B1 Felix G1 Ralston

30) Subhan64: Build B2 Subhan64

31) Felix: B B2 Ralston

32) Subhan64: Trade B2 G2 Subhan64

33) Felix: Trade B1 Y1 Ralston

34) Subhan64: Discover G2 Subhan64 Y3 Tweety

35) Felix: Sacrifice G3 Felix
Build Y1 Ralston
Build Y3 Ralston
Build Y3 Felix

36) Subhan64: Move Y2 Subhan64 Tweety

37) Felix: Move Y1 Ralston Tweety

38) Subhan64: Build G1 Subhan64

39) Felix: Move Y1 Ralston Tweety
Catastrophe Tweety Yellow

40) Subhan64: Trade G1 Y1 Subhan64

41) Felix: Build Y1 Ralston

42) Subhan64: Build G1 Subhan64

43) Felix: Trade Y3 G3 Felix

44) Subhan64: Build R1 Subhan64

45) Felix: Move Y1 Ralston Kermit

46) Subhan64: Discover G1 Subhan64 Y3 Daisy

47) Felix: Build Y2 Kermit

48) Subhan64: Move R3 Subhan64 Daisy

49) Felix: Build Y3 Ralston

50) Subhan64: Move R3 Daisy Ralston

51) Felix: Sacrifice Y3 Ralston
Move R3 Kermit Subhan64
Move Y1 Kermit Subhan64
Move Y3 Ralston Kermit

52) Subhan64: Build R1 Subhan64

53) Felix: Sacrifice Y3 Kermit
Move Y2 Kermit Subhan64
Catastrophe Subhan64 Yellow
Move B2 Ralston Daisy
Move B2 Daisy Subhan64

	Felix: Good game! I hope you learned some new tricks, and I'd love to rematch any time!


30521)
Started: 2016.10.10, Ended: 2016.10.13
Participants: Subhan64 (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Subhan64: Homeworld G2 B1 Y3

3) Draw5PlayAll: Build G1 Draw5playall

4) Subhan64: Build Y1 Subhan64

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Subhan64: Trade Y1 G1 Subhan64

7) Draw5PlayAll: Build Y1 Draw5playall

8) Subhan64: Discover G1 Subhan64 Y3 Big Bird

9) Draw5PlayAll: Trade Y1 B1 Draw5playall

10) Subhan64: Build G1 Big

11) Draw5PlayAll: Discover B1 Draw5playall G2 G2

12) Subhan64: Build Y1 Subhan64

13) Draw5PlayAll: Build B1 G2

14) Subhan64: Discover Y1 Subhan64 Y3 Banana

15) Draw5PlayAll: Build B2 G2

16) Subhan64: Build Y1 Subhan64

17) Draw5PlayAll: Build Y2 Draw5playall

18) Subhan64: Build Y2 Subhan64

19) Draw5PlayAll: Trade B2 Y2 G2

20) Subhan64: Trade Y2 B2 Subhan64

21) Draw5PlayAll: Build B2 G2

22) Subhan64: Sacrifice G1 Big
Build Y2 Banana

23) Draw5PlayAll: Discover Y1 Draw5playall B2 B2

24) Subhan64: Build B3 Subhan64

25) Draw5PlayAll: Sacrifice Y2 G2
Move B1 G2 Big
Move B1 Big Subhan64
Catastrophe Subhan64 Blue
	Draw5PlayAll: Incorrect.

26) Subhan64: Pass

27) Draw5PlayAll: Build Y2 Draw5playall

	Draw5PlayAll: ????
	Draw5PlayAll: Was that intentional? It certainly was NOT a time forfeit.
	Subhan64: bad move on my part :(
	Draw5PlayAll: Did you resign intentionally or not?
	Draw5PlayAll: And what about when you passed? Was that intentional?
	Subhan64: yep. once I loose a star there is little hope

	Draw5PlayAll: Good game. Another?
	Subhan64: sure, set up a challenge
	Draw5PlayAll: I think I have one, but...


30506)
Variants: "Hard time"
Started: 2016.10.12, Ended: 2016.10.15
Participants: mxpf (S), zeder (N)
Winner: zeder

1) zeder: Homeworld G2 B1 Y3

	Draw5PlayAll: Mxpf has not responded in 16 days. You might want to challenge someone else.


31850)
Started: 2017.4.6, Ended: 2017.6.12
Participants: wil (S), MobyNostromo (N)
Winner: wil

1) MobyNostromo: H G1 B2 Y3
	MobyNostromo: Have fun!

2) wil: H B3 Y1 G3
	wil: If you insist

3) MobyNostromo: B Y1 Mobynostromo

4) wil: B G1 Wil

5) MobyNostromo: B Y1 Mobynostromo

6) wil: B G1 Wil

7) MobyNostromo: D Y1 Mobynostromo G3 Green

8) wil: D G1 Wil Y2 Y2

9) MobyNostromo: T Y1 B1 Mobynostromo

10) wil: B G2 Wil

11) MobyNostromo: B B1 Mobynostromo

12) wil: B G2 Y2

13) MobyNostromo: D B1 Mobynostromo R3 Red Giant

14) wil: M G2 Y2 Red

15) MobyNostromo: M Y3 Mobynostromo Red

16) wil: S G3 Wil
B G2 Y2
B G3 Y2
B G3 Wil

17) MobyNostromo: A G2 Red
	wil: Now this is different
	wil: I see what I should a done

18) wil: T G2 B2 Wil

19) MobyNostromo: M G2 Red Y2
Catastrophe Y2 G

20) wil: D B2 Wil Y2 Y2

21) MobyNostromo: T B1 R1 Mobynostromo

22) wil: B G1 Wil

23) MobyNostromo: B R1 Mobynostromo

24) wil: D G1 Wil Y2 Why2

25) MobyNostromo: T R1 Y1 Mobynostromo

26) wil: B G2 Wil

27) MobyNostromo: B Y2 Green

28) wil: Discover G1 Why2 Y3 Y3

29) MobyNostromo: B R1 Mobynostromo

30) wil: T G2 Y2 Wil

31) MobyNostromo: B Y3 Mobynostromo

32) wil: T G1 R1 Wil

33) MobyNostromo: T R1 G1 Mobynostromo

34) wil: Discover Y2 Wil G2 G2

35) MobyNostromo: B R1 Mobynostromo

36) wil: S G1 Y3
B Y3 G2

37) MobyNostromo: S Y3 Red
M Y1 Green G2
M Y2 Green G2
M B1 Red G2
C G2 Y

38) wil: B R2 Wil

39) MobyNostromo: B R2 Mobynostromo

40) wil: T R2 Y2 Wil

41) MobyNostromo: D R2 Mobynostromo G3 Gammagreen

42) wil: B R2 Wil

43) MobyNostromo: M Y1 Mobynostromo Gammagreen

44) wil: M R2 Wil Y2

45) MobyNostromo: B B1 G2

46) wil: S G3 Wil
B R2 Wil
B R3 Wil
B R3 Y2

47) MobyNostromo: B R3 Gammagreen

48) wil: D R2 Wil Y2 Whytwo

49) MobyNostromo: B G1 Mobynostromo

50) wil: T R3 G3 Wil

51) MobyNostromo: D G1 Mobynostromo R3 Redgiant

52) wil: B G2 Wil

53) MobyNostromo: B G2 Mobynostromo

54) wil: T R3 G3 Y2

55) MobyNostromo: D G1 Mobynostromo R3 Redragon

56) wil: M B2 Y2 Redragon

57) MobyNostromo: B B1 G2

58) wil: A G1 Redragon

59) MobyNostromo: S Y3 Mobynostromo
M B1 G2 Wil
M B1 G2 Wil
M B1 G2 Wil
C Wil B

60) wil: D Y2 Wil B3 B3

61) MobyNostromo: T R1 Y1 Mobynostromo

62) wil: Sacrifice G3 Wil
Build G2 Redragon
Build G3 Wil
Build Y3 B3

63) MobyNostromo: S G2 Mobynostromo
B Y3 Mobynostromo
B Y3 Gammagreen

64) wil: Sacrifice G3 Wil
Build G2 Y2
Build G3 Wil
Build R1 Y2

65) MobyNostromo: M Y1 Mobynostromo Gammagreen

66) wil: S Y3 B3
M Y2 B3 Y2
M Y2 Y2 Gammagreen
M R1 Y2 Gammagreen
C Gammagreen Y

67) MobyNostromo: S Y3 Mobynostromo
M R2 Gammagreen Mobynostromo
M R3 Gammagreen Whytwo
Pass

68) wil: D G3 Y2 Y3 Y3

69) MobyNostromo: A R2 Whytwo

70) wil: M G3 Y3 Mobynostromo

71) MobyNostromo: S G1 Redgiant
B R3 Mobynostromo
	wil: You violated the always leave a big ship at home rule...  Challenge anytime.

72) wil: S R2 Y2
A R3 Mobynostromo
A R2 Mobynostromo

73) MobyNostromo: M R3 Whytwo Gammagreen

74) wil: B R2 Mobynostromo
C Mobynostromo R
	wil: Gg
	MobyNostromo: I'm still learning this one. Thanks for the game!



30545)
Started: 2016.10.14, Ended: 2016.10.18
Participants: lordrefa (S), ladybugsfly (N)
Winner: lordrefa

1) ladybugsfly: Homeworld G3 B2 Y3

2) lordrefa: Homeworld G3 B1 G3 *

3) ladybugsfly: Build Y1 Ladybugsfly

4) lordrefa: Build G1 Lordrefa

5) ladybugsfly: Discover Y1 Ladybugsfly G1 Frodo

6) lordrefa: Trade G1 Y1 Lordrefa

7) ladybugsfly: Build Y1 Frodo

8) lordrefa: Build Y2 Lordrefa

9) ladybugsfly: Build Y2 Ladybugsfly

10) lordrefa: Discover Y2 Lordrefa G2 Bilbo

11) ladybugsfly: Trade Y2 B2 Ladybugsfly

12) lordrefa: Build Y2 Bilbo

13) ladybugsfly: Move B2 Ladybugsfly Frodo

14) lordrefa: Build Y2 Lordrefa

15) ladybugsfly: Build Y3 Ladybugsfly

16) lordrefa: Move Y2 Bilbo Frodo

17) ladybugsfly: Trade Y1 R1 Frodo

18) lordrefa: Move Y2 Frodo Ladybugsfly

19) ladybugsfly: Trade Y3 R3 Ladybugsfly

20) lordrefa: Sacrifice G3 Lordrefa
Build Y1 Ladybugsfly
Build Y3 Ladybugsfly
Build Y3 Bilbo
Catastrophe Ladybugsfly Yellow

21) ladybugsfly: Build R1 Ladybugsfly

22) lordrefa: Trade Y2 R2 Lordrefa

23) ladybugsfly: Build B1 Frodo

24) lordrefa: Move R2 Lordrefa Bilbo

25) ladybugsfly: Discover B2 Frodo Y2 Gandalf

26) lordrefa: Move R2 Bilbo Frodo

27) ladybugsfly: Move B2 Gandalf Lordrefa

28) lordrefa: Move Y3 Bilbo Lordrefa

29) ladybugsfly: Discover B1 Frodo Y2 Gimli

30) lordrefa: Attack R1 Frodo

31) ladybugsfly: Build B1 Lordrefa

32) lordrefa: Sacrifice Y2 Bilbo
Move R1 Frodo Ladybugsfly
Move R2 Frodo Ladybugsfly
Catastrophe Ladybugsfly Red



30546)
Started: 2016.10.15, Ended: 2016.11.22
Participants: Draw5PlayAll (S), Subhan64 (N)
Winner: Draw5PlayAll

1) Subhan64: Homeworld B3 G1 Y3

2) Draw5PlayAll: Homeworld B1 R2 G3

3) Subhan64: Build Y1 Subhan64

4) Draw5PlayAll: Build G1 Draw5playall

5) Subhan64: Trade Y1 G1 Subhan64

6) Draw5PlayAll: Build G2 Draw5playall

7) Subhan64: Build G2 Subhan64

8) Draw5PlayAll: Trade G2 Y2 Draw5playall

9) Subhan64: Discover G2 Subhan64 Y2 Tweety

10) Draw5PlayAll: Build G2 Draw5playall

11) Subhan64: Build G2 Tweety
	Draw5PlayAll: I offer you the chance to make this game very interesting...

12) Draw5PlayAll: Trade G2 B2 Draw5playall
	Draw5PlayAll: I consider that a declination.

13) Subhan64: Discover G2 Tweety G3 Kermit

14) Draw5PlayAll: Discover B2 Draw5playall G3 G3

15) Subhan64: Build G2 Tweety

16) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B1 G3
Build Y1 Draw5playall

17) Subhan64: Build Y1 Subhan64
	Draw5PlayAll: You can still blow up my greens if you want.
	Subhan64: not worth it

18) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B1 G3
Build Y1 Draw5playall

19) Subhan64: Move G2 Tweety G3

20) Draw5PlayAll: Trade Y1 R1 Draw5playall

21) Subhan64: Trade G1 Y1 Subhan64

22) Draw5PlayAll: Sacrifice R1 Draw5playall
Attack G2N G3

23) Subhan64: Move Y1 Subhan64 Tweety

24) Draw5PlayAll: Trade G2 R2 G3

25) Subhan64: Discover Y1 Subhan64 G2 Scooter

26) Draw5PlayAll: Move G1 Draw5playall Kermit

27) Subhan64: Sacrifice G2 Tweety
Build Y2 Scooter
Build Y3 Subhan64

28) Draw5PlayAll: Move Y1 Draw5playall G3

29) Subhan64: Discover Y1 Scooter Y3 Blah

30) Draw5PlayAll: Build G1 Kermit
Catastrophe Kermit G

31) Subhan64: Trade Y3 G3 Subhan64

32) Draw5PlayAll: Build Y3 G3

33) Subhan64: Trade G3 B3 Subhan64

34) Draw5PlayAll: Move B1 G3 Tweety

35) Subhan64: Trade B3 R3 Subhan64

36) Draw5PlayAll: Build R1 G3

37) Subhan64: Sacrifice Y1 Tweety
Move Y2 Scooter Blah

38) Draw5PlayAll: Build Y1 Draw5playall

39) Subhan64: Build R1 Subhan64

40) Draw5PlayAll: Move Y1 Draw5playall Blah
Catastrophe Blah Yellow

41) Subhan64: Move R3 Subhan64 Tweety

42) Draw5PlayAll: Discover B1 Tweety G1 G1

43) Subhan64: Build Y1 Subhan64

44) Draw5PlayAll: Build B2 G3

45) Subhan64: Build R1 Subhan64

46) Draw5PlayAll: Build B2 G1

47) Subhan64: Move R3 Tweety G1

48) Draw5PlayAll: Build B3 G1

49) Subhan64: Attack B3 G1

50) Draw5PlayAll: Build B3 G1
Catastrophe G1 Blue

51) Subhan64: Build R2 G1

52) Draw5PlayAll: Build R3 G3

53) Subhan64: Sacrifice Y1 Subhan64
Move R2 G1 G3
Catastrophe G3 R

54) Draw5PlayAll: Build G1 Draw5playall

55) Subhan64: Trade R1 Y1 Subhan64

56) Draw5PlayAll: Build G2 Draw5playall

57) Subhan64: Sacrifice Y1 Subhan64
Move R3 G1 G3

58) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover Y3 G3 G1 G1
Move B2 G3 G1

59) Subhan64: Attack Y1 G3
	Draw5PlayAll: Dang

60) Draw5PlayAll: Sacrifice B2 G3
Trade G1 R1 Draw5playall
Trade B1 G1 G3

61) Subhan64: Attack G1 G3

62) Draw5PlayAll: Build Y1 G1

63) Subhan64: Build R1 G3

64) Draw5PlayAll: Build B1 G1

65) Subhan64: Move R3 G3 Draw5playall

66) Draw5PlayAll: Sacrifice R1 Draw5playall
Attack R3 Draw5playall

67) Subhan64: Build G2 G3

68) Draw5PlayAll: S Y1 G1
Move G2 Draw5playall G3
Catastrophe G3 G
	Draw5PlayAll: Incorrect. I believe you were hoping I would do a straight attack?

69) Subhan64: Build Y1 Subhan64
	Subhan64: that's what I was expecting,  yes. I overlooked the sacrifice move


70) Draw5PlayAll: Build G1 Draw5playall

71) Subhan64: Build Y1 Subhan64

72) Draw5PlayAll: Build Y1 G1

73) Subhan64: Build R1 Subhan64

74) Draw5PlayAll: Build G2 Draw5playall

75) Subhan64: Discover Y1 Subhan64 Y2 Bb

76) Draw5PlayAll: Sacrifice Y1 G1
Discover G2 Draw5playall B3 B3

77) Subhan64: Build R1 Subhan64

78) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B3
Build G2 B3
Build G3 Draw5playall

79) Subhan64: Trade Y3 G3 Subhan64

80) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Draw5playall
Build R2 Draw5playall

81) Subhan64: Build Y1 Subhan64

82) Draw5PlayAll: Trade G2 Y2 B3
	Draw5PlayAll: Deliberately having an unstable base

83) Subhan64: Trade Y1 B1 Subhan64

84) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y1 B3
Build Y2 B3
Build Y3 G1

85) Subhan64: Move Y1 Bb B3
Catastrophe B3 Yellow

86) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B3
Build B2 G1
Build G3 Draw5playall

87) Subhan64: Discover B1 Subhan64 Y2 Bb

88) Draw5PlayAll: Sacrifice B2 G1
Trade R2 Y2 Draw5playall
Trade G2 Y2 B3

89) Subhan64: Build Y1 Subhan64


90) Draw5PlayAll: Sacrifice Y3 G1
Move G2 B3 Bb
Move G2 B3 Bb
Move G2 Bb Subhan64

91) Subhan64: Attack G2 Subhan64

92) Draw5PlayAll: Move G2 Bb Subhan64
Catastrophe Subhan64 Green

	Draw5PlayAll: Good game
	Subhan64: gg


30523)
Started: 2016.10.17, Ended: 2016.11.1
Participants: Felix (S), zeder (N)
Winner: Felix

1) zeder: Homeworld G3 B1 Y3

2) Felix: Homeworld R2 G3 B3
	zeder: Hello again!
	Felix: Hello! I hope you have fun!

3) zeder: Build Y1 Zeder
	Draw5PlayAll: I find the blue ship to be the most impractical starting choice, preferring a blue star instead.

4) Felix: Build B1 Felix
	Felix: @Draw5 it can have its advantages, especially if the opponent choose a b1 in their homeworld. :)

5) zeder: Trade Y1 G1 Zeder

6) Felix: Build B1 Felix

7) zeder: Trade Y3 B3 Zeder

8) Felix: Trade B1 Y1 Felix

9) zeder: Trade G1 Y1 Zeder
	zeder: I don't know if trading for b3 was good idea but i felt scared that i would not be ables to get blue soon

10) Felix: Trade B1 G1 Felix
	Felix: It was probably the best move at the moment, because I WAS trying to lock you out of blue. I kind of forced you into that move but I think it will work out better for you to have the blue.
	Felix: Once you build another blue ship you could always trade back your b3 for something else.

11) zeder: Build B1 Zeder

12) Felix: Discover G1 Felix B1 Bazoik
	zeder: i am finding this game one of tempo... and trading back and forth loses me tempo. :(
	Draw5PlayAll: Imagine my plight when I have to keep trading my initial G3 to prevent attacks...

13) zeder: Discover B1 Zeder G2 Groo
	Felix: Tempo is so hard to maintain at times. I'm not doing it too well this game either.

14) Felix: Build B2 Felix

15) zeder: Build B2 Groo

16) Felix: Discover B2 Felix G1 Wastle

17) zeder: Trade B1 R1 Groo

18) Felix: Build B1 Wastle

19) zeder: Trade B3 G3 Zeder

20) Felix: Trade B2 Y2 Wastle

21) zeder: Build B2 Groo

22) Felix: Build B2 Felix

23) zeder: Trade B2 Y2 Groo

24) Felix: Trade B2 R2 Felix

25) zeder: Build B2 Groo

26) Felix: Build B2 Felix

27) zeder: Trade B2 R2 Groo

28) Felix: Build G1 Bazoik

29) zeder: Move R2 Groo Bazoik

30) Felix: Sacrifice G1 Bazoik
Build Y1 Wastle

31) zeder: Sacrifice G3 Zeder
Build Y2 Groo
Build Y3 Zeder
Build B2 Groo

32) Felix: Sacrifice G1 Bazoik
Build Y3 Felix

33) zeder: Sacrifice Y3 Zeder
Move R1 Groo Bazoik
Move R1 Bazoik Felix
Move R2 Bazoik Felix
Catastrophe Felix R

34) Felix: Sacrifice Y2 Wastle
Move B3 Felix Groo
Move B3 Groo Zeder

35) zeder: Sacrifice Y2 Groo
Move B2 Groo Zeder
Move B2 Groo Zeder
Catastrophe Zeder B
	Felix: Oh. Nice!

36) Felix: Move Y1 Wastle Zeder
	zeder: difficult decisions

37) zeder: Build Y2 Groo
	zeder: I am in big troubles!
	Felix: Yeah, I think you are, haha. But nice decision there. It saved you for the moment, but you don't have many ships to work with!

38) Felix: Build Y2 Zeder
	zeder: maybe in 1 year I will be a challengings opponent. :)

39) zeder: Move Y2 Groo Zeder
Catastrophe Zeder Y

	Felix: Oh, I think you will be sooner than that. You have a great instinct for the game!
	zeder: Seppuku!
	zeder: Thank you again for the game!
	Felix: Nice suicide :) And no problem! Sorry if I was a bit tough on you. If you'd like to play again, I'm happy any time, and I can even try to coach you a bit if I see you making any mistakes.


30557)
Variants: "Hard time"
Started: 2016.10.19, Ended: 2016.10.28
Participants: foksieloy (S), Subhan64 (N)
Winner: foksieloy

1) Subhan64: Homeworld Y3 B1 G3

2) foksieloy: Homeworld R2 B1 G3

3) Subhan64: Build G1 Subhan64

4) foksieloy: Build G1 Foksieloy

5) Subhan64: Trade G1 Y1 Subhan64

6) foksieloy: Trade G1 Y1 Foksieloy

7) Subhan64: Build G1 Subhan64
	foksieloy: Btw, hi, good luck and have fun! :)
	Subhan64: txx, u2!

8) foksieloy: Build G1 Foksieloy

9) Subhan64: Trade G1 B1 Subhan64

10) foksieloy: Discover G1 Foksieloy Y3 Tibbers

11) Subhan64: Build G1 Subhan64

12) foksieloy: Build G1 Tibbers

13) Subhan64: Build G2 Subhan64

14) foksieloy: Build G2 Tibbers

15) Subhan64: Discover G1 Subhan64 Y2 Tweety

16) foksieloy: Discover G2 Tibbers B2 Annie

17) Subhan64: Sacrifice G3 Subhan64
Build G2 Tweety
Build G3 Subhan64
Build B2 Subhan64

18) foksieloy: Build G3 Annie

19) Subhan64: Sacrifice B1 Subhan64
Trade G2 B2 Tweety

20) foksieloy: Trade G3 R3 Annie

21) Subhan64: Move B2 Subhan64 Tweety

22) foksieloy: Sacrifice Y1 Foksieloy
Move R3 Annie Subhan64

23) Subhan64: Sacrifice B2 Tweety
Trade Y1 R1 Subhan64
Trade G2 R2 Subhan64

24) foksieloy: Attack G3 Subhan64

	Subhan64: gg!

	foksieloy: GG!
	Subhan64: gg thanks


30555)
Started: 2016.10.19, Ended: 2016.10.25
Participants: lordrefa (S), ladybugsfly (N)
Winner: ladybugsfly

1) ladybugsfly: Homeworld Y3 G2 B3

2) lordrefa: Homeworld B3 G1 Y3

3) ladybugsfly: B B1 Ladybugsfly

4) lordrefa: Build Y1 Lordrefa

5) ladybugsfly: Build B1 Ladybugsfly

6) lordrefa: Build Y1 Lordrefa

7) ladybugsfly: Discover B1 Ladybugsfly G1 Peterpan

8) lordrefa: Discover Y1 Lordrefa G2 Mrsmee

9) ladybugsfly: T B1 Y1 Peterpan

10) lordrefa: Build Y2 Mrsmee

11) ladybugsfly: Build Y2 Peterpan

12) lordrefa: Trade Y1 B1 Lordrefa

13) ladybugsfly: Discover B1 Ladybugsfly G1 Hook

14) lordrefa: Build Y1 Lordrefa

15) ladybugsfly: Sacrifice Y1 Peterpan
Discover B1 Hook G2 Lostboys

16) lordrefa: Move B1 Lordrefa Mrsmee

17) ladybugsfly: B B1 Lostboys

18) lordrefa: Build B2 Mrsmee

19) ladybugsfly: Build B2 Ladybugsfly

20) lordrefa: Move B1 Mrsmee Peterpan

21) ladybugsfly: T B2 R2 Ladybugsfly

22) lordrefa: Trade B1 R1 Peterpan

23) ladybugsfly: Sacrifice Y2 Peterpan
Move B1 Lostboys Lordrefa
Move B1 Lostboys Lordrefa

24) lordrefa: Build R1 Peterpan

25) ladybugsfly: Build B1 Ladybugsfly

26) lordrefa: Sacrifice R1 Peterpan
Attack B1 Lordrefa

27) ladybugsfly: Build B2 Lordrefa
Catastrophe Lordrefa B

28) lordrefa: Trade Y2 B2 Mrsmee

29) ladybugsfly: Discover B1 Ladybugsfly Y1 Hook

30) lordrefa: Move B2 Mrsmee Lordrefa

31) ladybugsfly: Trade B1 G1 Hook

32) lordrefa: Move B2 Mrsmee Hook

33) ladybugsfly: Build G2 Hook

34) lordrefa: Build R1 Peterpan

35) ladybugsfly: Discover G2 Hook Y2 Wendy

36) lordrefa: Move Y3 Lordrefa Wendy

37) ladybugsfly: Sacrifice G2 Wendy
Build G2 Hook
Build B1 Ladybugsfly

38) lordrefa: Sacrifice Y3 Wendy
Move B2 Hook Ladybugsfly
Move B2 Lordrefa Ladybugsfly
Move R1 Peterpan Mrsmee
Catastrophe Ladybugsfly Blue

39) ladybugsfly: Build G3 Hook

40) lordrefa: Build Y2 Lordrefa

41) ladybugsfly: Discover G3 Hook Y3 Tigerlily

42) lordrefa: Build Y2 Mrsmee

43) ladybugsfly: Move G3 Tigerlily Lordrefa

44) lordrefa: Build Y2 Mrsmee

45) ladybugsfly: Sacrifice G2 Hook
Build G2 Lordrefa
Build G3 Lordrefa
Catastrophe Lordrefa G



30551)
Started: 2016.10.23, Ended: 2016.11.23
Participants: orangeblood (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3

2) orangeblood: Homeworld B1 Y2 G3
	Felix: Good luck and have fun!

3) Felix: Build G1 Felix
	orangeblood: Hi! It's time to play again, because my Pyramid Arcade kickstarter should arrive this week (hopefully). I need to re-learn the game so I can more easily teach others. The only two games I've ever played are with you, and it's been awhile.
	Felix: Welcome back! I'm happy to help you brush up on your skills before your Arcade arrives. I didn't realize they were arriving so soon. I hope mine arrives this week as well!

4) orangeblood: Build G1 Orangeblood

5) Felix: Trade G1 Y1 Felix
	orangeblood: Trying to follow the Kickstarter updates... it's not clear they have actually shipped U.S. orders yet. Someone said they might ship Thursday. Where do you live? I'm near D.C.
	Felix: I'm in NC. I think I remember them saying they should arrive by Nov 3 at the latest for US residents. Here's hoping it's sooner!

6) orangeblood: Trade G1 B1 Orangeblood

7) Felix: Build Y1 Felix

8) orangeblood: Build G1 Orangeblood

9) Felix: Discover Y1 Felix G2 Flemoid

10) orangeblood: Discover G1 Orangeblood Y3 Wishbone

11) Felix: Build G1 Felix

12) orangeblood: Build G1 Orangeblood

13) Felix: Discover G1 Felix B2 Ralston

14) orangeblood: Build G2 Wishbone

15) Felix: Build Y1 Felix
	orangeblood: Still no game here in Virginia. Gak.
	Felix: Nor here. They just sent out an update saying most of them were shipped over the last few days, so hopefully this week!

16) orangeblood: Discover G1 Orangeblood G3 Bevo

17) Felix: Build G2 Felix

18) orangeblood: Move B1 Orangeblood Wishbone

19) Felix: Move Y1 Felix Ralston

20) orangeblood: T G2 Y2 Wishbone

21) Felix: Build G2 Ralston

22) orangeblood: Move Y2 Wishbone Orangeblood
	orangeblood: I got the game yesterday... it looks great!
	Felix: Same here! Loving it so far!

23) Felix: Build Y2 Flemoid
	Draw5PlayAll: Was Homeworlds the first game you tried out?

24) orangeblood: Move Y2 Orangeblood Bevo
	orangeblood: Homeworlds is the only pyramid game I've ever played, and only here at SDG. I am going to play F2F with one of my co-workers this week, however. I need to learn some of the other games. :)
	Draw5PlayAll: Felix?
	Felix: @orangeblood There's some great games in there. I am really enjoying Petal Battle at the moment. Good luck getting people hooked on it!

@Draw5 - no, my first play was Treehouse, and then IceDice. I didn't play homeworlds until I had a bigger set of pyramids.

25) Felix: Build Y3 Ralston

26) orangeblood: Build Y3 Bevo
	orangeblood: Yeah I've been reading the rules... several I can't wait to try.

27) Felix: Trade Y3 R3 Ralston

28) orangeblood: Trade G3 R3 Orangeblood

29) Felix: Build Y3 Ralston

30) orangeblood: Sacrifice Y2 Bevo
Move Y3 Bevo Orangeblood
Move G1 Bevo Orangeblood

31) Felix: Discover G2 Ralston B3 Bazoik

32) orangeblood: Build G3 Wishbone
	orangeblood: I'm just sort of flailing about, haha.
	Felix: Haha, no worries. It may have been a bad idea to trade away your G ship in your home system. It's better to try to build another G first before trading. That's a good rule of thumb for any color, really. Always better to build a second ship of any color and THEN trade that for a different ship. Otherwise you are losing one color ability to gain another, and it's not really a net gain.

33) Felix: Build G3 Bazoik

34) orangeblood: Build R1 Orangeblood
	orangeblood: Makes sense!

Got to play a 3-player World War 5 game today... and it was a lot of fun. More strategy than I thought.
	Felix: That's a game I'd like to see on SDG someday! I still haven't played yet.

35) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Felix
Build R1 Ralston
	Draw5PlayAll: While we are at it I would like to see Zark City here.
	Draw5PlayAll: And RAMbots.

36) orangeblood: Discover Y3 Orangeblood B3 Santorini
	orangeblood: Finally got to teach Homeworlds to a co-worker today... first f2f game ever. Lots of fun. Also tried Hijinks, which was way better than I thought it would be. Color Wheel, on the other hand... well, I'm not a big fan of puzzles. :)
	orangeblood: Also, you may have noticed my attempt at the investment/banker strategy this game was.... suboptimal.

37) Felix: Move Y1 Flemoid Bazoik
	Felix: My wife and I played hijinks and quite enjoyed it! Deceptively complex for such a seemingly simple game.

And yeah... the investment/banking is tough to pull off! I have rarely done it successfully. Good attempt though!

38) orangeblood: Move R1 Orangeblood Wishbone

39) Felix: Move R3 Ralston Bazoik

40) orangeblood: S G3 Wishbone
Build G3 Wishbone
B R2 Wishbone
B R2 Orangeblood

41) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R2 Bazoik
Build R3 Ralston

42) orangeblood: M Y3 Santorini Orangeblood

43) Felix: Trade R3 B3 Bazoik

44) orangeblood: Discover R3 Orangeblood R3 Red Cloud

45) Felix: Move Y2 Flemoid Bazoik

46) orangeblood: Sacrifice G3 Wishbone
B G2 Orangeblood
B G3 Wishbone
B B1 Wishbone
	orangeblood: I think you've got me pretty good.
	orangeblood: We played a couple of 3-player Zark City games today... and it's really a good game. Great finishes.
	Draw5PlayAll: ZC and Rambots and Lunar Invaders deserve to be on sdg.
	orangeblood: I haven't tried Lunar Invaders yet!

47) Felix: Sacrifice Y3 Ralston
Move Y1 Bazoik Orangeblood
Move Y2 Bazoik Orangeblood
Catastrophe Orangeblood Yellow
Move B3 Bazoik Orangeblood
	Felix: I haven't played Zark City or Lunar Invaders yet but I'm excited to try them both!

	Felix: The coup de grace!
	orangeblood: Huh. Somehow I overlooked your second yellow ship in bazoik.
	orangeblood: Well played!
	orangeblood: Anyway, mission accomplished for me to brush up on the rules. I've already taught Homeworlds to a friend with the PA set. Thanks again!
	Felix: Thank you! Well played yourself. Glad to help you brush up!


30530)
Variants: "Hard time"
Started: 2016.10.25, Ended: 2016.10.28
Participants: mxpf (S), Ryzorrin (N)
Winner: Ryzorrin

1) Ryzorrin: Homeworld R1 G2 B3
	Ryzorrin: Hello!




30584)
Variants: "Hard time"
Started: 2016.10.29, Ended: 2016.11.3
Participants: dlwillson (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B2 G3

	Felix: Good luck and have fun!
	Felix: Oh dear :( I hate to win that way.
	dlwillson: Aw, shucks! I hate to lose that way! I must have missed the email.
	Felix: Sorry! I'm happy to rematch when the opportunity arises.


30553)
Started: 2016.10.31, Ended: 2017.1.4
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld B1 Y3 G3

2) Felix: Homeworld R1 B2 G3
	ts52: Have a good game!
	Felix: Likewise! I always enjoy playing against you.

3) ts52: Build G1 Ts52

4) Felix: Build G1 Felix
	ts52: Indeed

5) ts52: Discover G1 Ts52 B2 Gonzo

6) Felix: Trade G1 B1 Felix

7) ts52: Build G1 Ts52

8) Felix: Build B1 Felix

9) ts52: Build G1 Ts52

10) Felix: Build G2 Felix

11) ts52: Build G2 Gonzo

12) Felix: Trade G2 Y2 Felix

13) ts52: Build G2 Gonzo

14) Felix: Build G2 Felix

15) ts52: Trade G2 Y2 Gonzo

16) Felix: Discover G2 Felix B3 Rails

17) ts52: Trade G1 R1 Ts52

18) Felix: Trade B1 R1 Felix

19) ts52: Trade G2 B2 Gonzo

20) Felix: Build R2 Felix

21) ts52: Build R2 Ts52

22) Felix: Move R2 Felix Rails

23) ts52: Move R2 Ts52 Gonzo

24) Felix: Discover R1 Felix G3 Bazoik

25) ts52: Sacrifice G3 Ts52
Build R2 Gonzo
Build R3 Gonzo
Build R3 Ts52

26) Felix: Build R3 Rails

27) ts52: Move R2 Gonzo Rails

28) Felix: Sacrifice R2 Rails
Attack R2 Rails
Pass

29) ts52: Trade R3 G3 Ts52

30) Felix: Trade R2 Y2 Rails

31) ts52: Move R2 Gonzo Bazoik

32) Felix: Build R2 Rails

33) ts52: Attack R1 Bazoik

34) Felix: Discover R2 Rails G2 Ruby

35) ts52: Sacrifice G3 Ts52
Build G1 Gonzo
Build G2 Gonzo
Build G3 Ts52

36) Felix: Move G2 Rails Gonzo
Catastrophe Gonzo Green

37) ts52: Move B2 Gonzo Bazoik

38) Felix: Build G1 Felix

39) ts52: Move G1 Ts52 Gonzo

40) Felix: Move G1 Felix Rails

41) ts52: Build Y1 Gonzo

42) Felix: Build G1 Felix

43) ts52: Build G2 Ts52

44) Felix: Build Y1 Rails

45) ts52: Move Y1 Gonzo Bazoik

46) Felix: Move Y2 Rails Ruby

47) ts52: Build B1 Bazoik

48) Felix: Sacrifice G3 Felix
Build Y1 Rails
Build Y3 Ruby
Build Y3 Felix

49) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Gonzo
Build G3 Ts52

50) Felix: Move G1 Rails Gonzo
Catastrophe Gonzo Green

51) ts52: Sacrifice G2 Ts52
Build R2 Ts52
Build R3 Gonzo

52) Felix: Discover B1 Felix G3 Raptor

53) ts52: Move R3 Gonzo Raptor

54) Felix: Sacrifice Y1 Rails
Move B1 Raptor Ruby

55) ts52: Build Y1 Bazoik

56) Felix: Build B3 Ruby

57) ts52: Move B1 Bazoik Felix

58) Felix: Move B3 Ruby Bazoik
	Felix: Ooh, that was sneaky. Very nice.

59) ts52: Attack G1 Felix
	Draw5PlayAll: I fail to understand
	Felix: Moving his b1 to my homeworld made it so A) I have to deal with the threat of his b1 and B) he opened up the opportunity to build the remaining b3 himself. A great move.
	ts52: Thanks! Although I hadn't considered your counter move. Now if I build the b3, you can immediately steal it from me.

60) Felix: Sacrifice R2 Ruby
Attack B1 Felix
Attack G1 Felix
	Felix: And thank you! It took me a while to come up with that countermove, and I was soiling my pants there for a while first :)

61) ts52: Build G1 Ts52

62) Felix: Build B3 Ruby

63) ts52: Sacrifice Y2 Gonzo
Move Y1 Bazoik Felix
Move Y1 Bazoik Felix
Catastrophe Felix Yellow

64) Felix: Sacrifice Y2 Ruby
Move Y3 Ruby Rails
Move Y3 Rails Felix
	Felix: Aw, man, how did I miss that?

65) ts52: Trade R1 Y1 Bazoik

66) Felix: Sacrifice R3 Rails
Attack Y1 Bazoik
Attack R2 Bazoik
Attack B2 Bazoik
	ts52: Probably because it wasn't the killing blow I'd hoped it would be when I started thinking about it several turns ago.

67) ts52: Trade R2 Y2 Ts52
	Felix: Ah yes, I suppose that must be it :) It was a bold strike, but I think it might end up leaving you a bit worse off than before.

68) Felix: Trade B3 Y3 Bazoik
	ts52: I think you may be right. It cost all of my transport, and for what real gain? Oh well.

69) ts52: Move Y2 Ts52 Gonzo

70) Felix: Build B3 Bazoik

71) ts52: Move G1 Ts52 Gonzo

72) Felix: Trade B3 R3 Ruby

73) ts52: Build G1 Ts52

74) Felix: Build G2 Felix

75) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build Y1 Gonzo

76) Felix: Sacrifice G2 Felix
Build Y2 Felix
Build Y2 Rails

77) ts52: Move Y2 Gonzo Raptor

78) Felix: Build G2 Felix

79) ts52: Move R3 Gonzo Rails

80) Felix: Sacrifice Y1 Rails
Move Y2 Rails Ruby

81) ts52: Trade G3 B3 Ts52

82) Felix: S Y3 Bazoik
M B2 Bazoik Ruby
M B1 Ruby Ts52
M B2 Ruby Ts52
C Ts52 Blue

83) ts52: Sacrifice Y2 Raptor
Move R3 Rails Ruby
Move R3 Ruby Ts52
	ts52: Sorry for running out of time, thanks for being patient.

84) Felix: Sacrifice Y3 Felix
Move Y2 Ruby Ts52
Move Y1 Bazoik Gonzo
Move Y1 Gonzo Ts52

85) ts52: Sacrifice R3 Raptor
Attack Y1 Ts52
Attack Y2 Ts52
Pass
	Felix: No problem! I understand with the holidays, and I won't force someone to surrender as long as the system allows it!
	ts52: Thanks!
	ts52: Though I think you've got this one wrapped up.

86) Felix: Move Y2 Felix Ts52
Catastrophe Ts52 Yellow
	Felix: Yes, I suppose that's a bummer to come back from holiday just to suffer defeat, but good game, and I look forward to the next!
	ts52: It was an excellent game. Always happy to play another.



30579)
Variants: "Hard time"
Started: 2016.11.1, Ended: 2016.11.4
Participants: mxpf (S), zeder (N)
Winner: zeder

1) zeder: Homeworld G3 B1 Y3

	Draw5PlayAll: Just so you know, MXPF has not signed on in over a month.
	zeder: Damnit!  I forgot about this person! How do he keep creating games?!
	Draw5PlayAll: Standing Challenge. It is a feature where you can have a challenge create itself automatically. Too bad it leads to this situation.

It is similar to how you always get spectators who have not signed on in years. They chose the option to monitor all Homeworlds games.
	zeder: Thank you for this informations.  I will remember this person next time.
	Draw5PlayAll: Withdraw the planetary regime plans -- our enemy's Life Support Systems are going to blow.


30611)
Variants: "Hard time"
Started: 2016.11.3, Ended: 2016.11.6
Participants: Subhan64 (S), mxpf (N)
Winner: Subhan64

	Draw5PlayAll: Last I checked mxpf is inactive


30647)
Variants: "Hard time"
Started: 2016.11.5, Ended: 2016.11.8
Participants: Subhan64 (S), Pheonixian (N)
Winner: Subhan64



30571)
Started: 2016.11.7, Ended: 2017.1.8
Participants: agentofchaos (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3
	Felix: Hey, hope you have fun!

2) agentofchaos: Homeworld R1 B2 G3
	agentofchaos: Thanks, you too!

3) Felix: Build G1 Felix

4) agentofchaos: Build G1 Agentofchaos

5) Felix: Trade G1 Y1 Felix

6) agentofchaos: Build G1 Agentofchaos

7) Felix: Build Y1 Felix

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) Felix: Build Y2 Felix

10) agentofchaos: Build Y2 Agentofchaos

11) Felix: Trade Y1 B1 Felix

12) agentofchaos: Build G1 Agentofchaos

13) Felix: Discover B1 Felix G1 Rim

14) agentofchaos: Discover G1 Agentofchaos R3 Doombridge

15) Felix: Build G2 Felix

16) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Doombridge
Build G2 Agentofchaos
Build G3 Agentofchaos

17) Felix: Discover G2 Felix B1 Opus

18) agentofchaos: Trade G2 R2 Agentofchaos

19) Felix: Build G2 Felix

20) agentofchaos: Move Y1 Agentofchaos Doombridge

21) Felix: Build G3 Opus

22) agentofchaos: Sacrifice G3 Agentofchaos
Build Y1 Doombridge
Build R1 Agentofchaos
Build G3 Agentofchaos

23) Felix: Move Y2 Felix Opus

24) agentofchaos: Discover R2 Agentofchaos Y3 Yuggoth

25) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Opus
Build Y3 Felix

26) agentofchaos: Sacrifice G3 Agentofchaos
Build Y3 Agentofchaos
Build R1 Yuggoth
Build G3 Agentofchaos

27) Felix: Trade G3 R3 Opus

28) agentofchaos: Move G1 Doombridge Rim

29) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Opus
Build R2 Opus

30) agentofchaos: Sacrifice R1 Yuggoth
Attack B1 Rim

31) Felix: Move R3 Opus Doombridge

32) agentofchaos: Sacrifice Y1 Doombridge Rim
Discover G2 Doombridge Y1 Agarzon

33) Felix: Attack Y1 Doombridge

34) agentofchaos: Move R1 Agentofchaos Doombridge

35) Felix: Attack R1 Doombridge
	Felix: Your g2 has escaped a terrible fate! :P
	agentofchaos: for the time being anyway!

36) agentofchaos: Sacrifice Y2 Agentofchaos
Move R2 Yuggoth Rim
Move R2 Rim Doombridge
Catastrophe Doombridge R

37) Felix: Discover G2 Opus Y3 Edge

38) agentofchaos: Trade B1 Y1 Rim
	Felix: Very nice!

39) Felix: Build Y2 Opus
	agentofchaos: Thanks - a desperation move!

40) agentofchaos: Trade G1 R1 Agentofchaos

41) Felix: Sacrifice G3 Felix
Build G1 Opus
Build G3 Felix
Build R1 Opus

42) agentofchaos: Discover G2 Agarzon B2 Ghost

43) Felix: Move G2 Felix Rim

44) agentofchaos: Discover G1 Rim B2 Lycan

45) Felix: Sacrifice R1 Opus
Attack Y1 Rim

46) agentofchaos: Build Y1 Agentofchaos

47) Felix: Move Y2 Opus Lycan

48) agentofchaos: Sacrifice G1 Lycan
Build G1 Ghost

49) Felix: Trade G1 B1 Opus

50) agentofchaos: Build G1 Agentofchaos

51) Felix: Sacrifice G2 Rim
Build G2 Felix
Build B1 Opus

52) agentofchaos: Discover Y1 Agentofchaos B3 Shade

53) Felix: Move B1 Opus Edge

54) agentofchaos: Move R1 Agentofchaos Shade

55) Felix: Build B3 Edge

56) agentofchaos: Move R1 Shade Ghost

57) Felix: Sacrifice Y3 Felix
Move B3 Edge Agentofchaos
Move G3 Opus Edge
Move G3 Edge Agentofchaos

	agentofchaos: well played
	Felix: Thanks, you too! Good game!


30597)
Started: 2016.11.7, Ended: 2017.1.21
Participants: ts52 (S), agentofchaos (N)
Winner: ts52

1) agentofchaos: Homeworld Y1 B2 G3

2) ts52: Homeworld B1 Y3 G3
	agentofchaos: Hi there, enjoy the game

3) agentofchaos: Build G1 Agentofchaos
	ts52: Thanks! You too!

4) ts52: Build G1 Ts52

5) agentofchaos: Discover G1 Agentofchaos Y3 Hymzoth

6) ts52: Discover G1 Ts52 B2 Gonzo

7) agentofchaos: Build G1 Agentofchaos

8) ts52: Build G2 Ts52

9) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Hymzoth
Build G2 Hymzoth
Build G3 Agentofchaos

10) ts52: Build G3 Gonzo

11) agentofchaos: Discover G2 Hymzoth B2 Abaddon

12) ts52: Trade G1 Y1 Gonzo

13) agentofchaos: Build G1 Hymzoth

14) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Gonzo
Build Y2 Gonzo

15) agentofchaos: Trade G2 Y2 Abaddon

16) ts52: Trade G2 R2 Ts52

17) agentofchaos: Trade G1 R1 Agentofchaos

18) ts52: Discover Y2 Gonzo B3 Grover

19) agentofchaos: Build R1 Agentofchaos

20) ts52: Build G1 Gonzo

21) agentofchaos: Sacrifice G2 Hymzoth
Build Y2 Abaddon
Build G2 Agentofchaos

22) ts52: Sacrifice G1 Gonzo
Build Y3 Grover

23) agentofchaos: Move G1 Hymzoth Abaddon

24) ts52: Build G1 Gonzo

25) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Abaddon
Build G2 Hymzoth
Build G3 Agentofchaos

26) ts52: Trade Y3 R3 Grover

27) agentofchaos: Trade G3 Y3 Agentofchaos

28) ts52: Discover Y1 Gonzo G3 Kermit

29) agentofchaos: Trade R1 B1 Agentofchaos

30) ts52: Move G1 Gonzo Grover

31) agentofchaos: Build B1 Agentofchaos

32) ts52: Move R3 Grover Abaddon

33) agentofchaos: Sacrifice Y2 Abaddon
Move G1 Abaddon Ts52
Move G2 Abaddon Ts52

34) ts52: Attack G2 Ts52

35) agentofchaos: Sacrifice Y2 Abaddon
Move G1 Hymzoth Abaddon
Move G1 Abaddon Ts52
Catastrophe Ts52 G

36) ts52: Move G3 Gonzo Ts52

37) agentofchaos: Discover B1 Agentofchaos G3 Grimvale

38) ts52: Build G1 Ts52

39) agentofchaos: Build B3 Grimvale

40) ts52: Sacrifice G3 Ts52
Build G1 Grover
Build G2 Grover
Build G3 Ts52

41) agentofchaos: Build B3 Grimvale

42) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Grover
Build Y2 Kermit

43) agentofchaos: Build R1 Agentofchaos

44) ts52: Move Y2 Grover Abaddon

45) agentofchaos: Trade B3 R3 Grimvale

46) ts52: Sacrifice Y2 Abaddon
Move Y2 Grover Agentofchaos
Move Y1 Kermit Agentofchaos
Catastrophe Agentofchaos Y

47) agentofchaos: Build B3 Agentofchaos

48) ts52: Move Y1 Gonzo Grover

49) agentofchaos: Trade B3 Y3 Agentofchaos

50) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Grover
Build Y1 Kermit

	agentofchaos: good game, well played
	ts52: Good game. Thanks. I look forward to our next one.
	Draw5PlayAll: Why resign?


30623)
Variants: "Hard time"
Started: 2016.11.7, Ended: 2016.11.10
Participants: agentofchaos (S), mxpf (N)
Winner: agentofchaos

	Draw5PlayAll: Your opponent has not signed on in over a month!


30658)
Started: 2016.11.7, Ended: 2017.2.8
Participants: GalateanGemmate (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3
	GalateanGemmate: Hello! I might be a beginner? So far I've only played against people I've taught how to play, so I've no idea how good I am. Also, good luck!
	ts52: No problem. I'm always happy to play with new players. Have a good game!

2) GalateanGemmate: Homeworld B3 Y2 G3

3) ts52: Build G1 Ts52

4) GalateanGemmate: Build G1 Galateangemmate

5) ts52: Trade G1 B1 Ts52

6) GalateanGemmate: Trade G1 Y1 Galateangemmate

7) ts52: Build B1 Ts52

8) GalateanGemmate: Build G1 Galateangemmate

9) ts52: Discover B1 Ts52 G2 Kermit

10) GalateanGemmate: Trade G3 B3 Galateangemmate

11) ts52: Build B2 Kermit

12) GalateanGemmate: Build B2 Galateangemmate

13) ts52: Trade B2 Y2 Kermit

14) GalateanGemmate: Discover B2 Galateangemmate G1 Greenmachine

15) ts52: Sacrifice G3 Ts52
Build B2 Kermit
Build B2 Kermit
Build B3 Ts52

16) GalateanGemmate: Sacrifice Y1 Galateangemmate
Move B2 Greenmachine Kermit
Catastrophe Kermit Blue

17) ts52: Trade B3 G3 Ts52

18) GalateanGemmate: Build B1 Galateangemmate

19) ts52: Build B2 Ts52

20) GalateanGemmate: Discover B1 Galateangemmate G1 Morning

21) ts52: Move B2 Ts52 Kermit

22) GalateanGemmate: Build B2 Morning

23) ts52: Build B2 Kermit

24) GalateanGemmate: Trade B2 Y2 Morning

25) ts52: Discover B1 Ts52 G2 Robin



30672)
Started: 2016.11.8, Ended: 2016.11.11
Participants: Joe_Hill (S), ratpfink (N)
Winner: ratpfink

1) ratpfink: Homeworld G1 B3 Y3

2) Joe_Hill: Homeworld B2 Y1 G3

3) ratpfink: Build Y1 Ratpfink

4) Joe_Hill: Build G1 Joe_hill

5) ratpfink: Build Y1 Ratpfink

6) Joe_Hill: Build G1 Joe_hill

7) ratpfink: Trade Y3 G3 Ratpfink

8) Joe_Hill: Trade G1 B1 Joe_hill

9) ratpfink: Discover Y1 Ratpfink G2 Lexi

10) Joe_Hill: Build G1 Joe_hill

11) ratpfink: Build Y2 Lexi
	Joe_Hill: I still don't really understand how far away we from each other. 

12) Joe_Hill: Discover G1 Joe_hill Y3 Ta

13) ratpfink: Trade Y1 B1 Ratpfink
	ratpfink: You can move between systems of different types of stars. That's why my ship could move from ratpfink system to lexi system. It's a (1,3) to a 2

14) Joe_Hill: Build G2 Ta

15) ratpfink: Build G2 Ratpfink

16) Joe_Hill: Build G3 Ta

17) ratpfink: Sacrifice Y2 Lexi
Move G2 Ratpfink Lexi
Move G2 Lexi Ta
Catastrophe Ta Green

18) Joe_Hill: Build G1 Joe_hill
	Joe_Hill: strange

19) ratpfink: Build G2 Ratpfink

20) Joe_Hill: Discover G1 Joe_hill B3 Tab
	ratpfink: That was fun!
	Draw5PlayAll: JoeHill (1,2) => any 3 => any 2 => ratpfink (1,3).
As of now a 1-system is not connected to either side.
	Draw5PlayAll: If you sac a Y3 (for 3 movements) you can send a ship from one homeworld to the other.

Also note if on earth of the stars gets blown up the connections are altered.
	Joe_Hill: Right, I understood all that, but thank you. I guess I was just incorrectly thinking of distance as linear instead of the way it is. 
	Joe_Hill: Have to shake off the squares of the chess board.
	Joe_Hill: Mentally shake them off.

21) ratpfink: Build G2 Ratpfink

22) Joe_Hill: Trade G1 Y1 Tab

23) ratpfink: Trade G3 Y3 Ratpfink

24) Joe_Hill: Move G1 Joe_hill Tab

25) ratpfink: Build Y2 Ratpfink

26) Joe_Hill: Build Y2 Tab

27) ratpfink: Trade Y3 R3 Ratpfink

28) Joe_Hill: Discover Y1 Tab B2 Cab

29) ratpfink: Move R3 Ratpfink Cab

30) Joe_Hill: Trade Y2 R2 Tab

31) ratpfink: Attack Y1 Cab

32) Joe_Hill: Build B1 Joe_hill
	Joe_Hill: Not sure that was wise. TBH I don't know what the hell I'm doing.

33) ratpfink: Sacrifice Y2 Ratpfink
Move R3 Cab Tab
Move R3 Tab Joe_hill

34) Joe_Hill: Build B2 Joe_hill

35) ratpfink: Attack B2 Joe_hill
Catastrophe Joe_hill B

	Joe_Hill: oh for Christ's sake.
	Joe_Hill: I forgot about the star....
	Joe_Hill: Rematch?


30663)
Variants: "Unrated"
Started: 2016.11.9, Ended: 2017.1.13
Participants: zeder (S), agentofchaos (N)
Winner: zeder

1) agentofchaos: Homeworld B1 Y2 G3

2) zeder: Homeworld R2 G3 B3
	agentofchaos: Hi, enjoy the game

3) agentofchaos: Build G1 Agentofchaos

4) zeder: Build B1 Zeder

5) agentofchaos: Build G1 Agentofchaos

6) zeder: Build B1 Zeder

7) agentofchaos: Discover G1 Agentofchaos Y3 Xunzi

8) zeder: Trade B3 G3 Zeder

9) agentofchaos: Trade G1 Y1 Agentofchaos

10) zeder: Build B2 Zeder

11) agentofchaos: Build G1 Agentofchaos

12) zeder: Trade B2 Y2 Zeder

13) agentofchaos: Trade G3 B3 Agentofchaos

14) zeder: Discover B1 Zeder G1 Flip

15) agentofchaos: Build G2 Xunzi

16) zeder: Build G2 Zeder

17) agentofchaos: Build G2 Agentofchaos

18) zeder: Move G2 Zeder Flip

19) agentofchaos: Trade G2 Y2 Agentofchaos

20) zeder: Build B2 Flip

21) agentofchaos: Trade Y1 R1 Agentofchaos

22) zeder: Build B2 Flip

23) agentofchaos: Move G1 Xunzi Flip

24) zeder: Trade G2 R2 Flip

25) agentofchaos: Sacrifice G2 Xunzi
Build G2 Flip
Build G2 Flip
Catastrophe Flip G

26) zeder: Build G1 Zeder

27) agentofchaos: Discover G1 Agentofchaos Y3 Solvol
	zeder: Reset button!

28) zeder: Trade G1 Y1 Zeder

29) agentofchaos: Trade B3 G3 Agentofchaos
	agentofchaos: I thought it was time for a little reset!

30) zeder: Discover Y2 Zeder G1 Cribbage

31) agentofchaos: Build G1 Agentofchaos

32) zeder: Move B1 Zeder Cribbage

33) agentofchaos: Build G2 Solvol

34) zeder: Trade Y2 G2 Cribbage

35) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Agentofchaos
Build G3 Agentofchaos
Build Y1 Agentofchaos

36) zeder: Build Y1 Zeder

37) agentofchaos: Trade Y1 B1 Agentofchaos

38) zeder: Build B2 Cribbage

39) agentofchaos: Sacrifice G3 Agentofchaos
Build B2 Agentofchaos
Build R1 Agentofchaos
Build G3 Agentofchaos

40) zeder: Trade B2 Y2 Cribbage

41) agentofchaos: Sacrifice Y2 Agentofchaos
Discover G2 Agentofchaos Y3 Abysshome
Move B2 Agentofchaos Abysshome

42) zeder: Build B2 Cribbage

43) agentofchaos: Trade B2 Y2 Abysshome

44) zeder: Sacrifice G2 Cribbage
Build Y1 Zeder
Build Y3 Cribbage

45) agentofchaos: Build G2 Abysshome

46) zeder: Discover B2 Cribbage R3 Mahjong

47) agentofchaos: Move B1 Agentofchaos Solvol

48) zeder: Build B2 Cribbage

49) agentofchaos: Discover G2 Abysshome R1 Gloam

50) zeder: Trade Y3 R3 Cribbage

51) agentofchaos: Move Y2 Abysshome Gloam

52) zeder: Build Y3 Cribbage

53) agentofchaos: Move G1 Solvol Gloam

54) zeder: Move R3 Cribbage Solvol

55) agentofchaos: S Y2 Gloam
Move G1 Gloam Zeder
Move G2 Gloam Zeder

56) zeder: Sacrifice B1 Cribbage
Trade G3 R3 Zeder

57) agentofchaos: Sacrifice G2 Solvol
Build G2 Zeder
Build G3 Abysshome
Catastrophe Zeder G

58) zeder: Build Y2 Cribbage

59) agentofchaos: Sacrifice B1 Solvol
Trade G2 B2 Abysshome

60) zeder: Build B1 Cribbage

61) agentofchaos: Move R1 Agentofchaos Abysshome

62) zeder: Trade B2 G2 Cribbage

63) agentofchaos: B R1 Abysshome

64) zeder: Sacrifice B2 Mahjong
Trade R3 G3 Zeder
Trade Y3 R3 Cribbage

65) agentofchaos: D R1 Agentofchaos Y3 Heartchasm

66) zeder: Sacrifice Y2 Cribbage
Move G3 Zeder Solvol
Move G3 Solvol Agentofchaos

67) agentofchaos: Sacrifice R1 Abysshome
Attack G3 Agentofchaos

68) zeder: Sacrifice Y2 Cribbage
Move G2 Cribbage Solvol
Move G2 Solvol Agentofchaos
Catastrophe Agentofchaos G

	agentofchaos: well done, good game
	zeder: Thank you for this games!


30657)
Started: 2016.11.9, Ended: 2017.1.16
Participants: Felix (S), zeder (N)
Winner: Felix

1) zeder: Homeworld R2 G3 B3

2) Felix: Homeworld R1 Y3 G3 *

3) zeder: Build B1 Zeder
	Draw5PlayAll: !!

4) Felix: Build G1 Felix

5) zeder: Trade B1 G1 Zeder

6) Felix: Discover G1 Felix B2 Signal

7) zeder: Build B1 Zeder

8) Felix: Build G1 Signal

9) zeder: Build G2 Zeder

10) Felix: Build G2 Signal

11) zeder: Trade G1 Y1 Zeder

12) Felix: Trade G2 Y2 Signal

13) zeder: Discover G2 Zeder Y1 Noise

14) Felix: Trade G1 B1 Signal

15) zeder: Trade B1 G1 Zeder

16) Felix: Move B1 Signal Felix

17) zeder: Build B1 Zeder

18) Felix: Build G1 Felix

19) zeder: Build G2 Noise

20) Felix: Sacrifice G3 Felix
Build G2 Felix
Build G3 Felix
Build G3 Signal

21) zeder: Discover G2 Noise Y2 Drone

22) Felix: Discover G2 Felix B2 Interference

23) zeder: Trade G1 R1 Zeder

24) Felix: Trade G3 R3 Signal

25) zeder: Trade B3 G3 Zeder

26) Felix: Build G1 Interference

27) zeder: Build B1 Zeder
	zeder: I feel like am being chokes!

28) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Felix
Build B3 Felix
	Felix: Sorry, I hope you can breathe soon! :)

29) zeder: Sacrifice G3 Zeder
Build G3 Noise
Build B3 Zeder
Pass

30) Felix: Discover B3 Felix Y2 Broadcast

31) zeder: Move B1 Zeder Noise

32) Felix: Build B3 Felix

33) zeder: Sacrifice G3 Noise
Build Y1 Zeder
Build Y3 Zeder
Build G3 Noise

34) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y3 Signal
Build R1 Signal

35) zeder: Sacrifice Y1 Zeder
Move R1 Zeder Noise
	zeder: I am never see this many ships in play at same time!

36) Felix: Discover R3 Signal Y1 Edge

37) zeder: Build R2 Noise
	Felix: It is quite a few! It becomes very difficult to keep track when there are this many.

38) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R2 Signal
Build R3 Edge

39) zeder: Move B3 Zeder Noise

40) Felix: Move R3 Edge Interference

41) zeder: Move B1 Noise Drone

42) Felix: Move B2 Felix Signal

43) zeder: Discover B1 Drone R3 Groo

44) Felix: Move B3 Felix Drone

45) zeder: Move B3 Noise Zeder

46) Felix: Sacrifice R1 Signal
Attack G2 Drone

47) zeder: Sacrifice Y3 Zeder
Move B1 Groo Signal
Move B1 Zeder Noise
Move B1 Noise Signal
Catastrophe Signal B

48) Felix: Build G1 Drone

49) zeder: Sacrifice G3 Noise
Build Y2 Zeder
Build Y3 Zeder
Build G3 Noise
	Felix: Nice!

50) Felix: Sacrifice G3 Felix
Build B1 Drone
Build R1 Edge
Build G3 Felix
	zeder: I had to simplify! :)

51) zeder: Discover G2 Noise B2 Oline

52) Felix: Trade G3 R3 Felix

53) zeder: Move R1 Noise Oline

54) Felix: Build G3 Felix

55) zeder: Sacrifice Y3 Zeder
Move R1 Oline Felix
Move R2 Noise Drone
Move R2 Drone Felix
Catastrophe Felix R

56) Felix: Sacrifice B3 Broadcast
Trade R3 Y3 Interference
Trade G2 Y2 Interference
Trade B3 Y3 Drone
	Felix: Oh I say. Well done.

57) zeder: Build G2 Oline

58) Felix: Trade G3 R3 Felix
	Draw5PlayAll: DoY attack!

Rare to see a sac of a B2 or B3.

59) zeder: Trade G2 R2 Oline

60) Felix: Build R1 Felix

61) zeder: Build R1 Oline

62) Felix: Sacrifice Y2 Interference
Move R1 Edge Oline
Move R1 Felix Oline
Catastrophe Oline Red

63) zeder: Trade G2 R2 Oline

64) Felix: Build Y2 Interference

65) zeder: Move G3 Noise Oline

66) Felix: Discover G2 Drone Y1 Rim

67) zeder: Build R1 Oline

68) Felix: Build G2 Interference
	Felix: Good defensive move!

69) zeder: Build R1 Oline

70) Felix: Sacrifice G2 Interference
Build B1 Drone
Build B2 Felix

71) zeder: Sacrifice Y2 Zeder
Move R1 Oline Felix
Move R2 Oline Felix

72) Felix: Sacrifice G2 Rim
Build B3 Drone
Build B3 Felix

73) zeder: Attack B2 Felix

74) Felix: Sacrifice R3 Felix
Attack R2 Felix
Attack R1 Felix
Attack B2 Felix

75) zeder: Build G2 Oline

76) Felix: Sacrifice Y3 Interference
Move B3 Drone Edge
Move B3 Edge Zeder
Move R3 Edge Zeder

	zeder: Sch***e!!!  Thanks you for an great game!
	Felix: Good game, thanks for playing!


30686)
Variants: "Hard time"
Started: 2016.11.10, Ended: 2016.11.10
Participants: agentofchaos (S), Aristos (N)
Winner: agentofchaos

1) Aristos: Homeworld Y2 B3 G3

2) agentofchaos: Homeworld Y1 B2 G3

3) Aristos: Build G1 Aristos

4) agentofchaos: Build G1 Agentofchaos

5) Aristos: Discover G1 Aristos B1 Spark

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) Aristos: Build G1 Aristos

8) agentofchaos: Build Y1 Agentofchaos

9) Aristos: Trade G3 Y3 Aristos

	Aristos: Completely stupid on opening. My brain is still addled by election. Sorry to waste your time. 


30689)
Started: 2016.11.10, Ended: 2016.12.2
Participants: zeder (S), Joe_Hill (N)
Winner: zeder

1) Joe_Hill: Homeworld B3 Y1 G3

2) zeder: Homeworld B2 G3 Y3

3) Joe_Hill: Build G1 Joe_hill
	zeder: I am also beginner!
	Joe_Hill: Cool. This is only my second game.

4) zeder: Build Y1 Zeder

5) Joe_Hill: Build G1 Joe_hill

6) zeder: Build Y1 Zeder

7) Joe_Hill: Discover G1 Joe_hill B2 Car

8) zeder: Discover Y1 Zeder B1 Doop

9) Joe_Hill: Build G1 Car

10) zeder: Trade Y3 G3 Zeder

11) Joe_Hill: Build G2 Joe_hill

12) zeder: Build G2 Zeder

13) Joe_Hill: Trade G2 Y2 Joe_hill

14) zeder: Move G2 Zeder Doop

15) Joe_Hill: Build Y2 Joe_hill

16) zeder: Trade G2 Y2 Doop

17) Joe_Hill: Move Y2 Joe_hill Car

18) zeder: Build Y3 Zeder

19) Joe_Hill: Build Y3 Car

20) zeder: Discover Y1 Doop G2 Gloop

21) Joe_Hill: Trade Y3 R3 Car

22) zeder: Trade Y1 R1 Zeder

23) Joe_Hill: Move R3 Car Doop

24) zeder: Sacrifice Y3 Zeder
Move Y2 Doop Gloop
Move Y1 Gloop Joe_hill
Move Y2 Gloop Joe_hill
Catastrophe Joe_hill Y

25) Joe_Hill: Move Y2 Car Doop

26) zeder: Build R1 Zeder
	Joe_Hill: ouch!

27) Joe_Hill: Trade G1 Y1 Joe_hill

28) zeder: Trade R1 Y1 Zeder

29) Joe_Hill: Build G1 Joe_hill

30) zeder: Build R1 Zeder

31) Joe_Hill: Build G2 Car

32) zeder: Discover R1 Zeder Y1 Mancala

33) Joe_Hill: Trade G1 R1 Joe_hill

34) zeder: Build R2 Zeder

35) Joe_Hill: Trade G2 Y2 Car

36) zeder: Move R2 Zeder Mancala

37) Joe_Hill: Build R2 Joe_hill

38) zeder: Trade R1 B1 Zeder

39) Joe_Hill: Move R3 Doop Zeder

40) zeder: Sacrifice R1 Mancala
Attack R3 Zeder

41) Joe_Hill: Move G1 Car Doop

42) zeder: Move R3 Zeder Doop

43) Joe_Hill: Build G1 Doop
	Joe_Hill: Shit. I didn't realize you could do that.

	zeder: I didn't think of it until I needed it and wow did I needs it!
	Draw5PlayAll: Hey. Don't curse.

44) zeder: Attack Y2 Doop

45) Joe_Hill: Sacrifice Y2 Car
Move G1 Doop Zeder
Move G1 Doop Zeder
Catastrophe Zeder G

46) zeder: Move R3 Doop Zeder

47) Joe_Hill: Build G1 Car

48) zeder: Move R2 Mancala Car

49) Joe_Hill: Move R2 Joe_hill Doop

50) zeder: Discover Y2 Doop R3 Bowie

51) Joe_Hill: Trade G1 Y1 Car

52) zeder: Attack G1 Car

53) Joe_Hill: Move Y1 Car Doop

54) zeder: Trade B1 G1 Zeder

55) Joe_Hill: Build G1 Joe_hill

56) zeder: Build G2 Car

57) Joe_Hill: Move G1 Joe_hill Doop

58) zeder: Build Y2 Zeder



30697)
Started: 2016.11.11, Ended: 2016.11.21
Participants: ratpfink (S), Joe_Hill (N)
Winner: ratpfink

1) Joe_Hill: Homeworld G2 Y1 B3

2) ratpfink: Homeworld G3 B2 Y3

3) Joe_Hill: Build B1 Joe_hill

4) ratpfink: Build Y1 Ratpfink
	Joe_Hill: I think green opening star might be less than optimal...
	ratpfink: Yeah, not sure. If you have any red in your opening homeworld system SDG yells at you about it.

5) Joe_Hill: Build B1 Joe_hill
	Joe_Hill: I saw that on the wiki. System message for Noobs. 


6) ratpfink: Build Y1 Ratpfink

7) Joe_Hill: Trade B1 G1 Joe_hill
	Draw5PlayAll: ...I use red stars in absolutely every game and I never got a yell...

8) ratpfink: Build Y2 Ratpfink
	Joe_Hill: Draw 5, in your homeworld?

9) Joe_Hill: Build G1 Joe_hill
	Draw5PlayAll: Yes. Mostly because I like to have a defense system to repel attacks, as well as develop yellow ships without fear of them dying.

10) ratpfink: Trade Y2 B2 Ratpfink

11) Joe_Hill: Discover G1 Joe_hill Y3 Bat

12) ratpfink: Discover Y1 Ratpfink B1 Rolo

13) Joe_Hill: Build G1 Joe_hill

14) ratpfink: Move Y3 Ratpfink Rolo

15) Joe_Hill: Build G2 Bat

16) ratpfink: Trade Y3 R3 Rolo

17) Joe_Hill: Trade B3 R3 Joe_hill

18) ratpfink: Move R3 Rolo Bat

19) Joe_Hill: Move G2 Bat Rolo

20) ratpfink: Attack G1 Bat

21) Joe_Hill: Trade G1 R1 Joe_hill

22) ratpfink: Build Y2 Ratpfink

23) Joe_Hill: T G2 R2 Rolo

24) ratpfink: Trade B2 R2 Ratpfink

25) Joe_Hill: Attack Y1 Rolo

26) ratpfink: Move R3 Bat Rolo

27) Joe_Hill: Move R2 Rolo Bat

28) ratpfink: Move G1 Bat Rolo

29) Joe_Hill: Move G1 Joe_hill Bat

30) ratpfink: Attack Y1 Rolo

31) Joe_Hill: Move R3 Joe_hill Bat

32) ratpfink: Build R1 Rolo

33) Joe_Hill: Build G1 Bat

34) ratpfink: Build Y2 Rolo

35) Joe_Hill: Move G1 Bat Joe_hill

36) ratpfink: Build G2 Rolo

37) Joe_Hill: Build B1 Joe_hill

38) ratpfink: Build Y2 Ratpfink

39) Joe_Hill: M B1 Joe_hill Bat
	Joe_Hill: This shit is a mess Karl.

40) ratpfink: Sacrifice Y2 Ratpfink
Move G2 Rolo Bat
Move G2 Bat Joe_hill

41) Joe_Hill: Build B2 Joe_hill
	Joe_Hill: I can't move at all.
	Joe_Hill: I can move. Obviously. Just not the way I need to.

42) ratpfink: Build G2 Joe_hill
Catastrophe Joe_hill G

43) Joe_Hill: Trade B2 G2 Joe_hill

44) ratpfink: Sacrifice Y2 Rolo
Move R3 Rolo Bat
Move R3 Bat Joe_hill

45) Joe_Hill: Move R2 Bat Joe_hill
	Joe_Hill: Sweet jesus

46) ratpfink: Attack G2 Joe_hill

47) Joe_Hill: Move R3 Bat Joe_hill
Catastrophe Joe_hill R

48) ratpfink: Sacrifice Y2 Ratpfink
Move R1 Rolo Bat
Move R1 Bat Joe_hill

	Joe_Hill: pffffft


30696)
Started: 2016.11.11, Ended: 2016.11.13
Participants: Joe_Hill (S), ratpfink (N)
Winner: Joe_Hill

1) ratpfink: Homeworld R1 G2 B3

2) Joe_Hill: Homeworld B2 Y1 G3

3) ratpfink: Build B1 Ratpfink

4) Joe_Hill: Build G1 Joe_hill

5) ratpfink: Build B1 Ratpfink

6) Joe_Hill: Build G1 Joe_hill

7) ratpfink: Build B1 Ratpfink

8) Joe_Hill: Build G1 Joe_hill
Catastrophe Ratpfink B

	Joe_Hill: LOL. I don't have to be in system to call a catastrophe.
	Draw5PlayAll: What is weirder is that your own base had 4 greens and nothing else.
	Joe_Hill: I was about to trade for something else when I saw the potential to test the rule. 
	ratpfink: We just didn't understand the rules...
	Joe_Hill: He'll we still don't! Lol
	Joe_Hill: Hell. Cell phone autocorrect


30680)
Started: 2016.11.11, Ended: 2016.12.30
Participants: Felix (S), agents17 (N)
Winner: Felix

1) agents17: Homeworld R2 B1 G3

2) Felix: Homeworld B1 G3 B3 *

3) agents17: Build G1 Agents17
	Felix: Hey, welcome! First game?

4) Felix: Build B1 Felix

5) agents17: Build G1 Agents17
	agents17: Indeed, anything I ought to know?

6) Felix: Trade B3 Y3 Felix
	Felix: If I think of anything, I'll let you know! So far, you're looking good. Swapping for a yellow soon would be wise, and then moving some ships out to create space so you can try to build up your armada as quickly as possible. Try to diversify your colors as quickly as possible so you have a nice balance across multiple systems. I like to not have more than 2 of the same color in a system for more than a turn if I can help it.

7) agents17: Trade G1 Y1 Agents17
	Felix: I did a sneaky maneuver here at the start to prevent you from getting any of the small blues, so you won't be able to trade for them until you get a medium ship, unless you wanted to trade away your g3, which is not really recommended.

8) Felix: Build B2 Felix
	Draw5PlayAll: It could have backfired!!

9) agents17: Discover G1 Agents17 B3 Alpha

10) Felix: Trade B2 G2 Felix
	agents17: Thanks for the advice. Also, is Draw5playAll watching?
	Felix: You're welcome! Yeah, I think anyone who wants to can watch any of the games, and he seems to like to stalk on other players more than most :)

@Draw5 - It could only have backfired if I made a mistake, but I've done this maneuver a few times and it usually works out!

11) agents17: Build G1 Agents17
	Draw5PlayAll: I selected the option to watch every game of I think 3 different games. If there is a chat message sometimes I reply.

12) Felix: Build B2 Felix

13) agents17: Build G1 Alpha

14) Felix: Trade B2 R2 Felix

15) agents17: Discover G1 Agents17 B3 Beta

16) Felix: Build B2 Felix
	Felix: Good work spreading out a lot of greens in various systems. This gives you potential to take over most of the green pieces, and the ability to trade them for others

17) agents17: Build G2 Agents17

18) Felix: Discover G2 Felix B2 Omega

19) agents17: Discover G2 Agents17 B3 Gamma

20) Felix: Build Y1 Felix

21) agents17: Build Y1 Agents17

22) Felix: Trade Y3 G3 Felix
	Draw5PlayAll: So many oceanic planets.
	Felix: Pretty smart, actually. agents17 soaked up all the blue larges before I could get them.

23) agents17: Move Y1 Agents17 Alpha

24) Felix: Build G2 Omega

25) agents17: Build Y2 Alpha

26) Felix: Move B2 Felix Omega

27) agents17: Trade Y2 B2 Alpha

28) Felix: Build Y2 Felix



30715)
Started: 2016.11.14, Ended: 2016.11.21
Participants: ratpfink (S), Joe_Hill (N)
Winner: ratpfink

1) Joe_Hill: H B2 Y1 G3

2) ratpfink: Homeworld R3 B2 G3

3) Joe_Hill: Build G1 Joe_hill

4) ratpfink: Build G1 Ratpfink

5) Joe_Hill: Build G1 Joe_hill

6) ratpfink: Build G2 Ratpfink

7) Joe_Hill: T G1 B1 Joe_hill

8) ratpfink: Trade G1 B1 Ratpfink

9) Joe_Hill: Build B1 Joe_hill

10) ratpfink: Build B2 Ratpfink

11) Joe_Hill: Trade B1 Y1 Joe_hill

12) ratpfink: Trade B2 Y2 Ratpfink

13) Joe_Hill: Build Y1 Joe_hill

14) ratpfink: Build Y2 Ratpfink

15) Joe_Hill: Discover Y1 Joe_hill R3 Fat

16) ratpfink: Discover Y2 Ratpfink G1 Eat

17) Joe_Hill: Move G1 Joe_hill Fat

18) ratpfink: Build Y2 Eat

19) Joe_Hill: B Y3 Joe_hill

20) ratpfink: Sacrifice Y2 Eat
Move Y2 Eat Fat
Move Y2 Fat Joe_hill
Catastrophe Joe_hill Y

21) Joe_Hill: Build G1 Joe_hill

22) ratpfink: Trade G3 R3 Ratpfink
	ratpfink: boom
	Joe_Hill: blergh

23) Joe_Hill: Trade G1 Y1 Joe_hill
	Joe_Hill: This is the problem I have with online gaming. I tend to not pay as close of attention as I should. 

24) ratpfink: Discover R3 Ratpfink Y1 Deathstar

25) Joe_Hill: B B1 Joe_hill

26) ratpfink: Move R3 Deathstar Joe_hill

27) Joe_Hill: Discover B1 Joe_hill Y1 Bad

28) ratpfink: Attack G3 Joe_hill
	Joe_Hill: hmm. what now.

29) Joe_Hill: Move B1 Joe_hill Bad

30) ratpfink: Attack Y1 Joe_hill



30290)
Variants: "Hard time"
Started: 2016.11.18, Ended: 2017.1.2
Participants: Felix (S), agentofchaos (N), Draw5PlayAll (E)
Winner: Draw5PlayAll

1) agentofchaos: Homeworld B1 R2 G3

2) Draw5PlayAll: Homeworld R1 B3 G3
	agentofchaos: Enjoy the game, everyone
	Draw5PlayAll: ?

3) Felix: Homeworld Y2 B3 G3
	Felix: Thanks! Have fun!

4) agentofchaos: Build G1 Agentofchaos

5) Draw5PlayAll: Build G1 Draw5playall

6) Felix: Build G1 Felix

7) agentofchaos: Trade G1 Y1 Agentofchaos

8) Draw5PlayAll: Trade G1 Y1 Draw5playall

9) Felix: Trade G1 Y1 Felix

10) agentofchaos: Build G1 Agentofchaos

11) Draw5PlayAll: Build G1 Draw5playall

12) Felix: Build G1 Felix

13) agentofchaos: Trade G1 B1 Agentofchaos

14) Draw5PlayAll: Trade G1 B1 Draw5playall

15) Felix: Trade G1 B1 Felix

16) agentofchaos: Build B2 Agentofchaos

17) Draw5PlayAll: Build B2 Draw5playall

18) Felix: Build B2 Felix

19) agentofchaos: Build G1 Agentofchaos
	Felix: Trading assets seem to be in high demand, so we are investing as much as we can in them...
	Draw5PlayAll: This is 2/1/5 but some players have 5d:12h etc

20) Draw5PlayAll: Trade B2 R2 Draw5playall
	agentofchaos: That is odd about the time

21) Felix: Trade B2 R2 Felix
	Felix: I think it depends on how quickly you take your turn. You get time added each time you move but I think it took me a couple days to make a move so I have less time.

22) agentofchaos: Trade B2 R2 Agentofchaos

23) Draw5PlayAll: Build B2 Draw5playall
	Draw5PlayAll: Copycats...

24) Felix: Discover B1 Felix G1 Grinch

25) agentofchaos: Build B2 Agentofchaos

26) Draw5PlayAll: Discover B2 Draw5playall G2 G2

27) Felix: Build B2 Grinch

28) agentofchaos: Discover B2 Agentofchaos Y3 Oolon

29) Draw5PlayAll: Build G1 Draw5playall

30) Felix: Trade B2 Y2 Grinch

31) agentofchaos: Sacrifice G1 Agentofchaos
Build B2 Oolon

32) Draw5PlayAll: Move R2 Draw5playall G2

33) Felix: Build G1 Felix

34) agentofchaos: Move R2 Agentofchaos Oolon

35) Draw5PlayAll: Build R1 G2

36) Felix: Build R1 Felix

37) agentofchaos: Trade B2 G2 Oolon

38) Draw5PlayAll: Discover G1 Draw5playall B2 B2

39) Felix: Move R1 Felix Grinch

40) agentofchaos: Trade B1 R1 Agentofchaos

41) Draw5PlayAll: Trade R1 Y1 G2

42) Felix: Sacrifice G3 Felix
Build R1 Felix
Build R3 Felix
Build R3 Grinch

43) agentofchaos: Sacrifice G2 Oolon
Build Y2 Agentofchaos
Build R3 Oolon

44) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 G2
Build R3 G2
Build Y3 Draw5playall
	Draw5PlayAll: This from some one who is not a "go with the crowd" type. (My next move)

45) Felix: Trade R3 G3 Felix

46) agentofchaos: Trade R2 G2 Oolon

47) Draw5PlayAll: Trade Y3 G3 Draw5playall

48) Felix: Build Y3 Grinch

49) agentofchaos: Build B1 Oolon

50) Draw5PlayAll: Build Y3 Draw5playall

51) Felix: Move Y3 Grinch B2

52) agentofchaos: Build Y3 Agentofchaos

53) Draw5PlayAll: Discover Y1 G2 G1 G1

54) Felix: Sacrifice R1 Felix
Attack G1E B2

55) agentofchaos: Discover Y3 Agentofchaos R3 Crashzone

56) Draw5PlayAll: Build G2 Draw5playall

57) Felix: Sacrifice G3 Felix
Build G2 B2
Build G3 Felix
Build G3 B2

58) agentofchaos: Move G2 Oolon B2
Catastrophe B2 G

59) Draw5PlayAll: Discover G2 Draw5playall R2 R2

60) Felix: Sacrifice Y2 Grinch
Move R3 Grinch Oolon
Move Y3 B2 Oolon
	Draw5PlayAll: Duj paw DeSDu' yuQmey SuvwI'.

61) agentofchaos: Sacrifice Y2 Agentofchaos
Move R3 Oolon Grinch
Move B2 Oolon Grinch
	Felix: What is this black tongue we hear echoing across the cosmos?
	Draw5PlayAll: Hoch neH ghob SoH SoH!

62) Draw5PlayAll: Build Y2 G1

63) Felix: S R1 Grinch
A B1N Oolon

64) Draw5PlayAll: Sacrifice Y2 G2
Move Y3 Draw5playall R2
Move Y3 R2 Grinch

65) Felix: Move Y3 Oolon Agentofchaos
	Draw5PlayAll: *AGAIN*???

66) Draw5PlayAll: Sacrifice R2 G2
Attack B1S Grinch
Attack R3N Grinch

67) Felix: Attack G3N Agentofchaos
	Felix: Bummer :/

68) Draw5PlayAll: Build Y2 Draw5playall

69) Felix: Move G3 Agentofchaos Crashzone

70) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 G1 Felix
Move Y2 G1 Felix
Catastrophe Felix Yellow

71) Felix: Sacrifice G1 Felix
Build B2 Oolon

72) Draw5PlayAll: Move B1 Grinch Felix

73) Felix: Attack B1E Felix
	Felix: Nice one!
	Draw5PlayAll: Nice try.

74) Draw5PlayAll: Sacrifice Y3 Grinch
Move B1 Draw5playall R2
Move B1 R2 Felix
Move B2 G2 Felix
Catastrophe Felix Blue

	Draw5PlayAll: Good game! Even though aoc ruined it a bit...
	agentofchaos: Sorry about that, was very busy over the last few days and lost track of my time :(


30712)
Started: 2016.11.18, Ended: 2016.11.29
Participants: agentofchaos (S), Joe_Hill (N)
Winner: agentofchaos

1) Joe_Hill: Homeworld B2 Y1 G3

2) agentofchaos: Homeworld R1 B3 G3

3) Joe_Hill: B G1 Joe_hill

4) agentofchaos: Build G1 Agentofchaos

5) Joe_Hill: Trade G1 Y1 Joe_hill

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) Joe_Hill: B G1 Joe_hill

8) agentofchaos: Build Y2 Agentofchaos

9) Joe_Hill: B Y2 Joe_hill

10) agentofchaos: Build Y2 Agentofchaos

11) Joe_Hill: D Y2 Joe_hill G3 Flat

12) agentofchaos: Trade Y1 G1 Agentofchaos

13) Joe_Hill: Trade G1 B1 Joe_hill

14) agentofchaos: Discover Y2 Agentofchaos G2 Omegahedron

15) Joe_Hill: Build G1 Joe_hill

16) agentofchaos: Build Y1 Agentofchaos

17) Joe_Hill: Build Y3 Flat

18) agentofchaos: Build Y3 Omegahedron

19) Joe_Hill: Move B1 Joe_hill Flat

20) agentofchaos: Trade G1 B1 Agentofchaos

21) Joe_Hill: Trade Y3 R3 Flat

22) agentofchaos: Sacrifice B1 Agentofchaos
Trade Y3 R3 Omegahedron

23) Joe_Hill: Build Y3 Flat

24) agentofchaos: Build Y3 Omegahedron

25) Joe_Hill: Discover Y3 Flat B2 Stat

26) agentofchaos: Discover Y3 Omegahedron R3 Satrap

27) Joe_Hill: Move R3 Flat Stat

28) agentofchaos: Build Y3 Omegahedron

29) Joe_Hill: Move Y2 Flat Stat

30) agentofchaos: Move Y2 Omegahedron Flat

31) Joe_Hill: Move G1 Joe_hill Flat

32) agentofchaos: Move R3 Omegahedron Flat

33) Joe_Hill: Build G1 Joe_hill

34) agentofchaos: Attack G1 Flat

35) Joe_Hill: Trade G1 R1 Joe_hill

36) agentofchaos: Attack B1 Flat

37) Joe_Hill: Build G1 Joe_hill

38) agentofchaos: Sacrifice Y2 Agentofchaos
Move Y2 Flat Joe_hill
Move Y3 Satrap Joe_hill
Catastrophe Joe_hill Y

39) Joe_Hill: Trade G3 R3 Joe_hill

40) agentofchaos: Build B1 Flat

41) Joe_Hill: Build G1 Joe_hill

42) agentofchaos: Trade G1 B1 Flat

	Joe_Hill: Good game


30700)
Started: 2016.11.20, Ended: 2016.12.22
Participants: dragon76n (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 R3 G3
	dragon76n: homeworld g2 b1 y3
	dragon76n: If this is the message area, hello! It's been nearly a year since I've been on this site, but I'm looking forward to playing some games on here again. 
	Draw5PlayAll: That was the message area. The move area should be on the top left. If it is not, then it is not your turn.

2) dragon76n: Homeworld G2 B1 Y3
	Felix: Hello! Welcome back! I'm happy to make your acquaintance and I hope you have fun :)

3) Felix: Build G1 Felix

4) dragon76n: B Y1 Dragon76n

5) Felix: Trade G1 Y1 Felix

6) dragon76n: T Y1 G1 Dragon76n

7) Felix: Build G1 Felix

8) dragon76n: B Y1 Dragon76n

9) Felix: Trade G1 B1 Felix

10) dragon76n: B G1 Dragon76n

11) Felix: Build G1 Felix

12) dragon76n: Trade G1 B1 Dragon76n

13) Felix: Discover B1 Felix G1 Grinch

14) dragon76n: B G2 Dragon76n

15) Felix: Build B2 Grinch

16) dragon76n: D G1 Dragon76n R3 Redthr

17) Felix: Trade B2 Y2 Grinch

18) dragon76n: B B2 Dragon76n

19) Felix: Build B2 Grinch

20) dragon76n: T B1 R1 Dragon76n

21) Felix: Trade B2 R2 Grinch

22) dragon76n: Build G2 Redthr

23) Felix: Discover G1 Felix B1 Ridge

24) dragon76n: D B2 Dragon76n G3 Grethr

25) Felix: Build G3 Ridge

26) dragon76n: Move Y1 Dragon76n Redthr

27) Felix: Sacrifice G3 Ridge
Build G3 Ridge
Build Y1 Grinch
Build R1 Grinch

28) dragon76n: B Y2 Redthr

29) Felix: Sacrifice Y1 Grinch
Move G3 Ridge Grethr

30) dragon76n: M G2 Redthr Ridge

31) Felix: Sacrifice R1 Grinch
Attack B2 Grethr

32) dragon76n: Sacrifice G2 Dragon76n
Build G2 Redthr
Build R1 Dragon76n

33) Felix: Sacrifice G3 Grethr
Build G3 Felix
Build B2 Grinch
Build B3 Grethr

34) dragon76n: S R1 Dragon76n
A G1 Ridge

35) Felix: Trade G3 Y3 Felix

36) dragon76n: B G3 Redthr

37) Felix: Build B3 Grethr

38) dragon76n: Discover G3 Redthr R1 Redone

39) Felix: Build B3 Grinch

40) dragon76n: Move G1 Redthr Redone

41) Felix: Sacrifice Y2 Grinch
Move B3 Grethr Dragon76n
Move B3 Grethr Dragon76n

42) dragon76n: S G3 Redone
B G3 Redthr
B R1 Dragon76n
B R2 Dragon76n

43) Felix: Sacrifice R2 Grinch
Attack Y3 Dragon76n
Attack R2 Dragon76n

44) dragon76n: Sacrifice Y2 Redthr
Move G1 Ridge Felix
Move G2 Ridge Felix

45) Felix: Sacrifice R2 Dragon76n
Attack R1 Dragon76n
Attack R1 Dragon76n
	Felix: I think that's about it. Good game! You played well and I hope I've been able to help you de-rust a bit and relearn some tricks. I'd love to rematch any time!

	dragon76n: Thanks for playing. I had fun. 


30746)
Variants: "Hard time"
Started: 2016.11.21, Ended: 2017.2.28
Participants: Draw5PlayAll (S), Grosseteste (N)
Winner: Draw5PlayAll

1) Grosseteste: Homeworld Y1 B2 G3

2) Draw5PlayAll: Homeworld B1 R3 G3
	Grosseteste: Looking forward to it, thanks for the challenge!

3) Grosseteste: Build G1 Grosseteste

4) Draw5PlayAll: Build G1 Draw5playall

5) Grosseteste: D G1 Grosseteste Y3 Charlie

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Grosseteste: Build G1 Grosseteste

8) Draw5PlayAll: Build Y1 Draw5playall

9) Grosseteste: Trade G1 B1 Grosseteste

10) Draw5PlayAll: Trade Y1 B1 Draw5playall

11) Grosseteste: Build B2 Grosseteste
	Draw5PlayAll: Hello, it is your turn.

12) Draw5PlayAll: Discover B1 Draw5playall G2 G2

13) Grosseteste: T B2 Y2 Grosseteste

14) Draw5PlayAll: Build B2 G2

15) Grosseteste: Build G1 Grosseteste

16) Draw5PlayAll: Build G1 Draw5playall

17) Grosseteste: Build G2 Charlie

18) Draw5PlayAll: Discover G1 Draw5playall B2 B2

19) Grosseteste: Build B3 Grosseteste

20) Draw5PlayAll: Build G2 Draw5playall

21) Grosseteste: B G3 Grosseteste

22) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 Draw5playall
Build Y2 Draw5playall
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass

23) Grosseteste: Sacrifice Y2 Grosseteste
Discover G3 Grosseteste Y3 Lucy
Discover B3 Grosseteste Y3 Schroeder
	Draw5PlayAll: this is so slow!!!

24) Draw5PlayAll: Build B3 G2
	Grosseteste: Sorry, I usually move slowly, and it being this time of the year doesn't help.

25) Grosseteste: Move B3 Schroeder G2
Catastrophe G2 Blue

26) Draw5PlayAll: Build G2 B2
	Draw5PlayAll: Oh, a green!

27) Grosseteste: Build B1 Grosseteste

28) Draw5PlayAll: Move Y1 Draw5playall B2

29) Grosseteste: Sacrifice B1 Grosseteste
Trade G2 Y2 Charlie

30) Draw5PlayAll: Sacrifice G2 Draw5playall
Build Y2 Draw5playall
Build Y3 B2

31) Grosseteste: Discover Y2 Charlie R2 Rerun

32) Draw5PlayAll: Trade Y2 B2 Draw5playall

33) Grosseteste: Move B1 Grosseteste Charlie

34) Draw5PlayAll: Discover B2 Draw5playall G2 G2

35) Grosseteste: Trade G1 B1 Grosseteste

36) Draw5PlayAll: Build B3 G2

37) Grosseteste: Build B3 Charlie

38) Draw5PlayAll: Build Y2 B2

39) Grosseteste: Move B1 Charlie Rerun

40) Draw5PlayAll: Discover Y2 B2 B3 B3

41) Grosseteste: Build G1 Charlie

42) Draw5PlayAll: Trade G1 R1 B2

43) Grosseteste: Trade G1 R1 Charlie

44) Draw5PlayAll: Move Y1 Draw5playall G2

45) Grosseteste: Sacrifice G3 Lucy
Build G1 Charlie
Build G1 Grosseteste
Build Y3 Rerun

46) Draw5PlayAll: Move G2 B2 B3

47) Grosseteste: Trade G1 R1 Grosseteste

48) Draw5PlayAll: Build G1 Draw5playall

49) Grosseteste: Move G1 Charlie Rerun

50) Draw5PlayAll: Sacrifice G1 Draw5playall
Build R2 B2

51) Grosseteste: Build G1 Grosseteste

52) Draw5PlayAll: Discover B2 G2 G3 G3

53) Grosseteste: Discover B1 Grosseteste R3 Lucy

54) Draw5PlayAll: Move Y1 G2 G3

55) Grosseteste: Sacrifice G3 Grosseteste
Build G2 Rerun
Build G3 Grosseteste
Build R2 Charlie

56) Draw5PlayAll: Discover Y1 B2 R3 R3

57) Grosseteste: S Y3 Rerun
M Y2 Rerun Draw5playall
M G2 Rerun Draw5playall
M G1 Rerun Draw5playall

58) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move B3 G2 Draw5playall
Move Y1 R3 Grosseteste
	Draw5PlayAll: If this fails, which it will, you have nothing to show.

	Babamots: I think he's got you, Gross. But I like the Peanuts systems!
	Grosseteste: I think it's likely too.  But I want to take a look at it after my flu lifts.  At the moment I can say I totally missed the possibility of the b3 moving to the homeworld.
	Grosseteste: OK, another look does not reveal a positive way forward for me, sorry to make you wait for it, good game!
	Draw5PlayAll: Good game.


30744)
Started: 2016.11.21, Ended: 2017.1.23
Participants: dragon76n (S), zeder (N)
Winner: dragon76n

1) zeder: Homeworld G3 B2 Y3

2) dragon76n: Homeworld B3 Y2 G3

3) zeder: Build Y1 Zeder

4) dragon76n: Build G1 Dragon76n

5) zeder: Trade Y1 G1 Zeder

6) dragon76n: T G1 Y1 Dragon76n

7) zeder: Build G1 Zeder

8) dragon76n: Build Y1 Dragon76n

9) zeder: Discover G1 Zeder Y1 Poker

10) dragon76n: T Y1 R1 Dragon76n

11) zeder: Trade G1 R1 Zeder

12) dragon76n: B G1 Dragon76n

13) zeder: Trade R1 B1 Zeder

14) dragon76n: Move R1 Dragon76n Poker
	dragon76n: m r1 dragon76n Poker

15) zeder: Discover G1 Poker Y2 Gin
	dragon76n: Apparently I've mixed up my Message form with my Command form again... :D

16) dragon76n: Trade G1 B1 Dragon76n

17) zeder: Trade B1 R1 Zeder

18) dragon76n: Build G1 Dragon76n

19) zeder: Build Y1 Zeder

20) dragon76n: M G1 Dragon76n Poker

21) zeder: Build Y2 Zeder

22) dragon76n: M Y1 Dragon76n Poker

23) zeder: Move Y2 Zeder Poker

24) dragon76n: M R1 Poker Gin

25) zeder: Sacrifice R1 Zeder
Attack R1 Gin

26) dragon76n: Move Y1 Poker Zeder

27) zeder: Trade Y1 R1 Zeder

28) dragon76n: B Y1 Zeder

29) zeder: Attack Y1 Zeder

30) dragon76n: B Y3 Zeder
C Zeder Yellow

31) zeder: Build R1 Zeder

32) dragon76n: Discover G1 Poker B2 Blutwo

33) zeder: Build R2 Zeder

34) dragon76n: B B1 Dragon76n

35) zeder: Build R2 Gin

36) dragon76n: T B1 Y1 Dragon76n

37) zeder: Build R2 Gin

38) dragon76n: T G3 R3 Dragon76n

39) zeder: Discover R2 Gin Y1 Hearts

40) dragon76n: Sacrifice G1 Blutwo
Build R3 Dragon76n

41) zeder: Build R3 Gin

42) dragon76n: Move R3 Dragon76n Poker

43) zeder: Move Y2 Poker Zeder

44) dragon76n: M R3 Poker Zeder
C Zeder Red
	zeder: Oh no!

45) zeder: Move R3 Gin Hearts

46) dragon76n: T B1 G1 Dragon76n

47) zeder: Build Y1 Zeder

48) dragon76n: Discover Y1 Dragon76n G1 Greone

49) zeder: Trade Y2 G2 Zeder

50) dragon76n: Build Y2 Greone

51) zeder: Move R2 Gin Greone

52) dragon76n: Build Y3 Greone

53) zeder: Move Y1 Zeder Greone
Catastrophe Greone Y

54) dragon76n: Build G2 Dragon76n

55) zeder: Move G1 Gin Hearts

56) dragon76n: Trade G2 Y2 Dragon76n

57) zeder: Build G2 Hearts

58) dragon76n: B Y1 Dragon76n

59) zeder: Move R1 Gin Greone

60) dragon76n: Discover Y2 Dragon76n R1 Redone

61) zeder: Trade G2 Y2 Zeder

62) dragon76n: Build G2 Dragon76n

63) zeder: Move R3 Hearts Zeder

64) dragon76n: Move G1 Dragon76n Redone

65) zeder: Build R1 Hearts

66) dragon76n: B G2 Redone

67) zeder: Sacrifice Y2 Zeder
Move R2 Greone Dragon76n
Move R1 Greone Dragon76n

68) dragon76n: Sacrifice R3 Dragon76n
Attack R2 Dragon76n
Attack R1 Dragon76n
Pass

69) zeder: Build R2 Zeder

70) dragon76n: D G2 Redone Y2 Yeltwo

71) zeder: Trade R2 B2 Zeder

72) dragon76n: Build G1 Dragon76n

73) zeder: Discover G2 Hearts B2 Steak

74) dragon76n: B Y1 Redone

75) zeder: Build G3 Steak

76) dragon76n: B G3 Redone

77) zeder: Sacrifice G3 Steak
Build G3 Hearts
Build R2 Zeder
Build R3 Zeder

78) dragon76n: Sacrifice Y2 Redone
Move R1 Dragon76n Redone
Move R1 Redone Zeder
Catastrophe Zeder Red

79) zeder: Move G3 Hearts Dragon76n

80) dragon76n: M G1 Redone Dragon76n
C Dragon76n Green



30759)
Variants: "Hard time"
Started: 2016.11.22, Ended: 2016.12.14
Participants: Subhan64 (S), Salmonax (N)
Winner: Salmonax

1) Salmonax: Homeworld G1 Y3 B3

2) Subhan64: Homeworld Y2 G1 B3

3) Salmonax: Build B1 Salmonax

4) Subhan64: Build B1 Subhan64
	Salmonax: Good luck, have fun!

5) Salmonax: Trade B1 G1 Salmonax
	Subhan64: thanks, u2


6) Subhan64: Trade B3 G3 Subhan64

7) Salmonax: Build G2 Salmonax

8) Subhan64: Build G2 Subhan64

9) Salmonax: Discover G2 Salmonax B2 Fiddle

10) Subhan64: Discover G2 Subhan64 Y3 Bb

11) Salmonax: Trade G1 R1 Salmonax

12) Subhan64: Build G1 Subhan64

13) Salmonax: Build B1 Salmonax

14) Subhan64: Sacrifice G3 Subhan64
Build G2 Bb
Build G3 Subhan64
Build G3 Bb

15) Salmonax: Build G3 Fiddle

16) Subhan64: Discover G2 Bb B2 Cm

17) Salmonax: Trade B3 Y3 Salmonax

18) Subhan64: Sacrifice G1 Subhan64
Build G1 Cm

19) Salmonax: Build Y1 Salmonax

20) Subhan64: Trade G2 Y2 Cm

21) Salmonax: Move Y1 Salmonax Fiddle

22) Subhan64: Sacrifice G2 Bb
Build G2 Cm
Build G2 Cm

23) Salmonax: Move G3 Fiddle Bb

24) Subhan64: Move G1 Cm Salmonax

25) Salmonax: Move G3 Bb Subhan64

26) Subhan64: Trade G3 R3 Subhan64

27) Salmonax: Sacrifice R1 Salmonax
Attack R3 Subhan64

28) Subhan64: Sacrifice Y2 Cm
Move G2 Cm Salmonax
Move G2 Cm Salmonax
Catastrophe Salmonax Green

29) Salmonax: Attack B1 Subhan64

	Salmonax: Gg


30758)
Variants: "Hard time"
Started: 2016.11.23, Ended: 2016.12.14
Participants: dlwillson (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B2 G3

2) dlwillson: Homeworld B3 R2 G3
	Felix: Good luck and have fun!

3) Felix: Build G1 Felix
	dlwillson: You too!

4) dlwillson: B G1 Dlwillson

5) Felix: Trade G1 Y1 Felix

6) dlwillson: T G1 Y1 Dlwillson

7) Felix: Build G1 Felix

8) dlwillson: B G1 Dlwillson

9) Felix: Trade G1 R1 Felix

10) dlwillson: T G1 R1 Dlwillson

11) Felix: Build R2 Felix

12) dlwillson: B R2 Dlwillson

13) Felix: Discover R2 Felix G3 Gronch

14) dlwillson: Discover R1 Dlwillson B1 Sky

15) Felix: Build R3 Gronch

16) dlwillson: B R3 Dlwillson

17) Felix: Build R3 Felix

18) dlwillson: T R2 Y2 Dlwillson

19) Felix: Trade R3 Y3 Felix

20) dlwillson: M Y1 Dlwillson Sky

21) Felix: Move Y1 Felix Gronch

22) dlwillson: B Y1 Dlwillson

23) Felix: Build Y2 Felix

24) dlwillson: Discover Y1 Dlwillson B1 Sea

25) Felix: Move R3 Gronch Sky

26) dlwillson: D Y1 Sky B3 Dabadee

27) Felix: Attack R1 Sky

28) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Dlwillson
Build Y3 Dabadee
Build Y3 Sea

29) Felix: Sacrifice Y3 Felix
Move R1 Sky Dlwillson
Move R3 Sky Dlwillson
Catastrophe Dlwillson Red
Move Y2 Felix Dlwillson

30) dlwillson: Sacrifice Y3 Dabadee
Move Y1 Sea Dlwillson
Catastrophe Dlwillson Y
Move Y3 Sea Dlwillson
Move Y1 Dabadee Felix
	dlwillson: Excellent play! Totally didn't see it coming!
	Draw5PlayAll: All just yellow ships at blue systems??

31) Felix: Attack Y1 Felix
	dlwillson: Interesting... I'm not sure why that worked.
	Felix: I believe they changed the rules so that it's now possible to cause a catastrophe during a turn instead of only at the end. This more closely reflects the official rules, I think, and I like it, because it opens up more strategic opportunities.

AMAZING defense. I thought there was no way out of my attack!

32) dlwillson: T Y3 G3 Dlwillson
	Felix: I don't know if it will save you in the end, but it was an awesome play.
	Draw5PlayAll: One ship!!!

33) Felix: Move G3 Felix Dlwillson
	dlwillson: I'm sure it won't save me, and I'm pretty sure it's not legal, with or without cats in the middle of the turn. The cat should have sent my homeworld back to the bank.
	Felix: Ah, yeah. You're right. You should have been eliminated immediately after that catastrophe and before you moved your other Y3 home, but if the system will accept it, I'm happy to play it out!

34) dlwillson: B G1 Dlwillson
	Felix: And I think that will do it. Really great game. That was an exciting finish, and I look forward to our next rematch!

35) Felix: Sacrifice R2 Gronch
Attack G3 Dlwillson
Attack G1 Dlwillson
	dlwillson: GG! See you in a week or so! :-)
	Felix: See you then! Or feel free to start up a non-ladder game with me any time :)
	Draw5PlayAll: The rules say you can temporarily abandon your homeworld at any time.



30666)
Started: 2016.11.23, Ended: 2017.1.9
Participants: ts52 (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) ts52: Homeworld Y2 B3 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) ts52: Build G1 Ts52

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) ts52: Trade G1 Y1 Ts52

7) Draw5PlayAll: Build G1 Draw5playall

8) ts52: Build G1 Ts52

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) ts52: Trade G1 B1 Ts52

11) Draw5PlayAll: Build G1 Draw5playall

12) ts52: Build G1 Ts52

13) Draw5PlayAll: Discover B1 Draw5playall G2 G2

14) ts52: Discover G1 Ts52 R1 Elmo

15) Draw5PlayAll: Discover G1 Draw5playall B2 B2

16) ts52: Move B1 Ts52 Elmo

17) Draw5PlayAll: Trade G1 R1 B2

18) ts52: Build G1 Ts52

19) Draw5PlayAll: Build G1 Draw5playall

20) ts52: Build G2 Elmo

21) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Draw5playall
Build G3 Draw5playall
Build R2 B2
	Draw5PlayAll: Here come the factories!

22) ts52: Trade G3 R3 Ts52

23) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 Draw5playall
Build Y2 Draw5playall

24) ts52: Build G3 Ts52

25) Draw5PlayAll: Move Y1 Draw5playall G2

26) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Ts52
Build R2 Ts52

27) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y2 Draw5playall
Build Y3 G2

28) ts52: Discover G3 Ts52 B1 Grover

29) Draw5PlayAll: Discover Y2 Draw5playall B2 B2'

30) ts52: Trade G3 Y3 Grover

31) Draw5PlayAll: Sacrifice G1 Draw5playall
Build Y3 B2'

32) ts52: Move Y1 Ts52 Elmo

33) Draw5PlayAll: Move G2 Draw5playall B2'

34) ts52: Move Y3 Grover B2

35) Draw5PlayAll: Sacrifice Y2 B2'
Discover R2 B2 B1 B1
Move Y3 B2' Elmo
	Draw5PlayAll: Two can't play at that game.
	Draw5PlayAll: *can

36) ts52: Sacrifice R2 Ts52
Attack R1 B2
Pass
	ts52: Sorry for running out of time. thanks for being patient.

37) Draw5PlayAll: Attack G2 Elmo
	Draw5PlayAll: Really! I thought you would not trade an R2 for an R1...

38) ts52: Move G1 Elmo B2

39) Draw5PlayAll: Attack Y1 Elmo

40) ts52: Build R2 Ts52

41) Draw5PlayAll: Attack B1 Elmo

42) ts52: Move R3 Ts52 B1
	Draw5PlayAll: My attack seems slow.

43) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R2 B1 B2'

44) ts52: Build Y1 B2

45) Draw5PlayAll: Build Y2 Draw5playall

46) ts52: Move Y1 B2 B1

47) Draw5PlayAll: Sacrifice G2 B2'
Build G1 Elmo
Build B2 Elmo

48) ts52: Move R3 B1 B2'
	Draw5PlayAll: Five blue stars, man, are you kidding me?

49) Draw5PlayAll: Sacrifice Y3 G2
Move B1 Elmo Ts52
Move B2 Elmo Ts52
Move B1 G2 Elmo
	Draw5PlayAll: STALKER!

50) ts52: Attack R2 B2'
	ts52: :)

51) Draw5PlayAll: Sacrifice Y3 Elmo
Move B1 Elmo Ts52
Catastrophe Ts52 Blue
Move Y1 Elmo Ts52
Discover Y1 G2 B3 B3
	Draw5PlayAll: I see exactly what the problem is!!!

52) ts52: Attack Y1 Ts52
	Draw5PlayAll: This is what you get for that behavior.

53) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 B3 Ts52
Move Y2 Draw5playall Ts52
Catastrophe Ts52 Yellow
	Draw5PlayAll: My last move actually seemed to be a losing move.
	ts52: Agreed, I think if you destroyed yellow instead of blue, it would've cost you the game. Instead....
	ts52: Hmm, guess I didn't look at your undone move close enough. But you're definitely in a stronger position with the move you ended up going with.

	Draw5PlayAll: I blew up your greens and blues in the first case. Here I kept your greens and went after yellow.
	Draw5PlayAll: Good game! I suppose that brings my Homeworlds Number to 3...
	ts52: Indeed, good game. Your Homeworlds Number?
	Draw5PlayAll: Andrew Looney's number is 1.
If you beat him, your number goes to 2.
And in general, if you beat someone with number n (smaller than your own), yours is n-1.

Since I think you beat Andy, yours is 2, and since I just beat you (albeit on SDG) that takes me to 3.
	ts52: Ah, that makes sense... :)


31884)
Variants: "Hard time"
Started: 2017.4.6, Ended: 2017.4.17
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y1 B2 G3

2) wil: H B3 Y2 G3
	Felix: Good luck!
	wil: Back atcha

3) Felix: Build G1 Felix

4) wil: B G1 Wil

5) Felix: Trade G1 Y1 Felix
	wil: Lol... Meant to go goldlilox not fortress
	Felix: Oops! Is there any way to walk it back now?

6) wil: T G1 Y1 Wil
	wil: Nah...it is what it is... I just chuckled when I saw it

7) Felix: Build Y2 Felix

8) wil: B Y2 Wil

9) Felix: Discover Y1 Felix G3 Opus

10) wil: D Y1 Wil G1 G1

11) Felix: Build Y3 Opus

12) wil: B Y3 G1

13) Felix: Discover Y1 Opus G1 Magnum

14) wil: D Y1 G1 Y3 Y3

15) Felix: Trade Y2 R2 Felix

16) wil: T Y2 R2 Wil

17) Felix: Build Y2 Magnum

18) wil: B Y2 G1
	wil: On a bus, and then metro...these games might move..

19) Felix: Build R1 Felix
	Felix: I'm at work on my computer, so I'll be semi-around all day, but I gotta get SOME work done :)

20) wil: B R1 Wil

21) Felix: Trade R1 B1 Felix

22) wil: M R1 Wil G1

23) Felix: Build B1 Felix

24) wil: B R1 Wil

25) Felix: Move B1 Felix Opus

26) wil: T R1 B1 Wil

27) Felix: Build B2 Opus

28) wil: M B1 Wil G1

29) Felix: Move B2 Opus Magnum
	wil: Two more stops...then back to work for you!

30) wil: B R1 G1
	Felix: Phew. Though I must say I do enjoy it when a game goes along quickly. It's a pain to try to remember my strategy every time I load up the game!

31) Felix: Build G1 Felix

32) wil: Build G2 Wil

33) Felix: Move R2 Felix Y3

34) wil: M Y1 Y3 Magnum
	Draw5PlayAll: Felix, if I thought is that bad use the notebook.

35) Felix: Move R2 Y3 Magnum

36) wil: D Y2 G1 Y3 Y3

37) Felix: Build R1 Magnum

38) wil: D R1 G1 G2 G2

39) Felix: Move R2 Magnum Y3

40) wil: S R1 G2
A R2 Y3

41) Felix: Attack Y1 Magnum
	Felix: Well dang. I didn't think that one through.

42) wil: M Y2 Y3 Magnum
C Magnum Y

43) Felix: Discover G1 Felix B3 Safe

44) wil: D G2 Wil Y1 Y1

45) Felix: Build G2 Felix

46) wil: B B2 G1

47) Felix: Sacrifice G3 Felix
Build G2 Safe
Build G3 Felix
Build B3 Magnum

48) wil: M Y3 G1 Safe

49) Felix: Sacrifice G2 Safe
Build Y1 Opus
Build Y2 Opus

50) wil: B G2 Wil
	wil: Sweet, I was looking for a safe place

51) Felix: Trade B2 Y2 Magnum
	Felix: Haha, there are no safe spaces over here in the U.S. now that the Trump Train is in town

52) wil: Sacrifice G2 Y1
Build R1 G1
Build Y1 Safe

53) Felix: Sacrifice G1 Safe
Build R2 Magnum

54) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 Y3
Build R3 G1

55) Felix: Trade Y3 G3 Opus

56) wil: Move R2 Wil Magnum

57) Felix: Sacrifice R1 Magnum
Attack R2 Magnum

58) wil: Move R2 Y3 Magnum

59) Felix: Sacrifice R2 Magnum
Attack R2 Magnum
Pass

60) wil: Trade R3 Y3 Wil

61) Felix: Sacrifice Y2 Opus
Move R2 Magnum Y3
Move R2 Y3 G1
Catastrophe G1 Red
	Felix: I could do this all day :P

62) wil: Trade B2 Y2 G1
	wil: yeah it was week


63) Felix: Sacrifice G2 Felix
Build B2 Magnum
Build B2 Opus

64) wil: Build G1 Wil

65) Felix: Build G2 Felix

66) wil: Sacrifice G2 Wil
Build G2 Wil
Build R1 Y3

67) Felix: Trade G3 R3 Opus

68) wil: M R1 Y3 G1

69) Felix: Move R3 Opus G1

70) wil: S G2 Wil
B R1 G1
B R1 G1
C G1 R

71) Felix: Discover G2 Felix G3 Bank

72) wil: B G2 Wil

73) Felix: Build G2 Felix

74) wil: M G2 Wil G1

75) Felix: Discover G2 Felix R3 Factory

76) wil: M G2 G1 Bank

77) Felix: Build R1 Magnum

78) wil: S G1 Wil
B G1 Bank
C Bank G
	wil: I like to watch investments patiently until it looks like they are going to pay off

79) Felix: Move B2 Opus G1

80) wil: M Y2 G1 Opus
	wil: Dang it, I really got in that one at the wrong time...  I'm calling my broker...I got no green

81) Felix: Move B2 Magnum Opus
	Felix: Haha, you need a new accountant!
	wil: Noice!

82) wil: D Y2 Opus G2 G2

83) Felix: Move Y1 Opus G1

84) wil: T Y1 G1 Safe

85) Felix: Build Y1 Magnum

86) wil: T Y3 G3 Wil

87) Felix: Sacrifice G2 Factory
Build G2 Felix
Build Y3 G1

88) wil: Build G2 Wil

89) Felix: Sacrifice R1 Magnum
Attack B1 G1

90) wil: M R3 Y3 G2

91) Felix: Move Y1 Magnum Wil

92) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 G2
Build R1 G2

93) Felix: Move Y1 G1 Wil
	wil: yeah...this is the end..nice job

94) wil: Move Y3 Safe Felix

95) Felix: Sacrifice R2 Magnum
Attack Y3 Felix
Pass
	Felix: Thanks! This was a good game. Very well fought!

96) wil: Sacrifice Y3 G2
Move G3 Wil Magnum
Move G3 Magnum Opus
Move G3 Opus Felix
	Felix: ...unless I mess up, of course.

97) Felix: Sacrifice G2 Felix
Build Y3 Wil
Build G2 Felix
Catastrophe Wil Yellow

98) wil: Sacrifice R3 G2
Attack G3 Felix
Attack Y3 Felix
Attack G2 Felix
	wil: lol...just a good looking finale as rome crumbles

99) Felix: Sacrifice Y3 G1
Move B3 Magnum Wil
Move B2 G1 Wil
Move B1 G1 Wil
Catastrophe Wil Blue

	Felix: I sure don't have much of a fleet left... good game! You nearly gave me a heart attack there at the very end. Well struggled.
	wil: I was a beat behind...fun.


30743)
Started: 2016.11.26, Ended: 2017.2.3
Participants: Mandrel (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) Mandrel: Homeworld R1 B2 G3
	Felix: Hi there! First game?

3) Felix: Build G1 Felix
	Mandrel: Hi! I've played quite a few games before, but not for a long while; this is my first in a couple of years or so, so am probably pretty rusty.

4) Mandrel: Build G1 Mandrel
	Felix: No problem. I'm happy to help you de-rust. Hope you have fun!

5) Felix: Trade G1 Y1 Felix
	Mandrel: Thanks, you too!

6) Mandrel: Trade G1 Y1 Mandrel

7) Felix: Build G1 Felix

8) Mandrel: Build G1 Mandrel

9) Felix: Trade G1 B1 Felix

10) Mandrel: Trade G1 B1 Mandrel

11) Felix: Discover B1 Felix G1 Grinch

12) Mandrel: Discover B1 Mandrel G3 Tooth

13) Felix: Build G1 Felix

14) Mandrel: Build G1 Mandrel

15) Felix: Discover G1 Felix B1 Quozah

16) Mandrel: Build G2 Mandrel

17) Felix: Build G2 Felix

18) Mandrel: Discover G1 Mandrel B3 Early

19) Felix: Sacrifice G3 Felix
Build G2 Quozah
Build G3 Felix
Build B2 Grinch

20) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build Y1 Mandrel
Build B2 Tooth

21) Felix: T B2 Y2 Grinch

22) Mandrel: Build Y2 Mandrel

23) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Grinch
Build Y3 Felix

24) Mandrel: Move Y1 Mandrel Tooth

25) Felix: Move Y2 Grinch Early

26) Mandrel: Build Y3 Tooth

27) Felix: Build Y3 Grinch

28) Mandrel: Trade Y1 R1 Mandrel

29) Felix: Trade Y2 R2 Early

30) Mandrel: Sacrifice G1 Early
Build Y1 Mandrel

31) Felix: Build B2 Grinch

32) Mandrel: Discover G2 Mandrel B3 Hole

33) Felix: M Y2 Grinch Early

34) Mandrel: Trade B2 R2 Tooth

35) Felix: Sacrifice G3 Felix
Build G1 Quozah
Build G3 Felix
Build Y2 Early

36) Mandrel: Build B2 Tooth

37) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R1 Early
Pass

38) Mandrel: Move R1 Mandrel Hole

39) Felix: Sacrifice Y2 Early
Move R2 Early Quozah
Move G1 Quozah Early

40) Mandrel: Build R3 Hole

41) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R3 Early
Build R3 Quozah

42) Mandrel: Move Y1 Mandrel Hole

43) Felix: Sacrifice Y3 Felix
Move R3 Quozah Early
Move R3 Early Mandrel
Move R3 Early Mandrel

44) Mandrel: Sacrifice R2 Tooth
Attack R3 Mandrel
Attack R3 Mandrel

45) Felix: Move R1 Early Mandrel
Catastrophe Mandrel Red

46) Mandrel: Move R3 Hole Quozah

47) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R1 Quozah
Build R1 Quozah
Catastrophe Quozah Red
	Felix: Huh. I somehow missed the fact that you had that r2...

48) Mandrel: Discover B1 Tooth R1 Fall
	Mandrel: I almost did as well, nearly sacrificed my r3 instead. Shouldn't think it'll matter in the end though..

49) Felix: Move Y2 Early Fall

50) Mandrel: Sacrifice Y3 Tooth
Move B1 Fall Felix
Move B2 Tooth Fall
Move B2 Fall Felix

51) Felix: Attack B2 Felix

52) Mandrel: Attack Y1 Felix

53) Felix: Sacrifice Y3 Grinch
Move B1 Grinch Mandrel
Move B2 Grinch Mandrel
Discover B2 Felix G1 Gambit

54) Mandrel: Sacrifice G2 Hole
Build Y2 Felix
Build Y3 Felix

55) Felix: Sacrifice Y2 Fall
Move B2 Gambit Mandrel
Catastrophe Mandrel Blue
Pass
	Felix: Way to put pressure on me like that. I think I might have pulled it off, but it was really close!

	Mandrel: Thanks, but I think the writing has been on the wall for a while, you'd amassed a pretty serious material advantage. Good game!
	Felix: Great game! Looking forward to a rematch.


30808)
Started: 2016.11.30, Ended: 2016.11.30
Participants: agentofchaos (S), randrews (N)
Winner: agentofchaos

1) randrews: Homeworld Y3 G1 B3

2) agentofchaos: Homeworld B2 R1 G3

3) randrews: Build B1 Randrews
	agentofchaos: Enjoy the game

4) agentofchaos: Build G1 Agentofchaos
	randrews: You too!

5) randrews: Build B1 Randrews

6) agentofchaos: Trade G1 B1 Agentofchaos

7) randrews: Discover B1 Randrews G2 Blah

8) agentofchaos: Build B2 Agentofchaos

9) randrews: Build B2 Blah

10) agentofchaos: Trade B2 Y2 Agentofchaos

11) randrews: Trade B1 G1 Blah

12) agentofchaos: Discover B1 Agentofchaos G3 Kakrafoon

13) randrews: Build B1 Randrews

14) agentofchaos: Sacrifice Y2 Agentofchaos
Move B1 Kakrafoon Blah
Move B1 Blah Randrews
Catastrophe Randrews B
	agentofchaos: I was getting ready in case you built another blue in your homeworld. Thanks for the game. 
	randrews: Yeah, I'm not very good at Homeworlds. Good game!
	Draw5PlayAll: With time and practice you can improve.



30817)
Variants: "Hard time"
Started: 2016.12.6, Ended: 2017.1.1
Participants: agentofchaos (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3 Y2

2) agentofchaos: Homeworld R2 B1 G3

3) Draw5PlayAll: Build G1 Draw5playall
	agentofchaos: Enjoy the game

4) agentofchaos: Build G1 Agentofchaos

5) Draw5PlayAll: Build G1 Draw5playall

6) agentofchaos: Build G2 Agentofchaos

7) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: Failed...

8) agentofchaos: Trade G1 Y1 Agentofchaos

9) Draw5PlayAll: Trade G1 B1 Draw5playall
	Draw5PlayAll: Not making the same mistake again.

10) agentofchaos: Build G1 Agentofchaos

11) Draw5PlayAll: Build B1 Draw5playall

12) agentofchaos: Sacrifice G2 Agentofchaos
Build Y1 Agentofchaos
Build Y2 Agentofchaos

13) Draw5PlayAll: Build Y2 Draw5playall

14) agentofchaos: Discover Y2 Agentofchaos G3 Doomchasm

15) Draw5PlayAll: Discover Y2 Draw5playall G2 G2

16) agentofchaos: Build Y2 Agentofchaos

17) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build Y3 G2
Pass

18) agentofchaos: Build Y3 Doomchasm

19) Draw5PlayAll: Sacrifice B1 Draw5playall
Trade Y3 B3 G2

20) agentofchaos: Trade Y1 B1 Agentofchaos
	Draw5PlayAll: If you build it, we will come... and blow it up in a spectacular explosion.

21) Draw5PlayAll: Build B2 G2
	agentofchaos: puts a bit of a damper on the building industry then

22) agentofchaos: Move B1 Agentofchaos Doomchasm

23) Draw5PlayAll: Trade B2 R2 G2

24) agentofchaos: Trade Y2 R2 Doomchasm

25) Draw5PlayAll: Build B2 G2

26) agentofchaos: Build B2 Doomchasm

27) Draw5PlayAll: Trade B1 G1 Draw5playall

28) agentofchaos: Trade B2 Y2 Doomchasm

29) Draw5PlayAll: Discover G1 Draw5playall B2 B2

30) agentofchaos: Build B1 Doomchasm

31) Draw5PlayAll: Trade Y1 G1 Draw5playall

32) agentofchaos: Trade G1 R1 Agentofchaos

33) Draw5PlayAll: Build G1 B2

34) agentofchaos: Build G2 Agentofchaos

35) Draw5PlayAll: Build Y1 Draw5playall

36) agentofchaos: Move R2 Doomchasm B2

37) Draw5PlayAll: Build G2 B2

	Draw5PlayAll: Resistance may be futile, but we would rather DIE than face your wrath!


30446)
Variants: "Unrated"
Started: 2016.12.10, Ended: 2016.12.10
Participants: Draw5PlayAll (S), Amuzet (N)
Winner: Draw5PlayAll

1) Amuzet: Homeworld B1 Y2 G3

2) Draw5PlayAll: Home R1 B3 G3
	Draw5PlayAll: Good luck.

3) Amuzet: Discover G3 Amuzet G3 A_zerl
	Amuzet: you to

	Amuzet: oh god, this is my first game! I forgot that would do that
	Draw5PlayAll: I just plain do not understand. A few weeks ago I wanted to resign by blowing my homeworld, and it blocked the move.

Rematch?


30877)
Variants: "Hard time"
Started: 2016.12.10, Ended: 2017.1.7
Participants: Aristos (S), MagicJohn (N)
Winner: Aristos

1) MagicJohn: Homeworld G1 B2 B3 *
	Aristos: Having bought out, assimilated, or conquered the last opposing tribe on the planet, the leaders of the Aristos Empire turn their eyes skyward. "Are we alone? Might there be other worlds than this?"
	MagicJohn: An acolyte magician, while immersed in his meditations, experiences visions of past generations and a strangely physical plane of existance. He rises, bumping his head on an overhanging light source and staggers into a new world. Rubbing his head, he sees a diversity of life and is stunned by a cacophony society with its sights, sounds and...touch. As he watches in disbelief, he catches phrases of sound with timber he has never before experienced... "Momma told me not to come......."   

2) Aristos: Homeworld B3 Y2 G3
	Draw5PlayAll: Was this an accident?

3) MagicJohn: Build B1 Magicjohn
	Aristos: A night of celebration around the world as the starship shipyards complete construction of the first interstellar Aristos ship!

4) Aristos: Build G1 Aristos
	MagicJohn: A ship appears over the acolyte's head and he wonders what strange magic he is witnessing...

5) MagicJohn: Trade B1 Y1 Magicjohn

6) Aristos: Discover G1 Aristos B1 Leaf
	MagicJohn: As the acolyte, MJ, raises his hand to shield his eyes the ship he is viewing changes configuration and speeds across the sky in a burst of speed. The crowd around him gasps. All look about in shock and awe. He hears melodious sounds wafting through the air asking "Do you believe in magic....?" 

7) MagicJohn: Build Y1 Magicjohn
	Aristos: "And so we sail into the void." -- Parting words of Captain Zane on the first interstellar mission. 

8) Aristos: Build G1 Aristos

9) MagicJohn: Discover Y1 Magicjohn R3 Awakening
	MagicJohn: MJ gazes at the ship and feels as if his own body is somehow connected to the machine. He refocuses his eyes and, to his astonishment, sees the landscape below. He imagines a distant planet, blinks, and..... 

10) Aristos: Build G2 Leaf
	MagicJohn: The captain of Galaxy Rider 347 Yellow begins to show signs of consternation with his navigation crew..

11) MagicJohn: Build Y1 Magicjohn
	Aristos: Deep space ship foundry established. Restlessness on homeworld about cost of space program soothed now that offworld resources can be used. Collapse of parliament averted. 

12) Aristos: Trade G2 Y2 Leaf
	MagicJohn: MJ claps hands and Galaxy Rider 348 appears overhead. Beings on the street look nervously about and begin to drift towards protected locations. The Captain of Galaxy Rider 347 contacts Siri..

13) MagicJohn: Discover Y1 Awakening G2 Rebirth
	Aristos: "Captain, the Senate Appropriations Committee wants to know why you wasted an entire year's budget on a new paint job."
"For morale. I was sick of green."
"That's hardly a good use of government funds."
"Keep talking, boy, and I'll paint the bridge red..."
"Yessir. I'll let the Committee know."

14) Aristos: Sacrifice G3 Aristos
Build G2 Leaf
Build G2 Leaf
Build G3 Aristos
	MagicJohn: MJ blinks as he imagines a lush green world of exotic life. As the material world bends to his whim, he affects a serene smile. The captain of Galaxy Rider 348, not so much... 

15) MagicJohn: Move Y1 Rebirth Leaf
	Aristos: "We don't know what happened. Some weird wave of energy came through. Every member of the crew swears they heard a voice say, 'I imagine a green world full of exotic life.' And suddenly, the ships were replicated. And the replicas held alternate versions of the crews! If we weren't beyond such superstition, I'd say it was magic!" -- First Mate (version 1) Yenith Iskander of Starship Zen, reporting on The Miracle At Leaf.

16) Aristos: Trade G2 R2 Leaf
	MagicJohn: The captain of Galaxy rider 347 searches for a way home. Flying from one quadrant to the next, he finds 347 surrounded by a virtual Armada of alien ships. He addresses his crew, "Prepare to grin and wave".  

17) MagicJohn: Build Y2 Magicjohn
	Aristos: "Combat stations! First contact protocol!"
"What if they come in peace?"
"That's great! We don't!"

18) Aristos: Attack Y1 Leaf

19) MagicJohn: Trade Y2 R2 Magicjohn

20) Aristos: Sacrifice G3 Aristos
Build G2 Aristos
Build G2 Leaf
Build G3 Aristos

21) MagicJohn: Trade B3 G3 Magicjohn
	Aristos: Ping!
	Draw5PlayAll: I am not sure if I like how I can do that to other people's games.
	Aristos: Draw5PlayAll: It is sometimes useful if an observer notices a rule not Implemented correctly. It  does no harm to have an admin look in. It's not like you can force moves or anything. :-)
	MagicJohn: I have been playing so badly that I really have no good options. If someone wants to discuss the rules issue it's fine with me. I am trying to play on but it's pretty pointless. Too many brain-farts in one game......

22) Aristos: Discover G2 Leaf Y3 Knock

23) MagicJohn: Discover Y1 Magicjohn R3 No Hope
	Aristos: I think Draw5 was just playing with the button. 
	MagicJohn: One might think I've been doing something like that for most of this game.....
	Draw5PlayAll: In reality, I was using it as a ping, since it emails the players. It sometimes does not work if the person chose Private Messages instead of Email Notifications.

24) Aristos: Sacrifice G3 Aristos
Build G3 Aristos
Build G3 Knock
Build R1 Leaf

	Aristos: Market crashes on news that known supplies of rare element "green" have been exhausted! New sources urgently sought!


30883)
Started: 2016.12.10, Ended: 2017.1.1
Participants: Simpsonsurge (S), Joe_Hill (N)
Winner: Joe_Hill

1) Joe_Hill: H Y3 B1 G3
	Joe_Hill: Hey Eric!

2) Simpsonsurge: Homeworld R2 G3 B3
	Simpsonsurge: Hey!  No idea what I'm doing!! Hahaha

3) Joe_Hill: B G1 Joe_hill
	Joe_Hill: That makes two of us. This game is difficult. 

4) Simpsonsurge: Build B1 Simpsonsurge

5) Joe_Hill: T G1 Y1 Joe_hill
	Simpsonsurge: It takes me 30 minutes to figure out the right command for what I want to do.  But it looks like after a game or two it gets a lot easier. 
	Joe_Hill: Yea. Each new game you have to learn all the weird new commands for each. In this game you can abbreviate, which helps. So build becomes b and trade t, etc.

6) Simpsonsurge: T B1 G1 Simpsonsurge

7) Joe_Hill: B G1 Joe_hill
	Draw5PlayAll: I use the "View All Moves" whenever possible, but *obviously* it is not for Homeworlds...
	Joe_Hill: Some games that works very well for. I agree.
	Simpsonsurge: That would be a great  tool for a newbie. 

8) Simpsonsurge: Build B1 Simpsonsurge
	Draw5PlayAll: It could work for homeworlds if it used multiple select options, e.g. the left one says Move, Trade, Build, (no attack since it is impossible here) Sac, Catastrophe, pass?

9) Joe_Hill: T G1 B1 Joe_hill

10) Simpsonsurge: Trade B3 Y3 Simpsonsurge

11) Joe_Hill: B G1 Joe_hill

12) Simpsonsurge: Discover B1 Simpsonsurge Y1 Planetx

13) Joe_Hill: Build G1 Joe_hill

14) Simpsonsurge: B G2 Simpsonsurge

15) Joe_Hill: D G1 Joe_hill Y2 Pan

16) Simpsonsurge: M G1 Simpsonsurge Planetx

17) Joe_Hill: M B1 Joe_hill Pan

18) Simpsonsurge: B Y1 Simpsonsurge

19) Joe_Hill: Build Y2 Joe_hill

20) Simpsonsurge: M B1 Planetx Simpsonsurge

21) Joe_Hill: Trade Y1 R1 Joe_hill

22) Simpsonsurge: Trade Y3 B3 Simpsonsurge

23) Joe_Hill: Build G2 Joe_hill

24) Simpsonsurge: M B1 Simpsonsurge Planetx

25) Joe_Hill: Trade G2 B2 Joe_hill

26) Simpsonsurge: B G2 Simpsonsurge

27) Joe_Hill: S Y2 Joe_hill
M G1 Pan Planetx
M G1 Planetx Simpsonsurge
Catastrophe Simpsonsurge G

28) Simpsonsurge: B G1 Planetx

29) Joe_Hill: Move G1 Joe_hill Pan

30) Simpsonsurge: M G1 Planetx Simpsonsurge

31) Joe_Hill: Build G2 Pan

32) Simpsonsurge: B G2 Planetx

33) Joe_Hill: B G2 Joe_hill

34) Simpsonsurge: T G2 R2 Planetx

35) Joe_Hill: Trade G3 R3 Joe_hill

36) Simpsonsurge: M R2 Planetx Pan

37) Joe_Hill: M R3 Joe_hill Pan

38) Simpsonsurge: M R2 Pan Joe_hill

39) Joe_Hill: A R2 Joe_hill

40) Simpsonsurge: B B2 Simpsonsurge

41) Joe_Hill: M R3 Pan Planetx

42) Simpsonsurge: T B2 R2 Simpsonsurge
	Joe_Hill: My blue or green 2 can attack you even though I only have a r1
	Joe_Hill: Or because I have an r1

43) Joe_Hill: A B1 Planetx

44) Simpsonsurge: M G1 Planetx Pan

45) Joe_Hill: T G2 Y2 Pan

46) Simpsonsurge: M R2 Simpsonsurge Planetx

47) Joe_Hill: A R2 Planetx

48) Simpsonsurge: B G2 Pan

49) Joe_Hill: M G1 Pan Planetx

50) Simpsonsurge: B G2 Simpsonsurge

51) Joe_Hill: M R2 Joe_hill Pan

52) Simpsonsurge: T G1 R1 Simpsonsurge

53) Joe_Hill: Sacrifice Y2 Pan
Move R3 Planetx Simpsonsurge
Move R2 Planetx Simpsonsurge
Catastrophe Simpsonsurge R

	Joe_Hill: good game Eric.


30885)
Started: 2016.12.10, Ended: 2017.2.27
Participants: Amuzet (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld R1 B3 G3

2) Amuzet: Homeworld Y1 G2 B3

3) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: First game, right?

Make sure you build a B1 before exploring. And it would be better to send the small itself out, because leaving your homeworld without a large ship can be dangerous.

4) Amuzet: Build B1 Amuzet

5) Draw5PlayAll: Build G1 Draw5playall
	Amuzet: Oh you can only build ships of the same color!
	Draw5PlayAll: Yeah. If you wanted to build say reds, you first have to trade for it, unless you started with a red (you didn't) or attack one of mine (which is usually impractical).

6) Amuzet: Discover B1 Amuzet B3 Berilium

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) Amuzet: Build B1 Amuzet

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) Amuzet: Trade B3 R3 Amuzet
	Amuzet: Now I realize my mistake in sending a blue ship to a blue system.

11) Draw5PlayAll: Build B2 Draw5playall

12) Amuzet: Build B2 Amuzet

13) Draw5PlayAll: Discover B2 Draw5playall G2 G2
	Draw5PlayAll: Trade B1 G1 Berilium

14) Amuzet: Trade B1 G1 Berilium

15) Draw5PlayAll: Build B1 G2

16) Amuzet: Build G1 Berilium

17) Draw5PlayAll: Trade B2 Y2 G2

18) Amuzet: Trade G1 Y1 Berilium

19) Draw5PlayAll: Build Y2 G2

20) Amuzet: Build B2 Amuzet

21) Draw5PlayAll: Build B2 Draw5playall

22) Amuzet: Move B2 Amuzet Berilium

23) Draw5PlayAll: Build B3 G2

24) Amuzet: Discover B2 Berilium G1 Breilium

25) Draw5PlayAll: Discover B2 Draw5playall G2 G2'

26) Amuzet: Build G1 Berilium

27) Draw5PlayAll: Build G3 Draw5playall

28) Amuzet: Build G3 Berilium

29) Draw5PlayAll: Trade Y2 R2 G2

30) Amuzet: Sacrifice G1 Berilium
Build Y2 Berilium

31) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 G2
Build Y3 Draw5playall
Build R1 G2

32) Amuzet: Sacrifice Y2 Berilium
Discover G3 Berilium R2 Hola
Move Y1 Berilium Hola

33) Draw5PlayAll: Move Y3 Draw5playall G2'

34) Amuzet: Sacrifice G3 Hola
Build G1 Berilium
Build G3 Berilium
Build Y2 Hola

35) Draw5PlayAll: Build G3 Draw5playall

36) Amuzet: Sacrifice B2 Amuzet
Trade B2 R2 Breilium
Trade G1 R1 Berilium

37) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build Y3 G2'
Build R3 G2

38) Amuzet: Sacrifice Y2 Hola
Move G3 Berilium G2'
Move R1 Berilium G2
Catastrophe G2 Red

39) Draw5PlayAll: Sacrifice Y2 G2
Move Y3 G2' Berilium
Discover Y3 G2' R3 R3
	Draw5PlayAll: I know very well that you can bomb the reds.

40) Amuzet: Sacrifice G3 G2'
Build Y2 Hola
Build B2 Amuzet
Build R1 Breilium

41) Draw5PlayAll: Trade B1 R1 G2

42) Amuzet: Trade B1 G1 Amuzet

43) Draw5PlayAll: Build G3 Draw5playall

44) Amuzet: Build G3 Berilium

45) Draw5PlayAll: Sacrifice R1 G2
Attack G3S Berilium

46) Amuzet: Sacrifice Y2 Hola
Move R2 Breilium G2
Move Y1 Hola Breilium

47) Draw5PlayAll: Move Y2 G2 Berilium

48) Amuzet: Trade G1 B1 Berilium

49) Draw5PlayAll: Trade Y2 R2 Berilium

	Draw5PlayAll: Hello 
	Draw5PlayAll: Sadly, the empire appears to have faded away, and ours has ordered a cease fire. Their president is dead with no replacement and no one is DOING anything.


30818)
Variants: "Hard time"
Started: 2016.12.10, Ended: 2017.2.10
Participants: agentofchaos (S), Draw5PlayAll (N), Amuzet (E)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld R1 B3 G3

2) Amuzet: Homeworld B1 R2 G3

3) agentofchaos: Homeworld R3 B2 G3

4) Draw5PlayAll: Build G1 Draw5playall

5) Amuzet: Build G1 Amuzet

6) agentofchaos: Build G1 Agentofchaos

7) Draw5PlayAll: Trade G1 B1 Draw5playall

8) Amuzet: Trade G1 Y1 Amuzet

9) agentofchaos: Build G1 Agentofchaos

10) Draw5PlayAll: Build B1 Draw5playall

11) Amuzet: Build G1 Amuzet

12) agentofchaos: Trade G1 B1 Agentofchaos

13) Draw5PlayAll: Trade B1 Y1 Draw5playall

14) Amuzet: Discover G1 Amuzet Y3 Alley

15) agentofchaos: Trade G1 Y1 Agentofchaos

16) Draw5PlayAll: Discover B1 Draw5playall G2 G2

17) Amuzet: Build G1 Alley

18) agentofchaos: Discover Y1 Agentofchaos G1 Urizen

19) Draw5PlayAll: Build B1 G2

20) Amuzet: Build G1 Amuzet

21) agentofchaos: Build G2 Agentofchaos

22) Draw5PlayAll: Build G2 Draw5playall

23) Amuzet: Sacrifice G3 Amuzet
Build G2 Alley
Build G3 Amuzet
Build G3 Amuzet

24) agentofchaos: Build B2 Agentofchaos
	Amuzet: God it took me a day to figure out what I was doing wrong, thank god it doesn't let you sac a g1 to build 3 G ships! XD

25) Draw5PlayAll: Build B2 G2

26) Amuzet: Sacrifice G3 Amuzet
Build G3 Alley
Build Y1 Amuzet
Build Y2 Amuzet
Catastrophe Alley Green

27) agentofchaos: Build Y2 Urizen
	Amuzet: My plan worked!
	Draw5PlayAll: Why did you blow your own ships like that?

28) Draw5PlayAll: Trade B2 Y2 G2

29) Amuzet: Sacrifice Y2 Amuzet
Discover G1 Amuzet B3 Aloha
Move Y1 Amuzet Aloha

30) agentofchaos: Trade B2 R2 Agentofchaos

31) Draw5PlayAll: Trade B1 R1 G2

32) Amuzet: Build Y2 Aloha

33) agentofchaos: Trade G3 Y3 Agentofchaos

34) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 G2
Build Y3 Draw5playall
Build G1 Draw5playall

35) Amuzet: Sacrifice G3 Amuzet
Build Y3 Amuzet
Build G1 Aloha
Build G2 Aloha

36) agentofchaos: Build Y3 Agentofchaos

37) Draw5PlayAll: Discover G2 Draw5playall B2 B2

38) Amuzet: Sacrifice Y2 Aloha
Move G1 Aloha Amuzet
Move G1 Aloha G2

39) agentofchaos: Build G3 Agentofchaos

40) Draw5PlayAll: Attack G1E G2

41) Amuzet: Build Y2 Aloha

42) agentofchaos: Move R2 Agentofchaos Urizen

43) Draw5PlayAll: Build G3 B2

44) agentofchaos: Move R2 Urizen G2

45) Draw5PlayAll: Attack R2S G2

46) agentofchaos: Trade G2 R2 Agentofchaos

47) Draw5PlayAll: Sacrifice Y2 G2
Move G3 B2 Aloha
Move G3 Aloha Amuzet

48) agentofchaos: Discover Y3 Agentofchaos R1 Cashzone

49) Draw5PlayAll: Attack Y3E Amuzet

50) agentofchaos: Build Y2 Agentofchaos

51) Draw5PlayAll: Attack Y1E Amuzet

52) agentofchaos: Build G2 Agentofchaos

53) Draw5PlayAll: Build G3 Draw5playall



30786)
Started: 2016.12.15, Ended: 2016.12.23
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Felix: Homeworld Y2 B3 G3
	Draw5PlayAll: Not sure what to do about phoenixian. I want the game to continue legitimately (killing him would make you win by force), but it has been three weeks.

3) Draw5PlayAll: Build G1 Draw5playall
	Felix: Hmm. Yeah. I think that's just the risk of 3P and 4P games and there's not much to be done about it. Best to stick to 2P games so stuff like that doesn't occur.

4) Felix: Build G1 Felix

5) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: That game is active again. I think it is even your turn.

6) Felix: Trade G1 R1 Felix

7) Draw5PlayAll: Build Y1 Draw5playall

8) Felix: Build R1 Felix
	Draw5PlayAll: If you freeze red, I will freeze yellow!
	Felix: Okay. Good luck :)

9) Draw5PlayAll: Build Y1 Draw5playall

10) Felix: Build R2 Felix

11) Draw5PlayAll: Discover Y1 Draw5playall G2 G2

12) Felix: Trade R2 Y2 Felix

13) Draw5PlayAll: Build Y2 Draw5playall
	Draw5PlayAll: Rats.

14) Felix: Discover Y2 Felix G1 Rim

15) Draw5PlayAll: Build Y3 G2

16) Felix: Build Y3 Rim

17) Draw5PlayAll: Trade Y2 R2 Draw5playall

18) Felix: Move Y2 Rim G2

19) Draw5PlayAll: Discover Y1 G2 B1 B1
	Draw5PlayAll: DaneHbogh yIta'?

20) Felix: Build Y2 G2
	Draw5PlayAll: First ever: d Y1 G2 B1 B1
	Felix: You've gotten less creative with your planet names :P

21) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack Y2 G2
Attack Y2 G2
	Draw5PlayAll: I was never that creative anyway -- usually just reusing the same stuff. And when I had a new name, it wasn't that good, except Qo'noS which I rarely get to do anyway.

22) Felix: Build Y3 Rim

23) Draw5PlayAll: Move Y2 G2 B1

24) Felix: Move Y3 Rim G2
	Felix: Why do you rarely get to use that?
	Draw5PlayAll: Reserved for red stars

25) Draw5PlayAll: Sacrifice Y2 B1
Move Y3 G2 B1
Move Y1 Draw5playall G2
	Felix: Is that a real name from something? I use Bazoik all the time from Chex Quest and I use it for other colored planets even though Bazoik is red.
	Draw5PlayAll: Should I, or should I not...

26) Felix: Move Y3 G2 B1

27) Draw5PlayAll: Sacrifice Y3 B1
Move Y1 B1 Felix
Move Y1 G2 B1
Move Y1 B1 Felix
	Draw5PlayAll: I hope this works.

28) Felix: Sacrifice G3 Felix
Build Y2 B1
Build Y3 Rim
Build R2 Felix

29) Draw5PlayAll: Discover Y2 G2 B1 B1'
	Felix: Interesting move. I hope the intrigue of mine matches it.
	Draw5PlayAll: Dang, it failed.

30) Felix: Discover Y3 B1 G2 Oroset

31) Draw5PlayAll: Trade Y2 R2 B1'

32) Felix: Sacrifice R2 Felix
Attack Y1 Felix
Attack Y1 Felix
	Draw5PlayAll: South's ship Y3 was not sacrificed in the rim system. South did not move their Y3 ship from rim to Oroset. The rim system was not abandoned to the hyperspatial flux. South did not move their Y3 ship from Oroset to Draw5PlayAll. South did not move their Y3 ship from Oroset to Draw5PlayAll.
	Draw5PlayAll: I see no plans for you to get three 3-point ships in my homeworld any time soon.

33) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R2 B1' Felix

34) Felix: Sacrifice Y3 Rim
Discover Y2 B1 Y2 Implement
Move Y3 Rim Felix
Discover Y1 Felix Y1 Outage

35) Draw5PlayAll: Move R2 Felix Outage
	Draw5PlayAll: You might be lost. You cannot get a Y3 to your homeworld.

36) Felix: D Y1 Outage B2 Brinks
	Felix: :)

37) Draw5PlayAll: Build G1 Draw5playall

38) Felix: B Y3 Oroset
	Draw5PlayAll: Thanks for the escape system!

39) Draw5PlayAll: Move R2 Outage Brinks

40) Felix: D Y1 Brinks Y1 Regret

41) Draw5PlayAll: Sacrifice G1 Draw5playall
Build R2 Brinks

42) Felix: Trade R1 G1 Felix

	Felix: You can't move at all!
	Draw5PlayAll: I k&#324;ow. There is no way to do anythîng.


30953)
Variants: "Hard time"
Started: 2016.12.17, Ended: 2017.1.3
Participants: Subhan64 (S), Remneb (N)
Winner: Subhan64

1) Remneb: Homeworld R1 B2 G3

2) Subhan64: Homeworld B3 G2 R3

3) Remneb: Build G1 Remneb

4) Subhan64: Build R1 Subhan64

5) Remneb: Trade G1 R1 Remneb

6) Subhan64: Build R2 Subhan64

7) Remneb: Build G1 Remneb

8) Subhan64: Trade R2 Y2 Subhan64

9) Remneb: Trade G1 Y1 Remneb

10) Subhan64: Build R2 Subhan64

11) Remneb: Build R2 Remneb

12) Subhan64: Build Y1 Subhan64

13) Remneb: Discover R2 Remneb Y3 Rogue One

14) Subhan64: Discover R1 Subhan64 G1 Kermit

15) Remneb: Trade R1 G1 Remneb

16) Subhan64: Trade Y2 B2 Subhan64

17) Remneb: Move R2 Rogue Kermit

18) Subhan64: Sacrifice Y1 Subhan64
Discover R1 Kermit Y3 Bb

19) Remneb: Build Y1 Remneb

20) Subhan64: Build B1 Subhan64

21) Remneb: Discover Y1 Remneb Y3 Drone

22) Subhan64: Trade B2 G2 Subhan64

23) Remneb: Move G1 Remneb Drone

24) Subhan64:
Build G1 Subhan64

25) Remneb: Build G2 Remneb

26) Subhan64: Trade G2 Y2 Subhan64

27) Remneb: Build G2 Drone

28) Subhan64: Build G3 Subhan64

29) Remneb: Build G3 Remneb

30) Subhan64: Sacrifice Y2 Subhan64
Move G1 Subhan64 Kermit
Move G1 Kermit Bb

31) Remneb: Move Y1 Drone Kermit

32) Subhan64: Move G1 Bb Remneb
Catastrophe Remneb Green

	Remneb: Thanks for the game.
	Subhan64: Thanks!



30427)
Started: 2016.12.18, Ended: 2017.1.28
Participants: Babamots (S), Draw5PlayAll (W), Felix (N), mi_spero (E)
Winner: Babamots

1) Felix: Homeworld R2 B3 G3
	mi_spero: Good luck and have fun! 
	mi_spero: Hi, Draw5. :) Can teammates coordinate via pm?
	Draw5PlayAll: Hold on.
	Draw5PlayAll: (Apparently the times were rounded.)

Ok, so this is an unofficial team mode, So it is Felix & MiSpero vs Babamots and me.

Yes, PM communication is legal. However, we have a more pressing issue: Babamots has not signed in for the last seven weeks. I have a trick to try to spur action, but I do not know if it will work. If this fails, we can scrap this game and try to find a more active player.
	mi_spero: @Draw5PlayAll feel free to invite me if we're remaking.
	Draw5PlayAll: The call admin thing was designed to just do that, but nowadays Aaron is busy and we use it to send emails to all players in the game.
	Draw5PlayAll: Oh, and make sure we actually give Babamots a chance.
	mi_spero: Ok. And nice exploit with the call admin! It's always fun to figure out ways to use things in ways they weren't originally intended. :D
	Babamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.
	Babamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.
	Babamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.
	Babamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.
	Babamots: Thanks for letting me stay :-).
	Felix: Cool! Have fun all! MiSpero, feel free to message me so we can coordinate our plan of attack!

2) mi_spero: Homeworld B2 Y1 G3
	mi_spero: @Felix, I think I'm with Draw5.
	Draw5PlayAll: I originally intended opposite sides to be teammates, so yes, MiSpero is with Felix.
	Draw5PlayAll: Belay that! I was looking at the clocks, not the positions. Yes, MiSpero *is* on my team.
	mi_spero: Ok; that makes sense. :D That would be how I would intuitively interpret it too.
	mi_spero: So its me and Felix vs Draw and Babamots. Gl hf!

3) Babamots: Homeworld G3 Y1 B3
	Draw5PlayAll: No, Felix and Babamots are on a team. Felix is north and Babamots is south.

I got confused by the clocks.
	mi_spero: Oh, ok.
	mi_spero: Well, now that's sorted out. :D

4) Draw5PlayAll: Homeworld R1 B2 G3

5) Felix: Build G1 Felix

6) mi_spero: Build G1 Mi_spero
	Felix: Good luck!

7) Babamots: Build B1 Babamots

8) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: I wish I knew if Felix and Babamots were planning anything through secret messages...

9) Felix: Trade G1 Y1 Felix
	mi_spero: :D
	mi_spero: Well, I think it would be GTO to do so, therefore if we act as if they are and play in a maximally exploitative way, which will also be GTO, they can therefore not gain any advantage by deviating from the GTO which we assumed they were enacting. :D So we don't need to know. :D

10) mi_spero: Discover G1 Mi_spero Y3 Tarci

11) Babamots: Build B1 Babamots
	mi_spero: "tarci" ['tar-she] means: "x1 is a star/sun with stellar properties x2." in lojban.
	mi_spero: so "ta tarci lo pelxu" would mean "That star/sun has stellar property 'yellow'" or "That star is yellow".
	mi_spero: I think. lojban grammar is hard.

12) Draw5PlayAll: Trade G1 Y1 Draw5playall

13) Felix: Build G1 Felix
	Draw5PlayAll: vIH ma'eH!
	Babamots: Iä! Iä!
	mi_spero: test i I l L
	mi_spero: @Babamots Is that Na'vi?
	Babamots: That's the cheer of Cthulhu's worshippers.

14) mi_spero: Build G1 Mi_spero
	Felix: I sprek engrish.
	Draw5PlayAll: We all seem to be speaking different languages. Literally.
	Draw5PlayAll: 
	Draw5PlayAll: Well,  more like writing or typing.
	mi_spero: go'i (literally repeats the last statement in the conversation)
	mi_spero: And pronounced "'Go-he". (It's lojban)

15) Babamots: Trade B1 R1 Babamots

16) Draw5PlayAll: Build G1 Draw5playall

17) Felix: Trade G1 B1 Felix
	Draw5PlayAll: yo' weghbogh qach maH.
	mi_spero: I think I'm starting to get the hang of pronouncing the Klingon. Still don't know what it means, though.
	Draw5PlayAll: What property separates the SDG depictions of the R1, G2, B1, Y1, and Y3 ships from the others? 
	mi_spero: what?

18) mi_spero: Build G1 Tarci

19) Babamots: Discover B1 Babamots G2 Ferenginar
	mi_spero: @Draw5PlayAll Ahh!! I get it! They have squares instead of dots?

20) Draw5PlayAll: Discover G1 Draw5playall B3 B3
	Draw5PlayAll: Is that the Ferengi from Star Trek TNG?

21) Felix: B B1 Felix
	Draw5PlayAll: ...keep forgetting I have a 1-2 when I have a 1-3 in every other active game (except one 2-3).
	Babamots: Ferenginar is in fact the Ferengi homeworld. It rains almost everywhere almost all the time.

22) mi_spero: Trade G1 B1 Mi_spero
	Babamots: Happy holiday(s) everyone! Travel safe if that's what you're up to!
	mi_spero: Thanks. Sorry for the slow responses, we're in Wisconsin with family and I don't always have access to the Internet.

23) Babamots: Build B1 Ferenginar

24) Draw5PlayAll: Build G1 B3

25) Felix: T B1 R1 Felix

26) mi_spero: Build G1 Mi_spero

27) Babamots: Trade B1 Y1 Ferenginar

28) Draw5PlayAll: Build Y2 Draw5playall

29) Felix: Build Y2 Felix

30) mi_spero: Build G2 Tarci

31) Babamots: Build Y2 Ferenginar

32) Draw5PlayAll: Move Y2 Draw5playall B3

33) Felix: Build G2 Felix

34) mi_spero: Build G2 Mi_spero

35) Babamots: Discover Y1 Ferenginar G3 Kesprytt

36) Draw5PlayAll: Trade G1 R1 B3

37) Felix: Discover G2 Felix B1 Threat
	Draw5PlayAll: Suq nuH.

MiSpero please do not move until you get my message...

38) mi_spero: Discover G2 Mi_spero B3 Bandulami_spero

39) Babamots: Build B1 Ferenginar
	mi_spero: lookup bandu on vlasisku if you're curious about the name.
	mi_spero: I wanted to say "bandu zo'e la fileks", but there wasn't enough room.
	Draw5PlayAll: Another gimsu? I hope I spelled that correctly...
	Draw5PlayAll: One thing I hate about Klingon is how hard it is to get a noticeable ' sound without sounding too obvious.

40) Draw5PlayAll: Build G1 Draw5playall
	mi_spero: In lojban the ' character makes the English h sound and the . makes the Klingon ' sound, while the x makes the Klingon GH sound.
	mi_spero: Gismu.
	Draw5PlayAll: Oh no. Lojban has that thing too?

41) Felix: Sacrifice Y1 Felix
Move G2 Threat Tarci
Catastrophe Tarci Green
	mi_spero: @Draw5PlayAll yep. Glottal stop, velar fricative, the works. :D
	mi_spero: And it occurs pretty often. .i (glottal stop, i as in eel) denotes the beginning of a sentence. :D

42) mi_spero: Build G1 Bandulami_spero

43) Babamots: Move B1 Ferenginar Kesprytt

44) Draw5PlayAll: Build Y1 Draw5playall
	Draw5PlayAll: Told you...

45) Felix: Build Y2 Felix
	Draw5PlayAll: paw weghbogh Duj tugh!

46) mi_spero: Trade G2 R2 Bandulami_spero
	mi_spero: Yeah, though to be fair, at that point I had to choose between risking my terciary star and my homeworld in green tech.

47) Babamots: Build B1 Kesprytt

48) Draw5PlayAll: Discover G1 Draw5playall B3 B3'
	Draw5PlayAll: MiSpero please... ugh. We need blue and red, but it is harder for me to get blue.

49) Felix: Build G1 Felix
	mi_spero: Considerations like that are not even on my radar, sorry. I can kindof sortof handle that sort of thing in two player games, but I've messed it up in like every game I've played.

50) mi_spero: Build G2 Bandulami_spero

51) Babamots: Sacrifice Y2 Ferenginar
Move B1 Kesprytt Mi_spero
Move B1 Kesprytt Mi_spero
Catastrophe Mi_spero B

52) Draw5PlayAll: Build G2 Draw5playall
	Babamots: Sorry for the delay. Travel was crazy and I've been getting settled back in for a couple of days.

53) Felix: Sacrifice Y2 Felix
Move G1 Felix Mi_spero
Move G3 Felix Mi_spero
Catastrophe Mi_spero Green
	Draw5PlayAll: Oh no.
	Draw5PlayAll: Hmmm... counting on Felix not giving up his only large ship to destroy mi_spero.

54) Babamots: Build Y1 Kesprytt

55) Draw5PlayAll: Trade G2 B2 Draw5playall
	Felix: Shrug. Risky, but probably worth it! Sorry mi_spero! Go get him, Babamots!

56) Felix: Trade R1 G1 Felix
	Draw5PlayAll: I think I will destroy Felix, but then Babamots wilL destroy my own homeworld.

57) Babamots: Move Y1 Kesprytt Ferenginar
	Babamots: That would be kind of convenient since the system will only know that the game over when one player is left. If two allies were left, I guess we'd have to time it out or resign.

58) Draw5PlayAll: Move B2 Draw5playall Kesprytt

59) Felix: Build Y2 Felix

60) Babamots: Build Y2 Kesprytt

61) Draw5PlayAll: Sacrifice R1 B3
Attack Y2S Kesprytt

62) Felix: Discover Y2 Felix G1 Roam
	Draw5PlayAll: Eek.

63) Babamots: Build Y2 Kesprytt

64) Draw5PlayAll: Build Y3 Kesprytt
Catastrophe Kesprytt Y

65) Felix: Build Y1 Felix

66) Babamots: Build Y2 Ferenginar

67) Draw5PlayAll: Build G2 Draw5playall

68) Felix: Discover Y2 Felix R1 Net

69) Babamots: Move Y2 Ferenginar Bandulami_spero

70) Draw5PlayAll: Build G2 B3

71) Felix: Build Y2 Roam

72) Babamots: Build Y3 Ferenginar

73) Draw5PlayAll: Build Y3 B3

74) Felix: Build Y3 Felix
	Draw5PlayAll: nooooooooooo

75) Babamots: Sacrifice R1 Babamots
Attack G2E Bandulami_spero

76) Draw5PlayAll: Move Y1 Draw5playall B3'

77) Felix: Move Y2 Roam B3
	Felix: Yay!

78) Babamots: Move Y1 Ferenginar B3
Catastrophe B3 Y
	Babamots: I kind of wanted to finish a game without getting a green ship, but that's probably not the best strategy.

79) Draw5PlayAll: Trade G2 R2 Draw5playall

80) Felix: Build G2 Felix

81) Babamots: Trade Y2 R2 Bandulami_spero

82) Draw5PlayAll: Build G2 Draw5playall
	Draw5PlayAll: I just hate how seats are alphabetical, not random. It is annoying in Sinister and 2v2.
	Felix: You should suggest it for SDG 2.0

83) Felix: Discover G1 Felix B1 Spindar

84) Babamots: Attack G1E Bandulami_spero
	Babamots: Really? Seating isn't random? That's a major flaw, especially in sinister.
	mi_spero: ditto

85) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 B3
Build B1 Kesprytt

86) Felix: Sacrifice Y1 Felix
Move G1 Spindar B3
Catastrophe B3 Green

87) Babamots: Attack R2E Bandulami_spero

88) Draw5PlayAll: Build Y1 Draw5playall

89) Felix: Sacrifice Y3 Felix
Move G2 Felix Roam
Move G2 Roam B3'
Move G2 B3' Draw5playall

90) Babamots: Sacrifice Y3 Ferenginar
Move G1 Bandulami_spero Draw5playall
Catastrophe Draw5playall G
Move G2 Bandulami_spero Draw5playall
Move R2 Bandulami_spero Draw5playall

91) Babamots: Trade R2 Y2 Draw5playall
	Draw5PlayAll: I hate that my teammate got booted so early.
	Felix: "Give in to your hatred. It will only make you stronger." - Emperor Palpatine.

Such is the nature of 2v2. 

92) Babamots: Attack R2W Draw5playall

	Draw5PlayAll: Why did my R2 need to be overtaken?
	Babamots: I don't know. The system said it was my turn, so I took a turn. I had hoped I could just keep playing with no opponents and use up all the pieces.
	Felix: Good game all! Pleasure being your teammate Babamots!


30958)
Started: 2016.12.18, Ended: 2017.3.2
Participants: MagicJohn (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld R1 B3 G3

2) MagicJohn: Homeworld Y2 B3 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) MagicJohn: Build G1 Magicjohn
	Draw5PlayAll: The fortress, a classic.

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) MagicJohn: Build G1 Magicjohn

7) Draw5PlayAll: Build Y1 Draw5playall

8) MagicJohn: Discover G1 Magicjohn R1 Antagonist

9) Draw5PlayAll: Trade Y1 B1 Draw5playall

10) MagicJohn: Discover G1 Magicjohn Y1 Empire

11) Draw5PlayAll: Build Y1 Draw5playall

12) MagicJohn: Build G1 Magicjohn

13) Draw5PlayAll: Build G2 Draw5playall

14) MagicJohn: Build G2 Empire

15) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Draw5playall
Build G3 Draw5playall
Build Y2 Draw5playall

16) MagicJohn: Build G3 Antagonist

17) Draw5PlayAll: Discover Y2 Draw5playall B2 B2

18) MagicJohn: Trade G3 Y3 Magicjohn

19) Draw5PlayAll: Trade G2 R2 Draw5playall

20) MagicJohn: Sacrifice G3 Antagonist
Build G2 Antagonist
Build G3 Magicjohn
Build G3 Magicjohn

21) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y2 Draw5playall
Build Y3 B2

22) MagicJohn: Discover G3 Magicjohn B1 Colony3

23) Draw5PlayAll: Trade Y3 R3 B2

24) MagicJohn: Trade G1 R1 Magicjohn

25) Draw5PlayAll: Move G2 Draw5playall B2

26) MagicJohn: Build R2 Magicjohn

27) Draw5PlayAll: Build Y3 B2

28) MagicJohn: Discover G1 Empire Y3 Colony4

29) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Scared of green systems now!,
	Draw5PlayAll: Hello?
	MagicJohn: Sorry, wife health issues..... back in the game soon.....

30) MagicJohn: Move R1 Magicjohn Empire

31) Draw5PlayAll: Move Y3 B2 Antagonist

32) MagicJohn: Sacrifice G3 Magicjohn
Build G3 Empire
Build R2 Magicjohn
Build R3 Empire

33) Draw5PlayAll: Attack G2 Antagonist

34) MagicJohn: Discover R3 Empire B2 Colony5

35) Draw5PlayAll: Build R3 B2

36) MagicJohn: Move R2 Magicjohn Empire
	Draw5PlayAll: Never saw colony1 or 2...

37) Draw5PlayAll: Move Y1 Draw5playall B2
	MagicJohn: Sneaky bunch of aliens...

38) MagicJohn: Move R1 Empire B2

39) Draw5PlayAll: Discover R3 B2 B1 B1

40) MagicJohn: Trade R2 B2 Magicjohn

41) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B3 Draw5playall
Build R2 B1

42) MagicJohn: Attack Y1 B2
	Draw5PlayAll: Risky to sweep the bank, but...

43) Draw5PlayAll: Attack R1 B2

44) MagicJohn: Move Y1 B2 Colony3

45) Draw5PlayAll: Move Y2 Draw5playall B2

46) MagicJohn: Move G3 Colony3 Magicjohn

47) Draw5PlayAll: Move Y2 B2 B1

48) MagicJohn: Move Y3 Magicjohn Colony3

49) Draw5PlayAll: Attack G1 Antagonist
	Draw5PlayAll: In this situation, sacrifices and abandonments are questionable as the opponent just builds the ship...

50) MagicJohn: Move Y1 Colony3 Colony5

51) Draw5PlayAll: Sacrifice Y2 B2
Discover B3 Draw5playall Y2 Y2
Move R2 Draw5playall Y2

52) MagicJohn: Sacrifice G1 Colony4
Build Y3 Colony5

53) Draw5PlayAll: Sacrifice B1 Draw5playall
Trade G1 B1 Antagonist

54) MagicJohn: Move B2 Magicjohn Empire

55) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G1 Antagonist
Build G1 B2
Build G3 Draw5playall
	Draw5PlayAll: Blue Teleportation

56) MagicJohn: Move R2 Empire Magicjohn

57) Draw5PlayAll: Sacrifice Y2 B1
Move G1 B2 Empire
Move G2 B2 Empire
Catastrophe Empire Green

58) MagicJohn: Discover Y3 Colony5 G3 Colony6

59) Draw5PlayAll: Build Y2 Antagonist

60) MagicJohn: Move Y1 Colony5 Antagonist

61) Draw5PlayAll: Sacrifice Y2 Antagonist
Move G1 Draw5playall B2
Move G1 B2 B1

62) MagicJohn: Build Y2 Colony6

63) Draw5PlayAll: Build G1 B1

64) MagicJohn: Move Y1 Antagonist Colony5

65) Draw5PlayAll: Build G2 B1

66) MagicJohn: Pass

67) Draw5PlayAll: Move G1 Antagonist Magicjohn

68) MagicJohn: Attack G1 Magicjohn
	Draw5PlayAll: !

69) Draw5PlayAll: Sacrifice Y3 Antagonist
Move G1 B1 Magicjohn
Move G1 B1 Magicjohn
Catastrophe Magicjohn Green
Move R3 B1 Magicjohn

70) MagicJohn: Sacrifice Y3 Colony6
Move Y3 Colony3 Magicjohn
Move R3 Colony5 Empire
Move R3 Empire Magicjohn

71) Draw5PlayAll: Sacrifice R3 B2
Attack R3 Magicjohn
Attack Y3 Magicjohn
Attack R2 Magicjohn
	Draw5PlayAll: Gotcha.
	MagicJohn: Yes, things have been a bit hopeless for several moves now.  Well played.
	Draw5PlayAll: You neither move nor resign??
	MagicJohn: getting impatient are we??



31009)
Variants: "Hard time"
Started: 2016.12.23, Ended: 2017.1.3
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 R1 G3

2) Felix: H B1 R3 G3
	dlwillson: Whoa! What happened?
	Felix: I hit the wrong button by mistake :( tiny phone screen
	Felix: I hit the wrong button by mistake :( tiny phone screen
	Felix: I hit the wrong button by mistake :( tiny phone screen

3) dlwillson: B G1 Dlwillson
	Felix: Let's make this interesting :)

4) Felix: Build G1 Felix
	dlwillson: B2 R2 would have been more interesting. :-)
	dlwillson: Also, I've done exactly that. Now, I zoom WAY in before I click accept. ;-)
	Draw5PlayAll: What "wrong button"?
	Draw5PlayAll: Oh wow, a competition for the #1 seed! Let the best galactic overlord win!

5) dlwillson: T G1 Y1 Dlwillson

6) Felix: T G1 Y1 Felix
	dlwillson: When challenged, "accept" and "decline" appear right next to each other.

7) dlwillson: B G1 Dlwillson

8) Felix: B G1 Felix

9) dlwillson: D G1 Dlwillson B2 Sky

10) Felix: Trade G1 B1 Felix

11) dlwillson: B G1 Dlwillson

12) Felix: Build B1 Felix

13) dlwillson: B G1 Sky

14) Felix: Discover B1 Felix B2 Synchron

15) dlwillson: B G2 Sky

16) Felix: Build B2 Felix

17) dlwillson: Trade G2 Y2 Sky

18) Felix: Discover B2 Felix G2 Occo

19) dlwillson: Sacrifice Y2 Sky
Discover G1 Sky B3 Sea
Discover G1 Sky B3 Bluesky

20) Felix: Build B2 Occo

21) dlwillson: Build G2 Bluesky

22) Felix: Trade B2 R2 Occo

23) dlwillson: S G3 Dlwillson
B G2 Dlwillson
B G3 Dlwillson
B G3 Bluesky

24) Felix: Build B2 Occo

25) dlwillson: T G2 R2 Bluesky

26) Felix: Build G2 Felix

27) dlwillson: M G2 Dlwillson Synchron

28) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Felix
Build Y2 Felix

29) dlwillson: Sacrifice G3 Bluesky
Build Y2 Dlwillson
Build R1 Bluesky
Build G3 Synchron

30) Felix: Sacrifice Y1 Felix
Move B1 Synchron Dlwillson

31) dlwillson: A B1 Dlwillson

32) Felix: Sacrifice Y2 Felix
Move B2 Occo Dlwillson
Move B2 Occo Dlwillson
Catastrophe Dlwillson Blue

33) dlwillson: S Y2 Dlwillson
M G2 Synchron Felix
M G3 Synchron Felix
C Felix G

34) Felix: Sacrifice Y1 Felix
Move R2 Occo Sea

35) dlwillson: S G3 Dlwillson
B G2 Sea
B G2 Sea
B G2 Dlwillson
	Felix: Wow, excellent reversal. I didn't anticipate that in the slightest.

36) Felix: Sacrifice R2 Sea
Pass
Pass

	dlwillson: Good game, Felix! I enjoyed the interesting symmetry of the small universe. I may do that again, from 2nd seat.
	Felix: Likewise! Excellent game. I had fun and look forward to a rematch!


30934)
Started: 2016.12.23, Ended: 2017.1.10
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: I think I will lose that other game. This time I am not going so extreme on the yellows.

2) Felix: H Y2 B3 G3
	Draw5PlayAll: And if you want me to vary my start, do not let me go first and choose a 1-3 homeworld.
	Felix: It's up to you whether you vary your start! And whoever goes first is chosen randomly.

3) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: But why do you repeat the B3? Shouldn't you have flipped the colors of your stars?

4) Felix: B G1 Felix

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Felix: Trade G1 Y1 Felix
	Felix: *Shrug* I'm not sure why it matters if I flip them or not :) There will just be fewer B3s available now.

7) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: For an extreme example see my game vs mi_spero who chose an R1 when that was already there.

8) Felix: Build G1 Felix
	Felix: That can sometimes be used strategically to one's own advantage. I will often choose a b1 on purpose if my opponent starts with a b1. Combining that with a b3 starter can give one an effective boost into dominating blue.

9) Draw5PlayAll: Discover G1 Draw5playall B2 B2
	Draw5PlayAll: So you start with a double blue??

10) Felix: Trade G1 B1 Felix
	Draw5PlayAll: Basically I need to be sure I get every color and a good supply of them. G and Y are easy since I can have them in my HW without fear of a 4-boom.
	Draw5PlayAll: ...blowing up one of my stars, that is.
	Felix: Yep, start with a b1/g2 or b1/g3 homeworld and a b3 ship. It's unorthodox but it has worked very effectively. There's an epic game between wil and twoshort where twoshort used it to great effect. I'll see if I can find it.

11) Draw5PlayAll: Build G1 Draw5playall
	Felix: Ah, it was Endo, not TwoShort. Here it is: http://superdupergames.org/?page=archive_play&gid=28818&idx=0

Simply divine.

12) Felix: Build B1 Felix
	Draw5PlayAll: Interesting, but (1) I dislike green homeworld stars and (2) I only use B3 (not B1) stars unless I am going second.

I like setting up the Factory in my homeworld, and then using yellow ships for extra defense.

13) Draw5PlayAll: Trade G1 B1 Draw5playall
	Felix: I agree with the green homeworld thing in general, but being unpredictable has its benefits :)

14) Felix: Discover B1 Felix G1 Arrakis

15) Draw5PlayAll: Build B2 Draw5playall

16) Felix: Build B2 Arrakis

17) Draw5PlayAll: Trade B2 Y2 Draw5playall

18) Felix: Trade B1 R1 Arrakis

19) Draw5PlayAll: Trade Y2 R2 Draw5playall

20) Felix: Move Y1 Felix Arrakis

21) Draw5PlayAll: Move R2 Draw5playall B2

22) Felix: Sacrifice G3 Felix
Build B1 Arrakis
Build B2 Arrakis
Build B3 Felix

23) Draw5PlayAll: Build G1 Draw5playall
	Felix: This is probably so dumb.

24) Felix: Sacrifice B2 Arrakis
Trade B2 Y2 Arrakis
Trade B3 G3 Felix
	Draw5PlayAll: I need the yellows more anyway.

25) Draw5PlayAll: Build G2 B2
	Draw5PlayAll: That looks good.

26) Felix: Build G2 Felix
	Felix: Oh, I just made my move based on your first move. Hold on.

27) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Draw5playall
Build G3 Draw5playall
Build Y1 Draw5playall

28) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Felix
Build B2 Arrakis

29) Draw5PlayAll: Discover G2 Draw5playall R2 R2
	Draw5PlayAll: Now let me try.

30) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Felix
Build B3 Arrakis

31) Draw5PlayAll: Move B1 Draw5playall R2

32) Felix: Discover B2 Arrakis R2 Bazoik

33) Draw5PlayAll: Move Y1 Draw5playall R2

34) Felix: Move Y1 Arrakis Bazoik
	Draw5PlayAll: Agh you got all the blue again! I should have sent the B1 first!

35) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Draw5playall
Build Y3 R2
Build G3 Draw5playall
	Felix: Yes, I think your first move was better back when you undid your move...

36) Felix: Sacrifice B2 Felix
Trade G3 Y3 Felix
Trade B3 Y3 Arrakis

37) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 R2
Build B2 R2
	Draw5PlayAll: I can do this though
	Draw5PlayAll: No!
	Draw5PlayAll: You only get one undo...

38) Felix: Trade Y3 R3 Arrakis
	Felix: I ended up doing the same move anyway. And who says you only get one undo? You can undo every move one time.

39) Draw5PlayAll: Build R1 B2
	Draw5PlayAll: 1. I meant one undo per turn, yeah.
2. I need to snag those "sac G3 build all one color" things more often and maybe I won't lose vs you.

40) Felix: Sacrifice G3 Felix
Build Y3 Bazoik
Build B3 Bazoik
Build G3 Felix
	Felix: You might not lose even as is. I got hung up for a long time on that move and I'm still not sure I made a good one.

41) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R2 B2 Arrakis
Move R1 B2 Arrakis
Catastrophe Arrakis Red
	Draw5PlayAll: I did not like opening up the B3 but you could factory build both anyway.

42) Felix: Trade B2 R2 Bazoik

43) Draw5PlayAll: Trade G3 R3 R2

44) Felix: Trade B1 R1 Arrakis

45) Draw5PlayAll: Move R3 R2 Arrakis

46) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R1 Arrakis
Build R3 Arrakis
Catastrophe Arrakis Red

47) Draw5PlayAll: Trade Y3 R3 R2

48) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Felix
Build Y3 Arrakis

49) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 R2
Build B1 R2

50) Felix: S G3 Felix
B G3 Felix
B B2 Bazoik
B R1 Bazoik

51) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover R3 R2 Y1 Y1

52) Felix: Sacrifice Y2 Felix
Move R2 Bazoik Arrakis
Discover R2 Arrakis Y2 Dune

53) Draw5PlayAll: Move G2 R2 Y1

54) Felix: Move Y3 Arrakis B2
	Draw5PlayAll: This is probably resignable...

55) Draw5PlayAll: Sacrifice G2 B2
Build G2 Y1
Build R1 Y1
	Felix: It could be interesting to play out, but it's up to you!

56) Felix: Sacrifice Y2 Arrakis
Move Y3 B2 Y1
Move B3 Bazoik Y1

	Felix: I would have been interested to see how it played out, but I think I would have had you in the end so that was probably a good call. Good game though! It took me quite a large number of games to get a firm grasp on the "long game" and develop a winning fleet from turn 1. I'm not always good at it, but practice, practice, practice. Look forward to our rematch!
	Draw5PlayAll: I need something of every color, but I need to watch those "color bombs" where someone sacs a G3 and builds all blue or yellow. Yellow and red seem to be my weak points.


30931)
Started: 2016.12.24, Ended: 2017.1.5
Participants: mi_spero (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3 *

2) mi_spero: Homeworld R1 B3 G3

3) Draw5PlayAll: Build G1 Draw5playall
	mi_spero: To match to come salute I you anon, 
For further chance is naught at duel's end.

4) mi_spero: Build G1 Mi_spero
	Draw5PlayAll: wo' not ghaH jey!
	Draw5PlayAll: ...wait, you picked EXACTLY the same homeworld as me.
	mi_spero: Draw5, the love I bear thee can afford, 
No better term than this: thou art a villain. :D

5) Draw5PlayAll: Trade G1 R1 Draw5playall

6) mi_spero: Build G1 Mi_spero
	Draw5PlayAll: We have decided to take a share of the only small weaponry available in order to build Ambassador-class ships quickly.

(Constellation = 1 Ambassador = 2 Galaxy = 3)

7) Draw5PlayAll: Build R2 Draw5playall
	mi_spero: I underestimated the severity of this course of events when I chose my homeworld.

8) mi_spero: Trade G1 Y1 Mi_spero

9) Draw5PlayAll: Trade R2 Y2 Draw5playall

10) mi_spero: Build Y1 Mi_spero
	Draw5PlayAll: I call that maneuver a "pump" for no real reason.

11) Draw5PlayAll: Build R2 Draw5playall

12) mi_spero: Trade G1 B1 Mi_spero

13) Draw5PlayAll: Trade R2 B2 Draw5playall

14) mi_spero: Build G1 Mi_spero

15) Draw5PlayAll: Discover B2 Draw5playall G2 G2

16) mi_spero: Discover B1 Mi_spero G2 Fanri

17) Draw5PlayAll: Build R2 Draw5playall

	mi_spero: gg
	Draw5PlayAll: You resign way too soon.
	mi_spero: Really? I'm behind both in material, and by several tempi. In addition, you have a positional advantage, particularly in the area of blue as I will have to work very hard and waste multiple tempi bringing in blue without risking catastrophe.


31027)
Variants: "Hard time"
Started: 2016.12.24, Ended: 2017.1.11
Participants: Babamots (S), mi_spero (N)
Winner: Babamots

1) mi_spero: Homeworld B3 G1 Y3
	mi_spero: Good luck and have fun.

2) Babamots: Homeworld B2 R1 G3

3) mi_spero: Build Y1 Mi_spero

4) Babamots: Build G1 Babamots

5) mi_spero: Trade Y1 R1 Mi_spero

6) Babamots: Trade G1 Y1 Babamots

7) mi_spero: Build Y1 Mi_spero

8) Babamots: Build G1 Babamots

9) mi_spero: Build R1 Mi_spero

10) Babamots: Build G1 Babamots

11) mi_spero: Build R2 Mi_spero

12) Babamots: Discover G1 Babamots Y3 Wolf359

13) mi_spero: Trade R2 G2 Mi_spero

14) Babamots: Sacrifice G3 Babamots
Build G2 Wolf359
Build G2 Wolf359
Build G3 Babamots

15) mi_spero: Build G3 Mi_spero
	Babamots: Not quite what I meant.

16) Babamots: Discover G2 Wolf359 B2 Kronos
	Draw5PlayAll: Hmmm... Wolf359 is a real star system, but it could also be a Trek reference?

17) mi_spero: Discover G2 Mi_spero B2 Tamaran

18) Babamots: Sacrifice G3 Babamots
Build G3 Babamots
Build G3 Kronos
Build Y1 Babamots
	Babamots: I'll let you guess.

19) mi_spero: Build R2 Mi_spero

20) Babamots: Trade G2 R2 Kronos
	Draw5PlayAll: I used the correct form, Qo'noS, as a red star a while back since red = warriors.

21) mi_spero: Move R2 Mi_spero Tamaran
	Babamots: I prefer to use the English spelling for consistency (I don't insist on saying "Deutschland" either).

22) Babamots: Sacrifice G3 Babamots
Build G2 Kronos
Build Y2 Babamots
Build G3 Babamots
	mi_spero: Well, Deutschland makes more sense. I don't speak German, but it's more than a bit weird that the Germans speak Deutsch, the Dutch speak Nederlands (or something like that), and the Netherlands isn't even a country, it's a region. Some words obviously weren't borrowed into English by linguists.
	Babamots: I'm OK with calling Netherlands a country since its American municipalities are pretty minor. I always forget what the deal is with "Holland," though. I'm also stubborn enough to keep saying "Ivory Coast."

23) mi_spero: Build Y2 Mi_spero

24) Babamots: Discover Y1 Babamots B3 Wadi

25) mi_spero: Trade Y1 B1 Mi_spero

26) Babamots: Sacrifice G3 Babamots
Build Y1 Babamots
Build Y2 Wadi
Build G3 Babamots

27) mi_spero: Move Y3 Mi_spero Tamaran

28) Babamots: Sacrifice Y2 Babamots
Move G3 Kronos Mi_spero
Move G2 Kronos Mi_spero
Catastrophe Mi_spero G

	Babamots: Sorry about the double whammy tonight with catastrophes in both games. I guess this Kronos was pretty warlike as well :-(.
	Draw5PlayAll: What is Wadi?
	Babamots: It's the home system of the game-loving people in the DS9 episode "Move Along Home."
	mi_spero: Ehh, to be expected given my skill at this game. :D
	mi_spero: gg
	Babamots: gg


31016)
Started: 2016.12.27, Ended: 2017.2.9
Participants: dragon76n (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3
	dragon76n: Hello.
	Felix: Hi again! Have fun!

2) dragon76n: Homeworld B1 G2 Y3

3) Felix: Build G1 Felix

4) dragon76n: Build Y1 Dragon76n

5) Felix: Trade G1 Y1 Felix

6) dragon76n: T Y1 B1 Dragon76n

7) Felix: Trade Y1 B1 Felix

8) dragon76n: Build B2 Dragon76n
	Felix: Doh! Silly mistake.
	dragon76n: I don't have a ton of experience with Homeworlds yet, but in the games I've played, I find myself getting trapped out of colors way too often. 

9) Felix: Build G1 Felix
	Felix: That happened a lot to me early on too. You've got a good start so far and almost locked me out of blue!

10) dragon76n: Trade B2 G2 Dragon76n

11) Felix: Trade G1 Y1 Felix

12) dragon76n: Build B2 Dragon76n

13) Felix: Discover B1 Felix G1 Out

14) dragon76n: Discover B2 Dragon76n G3 Grethr

15) Felix: Build B2 Out

16) dragon76n: B Y1 Dragon76n

17) Felix: Trade B2 Y2 Out

18) dragon76n: Build B2 Grethr

19) Felix: Build B2 Out

20) dragon76n: Trade B2 R2 Grethr

21) Felix: Trade B2 R2 Out

22) dragon76n: Build B2 Grethr

23) Felix: Build B2 Out

24) dragon76n: Trade B2 Y2 Grethr

25) Felix: D B2 Out G3 Rim

26) dragon76n: Build Y1 Grethr

27) Felix: Build G1 Felix

28) dragon76n: T Y2 G2 Grethr

29) Felix: Discover G1 Felix R1 Bazoik

30) dragon76n: Move B2 Grethr Bazoik

31) Felix: Sacrifice G1 Bazoik
Build G1 Felix

32) dragon76n: S G2 Dragon76n
B B2 Bazoik
B B3 Bazoik

33) Felix: Build B3 Rim

34) dragon76n: S B2 Bazoik
T B1 R1 Dragon76n
T B2 Y2 Bazoik

35) Felix: Trade B3 Y3 Rim

36) dragon76n: Sacrifice G2 Grethr
Build Y2 Bazoik
Build Y3 Bazoik

37) Felix: Move Y1 Felix Bazoik
Catastrophe Bazoik Yellow

38) dragon76n: Trade Y3 R3 Dragon76n

39) Felix: Move R2 Out Rim

40) dragon76n: B Y1 Grethr

41) Felix: Build R1 Rim

42) dragon76n: M Y1 Grethr Bazoik

43) Felix: Sacrifice Y2 Out
Move R1 Rim Dragon76n
Move R2 Rim Dragon76n
Catastrophe Dragon76n Red

44) dragon76n: B Y2 Dragon76n

45) Felix: Build Y2 Rim

46) dragon76n: Trade Y1 G1 Dragon76n

47) Felix: Trade Y2 R2 Rim

48) dragon76n: S Y2 Dragon76n
M B3 Bazoik Grethr
M B3 Grethr Dragon76n

49) Felix: Build B1 Rim

50) dragon76n: T B3 R3 Dragon76n

51) Felix: Build B2 Rim

52) dragon76n: Build G2 Dragon76n

53) Felix: Build Y1 Rim

54) dragon76n: B Y2 Grethr

55) Felix: Move Y3 Rim Out

56) dragon76n: Sacrifice Y2 Grethr
Discover G2 Dragon76n Y3 Yelthr
Move G1 Dragon76n Grethr

57) Felix: Sacrifice G3 Felix
Build G2 Felix
Build G3 Felix
Build Y2 Rim

58) dragon76n: B Y2 Grethr

59) Felix: Sacrifice Y1 Rim
Move G2 Felix Bazoik

60) dragon76n: D G1 Grethr Y1 Yelone

61) Felix: Attack Y1 Bazoik

62) dragon76n: M G1 Yelone Felix

63) Felix: Trade G1 Y1 Felix

64) dragon76n: Sacrifice G2 Yelthr
Build G1 Felix
Build G2 Felix
Catastrophe Felix Green

65) Felix: Sacrifice G2 Bazoik
Build Y2 Rim
Build Y3 Felix

66) dragon76n: B Y3 Grethr

67) Felix: Move Y1 Bazoik Grethr
Catastrophe Grethr Yellow

68) dragon76n: B R1 Dragon76n

69) Felix: Trade Y3 G3 Felix

70) dragon76n: Trade R1 Y1 Dragon76n

71) Felix: Move B1 Rim Dragon76n

72) dragon76n: B R1 Grethr

73) Felix: Sacrifice Y2 Rim
Move B2 Rim Dragon76n
Move B2 Rim Dragon76n
Catastrophe Dragon76n Blue

74) dragon76n: B Y1 Dragon76n

75) Felix: Build G1 Felix

76) dragon76n: D Y1 Dragon76n B3 Bluthr

77) Felix: Trade B1 G1 Out

78) dragon76n: Build Y2 Dragon76n

79) Felix: Sacrifice Y3 Out
Move G1 Felix Out
Move G1 Out Dragon76n
Move G1 Out Dragon76n

80) dragon76n: S R2 Grethr
A G1 Dragon76n
A G1 Dragon76n

81) Felix: Sacrifice Y2 Rim
Discover G3 Felix B1 Step
Move G3 Step Dragon76n
Catastrophe Dragon76n Green

	Felix: Good game! That was fun. I'd be happy to rematch any time :)


31050)
Variants: "Sinister"
Started: 2016.12.29, Ended: 2017.2.28
Participants: Draw5PlayAll (S), zeder (N), mi_spero (E)
Winner: Draw5PlayAll

1) zeder: Homeworld B1 G2 Y3

2) mi_spero: Homeworld G1 B3 Y3

3) Draw5PlayAll: Homeworld B2 R1 G3
	mi_spero: Glhf

4) zeder: Build Y1 Zeder
	Draw5PlayAll: Hold it, I want to be next to zeder.

5) mi_spero: Build Y1 Mi_spero

6) Draw5PlayAll: Build G1 Draw5playall

7) zeder: Trade Y1 G1 Zeder

8) mi_spero: Trade Y1 B1 Mi_spero

9) Draw5PlayAll: Trade G1 Y1 Draw5playall

10) zeder: Build Y1 Zeder

11) mi_spero: Build Y1 Mi_spero
	Draw5PlayAll: Hello! Is there a problem?
	Draw5PlayAll: The call admin button is really more of a "wake up players" button.

12) Draw5PlayAll: Build G1 Draw5playall

13) zeder: Discover G1 Zeder Y3 Turtles

14) mi_spero: Build B1 Mi_spero

15) Draw5PlayAll: Trade G1 B1 Draw5playall

16) zeder: Build G1 Turtles

17) mi_spero: Discover B1 Mi_spero G2 Ichidai

18) Draw5PlayAll: Build B2 Draw5playall

19) zeder: Trade Y3 B3 Zeder
	mi_spero: I tried to use &#12300;&#19968;&#21488;&#12301; , but it wouldn't let me. :( That would have been pretty trollish, though. :D
	mi_spero: Lol. Even chat is glowering at me. :D
	mi_spero: It was just the kanji for one and the kanji for "machine counter".
	Draw5PlayAll: Is that star name a lojban word?

20) mi_spero: Build B2 Ichidai
	mi_spero: nahh, it means "one machine (big ones, like cars)" in Japanese afaik. I'm still learning.

21) Draw5PlayAll: Trade B2 R2 Draw5playall

22) zeder: Build B2 Zeder

23) mi_spero: Trade B2 G2 Ichidai

24) Draw5PlayAll: Move R2 Draw5playall Turtles

25) zeder: Trade B3 R3 Zeder

26) mi_spero: Build B2 Ichidai

27) Draw5PlayAll: Attack G1N Turtles

28) zeder: Move G1 Turtles Ichidai

29) mi_spero: Trade B2 R2 Ichidai

30) Draw5PlayAll: Move B1 Draw5playall Turtles

31) zeder: Build G1 Ichidai
Catastrophe Ichidai Green
	Draw5PlayAll: build G1 ichidai
catastrophe ichidai green

32) mi_spero: Trade Y1 R1 Mi_spero

33) Draw5PlayAll: Build B1 Turtles

34) zeder: Discover B2 Zeder Y3 Foo

35) mi_spero: Build Y1 Mi_spero

36) Draw5PlayAll: Build G1 Draw5playall

37) zeder: Build R1 Zeder

38) mi_spero: Build B2 Mi_spero

39) Draw5PlayAll: Build Y1 Draw5playall

40) zeder: Build Y2 Zeder

41) mi_spero: Trade B2 G2 Mi_spero

42) Draw5PlayAll: Build Y2 Draw5playall

	Draw5PlayAll: I hate this.
	mi_spero: Draw5, can we invite zeder (or whomever to join your zendo game? It's not very fun with only one person. :()
	Draw5PlayAll: Zeder timed out. I will ask around.


34099)
Variants: "Unrated, Hard time"
Started: 2018.4.28, Ended: 2018.5.13
Participants: Babamots (S), wil (N)
Winner: Babamots

1) wil: Homeworld B2 Y1 G3
	wil: Is this it?  Do you think there is no way I can make a mistake now?
	wil: I'm assuming if I win this will be our tourney game...and if I lose the tourney game it will just be a game.

2) Babamots: Homeworld B3 G1 Y3
	Babamots: I didn't issue this challenge until I was positive you would win game #8. If you did happen to lose, then this game would just be for fun I suppose. Otherwise, I intend this to be game #9 of the bracket.

3) wil: Build G1 Wil
	wil: Perfect...makes sense...so if either win we have to win the game after...and if we win that...we are in a best out of three with Felix right?
	wil: any who...  good luck, have fun..  thx so much for facilitating this...it has been a blast.

4) Babamots: Build Y1 Babamots
	Babamots: Sounds like you expected another game after this one. Winner of this game plays Felix in a best of three for the championship.

5) wil: Build G1 Wil
	wil: I do...don't I?  if he beats either of us first round, we both have two losses...double elimination achieved.  If either of us wins...we are now at one loss each and it goes into the final playoff???  He is only the only undefeated right?

6) Babamots: Build Y1 Babamots

7) wil: Discover G1 Wil Y3 Y3
	Babamots: The loser of this game is out. The winner of this game plays a best of three with Felix (in the bracket, they're labelled games #10-12). Even if Felix wins game #10, the best of three goes on. It's not strictly double elimination.

8) Babamots: Discover Y1 Babamots B2 Betazed

9) wil: Build G2 Wil

10) Babamots: Build Y2 Babamots

11) wil: Discover G1 Wil B3 B3

12) Babamots: Trade Y2 G2 Babamots

13) wil: Sacrifice G3 Wil
Build G2 Y3
Build G3 B3
Build G3 Wil

14) Babamots: Build G3 Babamots

15) wil: Trade G3 Y3 Wil

16) Babamots: Sacrifice G2 Babamots
Build Y2 Betazed
Build Y2 Betazed

17) wil: Sacrifice G3 B3
Build G2 Y3
Build G3 B3
Build G3 Wil

18) Babamots: Build Y2 Babamots

19) wil: Trade G1 R1 B3
	Babamots: I'm hoping you don't have enough yellow to expand effectively.

20) Babamots: Trade Y2 R2 Babamots
	wil: lol, I am hoping I do!

21) wil: Discover G2 Y3 Y2 Y2

22) Babamots: Move G3 Babamots Betazed
	wil: I am so lousy about thinking about moves...I always plan on taking my time, considering options...and then when you play...I just make a knee jerk reaction!

	Babamots: I'm working on breaking that habit. I lose games when I pick moves at the bus stop.

23) wil: Sacrifice G3 Wil
Build G1 B3
Build R1 B3
Build G3 Wil

24) Babamots: Build R1 Babamots

25) wil: Move Y3 Wil B3

26) Babamots: Build R2 Babamots

27) wil: Move R1 B3 Y2
	wil: While I try to look long and hard at moves...and still knee jerk... I think often my knee jerks are right and paralysis analysis doesn't help me...  What helps most is making the move and then looking at what I've done before I move the coin.    If we are to ever have live games, chess clocks will be a thing...in order for brackets to be completed in a weekend.
	Babamots: Sorry for the delay; it's been a stressful week.

28) Babamots: Trade R1 B1 Babamots
	wil: things happen....talkin to Felix, he has a second baby due in a couple weeks...he will be swamped whoever he plays.

29) wil: S G3 B3
B G3 Y2
B R1 Y2
B R2 B3
	Babamots: I've gotten bored with always starting out with green ships, but my yellow experiment isn't working out well.
	Babamots: And I just haven't been very pleased with life in general for a while, so it's pretty hard to care about the game. You deserve to win more than I do.

30) Babamots: Move R2 Babamots Betazed
	wil: Sorry to hear that brother...

31) wil: D R2 B3 B2 B2
	wil: I thought you had some plan with the y opening, I know I've been beat by them, and also don't play them well.
	wil: You've done us all a great service running these tourmanents

32) Babamots: Build R3 Betazed

33) wil: S G3 Wil
B G3 Wil
B R3 B3
B R3 B2

34) Babamots: Move R3 Betazed Y3

35) wil: T R3 B3 B3

36) Babamots: Sacrifice R2 Betazed
Attack G2N Y3
Attack G1N Y3

37) wil: T G2 R2 Wil

38) Babamots: Build R3 Babamots
	wil: Lol, I didn't even look and saw what I left behind and after words figured I deserve what I get.
	Babamots: I made such huge mistakes in my games this tournament that I think I was overdue for my opponent to make a few :-P.

39) wil: S G3 Y2
B G2 Y2
B G3 B3
P
	wil: Lol, bus stop moves

40) Babamots: Sacrifice Y2 Betazed
Move R2 Babamots Betazed
Move Y3 Babamots Y2

41) wil: S G2 Y2
B G2 Wil
B Y2 B3

42) Babamots: Sacrifice Y3 Y2
Move R3 Y3 Wil
Move G2 Y3 Wil
Move G1 Y3 Wil
Catastrophe Wil G
	wil: Yeah, that mistake cost me!  I was working outside had come in and saw you moved and just played the planned move saved in notes and didn't even glance at what you had done...maximum silliness

43) wil: S Y3 B3
M G1 B3 Wil
M B3 B3 Wil
M R1 B3 Wil
	wil: Intent to move the b3 in there to protect was lost on me too

44) Babamots: Sacrifice R3 Babamots
Attack B3N Wil
Attack R2N Wil
Attack G1N Wil

45) wil: S Y2 B3
M R3 B2 Babamots
M G3 B3 B2
	wil: Well, I deserve to lose this one.

46) Babamots: Attack R1N Wil
	Babamots: It's miserable to lose a game to mistakes. I know exactly where you're at. I didn't handle my last loss well.
	wil: This is a game of capitalizing on mistakes, the big and small...
	wil: Good luck

	Babamots: Sorry for being moody earlier. Neither the game nor anything else seemed to be going right.
	Babamots: See you next time!
	Draw5PlayAll: So where's is this game in the tournament schedule?
	wil: The semi final... Babamots goes in two a best of 3 with Felix...  You were worried about it going on to long, I am said it is over and hope the next one takes a year and a half or more!
	Babamots: The tournament is going on 9 months, so I would call it pretty long. I would prefer to have more frequent, shorter tournaments in the future. I'll recommend a straight round-robin for next time. The bracket is very slow because some games have to wait for others to finish.


30957)
Started: 2017.1.2, Ended: 2017.1.2
Participants: floydmasterson (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

	Draw5PlayAll: What?


31044)
Started: 2017.1.2, Ended: 2017.3.6
Participants: WindMillCobra (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 R3 G3
	Felix: Hi there! First game?

2) WindMillCobra: Homeworld Y3 B2 G3
	WindMillCobra: Yes this is my First Game
	WindMillCobra: Yes this is my First Game

3) Felix: Build G1 Felix
	Felix: Awesome! I'm happy to help you learn. Let me know if you have any questions, and if I think of tips, I'll let you know.

4) WindMillCobra: Build G1 Windmillcobra
	Felix: You're off to a good start with the colors you picked for your homeworld and starting ship. Choosing the same size pieces as my homeworld will make the playing field be quite small and tight, however.
	WindMillCobra: Thanks a lot for your advice!
	WindMillCobra: I have played one game of homeworlds irl but I am still a beginner 

5) Felix: Trade G1 Y1 Felix
	WindMillCobra: Could you tell me what you think good starting size and color homeworlds are?
	Felix: I think as a beginner, the best starting size and color homeworld is to use small and medium stars in yellow and blue, with a large green ship as your starter. It doesn't matter too much which star is yellow and which is blue. Some people prefer to go with red and blue instead of yellow and blue, which is what I have done here, and it provides defense at home, but it makes it slower to move at first since there are no yellows. It comes down to preference, but as a beginner I think yellow and blue with a green ship is best.

6) WindMillCobra: Trade G1 B1 Windmillcobra
	WindMillCobra: oh ok thanks!

7) Felix: Build Y1 Felix

8) WindMillCobra: Build B1 Windmillcobra

9) Felix: Trade Y1 B1 Felix

10) WindMillCobra: Trade B1 Y1 Windmillcobra

11) Felix: Discover B1 Felix G1 Out

12) WindMillCobra: Build Y1 Windmillcobra

13) Felix: Build Y2 Felix

14) WindMillCobra: Discover Y1 Windmillcobra G1 Star

15) Felix: Move Y1 Felix Out

16) WindMillCobra: Build Y2 Star

17) Felix: B Y2 Out

18) WindMillCobra: Move Y1 Windmillcobra Out

19) Felix: Trade Y2 R2 Out



31106)
Started: 2017.1.2, Ended: 2017.1.3
Participants: WindMillCobra (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3
	Felix: Did you mean to start 2 games?

	WindMillCobra: No I didn't I am going to end this one



31110)
Started: 2017.1.3, Ended: 2017.1.9
Participants: zeder (S), floydmasterson (N)
Winner: zeder



30932)
Started: 2017.1.3, Ended: 2017.3.8
Participants: WindMillCobra (S), mi_spero (N), Draw5PlayAll (E)
Winner: Draw5PlayAll

1) mi_spero: Homeworld B1 Y3 G3

2) Draw5PlayAll: Homeworld B2 R1 G3

3) WindMillCobra: Homeworld Y2 B1 G3

4) mi_spero: Build G1 Mi_spero

5) Draw5PlayAll: Build G1 Draw5playall

6) WindMillCobra: Build G1 Windmillcobra

7) mi_spero: Trade G1 B1 Mi_spero
	mi_spero: hi everyone!

8) Draw5PlayAll: Trade G1 B1 Draw5playall
	Draw5PlayAll: Quick!

9) WindMillCobra: Trade G1 Y1 Windmillcobra

10) mi_spero: Build B2 Mi_spero

11) Draw5PlayAll: Build B2 Draw5playall

12) Draw5PlayAll: Trade B2 Y2 Draw5playall
	Draw5PlayAll: GRRR no yellow :(
	mi_spero: Anyone know where WindMillCobra
	mi_spero:  is?
	Draw5PlayAll: Time to move on.

13) mi_spero: Trade B1 R1 Mi_spero

14) Draw5PlayAll: Build G1 Draw5playall

15) mi_spero: Build R1 Mi_spero

16) Draw5PlayAll: Trade G1 R1 Draw5playall

17) mi_spero: Discover R1 Mi_spero G2 Lojpluka

18) Draw5PlayAll: Build R2 Draw5playall

19) mi_spero: Build R2 Lojpluka
	Draw5PlayAll: Obviously "loj" is logic and "pluka" is...

20) Draw5PlayAll: Discover R2 Draw5playall G3 G3
	mi_spero: pluka: x1 (event/state) seems pleasant to/pleases x2 under conditions x3.

So lojpluka is when it's pleasing in a logical sort of way, however you want to interpret that.

21) mi_spero: Move B2 Mi_spero Lojpluka

22) Draw5PlayAll: Build R2 G3

23) mi_spero: Trade R1 Y1 Lojpluka

24) Draw5PlayAll: Move B1 Draw5playall G3

25) mi_spero: Build R1 Mi_spero

26) Draw5PlayAll: Trade R2 Y2 G3

27) mi_spero: Discover R1 Mi_spero G2 Surreal Numbers

28) Draw5PlayAll: Build R2 Draw5playall

29) mi_spero: Build Y1 Lojpluka

30) Draw5PlayAll: Trade R2 G2 Draw5playall

31) mi_spero: Build R2 Surreal

32) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 G3
Build R3 Draw5playall
Build G1 Draw5playall

33) mi_spero: Build R3 Lojpluka

34) Draw5PlayAll: Discover R1 Draw5playall Y3 Y3

35) mi_spero: Build G1 Mi_spero

36) Draw5PlayAll: Sacrifice G1 Draw5playall
Build R3 Y3

37) mi_spero: Build R3 Mi_spero

38) Draw5PlayAll: Move R3 Y3 Windmillcobra

39) mi_spero: Build B1 Lojpluka

40) Draw5PlayAll: Attack G3S Windmillcobra
	Draw5PlayAll: Have you ever seen this?
http://superdupergames.org/?page=telegram
	mi_spero: yeah, never tried it.

41) mi_spero: Trade Y1 G1 Lojpluka

42) Draw5PlayAll: Move G3 Windmillcobra Y3

43) mi_spero: Build Y1 Lojpluka

44) Draw5PlayAll: Build B2 G3

	mi_spero: gg
	Draw5PlayAll: ???
	mi_spero: I have little idea how to play the early game, less idea how to play the mid game, and at this stage of the game am doing little better than moving at random. Given that, I see little reason to continue, assuming that for any G(H,n)=[(1v0)^~(1^0)] where G is the result (win or loss) of the Homeworlds game H at move n, G(H,n) approaches 0 or 1 for some sufficiently large n. In other words, iff there is always a winner. If there is not always a winner, it grows more complicated, but if there is a winner, then eventually you would have been said winner. So because I can surmise the end, there is no need to continue.
	Draw5PlayAll: Tip: Especially with more players, explore multiple systems. I like to send a green to a blue system and a blue to a green system to provide balance and kick start the development.
	Draw5PlayAll: Several no winner situations can arise. For instance, all blue and yellow could be wiped out.


31109)
Started: 2017.1.3, Ended: 2017.1.7
Participants: floydmasterson (S), WindMillCobra (N)
Winner: WindMillCobra

1) WindMillCobra: Homeworld B1 Y2 G3



34080)
Variants: "Unrated"
Started: 2018.4.28, Ended: 2018.5.22
Participants: silversliver (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) silversliver: Homeworld B2 G1 R3
	Felix: Hi there! New to the game?
	silversliver: Yeah, still learning

3) Felix: Build G1 Felix

4) silversliver: Build R1 Silversliver
	Felix: Well I hope you have fun! Let me know if you have any questions along the way

5) Felix: Trade G1 Y1 Felix

6) silversliver: Trade R1 G1 Silversliver

7) Felix: Build Y1 Felix

8) silversliver: Build R1 Silversliver

9) Felix: Trade Y1 R1 Felix

10) silversliver: Trade R1 Y1 Silversliver

11) Felix: Build R1 Felix

12) silversliver: Discover G1 Silversliver Y3 Sys1

13) Felix: Discover R1 Felix G1 Out

14) silversliver: Build G2 Sys1

15) Felix: Build G2 Felix

16) silversliver: Sacrifice G2 Sys1
Build G2 Sys1
Build R1 Silversliver

17) Felix: D G2 Felix B1 Rim

18) silversliver: Move G2 Sys1 Silversliver

19) Felix: Build R2 Felix

20) silversliver: Trade G2 Y2 Silversliver

21) Felix: Move R2 Felix Rim

22) silversliver: Build G2 Sys1

23) Felix: Build G2 Felix

24) silversliver: Sacrifice Y2 Silversliver
Move R3 Silversliver Sys1
Move R3 Sys1 Rim

25) Felix: Sacrifice G2 Rim
Build R2 Out
Build R3 Felix

26) silversliver: Build R3 Silversliver

27) Felix: Discover G2 Felix B1 Opus

28) silversliver: Sacrifice Y1 Silversliver
Move R3 Rim Felix
Catastrophe Felix Red

29) Felix: B G2 Felix
	silversliver: What a twist.

30) silversliver: Trade R1 Y1 Silversliver
	Felix: Nice! Not sure how I missed that

31) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Felix
Build G3 Opus

32) silversliver: Move G1 Sys1 Opus

33) Felix: Trade G3 B3 Felix

34) silversliver: Build G3 Opus
Catastrophe Opus Green

35) Felix: Build B1 Felix

36) silversliver: Build R1 Silversliver

37) Felix: Move B1 Felix Out

38) silversliver: Trade R1 B1 Silversliver

39) Felix: Discover B3 Felix B2 Safety

40) silversliver: Move B1 Silversliver Sys1

41) Felix: B B2 Out

42) silversliver: Build B3 Sys1

43) Felix: Build Y1 Felix

44) silversliver: Trade B3 R3 Sys1

45) Felix: Move Y1 Felix Out

46) silversliver: Move R3 Sys1 Out

47) Felix: Build R1 Out
Catastrophe Out Red

48) silversliver: Build B3 Sys1

49) Felix: Build Y2 Felix

50) silversliver: Trade B3 R3 Sys1

51) Felix: Discover B1 Out G3 Entry

52) silversliver: Move R3 Sys1 Out

53) Felix: Sacrifice Y1 Out
Discover B2 Out G3 Limbo

54) silversliver: Build B3 Sys1

55) Felix: Trade B3 Y3 Safety

56) silversliver: Trade B1 Y1 Sys1

57) Felix: Sacrifice G2 Felix
Build B1 Limbo
Build B3 Entry

58) silversliver: Move B3 Sys1 Out

59) Felix: Move Y1 Felix Rim

60) silversliver: Build Y2 Silversliver

61) Felix: Trade B3 Y3 Entry

62) silversliver: Build B3 Out

63) Felix: B G1 Felix

64) silversliver: Sacrifice Y1 Sys1
Move R3 Out Limbo

65) Felix: Sacrifice Y2 Felix
Move B2 Limbo Silversliver
Move B1 Limbo Silversliver

66) silversliver: Sacrifice Y2 Silversliver
Move B3 Out Felix
Move B3 Out Felix

67) Felix: Sacrifice R2 Rim
Attack B3 Felix
Attack B3 Felix

68) silversliver: Sacrifice Y1 Silversliver
Move R3 Limbo Safety

69) Felix: Move Y3 Safety Felix

70) silversliver: Sacrifice G2 Sys1
Build R1 Safety
Build R1 Silversliver

71) Felix: Sacrifice B3 Felix
Trade B1 R1 Silversliver
Trade B2 R2 Silversliver
Catastrophe Silversliver Red
Pass

	Felix: Phew, good game! I thought you had me for a minute there. A very fun one :)
	silversliver: gg


31133)
Variants: "Hard time"
Started: 2017.1.4, Ended: 2017.3.8
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3

2) Felix: Homeworld R2 B3 G3
	Felix: And we meet on the ladder again. Good luck and have fun!

3) ts52: Build G1 Ts52

4) Felix: Build G1 Felix
	ts52: Indeed, have a good game!

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: Build B2 Felix

9) ts52: Build G1 Ts52

10) Felix: Trade B2 Y2 Felix

11) ts52: Discover B2 Ts52 G2 Kermit

12) Felix: Build B2 Felix

13) ts52: Build B2 Kermit

14) Felix: Discover B2 Felix G1 Opus

15) ts52: Trade B2 Y2 Kermit

16) Felix: Build Y1 Felix

17) ts52: Build Y1 Kermit

18) Felix: Build G1 Felix

19) ts52: Trade Y2 R2 Kermit

20) Felix: Trade G1 R1 Felix

21) ts52: Build R1 Kermit

22) Felix: Move Y2 Felix Opus

23) ts52: Discover B1 Ts52 Y2 Bigbird

24) Felix: Move R1 Felix Opus

25) ts52: Move G1 Ts52 Bigbird

26) Felix: Build R1 Opus

27) ts52: Discover R2 Kermit Y1 Zoe

28) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y3 Opus
Build Y3 Felix

29) ts52: Build G1 Ts52

30) Felix: Trade Y3 G3 Felix

31) ts52: Build Y3 Kermit

32) Felix: Build G2 Felix

33) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build R2 Zoe

34) Felix: Sacrifice Y2 Felix
Discover R1 Opus Y2 Rim
Move B1 Felix Opus

35) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Kermit
Build G3 Bigbird

36) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R3 Opus
Build R3 Rim

37) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Kermit
Build B3 Bigbird

38) Felix: Move B2 Opus Rim

39) ts52: Move G3 Bigbird Zoe

40) Felix: Sacrifice G2 Felix
Build B3 Rim
Pass
	Felix: Quite the fleets we have amassed! 

41) ts52: Build G2 Zoe
	Felix: You've got me in a pickle.
	ts52: Yeah, we've built to quite the awkward end game.

42) Felix: Move B3 Rim Ts52

43) ts52: Sacrifice R1 Kermit
Attack B3 Ts52

44) Felix: Sacrifice Y3 Opus
Move B1 Opus Rim
Move B1 Rim Ts52
Move B2 Rim Ts52
Catastrophe Ts52 Blue

45) ts52: Move B2 Kermit Ts52

46) Felix: Build Y3 Opus

47) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Kermit
Build B1 Kermit

48) Felix: Sacrifice Y2 Opus
Discover R3 Rim B1 Rom
Move R1 Rim Rom

49) ts52: Sacrifice Y1 Kermit
Discover R3 Kermit Y1 Scooter

50) Felix: Build Y2 Opus

51) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build B2 Kermit

52) Felix: Sacrifice Y3 Opus
Move Y2 Opus Kermit
Move Y1 Felix Opus
Move Y1 Opus Kermit
Catastrophe Kermit Yellow
	Felix: Arg. So close!

53) ts52: Trade B2 Y2 Kermit

54) Felix: Trade R3 B3 Rom

55) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Kermit
Build Y2 Kermit

56) Felix: Trade B3 Y3 Rom
	Felix: .... Very nice move.

57) ts52: Sacrifice G3 Zoe
Build G3 Zoe
Build R3 Kermit
Build B2 Bigbird
	Felix: I think you've got me in a pickle.

	Felix: No point drawing it out. Very nicely played!
	ts52: Thanks. That was a good game. I still didn't have a complete plan for how to finish you off, but I agree that it was only a matter of time. I look forward to our next game.


31135)
Variants: "Hard time"
Started: 2017.1.4, Ended: 2017.2.2
Participants: agentofchaos (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 Y2 G3

2) agentofchaos: Homeworld B1 R2 G3

3) ajo: Build G1 Ajo

4) agentofchaos: Build G1 Agentofchaos

5) ajo: Discover G1 Ajo B1 Alpha

6) agentofchaos: Trade G1 Y1 Agentofchaos

7) ajo: Build G1 Alpha

8) agentofchaos: Build Y1 Agentofchaos

9) ajo: Trade G1 Y1 Alpha

10) agentofchaos: Build Y2 Agentofchaos

11) ajo: Build Y2 Alpha

12) agentofchaos: Discover Y2 Agentofchaos G3 Pazuza

13) ajo: Trade Y2 R2 Alpha

14) agentofchaos: Trade Y1 R1 Agentofchaos

15) ajo: Build G1 Ajo

16) agentofchaos: Trade Y1 B1 Agentofchaos

17) ajo: Build R1 Alpha

18) agentofchaos: Build B2 Agentofchaos

19) ajo: Trade R2 Y2 Alpha

20) agentofchaos: Trade B1 Y1 Agentofchaos

21) ajo: Build R1 Alpha

22) agentofchaos: Move R1 Agentofchaos Pazuza

23) ajo: Discover Y1 Alpha B3 Beta

24) agentofchaos: Build R2 Pazuza

25) ajo: Move R1 Alpha Ajo

26) agentofchaos: Build B1 Agentofchaos

27) ajo: Build R2 Ajo

28) agentofchaos: M B2 Agentofchaos Pazuza

29) ajo: Build R3 Alpha

30) agentofchaos: Build Y1 Agentofchaos

31) ajo: Sacrifice G1 Ajo
Build Y3 Beta

32) agentofchaos: Build Y3 Pazuza

33) ajo: Build Y3 Alpha

34) agentofchaos: Build G1 Agentofchaos

35) ajo: Move R3 Alpha Beta

36) agentofchaos: Sacrifice Y2 Pazuza
Move Y1 Agentofchaos Beta
Move Y1 Agentofchaos Beta
Catastrophe Beta Y

37) ajo: Build R3 Alpha

38) agentofchaos: Build Y1 Pazuza

39) ajo: Move R3 Alpha Beta

40) agentofchaos: Build R3 Pazuza

41) ajo: Move R1 Alpha Pazuza
Catastrophe Pazuza Red

42) agentofchaos: Trade B2 R2 Pazuza

43) ajo: Build G1 Ajo

44) agentofchaos: Build B2 Agentofchaos

45) ajo: Build G2 Alpha

46) agentofchaos: Trade G1 Y1 Agentofchaos

47) ajo: Trade G2 B2 Alpha

48) agentofchaos: Move B2 Agentofchaos Pazuza

49) ajo: Discover B2 Alpha G2 Midland

50) agentofchaos: Build G1 Agentofchaos

51) ajo: Move R1 Ajo Alpha
	ajo: It is your move, btw. We were speeding along for a couple of days there...

52) agentofchaos: Build R1 Pazuza
	agentofchaos: I have had a lot going on in the last week, so it has kept me preoccupied.

53) ajo: Trade R3 Y3 Beta

54) agentofchaos: Build B2 Pazuza

55) ajo: Build B3 Midland

56) agentofchaos: Discover B1 Agentofchaos R3 Mortzone

57) ajo: Move G1 Alpha Beta

58) agentofchaos: Trade B2 G2 Pazuza

59) ajo: Sacrifice G3 Ajo
Build G2 Beta
Build G3 Ajo
Build R1 Ajo

60) agentofchaos: Sacrifice G3 Agentofchaos
Build B2 Mortzone
Build Y1 Agentofchaos
Build G3 Agentofchaos

61) ajo: Sacrifice Y3 Alpha
Move Y3 Beta Agentofchaos
Move G1 Beta Agentofchaos
Move G2 Beta Agentofchaos
Catastrophe Agentofchaos Green

	agentofchaos: well done


31149)
Variants: "Hard time"
Started: 2017.1.8, Ended: 2017.1.9
Participants: Aristos (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 G2 B3

2) Aristos: Homeworld B3 Y1 G3
	goulo: hi, have fun!

3) goulo: Build B1 Goulo
	Aristos: You as well. 

4) Aristos: Build G1 Aristos

5) goulo: Build B1 Goulo

6) Aristos: Trade G1 B1 Aristos

7) goulo: Trade B1 Y1 Goulo

8) Aristos: Build G1 Aristos

9) goulo: Build Y1 Goulo

10) Aristos: Trade G3 Y3 Aristos
	Aristos: I should resign now. I'm two counts behind you already. I really wish I understood how this happens. 

11) goulo: Discover Y1 Goulo G1 Verdeto

12) Aristos: Build Y2 Aristos

13) goulo: Build Y2 Verdeto

14) Aristos: Trade Y3 R3 Aristos

15) goulo: Build Y2 Verdeto

16) Aristos: Discover Y2 Aristos G2 Leaf

17) goulo: Build Y3 Goulo

18) Aristos: Build Y3 Leaf

19) goulo: Sacrifice Y2 Verdeto
Move Y1 Verdeto Leaf
Move Y2 Verdeto Leaf
Catastrophe Leaf Y

	Aristos: Good game. 
	goulo: thanks!


31130)
Started: 2017.1.8, Ended: 2017.3.22
Participants: Draw5PlayAll (S), ts52 (N)
Winner: Draw5PlayAll

1) ts52: Homeworld Y1 B2 G3

2) Draw5PlayAll: Homeworld B3 R1 G3

3) ts52: Build G1 Ts52

4) Draw5PlayAll: Build G1 Draw5playall

5) ts52: Trade G1 Y1 Ts52

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) ts52: Build Y2 Ts52

8) Draw5PlayAll: Build Y2 Draw5playall

9) ts52: Discover Y2 Ts52 G3 Kermit

10) Draw5PlayAll: Trade Y2 B2 Draw5playall

11) ts52: Build Y2 Ts52

12) Draw5PlayAll: Discover B2 Draw5playall G2 G2
	Draw5PlayAll: Nanolog, star date 3206.3:
Our systems have finally begun to settle on our form of government. The large blue planet contains all government offices and is filled with a highly intelligent populace. The red planet is filled with corruption and bad policies. We are looking for warp capable materials but alien empires continually take them before our fleet can.

(55 words. I hope.)

13) ts52: Trade Y1 B1 Ts52

14) Draw5PlayAll: Build G1 Draw5playall

15) ts52: Build G1 Ts52

16) Draw5PlayAll: Build B1 G2

17) ts52: Move B1 Ts52 Kermit

18) Draw5PlayAll: Move Y1 Draw5playall G2

19) ts52: Discover G1 Ts52 B3 Gonzo

20) Draw5PlayAll: Trade G1 R1 Draw5playall

21) ts52: Build G1 Ts52

22) Draw5PlayAll: Trade B1 R1 G2

23) ts52: Trade Y2 R2 Ts52

24) Draw5PlayAll: Build R2 G2

25) ts52: Build B1 Kermit

26) Draw5PlayAll: Trade R2 Y2 G2

27) ts52: Build R2 Ts52

28) Draw5PlayAll: Build R2 G2

29) ts52: Move R2 Ts52 Kermit

30) Draw5PlayAll: Discover R1 G2 G1 G1

31) ts52: Build R3 Ts52

32) Draw5PlayAll: Build R3 G2

33) ts52: Build R3 Kermit

34) Draw5PlayAll: Move Y1 G2 Draw5playall

35) ts52: Move R3 Ts52 Gonzo

36) Draw5PlayAll: Build Y1 Draw5playall

37) ts52: Build G2 Gonzo

38) Draw5PlayAll: Build G2 Draw5playall

39) ts52: Move R2 Kermit G1

40) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y2 Draw5playall
Build Y3 G2

41) ts52: Build Y3 Kermit

42) Draw5PlayAll: Discover Y1 Draw5playall B2 B2
	Draw5PlayAll: I wanted to sac the R1 and pass but you just build the R1 back.
	ts52: True

43) ts52: Discover G1 Ts52 Y3 Bigbird

44) Draw5PlayAll: Move R2 G2 Bigbird

45) ts52: Move Y3 Kermit G1

46) Draw5PlayAll: Attack G1 Bigbird

47) ts52: Attack R1 G1

48) Draw5PlayAll: Discover Y1 B2 B3 B3

49) ts52: Move Y3 G1 B3

50) Draw5PlayAll: Discover Y1 B3 B1 B1

51) ts52: Move B1 Kermit G1

52) Draw5PlayAll: Build B2 G2

53) ts52: Move Y3 B3 G1

54) Draw5PlayAll: Discover Y2 G2 B3 B3

55) ts52: Move R3 Kermit B1

56) Draw5PlayAll: Move Y1 B1 G2

57) ts52: Move Y2 Kermit B1

58) Draw5PlayAll:
Sacrifice Y1 Draw5playall
D R2 Bigbird Y1 Y1

59) ts52: Move R3 B1 Bigbird

60) Draw5PlayAll: Move G1 Bigbird Y1
	Draw5PlayAll: We both appear to be shuttling around randomly.

61) ts52: Move Y2 B1 Gonzo
	ts52: Endgame is tricky when you exhaust the bank.

62) Draw5PlayAll: Move R2 Y1 Kermit

63) ts52: Move Y3 G1 Kermit

64) Draw5PlayAll: Attack B1 Kermit

	Draw5PlayAll: I offer a draw.
	ts52: I accept. And since the system doesn't seem to allow it, I'll resign. Good game.


31107)
Started: 2017.1.12, Ended: 2017.2.8
Participants: Felix (S), Ausmuh (N)
Winner: Felix

1) Ausmuh: Homeworld G3 Y1 B3

2) Felix: Homeworld R2 B3 G3

3) Ausmuh: Build B1 Ausmuh
	Felix: Welcome and good luck!
	Ausmuh: Thanks! you too! Just getting back to it after a year or so.

4) Felix: Build G1 Felix
	Felix: Yeah I remember playing again you. Happy to help you de-rust!

5) Ausmuh: Trade B1 G1 Ausmuh

6) Felix: Trade G1 Y1 Felix

7) Ausmuh: Discover G1 Ausmuh Y2 Lemmy

8) Felix: Build G1 Felix

9) Ausmuh: Build B1 Ausmuh

10) Felix: Trade G1 B1 Felix

11) Ausmuh: Move B1 Ausmuh Lemmy

12) Felix: Build Y1 Felix

13) Ausmuh: Build B1 Ausmuh

14) Felix: Build Y2 Felix

15) Ausmuh: Trade B3 Y3 Ausmuh

16) Felix: Discover Y1 Felix G1 Out

17) Ausmuh: Build B2 Lemmy

18) Felix: Build Y2 Out

19) Ausmuh: Build B2 Ausmuh

20) Felix: Move B1 Felix Out

21) Ausmuh: Trade B2 R2 Lemmy

22) Felix: Trade Y1 R1 Out

23) Ausmuh: Discover G1 Lemmy Y3 Hmm

24) Felix: Build G1 Felix

25) Ausmuh: Build G2 Hmm

26) Felix: Discover G1 Felix R1 Edge

27) Ausmuh: Sacrifice G1 Hmm
Build B2 Lemmy

28) Felix: Build B2 Out

29) Ausmuh: Move B2 Lemmy Edge

30) Felix: Discover B1 Out G2 Rim

31) Ausmuh: Sacrifice G2 Hmm
Build B3 Edge
Build B3 Lemmy

32) Felix: Move B2 Out Lemmy

33) Ausmuh: Sacrifice B2 Edge
Trade B3 Y3 Edge
Trade B3 G3 Lemmy

34) Felix: Sacrifice R1 Out
Attack R2 Lemmy

35) Ausmuh: Discover B1 Lemmy G1 Pasture
	Ausmuh: Haha, great attack. I didn't pay attention to that one at all!

36) Felix: Build B2 Rim
	Felix: Thank you! Yeah I've fallen victim to that type of attack many times. I always forget that people can attack even without a red in the actual system as long as they have one elsewhere!

37) Ausmuh: Trade B2 R2 Ausmuh

38) Felix: Sacrifice Y2 Felix
Move B2 Lemmy Out
Move R2 Lemmy Out

39) Ausmuh: Move G3 Lemmy Out

40) Felix: Sacrifice Y2 Out
Move R2 Out Rim
Move B2 Out Felix

41) Ausmuh: Build B2 Pasture
	Felix: Man, you really have me on the run...

42) Felix: Trade B1 Y1 Rim
	Ausmuh: Almost, sort of. :) You getting that red two-pip from me really put a damper on my plan. Now comes the fun part... plan B! Later in the game is when it can be really difficult for me to see a clear cut plan.

43) Ausmuh: Sacrifice Y3 Edge
Move B1 Pasture Felix
Move B2 Pasture Felix
Catastrophe Felix Blue
Move G3 Out Rim

44) Felix: Move Y1 Rim Ausmuh
	Felix: Woah, nice move

45) Ausmuh: Trade Y3 B3 Ausmuh

46) Felix: Trade R2 G2 Rim
	Ausmuh: Thanks, nice response!

47) Ausmuh: Sacrifice B1 Ausmuh
Trade G3 Y3 Rim

48) Felix: Build Y2 Ausmuh

49) Ausmuh: Sacrifice R2 Ausmuh
Attack G2S Rim
Attack B2S Rim

50) Felix: Build Y2 Ausmuh
Catastrophe Ausmuh Yellow

51) Ausmuh: Build B1 Ausmuh

52) Felix: Build Y1 Felix

53) Ausmuh: Trade G2 Y2 Rim

54) Felix: Sacrifice Y1 Felix
Move G1 Edge Ausmuh

55) Ausmuh: Sacrifice Y2 Rim
Move Y3 Rim Ausmuh
Move Y3 Ausmuh Felix
	Ausmuh: Well done! 

56) Felix: Sacrifice G3 Felix
Build G1 Ausmuh
Build G1 Ausmuh
Catastrophe Ausmuh Green
Build Y1 Felix
	Felix: Thank you, good game! I'm happy to rematch any time :)
	Draw5PlayAll: Has there ever in the history of Homeworlds been a game with complete anihillation of all stars and ships?



31172)
Started: 2017.1.12, Ended: 2017.3.3
Participants: Felix (S), w00t (N)
Winner: Felix

1) w00t: Homeworld B3 Y1 G3

2) Felix: Homeworld R2 B3 G3

3) w00t: Build G1 W00t
	Felix: Hi there. First game or have you played before?

4) Felix: Build G1 Felix
	w00t: Greetings.  I've played homeworlds a lot more on a table top than here.  Certainly not new to the game, but far from calling myself a master :)
	Felix: Cool, well sounds like you know what you're doing :) I'm no master either but I've played quite a few games on here. Good luck and have fun!

5) w00t: Discover G1 W00t B2 Boop

6) Felix: Trade G1 Y1 Felix

7) w00t: Build G1 Boop

8) Felix: Build Y1 Felix

9) w00t: Build G1 W00t

10) Felix: Build Y2 Felix

11) w00t: Build G2 Boop

12) Felix: Build G2 Felix

13) w00t: Trade G2 Y2 Boop

14) Felix: Discover G2 Felix B1 Out

15) w00t: Discover G1 Boop R1 Bop

16) Felix: Move Y1 Felix Out

17) w00t: Build G2 Bop

18) Felix: Sacrifice G3 Felix
Build Y2 Out
Build Y3 Felix
Build G2 Out

19) w00t: Sacrifice G3 W00t
Build G3 W00t
Build G3 Boop
Build Y3 Boop

20) Felix: Sacrifice Y2 Felix
Move G2 Out Boop
Move G2 Boop W00t

21) w00t: Trade G1 R1 W00t
	w00t: I apologize for the delay... that was a mighty good move you made :)
	w00t: trade g1 r1 w00t
	w00t: lol... errr... wrong box :)

22) Felix: Sacrifice G2 Out
Build G1 W00t
Build G2 W00t
Catastrophe W00t Green

23) w00t: Move G3 Boop W00t
	Felix: Thanks! We'll see if it works out!

24) Felix: Trade Y3 G3 Felix

25) w00t: Move Y3 Boop Bop
	Felix: Darn. I'm not sure it worked out!

26) Felix: Discover Y1 Out G2 Vazoik
	w00t: It would have worked very well if I hadn't been a lucky s.o.b. with that g3 at another system :)

27) w00t: Build G1 W00t

28) Felix: Sacrifice G3 Felix
Build Y2 Vazoik
Build Y3 Out
Build Y3 Felix

29) w00t: Move Y2 Boop Out

30) Felix: Trade Y3 R3 Out

31) w00t: Build Y3 Bop

32) Felix: Trade Y3 G3 Felix

33) w00t: Sacrifice G3 W00t
Build G2 Bop
Build G3 W00t
Build G3 Boop

34) Felix: Build Y3 Felix

35) w00t: Move Y2 Out Felix

36) Felix: Trade Y3 R3 Felix
	w00t: Still no clue which one of us has any sort of upper hand... I am enjoying this game a whole lot! :)

37) w00t: Sacrifice Y2 Felix
Move G1 Bop Felix
Move G2 Bop Felix
	Felix: I think you have the upper hand at the moment. You're playing quite well, and I'm having fun too!

38) Felix: Sacrifice G3 Felix
Build Y2 Out
Build Y3 Felix
Build R1 Out

39) w00t: Trade G2 R2 Felix

40) Felix: Sacrifice R3 Felix
Attack R2 Felix
Attack G1 Felix
Pass

41) w00t: Build R2 W00t
	w00t: wow!! I so did not expect you to sacrifice that piece :)

42) Felix: Sacrifice Y2 Out
Move Y2 Vazoik Bop
Move Y1 Felix Bop
Catastrophe Bop Yellow

43) w00t: Move R2 W00t Vazoik
	Felix: I wasn't sure myself if I would until I did it! It was too much to resist getting two of your pieces.

44) Felix: Move R3 Out Vazoik

45) w00t: Sacrifice G2 Bop
Build R1 Vazoik
Build R3 Vazoik
Catastrophe Vazoik Red

46) Felix: Build G2 Felix
	w00t: Wow! This game has been an epic battle so far!

47) w00t: Trade G1 Y1 Boop
	Felix: Indeed!

48) Felix: Move G2 Felix Out

49) w00t: Move G3 Boop Out

50) Felix: Sacrifice Y2 Out
Move G2 Out Boop
Move R1 Out Boop

51) w00t: Move Y1 Boop Out

52) Felix: Build Y2 Felix

53) w00t: Build Y2 Out

54) Felix: Discover Y2 Felix B1 Rim

55) w00t: Trade G1 B1 W00t

56) Felix: Build Y2 Vazoik

57) w00t: Sacrifice Y2 Out
Discover G3 Out Y3 Yoink1
Discover Y1 Out Y3 Yoink2

58) Felix: Build Y2 Vazoik

59) w00t: Move Y1 Yoink2 Vazoik
Catastrophe Vazoik Yellow

60) Felix: Build G1 Boop

61) w00t: Trade G3 Y3 W00t
	Felix: So many explosions!
	w00t: it was the end of vazoik as we know it :)

62) Felix: Trade G1 Y1 Boop

63) w00t: Trade Y3 B3 W00t

64) Felix: Build G1 Boop
	w00t: I'm hoping I've found a clever way to end that standoff :)

65) w00t: Discover B1 W00t G2 Thbt
	Felix: We'll see!

66) Felix: Trade G1 B1 Boop

67) w00t: Trade B3 G3 W00t

68) Felix: Build B2 Boop

69) w00t: Move G3 Yoink1 Rim

70) Felix: Sacrifice Y2 Rim
Move B1 Boop W00t
Move B2 Boop W00t

71) w00t: Build B2 Thbt

72) Felix: Sacrifice R1 Boop
Attack R1 W00t

73) w00t: Trade B2 R2 Thbt

74) Felix: Sacrifice G2 Boop
Build B2 W00t
Build Y1 Boop
Catastrophe W00t Blue

75) w00t: Build R1 Thbt

76) Felix: Sacrifice G1 Felix
Build Y2 Boop

77) w00t: Sacrifice R1 Thbt
Attack R1 W00t

78) Felix: Sacrifice Y3 Felix
Move Y2 Boop W00t
Move Y1 Boop W00t
Move Y1 Boop W00t
Catastrophe W00t Yellow
	w00t: t'was a mighty fun game :)  Thank you very much
	Felix: It was! Well played. I hope you had fun and learned some things. I'm happy to rematch any time.



31173)
Variants: "Hard time"
Started: 2017.1.13, Ended: 2017.1.22
Participants: Ausmuh (S), zeder (N)
Winner: Ausmuh

1) zeder: Homeworld Y2 B1 G3

2) Ausmuh: Homeworld G3 Y1 B3

3) zeder: Build G1 Zeder
	Ausmuh: Hello, Have a fun game!

4) Ausmuh: Build B1 Ausmuh

5) zeder: Discover G1 Zeder Y3 Water

6) Ausmuh: Build B1 Ausmuh

7) zeder: Build G1 Zeder

8) Ausmuh: Discover B1 Ausmuh G2 Gwar

9) zeder: Trade G3 B3 Zeder

10) Ausmuh: Build B2 Gwar

11) zeder: Build B2 Zeder

12) Ausmuh: Trade B2 Y2 Gwar

13) zeder: Trade B2 R2 Zeder

14) Ausmuh: Build B2 Gwar

15) zeder: Build G1 Zeder

16) Ausmuh: Trade B2 R2 Gwar

17) zeder: Move R2 Zeder Water

18) Ausmuh: Build B2 Gwar

19) zeder: Build G2 Zeder

20) Ausmuh: Trade B3 G3 Ausmuh

21) zeder: Discover G1 Water Y2 Deaddog

22) Ausmuh: Sacrifice G3 Ausmuh
Build B2 Ausmuh
Build B2 Gwar
Build B3 Ausmuh

23) zeder: Build G2 Deaddog

24) Ausmuh: Trade B3 Y3 Ausmuh

25) zeder: Build G3 Deaddog

26) Ausmuh: Build B3 Ausmuh

27) zeder: Discover G2 Deaddog B3 Heap

28) Ausmuh: Discover B2 Gwar G3 Lxsx



31174)
Started: 2017.1.13, Ended: 2017.3.6
Participants: Felix (S), MobyNostromo (N)
Winner: Felix

1) MobyNostromo: Homeworld B1 G2 Y3
	MobyNostromo: Hi. This is my first time playing, and the wiki is down. Can you help me with the notation?

2) Felix: Homeworld B2 R3 G3
	Draw5PlayAll: What do you need?

Also, change games/homeworlds to games:homeworlds in the wiki URL and that should work.
	MobyNostromo: Aha!! I found it. Thank you., and thank you for waiting for my move. I'm good, you can make your move.
	Felix: I guess Draw5 beat me to the advice. But I'm happy to help you with the notation and give you tips as we play. One cool thing to remember is that you don't have to type out the full word of the notation. "b g1 MobyNostromo" would work just as well as "build g1 MobyNostromo." Saves a bit of time!

3) MobyNostromo: Build Y1 Mobynostromo

4) Felix: Build G1 Felix
	MobyNostromo: Hi Felix. Thanks for the clarification. I'm very curious about this game, but I'm afraid I'm not going to give you a very good game.
	Felix: No problem! I'm always happy to help a beginner learn. It's a wonderful game so I hope you'll learn to love it. Don't worry about doing super wlel on your first game. It took me a solid 10-20 games to really start to wrap my head around the strategy of it.

5) MobyNostromo: Build Y1 Mobynostromo
	MobyNostromo: Knowing the little I know of it, I think I'm going to like this one. I know I'm going to blow this game (and the next ten or twenty).
	MobyNostromo: And thanks for the help!!
	MobyNostromo: I'm not getting the proper codes. I wanted to discover a new system with my Y1. What should I right for the next move?

6) Felix: Trade G1 Y1 Felix
	Felix: To discover a new system you would type "d y1 MobyNostromo" plus the size/color of the new system and the name of the new system. So if you wanted to discover a g3 with your y1 you would type "d y1 MobyNostromo g3 system1" for instance. But you can name it whatever you want.

I hope that helps!

7) MobyNostromo: Discover Y1 Mobynostromo G3 Alpha

8) Felix: Build Y2 Felix
	MobyNostromo: It worked! Thanks!

9) MobyNostromo: Build Y2 Alpha




10) Felix: Discover Y2 Felix G1 Out

11) MobyNostromo: Trade Y1 B1 Mobynostromo

12) Felix: Build G1 Felix

13) MobyNostromo: Move B1 Mobynostromo Alpha

14) Felix: Trade G1 B1 Felix

15) MobyNostromo: T Y2 R2 Alpha

16) Felix: Build B2 Felix

17) MobyNostromo: Discover R2 Alpha G1 In

18) Felix: Trade B2 R2 Felix

19) MobyNostromo: B B2 Alpha

20) Felix: Move B1 Felix Out

21) MobyNostromo: T B2 R2 Alpha

22) Felix: Build B2 Out

23) MobyNostromo: B B2 Alpha

24) Felix: Discover B2 Out G3 Ridge

25) MobyNostromo: B B3 Alpha

26) Felix: Move B1 Out Alpha
Catastrophe Alpha Blue

27) MobyNostromo: M R2 Alpha Out
	MobyNostromo: I had a dire feeling something was in the works. Something "catastrophic."

28) Felix: Sacrifice R2 Felix
Attack R2 Out
Pass
	Felix: Hehehe, always gotta watch out for those catastrophes, but it can be very difficult to recognize the threats sometimes.

29) MobyNostromo: B Y1 Alpha
	Felix: Also, watch out for the remote attack ability on a sacrifice, like I just did!
	MobyNostromo: I completely forgot about that. There's a lot to this game! I think I'm going to like this one at least a lot.

30) Felix: Build Y2 Out
	Felix: It's my favorite game, even better than chess. The rules are simple but the possibilities are extremely complex!

31) MobyNostromo: B Y2 Mobynostromo
	MobyNostromo: Though I know very little at this point, I can see it supplanting games like Chess.

32) Felix: Build Y3 Felix
	Draw5PlayAll: I doubt the rules are simple... but the possibilities are very IDIC (infinite diversity in infinite combinations).

33) MobyNostromo: T Y2 B2 Mobynostromo
	Felix: @Draw5 - I meant compared with chess. Only four piece types, one type of movement, one type of attack, etc. Pretty simple, really.
	Draw5PlayAll: Four piece types? I say 12 or 24!
	Felix: How do you figure? Different sizes, sure, but the same action types.
	MobyNostromo: It seems to me to encapsulate pretty elegant rules within so many possible outcomes, it can become an incredible brain-burner. Then again, my two cents at this point is worth about that much - two cents.

34) Felix: Build B1 Ridge

35) MobyNostromo: M B2 Mobynostromo Alpha
	Draw5PlayAll: Inflation...
	MobyNostromo: Ha, ha! Those are two expensive cents.

36) Felix: Move Y2 Out Ridge

37) MobyNostromo: B B1 Alpha

38) Felix: Move B1 Ridge Out

39) MobyNostromo: M B2 Alpha In

40) Felix: Build B3 Ridge

41) MobyNostromo: B B3 In

42) Felix: Build B3 Out

43) MobyNostromo: M Y1 Alpha In

44) Felix: Build G1 Felix

45) MobyNostromo: B Y2 Alpha

46) Felix: Build Y3 Out

47) MobyNostromo: T Y2 R2 Alpha

48) Felix: Build Y2 Ridge

49) MobyNostromo: B R1 Alpha

50) Felix: Discover Y2 Out R3 Rim

51) MobyNostromo: T B3 R3 In

52) Felix: Sacrifice Y3 Felix
Move Y2 Rim Mobynostromo
Move Y2 Ridge Mobynostromo
Move Y2 Ridge Mobynostromo
Catastrophe Mobynostromo Yellow
	Felix: Good game and well fought! Hope you had fun!
	MobyNostromo: It was awesome. I want to keep playing this game and really learn it. Thank you for your patience.
	Felix: Well I'm happy to rematch any time.



30502)
Started: 2017.1.14, Ended: 2017.2.12
Participants: dragonlord (S), w00t (N)
Winner: w00t

1) w00t: Homeworld R3 Y2 G3 *

2) dragonlord: Homeworld G1 B2 Y3

3) w00t: Build G1 W00t

4) dragonlord: Build Y1 Dragonlord

5) w00t: Discover G1 W00t B1 Boop

6) dragonlord: Discover Y1 Dragonlord G3 Terrace

7) w00t: Build G1 Boop
	dragonlord: 
	dragonlord: 

8) dragonlord: Build Y1 Dragonlord

9) w00t: Build G2 Boop

10) dragonlord: Trade Y3 G3 Dragonlord

11) w00t: Trade G2 Y2 Boop

12) dragonlord: Build Y1 Terrace

13) w00t: Build G2 W00t

14) dragonlord: Discover Y1 Terrace B1 Iceland

15) w00t: Discover G1 Boop B3 Bop

16) dragonlord: Trade Y1 R1 Dragonlord

17) w00t: Sacrifice G3 W00t
Build G2 Boop
Build G2 Bop
Build G3 W00t

18) dragonlord: Build R1 Dragonlord

19) w00t: Sacrifice Y2 Boop
Move G1 Bop Dragonlord
Move G2 Bop Dragonlord
Catastrophe Dragonlord Green

20) dragonlord: Trade R1 Y1 Dragonlord

21) w00t: Trade G2 Y2 Boop

22) dragonlord: Build Y2 Terrace

23) w00t: Move Y2 Boop Dragonlord

24) dragonlord: Discover Y1 Dragonlord G3 Farm

25) w00t: Trade G1 R1 Boop



31155)
Started: 2017.1.14, Ended: 2017.4.14
Participants: ts52 (S), w00t (N)
Winner: ts52

1) w00t: Homeworld G2 R1 B3

2) ts52: Homeworld Y3 B1 G3

3) w00t: Build B1 W00t

4) ts52: Build G1 Ts52

5) w00t: Trade B1 Y1 W00t

6) ts52: Trade G1 B1 Ts52

7) w00t: Build Y1 W00t

8) ts52: Build G1 Ts52

9) w00t: Trade Y1 G1 W00t

10) ts52: Trade G1 Y1 Ts52

11) w00t: Discover G1 W00t B3 Boop

12) ts52: Build G1 Ts52

13) w00t: Build Y1 W00t

14) ts52: Build Y2 Ts52

15) w00t: Build Y2 W00t

16) ts52: Discover Y1 Ts52 G2 Kermit

17) w00t: Move Y1 W00t Boop

18) ts52: Move B1 Ts52 Kermit

19) w00t: Discover Y1 W00t G3 Bop

20) ts52: Discover G1 Ts52 B2 Grover

21) w00t: Build G1 Boop

22) ts52: Build G2 Grover

23) w00t: Trade G1 R1 Boop

24) ts52: Trade G2 R2 Grover

25) w00t: Build G1 Boop

26) ts52: Move Y2 Ts52 Grover

27) w00t: Discover G1 Boop R2 Star

28) ts52: Build R1 Grover

29) w00t: Trade B3 G3 W00t

30) ts52: Build G2 Ts52

31) w00t: Sacrifice Y1 Boop
Move G1 Star Ts52

32) ts52: Trade G2 R2 Ts52

33) w00t: Build G2 Ts52

34) ts52: Sacrifice G3 Ts52
Build G3 Grover
Build R2 Grover
Build R3 Ts52

35) w00t: Sacrifice G2 Ts52
Build R3 Boop
Build G2 Boop

36) ts52: Move R2 Grover Bop

	Laurie_Menke: Hi ts52... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that's the right thing to do.  :)
	ts52: Laurie, that's fine. In this case I can terminate the game, but since I've forgotten about my SDG games on more than one occasion, I have a tendency to let time lapse for up to a month before I do.
	Laurie_Menke: ts52, Aaron did his sweep but didn't take this one out, so I guess you'll have to do it yourself if you want to.  :)
	ts52: Thanks Laurie. I'll give it another week or so.
	Laurie_Menke: :)


31180)
Started: 2017.1.16, Ended: 2017.1.22
Participants: w00t (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld B3 Y1 G3
	Ausmuh: wait. what?

	Draw5PlayAll: What do you mean?
	Ausmuh: I was just surprised to see w00t making standing challenges. It's been a while.
	Ausmuh: Next time! :)


31200)
Variants: "Hard time"
Started: 2017.1.18, Ended: 2017.2.2
Participants: ausmuh (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3

	Ausmuh: I have no place to enter commands from my screen. o.O  Never ran into this problem before. :)
	Babamots: I had my loyalists on your planet sabotage your interstellar transmitter. It's war. You do what you gotta do. ;-)
	Ausmuh: Haha, so that's what happened! Well done! I admit I never saw it coming.
	Draw5PlayAll: Who is playing this game?
	Babamots: It's Babamots and ausmuh.
	Ausmuh: OK, well I can't take a move, but maybe if the time runs out you can at least move up a rung?
	Babamots: Well yeah, but that's not very fair to you. I can wait. Let's get someone to sort this out.
	Babamots: I'll trying emailing Aaron. If that fails, I'll try Facebook and SDG PM. So many ways to bug people!
	Ausmuh: Haha, ok. Whatever is clever :)
	Babamots: Quick question: have you tried using a different browser?
	Ausmuh: I have tried a couple different ones to no avail :( chrome, slim jet (chrome), edge. I'll have to try Firefox. I can take turns in my other games so I don't know if that's the problem.
	Babamots: I haven't got an email response yet, so I tried Aaron on Facebook today. If we never hear back, whaddaya say we play an unranked game and the loser resigns this one?
	Ausmuh: I like it! Except I don't have a resign button either. Just the map. You'DE Welshman to start the clock, no bad feelings here. I'm still all for another game though :)
	Ausmuh: *you're welcome.    

Wow, autocorrect. Welshman....
	Babamots: But you can run out the clock, so we can still use this to update the ladder correctly. 
	Ausmuh: good point! :) 
	Babamots: Aaron hasn't checked his Facebook messages yet. Oh well. I promise not to disable your communications array the next time we meet.
	Ausmuh: Sounds good to me! The whole time this played out I couldn't help but think of SpaceBalls.

"The radar appears to be..."
"Jammed.... raspberry. There's only one man who would dare give me the raspberry! Babamots!!!"
	Babamots: Ausmuh. So at last we meet for the first time for the last time.
	Babamots: Looks like Aaron is active on the site. I should have sent him a PM first.


31176)
Started: 2017.1.19, Ended: 2017.4.3
Participants: alexhouston (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3
	alexhouston: hi


2) alexhouston: Homeworld G3 R2 B3
	Felix: Hello! First game?

3) Felix: Build G1 Felix
	alexhouston: Yeah first game on SDG, I recently got Pyramid Arcade and Homeworlds was easily my favorite on there.  I'll admit I'm still probably a pretty novice player so you might not find me a huge challenge but I'm just trying to get better
	alexhouston: Yeah first game on SDG, I recently got Pyramid Arcade and Homeworlds was easily my favorite on there.  I'll admit I'm still probably a pretty novice player so you might not find me a huge challenge but I'm just trying to get better
	Felix: No problem! The best way to get better is to practice and play a lot. I'm no pro but I have played quite a few games on here so I hope I'm able to help you improve. Let me know if you have any questions and if I think of any tips I'll let you know!

4) alexhouston: Build B1 Alexhouston
	Felix: I have found that starting with a green star in your homeworld generally makes the game a bit more difficult for a newer player The reason is that it makes it harder to set up a "factory" in your homeworld (A g3 and another green) without overcrowding it with green. Of course, you can always try and build that factory elsewhere, but it's a bit more difficult usually. It's also widely considered strongest to begin with a large green ship because this provides extra build power in the early game (It's possible to sacrifice the G3 to build 3 ships, one of which could be a large). That extra build potential can realy help build up one's fleet early on, and it's not always so easy to do that if you start with something like a B3 (though a b3 does give you an early edge in getting blue ships, which is good too)

5) Felix: Trade G1 Y1 Felix

6) alexhouston: Trade B1 Y1 Alexhouston

7) Felix: Build G1 Felix

8) alexhouston: Discover Y1 Alexhouston G1 Star

9) Felix: Trade G1 B1 Felix
	Felix: Just as a general tip, it is sometimes wiser to build another ship of a particular color before you move your ship out. For instance, since you just moved your y1 to a new system, you lost the ability to use yellow in your homeworld, and to get it back you'll either have to move your y1 back there or build a b1 and then trade it for a y1, which will essentially cause you to waste a turn in the future. If you built another y1 first and THEN moved one of them out, then you'd retain the yellow ability in both systems. It's a good rule of thumb to build first and then move, but then again, there might be unique situations where you won't ALWAYS want to follow that rule.

10) alexhouston: Build B1 Alexhouston

11) Felix: Build G1 Felix
	alexhouston: Thanks for the tips, that definitely makes sense.

	Draw5PlayAll: Building the Y1 would allow Felix to get a Y2.

12) alexhouston: Build Y1 Star

13) Felix: Trade G1 R1 Felix

14) alexhouston: Move Y1 Star Alexhouston

15) Felix: Build Y2 Felix

16) alexhouston: Build Y2 Alexhouston

17) Felix: Discover Y1 Felix G2 Rykas

18) alexhouston: Move B1 Alexhouston Star

19) Felix: Build Y2 Felix

20) alexhouston: Build Y3 Star

21) Felix: Build Y3 Rykas

22) alexhouston: Discover Y3 Star B2 World

23) Felix: Move Y1 Rykas Star

24) alexhouston: Discover Y1 Alexhouston G1 Flash

25) Felix: Build Y3 Rykas

26) alexhouston: Move B1 Star World

27) Felix: Move B1 Felix World

28) alexhouston: Move Y1 Star Rykas

29) Felix: Move Y3 Rykas Flash

30) alexhouston: Trade Y2 R2 Alexhouston

31) Felix: Trade Y2 B2 Felix

32) alexhouston: Build Y2 Flash

33) Felix: Move B2 Felix World
Catastrophe World Blue

34) alexhouston: Move Y1 Flash Alexhouston

35) Felix: Move R1 Felix Rykas

36) alexhouston: Move Y1 Rykas Star

37) Felix: Build G1 Felix

38) alexhouston: Trade R2 G2 Alexhouston

39) Felix: Discover G1 Felix B2 Roam

40) alexhouston: Trade Y1 B1 Alexhouston

41) Felix: Build G2 Roam

42) alexhouston: Trade G2 Y2 Alexhouston

43) Felix: Build G2 Felix

44) alexhouston: Trade B3 G3 Alexhouston

45) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Rykas
Build Y3 Felix

46) alexhouston: Build B1 Alexhouston

47) Felix: Build R1 Rykas

48) alexhouston: Sacrifice Y2 Alexhouston
Move Y1 Star Rykas
Move Y2 Flash Rykas
Catastrophe Rykas Y

49) Felix: Trade G2 Y2 Roam

50) alexhouston: Trade B1 Y1 Alexhouston

51) Felix: Build G2 Roam

52) alexhouston: Build B1 Alexhouston

53) Felix: Discover G1 Roam B1 Edge

54) alexhouston: Trade G3 B3 Alexhouston

55) Felix: Build G3 Edge

56) alexhouston: Move B1 Alexhouston Star

57) Felix: Sacrifice R1 Rykas
Attack B1 Star

58) alexhouston: Discover B1 Alexhouston R1 Run

59) Felix: Build B2 Star
	Felix: Watch out for your opponents ability to attack remotely with a sacrifice!
	alexhouston: yeah I just lost a different game because of that so I got to get better at noticing that for sure

60) alexhouston: Build Y1 Alexhouston

61) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Flash
Build Y3 Roam

62) alexhouston: Move Y1 Alexhouston Run

63) Felix: Build R2 Rykas

64) alexhouston: Build B2 Alexhouston

65) Felix: Sacrifice Y3 Roam
Move B1 Star Alexhouston
Move B2 Star Alexhouston
Catastrophe Alexhouston Blue
Move G3 Edge Alexhouston

	Laurie_Menke: Hi Felix... I just wanted to let you and alexhouston know that I'm making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that's the right thing to do.  :)
	Laurie_Menke: Ooops!  I'm sorry!  I see now that the game is back on track.  I won't have Aaron delete it.  Sorry for the interruption!
	Felix: @Laurie_Menke Thanks for letting us know. It does seem that it was abandoned after all, so I went ahead and ended it!
	Draw5PlayAll: Evidently the deletion happened, as there are only 165 games in progress.
	Laurie_Menke: You're welcome, Felix!  And yes, it has happened, Draw5PlayAll.  Hopefully we can play with real people who are really here now instead of ghost people on ladders and long lists of timed out games.  :)


31227)
Variants: "Hard time"
Started: 2017.1.22, Ended: 2017.1.24
Participants: alexhouston (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld B3 Y1 G3

2) alexhouston: Homeworld R3 B2 G3
	Ausmuh: Hello, have a fun game!

3) Ausmuh: Build G1 Ausmuh

4) alexhouston: Build G1 Alexhouston

5) Ausmuh: Trade G1 B1 Ausmuh

6) alexhouston: Trade G1 B1 Alexhouston

7) Ausmuh: Build G1 Ausmuh

8) alexhouston: Trade B1 Y1 Alexhouston

9) Ausmuh: Discover B1 Ausmuh G2 Gwar

10) alexhouston: Build G1 Alexhouston

11) Ausmuh: Trade B1 Y1 Gwar

12) alexhouston: Build Y2 Alexhouston

13) Ausmuh: Build Y2 Gwar

14) alexhouston: Discover Y1 Alexhouston B1 Outpost

15) Ausmuh: Move Y2 Gwar Outpost

16) alexhouston: Move Y1 Outpost Gwar

17) Ausmuh: Trade Y2 G2 Outpost

18) alexhouston: Build Y2 Gwar

19) Ausmuh: Build Y2 Gwar
Catastrophe Gwar Yellow

20) alexhouston: Build Y1 Alexhouston

21) Ausmuh: Build G1 Outpost

22) alexhouston: Build G2 Alexhouston

23) Ausmuh: Trade G2 Y2 Outpost

24) alexhouston: Trade G2 B2 Alexhouston

25) Ausmuh: Build G2 Outpost

26) alexhouston: Move G1 Alexhouston Outpost

27) Ausmuh: Trade G2 R2 Outpost

28) alexhouston: Trade G1 Y1 Outpost

29) Ausmuh: Attack Y1S Outpost

30) alexhouston: Build B1 Alexhouston

31) Ausmuh: Discover Y2 Outpost B3 Blucifer

32) alexhouston: Trade G3 R3 Alexhouston

33) Ausmuh: Build R1 Outpost

34) alexhouston: Trade R3 G3 Alexhouston

35) Ausmuh: Sacrifice Y2 Blucifer
Move R2 Outpost Alexhouston
Move R1 Outpost Alexhouston

36) alexhouston: Attack R2N Alexhouston

37) Ausmuh: Sacrifice G1 Outpost
Build R1 Alexhouston
Catastrophe Alexhouston Red

38) alexhouston: Move Y1 Alexhouston Outpost

39) Ausmuh: Move G1 Ausmuh Alexhouston

40) alexhouston: Build Y2 Alexhouston

41) Ausmuh: Trade G1 B1 Alexhouston
Catastrophe Alexhouston Blue

	Ausmuh: Thanks for the game!
	alexhouston: dang, thanks for playing. I'm super new to homeworlds as you can probably tell
	Ausmuh: No worries! I'm not more then a novice myself. It takes a little getting used to. It's important to watch the planet connections after a catastrophe. Keep with it, that seems to be the real secret. :) Eventually the middle of the game will seem clearer. (Sometimes. I still get overwhelmed by all the choices in some games.)


31243)
Started: 2017.1.24, Ended: 2017.6.19
Participants: w00t (S), Ausmuh (N)
Winner: w00t

1) Ausmuh: Homeworld G3 B1 Y3

2) w00t: Homeworld B3 Y2 G3

3) Ausmuh: Build Y1 Ausmuh
	w00t: It's been far too long since I played any homeworlds... I'm psyched you're still active on here to challenge :)
	Ausmuh: Right! I was excited to see you here also! I'm so rusty. Back into the fire! I stole the 48 hour turn scheme from Star Realms (A card game you should still totally check out the app for, Kami and I still play and the online community is so active) And having to check in a little more often has made it easier to remember and more enjoyable. Or the game will just end. Either way, less time wasted.

4) w00t: Build G1 W00t

5) Ausmuh: Trade Y1 G1 Ausmuh
	w00t: Star Realms... I'll have to look into it......

6) w00t: Discover G1 W00t B1 Illuminati
	Ausmuh: Aye. But first... there are other star realms to destroy!

7) Ausmuh: Discover G1 Ausmuh B2 Blucifer

8) w00t: Build G1 Illuminati

9) Ausmuh: Build G2 Blucifer

10) w00t: Build G2 W00t

11) Ausmuh: Trade G2 Y2 Blucifer

12) w00t: Trade G1 Y1 Illuminati

13) Ausmuh: Build Y1 Ausmuh
	w00t: sorry for the delay... crazy past few days here

14) w00t: Trade G2 Y2 W00t
	Ausmuh: No worries man! I'm pretty much on auto-pilot until I shake the dust off anyways. After about turn 5, I'm just kinda making moves to see what happens for now. Hopefully I remember some of the finer points later. :)

15) Ausmuh: Trade Y1 R1 Ausmuh

16) w00t: Build Y1 Illuminati

17) Ausmuh: Discover Y2 Blucifer G1 Gwar

18) w00t: Build G2 W00t

19) Ausmuh: Move Y2 Gwar W00t

20) w00t: Sacrifice Y2 W00t
Discover Y1 Illuminati G2 Yin
Discover Y1 Illuminati G2 Yan
	Ausmuh: I'm much too curious to not make that move.
	w00t: I thought you would do that >:)  I just hope my scheming was adequate...
	w00t: dammit... I thought illuminati was connected to your homeworld for some reason :\

21) Ausmuh: Sacrifice R1 Ausmuh
Attack G2S W00t

22) w00t: Trade G3 R3 W00t
	Ausmuh: That's one reason I like the table better. The paths stay clearer.  Still only played like 2 games tops IRL with other folk though. Sad.
	w00t: amen to that... sdg seems to put the star systems in awkward orders

23) Ausmuh: Sacrifice G2 W00t
Build Y1 W00t
Build Y2 W00t
Catastrophe W00t Yellow
	Draw5PlayAll: The systems are ordered alphabetically.
	w00t: huh... hadn't noticed that, but they sure are alphabetical... It'd be a nice touch if we could drag the tile that star system is into a preferred placement... but alas, I'm content just having online homeworlds! :)
	Ausmuh: Good to know!! Thanks Draw5PlayAll!

24) w00t: Move Y1 Yin Ausmuh
	Draw5PlayAll: So if you agree to name them purposefully, you might get the effect you want.
	w00t: AHHH!! I so knew that was gonna happen, but I couldn't find a way to stop it :'(

25) Ausmuh: Build G1 Blucifer
	w00t: You ought to join that 4 man standing challenge that Draw5PlayAll issued... I joined another 4 man challenge, but one of the players is very not active, so we've been waiting like 3 days for him to move

26) w00t: Build Y1 Ausmuh
	Ausmuh: Non binary you say?? I could at least give it a whirl.
	Draw5PlayAll: Once a game starts you cannot join it, even if an existing player forfeits on time
	w00t: I was talking about the team one that's still waiting for two more players...

27) Ausmuh: Trade Y3 R3 Ausmuh

28) w00t: Sacrifice Y1 Ausmuh
Discover Y1 Ausmuh G2 Run_away
	Ausmuh: Maybe we should join that 3 player sinister game.

Also, maybe you should stop trying to blow up all my ships. :)
	Draw5PlayAll: Yes, join the 3P.

Says the only player who still has an intact homeworld...

29) Ausmuh: Build R1 Ausmuh
	w00t: I'm down to join it... not sure how sinister works, but it sounds sinister... 

30) w00t: Build Y1 Run_away
	Draw5PlayAll: Sinister = destroy the player on your left to win. If anyone else causes their elimination, the game continues and your target changes.

31) Ausmuh: Build G2 Blucifer

32) w00t: Discover Y1 Run_away G3 O_o

33) Ausmuh: Trade G2 Y2 Blucifer

34) w00t: Build Y2 Yan

35) Ausmuh: Trade G1 R1 Blucifer

36) w00t: Move Y1 Yan W00t

37) Ausmuh: Trade R3 Y3 Ausmuh

38) w00t: Build G1 Illuminati
	w00t: I am so doomed :)

39) Ausmuh: Trade G1 B1 Blucifer
	Ausmuh: Haha you'd think that, but sometimes I have a very hard time putting together the endgame. I had Felix in a bad spot in our last game, but fumbled it all somewhere along the way! o.O

40) w00t: Build Y2 Yan
	w00t: That happened to me recently on a game, too! I think it was even against Felix.... I had him in a tight corner, but wasn't watching his pieces and he catastrophe'd all my ships at my homeworld... clever guy :)

41) Ausmuh: Trade Y3 G3 Ausmuh

42) w00t: Build Y3 Run_away

	Laurie_Menke: Hi w00t... I just wanted to let you and Ausmuh know that I'm making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that's the right thing to do.  :)


31221)
Started: 2017.1.24, Ended: 2017.3.5
Participants: actilson (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) actilson: Homeworld B2 Y1 G3

3) ts52: Build G1 Ts52

4) actilson: Build G1 Actilson

5) ts52: Trade G1 B1 Ts52

6) actilson: Trade G1 B1 Actilson

7) ts52: Build B2 Ts52

8) actilson: Build G1 Actilson

9) ts52: Build G1 Ts52

10) actilson: Build B2 Actilson

11) ts52: Discover B1 Ts52 G2 Kermit

12) actilson: Discover B2 Actilson R3 Death

13) ts52: Trade B2 Y2 Ts52

14) actilson: Build B2 Actilson

15) ts52: Build B3 Kermit

16) actilson: Move B1 Actilson Death

17) ts52: Build B3 Kermit

18) actilson: Build B3 Actilson

19) ts52: Trade B3 Y3 Kermit

20) actilson: Move B3 Actilson Death

21) ts52: Build B3 Kermit

22) actilson: Trade B1 G1 Death

23) ts52: Trade B3 R3 Kermit

24) actilson: Build G2 Death

25) ts52: Sacrifice Y2 Ts52
Move R3 Kermit Death
Move R3 Death Actilson

26) actilson: Trade B2 R2 Actilson

27) ts52: Attack R2 Actilson

28) actilson: Trade B3 R3 Death

29) ts52: Sacrifice R2 Actilson
Attack G3 Actilson
Attack G1 Actilson

	ts52: Good game. Thanks!


31254)
Variants: "Unrated, Hard time"
Started: 2017.1.25, Ended: 2017.1.30
Participants: Ausmuh (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3

2) Ausmuh: Homeworld G2 B1 Y3

3) Babamots: Build G1 Babamots

4) Ausmuh: Build Y1 Ausmuh

5) Babamots: Trade G1 Y1 Babamots

6) Ausmuh: Discover Y1 Ausmuh B3 Bluzebub

7) Babamots: Build G1 Babamots

8) Ausmuh: Trade Y1 G1 Bluzebub

9) Babamots: Discover G1 Babamots B2 Zakdorn

10) Ausmuh: Build G1 Bluzebub

11) Babamots: Build G2 Babamots

12) Ausmuh: Trade G1 Y1 Bluzebub

13) Babamots: Discover G2 Babamots B2 Husnock

14) Ausmuh: Build G1 Bluzebub

15) Babamots: Build G2 Babamots

16) Ausmuh: Trade G1 R1 Bluzebub

17) Babamots: Sacrifice G3 Babamots
Build G1 Babamots
Build G3 Zakdorn
Build G3 Babamots

18) Ausmuh: Build G3 Bluzebub

19) Babamots: Trade G3 R3 Zakdorn

20) Ausmuh: Discover G1 Bluzebub Y2 Mellow

21) Babamots: Sacrifice G2 Babamots
Build G2 Zakdorn
Build G3 Husnock

22) Ausmuh: Sacrifice G3 Bluzebub
Build Y1 Ausmuh
Build Y2 Bluzebub
Build G3 Mellow

23) Babamots: Trade G3 Y3 Husnock

24) Ausmuh: Sacrifice Y2 Bluzebub
Move Y1 Bluzebub Husnock
Move G1 Mellow Babamots

25) Babamots: Attack G1S Babamots

26) Ausmuh: Move G3 Mellow Babamots
Catastrophe Babamots Green

27) Babamots: Trade G2 Y2 Zakdorn

28) Ausmuh: Trade R1 G1 Bluzebub

29) Babamots: Sacrifice Y2 Zakdorn
Move Y3 Husnock Bluzebub
Move Y3 Bluzebub Ausmuh
	Ausmuh: hmmm... perhaps I got a little too gung ho. :)

30) Ausmuh: Move Y1 Husnock Babamots
	Babamots: It's tricky to know when you have enough to go for the throat. I had to look at the board a long time before I was sure I wasn't about to die.
	Ausmuh: In for the kill. With that free R3 you have I don't see a way out of it. GG! Next time won't be so easy... hopefully. 

31) Babamots: Sacrifice R3 Zakdorn
Attack Y3S Ausmuh
Attack Y1S Ausmuh
Pass
Pass
Pass
	Babamots: GG! Until we meet again somewhere in the cosmos...



31265)
Started: 2017.1.26, Ended: 2017.3.14
Participants: w00t (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld B2 Y1 G3

2) w00t: Homeworld B3 R2 G3
	bhorner: It's been a while, good luck!

3) bhorner: Build G1 Bhorner

4) w00t: Build G1 W00t

5) bhorner: Trade G1 Y1 Bhorner
	w00t: Many apologies for the delay... 
	bhorner: No worries!

6) w00t: Trade G1 Y1 W00t

7) bhorner: Build Y2 Bhorner

8) w00t: Build Y2 W00t

9) bhorner: Trade Y2 R2 Bhorner

10) w00t: Build Y2 W00t

11) bhorner: Discover Y1 Bhorner G3 Plants

12) w00t: Trade Y1 R1 W00t

13) bhorner: Build G1 Bhorner

14) w00t: Discover R1 W00t G1 Boop

15) bhorner: Discover G1 Bhorner Y3 Big-bird

16) w00t: Move Y2 W00t Boop

17) bhorner: Build G1 Bhorner

18) w00t: Build G2 W00t

19) bhorner: Sacrifice G3 Bhorner
Build G2 Big-bird
Build G2 Big-bird
Build G3 Bhorner

20) w00t: Build Y1 Boop

21) bhorner: Discover G1 Bhorner Y3 Sunny

22) w00t: Sacrifice G3 W00t
Build G3 W00t
Build Y2 W00t
Build Y3 W00t

23) bhorner: Sac G1 Sunny
Build Y3 Plants

24) w00t: Discover Y2 Boop R3 Rawr

25) bhorner: Move G2 Big-bird Boop

26) w00t: Sacrifice Y2 W00t
Discover Y1 Boop B3 Blue
Move R1 Boop Blue

27) bhorner: Move Y1 Plants Boop

28) w00t: Discover G3 W00t R1 Another_bop

29) bhorner: Discover G1 Big-bird Y2 Sticky-note

30) w00t: Move Y2 W00t Another_bop

31) bhorner: Sacrifice G2 Big-bird
Build Y3 Boop
Build R1 Bhorner

32) w00t: Sacrifice Y2 Another_bop
Move Y1 Blue Boop
Move Y2 Rawr Boop
Catastrophe Boop Yellow

33) bhorner: Discover R1 Bhorner Y3 Big-bird

34) w00t: Build Y1 W00t

35) bhorner: Build Y1 Plants

36) w00t: Move Y1 W00t Another_bop

37) bhorner: Sacrifice G2 Boop
Build R2 Bhorner
Build R3 Big-bird

38) w00t: Build Y2 Another_bop

39) bhorner: Discover R1 Big-bird Y2 Stick-note

40) w00t: Sacrifice G2 W00t
Build R3 Blue
Build G1 Another_bop

41) bhorner: Build G1 Bhorner

42) w00t: Move Y1 Another_bop Plants

43) bhorner: Discover Y3 Plants B1 Grover

44) w00t: Sacrifice R1 Blue
Attack Y1 Plants

45) bhorner: Build G2 Sticky-note

46) w00t: Move G3 Another_bop Blue

47) bhorner: Sacrifice G2 Sticky-note
Build R1 Big-bird
Build R3 Stick-note

48) w00t: Build G2 Blue

49) bhorner: Sacrifice Y3 Grover
Move G1 Sticky-note Blue
Move G1 Bhorner Blue
Catastrophe Blue Green
Move R2 Bhorner Plants

50) w00t: Sacrifice Y2 Another_bop
Move R3 Blue Another_bop
Move R3 Another_bop Plants
	bhorner: I think it would be fun to test the system rendering, make an unrated game, where no one calls catastrophes, and put all pieces in a single system, just to see what it looks like.  :)
	Draw5PlayAll: I am up for that.
	bhorner: Whoah, that threw me, you are someone other than w00t right?  :)
	bhorner: I put in a challenge to you to try it.

51) bhorner: Move R1 Stick-note Plants

52) w00t: Discover R3 Plants B1 Bravelyrunaway
	w00t: lol... sly :)

53) bhorner: Attack Y1 Plants
	bhorner: I couldn't believe you had turned that around on me, I was lucky to think of it rather than sly.  :)

54) w00t: Move Y1 Plants Bravelyrunaway

55) bhorner: Build Y2 Plants

56) w00t: Sacrifice G1 Another_bop
Build Y2 W00t
	Draw5PlayAll: Green chat messages are spectators and red ones are players.

57) bhorner: Discover R3 Stick-note Y3 Snuffy

58) w00t: Trade Y2 G2 W00t

59) bhorner: Discover Y1 Plants R1 Spark

60) w00t: Sacrifice G2 W00t
Build Y2 W00t
Build Y2 Bravelyrunaway

61) bhorner: Build G1 Bhorner

62) w00t: Trade Y1 G1 Bravelyrunaway

63) bhorner: Sacrifice G1 Bhorner
Build Y1 Spark

64) w00t: Trade Y2 G2 W00t

65) bhorner: Build Y2 Plants

66) w00t: Discover R3 Bravelyrunaway B3 Nothing2see
	w00t: This game is madness!! OMG such fun :D
I'm pretty convinced you've got me in a tight tight corner right now, though

67) bhorner: Move R2 Plants Bravelyrunaway

68) w00t: Sacrifice Y2 Bravelyrunaway
Move R3 Nothing2see Spark
Move R3 Spark Plants
	bhorner: I like Homeworlds, I haven't really played it much outside a small group of friends.  :)  I've played here once in a while over the years, hopefully it sticks this time!
	w00t: I got introduced to Homeworlds on the tabletop through a buddy many moons ago... We've both since moved away, and just barely returned here not too long ago... I'm still dusting off my memory banks, but this game is so awesome that even if you're playing against someone who's "better" than you are, it's still going to be a fun game that anyone can win :D

69) bhorner: Sacrifice Y2 Plants
Move R2 Bravelyrunaway Plants
Discover R1 Big-bird Y2 Sticky-note

70) w00t: Attack Y2 Plants

71) bhorner: M R1 Sticky-note Plants
Cat Plants Red

72) w00t: Build Y2 Plants

73) bhorner: Build G1 Bhorner

74) w00t: Build Y2 W00t

75) bhorner: Discover Y1 Spark B3 Bubble

76) w00t: Build G1 Bravelyrunaway

77) bhorner: Build R1 Bhorner



31283)
Variants: "Hard time"
Started: 2017.1.29, Ended: 2017.2.9
Participants: bhorner (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld G3 Y1 B3
	Ausmuh: hello, have a fun game!

2) bhorner: Homeworld Y2 B1 G3

3) Ausmuh: Build B1 Ausmuh
	bhorner: You too, hope I can hold my own, it's been a long time!

4) bhorner: Build G1 Bhorner
	Ausmuh: Same here. I'm only a couple games deep sense getting back into it. The one or two 48 hour games I've done so far have been really enjoyable. I have a hard time remembering my plans if it goes much longer then that before I get a turn.

5) Ausmuh: Discover B1 Ausmuh G2 Gwar

6) bhorner: Trade G1 Y1 Bhorner

7) Ausmuh: Build B1 Ausmuh

8) bhorner: Build Y1 Bhorner

9) Ausmuh: Build B2 Gwar

10) bhorner: Discover Y1 Bhorner G3 Plant

11) Ausmuh: Trade B2 Y2 Gwar

12) bhorner: Build G1 Bhorner

13) Ausmuh: Build B2 Gwar

14) bhorner: Sac G3 Bhorner
Build Y2 Plant
Build Y3 Plant
Build Y3 Bhorner

15) Ausmuh: Build Y3 Gwar

16) bhorner: Sacrifice Y1 Bhorner
Move Y1 Plant Gwar

17) Ausmuh: Trade Y3 R3 Gwar

18) bhorner: Trade G1 R1 Bhorner

19) Ausmuh: Attack Y1S Gwar

20) bhorner: Discover Y3 Plant G2 Small-plant

21) Ausmuh: Trade B3 G3 Ausmuh

	bhorner: Dang it.  Sorry about that.
	Ausmuh: No worries! Maybe I should start making the 48 hour games non-rated. Next time! :) 


31298)
Started: 2017.1.31, Ended: 2017.2.15
Participants: w00t (S), alexhouston (N)
Winner: w00t

1) alexhouston: Homeworld Y2 B3 G3

2) w00t: Homeworld G3 B1 Y3

3) alexhouston: Build G1 Alexhouston

4) w00t: Build Y1 W00t

5) alexhouston: Build G1 Alexhouston

6) w00t: Build Y1 W00t

7) alexhouston: Discover G1 Alexhouston B1 Post

8) w00t: Trade Y1 R1 W00t

9) alexhouston: Trade G1 Y1 Alexhouston

10) w00t: Discover Y1 W00t G2 Boop

11) alexhouston: Build G1 Post

12) w00t: Build R1 W00t

13) alexhouston: Trade G1 R1 Post

14) w00t: Move R1 W00t Boop

15) alexhouston: Build R2 Post

16) w00t: Build R2 Boop

17) alexhouston: Build G1 Post

18) w00t: Discover R2 Boop G3 Bop

19) alexhouston: Move Y1 Alexhouston Post

20) w00t: Trade R1 B1 W00t

21) alexhouston: Move G1 Post Alexhouston

22) w00t: Build B2 W00t

23) alexhouston: Trade G3 B3 Alexhouston

24) w00t: Move B2 W00t Boop

25) alexhouston: Build B2 Alexhouston

26) w00t: Discover B2 Boop Y1 Illuminati

27) alexhouston: Move B2 Alexhouston Post

28) w00t: Build Y2 W00t

29) alexhouston: Move R2 Post Boop


30) w00t: Sacrifice Y1 Boop
Discover R1 Boop G1 Run_away

31) alexhouston: Build G2 Post

32) w00t: Trade Y3 G3 W00t

33) alexhouston: Build Y1 Post

34) w00t: Build B2 W00t

35) alexhouston: Build G2 Alexhouston

36) w00t: Sacrifice B1 W00t
Trade R1 B1 Run_away

37) alexhouston: Trade B3 R3 Alexhouston

38) w00t: Build B3 Run_away

39) alexhouston: Move Y1 Post Boop

40) w00t: Build B3 Run_away

41) alexhouston: Move R2 Boop Illuminati

42) w00t: Sacrifice B2 Illuminati
Trade B3 R3 Run_away
Trade B3 Y3 Run_away

43) alexhouston: Sacrifice G2 Alexhouston
Build G2 Alexhouston
Build R1 Post

44) w00t: Build R1 Run_away

45) alexhouston: Sacrifice G2 Post
Build Y2 Post
Build Y3 Boop

46) w00t: Sacrifice G3 W00t
Build R2 Run_away
Build R3 Bop
Build Y3 W00t

47) alexhouston: Sacrifice Y2 Post
Move R1 Post Boop
Move R1 Boop Run_away
Catastrophe Run_away Red

48) w00t: Build Y2 Run_away

49) alexhouston: Move B2 Post Boop

50) w00t: Move Y2 Run_away Bop

51) alexhouston: Move Y1 Boop W00t

52) w00t: Trade Y3 R3 W00t

53) alexhouston: Sacrifice G2 Alexhouston
Build G2 Alexhouston
Build Y3 Post

54) w00t: Attack Y1 W00t

55) alexhouston: Trade G2 B2 Alexhouston

56) w00t: Build B3 Run_away

57) alexhouston: Move B2 Alexhouston Illuminati

58) w00t: Sacrifice B2 W00t
Trade B1 R1 Run_away
Trade R3 B3 Bop

59) alexhouston: Build B1 Boop

60) w00t: Move B3 Bop Illuminati

61) alexhouston: Discover B2 Illuminati G2 Moon

62) w00t: Sacrifice R1 Run_away
Attack R2 Illuminati

63) alexhouston: Sacrifice Y3 Boop
Move B1 Boop W00t
Move B2 Boop W00t
Move B2 Moon W00t
Catastrophe W00t B

64) w00t: Sacrifice Y2 Bop
Move Y3 Run_away Alexhouston
Move B3 Run_away Alexhouston

65) alexhouston: Attack Y3 Alexhouston

66) w00t: Sacrifice R3 W00t
Attack R3 Alexhouston
Attack Y3 Alexhouston
Attack G1 Alexhouston

	w00t: Thank you very much for the awesome game!! rematch any time :)


30933)
Started: 2017.1.31, Ended: 2017.2.9
Participants: dragonlord (S), w00t (W), Draw5PlayAll (N), alexhouston (E)
Winner: alexhouston

1) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: I believe this is just a last man standing. I have no idea how skilled any of the players are except dragon lord.

2) alexhouston: Homeworld R3 B2 G3
	w00t: Honestly, I've only played binary homeworlds... I'm excited to see how this many players works out!

3) dragonlord: Homeworld R3 G2 Y3 *
	alexhouston: yeah my first time playing w 4 people
	alexhouston: yeah my first time playing w 4 people
	Draw5PlayAll: So, we are going to have 2 players with the same homeworld star pattern. That, or someone chooses two same-sized stars.

Then again, I am not sure what happens to dragonlord. He was inactive.
	Draw5PlayAll: Wait, so I am not sure how the turn order works. I think all uppercase names are first and then lowercase names, in alphabetical order. This is a flaw.

4) w00t: Homeworld R2 Y1 G3 *

5) Draw5PlayAll: Build G1 Draw5playall

6) alexhouston: Build G1 Alexhouston

7) w00t: Build G1 W00t

8) alexhouston: Build G1 Alexhouston



31305)
Variants: "Unrated"
Started: 2017.1.31, Ended: 2017.2.6
Participants: w00t (S), fogus (N)
Winner: fogus

1) fogus: Homeworld B1 G2 Y3

2) w00t: Homeworld R3 Y1 G3 *

3) fogus: Build Y1 Fogus

4) w00t: Build G1 W00t

5) fogus: Build Y1 Fogus

6) w00t: Discover G1 W00t B2 Boop

7) fogus: Discover Y1 Fogus G3 Orcus

8) w00t: Build G1 W00t

9) fogus: Build Y2 Orcus

10) w00t: Build G1 Boop

11) fogus: Trade Y3 G3 Fogus

12) w00t: Build G2 Boop

13) fogus: Build G2 Fogus

14) w00t: Trade G2 Y2 Boop

15) fogus: Discover G2 Fogus Y3 Acererak

16) w00t: Move G1 Boop Acererak

17) fogus: Discover G2 Acererak R2 Meph

18) w00t: Move G1 Acererak Fogus

19) fogus: Trade G3 R3 Fogus

20) w00t: Sacrifice G3 W00t
Build G2 Fogus
Build G3 Fogus
Build G3 W00t
Catastrophe Fogus Green

21) fogus: Build G1 Meph

22) w00t: Build G2 Boop
	w00t: I'm not 100% certain I should be able to make that move.... Is it legal to not call my catastrophe until after I build my third g3, or is it mandatory for the catastrophe to occur before I continue building?

23) fogus: Sacrifice Y2 Orcus
Move G1 Meph W00t
Move G2 Meph W00t
Catastrophe W00t G
	fogus: It seems ok to me.... so to speak. :)

	Draw5PlayAll: You can call catastrophe at any time on your turn, and you need not wait.

Also, you could do (assuming 2 reds at system X) sac Y3, move R1 to X, move R1 to X, catastrophe, move R3 to X.
	w00t: I get all that, but if I was sitting across the table from an opponent the catastrophe would have been called as soon as I built that second green ship in the fogus system, so my last build would have been a g1 instead of the g3 I was able to build
	Draw5PlayAll: Sure. You can also do it later if you want.
	Draw5PlayAll: In fact, a while back the rule was you could *only* call catastrophe at the end... but now it is completely flexible.

Another situation: you need to access the enemy's homeworld but the ONLY way in is through a system with 3 of the color you want. You can breeze through it, as if the radiation levels were not present long enough...
	fogus: Thank you for the game.  
	w00t: :o  How did I miss that?
That was a very fun game!  Rematch anytime :)


31313)
Variants: "Hard time"
Started: 2017.2.2, Ended: 2017.2.16
Participants: Draw5PlayAll (S), w00t (N)
Winner: Draw5PlayAll

1) w00t: Homeworld R3 B1 G3

2) Draw5PlayAll: Homeworld B1 G2 B3 *
	w00t: There are no challenges because they keep getting accepted!  I've been loving how active these homeworld games have been since I returned!
	Draw5PlayAll: Hmmm... never thought of that. I have seen many other dead games with no challenges, and stuff.
	Draw5PlayAll: I was about to type homeworld B3 R1 G3... realized you took the goldilocks

3) w00t: Build G1 W00t

4) Draw5PlayAll: Build B1 Draw5playall
	w00t: I've never seen anyone start with so much blue... You've got lots of time to stabilize, so I'm sure you're not worried, but I'm intrigued by your start :) 

5) w00t: Trade G1 Y1 W00t

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) w00t: Build Y1 W00t

8) Draw5PlayAll: Build B2 Draw5playall

9) w00t: Discover Y1 W00t G2 Boop

10) Draw5PlayAll: Discover B2 Draw5playall G3 G3

11) w00t: Build Y1 Boop

12) Draw5PlayAll: Build B2 G3

13) w00t: Discover Y1 Boop B3 O_o

14) Draw5PlayAll: Build B2 Draw5playall

15) w00t: Discover Y1 Boop B3 Blue

16) Draw5PlayAll: Build B3 G3

17) w00t: Build Y2 W00t

18) Draw5PlayAll: Trade B3 Y3 G3

19) w00t: Sacrifice Y2 W00t
Discover Y1 W00t G2 Temp
Discover Y1 Temp B3 Yoink

20) Draw5PlayAll: Build Y2 G3
	Draw5PlayAll: !!!

21) w00t: Build G1 W00t
	Draw5PlayAll: Invasion crew, we have a new ission.

22) Draw5PlayAll: Build Y2 Draw5playall

23) w00t: Trade Y1 G1 Yoink

24) Draw5PlayAll: Trade Y2 G2 Draw5playall

25) w00t: Build G1 Yoink

26) Draw5PlayAll: Trade B2 R2 G3

27) w00t: Trade G1 Y1 Yoink

28) Draw5PlayAll: Build R1 G3

29) w00t: Build Y2 Yoink
	Draw5PlayAll: Your blues will fall to me.

30) Draw5PlayAll: Build B2 G3

31) w00t: Sacrifice G1 W00t
Build Y2 Blue

32) Draw5PlayAll: Move Y3 Draw5playall O_o

33) w00t: Build G1 Yoink
	Draw5PlayAll: Ha ha.

34) Draw5PlayAll: Sacrifice Y2 G3
Move G2 Draw5playall Blue
Move Y3 G3 Draw5playall
	Draw5PlayAll: I guess I am just taunting you now.

35) w00t: Sacrifice Y2 Blue
Move Y1 Blue Draw5playall
Move Y1 O_o Draw5playall
	w00t: You definitely have the upper hand in this game... I was trying too hard to keep you away from the b3's and just let you build an army o_O

36) Draw5PlayAll: Trade Y3 R3 Draw5playall
	Draw5PlayAll: I considered sending the G3 to a Y3 but realized the sacrifice of a Y2 kept you from growing the Y3.

37) w00t: Trade Y1 G1 Draw5playall
	w00t: I did want that y3

38) Draw5PlayAll: Sacrifice G2 Blue
Build B3 G3
Build Y1 O_o
	Draw5PlayAll: You are getting away with nothing.

39) w00t: Sacrifice Y2 Yoink
Move G1 Yoink Draw5playall
Move G1 Yoink Draw5playall
Catastrophe Draw5playall Green

40) Draw5PlayAll: Attack Y1N Draw5playall
	Draw5PlayAll: I got a B3, and you will never get that 4th blue ever!

41) w00t: Build G1 W00t
	Draw5PlayAll: Fell right into my trap.

42) Draw5PlayAll: Trade Y1 G1 Draw5playall

43) w00t: Trade G1 Y1 W00t

44) Draw5PlayAll: Sacrifice Y1 O_o
D B3 G3 G2 G2
	w00t: right... trap... admittedly, your fleet is one to be feared; and now you are a single hop from my homeworld

45) w00t: Build Y1 W00t
	Draw5PlayAll: No... I still need two moves. If you wanted distance you took out the right star.

46) Draw5PlayAll: Sacrifice Y3 O_o
Move R3 Draw5playall G2
Move R3 G2 W00t
Move B3 G2 W00t
	w00t: uhh.. right... that's what I was saying... like it'd take a y2 to hop once to a temporary star before you can reach mean... instead of two hops... I guess I just picture it differently :)
	w00t: *mine

47) w00t: Trade G3 B3 W00t

48) Draw5PlayAll: Sacrifice R3 W00t
Attack B3 W00t
Attack Y1 W00t
Attack Y1 W00t
	Draw5PlayAll: I leaked a blue so this makes me slightly nervous...
	w00t: yeah... you've got the attack ability to back that up... I'm trying to come up with a clever solution :)

	w00t: I choose that move solely so I can say you didn't lock me out of blue the entire game :D
	w00t: Very fun game :) I'll post a new challenge if you're down for a rematch
	Draw5PlayAll: Too little, WAY too late. How many movies or other stories end where the guy gets his/her life wish or something right before dying?

And I took your blue back anyway.

I think the game would have been a lot more competitive had you traded for a B3 instead of discovering all those systems.
	w00t: I took a gamble, and it didn't pay off... >>shrug<< still fun to try different tactics


31346)
Variants: "Hard time"
Started: 2017.2.4, Ended: 2017.2.9
Participants: foksieloy (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3

2) foksieloy: Homeworld B1 Y2 G3

3) Babamots: Build G1 Babamots
	foksieloy: Hi! Good luck, have fun!
	Babamots: Thanks! You too!

4) foksieloy: Build G1 Foksieloy
	Babamots: And thanks for the game. I'm trying to figure out where I belong in the stack.

5) Babamots: Trade G1 Y1 Babamots
	foksieloy: Have you played often? With friends? Online?
	Babamots: I've only played a handful of times, mostly here on SDG.

6) foksieloy: Trade G1 Y1 Foksieloy
	Babamots: I think the main trick to the game is patience to study a position carefully. Even Andy seems to lose by not recognizing when death is imminent.

7) Babamots: Build G1 Babamots

8) foksieloy: Build G1 Foksieloy
	foksieloy: Manage the stash, that is the main thing. Deny colors. :)

9) Babamots: Discover G1 Babamots B2 Iconia

10) foksieloy: Discover G1 Foksieloy B3 Annie

11) Babamots: Build G1 Babamots

12) foksieloy: Build G2 Annie

13) Babamots: Discover G1 Babamots B2 Vandros

14) foksieloy: Trade G2 R2 Annie
	foksieloy: trade g2 r2 annie
	foksieloy: damn wrong window :D

15) Babamots: Build G2 Babamots

16) foksieloy: Build G2 Annie
	Babamots: Someone has been broadcasting your fleet's orders to the enemy. Maybe you've got a infiltrator?

17) Babamots: Sacrifice G3 Babamots
Build G2 Iconia
Build G3 Vandros
Build G3 Babamots
	foksieloy: Infiltrator taken care of, has been fired into the Annie star.

18) foksieloy: Trade G2 Y2 Annie

19) Babamots: Trade G1 R1 Iconia

20) foksieloy: Discover G1 Annie B1 Tibbers

21) Babamots: Trade G1 Y1 Vandros

22) foksieloy: Build G1 Foksieloy
	Babamots: Oh, you moved to a small system, not a medium. I don't like my move so much anymore.

23) Babamots: Discover G3 Vandros B3 Celtris
	Babamots: I don't remember if I've ever seen anyone move to a system that wasn't connected to any homeworld.
	Draw5PlayAll: One or two happened in the Homeworlds Demo Game, in the 25000s between ts52 and MagicJohn.

24) foksieloy: Sacrifice G1 Foksieloy
Build Y2 Annie
	foksieloy: Sorry for waiting, I was sure I posted my move this morning but seems internet wasn't cooperating with me.

25) Babamots: Sacrifice G3 Babamots
Build Y3 Babamots
Build Y3 Vandros
Build G1 Celtris

26) foksieloy: Discover Y1 Foksieloy Y3 Teemo

27) Babamots: Sacrifice Y1 Babamots
Move G3 Celtris Foksieloy

28) foksieloy: Trade G3 R3 Foksieloy
	Babamots: I'm pretty sleepy, so I hope I haven't made a calculation error.

29) Babamots: Sacrifice R1 Iconia
Attack R3S Foksieloy
	Babamots: Shoot, I missed that little guy on Tibbers. Quite a nuisance.
	Babamots: Sorry about that. I'll have to come back to it in the morning.

	foksieloy: GG
	Babamots: Good game. Thanks again!


31314)
Variants: "Sinister, Hard time"
Started: 2017.2.5, Ended: 2017.3.17
Participants: w00t (S), Draw5PlayAll (N), Ausmuh (E)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Ausmuh: Homeworld G3 Y2 B3

3) w00t: Homeworld G2 B1 R3
	Ausmuh: Should be interesting

4) Draw5PlayAll: Build G1 Draw5playall

5) Ausmuh: Build B1 Ausmuh

6) w00t: Build R1 W00t
	Ausmuh: So the circle of carnage is ausmuh kills w00t kills Draw5PlayAll? (With me winning at the end of course.)
	Draw5PlayAll: The game ends once one of those three things happens. So if w00t gets me out, then w00t wins.

That being said, Sinister is broken in the sense that someone can simply resign (or if they want, make one move and then resign) when they are about to be defeated.
	Ausmuh: Got ya. Thanks!

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) Ausmuh: Trade B1 R1 Ausmuh

9) w00t: Build R1 W00t

10) Draw5PlayAll: Build G1 Draw5playall

11) Ausmuh: Build B1 Ausmuh

12) w00t: Trade R1 Y1 W00t

13) Draw5PlayAll: Trade G1 B1 Draw5playall

14) Ausmuh: Discover B1 Ausmuh G1 Zang

15) w00t: Discover R1 W00t Y3 Unf

16) Draw5PlayAll: Discover B1 Draw5playall G2 G2

17) Ausmuh: Trade B1 Y1 Zang

18) w00t: Build R1 W00t

19) Draw5PlayAll: Build G1 Draw5playall

20) Ausmuh: Build B1 Ausmuh

21) w00t: Build R2 W00t

22) Draw5PlayAll: Build B1 G2

	Draw5PlayAll: Hi


31333)
Started: 2017.2.6, Ended: 2017.3.2
Participants: fogus (S), w00t (N)
Winner: fogus

1) w00t: Homeworld R3 Y1 G3 *
	fogus: Hello again!

2) fogus: Homeworld B2 G3 Y3
	w00t: 
	w00t: huzzah! rematch! :D  Good luck

3) w00t: Build G1 W00t

4) fogus: Build Y1 Fogus

5) w00t: Discover G1 W00t B2 Star

6) fogus: Build Y1 Fogus

7) w00t: Build G1 W00t

8) fogus: Trade Y3 G3 Fogus

9) w00t: Build G1 W00t

10) fogus: Build G2 Fogus

11) w00t: Build G2 Star

12) fogus: Trade G3 Y3 Fogus

13) w00t: Discover G1 W00t B2 Otherstar

14) fogus: Trade Y1 R1 Fogus

15) w00t: Trade G2 Y2 Star
	w00t: hehe... I almost effed that up pretty good :)
	fogus: :)

16) fogus: Discover G2 Fogus B1 Carp

17) w00t: Build G2 Otherstar

18) fogus: Sacrifice Y1 Fogus
Discover G2 Carp Y2 Pike

19) w00t: Trade G1 B1 Otherstar

20) fogus: Build G1 Pike

21) w00t: Sacrifice B1 Otherstar
Trade G1 B1 W00t

22) fogus: Build Y1 Fogus

23) w00t: Discover G1 Star Y1 Unf

24) fogus: Build Y2 Fogus

25) w00t: Sacrifice G2 Otherstar
Build Y3 Star
Build G1 Unf

26) fogus: Move R1 Fogus Unf

27) w00t: Sacrifice Y2 Star
Move G1 Unf Fogus
Move G1 Unf Fogus

28) fogus: Sacrifice Y2 Fogus
Move G2 Pike W00t
Move G1 Pike W00t

29) w00t: Trade G3 B3 W00t
	w00t: not sure why I haven't caused a catastrophe on your yellow ships... Not gonna take the move back because I legit didn't see that I could've done that until after I'd committed to this move

30) fogus: Attack B1 W00t

31) w00t: Attack G2 W00t

32) fogus: Build B1 W00t

33) w00t: Trade B3 R3 W00t

34) fogus: Build G2 W00t

35) w00t: Sacrifice G2 W00t
Build G2 Fogus
Build Y2 Star
Catastrophe Fogus Green

36) fogus: Trade G1 R1 W00t

37) w00t: Move Y3 Star W00t

38) fogus: Build R1 W00t
Catastrophe W00t R

39) w00t: Trade Y2 B2 Star

40) fogus: Trade G2 Y2 W00t
	w00t: I am so doomed!! :)

41) w00t: Sacrifice B2 Star
Trade Y3 R3 W00t
Pass

42) fogus: Move R1 Unf Fogus

43) w00t: Attack Y2 W00t

44) fogus: Trade B1 Y1 W00t

45) w00t: Discover Y2 W00t G3 Doom

46) fogus: Move Y1 Fogus W00t

47) w00t: Attack Y1 W00t

48) fogus: Move Y3 Fogus W00t
Catastrophe W00t Y

	w00t: apologies for the delay at the end there... thank you for the mighty fun game :D
	Draw5PlayAll: Four pieces remain in play. That is destruction.


31386)
Started: 2017.2.8, Ended: 2017.4.14
Participants: alexhouston (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) alexhouston: Homeworld R3 B2 G3

3) ts52: Build G1 Ts52
	ts52: Sorry for the undo. I try not to take a s/m homeworld with people I haven't played often, and just forgot. Have a good game.

4) alexhouston: Build G1 Alexhouston

5) ts52: Trade G1 B1 Ts52

6) alexhouston: Build G1 Alexhouston

7) ts52: Build B1 Ts52

8) alexhouston: Trade G1 Y1 Alexhouston

9) ts52: Build G1 Ts52

10) alexhouston: Build Y1 Alexhouston

11) ts52: Discover B1 Ts52 G2 Kermit

12) alexhouston: Discover Y1 Alexhouston R1 Boop

13) ts52: Build B2 Kermit

14) alexhouston: Move G1 Alexhouston Boop

15) ts52: Build B2 Ts52

16) alexhouston: Build Y1 Boop

17) ts52: Build B3 Kermit

18) alexhouston: Move Y1 Boop Kermit

19) ts52: Trade B3 R3 Kermit



31390)
Started: 2017.2.9, Ended: 2017.5.24
Participants: w00t (S), alexhouston (W), dragonlord (N), Draw5PlayAll (E)
Winner: Draw5PlayAll

1) dragonlord: Homeworld R1 G2 Y3 *

2) Draw5PlayAll: Homeworld B3 R1 G3

3) w00t: Homeworld G3 Y2 B3

4) alexhouston: Homeworld R3 B2 G3

5) dragonlord: Build Y1 Dragonlord
	w00t: hehe... didn't mean to do banker

6) Draw5PlayAll: Build G1 Draw5playall

7) w00t: Build B1 W00t

8) alexhouston: Build G1 Alexhouston

9) dragonlord: Discover Y1 Dragonlord B3 Icerealm

10) Draw5PlayAll: Trade G1 Y1 Draw5playall

11) w00t: Trade B1 Y1 W00t

12) alexhouston: Trade G1 Y1 Alexhouston

13) dragonlord: Trade Y1 B1 Icerealm

14) Draw5PlayAll: Build G1 Draw5playall

15) w00t: Build B1 W00t

16) alexhouston: Build Y1 Alexhouston

17) dragonlord: Build Y1 Dragonlord

18) Draw5PlayAll: Build Y2 Draw5playall

19) w00t: Build Y2 W00t

20) alexhouston: Build Y2 Alexhouston

21) dragonlord: Move Y1 Dragonlord Icerealm

22) Draw5PlayAll: Trade Y2 R2 Draw5playall

23) w00t: Discover Y1 W00t R1 Doom
	alexhouston: my bad on the undo, just redid the original move

24) alexhouston: Discover Y1 Alexhouston B1 Post

25) dragonlord: Move B1 Icerealm Dragonlord
	Draw5PlayAll: W00t, you can cripple Alex Houston... sac the Y2 and move your Y1 into his homeworld!
	w00t: that cripples me just a much as it doe him o_O

26) Draw5PlayAll: Build Y2 Draw5playall
	Draw5PlayAll: Argh, well then go and do your business normally.

27) w00t: Trade B1 R1 W00t

28) alexhouston: Build G1 Alexhouston

29) dragonlord: Build B1 Dragonlord

30) Draw5PlayAll: Trade Y2 B2 Draw5playall

31) w00t: Trade Y2 G2 W00t

32) alexhouston: Build G1 Alexhouston

33) dragonlord: Trade B1 G1 Dragonlord

34) Draw5PlayAll: Build Y2 Draw5playall
	Draw5PlayAll: Not this again!

35) Draw5PlayAll: Discover B2 Draw5playall G2 G2
	Draw5PlayAll: What time is it? Time for your empire to cease to exist.

36) dragonlord: Move G1 Dragonlord Icerealm

37) Draw5PlayAll: Move Y1 Draw5playall G2
	Draw5PlayAll: w00t is inactive...
	Draw5PlayAll: Next time I start a 4P game I will include only Felix, ts52, and NYC Avri.
	dragonlord: He has 8 days left on his time
	Draw5PlayAll: And was last active two weeks ago.
	Laurie_Menke: Hi everyone... I just wanted to let you know that I'm making a list of games to ask Aaron to end due to abandonment.  I know you are all fairly currently active on SDG, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that's the right thing to do.  :)
	dragonlord: Please don't add this to the list of abandoned games.
	Draw5PlayAll: Yeah, we can just boot the one player and continue.
	Draw5PlayAll: So that explains how come I got about 10 monitored Homeworlds game with a new chat message.

Did you use an automated script to write those comments?
	Laurie_Menke: OK... you got it!  :)  Have fun!  :)   (And no, Draw5PlayAll... I just copied and pasted, but changed the names.)

38) dragonlord: Build Y2 Icerealm
	Draw5PlayAll: He's dead, Jim...
	dragonlord: should we force alexhouston to resign?
	Draw5PlayAll: Give him... nah, I will do the honors.

39) Draw5PlayAll: Build B1 G2

40) dragonlord: Trade Y1 R1 Icerealm
	Draw5PlayAll: gives you four days
	dragonlord: explain the vote please?

41) Draw5PlayAll: Move Y1 G2 Doom
	Draw5PlayAll: Just read the wiki...

42) dragonlord: Build R2 Icerealm

43) Draw5PlayAll: Attack Y1S Doom

44) dragonlord: Move R2 Icerealm G2

45) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack R2N G2
Pass

46) dragonlord: Build R2 Icerealm

47) Draw5PlayAll: Move Y1 Doom Alexhouston

	Draw5PlayAll: ???


31366)
Variants: "Unrated"
Started: 2017.2.11, Ended: 2017.2.22
Participants: Draw5PlayAll (S), fogus (N)
Winner: Draw5PlayAll

1) fogus: Homeworld B1 Y2 G3

2) Draw5PlayAll: Homeworld B1 G2 B3 *

3) fogus: Build G1 Fogus
	Draw5PlayAll: We have successfully landed in a system. The small blue planet bears striking resemblance to our enemy's...

4) Draw5PlayAll: Build B1 Draw5playall

5) fogus: Trade G3 B3 Fogus

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) fogus: Discover B3 Fogus Y3 Whynot

8) Draw5PlayAll: Build B2 Draw5playall

9) fogus: Build G1 Fogus
	Draw5PlayAll: Do it! Do it! Do it!

10) Draw5PlayAll: Trade B2 R2 Draw5playall

11) fogus: Build G1 Fogus

12) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move R2 Draw5playall Whynot
Move R2 Whynot Fogus
Pass
	Draw5PlayAll: This will be over soon.

13) fogus: Trade G1 R1 Fogus

14) Draw5PlayAll: Attack R1 Fogus

15) fogus: Trade G1 R1 Fogus

16) Draw5PlayAll: Sacrifice R2 Fogus
Attack R1N Fogus
Attack G1N Fogus
	Draw5PlayAll: Good game.
	fogus: You're being kind.  But it was fun to find out (the hard way) the downside of leaving a HW without a large.  :)  Thanks for the game.



31334)
Started: 2017.2.16, Ended: 2017.3.27
Participants: Draw5PlayAll (S), Felix (N)
Winner: Draw5PlayAll

1) Felix: Homeworld B1 R3 G3

2) Draw5PlayAll: Homeworld B1 G3 B3 *

3) Felix: Build G1 Felix
	Felix: Good luck and have fun!
	Draw5PlayAll: Are you laying a trap?

4) Draw5PlayAll: Build B1 Draw5playall
	Felix: No? Are you?

5) Felix: Trade G1 Y1 Felix

6) Draw5PlayAll: Trade B3 Y3 Draw5playall
	Draw5PlayAll: I thought you were the one who actually told me about this strategy.

7) Felix: Build Y1 Felix
	Felix: Oh, I did, haha. But I didn't know you were going to use it. I'm not laying a trap :P

8) Draw5PlayAll: Build B2 Draw5playall

9) Felix: Discover Y1 Felix G2 Out

10) Draw5PlayAll: Trade B2 R2 Draw5playall

11) Felix: Build Y1 Out

12) Draw5PlayAll: Build B2 Draw5playall

13) Felix: Build Y2 Felix

14) Draw5PlayAll: Move R2 Draw5playall Out

15) Felix: Move Y1 Out Draw5playall

16) Draw5PlayAll: Trade Y3 R3 Draw5playall

17) Felix: Sacrifice G3 Felix
Build Y2 Draw5playall
Build Y2 Out
Build Y3 Felix

18) Draw5PlayAll: Attack Y2N Out

19) Felix: Trade Y3 G3 Felix

20) Draw5PlayAll: Sacrifice R2 Out
Attack Y1 Out
Attack Y2 Draw5playall

21) Felix: Build Y3 Draw5playall

22) Draw5PlayAll: Attack Y3 Draw5playall
	Draw5PlayAll: I would have traded the Y2 for a B2 and blown half my system...
	Draw5PlayAll: Well, your system, Since in this hypothetical universe you have the blue dominance.
	Felix: If I had done so, you could have destroyed me since I only had yellow at home.

23) Felix: Build Y3 Draw5playall
Catastrophe Draw5playall Yellow
	Draw5PlayAll: Really?

24) Draw5PlayAll: Trade B2 Y2 Draw5playall

25) Felix: Trade Y2 B2 Felix

26) Draw5PlayAll: Build B2 Draw5playall
	Felix: Really really.

27) Felix: Build G1 Felix
	Draw5PlayAll: I have more ships

28) Draw5PlayAll: Move B2 Draw5playall Out

29) Felix: Trade G1 R1 Felix

30) Draw5PlayAll: Build R1 Draw5playall

31) Felix: Discover B2 Felix G2 Rim

32) Draw5PlayAll: Move R1 Draw5playall Out

33) Felix: Build G1 Felix

34) Draw5PlayAll: Build R1 Out

35) Felix: Move R1 Felix Rim

36) Draw5PlayAll: Build R2 Draw5playall

37) Felix: Build R2 Rim

38) Draw5PlayAll: Build R2 Out

39) Felix: Trade R2 Y2 Rim

40) Draw5PlayAll: Move R1 Out Felix

41) Felix: Build R2 Rim

42) Draw5PlayAll: Trade R2 G2 Draw5playall

43) Felix: Move R1 Rim Draw5playall

44) Draw5PlayAll: Attack R1 Draw5playall

45) Felix: Build R2 Rim

46) Draw5PlayAll: Sac Y2 Draw5playall
Move R1 Felix Rim
Move R1 Draw5playall Rim
Catastrophe Rim Red

47) Felix: Build B2 Rim
	Draw5PlayAll: In case you forgot about my little guy... now you will not.

48) Draw5PlayAll: Build B3 Out

49) Felix: Move B2 Rim Draw5playall
	Felix: I did not forget!

50) Draw5PlayAll: Trade B1 R1 Draw5playall
	Draw5PlayAll: It seems like we looped.

51) Felix: Build B1 Rim

52) Draw5PlayAll: Attack B2 Draw5playall

53) Felix: Sacrifice Y2 Rim
Move B1 Rim Draw5playall
Move B2 Rim Draw5playall
Catastrophe Draw5playall Blue

54) Draw5PlayAll: Sacrifice Y1 Out
D R3 Draw5playall Y2 Y2

55) Felix: Trade G1 R1 Felix

56) Draw5PlayAll: Sacrifice Y2 Out
Move R3 Y2 Felix
Move B3 Out Felix
	Felix: Crud. I meant to build that b1 in your homeworld. Should have been more careful.

57) Felix: Attack B3 Felix

58) Draw5PlayAll: Sacrifice R2 Out
Attack G3 Felix
Attack B3 Felix

	Draw5PlayAll: I noticed how my homeworld looked and wondered... have there been any games where both sides were reduced to only green and red and could not do anything of value?
	Felix: The opportunity didn't present itself until after you moved your R3 out. Had I built the b1 in your homeworld, I needn't have sacked my y2, so I could have used it to move my G3 directly to your home. You could have done nothing to stop me from building another green and finishing off your homeworld.
	Draw5PlayAll: Oh, in that case I simply would not have moved the R3.
	Felix: If you had seen the danger :)
	Draw5PlayAll: Well, I was nervous about moving the R3 anyway, and even feared you could do something to win, but then I realized you could not. Especially considering that G2 in there...
	Draw5PlayAll: I think that was the first time I ever won against you.
	Felix: Yes, well done! You've improved quite a bit. Looking forward to a rematch.


31445)
Variants: "Hard time"
Started: 2017.2.17, Ended: 2017.2.20
Participants: Salmonax (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3



31400)
Started: 2017.2.17, Ended: 2017.3.12
Participants: Draw5PlayAll (S), Ddrowan (N)
Winner: Draw5PlayAll

1) Ddrowan: Homeworld G3 Y1 B3

2) Draw5PlayAll: Homeworld B2 R1 G3

3) Ddrowan: Build B1 Ddrowan
	Ddrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?
	Ddrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?
	Ddrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?
	Ddrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?
	Ddrowan: Woah sorry about that...system malfunction 

4) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: I think you figured it out. Your homeworld name is your username and everything else is the name you give it when you discover it.

5) Ddrowan: Discover B1 Ddrowan G2 Hercules

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Ddrowan: Build B1 Hercules

8) Draw5PlayAll: Build G1 Draw5playall

9) Ddrowan: Trade B1 Y1 Hercules

10) Draw5PlayAll: Trade G1 B1 Draw5playall

11) Ddrowan: Trade B1 R1 Hercules

12) Draw5PlayAll: Build Y2 Draw5playall

13) Ddrowan: Build Y2 Hercules

14) Draw5PlayAll: Trade Y2 B2 Draw5playall

15) Ddrowan: Build R1 Hercules

16) Draw5PlayAll: Build Y2 Draw5playall

17) Ddrowan: Discover R1 Hercules Y3 Cerillion

18) Draw5PlayAll: Trade B2 R2 Draw5playall

19) Ddrowan: Trade B3 G3 Ddrowan

20) Draw5PlayAll: Move R2 Draw5playall Cerillion
	Draw5PlayAll: You just froze yourself out of blue...

21) Ddrowan: Discover Y1 Hercules B1 Redemption
	Ddrowan: Dang, you're right...this is my first game against an actual person so I apologize, I'm stil learning a bit...I'm willing to play it out if you want

22) Draw5PlayAll: Attack R1 Cerillion
	Draw5PlayAll: See, now you trade the Y1 into a B1 and get back in the economy.

If you need, you can sac the B1 and trade something else into blue later.

23) Ddrowan: Trade Y1 B1 Redemption

24) Draw5PlayAll: Sacrifice B1 Draw5playall
Trade R2 B2 Cerillion
	Ddrowan: Thanks, I'm glad that my play did work the way I had thought it would

25) Ddrowan: Build R2 Hercules

26) Draw5PlayAll: Build G1 Draw5playall



31447)
Started: 2017.2.18, Ended: 2017.3.6
Participants: Ddrowan (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3

	Felix: Hello, have fun!


31455)
Started: 2017.2.18, Ended: 2017.3.6
Participants: Felix (S), Ddrowan (N)
Winner: Felix

1) Ddrowan: Homeworld B3 Y1 G3

2) Felix: Homeworld R1 B2 G3

3) Ddrowan: Build G1 Ddrowan

4) Felix: Build G1 Felix



31456)
Started: 2017.2.18, Ended: 2017.3.15
Participants: Ausmuh (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3

2) Ausmuh: Homeworld B2 R1 G3

3) Felix: Build G1 Felix
	Felix: Good luck and have fun :)

4) Ausmuh: Build G1 Ausmuh
	Ausmuh: Thanks you too!

5) Felix: Trade G1 Y1 Felix

6) Ausmuh: Trade G1 Y1 Ausmuh

7) Felix: Build G1 Felix



31467)
Started: 2017.2.18, Ended: 2017.5.9
Participants: fogus (S), SoaringPilot (N)
Winner: fogus

1) SoaringPilot: Homeworld R3 B2 G3

2) fogus: Homeworld B1 G2 Y3

3) SoaringPilot: Build G1 Soaringpilot

4) fogus: Build Y1 Fogus
	SoaringPilot: So given this is a learning game, and we've both established our homeworlds, may I ask why you built it that way?
	SoaringPilot: PM if you prefer, since apparently there's an audience :-o 

5) SoaringPilot: Trade G1 Y1 Soaringpilot
	fogus: I built that way for two reasons: to keep you far away (based on connections) and because I've been playing around with the Y3 opening recently.  It hasn't worked well for me so far I'll admit.  :)
	SoaringPilot: haha fair enough :)

6) fogus: Trade Y1 G1 Fogus

7) SoaringPilot: Build Y1 Soaringpilot

8) fogus: Trade G1 B1 Fogus
	SoaringPilot: I'm not entirely sure what to do in the early game because there's nothing to react to. So, make a bunch of ships, and make them at a safe distance from the homeworld.

9) SoaringPilot: Discover Y1 Soaringpilot G1 Wolf359
	fogus: Opening "theory" is definitely not my strong suit.  I try to look out for problems getting shut out of certain colors mostly and also try to keep a mix of colors in play.  It's a delicate balance I've found.
	SoaringPilot: Oh this was dumb. I didn't need to make a second yellow ship in my home system. I could have made any colour and still been able to move out of the system because of the other yellow ship. Ugh. Oh well.

10) fogus: Build B1 Fogus

11) SoaringPilot: Build G1 Soaringpilot
	fogus: That's is not too bad because you currently have a lead in yellow and I'm hesitant to make another Y1 because that would let you get into the Y2s first.
	SoaringPilot: Oh that's diabolical. I can't build blue ships right now so you're completely safe to build the last small one.

12) fogus: Discover B1 Fogus G3 Plop

13) SoaringPilot: Trade G1 R1 Soaringpilot
	fogus: I could, but I have to get into a safe system to build which gives you a moment to react to my blue rush.
	SoaringPilot: Yeah that was a juicy-looking Bluebird situation if only I had a blue ship :P

14) fogus: Build B2 Plop
	SoaringPilot: Oh that's a cool thing with a green star and a blue ship. Green lets you build more things, blue lets you trade them. I'll have to keep that in mind in future games. I suppose you could also do it with a blue star and a green ship.

15) SoaringPilot: Move R1 Soaringpilot Wolf359
	fogus: I like the potential of my opening system, but I haven't quite figured it out yet.  

16) fogus: Trade B2 R2 Plop
	SoaringPilot: Yeah it seems very flexible. Mine is mainly about defence.

17) SoaringPilot: Build R1 Wolf359

18) fogus: Build B2 Plop
	SoaringPilot: Let's hope gathering the fleet at Wolf 359 works better here than it did in Star Trek.

19) SoaringPilot: Build G1 Soaringpilot
	fogus: I don't think I saw that one.  :(
	SoaringPilot: The episode is Best of Both Worlds (Part 1 and 2) when Capt. Picard gets captured by the Borg.
	SoaringPilot: The number of blue ships you have does not make be feel good at all.

20) fogus: Build B2 Fogus

21) SoaringPilot: Move G1 Soaringpilot Wolf359
	fogus: Right, this is a blue rush.  The only way to avoid a shut out is to trade for a blue.  This'll keep me from getting them all.
	SoaringPilot: Oh that's what you meant earlier. OK.
I thought about trading earlier, when you snagged the last blue and I realized what a pickle I was in. But I'd have to trade my green large. And then I'll have to choose between making myself vulnerable to a catastrophe at home, and not having a Large at home. Ugh.
	SoaringPilot: *the last small blue, I mean
	fogus: It's a tight spot for sure.  Try to think through the moves if you trade for a large blue.  Keep in mind that I can't build one in my home world.

22) fogus: Build B3 Plop
	SoaringPilot: Sorry for dropping off the face of the earth there. I've been travelling for work. This month is super busy.
	fogus: No rush on my end.  Glad you're back.

23) SoaringPilot: Discover G1 Wolf359 B3 Komarr

24) fogus: Discover B1 Fogus B3 Boo

25) SoaringPilot: Build G1 Komarr

26) fogus: Trade B2 G2 Plop

27) SoaringPilot: Build G2 Soaringpilot
	SoaringPilot: Ugggghhh of course I have no medium ships to swap for that blue

28) fogus: Sacrifice B2 Fogus
Trade B3 Y3 Plop
Trade Y3 G3 Fogus

29) SoaringPilot: Trade G2 B2 Soaringpilot
	SoaringPilot: well that's not what i thought would happen

30) fogus: Move R2 Plop Wolf359
	fogus: I didn't want to get shut out of green.  :)

31) SoaringPilot: Move Y1 Wolf359 Komarr
	SoaringPilot: AUGH!

32) fogus: Attack R1 Wolf359
	SoaringPilot: This seems potentially catastrophic.



31469)
Variants: "Hard time"
Started: 2017.2.19, Ended: 2017.6.11
Participants: TwoShort (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) TwoShort: Homeworld R1 B2 G3
	dlwillson: You're back! What happened? Where have you been? When did you come back? How's life?
	dlwillson: You ub... Gonna take your turn?

3) dlwillson: Build G1 Dlwillson
	TwoShort: Short answer is life got complicated and I felt bad that I was timing out a lot.  Which, fair warning, might happen again. But I'll do my best.

4) TwoShort: Build G1 Twoshort
	dlwillson: Life gets that way sometimes. Take another turn and you'll have 4 days in the bank. Whether that makes you more or less likely to time out... I can't guess. SilentTitan and I are thinking of BGG con or Origins this year...

5) dlwillson: Trade G1 R1 Dlwillson

6) TwoShort: Trade G1 Y1 Twoshort

7) dlwillson: B R1 Dlwillson

8) TwoShort: Build Y1 Twoshort

9) dlwillson: B R2 Dlwillson

10) TwoShort: Build Y2 Twoshort

11) dlwillson: T R2 Y2 Dlwillson

12) TwoShort: Discover Y1 Twoshort G3 Grogar

13) dlwillson: Discover Y2 Dlwillson G2 Field

14) TwoShort: Trade Y2 R2 Twoshort

15) dlwillson: Build Y2 Field

16) TwoShort: Build Y2 Grogar

17) dlwillson: Discover Y2 Field Y3 Golden-sun

18) TwoShort: Sacrifice G3 Twoshort
Build Y3 Grogar
Build Y3 Twoshort
Build R2 Twoshort

19) dlwillson: Move Y2 Field Grogar
Catastrophe Grogar Y

20) TwoShort: Trade R2 G2 Twoshort

21) dlwillson: D R1 Dlwillson B2 Sky

22) TwoShort: Discover R2 Twoshort G3 Grogar

23) dlwillson: B R2 Dlwillson

24) TwoShort: Move Y1 Twoshort Grogar

25) dlwillson: D R1 Dlwillson Y2 Sol

26) TwoShort: Build Y1 Twoshort

27) dlwillson: Sacrifice G3 Dlwillson
B R2 Sol
B R3 Sky
B R3 Dlwillson

28) TwoShort: Sacrifice G2 Twoshort
Build Y2 Grogar
Build Y3 Grogar
	dlwillson: I'm going on a cruise, so I may not be able to take turns for the next week.
	TwoShort: Ha Ha! now is my chance to make an uncharacteristically prompt move and get you to time out!  (Kidding...) enjoy the cruise. :) 

29) dlwillson: D R2 Sol G3 Field

30) TwoShort: Trade Y3 G3 Twoshort
	dlwillson: Back from the cruise. It was nice.
	Draw5PlayAll: Red vs yellow again...
	dlwillson: It happens often. I'm surprised that SilentTitan quit that game. I don't think he knew how well he was doing. This game is less simple in that I have access to some yellow, just not a lot.
	Draw5PlayAll: The winner will be blue.
	dlwillson: Think so? I agree.

31) dlwillson: T R3 Y3 Sky
	TwoShort: blue strategic key 
yet tactical details reign 
growth begins all plans
	TwoShort: My past experience is that if I comment on games in progress it looks stupid 2 turns later; but if it's a haiku, maybe I can claim syllable counting clouded expression of my strategic insight :)  

32) TwoShort: Build R3 Grogar

33) dlwillson: M Y3 Sky Grogar
C Grogar Y

34) TwoShort: Build Y1 Twoshort

35) dlwillson: B R3 Field

36) TwoShort: Move Y1 Twoshort Grogar

37) dlwillson: S Y2 Golden-sun
M R1 Sky Grogar
M R1 Sol Grogar
C Grogar R

38) TwoShort: Build Y2 Twoshort

39) dlwillson: T R2 G2 Dlwillson

40) TwoShort: Build Y2 Grogar
	dlwillson: Sorry for the long delay

41) dlwillson: Build R1 Dlwillson

42) TwoShort: Trade Y2 R2 Twoshort

43) dlwillson: Trade R1 B1 Dlwillson

44) TwoShort: Build Y2 Twoshort

45) dlwillson: Sacrifice B1 Dlwillson
Trade R2 B2 Field

46) TwoShort: Discover Y1 Twoshort B3 Bluestar

47) dlwillson: Build R1 Field

48) TwoShort: Sacrifice G3 Twoshort
Build Y2 Bluestar
Build Y3 Bluestar
Build Y3 Twoshort

49) dlwillson: T R3 Y3 Field

50) TwoShort: Trade Y1 B1 Bluestar

51) dlwillson: Build R1 Field

52) TwoShort: Sacrifice Y2 Grogar
Discover B1 Bluestar Y2 Yolonda
Move R2 Twoshort Grogar

53) dlwillson: Discover R1 Field Y1 Sol

54) TwoShort: Build R2 Grogar

55) dlwillson: B R2 Dlwillson

56) TwoShort: Move R2 Grogar Yolonda

57) dlwillson: Trade R3 G3 Dlwillson

58) TwoShort: Build R3 Grogar

59) dlwillson: B R3 Field

60) TwoShort: Discover R2 Grogar B2 Borbor

61) dlwillson: S G2 Dlwillson
B R3 Sol
B G1 Dlwillson
	dlwillson: Been playing this game for three months today. :-)

62) TwoShort: Trade R2 G2 Borbor

63) dlwillson: M Y3 Field Borbor

64) TwoShort: Sacrifice G2 Borbor
Build B1 Yolonda
Build B1 Yolonda

65) dlwillson: M R3 Sol Yolonda
	dlwillson: I hate it when you surprise me! :-)
	TwoShort: My perspective differs :)
	TwoShort: (i.e.  I'm really glad that was a surprise;  I was scared you had a plan for it.   now scared you'll make one...)

66) TwoShort: Sacrifice Y3 Bluestar
Move B1 Yolonda Dlwillson
Move B1 Yolonda Dlwillson
Move B1 Yolonda Dlwillson
Catastrophe Dlwillson Blue

67) dlwillson: Trade R3 Y3 Field



31466)
Started: 2017.2.20, Ended: 2017.4.11
Participants: Felix (S), Takvorian (N)
Winner: Felix

1) Takvorian: Hom B1 R2 G3

2) Felix: Homeworld Y1 B3 G3
	Takvorian: Hi, 
Greetings from Berlin, Germany. Have fun!


3) Takvorian: B G1 Takvorian
	Felix: Greetings from North Carolina, USA. :) You have fun too!

4) Felix: Build G1 Felix

5) Takvorian: T G1 B1 Takvorian

6) Felix: Trade G1 B1 Felix

7) Takvorian: B B2 Takvorian

8) Felix: Build B2 Felix

9) Takvorian: T B1 Y1 Takvorian

10) Felix: Trade B2 R2 Felix

11) Takvorian: B Y1 Takvorian

12) Felix: Build R1 Felix

13) Takvorian: T Y1 R1 Takvorian

14) Felix: Trade R2 Y2 Felix

15) Takvorian: B G1 Takvorian

16) Felix: Build G1 Felix

17) Takvorian: D B2 Takvorian G3 Britz

18) Felix: Discover G1 Felix B2 Out

19) Takvorian: T G1 B1 Takvorian

20) Felix: Discover B1 Felix G2 Opus

21) Takvorian: B G1 Takvorian

22) Felix: Build G1 Felix

23) Takvorian: D G1 Takvorian B3 Rixdorf

24) Felix: Sacrifice G3 Felix
Build G2 Out
Build G2 Felix
Build G3 Felix

25) Takvorian: Tr B2 Y2 Britz

26) Felix: Build B2 Opus

27) Takvorian: S Y2 Britz
M G1 Rixdorf Opus
M G1 Opus Felix
C Felix G

28) Felix: Trade B2 Y2 Opus
	Felix: Oops. I'm not sure how I missed that!



31477)
Variants: "Hard time"
Started: 2017.2.20, Ended: 2017.6.23
Participants: Mandrel (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld Y2 B1 G3

2) Mandrel: Homeworld R1 B3 G3

3) bhorner: Build G1 Bhorner
	Mandrel: Have a good game.
	bhorner: You too!

4) Mandrel: Build G1 Mandrel

5) bhorner: Trade G1 B1 Bhorner

6) Mandrel: Trade G1 B1 Mandrel

7) bhorner: Discover B1 Bhorner G3 Stpat

8) Mandrel: Build B2 Mandrel

9) bhorner: Build B2 Stpat

10) Mandrel: Trade B1 Y1 Mandrel

11) bhorner: Trade B1 Y1 Stpat

12) Mandrel: Discover B2 Mandrel G2 Adjustment

13) bhorner: B G1 Bhorner

14) Mandrel: Build B1 Adjustment

15) bhorner: B G1 Bhorner

16) Mandrel: T B2 Y2 Adjustment

17) bhorner: Trade G1 R1 Bhorner
	bhorner: Just curious, are you trying to win by making me forget about the game?

18) Mandrel: B Y1 Adjustment

19) bhorner: D G1 Bhorner Y3 Big-bird
	Mandrel: Apologies, don't always have time to over as frequently asked I'd like

20) Mandrel: Trade Y2 R2 Adjustment
	bhorner: I understand.  My track record is that I end up not making it back in time and lose on time.  Trying to be better about that.  A 15 move game could potentially take 300 days to complete, that's some endurance!
	Draw5PlayAll: 20 days per move?!?
	bhorner: 10 days per person right?  If you count a move in the game history as both players taking a turn.  That's how chess counts move I think.
	Draw5PlayAll: But still, 10 days per move is unusual. Most SDG time controls are stricter
	bhorner: I think this is a standard ladder challenge, maybe I had an opportunity, but missed where I could change the time controls.
	Draw5PlayAll: Clocks are fixed at 3/3/10
	bhorner: Ah, so we've each just stacked up 10 days of time?
	bhorner: Ok, looked it up, I guess a 15 move game should take less than 90 days.

21) bhorner: B Y2 Stpat

22) Mandrel: Build Y2 Adjustment

23) bhorner: D Y2 Stpat G2 Xmas

24) Mandrel: Build Y3 Mandrel

25) bhorner: B Y3 Xmas

26) Mandrel: Discover Y1 Adjustment B3 Boltzmann

27) bhorner: D Y2 Xmas R1 Spark

28) Mandrel: Build B1 Adjustment

29) bhorner: S G1 Big-bird
B Y3 Stpat
	bhorner: It really seems like you must stop in quite often in order to cut it so close to the deadline each time.

30) Mandrel: Build R2 Adjustment

31) bhorner: D Y1 Stpat G2 Envy

32) Mandrel: Move R2 Adjustment Boltzmann

33) bhorner: S Y3 Xmas
M Y2 Spark Envy
M Y1 Envy Mandrel
M Y2 Envy Mandrel
Catastrophe Mandrel Yellow
	bhorner: 

34) Mandrel: Build Y1 Adjustment

35) bhorner: Build B2 Stpat

36) Mandrel: Build G1 Mandrel

37) bhorner: Discover B2 Stpat Y2 Tweety

38) Mandrel: Build Y1 Adjustment

39) bhorner: Discover B2 Tweety Y3 Big-bird

40) Mandrel: Discover Y1 Adjustment B3 Bubbles

41) bhorner: Build B2 Stpat

42) Mandrel: Trade B1 G1 Adjustment

43) bhorner: Trade B2 R2 Stpat

44) Mandrel: Move G1 Adjustment Boltzmann

45) bhorner: Build Y2 Stpat

46) Mandrel: Build Y3 Boltzmann

47) bhorner: Discover Y3 Stpat B2 Grover
	bhorner: I almost forgot about the game.  :)

48) Mandrel: Discover Y1 Adjustment R3 Hard

49) bhorner: Trade B2 G2 Big-bird

50) Mandrel: S G3 Mandrel
B G1 Boltzmann
B G2 Boltzmann
B G3 Mandrel

51) bhorner: Sacrifice Y3 Grover
Move G3 Bhorner Big-bird
Move G3 Big-bird Adjustment
Move G3 Adjustment Mandrel

52) Mandrel: Sacrifice Y3 Boltzmann
Move G1 Boltzmann Adjustment
Move G1 Adjustment Mandrel
Move Y2 Adjustment Mandrel
Catastrophe Mandrel G

53) bhorner: Build Y3 Stpat

54) Mandrel: Move R2 Boltzmann Bhorner

55) bhorner: M Y3 Stpat Bhorner

56) Mandrel: Sacrifice G2 Boltzmann
Build R1 Bhorner
Build R3 Adjustment

57) bhorner: Build Y3 Stpat

58) Mandrel: Attack R1 Bhorner

59) bhorner: Sacrifice Y2 Stpat
Move Y3 Stpat Adjustment
Move Y3 Adjustment Mandrel

60) Mandrel: T R2 Y2 Bhorner

61) bhorner: Sacrifice R2 Stpat
Attack Y2 Mandrel
Pass

	Mandrel: Good game
	Mandrel: Good game
	bhorner: Good game
	Draw5PlayAll: The feature was offering a draw, or alternatively to declare that if both players eliminate each other it is a draw.
	bhorner: Both players couldn't eliminate each other right?  One of them would be the last to act.


31448)
Started: 2017.2.20, Ended: 2020.9.1
Participants: w00t (S), Takvorian (N)
Winner: Takvorian

1) Takvorian: Ho R2 B1 G3

2) w00t: Homeworld Y3 G1 B3
	Takvorian: Hi,
Greetings from Berlin, Germany. Have fun!

3) Takvorian: B G1 Takvorian
	w00t: Exciting! My first international game (that I'm aware of)  
Good luck!

4) w00t: Build B1 W00t
	Takvorian: Don't expect too much from your first international game ;)
I played around 5 games of Homeworlds before, the last in May 2015...
By the way, where are you located?

5) Takvorian: T G1 B1 Takvorian
	w00t: I've played lots and lots of homeworlds on the tabletop, but only completed a handful of games on SDG... Still very far from calling myself any good at the game, I just love the strategy!

I'm from Colorado... In the Mid-Western US tucked against the Rocky Mountain chain
	Takvorian: Cool!  I've never been there yet, but I like the mountains. I often made vacations in the Bavarian Alps.

I never played Homeworlds in the "physical" life, although I have more than enough pyramids at home. Because I am such a newbie I am probably quite bad at explaining the game ;)


6) w00t: Build B2 W00t

7) Takvorian: B B2 Takvorian

8) w00t: Discover B2 W00t G2 Blep

9) Takvorian: Tr B1 Y1 Takvorian

10) w00t: Build B1 Blep

11) Takvorian: B G1 Takvorian

12) w00t: Trade B1 Y1 Blep
	Takvorian: By the way, if you see me making a big blunder, it would be great if you can tell me about, so that I can learn a thing or two :)

13) Takvorian: D B2 Takvorian G3 Britz

14) w00t: Build B1 Blep

15) Takvorian: B G1 Takvorian

16) w00t: Discover B2 Blep G3 Thbt

17) Takvorian: D G1 Takvorian B3 Wedding

18) w00t: Trade B2 G2 Thbt

19) Takvorian: B G2 Wedding

20) w00t: Build B2 Blep

21) Takvorian: S G3 Takvorian
B G3 Takvorian
B Y1 Takvorian
B Y2 Takvorian

22) w00t: Trade B1 R1 W00t

23) Takvorian: T Y1 R1 Takvorian

	Laurie_Menke: Hi Takvorian... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that's the right thing to do.  :)


31476)
Variants: "Unrated"
Started: 2017.2.20, Ended: 2017.3.19
Participants: Draw5PlayAll (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld Y1 B1 G3 *

2) Draw5PlayAll: Homeworld B3 Y3 G3 *
	bhorner: Here we go.  Planning on repeated sacs of g3, to speed it up, we should help each other keep the. Available in the bank.  Also, probably won't want to do this again, so I made small small to get all the biggest into a single system elsewhere...  Maybe we should do it in one our homes?  You could go big big to make it more crowded.  :)
	Draw5PlayAll: Homeworld systems accept up to 16 ships and peripherals accept 24. We should first pile everything into the homeworlds and then try the peripheral systems.

3) bhorner: Build G1 Bhorner
	bhorner: How did you find out about the limits?  Those aren't part of the game... just this implementation?  Is the code open source or something?

4) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: http://wiki.superdupergames.org/games:homeworlds

5) bhorner: Build G1 Bhorner
	Draw5PlayAll: Also, for extra fun, let us at the end try to make us both lose at once.
	bhorner: Yes, and also at some point try for a catastrophe of all pieces of a single color.  (Or 2 in one turn even...?)

6) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Draw5playall
Build G2 Draw5playall
Build G2 Draw5playall

7) bhorner: Trade G1 Y1 Bhorner

8) Draw5PlayAll: Trade G2 R2 Draw5playall

9) bhorner: Sacrifice G3 Bhorner
Build G1 Bhorner
Build G2 Bhorner
Build G3 Bhorner
	bhorner: Can't win...  No way to get you a g3 on your next turn.

10) Draw5PlayAll: Build G3 Draw5playall

11) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build Y1 Bhorner
Build Y2 Bhorner

12) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R1 Draw5playall
Build R1 Draw5playall
Build G3 Draw5playall

13) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build Y2 Bhorner
Build Y2 Bhorner

14) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Draw5playall
Build R1 Draw5playall

15) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build Y3 Bhorner
Build Y3 Bhorner

16) Draw5PlayAll: Trade R1 B1 Draw5playall

17) bhorner: Trade G1 B1 Bhorner
	bhorner: lol, this is the kind of thing I wanted to see.  :)
	bhorner: You have a Christmas homeworld!

18) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R1 Draw5playall
Build B2 Draw5playall
Build G1 Draw5playall

19) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build B2 Bhorner
Build B2 Bhorner

20) Draw5PlayAll: Move G2 Draw5playall Bhorner

21) bhorner: Sac G3 Bhorner
B G3 Bhorner
B B3 Bhorner
B B3 Bhorner

22) Draw5PlayAll: Catastrophe Draw5playall R
Pass

23) bhorner: Sac Y3 Bhorner
M G3 Bhorner Draw5playall
M Y3 Bhorner Draw5playall
M B3 Bhorner Draw5playall
	bhorner: They're filling the border, that's probably not random.
	bhorner: OK, 16 for the outer ring, and it must be 8 for an inner ring.  We should put all the bugs in yours sincerely you have big big.
	Draw5PlayAll: "The ship could not be moved" when I tried to invade your homeworld.
	Draw5PlayAll: Please move one blue into my homeworld, unless you want to try to do something else.

I believe that homeworld systems reserve the inner 9 squares of the 5x5 grid for the stars. It seems like they could use less space, especially after 1 star dies, but then again the highest amount of ships that could "safely" enter a system is 11 (3 of each color, but one is the star.) 

24) Draw5PlayAll: Pass
Pass
Pass
Pass
Pass
	Draw5PlayAll: I intend to end this game with both homeworld systems destroyed.
	bhorner: That sounds like a good idea, but first, I'd like to fill your homeworld with bigs, and then mediums until it's full, and see what happens when no more will fit.  Then I'd like to do the same with a non-homeworld...  are you on board with that?
	Draw5PlayAll: Sure, let us flood a peripheral system. Call it something nice and simple.
	Draw5PlayAll: I noticed that the positions of the stars keep changing. Sometimes they are diagonal, sometimes orthogonal...

25) bhorner:
Build G3 Draw5playall

26) Draw5PlayAll: Pass
	bhorner: I missed some of your comments before my last move, that's what I get for playing on my phone.  I also noticed the stars orientation changing.  I bet that when a single star is left, the inner ring of 8 can also be filled, like a non-homeworld.

27) bhorner: Trade G3 R3 Draw5playall

28) Draw5PlayAll: Trade G1 R1 Draw5playall

29) bhorner: Build Y3 Draw5playall
	Draw5PlayAll: Tell me f you want me to do anything.

30) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G1 Draw5playall
Build G3 Draw5playall
Build R1 Draw5playall

31) bhorner: Build G3 Draw5playall
	bhorner: If you want to help me fill your homeworld with all the bugs, that would make it go faster, then we can flood a secondary system (I vote small system).  I was just thinking, I don't think both players can die at once, it would be against the rules to call the killing catastrophe on yourself...
	Draw5PlayAll: I saw a white ship for a second... probably a blur of the Y2 and B2.

32) Draw5PlayAll: Build R1 Draw5playall
	Draw5PlayAll: I vote medium.
	bhorner: Hm, an impasse...  Just kidding, I don't really care.  :)

33) bhorner: Sacrifice B2 Bhorner
Trade Y3 R3 Draw5playall
Trade G3 R3 Draw5playall

34) Draw5PlayAll: Discover G1 Draw5playall R2 R2

35) bhorner: Build Y3 Draw5playall
	bhorner: We'll need 2 more spots open for all the bigs soon.

36) Draw5PlayAll: Attack Y3 Draw5playall

37) bhorner: Move B3 Bhorner Draw5playall
	bhorner: If you'd like to take one (or both) of the y3's to have sacrifice power to move faster, feel free to go for it.

38) Draw5PlayAll: Build G3!!! R2

39) bhorner: Sac Y2 Bhorner
Move B3 Draw5playall R2
Move Y1 Bhorner R2
	Draw5PlayAll: Cannot make new ships in the system.

40) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move G1 Draw5playall R2
Move B2 Draw5playall R2
Move R1 Draw5playall R2
	bhorner: Right, one of the smaller pieces needs to move out first.

41) bhorner: Attack G3 R2
	bhorner: I've give you a yellow to capture, and moved a big in to take the green, and move both back, you can choose.  Trying to minimize the number of moves it takes...

42) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G314159265358979 R2
Build B2$ R2
Build R2! R2

43) bhorner: A G3 R2
	Draw5PlayAll: I wonder what w00t thinks of this...

44) Draw5PlayAll: Attack Y1 R2
	bhorner: This game in general?  :)  I don't know, would W00t think it's a waste of time?

45) bhorner: Sac G3 R2
B G3 Draw5playall
B Y2 Bhorner
B Y3 Draw5playall
	bhorner: Dude...

46) Draw5PlayAll: Build R2 R2
	bhorner: If you're not into this anymore, just let me know.

47) bhorner: Sac Y2 Bhorner
M B3 R2 Draw5playall
M G3 R2 Draw5playall
	Draw5PlayAll: Pile everything into the R2 and then I want to collapse the entire economy, leaving absolutely nothing.
	bhorner: Haven't got all the bugs to your homeworld yet, here has been a little counterproductive stuff...

48) Draw5PlayAll: Build Y2 R2

49) bhorner: Sac Y3 Draw5playall
M Y3 Draw5playall R2
M G3 Draw5playall R2
M B3 Draw5playall R2


50) Draw5PlayAll: Build Y3 R2
	bhorner: Woohoo!  Made it!
	Draw5PlayAll: ??

51) bhorner: Sac Y3 R2
M R3 Draw5playall R2
M R3 Draw5playall R2
M R3 Draw5playall R2

52) Draw5PlayAll: Build Y3 R2

53) bhorner: Sac Y2 Bhorner
M B3 Draw5playall R2
M G3 Draw5playall R2

54) Draw5PlayAll: Build Y2... R2
	bhorner: Since we can't kill both players at once, I vote we kill as many pips at once as possible in a single turn.  This would mean filling the r2 system with all the bigs, then all the mediums, then smalls for whatever room is left.  I assume this would leave at least 4 of each color there.  Then in one turn you could call catastrophes on all 4 colors in a single system (I guess for full glory, you'd want to save the color of the system itself for last).
	Draw5PlayAll: I want to try to kill both at once.

55) bhorner: Sac Y2 Bhorner
M B2 Bhorner R2
M G3 Draw5playall R2
	bhorner: Ok, good luck.  Let me know if you need any help.  I'll fill up r2 until you say different.

56) Draw5PlayAll: Move G2 Bhorner R2

57) bhorner: Move G2 Bhorner R2

58) Draw5PlayAll: Move G2 Draw5playall R2
	bhorner: That's lookin' pretty sweet.

59) bhorner: Pass

60) Draw5PlayAll: Sacrifice Y3 R2
Move Y3 R2 Draw5playall
Move B2 R2 Draw5playall
Move B2 R2 Draw5playall

61) bhorner: Move G1 Bhorner R2

62) Draw5PlayAll: Sacrifice Y2 R2
Move R1 Draw5playall R2
Move R1 Draw5playall R2
	bhorner: You could:
s g1 r2
b y2 r2

But I'm not really worried about it.  How do you want to do the catastrophes?  4 y and 4 b in both home systems?

63) bhorner: S G3 R2
B Y2 Bhorner
B Y2 Bhorner
B Y3 Bhorner
	Draw5PlayAll: I want to abandon mine while blowing up yours
	bhorner: Abandon as in move your final ship out?

64) Draw5PlayAll: Pass

65) bhorner: Pass

66) Draw5PlayAll: Pass

67) bhorner: Pass

68) Draw5PlayAll: Catastrophe Bhorner Y
Pass
	Draw5PlayAll: Unfortunately all attempts to get a draw resulted in "illegal modulus zero" perl error...
	Draw5PlayAll: Try passing repeatedly, and see if the system gives a draw.
	bhorner: Now thats funny, the mod error.  :)

69) bhorner: Cat Draw5playall B
Pass

70) Draw5PlayAll: Move G1 R2 Draw5playall
Catastrophe R2 Red

71) bhorner: Trade B1 G1 Bhorner
	Draw5PlayAll: Idk

72) Draw5PlayAll: Build G1 Draw5playall

73) bhorner: B G2 Bhorner
	bhorner: I got what I wanted...  If you just want something else extreme,.. I could resign, for the maximal anti-climax.  :)

74) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move G1 Draw5playall Bhorner
Move G1 Draw5playall Bhorner
Pass

	Draw5PlayAll: It let me lose as long as I did not eliminate you.
	bhorner: Oh, nice.  That's actually against the rules but I imagine it doesn't come up in standard play much.  :). That was interesting, thanks!
	Draw5PlayAll: It is within the rules to annihilate both players (creating a tie) but not to self-destruct. On SDG it is the opposite!
	bhorner: "You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of 
your turn."
	bhorner: That's from the 2nd to last paragraph of this:
http://superdupergames.org/rules/homeworlds.pdf
	Draw5PlayAll: ...but Andy said you can cause a tie, in some BoardGameGeek page. The Homeworlds rules are sort of messed up, with at least 4 different sources (Playing with Pyramids, your link, Pyramid Arcade, and SDG's rules from ginohn.com)
	Draw5PlayAll: Wait, your link was SDG's / John Cooper's. I meant www.looneylabs.com/rules/homeworlds
	bhorner: Oh no, pyramid arcade is yet different?  I just got that, and have all the print (and electronic) versions I'm aware of.
	Draw5PlayAll: Well, I know Arcade has more content... not sure if there is any functional difference.


31478)
Variants: "Hard time"
Started: 2017.2.21, Ended: 2017.3.9
Participants: ajo (S), SilentTitan (N)
Winner: ajo

1) SilentTitan: Homeworld R1 B2 G3

2) ajo: Homeworld B3 Y2 G3

3) SilentTitan: Build G1 Silenttitan

4) ajo: Build G1 Ajo

5) SilentTitan: Trade G1 Y1 Silenttitan

6) ajo: Trade G1 R1 Ajo

7) SilentTitan: Build Y1 Silenttitan

8) ajo: Build R1 Ajo

9) SilentTitan: Discover Y1 Silenttitan B3 Sol

10) ajo: Build R2 Ajo

11) SilentTitan: Sacrifice G3 Silenttitan
Build Y1 Sol
Build Y2 Sol
Build Y2 Silenttitan

12) ajo: Discover R2 Ajo B1 Alpha

13) SilentTitan: Discover Y2 Sol G1 Soul

14) ajo: Build R2 Ajo

15) SilentTitan: Build Y3 Soul

16) ajo: Discover R1 Ajo B1 Beta

17) SilentTitan: Discover Y3 Soul G3 Sole

18) ajo: Sacrifice G3 Ajo
Build R2 Beta
Build R3 Alpha
Build R3 Ajo

	ajo: So which team is going to win? Red or yellow?
	Draw5PlayAll: Blue.
	SilentTitan: Red I made too many mistakes.  Good game
	ajo: For the record, I didn't expect that. I think I was barely winning.
	Draw5PlayAll: By the way I said "blue" because I expected both sides to do lots of trading for other colors...


31479)
Started: 2017.2.21, Ended: 2019.10.22
Participants: MobyNostromo (S), w00t (N)
Winner: MobyNostromo

1) w00t: Homeworld G3 B2 R3

2) MobyNostromo: H Y3 G2 B3
	w00t: Greetings!  Good luck :)
	MobyNostromo: Hello!! I'm going to need the good luck: I'm new at this. Regardless, I hope you have fun.

3) w00t: Build R1 W00t
	w00t: I'd call myself seasoned... I've played a lot of tabletop homeworlds, and I've been having a blast returning here... 

If you've got any questions at all, I'm happy to help a new player learn and develop 

4) MobyNostromo: B B1 Mobynostromo
	MobyNostromo: Thank you. I may take you up on it.

5) w00t: Trade R1 B1 W00t

6) MobyNostromo: T B1 Y1 Mobynostromo

7) w00t: Build B1 W00t

8) MobyNostromo: B B1 Mobynostromo

9) w00t: Trade B1 Y1 W00t

10) MobyNostromo: B Y1 Mobynostromo

11) w00t: Build Y2 W00t

12) MobyNostromo: T Y1 G1 Mobynostromo

	Laurie_Menke: Hi MobyNostromo... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that's the right thing to do.  :)
	MobyNostromo: Thank you for asking. Sure, go ahead and cancel this one.
	Laurie_Menke: Hi MobyNostromo, Aaron already did his sweep, but didn't take this one out because he wasn't sure if you wanted it.  He may still do it now, but I'm not sure.
	Draw5PlayAll: I guess what you could do is click the "Terminate Game (unrated)" option.


31465)
Variants: "Unrated, Hard time"
Started: 2017.2.22, Ended: 2017.2.27
Participants: Ausmuh (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 Y1 G3

2) Ausmuh: Homeworld G3 Y2 B3
	Babamots: It is I, the sabotaging Welshman :-).

3) Babamots: Build G1 Babamots

4) Ausmuh: Build B1 Ausmuh

5) Babamots: Discover G1 Babamots B2 Ferenginar

	Babamots: Sorry. I guess you don't have time at the moment. Maybe later. See ya!


31516)
Variants: "Unrated"
Started: 2017.2.23, Ended: 2017.7.25
Participants: w00t (S), shoejitsu (N)
Winner: shoejitsu

1) shoejitsu: Homeworld B3 G1 Y3
	w00t: Greetings!  Happy to help a new player learn if you have any questions

2) w00t: Homeworld B3 R2 G3
	shoejitsu: hey! thanks so much, this is actually my first game ever so its gonna be a lil rocky :P

3) shoejitsu: Build Y1 Shoejitsu
	shoejitsu: How do I build in my homeworld? Im not sure what to refer to my homeworld as when building...

4) w00t: Build G1 W00t
	shoejitsu: nevermind!
	w00t: like that :)

5) shoejitsu: Discover Y1 Shoejitsu G2 Casio

6) w00t: Trade G1 Y1 W00t

7) shoejitsu: Build Y1 Shoejitsu
	shoejitsu: hmm. so i guess I can't really build an attack fleet until i discover a system with a red star? guess I kinda jumped the gun on the casio system

8) w00t: Build Y2 W00t
	shoejitsu: how am i doin :P
	w00t: still opening moves... so far so good :)

9) shoejitsu: Trade Y1 G1 Shoejitsu

10) w00t: Discover Y1 W00t R1 Rawr

11) shoejitsu: Trade G1 R1 Shoejitsu

	shoejitsu: you still there??
	Laurie_Menke: Hi shoejitsu... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment.  I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours.  I hope that's the right thing to do.  :)


31523)
Variants: "Hard time"
Started: 2017.2.24, Ended: 2017.5.6
Participants: Babamots (S), mneme (N)
Winner: Babamots

1) mneme: Homeworld R1 B2 G3

2) Babamots: Homeworld R1 B3 G3

3) mneme: Build G1 Mneme

4) Babamots: Build G1 Babamots

5) mneme: Trade G1 R1 Mneme
	mneme: Argh.  I am getting no notifications at all.  So if I lose because of that...well, I do.  :(

6) Babamots: Trade G1 Y1 Babamots
	Babamots: For what it's worth, I seldom go a whole day without making a move. If you move at the same time every day, I'll usually have played before you get back.

7) mneme: Build R2 Mneme
	mneme: Fair enough.  But I'd -really- like to just get the email; I got the notification of the challenge, so I have -no- idea why the per-move emails aren't happening. :(

8) Babamots: Build Y1 Babamots
	Babamots: Maybe it's because I had my loyalists on your planet sabotage your interstellar transmitter. Bwahaha!

9) mneme: Trade R2 Y2 Mneme

10) Babamots: Discover Y1 Babamots G2 Betazed

11) mneme: Build R2 Mneme

12) Babamots: Build Y1 Betazed

13) mneme: Build Y2 Mneme
	Babamots: I've never really worried about how the homeworld stars affect the stash and how that should affect which color I pursue. I've learned something this game.

14) Babamots: Sacrifice G3 Babamots
Build Y2 Betazed
Build Y3 Babamots
Build Y3 Babamots

15) mneme: Discover Y2 Mneme B3 Euterpe

16) Babamots: Sacrifice Y1 Betazed
Discover Y3 Babamots B2 Galorndon

17) mneme: Move R2 Mneme Euterpe
	Babamots: Sorry to be slow. The site was down last night from the moment I got my notification until I went to bed.
	mneme: LOL.  I hadn't noticed. :)


18) Babamots: Trade Y3 G3 Babamots
	Draw5PlayAll: Galorndon??
	Babamots: Welcome to Galorndon Core: where no good deed goes unpunished.

19) mneme: Move R2 Euterpe Betazed
	Draw5PlayAll: Trek reference? If so, which series (TOS, TNG, DS9, VOY, ...)? Please no spoilers.
	Babamots: Galorndon Core is from TNG season 3: "The Enemy." Are you watching Star Trek? And if so, which series?

20) Babamots: Discover Y2 Betazed B1 Iconia

21) mneme: Attack Y1 Betazed

22) Babamots: Trade Y2 R2 Iconia

23) mneme: Build R2 Betazed

24) Babamots: Build G1 Babamots

25) mneme: Trade R1 B1 Mneme

26) Babamots: Move G1 Babamots Galorndon
	Draw5PlayAll: Iconia?
	Babamots: In Star Trek, the Iconians were an ancient race that built passages between planets, like on Stargate.

27) mneme: Build G1 Mneme

28) Babamots: Build G1 Babamots
	mneme: b g1 mneme 
	Babamots: I suspect you meant to type into the Move Box. It would be a shame for you to time out since I think you'll beat me.

29) mneme: Discover R2 Betazed Y1 Jumper

30) Babamots: Build G2 Galorndon
	mneme: true.  I got it eventually; was wondering why it was not updating.  :)
	mneme: You did get the first extra large.  That's a bit deal, but I do have some other advantages.

31) mneme: Sacrifice G3 Mneme
Build Y2 Euterpe
Build Y3 Betazed
Build Y3 Mneme

32) Babamots: Trade G1 R1 Galorndon

33) mneme: Build R3 Betazed

34) Babamots: Sacrifice G2 Galorndon
Build R3 Galorndon
Build R3 Iconia
	Babamots: I think I lost when I didn't have red to keep you from taking Betazed.
	mneme: Red and yellow are super-important, it's true.  This is very much a game where you only have to be one move ahead to crush someone, if you can leverage it properly and not make too many mistakes.
	mneme: But I think you could have come back from that if you found a way to leverage your extra large before I caught up; it's why I needed to keep up the pressure.


35) mneme: Sacrifice B1 Mneme
Trade R2 B2 Betazed
	mneme: still, I can't stop you from getting a large red, so...we'll see.

36) Babamots: Move R3 Galorndon Euterpe

37) mneme: Sacrifice Y2 Euterpe
Discover Y2 Euterpe G2 Caliope
Discover Y3 Betazed G3 Polyhymnia

38) Babamots: Move G1 Babamots Galorndon

39) mneme: Build R2 Betazed

40) Babamots: Build Y2 Galorndon

41) mneme: Build B1 Betazed

42) Babamots: Sacrifice Y2 Galorndon
Discover R1 Galorndon B3 Vidiia
Discover G1 Galorndon B1 Ktaris

43) mneme: Discover R2 Jumper Y2 Erato

44) Babamots: Build G1 Babamots

45) mneme: Sacrifice Y2 Mneme
Move R2 Betazed Iconia
Move R2 Erato Iconia
Catastrophe Iconia R
	Babamots: Sorry for the undo. I mistyped and then took a while to decide whether to bother to redo it.
	mneme: no worries, I undo all the time.

46) Babamots: Sacrifice G3 Babamots
Build G2 Ktaris
Build G3 Babamots
Build R2 Euterpe

47) mneme: Build G3 Mneme

48) Babamots: Trade R2 Y2 Euterpe

49) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build B1 Betazed
Build R2 Betazed

50) Babamots: Sacrifice Y3 Galorndon
Move G1 Ktaris Betazed
Move G2 Ktaris Betazed
Move G1 Babamots Betazed
Catastrophe Betazed G

51) mneme: Build Y1 Polyhymnia

52) Babamots: Trade Y2 G2 Euterpe

53) mneme: Trade G1 B1 Mneme
	Babamots: Well, that simplified a lot.
	mneme: Yeah, I was wondering if you'd do that.


54) Babamots: Build R2 Euterpe
	Babamots: I was unhappy that destroying that fleet gave you a g3, but I eventually decided that it was worth it.
	Babamots: I'm working on a couple of deadlines right now, but I'll move again when I've got time to study this properly.
	mneme: No worries.

55) mneme: Sacrifice B1 Mneme
Trade Y3 R3 Polyhymnia

56) Babamots: Trade R2 Y2 Euterpe

57) mneme: Build R2 Polyhymnia

58) Babamots: Build R2 Euterpe

59) mneme: Build G1 Mneme

60) Babamots: Discover R2 Euterpe B1 Mab-bu

61) mneme: Discover G1 Mneme Y3 Erato

62) Babamots: Build R2 Euterpe

63) mneme: Build G1 Mneme

64) Babamots: Build G1 Babamots

65) mneme: Trade G1 B1 Mneme

66) Babamots: Trade R3 Y3 Euterpe

67) mneme: Sacrifice B1 Mneme
Trade R2 B2 Polyhymnia

68) Babamots: Sacrifice G2 Euterpe
Build R2 Mab-bu
Build R3 Vidiia

69) mneme: Build R3 Polyhymnia

70) Babamots: Sacrifice Y2 Euterpe
Move R2 Mab-bu Polyhymnia
Move R2 Mab-bu Polyhymnia
Catastrophe Polyhymnia R

71) mneme: Build G1 Mneme

72) Babamots: Trade R2 G2 Euterpe

73) mneme: Sacrifice G3 Mneme
Build G2 Mneme
Build G3 Erato
Build B1 Polyhymnia
	Babamots: Well, I'm feeling a lot more secure than I was a month and a half ago. Are you still not getting notifications?
	Draw5PlayAll: What are Vidiia, K t a r i s, and any others I missed?
	Babamots: Ktaris (from Voyager) is the homeworld of a couple of minor Star Trek characters (Etana Jol and the father of  Naomi Wildman). Vidiia (from Voyager) is the homeworld of the Vidiians, who are basically space zombies. They're all infected with a plague that makes their organs shut down, so they harvest organs from other races. Mab-Bu IV is a gas giant with a (barely) habitable moon. The Next Generation crew found disembodied souls there that were not friendly.
	Babamots: Oh, and Betazed is where telepathic Betazoids are from (including Deanna Troi's family).
	mneme: Well, I found where in the spamtrap they're ending up, but no, I think they're still getting blocked there.


74) Babamots: Sacrifice G3 Babamots
Build Y1 Babamots
Build Y2 Euterpe
Build G3 Babamots
	mneme: And I should hope so; you've been very sucessful at denial and cornering, and I've been a little too cautious overall.

75) mneme: Trade B2 R2 Polyhymnia

76) Babamots: Sacrifice Y1 Babamots
Move R3 Vidiia Caliope

77) mneme: Move Y2 Caliope Vidiia

78) Babamots: Sacrifice G3 Babamots
Build R2 Caliope
Build Y1 Babamots
Build G3 Babamots

79) mneme: Sacrifice R2 Polyhymnia
Attack R1 Vidiia
Pass

80) Babamots: Sacrifice Y1 Babamots
Move R3 Caliope Polyhymnia

81) mneme: Sacrifice Y1 Polyhymnia
Discover B1 Polyhymnia Y2 Melpomne

82) Babamots: Sacrifice Y2 Euterpe
Move Y3 Euterpe Mneme
Move R3 Polyhymnia Mneme

83) mneme: Sacrifice G3 Erato
Build G3 Erato
Build R2 Vidiia
Build Y1 Mneme

84) Babamots: Sacrifice R2 Caliope
Attack Y3N Mneme
Attack G2N Mneme

	mneme: Good game!
	mneme: Hmph.  It wouldn't let me resign by catastrophe.  For the best for new players, I suppose.
	Babamots: By double catastrophe, no less. Good game!


31473)
Variants: "Hard time"
Started: 2017.2.25, Ended: 2017.2.27
Participants: Draw5PlayAll (S), Ausmuh (N)
Winner: Draw5PlayAll

1) Ausmuh: Homeworld G3 Y1 B3

2) Draw5PlayAll: Homeworld B3 R1 G3

	Draw5PlayAll: Uhhhh...?


31531)
Variants: "Hard time"
Started: 2017.2.26, Ended: 2017.3.31
Participants: Takvorian (S), Aghmarck (N)
Winner: Aghmarck

1) Aghmarck: Homeworld Y1 B3 G3

2) Takvorian: H B1 Y2 G3
	Aghmarck: GL, HF!

3) Aghmarck: B G1 Aghmarck
	Takvorian: Have fun!
Sorry for challenging you repeatedly, but it's quite hard to get a game when you enter the ladder at the bottom ;)
	Aghmarck: Oh no need for apologies! It's overdue to pick this game again. Thanks for nagging me back!
	Aghmarck: Oh no need for apologies! It's overdue to pick this game again. Thanks for nagging me back!

4) Takvorian: B G1 Takvorian

5) Aghmarck: Trade G1 B1 Aghmarck
	Takvorian: By the way, I am from Berlin, Germany. Where are you from?
	Aghmarck: Heredia, Costa Rica

6) Takvorian: T G1 B1 Takvorian

7) Aghmarck: Build B2 Aghmarck

8) Takvorian: B B2 Takvorian

9) Aghmarck: T B1 Y1 Aghmarck

10) Takvorian: T B2 Y2 Takvorian

11) Aghmarck: B G1 Aghmarck

12) Takvorian: B G1 Takvorian

13) Aghmarck: D G1 Aghmarck B2 B2

14) Takvorian: D B1 Takvorian G3 Britz

15) Aghmarck: B G1 Aghmarck

16) Takvorian: B G2 Takvorian

17) Aghmarck: S G3 Aghmarck
B G2 Aghmarck
B G2 B2
B G3 Aghmarck

18) Takvorian: T G1 R1 Takvorian

19) Aghmarck: T G1 R1 Aghmarck

20) Takvorian: M Y2 Takvorian Britz

21) Aghmarck: T G2 Y2 B2

22) Takvorian: T G2 B2 Takvorian

23) Aghmarck: Build G1 B2

24) Takvorian: B B1 Britz

25) Aghmarck: Discover B2 Aghmarck G2 G2

26) Takvorian: T B1 R1 Britz

27) Aghmarck: Build R2 Aghmarck



31503)
Started: 2017.2.27, Ended: 2017.4.6
Participants: MobyNostromo (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) MobyNostromo:
H G3 Y2 B3
	Draw5PlayAll: I am just doing this as a test to see if it will forfeit me for having no homeworld

3) Draw5PlayAll: Homeworld B3 R1 G3
	MobyNostromo: I think it worked.

4) MobyNostromo: B B1 Mobynostromo

5) Draw5PlayAll: Build G1 Draw5playall

6) MobyNostromo: B B1 Mobynostromo

7) Draw5PlayAll: Trade G1 B1 Draw5playall

8) MobyNostromo: T B1 Y1 Mobynostromo

9) Draw5PlayAll: Build G1 Draw5playall

10) MobyNostromo: T B1 G1 Mobynostromo

11) Draw5PlayAll: Trade G1 Y1 Draw5playall

12) MobyNostromo: B Y1 Mobynostromo

13) Draw5PlayAll: Build Y2 Draw5playall

14) MobyNostromo: D Y1 Mobynostromo B1 Blue

15) Draw5PlayAll: Discover B1 Draw5playall G2 G2

16) MobyNostromo: B Y2 Mobynostromo

17) Draw5PlayAll: Move Y1 Draw5playall G2

18) MobyNostromo: M G1 Mobynostromo Blue

19) Draw5PlayAll: Build Y3 G2

20) MobyNostromo: B Y3 Blue

21) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 G2 Blue
Move Y1 Blue Mobynostromo
Catastrophe Mobynostromo Y

22) MobyNostromo: T Y3 R3 Blue

23) Draw5PlayAll: Build G1 Draw5playall

24) MobyNostromo: M R3 Blue G2

25) Draw5PlayAll: Move Y3 G2 Blue

26) MobyNostromo: A B1 G2

27) Draw5PlayAll: Trade G1 R1 Draw5playall

28) MobyNostromo: S Y1 Blue
M R3 G2 Blue

29) Draw5PlayAll: Sacrifice R1 Draw5playall
Attack R3 Blue

30) MobyNostromo: T B3 G3 Mobynostromo

31) Draw5PlayAll: Attack G1 Blue

32) MobyNostromo: B B1 G2

33) Draw5PlayAll: Build G1 Draw5playall

34) MobyNostromo: T B1 Y1 G2

35) Draw5PlayAll: Sacrifice Y3 Blue
Move G1 Blue Mobynostromo
Move G1 Draw5playall G2
Move G1 G2 Mobynostromo
Catastrophe Mobynostromo Green



31546)
Started: 2017.3.2, Ended: 2017.5.7
Participants: MobyNostromo (S), panglott (N)
Winner: panglott

1) panglott: Homeworld G2 R1 B3

2) MobyNostromo: H G3 Y2 B3

3) panglott: Build B1 Panglott
	MobyNostromo: Have fun!

4) MobyNostromo: B B1 Mobynostromo

5) panglott: Trade B1 Y1 Panglott

6) MobyNostromo: B B1 Mobynostromo

7) panglott: Build Y1 Panglott

8) MobyNostromo: T B1 Y1 Mobynostromo

9) panglott: Build Y2 Panglott

10) MobyNostromo: T B1 G1 Mobynostromo

11) panglott: Discover Y2 Panglott B3 Arcturus

12) MobyNostromo: B Y2 Mobynostromo

13) panglott: Build Y3 Panglott

14) MobyNostromo: T Y2 R2 Mobynostromo

15) panglott: Sacrifice Y2 Arcturus
Discover Y1 Panglott B3 Arcturus
Move Y1 Panglott Arcturus

16) MobyNostromo: D Y1 Mobynostromo G1 Green

17) panglott: Build Y2 Panglott

18) MobyNostromo: M R2 Mobynostromo Green

19) panglott: Trade Y1 R1 Arcturus

20) MobyNostromo: B R1 Green

21) panglott: Move Y3 Panglott Arcturus

22) MobyNostromo: B B1 Mobynostromo

23) panglott: Trade Y1 G1 Arcturus

24) MobyNostromo: M R2 Green Arcturus

25) panglott: Attack R2 Arcturus

26) MobyNostromo: B R2 Green

27) panglott: Build G2 Arcturus

28) MobyNostromo: B G2 Mobynostromo

29) panglott: Sacrifice Y2 Panglott
Move G1 Arcturus Green
Move G1 Green Mobynostromo
Catastrophe Mobynostromo G

30) MobyNostromo: T B3 R3 Mobynostromo

31) panglott: Build B1 Panglott

32) MobyNostromo: T B1 G1 Mobynostromo

33) panglott: Trade B1 G1 Panglott

34) MobyNostromo: D G1 Mobynostromo B3 Blue

35) panglott: Build R2 Arcturus

36) MobyNostromo: M R1 Green Arcturus
C Arcturus Red

37) panglott: Trade G1 R1 Panglott

38) MobyNostromo: B G1 Blue

39) panglott: Build Y1 Arcturus

40) MobyNostromo: T G1 Y1 Blue

41) panglott: Move Y3 Arcturus Panglott

42) MobyNostromo: B Y2 Blue

43) panglott: Build Y2 Arcturus

44) MobyNostromo: B Y3 Green

45) panglott: Sacrifice Y2 Arcturus
Move Y3 Panglott Blue
Move R1 Panglott Blue

46) MobyNostromo: D Y2 Blue G2 G2

47) panglott: Move Y3 Blue Panglott

48) MobyNostromo: B Y2 Blue

49) panglott: Attack Y1 Blue

50) MobyNostromo: B Y3 G2

51) panglott: Attack G1 Blue

52) MobyNostromo: M R2 Green Blue

53) panglott: Move R1 Blue Panglott

54) MobyNostromo: A G1 Blue

55) panglott: Build G1 Arcturus

56) MobyNostromo: B G3 Blue

57) panglott: Build G3 Arcturus

58) MobyNostromo: M G1 Blue Mobynostromo

59) panglott: Trade G1 R1 Arcturus

60) MobyNostromo: B R2 Mobynostromo

61) panglott: Sacrifice G3 Arcturus
Build G1 Arcturus
Build R2 Arcturus
Build G3 Arcturus

62) MobyNostromo: M G1 Mobynostromo Arcturus
C Arcturus G

63) panglott: Sacrifice Y3 Panglott
Move R1 Arcturus Mobynostromo
Move R2 Arcturus Mobynostromo
Pass
Catastrophe Mobynostromo Red



31557)
Variants: "Hard time"
Started: 2017.3.3, Ended: 2017.3.21
Participants: Aristos (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass
	Draw5PlayAll: ?

2) Aristos: Homeworld B3 R2 G3

3) Draw5PlayAll: Homeworld B1 R3 G3
	Aristos: Hello. Your move.
	Aristos: Why did you pass? 

4) Aristos: Build G1 Aristos

5) Draw5PlayAll: Build G1! Draw5playall

6) Aristos: Trade G3 Y3 Aristos
	Draw5PlayAll: That could be weird.

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) Aristos: Build Y1 Aristos

9) Draw5PlayAll: Build G1* Draw5playall

10) Aristos: Discover Y1 Aristos G1 Mold
	Aristos: What is a "G1*" ship? Why does your ship have an asterisk next to it? I've never seen that in the notation. 

11) Draw5PlayAll: Build G2097152 Draw5playall
	Draw5PlayAll: We shall see. I built a "G1!" ship, and it seems to function as a normal G1...

12) Aristos: Build G2 Aristos
	Draw5PlayAll: Hmmm... I should try sacrificing that thing and seeing if I can grow the whole bank...

13) Draw5PlayAll: Trade G2 B2 Draw5playall

14) Aristos: Discover G1 Aristos B1 Plum

15) Draw5PlayAll: Discover B2 Draw5playall G2 G2
	Aristos: Weird that the system doesn't filter the extra letters. Guess they never thought someone would try that. :-) 

16) Aristos: Build Y1 Aristos

17) Draw5PlayAll: Build Y2 Draw5playall

18) Aristos: Build Y2 Mold

19) Draw5PlayAll: Trade Y2 R2 Draw5playall

20) Aristos: Trade Y1 R1 Aristos

21) Draw5PlayAll: Trade G1 B1 Draw5playall

22) Aristos: Build G1 Aristos

23) Draw5PlayAll: Sacrifice G3 Draw5playall
Build B2 G2
Build B2 G2
Build B3 Draw5playall

24) Aristos: Build G2 Plum

25) Draw5PlayAll: Trade B3 G3 Draw5playall

	Draw5PlayAll: ??


31596)
Variants: "Hard time"
Started: 2017.3.3, Ended: 2017.3.14
Participants: fogus (S), panglott (N)
Winner: fogus

1) panglott: Homeworld B3 G2 Y3

2) fogus: Homeworld Y2 B1 G3

3) panglott: Build Y1 Panglott

4) fogus: Build G1 Fogus

5) panglott: Build Y1 Panglott

6) fogus: Build G1 Fogus

7) panglott: Discover Y1 Panglott B1 Deneb

8) fogus: Discover G1 Fogus B3 Boo

9) panglott: Move Y1 Panglott Deneb

10) fogus: Build G1 Fogus

11) panglott: Build Y1 Panglott

12) fogus: Sacrifice G3 Fogus
Build G2 Boo
Build G2 Boo
Build G3 Fogus

13) panglott: Build Y2 Panglott

14) fogus: Trade G2 Y2 Boo

15) panglott: Move Y2 Panglott Deneb

16) fogus: Trade G3 Y3 Fogus

17) panglott: Build Y3 Panglott

18) fogus: Sacrifice Y3 Fogus
Discover Y2 Boo R1 Boingboing
Move Y2 Boingboing Panglott
Pass
Catastrophe Panglott Y
	fogus: Happy to play again if you'd like.  Send a challenge my way if you're interested.



31583)
Started: 2017.3.4, Ended: 2017.3.15
Participants: wil (S), MobyNostromo (N)
Winner: wil

1) MobyNostromo: H G3 Y2 B3
	wil: This is a great game...takes a while to learn....ask any question Long the way.
	MobyNostromo: Thank you. I'll do my best to make this game interesting for you.

2) wil: H B2 Y1 G3
	wil: Is it your first game?  Do you want me to point out anything?

3) MobyNostromo: B B1 Mobynostromo
	MobyNostromo: Not really my first game because I'm in the process of playing three other ones, but I have yet to finish any. I think I'm getting the general hang of it, so go ahead and destroy me - it might be the best way I learn.

4) wil: B G1 Wil
	wil: It is...watching different attacks come at you is perfect...  I shy away from using G3 as a star...keeps you from getting a factory there.

5) MobyNostromo: T B1 Y1 Mobynostromo
	MobyNostromo: What's a factory?

6) wil: T G1 Y1 Wil
	wil: When you sacrifice a piece you get to use the power of the piece anywhere in the galaxy....when the green bank is empty, and I have a g3 and g1 I can sack my g3 for 3 grows, grow the g3 Right back and still have two more grows for any color anywhere in the galaxy that I have those.colors whether I have a green in that star system or not.

7) MobyNostromo: B Y2 Mobynostromo
	MobyNostromo: Now I understand. I like the idea behind that, like loopholes (or wormholes) in the rules that nurture different strategies. It's definitely something to keep in mind during my next setup.

8) wil: B Y2 Wil
	wil: You have pyramid arcade?

9) MobyNostromo: T Y2 G2 Mobynostromo
	MobyNostromo: Yes. Do you?

10) wil: D Y1 Wil B3 B3
	wil: Yes, read the pages on strategies...they are incredibly valuable.

11) MobyNostromo: B Y2 Mobynostromo

12) wil: Sacrifice Y2 Wil
Discover Y1 B3 R1 R1
Move Y1 R1 Mobynostromo
Catastrophe Mobynostromo Y
	MobyNostromo: Will do.

13) MobyNostromo: T G2 Y2 Mobynostromo

14) wil: B G1 Wil
	wil: I wasn't going to do it, I was, I wasn't and then I said I should... I learned all I know by making all the mistakes.
	MobyNostromo: WOW! I think I gave some studying to do.

15) MobyNostromo: B B1 Mobynostromo

16) wil: T G3 R3 Wil
	Draw5PlayAll: !

17) MobyNostromo: B Y1 Mobynostromo

18) wil: M R3 Wil Mobynostromo

19) MobyNostromo: D B3 Mobynostromo G1 Green

20) wil: A Y2 Mobynostromo

21) MobyNostromo: T B3 R3 Green

22) wil: S R3 Mobynostromo
A Y1 Mobynostromo
A B1 Mobynostromo
P

	wil: Challenge any time
	MobyNostromo: Thanks, I will after I study this a bit more.
	wil: meh...playing and losing is the study (was for me anyway..) I lost by the dozens, seeing the various attacks coming at me, then trying against others, then learning the counters...



31610)
Variants: "Hard time"
Started: 2017.3.4, Ended: 2017.3.7
Participants: w00t (S), wil (N)
Winner: wil

1) wil: H B3 R1 G3

	wil: Good luck... 
	Draw5PlayAll: You are back!!
	wil: Phooey


31654)
Variants: "Hard time"
Started: 2017.3.9, Ended: 2017.3.12
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H B2 R1 G3 Wil
	wil: Back for a visit!

	ts52: D'oh! Sorry about that. I should've declined the challenge before heading to PAX this weekend. Please challenge me again.


31657)
Variants: "Hard time"
Started: 2017.3.11, Ended: 2017.5.7
Participants: Subhan64 (S), Grosseteste (N)
Winner: Subhan64

1) Grosseteste: H B2 R1 G3

2) Subhan64: Homeworld G3 B2 Y3

3) Grosseteste: B G1 Grosseteste

4) Subhan64: Build Y1 Subhan64

5) Grosseteste: T G1 Y1 Grosseteste

6) Subhan64: Trade Y1 G1 Subhan64

7) Grosseteste: B G1 Grosseteste

8) Subhan64: Build Y1 Subhan64

9) Grosseteste: Trade G1 B1 Grosseteste

10) Subhan64: Build G1 Subhan64

11) Grosseteste: Build B1 Grosseteste

12) Subhan64: Trade G1 B1 Subhan64

13) Grosseteste: D B1 Grosseteste G3 Patty

14) Subhan64: Discover B1 Subhan64 G1 Kermit

15) Grosseteste: Build Y1 Grosseteste

16) Subhan64: Build Y2 Subhan64

17) Grosseteste: Move Y1 Grosseteste Patty

18) Subhan64: Trade B1 G1 Kermit

	Grosseteste: Sorry I wasn't more attentive, good luck further up the ladder!


31618)
Started: 2017.3.13, Ended: 2017.5.10
Participants: ts52 (S), Personman (N)
Winner: ts52

1) Personman: Homeworld R1 B3 G3

2) ts52: Homeworld Y3 B2 G3
	ts52: :) Have a good game!

3) Personman: Build G1 Personman

4) ts52: Build G1 Ts52
	Personman: you too!

5) Personman: Trade G1 Y1 Personman

6) ts52: Trade G1 Y1 Ts52

7) Personman: Build G1 Personman

8) ts52: Build G1 Ts52

9) Personman: Trade G1 B1 Personman

10) ts52: Trade G1 B1 Ts52

11) Personman: Build G1 Personman

12) ts52: Discover B1 Ts52 G1 Robin

13) Personman: Discover B1 Personman G2 Kestrel

14) ts52: Move Y1 Ts52 Robin

15) Personman: Discover G1 Personman B2 Lark

16) ts52: Build B1 Robin

17) Personman: Trade B1 R1 Kestrel

18) ts52: Trade B1 R1 Robin

19) Personman: Build R2 Kestrel

20) ts52: Build R2 Robin

21) Personman: Move Y1 Personman Kestrel

22) ts52: Trade R2 B2 Robin

23) Personman: Build G1 Personman

24) ts52: Build G2 Ts52

25) Personman: Sacrifice G3 Personman
Build G2 Lark
Build G3 Lark
Build G3 Personman

26) ts52: Discover B1 Robin Y2 Bigbird

27) Personman: Sacrifice Y1 Kestrel
Move G3 Lark Robin

28) ts52: Move R1 Robin Bigbird

29) Personman: Sacrifice R2 Kestrel
Attack B2 Robin
Attack Y1 Robin

30) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Bigbird
Build B1 Bigbird

31) Personman: Sacrifice G3 Personman
Build G3 Personman
Build R2 Kestrel
Build Y1 Robin

32) ts52: Discover R1 Bigbird Y3 Zoe

33) Personman: Trade G1 Y1 Lark

34) ts52: Trade B1 G1 Bigbird
	ts52: Apparently I'm no longer getting notification emails from SDG. I'll try to remember to check once a day, but if you notice me lagging, feel free to nugde me at tim.seiger@gmail.com.

35) Personman: Sacrifice G3 Personman
Build G3 Personman
Build Y2 Lark
Build Y2 Lark

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Zoe
Build R3 Bigbird

37) Personman: Sacrifice G3 Personman
Build G3 Personman
Build Y3 Robin
Build B1 Robin

38) ts52: Move G2 Ts52 Robin

39) Personman: Sacrifice Y3 Robin
Move G3 Robin Zoe
Move Y1 Robin Ts52
Move Y1 Robin Ts52

40) ts52: Sacrifice R3 Bigbird
Attack B2 Robin
Attack B1 Robin
Attack Y1 Ts52
	ts52: Well that doesn't look good. ;)

41) Personman: Sacrifice Y2 Lark
Move Y1 Lark Robin
Move Y1 Robin Ts52
Catastrophe Ts52 Y

42) ts52: Move R2 Zoe Ts52

43) Personman: Sacrifice R1 Kestrel
Attack R1 Zoe

44) ts52: Trade B1 Y1 Robin

45) Personman: Move G3 Zoe Bigbird
	ts52: Made it with hours to spare. ;)

	Personman: You just know i was hovering over that "force ts52 to resign" button :D
	Personman: btw, can you remind me of the exact rules for that variant your friend invented, with the central white stars that are an additional win condition? My housemate and I want to try it out.

46) ts52: Move R2 Bigbird Zoe

47) Personman: Sacrifice R1 Zoe
Attack B1 Bigbird
	ts52: Hmmm, good question. IIRC, you use black and white colors to build 3 binary systems, one of each size combination. Then there is an additional win condition of controlling 2/3 of those systems. I believe controlling meant having the only ships in it.

48) ts52: Move G1 Bigbird Zoe

49) Personman: Sacrifice G3 Personman
Build G3 Personman
Build B1 Bigbird
Build Y1 Lark

50) ts52: Build R1 Ts52

51) Personman: Trade Y1 R1 Lark

52) ts52: Sacrifice G2 Robin
Build R3 Ts52
Build R3 Zoe

53) Personman: Sacrifice G3 Personman
Build G2 Lark
Build G3 Personman
Build R3 Lark

54) ts52: Trade R2 Y2 Ts52

55) Personman: Discover B1 Bigbird Y1 Littlebird

56) ts52: Move G1 Zoe Ts52

57) Personman: Sacrifice G3 Personman
Build G3 Personman
Build B1 Littlebird
Build B3 Littlebird

58) ts52: Sacrifice Y2 Ts52
Move G3 Ts52 Personman
Move G1 Ts52 Personman
Catastrophe Personman Green

	ts52: Good game! Happy to play again any time.
	Personman: oh my gosh, i completely missed it. well done. will challenge again!


31612)
Started: 2017.3.13, Ended: 2017.4.6
Participants: w00t (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3



31611)
Variants: "Unrated, Hard time"
Started: 2017.3.13, Ended: 2017.3.15
Participants: wil (S), RedMerlin (N)
Winner: wil

1) RedMerlin: Homeworld Y2 B1 G3

2) wil: H R3 B2 G3

3) RedMerlin: Build G1 Redmerlin

4) wil: B G1 Wil
	RedMerlin: Oh oops, I accidentally joined two games against you... Should I concede one or would you like to play 2 games?

5) RedMerlin: Trade G1 B1 Redmerlin

6) wil: T G1 B1 Wil

7) RedMerlin: Discover B1 Redmerlin G3 A3

8) wil: B B2 Wil

9) RedMerlin: Build G1 Redmerlin

10) wil: T B1 Y1 Wil

11) RedMerlin: Build G1 Redmerlin

12) wil: B Y1 Wil

13) RedMerlin: Trade G1 Y1 Redmerlin

14) wil: D Y1 Wil G1 G1

15) RedMerlin: Build Y2 Redmerlin
	wil: If you have the arcade, read the strategies..
	RedMerlin: Why? Don't take the last piece of a size?

16) wil: B Y2 G1
	wil: There is a lot, factories, teleportation, investments..
	RedMerlin: Oh yeah I know, I have read that, I set up an early investment in the other game...

17) RedMerlin: Move Y2 Redmerlin A3

18) wil: S G3 Wil
B Y3 Wil
B Y3 Wil
B Y3 G1

19) RedMerlin: Discover G1 Redmerlin B3 B3

20) wil: M Y2 G1 B3
	RedMerlin: Arg! I could have moved my small yellow forward and caused a catastrophe!

21) RedMerlin: Move Y1 Redmerlin A3

22) wil: S B2 Wil
T Y3 R3 G1
T Y3 G3 Wil
	wil: Yes when I saw that you didn't move it forward, I figured I'd try this.
	RedMerlin: Yeah, if I had moved that one forward I could have sacrificed my 2 to send my 1 two jumps forward...

23) RedMerlin: Trade Y2 R2 A3

24) wil: S G3 Wil
B Y2 B3
B Y3 Wil
B Y3 G1
	wil: Now you've put your two yellows in yye same star system, keeping you from being able to grow a yello
	RedMerlin: Oh... Yeah...

25) RedMerlin: Build G1 Redmerlin
	RedMerlin: I feel like I'm already very dead...
	wil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.
	wil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.
	wil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.

26) wil: M Y3 G1 A3

27) RedMerlin: Sacrifice G3 Redmerlin
Build G2 Redmerlin
Build B1 A3
Build B2 A3

28) wil: S R3 G1
A G1 B3
A B2 A3
A R2 A3

29) RedMerlin: Discover Y1 A3 R1 C1

30) wil: M Y3 A3 Redmerlin
	wil: Yes not owning any big ships has shortened your days...  Although I should have just sent my big fuel ship in
	RedMerlin: Oh...

31) RedMerlin: Trade G1 R1 Redmerlin

32) wil: S R2 A3
A G2 Redmerlin
A R1 Redmerlin

	wil: The oilagarchy has won, domination of the galaxy via fuel
	wil: Challenge me anytime... 


31675)
Variants: "Unrated, Hard time"
Started: 2017.3.13, Ended: 2017.3.13
Participants: RedMerlin (S), wil (N)
Winner: wil

1) wil: H Y3 B1 G3

2) RedMerlin: Homeworld Y1 B2 G3

3) wil: B G1 Wil

4) RedMerlin: Build G1 Redmerlin

5) wil: T G1 B1 Wil
	RedMerlin: Oh oops, I accidentally joined two games against you... Should I concede one or would you like to play 2 games?
	wil: Two is fine...

6) RedMerlin: Discover G1 Redmerlin Y3 Al
	RedMerlin: Cool ok

7) wil: B B1 Wil

8) RedMerlin: Build G1 Redmerlin

9) wil: D B1 Wil G2 G2

10) RedMerlin: Discover G1 Redmerlin B3 B3

11) wil: S G3 Wil
B B2 G2
B B2 G2
B B3 Wil

12) RedMerlin: Trade G3 B3 Redmerlin

13) wil: S B2 G2
T B2 Y2 G2
T B3 G3 Wil

	RedMerlin: Sorry, this was my first game and I'm crap at it...
	wil: No worries... You'll lose 90% of your first games.. This was an example of getting frozen out of an economy.


31678)
Variants: "Unrated"
Started: 2017.3.14, Ended: 2017.3.20
Participants: fogus (S), RedMerlin (N)
Winner: fogus

1) RedMerlin: Homeworld Y1 B2 G3

2) fogus: Homeworld G3 B2 Y3

3) RedMerlin: Build G1 Redmerlin

4) fogus: Build Y1 Fogus

5) RedMerlin: Discover G1 Redmerlin Y3 Y3

6) fogus: Trade Y1 G1 Fogus

7) RedMerlin: Build G1 Redmerlin

8) fogus: Build G2 Fogus

9) RedMerlin: Build G2 Redmerlin

10) fogus: Sacrifice Y3 Fogus
Discover G1 Fogus Y1 Bounce
Move G1 Bounce Y3
Move G1 Y3 Redmerlin
Catastrophe Redmerlin G



31676)
Variants: "Unrated, Hard time"
Started: 2017.3.14, Ended: 2017.3.28
Participants: wil (S), bhorner (N)
Winner: wil

1) bhorner: Homeworld B2 Y1 G3

2) wil: H R3 B1 G3

3) bhorner: B G1 Bhorner

4) wil: B G1 Wil

5) bhorner: D G1 Bhorner B3 Blip

6) wil: T G1 Y1 Wil

7) bhorner: Trade G1 Y1 Blip

8) wil: B Y2 Wil
	bhorner: That was quick.

9) bhorner: Build G1 Bhorner

10) wil: B Y2 Wil

11) bhorner: Sac G1 Bhorner
B Y2 Blip

12) wil: D Y2 Wil G2 G2

13) bhorner: M Y1 Blip G2

14) wil: T Y2 R2 Wil

15) bhorner: Trade Y2 R2 Blip
	wil: Oh, I missed a good move there...sack g3 build all the y3s catastrophe, and I would be one ahead with the ability to build...dang it.
	bhorner: You can take it back.  :)
	wil: Lol... No go ahead..

16) wil: B Y2 Wil

17) bhorner: Build G1 Bhorner

18) wil: D Y1 Wil G2 Geetoo

19) bhorner: Discover G1 Bhorner Y3 Doh

20) wil: S G3 Wil
B Y2 G2
B Y3 Geetoo
B Y3 Wil

21) bhorner: D Y1 G2 R1 Spark

22) wil: T Y2 G2 Wil

23) bhorner: B G1 Bhorner

24) wil: M Y3 Geetoo Blip
	bhorner: Sorry for the delay, no choices look particularly good, and I've only gotten to look at the game for 5 minutes at a time.

25) bhorner: T G1 R1 Bhorner
	wil: If you have a set if pyramids, it is handy to set up the game when it gets complicated...but you are in trouble here..
	bhorner: I have lots.  :). I just got the pyramid arcade too.  :). I thought you would win, but hoped to learn something.  Seems like it's not over yet though.  :)

26) wil: M Y2 G2 Doh
	wil: Oh no, this is a game of mistakes..and capitalizing in them..I have plenty of time to blow it.

27) bhorner: D G1 Doh Y2 Tri

28) wil: B R1 Wil

29) bhorner: S Y1 Spark
M R2 Blip Tri

30) wil: M R2 Wil Geetoo

31) bhorner: B G1 Bhorner

32) wil: B Y1 G2
	bhorner: Guess I could have done that a lot sooner.  I've been tired the last couple days, keep thinking I'll come up with something awesome tomorrow.  :)
	wil: Lol

33) bhorner: M R1 Bhorner Doh

34) wil: M Y3 Blip Tri

35) bhorner: S G3 Bhorner
B R1 Tri
B R2 Tri
B R3 Doh

36) wil: B R3 Geetoo

37) bhorner: M R2 Tri Wil

38) wil: S Y3 Tri
M R3 Geetoo Doh
M R3 Doh Bhorner
M Y2 Doh Bhorner

39) bhorner: M R1 Tri Wil
Cat Wil R

40) wil: A G1 Bhorner
	wil: You left g1 home alone..
	bhorner: Did I have some better move?  You could just have moved in your y3 last move instead of building r3.  :). My only hope was boldness and flustering you (which I didn't actually count on).  Now I will take the pretend 2nd place and pound of flesh of half your homeworld.  :). gg

	bhorner: I think I said something you didn't do...  But the result is the same.  :)
	wil: What... That old place?  We found this lovely new star with growth potential... It appears abandoned...just a few indigenous we can easily enslave.
	wil: Feel free to challenge anytime... I like paying


31683)
Variants: "Unrated, Hard time"
Started: 2017.3.15, Ended: 2017.3.17
Participants: wil (S), RedMerlin (N)
Winner: wil

1) RedMerlin: Homeworld Y1 B2 G3

2) wil: H R3 B1 G3
	RedMerlin: Hi I'm back

3) RedMerlin: Build G1 Redmerlin
	wil: Lol, good luck!
	wil: Just tell me how much info you would like.. And if you want me to give you a chance to take back moves I see as terrible...or only report after the fact.

4) wil: B G1 Wil
	RedMerlin: Haha thanks, I'll probably need it... And I think reporting after the fact is helpful enough, unless it's like a game losing mistake

5) RedMerlin: Trade G1 B1 Redmerlin
	wil: I'll do my best to shorten the curve and reduce the number if times you touch the stove... (Unless it contains s valuable lesson)
	RedMerlin: Thanks so much!

6) wil: T G1 B1 Wil
	RedMerlin: Did it matter if I traded for a blue or a yellow there? And if so, which was the better option (taking into account only having 2 B2s and 3 Y3s)?
	RedMerlin: Y2s*
	wil: I think the b1 is correct, shortest way to 3s

7) RedMerlin: Build B2 Redmerlin

8) wil: B B2 Wil

9) RedMerlin: Discover B1 Redmerlin G3 G3

10) wil: T B2 Y2 Wil

11) RedMerlin: Build G1 Redmerlin

12) wil: Build Y1 Wil

13) RedMerlin: Trade G1 Y1 Redmerlin

14) wil: B Y2 Wil

15) RedMerlin: Build G1 Redmerlin
	RedMerlin: I know it gives you access to medium yellows but I don't want to have 0 yellow ships if you take that last one...

16) wil: T Y2 R2 Wil

17) RedMerlin: Trade B2 R2 Redmerlin
	wil: Exactly right... Onen thing to keep in mind when this happens is knowing you have a 2 you can trade some time as well...you only get outrun when you don't have the same size
	wil: All those things are what you weigh to find the best move.

18) wil: Build Y2 Wil

19) RedMerlin: Move R2 Redmerlin G3

20) wil: D Y2 Wil G2 G2

21) RedMerlin: Build B2 G3

22) wil: S G3 Wil
B Y2 G2
B Y3 G2
B Y3 Wil

23) RedMerlin: Move Y1 Redmerlin G3

24) wil: M Y3 G2 G3

25) RedMerlin: Build Y3 G3

26) wil: S R2 Wil
A Y3 G3
A R2 G3
	wil: This looks like a lovely solar system... I like what you've done with the place.. So many pretty colors..

	wil: IMA just gonna re arrange the furniture a little...
	RedMerlin: That sounds very ominous...
	wil: Crap... I should a let you change that move...sorry...  Next game.
	wil: But that is how a red sacrifice works...
	RedMerlin: Ohhhhh.....

	RedMerlin: I had completely forgotten you could sacrifice reds for attacks in other places...
	wil: Yez...everything sacrifices... And next move was in!
	RedMerlin: Yep


31697)
Variants: "Unrated"
Started: 2017.3.17, Ended: 2017.3.25
Participants: Personman (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) Personman: Homeworld B1 Y2 G3

3) wil: B G1 Wil

4) Personman: Build G1 Personman

5) wil: T G1 Y1 Wil

6) Personman: Trade G1 B1 Personman

7) wil: B Y1 Wil

8) Personman: Build G1 Personman

9) wil: D Y1 Wil B2 B2

10) Personman: Trade G1 R1 Personman

11) wil: B Y2 Wil

12) Personman: Build G1 Personman

13) wil: D Y1 Wil G2 G2

14) Personman: Discover B1 Personman G3 G3

15) wil: S G3 Wil
B Y2 B2
B Y3 B2
B Y3 Wil

16) Personman: Trade G3 Y3 Personman

17) wil: T Y3 G3 Wil

18) Personman: Build G1 Personman

19) wil: T Y1 R1 B2

20) Personman: Build B1 G3

21) wil: T Y2 R2 Wil

22) Personman: Trade B1 Y1 G3

23) wil: M Y2 B2 G3

24) Personman: Sacrifice Y1 G3
Move B1 G3 Personman

25) wil: B Y1 G2

26) Personman: Build B1 Personman

27) wil: B Y2 G3

28) Personman: Discover B1 Personman Y3 Y3

29) wil: B G1 Wil

30) Personman: Build B2 Personman

31) wil: T Y3 B3 B2

32) Personman: Move B2 Personman Y3

33) wil: B Y3 G2

34) Personman: Build G2 Personman

35) wil: S B3 B2
T Y3 B3 G2
T Y2 B2 G3
T Y1 R1 G2

36) Personman: Sacrifice G1 Personman
Build B3 Y3

37) wil: M B3 G2 Y3
C Y3 B

38) Personman: Build R2 Personman

39) wil: S G3 Wil
B R2 G2
B R3 B2
B R3 Wil

40) Personman: Discover G2 Personman Y3 Y3

41) wil: B R3 G2
	wil: The map of the galaxy can change fast

42) Personman: Build G1 Personman

43) wil: M R3 G2 Y3

44) Personman: Discover G2 Y3 Y2 Y2

45) wil: T R3 G3 Wil

46) Personman: Build G2 Y2
	wil: Not to my star!

47) wil: S G3 Wil
B Y1 G3
B Y3 G2
B R3 Wil

48) Personman: Move G2 Y2 Wil

49) wil: B G3 Wil

50) Personman: Build G3 Y2

51) wil: S Y2 G3
M G1 Wil Y2
M G3 Wil Y2
C Y2 G

52) Personman: Discover G2 Wil B2 B2a

53) wil: S B2 G3
T R3 G3 Y3
T R3 G3 Wil

54) Personman: Trade G2 Y2 B2a

55) wil: S G3 Y3
B Y2 G3
B Y3 G2
B R3 Wil

56) Personman: Discover R1 Personman G3 G3a

57) wil: T R1 B1 B2

58) Personman: Build R1 Personman

59) wil: S Y1 G2
M R3 B2 G3a

60) Personman: Build R3 G3a

61) wil: A R3 G3a

62) Personman: Move R1 Personman G3a
Catastrophe G3a R

63) wil: M R1 G2 G3

64) Personman: Sacrifice G1 Personman
Build Y1 B2a
	wil: Can't let you have that queen
	wil: Was a valid response thou

65) wil: S B1 B2
T Y1 B1 G3

66) Personman: Build G1 Personman

67) wil: B Y1 G3

68) Personman: Trade Y2 G2 B2a

69) wil: B B2 G3

70) Personman: Discover B1 Personman G3 G3a

71) wil: M R3 Wil B2a
	wil: Dooms day machine almost complete

72) Personman: Sacrifice G2 B2a
Build B2 G3a
Build B3 G3a

73) wil: S Y2 G3
M B1 G3 G2
M B1 G2 G3a
C G3a B
	wil: Doomsday machine ready ready to lunch

74) Personman: Discover Y1 B2a G3 G3a

75) wil: B Y2 G3

76) Personman: Trade Y3 B3 Personman

77) wil: B B1 G3

78) Personman: Build Y2 G3a

79) wil: B Y3 G3
	wil: I should have just stuck to the plan

80) Personman: Sacrifice Y2 G3a
Move Y1 G3a B2a
Move Y1 B2a G3
Catastrophe G3 Y

81) wil: Sacrifice Y3 G2
Move B2 G3 Personman
Move B1 G3 Personman
Discover R3 B2a Y3 Y3
Catastrophe Personman B

	wil: I didn't want to blow up your entire civilization anyway...some of them must be useful for our future colonies...
	Draw5PlayAll: I wish SDG supported star abbreviations. Then opponents could simply use "Draw5" and I can type the first three letters of their name. Of course, then UserGuy5713 discovers a star and calls it UserGuy5714....
	Draw5PlayAll: I like the direct names when it makes it easy to know that yes I want to go to a G2 star system and I do not have to remember if it was "out" or "Kermit" or "dagobah" or "treehouse"... the view for entering comments shows little of the actual battle on my screen.
	Personman: gg! that opening with the yellows was quite something. i can't believe i clung to life for so long :)
	wil: thanx for the game...challenge anytime..I like playing


31716)
Variants: "Unrated"
Started: 2017.3.17, Ended: 2017.4.1
Participants: RedMerlin (S), wil (N)
Winner: wil

1) wil: H B3 R1 G3

2) RedMerlin: Homeworld Y1 B2 G3

3) wil: B G1 Wil

4) RedMerlin: Build G1 Redmerlin

5) wil: T G1 Y1 Wil

6) RedMerlin: Trade G1 Y1 Redmerlin
	wil: The building phase...
	Draw5PlayAll: Less diverse than chess...

7) wil: B Y2 Wil

8) RedMerlin: Build Y2 Redmerlin

9) wil: B Y2 Wil

10) RedMerlin: Discover Y1 Redmerlin B3 B3

11) wil: T Y1 R1 Wil

12) RedMerlin: Build G1 Redmerlin

13) wil: B R1 Wil

14) RedMerlin: Trade Y2 R2 Redmerlin

15) wil: D Y2 Wil B2 B2

16) RedMerlin: Build R2 Redmerlin

17) wil: M R1 Wil B2

18) RedMerlin: Trade G1 B1 Redmerlin

19) wil: S G3 Wil
B R2 B2
B R3 B2
B R3 Wil

20) RedMerlin: Trade R2 Y2 Redmerlin

21) wil: M R3 B2 B3

22) RedMerlin: Sacrifice Y1 B3
Pass

23) wil: T R3 G3 Wil
	RedMerlin: Quick! Scuttle the ship!
	RedMerlin: You will never take us alive!

24) RedMerlin: Build G1 Redmerlin

25) wil: S G3 Wil
B R2 B2
B R3 B3
B R3 Wil

26) RedMerlin: Build G1 Redmerlin
	wil: The royal armada is ready to visit!
	RedMerlin: Crapppp.....

27) wil: T R1 G1 B2
	RedMerlin: I don't even know what else I can do right now...!
	wil: You will be well taken care if under the new regime.

28) RedMerlin: Discover G1 Redmerlin Y3 Y3
	RedMerlin: Sure...

29) wil: M R2 B2 Y3

30) RedMerlin: Build G2 Redmerlin

31) wil: A G1 Y3
	wil: A g1 y3

32) RedMerlin: Build R1 Redmerlin

33) wil: Move G1 Y3 Redmerlin
Catastrophe Redmerlin G

34) RedMerlin: Trade R1 G1 Redmerlin
	RedMerlin: Welp... 

35) wil: S Y2 B2
M R3 B3 Redmerlin
M G1 B2 B3
	wil: only way to learn that one is the hardway...any time you get three in a system...look around...and then don't let it last long  

36) RedMerlin: Pass
	RedMerlin: Yep...

37) wil: S R3 Wil
A G1 Redmerlin
A R2 Redmerlin
A B1 Redmerlin

38) RedMerlin: Pass
	wil: Your people will be well taken care of...if those yellow bellies want to run away...so be it
	RedMerlin: Awe! "You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn."

39) wil: A Y2 Redmerlin
	wil: Well then, welcome to the revolution



31669)
Started: 2017.3.18, Ended: 2017.4.23
Participants: Personman (S), Laurie_Menke (N)
Winner: Personman

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Hi Personman! It was good to meet you at PAX East!  :)

2) Personman: Homeworld Y1 B2 G3

3) Laurie_Menke: Build G1 Laurie_menke

4) Personman: Build G1 Personman

5) Laurie_Menke: Trade G1 R1 Laurie_menke

6) Personman: Trade G1 R1 Personman

7) Laurie_Menke: Build G1 Laurie_menke

8) Personman: Build G1 Personman

9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller

10) Personman: Trade G1 Y1 Personman

11) Laurie_Menke: Build G1 Laurie_menke

12) Personman: Build Y1 Personman

13) Laurie_Menke: Trade G3 Y3 Laurie_menke

14) Personman: Discover Y1 Personman G3 Grainy

15) Laurie_Menke: Build Y2 Laurie_menke

16) Personman: Build Y2 Grainy

17) Laurie_Menke: Discover Y2 Laurie_menke G2 Green

18) Personman: Build Y3 Personman
	Laurie_Menke: Oops... sorry... gotta back up....

19) Laurie_Menke: Sacrifice G1 Yeller
Build Y2 Green

20) Personman: Trade Y3 R3 Personman

21) Laurie_Menke: Discover Y2 Green G1 Lime

22) Personman: Trade Y1 B1 Personman

23) Laurie_Menke: Trade Y3 G3 Laurie_menke

24) Personman: Build G1 Personman

25) Laurie_Menke: Sacrifice G3 Laurie_menke
Build Y1 Lime
Build Y3 Green
Build G2 Laurie_menke

26) Personman: Move Y2 Grainy Green

27) Laurie_Menke: Move Y3 Green Grainy

28) Personman: Sacrifice R1 Personman
Attack Y2 Green

29) Laurie_Menke: Discover Y1 Lime G3 Forest

30) Personman: Build G2 Personman

31) Laurie_Menke: Build Y3 Forest

32) Personman: Trade G1 B1 Personman

33) Laurie_Menke: Trade G2 B2 Laurie_menke

34) Personman: Move B1 Personman Grainy

35) Laurie_Menke: Build G1 Laurie_menke

36) Personman: Build R1 Personman

37) Laurie_Menke: Build G2 Laurie_menke

38) Personman: Discover R1 Personman B3 Blimp

39) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack B1 Grainy

40) Personman: Sacrifice R1 Blimp
Attack B1 Grainy

41) Laurie_Menke: Trade G2 R2 Laurie_menke

42) Personman: Discover Y1 Grainy G2 Gurney

43) Laurie_Menke: Move Y2 Lime Gurney

44) Personman: Discover Y1 Gurney G1 Grumpy

45) Laurie_Menke: Move B2 Laurie_menke Gurney

46) Personman: Build R1 Personman

47) Laurie_Menke: Move B2 Gurney Forest

48) Personman: Discover Y2 Green B3 Blur

49) Laurie_Menke: Build B2 Forest

50) Personman: Move R3 Personman Blur

51) Laurie_Menke: Build R1 Laurie_menke

52) Personman: Sacrifice G3 Personman
Build G3 Personman
Build R1 Personman
Build R2 Blur

53) Laurie_Menke: Move R1 Laurie_menke Gurney

54) Personman: Sacrifice Y2 Green
Move R3 Blur Gurney
Move R3 Gurney Laurie_menke

55) Laurie_Menke: Build R2 Laurie_menke

56) Personman: Sacrifice R2 Blur
Attack G1 Laurie_menke
Attack G1 Laurie_menke

57) Laurie_Menke: Move Y2 Gurney Laurie_menke

58) Personman: Attack R2 Laurie_menke

59) Laurie_Menke: Sacrifice R2 Laurie_menke
Attack R2 Laurie_menke
Attack G1 Laurie_menke

60) Personman: Attack R2 Laurie_menke
	Laurie_Menke: This is not looking good...

61) Laurie_Menke: Sacrifice Y3 Grainy
Move Y1 Forest Personman
Move B2 Forest Personman
Move B2 Forest Personman
Catastrophe Personman B

62) Personman: Sacrifice R2 Laurie_menke
Attack Y2 Laurie_menke
Attack G1 Laurie_menke

	Laurie_Menke: At least I went down fighting.  :)  Congratulations!  Well played!  Thanks for the fun!  Challenge me to anything anytime!
	Personman: Good game, and thanks! I'll definitely take you up on that :)


31315)
Variants: "Unrated"
Started: 2017.3.18, Ended: 2017.5.8
Participants: wil (S), Draw5PlayAll (W), Laurie_Menke (N), w00t (E)
Winner: wil

1) Laurie_Menke: Homeworld B3 Y1 G3
	Laurie_Menke: Hi Everyone!  Just checking... if I understand correctly, if either Draw5PlayAll or I win, it's a win for our team, and the same goes for w00t and wil.  Yes?  Anything else I need to understand?  It's been a looooong time since I played a 4-player game!

2) wil: H R3 G2 B3
	Draw5PlayAll: Yes, I think so. However, if w00t does not show up to play, then we have to make it a regular no teams 3P game.

I hate it when games start without me knowing... especially since I did not even get the notice that there was a chat message!
	Laurie_Menke: Huh... that's weird about you not getting notified.  Sorry!
	Laurie_Menke: Hmmm... it does look like w00t is AWOL.  Shall we give up on this game?
	Draw5PlayAll: AWOL??

Just force a surrender and play it as a standard 3P game with extra pieces.

3) Laurie_Menke: Build G1 Laurie_menke
	Draw5PlayAll: On second thought, perhaps we should annul this and issue another challenge.
	Draw5PlayAll: I added another challenge. I put Felix in it since I needed someone else to challenge (and he came to mind first), and making it open causes the game to start a month after the challenge is issued.
	Draw5PlayAll: If you two want to duel it out, fine.
	Laurie_Menke: Your choice, wil!
	wil: Wow... We will never empty this bank and no way to ever freeze anyone out of an economy!!  What a challenge?

4) wil: Build B1 Wil
	Draw5PlayAll: Just discover 4 systems...
	Laurie_Menke: Yeah, I hadn't thought about that... probably not worth playing.  Agreed?  Should I terminate?

5) Laurie_Menke: Discover G1 Laurie_menke Y2 Bank
	wil: can't terminate an experiment

6) wil: Build B1 Wil
	Draw5PlayAll: Wil, I issued a new teams challenge and you are the only one not to respond... why?
	Laurie_Menke: LOL... then we shall experiment away!  :)

7) Laurie_Menke: Build G1 Laurie_menke

8) wil: T B1 R1 Wil

9) Laurie_Menke: Discover G1 Laurie_menke B2 Blue

10) wil: B B1 Wil

11) Laurie_Menke: Build G1 Laurie_menke

12) wil: T B1 Y1 Wil

13) Laurie_Menke: Build G1 Laurie_menke

14) wil: Trade B1 G1 Wil

15) Laurie_Menke: Trade G1 R1 Laurie_menke

16) wil: D G1 Wil Y1 Y1

17) Laurie_Menke: Build R1 Laurie_menke

18) wil: B Y1 Wil

19) Laurie_Menke: Trade G1 Y1 Blue

20) wil: Build Y2 Wil

21) Laurie_Menke: Discover Y1 Blue G1 Green
	Laurie_Menke: Oh, man... did I almost do that again... with this many pieces!?!  I will NOT let you freeze me out of an economy... I will not let you freeze me out of an economy... (my new mantra).  ;)

22) wil: M Y2 Wil Green
	wil: should always be...

23) Laurie_Menke: Build Y2 Green

24) wil: B Y2 Green

25) Laurie_Menke: Trade R1 B1 Laurie_menke

26) wil: Build Y2 Wil
Catastrophe Green Y

27) Laurie_Menke: Trade G1 Y1 Laurie_menke
	Laurie_Menke: LOL!

28) wil: D Y1 Wil G1 G1

29) Laurie_Menke: Discover Y1 Laurie_menke G2 G2
	wil: I'll teach you not to take advantage of blatant mistakes

	Laurie_Menke: Dang it... I actually WANTED you to do that, but now I can't remember why.  ::sigh::

30) wil: B Y2 Wil

31) Laurie_Menke: Build Y2 G2
	Draw5PlayAll: What?
	Laurie_Menke: What's the problem?
	wil: Idk.. Fat fingers?
	Laurie_Menke: LOL!

32) wil: B Y2 G1

33) Laurie_Menke: Sacrifice Y2 G2
Move Y1 G2 G1
Move Y1 G1 Wil
Catastrophe Wil Y

34) wil: Build Y1 G1

35) Laurie_Menke: Trade B1 Y1 Laurie_menke

36) wil: B B1 Wil

37) Laurie_Menke: Discover Y1 Laurie_menke G2 G2

38) wil: S B1 Wil
T Y1 B1 G1

39) Laurie_Menke: Build G1 Laurie_menke

40) wil: B B1 G1

41) Laurie_Menke: Build R1 Laurie_menke

42) wil: Build R1 Wil

43) Laurie_Menke: Move R1 Laurie_menke Bank

44) wil: M Y2 G1 Bank

45) Laurie_Menke: Move R1 Bank Y1

46) wil: S R1 Wil
A R1N Y1

47) Laurie_Menke: Discover G1 Bank R1 R1

48) wil: M Y2 Bank R1

49) Laurie_Menke: Build Y1 G2
	Laurie_Menke: Grrrr...  ;)

50) wil: A G1N R1
	wil: It wasn't a donation?


51) Laurie_Menke: Discover Y1 G2 R1 Red
	wil: It appears the bank is empty...and despite Tue hostel looking environment, I think I see welcoming life.

52) wil: B Y2 G1

53) Laurie_Menke: Build Y2 G2

54) wil: B Y2 R1

55) Laurie_Menke: Move Y2 G2 Y1

56) wil: D R1 Y1 B2 B2

57) Laurie_Menke: Build R2 Laurie_menke

58) wil: S G1 Y1
B R2 B2

59) Laurie_Menke: Move R2 Laurie_menke G2

60) wil: M Y2 R1 B2

61) Laurie_Menke: Build R2 G2

62) wil: D Y1 G1 G2 Geetoo

63) Laurie_Menke: Move R2 G2 Y1

64) wil: T R2 G2 B2

65) Laurie_Menke: Sacrifice G1 Laurie_menke
Build R2 Y1

66) wil: Sacrifice Y1 Geetoo
Move R1 Wil G1

67) Laurie_Menke: Sacrifice Y2 Y1
Move R2 Y1 Wil
Move R2 Y1 Wil

68) wil: B R2 G1

69) Laurie_Menke: Build R2 Wil
Catastrophe Wil R

70) wil: B R2 B2

71) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: I am probably counting my chickens waaaayyyy too soon, but I think I may have you!  That'd be a first!
	Draw5PlayAll: How do you plan to get the green?

72) wil: B G1 B2
	Laurie_Menke: For me to know and you to find out!  ;)

73) Laurie_Menke: Move G1 Laurie_menke B2
	Draw5PlayAll: My question was rhetorical.

74) wil: A G1N B2
	Laurie_Menke: :)

75) Laurie_Menke: Build G1 Laurie_menke

76) wil: S Y2 R1
M G1 B2 Laurie_menke
M G1 B2 Laurie_menke
C Laurie_menke G

77) Laurie_Menke: Move Y1 Red Wil

78) wil: M G2 B2 Laurie_menke

79) Laurie_Menke: Build Y1 Wil

80) wil: S R2 G1
A R1N Laurie_menke
A Y1N Wil
	wil: You had me and let me go
	wil: I think that is it.
	Laurie_Menke: Awww, man! I hate when I do stupid things.  ::sigh::
	Laurie_Menke: Well played, as always, wil!  Congrats on the win!  :D



31701)
Variants: "Unrated, Hard time"
Started: 2017.3.19, Ended: 2017.3.26
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) wil: H B3 Y1 G3
	Draw5PlayAll: I found a loophole... I think...
	wil: What...you want me to pass?   Like second seat do ya?

3) Draw5PlayAll: Homeworld B2 R1 G3

4) wil: B G1 Wil

5) Draw5PlayAll: Build G1 Draw5playall
	wil: Ah, the emporers favorite opening

6) wil: T G1 R1 Wil
	Draw5PlayAll: I thought he was indifferent about B1+R2 and R1+B2 unless one of the stars was already taken.
	wil: Yez, br banker

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) wil: B R1 Wil
	Draw5PlayAll: Well, the loophole is that I can never lose by just repeatedly passing over and over... I think...
	wil: Start another game, test your theory

9) Draw5PlayAll: Build Y1 Draw5playall
	Draw5PlayAll: Two can play at that game.

10) wil: D R1 Wil R2 R2

11) Draw5PlayAll: Build Y2 Draw5playall

12) wil: S G3 Wil
B R2 R2
B R2 Wil
B R3 Wil

13) Draw5PlayAll: Trade G3 R3 Draw5playall

14) wil: T R3 G3 Wil

15) Draw5PlayAll: Trade Y2 G2 Draw5playall

16) wil: T R2 Y2 Wil

17) Draw5PlayAll: Build Y2 Draw5playall

18) wil: M Y2 Wil R2

19) Draw5PlayAll: D Y2 Draw5playall G3 G3

20) wil: D R2 R2 Y3 Y3

21) Draw5PlayAll: Sacrifice G2 Draw5playall
Build Y2 Draw5playall
Build Y3 G3

22) wil: S G3 Wil
B Y3 R2
B R2 R2
B R3 Wil

23) Draw5PlayAll: Trade Y1 B1 Draw5playall

24) wil: T R3 G3 Wil

25) Draw5PlayAll: Sacrifice B1 Draw5playall
Trade Y3 R3 G3

26) wil: Sacrifice Y3 R2
Move R1 R2 Y3
Move R1 Y3 Draw5playall
Move R2 Y3 Draw5playall
Catastrophe Draw5playall R

27) Draw5PlayAll: Move R3 G3 Draw5playall

28) wil: Build G1 Wil
	Draw5PlayAll: Thought so

29) Draw5PlayAll: Trade Y1 G1 Draw5playall
	Draw5PlayAll: As the empire is in ruins we are working on a planet sized white flag though we are not ready to use it.

30) wil: T G1 B1 Wil
	wil: I really am liking the renovations, we are planning on coming over for a visit.

31) Draw5PlayAll: Build R1 Draw5playall
	wil: There was a valid reason to blast a wormhole..

32) wil: B G1 Wil
	wil: And he almost lost it due to lack of thought!

33) Draw5PlayAll: Build G1 Draw5playall

34) wil: B G2 Wil

35) Draw5PlayAll: Sac Y2 G3
Move G1 Draw5playall Wil
Catastrophe Wil Green
Move R3 Draw5playall Wil

36) wil: M R2 R2 Wil
	Draw5PlayAll: There was a long period of time (at least eight months) when you never logged on to SDG at all... why, and what made now your time to come back?
	wil: I just got busy.. Or lazy.. But I've told a lit if people with arcade that this is the best place to learn homeworlds... Come here and play a lot,.lose repeatedly and learn attacks and.counters withe every loss
	wil: I thought I should be here...

37) Draw5PlayAll: Attack R2 Wil

38) wil: T B1 R1 Wil
C Wil R
	Draw5PlayAll: Never resign!
	wil: Nice!

	wil: We warped into a new galaxy unknown to this format... Good capitalization of my errors!!!
	Draw5PlayAll: I wonder what would happen if you could make a move action and go to a single star, then we start again with that as your homeworld...
	wil: no...when you lose your homeworld you lose all control of your ships throughout the galaxy, they are reliant on the constant signal from home...


31717)
Variants: "Unrated"
Started: 2017.3.19, Ended: 2017.3.27
Participants: wil (S), Laurie_Menke (N)
Winner: wil

1) Laurie_Menke: Homeworld B2 R1 G3
	Laurie_Menke: Hi wil!  :)  You wanna beat me at a game of Homeworlds?

2) wil: H Y3 B1 G3
	wil: If you insist.

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: :)

4) wil: B G1 Wil
	Laurie_Menke: I doubt I have much choice... but I'll do my best!
	Laurie_Menke: I doubt I have much choice... but I'll do my best!

5) Laurie_Menke: Trade G1 Y1 Laurie_menke

6) wil: T G1 B1 Wil

7) Laurie_Menke: Build Y1 Laurie_menke
	wil: Andy hates this move.
	Laurie_Menke: Why? Because you didn't make a happy system?
	Laurie_Menke: Or maybe because you're forcing me to either trade and give you the b2 or not trade and be edged out of the economy?
	Laurie_Menke: Well, two can play that game!  ;)

8) wil: B B1 Wil

9) Laurie_Menke: Build G1 Laurie_menke
	wil: Unless I am wrong...you are a step ahead to the twos, but a step behind to the threes..  That is this game
	Laurie_Menke: I have no idea what you just said... LOL!

10) wil: D B1 Wil R2 R2
	Laurie_Menke: Please explain more and I will read it in the morning... I'm off to bed.  G'night, wil!  :)

11) Laurie_Menke: Discover G1 Laurie_menke Y3 C3po

12) wil: B B2 Wil

13) Laurie_Menke: Discover Y1 Laurie_menke R3 D2

14) wil: D B1 Wil Y2 Y2

15) Laurie_Menke: Build G1 Laurie_menke

16) wil: S G3 Wil
B B2 R2
B B3 Y2
B B3 Wil

17) Laurie_Menke: Trade G3 B3 Laurie_menke

18) wil: S B2 R2
T B3 G3 Wil
T B3 Y3 Y2

19) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: You suck.  ;)  ;)  ;)

20) wil: S G3 Wil
B B2 R2
B B3 Y2
B B3 Wil

21) Laurie_Menke: Build G2 C3po
	wil: I love queen factories
	Laurie_Menke: I have never seen one before, but having now experienced it... I didn't love it so much!  ;)

22) wil: S B2 R2
T B3 G3 Y2
T B3 G3 Wil

23) Laurie_Menke: Trade B3 G3 Laurie_menke
	Laurie_Menke: OK, so I concede that you will win this eventually... would you rather play it out or have me end it?
	Laurie_Menke: Heading to bed for now... let me know which you prefer.  Sweet dreams!
	Laurie_Menke: So do you want me to Resign or keep playing this one?
	Laurie_Menke: Maybe you're not seeing these messages because it's not your turn...

24) wil: B G2 Wil

25) Laurie_Menke: Move Y1 Laurie_menke D2

26) wil: S G3 Wil
B G2 Y2
B G3 Wil
B B2 R2

27) Laurie_Menke: Sacrifice Y1 D2
Move G1 Laurie_menke D2
	wil: Whatever you'd like...  I just like to play...

28) wil: S G3 Wil
B B3 Wil
B B3 R2
B B3 Y2

29) Laurie_Menke: Trade G1 R1 Laurie_menke

30) wil: T B3 R3 Y2

31) Laurie_Menke: Build Y1 D2

32) wil: M R3 Y2 D2

33) Laurie_Menke: Discover G2 C3po Y2 Y2too

34) wil: A G1 D2

35) Laurie_Menke: Discover Y1 D2 Y2 Y2three

36) wil: M G3 Y2 C3po

37) Laurie_Menke: Move G2 Y2too Wil

38) wil: T B3 R3 Wil

39) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G1 Wil
Build R1 Laurie_menke
Build Y1 Y2three

40) wil: S Y3 Y2
M R3 Wil Y2
M R3 Y2 D2
M R3 D2 Laurie_menke
C Laurie_menke R
	Laurie_Menke: Thanks for the fun, wil!  :)



31799)
Variants: "Hard time"
Started: 2017.3.24, Ended: 2017.3.27
Participants: goulo (S), Draw5PlayAll (N)
Winner: goulo

1) Draw5PlayAll: Pass

2) goulo: Homeworld R3 B2 G3

3) Draw5PlayAll: Homeworld B3 R1 G3
	goulo: hi, have fun!

4) goulo: Build G1 Goulo

5) Draw5PlayAll: Build G1 Draw5playall

6) goulo: Trade G1 Y1 Goulo

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) goulo: Build G1 Goulo

9) Draw5PlayAll: Build G1 Draw5playall

10) goulo: Build Y1 Goulo

11) Draw5PlayAll: Build Y2 Draw5playall

12) goulo: Build Y2 Goulo

13) Draw5PlayAll: Trade Y1 B1 Draw5playall

14) goulo: Discover Y1 Goulo G1 Verdeto

15) Draw5PlayAll: Discover B1 Draw5playall G2 G2

16) goulo: Build G2 Goulo

17) Draw5PlayAll: Discover G1 Draw5playall B2 B2

18) goulo: Discover G1 Goulo Y1 Flaveto

19) Draw5PlayAll: Build G2 Draw5playall

20) goulo: Sacrifice G3 Goulo
Build G3 Flaveto
Build G3 Goulo
Build Y2 Goulo

21) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build G3 Draw5playall
Build B1 G2

22) goulo: Sacrifice G2 Goulo
Build Y3 Verdeto
Build Y3 Verdeto

23) Draw5PlayAll: Move Y2 Draw5playall G2

24) goulo: Move Y3 Verdeto B2

25) Draw5PlayAll: Trade G2 R2 Draw5playall

26) goulo: Trade Y2 R2 Goulo

27) Draw5PlayAll: Build G2 Draw5playall

28) goulo: Sacrifice G3 Flaveto
Build G2 Flaveto
Build G3 Goulo
Build Y2 B2

29) Draw5PlayAll: Discover R2 Draw5playall B2 B2a

30) goulo: Move Y3 Verdeto B2a

31) Draw5PlayAll: Discover Y3 Draw5playall R2 R2

32) goulo: Sacrifice R2 Goulo
Attack R2 B2a
Attack G1 B2

33) Draw5PlayAll: Trade G2 R2 Draw5playall

34) goulo: Sacrifice G3 Goulo
Build R1 B2a
Build G2 B2
Build G3 Goulo

35) Draw5PlayAll: Build B1 G2

36) goulo: Trade G1 R1 B2

37) Draw5PlayAll: Discover B1 G2 G1 G1

38) goulo: Sacrifice Y3 B2
Move R1 B2 Draw5playall
Move R1 B2a Draw5playall
Move Y3 B2a Draw5playall
Catastrophe Draw5playall R

	Draw5PlayAll: Good game
	goulo: thanks for the game!


31747)
Variants: "Unrated"
Started: 2017.3.25, Ended: 2017.3.26
Participants: Draw5PlayAll (S), Laurie_Menke (N)
Winner: Draw5PlayAll

1) Laurie_Menke: Homeworld Y1 B3 G3
	Laurie_Menke: Have a good time!  :)

2) Draw5PlayAll: Homeworld B2 R1 G3

3) Laurie_Menke: Build G1 Laurie_menke

4) Draw5PlayAll: Build G1 Draw5playall

5) Laurie_Menke: Trade G1 R1 Laurie_menke

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) Laurie_Menke: Build R2 Laurie_menke

8) Draw5PlayAll: Build R2 Draw5playall

9) Laurie_Menke: Trade G3 Y3 Laurie_menke

10) Draw5PlayAll: Trade R2 Y2 Draw5playall

11) Laurie_Menke: Discover R2 Laurie_menke G2 Green

12) Draw5PlayAll: Build R2 Draw5playall

13) Laurie_Menke: Sacrifice Y3 Laurie_menke
Discover R2 Green Y3 Temporary
Move R2 Temporary Draw5playall
Catastrophe Draw5playall R
Pass

14) Draw5PlayAll: Move Y2 Draw5playall Laurie_menke
	Laurie_Menke: That was probably stupid, but it was exciting!  ;)

15) Laurie_Menke: Trade R1 G1 Laurie_menke

16) Draw5PlayAll: Trade Y2 R2 Laurie_menke

17) Laurie_Menke: Build G1 Laurie_menke

18) Draw5PlayAll: Attack G1 Laurie_menke

19) Laurie_Menke: Build G1 Laurie_menke

	Laurie_Menke: Alright, so I tanked that game stupidly. Sorry. If you'd like to try again, feel free to challenge me.  Congrats on the win!  :)
	Draw5PlayAll: Oh I see, you resigned while I tried to call catastrophe.
	Laurie_Menke: Sorry... didn't mean to confuse you!


31609)
Started: 2017.3.26, Ended: 2017.3.30
Participants: Ottia (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H G1 Y2 B3
	Ottia: Hiya Rey! I still haven't got tons of time to play anything but I thought we could at least get one single game going, especially one with such a learning curve...

...fatherhood is fantastic. I need more time to elaborate on it properly...
	MobyNostromo: Hey Antonio! I'm glad you're enjoying being a father. I'm finally teaching my daughter Spanish; she is doing very well in English and Korean but knows very little Spanish. She's slowly picking up individual words. With all the languages you know, your child will easily become a polyglot!

2) Ottia: Homeworld G3 B2 Y3
	MobyNostromo: I forgot: have you played this game before? I'm almost brand new.

3) MobyNostromo: B B1 Mobynostromo
	Ottia: I played it once aaaaages ago. It seems like a deep, rewarding game... one of those you can play your whole lifetime. I would like to learn to play it properly - since you had an open invitation and we already have a way of "cracking games open" together it was quite an easy decision...

...that said, I barely remember a thing about it.
	Ottia: As far as Melissa's languages are concerned, we will try at first to raise her bilingual (EN, ES)... German will come afterwards and then whatever she wants to learn; we could help her in French and Italian but if she wants to start with something else, then welcome... the more the merrier! For years and years Eleanor (my wife) and I have had the temptation to start learning Japanese but never quite found the time for it...
	Draw5PlayAll: You do realize the chat and games are public, right?
	MobyNostromo: Nice!! I was not kidding when I used the word, polyglot, and now I know there was no exaggeration on my part. I used to know a little Japanese, but it's mostly gone. Fascinating to learn a language that has no ties whatsoever to your own.

	MobyNostromo: Let's crack this game open!!

	Ottia: Thanks to Draw5PlayAll to point that out. I'm fine with everyone reading what I've written so far but I'll definitely follow your advice and move the conversation elsewhere. For the time being, I'll start another game.
	Ottia: (for pointing that out, I mean... little sleep, slow brain)


31782)
Started: 2017.3.27, Ended: 2017.5.16
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) Felix: Homeworld B2 R3 G3

3) ts52: Build G1 Ts52

4) Felix: Build G1 Felix
	ts52: Sorry for the delay. Thanks for being patient.
	Felix: No problem! I've never been one to be impatient about turns on here.

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: Build B2 Felix

9) ts52: Discover B2 Ts52 G2 Kermit

10) Felix: Trade B2 Y2 Felix

11) ts52: Build G1 Ts52

12) Felix: Build G1 Felix

13) ts52: Trade G1 Y1 Ts52

14) Felix: Discover B1 Felix G1 Out
	ts52: Apparently I'm no longer getting notification emails from SDG. I'll try to remember to check once a day, but if you notice me lagging, feel free to nugde me at tim.seiger@gmail.com.
	Felix: Yeah, they're making some changes to the system, I think.

Will do!

15) ts52: Move Y1 Ts52 Kermit
	ts52: That would explain things.

16) Felix: Build Y1 Felix
	Felix: I believe the developer is working on a "2.0" version of the website, as well.

17) ts52: Move B1 Ts52 Kermit

18) Felix: Discover G1 Felix R1 Rot

19) ts52: Trade B1 R1 Kermit

20) Felix: Trade Y1 R1 Felix

21) ts52: Build R2 Kermit

22) Felix: Build R2 Felix

23) ts52: Move R2 Kermit Out

24) Felix: Trade R2 B2 Felix

25) ts52: Attack B1 Out

26) Felix: Build Y1 Felix

27) ts52: Build B1 Out

28) Felix: Move B2 Felix Rot

29) ts52: Build B3 Out

30) Felix: Build B3 Rot

31) ts52: Build B3 Kermit

32) Felix: Trade B3 Y3 Rot
	ts52: Phew. Just made it under the wire. Sorry for not checking in at all last week.
	Felix: Welcome back! I hope your vacation was lovely.
	Felix: No worries if you can't make it. I don't think Hard Time is turned on, is it? I won't force end the game unless the system does it for me.

33) ts52: Trade B3 Y3 Out

34) Felix: Build B3 Rot
	ts52: It was, thanks. Hectic, but lovely. 

35) ts52: Build B3 Out

36) Felix: Sacrifice Y2 Felix
Move B2 Rot Kermit
Move B2 Kermit Out
Catastrophe Out Blue

37) ts52: Build R2 Out

38) Felix: Discover R1 Felix G1 G1

39) ts52: Build G2 Ts52

40) Felix: Build G2 Felix

41) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Out
Build R3 Kermit

42) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Rot
Build R3 G1

43) ts52: Move R3 Kermit Ts52

44) Felix: Sacrifice G3 Rot
Build G3 Rot
Build Y1 Rot
Build B1 Rot

45) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build Y2 Out

46) Felix: Discover B3 Rot Y2 Ritz

47) ts52: Move B2 Kermit Out

48) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B1 Ritz
Build B2 Rot

49) ts52: Build B3 Out

50) Felix: Move G1 Rot Ritz

51) ts52: Sacrifice Y1 Kermit
Discover B3 Kermit Y1 Bigbird

52) Felix: Sacrifice G2 Felix
Build G2 Ritz
Pass

53) ts52: Move B2 Out Felix
	Felix: You'll have me shortly :)

54) Felix: Sacrifice Y3 Rot
Move R1 G1 Ritz
Move R1 Ritz Out
Move G1 Ritz Ts52
Catastrophe Out Red
	ts52: I think so. But I try to never count on it.

55) ts52: Sacrifice G3 Ts52
Build R1 Kermit
Build R2 Kermit
Build Y3 Kermit
	Felix: Desperate times...

56) Felix: Build G3 Ts52

57) ts52: Attack G3 Ts52
	Felix: Nicely done!

58) Felix: Sacrifice G2 Ritz
Build G2 Ts52
Build R2 G1
Catastrophe Ts52 Green

59) ts52: Move R2 Kermit Bigbird

60) Felix: Move G3 Rot Kermit

61) ts52: Sacrifice Y2 Kermit
Move R1 Kermit Out
Discover R1 Kermit G1 Robin

62) Felix: Sacrifice R2 G1
Attack Y3 Kermit
Attack B2 Felix

63) ts52: Sacrifice Y2 Out
Move B3 Out Felix
Move B3 Bigbird Felix
Catastrophe Felix Blue

64) Felix: Sacrifice G3 Felix
Pass
Pass
Pass

65) ts52: Sacrifice Y3 Out
Move R1 Out Felix
Move R1 Robin Felix
Move R2 Bigbird Felix
Catastrophe Felix Red
	Felix: You've got me again. nicely done!
	ts52: Thanks. That was a good game. I look forward to our next! :)



31821)
Started: 2017.3.27, Ended: 2017.4.19
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Felix: Homeworld Y2 B3 G3

3) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Two B3 stars? I will have the last one.

4) Felix: Build G1 Felix

5) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Felix: Good luck with that :P

6) Felix: Trade G1 Y1 Felix

7) Draw5PlayAll: Build G1 Draw5playall

8) Felix: Build G1 Felix

9) Draw5PlayAll: Discover G1 Draw5playall B2 B2

10) Felix: Discover G1 Felix B1 Lanayru
	Draw5PlayAll: "Engage."

11) Draw5PlayAll: Build G1 Draw5playall

12) Felix: Build G2 Felix

13) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B2
Build G2 Draw5playall
Build G3 Draw5playall

14) Felix: Build G3 Lanayru

15) Draw5PlayAll: Trade G2 Y2 Draw5playall

16) Felix: Trade G1 Y1 Lanayru

17) Draw5PlayAll: Move Y1 Draw5playall B2

18) Felix: Trade G2 R2 Felix

19) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Draw5playall
Build Y3 Draw5playall
Build Y3 B2

20) Felix: Build Y3 Lanayru

21) Draw5PlayAll: Trade Y2 R2 Draw5playall

22) Felix: Build R1 Felix

23) Draw5PlayAll: Trade Y2 B2 Draw5playall

24) Felix: Trade Y1 B1 Lanayru

25) Draw5PlayAll: Trade Y1 R1 B2

26) Felix: Move R2 Felix Lanayru

27) Draw5PlayAll: Discover R2 Draw5playall Y2 Y2

28) Felix: Build G1 Lanayru

29) Draw5PlayAll: Sacrifice G2 B2
Build R2 B2
Build R3 Y2

30) Felix: Build R3 Lanayru

31) Draw5PlayAll: Trade R2 Y2 B2

32) Felix: Discover R3 Lanayru B2 Ridge

33) Draw5PlayAll: Build G2 B2

34) Felix: Build G2 Felix

35) Draw5PlayAll: Build Y1 Draw5playall

36) Felix: Move G3 Lanayru Ridge

37) Draw5PlayAll: Sacrifice B2 Draw5playall
Trade R3 B3 Y2
Trade G2 B2 B2

38) Felix: Discover B1 Lanayru G2 Steamer

39) Draw5PlayAll: Sacrifice G1 Draw5playall
Build B1 Y2

40) Felix: Sacrifice G3 Felix
Build R2 Lanayru
Build R3 Ridge
Build R3 Felix

41) Draw5PlayAll: Move R1 B2 Draw5playall
	Draw5PlayAll: This bluebird potential is risky.

42) Felix: Build Y1 Lanayru
	Felix: Risky risky!
	Draw5PlayAll: Ironically, this seems to be the only move.

43) Draw5PlayAll: Trade Y3 G3 Draw5playall

44) Felix: Discover G1 Lanayru Y3 Y3
	Felix: Way to recognize and defend.
	Draw5PlayAll: But... how did you get ALL the R3s?

45) Draw5PlayAll: Move R2 Y2 Y3

46) Felix: Sacrifice G1 Y3
Build G1 Ridge
	Felix: Same way you got all the B3s ;)
	Draw5PlayAll: No, one of the B3s is in your home and one is in mine.

47) Draw5PlayAll: Move R2 Y3 B2
	Felix: I know. You got all the available B3s.
	Felix: By which I mean the one :)

48) Felix: Move R2 Lanayru Steamer

49) Draw5PlayAll: Build Y3 Draw5playall

50) Felix: S Y3 Lanayru
M R2 Steamer Draw5playall
M R3 Ridge Draw5playall
M G3 Ridge Draw5playall
C Draw5playall Red

	Felix: Prepare to meet thy doom.
	Draw5PlayAll: I see.
	Felix: Good game and well played! I had to really think hard there at the end.
	Draw5PlayAll: Where did I go wrong? Large pieces? R3s?


31613)
Variants: "Hard time"
Started: 2017.3.29, Ended: 2017.4.1
Participants: wil (S), Felix (N)
Winner: wil



31816)
Started: 2017.3.30, Ended: 2017.9.21
Participants: Ottia (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B2 G1 Y3

2) Ottia: Homeworld G1 Y2 B3
	MobyNostromo: Hello again. I too wasn't thinking about our conversation being open. It's so natural to chat here without having to email or go on BGG. Thanks for sharing, regardless. 

3) MobyNostromo: B Y1 Mobynostromo
	MobyNostromo: Let's talk at BGG or by email! Pick the one you like.

4) Ottia: Build B1 Ottia

5) MobyNostromo: B Y1 Mobynostromo

6) Ottia: Trade B1 Y1 Ottia

7) MobyNostromo: D Y1 Mobynostromo Y3 Yellow Giant

8) Ottia: Discover Y1 Ottia R3 Blackgarlic
	MobyNostromo: I'll respond to your BGG message soon; I've been a little crazy myself.


9) MobyNostromo: D Y1 Mobynostromo G3 Green Beans

10) Ottia: Build B1 Ottia

11) MobyNostromo: B Y2 Mobynostromo

12) Ottia: Move B1 Ottia Blackgarlic

13) MobyNostromo: T Y2 G2 Mobynostromo

14) Ottia: Build B1 Ottia

15) MobyNostromo: B G1 Mobynostromo

16) Ottia: Trade B3 Y3 Ottia

17) MobyNostromo: D G1 Mobynostromo R3 Gazpacho

18) Ottia: Discover Y3 Ottia G3 Rawginger

19) MobyNostromo: B G2 Mobynostromo

20) Ottia: Build Y2 Rawginger

21) MobyNostromo: M G2 Mobynostromo Yellow

22) Ottia: Build B1 Ottia

23) MobyNostromo: B G2 Yellow

24) Ottia: Discover Y2 Rawginger Y2 Galiamelon

25) MobyNostromo: B G3 Gazpacho

26) Ottia: Move B1 Ottia Rawginger

27) MobyNostromo: D G2 Yellow R1 Kimchi

28) Ottia: Discover B1 Rawginger R1 Tulsitea

29) MobyNostromo: T G2 B2 Mobynostromo

30) Ottia: Build B2 Ottia

31) MobyNostromo: D B2 Mobynostromo R3 Redbeans

32) Ottia: Trade B2 G2 Ottia

33) MobyNostromo: M Y1 Yellow Kimchi

34) Ottia: Build B2 Ottia

35) MobyNostromo: S G2 Yellow
B Y3 Mobynostromo
Build G2 Kimchi

36) Ottia: Move B1 Ottia Rawginger

37) MobyNostromo: S Y3 Mobynostromo
M G2 Kimchi Gazpacho
M G2 Gazpacho Ottia
M G1 Gazpacho Ottia
C Ottia G

	Ottia: Hiya Rey! I'm sorry to cancel things so abruptly but I can't find the time to play while taking proper care of the household and of work. I'm happy to stay in touch on BGG - I will reply to your message very soon, I'm very thankful for it. Sorry again - I hope I can play again soon.
	MobyNostromo: No problem, buddy. I understand. I was there in a similar place.


31841)
Variants: "Unrated"
Started: 2017.4.1, Ended: 2017.6.3
Participants: wil (S), Laurie_Menke (W), Draw5PlayAll (N), Felix (E)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Felix: Homeworld R2 B1 G3
	Draw5PlayAll: All right, good luck -- not just in the usual sense but that this time the game gets played.

The teams appear to have worked out as such: Felix and wil are on one team, me and Laurie on the other. If either member of the team wins then it is a win for both.

3) wil: Homeworld Y2 B1 G3
	wil: Laurie and I
	wil: Not a change of teams...it is just that I never get to correct others English! (And am probably wrong anyway
	wil: But team strategy...interesting...

	wil: Current actual concern with teams...the setup looks like I am going to be south??  So ES plays two moves, the WN plays to moves?
	wil: Should make for lots of catastrophes...
	wil: My homeworld choice is dependent on who my partner is at this point...it looks like I should be with d5pA
	wil: I am playing just to ping the board...  If I am not felix's partner I'd like to change this move.
	wil: I am willing to play side by side if that is how it works...just to see if it will be as awful as I suspect.

4) Laurie_Menke: Homeworld Y3 B2 G3
	Draw5PlayAll: I believe I stated that we were doing 1+4 vs 2+3, to mitigate the first turn advantage.
	Draw5PlayAll: Therefore according to that rule wil is teamed up with Felix.
	Laurie_Menke: OK... so all that said, I'm going to go ahead and play.  But I do see wil's point.  It'll be interesting to see how this turns out!  Have fun, everyone!

5) Draw5PlayAll: Build G1 Draw5playall

6) Felix: Build G1 Felix
	Draw5PlayAll: And really, 1+3 vs 2+4 has the same flaw... often 2 can do nothing to stop 1+3 from killing 4.
	Laurie_Menke: Yeah, I can see that, too.
	Felix: Yeah, this should be interesting...

7) wil: B G1 Wil

8) Laurie_Menke: Build G1 Laurie_menke
	wil: So...no table talk?  At all?  Or no table talk in private messages only within the game for all to see?
	Draw5PlayAll: Private messages are fine
	Laurie_Menke: Interesting...

9) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: I have received none so far.

10) Felix: Build G2 Felix

11) wil: T G1 B1 Wil
	wil: Team Strategy on fleek eh?

12) Laurie_Menke: Trade G1 B1 Laurie_menke

13) Draw5PlayAll: Trade G1 Y1 Draw5playall

14) Felix: Trade G1 B1 Felix

15) wil: B B2 Wil

16) Laurie_Menke: Build B2 Laurie_menke
	wil: So to declarify a loop hole in the rules...if my partner knocks me out... I win.
	Draw5PlayAll: No, you win by being the last survivor. So your partner has to knock both opponents, as well as you, out for your statement to work.
	Felix: @wil Hahaha, our team strategy is SO on fleek!
	wil: err...scuse me sir...d5pA... you made the rules..  

 "If either member of the team wins then it is a win for both."
	Draw5PlayAll: This is not a Sinister match... normally in a 4P game you win by being the LAST survivor... not just by killing 1 empire.

17) Draw5PlayAll: Trade G1 R1 Draw5playall
	wil: I gotcha...  I'm just a binary guy... I think I may have seen one entire game of four player.. jumped in due to the partner thang

18) Felix: Build B2 Felix

19) wil: Discover B2 Wil Y3 Whynot

20) Laurie_Menke: Discover B2 Laurie_menke G1 Metoo

21) Draw5PlayAll: Build Y1 Draw5playall

22) Felix: Trade G2 Y2 Felix

23) wil: B G1 Wil

24) Laurie_Menke: Build G1 Laurie_menke

25) Draw5PlayAll: Discover Y1 Draw5playall G2 G2

26) Felix: Discover B2 Felix Y3 Latetotheparty

27) wil: S G3 Wil
B B2 Whynot
B B3 Whynot
B B3 Wil

28) Laurie_Menke: Sacrifice G3 Laurie_menke
Build B3 Laurie_menke
Build B3 Metoo
Build G1 Laurie_menke

29) Draw5PlayAll: Build Y1 Draw5playall

30) Felix: Sacrifice Y2 Felix
Move B2 Latetotheparty Metoo
Move B2 Metoo Laurie_menke
Catastrophe Laurie_menke Blue
	Draw5PlayAll: Hey, I wanted a blue system!

31) wil: T B3 R3 Whynot
	Laurie_Menke: Sorry... you'll get your chance, I'm sure.

32) Laurie_Menke: Trade B2 Y2 Metoo
	Felix: Taking one for the team here, wil!

33) Draw5PlayAll: Build Y1 Draw5playall

34) Felix: Build G1 Felix
	Laurie_Menke: Alas... I screwed up, but couldn't undo it, so hoped that you wouldn't see it.  But you did.  :/  Sorry, Draw5PlayAll!

35) wil: T B1 R1 Wil

36) Laurie_Menke: Move B3 Metoo Laurie_menke

37) Draw5PlayAll: Build G2 Draw5playall

38) Felix: Trade G1 Y1 Felix

39) wil: M B2 Whynot G2

40) Laurie_Menke: Build Y2 Metoo

41) Draw5PlayAll: Discover Y1 Draw5playall G2 G2a

42) Felix: Trade B1 R1 Felix

43) wil: S R1 Wil
A Y1N G2

44) Laurie_Menke: Build B1 Laurie_menke

45) Draw5PlayAll: Build Y2 G2a

46) Felix: Build Y2 Felix

47) wil: Build Y3 G2

48) Laurie_Menke: Sacrifice Y2 Metoo
Move B3 Laurie_menke Wil
Move B1 Laurie_menke Wil
Catastrophe Wil B

49) Draw5PlayAll: Discover Y1 G2a B3 B3

50) Felix: Move Y2 Felix B3
	Laurie_Menke: Well, this is a bit of a suicide mission, but we're takin' you down, wil!  ;)  I'll take care of the blue, and the Draw5PlayAll has a bunch of ways to finish you off in another couple turns.  :)

51) wil: M R3 Whynot Wil

52) Laurie_Menke: Move Y2 Metoo Wil

53) Draw5PlayAll: Sacrifice Y2 G2a
Move Y1 Draw5playall Wil
Move Y1 B3 Wil
Catastrophe Wil Yellow
	Felix: Uh oh...

54) Felix: Sacrifice Y2 B3
Move G3 Felix Whynot
Move G3 Whynot G2
	Laurie_Menke: D5PA... notice that you are directly connected to wil now...

55) Laurie_Menke: Discover G1 Laurie_menke B2 B2

56) Draw5PlayAll: Move G2 Draw5playall G2

57) Felix: Sacrifice G3 G2
Build R1 Felix
Build Y1 Felix
Build Y1 Felix
	Laurie_Menke: Bye wil.  :(  Well done Draw5PlayAll!  :)
	Laurie_Menke: Interesting... wil's pieces weren't removed...

58) Laurie_Menke: Trade G1 R1 B2
	Draw5PlayAll: Laurie... I have an idea, please consider undoing that move and instead going to the G2 system
	Draw5PlayAll: If you do then I can send in MY green, and blow up Felix's only large.
	Laurie_Menke: OK, I undid just to have time to check with folks.  That's a great idea, Draw5PlayAll... sorry I didn't see it!  Felix and wil... would you rather I play my original move and take the game closer to its close, or would you rather have the challenge of our team playing its best option and seeing what happens next?
	Draw5PlayAll: I think they are a little biased... they want Felix not to lose like this!
	Laurie_Menke: Agreed, and he should win (or at least have a better chance at it) since I made a stupid mistake.  What I'm asking is whether they would prefer to keep the game going by having me undo, or continue the game as it is (and most likely, but not definitely, win).
	Laurie_Menke: Well, since neither have answered, I think I will leave the move as it was.  It was a bad mistake, and I apologize, Draw5PlayAll. But I don't feel right backing up on a multi-player game without the other players' consent.

59) Draw5PlayAll: Sacrifice R1 Draw5playall
Attack B2S G2

60) Felix: Trade Y1 G1 Felix
	Felix: I would have been fine with it if you took back the move, but I didn't see this message until now!

61) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: ::sigh:: Oh well.  It's just a game!  Sorry for messing up so much!

62) Draw5PlayAll: Trade G2 R2 G2
	Laurie_Menke: Actually, I still think we're going to win this thing, Draw5PlayAll.  :)  Whatever you do, don't give up your G3 & G2.  They're going to be the keys to winning.

63) Felix: Build G1 Felix
	Draw5PlayAll: How much time do I have to raid before I need moves?

64) Laurie_Menke: Move G1 Laurie_menke B2
	Laurie_Menke: I don't know... it's always best to be as efficient as possible in Homeworlds.

65) Draw5PlayAll: Attack Y1S G2

66) Felix: Discover R1 Felix G3 G3

67) Laurie_Menke: Trade G1 Y1 B2

68) Draw5PlayAll: Build Y2 Draw5playall

69) Felix: Move Y1 Felix G3

70) Laurie_Menke: Move R1 B2 Laurie_menke

71) Draw5PlayAll: Sacrifice Y2 Draw5playall
D B2 G2 Y3 Y3
Move B2 Y3 Felix

72) Felix: Build Y2 Felix

73) Laurie_Menke: Build R1 Laurie_menke

74) Draw5PlayAll: Attack Y2E Felix
	Draw5PlayAll: Now or never, use it or lose it..,

75) Felix: Pass

76) Laurie_Menke: Move R1 Laurie_menke Felix

77) Draw5PlayAll: Attack G1E Felix

78) Felix: Build Y2 Felix

79) Laurie_Menke: Move R1 Laurie_menke Felix
Catastrophe Felix Red
	Felix: Huh. Just wanted to see if you could do that.
	Draw5PlayAll: But why?

80) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G1 Felix
Build Y2 Felix
Build G1 Felix
Catastrophe Felix Green
Catastrophe Felix Yellow



31842)
Variants: "Hard time"
Started: 2017.4.3, Ended: 2017.4.11
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B2 G3

2) wil: Homeworld Y3 B1 G3
	Felix: Hey, it's been a while since you were active. Best of luck!
	wil: have fun!

3) Felix: Build G1 Felix

4) wil: Build G1 Wil

5) Felix: Trade G1 B1 Felix

6) wil: Trade G1 B1 Wil

7) Felix: Build B2 Felix

8) wil: B B2 Wil

9) Felix: Trade B2 Y2 Felix

10) wil: Trade B1 R1 Wil

11) Felix: Build Y1 Felix

12) wil: Build R1 Wil

13) Felix: Build Y1 Felix

14) wil: Build R2 Wil

15) Felix: Trade Y2 R2 Felix

16) wil: D R1 Wil B2 B2

17) Felix: Discover Y1 Felix B3 Rim

18) wil: D R2 Wil Y2 Y2

19) Felix: Build G1 Felix

20) wil: M R2 Y2 Rim

21) Felix: Move G3 Felix Rim

22) wil: S G3 Wil
B R2 Wil
B R3 Wil
B R3 B2

23) Felix: Build R3 Felix

24) wil: T R2 Y2 Wil

25) Felix: Sacrifice R2 Felix
Attack R2 Rim
Pass

26) wil: T R1 G1 Wil

27) Felix: Build Y1 Rim

28) wil: T R3 G3 B2

29) Felix: Build Y2 Felix

30) wil: M Y2 Wil B2

31) Felix: Discover Y1 Rim G2 Range

32) wil: B R1 Wil
	wil: B r1 wil

33) Felix: Sacrifice G3 Rim
Build Y2 Range
Build Y3 Rim
Build Y3 Felix
	wil: First gotta place order in right box, then you have to type correctly
	Felix: hahaha

34) wil: B R2 B2

35) Felix: Discover B1 Felix G3 Rhino

36) wil: M R2 B2 Rhino

37) Felix: Move Y3 Felix Rhino

38) wil: D B2 Wil G2 G2
	wil: I'm gonna make good moves in the ladder game
	wil: I'm gonna make good moves in the ladder game
	wil: And sayanara to oroductivity

39) Felix: Sacrifice R2 Rim
Attack R2 Rhino
Pass

40) wil: B R2 B2
	Felix: Sayonara, indeed. And don't worry - I've been really letting my strategy in this game slip. I tend to rush my moves lately.
	wil: I eagerly await your mistakes

41) Felix: Build B1 Rhino

42) wil: D R2 B2 B3 B3

43) Felix: Build B3 Rhino
	Felix: Well, nice move!

44) wil: B G1 B2

45) Felix: Sacrifice Y2 Felix
Move B1 Rhino Range
Discover Y1 Rim Y2 Ricket
	wil: I had a good walk...

46) wil: Sacrifice G3 B2
Build G2 Wil
Build G3 Wil
Build G3 B2
	wil: nice job!

47) Felix: Sacrifice Y3 Rhino
Move Y1 Range Wil
Move Y2 Range Wil
Move Y1 Ricket Wil
	wil: I suppose a distraction won't work.

	Felix: A distraction? Where?!

48) wil: S G3 Wil
B G3 Wil
B Y2 B2
B Y3 B2
C Wil Y

49) Felix: Sacrifice Y3 Rim
Move B1 Range Wil
Move B1 Rhino Wil
Move B3 Rhino Wil
Catastrophe Wil Blue
	Felix: Ah, it worked! I totally messed up and then totally forgot to catastrophe.
	Felix: That's what I get for being overeager.
	Draw5PlayAll: At least wil cannot prevent it next turn.

	wil: Doomsday machine...Exactly how I lost to Andy last night.. Nice 
	Felix: Good game though! Did you play against Andy Looney last night?  Cool!
	Felix: I'd love to get the chance to play against him.
	wil: Ya gotta catch him...and get that medal!
	Felix: How did you play him? In person, or on here?
	wil: I met Andy before I met homeworlds...  we play regularly, friend and neighbor.
	wil: He, like most of us, get driven crazy by the format of the ships in the blocks and the orientation of the blocks in relation to connection between star systems..
	wil: and since he is now giving away medals for beating him, I suspect he won't be playing the medal competition games online even if an improved system is built....but who knows...
	Felix: Ah, very cool that you are friends and neighbors! I have played far more games on here than with actual pyramids, so I've gotten used to the format, but I definitely prefer the real deal!
	Draw5PlayAll: Yeah, I am not sure if there is an easy way to make the formatting better... the blocks and the 5x5 grids are just so much easier to code...
	wil: I have friends playing with the virtual reality, might be we will be able to play live games moving pieces around space.
	Draw5PlayAll: That seems a bit of a stretch. But tell me when I can say "Computer, freeze program!" and have it work.
	Draw5PlayAll: And about the format... I got my Homeworlds start from here... I have played fewer than a dozen IRL games. 


31902)
Started: 2017.5.5, Ended: 2017.5.6
Participants: lockedlake (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B1 Y2 G3



31966)
Started: 2017.5.5, Ended: 2017.5.6
Participants: ts52 (S), lockedlake (N)
Winner: ts52



31970)
Started: 2017.5.6, Ended: 2017.5.22
Participants: panglott (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) panglott: Homeworld B3 G1 Y3

3) Draw5PlayAll: Build G1 Draw5playall

4) panglott: Build Y1 Panglott

5) Draw5PlayAll: Build G1 Draw5playall

6) panglott: Trade Y3 G3 Panglott

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) panglott: Build Y1 Panglott

9) Draw5PlayAll: Build Y2 Draw5playall

10) panglott: Build G1 Panglott

11) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover G1 Draw5playall Y2 Y2
Move G1 Y2 Panglott
Catastrophe Panglott Green

12) panglott: Trade Y1 G1 Panglott
	Draw5PlayAll: Take that! And that! And...
	panglott: Hoo boy.

13) Draw5PlayAll: Build G1 Draw5playall

14) panglott: Build G1 Panglott

15) Draw5PlayAll: Trade G1 R1 Draw5playall

16) panglott: Discover G1 Panglott Y1 Ulzad

17) Draw5PlayAll: Build Y2 Draw5playall

18) panglott: Build Y2 Panglott

19) Draw5PlayAll: Discover Y2 Draw5playall G2 G2

20) panglott: Trade Y2 B2 Panglott
	Draw5PlayAll: This is way harder than I expected.

21) Draw5PlayAll: Move R1 Draw5playall G2

22) panglott: Build Y2 Panglott

23) Draw5PlayAll: Build R1 G2

24) panglott: Move Y2 Panglott Ulzad

25) Draw5PlayAll: Move Y2 G2 Panglott

26) panglott: Trade B2 R2 Panglott

27) Draw5PlayAll: Sac R1 G2
Attack R2 Panglott

28) panglott: Build Y2 Ulzad

29) Draw5PlayAll: Sacrifice R2 Panglott
Attack G1 Panglott
Attack Y1 Panglott
	panglott: Thanks for the game ;)
	Draw5PlayAll: Yeah, I kept thinking you would get a large and make the fight a lot harder...

I did not realize my rating was already 1750.



32141)
Variants: "Hard time"
Started: 2017.5.7, Ended: 2017.5.10
Participants: goulo (S), mneme (N)
Winner: goulo



32149)
Variants: "Hard time"
Started: 2017.5.9, Ended: 2017.5.12
Participants: Subhan64 (S), Aristos (N)
Winner: Aristos

1) Aristos: Homeworld B3 R2 G3

	Aristos: Ping! (Because some times I've observed that superdupergames doesn't send emails for the first move.)


32120)
Started: 2017.5.10, Ended: 2017.11.7
Participants: MobyNostromo (S), Joe_Hill (N)
Winner: MobyNostromo

1) Joe_Hill: Homeworld B2 R1 G3
	Joe_Hill: Hiya!
	Joe_Hill: It's been a while since I played this. Very interested in this game, but it has a steep learning curve.
	Joe_Hill: The amount of spectators always cracks me up...

2) MobyNostromo: H G1 B2 Y3
	MobyNostromo: Yeah, I was noticing - it brings the game all the way down to the bottom of the page. :)

3) Joe_Hill: Build G1 Joe_hill
	Joe_Hill: Probably more than half of them haven't even been on the site in years...

4) MobyNostromo: B Y1 Mobynostromo

5) Joe_Hill: Trade G1 Y1 Joe_hill

6) MobyNostromo: T Y1 G1 Mobynostromo

7) Joe_Hill: Build G1 Joe_hill

8) MobyNostromo: B G2 Mobynostromo

9) Joe_Hill: Build G2 Joe_hill

10) MobyNostromo: D G2 Mobynostromo R3 Redgiant

11) Joe_Hill: Discover G2 Joe_hill Y3 Pan

12) MobyNostromo: D G1 Mobynostromo Y3 Yellowtriad

13) Joe_Hill: Build G2 Pan

14) MobyNostromo: B G3 Redgiant

15) Joe_Hill: Trade G1 B1 Joe_hill

16) MobyNostromo: B G1 Yellowtriad

17) Joe_Hill: Move B1 Joe_hill Pan

18) MobyNostromo: Build Y1 Mobynostromo

19) Joe_Hill: Trade G2 R2 Pan

20) MobyNostromo: D Y1 Mobynostromo G3 Earth

21) Joe_Hill: Move R2 Pan Mobynostromo

22) MobyNostromo: T Y3 R3 Mobynostromo

23) Joe_Hill: Build G2 Pan

24) MobyNostromo: M G1 Yellowtriad Mobynostromo
	Joe_Hill: well that's annoying.
	MobyNostromo: Oh boy.
	Joe_Hill: I basically concede that piece. WAsted move. Bummer!


25) Joe_Hill: Trade G2 Y2 Pan

26) MobyNostromo: A R2 Mobynostromo
	MobyNostromo: I know your frustration.

27) Joe_Hill: Build G2 Pan

28) MobyNostromo: Trade G1 Y1 Mobynostromo

29) Joe_Hill: Trade G2 R2 Pan

30) MobyNostromo: Build Y2 Mobynostromo

31) Joe_Hill: Build G1 Joe_hill

32) MobyNostromo: B G2 Yellowtriad
	Joe_Hill: I wish I had more opportunities to play this game face to face. I feel like I would have a better understanding of it.
	MobyNostromo: I know. That is also my life with just about every game I play - not enough face to face. This game in particular could slip you a sneaky one because there is just so much growing on the board.
	Draw5PlayAll: I have taught a few people... and I always win... never encountered anyone who already knew the game!

33) Joe_Hill: Trade G3 R3 Joe_hill

34) MobyNostromo: D Y2 Mobynostromo Y3 Bigbird

35) Joe_Hill: Build Y2 Joe_hill

36) MobyNostromo: D G2 Yellowtriad R2 D2

37) Joe_Hill: Build R1 Pan

38) MobyNostromo: M R3 Mobynostromo Pan

39) Joe_Hill: Trade B1 R1 Pan
Catastrophe Pan Red

40) MobyNostromo: S G1 Yellowtriad
B Y3 Mobynostromo

41) Joe_Hill: Build G1 Pan

42) MobyNostromo: B R1 Mobynostromo

43) Joe_Hill: Trade Y1 B1 Joe_hill

44) MobyNostromo: B Y1 Earth

45) Joe_Hill: Move B1 Joe_hill Pan

46) MobyNostromo: D Y1 Earth R2 Maul

47) Joe_Hill: T G1 R1 Pan

48) MobyNostromo: S Y2 Bigbird
M Y1 Maul Pan
M Y1 Mobynostromo Pan
C Pan Y

49) Joe_Hill: Build R1 Joe_hill

50) MobyNostromo: S Y3 Mobynostromo
M R2 Mobynostromo Earth
M R2 Earth Joe_hill
M Y1 Earth Mobynostromo
C Joe_hill R
	Joe_Hill: damn...

51) Joe_Hill: Build G1 Joe_hill

52) MobyNostromo: Sacrifice G3 Redgiant
Build G2 D2
Build G3 D2
Build G3 Redgiant

53) Joe_Hill: Trade G1 R1 Joe_hill

54) MobyNostromo: B Y1 Mobynostromo

55) Joe_Hill: Build G1 Joe_hill

56) MobyNostromo: M Y1 Mobynostromo Redgiant

57) Joe_Hill: Trade G1 Y1 Joe_hill

58) MobyNostromo: B Y2 Mobynostromo

59) Joe_Hill: Build G1 Joe_hill

60) MobyNostromo: M G3 Redgiant Mobynostromo

61) Joe_Hill: Discover G1 Joe_hill R1 Bill

62) MobyNostromo: T G3 R3 Mobynostromo

63) Joe_Hill: Build G3 Bill

64) MobyNostromo: S G3 D2
B G3 Redgiant
B Y2 Redgiant
B Y3 Mobynostromo

65) Joe_Hill: Sacrifice Y2 Joe_hill
Move Y1 Joe_hill Redgiant
Move Y1 Redgiant Mobynostromo
Catastrophe Mobynostromo Y

66) MobyNostromo: S Y2 Redgiant
M R3 Mobynostromo Redgiant
M R3 Redgiant Joe_hill

67) Joe_Hill: Build R2 Joe_hill

68) MobyNostromo: A R2 Joe_hill
	Joe_Hill: i'm doomed.

69) Joe_Hill: Build R2 Joe_hill
Catastrophe Joe_hill R

70) MobyNostromo: B R1 Mobynostromo

71) Joe_Hill: B G3 Joe_hill
	MobyNostromo: See! You still have a chance!

72) MobyNostromo: M G2 Redgiant Joe_hill
	Joe_Hill: Start fresh. Why not!

73) Joe_Hill: T G3 R3 Joe_hill

74) MobyNostromo: B G3 Redgiant

75) Joe_Hill: B R2 Joe_hill

76) MobyNostromo: T R1 Y1 Mobynostromo

77) Joe_Hill: Attack G2 Joe_hill

78) MobyNostromo: B Y1 Mobynostromo

79) Joe_Hill: Trade R2 Y2 Joe_hill
	Draw5PlayAll: Close
	Joe_Hill: it's been an interesting game so far.
	MobyNostromo: Yes. Lots of ups and downs.

80) MobyNostromo: M G3 Redgiant Mobynostromo

81) Joe_Hill: Build Y2 Joe_hill

82) MobyNostromo: T Y1 B1 Mobynostromo

83) Joe_Hill: Trade G2 B2 Joe_hill

84) MobyNostromo: M B1 Mobynostromo Redgiant

85) Joe_Hill: Move Y2 Joe_hill Bill

86) MobyNostromo: T G3 B3 Redgiant

87) Joe_Hill: Move B2 Joe_hill Bill

88) MobyNostromo: D B1 Redgiant Y1 Solar

89) Joe_Hill: Build Y2 Joe_hill

90) MobyNostromo: B Y3 Mobynostromo

91) Joe_Hill: Discover G1 Bill Y3 Phil

92) MobyNostromo: T Y1 B1 Redgiant

93) Joe_Hill: Sacrifice Y2 Joe_hill
Move G3 Bill Phil
Move G3 Phil Mobynostromo

94) MobyNostromo: S Y3 Mobynostromo
M B1 Redgiant Joe_hill
M B3 Redgiant Joe_hill
M B1 Solar Joe_hill
C Joe_hill B
	Joe_Hill: damn
	Joe_Hill: i think you got me.

	MobyNostromo: Thanks for the game, Joe. That was really exciting!
	Joe_Hill: yea, very good game. Thanks Moby


32031)
Variants: "Unrated"
Started: 2017.5.10, Ended: 2017.8.8
Participants: wil (S), Personman (N)
Winner: wil

1) Personman: Homeworld B3 Y1 G3

2) wil: H B3 Y2 G3

3) Personman: Build G1 Personman

4) wil: B G1 Wil

5) Personman: Trade G1 Y1 Personman

6) wil: T G1 Y1 Wil

7) Personman: Build Y2 Personman

8) wil: B Y2 Wil

9) Personman: Trade Y2 B2 Personman

10) wil: D Y1 Wil G1 G1

11) Personman: Build Y2 Personman

12) wil: B Y3 G1

13) Personman: Discover Y2 Personman G2 G2

14) wil: M Y1 G1 G2

15) Personman: Build G1 Personman

16) wil: B Y3 G1

17) Personman: Build Y3 G2
	wil: Looks like you took. A little hiatus from this game...

18) wil: M Y3 G1 G2
C G2 Y

19) Personman: Build B1 Personman

20) wil: B Y1 G1

21) Personman: Trade B1 R1 Personman

22) wil: B Y2 G1

23) Personman: Discover Y1 Personman G2 G2

24) wil: B Y3 Wil

25) Personman: Move Y1 G2 G1
Catastrophe G1 Y

26) wil: Discover Y2 Wil B1 B1

27) Personman: Discover B2 Personman G2 G2

28) wil: B G1 Wil

29) Personman: Build B1 G2

30) wil: T G1 B1 Wil

31) Personman: Trade B1 Y1 G2

32) wil: B G1 Wil

33) Personman: Build R1 Personman

34) wil: T G1 R1 Wil

35) Personman: Trade R1 Y1 Personman

36) wil: B G1 Wil

37) Personman: Build Y2 Personman

38) wil: D Y3 Wil G1 G1

39) Personman: Trade Y1 B1 Personman

40) wil: Move Y3 G1 G2

41) Personman: Build B2 G2

42) wil: D B1 Wil G1 G1

43) Personman: Trade B2 G2 G2

44) wil: B G2 Wil

45) Personman: Build G3 Personman

46) wil: S Y3 G2
M G2 Wil B1
M G2 B1 G2
M G2 G2 Personman
C Personman G



32121)
Started: 2017.5.10, Ended: 2017.7.5
Participants: ts52 (S), Personman (N)
Winner: ts52

1) Personman: Homeworld B3 Y1 G3

2) ts52: Homeworld Y3 B2 G3

3) Personman: Build G1 Personman

4) ts52: Build G1 Ts52

5) Personman: Trade G1 Y1 Personman

6) ts52: Trade G1 Y1 Ts52

7) Personman: Build Y2 Personman

8) ts52: Build Y2 Ts52

9) Personman: Trade Y2 B2 Personman

10) ts52: Trade Y2 B2 Ts52

11) Personman: Build Y2 Personman

12) ts52: Build Y2 Ts52

13) Personman: Discover Y2 Personman G2 G2

14) ts52: Discover Y1 Ts52 G1 Kermit

15) Personman: Build G1 Personman

16) ts52: Move B2 Ts52 Kermit

17) Personman: Trade G1 R1 Personman

18) ts52: Trade Y2 R2 Ts52

19) Personman: Build Y2 Personman

20) ts52: Build Y2 Kermit

21) Personman: Build Y3 G2

22) ts52: Sacrifice Y2 Kermit
Move Y1 Kermit G2
Move Y1 G2 Personman
Catastrophe Personman Yellow
	ts52: I may regret this, but I can't resist

23) Personman: Build G1 Personman

24) ts52: Build B1 Kermit

25) Personman: Move Y3 G2 Kermit

26) ts52: Build G1 Ts52

27) Personman: Build R1 Personman

28) ts52: Discover G1 Ts52 Y1 Bigbird

29) Personman: Sacrifice R1 Personman
Attack B2 Kermit

30) ts52: Build B1 Kermit

31) Personman: Trade B2 R2 Kermit

32) ts52: Build B1 Kermit

33) Personman: Build B2 Personman

34) ts52: Trade B1 Y1 Kermit

35) Personman: Attack Y1 Kermit

36) ts52: Build B1 Kermit

37) Personman: Attack B1 Kermit

38) ts52: Sacrifice B1 Kermit
Trade G1 B1 Bigbird

39) Personman: Attack B1 Kermit

40) ts52: Move B1 Bigbird Personman
Catastrophe Personman Blue
	ts52: Good game sir. I look forward to our next.



32153)
Variants: "Hard time"
Started: 2017.5.11, Ended: 2017.5.15
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H Y2 B1 G3 Wil

2) Felix: Homeworld B1 G3 B3 *

3) wil: B G1 Wil
	Felix: I've never been able to get this opening to work successfully, but here goes.
	wil: I have, love the attempts at a second start freeze out

4) Felix: Build B1 Felix

5) wil: B G1 Wil

6) Felix: Trade B3 Y3 Felix
	wil: The question is always...do I put.an end to it by trading for a b3?  I think I can still catch up

7) wil: D G1 Wil Y3 Y3
	Felix: That's the question! Let's experiment, shall we? I'd be interested to know if there's a reliable way to defeat the strategy.
	Draw5PlayAll: Inform me.

8) Felix: Build B2 Felix
	wil: The b3 trade like you just did with yellow would get me there....but I think my heading to g2s may even freeze you out of Gs  unless you give up on a b freeze

9) wil: B G1 Y3
	Felix: Hmm, true. I have the option of gunning for a complete blue freez-out, but that gives you the opportunity to make most of the green, and even then, I think you could get to one of the blues before I manage to get them all... I guess the main benefit of my start is that it gives me earlier access to 2-pip ships

10) Felix: Discover B2 Felix B2 Range

11) wil: T G3 B3 Wil
	wil: Nixe

12) Felix: Build B2 Felix

13) wil: B B3 Wil

14) Felix: Sacrifice Y3 Felix
Move B2 Range Y3
Move B2 Y3 Wil
Catastrophe Wil Blue
Move B2 Felix Wil
	wil: No two games alike

15) wil: B G2 Wil
	Felix: Indeed. It's why I love this game! The game Hive by Gen42 games has a similar phenomenon.
	wil: Nice

16) Felix: Trade B2 R2 Wil

17) wil: B G2 Wil

18) Felix: Attack G2 Wil

19) wil: B G2 Wil

20) Felix: Sacrifice R2 Wil
Pass
Pass
Catastrophe Wil Green
	wil: Ending in silliness
	wil: Thx for the slaughter
	Felix: Silliness is fun. Thanks for allowing me to finally win with that odd blue opening!
	wil: Letting you?!?!!   
	Draw5PlayAll: I am just now trying it against ts52. I wonder what happens if the opponent picks a G1 or Y1 and you do a similar trick? (G1 = homeworld B2 G1 G3; Y1 = G2 Y1 Y3.)

I think the green one would be more successful and yellow less, since they started with a yellow star anyway.
	Felix: @wil Trying to be gracious here ;)

@draw5 Both of those would be less effective. The green is less effective because most opponents open with a green ship, so they will have access to green anyway and it doesn't really provide an advantage. The yellow version would be far too slow because you don't have any blue in your system so trading would be a pain.
	wil: I've done the no blue...having to go out to a blue star to create... But this is always a nice balance.... The second player can take these risks some times.
	Draw5PlayAll: @Felix No, I was meaning what if they choose, e.g. G1B2 stars and Y3 ship. Or similarly Y1B2 stars and G3 ship.



32017)
Variants: "Unrated, Hard time"
Started: 2017.5.12, Ended: 2017.5.15
Participants: dlwillson (S), wil (N)
Winner: dlwillson

1) wil: H B1 R2 G3

2) dlwillson: H Y3 B2 G3

3) wil: B G1 Wil
	dlwillson: Hi Wil! Good to play Homeworlds with you, again!

4) dlwillson: Build G1 Dlwillson

5) wil: T G1 B1 Wil

6) dlwillson: Trade G1 B1 Dlwillson

7) wil: B B2 Wil

8) dlwillson: Build B2 Dlwillson

9) wil: T B1 Y1 Wil

10) dlwillson: D B1 Dlwillson G1 Forest

11) wil: B Y1 Wil

12) dlwillson: B G1 Dlwillson

13) wil: B Y1 Wil

14) dlwillson: Sacrifice G3 Dlwillson
B B1 Forest
B B3 Forest
B B3 Dlwillson

15) wil: Build B3 Wil

16) dlwillson: T B3 Y3 Forest
	wil: lol....missed a bunch of opportunity there I did...wow

17) wil: T B3 G3 Wil
	dlwillson: We're you going for blue control or yellow control?
	dlwillson: *Were

18) dlwillson: B B3 Forest
	wil: Going foR?  I still just mostly take advantage of opportunity
	wil: Going foR?  I still just mostly take advantage of opportunity

19) wil: Discover B2 Wil G3 G3

20) dlwillson: T B1 R1 Forest

21) wil: T Y1 R1 Wil

22) dlwillson: B R1 Forest

23) wil: B R2 Wil

24) dlwillson: S Y3 Forest
D R1 Forest Y3 Golden
M B3 Forest Golden
M R1 Golden Wil
C Wil R

25) wil: T Y1 B1 Wil

26) dlwillson: T B3 Y3 Dlwillson

27) wil: M B1 Wil Dlwillson

28) dlwillson: S Y3 Dlwillson
M B2 Dlwillson Wil
M B1 Forest Golden
M B3 Golden Wil

29) wil: S G3 Wil
B B3 Dlwillson
B B3 Dlwillson
P
C Dlwillson B

30) dlwillson: M B1 Golden Wil
C Wil B
	wil: There it doesn't look like a slaughter...but wish in saw that earliee
	dlwillson: Good game, Wil!
	dlwillson: Not much left of the board, is there?
	wil: I think as rougue survivors of both worlds my barbarians have an advantage...we have more people and can adapt... You won WWV but how will you survive?
	dlwillson: :-)

Would you like to play again? If so, I'll pick up your challenge again.
	wil: Shore....anytime!!



32162)
Started: 2017.5.12, Ended: 2017.6.1
Participants: Draw5PlayAll (S), ts52 (N)
Winner: Draw5PlayAll

1) ts52: Homeworld B1 Y3 G3

2) Draw5PlayAll: Homeworld B1 G3 B3 *
	Draw5PlayAll: I am so going to do it.

3) ts52: Build G1 Ts52
	ts52: Oh boy, here we go!

4) Draw5PlayAll: Build B1 Draw5playall

5) ts52: Discover G1 Ts52 B2 Gonzo

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) ts52: Build G1 Ts52

8) Draw5PlayAll: Build B2 Draw5playall

9) ts52: Build G1 Ts52

10) Draw5PlayAll: Move B2 Draw5playall Gonzo

11) ts52: Trade G1 Y1 Gonzo

12) Draw5PlayAll: Build B2 Draw5playall

13) ts52: Discover G1 Ts52 Y2 Bigbird

14) Draw5PlayAll: Discover B2 Draw5playall G2 G2

15) ts52: Build G1 Bigbird

16) Draw5PlayAll: Build B3 G2

17) ts52: Build G2 Ts52

18) Draw5PlayAll: Trade B3 R3 G2

19) ts52: Trade G3 R3 Ts52

20) Draw5PlayAll: Build B3 G2

21) ts52: Trade G2 R2 Ts52

22) Draw5PlayAll: Build R1 G2

23) ts52: Build G2 Ts52

24) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move R1 G2 Ts52
Move R3 G2 Ts52
Catastrophe Ts52 Red
Move B3 G2 Ts52

25) ts52: Move G1 Bigbird Draw5playall

26) Draw5PlayAll: Trade B2 R2 Gonzo

27) ts52: Move Y1 Gonzo Ts52
	ts52: Yeah, that about does it. Maybe I should play more 'small universe' games.

28) Draw5PlayAll: Sacrifice R2 Gonzo
Attack G2 Ts52
Attack Y1 Ts52

29) ts52: Trade G1 R1 Draw5playall
	Draw5PlayAll: I think this is the correct way.
	Draw5PlayAll: This is actually not trivial. I have to play accurately or else you strike first.
	ts52: Indeed.

30) Draw5PlayAll: Sacrifice B2 G2
Trade Y1 G1 Ts52
Trade B3 G3 Ts52
Catastrophe Ts52 Green
	ts52: I don't think I had a way out of it, but just realized that move hands it to you. Well played.
	Draw5PlayAll: I am surprised my rating is nearly 1800! Good game.



32176)
Variants: "Hard time"
Started: 2017.5.14, Ended: 2017.6.4
Participants: MagicJohn (S), Subhan64 (N)
Winner: MagicJohn

1) Subhan64: Homeworld B1 Y2 G3

2) MagicJohn: Homeworld Y2 B1 G3

3) Subhan64: Build G1 Subhan64
	MagicJohn: Should make for a wide-open game......
	MagicJohn: Should make for a wide-open game......
	MagicJohn: Should make for a wide-open game......
	Draw5PlayAll: Should make for an epic fight over blue and possibly yellow...

4) MagicJohn: Build G1 Magicjohn

5) Subhan64: Trade G1 B1 Subhan64

6) MagicJohn: Trade G1 Y1 Magicjohn

7) Subhan64: Build G1 Subhan64

8) MagicJohn: Build G1 Magicjohn

	MagicJohn: ?????


32192)
Variants: "Unrated, Hard time"
Started: 2017.5.16, Ended: 2017.5.25
Participants: Felix (S), dlwillson (N)
Winner: Felix

1) dlwillson: H B3 Y1 G3

2) Felix: Homeworld B1 R2 G3

3) dlwillson: B G1 Dlwillson
	Felix: Good luck and have fun :)

4) Felix: Build G1 Felix
	dlwillson: You too! It's good to play Homeworlds with you again.
	Felix: Likewise! You've always been an enjoyable (and challenging) opponent

5) dlwillson: Trade G1 B1 Dlwillson

6) Felix: Trade G1 B1 Felix

7) dlwillson: B B2 Dlwillson

8) Felix: Build B2 Felix

9) dlwillson: D B1 Dlwillson Y2 Golden

10) Felix: Trade B1 Y1 Felix

11) dlwillson: Build B1 Dlwillson

12) Felix: Build Y1 Felix

13) dlwillson: Discover B1 Dlwillson G2 Forest

14) Felix: Discover Y1 Felix B3 Lapiz

15) dlwillson: Build G1 Dlwillson
	dlwillson: Excellent move! I'll have to think.
Fastest SDG Homeworlds game, ever! :-)

16) Felix: Sacrifice G3 Felix
Build Y2 Lapiz
Build Y2 Felix
Build Y3 Felix

17) dlwillson: Build B2 Dlwillson
	Felix: Thanks! Then of course I took a long time to try to think of another excellent move :P This might be a bad idea...

18) Felix: Discover B2 Felix G3 Nicetry
	dlwillson: Let's see what you do if I dare you...

19) dlwillson: T B2 R2 Dlwillson
	Felix: I'm sorely tempted! But I think you would just move your G3 into my system immediately after and use my red star to overcome my ships before I could replace my Y3 with another large...

20) Felix: Trade Y3 G3 Felix
	dlwillson: That's just exactly what I would've done!

21) dlwillson: Sacrifice G3 Dlwillson
Build B2 Forest
Build B3 Golden
Build G1 Dlwillson

22) Felix: Trade Y2 R2 Lapiz

23) dlwillson: Trade B2 Y2 Forest

24) Felix: Move Y2 Felix Nicetry

25) dlwillson: Build Y3 Forest
	Felix: I just want all those nice pretty Y3s so badly...

26) Felix: Sacrifice G3 Felix
Build Y3 Felix
Build Y3 Lapiz
Build B2 Nicetry

27) dlwillson: Sacrifice Y2 Forest
Move Y3 Forest Dlwillson
Move B3 Golden Nicetry
	dlwillson: one for me and two for you and that, I think, will have to do

28) Felix: Sacrifice Y2 Nicetry
Move B2 Nicetry Golden
Move B2 Nicetry Forest
	Felix: That will do I suppose!

29) dlwillson: M B1 Golden Nicetry

30) Felix: Move B2 Golden Dlwillson
	Felix: Scatter! Scatter!

31) dlwillson: S B2 Dlwillson
T Y3 R3 Dlwillson
T B3 Y3 Nicetry

32) Felix: Sacrifice B2 Dlwillson
Trade Y3 G3 Felix
Trade Y1 R1 Lapiz

33) dlwillson: Build B2 Nicetry

34) Felix: Move R2 Lapiz Forest
	Felix: Great move! I knew that attack was doomed to fail.

35) dlwillson: D B1 Nicetry G2 Field
	dlwillson: Good game so far! Fun and fast!
	dlwillson: That was a really good attack. It cost me a lot to escape.

36) Felix: Attack B1 Forest
	Felix: Thank you. I do like to keep the pressure on whenever possible, because I have found that if I let it become a resource management game (that is, a game dominated mostly by fleet building and denying pieces to the opponent), I usually lose. My hope is that pressuring the opponent to make rash decisions (or even better, choose between 2 potential threats) and hopefully make a mistake :)
	Felix: This has definitely been a fun one!
	Draw5PlayAll: "My hope is that pressuring the opponent to make rash decisions... and hopefully make a mistake" is awkwardly written.

37) dlwillson: Build B2 Nicetry
	Felix: "My hope is that pressuring the opponent to make rash decisions will cause him or her to make a mistake."
	Felix: "My hope is that pressuring the opponent to make rash decisions will cause him or her to make a mistake."

38) Felix: Trade B1 R1 Forest

39) dlwillson: Move Y3 Nicetry Forest
	dlwillson: Homeworlds and Creative Writing. Awesome. :-)

40) Felix: Sacrifice Y3 Lapiz
Move R2 Forest Dlwillson
Move R1 Forest Dlwillson
Move B2 Forest Dlwillson
Catastrophe Dlwillson Red

41) dlwillson: Build B1 Nicetry

42) Felix: Sacrifice G3 Felix
Build B3 Dlwillson
Build Y1 Felix
Build Y2 Felix

43) dlwillson: S Y3 Forest
M B2 Nicetry Field
M B1 Field Dlwillson
C Dlwillson B
M B2 Field Dlwillson
	dlwillson: I think you're one short of a win, but I guess we'll see.

44) Felix: Trade Y2 G2 Felix
	Felix: I think you're right, but it will be fun either way :)

	Felix: Hold on, I just thought of something. Let me make sure I want to do that :P

45) dlwillson: B B1 Dlwillson
	Felix: Heck, let's try something even more fun...

46) Felix: Build Y2 Felix
	dlwillson: I may have been mistaken. :-)

47) dlwillson: Trade G1 R1 Dlwillson

48) Felix: Move Y1 Felix Lapiz
	Felix: That's not at all what I expected (and secretly hoped) you'd do! And sorry to keep undoing. That time I typed in the wrong color!
	Felix: And nice use of the catastrophe during the turn instead of at the end. I'm so glad they opened up that feature, since it adds so much strategic depth. I often secretly hope that my opponent doesn't realize it's an option ;)

49) dlwillson: B B2 Dlwillson

50) Felix: Discover Y1 Felix B3 Soak

51) dlwillson: B B3 Nicetry
	dlwillson: There's another thing that's a surprise. Home systems can be completely abandoned mid-turn without returning to the bank. You still have to be back by the end of the turn, though.
	dlwillson: I didn't do that this game, obviously. I did it in another game.

52) Felix: Build G1 Felix
	dlwillson: Sorry about that. I suddenly realized I'd put myself in checkmate.
	Felix: Oh, interesting! I knew that was possible in the real game rules, but I didn't know it was implemented on here. I haven't had a situation yet where that's necessary, but I can see how it could be in a pinch. Thanks for the tip ;)
	Felix: And I honestly never have a problem with undoing if you catch yourself and want to change it before I make my next move 
	Felix: Although in this case I would have preferred you to make the mistake :P

53) dlwillson: T B3 Y3 Nicetry

54) Felix: Sacrifice Y2 Felix
Move Y1 Soak Dlwillson
Move Y1 Lapiz Dlwillson

55) dlwillson: M Y3 Nicetry Felix
	dlwillson: It seems like a bug to me. Where do you see it in the real rules?
	Felix: There's a line about it in the Andy Looney rules and also in the version on John Cooper's website.

Looney rules: " It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over."

Cooper rules: "You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of your turn."

56) Felix: Sacrifice G1 Felix
Build Y2 Dlwillson
Catastrophe Dlwillson Yellow
	dlwillson: Huh. I've seen that rule, but I just now realized that I've been assuming that someone else needs to have a ship in the system to hold it down.

	Felix: Thank you! I was scared you'd notice the threat and trade for an R2 during one of the last few turns. That was a very fun and interesting game, especially when we both had zero large ships. I look forward to the next!
	dlwillson: Meanwhile I was scared you'd get a blue and go bowling.
	Felix: There were several ways I could have kept you on the wrong footing, I suppose. As ill conceived as my earlier attack was, it all worked out in the end :) I honestly hadn't planned beyond the initial attack.


32171)
Started: 2017.5.16, Ended: 2017.6.21
Participants: ts52 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 R3 G3

2) ts52: Homeworld B2 Y3 G3
	Felix: Here we go again. Good luck!
	ts52: Excellent! Good luck to you too!

3) Felix: Build G1 Felix
	Felix: Thanks, I'll need it. You've been playing very well lately!

4) ts52: Build G1 Ts52

5) Felix: Trade G1 B1 Felix

6) ts52: Trade G1 B1 Ts52

7) Felix: Build B2 Felix

8) ts52: Discover B1 Ts52 G1 Kermit

9) Felix: Trade B1 Y1 Felix

10) ts52: Build B1 Kermit

11) Felix: D B2 Felix G2 Grassland

12) ts52: Build G1 Ts52

13) Felix: Build Y1 Felix

14) ts52: Trade B1 Y1 Kermit

15) Felix: Move Y1 Felix Grassland

16) ts52: Build Y2 Kermit

17) Felix: Build Y2 Grassland

18) ts52: Build B1 Kermit

19) Felix: Move Y1 Grassland Kermit

20) ts52: Trade Y1 R1 Kermit

21) Felix: Sacrifice G3 Felix
Build Y1 Kermit
Build Y2 Grassland
Build Y3 Felix

22) ts52: Discover Y2 Kermit G2 Robin

23) Felix: Build Y3 Grassland

24) ts52: Attack Y1 Kermit

25) Felix: Trade Y2 R2 Grassland

26) ts52: Build Y2 Kermit

27) Felix: Move Y2 Grassland Kermit
Catastrophe Kermit Yellow

28) ts52: Trade B1 Y1 Kermit

29) Felix: Trade Y3 G3 Felix

30) ts52: Build B1 Kermit

31) Felix: Build B2 Grassland

32) ts52: Move B1 Kermit Robin

33) Felix: Move B2 Grassland Kermit

34) ts52: Build B3 Kermit

35) Felix: Build B3 Kermit
Catastrophe Kermit Blue

36) ts52: Build B1 Robin

37) Felix: Move B2 Grassland Kermit

38) ts52: Move R1 Kermit Ts52

39) Felix: Build B2 Kermit

40) ts52: Move B1 Robin Kermit

41) Felix: Trade B2 R2 Kermit

42) ts52: Build B2 Kermit

43) Felix: Build B3 Kermit
Catastrophe Kermit Blue

44) ts52: Build R1 Ts52

45) Felix: A Y1 Kermit

46) ts52: Discover R1 Ts52 B1 Gonzo

47) Felix: B Y1 Kermit

48) ts52: Build B2 Robin

49) Felix: Sacrifice G3 Felix
Build Y2 Grassland
Build Y2 Grassland
Build Y3 Felix

50) ts52: Build B2 Robin

51) Felix: Move Y3 Grassland Gonzo

52) ts52: Trade B2 R2 Robin

53) Felix: Move Y3 Gonzo Robin

54) ts52: Build B2 Robin

55) Felix: Sacrifice R2 Grassland
Attack R2 Robin
Attack Y2 Robin

56) ts52: Sacrifice R1 Gonzo
Attack R2 Robin

57) Felix: Sacrifice R2 Kermit
Attack R2 Robin
Attack B2 Robin

58) ts52: Sacrifice R1 Ts52
Attack R2 Robin

59) Felix: Trade Y3 R3 Robin

60) ts52: Build R1 Robin
	Felix: That was an interesting little back-and-forth... I hope this works out.

61) Felix: S R3 Robin
A R2 Robin
A R1 Robin
A B2 Robin

62) ts52: Build B1 Robin
Catastrophe Robin Blue
	ts52: Yeah, this isn't going to end well for me.

63) Felix: B Y3 Kermit

64) ts52: Trade G1 R1 Ts52
	Felix: Yeah... I dare say you're in a bit of trouble now. It has been a few games since i've managed to get a leg up on you, so I'll take it!
	Felix: Yeah... I dare say you're in a bit of trouble now. It has been a few games since i've managed to get a leg up on you, so I'll take it!

65) Felix: T Y3 G3 Felix
	ts52: Well played. We can play it out if you like, or I can resign and we can start another.

66) ts52: Build G1 Ts52
	Felix:  It's totally up to you. I'm fine either way. I've been known to make some silly mistakes when I have the upper hand, but there is an air of inevitability about this one, I think. I'd love to rematch!

67) Felix: Build Y3 Robin
	ts52: Yeah, I don't think it'll take you too long to wipe me out, but maybe you'll make a mistake. ;)

68) ts52: Build R1 Ts52

69) Felix: Discover Y3 Robin B1 Waterworld

70) ts52: Build R2 Ts52

71) Felix: Sacrifice Y3 Waterworld
Move R1 Robin Kermit
Move R1 Kermit Ts52
Catastrophe Ts52 Red
Move Y3 Kermit Ts52

72) ts52: Trade G3 R3 Ts52

73) Felix: S R2 Robin
A G1 Ts52
A R3 Ts52
	ts52: Congrats. Good game.
	Felix: Thank you. You too!



32169)
Variants: "Unrated, Hard time"
Started: 2017.5.16, Ended: 2017.5.28
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 R3 G3

2) wil: H G2 B1 B3 *
	Felix: Here we go! I'll give you the opportunity to open with a blue rush, should you wish to do so. I'm curious what options are open for defending against it.
	wil: I'll play, I like this.  
	wil: Frankly I think the issue is when do you turn your g3 to blue...
	wil: Frankly I think the issue is when do you turn your g3 to blue...
	wil: Frankly I think the issue is when do you turn your g3 to blue...

3) Felix: Build G1 Felix

4) wil: B B1 Wil
	Felix: Right.... I think some experimentation is in order. It probably would have been smarter for me to use a y3 instead of an r3, so I can diversify more quickly.

5) Felix: Trade G3 B3 Felix

6) wil: T B3 Y3 Wil
	Felix: Oh why not?

7) Felix: Build B2 Felix
	wil: Could be this is Ynot?

8) wil: B B2 Wil

9) Felix: Trade B3 Y3 Felix

10) wil: T B1 R1 Wil
	Felix: Y, don't mind if I do

11) Felix: Build G1 Felix

	Felix: So, I'm not sure you benefited much from that opening this time around. I think trading for that B3 on the second turn might be the best way to counteract that blue rush attack.
	Draw5PlayAll: Then P2 sacs the Y3 and throws a B1 at the homeworld.
	wil: D5pà...  You are peanutting....  Members of the peanut gallery are allowed to watch and discuss.things amongst themselves but not make comments which can affect the outcome of a game.
	Felix: Rats!
	Draw5PlayAll: Uh oh, I think he hibernated again.
	wil: Went camping....acting like a kid...back n recovering...
	wil: Another day


32197)
Variants: "Unrated, Hard time"
Started: 2017.5.16, Ended: 2017.5.27
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Pass
	dlwillson: Hi Wil! I feel like I should take a small handicap. What do you think?

2) wil: H Y2 B1 G3
	wil: I like getting wooped!  You play how you wish to make it interesting for you... No worries either way here.  

3) dlwillson: Homeworld R3 B2 G3

4) wil: B G1 Wil
	dlwillson: I like to win some and lose some. I'll look at our game history and see if you've beaten me recently. If you have, I won't take a handicap. If you haven't, I'll skip a turn or two.
	dlwillson: You have! In fact, you beat me three times in a row, and it looks like you have beaten me more than I've beaten you. No handicap needed here. Game on! :-)
	wil: Now I want one! 

5) dlwillson: Build G1 Dlwillson
	dlwillson: If I win two more back-to-back, maybe. :-)

6) wil: Trade G1 B1 Wil

7) dlwillson: T G1 B1 Dlwillson

8) wil: Build B2 Wil

9) dlwillson: B B2 Dlwillson

10) wil: Discover B2 Wil Y3 Y3

11) dlwillson: T B2 Y2 Dlwillson

12) wil: B G1 Wil

13) dlwillson: D B1 Dlwillson G1 Forest

14) wil: D B1 Wil Y3 Why3

15) dlwillson: Build Y1 Dlwillson

16) wil: Trade G1 R1 Wil

17) dlwillson: Build B2 Forest

18) wil: Build R1 Wil

19) dlwillson: S Y1 Dlwillson
D B1 Forest G3 Field

	dlwillson: Bummer!
	wil: My bad..left n went camping...


31952)
Variants: "Hard time"
Started: 2017.5.18, Ended: 2017.5.21
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3



31969)
Started: 2017.5.19, Ended: 2017.5.19
Participants: Felix (S), icalvinist (N)
Winner: Felix



32230)
Variants: "Hard time"
Started: 2017.5.22, Ended: 2017.5.25
Participants: Felix (S), wil (N)
Winner: Felix



32245)
Started: 2017.5.25, Ended: 2017.6.1
Participants: Felix (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Felix: Homeworld B1 Y3 G3

3) Draw5PlayAll: Build G1 Draw5playall
	Felix: Good luck and have fun!

4) Felix: Build G1 Felix
	Draw5PlayAll: I sense this will be a race for one economy and you then sac your G3 to overwhelm me.
	Felix: Hmm, what makes you think that? Based on our homeworlds, we might be focusing on different economies.

5) Draw5PlayAll: Trade G1 B1 Draw5playall

6) Felix: Trade G1 B1 Felix

7) Draw5PlayAll: Build B2 Draw5playall

8) Felix: Discover B1 Felix G2 Out
	Draw5PlayAll: However, we both have 1-3...

9) Draw5PlayAll: Trade B2 Y2 Draw5playall

10) Felix: B B2 Out

11) Draw5PlayAll: Build Y1 Draw5playall

12) Felix: Trade B2 Y2 Out

13) Draw5PlayAll: Discover B1 Draw5playall G2 G2

14) Felix: Build B2 Out

15) Draw5PlayAll: Build B2 G2

16) Felix: T B2 R2 Out

17) Draw5PlayAll: Trade B2 R2 G2

18) Felix: Build G1 Felix

19) Draw5PlayAll: Build G1 Draw5playall

20) Felix: Build B2 Out

21) Draw5PlayAll: Build B2 G2

22) Felix: Trade B2 Y2 Out

23) Draw5PlayAll: Build R1 G2

24) Felix: Build B2 Out

25) Draw5PlayAll: Trade R1 Y1 G2

26) Felix: Trade B2 G2 Out

27) Draw5PlayAll: Discover G1 Draw5playall B2 B2

28) Felix: Build B2 Out

29) Draw5PlayAll: Build G1 Draw5playall

30) Felix: Move G2 Out Draw5playall

31) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 B2
Build R1 G2

32) Felix: Sacrifice G1 Felix
Build G1 Draw5playall
Catastrophe Draw5playall Green

33) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move G3 B2 Draw5playall
	Draw5PlayAll: I figured I might want the extra red.

34) Felix: Discover B1 Out B3 Rumpus_room
	Felix: Might come in handy :)
	Draw5PlayAll: Oh, how I so want to attack you...

35) Draw5PlayAll: Trade B1 Y1 G2
	Felix: I thought you might. I had to think it through very carefully to make sure that was a relatively safe move...

36) Felix: T B1 G1 Rumpus_room

37) Draw5PlayAll: Move Y1 G2 Rumpus_room

38) Felix: S Y2 Out
M G1 Rumpus_room Out
D G1 Out Y3 Cheese

39) Draw5PlayAll: Build B1 G2

40) Felix: Build G1 Felix

41) Draw5PlayAll: Build G2 B2

42) Felix: Build G3 Cheese

43) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move G1 B2 Felix
Move G2 B2 Felix
Catastrophe Felix Green

	Draw5PlayAll: Good game. I never expected that you would actually fall for the trap... I thought you would trade for an R1 (which makes my intent, getting the G3, impossible for the moment).

I would have been terrified if I had that bluebird homeworld for so long. 
	Felix: Well done. I definitely overlooked that. Rookie mistake! One of the drawbacks of these longer turn-based games vs real-time games is the ease of overlooking threats when coming back for a new turn.


32246)
Variants: "Unrated"
Started: 2017.5.25, Ended: 2017.6.3
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H R3 B2 G3

2) Felix: Homeworld R2 B3 G3

3) dlwillson: B G1 Dlwillson
	Felix: Let's make this interesting :)
	Draw5PlayAll: R3B2G3 would have been more interesting.

4) Felix: Build G1 Felix
	Felix: @Draw5 That's a subjective statement, I dare say.

5) dlwillson: Trade G1 Y1 Dlwillson

6) Felix: Trade G1 Y1 Felix

7) dlwillson: B G1 Dlwillson

8) Felix: B G1 Felix

9) dlwillson: D G1 Dlwillson Y1 Sol

10) Felix: Build Y2 Felix

11) dlwillson: B G1 Sol

12) Felix: Move G1 Felix Sol

13) dlwillson: B G2 Dlwillson

14) Felix: B G2 Felix

15) dlwillson: M G1 Sol Felix

16) Felix: Sacrifice G2 Felix
Build G2 Sol
Build Y2 Felix

17) dlwillson: S G3 Dlwillson
B G2 Sol
B G3 Felix
B G3 Dlwillson
C Sol G

18) Felix: Build G1 Felix
Catastrophe Felix Green

19) dlwillson: B Y1 Dlwillson
	Felix: Dang it, nice one :)
	dlwillson: I think you responded wrong. I think you should've attack my big green, forcing me to do the cat, so you'd have the lead.
	dlwillson: And thank you, I was pretty proud of the assault. :-)
	dlwillson: Hmm... Maybe not. If I do the cat, I might get an extra ship out of it.

20) Felix: T Y2 G2 Felix
	Felix: Either way, I think you would have an edge, but I'd rather be in control of what happens ;)

21) dlwillson: B Y2 Dlwillson

22) Felix: Build G1 Felix

23) dlwillson: D Y1 Dlwillson B1 Sky

24) Felix: Discover Y1 Felix B1 Oriole

25) dlwillson: M Y2 Dlwillson Oriole

26) Felix: Sacrifice G2 Felix
Build Y2 Oriole
Build Y3 Felix

27) dlwillson: S G2 Dlwillson
B Y3 Oriole
B Y3 Sky
C Oriole Y

28) Felix: Build G1 Felix

29) dlwillson: Sacrifice Y3 Sky
Move Y1 Dlwillson Sky
Move Y1 Sky Felix
Move Y1 Sky Felix
Catastrophe Felix Y

30) Felix: Trade G1 Y1 Felix
	Felix: .... Oh.

31) dlwillson: Build G1 Dlwillson

32) Felix: Build G1 Felix
	Draw5PlayAll: This has been a weird game. No real developments and Felix is without a large for the second time with no other star systems.

33) dlwillson: B G2 Dlwillson
	Felix: I have nothing but hobbits.

34) Felix: Build G2 Felix

35) dlwillson: T G3 Y3 Dlwillson

36) Felix: Discover G1 Felix B1 Hope

37) dlwillson: B Y1 Dlwillson

38) Felix: Discover G1 Felix B1 Saveme

39) dlwillson: Move Y3 Dlwillson Saveme

40) Felix: Build G2 Hope
	dlwillson: Don't worry buddy! I'll save you!

41) dlwillson: Sacrifice G2 Dlwillson
Build Y1 Saveme
Build Y2 Dlwillson

42) Felix: Build G2 Saveme

43) dlwillson: Build G3 Dlwillson
	Felix: I don't want YOUR help! Sending distress signals across the
 cosmos...

44) Felix: Build G3 Felix
	dlwillson: LOL! But ... but, I'm right *here*! I can help you!

45) dlwillson: Trade Y3 R3 Saveme
	Felix: Like the last time you "helped" me with your happy yellow ships? No thanks ;)

46) Felix: Sacrifice G2 Hope
Build G2 Saveme
Build G3 Hope
	dlwillson: I think my last turn may have been a mistake. I think I shoulda swapped to red a turn or two ago... This game is hard.

47) dlwillson: Attack G2 Saveme

48) Felix: Trade G3 R3 Hope

49) dlwillson: Trade G2 R2 Saveme
	Felix: Definitely tricky! I thought for sure I was a goner a while back. I think you also failed to capitalize on an opportunity to move your large into my homeworld before I could get one. But yeah, trading for a red sooner would have expedited that attack...

50) Felix: Sacrifice G3 Felix
Build G2 Saveme
Build G3 Hope
Build G3 Felix
	dlwillson: I didn't move in, because you always had the ability to stop me with a catastrophe. It would have been expensive to you, so I suppose I should have, anyway.

51) dlwillson: Move G1 Dlwillson Saveme
Catastrophe Saveme G
	Felix: It was a tricky situation, and I'd say I got very lucky!

52) Felix: Trade G3 Y3 Hope

53) dlwillson: Build G1 Dlwillson

54) Felix: Build Y2 Hope

55) dlwillson: Sacrifice Y2 Dlwillson
Move R2 Saveme Dlwillson
Move G1 Dlwillson Saveme

56) Felix: Build R1 Hope

57) dlwillson: B G1 Saveme

58) Felix: S G3 Felix
B G2 Hope
B G2 Hope
B G3 Felix

59) dlwillson: M G1 Saveme Felix

60) Felix: Trade G2 R2 Felix

61) dlwillson: B G2 Felix

62) Felix: Sacrifice Y3 Hope
Move G1 Hope Dlwillson
Move G2 Hope Dlwillson
Move G2 Hope Dlwillson
Catastrophe Dlwillson Green

63) dlwillson: B G1 Felix
C Felix G

64) Felix: Trade Y1 G1 Felix

65) dlwillson: Trade R3 B3 Saveme
	Felix: This is an interesting stand off...

66) Felix: Move R3 Hope Felix
	dlwillson: I was debating between that and building an r1.
	dlwillson: I'm still not sure which is the better move. If this were a ladder match, I'd have set up the plastic and played out the various moves.
	Felix: Yeah, I usually play while I'm at work, so I don't have the chance to break out the plastic! I do a lot of mental gymnastics though. Sometimes I write it out on paper to try to visualize it!

67) dlwillson: B B1 Saveme
	dlwillson: You should do what SilentTitan, my brother-in-law, does; take your 'mids to work and teach everyone Homeworlds. :-)

68) Felix: Trade R3 Y3 Felix

69) dlwillson: M B3 Saveme Dlwillson
	Felix: I could! And interesting... I didn't know you and SilentTitan were related. He's an excellent player as well. Which one of you got the other one into Pyramids?
	dlwillson: I started it. Many years ago, I saw Brian Trotter playing WW5 and fell in love with the pyramids, though not with WW5.

70) Felix: Move R2 Felix Saveme

71) dlwillson: Sacrifice Y1 Saveme
Move B1 Saveme Dlwillson
	Felix: Yeah, I'm not such a fan of WW5 either. I was introduced via martian chess, which is a pretty decent game, but nothing like Homeworlds.

72) Felix: Attack G1 Saveme

73) dlwillson: D R2 Dlwillson Y1 Golden

74) Felix: Build Y1 Felix

75) dlwillson: T B3 G3 Dlwillson

76) Felix: Build G1 Saveme

77) dlwillson: B Y2 Dlwillson

78) Felix: Trade Y3 G3 Felix

79) dlwillson: Build B2 Dlwillson

80) Felix: Sacrifice G3 Felix
Build Y2 Hope
Build Y3 Felix
Build G2 Saveme

81) dlwillson: M B2 Dlwillson Golden

82) Felix: Trade G2 B2 Saveme

83) dlwillson: D Y1 Dlwillson R1 Mars

84) Felix: Move Y1 Felix Saveme

85) dlwillson: Sacrifice G3 Dlwillson
Build Y3 Dlwillson
Build Y3 Mars
Build B3 Golden

86) Felix: S Y3 Felix
M Y2 Hope Dlwillson
M Y1 Saveme Dlwillson
M B2 Saveme Dlwillson
C Dlwillson Yellow

87) dlwillson: M Y3 Mars Dlwillson

88) Felix: Sacrifice G1 Saveme
Build B3 Dlwillson

89) dlwillson: M B3 Golden Felix
C Dlwillson B
	Felix: That's about what I figured. Worth a shot though!

90) Felix: Sacrifice Y2 Hope
Move R1 Hope Dlwillson
Move R2 Saveme Dlwillson
	dlwillson: I gotta admit; I'm surprised. I thought you had me.

91) dlwillson: A G1 Felix
	Felix: And I thought you had me quite a while back. It was a foolish attack, to be honest, and left me wide open. I could have played the safe game, but sometimes that's just no fun :P
	dlwillson: Another very fun game. Thanks Felix.



32161)
Variants: "Unrated"
Started: 2017.5.25, Ended: 2017.8.8
Participants: kato830 (S), wil (N)
Winner: wil

1) wil: H B2 Y3 G3

2) kato830: Homeworld G3 B1 Y3
	wil: Good luck

3) wil: B G1 Wil
	kato830: Good luck! This is my first game and I'm excited to play!

	wil: Read the rules?  Have arcade?  This is a tricky one.

4) kato830: Build Y1 Kato830
	kato830: Yes, I've read the rules. I've been meaning to play it for the past couple of years but haven't convinced my friends to play it. I don't have arcade but I have accumulated more pyramids than I need for any game.

5) wil: T G1 B1 Wil

6) kato830: Discover Y1 Kato830 G2 Pangea

7) wil: B B1 Wil

8) kato830: Build Y1 Kato830
	wil: So the beginning is often follow the leader... You don't want anyone to freeze you out of any commodity... And ya just gave me blue...sort of.  

	wil: So the beginning is often follow the leader... You don't want anyone to freeze you out of any commodity... And ya just gave me blue...sort of.  

	wil: So the beginning is often follow the leader... You don't want anyone to freeze you out of any commodity... And ya just gave me blue...sort of.  

	kato830: I was under the impression that you shouldn't take the last of the smallest size. So now I can start grabbing the g2's. But i see what you're saying. I think. 
	kato830: I meant b2's
	kato830: Oh I mis-remembered the rules. I see. 

9) wil: D B1 Wil G1 G1
	wil: Yes while taking the last of 1s or 2s gives the other access to the next rank..not getting in on a color is trouble..

10) kato830: Trade Y1 G1 Kato830

11) wil: B B2 Wil

12) kato830: Trade Y3 B3 Kato830

13) wil: T B2 Y2 Wil

14) kato830: Build B2 Kato830
	wil: My counter is to mitigate that not allowing you to grow

15) wil: S Y2 Wil
M B1 G1 Pangea
M B1 Pangea Kato830
C Kato830 B

16) kato830: Build Y1 Pangea

17) wil: Discover B1 Wil Y1 Y1

18) kato830: Move Y1 Pangea Kato830

19) wil: B G1 Wil

20) kato830: Build Y2 Kato830

21) wil: M G1 Wil Y1

22) kato830: Build Y2 Pangea

23) wil: Build G1 Wil

24) kato830: Move G1 Kato830 Pangea

25) wil: Build G2 Y1



32133)
Started: 2017.5.26, Ended: 2017.6.21
Participants: panglott (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) panglott: Homeworld G2 B1 Y3

3) Draw5PlayAll: Build G1 Draw5playall

4) panglott: Build Y1 Panglott

5) Draw5PlayAll: Build G1 Draw5playall

6) panglott: Build Y1 Panglott

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) panglott: Trade Y1 B1 Panglott

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) panglott: Build Y1 Panglott

11) Draw5PlayAll: Build Y2 Draw5playall

12) panglott: Discover Y1 Panglott B3 Macon

13) Draw5PlayAll: Discover B1 Draw5playall G2 G2

14) panglott: Build Y2 Panglott

15) Draw5PlayAll: Move Y1 Draw5playall G2

16) panglott: Move Y2 Panglott Macon

17) Draw5PlayAll: Build B2 G2

18) panglott: Trade Y1 G1 Macon

19) Draw5PlayAll: Build B2 G2

20) panglott: Build B2 Panglott

21) Draw5PlayAll: Trade B2 R2 G2

22) panglott: Trade Y3 R3 Panglott

23) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move B1 G2 Macon
Move B1 Macon Panglott
Catastrophe Panglott Blue

24) panglott: Sacrifice Y2 Macon
Move R3 Panglott Macon
Move R3 Macon G2

25) Draw5PlayAll: Build R1 G2

26) panglott: Attack R2 G2

27) Draw5PlayAll: Build R1 G2
Catastrophe G2 Red

28) panglott: Build Y1 Panglott

29) Draw5PlayAll: Build Y2 G2

30) panglott: Move Y1 Panglott Macon

31) Draw5PlayAll: Trade Y1 R1 G2

32) panglott: Build G1 Macon

33) Draw5PlayAll: Move Y2 G2 Macon

34) panglott: Build Y1 Panglott

35) Draw5PlayAll: Sacrifice R1 G2
Attack Y1S Macon

36) panglott: Trade G1 R1 Macon

37) Draw5PlayAll: Trade Y2 R2 Macon

38) panglott: Discover Y1 Panglott B3 London

39) Draw5PlayAll: Sacrifice R2 Macon
Attack G1 Macon
Attack R1 Macon

40) panglott: Trade Y1 G1 London

41) Draw5PlayAll: Move G1 Macon Panglott

42) panglott: Build G1 London

43) Draw5PlayAll: Build G2 Panglott

44) panglott: Build G3 London

45) Draw5PlayAll: Build G3 Panglott
Catastrophe Panglott Green
	panglott: Thanks for the game ;)
	Draw5PlayAll: Hey, you finally got a large.



32282)
Variants: "Hard time"
Started: 2017.5.31, Ended: 2017.6.14
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H Y3 B2 G3

2) Felix: Homeworld R1 B3 G3

3) wil: B G1 Wil

4) Felix: Build G1 Felix

5) wil: T G1 R1 Wil

6) Felix: Trade G1 R1 Felix

7) wil: B R2 Wil

8) Felix: Build R2 Felix

9) wil: B R2 Wil

10) Felix: T R1 Y1 Felix

11) wil: D R2 Wil Y1 Y1

12) Felix: Build Y1 Felix

13) wil: D R2 Y1 Y2 Y2

14) Felix: Move G3 Felix Y2

15) wil: D R2 Y2 Y3 Y3
	wil: Lol

16) Felix: Build G1 Y2

17) wil: T R2 Y2 Wil

18) Felix: M G3 Y2 Felix

19) wil: M R2 Y3 Y2

20) Felix: Move G1 Y2 Felix

21) wil: B R1 Wil

22) Felix: Discover Y1 Felix B2 B2

23) wil: D R1 Wil G1 G1

24) Felix: Discover R2 Felix B2 B2b

25) wil: B G1 Wil

26) Felix: Move G1 Felix B2b

27) wil: B G2 Wil

28) Felix: Build G2 Felix

29) wil: B Y1 Wil

30) Felix: Sacrifice G3 Felix
Build G2 Felix
Build G3 Felix
Build G3 B2b

31) wil: S G3 Wil
B G3 Wil
B R2 G1
B R3 Y2

32) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y3 B2
Build Y3 Felix

33) wil: M Y1 Wil G1
	wil: Nice
	wil: Nice

34) Felix: Sacrifice Y2 Felix
Move G1 B2b G1
Move G1 G1 Wil
	wil: Might be resigning soon

35) wil: S G2 Wil
B R3 Wil
B R3 G1
	Felix: Thanks! I didn't realize quite how good my last move was until after the fact.
	wil: Wanna finish your move?  
	wil: I don't feel right taking advantage of an sdg issue
	Draw5PlayAll: Then just call the catastrophe yourself.
	wil: Lol...we can play our own game...upto Felix...if he don't wanna replay it, I'll take the offering.  
	wil: Lol...we can play our own game...upto Felix...if he don't wanna replay it, I'll take the offering.  
	wil: Note, I opened this game to take s look since it looked like Felix had replied.  In general, when in a game I prefer discussing the game with my opponent, not the peanut gallery.  While I am not fully versed as to the proper decorum, it is my preference.

36) Felix: Sacrifice G2 Felix
Build G2 Wil
Build G2 B2b
Catastrophe Wil Green
	Felix: Oh, sorry for not seeing this. I tend to only come to the games when it's my turn so I usually don't see messages when it's not my turn. It was actually intentional to not call the catastrophe. All part of my plan... I think :) Is your move the one you actually want to make?
	Felix: And then he realized it wasn't a very good idea after all.

37) wil: T R1 G1 Wil
	Felix: I must have been thinking that waiting to do the catastrophe would give me a chance to grab that G3, but that was a really stupid idea hahaha. Big mistake. You're welcome for the offering! Take it with my best wishes.
	Draw5PlayAll: Question mark?

Also, I like how you guys are using my naming conventions now.
	Felix: You didn't invent the convention, Draw5. Wil's been using it since before you were a gleam in the SDG registration page's eye.
	wil: Sure...although I'd like to know why you wouldn't want to catastrophe!   (I have no issues losing games, look at my record, I like playing and leaning and experimenting)

38) Felix: Trade G2 Y2 B2b
	wil: Lol, yes d5 I was given some grief when I started... It stemmed from attempting to play blind...most didn't like it.  Folks that imitated I would start naming g3 systems y2...then they quit complaining... But welcome to the cult young padwan
	Felix: My hope was that you would do something OTHER than sacrificing your G2, so that on my next turn I could build the last g3 and THEN do the catastrophe. In retrospect, it was an awful idea that would never have worked. Whoops!

39) wil: B G1 Wil

40) Felix: Build R1 B2b

41) wil: D R3 Y2 B1 B1

42) Felix: Move R1 B2b G1
Catastrophe G1 Red

43) wil: B R1 Wil

44) Felix: Move R2 B2b G1

45) wil: D Y1 G1 G2 G2

46) Felix: Build G2 B2b

47) wil: D Y1 G2 G3 G3

48) Felix: Sacrifice G3 B2b
Build G2 Felix
Build G3 Felix
Build G3 B2b

49) wil: Move G1 Wil B1

50) Felix: S G2 Felix
Pass
B R1 G1

51) wil: B G2 Wil

52) Felix: Move Y1 B2 G1

53) wil: S G2 Wil
B R2 B1
B R3 Y2

54) Felix: Trade G3 B3 B2b

55) wil: M R2 Y2 G1

56) Felix: S R1 G1
A R2 G1

57) wil: T R3 B3 Wil
	wil: Nice

58) Felix: M B3 B2b G1

59) wil: B G2 Wil
	Felix: Thanks! That was a near thing.

60) Felix: S G3 Felix
B B1 G1
B G3 B2b
B G3 Felix

61) wil: M B3 Wil B1

62) Felix: M B3 G1 Wil

63) wil: T G1 B1 Wil
	Felix: Interesting. Suicide?
	wil: I guess...  
	wil: Brain fart
	wil: Oh well...heehee

64) Felix: Sacrifice R2 G1
Attack Y2 Wil
Attack G2 Wil
	wil: No chance of recovery from that I believe

65) wil: S Y1 G3
M B3 B1 Wil
C Wil B
	Felix: I don't think so. Oh well! I think I had a working plan of victory either way... it just would have taken longer. But nothing is a given in this game.

66) Felix: Sacrifice R2 G1
Attack R1 Wil
Pass
	wil: Gg
	Felix: You too! A very fun one, and definitely a nailbiter after I made that one mistake.
	wil: I am always happy to increase your ratings and decrease mine so I can be a surprise.



32289)
Variants: "Hard time"
Started: 2017.6.2, Ended: 2017.6.9
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: Odd, I did not think I would get a rematch this soon.

2) Felix: Homeworld Y2 B2 G3 *

3) Draw5PlayAll: Build G1 Draw5playall
	Felix: Haha, why ever not? You're a worthy opponent and have climbed the ranks quite quicklY!
	Draw5PlayAll: Uh oh

4) Felix: Build G1 Felix
	Draw5PlayAll: Also, I prefer 8/5/11 hard time because it gives leeway but I do not have to worry about forgetting to time someone out.

However for 3+ players I usually keep the time control and drop Hard Time.

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Felix: Trade G1 R1 Felix

7) Draw5PlayAll: Build Y1 Draw5playall

8) Felix: B R1 Felix

9) Draw5PlayAll: Build Y1 Draw5playall

10) Felix: Build R2 Felix

11) Draw5PlayAll: Discover Y1 Draw5playall G2 G2

12) Felix: Trade R2 Y2 Felix

13) Draw5PlayAll: Build Y2 G2

14) Felix: Discover Y2 Felix G3 Out

15) Draw5PlayAll: Build Y3 Draw5playall

16) Felix: Build Y3 Out

17) Draw5PlayAll: Trade Y3 R3 Draw5playall

18) Felix: Move Y2 Out G2

19) Draw5PlayAll: Sacrifice Y1 G2
Move R3 Draw5playall G2

20) Felix: Build Y1 G2

21) Draw5PlayAll: Build R2 G2

22) Felix: Build Y3 Out

23) Draw5PlayAll: Sacrifice R2 G2
Attack Y2 G2
Attack Y1 G2

24) Felix: Discover Y3 Out G2 In

25) Draw5PlayAll: Trade Y1 B1 Draw5playall

26) Felix: Trade R1 B1 Felix

27) Draw5PlayAll: Discover Y2 G2 B3 B3

28) Felix: Build G1 Felix

29) Draw5PlayAll: Trade Y2 B2 B3

30) Felix: Move B1 Felix Out

31) Draw5PlayAll: Move Y1 G2 B3

32) Felix: B B1 Out

33) Draw5PlayAll: Move B2 B3 G2

34) Felix: Move B1 Out In
	Draw5PlayAll: So G2 = Altair, out = Betelgeuse, in = Caster, B3 = Denham (?)

35) Draw5PlayAll: Trade B1 Y1 Draw5playall

36) Felix: Build B1 In
	Felix: I have no idea what you're talking about
	Draw5PlayAll: Did I spell the names right?

37) Draw5PlayAll: Move Y1 B3 Felix
	Draw5PlayAll: South's ship Y3 was not sacrificed in the in system. South did not move their G3 ship from Felix to Draw5PlayAll. South did not move their G1 ship from Felix to Draw5PlayAll. South did not move their Y3 ship from out to Felix. A catastrophe did not occur in the Draw5PlayAll system. No construction (G) technology was lost.

38) Felix: Attack Y1 Felix

39) Draw5PlayAll: Sacrifice Y2 G2
Move Y1 Draw5playall Felix
Move Y1 Draw5playall Felix
Catastrophe Felix Yellow

40) Felix: Build G1 Felix

41) Draw5PlayAll: Trade G3 Y3 Draw5playall

42) Felix: Sacrifice G3 Felix
Build Y1 In
Build Y1 In
Build R1 Felix

43) Draw5PlayAll: Trade Y3 G3 Draw5playall
	Felix: Good attack, but leaving yourself without mobility may have been unwise.

44) Felix: Build G1 Felix
	Draw5PlayAll: What did you say?

45) Draw5PlayAll: Trade G3 R3 Draw5playall
	Felix: I believe I said it would be unwise to leave yourself without any construction ability.

46) Felix: Sacrifice Y3 Out
Move R1 Felix Draw5playall
Move R1 Felix Draw5playall
Catastrophe Draw5playall Red
Move Y3 In Draw5playall
	Draw5PlayAll: I think you have me cornered.
	Draw5PlayAll: I think my mess up was allowing you two Y3s.

	Felix: Good game though. I honestly didn't think I'd have a shot with a duplicate-star homeworld. According to most of what I've read, it's supposed to be suicide.
	Draw5PlayAll: When I made that earlier comment (G2 = Altair, etc) I was referring to the system the Homeworlds Theater videos use... but I would hope this game does not end up on the video... or really any of mine, even those that I won.
	Felix: Ah, I see. I've never heard of Homeworlds Theater. Why wouldn't you wanna be on it?
	Draw5PlayAll: http://new.wunderland.com/2017/06/05/homeworlds-theater/


32258)
Started: 2017.6.2, Ended: 2017.6.16
Participants: Felix (S), panglott (N)
Winner: Felix

1) panglott: Homeworld B3 Y1 G3

2) Felix: H B2 Y3 G3

3) panglott: Build G1 Panglott

4) Felix: Build G1 Felix
	Felix: Good luck and have fun!

5) panglott: Discover G1 Panglott B2 Tallahassee

6) Felix: Trade G1 Y1 Felix

7) panglott: Build G1 Tallahassee

8) Felix: Build Y1 Felix

9) panglott: Build G1 Panglott

10) Felix: Discover Y1 Felix B1 Out

11) panglott: Build G2 Tallahassee

12) Felix: Build G2 Felix

13) panglott: Trade G1 R1 Panglott

14) Felix: B Y2 Felix

15) panglott: Trade G2 Y2 Tallahassee

16) Felix: Discover Y1 Felix B1 Gumdrop

17) panglott: Move G1 Tallahassee Gumdrop

18) Felix: Sacrifice G3 Felix
Build Y2 Gumdrop
Build Y3 Out
Build Y3 Felix

19) panglott: Discover Y2 Tallahassee G1 Cairo

20) Felix: T Y2 R2 Felix

21) panglott: Build G2 Panglott

22) Felix: T Y2 R2 Gumdrop

23) panglott: Sacrifice G3 Panglott
Build G2 Tallahassee
Build G3 Gumdrop
Build G3 Panglott

24) Felix: Build G3 Felix

25) panglott: Trade G3 R3 Gumdrop

26) Felix: S G2 Felix
B R1 Gumdrop
B R1 Gumdrop
C Gumdrop Red

27) panglott: Sacrifice G3 Panglott
Build Y2 Cairo
Build G2 Tallahassee
Build G3 Panglott

28) Felix: B G3 Felix

29) panglott: Trade G2 Y2 Tallahassee

30) Felix: B R1 Felix

31) panglott: Sacrifice Y2 Tallahassee
Move Y2 Cairo Felix
Move Y2 Cairo Felix
Catastrophe Felix Y

32) Felix: Sacrifice Y3 Out
Move G3 Felix Panglott
Move G3 Felix Panglott
Catastrophe Panglott Green
Move R2 Felix Panglott

33) panglott: Trade G2 Y2 Tallahassee

34) Felix: Attack R1 Panglott

	panglott: Thanks for the game ;)
	Felix: Thank you too! It was a fun finish. Good game


32159)
Started: 2017.6.4, Ended: 2020.3.31
Participants: SubatomicAura (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B1 G2 Y3

2) SubatomicAura: Homeworld R3 B1 G3

3) MobyNostromo: B Y1 Mobynostromo

4) SubatomicAura: Build G1 Subatomicaura

5) MobyNostromo: B Y1 Mobynostromo



32251)
Variants: "Unrated"
Started: 2017.6.4, Ended: 2017.7.17
Participants: SubatomicAura (S), wil (N)
Winner: wil

1) wil: H Y3 B2 G3

2) SubatomicAura: Homeworld Y1 B3 G3

3) wil: B G1 Wil

4) SubatomicAura: Build G1 Subatomicaura

5) wil: T G1 Y1 Wil

6) SubatomicAura: Build G1 Subatomicaura

7) wil: B Y1 Wil

8) SubatomicAura: Discover G1 Subatomicaura R2 Alpha
	wil: One thing one should watch for is a freeze out from any economy....the early game is often copycat to insure that doesn't occur

9) wil: D Y1 Wil G1 G1

10) SubatomicAura: Build G2 Subatomicaura

11) wil: S G3 Wil
B Y2 Wil
B Y2 G1
B Y2 G1

12) SubatomicAura: Trade G2 B2 Subatomicaura

13) wil: M Y2 G1 Alpha

14) SubatomicAura: Trade B2 R2 Subatomicaura

15) wil: A G1 Alpha

16) SubatomicAura: Build R1 Subatomicaura

17) wil: B Y3 Alpha

18) SubatomicAura: Trade G1 B1 Subatomicaura

19) wil: B Y3 G1



32300)
Variants: "Unrated"
Started: 2017.6.4, Ended: 2017.7.17
Participants: SubatomicAura (S), wil (N)
Winner: wil

1) wil: H Y3 B1 G3

2) SubatomicAura: Homeworld R2 B1 G3

3) wil: B G1 Wil

4) SubatomicAura: Build G1 Subatomicaura

5) wil: T G1 B1 Wil
	wil: Was atomicaura already taken?

6) SubatomicAura: Trade G1 Y1 Subatomicaura

7) wil: B B2 Wil

8) SubatomicAura: Build Y1 Subatomicaura

9) wil: D B2 Wil Y2 Y2

10) SubatomicAura: Build G1 Subatomicaura

11) wil: S G3 Wil
B B2 Y2
B B2 Y2
B B3 Wil

12) SubatomicAura: Build G1 Subatomicaura

13) wil: D B2 Y2 G3 G3

14) SubatomicAura: Move G1 Subatomicaura G3

15) wil: B B3 G3

16) SubatomicAura: Build Y1 Subatomicaura

17) wil: S B2 Y2
T B3 G3 Wil
T B3 R3 G3

18) SubatomicAura: Discover Y1 Subatomicaura B3 B3

19) wil: A G1 G3



32299)
Started: 2017.6.4, Ended: 2017.6.7
Participants: dlwillson (S), MobyNostromo (N)
Winner: dlwillson



32199)
Variants: "Unrated, Hard time"
Started: 2017.6.4, Ended: 2017.6.13
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B3 Y1 G3

2) wil: H G2 Y1 Y3 *

3) dlwillson: Build G1 Dlwillson
	wil: This game has an asterisk at the start
	dlwillson: Huh... I wonder why... I don't see one.

4) wil: B Y1 Wil
	wil: I had to place an asterisk for not using a blue and for having two of one color in my hw

5) dlwillson: Trade G3 Y3 Dlwillson

6) wil: D Y1 Wil G3 G3

7) dlwillson: B Y2 Dlwillson

8) wil: B Y2 G3
	wil: Lol, this is getting real bad real fast...

9) dlwillson: D Y2 Dlwillson G2 Field

10) wil: M Y1 G3 Field

11) dlwillson: Build G1 Dlwillson

12) wil: B Y2 Field

13) dlwillson: Build Y3 Field
Catastrophe Field Y

14) wil: B Y1 G3

15) dlwillson: Build G1 Dlwillson
	wil: Thought that would be tempting
	wil: It is weird....using a non blue instafreeze causes a turmoil between the non blue opening (need to get blue now) and the freezout need to maintain the freeze...  Well that and my shoot from.the hip not thinking ways

16) wil: B Y2 Wil
	dlwillson: Yeah, that's interesting. I think you have got a slight advantage, though.
	wil: I feel much better after the catastrophe

17) dlwillson: D G1 Dlwillson B2 Sea

18) wil: D Y2 Wil B3 B3

19) dlwillson: B G2 Sea

20) wil: B Y2 Wil

21) dlwillson: Discover G1 Dlwillson G2 Forest

22) wil: M Y3 Wil B3

23) dlwillson: B G3 Sea

24) wil: T Y3 G3 B3

25) dlwillson: T G2 R2 Sea

26) wil: M G3 B3 Wil
	wil: Yeah...oops

27) dlwillson: Sacrifice Y3 Dlwillson
Move G3 Sea B3
Move G3 B3 Wil
Discover G1 Forest Y3 Golden

28) wil: B G2 Wil
C Wil G

29) dlwillson: B G2 Dlwillson
	wil: They went willingly to save the kingdom...what troopers

30) wil: B Y3 G3

31) dlwillson: Build G2 Sea
	Draw5PlayAll:  
	Draw5PlayAll: !?

32) wil: S Y2 G3
M Y3 G3 Sea
M Y3 Sea Dlwillson

33) dlwillson: T G1 R1 Dlwillson

34) wil: T Y2 R2 B3

35) dlwillson: Sacrifice G2 Sea
Build G1 Dlwillson
Build R1 Dlwillson

36) wil: B Y2 G3

37) dlwillson: Trade G2 Y2 Dlwillson
	wil: Wotta game

38) wil: B Y3 G3
	dlwillson: :-)

39) dlwillson: B G2 Golden

40) wil: M Y3 G3 Sea

41) dlwillson: M G2 Golden Wil

42) wil: S R2 B3
A G2 Wil
A R2 Sea

43) dlwillson: B G2 Dlwillson
	dlwillson: B g2 dlwillson

44) wil: S R2 Sea
A Y2 Dlwillson
A G2 Dlwillson
	dlwillson: I haven't done that in a while... :-)

45) dlwillson: B G2 Sea

46) wil: Trade Y2 R2 Dlwillson

47) dlwillson: Build G3 Golden

48) wil: S R2 Dlwillson
A R1 Dlwillson
A R1 Dlwillson

49) dlwillson: T G2 R2 Sea

50) wil: A G1 Dlwillson
	wil: I didn't play that well, but the instafreeze was powerful enough to overcome...gg
	dlwillson: good game :-)



32225)
Started: 2017.6.4, Ended: 2017.6.14
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) Felix: Homeworld Y2 B3 G3

3) dlwillson: Build G1 Dlwillson
	Felix: Here we go again. Have fun!
	dlwillson: Yay! You too!

4) Felix: Build G1 Felix

5) dlwillson: Trade G1 Y1 Dlwillson

6) Felix: Trade G1 Y1 Felix

7) dlwillson: Build Y2 Dlwillson

8) Felix: Build Y2 Felix

9) dlwillson: D Y1 Dlwillson G2 Forest

10) Felix: Sacrifice Y1 Felix
Discover Y2 Felix G1 Endor

11) dlwillson: B G1 Dlwillson

12) Felix: Build G1 Felix

13) dlwillson: D G1 Dlwillson B2 Sea

14) Felix: Trade G1 R1 Felix

15) dlwillson: Trade Y2 R2 Dlwillson

16) Felix: Build R1 Felix

17) dlwillson: Move R2 Dlwillson Forest

18) Felix: Move R1 Felix Endor

19) dlwillson: B G1 Dlwillson
	dlwillson: Darn it, Felix!

20) Felix: Build G2 Felix
	Felix: Haha, but I don't think I'm doing very well! You're about to get most of the greens, I think.

21) dlwillson: S G3 Dlwillson
B G2 Dlwillson
B G3 Dlwillson
B G3 Sea

22) Felix: Discover G2 Felix Y1 Tattooine

23) dlwillson: Trade G2 R2 Dlwillson

24) Felix: Build G2 Felix

25) dlwillson: T G3 Y3 Sea

26) Felix: Build G3 Tattooine

27) dlwillson: S G3 Dlwillson
B Y2 Sea
B Y3 Forest
B G3 Dlwillson

28) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y3 Endor
Build R1 Felix

29) dlwillson: Sacrifice G3 Dlwillson
Build R2 Forest
Build R3 Dlwillson
Build G3 Dlwillson

30) Felix: Build R3 Endor
	Felix: well that escalated quickly!

31) dlwillson: Move R2 Dlwillson Sea
	dlwillson: Factories! Factories everywhere!
	dlwillson: I'm really not sure what to do with all this capital...

32) Felix: Trade R1 B1 Felix
	dlwillson: Oh, I know! I'll try to make more!

33) dlwillson: Sacrifice G3 Dlwillson
Build R1 Dlwillson
Build R3 Sea
Build G3 Dlwillson
	Felix: Greed will get you nowhere! It's all about smart exchanges ;)

34) Felix: Build B1 Felix

35) dlwillson: Discover G1 Sea B1 Sky

36) Felix: Move G2 Felix Sky

37) dlwillson: Move R3 Sea Sky
	dlwillson: I'm so used to playing against bankers...

38) Felix: M B1 Felix Tattooine
	Felix: Yeah... I do play it sometimes, but I've never been as effective as I could be at using that strategy. Plus it's less satisfying somehow to win with that setup since it's generally considered stronger.
	Draw5PlayAll: But I just send a spare R2 to your investment and scare it off! Why is it stronger than a 1-3? If I get small greens on 2-point stars, I can still move to large stars.

39) dlwillson: Trade Y2 B2 Sea

40) Felix: Move B1 Felix Endor
	Felix: @draw5 - it still gives the player a much greater control over the supply. Large pieces can be absorbed and kept from the opponent in a pinch. And small pieces tend to run out faster, limiting the ability of someone with a fortress to move out.

41) dlwillson: M B2 Sea Sky
	dlwillson: @draw5: You are uniquely positioned to understand the importance of being a banker: http://superdupergames.org/main.html?page=play_homeworlds&num=32303

42) Felix: Sacrifice G2 Sky
Build B2 Endor
Build B3 Tattooine

43) dlwillson: S G3 Dlwillson
B Y2 Sea
B G2 Sky
B G3 Dlwillson

44) Felix: Sacrifice Y2 Endor
Discover B2 Endor Y2 Entry
Move B1 Tattooine Entry

45) dlwillson: M R3 Dlwillson Entry
	dlwillson: The bank is empty!
	Felix: The pieces are all laid out. Now if only I had a dang medium star to use as an entry point to your homeworld!

46) Felix: Sacrifice Y3 Endor
Move B2 Entry Sky
Move B1 Entry Sky
Catastrophe Sky Blue
Discover B1 Endor Y3 Precious
	Felix: I guess this will have to do...

47) dlwillson: Build R3 Dlwillson
	Felix: Sorry, just wanted to adjust that ever so slightly.

48) Felix: Build B1 Tattooine
	dlwillson: Abandon hope, ye who entry here.

49) dlwillson: Trade R1 B1 Dlwillson
	Felix: Excellent move. You force me into a costly maneuver!
	Felix: That solves my medium star problem though ;)

50) Felix: Discover B3 Tattooine G2 Seafoam
	dlwillson: Expensive maybe, but I think it was profitable for you.

51) dlwillson: M B1 Dlwillson Entry

52) Felix: S G2 Tattooine
B B2 Seafoam
B B2 Tattooine

53) dlwillson: D Y1 Forest G1 Field

54) Felix: S B1 Precious
T B3 Y3 Seafoam

55) dlwillson: S G3 Dlwillson
B R1 Entry
B G2 Dlwillson
B G3 Dlwillson

56) Felix: S G3 Tattooine
B G3 Felix
B B1 Seafoam
B B3 Seafoam

57) dlwillson: Sacrifice Y2 Sea
Move B1 Entry Field
Move B1 Field Seafoam
Catastrophe Seafoam B

58) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Seafoam
Build B1 Tattooine

59) dlwillson: Move G1 Dlwillson Seafoam

60) Felix: D B1 Tattooine B2 Absorption

61) dlwillson: Sacrifice Y1 Field
Discover G1 Seafoam B1 Sky

62) Felix: Trade B1 G1 Tattooine

63) dlwillson: Sacrifice Y3 Sea
Move G3 Dlwillson Absorption
Move G3 Absorption Endor
Move G3 Endor Felix

64) Felix: Sacrifice Y2 Seafoam
Move G1 Tattooine Felix
Catastrophe Felix Green
Move R3 Endor Felix

65) dlwillson: Move R3 Entry Tattooine
	Felix: That was a nice move!

66) Felix: Move B2 Tattooine Felix

67) dlwillson: M R2 Forest Sky
	Felix: OUCH. Really nice. I didn't see that coming.
	dlwillson: I've been wanting to do that since you got the second big green, but I couldn't set it up right until then. Unfortunately, it was about as expensive for me as it was for you.

68) Felix: Trade R1 G1 Felix

69) dlwillson: B G3 Sky
	Felix: True. This has been a pretty epic game thus far.
	Draw5PlayAll: 8 planets.

70) Felix: Build G3 Felix

71) dlwillson: Trade G3 Y3 Sky

72) Felix: S G3 Felix
B B1 Absorption
B B3 Felix
B G3 Felix

73) dlwillson: Build G3 Sky

74) Felix: Build Y1 Seafoam
	dlwillson: I was supposed to have won by now... >:-|

75) dlwillson: M Y3 Sky Absorption
	Felix: And I was supposed to lose by now! 

76) Felix: S Y3 Seafoam
M B2 Felix Tattooine
M B2 Tattooine Absorption
C Absorption Blue
M B3 Felix Endor
	dlwillson: That's kinda what I mean. You're not cooperating.

77) dlwillson: Sacrifice G3 Sky
Build R1 Dlwillson
Build G3 Sky
Build G3 Dlwillson

78) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Seafoam
Build Y3 Seafoam

79) dlwillson: Build Y3 Forest
	Felix: Yeah...
Sorry about that old chap. I'm afraid I tend to kick and squirm. But I think you have me in the wrong footing now.
	dlwillson: LOL! I read that in the voice of Mr. B, The Gentleman Rhymer.
	dlwillson: I suddenly became terribly afraid you were going to blow up Sky, and completely end my little game, so I started diversifying.

80) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B1 Endor
Build B1 Endor

81) dlwillson: Sacrifice Y3 Forest
Move G3 Sky Felix
Move G1 Sky Felix
Move R3 Tattooine Felix
Catastrophe Felix G
	Felix: Haha, I'm not familiar with Mr. B, but I'll look him up.

I honestly should have threatened Sky more, but the great eye of Sauron was turned elsewhere, so to speak.

82) Felix: Sacrifice Y3 Seafoam
Move R1 Endor Felix
Move B3 Endor Felix
Move B1 Endor Felix

83) dlwillson: Sacrifice R3 Dlwillson
Attack R3 Felix
Attack B3 Felix
Attack R1 Felix
	Felix: I present you with a choice: Eliminate all the yellow ships and draw this game out even further.... or don't. :P

84) Felix: Sacrifice B1 Endor
Trade B1 B1 Felix
	Felix: Hey, that works too.
	dlwillson: No sense dragging it out further... :-)

85) dlwillson: Sacrifice R3 Felix
Attack B1 Felix
Pass
Pass
	Felix: I didn't notice that threat. Very nicely done! 

	Felix: Haha, I didn't know you could trade for the same color. That's funny.
	dlwillson: Thanks!
	dlwillson: I meant "Thanks!" to "nicely done"
	dlwillson: Excellent game! Now, to focus on work for a few hours!
	Felix: Yes, great game and well played. I thought I was a goner several times before you closed the deal. I have some work to do too, and then I should gather all of my wits for the epic ladder battle.
	dlwillson: o/\o


32290)
Started: 2017.6.4, Ended: 2017.6.12
Participants: panglott (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) panglott: Homeworld Y3 B2 G3

3) dlwillson: B G1 Dlwillson

4) panglott: Build G1 Panglott
	dlwillson: Have fun!

5) dlwillson: Trade G1 Y1 Dlwillson

6) panglott: Discover G1 Panglott B1 Versailles

7) dlwillson: B Y1 Dlwillson

8) panglott: Build G1 Versailles

9) dlwillson: D Y1 Dlwillson B2 Sea

10) panglott: Build G1 Panglott

11) dlwillson: Build G2 Dlwillson

12) panglott: Discover G1 Panglott B1 Allegheny

13) dlwillson: S G3 Dlwillson
B Y2 Dlwillson
B Y2 Sea
B Y2 Sea

14) panglott: Build G2 Panglott

15) dlwillson: Discover Y1 Dlwillson B2 Sky

16) panglott: Sacrifice G3 Panglott
Build G2 Versailles
Build G3 Allegheny
Build G3 Panglott
	dlwillson: I like your system names. Are they based on some predictive model, like mine are?
	panglott: I was trying to use real star names for a while, but it was easier to think of evocative American small towns. Versailles is a small town in Kentucky, not too far from the Allegheny Mountains ;) 

17) dlwillson: Build G3 Dlwillson

18) panglott: Trade G3 Y3 Allegheny
	panglott: But they say it "vur-sales"

19) dlwillson: Move G2 Dlwillson Sky
	dlwillson: That's excellent. Are you Kentuckian?
	dlwillson: Mine are 'field' and 'forest' for green, 'sky' and 'sea' for blue, 'sol' and 'golden' for yellow, and I almost never create red systems, but when I do, they have weird names. Basically, anything but 'mars' will do.
	panglott: That's neat. I guess you don't often need more than 2
	panglott: Yea, in Louisville. 

20) panglott: Trade G1 R1 Versailles

21) dlwillson: B Y3 Sky

22) panglott: Sacrifice G3 Panglott
Build G1 Allegheny
Build G3 Allegheny
Build G3 Panglott

23) dlwillson: Move G2 Sky Allegheny
Catastrophe Allegheny G

24) panglott: Move Y3 Allegheny Sea

25) dlwillson: D Y2 Sea G1 Field

26) panglott: Trade Y3 R3 Sea

27) dlwillson: S Y2 Sea
M Y1 Sea Field
M Y1 Field Panglott

28) panglott: Trade G2 Y2 Versailles

29) dlwillson: Trade Y2 R2 Dlwillson

30) panglott: Move G1 Versailles Sea

31) dlwillson: T Y1 G1 Panglott

32) panglott: Trade G2 R2 Panglott

33) dlwillson: B G2 Panglott

34) panglott: Move G3 Panglott Versailles

35) dlwillson: Sacrifice R2 Dlwillson
Attack R2 Panglott
Pass

	dlwillson: Good game! Thank you!


32303)
Variants: "Unrated, Hard time"
Started: 2017.6.5, Ended: 2017.6.18
Participants: Draw5PlayAll (S), dlwillson (N)
Winner: Draw5PlayAll

1) dlwillson: Homeworld B3 Y1 G3
	Draw5PlayAll: You really asked for a 1/1/3 time control?

2) Draw5PlayAll: Homeworld B2 R1 G3
	dlwillson: Yes. I strongly prefer fast games. I figure a day is plenty of time, typically, and three days is plenty of time to get in a good think, if the other guy has submitted a particularly clever and/or surprising turn.

3) dlwillson: Build G1 Dlwillson

4) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Yeah, just that some people cannot get on SDG every single day. I have noticed that the clock here is less of a measure of thinking time and more a measure of patience. With just one hour you could have a decent think but most of the hours are spent doing other things,
	dlwillson: Are you saying that you think the timing is too fast?

5) dlwillson: T G1 R1 Dlwillson

6) Draw5PlayAll: Trade G1 R1 Draw5playall
	Draw5PlayAll: I am commenting o  it.

7) dlwillson: Build R2 Dlwillson

8) Draw5PlayAll: Build R2 Draw5playall

9) dlwillson: Discover R1 Dlwillson R2 Gambit

10) Draw5PlayAll: Trade R2 Y2 Draw5playall

11) dlwillson: S G3 Dlwillson
B R2 Gambit
B R3 Dlwillson
B R3 Dlwillson

12) Draw5PlayAll: Discover R1 Draw5playall G3 G3

13) dlwillson: T R2 Y2 Dlwillson

14) Draw5PlayAll: Build Y1 Draw5playall

15) dlwillson: Sacrifice Y2 Dlwillson
Move R2 Gambit G3
Discover R1 Gambit G3 Field

16) Draw5PlayAll: Trade Y2 B2 Draw5playall

17) dlwillson: Attack R1 G3

18) Draw5PlayAll: Move B2 Draw5playall Field

19) dlwillson: Discover R3 Dlwillson Y2 Sol

20) Draw5PlayAll: Build G1 Draw5playall

21) dlwillson: Move R3 Sol Field

22) Draw5PlayAll: Sacrifice Y1 Draw5playall
D B2 Field G1 G1

23) dlwillson: Sacrifice R1 G3
Pass

24) Draw5PlayAll: Build B1 G1

25) dlwillson: S R2 G3
Pass
Pass
	dlwillson: Nice! I had no idea...

26) Draw5PlayAll: Trade B1 Y1 G1

27) dlwillson: T R3 G3 Dlwillson

28) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: Rats, I just realized I could have held you even longer...

29) dlwillson: Build G1 Dlwillson
	dlwillson: Right. :-)
	Draw5PlayAll: Actually, you would have been absolutely powerless to do anything. Ugh.

30) Draw5PlayAll: Build Y2 G1

31) dlwillson: T G1 B1 Dlwillson

32) Draw5PlayAll: Discover Y1 G1 Y2 Y2
	Draw5PlayAll: My only hope.

33) dlwillson: S B1 Dlwillson
T R3 B3 Field

34) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 G1
Build Y3 Draw5playall
Build Y3 G1
	Draw5PlayAll: I might not be so losing after all.

35) dlwillson: B B1 Field

36) Draw5PlayAll: Trade Y2 R2 G1
	Draw5PlayAll: I expected you to trade for a Y3.

37) dlwillson: T B3 Y3 Field
	dlwillson: Yeah, well... I like to surprise when I can. Let's see what happens!

38) Draw5PlayAll: Trade Y3 B3 Draw5playall

39) dlwillson: B B1 Field

40) Draw5PlayAll: Trade B3 G3 Draw5playall

41) dlwillson: M B1 Field Y2

42) Draw5PlayAll: Discover Y1 Y2 B3 B3

43) dlwillson: B G1 Dlwillson

44) Draw5PlayAll: Build G1 Draw5playall

45) dlwillson: T G1 R1 Dlwillson

46) Draw5PlayAll: Move G1 Draw5playall B3

47) dlwillson: D B1 Y2 Y3 Golden

48) Draw5PlayAll: Build Y2 Draw5playall

49) dlwillson: Build Y2 Field

50) Draw5PlayAll: Build R2 G1

51) dlwillson: Build R2 Field

52) Draw5PlayAll: Move R2 G1 Golden

53) dlwillson: D B1 Golden G2 Forest

54) Draw5PlayAll: Build R3 G1

55) dlwillson: Move R2 Field Forest

56) Draw5PlayAll: Move R3 G1 B3

57) dlwillson: Build R3 Forest

58) Draw5PlayAll: Build R3 G1

59) dlwillson: Sacrifice Y2 Field
Move R1 Field G1
Move R2 Forest G1
Catastrophe G1 R

60) Draw5PlayAll: Build Y2 B3

61) dlwillson: B B1 Field

62) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Thanks for the Y2!
	dlwillson: I think you're beating me!
	dlwillson: Nice job!
	Draw5PlayAll: You forgot to move.

63) dlwillson: Move B1 Field Draw5playall
	dlwillson: Right you are! There you go, sir!

64) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B3
Build G2 B3
Build G3 Draw5playall

65) dlwillson: Build B2 Field

66) Draw5PlayAll: Sacrifice G3 Draw5playall
Build B3 G1
Build G3 Draw5playall
Build R1 Golden
	Draw5PlayAll: You are being very annoying. It will take skill to withstand this storm.

67) dlwillson: Trade B2 R2 Field

68) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 Golden
Build R3 B3
Build G3 Draw5playall

69) dlwillson: B B2 Field

70) Draw5PlayAll: Attack B1 Draw5playall
	Draw5PlayAll: The first time I tried it told me I had 1 unused action because I forgot to build the G3 back. Thanks, system!

71) dlwillson: M B2 Field Draw5playall

72) Draw5PlayAll: Move B1 Draw5playall Golden

73) dlwillson: M B1 Field Draw5playall

74) Draw5PlayAll: Attack B2 Draw5playall
	Draw5PlayAll: You have two turns to blow my blue star to stellar dust before you run out of blue.

75) dlwillson: Sacrifice Y3 Field
Move B1 Forest Field
Move B1 Field Draw5playall
Catastrophe Draw5playall B
Discover R3 Forest Y3 Solar
	dlwillson: Yep. I know.

76) Draw5PlayAll: Discover B3 G1 G2 G2

77) dlwillson: M R3 Solar G2

78) Draw5PlayAll: Sacrifice R1 Golden
Attack R3 G2
	Draw5PlayAll: Nice attempt but I doubt you can continue with just 4 ships.

79) dlwillson: B R1 Dlwillson

80) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y3 G1
Build B1 G2
	Draw5PlayAll: 3 now.

81) dlwillson: T R1 B1 Dlwillson

82) Draw5PlayAll: Sacrifice Y3 G1
Move B1 G2 Dlwillson
Move B3 G2 Dlwillson
Catastrophe Dlwillson B
Move Y1 Draw5playall G2
	Draw5PlayAll: At this point my win is likely guaranteed. Tell me if you have any way to resist:
First I discover one of the B2s and put three yellows (from B3, G1, or my homeworld) there. Then I put three blues on G2. At this point I have a doomsday machine and you cannot block it.
The only catch is that if you obtain a blue, I may need to sac a Y2 to create another system for the blues, but I think you otherwise cannot resist.

83) dlwillson: B R1 Dlwillson
	Draw5PlayAll: I just realized I can accelerate the process this way.

84) Draw5PlayAll: Sacrifice Y3 G1
Move Y2 B3 Dlwillson
Move Y1 B3 Dlwillson
Move Y1 G2 Dlwillson
Catastrophe Dlwillson Yellow

	Draw5PlayAll: Good game. I wish it had been a ladder game.
	dlwillson: You'd be #1 now, if it had! :-)
	Draw5PlayAll: That is what I meant. At least I have some self efficacy in that, assuming nothing major changes, I know I have beaten the #1 seat at least once. (I have also beat Felix but not on the ladder.)


32198)
Started: 2017.6.8, Ended: 2017.7.21
Participants: Draw5PlayAll (S), ts52 (N)
Winner: Draw5PlayAll

1) ts52: Homeworld Y1 B2 G3

2) Draw5PlayAll: Homeworld B3 R1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) Draw5PlayAll: Build G1 Draw5playall

5) ts52: Trade G1 Y1 Ts52

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) ts52: Build Y2 Ts52

8) Draw5PlayAll: Build Y2 Draw5playall

9) ts52: Discover Y1 Ts52 G3 Kermit

10) Draw5PlayAll: Trade Y2 B2 Draw5playall

11) ts52: Build Y2 Kermit

12) Draw5PlayAll: Build Y2 Draw5playall
	Draw5PlayAll: Sadly I can do little to avoid you getting way too much yellow.

13) ts52: Build Y3 Ts52

14) Draw5PlayAll: Discover Y1 Draw5playall G2 G2

15) ts52: Trade Y2 B2 Ts52

16) Draw5PlayAll: Move B2 Draw5playall G2

17) ts52: Move B2 Ts52 Kermit

18) Draw5PlayAll: Build B1 G2

19) ts52: Build G1 Ts52
	Draw5PlayAll: We are attempting to diversify, that is all.

20) Draw5PlayAll: Trade B1 R1 G2

21) ts52: Trade G1 R1 Ts52
	Draw5PlayAll: A purely defensive resource designed to deter invasions coming from Kermit.

22) Draw5PlayAll: Build R2 G2
	ts52: I'm afraid you leave us no choice but to begin researching our own defense capabilities.

23) ts52: Build R2 Ts52
	Draw5PlayAll: That was well-intentioned. You see, on the red planet we have a race of emotional, reactionary, and aggressive aliens that have a voice in our government and sometimes try to make decisions... like take over innocent "enemy" bases. The way I see it, they are not an enemy until they initiate conflict.

24) Draw5PlayAll: Build Y2 Draw5playall

25) ts52: Discover Y2 Kermit G2 Robin

26) Draw5PlayAll: Build Y3 G2

27) ts52: Build Y3 Robin

28) Draw5PlayAll: Build G1 Draw5playall

29) ts52: Discover Y3 Ts52 B3 Gonzo

30) Draw5PlayAll: Discover R1 G2 G1 G1

31) ts52: Move R2 Ts52 Kermit

32) Draw5PlayAll: Discover Y1 G2 G1 G1b

33) ts52: Move Y3 Robin G1

34) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Draw5playall
Build G3 Draw5playall
Build B1 G2

35) ts52: Build B1 Kermit

36) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 G1
Build R3 G2
Build G3 Draw5playall

37) ts52: Sacrifice R2 Kermit
Attack R2 G1
Attack R1 G1

38) Draw5PlayAll: Move R3 G2 Kermit

39) ts52: Move B2 Kermit Robin

40) Draw5PlayAll: Attack B1 Kermit

41) ts52: Move Y1 Kermit Robin

42) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B1 G2
Build B3 Kermit

43) ts52: Move R1 G1 Robin

44) Draw5PlayAll: Discover B1 G2 R3 R3

45) ts52: Build R2 G1

46) Draw5PlayAll: Build R3 G2

47) ts52: Move R2 G1 Gonzo

48) Draw5PlayAll: Move B1 G2 R3
	Draw5PlayAll: I wish there was a position analyzer for Homeworlds like there is for Chess... after the game I would like to see if this position was winning for me, if you really should blow my homeworld greens to shreds, etc...
	ts52: Agreed. I think you're pretty overwhelmingly in a better position. But I've been sorely tempted to obliterate all the green in your homeworld. Sadly it would leave me a bit too vulnerable.

49) ts52: Move R2 G1 R3

50) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move B1 R3 Ts52
Move B1 R3 Ts52

51) ts52: Move Y3 G1 R3

52) Draw5PlayAll: Sacrifice G1 Draw5playall
Build Y2 G2

53) ts52: Sacrifice R2 R3
Attack B1 Ts52
Attack B1 Ts52

54) Draw5PlayAll: Sacrifice Y2 G2
Move B1 Kermit Ts52
Move Y1 G1b Kermit
Catastrophe Ts52 Blue

55) ts52: Build Y2 Robin

56) Draw5PlayAll: Move Y1 Kermit Robin
Catastrophe Robin Yellow

57) ts52: Build G1 Ts52

58) Draw5PlayAll: Build Y1 G2

59) ts52: Move G1 Ts52 Gonzo

60) Draw5PlayAll: Move Y1 G2 Kermit

61) ts52: Build Y1 Gonzo

62) Draw5PlayAll: Build Y2 Kermit

63) ts52: Build Y2 Gonzo

64) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 Kermit Ts52
Move Y2 Kermit Ts52

	Draw5PlayAll: In order to preserve your home planet you must agree to these terms and conditions. Please read these carefully, particularly section 15.1 about how exactly you are to indicate unconditional surrender, section 48.9 regarding intelligence tests and improved treatment for those who pass, and section 72.8 regarding conversion of your starships.

Failure to accept the terms will result in a supernova of your home star.

***** TERMS AND CONDITIONS *****
The chief officer of The Galactic Empire of TS52 ("You") hereby agree to accept surrender of all starships and other space-travel related items (the "Fleet") effective immediately, including but not limited to all defensive systems at the Homeworld of TS52, the star systems Gonzo, Robin, and R3, and... [page 1 of 47]
	ts52: :) I fully accept your terms of surrender. Excellent game. 


32354)
Variants: "Hard time"
Started: 2017.6.11, Ended: 2017.6.14
Participants: Subhan64 (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld B1 R2 G3



32338)
Started: 2017.6.11, Ended: 2017.8.1
Participants: ts52 (S), icalvinist (N)
Winner: icalvinist

1) icalvinist: Homeworld B3 Y1 G3

2) ts52: Homeworld Y3 B2 G3

3) icalvinist: Build G1 Icalvinist

4) ts52: Build G1 Ts52

5) icalvinist: Trade G1 Y1 Icalvinist

6) ts52: Trade G1 Y1 Ts52

7) icalvinist: Build Y2 Icalvinist

8) ts52: Build Y2 Ts52

9) icalvinist: Build G1 Icalvinist

10) ts52: Discover Y1 Ts52 B1 Gonzo

11) icalvinist: Discover Y1 Icalvinist B2 Loki

12) ts52: Build G1 Ts52

13) icalvinist: Trade G1 B1 Icalvinist

14) ts52: Trade G1 B1 Ts52

15) icalvinist: Build G1 Icalvinist

16) ts52: Discover B1 Ts52 G1 Kermit

17) icalvinist: Move G1 Icalvinist Loki

18) ts52: Move Y2 Ts52 Kermit

19) icalvinist: Move G1 Loki Gonzo

20) ts52: Trade Y1 R1 Gonzo

21) icalvinist: Sacrifice Y1 Loki
Move G1 Gonzo Ts52

22) ts52: Sacrifice R1 Gonzo
Attack G1 Ts52

23) icalvinist: Discover B1 Icalvinist Y2 Odin

24) ts52: Discover G1 Ts52 B1 Gonzo

25) icalvinist: Build G1 Icalvinist

26) ts52: Build G2 Ts52

27) icalvinist: Move G1 Icalvinist Odin

28) ts52: Build B2 Kermit

29) icalvinist: Build G2 Odin

30) ts52: Build Y1 Kermit

31) icalvinist: Trade G1 R1 Odin

32) ts52: Trade B1 R1 Kermit

33) icalvinist: Move G2 Odin Gonzo

34) ts52: Trade G2 R2 Ts52

35) icalvinist: Sacrifice R1 Odin
Attack G1 Gonzo

36) ts52: Build R1 Kermit

37) icalvinist: Trade G1 Y1 Gonzo

38) ts52: Discover Y2 Kermit G2 Robin

39) icalvinist: Build Y3 Gonzo

40) ts52: Build Y3 Kermit

41) icalvinist: Build G1 Icalvinist

42) ts52: Discover Y3 Kermit R2 Elmo

43) icalvinist: Trade Y1 R1 Gonzo

44) ts52: Build G1 Ts52

45) icalvinist: Sacrifice G3 Icalvinist
Build G2 Gonzo
Build R2 Gonzo
Build G3 Icalvinist

46) ts52: Discover G1 Ts52 Y1 Bigbird

47) icalvinist: Discover R1 Gonzo G3 Loki

48) ts52: Build R3 Ts52

49) icalvinist: Sacrifice G3 Icalvinist
Build G3 Icalvinist
Build R3 Gonzo
Build R3 Loki

50) ts52: Move R3 Ts52 Bigbird

51) icalvinist: Sacrifice B1 Odin
Trade G2 Y2 Gonzo

52) ts52: Build G2 Ts52

53) icalvinist: Move Y2 Gonzo Loki

54) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Kermit
Build B1 Kermit

55) icalvinist: Move R3 Loki Kermit

56) ts52: Move B2 Kermit Robin

57) icalvinist: Sacrifice R3 Gonzo
Attack R1 Kermit
Attack R1 Kermit
Attack Y1 Kermit

58) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Bigbird
Build B2 Robin

59) icalvinist: Move R1 Kermit Loki

60) ts52: Build B3 Robin

61) icalvinist: Sacrifice G1 Icalvinist
Build G1 Gonzo

62) ts52: Sacrifice B1 Kermit
Trade R3 B3 Bigbird

63) icalvinist: Sacrifice Y2 Icalvinist
Move G2 Gonzo Ts52
Move G1 Gonzo Ts52
Catastrophe Ts52 Green

64) ts52: Move B3 Bigbird Ts52

65) icalvinist: Attack B1 Kermit

66) ts52: Sacrifice Y3 Elmo
Move B2 Robin Icalvinist
Move B2 Robin Icalvinist
Move B3 Robin Icalvinist
Catastrophe Icalvinist Blue

67) icalvinist: Build Y2 Kermit

68) ts52: Build Y3 Robin

69) icalvinist: Build B1 Kermit

70) ts52: Trade B3 G3 Ts52

71) icalvinist: Build B2 Kermit

72) ts52: Build G1 Ts52

73) icalvinist: Sacrifice Y2 Loki
Move Y3 Gonzo Ts52
Move Y1 Kermit Ts52

74) ts52: Sacrifice R2 Ts52
Attack Y3 Ts52
Attack Y1 Ts52

75) icalvinist: Move Y2 Kermit Ts52
Catastrophe Ts52 Y

76) ts52: Move Y2 Robin Icalvinist

77) icalvinist: Sacrifice R1 Loki
Attack Y2 Icalvinist

78) ts52: Build Y1 Robin

79) icalvinist: Trade R3 Y3 Kermit

80) ts52: Move Y1 Robin Icalvinist

81) icalvinist: Sacrifice Y3 Kermit
Move B2 Kermit Ts52
Move B1 Kermit Ts52
Move B1 Kermit Ts52
Catastrophe Ts52 B

	ts52: I look forward to a rematch! 


32381)
Variants: "Hard time"
Started: 2017.6.14, Ended: 2017.6.18
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 R1 G3

2) Felix: Homeworld R2 B3 G3
	dlwillson: Yay! Another game with Felix!
I think I'm going to go blue/red in serious games, from now on. It just seems slightly more useful under various conditions.
	Felix: Hooray! I always enjoy our games, and this one is high stakes, so even better! I'm honestly still torn over whether I prefer red/blue or yellow/blue.... I flip back and forth a lot on which is better.  Red/blue is probably better for defensive play and slowly amassing a powerful fleet, while yellow/blue may be a bit better at quickly expanding and diversifying and even attacking with some little jabs early on. Hmm... now I must decide.

3) dlwillson: Build G1 Dlwillson
	Felix: And there you have it. I think blue/red might be a bit stronger as a fortress, while yellow/blue is stronger as a banker.
	dlwillson: Hm... That might be a good summary. But, I think of banker as a defensive position. I think goldilocks is the most aggressive.

4) Felix: Build G1 Felix
	Felix: Interesting! I was under the impression that the fortress was a bit stronger in defensive play, since it generally requires you to go through small stars to get to my system, and small stars tend to run out in the endgame, whereas larges are typically available in the endgame, so there are more options for attacking a banker. I agree with you that Goldy might be the most aggressive though

5) dlwillson: Trade G1 Y1 Dlwillson
	Felix: I thought about attempting a 2-2 homeworld to make this a very tight and interesting game, but I'm not sure I'm brave enough to attempt that in a ladder game.

6) Felix: Trade G1 Y1 Felix

7) dlwillson: B G1 Dlwillson

8) Felix: Build G1 Felix

9) dlwillson: D G1 Dlwillson B2 Sea

10) Felix: T G1 R1 Felix

11) dlwillson: T G1 R1 Sea

12) Felix: Build R2 Felix

13) dlwillson: Build G1 Dlwillson

14) Felix: Discover R2 Felix Y1 Rhombus

15) dlwillson: Build Y2 Dlwillson

16) Felix: Build Y2 Felix

17) dlwillson: Discover Y1 Dlwillson Y2 Golden

18) Felix: Move R2 Rhombus Sea

19) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Golden
Build Y3 Dlwillson
Build R2 Sea
	Felix: Great move. You've given me a thinker early on in this game.

20) Felix: S G3 Felix
B R3 Felix
B R3 Sea
Pass
	Felix: There, that makes a bit more sense

21) dlwillson: Sacrifice Y2 Dlwillson
Discover R1 Sea G1 Forest
Move R1 Forest Felix
Catastrophe Felix R
	dlwillson: I don't know if that's the *best* move I could have made, but I'm pretty sure it's the most irritating move I can make. :-)

22) Felix: Sacrifice Y1 Felix
Move R2 Sea Felix
	Felix: And at the end of the day, isnt that what matters?:p
	dlwillson: I see you're irritating me back... :-)

Decisions, decisions...
	dlwillson: I see you're irritating me back... :-)

Decisions, decisions...

23) dlwillson: Sacrifice Y1 Golden
Move R2 Sea Dlwillson
	dlwillson: I could not resist; it was too tempting. Spring your evil trap...

24) Felix: T R3 Y3 Sea
	Felix: Hmm, I'm not so sure my evil trap is so evil after all. This isn't going at all how I hoped!

25) dlwillson: Build R1 Dlwillson

26) Felix: M Y3 Sea Felix

27) dlwillson: Build Y1 Dlwillson

28) Felix: T Y2 G2 Felix
	Felix: How did this all go so horribly wrong?

29) dlwillson: Move R1 Dlwillson Golden

30) Felix: B G1 Felix

31) dlwillson: Discover Y1 Golden B1 Sea

32) Felix: T G1 B1 Felix
	Felix: I think my biggest mistake was not playing the catastrophe in red a few turns back.

33) dlwillson: Build G1 Dlwillson

34) Felix: B B1 Felix

35) dlwillson: T R2 B2 Dlwillson

36) Felix: Discover B1 Felix B2 Trapezoid

37) dlwillson: Move B2 Dlwillson Trapezoid

38) Felix: Sacrifice G2 Felix
Build B2 Trapezoid
Build B3 Felix
Catastrophe Trapezoid Blue

39) dlwillson: Trade G1 B1 Dlwillson

40) Felix: Discover B1 Felix G2 Quadrilat
	Felix: Fool me once...

41) dlwillson: Discover B1 Dlwillson G2 Field
	dlwillson: I was expecting you to attack my system, but I suppose keeping a big blue is a better move. You're very hard to finish off.

42) Felix: Build B2 Quadrilat
	Felix: I do try to be a thorn in one's side :) Can't make it too easy now. This is the ladder!

43) dlwillson: B B2 Field

44) Felix: Move B3 Felix Field

45) dlwillson: Build B2 Field
Catastrophe Field B

46) Felix: Build B1 Quadrilat

47) dlwillson: Discover Y1 Dlwillson G2 Field

48) Felix: Trade B2 Y2 Quadrilat

49) dlwillson: Build Y1 Field

50) Felix: Build B2 Quadrilat

51) dlwillson: Build Y2 Dlwillson

52) Felix: Build Y3 Quadrilat

53) dlwillson: D Y2 Dlwillson B2 Sky

54) Felix: Discover B2 Quadrilat G1 Square
	Felix: Am I being annoying yet? :P I'm flirting with death on all sides here!
	dlwillson: Yes, very... Still thinking...

55) dlwillson: D R1 Golden G1 Forest

56) Felix: B B2 Quadrilat

57) dlwillson: M Y2 Sky Sea

58) Felix: Trade B2 R2 Quadrilat

59) dlwillson: T Y2 G2 Sea

60) Felix: B B2 Quadrilat

61) dlwillson: B G3 Sea

62) Felix: B R1 Quadrilat

63) dlwillson: S Y3 Dlwillson
M Y1 Sea Quadrilat
M Y1 Field Sea
M Y1 Sea Quadrilat
C Quadrilat Y

64) Felix: B B2 Square
	Felix: Phew, had to bust out the physical pyramids for that move. My brain is breaking.

65) dlwillson: Sacrifice G3 Sea
Build G3 Dlwillson
Build G3 Sea
Build G3 Sea
	dlwillson: Doomsday machines on the horizon... Desperate times. Desperate measures.

66) Felix: B B3 Square

67) dlwillson: Sacrifice G3 Sea
Build R2 Forest
Build R3 Forest
Build G3 Dlwillson

68) Felix: S B2 Square
T B3 Y3 Square
T B2 Y2 Quadrilat
	Felix: You didn't at all do what I expected and hoped when you catastrophed yellow. Great move.

69) dlwillson: Sacrifice Y1 Field
Move R3 Forest Quadrilat
	dlwillson: I didn't set up the plastic, but by my guess, if I hadn't done that, the game would have been over in two or three turns. Hopefully, it will take longer now.

70) Felix: S Y2 Quadrilat
M R2 Quadrilat Dlwillson
M Y3 Square Quadrilat

71) dlwillson: S R2 Forest
A Y3 Quadrilat
A R2 Dlwillson

72) Felix: S B1 Quadrilat
T B1 Y1 Quadrilat
	Felix: It will indeed. But I really can't tell if it will go your way or my way at this point! I am managing to hold on... and I hope that last moves puts you in a bit of a fix!
	Draw5PlayAll: I still have not been defeated legitimately in OTB Homeworlds. I think that says more about the nature of this game and its very low acknowledgement, even among gamers.

73) dlwillson: T G3 B3 Sea
	dlwillson: What is OTB Homeworlds?
	Felix: Wait, wait... I wanna take that back! Haha, ugh. I can't believe I  made such a rookie blunder at this crucial point. I totally overlooked that you could attack in two places, thinking you"d have to give up the r3 to dodge the green catastrophe at home.

	dlwillson: Yeah, I figured something like that, so I waited an hour for you to realize and take it back. 2 or 3 more turns.
	dlwillson: 6 more turns. 3 each.
	Felix: We could play it out, but I'll just save you the time and trouble. Good game! And no need to wait for me to realize mistakes. Just take advantage of them! And.... "I'll be baaaaaaaaaack!"
	dlwillson: Great! I look forward to it!

Draw5: What is OTB Homeworlds?
	Draw5PlayAll: Over the board, I.e. face to face
	Felix: Same here! Our games are always a blast, even if I'm really kicking myself for how I played in this one.

Draw5: it might also speak to how experience your Face-to-face opponents are :p
	Draw5PlayAll: 
	Draw5PlayAll:  
	Draw5PlayAll:     

  


32307)
Variants: "Unrated, Hard time"
Started: 2017.6.15, Ended: 2017.6.20
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: Homeworld Y2 B1 G3

2) Felix: Homeworld B1 G3 B3 *

3) wil: Build G1 Wil
	Felix: Oh, why not?
	wil: lol, goin for the instafreeze

4) Felix: Build B1 Felix

5) wil: Build G1 Wil
	Felix: Perhaps. Though I'm not sure if I want to go that route or just get an early medium and diversify.

6) Felix: T B3 Y3 Felix

7) wil: Discover G1 Wil Y3 Y3

8) Felix: B B2 Felix

9) wil: Build G1 Y3

10) Felix: T B2 G2 Felix

11) wil: Discover G1 Y3 Y2 Y2

12) Felix: B B2 Felix

13) wil: Sacrifice G3 Wil
Build G2 Wil
Build G2 Y3
Build G3 Y2

14) Felix: T B2 R2 Felix
	wil: experimentation

15) wil: Trade G2 R2 Wil
	Felix:  Interesting experiment! I like it. 

16) Felix: D G2 Felix B2 Rim

17) wil: Sacrifice G3 Y2
Build G2 Wil
Build G3 Wil
Build G3 Y2

18) Felix: B B2 Felix

19) wil: Sacrifice G3 Y2
Build G3 Y2
Build R1 Wil
Build R1 Wil

20) Felix: M R2 Felix Rim

21) wil: T R2 B2 Wil

22) Felix: T B2 Y2 Felix

23) wil: M R1 Wil Y3

24) Felix: S Y2 Felix
M G2 Rim Y3
M G2 Y3 Wil
C Wil Green

25) wil: B G1 Y2

26) Felix: B Y1 Felix

27) wil: D G1 Y2 Y3 Why3

28) Felix: B B2 Felix

29) wil: S G3 Y2
B G2 Y2
B G2 Y3
B G3 Why3

30) Felix: Move B1 Felix Rim

31) wil: M B2 Wil Y3

32) Felix: B B3 Felix

33) wil: Move G3 Why3 Wil

34) Felix: S B1 Rim
T B3 G3 Felix

35) wil: Trade G2 Y2 Y3

36) Felix: M G3 Felix Rim

37) wil: B G2 Wil

38) Felix: M Y1 Felix Rim

39) wil: S G3 Wil
Build G3 Wil
Build B1 Y3
Build B3 Y3

40) Felix: B Y1 Rim

41) wil: Move B2 Y3 Y2

42) Felix: M Y1 Rim Y3

43) wil: S Y2 Y3
D B3 Y3 R2 R2
M G1 Y3 R2

44) Felix: M G3 Rim Y3

45) wil: S G3 Wil
B G3 Wil
B B3 R2
B B3 Y2

46) Felix: Sacrifice R2 Rim
Attack R1 Y3
Attack G2 Y3

47) wil: T G1 Y1 R2

48) Felix: Move G3 Y3 Wil
	wil: Lol, I got greedy.... I should have sacked the g2 and played your plan and grew 2 yellows

49) wil: S G2 Y2
B G1 Wil
B Y2 R2
C Wil G

50) Felix: A B1 Y3

51) wil: Move B3 R2 Y3
	Felix: Except perhaps that wasn't my plan... :P
	wil: It wasn't your plan to blow up my y3?  And if I blew up my y3 after your g3 was in there would that not have affected you negatively??

52) Felix: Discover B2 Felix G2 Reggio

53) wil: Sacrifice B2 Y2
Trade B3 G3 R2
Trade B3 R3 Y3
	wil: I forgot to catastrophe

54) Felix: Sacrifice G2 Y3
Build B2 Y3
Build B3 Reggio
	Felix: You know, they say hindsight is 20/20...

I didn't reckon on you getting that y2 for some reason...

55) wil: Sacrifice Y2 R2
Move G3 R2 Felix
Move B3 Y2 Felix
	wil: it took me a while to figure out how to get it after plan A was foiled.

56) Felix: Sacrifice B3 Reggio
Trade Y1 R1 Y3
Trade B2 R2 Y3
Trade B2 R2 Reggio
Catastrophe Y3 Red

57) wil: Sacrifice G3 Felix
Build B2 Felix
Build B2 Felix
Build R1 Wil
	wil: a little squanking was in order

58) Felix: Sacrifice Y3 Felix
Move R2 Reggio Y3
Move R2 Y3 Wil
Move Y1 Rim Felix
Catastrophe Felix Blue
	Felix: These desperate times though.

59) wil: Sacrifice G1 Y2
Build R1 Wil
Catastrophe Wil R
	wil: My lowly little defense team has been highly concerned for a long time about being left behind with such responsiblity post that last big invasion and catastrophe...  he is pleased that the ole, you take one I'll take two has been initiated and prays dearly for its success.


	Felix: I guess it actually doesn't matter to much if you did or if I do it. Wow, this has been a fascinating game!
	wil: no kidding fun stuff and lol...I didn't want to catastrophe...i had some kind of plan for if you didn't do it to me...

	wil: and yeah...i love experimenting...every game is different but some can turn bizarre
	wil: That is an awesome end board...all pawns!!
	Felix: Awesome indeed! How did you manage to end yourself? The system usually won't let me do that.
	wil: I been buckin the system my whole life.
	Felix: This could be an interesting game for homeworlds theater...
	Draw5PlayAll: I think you guys should start using Altair, Betelgeuse, Caster (?), etc as your star names if you are considering trying to get your games on that show. I am not trying for that so I use my own name convention.
	wil: The names are changed for the show... Converted from whatever is used.
.there are two in editing and six chosen and in the pipeline now... 
	wil: And I appreciate you using my convention.. Are you also using why3, rtoo, gee1, bwon etc when stars duplicate?
	Draw5PlayAll: I used to use e.g. B3' and G2'' (that is two ' characters) but I switched to B3b and G2c.
	Felix: I'm glad there are so many shows in production! I'd also like to submit this recent game I played against ts52 (#32480). It's relatively short, but one of the most fascinating games I've played in a while. It ended with me only have a small red in my possession!

http://superdupergames.org/?page=archive_play&gid=32480
	Draw5PlayAll: "Two in editing and six chosen and in the pipeline" huh? What does this mean and where are you getting it from?


32398)
Variants: "Unrated, Hard time"
Started: 2017.6.15, Ended: 2017.6.16
Participants: Draw5PlayAll (S), Felix (N)
Winner: Felix

1) Felix: H Y1 B3 G3

2) Draw5PlayAll: Homeworld G3 Y1 Y3 *
	Felix: Hello again. Have fun!
	Draw5PlayAll: Are we playing 2 games at once or am I remembering things wrong?

3) Felix: B G1 Felix
	Draw5PlayAll: If I do not then I have to play an unfamiliar setup against a stronger player with a tempo less. I think we should make this interesting.
	Felix: I'm up for interesting and fun, and casual. I think you're quickly getting very skilled at this though and wouldn't necessarily consider myself a stronger player. As far as I know we just have this one game going right now

4) Draw5PlayAll: Build Y1 Draw5playall

5) Felix: T G3 Y3 Felix

6) Draw5PlayAll: Discover Y1 Draw5playall B2 B2

7) Felix: Build G1 Felix
	Draw5PlayAll: *access denied*

8) Draw5PlayAll: Build Y2 Draw5playall

9) Felix: Build G1 Felix
	Draw5PlayAll: The annoying thing is that I have to get blue quickly.

10) Draw5PlayAll: Move Y2 Draw5playall B2

11) Felix: Trade G1 B1 Felix

12) Draw5PlayAll: Build Y2 Draw5playall
	Felix: Yeah.... starting without blue is a really stiff handicap. That's why trying to do the insta-freeze start like you did is really only effective when done with blue.

13) Felix: Discover Y3 Felix G2 Roam
	Draw5PlayAll: Or green... if someone picks a G1 star you can do G1 B2 G3 and be in the blue economy via your star.
	Felix: That's true, but most people start with a large green ship, so there's not really any point in trying to freeze out green

14) Draw5PlayAll: Move Y2 Draw5playall Roam
	Felix: Wait... that's a bad idea.

15) Felix: Move Y3 Roam Draw5playall

	Felix: It was an interesting experiment though. And hey, now we know!
	Draw5PlayAll: Aww, it did not let me blow up your yellow star. Rematch?
	Felix: Sure! I'm always up for a rematch. Interesting game!


32399)
Started: 2017.6.16, Ended: 2017.7.12
Participants: SilentTitan (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y2 B3 G3

2) SilentTitan: Homeworld R1 B3 G3

3) Felix: B G1 Felix

4) SilentTitan: Build G1 Silenttitan
	Felix: Hello again. Hope you have fun!
	SilentTitan: Hello same back at ya

5) Felix: T G1 R1 Felix

6) SilentTitan: Trade G3 R3 Silenttitan

7) Felix: B G1 Felix

8) SilentTitan: Build G1 Silenttitan

9) Felix: Discover G1 Felix B1 Ender

10) SilentTitan: Trade G1 Y1 Silenttitan

11) Felix: Build G1 Ender

12) SilentTitan: Build G2 Silenttitan

13) Felix: Build G2 Felix

14) SilentTitan: Discover G2 Silenttitan Y2 Sol
	Felix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!

15) Felix: T G1 Y1 Ender

16) SilentTitan: Build Y1 Silenttitan

17) Felix: Build Y2 Ender

18) SilentTitan: Discover Y1 Silenttitan B2 Soul

19) Felix: M Y1 Ender Soul

20) SilentTitan: Sacrifice G2 Sol
Build Y2 Soul
Build Y3 Silenttitan

21) Felix: S G2 Felix
B Y3 Ender
B Y3 Soul

22) SilentTitan: Discover Y3 Silenttitan G2 Sole
Catastrophe Soul Yellow

23) Felix: Discover Y2 Ender G2 Game

24) SilentTitan: Discover Y3 Sole G1 Soul

25) Felix: B Y1 Game

26) SilentTitan: Build G2 Silenttitan

27) Felix: B G2 Ender

28) SilentTitan: Discover G1 Silenttitan B2 Solaris

29) Felix: T G1 B1 Ender

30) SilentTitan: Build G1 Silenttitan

31) Felix: Build G3 Ender

32) SilentTitan: Build G3 Solaris

33) Felix: Trade G3 Y3 Ender

34) SilentTitan: Trade G1 B1 Silenttitan

35) Felix: Move B1 Ender Game

36) SilentTitan: Build Y1 Silenttitan

37) Felix: Build B2 Game

38) SilentTitan: Move Y3 Soul Game

39) Felix: Sacrifice Y2 Game
Move B1 Game Silenttitan
Move B2 Game Silenttitan
Catastrophe Silenttitan Blue

40) SilentTitan: Discover Y3 Game G1 Sol

41) Felix: Build R1 Felix

	SilentTitan: Good game thaks
	Felix: Likewise! I enjoyed it. Thanks for playing!


32413)
Variants: "Unrated, Hard time"
Started: 2017.6.17, Ended: 2017.7.10
Participants: Draw5PlayAll (S), Felix (N)
Winner: Felix

1) Felix: H B2 Y3 G3

2) Draw5PlayAll: Homeworld B3 R1 G3

3) Felix: B G1 Felix

4) Draw5PlayAll: Build G1 Draw5playall

5) Felix: T G1 R1 Felix

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) Felix: B R2 Felix
	Draw5PlayAll: Sometimes I have thought about a blue-less variant where you start with 3 ships, one of each size. It certainly eases the opening.
	Felix: That would be interesting, but would also probably increase the first player advantage rather greatly. I suppose you could alternate choices, but that's essentially what you do in the first few rounds, anyway. It may unnecessarily complicate the initial setup rather than lettting it happen organically  through play, even if the first few moves are usually a bit dru
	Felix: Dry, that is.

8) Draw5PlayAll: Build R2 Draw5playall

9) Felix: B R2 Felix
	Draw5PlayAll: I sometimes wonder if I would be better off taking (say) the yellow economy while you grab red, and then trading into red once I break the medium barrier.

10) Draw5PlayAll: Trade R2 Y2 Draw5playall
	Felix: That's often the question! Which path is better? I'm still figuring it out myself...

11) Felix: D R2 Felix G1 Gingham

12) Draw5PlayAll: Build Y1 Draw5playall

13) Felix: T R2 Y2 Felix

14) Draw5PlayAll: Discover Y2 Draw5playall G2 G2

15) Felix: M Y2 Felix Gingham

16) Draw5PlayAll: Move R1 Draw5playall G2

17) Felix: B R2 Gingham

18) Draw5PlayAll: Build Y1 G2

19) Felix: S Y2 Gingham
M R2 Gingham G2
M R2 Gingham G2

20) Draw5PlayAll: Build R2 G2
Catastrophe G2 Red

21) Felix: B R1 Felix
	Draw5PlayAll: [Begin Narration]

We were shocked to find that once again the aliens from the planet Felix have pursued hostile action. Noticing dangerous radiation buildup from the presence of three red ships in the same star system, we decided on a bold plan: build a fourth red ship and trigger a radiation catastrophe. It appears the plan has worked, as all enemy ships are destroyed and we now control our colony system again.

22) Draw5PlayAll: Build G1 Draw5playall
	Felix: Plan thwarted. Begin rebuilding of primary weapon systems.

23) Felix: B R2 Felix
	Draw5PlayAll: We are attempting to regroup as the attack left us with zero weaponry other than our red star.

24) Draw5PlayAll: Trade G1 B1 Draw5playall

25) Felix: D R2 Felix Y1 Aegis

26) Draw5PlayAll: Sacrifice B1 Draw5playall
Trade Y2 R2 G2

27) Felix: Discover R1 Felix B1 Stash
	Draw5PlayAll: Sensing the possibility of a hostile "visitor" we have dropped our plans with the blue economy and instead we have gained a weapon.

28) Draw5PlayAll: Build Y2 G2
	Felix: There's only one solution to the opponent having weapons.... MORE WEAPONS!
	Draw5PlayAll: I see in your log that you captured the Klingons long ago. We are more interested in wormhole technology.

29) Felix: Sacrifice G3 Felix
Build R2 Aegis
Build R3 Stash
Build R3 Felix

30) Draw5PlayAll: Build R3 G2
	Felix: Ah, but our newly acquired Klingon warships have just returned from hyperspace...
	Draw5PlayAll: Red alert!

31) Felix: T R3 G3 Felix

32) Draw5PlayAll: Build Y2 Draw5playall

33) Felix: Trade R3 Y3 Stash

34) Draw5PlayAll: Trade Y2 B2 Draw5playall

35) Felix: Sacrifice G3 Felix
Build R3 Stash
Build R3 Felix
Build Y2 Stash
	Draw5PlayAll: I am a little bit concerned about your empire's rapid growth and colonization.

36) Draw5PlayAll: Move B2 Draw5playall G2
	Felix: Conquest is our prime directive. Your concerns do not concern us.
	Felix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!

37) Felix: S Y3 Stash
M R1 Stash G2
M R2 Aegis G2
C G2 Red
M R3 Stash G2

38) Draw5PlayAll: Sacrifice Y2 G2
Discover Y1 G2 G1 G1
Move B2 G2 G1
	Draw5PlayAll: Grrrr

39) Felix: M R3 Felix G1

40) Draw5PlayAll: Sacrifice Y1 G1
Move B2 G1 Felix
	Felix: Just for fun :)

41) Felix: M R2 Aegis Felix

42) Draw5PlayAll: Discover B2 Felix G1 G1b

43) Felix: M Y2 Stash G2

44) Draw5PlayAll: Build Y1 Draw5playall
	Felix: The system says you are away. Yet you are here.

45) Felix: Move R3 G2 G1b

46) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover B2 G1b G3 G3

47) Felix: Move Y2 G2 G3
	Draw5PlayAll: You are unable to catch me as I have a wormhole factory that can dodge any intruders.

48) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover B2 G3 Y2 Y2
	Felix: But you will run out of wormholes eventually... and then my warships will feed on your cold blue corpse. :)

49) Felix: M Y2 G3 Y2

50) Draw5PlayAll: Discover B2 Y2 Y3 Y3
	Felix: Round and round the mulberry bush... interesting that all the stars in the game are ones you created.

51) Felix: Move Y2 Y2 G1b
	Draw5PlayAll: You are unable to keep this up forever, or else we get a dr... wait, SDG does not allow draws of any form. I wonder if I can hijack the POST request for a Martian Chess draw offer.
	Draw5PlayAll: Okay, so I tried just now to copy the form element from a Martian Chess game and then change what was required... and nothing happened.

52) Draw5PlayAll: Build G1 Draw5playall

53) Felix: Trade R2 G2 Felix

54) Draw5PlayAll: Build G2 Draw5playall

55) Felix: B G2 Felix

56) Draw5PlayAll: Trade G2 Y2 Draw5playall

57) Felix: D G2 Felix B1 Bazoik

58) Draw5PlayAll: Trade G1 R1 Draw5playall

59) Felix: B R2 G1b

60) Draw5PlayAll: Build G1 Draw5playall

61) Felix: B G2 Bazoik

62) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2

63) Felix: B G3 Felix

64) Draw5PlayAll: Build G3 Draw5playall

65) Felix: T G3 Y3 Felix

66) Draw5PlayAll: Build G3 Y2

67) Felix: D R2 G1b B2 Calypso

68) Draw5PlayAll: Move R1 Draw5playall Y2

69) Felix: S Y2 G1b
M G2 Bazoik Calypso
M G2 Calypso Draw5playall

70) Draw5PlayAll: Trade G3 B3 Draw5playall

71) Felix: B G3 Bazoik

72) Draw5PlayAll: Attack G2 Draw5playall

73) Felix: S G3 Bazoik
B G3 Bazoik
B Y1 Felix
B R2 Calypso
	Draw5PlayAll: Wow. I actually have a fighting chance now!

74) Draw5PlayAll: Sacrifice B2 Y3
Trade G3 R3 Y2
Trade R1 Y1 Y2
	Draw5PlayAll: Homeworld One may have to capitulate. The moment you have to sac a B2, something is wrong.

75) Felix: Move Y1 Felix G1

76) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Y2
Build R1 Y2
	Felix: Usually, yeah :P
	Draw5PlayAll: That changed a lot!

77) Felix: Trade G3 Y3 Bazoik

78) Draw5PlayAll: Discover Y1 Y2 B1 B1
	Felix: Now it gets interesting!

79) Felix: Build G3 Bazoik

80) Draw5PlayAll: Sacrifice G3 Y2
Build G3 Y2
Build Y1 Draw5playall
Build Y2 B1

81) Felix: Sacrifice Y3 Felix
Move R3 G1b Y2
Move R3 G1 Y2
Catastrophe Y2 Red
Move R2 Calypso B1

82) Draw5PlayAll: Trade G2 R2 Draw5playall

83) Felix: Sacrifice G3 Bazoik
Build R1 Calypso
Build R3 B1
Build R3 Felix

84) Draw5PlayAll: Sacrifice Y2 B1
Discover Y1 B1 G2 G2
Move R2 Draw5playall G2

85) Felix: Sacrifice G2 Bazoik
Build Y2 G1
Build Y3 Bazoik

86) Draw5PlayAll: Build R3 G2

87) Felix: Sacrifice Y2 G1
Move R2 Calypso Draw5playall
Move R1 Calypso Draw5playall

88) Draw5PlayAll: Move R2 G2 G1

89) Felix: Sacrifice Y1 G1
Discover R2 B1 Y2 Insert_coin

90) Draw5PlayAll: Discover G3 Y2 Y1 Y1

91) Felix: Trade R3 B3 B1

92) Draw5PlayAll: Sacrifice G1 Y2
Build Y2 G2

93) Felix: Sacrifice B3 B1
Trade R1 B1 Draw5playall
Trade R2 B2 Draw5playall
Pass
Catastrophe Draw5playall Blue

94) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 G2 Bazoik
Move Y2 G2 Bazoik
Catastrophe Bazoik Yellow
	Draw5PlayAll: Nice move! You got me, I think.

95) Felix: T R3 Y3 Felix
	Draw5PlayAll: Well, I can fight on I guess...

96) Draw5PlayAll: Build Y1 Draw5playall

97) Felix: B R1 Felix

98) Draw5PlayAll: Move Y1 Draw5playall Felix

99) Felix: S Y3 Felix
M R2 Insert_coin Draw5playall
M R1 Felix Draw5playall
M R1 Felix Draw5playall
C Draw5playall Red
	Felix: Thank you! It was a good game. I didn't expect you to draw it out longer by catastropheing my two large yellows, so that was a good move. Well played! I've enjoyed seeing you get better. Maybe I'll face you in the ladder soon!
	Draw5PlayAll: My plan is to get to #1 by waiting until you are off of there. But you will very likely kick me off.
	Felix: Currently wil is number one. There are plenty of other strong players you need to worry about more than me!
	Draw5PlayAll: Yeah, I think I have a good shot at beating wil, but sadly I am challenging dlwillson and he will likely kill me with the red economy.



32301)
Variants: "Unrated"
Started: 2017.6.18, Ended: 2017.7.17
Participants: wil (S), PBCrunch (N)
Winner: wil

1) PBCrunch: Homeworld Y3 B2 G3

2) wil: H Y2 B1 G3

3) PBCrunch: Build G1 Pbcrunch

4) wil: B G1 Wil



32428)
Variants: "Hard time"
Started: 2017.6.18, Ended: 2017.6.21
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) wil: Homeworld G2 Y1 Y3 *

3) dlwillson: B G1 Dlwillson

4) wil: B Y1 Wil

5) dlwillson: T G3 Y3 Dlwillson

6) wil: Discover Y1 Wil B3 B3

7) dlwillson: B Y2 Dlwillson
	wil: this experiment is not going to end well

8) wil: Trade Y1 B1 B3
	dlwillson: If I were doing the experiment, I'd have built a y2. As it is, you can't shoot me now.
	wil: I could not...catastrophe

9) dlwillson: T Y3 G3 Dlwillson
	wil: It was a bad plan, poorly executed
	dlwillson: Huh. You're right. Good point.

10) wil: B Y1 Wil
	wil: Wow, I expected you to come right in and end the game!

11) dlwillson: B Y2 Dlwillson

12) wil: Discover Y1 Wil G3 G3
	dlwillson: Huh. I guess I could've. You have no red or blue.

13) dlwillson: S Y2 Dlwillson
D Y2 Dlwillson B2 Sea
M G1 Dlwillson Sea

14) wil: B Y2 G3

15) dlwillson: B Y2 Sea

16) wil: D Y1 G3 G2 G2

17) dlwillson: M Y2 Sea B3

18) wil: Build Y3 G2

19) dlwillson: Build Y3 Sea

20) wil: Sacrifice B1 B3
Trade Y3 R3 G2

21) dlwillson: Sacrifice Y3 Sea
Move Y2 Sea B3
Move Y2 B3 Wil
Move Y2 B3 Wil
Catastrophe Wil Y
	dlwillson: Good game! Thank you! Weird, though, with all the yellow and green. I could not take proper advantage of all the things you couldn't do until several turns in.



32315)
Variants: "Unrated, Hard time"
Started: 2017.6.18, Ended: 2017.6.20
Participants: Felix (S), dlwillson (N)
Winner: Felix

1) dlwillson: H B3 Y1 G3 Dlwillson

2) Felix: H B2 R3 G3

3) dlwillson: B G1 Dlwillson
	Felix: Have fun again! 

4) Felix: B G1 Felix
	dlwillson: You too!

5) dlwillson: T G1 R1 Dlwillson
	Felix: I'm out to prove that I can only win in games that don't really matter ;)
	dlwillson: You very nearly beat me in that game!

6) Felix: T G1 Y1 Felix
	Felix: It was definitely closer than I expected! I thought I was an instant goner after losing the first half of my system. Every game with you has been a nail biter lately :)

7) dlwillson: B G1 Dlwillson
	dlwillson: If I hadn't had the cat y *and* been popping green  battleships at a critical moment, you'd have win. If you hadn't botched the response to my attack, we'd still be in that game.

8) Felix: B Y1 Felix
	Felix: It's true, but you live and you learn! You played extremely well and fended off my attack perfectly. I kept thinking I had all your possible responses covered and you kept surprising me

9) dlwillson: T G3 Y3 Dlwillson

10) Felix: B Y2 Felix

11) dlwillson: B Y2 Dlwillson

12) Felix: D Y1 Felix G1 Borgus

13) dlwillson: D Y2 Dlwillson B2 Sea

14) Felix: Discover Y1 Felix B1 Ender

15) dlwillson: T Y3 B3 Dlwillson

16) Felix: S G3 Felix
B Y2 Borgus
B Y3 Ender
B Y3 Felix

17) dlwillson: S G1 Dlwillson
B Y3 Sea

18) Felix: Sacrifice Y2 Borgus
Move Y1 Borgus Sea
Move Y1 Ender Sea
Catastrophe Sea Yellow

19) dlwillson: Trade B3 G3 Dlwillson

20) Felix: Trade Y3 G3 Felix
	dlwillson: Hm. I don't think I'll be recovering from that, but I suppose we'll see. Nice sequence.

21) dlwillson: B R1 Dlwillson
	Felix: Thanks! I've been making a lot of silly mistakes in my games lately though, so you never know.

22) Felix: Build Y1 Felix

23) dlwillson: T R1 Y1 Dlwillson

24) Felix: Sacrifice G3 Felix
Build Y2 Ender
Build Y2 Ender
Build Y3 Felix
	Felix: But as Gollum would say, "We've a ways to go yet, precious."

25) dlwillson: D Y1 Dlwillson G2 Field
	dlwillson: Here we go again! :-)

26) Felix: Move Y2 Ender Field

27) dlwillson: Discover Y1 Field G1 Forest
	Felix: I'll try not to repeat myself :P

28) Felix: Move Y1 Felix Forest

29) dlwillson: Build R1 Dlwillson

30) Felix: Build Y3 Field

31) dlwillson: Sacrifice R1 Dlwillson
Attack Y1 Forest

32) Felix: Trade Y2 R2 Felix

33) dlwillson: Move Y1 Forest Field

34) Felix: Move Y2 Field Forest
	dlwillson: s r; a y1
b y2
s y2; c y # three yellow battleships, very neat

35) dlwillson: Discover Y1 Forest Y2 Solar
	Felix: The dance of the yellows...
	dlwillson: I guess I could drive the y1 in, rather than build the y2... No, that's not any better. Hmm...
	dlwillson: Or you could do that, and change the choices... Hm... I think I'm going to have to setup some plastic and have a think. I see lots of bad choices and need to figure out which one is least bad.
	Felix: No problem. Take your time! I'm glad to have created a conundrum for you :) You consistently surprise me with the clever ways you wriggle out of what I think are foolproof traps though.

36) Felix: T Y3 G3 Ender

37) dlwillson: Discover Y1 Field Y3 Golden

38) Felix: M Y2 Forest Felix

39) dlwillson: B G1 Dlwillson

40) Felix: Sacrifice Y3 Felix
Move G3 Ender Field
Move Y3 Field Dlwillson
Move G3 Field Dlwillson

41) dlwillson: Sacrifice G3 Dlwillson
Build G1 Dlwillson
Build Y3 Golden
Build R1 Dlwillson

42) Felix: Sacrifice R2 Felix
Attack R1 Dlwillson
Attack R1 Dlwillson
	dlwillson: Nice! I've been expecting something along that line. Let me see if I can find an escape route.

43) dlwillson: Sacrifice Y3 Golden
Move Y1 Golden Solar
Move Y1 Solar Dlwillson
Move Y1 Solar Dlwillson
Catastrophe Dlwillson Y
	dlwillson: I really can't, but maybe I can stave off the inevitable for a move or two.

44) Felix: B G1 Dlwillson
C Dlwillson Green
	Felix: Yep, I think I've got your number now. This was an interesting game. Quite the yellow struggle!

	dlwillson: Another excellent game. Well done.
	Felix: Good game as always! I'll see you on the ladder soon probably :)


32351)
Variants: "Hard time"
Started: 2017.6.19, Ended: 2017.6.20
Participants: Ausmuh (S), Felix (N)
Winner: Felix

1) Felix: Pass

2) Ausmuh: Homeworld G3 R1 B3
	Felix: Hello again! I wanted to see if the system would just let me pass my first turn since I actually tend to prefer going second. It does! If you'd also rather go second, though, just pass again and I'll take my turn first.
	Ausmuh: Hey, groovy! No worries here, I've thought about that myself. It seems Pyramid Arcade has encouraged some interesting thoughts for Homeworlds. I saw the thread at BGG a player exploring same sized homeworlds as an option too.

This is the only game I'm starting this time so I shouldn't overwhelm myself! GL;HF

3) Felix: Homeworld R2 B2 G3 *

4) Ausmuh: Build B1 Ausmuh
	Felix: That player on BGG was actually me! Haha, thanks for reminding me that I want to experiment with it more!
	Ausmuh: That's awesome! I really think there is something there and it's just uncharted territory. I look forward to seeing that chapter develop.

5) Felix: Build G1 Felix

6) Ausmuh: Build B1 Ausmuh

7) Felix: Trade G1 B1 Felix

8) Ausmuh: Trade B1 Y1 Ausmuh

9) Felix: Build G1 Felix

10) Ausmuh: Trade B1 G1 Ausmuh

11) Felix: T G1 Y1 Felix

12) Ausmuh: Discover G1 Ausmuh B2 Zog

13) Felix: B G1 Felix

14) Ausmuh: Build B1 Ausmuh

15) Felix: Trade G1 R1 Felix

16) Ausmuh: Build G1 Zog

17) Felix: B R1 Felix

18) Ausmuh: Trade G1 Y1 Zog

19) Felix: Build Y2 Felix

20) Ausmuh: Build Y2 Zog

21) Felix: Sacrifice Y2 Felix
Move R1 Felix Ausmuh
Move R1 Felix Ausmuh

22) Ausmuh: Attack R1N Ausmuh
	Felix: Not positive if this will work out... but here goes!
	Ausmuh: I was wishing I could attack both of those when they came. :) Stressful being connected like this. I like it!

23) Felix: Build R2 Ausmuh
Catastrophe Ausmuh Red

24) Ausmuh: Trade B1 R1 Ausmuh
	Felix: It definitely changes the tone of the whole game and makes it much more intense rather than being a slow, more casual build in the beginning like most games!

25) Felix: Build Y2 Felix

26) Ausmuh: Discover Y2 Zog G1 Alt

27) Felix: Build G1 Felix

28) Ausmuh: Build G2 Zog
	Ausmuh: My green might face the same fate! I could really use a R2 to quell this uprising.

29) Felix: Sacrifice Y2 Felix
Move G3 Felix Ausmuh
Move G1 Felix Ausmuh
	Ausmuh: If I move a y2 in to apply pressure, you simply attack it. It doesn't seem like I could take your ships faster then you could blow up my green. Hmmm

30) Ausmuh: Attack G3N Ausmuh
	Felix: Yeah, I think I'll be able to blow up your star first!
This has been a strange game, but pretty fun! If you want to have a rematch, we can play a more normal game that isn't so tight.
	Ausmuh: All's fair in love and war. :) I don't mind losing to small universes. I dig the unexplored. But I will accept your standing challenge again for sure.

I liked your clever thinking on passing the first turn and I think small universes have a place in the game. Also curious about identical homeworlds too.

31) Felix: Build G2 Ausmuh
Catastrophe Ausmuh Green
	Felix: Very fun little game! Thanks for playing. I do think there are untapped possibilities when it comes to intentionally creating a tiny universe with same size stars, but I haven't really figured them out yet. I think the game is balanced enough that it won't have a HUGE impact on the strategy, but I do love finding those little nuances to this game that make a difference!

I look forward to our rematch. I just set up an unrated standing challenge if you want to play without putting your rating on the line every time.



32443)
Variants: "Hard time"
Started: 2017.6.20, Ended: 2017.6.26
Participants: Felix (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld G3 Y1 B3

2) Felix: H G2 R3 B3
	Ausmuh: Just saw your message after I accepted. I'm not too worried about my rating at the moment but I appreciate the thought. Have fun. Don't feel obligated to play 'standard' if you don't want to. It's all good to me. Have fun!

3) Ausmuh: Build B1 Ausmuh
	Felix:  Yeah, I'm not too worried about ratings either. If my sense of self worth is determined by an arbitrary number on an online game website, I have bigger problems to worry about :p  and I usually start with a large green shit, so this is fairly non-standard for me. We'll see how it plays out! Have a good game! 

4) Felix: Build B1 Felix
	Felix: Oh, I'm so sorry. I just noticed the typo in my last comment, hahaha. I meant SHIP!!!

5) Ausmuh: Discover B1 Ausmuh G2 Zog
	Ausmuh: Haha no worries! I had a good laugh :D

6) Felix: Trade B1 Y1 Felix

7) Ausmuh: Trade B1 Y1 Zog

8) Felix: Build Y2 Felix

9) Ausmuh: Build Y2 Zog

10) Felix: Trade Y2 R2 Felix

11) Ausmuh: Build B1 Ausmuh

12) Felix: Build Y2 Felix

13) Ausmuh: Sacrifice B1 Ausmuh
Trade Y1 R1 Zog

14) Felix: Build B1 Felix

15) Ausmuh: Build B1 Ausmuh

16) Felix: Build R1 Felix

17) Ausmuh: Build Y1 Zog

18) Felix: Build R1 Felix
Catastrophe Felix Red

19) Ausmuh: Trade B3 R3 Ausmuh
	Felix: This is a fun (and probably stupid) way to attack :)

20) Felix: Trade B1 R1 Felix
	Ausmuh: That's clever, in the right situation it may be quite the problem for me. Hope this isn't one!

21) Ausmuh: Build B1 Ausmuh
	Draw5PlayAll: About Felix's second comment: that is one of the thing I most hate about curse words: a lot of them are one letter away from perfectly honest and acceptable words.  
	Felix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!
	Ausmuh: Enjoy!

22) Felix: D Y1 Felix G1 Brovurst

23) Ausmuh: Move B1 Ausmuh Zog

24) Felix: B Y2 Brovurst

25) Ausmuh: Discover Y1 Zog G1 Bog

26) Felix: Build Y3 Felix
	Ausmuh: Welcome back! Now... what was my secret plan again??

27) Ausmuh: Build Y3 Bog
	Felix: Thank you! And don't worry... I've forgotten my secret plan too!

28) Felix: Sacrifice Y2 Brovurst
Move Y3 Felix Ausmuh
Move B3 Felix Ausmuh

29) Ausmuh: Attack Y3S Ausmuh
	Felix: Ah, yes, that's what it was. I hope this works!
	Ausmuh: Ah! Maybe, I think you might need an r2 here.

I'll take a 3pip
You take my R3
I sac to take R3
You sac to take R3

Wait a minute...... Here we go!

30) Felix: Move B3 Ausmuh Felix
	Ausmuh: This is a interesting situation. I will be putting this one down in plastic to stare at some time. :)

31) Ausmuh: Trade B1 G1 Ausmuh
	Felix: Wait a second. That didn't work at all :P Retreat! Retreat!

32) Felix: B Y2 Felix
	Ausmuh: Ugh. Hindsight is 20/20.

Too bad for me that I can't just move in my yellows. Homeworlds can be quite delicate. Hopefully I don't waste my newly acquired advantage.

33) Ausmuh: Build G2 Ausmuh
	Felix:  Indeed.  Looking at a situation before you move and after the move can be totally different  animals. I do have a very steep hill to climb up now… But anything can happen! :-) 

34) Felix: D Y2 Felix G3 Florist

35) Ausmuh: Sacrifice Y2 Zog
Move G1 Ausmuh Felix
Move G2 Ausmuh Felix

36) Felix: D R1 Felix G3 Hosget

37) Ausmuh: Sacrifice Y3 Bog
Discover R1 Zog B3 Log
Move B1 Zog Ausmuh
Move Y1 Bog Log
	Felix: Walking a knife's edge!
	Ausmuh: Haha, so good!
I would have traded for an R2 but this seems to work! How in the hell can I get the 4th green! :)

38) Felix: S B3 Felix
T Y2 G2 Florist
T R1 G1 Hosget
Pass
	Felix:  If I had traded for an hour or two, you could've just built that  last green right away and finished off my star. As it is, I think I only delayed the inevitable a turn. Good play! 

39) Ausmuh: Sacrifice R3 Ausmuh
Attack Y2S Felix
Pass
Pass
	Felix:  I'm game! Very well played. 
	Felix:  Good game* 
	Ausmuh: Thanks, good game! The self destruct didn't work out this time but still a clever thought! 
	Felix: I like to try to think outside the box sometimes. Sometimes it pays off.... sometimes it doesn't!



32306)
Started: 2017.6.20, Ended: 2017.8.26
Participants: MobyNostromo (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) MobyNostromo: H G1 B2 Y3

3) Draw5PlayAll: Homeworld G1 B2 G3 *

4) MobyNostromo: Build Y1 Mobynostromo

5) Draw5PlayAll: Build G1 Draw5playall

6) MobyNostromo: D Y1 Mobynostromo Y3 Tweety

7) Draw5PlayAll: Trade G3 Y3 Draw5playall

8) MobyNostromo: Build Y1 Mobynostromo

9) Draw5PlayAll: Build G2 Draw5playall

10) MobyNostromo: T Y3 G3 Mobynostromo

11) Draw5PlayAll: Discover G1 Draw5playall Y3 Y3

12) MobyNostromo: T G3 R3 Mobynostromo

13) Draw5PlayAll: Build G2 Draw5playall

14) MobyNostromo: Build Y1 Mobynostromo

15) Draw5PlayAll: Build Y2 Draw5playall

16) MobyNostromo: D Y1 Mobynostromo G3 Krypton

17) Draw5PlayAll: Build G2 Y3

18) MobyNostromo: B Y2 Mobynostromo

19) Draw5PlayAll: Trade Y2 R2 Draw5playall

20) MobyNostromo: B R1 Mobynostromo

21) Draw5PlayAll: Discover G2 Draw5playall B3 B3

22) MobyNostromo: M R1 Mobynostromo Y3

23) Draw5PlayAll: Build R1 Draw5playall

24) MobyNostromo: A G1 Y3

25) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack G1 Y3
Attack R1S Y3

26) MobyNostromo: B R1 Mobynostromo

27) Draw5PlayAll: Build G3 B3

28) MobyNostromo: M R1 Mobynostromo Krypton

29) Draw5PlayAll: Sacrifice G3 B3
Build G3 B3
Build G3 Y3
Build R2 Draw5playall

30) MobyNostromo: Build Y2 Krypton

31) Draw5PlayAll: Build R2 Y3

32) MobyNostromo: M Y1 Tweety Mobynostromo

33) Draw5PlayAll: Trade G3 B3 B3

34) MobyNostromo: B R2 Krypton

35) Draw5PlayAll: Sacrifice G3 Y3
Build G3 Y3
Build G3 B3
Build B1 B3

36) MobyNostromo: M Y1 Mobynostromo Y3

37) Draw5PlayAll: Discover G3 Y3 B1 B1

38) MobyNostromo: S Y2 Krypton
M Y1 Mobynostromo Y3
M Y2 Mobynostromo Y3
C Y3 Y

39) Draw5PlayAll: Sac G3 B3
Build G1 B1
Build G2 B1
Build G3 B3

40) MobyNostromo: B Y1 Krypton

41) Draw5PlayAll: Trade R1 B1 Draw5playall
	Draw5PlayAll: That hurt you more than it hurt me, and you STILL have no green!
	MobyNostromo: Yeah, but it was fun to do. Fun is good - you should try it sometime.

42) MobyNostromo: B R1 Mobynostromo

43) Draw5PlayAll: Discover B1 Draw5playall R3 R3

44) MobyNostromo: T R1 Y1 Mobynostromo

45) Draw5PlayAll: Trade G3 Y3 B1

46) MobyNostromo: T R3 G3 Mobynostromo

47) Draw5PlayAll: Sacrifice Y3 B1
Move G3 B3 Mobynostromo
Move G2 B3 Mobynostromo
Move B1 B3 Mobynostromo
Catastrophe Mobynostromo Green

48) MobyNostromo: T Y1 R1 Mobynostromo

49) Draw5PlayAll: Sacrifice G2 B1
Build B2 Mobynostromo
Build B3 Mobynostromo
Catastrophe Mobynostromo Blue

	Draw5PlayAll: Good try... the instafreeze is powerful.
	MobyNostromo: Cool. I'm still learning, so I have this incredible journey with this game. I'm actually quickly falling in love with Homeworlds. It is an amazing game with so many possibilities. I guess I'm at that stage in discovering a game where I'm enrapt in wonder at everything all around me. Homeworlds is just awesome!!


32479)
Variants: "Hard time"
Started: 2017.6.21, Ended: 2017.6.28
Participants: Felix (S), wil (N)
Winner: wil

1) wil: Homeworld B2 Y1 G3

2) Felix: H R2 B3 G3

3) wil: Build G1 Wil
	Felix: Looks like you got to me before I had a chance to challenge dlwillson :) good luck and have fun! I hope this one is as interesting as our last bout.

4) Felix: B G1 Felix
	wil: oops...

5) wil: Trade G1 Y1 Wil
	Draw5PlayAll: Felix, you COULD have dropped to position 6 and then challenged dlwillson again.
	Felix: And run from a fight? Never, sir! Not when a captain's honor is on the line!

6) Felix: T G1 Y1 Felix

7) wil: B Y2 Wil
	Felix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!
	wil: No worries....have fun...make some.jiffy pop!   I got over 40 days under the stars last year....on 15 so far this year.

8) Felix: B Y2 Felix

9) wil: D Y1 Wil G3 G3
	Felix:  Oh, I do love jiffy pop! Didn't get any this time though. We used to go camping a lot, but it has been a little bit trickier with a baby and a puppy.

10) Felix: D Y1 Felix G1 Rumpus

11) wil: D Y2 Wil B3 B3

12) Felix: B Y2 Rumpus

13) wil: B Y3 G3

14) Felix: M Y1 Rumpus G3

15) wil: D Y3 G3 G1 G1

16) Felix: B Y3 Rumpus

17) wil: B Y3 G1

18) Felix: T Y2 R2 Felix

19) wil: T Y2 R2 B3

20) Felix: Move Y3 Rumpus B3

21) wil: S Y1 G3
M R2 B3 G1

22) Felix: Move Y3 B3 G1

23) wil: S Y3 G1
D Y3 G1 G2 G2
M R2 G1 G2
P

24) Felix: Build Y1 G1
	wil: Taking the little ones camping is great stuff...   
	Felix: For sure. It's loads of fun, especially now that our daughter is old enough to actually know what's going on around her :P

25) wil: B G1 Wil

26) Felix: Build Y2 G3
	wil: My kids are 24..but when they were preteen they became great campers...they set up tents, the kitchen, cooked, cleaned, packed the containers and car...I didn't even have to say anything, they were super efficient.

	wil: My kids are 24..but when they were preteen they became great campers...they set up tents, the kitchen, cooked, cleaned, packed the containers and car...I didn't even have to say anything, they were super efficient.

	Felix: Ah, your kids aren't much younger than me! I'm 26. Didn't realize I was competing against an older and wiser fellow :) My strategies shall now change accordingly.

27) wil: D G1 Wil Y3 Y3

28) Felix: B Y2 Rumpus

29) wil: B R1 G2

30) Felix: Build G2 Felix

31) wil: B G2 Wil

32) Felix: Build R1 Felix

33) wil: D R1 G2 B1 B1

34) Felix: Trade R1 B1 Felix

35) wil: B R1 G2

36) Felix: Move Y1 G1 Felix

37) wil: M R1 G2 Rumpus

38) Felix: Sacrifice Y2 Rumpus
Move B1 Felix G1
Move R2 Felix G1

39) wil: S G3 Wil
B G3 Wil
B R1 B1
B R3 Rumpus

40) Felix: Sacrifice G3 Felix
Build R3 G1
Build Y2 G1
Build G3 Felix
	wil: Lol, you are playing a 60 year old...that slept outside over 40 days last year, from minus 7 at standing rock to 102 at burning man...
	wil: I didn't have my kids till I was 36...

41) wil: A Y2 Rumpus
	Felix: I'm impressed! That's quite a temperature range. My impression was that this type of nerdy game generally appealed to a younger demographic, but I'm glad it has a broader appeal than I realized! How did you get into the game? You said you're friends with Andy Looney, right?

My dad was 55 when I was born... he's nearly 82 now. He started having kids around 38, I believe, so he beat you by a couple years!

42) Felix: Move R3 G1 Y3

43) wil: B R3 G2
	wil: This is chess but better... It will take time to catch on.... My daughter bought zendo when she was in third grade...nearly a decade later I was playing poker with john, korey and Andy....with the same pyramids as chips...and I learned the rest of the story.

44) Felix: Sacrifice G3 Felix
Build B1 G1
Build B2 G1
Build G3 Felix

45) wil: M R3 G2 G3
	Felix: I agree. It will catch on, and I hope soon, since It's hard to find anyone willing to play outside of this website. I still haven't played much Zendo, but have enjoyed what I played! It's very cool that you have been along since the early days of the system.

46) Felix: Sacrifice Y3 G1
Move Y1 G3 Wil
Move Y2 G3 Wil
Discover Y2 G1 Y3 Keepaway

47) wil: M Y3 G2 G1

48) Felix: S R2 G1
A G2 Wil
A G1 Y3
	wil: I have the same problem here as I do with chess .... I should take longer to look but I don't last four moves had lots of choices ... and I still shoot from the hip

49) wil: S R3 G3
A G2 Wil
A Y2 Wil
A Y1 Wil
	Felix: No worries... I will do the same :)
	dlwillson: If either of you are in Colorado, I'll drive for a game.
	wil: How much would the 1st place prize have to be to get people to fly to a tourney.....hmmm

50) Felix: Move Y2 Keepaway Wil
Catastrophe Wil Yellow
	Felix: I'd love to se Colorado, dlwillson. I'm in North Carolina, however :/ I'd love to do a tourney of some kind. I wondered if it was feasible to do one online. This game really needs to be implemented somewhere like BoardGameArena, which has a realtime system.

51) wil: S R3 Rumpus
A B2 G1
A B1 G1
A B1 G1
	wil: You two have any good games examples for he theater?   Classic bluebirds, or doomsdays, or freezeouts ....or just darn interesting games?  Kudos to submitting ones you lost by stupid mistakes.
	dlwillson: I'll pay $128 to be in a competitive tournament.

52) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Y3
Build Y1 Felix
	dlwillson: The crushing defeat I just got from Draw5 is pretty interesting. Also, the small game Felix and I played was pretty interesting.
	Felix: The game I just lost to Ausmuh was fairly interesting. I did some really stupid (but unique) things, such as intentionally blowing up part of my homeworld in order to threaten a catastrophe in his. Didn't work out, but made for some interesting moments. I seem to recall that you and I had a pretty long and fascinating game not long ago too, Wil.
	Felix: Let's see... Game #32289 with Draw5PlayAll was pretty fascinating, since I managed to squeak out a win with an usual 2-2 homeworld star. If you're looking for a freezout... I managed a pretty decent yellow freeze against ts52 in game #32171. And my recent ladder defeat to dlwillson was pretty fascinating with me barely hanging onto half of a my homeworld while desperately trying to keep the blue out of his hands. That one may not be a good candidate though, because I resigned instead of playing it out.

53) wil: T G3 Y3 Wil

54) Felix: Move G1 Y3 Wil
	Felix: Or this game for a good example of a doomsday machine :) I was so focused on trying to get what I needed, I utterly failed to notice you setting up a nice apocalypse for me!

55) wil: S Y3 G1
M B2 G1 Felix
M B1 G1 Felix
M B1 G1 Felix
C Felix B

56) Felix: S G2 Felix
B G1 Wil
B G2 Wil
	wil: Lol, I was quietly amassing whikst you were attacking and losing all those yellow you had accumulated...
	wil: Still a squeaker...

57) wil: S Y3 Wil
M R1 Rumpus Felix
M R1 B1 Felix
M R1 B1 Felix
C Felix R
	Felix: Indeed.   Not my most situationally aware game ever. Well done and congratulations! 
	Felix: I have no idea why I didn't catastrophe on my last turn. That would have dragged things out a bit longer I suppose.
	Felix: Though only a turn or two at most, I think.
	wil: Lol yup, ids had to sack my y2 to get the r2 home which would have really looked like a bad ending with your r3 in my hw!



32504)
Variants: "Hard time"
Started: 2017.6.23, Ended: 2017.7.22
Participants: Aristos (S), Subhan64 (N)
Winner: Aristos

1) Subhan64: Homeworld B3 Y2 G3

2) Aristos: Homeworld G2 Y1 B3

3) Subhan64: Build G1 Subhan64



4) Aristos: Build B1 Aristos

5) Subhan64: Build G1 Subhan64

6) Aristos: Trade B1 G1 Aristos

7) Subhan64: Trade G1 Y1 Subhan64

8) Aristos: Discover G1 Aristos Y3 Submarine

9) Subhan64: Discover G1 Subhan64 Y1 Kermit

10) Aristos: Build B1 Aristos

11) Subhan64: Build G1 Kermit
	Aristos: Ping!
	Draw5PlayAll: Oops, sorry!

12) Aristos: Build G2 Submarine

13) Subhan64: Build Y2 Subhan64

14) Aristos: Move G1 Submarine Kermit

15) Subhan64: Move G1 Kermit Submarine

16) Aristos: Trade B1 R1 Aristos



32480)
Started: 2017.6.26, Ended: 2017.7.7
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld Y3 B1 G3

2) Felix: Homeworld R2 B3 G3
	ts52: Have a good game.

3) ts52: Build G1 Ts52
	Felix: Likewise! I always enjoy our games.

4) Felix: Build G1 Felix

5) ts52: Trade G1 B1 Ts52

6) Felix: T G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: Build B2 Felix

9) ts52: Trade B2 Y2 Ts52

10) Felix: Trade B1 Y1 Felix

11) ts52: Discover B1 Ts52 G2 Kermit

12) Felix: Build Y1 Felix

13) ts52: Build G1 Ts52

14) Felix: Discover Y1 Felix G1 Florist

15) ts52: Move Y2 Ts52 Kermit

16) Felix: Build Y1 Florist

17) ts52: Build Y2 Kermit

18) Felix: Move Y1 Florist Kermit

19) ts52: Trade Y2 R2 Kermit

20) Felix: Move Y1 Kermit Ts52

21) ts52: Trade G1 R1 Ts52

22) Felix: Sacrifice G3 Felix
Build Y2 Ts52
Build Y2 Ts52
Build Y3 Felix
Catastrophe Ts52 Yellow

23) ts52: Build G1 Ts52
	ts52: Oh well done. That was very well done.

24) Felix: Trade Y1 G1 Felix

25) ts52: Trade G1 Y1 Ts52
	Felix: Thank you kindly, sir!

26) Felix: Build G1 Felix

27) ts52: Move R2 Kermit Florist

28) Felix: D Y1 Florist G2 Forest

29) ts52: Build R1 Ts52

30) Felix: Trade G1 R1 Felix

31) ts52: Sacrifice Y2 Kermit
Move R1 Ts52 Felix
Move R1 Ts52 Felix
Catastrophe Felix Red

32) Felix: Sacrifice B2 Felix
Trade G1 R1 Felix
Trade Y1 B1 Forest
	Felix: Oh, excellent. Not sure how I overlooked that!

33) ts52: Sacrifice Y1 Ts52
Move R2 Florist Forest

34) Felix: Move R1 Felix Kermit
	ts52: I've been trying to decide when the right time was to pull that trigger. We'll see if I made the right call or not.

35) ts52: Attack B1 Forest
	Felix: I think the timing will work out for you, especially with that last move of yours, which was also good! I thought I could get the blue edge on you. I might still, but it will be tricky

36) Felix: Attack B1 Kermit
	ts52: Thanks. We'll see if it's enough to turn the tide in my favor.

37) ts52: Build B2 Forest
	Felix: I think it will be, unless you make a mistake. You're a step ahead at the moment.

38) Felix: Build B2 Kermit

39) ts52: Trade R2 Y2 Forest

40) Felix: Trade B2 G2 Kermit

41) ts52: Build B2 Forest

42) Felix: Sacrifice Y3 Felix
Move R1 Kermit Felix
Move B1 Kermit Ts52
Move G2 Kermit Ts52

43) ts52: Move B2 Forest Felix
	Felix: Phew... I think I managed to just nip out of that one. Talk about escaping with your hair singed!
	ts52: Oh wow, nice move. Very well done.

44) Felix: S G2 Ts52
B B2 Ts52
B B3 Ts52
C Ts52 Blue
	ts52: I did not see _that_ coming.
	Felix: It took me quite a lot of brain power to come up with that as a possible move. I thought for sure I was a goner. It was you trading away that red that gave me the opening. Great game!
	ts52: Very well played. I look forward to our next.
	ts52: I figured I could get a little extra tempo by trading the red instead of the blue. That'll teach me. :)
	Felix: In any other situation, I think that would have been a great idea. But losing any attack power left you open to that little construction trick. I can't say there's much left of my fleet though! I've never had a game end with only one small left in my possession. Super fascinating game all around.
	ts52: Definitely one for the books. :)



32434)
Variants: "Unrated, Hard time"
Started: 2017.6.26, Ended: 2017.6.29
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld Y2 B3 G3

2) dlwillson: Homeworld Y3 B1 G3
	dlwillson: Done camping?
	Felix: Hope you don't mind the consistent matches against me. I enjoy our bouts too much to resist. :P
	Felix: Yep! And it was extremely wet. I taught someone from our church how to play Homeworlds though, so that was a good way to beat the drizzle.

3) Felix: Build G1 Felix

4) dlwillson: Build G1 Dlwillson
	dlwillson: Mind? Of course not! I enjoy them thoroughly.

5) Felix: Trade G1 B1 Felix

6) dlwillson: Trade G1 B1 Dlwillson

7) Felix: Build B2 Felix

8) dlwillson: Build B2 Dlwillson

9) Felix: D B2 Felix Y1 Cypher

10) dlwillson: Trade B2 Y2 Dlwillson

11) Felix: B B2 Felix

12) dlwillson: Discover B1 Dlwillson G2 Field

13) Felix: D B1 Felix G1 Forest

14) dlwillson: Move Y2 Dlwillson Field

15) Felix: T B2 Y2 Felix

16) dlwillson: Build B2 Field

17) Felix: D B2 Cypher G2 Kringo

18) dlwillson: M B2 Field Forest

19) Felix: T B1 Y1 Forest

20) dlwillson: B B1 Forest

21) Felix: M Y1 Forest Kringo

22) dlwillson: T B1 Y1 Forest

23) Felix: T Y2 R2 Felix

24) dlwillson: T B2 R2 Forest

25) Felix: Build R1 Felix

26) dlwillson: B G1 Dlwillson

27) Felix: Build G1 Felix

28) dlwillson: Trade G1 R1 Dlwillson

29) Felix: Trade R2 Y2 Felix

30) dlwillson: Build Y1 Forest

31) Felix: Build Y3 Kringo

32) dlwillson: B Y3 Field
	Felix: I am just not happy with any of my choices in this game!

33) Felix: D Y2 Felix G1 Sublime
	dlwillson: I'm trying hard to offer you unattractive alternatives.

34) dlwillson: Sacrifice Y2 Field
Move Y1 Forest Kringo
Move Y1 Forest Kringo
Catastrophe Kringo Y
	Felix: The ugliest.

35) Felix: Discover G1 Felix B1 Ringersoll
	dlwillson: That was more than I wanted to pay...
	Felix: And yet... also more than I wanted to lose!

36) dlwillson: Build B2 Field

37) Felix: Build Y1 Sublime

38) dlwillson: Move B1 Field Forest

39) Felix: Move Y1 Sublime Kringo

40) dlwillson: Build Y1 Field

41) Felix: Build Y1 Kringo

42) dlwillson: M Y1 Field Forest

43) Felix: Move Y1 Kringo Ringersoll

44) dlwillson: Build R1 Forest

45) Felix: Build G2 Felix

46) dlwillson: Build G3 Dlwillson

47) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Kringo
Build Y3 Ringersoll
	dlwillson: Nice!

48) dlwillson: Sacrifice G3 Dlwillson
Build B2 Field
Build B3 Forest
Build G3 Dlwillson
	Felix: Thank you! I finally made one decision I'm pleased with :P

49) Felix: S G3 Felix
B G3 Felix
Build R2 Felix
B B3 Kringo

50) dlwillson: Sacrifice G3 Dlwillson
Build R2 Dlwillson
Build R3 Dlwillson
Build G3 Dlwillson

51) Felix: M R2 Felix Ringersoll
	dlwillson: Gosh, we sure like to empty the bank; don't we. Oh hey! My poor reds are within range! Oh noes!

52) dlwillson: M B2 Field Sublime
	Felix: Nice try... but you can't bait me that easily :p

53) Felix: Sacrifice R1 Felix
Attack B2 Sublime

54) dlwillson: M B3 Forest Felix
	Felix: So many choices.... it's hard to turn down those juicy R3s!

55) Felix: Sacrifice R2 Ringersoll
Attack B3 Felix
Pass
	dlwillson: Boo! Blue!

56) dlwillson: Sacrifice Y3 Field
Move R3 Dlwillson Kringo
Move R3 Kringo Sublime
Move R3 Sublime Felix
	Felix: Very nice move! I knew it was a bad idea to sac that r1 on my last turn. I have lots of options now, but they all end in misery for me, I think.

57) Felix: Sacrifice B3 Kringo
Trade B3 R3 Felix
Trade G3 R3 Felix
Trade B2 R2 Sublime
	dlwillson: I think it's a downhill walk from here.
	dlwillson: And thank you! Your sac of the home red was a pleasant surprise! I do wish I had some reserve jumps, though. If I have to move ships around, I'm screwed.

58) dlwillson: Sacrifice R2 Dlwillson
Attack R3 Felix
Attack G2 Felix
	Felix: *cue desperate flailing*

59) Felix: Sacrifice Y2 Kringo
Move R2 Sublime Felix
Catastrophe Felix Red
Move Y3 Ringersoll Felix

60) dlwillson: Sacrifice G3 Dlwillson
Build G3 Felix
Build R1 Forest
Build R2 Dlwillson

61) Felix: Sacrifice Y3 Felix
Move Y1 Ringersoll Felix
Move G1 Ringersoll Felix
Move Y2 Sublime Felix

62) dlwillson: Sacrifice R2 Forest
Attack Y2 Felix
Attack Y1 Felix
	Felix: *desperate flailing continues*

63) Felix: Build G1 Felix
	dlwillson: The downhill walk is strewn with rocks.

64) dlwillson: Build Y2 Felix
Catastrophe Felix G
Catastrophe Felix Y
	Felix: *flailing subsides, a low gurgle is heard, and then silence*
	dlwillson: Good game as always!
	Felix: Likewise! Very intense.



32361)
Started: 2017.6.26, Ended: 2017.7.11
Participants: panglott (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld G3 Y1 B3

2) panglott: Homeworld B3 Y2 G3

3) Ausmuh: Build B1 Ausmuh

4) panglott: Build G1 Panglott

5) Ausmuh: Trade B1 G1 Ausmuh

6) panglott: Trade G1 Y1 Panglott

7) Ausmuh: Build B1 Ausmuh

8) panglott: Discover Y1 Panglott G1 Trantor

9) Ausmuh: Discover B1 Ausmuh G2 Zog

10) panglott: Build G1 Panglott

11) Ausmuh: Build G2 Ausmuh

12) panglott: Move G1 Panglott Trantor

13) Ausmuh: Discover G1 Ausmuh Y2 Zwarp

14) panglott: Build G2 Panglott

15) Ausmuh: Build G3 Ausmuh

16) panglott: Sacrifice G3 Panglott
Build G3 Panglott
Build Y1 Trantor
Build Y2 Trantor

17) Ausmuh: Trade G3 Y3 Ausmuh

18) panglott: Move Y1 Trantor Zog

19) Ausmuh: Trade B3 R3 Ausmuh

20) panglott: Sacrifice G3 Panglott
Build G3 Panglott
Build G3 Trantor
Build Y3 Trantor

21) Ausmuh: Sacrifice Y3 Ausmuh
Move R3 Ausmuh Zwarp
Move R3 Zwarp Trantor
Move R3 Trantor Panglott

22) panglott: Trade G3 R3 Panglott

23) Ausmuh: Attack R3S Panglott

24) panglott: Sacrifice Y3 Trantor
Move G1 Trantor Zog
Move G1 Zog Ausmuh
Move G3 Trantor Zog

25) Ausmuh: Attack G2S Panglott
	panglott: Thanks for the game ;)
	Ausmuh: Thanks, you too! 



32457)
Variants: "Unrated"
Started: 2017.6.27, Ended: 2017.7.3
Participants: Felix (S), Ausmuh (N)
Winner: Felix

1) Ausmuh: Homeworld G3 Y2 B3

2) Felix: Homeworld R1 B3 G3

3) Ausmuh: Build B1 Ausmuh
	Felix: Hello again! Have a good game :)
	Ausmuh: Thanks, you too!

4) Felix: Build G1 Felix

5) Ausmuh: Trade B1 R1 Ausmuh

6) Felix: Trade G1 R1 Felix

7) Ausmuh: Build R2 Ausmuh

8) Felix: Build R2 Felix

9) Ausmuh: Discover R2 Ausmuh B1 Zed
	Ausmuh: You are braver then I! I am always gun shy to take the last 1-pip. I also get locked out of color often that way. 

10) Felix: Trade R2 Y2 Felix
	Felix: Yeah... sometimes you have to! In this case, if I had traded for the y1 instead of the r1 on my second turn, you could have easily locked me out of red. Not a good situation to be in!

11) Ausmuh: Build R2 Ausmuh

12) Felix: Discover R1 Felix G2 Troid

13) Ausmuh: Trade R2 G2 Zed Ausmuh

14) Felix: Build R2 Troid

15) Ausmuh: Build G1 Zed

16) Felix: Build Y1 Felix

17) Ausmuh: Trade G2 Y2 Zed

18) Felix: Move Y1 Felix Troid

19) Ausmuh: Move R1 Ausmuh Zed

20) Felix: Discover R2 Troid B1 Mega

21) Ausmuh: Build B1 Ausmuh

22) Felix: Build Y1 Troid
	Ausmuh: That was a tough turn. Still not completely happy with my choice. Those 3 pips are looking ripe for you!

23) Ausmuh: Move Y2 Zed Troid
	Felix: Maybe! The fruit is just out of reach though. It's tricky to get to them without allowing you to get to them too :P

24) Felix: Sacrifice G3 Felix
Build Y1 Troid
Build Y3 Felix
Build Y3 Felix
Catastrophe Troid Yellow

25) Ausmuh: Build B2 Ausmuh
	Felix: That was an interesting maneuver. I think I like it :)
	Ausmuh: Well, I cruised right into that one!

26) Felix: Trade Y3 G3 Felix

27) Ausmuh: Discover B2 Ausmuh G1 Zog

28) Felix: Sacrifice G3 Felix
Build R2 Mega
Build R3 Troid
Build R3 Mega

29) Ausmuh: Build R3 Zed

30) Felix: Trade R3 G3 Mega
	Ausmuh: Eesh. That's awesome.
	Felix: Haha, lots of weapons! I'm a bit nervous leaving only one color in my homeworld though...

31) Ausmuh: Trade B2 Y2 Zog

32) Felix: Trade Y3 G3 Felix

33) Ausmuh: Trade R1 Y1 Zed

34) Felix: Build Y1 Felix

35) Ausmuh: Trade R2 G2 Ausmuh

36) Felix: Move Y1 Felix Troid

37) Ausmuh: Sacrifice Y1 Zed
Discover Y2 Zog B2 Aaa

38) Felix: Build Y1 Troid

39) Ausmuh: Build R1 Zed

40) Felix: M Y1 Troid Mega

41) Ausmuh: Trade R3 Y3 Zed

42) Felix: S G3 Felix
B Y1 Mega
B Y3 Troid
B Y3 Felix

43) Ausmuh: Build R2 Zed

44) Felix: S Y3 Troid
M R1 Troid Zed
M R3 Troid Zed
C Zed Red
M G3 Mega Ausmuh
	Ausmuh: Impending DooM!!!

Not sure I see a way out of this one as it sits.

45) Ausmuh: Build G1 Ausmuh
Catastrophe Ausmuh Green
	Felix: It doesn't look great for you... but you might get out of this yet!
	Ausmuh: Beautiful red catastrophe. :) That hurts!

46) Felix: Move Y1 Troid Zed

47) Ausmuh: Trade B1 R1 Ausmuh
	Felix: Thank you! It was a costly move, though. 
	Ausmuh: oh wow, i think you could have moved your 3 pip in from your HW to lock in the win. I would have been lacking the attack to defend. Maybe I'm wrong but I'll take it! :)

48) Felix: Sacrifice Y3 Felix
Move Y1 Mega Ausmuh
Move Y1 Mega Ausmuh
Move Y1 Zed Ausmuh
Catastrophe Ausmuh Yellow
	Felix: That would have been one pathway to get there! ;) It would have taken two moves for me either way, I think, but catastrophes are always more fun. Great game!
	Ausmuh: Good game! You're right, catastrophes are sweet! See you on the next one!



32556)
Variants: "Hard time"
Started: 2017.6.28, Ended: 2017.7.1
Participants: dlwillson (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3

2) dlwillson: Homeworld Y3 B2 G3
	Felix: Here we go again! I suppose I'll take the Goldilocks for once, and see how it works for me :) I've been trying to really coerce the fortress into a viable competitive choice, but it really does seem to have its drawbacks.
	Draw5PlayAll: What about B2 R1?

3) Felix: B G1 Felix

4) dlwillson: Build G1 Dlwillson
	Felix: I wouldn't have minded if you had wanted to go banker, for the record :P

5) Felix: Trade G1 Y1 Felix
	dlwillson: I never go banker, for the record. :-)
	Felix: Fair enough! :)

6) dlwillson: Trade G1 Y1 Dlwillson

7) Felix: B G1 Felix
	Felix: So do you really believe the banker provides an unfair advantage? Or do you just not like to play it?


8) dlwillson: B G1 Dlwillson
	dlwillson: I don't think it gives an unfair advantage. I don't think it's as much a banker as it is a blocker. It's convenient to be able to block a big by discovering it. I think that's easy, but cashing it in... That's hard.

But, I think folks have the impression that it gives an advantage, so I don't play it.

9) Felix: Trade G1 R1 Felix
	Felix: I agree. I think in capable hands, all three setups can be equally good... but each one does have particular different strengths and weaknesses. It just depends on whether you'd like to be able to easily manipulate the supply of smalls, mediums, or larges.

But yeah, there is a certain stigma associated with it, so I try to avoid it too.

10) dlwillson: T G1 R1 Dlwillson

11) Felix: Build R2 Felix

12) dlwillson: B R2 Dlwillson

13) Felix: Discover R2 Felix B2 Orcrist

14) dlwillson: Discover Y1 Dlwillson G1 Field
	dlwillson: Gotta think about this one.

15) Felix: Sacrifice G3 Felix
Build R2 Orcrist
Build R3 Orcrist
Build R3 Felix
	dlwillson: Not sure I liked any of my options there...
	Felix: As a wise man once told me.... I tried to present you with only the most unappealing of options :)

16) dlwillson: Build R3 Dlwillson
	Felix: And so the emptying of the bank begins...

17) Felix: Trade R2 Y2 Orcrist

18) dlwillson: Move R3 Dlwillson Field

19) Felix: Trade R3 G3 Orcrist

20) dlwillson: Trade R2 Y2 Dlwillson

21) Felix: Trade R3 G3 Felix

22) dlwillson: Build R2 Dlwillson

23) Felix: B Y1 Orcrist

24) dlwillson: D R2 Dlwillson B1 Sea

25) Felix: D Y1 Orcrist B1 Glamdring

26) dlwillson: M Y2 Dlwillson Glamdring

27) Felix: Sacrifice G3 Felix
Build Y2 Glamdring
Build Y3 Orcrist
Build Y3 Felix

28) dlwillson: S R1 Dlwillson
Attack Y2 Glamdring

29) Felix: Move Y2 Orcrist Glamdring
Catastrophe Glamdring Yellow

30) dlwillson: B G1 Dlwillson

31) Felix: Build G1 Orcrist
	dlwillson: Hmm... You're doing very well at offering our choices!
	dlwillson: Hmm... You're doing very well at offering poor choices!

32) dlwillson: Trade G1 B1 Dlwillson
	Felix: Well, I learned how to do that in our most recent game where you offered me only the lowest-quality choices ;)

33) Felix: Build G1 Orcrist

34) dlwillson: Trade R2 G2 Sea

35) Felix: M G3 Orcrist Sea
	dlwillson: Is it getting cold in here? I feel a sudden chill...

36) dlwillson: Sacrifice G2 Sea
Build B1 Dlwillson
Build Y1 Field
	Felix: I'm just feeling green with envy :p

37) Felix: B G2 Sea

38) dlwillson: M B1 Dlwillson Field
	Draw5PlayAll: Are you trying to reference the blue and green abilities?

39) Felix: Sacrifice Y1 Felix
Move G3 Sea Dlwillson
	dlwillson: I'm not. I was misreading the board. I thought I was losing worse than I am.

	Felix: I was just making a bad pun because I had just built a green ship.
	dlwillson: Oh, poo.
	Felix: I believe you did something similar to this to me in our last game! I hope it pays off... but I have had my most confident of moves totally overturned by your sneakery before.
	dlwillson: Not this time. You've got me. I can resign here or we can walk down the hill. Well done!
	dlwillson: I'm so used to Goldilocks... I thought Orcrist was in *my* orbit.
	Felix: Whatever you'd like to do! I always enjoy playing it out (when I'm winning!) but I understand if you'd just like to resign.
	Felix: And thank you! I just got lucky by throwing off your goldilocks game. :)
	dlwillson: I prefer to resign as soon as the end is inevitable, assuming perfect play on both sides. I think it is more interesting for people reading the game later and allows the players to move on to non-determined scenarios.

It's always a pleasure. Welcome to #1!
	dlwillson: Let me correct part of that. Not assuming "perfect play", assuming the quality of play thus far demonstrated. So, I don't resign if there's a fair chance the other fellow might fumble the ball.
	Felix: Sometimes when losing I play it out in hopes of the opponent making a game-changing mistake, but I do resign when it's completely inevitable, and it's too much to hope for certain opponents (like yourself) to make mistakes after a certain point!

And thank you very much! I don't think I'd be so fortunate if certain juggernauts like endo or TwoShort were still active, but I'll bask in the glory while I can and try not to accidentally reject a challenge on my tiny iPhone screen this time ;)


32569)
Variants: "Hard time"
Started: 2017.6.30, Ended: 2017.7.5
Participants: ajo (S), wil (N)
Winner: wil

1) wil: H B2 R1 G3

2) ajo: Homeworld B2 Y3 G3
	wil: Let's do this!  Have fun

3) wil: Build G1 Wil
	ajo: You too. :)

4) ajo: Build G1 Ajo

5) wil: Trade G1 Y1 Wil

6) ajo: Discover G1 Ajo B1 Alpha

7) wil: Build Y1 Wil

8) ajo: Build G1 Ajo
	wil: Didja just give me a slight advantage?

9) wil: Build Y1 Wil
	ajo: I wasn't planning to; I guess we'll see in a minute.

10) ajo: Build G1 Ajo

11) wil: Discover Y1 Wil Y3 Y3
	wil: it is gonna be crazy

12) ajo: Build G2 Alpha
	wil: I am always incapable of thinking ahead..

13) wil: D Y1 Wil G3 G3

14) ajo: Trade G2 Y2 Alpha

15) wil: S G3 Wil
B Y2 G3
B Y2 Wil
B Y3 Wil

16) ajo: Trade G3 R3 Ajo

17) wil: Trade Y2 G2 Wil

18) ajo: Build G2 Ajo

19) wil: B Y2 Wil

20) ajo: Discover Y2 Alpha G3 Beta

21) wil: T Y1 R1 Wil

22) ajo: Sacrifice G2 Ajo
Build G2 Alpha
Build Y1 Beta

23) wil: T Y3 G3 Wil

24) ajo: Trade G2 R2 Alpha

25) wil: Build Y3 Wil

26) ajo: Move Y1 Beta Wil

27) wil: Trade Y3 B3 Wil
	ajo: I see we're doing this. :)

28) ajo: Build Y3 Beta

29) wil: Attack Y1 Wil

30) ajo: Move Y3 Beta Alpha

31) wil: Move G2 Wil Y3

32) ajo: Build G2 Alpha

33) wil: Build G2 Wil

34) ajo: Move G1 Alpha Beta
	wil: Yeah...I blew my advantage..

35) wil: D Y1 Y3 B1 B1

36) ajo: Build R1 Alpha

37) wil: S G2 Y3
B B1 Wil
B Y3 B1

38) ajo: Build R2 Ajo

39) wil: M R1 Wil G3

40) ajo: Move R1 Alpha Beta

41) wil: T B3 R3 Wil

42) ajo: Build R2 Beta

43) wil: Build R3 G3

44) ajo: Sacrifice Y2 Beta
Move R1 Beta Wil
Move R2 Beta Wil
Catastrophe Wil Red
	ajo: *hums the theme to "Jaws"*

45) wil: Build B2 Wil

46) ajo: Build G2 Alpha

47) wil: S Y2 Wil
M B2 Wil G3
M R1 G3 B1

48) ajo: Sacrifice Y3 Alpha
Move G2 Alpha Wil
Move G1 Beta Wil
Move R2 Alpha Wil
Catastrophe Wil Green

49) wil: M Y3 B1 Wil
	ajo: That looks like the classic Bluebird mistake. :)

50) ajo: Attack B1 Wil

51) wil: Sacrifice R3 G3
Attack B1 Wil
Attack R2 Wil
Pass
	wil: In my choices of outcomes...the best I saw was you going in...and I'd still have two queens and opportunity to grow..
	ajo: Oho. I didn't see that.

52) ajo: Move R2 Ajo B1
	ajo: Make that "one queen".

53) wil: Sacrifice Y1 B1
Move R1 B1 G3
	wil: true...and I may have missed the opportunity to lose it had you not reminded me!!

54) ajo: Sacrifice G2 Alpha
Build R1 B1
Build R1 Ajo
	ajo: Seems like you survived. Bah.

55) wil: Build B1 G3
	wil: It appears to still be looking good for our team..  that shark was all teeth and no bite..  and now is chum
	wil: better than a phoenix from the ashes the blue queen machine is about to start building...

56) ajo: Trade R2 G2 B1

57) wil: B B3 G3

58) ajo: Build R2 B1

59) wil: M B3 G3 B1

60) ajo: Sacrifice G2 B1
Build R2 B1
Build R3 B1
Catastrophe B1 Red

61) wil: B B3 G3
	wil: I can't hardly hear you humming that jaws theme anymore...it doesn't bother me...crank it up
	ajo: Nuts. Well, I think I'm going to lose now.

62) ajo: Discover R1 Ajo R1 Gamma

63) wil: M B3 G3 Gamma
	wil: Well you just had some kind of insurrection with your lead attack and building force...  They all seem to have gone awol
	wil: Well you just had some kind of insurrection with your lead attack and building force...  They all seem to have gone awol

64) ajo: Build R2 Ajo
	ajo: That Y3 that I overlooked was really disastrous for my invasion plans.

65) wil: B B3 G3
	wil: I will have all the queens but one, muahahahah

66) ajo: Trade R2 Y2 Ajo

67) wil: S Y2 G3
M B3 Gamma Ajo
M B3 B1 Ajo

68) ajo: Trade G1 B1 Ajo
Catastrophe Ajo Blue

69) wil: S Y3 Wil
M Y1 Wil Ajo
M Y1 G3 Wil
M Y1 Wil Ajo
C Ajo Y
	wil: Well fought...

	ajo: Yep, I think that's game.
	ajo: Good game!


32534)
Variants: "Unrated, Hard time"
Started: 2017.7.1, Ended: 2017.7.19
Participants: Draw5PlayAll (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y2 B3 G3

2) Draw5PlayAll: Homeworld B3 R1 G3

3) dlwillson: B G1 Dlwillson

4) Draw5PlayAll: Build G1 Draw5playall

5) dlwillson: B G1 Dlwillson

6) Draw5PlayAll: Build G2 Draw5playall

7) dlwillson: D G1 Dlwillson B1 Sea

8) Draw5PlayAll: Trade G1 Y1 Draw5playall

9) dlwillson: T G1 R1 Dlwillson

10) Draw5PlayAll: Build G1 Draw5playall

11) dlwillson: Build G1 Dlwillson

12) Draw5PlayAll: Trade G1 R1 Draw5playall

13) dlwillson: Build R2 Dlwillson

14) Draw5PlayAll: Discover G2 Draw5playall B2 B2

15) dlwillson: D R1 Dlwillson Y1 Golden

16) Draw5PlayAll: Build G1 Draw5playall

17) dlwillson: Sacrifice G3 Dlwillson
Build R2 Dlwillson
Build R2 Golden
Build R3 Golden

18) Draw5PlayAll: Build R3 Draw5playall

19) dlwillson: Build R3 Dlwillson

20) Draw5PlayAll: Trade R3 Y3 Draw5playall

21) dlwillson: T R3 Y3 Dlwillson

22) Draw5PlayAll: Discover R1 Draw5playall G2 G2

23) dlwillson: M R2 Golden G2

24) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B2
Build G3 Draw5playall
Build R3 G2

25) dlwillson: B G3 Dlwillson

26) Draw5PlayAll: Sacrifice R1 G2
Attack R2N G2

27) dlwillson: Build G3 Sea

28) Draw5PlayAll: Move Y3 Draw5playall B2

29) dlwillson: T G3 Y3 Sea

30) Draw5PlayAll: Trade G2 Y2 B2

31) dlwillson: M R2 Dlwillson Sea

32) Draw5PlayAll: Trade G1 B1 Draw5playall

33) dlwillson: Sacrifice Y3 Dlwillson
Move R1 Golden G2
Move R2 Sea G2
Catastrophe G2 R
Move Y3 Sea B2

34) Draw5PlayAll: Sacrifice Y2 B2
Discover Y3 B2 R3 R3
Move G2 B2 R3

35) dlwillson: Build G1 Dlwillson

36) Draw5PlayAll: Build G2 Draw5playall

37) dlwillson: Move G1 Dlwillson Golden
	Draw5PlayAll: Quit tempting me!

38) Draw5PlayAll: Trade G2 Y2 Draw5playall

39) dlwillson: B G2 Golden
	dlwillson: OK, but I reserve the right to tempt you again, later.

40) Draw5PlayAll: Trade Y1 R1 Draw5playall

41) dlwillson: M G2 Golden B2

42) Draw5PlayAll: Build Y1 R3

43) dlwillson: Sacrifice G3 Dlwillson
Build G2 B2
Build G3 Sea
Build G3 Dlwillson

44) Draw5PlayAll: Build B1 Draw5playall

45) dlwillson: T G3 Y3 Sea

46) Draw5PlayAll: Build G3 R3

47) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B Y1 Sea
B Y2 B2

48) Draw5PlayAll: Move B1 Draw5playall B2

49) dlwillson: S Y2 B2
M G2 B2 R3
M G1 Sea R3
Catastrophe R3 G

50) Draw5PlayAll: Build Y2 Draw5playall

51) dlwillson: Sacrifice Y3 Sea
Move Y3 B2 Draw5playall
Move R3 Golden B2
Move R3 B2 Draw5playall

52) Draw5PlayAll: Attack R3 Draw5playall

53) dlwillson: Sacrifice R2 Dlwillson
Attack R3 Draw5playall
Attack G3 Draw5playall
	dlwillson: /me verifies that this is *not* the ladder match
/me attack wildly, hollering, "YEEHAA!"
	dlwillson: /me verifies that this is *not* the ladder match
/me attacks wildly, hollering, "YEEHAA!"
	Draw5PlayAll: Your attack wins no matter what.



32601)
Variants: "Unrated, Hard time"
Started: 2017.7.1, Ended: 2017.7.3
Participants: Felix (S), dlwillson (N)
Winner: Felix

1) dlwillson: H Y2 B3 G3 Dlwillson

2) Felix: H B1 R1 G3 *
	dlwillson: GLHF!

3) dlwillson: B G1 Dlwillson
	Felix: Likewise! And I apologize in advance. This could be a weird game...

4) Felix: B G1 Felix

5) dlwillson: B G1 Dlwillson
	Draw5PlayAll: Thankfully they are not on the ladder... never make experiments on the ladders.

6) Felix: T G1 Y1 Felix

7) dlwillson: D G1 Dlwillson B1 Sea

8) Felix: B Y1 Felix

9) dlwillson: T G1 R1 Dlwillson

10) Felix: B Y1 Felix

11) dlwillson: B G1 Dlwillson

12) Felix: Discover Y1 Felix G2 Graves

13) dlwillson: D G1 Dlwillson G1 Field

14) Felix: Discover Y1 Felix G3 Yards

15) dlwillson: B G2 Sea

16) Felix: Build G2 Felix

17) dlwillson: T G2 Y2 Sea

18) Felix: Sacrifice G3 Felix
Build Y2 Graves
Build Y3 Yards
Build Y3 Felix

19) dlwillson: B Y3 Sea

20) Felix: Sacrifice Y2 Graves
Move Y1 Graves Sea
Move Y1 Yards Sea
Catastrophe Sea Yellow

21) dlwillson: B G2 Dlwillson

22) Felix: Build G2 Felix

23) dlwillson: Trade G2 Y2 Dlwillson

24) Felix: Sacrifice Y3 Yards
Move G2 Felix Dlwillson
Move G2 Felix Dlwillson
Move Y1 Felix Dlwillson

25) dlwillson: S G3 Dlwillson
B G2 Sea
B G3 Sea
B R1 Dlwillson

26) Felix: Build Y1 Dlwillson
Catastrophe Dlwillson Yellow
	Felix: What fun is life without a little risk?

27) dlwillson: Trade G3 Y3 Sea

28) Felix: T G2 B2 Dlwillson
	dlwillson: Better. Not good, but better.

29) dlwillson: Sacrifice Y3 Sea
Move G1 Field Dlwillson
Move G1 Sea Dlwillson
Move G2 Sea Dlwillson
Catastrophe Dlwillson G
	Felix: It's all or nothing time here. I'm not recovering from this attack if it fails!

30) Felix: T B2 R2 Dlwillson

31) dlwillson: Trade R1 G1 Dlwillson

32) Felix: A R1 Dlwillson
	dlwillson: This was an interesting game. I might like to try these starting positions again sometime.

33) dlwillson: Build G1 Dlwillson

34) Felix: Sacrifice R2 Dlwillson
Attack G1 Dlwillson
Attack G1 Dlwillson



32397)
Variants: "Unrated, Hard time"
Started: 2017.7.1, Ended: 2017.7.5
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H B2 Y1 G3

2) Felix: H B3 R3 G3 *

3) wil: B G1 Wil
	Draw5PlayAll: !
	wil: Nimby

4) Felix: B G1 Felix
	Felix: Nimby?

5) wil: Trade G1 R1 Wil

6) Felix: T G1 Y1 Felix

7) wil: Build R1 Wil

8) Felix: B Y1 Felix

9) wil: Build R1 Wil

10) Felix: B Y2 Felix

11) wil: D R1 Wil G3 G3

12) Felix: Discover Y1 Felix B1 Surplus

13) wil: B R2 Wil

14) Felix: Sacrifice G3 Felix
Build Y2 Surplus
Build Y2 Surplus
Build Y3 Felix

15) wil: D R2 Wil Y3 Y3

16) Felix: Trade Y3 G3 Felix

17) wil: B R2 Wil

18) Felix: Build Y3 Felix

19) wil: D R2 Wil B3 B3

20) Felix: Trade Y3 R3 Felix

21) wil: M R1 Wil Felix

22) Felix: Move R3 Felix Surplus

23) wil: B R2 G3

24) Felix: D Y1 Felix G2 Opix

25) wil: Build R3 Wil

26) Felix: B Y3 Felix

27) wil: Trade R3 Y3 Wil
	wil: Not
In
My
Back
Yard

28) Felix: S Y1 Surplus
M Y3 Felix Wil
	Felix: Ah, I see. But you are the one invading my yard with your pesky little red fly!

29) wil: A Y3 Wil

30) Felix: M Y2 Felix Wil
C Wil Yellow

31) wil: B R3 Wil

32) Felix: T Y2 G2 Surplus
	Felix: Oops. No reason I should have sacked that y1 last turn

33) wil: T R2 Y2 B3

34) Felix: Build R2 Surplus

35) wil: S Y2 B3
M R1 G3 Surplus
M R1 Wil Surplus
C Surplus R

36) Felix: Attack R1 Felix

37) wil: B G1 Wil
	wil: We had a surplus of small attack ships...we moved them to the surplus system...we did...idk why they are now in the bank

38) Felix: B G1 Felix

39) wil: T G1 Y1 Wil

40) Felix: T G1 B1 Felix

41) wil: M R3 Wil Surplus

42) Felix: Move Y2 Surplus Felix

43) wil: A G2 Surplus
	wil: Wonder if anything is at the thrift store

44) Felix: Build B1 Felix
	Felix: Just one green in stock I'm afraid
	wil: Just my size.

45) wil: B G1 Wil

46) Felix: Discover B1 Felix G1 Ribald

47) wil: M R2 Y3 Ribald

48) Felix: Build B2 Felix

49) wil: T G2 Y2 Surplus

50) Felix: S Y1 Opix
M B1 Ribald Wil

51) wil: S Y2 Surplus
M G3 Wil Felix
M R3 Surplus Felix

52) Felix: Sacrifice Y2 Felix
Move B1 Felix Wil
Move B2 Felix Wil
Catastrophe Wil Blue
	Felix: Capturing that blue would have made my job substantially more difficult, I think.
	wil: Lol...just steps away

	Felix: Very, very close. Good game!


32218)
Variants: "Hard time"
Started: 2017.7.3, Ended: 2017.7.12
Participants: belenar (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) belenar: Homeworld R2 B1 G3

3) wil: Build G1 Wil

4) belenar: Build G1 Belenar

5) wil: T G1 B1 Wil

6) belenar: Trade G1 Y1 Belenar

7) wil: B B1 Wil



32458)
Variants: "Hard time"
Started: 2017.7.3, Ended: 2017.7.13
Participants: belenar (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) belenar: Homeworld R3 B1 G3
	Felix: Hello there :) Good luck and have fun!

3) Felix: Build G1 Felix

4) belenar: Build G1 Belenar

5) Felix: Trade G1 B1 Felix

6) belenar: Trade G3 Y3 Belenar

7) Felix: B B1 Felix

8) belenar: Build G1 Belenar

9) Felix: T B1 Y1 Felix



32608)
Variants: "Unrated, Hard time"
Started: 2017.7.3, Ended: 2017.7.13
Participants: Ausmuh (S), dlwillson (N)
Winner: Ausmuh

1) dlwillson: H B2 Y3 G3
	Ausmuh: Hello, Have a fun game! I like the shorter hard time trigger.

2) Ausmuh: Homeworld B3 Y1 G3
	dlwillson: Glad you like it! Good luck and have fun!

3) dlwillson: Build G1 Dlwillson

4) Ausmuh: Build G1 Ausmuh

5) dlwillson: Trade G1 R1 Dlwillson

6) Ausmuh: Trade G1 B1 Ausmuh

7) dlwillson: B R1 Dlwillson

8) Ausmuh: Build B1 Ausmuh

9) dlwillson: Trade R1 B1 Dlwillson

10) Ausmuh: Discover B1 Ausmuh G2 Zog

11) dlwillson: Discover B1 Dlwillson G1 Field

12) Ausmuh: Build B2 Ausmuh

13) dlwillson: Build R1 Dlwillson

14) Ausmuh: Trade B2 R2 Ausmuh

15) dlwillson: Build G1 Dlwillson

16) Ausmuh: Build B2 Zog

17) dlwillson: Move R1 Dlwillson Field

18) Ausmuh: Trade B2 Y2 Zog

19) dlwillson: B B2 Field

20) Ausmuh: Sacrifice G3 Ausmuh
Build B2 Zog
Build B3 Zog
Build B3 Ausmuh

21) dlwillson: Trade B2 Y2 Field

22) Ausmuh: Sacrifice B2 Zog
Trade B3 G3 Ausmuh
Trade B3 Y3 Zog

23) dlwillson: Build B2 Field

24) Ausmuh: Build G1 Ausmuh

25) dlwillson: T B2 G2 Field

26) Ausmuh: Discover Y3 Zog Y1 Almost

27) dlwillson: Discover G2 Field B2 Sky

28) Ausmuh: Trade B1 Y1 Ausmuh

29) dlwillson: B G2 Sky
	Ausmuh: Two undos of shame!! Sorry about that!

30) Ausmuh: Sacrifice G3 Ausmuh
Build Y2 Zog
Build Y3 Almost
Build G3 Ausmuh

31) dlwillson: D G1 Dlwillson B1 Sea

32) Ausmuh: Move B1 Zog Almost

33) dlwillson: S G2 Sky
B G2 Dlwillson
B G3 Sky

34) Ausmuh: Sacrifice G3 Ausmuh
Build B2 Almost
Build B3 Almost
Build G3 Ausmuh

35) dlwillson: Build B3 Field

36) Ausmuh: Sacrifice Y2 Zog
Move Y3 Almost Dlwillson
Move B3 Almost Dlwillson
	dlwillson: Undo is fine. If it weren't, I'd have turned it off. :-)

37) dlwillson: A B3 Dlwillson
	Draw5PlayAll: (System "almost") Show-off!

38) Ausmuh: Sacrifice R2 Ausmuh
Attack G3N Dlwillson
Attack B3N Dlwillson

39) dlwillson: Move B3 Field Dlwillson

40) Ausmuh: Trade Y3 R3 Almost

41) dlwillson: Sacrifice G3 Sky
Build Y2 Field
Build Y3 Field
Build G3 Dlwillson

42) Ausmuh: Sacrifice R3 Almost
Attack B3N Dlwillson
Attack G3N Dlwillson
Attack R1N Dlwillson

43) dlwillson: Sacrifice R1 Field
Attack R1 Dlwillson

44) Ausmuh: Sacrifice B2 Almost
Trade G3 R3 Ausmuh
Trade Y2 R2 Zog

	dlwillson: Good game! Well played!
	Ausmuh: Thanks, you too! I look forward to the next one.


32637)
Variants: "Unrated, Hard time"
Started: 2017.7.3, Ended: 2017.7.5
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld B1 R1 G3 *

2) dlwillson: Homeworld Y3 B2 G3
	Draw5PlayAll: Aha! Taking a small universe with the first move your own!
(That sentence got messed up but yeah)

3) Felix: Build G1 Felix

4) dlwillson: Build G1 Dlwillson
	Felix: I wonder how the dynamic of this position will change since I'm going first instead of second.
	dlwillson: You'll have a slightly stronger advantage?

5) Felix: Trade G1 Y1 Felix

6) dlwillson: T G1 R1 Dlwillson
	Felix: I wonder. Do you really think the 1-1 star has an advantage? I suppose it's like the banker in that in can block or invest in larges, and like goldilocks in that it can aggressively take mediums. That certainly seems like an advantage over the fortress. But we shall see!
	Felix: I'd be fascinated to see how a game with both players using 1-1 (or 2-2 or 3-3) stars would play out.

7) Felix: Build Y1 Felix
	dlwillson: I should've started blue and red. Oh well.

8) dlwillson: Build R1 Dlwillson

9) Felix: B Y1 Felix

10) dlwillson: Build R2 Dlwillson

11) Felix: Discover Y1 Felix G2 Opus

12) dlwillson: T R2 Y2 Dlwillson

13) Felix: Move Y1 Felix Dlwillson

14) dlwillson: S Y2 Dlwillson
M R1 Dlwillson Felix
M R1 Felix Opus

15) Felix: Build Y2 Felix

16) dlwillson: A Y1 Opus

17) Felix: M Y1 Felix Dlwillson

18) dlwillson: B R2 Dlwillson

19) Felix: Build Y2 Felix

20) dlwillson: Build Y2 Opus

21) Felix: Move Y2 Felix Dlwillson
Catastrophe Dlwillson Yellow

22) dlwillson: Trade R1 Y1 Dlwillson

23) Felix: Build G1 Felix

24) dlwillson: Build G1 Dlwillson

25) Felix: Trade G1 B1 Felix

26) dlwillson: Sacrifice Y2 Opus
Move G3 Dlwillson Felix
Move G1 Dlwillson Felix

27) Felix: Build G1 Felix
Catastrophe Felix Green

28) dlwillson: Build Y1 Opus

29) Felix: Trade B1 G1 Felix
	Felix: Great move!

30) dlwillson: Build Y2 Opus

31) Felix: Build G1 Felix
	dlwillson: Hm. What was great about creating that y1? My own genius seems to have eluded me...
	Felix: I meant the move before that :P

32) dlwillson: Move Y1 Opus Felix

33) Felix: Trade Y2 R2 Felix

34) dlwillson: Trade Y1 R1 Felix

	Felix: Well done! I guess I didn't have such a strong advantage after all :)


32459)
Started: 2017.7.4, Ended: 2017.9.30
Participants: MobyNostromo (S), dragon76n (N)
Winner: dragon76n

1) dragon76n: Homeworld B3 Y1 G3

2) MobyNostromo: H Y1 B2 G3

3) dragon76n: Build G1 Dragon76n

4) MobyNostromo: B G1 Mobynostromo

5) dragon76n: Trade G1 Y1 Dragon76n

6) MobyNostromo: B G1 Mobynostromo

7) dragon76n: Build Y2 Dragon76n

8) MobyNostromo: D G1 Mobynostromo Y3 Bigbird

9) dragon76n: Discover Y1 Dragon76n B2 Blutwo

10) MobyNostromo: D G1 Mobynostromo Y3 Tweety

11) dragon76n: Build G1 Dragon76n

12) MobyNostromo: B G2 Mobynostromo

13) dragon76n: Sacrifice G3 Dragon76n
Build Y2 Blutwo
Build Y2 Blutwo
Build Y3 Dragon76n

14) MobyNostromo: D G2 Mobynostromo R3 Hotstuff

15) dragon76n: T Y2 G2 Blutwo

16) MobyNostromo: B G2 Mobynostromo

17) dragon76n: B G3 Blutwo

18) MobyNostromo: T G2 Y2 Mobynostromo

19) dragon76n: M G3 Blutwo Hotstuff

20) MobyNostromo: S G2 Hotstuff
B G2 Tweety
B G2 Bigbird

21) dragon76n: Build G3 Dragon76n

22) MobyNostromo: T G3 R3 Mobynostromo

23) dragon76n: Trade Y1 R1 Blutwo

24) MobyNostromo: Discover G1 Bigbird B2 Grover

25) dragon76n: Sacrifice G3 Dragon76n
Build G3 Dragon76n
Build Y1 Blutwo
Build G3 Blutwo

26) MobyNostromo: D Y2 Mobynostromo R3 Maximillian

27) dragon76n: M G3 Blutwo Maximillian

28) MobyNostromo: M Y2 Maximillian Grover

29) dragon76n: Move Y3 Dragon76n Grover

30) MobyNostromo: Move G1 Tweety Mobynostromo

31) dragon76n: Sacrifice R1 Blutwo
Attack Y2 Grover

32) MobyNostromo: B R1 Mobynostromo

33) dragon76n: Trade Y2 R2 Grover

34) MobyNostromo: T R1 B1 Mobynostromo

35) dragon76n: Sacrifice G3 Hotstuff
Build Y2 Grover
Build G3 Blutwo
Build R1 Grover

36) MobyNostromo: B B1 Mobynostromo

37) dragon76n: A G1 Grover

38) MobyNostromo: M B1 Mobynostromo Tweety

39) dragon76n: Move G3 Blutwo Bigbird

40) MobyNostromo: S G2 Tweety
B B1 Tweety
B B3 Tweety

41) dragon76n: Sacrifice R1 Grover
Attack G2 Bigbird

42) MobyNostromo: Build G2 Mobynostromo

43) dragon76n: S Y2 Blutwo
M G2 Blutwo Maximillian
M Y1 Blutwo Maximillian

44) MobyNostromo: T G2 Y2 Mobynostromo

45) dragon76n: T Y2 B2 Grover

46) MobyNostromo: S Y2 Mobynostromo
M B1 Tweety Grover
M B1 Tweety Grover
C Grover B

47) dragon76n: S G3 Maximillian
B Y2 Dragon76n
B Y2 Maximillian
B Y3 Maximillian

48) MobyNostromo: B G1 Mobynostromo

49) dragon76n: T Y2 B2 Dragon76n

50) MobyNostromo: M G1 Mobynostromo Tweety

51) dragon76n: D B2 Dragon76n Y2 Yeltwo

52) MobyNostromo: B R1 Mobynostromo

53) dragon76n: Move B2 Yeltwo Maximillian

54) MobyNostromo: B R1 Mobynostromo

55) dragon76n: Trade Y2 R2 Maximillian

56) MobyNostromo: D R1 Mobynostromo G3 Miracle

57) dragon76n: Discover G2 Bigbird R1 Redone

58) MobyNostromo: B G2 Mobynostromo

59) dragon76n: Sacrifice G3 Dragon76n
Build B1 Maximillian
Build Y2 Maximillian
Build G3 Dragon76n

60) MobyNostromo: M B3 Tweety Redone

61) dragon76n: Sacrifice Y1 Maximillian
Move G2 Redone Tweety

62) MobyNostromo: T G2 Y2 Mobynostromo

63) dragon76n: Sacrifice Y2 Maximillian
Move B2 Maximillian Mobynostromo
Move B1 Maximillian Mobynostromo
Catastrophe Mobynostromo Blue

64) MobyNostromo: B G2 Tweety

65) dragon76n: S G3 Dragon76n
B G3 Dragon76n
B Y1 Maximillian
B Y2 Dragon76n

66) MobyNostromo: S G2 Tweety
B G2 Tweety
B B1 Redone

67) dragon76n: Sacrifice Y2 Dragon76n
Move Y1 Maximillian Mobynostromo
Move Y3 Maximillian Mobynostromo
Catastrophe Mobynostromo Yellow

	dragon76n: Good Game. Thanks for playing.
	MobyNostromo: It was fun!


32547)
Variants: "Unrated"
Started: 2017.7.4, Ended: 2017.7.7
Participants: JunodaJuniper (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

	Felix: Hello! Good luck and have fun. First game?


32646)
Variants: "Unrated"
Started: 2017.7.4, Ended: 2017.7.7
Participants: JunodaJuniper (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3



32654)
Variants: "Hard time"
Started: 2017.7.5, Ended: 2017.7.8
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H B2 R1 G3

2) Felix: Homeworld B1 R3 G3

3) wil: B G1 Wil
	Felix: Good luck :)

4) Felix: B G1 Felix

5) wil: T G1 B1 Wil

6) Felix: Trade G1 Y1 Felix

7) wil: Build B1 Wil

8) Felix: Build Y1 Felix

9) wil: Trade B1 Y1 Wil

10) Felix: Discover Y1 Felix Y2 Gold

11) wil: Build B1 Wil

12) Felix: Build Y2 Felix

13) wil: D B1 Wil Y3 Y3
	Felix: You didn't fall for it :(

14) Felix: D Y1 Gold B3 Horcrux

15) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

16) Felix: S G3 Felix
B Y2 Horcrux
B Y2 Horcrux
B Y3 Felix

17) wil: M Y1 Wil Horcrux
C Horcrux Y

18) Felix: Trade Y1 G1 Felix
	wil: Oops, I didn't see what I was supposed to fall for.
	Felix: Hmm... well I somehow missed the fact that horcruz was adjacent to your homeworld. Oops.

19) wil: D B1 Y3 G2 G2

20) Felix: Trade Y3 B3 Felix
	wil: I was confused as to why you moved forward...outlr interface is partially to blame....when things get dicey I set up a physical game to watch

21) wil: B B3 G2
	Felix: Yeah... this isn't going so well.

22) Felix: Discover B3 Felix G2 Gremlin
	wil: I think I am going to have to make some big mistakes to lose this match.  But the good news is.... I am more than capable of that!  

23) wil: T B3 Y3 Wil

24) Felix: Build Y1 Felix

25) wil: T B3 Y3 G2
	Felix: I haven't seen any yet... bring on the mistakes!

26) Felix: Build G1 Felix

27) wil: T B2 R2 Y3

28) Felix: Build G1 Felix
	wil: You are making me work...why not just roll over?

29) wil: T Y3 G3 Wil

30) Felix: Discover G1 Felix G2 Kremlin
	Felix: I can't make it too easy for you to be number 1! I must prepare you for the dangers that lie ahead.

31) wil: M R2 Y3 Kremlin
	wil: Heck, I been kicked off the mountain top before...that doesn't bother me...
	Draw5PlayAll: I am not disinterested in the outcome of this...

32) Felix: Build G3 Felix
	Felix: I ain't skeered.

33) wil: B G3 Wil
	wil: A star designed for reds

34) Felix: Trade G3 R3 Felix

35) wil: Trade G3 Y3 Wil

36) Felix: Discover G1 Felix B2 Frost

37) wil: B G3 Wil

38) Felix: Build B3 Gremlin
	Felix: Ah, ah, ah, ah, stayin' alive, stayin' alive...

39) wil: S G3 Wil
B G3 Wil
B R1 Kremlin
B B3 G2

40) Felix: B G3 Felix

41) wil: Sacrifice Y3 G2
Move B3 G2 Felix
Move R2 Kremlin Felix
Move R1 Kremlin Felix
Catastrophe Felix R

42) Felix: T G3 R3 Felix

43) wil: S Y3 Wil
M G3 Wil Y3
M B2 Y3 Felix
M B1 G2 Felix
C Felix B

	Felix: I knew communism would fail. Well played!
	wil: I should a been able to shorten your misery.
	Felix: I did discover a fountain of hope somewhere in there. Alas. Congrats!


32661)
Variants: "Hard time"
Started: 2017.7.5, Ended: 2017.8.4
Participants: Draw5PlayAll (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 R2 G3
	dlwillson: GLHF!

2) Draw5PlayAll: Homeworld B3 R1 G3

3) dlwillson: B G1 Dlwillson

4) Draw5PlayAll: Build G1 Draw5playall

5) dlwillson: T G1 Y1 Dlwillson

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) dlwillson: B G1 Dlwillson

8) Draw5PlayAll: Build G1 Draw5playall

9) dlwillson: T G1 R1 Dlwillson

10) Draw5PlayAll: Trade G1 R1 Draw5playall

11) dlwillson: B R2 Dlwillson

12) Draw5PlayAll: Build R2 Draw5playall

13) dlwillson: Discover R1 Dlwillson B1 Sea

14) Draw5PlayAll: Discover R1 Draw5playall G2 G2

15) dlwillson: Sacrifice G3 Dlwillson
Build R3 Sea
Build R3 Sea
Build R3 Dlwillson

16) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R1 G2 Sea
Catastrophe Sea Red
	Felix: Warships.... warships everywhere!

17) dlwillson: T R3 G3 Dlwillson
	Draw5PlayAll: But sir, I fail to understand why someone would spend so much energy building warships if they would just be reduced to rubble the next day.

18) Draw5PlayAll: Build G1 Draw5playall
	dlwillson: I think it puts me a click or two ahead, but maybe not...

19) dlwillson: B Y1 Dlwillson

20) Draw5PlayAll: Trade G1 Y1 Draw5playall

21) dlwillson: B Y2 Dlwillson

22) Draw5PlayAll: Build Y2 Draw5playall

23) dlwillson: D Y1 Dlwillson B1 Sea

24) Draw5PlayAll: Discover Y1 Draw5playall G2 G2

25) dlwillson: Discover Y1 Dlwillson G1 Field

26) Draw5PlayAll: Move R2 Draw5playall G2

27) dlwillson: M R2 Dlwillson Field

28) Draw5PlayAll: Build R1 G2

29) dlwillson: D R2 Field Y3 Solar

30) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 G2
Build Y3 Draw5playall
Pass

31) dlwillson: Build Y3 Field

32) Draw5PlayAll: Move R1 G2 Sea

33) dlwillson: D Y1 Sea G2 Forest

34) Draw5PlayAll: Trade Y2 G2 Draw5playall

35) dlwillson: Move R2 Solar Sea

36) Draw5PlayAll: Build R1 G2

37) dlwillson: Attack R1 Sea

38) Draw5PlayAll: Discover R1 G2 B1 B1

39) dlwillson: B Y2 Forest

40) Draw5PlayAll: Build R3 G2

41) dlwillson: Sacrifice Y2 Forest
Move R1 Sea G2
Move R2 Sea G2
Catastrophe G2 R

42) Draw5PlayAll: Discover Y1 G2 G1 G1

43) dlwillson: Sacrifice Y3 Field
Move Y1 Field Forest
Move Y1 Forest Draw5playall
Move Y1 Forest Draw5playall

44) Draw5PlayAll: Attack Y1 Draw5playall

45) dlwillson: S G3 Dlwillson
B Y2 Draw5playall
B Y3 Dlwillson
Pass
C Draw5playall Y

46) Draw5PlayAll: Build Y1 G1

47) dlwillson: T Y2 G2 Dlwillson
	dlwillson: Typo, sorry
	Draw5PlayAll: I did not see  the build Y3 coming

48) Draw5PlayAll: Build G1 Draw5playall

49) dlwillson: B G1 Dlwillson

50) Draw5PlayAll: Trade G1 Y1 Draw5playall

51) dlwillson: M Y3 Dlwillson B1

52) Draw5PlayAll: Build Y2 G2

53) dlwillson: T G2 Y2 Dlwillson

54) Draw5PlayAll: Build Y3 Draw5playall

55) dlwillson: B Y3 Dlwillson

56) Draw5PlayAll: Trade Y1 R1 Draw5playall
	Draw5PlayAll: This has been quite a "back and forth" game.

57) dlwillson: T Y3 G3 Dlwillson

58) Draw5PlayAll: Discover Y1 G1 B2 B2
	dlwillson: Yeah. My attack's effects didn't last long enough. :-)

59) dlwillson: Trade Y3 R3 B1

60) Draw5PlayAll: Sacrifice G2 Draw5playall
Build R2 B1
Build R2 B1
Catastrophe B1 Red

61) dlwillson: B G1 Dlwillson
	Draw5PlayAll: Here we go again.

62) Draw5PlayAll: Trade Y3 G3 Draw5playall

63) dlwillson: D G1 Dlwillson B1 Sea
	dlwillson: I think you've got me. I didn't have quite enough momentum to finish you off while you didn't have a big, and now I'm way behind economically. We'll see.

64) Draw5PlayAll: Move Y2 G2 Draw5playall

65) dlwillson: B G2 Sea

66) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y1 G1
Build Y3 Draw5playall
Build Y3 B2

67) dlwillson: B Y3 Dlwillson

68) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 G1 Dlwillson
Move Y1 G1 Dlwillson
Catastrophe Dlwillson Y

69) dlwillson: S G3 Dlwillson
B G1 Sea
B G2 Dlwillson
B G3 Dlwillson

70) Draw5PlayAll: Trade Y3 G3 Draw5playall

71) dlwillson: Trade G2 Y2 Dlwillson
	Draw5PlayAll: That may come back to haunt me.

72) Draw5PlayAll: Build Y1 G2
	dlwillson: Probably not, but maybe. You have a massive material advantage, at present.

73) dlwillson: T G2 Y2 Sea
	Draw5PlayAll: But you can just keep factory building... unless...

74) Draw5PlayAll: Move Y1 G2 Draw5playall

75) dlwillson: Discover G1 Sea B2 Sky

76) Draw5PlayAll: Discover Y1 B2 G3 G3

77) dlwillson: S G3 Dlwillson
B G2 Sea
B G2 Sky
B G3 Dlwillson

78) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y1 B2
Build Y3 G3
Build Y3 Draw5playall

79) dlwillson: B G3 Sky

80) Draw5PlayAll: Move Y3 G3 Sky

81) dlwillson: T G2 B2 Sky

82) Draw5PlayAll: Sacrifice R1 Draw5playall
Attack B2 Sky

83) dlwillson: Trade G3 R3 Sky

84) Draw5PlayAll: Sacrifice Y2 G2
Move Y3 Sky Sea
Discover B2 Sky G3 G3b

85) dlwillson: B Y2 Dlwillson

86) Draw5PlayAll: Trade Y3 R3 Sea

87) dlwillson: S Y2 Dlwillson
D G2 Sea Y3 Solar
D Y2 Sea G2 Forest

88) Draw5PlayAll: Build Y2 G3

89) dlwillson: S G2 Solar
B Y3 Dlwillson
B G2 Sky

90) Draw5PlayAll: Build B1 G3b

91) dlwillson: D Y2 Dlwillson R1 Mars

92) Draw5PlayAll: Move Y3 B2 G3b
	dlwillson: Short term investments!

93) dlwillson: Sacrifice Y3 Dlwillson
Move Y2 Mars Forest
Move Y2 Forest Draw5playall
Move Y2 Forest Draw5playall
Catastrophe Draw5playall Y

	dlwillson: GGTY!
Andy did a video about what he calls the Bluebird Mistake: https://www.youtube.com/watch?v=081STRjOFMw
	Draw5PlayAll: HUH???
	Draw5PlayAll: I did not realize how much yellow you had and it was hard to trade away without giving you other opportunities.


32647)
Variants: "Unrated"
Started: 2017.7.8, Ended: 2017.7.21
Participants: Felix (S), Ausmuh (N)
Winner: Ausmuh

1) Ausmuh: Homeworld B3 Y2 G3

2) Felix: H Y1 G3 B3
	Ausmuh: Have fun!

3) Ausmuh: Build G1 Ausmuh
	Felix: Thanks! Likewise!

4) Felix: Build B1 Felix

5) Ausmuh: Trade G1 Y1 Ausmuh

6) Felix: Trade B1 Y1 Felix

7) Ausmuh: Build Y2 Ausmuh

8) Felix: Build Y2 Felix

9) Ausmuh: D Y2 Ausmuh G1 Zzz

10) Felix: Discover Y1 Felix G2 Emerald

11) Ausmuh: Trade Y1 R1 Ausmuh
	Felix: Quit making me copy you ;)

12) Felix: Build B1 Felix
	Ausmuh: Hehe, guess I'll switch it up a bit. This universe didn't mess around when it came to space travel! 

13) Ausmuh: Build G1 Ausmuh

14) Felix: Trade B1 R1 Felix
	Felix: No sir... it's one mobile universe!

15) Ausmuh: Discover R1 Ausmuh G1 Znutar

16) Felix: Build B1 Felix

17) Ausmuh: Trade G1 B1 Ausmuh

18) Felix: Trade B1 G1 Felix

19) Ausmuh: Build G2 Ausmuh

20) Felix: Discover G1 Felix B2 Azure

21) Ausmuh: Move Y2 Zzz Azure

22) Felix: Build G1 Azure

23) Ausmuh: Sacrifice R1 Znutar
Attack G1S Azure

24) Felix: Build Y1 Emerald

25) Ausmuh: Build Y3 Azure

26) Felix: Build Y3 Emerald
	Ausmuh: I live!
	Ausmuh: I live!
	Ausmuh: I'm so excited about it I had to double post. -_-'

27) Ausmuh: Trade Y3 R3 Azure
	Felix: Haha, welcome back!

28) Felix: Discover Y3 Emerald G1 Esmerelda

29) Ausmuh: Sacrifice G3 Ausmuh
Build G2 Azure
Build G3 Ausmuh
Build Y3 Azure

30) Felix: Build Y3 Esmerelda

31) Ausmuh: Trade G2 R2 Ausmuh

32) Felix: Sacrifice Y1 Emerald
Discover G1 Azure B1 Sapphire

33) Ausmuh: Sacrifice Y2 Azure
Move Y3 Azure Felix
Move R3 Azure Felix

34) Felix: Attack R3 Felix
	Felix: Great move! I think you have me.

35) Ausmuh: Sacrifice R2 Ausmuh
Attack R3S Felix
Attack B3S Felix

36) Felix: Sacrifice R1 Felix
Pass
	Ausmuh: Thanks. I think so too. GG! That's about the only way I really know how to end a game. If my opp. doesn't have a 2-pip red and I can sneak 2 large ships in it's a good day. :)

Catastrophe planning on the other hand.. what a mess I can make of that!

37) Ausmuh: Attack Y2S Felix
	Felix: It's a great way to win. I usually guard against it, but I just missed it this time! Very well played and well earned victory.
	Ausmuh: Thanks for the game! See you next time!



32692)
Started: 2017.7.10, Ended: 2017.7.20
Participants: velgarath2 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R3 G2 B3
	Felix: Greetings! I have a few games under my belt, but I'd be happy to help you learn the ropes. Let me know if you have any questions, and I'll try to offer some helpful advice if I think of it

2) velgarath2: Homeworld B1 Y2 G3

3) Felix: B B1 Felix
	velgarath2: Thank you! Let's see what happens 

4) velgarath2: Build G1 Velgarath2

5) Felix: Trade B1 Y1 Felix

6) velgarath2: Discover G1 Velgarath2 B3 Krypton

7) Felix: Build B1 Felix

8) velgarath2: Build G1 Velgarath2

9) Felix: Trade B1 G1 Felix

10) velgarath2: Build G2 Krypton

11) Felix: Discover G1 Felix B1 Vergois

12) velgarath2: Trade G1 Y1 Krypton

13) Felix: Build B1 Felix

14) velgarath2: Move G2 Krypton Vergois

15) Felix: Build B2 Felix

16) velgarath2: Trade G2 B2 Vergois

17) Felix: Trade B2 R2 Felix

18) velgarath2: Trade B2 R2 Vergois

19) Felix: Build B2 Felix

20) velgarath2: Attack G1 Vergois

21) Felix: Discover B2 Felix G1 Outward

22) velgarath2: Sacrifice G3 Velgarath2
Build G2 Vergois
Build G2 Vergois
Build G3 Velgarath2

23) Felix: Trade B3 G3 Felix

24) velgarath2: Build G3 Velgarath2

25) Felix: Sacrifice G3 Felix
Build B2 Outward
Build B2 Felix
Build B3 Felix
	Felix: Nice move!
	velgarath2: Thank you! Homeworlds is really tricky and challenging. But very cool!

26) velgarath2: Trade G3 B3 Velgarath2

27) Felix: Trade B3 G3 Felix

28) velgarath2: Sacrifice G3 Velgarath2
Build B3 Velgarath2
Build G3 Velgarath2
Build R1 Vergois
	Felix: Yes indeed. There are a lot of things to think about, and it can get a bit overwhelming sometimes!

29) Felix: Trade B2 Y2 Outward

30) velgarath2: Trade G2 Y2 Vergois

31) Felix: Sacrifice G3 Felix
Build Y1 Outward
Build B2 Outward
Build Y3 Felix

32) velgarath2: Sacrifice B3 Velgarath2
Trade Y1 R1 Krypton
Trade B3 Y3 Velgarath2
Trade G1 R1 Velgarath2

33) Felix: Move R2 Felix Outward

34) velgarath2: Move R1 Vergois Felix

35) Felix: Attack R1 Felix

36) velgarath2: Sacrifice Y3 Velgarath2
Move R1 Krypton Vergois
Move R1 Vergois Felix
Move R2 Vergois Felix
Catastrophe Felix Red

37) Felix: Build B3 Felix

38) velgarath2: Build G1 Vergois

39) Felix: Move B3 Felix Vergois

40) velgarath2: Move G1 Vergois Felix

41) Felix: Sacrifice R2 Outward
Attack G1 Felix
Attack Y2 Vergois
	Felix: Nice one!

42) velgarath2: Trade G1 Y1 Vergois

43) Felix: Trade B2 R2 Felix

44) velgarath2: Build G1 Velgarath2

45) Felix: Sacrifice R2 Felix
Attack G2 Vergois
Attack Y1 Vergois

46) velgarath2: Discover G1 Velgarath2 Y3 Alpha

47) Felix: Sacrifice Y3 Felix
Discover G1 Felix G3 Rauros
Discover Y1 Vergois G2 Saria
Discover B3 Vergois G3 Darunia
	velgarath2: That was a NICE move!!

48) velgarath2: Build R1 Velgarath2

49) Felix: Build Y3 Felix
	Felix: Thanks! But I'm not sure it will save me in the end.

50) velgarath2: Discover R1 Velgarath2 Y3 Bravo

51) Felix: Trade Y3 R3 Felix

52) velgarath2: Build R1 Velgarath2
	Draw5PlayAll: At this point http://superdupergames.org/?page=archive_play&gid=32692&idx=37 I thought Felix was doomed. I am not sure now.

53) Felix: Build Y3 Felix

54) velgarath2: Move R1 Bravo Saria

55) Felix: Move Y1 Saria Rauros

56) velgarath2: Build R2 Saria
	velgarath2: OMG....this is getting really ugly

57) Felix: Build Y3 Vergois

58) velgarath2: Build R2 Velgarath2
	Felix: I'm barely hanging on!

59) Felix: Build B2 Darunia

60) velgarath2: Move R2 Velgarath2 Rauros

61) Felix: Move R3 Felix Rauros

62) velgarath2: Sacrifice R2 Saria
Attack G1 Rauros
Attack Y1 Rauros

63) Felix: Attack R2 Rauros

64) velgarath2: Move Y1 Rauros Velgarath2

65) Felix: Attack G1 Rauros

66) velgarath2: Build R2 Saria

67) Felix: Build B3 Darunia

68) velgarath2: Sacrifice G1 Alpha
Build Y3 Velgarath2

69) Felix: Sacrifice Y2 Vergois
Move Y1 Outward Rauros
Move Y1 Rauros Velgarath2
Catastrophe Velgarath2 Yellow

70) velgarath2: Build G1 Velgarath2

71) Felix: Sacrifice Y3 Vergois
Move B3 Darunia Velgarath2
Move B3 Darunia Velgarath2
Move B2 Darunia Velgarath2
Catastrophe Velgarath2 Blue

	Felix: Good game! I hope you had fun and learned some things.
	velgarath2: That was really a very nice game. Thank you for playing with me! 


32698)
Started: 2017.7.10, Ended: 2017.9.23
Participants: ratpfink (S), Joe_Hill (N)
Winner: Joe_Hill

1) Joe_Hill: Homeworld B2 R1 G3

2) ratpfink: Homeworld Y2 B1 G3

3) Joe_Hill: Build G1 Joe_hill

4) ratpfink: Build G1 Ratpfink

5) Joe_Hill: Trade G1 Y1 Joe_hill

6) ratpfink: Discover G1 Ratpfink Y3 Cat

7) Joe_Hill: Build G1 Joe_hill

8) ratpfink: Build G1 Cat

9) Joe_Hill: Discover G1 Joe_hill B3 Verge

10) ratpfink: Build G2 Ratpfink


11) Joe_Hill: Build G2 Verge

12) ratpfink: Trade G2 R2 Ratpfink

13) Joe_Hill: Trade G2 R2 Verge

14) ratpfink: Build G2 Ratpfink

15) Joe_Hill: Build G2 Verge

16) ratpfink: Trade G2 Y2 Ratpfink

17) Joe_Hill: Build Y1 Joe_hill

18) ratpfink: Build Y1 Ratpfink

19) Joe_Hill: Move Y1 Joe_hill Verge

20) ratpfink: Move Y1 Ratpfink Cat

21) Joe_Hill: Discover G1 Verge Y2 Merge

22) ratpfink: Build G2 Ratpfink

23) Joe_Hill: Build G2 Merge

24) ratpfink: Build R1 Ratpfink

25) Joe_Hill: Build Y3 Verge

26) ratpfink: Sacrifice Y2 Ratpfink
Move G1 Cat Merge
Move G1 Cat Merge
Catastrophe Merge G

27) Joe_Hill: Trade Y3 R3 Verge

28) ratpfink: Move R1 Ratpfink Verge

29) Joe_Hill: Move R3 Verge Joe_hill

30) ratpfink: Attack Y1 Verge

31) Joe_Hill: Attack R1 Verge

32) ratpfink: Discover Y1 Verge R1 Bat

33) Joe_Hill: Build G1 Verge

34) ratpfink: Build R2 Ratpfink

35) Joe_Hill: Trade G3 Y3 Joe_hill

36) ratpfink: Trade G2 B2 Ratpfink

37) Joe_Hill: Trade G2 Y2 Verge

38) ratpfink: Move R2 Ratpfink Cat

39) Joe_Hill: Move R2 Verge Bat

40) ratpfink: Discover Y1 Bat G2 Worm

41) Joe_Hill: Build R3 Verge

42) ratpfink: Build R3 Ratpfink

43) Joe_Hill: Move R3 Joe_hill Cat

44) ratpfink: Move R2 Cat Joe_hill

45) Joe_Hill: Attack R2 Joe_hill

46) ratpfink: Move Y1 Worm Cat

47) Joe_Hill: T Y1 G1 Joe_hill

48) ratpfink: Build G1 Ratpfink

49) Joe_Hill: Move R1 Verge Ratpfink

50) ratpfink: Sacrifice G1 Ratpfink
Build Y1 Cat
Catastrophe Cat Y

51) Joe_Hill: Build Y1 Joe_hill

52) ratpfink: Discover R2 Ratpfink Y3 Wampa

53) Joe_Hill: Build R3 Verge

54) ratpfink: Attack R1 Ratpfink

55) Joe_Hill: Sacrifice Y2 Verge
Move R3 Verge Ratpfink
Move R3 Verge Ratpfink
Catastrophe Ratpfink Red

56) ratpfink: Trade B2 Y2 Ratpfink

57) Joe_Hill: Move Y1 Joe_hill Verge

58) ratpfink: Build G1 Ratpfink

59) Joe_Hill: Build G2 Verge

60) ratpfink: Move G1 Ratpfink Wampa

61) Joe_Hill: Trade G1 R1 Verge

62) ratpfink: Build R3 Wampa

63) Joe_Hill: Build R3 Verge

64) ratpfink: Trade G3 R3 Ratpfink

65) Joe_Hill: Build Y1 Verge

66) ratpfink: Build G1 Wampa

67) Joe_Hill: Move Y1 Verge Bat

68) ratpfink: Sacrifice Y2 Ratpfink
Move R3 Wampa Joe_hill
Move R2 Wampa Joe_hill
Catastrophe Joe_hill R

69) Joe_Hill: Build G2 Joe_hill

70) ratpfink: Move G1 Wampa Ratpfink

71) Joe_Hill: M R2 Bat Wampa

72) ratpfink: Move G1 Wampa Joe_hill

73) Joe_Hill: Trade G1 R1 Joe_hill

74) ratpfink: Build G1 Joe_hill

75) Joe_Hill: Move R2 Wampa Joe_hill

76) ratpfink: Build G2 Joe_hill

77) Joe_Hill: Move Y1 Bat Joe_hill
Catastrophe Joe_hill G
	ratpfink: build g2 Joe_Hill

78) ratpfink: Build R1 Ratpfink

79) Joe_Hill: Trade Y1 G1 Joe_hill

80) ratpfink: Discover R1 Ratpfink G3 Clown

81) Joe_Hill: Build R2 Verge

82) ratpfink: Build G1 Ratpfink

83) Joe_Hill: Build G2 Joe_hill

84) ratpfink: Discover G1 Ratpfink G3 Down

85) Joe_Hill: Move R2 Joe_hill Down

86) ratpfink: Sacrifice G1 Down
Build R2 Ratpfink

87) Joe_Hill: S Y3 Joe_hill
M R1 Verge Ratpfink
M R2 Verge Ratpfink
Pass
C Ratpfink R



32619)
Variants: "Hard time"
Started: 2017.7.10, Ended: 2017.7.26
Participants: Draw5PlayAll (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) Draw5PlayAll: Homeworld B1 R3 G3

3) wil: Build G1 Wil

4) Draw5PlayAll: Build G1 Draw5playall
	wil: lol...so don't use any of your games in the tv shows eh?   Not even if we change the names to protect the guilty?

5) wil: Trade G1 B1 Wil
	Draw5PlayAll: TV??
	wil: looney tv

6) Draw5PlayAll: Trade G1 R1 Draw5playall
	wil: HWtv...having conversations continue in closed games is a pain...need to move them to current games.

7) wil: Build B1 Wil

8) Draw5PlayAll: Build R1 Draw5playall
	wil: a race huh?

9) wil: B G1 Wil

10) Draw5PlayAll: Trade R1 Y1 Draw5playall

11) wil: T G1 Y1 Wil

12) Draw5PlayAll: Build R1 Draw5playall

13) wil: D B1 Wil Y3 Y3

14) Draw5PlayAll: Discover R1 Draw5playall G2 G2

15) wil: B B2 Wil

16) Draw5PlayAll: Build R2 G2

17) wil: D B1 Wil Y3 Why3

18) Draw5PlayAll: Move Y1 Draw5playall G2

19) wil: S G3 Wil
B B2 Why3
B B3 Y3
B B3 Wil

20) Draw5PlayAll: Move R2 G2 Why3

21) wil: S B2 Why3
T B3 G3 Wil
T B3 R3 Y3

22) Draw5PlayAll: Attack B1 Why3

23) wil: Discover B2 Wil Y3 Ythree

24) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 G2
Build R2 Why3
Build R3 Draw5playall

25) wil: S G3 Wil
B B2 Y3
B B3 Ythree
B B3 Y3

26) Draw5PlayAll: Trade R2 G2 Why3

27) wil: S B2 Y3
T B3 G3 Y3
T B2 R2 Ythree

28) Draw5PlayAll: Move R2 Why3 Wil

29) wil: M G3 Y3 Wil

30) Draw5PlayAll: Trade R1 G1 Draw5playall

31) wil: A R2 Wil

32) Draw5PlayAll: Build R1 Draw5playall

33) wil: T R2 B2 Wil
	wil: Thank you for the donation of your warship, we may convert it for use in more peaceful missions

34) Draw5PlayAll: Build B2 Why3
	Draw5PlayAll: My plan would have worked if there were more reds in the bank!
	wil: Lol...  The dog would have caught the cat if he didn't stop.at the fire hydrant...

	wil: When planning a dinner or a battle...checking resources should happen before you light the fire...

35) wil: Sacrifice G3 Wil
Build R2 Y3
Build B3 Y3
Build B3 Ythree
	wil: Another contemplation at that stage is...don't take.out half the star unless you have a plan to take out the other half...  Ya gotta watch access as the universe changes more worm holes open up.

36) Draw5PlayAll: Move B1 Why3 Wil

37) wil: M R2 Y3 Wil

38) Draw5PlayAll: Move B2 Why3 Wil
Catastrophe Wil Blue

39) wil: Move B3 Y3 Wil

40) Draw5PlayAll: Trade R1 Y1 Draw5playall

41) wil: Move B3 Ythree G2

42) Draw5PlayAll: Move R2 G2 Why3

43) wil: S R2 Wil
A R1 G2
A Y1 G2

44) Draw5PlayAll: Build Y2 Draw5playall

45) wil: M B3 G2 Why3

46) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover R2 Why3 Y2 Y2
Discover G2 Why3 Y2 Y2b

47) wil: Build Y2 G2

48) Draw5PlayAll: Sacrifice G2 Y2b
Build Y2 Draw5playall
Build R1 Y2
	Draw5PlayAll: This reminds me of the game Realm. Particularly the Dispersal plays.

49) wil: B R2 G2

50) Draw5PlayAll: Trade R3 G3 Draw5playall

51) wil: Trade B3 R3 Why3

52) Draw5PlayAll: Discover G1 Draw5playall B2 B2

53) wil: M R2 Ythree B2
	wil: I don't know the game realm...and dispersal? like catastrophes?


54) Draw5PlayAll: Sacrifice G1 B2
Build G1 Draw5playall

55) wil: T B3 G3 Ythree

56) Draw5PlayAll: Discover G1 Draw5playall B2 B2b
	Draw5PlayAll: Really? I put my smallest explorer on an innocent system, and you have to scare it off?

57) wil: S G3 Ythree
B B1 Y3
B B2 Y3
B Y3 Wil
	wil: We received a transmission, the ship wished to defect... You should know you just brought a traitor back home.
	Draw5PlayAll: I decommissioned the captain after a court martial. Now the ship is run by loyal members only.

58) Draw5PlayAll: Build G1 B2b

59) wil: M R3 Y3 B2b

60) Draw5PlayAll: Build G1 Draw5playall

61) wil: A G1 B2b
	wil: Is this a better time for a visit?

62) Draw5PlayAll: Build G2 B2b

63) wil: Trade B2 G2 Y3

64) Draw5PlayAll: Discover G1 Draw5playall B2 B2c

65) wil: Sacrifice G2 Y3
Build B3 Wil
Build B3 Y3

66) Draw5PlayAll: Build G2 B2c

67) wil: Sacrifice Y2 G2
Move R1 G2 Draw5playall
Move R2 B2 Draw5playall

68) Draw5PlayAll: Build G3 Draw5playall

69) wil: M R2 G2 Draw5playall
C Draw5playall R
	wil: been dawdling too long, time to move in...
	wil: I was working towards building the doomsday machine, but it appears the modified version will work fine.
	wil: but we like what you've done with the place...we just have a little remodeling planned.

70) Draw5PlayAll: Trade G2 R2 B2c

71) wil: S Y3 Wil
M B1 Y3 Draw5playall
M B1 Y3 Draw5playall
M B3 Y3 Draw5playall
C Draw5playall B

	wil: I surely could have done that more efficiently... Gg


32625)
Variants: "Hard time"
Started: 2017.7.10, Ended: 2017.7.17
Participants: Felix (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) Felix: Homeworld Y2 B3 G3

3) wil: B G1 Wil

4) Felix: Build G1 Felix

5) wil: T G1 R1 Wil

6) Felix: Trade G1 R1 Felix
	wil: Lez playz

7) wil: B R2 Wil

8) Felix: Build R2 Felix

9) wil: T R1 Y1 Wil

10) Felix: Trade R2 Y2 Felix

11) wil: Build Y1 Wil

12) Felix: Build G1 Felix

13) wil: D Y1 Wil G3 G3

14) Felix: Trade G1 B1 Felix

15) wil: B Y1 G3

16) Felix: Discover Y2 Felix G1 Piece

17) wil: S G3 Wil
B Y2 G3
B Y3 Wil
B Y3 Wil

18) Felix: Build Y3 Piece

19) wil: S Y2 G3
M Y1 G3 Piece
M Y1 G3 Piece
C Piece Y

20) Felix: Build B1 Felix
	Felix: Niiiiice

21) wil: T Y3 G3 Wil

22) Felix: Discover B1 Felix G1 Preston
	wil: Yeah, two worthwhile sacrifices.

23) wil: B Y1 Wil

24) Felix: Build B1 Preston

25) wil: D Y3 Wil G3 G3

26) Felix: Trade B1 Y1 Preston

27) wil: D Y1 Wil B3 B3

28) Felix: Build B1 Preston

29) wil: S G3 Wil
B Y2 G3
B Y2 B3
B Y3 Wil

30) Felix: Discover B1 Preston Y3 Brink
	wil: Deja vu

31) wil: M Y2 G3 Preston

32) Felix: Sacrifice G3 Felix
Build B2 Brink
Build B2 Brink
Build B3 Felix

33) wil: S R2 Wil
A Y1 Preston
A B1 Preston

34) Felix: Sacrifice B1 Brink
Trade B3 G3 Felix
	wil: Deja blue

35) wil: T Y3 G3 Wil
	Felix: And no yellows left for me!

36) Felix: Trade B2 G2 Brink

37) wil: B Y3 Preston

38) Felix: Move B2 Brink Preston

39) wil: T Y3 R3 Preston

	Felix: Not much point playing this out. Well played!
	wil: Idk how many times I've won (or lost) on both sides of this situation due to the leader missing something or making a bad move and capitalizing....  I almost always hang out..
	wil: Idk how many times I've won (or lost) on both sides of this situation due to the leader missing something or making a bad move and capitalizing....  I almost always hang out..
	wil: But it can get confusing with a number of.games with the same player...


32640)
Variants: "Unrated, Hard time"
Started: 2017.7.10, Ended: 2017.7.15
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B1 R3 G3

2) wil: H Y2 B2 G3 *

3) dlwillson: B G1 Dlwillson
	wil: The microverse
	wil: And instafreeze with ts52

4) wil: B G1 Wil
	dlwillson: What do you mean?
	wil: I just got into these two games playing the strange second responses...
	wil: I just got into these two games playing the strange second responses...

5) dlwillson: Trade G1 Y1 Dlwillson
	wil: Unconventional.... Currently

6) wil: Trade G1 Y1 Wil

7) dlwillson: Build Y1 Dlwillson

8) wil: B Y2 Wil

9) dlwillson: Move Y1 Dlwillson Wil
Catastrophe Wil Y

10) wil: B G1 Wil

11) dlwillson: Build G1 Dlwillson
	wil: Lol...forgot what was going on between games
	dlwillson: I was going to call it out, but then I realized that *you* set up the micro-verse. :-)

12) wil: T G3 R3 Wil

13) dlwillson: Trade G1 R1 Dlwillson
	wil: Oh no worries...  I enjoy losing to my own stupid mistakes... I am working at convincing myself that someday I'll quit making them.

14) wil: B G1 Wil

15) dlwillson: B G1 Dlwillson

16) wil: T G1 Y1 Wil

17) dlwillson: T G1 B1 Dlwillson

18) wil: B G1 Wil

19) dlwillson: B B1 Dlwillson

20) wil: Discover G1 Wil B3 B3

21) dlwillson: D B1 Dlwillson G2 Field
	wil: yeah this one is over

22) wil: B G1 Wil
	dlwillson: It's going to take a few more moves to get it done, though.

23) dlwillson: S G3 Dlwillson
B B2 Field
B B2 Field
B B3 Dlwillson

24) wil: B G2 B3

25) dlwillson: M B1 Dlwillson Wil
	wil: Just wanna watch my world collapse

26) wil: Attack B1 Wil

27) dlwillson: M B3 Dlwillson Wil

28) wil: A B3 Wil

29) dlwillson: T B2 Y2 Field
	wil: What am I missing?
	wil: Did you just slip?
	dlwillson: LOL! Yes!

30) wil: M B3 Wil Dlwillson
	wil: Lol...that will still work.
	wil: Or maybe it won't.

	dlwillson: Hahaha! Good game! Sheesh!
/me slaps his forehead
	wil: Yes, you let me free!


32642)
Started: 2017.7.10, Ended: 2017.9.22
Participants: wil (S), MobyNostromo (N)
Winner: wil

1) MobyNostromo: H B1 G2 Y3

2) wil: H Y3 B2 G3

3) MobyNostromo: B Y1 Mobynostromo

4) wil: B G1 Wil

5) MobyNostromo: T Y1 G1 Mobynostromo

6) wil: T G1 B1 Wil

7) MobyNostromo: B G1 Mobynostromo

8) wil: B B1 Wil

9) MobyNostromo: D G1 Mobynostromo Y3 Azo

10) wil: D B1 Wil Y1 Y1

11) MobyNostromo: B G1 Mobynostromo

12) wil: S G3 Wil
B B2 Y1
B B2 Y1
B B3 Wil

13) MobyNostromo: B G2 Azo

14) wil: S B2 Y1
T B2 R2 Y1
T B3 G3 Wil

15) MobyNostromo: D G2 Azo B2 Thalo

16) wil: S G3 Wil
B B2 Y1
B B3 Y1
B B3 Wil

17) MobyNostromo: B Y1 Mobynostromo

18) wil: Move B3 Y1 Azo

19) MobyNostromo: Trade G1 R1 Mobynostromo

20) wil: T B3 G3 Wil

21) MobyNostromo: B G1 Thalo

22) wil: S G3 Wil
B B3 Wil
B B3 Azo
B R1 Y1

23) MobyNostromo: B G2 Azo

24) wil: S B2 Y1
T B3 G3 Wil
T B3 R3 Azo

25) MobyNostromo: D G2 Azo Y2 Nickel

26) wil: S G3 Wil
B B2 Azo
B B3 Y1
B B3 Wil

27) MobyNostromo: B G3 Nickel

28) wil: S B2 Azo
T B3 G3 Wil
T B3 G3 Y1

29) MobyNostromo: T G2 B2 Thalo

30) wil: A G1 Azo

31) MobyNostromo: D Y1 Mobynostromo B3 Cobalt

32) wil: S G3 Y1
B B3 Azo
B G2 Azo
B G3 Wil

33) MobyNostromo: B Y1 Mobynostromo

34) wil: Trade G2 Y2 Azo

35) MobyNostromo: S Y3 Mobynostromo
M Y1 Cobalt Thalo
M Y1 Thalo Azo
M Y1 Mobynostromo Azo
C Azo Y

36) wil: S G3 Wil
B B3 Y1
B B3 Wil
B B3 Y1

37) MobyNostromo: S G3 Nickel
B G1 Nickel
B G2 Thalo
B G3 Mobynostromo

38) wil: B G3 Wil

39) MobyNostromo: T G2 Y2 Thalo

40) wil: S B3 Wil
T G3 R3 Wil
T B3 G3 Y1
T B3 Y3 Y1

41) MobyNostromo: D B2 Thalo Y1 Arylide

42) wil: B B3 Y1

43) MobyNostromo: Trade G1 Y1 Mobynostromo

44) wil: B B3 Y1

45) MobyNostromo: B Y2 Mobynostromo

46) wil: M B3 Y1 Thalo

47) MobyNostromo: D Y1 Mobynostromo Y3 Oxide

48) wil: B B3 Y1

49) MobyNostromo: S Y2 Mobynostromo
M Y1 Oxide Y1
M Y2 Thalo Y1
C Y1 Y

50) wil: B R1 Wil

51) MobyNostromo: T G1 Y1 Thalo

52) wil: S R1 Wil
A Y1 Thalo

53) MobyNostromo: B R1 Mobynostromo

54) wil: M B3 Thalo Arylide

55) MobyNostromo: T R1 Y1 Mobynostromo

56) wil: B R1 Wil

57) MobyNostromo: B Y2 Mobynostromo

58) wil: S R1 Wil
A B2 Arylide

59) MobyNostromo: B R1 Mobynostromo

60) wil: D B2 Arylide G3 G3

61) MobyNostromo: D R1 Mobynostromo Y3 Vanadate

62) wil: T B2 Y2 G3

63) MobyNostromo: T Y1 B1 Mobynostromo

64) wil: B G1 Wil

65) MobyNostromo: M B1 Mobynostromo Vanadate

66) wil: M B3 Arylide G3

67) MobyNostromo: T R1 G1 Vanadate

68) wil: D B1 Wil Y1 Y1

69) MobyNostromo: B B2 Vanadate

70) wil: B B3 G3

71) MobyNostromo: S G3 Mobynostromo
B G2 Vanadate
B G3 Vanadate
B R1 Mobynostromo

72) wil: S G3 Wil
B G3 Wil
B B3 Y1
B R1 Wil

73) MobyNostromo: M G3 Vanadate Mobynostromo

74) wil: Sacrifice G3 Wil
Build Y1 Thalo
Build Y3 G3
Build G3 Wil

75) MobyNostromo: M R1 Mobynostromo Vanadate

76) wil: S Y2 G3
M Y3 G3 Mobynostromo
M B3 G3 Mobynostromo

77) MobyNostromo: A Y3 Mobynostromo

78) wil: S R3 Wil
A G3 Mobynostromo
A Y3 Mobynostromo
A Y2 Mobynostromo

79) MobyNostromo: T B2 R2 Vanadate

80) wil: S R1 Wil
A R1 Mobynostromo

	wil: It was a hostile takeover...we evidently like your world better than our own
	MobyNostromo: It seems that way...


32657)
Started: 2017.7.10, Ended: 2017.7.21
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

2) wil: H G2 B1 B3 *

3) ts52: Build G1 Ts52
	wil: The instafreeze
	wil: And microverse with dlwillson

4) wil: Build B1 Wil
	ts52: interesting, sorry for the delay
	wil: no worries


5) ts52: Build G1 Ts52

6) wil: T B3 Y3 Wil

7) ts52: Discover G1 Ts52 B2 Grover
	wil: How was camping?

8) wil: B B2 Wil
	ts52: Not the greatest. Kind of cold, and damp, and the lake was closed to swimming because of bacteria :( Still had fun though. 

9) ts52: Build G1 Grover

10) wil: D B1 Wil G3 G3

11) ts52: Build G2 Ts52

12) wil: B B2 G3

13) ts52: Build G2 Grover
	wil: Last trip I went on 20% of the campground got noro....I was unscathed, but the horror stories!  Last year I was over a month in tents..wunderful
	ts52: Glad you managed to escape unscathed. We only get to take 2 short camping trips a year, but we make the most of them.

14) wil: B B3 Wil

15) ts52: Trade G3 Y3 Ts52

16) wil: T B3 G3 Wil
	wil: You go camping to the same place or different parks?  Car camping, RVing, or backpackin?

17) ts52: Build G3 Ts52
	ts52: So far we always go the same place, but they've had so many problems with cyanobacteria, we may have to find some new places. Basically car camping, but the place we go you have to haul your gear away from the parking area, so you don't hear cars coming and going from your site. We have a '10 person' tent for the 4 of us. :D

18) wil: S G3 Wil
B B3 Wil
B B3 G3
B Y1 Wil
	wil: Tents and inflatable boats, you.always divide by two for the real number... 

19) ts52: Trade G3 B3 Ts52
	wil: This is the deal now...the kids get.their own bedrooms...
	ts52: Yeah, always divide by 2. Haven't gotten into inflatable boats yet, but I can see it would be the same. How old are your kids?

20) wil: S B2 G3
T B3 G3 G3
T B3 G3 Wil
	wil: https://o7fe62guj6g73vlj30xpogpm-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/MIH0774And8more-hdr2233-Edit-1024x684.jpg
	wil: https://o7fe62guj6g73vlj30xpogpm-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/MIH0774And8more-hdr2233-Edit-1024x684.jpg
	wil: Lol,.mine just turned 24...awesome campers...by the time they were in middle.school... All I did was drive up. And then tell them I was gonna go pay, when I got.back the tent and kitchen was set up...

21) ts52: Discover G2 Ts52 Y2 Bigbird
	ts52: That's awesome. Great picture too. Mine are 9 and 11, so not quite ready to set up without me yet.
	ts52: Also, nice play with the double trade.

22) wil: Sacrifice G3 G3
Build B2 Wil
Build B3 G3
Build B3 G3
	wil: lol...that is not my tent!!   that is what happens when you jump back and forth between devices...that was the temple 2016 burning man...I was camped there for 12 days last year...

23) ts52: Build G3 Ts52
	wil: This one, three tents attach to a central.popup. and there is an internal tent.for.that too...https://www.amazon.com/gp/aw/d/B01IT4SVIG/ref=mp_s_a_1_9?ie=UTF8&qid=1500407761&sr=8-9&pi=AC_SX236_SY340_FMwebp_QL65&keywords=ozark+trail+canopy+tent
	Draw5PlayAll: All of wills ships are aligned on the left in my view.
	ts52: That looks like a pretty cool setup.

24) wil: Trade B3 R3 G3
	wil: I first saw it camping in NC near tennesee in a rainforest...I chuckled...those flys aren't going to help...it rained/poured every day for at least an hour..sometimes 8..sometimes all day... over two weeks and not a problem...so I bought my own...roll out a tarp and oriental rug and we is glamping

25) ts52: Trade G3 R3 Ts52

26) wil: Build B3 G3

27) ts52: Build G3 Ts52

28) wil: S Y1 Wil
M R3 G3 Grover
	ts52: That's pretty awesome. I'll have to keep it in mind when my current tent finally falls apart.

29) ts52: Sacrifice Y3 Ts52
Move B3 Ts52 Grover
Move B3 Grover G3
Move B3 G3 Wil
Catastrophe Wil Blue
	Draw5PlayAll: ts52's homeworld fleet... especially if he moves the g1 out.
	wil: he may just do that to catastrophe the greens I am about to accumulate...

30) wil: A G2 Grover

31) ts52: Move G1 Ts52 Wil

32) wil: S B3 G3
T G3 R3 Wil
T B3 G3 G3
T B1 Y1 G3

33) ts52: Sacrifice G1 Grover
Build G1 Wil

34) wil: Sacrifice Y3 Wil
Move R3 Wil Ts52
Move R3 Grover Ts52
Move G3 G3 Wil
Catastrophe Wil G
	wil: blunders r us!  good game...  I like to lose these and save my luck for the ladder!!
	wil: Keeps my points down so folks missunderstimate me..
	ts52: Indeed, good game! I look forward to our next one.



32713)
Variants: "Unrated, Hard time"
Started: 2017.7.11, Ended: 2017.7.20
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H R2 B2 G3 *

2) Felix: Homeworld Y2 B3 G3
	dlwillson: Strange that the engine forces confirmation for this, while being completely indifferent to forgone catastrophes.
	Felix: Odd indeed. I like the experimentation! You've presented me with a very interesting choice...

3) dlwillson: Build G1 Dlwillson

4) Felix: Build G1 Felix
	dlwillson: I wonder if b1 r1 would be strong or weak, in the end? I wonder if a yellow or blue starting ship would work well. Yellow seems like it would, but then you'd *have* to have a green star. Yuck. I'm not sure *why* it's yuck, but yuck.
	Felix: I do like the idea of starting with blue or yellow, but I can't stand having a green star! It just feels like a lot of toil to try and set up a factory. I do it sometimes to handicap myself against new players; but I really don't like it. I thought about using a 1-1 against this, but I kind of want to see how the 2-2 works against a fortress.
	Felix: In theory, 2-2 may be the strongest starting position, since it lets you block larges and move out to smalls if necessary. But it also forces a small or micro universe, which certainly has quirks. It's a totally different game when there isn't time to build up your fleet.

5) dlwillson: T G1 Y1 Dlwillson

6) Felix: Trade G1 Y1 Felix
	dlwillson: Could build the factory in another system. It's slower, but it could work.
	Draw5PlayAll: But if you go FIRST with the 2-2 then you have a tempo more. I like the blue-red stars since I can safely build yellow ships in the homeworld, and with a yellow star that gets risky. Colonies are hard to come by so I like to keep yellows at home.

7) dlwillson: Build Y1 Dlwillson

8) Felix: Build Y2 Felix

9) dlwillson: D Y1 Dlwillson B1 Sea

10) Felix: Discover Y1 Felix G1 Out

11) dlwillson: B G1 Dlwillson

12) Felix: Build G1 Felix

13) dlwillson: Discover G1 Dlwillson Y3 Solar

14) Felix: Discover G1 Felix B1 Oat

15) dlwillson: B G2 Dlwillson

16) Felix: Build G2 Felix

17) dlwillson: Build G2 Solar

18) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Oat
Build Y2 Out

19) dlwillson: Sacrifice G3 Dlwillson
Build G3 Dlwillson
Build Y3 Sea
Build Y3 Dlwillson

20) Felix: Sacrifice Y2 Felix
Move G1 Oat Dlwillson
Move G3 Oat Dlwillson

21) dlwillson: Discover Y1 Dlwillson B1 Sky
Catastrophe Dlwillson G
	Felix: Oh boy. This is ill conceived.
	Draw5PlayAll: Unusual move.

22) Felix: Discover Y1 Out B3 Aegis
	dlwillson: I'm not sure ... what was supposed to happen?
	Felix: Oh, pretty much what just happened. I just thought it would be fun to force you to do the catastrophe instead. I just meant that attacking this soon is ill conceived.

23) dlwillson: M G1 Solar Dlwillson

24) Felix: Move Y1 Aegis Dlwillson

25) dlwillson: Attack Y1 Dlwillson

26) Felix: Build Y2 Out

27) dlwillson: T Y1 G1 Sea

28) Felix: Move Y2 Out Dlwillson

29) dlwillson: Sacrifice Y3 Sea
Move G2 Solar Sea
Move G2 Sea Felix
Move G1 Sea Felix
Catastrophe Felix G
	dlwillson: Sneak, sneak, sneak... KABOOOOM!!!
	Felix: Wow, nicely done. I wasn't expecting that. Rookie mistake! I have not been on my game over the last few weeks. Not enough coffee? Well played!



32719)
Variants: "Unrated"
Started: 2017.7.11, Ended: 2017.7.21
Participants: Jaybones (S), Eraelan (N)
Winner: Jaybones

1) Eraelan: Homeworld B3 G2 Y3
	Jaybones: Hi there :) I'm completely new to Homeworlds too! Excited to finally get a game in. Good luck!

2) Jaybones: Homeworld R3 B1 G3
	Eraelan: I'm looking forward to playing!  Good luck to you as well!

3) Eraelan: Build Y1 Eraelan

4) Jaybones: Build G1 Jaybones
	Eraelan: Boy...getting a hang of these commands certainly takes some time.

5) Eraelan: Discover Y3 Eraelan G1 Callup

6) Jaybones: Build G1 Jaybones

7) Eraelan: Build Y1 Eraelan
	Jaybones: Tell me about it! Haha getting there... I think?!

8) Jaybones: Trade G1 Y1 Jaybones

9) Eraelan: Move Y1 Eraelan Callup

10) Jaybones: Discover Y1 Jaybones G2 Melon

11) Eraelan: Build Y2 Eraelan

12) Jaybones: Build Y2 Melon

13) Eraelan: Trade Y1 B1 Eraelan

14) Jaybones: Build G1 Jaybones

15) Eraelan: Build Y1 Callup

16) Jaybones: Move Y1 Melon Callup
Catastrophe Callup Y

17) Eraelan: Build Y1 Eraelan
	Eraelan: Well...that's unfortunate.

18) Jaybones: Trade G1 Y1 Jaybones

19) Eraelan: Discover B1 Eraelan G1 Color
	Jaybones: I couldn't resist my first ever catastrophe opportunity sorry!
	Eraelan: Haha, no worries. Had it been me I probably would have done the same.

20) Jaybones: Discover G1 Jaybones Y2 Banana

21) Eraelan: Build B1 Color

22) Jaybones: Discover G1 Banana G1 Apple
	Jaybones: Discover G1 Banana g1 Apple

23) Eraelan: Build B2 Color
	Jaybones: Ha! Wrong text box, still getting used to this site!

24) Jaybones: Build G2 Jaybones
	Eraelan: Haha, I know the feeling! 

25) Eraelan: Trade B2 R2 Color

26) Jaybones: Sacrifice G3 Jaybones
Build G3 Jaybones
Build G3 Apple
Build G3 Jaybones

27) Eraelan: Build B2 Color
	Eraelan: Nice job controlling the Green!

28) Jaybones: Trade G3 R3 Jaybones

29) Eraelan: Build Y1 Eraelan
	Jaybones: Cheers, I'm amazed at how much there is to take in in this game and the possibilities available. Feel like my brain is about to fall out of my head!

30) Jaybones: Sacrifice G3 Jaybones
Build G3 Jaybones
Build Y2 Jaybones
Build Y3 Melon
	Eraelan: I know!  I feel like I'm just pulling levers and hoping for the best at this point. Haha.  

31) Eraelan: Build R1 Color

32) Jaybones: Sacrifice Y2 Melon
Move Y3 Melon Apple
Move Y3 Apple Eraelan
Catastrophe Eraelan Yellow
	Jaybones: Whew, thank you the game! Great fun and learned a lot! 
	Jaybones: Thank you for the game*!



32728)
Variants: "Hard time"
Started: 2017.7.12, Ended: 2017.7.18
Participants: foksieloy (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R2 B1 G3
	foksieloy: good luck, have fun

2) foksieloy: Homeworld B1 R3 G3

3) bhorner: Build G1 Bhorner

4) foksieloy: Build G1 Foksieloy
	bhorner: Yes, good luck to you too.  :)

5) bhorner: Trade G1 B1 Bhorner

6) foksieloy: Trade G1 Y1 Foksieloy

7) bhorner: Build B2 Bhorner

8) foksieloy: Build Y1 Foksieloy

9) bhorner: Trade B2 Y2 Bhorner

10) foksieloy: Discover Y1 Foksieloy G2 Tibbers

11) bhorner: Build B2 Bhorner

12) foksieloy: Build Y1 Foksieloy

13) bhorner: Build Y2 Bhorner

14) foksieloy: Discover Y1 Foksieloy G2 Annie

15) bhorner: Discover Y2 Bhorner G3 Xmas

16) foksieloy: Build G1 Foksieloy

17) bhorner: Move B2 Bhorner Xmas

18) foksieloy: Discover Y1 Annie B3 Valor

19) bhorner: Build B2 Bhorner

20) foksieloy: Sacrifice G1 Foksieloy
Build Y2 Valor

21) bhorner: Build Y3 Xmas

22) foksieloy: Trade Y2 B2 Valor

23) bhorner: Discover B2 Bhorner Y3 Big-bird

24) foksieloy: Build Y2 Tibbers

25) bhorner: Build Y3 Bhorner

26) foksieloy: Trade Y1 G1 Valor

27) bhorner: Build B3 Xmas

28) foksieloy: Build G1 Valor

29) bhorner: Trade B3 R3 Xmas

30) foksieloy: Sacrifice Y1 Foksieloy
Move B2 Valor Tibbers

31) bhorner: Move R3 Xmas Tibbers

32) foksieloy: Sacrifice Y2 Tibbers
Move G1 Valor Bhorner
Move G1 Valor Bhorner

33) bhorner: Sacrifice Y2 Bhorner
Move G3 Bhorner Xmas
Discover G3 Xmas Y2 Little-bird

34) foksieloy: Move B2 Tibbers Big-bird

35) bhorner: Move Y3 Xmas Little-bird

36) foksieloy: Move B2 Big-bird Bhorner
	bhorner: I'm not certain, but I think everything can be blamed on the little blue in your homeworld, which matched mine.
	foksieloy: Yea, basically I just woke up and thought I was the first player. :)

37) bhorner: Sacrifice Y2 Xmas
Move Y3 Little-bird Foksieloy
Move G3 Little-bird Foksieloy
	bhorner: Ah!

38) foksieloy: Build B3 Bhorner
Catastrophe Bhorner Blue

39) bhorner: Sacrifice R3 Tibbers
Attack G3 Foksieloy
Pass
Pass
	foksieloy: The last hurrah. GG!
	bhorner: GG.  :)



32727)
Variants: "Unrated"
Started: 2017.7.13, Ended: 2017.10.13
Participants: Ausmuh (S), AcetyleneLamp (N)
Winner: AcetyleneLamp

1) AcetyleneLamp: Homeworld B2 G1 Y3

2) Ausmuh: Homeworld G3 R2 B3

3) AcetyleneLamp: Build Y1 Acetylenelamp
	Ausmuh: Hello, have a fun game!

4) Ausmuh: Build B1 Ausmuh

5) AcetyleneLamp: Discover Y1 Acetylenelamp R3 Corneria

6) Ausmuh: Build B1 Ausmuh

7) AcetyleneLamp: Build Y1 Acetylenelamp
	Ausmuh: Usually at the beginning of the game it's building and trading. I'm not totally sure you needed to move to a red planet. I'm two moves away from that planet and I don't have any move myself so me attacking you is not a threat.  Just a thought. If Draw5 is watching, maybe they'd like to give a pointer or two also.
	Draw5PlayAll: I am watching. I usually prefer to start with green as the ship instead of the star. I consider green and yellow to be important colors and I like the chance to have them in my homeworld without fear of a catastrophe of my stars.

At Corneria, you have no ability to build or trade. However that system CAN be useful if you manage to get a green there.
	AcetyleneLamp: Thanks for the advice. I don't really know what I'm doing, as you may have guessed.
	Draw5PlayAll: Ausmuh undid their last move and has not made a new one.

Acetylene, you should probably build another Y1 and then trade it for a green. And for future reference you may want to look at this game: http://superdupergames.org/main.html?page=archive_play&gid=32306 (in progress as of now). My opponent played with a G1 star and has since gotten no green ships at all.
	Ausmuh: Thanks and sorry!! 

Busy at work but I'm back!

It's ok to not know what you're doing yet. We can cruise around space getting our bearings.

Normally I'd trade My small blue for a small yellow. That way when you build... It would have to be a small yellow too. Then I'd get to grab a medium first. If you follow that.

Instead I'll just take another blue. You definitely want to get some build to Corneria soon.

Let me know if you're having trouble following!

8) Ausmuh: Trade B1 Y1 Ausmuh

9) AcetyleneLamp: Trade Y1 G1 Acetylenelamp

10) Ausmuh: Discover B1 Ausmuh G1 Zog

11) AcetyleneLamp: Move G1 Acetylenelamp Corneria

12) Ausmuh: Build Y1 Ausmuh

13) AcetyleneLamp: Build Y2 Acetylenelamp

14) Ausmuh: Move Y1 Ausmuh Zog
	Ausmuh: Nice. Now you have a little outpost (Corneria). To be connected to my homeworld you will need to move out from a 3-pip planet to a 1-pip planet. You're also spread out a little so acquiring new ships will be easier without being afraid of Catastrophe.

We have also opened up 2-pips in the bank. Collecting a 2-pip ship or two can be quite useful.

As it stands, no one has build an attack ship. You usually don't need to collect attack, but if your opponent arms themselves, you will want to do the same. 

This is where the game can get overwhelming sometimes so don't hesitate to ask questions and always take what I say with a grain of salt - there are many better players then me. :)

15) AcetyleneLamp: Trade Y2 R2 Acetylenelamp
	Draw5PlayAll: Also I am disinterested in the result and Ausmuh is not.

16) Ausmuh: Build Y2 Zog
	Ausmuh: ?

17) AcetyleneLamp: Build Y2 Acetylenelamp
	Draw5PlayAll: I am disinterested as to the result of this game. Therefore I can offer neutral advice. Ausmuh is playing the game and thus may be biased.

18) Ausmuh: Discover Y1 Zog G3 Alfred

19) AcetyleneLamp: Trade Y2 B2 Acetylenelamp

20) Ausmuh: Build Y2 Alfred

21) AcetyleneLamp: Move B2 Acetylenelamp Corneria

22) Ausmuh: Discover Y1 Alfred B1 Zawg

23) AcetyleneLamp: Trade Y1 R1 Corneria

24) Ausmuh: Trade Y2 R2 Zog

25) AcetyleneLamp: Build Y1 Acetylenelamp

26) Ausmuh: Trade B3 G3 Ausmuh

27) AcetyleneLamp: Move Y1 Acetylenelamp Corneria

28) Ausmuh: Build Y2 Alfred

29) AcetyleneLamp: Move R2 Acetylenelamp Corneria

30) Ausmuh: Move Y2 Alfred Zog

31) AcetyleneLamp: Move R2 Corneria Zawg

32) Ausmuh: Sacrifice G3 Ausmuh
Build Y2 Alfred
Build Y3 Ausmuh
Build Y3 Zawg
	AcetyleneLamp: Was afraid my red pieces at Corneria were going to get catastrophed, after I made my last move, I check the rules again and saw that four pieces (either stars or ships) of the same color are enough for a catastrophe, I initially thought it was just ships.

33) AcetyleneLamp: Attack Y1 Zawg



32739)
Variants: "Hard time"
Started: 2017.7.14, Ended: 2017.7.27
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H B2 R1 G3

2) Felix: Homeworld B1 R3 G3
	wil: Here we go again

3) wil: B G1 Wil
	Felix: Dun dun duuuuun

4) Felix: Build G1 Felix

5) wil: T G1 B1 Wil

6) Felix: Trade G1 R1 Felix

7) wil: B G1 Wil

8) Felix: Build R1 Felix
	dlwillson: Felix: Are you on Facebook? Ausmuh started a group for Homeworlds and the Looney started a group for Starship Captains.
	Felix: I'm barely on Facebook. I have an account I share with my wife solely for the sake of membership in groups like that. My name on there is J.D. Sellers and I am in the Starship Captains group already. I'll look for the homeworlds one!

9) wil: T G1 Y1 Wil

10) Felix: Trade R1 Y1 Felix

11) wil: B B1 Wil

12) Felix: Build R1 Felix

13) wil: D B1 Wil R3 R3

14) Felix: Discover R1 Felix G2 Rauros

15) wil: B G1 Wil

16) Felix: Build R2 Felix

17) wil: S G3 Wil
B B2 R3
B B2 R3
B B3 Wil

18) Felix: Discover R2 Felix Y2 Tail

19) wil: T B3 R3 Wil

20) Felix: Build G1 Felix

21) wil: B B3 Wil

22) Felix: Trade G3 B3 Felix

23) wil: D B3 Wil G3 G3

24) Felix: Build B3 Felix

25) wil: T B2 G2 R3

26) Felix: Move B3 Felix Rauros
	wil: Nice move, somebody wasn't thinking.

27) wil: B B2 R3
	Felix: Thanks! I was hoping for a lucky break. Choosing the red path at the beginning was a poor decision.

28) Felix: Build R2 Rauros

29) wil: Trade B2 Y2 R3
	wil: Capitalizing in any mistake is as big a part as not making them is..

30) Felix: Trade R2 Y2 Rauros
	Felix: Unless you cancel yourself out by capitalizing on a mistake and then making mistakes yourself, as I'm likely to do now :P

31) wil: Build B2 G3
	wil: I can only hope...I hung on to a sure loss to dlwillson....and he made a blunder which completely turned the game around.

32) Felix: Trade B3 G3 Felix

33) wil: Build B3 R3

34) Felix: Sacrifice G3 Felix
Build Y1 Rauros
Build Y3 Felix
Build Y3 Felix

35) wil: Build Y3 R3

36) Felix: Build R2 Rauros

37) wil: S Y3 R3
M B3 R3 Tail
M Y2 R3 Tail
M Y2 Tail Felix
C Felix Y
	dlwillson: Yeah! <grumble, mumble>

38) Felix: Move B3 Rauros Felix
	wil: Oops

39) wil: Trade B2 R2 G3

40) Felix: Move Y2 Rauros Felix
	Felix: Oops indeed

41) wil: B B2 G3

42) Felix: Build Y1 Rauros

43) wil: Trade B3 Y3 G3

44) Felix: Discover Y1 Rauros Y3 Gold

45) wil: Sacrifice G2 R3
Build Y2 Wil
Build Y3 G3

46) Felix: Move Y1 Gold Wil

47) wil: Trade B3 Y3 Tail

48) Felix: Sacrifice R2 Tail
Attack G1 Wil
Attack B1 Wil

49) wil: A B1 Wil

50) Felix: Sacrifice Y1 Wil
Discover R2 Rauros G3 Edge

51) wil: M Y3 Tail Edge

52) Felix: Sacrifice Y1 Rauros
Move R2 Edge Wil

53) wil: S R2 G3
A R2 Wil
A G1 Wil

54) Felix: Sacrifice Y2 Felix
Move R1 Rauros Edge
Move R1 Edge Wil
Catastrophe Wil Red

55) wil: B B3 G3

56) Felix: Build G1 Felix
	wil: Nice!

57) wil: D B2 G3 Y2 Y2

58) Felix: Trade B3 R3 Felix
	Felix: Thanks! It was a desperate measure, and I doubt it will save me in the end!

59) wil: S Y3 G3
M Y3 G3 Wil
M B1 Wil Felix
M B2 Y2 Felix

60) Felix: Trade G1 Y1 Felix

61) wil: Trade Y2 R2 Wil

62) Felix: Sacrifice R1 Felix
Attack B1 Felix

63) wil: Sacrifice G1 Wil
Build B3 Felix
Catastrophe Felix B

64) Felix: Build Y1 Felix

65) wil: Trade Y3 G3 Wil

66) Felix: Build Y2 Felix

67) wil: M Y1 Wil Felix
C Felix Y

	Felix: No ability to move or trade? Looks like it's curtains for me. Well played!
	Draw5PlayAll: Imagine if both empires ended up like that...
	wil: Gg....


32726)
Variants: "Hard time"
Started: 2017.7.14, Ended: 2017.8.17
Participants: SilentTitan (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) SilentTitan: Homeworld B1 R2 G3
	ts52: Have a good game!
	SilentTitan: Thanks you too. 

3) ts52: Build G1 Ts52

4) SilentTitan: Build G1 Silenttitan

5) ts52: Trade G1 B1 Ts52

6) SilentTitan: Trade G1 Y1 Silenttitan

7) ts52: Build B1 Ts52

8) SilentTitan: Build Y1 Silenttitan

9) ts52: Discover B1 Ts52 G1 Kermit

10) SilentTitan: Discover Y1 Silenttitan G3 Sol

11) ts52: Build B2 Kermit

12) SilentTitan: Build Y1 Sol

13) ts52: Trade B2 Y2 Kermit

14) SilentTitan: Build G1 Silenttitan

15) ts52: Build B2 Kermit

16) SilentTitan: Discover Y1 Sol G1 Soul

17) ts52: Build B2 Ts52

18) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Soul
Build Y3 Silenttitan

19) ts52: Build Y3 Kermit

20) SilentTitan: Sacrifice Y2 Soul
Move Y1 Sol Kermit
Move Y2 Sol Kermit
Catastrophe Kermit Yellow

21) ts52: Build B3 Kermit

22) SilentTitan: Build G2 Silenttitan

23) ts52: Trade B3 Y3 Kermit

	SilentTitan: Good game
	ts52: Thanks for the game.


32741)
Variants: "Sinister"
Started: 2017.7.14, Ended: 2017.9.6
Participants: Nupanick (S), Laroka (N), neverendingvoid88 (E)
Winner: Nupanick

1) Laroka: Homeworld B3 Y1 G3
	neverendingvoid88: homeworld b2 r1 g1

2) neverendingvoid88: Homeworld B2 Y1 G3

3) Nupanick: Homeworld G2 B3 R3
	Laroka: boobs

	Laroka: boobs

	neverendingvoid88: Hit that bitch with the uwu

4) Laroka: Build G1 Laroka
	Laroka: uwu baby

	Nupanick: gdi roxy

5) neverendingvoid88: Build G1 Neverendingvoid88
	neverendingvoid88: XD Yes Johhhhhn?
	Laroka: it's your turn


6) Nupanick: Build R1 Nupanick

7) Laroka: Discover G1 Laroka Y2 Milkyway
	neverendingvoid88: Well yeah but I feel like Nupa was gonna say something else.

8) neverendingvoid88: Build G1 Neverendingvoid88
	Nupanick: nah, just being a derp.

9) Nupanick: Trade R1 G1 Nupanick
	neverendingvoid88: okii

10) Laroka: Build G2 Laroka
	Nupanick: hi i would like a green too thx

11) neverendingvoid88: Trade G1 Y1 Neverendingvoid88

12) Nupanick: Build R1 Nupanick

13) Laroka: Trade G3 R3 Laroka

14) neverendingvoid88: Discover Y1 Neverendingvoid88 R3 Uwu

15) Nupanick: Trade R1 Y1 Nupanick
	neverendingvoid88: So uuuuuh
	Laroka: hmm?


16) Laroka: Build R1 Laroka
	Laroka: build b1 Laroka

17) neverendingvoid88: Move G1 Neverendingvoid88 Uwu

18) Nupanick: Build Y2 Nupanick
	neverendingvoid88: Okay finally, I'm back in.

19) Laroka: Trade R1 B1 Laroka

20) neverendingvoid88: Build G1 Neverendingvoid88
	neverendingvoid88: How do I get more days back?? D;

21) Nupanick: Build G2 Nupanick
	Draw5PlayAll: After every move you get some number of days back. I cannot see the time control.

Be alert and move promptly after Laroka moves.
	neverendingvoid88: Thanks bot~

22) Laroka: Build G2 Milkyway

23) neverendingvoid88: Trade G1 B1 Neverendingvoid88
	Draw5PlayAll: Bot?
	neverendingvoid88: Oh, not a bot. Sorry, thought you were for a moment.

24) Nupanick: Discover G2 Nupanick B1 Prospit

25) Laroka: Build R1 Laroka
	Nupanick: Finally, I get to name a star :3

26) neverendingvoid88: Build G1 Neverendingvoid88
	neverendingvoid88: And you named it Prospit, yes

27) Nupanick: Build G3 Prospit

28) Laroka: Build R1 Laroka

29) neverendingvoid88: Move B1 Neverendingvoid88 Uwu

30) Nupanick: Move Y2 Nupanick Prospit

31) Laroka: Build G3 Laroka

32) neverendingvoid88: Build Y2 Uwu

33) Nupanick: Sacrifice G3 Prospit
Build G3 Prospit
Build Y2 Nupanick
Build Y3 Prospit
	neverendingvoid88: From -5 to 18 hours, eyyy

34) Laroka: Trade G3 Y3 Laroka
	Nupanick: Awww ye, I pulled off the Factory combo :3

35) neverendingvoid88: Trade Y1 R1 Uwu
	neverendingvoid88: Aw geez, I missed the 2 days by...a lot. Dx

36) Nupanick: Discover Y3 Prospit B2 Lowas
	neverendingvoid88: Turn~

37) Laroka: Build G3 Milkyway
	Nupanick: * does the windy thing *

38) neverendingvoid88: Move G1 Uwu Milkyway

39) Nupanick: Trade G2 B2 Prospit
Catastrophe Milkyway Green
	Nupanick: Void, did you mean to call catastrophe on Laroka there? If so, you need to explicitly state that at the end of your move -- it's technically optional to trigger it.

40) Laroka: Build Y1 Laroka
	Nupanick: Got it for ya :p
	neverendingvoid88: Oh, okay, I thought it was auto-initiated. I guess that's what catastrophe means then. xP
But yeah, that's what I was going for.
	neverendingvoid88: Oh, okay, I thought it was auto-initiated. I guess that's what catastrophe means then. xP
But yeah, that's what I was going for.
	neverendingvoid88: IT LIVES

41) neverendingvoid88: Build G1 Neverendingvoid88

42) Nupanick: Move Y3 Lowas Laroka
Catastrophe Laroka Yellow

43) Laroka: Trade R3 Y3 Laroka

	Nupanick: Dammit, Void! I didn't want to attack yet, but if I hadn't done that, Laroka would have killed you and won the game before me D:

I hope you're happy, I technically saved your skin :p
	Nupanick: I guess my other option was to take out Void myself, turning this into a 1v1 game, but that'd be lame. Void, pls diversify your home fleet colors kthx.
	Nupanick: I guess my other option was to take out Void myself, turning this into a 1v1 game, but that'd be lame. Void, pls diversify your home fleet colors kthx.
	neverendingvoid88: ...I WAS PLANNING ON DOING THAT. Dx Yeah yeah, I'm working on it.

44) neverendingvoid88: Trade G1 B1 Neverendingvoid88

45) Nupanick: Discover B2 Prospit G2 Derse
	neverendingvoid88: Turn

46) Laroka: Build G1 Laroka

47) neverendingvoid88: Move Y2 Uwu Neverendingvoid88

48) Nupanick: Build B2 Derse

49) Laroka: Discover B1 Laroka G1 Welp
	Nupanick: cough cough reminder that if I blow up laroka's star I win
	neverendingvoid88: Laro, you maaaay wanna notate that.

50) neverendingvoid88: Move G1 Neverendingvoid88 Uwu
	neverendingvoid88: Nice name

51) Nupanick: Sacrifice Y2 Nupanick
Move B2 Derse Laroka
Move B2 Derse Laroka

52) Laroka: Trade G2 R2 Laroka
	Nupanick: I think that's game~
	Laroka: gg


53) neverendingvoid88: Trade G1 Y1 Uwu
	Draw5PlayAll: Remind me after the game and I will share something about this point.
	neverendingvoid88: ....DAMNIT

54) Nupanick: Sacrifice G3 Prospit
Build B2 Laroka
Build B3 Laroka
Pass
Catastrophe Laroka Blue
	Nupanick: Woo!
	Nupanick: Draw5PlayAll, what was your feedback?
	Draw5PlayAll: Laroka could have set up a catastrophe and left it for NEV to trigger. This would at least prevent Nupanick from winning immediately.
	Draw5PlayAll: Also, are you guys beginners or just people who have not played much on SDG? This is the only game I am aware of that bears your names, and I set the option to monitor all Homeworlds games.
	neverendingvoid88: A combo of the two for myself and Laroka. Nupa's the vet in this game.



32609)
Variants: "Unrated, Hard time"
Started: 2017.7.15, Ended: 2017.7.19
Participants: AzorAhai (S), wil (N)
Winner: wil

1) wil: H Y3 B2 G3



32624)
Variants: "Hard time"
Started: 2017.7.15, Ended: 2017.7.19
Participants: AzorAhai (S), wil (N)
Winner: wil

1) wil: H B3 R1 G3



32718)
Variants: "Unrated, Hard time"
Started: 2017.7.15, Ended: 2017.7.17
Participants: AzorAhai (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 R1 G3



32750)
Variants: "Unrated, Hard time"
Started: 2017.7.15, Ended: 2017.7.16
Participants: AzorAhai (S), dlwillson (N)
Winner: AzorAhai

	Draw5PlayAll: HUH??
	dlwillson: AzorAhai had started two of the same game with me.


32764)
Variants: "Hard time"
Started: 2017.7.19, Ended: 2017.8.23
Participants: bhorner (S), Salmonax (N)
Winner: bhorner

1) Salmonax: Homeworld Y1 B3 G3

2) bhorner: Homeworld R2 B1 G3

3) Salmonax: Build G1 Salmonax

4) bhorner: B G1 Bhorner

5) Salmonax: Discover G1 Salmonax B2 Bluetwoth

6) bhorner: Trade G1 B1 Bhorner

7) Salmonax: Build G1 Salmonax

8) bhorner: B B1 Bhorner

9) Salmonax: Trade G1 Y1 Salmonax

10) bhorner: T B1 Y1 Bhorner

11) Salmonax: Build Y2 Salmonax

12) bhorner: Build Y2 Bhorner

13) Salmonax: Move Y1 Salmonax Bluetwoth

14) bhorner: D Y2 Bhorner G3 Xmas

15) Salmonax: Move Y2 Salmonax Bluetwoth

16) bhorner: Build B1 Bhorner

17) Salmonax: Build G1 Salmonax

18) bhorner: Move B1 Bhorner Xmas

19) Salmonax: Trade Y1 R1 Bluetwoth

20) bhorner: Trade B1 R1 Xmas

	bhorner: Doh!


32749)
Variants: "Hard time"
Started: 2017.7.20, Ended: 2017.7.25
Participants: wil (S), visitor338 (N)
Winner: wil

1) visitor338: Pass

2) wil: H Y3 B1 G3



32758)
Variants: "Unrated"
Started: 2017.7.21, Ended: 2017.8.1
Participants: elrac (S), wil (N)
Winner: wil

1) wil: Homeworld B3 Y1 G3
	elrac: Hi. This is my first game on here.

2) elrac: Homeworld R3 B2 G3
	wil: First game of homeworlds?  Or just first game on SDG and you picked one of the best?

	elrac: Essentially both. I've played homeworlds once with my wife, but it was pretty much just a learning game.

3) wil: Build G1 Wil

4) elrac: Build G1 Elrac
	wil: The first 50 are learning games....

5) wil: T G1 Y1 Wil
	wil: The star formations here are problematic... when it gets going it is often good to set up a set at home to observe..

6) elrac: Build G1 Elrac
	elrac: thanks for the tip, I'll keep it in mind

7) wil: B Y1 Wil
	wil: Beginning of the game is slow, best follow the leader to prevent missing out on economy

8) elrac: Trade G3 Y3 Elrac

9) wil: T Y1 R1 Wil
	wil: Ya didn't follow the leader... You'll need to swap your big green for a y3 sometime.to move
	elrac: I know, that was my plan for this turn


10) elrac: Trade G1 B1 Elrac
	wil: Okee doke

11) wil: B R1 Wil

12) elrac: Trade B1 R1 Elrac

13) wil: T R1 B1 Wil
	elrac: hmm, interesting, fine, I didn't want that blue one anyway


14) elrac: Build G1 Elrac
	wil: Lol...

15) wil: B B1 Wil

16) elrac: Trade G1 B1 Elrac

17) wil: Discover B1 Wil Y2 Y2

18) elrac: Discover B1 Elrac G1 Alpha

19) wil: Discover B1 Wil G2 G2
	elrac: You aren't kidding that it starts out slow. You have to get one of each color ship at the start or you're in trouble.
	wil: yup!  don't let anyone freeze you out of any economy as you are building...you are one lonely ship at a binary star trying to take over the galaxy

20) elrac: Build B2 Alpha

21) wil: Build B2 G2

22) elrac: Trade B2 Y2 Alpha

23) wil: Trade B2 Y2 G2

24) elrac: Build B2 Alpha
	wil: You know about catastrophe right
	elrac: yeah, I do, and I see that you have 3 blues + the blue in my star. But I don't see a way for you to get them to my system.

25) wil: D Y1 Wil G2 Gee2

26) elrac: Trade B2 R2 Alpha
	wil: I can't, couldn't, but was just checking..

27) wil: B B2 G2

28) elrac: Move R2 Alpha G2

29) wil: Sacrifice R1 Wil
Attack R2 G2

30) elrac: Build B2 Alpha

31) wil: Discover B1 G2 G1 G1

32) elrac: Discover B2 Alpha R2 Beta
	wil: You are so generous to offer me a trade of my small fighter to an attack cruiser.  Thank you for the nice new ship, it appears you have maintained it well.  We have sold the crew to a garment manufacturer in Alpha if you want them back.

33) wil: B B3 G1
	elrac: fair, I didn't see that move.
	wil: learning attacks and sacrifices are tricky...but now you know!!

34) elrac: Build B3 Alpha

35) wil: T B3 Y3 G1

36) elrac: Trade B3 R3 Alpha

37) wil: B B3 G1

38) elrac: Build B3 Alpha

39) wil: Sacrifice Y2 G2
Move B2 G2 Alpha
Move B1 Y2 Alpha
Catastrophe Alpha B

40) elrac: Build G2 Elrac

41) wil: Sacrifice Y1 Gee2
Move R2 G2 Wil

42) elrac: Sacrifice G2 Elrac
Build G2 Elrac
Build B1 Beta

43) wil: B Y1 G1

44) elrac: Trade B2 Y2 Beta
	elrac: that one I did see coming, I just didn't know if you would think it was worth it
	wil: it may not have been
	wil: Yeah...it was a big mistake!

45) wil: B G2 Wil

46) elrac: Sacrifice G2 Elrac
Build Y1 Beta
Build G2 Elrac

47) wil: Discover B3 G1 Y3 Y3

48) elrac: Build Y2 Elrac

49) wil: Build R1 Wil

50) elrac: Discover Y2 Alpha B2 Gamma

51) wil: Discover Y1 G1 B2 B2

52) elrac: Move Y1 Beta Wil

53) wil: Attack Y1 Wil

54) elrac: Sacrifice Y2 Elrac
Move Y2 Beta Wil
Move Y2 Gamma Wil
Catastrophe Wil Y

55) wil: B B1 G1

56) elrac: Build R1 Alpha

57) wil: T G2 Y2 Wil

58) elrac: Sacrifice B1 Beta
Trade R3 B3 Alpha

59) wil: M R2 Wil G1

60) elrac: Discover G1 Elrac Y1 Delta

61) wil: Build G2 Wil

62) elrac: Discover G2 Elrac B1 Epsilon

63) wil: M B3 Y3 Epsilon

64) elrac: Build B2 Alpha

65) wil: S R1 Wil
A G2 Epsilon

66) elrac: Build G2 Delta

67) wil: S G3 Wil
B G3 Wil
B G3 Epsilon
B G3 Epsilon

68) elrac: Discover G1 Delta Y3 Eta

69) wil: T B3 R3 Epsilon

70) elrac: Discover R1 Elrac Y1 Zeta

71) wil: S Y2 Wil
M G3 Epsilon Elrac
M G3 Epsilon Elrac

72) elrac: Sacrifice Y3 Elrac
Move G1 Eta Delta
Move G1 Delta Elrac
Move G2 Delta Elrac
Catastrophe Elrac Green

	wil: Cause my guns are bigger than your guns
	wil: Gg
	elrac: I'm surprised it would let me kill myself
	elrac: GG
	elrac: Hmm, I wonder what would have happened if I had caused that catastrophe in your system instead.
	wil: Lol......you would a won !
	wil: No lost, no mutual destruction
	elrac: If I had done that I should have lost, since the game should end when I sacrificed the y3 in elrac, but I wonder how the site would have handled that.

Actually, reading the rules, "You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of 
your turn. You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of 
your turn." I don't think it would have been a legal move, but neither was the move I made.
	elrac: I may send that as a question to Loony Labs.
	elrac: Ah, found that question here https://boardgamegeek.com/thread/991015/what-if-both-homeworlds-destroyed-end-turn-win-los
it would have been a tie.
	elrac: either way, GG
	wil: first time I won a hw game by intimidation!


32682)
Variants: "Unrated"
Started: 2017.7.22, Ended: 2017.8.23
Participants: Felix (S), Gui (N)
Winner: Felix

1) Gui: Homeworld B1 Y3 G3

2) Felix: Homeworld R2 B3 G3

3) Gui: Build G1 Gui
	Felix: Hello! Have fun. First game?

4) Felix: Build G1 Felix
	Gui: yep

5) Gui: Discover G1 Gui Y2 Betacenturi
	Felix: Awesome. Good luck and let me know if you have any questions.

6) Felix: Trade G1 Y1 Felix

7) Gui: Build G1 Gui

8) Felix: Build Y1 Felix

9) Gui: Trade G1 B1 Gui

10) Felix: Build Y1 Felix



32715)
Started: 2017.7.23, Ended: 2017.8.15
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H B3 R1 G3
	wil: So you get to determine our style.of.play this time..

2) ts52: Homeworld G2 B1 R3
	ts52: Hmmmmm, I'm tempted to try something unusual just for fun....

3) wil: B G1 Wil

4) ts52: Build R1 Ts52

5) wil: T G1 R1 Wil

6) ts52: Build R2 Ts52

7) wil: B R2 Wil

8) ts52: Trade R2 Y2 Ts52

9) wil: Trade R2 Y2 Wil

10) ts52: Build R2 Ts52
	wil: follow the leader..

11) wil: Build R2 Wil

12) ts52: Discover R2 Ts52 G3 Kermit

13) wil: Trade R1 B1 Wil

14) ts52: Trade R1 B1 Ts52

15) wil: Build B2 Wil

16) ts52: Build B2 Ts52

17) wil: Trade B2 G2 Wil

18) ts52: Move B1 Ts52 Kermit

19) wil: Discover B1 Wil G2 G2

20) ts52: Build B2 Kermit

21) wil: B B2 G2

22) ts52: Trade B2 Y2 Kermit

23) wil: T B1 Y1 G2

24) ts52: Build Y1 Kermit

25) wil: Build B1 G2

26) ts52: Discover B2 Ts52 G3 Robin

27) wil: D B2 G2 Y3 Y3

28) ts52: Move R2 Kermit G2

29) wil: B Y1 G2

30) ts52: Attack B1 G2

31) wil: B Y3 Wil

32) ts52: Build Y3 Ts52

33) wil: B G1 Wil

34) ts52: Attack Y1 G2

35) wil: Move G3 Wil G2

36) ts52: Move R2 G2 Kermit

37) wil: M R2 Wil G2

38) ts52: Move Y1 G2 Robin

39) wil: A B1 G2

40) ts52: Move Y3 Ts52 Robin

41) wil: B G1 G2

42) ts52: Build R1 Kermit

43) wil: S G3 G2
B G1 Wil
B G3 G2
B R1 G2

44) ts52: Build R2 Ts52
	wil: When am I ever gonna see a game I recognize?  They are all so different!
	ts52: That's kind of the beauty of homeworlds.
	ts52: Though I don't think trying something different is going to pay off this game. :)

45) wil: D R1 G2 B3 B3

46) ts52: Discover R1 Kermit B2 Gonzo

47) wil: S G3 G2
B G3 G2
B R3 B3
B B3 Y3

48) ts52: Build R3 Kermit

49) wil: M G1 G2 B3

50) ts52: Move R2 Kermit Gonzo

51) wil: S Y3 Wil
M R3 B3 Ts52
M R1 B3 Ts52
M B3 Y3 Ts52
C Ts52 R

52) ts52: Sacrifice Y3 Robin
Move B1 Kermit Ts52
Move B2 Robin Ts52
Move R3 Kermit Ts52
Catastrophe Ts52 Blue
	ts52: Wow. Although I didn't like my chances, I totally didn't see that coming.

53) wil: Sacrifice Y2 Wil
Move G1 Wil Ts52
Move G1 Wil Ts52

54) ts52: Move R3 Ts52 Wil
	wil: I didn't think I was ever gonna get it setup.
	wil: the bank was empty just a bit ago...musta been a gov't bailout...

55) wil: S Y1 G2
M G1 B3 Ts52
C Ts52 G
	wil: Looks ominous
	ts52: Excellent game, as usual. Thanks!
	wil: I slipped thru



32751)
Variants: "Unrated, Hard time"
Started: 2017.7.23, Ended: 2017.7.27
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H R2 B3 G3

2) wil: H Y3 B1 G3

3) dlwillson: B G1 Dlwillson

4) wil: B G1 Wil

5) dlwillson: T G1 Y1 Dlwillson

6) wil: T G1 B1 Wil

7) dlwillson: B G1 Dlwillson

8) wil: B B1 Wil

9) dlwillson: T G3 B3 Dlwillson

10) wil: T B1 R1 Wil

11) dlwillson: B Y1 Dlwillson

12) wil: B R1 Wil

13) dlwillson: T Y1 R1 Dlwillson

14) wil: T R1 Y1 Wil

15) dlwillson: Build G1 Dlwillson

16) wil: D B1 Wil Y2 Y2

17) dlwillson: Discover G1 Dlwillson B1 Sea

18) wil: Build G1 Wil

19) dlwillson: Build G2 Dlwillson

20) wil: Sacrifice G1 Wil
Build B2 Y2

21) dlwillson: B B2 Dlwillson

22) wil: Trade B2 G2 Y2

23) dlwillson: Discover B2 Dlwillson G1 Field

24) wil: Build G2 Wil

25) dlwillson: S G2 Dlwillson
B G2 Sea
B G3 Dlwillson

26) wil: S G3 Wil
B G3 Wil
B R1 Wil
B G3 Y2

27) dlwillson: T G2 Y2 Sea

28) wil: B B2 Y2 Y2

29) dlwillson: S G3 Dlwillson
B G2 Sea
B Y1 Sea
B G3 Dlwillson

30) wil: T G3 Y3 Wil

31) dlwillson: S Y2 Sea
D Y1 Sea B2 Sky
M Y1 Sky Wil
C Wil Y

32) wil: Sacrifice G3 Y2
B G3 Y2
B G3 Wil
B R2 Wil

33) dlwillson: M R1 Dlwillson Wil
C Wil R

34) wil: T G2 R2 Y2

35) dlwillson: S G3 Dlwillson
B B2 Dlwillson
B B3 Field
B G2 Sea

36) wil: B G3 Y2

37) dlwillson: Trade B3 Y3 Field

38) wil: T G3 Y3 Wil
	dlwillson: Goodness, Wil! We never talked at all this game! What's going on around here?

39) dlwillson: S Y3 Field
D B2 Field Y3 Solar
M B2 Dlwillson Wil
M B3 Dlwillson Wil

40) wil: T Y3 B3 Wil
C Wil B

	dlwillson: That used to be illegal!
	Draw5PlayAll: It is very inconsistent.
	wil: I've been doing it for years...it is all about the leaving!!  Not against Andy's rules...he often takes off with a ship to safety abaonding his homeworlds in an ark moment when there is impending unavoidable doom.   Me, I prefer a scorched solar system approach leaving a better civilization elsewhere.
	wil: Gg
	dlwillson: GGTY


32778)
Variants: "Unrated"
Started: 2017.7.25, Ended: 2017.7.25
Participants: wil (S), shoejitsu (N)
Winner: wil

1) shoejitsu: Homeworld G2 B3 Y3

2) wil: H Y2 B1 G3
	shoejitsu: good luck, have fun!
	wil: If you insist!

3) shoejitsu: Discover Y3 Shoejitsu G1 Titan
	shoejitsu: hah... interesting
	wil: oops
	Draw5PlayAll: The game is very inconsistent about when it forbids homeworld abandonment.



32814)
Variants: "Unrated"
Started: 2017.7.25, Ended: 2017.8.21
Participants: ts52 (S), shoejitsu (N)
Winner: ts52

1) shoejitsu: Homeworld B3 Y2 G3

2) ts52: Homeworld Y3 B2 G3
	ts52: Welcome! Feel free to ask questions here, and let me know how much advice you'd like me to give. Unfortunately there is no notification for comments, so if you want to ask a question, do so, then make and undo a move so I'll get an email about it. :) Have a great game!

3) shoejitsu: Build G1 Shoejitsu
	shoejitsu: thanks for the help! I was trying to find this in the rule book but i dont think it's ever touched upon. What's the general purpose of the colors that make up the homeworld if they don't count as stars? This has messed me up so many times, since i assume that they count as stars and therefore i can build.

4) ts52: Build G1 Ts52
	ts52: They do count as stars. You can use the powers of all the colors in your homeworld, but only one per turn. So currently either of us can build (as you just did) or trade or move/discover.

5) shoejitsu: Build G1 Shoejitsu
	shoejitsu: weird... i must have mistyped my command when i tried to build in one of my other games. I had a b3 g2 homeworld with a y3 ship and it would not let me build a g1 on the second turn
	ts52: Ah, that doesn't quite work. You can use the power of a green star (homeworld or not) to build in that system, but you can only build the smallest available ship it a color that matches a ship you control in that system. So in your case you could only build the smallest available yellow ship.
	shoejitsu: ohhhh... got it. very important detail i missed XD

6) ts52: Build G2 Ts52

7) shoejitsu: Discover G1 Shoejitsu B1 Titan
	ts52: Very important detail, but a fairly common one. We should have a FAQ or Common Mistakes or something like that.

8) ts52: Trade G1 B1 Ts52
	Draw5PlayAll: Why do you both have a fortress (2-3)?
	shoejitsu: dunno, i made mine first :P
	ts52: Oh, whoops. I totally screwed up and stuck us in a tiny universe. My bad. 

9) shoejitsu: Trade G1 Y1 Shoejitsu
	shoejitsu: yeah, i guess that alright since ive never played a tiny universe

10) ts52: Discover G2 Ts52 B1 Grover
	shoejitsu: starting to understand how you can force the economy to allow you to build bigger pieces like you did. was unsure how you were able to build that g2 until i went back in the logs and counted the stash haha
	ts52: Good. Sorry about the tiny universe. But you'll soon see why it's generally considered a bad idea.

11) shoejitsu: Build G1 Titan
	shoejitsu: oh yeah ive already started to see it haha

12) ts52: Build B2 Ts52

13) shoejitsu: Trade G1 Y1 Titan

14) ts52: Discover B2 Ts52 G1 Kermit

15) shoejitsu: Build G1 Titan
	shoejitsu: So is it a general rule of thumb to alway discover a new star system with a blue and a green peice in it? Its kind of seeming like yellow and red should be saved for building and trading transactions... and that makes buying smartly pretty challenging haha

16) ts52: Build G2 Ts52
	Draw5PlayAll: Placing a green at a blue system or a blue at a green system lets you quickly expand and gather all of the technologies. I used to attempt to do both but in my recent games I can usually only fit one of those in (I tend to lose the green or blue economy).

17) shoejitsu: Discover G1 Titan B2 Gaea
	ts52: Generally speaking green and blue are pretty important in the opening, growth and discovery part of the game. Yellow and Red are more important in the mid and end game.

18) ts52: Build B3 Kermit

19) shoejitsu: Build Y1 Titan
	shoejitsu: well i just realized i have no blue ships :D

20) ts52: Trade B3 Y3 Kermit
	ts52: Yeah, I've frozen you out of the blue economy, for now at least.

21) shoejitsu: Trade Y1 R1 Titan

22) ts52: Build B3 Kermit

23) shoejitsu: Move R1 Titan Ts52
	ts52: I'm breaking a pretty standard homeworlds adage here, that is 'when your enemy get's a gun, you get a gun'. But I think I can afford to wait.

24) ts52: Trade G2 R2 Ts52

25) shoejitsu: Attack B1 Ts52
	shoejitsu: Yeah i was surprised you didnt draw right away but clearly you have an upper hand to assist you 

26) ts52: Sacrifice R2 Ts52
Attack R1 Ts52
Attack B1 Ts52

27) shoejitsu: Build G2 Shoejitsu
	shoejitsu: oy

28) ts52: Build B3 Kermit
	shoejitsu: i may or may not have had a sudden realization involving the construct functionality...
	Draw5PlayAll: Care to share it?

29) shoejitsu: Trade G2 R2 Shoejitsu

30) ts52: Trade B3 Y3 Kermit
	shoejitsu: Only that delaying building due to worrying about the enemy's ability to build larger pieces will only effect me negatively at this point in the game. It seems like I just need any pieces right now, regardless of whether or not the enemy controls a majority of the stronger ones

31) shoejitsu: Build G2 Titan
	ts52: Indeed. Although it can be important to limit your opponents ability to get larger ships in play, you always have to way that against what it costs you to do so.

32) ts52: Build B3 Kermit

33) shoejitsu: Move Y1 Shoejitsu Titan
	shoejitsu: how do you list multiple moves, like after a sacrifice? Im not sure what a carriage return is...

34) ts52: Trade B3 R3 Kermit
	Draw5PlayAll: Just press return. It will look like this:
sacrifice Y3 Altair
move B1 Altair Electra
move B2 Altair Electra
move B1 Caster Electra
catastrophe Electra blue
	shoejitsu: thank you. I just realized what i was trying to do was not possible, thats why it was telling me i have no more moves... this game is looking pretty over at this point
	shoejitsu: confused why i cant do this:

sacrifice g2 titan
move y1 shoejitsu kermit
build y1 kermit
catastrophe kermit yellow

i thought if i could use the stars power even if i dont control the system? its telling me i have no more actions but it seems right to me?

35) shoejitsu: Move Y1 Titan Gaea
	shoejitsu: ah shoot now i cant undo my move again.... ughhh

	shoejitsu: now i know only one undo per turn i suppose
	ts52: When you sacrifice, you can only use the power of the sacrificed ship. So sacrificing a green means you can only build. It lets you sacrifice a large or medium piece to get 3 or 2 actions, but they all have to be the action of the piece sacrificed. Hopefully that makes sense.

36) ts52: Build B3 Kermit
	shoejitsu: that makes total sense, thanks
	shoejitsu: couldnt you have move all you blue ships in to my homeworld by sacrificing a y3 and calling catastrophe then?

37) shoejitsu: Move Y1 Titan Gaea
	ts52: Yes, I could have. But I'm going for a slightly longer play.

38) ts52: Sacrifice Y3 Kermit
Move B3 Kermit Shoejitsu
Move Y3 Kermit Shoejitsu
Move B3 Kermit Shoejitsu

39) shoejitsu: Trade G3 R3 Shoejitsu

40) ts52: Sacrifice R3 Kermit
Attack R3 Shoejitsu
Attack R2 Shoejitsu
Pass

	ts52: Thanks for the game! I look forward to the next one.
	shoejitsu: good game, thanks for the help


32829)
Started: 2017.7.27, Ended: 2017.8.1
Participants: equinox (S), ratpfink (N)
Winner: ratpfink

1) ratpfink: Homeworld G2 B1 Y3

2) equinox: Homeworld Y3 B2 G3

3) ratpfink: Build Y1 Ratpfink

4) equinox: Build G1 Equinox

5) ratpfink: Build Y1 Ratpfink

6) equinox: Trade G1 Y1 Equinox

7) ratpfink: Trade Y1 G1 Ratpfink

8) equinox: Build Y1 Equinox

9) ratpfink: Sacrifice Y3 Ratpfink
Discover Y1 Ratpfink R3 Wampa
Discover Y1 Wampa R1 Lexi
Move Y1 Lexi Equinox
Catastrophe Equinox Y



32801)
Variants: "Unrated, Hard time"
Started: 2017.7.28, Ended: 2017.8.3
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B2 Y3 G3
	dlwillson: Hi Wil!

2) wil: H Y2 B1 G3

3) dlwillson: Build G1 Dlwillson
	wil: Hi wil-lson

4) wil: B G1 Wil

5) dlwillson: Trade G1 B1 Dlwillson

6) wil: T G1 B1 Wil

7) dlwillson: Build B2 Dlwillson

8) wil: B B2 Wil

9) dlwillson: D B1 Dlwillson G1 Field

10) wil: T B1 R1 Wil

11) dlwillson: S G3 Dlwillson
B B1 Field
B B3 Field
B B3 Dlwillson

12) wil: B B3 Wil

13) dlwillson: T B3 G3 Dlwillson

14) wil: T B2 Y2 Wil

15) dlwillson: T B3 Y3 Field

16) wil: Discover B3 Wil G3 G3

17) dlwillson: Trade B2 R2 Dlwillson

18) wil: B B2 G3

19) dlwillson: D B1 Field G2 Forest
	wil: Discussion during games varies..

20) wil: T B3 Y3 G3
	dlwillson: Yeah. Sometimes, we just play. But I'm glad we play. It's good to play.

21) dlwillson: B G1 Dlwillson

22) wil: B G1 Wil
	wil: Since I lose s significant number of games...my goal is to lose those outside The ladder and win those within..

23) dlwillson: Discover G1 Dlwillson Y1 Solar

24) wil: B R1 Wil

25) dlwillson: B G2 Dlwillson

26) wil: Build Y1 G3

27) dlwillson: S G3 Dlwillson
B G2 Solar
B B2 Field
B G3 Dlwillson

28) wil: S G3 Wil
B G3 Wil
B R1 Wil
B B3 G3

29) dlwillson: T B2 R2 Field
	wil: I just had 6 moves to make....luv the confusion of multiple he games

30) wil: S Y2 Wil
M R1 Wil G3
M B2 G3 Forest

31) dlwillson: Sacrifice G3 Dlwillson
Build R2 Field
Build R3 Dlwillson
Build G3 Solar

32) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 Forest
Build B3 G3

33) dlwillson: S Y3 Field
M G1 Solar G3
M G2 Solar G3
M G3 Solar G3
C G3 G

34) wil: T B2 Y2 Forest
	dlwillson: I <3 supernova! I'm not sure whether that was a good trade, but it sure was satisfying.
	wil: Lol....I should a looked for that

35) dlwillson: S G2 Dlwillson
B B2 Forest
B B3 Field

36) wil: S R1 Wil
A B2 Forest

37) dlwillson: B B3 Forest
C Forest B
	wil: I am going to need you to make some collaossal mistake....whenever you are ready...I'll wait.

38) wil: B R1 Wil
	dlwillson: I'll work on it. Actually, I've been playing my hardest just to keep up! I think the supernova may have finally given me a little edge.

39) dlwillson: T B3 Y3 Field
	wil: It left you with more ships and 2-1 queens...a little edge...

40) wil: D R1 Wil Y3 Y3

41) dlwillson: T R3 G3 Dlwillson

42) wil: T G1 B1 Wil

43) dlwillson: Discover R2 Field B3 Sky

44) wil: Build G1 Wil

45) dlwillson: Build B2 Field

46) wil: Move B1 Wil Y3

47) dlwillson: T B2 G2 Field

48) wil: Sacrifice G1 Wil
Build B2 Y3

49) dlwillson: M G2 Field Sky

50) wil: D B1 Y3 G1 G1

51) dlwillson: B G1 Dlwillson

52) wil: B G2 Wil

53) dlwillson: B G3 Sky

54) wil: S G3 Wil
B G3 Wil
B B2 Y3
B B3 G1

55) dlwillson: Build B3 Field

56) wil: Trade B3 R3 G1

57) dlwillson: S Y3 Field
M G3 Sky Wil
M G2 Sky Wil
C Wil G
M R2 Sky Wil

58) wil: Sacrifice Y2 Forest
Move R1 Y3 Wil
Move B2 Y3 Wil
	wil: nice!

59) dlwillson: A B2 Wil
	wil: good game, I blew it...funny why I thought about thinking of doing it to you, didn't dawn on me that the red would come in with it...

	dlwillson: Good game. I think that supernova was the turning point. Pretty even to there.
	wil: Yeah it was
	dlwillson: Thanks for the game!


32712)
Variants: "Hard time"
Started: 2017.7.28, Ended: 2017.8.7
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Felix: Homeworld R2 B3 G3

3) wil: B G1 Wil
	Felix: Good luck and have fun!
	wil: You know I do..

4) Felix: Build G1 Felix

5) wil: T G1 R1 Wil

6) Felix: Trade G1 Y1 Felix

7) wil: B R1 Wil

8) Felix: Build Y1 Felix
	wil: I think I am a step behind...but math is hard.

9) wil: D R1 Wil G3 G3
	Felix: I'm not so sure myself. The path to larges is smaller with red, but I can get to mediums faster with yellow...

10) Felix: Trade Y1 R1 Felix

11) wil: B R2 Wil

12) Felix: Discover R1 Felix G1 Rim
	wil: Ah....we don't get to find out!

13) wil: T R1 Y1 Wil
	Felix: I debated it, but being left without a weapon is too scary.

14) Felix: Build Y2 Felix

15) wil: B Y2 Wil

16) Felix: Move Y1 Felix Rim

17) wil: M Y1 Wil G3

18) Felix: Build G1 Felix

19) wil: B R1 Wil

20) Felix: Build R2 Rim

21) wil: B R3 G3

22) Felix: Discover R1 Rim B3 Rom

23) wil: M R3 G3 Rim

24) Felix: Sacrifice G1 Felix
Build R3 Rom

25) wil: Build R3 G3

26) Felix: Trade R3 Y3 Rom

27) wil: Sacrifice R2 Wil
Attack R2 Rim
Attack Y1 Rim

28) Felix: Build G1 Felix

29) wil: Build Y2 Rim

30) Felix: Build Y3 Felix

31) wil: B Y3 G3
	Felix: This didn't work out so well for me.

32) Felix: Trade Y3 R3 Felix

33) wil: T Y2 B2 Wil

34) Felix: Sacrifice G3 Felix
Build Y2 Rom
Build Y3 Felix
Build R2 Rom

35) wil: Sacrifice Y3 G3
Move R1 G3 Rim
Move R1 Rim Felix
Move R2 Rim Felix
Catastrophe Felix R

36) Felix: Trade Y3 G3 Rom
	Draw5PlayAll: Why is blue so ignored in high level play? Is it too easy to focus on red and yellow, or are too many stars blue?
	wil: Blue is rarely ignored by me...I utilize it.whenever I can...but...the early game can define mid game...are we racing, building, blocking...this game became a race...only two colors participate in races...until one sees an advantage (or desperation) opportunity to switch
	wil: Oh, you said high level...nevermind
	Draw5PlayAll: Consider: out of the 15 ships on the board, only one (7%) is blue. Yet of the 6 stars on the field, three are blue.

Actually, before the previous move there were even more yellows and reds... NO BLUES!
	Draw5PlayAll: And I  think this is high level play because you two are first and second on the ladder, even though this is not a ladder game.

37) wil: B Y3 G3
	wil: We are only one and two because the best are either resting on their laurels or otherwise not in the game.

38) Felix: Build Y3 Rom

39) wil: D Y1 G3 G2 G2
	Felix: What Wil said. I've never stood a chance against the likes of endo, TwoShort, or TeeTeeTee.
	wil: Or broccoli commander

40) Felix: Build G1 Rom

41) wil: S Y3 G3
M Y1 Rim Felix
M Y1 G2 Felix
M R3 Rim Felix
C Felix Y
	Felix: I've never played Broccoli, actually

42) Felix: Sacrifice Y3 Rom
Pass
Pass
Pass
	wil: Wishing the distraction would have effected the ladder game instead.

43) wil: A G1 Felix
	Felix: Nice! Just came back from a long weekend and I am not playing carefully enough.
	wil: Thank you for that!   Hope you ha fun!
	wil: But what was that?  You should have sacked the y3 and moved everything in...so it would look like you almost had it!
	Felix: I always have fun :) And I was just having fun by passing 3 moves. If I can't win, I don't care about the end board appearances!



32795)
Variants: "Hard time"
Started: 2017.7.28, Ended: 2017.8.17
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) wil: H B2 R2 G3 *

3) Draw5PlayAll: Build G1 Draw5playall
	wil: Let's see how this goes...
	Draw5PlayAll: Copycat!

4) wil: B G1 Wil

5) Draw5PlayAll: Trade G1 Y1 Draw5playall
	wil: Probably for less than ten moves but we'll see

6) wil: T G1 Y1 Wil

7) Draw5PlayAll: Build G1 Draw5playall

8) wil: B G1 Wil
	Draw5PlayAll: Now, do I go to a 1-point star to try to freeze you out or a 3 point star to keep my options open?

9) Draw5PlayAll: Trade G1 R1 Draw5playall
	wil: Appears I am not even smart enough to understand your question
	Draw5PlayAll: There appears to be nothing to freeze you out of.

10) wil: T G1 R1 Wil

11) Draw5PlayAll: Build G1 Draw5playall

12) wil: B G1 Wil

13) Draw5PlayAll: Trade G1 B1 Draw5playall

14) wil: T G1 B1 Wil

15) Draw5PlayAll: Discover B1 Draw5playall G1 G1

16) wil: Build G1 Wil

17) Draw5PlayAll: Build G1 Draw5playall

18) wil: B G2 Wil

19) Draw5PlayAll: Build G2 Draw5playall

20) wil: Trade G2 Y2 Wil

21) Draw5PlayAll: Trade G2 Y2 Draw5playall

22) wil: D G1 Wil Y3 Y3

23) Draw5PlayAll: Discover G1 Draw5playall B3 B3
	wil: If you become a copycat does that mean I got one step ahead?

24) wil: D Y1 Wil G3 G3

25) Draw5PlayAll: Build B1 G1

26) wil: B Y1 G3

27) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move B1 G1 Wil
Move B1 G1 Wil
Catastrophe Wil Blue

28) wil: B Y2 Wil

29) Draw5PlayAll: Build Y2 Draw5playall

30) wil: M Y1 G3 Draw5playall

31) Draw5PlayAll: Move Y1 Draw5playall G3

32) wil: Discover Y2 Wil G1 G1

33) Draw5PlayAll: Build Y3 G3

34) wil: Move Y1 Draw5playall G3
Catastrophe G3 Y

35) Draw5PlayAll: Build G2 Draw5playall

36) wil: M R1 Wil Y3

37) Draw5PlayAll: Move R1 Draw5playall B3

38) wil: B G2 Y3

39) Draw5PlayAll: Trade G2 R2 Draw5playall

40) wil: B G2 Y3

41) Draw5PlayAll: Discover R2 Draw5playall Y1 Y1

42) wil: M Y2 G1 B3

43) Draw5PlayAll: Build R1 B3

44) wil: B R3 Y3

45) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R1 B3 Wil
Move R1 B3 Wil

46) wil: Sacrifice Y2 Wil
Move G3 Wil Y1
Move R1 Y3 Wil
Catastrophe Wil R

	wil: nice game.
	wil: We have abandoned our homeworld with per our scorched earth scenario...taken our ark moment to establish a new base...and rule the galaxy in the next game.
	wil: never played one of these...it was interesting
	Draw5PlayAll: I hate seeing that a game ended not from my own actions... it seems like it will end up a loss.
	wil: Lol, your own actions ended the game...my resignation is the same as a win... As is an.ark.moment



32800)
Started: 2017.7.28, Ended: 2017.9.29
Participants: Ausmuh (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3

2) Ausmuh: Homeworld G3 Y1 B3

3) ts52: Build G1 Ts52

4) Ausmuh: Build B1 Ausmuh

5) ts52: Build G1 Ts52

6) Ausmuh: Trade B1 G1 Ausmuh

7) ts52: Discover G1 Ts52 B1 Grover

8) Ausmuh: Discover G1 Ausmuh Y2 Zing

9) ts52: Build G2 Grover

10) Ausmuh: Build B1 Ausmuh

11) ts52: Trade G1 Y1 Grover

12) Ausmuh: Build B1 Ausmuh

13) ts52: Build Y1 Grover

14) Ausmuh: Discover B1 Ausmuh G2 Zork

15) ts52: Build Y2 Grover

16) Ausmuh: Trade B3 Y3 Ausmuh

17) ts52: Discover Y1 Grover G2 Kermit

18) Ausmuh: Build B2 Zork

19) ts52: Build Y2 Kermit



32864)
Variants: "Hard time"
Started: 2017.8.1, Ended: 2017.8.15
Participants: wil (S), Felix (N)
Winner: wil

1) Felix: Homeworld B1 R3 G3

2) wil: H G2 B1 B3 *

3) Felix: Build G1 Felix

4) wil: B B1 Wil

5) Felix: Trade G3 B3 Felix

6) wil: Trade B3 Y3 Wil

7) Felix: Build B2 Felix
	wil: I believe that to be the only response...immediate change...one or two moves later and it is trouble..
	Felix: I think you may be right... but we'll see if it costs me in the long run!

8) wil: Build B2 Wil
	wil: In my trials it is the only move....too moves later and you'll never get a blue and I create a queen factory...  (or you lose half your homeworld trying)

9) Felix: Trade B3 Y3 Felix

10) wil: D B2 Wil G3 G3

11) Felix: Discover B2 Felix G2 Rem

12) wil: B Y1 Wil

13) Felix: Build Y1 Felix

14) wil: Trade Y1 G1 Wil

15) Felix: Move Y1 Felix Rem

16) wil: T G1 R1 Wil

17) Felix: Build G1 Felix

18) wil: B R1 Wil

19) Felix: Build G1 Felix

20) wil: B Y1 Wil

21) Felix: Discover G1 Felix B2 Ram

22) wil: B B3 G3

23) Felix: Build B3 Rem

24) wil: T B3 Y3 G3

25) Felix: Move B2 Rem G3

26) wil: T B2 R2 G3

27) Felix: Build G2 Ram

28) wil: A B2 G3

29) Felix: Build G3 Felix

30) wil: D B1 Wil G3 Gee3

31) Felix: Trade G1 R1 Felix

32) wil: T R1 G1 Wil

33) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Rem
Build Y2 Felix

34) wil: B Y2 G3

35) Felix: Build B2 Rem

36) wil: B B3 G3

37) Felix: Move B2 Rem Gee3

38) wil: B B3 Gee3

39) Felix: Move R1 Felix Ram

40) wil: M B3 G3 Ram

41) Felix: Sacrifice Y3 Felix
Move G1 Ram Gee3
Move G1 Gee3 Wil
Discover G2 Ram Y3 Rom

42) wil: M G1 Wil G3

43) Felix: Sacrifice G1 Felix
Build G1 Wil

44) wil: Trade Y1 R1 Wil

45) Felix: Sacrifice G2 Rom
Build G2 Wil
Catastrophe Wil Green
Build G1 Felix

46) wil: Sacrifice R2 G3
Attack B2 Gee3
Attack R1 Ram

47) Felix: Move B3 Rem Gee3
Catastrophe Gee3 Blue

48) wil: M R1 Wil Rem

49) Felix: Sacrifice Y1 Rem
Move Y1 Rem G3

50) wil: T Y2 R2 G3

51) Felix: Trade G1 B1 Felix

52) wil: A Y1 G3
	Felix: Meh. I'm not happy with this situation :P

53) Felix: Discover B1 Felix G2 Somata

54) wil: M B2 G3 Somata
	Felix: May as well speed along the inevitable.

55) Felix: Build B2 Somata

56) wil: S R2 G3
A B1 Somata
A B2 Somata

57) Felix: Build G1 Felix

58) wil: B R2 Rem

59) Felix: Sacrifice Y2 Felix
Move G1 Felix Somata
Move G1 Somata G3
	wil: Ur slowing me down!

60) wil: S Y3 G3
M R1 Rem Felix
M R2 Rem Felix
M R1 Ram Felix

61) Felix: Build G1 G3
Catastrophe G3 Green
Catastrophe Felix Red
	wil: Doomsday machine locked and loaded

62) wil: S Y3 Wil
M B3 Ram Felix
M B2 Somata Felix
M B2 Somata Felix
C Felix B

	Felix: It's not often I get to call two catastrophes on one turn. Good game!
	wil: Hey... I was a gonna do that!
	wil: Wots somata u...


32876)
Started: 2017.8.4, Ended: 2017.8.24
Participants: MobyNostromo (S), Helix (N)
Winner: MobyNostromo

1) Helix: Pass

2) MobyNostromo: H B1 G2 Y3
	Helix: Hi. I'm trying this games which looks very complicated.
	MobyNostromo: Yes. This one is a very complicated one, but it seems to have the depth of Chess or Go. I've played this about ten times now, and I am now starting to feel the incredible possibilities. You're not going to understand it this time or maybe the next couple of times, but you will soon find a strategy you might want to use, and then the game will slowly start to make sense. Be patient.

3) Helix: Pass
	Helix: Could you show me an example of first move (how to write it)?
	Draw5PlayAll: The homeworld move is: homeworld [star] [star] [ship] e.g. homeworld B3 R1 G3.
When it comes time to build your second ship, use:
build G1 Helix
(Or B1, Y1, or R1... the same color as your initial ship.)
	Draw5PlayAll: Oh, and there should not be a period in the homeworld command.

4) MobyNostromo: B Y1 Mobynostromo
	Helix: Sorry, I saw your answers after I moved.

5) Helix: Homeworld B3 R1 G3

6) MobyNostromo: B Y1 Mobynostromo
	Helix: Thanks to Draw5PlayAll
	MobyNostromo: Me too. Thanks to Draw5PlayAll.



32786)
Variants: "Unrated"
Started: 2017.8.4, Ended: 2017.8.23
Participants: DazelHirae (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3
	DazelHirae: hi
	Felix: Hello! First game?



32841)
Variants: "Unrated, Hard time"
Started: 2017.8.8, Ended: 2017.8.23
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y2 G3

2) wil: Homeworld B2 Y1 G3

3) dlwillson: B G1 Dlwillson

4) wil: B G1 Wil

5) dlwillson: T G1 Y1 Dlwillson

6) wil: Trade G1 Y1 Wil

7) dlwillson: Build Y2 Dlwillson

8) wil: B Y2 Wil

9) dlwillson: D Y1 Dlwillson G1 Field

10) wil: D Y1 Wil G3 G3

11) dlwillson: B Y3 Field

12) wil: B Y3 G3

13) dlwillson: Discover Y3 Field B3 Sky

14) wil: Discover Y2 Wil Y3 Y3

15) dlwillson: D Y2 Dlwillson B1 Sea

16) wil: B G1 Wil

17) dlwillson: Trade Y2 G2 Sea

18) wil: T G1 R1 Wil

19) dlwillson: B G1 Dlwillson

20) wil: Move Y3 G3 Sea

21) dlwillson: T G1 R1 Dlwillson

22) wil: B R1 Wil

23) dlwillson: S Y1 Field
M G2 Sea Sky

24) wil: B R2 Wil

25) dlwillson: B R2 Dlwillson

26) wil: T R1 B1 Wil

27) dlwillson: T R1 B1 Dlwillson

28) wil: M B1 Wil G3

29) dlwillson: B G1 Sky

30) wil: B B2 G3

31) dlwillson: B G1 Sky

32) wil: S B2 G3
T R2 G2 Wil
T G3 R3 Wil

33) dlwillson: Trade G2 B2 Sky

34) wil: Build B2 G3

35) dlwillson: Discover B2 Sky G1 Field

36) wil: Move B1 G3 Field

37) dlwillson: Build B3 Field

38) wil: Move B2 G3 Field
Catastrophe Field B

39) dlwillson: B B1 Dlwillson

40) wil: Build G1 Wil

41) dlwillson: T G1 R1 Sky

42) wil: T G2 B2 Wil

43) dlwillson: D B1 Dlwillson G1 Field

44) wil: B G2 Wil

45) dlwillson: B G2 Dlwillson

46) wil: M B2 Wil G3

47) dlwillson: Discover B1 Dlwillson Y1 Golden

48) wil: Discover G2 Wil B3 B3

49) dlwillson: Sacrifice G3 Dlwillson
Build G2 Sky
Build G3 Dlwillson
Build Y2 Sky

50) wil: B G3 B3

51) dlwillson: Sacrifice G3 Dlwillson
Build R1 Sky
Build B2 Golden
Build G3 Dlwillson

52) wil: M R1 Wil G3
	dlwillson: Damn your perfect move! You foiled my plan!

53) dlwillson: Sacrifice Y2 Sky
Move G2 Sky Wil
Move R1 Sky Wil
	dlwillson: I have a new plan! It's not as good as the old plan...

54) wil: Attack R1 Wil
	wil: Will it be easier to foil?

55) dlwillson: S G2 Dlwillson
B G2 Wil
B R2 Sky
	dlwillson: probably :-(
	dlwillson: <grin> I hope not!

56) wil: S Y3 Sea
M R1 Wil Y3
M G2 B3 Wil
C Wil G
M G3 B3 Wil

57) dlwillson: M R2 Sky Golden

58) wil: D R1 Y3 G1 G1
	dlwillson: Hm. There was more to that idea, but I've forgotten what it was...

59) dlwillson: S G3 Dlwillson
B R2 Sky
B R3 Golden
B R3 Dlwillson
	wil: Thats wot notes are for
	wil: Oh my nice move

60) wil: T G3 Y3 Wil
	dlwillson: Wow!
	wil: I had no other choice did I?  You were headed in!
	wil: I really like your early second level aggression...it has put mW in hurt from the beginning...
	wil: I really like your early second level aggression...it has put mW in hurt from the beginning...
	wil: It isn't like I got myself outta hot water, but I did think it rather nice move.

61) dlwillson: S B2 Golden
T R3 G3 Dlwillson
T R3 G3 Golden

62) wil: B R3 G1

63) dlwillson: B R3 Golden

64) wil: M R1 G3 Golden

65) dlwillson: S G3 Golden
B G2 Dlwillson
B G2 Sky
B G2 Sky

66) wil: S Y2 Y3
M R1 G1 Sky
M R1 Sky Golden
C Golden R

67) dlwillson: S G3 Dlwillson
B Y2 Sky
B G3 Dlwillson
B G3 Dlwillson

68) wil: B B1 G3

69) dlwillson: M Y3 Sky Wil

70) wil: A Y3 Wil

71) dlwillson: Move Y2 Sky Wil
Catastrophe Wil Y

72) wil: T B1 R1 G3

73) dlwillson: T G3 Y3 Dlwillson

74) wil: B B1 G3

75) dlwillson: T G2 B2 Sky

76) wil: S Y1 G3
M R3 Wil Field
	wil: I will do my best to take advantage of a colossal mistake should you feel the urge.

	dlwillson: I don't think I have enough time left to make a mistake.
	dlwillson: Or we, rather.
	wil: When your top soldiers flee to another island...
	dlwillson: Good game, Wil! Thank you!


32910)
Variants: "Unrated, Hard time"
Started: 2017.8.10, Ended: 2017.8.28
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld B2 R3 G3

2) dlwillson: Homeworld B3 R1 G3
	Felix: Hello again :) Have fun!
	dlwillson: Hi Felix! GLHF!

3) Felix: B G1 Felix

4) dlwillson: B G1 Dlwillson

5) Felix: Trade G1 Y1 Felix

6) dlwillson: Trade G1 Y1 Dlwillson

7) Felix: Build G1 Felix

8) dlwillson: B G1 Dlwillson

9) Felix: Trade G1 R1 Felix

10) dlwillson: Trade G1 R1 Dlwillson

11) Felix: Build R2 Felix

12) dlwillson: Build R2 Dlwillson

13) Felix: Discover R1 Felix B1 Gronch

14) dlwillson: Trade R2 Y2 Dlwillson

15) Felix: Discover R2 Felix Y1 Splinch

16) dlwillson: Build Y2 Dlwillson

17) Felix: Build Y2 Felix

18) dlwillson: D Y2 Dlwillson B2 Sea

19) Felix: Move Y1 Felix Gronch

20) dlwillson: D Y1 Dlwillson G2 Field

21) Felix: Build Y3 Felix

22) dlwillson: B Y3 Field

23) Felix: Sacrifice G3 Felix
Build Y3 Gronch
Build R2 Gronch
Build R2 Splinch

24) dlwillson: S Y2 Sea
M Y3 Field Gronch
M Y3 Gronch Felix

25) Felix: Move R2 Splinch Felix

26) dlwillson: A Y3 Felix
	Felix: Woah, nice move. I didn't see that one coming.

27) Felix: Move Y1 Gronch Felix
Catastrophe Felix Yellow
	dlwillson: I think you're going to come out ahead... Boo...

28) dlwillson: M R1 Dlwillson Field
	Felix: Still a heavy blow!
	Felix: Hey, you should join the tournament Babamots is running. Check it out in the Facebook group! 

29) Felix: Trade R1 G1 Gronch

30) dlwillson: B Y1 Field

31) Felix: Move Y3 Gronch Felix

32) dlwillson: Discover Y1 Field B1 Sky

33) Felix: Trade R2 G2 Felix

34) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Field
Build Y2 Sky
Build Y3 Dlwillson

35) Felix: Build G1 Gronch

36) dlwillson: Build Y3 Field
	Felix: Very nice move!
	dlwillson: I'm going to skip the tournament. 2/2/7 is just too slow. The tournament will still be running in six months, and at that rate, it doesn't add much value over the regular ladder. Have fun, though.
	dlwillson: I was thinking it would be as close to live as possible, with timings of hours, rather than days. :-(

37) Felix: Build G1 Felix
	dlwillson: And finally, about the move, thanks very much!
	Felix: I'd prefer that myself, but since I am frequently playing games on here at a slow pace every day anyway, it didn't sound so bad to me. I'd really love to have a faster paced tourney one day though!

38) dlwillson: Move Y3 Field Gronch

39) Felix: Sacrifice R2 Gronch
Pass
Pass

40) dlwillson: Trade Y3 R3 Gronch

41) Felix: Build G2 Gronch

42) dlwillson: Attack G2 Gronch

43) Felix: Sacrifice G2 Felix
Build G2 Gronch
Build G3 Felix
Catastrophe Gronch Green

44) dlwillson: B Y3 Field

45) Felix: Move G3 Felix Sky

46) dlwillson: Sacrifice Y2 Sky
Move Y3 Field Splinch
Move Y1 Field Gronch
	dlwillson: Ooh. Good move! Now, I have to think!

47) Felix: Trade G3 R3 Sky
	dlwillson: OK, that's the best I could come up with from my unfavorable choices.
	Felix: Pretty good response! I'm still in a bad situation without any more yellow.

48) dlwillson: S Y1 Sky
M Y2 Field Gronch

49) Felix: Move R2 Splinch Field

50) dlwillson: Trade Y3 G3 Dlwillson

51) Felix: A R1 Field

52) dlwillson: S G3 Dlwillson
B Y1 Dlwillson
B Y2 Splinch
B Y3 Dlwillson

53) Felix: Build G1 Felix

54) dlwillson: S Y3 Dlwillson
M Y2 Splinch Felix
M Y2 Gronch Felix
M Y1 Gronch Felix
C Felix Y

55) Felix: T G1 Y1 Felix

56) dlwillson: M Y3 Splinch Felix
	Felix: And that's a wrap! Well played

57) Felix: Sacrifice Y1 Felix
Move R3 Sky Felix
	dlwillson: TY! Playing with you and Wil has improved me.

58) dlwillson: S R3 Gronch
A G1 Felix
Attack R3 Felix
Pass
	Felix: Playing against both of you has helped me improve as well! Not enough for this game, but I'll have you next time ;)
	dlwillson: Thanks again! Good game as always!
	Felix: Congrats! Thanks for playing. Always fun :) You've been a beast lately. Great playing!



32881)
Started: 2017.8.11, Ended: 2017.9.10
Participants: Amnykon (S), MobyNostromo (N)
Winner: Amnykon

1) MobyNostromo: H B1 G2 Y3

2) Amnykon: Homeworld B3 Y2 G3

3) MobyNostromo: B Y1 Mobynostromo

4) Amnykon: Build G1 Amnykon

5) MobyNostromo: B Y1 Mobynostromo

6) Amnykon: Build G1 Amnykon

7) MobyNostromo: T Y1 G1 Mobynostromo

8) Amnykon: Trade G1 Y1 Amnykon

9) MobyNostromo: B G1 Mobynostromo

10) Amnykon: Discover G1 Amnykon Y1 Far

11) MobyNostromo: D G1 Mobynostromo G3 Chromium

12) Amnykon: Build G2 Amnykon

13) MobyNostromo: D G1 Mobynostromo Y3 Azo

14) Amnykon: Sacrifice G3 Amnykon
Build G2 Far
Build G3 Far
Build G3 Amnykon

15) MobyNostromo: M G1 Azo Far
C Far G

16) Amnykon: Discover G2 Amnykon Y1 Far

17) MobyNostromo: Build Y2 Mobynostromo

18) Amnykon: Build G1 Amnykon

19) MobyNostromo: Trade Y1 B1 Mobynostromo

20) Amnykon: Sacrifice G3 Amnykon
Build G1 Far
Build G2 Far
Build G3 Amnykon

21) MobyNostromo: S Y2 Mobynostromo
M G1 Chromium Far
D B1 Mobynostromo Y3 Oxide
C Far G

22) Amnykon: Discover G1 Amnykon Y1 Ye

23) MobyNostromo: B Y1 Mobynostromo

24) Amnykon: Discover Y1 Amnykon G1 Green

25) MobyNostromo: B Y2 Mobynostromo

26) Amnykon: Build G1 Amnykon

27) MobyNostromo: T Y2 G2 Mobynostromo

28) Amnykon: Sacrifice G3 Amnykon
Build G2 Ye
Build G3 Amnykon
Build Y2 Green

29) MobyNostromo: T Y1 B1 Mobynostromo

30) Amnykon: Discover G1 Ye Y3 Yyy

31) MobyNostromo: M G2 Mobynostromo Oxide

32) Amnykon: Sacrifice G3 Amnykon
Build G3 Amnykon
Build G3 Yyy
Build G3 Yyy
	MobyNostromo: I didn't resign our other game!!

	Amnykon: A) you only had 3 small ships. I would have clearly won
B) I think the 10 day time limit is exstream. If you reach that, it would seem that you abandoned the game,which is a forfeit. If you said you were leaving town or something, it would be another story.
	MobyNostromo: A) You didn't give ten days; you barely let 24 hours pass by before you claimed your win.
B) Real life gets in the way of these things; if you can't let the fun roll without having to claim your "victory," then the next time you want to play this, lose my number.
C) Here's a real resignation.


32937)
Started: 2017.8.11, Ended: 2017.9.7
Participants: MobyNostromo (S), Amnykon (N)
Winner: Amnykon

1) Amnykon: Homeworld B1 Y2 G3

2) MobyNostromo: H B2 G1 Y3

3) Amnykon: Build G1 Amnykon

4) MobyNostromo: B Y1 Mobynostromo

5) Amnykon: Build G1 Amnykon

6) MobyNostromo: B Y1 Mobynostromo

7) Amnykon: Discover G1 Amnykon B3 Blue

8) MobyNostromo: T Y1 R1 Mobynostromo

9) Amnykon: Build G2 Amnykon

10) MobyNostromo: M R1 Mobynostromo Blue

11) Amnykon: Sacrifice G3 Amnykon
Build G2 Blue
Build G2 Blue
Build G3 Amnykon

12) MobyNostromo: A G1 Blue

13) Amnykon: Trade G2 R2 Amnykon

14) MobyNostromo: T R1 Y1 Blue

15) Amnykon: Sacrifice R2 Amnykon
Attack Y1 Blue
Attack G1 Blue

16) MobyNostromo: M Y1 Mobynostromo Blue

17) Amnykon: Discover G1 Blue G2 Green

18) MobyNostromo: B Y1 Mobynostromo

19) Amnykon: Sacrifice G3 Amnykon
Build G3 Amnykon
Build G3 Blue
Build G3 Green

20) MobyNostromo: T Y1 R1 Mobynostromo

21) Amnykon: Trade G2 R2 Blue

22) MobyNostromo: M Y1 Blue Amnykon

23) Amnykon: Sacrifice G3 Green
Build G2 Green
Build G3 Blue
Build R1 Blue

24) MobyNostromo: B R1 Mobynostromo

25) Amnykon: Sacrifice G3 Amnykon
Build G3 Amnykon
Build Y1 Blue
Build Y2 Blue

26) MobyNostromo: D R1 Mobynostromo Y3 Bismuth

27) Amnykon: Sacrifice Y2 Blue
Move Y1 Blue Mobynostromo
Move Y1 Blue Mobynostromo

28) MobyNostromo: A Y1 Mobynostromo

29) Amnykon: Sacrifice G3 Amnykon
Build G3 Amnykon
Build Y2 Mobynostromo
Build R2 Blue
Catastrophe Mobynostromo Yellow



32938)
Started: 2017.8.12, Ended: 2017.9.29
Participants: MobyNostromo (S), orangeblood (N)
Winner: orangeblood

1) orangeblood: Homeworld Y1 B2 G3

2) MobyNostromo: H B1 G2 Y3
	orangeblood: Greetings! I'm still learning this game, but I love it so far.

3) orangeblood: Build G1 Orangeblood
	MobyNostromo: Me too. Let's have fun!

4) MobyNostromo: B Y1 Mobynostromo

5) orangeblood: Trade G1 B1 Orangeblood

6) MobyNostromo: T Y1 G1 Mobynostromo

7) orangeblood: Build G1 Orangeblood

8) MobyNostromo: Build Y1 Mobynostromo

9) orangeblood: Discover G1 Orangeblood B3 Pollux

10) MobyNostromo: T Y1 B1 Mobynostromo

11) orangeblood: B B2 Orangeblood

12) MobyNostromo: B B2 Mobynostromo

13) orangeblood: Trade B2 Y2 Orangeblood

14) MobyNostromo: D G1 Mobynostromo Y3 Azo

15) orangeblood: Sacrifice Y2 Orangeblood
Move B1 Orangeblood Azo
Move B1 Azo Mobynostromo
Catastrophe Mobynostromo Blue

16) MobyNostromo: B Y1 Mobynostromo

17) orangeblood: Trade G1 Y1 Pollux

18) MobyNostromo: M Y1 Mobynostromo Pollux

19) orangeblood: Build G1 Orangeblood

20) MobyNostromo: B Y2 Mobynostromo

21) orangeblood: Trade G1 R1 Orangeblood

22) MobyNostromo: T Y1 R1 Pollux

23) orangeblood: Sacrifice R1 Orangeblood
Attack R1 Pollux

24) MobyNostromo: M Y2 Mobynostromo Pollux

25) orangeblood: Build G1 Orangeblood

26) MobyNostromo: T Y2 B2 Pollux

27) orangeblood: Move Y1 Pollux Mobynostromo

28) MobyNostromo: B Y1 Mobynostromo

29) orangeblood: Build Y2 Mobynostromo
Catastrophe Mobynostromo Yellow
	orangeblood: Thanks for the game!
	MobyNostromo: Thanks!!



32844)
Started: 2017.8.13, Ended: 2017.8.17
Participants: ts52 (S), Amnykon (N)
Winner: Amnykon

1) Amnykon: Homeworld Y2 B1 G3

2) ts52: Homeworld B1 Y3 G3

3) Amnykon: Build G1 Amnykon
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) Amnykon: Discover G1 Amnykon B3 Blue

6) ts52: Discover G1 Ts52 B2 Gonzo

7) Amnykon: Build G1 Amnykon

8) ts52: Build G2 Ts52

9) Amnykon: Trade G1 Y1 Amnykon

10) ts52: Trade G2 Y2 Ts52

11) Amnykon: Build G1 Amnykon

12) ts52: Build G2 Ts52

13) Amnykon: Sacrifice G3 Amnykon
Build G2 Blue
Build G2 Blue
Build G3 Amnykon

14) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Gonzo
Build Y1 Ts52

15) Amnykon: Trade G2 Y2 Blue

16) ts52: Move Y1 Ts52 Gonzo

17) Amnykon: Discover G2 Blue B2 Mba

18) ts52: Discover Y2 Ts52 G2 Kermit

19) Amnykon: Trade Y1 B1 Amnykon

20) ts52: Trade G1 R1 Gonzo

21) Amnykon: Trade G1 R1 Amnykon

22) ts52: Build Y1 Gonzo

23) Amnykon: Sacrifice G3 Amnykon
Build G1 Blue
Build G1 Blue
Build G3 Mba

24) ts52: Sacrifice Y2 Kermit
Move G3 Gonzo Blue
Move G3 Blue Amnykon

25) Amnykon: Sacrifice Y2 Blue
Move G3 Mba Ts52
Move G2 Mba Ts52
Catastrophe Ts52 G
	ts52: Very well done! I did not see that coming. Good game!
	Amnykon: Gg
I was hopping abandoning my home world and building 3 green on another system was not a mistake

I had to try something. You managed the stock well. If I built something, you would boule better. 



32774)
Variants: "Hard time"
Started: 2017.8.13, Ended: 2017.8.22
Participants: wil (S), semicolon (N)
Winner: wil

1) semicolon: Homeworld R2 B1 G3

2) wil: H B3 Y1 G3
	wil: Wrlcome  to SDG... How familiar are you with the game?

3) semicolon: Build G1 Semicolon
	semicolon: Familiar with the game, new to SDG. Didn't look at the ladder until after I accepted the game though; probably going to lose!

4) wil: B G1 Wil
	wil: Lol, losing is the way to learn...

5) semicolon: Trade G1 Y1 Semicolon

6) wil: T G1 Y1 Wil

7) semicolon: B G1 Semicolon
	wil: And don't worry about the ladder, I don't deserve to be at the top.

8) wil: B Y2 Wil

9) semicolon: B Y2 Semicolon

10) wil: T Y1 B1 Wil

11) semicolon: D G1 Semicolon Y3 Y3

12) wil: B B1 Wil

13) semicolon: B G1 Y3

14) wil: Discover B1 Wil Y2 Y2

15) semicolon: B G1 Semicolon

16) wil: Build B2 Wil

17) semicolon: T Y2 B2 Semicolon

18) wil: Discover B1 Wil Y2 Why2

19) semicolon: D B2 Semicolon G3 G3

20) wil: S G3 Wil
B B2 Why2
B B3 Y2
B B3 Wil

21) semicolon: D G1 Y3 R2 R2

22) wil: S B2 Why2
T B3 R3 Y2
T B3 G3 Wil

23) semicolon: B G2 Semicolon

24) wil: S G3 Wil
B B2 Y2
B B3 Why2
B B3 Wil

25) semicolon: T B2 G2 G3

26) wil: M B3 Why2 G3

27) semicolon: S G3 Semicolon
B G2 Y3
B G3 R2
B G3 Semicolon

28) wil: M B2 Y2 Y3

29) semicolon: B Y1 Semicolon

30) wil: Sacrifice R3 Y2
Attack G2 G3
Attack G2 Y3
Attack G1 Y3

31) semicolon: T G3 Y3 Semicolon

32) wil: T B3 Y3 G3

33) semicolon: S Y3 Semicolon
M G1 Semicolon Y3
M G1 R2 Y3
C Y3 G
M G3 R2 Y3

34) wil: B Y3 G3
	semicolon: and I think that's game
	semicolon: Well played :) I'll have to try again some time

35) semicolon: M G3 Y3 Semicolon

36) wil: S G2 G3
B B2 Y3
B B3 Y3
	semicolon: Could you not have sacrificed Y2, moved Y3 to my Homeworld and start capturing everything?
	wil: Unless I missed something you would have grown a y3 and blown them all up.


37) semicolon: M G2 Semicolon Y3

38) wil: S B2 Y3
T B3 R3 Y3
T B3 G3 Wil

39) semicolon: M G2 Y3 Why2

40) wil: Sacrifice G3 Wil
Build B2 Y3
Build B3 Y3
Build B3 Wil

41) semicolon: B G1 Why2
	wil: now my route to the end is secure.

42) wil: S Y3 G3
M B1 Y2 G3
M Y3 G3 Semicolon
M B3 Y3 Semicolon

	semicolon: Good game :)
	wil: This is a game (like most) of refraining from really bad moves and capitalizing on the mistakes of others.  


32886)
Variants: "Unrated"
Started: 2017.8.13, Ended: 2017.9.20
Participants: Felix (S), orangeblood (N)
Winner: Felix

1) orangeblood: Homeworld Y1 B2 G3

2) Felix: Homeworld R2 B3 G3
	orangeblood: Hi again... I've finally made my way through a backlog of games on Little Golem, and I'm ready to get back into HW.
	Felix: Excellent! Welcome back. I hope you have fun :)

3) orangeblood: Build G1 Orangeblood

4) Felix: Build G1 Felix

5) orangeblood: Trade G1 Y1 Orangeblood

6) Felix: Trade G1 Y1 Felix

7) orangeblood: Build Y2 Orangeblood

8) Felix: Build Y2 Felix

9) orangeblood: Build G1 Orangeblood

10) Felix: Discover Y1 Felix B1 Point

11) orangeblood: Discover Y1 Orangeblood G3 Arcturus

12) Felix: Build G1 Felix

13) orangeblood: Discover G1 Orangeblood B3 Antares
	Felix: I want so badly to sacrifice my g3 for a bunch of yellows, but then you could just catastrophe them!
	orangeblood: Do you mean because you could grab two large ones in the process?

14) Felix: Move G1 Felix Point
	Felix: I wouldn't really gain anything. I'd just end up trading my g3 for a y3, basically.

15) orangeblood: Trade Y2 R2 Orangeblood

16) Felix: Build Y2 Point
	orangeblood: Gotcha. I was just trying to understand the basics of what you meant, but had to think about it for awhile.

17) orangeblood: T G1 B1 Antares
	Felix: No worries. I'm not sure I fully understood it myself :)

18) Felix: Trade Y2 R2 Point

19) orangeblood: Move R2 Orangeblood Antares

20) Felix: Build Y2 Point

21) orangeblood: Build G1 Orangeblood

22) Felix: Sacrifice G3 Felix
Build Y2 Point
Build Y3 Felix
Build Y3 Felix

23) orangeblood: M Y1 Arcturus Point
Catastrophe Point Yellow

24) Felix: Move Y3 Felix Point
	orangeblood: I feel you were baiting me into that, but we'll see what happens... :)

25) orangeblood: Trade B1 Y1 Antares
	Felix: Somewhat :) It's usually worth it to take a catastrophe if it will leave your opponent without a particular color temporarily... especially if that color is yellow

26) Felix: Trade Y3 G3 Felix

27) orangeblood: Move G1 Orangeblood Antares

28) Felix: Move Y3 Point Antares

29) orangeblood: Build Y1 Antares

30) Felix: Sacrifice Y3 Antares
Move G1 Point Antares
Move G1 Antares Orangeblood
Move R2 Point Antares

31) orangeblood: Sacrifice R2 Antares
Attack G1 Orangeblood
Pass
	Felix: Fantastic move. You put me in a tight spot, but hopefully this will work :)

32) Felix: A G1 Antares
	orangeblood: Any fantastic moves are just a result of me lashing out with my back to the wall, haha. Your move was great. I can't believe how deep this game is.

33) orangeblood: Move Y1 Antares Orangeblood

34) Felix: Attack Y1 Antares

35) orangeblood: Trade G1 R1 Orangeblood
	Felix: It's so deep! I've been playing for a while now and am constantly surprised.

36) Felix: Build Y2 Antares

37) orangeblood: D Y1 Orangeblood G3 Altair

38) Felix: T Y1 B1 Antares

39) orangeblood: Build G1 Orangeblood

40) Felix: Build G1 Antares

41) orangeblood: Move G1 Orangeblood Altair

42) Felix: B G2 Antares

43) orangeblood: Build G2 Altair

44) Felix: Sacrifice Y2 Antares
Move G1 Antares Orangeblood
Move G1 Orangeblood Altair
Catastrophe Altair Green

45) orangeblood: Build R1 Orangeblood

46) Felix: Trade G1 Y1 Antares

47) orangeblood: Trade R1 B1 Orangeblood
	orangeblood: It was my intention to try the "banker" strategy in this game. Do you have any tips on how to actually get to the point where I could even try it? haha...
	Felix: I'm not so good at that strategy myself. Basically you just want to move g1s or g2s out to large stars that you want to keep away from me, but you can't really cash those in until that color is down to only larges. So if you moved a g1 to a y3, for instance, then if all the y1s and y2s were depleted you could sac that g1 to build the y3 (but only if you had a yellow ship elsewhere where you could build it.) It's not an easy strategy and sometimes requires more effort than it's worth, in my opinion.

48) Felix: Build Y1 Antares

49) orangeblood: Build R1 Orangeblood
	orangeblood: I'll have to try something else next time. ;)

50) Felix: B Y2 Felix

	orangeblood: I'm out of ideas... thanks for the game!
	Felix: Good game! Thanks for playing :)


32842)
Variants: "Hard time"
Started: 2017.8.14, Ended: 2017.8.23
Participants: velgarath2 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 R3 G3
	velgarath2: Hi Felix!
Let's play another one. I will try new things on this game!
Thanks for playing
	Felix: Hello again! I'm happy to play again. I hope you have fun :)

2) velgarath2: Homeworld Y3 G1 B3

3) Felix: Build G1 Felix

4) velgarath2: Build B1 Velgarath2

5) Felix: Trade G1 Y1 Felix

6) velgarath2: Build B1 Velgarath2

7) Felix: Build Y1 Felix

8) velgarath2: Trade B1 Y1 Velgarath2

9) Felix: Build Y2 Felix

10) velgarath2: Build Y2 Velgarath2

11) Felix: Discover Y1 Felix B1 Point

12) velgarath2: Trade Y1 R1 Velgarath2

13) Felix: Discover Y1 Felix Y1 C3x

14) velgarath2: Discover Y2 Velgarath2 G2 Eden

15) Felix: Sacrifice G3 Felix
Build Y2 C3x
Build Y3 Felix
Build Y3 Point

16) velgarath2: Move Y2 Eden C3x
Catastrophe C3x Y

17) Felix: Trade Y3 G3 Felix

18) velgarath2: Trade B3 G3 Velgarath2

19) Felix: Trade Y3 G3 Point

20) velgarath2: Build B1 Velgarath2

21) Felix: Build Y1 Felix

22) velgarath2: Discover B1 Velgarath2 G2 Somewhere

23) Felix: Discover Y1 Felix Y1 Tinop

24) velgarath2: Sacrifice G3 Velgarath2
Build B2 Somewhere
Build B2 Somewhere
Build B3 Velgarath2

25) Felix: Build Y2 Felix

26) velgarath2: Build B3 Velgarath2
	Felix: Good move!

27) Felix: Sacrifice G3 Felix
Build Y2 Tinop
Build Y3 Point
Build Y3 Felix

28) velgarath2: Trade B3 G3 Velgarath2
	velgarath2: That was also a good move!

29) Felix: Trade Y3 R3 Point

30) velgarath2: Trade B3 Y3 Velgarath2

31) Felix: Move R3 Point Somewhere

32) velgarath2: Build B3 Velgarath2

33) Felix: Attack B2 Somewhere

34) velgarath2: Sacrifice G3 Velgarath2
Build B3 Velgarath2
Build B3 Somewhere
Build R1 Velgarath2
Catastrophe Somewhere Blue

35) Felix: Trade Y3 G3 Felix

36) velgarath2: Discover Y3 Velgarath2 G2 Greenland
	Felix: Interesting move! I like it

37) Felix: Build Y3 Point

38) velgarath2: Trade B3 G3 Velgarath2

39) Felix: Move Y3 Point Somewhere

40) velgarath2: Move R1 Velgarath2 Greenland

41) Felix: Trade Y2 R2 Felix

42) velgarath2: Build Y2 Greenland

43) Felix: Discover G3 Point B2 Ocean

44) velgarath2: Move Y2 Greenland Tinop
Catastrophe Tinop Yellow

45) Felix: Sacrifice Y2 Felix
Move G3 Ocean Velgarath2
Move Y3 Somewhere Velgarath2

46) velgarath2: Attack Y3 Velgarath2

47) Felix: S R3 Somewhere
A B3 Velgarath2
A Y3 Velgarath2
A G3 Velgarath2
	velgarath2: wow! This looks ugly!

48) velgarath2: Move Y3 Greenland Velgarath2

49) Felix: Sacrifice G3 Velgarath2
Build G1 Velgarath2
Build G1 Velgarath2
Build Y1 Velgarath2
Catastrophe Velgarath2 Yellow
Catastrophe Velgarath2 Green
	Felix: I'm afraid it does! Only being able to attack once can be very dangerous if the opponent can attack twice or three times

	Felix: Good game! Exciting finish :)
	velgarath2: Thank you! A good learning experience. Lessons learned!


32953)
Started: 2017.8.14, Ended: 2017.10.6
Participants: velgarath2 (S), maka (N)
Winner: velgarath2

1) maka: Homeworld G3 Y1 B3

2) velgarath2: Homeworld Y2 B3 G3

3) maka: Build B1 Maka

4) velgarath2: Build G1 Velgarath2

5) maka: Trade B1 R1 Maka

6) velgarath2: Trade G1 R1 Velgarath2

7) maka: Build B1 Maka

8) velgarath2: Build G1 Velgarath2

9) maka: Trade B1 G1 Maka

10) velgarath2: Trade G1 Y1 Velgarath2

11) maka: Discover G1 Maka B2 Loko

12) velgarath2: Build G1 Velgarath2

13) maka: Build B1 Maka

14) velgarath2: Discover G1 Velgarath2 Y1 Katapum

15) maka: Build B1 Maka

16) velgarath2: Build Y2 Velgarath2

17) maka: Trade B3 Y3 Maka

18) velgarath2: Trade Y2 B2 Velgarath2

19) maka: Build Y2 Maka

20) velgarath2: Discover Y1 Velgarath2 G1 Ultima

21) maka: Trade Y3 R3 Maka

22) velgarath2: Build G2 Velgarath2

23) maka: Move Y2 Maka Loko

24) velgarath2: Build G2 Katapum

25) maka: Move R3 Maka Loko

26) velgarath2: Build Y2 Ultima
	maka: Perdona por ir tan lento. Pero esta vez voy a intentar que no se me vaya la olla y terminemos el juego :)
	maka: Tu llegaste a jugar al attangle aquí no? Recuerdo que me gustaba mucho. Podríamos echar una tb jeje

27) maka: Build Y3 Loko

28) velgarath2: Trade G3 Y3 Velgarath2

29) maka: Sacrifice Y2 Loko
Move Y3 Loko Katapum
Move R3 Loko Katapum

30) velgarath2: Sacrifice Y2 Ultima
Move G2 Katapum Loko
Move G2 Loko Maka

31) maka: Attack G1 Katapum

32) velgarath2: Sacrifice R1 Velgarath2
Attack R1 Maka
	maka: otras! me la has jugado bien :D
	velgarath2: Bueno....la cosa tampoco esta muy tranquila para mi. No me gusta nada esa nave roja amenazante...

33) maka: Sacrifice Y3 Katapum
Move R3 Katapum Loko
Move R3 Loko Maka
Pass

34) velgarath2: Build G2 Maka

35) maka: Attack G2 Maka

36) velgarath2: Build G3 Maka
Catastrophe Maka Green

37) maka: Attack R1 Maka
	maka: bueno... muy bueno... me has pillado totalmente

	maka: se me da fatal este juego :D


38) velgarath2: Build G2 Velgarath2

39) maka: Build G2 Loko

40) velgarath2: Trade G2 R2 Velgarath2

41) maka: Build G2 Loko

42) velgarath2: Build G3 Velgarath2

43) maka: Trade G2 R2 Loko

44) velgarath2: Build Y2 Ultima

45) maka: Trade G2 Y2 Loko

46) velgarath2: Build Y3 Velgarath2

47) maka: Build Y3 Loko

48) velgarath2: Move Y3 Velgarath2 Maka

49) maka: Attack Y3 Maka
	maka: perdona que tarde tanto... tengo mogollón de lío estos días y se ma va la olla... 

50) velgarath2: Move Y3 Velgarath2 Maka

51) maka: Move Y3 Maka Velgarath2

52) velgarath2: Sacrifice R2 Velgarath2
Attack R3 Maka
Attack R1 Maka

	maka: ostras... no recordaba que se pudiera hacer eso... pues nada... ya me tienes :) 
	velgarath2: buena partida maka!


32952)
Started: 2017.8.14, Ended: 2017.11.13
Participants: velgarath2 (S), fogus (N)
Winner: fogus

1) fogus: Homeworld Y1 B2 G3

2) velgarath2: Homeworld R3 B2 G3
	velgarath2: Thank  you for playing!

3) fogus: Build G1 Fogus

4) velgarath2: Build G1 Velgarath2

5) fogus: Trade G1 Y1 Fogus

6) velgarath2: Trade G1 Y1 Velgarath2

7) fogus: Discover Y1 Fogus G3 Cribbage

8) velgarath2: Build Y2 Velgarath2

9) fogus: Build Y2 Cribbage

10) velgarath2: Discover Y2 Velgarath2 G1 Hyperspace

11) fogus: Build G1 Fogus

12) velgarath2: Build Y2 Hyperspace


13) fogus: Discover G1 Fogus Y3 Gops

14) velgarath2: Build Y3 Velgarath2

15) fogus: Discover Y1 Cribbage G1 Gin

16) velgarath2: Discover Y2 Hyperspace Y3 Casiopea

17) fogus: Build G2 Fogus

18) velgarath2: Build G2 Velgarath2

19) fogus: Build G2 Gops

20) velgarath2: Trade G2 R2 Velgarath2

21) fogus: Build G2 Gops

22) velgarath2: Move R2 Velgarath2 Gin

23) fogus: Move Y1 Gin Velgarath2

24) velgarath2: Move Y1 Velgarath2 Gin

25) fogus: Discover Y1 Velgarath2 B1 Hearts

26) velgarath2: Move R2 Gin Gops

27) fogus: Trade Y1 R1 Hearts

28) velgarath2: Move R2 Gops Hearts

29) fogus: Build Y1 Cribbage



32959)
Variants: "Hard time"
Started: 2017.8.15, Ended: 2017.8.28
Participants: dlwillson (S), wil (N)
Winner: dlwillson

1) wil: H B3 Y2 G3
	wil: Time to get knocked off my perch

2) dlwillson: H Y3 B1 G3
	dlwillson: I hope so! Good luck and have fun!

3) wil: B G1 Wil

4) dlwillson: B G1 Dlwillson

5) wil: T G1 B1 Wil

6) dlwillson: Trade G1 B1 Dlwillson

7) wil: Build B2 Wil

8) dlwillson: B B2 Dlwillson

9) wil: T B2 G2 Wil

10) dlwillson: Build G1 Dlwillson

11) wil: B B2 Wil

12) dlwillson: Discover B1 Dlwillson G2 Field

13) wil: T B2 R2 Wil

14) dlwillson: Trade G1 R1 Dlwillson

15) wil: Trade G2 Y2 Wil

16) dlwillson: B B2 Dlwillson

17) wil: D B1 Wil G1 G1

18) dlwillson: D B2 Dlwillson Y2 Golden

19) wil: B Y1 Wil

20) dlwillson: M B2 Golden G1

21) wil: B B2 G1
	wil: I really like that move

22) dlwillson: B B3 Field

23) wil: S Y2 Wil
M B1 G1 Field
M B2 G1 Field
C Field B

24) dlwillson: B B1 G1

25) wil: B Y1 Wil

26) dlwillson: T B2 Y2 G1

27) wil: M Y1 Wil G1

28) dlwillson: Build R1 Dlwillson

29) wil: B Y1 G1

30) dlwillson: T B1 R1 G1

31) wil: B R2 Wil

32) dlwillson: B R2 G1

33) wil: M R2 Wil G1

34) dlwillson: A R2 G1
	dlwillson: Interesting build-up!

35) wil: Build R3 Wil

36) dlwillson: Sacrifice Y2 G1
Move R1 G1 Wil
Move R2 G1 Wil
Catastrophe Wil R
	wil: you in the tourney?

37) wil: B Y2 Wil
	dlwillson: I have been teaching SFS Linux Camp for the last 4 days. I haven't had time to read up on it. Link?
	wil: Homeworlds tournament starting

Just trying to make sure everyone knows...

https://docs.google.com/document/d/1hkxl9Mw2XAv4-efyG_hURgV9lx11vendySVaKzZvg6U/edit?usp=sharing
	wil: Does that mean you can tell me.how to clean out my boot and make my computer work faster?

38) dlwillson: A Y1 G1

39) wil: M Y1 Wil G1
	dlwillson: Yes, but only if you're running Linux. I don't do Windows or Mac.

40) dlwillson: Sacrifice R2 G1
Attack Y1 G1
Attack Y1 G1
	wil: Yeah, it...it Linux.... I think illegal to run if.you don't know what you are.doing..

41) wil: T Y2 R2 Wil
	dlwillson: Then yes, I can help you clean up your boot and speed up your system.

Want to have the conversation here or in email? Either way, run `df -hT` and return the output to me and: Do you have a spinning disc or a solid-state drive? And, run `top -bn1 | head -n 20` and return the output of that.
	dlwillson: I'm going to skip the tournament. 2/2/7 is just too slow. The tournament will still be running in six months, and at that rate, it doesn't add much value over the regular ladder. Have fun, though.
	wil: Let's email...theallyns@gmail.com
	wil: Lol somebody wasn't thinking

42) dlwillson: Discover Y1 G1 G2 Field
	dlwillson: Why didn't you build first, then trade?
	dlwillson: Oh, wait, I think I see. I think I could have locked you out of red.

43) wil: B R1 Wil
	dlwillson: Email sent from DLWillson@TheGeek.NU. Check your junk if you don't see it.
	wil: I saw it, didn't get to it today..thx innadvance for the help.

44) dlwillson: M R1 Dlwillson Field
	wil: This has not gone well...   IMA gonna return you to the hot seat.

45) wil: M R2 Wil G1
	dlwillson: Yeah. Things are looking pretty good for South right now.

46) dlwillson: S G3 Dlwillson
B Y2 Field
B Y2 Field
B Y3 G1

47) wil: B R2 Wil

48) dlwillson: S R1 Field
A R2 G1

49) wil: D R2 Wil G1 Gone

50) dlwillson: M Y2 Field Dlwillson

51) wil: B R1 Gone

52) dlwillson: B Y3 Field

53) wil: B G1 Wil

54) dlwillson: Sacrifice B2 Dlwillson
Trade Y3 G3 Field
Trade Y3 G3 G1

55) wil: T G1 B1 Wil

56) dlwillson: Sacrifice G3 Field
Build G1 G1
Build Y3 G1
Build Y3 Field

57) wil: B B1 Wil

58) dlwillson: Sacrifice Y3 Field
Move G1 G1 Wil
Move G3 G1 Wil
Move Y1 G1 Wil

59) wil: M G3 Wil G1

60) dlwillson: T G3 B3 Wil
C Wil B

61) wil: S R2 Gone
A Y3 G1
A R2 G1

62) dlwillson: S Y2 Field
M Y2 Dlwillson Wil
M Y1 G1 Wil
C Wil Y
	wil: Congrats
	dlwillson: Thanks and good game, Wil!



32813)
Variants: "Unrated"
Started: 2017.8.16, Ended: 2017.8.30
Participants: twermund (S), wil (N)
Winner: wil

1) wil: H B3 Y2 G3

2) twermund: Homeworld B2 Y1 G3
	wil: New to the game?

3) wil: B G1 Wil
	twermund: Yup, first game

4) twermund: Build G1 Twermund
	wil: Do you have pyramids
	twermund: Yup, just got my first full set last week. I got Treehouse and two pyramid stashes.

5) wil: T G1 Y1 Wil
	wil: Cool...this format is often tough to see actual relationships, sometimes worth creating your own physical set to review

6) twermund: Trade G1 Y1 Twermund
	wil: The beginning of the game is follow the leader...insuring you don't get frozen out of any economy (color/ability)

7) wil: Build Y2 Wil
	twermund: I've watched a little bit of Homeworlds Theater on youtube so I have a rough idea of how the game works, I'm just excited to get into more complicated games to play with my pyramids

8) twermund: Trade Y1 B1 Twermund
	wil: Read the rules? Understand attacks and catastrophes, end game scenarios?
	wil: Pyramid Arcade has a few more.strategy games...but this is the best....turned a life long chess fan around.

9) wil: B G1 Wil
	twermund: I've read them a few times out of the Pyramid Arcade rulebook, I just figured I would try a game and lose to learn more about the game :D

10) twermund: Build B1 Twermund
	wil: Warning... You jumped back out of yellow!
	wil: Look at how many I lost to learn!!

11) wil: T G1 B1 Wil

12) twermund: Trade B1 Y1 Twermund

13) wil: D Y1 Wil G1 G1

14) twermund: Build G1 Twermund

15) wil: B Y2 G1

16) twermund: Build B1 Twermund
	Draw5PlayAll: It took me seven games before I won my first...

17) wil: B Y3 Wil

18) twermund: Build Y3 Twermund

19) wil: S Y2 Wil
D Y1 G1 R3 R3
M Y1 R3 Twermund
C Twermund Y

20) twermund: Trade G1 R1 Twermund
	wil: It was a little early to catastrophe, but something you should always watch out for.
	twermund: haha, I was trying to get my blues ready for the same thing
	twermund: haha, I was trying to get my blues ready for the same thing

21) wil: B B2 Wil

22) twermund: Trade B1 Y1 Twermund
	wil: That focus on a gambit must not take younaway from looking around.  My Y's have been in play for that ever since I moved the little in forward and left a y2 at home..
	twermund: Is there any rational move left for me at this point?

23) wil: B G1 Wil

24) twermund: Move R1 Twermund G1

25) wil: T B2 R2 Wil

26) twermund: Build R1 G1
	wil: Are you wishing to donate a ship to me?  So nice...

27) wil: S R2 Wil
A R1 G1
A R1 G1

28) twermund: Build B1 Twermund
	wil: That is what an attack looks like....thank you for the nice new ships.... Sacrificing a 2 pip ship gives me the power of 2 attacks anywhere in the galaxy


	wil: Well that will end it...do you want to play another?
	twermund: Yeah, that sounds good. I'll research my moves this time :D
	twermund: Yeah, that sounds good. I'll research my moves this time :D
	wil: Did you see the end move?
	twermund: Nope, what was it?
	twermund: oh! move the blue in and catastrophe
	wil: Yes...any time someone changes to yellow or has yellows you really need to count potential moves...I just lost another game to that reality


32974)
Variants: "Hard time"
Started: 2017.8.18, Ended: 2017.11.13
Participants: Joe_Hill (S), Mandrel (N)
Winner: Mandrel

1) Mandrel: Homeworld R1 B2 G3

2) Joe_Hill: Homeworld Y1 B2 G3
	Mandrel: Have a good game
	Joe_Hill: Hi Mandrel, I'm pretty new to this game, looking to learn.

3) Mandrel: Build G1 Mandrel

4) Joe_Hill: Build G1 Joe_hill
	Mandrel: Cool! I've played a bunch but not really for a while so am pretty rusty, but feel free to ask any questions if you want

5) Mandrel: Trade G1 Y1 Mandrel

6) Joe_Hill: Trade G1 Y1 Joe_hill

7) Mandrel: Build Y2 Mandrel

8) Joe_Hill: Build G1 Joe_hill

9) Mandrel: Discover Y1 Mandrel G3 Peer

10) Joe_Hill: Trade G3 R3 Joe_hill

11) Mandrel: Build Y2 Peer

12) Joe_Hill: Trade Y1 B1 Joe_hill

13) Mandrel: B G1 Mandrel

14) Joe_Hill: Build G1 Joe_hill

15) Mandrel: T G1 B1 Mandrel

16) Joe_Hill: Discover G1 Joe_hill Y3 Tab

17) Mandrel: M B1 Mandrel Peer

18) Joe_Hill: Move B1 Joe_hill Tab

19) Mandrel: B Y1 Mandrel

20) Joe_Hill: Build G1 Tab

21) Mandrel: B G2 Mandrel

22) Joe_Hill: Build G2 Joe_hill

23) Mandrel: Trade Y2 R2 Mandrel

24) Joe_Hill: Trade G1 R1 Tab

25) Mandrel: Move R2 Mandrel Tab

26) Joe_Hill: Move R1 Tab Joe_hill

27) Mandrel: Attack G1 Tab

28) Joe_Hill: Discover B1 Tab Y2 Hab

29) Mandrel: Build Y2 Mandrel

30) Joe_Hill: Move G2 Joe_hill Peer

31) Mandrel: Build Y3 Peer



32976)
Variants: "Hard time"
Started: 2017.8.18, Ended: 2017.10.11
Participants: ts52 (S), Draw5PlayAll (N)
Winner: ts52

1) Draw5PlayAll: Homeworld B3 R1 G3
	ts52: Have a good game!

2) ts52: Homeworld Y3 B2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) ts52: Build G1 Ts52

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) ts52: Trade G1 Y1 Ts52

7) Draw5PlayAll: Build G1 Draw5playall

8) ts52: Build G1 Ts52

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) ts52: Trade G1 B1 Ts52

11) Draw5PlayAll: Build G1 Draw5playall

12) ts52: Discover B1 Ts52 G1 Kermit

13) Draw5PlayAll: Discover B1 Draw5playall G2 G2

14) ts52: Move Y1 Ts52 Kermit

15) Draw5PlayAll: Trade G1 R1 Draw5playall

16) ts52: Build G1 Ts52

17) Draw5PlayAll: Build R1 Draw5playall

18) ts52: Discover G1 Ts52 B1 Gonzo

19) Draw5PlayAll: Build B2 G2

20) ts52: B B2 Kermit

21) Draw5PlayAll: Move R1 Draw5playall G2

22) ts52: Trade B2 R2 Kermit

23) Draw5PlayAll: Build G1 Draw5playall

24) ts52: Build G2 Ts52

25) Draw5PlayAll: Move Y1 Draw5playall G2

26) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build G3 Gonzo

27) Draw5PlayAll: Trade B2 Y2 G2

28) ts52: T G2 Y2 Gonzo

29) Draw5PlayAll: Move Y1 G2 Draw5playall

30) ts52: Discover G1 Gonzo Y2 Bigbird

31) Draw5PlayAll: Discover G1 Draw5playall B2 B2

32) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build R2 Kermit

33) Draw5PlayAll: Move R1 Draw5playall B2

34) ts52: Move R2 Kermit B2

35) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 B2
Build Y1 G2
Build Y3 Draw5playall

36) ts52: Build Y3 Gonzo

37) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move G1 B2 Draw5playall

38) ts52: Sacrifice G3 Gonzo
Build G3 Bigbird
Build R2 B2
Build R3 Kermit

39) Draw5PlayAll: Sacrifice G3 B2
Build R3 B2
Build R3 G2
Build G3 Draw5playall
Catastrophe B2 Red

40) ts52: Trade G3 R3 Ts52

41) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B2 G2
Build Y1 Draw5playall

42) ts52: Build G3 Gonzo
	Draw5PlayAll: What is gonzo?
	ts52: Gonzo the great! He's one of the Muppets. A Jim Henson character.

43) Draw5PlayAll: Discover B1 G2 R1 R1

44) ts52: Discover Y3 Gonzo R2 Elmo
	Draw5PlayAll: A lone peacemaker sets up camp at an unfamiliar place, ready for the burst of energy from home to terraform the planet.

45) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B2 G2
Build B3 R1

46) ts52: Sacrifice G3 Gonzo
Build B3 Kermit
Build G3 Gonzo
Build R2 Ts52

47) Draw5PlayAll: Sacrifice Y1 G2
Discover B2 G2 Y1 Y1

48) ts52: Move G2 Gonzo Elmo

49) Draw5PlayAll: Move B2 Y1 Ts52

50) ts52: Build Y1 Elmo

51) Draw5PlayAll: Move Y1 Draw5playall G2

52) ts52: Move B1 Kermit Bigbird

53) Draw5PlayAll: Move Y1 G2 R1

54) ts52: Attack B2 Ts52

55) Draw5PlayAll: Move B3 R1 Ts52

56) ts52: Attack B3 Ts52

57) Draw5PlayAll: Move B1 R1 Ts52
Catastrophe Ts52 Blue

58) ts52: Sacrifice G3 Bigbird
Build G3 Bigbird
Build B1 Bigbird
Build B2 Bigbird

59) Draw5PlayAll: Sacrifice Y2 G2
Move R1 G2 Ts52
Move R3 G2 Ts52
Catastrophe Ts52 Red

60) ts52: Move R3 Kermit Ts52

61) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 R1
Build G3 Draw5playall
Pass

62) ts52: Sacrifice G3 Bigbird
Build G3 Bigbird
Build R1 Kermit
Build R2 Ts52

63) Draw5PlayAll: Trade G3 R3 Draw5playall

64) ts52: Sacrifice G3 Bigbird
Build G3 Bigbird
Build G3 Elmo
Build R3 Kermit

	Draw5PlayAll: I knew it was bad to blow your B2 star without a plan to take out the Y3, but I had no choice really. I was just hoping that maybe you would mess up and I _would_ get a shot at your Y3.
	ts52: :) Yeah, it's always risky blowing up half a homeworld before you have a plan for the other half. Good game!
	Draw5PlayAll: Was there anything else I could have done?
	ts52: Not sure. At some point I need to spend time studying homeworlds end games.


32996)
Variants: "Unrated, Hard time"
Started: 2017.8.22, Ended: 2017.9.6
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld Y3 B2 G3
	ts52: Have a good game!

2) Felix: Homeworld B1 R3 G3

3) ts52: Build G1 Ts52
	Felix: Thanks, you too! This one is for the Homeworlds tournament on Facebook :) Good luck!
	ts52: I see you send all your challenges at once. I screwed up my first one (forgot to make it unrated and the note about the tournament) d'oh!

4) Felix: Build G1 Felix
	Felix: No worries. It will all be pretty laid back, I think :) I may have bitten off more than I can chew by challenging everyone at once, though... it's hard to focus on good strategy when I have 10 moves to make in 10 different games!

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: Build B2 Felix

9) ts52: Discover B2 Ts52 G1 Kermit

10) Felix: Trade B2 Y2 Felix

11) ts52: Build G1 Ts52
	Felix: I don't like the looks of this!

12) Felix: Discover B1 Felix G2 Opus

13) ts52: Trade G1 Y1 Ts52

14) Felix: Build Y1 Felix

15) ts52: Build G1 Ts52

16) Felix: Move Y2 Felix Opus

17) ts52: Move Y1 Ts52 Kermit

18) Felix: Build Y1 Opus

19) ts52: Build Y2 Kermit

20) Felix: Move Y1 Opus Kermit

21) ts52: Trade Y1 R1 Kermit

22) Felix: Build Y1 Kermit

23) ts52: Build R1 Kermit

24) Felix: S G3 Felix
B Y2 Kermit
B Y3 Opus
B Y3 Felix
C Kermit Yellow

25) ts52: Trade R1 Y1 Kermit

26) Felix: Trade Y3 R3 Opus

27) ts52: Build G1 Ts52

28) Felix: Move R3 Opus Kermit

29) ts52: Build R1 Kermit

30) Felix: Attack B2 Kermit

31) ts52: Build R1 Kermit
Catastrophe Kermit Red

32) Felix: Build B2 Kermit
	Felix: Nice move!

33) ts52: Discover G1 Ts52 Y1 Bigbird
	ts52: Still hurts though. Well played.

34) Felix: Trade B2 R2 Kermit

35) ts52: T G1 R1 Ts52

36) Felix: Attack Y1 Kermit

37) ts52: Build G1 Ts52

38) Felix: Trade Y3 G3 Felix

39) ts52: Build G2 Bigbird

40) Felix: Build Y2 Kermit

41) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build G3 Ts52

42) Felix: Sacrifice G3 Felix
Build Y2 Kermit
Build Y3 Opus
Build Y3 Felix

43) ts52: Trade G3 R3 Ts52

44) Felix: Build B2 Kermit
	Felix: Yellow versus green. In most lockouts like this, I'd rather control yellow than any other color, but we'll see how this shakes out!
	ts52: You may be right. But at the very least, it's an interesting game. :)

45) ts52: Move R3 Ts52 Kermit

46) Felix: Sacrifice Y2 Kermit
Move B2 Kermit Ts52
Move B2 Kermit Ts52
Catastrophe Ts52 Blue

47) ts52: Attack Y2 Kermit
	ts52: d'oh. saw it coming just a bit too late. this will be interesting....

48) Felix: S Y3 Felix
M Y3 Opus Ts52
M Y2 Opus Ts52
M Y1 Kermit Ts52
C Ts52 Yellow
	Felix: I think I've made my calculations correctly.... fingers crossed!

	ts52: I suspect you have. Well played.
	Felix: Thank you! That was a very fun and interesting one.
	ts52: It was definitely fun and interesting. Well done.


32994)
Variants: "Unrated, Hard time"
Started: 2017.8.22, Ended: 2017.9.6
Participants: Babamots (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 R3 G3
	Babamots: Thanks for getting so many challenges going! You'll fill out the game start form?

2) Babamots: Homeworld B2 R1 G3
	Felix: No prob; thanks for organizing this! Yep, I just filled it out :)

3) Felix: Build G1 Felix

4) Babamots: Build G1 Babamots

5) Felix: T G1 Y1 Felix

6) Babamots: Build G1 Babamots

7) Felix: Build Y1 Felix

8) Babamots: Trade G1 Y1 Babamots

9) Felix: Discover Y1 Felix G1 Bazoik

10) Babamots: Build Y2 Babamots
	Babamots: Well, I don't like it but I'm not sure that I have anything better.

11) Felix: Sacrifice G3 Felix
Build Y2 Bazoik
Build Y2 Felix
Build Y3 Felix
	Felix: It's definitely better than being locked out of yellow! But don't worry. You're not at too much of a disadvantage at the moment, I don't think. Just one step behind on the yellow economy.

12) Babamots: Discover Y1 Babamots B3 Cardassia

13) Felix: Sacrifice Y1 Felix
Move Y2 Bazoik Cardassia

14) Babamots: Sacrifice G3 Babamots
Build Y1 Cardassia
Build Y3 Cardassia
Build Y3 Babamots
Catastrophe Cardassia Y

15) Felix: Trade Y3 G3 Felix
	Felix: Ooh, that was clever. Nice move!

16) Babamots: Build G1 Babamots
	Babamots: Thanks! I rather liked it.

17) Felix: Build Y1 Bazoik

18) Babamots: Discover G1 Babamots B3 Cardassia

19) Felix: Move Y1 Bazoik Cardassia

20) Babamots: Trade Y3 G3 Babamots

21) Felix: Build Y1 Bazoik

22) Babamots: Move Y2 Babamots Cardassia

23) Felix: Sacrifice G3 Felix
Build Y2 Cardassia
Build Y3 Felix
Build Y3 Felix

24) Babamots: Trade Y2 R2 Cardassia
	Babamots: I'm not sure why I thought moving my yellow out was such a good idea since that's exactly what I expected you to do.

25) Felix: Sacrifice Y2 Cardassia
Move Y3 Felix Bazoik
Move Y3 Bazoik Cardassia
	Felix: Haha, good move in response though!

26) Babamots: Attack Y1N Cardassia

27) Felix: Trade Y2 R2 Felix

28) Babamots: Sacrifice Y1 Cardassia
Move R2 Cardassia Bazoik

29) Felix: S Y1 Bazoik
D Y1 Bazoik G3 Flemoid

30) Babamots: Build G2 Babamots

31) Felix: Sacrifice R2 Felix
Attack G1 Cardassia
Pass

32) Babamots: Trade G2 Y2 Babamots

33) Felix: Build G2 Cardassia

34) Babamots: Discover G1 Babamots B3 Ferenginar
	Babamots: I think I have a serious problem.

35) Felix: Trade G1 R1 Cardassia

36) Babamots: Build G1 Babamots
	Felix: Maybe! But I'm not in the clear yet.
	Babamots: Anything I can build you can build bigger. I can't build anything bigger than yoooooou...

37) Felix: Build G2 Cardassia

38) Babamots: Sacrifice G3 Babamots
Build G2 Ferenginar
Build G3 Ferenginar
Build G3 Babamots
	Felix: Hahahaha

39) Felix: Move G2 Cardassia Babamots

40) Babamots: Trade G1 B1 Babamots

41) Felix: Sacrifice G2 Cardassia
Build G1 Babamots
Build G2 Babamots
Catastrophe Babamots Green

42) Babamots: Sacrifice Y2 Babamots
Move G3 Ferenginar Babamots
Move G1 Ferenginar Bazoik
	Felix: The ol' "warp and build." One of my favorite techniques! It's looking grim for the brave soldiers of Babamots. Best get that G3 home, stat! :)
	Babamots: Didn't think about the sacrifice! Never seen that one before. At least I saved the little guy.

43) Felix: Move Y3 Cardassia Bazoik

44) Babamots: Sacrifice G2 Ferenginar
Build G1 Bazoik
Build G2 Bazoik
Catastrophe Bazoik G

45) Felix: Build Y1 Flemoid
	Babamots: Nearly equalized :-).
	Babamots: Really, I should have let you sacrifice your r1 to take my r2 before doing that, but I was worried you would notice your peril and run away.
	Babamots: Suffice to say, I really enjoyed that move.

46) Babamots: Build G1 Babamots
	Felix: That was a good move! We are pretty balanced out now...

47) Felix: Trade Y3 G3 Felix

48) Babamots: Trade G1 Y1 Babamots

49) Felix: Discover Y1 Flemoid G1 Raggar

50) Babamots: Build Y2 Babamots

51) Felix: Build Y2 Raggar

52) Babamots: Discover Y1 Babamots B3 Galorndon

53) Felix: M Y2 Raggar Felix

54) Babamots: Trade B1 R1 Babamots

55) Felix: S G3 Felix
B Y2 Flemoid
B Y3 Raggar
B Y3 Felix

56) Babamots: Build Y3 Babamots

57) Felix: Sacrifice Y2 Felix
Move Y1 Flemoid Babamots
Move Y2 Flemoid Babamots
Catastrophe Babamots Yellow

58) Babamots: Build G1 Babamots

59) Felix: Move Y1 Raggar Felix

60) Babamots: Build G1 Babamots
	Babamots: Aaaand I'm back to hoping you'll make a mistake.

61) Felix: Trade Y3 G3 Felix

62) Babamots: Trade G1 Y1 Babamots
	Felix: It's definitely possible! I've been known to make many :)

63) Felix: Build Y2 Raggar

64) Babamots: Build Y2 Babamots

65) Felix: Move Y2 Raggar Cardassia

66) Babamots: Discover G1 Babamots Y3 Vulcan

67) Felix: Sacrifice G3 Felix
Build Y2 Cardassia
Build Y3 Felix
Build R2 Cardassia

68) Babamots: Move R1 Babamots Vulcan

69) Felix: Trade Y1 G1 Felix

70) Babamots: Build R2 Vulcan

71) Felix: Build G2 Felix

72) Babamots: Build G2 Babamots

73) Felix: Trade Y2 G2 Cardassia

74) Babamots: Sacrifice G3 Babamots
Build G3 Vulcan
Build G3 Babamots
Build Y1 Galorndon

75) Felix: B G3 Cardassia

76) Babamots: Move G2 Babamots Cardassia

77) Felix: Sacrifice Y2 Cardassia
Move G3 Cardassia Babamots
Move G2 Cardassia Babamots

78) Babamots: Sacrifice R2 Vulcan
Attack G3N Babamots
Attack G2N Babamots
	Felix: Good move!
	Babamots: We'll see. It got a reaction anyway.

79) Felix: Sacrifice Y3 Raggar
Discover G1 Felix G1 Raggar
Move G1 Raggar Cardassia
Move G1 Cardassia Babamots
Catastrophe Babamots Green

80) Babamots: Sacrifice R1 Vulcan
Attack R2N Cardassia
	Felix: It sure did. And it hurt me quite a bit, too! But hopefully it hurt you slightly worse :)
	Babamots: I like this situation a little better than before my move, mostly since we're now even on large ships.

81) Felix: Build Y2 Felix

82) Babamots: Attack R1N Cardassia
	Felix: Yeah, I think I am actually worse off at the moment after you got my r2.

In an unrelated note, I finished my first game against wil and filled out the game end form, but it looks like the tournament table didn't update but still says the game is in progress. There was no place to enter the game number on the game end form. Is it something you just manually update, or do I need to do something else?

83) Felix: Discover Y2 Felix G1 Glorfindel
	Babamots: The tournament table only looks the player names from the finish form. The table should be showing the winner. I'll investigate.

84) Babamots: Trade Y1 G1 Babamots
	Babamots: Found the problem. Each form submission created a new row on the spreadsheet, and references to the top row were automatically changed to refer to the next row down (to the old empty cell). It's fixed now.

85) Felix: B Y1 Glorfindel

86) Babamots: Sacrifice Y2 Babamots
Move Y1 Galorndon Glorfindel
Move Y1 Galorndon Glorfindel
Catastrophe Glorfindel Y

87) Felix: Build G1 Felix

88) Babamots: Move G3 Vulcan Babamots
	Felix: Man, nice one again. I can't get the edge I need on you!

89) Felix: Discover G2 Felix B1 Glimdark

90) Babamots: Discover G1 Vulcan B1 Betazed

91) Felix: Build Y1 Felix

92) Babamots: Trade R1 Y1 Cardassia

93) Felix: Trade Y1 R1 Felix

94) Babamots: Discover R2 Cardassia B1 Iconia

95) Felix: Build Y1 Felix

96) Babamots: Move Y1 Cardassia Iconia

97) Felix: Move Y1 Felix Glimdark

98) Babamots: Discover Y1 Iconia G3 Brekka

99) Felix: Discover G2 Glimdark Y3 Rimworld

100) Babamots: Sacrifice G3 Babamots
Build G2 Cardassia
Build G3 Babamots
Build G3 Betazed

101) Felix: Move G1 Felix Glimdark

102) Babamots: Trade G1 R1 Betazed

103) Felix: S Y3 Felix
M G1 Glimdark Rimworld
M G1 Rimworld Babamots
M G2 Rimworld Babamots
C Babamots Green
	Felix: Good game! That was a fun one. You put up a heck of a fight with all those unexpected aggressive catastrophes on me. I like that aggressive play... loads of fun. Thanks for playing and setting up this tourney!
	Babamots: Looks like I missed something. I'll have to go back and see what happened.
	Babamots: Yeach, standard Bluebird. I was really looking forward to beating you. Maybe next time.
	Felix: You gave me a run for my money, for sure. Excellent play! I'm sure we'll meet again in the bracket, and you may take me down when it really counts!
	Babamots: I'm kicking myself pretty hard because I got up in material and then just got sloppy. Good luck in your other games! I hope I can make it into the bracket to face you again!



32998)
Variants: "Unrated, Hard time"
Started: 2017.8.22, Ended: 2017.11.4
Participants: Felix (S), jeep (N)
Winner: jeep

1) jeep: H R2 B3 G3

2) Felix: Homeworld R1 B3 G3

3) jeep: B G1 Jeep
	Felix: Hey, good luck and have fun :)
	jeep: Thanks! You too.

4) Felix: Build G1 Felix

5) jeep: T G1 Y1 Jeep

6) Felix: Trade G1 R1 Felix

7) jeep: Build Y1 Jeep

8) Felix: Trade R1 Y1 Felix

9) jeep: Build Y2 Jeep
	Felix: Oops. I made a mistake!

10) Felix: B Y2 Felix
	jeep: :( That sucks. Not a tech error, I hope.

11) jeep: Discover Y1 Jeep G1 Aaa

12) Felix: Discover Y1 Felix B2 Rim
	Felix: Not at all, just a user error ;)
	Felix: I should have traded for yellow at the start, not red!

13) jeep: Discover Y1 Jeep B1 Bbb

14) Felix: Build G1 Felix

15) jeep: Trade Y1 G1 Bbb

16) Felix: Move G1 Felix Rim
	jeep: I expect that I will be playing slowly through the holiday.

17) jeep: Build G2 Jeep

18) Felix: B G2 Felix

19) jeep: Sacrifice G3 Jeep
Build G2 Bbb
Build G3 Bbb
Build G3 Jeep

20) Felix: Move G1 Rim Bbb
Catastrophe Bbb Green

21) jeep: Build G1 Jeep

22) Felix: M G2 Felix Rim

23) jeep: Discover G2 Jeep Y1 Shot

24) Felix: Build G1 Felix
	Felix: Late response, but not a problem! Did you have a nice holiday?

25) jeep: Sacrifice G3 Jeep
Build G2 Shot
Build G3 Jeep
Build G3 Shot

26) Felix: M G2 Rim Shot
C Shot Green
	jeep: It was pretty good. There has to be a better move than this, but it's the best I found.

27) jeep: Build G2 Jeep
	Felix: It sort of just makes us break even ha
	jeep: Yeah, just a reset. I didn't see a way to do better.

28) Felix: Move G1 Felix Rim

29) jeep: Discover G2 Jeep B1 Wheel

30) Felix: Build G2 Felix

31) jeep: Trade G1 R1 Jeep

32) Felix: Trade G2 R2 Felix

33) jeep: Discover Y1 Aaa G2 Stage

34) Felix: Build Y1 Rim

35) jeep: Build G1 Jeep

36) Felix: D Y1 Rim B1 Soap

37) jeep: Build Y2 Stage

38) Felix: Sacrifice G3 Felix
Build Y3 Soap
Build Y3 Rim
Build Y3 Felix

39) jeep: Sacrifice Y2 Jeep
Move Y1 Stage Felix
Move Y2 Stage Felix
Catastrophe Felix Yellow

40) Felix: Move Y3 Rim Felix
	jeep: I clearly missed that. :(

41) jeep: Build G1 Wheel
	Felix: Huh.... so did I!
	jeep: You still game out ahead...

42) Felix: Build G2 Rim

43) jeep: Trade G2 Y2 Wheel

44) Felix: Move G1 Rim Soap

45) jeep: Trade G1 Y1 Jeep

46) Felix: T Y1 R1 Soap

47) jeep: Move R1 Jeep Wheel

48) Felix: T R2 G2 Felix

49) jeep: Build R2 Wheel

50) Felix: Build R2 Soap

51) jeep: Trade R2 B2 Wheel

52) Felix: Move R2 Soap Rim

53) jeep: Build B1 Wheel

54) Felix: Build R2 Soap

55) jeep: Discover B1 Wheel Y2 Box
	jeep: Yeah, this has been a losing battle for a while... I don't know if there is a way to recover...

56) Felix: Move R2 Soap Box

57) jeep: Build R3 Wheel
	Felix: Never give up! I've made really dumb mistakes when I've been in better positions than this.

58) Felix: Attack B1 Box

59) jeep: Discover G1 Wheel R3 Derby

60) Felix: Build R3 Soap

61) jeep: Move R3 Wheel Rim

62) Felix: Discover R2 Rim Y1 Rom

63) jeep: Attack Y1 Rim

64) Felix: Sacrifice G2 Rim
Build Y2 Soap
Build B2 Box

65) jeep: Discover B2 Wheel B3 Hat

66) Felix: Build Y3 Felix

67) jeep: Sacrifice G1 Derby
Build R3 Rim

68) Felix: Sacrifice Y2 Soap
Move R1 Soap Rim
Move R2 Rom Rim
Catastrophe Rim Red

69) jeep: Trade B2 R2 Hat
	jeep: Ugh, now I remember why I discarded that play the first time I looked at the game.

70) Felix: Move R3 Soap Hat
	Felix: It could be a lot worse! You're really doing quite well defensively. I can't get the edge I need to attack.

71) jeep: Sacrifice Y1 Rim
Discover R2 Hat Y2 Mover

72) Felix: Sacrifice G2 Felix
Build R1 Hat
Build R3 Box

73) jeep: Build G1 Jeep

74) Felix: Move R3 Box Soap

75) jeep: Sacrifice G1 Jeep
Build R3 Wheel

76) Felix: Discover B2 Box G1 Slip

77) jeep: Move R3 Wheel Box
	jeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.

	Felix: Sure thing! I always love to finish a game.
	Felix: Oops. Looks like I let time get away from me! Sorry.


33001)
Variants: "Unrated, Hard time"
Started: 2017.8.22, Ended: 2017.10.4
Participants: Grosseteste (S), jeep (N)
Winner: jeep

1) jeep: H B3 R2 G3

2) Grosseteste: Homeworld Y3 B1 G3

3) jeep: B G1 Jeep

4) Grosseteste: B G1 Grosseteste

5) jeep: Trade G1 Y1 Jeep

6) Grosseteste: T G1 B1 Grosseteste

7) jeep: B Y1 Jeep

8) Grosseteste: Build B1 Grosseteste

9) jeep: Build Y1 Jeep

10) Grosseteste: Discover B1 Grosseteste G2 Charlie

11) jeep: Discover Y1 Jeep G1 Brown

12) Grosseteste: Build B2 Grosseteste

13) jeep: Build Y2 Brown

14) Grosseteste: T B1 R1 Grosseteste

15) jeep: Discover Y2 Brown B3 Snoopy

16) Grosseteste: Build B1 Charlie

17) jeep: Build G1 Jeep

18) Grosseteste: Build B2 Charlie

19) jeep: Build Y2 Brown

20) Grosseteste: T B2 Y2 Charlie
	jeep: I expect to be playing slowly through the holiday.

21) jeep: Sacrifice G3 Jeep
Build Y3 Jeep
Build Y3 Snoopy
Build G1 Jeep
	Grosseteste: No worries, I've got stuff going on myself

22) Grosseteste: Move Y2 Charlie Brown

23) jeep: Move Y1 Jeep Brown
Catastrophe Brown Yellow

24) Grosseteste: B B2 Charlie

25) jeep: Trade Y3 B3 Snoopy

26) Grosseteste: S B2 Grosseteste
T B1 Y1 Charlie
T B2 Y2 Charlie

27) jeep: Discover G1 Jeep Y1 Bravo

28) Grosseteste: D Y1 Charlie G3 Rerun

29) jeep: Discover G1 Bravo Y3 First

30) Grosseteste: Build B1 Charlie

31) jeep: Build G1 First

32) Grosseteste: S Y2 Charlie
M B1 Charlie Snoopy
M B1 Charlie Snoopy
C Snoopy Blue

33) jeep: Discover G1 First B2 Prequel

34) Grosseteste: B G2 Grosseteste

35) jeep: Build G2 Prequel

36) Grosseteste: Trade G2 Y2 Grosseteste

37) jeep: Trade G2 Y2 Prequel



32993)
Variants: "Unrated, Hard time"
Started: 2017.8.22, Ended: 2017.8.31
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H B2 Y1 G3
	wil: This a round Robin game?

2) Felix: Homeworld R2 B3 G3
	Felix: Yes indeed! Good luck and have fun :)

3) wil: B G1 Wil

4) Felix: Build G1 Felix
	wil: You as well, this should be interesting.

5) wil: Trade G1 B1 Wil

6) Felix: Trade G1 Y1 Felix

7) wil: T B1 Y1 Wil

8) Felix: Build Y2 Felix
	wil: Such a nice start I got off to!

9) wil: B Y2 Wil
	Felix: Better to get your mistakes out early than in the late game!

10) Felix: Discover Y1 Felix B1 Out
	wil: That makes sense, not.

11) wil: D Y1 Wil G3 G3

12) Felix: Build G1 Felix

13) wil: B G1 Wil
	Draw5PlayAll: So this is that tournament where you play 7 rounds followed by a double elimination? I think it will be at least 18 months and maybe 2 years before it is over. And the ladder is already annoying enough!
	wil: Seriously?  Just cause you don't wanna play you wanna annoy us during our game?  Comment all you want on games you are involved in...but I am formally asking younto refrain from butting in and commenting on my games you are not involved in.   Is this too much to ask?
	wil: Your intrusions in my games like this fits the definition of annoying.

14) Felix: Trade G1 B1 Felix

15) wil: D G1 Wil Y3 Y3
	Felix: @Draw5 and even if it does take that long, that just means victory will be all the sweeter.

16) Felix: Build B1 Felix

17) wil: T Y2 B2 Wil

18) Felix: Sacrifice G3 Felix
Build Y2 Out
Build Y2 Felix
Build Y3 Felix
	wil: Lol, absolutely agree Felix...  Why would I care his long it takes... My goal here is to play games...  While scoring well in a tourney or being on top of the ladder provides some ego gratification.... The real goal is to simply play games!!

19) wil: B Y3 G3

20) Felix: Sacrifice Y2 Felix
Move Y2 Out G3
Move Y1 Out G3
Catastrophe G3 Yellow

21) wil: Build G1 Wil

22) Felix: Trade Y3 G3 Felix
	Felix: Forgot to catastrophe
	wil: no worries...the back up button is like moving the coin...first you need to see the repercussions of your move...

23) wil: T G1 Y1 Wil

24) Felix: Discover B1 Felix G1 R2

25) wil: M B2 Wil Y3

26) Felix: Build Y1 Felix

27) wil: B Y2 Wil

28) Felix: Move Y1 Felix R2

29) wil: D Y1 Wil G3 G3

30) Felix: Build Y2 R2

31) wil: B Y3 G3

32) Felix: B Y3 Felix

33) wil: B G1 Wil

34) Felix: S Y2 Felix
M Y1 R2 G3
M B1 R2 G3

35) wil: D Y3 G3 B1 B1

36) Felix: S Y2 R2
M Y1 G3 Wil
M B1 G3 Wil

37) wil: T Y2 R2 Wil

38) Felix: S G3 Felix
B B2 Wil
B B3 Wil
B Y2 Wil
C Wil Blue

39) wil: S B2 Y3
P
T R2 Y2 Wil
C Wil Y
	wil: Nice!

	Felix: Thanks! I've been hoping for the opportunity to try that for a few turns, but you kept fouling my plans.
	wil: Nice game.... That was great
	Felix: Indeed, a very fun one! I'll hopefully see you in the bracket round, whenever that finally comes about :)


33002)
Variants: "Unrated, Hard time"
Started: 2017.8.23, Ended: 2017.9.15
Participants: Grosseteste (S), shoejitsu (N)
Winner: Grosseteste

1) shoejitsu: Homeworld G2 R1 B3

2) Grosseteste: Homeworld B1 Y3 G3

3) shoejitsu: Build B1 Shoejitsu
	Grosseteste: Very interesting starting setup, good luck!

4) Grosseteste: Build G1 Grosseteste

5) shoejitsu: Build B1 Shoejitsu
	shoejitsu: hah yep. good luck and have fun!

6) Grosseteste: B G1 Grosseteste

7) shoejitsu: Trade B1 G1 Shoejitsu

8) Grosseteste: Discover G1 Grosseteste B2 Charlie

9) shoejitsu: Build G2 Shoejitsu

10) Grosseteste: S G3 Grosseteste
B G2 Charlie
B G3 Charlie
B G3 Grosseteste

11) shoejitsu: Sacrifice G2 Shoejitsu
Build B1 Shoejitsu
Build G2 Shoejitsu

12) Grosseteste: Trade G3 Y3 Charlie

13) shoejitsu: Trade B1 Y1 Shoejitsu

14) Grosseteste: S Y3 Charlie
D G1 Charlie R3 Lucy
M G1 Lucy Shoejitsu
D G1 Grosseteste B2 Rerun
C Shoejitsu Green

15) shoejitsu: Trade B1 G1 Shoejitsu
	shoejitsu: ouch... nice move

16) Grosseteste: B G1 Grosseteste

17) shoejitsu: Discover G1 Shoejitsu R3 Indigo

18) Grosseteste: Build G2 Rerun

19) shoejitsu: Build G2 Indigo

20) Grosseteste: S G3 Grosseteste
B G3 Grosseteste
B G3 Grosseteste
B G3 Charlie

21) shoejitsu: Move Y1 Shoejitsu Indigo

22) Grosseteste: T G3 B3 Grosseteste

23) shoejitsu: Trade B3 G3 Shoejitsu

24) Grosseteste: T G3 Y3 Grosseteste

25) shoejitsu: Move G2 Indigo Charlie

26) Grosseteste: S Y3 Grosseteste
M G1 Rerun Shoejitsu
M G2 Rerun Shoejitsu
M G2 Charlie Shoejitsu
Catastrophe Shoejitsu Green
	shoejitsu: idk dude
	Grosseteste: Thanks for the game!
	shoejitsu: thanks and good luck!



32997)
Variants: "Unrated, Hard time"
Started: 2017.8.23, Ended: 2017.9.12
Participants: Felix (S), shoejitsu (N)
Winner: Felix

1) shoejitsu: Homeworld G3 Y2 B3

2) Felix: H R1 B3 G3

3) shoejitsu: Build B1 Shoejitsu

4) Felix: Build G1 Felix
	Felix: Have a good game!

5) shoejitsu: Build B1 Shoejitsu
	shoejitsu: have fun!

6) Felix: Trade G1 B1 Felix

7) shoejitsu: Trade B1 G1 Shoejitsu

8) Felix: Build G1 Felix

9) shoejitsu: Discover G1 Shoejitsu B1 Prime

10) Felix: T G1 Y1 Felix

11) shoejitsu: Build B2 Shoejitsu

12) Felix: Build B2 Felix

13) shoejitsu: Move B1 Shoejitsu Prime

14) Felix: Discover B1 Felix G2 Out

15) shoejitsu: Build G1 Prime

16) Felix: Sacrifice G3 Felix
Build B2 Out
Build B3 Felix
Build Y1 Felix

17) shoejitsu: Trade G1 Y1 Prime

18) Felix: Trade B2 Y2 Out

19) shoejitsu: Discover B1 Prime Y2 Dot

20) Felix: Trade B2 G2 Felix

21) shoejitsu: Build G1 Prime

22) Felix: Sacrifice Y2 Out
Move B1 Out Prime
Move B1 Prime Shoejitsu

23) shoejitsu: Trade B3 R3 Shoejitsu

24) Felix: Build B2 Shoejitsu

25) shoejitsu: Trade B2 G2 Shoejitsu

26) Felix: Trade B1 G1 Shoejitsu

27) shoejitsu: Attack G1S Shoejitsu

28) Felix: T B2 G2 Shoejitsu
C Shoejitsu Green

29) shoejitsu: Move G1 Prime Dot

30) Felix: Discover Y1 Felix G2 Out

31) shoejitsu: Build Y2 Prime

32) Felix: Sacrifice G2 Felix
Build Y3 Felix
Build Y3 Out

33) shoejitsu: Trade G1 B1 Dot

34) Felix: Move Y1 Felix Shoejitsu

35) shoejitsu: Sacrifice Y2 Prime
Move B1 Dot Felix
Move B1 Dot Felix
Catastrophe Felix Blue

36) Felix: Discover Y1 Out R1 In

37) shoejitsu: Build Y2 Prime

38) Felix: Build Y2 Out

39) shoejitsu: Attack Y1 Shoejitsu
	Felix: It's gonna be close!
	shoejitsu: my nails are already chewed down to the stubs... XD

40) Felix: Sacrifice Y3 Out
Move Y2 Out In
Move Y1 In Shoejitsu
Move Y2 In Shoejitsu
Catastrophe Shoejitsu Yellow

	shoejitsu: yep... i noticed your move a bit too late. great game felix!
	Felix: Good game! Very fun, with a tense ending :)


32995)
Variants: "Unrated, Hard time"
Started: 2017.8.23, Ended: 2017.9.11
Participants: fogus (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) fogus: Homeworld Y1 B2 G3
	Felix: Hey fogus! Good luck and have fun :)

3) Felix: Build G1 Felix
	fogus: thanks, you too!

4) fogus: Build G1 Fogus

5) Felix: Trade G1 Y1 Felix

6) fogus: Build G1 Fogus

7) Felix: Build Y1 Felix

8) fogus: Trade G3 Y3 Fogus

9) Felix: Discover Y1 Felix B1 Out

10) fogus: Build Y2 Fogus

11) Felix: Build Y2 Felix

12) fogus: Discover Y2 Fogus G3 Cribbage

13) Felix: Discover Y1 Felix G1 Opus

14) fogus: Build G2 Fogus

15) Felix: Sacrifice G3 Felix
Build Y2 Opus
Build Y3 Out
Build Y3 Felix

16) fogus: Move Y2 Cribbage Out

17) Felix: D Y1 Out R3 Brink

	Felix: That's a shame! Do you want to rematch, or just take the loss?


32999)
Variants: "Unrated, Hard time"
Started: 2017.8.23, Ended: 2017.9.9
Participants: Babamots (S), fogus (N)
Winner: Babamots

1) fogus: Homeworld Y1 B2 G3

2) Babamots: Homeworld B3 R1 G3

3) fogus: Build G1 Fogus

4) Babamots: Build G1 Babamots

5) fogus: Trade G3 R3 Fogus

6) Babamots: Trade G1 Y1 Babamots

7) fogus: Build G1 Fogus

8) Babamots: Build Y1 Babamots

9) fogus: Trade R3 Y3 Fogus

10) Babamots: Discover Y1 Babamots G2 Romulus

11) fogus: Build Y2 Fogus

12) Babamots: Build Y2 Romulus

13) fogus: Discover Y2 Fogus G3 Piquet

14) Babamots: Discover Y1 Romulus B3 Iconia

15) fogus: Trade G1 B1 Fogus

16) Babamots: Sacrifice G3 Babamots
Build Y2 Romulus
Build Y3 Babamots
Build Y3 Iconia



33011)
Variants: "Unrated, Hard time"
Started: 2017.8.23, Ended: 2017.9.21
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) ts52: Homeworld Y3 B2 G3
	wil: tourney game?
	ts52: Yes. At least that was my intent.

3) wil: B G1 Wil
	wil: So there is some challenge page you as the initiator fill out eh?

4) ts52: Build G1 Ts52
	wil: Good luck!
	ts52: There is. I filled out the form (as the challenger I'm supposed to) here: https://docs.google.com/forms/d/e/1FAIpQLSdk1Fe7kzk_3jtdslPS2npk2O9aPUxnJY2mps6se-J8s8k0Ew/viewform?usp=sf_link 

5) wil: T G1 B1 Wil
	ts52: Good luck to you too.

6) ts52: Trade G1 B1 Ts52

7) wil: B B2 Wil

8) ts52: Discover B1 Ts52 G1 Kermit

9) wil: D B2 Wil G3 G3

10) ts52: Build G1 Ts52

11) wil: B G1 Wil

12) ts52: Build G2 Ts52

13) wil: B G2 Wil

14) ts52: Trade G2 Y2 Ts52

15) wil: D G2 Wil Y3 Y3

16) ts52: Build G2 Ts52

17) wil: D B1 Wil Y3 Why3

18) ts52: Discover G1 Ts52 Y1 Bigbird

19) wil: T G1 R1 Wil

20) ts52: Trade G2 R2 Ts52

21) wil: B R1 Wil

22) ts52: Move Y2 Ts52 Kermit

23) wil: T R1 Y1 Wil

24) ts52: B G1 Ts52

25) wil: M Y1 Wil G3

26) ts52: B G2 Bigbird

27) wil: B G2 Wil

28) ts52: Build R1 Ts52

29) wil: S G3 Wil
B G3 Wil
B R1 Wil
B R2 Wil

30) ts52: Move R1 Ts52 Kermit

31) wil: T R2 Y2 Wil

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Kermit
Build R2 Kermit

33) wil: M R1 Wil G3

34) ts52: Move R2 Kermit Why3

35) wil: S G3 Wil
B G3 Wil
B B2 G3
B B3 Why3

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Kermit
Build B3 Kermit

37) wil: M B1 Why3 Kermit
C Kermit B

38) ts52: Trade G1 B1 Ts52

39) wil: D B2 G3 G1 G1

40) ts52: Move B1 Ts52 Bigbird

41) wil: S R1 G3
A R2 Why3

42) ts52: Move G1 Bigbird Ts52

43) wil: M B3 Why3 Bigbird

44) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Bigbird
Build B3 Bigbird
Catastrophe Bigbird Blue

45) wil: S G3 Wil
B B1 G1
B B1 G3
B G3 Wil

46) ts52: Build R1 Ts52

47) wil: S G3 Wil
B G3 Wil
B B3 G3
B B3 G1

48) ts52: Move R1 Ts52 Bigbird

49) wil: S B2 G3
T B3 R3 G1
T B3 R3 G3

50) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Bigbird
Build R3 Kermit

51) wil: S G2 Y3
B Y3 G3
B B2 G1

52) ts52: Discover Y2 Kermit B3 Gonzo

53) wil:
B B3 G3

54) ts52: Move G2 Bigbird Gonzo

55) wil: S Y1 G3
M R3 G1 Gonzo

56) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build Y1 Gonzo
Build G3 Ts52

57) wil: A Y2 Gonzo
	wil: Dang it....all power, no clear path to closure

58) ts52: M G2 Gonzo Wil

59) wil: S R3 G3
A G2 Wil
A Y1 Gonzo
A G2 Gonzo

60) ts52: Build R3 Ts52

61) wil: M G2 Wil Why3

62) ts52: Move R3 Kermit Why3

63) wil: S Y2 Gonzo
M G2 Why3 Kermit
M R2 Why3 Kermit

64) ts52: Move R3 Ts52 Kermit

65) wil: S Y2 Wil
M R1 Wil Why3
M R1 Why3 Kermit
C Kermit R

66) ts52: Move R3 Why3 G1

67) wil: B B3 G3

68) ts52: Attack B2 G1

69) wil: M B1 G3 G1
C G1 B

70) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build R1 G1

71) wil: S G2 Kermit
B Y2 G3
B Y3 Gonzo

72) ts52: Build R1 Ts52

73) wil: S Y2 G3
M B3 G3 Bigbird
M B3 G3 Kermit

74) ts52: Sacrifice Y2 Kermit
Discover R2 Bigbird B2 Grover
Move R1 Bigbird Grover

75) wil: B R2 Gonzo

76) ts52: Move Y1 Kermit Grover

77) wil: B Y2 G3

78) ts52: Trade R2 G2 Grover

79) wil: Sacrifice G3 Wil
Build G3 Wil
Build B1 Bigbird
Build B1 Kermit

80) ts52: Build Y2 Grover
	wil: I cannot.recall specifically avoiding creating the factory for so long in a game


81) wil: Sacrifice Y3 G3
Move Y1 Gonzo Kermit
Move Y2 G3 Kermit
Move R2 Gonzo Wil

82) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build Y3 Grover

83) wil: Move Y1 Kermit Grover
Catastrophe Grover Y

84) ts52: Trade G3 Y3 Grover

85) wil: S G3 Wil
B G3 Wil
B G3 Gonzo
B B2 Bigbird

86) ts52: Build Y1 Grover

87) wil: S G3 Wil
B Y1 Gonzo
B Y2 Kermit
B G3 Wil

88) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build R3 Grover

89) wil: M B1 Bigbird Ts52

90) ts52: Move Y3 Grover Kermit

91) wil: S Y2 Kermit
M Y2 Kermit Ts52
M B3 Kermit Ts52

92) ts52: Attack Y2 Ts52

93) wil: S R3 Gonzo
A G3 Ts52
A R2 Ts52
A R2 Ts52

94) ts52: Sacrifice Y3 Kermit
Move R1 G1 Ts52
Move G2 Grover Kermit
Move G2 Kermit Ts52
Catastrophe Ts52 Red
	wil: Folly or not..  I am committed

95) wil: S Y3 Gonzo
M B2 Bigbird Ts52
C Ts52 B
M G2 Wil Ts52
C Ts52 G
M B3 Bigbird Ts52
	ts52: Interesting. I didn't expect the slow kill.

96) ts52: Sacrifice Y2 Ts52
Move R3 Grover Ts52
Move R3 G1 Ts52
	wil: It was sort of a wishbone offense... I didn't have enough for the full frontal attack
	ts52: Wow. Well played. I was so focused on loosing by catastrophe, I failed to take raw capture into account.

97) wil: S R2 Wil
A R3 Ts52
A R3 Ts52

	wil: IRL you always have been able ... Aaron fixed this a few (6?) Months ago or so...
	wil: He left in the no destroying yourself to prevent accidents...even thou IRL ark moments are a thing
	wil: Now the question is is your move (doesn't change this game) acceptable...is pulling out the y3 abandoning your hw? Or is the action instantaneous?
	wil: Quite the game!  
	ts52: Indeed. Thanks for the game! I look forward to a re-match.
	ts52: And yes, you can abandon your homeworld during your turn, so long as you end your turn with a ship in your homeworld, you're good.


32987)
Variants: "Unrated, Hard time"
Started: 2017.8.23, Ended: 2017.9.1
Participants: eliscinsky (S), Remneb (N)
Winner: Remneb

1) Remneb: Homeworld R1 B2 G3

2) eliscinsky: Homeworld R1 B2 G3

3) Remneb: Build G1 Remneb

4) eliscinsky: Build G1 Eliscinsky

5) Remneb: Trade G1 Y1 Remneb

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Remneb: Build G1 Remneb

8) eliscinsky: Build G1 Eliscinsky

9) Remneb: Trade G1 R1 Remneb

10) eliscinsky: Discover Y1 Eliscinsky R3 Proto

11) Remneb: Build R2 Remneb

12) eliscinsky: Build G1 Eliscinsky

13) Remneb: Trade R2 Y2 Remneb

14) eliscinsky: Trade G1 Y1 Eliscinsky

15) Remneb: Build G1 Remneb

16) eliscinsky: Build G1 Eliscinsky

17) Remneb: Sacrifice Y2 Remneb
Move G1 Remneb Proto
Move G1 Proto Eliscinsky
Catastrophe Eliscinsky G

18) eliscinsky: Trade Y1 G1 Eliscinsky

19) Remneb: Build R2 Remneb
	eliscinsky: @Remneb nice move, got me on that on!
	Remneb: :)


20) eliscinsky: Build G1 Eliscinsky

21) Remneb: Discover R2 Remneb Y3 Trump

22) eliscinsky: Trade G1 B1 Eliscinsky

23) Remneb: Move R2 Trump Eliscinsky

24) eliscinsky: Build G1 Eliscinsky

25) Remneb: Attack G1 Eliscinsky

26) eliscinsky: Build G1 Eliscinsky

27) Remneb: Attack G1 Eliscinsky

28) eliscinsky: Build G2 Eliscinsky

29) Remneb: Catastrophe Eliscinsky G
Attack B1 Eliscinsky
	Remneb: Thanks for the game.
	eliscinsky: It was fun, a real learning experience for me.
	Remneb: It take time and many games to understand all parts of that game.



33006)
Variants: "Unrated, Hard time"
Started: 2017.8.23, Ended: 2017.9.10
Participants: Remneb (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) Remneb: Homeworld B2 R1 G3
	Felix: Hey, good luck and have fun :)

3) Felix: Build G1 Felix
	Remneb: Thanks. Have a good game !

4) Remneb: Build G1 Remneb

5) Felix: Trade G1 R1 Felix

6) Remneb: Trade G1 R1 Remneb

7) Felix: Build R2 Felix

8) Remneb: Build G1 Remneb

9) Felix: Trade R2 Y2 Felix

10) Remneb: Trade G1 Y1 Remneb

11) Felix: B R2 Felix

12) Remneb: Build R2 Remneb

13) Felix: Discover R2 Felix G1 Out

14) Remneb: Discover R2 Remneb Y3 Wotan

15) Felix: Build R3 Felix

16) Remneb: Discover R1 Remneb G3 Gort

17) Felix: Build R3 Out

18) Remneb: Build R3 Gort

19) Felix: Build Y1 Felix

20) Remneb: Build G1 Remneb

21) Felix: Move Y1 Felix Out

22) Remneb: Move Y1 Remneb Gort

23) Felix: T R1 B1 Felix

24) Remneb: Trade G1 Y1 Remneb

25) Felix: Move B1 Felix Out

26) Remneb: Build Y2 Remneb

27) Felix: Trade R3 Y3 Out

28) Remneb: Move Y1 Remneb Gort

29) Felix: B B1 Out

30) Remneb: Discover Y1 Gort G1 Orel

31) Felix: M R3 Felix Orel

32) Remneb: Discover Y1 Orel G2 Proton

33) Felix: Discover B1 Out Y3 In

34) Remneb: Build Y2 Gort

35) Felix: Build G1 Felix

36) Remneb: Build G2 Remneb

37) Felix: Build B1 Out

38) Remneb: Sacrifice Y2 Remneb
Move Y1 Proton Out
Move Y1 Gort Out
Catastrophe Out Y
	Felix: So many ships and systems!
	Felix: So many ships and systems!

39) Felix: Trade B1 Y1 Out
	Remneb: Yes...i don't realy know what to do !


40) Remneb: Trade G2 Y2 Remneb

41) Felix: Discover G1 Felix B1 Ent

42) Remneb: Build G2 Remneb

43) Felix: Build G2 Felix

44) Remneb: Move G2 Remneb Gort

45) Felix: Sacrifice G3 Felix
Build G2 Ent
Build G3 Felix
Build B2 In

46) Remneb: Discover G2 Gort Y1 Mud

47) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Felix
Build Y3 Out

48) Remneb: Move R3 Gort Ent

49) Felix: S G2 Ent
B B2 In
B B3 Out

50) Remneb: Attack G1 Ent

51) Felix: Sacrifice Y1 Out
Move R3 Orel Gort

52) Remneb: Sacrifice Y2 Gort
Move G1 Ent Felix
Move G2 Mud Felix
Catastrophe Felix G

53) Felix: Move B3 Out Felix

54) Remneb: Sacrifice Y2 Remneb
Move R3 Ent In
Discover R1 Gort Y1 Pawn

55) Felix: Sacrifice Y3 Out
Move B1 In Remneb
Move B2 In Remneb
Move B2 In Remneb
Catastrophe Remneb Blue

56) Remneb: Move R3 In Remneb

57) Felix: Sacrifice Y2 Felix
Move R3 Gort Remneb
Discover R2 Out Y2 In

	Remneb: Well done. Thanks for the game.
	Felix: Thank you! Great game!


33018)
Variants: "Unrated, Hard time"
Started: 2017.8.24, Ended: 2017.9.9
Participants: Babamots (S), bhorner (N)
Winner: Babamots

1) bhorner: Homeworld B2 R1 G3
	Babamots: Thanks for joining the tournament! Good luck!

2) Babamots: Homeworld Y3 B1 G3
	bhorner: Thanks for organizing, good luck to you too!  First goal is to win more games than the bottom 4.  :)

3) bhorner: B G1 Bhorner

4) Babamots: Build G1 Babamots

5) bhorner: Trade G1 Y1 Bhorner

6) Babamots: Discover G1 Babamots B2 Bajor

7) bhorner: Build G1 Bhorner

8) Babamots: Build G1 Babamots

9) bhorner: B G2 Bhorner

10) Babamots: Sacrifice G3 Babamots
Build G2 Bajor
Build G2 Bajor
Build G3 Babamots

11) bhorner: Discover G2 Bhorner G3 Xmas

12) Babamots: Trade G2 Y2 Bajor

13) bhorner: Discover G1 Bhorner B3 Grover

14) Babamots: Trade G1 R1 Bajor

15) bhorner: Trade G1 R1 Grover

16) Babamots: Move G2 Bajor Grover

17) bhorner: Build Y1 Bhorner

18) Babamots: Sacrifice R1 Bajor
Attack R1N Grover
	bhorner: It seems like it's not going well, it doesn't seem like that should be possible this early!
	bhorner: Do you know openings?  Are you kind of "on book" at this point in the game?  (I don't know what the larger culture of this game is like.  :) )
	Babamots: I don't know that there's anything standard after the first for moves or so while you obviously have to build and diversify. I'm afraid it was a mistake to leave the medium and large greens so available earlier. That's what let me surge ahead. 

19) bhorner: Build G1 Bhorner
	bhorner: Yes, I see.  I thought that you wouldn't be able to go ahead because you would be forced to let me go ahead further... but I was wrong.  :)

20) Babamots: Sacrifice G3 Babamots
Build G1 Grover
Build G2 Babamots
Build G3 Babamots

21) bhorner: Discover G1 Bhorner B3 Berry

22) Babamots: Trade G1 Y1 Grover

23) bhorner: Discover Y1 Bhorner Y3 Big_bird

24) Babamots: Sacrifice G2 Babamots
Build G1 Grover
Build Y2 Grover

25) bhorner: Trade G1 R1 Berry

26) Babamots: Build R2 Grover
	bhorner: ug

27) bhorner: B Y2 Bhorner

28) Babamots: Sacrifice G1 Grover
Build Y3 Bajor

29) bhorner: Build G1 Bhorner

30) Babamots: Move Y3 Bajor Xmas

31) bhorner: Sacrifice G3 Bhorner
Build G1 Xmas
Build G2 Xmas
Build G3 Bhorner
Catastrophe Xmas Green

32) Babamots: Sacrifice G1 Babamots
Build Y3 Bajor

33) bhorner: Move Y1 Bhorner Berry
	bhorner: It was still kind of satisfying.  :)

34) Babamots: Move Y2 Bajor Berry

35) bhorner: Discover R1 Berry G2 Go

36) Babamots: Sacrifice R1 Grover
Attack Y1N Berry

37) bhorner: Discover G1 Bhorner B3 Blue

38) Babamots: Trade Y2 G2 Berry

39) bhorner: Build G1 Blue

40) Babamots: Build Y2 Berry

41) bhorner: Discover Y1 Big_bird B2 Pebble

42) Babamots: Sacrifice G2 Berry
Build G1 Babamots
Build Y3 Bajor

43) bhorner: Move Y1 Pebble Blue

44) Babamots: Move Y3 Bajor Blue

45) bhorner: Move G1 Blue Go

46) Babamots: Sacrifice R2 Grover
Attack Y1N Blue
Attack G1N Blue

47) bhorner: Sacrifice Y2 Bhorner
Move G1 Go Babamots
Move R1 Go Babamots

48) Babamots: Move Y3 Bajor Babamots

49) bhorner: Build R1 Babamots

50) Babamots: Sacrifice G3 Babamots
Build G2 Babamots
Build G2 Babamots
Build G3 Grover
Catastrophe Babamots G

51) bhorner: T R1 G1 Babamots

52) Babamots: Sacrifice Y3 Blue
Move G1 Blue Bhorner
Move G2 Grover Bhorner
Move G3 Grover Bhorner
Catastrophe Bhorner G
	Babamots: Thanks for the game! The ending seemed kind of weird. I think you issued the challenge, so would you like to fill the game-finish form?
	bhorner: Weird?  I was just continually losing ground, so tried something desperate, completely exhausting my resources.  :) It might have worked if you were easily rattled.  I'll fill out the form, never done that yet.  :). Thank you for the game as well.  The beginning stung, another thing I will have to keep in mind!



33005)
Variants: "Unrated, Hard time"
Started: 2017.8.24, Ended: 2017.9.24
Participants: eliscinsky (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) eliscinsky: Homeworld R1 B2 G3
	Felix: Good luck and have fun!

3) Felix: B G1 Felix

4) eliscinsky: Build G1 Eliscinsky

5) Felix: T G1 R1 Felix

6) eliscinsky: Build G1 Eliscinsky

7) Felix: Build R1 Felix

8) eliscinsky: Trade G1 Y1 Eliscinsky

9) Felix: Trade R1 Y1 Felix

10) eliscinsky: Trade G1 R1 Eliscinsky

11) Felix: Build R2 Felix

12) eliscinsky: Discover Y1 Eliscinsky Y3 Proto

13) Felix: Discover R2 Felix B1 Zoan

14) eliscinsky: Build G1 Eliscinsky

15) Felix: S G3 Felix
B R2 Zoan
B R3 Zoan
B R3 Felix

16) eliscinsky: Trade G1 Y1 Eliscinsky

17) Felix: T R3 G3 Felix

18) eliscinsky: Build G1 Eliscinsky

19) Felix: Trade R3 Y3 Zoan

20) eliscinsky: Build Y2 Eliscinsky

21) Felix: Move R2 Zoan Proto

22) eliscinsky: Move Y2 Eliscinsky Proto

23) Felix: Attack Y2 Proto

24) eliscinsky: Move Y1 Eliscinsky Proto
Catastrophe Proto Y

25) Felix: B G1 Felix

26) eliscinsky: Trade G1 Y1 Eliscinsky

27) Felix: Trade G1 B1 Felix

28) eliscinsky: Build G1 Eliscinsky

29) Felix: Build B1 Felix

30) eliscinsky: Build Y1 Eliscinsky

31) Felix: Build Y2 Felix

32) eliscinsky: Build Y2 Eliscinsky

33) Felix: D Y1 Felix G1 Opus

34) eliscinsky: Trade Y2 B2 Eliscinsky

35) Felix: Sacrifice G3 Felix
Build Y2 Opus
Build Y2 Zoan
Build Y3 Felix

36) eliscinsky: Discover Y1 Eliscinsky R3 Alpha

37) Felix: Sacrifice Y1 Opus
Move Y2 Opus Alpha

38) eliscinsky: Move B2 Eliscinsky Alpha

39) Felix: Attack B2 Alpha

40) eliscinsky: Build R2 Eliscinsky

41) Felix: S Y2 Zoan
M R2 Zoan Alpha
M R2 Alpha Eliscinsky
C Eliscinsky Red

42) eliscinsky: Build G1 Eliscinsky

43) Felix: Sacrifice Y2 Alpha
Discover B1 Felix G1 Out
Move B1 Felix Out

44) eliscinsky: Trade G1 R1 Eliscinsky

45) Felix: Sacrifice Y3 Zoan
Move B1 Out Eliscinsky
Move B1 Out Eliscinsky
Move B2 Alpha Eliscinsky
Catastrophe Eliscinsky Blue

	Felix: Good game! Thanks for playing :)
	eliscinsky: Was fun while it lasted.
I'm really learning good stuff.
:)
	Felix: That's the main thing! if you've learned something, then it was a good game!


33025)
Variants: "Unrated, Hard time"
Started: 2017.8.25, Ended: 2017.10.13
Participants: bhorner (S), shoejitsu (N)
Winner: bhorner

1) shoejitsu: Homeworld G3 R1 B3

2) bhorner: Homeworld R2 B1 G3
	shoejitsu: good luck and have fun!

3) shoejitsu: Build B1 Shoejitsu
	bhorner: Thanks, same to you.  :)

4) bhorner: Build G1 Bhorner

5) shoejitsu: Trade B1 G1 Shoejitsu

6) bhorner: Trade G1 Y1 Bhorner

7) shoejitsu: Build B1 Shoejitsu

8) bhorner: Build Y1 Bhorner

9) shoejitsu: Trade B1 Y1 Shoejitsu

10) bhorner: Build Y2 Bhorner

11) shoejitsu: Build G1 Shoejitsu

12) bhorner: Discover Y2 Bhorner G3 Xmas

13) shoejitsu: Discover G1 Shoejitsu B2 Bruno

14) bhorner: Build Y2 Xmas

15) shoejitsu: Build Y2 Shoejitsu

16) bhorner: Build Y3 Bhorner

17) shoejitsu: Move Y1 Shoejitsu Bruno

18) bhorner: Sacrifice Y1 Bhorner
Discover Y3 Bhorner B3 Grover

19) shoejitsu: Build B1 Shoejitsu

20) bhorner: Discover Y2 Xmas R2 Fire

21) shoejitsu: Build G1 Bruno

22) bhorner: Sacrifice G3 Bhorner
Build Y1 Grover
Build Y3 Bhorner
Build Y3 Fire

23) shoejitsu: Build G2 Bruno

24) bhorner: Trade Y1 R1 Bhorner

25) shoejitsu: Build Y1 Shoejitsu

26) bhorner: M Y3 Grover Bruno

27) shoejitsu: Trade G1 R1 Bruno

28) bhorner: Sacrifice R1 Bhorner
Attack R1 Bruno

29) shoejitsu: Move G2 Bruno Grover

30) bhorner: Attack G1 Bruno

31) shoejitsu: Move Y1 Bruno Xmas

32) bhorner: Sacrifice R1 Bruno
Attack Y1 Xmas

33) shoejitsu: Trade B1 R1 Shoejitsu

34) bhorner: M Y1 Grover Bhorner

35) shoejitsu: Discover R1 Shoejitsu G2 Dance

36) bhorner: Trade Y3 G3 Bhorner

37) shoejitsu: Move Y1 Shoejitsu Dance

38) bhorner: Build Y3 Bhorner

39) shoejitsu: Build R1 Dance

40) bhorner: T Y1 B1 Bhorner

41) shoejitsu: Build G1 Grover

42) bhorner: Trade Y3 R3 Bruno

43) shoejitsu: Trade G1 Y1 Grover

44) bhorner: Trade Y3 R3 Bhorner

45) shoejitsu: Sacrifice G2 Grover
Build Y3 Grover
Build R2 Dance

46) bhorner: B R3 Bruno

47) shoejitsu: Move R1 Dance Grover

48) bhorner: Sacrifice Y2 Xmas
Move R3 Bruno Xmas
Move R3 Xmas Dance

49) shoejitsu: Sacrifice Y3 Grover
Move R1 Grover Bhorner
Move R2 Dance Grover
Move R2 Grover Bhorner
Catastrophe Bhorner Red

50) bhorner: S Y2 Fire
M R3 Dance Shoejitsu
M Y3 Fire Shoejitsu

51) shoejitsu: Attack R3 Shoejitsu

52) bhorner: Sacrifice R3 Bruno
Attack R3 Shoejitsu
Attack B3 Shoejitsu
Attack Y2 Shoejitsu

53) shoejitsu: Build G1 Shoejitsu

54) bhorner: T Y2 G2 Shoejitsu
C Shoejitsu Green



33008)
Variants: "Unrated, Hard time"
Started: 2017.8.25, Ended: 2017.9.27
Participants: fogus (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld G2 Y1 B3
	Babamots: Oops. How did we end up with two games? Let's make the other game the one for the tournament. We can play this one later for fun.

2) fogus: Homeworld B2 Y3 G3

3) Babamots: Build B1 Babamots

4) fogus: Build G1 Fogus
	Babamots: I've never tried starting with a blue ship before, so this might be interesting.

5) Babamots: Discover B1 Babamots G3 Betazed

6) fogus: Trade G1 B1 Fogus

7) Babamots: Build B1 Betazed

8) fogus: Build B2 Fogus

9) Babamots: Build B2 Babamots

10) fogus: Discover B1 Fogus Y1 Cribbage

11) Babamots: Build B3 Babamots



33024)
Variants: "Unrated, Hard time"
Started: 2017.8.25, Ended: 2017.8.28
Participants: fogus (S), bhorner (N)
Winner: bhorner

1) bhorner: H R2 B1 G3

	bhorner: Hey fogus, this was for Babamots' tournament...  I hate win from a time out when you never moved, do you want to start another game?


33045)
Variants: "Hard time"
Started: 2017.8.27, Ended: 2017.10.4
Participants: Aristos (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R2 B1 G3
	Aristos: Well met.
	bhorner: Hello there.  :)

2) Aristos: Homeworld G3 B2 Y3

3) bhorner: Build G1 Bhorner

4) Aristos: Build Y1 Aristos

5) bhorner: Trade G1 Y1 Bhorner

6) Aristos: Trade Y1 G1 Aristos

7) bhorner: Build G1 Bhorner

8) Aristos: Build Y1 Aristos

9) bhorner: T G1 B1 Bhorner

10) Aristos: Discover Y1 Aristos G1 Seedling

11) bhorner: Build B1 Bhorner

12) Aristos: Build Y1 Aristos

13) bhorner: B Y2 Bhorner

14) Aristos: Build Y2 Seedling

15) bhorner: Discover B1 Bhorner G3 Xmas

16) Aristos: Move Y2 Seedling Xmas

17) bhorner: Build B2 Bhorner

18) Aristos: Build Y2 Seedling

19) bhorner: Trade Y1 R1 Bhorner

20) Aristos: Trade Y1 R1 Aristos

21) bhorner: T B1 G1 Xmas

22) Aristos: Build Y1 Aristos

23) bhorner: Build G2 Xmas

24) Aristos: Sacrifice Y2 Xmas
Move G1 Aristos Seedling
Move G1 Seedling Xmas
Catastrophe Xmas Green

25) bhorner: Discover B2 Bhorner G3 Xmas

26) Aristos: Build R1 Aristos

27) bhorner: Build R2 Bhorner

28) Aristos: Move R1 Aristos Seedling

29) bhorner: Move R2 Bhorner Xmas

30) Aristos: Build R2 Seedling

31) bhorner: B R3 Xmas

32) Aristos: Build R3 Aristos

33) bhorner: Trade R2 Y2 Xmas

34) Aristos: Build R2 Seedling

35) bhorner: S Y2 Bhorner
M R1 Bhorner Xmas
M R1 Xmas Seedling
C Seedling Red

36) Aristos: Move R3 Aristos Seedling

37) bhorner: B B1 Xmas

38) Aristos: Build R1 Seedling

39) bhorner: Build G1 Bhorner

40) Aristos: Trade Y1 G1 Aristos

41) bhorner: Discover B1 Xmas B2 Way

42) Aristos: Build G2 Aristos

43) bhorner: S G3 Bhorner
B B3 Bhorner
B B3 Xmas
B B3 Way

44) Aristos: Discover R1 Seedling G3 Art
	Aristos: You win I think. I can't see any way out of this box short of a mistake on your part. 
	Aristos: You win I think. I can't see any way out of this box short of a mistake on your part. 

45) bhorner: S Y2 Xmas
D B1 Way Y1 Flare
M B2 Xmas Flare
	bhorner: Weird, I think I have a lot to learn about this game.  I hadn't even considered things from your perspective, and didn't realize if I had you in a box.  I was just trying to gain material advantage.

46) Aristos: Sacrifice Y2 Seedling
Move R3 Seedling Way
Move R3 Way Flare

47) bhorner: Sacrifice B3 Xmas
Trade B1 R1 Flare
Trade B2 R2 Flare
Trade B3 Y3 Bhorner

48) Aristos: Sacrifice G2 Aristos
Build R2 Art
Build R3 Aristos

49) bhorner: Move R2 Flare Way

50) Aristos: Attack R1 Flare
	Aristos: I see a glimmer of hope in my greater maneuverability. You have no yellow to use to run away or to press your attack quickly. Going to be tough, but *maybe* I can pull something together. 
	Aristos: By the way, I tend to use the "move, undo, move" sequence a lot in the end game. I don't have physical pieces to move around, and frequently I use it to visualize alternative boards. I undo pretty quick (just grab a screenshot) so you won't be stuck thinking there's a move for you. If I move and I'm not going to undo, I'll leave you a message. 
	bhorner: Ok, well...  my time starts running when you've moved, so I may not wait for a message to make my move, but I won't be trying to pounce on you in between experiments or anything.  How about if I see that you moved at least a half hour ago, I'll feel free to move?  Also, I didn't know that you could continue undo-ing, I thought I could only do it once, and then after I remade the move, undo was no longer available, interesting that you can do it repeatedly.

51) bhorner: Build B1 Bhorner

52) Aristos: Move R1 Flare Art
	bhorner: Yeah, I just tried it, it appears that I can't undo again.
	Aristos: Only one undo per move, and if I undo, it rolls back your time. That's why I do it fast -- move, grab screenshot, undo. :-)

53) bhorner: M B1 Bhorner Xmas

54) Aristos: Build Y1 Aristos

55) bhorner: Build B2 Xmas

56) Aristos: Sacrifice Y3 Aristos
Move R1 Art Bhorner
Move R1 Art Bhorner
Move R2 Art Bhorner
Catastrophe Bhorner Red

57) bhorner: B B3 Bhorner

58) Aristos: Discover Y1 Seedling B3 Arch

59) bhorner: Build G1 Bhorner

60) Aristos: Build Y2 Aristos

61) bhorner: M G1 Bhorner Aristos

62) Aristos: Attack G1 Aristos

63) bhorner: M G1 Bhorner Aristos
C Aristos Green

64) Aristos: Trade Y1 G1 Aristos

65) bhorner: S Y3 Bhorner
M B1 Bhorner Aristos
M B1 Xmas Aristos
M B2 Xmas Aristos
C Aristos Blue

	bhorner: That was a good game!  At first I thought I had you, but then the yellow situation raised it's head, and I was losing...  A roller coaster!
	Aristos: Well played.


32949)
Variants: "Hard time"
Started: 2017.8.27, Ended: 2017.9.23
Participants: wil (S), Draw5PlayAll (N)
Winner: wil

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) wil: H R2 B2 G3 *

3) Draw5PlayAll: Build G1 Draw5playall

4) wil: B G1 Wil
	Draw5PlayAll: You know this lost for you last time...
	wil: Lol, losing is what benefits learning....I rarely learn anything by winning a game.

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) wil: T G1 Y1 Wil

7) Draw5PlayAll: Build G1 Draw5playall

8) wil: B G1 Wil

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) wil: T G1 B1 Wil

11) Draw5PlayAll: Discover B1 Draw5playall G1 G1

12) wil: D B1 Wil G3 G3

13) Draw5PlayAll: Build G1 Draw5playall

14) wil: B G1 Wil

15) Draw5PlayAll: Build G2 Draw5playall

16) wil: T G1 R1 Wil

17) Draw5PlayAll: Discover G2 Draw5playall Y1 Y1

18) wil: B Y2 Wil

19) Draw5PlayAll: Build Y2 Draw5playall

20) wil: M Y2 Wil G1

21) Draw5PlayAll: Discover Y1 Draw5playall G1 G1b

22) wil: B R1 Wil

23) Draw5PlayAll: Trade G1 R1 Draw5playall

24) wil: S R1 Wil
A B1 G1

25) Draw5PlayAll: Build G1 Draw5playall

26) wil: M R1 Wil G1

27) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Y1
Build G2 Y1
Build G3 Draw5playall

28) wil: B B1 G1

29) Draw5PlayAll: Discover G2 Y1 B3 B3

30) wil: B B2 G3

31) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 G1b
Build Y3 Draw5playall
Build G3 Draw5playall

32) wil: B Y3 G1

33) Draw5PlayAll: Move Y1 G1b B3

34) wil: B R1 G1

35) Draw5PlayAll: Move R1 Draw5playall B3

36) wil: B Y3 Wil

37) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 B3 Wil
Move Y2 G1b Wil
Catastrophe Wil Y

38) wil: Move Y3 G1 Wil

39) Draw5PlayAll: Build Y1 Draw5playall

40) wil: Build B3 G3

41) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G1 B3
Build G3 Draw5playall
Build R2 B3

42) wil: T B3 R3 G3
	wil: almost...almost had me there...

43) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R1 B3 G1

44) wil: B R3 G3
	wil: So feels like I am about to make a critical error.

45) Draw5PlayAll: Attack R1 G1

46) wil: Sacrifice R3 G3
Attack R1 G1
Attack R1 G1
Pass
	wil: Dang little mosquitos

47) Draw5PlayAll: Build R3 B3

48) wil: M R1 G1 Draw5playall

49) Draw5PlayAll: Trade R3 Y3 B3
	Draw5PlayAll: Almost put that in the chat...

50) wil: Sacrifice Y3 Wil
Move R3 G3 Wil
Move R1 G1 Draw5playall
Move R1 G1 Draw5playall
Catastrophe Draw5playall R
	wil: I do that all the time..and no delete!!

51) Draw5PlayAll: Sacrifice Y3 B3
Move R2 B3 Wil
Move G2 Y1 Wil
Move G1 B3 Wil

52) wil: T R3 Y3 Wil

53) Draw5PlayAll: Trade G2 Y2 Wil
	Draw5PlayAll: Throwing all but the kitchen sink at you.

54) wil: S Y3 Wil
M B1 G3 Draw5playall
M B1 G1 Draw5playall
M B1 G1 Draw5playall
C Draw5playall B

	wil: Welcome visitors...
	Draw5PlayAll: I thought you had bluebirded me. Should have blown your red instead


32973)
Variants: "Unrated"
Started: 2017.8.27, Ended: 2017.9.9
Participants: willeth (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld Y2 G3 Y3 *

	Draw5PlayAll: All right, I have chosen to start with no blue as a handicap. Usually I go for B3+R1 stars and a G3 ship.




33065)
Variants: "Hard time"
Started: 2017.8.28, Ended: 2017.9.1
Participants: Felix (S), dlwillson (N)
Winner: Felix

1) dlwillson: H Y3 B2 G3
	dlwillson: Well hello! Long time, no see! :-)

2) Felix: Homeworld R1 B3 G3
	Felix: Hahaha, that timing worked out well. Congrats on hitting the top again! You've been playing really well lately; but I am to change that ;) Have fun.
	Felix: aim to*

3) dlwillson: B G1 Dlwillson
	Felix: You took my fortress... sad day! I'm so used to playing fortress now, I'm not always sure what to do with myself as a Goldilocks. I briefly debated playing a 1-1... but I don't want to be that obnoxious in a ladder game :P
	dlwillson: I wouldn't have minded. It's just a game. The greatest game in the world! Of Off all time! But still, just a game. :-)
	dlwillson: s/Of Off/Of/

4) Felix: Build G1 Felix

5) dlwillson: Trade G1 R1 Dlwillson
	Felix: Good to know for next time! And agreed. The best game in the UNIVERSE! Wishing it would catch on more.

6) Felix: Trade G1 R1 Felix

7) dlwillson: Build R2 Dlwillson

8) Felix: Build R2 Felix
	wil: (apologizing in advance for the intrusion)  
In plotting how to make homeworlds as ubiquitous as chess... Can we come up with a better way than kidnapping the top chess players of each metropolitan area and locking them in a room with a bunch of pyramids?
	dlwillson: I like that idea! :-)

9) dlwillson: B R2 Dlwillson
	Felix: I'm in favor ;)
	dlwillson: More seriously, a live tournament with an entry fee and prizes would be fun, and I think it might make people curious. I also keep thinking that it's time for Looney Labs to make a Homeworlds box set.

10) Felix: Trade R2 Y2 Felix

11) dlwillson: Discover R1 Dlwillson Y1 Golden
	dlwillson: I just checked and tight-timings are possible in SDG. I put up a challenge of 1h/1h/1 as a test. It seems to have worked. I'm thinking that it should be 1/1h/1, though.

12) Felix: Discover R1 Felix G2 Forstep
	Felix: Interesting! I wonder if you could do something even tighter in theory? 5 minutes each side, with a maximum of 10? If you had your opponent on a skype or phone call, it could move very quickly.

13) dlwillson: Discover R1 Golden B2 Sky

14) Felix: Build Y1 Felix

15) dlwillson: D R2 Dlwillson B1 Sea
	dlwillson: We should try it. Try m for minute, and challenge me.

16) Felix: Move Y1 Felix Forstep
	Felix: Done. I'm at work though, so I don't think I'll be able to play it out.
	Felix: No good. Looks like it doesn't take minutes, only hours, per this documentation: http://superdupergames.wikidot.com/howto:clocks
	dlwillson: Oh! It takes 0 as an increment!

17) dlwillson: Build G1 Dlwillson
	Felix: So the best you could do would be to set one hour for the game, and have a 0 increment?

18) Felix: Sacrifice G3 Felix
Build R2 Forstep
Build R3 Forstep
Build Y1 Forstep

19) dlwillson: Sacrifice G3 Dlwillson
Build R3 Sea
Build R3 Dlwillson
Build G1 Dlwillson
	dlwillson: Yes. That would be perfect, I think.
	Felix: We'll have to schedule one sometime! My schedule is pretty packed now though. Hard to set aside a solid hour for game time with a puppy, a baby, and two jobs :P

20) Felix: Move R3 Forstep Felix

21) dlwillson: Move G1 Dlwillson Sea
	dlwillson: Your burst was excellently surprising!
	dlwillson: Let's try that fast game. If it works, we can recommend it to Bamabots for the next tournament.

22) Felix: D R2 Forstep Y1 Ichor
	Felix: It was probably a dumb move, in retrospect. But it's nice to be unpredictable :) And yes, I'll let you know when we can try that.

23) dlwillson: T R2 Y2 Sea

24) Felix: T R3 G3 Felix

25) dlwillson: T R3 G3 Dlwillson

26) Felix: D Y1 Forstep B1 Inglass

27) dlwillson: M R3 Sea Forstep

28) Felix: Sacrifice G3 Felix
Build Y2 Inglass
Build Y3 Felix
Build Y3 Felix

29) dlwillson: S R2 Dlwillson
A R1 Forstep
A Y1 Forstep

30) Felix: Trade Y2 G2 Felix
	dlwillson: Stop surprising me!

31) dlwillson: B Y2 Forstep
	Felix: No :)

32) Felix: Discover Y3 Felix G2 Doge

33) dlwillson: Move R3 Forstep Sea

34) Felix: Trade Y1 G1 Inglass

35) dlwillson: T G3 R3 Dlwillson

36) Felix: Build G3 Felix

37) dlwillson: B G3 Sea

38) Felix: S G3 Felix
B G3 Felix
B G3 Inglass
B Y1 Inglass

39) dlwillson: S G3 Sea
B R2 Dlwillson
B R2 Sea
B R3 Forstep

40) Felix: Trade G1 B1 Inglass

41) dlwillson: T R3 G3 Sea

42) Felix: Sacrifice G2 Felix
Build R3 Ichor
Build B2 Inglass

43) dlwillson: T R1 G1 Sky

44) Felix: Trade Y1 R1 Inglass

45) dlwillson: Sacrifice G3 Sea
Build G2 Sea
Build G3 Sky
Build Y1 Sea
	dlwillson: You're playing really well this game. I think my time at the top of the ladder may be shorter than I'd intended.

46) Felix: Sacrifice Y3 Doge
Move R1 Inglass Dlwillson
Move R2 Ichor Dlwillson
Move G3 Inglass Dlwillson
Catastrophe Dlwillson Red
	Felix: Thank you! I've had a losing streak for a while, so I hope I can break that. And I know the feeling... The last time I was on top, I played very poorly and lost my first game. Not that you're playing poorly! I just hope I'm playing better ;)

	Felix: There. That's slightly smarter, I think.
	dlwillson: "Darn! That's the end!" https://www.youtube.com/watch?v=MT6cxlW6ym8
	dlwillson: Good game! Excellently played!
	Felix: Thank you! Likewise. I'm sure my reign of terror will be brought to an end by you or Wil before long :P
	dlwillson: Ah, absolutely! >;-)


32943)
Started: 2017.8.30, Ended: 2017.10.13
Participants: ts52 (S), redsang (N)
Winner: ts52

1) redsang: Homeworld B2 R1 G3

2) ts52: Homeworld Y3 B1 G3

3) redsang: Build G1 Redsang
	ts52: Have a good game!

4) ts52: B G1 Ts52

5) redsang: Trade G1 Y1 Redsang

6) ts52: T G1 R1 Ts52

7) redsang: Build G1 Redsang

8) ts52: Build R1 Ts52

9) redsang: Trade G1 B1 Redsang

10) ts52: Build R2 Ts52

11) redsang: Discover B1 Redsang Y3 Portobello

12) ts52: Discover R1 Ts52 G2 Kermit

13) redsang: Build G1 Redsang

14) ts52: Build G1 Ts52

15) redsang: Build Y1 Redsang

16) ts52: Trade R2 Y2 Ts52

17) redsang: Move Y1 Redsang Portobello

18) ts52: Build R2 Kermit

19) redsang: Discover Y1 Portobello R2 Fili
	redsang: Sorry for the delay.

20) ts52: Sacrifice G3 Ts52
Build R2 Kermit
Build R3 Ts52
Build R3 Ts52

21) redsang: Build Y1 Redsang

22) ts52: Move Y2 Ts52 Kermit

23) redsang: Trade Y1 B1 Redsang

24) ts52: Trade R3 B3 Ts52

25) redsang: Discover B1 Redsang R3 Ali

26) ts52: Build R3 Ts52

27) redsang: Build G1 Redsang

28) ts52: Move R2 Kermit Ali

29) redsang: Build G2 Redsang

30) ts52: Catastrophe Redsang Green
Sacrifice Y2 Kermit
Move R2 Ali Redsang
Move R2 Kermit Ali

31) redsang: Trade Y1 G1 Redsang

32) ts52: Attack G1 Redsang
	ts52: Thanks for the game!
	redsang: Thank you.



32965)
Variants: "Unrated"
Started: 2017.8.30, Ended: 2017.8.31
Participants: wil (S), twermund (N)
Winner: wil

1) twermund: Homeworld B3 G1 Y3

2) wil: H B3 Y2 G3

3) twermund: Discover Y3 Twermund G2 Ice
	twermund: oh. woops
	wil: Ya abandoned your homeworld?
	twermund: Yup, just a rookie loss :)
	wil: Lol..live n learn!



33082)
Variants: "Unrated, Hard time"
Started: 2017.8.31, Ended: 2017.9.25
Participants: Felix (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld B2 R1 G3

2) Felix: Homeworld B1 Y3 G3
	bhorner: Have fun.  :)
	Felix: Thanks, you too! :)

3) bhorner: B G1 Bhorner

4) Felix: Build G1 Felix

5) bhorner: T G1 Y1 Bhorner

6) Felix: Trade G1 B1 Felix

7) bhorner: Build Y1 Bhorner

8) Felix: Build B1 Felix

9) bhorner: Build Y1 Bhorner

10) Felix: Discover B1 Felix G2 Out
	bhorner: What an interesting race.  I hope I've blunted your advantage!

11) bhorner: Discover Y1 Bhorner G3 Xmas
	Felix: We shall see! :)

12) Felix: Sacrifice G3 Felix
Build B2 Out
Build B2 Out
Build B3 Felix

13) bhorner: Build Y2 Bhorner

14) Felix: Trade B3 G3 Felix
	bhorner: I guess not...  That seems like a very risky move you made, but I can see how to make you pay for it, so maybe not.

15) bhorner: Build Y2 Xmas
	Felix: As long as I control blue, it's not too risky :)

16) Felix: T B2 Y2 Out

17) bhorner: Trade Y2 B2 Bhorner

18) Felix: B B3 Felix

19) bhorner: Move B2 Bhorner Xmas

20) Felix: Trade B1 R1 Felix

21) bhorner: Discover Y1 Bhorner R3 Turmoil

22) Felix: Move B2 Out Turmoil

23) bhorner: Sacrifice G3 Bhorner
Build Y2 Xmas
Build Y3 Turmoil
Build Y3 Bhorner

24) Felix: Attack Y1 Turmoil

25) bhorner: Trade Y2 R2 Xmas

26) Felix: M Y1 Turmoil Bhorner
	Felix: Good move!
	bhorner: Whew, when I saw that there was a chat message, I thought you might be apologizing for killing me or something.  :)

27) bhorner: Attack Y1 Bhorner

28) Felix: Build Y2 Out

29) bhorner: T Y1 G1 Bhorner

30) Felix: Discover Y2 Out G3 In

31) bhorner: A B2 Turmoil

32) Felix: Build Y1 In

33) bhorner: Move Y1 Bhorner In

34) Felix: Sacrifice Y2 In
Move B3 Felix Out
Move B3 Out Xmas

35) bhorner: D R2 Xmas G2 Run

36) Felix: Build Y2 Out

37) bhorner: Move B2 Xmas Out

38) Felix: S R1 Felix
A B2 Out

39) bhorner: Sacrifice Y2 Xmas
Move Y3 Turmoil Out
Move Y3 Out Felix
	Felix: Good move, by the way! When you moved your y1 to In, that is.

40) Felix: Sacrifice Y2 Out
Move Y2 Out Felix
Move B2 Out Felix

41) bhorner: S R2 Run
A G3 Felix
A B2 Felix

42) Felix: Trade Y2 R2 Felix

43) bhorner: T Y3 R3 Bhorner
	Felix: I say, very well done! I normally play with a red in my home star, so I'm not used to this sort of attack happening and let my guard down. Way to capitalize :)
	bhorner: Ok.  I thought it must just have been a slip.  I've joined a very small group in winning my first round game against you.  :). Thanks!
	bhorner: Well...  Assuming it happens.

44) Felix: Attack B2 Felix
	bhorner: The yellow overpopulation made me nervous, but I think I'm good.

45) bhorner: S R3 Bhorner
A B2 Felix
A R2 Felix
Pass
	Felix: I think you are! Very well played.

	Felix: Good game and well done!
	bhorner: Thanks.  :). I hope I get to face to again!  Good game to you too!


33085)
Variants: "Unrated, Hard time"
Started: 2017.9.1, Ended: 2017.9.11
Participants: mneme (S), Felix (N)
Winner: mneme

1) Felix: Homeworld B2 R3 G3

2) mneme: Homeworld R1 G3 B3
	Felix: Hello! Good luck and have fun :)

3) Felix: Build G1 Felix
	mneme: Hey -- you too!

4) mneme: Build B1 Mneme

5) Felix: Trade G1 R1 Felix

6) mneme: Trade B1 R1 Mneme

7) Felix: Build R2 Felix

8) mneme: Build R2 Mneme

9) Felix: T R2 Y2 Felix

10) mneme: Trade R2 Y2 Mneme

11) Felix: Build R2 Felix

12) mneme: Build R2 Mneme

13) Felix: Trade R2 Y2 Felix

14) mneme: Discover R2 Mneme G2 Cleo

15) Felix: Discover R1 Felix G1 Parsnip

16) mneme: Build B1 Mneme

17) Felix: Move Y2 Felix Parsnip

18) mneme: Build B1 Mneme

19) Felix: Build R2 Parsnip

20) mneme: Move B1 Mneme Cleo

21) Felix: Discover R2 Parsnip G2 Cuke

22) mneme: Build B1 Mneme

23) Felix: Build Y1 Parsnip

24) mneme: Trade B3 G3 Mneme

25) Felix: Build R2 Cuke

26) mneme: Discover R1 Mneme B2 Refuge

27) Felix: Build R3 Parsnip

28) mneme: Sacrifice G3 Mneme
Build R3 Cleo
Build B2 Cleo
Build B3 Mneme

29) Felix: Move R3 Parsnip Refuge

30) mneme: Sacrifice B1 Cleo
Trade R1 B1 Refuge

31) Felix: Attack B1 Refuge

32) mneme: Sacrifice Y2 Mneme
Move B1 Mneme Refuge
Move B1 Mneme Refuge
Catastrophe Refuge B

33) Felix: B G1 Felix

34) mneme: Trade R2 Y2 Cleo

35) Felix: Trade G1 B1 Felix

36) mneme: Build B1 Mneme

37) Felix: Move B1 Felix Parsnip

38) mneme: Trade B3 Y3 Mneme

39) Felix: Build B1 Parsnip

40) mneme: Build B2 Cleo

41) Felix: Move B1 Parsnip Cuke

42) mneme: Trade B2 G2 Cleo

43) Felix: M Y1 Parsnip Cuke

44) mneme: Build G1 Cleo

45) Felix: Build G1 Felix

46) mneme: Discover G2 Cleo Y3 Euterpe

47) Felix: Sacrifice G3 Felix
Build Y1 Cuke
Build Y1 Cuke
Build Y3 Felix

48) mneme: Build G3 Euterpe

49) Felix: Build G3 Felix

50) mneme: Discover G2 Euterpe R2 Erato

51) Felix: Move Y1 Cuke Mneme

52) mneme: Sacrifice G3 Euterpe
Build Y3 Cleo
Build G3 Erato
Build B2 Mneme

53) Felix: Sacrifice Y2 Felix
Move Y1 Cuke Mneme
Move Y1 Cuke Mneme
Catastrophe Mneme Yellow

54) mneme: Trade B2 Y2 Mneme

55) Felix: S Y3 Felix
M G3 Felix Parsnip
M G3 Parsnip Cuke
M G3 Cuke Mneme

56) mneme: Sacrifice Y3 Cleo
Move G2 Erato Mneme
Move G3 Erato Parsnip
Move G3 Parsnip Felix

57) Felix: Sacrifice R2 Cuke
Attack Y2 Mneme
Attack G2 Mneme

58) mneme: Attack G1 Felix

	Felix: Yeah, I knew that attack would backfire, but it just seemed too fun to not try it :) Good game and way to capitalize on my blunder correctly!
	mneme: Good game and -very- challenging opposition until that blunder!
	Felix: Very good game! To be honest, I underestimated you a bit, since I've played very few games against you. I shan't do so again :)
	Felix: Underestimate you, that is.
	mneme: Heh.  I -do- have a championship; it's probably not that wise, although like anyone I make mistakes.  And excellent; it's good to be taken seriously.  
	mneme: http://www.wunderland.com/LooneyLabs/Origins/2011/gallery.html
	Felix: Nice! When was this championship? I didn't realize there had been real ones already. Were there a lot of participants? I thought it was a bit too tricky to get enough Homeworlds players in the same room :P
	mneme: This was in 2011 -- back when Looney Labs was still running "The Big Experiment" events at Origins.  I don't remember how many players we had for the Binary Homeworlds tournament--not that many, compared to, say, the fluxx tournament, but at least 8 or 10 (maybe more; this was a while ago).
	mneme: On the other hand, one of the participants was Andy Looney himself (there were some other strong players, but the finals was me and Andy).  

Fortunately or unfortunately, the player who scares me -most- isn't in this tournament (that being TwoShort; I've only beaten him once!)
	Felix: Ah, cool! Endo is another player I have trouble with who doesn't seem to be active anymore. Shame. I'd like to keep cutting my teeth on the better players!
	mneme: It's definately (for all of us) the way to improve!  Sometimes stressful, though!
	mneme: I also, BTW, ended up being one of John Cooper's two advisors in an exhibition match at Looneycon 1 (Will, IIRC, was one of Andy's advisors on the other side).  Pretty fun game, though a touch short:

http://looneylabs.ning.com/profiles/blog/show?id=6320919%3ABlogPost%3A110703&commentId=6320919%3AComment%3A110521&xg_source=activity

I always forget the ning forurms exist, alas.
	Felix: Very interesting! Thanks for the link. I enjoyed following along with the game :)
	Draw5PlayAll: Do the other two have SDG accounts?
	mneme: Wil's SDG account is Wil; he's in the tournament and solid.  Andy does, in fact, have a SDG account, though I don't remember the last time I saw him play here.  
	Draw5PlayAll: Wait, so it was mneme + JohnCooper + ?? vs wil + Andy + ??.
Do the two ??s have SDG accounts?
	mneme: Ah, that was the version of the question I was dreading; I'm not sure.  You can ask Joshua D on ning, since I know you've responded to him there; I don't think I'm accquainted (other than that game) with the third player on Andy's side.
	mneme: And functionally, of course, it was Andy vs John -- the other four players were strategic advisors/helpers, but Andy and Coop made the final call if there needed to be one.


33086)
Variants: "Unrated, Hard time"
Started: 2017.9.1, Ended: 2017.9.6
Participants: mneme (S), Babamots (N)
Winner: mneme

1) Babamots: Homeworld B2 Y1 G3
	Babamots: How's it going! I've filled the "start game" form, so we're official. Good luck!

2) mneme: Homeworld G3 B1 Y3
	mneme: Great -- have fun and do your best!

3) Babamots: Build G1 Babamots

4) mneme: Build Y1 Mneme

5) Babamots: Trade G1 Y1 Babamots

6) mneme: Build Y2 Mneme

7) Babamots: Discover Y1 Babamots G3 Gaia

8) mneme: Discover Y1 Mneme G2 Flavor

9) Babamots: Build Y2 Gaia

10) mneme: Trade Y2 G2 Mneme

11) Babamots: Build G1 Babamots

12) mneme: Build Y2 Flavor

13) Babamots: Trade G1 R1 Babamots

14) mneme: Discover Y1 Flavor B3 Touch

15) Babamots: Move Y2 Gaia Flavor

16) mneme: Discover Y2 Flavor Y3 Waystation

17) Babamots: Move Y2 Flavor Mneme

18) mneme: Sacrifice G2 Mneme
Build Y2 Waystation
Build Y3 Touch

19) Babamots: Discover Y1 Gaia B2 Pakled
	Babamots: Oh yeah. Well, maybe that will teach me not to play while I'm distracted :-P
	mneme: :)  

20) mneme: Trade Y1 G1 Touch

21) Babamots: Move Y1 Pakled Waystation
Catastrophe Waystation Y

22) mneme: Trade Y3 R3 Mneme

23) Babamots: Discover Y2 Mneme G2 Vulcan

24) mneme: Build Y1 Touch

25) Babamots: Build G1 Babamots

26) mneme: Build G1 Touch

27) Babamots: Move G1 Babamots Touch

28) mneme: Discover G1 Touch Y2 Scent

29) Babamots: Sacrifice R1 Babamots
Attack Y1S Touch

30) mneme: Build R1 Mneme

31) Babamots: Trade G3 R3 Babamots

32) mneme: Sacrifice R1 Mneme
Attack Y1 Touch

33) Babamots: Discover Y2 Vulcan B3 Romulus

34) mneme: Trade Y3 R3 Touch
	mneme: s r1 mneme 
a y1 touch

35) Babamots: Trade Y2 G2 Romulus
	mneme: oops.

36) mneme: Attack G1 Touch

37) Babamots: Build G2 Romulus

38) mneme: Build G2 Touch

39) Babamots: Trade G2 Y2 Romulus

40) mneme: Trade G2 Y2 Touch

41) Babamots: Build G2 Romulus

42) mneme: Build G2 Touch

43) Babamots: Discover G2 Romulus B2 Kesprytt

44) mneme: Sacrifice G2 Touch
Build R1 Touch
Build R1 Touch

	Babamots: I don't think we need to play the rest of this out, do you? Would you like the satisfaction of crushing me, or do you mind if I resign?
	Draw5PlayAll: Kesprytt??
	Draw5PlayAll: Pakled? Gaia? Heck, is Babamots a Trek reference?
	Babamots: Babamots is not a Trek reference, but all my system names are.
	mneme: I'm fine with a resignation here; it's not quite a 2 turn kill, but best case, you're left without any larges or red.
	Babamots: That's one win for you! No wins for me in this tournament yet. Too many mistakes.
	mneme: Good luck!  Worst case, it will be a learning experience!
	mneme: Thanks for the game!
	Babamots: I think I can do better from here out. Good luck on your other games!
	mneme: You too!


33089)
Variants: "Unrated, Hard time"
Started: 2017.9.1, Ended: 2017.9.10
Participants: Remneb (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3
	mneme: Hey there -- I'll fill out the form; have fun!

2) Remneb: Homeworld B3 R2 G3
	Remneb: Have a good game too !

3) mneme: Build G1 Mneme

4) Remneb: Build G1 Remneb

5) mneme: Trade G1 R1 Mneme

6) Remneb: Trade G1 R1 Remneb

7) mneme: Build R2 Mneme

8) Remneb: Build G1 Remneb

9) mneme: Trade R2 Y2 Mneme

10) Remneb: Trade G1 Y1 Remneb

11) mneme: Build R2 Mneme

12) Remneb: Discover R1 Remneb Y1 Lod

13) mneme: Discover R2 Mneme Y3 Alpha

14) Remneb: Build G1 Remneb

15) mneme: Build G1 Mneme

16) Remneb: Sacrifice G1 Remneb
Build R2 Lod

17) mneme: Build R3 Mneme

18) Remneb: Discover R1 Lod Y3 Thor

19) mneme: Trade R1 B1 Mneme

20) Remneb: Build G1 Remneb

21) mneme: Discover R3 Mneme B3 Beta

22) Remneb: Discover G1 Remneb Y1 Rob

23) mneme: Build Y2 Mneme

24) Remneb: Build Y2 Remneb

25) mneme: Build Y3 Mneme

26) Remneb: Discover Y1 Remneb G1 Rem
	mneme: Letting me grow a y3 for free was a blunder, but since it's a tournament game, I'll take it.  

27) mneme: Move Y2 Mneme Beta
	Remneb: I was aware of it.
	mneme: I assumed you were, but thanks.

28) Remneb: Build G2 Remneb

29) mneme: Move G3 Mneme Thor

30) Remneb: Discover R1 Thor B1 Dove

31) mneme: Build G2 Thor

32) Remneb: Move G2 Remneb Rob

33) mneme: Sacrifice G3 Thor
Build G2 Mneme
Build G3 Mneme
Build G3 Thor

34) Remneb: Sacrifice Y2 Remneb
Move G1 Rob Beta
Move G1 Beta Mneme
Catastrophe Mneme G

35) mneme: Move G3 Thor Dove

36) Remneb: Build Y2 Rem

37) mneme: Sacrifice R2 Alpha
Attack R1 Dove
Pass

38) Remneb: Move Y2 Rem Remneb

39) mneme: Trade Y2 G2 Mneme

40) Remneb: Build G1 Remneb

41) mneme: Sacrifice G2 Mneme
Build Y2 Mneme
Build Y3 Beta

	Remneb: I try to do the same and the program told me that the rule was to choose a small yellow firts !
	mneme: If you sacrifice your g2 at Rob, the pieces ather (y1, g2) go back to the bank before you start doing grow actions--so you end up not being able to reach the y3.  This was why I set up the grow in the first place--with your only g2 on a lone y1 system, you didn't have time to reach it first.

I'd try to play out some endgames were I you, rather than resigning when it seems hopeless. The endgame is probably the toughest part of the game, and many, many games turn on an endgame being bungled resulting in a game turning around.

Obviously, if I had an unblockable lethal, it's different, but with your having r2s, that wasn't going to happen quickly unless I could trigger a catastrophe in your home system.


33091)
Variants: "Hard time"
Started: 2017.9.1, Ended: 2017.9.7
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H B2 R1 G3

2) Felix: Homeworld Y2 B3 G3
	wil: Good luck

3) wil: B G1 Wil

4) Felix: Build G1 Felix

5) wil: T G1 Y1 Wil
	Felix: You as well!

6) Felix: T G1 R1 Felix

7) wil: B Y1 Wil

8) Felix: Build R1 Felix

9) wil: D Y1 Wil B3 B3
	Felix: A race it is :)
	wil: Now that was you that played my fav obstinate move!

10) Felix: Discover R1 Felix B1 Y3

11) wil: B Y1 Wil
	Felix: That was a deceptively difficult decision!

12) Felix: Build R2 Felix
	wil: This'll be fun if I can't attack and you can't move

13) wil: D Y1 Wil Y3 Why3
	Felix: I'd rather be able to move...

14) Felix: Sacrifice G3 Felix
Build R2 Y3
Build R2 Felix
Build R3 Y3

15) wil: S G3 Wil
B Y2 Why3
B Y2 B3
B Y3 Wil

16) Felix: Trade R3 Y3 Y3

17) wil: T Y1 G1 B3

18) Felix: Move R2 Y3 B3

19) wil: T Y3 G3 Wil

20) Felix: Sacrifice R2 Felix
Attack Y2 B3
Attack G1 B3

21) wil: B G1 Wil

22) Felix: Build G1 B3
	wil: I've blown this game.... Can you please make a horrendously bad move for me to capitalize on?

23) wil: D G1 Wil B3 Bee3
	Felix: No promises ;)
	wil: Not asking for promises...just do what you can.
	wil: Not asking for promises...just do what you can.

24) Felix: Move R1 Y3 Bee3

25) wil: B G2 Bee3

26) Felix: Attack G1 Bee3

27) wil: T G2 R2 Bee3

28) Felix: Build R3 Bee3

29) wil: B G2 Wil

30) Felix: Sacrifice Y3 Y3
Move G1 B3 Wil
Move G1 Bee3 Wil
Move R3 Bee3 Wil
Catastrophe Wil Green

31) wil: S Y2 Why3
M R2 Bee3 Wil
M Y1 Why3 Wil

32) Felix: Sacrifice R2 B3
Attack R2 Wil
Attack Y1 Wil
	wil: Somewhere about now would be great for.that catastrophic mistake.

	Felix: Oops. I don't know if that was it. Sorry, I tried ;)
	wil: It wouldnt let me do anything silly... Good gsme.


33090)
Variants: "Unrated, Hard time"
Started: 2017.9.1, Ended: 2017.9.13
Participants: ts52 (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) ts52: H Y3 B1 G3

3) mneme: Build G1 Mneme

4) ts52: Build G1 Ts52

5) mneme: Trade G1 R1 Mneme
	ts52: Have a good game! Is this a tournament game?

6) ts52: Trade G1 R1 Ts52
	mneme: You too--and yes!

7) mneme: Build R2 Mneme

8) ts52: Build R2 Ts52

9) mneme: Trade R2 Y2 Mneme

10) ts52: Build G1 Ts52

11) mneme: Build R2 Mneme

12) ts52: Discover R2 Ts52 G2 Kermit

13) mneme: Discover R1 Mneme Y3 Cleo

14) ts52: Build G1 Ts52

15) mneme: Build Y1 Mneme

16) ts52: Trade G1 B1 Ts52

17) mneme: Discover Y1 Mneme R3 Euterpe

18) ts52: Build B1 Ts52
	mneme: Incidentally, I'm not at all sure what Aaron's doing with the sorting on this site.

Homeworlds sorting is -simple-.  Top row is always player 0.  Bottom row is player 1.  2nd row is stuff that's (until things start getting blown up) 1 away from player 1; 4th row is stuff that's 1 away from player 2.  And then anything that deviates from this (or pretty much anything, in a small universe situation) goes further in the middle than that, or ideally offsides.

I'm not really sure what the logic here is, but at least to me it's exactly opposite from what I described -- cleo, then euterpe, then kermit.

19) mneme: Sacrifice G3 Mneme
Build R2 Cleo
Build R3 Cleo
Build R3 Mneme
	ts52: The sorting works the way I expect it to for a little while, but eventually starts to break down. But at the start it always shows your homeworld on the bottom row. Adjacent systems to your homeworld one row up. Your opponents homeworld at the top (the enemies gate is always up?) and adjacent systems to their homeworld one row down. 
	mneme: That's what I'd expect, yes.  But even with four worlds, I see your homeworld, then cleo and euterpe, then kermit, and finally my homeworld.  It may depend on what side you're sitting.

20) ts52: Move B1 Ts52 Kermit

21) mneme: Trade R2 B2 Mneme

22) ts52: Build R2 Kermit

23) mneme: Sacrifice B2 Mneme
Trade R2 B2 Cleo
Trade R3 G3 Cleo

24) ts52: Trade G1 Y1 Ts52

25) mneme: Build G1 Cleo

26) ts52: Move Y1 Ts52 Kermit

27) mneme: Trade B2 G2 Cleo

28) ts52: Build B2 Kermit

29) mneme: Sacrifice G2 Cleo
Build R2 Mneme
Build R3 Cleo

30) ts52: Trade B2 Y2 Kermit

31) mneme: Trade R2 G2 Mneme

32) ts52: D R2 Kermit Y3 Bigbird

33) mneme: Move G3 Cleo Kermit

34) ts52: Sacrifice Y2 Kermit
Move B1 Kermit Bigbird
Move R2 Kermit Bigbird

35) mneme: Move R3 Mneme Bigbird

36) ts52: Build G1 Ts52

37) mneme: Sacrifice R3 Cleo
Attack R2 Bigbird
Attack R2 Bigbird
Attack Y1 Kermit

38) ts52: Discover R1 Ts52 Y2 Zoe

39) mneme: Attack B1 Bigbird

40) ts52: Move G1 Ts52 Zoe

41) mneme: Move G3 Kermit Ts52

42) ts52: Sacrifice R1 Zoe
Attack G3 Ts52

43) mneme: Sacrifice Y2 Mneme
Move R3 Bigbird Kermit
Move R3 Kermit Ts52
	mneme: Good game.

44) ts52: Trade G3 R3 Ts52

45) mneme: Sacrifice R2 Bigbird
Attack R3 Ts52
Attack G3 Ts52
	mneme: nah, what the hell, it's the most fun endgame.

46) ts52: Sacrifice G1 Zoe
Build B2 Ts52
	ts52: Good game. Well played.

47) mneme: Trade R3 B3 Ts52
Catastrophe Ts52 B
	mneme: You too!

I'd have probably done the catastrophe -- though of course the squeeze is that you can't do both.

	mneme: True.  On the other hand, if you're going to go out, might as well do it with a bang.

I'm doing ok.  Enough that I'm resenting having to do it again inthe double elimination game--it's likely that the only game I lose (if any) is against wil.


33094)
Variants: "Unrated, Hard time"
Started: 2017.9.2, Ended: 2017.9.14
Participants: shoejitsu (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y2 B1 G3
	Babamots: I'm filling out the game start form. Good luck!

2) shoejitsu: Homeworld B3 R1 G3
	shoejitsu: have fun!

3) Babamots: Build G1 Babamots

4) shoejitsu: Build G1 Shoejitsu

5) Babamots: Discover G1 Babamots Y3 Betazed

6) shoejitsu: Trade G1 B1 Shoejitsu

7) Babamots: Build G1 Babamots

8) shoejitsu: Build G1 Shoejitsu

9) Babamots: Build G2 Betazed

10) shoejitsu: Build G2 Shoejitsu

11) Babamots: Discover G1 Betazed Y2 Galorndon

12) shoejitsu: Trade G1 Y1 Shoejitsu

13) Babamots: Sacrifice G3 Babamots
Build G1 Betazed
Build G2 Galorndon
Build G3 Babamots

14) shoejitsu: Move G2 Shoejitsu Galorndon

15) Babamots: Sacrifice G2 Betazed
Build G2 Galorndon
Build G3 Betazed
Catastrophe Galorndon G

16) shoejitsu: Discover B1 Shoejitsu G2 Xed

17) Babamots: Discover G3 Betazed B2 Ferenginar

18) shoejitsu: Build B1 Xed

19) Babamots: Build G1 Ferenginar

20) shoejitsu: Build B2 Xed

21) Babamots: Trade G3 R3 Ferenginar

22) shoejitsu: Build Y1 Shoejitsu

23) Babamots: Build G2 Betazed

24) shoejitsu: Trade B2 G2 Xed

25) Babamots: Sacrifice G3 Babamots
Build G3 Babamots
Build G3 Ferenginar
Build R1 Ferenginar

26) shoejitsu: Move Y1 Shoejitsu Xed

27) Babamots: Move G1 Betazed Xed

28) shoejitsu: Trade G2 R2 Xed

29) Babamots: Sacrifice G2 Betazed
Build G2 Xed
Build G2 Xed
Catastrophe Xed G

30) shoejitsu: Trade G3 R3 Shoejitsu

31) Babamots: Build G1 Ferenginar

	shoejitsu: ugh... well this is a mess
	shoejitsu: good game
	Babamots: Sorry it was a rough one for you :(.
I'll fill out the game-finish form.
Thanks for playing, and good luck on the rest of games! 
	shoejitsu: good luck to you!


33079)
Started: 2017.9.2, Ended: 2017.12.5
Participants: Draw5PlayAll (S), ts52 (N)
Winner: ts52

1) ts52: H Y3 B1 G3

2) Draw5PlayAll: Homeworld B1 G2 B3 *

3) ts52: Build G1 Ts52

4) Draw5PlayAll: Build B1 Draw5playall
	ts52: going for the fast shut out, eh?

5) ts52: Build G1 Ts52

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) ts52: Discover G1 Ts52 B2 Gonzo

8) Draw5PlayAll: Build B2 Draw5playall

9) ts52: B G1 Ts52

10) Draw5PlayAll: Discover B1 Draw5playall G3 G3

11) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G2 Gonzo
Build G3 Ts52

12) Draw5PlayAll: Build B2 G3

13) ts52: Trade G2 Y2 Gonzo

14) Draw5PlayAll: Build B3 Draw5playall

15) ts52: Trade G3 B3 Ts52

16) Draw5PlayAll: Build B3 G3

17) ts52: Build G2 Gonzo

18) Draw5PlayAll: Trade B3 Y3 G3

19) ts52: Build G3 Ts52

20) Draw5PlayAll: Build B3 G3

21) ts52: Trade G3 R3 Ts52

22) Draw5PlayAll: Trade B3 R3 G3

23) ts52: Build G3 Ts52

24) Draw5PlayAll: Move R3 G3 Gonzo

25) ts52: Sacrifice Y2 Gonzo
Discover G2 Gonzo B3 Grover
Move G2 Gonzo Grover
	Draw5PlayAll: Chaos breaks out!

26) Draw5PlayAll: Attack G1 Gonzo

27) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build R1 Ts52

28) Draw5PlayAll: Sacrifice Y3 G3
Move G1 Gonzo Grover
Catastrophe Grover Green
Move B3 Draw5playall G3
Move B2 G3 Gonzo

29) ts52: Discover B3 Ts52 G2 Kermit

30) Draw5PlayAll: Build B3 Draw5playall

31) ts52: Trade G1 Y1 Ts52

32) Draw5PlayAll: Build Y1 Draw5playall

33) ts52: Build G1 Ts52

34) Draw5PlayAll: Move Y1 Draw5playall G3

35) ts52: Discover G1 Ts52 Y2 Bigbird

36) Draw5PlayAll: Build Y1 Draw5playall

37) ts52: Move Y1 Ts52 Kermit

38) Draw5PlayAll: Build Y2 G3

39) ts52: Build G1 Bigbird

40) Draw5PlayAll: Move Y1 G3 Gonzo

41) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build G3 Ts52

42) Draw5PlayAll: Discover B3 Draw5playall Y3 Y3

43) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build R1 Ts52

44) Draw5PlayAll: Move B3 Y3 Bigbird

45) ts52: Move R3 Ts52 Kermit

46) Draw5PlayAll: Build Y3 G3

47) ts52: Move G1 Bigbird G3
	Draw5PlayAll: I think I have a win in 5.

48) Draw5PlayAll: Sacrifice Y2 G3
Discover Y3 G3 R2 R2
Move B3 G3 R2
	ts52: I think you're probably right.
	Draw5PlayAll: That complicates my plan severely.

49) ts52: Move Y2 Kermit G3

50) Draw5PlayAll: Discover Y1 Draw5playall R3 R3
	ts52: Happy to help. :)

51) ts52: Build Y2 G3

52) Draw5PlayAll: Move R3 Gonzo G3

53) ts52: Sacrifice Y2 G3
Move G2 Bigbird R3
Discover G1 G3 Y2 Zoe

54) Draw5PlayAll: Attack Y2 G3

55) ts52: Attack Y1 R3
	Draw5PlayAll: I feel like this is an easy draw for my side, but I would like to play this out and SDG does not have Offer Draw for Homeworlds games. (Perhaps you could email Aaron and see if there is a quick fix.)
	ts52: I'm happy to play it out if you are.

56) Draw5PlayAll: Build R1 G3

57) ts52: Sacrifice G3 Ts52
Build R2 Ts52
Build R2 Kermit
Build G3 R3

58) Draw5PlayAll: Move R1 G3 R2

59) ts52: M R2 Ts52 Zoe

60) Draw5PlayAll: Move B3 R2 G3

61) ts52: Move R3 Kermit R3

62) Draw5PlayAll: Move B1 G3 R2

63) ts52: Move R3 R3 Gonzo

64) Draw5PlayAll: Sacrifice Y1 Gonzo
Move B2 Gonzo G3

65) ts52: Build Y1 R3
	Draw5PlayAll: You can never get more blue or more non-small yellows.

66) Draw5PlayAll: Move R3 G3 Zoe
	ts52: True, I'm curious how this one is going to end.

67) ts52: Move R2 Zoe R3
	Draw5PlayAll: Let me try this on for size.

68) Draw5PlayAll: Attack G1 Zoe
	ts52: That seems like it could be the beginning of the end for me

69) ts52: Move G1 Ts52 Gonzo
	Draw5PlayAll: Is it?
	Draw5PlayAll: I mean, I have 5 large ships and I need to defend 5 systems... letting you get either Y2 is extremely dangerous.

70) Draw5PlayAll: Move R1 R2 G3
	ts52: It's true. Letting me get a y2 would be bad for you. But letting you get a green isn't great for me either.

71) ts52: Move Y1 R3 Gonzo
	Draw5PlayAll: I see a thing that MIGHT get you a win, but it takes several turns to setup and I can defend before it happens.

72) Draw5PlayAll: Pass
Pass
Pass
Pass
Pass

73) ts52: Move G2 R3 Draw5playall

74) Draw5PlayAll: Move R3 Zoe G3

75) ts52: Move R2 R3 Zoe

76) Draw5PlayAll: Move R3 G3 Draw5playall

77) ts52: Attack G1 Zoe

78) Draw5PlayAll: Attack G2 Draw5playall

79) ts52: Move R2 Zoe R3

80) Draw5PlayAll: Move B2 G3 Zoe

81) ts52: Move G3 R3 Zoe
	Draw5PlayAll: The stash is empty. STILL.

82) Draw5PlayAll: Move B2 Zoe G3
	ts52: Yep. If you'd only let me get a medium yellow.... ;)
	Draw5PlayAll: But what could you do either way?

83) ts52: Move G1 Zoe R3

84) Draw5PlayAll: Move B2 G3 Bigbird
	ts52: Honestly, I'm not 100% sure. This may be a very long endgame.

85) ts52: Sacrifice G3 Zoe
Build G3 R3
Build Y2 Gonzo
Pass

86) Draw5PlayAll: Move B2 Draw5playall G3
	Draw5PlayAll: The only thing you could possibly do is try to sabotage me on the red economy.

87) ts52: Move G1 R3 Draw5playall
	Draw5PlayAll: You have neither the blue nor the movement to blow both of my stars. I can hold the game eternally as long as you never take over R2, G3, or bigbird. Also G3 and my homeworld have reds in then and R2 is a red system, therefore you could only get me to waste red at bigbird (or by sending two ships in at once, which wastes your only Y2).
	ts52: Yeah, I'm really not sure what either of us should be doing at this point. Going to have to think on this one.
	Draw5PlayAll: I have no way at all to win or even make progress unless you let me. I cannot afford to throw another blue to G3 because you catastrophe it.

88) Draw5PlayAll: Attack G1 Draw5playall
	ts52: Here goes nothing.

89) ts52: Move G3 R3 Draw5playall
Catastrophe Draw5playall Green

90) Draw5PlayAll: Pass

91) ts52: Build G1 Ts52

92) Draw5PlayAll: Pass

93) ts52: Build G2 Bigbird

94) Draw5PlayAll: Move B2 Bigbird Draw5playall

95) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Gonzo
Build G3 Ts52
	Draw5PlayAll: Do you have any way of getting through to the developer, so that he can please add the "Offer a Draw" button to Homeworlds?

96) Draw5PlayAll: Move B2 G3 R2
	ts52: Sadly, I don't.

97) ts52: Sacrifice Y2 Gonzo
Move G3 Gonzo Draw5playall
Move B3 Kermit Draw5playall

98) Draw5PlayAll: Sacrifice R3 Draw5playall
Attack B3 Draw5playall
Attack G3 Draw5playall
Attack G2 Bigbird

99) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Gonzo
Build R3 Kermit

100) Draw5PlayAll: Move B3 Draw5playall R3

101) ts52: Sacrifice Y2 Gonzo
Move R3 Gonzo Draw5playall
Move R3 Kermit Draw5playall
	Draw5PlayAll: You only have 2 larges left.

102) Draw5PlayAll: Sacrifice Y3 R2
Move G2 Bigbird Ts52
Move G3 Draw5playall Gonzo
Move G3 Gonzo Ts52
Catastrophe Ts52 Green
	ts52: 3 now. ;)

103) ts52: Sacrifice R2 Kermit
Attack Y3S Draw5playall
Attack B2S Draw5playall

	Draw5PlayAll: Ah yes, forgot about that. You win.
	ts52: An excellent game, as usual. This was a particularly tough one though.


33101)
Started: 2017.9.5, Ended: 2018.1.11
Participants: dlwillson (S), Felix (W), Draw5PlayAll (N), ts52 (E)
Winner: ts52

1) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: Yay, it worked!

2) ts52: Homeworld Y1 B2 G3

3) dlwillson: Homeworld B3 R2 G3
	dlwillson: Last Player Standing wins?

4) Felix: Homeworld B1 R1 G3 *

5) Draw5PlayAll: Build G1 Draw5playall
	Felix: Have fun all :)
	ts52: Wow. I'm the only one who didn't go for homeworld defense, huh? This will be interesting.
	Draw5PlayAll: Fortunately, Felix picked dlwillson as his victim. Oh how I wish I had just passed on move 1...
	Draw5PlayAll: (Fortunately = it was not me)

6) ts52: Build G1 Ts52

7) dlwillson: B G1 Dlwillson

8) Felix: Build G1 Felix
	Felix: b g1 felix
	Felix: Haha, rookie move :)

9) Draw5PlayAll: Trade G1 Y1 Draw5playall

10) ts52: B G1 Ts52

11) dlwillson: T G1 Y1 Dlwillson

12) Felix: T G1 Y1 Felix

13) Draw5PlayAll: Build G1 Draw5playall

14) ts52: Discover G1 Ts52 B3 Gonzo

15) dlwillson: B G1 Dlwillson

16) Felix: Build Y1 Felix

17) Draw5PlayAll: Build Y2 Draw5playall

18) ts52: Trade G1 R1 Ts52

19) dlwillson: B Y2 Dlwillson

20) Felix: Trade Y1 R1 Felix

21) Draw5PlayAll: Trade G1 B1 Draw5playall

22) ts52: Build G1 Ts52

23) dlwillson: Discover G1 Dlwillson B1 Sea

24) Felix: M R1 Felix Gonzo
	dlwillson: So much going on... And it's likely to get worse...

25) Draw5PlayAll: Discover Y2 Draw5playall G2 G2
	Felix: These 4p games are so hard to wrap my head around

26) ts52: Sacrifice R1 Ts52
Attack R1W Gonzo

27) dlwillson: Build G1 Dlwillson

28) Felix: Build Y1 Felix

29) Draw5PlayAll: Build Y2 Draw5playall
	Felix: I'm not sure why I thought that would work.

30) ts52: Build R1 Gonzo

31) dlwillson: M Y2 Dlwillson Sea

32) Felix: Move Y1 Felix G2

33) Draw5PlayAll: Trade Y2 R2 Draw5playall

34) ts52: Trade R1 B1 Gonzo

35) dlwillson: Build Y2 Sea

36) Felix: Build Y2 Felix

37) Draw5PlayAll: Move R2 Draw5playall G2

38) ts52: Build R1 Gonzo

39) dlwillson: T Y2 R2 Sea

40) Felix: Trade Y1 R1 Felix

41) Draw5PlayAll: Attack Y1W G2

42) ts52: Trade R1 Y1 Gonzo

43) dlwillson: Build Y2 Sea

44) Felix: Build Y2 Felix

45) Draw5PlayAll: Build Y3 Draw5playall

46) ts52: Build Y3 Gonzo

47) dlwillson: Discover Y2 Sea B2 Northwest_sky

48) Felix: Discover Y2 Felix G2 Out

49) Draw5PlayAll: Trade Y1 R1 Draw5playall

50) ts52: Build R2 Gonzo

51) dlwillson: S G3 Dlwillson
B Y1 Northwest_sky
B Y3 Sea
B Y3 Dlwillson

52) Felix: B Y3 Felix

53) Draw5PlayAll: Discover R1 Draw5playall B2 B2

54) ts52: Discover B1 Gonzo G2 Kermit

55) dlwillson: T Y2 G2 Northwest_sky

56) Felix: M R1 Felix Out

57) Draw5PlayAll: Build Y2 Draw5playall

58) ts52: Move R1 Gonzo Ts52
	Draw5PlayAll: Please build the R2!

59) dlwillson: Move Y2 Sea Northwest_sky

60) Felix: Build G1 Felix
	dlwillson: Nope. Not me. Someone else can. I'm not set up well for red. Or any other color, actually. I think I don't know how to play Homeworlds free-for-all.

61) Draw5PlayAll: Move B1 Draw5playall G2
	Felix: So hectic...

62) ts52: Move Y1 Gonzo Kermit

63) dlwillson: Move Y1 Dlwillson Felix

64) Felix: Move Y2 Felix Dlwillson

65) Draw5PlayAll: Build G2 Draw5playall

66) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Gonzo
Build G3 Gonzo

67) dlwillson: A Y2W Dlwillson

68) Felix: Attack Y1S Felix

69) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R2 B2
Build R3 G2
	Felix: Tradesies :)
	Draw5PlayAll: I take it dlwillson's G2@northwest_sky was a coward.

70) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build R3 Gonzo
Build R3 Ts52

71) dlwillson: B R3 Sea

72) Felix: Move G1 Felix Gonzo
Catastrophe Gonzo G
	dlwillson: Draw5: not sure what you mean? They go where the amiable directs them. But, maybe I missed something.

73) Draw5PlayAll: Move Y3 Draw5playall B2

74) ts52: Build R3 Ts52
	Draw5PlayAll: I have 3 systems and 0 plans.

75) dlwillson: M R3 Sea Northwest_sky
	dlwillson: Ugh. 'ansible', not 'amiable'.

76) Felix: Build G1 Felix

77) Draw5PlayAll: Move G2 Draw5playall B2

78) ts52: Discover R3 Ts52 G3 Oscar

79) dlwillson: T Y1 B1 Northwest_sky

80) Felix: Move Y1 Felix Dlwillson
	dlwillson: Is there any advantage to not playing completely defensively? I can't think of one.

81) Draw5PlayAll: Build G1 Draw5playall
	Felix: It's more fun to not? :)

82) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Ts52
Build Y1 Kermit

83) dlwillson: A Y1W Dlwillson

84) Felix: Move Y3 Felix Dlwillson
Catastrophe Dlwillson Yellow

85) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 Draw5playall
Build B2 G2

86) ts52: Discover G3 Ts52 B3 Grover

87) dlwillson: Sacrifice Y3 Sea
Move R2 Sea Dlwillson
Move G1 Dlwillson Felix
Move G2 Northwest_sky Felix
Catastrophe Felix G
	Draw5PlayAll: Someone is going to be eliminated real soon.

88) Draw5PlayAll: Move R2 B2 Sea

89) ts52: M R3 Gonzo Out
	dlwillson: Two someones are.

90) dlwillson: Sacrifice G1 Sea
Build Y2 Northwest_sky

91) Draw5PlayAll: Build Y3 B2

92) ts52: Attack Y2W Out

93) dlwillson: Trade R2 G2 Dlwillson
	Draw5PlayAll: I thought about trying to land a red in dlwillson' homeworld but I figured ts52 would not follow up and I do not want to waste a red and the movement to get there.
	Felix: Well, it was fun while it lasted! These big games don’t reward offensive moves. Shame!

94) Draw5PlayAll: Sacrifice Y1 G2
Move Y3 B2 Sea
	ts52: funny, I thought about the same thing 

95) ts52: Move Y1 Kermit Oscar

96) dlwillson: S Y2 Northwest_sky
M R3 Northwest_sky Sea
M R3 Sea Dlwillson
	Draw5PlayAll: Just messing with the yellow economy.

97) Draw5PlayAll: Build G1 B2

98) ts52: Build Y1 Out

99) dlwillson: Trade R3 Y3 Dlwillson

100) Draw5PlayAll: Move G1 B2 Sea

101) ts52: Attack R1W Out

102) dlwillson: T B1 G1 Northwest_sky

103) Draw5PlayAll: Move R2 Sea Kermit

104) ts52: Sacrifice Y1 Kermit
Move B1 Kermit Oscar

105) dlwillson: Build Y1 Northwest_sky

106) Draw5PlayAll: Build R1 B2

107) ts52: Discover G3 Ts52 Y3 Bigbird

108) dlwillson: B Y2 Dlwillson

109) Draw5PlayAll: Move R2 G2 Sea

110) ts52: Sacrifice G3 Bigbird
Build Y3 Oscar
Build R2 Oscar
Build R3 Gonzo

111) dlwillson: Trade Y1 B1 Northwest_sky

112) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R1 B2 Gonzo
Move R2 Kermit Gonzo
Catastrophe Gonzo Red

113) ts52: Move R3 Oscar Northwest_sky
	dlwillson: Sorry for the delay, gents!

114) dlwillson: M G1 Northwest_sky Oscar
	Draw5PlayAll: I thought my R2@kermit was too vulnerable so I used it instead of the R1@B2. Also I keep a weapon at B2.
	Draw5PlayAll: Hey DLWillson, I am sending you a message... please read it before moving.
	ts52: I feel as if I'm about to be ganged up on...

115) Draw5PlayAll: Sacrifice Y2 G2
Move G2 B2 Oscar
Move G1 Sea Oscar
Catastrophe Oscar Green
	Draw5PlayAll: Wrong! Perhaps you would like an undo!

116) ts52: Attack Y2S Northwest_sky
	dlwillson: You should pick on somebody your own size.

117) dlwillson: Sacrifice G2 Dlwillson
Build B1 Northwest_sky
Build B1 Northwest_sky
Catastrophe Northwest_sky B
	Draw5PlayAll: Who, me? But ts52 is too big (he still has 5 larges to my 4) and you are too small.

118) Draw5PlayAll: Build Y1 Draw5playall
	dlwillson: No, TS52 should... I might have declined your offer of cooperation, if TS52 hadn't moved into my system. Had I been him, I would have attacked you and bet that I would not be able to capitalize on it. That still seems like the best play, to me. Either of you spending to hit me, is wasting pyramids or turns. Unless you can turn a profit, that is...

119) ts52: Build G1 Grover
	dlwillson: Since I can't win, I can afford to do silly things like that.
	Draw5PlayAll: I will start to discover some large systems.

120) dlwillson: Trade Y3 G3 Dlwillson
	Draw5PlayAll: But I do not 100% trust that you cannot win. If me and ts52 keep attacking each other that might give you enough time to build a legitimate fleet.

121) Draw5PlayAll: Move Y1 Draw5playall G2

122) ts52: Build G1 Ts52

123) dlwillson: Build G1 Dlwillson

124) Draw5PlayAll: Move G1 Draw5playall B2

125) ts52: Move G1 Ts52 Gonzo
	dlwillson: Draw5: You should cross the "dlwillson has a legitimate fleet" bridge when you come to it. ts52 is a much more immediate threat to you. Any turns or ships either of you spends on me... Well, you play your own game, but I will casually predict that the next player to attack me, will ultimately lose the game, because of the waste of time/material.

126) dlwillson: D G1 Dlwillson B1 Sky
	Draw5PlayAll: No, I meant that as me and Tim attack each other, you will get enough to become a threat... what will more likely happen is that I destroy Tim (or vice versa) and then have to defeat you. I will deal with you later, but you seem to be in the kingmaker position...

127) Draw5PlayAll: Build Y1 B2

128) ts52: Build Y2 Gonzo

129) dlwillson: B G2 Dlwillson

130) Draw5PlayAll: Build G2 Draw5playall

131) ts52: Trade R1 B1 Ts52

132) dlwillson: Sacrifice G3 Dlwillson
Build G2 Sky
Build G3 Sky
Build G3 Dlwillson

133) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 B2
Build R1 Sea

134) ts52: Move Y2 Out Grover

135) dlwillson: T G2 R2 Sky

136) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Sea
Build Y2 G2
Build Y3 Draw5playall

137) ts52: Build Y3 Out

138) dlwillson: Discover G2 Dlwillson B1 Lake

139) Draw5PlayAll: Move G3 B2 Draw5playall

140) ts52: Sacrifice G3 Grover
Build G2 Ts52
Build G3 Grover
Build G3 Gonzo

141) dlwillson: B R1 Sky

142) Draw5PlayAll: Discover B1 G2 B3 B3

143) ts52: Discover B1 Ts52 R3 Elmo

144) dlwillson: T R2 B2 Sky

145) Draw5PlayAll: Build B2 G2

146) ts52: Move R1 Out Gonzo
	Draw5PlayAll: My small blue ship has been trying to set up signs saying "PRIVATE - NO ENTRY" on the planet.

147) dlwillson: Build R2 Sky

148) Draw5PlayAll: Move B2 G2 Elmo

149) ts52: Move R3 Out B3

150) dlwillson: Pass

151) Draw5PlayAll: Attack B1E Elmo

152) ts52: Attack B1N B3

153) dlwillson: M Y2 Dlwillson Sky

154) Draw5PlayAll: Sacrifice Y2 Sea
Move B2 Elmo Ts52
Move B1 Elmo Ts52

155) ts52: Sacrifice Y3 Gonzo
Move Y2 Gonzo B2
Move Y2 Grover B2
Move R3 B3 B2
Catastrophe B2 Yellow

156) dlwillson: D R2 Sky Y2 Sol

157) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R2 B2
Build R2 B2
Catastrophe B2 Red

158) ts52: Attack B2N Ts52
	Draw5PlayAll: ts52 dies in two moves.
	ts52: Yikes! How'd I miss that?

159) dlwillson: S G3 Sky
B Y1 Sky
B Y2 Sky
B G3 Sky

160) Draw5PlayAll: Sacrifice G1 B2
Build B2 Ts52
Catastrophe Ts52 Blue
	Draw5PlayAll: ts52: Incorrect!

161) ts52: Move Y1 Out B3

162) dlwillson: S Y2 Sky
M Y1 Sky G2
M Y2 Sky G2
C G2 Y

163) Draw5PlayAll: Move Y1 Draw5playall G2

164) ts52: Trade G1 Y1 Grover
	Draw5PlayAll: I like moves like that.

165) dlwillson: B G1 Dlwillson

166) Draw5PlayAll: Trade R1 G1 Sea
	dlwillson: I need you two more evenly balanced.

167) ts52: Sacrifice G3 Gonzo
Build G3 Gonzo
Build Y1 Out
Build Y2 B3
	Draw5PlayAll: Where did all my yellow go?!

168) dlwillson: T G3 Y3 Dlwillson

169) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Sea
Build Y2 Sea

170) ts52: Move Y1 Out Gonzo

171) dlwillson: T B2 Y2 Sky

172) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y2 G2
Build Y3 Draw5playall

173) ts52: Sacrifice Y2 B3
Move Y1 B3 Sea
Move Y1 Grover Sea
Catastrophe Sea Y

174) dlwillson: M G3 Sky Sol

175) Draw5PlayAll: Move Y1 G2 Sea

176) ts52: Build Y1 Out
	Draw5PlayAll: All right ts52, your time is almost up.

177) dlwillson: Build Y1 Sky

178) Draw5PlayAll: Discover Y3 Draw5playall B2 B2

179) ts52: Build Y2 Gonzo

180) dlwillson: M G3 Sol Draw5playall

181) Draw5PlayAll: Attack G3S Draw5playall

182) ts52: Sacrifice Y2 Gonzo
Discover G1 Gonzo Y2 Attack
Move G1 Attack Draw5playall
Catastrophe Draw5playall G

183) dlwillson: S Y2 Sky
M Y1 Sky Out
M Y1 Out Draw5playall

184) Draw5PlayAll: Trade Y3 G3 Draw5playall

185) ts52: Build Y2 Gonzo
	Draw5PlayAll: Ummm... ts52 cannot afford to help dlwillson destroy me because ts52's empire will then die as well.
	ts52: Yeah, I've been struggling to stay alive. But I don't think I'll be able to much longer.
	ts52: Building the last 2 yellow only means they'll be destroyed in the next few turns, I think I might last longer returning a lot of green to the supply. And if not, at least I'll go out in a bang. ;)

186) dlwillson: Sacrifice Y3 Dlwillson
Move G2 Lake Sol
Move G2 Sol Draw5playall
Move G1 Sky Sol

187) Draw5PlayAll: Move Y3 B2 Draw5playall

188) ts52: Discover Y1 Gonzo G2 Oscar

189) dlwillson: Build Y2 Draw5playall

190) Draw5PlayAll: Move G3 Sea Dlwillson

191) ts52: Sacrifice Y3 Out
Move Y1 Oscar Draw5playall
Move G3 Gonzo Out
Move G3 Out Draw5playall
Catastrophe Draw5playall Y

192) dlwillson: Build G1 Draw5playall
Catastrophe Draw5playall G

193) ts52: Sacrifice Y2 Gonzo
Move G1 Ts52 Dlwillson
Move G2 Ts52 Dlwillson
Catastrophe Dlwillson G

	dlwillson: Good, fun game. Very political, as multi-player should be. Well done, all! Now, unless I miss my guess, this ends in two TS52 turns.
	ts52: Wow. That was a very interesting and unusual game. (I don't recall the last time I played a full game larger than 2 players.) Thanks everyone. That was fun!
	dlwillson: I missed my guess. :-)


33123)
Variants: "Hard time"
Started: 2017.9.7, Ended: 2017.9.13
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y2 G3

2) wil: H Y2 B1 G3
	wil: I was clicking away...  I shouldn't have challenged you
...you want me to resign so you can challenge Felix?

3) dlwillson: Build G1 Dlwillson

4) wil: B G1 Wil
	dlwillson: It's no problem. I am here to play. You and he are both challenging and enjoyable opponents.

5) dlwillson: Trade G1 R1 Dlwillson

6) wil: T G1 B1 Wil

7) dlwillson: B R1 Dlwillson

8) wil: B B1 Wil

9) dlwillson: D R1 Dlwillson Y1 Golden

10) wil: D B1 Wil Y3 Y3

11) dlwillson: Build R1 Dlwillson

12) wil: B B2 Wil

13) dlwillson: B R2 Dlwillson

14) wil: D B1 Wil G3 G3

15) dlwillson: D R1 Dlwillson Y1 Sol

16) wil: S G3 Wil
B B2 G3
B B2 Y3
B B3 Wil

17) dlwillson: S G3 Dlwillson
B R2 Golden
B R2 Sol
B R3 Dlwillson

18) wil: S B2 Y3
T B3 G3 Wil
T B2 Y2 G3

19) dlwillson: M R2 Golden G3

20) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

21) dlwillson: Build R3 G3

22) wil: T B3 R3 Wil

23) dlwillson: Sacrifice R2 G3
Attack Y2 G3
Attack B1 G3

24) wil: D B1 Y3 G1 G1

25) dlwillson: B B3 G3

26) wil: B B3 G1

27) dlwillson: M B3 G3 Wil

28) wil: A B3 Wil

29) dlwillson: Move B1 G3 Wil
Catastrophe Wil B

30) wil: T B3 Y3 G1

31) dlwillson: Trade R2 G2 Dlwillson

32) wil: B Y1 G1
	dlwillson: No! Hell, no! I see what you almost did there!
	wil: Lol, it was worth a try...

33) dlwillson: Sacrifice G2 Dlwillson
Build Y3 G3
Build R2 G3

34) wil: S B2 Y3
T B2 R2 Y3
T R3 B3 Wil

35) dlwillson: M Y3 G3 Wil
	dlwillson: Good block!

36) wil: S R2 Y3
A Y3 Wil
P
	dlwillson: I think I've still got you, though.
	wil: Oh I am still waiting on some.collosal .mistake.to capitalize on..

37) dlwillson: M R3 G3 Wil

38) wil: M B1 G1 Wil
	dlwillson: I'd better hurry up with that mistake, I guess.
	wil: I have little faith that you are capable of making a mistake of the proportions required.


39) dlwillson: Sacrifice R3 Dlwillson
Attack B3 Wil
Attack Y3 Wil
Attack B1 Wil
	dlwillson: I tried. Just too little time left and no confusing choices.



33141)
Variants: "Unrated, Hard time"
Started: 2017.9.10, Ended: 2017.10.17
Participants: bhorner (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3
	mneme: (to be clear, this is a tournament game).  
Good luck, and have fun!


2) bhorner: Homeworld R3 B1 G3

3) mneme: Build G1 Mneme

4) bhorner: Build G1 Bhorner

5) mneme: Trade G1 B1 Mneme
	bhorner: yes, the great tournament.  :)
good luck to you too, and also have fun!

6) bhorner: T G1 B1 Bhorner
	mneme: And you!

7) mneme: Build B2 Mneme

8) bhorner: B G1 Bhorner

9) mneme: Trade B2 Y2 Mneme

10) bhorner: Build B2 Bhorner

11) mneme: Build B2 Mneme

12) bhorner: Trade B1 Y1 Bhorner

13) mneme: Discover B1 Mneme G3 Calliope

14) bhorner: Discover B2 Bhorner G2 Melpomene

15) mneme: Build G1 Mneme

16) bhorner: Build Y1 Bhorner

17) mneme: Build Y1 Mneme

18) bhorner: B Y2 Bhorner

19) mneme: Move Y2 Mneme Calliope

20) bhorner: M Y2 Bhorner Melpomene

21) mneme: Discover G1 Mneme Y3 River

22) bhorner: D Y1 Bhorner G2 Exhaust

23) mneme: Build G1 Mneme

24) bhorner: Sacrifice G3 Bhorner
Build Y2 Melpomene
Build Y3 Bhorner
Build Y3 Exhaust

25) mneme: Sacrifice G3 Mneme
Build G2 Mneme
Build G3 Mneme
Build G3 River

26) bhorner: Trade Y1 R1 Bhorner

27) mneme: Trade G2 R2 Mneme

28) bhorner: B G2 Bhorner

29) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build Y1 Calliope
Build R1 Mneme

30) bhorner: Sacrifice G1 Bhorner
Build R2 Bhorner

31) mneme: Move R1 Mneme Calliope

32) bhorner: Move R2 Bhorner Exhaust

33) mneme: Move G3 River Melpomene

34) bhorner: Sacrifice Y2 Melpomene
Move Y2 Melpomene Calliope
Move B2 Melpomene River

35) mneme: Attack Y2 Calliope
	mneme: I totally didn't notice that you'd used a muse name for one of your worlds before now.  Respect!
	bhorner: lol
Every time I read your name, I pronounce it in my head "mini-me".  :)

36) bhorner: Move Y1 Exhaust Calliope
Catastrophe Calliope Yellow

37) mneme: Sacrifice G3 Mneme
Build G1 Melpomene
Build G3 River
Build Y1 Mneme
	mneme: It's greek -- for a muse.  Pronounced (almost) "nemay".
	Draw5PlayAll: Oh, I say "im-neem".

38) bhorner: M G2 Bhorner Melpomene
Cat Melpomene Green
	mneme: How to you pronounce "mnemonic?"


39) mneme: Sacrifice R1 Calliope
Attack B2 River

40) bhorner: M R2 Exhaust Calliope

41) mneme: Sacrifice G3 River
Build B1 River
Build B3 Mneme
Build B3 Calliope
	Babamots: Now I don't think I'll be able to un-see mini-me.

42) bhorner: Move Y3 Exhaust River

43) mneme: Sacrifice B2 Mneme
Trade B2 Y2 River
Trade B1 Y1 River
Catastrophe River Y
	Draw5PlayAll: IM-NEEM! IM-NEEM! IM-NEEM!
NUH-MAY! NUH-MAY! NUH-MAY!

That should help it.
	bhorner: It helped me.
	mneme: The way I pronounce it, the epsilon (er, e) is really more pronounced like a schwa.  neh-may.  

44) bhorner: Trade Y3 G3 Bhorner
	mneme: well, I -hope- that was reasonably predictable.
	bhorner: Made too many moves at the bus stop, didn't anticipate that.  :)

45) mneme: Sacrifice R2 Mneme
Attack R2 Calliope
Pass

46) bhorner: T R1 Y1 Bhorner
	mneme: That was wasn't exactly a trap, but I had thought it out beforehand.  
	bhorner: It's been a while since I used blue to attack like that...  I'm going to have to go back to the history.  :)  I don't have much hope to pick up the pieces, but I'll give it a go.
	bhorner: (back to the history to sort out what happened)

47) mneme: Move Y1 Mneme Calliope

48) bhorner: B Y2 Bhorner
	mneme: I'd call it using blue to defend or counterattack in this case, but I know what you mean.
	mneme: And yeah, you're in a bad spot at this pint, but best to play it out--everyone blunders sometimes.

49) mneme: Build Y2 Calliope

50) bhorner: Discover Y2 Bhorner G2 Doh

51) mneme: Trade B3 G3 Calliope

52) bhorner: B Y2 Doh

53) mneme: Trade Y1 R1 Calliope

54) bhorner: D Y2 Doh B3 Blurb

55) mneme: Move R2 Calliope Doh

56) bhorner: S G3 Bhorner
B Y1 Blurb
B Y3 Bhorner
B Y3 Doh

57) mneme: Sacrifice G3 Calliope
Build Y3 Mneme
Build R1 Doh
Build R2 Doh

58) bhorner: Sacrifice Y2 Doh
Move Y1 Blurb Mneme
Move Y2 Blurb Mneme
Catastrophe Mneme Y

59) mneme: Build R2 Calliope

60) bhorner: T Y1 G1 Bhorner

61) mneme: Build R3 Calliope

62) bhorner: Build Y1 Bhorner

63) mneme: Build B1 Calliope

64) bhorner: Discover Y1 Bhorner G2 Nored

65) mneme: Trade R3 Y3 Calliope

66) bhorner: B Y1 Nored

67) mneme: Build R3 Calliope

68) bhorner: Build Y1 Doh

69) mneme: Sacrifice Y3 Calliope
Move R1 Doh Bhorner
Move R2 Doh Bhorner
Move R2 Doh Bhorner
Catastrophe Bhorner R

70) bhorner: Trade Y3 R3 Bhorner

71) mneme: Build B2 Calliope

72) bhorner: Discover Y1 Nored B3 Fluid

73) mneme: Move B2 Calliope Bhorner

74) bhorner: Sacrifice Y3 Doh
Move R3 Bhorner Calliope
Move R3 Calliope Mneme
Move Y1 Nored Bhorner

75) mneme: Sacrifice Y2 Calliope
Move B1 Calliope Bhorner
Move B1 Calliope Bhorner
Catastrophe Bhorner B

	mneme: It doesn't really matter.  
	bhorner: If I had moved to a small blue, hen:
s y3 doh
  m y1 doh calliope
  m y1 nored calliope
  m y1 nored calliope
  c yellow calliope

You couldn't move, and I could take your b2 at home...
But I agree, it doesn't really matter.
	mneme: It didn't, because my next move is to trade for a y3 which I could then use to finish up the kill after the capture.  But yeah, it would have slowed things down for a turn.  


33134)
Variants: "Unrated, Hard time"
Started: 2017.9.10, Ended: 2017.10.15
Participants: ts52 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y2 B1 G3

2) ts52: H Y3 B1 G3

3) Babamots: Build G1 Babamots
	Babamots: Thanks for being in the tournament! Good luck!

4) ts52: Build G1 Ts52
	ts52: Thanks for organizing it! Good luck to you too.

5) Babamots: Discover G1 Babamots B3 Kurl

6) ts52: Discover G1 Ts52 B2 Gonzo

7) Babamots: Build G1 Babamots

8) ts52: Build G2 Ts52

9) Babamots: Build G2 Kurl

10) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Gonzo
Build G3 Ts52

11) Babamots: Trade G2 Y2 Kurl

12) ts52: Trade G2 Y2 Gonzo

13) Babamots: Build G2 Kurl

14) ts52: Trade G3 R3 Gonzo

15) Babamots: Trade G1 R1 Kurl

16) ts52: Build R1 Gonzo

17) Babamots: Build R1 Kurl

18) ts52: Discover R3 Gonzo G3 Kermit

19) Babamots: Build G1 Kurl

20) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build Y1 Gonzo

21) Babamots: Discover R1 Kurl B2 Betazed

22) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Gonzo
Build Y1 Gonzo

23) Babamots: Sacrifice G3 Babamots
Build R2 Betazed
Build R2 Kurl
Build G3 Babamots

24) ts52: Trade G3 R3 Ts52

25) Babamots: Sacrifice G3 Babamots
Build R3 Betazed
Build G3 Kurl
Build G3 Babamots

26) ts52: Sacrifice Y2 Gonzo
Move R1 Gonzo Kermit
Move R1 Kermit Betazed
Catastrophe Betazed Red

27) Babamots: Discover G3 Kurl B2 Galorndon

28) ts52: Move Y1 Gonzo Kermit

29) Babamots: Discover G1 Kurl Y2 Iconia
	Babamots: So if you name several systems of the same color, do you pick other muppets? I can only think of a few muppets of each color. Are there any green ones besides Kermit and Oscar?
	ts52: Typically I don't have too many. For green I typically have kermit, oscar and robin (kermit's nephew). For red I use elmo, but if I get more than that I have to scramble a bit. For blue I have gonzo and grover. And yellow is bigbird, and if I squint zoe.

30) ts52: Discover G2 Gonzo Y3 Bigbird
	Babamots: I also thought of Little Bird and Bert. Telly is kind of red.
	Babamots: Pepe and Animal are pretty red. Cookie Monster, Harry Monster, and Sam Eagle are blue. Scooter and Janice are yellowish. Dr. Teeth and Sherlock Hemlock have green skin.
	ts52: Excellent! I've used Scooter before, but Animal is a good one, as in Dr. Teeth. Thanks!

31) Babamots: Discover G1 Iconia Y3 Xindus

32) ts52: Build R1 Gonzo

33) Babamots: Trade R1 B1 Kurl
	Draw5PlayAll: Xindus
Kurl

Betazed seems to be a blue or green. Galorndon seems to be always blue.
	Babamots: Not on purpose. I pick Star Trek worlds for my system names almost totally at random.
	Babamots: Sometimes "Ferenginar" is an investment, or "Kronos" might be for an aggressive move. 
	Babamots: Sometimes "Ferenginar" is an investment, or "Kronos" might be for an aggressive move. 

34) ts52: Move R2 Gonzo Xindus

35) Babamots: Discover B1 Kurl R2 Cuellar

36) ts52: Attack G1 Xindus

37) Babamots: Sacrifice G3 Babamots
Build B2 Cuellar
Build B3 Cuellar
Build G3 Babamots
	Draw5PlayAll: But what are Xindus & Kurl & Cuellar?
Heck, maybe you should just give me a full list of your system names and their meanings, without any spoilers.
	Babamots: Here are the names I use most often:
Iconia: Home of an ancient race that built mysterious gateways allowing instant travel between distant worlds.
Romulus: Home of the manipulative, secretive Romulans. 
Galorndon: Site of a tense standoff between the Federation and the Romulans.
Kronos: Home of the Klingon warrior race.
Betazed: Home of a telepathic race including TNG's Troi.
Cuellar: Site of a secret Cardassian fleet in defiance of their treaty with the Federation.
Kurl: Home of an extremely ancient, long-extinct race. Captain Picard was given a rare artifact from Kurl by his archeology mentor.
Xindus: A planet shown in ENT that's home to 5 intelligent lifeforms.
Vulcan: Home of a highly intelligent, logic-loving race that is friendly to the Federation.
Ferenginar: Home of the greedy, scheming, big-eared Ferengi.

38) ts52: Sacrifice G2 Ts52
Build Y1 Kermit
Build Y2 Gonzo

39) Babamots: Trade G3 R3 Babamots

40) ts52: Sacrifice G2 Bigbird
Build G2 Gonzo
Build Y3 Kermit

41) Babamots: Sacrifice G2 Kurl
Build G2 Galorndon
Build R1 Kurl

42) ts52: Build R1 Xindus

43) Babamots: Sacrifice Y2 Kurl
Move G2 Galorndon Kermit
Move G3 Galorndon Kermit

44) ts52: Sacrifice Y3 Kermit
Move R3 Kermit Gonzo
Move Y1 Kermit Babamots
Move Y1 Kermit Babamots

45) Babamots: Sacrifice B2 Cuellar
Trade B3 Y3 Cuellar
Trade G2 Y2 Kermit

46) ts52: Discover Y1 Gonzo G3 Robin
	Babamots: I'm having a hard time NOT thinking about this game, but I also need to focus on other things for today. I'm hoping that posting this note will give me enough closure of thought that I can get some work done :-).

47) Babamots: Sacrifice Y2 Kermit
Move B1 Cuellar Kermit
Move Y3 Cuellar Xindus

48) ts52: Sacrifice G2 Gonzo
Build G2 Gonzo
Build Y2 Babamots
Catastrophe Babamots Yellow
	ts52: I hear you. I have that problem a lot.

49) Babamots: Sacrifice R2 Kurl
Attack R2S Xindus
Attack R1S Xindus

50) ts52: Trade G2 B2 Gonzo

51) Babamots: Sacrifice Y3 Xindus
Move R1 Xindus Gonzo
Move R1 Kurl Gonzo
Catastrophe Gonzo R
Move R2 Xindus Gonzo

52) ts52: Sacrifice Y2 Gonzo
Move G1 Gonzo Ts52
Move B2 Gonzo Xindus

53) Babamots: Build G2 Babamots

54) ts52: Build G2 Xindus
	Babamots: I can't remember the last time I had only one marker in my home. Despite having more material, I'm awfully vulnerable.

55) Babamots: Trade G2 Y2 Babamots

56) ts52: Build B2 Xindus

57) Babamots: Move R3 Babamots Xindus

58) ts52: Move B2 Xindus Babamots

59) Babamots: Sacrifice R2 Gonzo
Attack B2S Babamots
Attack B2S Xindus

60) ts52: Discover G2 Xindus Y2 Bigbird

61) Babamots: Sacrifice G3 Kermit
Build B2 Xindus
Build B3 Babamots
Build B3 Kermit
	Babamots: I sometimes name a system "Pakled" after I think I've done something really stupid.
	Babamots: (I've got a Pakled system in my ladder game right now. I'm getting walloped.)

62) ts52: Build G2 Bigbird

63) Babamots: Move B3 Babamots Bigbird

64) ts52: Move G2 Bigbird Babamots

65) Babamots: Sacrifice R3 Xindus
Attack G1S Xindus
Attack G2S Bigbird
Attack G2S Babamots

66) ts52: Build R1 Ts52

67) Babamots: Trade G2 R2 Babamots

68) ts52: Build G2 Ts52

69) Babamots: Build B3 Bigbird

70) ts52: Trade G2 Y2 Ts52

71) Babamots: Sacrifice Y2 Babamots
Move B3 Bigbird Ts52
Move B3 Bigbird Ts52

72) ts52: Move R3 Ts52 Bigbird

73) Babamots: Sacrifice R2 Babamots
Attack R1S Ts52
Attack Y2S Ts52
	Babamots: Two by two, ships of blue :-).
	ts52: :) Well played. I was too focused on the attack by catastrophe to notice the threat of just attack. Something I have to learn to look for.

74) ts52: Build G2 Ts52

75) Babamots: Attack G2S Ts52
	Babamots: (Red alert)
	Babamots: I prefer winning by hostile takeover rather than by system marker catastrophe. It takes fewer ships, and it does seem to me that people are less likely to see it coming.

76) ts52: Build G2 Ts52
	ts52: Indeed. I think at this point I can only delay the inevitable.
	Babamots: You can make it another last another three moves, I think.

77) Babamots: Build G3 Ts52
Catastrophe Ts52 G
	Babamots: (red alert)
	Babamots: I probably don't need to tell you "red alert" when a passing move from you would be an immediate loss :-).

	ts52: Not my best move, now that I think about it more, but taking your r1 only buys me one or two more turns, and you're not going to make a big enough mistake for me to capitalize. Good game.
	Babamots: Good game! I'll record it for the tournament.
	ts52: Thanks!


33139)
Variants: "Unrated, Hard time"
Started: 2017.9.11, Ended: 2017.9.23
Participants: fogus (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) fogus: Homeworld Y3 B2 G3

3) mneme: Build G1 Mneme

4) fogus: Build G1 Fogus

5) mneme: Trade G1 B1 Mneme

6) fogus: Trade G1 B1 Fogus

7) mneme: Build G1 Mneme

8) fogus: Build G1 Fogus

9) mneme: Trade G1 Y1 Mneme

10) fogus: Trade G1 Y1 Fogus

11) mneme: Build G1 Mneme

	mneme: Erg.  I reported this, but really, it's early and a weekend.  Do you want to restart?


33155)
Variants: "Hard time"
Started: 2017.9.12, Ended: 2017.9.15
Participants: goulo (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B1 R3 G3

2) goulo: Homeworld R2 B3 G3

3) ajo: Build G1 Ajo
	goulo: hi!

4) goulo: Build G1 Goulo

5) ajo: Trade G3 Y3 Ajo
	ajo: Hi! I might be slower than this in the coming days, fyi, but I'll try not to forfeit by timeout. ;)

6) goulo: Trade G3 Y3 Goulo

7) ajo: Build Y1 Ajo

8) goulo: Build Y1 Goulo
	goulo: OK! :)

9) ajo: Discover Y1 Ajo G2 Alpha

10) goulo: Discover Y1 Goulo B1 Blueto

11) ajo: Build Y1 Ajo

12) goulo: Build Y2 Goulo

13) ajo: Build Y2 Alpha

14) goulo: Trade Y2 R2 Goulo

15) ajo: Trade Y1 B1 Ajo

16) goulo: Build R1 Goulo

17) ajo: Build B2 Ajo

18) goulo: Trade R2 B2 Goulo

19) ajo: Move B2 Ajo Alpha

20) goulo: Discover B2 Goulo G1 Verdeto

21) ajo: Build G2 Ajo

22) goulo: Trade B2 G2 Verdeto

23) ajo: Build G3 Ajo

24) goulo: Build G3 Goulo
	ajo: That was a strange trade, when you could have built b2 in Verdeto...

25) ajo: Discover G2 Ajo B2 Beta
	goulo: it seemed better than setting you up to build b3 and me not being able to without getting catastrophed; but i won't pretend to be a genius at this game. ;)

26) goulo: Build G3 Verdeto

27) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build B2 Ajo
Build B3 Alpha

28) goulo: Move Y1 Blueto Alpha

29) ajo: Trade B2 R2 Alpha

30) goulo: Move Y1 Alpha Verdeto

31) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build B1 Alpha
Build R1 Alpha

32) goulo: Discover G3 Verdeto Y2 Flavo

33) ajo: Move B3 Alpha Verdeto

34) goulo: Sacrifice G2 Verdeto
Build G2 Flavo
Build Y1 Goulo

35) ajo: Sacrifice R1 Alpha
Attack Y1 Verdeto

36) goulo: Discover Y1 Goulo R1 Rugheto

37) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y2 Ajo
Build Y3 Verdeto

	goulo: man it's crazy how ridiculously far behind i am! thanks for the game; you totally outplayed me here!
	ajo: I was actually worried in the first couple turns that I was a move behind; but your moving out to a yellow star, and then bunching your greens together, made it easy for me to recoup. Good game. :)
	Draw5PlayAll: Huh?


33159)
Variants: "Hard time"
Started: 2017.9.13, Ended: 2017.9.28
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld R1 B3 G3

2) dlwillson: Homeworld B3 R2 G3

3) Felix: Build G1 Felix

4) dlwillson: B G1 Dlwillson

5) Felix: Trade G1 R1 Felix
	dlwillson: You should accept my other challenge, too...
	Felix: I didn't see it for some reason!

Have fun and good luck :)

6) dlwillson: Trade G1 R1 Dlwillson

7) Felix: Build R2 Felix

8) dlwillson: B R2 Dlwillson

9) Felix: Trade R2 Y2 Felix

10) dlwillson: T R2 Y2 Dlwillson

11) Felix: Build R2 Felix
	dlwillson: Copy cat turns :-(

12) dlwillson: Build R2 Dlwillson
	Felix: It's inevitable. I do not mind!

13) Felix: Discover R2 Felix G2 Out

14) dlwillson: Discover R2 Dlwillson G1 Field

15) Felix: Build R3 Out

16) dlwillson: Build R3 Field

17) Felix: D R1 Felix G2 Krimbus

18) dlwillson: T R1 B1 Dlwillson

19) Felix: B Y1 Felix

20) dlwillson: M B1 Dlwillson Field

21) Felix: T Y1 B1 Felix

22) dlwillson: Trade R3 Y3 Field

23) Felix: Move B1 Felix Out

24) dlwillson: Build Y1 Dlwillson

25) Felix: Trade R3 Y3 Out

26) dlwillson: Discover Y1 Dlwillson B1 Sea
	Felix: This has been an oddly symmetrical game so far.

27) Felix: Move R2 Out Sea
	dlwillson: I think that's going to change soon. Somewhere in the next three turns, or four at most. The bank is running too low for all this peaceful copy-catting to continue much longer.

28) dlwillson: D Y1 Sea B2 Sky
	Felix: Voila. :)

29) Felix: Build B2 Out

30) dlwillson: Build B2 Field

31) Felix: Discover B2 Out G1 Linter

32) dlwillson: Trade B2 G2 Field

33) Felix: B B2 Out

34) dlwillson: B B3 Field

35) Felix: Build Y1 Out

36) dlwillson: Move G2 Field Sky

37) Felix: Move Y1 Out Linter

38) dlwillson: M B3 Field Krimbus

39) Felix: Build Y1 Linter

40) dlwillson: B G1 Sky

41) Felix: Sacrifice G3 Felix
Build Y2 Out
Build Y3 Felix
Build R1 Sea

42) dlwillson: B G3 Sky

43) Felix: S Y2 Felix
M R1 Krimbus Linter
M R2 Sea Dlwillson
	Felix: Thought it was too risky, then decided to do it anyway. :)

44) dlwillson: Sacrifice Y3 Field
Move G1 Sky Linter
Move G2 Sky Linter
Move G3 Sky Linter
Catastrophe Linter G
	dlwillson: That is not what you were supposed to do.

45) Felix: Trade B1 R1 Out

46) dlwillson: Attack R2 Dlwillson
	Felix: Sorry for the delayed undo. Realized I made a grave mistake!
	Draw5PlayAll: How?
	dlwillson: <sigh> Now, I have to *think*. Dangit.

47) Felix: Move Y3 Out Field
	dlwillson: I'm not sure that was correct, but it sure was fun.

48) dlwillson: Trade R2 Y2 Field
	Felix: It has certainly set back my doomsday machinations!

49) Felix: Move R1 Out Field

50) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Field
Build Y1 Field
Build Y3 Dlwillson
Catastrophe Field Y
	Felix: This will be more difficult than I hoped. You're not behaving!

51) Felix: Attack B1 Field

52) dlwillson: Move R2 Dlwillson Field

53) Felix: Build R2 Field
	dlwillson: And I'm pretty sure that was wrong. But it was fun, too. I'll just keep making fun, wrong moves until one of us wins. :-)

54) dlwillson: Attack R2 Field
	Felix: I like your style! Your wild flailing is really setting back my plans :P

55) Felix: Build R3 Field
Catastrophe Field Red
	dlwillson: I have successfully stopped your first wave, and am now shooing your kids off my lawn!

56) dlwillson: Trade Y3 G3 Dlwillson
	Felix: Aw, nuts. I knew I shouldn't have let that red catastrophe sit for so long. Well played.

57) Felix: Build B1 Field

58) dlwillson: Build B2 Krimbus

59) Felix: Trade Y3 G3 Felix
	dlwillson: That's one of Wil's puzzlers! What is the correct response?
1) Build an r3
2) Capture the r2
3) Something else
And why?

60) dlwillson: Trade B2 Y2 Krimbus

61) Felix: Build G1 Felix
	Felix: I almost always build R3s when I can :)

62) dlwillson: B Y1 Dlwillson
	dlwillson: In my position, attacking your r2 was better, because it encouraged you to build the r3, which gave me the first "free" move. I'm still not out of danger. *LOTS* of Northern kids still on my lawns.

63) Felix: S Y2 Out
M B1 Field Dlwillson
M B1 Field Dlwillson

64) dlwillson: S Y2 Krimbus
M Y1 Dlwillson Sea
D Y1 Sea B2 Also Sky

65) Felix: Trade B2 Y2 Out

66) dlwillson: B B2 Krimbus

67) Felix: S Y2 Out
M R1 Sea Dlwillson
Pass
	Felix: Blah. This sure isn't turning out how I hoped, though. When did you nearly monopolize yellow while I wasn't looking?

68) dlwillson: B B1 Krimbus
	dlwillson: That took a lot of thinking! I finally decided to go with denial, but at a very high cost.

69) Felix: T B1 R1 Dlwillson

70) dlwillson: Discover Y2 Dlwillson B1 Sea
	Felix: Stop foiling my plans!

71) Felix: Sacrifice G1 Felix
Build R2 Dlwillson
Catastrophe Dlwillson Red
	dlwillson: Stop making plans that are so hard to foil oh, so that I can begin to make plans of my own. And then you can foil my plans instead!
	dlwillson: Speech-to-text is pretty good but not perfect yet.

72) dlwillson: Sacrifice B3 Krimbus
Trade G3 R3 Dlwillson
Trade Y1 G1 Also
Trade Y1 G1 Sky
	dlwillson: What is the protocol around captures in the home system? We have the relatively common situation where we can endlessly capture the same piece back and forth. I generally avoid capturing any piece my opponent can capture back, but we're now in the situation where it matters more than a little.

73) Felix: T B1 R1 Dlwillson

74) dlwillson: Attack R1 Dlwillson
	Felix: Hmm, I generally try to find creative alternatives when possible so those repetitive situations don't occur!

75) Felix: Pass

76) dlwillson: Trade B2 Y2 Krimbus
	Felix: You deflected my attack so well. Where did all my material go? :(

77) Felix: T G3 R3 Felix
	dlwillson: I was thinking you'd trade an r1 for a g1 at dlwillson last turn, then when I swapped b3 to r3, you'd build something (the big blue?) and have four at dlwillson, and I probably wouldn't be able to recover.

78) dlwillson: Build B1 Krimbus
	Felix: Huh. I didn't even think of that. But what would have stopped you from just attacking my g1 at that point without trading for the r3?
	Felix: Oh, do you mean after I catastrophed red?
	Felix: I've made a lot of mistakes during this attack run, and you defended insanely well. Great game!

79) Felix: T R3 Y3 Felix

80) dlwillson: T B1 R1 Krimbus

	Felix: If I think there's a chance my opponent could still make a mistake, I tend to prefer playing it out. But there's no hope for me now. Very well played. I admit I thought I had you and am a bit stunned at how you undermined my every approach with the doomsday devices. One for the books. You deserve that top slot!
	dlwillson: Thanks! Hard fought game! I thought I was going to get you with yellow way back when. Then, I saw the doomsday machine and had to burn half my fleet to stop it! Excellent game.
	dlwillson: It would be cool if Andy and John theatered this.
	Draw5PlayAll: If you want that, do them a favor and always call your systems Altair, Betelgeuse, Caster, etc in future games.
	dlwillson: That matters? If it does, I'll do it, but I had a system, already with Field and Forest, Sea and Sky, Golden and Sol, and ... Um ... Mars and something.
	Felix: It doesn't matter. They just sub those system names in automatically when they prepare a transcript of the game, from what I've been told.
	wil: It is a large matter of cut and pasting and editing...  eliminating the chatter... find and replace the system names globally as well as the names of the players...  If we find a game we'd like to see them try...  A game name and description of what would be of interest (frontal attack, bluebird, universe reboots, monopolizing economies etc.)  I am sure they'd really appreciate editing.


33140)
Variants: "Unrated, Hard time"
Started: 2017.9.13, Ended: 2017.10.22
Participants: mneme (S), shoejitsu (N)
Winner: mneme

1) shoejitsu: Homeworld G2 R1 B3

2) mneme: Homeworld B3 R2 G3

3) shoejitsu: Build B1 Shoejitsu

4) mneme: Build G1 Mneme

5) shoejitsu: Build B1 Shoejitsu

6) mneme: Trade G1 B1 Mneme

7) shoejitsu: Trade B1 Y1 Shoejitsu

8) mneme: Build G1 Mneme

9) shoejitsu: Build Y1 Shoejitsu

10) mneme: Trade G1 Y1 Mneme

11) shoejitsu: Trade B1 G1 Shoejitsu

12) mneme: Build Y2 Mneme

13) shoejitsu: Discover G1 Shoejitsu R3 Soar

14) mneme: Discover Y2 Mneme G1 Thalia

15) shoejitsu: Build Y2 Shoejitsu

16) mneme: Sacrifice G3 Mneme
Build Y2 Mneme
Build Y3 Mneme
Build Y3 Thalia

17) shoejitsu: Trade Y1 B1 Shoejitsu

18) mneme: Trade Y3 G3 Mneme

19) shoejitsu: Move Y2 Shoejitsu Soar

20) mneme: Discover Y2 Thalia B3 Euterpe

21) shoejitsu: Build Y1 Soar

22) mneme: Trade Y2 R2 Mneme

23) shoejitsu: Build Y2 Shoejitsu

24) mneme: Sacrifice G3 Mneme
Build Y3 Mneme
Build Y3 Euterpe
Build R1 Mneme

25) shoejitsu: Trade B1 R1 Shoejitsu

26) mneme: Trade Y2 R2 Euterpe

27) shoejitsu: Move R1 Shoejitsu Soar

28) mneme: Trade R2 G2 Mneme

29) shoejitsu: Discover R1 Soar G1 Orion

30) mneme: Trade Y3 G3 Mneme

31) shoejitsu: Build R2 Orion

32) mneme: Sacrifice G2 Mneme
Build Y2 Euterpe
Build Y3 Mneme

33) shoejitsu: Build G2 Soar

34) mneme: Move R1 Mneme Thalia

35) shoejitsu: Build G2 Soar

36) mneme: Build G3 Mneme

	shoejitsu: While I didn't mean for this to go to time... I didn't feel like I had much to do anyway :D good game!
	mneme: Yeah, that's fair enough. Good game!


33160)
Variants: "No undo, Unrated, Sinister, Hard time"
Started: 2017.9.13, Ended: 2017.9.30
Participants: dlwillson (S), Felix (N), wil (E)
Winner: wil

1) Felix: Homeworld Y2 B3 G3
	dlwillson: Hi guys! Thanks for accepting the challenge! This is just a friendly game. Un-ranked, no take backs, sinister. Cause the player on your left to lose, and you win!
	dlwillson: I gave it a short starting bank, but a big max bank in case one of us has a business trip or vacation in the Himalayas or somewhere else there's no signal.

2) wil: H Y2 B1 G3
	Felix: No problem, should be fun :)
	wil: How did I sign up for a multiple game?  Oh well....its you two...maybe it will work.
	wil: So I gotta take out Willson...hmmm

3) dlwillson: H B3 Y1 G3

4) Felix: Build G1 Felix
	wil: Reminder for attacks...  ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E).
	wil: Not that anyone has red
	dlwillson: Wil: I like movies live music, and Scotch.
	Felix: Interesting. I assumed at least one of you would take some red! 

@wil Thanks for the tip :)

@dlwillson bahahaha, I see what you did there.

5) wil: B G1 Wil
	wil: My plan is taking you on a long walk in the woods...

6) dlwillson: B G1 Dlwillson
	wil: I'd like to devise a tourney where everyone starts at.the same game
..one that is half over, 3/4ths the pieces in play, and evenly matched...a coin flip decides who gets which side and the other person goes first...   As an attempt to shorten tourney duration...thoughts?
	wil: I'd also like "two moves to mate" puzzles.
	wil: And a root beer float
	wil: Not really, I don't like root beer...but I'll have that scotch.

7) Felix: Trade G1 R1 Felix
	dlwillson: That tournament idea is great! And, the positions don't need to be balanced, you just play two games from those positions and switch seats for the second game.
	Felix: Interesting idea. How do you get the game to that midway point in the first place, though?

8) wil: Trade G1 Y1 Wil

9) dlwillson: Trade G1 R1 Dlwillson
	wil: I'm thinking either just pick a tight game, or make up a tight game...  that will be one of the turning points in this game...when folks can stop and say...this is where I went wrong...lets back up to that point and see where it goes. 

10) Felix: B R1 Felix

11) wil: B Y1 Wil

12) dlwillson: B G1 Dlwillson

13) Felix: Trade R1 Y1 Felix
	dlwillson: I think that's a great idea. A little like duplicate bridge.

14) wil: D Y1 Wil G3 G3
	wil: Yes, I hadn't thought of that, but yes.

15) dlwillson: B R1 Dlwillson

16) Felix: Build Y2 Felix

17) wil: S G3 Wil
B Y2 G3
B Y3 G3
B Y3 Wil

18) dlwillson: Discover R1 Dlwillson B2 Sea
	wil: If Felix attacks it gives him the advantage over me yet gives Willson the advantage over him?  
	dlwillson: Good Lord! What's going on around here?!

And yes, that's a good synopsis of sinister.

19) Felix: Discover Y1 Felix G1 Out

20) wil: T Y3 G3 Wil
	Felix: So, so tempting...
	wil: Not when I actually just gave you the yellow threes dangit!

21) dlwillson: B R1 Dlwillson

22) Felix: Move Y1 Out G3
Catastrophe G3 Yellow

23) wil: Build G1 Wil
	Felix: Also tempting, but I had to serve the greater good!
	dlwillson: Your charity is noted, but any credit is moderated by a note that Wil is to your left.
	wil: Wow...traded out getting into the threes...

24) dlwillson: Build R2 Dlwillson
	Draw5PlayAll: Whoa, this confused me! It felt like I had been eliminated from the 4P game for some reason...
	Draw5PlayAll: About your tournament idea, it could be that one player picks the position and the other player picks which side they are on, so you have an incentive to balance the position or risk getting the worse side. 

Playing two games from an unbalanced position will recreate the one thing I dislike about the game ChessCards, which is that most of the time there is an easy win that P1 has to demonstrate for P2 and you just get a draw every time.

And wil, this is not a comment about your current game, just on an idea you guys had.
	wil: lol

25) Felix: B R2 Felix

26) wil: T G3 R3 Wil

27) dlwillson: Discover R2 Dlwillson Y2 Golden
	wil: I've goofed up here royally

28) Felix: D R2 Felix B1 Glint

29) wil: B R2 Wil
	Felix: Likely I have as well, for passing up those Y3s!

30) dlwillson: S G3 Dlwillson
B R2 Sea
B R3 Golden
B R3 Dlwillson

31) Felix: B R3 Felix

32) wil: B Y1 Wil

33) dlwillson: T R3 Y3 Dlwillson

34) Felix: Build R3 Felix

35) wil: T R3 G3 Wil

36) dlwillson: Sacrifice Y3 Dlwillson
Move R1 Sea Glint
Move R1 Glint Felix
Catastrophe Felix R
Discover R2 Golden B3 Eastern_sky

37) Felix: Sacrifice Y2 Felix
Move R2 Glint Golden
Move R2 Golden Dlwillson
	dlwillson: 3 is different from 2

38) wil: D Y1 Wil G3 G3
	Felix: This is fun. Buck the system :)

39) dlwillson: B R1 Dlwillson
C Dlwillson R
	wil: <wil's eyebrows raise, and pretends to casually look away whistling nonchalantly>
	Felix: They say offense is the best defense.... or something like that.

40) Felix: Build G1 Felix
	dlwillson: I'm not dead... I'm feeling better...

41) wil: B Y1 Wil
	Felix: ... I've made a terrible mistake.

42) dlwillson: M R3 Golden Dlwillson

43) Felix: Discover G1 Felix B1 Out

44) wil: B Y2 G3

45) dlwillson: T R2 Y2 Sea

46) Felix: Build G1 Felix
	dlwillson: I should've done that last turn... Oops!

47) wil: S Y2 G3
D Y1 Wil B3 B3
D Y1 Wil Y3 Y3
	Felix: Captain, your petulant little attacks have left our fleet (what remains of it) floundering, without access to propulsion technology. What should we do?

"KEEP FIRING!!!!!!!!"

Sir, we have no weapons either. What shall we do?

"....LUDICROUS SPEED.... GO!"

But I already told you, we have no propu-

"LUDICROUS GREEN.... GO!!!!"

Well... alright then.

48) dlwillson: Build G2 Dlwillson

49) Felix: Build G2 Out
	dlwillson: Do you play Magic? Back when the game made sense, I used to call green stompy decks "stupid green", because you didn't have to know any strategy or do anything clever. Just play the cards and stomp the crap out of the other guy before s/he does something crafty. (Like suicide black, but without the risk of killing yourself first accidentally.)
	wil: Not I, but stupid green is a thing...
	dlwillson: I can never *quite* get rid of the urge to bring black into Homeworlds somehow. And I'm embarassed to admit that I just *now* realized that the Rainbow colors are the Magic colors. No, wait... They're not. Rainbow has yellow; MTG has white. So, I guess there's a partial Moody Blues transformation "red is grey and yellow white"... Something something... I need to get back to work.
	dlwillson: I suppose technically, there's no reason black *couldn't* be in the game *without* adding rules. It just wouldn't carry a technology, because it doesn't have a color. Being forced to choose one black pyramid for something on turn zero could be a mild handicap for a strong player.
	dlwillson: Being forced to choose a black *ship* could be a moderate handicap for a stronger player.
	Felix: That could actually be a bit interesting. It doesn't carry any technology in itself, but it can passively use the tech of other ships or stars either by sharing a star or from sacrifice moves. Interesting, but beyond that one use as a handicap piece, I'm not really sure what other use there'd be for the concept. I never played Magic. I wasn't even allowed to play with Pokemon cards as a kid :P

50) wil: Sacrifice G3 Wil
Build Y2 G3
Build Y3 G3
Build Y3 B3
	wil: I have a new player, yet to learn the complexities of the game, wants to add a purple...  also wants to add docking to the game (a one going into a two and increasing power and or tech but not both)

51) dlwillson: Sacrifice G2 Dlwillson
Build R1 Eastern_sky
Build R1 Eastern_sky
	wil: well dang...no coin moving...so much for not double checking

52) Felix: T G3 Y3 Felix
	dlwillson: no coin moving?
	wil: No undo... I've used the solo undo here often as the turn token...
	dlwillson: I'm still not sure I understand, but I will not turn off undo anymore.

53) wil: S Y2 G3
M Y3 G3 Wil
M R2 Wil Eastern_sky
C Eastern_sky R
	Felix: The docking idea has some potential as a variant... but I just don't see the need to tweak the game at all. It's already so well balanced. I do like the idea of some variants though. There is a "worldships" variant on board game geek that has a lot of potential, though I've never played it.
	wil: Yes, I told the kid (but he already knows everything) when he learns to beat me regularly...then he should contemplate improving the game that I enjoy more than chess...that I played for 50 years....

54) dlwillson: S G1 Dlwillson
B Y2 Sea

55) Felix: Build G1 Felix

56) wil: B G2 Wil

57) dlwillson: Move Y2 Sea G3
	wil: So is it last man standing or first one to knock out the homeworld to their left?  Vastly different strategy....if you need to be strong enough to be attacked after attacking...
	wil: So you guys don't use a turn token in live play?  So you can rearrange ships.and stars a few times before you make your final decision?  And then when you have come.to.the conclusion slide.the coin to the other player after multiple "undo's"?
	dlwillson: The first player to lose causes the player to his right to win.

58) Felix: Discover G1 Felix B1 Doubt

59) wil: T G2 R2 Wil
	wil: Ah, thanx...  And you both are to be commended on the speed of this game!!  
	wil: Idk what you are plotting dl

60) dlwillson: Move Y2 Sea Doubt

61) Felix: Build G2 Doubt
	dlwillson: I forgot to answer about the token. No, I've never used a turn-token in real life. I have used a chess-clock, though... Is it still a chess-clock, if one is using it for Homeworlds?
	dlwillson: I don't know what I'm plotting, either. I hope I figure it out, soon.
	Felix: I've not used the turn token much, myself, though I've tried. Usually we just end up doing it verbally: "Ok, your turn" instead of with an actual token.



62) wil: B G2 Wil

63) dlwillson: T Y2 R2 Doubt

64) Felix: Trade G2 Y2 Out

65) wil: T G1 B1 Wil

66) dlwillson: A G2N Doubt

67) Felix: Build G1 Doubt
	dlwillson: It's annoying that I have to say g2n when g2 is unambiguous.

68) wil: B G2 Wil
	Draw5PlayAll: I want to use turn tokens and the end up forgetting.
	dlwillson: I've tried to to use turn tokens, but they always fall. Someone forgets, someone accepts the nonverbal, non-token cue, and that's the end of it.

69) dlwillson: S G2 Doubt
B R1 Doubt
B R1 Dlwillson

70) Felix: Build G2 Out

71) wil: B B2 Wil

72) dlwillson: T R3 G3 Dlwillson

73) Felix: T G2 R2 Out

74) wil: M G2 Wil Y3

75) dlwillson: Sacrifice R2 Doubt
Attack G1N Doubt
Attack G1N Doubt

76) Felix: Build G2 Out

77) wil: T Y3 G3 B3

78) dlwillson: Sacrifice R1 Doubt
Attack Y1E G3

79) Felix: Build Y3 Out

80) wil: D Y1 Y3 B2 B2

81) dlwillson: Sacrifice G1 Doubt
Build G1 Dlwillson

82) Felix: T G2 B2 Out

83) wil: D B2 Wil G3 Gee3

84) dlwillson: Move Y2 G3 Doubt

85) Felix: Move B2 Out G3
	dlwillson: You both look pretty stacked. I'm feeling pretty puny.

86) wil: S G2 Y3
B G2 B3
B Y3 B3
	Felix: I'm not really sure how I've been able to build back up after my flailing, petulant attack against you early on. Wil was the real beneficiary of all that tomfoolery.

87) dlwillson: Move Y1 G3 Doubt

88) Felix: Build B2 G3

89) wil: M B1 Wil G3

90) dlwillson: B G2 Doubt

91) Felix: T B2 R2 G3

92) wil: B B2 G3

93) dlwillson: M G2 Doubt B2

94) Felix: Sacrifice R2 G3
Attack B1E G3
Attack B2E G3

95) wil: S G3 B3
B G2 Wil
B G3 B3
B B3 Gee3

96) dlwillson: S R1 Dlwillson
A Y1E B2

97) Felix: Sacrifice Y3 Out
Move B1 G3 Wil
Move B2 G3 Wil
Move B2 G3 Wil
Catastrophe Wil Blue

98) wil: S Y3 B3
M G2 Wil Dlwillson
M G2 Wil Dlwillson
M B3 Gee3 Out
C Dlwillson G
	wil: Ya gave me access!
	Felix: Oops! Sorry Dlwillson D:
	dlwillson: LOL! :-) Excellent!

	dlwillson: That was an excellent game, I think. Felix, we both did something. I sacrificed my red. Really good game. I'll be more careful next time. :-)
	Felix: It's so hard to prepare for the repercussions of your moves when there are two opponents between each of your turns!
	dlwillson: Shall we do it again, but with take-backs?
	Felix: I'm game!
	wil: I'm in...as long as you guys play just like you did...I thought you all were AWESOME!!



33142)
Variants: "Unrated, Hard time"
Started: 2017.9.13, Ended: 2017.9.26
Participants: eliscinsky (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) eliscinsky: Homeworld R2 B3 G3

3) mneme: Build G1 Mneme

4) eliscinsky: Build G1 Eliscinsky

5) mneme: Trade G1 R1 Mneme

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) mneme: Build R1 Mneme

8) eliscinsky: Build Y1 Eliscinsky

9) mneme: Build G1 Mneme

10) eliscinsky: Discover Y1 Eliscinsky B1 Alpha

11) mneme: Trade G3 Y3 Mneme

12) eliscinsky: Build G1 Eliscinsky

13) mneme: Discover R1 Mneme G3 Calliope

14) eliscinsky: Build G1 Eliscinsky

15) mneme: Build G2 Mneme

16) eliscinsky: Trade G1 B1 Eliscinsky
	mneme: Have a good (the great tournament) game!

17) mneme: Build R2 Calliope

18) eliscinsky: Build G1 Eliscinsky

19) mneme: Sacrifice Y3 Mneme
Move G1 Mneme Calliope
Move G1 Calliope Alpha
Move G1 Alpha Eliscinsky
Catastrophe Eliscinsky G

20) eliscinsky: Trade Y1 G1 Eliscinsky

21) mneme: Build R2 Mneme

22) eliscinsky: Build G1 Eliscinsky

23) mneme: Build R3 Calliope

24) eliscinsky: Trade G1 Y1 Eliscinsky

25) mneme: Trade R2 Y2 Mneme

26) eliscinsky: Build G1 Eliscinsky

27) mneme: Sacrifice Y2 Mneme
Discover R2 Calliope G1 Melpomene
Move R2 Melpomene Eliscinsky

28) eliscinsky: Move G1 Eliscinsky Alpha

29) mneme: Sacrifice R3 Calliope
Attack Y1 Eliscinsky
Attack G1 Eliscinsky
Attack B1 Eliscinsky
	mneme: good game!
	eliscinsky: Thanks. I still have no Idea what I'm doing LOL!
	mneme: I can play a teaching game if you like!

Fundamentally, the game is all about making sure you have what you need to win, while denying it to your opponent, by manipulating not only your own pieces but the supply.  

This was why my move on turn 10 (click on history to see a listing style of the game) was very good, and fundamentally won the game; I gave up my large, but I reduced you to smalls without a strong prospect if getting anything larger, with me still keeping a strong red growth engine, so I could build an overpowering attack before you could recover.  

As it was, you could have delayed me for another two turns by growing ships -- once I started capturing, you could delay me by just capturing smalls back, so I needed enough red power that I could continuously capture until the game ended.  If you'd grown a ship, I'd have grown a medium red -- that would have given me a combined 7 attack, which -still- wasn't enough to capture 6 ships; I sac large red to take 3, you capture one back and have 4, I sac a medium red and take 2, you capture one back and have 3, I sac a medium red and have 2, and you capture one back and have 2 and I'm out of artillery.  So I'd have gone one -more- round of prep and grown another large red before going off; at that point even if you went to 7 ships (7 was basically your limit, too, since your home could only hold 3 greens, 2 blues, and 3 yellows--and since you can't capture back a medium if I take your only one, the 3rd green was a non-starter), I could take them all; 1 3 red to drop you from 7 to 4 (which could go to 5), another 3 red to go from 5 to 2, and the two red ships could take out the remaining 3 ships even if you grew or captured every turn.



33169)
Variants: "Unrated, Hard time"
Started: 2017.9.14, Ended: 2017.9.23
Participants: Remneb (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B1 Y2 G3

2) Remneb: Homeworld R1 B2 G3

3) Babamots: Build G1 Babamots

4) Remneb: Build G1 Remneb

5) Babamots: Trade G1 R1 Babamots

6) Remneb: Trade G1 Y1 Remneb

7) Babamots: Build R1 Babamots

8) Remneb: Build G1 Remneb

9) Babamots: Build R2 Babamots

10) Remneb: Trade G1 B1 Remneb

11) Babamots: Discover R2 Babamots B3 Galorndon

12) Remneb: Build G1 Remneb

13) Babamots: Build R2 Babamots

14) Remneb: Build Y1 Remneb

15) Babamots: Discover R2 Babamots B3 Vulcan

16) Remneb: Discover Y1 Remneb G3 Malvern

17) Babamots: Sacrifice G3 Babamots
Build R2 Vulcan
Build R3 Galorndon
Build R3 Babamots

18) Remneb: Discover G1 Remneb Y3 Altair
	Babamots: Aaarr, it be Talk Like a Pirate day! Sure as all these red ships be makin' me like a space pirate, matey!
	Remneb: You will destroy my red star for sure :)

19) Babamots: Trade R3 G3 Galorndon

20) Remneb: Build G1 Remneb

21) Babamots: Build R3 Galorndon

22) Remneb: Discover G1 Remneb Y3 Sand

23) Babamots: Build R3 Galorndon

24) Remneb: Build Y1 Remneb

25) Babamots: Trade R2 Y2 Vulcan

26) Remneb: Discover Y1 Remneb B3 Polix

27) Babamots: Sacrifice Y2 Vulcan
Move G3 Galorndon Remneb
Move R3 Galorndon Remneb

28) Remneb: Attack G3 Remneb

29) Babamots: Sacrifice R2 Galorndon
Attack G3S Remneb
Attack G3S Remneb

	Remneb: Thanks for the game. Well done,
	Babamots: Thanks! I'll let your crews live :-P. Good luck in the tournament!


33100)
Started: 2017.9.15, Ended: 2017.9.15
Participants: ts52 (S), Hambone (N)
Winner: ts52



33189)
Variants: "Hard time"
Started: 2017.9.18, Ended: 2017.11.7
Participants: goulo (S), SilentTitan (N)
Winner: SilentTitan

1) SilentTitan: Homeworld B1 R3 G3

2) goulo: Homeworld B1 R2 G3

3) SilentTitan: Build G1 Silenttitan
	goulo: hi!

4) goulo: Build G1 Goulo
	SilentTitan: Hello

5) SilentTitan: Trade G1 B1 Silenttitan

6) goulo: Trade G3 B3 Goulo

7) SilentTitan: Build B2 Silenttitan

8) goulo: Build B2 Goulo

9) SilentTitan: Trade B2 Y2 Silenttitan

10) goulo: Trade B3 Y3 Goulo

11) SilentTitan: Build B2 Silenttitan

12) goulo: Build B2 Goulo

13) SilentTitan: Discover B2 Silenttitan G2 Sol

14) goulo: Trade B2 Y2 Goulo

15) SilentTitan: Build B2 Sol

16) goulo: Discover B2 Goulo G3 Verdego

17) SilentTitan: Trade B2 Y2 Sol

18) goulo: Build G1 Goulo

19) SilentTitan: Build Y1 Sol

20) goulo: Trade G1 R1 Goulo

21) SilentTitan: Trade Y1 R1 Sol

22) goulo: Move Y2 Goulo Verdego

23) SilentTitan: Build R1 Sol

24) goulo: Move R1 Goulo Verdego

25) SilentTitan: Build Y1 Sol

26) goulo: Build R2 Verdego

27) SilentTitan: Trade Y2 G2 Sol

28) goulo: Build B2 Verdego

29) SilentTitan: Discover B1 Silenttitan Y2 Soul

30) goulo: Move R2 Verdego Soul

31) SilentTitan: Sacrifice G2 Sol
Build B3 Sol
Build B3 Soul

32) goulo: Discover R2 Soul Y3 Flavego

33) SilentTitan: Trade B3 Y3 Sol

34) goulo: Discover B2 Verdego G2 Verdo

35) SilentTitan: Move B3 Soul Verdego

36) goulo: Build B3 Verdo

37) SilentTitan: Build B3 Sol

38) goulo: Sacrifice Y2 Verdego
Move R1 Verdego Verdo
Move B2 Verdego Soul

39) SilentTitan: Sacrifice B1 Soul
Trade B3 R3 Verdego

40) goulo: Move R2 Flavego Verdo

41) SilentTitan: Discover B3 Sol Y3 Sole

42) goulo: Build Y1 Goulo

43) SilentTitan: Build R2 Verdego

44) goulo: Build R3 Verdo

45) SilentTitan: Sacrifice Y1 Sol
Move R2 Verdego Verdo
Catastrophe Verdo Red

46) goulo: Trade B2 Y2 Verdo

47) SilentTitan: Trade B2 R2 Sol

48) goulo: Build B1 Verdo

49) SilentTitan: Sacrifice Y2 Silenttitan
Move B3 Sole Goulo
Move R3 Verdego Goulo

	goulo: thanks, congrats, well played!
	SilentTitan: Thank you


33182)
Started: 2017.9.19, Ended: 2017.10.9
Participants: ts52 (S), Felix (N)
Winner: ts52

1) Felix: Homeworld B2 R3 G3

2) ts52: Homeworld Y1 B2 G3
	Felix: Salutations! I hope you're not too busy with tournament games to take on another normal game. Have fun :)
	ts52: Always happy to play another game!

3) Felix: Build G1 Felix

4) ts52: Build G1 Ts52

5) Felix: Trade G1 Y1 Felix

6) ts52: Trade G1 Y1 Ts52

7) Felix: Build Y2 Felix

8) ts52: Build Y2 Ts52

9) Felix: Discover Y1 Felix G1 Out

10) ts52: Discover Y1 Ts52 G3 Kermit

11) Felix: B G1 Felix

12) ts52: Build G1 Ts52

13) Felix: T G1 B1 Felix

14) ts52: Trade G1 B1 Ts52

15) Felix: M B1 Felix Out

16) ts52: Move B1 Ts52 Kermit

17) Felix: Build G1 Felix

18) ts52: Discover Y2 Ts52 B3 Gonzo

19) Felix: Build Y2 Out

20) ts52: Build Y3 Kermit

21) Felix: Build Y3 Felix

22) ts52: Discover Y1 Kermit G1 Oscar

23) Felix: Trade Y1 R1 Out

24) ts52: Build G2 Ts52

25) Felix: S Y3 Felix
M G3 Felix Out
M G3 Out Kermit
M G3 Kermit Ts52

26) ts52: Move Y3 Kermit Ts52
	ts52: Dammit! Well played. I never think of people abandoning all larges in their homeworld.

27) Felix: Sacrifice R1 Out
Attack Y3 Ts52

28) ts52: Trade G2 R2 Ts52
	Felix: It's a risky move, but I like to surprise people with it from time to time. Thank you :) But I'm not celebrating yet! This is still a delicate situation...

29) Felix: Sacrifice G3 Ts52
Build Y1 Ts52
Build Y3 Ts52
Build Y3 Felix
Catastrophe Ts52 Yellow

30) ts52: Build G2 Ts52

31) Felix: Build B1 Out

32) ts52: Sacrifice Y1 Oscar
Move R2 Ts52 Out

33) Felix: Sacrifice Y2 Out
Discover B1 Out Y3 In
Move B1 Out In

34) ts52: Trade G2 Y2 Ts52

35) Felix: D B1 In G1 Integer

36) ts52: Sacrifice Y2 Gonzo
Move R2 Out In
Move B1 Kermit Integer

37) Felix: Discover B1 In G1 Remote

38) ts52: Move R2 In Remote

39) Felix: Sacrifice Y2 Felix
Move B1 Remote Ts52
Discover B1 Integer G3 Brink
	Felix: Round and round we go...

40) ts52: Sacrifice R2 Remote
Attack B1 Ts52
Pass

41) Felix: Build B2 Brink

42) ts52: Move B1 Ts52 Brink

43) Felix: Trade B2 R2 Brink

44) ts52: T B1 R1 Brink
	ts52: Yeah, I'm pretty sure you're going to win at the end of this cycle, but still curious to see how it plays out.

45) Felix: A R1 Brink

46) ts52: T B1 R1 Integer

47) Felix: Build B1 Brink

48) ts52: Move G3 Ts52 Brink

49) Felix: Sacrifice Y3 Felix
Move B1 Brink Ts52
Move B1 Brink Ts52
Discover R2 Brink B1 Ingot

50) ts52: Sacrifice R1 Integer
Attack B1 Ts52
	ts52: Well played sir. Good game.

51) Felix: Trade R2 B2 Ingot
	Felix: Thank you!

... I'ms till puzzling over how to actually finish the job, though.

52) ts52: Trade B1 R1 Ts52

53) Felix: Trade B2 G2 Ingot

54) ts52: Attack B1 Ts52

55) Felix: Build G1 Felix
	Felix: Oh my goodness. I completely messed up. I meant to trade my r2 for a g2 last turn, and thought I had. That's what I get for not double checking my move. Doh!

56) ts52: Sacrifice Y2 Ts52
Move G3 Brink Ingot
Move G3 Ingot Felix

57) Felix: Trade G1 Y1 Felix
	ts52: I may manage to eek this one out yet. ;)
	Felix: I would have had you this turn if not for that blunder! Darn. Just goes to show that it's never over until it's over!

58) ts52: Attack Y1 Felix

59) Felix: Build G1 Felix
	ts52: agreed, you had me dead to rights

60) ts52: Build G1 Felix
Catastrophe Felix Green

	Felix: Good game! So mad at myself. I'll be double checking every move from now on!
	ts52: :) Thanks for the game!


32748)
Variants: "Unrated, Hard time"
Started: 2017.9.19, Ended: 2017.9.24
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: Homeworld B2 Y1 G3

2) Felix: Homeworld Y3 B2 G3
	wil: Is this a round robin challenge.

3) wil: B G1 Wil
	Felix: Nah, just a fun game, if you can handle it with all the others you have :) We already played our round robin game I believe, unless there are supposed to be more?
	wil: Lol, I didn't look, it is time for me to.challenge someone...

	wil: Been teaching a few locals to play, I now have two that I can consistently get in a game with.  One is real bright and sees possibilities for escape that I would never.


4) Felix: Build G1 Felix

5) wil: T G1 B1 Wil
	Felix: That's fantastic! Tell them to get on here so I can play them :)

6) Felix: Trade G1 B1 Felix
	wil: I'm working on getting one on.. 

7) wil: B G1 Wil

8) Felix: Build B1 Felix

9) wil: B B2 Wil

10) Felix: Discover B1 Felix G1 Linter

11) wil: D B1 Wil Y3 Y3
	wil: 3 newbies that play regular now... All of them teaching one or two others.  And then my two regular folks... I now average over 10 games offline a week...I should be improving

12) Felix: Build B3 Linter
	wil: We will have none of that nonsense
	Felix: Just in time to win the tournament, perhaps :) I must say I'm jealous of all the offline games you get to play!

13) wil: S G3 Wil
B B3 Wil
B G1 Wil
B B3 Y3
	wil: Thx to encouraging friends to buy pyramid arcade...and introducing them to easier games first.   Most who bought are not interested in homeworlds...so I still play a lot of petri dish, volcano, color wheel, blame, martian chess..

14) Felix: Trade B3 Y3 Linter

15) wil: Trade B2 Y2 Wil

16) Felix: Build G2 Felix

17) wil: Build G2 Wil

18) Felix: Trade G2 R2 Felix

19) wil: Trade B1 R1 Y3

20) Felix: B G2 Felix

21) wil: D G1 Wil B3 B3

22) Felix: Discover G2 Felix B1 Splinter

23) wil: M G2 Wil Y3 Y3

24) Felix: Build G2 Felix

25) wil: B G3 Y3

26) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Splinter
Build B2 Linter

27) wil: S G3 Y3
B G3 Y3
B R1 Y3
B R1 Y3

28) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Linter
Build Y1 Linter

29) wil: D R1 Y3 Y2 Y2

30) Felix: Move B2 Linter B3

31) wil: S G1 B3
B R2 Y2

32) Felix: Sacrifice Y3 Linter
Move B1 Linter B3
Move B1 B3 Wil
Move B2 B3 Wil
Catastrophe Wil Blue

33) wil: S Y2 Wil
M G3 Y3 Wil
M B3 Y3 Linter

34) Felix: T G3 Y3 Felix

35) wil: M R1 Y3 Wil

36) Felix: S Y1 Linter
D Y1 Linter B2 Binter

37) wil: S B3 Linter
T G2 B2 Y3
T R1 Y1 Y2
T R2 Y2 Y2

38) Felix: Trade G2 Y2 Splinter

39) wil: D Y1 Y2 G1 G1

40) Felix: Sacrifice Y2 Splinter
Move Y1 Binter Wil
Move Y3 Felix Wil

41) wil: M Y2 Y2 Wil
C Wil Y
	Felix: You're putting up quite a struggle!
	wil: Ark moment...we went to another universe where peace and compassion reigns
	Felix: There is no compassion here :)

Good game!



33083)
Started: 2017.9.21, Ended: 2017.12.24
Participants: Ottia (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B1 G2 Y3

2) Ottia: Homeworld G2 B3 Y3

3) MobyNostromo: Build Y1 Mobynostromo
	Ottia: Hiya Rey! Nice to open a game against you again... let's see if I can write during the weekend. Take care!
	MobyNostromo: Me too! Have a great game!!

4) Ottia: Build Y1 Ottia

5) MobyNostromo: T Y1 G1 Mobynostromo

6) Ottia: Discover Y1 Ottia B1 Goldenboy

7) MobyNostromo: B Y1 Mobynostromo

8) Ottia: Build Y1 Ottia

9) MobyNostromo: B Y2 Mobynostromo

10) Ottia: Trade Y1 G1 Goldenboy

11) MobyNostromo: D Y2 Mobynostromo G3 Earth

12) Ottia: Build G1 Goldenboy

13) MobyNostromo: D G1 Mobynostromo Y3 Saturn

14) Ottia: Trade G1 Y1 Goldenboy

15) MobyNostromo: T Y1 B1 Mobynostromo

16) Ottia: Build Y1 Goldenboy

17) MobyNostromo: B Y2 Mobynostromo

18) Ottia: Discover Y1 Goldenboy Y2 Jimmycorrigan

19) MobyNostromo: B B2 Mobynostromo

20) Ottia: Build G1 Goldenboy
	MobyNostromo: Nice!
	MobyNostromo: (I meant the Jimmy Corrigan reference.)

21) MobyNostromo: D B2 Mobynostromo G3 Gogogo
	Ottia: I was going to write That Yellow Bastard but names can't be that long HEHEHEHEHEHE (by the way, thanks a lot for your GeekMail! Lots of interesting info... I will reply as soon as I can)

22) Ottia: Move G1 Goldenboy Ottia
	MobyNostromo: Please reply only when you can. Let's keep our pen pal habit as a casual thing. It's a lot funner that way, I think. (BTW, are you a Frank Miller fan? I can see how Yellow Bastard would have definitely worked for that last discovery. I loved Miller for years until the second Sin City book, and then it was all downhill for me.)

23) MobyNostromo: B B2 Mobynostromo

24) Ottia: Build G2 Goldenboy

25) MobyNostromo: B G3 Saturn

26) Ottia: Trade G2 B2 Goldenboy

27) MobyNostromo: B B3 Gogogo

28) Ottia: Move B2 Goldenboy Saturn

29) MobyNostromo: M B2 Mobynostromo Earth
	MobyNostromo: Sorry about the long delays. So much to do over here.
	Ottia: You took the words out of my keyboard...

30) Ottia: Trade Y1 R1 Ottia
	MobyNostromo: You too, huh? 

31) MobyNostromo: B B3 Earth

32) Ottia: Move R1 Ottia Goldenboy

33) MobyNostromo: M B3 Earth Goldenboy

34) Ottia: Build G2 Goldenboy

35) MobyNostromo: T B3 R3 Goldenboy

36) Ottia: Move R1 Goldenboy Gogogo

37) MobyNostromo: A G2 Goldenboy

38) Ottia: Build Y1 Ottia

39) MobyNostromo: A G1 Goldenboy

40) Ottia: Move Y1 Goldenboy Saturn
	MobyNostromo: Sorry about the long delay.

41) MobyNostromo: T B2 R2 Gogogo

42) Ottia: Discover Y3 Ottia R1 Chorizo
	Ottia: Don't worry, same here...

43) MobyNostromo: S Y2 Earth
M R2 Gogogo Chorizo
M R2 Chorizo Ottia

44) Ottia: Sacrifice Y3 Chorizo
Move Y1 Saturn Mobynostromo
Move Y1 Jimmycorrigan Saturn
Move Y1 Saturn Mobynostromo
Catastrophe Mobynostromo Y

45) MobyNostromo: S R3 Goldenboy
A G1 Ottia
A Y1 Ottia
A B2 Saturn

	Ottia: Happy Christmas, Rey! I hope I can write during the next days...
	MobyNostromo: You beat me to it. I took a break from Christmas Eve to make a move and wish you a great Christmas. Feliz Navidad!! I wish you the best on you daughter's first Christmas.


33081)
Variants: "Unrated"
Started: 2017.9.21, Ended: 2017.10.12
Participants: Ottia (S), wil (N)
Winner: wil

1) wil: Homeworld B2 Y1 G3

2) Ottia: Homeworld G3 B2 Y3

3) wil: B G1 Wil
	Ottia: Hi Wil! Nice to play with you again after so long...

4) Ottia: Build Y1 Ottia

5) wil: T G1 Y1 Wil

6) Ottia: Discover Y1 Ottia G1 Parsley
	wil: It has been awhile!!  
	Ottia: You didn't play for quite a long while... and then I didn't (slight burnout). I hope things are OK with you.

7) wil: B Y2 Wil

8) Ottia: Build Y2 Ottia

9) wil: D Y1 Wil G3 G3

10) Ottia: Trade Y2 B2 Ottia

11) wil: B Y2 Wil

12) Ottia: Move B2 Ottia Parsley

13) wil: D Y2 Wil B3 B3

14) Ottia: Build Y2 Parsley

15) wil: B Y3 G3

16) Ottia: Discover Y2 Parsley Y3 Turmeric

17) wil: B G1 Wil
	wil: Hey, I wanted that!

18) Ottia: Sacrifice Y3 Ottia
Move Y1 Parsley Turmeric
Move Y1 Turmeric Wil
Move Y2 Turmeric Wil
Catastrophe Wil Y

	Ottia: I was going to say I was glad you "liked" my move, since I'm still green at this... I must read the rules again regarding situations like this. I'd like to ask if you'd fancy another game.
	wil: Oh me gosh, you abandoned your homeworld ya gotta leave someone at the helm!!

And of course,.challenge me.anytime...and feel free.to ask questions or for feedback.


33217)
Variants: "Hard time"
Started: 2017.9.21, Ended: 2017.9.28
Participants: agentofchaos (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y2 B1 G3
	Babamots: Thanks for the game! Good luck!

2) agentofchaos: Homeworld B2 R3 G3

3) Babamots: Build G1 Babamots
	agentofchaos: Thanks, good luck!

4) agentofchaos: Build G1 Agentofchaos

5) Babamots: Trade G1 B1 Babamots

6) agentofchaos: Trade G1 B1 Agentofchaos

7) Babamots: Build B2 Babamots

8) agentofchaos: Build B2 Agentofchaos

9) Babamots: Discover B1 Babamots G3 Betazed

10) agentofchaos: Trade B2 Y2 Agentofchaos

11) Babamots: Build G1 Babamots

12) agentofchaos: B Y1 Agentofchaos

13) Babamots: Discover G1 Babamots B3 Ferenginar

14) agentofchaos: Discover Y2 Agentofchaos G1 Webn

15) Babamots: Sacrifice G3 Babamots
Build B2 Betazed
Build B3 Betazed
Build B3 Babamots

16) agentofchaos: Move B1 Agentofchaos Webn

17) Babamots: Sacrifice B1 Betazed
Trade B3 G3 Babamots

18) agentofchaos: Build B1 Webn

19) Babamots: Trade B2 Y2 Betazed

20) agentofchaos: Build Y1 Agentofchaos

21) Babamots: Trade B2 R2 Babamots

22) agentofchaos: Trade Y1 R1 Agentofchaos

23) Babamots: Discover B3 Betazed G1 Bajor

24) agentofchaos: Build G2 Agentofchaos

25) Babamots: Build G2 Babamots

26) agentofchaos: Build G2 Agentofchaos

27) Babamots: Sacrifice Y2 Betazed
Move G1 Ferenginar Bajor
Move G1 Bajor Agentofchaos
Catastrophe Agentofchaos G

	agentofchaos: didn't see that coming, well played
	Babamots: Thanks! See you around! 


33233)
Variants: "Unrated, Hard time"
Started: 2017.9.23, Ended: 2017.10.2
Participants: Grosseteste (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 Y1 G3
	Babamots: I'll fill out the tournament form for the beginning of the game. Good luck!

2) Grosseteste: H B1 Y3 G3

3) Babamots: Build G1 Babamots
	Grosseteste: Likewise, looking forward to it!

4) Grosseteste: B G1 Grosseteste

5) Babamots: Trade G1 B1 Babamots

6) Grosseteste: T G1 B1 Grosseteste

7) Babamots: Build B2 Babamots



33228)
Started: 2017.9.24, Ended: 2019.11.13
Participants: Jaybones (S), Ottia (N)
Winner: Ottia

1) Ottia: Homeworld G3 B2 Y3

2) Jaybones: Homeworld Y3 B1 G3

3) Ottia: Build Y1 Ottia



33237)
Variants: "Unrated, Hard time"
Started: 2017.9.26, Ended: 2017.10.27
Participants: Remneb (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R2 B1 G3
	bhorner: This game is for "The Great Homeworld Tournament" organized by Babamots, good luck!

2) Remneb: Homeworld B2 R3 G3

3) bhorner: B G1 Bhorner

4) Remneb: Build G1 Remneb

5) bhorner: T G1 B1 Bhorner

6) Remneb: Trade G1 B1 Remneb

7) bhorner: Build B2 Bhorner

8) Remneb: Build G1 Remneb

9) bhorner: T B2 Y2 Bhorner

10) Remneb: Trade G1 Y1 Remneb

11) bhorner: B B2 Bhorner

12) Remneb: Build G1 Remneb

13) bhorner: Discover B2 Bhorner G3 Fern

14) Remneb: Discover B1 Remneb G1 Gort

15) bhorner: D B1 Bhorner Y3 Bigbird

16) Remneb: Build Y1 Remneb

17) bhorner: T B1 R1 Bigbird

18) Remneb: Trade G1 R1 Remneb

19) bhorner: B B1 Fern

20) Remneb: Build B2 Gort

21) bhorner: Trade B2 Y2 Fern

22) Remneb: Trade B2 Y2 Gort

23) bhorner: B B2 Fern

24) Remneb: Build G1 Remneb

25) bhorner: Build G1 Bhorner

26) Remneb: Move G1 Remneb Gort

27) bhorner: Discover G1 Bhorner B3 Ocean

28) Remneb: Build B2 Gort

29) bhorner: D B2 Fern Y1 Shiney

30) Remneb: Build Y3 Gort

31) bhorner: B Y3 Fern

32) Remneb: Move B2 Gort Bigbird

33) bhorner: Build B3 Fern

34) Remneb: Build B3 Gort

35) bhorner: Build G2 Bhorner

36) Remneb: Build G2 Remneb

37) bhorner: Sacrifice Y3 Fern
Move G2 Bhorner Ocean
Move G2 Ocean Gort
Move G1 Ocean Gort
C Gort Green

38) Remneb: Sacrifice R1 Remneb
Attack R1 Bigbird

39) bhorner: Sacrifice G3 Bhorner
Build Y2 Bhorner
Build Y3 Fern
Build Y3 Bhorner

40) Remneb: Discover Y1 Remneb G1 Hoth

41) bhorner: T B3 R3 Fern

42) Remneb: Move Y1 Hoth Bigbird

43) bhorner: Trade Y2 G2 Bhorner

44) Remneb: Build Y2 Remneb

45) bhorner: Trade Y3 G3 Bhorner

46) Remneb: Discover Y1 Bigbird G1 Trek

47) bhorner: B Y3 Bhorner

48) Remneb: Discover Y1 Remneb G1 Assur

49) bhorner: M G3 Bhorner Bigbird

50) Remneb: Sacrifice Y2 Remneb
Move Y1 Assur Fern
Move Y1 Trek Fern
Catastrophe Fern Y

51) bhorner: M Y2 Bhorner Fern

52) Remneb: Discover B2 Bigbird Y1 Roma

53) bhorner: M G3 Bigbird Shiney

54) Remneb: Trade G2 Y2 Remneb

55) bhorner: M R3 Fern Shiney

56) Remneb: Build G1 Remneb

57) bhorner: T Y3 R3 Bhorner

58) Remneb: Sacrifice G1 Remneb
Build R1 Bigbird

59) bhorner: S Y2 Fern
M G3 Shiney Remneb
M R3 Shiney Remneb

60) Remneb: Sacrifice Y2 Remneb
Move R1 Bigbird Bhorner
Move R1 Bigbird Bhorner
Catastrophe Bhorner R

61) bhorner: A G3 Remneb

	bhorner: GG!
	Remneb: Thanks for the game.


32921)
Variants: "Unrated, Hard time"
Started: 2017.9.28, Ended: 2017.10.14
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld G2 R3 B3
	Felix: Hello again :) Hard not to keep a game against you going, since you're one of the few players who actually makes moves in a timely fashion!

2) dlwillson: H Y1 B3 G3
	Felix: I'm going to be a little bit experimental today...

3) Felix: B B1 Felix
	dlwillson: Yay, another game with Felix! But, it's funny that you say I make moves in a timely fashion when today in particular I'm having trouble doing that. Busy day at work.

4) dlwillson: B G1 Dlwillson
	Felix: No worries there! I have busy days too

5) Felix: T B3 Y3 Felix

6) dlwillson: B G1 Dlwillson

7) Felix: Build Y1 Felix

8) dlwillson: T G1 Y1 Dlwillson

9) Felix: B Y2 Felix

10) dlwillson: D Y1 Dlwillson G2 Field

11) Felix: Discover Y1 Felix G1 Farholme

12) dlwillson: Build Y2 Field

13) Felix: Build Y2 Farholme

14) dlwillson: Discover Y1 Field G1 Forest

15) Felix: M Y2 Felix Forest

16) dlwillson: Build Y3 Field

17) Felix: D Y2 Farholme B2 Edge

18) dlwillson: Build Y3 Forest

19) Felix: Trade Y2 G2 Edge

20) dlwillson: Trade G1 R1 Dlwillson

21) Felix: Build Y2 Forest
Catastrophe Forest Yellow
	Felix: Boy, I messed that up :D

22) dlwillson: Discover Y2 Field B1 Sky

23) Felix: Build G1 Edge

24) dlwillson: Build R1 Dlwillson

25) Felix: Trade G1 R1 Edge

26) dlwillson: Move R1 Dlwillson Field

27) Felix: Build R2 Edge

28) dlwillson: Build R2 Dlwillson

29) Felix: Trade R2 Y2 Edge

30) dlwillson: Move Y3 Field Farholme

31) Felix: B Y1 Farholme

32) dlwillson: Move Y3 Farholme Edge

33) Felix: S G2 Edge
B Y2 Edge
B Y3 Felix

34) dlwillson: Sacrifice R2 Dlwillson
Attack R1 Edge
Attack Y2 Edge

35) Felix: Move Y1 Farholme Edge
Catastrophe Edge Yellow

36) dlwillson: Build R2 Dlwillson

37) Felix: Trade Y3 R3 Felix

38) dlwillson: Build G1 Dlwillson

39) Felix: Move R3 Felix Sky

40) dlwillson: M Y2 Sky Field
	dlwillson: That is some baity bait, though. Very tempting.

41) Felix: Build Y1 Felix
	Felix: Hehehe.

42) dlwillson: Build Y2 Field

43) Felix: Move Y1 Felix Sky

44) dlwillson: Move Y2 Field Farholme

45) Felix: Move R3 Sky Field

46) dlwillson: B R2 Field

47) Felix: Sacrifice Y1 Sky
Move R3 Field Farholme

48) dlwillson: S G3 Dlwillson
B Y1 Farholme
B R2 Field
B R3 Edge

49) Felix: Build Y2 Felix
	Felix: Simple, yet effective.

50) dlwillson: Sacrifice Y2 Field
Move Y1 Farholme Felix
Move Y2 Farholme Felix
Catastrophe Felix Y

51) Felix: Build Y1 Farholme

52) dlwillson: Trade R3 Y3 Edge

53) Felix: Build R3 Farholme
	Felix: Ouch! I need to think more before moving.

54) dlwillson: Sacrifice Y3 Edge
Move R1 Field Farholme
Move R2 Field Farholme
Catastrophe Farholme R
Move R2 Field Farholme
	dlwillson: I'm in danger. But, I'm comforted by the thought that maybe you're in more danger than I am.

55) Felix: Sacrifice Y1 Farholme
Move Y1 Farholme Felix
	Felix: I think I almost certainly am...

56) dlwillson: Trade R2 Y2 Dlwillson
	dlwillson: OK, the mid-turn cat is officially my favorite rules modification. I think I the "in danger" slider is at least 5 clicks further toward you.

57) Felix: Trade Y1 R1 Felix
	Felix: I know. I love that change! It makes for some very interesting moves. Great move! I'm in big trouble.

58) dlwillson: S Y2 Dlwillson
M R2 Farholme Felix
D R1 Edge Y1 Sol

59) Felix: Build R2 Felix
Catastrophe Felix R

60) dlwillson: Build R1 Dlwillson
	Felix: I fail to see how it would have worked out better for me :P I would have been left with but one ship.
	Felix: Woah. Weird. This message was supposed to go on our game with Wil.

61) Felix: Build B1 Felix

62) dlwillson: Move R1 Dlwillson Felix

63) Felix: Build B1 Felix

64) dlwillson: B R2 Felix

65) Felix: Trade B1 Y1 Felix

66) dlwillson: Build R2 Dlwillson

67) Felix: Build Y2 Felix

68) dlwillson: T R2 B2 Dlwillson
	dlwillson: I am now laughing at myself for my dumbs... Sigh.

69) Felix: Sacrifice Y2 Felix
Move B1 Felix Dlwillson
Move B1 Felix Dlwillson
Catastrophe Dlwillson B
	Felix: Hehe. I'm just stretching out the inevitable at this point.

70) dlwillson: A Y1 Felix

	Felix: Good game :)
	dlwillson: Good game, as always, Felix! 
	Draw5PlayAll: Quite a bleak residue.


33213)
Variants: "Unrated, Hard time"
Started: 2017.9.28, Ended: 2017.10.12
Participants: wil (S), Felix (N)
Winner: wil

1) Felix: Homeworld G2 B3 Y3

2) wil: H Y2 B1 G3
	Felix: I'm going to try an experimental game here, if you don't mind :) I rarely play with green in my system, so I wanna get some more practice with that setup.
	wil: Lol, me mind playing experimental hw  games?

3) Felix: B Y1 Felix

4) wil: B G1 Wil

5) Felix: Trade Y1 B1 Felix

6) wil: T G1 B1 Wil

7) Felix: Build B2 Felix

8) wil: B B2 Wil

9) Felix: Discover B2 Felix G1 Farholme

10) wil: D B1 Wil G3 G3

11) Felix: Trade B1 R1 Felix

12) wil: B G1 Wil

13) Felix: Build R1 Felix

14) wil: T G1 R1 Wil

15) Felix: Move R1 Felix Farholme

16) wil: B R2 Wil

17) Felix: Build R2 Farholme

18) wil: M R2 Wil G3

19) Felix: Trade R2 Y2 Farholme

20) wil: B R2 Wil

21) Felix: B R2 Felix

22) wil: B R3 G3

23) Felix: B R3 Farholme

24) wil: T R3 Y3 G3

25) Felix: Move R1 Farholme G3

26) wil: T R1 Y1 Wil

27) Felix: Build R1 G3

28) wil: S R2 G3
A R1 G3
A R1 G3

29) Felix: Trade R2 G2 Felix

30) wil: D R1 G3 Y1 Y1
	wil: Dang skeeters

31) Felix: Build R2 Felix

32) wil: S G3 Wil
B R2 Y1
B R3 Wil
B R3 G3

33) Felix: Build Y1 Farholme

34) wil: T R3 Y3 G3
	wil: Would you like to start disarmament talks?

35) Felix: Move Y2 Farholme G3
	Felix: If we must :P

36) wil: D Y3 G3 G1 G1

37) Felix: Build R3 Farholme

38) wil: A Y2 G3

39) Felix: Build Y2 Farholme

40) wil: T R3 G3 Wil

41) Felix: Discover Y2 Farholme R3 Bazoik

42) wil: M R1 Y1 Felix
	wil: I was hoping it was a tourney challenge...but just some bloke on the ladder...

43) Felix: Sacrifice R1 Felix
Attack R1 Felix
	Felix: Nothing exciting, I'm afraid.

44) wil: B R1 G3

45) Felix: Discover Y1 Farholme G3 Nearhome
	wil: Lol
	wil: Thatndodnt work right

46) wil: S Y2 G3
M R1 G3 Farholme
M R1 G3 Farholme
C Farholme R
	wil: Let us start this over again...

47) Felix: Build Y2 Nearhome

48) wil: D Y1 Wil R3 R3

49) Felix: Sacrifice Y1 Nearhome
Move B2 Farholme R3

50) wil: D Y1 R3 B1 B1

51) Felix: Sacrifice G2 Felix
Build Y1 Nearhome
Build B2 R3

52) wil: B B3 G3

53) Felix: Sacrifice Y2 Nearhome
Move B2 R3 Wil
Move B2 R3 Wil
Catastrophe Wil B

54) wil: B Y2 G3

55) Felix: Move R2 Felix B1

56) wil: M Y3 G3 B1

57) Felix: Build R1 Felix

58) wil: B R1 Wil
	Felix: I gotta think about this one for a bit...

59) Felix: Discover R1 Felix G1 Out

60) wil: M R2 Wil Out

61) Felix: Build R3 Felix

62) wil: S R2 Y1
A R1 Out
A R2 B1

63) Felix: Build Y1 Nearhome

64) wil: S Y3 G1
M Y3 B1 Felix
M R1 Out Felix
M R2 B1 Felix
C Felix R

65) Felix: Sacrifice Y2 Bazoik
Move Y1 Nearhome Wil
Move Y1 Nearhome Wil

66) wil: S R1 Wil
A Y3 Felix
	wil: Those turncoats immediately struck back!

	Felix: Well played! I technically should be able to win here simply by being the player who causes both our eliminations, but the system won't let me.
	wil: At the end of your move you must have a ship in your homeworlds I believe.
	wil: I'll verify with Andy n john tonight.
	Felix: I'm not sure. I thought I remember seeing some forum post where Andy or John covered this edge case, saying that if a move would cause both players to be eliminated, whoever makes that move is considered the winner.

Also, if causing your destruction occurs DURING my turn, then wouldn't you be elminated before my turn techncially ends, so it wouldn't matter at that point if I have any ships left? An interesting scenario.
	Felix: I like the idea of kamikazeing my entire fleet to achieve a hollow victory :)
	Draw5PlayAll: *I* thought that they said that if both players are eliminated the game is a tie, not "the player who caused it"... I mean, it makes more sense that way, like in chess if it is king vs king it is not "the player who caused it to be KvK".
	wil: War games scenario...nobody wins with mutual nuclear destruction...
	Draw5PlayAll: So this game deserves to be a draw but SDG will not let you offer a draw in Homeworlds games.
https://boardgamegeek.com/article/21140352#21140352


33260)
Variants: "Unrated, Hard time"
Started: 2017.9.29, Ended: 2017.10.16
Participants: eliscinsky (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) eliscinsky: Homeworld R1 B2 G3

3) wil: B G1 Wil
	wil: Wow, short universe?

4) eliscinsky: Build G1 Eliscinsky

5) wil: T G1 R1 Wil

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) wil: B R1 Wil

8) eliscinsky: Build G1 Eliscinsky

9) wil: B R2 Wil

10) eliscinsky: Build Y1 Eliscinsky

11) wil: D R2 Wil Y3 Y3

12) eliscinsky: Build Y2 Eliscinsky

13) wil: B R2 Wil

14) eliscinsky: Trade Y2 R2 Eliscinsky

15) wil: T R2 Y2 Wil

16) eliscinsky: Trade Y1 B1 Eliscinsky

17) wil: B R2 Wil

18) eliscinsky: Discover Y1 Eliscinsky B3 B3

19) wil: D R1 Wil B3 Be3

20) eliscinsky: Trade G1 Y1 Eliscinsky

21) wil: S G3 Wil
B R3 Y3
B R3 Be3
B R3 Wil

22) eliscinsky: Build Y2 Eliscinsky

23) wil: T R3 G3 Wil

	wil: Aaarrrgghhhh hate that.
	eliscinsky: Damn how'd I miss that


33263)
Variants: "Hard time"
Started: 2017.9.29, Ended: 2017.10.9
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: H B3 Y1 G3 Dlwillson

2) wil: H Y2 B1 G3
	wil: Let's do this!

3) dlwillson: B G1 Dlwillson
	dlwillson: Yeehaa! :-)

4) wil: B G1 Wil

5) dlwillson: T G1 Y1 Dlwillson

6) wil: T G1 Y1 Wil

7) dlwillson: B Y2 Dlwillson

8) wil: B Y2 Wil

9) dlwillson: D Y1 Dlwillson G2 Field

10) wil: D Y1 Wil G3 G3

11) dlwillson: B Y3 Field

12) wil: B Y3 G3

13) dlwillson: Discover Y1 Field B3 Sky

14) wil: D Y2 Wil Y3 Why3

15) dlwillson: T Y2 R2 Dlwillson

16) wil: T G3 R3 Wil

17) dlwillson: Build Y2 Field

18) wil: M Y1 G3 Wil

19) dlwillson: Discover Y2 Field G3 Forest
	wil: Nice

20) wil: T Y1 G1 Wil

21) dlwillson: Build Y1 Field

22) wil: B R1 Wil

23) dlwillson: M Y1 Field Sky

24) wil: M R1 Wil G3

25) dlwillson: B G1 Dlwillson

26) wil: B R1 Wil

27) dlwillson: Trade G1 B1 Dlwillson

28) wil: T R1 B1 Wil

29) dlwillson: Move B1 Dlwillson Field

30) wil: M B1 Wil G3

31) dlwillson: Build B2 Field

32) wil: B B2 G3

33) dlwillson: M B2 Field Forest

34) wil: D B1 G3 G2 G2

35) dlwillson: Build B2 Forest

36) wil: B B3 G2

37) dlwillson: Move B2 Forest Wil

38) wil: A B2 Wil

39) dlwillson: S Y3 Field
M B2 Forest Wil
M B1 Field Forest
M B1 Forest Wil
C Wil B

40) wil: B Y3 G3
	dlwillson: <fingers crossed> I sure hope this works...
	wil: Hmm

41) dlwillson: Sacrifice Y2 Forest
Move Y1 Sky Wil
Move Y1 Sky Wil

42) wil: S G1 Wil
B Y2 Why3

43) dlwillson: Move Y1 Wil Why3
Catastrophe Why3 Y
	wil: Looks like it did

44) wil: A Y1 Wil
	dlwillson: Well, the first part did, but I knew it would. It's this part here that I'm not so sure about.
	dlwillson: It doesn't help that I botched it. I was supposed to go with the y2 and a y... no, that doesn't work, either. What made me think this was going to work? Bah... Maybe I'll be able to recover somehow.

45) dlwillson: B R1 Dlwillson

46) wil: T B1 R1 G2

47) dlwillson: Trade R1 Y1 Dlwillson

48) wil: B R1 G2

49) dlwillson: Discover Y1 Dlwillson G2 Field

50) wil: Move R1 G3 Field

51) dlwillson: D Y1 Field G1 Forest

52) wil: Build R2 Field

53) dlwillson: B Y2 Forest

54) wil: S Y3 G3
M R1 G2 Dlwillson
M R1 Field Dlwillson
M R2 Field Dlwillson
C Dlwillson R

55) dlwillson: M Y1 Forest Wil

56) wil: S Y3 G3
M Y1 Wil Dlwillson
M B3 G2 Dlwillson
M B2 G3 Wil

	wil: I think that did it.
	dlwillson: Yup. It won't let me MAD.
Good game!
	wil: I you would have had any pawn in your homeworld... That was something else.
	Felix: Fascinating endgame! So tight.


33266)
Variants: "Hard time"
Started: 2017.9.29, Ended: 2017.10.6
Participants: ajo (S), Babamots (N)
Winner: ajo

1) Babamots: Homeworld B2 Y1 G3
	Babamots: Thanks for the game! Good luck!

2) ajo: Homeworld R2 B3 G3

3) Babamots: Build G1 Babamots

4) ajo: Build G1 Ajo

5) Babamots: Discover G1 Babamots B3 Betazed

6) ajo: Trade G1 Y1 Ajo

7) Babamots: Build G1 Babamots

8) ajo: Build Y1 Ajo

9) Babamots: Build G1 Betazed

10) ajo: Build G2 Ajo

11) Babamots: Sacrifice G3 Babamots
Build G2 Babamots
Build G2 Betazed
Build G3 Babamots

12) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Ajo
Build Y2 Ajo

13) Babamots: Trade G2 Y2 Betazed

14) ajo: Discover G3 Ajo B1 Alpha

15) Babamots: Discover G2 Babamots Y3 Ferenginar

16) ajo: Trade Y1 R1 Ajo

17) Babamots: Trade G1 R1 Betazed

18) ajo: Build G1 Alpha

19) Babamots: Sacrifice G3 Babamots
Build G2 Betazed
Build Y1 Betazed
Build G3 Babamots

20) ajo: Move Y1 Ajo Alpha

21) Babamots: Discover Y2 Betazed B2 Iconia

22) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y2 Ajo
Build Y3 Alpha

23) Babamots: Sacrifice G2 Ferenginar
Build Y3 Betazed
Build Y3 Iconia

24) ajo: Trade Y3 R3 Alpha

25) Babamots: Trade Y2 G2 Iconia

26) ajo: Sacrifice Y2 Ajo
Move G3 Alpha Betazed
Move G3 Betazed Babamots

27) Babamots: Sacrifice Y3 Iconia
Move G1 Betazed Babamots
Catastrophe Babamots G
Move Y3 Betazed Babamots
Discover G2 Iconia Y3 Pakled
	ajo: Check. :)

28) ajo: Move R3 Alpha Betazed

29) Babamots: Sacrifice G2 Betazed
Build R1 Betazed
Build R2 Betazed
Catastrophe Betazed R

30) ajo: Build Y2 Alpha

31) Babamots: Build G1 Pakled

32) ajo: Move Y2 Alpha Betazed

33) Babamots: Sacrifice Y1 Betazed
Move G1 Pakled Babamots

34) ajo: Build Y1 Alpha
	Babamots: Oh, I didn't notice that you said "check" back there. I always liked the term "red alert."

35) Babamots: Build G1 Pakled
	Babamots: I wish ts52 would move as quickly as you. I think I'm doing better in my game with him.
	Babamots: Meaning that, in general, I think people move more slowly when they're losing, which is too bad for their opponents who would usually like to hurry up and win.

36) ajo: Build Y2 Ajo

37) Babamots: Build G2 Babamots
	ajo: I think you're right, but that's only to be expected in any game. :) Another reason it might happen in Homeworlds is that I often set up the pieces offline so I can visualize the position better than I can with the SDG interface. But in this game I'm doing well enough that I haven't felt the need for physical pieces yet. ;)
	Babamots: I usually manage to put up at least a little bit of a fight, but not so much this time.
	Babamots: I'm trying to decide whether to quit and forget this game ever happened or sit around hoping you'll make a colossal mistake.

38) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Alpha
Build Y3 Betazed

39) Babamots: Trade Y3 R3 Babamots
	ajo: I suspect it will be over soon either way. ;)

	Babamots: I think I'll stop here and focus on the tournament. Maybe I'll give you trouble next time :-).
	ajo: Good game! :)


33077)
Variants: "Unrated"
Started: 2017.9.30, Ended: 2017.11.24
Participants: redsang (S), dragon76n (N)
Winner: dragon76n

1) dragon76n: Homeworld B3 Y1 G3

2) redsang: Homeworld R1 Y2 G3 *
	dragon76n: Hello redsang, 
I hope you enjoy the game. I've played a few times, both online and in person, but not a lot. Is this your first time playing Homeworlds at all, or just first time playing it on SDG? Either way, as long as you keep playing, I'm willing to answer your questions about the game. 
--Nathaniel "Dragon"

3) dragon76n: Build G1 Dragon76n
	redsang: Dragon - It is almost my first time playing at all. I am halfway through another game on SDG but not faring well.

4) redsang: Build G1 Redsang

5) dragon76n: Trade G1 Y1 Dragon76n

6) redsang: Build G1 Redsang
	redsang: Have I just messed up by not starting with a blue?

7) dragon76n: B Y1 Dragon76n

8) redsang: Discover G1 Redsang B3 Tom
	dragon76n: Well, based on some of the things I've read, yellow, blue, and green give you a better start, but at least you can go out and discover a blue star. 
	dragon76n: I think yellow is the worst color to begin without, since you can't move to discover anything without yellow. 

9) dragon76n: D Y1 Dragon76n G2 Gretwo

10) redsang: Trade G1 R1 Tom

11) dragon76n: Build Y2 Gretwo

12) redsang: Build G1 Redsang

13) dragon76n: Move Y2 Gretwo Tom

14) redsang: Move G1 Redsang Tom

15) dragon76n: Trade Y2 R2 Tom
	redsang: Just lost the other game I was playing. There's still so much about the mechanics I don't get.
	Draw5PlayAll: @dragon76n I think blue is the second worst to start without (you absolutely must have green to do anything useful). I use B3R1 with a G3 ship, and trade my built G1 for a Y1 to do exploring. But without blue it becomes more risky to obtain blue ships (it takes longer and your homeworld is relatively safe early on).

16) redsang: Trade G1 B1 Tom

17) dragon76n: A R1 Tom
	redsang: It seems like I have inadvertently gotten my ships stuck at Tom. Not really sure what tot do here.
	dragon76n: I’ll put them back to work. ;)

	dragon76n: Hi... 
	dragon76n: Hello redsang... it looks like you've abandoned the game. 
	Draw5PlayAll: I think so too.


33270)
Variants: "Unrated, Hard time"
Started: 2017.10.1, Ended: 2017.10.21
Participants: eliscinsky (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3

2) eliscinsky: Homeworld R1 B2 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52

4) eliscinsky: Build G1 Eliscinsky

5) ts52: Discover G1 Ts52 B3 Gonzo

6) eliscinsky: Trade G1 R1 Eliscinsky

7) ts52: B G1 Ts52

8) eliscinsky: Build R1 Eliscinsky

9) ts52: Build G1 Gonzo

10) eliscinsky: Trade R1 Y1 Eliscinsky

11) ts52: Trade G1 R1 Ts52

12) eliscinsky: Move R1 Eliscinsky Gonzo

13) ts52: Sacrifice R1 Ts52
Attack R1 Gonzo

14) eliscinsky: Build Y1 Eliscinsky

15) ts52: Trade G1 Y1 Gonzo

16) eliscinsky: Trade Y1 R1 Eliscinsky

17) ts52: Build R2 Gonzo

18) eliscinsky: Build G1 Eliscinsky

19) ts52: Build G1 Ts52

20) eliscinsky: Trade G1 B1 Eliscinsky

21) ts52: Trade R2 Y2 Gonzo

22) eliscinsky: Build G1 Eliscinsky

23) ts52: Build G2 Gonzo

24) eliscinsky: Discover G1 Eliscinsky B3 Bozo

25) ts52: Build R2 Gonzo

26) eliscinsky: Build G2 Bozo

27) ts52: Move R1 Gonzo Ts52

28) eliscinsky: Move B1 Eliscinsky Bozo

29) ts52: Build R2 Gonzo

30) eliscinsky: Build G2 Eliscinsky

31) ts52: Sacrifice Y2 Gonzo
Move G1 Gonzo Eliscinsky
Move G2 Gonzo Eliscinsky
Catastrophe Eliscinsky Green

32) eliscinsky: Move Y1 Eliscinsky Bozo

33) ts52: Move R2 Gonzo Eliscinsky

34) eliscinsky: Move G2 Bozo Eliscinsky
	eliscinsky: Nice game.  I see that you'll have me in a few moves. ;)

35) ts52: S R2 Gonzo
A G2 Eliscinsky
A R1 Eliscinsky
	ts52: Good game. I was surprised by your choice to make it a small universe. 

	eliscinsky: nice game :)


33261)
Variants: "Unrated, Hard time"
Started: 2017.10.1, Ended: 2017.10.7
Participants: shoejitsu (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld R1 B2 G3
	shoejitsu: good luck!

2) shoejitsu: Homeworld G3 Y1 B3

3) eliscinsky: Build G1 Eliscinsky

4) shoejitsu: Build B1 Shoejitsu

5) eliscinsky: Trade G1 Y1 Eliscinsky

	shoejitsu: ugh... thats a shame. had a busy few days and slipped my mind
	eliscinsky: Bummer, I never wanted a RESIGNATION. Would you be interested in trying  again?
	shoejitsu: I wouldn't mind another game, you can mark it however you want though. rules are rules!
	Babamots: It's fine with me if you'd both like to try again. Just fill out the start form like usual. It will temporarily break the tournament results grid, but I will fix it.


33264)
Started: 2017.10.4, Ended: 2017.11.6
Participants: Hambone (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B1 G3

	ts52: Have a good game!


33290)
Variants: "Unrated, Hard time"
Started: 2017.10.6, Ended: 2017.11.1
Participants: Babamots (S), jeep (N)
Winner: Babamots

1) jeep: Homeworld B2 R1 G3

2) Babamots: Homeworld B1 Y3 G3
	Babamots: I've filled out the form for the tournament. Good luck!

3) jeep: Build G1 Jeep
	jeep: Thanks. GLHF

4) Babamots: Build G1 Babamots

5) jeep: Trade G1 Y1 Jeep

6) Babamots: Trade G1 B1 Babamots

7) jeep: Build Y1 Jeep

8) Babamots: Build B1 Babamots

9) jeep: Build Y1 Jeep

10) Babamots: Discover B1 Babamots G2 Betazed

11) jeep: Discover Y1 Jeep G3 Grower

12) Babamots: Sacrifice G3 Babamots
Build B2 Betazed
Build B2 Betazed
Build B3 Babamots

13) jeep: Build Y2 Grower

14) Babamots: Trade B2 Y2 Betazed

15) jeep: Discover Y1 Grower G2 Gammay

16) Babamots: Discover B1 Babamots B2 Rubicun

17) jeep: Sacrifice G3 Jeep
Build Y2 Gammay
Build Y3 Jeep
Build Y3 Gammay

18) Babamots: Build B3 Betazed

19) jeep: Trade Y1 R1 Jeep

20) Babamots: Trade B3 R3 Betazed

21) jeep: Trade Y3 G3 Jeep

22) Babamots: Build B3 Betazed

23) jeep: Sacrifice G3 Jeep
Build Y1 Grower
Build Y3 Jeep
Build R1 Jeep

24) Babamots: Trade B3 G3 Betazed

25) jeep: Discover R1 Jeep B3 Changer

26) Babamots: Move R3 Betazed Grower

27) jeep: Sacrifice Y2 Grower
Discover Y1 Grower Y2 Mover
Move R1 Changer Rubicun

28) Babamots: Sacrifice G3 Betazed
Build B3 Babamots
Build R2 Grower
Build B3 Rubicun

29) jeep: Attack B1 Rubicun

30) Babamots: Sacrifice R2 Grower
Attack R1N Rubicun
Attack B1N Rubicun

31) jeep: Trade Y1 G1 Jeep

32) Babamots: Build Y1 Betazed

33) jeep: Build G1 Jeep

34) Babamots: Sacrifice Y2 Betazed
Move Y1 Betazed Grower
Move Y1 Grower Gammay
Catastrophe Gammay Y

35) jeep: Build R2 Jeep
	jeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.
	Babamots: Yes, I'm happy to continue this game. Sorry to see you out of the tournament, but I know life needs to take priority.

36) Babamots: Trade B3 G3 Rubicun



33226)
Started: 2017.10.7, Ended: 2017.12.1
Participants: MobyNostromo (S), orangeblood (N)
Winner: orangeblood

1) orangeblood: Homeworld B1 Y3 G3

2) MobyNostromo: Homeworld B2 G1 Y3

3) orangeblood: Build G1 Orangeblood
	orangeblood: Shall we do this again?
	MobyNostromo: Yes. I'll try to give you a more interesting game.


4) MobyNostromo: B Y1 Mobynostromo

5) orangeblood: Trade G1 B1 Orangeblood

6) MobyNostromo: B Y1 Mobynostromo

7) orangeblood: Build B1 Orangeblood

8) MobyNostromo: T Y1 G1 Mobynostromo

9) orangeblood: Trade B1 Y1 Orangeblood

10) MobyNostromo: T Y1 B1 Mobynostromo

11) orangeblood: Build B2 Orangeblood

12) MobyNostromo: B B2 Mobynostromo

13) orangeblood: Discover B2 Orangeblood G2 Proximacentauri

14) MobyNostromo: D B2 Mobynostromo R3 Merlot

15) orangeblood: Build B3 Proximacentauri

16) MobyNostromo: B B3 Mobynostromo

17) orangeblood: Trade B2 Y2 Proximacentauri

18) MobyNostromo: M B3 Mobynostromo Merlot

19) orangeblood: Build Y1 Proximacentauri

20) MobyNostromo: T B3 Y3 Merlot

21) orangeblood: Build B2 Proximacentauri

22) MobyNostromo: D B2 Merlot Y2 Lemonade

23) orangeblood: Discover B3 Proximacentauri G3 Mmmdonuts

24) MobyNostromo: M B1 Mobynostromo Merlot

25) orangeblood: Trade B1 R1 Orangeblood
	MobyNostromo: I'm getting hungry.

26) MobyNostromo: T Y3 G3 Merlot

27) orangeblood: Sacrifice Y1 Proximacentauri
Move B3 Mmmdonuts Mobynostromo
	orangeblood: Donuts and merlot.
	MobyNostromo: Yes!!

28) MobyNostromo: T G1 R1 Mobynostromo

29) orangeblood: Sacrifice R1 Orangeblood
Attack R1 Mobynostromo

30) MobyNostromo: S G3 Merlot
B Y1 Mobynostromo
B B1 Lemonade
B B3 Lemonade

31) orangeblood: Attack Y3 Mobynostromo
	MobyNostromo: I think you got me.

32) MobyNostromo: T B3 R3 Lemonade

33) orangeblood: Attack Y1 Mobynostromo
	orangeblood: It seems so... but I've been wrong before!

	orangeblood: Good game... thanks!
	MobyNostromo: Thank you!


33265)
Started: 2017.10.7, Ended: 2017.11.9
Participants: Gidaio (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Gidaio: Homeworld R3 B1 G3
	wil: Looks like it's been awhile holler if you have any questions
	Gidaio: I remember how to play, but I'm almost definitely going to lose. Thanks, though!

3) wil: Build G1 Wil

4) Gidaio: Build G1 Gidaio

5) wil: T G1 B1 Wil

6) Gidaio: Trade G1 Y1 Gidaio

7) wil: B B1 Wil

8) Gidaio: Build Y1 Gidaio

9) wil: D B1 Wil Y3 Y3

10) Gidaio: Discover Y1 Gidaio G2 Gallifrey

11) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

12) Gidaio: Build Y2 Gallifrey

13) wil: M B2 Y3 Gallifrey

14) Gidaio: Build Y2 Gidaio

15) wil: Trade B3 G3 Wil

16) Gidaio: Move Y2 Gallifrey Y3

17) wil: S G3 Wil
B B3 Gallifrey
B B3 Y3
B B3 Wil

18) Gidaio: Sacrifice G3 Gidaio
Build Y2 Y3
Build Y3 Gallifrey
Build Y3 Gidaio

19) wil: S B3 Y3
T B2 R2 Gallifrey
T B2 G2 Y3
T B3 G3 Wil

20) Gidaio: Move Y3 Gallifrey Y3
Catastrophe Y3 Yellow
	wil: Quite the response.

21) wil: A Y1 Gallifrey
	Gidaio: :D

22) Gidaio: Trade Y3 G3 Gidaio

23) wil: B Y2 Gallifrey

24) Gidaio: Discover Y2 Gidaio B2 Bob

25) wil: D Y2 Gallifrey B3 B3

26) Gidaio: Trade Y2 R2 Bob

27) wil: B B1 Gallifrey

28) Gidaio: Build Y2 Gidaio

29) wil: B Y2 Gallifrey

30) Gidaio: Move Y2 Gidaio Bob

31) wil: Discover B3 Gallifrey Y3 Y3

32) Gidaio: Move R2 Bob B3

33) wil: Sacrifice G3 Wil
Build B2 Gallifrey
Build B3 Wil
Build Y3 B3

34) Gidaio: Attack Y2 B3

35) wil: S B2 Gallifrey
T B3 G3 Wil
T B3 Y3 Y3

36) Gidaio: Build G1 Gidaio

37) wil: S G3 Wil
B B2 Gallifrey
B B3 Gallifrey
B B3 Wil

38) Gidaio: Sacrifice Y2 Bob
Move Y2 B3 Wil
Discover G1 Gidaio G2 Terragreen
	wil: The blue queen machine in operation
	Gidaio: Apparently!

39) wil: S R2 Gallifrey
A R2 B3
A Y2 Wil

40) Gidaio: Build Y2 Gidaio
	wil: The ships you have built for us are lovely, we have accepted delivery at both locations... When can we expect more?
	Gidaio: Gah! Didn't see that one...

41) wil: S B2 Gallifrey
T B3 R3 Gallifrey
T B3 G3 Wil

42) Gidaio: Build G1 Terragreen

43) wil: S G3 Wil
B B2 Gallifrey
B B2 Gallifrey
B B3 Wil
	Gidaio: I'm gonna lose, for sure. All that's left is to see how long I can make it and how much damage I can do.
	wil: Yes this where you wait patiently for me to do something stupid and pounce.

44) Gidaio: Sacrifice Y1 Gidaio
Move G1 Terragreen Y3

45) wil: B R1 Gallifrey

46) Gidaio: Build Y1 Gidaio

47) wil: B R1 Gallifrey

48) Gidaio: Build G1 Gidaio
	wil: Doomsday machine locked and loaded.

49) wil: S Y3 B3
M R3 Gallifrey Gidaio
M R1 Gallifrey Gidaio
M R1 Gallifrey Gidaio
C Gidaio R
	Gidaio: I literally have no idea what to do anymore. This has been a bad game for me.
	Gidaio: If I resign, though, I lose valuable information and future strategies based on how you defeat me!
	wil: This is now a classic doomsday.machine.  I have the two big transport ships ready to send all the required ships to cause acatastrophic ending to your star system

	wil: Fire torpedo tube 3 and send in the twins
	Gidaio: There was no way to win! Good game! Hopefully my next one won't be as horrible...


33296)
Variants: "Unrated, Sinister, Hard time"
Started: 2017.10.7, Ended: 2017.10.18
Participants: Felix (S), wil (N), dlwillson (E)
Winner: wil

1) wil: Homeworld B2 Y1 G3

2) dlwillson: H B3 Y2 G3 Dlwillson
	wil: I just challenged Jeep and Remneb for the tourney...  

3) Felix: Homeworld B1 R3 G3

4) wil: B G1 Wil
	Felix: Too many games to juggle?
	wil: Nevah!

5) dlwillson: B G1 Dlwillson

6) Felix: Build G1 Felix

7) wil: T G1 B1 Wil

8) dlwillson: Trade G1 B1 Dlwillson

9) Felix: Trade G1 B1 Felix

10) wil: B B2 Wil

11) dlwillson: Build B2 Dlwillson

12) Felix: Build B2 Felix

13) wil: D B1 Wil Y3 Y3
	wil: Next time we will have to mix up order..

14) dlwillson: Discover B1 Dlwillson G1 Field

15) Felix: Trade B2 Y2 Felix
	dlwillson: I set the seats to random. We just randomly ended up in the same order. :-)

16) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil

17) dlwillson: Build B3 Field

18) Felix: Discover B1 Felix G2 Corneria
	Draw5PlayAll: 9 blues already?!
	wil: The question is does he take me out to make himself and me weak again...  

19) wil: S B2 Y3
T B3 G3 Wil
T B1 R1 Y3
	Felix: Not today!

20) dlwillson: T B2 R2 Dlwillson
	dlwillson: It would have worked out better today.

21) Felix: Build B1 Corneria
	wil: Bettah for you!
	dlwillson: Better for Felix, too! But not better for Wil... :-)

22) wil: B G1 Wil
	Felix: 	
I fail to see how it would have worked out better for me :P I would have been left with but one ship.

23) dlwillson: Trade B3 Y3 Field
	dlwillson: You wouldn't have lost immediately... :-)

24) Felix: Trade B1 R1 Corneria

25) wil: T G1 R1 Wil

26) dlwillson: Build Y1 Field
	wil: He meant better for him...

27) Felix: Build Y1 Felix

28) wil: B G1 Wil

29) dlwillson: Move Y3 Field Corneria

30) Felix: Sacrifice B1 Corneria
Trade R1 Y1 Corneria

31) wil: T B2 Y2 Wil

32) dlwillson: Build R1 Dlwillson

33) Felix: Build Y2 Corneria

34) wil: Discover Y2 Wil G3 G3

35) dlwillson: B Y3 Field

36) Felix: Sacrifice Y1 Corneria
Discover Y2 Corneria G1 Focus
	dlwillson: Available bigs engage my avarice and make it harder to make good decisions. ;-)

37) wil: T G1 B1 Wil

38) dlwillson: M R2 Dlwillson Field

39) Felix: Build G1 Felix

40) wil: M B1 Wil G3

41) dlwillson: B R1 Field

42) Felix: Trade Y2 R2 Felix

43) wil: B G1 Wil

44) dlwillson: Move R1 Field Corneria

45) Felix: Trade G1 B1 Felix

46) wil: Build B2 G3

47) dlwillson: B B2 Field

48) Felix: Discover B1 Felix G2 Ficus

49) wil: B R2 Wil

50) dlwillson: Move B2 Field Corneria
	wil: Sure wish you were in the tourney dl

51) Felix: Move R2 Felix Ficus
	dlwillson: How's it going? How many rounds are complete? Where's the chart? Who should I be cheering for?
	Felix: Here's the tourney viewer: https://docs.google.com/spreadsheets/d/1kPVTvNAsvxu1bvDR4tmNEq4g5PzAjeSvPtPwbWv1l3c/pubhtml?gid=1121943752&single=true

Root for wil, obviously!

52) wil: M G1 Wil Y3
	wil: Yes me, Felix already has the edge on me!

53) dlwillson: Sacrifice G3 Dlwillson
Build B2 Corneria
Build R2 Corneria
Build R3 Dlwillson

54) Felix: Build R3 Ficus
	Felix: But I've lost 2 games so far to your one!

55) wil: B R3 Y3
	wil: Two to people I have not played...and you beat me!  Lol, not that I care... I play this game for the day that I see the same game twice.

56) dlwillson: Sacrifice Y3 Corneria
Move B2 Corneria Felix
Move B2 Corneria Felix
Discover B1 Field Y2 Sol

57) Felix: Sacrifice Y2 Focus
Move R2 Ficus Field
Move R2 Field Dlwillson
	dlwillson: I see that mneme is doing well. He's a very strong player. He hasn't been active on the ladder for a long time, but he and I used to take turns trying to beat...
	dlwillson: TwoShort. He's *very* hard to beat. I'd say that TTT is the only player stronger, but I've only seen TTT in a few games. As near as I can tell, he doesn't make mistakes.
	wil: Then there is broccoli commander... We are missing the four top names!!  
	dlwillson: What do you mean "the four top names"?

58) wil: S Y2 G3
M R1 Y3 Field
M R1 Field Dlwillson
C Dlwillson R
	Felix: Not my wisest move, but it's dangerous to corner a wild animal :P
	wil: I mean you ain't playing!!  
	dlwillson: Saw it coming! :-)

I thought to myself, "Felix can easily hand the game to Wil. I probably would, in his position."

I should've swapped something, so I'd be two-colored at home.

Good game, y'all!
	wil: You only gave him the choice of losing or insuring you didn't win...  But that is twice you two combatting provided me the easy win... And twice the luck of the draw put us in the same position.  Id like another game... Is it possible that we arrange the positions differently?
	wil: I'd also like to try four person partners.. Take any opponent out and the other resigns....partners take the same homeworld setup (banker, goldilocks or fortress)...  Who for the fourth?
	Felix: Yeah... I would lose if I kept it going, so I just wanted to give wil the victory to spite you for attacking me :)

Good game! I'd be up for trying again, or for 4p teams. Maybe ts52 or mneme if he's willing for the 4th.
	dlwillson: I'm down for whatever, but someone else has to set up the next one.
	Draw5PlayAll: I thought in teams, if one member of a team dies the other just has a disadvantage (or maybe not even that).
	wil: D5PA...who cares what the rules say on SDG...we can make up our own win conditions.  When one member dies, the team loses is my suggestion. 
	Draw5PlayAll: I have done 1 or 2 team matches unofficially and we used the "must eliminate both". I think we should put it to a vote, except that we would have an even number...
	wil: Is there really such thing as a team match that once one is eliminated the solo player comes back to beat the other two??
	Draw5PlayAll: I think it is similar to the red ability: it is more of a deterrent to certain types of plans than a thing you actually use often.

Also, it might be that one of the players (nearly) sacrifices himself to take out a member of the other team, and quickly it becomes a 1v1.

Then again, probably we should play it your way just because last time we did it mine and it is "only fair".

I'll alert the crew.



33297)
Variants: "Unrated, Hard time"
Started: 2017.10.7, Ended: 2017.10.15
Participants: wil (S), Remneb (N)
Winner: wil

1) Remneb: Homeworld B1 R3 G3

2) wil: H B2 Y1 G3

3) Remneb: Build G1 Remneb

4) wil: B G1 Wil

5) Remneb: Trade G1 Y1 Remneb

6) wil: T G1 B1 Wil

7) Remneb: Trade Y1 B1 Remneb

8) wil: B B2 Wil

9) Remneb: Build G1 Remneb

10) wil: D B1 Wil Y3 Y3

11) Remneb: Trade G1 Y1 Remneb

12) wil: T B2 Y2 Wil

13) Remneb: Discover B1 Remneb G2 Bronx
	wil: Tis a tourney game!

14) wil: M B1 Y3 Bronx
	Remneb: Trying to protect my blue star. I've lost it several times in the other games.

15) Remneb: Build B2 Bronx
	wil: I couldn't hear you so well, thought I'd come for a visit

16) wil: B B2 Bronx
C Bronx B

17) Remneb: Build G1 Remneb

18) wil: B G1 Wil

19) Remneb: Trade G1 B1 Remneb
	wil: Funny early reset button.
	Remneb: Yes.

20) wil: T G1 B1 Wil

21) Remneb: Discover B1 Remneb G2 King

22) wil: B B2 Wil

23) Remneb: Build B2 King

24) wil: T B1 R1 Wil

25) Remneb: Build G1 Remneb

26) wil: B B1 Wil

27) Remneb: Sacrifice Y1 Remneb
Discover B2 King Y3 Kong

28) wil: M B2 Wil Kong

29) Remneb: Discover B2 Kong Y2 Hydra

30) wil: M B2 Kong King

31) Remneb: Build B3 King

32) wil: B B3 Wil

33) Remneb: Trade B3 R3 King

34) wil: D B3 Wil G3 G3

35) Remneb: Attack B2 King

36) wil: S G3 Wil
B B3 Wil
B B3 G3
B R1 Wil

37) Remneb: Trade G1 Y1 Remneb

38) wil: M Y2 Wil G3

39) Remneb: Trade B2 Y2 King

40) wil: T B3 G3 Wil

41) Remneb: Build B2 King

42) wil: T B3 Y3 G3

43) Remneb: Sacrifice G3 Remneb
Build Y1 King
Build Y3 Remneb
Build B3 Hydra

44) wil: B B3 G3

45) Remneb: Trade B2 R2 Hydra

46) wil: T B3 R3 G3

47) Remneb: Discover B1 King Y3 Trump

48) wil: D Y3 G3 G2 G2

49) Remneb: Move B2 King Trump

50) wil: D B1 Wil G3 Gee3

51) Remneb: Build R1 King

52) wil: D Y2 G3 R2 R2

53) Remneb: Move B1 Trump King

54) wil: M Y3 G2 Remneb

55) Remneb: Sacrifice Y1 Remneb
Move R3 King Remneb
	wil: It is like a yellow family reunion

56) wil: S R3 G3
A R3 Remneb
A Y3 Remneb
P
	wil: I almost didn't see that opportunity... Gg!
	Remneb: Thanks for the game



33298)
Variants: "Unrated, Hard time"
Started: 2017.10.7, Ended: 2017.11.14
Participants: wil (S), jeep (N)
Winner: wil

1) jeep: Homeworld B1 Y2 G3
	jeep: This probably puts me over my capacity for reasonable playing, but you are likely to crush me fast. ;)

2) wil: H B3 Y1 G3

3) jeep: Build G1 Jeep

4) wil: B G1 Wil

5) jeep: Trade G1 B1 Jeep
	wil: I'll stop it and you can challenge me when available
	wil: Holler I'll.check with babamots...don't wanna spoil the tourney
	Babamots: If you can't play this many games at once, you can pause the game timer by clicking the "Call an Admin" link at the top (I've never seen a site administrator actually respond, so pausing the tier is all it does). I didn't put anything about this in the rules, so I think it's OK as long as you don't pause all your games and slow down the tournament :-).
	wil: I am noe in half a dozen games and just got to play 3 or 4 of them back and fourth turn after turn for 20-30 minutes...it was glorious.
	jeep: I'm okay with playing this. One of my others is a losing battle, so doesn't take much time.

6) wil: T G1 B1 Wil

7) jeep: Build B2 Jeep

8) wil: B B2 Wil

9) jeep: Discover B1 Jeep G3 Grower

10) wil: D B1 Wil Y2 Y2

11) jeep: Sacrifice G3 Jeep
Build B2 Grower
Build B3 Jeep
Build B3 Grower
	jeep: Yeah, didn't think ahead... 

12) wil: M B1 Y2 Grower
C Grower B
	wil: You didn't have to pull the trigger.

13) jeep: Trade B3 G3 Jeep
	jeep: Really? Hmm... I'll review it again later. I felt like I got further behind in all other moves I considered.

14) wil: B B1 Wil
	wil: Well we is definitely tied up...I only gained one step.

15) jeep: Build B1 Jeep

16) wil: T B1 Y1 Wil

17) jeep: Trade B2 Y2 Jeep

18) wil: B G1 Wil

19) jeep: Build G1 Jeep

20) wil: T G1 R1 Wil

21) jeep: Trade G1 R1 Jeep
	jeep: How does it go? If your opponent gets a weapon, you better get one too?

22) wil: B G1 Wil

23) jeep: Build G1 Jeep
	wil: Just to keep the peace.

24) wil: D G1 Wil B2 B2

25) jeep: Discover G1 Jeep B3 Changer

26) wil: B G1 B2

27) jeep: Build G2 Jeep

28) wil: B G2 Wil

29) jeep: Sacrifice G3 Jeep
Build G2 Changer
Build G3 Changer
Build G3 Jeep
	jeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.
	wil: Of course, and sorry you need to drop out...but literally, challenge me anytime!

30) wil: S Y1 Wil
M G1 B2 Changer
C Changer G

31) jeep: Build Y1 Jeep

32) wil: T G2 Y2 Wil



33306)
Variants: "Hard time"
Started: 2017.10.9, Ended: 2017.11.16
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H B2 Y1 G3

2) Felix: Homeworld B1 R3 G3

3) wil: B G1 Wil

4) Felix: Build G1 Felix

5) wil: T G1 B1 Wil

6) Felix: Trade G1 B1 Felix

7) wil: B B2 Wil

8) Felix: Build B2 Felix

9) wil: D B1 Wil Y3 Y3

10) Felix: Trade B1 Y1 Felix

11) wil: D B1 Y3 Y2 Y2

12) Felix: Build Y1 Felix

13) wil: B B1 Wil

14) Felix: Discover B2 Felix G2 Out

15) wil: D B1 Wil Y3 Y3

16) Felix: Discover Y1 Felix Y2 Crumpet

17) wil: S G3 Wil
B B3 Wil
B B3 Y3
B B3 Y2

18) Felix: Sacrifice G3 Felix
Build Y2 Crumpet
Build Y3 Felix
Build Y3 Felix

19) wil: T B2 R2 Wil

20) Felix: Trade Y1 R1 Felix

21) wil: T B1 Y1 Y3 Y3

22) Felix: Move Y1 Crumpet Y3

23) wil: T B3 G3 Y2

24) Felix: Trade Y3 G3 Felix

25) wil: D B1 Y2 Y3 Why3

26) Felix: Move Y2 Crumpet Y3
Catastrophe Y3 Y

27) wil: B G1 Y2

28) Felix: Build B1 Out

29) wil: M G1 Y2 Why3

30) Felix: Trade B1 Y1 Out

31) wil: Build B1 Why3

32) Felix: Build B2 Out

33) wil: M B1 Why3 Out

34) Felix: Trade B2 R2 Out

35) wil: B B2 Out

36) Felix: Attack B2 Out

37) wil: S G3 Y2
B B3 Why3
B B3 Out
C Out B
B B1 Why3

38) Felix: Build Y1 Out

39) wil: T B3 G3 Why3

40) Felix: Build Y2 Felix

41) wil: D B1 Why3 G2 G2

42) Felix: Move Y2 Felix G2

43) wil: S G3 Why3
B B2 Why3
B B2 Wil
B B3 G2

44) Felix: Sacrifice R1 Felix
Attack B1 G2

45) wil: Sacrifice B2 Why3
Trade B3 R3 G2
Trade B3 G3 Wil

46) Felix: Sacrifice Y2 G2
Move B1 G2 Felix
Move B1 Felix Out

47) wil: Trade B2 Y2 Wil

48) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y2 Felix
Build Y3 Out

49) wil: D Y2 Wil B3 B3

50) Felix: Sacrifice Y2 Felix
Move Y3 Out B3
Move R2 Out Why3

51) wil: M Y2 B3 G2
	wil: Nice

52) Felix: Attack B1 Why3

53) wil: B Y2 G2

54) Felix: Trade Y2 G2 Felix
	Felix: Thank you! I'm *trying* to focus a little more before I make moves in this game.

55) wil: M R3 G2 Why3

56) Felix: Sacrifice G2 Felix
Build R1 Why3
Build R1 Why3
Catastrophe Why3 Red

57) wil: M Y2 G2 Why3
	wil: Stop that focusing.. It just isn't fair.

58) Felix: Move Y1 Out Why3
	Felix: I'm making increasingly worse decisions, so I must have stopped focusing :P
	wil: I am proud of you.

59) wil: B Y2 G2

60) Felix: Discover B1 Why3 G2 Ichor

61) wil: M Y2 Why3 Out

62) Felix: Trade B1 R1 Ichor

63) wil: B R1 Wil

64) Felix: Discover B1 Out G3 In

65) wil: Sacrifice R2 Wil
Attack Y1 Out
Attack Y1 Why3

66) Felix: B B1 In
	wil: I blew that opportunity

67) wil: Move Y1 Out Felix
	Felix: And I blew my yellow monopoly, big time.

68) Felix: Trade Y3 G3 Felix
	wil: I do believe that is correct.

69) wil: Build Y3 G2

70) Felix: Attack Y1 Felix

71) wil: M Y1 Why3 Ichor

72) Felix: Attack Y1 Ichor

73) wil: S Y2 G2
M Y3 G2 In
D Y2 G2 B3 Be3

74) Felix: Build Y2 Ichor

75) wil: S G1 Why3
B Y3 Be3

76) Felix: Move Y1 Ichor In
	wil: Oops

77) wil: T Y2 R2 Be3

78) Felix: Sacrifice Y1 In
Move B1 In Ichor

79) wil: S R1 Wil
A B1 In

80) Felix: Build B2 Ichor

81) wil: B B2 In

82) Felix: Move B1 Ichor In

83) wil: T B2 R2 In

84) Felix: Build B2 In

85) wil: Build B3 In
Catastrophe In B

86) Felix: Move Y3 B3 Ichor

87) wil: Build G1 Wil

88) Felix: Build B1 Ichor

89) wil: T G1 B1 Wil

90) Felix: Discover B1 Ichor B3 Gym

91) wil: Move B1 Wil In

92) Felix: Build R1 Ichor

93) wil: B G1 Wil

94) Felix: Trade B1 G1 Gym

95) wil: T G1 R1 Wil

96) Felix: Move R1 Ichor Gym
	Felix: Phew! Just made it.
	wil: Lol, words used by one running down the airport and into a men's room stall...
	wil: I just made an r1.

97) wil: B G1 Wil

98) Felix: Build R2 Gym
	Felix: Hahahaha, it does indeed! Very crude :P

99) wil: B R3 In

100) Felix: Build R3 Ichor

101) wil: M R3 In Out

102) Felix: Build G1 Gym

103) wil: T G1 B1 Wil

104) Felix: Build G1 Gym

105) wil: D R2 Be3 G2 G2

106) Felix: Sacrifice Y2 Ichor
Move G1 Gym Wil
Move G1 Gym Wil

107) wil: M Y3 In Wil

108) Felix: Sacrifice R2 Gym
Attack B1 Wil
Attack R1 Wil

109) wil: Sacrifice R2 G2
Attack R1 Wil
Attack B1 Wil

110) Felix: Build G2 Wil
Catastrophe Wil Green

111) wil: Build R2 Out




112) Felix: Build R2 Gym

113) wil: Sacrifice Y2 Out
Move B1 Wil In
Discover B1 In G2 G2

114) Felix: Build G1 Felix

115) wil: Build B2 In

116) Felix: Sacrifice G3 Felix
Build G1 Gym
Build G3 Felix
Build B3 Ichor

117) wil: Trade B2 Y2 In

118) Felix: Move B3 Ichor In

119) wil: Sacrifice Y2 In
Move B1 In Out
Move R2 In G2

120) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Gym
Build B2 In

121) wil: Move Y3 Be3 G2

122) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B3 Ichor
Build Y1 Ichor

123) wil: Build Y2 G2
	wil: Hey, we were just spending a little time squatting at your in(n)... if you wanted us to leave you just had to say so...no need to chase us out!


124) Felix: Move Y1 Ichor Gym
	Felix: Hehehe, I know what you're doing, and it will probably work.

125) wil: Move R2 G2 Felix

126) Felix: Build Y2 Gym

127) wil: Attack Y1 Felix

128) Felix: Sacrifice Y3 Ichor
Move Y1 Gym Wil
Move Y2 Gym Wil
Catastrophe Wil Yellow
Move G3 Gym Wil

	wil: like i said
	wil: nice
	Felix: Good game! I honestly thought it wasn't going so well for me until about 5 turns ago.


33227)
Variants: "Unrated"
Started: 2017.10.12, Ended: 2017.12.11
Participants: wil (S), Ottia (N)
Winner: wil

1) Ottia: Homeworld G3 B2 Y3

2) wil: H Y2 B1 G3
	Ottia: Thanks for agreeing to another one, Wil! I will pay more attention this time around and not commit suicide (!).
	Ottia: (you deserve a worthy opponent, obviously)

3) Ottia: Build Y1 Ottia

4) wil: B G1 Wil

5) Ottia: Discover Y1 Ottia B1 Smurf

6) wil: Trade G1 Y1 Wil

7) Ottia: Build Y1 Ottia

8) wil: B Y2 Wil

9) Ottia: Build Y2 Ottia

10) wil: D Y1 Wil Y3 Y3

11) Ottia: Trade Y3 G3 Ottia

12) wil: D Y1 Y3 G2 G2

13) Ottia: Trade Y1 G1 Ottia

14) wil: Build G1 Wil

15) Ottia: Move G1 Ottia Smurf
	wil: I didn't notice you had green in your homeworld...tempting a catastrophe..
	Ottia: I know... (thanks for the remark i.e. taking care of me not committing suicide again)

16) wil: T G1 R1 Wil

17) Ottia: Build Y1 Ottia

18) wil: B Y3 G2

19) Ottia: Discover Y1 Smurf Y3 Yellowbrickroad

20) wil: M Y3 G2 Smurf

21) Ottia: Trade Y2 R2 Ottia

22) wil: B R1 Wil

23) Ottia: Build R1 Ottia

24) wil: S R1 Wil
A G1 Smurf

25) Ottia: Move R2 Ottia Smurf

26) wil: Sacrifice R1 Wil
Attack R2 Smurf

27) Ottia: Build Y2 Ottia
	wil: We welcome your new ship to the colony we like what you've done with the place

28) wil: Build Y3 G2
	Ottia: Ahem EXTERMINATE EXTERMINATE EXTERMINATE

29) Ottia: Trade Y2 R2 Ottia

30) wil: Build R1 Smurf

31) Ottia: Build Y2 Ottia
	Ottia: build y2 Ottia

32) wil: B G1 Wil
	Ottia: I SHOULD PLAY WHEN I AM FULLY AWAKE
I SHOULD PLAY WHEN I AM FULLY AWAKE
I SHOULD PLAY WHEN I AM FULLY AWAKE
(...)
	Ottia: I SHOULD PLAY WHEN I AM FULLY AWAKE
I SHOULD PLAY WHEN I AM FULLY AWAKE
I SHOULD PLAY WHEN I AM FULLY AWAKE
(...)

33) Ottia: Discover R2 Ottia G1 Cabbage

34) wil: S G3 Wil
B G2 Smurf
B G2 Smurf
B G3 Wil

35) Ottia: Move G3 Ottia Smurf
Catastrophe Smurf G

36) wil: M Y3 Smurf Ottia

37) Ottia: Move Y2 Ottia Cabbage
	Ottia: I'm sorry for taking so long to move... things are very busy at the moment for me. I hope I can respond a bit faster from now on.
	wil: No worries.. Life trumps games

38) wil: Sacrifice R2 Smurf
Attack Y1 Ottia
Attack R1 Ottia

	wil: good game!  Challenge me anytime


33339)
Variants: "Unrated, Hard time"
Started: 2017.10.16, Ended: 2017.12.5
Participants: bhorner (S), ts52 (N)
Winner: bhorner

1) ts52: Homeworld Y1 B2 G3

2) bhorner: Homeworld B3 R1 G3
	ts52: Have a good game!
	bhorner: You too, and just to be clear, this is for the Great Homeworlds Tournament organized by Babamots.  :)

3) ts52: Build G1 Ts52
	ts52: Yes, got that from the challenge details. But that's for making sure it was clear.

4) bhorner: B G1 Bhorner

5) ts52: Discover G1 Ts52 B3 Gonzo

6) bhorner: Trade G1 Y1 Bhorner

7) ts52: Build G1 Ts52

8) bhorner: B Y1 Bhorner

9) ts52: Build G1 Ts52

10) bhorner: B G2 Bhorner

11) ts52: B G2 Gonzo

12) bhorner: Build Y2 Bhorner

13) ts52: Trade G2 Y2 Gonzo

14) bhorner: Discover G2 Bhorner B2 Bloop

15) ts52: Trade G1 R1 Ts52

16) bhorner: Trade Y1 R1 Bhorner

17) ts52: Build R2 Ts52

18) bhorner: Build R2 Bhorner

19) ts52: Move R1 Ts52 Gonzo

20) bhorner: Move R2 Bhorner Bloop

21) ts52: Trade G1 B1 Ts52

22) bhorner: Move Y1 Bhorner Bloop

23) ts52: Build G1 Ts52

24) bhorner: B Y1 Bloop

25) ts52: Build B1 Ts52

26) bhorner: Trade Y1 B1 Bloop

27) ts52: Discover B1 Ts52 Y3 Bigbird

28) bhorner: Build Y1 Bloop

29) ts52: Move R2 Ts52 Bigbird

30) bhorner: Discover Y1 Bloop B3 Grover

31) ts52: Move G1 Ts52 Bigbird

32) bhorner: Sacrifice G3 Bhorner
Build Y2 Bloop
Build Y3 Bhorner
Build Y3 Grover

33) ts52: Build B2 Bigbird

34) bhorner: D B1 Bloop R3 Xmas

35) ts52: Discover B2 Bigbird G2 Kermit
	bhorner: Woops, not a good name.  :)

36) bhorner: D Y1 Grover G2 Branch

37) ts52: Build G1 Bigbird

38) bhorner: Build G3 Bloop

39) ts52: Build G3 Ts52

40) bhorner: Move G2 Bloop Grover

41) ts52: Move G3 Ts52 Xmas

42) bhorner: Move Y3 Grover Kermit

43) ts52: Move R2 Bigbird Branch

44) bhorner: D Y1 Branch R3 War

45) ts52: Sacrifice G3 Xmas
Build G3 Gonzo
Build R2 Branch
Build R3 Gonzo

46) bhorner: Sacrifice R1 Bhorner
Attack B2 Kermit

47) ts52: Move R3 Gonzo Ts52

48) bhorner: Sacrifice Y3 Kermit
Move B2 Kermit Xmas
Move B1 Xmas Ts52
Move B2 Xmas Ts52
Catastrophe Ts52 B

49) ts52: Sacrifice G3 Gonzo
Build G2 Ts52
Build G3 Gonzo
Build Y3 Gonzo

50) bhorner: Sacrifice Y3 Bhorner
Move Y1 War Ts52
Move Y1 Bloop Ts52
Move Y2 Bloop Ts52
Catastrophe Ts52 Y
	ts52: Well played sir. Excellent game.
	bhorner: It was, we cleaned out the entire bank.  :)



33340)
Variants: "Unrated, Hard time"
Started: 2017.10.16, Ended: 2017.10.21
Participants: wil (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y2 B1 G3
	Babamots: Good luck! Will you record the game for the tournament?

2) wil: H B3 Y1 G3
	wil: As initiator that is my job right?  Gonna try to get my games knocked out...  

3) Babamots: Build G1 Babamots
	Babamots: Right, since you issued the challenge, the rules ask you to record the results. It doesn't really matter who does it, but giving the job to the challenger helps to prevent duplication.

4) wil: Build G1 Wil

5) Babamots: Trade G1 Y1 Babamots

6) wil: T G1 Y1 Wil

7) Babamots: Build Y2 Babamots

8) wil: B Y2 Wil

9) Babamots: Discover Y1 Babamots G3 Tellar

10) wil: D Y1 Wil G2 G2

11) Babamots: Build Y3 Tellar
	wil: The copycat start....

12) wil: B Y3 G2

13) Babamots: Discover Y1 Tellar B2 Andor

14) wil: D Y3 G2 Y3 Y3

15) Babamots: Trade Y2 R2 Babamots
	wil: Prepped for round two

16) wil: T Y2 R2 Wil

17) Babamots: Build Y2 Tellar

18) wil: B Y2 G2
	wil: Why did my dang thumbs type b??

19) Babamots: Build R1 Babamots

20) wil: B R1 Wil

21) Babamots: Move Y3 Tellar G2

22) wil: S Y1 G2
D Y2 G2 R3 R3

23) Babamots: Build Y1 G2

24) wil: M R2 Wil Andor

25) Babamots: Sacrifice Y2 Tellar
Move Y1 Andor Y3
Move Y1 G2 Y3
Catastrophe Y3 Y

26) wil: B R1 Wil

27) Babamots: Discover R1 Babamots B3 Kronos

28) wil: Trade R1 B1 Wil

29) Babamots: Move Y3 G2 R3

30) wil: D Y2 R3 G2 G2
	Babamots: I need to stay busy today, so I won't be moving so much as yesterday.
	wil: No worries, play at your own pace.

31) Babamots: Move Y3 R3 Andor

32) wil: T R2 B2 Andor

33) Babamots: Sacrifice R1 Kronos
Attack B2S Andor

34) wil: M B1 Wil G2

35) Babamots: Discover B2 Andor G1 Vulcan

36) wil: B R1 Wil

37) Babamots: Build G1 Babamots

38) wil: T R1 B1 Wil

39) Babamots: Discover G1 Babamots B3 Orion

40) wil: Build R1 Wil

41) Babamots: Build G1 Babamots

42) wil: Build G2 Wil

43) Babamots: Sacrifice G3 Babamots
Build G2 Babamots
Build G3 Orion
Build G3 Babamots

44) wil: Sacrifice G3 Wil
Build B2 G2
Build B3 G2
Build G3 Wil

45) Babamots: Sacrifice Y3 Andor
Discover G3 Orion B2 Andor
Move G2 Babamots Orion
Move B2 Vulcan G2
Catastrophe G2 B

46) wil: Build B1 Wil

47) Babamots: Trade G2 Y2 Orion

48) wil: Move B1 Wil G2

49) Babamots: Sacrifice G3 Babamots
Build G1 Andor
Build G2 Orion
Build G3 Babamots

50) wil: S G3 Wil
B G3 Wil
B B2 G2
B Y1 G2

51) Babamots: Trade G3 B3 Andor

52) wil: M B1 Wil Andor

53) Babamots: Trade B3 Y3 Andor

54) wil: D B1 G2 G3 G3

55) Babamots: Sacrifice Y3 Andor
Move G1 Andor Wil
Move G1 Orion Andor
Move G1 Andor Wil
Catastrophe Wil G

56) wil: M Y1 G2 G3

57) Babamots: Sacrifice Y2 Orion
Move G2 Orion Andor
Move G2 Andor Wil
	wil: Nice

	Babamots: Red alert :)
	Babamots: Thanks for moving so often. I've really enjoyed this game.
	wil: Nice
	Babamots: Good game! Will you record the result for the tournament?
	Babamots: Nevermind, I went ahead and filled out the form. Thanks again!
	wil: oops,thx


33343)
Started: 2017.10.16, Ended: 2017.10.16
Participants: Nupanick (S), Laroka (N)
Winner: Nupanick

1) Laroka: Homeworld B3 Y1 G3

2) Nupanick: Homeworld R3 G2 B3

3) Laroka: Build G1 Laroka
	Nupanick: I'm gonna try something different from my normal opening, see how this goes.

4) Nupanick: Build B1 Nupanick

5) Laroka: Trade G1 B1 Laroka

6) Nupanick: Trade B1 Y1 Nupanick

7) Laroka: Build G1 Laroka

8) Nupanick: Build B1 Nupanick

9) Laroka: Trade G1 R1 Laroka

10) Nupanick: Build Y1 Nupanick

11) Laroka: Build G1 Laroka

12) Nupanick: Build Y2 Nupanick

13) Laroka: Sacrifice G3 Laroka
Build B1 Laroka
Build B2 Laroka
Build G1 Laroka

14) Nupanick: Trade Y2 R2 Nupanick
Catastrophe Laroka Blue



33344)
Started: 2017.10.16, Ended: 2017.10.16
Participants: Nupanick (S), Laroka (N)
Winner: Nupanick

1) Laroka: Homeworld B3 Y2 G3

2) Nupanick: Homeworld R3 G1 B3

3) Laroka: Build G1 Laroka

4) Nupanick: Build B1 Nupanick

5) Laroka: Trade G1 B1 Laroka

6) Nupanick: Trade B1 Y1 Nupanick

7) Laroka: Build G1 Laroka

8) Nupanick: Build Y1 Nupanick

9) Laroka: Trade G1 R1 Laroka

10) Nupanick: Build Y1 Nupanick

11) Laroka: Build R1 Laroka

12) Nupanick: Build B1 Nupanick

13) Laroka: Discover R1 Laroka B1 Boobies

14) Nupanick: Discover Y1 Nupanick G2 Ahegao

15) Laroka: Build B2 Laroka

16) Nupanick: Build B2 Nupanick
	Nupanick: PFFT.

17) Laroka: Trade B2 Y2 Laroka

18) Nupanick: Move B2 Nupanick Ahegao

19) Laroka: Build B2 Laroka

20) Nupanick: Build B2 Nupanick

21) Laroka: Trade B2 R2 Laroka

22) Nupanick: Trade B2 R2 Ahegao

23) Laroka: Build G1 Laroka

24) Nupanick: Move B2 Nupanick Ahegao

25) Laroka: Move R2 Laroka Boobies

26) Nupanick: Build B2 Ahegao

27) Laroka: Move G1 Laroka Boobies

28) Nupanick: Sacrifice Y1 Nupanick
Discover B2 Ahegao Y1 Paizuri

29) Laroka: Build G1 Boobies

30) Nupanick: Build Y2 Nupanick

31) Laroka: Move Y2 Laroka Boobies

32) Nupanick: Build Y3 Ahegao

33) Laroka: Build G2 Laroka

34) Nupanick: Move Y3 Ahegao Boobies

35) Laroka: Build Y3 Boobies

36) Nupanick: Sacrifice R2 Ahegao
Attack R2 Boobies
Attack Y3 Boobies

37) Laroka: Sacrifice R1 Boobies
Attack R2 Boobies

38) Nupanick: Trade Y3 R3 Boobies

39) Laroka: Move Y2 Boobies Laroka

40) Nupanick: Build Y3 Ahegao

41) Laroka: Trade G3 R3 Laroka

42) Nupanick: Attack R2 Boobies

43) Laroka: Build G2 Laroka

44) Nupanick: Attack G1 Boobies

45) Laroka: Trade G2 B2 Laroka

46) Nupanick: Sacrifice Y3 Ahegao
Move R2 Boobies Laroka
Move R3 Boobies Laroka
Move Y3 Boobies Laroka
Catastrophe Laroka Red

47) Laroka: Trade B2 R2 Laroka

48) Nupanick: Trade Y3 R3 Laroka

49) Laroka: Build G2 Boobies

50) Nupanick: Attack R2 Laroka

51) Laroka: Trade G1 R1 Boobies

52) Nupanick: Sacrifice R3 Laroka
Attack Y2 Laroka
Attack B1 Laroka
Attack G2 Laroka



33345)
Started: 2017.10.16, Ended: 2017.10.17
Participants: Laroka (S), Nupanick (N)
Winner: Nupanick

1) Nupanick: Homeworld R3 G2 B3

2) Laroka: Homeworld R3 B2 G3

3) Nupanick: Build B1 Nupanick

4) Laroka: Build G1 Laroka

5) Nupanick: Trade B1 Y1 Nupanick

6) Laroka: Trade G1 Y1 Laroka

7) Nupanick: Build B1 Nupanick

8) Laroka: Build G1 Laroka

9) Nupanick: Discover B1 Nupanick Y1 Altair

10) Laroka: Trade G1 R1 Laroka

11) Nupanick: Build Y2 Nupanick

12) Laroka: Build G1 Laroka

13) Nupanick: Build Y2 Nupanick

14) Laroka: Move G3 Laroka Altair

15) Nupanick: Discover B1 Altair G2 Betelgeuse

16) Laroka: Build G1 Laroka

17) Nupanick: Trade Y1 G1 Nupanick Nupanick

18) Laroka: Trade G1 B1 Laroka

19) Nupanick: Discover Y2 Nupanick R1 Castor

20) Laroka: Move B1 Laroka Altair

21) Nupanick: Move Y2 Castor Laroka

22) Laroka: Move G3 Altair Laroka

23) Nupanick: Sacrifice Y2 Laroka
Move Y2 Nupanick Altair
Move Y2 Altair Betelgeuse

24) Laroka: Move G1 Laroka Altair

25) Nupanick: Trade G1 Y1 Nupanick

26) Laroka: Build Y2 Laroka

27) Nupanick: Build Y2 Nupanick

28) Laroka: Move Y2 Laroka Altair

29) Nupanick: Build Y3 Betelgeuse

30) Laroka: Sacrifice Y2 Altair
Move G1 Altair Betelgeuse
Move B1 Altair Betelgeuse

31) Nupanick: Trade Y2 R2 Betelgeuse

32) Laroka: Build G1 Laroka

33) Nupanick: Attack G1 Betelgeuse

34) Laroka: Discover G1 Laroka B1 Caprica

35) Nupanick: Attack B1 Betelgeuse

36) Laroka: Move G3 Laroka Caprica

37) Nupanick: Sacrifice Y2 Nupanick
Move Y3 Betelgeuse Caprica
Move Y3 Caprica Laroka

38) Laroka: Trade G1 Y1 Caprica

39) Nupanick: Sacrifice R2 Betelgeuse
Attack R1 Laroka
Attack Y1 Laroka



33347)
Variants: "Unrated, Hard time"
Started: 2017.10.17, Ended: 2017.11.15
Participants: bhorner (S), wil (N)
Winner: bhorner

1) wil: H B2 Y1 G3
	wil: Lol tghwt eh?   I almost challenged you earlier today!

2) bhorner: H R1 B2 G3
	bhorner: You were the only one available with an open slot to play.  :). I don't think I've ever beat you (yet).

3) wil: B G1 Wil

4) bhorner: B G1 Bhorner

5) wil: T G1 B1 Wil
	bhorner: I only meant that in a friendly way btw, you invited me to the tournament! :)  Good luck!
	wil: No worries..may all mistakes be maximully capitalized on...
Back we are short universe!!!!
	wil: *ackk
	wil: Is this what you wanted?  Did you record the start to this game?  I'll be glad to play it if we have too, but a lot of people don't like short uni and if it was unintentional...
	bhorner: It was intentional.  I was a little worried that it might be a big advantage to the first player, but I haven't done it... hardly ever, and wanted to get you away from what you are used to.  :)
	bhorner: I will record the challenge, thanks for the reminder.
	wil: Lol, I like miniverse and microverse...totally game changers.

6) bhorner: T G1 Y1 Bhorner

7) wil: B B1 Wil

8) bhorner: B Y1 Bhorner

9) wil: D B1 Wil Y3 Y3

10) bhorner: T Y1 B1 Bhorner

11) wil: B G1 Wil

12) bhorner: Build Y1 Bhorner

13) wil: T G1 R1 Wil

14) bhorner: Trade Y1 R1 Bhorner

15) wil: B R2 Wil

16) bhorner: Build Y1 Bhorner

17) wil: T R2 Y2 Wil

18) bhorner: Build Y2 Bhorner

19) wil: D Y2 Wil G3 G3

20) bhorner: Move Y1 Bhorner G3
	wil: That wasn't the best move, but I think I just discovered something about this game layoutm
	bhorner: were you saying mine wasn't the best or yours?  That last move I made really had me in a bind, I learned a lot about this layout on my last move.  I figured you knew a lot about what was going on, and that was why I was in such a pinch.  I didn't think I had any other choices than what I did.

21) wil: B R2 Wil

22) bhorner: Build Y2 G3
	wil: No, I was saying my move was not the best
	Draw5PlayAll: Discovered what? The ordering of stars?
	bhorner: No... more like yellow is much more important earlier, and if your opponent gets to a y2, you can have a max of 2 of any color in your homeworld.  There is a need to expand earlier, before trying to grow too much.
	bhorner: Sorry, my last message was posted thinking that wil had asked what I'd discovered.  Please others, keep your comments to a minimum.

23) wil: T R2 G2 Wil
	wil: The peanut gallery is not to be heard... I believe we've discussed this.

24) bhorner: Sacrifice R1 Bhorner
Attack Y2 G3

25) wil: S G2 Wil
B G1 Wil
B B2 Y3

26) bhorner: Move B1 Bhorner G3

27) wil: B R1 Wil
	bhorner: Sorry for the long delay, busy week at work, lots of possibilities on both sides for this turn, and this game is important to me.  :)

28) bhorner: Build Y3 Bhorner
	wil: No worries.

29) wil: S G1 Wil
B B3 Y3

30) bhorner: Sacrifice Y2 Bhorner
Move B1 G3 Wil
Move B1 Wil Y3
Catastrophe Y3 Blue

31) wil: B R2 Wil

32) bhorner: Build Y2 Bhorner

33) wil: M R2 Wil G3
	wil: Yeah that was an oops
	bhorner: I will continue to try my hardest to avoid my own oops!  :)

34) bhorner: Sacrifice Y3 Bhorner
Discover Y2 G3 B2 Bloop
Discover Y2 G3 G2 Branch
Discover Y1 G3 G2 Twig

35) wil: D R1 Wil Y3 Y3

36) bhorner: Sacrifice G3 Bhorner
Build Y3 Bhorner
Build Y3 Bloop
Pass

37) wil: S G3 Wil
B R2 Y3
B R2 Y3
B R3 Wil

38) bhorner: Trade Y3 R3 Bloop

39) wil: T R3 Y3 Wil

40) bhorner: Sacrifice Y2 Bhorner
Move Y1 Bhorner Y3
Move Y1 Y3 Wil

41) wil: A Y1 Wil

42) bhorner: S Y2 Bloop
M Y1 Twig Y3
M Y1 Y3 Wil
C Wil Y

43) wil: M R2 Y3 Wil

44) bhorner: T Y3 G3 Bhorner
	bhorner: Maybe I went for it too soon...

45) wil: B R3 G3
	wil: One could.only hope... But you got this.

46) bhorner: B G1 Bhorner

47) wil: T R2 Y2 Wil

48) bhorner: Build Y1 Branch

49) wil: S Y2 Wil
M R3 G3 Wil
M R2 G3 Branch

50) bhorner: Sacrifice Y1 Branch
Discover Y2 Branch G1 Leaf

51) wil: T R1 G1 Wil

52) bhorner: Build G2 Bhorner

53) wil: B G2 Wil

54) bhorner: Trade G1 Y1 Bhorner

55) wil: T G2 Y2 Wil

56) bhorner: Trade R3 B3 Bloop

57) wil: B G1 Wil
	bhorner: I think I'll undo every move from here on out  :)

58) bhorner: Build Y1 Bhorner

59) wil: D G1 Wil B3 B3

60) bhorner: Trade Y1 B1 Bhorner

61) wil: Build G2 Wil

62) bhorner: Discover B1 Bhorner Y3 Sun

63) wil: Build G3 B3

64) bhorner: Sacrifice Y2 Leaf
Move B3 Bloop Y3
Move B3 Y3 Wil

	wil: at least now it doesn't look so bad.
	bhorner: If I had moved the little blue to your home first, you could have sacrifices your y2 to move your b1 and another ship both to be blue starts, draining the bank, so I couldn't cat your blues.  Was that part of your plan?  It was razor thin, with all my infos to squirrel that one out!  The hardest game I've ever played I think.  :)
	wil: I made a few mistakes early...it was a good game... I appreciate the ability to use the undo even thou the tourney organizers frown upon it...the locking things in with a movement coin is necessary in my opinion...good game.


33342)
Variants: "Unrated, Hard time"
Started: 2017.10.17, Ended: 2017.10.23
Participants: wil (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) wil: H B3 Y1 G3

3) mneme: Build G1 Mneme
	mneme: Good luck, have fun!

I've been delaying this challenge until I had fewer simultaneous games, I'll admit, because you are the only person in the tournament whom I -know- has a good chance of beating me!

4) wil: B G1 Wil

5) mneme: Trade G1 Y1 Mneme
	wil: Lol, one never knows.   I can be online for a bit till we slow down.
	wil: But take as much time as you need... 

6) wil: T G1 Y1 Wil
	mneme: *nod*  I'm at work, so that's some good some bad in terms of the online question; we'll see.

7) mneme: Build Y2 Mneme

8) wil: B Y2 Wil
	mneme: Hmm.  Not the way I'd play it...that said, I thought you might.

9) mneme: Discover Y1 Mneme B3 Melpomene

10) wil: D Y1 Wil G2 G2

11) mneme: Build G1 Mneme

12) wil: B G1 Wil

13) mneme: Move G1 Mneme Melpomene

14) wil: T G1 R1 Wil

15) mneme: Trade G1 R1 Melpomene

16) wil: B R2 Wil

17) mneme: Build G1 Mneme

18) wil: M R2 Wil G2

19) mneme: Sacrifice G1 Mneme
Build R2 Melpomene

20) wil: B R2 Wil

21) mneme: Sacrifice G3 Mneme
Build Y2 Melpomene
Build Y3 Mneme
Build R3 Melpomene

22) wil: M R2 G2 Melpomene
C Melpomene R
	wil: Nice quandry... I can't think far enough ahead to determine if it is better to get the large ships...

23) mneme: Trade Y2 G2 Mneme

24) wil: M R2 Wil G2
	mneme: Thanks.  I was in a quandry myself, so it seemed worth the risk to set up a more complex situation.

25) mneme: Trade Y1 R1 Melpomene

26) wil: B R2 Wil

27) mneme: Build G1 Mneme

28) wil: D R2 Wil Y2 Y2

29) mneme: Discover G1 Mneme Y3 Erato

30) wil: B R2 G2

31) mneme: Sacrifice G2 Mneme
Build Y1 Mneme
Build Y3 Melpomene

32) wil: M R2 G2 Erato

33) mneme: Sacrifice G1 Erato
Build R3 Melpomene

34) wil: Build R3 Wil

35) mneme: Trade R1 G1 Melpomene
	wil: I have a short universe game going in the tourney...That is something I have to remember everytime I look at the games being played...is this the one?

36) wil: Trade R3 B3 Wil

37) mneme: Trade Y1 G1 Mneme

38) wil: Build R1 G2

39) mneme: Build R3 Melpomene
	mneme: I mostly just re-enalalyze each game as I get to it, since earlier inthe tournament I was in 4 games at a time much of the time.  But with shoejitsu playing fairly slowly, I've mostly been able to give you my full attention.
	mneme: I should make a study of small and tiny universe games at some point.  I never have, largely because my intuiton reads them as a loss for player 2.  But since P2 starts the game on the attack if they don't simply start at disadvantage--so there are probably some openings where it's the right approach.
	wil: Dang it...I'd rather only get half of your intention.
	wil: I am a shoot from the hip player...  I don't have the attention span to figure out everything.  Although playing various players I get to learn new moves from their analyzing.  I do notice if anyone can't see anyway out they tend to not want to make a move at all... a homeworlds metaphor.

40) wil: B R3 Wil
	mneme: I'm also pretty shoot from the hip, but I do build a vocabulary of principles and best practices.  One of the reasons I avoid small universe games is that they're unfamiliar to me.  The stakes for everything are higher and there's less room to safely develop, so it seems like any advantage or disadvantage or risk is going to be magnified.  I might be able to turn this to my advantage with practice, but I'd need some time and losses to get the practice.

I learned  -so- much from my first few TwoShort games.
	wil: Yeah Ive started playing more unconventional games...just to learn them.

41) mneme: Discover R3 Melpomene G2 Urania

42) wil: B G1 Wil

43) mneme: Trade Y3 G3 Melpomene

44) wil: B B1 Wil

45) mneme: Trade G1 B1 Melpomene

46) wil: S Y2 Wil
M B1 Wil Y2
M G1 Wil Y2

47) mneme: Move B1 Melpomene Urania

48) wil: D B3 Wil G2 Gtwo

49) mneme: Build B1 Urania

50) wil: B B2 Y2

51) mneme: Move G3 Melpomene Y2

52) wil: M G1 Y2 Erato

53) mneme: Sacrifice R3 Urania
Attack B2 Y2
Attack R2 Y2
Attack B1 Y2

54) wil: B R3 Erato

55) mneme: Sacrifice G3 Y2
Build Y1 Melpomene
Build Y2 Mneme
Build Y3 Mneme

56) wil: M R3 Wil Y2

57) mneme: Move B2 Y2 Wil

58) wil: A R2 Y2

59) mneme: Sacrifice Y3 Mneme
Move B1 Urania Wil
Move B1 Y2 Wil
Catastrophe Wil B
Discover Y2 Mneme G3 Nemesis

60) wil: M R3 Erato Mneme

61) mneme: Sacrifice Y3 Mneme
Move Y2 Melpomene Wil
Move Y1 Melpomene Wil
Move Y2 Nemesis Wil
Catastrophe Wil Y

	wil: There...at least it will look like I tried in the final picture
	mneme: I don't think there was, after I grew Y.
	mneme: Good game!
	wil: challenge me anytime... I need more losses!! (only way I learn)
	mneme: :)  I'm pretty sure I'll face you at least once more in the tournament.  After that...we'll see!



33341)
Variants: "Unrated, Hard time"
Started: 2017.10.18, Ended: 2017.11.21
Participants: wil (S), shoejitsu (N)
Winner: wil

1) shoejitsu: Homeworld R3 B1 G3

2) wil: H B2 Y1 G3

3) shoejitsu: Build G1 Shoejitsu
	wil: Good luck, I will record the start of our tourney
	shoejitsu: good luck!

4) wil: B G1 Wil

5) shoejitsu: Build G1 Shoejitsu

6) wil: T G1 B1 Wil

7) shoejitsu: Trade G1 B1 Shoejitsu

8) wil: B B2 Wil

9) shoejitsu: Build G1 Shoejitsu

10) wil: D B2 Wil Y3 Y3

11) shoejitsu: Build B2 Shoejitsu

12) wil: Sacrifice G3 Wil
Build B3 Wil
Build B3 Y3
Build B3 Y3

13) shoejitsu: Trade G1 Y1 Shoejitsu
	shoejitsu: o my

14) wil: Sacrifice B2 Y3
Trade B3 G3 Wil
Trade B3 G3 Y3

15) shoejitsu: Discover B2 Shoejitsu G2 Mix
	wil: We retain the right to change our mind and our ships...took a break to retrofit.

16) wil: B G1 Wil

17) shoejitsu: Build Y1 Shoejitsu

18) wil: T B1 R1 Wil

19) shoejitsu: Trade Y1 R1 Shoejitsu

20) wil: T G1 Y1 Wil

21) shoejitsu: Move R1 Shoejitsu Mix
	wil: Ya let me into the oil fields.,

22) wil: B Y2 Wil
	shoejitsu: yeah.. probably could have traded the b1 away, oh well

23) shoejitsu: Build Y2 Shoejitsu
	Babamots: I noticed that this game didn't get recorded for the tournament. Would you like to do that, wil?

24) wil: D Y1 Wil B3 B3
	wil: Oops

25) shoejitsu: Move Y1 Shoejitsu Mix
	Babamots: I went ahead and started the tournament record of the game. Someone will just need to record the result at the end.
	MagicJohn: Yo, Babs........ Sorry I did not respond in the Wiz Garden Game but my wife is quite ill and I'm taking some time off gaming. Maybe catch you later...   Magic John

26) wil: D Y2 Wil B3 Be3
	shoejitsu: thanks babamots! one of us will take care of it
	wil: Take care of her and yourself magic...

27) shoejitsu: Discover B2 Mix Y3 It

28) wil: M B3 Y3 Mix

29) shoejitsu: Build Y2 Shoejitsu

30) wil: S G3 Y3
B G1 Wil
B Y3 B3
B Y3 Be3
	shoejitsu: this game man... you people amaze me sometimes XD

31) shoejitsu: Trade B2 G2 It
	wil: These games are never the Same.and always interesting...

32) wil: S R1 Wil
A R1 Mix
	shoejitsu: definitely. the hardest part of this game for me is probably mid game when trying to hone in on an end game strategy

33) shoejitsu: Sacrifice G2 It
Build Y3 Mix
Build G1 Shoejitsu
	wil: Begin with the end in mind.

34) wil: A Y3 Mix

35) shoejitsu: Move Y1 Mix B3
	shoejitsu: oops... guess i put that y3 in the wrong spot huh :D

36) wil: T Y3 R3 B3
	wil: My bad, I shoulda.thanked you for the big transport.ship and crew.

37) shoejitsu: Build Y3 Shoejitsu

38) wil: S Y2 Be3
M Y1 B3 Mix
M Y1 Mix Shoejitsu
C Shoejitsu Y
	shoejitsu: yes, and you're welcome XD

39) shoejitsu: Discover Y1 B3 R2 Up

40) wil: Sacrifice Y3 Be3
Move G1 Wil B3
Move G1 B3 Up
Move G1 Up Shoejitsu
Catastrophe Shoejitsu G

41) shoejitsu: Trade B1 G1 Shoejitsu

42) wil: Move B3 Mix Shoejitsu
	shoejitsu: hmm. i dont think ill be coming back from this one but ill play it out

43) shoejitsu: Build G1 Shoejitsu
	wil: Yeah...this is the end... challenge me anytime.

44) wil: Sacrifice R3 B3
Attack G1 Shoejitsu
Attack G1 Shoejitsu
Pass
	shoejitsu: good luck in the rest of the tourney!



33358)
Variants: "Hard time"
Started: 2017.10.21, Ended: 2017.12.1
Participants: ts52 (S), Draw5PlayAll (N)
Winner: ts52

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) ts52: Homeworld Y1 B2 G3

3) Draw5PlayAll: Build G1 Draw5playall
	ts52: That's an interesting opening. Forcing a small universe eh?
	Draw5PlayAll: I tried it against wil twice, who did the exact same thing (B2R2+G3) back.

4) ts52: Build G1 Ts52
	ts52: Interesting. I'm curious to see how this goes.

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) ts52: Trade G1 Y1 Ts52

7) Draw5PlayAll: Build Y2 Draw5playall

8) ts52: Discover Y1 Ts52 G3 Kermit

9) Draw5PlayAll: Trade Y1 B1 Draw5playall

10) ts52: Build G1 Ts52

11) Draw5PlayAll: Build G1 Draw5playall

12) ts52: Trade G1 B1 Ts52

13) Draw5PlayAll: Trade G1 R1 Draw5playall

14) ts52: Trade B1 R1 Ts52

15) Draw5PlayAll: Discover Y2 Draw5playall B1 B1

16) ts52: Build G1 Ts52

17) Draw5PlayAll: Build G1 Draw5playall

18) ts52: Trade G1 B1 Ts52

19) Draw5PlayAll: Trade G1 Y1 Draw5playall

20) ts52: Build Y2 Kermit

21) Draw5PlayAll: Build G1 Draw5playall

22) ts52: Move B1 Ts52 Kermit

23) Draw5PlayAll: Discover B1 Draw5playall G1 G1

24) ts52: Build G1 Ts52

25) Draw5PlayAll: Build Y2 Draw5playall

26) ts52: Discover Y2 Kermit R1 Elmo

27) Draw5PlayAll: Move Y2 Draw5playall Kermit

28) ts52: Build Y3 Kermit

29) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Kermit
Build Y3 Draw5playall
Catastrophe Kermit Yellow
Build G2 Draw5playall

30) ts52: Build R2 Ts52

31) Draw5PlayAll: Move R1 Draw5playall G1

32) ts52: Discover G1 Ts52 B3 Gonzo

33) Draw5PlayAll: Move G2 Draw5playall G1

34) ts52: Build G2 Ts52

35) Draw5PlayAll: Build R2 G1

36) ts52: Move R2 Ts52 Kermit

37) Draw5PlayAll: Build R3 G1

38) ts52: Sacrifice G3 Ts52
Build R3 Ts52
Build R3 Kermit
Build Y1 Elmo

39) Draw5PlayAll: Trade R3 Y3 G1

40) ts52: Trade R3 Y3 Kermit

41) Draw5PlayAll: Discover R1 G1 Y2 Y2

42) ts52: Build R3 Kermit

43) Draw5PlayAll: Build R3 G1

44) ts52: Move R3 Kermit B1

45) Draw5PlayAll: Move Y2 B1 Gonzo

46) ts52: Move Y1 Elmo Kermit

47) Draw5PlayAll: Sacrifice R1 Y2
Attack G1 Gonzo

48) ts52: Sacrifice Y3 Kermit
Move Y1 Kermit Draw5playall
Move Y2 Elmo Draw5playall
Move R3 B1 Draw5playall
Catastrophe Draw5playall Yellow

49) Draw5PlayAll: Sacrifice Y2 Gonzo
Move R2 G1 Draw5playall
Move R3 G1 Draw5playall
Catastrophe Draw5playall Red

50) ts52: Discover R3 Ts52 Y3 Bigbird
	Draw5PlayAll: Huh?!

	Draw5PlayAll: "Far from over"?! You win in 3 moves!
	ts52: Yeah, I thought of taking the large out of my homeworld right after I posted that. Thanks for the game!


33360)
Variants: "Unrated, Hard time"
Started: 2017.10.21, Ended: 2017.10.28
Participants: eliscinsky (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y2 B1 G3

2) eliscinsky: Homeworld Y1 B2 G3
	Babamots: Thanks for the game! Will you record it for the tournament?

3) Babamots: Build G1 Babamots

4) eliscinsky: Build G1 Eliscinsky
	Babamots: I went ahead and filled out the tournament form. Good luck!

5) Babamots: Trade G1 Y1 Babamots

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Babamots: Build Y2 Babamots

8) eliscinsky: Build Y2 Eliscinsky

9) Babamots: Sacrifice Y2 Babamots
Discover Y1 Babamots Y3 Iconia
Move Y1 Iconia Eliscinsky
Catastrophe Eliscinsky Y

10) eliscinsky: Build G1 Eliscinsky

11) Babamots: Build G1 Babamots
	Babamots: Back to square one :-).

12) eliscinsky: Trade G1 Y1 Eliscinsky

13) Babamots: Discover G1 Babamots Y3 Ferenginar

14) eliscinsky: Build G1 Eliscinsky

15) Babamots: Build G1 Babamots
	eliscinsky: I spy with my little eye ... a Trekie!

16) eliscinsky: Trade G1 R1 Eliscinsky

17) Babamots: Trade G1 R1 Babamots

18) eliscinsky: Build G1 Eliscinsky

19) Babamots: Build G1 Ferenginar

20) eliscinsky: Trade G1 R1 Eliscinsky

21) Babamots: Build R2 Babamots

22) eliscinsky: Move R1 Eliscinsky Ferenginar

23) Babamots: Sacrifice R1 Babamots
Attack R1S Ferenginar

24) eliscinsky: Build Y1 Eliscinsky

25) Babamots: Discover G1 Ferenginar B1 Betazed

26) eliscinsky: Trade Y1 B1 Eliscinsky

27) Babamots: Build G1 Babamots
	Babamots: Definitely a Trekkie :-). Many of my system names are pretty obscure though. I use "Iconia" and "Galorndon" often.

28) eliscinsky: Build B2 Eliscinsky

29) Babamots: Build G2 Ferenginar

30) eliscinsky: Build R1 Eliscinsky

31) Babamots: Build G2 Betazed

32) eliscinsky: Build Y1 Eliscinsky
	eliscinsky: Just keep swimming, swimming, swimming. Just keep swimming, swimming, swimming.  haha

33) Babamots: Sacrifice G3 Babamots
Build G2 Betazed
Build G3 Babamots
Build G3 Babamots

	eliscinsky: I resign. I now hate this game. 
	eliscinsky: I guess I just cannot grasp the rules.  Everytime I try something I think should be possible the system tells me "No more moves".
	Babamots: I'll write you a PM with some hopefully useful information.


32620)
Variants: "Sinister"
Started: 2017.10.23, Ended: 2018.4.9
Participants: Draw5PlayAll (S), agentofchaos (W), Vezeon (N), Babamots (E)
Winner: Babamots

1) Vezeon: Homeworld R1 B3 G3

2) Babamots: Homeworld Y2 B1 G3

3) Draw5PlayAll: Homeworld B2 R3 G3
	Babamots: I forgot I signed up for this game. I've never actually played sinister, so this should be fun! 
	Vezeon: sinister? lol
	Vezeon: I'm just trying to figure out how to play homeworlds online. I didn't realize this was a different variant until I saw 4 players.
	Babamots: Sinister means you're trying to eliminate the guy on your left. In your case, Vezeon, you win if *you* destroy me. If someone else kills me, no one wins yet, and the player to your left is then the South player.
	Vezeon: Oh sweet ok! I was reading the rules earlier and it was talking about good vs evil but I guess that's more of when you are playing tabletop
	Babamots: Yeah, this site doesn't support good vs evil rules.
	Vezeon: Makes sense. The honor system wouldn't work either lol
	Babamots: Actually, it wouldn't be hard to have the site randomly assign alignments to the players that only they could see. But I think most people are more interested in rules that don't involve chance.
	Vezeon: True, this is definitely a wonderful game that relies heavily on strategy and throwing in the chance factor is a bit iffy.

4) agentofchaos: Homeworld B1 R2 G3
	Draw5PlayAll: So just so it is all clear...
Draw5PlayAll (me) needs to destroy AgentOfChaos who needs to destroy Vezeon who needs to destroy Babamots who needs to destroy me.
	Vezeon: Thanks! :)

5) Vezeon: Build G1 Vezeon
	agentofchaos: First time I have played sinister, thanks for the tips! :-)

6) Babamots: Build G1 Babamots

7) Draw5PlayAll: Build G1 Draw5playall

8) agentofchaos: Build G1 Agentofchaos

9) Vezeon: Trade G1 Y1 Vezeon

10) Babamots: Trade G1 B1 Babamots

11) Draw5PlayAll: Trade G1 Y1 Draw5playall

12) agentofchaos: Trade G1 B1 Agentofchaos
	Babamots: Well, do we continue? The stashes are a little big for a three-player game.
	Draw5PlayAll: What just happened?! It has not been enough time yet...

I vote to continue.
	agentofchaos: I agree the stashes are a little big, but I'm willing to continue and see what happens.

13) Babamots: Build B1 Babamots

14) Draw5PlayAll: Build G1 Draw5playall

15) agentofchaos: Build G1 Agentofchaos
	Draw5PlayAll: Apparently Vezeon's account has been deleted.

16) Babamots: Discover B1 Babamots G3 Ferenginar
	agentofchaos: how unusual

17) Draw5PlayAll: Build Y1 Draw5playall
	Draw5PlayAll: Who locked me out of blue while I was not looking?

18) agentofchaos: Trade G1 Y1 Agentofchaos
	Babamots: That would be me and my new friend agentofchaos.

19) Babamots: Build B2 Ferenginar

20) Draw5PlayAll: Discover Y1 Draw5playall G1 G1

21) agentofchaos: Build B2 Agentofchaos

22) Babamots: Trade B2 Y2 Ferenginar

23) Draw5PlayAll: Build Y1 G1

24) agentofchaos: Discover B2 Agentofchaos Y3 Kakradoom

25) Babamots: Build B2 Ferenginar

26) Draw5PlayAll: Build Y2 Draw5playall

27) agentofchaos: Build Y2 Agentofchaos

28) Babamots: Trade B2 R2 Ferenginar

29) Draw5PlayAll: Trade Y2 B2 Draw5playall

30) agentofchaos: Build G1 Agentofchaos

31) Babamots: Move R2 Ferenginar G1

32) Draw5PlayAll: Sacrifice Y1 G1
Discover Y1 G1 G2 G2
	Draw5PlayAll: That gives you no profit though.

33) agentofchaos: Sacrifice G1 Agentofchaos
Build B2 Kakradoom
	Babamots: Even though this isn't exactly a zero-sum game, in this case I think your loss is my profit.

34) Babamots: Move B1 Babamots Kakradoom

35) Draw5PlayAll: Trade G1 R1 Draw5playall

36) agentofchaos: Trade B2 R2 Kakradoom

37) Babamots: Move B1 Kakradoom G1

38) Draw5PlayAll: Discover B2 Draw5playall G1 G1b

39) agentofchaos: Build G1 Agentofchaos

40) Babamots: Build B2 G1

41) Draw5PlayAll: Build G1 Draw5playall

42) agentofchaos: Move G1 Agentofchaos Kakradoom

43) Babamots: Trade B2 Y2 G1

44) Draw5PlayAll: Move R1 Draw5playall G1b

45) agentofchaos: Build B2 Kakradoom

46) Babamots: Build B2 Ferenginar

47) Draw5PlayAll: Build B3 G1b

48) agentofchaos: Build R1 Kakradoom

49) Babamots: Build B3 G1

50) Draw5PlayAll: Trade B3 Y3 G1b

51) agentofchaos: Move B2 Kakradoom G2
	Babamots: I'm a little afraid agent's not coming back. What do you think D5PA? Is your enthusiasm for this match ebbing too?
	Draw5PlayAll: 2-3 more days then we can boot the player

52) Babamots: Discover B3 G1 Y2 Galorndon
	agentofchaos: sorry been a bit distracted lately, will try to move more promptly

53) Draw5PlayAll: Build B3 G1b

54) agentofchaos: Move R1 Kakradoom G2

55) Babamots: Build B3 G1

56) Draw5PlayAll: Discover Y1 G2 G1 Escape

57) agentofchaos: Build G2 Agentofchaos

58) Babamots: Move B3 Galorndon Vezeon

59) Draw5PlayAll: Build R1 G1b

60) agentofchaos: Build B3 G2

61) Babamots: Attack G3N Vezeon

62) Draw5PlayAll: Discover G1 Draw5playall Y1 Y1

63) agentofchaos: Build G2 Kakradoom

64) Babamots: Build G2 Vezeon
	Draw5PlayAll: How is that AI project coming along?

65) Draw5PlayAll: Build G2 Y1

66) agentofchaos: Trade B2 Y2 G2

67) Babamots: Sacrifice G3 Vezeon
Build Y3 Ferenginar
Build Y3 G1
Build G3 Vezeon
	Babamots: Haven't done anything with it for a while. There are still problems with not being able to find all valid moves.

68) Draw5PlayAll: Build Y3 Escape

69) agentofchaos: Build B2 G2

70) Babamots: Trade B3 R3 Vezeon

71) Draw5PlayAll: Discover R1 G1b B3 B3

72) agentofchaos: Build R1 Kakradoom

73) Babamots: Sacrifice Y3 Ferenginar
Move B1 Ferenginar Babamots
Move Y3 G1 Draw5playall
Move B3 G1 Draw5playall

74) agentofchaos: Move B3 G2 Escape

75) Babamots: Sacrifice G3 Vezeon
Build R2 G1
Build Y3 G1
Build G3 Vezeon
	Babamots: Oh don't go! I'm supposed to eliminate you!
	Draw5PlayAll: Muhahahahaha

	Draw5PlayAll: Uhhhhhhhhhh
	Babamots: I'm perfectly happy to take the time-out win. As far as I'm concerned, I won by defeating the player to my left. Resigning to prevent that victory from technically happening isn't really in the spirit of the game.


33007)
Variants: "Hard time"
Started: 2017.10.23, Ended: 2017.10.26
Participants: Felix (S), Vezeon (N)
Winner: Felix

1) Vezeon: Homeworld R1 B3 G3

2) Felix: Homeworld R2 B3 G3

3) Vezeon: Build G1 Vezeon

4) Felix: Build G1 Felix

5) Vezeon: Trade G1 Y1 Vezeon

6) Felix: Trade G1 Y1 Felix

7) Vezeon: Discover Y1 Vezeon G2 Train

8) Felix: Build G1 Felix

9) Vezeon: Build G1 Vezeon

10) Felix: Discover G1 Felix B1 Out

11) Vezeon: Move Y1 Train Out

12) Felix: Trade G1 R1 Out

13) Vezeon: Discover Y1 Out G2 Eye

14) Felix: Build G1 Felix

15) Vezeon: Trade G1 B1 Vezeon

16) Felix: Move G1 Felix Out

17) Vezeon: Build G1 Vezeon



33295)
Started: 2017.10.23, Ended: 2017.10.26
Participants: Vezeon (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B1 G2 Y3

2) Vezeon: Homeworld R2 B3 G3

3) MobyNostromo: B Y1 Mobynostromo

4) Vezeon: Build G1 Vezeon

5) MobyNostromo: B Y1 Mobynostromo

6) Vezeon: Build G1 Vezeon

7) MobyNostromo: T Y1 G1 Mobynostromo

8) Vezeon: Trade G1 Y1 Vezeon

9) MobyNostromo: T Y1 B1 Mobynostromo

10) Vezeon: Build Y1 Vezeon

11) MobyNostromo: D B1 Mobynostromo G3 Hohoho

12) Vezeon: Discover Y1 Vezeon R1 Deana

13) MobyNostromo: B B1 Hohoho

14) Vezeon: Trade G1 R1 Vezeon



33047)
Variants: "Hard time"
Started: 2017.10.23, Ended: 2017.10.26
Participants: Vezeon (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3
	wil: Diving right into the deep end of the pool?

2) Vezeon: Homeworld R3 B1 G3
	Vezeon: lol, how'd you know?

3) wil: Build G1 Wil
	wil: When I get challenged to a game by someone I don't know...I take a look at their game play on the site...  If never played homeworlds I then ask if they want a learning game...where I inform them of my thoughts on their moves and missed opportunities...  saw yours and it looked like you were in a bunch of games..yet never played (here at least)  Do you have a copy of arcade at home?

4) Vezeon: Build G1 Vezeon
	Vezeon: Yea, I have a copy at home but nobody is really into homeworlds. I've only been able to play a handful of times so i'm excited to use this website.

5) wil: T G1 B1 Wil
	wil: My recommendation is to lose and lose often...you will start to see attacks coming at you...and watch them.build...and then when you try that attack you'll get to see the counter...ask any questions you want during the game.  I usually recommend you set up a live set on a table so you can look at them.  (But you are in so many games...but still...if you want to ponder..) 

6) Vezeon: Trade G1 Y1 Vezeon
	Vezeon: I love the advice. Particularly the live set up of the game.  I might have to try that one day. Thanks for your help.

7) wil: B B1 Wil

8) Vezeon: Build G1 Vezeon
	wil: Often best to play follow the leader early in the game with attempts to insure you get what they get.
	wil: I count how many ships of each color to twos. And how many ships each of each color to threes.

9) wil: D B1 Wil Y3 Y3
	Vezeon: Yea I noticed its best not to make the next size available to the opponent when possible

10) Vezeon: Build Y1 Vezeon
	wil: In this game you will learn the horror of fighting the blue monopoly (if I have my way)

11) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil
	Vezeon: Ooo. That should be pretty fun to experience 

12) Vezeon: Build Y2 Vezeon
	Vezeon: Nice!

13) wil: Discover B2 Y3 G2 G2

14) Vezeon: Discover Y2 Vezeon R2 Boom
	wil: I like to name my stars by the star sizes and types...lazy I am.   Most players have favorite names they use, Andy likes using actual star names.
	Vezeon: Lol, I see! So far I like naming them but i can see myself getting lazy 

15) wil: Trade B3 G3 Wil

16) Vezeon: Trade G1 R1 Vezeon

17) wil: S G3 Wil
B B3 Wil
B B3 Y3
B B3 G2
	wil: lol...I don't encourage using my star naming system....confuses the heck out of everything when two of us use it.
	Vezeon: Oh lord i bet!

18) Vezeon: Move R1 Vezeon G2

19) wil: S B2 Y3
T B3 Y3 G2
T B3 G3 Wil
	wil: Witness the blue queen mill...  More powerful than a factory...



20) Vezeon: Move Y2 Boom Y3

21) wil: S G3 Wil
B B2 G2
B B3 G2
B B3 Wil
	wil: There is a gnat in my midst...but I am on a mission... I'll swat him in a minute.

22) Vezeon: Sacrifice R1 G2
Attack B1 Y3

23) wil: Sacrifice B2 G2
Trade B3 R3 Y3
Trade B3 G3 Wil

24) Vezeon: Move B1 Y3 G2

25) wil: T B2 R2 G2
	wil: I didn't do that quite right...wasted a couple turns, but in the process now have four large ships...the power of the blue queen mill... 
	Vezeon: They are giant and scary!

	wil: Challenge anytime...  But that was the power of a blue monopoly...try not to let anyone do that to ya...it is trouble.
	Draw5PlayAll: Apparently Vezeon's account was deleted. The only information I have is that attempting to access that profile brings up my own.


33365)
Variants: "Hard time"
Started: 2017.10.23, Ended: 2017.10.26
Participants: Felix (S), Vezeon (N)
Winner: Felix

1) Vezeon: Homeworld R2 B3 G3

2) Felix: Homeworld Y1 B3 G3

3) Vezeon: Build G1 Vezeon
	Felix: Hello! First game?
	Vezeon: Yup, well so far as online is concerned. Still a noob either way you swing it.

4) Felix: Build G1 Felix
	Felix: Cool! Hope you have fun!

5) Vezeon: Trade G1 Y1 Vezeon

6) Felix: Trade G1 Y1 Felix
	Vezeon: Thanks! Pretty cool so far.

7) Vezeon: Build Y2 Vezeon
	Felix: It's an incredibly deep game, but always fun.
	Vezeon: Yea, I was stoked to find out I could play it online. I didn't realize it was a "wait a few days" to take a turn game but oh well.

8) Felix: Build Y2 Felix

9) Vezeon: Discover Y2 Vezeon G1 Grump

10) Felix: Discover Y1 Felix G2 Out
	Felix: Yeah, there's no live implementation online, unfortunately, so these games tend to take a while.
	Vezeon: It's sort of neat to return to it every now and then. It feels like real space combat as if we are waiting for our ships to construct or travel

11) Vezeon: Build G1 Vezeon

12) Felix: Build G1 Felix
	Felix: That's a neat way to think about it!

13) Vezeon: Build G2 Vezeon

14) Felix: Discover G1 Felix B2 Opus

15) Vezeon: Discover G2 Vezeon B1 Free

	Felix: Aw, shame. Why the resignation?
	Draw5PlayAll: Apparently Vezeon's account was deleted. The only information I have is that attempting to access that profile brings up my own.


33257)
Variants: "Unrated, Hard time"
Started: 2017.10.23, Ended: 2017.10.26
Participants: Vezeon (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) Vezeon: Homeworld B3 R2 G3
	dlwillson: Good luck and have fun!
	Vezeon: Thanks! This is my first game of homeworlds not on a tabletop!

3) dlwillson: Build G1 Dlwillson

4) Vezeon: Build G1 Vezeon

5) dlwillson: T G1 R1 Dlwillson

6) Vezeon: Build G1 Vezeon

7) dlwillson: B R1 Dlwillson

	dlwillson: Whoa! What happened? Why did you resign?
	Draw5PlayAll: Apparently Vezeon's account was deleted. The only information I have is that attempting to access that profile brings up my own.


33363)
Variants: "Hard time"
Started: 2017.10.23, Ended: 2017.11.19
Participants: agentofchaos (S), bhorner (N)
Winner: bhorner

1) bhorner: H R2 B1 G3

2) agentofchaos: Homeworld B3 R2 G3

3) bhorner: B G1 Bhorner
	agentofchaos: Hi, gl
	bhorner: Hi there, gl to you too!

4) agentofchaos: Build G1 Agentofchaos

5) bhorner: Trade G1 B1 Bhorner

6) agentofchaos: Trade G1 B1 Agentofchaos

7) bhorner: Build B2 Bhorner

8) agentofchaos: Build B2 Agentofchaos

9) bhorner: T B2 Y2 Bhorner

10) agentofchaos: Trade B2 Y2 Agentofchaos

11) bhorner: B B2 Bhorner

12) agentofchaos: Build B2 Agentofchaos

13) bhorner: Discover B1 Bhorner G3 Xmas

14) agentofchaos: Discover B2 Agentofchaos G1 Wopolsa

15) bhorner: Trade B2 R2 Bhorner

16) agentofchaos: Trade B1 R1 Agentofchaos

17) bhorner: B G1 Bhorner

18) agentofchaos: Build B1 Wopolsa

19) bhorner: B B2 Xmas

20) agentofchaos: Trade B2 Y2 Wopolsa

21) bhorner: T B1 Y1 Xmas

22) agentofchaos: B R1 Agentofchaos

23) bhorner: B Y1 Xmas



33387)
Variants: "Unrated, Hard time"
Started: 2017.10.28, Ended: 2017.11.10
Participants: eliscinsky (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R2 B1 G3

2) eliscinsky: Homeworld R1 B2 G3
	bhorner: Hi there, good luck!

3) bhorner: Build G1 Bhorner

4) eliscinsky: Build G1 Eliscinsky

5) bhorner: Trade G1 Y1 Bhorner

6) eliscinsky: Trade G1 Y1 Eliscinsky
	bhorner: Sorry about the undo, I didn't realize you made the same size homeworld as me, I need to consider more carefully!

7) bhorner: Build G1 Bhorner
	eliscinsky: NP. I've been undoing quite a lot the last few games. ;)

8) eliscinsky: Build G1 Eliscinsky

9) bhorner: Trade G1 B1 Bhorner

10) eliscinsky: Trade G1 R1 Eliscinsky

11) bhorner: Build B1 Bhorner

12) eliscinsky: Build G1 Eliscinsky

13) bhorner: Build G1 Bhorner

14) eliscinsky: Build R1 Eliscinsky

15) bhorner: D B1 Bhorner R3 War

16) eliscinsky: Discover R1 Eliscinsky Y3 Frodo

17) bhorner: Move G1 Bhorner War

18) eliscinsky: Move R1 Frodo Bhorner

19) bhorner: Attack R1 Bhorner

20) eliscinsky: Build R2 Eliscinsky

21) bhorner: Sacrifice G3 Bhorner
Build B2 War
Build B2 War
Build B3 Bhorner

22) eliscinsky: Discover R1 Eliscinsky Y3 Frodo

23) bhorner: Discover B1 Bhorner G3 Xmas

24) eliscinsky: Move G1 Eliscinsky Frodo

25) bhorner: Build B3 Xmas

26) eliscinsky: Build R2 Frodo

27) bhorner: Move R1 Bhorner Xmas

28) eliscinsky: Build R3 Frodo

29) bhorner: Build R3 Xmas

30) eliscinsky: Move R3 Frodo Bhorner

31) bhorner: Attack R3 Bhorner

32) eliscinsky: Build G1 Eliscinsky

33) bhorner: Trade B2 Y2 War

34) eliscinsky: Move R2 Eliscinsky Frodo

35) bhorner: Sacrifice Y2 War
Move R1 Xmas Bhorner
Move R1 Bhorner Frodo
Catastrophe Frodo R

36) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Frodo
Build G2 Frodo
Build G2 Eliscinsky

37) bhorner: S Y1 Bhorner
M R3 Xmas Eliscinsky

38) eliscinsky: Build G3 Eliscinsky

39) bhorner: S R3 Bhorner
A G3 Eliscinsky
A G2 Eliscinsky
A G1 Eliscinsky

40) eliscinsky: Build G3 Frodo

41) bhorner: Sacrifice B3 Xmas
Trade G3 Y3 Eliscinsky
Trade G2 Y2 Eliscinsky
Trade G1 Y1 Eliscinsky
Catastrophe Frodo G
Catastrophe Eliscinsky Y

	bhorner: I will give you your bang!  :)
	bhorner: Double catastrophe.  :)
	eliscinsky: Hazzah!!!


33388)
Variants: "Unrated"
Started: 2017.10.28, Ended: 2017.11.11
Participants: ts52 (S), Remneb (N)
Winner: ts52

1) Remneb: Homeworld Y1 B2 G3

2) ts52: Homeworld B1 Y3 G3

3) Remneb: Build G1 Remneb
	ts52: Have a good game! This is for the tournament.
	Remneb: Have a good game too. 

4) ts52: Build G1 Ts52

5) Remneb: Trade G1 R1 Remneb

6) ts52: Trade G1 R1 Ts52

7) Remneb: Build G1 Remneb

8) ts52: Build G1 Ts52

9) Remneb: Trade G1 B1 Remneb

10) ts52: Trade G1 B1 Ts52

11) Remneb: Build G1 Remneb

12) ts52: Build B2 Ts52

13) Remneb: Build B2 Remneb

14) ts52: Discover B2 Ts52 G2 Kermit

15) Remneb: Discover B2 Remneb G3 Doom

16) ts52: Sacrifice G3 Ts52
Build B3 Ts52
Build B3 Kermit
Build B3 Kermit

17) Remneb: Trade B1 Y1 Remneb

18) ts52: Trade B3 Y3 Kermit

19) Remneb: Sacrifice Y1 Remneb
Discover B2 Doom Y2 Orb

20) ts52: Trade B3 G3 Ts52

21) Remneb: Sacrifice G1 Remneb
Build B1 Orb

22) ts52: Build B3 Kermit

23) Remneb: Move B1 Orb Ts52

24) ts52: Trade B3 R3 Kermit

25) Remneb: Move B2 Orb Ts52
Catastrophe Ts52 B

26) ts52: Sacrifice Y3 Kermit
Move B3 Kermit Ts52
Move B3 Ts52 Remneb
Move G3 Ts52 Remneb

27) Remneb: Move G3 Remneb Ts52

28) ts52: Sacrifice R3 Kermit
Attack R1 Remneb
Pass
Pass

	ts52: Thanks for the game!
	Remneb: Thanks for the game too !


33386)
Variants: "Unrated"
Started: 2017.11.1, Ended: 2018.2.9
Participants: Babamots (S), BlueSkies (N)
Winner: Babamots

1) BlueSkies: Homeworld R1 B2 G3
	Babamots: So this is from my "training game challenge." Are you a pretty new player?

2) Babamots: Homeworld G3 Y2 B3

3) BlueSkies: Build G1 Blueskies
	BlueSkies: Hi Babamots, I am a complete beginner.

4) Babamots: Build B1 Babamots

5) BlueSkies: Trade G1 Y1 Blueskies
	Babamots: Well, so far so good! Let me know any time you'd like help analyzing the position. I'll start saying stuff about the game spontaneously when it's a little more complicated.
	BlueSkies: Ok this is great. I appreciate any advice you may have.

6) Babamots: Build B1 Babamots
	BlueSkies: I was wondering, what is the usual protocol on superdupergames? Do games tend to be played in realtime or over a matter of days?

7) BlueSkies: Discover Y1 Blueskies G3 Biggreen

8) Babamots: Discover B1 Babamots G1 Betazed
	Babamots: Right now, I'm trying to build all the little blue ships so that you can't trade any of your little ships to get blue (this is "freezing you out" of blue). You are in a good position to try to do the same to me but with yellow. Neither of us will succeed unless the other makes a mistake, though.

	BlueSkies: Sorry, I hate to do this, but I think I will have to come back to game at some later point. Thanks again though.
	Babamots: It's normal for purple to only make one or two moves a day (sometimes less). It's fine if you're now leaving for a day or two. If you'll be gone more than a week, we'll need to pause the timer. Also, I composed my last chat before you moved. I will be able to freeze you out of blue now.
	Babamots: Purple=people. That's the trouble with typing on a phone at the bus stop. 


33323)
Variants: "Unrated"
Started: 2017.11.1, Ended: 2017.11.28
Participants: wil (S), dragon76n (N)
Winner: wil

1) dragon76n: Homeworld B3 Y2 G3

2) wil: H B2 Y1 G3
	wil: Thanx for the game!

3) dragon76n: Build G1 Dragon76n

4) wil: B G1 Wil
	dragon76n: Hi Wil, glad I could join you again. 

5) dragon76n: Trade G1 Y1 Dragon76n

6) wil: T G1 Y1 Wil

7) dragon76n: Build Y2 Dragon76n

8) wil: B Y2 Wil

9) dragon76n: D Y2 Dragon76n G1 Greone

10) wil: D Y1 Wil G3 G3

11) dragon76n: B Y3 Greone

12) wil: B Y3 G3

13) dragon76n: D Y2 Greone G2 Gretwo

14) wil: D Y2 Wil Y3 Y3

15) dragon76n: B G1 Dragon76n

16) wil: B G1 Wil

17) dragon76n: T G1 R1 Dragon76n

18) wil: T G1 R1 Wil
	wil: Well what color should eliminate next?

19) dragon76n: B G1 Dragon76n

20) wil: B R1 Wil
	wil: An arms race it is

21) dragon76n: Build R2 Dragon76n

22) wil: B R2 Wil

23) dragon76n: T R1 G1 Dragon76n

24) wil: B G2 Wil

25) dragon76n: Discover G1 Dragon76n B1 Bluone

26) wil: M R2 Wil G3

27) dragon76n: S G3 Dragon76n
B G2 Bluone
B R1 Dragon76n
B G3 Dragon76n

28) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Wil
Build R3 G3

29) dragon76n: Move R1 Dragon76n Greone

30) wil: Trade R1 B1 Wil

31) dragon76n: Sacrifice G3 Dragon76n
Build G3 Dragon76n
Build R1 Greone
Build R3 Dragon76n

32) wil: Move R3 G3 Bluone

33) dragon76n: Sacrifice Y2 Gretwo
Move G1 Bluone G3
Move G2 Bluone G3

34) wil: Sacrifice R2 Wil
Attack G2 G3
Attack G1 G3

35) dragon76n: S Y3 Greone
M G1 Dragon76n Greone
M G1 Greone G3
C G3 Green
D R2 Dragon76n Y1 Yelone

36) wil: B R2 Wil

37) dragon76n: B Y2 Dragon76n

38) wil: Build B1 Wil

39) dragon76n: T Y2 B2 Dragon76n

40) wil: Discover R2 Wil B3 B3

41) dragon76n: Move B2 Dragon76n Greone

42) wil: Move B1 Wil Y3

43) dragon76n: Build Y2 Dragon76n

44) wil: Sacrifice G2 Wil
Build R2 Bluone
Build R3 B3

45) dragon76n: S Y2 Dragon76n
M R1 Greone B3
M R1 Greone B3
C B3 Red

46) wil: Trade R3 Y3 Bluone

47) dragon76n: B B2 Greone

48) wil: S G3 Wil
B B3 Wil
B B3 Y3
B Y2 Bluone

49) dragon76n: T R3 G3 Dragon76n

50) wil: Trade B3 G3 Wil

51) dragon76n: T B2 R2 Greone

52) wil: Move B3 Y3 Yelone

53) dragon76n: Discover R2 Yelone Y3 Yelthr

54) wil: Build G1 Wil

55) dragon76n: B R1 Greone

56) wil: Move Y3 Bluone Yelthr

57) dragon76n: Discover R2 Yelthr R1 Redone

58) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 Bluone
Build R3 Bluone

59) dragon76n: Sacrifice B2 Greone
Trade R2 G2 Greone
Trade R2 G2 Redone

60) wil: Sacrifice Y2 Bluone
Move R3 Bluone Dragon76n
Move B3 Yelone Dragon76n

61) dragon76n: Sacrifice R1 Greone
Attack R3 Dragon76n
	wil: oops, me thinks

62) wil: Sacrifice R2 Bluone
Attack R3 Dragon76n
Attack G3 Dragon76n

63) dragon76n: Sacrifice G2 Redone
Build Y1 Dragon76n
Build G1 Dragon76n

64) wil: S R3 Dragon76n
A Y1 Dragon76n
A Y1 Dragon76n
A G1 Dragon76n
	dragon76n: It reminds me of when I played Chess with my grandfather years ago... I can sacrifice my queen now, and my king lives a little longer, or he'll take something else, and that will be checkmate.

65) dragon76n: S G2 Greone
B G1 Dragon76n
B G2 Dragon76n
	dragon76n: Good game. I wasn't expecting that homeworld invasion right then. I thought about sacrificing my yellow ship to knock out a bunch of your red ships with a catastrophe, but obviously decided not to and I'm paying for it now. 
	wil: I was looking at the invasion...and then those two dang r2s were in the way...I wished them gone and low and behold.... To my surprise. They were!!

66) wil: S G3 Dragon76n
B B2 Dragon76n
B B2 Dragon76n
B Y2 Dragon76n
C Dragon76n Y
C Dragon76n G
C Dragon76n B

	wil:  Triple catastrophe fun never done that before. 


33313)
Started: 2017.11.5, Ended: 2017.11.5
Participants: ts52 (S), TumbleSteak (N)
Winner: ts52



33405)
Variants: "Unrated"
Started: 2017.11.6, Ended: 2017.11.9
Participants: Babamots (S), smokeytroll42 (N)
Winner: Babamots

1) smokeytroll42: Homeworld B1 R2 G3
	smokeytroll42: Hello! New player here. Looking for any words of wisdom! Thanks!
	Babamots: Sure! Have you played before at all? Do you need any help understanding how to tell your moves to the website?

2) Babamots: Homeworld G3 Y2 B3
	smokeytroll42: I think I have the commands basically down, but I’ll ask if I have any questions. This is my first game, but I’ve read a bit on strategy.

3) smokeytroll42: Build G1 Smokeytroll42
	smokeytroll42: Any rationale for certain moves or basic advice would be appreciated. But don’t feel like you need to go easy on me.
	Babamots: My plan is to play my best, but I will answer questions, give suggestions, and warn you when you should block me from doing something tricky.
	Babamots: (For now, your only sensible move is to build, and you can count on my next move being a build as well)
	smokeytroll42: Excellent, much appreciated! 
	smokeytroll42: So for building, am I only restricted to green ships? Or can I expand my system?
	Babamots: You can only build ships with colors that you already have. Since your only ship is green, you can only build green ships.
	Babamots: If you build a g1 now and trade it for a y1 on your next turn, then you will be able to build green ships and yellow ships in your home system.
	smokeytroll42: So you get the actions of your system’s colors, just not for building ships?

4) Babamots: Build B1 Babamots

5) smokeytroll42: Build G1 Smokeytroll42
	Babamots: Yes, so my green system marker lets me build things, but I have to build blue ships because, so far, I only have blue ships.

6) Babamots: Trade B1 G1 Babamots
	smokeytroll42: So how do I build bigger ships?
	Babamots: When you pick a color of ship to build, you have to use the smallest piece available. You get to build bigger ships when the little ones are used up.

7) smokeytroll42: Trade G1 Y1 Smokeytroll42
	Babamots: And right now, you shouldn't build a 4th green, because then I can make it a catastrophe (any time four pieces of the same color are in the same system, they can all be destroyed by any player who gives the catastrophe command).

8) Babamots: Build B1 Babamots
	Babamots: One thing to watch for in the next few moves is getting "frozen out" of a color. If you build the last two y1 before I trade for a y1, it will be harder for me to get any yellow at all (since I'll have to wait and trade for a y2 after I get a medium of another color). You will be frozen out of blue if you don't get a b1 before I build the last two b1. Getting frozen out of yellow is probably worse than getting frozen out of blue, though.
	Babamots: I traded for a g1 earlier to make sure you couldn't freeze me out of green, which would have been pretty bad.

9) smokeytroll42: Build Y1 Smokeytroll42
	smokeytroll42: So being frozen out of yellow would basically trap someone?

10) Babamots: Trade B1 Y1 Babamots
	Babamots: Yes, getting frozen out of yellow makes it hard to move. I can always move from home since I have a yellow star, but if I can't get a yellow ship, I wouldn't be able to move away from my new system (unless I chose a yellow star there too...).

11) smokeytroll42: Build Y2 Smokeytroll42
	smokeytroll42: How does movement work? Do I select what’s in a new system?
	Babamots: Yes, you get to pick the marker piece ("star") for new systems. If you want to want to "discover" a new system right now, you'll have to choose a large marker because large is the only size missing from your home markers. If you wanted to use your g1 to discover a system with a b3 marker, the command is "discover g1 smokeytroll42 b3 NewSystemName".
	smokeytroll42: Is that an advisable strategy, or is continuing to build the fleet higher priority at this point in the game?
	Babamots: Rather than moving out right now, you should probably either build a y2 (since they just became available) or trade one of your y1s for a b1 (which will prevent me from getting a medium piece for a while). I think you're better off building y2. Then, if I build y2, you will have the first opportunity to build y3 (though you would need use a yellow to discover a new system first, because building another yellow right away makes a catastrophe).

12) Babamots: Build Y2 Babamots

13) smokeytroll42: Discover Y2 Smokeytroll42 B3 Galileo

14) Babamots: Discover Y1 Babamots B1 Betazed
	Babamots: I'm going to try to prevent you form safely building yellows by moving a yellow ship toward you. If you build a y3 in your home system, I will be able to sacrifice y2 to move the y1 twice, reach your home, and call catastrophe on your new y3.
	Babamots: You can safely build y3 in Galileo, but you will need to sacrifice a green ship to do it.

15) smokeytroll42: Build Y3 Smokeytroll42

16) Babamots: Sacrifice Y2 Babamots
Move Y1 Betazed Galileo
Move Y1 Galileo Smokeytroll42
Catastrophe Smokeytroll42 Y

17) smokeytroll42: Trade G1 Y1 Smokeytroll42
	Babamots: You come out ahead from all that.
	smokeytroll42: catastrophes can be caused if the opponent puts a ship in there as well? Walk me through what happened there.
	Babamots: Here's the position before my move:
http://www.superdupergames.org/?page=archive_play&gid=33405&idx=14

You had three yellow ships and I moved in a fourth yellow ship. Because there were four yellow ships, I could call catastrophe and destroy all four of them.
	smokeytroll42: Okay
	smokeytroll42: I missed that one messaged where you warned me about building the Y3

18) Babamots: Build B1 Babamots

19) smokeytroll42: Build G1 Smokeytroll42

20) Babamots: Build B1 Babamots

21) smokeytroll42: Trade Y2 B2 Galileo

22) Babamots: Trade B1 Y1 Babamots

23) smokeytroll42: Trade B2 Y2 Galileo

24) Babamots: Discover B1 Babamots B1 Iconia

25) smokeytroll42: Move G1 Smokeytroll42 Galileo

26) Babamots: Build B2 Babamots

27) smokeytroll42: Build G1 Galileo

28) Babamots: Build B2 Babamots

29) smokeytroll42: Trade Y2 R2 Galileo

30) Babamots: Trade B2 R2 Babamots

31) smokeytroll42: Build G2 Smokeytroll42
	Babamots: As soon as my opponent gets a red ship, I always get one too, whether I can see an immediate threat or not. In this case, I'm not going to be able to prevent from from taking my b1 on Iconia (if you're willing to sacrifice your y1 to get your r2 there).
	smokeytroll42: My thought was to sacrifice the R2 to take the B1 and another in your home system. Is that how that works?
	Babamots: Yes, you can sacrifice an r2 to attack twice, but you do have to have a ship in the system where you want to attack. Your ship in that system must be at least as large as the ship you want to attack. You don't any ships in systems where my ships are, so you can't attack just yet.
	Babamots: The thing I would work on right now, if I were you, is building the g2 ships (since medium is the largest ship available to build in any color).

32) Babamots: Build G2 Babamots

33) smokeytroll42: Build G2 Smokeytroll42

34) Babamots: Discover G1 Babamots Y1 Bajor

35) smokeytroll42: Trade G2 Y2 Smokeytroll42

36) Babamots: Move B2 Babamots Bajor

37) smokeytroll42: Move Y1 Smokeytroll42 Galileo

38) Babamots: Build B2 Bajor

39) smokeytroll42: Discover G2 Smokeytroll42 B3 Newton
	Babamots: Right now, we're both avoiding building the last g2 so that the other person doesn't get the g3. I suggest trying to split up your green ships a bit so that you can get the g2 and g3 at the same time with a "factory" move:
sacrifice g3 smokeytroll42
build g2 (wherever)
build g3 (wherever)
build g3 (wherever)
	Babamots: Of course, I can try to stop you from getting the last g3 by either returning my g2 to the stash (running me very low on green ships) or by discovering a g3 system.

You also might want to try to stop me from getting a b3 (for example, by discovering a b3 system).
	Babamots: You could even do that factory move now and put the g2 in Galileo and both g3s in your home system. I could do the green catastrophe in Galileo, but the g3 would be safe in your home. 

40) Babamots: Discover B2 Bajor G3 Cardassia

41) smokeytroll42: Move R2 Galileo Iconia
	smokeytroll42: Any chance you could type out an example sarafice command for me?

42) Babamots: Build G2 Bajor
	Babamots: You have to put each action of a sacrifice move on a new line.

Here's a green sacrifice (large ship, three actions). You can build different colors in different systems in the same sacrifice.

sacrifice g3 smokeytroll42
build g2 Newton
build g3 Galileo
build y2 smokeytroll42

Here's a yellow sacrifice (medium ship, two actions). You can move the same ship repeatedly or move multiple ships.

sacrifice y2 smokeytroll42
move r2 Iconia Babamots
discover g1 Galileo b2 Kepler

You don't have to use all of the actions when you sacrifice a ship. If you sacrifice your red ship now, there would be no attack actions that you could take, but you could sacrifice it if you wanted to for some reason. You would have to state that you wanted to pass instead of taking those actions.

sacrifice r2 Iconia
pass
pass

What I expect you want to do on your next turn is capture my b1 in Iconia. For that, you need to specify the current owner of the ship (by putting a "s" after the ship type, since I am the south player).

attack b1s Iconia

43) smokeytroll42: Attack B1S Iconia
	smokeytroll42: Thanks! That is helpful.

44) Babamots: Move B2 Bajor Galileo

45) smokeytroll42: Sacrifice Y2 Smokeytroll42
Move G1 Galileo Iconia
Move G1 Galileo Iconia

46) Babamots: Build Y2 Babamots
	Babamots: I am planning to my sacrifice r2 to take two of your small ships in Galileo. There are two usual responses to an invasion like this
1) sacrifice y2 in your home to move two little ships out of Galileo
2) Sacrifice y1 in Galileo to move one g1 out of Galileo (you lose the y1 for no reason other than to keep me from getting it). I think this second option is your best move.
	Babamots: Trouble is, you move so quickly that my advice comes after your move :-). I need to post advice before I move I guess. I'll give you a few minutes in case you want to undo (I can just take that y2 from you by sacrificing my r2).

47) smokeytroll42: Trade G2 Y2 Newton
	Babamots: I passed and undid it to send you an "It's your move" notice to give you more chance to undo your move if you like.
	smokeytroll42: Oh, I was thinking that ships of same size were safe, which I guess wouldn’t make sense because you could never capture a three then.

48) Babamots: Sacrifice R2 Babamots
Attack Y1N Galileo
Pass

49) smokeytroll42: Sacrifice G1 Iconia
Build Y3 Newton

50) Babamots: Sacrifice G2 Babamots
Build Y3 Galileo
Build Y3 Galileo
	Babamots: I haven't decided what to do about it yet, but right now, you are threatening to destroy either of my home system stars. Unless I prevent it, by sacrificing your new y2, you could destroy my green marker by

sacrifice y2 Newton
move g1 Iconia Babamots
move g1 Iconia Babamots
catastrophe Babamots g

You could destroy my yellow marker by

sacrifice y2 Newton
move y1 Galileo Iconia
move y1 Iconia Babamots
catastrophe Babamots y

But I'm deciding how to prevent both of these moves.
	Babamots: Those aren't necessarily great moves since you lose more ships than I do, but it's always awkward to only have half a home.
	smokeytroll42: Yes lol. That one I actually planned. That’s why I saved the two G1s with the Y2 sacrifice as opposed to the Y1 sacrifice.
	Babamots: I've decided that I don't really mind if you do the green catastrophe, but I want to prevent the yellow one and open up my chances for building y3.

51) smokeytroll42: Sacrifice Y3 Newton
Move Y2 Newton Iconia
Move Y2 Iconia Babamots
Catastrophe Babamots Y
Move R2 Iconia Cardassia
	Babamots: If you do the green catastrophe, I think I'll be able to lock you out of yellow technology pretty quickly, so I don't mind.
	Babamots: Specifically, after your move

sacrifice y2 Newton 
move g1 Iconia Babamots 
move g1 Iconia Babamots 
catastrophe Babamots g

my plan is

sacrifice g2 Bajor
build y2 Galileo
build y3 Galileo

at which point, your only way to get a yellow ship is to trade your g3 at home. But then you can't build at home nor move any ships (because sacrificing the only ship in your home leavs your home empty and you would lose).
	Babamots: You might be better off by moving your r2 someplace to threaten to attack more of my ships (I did just lose my only red after all).
	smokeytroll42: Lots to think about in this game. I like it!
	Babamots: I think your best move right now is to get another yellow ship:

sacrifice g1 Iconia
build y3 Newton
	smokeytroll42: I think I need to sacrifice the Y2 either way to do anything useful.
	smokeytroll42: i think you’re right. The catastrophe would be satisfying, but maybe not the best long term move.

52) Babamots: Sacrifice G2 Bajor
Build B2 Babamots
Build B3 Cardassia

53) smokeytroll42: Build G1 Smokeytroll42
	smokeytroll42: Can you chain events with a sacrifice ie Sacrafice Y3 Newton, move Y2 Newton Iconia, move Y2 Iconia Babamots?
	Babamots: Yes, that's a legitimate move except that you only used two move actions there, so you have one more available. If that's the type of move you want, you might consider

sacrifice y3 Newton
move y2 Newton Iconia
move y2 Iconia Babamots
catastrophe Babamots y
move r2 Iconia Cardassia

If you don't want to use that third action, you will have to pass, like this

sacrifice y3 Newton
move y2 Newton Iconia
move y2 Iconia Babamots
catastrophe Babamots y
pass

54) Babamots: Trade Y1 R1 Galileo

55) smokeytroll42: Trade G1 R1 Smokeytroll42

56) Babamots: Sacrifice R1 Galileo
Attack R2N Cardassia

	Babamots: Looks like we could get caught in a cycle :-).
	Babamots: Oh no wait, somehow I thought you had taken my b2 in Galileo at some point. Nevermind. No cycle.
	Babamots: I mean my b2 in Cardassia. I'm trying to do several things at once, and so I haven't been looking at the game extra carefully or giving advice. Sorry about that.
	Babamots: I'm not sure you can win now. My next move will probably be

sacrifice y3 Galileo
move y3 Galileo smokeytroll42
move b3 Cardassia smokeytroll42
move b3 Babamots smokeytroll42

assuming you then attack my y3, for example, my next move can be

sacrifice r2 Cardassia
attack g3n smokeytroll42
attack y3n smokeytroll42

and then it's pretty much over.
	smokeytroll42: I’m willing to call it.
	smokeytroll42: Good game and thanks for all the advice! I’d love lay again if you’re down!


33389)
Variants: "Unrated"
Started: 2017.11.6, Ended: 2018.2.26
Participants: ts52 (S), shoejitsu (N)
Winner: ts52

1) shoejitsu: Homeworld B2 Y1 G3

2) ts52: Homeworld B1 Y3 G3

3) shoejitsu: Build G1 Shoejitsu
	ts52: Have a good game! This is for the homeworlds tournament.
	shoejitsu: Good luck!

4) ts52: Build G1 Ts52

5) shoejitsu: Trade G1 B1 Shoejitsu

6) ts52: Trade G1 B1 Ts52

7) shoejitsu: Build B2 Shoejitsu

8) ts52: Discover B1 Ts52 G2 Kermit

9) shoejitsu: Build G1 Shoejitsu

10) ts52: Build G1 Ts52

11) shoejitsu: Discover G1 Shoejitsu B3 Howdy

12) ts52: Build B2 Kermit

13) shoejitsu: Trade B2 Y2 Shoejitsu

14) ts52: Trade B2 Y2 Kermit

15) shoejitsu: Build Y1 Shoejitsu

16) ts52: Build Y1 Kermit

17) shoejitsu: Move Y1 Shoejitsu Howdy

18) ts52: Build B2 Kermit

19) shoejitsu: Build Y2 Howdy

20) ts52: Discover Y2 Kermit G3 Robin

21) shoejitsu: Build Y3 Shoejitsu

22) ts52: Build Y3 Kermit

23) shoejitsu: Trade Y2 B2 Howdy

24) ts52: Move B1 Kermit Robin

25) shoejitsu: Trade B1 R1 Shoejitsu

26) ts52: Trade Y1 R1 Kermit

27) shoejitsu: Move Y3 Shoejitsu Howdy

28) ts52: Build B1 Kermit

29) shoejitsu: Trade B2 G2 Howdy

30) ts52: Build B2 Robin

31) shoejitsu: Trade G2 Y2 Howdy

32) ts52: Build B3 Robin
	shoejitsu: weird, i didnt see an email for it being my turn... sorry for the wait

	Babamots: Tournament games are supposed to use 2/2/7 hard time. I can't see what the time settings are for this game, but since more than a week has passed without a move, the settings must be different from tournament regulation. As it turned out, the result of this game could not affect tournament bracket seeding, and the next phase of the tournament is already well underway. For completeness, I'm going to record that ts52 won this game by timeout.
	ts52: Huh, I must've missed setting hard time. Sorry about that. I'll force the termination of this game.


33408)
Variants: "Unrated, Hard time"
Started: 2017.11.6, Ended: 2017.11.16
Participants: Remneb (S), shoejitsu (N)
Winner: Remneb

1) shoejitsu: Homeworld B3 G2 Y3
	Babamots: Is this game for the tournament? Want me to record it?

2) Remneb: Homeworld B1 R1 G3 *
	shoejitsu: just submitted the game start form. Good luck!

3) shoejitsu: Build Y1 Shoejitsu
	Remneb: Have a good game !

4) Remneb: Build G1 Remneb

5) shoejitsu: Build Y1 Shoejitsu

6) Remneb: Trade G1 Y1 Remneb

7) shoejitsu: Discover Y1 Shoejitsu B1 Hi

8) Remneb: Trade G3 R3 Remneb

9) shoejitsu: Trade Y1 B1 Shoejitsu

10) Remneb: Move R3 Remneb Shoejitsu

11) shoejitsu: Move B1 Shoejitsu Remneb

12) Remneb: Attack Y3 Shoejitsu

	Remneb: I must say that i was quit surprise by your move, Thanks for the game anyway. Will be my last one of the tournament.

	shoejitsu: I'm a noob, I thought I could continue as long as there was any ship still in the homeworld... Oh well now I know. I also didn't know another good move besides continuously building and giving you more ships to attack haha 
	shoejitsu: i recorded the match, thanks for the game, even it was a little embarrassing 


33423)
Variants: "Unrated"
Started: 2017.11.9, Ended: 2017.11.13
Participants: smokeytroll42 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y1 B3 G3

2) smokeytroll42: Homeworld B2 G1 Y3

3) Babamots: Build G1 Babamots
	Babamots: In case you're curious, I like to have yellow for a home system marker for two reasons:
* It gives me the opportunity to discover a new system about one turn earlier than if I didn't start out with yellow. However, it also means I have to resist the temptation to discover before it's a good idea.
* If my opponent wants to destroy my home by catastrophe, they normally have to have a yellow ship to sacrifice--in order to get ships into my home faster than I can attack them. To destroy my blue marker, they need a yellow for sacrifice and three blues. To destroy my yellow, they need four yellows. I believe it's usually slightly harder to get four ships of one color than to get three ships of one color and one of another.

4) smokeytroll42: Build Y1 Smokeytroll42
	smokeytroll42: Ok. 

5) Babamots: Build G1 Babamots
	Babamots: Your homeworld setup is largely a matter of taste. I don't think there's anything wrong with yours at all :-).

6) smokeytroll42: Build Y1 Smokeytroll42
	smokeytroll42: Yeah, I wanted to try something different from the last game. It seemed like the red Homeworld didn’t do me much good.

7) Babamots: Discover G1 Babamots B2 Sauria
	Draw5PlayAll: I like to be able to put yellow ships in my homeworld, thus the blue+red star and green ship.

8) smokeytroll42: Discover Y1 Smokeytroll42 B3 Leo

9) Babamots: Build G2 Sauria

10) smokeytroll42: Build Y2 Smokeytroll42

11) Babamots: Sacrifice G3 Babamots
Build G2 Babamots
Build G2 Sauria
Build G3 Babamots
	Babamots: So here's a factory in action. I effectively get two build actions at once. Taking up the last of the medium greens makes it more difficult for you to get any green ships at all.

12) smokeytroll42: Move Y2 Smokeytroll42 Leo

13) Babamots: Trade G2 Y2 Sauria
	smokeytroll42: Cool

14) smokeytroll42: Trade Y2 G2 Leo
	Babamots: Even though it gives me a chance to get a g3, you might want to trade y2 for g2 in Leo while you have the chance. Not having any green ships would be rough.

You could also trade something (probably a y1) for a red ship. Either way, I'm pretty sure it's time to diversify.
	smokeytroll42: That makes sense. Seems like going by too hard in one color really stunts your growth.

15) Babamots: Trade G2 R2 Babamots

16) smokeytroll42: Trade G2 R2 Leo
	Babamots: I needed to remove a green from my home immediately since otherwise you would win by sacrificing your y3 to move in your g2 for a catastrophe.

17) Babamots: Sacrifice G3 Babamots
Build G2 Babamots
Build G2 Sauria
Build G3 Babamots
	Babamots: That's probably not a great move since I just got a red. You don't want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I'll be able to capture something. I'll wait a while to move in case you want to undo.
	Babamots: That's probably not a great move since I just got a red. You don't want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I'll be able to capture something. I'll wait a while to move in case you want to undo.
	Babamots: That's probably not a great move since I just got a red. You don't want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I'll be able to capture something. I'll wait a while to move in case you want to undo.

18) smokeytroll42: Build Y2 Smokeytroll42
	smokeytroll42: Thanks! My thought process was to trade the Y2 for an R2, but I realized after that you could still get your R2 to Leo before I could get one. I suppose the obvious move would be just to trade one and not build a new one.

19) Babamots: Discover G2 Sauria B3 Risa
	Babamots: I think trading y1 for r1 at your home system was the best move (you could sacrifice it if I try to attack you elsewhere). Trading away your green means you have no green again. More generally, I try not to trade a ship that is already the only one of its color in its system (let alone in my whole fleet).

20) smokeytroll42: Trade Y3 G3 Smokeytroll42

21) Babamots: Sacrifice G3 Babamots
Build G3 Babamots
Build G3 Risa
Build R1 Babamots
	Babamots: For now, I'm just working on getting as many ships as I can as fast as I can while trying to prevent you from getting the big ones. The next phase will be to spread out my greens so I can build some g3.
Your best move now might be to trade y3 for g3 at home. After doing that, it won't be safe for you to *build* the other g3 at home (since I could cause a catastrophe), but at least you would have one green ship.
Alternatively, you could discover a g3 system so that I can't get two new g3 ships.

22) smokeytroll42: Build Y2 Smokeytroll42

23) Babamots: Trade G3 Y3 Risa

	smokeytroll42: Haha, we’ll call it a draw? Just kidding. I’ll resign, but I’m down for another. I’m very much appreciating your continued mentoring.


33218)
Variants: "Unrated"
Started: 2017.11.10, Ended: 2017.12.4
Participants: smokeytroll42 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) smokeytroll42: Homeworld G3 Y1 B3

3) Felix: Build G1 Felix
	Felix: Hey there. First game?

4) smokeytroll42: Build B1 Smokeytroll42

5) Felix: Trade G1 Y1 Felix
	smokeytroll42: Game 3 actually. Or maybe 2.5. Game 2 is still in progress.

6) smokeytroll42: Build B1 Smokeytroll42

7) Felix: Build Y1 Felix

8) smokeytroll42: Discover B1 Smokeytroll42 G2 Peace

9) Felix: Build Y2 Felix

10) smokeytroll42: Build B1 Peace

11) Felix: Discover Y1 Felix G1 Out

12) smokeytroll42: Build B2 Peace

13) Felix: Build Y2 Out

14) smokeytroll42: Trade B2 Y2 Peace

15) Felix: Move Y1 Out Peace

16) smokeytroll42: Trade B1 R1 Peace

17) Felix: Discover Y1 Felix B1 Engaurde

18) smokeytroll42: Attack Y1N Peace

19) Felix: Sacrifice G3 Felix
Build Y3 Engaurde
Build Y3 Out
Build Y3 Felix

20) smokeytroll42: Discover Y1 Peace G1 Harmony

21) Felix: Trade Y1 G1 Engaurde

22) smokeytroll42: Build Y1 Harmony

23) Felix: Trade Y2 G2 Felix

24) smokeytroll42: Build Y2 Peace

25) Felix: Build G2 Felix

26) smokeytroll42: Trade B3 G3 Smokeytroll42

27) Felix: S Y2 Out
M G1 Engaurde Peace
M G1 Peace Smokeytroll42

28) smokeytroll42: Trade G3 R3 Smokeytroll42

29) Felix: Sacrifice G2 Felix
Build G2 Smokeytroll42
Build G3 Smokeytroll42
Catastrophe Smokeytroll42 G

30) smokeytroll42: Trade B1 G1 Smokeytroll42

31) Felix: Build Y2 Out

32) smokeytroll42: Build R1 Smokeytroll42

33) Felix: Discover Y2 Out R2 In

34) smokeytroll42: Trade Y2 R2 Peace

35) Felix: Move Y2 In Smokeytroll42

	smokeytroll42: I don’t think I have a move that can save me here...
	Felix: I don't think that you do!
	smokeytroll42: Well good game!
	Felix: Good game! I hope you had fun. Happy to rematch any time.


33394)
Variants: "Unrated"
Started: 2017.11.11, Ended: 2017.11.15
Participants: icalvinist (S), wil (N)
Winner: icalvinist

1) wil: H Y2 B1 G3

2) icalvinist: Homeworld B2 R1 G3

3) wil: B G1 Wil
	wil: Thx for the game
	wil: Short universe?

4) icalvinist: Build G1 Icalvinist

5) wil: T G1 B1 Wil

6) icalvinist: Trade G1 Y1 Icalvinist

7) wil: B B1 Wil

8) icalvinist: Build G1 Icalvinist

9) wil: D B1 Wil G3 G3

10) icalvinist: Trade G3 B3 Icalvinist

11) wil: B B2 G3
	icalvinist: Hey no problem. Yea, let's mix it up with some close quarters interaction!

12) icalvinist: Build B2 Icalvinist
	wil: No problem just checking. Let's have at it!

13) wil: B B3 Wil

14) icalvinist: Discover B3 Icalvinist Y3 Odin

15) wil: T B2 Y2 G3

16) icalvinist: Move B3 Odin Wil
Catastrophe Wil B

17) wil: B G1 Wil

18) icalvinist: Build G1 Icalvinist

19) wil: B B1 G3

20) icalvinist: Discover Y1 Icalvinist G3 Loki

21) wil: B B1 G3

22) icalvinist: Trade B2 Y2 Icalvinist

23) wil: M B1 G3 Wil

24) icalvinist: Build Y1 Icalvinist

25) wil: T G3 R3 Wil

26) icalvinist: Trade Y2 R2 Icalvinist

27) wil: B B2 G3

28) icalvinist: Build Y1 Loki

29) wil: T B2 R2 G3

30) icalvinist: Build Y2 Loki

31) wil: B Y3 G3

32) icalvinist: Build Y3 Icalvinist

33) wil: Sacrifice Y3 G3
Discover Y2 G3 G2 G2
Move B1 G3 G2
Move Y2 G2 Loki
Catastrophe Loki Y

34) icalvinist: Build G2 Icalvinist

35) wil: Build B2 G3

36) icalvinist: Discover Y1 Icalvinist G3 Loki

37) wil: Build G2 Wil

38) icalvinist: Sacrifice G2 Icalvinist
Build Y1 Loki
Build Y1 Loki

39) wil: Trade B2 Y2 G3

40) icalvinist: Sacrifice Y3 Icalvinist
Move Y1 Loki Wil
Move Y1 Loki Wil
Move Y1 Loki Wil
Catastrophe Wil Y

	icalvinist: Good game!
	wil: challenge anytime!


33431)
Variants: "Unrated"
Started: 2017.11.13, Ended: 2017.12.6
Participants: smokeytroll42 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 Y1 G3

2) smokeytroll42: Homeworld R1 B2 G3
	Babamots: OK, my turn for the banker system.

3) Babamots: Build G1 Babamots
	Babamots: Or we can both be bankers :-).

4) smokeytroll42: Build G1 Smokeytroll42
	smokeytroll42: I'm a little confused on the theory behind the starting homeworlds. Is it determined more color or size? 

5) Babamots: Trade G1 R1 Babamots
	Draw5PlayAll: With a yellow star you can move on your third turn, but you cannot safely keep yellow ships there. With a red star you can resist certain kinds of attacks without actually needing to get a red ship, though it is easy to get cocky with this.
	Babamots: Andy introduced 3 terms to refer to the size combinations of home markers:

Banker: small, medium
Goldilocks: small, large
Fortress: medium, large

A brief explanation for these names is on page two of these rules:
http://www.looneylabs.com/sites/default/files/rules/Homeworlds.pdf

I haven't read much discussion on starting colors, but it's pretty obvious that you want to start with green and blue (one of these can be your ship). The third color (red vs yellow) is what's worth debating.

6) smokeytroll42: Trade G1 R1 Smokeytroll42
	Babamots: If you don't get a red ship now, you could get frozen out for a while.

7) Babamots: Build R2 Babamots

8) smokeytroll42: Build R2 Smokeytroll42

9) Babamots: Build R2 Babamots
	smokeytroll42: I think we’re in an arms race.
	Babamots: It's been my experience that players compete for whatever color has the largest ships available.

10) smokeytroll42: Trade R1 Y1 Smokeytroll42

11) Babamots: Discover R2 Babamots B3 Galorndon

12) smokeytroll42: Build Y1 Smokeytroll42

13) Babamots: Trade R2 Y2 Babamots

14) smokeytroll42: Build Y2 Smokeytroll42

15) Babamots: Discover Y2 Babamots G3 Vulcan

16) smokeytroll42: Discover Y2 Smokeytroll42 B3 Risa

17) Babamots: Build R1 Babamots
	Babamots: I don't think you want to do that. My move should be

sacrifice r1 Babamots
attack r2s Vulcan

Feel free to undo and try something else.

18) smokeytroll42: Move Y1 Smokeytroll42 Risa
	smokeytroll42: I always forget how red sacrifice works. 

19) Babamots: Discover R1 Babamots Y3 Omicrontheta

20) smokeytroll42: Move R2 Smokeytroll42 Omicrontheta
	Draw5PlayAll: Is Risa the planet that initiated the augmented reality game in TNG: The Game?
	smokeytroll42: It’s a “pleasure” Planet that Picard goes on vacation to for a few days in TNG. Naturally things go awry.

21) Babamots: Sacrifice G3 Babamots
Build R2 Galorndon
Build R3 Omicrontheta
Build R3 Babamots
	Babamots: Also, yes, Riker was on Risa when the brain-control game device was given to him.

22) smokeytroll42: Sacrifice G3 Smokeytroll42
Build R3 Omicrontheta
Catastrophe Omicrontheta R
Build Y2 Risa
Build Y3 Smokeytroll42
	Babamots: My intended next move is

sacrifice g3 Babamots
build r2 OmicronTheta
build r3 Galorndon
build r3 Babamots

This gives me an additional large ship, and you are not free to take the last r3 because building it in your home system will allow me to cause a red catastrophe there.
	Babamots: You have a way to keep me from getting that additional large ship and a (different) way to make it so I can complete that move, but so that you can safely build an r3 afterward.
Can you see how to do these things?
	smokeytroll42: Discover an R3 Star? The second, just move the R2 out of Smokeytroll42

23) Babamots: Build Y3 Vulcan
	Babamots: Sorry, I had a lot going on today and tomorrow looks busy too.

The reason I think you should be so concerned about my next move is that it gives me a large ship advantage, which is usually a big deal.

Unfortunately, discovering only one r3 star won't prevent me from building the other two. You could discover two r3 stars if you're willing to sacrifice your y2, however. If you discover two r3 stars, there will only be one r3 piece left, and I can only build one (and if I sacrifice a g3 to do it, I have the same number of large ships as before).

Another option for (temporarily) blocking my move is to trade your r2 for another color (I would have to build both r2s before getting any r3). This probably isn't a great move since it leaves you with no red at all, which allows me to build the r3s at my leisure.
A possibly better option is to get your r2 to a green system so that you can safely build an r3 if I build the r2. Since all the g3 are used, you would need to sacrifice y2 to move r2 twice to a g2 or g1.

You may want to instead move your r2 to OmicronTheta. If I build an r2, you can then move your r2 to a new green star and be ready to build the last r3. If I don't build an r2, you can attack my r1 (unless I run for it.)

I'm not positive that's your best move, but I probably won't have time to look for better moves for you until tomorrow evening.
	smokeytroll42: No worries! I understand. 

24) smokeytroll42: Discover Y1 Risa G2 Ceti Alpha V
	Babamots: I see a problem with the plan I suggested (but I don't have a better idea for you yet)

me:
sacrifice g3 Babamots
build r2 Galorndon
build r3 OmicronTheta
build r3 Babamots

you:
discover r2 OmicronTheta g1 BestNameEver
(planning to build an r3 since I won't be able to)

me: 
move r3 OmicronTheta BestNameEver
(I'm ready to capture your r3 as soon as you build it or I'll take your r2 if you don't build the r3)
	smokeytroll42: Well, we can let it play out. Sorry, I also had a busy one today. 
	Babamots: Today was even more exhausting that yesterday. I should have time to take a good look at the game tomorrow.

Another move you could consider:

sacrifice g3 smoketroll42
build r3 OmicronTheta
catastrophe OmicronTheta r
build y2 Risa
build y3 smoketroll42

I haven't worked out the consequences, but it does destroy the r3 I'm about to build and you still have a large ship. Unfortunately, I would then be able to build y3, but (due to the destruction of OmicronTheta) there will be another y3 piece around. Maybe you can beat me to it? I'm not sure yet.

25) Babamots: Pass
	Babamots: I wanted to give you plenty of time to change your mind rather than holding you to trying to take my bad advice :-P.

26) smokeytroll42: Trade Y3 G3 Smokeytroll42
	smokeytroll42: No worries! I appreciate all the mentoring!

27) Babamots: Sacrifice Y2 Vulcan
Move R2 Galorndon Ceti
Move R2 Ceti Risa
	smokeytroll42: So I'm thinking Discover a Green Star with Y1 from Risa, then build the Y3 there?

28) smokeytroll42: Sacrifice G3 Smokeytroll42
Build Y2 Ceti
Build Y3 Smokeytroll42
Build Y3 Risa
	Babamots: Sorry, another busy day (I should be more responsive the rest of this week).

If you stick with your most recent move, I will win in two moves. Would you like to try to figure out how?

29) Babamots: Sacrifice R2 Galorndon
Attack Y2S Risa
Attack Y2S Risa
	Babamots: If you want to know why I can win from here, read the following backward (bottom to top, right to left)

y 24llortyekoms ehportsatac
ssap

:evom ehportsatac eht ekam ylpmis nac I dna emoh ruoy ni spihs wolley ruof tsael ta eb lliw ereht ,ecrofnier ot emoh ruoy ot spihs rehto ruoy fo rebmun yna evom uoy fI )3

.niw I dna emoh ta spihs on evah dluow uoY .metsys emoh ruoy ni spihs eht fo htob kcatta ot 2r na ecifircas nac I )emoh ruoy ni noitautis eht egnahc t'nseod taht esle gnihtyna ro iteC ni 3y a dliub ro( ,roloc rehtona rof spihs emoh ruoy fo rehtie edart uoy fI )2

.niw I dna metsys emoh ruoy ni spihs on evah uoy nehT

y 24llortyekoms ehportsatac
24llortyekoms nacluV 2y evom

si evom gninniw ym ,3y ym kcatta uoy fI )1

24llortyekoms nacluV 3y evom

eb dluohs evom txen yM

30) smokeytroll42: Trade Y3 G3 Smokeytroll42
	Babamots: Rather than sitting around with an expired timer (wondering if you want to undo), I'll just pass this turn. I will win if you build that y3.
	smokeytroll42: mmm I'm trying to work it out. I'll give it some more thought throughout the day tomorrow
	Babamots: Take your time. I won't end the game even if your timer runs out.
	smokeytroll42: I haven't had much time to sit and look it over. Sorry for the delay
	smokeytroll42: Okay, so after processing all that, I don't have a move to survive?
	Babamots: You can survive, but you need to defend your home immediately. You need to trade one of your yellow ships for another color (either y3 for g3 or y1 for g1 is best).
	smokeytroll42: Oh right, to protect from the catastrophe.

31) Babamots: Trade Y2 G2 Risa

32) smokeytroll42: Trade Y3 R3 Risa
	Babamots: Looking at it 5 seconds later, mine was not such a good move. It doesn't actually stop you form getting the y3 ships like I thought (in fact, you can get both). One move you may want to consider is something like

sacrifice g3 smokeytroll42
build y2 Ceti
build y3 smokeytroll42
build y3 Risa

33) Babamots: Sacrifice G2 Risa
Build R1 Risa
Build R2 Risa
Catastrophe Risa R

34) smokeytroll42: Build G1 Smokeytroll42

35) Babamots: Trade R3 G3 Babamots
	Babamots: I didn't notice until now that my advice for your last turn should have come with a warning. It made it so you again have only yellow in your home system. That was OK when I only had one yellow ship, but as soon as I captured your yellow ships, you were in danger of losing by catastrophe again. You should trade one of your home-system yellow ships for a green again. It might seem like that move is just running in circles, but remember that you gained two ships (a medium and a large) in the process.

If you don't undo, I'll win.

36) smokeytroll42: Discover G1 Smokeytroll42 B3 Mintakaiii
	Babamots: Specifically, my move now should be

sacrifice y2 Risa
move y3 Vulcan smokeytroll42
move y2 Risa smokeytroll42
catastrophe smokeytroll42 y

37) Babamots: Build R1 Babamots

38) smokeytroll42: Build Y2 Smokeytroll42

39) Babamots: Build R2 Babamots

40) smokeytroll42: Discover Y1 Ceti B3 Qo'nos
	smokeytroll42: Ah, I need to remember that you build wherever there’s a green ship.
	Babamots: I'm a big fan of green sacrifices. They can take your opponent off guard pretty often.
	Babamots: And remember that the build actions don't need to happen in the same system where the sacrifice is. I just happened to sacrifice and build in the same system this time.
	smokeytroll42: Does there have to a green star or ship in the system where the build action occurs? Same question with attacking or trading?
	Babamots: This is important to understand, so here's a quick summary of how to use colors. There are three kinds of turns:

1) "Regular"
In a normal turn (without a sacrifice), one of your ships uses the technology of a marker in that ship's system or the technology of any ship that you own in that system. If you have a blue ship (or marker) in a system, any of your ships in that system can be traded for another color. If you have a yellow ship (or marker) in a system, any of your ships in that system can move to another system.

2) "Sacrifice"
When you do a sacrifice, you destroy one of your ships and use its technology to perform a number of actions up to the size of the ship you destroyed. The actions can be taken in any system (whether you have the sacrificed technology there or not).

3) "Pass"
You don't do anything at all.
	Babamots: So the answer to your question is no (assuming we're talking about a sacrifice). There does not need to be green in a system where you build after a green sacrifice.
	smokeytroll42: Yes, I believe that does!
	smokeytroll42: Actually maybe not. Do you still need a ship, of some color, in the system to do the sacrifice action in that system? Like right now I couldn’t: 

Sacrifice g3 smokeytroll42
Build R1 Babamots
Build R2 Babamots 
Catastrophe Babamots r
	Babamots: I think of it like this: you have to apply every action to one of your own ships (whether that action came from a sacrifice or "regular" turn). Applying green to a ship means you build a new ship of that ship's color. You don't have a ship in my home system, so you can't build there.

Red is a special case where you pick one of your own ships to do the attacking (whichever is the largest in the system) and you also have to pick an enemy target ship.
	Babamots: So, yes, before you can build a ship, you need to have a ship of the same color in the system where you build.
	smokeytroll42: In other words, I would need a red in Babamots for that move to work?
	Babamots: Yes, you would need a red ship in Babamots in order to build a red ship in Babamots.

41) Babamots: Move Y2 Risa Ceti

42) smokeytroll42: Move Y2 Ceti Mintakaiii

43) Babamots: Build Y3 Ceti

44) smokeytroll42: Sacrifice Y2 Smokeytroll42
Move Y1 Qo'nos Ceti
Move Y2 Mintakaiii Ceti
Catastrophe Ceti Y

45) Babamots: Move R2 Babamots Mintakaiii
	Babamots: You've done a good job of using up the small and medium pieces of the color that you have the most control of (yellow). Unless I can find a good way to block you, you will be able to build a large yellow ship, but only if you spread out your current yellow ships. Right now, if you build a y3 at your home or in Ceti, I can move in my y2 for a catastrophe. If you move one of your yellows out of those systems, you could build safely.

I think the main weakness of your position right now is that you don't have any red ships. Right now, if I move my y2 into Ceti, then I'll be able to capture one of your ships be sacrificing my r1 in Babamots (unless you sacrifice a yellow in order to remove both of your ships from Ceti in the same move). Getting you to sacrifice a piece you didn't want to is a small victory for me.

46) smokeytroll42: Sacrifice G1 Mintakaiii
Build G1 Smokeytroll42

47) Babamots: Move R1 Babamots Vulcan

48) smokeytroll42: Build Y1 Smokeytroll42
	Babamots: Your best responses are probably

1) Moving your y2 away from Ceti so I can't attack it. After that, I think we get to safely build one y3 each.
2) Building a y3, either at home or in Ceti. If you build in Ceti, I plan to build a y3 there as well and catastrophe all of them. If you build a y3 at home, I will either attack your y2 in Ceti or possibly move my y3 into your home system for the catastrophe.

49) Babamots: Sacrifice G3 Babamots
Build R2 Mintakaiii
Build R2 Vulcan
Build R3 Babamots

50) smokeytroll42: Discover G1 Smokeytroll42 Y3 Arrakis
	smokeytroll42: So I could sacrifice Y2 in the Homeworld to move in 2 yellows for catastrophe at Ceti, or build Y3 MintakaIII.
	Babamots: Yes, I should have mentioned that catastrophe option earlier. I thought that was building is best for you, but I've realized that you will lose after that. Consider this continuation:

you
build y3 MintakaIII

me
sacrifice y3 Ceti
move g3 Babamots Vulcan
move y3 Vulcan smokeytroll42
move g3 Vulcan smokeytroll42

You don't have a way to win from this point:

1) If you attack one of my larges, I sacrifice my r2 to attack both your g3 and whichever large you just attacked. I'll win in a few moves by attacking the rest of your home ships.

2) If you try to defend by moving your new y3 into your home, I can sacrifice my r2 to attack both your g3 and y3. Again, I can attack your ships freely until I win.

So to sum up, you should do the catastrophe.
	Babamots: And I love "Who Watches the Watchers" :-)
	smokeytroll42: Yes, it’s one of my favs from my edgy college skeptic days. And still is.

51) Babamots: Build R3 Vulcan

	smokeytroll42: Is there any way to prevent the impending attack on my Homeworld?
	Babamots: I'm afraid you're pretty doomed. You didn't have a chance to get red ships, and since I've taken most of them, I'll win soon after I can move two large ships into your home at once.

I think the best thing you can do to prolong the game is to build y2. My current plan goes like this:

1)
trade r2 y2 MintakaIII

2)
sacrifice y2 MintakaIII
move y3 Vulcan smokeytroll42
move r3 Vulcan smokeytroll42

(I assume you will attack one of my large ships, say my r3)

3)
sacrifice r2 MinktakaIII
attack r3s smokeytroll42
attack g3s smokeytroll42

If you build a y2 now, my second move will put 4 yellows in your home, and you can trigger a yellow catastrophe and attack my r3. My backup plan will be something like

2)
trade r3 g3 Babamots

3)
sacrifice y3 Vulcan
move g3 Babamots Vulcan
move g3 Vulcan smokeytroll42
move r3 Vulcan smokeytroll42

I would need to trade the r3 for g3 (or b3) so that you couldn't destroy my invading ships by trading your home g3 for r3.

I hope you've enjoyed the game. Playing a losing game over the course of weeks can be very frustrating.
	Babamots: "Measure of a Man" is usually my favorite episode.
	smokeytroll42: Well we can just call it then. To be fair, since I’m still new to the game, I’m not seeing my own demise so clearly, so it’s not really a big deal. Plus, the only to get better is to keep playing. I’m up for a rematch if you are. As always, I appreciate the advice.
	Babamots: I'm happy to play again. If you'd like to look for another player of similar skill level, you could make an undirected challenge (nothing in the "Challenge whom" section) and in the "Notes" section say you're looking for another newish player.
	smokeytroll42: Ok, I sent you the challenge. I’ll give that try next time I start a new game. 


33427)
Variants: "Unrated"
Started: 2017.11.15, Ended: 2017.11.15
Participants: icalvinist (S), wil (N)
Winner: wil



33436)
Variants: "Unrated"
Started: 2017.11.15, Ended: 2017.11.18
Participants: wil (S), icalvinist (N)
Winner: wil

1) icalvinist: Homeworld B2 Y1 G3

2) wil: Homeworld B3 Y2 G3
	wil: thx


3) icalvinist: Build G1 Icalvinist

4) wil: Build G1 Wil

5) icalvinist: Discover G1 Icalvinist Y3 Odin

6) wil: Trade G1 Y1 Wil

7) icalvinist: Build G1 Icalvinist

8) wil: Build Y1 Wil

9) icalvinist: Discover G1 Icalvinist Y3 Tyr

10) wil: Discover Y1 Wil G1 G1

11) icalvinist: Build G2 Icalvinist

12) wil: Sacrifice G3 Wil
Build Y2 G1
Build Y2 G1
Build Y3 Wil

13) icalvinist: Sacrifice G3 Icalvinist
Build G2 Icalvinist
Build G2 Icalvinist
Build G3 Odin

14) wil: Trade Y3 G3 Wil

15) icalvinist: Build G3 Tyr

16) wil: Build Y3 Wil

17) icalvinist: Trade G2 B2 Icalvinist
	wil: never the same game twice...always interesting...
	wil: bout to get dicey

18) wil: Build G2 Wil
	icalvinist: I'm pretty new to the Homeworlds game, but man are you right about it never being the same game twice. Truly THE hidden gem of tabletop gaming
	icalvinist: Hope you don't mind my style of play. I feel like I'm still figuring things out, but I'm having a blast just trying moves out

19) icalvinist: Build B1 Icalvinist
	wil: I believe in the first 50 games you should lose 40..just to learn...you want to see how folks beat you in the end...you want to see the different attacks...and then try using them against someone else..and then you get to learn the counters, and then you try the counters and see how to stop them...you don't learn a thing by winning

20) wil: Trade G2 B2 Wil

21) icalvinist: Sacrifice B1 Icalvinist
Trade G3 R3 Odin

22) wil: Discover Y2 G1 G3 G3

23) icalvinist: Sacrifice G3 Tyr
Build G2 Odin
Build G3 Tyr
Build R1 Odin

24) wil: Trade Y1 R1 Wil

25) icalvinist: Sacrifice B2 Icalvinist
Trade G1 Y1 Odin
Trade G2 B2 Icalvinist

26) wil: Build R1 Wil

27) icalvinist: Sacrifice G3 Tyr
Build G1 Odin
Build G2 Tyr
Build G3 Icalvinist

28) wil: Sacrifice Y2 G3
Move Y1 G1 Odin
Move Y2 G1 Odin
Catastrophe Odin Y

29) icalvinist: Trade G2 Y2 Icalvinist

30) wil: Build R1 Wil

31) icalvinist: Discover G1 Tyr Y1 Odin

32) wil: Move R1 Wil Odin

33) icalvinist: Discover G1 Odin Y3 Thor

34) wil: Build R2 Wil

35) icalvinist: Trade G3 R3 Icalvinist

36) wil: Move R1 Odin Thor

37) icalvinist: Sacrifice G1 Thor
Build G1 Tyr

38) wil: Discover R1 Wil B1 B1

39) icalvinist: Discover R3 Icalvinist G3 Loki

40) wil: Sacrifice G3 Wil
Build R2 Wil
Build R2 B1
Build R3 Thor

41) icalvinist: Sacrifice Y2 Icalvinist
Move R3 Loki B1
Move R3 B1 Wil
Catastrophe Wil R

42) wil: Move R3 Thor Icalvinist

43) icalvinist: Move G2 Tyr Icalvinist

44) wil: Sacrifice R2 B1
Attack B2 Icalvinist
Attack G2 Icalvinist
	wil: oops the pending doom was accelerated...

	icalvinist: good game!
	wil: anytime you are up for it...


33440)
Variants: "Hard time"
Started: 2017.11.17, Ended: 2017.12.18
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 R1 G3

2) Felix: Homeworld R2 B3 G3
	dlwillson: Long time, no see! How've you been?

3) dlwillson: B G1 Dlwillson

4) Felix: Build G1 Felix
	Felix: It has been a while indeed! Ive been well. Took me a long time to knock Wil off the throne! And I haven't had as much time for games in the Holidays. How have you been?

5) dlwillson: Trade G1 Y1 Dlwillson
	dlwillson: I've been well. My wife and I went camping with my baby sister and her husband in Moab, Utah. It was great.

6) Felix: Trade G1 Y1 Felix
	Felix: Nice! That sounds like a great time. Weather's been nice here, weirdly so for November. I need to get out and camp!

7) dlwillson: B G1 Dlwillson
	dlwillson: Let's do ... yellow! Yellow, yellow, bo-bellow, banana-fana-fo-fellow, me my mo-mellow, yellow.

8) Felix: B G1 Felix

9) dlwillson: Trade G1 R1 Dlwillson

10) Felix: Trade G1 R1 Felix
	Felix: I prefer green bean bo bean, fee fi fo feen, greeeeeeeen.

11) dlwillson: B R2 Dlwillson

12) Felix: Build R2 Felix

13) dlwillson: Discover R1 Dlwillson G2 Field

14) Felix: Discover R2 Felix G1 Grass

15) dlwillson: B R3 Field

16) Felix: Sacrifice G3 Felix
Build R3 Felix
Build R3 Grass
Build Y1 Felix

17) dlwillson: Build Y2 Dlwillson

18) Felix: Trade R1 G1 Felix

19) dlwillson: B Y2 Dlwillson

20) Felix: Move Y1 Felix Grass

21) dlwillson: Move Y1 Dlwillson Field

22) Felix: Build G1 Felix

23) dlwillson: Sacrifice Y2 Dlwillson
Move R3 Field Grass
Move R3 Grass Felix

24) Felix: Attack R3 Felix

25) dlwillson: S Y2 Dlwillson
M R1 Field Grass
M R1 Grass Felix
C Felix R

26) Felix: Build G2 Felix
	Felix: Ooh, nice move.

27) dlwillson: B Y2 Field
	dlwillson: Thank you! I'm glad you think so. :-)

28) Felix: Move R3 Grass Felix

29) dlwillson: Discover Y1 Field B1 Fielder

30) Felix: Move G2 Felix Fielder

31) dlwillson: D Y1 Fielder B2 Sea

32) Felix: Trade G1 B1 Felix

33) dlwillson: B R1 Dlwillson

34) Felix: Build Y2 Grass

35) dlwillson: T R2 B2 Dlwillson

36) Felix: Move B1 Felix Grass

37) dlwillson: M Y1 Sea Dlwillson

38) Felix: Trade R3 G3 Felix

39) dlwillson: M B2 Dlwillson Field

40) Felix: Discover Y2 Grass B2 Omnus

41) dlwillson: B B1 Field

42) Felix: Build B2 Grass

43) dlwillson: T G3 B3 Dlwillson

44) Felix: Sacrifice G3 Felix
Build Y2 Omnus
Build Y3 Grass
Build Y3 Felix

45) dlwillson: Build Y3 Field

46) Felix: Sacrifice Y1 Felix
Discover B2 Grass G2 Grassy
	Felix: Uh oh, you weren't supposed to get enough blue!

47) dlwillson: Sacrifice Y3 Field
Move B3 Dlwillson Grassy
Move B3 Grassy Felix
Move B2 Field Felix
	dlwillson: Hmm...

48) Felix: Sacrifice B1 Grass
Trade G1 B1 Felix
Catastrophe Felix Blue

	dlwillson: What a fantastic minefield you have! What magnificent rabbits proceed from your hat! I think I've successfully navigated through your trap, but I'm not sure you don't have something even more miraculous in store!
	Felix: ..........Tada.
	dlwillson: :-)
	Felix: Good game! Congrats on the well-earned top slot. My brain has been really fuzzy with this game lately. Haven't been doing well! Not good news for me being in that tournament.


33459)
Variants: "Hard time"
Started: 2017.11.19, Ended: 2017.11.29
Participants: goulo (S), bhorner (N)
Winner: bhorner

1) bhorner: H R2 B1 G3

2) goulo: Homeworld R3 B2 G3

3) bhorner: Build G1 Bhorner
	goulo: hi

4) goulo: Build G1 Goulo

5) bhorner: Trade G1 B1 Bhorner

6) goulo: Trade G1 Y1 Goulo

7) bhorner: Build B1 Bhorner

8) goulo: Build Y1 Goulo

9) bhorner: T B1 Y1 Bhorner

10) goulo: Build Y2 Goulo

11) bhorner: B Y2 Bhorner

12) goulo: Trade Y1 G1 Goulo

13) bhorner: B B1 Bhorner

14) goulo: Trade Y2 B2 Goulo

15) bhorner: D B1 Bhorner G3 Xmas

16) goulo: Discover B2 Goulo G1 Verdeto

17) bhorner: M Y2 Bhorner Xmas

18) goulo: Trade G1 R1 Goulo

19) bhorner: B G1 Bhorner

20) goulo: Build G1 Goulo

21) bhorner: T G1 R1 Bhorner

22) goulo: Move G1 Goulo Verdeto

23) bhorner: S G3 Bhorner
B B2 Xmas
B B3 Bhorner
B B3 Xmas

24) goulo: Build B3 Verdeto

25) bhorner: Sacrifice Y2 Xmas
Move B1 Xmas Verdeto
Move B2 Xmas Verdeto
Catastrophe Verdeto Blue
	bhorner: Decided to go for it.

26) goulo: Build Y1 Goulo

27) bhorner: Trade B3 G3 Bhorner

28) goulo: Build Y2 Goulo

29) bhorner: B Y2 Bhorner

30) goulo: Move Y1 Goulo Verdeto

31) bhorner: M Y1 Bhorner Xmas

32) goulo: Discover Y1 Goulo G1 Smeraldeto

33) bhorner: Build R1 Bhorner

34) goulo: Sacrifice G3 Goulo
Build Y2 Smeraldeto
Build Y3 Verdeto
Build Y3 Goulo

35) bhorner: Build Y3 Bhorner

36) goulo: Build G2 Verdeto

37) bhorner: Discover Y3 Bhorner G3 Tree

38) goulo: Move R1 Goulo Verdeto

39) bhorner: B G2 Bhorner

40) goulo: Sacrifice Y3 Verdeto
Move R1 Verdeto Tree
Move R1 Tree Bhorner
Move G2 Verdeto Goulo
Catastrophe Bhorner Red

41) bhorner: B Y3 Bhorner

42) goulo: Trade G2 R2 Goulo

43) bhorner: S Y3 Tree
M Y2 Bhorner Goulo
M Y1 Xmas Bhorner
M Y1 Bhorner Goulo
C Goulo Yellow

	goulo: congrats!
	bhorner: thanks.  :)  gg!


33437)
Variants: "Unrated"
Started: 2017.11.20, Ended: 2017.12.8
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B3 Y2 G3

2) wil: Homeworld Y2 B1 G3
	wil: lol, passed out early last night


3) Trydnt: Build G1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Build B1 Trydnt

8) wil: Build Y1 Wil

9) Trydnt: Trade B1 Y1 Trydnt
	wil: Is it me that can't count?  or you...  I picked yellow because you are gonna want to move out to a yellow one so you can move again.  Switch to a yellow three and you can't build...we will see how it goes but it is about to get dicey...

10) wil: Trade Y1 B1 Wil

11) Trydnt: Build B2 Trydnt

12) wil: Build B2 Wil

13) Trydnt: Discover B2 Trydnt G1 Ac

14) wil: Discover B1 Wil Y3 Y3

15) Trydnt: Move Y1 Trydnt Ac

16) wil: Build G1 Wil

17) Trydnt: Trade B1 R1 Trydnt

18) wil: Trade G1 R1 Wil

19) Trydnt: Move B2 Ac Y3

20) wil: Sacrifice G3 Wil
Build B1 Y3
Build B2 Y3
Build B3 Wil
Catastrophe Y3 B

21) Trydnt: Build Y1 Ac

22) wil: Discover Y1 Wil G3 G3

23) Trydnt: Discover Y1 Ac G2 G2

24) wil: Trade B3 G3 Wil

25) Trydnt: Build G1 Trydnt

26) wil: Build B1 Wil

27) Trydnt: Trade G1 B1 Trydnt

28) wil: Discover B2 Wil Y3 Y3

29) Trydnt: Sacrifice G3 Trydnt
Build Y2 Ac
Build Y3 G2
Build B2 Trydnt

30) wil: Build Y3 G3

31) Trydnt: Move B1 Trydnt Ac
	wil: I fell asleep like 9 oclock..  woke up just a bit ago...what the hell are you doing up?

32) wil: Build G1 Wil

33) Trydnt: Move Y3 G2 Y3

34) wil: Discover B2 Y3 G1 G1
	wil: don't like the other game eh?

35) Trydnt: Move Y3 Y3 G1

36) wil: B B2 G1
	Trydnt: nah that was messed up haha this one is weird too. like you said, never seen the same game twice

37) Trydnt: Build Y3 G1
	wil: Enjoying your other games and time off for slaughtering natives that helped Englishman thru harsh winters?
	Trydnt: yup
	Trydnt: what did you do for tg?

38) wil: Build B3 G1
	wil: I am still down at my mothers...hanging with my sister and her... my kids and her kids and their current partners will all be here tomorrow and we will have our tday then... we just hang out and play games.
	wil: Am working on a design to finish out my mothers basement...

39) Trydnt: Sacrifice Y2 Ac
Move B1 Ac G3
Move B1 G3 G1
Catastrophe G1 B

40) wil: Build G2 Wil

41) Trydnt: Build Y2 Ac
	wil:  nice move...and we took a hike in the woods...we did that too

42) wil: Trade G2 R2 Wil
	wil: forgot to catastrophe eh?  but yes...great response..most other choices were death..
	Trydnt: yup forgot that it wasn't automatic haha

43) Trydnt: Move Y3 G1 Trydnt

44) wil: Discover Y1 G3 G2 Gee2

45) Trydnt: Discover Y3 G1 G3 Gee3

46) wil: Build G1 Wil

47) Trydnt: Move B2 Trydnt Ac

48) wil: Move G1 Wil G3

49) Trydnt: Move B2 Ac Gee3

50) wil: M R2 Wil G3

51) Trydnt: Build B1 Gee3

52) wil: Move B1 Wil G3

53) Trydnt: Build B2 Gee3

54) wil: Build B2 G3

55) Trydnt: Move B1 Gee3 G2

56) wil: M B2 G3 G2

57) Trydnt: Build B3 G2

58) wil: Sacrifice G3 Wil
Build B3 G3
Build G2 G3
Build G3 Wil

59) Trydnt: Discover B1 G2 R3 R3
	wil: me thinks you may have this one

60) wil: Move B3 G3 Ac

61) Trydnt: Sacrifice Y3 Gee3
Move Y1 Ac R3
Move B1 R3 Wil
Move Y2 Ac Gee3

62) wil: S G3 Wil
B G3 Wil
B Y3 G3
B R1 G3

63) Trydnt: Move B2 Gee3 Wil

64) wil: Sacrifice R1 G3
Attack Y1 G2
	wil: forgotted I had a factory

65) Trydnt: Move B2 Gee3 Wil
Catastrophe Wil B
	wil: hung around whytestone till after 8 last evening...thought I'd get a live game...

66) wil: S G3 Wil
B B1 G2
B G3 Wil
B B1 G2
C G2 B

67) Trydnt: Move Y2 Gee3 Gee2

68) wil: Move Y1 Gee2 Ac

69) Trydnt: Discover Y2 Gee2 G3 Gee3

70) wil: Trade G2 R2 G3

71) Trydnt: Discover Y1 R3 B1 B1

72) wil: Sacrifice Y3 G3
Move Y3 G3 Ac
Move Y3 Ac Trydnt
Move B3 Ac Trydnt
	wil: why thank you for that birthday present

73) Trydnt: Move Y1 B1 Trydnt
Catastrophe Trydnt Y

74) wil: S R2 G3
A R1 Trydnt
P

	wil: Leaving for the mtns for the weekend... See you next week, feel free to start another.


33369)
Variants: "Unrated, Hard time"
Started: 2017.11.20, Ended: 2017.12.21
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) dlwillson: H B1 R3 G3

3) Trydnt: Build G1 Trydnt
	dlwillson: Welcome! Good luck and have fun!

4) dlwillson: Build G1 Dlwillson

5) Trydnt: Trade G1 B1 Trydnt

6) dlwillson: Trade G1 B1 Dlwillson

7) Trydnt: Build B2 Trydnt

8) dlwillson: B B2 Dlwillson

9) Trydnt: Trade B1 Y1 Trydnt

10) dlwillson: T B1 Y1 Dlwillson

11) Trydnt: Build G1 Trydnt

12) dlwillson: B B1 Dlwillson

13) Trydnt: Discover B2 Trydnt G3 G3

14) dlwillson: D B1 Dlwillson G2 Field

15) Trydnt: Build G1 Trydnt

16) dlwillson: B G1 Dlwillson

17) Trydnt: Trade G1 R1 Trydnt

18) dlwillson: T G1 R1 Dlwillson

19) Trydnt: Build R2 Trydnt

20) dlwillson: B R2 Dlwillson

21) Trydnt: Move R1 Trydnt G3

22) dlwillson: Build B1 Field
	dlwillson: Hey, sorry for timing out on you in the other game.

23) Trydnt: Sacrifice G3 Trydnt
Build R2 G3
Build R3 Trydnt
Build R3 G3

24) dlwillson: Build B3 Dlwillson

25) Trydnt: Trade R2 Y2 G3

26) dlwillson: Trade B3 Y3 Dlwillson

27) Trydnt: Trade R3 G3 Trydnt

28) dlwillson: M R1 Dlwillson Field

29) Trydnt: Move R3 G3 Field

30) dlwillson: Sacrifice G3 Dlwillson
Build R2 Field
Build R3 Field
Build Y1 Dlwillson
Catastrophe Field R

31) Trydnt: Build Y2 G3

32) dlwillson: Move Y1 Dlwillson Field

33) Trydnt: Move Y2 G3 Field

34) dlwillson: D B1 Field G1 Meadow

35) Trydnt: Sacrifice R2 Trydnt
Attack Y1 Field
Attack B1 Field

36) dlwillson: B B3 Meadow

37) Trydnt: Sacrifice G3 Trydnt
Build Y2 Field
Build Y3 Trydnt
Build B3 G3
	dlwillson: Oops!

38) dlwillson: M Y1 Dlwillson Field
C Field Y

39) Trydnt: Build B3 Field

40) dlwillson: T B3 Y3 Meadow

41) Trydnt: Trade B1 Y1 Field

42) dlwillson: Trade B2 G2 Dlwillson

43) Trydnt: Build Y1 Field

44) dlwillson: B B1 Meadow

45) Trydnt: Discover B2 G3 G2 G2

46) dlwillson: D B1 Meadow G3 Forest

47) Trydnt: Build B2 G2

48) dlwillson: B B3 Forest

49) Trydnt: Build Y2 G3

50) dlwillson: Discover R2 Dlwillson Y2 Sol

51) Trydnt: Sacrifice Y2 G3
Move B2 G2 Forest
Move B2 G2 Forest
Catastrophe Forest B

52) dlwillson: Build G1 Dlwillson

53) Trydnt: Build Y2 G3

54) dlwillson: Discover G1 Dlwillson B2 Sea

55) Trydnt: Trade Y3 G3 Trydnt

56) dlwillson: B G2 Sea

57) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Trydnt
Build Y3 Trydnt

58) dlwillson: S Y3 Meadow
M G1 Sea G3
M G1 G3 Trydnt
C Trydnt G
D B1 Meadow G3 Forest

59) Trydnt: Build Y3 G3

	dlwillson: Bah! Sorry..
	dlwillson: I keep timing out in games. It's hard to keep up with work and Christmas and games.
	Trydnt: no worries. Merry Christmas!
	dlwillson: Same to you and yours!


33403)
Started: 2017.11.20, Ended: 2018.1.12
Participants: ts52 (S), Trydnt (N)
Winner: ts52

1) Trydnt: Homeworld B2 R1 G3

2) ts52: Homeworld B1 Y3 G3

3) Trydnt: Build G1 Trydnt
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) Trydnt: Trade G1 B1 Trydnt

6) ts52: Trade G1 B1 Ts52

7) Trydnt: Build G1 Trydnt

8) ts52: Build B2 Ts52

9) Trydnt: Trade G1 Y1 Trydnt

10) ts52: Discover B1 Ts52 G2 Kermit

11) Trydnt: Discover B1 Trydnt Y3 Y3

12) ts52: Build G1 Ts52

13) Trydnt: Build G1 Trydnt

14) ts52: Build B2 Kermit

15) Trydnt: Sacrifice G3 Trydnt
Build B3 Y3
Build B3 Y3
Build Y1 Trydnt

16) ts52: Trade B2 Y2 Kermit

17) Trydnt: Move B3 Y3 Trydnt

18) ts52: Build B2 Ts52

19) Trydnt: Discover B1 Y3 Y2 Y2

20) ts52: Trade B2 R2 Ts52

21) Trydnt: Trade Y1 R1 Trydnt

22) ts52: Move R2 Ts52 Y2

23) Trydnt: Move B3 Y3 Y2

24) ts52: Discover R2 Y2 Y3 Bigbird

25) Trydnt: Move B3 Y2 Bigbird

26) ts52: Move R2 Bigbird Y2

27) Trydnt: Move B1 Y2 Ts52

28) ts52: Trade B2 R2 Ts52

29) Trydnt: Move B3 Bigbird Kermit

30) ts52: Discover Y2 Kermit G3 Robin

31) Trydnt: Build Y1 Trydnt

32) ts52: Build Y1 Robin

33) Trydnt: Discover Y1 Trydnt G3 G3

34) ts52: Move R2 Y2 G3

35) Trydnt: Move Y1 G3 Kermit

36) ts52: Sacrifice R2 G3
Attack Y1N Kermit
Attack B1N Ts52

37) Trydnt: Trade B3 R3 Kermit

38) ts52: Sacrifice Y1 Kermit
Move B1 Kermit Robin

39) Trydnt: Sacrifice Y1 Trydnt
Move R3 Kermit Robin

40) ts52: Sacrifice Y2 Robin
Discover B1 Robin G2 Kermit
Move Y1 Robin Kermit

41) Trydnt: Build B2 Trydnt

42) ts52: Sacrifice G3 Ts52
Build B2 Kermit
Build B3 Kermit
Build B3 Ts52

43) Trydnt: Trade B3 Y3 Trydnt

44) ts52: Trade B3 G3 Ts52

45) Trydnt: Build B3 Trydnt

46) ts52: Discover B2 Kermit G3 Oscar

47) Trydnt: Trade B3 Y3 Trydnt

48) ts52: Build B3 Oscar

49) Trydnt: Build B3 Trydnt

50) ts52: Sacrifice Y1 Kermit
Move B2 Oscar Trydnt
Catastrophe Trydnt B

51) Trydnt: Discover Y3 Trydnt B3 B3

52) ts52: Build B2 Oscar

53) Trydnt: Build Y1 Trydnt

54) ts52: Trade B2 Y2 Oscar

55) Trydnt: Build G1 Trydnt

56) ts52: Trade B1 R1 Kermit

57) Trydnt: Move G1 Trydnt B3

58) ts52: Build R2 Kermit

	ts52: Thanks for the game!
	Trydnt: anytime


33425)
Started: 2017.11.20, Ended: 2017.12.14
Participants: Trydnt (S), MobyNostromo (N)
Winner: Trydnt

1) MobyNostromo: H B1 G2 Y3

2) Trydnt: Homeworld B3 Y1 G3
	MobyNostromo: Have fun!

3) MobyNostromo: B Y1 Mobynostromo

4) Trydnt: Build G1 Trydnt

5) MobyNostromo: B Y1 Mobynostromo

6) Trydnt: Trade G1 B1 Trydnt

7) MobyNostromo: D Y1 Mobynostromo B3 Hal

8) Trydnt: Build G1 Trydnt

9) MobyNostromo: B Y2 Mobynostromo

10) Trydnt: Build B1 Trydnt

11) MobyNostromo: D Y2 Mobynostromo G3 Treebeard

12) Trydnt: Discover B1 Trydnt Y2 Y2

13) MobyNostromo: B Y2 Mobynostromo

14) Trydnt: Sacrifice G1 Trydnt
Build B2 Y2

15) MobyNostromo: B Y3 Treebeard

16) Trydnt: Discover B2 Y2 Y3 Y3

17) MobyNostromo: T Y2 B2 Mobynostromo

18) Trydnt: Build G1 Trydnt



33368)
Variants: "Hard time"
Started: 2017.11.20, Ended: 2017.12.13
Participants: Felix (S), Trydnt (N)
Winner: Felix

1) Trydnt: Homeworld B2 Y1 G3

2) Felix: H B1 R3 G3

3) Trydnt: Build G1 Trydnt

4) Felix: Build G1 Felix

5) Trydnt: Trade G1 B1 Trydnt

6) Felix: Trade G1 B1 Felix

7) Trydnt: Build B2 Trydnt

8) Felix: Build B2 Felix

9) Trydnt: Discover B2 Trydnt Y3 Y3

10) Felix: Trade B1 Y1 Felix

11) Trydnt: Sacrifice G3 Trydnt
Build B1 Y3
Build B3 Y3
Build B3 Trydnt

12) Felix: Build B3 Felix

13) Trydnt: Trade B3 G3 Trydnt
	Felix: Nice!

14) Felix: Discover B2 Felix Y2 Out

15) Trydnt: Trade B1 R1 Y3

16) Felix: Sacrifice G3 Felix
Build B1 Out
Build B3 Felix
Build Y1 Felix

17) Trydnt: Move B2 Y3 Out

18) Felix: Trade B3 G3 Felix

19) Trydnt: Trade B1 R1 Trydnt

20) Felix: Sacrifice G3 Felix
Build B1 Out
Build B3 Felix
Build Y2 Felix
Catastrophe Out Blue

21) Trydnt: Discover B3 Y3 G2 G2

22) Felix: Trade B3 G3 Felix

23) Trydnt: Build B1 G2

24) Felix: Discover Y2 Felix B2 Out

25) Trydnt: Trade B3 Y3 G2

26) Felix: Discover Y1 Felix B2 Blue

27) Trydnt: Move R1 Y3 G2

28) Felix: Build Y2 Felix

29) Trydnt: Build R1 G2

30) Felix: Sacrifice G3 Felix
Build Y2 Blue
Build Y3 Blue
Build Y3 Out

31) Trydnt: Build R2 Trydnt

32) Felix: Trade Y1 G1 Felix

33) Trydnt: Sacrifice Y3 G2
Move R1 G2 Felix
Move R1 G2 Felix
Move B1 G2 Felix

34) Felix: Attack B1 Felix
	Felix: Ooh, nice move!

35) Trydnt: Sacrifice R2 Trydnt
Attack B1 Felix
Attack G1 Felix

36) Felix: Attack B1 Felix

37) Trydnt: Build R2 Felix
Catastrophe Felix R
	Felix: I think you might have me

38) Felix: Trade B3 R3 Felix

39) Trydnt: Sacrifice G1 Felix
Build G1 Trydnt

40) Felix: Trade Y3 G3 Blue

41) Trydnt: Build R1 Trydnt

42) Felix: Sacrifice G3 Blue
Build Y1 Out
Build Y3 Blue
Build Y3 Felix

43) Trydnt: Discover R1 Trydnt B3 B3

44) Felix: Trade Y2 G2 Felix

45) Trydnt: Build R1 Trydnt

46) Felix: Build B1 Felix

47) Trydnt: Discover R1 Trydnt B3 Bee3

48) Felix: Discover B1 Felix G3 Rom

49) Trydnt: Build R2 Trydnt

50) Felix: Build B3 Rom

51) Trydnt: Sacrifice G1 Trydnt
Build R2 B3

52) Felix: Build Y2 Felix

	Felix: Good game!


32752)
Variants: "Sinister"
Started: 2017.11.20, Ended: 2018.5.2
Participants: Mandrel (S), Draw5PlayAll (N), Trydnt (E)
Winner: Trydnt

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Trydnt: Homeworld Y3 B2 G3
	Draw5PlayAll: Welcome! The objective is to eliminate the player on your left.

3) Mandrel: Homeworld B1 R2 G3

4) Draw5PlayAll: Build G1 Draw5playall
	Mandrel: Have a good game!

5) Trydnt: Build G1 Trydnt

6) Mandrel: Build G1 Mandrel

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) Trydnt: Build G1 Trydnt

9) Mandrel: T G1 Y1 Mandrel

10) Draw5PlayAll: Build G1 Draw5playall

11) Trydnt: Trade G1 Y1 Trydnt

12) Mandrel: Build G1 Mandrel

13) Draw5PlayAll: Trade G1 B1 Draw5playall

14) Trydnt: Trade G1 B1 Trydnt

15) Mandrel: Discover G1 Mandrel B3 Lash

16) Draw5PlayAll: Discover B1 Draw5playall G2 G2

17) Trydnt: Discover Y1 Trydnt G1 G1

18) Mandrel: B G1 Lash

19) Draw5PlayAll: Build B1 G2

20) Trydnt: Build B2 Trydnt

21) Mandrel: T G1 R1 Lash

22) Draw5PlayAll: Build B2 G2

23) Trydnt: Trade B1 R1 Trydnt

24) Mandrel: Build G1 Lash

25) Draw5PlayAll: Trade B2 R2 G2

26) Trydnt: Move B2 Trydnt G1

27) Mandrel: T G1 Y1 Lash

28) Draw5PlayAll: Build Y2 Draw5playall

29) Trydnt: Build Y2 G1

30) Mandrel: Build Y2 Lash

31) Draw5PlayAll: Move Y1 Draw5playall G2

32) Trydnt: Discover Y2 G1 G3 G3

33) Mandrel: Build G1 Mandrel

34) Draw5PlayAll: Build G1 Draw5playall

35) Trydnt: Build G2 Trydnt

36) Mandrel: Build G2 Lash

37) Draw5PlayAll: Build R1 G2

38) Trydnt: Build R2 Trydnt

39) Mandrel: Discover Y1 Lash G2 Ton

40) Draw5PlayAll: Discover R1 G2 B3 Space

41) Trydnt: Move R2 Trydnt G1

42) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build Y2 Ton
Build Y3 Lash

43) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y3 G2
Build Y3 Draw5playall

44) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 Trydnt
Build R3 G1

45) Mandrel: Build R3 Lash

46) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R3 Space
Build R3 G2

47) Trydnt: Build B1 G1

48) Mandrel: Discover G2 Lash B2 Threeee

49) Draw5PlayAll: Move Y3 G2 G3

50) Trydnt: Move Y2 G3 G1

51) Mandrel: Trade G2 B2 Threeee

52) Draw5PlayAll: Move B1 G2 G3

53) Trydnt: Discover B1 G1 G2 Gee2

54) Mandrel: Sacrifice B2 Threeee
Trade Y2 B2 Lash
Trade Y2 B2 Ton

55) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B3 G2
Build Y2 G3

56) Trydnt: Move Y1 G1 G3

57) Mandrel: Move Y1 Ton G3
Catastrophe G3 Y
	Draw5PlayAll: Question 2: What should I do with this material advantage?

58) Draw5PlayAll: Build Y1 G2
	Trydnt: well if Mandrel sacs y3 and moves two blues in your homeworld...
	Trydnt: nvmnd forgot we're going left haha

59) Trydnt: Trade R3 Y3 G1
	Trydnt: y1 ton->g3 ought to remedy that material advantage though

60) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build Y1 Lash
Build Y2 Mandrel

61) Draw5PlayAll: Move Y1 G2 G3

62) Trydnt: Build R3 G1

63) Mandrel: Build Y2 Mandrel

64) Draw5PlayAll: Move B1 G2 G3

65) Trydnt: Move R3 G1 G3

66) Mandrel: Move R1 Lash Ton

67) Draw5PlayAll: Sacrifice Y1 G3
Discover B1 G3 Y1 Y1

68) Trydnt: Attack B1N G3

69) Mandrel: Move B2 Lash Ton

70) Draw5PlayAll: Move R3 G2 Y1

71) Trydnt: Move Y2 G1 G3

72) Mandrel: Sacrifice Y2 Mandrel
Move B2 Ton Draw5playall
Move B2 Ton Draw5playall

73) Draw5PlayAll: Build Y2 G2

74) Trydnt: Move B2 G1 G3

75) Mandrel: M G1 Lash Ton

76) Draw5PlayAll: Attack B2S Draw5playall

77) Trydnt: Move R1 Trydnt G1

78) Mandrel: A Y2N Draw5playall

79) Draw5PlayAll: Attack B2S Draw5playall

80) Trydnt: Move R2 G1 G3

81) Mandrel: Move Y1 Lash Ton

82) Draw5PlayAll: Move B2 Draw5playall Ton

83) Trydnt: Sacrifice Y3 G1
Move R1 G1 G3
Move R1 G3 Mandrel
Move R2 G3 Mandrel

84) Mandrel: Sacrifice R3 Lash
Attack R1E Mandrel
Attack R2E Mandrel
Attack B2N Draw5playall

85) Draw5PlayAll: Build R3 G2

86) Trydnt: Move R3 G3 Mandrel
Catastrophe Mandrel R

87) Mandrel: B Y3 Ton

88) Draw5PlayAll: Sacrifice Y1 G2
Move B2 Ton Mandrel

89) Trydnt: Sacrifice Y2 G3
Move B1 Gee2 Mandrel
Move B1 G3 Mandrel
Catastrophe Mandrel B

	Draw5PlayAll: Forgot this was Sinister!!
	Trydnt: haha I was curious as to why you moved your b2 in there. oh well live and learn. good game both of you
	Mandrel: Good game!


33469)
Started: 2017.11.20, Ended: 2017.12.11
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) MobyNostromo: H B1 G2 Y3

3) Trydnt: Build G1 Trydnt

4) MobyNostromo: B Y1 Mobynostromo

5) Trydnt: Build G1 Trydnt

6) MobyNostromo: B Y1 Mobynostromo

7) Trydnt: Trade G1 Y1 Trydnt

8) MobyNostromo: D Y1 Mobynostromo Y3 Bigbird

9) Trydnt: Build G1 Trydnt

10) MobyNostromo: B Y2 Mobynostromo

11) Trydnt: Trade G1 B1 Trydnt

12) MobyNostromo: D Y2 Mobynostromo B3 Ibm

13) Trydnt: Build Y2 Trydnt

14) MobyNostromo: T Y2 G2 Ibm

15) Trydnt: Discover Y1 Trydnt G3 G3

16) MobyNostromo: T Y1 B1 Mobynostromo

17) Trydnt: Move B1 Trydnt G3



33463)
Variants: "Unrated"
Started: 2017.11.20, Ended: 2017.11.23
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B2 Y1 G3

2) wil: Homeworld G3 Y1 Y3 *

3) Trydnt: Build G1 Trydnt
	wil: lettuce turnup n bee sillie

4) wil: Build Y1 Wil

5) Trydnt: Build G1 Trydnt

6) wil: Discover Y1 Wil G2 G2

7) Trydnt: Trade G1 R1 Trydnt
	wil: I've done the instant freezeout with blue before, and I think red once...never yellow...don't think it will play out, but we will see.

8) wil: Build Y2 G2

9) Trydnt: Build R1 Trydnt

10) wil: Build Y2 G2

11) Trydnt: Build G1 Trydnt

12) wil: Discover Y2 G2 B3 B3

13) Trydnt: Discover G1 Trydnt B3 Acb

14) wil: Build Y2 Wil

15) Trydnt: Sacrifice G3 Trydnt
Build G1 Acb
Build G2 Acb
Build G2 Trydnt

16) wil: Build Y3 G2

17) Trydnt: Build G3 Trydnt

18) wil: Move Y3 G2 B3

19) Trydnt: Discover G1 Trydnt B3 B32
	Draw5PlayAll: @wil: How can you instafreeze red? Starting R1+G3 stars and R3 ship gives you no room to move.
	wil: You are correct...not red.

20) wil: Trade Y3 G3 B3

21) Trydnt: Sacrifice G1 Acb
Build G1 B32

22) wil: Build Y3 B3

23) Trydnt: Discover G2 Trydnt Y3 Y3

24) wil: Trade Y3 R3 B3
	wil: The beginning of the end.



33426)
Variants: "Unrated"
Started: 2017.11.20, Ended: 2017.12.26
Participants: Felix (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) Felix: H B1 R3 G3

3) Trydnt: Build G1 Trydnt
	Felix: Hello! Are you new to the game?

4) Felix: Build G1 Felix
	Trydnt: Hi! I'm new-ish. Been playing a few months with a friend IRL but only just made an account here.

5) Trydnt: Trade G1 B1 Trydnt

6) Felix: Trade G1 B1 Felix
	Felix: Cool, well have fun!

7) Trydnt: Build B2 Trydnt

8) Felix: Build B2 Felix

9) Trydnt: Trade B1 Y1 Trydnt

10) Felix: Trade B2 Y2 Felix

11) Trydnt: Build G1 Trydnt

12) Felix: Build Y1 Felix

13) Trydnt: Discover B2 Trydnt G3 G3

14) Felix: Discover Y1 Felix G2 Out

15) Trydnt: Build G1 Trydnt

16) Felix: Build Y1 Out

17) Trydnt: Discover G1 Trydnt Y3 Y3

18) Felix: Move Y1 Out G3

19) Trydnt: Trade G1 R1 Trydnt

20) Felix: Build Y2 Felix

21) Trydnt: Sacrifice R1 Trydnt
Attack Y1 G3

22) Felix: Discover Y2 Felix B2 Opus

23) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y3 Trydnt
Build G1 Y3

24) Felix: Build Y3 Felix

25) Trydnt: Trade Y1 R1 G3

26) Felix: Discover Y1 Out G3 Grand

27) Trydnt: Discover Y1 Trydnt B3 B3

28) Felix: Discover Y2 Felix G2 Farhome

29) Trydnt: Build R1 G3

30) Felix: Sacrifice Y3 Felix
Move Y2 Opus Grand
Move Y2 Grand Trydnt
Move Y1 Grand Trydnt

31) Trydnt: Trade Y3 G3 Trydnt

32) Felix: Trade B1 Y1 Felix

33) Trydnt: Build Y3 G3
	Felix: Huh. I'm not really sure why I thought that would work...

34) Felix: Build Y3 Felix

35) Trydnt: Attack Y2 Trydnt

36) Felix: Move Y1 Trydnt G3

37) Trydnt: Discover Y3 G3 G2 G2

38) Felix: Discover Y1 G3 G2 Rim

39) Trydnt: Build G1 Trydnt

40) Felix: Trade Y1 B1 Felix

41) Trydnt: Move R1 G3 G2

42) Felix: Move B1 Felix Farhome

43) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 G2
Build R2 G3

44) Felix: Trade Y2 R2 Farhome

45) Trydnt: Move R1 G2 Y3

46) Felix: Build R3 Farhome

47) Trydnt: Build R3 G2

48) Felix: Trade R2 Y2 Farhome

49) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 Y3
Build Y1 B3

50) Felix: Move R3 Farhome B3

51) Trydnt: Sacrifice Y2 G3
Move R3 G2 Y3
Move R3 Y3 Farhome

52) Felix: Sacrifice Y2 Farhome
Move B1 Farhome B3
Move B1 B3 Rim

53) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G2
Build Y2 Trydnt

54) Felix: Attack Y1 B3

55) Trydnt: Move Y1 B3 Farhome

56) Felix: Build B1 Rim

57) Trydnt: Sacrifice Y1 Farhome
Move R2 G3 Rim

58) Felix: Move R3 B3 Rim

59) Trydnt: Sacrifice Y2 Trydnt
Move R1 Y3 Rim
Move R1 G3 Rim
Catastrophe Rim R

60) Felix: Trade B1 R1 Rim

61) Trydnt: Move R2 Y3 Rim

62) Felix: Move Y3 Felix Rim

63) Trydnt: Attack R1 Rim

64) Felix: Trade Y1 B1 B3

65) Trydnt: Attack Y1 Rim



33471)
Started: 2017.11.20, Ended: 2017.12.11
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) MobyNostromo: H B1 G2 Y3

3) Trydnt: Build G1 Trydnt

4) MobyNostromo: B Y1 Mobynostromo

5) Trydnt: Build G1 Trydnt

6) MobyNostromo: B Y1 Mobynostromo

7) Trydnt: Discover G1 Trydnt Y3 Y3

8) MobyNostromo: D Y1 Mobynostromo G3 Jolly

9) Trydnt: Build G1 Y3

10) MobyNostromo: B Y2 Mobynostromo

11) Trydnt: Build G2 Y3

12) MobyNostromo: T Y1 R1 Mobynostromo

13) Trydnt: Trade G1 R1 Trydnt

14) MobyNostromo: T Y2 G2 Mobynostromo

15) Trydnt: Move G1 Y3 Mobynostromo

16) MobyNostromo: M G2 Mobynostromo Y3

17) Trydnt: Sacrifice R1 Trydnt
Attack R1 Mobynostromo



33464)
Variants: "Unrated, Hard time"
Started: 2017.11.20, Ended: 2017.11.26
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt

1) dlwillson: H B3 Y1 G3 Dlwillson

2) Trydnt: Homeworld B3 Y2 G3

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build G1 Trydnt

5) dlwillson: T G1 Y1 Dlwillson
	dlwillson: Two games?

6) Trydnt: Trade G1 Y1 Trydnt

7) dlwillson: B Y2 Dlwillson

8) Trydnt: Discover Y1 Trydnt G1 G1

9) dlwillson: D Y1 Dlwillson G2 Field

10) Trydnt: Build G1 Trydnt

11) dlwillson: D Y2 Dlwillson G2 Field2

12) Trydnt: Sacrifice G3 Trydnt
Build Y2 G1
Build G1 Trydnt
Build G2 Trydnt

	dlwillson: Oops! Sorry about that.


33473)
Variants: "Unrated"
Started: 2017.11.24, Ended: 2017.12.13
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Trydnt: Homeworld G3 B1 Y3

3) wil: Build G1 Wil

4) Trydnt: Build Y1 Trydnt

5) wil: Trade G1 B1 Wil

6) Trydnt: Trade Y1 B1 Trydnt

7) wil: Build B2 Wil

8) Trydnt: Build B2 Trydnt

9) wil: Discover B1 Wil Y3 Y3

10) Trydnt: Discover B1 Trydnt Y2 Y2

11) wil: Trade B1 R1 Y3

12) Trydnt: Trade B2 R2 Trydnt

13) wil: Build B1 Wil

14) Trydnt: Move R2 Trydnt Y2

15) wil: Move B2 Wil Y3

16) Trydnt: Build Y1 Trydnt

17) wil: T B1 Y1 Wil

18) Trydnt: Build Y2 Trydnt

19) wil: Discover Y1 Wil G3 G3

20) Trydnt: Discover Y2 Trydnt G2 G2

21) wil: Build G1 Wil
	wil: look at you, succumbing to my nomenclature

22) Trydnt: Move R2 Y2 G3

23) wil: M Y1 G3 G2

24) Trydnt: Build R1 G3

25) wil: Discover Y1 G2 G1 G1

26) Trydnt: Sacrifice B1 Y2
Trade R2 Y2 G3

27) wil: Discover G1 Wil Y3 Why3

28) Trydnt: Build Y2 G3

29) wil: Sacrifice G1 Why3
Build Y3 G1

30) Trydnt: Trade Y1 B1 Trydnt

31) wil: B G1 Wil

32) Trydnt: Build R1 G3

33) wil: Move G1 Wil Y3

34) Trydnt: Build Y1 G2

35) wil: Build R2 Y3

36) Trydnt: Discover Y2 G2 B3 B3

37) wil: Move R2 Y3 G2

38) Trydnt: Discover Y1 G2 B3 Bee3
	wil: I am doing worse in this game..

39) wil: B R2 Y3

40) Trydnt: Discover B1 Trydnt G2 Gee2

41) wil: Move R2 Y3 Gee2

42) Trydnt: Sacrifice Y1 Bee3
Move B1 Gee2 G3
	wil: Lovely new area...fancy meeting you here.
	wil: If I saw two in the queue, I always knew it was ueue.

43) wil: Move Y1 G1 G2

44) Trydnt: Build Y1 Trydnt

45) wil: Build G1 Wil

46) Trydnt: Build B1 G3
	wil: I'd say officially my game to lose now...

47) wil: Sacrifice G3 Wil
Build G2 Y3
Build G3 Wil
Build R2 G2

48) Trydnt: Build B2 G3

49) wil: S Y3 G1
M B2 Y3 G2
M B2 G2 G3
M R2 G2 G3
C G3 B

50) Trydnt: Attack R2 G3
	wil: And it. Appears I am doing it!

51) wil: Sacrifice G3 Wil
Build G1 Wil
Build G3 Wil
Build Y3 G2

52) Trydnt: Move Y1 Trydnt G2

53) wil: Sacrifice G3 Wil
Build G3 Wil
Build R3 G2
Build R3 Gee2

54) Trydnt: Move Y1 G2 B3

55) wil: Sacrifice Y3 G2
Move R3 G2 Trydnt
Move R2 Gee2 G3
Move R1 Y3 Wil
Catastrophe G3 R

	wil: Just a few moves ago you were one move away from unleashing the doomsday machine and I alexed my way out of it!


33475)
Started: 2017.11.24, Ended: 2017.12.14
Participants: Trydnt (S), MobyNostromo (N)
Winner: Trydnt

1) MobyNostromo: H B1 G2 Y3

2) Trydnt: Homeworld Y3 G1 B3
	MobyNostromo: Have fun!

3) MobyNostromo: B Y1 Mobynostromo

4) Trydnt: Build B1 Trydnt

5) MobyNostromo: B Y1 Mobynostromo

6) Trydnt: Build B1 Trydnt

7) MobyNostromo: D Y1 Mobynostromo G3 Jollygreen

8) Trydnt: Discover B1 Trydnt Y2 Y2

9) MobyNostromo: B Y1 Jollygreen

10) Trydnt: Build B2 Trydnt

11) MobyNostromo: Build Y2 Mobynostromo

12) Trydnt: Move B2 Trydnt Y2



33514)
Started: 2017.11.27, Ended: 2017.11.27
Participants: inattentive (S), Schmoopy (N)
Winner: Schmoopy

1) Schmoopy: Homeworld B3 R1 G3

2) inattentive: Homeworld Y2 B1 G3
	inattentive: homeworld y2 b1 g1
	Schmoopy: right back at ya

3) Schmoopy: Build G1 Schmoopy

4) inattentive: Build G1 Inattentive

5) Schmoopy: Trade G1 Y1 Schmoopy

6) inattentive: Trade G1 R1 Inattentive

7) Schmoopy: Build Y1 Schmoopy

8) inattentive: Build G1 Inattentive

9) Schmoopy: Build Y1 Schmoopy

10) inattentive: Trade G1 B1 Inattentive

11) Schmoopy: Build Y2 Schmoopy

12) inattentive: Build R1 Inattentive
Catastrophe Schmoopy Y



33515)
Started: 2017.11.27, Ended: 2017.11.27
Participants: inattentive (S), Schmoopy (N)
Winner: inattentive

1) Schmoopy: Homeworld B3 R1 G3

2) inattentive: Homeworld Y3 B1 G3

3) Schmoopy: Build G1 Schmoopy

4) inattentive: Build G1 Inattentive

5) Schmoopy: Trade G1 R1 Schmoopy

6) inattentive: Trade G1 R1 Inattentive

7) Schmoopy: Build R2 Schmoopy

8) inattentive: Build R2 Inattentive

9) Schmoopy: Trade R1 Y1 Schmoopy

10) inattentive: Discover R2 Inattentive Y2 Poop

11) Schmoopy: Build G1 Schmoopy

12) inattentive: Build G1 Inattentive

13) Schmoopy: Move G3 Schmoopy Poop

14) inattentive: Move G3 Inattentive Poop

15) Schmoopy: Sacrifice R2 Schmoopy
Attack R2 Poop
Attack G3 Poop

16) inattentive: Build G1 Inattentive

17) Schmoopy: Move G3 Poop Inattentive

18) inattentive: Build G2 Inattentive
Catastrophe Inattentive G

19) Schmoopy: Move R2 Poop Inattentive

20) inattentive: Trade R1 G1 Inattentive

	Draw5PlayAll: Whaaaaat?


33478)
Variants: "Unrated"
Started: 2017.11.28, Ended: 2017.12.28
Participants: smokeytroll42 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) smokeytroll42: Homeworld G3 R2 B3

3) Trydnt: Build G1 Trydnt

4) smokeytroll42: Build B1 Smokeytroll42

5) Trydnt: Trade G1 Y1 Trydnt

6) smokeytroll42: Trade B1 Y1 Smokeytroll42

7) Trydnt: Build Y2 Trydnt

8) smokeytroll42: Build Y2 Smokeytroll42

9) Trydnt: Discover Y2 Trydnt G3 G3

10) smokeytroll42: Discover Y2 Smokeytroll42 G1 Mars

11) Trydnt: Discover Y1 Trydnt B3 B3

12) smokeytroll42: Build B1 Smokeytroll42

13) Trydnt: Build G1 Trydnt

14) smokeytroll42: Move B1 Smokeytroll42 Mars

15) Trydnt: Move G1 Trydnt B3

16) smokeytroll42: Build B1 Mars

17) Trydnt: Build G1 Trydnt

18) smokeytroll42: Trade B1 R1 Mars

19) Trydnt: Trade G1 R1 Trydnt

20) smokeytroll42: Build B1 Mars

21) Trydnt: Build G1 Trydnt

22) smokeytroll42: Build B1 Smokeytroll42

23) Trydnt: Build G2 B3

24) smokeytroll42: Build B2 Mars

25) Trydnt: Discover G1 Trydnt B3 Bee3

26) smokeytroll42: Trade B2 R2 Mars

27) Trydnt: Build G2 Bee3

28) smokeytroll42: Trade R2 G2 Mars

29) Trydnt: Sacrifice Y2 G3
Move G1 B3 Mars
Move G1 Bee3 Mars
Catastrophe Mars G

30) smokeytroll42: Build Y2 Smokeytroll42

31) Trydnt: Build Y2 B3

32) smokeytroll42: Trade Y1 R1 Smokeytroll42

33) Trydnt: Build G1 Bee3

34) smokeytroll42: Discover B1 Smokeytroll42 G1 Mercury

35) Trydnt: Build G1 Trydnt

36) smokeytroll42: Build B1 Mercury

37) Trydnt: Sacrifice G3 Trydnt
Build G2 B3
Build G3 Trydnt
Build G3 B3

38) smokeytroll42: Build B1 Smokeytroll42

39) Trydnt: Trade G2 R2 B3

40) smokeytroll42: Move Y2 Smokeytroll42 Mercury

41) Trydnt: Move G3 B3 Mercury

42) smokeytroll42: Sacrifice Y2 Mercury
Discover B1 Mercury Y2 Pluto
Discover B1 Mercury R2 Neptune

43) Trydnt: Sacrifice Y2 B3
Move R2 B3 Pluto
Move G2 Bee3 Neptune

44) smokeytroll42: Discover B1 Pluto Y3 Venus

45) Trydnt: Attack B1 Neptune

46) smokeytroll42: Build B2 Smokeytroll42

47) Trydnt: Sacrifice G3 Trydnt
Build B2 Neptune
Build G2 Bee3
Build G3 Trydnt

48) smokeytroll42: Trade B1 Y1 Smokeytroll42

49) Trydnt: Move R2 Pluto Venus

50) smokeytroll42: Build Y2 Smokeytroll42

51) Trydnt: Attack B1 Venus

52) smokeytroll42: Sacrifice Y2 Smokeytroll42
Move B3 Smokeytroll42 Mercury
Move B3 Mercury Venus

53) Trydnt: Move R2 Venus Mercury

54) smokeytroll42: Trade B3 R3 Venus

55) Trydnt: Sacrifice Y1 B3
Move G3 Mercury Smokeytroll42

	smokeytroll42: good game!


33468)
Started: 2017.11.29, Ended: 2017.12.31
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) ts52: Homeworld B1 Y2 G3

3) wil: Build G1 Wil
	ts52: Have a good game!
	wil: I ran out of games!  Was only in three...

4) ts52: Build G1 Ts52

5) wil: Trade G1 Y1 Wil
	ts52: :D

6) ts52: Trade G1 Y1 Ts52

7) wil: Build Y2 Wil

8) ts52: Build G1 Ts52

9) wil: D Y1 Wil B2 B2

10) ts52: Trade G1 B1 Ts52

11) wil: Sacrifice G3 Wil
Build Y2 B2
Build Y3 B2
Build Y3 Wil

12) ts52: Discover Y1 Ts52 G3 Kermit

13) wil: M Y2 B2 Kermit

14) ts52: Discover Y1 Kermit G2 Robin

15) wil: Trade Y3 G3 Wil

16) ts52: Build Y3 Robin

17) wil: Build Y3 Kermit

18) ts52: Build B1 Ts52

19) wil: Trade Y1 G1 B2

20) ts52: Sacrifice B1 Ts52
Trade Y1 B1 Robin

21) wil: Trade Y2 R2 Wil

22) ts52: Trade B1 R1 Ts52

23) wil: B R1 Wil

24) ts52: Build B1 Robin

25) wil: Build Y1 B2

26) ts52: Build B2 Robin

27) wil: Trade R2 B2 Wil

28) ts52: Trade B2 R2 Robin

29) wil: M B2 Wil B2

30) ts52: Build G1 Ts52

31) wil: Build G1 B2

32) ts52: Discover G1 Ts52 B3 Gonzo

33) wil: Build G2 Wil

34) ts52: Build Y1 Robin

35) wil: S G3 Wil
B G2 B2
B G3 Wil
B Y2 B2

36) ts52: Move Y1 Robin Gonzo

37) wil: Sacrifice B2 B2
Trade Y2 R2 B2
Trade Y2 B2 Kermit

38) ts52: Build Y2 Gonzo

39) wil: S G3 Wil
B G3 Wil
B Y2 Kermit
B R1 B2

40) ts52: Sacrifice G3 Ts52
Build G3 Gonzo
Build R2 Robin
Build R3 Ts52

41) wil: Move R1 B2 Kermit

42) ts52: Trade R3 B3 Ts52
	wil: attention all troops, the factory has been transported to Gonzo!

43) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 B2
Build R3 Kermit

44) ts52: Sacrifice Y2 Gonzo
Move R2 Robin Kermit
Move R2 Robin Kermit
Catastrophe Kermit R
	wil: I think the end is in sight....of course that could change..

45) wil: S Y3 B2
M R3 B2 Kermit
M R3 Kermit Ts52
M Y3 Kermit Ts52
	ts52: I think you're probably right.

46) ts52: Attack R3N Ts52
	wil: Hope you had a great holiday
	ts52: Yep. That'll do it. Thanks for the game! Hope you had a great holiday too!

47) wil: Sacrifice R3 Wil
Attack R3 Ts52
Attack B3 Ts52
Attack R1 Ts52
	wil: See you next year!



33493)
Started: 2017.11.29, Ended: 2018.1.8
Participants: wil (S), MobyNostromo (N)
Winner: wil

1) MobyNostromo: H B1 G2 Y3

2) wil: Homeworld B3 Y1 G3

3) MobyNostromo: B Y1 Mobynostromo
	wil: Just dislike checking and not having a move to make!   Gotta get my HW fix
	MobyNostromo: I'm actually going out of town tomorrow, but I'll try to do this from my phone.

4) wil: Build G1 Wil
	wil: If it doesn't work out, hit me up when you return.  Hava good trip!

5) MobyNostromo: B Y1 Mobynostromo

6) wil: B G1 Wil
	MobyNostromo: Thanks, Wil!

7) MobyNostromo: D Y1 Mobynostromo G3 Jollygreen

8) wil: D G1 Wil B2 B2

9) MobyNostromo: T Y1 G1 Mobynostromo
	wil: Hmmm nice start.... Shoulda took fortress I suppose

10) wil: B G2 B2
	MobyNostromo: Fortress has a red, right? I’m still not experienced enough to really understand the initial setups. I’ve been using the same one. 

11) MobyNostromo: B G2 Mobynostromo
	wil:  No banker is a one and a two PIP star, fortress is a three PIP and two pip a star .. 
	MobyNostromo: I see. Thanks! (Sorry about the delay.)

12) wil: Build G3 B2
	wil: Fortress because ones are often taken early and then in short supply when your opponent is trying to build an avenue in.   Banker because you can send greens out to queen stars and sacrifice green later and grow the star someplace else...your investment gets paid off.  large and small star system is called goldilocks...because not the other two...

13) MobyNostromo: T G1 B1 Mobynostromo
	MobyNostromo: I remember reading about this a few months ago, but it didn't make any sense to me back then. Now, I'm getting a picture.

14) wil: T G1 Y1 B2

15) MobyNostromo: B Y2 Mobynostromo

16) wil: T G3 Y3 B2

17) MobyNostromo: B Y2 Jollygreen

18) wil: Discover Y1 B2 B3 B3

19) MobyNostromo: M B1 Mobynostromo Jollygreen

20) wil: Sacrifice G2 B2
Build Y2 B2
Build Y3 B3

21) MobyNostromo: B G1 Mobynostromo

22) wil: S Y2 B2
M Y3 B3 Mobynostromo
M Y1 B3 Mobynostromo
C Mobynostromo Y

23) MobyNostromo: T G2 Y2 Mobynostromo

24) wil: Trade G1 R1 Wil

25) MobyNostromo: D Y1 Jollygreen G2 Emerald

26) wil: M Y3 B2 Jollygreen

27) MobyNostromo: B Y1 Mobynostromo

28) wil: Build R1 Wil

29) MobyNostromo: B Y2 Emerald
	wil: So many moves to contemplate.
	MobyNostromo: And I bet you can see more moves than I can.

30) wil: S R1 Wil
A Y2 Jollygreen

31) MobyNostromo: T Y1 R1 Mobynostromo

32) wil: M Y3 Jollygreen Mobynostromo

33) MobyNostromo: T G1 R1 Mobynostromo

34) wil: B R2 Wil

35) MobyNostromo: M Y2 Emerald Jollygreen
	wil: I don't know how to see moves ahead... So many ways to thwart plans.... I have plans, strategy, begin with the end in mind, only a few ways to win, I work toward any one of them...

36) wil: Sacrifice R2 Wil
Attack Y2 Mobynostromo
Attack Y2 Jollygreen
	MobyNostromo: You play Chess, yes?
	wil: I did...until I found this...  now rarely chess, working on coverting chess players to this..or identify folks who might be interested based on chess.  But I don't 'see moves ahead' there either...I look for where I want to end...and then work my way thru to get there...like hiking to the next range...I look and try to head for a pass that I see.  And then head down to the valley and as I run into obstacles I keep turning back toward that place I am headed.

37) MobyNostromo: B Y1 Emerald
	MobyNostromo: I know what you mean. I've played this about twenty or so times and still feel like there is so much more that I cannot yet see. I used to play Chess casually, and I appreciate that game and its depth, but there are other games that are even deeper and more interesting.

And your description of your thinking process makes a lot of sense. I remember reading this one strategy book on Chess that described the two kinds of planning in that game: the tactics and the fuzzy thinking that involved where you would like to be by a certain time.

38) wil: Trade Y2 R2 Mobynostromo

39) MobyNostromo: B Y2 Emerald

40) wil: S R2 Mobynostromo
A R1 Mobynostromo
A R1 Mobynostromo
	wil: I was left with a choice sack and attack or grow and catastrophe...almost got creative!!   Gg, challenge me anytime!  (Note, for my first 50 -100 games I didn't challenge to win.. I challenged to lose and learn)
	MobyNostromo: Thanks, Wil. I know that the better the game, the longer it takes to master it.



33474)
Variants: "Unrated"
Started: 2017.11.29, Ended: 2017.12.5
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Felix: Homeworld B2 R3 G3

3) wil: Build G1 Wil
	Felix: Hello again :)

4) Felix: Build G1 Felix
	wil: tryin to get my fix

5) wil: Trade G1 B1 Wil
	Felix: I understand that.

6) Felix: Trade G1 Y1 Felix

7) wil: Build B1 Wil

8) Felix: Build Y1 Felix

9) wil: Discover B1 Wil Y3 Y3

10) Felix: Build Y2 Felix

11) wil: Sacrifice G3 Wil
Build B1 Y3
Build B2 Y3
Build B3 Wil

12) Felix: Discover Y1 Felix G1 Out

13) wil: M B2 Y3 Out
	Felix: Nice

14) Felix: Sacrifice G3 Felix
Build Y2 Out
Build Y2 Out
Build Y3 Felix

15) wil: Build B3 Out

16) Felix: Trade Y3 G3 Felix
	Draw5PlayAll: Absolutely yellow vs blue... very interesting.
	wil: Dang it...you've done it again!   I see a notice...I think my opponent has moved...and I get to contemplate a move...or he has commented and I need to respond...  No...just the peanut gallery popping in.  I am so confused...I have played you...you comment less during a game when I am playing you...and do this when I am not??  Have I not mentioned enough that I find it irritating? 
	wil: Sorry...can't delete...clicked on this right after a Trump and Tax and Racism discussion...while the sentiment is true...the rant stems from a previous discussion without which I prolly would have just grumbled under my breath....again.

17) wil: T B3 Y3 Out
C Out Y
	Felix: Quite understandable. Between Trump, Taxes, and Racism, that's a lot of volatile ground to cover in one discussion.
	Felix: I only get email notifications when an actual move is made, so that saves me that headache at least :)
	wil: It isn't the email notifications.... I open the page and it shows a bolded and non bolded games,  A MOVE TO MAKE!!!!   Like pavlov's dogs I salivate, adrenaline courses thru my veins, I tap the screen in anticipation and a balloon lets go and flies backwards thru the room deflated from dissapoimtment...

18) Felix: Trade Y2 R2 Felix
	Felix: Oh, haha. I almost never just open the page. The home page takes too long to load. I just come here directly from the email.

19) wil: Trade B3 G3 Wil
	Felix: Good move.

20) Felix: Move R2 Felix Out

21) wil: Sacrifice G3 Wil
Build B3 Out
Build B3 Y3
Build B3 Wil
	wil: I don't open the main page either...just leave a game open and look to the right to see if anything changed...I try to play enough games that I have a move a day...prefer a dozen!  I only get to sit down and play live games two or three nights a week.. 

22) Felix: Move G3 Felix Out
	Felix: "only" .... "two or three nights a week"
I'd be grateful to get that many! With a 2-year-old and a baby on the way, I'm lucky to get one live game a year.

23) wil: Sacrifice B3 Y3
Trade B3 G3 Out
Trade B2 G2 Out
Trade B3 G3 Wil
Catastrophe Out G
	wil: congrats on the kids!! mine are out of college and on their own.. As those little time absorption capsules grow up you'll be able to play with them!


	wil: That was exciting... for a moment I thought I was cornered.
	wil: Kids...you've got so many memories you are making...  you've taken me down memory lane with my twins...from pregnant to three... what a glorious time... Your younger one will come out making neuro connections by the second....your older child has now three times as many connections as we do...and will spend the next 13 years pruning...through their experiences and life around them they will be choosing which connections to eliminate, not needed, which ones to move over to other similar needs, and which to turn into super highways of accessible thought... 
	wil: me thinks this game is over and unimportant in the larger scheme of things...however that other game that you are playing... that is one to focus on!!
	Felix: Ooh, well played! And thanks for the congrats and, um, scientific poetry? It's all very fascinating :) And good point that they'll make good opponents in years to come!


33480)
Variants: "Unrated, Hard time"
Started: 2017.11.29, Ended: 2017.12.4
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: Homeworld B2 Y3 G3

2) wil: Homeworld B2 Y1 G3

3) dlwillson: B G1 Dlwillson
	wil: snow yet your way?


4) wil: Build G1 Wil

5) dlwillson: Trade G1 Y1 Dlwillson
	dlwillson: We had a couple snows, but they melted off fast. Today's cold, but no snow. Had a little rain yesterday, too.

6) wil: T G1 Y1 Wil

7) dlwillson: B Y2 Dlwillson

8) wil: Build Y2 Wil

	dlwillson: Dangit! Sorry Wil! I'm having trouble keeping up with all my things lately.
	wil: phooey freaking hard time!  Challenge me when you ain't so busy...   Trident is a young man I've recently taught the game to...caught on quick...smart kid...pissed he can't beat me more often.
	Draw5PlayAll: ummm... you can turn off the hard time if it is not a ladder game... and there is something about the system console too....


33520)
Variants: "Unrated, Hard time"
Started: 2017.11.29, Ended: 2017.12.10
Participants: dlwillson (S), dragon76n (N)
Winner: dragon76n

1) dragon76n: Homeworld B1 Y2 G3

2) dlwillson: H B2 Y3 G3

3) dragon76n: B G1 Dragon76n
	dlwillson: GLHF

4) dlwillson: Build G1 Dlwillson
	dragon76n: Glhf

5) dragon76n: Trade G1 Y1 Dragon76n

6) dlwillson: Trade G1 Y1 Dlwillson

7) dragon76n: Build G1 Dragon76n

8) dlwillson: Discover Y1 Dlwillson G1 Field

9) dragon76n: T G1 B1 Dragon76n

10) dlwillson: B Y1 Field

11) dragon76n: Build Y2 Dragon76n

12) dlwillson: Discover Y1 Field G3 Forest

13) dragon76n: T Y2 R2 Dragon76n

14) dlwillson: Build G1 Dlwillson

15) dragon76n: M R2 Dragon76n Forest

16) dlwillson: D Y1 Forest G1 Mossy

17) dragon76n: B B1 Dragon76n

	dlwillson: Sorry for timing out on you!
	dragon76n: It's ok. I know that life can get extremely busy unexpectedly. Maybe next time. 


33258)
Variants: "Unrated, Hard time"
Started: 2017.11.30, Ended: 2017.12.11
Participants: wil (S), AlexKM (N)
Winner: wil

1) AlexKM: Homeworld Y1 B2 G3
	AlexKM: Hi!

2) wil: H B3 Y2 G3
	AlexKM: This is my first game online so I'm sorry if I don't manage to synchronise too well! Do you mind telling me what the policy is on how often to move and such?

3) AlexKM: Build G1 Alexkm
	wil: Whenever you can..every
Few days at a minimum... But if I get on and see you've moved I'll move
	wil: Have fun

4) wil: B G1 Wil
	AlexKM: Oh okay, I'll have time to move several times a day, so no worries :)

5) AlexKM: Trade G1 Y1 Alexkm

6) wil: Trade G1 Y1 Wil

7) AlexKM: Build Y2 Alexkm

8) wil: Build Y2 Wil

9) AlexKM: Trade Y2 G2 Alexkm
	wil: ya know about catastrophes??

10) wil: T Y2 R2 Wil
	AlexKM: Of course, of course. I'm a bit rusty, but I've played some of this irl

11) AlexKM: Build Y2 Alexkm
	wil: Just checkin

12) wil: B Y2 Wil

13) AlexKM: Discover Y1 Alexkm B3 Sigma

14) wil: D Y1 Wil G1 G1

15) AlexKM: Sacrifice Y2 Alexkm
Move Y1 Sigma Alexkm
Discover Y1 Alexkm Y3 Praise_it

16) wil: B Y2 Wil

	AlexKM: Sorry, I don't think this is for me, I don't really enjoy playing a single game over a long period of time...
	wil: No worries..  


33525)
Variants: "Hard time"
Started: 2017.12.1, Ended: 2017.12.20
Participants: bhorner (S), SilentTitan (N)
Winner: bhorner

1) SilentTitan: Homeworld B1 R2 G3

2) bhorner: Homeworld B2 R1 G3

3) SilentTitan: Build G1 Silenttitan

4) bhorner: Build G1 Bhorner

5) SilentTitan: Trade G1 Y1 Silenttitan

6) bhorner: T G1 Y1 Bhorner

7) SilentTitan: Build G1 Silenttitan

8) bhorner: B G1 Bhorner

9) SilentTitan: Trade G1 B1 Silenttitan

10) bhorner: B G1 Bhorner

11) SilentTitan: Build B1 Silenttitan

12) bhorner: T G1 R1 Bhorner

13) SilentTitan: Discover B1 Silenttitan Y3 Sol
	bhorner: Woops, thought I already had a blue.

14) bhorner: B R1 Bhorner

15) SilentTitan: Build B2 Silenttitan

16) bhorner: M R1 Bhorner Sol

17) SilentTitan: Sacrifice B1 Sol
Trade B2 Y2 Silenttitan

18) bhorner: Build R2 Bhorner



33534)
Variants: "Unrated"
Started: 2017.12.4, Ended: 2017.12.11
Participants: smokeytroll42 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 G3 Y3

2) smokeytroll42: Homeworld B3 R1 G3

3) Felix: Build Y1 Felix

4) smokeytroll42: Build G1 Smokeytroll42

5) Felix: Trade Y1 R1 Felix

6) smokeytroll42: Trade G1 Y1 Smokeytroll42

7) Felix: Build R1 Felix

8) smokeytroll42: Build Y1 Smokeytroll42

9) Felix: Discover R1 Felix G1 Out

10) smokeytroll42: Build G1 Smokeytroll42

11) Felix: Build R2 Felix

12) smokeytroll42: Build G1 Smokeytroll42

13) Felix: Trade R2 G2 Felix

14) smokeytroll42: Discover G1 Smokeytroll42 B2 Garden

15) Felix: Discover G2 Felix B1 Opus

16) smokeytroll42: Build G2 Garden

17) Felix: Build G2 Opus

18) smokeytroll42: Build G3 Smokeytroll42

19) Felix: Trade G2 Y2 Opus

20) smokeytroll42: Trade G3 R3 Smokeytroll42

21) Felix: Build G2 Opus

22) smokeytroll42: Trade G2 Y2 Garden

23) Felix: Move G2 Opus Garden

24) smokeytroll42: Move R3 Smokeytroll42 Garden

25) Felix: Build G2 Garden

26) smokeytroll42: Attack G2N Garden

27) Felix: Build G3 Opus

28) smokeytroll42: Sacrifice Y2 Garden
Move G2 Garden Opus
Move G1 Garden Opus
Catastrophe Opus G

29) Felix: Sacrifice G2 Garden
Build Y1 Felix
Build Y2 Opus

30) smokeytroll42: Move Y1 Smokeytroll42 Garden
	Felix: Nice move!
	smokeytroll42: Thanks!

31) Felix: Trade Y2 G2 Opus

32) smokeytroll42: Move R3 Garden Opus

33) Felix: Sacrifice Y2 Opus
Move G2 Opus Garden
Move R1 Out Garden

34) smokeytroll42: Move Y1 Garden Opus

35) Felix: Build R2 Garden

36) smokeytroll42: Move G3 Smokeytroll42 Garden

37) Felix: Sacrifice Y1 Felix
Move G2 Garden Smokeytroll42

38) smokeytroll42: Sacrifice Y1 Opus
Move G3 Garden Smokeytroll42

39) Felix: Build G1 Smokeytroll42
Catastrophe Smokeytroll42 Green

	smokeytroll42: Again, good game!
	Felix: Likewise! You might have been able to recover from that, but it would have been an uphill struggle. Good game!
	smokeytroll42: Huh, I don’t see how other than building ships faster than you can take them. 


33535)
Variants: "Unrated"
Started: 2017.12.6, Ended: 2018.1.22
Participants: smokeytroll42 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld G3 B2 Y3

2) smokeytroll42: Homeworld B2 R1 G3

3) Babamots: Build Y1 Babamots

4) smokeytroll42: Build G1 Smokeytroll42

5) Babamots: Build Y1 Babamots

6) smokeytroll42: Build G1 Smokeytroll42

7) Babamots: Discover Y1 Babamots Y1 Iconia

8) smokeytroll42: Trade G3 Y3 Smokeytroll42
	Babamots: I discovered a y1 to open up y2 for myself and prevent you from getting yellow ships for an extra turn or two.
	smokeytroll42: So I could keep building up at the Homeworld or, trade my g3 to Y3 so I can expand.
	Babamots: Yeah, you can trade your g3 for y3 and then build yellow after that. I hadn't really thought about that.

9) Babamots: Build Y2 Babamots

10) smokeytroll42: Discover G1 Smokeytroll42 G3 Corrino

11) Babamots: Trade Y2 G2 Babamots

12) smokeytroll42: Build G1 Smokeytroll42

13) Babamots: Discover G2 Babamots B1 Ferenginar

14) smokeytroll42: Discover G1 Smokeytroll42 Y3 Ix

15) Babamots: Build Y2 Babamots

16) smokeytroll42: Build G2 Ix

17) Babamots: Trade Y1 R1 Babamots

18) smokeytroll42: Trade G1 R1 Smokeytroll42

19) Babamots: Build R2 Babamots

20) smokeytroll42: Build G1 Ix

21) Babamots: Move Y2 Babamots Ferenginar

22) smokeytroll42: Move G1 Ix Smokeytroll42
	Babamots: I would be pretty happy to cause a green catastrophe on Ix if you let me.

23) Babamots: Build R2 Babamots

24) smokeytroll42: Build R2 Smokeytroll42

25) Babamots: Move R2 Babamots Ferenginar

26) smokeytroll42: Move R2 Smokeytroll42 Corrino

27) Babamots: Sacrifice G2 Ferenginar
Build R3 Ferenginar
Build R3 Babamots

28) smokeytroll42: Build R3 Corrino

29) Babamots: Move R3 Ferenginar Ix

30) smokeytroll42: Move G2 Ix Iconia

31) Babamots: Attack G1S Ix

32) smokeytroll42: Sacrifice R1 Smokeytroll42
Attack Y1N Iconia

33) Babamots: Build G2 Ix

34) smokeytroll42: Build Y1 Iconia

35) Babamots: Sacrifice G2 Ix
Build Y2 Ferenginar
Build Y2 Babamots

36) smokeytroll42: Move Y1 Iconia Corrino
	Babamots: I would like to cause a yellow catastrophe in Iconia if you let me.

37) Babamots: Move R3 Babamots Iconia

38) smokeytroll42: Move R3 Corrino Ferenginar

39) Babamots: Sacrifice Y2 Ferenginar
Move Y2 Ferenginar Ix
Discover R2 Ferenginar G3 Kronos
	Babamots: Good move.
	smokeytroll42: Thank you!

40) smokeytroll42: Sacrifice Y1 Iconia
Move R3 Ferenginar Kronos

41) Babamots: Sacrifice R2 Kronos
Attack G2S Iconia
Pass

42) smokeytroll42: Discover G1 Corrino Y2 Caladan

43) Babamots: Discover G2 Iconia B3 Wadi

44) smokeytroll42: Build Y1 Smokeytroll42
	Draw5PlayAll: Caladan?
Corrine?
	smokeytroll42: From Frank Herbert’s Dune series.
	smokeytroll42: From Frank Herbert’s Dune series.

45) Babamots: Build G2 Wadi

46) smokeytroll42: Build G2 Caladan

47) Babamots: Discover Y2 Babamots R1 Remus

48) smokeytroll42: Build R2 Corrino

49) Babamots: Move R3 Iconia Corrino

50) smokeytroll42: Sacrifice Y1 Corrino
Move R2 Corrino Caladan

51) Babamots: Attack R2S Corrino

52) smokeytroll42: Move Y1 Smokeytroll42 Kronos

53) Babamots: Move R3 Ix Caladan

54) smokeytroll42: Move R2 Caladan Kronos
	Babamots: The lesson of the game might be that it can be easy for your opponent to gobble up your fleet if you don't have a large enough ship at each system.
	smokeytroll42: Yeah, it’s hard to get the right momentum for building up a fleet.

55) Babamots: Sacrifice R2 Corrino
Attack G2S Caladan
Attack G1S Caladan

56) smokeytroll42: Build Y1 Kronos

57) Babamots: Sacrifice G2 Wadi
Build G2 Caladan
Build R2 Corrino

58) smokeytroll42: Sacrifice Y1 Kronos
Move R3 Kronos Remus
	Babamots: My next planned move is to green catastrophe on Kronos by sacrificing my y3 at home. I would lose more than you, but since I have a material advantage, it's probably worth it.

You should probably move your r3 out of Kronos. You could move it to Remus for a quick little threat. I'll want to take a turn to get my y2 to safety, and then you could sacrifice a y1 to move your r3 to Ix.

59) Babamots: Move Y2 Remus Corrino

	smokeytroll42: Good game! I'm sorry for the long delay, but I've just been busy with life!


33367)
Variants: "Hard time"
Started: 2017.12.8, Ended: 2017.12.19
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B2 R1 G3

2) wil: H Y3 B1 G3

3) Trydnt: Build G1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: T G1 R1 Wil

7) Trydnt: Build G1 Trydnt

8) wil: Build R1 Wil

9) Trydnt: Trade G1 Y1 Trydnt

10) wil: Discover R1 Wil Y2 Y2

11) Trydnt: Build B1 Trydnt

12) wil: Build R2 Wil

13) Trydnt: Discover B1 Trydnt R3 R3
	wil: As long as I counted correctly

14) wil: Discover R2 Wil B2 B2

15) Trydnt: Sacrifice G3 Trydnt
Build B2 R3
Build B3 Trydnt
Build Y1 Trydnt

16) wil: S G3 Wil
B R2 B2
B R2 Y2
B R3 Wil
	wil: Lol, I wasn't thinking, I gave you that!

17) Trydnt: Trade B3 G3 Trydnt

18) wil: T R3 G3 Wil

19) Trydnt: Sacrifice G3 Trydnt
Build B3 Trydnt
Build B3 R3
Build Y1 Trydnt

20) wil: Sacrifice G3 Wil
Build R3 Wil
Build R3 Y2
Pass

21) Trydnt: Move Y1 Trydnt R3
	wil: I don't think this is gonna work...but I am committed to seeing how it plays out.


22) wil: Discover R3 Y2 B3 B3

23) Trydnt: Trade Y1 G1 Trydnt

24) wil: Pass

25) Trydnt: Build G1 Trydnt
	wil: omg, this is ludicrous but I got it! I think!
	wil: no,  that doesn't work

26) wil: D R1 Y2 Y3 Y3

27) Trydnt: Move G1 Trydnt R3

28) wil: Trade R2 Y2 B2

29) Trydnt: Build Y1 R3

30) wil: T R1 G1 Wil

31) Trydnt: Discover B2 R3 R2 R2

32) wil: B R1 Wil

33) Trydnt: Move Y1 R3 R2

34) wil: Build G2 Wil

35) Trydnt: Trade B3 G3 Trydnt

36) wil: Trade R3 B3 B3

37) Trydnt: Trade G3 R3 Trydnt

38) wil: Move R1 Y3 Trydnt

39) Trydnt: Discover R3 Trydnt Y3 Y3

40) wil: Sacrifice R3 Wil
Attack G1 Trydnt
Attack B1 Trydnt
Attack Y1 Trydnt

	wil: the red worked out...hmmmm


33517)
Variants: "Unrated"
Started: 2017.12.10, Ended: 2018.2.23
Participants: Trydnt (S), dragon76n (N)
Winner: Trydnt

1) dragon76n: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B3 Y2 G3

3) dragon76n: Build G1 Dragon76n
	dragon76n: Hello, good luck and have fun. :)

4) Trydnt: Build G1 Trydnt
	Trydnt: likewise my draconic friend

5) dragon76n: T G1 Y1 Dragon76n

6) Trydnt: Trade G1 Y1 Trydnt

7) dragon76n: Build Y2 Dragon76n

8) Trydnt: Build Y2 Trydnt

9) dragon76n: Discover Y2 Dragon76n G3 Grethr

10) Trydnt: Discover Y2 Trydnt G1 G1

11) dragon76n: Build Y3 Grethr

12) Trydnt: Build Y3 G1

13) dragon76n: T Y1 R1 Dragon76n

14) Trydnt: Trade Y1 R1 Trydnt

15) dragon76n: Build G1 Dragon76n

16) Trydnt: Discover Y2 G1 B3 B3

17) dragon76n: T G1 B1 Dragon76n

18) Trydnt: Build G1 Trydnt

19) dragon76n: B B1 Dragon76n

20) Trydnt: Trade G1 B1 Trydnt

21) dragon76n: M B1 Dragon76n Grethr

22) Trydnt: Move B1 Trydnt G1

23) dragon76n: Build B2 Grethr

24) Trydnt: Build B2 G1

25) dragon76n: Trade B1 R1 Grethr

26) Trydnt: Trade B2 R2 G1

27) dragon76n: Build R2 Dragon76n

28) Trydnt: Build Y1 G1

29) dragon76n: D R2 Dragon76n Y3 Yelthr

30) Trydnt: Build G1 Trydnt

31) dragon76n: Build G1 Dragon76n

32) Trydnt: Move G1 Trydnt G1

33) dragon76n: M G1 Dragon76n Yelthr

34) Trydnt: Build G2 Trydnt

35) dragon76n: B G2 Dragon76n

36) Trydnt: Move G1 G1 B3

37) dragon76n: S G3 Dragon76n
B G2 Yelthr
B G3 Dragon76n
B B1 Grethr

38) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y1 B3
Build B2 G1

39) dragon76n: Sacrifice G3 Dragon76n
Build G3 Dragon76n
Build R2 Dragon76n
Build R3 Yelthr

40) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 Trydnt
Build R3 G1

41) dragon76n: Sacrifice Y2 Grethr
Move R2 Yelthr G1
Move R1 Grethr G1
Catastrophe G1 Red

42) Trydnt: Build Y2 B3

43) dragon76n: Sacrifice Y3 Grethr
Move B2 Grethr G1
Discover R3 Yelthr R1 Redone
Move R3 Redone B3

44) Trydnt: Build Y3 G1

45) dragon76n: Sacrifice R2 Dragon76n
Attack Y2 B3
Attack Y2 B3

46) Trydnt: Move Y1 G1 B3
Catastrophe B3 Y

47) dragon76n: S G3 Dragon76n
B G3 Dragon76n
B R1 B3
B B3 Grethr

48) Trydnt: Sacrifice R1 Trydnt
Attack B2 G1

49) dragon76n: S B3 Grethr
T R1 Y1 B3
T G1 R1 Yelthr
T G2 Y2 Dragon76n

50) Trydnt: Trade B2 R2 G1

51) dragon76n: Attack G1 B3

52) Trydnt: Move Y3 G1 Grethr

53) dragon76n: Trade B1 Y1 Grethr

54) Trydnt: Build Y2 G1

55) dragon76n: Move Y2 Dragon76n Yelthr

56) Trydnt: Sacrifice R2 G1
Attack Y1 Grethr
Pass

57) dragon76n: Move G1 B3 G1

58) Trydnt: Sacrifice Y2 G1
Discover G2 Trydnt G1 Gee1
Discover B1 G1 G2 G2

59) dragon76n: Sacrifice G1 G1
Build Y2 B3

60) Trydnt: Build G1 Trydnt

61) dragon76n: Move R3 B3 Gee1

62) Trydnt: Build R1 Trydnt

63) dragon76n: Attack G2 Gee1

64) Trydnt: Move R1 Trydnt G1

65) dragon76n: Move G2 Yelthr Dragon76n

66) Trydnt: Build R2 G1

67) dragon76n: Build R2 Gee1

68) Trydnt: Move R1 G1 Grethr

69) dragon76n: S G3 Dragon76n
B G3 Dragon76n
B R2 Dragon76n
B R3 Yelthr

70) Trydnt: Move B2 G1 Grethr

71) dragon76n: Move B1 Dragon76n Yelthr

72) Trydnt: Build B1 Grethr

73) dragon76n: Sacrifice G3 Dragon76n
Build G3 Dragon76n
Build B2 Yelthr
Build B3 Yelthr

74) Trydnt: Sacrifice Y1 Grethr
Move B1 G2 Yelthr
Catastrophe Yelthr B

75) dragon76n: Sacrifice G3 Dragon76n
Build G2 Gee1
Build G3 Dragon76n
Build Y1 B3

76) Trydnt: Move G1 Trydnt Gee1
Catastrophe Gee1 G

77) dragon76n: Trade Y1 B1 B3

78) Trydnt: Build Y1 Grethr

79) dragon76n: Discover B1 B3 G1 Greone

80) Trydnt: Move R3 Trydnt Greone

81) dragon76n: Trade B1 G1 Greone

82) Trydnt: Attack G1 Greone

83) dragon76n: Trade Y2 G2 B3

84) Trydnt: Build Y2 G1

85) dragon76n: Move Y2 Yelthr G1

86) Trydnt: Discover Y2 G1 R2 R2

87) dragon76n: Move R3 Yelthr R2

88) Trydnt: Sacrifice Y2 R2
Move R3 Greone B3
Move G1 Greone Yelthr

89) dragon76n: Sacrifice R2 Dragon76n
Attack G1 Yelthr
Attack R2 G1

90) Trydnt: Attack G2 B3

91) dragon76n: Move Y1 B3 R2

92) Trydnt: Sacrifice G2 B3
Build R2 B3
Build R3 Grethr

93) dragon76n: Discover R2 G1 B2 Blutwo

94) Trydnt: Sacrifice R1 Grethr
Attack Y2 G1

95) dragon76n: S G2 Dragon76n
B Y2 R2
B G1 Dragon76n

96) Trydnt: Sacrifice Y2 G1
Move R2 B3 R2
Move R3 B3 R2
Catastrophe R2 R

97) dragon76n: Build G2 Yelthr

98) Trydnt: Build Y1 Grethr

99) dragon76n: Trade R2 G2 Blutwo

100) Trydnt: Move R3 Grethr Blutwo

101) dragon76n: Sacrifice G2 Blutwo
Build G2 Dragon76n
Build G2 Yelthr

102) Trydnt: Build Y2 G1

103) dragon76n: T G1 B1 Dragon76n

104) Trydnt: Sacrifice Y3 G1
Move B1 Grethr Dragon76n
Move Y1 Grethr Dragon76n
Move Y3 Grethr Dragon76n

105) dragon76n: Attack Y3 Dragon76n

106) Trydnt: Sacrifice Y2 G1
Move B2 Grethr Dragon76n
Move Y1 Grethr Dragon76n
Catastrophe Dragon76n B
Catastrophe Dragon76n Y



33544)
Variants: "Hard time"
Started: 2017.12.11, Ended: 2018.1.5
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B2 R2 G3 *
	wil: And he has made it thru the gauntlet to the top of the ladder!
	wil: have fun!
	Draw5PlayAll: Huh?

2) wil: Homeworld Y1 B1 G3 *

3) Draw5PlayAll: Build G1 Draw5playall
	wil: great time to try something different!

4) wil: Build G1 Wil

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) wil: Trade G1 B1 Wil

7) Draw5PlayAll: Build Y1 Draw5playall

8) wil: Build B1 Wil

9) Draw5PlayAll: Build Y2 Draw5playall

10) wil: Discover B1 Wil Y3 Y3

11) Draw5PlayAll: Discover Y1 Draw5playall G1 G1

12) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

13) Draw5PlayAll: Discover Y1 Draw5playall G3 G3

14) wil: Discover B2 Y3 G1 Gwon

15) Draw5PlayAll: Build Y2 G1

16) wil: S B2 Y3
T B2 Y2 Gwon
T B3 G3 Wil

17) Draw5PlayAll: Build G1 Draw5playall

18) wil: Build Y3 Gwon

19) Draw5PlayAll: Build Y3 Draw5playall

20) wil: D Y2 Gwon B3 B3

21) Draw5PlayAll: Discover Y2 Draw5playall B3 B3'

22) wil: Sacrifice G3 Wil
Build B2 Y3
Build B2 Y3
Build B3 Wil

23) Draw5PlayAll: Build G2 Draw5playall

24) wil: Sacrifice B2 Y3
Trade B2 R2 Y3
Trade B3 G3 Wil

25) Draw5PlayAll: Move G2 Draw5playall B3'

26) wil: Sacrifice G3 Wil
Build B2 Y3
Build B2 Y3
Build B3 Wil

27) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 B3'
Build G2 B3'
Build G3 Draw5playall

28) wil: M B2 Y3 Gwon

29) Draw5PlayAll: Sacrifice G2 B3'
Build G2 Draw5playall
Build G3 B3'
	Draw5PlayAll: My turn to grab all the 2-pointers.

30) wil: M B2 Y3 G1

31) Draw5PlayAll: Sacrifice Y1 G1
Discover Y2 G1 R3 R3

32) wil: M B2 Gwon B3'

33) Draw5PlayAll: Sacrifice Y2 B3'
Discover G3 B3' R1 Ntvwbp
Move G2 B3' Ntvwbp

34) wil: M Y3 Gwon R3

35) Draw5PlayAll: Move Y2 R3 Ntvwbp

36) wil: T B1 G1 Y3

37) Draw5PlayAll: Trade G2 R2 Draw5playall
	Draw5PlayAll: Stands for "No Tresspassing Violators Will Be Prosecuted". Undo because I wanted to go to an R2 but decided not to.

38) wil: Build G2 Y3

39) Draw5PlayAll: Move R2 Draw5playall G3

40) wil: Sacrifice G2 Y3
Build Y1 B3
Build Y2 R3

41) Draw5PlayAll: Build R1 G3

42) wil: B G2 Y3

43) Draw5PlayAll: Sacrifice R1 G3
Attack B2 B3'

44) wil: Sacrifice B1 Wil
Trade G1 B1 Y3

45) Draw5PlayAll: Sacrifice Y1 G3
Move B2 B3' Ntvwbp

46) wil: B B1 G1

47) Draw5PlayAll: Sacrifice G2 B3'
Build Y1 Ntvwbp
Build B3 Ntvwbp

48) wil: Build R1 Y3
	wil: all of these games are archived...need to build a program to extract them and put moves on data sheet to be compared and analyzed...various openers results...players rating...frequency of various ending attacks, etc.
	wil: I like that you play different openings, all learning to me....need to play more of them.
	Draw5PlayAll: Well, you do like to learn about people [through] the way they play.

I do not use blue teleportation very often... nor the blue sac in general... at May because I have a hard time getting that many blue ships (there are usually 3-5 in star systems anyway in late game).

49) Draw5PlayAll: Sacrifice Y2 Ntvwbp
Move B3 Ntvwbp G3
Move B3 G3 Wil

50) wil: Sacrifice Y2 R3
Move Y3 R3 Wil
Move B1 Y3 Wil
Catastrophe Wil B

51) Draw5PlayAll: Sacrifice G2 Ntvwbp

Build Y2 Ntvwbp
Build Y2 Draw5playall

52) wil: S B1 G1
T Y3 B3 Wil

53) Draw5PlayAll: Move Y1 Ntvwbp G3

54) wil: Build G1 Y3
	wil: nice move...was contemplating do I change to R3 or continue with my plan...you proved what I should have been doing!

55) Draw5PlayAll: Discover G1 Draw5playall B1 Donteventry

56) wil: M G1 Y3 Wil

57) Draw5PlayAll: Build Y3 G3

58) wil: B G2 Wil
	wil: I do believe you have this game...
	Draw5PlayAll: "have" as in "North can force a win from this position"?

59) Draw5PlayAll: Discover Y2 Ntvwbp G2 G2

60) wil: M R1 Y3 Wil
	wil: Just goin thru the motions over here waiting for the shoe to drop!

61) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move Y3 G3 Wil
Move Y1 G3 Wil
Move Y2 G2 Wil
Catastrophe Wil Yellow
	wil: You toying with me?

	Draw5PlayAll: Yeah, but my faster plan may have fallen into a bluebird trap, so I adjusted.

Good game.
	wil: All you had to do was move one yellow in... and then the next move follow up with the other two...  gg
	Draw5PlayAll: Oh, our home systems were connected. Completely missed that.


33552)
Started: 2017.12.11, Ended: 2017.12.12
Participants: inattentive (S), Schmoopy (N)
Winner: Schmoopy

1) Schmoopy: Homeworld R3 B1 G3

2) inattentive: Homeworld Y2 B3 G3
	inattentive: homeworld y2, b1, g3

3) Schmoopy: Build G1 Schmoopy

4) inattentive: Build G1 Inattentive

5) Schmoopy: Trade G1 B1 Schmoopy

6) inattentive: Trade G1 R1 Inattentive

7) Schmoopy: Build B1 Schmoopy

8) inattentive: Build G1 Inattentive

9) Schmoopy: Build G1 Schmoopy

10) inattentive: Trade G1 Y1 Inattentive

11) Schmoopy: Trade G1 Y1 Schmoopy

12) inattentive: Build R1 Inattentive

13) Schmoopy: Discover B1 Schmoopy R2 Stelaris

14) inattentive: Build G1 Inattentive

15) Schmoopy: Build G1 Schmoopy

16) inattentive: Discover G3 Inattentive R1 Poo

17) Schmoopy: Move G3 Schmoopy Stelaris

18) inattentive: Build R2 Inattentive

19) Schmoopy: Build B2 Stelaris

20) inattentive: Trade R2 B2 Inattentive

21) Schmoopy: Trade B2 R2 Stelaris

22) inattentive: Build R2 Inattentive

23) Schmoopy: Build R3 Stelaris

24) inattentive: Move R1 Inattentive Poo

25) Schmoopy: Sacrifice Y1 Schmoopy
Discover R3 Stelaris Y1 Pee

26) inattentive: Sacrifice Y1 Inattentive
Move G3 Poo Inattentive

27) Schmoopy: Trade B1 Y1 Schmoopy
	inattentive: move g3 poo inattentive

28) inattentive: Trade R2 Y2 Inattentive

29) Schmoopy: Build Y1 Schmoopy

30) inattentive: Build R2 Inattentive

31) Schmoopy: Move Y1 Schmoopy Stelaris

32) inattentive: Move R1 Inattentive Poo

33) Schmoopy: Move R2 Stelaris Pee

34) inattentive: Build R3 Inattentive

35) Schmoopy: Build Y2 Schmoopy

36) inattentive: Move R2 Inattentive Pee

37) Schmoopy: Build Y3 Schmoopy

38) inattentive: Sacrifice Y2 Inattentive
Move R1 Poo Stelaris
Move R1 Stelaris Pee
Catastrophe Pee R

39) Schmoopy: Discover Y2 Schmoopy G2 Neat

40) inattentive: Trade G1 Y1 Inattentive

41) Schmoopy: Sacrifice G3 Stelaris
Build Y2 Stelaris
Build Y3 Neat
Build Y3 Stelaris

42) inattentive: Move Y1 Inattentive Poo
	inattentive: You stoop

43) Schmoopy: Move Y3 Stelaris Poo

44) inattentive: Discover Y1 Poo G2 Comegetmejerry

45) Schmoopy: Attack R1 Poo

46) inattentive: Build R1 Inattentive

47) Schmoopy: Build G1 Schmoopy

48) inattentive: Move R1 Inattentive Poo

49) Schmoopy: Move R1 Poo Neat

50) inattentive: Build R2 Inattentive

51) Schmoopy: Attack R1 Poo

52) inattentive: Discover Y1 Comegetmejerry G1 Suckitbitch

53) Schmoopy: Build G2 Schmoopy

54) inattentive: Move R3 Inattentive Suckitbitch

55) Schmoopy: Move Y2 Stelaris Poo

56) inattentive: Build G2 Inattentive

57) Schmoopy: Move G1 Schmoopy Neat

58) inattentive: Move R3 Suckitbitch Stelaris

59) Schmoopy: Move B1 Stelaris Schmoopy

60) inattentive: Attack Y1 Stelaris

61) Schmoopy: Build G3 Schmoopy

62) inattentive: Build G3 Inattentive

63) Schmoopy: Sacrifice Y2 Neat
Move G1 Neat Poo
Move G1 Poo Inattentive
Catastrophe Inattentive Green

64) inattentive: Build Y2 Suckitbitch

65) Schmoopy: Move Y3 Poo Inattentive

66) inattentive: Trade R2 G2 Inattentive

67) Schmoopy: Trade G3 R3 Schmoopy



33492)
Variants: "Unrated"
Started: 2017.12.13, Ended: 2018.1.2
Participants: wil (S), Ottia (N)
Winner: wil

1) Ottia: Homeworld G3 B2 Y3

2) wil: H Y2 B1 G3

3) Ottia: Build Y1 Ottia

4) wil: B G1 Wil

5) Ottia: Build Y1 Ottia

6) wil: B G1 Wil
	Ottia: Merry Christmas, wil!

7) Ottia: Trade Y1 G1 Ottia
	wil: Same to you!  I am down at my mothers awaiting my kids and nieces to arrive...everybody grown and no little ones running around.

8) wil: T G1 B1 Wil

9) Ottia: Build G1 Ottia

10) wil: B B1 Wil

	Ottia: I'm really sorry for resigning like this but at the moment I don't have the time to concentrate and play properly. I will very happily challenge you again when I have.

I hope otherwise you have enjoyed Christmas and started the year in style!
	wil: no worries...whenever you have time is fine..


33558)
Started: 2017.12.13, Ended: 2017.12.13
Participants: Schmoopy (S), inattentive (N)
Winner: Schmoopy

1) inattentive: Homeworld G3 B2 Y3

2) Schmoopy: Homeworld G2 B1 R3
	inattentive: You cant do y3 loser, cause i did


3) inattentive: Build Y1 Inattentive
	inattentive: build y1 inattentive

4) Schmoopy: Build R1 Schmoopy

5) inattentive: Trade Y1 R1 Inattentive

6) Schmoopy: Trade R1 Y1 Schmoopy

7) inattentive: Build Y1 Inattentive

8) Schmoopy: Build R1 Schmoopy

9) inattentive: Trade Y1 B1 Inattentive

10) Schmoopy: Build Y1 Schmoopy

11) inattentive: Discover B1 Inattentive G1 Potatoe
	Schmoopy: This game is weird. Usually we both have a bunch of green ships in the beginning

12) Schmoopy: Trade Y1 G1 Schmoopy

13) inattentive: Build Y1 Inattentive

14) Schmoopy: Discover G1 Schmoopy B3 Shabby

15) inattentive: Move Y1 Inattentive Potatoe

16) Schmoopy: Move R1 Schmoopy Shabby

17) inattentive: Move R1 Inattentive Potatoe

18) Schmoopy: Move R3 Schmoopy Shabby

19) inattentive: Build Y1 Inattentive

20) Schmoopy: Build Y2 Schmoopy

21) inattentive: Build Y2 Potatoe

22) Schmoopy: Move Y1 Schmoopy Shabby

23) inattentive: Trade Y1 R1 Potatoe

24) Schmoopy: Move R3 Shabby Potatoe

25) inattentive: Trade Y2 R2 Potatoe
Catastrophe Potatoe R

26) Schmoopy: Build Y1 Shabby

27) inattentive: Move Y1 Inattentive Potatoe

28) Schmoopy: Build Y2 Schmoopy

29) inattentive: Build B1 Potatoe

30) Schmoopy: Build G1 Shabby

31) inattentive: Build B2 Potatoe

32) Schmoopy: Build G2 Shabby

33) inattentive: Trade B2 R2 Potatoe

34) Schmoopy: Discover G1 Shabby R1 Haribo

35) inattentive: Build B2 Potatoe

36) Schmoopy: Build G2 Haribo

37) inattentive: Trade Y3 G3 Inattentive

38) Schmoopy: Build G3 Haribo

39) inattentive: Move R2 Potatoe Inattentive

40) Schmoopy: Sacrifice Y2 Schmoopy
Move G2 Haribo Inattentive
Move G1 Haribo Inattentive
Catastrophe Inattentive Green

41) inattentive: Trade B2 G2 Potatoe

42) Schmoopy: Sacrifice G2 Shabby
Build R1 Shabby
Build R2 Shabby

43) inattentive: Move G2 Potatoe Inattentive

44) Schmoopy: Sacrifice Y1 Shabby
Move G3 Haribo Inattentive

45) inattentive: Sacrifice Y1 Potatoe
Move R2 Inattentive Shabby
Catastrophe Shabby R

46) Schmoopy: Trade G1 R1 Shabby

47) inattentive: Build G1 Inattentive

48) Schmoopy: Move R1 Shabby Inattentive

49) inattentive: Trade B1 Y1 Potatoe

50) Schmoopy: Attack G2 Inattentive

51) inattentive: Move Y1 Potatoe Inattentive

52) Schmoopy: Attack G1 Inattentive

53) inattentive: Trade Y1 G1 Inattentive

54) Schmoopy: Attack G1 Inattentive

	Draw5PlayAll: catastrophe inattentive green


33549)
Variants: "Unrated"
Started: 2017.12.13, Ended: 2017.12.21
Participants: smokeytroll42 (S), Schmoopy (N)
Winner: Schmoopy

1) Schmoopy: Homeworld R3 B2 G3
	Schmoopy: Hey, I'm a newer player, too. I've played about 4 games with a coworker after we taught ourselves how to play

2) smokeytroll42: Homeworld G1 B2 Y3
	smokeytroll42: Hello! Sounds good. I have three or four games under my belt as well.

3) Schmoopy: Build G1 Schmoopy

4) smokeytroll42: Build Y1 Smokeytroll42
	Schmoopy: Awesome. I’m loving this game. Where’d you hear about it?
	smokeytroll42: Oh, probably the Pyramid Acrade promo videos. Very neat theme and mechanics. I love that there’s no gameboard.

5) Schmoopy: Build G1 Schmoopy

6) smokeytroll42: Build Y1 Smokeytroll42

7) Schmoopy: Trade G3 Y3 Schmoopy

8) smokeytroll42: Trade Y3 G3 Smokeytroll42

9) Schmoopy: Discover G1 Schmoopy B1 Patrick

10) smokeytroll42: Build G2 Smokeytroll42

11) Schmoopy: Sacrifice Y3 Schmoopy
Discover G1 Patrick R3 Fingerscrossed
Move G1 Fingerscrossed Smokeytroll42
Pass
Catastrophe Smokeytroll42 Green

12) smokeytroll42: Trade Y1 G1 Smokeytroll42
	smokeytroll42: Ouch, I didnt even know that move was possible. But I guess I shouldn’t have assumed that you can’t discover planets with a sacrifice.
	smokeytroll42: Good move

13) Schmoopy: Build G1 Schmoopy

14) smokeytroll42: Build G2 Smokeytroll42
	Schmoopy: Thanks man. Yeah sacrifice doesn’t have any special rules I don’t think. It just gives you a number of turns using the ship’s power

15) Schmoopy: Trade G1 Y1 Schmoopy

16) smokeytroll42: Discover G2 Smokeytroll42 B1 Dune

17) Schmoopy: Build Y1 Schmoopy

18) smokeytroll42: Build Y2 Smokeytroll42

19) Schmoopy: Discover Y1 Schmoopy R1 Zaphod

20) smokeytroll42: Trade G2 R2 Dune

21) Schmoopy: Build Y2 Schmoopy

22) smokeytroll42: Build G1 Smokeytroll42

23) Schmoopy: Trade Y1 B1 Schmoopy

24) smokeytroll42: Move G1 Smokeytroll42 Dune

25) Schmoopy: Build G2 Schmoopy

26) smokeytroll42: Build G2 Smokeytroll42

27) Schmoopy: Build B1 Schmoopy

28) smokeytroll42: Trade R2 B2 Dune

29) Schmoopy: Move B1 Schmoopy Zaphod

30) smokeytroll42: Sacrifice Y1 Smokeytroll42
Discover B2 Dune G3 Coral

31) Schmoopy: Move G1 Schmoopy Zaphod

32) smokeytroll42: Build B3 Coral

33) Schmoopy: Build B3 Zaphod

34) smokeytroll42: Build Y1 Smokeytroll42

35) Schmoopy: Trade B1 R1 Schmoopy

36) smokeytroll42: Trade B3 R3 Coral

37) Schmoopy: Move B3 Zaphod Smokeytroll42

38) smokeytroll42: Sacrifice Y2 Smokeytroll42
Move R3 Coral Dune
Move R3 Dune Schmoopy

39) Schmoopy: Sacrifice G2 Schmoopy
Build B1 Smokeytroll42
Build B3 Smokeytroll42
Catastrophe Smokeytroll42 Blue
	Schmoopy: gg!
	smokeytroll42: Gg, I didn’t see that catastrophe coming. Well played. Rematch?
	Schmoopy: Let’s do it!



33542)
Variants: "Unrated"
Started: 2017.12.14, Ended: 2018.1.12
Participants: Trydnt (S), Draw5PlayAll (N)
Winner: Trydnt

1) Draw5PlayAll: Pass

2) Trydnt: Homeworld B2 Y1 G3

3) Draw5PlayAll: Homeworld B3 R1 G3

4) Trydnt: Build G1 Trydnt

5) Draw5PlayAll: Build G1 Draw5playall

6) Trydnt: Trade G1 R1 Trydnt

7) Draw5PlayAll: Trade G1 R1 Draw5playall

8) Trydnt: Build R2 Trydnt

9) Draw5PlayAll: Build R2 Draw5playall

10) Trydnt: Build R2 Trydnt

11) Draw5PlayAll: Trade R2 Y2 Draw5playall

12) Trydnt: Trade R2 Y2 Trydnt

13) Draw5PlayAll: Build R2 Draw5playall

14) Trydnt: Build R2 Trydnt

15) Draw5PlayAll: Trade R2 B2 Draw5playall

16) Trydnt: Discover R2 Trydnt Y3 Y3

17) Draw5PlayAll: Discover R1 Draw5playall G2 G2

18) Trydnt: Move R2 Y3 G2

19) Draw5PlayAll: Build B1 Draw5playall

20) Trydnt: Trade R1 B1 Trydnt

21) Draw5PlayAll: Trade B2 R2 Draw5playall

22) Trydnt: Attack R1 G2

23) Draw5PlayAll: Discover R2 Draw5playall G2 G2b

24) Trydnt: Discover Y2 Trydnt G3 G3

25) Draw5PlayAll: Move B1 Draw5playall G2

26) Trydnt: Attack B1 G2

27) Draw5PlayAll: Build G1 Draw5playall

28) Trydnt: Build Y1 G3

29) Draw5PlayAll: Trade G1 B1 Draw5playall

30) Trydnt: Build B2 G2

31) Draw5PlayAll: Move B1 Draw5playall G2b

32) Trydnt: Move Y1 G3 G2

33) Draw5PlayAll: Build G1 Draw5playall

34) Trydnt: Move B1 G2 G3

35) Draw5PlayAll: Build Y1 Draw5playall

36) Trydnt: Build Y2 G2

37) Draw5PlayAll: Move Y1 Draw5playall G2b

38) Trydnt: Discover R2 G2 Y3 Y3

39) Draw5PlayAll: Build Y3 G2b

40) Trydnt: Build Y3 G3

41) Draw5PlayAll: Move G1 Draw5playall G2b

42) Trydnt: Build G1 Trydnt

43) Draw5PlayAll: Discover G1 G2b R3 R3

44) Trydnt: Move R2 Trydnt R3

45) Draw5PlayAll: Sacrifice G1 R3
Build G1 Draw5playall

46) Trydnt: Build B2 G2

47) Draw5PlayAll: Build B3 G2b

48) Trydnt: Build B3 G3

49) Draw5PlayAll: Move G1 Draw5playall G2

50) Trydnt: Attack G1 G2

51) Draw5PlayAll: Build G1 Draw5playall

52) Trydnt: Sacrifice Y3 G3
Move G1 G2 Draw5playall
Move B2 G2 Draw5playall
Move B2 G2 Draw5playall

53) Draw5PlayAll: Attack G1 Draw5playall

54) Trydnt: Sacrifice Y2 G2
Move B1 G3 G2
Move B1 G2 Draw5playall
Catastrophe Draw5playall B

55) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover G1 Draw5playall Y3 Base
Move B3 G2b R3

56) Trydnt: Sacrifice Y2 G3
Move R2 R3 Draw5playall
Move R1 G2 Draw5playall

57) Draw5PlayAll: Sacrifice Y3 G2b
Move G1 Draw5playall Base
Move G1 Base Trydnt
Move G1 Base Trydnt
Catastrophe Trydnt Green

58) Trydnt: Move R2 Y3 Draw5playall
Catastrophe Draw5playall R



33470)
Variants: "Hard time"
Started: 2017.12.14, Ended: 2017.12.26
Participants: Schmoopy (S), Felix (N)
Winner: Schmoopy

1) Felix: Homeworld R2 B3 G3
	Schmoopy: Hey! I got my pyramids about a month ago, I've played maybe 5 games of homeworlds and love it.

2) Schmoopy: Homeworld G2 B1 Y3
	Felix: Hello! Glad you picked up the game and are loving it. I hope you have fun! 

3) Felix: Build G1 Felix

4) Schmoopy: Build Y1 Schmoopy

5) Felix: Trade G1 Y1 Felix

6) Schmoopy: Trade Y1 B1 Schmoopy

7) Felix: Build Y1 Felix

8) Schmoopy: Build B1 Schmoopy

9) Felix: Discover Y1 Felix G1 Out

10) Schmoopy: Discover B1 Schmoopy Y3 About



33479)
Variants: "Hard time"
Started: 2017.12.20, Ended: 2017.12.28
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B2 Y1 G3

2) wil: Homeworld B3 G2 Y3

3) Trydnt: Build G1 Trydnt

4) wil: Build Y1 Wil
	wil: lol...tried to give away the start eh?
	Trydnt: thought about it but realized it was a cop-out so I took it back

5) Trydnt: Trade G1 Y1 Trydnt

6) wil: Build Y2 Wil

7) Trydnt: Build Y2 Trydnt

8) wil: T Y2 G2 Wil

9) Trydnt: Discover Y1 Trydnt G3 G3

10) wil: D Y1 Wil G1 Y3

11) Trydnt: Build Y2 G3

12) wil: S G2 Wil
B Y2 Y3
B Y3 Wil

13) Trydnt: Discover Y1 G3 G1 G1

14) wil: D Y1 Y3 Y3 B1
	wil: Idk if that was the best move... Almost went the other way

15) Trydnt: Build G1 Trydnt
	Trydnt: nice move with the star name
	wil: Lol I do that when someone uses my vernacular
	wil: Down with family for the holydays

16) wil: Discover Y2 Y3 B3 G2
	Trydnt: haha I started using your venacular for that exact reason, so I could at some point turn it around on you. but I check the star every time just to be safe

17) Trydnt: Discover Y2 G3 G1 Gee1

18) wil: M Y3 Wil Gee1

19) Trydnt: Trade G1 R1 Trydnt

20) wil: T Y2 G2 G2

21) Trydnt: Build Y2 G1
	wil: Whew, don't move that coin!

22) wil: B G1 G2

23) Trydnt: Move Y1 G1 Wil

24) wil: T Y3 R3 Wil

25) Trydnt: Build Y3 G1

26) wil: A Y1 Wil

27) Trydnt: Move R1 Trydnt B1
	wil: Merry Christmas
	Trydnt: haha nice big red tree there
merry christmas!

28) wil: M Y1 B1 G1

29) Trydnt: Move Y3 G1 G2

30) wil: B R1 Wil

31) Trydnt: Sacrifice R1 B1
Attack G2 G2

32) wil: B Y3 G1

33) Trydnt: Trade G2 R2 G2

34) wil: M R1 Wil G1

35) Trydnt: Sacrifice R2 G2
Attack R1 G1
Attack Y1 G1
	wil: How are the slopes?
	Trydnt: shit
	Trydnt: there isn't nearly enough snow


36) wil: Build R1 Wil

37) Trydnt: Sacrifice Y2 G1
Move R1 G1 Wil
Move Y1 G1 Wil

38) wil: Attack R1 Wil
	wil: friends hit kirkwood and squaw and said lots of trails open, and either groomed or packed powder last weekend.

39) Trydnt: Trade Y1 R1 Wil
Catastrophe Wil R
	Trydnt: yeah we ski alpine meadows and our passes work at Squaw but it's hella crowded with tourists right now

40) wil: Move Y3 G1 Wil

41) Trydnt: Discover Y2 Trydnt G3 G3
	wil: You do think of moves that I would have never considered.

42) wil: Trade Y1 R1 Wil

43) Trydnt: Build Y1 Gee1

44) wil: Move Y3 Gee1 G2

45) Trydnt: Discover Y3 G2 R1 R1

46) wil: B G1 G2

47) Trydnt: Build G2 Trydnt

48) wil: Sacrifice Y3 G2
Move G1 G2 Trydnt
Move G1 G2 Trydnt
Pass
Catastrophe Trydnt G

	wil: I did not think you'd fall for that!
	Trydnt: wow


33591)
Variants: "Unrated"
Started: 2017.12.21, Ended: 2018.1.22
Participants: smokeytroll42 (S), Schmoopy (N)
Winner: smokeytroll42

1) Schmoopy: Homeworld B3 Y1 G3

2) smokeytroll42: Homeworld B2 R1 G3

3) Schmoopy: Build G1 Schmoopy

4) smokeytroll42: Build G1 Smokeytroll42

5) Schmoopy: Trade G1 Y1 Schmoopy

6) smokeytroll42: Trade G3 Y3 Smokeytroll42

7) Schmoopy: Build G1 Schmoopy

8) smokeytroll42: Build G1 Smokeytroll42

9) Schmoopy: Build G2 Schmoopy

10) smokeytroll42: Build G2 Smokeytroll42

11) Schmoopy: Discover G2 Schmoopy B2 Ding

12) smokeytroll42: Discover G1 Smokeytroll42 G3 Yaviniv

13) Schmoopy: Move Y1 Schmoopy Ding

14) smokeytroll42: Discover G1 Smokeytroll42 G3 Hoth

15) Schmoopy: Build G2 Ding

16) smokeytroll42: Build Y1 Smokeytroll42

17) Schmoopy: Build Y2 Ding

18) smokeytroll42: Move Y1 Smokeytroll42 Yaviniv

19) Schmoopy: Discover Y2 Ding B3 Dong

20) smokeytroll42: Build Y2 Smokeytroll42

21) Schmoopy: Sacrifice G3 Schmoopy
Build G3 Schmoopy
Build Y2 Ding
Build Y3 Dong

22) smokeytroll42: Build Y3 Yaviniv

	smokeytroll42: Yo, you still want to play?


33618)
Variants: "Unrated"
Started: 2017.12.25, Ended: 2017.12.28
Participants: Schmoopy (S), Krom (N)
Winner: Krom

1) Krom: Homeworld R3 B1 G3

2) Schmoopy: Homeworld B2 Y1 G3

3) Krom: Build G1 Krom

4) Schmoopy: Build G1 Schmoopy

5) Krom: Trade G1 B1 Krom

6) Schmoopy: Trade G1 Y1 Schmoopy

7) Krom: Build G1 Krom

8) Schmoopy: Build Y1 Schmoopy

9) Krom: Build G1 Krom

10) Schmoopy: Build G1 Schmoopy

11) Krom: Build B1 Krom

12) Schmoopy: Build G2 Schmoopy

13) Krom: Trade B1 R1 Krom

14) Schmoopy: Trade G1 B1 Schmoopy

15) Krom: Build B2 Krom

16) Schmoopy: Discover B1 Schmoopy G3 Meme

17) Krom: Trade B2 Y2 Krom

18) Schmoopy: Build B2 Meme

19) Krom: Discover B1 Krom G2 Dingus

20) Schmoopy: Trade B1 R1 Meme

21) Krom: Build Y2 Krom

22) Schmoopy: Move Y1 Schmoopy Meme

23) Krom: Move Y2 Krom Dingus

24) Schmoopy: Build R1 Meme

25) Krom: Sacrifice G3 Krom
Build Y2 Krom
Build Y3 Krom
Build Y3 Dingus

26) Schmoopy: Build Y3 Meme

27) Krom: Move R1 Krom Dingus

28) Schmoopy: Sacrifice Y3 Meme
Move Y1 Meme Dingus
Move Y1 Dingus Krom
Pass
Catastrophe Krom Yellow

29) Krom: Move Y2 Dingus Krom

30) Schmoopy: Move Y1 Schmoopy Meme

31) Krom: Build R2 Dingus

32) Schmoopy: Move R1 Meme Schmoopy

33) Krom: Move R1 Dingus Krom

34) Schmoopy: Build R2 Schmoopy

35) Krom: Build B1 Dingus

36) Schmoopy: Discover R2 Schmoopy G3 Crusty

37) Krom: Move Y3 Dingus Crusty

38) Schmoopy: Sacrifice G2 Schmoopy
Build R2 Schmoopy
Build R3 Meme

39) Krom: Build R3 Dingus

40) Schmoopy: Discover R3 Meme Y2 Neato

41) Krom: Sacrifice Y2 Krom
Move R3 Dingus Meme
Move R2 Dingus Krom

42) Schmoopy: Move R1 Meme Neato

43) Krom: Sacrifice Y3 Crusty
Move R2 Krom Neato
Move R1 Krom Neato
Move B1 Dingus Krom
Catastrophe Neato R

44) Schmoopy: Discover B2 Meme Y2 Neato2

45) Krom: Attack Y1 Meme

46) Schmoopy: Trade R2 B2 Schmoopy

47) Krom: Move R3 Meme Neato2

48) Schmoopy: Sacrifice G3 Schmoopy
Build B3 Neato2
Build B3 Neato2
Build B3 Schmoopy

49) Krom: Sacrifice Y1 Meme
Move B1 Krom Neato2
Catastrophe Neato2 B

50) Schmoopy: Trade B3 G3 Schmoopy

51) Krom: Move R3 Neato2 Crusty

52) Schmoopy: Move R1 Schmoopy Crusty

53) Krom: Trade G1 Y1 Krom

54) Schmoopy: Build R1 Crusty
Catastrophe Crusty Red

55) Krom: Build Y1 Krom

56) Schmoopy: Build G1 Schmoopy

57) Krom: Build Y2 Krom

58) Schmoopy: Trade B2 Y2 Schmoopy

59) Krom: Move Y1 Krom Dingus

60) Schmoopy: Discover Y2 Schmoopy G3 Crambo

61) Krom: Discover Y1 Dingus G3 Brigfacks

62) Schmoopy: Discover G3 Schmoopy R3 Peace

63) Krom: Build Y2 Brigfacks

64) Schmoopy: Sacrifice Y2 Crambo
Move G3 Peace Dingus
Move G3 Dingus Krom

65) Krom: Move Y2 Brigfacks Schmoopy

66) Schmoopy: Attack Y2 Krom

67) Krom: Sacrifice B1 Dingus
Trade Y2 R2 Schmoopy

68) Schmoopy: Sacrifice G3 Krom
Build Y2 Krom
Build Y2 Krom
Build G1 Schmoopy
Catastrophe Krom Yellow

69) Krom: Attack G1 Schmoopy



33540)
Variants: "Hard time"
Started: 2017.12.26, Ended: 2018.2.10
Participants: wil (S), orangeblood (N)
Winner: wil

1) orangeblood: Homeworld B1 Y3 G3

2) wil: H B2 Y1 G3
	orangeblood: Hi, enjoy!

3) orangeblood: Build G1 Orangeblood
	wil: If you insist...have fun and good luck!
	wil: and thanx for the game!

4) wil: B G1 Wil

5) orangeblood: Trade G1 Y1 Orangeblood

6) wil: Trade G1 B1 Wil

7) orangeblood: Build G1 Orangeblood

8) wil: Build B1 Wil

9) orangeblood: Discover Y1 Orangeblood G2 Cloudatlas

10) wil: Discover B1 Wil Y3 Y3

11) orangeblood: Build G1 Orangeblood

12) wil: Build B2 Wil

13) orangeblood: Trade G3 B3 Orangeblood

14) wil: Discover B2 Wil Y3 Why3

15) orangeblood: Build Y1 Cloudatlas
	wil: Been playing a while?
	orangeblood: Just counted... 7 times. You?

16) wil: S G3 Wil
B B2 Y3
B B3 Why3
B B3 Wil
	wil: Hundreds

17) orangeblood: Build Y2 Cloudatlas

18) wil: Trade B3 G3 Why3
	orangeblood: Nice! It's a great game.

19) orangeblood: Build B3 Orangeblood

20) wil: T B2 Y2 Y3
	orangeblood: Wow... just got back from a business trip and saw I had 3 hours to move! 

21) orangeblood: Discover B3 Orangeblood R2 Nachtmusik

22) wil: T B3 G3 Wil

23) orangeblood: Move G1 Orangeblood Nachtmusik

24) wil: Trade B1 R1 Wil

25) orangeblood: Trade G1 R1 Orangeblood

26) wil: B B1 Why3

27) orangeblood: Move Y1 Cloudatlas Orangeblood

28) wil: T B2 Y2 Why3

29) orangeblood: Trade Y1 G1 Orangeblood

30) wil: B B2 Why3

31) orangeblood: Discover Y2 Cloudatlas G3 Valkyries

32) wil: T B1 R1 Why3

33) orangeblood: Build R2 Orangeblood

34) wil: Build R2 Why3

35) orangeblood: Move R2 Orangeblood Cloudatlas

36) wil: Move R1 Why3 Cloudatlas

37) orangeblood: Build R3 Orangeblood

38) wil: Build R3 Why3

39) orangeblood: Discover R1 Orangeblood G2 Ebbetsfield

40) wil: B R3 Wil

41) orangeblood: Attack R1 Cloudatlas

42) wil: M R2 Why3 Ebbetsfield

43) orangeblood: Build Y1 Cloudatlas

44) wil: Build G1 Why3

	orangeblood: Apologies for timing out. You had me anyway, congrats.
	wil: meh, I hate that...challenge me on the non timed game...if you wish to play.


33626)
Variants: "Hard time"
Started: 2017.12.27, Ended: 2018.1.6
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B2 Y1 G3

2) wil: H Y3 B1 G3

3) Trydnt: Build G1 Trydnt
	wil: Got into a few pyramid throw downs with the fam?

4) wil: Build G1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: Trade G1 B1 Wil

7) Trydnt: Build B2 Trydnt

8) wil: Build B2 Wil

9) Trydnt: Discover B1 Trydnt G3 G3
	wil: interesting...

10) wil: Trade B2 Y2 Wil

11) Trydnt: Trade B2 Y2 Trydnt

12) wil: Build Y1 Wil

13) Trydnt: Build B2 G3
	wil: Ok...I thought you had the jump!  You s g3 and build the blues...if I s y2 for b catastrophe I would be left with 1 g3 and you would be left with b3 n b2...  

14) wil: Discover B1 Wil G2 G2

15) Trydnt: Trade B1 Y1 G3
	wil: 13 degree wind chill here this afternoon...

16) wil: M Y1 Wil G2

17) Trydnt: Build G1 Trydnt

18) wil: Discover Y2 Wil G2 Gtoo

19) Trydnt: Build Y2 G3

20) wil: B Y3 G2

21) Trydnt: Move Y1 G3 Gtoo

22) wil: Build Y3 Gtoo

23) Trydnt: Move Y2 G3 Gtoo
Catastrophe Gtoo Y

24) wil: Trade Y1 R1 G2
	wil: all of these games are archived...need to build a program to extract them and put moves on data sheet to be compared and analyzed...various openers results...players rating...frequency of various ending attacks, etc.

25) Trydnt: Trade G1 R1 Trydnt
	Trydnt: I can actually do that analysis. I use a statistical programming language called STATA to do that stuff but it's really just writing a few lines of code and it spits out answers. How useful those answers are depends on how good I am at asking the right questions.

26) wil: M Y3 G2 G3

27) Trydnt: Build B1 G3
	wil: oughta give it a shot...we might find some good insights.
	wil: If it can be set up as public access there are some other geek/nerds on the hw fb page that would probably help input and analyze as well.


28) wil: Build B2 G2

29) Trydnt: Discover Y2 Trydnt B3 B3

30) wil: B B3 G2

31) Trydnt: Sacrifice Y2 B3
Discover B1 G3 G2 G22
Discover B2 G3 G2 G222

32) wil: T B1 Y1 G2

33) Trydnt: Build G1 Trydnt

34) wil: B G1 Wil

35) Trydnt: Trade B2 Y2 G222

36) wil: M B2 G2 G3

37) Trydnt: Build B1 G22

38) wil: S G3 Wil
B G1 Wil
B G3 Wil
B B2 G3

39) Trydnt: Discover G1 Trydnt B3 B3

40) wil: Discover G1 Wil Y2 Y2



33627)
Variants: "Hard time"
Started: 2017.12.27, Ended: 2017.12.30
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

	dlwillson: Dude! What happened?
	Felix: Holidays. Sorry man! I also just changed jobs and got a new phone that wasn't set up for notifications.
	dlwillson: NP. Let's play again! How's the new job?
	Felix: Good! I've started doing software development, working from home, learning on the job. It's been quite a learning experience.


33543)
Variants: "Unrated, Hard time"
Started: 2017.12.27, Ended: 2017.12.29
Participants: dlwillson (S), RedMerlin (N)
Winner: RedMerlin

1) RedMerlin: Homeworld B1 Y2 G3

2) dlwillson: H B3 Y1 G3

3) RedMerlin: Build G1 Redmerlin

	dlwillson: Sorry! I'm timing out in a lot of games lately. Want to try again?
	Draw5PlayAll: Stop playing hard time in anything except the ladder then.


33581)
Variants: "Hard time"
Started: 2017.12.28, Ended: 2018.1.11
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) wil: H Y3 B1 G3

3) Trydnt: Build G1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: Trade G1 B1 Wil

7) Trydnt: Build B2 Trydnt

8) wil: B B2 Wil

9) Trydnt: Trade B1 Y1 Trydnt

10) wil: B G1 Wil

11) Trydnt: Build G1 Trydnt

12) wil: T G1 Y1 Wil

13) Trydnt: Build G1 Trydnt

14) wil: B G1 Wil

15) Trydnt: Trade G1 R1 Trydnt

16) wil: T G1 R1 Wil

17) Trydnt: Discover R1 Trydnt G3 G3

18) wil: Build R2 Wil

19) Trydnt: Build R2 G3

20) wil: Discover R2 Wil Y2 Y2

21) Trydnt: Move B2 Trydnt G3

22) wil: Build R2 Wil

23) Trydnt: Trade R2 Y2 G3

24) wil: B G1 Wil

25) Trydnt: Sacrifice Y2 G3
Move B2 G3 Y2
Move B2 Y2 Wil
Catastrophe Wil B

26) wil: Discover R1 Wil Y2 Why2

27) Trydnt: Build Y1 Trydnt

28) wil: D R1 Why2 R3 R3
	wil: You've got this one!

29) Trydnt: Move Y1 Trydnt Wil
	wil: You'll need to make a few real bad moves to help me out

30) wil: D Y1 Wil G2 G2

31) Trydnt: Sacrifice G3 Trydnt
Build Y2 Wil
Build Y2 Wil
Build Y3 Wil
Catastrophe Wil Y



33569)
Variants: "Unrated"
Started: 2018.1.2, Ended: 2018.1.30
Participants: Remneb (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y2 B1 G3
	ts52: Sorry for the delay in accepting. Wanted to be sure I had time to give this game the attention it deserves. Have a good game!

2) Remneb: Homeworld Y3 B2 G3

3) ts52: Build G1 Ts52
	Remneb: Have a good game too. 
	Remneb: For the Great Homeworld Tournament round 2.


4) Remneb: Build G1 Remneb

5) ts52: Discover G1 Ts52 B3 Gonzo

6) Remneb: Trade G1 R1 Remneb

7) ts52: Build G1 Ts52

8) Remneb: Build R1 Remneb

9) ts52: Trade G1 R1 Ts52

10) Remneb: Trade R1 Y1 Remneb

11) ts52: Build G1 Ts52

12) Remneb: Discover Y1 Remneb G1 Hort

13) ts52: Build G2 Gonzo

14) Remneb: Build G2 Remneb

15) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Gonzo

16) Remneb: Move G2 Remneb Hort

17) ts52: Trade G1 Y1 Gonzo

18) Remneb: Build G1 Remneb

19) ts52: Trade G1 B1 Ts52

20) Remneb: Trade G1 B1 Remneb

21) ts52: Build B2 Ts52

22) Remneb: Build B2 Remneb

23) ts52: Discover B2 Ts52 Y3 Bigbird

24) Remneb: Discover B2 Remneb G1 Aries

25) ts52: Sacrifice G2 Gonzo
Build B3 Bigbird
Build B3 Ts52

26) Remneb: Trade B2 Y2 Aries

27) ts52: Discover B3 Ts52 Y3 Zoe

28) Remneb: Build B2 Remneb

29) ts52: Trade B2 G2 Bigbird

30) Remneb: Trade B2 Y2 Remneb

31) ts52: Sacrifice G3 Ts52
Build G1 Gonzo
Build G3 Ts52
Build B2 Zoe

32) Remneb: Discover B1 Remneb Y1 Borg

33) ts52: Trade B3 R3 Zoe

34) Remneb: Build R1 Remneb

35) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Bigbird
Build B3 Zoe

36) Remneb: Build R2 Remneb

37) ts52: Move R3 Zoe Borg

38) Remneb: Move R2 Remneb Hort

39) ts52: Attack B1 Borg

40) Remneb: Move R1 Remneb Aries

41) ts52: Trade B3 R3 Bigbird

42) Remneb: Build R2 Aries

43) ts52: Sacrifice G3 Gonzo
Build B3 Borg
Build R2 Borg
Build R3 Ts52

44) Remneb: Build G3 Remneb

45) ts52: Move R3 Bigbird Aries

46) Remneb: Move R1 Remneb Aries
Catastrophe Aries R

47) ts52: Move B3 Borg Remneb

48) Remneb: Sacrifice R2 Hort
Attack B3 Remneb
Pass

49) ts52: Move R3 Borg Remneb

50) Remneb: Sacrifice Y2 Aries
Move G2 Hort Remneb
Move Y1 Hort Remneb

51) ts52: Sacrifice R3 Ts52
Attack G3S Remneb
Attack G3S Remneb
Attack B3S Remneb

52) Remneb: Trade Y1 G1 Remneb
Catastrophe Remneb G

53) ts52: Attack Y2S Remneb
	Remneb: There's nothing i can do to save my Homeworld anyway.
	Remneb: Trade y1 g1 remneb
catastrophe remneb g

	Remneb: Thanks for the game and good luck for the tournament !
	ts52: Good game. Thanks! Happy to play again any time.


33519)
Started: 2018.1.2, Ended: 2018.1.16
Participants: Trydnt (S), MobyNostromo (N)
Winner: Trydnt

1) MobyNostromo: H G1 B2 Y3

2) Trydnt: Homeworld Y3 G1 B3
	MobyNostromo: Have a good game!

3) MobyNostromo: B Y1 Mobynostromo

4) Trydnt: Build B1 Trydnt

5) MobyNostromo: B Y1 Mobynostromo

6) Trydnt: Trade B1 Y1 Trydnt

7) MobyNostromo: D Y1 Mobynostromo G3 Terra3

8) Trydnt: Build Y2 Trydnt



33533)
Variants: "Unrated"
Started: 2018.1.2, Ended: 2018.1.24
Participants: Felix (S), Trydnt (N)
Winner: Felix

1) Trydnt: Homeworld R3 G2 Y3 *

2) Felix: H R1 B3 G3 Felix

3) Trydnt: Build Y1 Trydnt

4) Felix: Build G1 Felix
	Felix: Hello again. Good luck and have fun!

5) Trydnt: Build Y1 Trydnt
	Trydnt: and to you fellow starship captain

6) Felix: Trade G1 Y1 Felix

7) Trydnt: Discover Y1 Trydnt G1 G1

8) Felix: B Y2 Felix

9) Trydnt: Build Y2 G1

10) Felix: Discover Y1 Felix B2 Out

11) Trydnt: Move Y2 G1 Out

12) Felix: Move Y1 Out G1

13) Trydnt: Trade Y2 R2 Out

14) Felix: Build Y2 Felix

15) Trydnt: Sacrifice Y1 Trydnt
Move R2 Out G1

16) Felix: B Y1 G1

17) Trydnt: Build R1 G1

18) Felix: Discover Y2 Felix B2 Out

19) Trydnt: Discover Y1 G1 G2 G2

20) Felix: Sacrifice G3 Felix
Build Y2 G1
Build Y3 Felix
Build Y3 Out

21) Trydnt: Attack Y2 G1

22) Felix: Trade Y2 G2 Felix

23) Trydnt: Attack Y1 G1

24) Felix: Build Y2 G1
Catastrophe G1 Yellow

25) Trydnt: Build Y1 G2

26) Felix: Trade Y3 G3 Out

27) Trydnt: Move Y1 G2 G1

28) Felix: Build Y1 Out

29) Trydnt: Build Y2 G2

30) Felix: Trade Y2 R2 Out

31) Trydnt: Build Y2 G2

32) Felix: Build Y2 Out

33) Trydnt: Build Y3 G1

34) Felix: Discover Y1 Out G1 Roam

35) Trydnt: Discover Y2 G2 B1 B1

36) Felix: Build G1 Out



33630)
Variants: "Unrated, Hard time"
Started: 2018.1.2, Ended: 2018.1.22
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) dlwillson: Homeworld B1 R3 G3

3) Trydnt: Build G1 Trydnt

4) dlwillson: Build G1 Dlwillson

5) Trydnt: Trade G1 B1 Trydnt

6) dlwillson: T G1 B1 Dlwillson

7) Trydnt: Build G1 Trydnt

8) dlwillson: B G1 Dlwillson

9) Trydnt: Build B2 Trydnt

10) dlwillson: B B2 Dlwillson

11) Trydnt: Trade B2 Y2 Trydnt

12) dlwillson: Trade B1 Y1 Dlwillson

13) Trydnt: Build Y1 Trydnt

14) dlwillson: Trade G1 R1 Dlwillson

15) Trydnt: Trade G1 R1 Trydnt

16) dlwillson: Build R2 Dlwillson

17) Trydnt: Discover R1 Trydnt G3 G3

18) dlwillson: Discover R1 Dlwillson G2 Field

19) Trydnt: Build R2 G3

20) dlwillson: Move B2 Dlwillson Field

21) Trydnt: Move B1 Trydnt G3

22) dlwillson: Build R2 Field

23) Trydnt: Sacrifice Y1 Trydnt
Discover R1 G3 G2 G2

24) dlwillson: Trade R1 Y1 Field

25) Trydnt: Build G1 Trydnt

26) dlwillson: B G1 Dlwillson

27) Trydnt: Move G1 Trydnt G3

28) dlwillson: Move R2 Dlwillson G2

29) Trydnt: Build R1 G2

30) dlwillson: Build R3 Field

31) Trydnt: Build R3 G3

32) dlwillson: Sacrifice R2 Field
Attack R1 G2
Attack R1 G2

33) Trydnt: Trade R3 Y3 G3

34) dlwillson: T G1 B1 Dlwillson

35) Trydnt: Build R2 G3

36) dlwillson: B R3 Field

37) Trydnt: Move R2 G3 G2
Catastrophe G2 R

	dlwillson: Bah! Stupid weekends! I'll go take the hard time of my challenge now...
	dlwillson: *off


33634)
Started: 2018.1.2, Ended: 2018.1.16
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) MobyNostromo: H B1 G2 Y3

3) Trydnt: Build G1 Trydnt

4) MobyNostromo: B Y1 Mobynostromo

5) Trydnt: Trade G1 Y1 Trydnt

6) MobyNostromo: B Y1 Mobynostromo

7) Trydnt: Build Y2 Trydnt

8) MobyNostromo: D Y1 Mobynostromo G3 Emerald

9) Trydnt: Discover Y1 Trydnt G3 G3



33526)
Variants: "Unrated, Hard time"
Started: 2018.1.2, Ended: 2018.1.9
Participants: wil (S), sharkhands (N)
Winner: wil

1) sharkhands: Homeworld B1 G2 R3

2) wil: H B3 Y1 G3

3) sharkhands: Build R1 Sharkhands
	wil: Familiar with the game?

4) wil: B G1 Wil

5) sharkhands: Trade R1 Y1 Sharkhands
	sharkhands: I'm fairly new to it (have played about a dozen games irl). Working on getting better, which is why I'm playing here

6) wil: T G1 B1 Wil
	wil: great place to increase skills....challenge a bunch of folk and then you'll have a move or two to make every day...(some folks don't check in so often, or take time making their moves) the format is not the best, the star systems and ships are allover the board....  in tricky situations set up a physical game to mirror so you don't miss anything!


7) sharkhands: Build R1 Sharkhands
	sharkhands: Good point with the physical setup. And yeah, definitely plan to challenge many people!

This game is great - I'm glad there's a forum to play it (even slowly) online

8) wil: B B1 Wil

9) sharkhands: Trade R1 G1 Sharkhands
	wil: Yes this is an awesome place to learn

10) wil: D B1 Wil Y2 Y2

11) sharkhands: Build G1b Sharkhands

12) wil: B B2 Wil

13) sharkhands: Discover G1 Sharkhands R3 Antares

14) wil: D B1 Wil Y2 Why2

15) sharkhands: Build G1 Sharkhands

16) wil: Build B2 Wil

17) sharkhands: Discover G1 Sharkhands R3 Something

18) wil: D B2 Wil G2 G2
	wil: You want to play this straight heads up, or as a learning/training game, or any after the fact hints, reflections on potential moves? 
	sharkhands: Let's play it head-to-head, and then maybe do a post-mortem of my egregious mistakes :P

19) sharkhands: Build R1 Sharkhands

20) wil: S G3 Wil
B B2 Y2
B B3 Wil
B B3 G2
	wil: Perfect!    I'll get a bigger notepad

21) sharkhands: Discover G1 Sharkhands Y3 Baloo

22) wil: M B2 Y2 Antares

23) sharkhands: Build G2 Baloo
	sharkhands: Nicely done

24) wil: A G1 Antares

25) sharkhands: Build G3 Baloo

26) wil: Build G3 Antares

27) sharkhands: Discover G3 Baloo Y2 Another

28) wil: Trade B3 Y3 G2
	sharkhands: 

29) sharkhands: Build G3 Another

30) wil: Trade B2 R2 Wil

31) sharkhands: Sacrifice G3 Another
Build Y1 Sharkhands
Build Y3 Sharkhands
Build G3 Another

32) wil: Sacrifice G3 Antares
Build G3 Antares
Build B2 Y2
Build B3 Why2

33) sharkhands: Move R3 Sharkhands Baloo
	wil: I was momentarily blinded and almost made a grave error...

34) wil: Trade B2 R2 G2

35) sharkhands: Sacrifice G3 Another
Build G3 Another
Build R1 Sharkhands
Build R1 Baloo

36) wil: S G3 Antares
B G3 Antares
B B2 Antares
B R2 G2

37) sharkhands: Move R3 Baloo Another

38) wil: M R2 G2 Baloo

39) sharkhands: Attack R2 Baloo
	sharkhands: Minor problem with that first one :P

40) wil: M R2 G2 Something

41) sharkhands: Sacrifice G1 Something
Build G1 Baloo

42) wil: M B3 Why2 Baloo

43) sharkhands: Move R3 Another Baloo
	wil:  What was I thinking?

44) wil: S R2 Wil
A R3 Baloo
A G2 Baloo
	sharkhands: I wasn't sure... Thought there might have been some depending strategy. Almost didn't take it cause I was second-guessing myself so much

45) sharkhands: Move R1 Sharkhands Baloo
Catastrophe Baloo Red

46) wil: T G2 R2 Baloo
	wil: I wish I had some deep strategy....empty banks are so rare I don't even know how to play them

47) sharkhands: Move G1 Baloo Sharkhands

48) wil: Attack G1 Baloo

49) sharkhands: Build R1 Sharkhands
	sharkhands: Oh balls, completely forgot about sacrifices. That might be about the game for me

50) wil: S Y3 G2
M G3 Antares Sharkhands
M B3 Baloo Sharkhands
M B1 Y2 Baloo
	wil: You've been sacrificing g3s

	sharkhands: And that'll do it right there. Good game!


33561)
Started: 2018.1.2, Ended: 2018.3.6
Participants: sharkhands (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y3 B2 G3 Ts52

2) sharkhands: Homeworld Y1 B2 G3
	ts52: Have a good game!
	sharkhands: You too!

3) ts52: Build G1 Ts52

4) sharkhands: Build G1 Sharkhands

5) ts52: Discover G1 Ts52 B1 Grover

6) sharkhands: Trade G1 B1 Sharkhands

7) ts52: Build G1 Ts52

8) sharkhands: Discover B1 Sharkhands G3 G3

9) ts52: Trade G1 B1 Ts52

10) sharkhands: Build G1 Sharkhands

11) ts52: Build G1 Grover

12) sharkhands: Build G2 Sharkhands

13) ts52: Build G2 Ts52

14) sharkhands: Discover G1 Sharkhands B3 B3

15) ts52: Trade G1 Y1 Grover

16) sharkhands: Trade G2 B2 Sharkhands

17) ts52: Build Y1 Grover

18) sharkhands: Build B3 Sharkhands

19) ts52: Build B3 Ts52

20) sharkhands: Build G1 B3

21) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Grover
Build G3 Ts52

22) sharkhands: Trade B2 Y2 Sharkhands

23) ts52: Discover B3 Ts52 R1 Elmo

24) sharkhands: Build B2 G3

25) ts52: Trade G2 R2 Grover

26) sharkhands: Trade B2 Y2 G3

27) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build B2 Elmo

28) sharkhands: Sacrifice Y2 Sharkhands
Move G1 B3 Grover
Catastrophe Grover Green
Discover B3 Sharkhands Y3 Y3

29) ts52: Sacrifice Y1 Grover
Discover B3 Elmo Y3 Bigbird

30) sharkhands: Trade G3 R3 Sharkhands

31) ts52: Move G2 Ts52 Grover

32) sharkhands: Discover B3 Y3 G1 G1

33) ts52: Move R2 Grover B3



33641)
Started: 2018.1.3, Ended: 2018.2.6
Participants: Draw5PlayAll (S), sharkhands (N)
Winner: Draw5PlayAll

1) sharkhands: Homeworld Y1 B2 G3

2) Draw5PlayAll: Homeworld B3 R1 G3

3) sharkhands: Build G1 Sharkhands
	sharkhands: Have a good game!

4) Draw5PlayAll: Build G1 Draw5playall

5) sharkhands: Trade G1 R1 Sharkhands

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) sharkhands: Build R2 Sharkhands

8) Draw5PlayAll: Build R2 Draw5playall

9) sharkhands: Discover R1 Sharkhands G3 G3

10) Draw5PlayAll: Trade R2 Y2 Draw5playall

11) sharkhands: Build R2 Sharkhands

12) Draw5PlayAll: Discover R1 Draw5playall G2 G2

13) sharkhands: Build G1 Sharkhands

14) Draw5PlayAll: Build Y1 Draw5playall

15) sharkhands: Discover G1 Sharkhands R3 R3

16) Draw5PlayAll: Move Y2 Draw5playall G2

17) sharkhands: Discover R2 Sharkhands Y3 Y3

18) Draw5PlayAll: Build G1 Draw5playall

19) sharkhands: Sacrifice G3 Sharkhands
Build R2 G3
Build R3 Sharkhands
Build R3 Y3

20) Draw5PlayAll: Build Y1 G2

21) sharkhands: Discover R2 Sharkhands B3 B3

22) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2

23) sharkhands: Sacrifice G1 R3
Build R3 B3

24) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Draw5playall
Build Y3 Draw5playall
Build Y3 G2

25) sharkhands: Move R2 Y3 Y2

26) Draw5PlayAll: Sacrifice G1 Y2
Pass

27) sharkhands: Move R2 Y2 Y3

28) Draw5PlayAll: Trade Y2 G2 Draw5playall

29) sharkhands: Trade R2 Y2 B3

30) Draw5PlayAll: Discover Y1 G2 G1 G1

31) sharkhands: Discover R3 Y3 Y2 Y2

32) Draw5PlayAll: Build R2 G2

33) sharkhands: Discover Y2 B3 G2 G2-1

34) Draw5PlayAll: Build G1 Draw5playall

35) sharkhands: Move Y2 G2-1 B3

36) Draw5PlayAll: Discover G1 Draw5playall B2 B2

37) sharkhands: Move R3 B3 B2

38) Draw5PlayAll: Sacrifice G1 B2
Build G1 Draw5playall

39) sharkhands: Move Y2 B3 B2

40) Draw5PlayAll: Trade G2 B2 Draw5playall

41) sharkhands: Sacrifice Y2 B2
Move R1 G3 G2
Move R2 G3 G2
Catastrophe G2 Red

42) Draw5PlayAll: Trade Y1 R1 Draw5playall

43) sharkhands: Discover R2 Y3 G2 G2-1

44) Draw5PlayAll: Move R1 Draw5playall G2



33661)
Variants: "Hard time"
Started: 2018.1.7, Ended: 2018.1.30
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Felix: Homeworld B1 Y3 G3

3) wil: B G1 Wil

4) Felix: Build G1 Felix

5) wil: T G1 Y1 Wil

6) Felix: Trade G1 B1 Felix

7) wil: B Y1 Wil

8) Felix: Build B1 Felix

9) wil: D Y1 Wil G3 G3

10) Felix: Discover B1 Felix G2 Romp

11) wil: B Y2 G3

12) Felix: Sacrifice G3 Felix
Build B2 Romp
Build B2 Romp
Build B3 Felix

13) wil: D Y2 G3 Y2 Y2

14) Felix: T B2 Y2 Romp

15) wil: Build Y3 Wil

16) Felix: Build Y3 Romp

17) wil: T Y3 B3 Wil

18) Felix: Discover B2 Romp Y3 Grump
	wil: I just had to see how that race would play out.

19) wil: M B3 Wil G3
	Felix: I'm still not quite sure...

20) Felix: Sacrifice B1 Felix
Trade Y3 R3 Romp

21) wil: T Y1 R1 Wil

22) Felix: Trade B3 G3 Felix

23) wil: B R1 Wil

24) Felix: Build R1 Romp

25) wil: M R1 Wil G3

26) Felix: Trade R3 Y3 Romp

27) wil: B R2 Wil

28) Felix: Build R2 Romp

29) wil: Build B1 G3

30) Felix: Move R1 Romp Felix

31) wil: Discover B1 G3 G2 G2

32) Felix: Sacrifice G3 Felix
Build R2 Romp
Build B2 Grump
Build R3 Felix

33) wil: Build B3 G2

34) Felix: Build B3 Romp

35) wil: Build R3 G3

36) Felix: Trade R3 G3 Felix

37) wil: Move R1 G3 G2

38) Felix: Move B2 Grump Wil

39) wil: Attack B2 Wil

40) Felix: Sacrifice Y3 Romp
Move B1 Romp Grump
Move B1 Grump Wil
Move B2 Grump Wil
Catastrophe Wil Blue
	wil: I didn't expect that that early...I thought it would be premature...but there you are!

41) wil: B R3 G2
	Felix: It's probably a mistake... but here we are!

42) Felix: Build Y1 Romp

43) wil: Build Y3 G3

44) Felix: Build R3 Felix
	wil: let us just hope!

45) wil: Trade R3 Y3 G2

46) Felix: Move R3 Felix Y2

47) wil: Discover Y2 Y2 R3 R3

48) Felix: M Y1 Romp G3

49) wil: Discover Y1 G3 G2 Gtoo

50) Felix: Move R3 Y2 R3

51) wil: B Y2 G2

52) Felix: Attack Y2 R3

53) wil: Attack Y1 G3

54) Felix: Move R3 R3 Gtoo

55) wil: Sacrifice Y3 G3
Move Y1 Gtoo Felix
Move Y2 G2 Felix
Move B1 G2 Felix
	wil: Initiate Doomsday Device...fire one!
	wil: dang..math doesn't work yet...I thought I was there..
	wil: oh heck...there is always next game...fire anyway!

56) Felix: Sacrifice R3 Gtoo
Attack Y1 Felix
Attack Y2 Felix
Attack B1 Felix

57) wil: Move B3 G2 Felix
	Felix: Nicely played nonetheless!

58) Felix: A B3 Felix

59) wil: S Y3 G2
M Y1 G3 G2
M Y1 G2 Felix
C Felix Y
M B3 G3 Felix
C Felix B
	Felix: Ooh, nice. I didn't think you could quite do that yet. I forgot about the mid-turn catastrophe.
	wil: We got her I jammed Capt. Fire number 2!
	wil: My brain hurts
	wil: Thx for the challenge!  Twas a strange game



33654)
Variants: "Hard time"
Started: 2018.1.7, Ended: 2018.2.9
Participants: Draw5PlayAll (S), dlwillson (N)
Winner: Draw5PlayAll

1) dlwillson: H Y3 B1 G3

2) Draw5PlayAll: Homeworld B1 G3 B3 *
	dlwillson: GLHF! 

3) dlwillson: Build G1 Dlwillson

4) Draw5PlayAll: Build B1 Draw5playall

5) dlwillson: T G1 R1 Dlwillson

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) dlwillson: Build R1 Dlwillson

8) Draw5PlayAll: Build B2 Draw5playall

9) dlwillson: Build R1 Dlwillson

10) Draw5PlayAll: Discover B2 Draw5playall B2 B2

11) dlwillson: Discover R1 Dlwillson Y2 Sol

12) Draw5PlayAll: Build B2 Draw5playall

13) dlwillson: Build G1 Dlwillson

14) Draw5PlayAll: Discover B2 Draw5playall G2 G2

15) dlwillson: Discover R1 Dlwillson G2 Field

16) Draw5PlayAll: Build B3 G2

17) dlwillson: S G3 Dlwillson
B R2 Dlwillson
B R2 Field
B R2 Sol

18) Draw5PlayAll: Trade B3 R3 G2

19) dlwillson: Build R3 Dlwillson

20) Draw5PlayAll: Build R3 G2

21) dlwillson: Trade R3 Y3 Dlwillson

22) Draw5PlayAll: Trade R3 G3 G2

23) dlwillson: M R2 Sol Draw5playall

24) Draw5PlayAll: Sacrifice G3 G2
Build R3 G2
Build B3 B2
Build B3 G2

25) dlwillson: Build R3 Dlwillson

26) Draw5PlayAll: Build Y1 Draw5playall

27) dlwillson: T R3 B3 Dlwillson

28) Draw5PlayAll: Move Y1 Draw5playall G2

29) dlwillson: B R3 Field

30) Draw5PlayAll: Move R3 G2 Draw5playall

31) dlwillson: M R2 Dlwillson Sol

32) Draw5PlayAll: Attack R2N Draw5playall

33) dlwillson: M B3 Dlwillson Sol

34) Draw5PlayAll: Move R2 Draw5playall B2

35) dlwillson: Sacrifice B3 Sol
Trade R3 B3 Field
Trade Y3 G3 Dlwillson
Trade R2 Y2 Field
	Draw5PlayAll: That move was suicidal.

36) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move B3 B2 Dlwillson
Move B3 G2 Dlwillson
Move R3 G2 Dlwillson

	Draw5PlayAll: I think this means something great!
	dlwillson: Yup! Good game! Well played!


33553)
Variants: "Unrated"
Started: 2018.1.8, Ended: 2018.2.9
Participants: mneme (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B1 Y2 G3

2) mneme: Homeworld G3 R1 B3

3) Babamots: Build G1 Babamots

4) mneme: Build B1 Mneme

5) Babamots: Trade G1 B1 Babamots

6) mneme: Build B2 Mneme

7) Babamots: Build B2 Babamots

8) mneme: Trade B2 Y2 Mneme

9) Babamots: Discover B2 Babamots G3 Betazed

10) mneme: Discover B1 Mneme G2 Clio

11) Babamots: Trade B1 R1 Babamots

12) mneme: Build B1 Mneme

13) Babamots: Build B2 Betazed

14) mneme: Build B2 Clio

15) Babamots: Trade B2 Y2 Betazed

16) mneme: Trade B2 R2 Clio

17) Babamots: Build B2 Betazed
	mneme: Oh, belated good luck (what there is of it) and have fun!
	Babamots: I think that the same person will make different moves depending on their mood and many other factors that have nothing to do with the game position. In that sense, there's a little luck in any game.

Good luck to you too!

18) mneme: Move Y2 Mneme Clio

19) Babamots: Discover B2 Betazed G2 Galorndon
	mneme: Not untrue, but it's an odd kind of luck.

20) mneme: Trade B1 Y1 Mneme

21) Babamots: Build B1 Galorndon

22) mneme: Build Y1 Clio

23) Babamots: Trade B2 R2 Galorndon

24) mneme: Build B2 Clio

25) Babamots: Build B2 Galorndon

26) mneme: Trade B2 G2 Clio

27) Babamots: Trade B1 G1 Galorndon

28) mneme: Sacrifice G2 Clio
Build Y1 Clio
Build Y3 Mneme

29) Babamots: Build Y3 Betazed

30) mneme: Sacrifice Y2 Clio
Move Y1 Clio Betazed
Move Y1 Clio Betazed
Catastrophe Betazed Y

31) Babamots: Build G1 Babamots

32) mneme: Build Y1 Mneme

33) Babamots: Sacrifice G3 Babamots
Build G1 Galorndon
Build G2 Babamots
Build G3 Babamots

34) mneme: Move Y3 Mneme Galorndon

35) Babamots: Discover G1 Babamots Y3 Iconia

36) mneme: Sacrifice R2 Clio
Attack R2 Galorndon
Attack B2 Galorndon

37) Babamots: Sacrifice G2 Babamots
Build G2 Galorndon
Catastrophe Galorndon G
Build G1 Iconia

38) mneme: Trade Y1 R1 Mneme

39) Babamots: Build G1 Babamots

40) mneme: Build Y1 Mneme

41) Babamots: Sacrifice G3 Babamots
Build G2 Iconia
Build G2 Babamots
Build G3 Babamots

42) mneme: Build Y1 Mneme

43) Babamots: Trade G2 Y2 Babamots

44) mneme: Build R2 Mneme

45) Babamots: Discover Y2 Babamots B3 Kronos
	mneme: Nice move; my error.  Now to see if you can take full advantage of it.

46) mneme: Trade R2 G2 Mneme
	Babamots: I'll be playing keep-away with the greens for a bit :-)

47) Babamots: Sacrifice G3 Babamots
Build Y2 Kronos
Build Y3 Kronos
Build G3 Babamots

48) mneme: Discover Y1 Mneme B2 Treasure

49) Babamots: Move Y2 Kronos Treasure
	mneme: Or not, apparently.

50) mneme: Build Y3 Mneme
	Babamots: Well, I didn't think I'd get the chance at a large. I think this is better.

51) Babamots: Move Y2 Treasure Mneme
Catastrophe Mneme Y
	mneme: maybe.  Y is strong; I shouldn't have let myself be manuvered into grouping up all the y1s; it's a weak position.


52) mneme: Build R2 Mneme

53) Babamots: Sacrifice Y3 Kronos
Move R1 Babamots Betazed
Move R1 Betazed Clio
Move R1 Clio Mneme
Catastrophe Mneme R

54) mneme: Trade G2 R2 Mneme

55) Babamots: Trade B2 R2 Betazed

56) mneme: Build B1 Mneme

57) Babamots: Discover G1 Iconia Y2 Bolarus

58) mneme: Build B2 Clio

59) Babamots: Move G1 Iconia Bolarus

	mneme: Well played.  Mate in 2.  
	Babamots: Thanks. Good game!
	mneme: Congrats!  Good game.


33636)
Variants: "Unrated, Hard time"
Started: 2018.1.10, Ended: 2018.1.29
Participants: dlwillson (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 Y3 G3

2) dlwillson: Homeworld Y3 B1 G3

3) Felix: Build G1 Felix

4) dlwillson: Build G1 Dlwillson
	Felix: I'll try not to drop out of this one :)

5) Felix: T G1 B1 Felix
	dlwillson: I timed out on a bunch of games over the holidays, too. :-)

6) dlwillson: Trade G1 B1 Dlwillson

7) Felix: Build B2 Felix

8) dlwillson: Build B2 Dlwillson

9) Felix: Discover B2 Felix G1 Out

10) dlwillson: Discover B2 Dlwillson Y2 Sol

11) Felix: Build B3 Out

12) dlwillson: S G3 Dlwillson
B B3 Sol
B B3 Dlwillson
Pass

13) Felix: Trade B3 Y3 Out

14) dlwillson: T B1 R1 Dlwillson

15) Felix: Trade B1 R1 Felix

16) dlwillson: T B3 G3 Dlwillson

17) Felix: Build B1 Out

18) dlwillson: D B2 Sol G1 Forest

19) Felix: Discover B2 Out G2 Rim

20) dlwillson: Build G1 Dlwillson

21) Felix: Build G2 Felix

22) dlwillson: T B3 G3 Sol

23) Felix: Sacrifice G2 Felix
Build B1 Out
Build B3 Rim

	dlwillson: Sorry Felix. Sometimes, I wish SDG would send reminders.
	Felix: I've been there too. Shame though! Happy to rematch any time!


33672)
Variants: "Unrated, Hard time"
Started: 2018.1.12, Ended: 2018.1.13
Participants: mi_spero (S), dlwillson (N)
Winner: mi_spero

	dlwillson: Hey, sorry about that! I usually check in every day, but I missed yesterday. Go again?
	mi_spero: Sure.


33681)
Variants: "Hard time"
Started: 2018.1.12, Ended: 2018.2.2
Participants: Trydnt (S), sharkhands (N)
Winner: Trydnt

1) sharkhands: Homeworld Y1 G2 B3

2) Trydnt: Homeworld B3 Y2 G3

3) sharkhands: Build B1 Sharkhands

4) Trydnt: Build G1 Trydnt

5) sharkhands: Discover B1 Sharkhands G3 G3

6) Trydnt: Trade G1 Y1 Trydnt

7) sharkhands: Build B1 G3

8) Trydnt: Build Y1 Trydnt

9) sharkhands: Build B1 Sharkhands

10) Trydnt: Discover Y1 Trydnt G1 G1

11) sharkhands: Trade B1 G1 G3

12) Trydnt: Build Y2 Trydnt

13) sharkhands: Build B1 G3

14) Trydnt: Build Y2 G1

15) sharkhands: Trade B3 Y3 Sharkhands

16) Trydnt: Build Y3 G1

17) sharkhands: Move Y3 Sharkhands G3

18) Trydnt: Move Y1 G1 G3

19) sharkhands: Build B2 G3

20) Trydnt: Discover Y1 Trydnt G1 Gee1

21) sharkhands: Build B2 Sharkhands
	sharkhands: That was a damn good move

22) Trydnt: Build Y3 Gee1



33685)
Variants: "Unrated, Hard time"
Started: 2018.1.13, Ended: 2018.1.20
Participants: mi_spero (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld Y3 B1 G3
	dlwillson: Thanks for trying again!


2) mi_spero: Homeworld Y1 B2 G3
	mi_spero: No problem; good luck and have fun!

3) dlwillson: Build G1 Dlwillson

4) mi_spero: Build G1 Mi_spero

5) dlwillson: T G1 Y1 Dlwillson

6) mi_spero: Trade G1 B1 Mi_spero

7) dlwillson: Build Y1 Dlwillson

8) mi_spero: Build G1 Mi_spero

9) dlwillson: Discover Y1 Dlwillson G2 Field

10) mi_spero: Build G1 Mi_spero

11) dlwillson: Build G1 Dlwillson

12) mi_spero: Trade G1 R1 Mi_spero

13) dlwillson: B Y2 Dlwillson

14) mi_spero: Trade G3 Y3 Mi_spero

15) dlwillson: B Y2 Field

16) mi_spero: Build Y2 Mi_spero

17) dlwillson: S Y2 Field
D Y1 Field Y3 Sol
M Y1 Sol Mi_spero
C Mi_spero Y

	mi_spero: Thank you for the game.
	dlwillson: It is my pleasure! Let's play again, sometime!


33555)
Variants: "Unrated"
Started: 2018.1.13, Ended: 2018.4.26
Participants: sharkhands (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) sharkhands: Homeworld G2 B3 Y3
	sharkhands: Good luck, have fun! Thanks for playing with me again

3) wil: B G1 Wil
	wil: I will play repeatedly, I enjoy this game

4) sharkhands: Build Y1 Sharkhands

5) wil: T G1 Y1 Wil

6) sharkhands: Build Y2 Sharkhands

7) wil: B Y2 Wil

8) sharkhands: Trade Y2 G2 Sharkhands

9) wil: D Y1 Wil G3 G3

10) sharkhands: Trade Y1 B1 Sharkhands

11) wil: Build Y1 Wil

12) sharkhands: Discover B1 Sharkhands G1 G1

13) wil: B Y2 G3

14) sharkhands: Build G1 Sharkhands

15) wil: D Y2 Wil B3 B3

16) sharkhands: Build B1 G1

17) wil: Sacrifice G3 Wil
Build Y2 G3
Build Y3 B3
Build Y3 Wil

18) sharkhands: Discover G2 Sharkhands B1 B1
	wil: Ready to catastrophe?
	wil: A chance to back up that move if you want
	wil: Just doeet?
	sharkhands: You're uncommonly generous - that was a legitimate oversight on my part

19) wil: T Y2 R2 B3

20) sharkhands: Build Y2 Sharkhands

21) wil: T Y1 R1 Wil

22) sharkhands: Trade B1 R1 G1

23) wil: M R2 B3 G1



33671)
Variants: "Hard time"
Started: 2018.1.13, Ended: 2018.3.17
Participants: bhorner (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 R3 G3
	bhorner: If you miss your opportunity to move, we can just start another game.  :)
	Felix: We can keep going with this one, but would there be a good time this week to knock out a large number of moves? I am in GMT-5 time (Eastern time in the United States) and my schedule is pretty flexible.

2) bhorner: Homeworld B2 R1 G3

3) Felix: Build G1 Felix
	bhorner: I think that rushing things would significantly affect my chances.  :)
	bhorner: (I'm in Pacific time U.S. which is GMT-8)

4) bhorner: B G1 Bhorner
	Felix: Well, I'm okay with drawing it out, but the instructions for the bracket games said to try to finish them within one week...
	Draw5PlayAll: One WEEK?!
	bhorner: The time controls didn't change did they?  I never saw the part about finishing w/in a week.

5) Felix: Trade G1 B1 Felix
	bhorner: I think you must be referring to the "Remaining Active" section.  It doesn't say you must complete a game in 7 days, just that you remain active, and the first way to remain active is:
"You will be considered active for the following seven days if
you are currently in at least one game that is part of the tournament"
That let's the time controls kick in.
I'm not trying to draw it out, not trying to bore you into a mistake.  I just like the game, and want to think hard, and take a couple looks at the next move before I go.  That's the thing about correspondence board games, they're probably higher quality due to the extended time per move.  Good luck to you!

	Felix: You're right. I think I just misread the rules for the bracket portion of the tournament. I have no problem drawing it out and didn't mean to rush you! :) Good luck.

6) bhorner: T G1 B1 Bhorner

7) Felix: Build B2 Felix

8) bhorner: Build B2 Bhorner

9) Felix: Trade B2 Y2 Felix

10) bhorner: Trade B2 Y2 Bhorner

11) Felix: Build B2 Felix

12) bhorner: B B2 Bhorner

13) Felix: Discover B2 Felix G2 Out

14) bhorner: D B1 Bhorner G3 Xmas

15) Felix: Build B3 Out

16) bhorner: B B3 Xmas

17) Felix: T B3 Y3 Out

18) bhorner: Trade B1 Y1 Xmas

19) Felix: Build Y1 Out

20) bhorner: Trade B3 R3 Xmas

21) Felix: Trade Y1 R1 Out

22) bhorner: Build G1 Bhorner
	bhorner: Whoah, sorry, the weekend really got away from me.  Not much time to think now, here goes!

23) Felix: Build B1 Felix

24) bhorner: M B2 Bhorner Xmas
	Felix: No prob! Weekends tend to do that.

25) Felix: Discover B1 Felix G2 Opus

26) bhorner: Build B3 Xmas

27) Felix: Build B3 Opus

28) bhorner: D G1 Bhorner B3 Puddle

29) Felix: Trade B3 Y3 Opus

30) bhorner: Discover B2 Xmas Y2 Twinkle

31) Felix: Build B3 Opus

32) bhorner: Sacrifice G1 Puddle
Build B3 Twinkle

33) Felix: Sacrifice B1 Felix
Trade B3 Y3 Opus

34) bhorner: Trade B3 R3 Twinkle

35) Felix: B G1 Felix

36) bhorner: Move B3 Xmas Twinkle

37) Felix: Trade B2 R2 Out

38) bhorner: B Y1 Xmas

39) Felix: Trade Y3 B3 Opus

40) bhorner: Discover R3 Twinkle Y3 Little

41) Felix: Discover B1 Opus B3 Inka

42) bhorner: Build G1 Bhorner

43) Felix: Trade B1 G1 Inka

44) bhorner: M G1 Bhorner Little

45) Felix: Sacrifice G3 Felix
Build G2 Inka
Build G3 Felix
Build B1 Opus

46) bhorner: D R3 Little Y1 Star

47) Felix: Move R2 Out Little

48) bhorner: Move R3 Star Inka

49) Felix: Move B3 Opus Little

50) bhorner: A G2 Inka

51) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B1 Little
Build R1 Out

52) bhorner: M G1 Little Twinkle

53) Felix: Sacrifice Y3 Opus
Move B3 Little Bhorner
Move B1 Little Bhorner
Discover B1 Opus Y3 Insertion

54) bhorner: Attack B3 Bhorner

55) Felix: S Y3 Out
M B1 Insertion Bhorner
C Bhorner Blue
M R1 Out Bhorner
M R1 Out Bhorner

56) bhorner: Attack R1 Bhorner

57) Felix: M R2 Little Bhorner
C Bhorner Red

	Felix: Good game! And good luck with your next game!
	bhorner: Thanks, same to you.  :)


33635)
Variants: "Unrated"
Started: 2018.1.15, Ended: 2018.2.23
Participants: sharkhands (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) sharkhands: Homeworld B2 Y1 G3

3) Felix: Build G1 Felix

4) sharkhands: Build G1 Sharkhands
	Felix: Have a good game!

5) Felix: Trade G1 Y1 Felix

6) sharkhands: Build G1 Sharkhands

7) Felix: Build Y1 Felix

8) sharkhands: Discover G1 Sharkhands R3 R3

9) Felix: Build Y2 Felix

10) sharkhands: Discover G1 Sharkhands R3 R3-1

11) Felix: Discover Y1 Felix G1 Out

12) sharkhands: Build G2 Sharkhands

13) Felix: Build Y2 Out



33628)
Variants: "Hard time"
Started: 2018.1.17, Ended: 2018.2.21
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y1 G3

2) wil: H Y2 B1 G3

3) Trydnt: Build G1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Trade G1 Y1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Build Y2 Trydnt

8) wil: B Y2 Wil

9) Trydnt: Discover Y1 Trydnt G2 G2

10) wil: D Y1 Wil G3 G3

11) Trydnt: Build Y3 G2

12) wil: Build Y3 G3

13) Trydnt: Move Y1 G2 G3

14) wil: Discover Y2 Wil Y3 Y3

15) Trydnt: Build G1 Trydnt
	Trydnt: smart AND annoying

16) wil: B G1 Wil

17) Trydnt: Trade Y2 R2 Trydnt

18) wil: Move Y1 G3 G2

19) Trydnt: Build Y2 G3

20) wil: Trade G1 R1 Wil

21) Trydnt: Move R2 Trydnt G2

22) wil: Move Y1 G2 Y3

23) Trydnt: Sacrifice Y2 G3
Move Y1 G3 G2
Move Y1 G2 Y3
Catastrophe Y3 Y

24) wil: Build R1 Wil

25) Trydnt: Trade G1 B1 Trydnt

26) wil: Trade R1 B1 Wil

27) Trydnt: Move B1 Trydnt G2

28) wil: Build B2 Wil

29) Trydnt: Build B2 G2

30) wil: Move B2 Wil G3

31) Trydnt: Discover B2 G2 Y3 Y3

32) wil: Move B1 Wil Y3

33) Trydnt: Build R1 G2

34) wil: S G3 Wil
B B2 G3
B B3 G3
B B3 Y3

35) Trydnt: Move Y3 G2 G3

36) wil: S B3 G3
T B2 Y2 G3
T B2 Y2 G3
C G3 Y
T B3 R3 Y3
	wil: Incredibly stupid or ingenious.    I think stupid but love experimentation 

37) Trydnt: Move B2 Y3 Wil

38) wil: Move R3 Y3 Wil

39) Trydnt: Move B2 Wil Y3

40) wil: D B1 Y3 Y2 Y2

41) Trydnt: Build B2 G2

42) wil: T R3 G3 Wil

43) Trydnt: Trade B2 Y2 G2

44) wil: B G1 Wil

45) Trydnt: Move B2 Y3 Y2

46) wil: D B1 Y2 Y3 Y3

47) Trydnt: Build G1 Trydnt

48) wil: Trade G1 Y1 Wil

49) Trydnt: Move G1 Trydnt Y2

50) wil: Discover B1 Y3 G2 B2

51) Trydnt: Build B2 Y2

52) wil: Build G1 Wil

53) Trydnt: Discover B2 Y2 Y3 Y3

54) wil: Build B2 B2
	wil: I am in sooo much trouble here...you better kick my  butt or i will be thoroughly disappointed.

55) Trydnt: Build B3 G2

56) wil: Trade B1 Y1 B2

57) Trydnt: Build Y3 G2

58) wil: Build Y3 B2

59) Trydnt: Discover Y3 G2 G3 G3

60) wil: Discover G1 Wil B3 B3

61) Trydnt: Move B2 Y2 G3

62) wil: Build G1 Wil

63) Trydnt: Sacrifice G1 Y2
Build Y2 G3

64) wil: Trade Y1 G1 B2

65) Trydnt: Sacrifice B2 Y3
Trade B3 Y3 G2
Pass

66) wil: Sacrifice G3 Wil
Build G2 B2
Build G3 Wil
Build Y1 B2

67) Trydnt: Sacrifice Y2 G3
Move Y3 G2 Trydnt
Move G3 Trydnt B2
Catastrophe B2 G

68) wil: Move Y1 Wil B3

69) Trydnt: Move R2 G2 B3

70) wil: Build G1 B3

71) Trydnt: Attack Y1 B3

72) wil: Build G2 B3

73) Trydnt: Attack G2 B3

74) wil: S G3 Wil
B G2 B3
B G3 Wil
B G3 Wil
C B3 G

75) Trydnt: Sacrifice B2 G3
Trade R2 G2 B3
Trade Y1 G1 B3

76) wil: T G3 Y3 Wil

77) Trydnt: Sacrifice Y2 G2
Move G2 B3 Wil
Move G1 B3 Wil
Catastrophe Wil G

78) wil: T Y3 G3 Wil

79) Trydnt: Build B1 G2
	wil: Nice

80) wil: Build G1 Wil

81) Trydnt: Build B2 G2

82) wil: Build G1 Wil

83) Trydnt: Build Y1 G3

84) wil: T G1 Y1 Wil

85) Trydnt: Move Y3 G3 G2

86) wil: M Y1 Wil G3

87) Trydnt: Build Y2 G3

88) wil: Build Y2 G3
Catastrophe G3 Y

89) Trydnt: Discover B2 G2 G1 G1

90) wil: Build G1 Wil

91) Trydnt: Trade Y3 G3 Trydnt

92) wil: D G1 Wil G3 G3

93) Trydnt: Build G2 Trydnt

94) wil: Sacrifice G3 Wil
Build G2 G3
Build G3 Wil
Build R1 Wil

95) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 G2
Build B2 G1

96) wil: Discover R1 Wil Y3 Y3

97) Trydnt: Discover B1 G2 Y3 Y33

98) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 Wil
Build R2 Y3

99) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B2 G2
Build B3 Y33

100) wil: Discover R1 Y3 Y2 Y2

101) Trydnt: Trade B3 R3 Y33

102) wil: Sacrifice G3 Wil
Build G3 Wil
Build R3 Y3
Build R3 Y2

103) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B3 G1
Build B3 Y33

104) wil: Trade R2 Y2 Wil

105) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y1 G2
Build Y1 G2

106) wil: Build R2 Wil

107) Trydnt: Move Y1 G2 G1

108) wil: Move R1 Wil G3

109) Trydnt: Move Y1 G1 Y33

110) wil: Move Y2 Wil G3

111) Trydnt: Move B1 G2 Y33

112) wil: Move G1 G3 Y2

113) Trydnt: Sacrifice Y1 G2
Move B3 G1 G3

114) wil: Move R3 Y3 G1

115) Trydnt: Sacrifice R3 Y33
Attack G2 G3
Attack Y2 G3
Attack R1 G3

116) wil: Build R3 G1

117) Trydnt: Sacrifice Y3 G2
Move B1 Y33 Wil
Move B1 Y33 Wil
Move Y1 Y33 Wil

118) wil: Sacrifice R3 G1
Attack Y1 Wil
Attack B2 G1
Attack B2 G1

119) Trydnt: Sacrifice B2 G2
Trade B1 Y1 Wil
Trade B3 Y3 G3

120) wil: Discover Y1 Wil B3 B3

121) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B1 Wil
Build B2 Wil

122) wil: Move G1 Y2 Trydnt

123) Trydnt: Catastrophe Wil B
Sacrifice Y3 G3
Move G2 Trydnt Wil
Move G2 G3 Wil
Move B3 Y33 Wil
Catastrophe Wil G

124) wil: Trade B2 G2 G1

125) Trydnt: Sacrifice R1 G2
Attack R2 Wil

	wil: good game!


33688)
Started: 2018.1.17, Ended: 2018.1.21
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y1 G3



33698)
Variants: "Hard time"
Started: 2018.1.19, Ended: 2018.1.30
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R2 G3 *

2) Trydnt: Homeworld B2 Y1 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 Y1 Wil

6) Trydnt: Trade G1 R1 Trydnt

7) wil: B Y1 Wil

8) Trydnt: Build R1 Trydnt

9) wil: Trade Y1 R1 Wil

10) Trydnt: Discover R1 Trydnt Y3 Y3

11) wil: Discover R1 Wil G3 G3

12) Trydnt: Build R2 Trydnt

13) wil: B Y1 Wil

14) Trydnt: Discover R2 Trydnt Y3 Y3ee

15) wil: Move Y1 Wil G3

16) Trydnt: Sacrifice G3 Trydnt
Build R2 Y3
Build R3 Y3ee
Build R3 Trydnt

17) wil: Build R3 G3

18) Trydnt: Trade R3 G3 Trydnt

19) wil: Discover Y1 Wil R3 R3

20) Trydnt: Build G1 Trydnt

21) wil: Build Y2 G3

22) Trydnt: Trade G1 B1 Trydnt

23) wil: Build G1 Wil

24) Trydnt: Move B1 Trydnt Y3ee

25) wil: Build Y2 G3

26) Trydnt: Build G1 Trydnt

27) wil: Move Y2 G3 Wil

28) Trydnt: Move G1 Trydnt Y3ee

29) wil: Build Y2 G3



33702)
Variants: "Hard time"
Started: 2018.1.19, Ended: 2018.2.15
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y2 G3

2) wil: H B2 R1 G3

3) Trydnt: Build G1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Trade G1 R1 Trydnt

6) wil: T G1 R1 Wil

7) Trydnt: Build R2 Trydnt

8) wil: Build R2 Wil

9) Trydnt: Build R2 Trydnt

10) wil: Trade R2 Y2 Wil

11) Trydnt: Discover R2 Trydnt Y1 Y1

12) wil: D R1 Wil G3 G3

13) Trydnt: Move R2 Y1 G3

14) wil: Build R2 G3

15) Trydnt: Attack R2 G3

16) wil: Build R3 G3

17) Trydnt: Build R3 Trydnt
Catastrophe G3 R
	wil: Got my resume down to 6 pages...and now made it 3...double sided F convention.  Want a job I can walk to, applied at moms, might just apply at home depot!!

18) wil: Build Y1 Wil
	Trydnt: If you're applying to jobs like that you should probably prioritize and get your resume down to 1 page single sided. They just wont read much more than that

19) Trydnt: Trade R1 Y1 Trydnt
	wil: lol...  those are for people that don't have a history....everyone reads my resume

	wil: Including professional resume writers who give the same 1 page advice adnauseum....they all go...two many pages and then go...wow.

20) wil: Trade Y1 B1 Wil
	wil: this game is now yours to lose...you've already won

21) Trydnt: Build R1 Trydnt

22) wil: Build B1 Wil

23) Trydnt: Trade R2 B2 Trydnt

24) wil: Trade B1 R1 Wil

25) Trydnt: Build R2 Trydnt

26) wil: Build R2 Wil

27) Trydnt: Discover R2 Trydnt Y1 Y1

28) wil: Discover R1 Wil Y3 Y3

29) Trydnt: Move R2 Y1 Y3

30) wil: S G3 Wil
B R2 Y3
B R3 Y3
B R3 Wil
C Y3 R

31) Trydnt: Build B1 Trydnt

32) wil: T R3 G3 Wil

33) Trydnt: Discover R3 Trydnt Y1 Y1
	wil: Same statement as other game

34) wil: Discover R2 Wil Y3 Y3

35) Trydnt: Discover B2 Trydnt G1 G1

36) wil: B G1 Wil

37) Trydnt: Move Y1 Trydnt G1

38) wil: B Y1 Wil

39) Trydnt: Build Y2 G1

40) wil: D Y1 Wil G3 G3

41) Trydnt: Move Y2 G1 G3

42) wil: B Y3 G3

43) Trydnt: Build Y3 G1

44) wil: Move Y1 G3 G1

45) Trydnt: Discover Y1 G1 B3 B3

46) wil: Trade G1 R1 Wil

47) Trydnt: Discover Y2 G3 R2 R2

48) wil: Move R1 Wil G3

49) Trydnt: Sacrifice G3 Trydnt
Build R2 Y1
Build R3 Trydnt
Build B1 G1

50) wil: Build R3 G3

51) Trydnt: Trade R3 G3 Trydnt

52) wil: Move R1 G3 Y1

53) Trydnt: Sacrifice R2 Y1
Attack R1 Y1
Attack Y1 G1

54) wil: Build G1 Wil

55) Trydnt: Move R3 Y1 Y3

56) wil: Discover R2 Y3 G1 B1

57) Trydnt: Move B1 G1 Y3

58) wil: Discover G1 Wil B3 R3

59) Trydnt: Build G2 Trydnt

60) wil: Build R2 B1

61) Trydnt: Sacrifice G2 Trydnt
Build R3 Y1
Build B2 Y3

62) wil: M B1 Wil G3

63) Trydnt: Move R3 Y1 R3

64) wil: B G2 Wil

65) Trydnt: Attack G1 R3

66) wil: Move G2 Wil B3

67) Trydnt: Sacrifice Y3 G1
Move B1 Y3 Wil
Move B2 Y3 Wil
Move B2 G1 Y3

68) wil: Build Y3 G3

69) Trydnt: Move B2 Y3 Wil
Catastrophe Wil B

70) wil: S Y3 G3
M Y2 Wil Trydnt
M B1 G3 Y1
M B1 Y1 Trydnt

71) Trydnt: Move R1 Trydnt Wil

72) wil: S G2 B3
B B1 Trydnt
B Y3 Trydnt
C Trydnt B
	wil: Good game

73) Trydnt: Sacrifice Y2 R2
Move R3 R3 Wil
Move R3 Y3 Wil
Catastrophe Wil R

	wil: You are starting to get the hang of it!


33755)
Started: 2018.2.5, Ended: 2018.2.14
Participants: eliscinsky (S), wil (N)
Winner: wil

1) wil: Homeworld B2 Y1 G3
	eliscinsky: Good Luck wil, not that I think you'll need it.  I'm truly a novice. LOL 

2) eliscinsky: Homeworld B1 Y2 G3
	wil: It takes a while to get the nuance of this game...you learn by losing...not winning!

3) wil: Build G1 Wil
	eliscinsky: Yes I have been "learning" a lot. :)
	wil: oh jeez...another short universe..

4) eliscinsky: Build G1 Eliscinsky

5) wil: Trade G1 B1 Wil

6) eliscinsky: Trade G1 R1 Eliscinsky

7) wil: Build B1 Wil

8) eliscinsky: Build G1 Eliscinsky

9) wil: D B1 Wil Y3 Y3

10) eliscinsky: Trade G1 Y1 Eliscinsky

11) wil: B G1 Wil

12) eliscinsky: Build G1 Eliscinsky

13) wil: Build B2 Wil

14) eliscinsky: Build R1 Eliscinsky

15) wil: T B2 R2 Wil

16) eliscinsky: Move R1 Eliscinsky Y3

17) wil: Sacrifice G3 Wil
Build B2 Y3
Build B2 Y3
Build B3 Wil

18) eliscinsky: Attack B1 Y3
	eliscinsky: WOW, cool move!

19) wil: Sacrifice R2 Wil
Attack R1 Y3
Attack B1 Y3

20) eliscinsky: Discover Y1 Eliscinsky R3 R3
	wil: Don't let people monopolize an economy!!  

21) wil: Discover B3 Wil G3 G3

22) eliscinsky: Build R1 Eliscinsky

23) wil: B B3 G3

24) eliscinsky: Move R1 Eliscinsky R3

25) wil: Trade B3 R3 G3

26) eliscinsky: Build R2 Eliscinsky

27) wil: B B3 Wil

28) eliscinsky: Trade G1 Y1 Eliscinsky
	wil: I've now got a big ship factory, and will build size 3s every other turn

29) wil: Trade B3 G3 Wil

30) eliscinsky: Build Y2 Eliscinsky

31) wil: S G3 Wil
B B3 Wil
B B3 G3
B R2 Y3

32) eliscinsky: Sacrifice Y2 Eliscinsky
Move R2 Eliscinsky R3
Move R2 R3 Wil

33) wil: Sacrifice R1 Y3
Attack R2 Wil

34) eliscinsky: Build Y2 Eliscinsky

35) wil: Trade B3 Y3 G3

36) eliscinsky: Move Y2 Eliscinsky R3

37) wil: Build B3 G3

38) eliscinsky: Build Y2 Eliscinsky

39) wil: Sacrifice Y3 G3
Move B3 G3 Eliscinsky
Move B3 G3 Eliscinsky
Move B1 Wil G3

40) eliscinsky: Move Y2 Eliscinsky R3

41) wil: Sacrifice R3 G3
Attack G3 Eliscinsky
Attack Y1 Eliscinsky
Attack R1 Eliscinsky
	wil: Awesome that you joined the tourney...keep challenging folks and next time it happens you will go a lot further!  
	eliscinsky: WOW! That was a spectacular move.  Did NOT see that coming. Thanks for the game, wil.  I learned a lot.



33565)
Variants: "Hard time"
Started: 2018.2.7, Ended: 2018.2.27
Participants: Felix (S), Trydnt (N)
Winner: Felix

1) Trydnt: Homeworld B2 R1 G3

2) Felix: Homeworld B2 Y3 G3

3) Trydnt: Build G1 Trydnt

4) Felix: Build G1 Felix

5) Trydnt: Trade G1 Y1 Trydnt
	Felix: Have a good game!
	Trydnt: And you!

6) Felix: Trade G1 B1 Felix

7) Trydnt: Build Y1 Trydnt

8) Felix: Build B1 Felix

9) Trydnt: Build G1 Trydnt

10) Felix: Discover B1 Felix G1 Out

11) Trydnt: Discover Y1 Trydnt B3 B3

12) Felix: Build B1 Out

13) Trydnt: Build Y1 Trydnt

14) Felix: Build B2 Out

15) Trydnt: Sacrifice G3 Trydnt
Build Y2 B3
Build Y2 B3
Build Y2 Trydnt

16) Felix: Build B3 Felix

17) Trydnt: Sacrifice Y2 Trydnt
Discover Y1 Trydnt B3 B33
Discover Y1 B3 Y2 Y2

18) Felix: Trade B3 Y3 Felix

19) Trydnt: Build Y3 Trydnt

20) Felix: Build B3 Felix

21) Trydnt: Build G1 Trydnt

22) Felix: Trade B3 R3 Felix

23) Trydnt: Trade Y2 G2 B3

24) Felix: Trade B2 Y2 Out
	Felix: Good moves!

25) Trydnt: Build G2 B3

26) Felix: Move R3 Felix Out

27) Trydnt: Move G1 Trydnt B33

28) Felix: Move R3 Out B3

29) Trydnt: Sacrifice Y2 B3
Move G2 B3 Out
Move G2 B3 Out

30) Felix: Sacrifice Y2 Out
Discover B1 Out G3 Rim
Discover B1 Out G3 Rom

31) Trydnt: Build G2 B33

32) Felix: Build B2 Rom

33) Trydnt: Sacrifice G2 B33
Build Y2 B33
Build Y2 B33

34) Felix: B B3 Rim

35) Trydnt: Move Y1 B33 Out

36) Felix: Sacrifice B2 Rom
Trade Y3 R3 Felix
Trade B3 Y3 Rim

37) Trydnt: Build G2 B33

38) Felix: Build B2 Rom

39) Trydnt: Trade G2 R2 B33

40) Felix: Build B3 Rim

41) Trydnt: Build G2 Trydnt

42) Felix: Move R3 Felix Out

43) Trydnt: Sacrifice Y1 Out
Discover G1 B33 Y1 Y1

44) Felix: Attack G2 Out

45) Trydnt: Sacrifice G2 Trydnt
Build G2 Out
Catastrophe Out G
Build G1 Y1

46) Felix: Trade B3 R3 Rim

47) Trydnt: Build G2 Y1

48) Felix: Build B3 Felix

49) Trydnt: Build G2 Trydnt

50) Felix: Move R3 Rim Y2

51) Trydnt: Discover Y1 Y2 R1 R1

52) Felix: Move R3 Y2 B33

53) Trydnt: Sacrifice G2 Trydnt
Build R1 B33
Build R2 B33
Catastrophe B33 R

54) Felix: Trade B3 R3 Felix

55) Trydnt: Sacrifice G2 Y1
Build G2 Y1
Build Y2 R1

56) Felix: Build B3 Rim

57) Trydnt: Move Y2 B33 Y1

58) Felix: Sacrifice Y3 Rim
Move R3 B3 Trydnt
Move B3 Rim Trydnt
Move B2 Rom Trydnt

59) Trydnt: Attack R3 Trydnt

60) Felix: Sacrifice R3 Felix
Attack R3 Trydnt
Attack Y3 Trydnt
Attack G1 Trydnt

	Felix: Good game!
	Trydnt: haha lots of trouble from the start. Well played!
	Felix: You too! I'm definitely seeing improvement, so keep playing!


33699)
Started: 2018.2.7, Ended: 2018.2.13
Participants: Trydnt (S), MobyNostromo (N)
Winner: Trydnt

1) MobyNostromo: H B1 G2 Y3

2) Trydnt: Homeworld Y3 B2 G3



33704)
Variants: "Hard time"
Started: 2018.2.7, Ended: 2018.2.26
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: Homeworld B1 Y1 G3 *

2) Trydnt: Homeworld Y3 B2 G3

3) wil: Build G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: Trade G3 R3 Wil

6) Trydnt: Trade G1 R1 Trydnt

7) wil: Build G1 Wil

8) Trydnt: Build R1 Trydnt

9) wil: Trade G1 B1 Wil

10) Trydnt: Trade R1 B1 Trydnt

11) wil: Build G1 Wil

12) Trydnt: Build R1 Trydnt

13) wil: Trade G1 Y1 Wil

14) Trydnt: Discover B1 Trydnt G1 G1

15) wil: B B2 Wil

16) Trydnt: Build B2 G1

17) wil: D B1 Wil G3 G3

18) Trydnt: Trade B1 Y1 G1

19) wil: Build G1 Wil

20) Trydnt: Move B2 G1 G3

21) wil: Build B1 G3

22) Trydnt: Trade B2 R2 G3

23) wil: B B2 G3

24) Trydnt: Attack B2 G3

25) wil: B B3 G3

26) Trydnt: Build Y2 G1
Catastrophe G3 B

27) wil: Build B1 Wil

28) Trydnt: Sacrifice Y2 G1
Move R2 G3 Wil
Move R1 Trydnt Wil

29) wil: Sacrifice R3 Wil
Attack R2 Wil
Attack R1 Wil
Pass
	wil: Lol what the helll

30) Trydnt: Build G2 Trydnt

31) wil: D B2 Wil G3 G3

32) Trydnt: Build Y2 G1

33) wil: Build G2 Wil

34) Trydnt: Move G2 Trydnt Wil
Catastrophe Wil G

35) wil: Build B1 G3

36) Trydnt: Build Y2 G1

37) wil: Build B2 G3

38) Trydnt: Discover Y2 G1 G3 G33

39) wil: Trade B2 Y2 G3

40) Trydnt: Build Y3 G33

41) wil: Build Y3 G3

42) Trydnt: Sacrifice Y2 G33
Move Y1 G1 G3
Move Y2 G1 G3
Catastrophe G3 Y

43) wil: Build B2 G3

44) Trydnt: Build R1 Trydnt

45) wil: Trade R1 G1 Wil

46) Trydnt: Discover Y3 G33 G2 G2

47) wil: Build B3 Wil
	wil: You found the best way out of that...you almost let me catch back upto even!

	wil: I can't believe I am getting back into this game!

48) Trydnt: Move Y3 G2 G3
	wil: I am still alive!!

49) wil: Discover B1 Wil Y2 Y2
	Trydnt: It's an interesting game for sure

50) Trydnt: Sacrifice R1 Trydnt
Attack B2 G3

51) wil: Sacrifice G1 Wil
Build B3 Y2
	wil: I just can't believe you let me get a 3!!

52) Trydnt: Trade B2 R2 G3

53) wil: Move B1 Y2 G3
	wil: I was torn between this and sacking the B2 and changing the other two to yellow...

54) Trydnt: Attack B2 G3

55) wil: Build B2 G3
Catastrophe G3 B

56) Trydnt: Build G1 Trydnt

57) wil: Trade B3 G3 Y2

58) Trydnt: Trade G1 B1 Trydnt

59) wil: Build G1 Y2
	wil: again couldn't decide...s r2 and attack r2 and b2 or ...dang it again the other way would have been better

60) Trydnt: Build G1 Trydnt

61) wil: Discover Y1 Wil G2 G2

62) Trydnt: Build R1 G3

63) wil: Move G1 Y2 Wil

64) Trydnt: Move R2 G3 G2

65) wil: Discover Y1 G2 G1 G1

66) Trydnt: Build R1 G3

67) wil: Build G2 Wil

68) Trydnt: Move R1 G3 Wil

69) wil: Attack R1 Wil

70) Trydnt: Move R1 G3 Wil

71) wil: Move R1 Wil Y2

72) Trydnt: Trade R1 B1 Wil

73) wil: Trade B3 Y3 Wil

74) Trydnt: Sacrifice G1 Trydnt
Build B2 Wil

75) wil: Build G1 Wil

76) Trydnt: Move B1 Trydnt Wil
Catastrophe Wil B

77) wil: Move G1 Wil Trydnt
	wil: Youse is beingst a pest.

78) Trydnt: Trade G3 B3 Trydnt
	Trydnt: I learned from the best

79) wil: Build G2 Wil
	wil: Who has been teachin you?


80) Trydnt: Attack G1 Trydnt

81) wil: Build G3 Y2

82) Trydnt: Build B1 Trydnt

83) wil: Discover G2 Wil Y2 Why2

84) Trydnt: Build Y1 G3

85) wil: Sacrifice G3 Y2
Build G3 Y2
Build Y2 G1
Build R1 Y2

86) Trydnt: Move Y3 G3 Wil
	wil: lol...put it in my homeworld for a minute...mistakes you'd not make in a live game
	wil: There was a 9 minute window for the slaughter...whew.

	wil: lol...well that proves I should have done the other move...nice!

	wil: all three of my choices have a winning response from your side...good game!
	Trydnt: in answer to your previous question... self taught haha
	Trydnt: the short universe is very fun though. completely changes the game
	wil: And it isn't a shorter game...  being able to play here has been handy..  It was almost the only way to find people to play... for a while I had somebody nearby who would play 3-5 games a night...but he moved away... so I only now get in a few games a week..  btw, you should be in the next tourney
	Trydnt: Haha yeah I miss our live games it's not the same here. but yeah it was interesting having to move out to build up forces so you couldn't just move straight in and blow it all up


33759)
Variants: "Hard time"
Started: 2018.2.7, Ended: 2018.2.14
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: Homeworld B2 Y1 G3

2) Felix: Homeworld B1 Y2 G3

3) wil: Build G1 Wil
	Felix: At least it will be over quickly :)
	wil: Idk if short universe is over any quicker


4) Felix: Build G1 Felix

5) wil: T G1 B1 Wil
	Felix: It all depends on how quickly I make mistakes. :)

6) Felix: Trade G1 B1 Felix

7) wil: B B2 Wil

8) Felix: Build B2 Felix

9) wil: Trade B2 Y2 Wil

10) Felix: Discover B2 Felix G3 Out

11) wil: Move B1 Wil Out

12) Felix: Trade B2 R2 Out

13) wil: Build B2 Out

14) Felix: Attack B2 Out
	wil: I should learn to think things out...but I love experimentation

15) wil: B B2 Out
	Felix: I enjoy it too! Experimentation has lost me many games.
	wil: Lol this one went very ba

16) Felix: Sacrifice R2 Out
Attack B2 Out
Attack B1 Out

17) wil: B Y1 Wil
	wil: Lol

18) Felix: Build B3 Felix
	wil: I should. Resign. But may just take my beating!

19) wil: T G3 B3 Wil
	Felix: You never know! I frequently make mistakes.
	wil: I would be appreciative

20) Felix: Trade B2 Y2 Out

21) wil: Trade B3 R3 Wil

22) Felix: Move Y2 Out Wil
Catastrophe Wil Yellow

	wil: no use taking up your time...now I have to play mneme in the tourney
	Felix: Ooh, good luck to you! I'm a bit nervous about that game myself, if I get there.


33562)
Variants: "Unrated"
Started: 2018.2.11, Ended: 2018.3.15
Participants: Orl (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3

2) Orl: Homeworld B2 R1 G3

3) Trydnt: Build G1 Trydnt

4) Orl: Build G1 Orl

5) Trydnt: Trade G1 R1 Trydnt

6) Orl: Trade G1 R1 Orl

7) Trydnt: Build R2 Trydnt

8) Orl: Build R2 Orl

9) Trydnt: Build R2 Trydnt

10) Orl: Trade R2 Y2 Orl

11) Trydnt: Discover R2 Trydnt G1 G1

12) Orl: Build G1 Orl

13) Trydnt: Trade R1 B1 Trydnt

14) Orl: Discover G1 Orl Y3 Y3

15) Trydnt: Move B1 Trydnt G1

16) Orl: Build G1 Y3

17) Trydnt: Build G2 Trydnt



33775)
Variants: "Hard time"
Started: 2018.2.14, Ended: 2018.3.1
Participants: wil (S), Draw5PlayAll (N)
Winner: wil

1) Draw5PlayAll: Pass

2) wil: Homeworld B2 Y1 G3

3) Draw5PlayAll: Homeworld B3 R1 G3
	wil: lol...passes huh?  

4) wil: B G1 Wil

5) Draw5PlayAll: Build G1 Draw5playall

6) wil: T G1 R1 Wil

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) wil: Build R1 Wil

9) Draw5PlayAll: Build Y1 Draw5playall

10) wil: Build R2 Wil
	Draw5PlayAll: So you wanted to get #1 on ladder...
	wil: Been there a number of times...  I just like to play games...up against the probable winner in the tourney next...

11) Draw5PlayAll: Build Y2 Draw5playall

12) wil: Discover R1 Wil Y3 Y3
	Draw5PlayAll: Who all is still standing anyway?
	wil: It boiled down to 8 of us...and all but two are left in that...  I'd have to look.  just a couple tiers before the final best outta three from the top two...

13) Draw5PlayAll: Discover Y2 Draw5playall G2 G2

14) wil: Discover R2 Wil Y3 Why3

15) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 G2
Build Y2 G2
Build Y3 Draw5playall

16) wil: Sacrifice G3 Wil
Build R2 Y3
Build R2 Why3
Build R3 Wil

17) Draw5PlayAll: Trade Y3 R3 Draw5playall
	wil: so few moves so many mistakes...I gotta set up a board so I don't commit to the move.. dag nabbit.

18) wil: Trade R3 G3 Wil

19) Draw5PlayAll: Discover Y2 G2 G1 G1

20) wil: Move R2 Y3 G2

21) Draw5PlayAll: Sacrifice Y2 G2
Discover Y2 G2 B3 B3
Discover Y1 Draw5playall G2 Idareyou

22) wil: Build R3 Wil

23) Draw5PlayAll: Build Y2 Idareyou

24) wil: Trade R3 Y3 Wil

25) Draw5PlayAll: Trade Y1 G1 Draw5playall
	wil: You should have joined the tourney... 
	wil: It just blends in with playing these challenges...and guaranteed you play a herd of games to start in the round robin before you even start the brackets.
	Draw5PlayAll: Nooooooooooo

26) wil: Sacrifice Y3 Wil
Move R1 Y3 G2
Move R1 G2 Draw5playall
Move R2 G2 Draw5playall
Catastrophe Draw5playall R

27) Draw5PlayAll: Move Y2 G1 Draw5playall
	Draw5PlayAll: I at least thought I could hold the ladder longer than THIS!

28) wil: Move G3 Wil Draw5playall

29) Draw5PlayAll: Build G1 Draw5playall
	wil: one never knows...  it is like billygoat hill...soon as you get here everyone wants to knock you off.   

	wil: I'm impatient...you may yet win!

30) wil: Trade G3 R3 Draw5playall

	Draw5PlayAll: That is an easier way.


33768)
Variants: "Unrated"
Started: 2018.2.15, Ended: 2018.3.18
Participants: Trydnt (S), zeder (N)
Winner: Trydnt

1) zeder: Homeworld Y2 B3 G3

2) Trydnt: Homeworld B2 R1 G3

3) zeder: Build G1 Zeder

4) Trydnt: Build G1 Trydnt

5) zeder: Trade G1 B1 Zeder

6) Trydnt: Trade G1 B1 Trydnt

7) zeder: Build G1 Zeder

8) Trydnt: Build G1 Trydnt

9) zeder: Trade G1 Y1 Zeder

10) Trydnt: Trade G1 Y1 Trydnt

11) zeder: Build G1 Zeder

12) Trydnt: Build Y1 Trydnt

13) zeder: Build Y2 Zeder

14) Trydnt: Build Y2 Trydnt

15) zeder: Discover Y2 Zeder G1 Cribbage

16) Trydnt: Trade Y1 R1 Trydnt

17) zeder: Discover Y2 Cribbage G3 Gin

18) Trydnt: Move Y2 Trydnt Gin

19) zeder: Discover Y2 Gin G1 Cribbage

20) Trydnt: Build R1 Trydnt

21) zeder: Trade G3 R3 Zeder

22) Trydnt: Move R1 Trydnt Gin

23) zeder: Build R2 Zeder

24) Trydnt: Move B1 Trydnt Gin

25) zeder: Trade R3 G3 Zeder

26) Trydnt: Build R2 Gin

27) zeder: Move R2 Zeder Cribbage

28) Trydnt: Discover R2 Gin B1 B1

29) zeder: Move B1 Zeder Cribbage

30) Trydnt: Build B2 Gin



33687)
Variants: "Unrated"
Started: 2018.2.17, Ended: 2018.2.17
Participants: wil (S), Gibsi (N)
Winner: wil

1) Gibsi: Homeworld B1 Y2 G3

	wil: What is up with these...  I didn't even notice them come up?


33639)
Variants: "Unrated, Hard time"
Started: 2018.2.17, Ended: 2018.2.17
Participants: Gibsi (S), wil (N)
Winner: wil

	wil: scratching my head?


33803)
Started: 2018.2.21, Ended: 2018.2.26
Participants: mneme (S), wil (N)
Winner: wil

1) wil: Homeworld B2 Y1 G3

2) mneme: Homeworld R1 G3 B3
	wil: I'd say good luck...but we both know it is I who needs it!
	wil: Have a great game...hope I can challenge you a tad.

3) wil: Build G1 Wil
	mneme: We both need it!  We'll see how things go!  And good luck! (also, as I prefer in non-random games, ganbatte!)

	mneme: Still, I'm going second which I admit is my favored positon.

4) mneme: Build B1 Mneme
	mneme: Helps if I don't accidentally make a small universe, though.
	wil: Second is best...I wanted to pass...but I see that as bad form...the computer flips the coin.

5) wil: Trade G1 R1 Wil

6) mneme: Trade B1 Y1 Mneme
	mneme: pass means I could force a tie if I wanted to.  Not sure what that does for tournament, though.


7) wil: Build R1 Wil
	wil: what is the rule on back and forth for ties?

	mneme: all pass  = tie


8) mneme: Build Y1 Mneme

9) wil: Build R2 Wil
	wil: what about back and forth later in the game?

10) mneme: Build Y2 Mneme

11) wil: Discover R1 Wil G3 G3
	mneme: there is no autotie.  I've offered ties in homeworlds once maybe because of a cycle, but it usually doesn't happen.


12) mneme: Discover Y1 Mneme G2 Polyhymnia

13) wil: Discover R2 Wil Y3 Y3

14) mneme: Build Y2 Polyhymnia

15) wil: Move R2 Y3 Polyhymnia

16) mneme: Sacrifice Y1 Polyhymnia
Discover Y2 Polyhymnia G1 Erato
	Babamots: I think I failed to specify what happens in the event of a tie in the bracket phase. I suppose the most sensible thing would be to just play again.

17) wil: Sacrifice G3 Wil
Build R2 Polyhymnia
Build R2 G3
Build R3 Wil

18) mneme: Build B1 Mneme

19) wil: Trade R3 Y3 Wil

20) mneme: Trade B3 G3 Mneme

21) wil: Build R3 Polyhymnia

22) mneme: Build Y1 Erato

23) wil: Build R3 G3

24) mneme: Build Y2 Erato

25) wil: Move Y3 Wil G3
	wil: I think you probably made the best of all possible bad moves available..  Unless you have a trick up your sleeve, I think you need me to make some mistake..

26) mneme: Build Y3 Mneme
	mneme: We'll see how it goes. I certainly have a considerable numerical disadvantage.

27) wil: Move R3 G3 Erato
	wil: I was torn between this and sacking the Y3, backing up an R3 into my HW moving the r1 out to a b3 and moving an R2 into your yellows...but I don't have the ability to ponder long...

28) mneme: Sacrifice Y2 Erato
Discover Y1 Erato B3 Euterpe
Discover Y2 Erato B3 Calliope

29) wil: Build R3 G3

30) mneme: Sacrifice Y2 Mneme
Move Y2 Calliope Wil
Move Y1 Euterpe Wil
	wil: I am so bad at thinking before my move...and do nothing but second guess after my move.

31) wil: Sacrifice Y3 G3
Move R3 Erato Polyhymnia
Move R3 Polyhymnia Mneme
Move R3 Polyhymnia Mneme

32) mneme: Attack R3 Mneme
	mneme: That's what I'm counting on.  As it were.

33) wil: Sacrifice R3 G3
Attack R3 Mneme
Attack G3 Mneme
Attack Y3 Mneme

	wil: I had figured I needed it more than another y...
	wil: trying for monopolies is a thing...maintaining them is a challenge.  It wasn't my intention...but when you decided to not play follow the leader, that gave me a choice, abandon red and get a yellow before I can't...which meant you just got the first move advantage from second place...or race with you.
	wil: I was hoping to get to the end and play you in the best of three...feel free to challenge me anytime.  I feel you are far better than I and I got lucky early here.
	mneme: So much of this game is decided in the opening unless someone makes a mistake (and I did; I shouldn't have let you contorol Red so thoroughly, though there was a period where it was possible your limited movement/growth might have let me turn it around).

  Good luck in the tornament!
	mneme: Without the R you wouldn't have been able to win; can't take over my home system as easily when I can cat R in response!
	wil: quite, and thanx for the game.


33631)
Variants: "Hard time"
Started: 2018.2.26, Ended: 2018.3.1
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 G1 Y3

2) wil: Homeworld B2 R1 G3

3) Trydnt: Build Y1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Build Y1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Trade Y1 R1 Trydnt

8) wil: Build G1 Wil

9) Trydnt: Build R1 Trydnt

10) wil: Build G1 Wil

11) Trydnt: Build R2 Trydnt

12) wil: Discover G1 Wil Y3 Y3

13) Trydnt: Trade R2 G2 Trydnt

14) wil: Build G2 Wil

15) Trydnt: Sacrifice Y3 Trydnt
Discover G2 Trydnt Y2 Y2
Move G2 Y2 Y3
Move G2 Y3 Wil
Catastrophe Wil G

16) wil: Build G1 Y3

17) Trydnt: Build R2 Trydnt
	Trydnt: wooahhhhhh haha
	Trydnt: have you seen the new star wars? that was like a light speed collision

18) wil: Build G2 Y3
	wil: lol, wow.

19) Trydnt: Trade R2 G2 Trydnt

20) wil: Move G2 Y3 Wil

21) Trydnt: Discover G2 Trydnt Y2 Y2

22) wil: Move G1 Y3 Y2

23) Trydnt: Discover G2 Y2 B3 B3

24) wil: Move G1 Y2 B3

25) Trydnt: Trade G2 R2 B3

26) wil: Sacrifice G1 B3
Build G1 Wil

27) Trydnt: Build R2 Trydnt

28) wil: Build G2 Wil

29) Trydnt: Discover R2 Trydnt Y2 Y2

30) wil: Build G2 Y3

31) Trydnt: Discover R2 Y2 G3 G3

32) wil: Build G3 Y3

33) Trydnt: Build R2 G3

34) wil: Discover G2 Wil Y3 Why3

35) Trydnt: Build R3 Trydnt

36) wil: Sacrifice G3 Y3
Build G3 Why3
Build G3 Wil
Build Y1 Wil

37) Trydnt: Trade R3 Y3 Trydnt

38) wil: Trade G3 R3 Wil

39) Trydnt: Build R3 Trydnt

40) wil: Sacrifice G3 Why3
Build G3 Why3
Build G3 Wil
Build Y2 Wil

41) Trydnt: Sacrifice Y3 Trydnt
Move R2 B3 Wil
Move R2 G3 Wil
Catastrophe Wil R
Move R3 Trydnt Wil

42) wil: Trade Y1 R1 Wil

43) Trydnt: Sacrifice R2 G3
Attack G3 Wil
Attack R1 Wil

44) wil: Trade Y2 R2 Wil

45) Trydnt: Sacrifice R3 Wil
Attack R2 Wil
Attack G2 Wil
Attack G1 Wil

46) wil: Move G1 Y3 Wil
Catastrophe Wil G

47) Trydnt: Attack Y1 Wil

	wil: good game!
	Trydnt: Well played. When are you doing your next game night?


33640)
Started: 2018.2.26, Ended: 2018.3.7
Participants: wil (S), ts52 (N)
Winner: wil

1) ts52: Homeworld Y1 B2 G3

2) wil: Homeworld Y3 B1 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	wil: can't stop me!  i can't get enough of this game...win or lose!

4) wil: Build G1 Wil

5) ts52: Trade G1 B1 Ts52

6) wil: Trade G1 B1 Wil

7) ts52: Discover B1 Ts52 G3 Kermit
	wil: there is nothing like looking at the computer and seeing you have 5 moves to make in HW.
	ts52: Absolutely!

8) wil: Trade B1 Y1 Wil
	wil: hmmm...you moved out..that changes everything!  gonna try this..

9) ts52: Build B1 Kermit

10) wil: Build Y1 Wil

11) ts52: Build B2 Kermit

12) wil: Discover Y1 Wil G2 G2

13) ts52: Trade B2 Y2 Kermit

14) wil: Build Y2 Wil

15) ts52: Build Y2 Kermit
	wil: dang I love how different every game is...  this could go anywhere!  I can't wait till someone builds a system where we can pick a game an decide to play/replay again from any move on the board and play what ifs...  Or watch an AI play what ifs.
	ts52: That would be very cool indeed

16) wil: Build Y3 G2

17) ts52: Sacrifice Y2 Kermit
Move Y2 Kermit G2
Move Y2 G2 Wil
Catastrophe Wil Yellow
	wil: like now for instance...would love to play this three different ways.

18) wil: Move Y1 G2 Wil
	ts52: Agreed. I'm pretty sure I'll regret that later, but can't resist.

19) ts52: Build B2 Kermit

20) wil: Build Y1 G2

21) ts52: Trade B2 Y2 Kermit

22) wil: Trade Y1 R1 Wil

23) ts52: Trade B1 R1 Kermit
	wil: ya done good

24) wil: Move Y3 G2 Kermit

25) ts52: Sacrifice Y2 Kermit
Move R1 Kermit Ts52
Discover B1 Kermit G2 Oscar

26) wil: Move Y3 Kermit Oscar

27) ts52: Build B1 Oscar

28) wil: Build Y1 G2

29) ts52: Build B2 Oscar

30) wil: Sacrifice R1 Wil
Attack B2 Oscar

31) ts52: Build B2 Oscar
Catastrophe Oscar Blue

32) wil: Move Y3 Oscar Wil

33) ts52: Build G1 Ts52

34) wil: Build Y2 Wil

35) ts52: Build R1 Ts52

36) wil: Discover Y2 Wil Y2 Y2

37) ts52: Trade G1 B1 Ts52

38) wil: Sacrifice G3 Wil
Build Y2 Wil
Build Y3 Wil
Build Y3 G2

39) ts52: Discover R1 Ts52 G3 Kermit
	wil: 
	ts52: Very interesting.... 

40) wil: Trade Y2 G2 Wil

41) ts52: Build R1 Kermit

42) wil: Build G1 Wil

43) ts52: Build R2 Ts52
	wil: I just gotta make sure you can't get to me now...

44) wil: Build Y2 Wil

45) ts52: Build R2 Ts52

46) wil: Trade G2 R2 Wil

47) ts52: Discover R1 Ts52 G3 Oscar

48) wil: Build R3 Wil

49) ts52: Build B1 Ts52

50) wil: Build R3 Wil

51) ts52: Discover R2 Ts52 B3 Gonzo
	wil: It is as if I have a chain around your ankle.

52) wil: Trade R2 B2 Wil
	ts52: It really is...

53) ts52: Move B1 Ts52 Oscar

54) wil: Move R3 Wil Oscar

55) ts52: Build G1 Ts52

56) wil: Attack R1 Oscar

57) ts52: Discover G1 Ts52 B3 Grover

58) wil: Attack B1 Oscar

59) ts52: Move B1 Ts52 Kermit

60) wil: Move Y3 Wil Kermit
	ts52: Shouldn't be too long now

61) ts52: Build G1 Ts52
	wil: I am trying to put an end to your suffering
	wil: It looks like I have quite the wait for the next tourney game...and am guessing you'll be playing bhorner...although in this game nothing is certain as one mistake is easily capitalized on.

62) wil: Build G2 Wil
	ts52: Yeah, this round is going to take a while. I should probably just resign this game, but I like to play them out.
	wil: The possiblity I would make a mistake exists.  Of course finish if you like!  Resigning is the choice of the player...  and when you are in a bad position, simply making moves to torment the opponent are gratifying... I'll blow up half a homeworld without a possibility of winning.


63) ts52: Build G2 Grover

64) wil: Build B2 Oscar

65) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Kermit
Build R2 Kermit
	wil: doomsday machine in place

66) wil: Sacrifice R1 Oscar
Attack B3 Kermit
	wil: I was wrong, they weren't in place...i needed that!

67) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Gonzo
Build R3 Ts52

68) wil: Sacrifice Y3 G2
Move B3 Kermit Ts52
Move B2 Oscar Ts52
Move B1 Oscar Ts52
Catastrophe Ts52 B

69) ts52: Move R3 Ts52 Y2
	wil: blue teams 3, 2, 1... we appreciate your service, your descendants will be rewarded for your loyalty
	ts52: Very good game. Well played.

70) wil: Sacrifice Y3 Kermit
Move Y2 Y2 Ts52
Move Y1 G2 Ts52
Move Y1 G2 Ts52
Catastrophe Ts52 Y



33760)
Variants: "Hard time"
Started: 2018.2.26, Ended: 2018.3.1
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: Homeworld B3 Y1 G3

2) Felix: Homeworld B2 R3 G3
	wil: enjoy!

3) wil: Build G1 Wil
	Felix: Likewise!

4) Felix: Build G1 Felix

5) wil: Trade G1 B1 Wil

6) Felix: Trade G1 Y1 Felix

7) wil: Build B1 Wil

8) Felix: Build Y1 Felix

9) wil: Discover B1 Wil G2 G2

10) Felix: Build Y2 Felix

11) wil: Build B1 Wil

12) Felix: Trade Y2 B2 Felix

13) wil: Discover B1 Wil Y2 Y2

14) Felix: Discover B2 Felix G1 Out

15) wil: Sacrifice G3 Wil
Build B2 Y2
Build B3 G2
Build B3 Wil

16) Felix: Build Y2 Felix

17) wil: Sacrifice B2 Y2
Trade B3 Y3 G2
Trade B3 G3 Wil

18) Felix: Move Y1 Felix Out
	Felix: Nice move.

19) wil: Build G1 Wil

20) Felix: Discover Y1 Felix G1 Ingot

21) wil: Build Y2 G2

22) Felix: Build Y3 Out

23) wil: Sacrifice G3 Wil
Build B2 G2
Build B3 Wil
Build B3 Y2

24) Felix: Sacrifice Y3 Out
Move B2 Out G2
Move B2 G2 Wil
Catastrophe Wil Blue
Move Y2 Felix Wil

25) wil: Move B3 Y2 Wil

26) Felix: Build G2 Felix
	wil: nice game!

	Felix: Thanks! I wasn't expecting such a turnaround. It seemed you had the upper hand. 


33761)
Started: 2018.2.26, Ended: 2018.3.27
Participants: wil (S), MobyNostromo (N)
Winner: wil

1) MobyNostromo: H B1 G2 Y3
	MobyNostromo: Have fun!!

2) wil: Homeworld Y3 B2 G3
	wil: tis my intent when I play games...thanx...u2
	wil: tis my intent when I play games...thanx...u2

3) MobyNostromo: B Y1 Mobynostromo
	MobyNostromo: :)

4) wil: Build G1 Wil

5) MobyNostromo: B Y1 Mobynostromo

6) wil: Build G1 Wil

7) MobyNostromo: T Y1 G1 Mobynostromo

8) wil: Trade G1 B1 Wil

9) MobyNostromo: B Y1 Mobynostromo

10) wil: Trade G1 Y1 Wil

11) MobyNostromo: D Y1 Mobynostromo G3 Ggg

12) wil: Build Y2 Wil

13) MobyNostromo: B Y2 Mobynostromo

14) wil: Discover Y1 Wil B1 B1

15) MobyNostromo: T Y1 G1 Mobynostromo

16) wil: Build B2 Wil

17) MobyNostromo: T Y2 B2 Mobynostromo

18) wil: Discover B1 Wil G1 Years

19) MobyNostromo: M B2 Mobynostromo Ggg

20) wil: Build B3 Years

21) MobyNostromo: B B3 Ggg

22) wil: Trade B1 R1 Years

23) MobyNostromo: D B2 Ggg G2 Bb

24) wil: Build R1 Years

25) MobyNostromo: B B1 Bb

26) wil: Build B3 Years

27) MobyNostromo: B Y1 Ggg

28) wil: Trade B3 Y3 Years

29) MobyNostromo: T Y1 R1 Ggg

30) wil: Build B3 Years

31) MobyNostromo: B Y1 Mobynostromo

32) wil: Build G2 Wil

33) MobyNostromo: B Y2 Ggg

34) wil: Sacrifice Y2 Wil
Move G2 Wil B1
Discover B3 Years G3 G3

35) MobyNostromo: T Y3 R3 Mobynostromo

36) wil: Build Y2 Years

37) MobyNostromo: D G1 Mobynostromo Y3 Auburn

38) wil: Move R1 Years G3

39) MobyNostromo: B Y2 Mobynostromo

40) wil: Sacrifice G2 B1
Build G2 Wil
Build R2 G3

41) MobyNostromo: M Y1 Ggg Bb

42) wil: Build R2 Years

43) MobyNostromo: M B2 Bb B1

44) wil: Discover R1 Years R3 R3

45) MobyNostromo: M B1 Bb B1

46) wil: Sacrifice G3 Wil
Build G3 Wil
Build R2 R3
Build R3 Years

47) MobyNostromo: S Y2 Mobynostromo
M B2 B1 Wil
M B1 B1 Wil
C Wil B

48) wil: Sacrifice Y3 Years
Move R3 Years G3
Move B3 G3 Mobynostromo
Move R3 G3 Mobynostromo

49) MobyNostromo: M G1 Auburn Mobynostromo
	wil: and if my math is right...

50) wil: Sacrifice R3 Mobynostromo
Attack R3 Mobynostromo
Attack G1 Mobynostromo
Attack G1 Mobynostromo

51) MobyNostromo: S Y2 Ggg
M R1 Ggg Bb
M R1 Bb R3
C R3 R
	wil: my plan was to sack my r2...sbut since you left my R3 available....  My other choice with that sneaky move of yours...would have been to send in my g2 to prevent the bluebird...and catastrophe your greens... interesting twists..
	MobyNostromo: Homeworlds is likely the game that most invites creative thinking. I am always spell-bound by the various strategies and possibilities in a given game. 

Nice job!!

52) wil: Attack Y1 Mobynostromo

	MobyNostromo: {I just wanted to blow something up before losing.) :)
	wil: That is a thing!


33711)
Variants: "Unrated"
Started: 2018.2.27, Ended: 2018.3.19
Participants: dlwillson (S), wil (N)
Winner: wil

1) wil: Homeworld B2 Y1 G3

2) dlwillson: H Y3 B1 G3

3) wil: Build G1 Wil

4) dlwillson: B G1 Dlwillson
	wil: there is nothing like looking at the computer and seeing you have 5 moves to make in HW.
	dlwillson: Hi Wil! Let's hope I can keep up this time, and not time out!

5) wil: Trade G1 B1 Wil
	wil: If you are too busy I can cancel... I just like to play.  

6) dlwillson: T G1 B1 Dlwillson

7) wil: Build B2 Wil
	dlwillson: Me too! I just get focused on work and forget to play.

8) dlwillson: B B2 Dlwillson

9) wil: Discover B1 Wil G3 G3

10) dlwillson: T B1 R1 Dlwillson

11) wil: Build B1 G3

12) dlwillson: B R1 Dlwillson

13) wil: Build B3 Wil

14) dlwillson: B B3 Dlwillson

15) wil: Build B3 G3

16) dlwillson: T B3 Y3 Dlwillson

17) wil: Sacrifice B2 Wil
Trade B3 Y3 G3
Trade B3 R3 Wil

18) dlwillson: D R1 Dlwillson B2 Sea

19) wil: Build B3 G3

20) dlwillson: D B2 Dlwillson G2 Field

21) wil: Move B3 G3 Field

22) dlwillson: Build B3 Field

23) wil: Build B3 Field
Catastrophe Field B

24) dlwillson: B G1 Dlwillson

25) wil: Build B2 G3

26) dlwillson: B R1 Dlwillson

27) wil: Move B1 G3 Wil

28) dlwillson: M G1 Dlwillson Sea

29) wil: Build B3 G3

30) dlwillson: M Y3 Dlwillson Sea

31) wil: Trade B3 R3 G3
	wil: I see why you clock out sometimes...you got it set to expire in 3 days...most are 10 for hardtime

32) dlwillson: Build G1 Dlwillson

33) wil: Build B3 G3

34) dlwillson: B G1 Sea
	dlwillson: Yes. I prefer the faster games, but sometimes real life interferes with my gaming. Gr.

You're getting pretty far ahead of me. I'd like you to make a big mistake soon, if you don't mind.
	dlwillson: I have turned off hard time in my standing challenge, so the other player can choose between waiting to play it out and winning.
	wil: That is my usual request and nobody ever does it for me (stands arms folded glaring)

35) wil: Discover B3 G3 G2 G2
	Draw5PlayAll: The other thing about soft time is that if you go just a little bit over, the opponent may not notice you are out of time and you can come back even if the other person is unmerciful.

36) dlwillson: D G1 Sea B3 Sky
	wil: I've had people behind for over a month..  I don't care about the win loss record and hate to see people time out on accident because of life...  I am here to play the game.

37) wil: Build G2 Wil
	dlwillson: People were a month behind and then came back to finish the game?

38) dlwillson: S G3 Dlwillson
B Y1 Sea
B G2 Sea
B G3 Dlwillson
	wil: sometimes....sometimes it gets to 60 days and I clean it off my board.

39) wil: Sacrifice G3 Wil
Build G3 Wil
Build B3 G2
Build R2 G3
	wil: been running my queen machine, time to institute the factory before you cut me outta it!

40) dlwillson: M Y1 Sea Sky

41) wil: Sacrifice Y3 G3
Move R2 G3 G2
Move B3 G2 Dlwillson
Move B3 G2 Dlwillson
	wil: Four moves to mate?...I should have stacked differently and been there by now...but your next move will foil that.

	wil: not the move I anticipated from you.
	dlwillson: Nice. I totally missed it. Sleeping at the wheel, here.
	wil: mistakes in this game that are capitalized on are catastrophic...am waiting for my next game in the tourney and then i have to win 4 outta my next 5 to win...we are down to 5 players and by the time I get to play again it will be down to 4 or maybe even 3.
	wil: I'd really like to see you, two short, Teeteetee and broccoli commander in the next one.
	dlwillson: The timing will have to be a lot tighter. I'd rather lose in three weeks than win in three months.
	wil: How would that happen?   Unless live on site...a game here can take three weeks.   I enjoyed the time...insuring I get to play some good games with interested variety of folk.  Just watched 'searching for bobby fisher' Even live we'd need a room full of chess clocks.
	dlwillson: I'll have to watch that movie. I desperately wish BH would take the place of Chess in the world. It's a much prettier and more interesting game. Easier to carry, too.
	wil: Chess was my favorite two player full info strategy game until....
	dlwillson: I watched Searching for Bobby Fischer. Loved it!


33824)
Variants: "Unrated"
Started: 2018.2.27, Ended: 2018.3.8
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 G1 Y3

2) dlwillson: H B3 R1 G3

3) Trydnt: Build Y1 Trydnt

4) dlwillson: B G1 Dlwillson

5) Trydnt: Trade Y1 R1 Trydnt

6) dlwillson: T G1 R1 Dlwillson

7) Trydnt: Build R2 Trydnt

8) dlwillson: B R2 Dlwillson

9) Trydnt: Build R2 Trydnt

10) dlwillson: T R2 Y2 Dlwillson

11) Trydnt: Discover R2 Trydnt Y2 Y2

12) dlwillson: B R2 Dlwillson

13) Trydnt: Build R3 Trydnt

14) dlwillson: S Y2 Dlwillson
M R1 Dlwillson Y2
M R1 Y2 Trydnt
C Trydnt R

15) Trydnt: Build Y1 Trydnt

16) dlwillson: B R1 Dlwillson

17) Trydnt: Move R2 Y2 Dlwillson
Catastrophe Dlwillson R

	dlwillson: GG
Oops! :-)


33762)
Variants: "Hard time"
Started: 2018.2.27, Ended: 2018.3.1
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y1 G3

2) wil: Homeworld G2 Y1 Y3 *

3) Trydnt: Build G1 Trydnt

4) wil: Build Y1 Wil
	Trydnt: Well that's interesting

5) Trydnt: Build G1 Trydnt
	wil: experimentation
	wil: I dislike g in my star

6) wil: Discover Y1 Wil G3 G3

7) Trydnt: Discover G1 Trydnt B2 B2

8) wil: Build Y2 Wil

9) Trydnt: Build G1 Trydnt

10) wil: Discover Y2 Wil B3 B3

11) Trydnt: Sacrifice G3 Trydnt
Build G2 B2
Build G2 B2
Build G3 Trydnt

12) wil: Build Y2 G3

13) Trydnt: Discover G1 Trydnt B2 B22
	wil: this one is wierd

14) wil: Build Y2 Wil

15) Trydnt: Build G3 B22

16) wil: Build Y3 G3

17) Trydnt: Trade G3 Y3 B22

18) wil: Trade Y2 B2 B3

19) Trydnt: Sacrifice G3 Trydnt
Build G3 B22
Build G3 Trydnt
Build Y2 B22

20) wil: Sacrifice B2 B3
Trade Y1 R1 G3
Trade Y3 B3 Wil

21) Trydnt: Sacrifice Y3 B22
Move G1 B2 G3
Move G2 B2 G3
Move G1 B22 G3
Catastrophe G3 G

22) wil: Build B1 Wil

23) Trydnt: Sacrifice G3 B22
Build Y1 B22
Build G1 B2
Build G1 B2

24) wil: Build B1 Wil

25) Trydnt: Trade G2 Y2 B2

26) wil: Discover B1 Wil Y3 Y3

27) Trydnt: Sacrifice G3 Trydnt
Build Y3 B22
Build G2 B2
Build G2 Trydnt

28) wil: Discover B1 Wil Y3 Why3

29) Trydnt: Build G3 Trydnt

30) wil: Build B1 Wil

31) Trydnt: Sacrifice Y2 B22
Discover G1 B2 B3 B3
Discover G1 B2 R3 R3

32) wil: Trade B3 G3 Wil

33) Trydnt: Sacrifice Y3 B22
Move G1 B3 Wil
Move G1 R3 Wil
Catastrophe Wil G
Move Y1 B22 Wil

	wil: lol good game!



33812)
Started: 2018.2.27, Ended: 2018.3.20
Participants: ts52 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 G1 Y3

2) ts52: Homeworld Y1 B2 G3

3) Trydnt: Build Y1 Trydnt
	ts52: Have a good game!
	Trydnt: And you also!

4) ts52: Build G1 Ts52

5) Trydnt: Trade Y1 G1 Trydnt

6) ts52: Build G2 Ts52

7) Trydnt: Build G2 Trydnt
	Draw5PlayAll: If only the system let you...

8) ts52: Discover G2 Ts52 B3 Grover

9) Trydnt: Discover G1 Trydnt Y2 Y2

10) ts52: Trade G2 Y2 Grover

11) Trydnt: Sacrifice G2 Trydnt
Build G2 Y2
Build Y1 Trydnt

12) ts52: Move G1 Ts52 Grover

13) Trydnt: Discover G2 Y2 Y3 Y3

14) ts52: Build G2 Grover

15) Trydnt: Build G2 Y3

16) ts52: Trade G2 R2 Grover

17) Trydnt: Trade Y1 R1 Trydnt

18) ts52: Move R2 Grover Ts52

19) Trydnt: Build Y1 Trydnt

20) ts52: Build Y1 Grover

21) Trydnt: Discover Y1 Trydnt Y2 Y22

22) ts52: Discover Y2 Grover G2 Robin

23) Trydnt: Build Y3 Trydnt

24) ts52: Build G3 Grover

25) Trydnt: Build G3 Y2

26) ts52: Trade G3 R3 Grover

27) Trydnt: Build R1 Trydnt

28) ts52: Build G3 Grover

29) Trydnt: Trade R1 B1 Trydnt

30) ts52: Trade G3 B3 Grover

31) Trydnt: Build G3 Y3

32) ts52: Move B3 Grover Robin

33) Trydnt: Move B1 Trydnt Y2

34) ts52: Build B1 Robin

35) Trydnt: Build R1 Trydnt

36) ts52: Trade B1 R1 Robin

37) Trydnt: Move R1 Trydnt Y2

38) ts52: Build B1 Robin

39) Trydnt: Build R2 Y2

40) ts52: Build B1 Robin

41) Trydnt: Sacrifice Y3 Trydnt
Move G2 Y3 Robin
Move G2 Y3 Robin
Move G3 Y3 Robin
Catastrophe Robin G

42) ts52: Build G2 Ts52

43) Trydnt: Discover Y1 Y22 G3 G3

44) ts52: Build G2 Grover

45) Trydnt: Build Y2 Trydnt

46) ts52: Trade G1 B1 Grover

47) Trydnt: Move R2 Y2 G3

48) ts52: Discover B1 Grover G2 Robin

49) Trydnt: Move R2 G3 Robin

50) ts52: Trade G2 R2 Ts52

51) Trydnt: Move Y3 Trydnt Robin

52) ts52: Discover R3 Grover G2 Oscar

53) Trydnt: Sacrifice G3 Y2
Build Y2 Robin
Build Y3 Trydnt
Build Y3 Trydnt

54) ts52: Move Y1 Grover Oscar

55) Trydnt: Discover Y3 Trydnt B2 B2

56) ts52: Move R2 Ts52 G3

57) Trydnt: Move Y3 Robin G3

58) ts52: Attack Y1 G3

59) Trydnt: Sacrifice R2 Robin
Attack R2 G3
Attack Y1 G3

60) ts52: Build R1 Ts52

61) Trydnt: Move Y3 B2 Grover

62) ts52: Discover R1 Ts52 G3 Kermit

63) Trydnt: Build G1 Y2

64) ts52: Sacrifice G2 Grover
Build G2 Ts52
Build B1 Robin

65) Trydnt: Sacrifice R2 G3
Attack B1 Robin
Attack B1 Robin

66) ts52: Build R2 Ts52

67) Trydnt: Build B2 Y2

68) ts52: Discover R2 Ts52 B3 Gonzo

69) Trydnt: Move B1 Robin G3

70) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Kermit
Build R3 Ts52

71) Trydnt: Build R3 Y2

72) ts52: Move R3 Ts52 Gonzo

73) Trydnt: Build B2 G3

74) ts52: Move Y1 Oscar Gonzo

75) Trydnt: Move B1 Robin G3
	ts52: I'm not sure there's much left for me to do. But I'd like to play it out anyway.

76) ts52: Move G2 Ts52 Gonzo

77) Trydnt: Move Y2 Robin Grover
	Trydnt: eh you never know. I played against Mr Looney recently and made several silly mistakes that resulted in the universe changing hands on more than one occasion. the game actually ended up being like 4 hours long
	Trydnt: a live game that is
	ts52: Wow. 4 hours? That's a long game.

78) ts52: Build G2 Gonzo
	Trydnt: Yeah haha might be a record

79) Trydnt: Sacrifice Y3 Grover
Discover G1 Y2 Y3 Y3
Move Y2 Grover Ts52
Move Y1 G3 Ts52

80) ts52: Move R2 Ts52 Y3

81) Trydnt: Sacrifice Y3 G3
Move B1 G3 Ts52
Move B1 G3 Ts52
Move B2 G3 Ts52
Catastrophe Ts52 B

82) ts52: Build Y3 Gonzo

83) Trydnt: Sacrifice Y3 Trydnt
Move Y2 Trydnt Y2
Move Y2 Y2 Ts52
Pass
Catastrophe Ts52 Y

	ts52: Good game! Thanks.
	Trydnt: curious, did you see my move ahead of time? I used the g1 as a red herring
	ts52: Yeah, IIRC you had me dead to rights for a few turns.


33813)
Variants: "Hard time"
Started: 2018.2.27, Ended: 2018.3.16
Participants: Trydnt (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R3 B2 G3

2) Trydnt: Homeworld B3 G1 Y3

3) Felix: Build G1 Felix

4) Trydnt: Build Y1 Trydnt

5) Felix: Trade G1 Y1 Felix

6) Trydnt: Trade Y1 R1 Trydnt

7) Felix: Build G1 Felix

8) Trydnt: Build R1 Trydnt

9) Felix: Trade G1 R1 Felix

10) Trydnt: Build R2 Trydnt

11) Felix: Build R2 Felix

12) Trydnt: Discover R1 Trydnt G2 G2

13) Felix: Discover R1 Felix G1 Out

14) Trydnt: Trade R1 B1 Trydnt

15) Felix: Build G1 Felix

16) Trydnt: Move B1 Trydnt G2

17) Felix: Build G2 Felix

18) Trydnt: Build B1 G2

19) Felix: Discover G2 Felix B1 Rim

20) Trydnt: Build Y1 Trydnt

21) Felix: Sacrifice G3 Felix
Build G2 Rim
Build G3 Rim
Build G3 Felix

22) Trydnt: Sacrifice Y1 Trydnt
Discover B1 G2 G3 G3

23) Felix: Trade G3 Y3 Felix

24) Trydnt: Build B2 G3

25) Felix: Trade G3 Y3 Rim

26) Trydnt: Build B2 G3

27) Felix: Build G3 Felix

28) Trydnt: Build B3 G2

29) Felix: Move Y3 Rim G3

30) Trydnt: Build B3 G2

31) Felix: Sacrifice R2 Felix
Attack B2 G3
Attack B2 G3

32) Trydnt: Sacrifice Y3 Trydnt
Move B1 G2 G3
Move B3 G2 Rim
Move B3 G2 Trydnt
Catastrophe G3 B

33) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Felix
Build Y1 G3

34) Trydnt: Sacrifice R2 Trydnt
Attack G2 Rim
Attack G2 Rim

35) Felix: Discover G3 Felix B1 Bazoik

36) Trydnt: Trade B3 Y3 Trydnt

37) Felix: Sacrifice G3 Felix
Build G3 Bazoik
Build Y1 G3
Build Y2 Felix

38) Trydnt: Build Y2 Trydnt

39) Felix: Sacrifice Y2 Felix
Move Y3 G3 G2
Move Y3 G2 Trydnt

40) Trydnt: Sacrifice Y2 Trydnt
Move B3 Rim G2
Move B3 G2 Trydnt

41) Felix: Sacrifice G3 Bazoik
Build G3 Bazoik
Build Y2 Trydnt
Build Y2 Trydnt
Catastrophe Trydnt Yellow

42) Trydnt: Build B1 Trydnt

43) Felix: Trade G3 B3 Bazoik

44) Trydnt: Trade B3 Y3 Trydnt

45) Felix: Build G3 Bazoik

46) Trydnt: Build Y2 Trydnt

47) Felix: Move Y1 G3 Bazoik

48) Trydnt: Move Y2 Trydnt G2

49) Felix: Move B3 Bazoik G3

50) Trydnt: Build Y2 G2

51) Felix: Sacrifice G3 Bazoik
Build Y2 Bazoik
Build Y3 G3
Build G3 Bazoik

52) Trydnt: Trade B1 R1 Trydnt

53) Felix: Move Y1 Bazoik G2

54) Trydnt: Attack Y1 G2

55) Felix: Move Y1 G3 G2
Catastrophe G2 Yellow

56) Trydnt: Trade G2 Y2 Rim

57) Felix: Sacrifice G3 Bazoik
Build G2 Felix
Build G3 Bazoik
Build Y1 Bazoik

58) Trydnt: Build R2 G2

59) Felix: Build R2 Out

60) Trydnt: Build Y1 Rim

61) Felix: Move Y1 Felix Out

62) Trydnt: Build Y2 Trydnt

63) Felix: Move R2 Out G3

64) Trydnt: Sacrifice Y1 Rim
Discover R2 G2 Y1 Y1

65) Felix: Sacrifice G3 Bazoik
Build G3 Bazoik
Build R2 G3
Build R3 Out

66) Trydnt: Build R3 G2

67) Felix: Sacrifice G3 Bazoik
Build G3 Bazoik
Build B1 G3
Build B2 G3

68) Trydnt: Move Y2 Rim G2

69) Felix: Sacrifice Y2 Bazoik
Discover B3 G3 Y2 Sun
Move R2 G3 Sun

70) Trydnt: Move R1 G2 Y1

71) Felix: Sacrifice G3 Bazoik
Build G3 Bazoik
Build B2 Sun
Build B3 Sun

	Felix: Good game! Thanks for playing.
	Trydnt: Well played. Until next time :)


33779)
Variants: "Unrated"
Started: 2018.2.28, Ended: 2018.2.28
Participants: Trydnt (S), kalleucastro (N)
Winner: Trydnt



33829)
Variants: "Unrated"
Started: 2018.3.1, Ended: 2018.4.21
Participants: Trydnt (S), Laurie_Menke (N)
Winner: Trydnt

1) Laurie_Menke: Homeworld Y3 R1 G3 *
	Laurie_Menke: Hi Trydnt! Thanks for the challenge... have a great game!  :)

2) Trydnt: Homeworld B3 G1 R3

3) Laurie_Menke: Build G1 Laurie_menke
	Trydnt: Never could resist a good challenge. Best of luck!

4) Trydnt: Build R1 Trydnt

5) Laurie_Menke: Discover G1 Laurie_menke B2 Presto

6) Trydnt: Trade R1 Y1 Trydnt

7) Laurie_Menke: Build G1 Laurie_menke

8) Trydnt: Build R1 Trydnt

9) Laurie_Menke: Build G2 Presto

10) Trydnt: Move R3 Trydnt Presto

11) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Presto
Build G2 Presto
Build G3 Laurie_menke
Catastrophe Presto G
	Laurie_Menke: So how long have you been playing Homeworlds?
	Trydnt: wil and I started playing sometime in August I believe. he got me on SDG in novemberish. so Andy didn't put you up to this? haha

12) Trydnt: Build Y1 Trydnt

13) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: No... I don't even know who you are... I guess I know you in real life?
	Laurie_Menke: OHHHH!!!!  SHOOOTTTTT!!!  I just realized this was tiny universe!!!!  OK... No matter... I'll be OK... I think...

14) Trydnt: Move Y1 Trydnt Presto

15) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

16) Trydnt: Build Y1 Trydnt
	Trydnt: haha yeah I don't know if I even did that on purpose. too many games going at same time. I believe we might have met at one of wil's games nights. I'm the one who used to live over at Whytestone. If you were at Constellation I was there too and hung out with the pyramid people for a lot of the time

17) Laurie_Menke: Discover G1 Laurie_menke Y2 Another
	Laurie_Menke: Cool!  What's your name?  :)  I totally loved that telephone system at Constellation! (And yeah, I can't handle more than one Homeworlds game at a time... LOL!)

18) Trydnt: Build Y2 Trydnt
	Trydnt: Alex. From England

19) Laurie_Menke: Build G2 Laurie_menke
	Laurie_Menke: :)

20) Trydnt: Sacrifice Y2 Trydnt
Discover Y1 Trydnt Y2 Y2
Discover Y1 Presto G3 G3

21) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Another
Build G2 Yellow
Build G3 Laurie_menke
	Laurie_Menke: It was good seeing you at game night Thursday! :)

22) Trydnt: Build Y3 Trydnt
	Trydnt: good seeing you too! my game with Andy ended up lasting for like 4 hours! haha intense

23) Laurie_Menke: Discover G1 Another Y3 Bigyellow
	Laurie_Menke: Wow! That's really good!  That means you have a shot of beating him soon!  :D

24) Trydnt: Sacrifice Y1 Y2
Discover R3 Presto G3 G33

25) Laurie_Menke: Discover G2 Yellow B3 Blue

26) Trydnt: Build R1 G33

27) Laurie_Menke: Trade G2 Y2 Blue

28) Trydnt: Build Y1 G3

29) Laurie_Menke: Sacrifice G2 Another
Build G2 Yellow
Build G2 Yellow

30) Trydnt: Sacrifice Y3 Trydnt
Move Y1 G3 Yellow
Move Y1 G3 Yellow
Move Y1 Trydnt Yellow
Catastrophe Yellow Y

31) Laurie_Menke: Discover Y2 Blue B2 Change

32) Trydnt: Build R2 Trydnt

33) Laurie_Menke: Sacrifice G2 Laurie_menke
Build Y1 Change
Build Y1 Change

34) Trydnt: Trade R2 Y2 Trydnt

35) Laurie_Menke: Trade Y2 R2 Change

36) Trydnt: Build Y1 Trydnt
	Laurie_Menke: Well, that was exciting!  LOL!
	Trydnt: twas interesting. I thought about it then didn't do it... then did it anyway haha

37) Laurie_Menke: Move Y1 Change Trydnt

38) Trydnt: Sacrifice Y2 Trydnt
Move R3 G33 Change
Move R3 Change Trydnt

39) Laurie_Menke: Build Y2 Trydnt

40) Trydnt: Discover Y1 Trydnt G2 G2

41) Laurie_Menke: Trade Y2 R2 Trydnt

42) Trydnt: Sacrifice R1 Trydnt
Attack R2 Trydnt

43) Laurie_Menke: Trade Y1 R1 Trydnt

44) Trydnt: Trade R3 Y3 Trydnt

45) Laurie_Menke: Build R2 Trydnt

46) Trydnt: Sacrifice R2 Trydnt
Attack R2 Trydnt
Attack R1 Trydnt

47) Laurie_Menke: Build G1 Laurie_menke

48) Trydnt: Move R2 Trydnt G2

49) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Laurie_menke
Build G2 Bigyellow
Build G3 Laurie_menke

50) Trydnt: Discover R2 G2 G3 G3

51) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build R2 Change
Build Y1 Change

52) Trydnt: Build R3 G33
	Trydnt: this has been hilariously fun
	Laurie_Menke: Glad you're enjoying!

53) Laurie_Menke: Sacrifice G2 Bigyellow
Build G2 Bigyellow
Build Y2 Change
	Trydnt: wriggly maneuvers like that are always interesting

54) Trydnt: Build Y2 G2

55) Laurie_Menke: Move R2 Change Bigyellow
	Laurie_Menke: Tis true!  :)

56) Trydnt: Build R3 G3

57) Laurie_Menke: Build R3 Bigyellow

58) Trydnt: Build Y2 Trydnt

59) Laurie_Menke: Sacrifice Y2 Change
Move Y1 Change Trydnt
Move Y1 Change Trydnt
Catastrophe Trydnt Y

60) Trydnt: Sacrifice Y2 G2
Move R3 G33 G2
Move R3 G3 Change

61) Laurie_Menke: Discover R2 Bigyellow Y2 Mediumyellow

62) Trydnt: Sacrifice Y1 G2
Move R3 Change Trydnt

63) Laurie_Menke: Discover G2 Laurie_menke B2 Blue

64) Trydnt: Trade R1 Y1 Trydnt

65) Laurie_Menke: Trade G2 Y2 Blue

66) Trydnt: Build Y1 Trydnt

67) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Bigyellow
Build G3 Laurie_menke
Build Y1 Blue

68) Trydnt: Trade Y1 B1 Trydnt

69) Laurie_Menke: Sacrifice G2 Bigyellow
Build G2 Bigyellow
Build R1 Mediumyellow

70) Trydnt: Move B1 Trydnt G2

71) Laurie_Menke: Move G2 Bigyellow Change

72) Trydnt: Build Y1 Trydnt

73) Laurie_Menke: Move R1 Mediumyellow Trydnt

74) Trydnt: Move Y1 Trydnt G2

75) Laurie_Menke: Move R2 Mediumyellow Trydnt

76) Trydnt: Build Y2 G2

77) Laurie_Menke: Move Y1 Blue Trydnt

78) Trydnt: Attack R2 Trydnt

79) Laurie_Menke: Sacrifice G2 Change
Build Y2 Trydnt
Build Y3 Trydnt
Catastrophe Trydnt Yellow

80) Trydnt: Sacrifice R2 Trydnt
Attack R1 Trydnt
Pass

81) Laurie_Menke: Move R3 Bigyellow Blue

82) Trydnt: Trade R3 Y3 Trydnt

83) Laurie_Menke: Move G1 Bigyellow Blue

84) Trydnt: Build B1 G2

85) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Blue
Build G3 Laurie_menke
Build Y1 Blue

86) Trydnt: Sacrifice Y2 G2
Move R3 G2 Bigyellow
Move B1 G2 G3

87) Laurie_Menke: Move G2 Bigyellow Blue

88) Trydnt: Build B1 G3
	Trydnt: shoulda gone with the first move
	Laurie_Menke: Nope. Then you would have just moved your r3 in and we'd be back where we started.  ;)

89) Laurie_Menke: Sacrifice Y2 Blue
Move G1 Blue Trydnt
Move G2 Blue Trydnt

90) Trydnt: Build B2 G3
	Trydnt: you could have won on that move
	Laurie_Menke: Oh, you're right... I should have sacrificed my g3!  Well, I'll win soon anyway.  ;)

91) Laurie_Menke: Sacrifice G1 Laurie_menke
Build G1 Trydnt
Catastrophe Trydnt Green

92) Trydnt: Build B3 G2

93) Laurie_Menke: Build G1 Laurie_menke

94) Trydnt: Build B3 G2

95) Laurie_Menke: Sacrifice G2 Blue
Build R2 Blue
Build R3 Change

96) Trydnt: Sacrifice B2 G3
Trade B1 G1 G2
Trade B1 G1 G3

97) Laurie_Menke: Trade R2 B2 Blue

98) Trydnt: Sacrifice Y3 Trydnt
Move G1 G2 Laurie_menke
Move G1 G3 G2
Move G1 G2 Laurie_menke
Catastrophe Laurie_menke G

	Trydnt: good game
	Laurie_Menke: Oh, man... I can't believe I did that! I completely forgot about your y3 at your homeworld. Wow. Well played! Congratulations!  :)
	Trydnt: yeah I didn't think you'd fall for it. It was the best move I could see that allowed me to give up blues that you couldn't take because it gave me that shot
	Laurie_Menke: ::sigh:: You are a worthy opponent!  :)
	Trydnt: as are you. if you had seen that I think I might have been toast


33826)
Variants: "Hard time"
Started: 2018.3.1, Ended: 2018.3.4
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B3 G1 R3

2) wil: Homeworld Y2 B1 G3

3) Trydnt: Build R1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Trade R1 G1 Trydnt
	wil: slow at work last couple days?


6) wil: Trade G1 Y1 Wil

7) Trydnt: Build R1 Trydnt

8) wil: Build Y1 Wil

9) Trydnt: Trade R1 Y1 Trydnt

10) wil: Trade Y1 B1 Wil

11) Trydnt: Build Y1 Trydnt

12) wil: Build B1 Wil

13) Trydnt: Build Y2 Trydnt

14) wil: Discover B1 Wil Y3 Y3

15) Trydnt: Discover Y1 Trydnt G2 G2

16) wil: Build B2 Wil
	wil: I am evidently not the best teacher...but persistence has paid off and I think you've finally got it!!

17) Trydnt: Build Y2 G2

18) wil: Discover Y1 Wil G3 G3
	Trydnt: Haha you were a great teacher. I think that it's just that I'm playing so much more now that I play online. My improvement has been pretty exponential. The last time you beat me was in January. Perhaps I'm ready to challenge Andy again! When are you having another games night at your place?

19) Trydnt: Trade Y2 B2 Trydnt
	wil: tonight, it is every thurs...  

20) wil: Discover B1 Wil Y3 Why3

21) Trydnt: Move B2 Trydnt G2

22) wil: Build G1 Wil

23) Trydnt: Build G2 Trydnt

24) wil: Build G2 Wil

25) Trydnt: Sacrifice G2 Trydnt
Build Y2 Trydnt
Build Y3 Trydnt

26) wil: Sacrifice G2 Wil
Build B2 Why3
Build B3 Y3

27) Trydnt: Build B3 G2

28) wil: Sacrifice B2 Why3
Trade B3 G3 Y3
Trade B2 R2 Wil

29) Trydnt: Build R1 Trydnt

30) wil: Discover B1 Y3 B2 B2

31) Trydnt: Move B2 G2 G3

32) wil: Sacrifice G3 Y3
Build B2 B2
Build B3 Why3
Build Y3 G3

33) Trydnt: Sacrifice R1 Trydnt
Attack Y1 G3

34) wil: Discover Y3 G3 G2 R2

35) Trydnt: Sacrifice Y2 Trydnt
Move Y3 Trydnt R2
Move Y3 R2 G3

36) wil: Trade B2 Y2 B2
	wil: lol...I just fired off my planned move without looking what you had done....oops

37) Trydnt: Build B2 G3

38) wil: Build R1 Wil

39) Trydnt: Build R1 Trydnt

40) wil: Move R2 Wil Why3

41) Trydnt: Move R1 Trydnt G2

42) wil: Move B1 Why3 R2

43) Trydnt: Discover Y1 G2 G3 G33

44) wil: Discover B3 Why3 G2 Y2

45) Trydnt: Move Y3 G3 B2

46) wil: Sacrifice Y2 B2
Move Y3 R2 Trydnt
Move B3 Y2 Trydnt

47) Trydnt: Sacrifice Y3 B2
Move Y2 G2 Trydnt
Move Y1 G33 G2
Move Y1 G2 Trydnt
Catastrophe Trydnt Y

48) wil: Sacrifice R2 Why3
Attack R3 Trydnt
Attack G1 Trydnt



33811)
Variants: "Hard time"
Started: 2018.3.4, Ended: 2018.3.9
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) wil: Homeworld Y3 B1 G3

3) Trydnt: Build G1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: Trade G1 B1 Wil

7) Trydnt: Build B2 Trydnt

8) wil: Build B2 Wil

9) Trydnt: Trade B1 Y1 Trydnt

10) wil: Discover B2 Wil G2 G2

11) Trydnt: Discover B2 Trydnt G3 G3

12) wil: Trade B1 R1 Wil

13) Trydnt: Build B1 G3

14) wil: Build R1 Wil

15) Trydnt: Build Y1 Trydnt

16) wil: Move R1 Wil G2

17) Trydnt: Trade B2 R2 G3

18) wil: Build R2 G2

19) Trydnt: Build Y1 Trydnt

20) wil: Trade R2 Y2 G2

21) Trydnt: Build R2 G3

22) wil: Build Y2 G2

23) Trydnt: Move Y1 Trydnt G3

24) wil: Discover B2 G2 Y3 Y3

25) Trydnt: Discover R2 G3 Y2 Y2

26) wil: Move Y2 G2 G3

27) Trydnt: Build Y3 G3

28) wil: Move Y2 G2 G3
Catastrophe G3 Y

29) Trydnt: Move Y1 Trydnt G3

30) wil: Build R2 G2

31) Trydnt: Build R3 G3

32) wil: Build R3 Wil

33) Trydnt: Sacrifice G3 Trydnt
Build R3 Y2
Build Y1 G3
Build Y2 Trydnt

34) wil: Trade R3 Y3 Wil

35) Trydnt: Move R3 G3 Trydnt

36) wil: Build R3 Wil

37) Trydnt: Trade R3 G3 Trydnt

38) wil: Trade R3 B3 Wil

39) Trydnt: Build R3 G3

40) wil: Build R3 Wil

41) Trydnt: Trade R3 B3 G3

42) wil: Sacrifice Y3 Wil
Move R1 G2 Wil
Move R1 Wil Y2
Move R1 Wil Y2
Catastrophe Y2 R

43) Trydnt: Build Y2 G3

44) wil: Trade R3 Y3 Wil

45) Trydnt: Build Y2 Trydnt

46) wil: Move Y3 Wil G2

47) Trydnt: Move Y2 G3 G2

48) wil: Attack Y2 G2

49) Trydnt: Sacrifice Y2 Trydnt
Move B3 G3 G2
Move B3 G2 Wil

50) wil: Sacrifice R2 G2
Attack B3 Wil
Pass

51) Trydnt: Sacrifice Y2 Trydnt
Move B1 G3 G2
Move B1 G2 Wil
Catastrophe Wil B

52) wil: Trade B2 R2 Y3

53) Trydnt: Build Y2 Trydnt

54) wil: Build G1 Wil

55) Trydnt: Discover Y1 G3 Y2 Y2

56) wil: Move Y3 G2 G3

57) Trydnt: Discover Y1 G3 G2 G22
	wil: ya got these...

58) wil: Discover G1 Wil B2 B2

59) Trydnt: Sacrifice Y2 Trydnt
Move Y1 G22 Wil
Move Y1 Y2 Wil

60) wil: Sacrifice Y2 G2
Move Y3 G3 B2
Move Y3 B2 Wil
Catastrophe Wil Y

	wil: good game


33828)
Variants: "Hard time"
Started: 2018.3.4, Ended: 2018.3.5
Participants: Felix (S), wil (N)
Winner: Felix

	wil: this was an oops...clicked on the wrong line...  I am will cancel... unless you have a desire to start another one...
	Felix: I'm always up for a game! 
	wil: Well the ladder makes more sense!


33840)
Variants: "Unrated"
Started: 2018.3.4, Ended: 2018.3.9
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B2 Y1 G3
	wil: How is it we were in only one game?

2) Trydnt: Homeworld B3 G1 R3

3) wil: Build G1 Wil

4) Trydnt: Build R1 Trydnt

5) wil: Build G1 Wil

6) Trydnt: Trade R1 Y1 Trydnt

7) wil: Discover G1 Wil B3 B3

8) Trydnt: Build Y1 Trydnt

9) wil: Build G2 B3

10) Trydnt: Build Y2 Trydnt

11) wil: Trade G2 Y2 B3

12) Trydnt: Discover Y2 Trydnt B2 B2

13) wil: Build G2 Wil

14) Trydnt: Discover Y2 B2 G3 G3

15) wil: Discover G2 Wil Y3 Y3

16) Trydnt: Build R1 Trydnt

17) wil: Build G2 B3

18) Trydnt: Discover Y1 Trydnt B2 B2

19) wil: Sacrifice G3 Wil
Build G2 Y3
Build G3 B3
Build G3 Wil

20) Trydnt: Sacrifice Y2 G3
Move R3 Trydnt B2
Move R3 B2 B3

21) wil: Sacrifice G3 B3
Build G3 Wil
Build G3 Y3
Build Y2 B3

22) Trydnt: Attack G2 B3

23) wil: Trade G3 R3 Wil

24) Trydnt: Sacrifice R3 B3
Attack Y2 B3
Attack Y2 B3
Attack G1 B3

25) wil: Discover G3 Wil Y3 Ynot

26) Trydnt: Sacrifice G2 B3
Build Y2 B2
Build Y3 B2

27) wil: Sacrifice G3 Y3
Build G2 Y3
Build G3 Ynot
Build G3 Wil

28) Trydnt: Build R1 Trydnt

29) wil: Build R1 Wil

30) Trydnt: Move R1 Trydnt B2

31) wil: Move R3 Wil B3

32) Trydnt: Sacrifice Y3 B2
Move Y2 B3 Wil
Move Y2 B3 Wil
Move G1 B3 B2

33) wil: Trade R3 Y3 B3

34) Trydnt: Build R2 Trydnt

35) wil: Attack Y2 Wil

36) Trydnt: Sacrifice R2 Trydnt
Attack R1 Wil
Attack Y2 Wil

37) wil: Move G1 Wil B3

38) Trydnt: Sacrifice Y2 B2
Move G1 B2 Y3
Catastrophe Y3 G
Discover Y1 B2 B3 B33

39) wil: Sacrifice G3 Ynot
Build G1 Ynot
Build G2 B3
Build G2 B3

40) Trydnt: Trade Y2 G2 Wil

41) wil: Trade Y3 R3 B3

42) Trydnt: Sacrifice G2 Wil
Build Y2 Wil
Build Y2 B33

43) wil: Move G3 Ynot B2

44) Trydnt: Build Y3 Trydnt

45) wil: Trade G3 Y3 B2

46) Trydnt: Build R2 Trydnt

47) wil: Build G2 Ynot

48) Trydnt: Trade R2 B2 Trydnt
	wil: this is so wierd

49) wil: Build G3 Wil

50) Trydnt: Build B1 Trydnt
	Trydnt: You totally thought you had me there

51) wil: Move G3 Wil B33
	wil: I've got so many dang immigrants at home I have not been able to keep the forces moving in other systems

52) Trydnt: Sacrifice Y2 B33
Move Y1 B33 Wil
Discover B1 Trydnt Y2 Y2

53) wil: Build G3 Wil
Catastrophe Wil Y

54) Trydnt: Build R2 Trydnt

55) wil: Sacrifice Y3 B2
Move G3 B33 Wil
Move G3 Wil Trydnt
Move G3 Wil Trydnt

56) Trydnt: Sacrifice R2 Trydnt
Attack G3 Trydnt
Attack G3 Trydnt
	wil: both of these games are weird.

57) wil: Move G2 Ynot B2

58) Trydnt: Trade R1 B1 Wil

59) wil: Trade G3 Y3 Wil

60) Trydnt: Sacrifice Y3 Trydnt
Move B1 Y2 Ynot
Move B1 Ynot Wil
Move B2 Trydnt Wil
Catastrophe Wil B



33693)
Variants: "Unrated"
Started: 2018.3.5, Ended: 2018.3.28
Participants: deanthebean (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R2 B3 G3

2) deanthebean: Homeworld G1 B2 R3

3) Felix: Build G1 Felix

4) deanthebean: Build R1 Deanthebean
	deanthebean: Sorry. I'm confused about the syntax here. I want to build a new ship. What do I need to type?

5) Felix: Build G1 Felix
	Felix: Looks like you figured it out! But all the commands are listed at the top of the page. Basically just "build r1 [name of system]". YOu can also just use the initial "b" as shorthand instead of the word build.

6) deanthebean: Build R1 Deanthebean

7) Felix: Trade G1 R1 Felix
	deanthebean: Thanks.

8) deanthebean: Trade R1 Y1 Deanthebean

9) Felix: Trade G1 Y1 Felix

10) deanthebean: Discover R1 Deanthebean G3 Dtb2

11) Felix: Build G1 Felix

12) deanthebean: Build R1 Dtb2

13) Felix: Build R2 Felix

14) deanthebean: Build R2 Dtb2

15) Felix: Discover R2 Felix Y1 Out

16) deanthebean: Build R3 Deanthebean

17) Felix: Build R3 Felix

18) deanthebean: Move Y1 Deanthebean Dtb2

19) Felix: Move R2 Out Dtb2
Catastrophe Dtb2 Red

20) deanthebean: Trade R3 Y3 Deanthebean

21) Felix: Trade R1 B1 Felix

22) deanthebean: Build R1 Deanthebean

23) Felix: Build B1 Felix

24) deanthebean: Build R1 Deanthebean

25) Felix: D B1 Felix G1 Out

26) deanthebean: Move R3 Deanthebean Dtb2

27) Felix: M R3 Felix Out

28) deanthebean: Build Y1 Deanthebean

29) Felix: Build Y2 Felix

30) deanthebean: Build Y2 Dtb2

31) Felix: Move Y1 Felix Out

32) deanthebean: Trade R1 B1 Deanthebean

33) Felix: Build B2 Out

34) deanthebean: Move B1 Deanthebean Dtb2

35) Felix: Discover B2 Out G3 Crumbs

36) deanthebean: Trade Y3 R3 Deanthebean

37) Felix: Build G2 Felix

38) deanthebean: Build B2 Dtb2

39) Felix: Sacrifice G2 Felix
Build B3 Crumbs
Build B3 Out

40) deanthebean: Discover Y1 Dtb2 R1 Newstar

41) Felix: Trade B3 Y3 Crumbs

42) deanthebean: Move R3 Dtb2 Newstar

43) Felix: Build B3 Crumbs

44) deanthebean: Build Y2 Deanthebean

45) Felix: Sacrifice G3 Felix
Build Y3 Felix
Build Y3 Out
Build G2 Felix

46) deanthebean: Trade R3 G3 Deanthebean

47) Felix: Move R3 Out Dtb2

48) deanthebean: Sacrifice Y2 Dtb2
Move B2 Dtb2 Out
Move B1 Dtb2 Out
Catastrophe Out Blue

49) Felix: Build B1 Crumbs

50) deanthebean: Build G2 Deanthebean

51) Felix: Sacrifice Y3 Out
Move G1 Felix Out
Move G1 Out Dtb2
Move G1 Dtb2 Deanthebean
Catastrophe Deanthebean Green
	deanthebean: I think I understand the rules but the game's not really clicking in my mind for some reason. 
	Felix: It takes quite a few games to start to get a handle on the "game within the game" so to speak. understanding the rules is one thing, but it's very hard to visualize the bigger strategy. One of the things that makes this game so great. Don't get discouraged, but keep playing, and it will start to click after a while. It took me a good 30 games or so before it started to click for me, and there are still games where I lose all focus!

52) deanthebean: Move R3 Newstar Crumbs

53) Felix: Sacrifice Y3 Felix
Move B1 Crumbs Deanthebean
Move B2 Crumbs Deanthebean
Move B3 Crumbs Deanthebean
Catastrophe Deanthebean Blue
	deanthebean: Thanks for the words of encouragement. I won't give up on it just yet. I hope you don't mind me playing on. It's obvious you will win but it's not yet obvious to me how you will do so. 
	Felix: No problem! Feel free to play me as much as you like. I can take it a bit easier on you next time, too :) But I think you can learn the most about this game by losing!
	Felix: And... that is how, haha. Watch out for those double eliminations with the large yellow sacrifices. They can be very dangerous!
	deanthebean: Wow. I did not see that coming! Well played. 
	Felix: Thanks, Good game! Feel free to play me again if you like.
	deanthebean: Thanks. I decided to find someone with a lower rating to practice against first :O
	Felix: Fair enough! The best way to learn though, is to play against better players and learn by losing against them!
	deanthebean: I'm sure you're right about that. 



33859)
Variants: "Hard time"
Started: 2018.3.6, Ended: 2018.3.18
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y1 B2 G3
	Felix: This game will suit me better anyway :)

2) wil: Homeworld B3 R1 G3

3) Felix: Build G1 Felix
	Draw5PlayAll: I hope Felix wins
	Felix: I hope wil wins.

4) wil: Build G1 Wil

5) Felix: Trade G1 Y1 Felix
	wil: I hope Felix slaughters me in a new and unique way...  I don't learn anything from winning.

6) wil: Trade G1 Y1 Wil

7) Felix: Build Y2 Felix
	wil: I got a local kid addicted to the game...was able to play 2/3 times a week or more, 3/4 games a night!  He moved away.  So if you run into Trydnt on here...he just started at the bottom of the ladder.

8) wil: Build Y2 Wil
	Felix: I have already played several games against him, actually!
	wil: I've got to cultivate more new players locally now.  I've only one, and he prefers volcano.

9) Felix: Discover Y1 Felix B3 Grin
	wil: trydnt pulls some interesting moves, that I had not thought of and improved my game some.  I am hoping the next tourney can bring in DL, TTT, Brocolli Commander, Two Short...

10) wil: Discover Y1 Wil G2 G2
	Felix: I'd love to get more people involved!

11) Felix: Build G1 Felix

12) wil: Build G1 Wil

13) Felix: Move G1 Felix Grin
	Draw5PlayAll: Aw, come on... that ladder is hard ENOUGH already! I got kicked from #1 within a few weeks of getting there!
	wil: The hardest thing about the ladder is getting thru the dead wood at the bottom.  Who cares about the top...the object is to play the people who are near the top....while I won't deny I enjoy winning...I like playing...and learning from my losses.

14) wil: Trade G1 R1 Wil
	Felix: I wanna be the very best
Like no one ever was
To catch them is my real test
To train them is my cause

15) Felix: Trade Y2 R2 Felix

16) wil: Build Y2 G2

17) Felix: Build Y2 Grin

18) wil: Trade Y2 G2 Wil

19) Felix: Discover Y1 Grin B2 Grontle

20) wil: Discover Y1 G2 B3 B3
	Felix: Huh... I missed the latest bracket results, since my first game has been taking so long. I'm surprised mneme was eliminated already!
	wil: Oh, you ain't the only one!  third time I played him...first was at Looney Con, then during the round robin he slaughtered me...I thought for sure if I ever got to the end I'd see him there...

21) Felix: Build G1 Grin
	Felix: Hmm, well overconfidence rendereth many mistakes, as they say!

22) wil: Trade G3 Y3 Wil

23) Felix: Move G1 Grin Grontle

24) wil: Build G1 Wil

25) Felix: Build G2 Felix

26) wil: Sacrifice G2 Wil
Build Y2 B3
Build Y3 G2
	wil: Looks like I'll be playing one of you soon...  I am really enjoying having the tourney going...  Look forward to the next one with a bigger herd!

27) Felix: Build Y3 Grontle
	Draw5PlayAll: How is the tournament going anyway? I think I lost whatever link or document would show the standings
	wil: we are getting to the wire....  a few more games...another month or two.   
	Felix: Yeah, I hope there's a better turn out for the next one. I also wish there was a way for games to be played in a more live fashion, but oh well.

Draw5, here's the spreadsheet with the bracket games: https://docs.google.com/spreadsheets/d/e/2PACX-1vTS8qjWyHSJHPXNsbwf3mBk26NugW7ASTKAfmXhgjIrcCjhaXtM-OYxpCEioJhhC4ZLvmEmfmdKaWPc/pubhtml?gid=0&single=true

28) wil: Move R1 Wil G2

29) Felix: Sacrifice G3 Felix
Build G2 Grontle
Build G3 Grin
Build G3 Felix
	wil: Looks like two more games will be starting soon! 

	Felix: It's about time, too! Lucky for you, both Babamots and ts52 are speedier players, so you should hopefully get your game before too much longer.

30) wil: Build G3 Wil

31) Felix: Sacrifice Y2 Grin
Move G1 Grontle Wil
Move G2 Grontle Wil
Catastrophe Wil Green

32) wil: Sacrifice Y2 G2
Move Y1 B3 Grontle
Move Y2 B3 Grontle
Catastrophe Grontle Y

33) Felix: Trade G3 Y3 Grin

34) wil: Build R1 G2

35) Felix: Build R2 Felix

36) wil: Move R1 G2 Wil

37) Felix: Move R2 Felix Grin

38) wil: Trade R1 G1 Wil

39) Felix: Build G1 Grin

40) wil: Build Y1 Wil

41) Felix: Discover G1 Grin B2 Guns

42) wil: Trade Y3 G3 Wil

43) Felix: Sacrifice G3 Felix
Build G2 Grin
Build G3 Guns
Build G3 Felix

44) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y1 Wil
Build Y2 G2

45) Felix: Trade G3 Y3 Guns

46) wil: Discover Y2 G2 G3 G3

47) Felix: Sacrifice G2 Grin
Build G2 Guns
Build Y2 Grin

48) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 G3
Build R1 G2

49) Felix: S Y3 Grin
M G1 Guns Wil
M G2 Guns Wil
C Wil Green
M Y3 Guns Wil

50) wil: Move Y3 G2 Wil
Catastrophe Wil Y
	Felix: Maybe not a new and unique way, but thanks for playing!



33855)
Variants: "Unrated"
Started: 2018.3.6, Ended: 2018.3.12
Participants: aren (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 R3 G3



33850)
Variants: "Unrated"
Started: 2018.3.6, Ended: 2018.3.6
Participants: Trydnt (S), aren (N)
Winner: Trydnt



33791)
Variants: "Unrated"
Started: 2018.3.9, Ended: 2018.8.13
Participants: wil (S), rosbi (N)
Winner: wil

1) rosbi: Homeworld B2 R1 G3

2) wil: Homeworld B3 Y2 G3
	rosbi: Hi ! I don't have a lot of spare time these days, but I think I can play at least one move a day. Is that ok for you or will the game be too slow for you ?
	wil: one move a day is fine..do what you can!  Have fun

3) rosbi: Build G1 Rosbi

4) wil: Build G1 Wil

5) rosbi: Trade G1 Y1 Rosbi

6) wil: Trade G1 R1 Wil

7) rosbi: Build Y1 Rosbi

8) wil: Build R1 Wil

9) rosbi: Build G1 Rosbi

10) wil: Discover R1 Wil B1 B1

11) rosbi: Discover Y1 Rosbi R3 R3

12) wil: Build R2 Wil

13) rosbi: Build Y1 Rosbi

14) wil: Trade R2 Y2 Wil

15) rosbi: Discover Y1 Rosbi B3 B3

16) wil: Discover Y2 Wil G1 G1

17) rosbi: Sacrifice G3 Rosbi
Build Y2 R3
Build Y3 Rosbi
Build Y3 B3

18) wil: Build Y3 G1

19) rosbi: Trade Y3 G3 Rosbi

20) wil: Discover Y2 G1 Y3 Y3

21) rosbi: Trade G1 B1 Rosbi

22) wil: Build R2 Wil

23) rosbi: Trade Y3 R3 B3

24) wil: Build Y3 G1

25) rosbi: Build B1 Rosbi

26) wil: Trade R2 B2 Wil

27) rosbi: Discover B1 Rosbi G3 G3

28) wil: Move B2 Wil G1

29) rosbi: Discover R3 B3 G1 G1'

30) wil: Build R2 Wil

31) rosbi: Build R2 G1'

32) wil: Sacrifice Y3 G1
Move R1 B1 Wil
Move R1 Wil G1'
Move R1 Wil G1'
Catastrophe G1' R

33) rosbi: Build Y3 Rosbi

34) wil: Build R1 Wil

35) rosbi: Trade B1 R1 G3

36) wil: Move R2 Wil G1

37) rosbi: Build G1 Rosbi

38) wil: Build R2 G1

39) rosbi: Build R2 G3

40) wil: Build R3 Wil

41) rosbi: Sacrifice Y1 B3
Discover R1 G3 B1 B1

42) wil: Trade R2 G2 G1

43) rosbi: Move B1 Rosbi G3

44) wil: Move Y3 G1 G3

45) rosbi: Sacrifice Y2 R3
Move R2 G3 B1
Move B1 G3 B1

46) wil: Discover R3 Wil B1 Be1

47) rosbi: Move Y3 Rosbi R3

48) wil: Build B2 G1

49) rosbi: Sacrifice Y1 R3
Discover B1 B1 G2 G2

50) wil: Build B3 G1

51) rosbi: Build B3 G2

52) wil: Trade B2 Y2 G1

53) rosbi: Build Y1 Rosbi

54) wil: Build R2 Wil

55) rosbi: Discover Y1 Rosbi R3 R3'

56) wil: Trade R2 B2 Wil

57) rosbi: Move G1 Rosbi R3

58) wil: M G2 G1 G3

59) rosbi: Build Y1 R3

60) wil: S G2 G3
B G1 Wil
B R2 Be1

61) rosbi: Build G2 R3

62) wil: M B2 G1 G3

63) rosbi: Move G1 R3 B1

64) wil: M R2 G1 R3'

65) rosbi: Move Y1 R3' B1

66) wil: M B3 G1 R3

67) rosbi: Attack B3 R3

68) wil: M G1 Wil Be1

69) rosbi: Build G2 Rosbi

70) wil: M Y2 G1 R3

71) rosbi: Attack Y2 R3

72) wil: B G1 Be1

73) rosbi: Move Y3 R3 G2

74) wil: Move R1 Wil B1

75) rosbi: Attack R1 B1

76) wil: M Y3 G3 B1

77) rosbi: Sacrifice Y2 R3
Move R2 B1 G2
Move R1 B1 G2

78) wil: S R2 Be1
A Y1 B1
A R1 B1

79) rosbi: Build Y2 R3

80) wil: Build R2 Be1

81) rosbi: Sacrifice G1 B1
Build G1 R3

82) wil: M Y1 B1 G3

83) rosbi: Sacrifice Y1 R3
Discover R2 G2 Y1 Y1

84) wil: M Y1 G3 Be1

85) rosbi: Move B3 G2 Y1

86) wil: M R2 Be1 Wil

87) rosbi: Sacrifice Y3 G2
Move B1 G2 Y1
Move B1 Y1 Wil
Move B3 Y1 Wil
Catastrophe Wil Blue

88) wil: B Y3 Be1

89) rosbi: Move G1 R3 Y1

90) wil: Move R3 Be1 G3

91) rosbi: Move B3 R3 Y1

92) wil: B B1 G3

93) rosbi: Move B3 Y1 R3'

94) wil: Sacrifice Y3 B1
Move R2 R3' Rosbi
Move R3 G3 Rosbi
Move R1 B1 Y3

95) rosbi: Sacrifice R1 G2
Attack R3 Rosbi

96) wil: S G1 Be1
B R1 Rosbi
C Rosbi R

97) rosbi: Build Y3 Rosbi

98) wil: Trade Y1 B1 Be1

99) rosbi: Sacrifice Y3 Rosbi
Move G3 Rosbi G3
Move G2 Rosbi G3
Move G1 Y1 G3
Catastrophe G3 Green

100) wil: M Y3 Be1 Rosbi
	wil: s y3 be1
m b1 be1 rosbi
m b1 g3 rosbi
m b2 g3 rosbi
c rosbi b

101) rosbi: Sacrifice Y2 R3
Move G2 R3 Rosbi
Move B3 R3' Rosbi
	rosbi: yeah ! I can survive one more turn :)
	wil: Noice!

	rosbi: Yeah, I'm dead :)
Thank you very much for your patience, I didn't have a lot of spare time this year -> longest HW game ever.
	wil: Lol, you kept coming back....so I left your game on "the opponent is outta time shelf"


33861)
Variants: "Unrated"
Started: 2018.3.9, Ended: 2018.5.11
Participants: Trydnt (S), rosbi (N)
Winner: Trydnt

1) rosbi: Homeworld G3 B2 Y3

2) Trydnt: Homeworld B2 Y2 G3 *
	rosbi: Hi !
	Trydnt: Hello and good luck!

3) rosbi: Build Y1 Rosbi

4) Trydnt: Build G1 Trydnt

5) rosbi: Trade Y1 G1 Rosbi

6) Trydnt: Trade G1 R1 Trydnt

7) rosbi: Build Y1 Rosbi

8) Trydnt: Build G1 Trydnt

9) rosbi: Discover Y1 Rosbi R1 R1

10) Trydnt: Build R1 Trydnt

11) rosbi: Build Y1 Rosbi

12) Trydnt: Build R2 Trydnt

13) rosbi: Trade Y3 R3 Rosbi

14) Trydnt: Trade R2 Y2 Trydnt

15) rosbi: Build Y1 Rosbi

16) Trydnt: Discover Y2 Trydnt G3 G3

17) rosbi: Build R2 Rosbi

18) Trydnt: Trade R1 B1 Trydnt

19) rosbi: Move G1 Rosbi R1

20) Trydnt: Build B1 Trydnt

21) rosbi: Trade Y1 B1 Rosbi

22) Trydnt: Build R1 Trydnt

23) rosbi: Move B1 Rosbi R1

24) Trydnt: Move B1 Trydnt G3

25) rosbi: Discover R2 Rosbi G1 G1

26) Trydnt: Move Y2 G3 R1

27) rosbi: Sacrifice Y1 R1
Discover B1 R1 G2 G2

28) Trydnt: Attack G1 R1

29) rosbi: Build Y1 Rosbi

30) Trydnt: Sacrifice G3 Trydnt
Build G2 R1
Build G2 R1
Build G3 Trydnt

31) rosbi: Build R2 G1

32) Trydnt: Move G2 R1 G3

33) rosbi: Sacrifice Y1 Rosbi
Move R2 G1 G2

34) Trydnt: Build Y1 R1

35) rosbi: Build R2 G2

36) Trydnt: Move R1 Trydnt G3

37) rosbi: Build R3 G1

38) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 G3
Pass

39) rosbi: Trade R2 Y2 G2

40) Trydnt: Build R2 Trydnt

41) rosbi: Sacrifice Y2 G2
Move R2 G2 G3
Move R2 G1 G3
Catastrophe G3 Red

42) Trydnt: Trade G2 Y2 G3

43) rosbi: Build B2 G2

44) Trydnt: Move B1 Trydnt R1

45) rosbi: Trade B2 G2 G2

46) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B2 R1
Build B3 G3

47) rosbi: Build B3 G2

48) Trydnt: Sacrifice Y2 R1
Move G1 R1 G2
Move G2 R1 G2
Catastrophe G2 G

49) rosbi: Build Y1 Rosbi

50) Trydnt: Trade B2 G2 R1

51) rosbi: Move Y1 Rosbi G1

52) Trydnt: Build B1 R1

53) rosbi: Move R3 Rosbi R1

54) Trydnt: Sacrifice Y2 G3
Move G2 R1 Rosbi
Move B1 R1 Rosbi

55) rosbi: Move R3 G1 Rosbi

56) Trydnt: Sacrifice G2 Rosbi
Build B2 Rosbi
Build B3 Rosbi

57) rosbi: Sacrifice Y1 G1
Move R3 R1 Trydnt

	Trydnt: you could have kept going there but yeah probably was over


33841)
Variants: "Hard time"
Started: 2018.3.9, Ended: 2018.3.14
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) wil: Homeworld G3 Y1 Y3 *

3) Trydnt: Build G1 Trydnt

4) wil: Build Y1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: Discover Y1 Wil G2 Four

7) Trydnt: Build B1 Trydnt

8) wil: Build Y2 Four

9) Trydnt: Discover B1 Trydnt G3 G3

10) wil: Discover Y2 Four B3 Score

11) Trydnt: Build B1 Trydnt

12) wil: Trade Y2 B2 Score

13) Trydnt: Build B2 G3

14) wil: Build Y2 Wil

15) Trydnt: Trade B2 Y2 G3

16) wil: Discover Y2 Wil G2 Ago

17) Trydnt: Discover B1 Trydnt Y3 Y3

18) wil: Sacrifice Y1 Four
Move B2 Score Ago
	wil: this one will not work

19) Trydnt: Build G1 Trydnt

20) wil: Build Y1 Ago

21) Trydnt: Build G1 Trydnt

22) wil: Trade Y1 R1 Ago

23) Trydnt: Move G1 Trydnt Y3

24) wil: Build R1 Ago

25) Trydnt: Trade B1 R1 Y3

26) wil: Move R1 Ago Wil

27) Trydnt: Build R2 Y3

28) wil: Build R2 Ago

29) Trydnt: Build G1 Y3

30) wil: Discover R2 Ago Y3 Brought

31) Trydnt: Sacrifice G3 Trydnt
Build G2 Trydnt
Build G2 Y3
Build G3 Trydnt

32) wil: Build R2 Wil

33) Trydnt: Discover R2 Y3 B2 B2

34) wil: Build R3 Ago

35) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 Y3
Build R3 B2

36) wil: Move R3 Ago G3

37) Trydnt: Sacrifice Y2 G3
Discover B1 G3 Y2 Y2
Move B1 Y2 Y3

38) wil: Build Y1 Ago

39) Trydnt: Trade R2 Y2 B2

40) wil: Build R2 G3
	wil: yup, a bad plan, poorly executed

41) Trydnt: Sacrifice G2 Trydnt
Build G2 Trydnt
Build Y2 B2

42) wil: Sacrifice B2 Ago
Trade Y1 B1 Ago
Trade R2 B2 Brought

43) Trydnt: Move Y2 B2 Wil

44) wil: Sacrifice B2 Brought
Trade Y3 B3 Wil
Trade R3 Y3 G3

45) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y1 Wil
Build Y3 B2

46) wil: Build R2 G3

47) Trydnt: Sacrifice G2 Trydnt
Build G2 Trydnt
Build R3 B2

48) wil: Attack Y2 Wil

49) Trydnt: Move Y2 B2 Wil
Catastrophe Wil Y



33870)
Variants: "Hard time"
Started: 2018.3.9, Ended: 2018.3.25
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G3 B2 Y3

2) wil: Homeworld Y3 B1 G3

3) Trydnt: Build Y1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Build Y1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Trade Y1 B1 Trydnt

8) wil: Build Y1 Wil

9) Trydnt: Build B1 Trydnt

10) wil: Discover Y1 Wil G2 And

11) Trydnt: Discover B1 Trydnt G1 G1

12) wil: Build Y2 And

13) Trydnt: Build B2 G1

14) wil: Build Y2 Wil

15) Trydnt: Build B2 Trydnt

16) wil: Trade Y2 R2 Wil

17) Trydnt: Build B3 G1

18) wil: Move Y2 And G1

19) Trydnt: Trade B2 R2 Trydnt

20) wil: Sacrifice R2 Wil
Attack B1 G1
Attack B2 G1

21) Trydnt: Sacrifice R2 Trydnt
Attack B2 G1
Attack B1 G1

22) wil: Build Y2 Wil

23) Trydnt: Trade B3 Y3 G1

24) wil: Build Y2 G1

25) Trydnt: Discover Y3 G1 B2 B2

26) wil: Trade Y2 R2 Wil

27) Trydnt: Build B3 G1

28) wil: Sacrifice R2 Wil
Attack B1 G1
Attack B2 G1

29) Trydnt: Sacrifice B1 Trydnt
Trade B3 R3 G1

30) wil: Sacrifice B2 G1
Trade Y2 R2 G1
Trade Y2 R2 G1

31) Trydnt: Attack B1 G1

32) wil: Attack B1 G1

33) Trydnt: Attack B1 G1

34) wil: Attack B1 G1

35) Trydnt: Build Y2 Trydnt

36) wil: Build Y2 And

37) Trydnt: Trade Y1 R1 Trydnt

38) wil: Trade Y1 R1 Wil
	wil: are you resigning?  Can't think of anything other than reversing my move?

39) Trydnt: Build R1 Trydnt

40) wil: Build R2 Wil

41) Trydnt: Sacrifice Y2 Trydnt
Move R1 Trydnt G1
Discover R3 G1 G2 G2

42) wil: Trade R2 Y2 G1

43) Trydnt: Build R2 G1

44) wil: Sacrifice R1 Wil
Attack R2 G1

45) Trydnt: Build R1 G1
Catastrophe G1 R

46) wil: Build B1 G1

47) Trydnt: Move Y3 B2 G1

48) wil: Build Y1 G1

49) Trydnt: Move Y3 G1 G2

50) wil: Move B1 G1 And

51) Trydnt: Move R3 G2 G1

52) wil: Sacrifice Y2 G1
Discover B1 G1 G2 In
Move Y1 G1 In

53) Trydnt: Move Y3 G2 G1

54) wil: Move B1 In Wil

55) Trydnt: Move R3 G1 And
	wil: I'll need you to make a mistake to win this one...

56) wil: Sacrifice Y2 And
Discover Y1 And G1 Gwon
Move B1 And Gwon

57) Trydnt: Move Y3 G1 And

58) wil: Move B1 Gwon In

59) Trydnt: Discover R3 And Y1 Y1

60) wil: Build B2 Wil

61) Trydnt: Build Y2 And

62) wil: Discover B1 Wil Y2 Y2

63) Trydnt: Build Y2 Trydnt

64) wil: Sacrifice G3 Wil
Build B2 Y2
Build B3 In
Build B3 Wil

65) Trydnt: Move R3 Y1 Y2

66) wil: Sacrifice B2 Y2
Trade B3 G3 Wil
Trade B3 R3 In

67) Trydnt: Attack B1 Y2

68) wil: Build B2 In

69) Trydnt: Discover B1 Y2 Y1 Y1

70) wil: Build B3 In

71) Trydnt: Move B1 Y1 In
Catastrophe In B

72) wil: Build B1 Wil

73) Trydnt: Trade Y2 B2 Trydnt

74) wil: Trade B2 G2 Wil

75) Trydnt: Move B2 Trydnt Gwon

76) wil: Discover Y1 Gwon R2 R2

77) Trydnt: Build R1 Trydnt
	wil: Poker wednesday...I am outta town thursday

78) wil: M B1 Wil In

79) Trydnt: Move R1 Trydnt Gwon
	wil: well that was stupid...somebody was blind...dang screwed up galaxy positioning (gotta blame something, tis tradition)

80) wil: Build B1 In

81) Trydnt: Build R1 Gwon

82) wil: Sacrifice G2 Wil
Build R2 In
Build R3 Wil

83) Trydnt: Sacrifice Y2 And
Move R1 Gwon In
Move R1 Gwon In
Catastrophe In R

84) wil: Move R3 Wil In

85) Trydnt: Discover R3 Y2 Y1 Y1

86) wil: Build Y2 In

87) Trydnt: Build Y2 And

88) wil: Move B1 In Gwon

89) Trydnt: Sacrifice R1 Trydnt
Attack B1 Gwon

90) wil: Build B2 In

91) Trydnt: Sacrifice Y2 And
Move B1 Gwon And
Move B2 Gwon R2

92) wil: Sacrifice Y1 R2
Discover B1 In G1 G1

93) Trydnt: Build B3 And

94) wil: Build B3 G1

95) Trydnt: Trade B3 G3 And

96) wil: Build B3 In

97) Trydnt: Build B3 And

98) wil: Trade B3 R3 G1

99) Trydnt: Trade B1 R1 And

100) wil: Move Y1 In G1

101) Trydnt: Sacrifice G3 And
Build B1 And
Build B3 R2
Build Y1 And

102) wil: Build Y2 G1

103) Trydnt: Trade B2 Y2 R2

104) wil: Build B2 G1

105) Trydnt: Trade R1 G1 And

106) wil: Build G1 Wil

107) Trydnt: Move G1 And Y1

108) wil: Discover G1 Wil R2 Are2

109) Trydnt: Build R1 Y1

110) wil: Discover B3 In R1 R1

111) Trydnt: Move B3 And Wil

112) wil: Attack B3 Wil

113) Trydnt: Move B3 R2 Wil

114) wil: Attack B3 Wil

115) Trydnt: Move B1 And Wil
Catastrophe Wil B

116) wil: Build R1 In

117) Trydnt: Move R3 Y1 Trydnt

118) wil: Trade B3 G3 R1

119) Trydnt: Sacrifice Y3 Trydnt
Move Y2 R2 Wil
Move Y1 And Wil
Move Y3 And Wil
Catastrophe Wil Y



33871)
Variants: "Hard time"
Started: 2018.3.9, Ended: 2018.3.14
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) Trydnt: Homeworld B3 Y2 G3

3) wil: Build G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: Trade G1 R1 Wil

6) Trydnt: Trade G1 R1 Trydnt

7) wil: Build R2 Wil

8) Trydnt: Build R2 Trydnt

9) wil: Trade R1 Y1 Wil

10) Trydnt: Discover R2 Trydnt G1 G1

11) wil: Build Y1 Wil

12) Trydnt: Build R1 Trydnt

13) wil: Build Y1 Wil

14) Trydnt: Trade R1 B1 Trydnt

15) wil: Discover Y1 Wil G3 Our

16) Trydnt: Move B1 Trydnt G1

17) wil: Sacrifice G3 Wil
Build Y2 Our
Build Y2 Our
Build Y3 Wil

18) Trydnt: Build B1 G1

19) wil: Discover Y1 Our G1 Fathers

20) Trydnt: Build G1 Trydnt

21) wil: Build Y3 Fathers

22) Trydnt: Build G2 Trydnt

23) wil: Build Y3 Our

24) Trydnt: Move G1 Trydnt Fathers

25) wil: Move Y3 Our G1

26) Trydnt: Sacrifice G3 Trydnt
Build G2 Fathers
Build G2 Fathers
Build G3 Trydnt
Catastrophe Fathers G

27) wil: Build Y1 G1

28) Trydnt: Trade R2 G2 G1

29) wil: Build Y3 Our

30) Trydnt: Build G1 G1

31) wil: Discover Y1 G1 G3 Continent

32) Trydnt: Build G1 G1
Catastrophe G1 G

33) wil: Build Y3 Continent

	Trydnt: gotta stop letting you freeze me out of yellow
	wil: it does make it hard


33872)
Variants: "Hard time"
Started: 2018.3.9, Ended: 2018.3.26
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld Y3 B2 G3

2) wil: Homeworld G2 Y1 B3

3) Trydnt: Build G1 Trydnt

4) wil: Build B1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: Trade B3 Y3 Wil

7) Trydnt: Build G1 Trydnt

8) wil: Build Y1 Wil

9) Trydnt: Discover B1 Trydnt G1 G1

10) wil: Trade Y1 G1 Wil

11) Trydnt: Trade G1 R1 Trydnt

12) wil: Build Y1 Wil

13) Trydnt: Build R1 Trydnt

14) wil: Discover G1 Wil B3 Seven

15) Trydnt: Build R1 Trydnt

16) wil: Move Y1 Wil Seven

17) Trydnt: Move R1 Trydnt G1

18) wil: Build Y1 Wil

19) Trydnt: Build R2 G1

20) wil: Build Y2 Seven

21) Trydnt: Trade R2 Y2 G1

22) wil: Trade Y3 R3 Wil

23) Trydnt: Build R2 G1

24) wil: Build R2 Wil

25) Trydnt: Discover R1 G1 Y3 Y3

26) wil: Build Y2 Wil

27) Trydnt: Sacrifice G3 Trydnt
Build R2 Y3
Build R3 Trydnt
Build Y3 G1

28) wil: Move R2 Wil Seven

29) Trydnt: Trade R3 G3 Trydnt

30) wil: Build R3 Seven

31) Trydnt: Build R3 G1

32) wil: Trade R3 G3 Seven

33) Trydnt: Discover Y3 G1 R3 R3

34) wil: Discover Y2 Seven B2 Anew

35) Trydnt: Build G1 Trydnt

36) wil: Trade Y2 B2 Wil

37) Trydnt: Build Y2 G1

38) wil: Discover B2 Wil G3 Nation

39) Trydnt: Discover R2 G1 B3 B3

40) wil: Move G1 Seven Anew

41) Trydnt: Trade R2 G2 B3

42) wil: Build G2 Seven

43) Trydnt: Build R2 G1

44) wil: Sacrifice G3 Seven
Build G3 Seven
Build B1 Wil
Build B3 Nation

45) Trydnt: Sacrifice G2 B3
Build B3 G1
Pass

46) wil: Build G2 Anew

47) Trydnt: Move R3 G1 Anew

48) wil: Sacrifice Y2 Anew
Move G1 Anew G1
Move G2 Anew G1

49) Trydnt: Sacrifice Y3 R3
Move Y2 G1 Anew
Move B3 G1 Y3
Move Y2 G1 Anew

50) wil: Sacrifice G3 Seven
Build G3 Seven
Build R3 Seven
Build Y2 Seven

51) Trydnt: Attack G2 G1

52) wil: Sacrifice Y1 Seven
Move G2 Seven G1
Catastrophe G1 G

53) Trydnt: Discover Y2 Anew G1 G1

54) wil: Trade B3 Y3 Nation

55) Trydnt: Discover G1 Trydnt Y1 Y1

56) wil: Move R3 Seven G1

57) Trydnt: Move Y2 G1 Y3

58) wil: Build R2 Seven

59) Trydnt: Build G1 Y1

60) wil: Move R2 Seven Y1

61) Trydnt: Build G2 Trydnt

62) wil: Attack G1 Y1

63) Trydnt: Build G2 Y1

64) wil: Attack G2 Y1

65) Trydnt: Move G2 Trydnt Y1
Catastrophe Y1 G

66) wil: Move Y2 Seven G1

67) Trydnt: Move R3 Anew Y1

68) wil: Move R2 Y1 Nation

69) Trydnt: Move R2 Y3 G1

70) wil: Sacrifice Y3 Nation
Move R3 G1 Anew
Move Y1 Wil Y3
Move Y2 G1 Y3
Catastrophe Y3 Y

71) Trydnt: Move R3 Y1 Nation

72) wil: Sacrifice B2 Nation
Trade R2 G2 Nation
Trade G2 R2 Nation

73) Trydnt: Move Y2 Anew Nation

74) wil: Attack Y2 Nation

75) Trydnt: Sacrifice R2 G1
Attack Y2 Nation
Attack R2 Nation

76) wil: Build B1 Wil

77) Trydnt: Build Y1 Nation

78) wil: Move B1 Wil Seven

79) Trydnt: Build Y1 Nation

80) wil: Discover B1 Wil Y3 Y3

81) Trydnt: Discover Y2 Nation G2 G2

82) wil: Sacrifice G3 Seven
Build B2 Wil
Build B3 Seven
Build B3 Y3

83) Trydnt: Sacrifice G3 Trydnt
Build Y2 Nation
Build Y2 G2
Build Y3 G2

84) wil: Trade B3 G3 Seven

85) Trydnt: Discover Y2 G2 B3 B3

86) wil: Build R1 Seven

87) Trydnt: Build R2 Nation

88) wil: Trade B3 G3 Y3

89) Trydnt: Move R2 Nation G2

90) wil: Build B3 Wil

91) Trydnt: Move R2 G2 B3
	wil: there you go...thought you'd like to feel what a yellow monopoly felt like!

92) wil: Build G1 Y3

93) Trydnt: Trade R2 G2 B3

94) wil: Sacrifice G3 Y3
Build G1 Seven
Build G1 Seven
Build G3 Y3

95) Trydnt: Build R2 Nation

96) wil: Move G1 Y3 Anew

97) Trydnt: Move Y3 G2 B3

98) wil: Pass

99) Trydnt: Pass

100) wil: Pass

101) Trydnt: Sacrifice Y1 Nation
Discover R3 Nation Y1 Y1

102) wil: Move G3 Y3 G2

103) Trydnt: Move R3 Y1 Y3
	Trydnt: this is weird

104) wil: Sacrifice R1 Seven
Attack Y2 G2

105) Trydnt: Sacrifice Y2 B3
Discover R2 Nation Y1 Y1
Discover Y2 Nation R1 R1

106) wil: Sacrifice Y2 G2
Move G3 G2 R1
Move G3 R1 Trydnt
	wil: another fine mess you've gotten us into
	wil: 53 moves...



33873)
Variants: "Hard time"
Started: 2018.3.9, Ended: 2018.3.17
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: Homeworld B2 R1 G3

2) Trydnt: Homeworld B3 R2 G3
	wil: 6 games of experimentation!

3) wil: Build G1 Wil

4) Trydnt: Build G1 Trydnt
	wil: Think this is the first time ever we've both started with a home defense system

5) wil: Trade G1 R1 Wil
	Trydnt: I don' think so but maybe

6) Trydnt: Trade G1 R1 Trydnt

7) wil: Build R2 Wil

8) Trydnt: Build R2 Trydnt

9) wil: Trade R1 Y1 Wil

10) Trydnt: Trade R2 Y2 Trydnt

11) wil: Build Y1 Wil

12) Trydnt: Build G1 Trydnt

13) wil: Build G1 Wil

14) Trydnt: Trade G1 B1 Trydnt

15) wil: Trade G1 B1 Wil

16) Trydnt: Build G1 Trydnt

17) wil: Build G1 Wil

18) Trydnt: Build Y1 Trydnt

19) wil: Build Y2 Wil

20) Trydnt: Sacrifice Y2 Trydnt
Discover Y1 Trydnt G1 G1
Discover G1 Trydnt B1 B1

21) wil: Discover Y1 Wil G3 Gave

22) Trydnt: Build G2 B1

23) wil: Build G2 Wil

24) Trydnt: Build Y2 G1

25) wil: Discover G2 Wil Y3 To

26) Trydnt: Discover Y2 G1 G2 G2

27) wil: Discover Y1 Wil B3 This

28) Trydnt: Sacrifice G2 B1
Build Y2 G1
Build Y3 G2

29) wil: Sacrifice G2 To
Build Y3 Wil
Build Y3 Gave

30) Trydnt: Build G2 Trydnt

31) wil: Sacrifice Y2 Wil
Move Y1 This G2
Move Y1 Gave G2
Catastrophe G2 Y

32) Trydnt: Sacrifice G3 Trydnt
Build G2 B1
Build G2 B1
Build G3 Trydnt

33) wil: Move B1 Wil Gave

34) Trydnt: Trade G2 Y2 B1

35) wil: Build B2 Gave

36) Trydnt: Sacrifice G3 Trydnt
Build G2 B1
Build G3 Trydnt
Build Y1 G1

37) wil: Discover B1 Gave Y1 Conceived

38) Trydnt: Move Y1 G1 Gave

39) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 Conceived
Build B3 Gave

40) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G1
Build Y3 B1

41) wil: Sacrifice Y3 Gave
Move R2 Wil Gave
Move B1 Conceived Trydnt
Move B2 Conceived Trydnt
Catastrophe Trydnt B

42) Trydnt: Sacrifice G2 B1
Build Y1 Gave
Build Y3 B1

43) wil: Attack Y1 Gave

44) Trydnt: Sacrifice Y3 B1
Move G1 B1 Gave
Move G2 B1 Gave
Move G2 Trydnt Gave
Catastrophe Gave G

45) wil: Build Y1 Wil

46) Trydnt: Trade Y2 B2 B1

47) wil: Trade G1 R1 Wil

48) Trydnt: Move B2 B1 Trydnt

49) wil: Build R2 Wil

50) Trydnt: Sacrifice Y2 G1
Discover R1 Trydnt Y3 Y3
Move R1 Y3 Wil
Catastrophe Wil R

51) wil: Trade Y1 R1 Wil

52) Trydnt: Build B1 Trydnt

53) wil: Build R1 Wil

54) Trydnt: Sacrifice B2 Trydnt
Trade Y2 B2 G1
Trade Y1 B1 G1

55) wil: Build R1 Wil

56) Trydnt: Sacrifice Y3 B1
Move B2 G1 Wil
Move B1 G1 Wil
Discover B1 Trydnt Y1 Y1

57) wil: Trade G3 B3 Wil
Catastrophe Wil B

	wil: lol...my brain cells are not communicating at all!!

	Trydnt: that was interesting. one of the only games I think where we both blew half the others hw without a full plan
	wil: possibly


33876)
Started: 2018.3.9, Ended: 2018.4.23
Participants: Trydnt (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) Trydnt: Homeworld B3 Y2 G3

3) Draw5PlayAll: Homeworld B3 R1 G3

4) Trydnt: Build G1 Trydnt

5) Draw5PlayAll: Build G1 Draw5playall

6) Trydnt: Trade G1 R1 Trydnt

7) Draw5PlayAll: Trade G1 R1 Draw5playall

8) Trydnt: Build R2 Trydnt

9) Draw5PlayAll: Build R2 Draw5playall

10) Trydnt: Build R2 Trydnt

11) Draw5PlayAll: Trade R2 Y2 Draw5playall

12) Trydnt: Trade R2 Y2 Trydnt

13) Draw5PlayAll: Build R2 Draw5playall

14) Trydnt: Build R2 Trydnt

15) Draw5PlayAll: Discover R2 Draw5playall G2 G2

16) Trydnt: Discover R2 Trydnt G1 G1

17) Draw5PlayAll: Build R3 G2

18) Trydnt: Build R3 G1

19) Draw5PlayAll: Trade R1 B1 Draw5playall

20) Trydnt: Trade R2 B2 Trydnt

21) Draw5PlayAll: Build Y1 Draw5playall

22) Trydnt: Build B1 Trydnt

23) Draw5PlayAll: Move B1 Draw5playall G2

24) Trydnt: Move B1 Trydnt G1
	Draw5PlayAll: I like how no one is Grabbing All of One Color.

25) Draw5PlayAll: Move Y1 Draw5playall G2

26) Trydnt: Move Y2 Trydnt G1
	Trydnt: yeah monopolies are a good way to win but make for boring games

27) Draw5PlayAll: Build Y1 G2

28) Trydnt: Discover R2 G1 G2 G22

29) Draw5PlayAll: Discover Y1 G2 G1 Liberty

30) Trydnt: Sacrifice G3 Trydnt
Build R1 G1
Build R2 G22
Build R3 Trydnt
	Draw5PlayAll: The statue of liberty is green, so...

31) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y1 G2
Build Y3 Liberty
Build Y3 Draw5playall

32) Trydnt: Build Y3 G1

33) Draw5PlayAll: Trade Y3 G3 Draw5playall

34) Trydnt: Discover R3 G1 Y3 Y3

35) Draw5PlayAll: Build G1 Draw5playall

36) Trydnt: Trade R3 G3 Trydnt

37) Draw5PlayAll: Trade R2 B2 G2

38) Trydnt: Build G2 Trydnt

39) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 G2 G1
Move Y1 G2 G1
Catastrophe G1 Yellow

40) Trydnt: Sacrifice B2 Trydnt
Trade R1 Y1 G1
Trade R2 Y2 G22

41) Draw5PlayAll: Build G3 Draw5playall

42) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y1 G22
Build R1 Y3

43) Draw5PlayAll: Trade G3 Y3 Draw5playall

44) Trydnt: Sacrifice G2 Trydnt
Build R2 G22
Build Y2 G1

45) Draw5PlayAll: Move Y1 Liberty G2

46) Trydnt: Move R2 G22 G1

47) Draw5PlayAll: Build G2 Draw5playall

48) Trydnt:
Build G3 Trydnt

49) Draw5PlayAll: Move B1 G2 Liberty

50) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 G1
Build R3 G22

51) Draw5PlayAll: Move G2 Draw5playall G2

52) Trydnt: Trade R2 B2 G1

53) Draw5PlayAll: Build R2 G2

54) Trydnt: Move B2 G1 G22

55) Draw5PlayAll: Move G2 G2 Liberty

56) Trydnt: Move R2 G1 G22

57) Draw5PlayAll: Move G1 Draw5playall G2

58) Trydnt: Discover G3 Trydnt B1 B1

59) Draw5PlayAll: Move R2 G2 Liberty

60) Trydnt: Sacrifice Y2 G22
Move R3 G22 Draw5playall
Discover G3 B1 B3 B3

61) Draw5PlayAll: Attack R3 Draw5playall

62) Trydnt: Sacrifice Y2 G1
Move R2 G22 Draw5playall
Move R2 G22 Draw5playall
Catastrophe Draw5playall R

63) Draw5PlayAll: Sacrifice G2 Liberty
Build Y2 G2
Build Y2 Liberty

64) Trydnt: Build B1 G22
	Draw5PlayAll: I think I benefitted from that more than you did

65) Draw5PlayAll: Build B2 Liberty

66) Trydnt: Build G2 Trydnt

67) Draw5PlayAll: Build R1 Liberty

68) Trydnt: Move B2 G22 Liberty

69) Draw5PlayAll: Move B1 Liberty G2

70) Trydnt: Sacrifice R3 Y3
Attack R1 Liberty
Attack Y2 Liberty
Attack R2 Liberty

71) Draw5PlayAll: Sacrifice R3 G2
Attack R2 Liberty
Attack Y2 Liberty
Attack B2 Liberty

72) Trydnt: Build R2 Liberty

73) Draw5PlayAll: Sacrifice R2 Liberty
Attack R2 Liberty
Attack R1 Liberty

74) Trydnt: Sacrifice Y1 G1
Discover G2 Trydnt Y1 Y1

75) Draw5PlayAll: Move R2 Liberty G22

76) Trydnt: Sacrifice G3 B3
Build G3 Y1
Build B3 G22
Build R2 Y3

77) Draw5PlayAll: Move B2 G2 G1

78) Trydnt: Sacrifice R1 Y3
Attack R2 G22

79) Draw5PlayAll: Discover Y1 G2 R1 Idkwhy

80) Trydnt: Move G3 Y1 Y3

81) Draw5PlayAll: Trade G3 R3 Draw5playall

82) Trydnt: Build G3 Y1

83) Draw5PlayAll: Move Y2 G2 Idkwhy

84) Trydnt: Move R2 Y3 Liberty

85) Draw5PlayAll: Sacrifice Y3 Liberty
Move B2 Liberty Trydnt
Move B2 Liberty Trydnt
Move Y2 Liberty Trydnt
	Draw5PlayAll: You could have won by sending your G3 into my homeworld rather than y3... I only had one weapon and attacking the G3 would leave me defenseless against your B3.

86) Trydnt: Build Y3 G22

87) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move B2 G1 Trydnt
Move Y2 Idkwhy Trydnt
Move Y1 Idkwhy Trydnt
Catastrophe Trydnt Yellow
Catastrophe Trydnt Blue

	Draw5PlayAll: Nice try.

That must be the longest move text I have ever seen. 8 sentences.
	Trydnt: I went in half cocked haha 


33877)
Started: 2018.3.12, Ended: 2018.8.23
Participants: Mandrel (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) Mandrel: Homeworld B1 R3 G3

3) Trydnt: Build G1 Trydnt
	Mandrel: Have a good game
	Trydnt: you too

4) Mandrel: Build G1 Mandrel

5) Trydnt: Trade G1 B1 Trydnt

6) Mandrel: Trade G1 Y1 Mandrel

7) Trydnt: Build G1 Trydnt

8) Mandrel: Build Y1 Mandrel

9) Trydnt: Trade G1 Y1 Trydnt

10) Mandrel: Build Y2 Mandrel

11) Trydnt: Build Y2 Trydnt

12) Mandrel: Discover Y1 Mandrel G2 Squirrel

13) Trydnt: Discover B1 Trydnt G3 G3
	Trydnt: did you see the ladder challenge?

14) Mandrel: Trade Y2 B2 Mandrel

15) Trydnt: Move Y1 Trydnt G3
	Mandrel: Oh no, sorry I didn't, don't always check the main page. Feel free to send again!

16) Mandrel: M B2 Mandrel Squirrel

17) Trydnt: Build Y2 G3

18) Mandrel: B Y2 Squirrel

19) Trydnt: Move Y1 G3 Squirrel

20) Mandrel: Trade Y1 R1 Squirrel

21) Trydnt: Sacrifice G3 Trydnt
Build Y1 Squirrel
Build Y3 G3
Build Y3 Trydnt

22) Mandrel: Build Y3 Mandrel

23) Trydnt: Sacrifice Y2 G3
Move Y1 Squirrel Mandrel
Move Y1 Squirrel Mandrel
Catastrophe Mandrel Y

24) Mandrel: B G1 Mandrel

25) Trydnt: Build Y1 G3

26) Mandrel: T G1 Y1 Mandrel

27) Trydnt: Trade Y3 G3 Trydnt

28) Mandrel: B G1 Mandrel

29) Trydnt: Trade Y1 R1 G3

30) Mandrel: B R2 Squirrel

31) Trydnt: Build R2 G3

32) Mandrel: Discover R2 Squirrel B3 Tea

33) Trydnt: Discover R2 G3 G2 G2

34) Mandrel: Build G1 Mandrel

35) Trydnt: Trade R1 G1 G3

36) Mandrel: T G1 B1 Mandrel

37) Trydnt: Build Y1 G3

38) Mandrel: D G1 Mandrel B2 Sky

39) Trydnt: Build B3 G3

40) Mandrel: Build B3 Squirrel

41) Trydnt: Move B3 G3 G2

42) Mandrel: Trade B2 G2 Squirrel

43) Trydnt: Sacrifice G1 G3
Build B2 G2

44) Mandrel: Move G2 Squirrel Tea

45) Trydnt: Move Y1 G3 G2

46) Mandrel: Build G1 Mandrel

47) Trydnt: Build G1 Trydnt

48) Mandrel: Discover B1 Mandrel Y2 Intent

49) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y1 G3
Build Y3 G2

50) Mandrel: S G3 Mandrel
B G3 Mandrel
B Y3 Mandrel
B R1 Tea

51) Trydnt: Move Y3 G2 Tea

52) Mandrel: Sacrifice Y2 Squirrel
Move R1 Tea Trydnt
Move R2 Tea Trydnt

53) Trydnt: Sacrifice R2 G2
Attack R1 Trydnt
Attack R2 Trydnt

54) Mandrel: S Y3 Mandrel
M R1 Squirrel Tea
M R1 Tea Trydnt
M G2 Tea Intent
C Trydnt R

55) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G2
Build Y3 Tea

56) Mandrel: Trade G1 R1 Mandrel

57) Trydnt: Trade G1 R1 Trydnt

58) Mandrel: B G1 Mandrel

59) Trydnt: Build R1 Trydnt

60) Mandrel: Sacrifice G1 Sky
Build B2 Intent

61) Trydnt: Sacrifice Y3 Tea
Move R1 Trydnt Mandrel
Move R1 Trydnt Mandrel
Catastrophe Mandrel R
Move B3 G2 Mandrel



33889)
Variants: "Hard time"
Started: 2018.3.14, Ended: 2018.3.29
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G3 R2 B3

2) wil: Homeworld B2 Y1 G3

3) Trydnt: Build B1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Build B1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Trade B3 Y3 Trydnt

8) wil: Build Y1 Wil

9) Trydnt: Build Y2 Trydnt

10) wil: Trade Y1 B1 Wil

11) Trydnt: Discover B1 Trydnt Y1 Y1

12) wil: Build Y2 Wil

13) Trydnt: Build Y2 Trydnt

14) wil: Discover Y2 Wil G3 Liberty

15) Trydnt: Trade Y2 R2 Trydnt

16) wil: Trade Y1 R1 Wil

17) Trydnt: Build B2 Trydnt

18) wil: Move B1 Wil Liberty

19) Trydnt: Discover B2 Trydnt G1 G1

20) wil: Build R1 Wil

21) Trydnt: Move R2 Trydnt G1

22) wil: Move R1 Wil Liberty

23) Trydnt: Trade B2 Y2 G1

24) wil: Build B2 Liberty

25) Trydnt: Build B2 Trydnt

26) wil: Move B2 Liberty G1 Gone

27) Trydnt: Attack B2 G1

28) wil: Build B3 Liberty

29) Trydnt: Sacrifice Y2 Trydnt
Move B1 Y1 Liberty
Move B2 G1 Liberty
Catastrophe Liberty B

30) wil: Build R1 Wil

31) Trydnt: Build Y1 G1

32) wil: Build R2 Wil

33) Trydnt: Build R3 G1

34) wil: Build R3 Liberty

35) Trydnt: Discover R2 G1 Y3 Y3

36) wil: Trade R2 G2 Wil

37) Trydnt: Move B1 Trydnt G1

38) wil: Discover R1 Liberty Y1 Y1

39) Trydnt: Discover Y2 G1 R3 R3

40) wil: Build R2 Liberty

41) Trydnt: Trade B2 G2 Trydnt

42) wil: Discover G2 Wil Y3 Why3

43) Trydnt: Move R2 Y3 Y1

44) wil: Build Y2 Liberty

45) Trydnt: Sacrifice G2 Trydnt
Build Y3 R3
Build B1 G1

46) wil: Move R1 Y1 R3

47) Trydnt: Discover Y3 R3 B1 B1

48) wil: Move R1 Wil R3

49) Trydnt: Move Y2 R3 B1

50) wil: Discover Y2 Liberty G1 Gwon

51) Trydnt: Move R3 G1 Why3

52) wil: Move R3 Liberty G1

53) Trydnt: Attack G2 Why3

54) wil: Attack Y1 G1

55) Trydnt: Sacrifice Y2 B1
Move B1 G1 Why3
Move B1 G1 Why3

56) wil: Build Y2 G1

57) Trydnt: Build B2 Why3

58) wil: Move Y1 G1 Trydnt

59) Trydnt: Sacrifice B2 Why3
Trade Y3 B3 Trydnt
Pass

60) wil: Build Y3 Gwon

61) Trydnt: Attack Y1 Trydnt

62) wil: Build G1 Wil

63) Trydnt: Build G2 Why3

64) wil: Discover G1 Wil B3 B3

65) Trydnt: Move Y3 B1 B3

66) wil: Trade G1 B1 B3

67) Trydnt: Build G1 Why3

68) wil: Pass

69) Trydnt: Move G1 Why3 Wil

70) wil: Sacrifice Y2 Gwon
Move Y3 Gwon Why3
Move Y3 Why3 Wil

71) Trydnt: Sacrifice G2 Why3
Build G1 Wil
Build G2 Wil
Catastrophe Wil G

72) wil: Build Y2 Liberty

73) Trydnt: Move R2 Y1 B3

74) wil: Build Y1 G1 Wil

75) Trydnt: Attack B1 B3

76) wil: Move Y1 G1 R3

77) Trydnt: Build B2 Trydnt

78) wil: Trade R1 G1 Wil

79) Trydnt: Build B2 Trydnt

80) wil: Build G1 Wil

81) Trydnt: Build B3 Why3

82) wil: Move G1 Wil R3

83) Trydnt: Trade B3 G3 Why3

84) wil: Discover R1 R3 R1 R1

85) Trydnt: Sacrifice Y3 B3
Move R3 Why3 G1
Move R3 G1 Liberty
Move G2 Why3 R1

86) wil: Build Y3 G1

87) Trydnt: Sacrifice R2 B3
Attack Y2 Liberty
Attack R1 R1

88) wil: Build R2 Liberty
	wil: I like that we can experiment like crazy here online with weirdness...and then when I lose my numbers go down and people underate my abilities...its a win win!!

89) Trydnt: Sacrifice R3 Liberty
Attack R2 Liberty
Attack R2 Liberty
Attack Y2 Liberty
	Trydnt: haha only new people surely right? it's not like you could ever get worse right? lol
	wil: every loss makes folks think they could also beat me... lol...and often they do!

90) wil: Build R3 G1

91) Trydnt: Sacrifice Y2 Liberty
Move R2 Liberty G1
Move R2 Liberty G1
Catastrophe G1 R

92) wil: Move R1 R3 Wil

93) Trydnt: Build Y2 Liberty

94) wil: Build R2 Wil

95) Trydnt: Build G2 Why3

96) wil: Build G2 Wil

97) Trydnt: Sacrifice G3 Why3
Build G3 Why3
Build B3 B3
Pass

98) wil: Sacrifice Y2 G1
Move G2 Wil Why3
Move G1 Wil Why3
Catastrophe Why3 G

99) Trydnt: Trade B3 G3 B3

100) wil: Move Y3 G1 Why3

101) Trydnt: Sacrifice G2 R1
Build Y2 Liberty
Build B3 B3

102) wil: Sacrifice R2 Wil
Attack B1 Why3
Attack B1 Why3

103) Trydnt: Sacrifice Y2 Liberty
Move Y2 Liberty Wil
Move Y2 Liberty Wil
Catastrophe Wil Y

104) wil: Sacrifice Y3 Why3
Discover B1 Why3 Y1 Y1
Move B1 Why3 Y1
Move B1 Y1 B3
Catastrophe B3 B

105) Trydnt: Move B2 Trydnt Y1

106) wil: Build Y2 R3

107) Trydnt: Sacrifice R1 R1
Attack B1 Y1

108) wil: Build Y2 R3

109) Trydnt: Trade B3 Y3 Trydnt

110) wil: Move Y2 R3 Wil

111) Trydnt: Sacrifice Y3 Trydnt
Move B2 Trydnt Y1
Move B1 Y1 Wil
Move B2 Y1 Wil
	wil: four defends on the top of volcano...that is a record for me..

112) wil: Trade R1 B1 Wil
Catastrophe Wil B

	wil: My abilities of self annihilation in this game are getting better!
	wil: And look, your rating now coincides to that year which we ran away from home.
	Trydnt: You're very good at blowing up homeworlds, just not always your opponent's


33682)
Variants: "Hard time"
Started: 2018.3.14, Ended: 2018.3.17
Participants: Draw5PlayAll (S), sharkhands (N)
Winner: Draw5PlayAll



33901)
Variants: "Unrated, Hard time"
Started: 2018.3.18, Ended: 2018.4.10
Participants: Babamots (S), Felix (N)
Winner: Felix

1) Felix: H B1 Y2 G3

2) Babamots: Homeworld Y3 B2 G3
	Felix: Good luck :) do I need to fill out a game start form?
	Babamots: No need to fill out the form. Since I am making all updates to the bracket manually, the forms just point me to changes I need to make. I already know about this game, so the form isn't needed.

3) Felix: B G1 Felix

4) Babamots: Build G1 Babamots
	Felix: I thought as much. Just wanted to be sure!

5) Felix: T G1 B1 Felix

6) Babamots: Trade G1 B1 Babamots

7) Felix: B B2 Felix

8) Babamots: Build B2 Babamots

9) Felix: Discover B2 Felix G3 Rim

10) Babamots: Trade B1 R1 Babamots

11) Felix: Build G1 Felix

12) Babamots: Build G1 Babamots

13) Felix: Discover G1 Felix B3 Savor

14) Babamots: Discover B2 Babamots Y1 Bajor

15) Felix: B G1 Felix

16) Babamots: Build G2 Babamots

17) Felix: Build G2 Savor

18) Babamots: Move B2 Bajor Rim

19) Felix: Sacrifice G2 Savor
Build B1 Rim
Build B3 Felix

20) Babamots: Discover G2 Babamots Y1 Pakled

21) Felix: Discover B3 Felix R3 Range

22) Babamots: Sacrifice G3 Babamots
Build G2 Pakled
Build G2 Pakled
Build G3 Babamots

23) Felix: Sacrifice G1 Savor
Build B3 Range

24) Babamots: Trade B2 R2 Rim

25) Felix: Sacrifice G3 Felix
Build B2 Felix
Build B3 Rim
Build G1 Felix

26) Babamots: Sacrifice G3 Babamots
Build R1 Babamots
Build G3 Babamots
Build G3 Babamots

27) Felix: Sacrifice B2 Rim
Trade B3 R3 Rim
Trade B3 Y3 Range

28) Babamots: Sacrifice G3 Babamots
Build R1 Rim
Build R2 Babamots
Build G3 Babamots

29) Felix: Sacrifice Y3 Range
Move G1 Felix Rim
Move G1 Rim Pakled
Move G1 Pakled Babamots
Catastrophe Babamots Green

30) Babamots: Build R2 Rim
Catastrophe Rim R
	Babamots: Heck. I need to play when I can focus or this is going to happen again.
	Felix: I hear you. I tend to rush my moves too. Take your time though, no pressure from me! And you're not conquered yet; I'm still in a fairly weak position. This has been an interesting game!

31) Felix: Build B2 Rim
	Babamots: Yeah, I make things interesting by not noticing any threats :-P.

32) Babamots: Discover G2 Pakled Y3 Cardassia
	Babamots: I've got three presentations to give this week, and I'm totally unprepared for two of them. If I make any moves before Monday, you can tell me to get back to work.
	Felix: Haha, you know you won't be able to resist making a move before then. You have to take breaks from presentation prep at some point! Homeworlds is more important anyway. Priorities, man ;)

33) Felix: Discover B2 Felix G3 Rykor

34) Babamots: Move G2 Pakled Rim
	Felix: Hope your presentations went well!
	Babamots: There's one more to go. It's the longest and there's the least to say.
	Draw5PlayAll: Cardassia is the only reference I know.

35) Felix: Build B3 Rim

36) Babamots: Sacrifice G2 Pakled
Build G1 Rim
Build G1 Rim
Catastrophe Rim G

37) Felix: Sacrifice B2 Rykor
Trade B3 Y3 Range
Trade B1 R1 Felix

38) Babamots: Trade R1 G1 Babamots

39) Felix: Move Y3 Range Felix
	Felix: Very nice move! Didn't anticipate that one.

40) Babamots: Build G1 Cardassia
	Babamots: It was a high cost to me, but after a lot of thought, nothing else was looking promising.

41) Felix: Build G2 Felix
	Felix: Very promising. I'm beginning to sweat!
	Babamots: Darn! I had my move entered and then it wasn't my turn anymore.

42) Babamots: Build G2 Babamots
	Felix: Sorry about that! To be fair, it only took me about 40 seconds to undo my move

43) Felix: Discover G2 Felix B3 Bazoik
	Babamots: No problem. If you're quicker than me, so be it. I've got an alert on my phone for when I get SDG email, so I can move pretty promptly if I'm focused.

44) Babamots: Trade G1 Y1 Babamots

45) Felix: Build R1 Felix

46) Babamots: Discover R2 Babamots Y1 Iconia
	Felix: Nice recovery. I wanted to badly to capitalize on your lack of a large, but my hands were tied

47) Felix: Build R2 Felix

48) Babamots: Build R2 Babamots

49) Felix: M R1 Felix Bazoik

50) Babamots: Sacrifice G2 Cardassia
Build R3 Babamots
Build R3 Iconia

51) Felix: B R3 Bazoik

52) Babamots: Trade R1 B1 Babamots

53) Felix: M R2 Felix Cardassia

54) Babamots: Move R3 Iconia Cardassia

55) Felix: T R3 G3 Bazoik

56) Babamots: Sacrifice G2 Babamots
Build R1 Babamots
Build R3 Iconia

57) Felix: D R2 Cardassia G1 Lost

58) Babamots: Trade R2 G2 Babamots

59) Felix: Sacrifice G3 Bazoik
Build G2 Bazoik
Build G3 Bazoik
Build R2 Bazoik

60) Babamots: Build G3 Babamots

61) Felix: Sacrifice G3 Bazoik
Build G3 Bazoik
Build G3 Felix
Build Y1 Felix
	Babamots: Well, that's given me a lot to think about. It's been nice to have a quick back and forth, but I think I'll make a better choice in the morning.

62) Babamots: Discover Y1 Babamots B1 Bynaus

63) Felix: Move Y3 Felix Bazoik
	Felix: I should probably be taking more time to think about my moves. I've fully squandered that opportunity I had!

64) Babamots: Sacrifice G3 Babamots
Build Y2 Bynaus
Build B2 Babamots
Build G3 Babamots

65) Felix: Move G3 Bazoik Bynaus

66) Babamots: Sacrifice Y1 Bynaus
Discover Y2 Bynaus B2 Vulcan

67) Felix: Sacrifice G3 Felix
Build Y1 Bazoik
Build Y2 Felix
Build G3 Felix

68) Babamots: Move R3 Babamots Lost

69) Felix: T G3 B3 Bynaus

70) Babamots: Sacrifice B1 Babamots
Trade R3 G3 Iconia

71) Felix: B R3 Felix

72) Babamots: Move B2 Babamots Iconia

73) Felix: M G2 Bazoik Bynaus

74) Babamots: Sacrifice G3 Babamots
Build B1 Iconia
Build B3 Iconia
Build G3 Babamots

75) Felix: Sacrifice Y2 Felix
Move R2 Lost Vulcan
Move G2 Bazoik Bynaus

76) Babamots: Sacrifice B3 Iconia
Trade G2 Y2 Babamots
Trade Y2 G2 Vulcan
Trade B2 Y2 Iconia

77) Felix: M Y1 Bazoik Iconia

78) Babamots: Sacrifice R2 Iconia
Attack Y1 Iconia
Attack R2 Vulcan

79) Felix: S Y3 Bazoik
M Y1 Felix Bazoik
M Y1 Bazoik Iconia
C Iconia Yellow
D B3 Bynaus G3 Grintok

80) Babamots: Trade G3 Y3 Babamots
	Felix: Looks like all the dominoes are lining up :)
	Babamots: It's a ticklish spot, but I'm not quite doomed yet, am I? Maybe you can see a few moves deeper.
	Felix: Oh no, haha, I don't think you're doomed at all. There's just a lot of pieces on the board, so something is probably going to blow up soon!
	Babamots: Well, here comes a wild move. I'm a little desperate to hold onto yellow and I think it's worth the price.

81) Felix: S G2 Bynaus
B B1 Grintok
B B2 Grintok

82) Babamots: Trade R2 Y2 Vulcan
	Felix: Good move! Very creative. I didn't think you could get both Y2s like that

83) Felix: T B1 Y1 Grintok

84) Babamots: Sacrifice G2 Vulcan
Build Y1 Vulcan
Build G2 Cardassia
	Draw5PlayAll: Bynaus from 11001001?
	Babamots: Yes. All I really remember about that episode is Riker falling in love with Minuet the hologram.

85) Felix: M B3 Grintok Vulcan

86) Babamots: Sacrifice Y3 Babamots
Move R3 Cardassia Felix
Move G2 Cardassia Felix
Move G1 Cardassia Felix
Catastrophe Felix G

87) Felix: S R1 Felix
A R3 Felix

88) Babamots: Sacrifice Y2 Vulcan
Move R3 Lost Grintok
Discover Y1 Vulcan G1 Galorndon

89) Felix: Sacrifice B2 Grintok
Trade R2 Y2 Bazoik
Trade R3 G3 Felix
	Babamots: I felt like I was under your thumb while you had all that yellow. I'm going to try to make sure that doesn't happen again. :-)
	Babamots: I felt like I was under your thumb while you had all that yellow. I'm going to try to make sure that doesn't happen again. :-)
	Babamots: My phone likes to repeat itself. 

90) Babamots: Attack Y1N Grintok
	Felix: Yeah... I'm not liking this at all! I should never have let this happen, haha


91) Felix: Sacrifice Y2 Bazoik
Move B3 Vulcan Bynaus
Move B3 Bynaus Babamots

92) Babamots: Sacrifice Y2 Babamots
Move R3 Grintok Galorndon
Move R3 Galorndon Babamots
	Babamots: Wish I could say this was the first time I had done that. I feel sick. I might need a couple of days before I can bear to look again. 
	Felix: Take your time. I've done the same thing many times! It's so easy to overlook

93) Felix: Sacrifice R3 Felix
Attack R3 Babamots
Attack R1 Babamots
Pass
	Babamots: It's painful to look at this game and continuing to play is sort of an insult to you by suggesting that I could beat you from here. So honestly I should resign, but that would feel like a rage quit. I'll stick around for a few more moves and see how I feel.

	Felix: Thank you. Really great game! This was a wild one and you played really well. Good luck and hope to see you in the final!
	Draw5PlayAll: So what is the status on the tourney? I lost the google doc link
	Babamots: https://docs.google.com/spreadsheets/d/e/2PACX-1vTS8qjWyHSJHPXNsbwf3mBk26NugW7ASTKAfmXhgjIrcCjhaXtM-OYxpCEioJhhC4ZLvmEmfmdKaWPc/pubhtml?gid=0&single=true


33902)
Variants: "Hard time"
Started: 2018.3.18, Ended: 2018.4.19
Participants: Draw5PlayAll (S), Felix (N)
Winner: Felix

1) Felix: H R1 B3 G3

2) Draw5PlayAll: Homeworld B2 R3 G3
	Felix: Good luck and have fun!
	Draw5PlayAll: Are you just trying to annoy me?

3) Felix: B G1 Felix
	Felix: Um, no? What makes you think I am?

4) Draw5PlayAll: Build G1 Draw5playall
	Felix: I always wish my opponents good luck and much fun
	Draw5PlayAll: No, your B3R1 + G3 setup.

5) Felix: Trade G1 Y1 Felix

6) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Felix: What makes that annoying?
	Draw5PlayAll: Because that is what I always do. So much so that I am considering changing my name to B3R1G3.

7) Felix: B G1 Felix
	Felix: Huh, didn't know that. I obviously haven't studied my opponents

8) Draw5PlayAll: Build G1 Draw5playall

9) Felix: Trade G1 R1 Felix

10) Draw5PlayAll: Trade G1 R1 Draw5playall

11) Felix: Build R2 Felix

12) Draw5PlayAll: Build R2 Draw5playall

13) Felix: Discover R2 Felix B2 Out

14) Draw5PlayAll: Trade R2 B2 Draw5playall

15) Felix: Build G1 Felix

16) Draw5PlayAll: Discover B2 Draw5playall G1 Whatelse

17) Felix: Move G1 Felix Out

18) Draw5PlayAll: Build B1 Whatelse

19) Felix: B R2 Out

20) Draw5PlayAll: Trade B2 Y2 Whatelse

21) Felix: Trade R2 Y2 Out

22) Draw5PlayAll: Build B1 Whatelse

23) Felix: Build R2 Out

24) Draw5PlayAll: Move R1 Draw5playall Whatelse

25) Felix: Discover R2 Out B1 Chronos

26) Draw5PlayAll: Build B2 Whatelse

27) Felix: Build Y1 Out

28) Draw5PlayAll: Build Y2 Whatelse

29) Felix: Build Y3 Felix
	Draw5PlayAll: I need not waste a B2

30) Draw5PlayAll: Build Y3 Draw5playall

31) Felix: Move Y1 Out Chronos

32) Draw5PlayAll: Discover B2 Whatelse Y3 Dontyoudare

33) Felix: S G3 Felix
B R2 Felix
B R3 Out
B R3 Chronos

34) Draw5PlayAll: Build B3 Whatelse

35) Felix: D R1 Felix G2 Windy
	Draw5PlayAll: I think I will lose
	Draw5PlayAll: Actually...

36) Draw5PlayAll: Move B1 Whatelse Draw5playall

37) Felix: T R3 G3 Chronos
	Draw5PlayAll: This will be close.

38) Draw5PlayAll: Trade B3 R3 Whatelse

39) Felix: S Y2 Out
M R2 Out Whatelse
M R1 Windy Whatelse
C Whatelse Red
	Felix: Indeed

40) Draw5PlayAll: Trade Y2 R2 Whatelse
	Draw5PlayAll: Thank you SOOO much!! I have always wanted one of those!

41) Felix: S Y1 Felix
M R3 Out Whatelse
	Felix: Sorry, I'ma have to take that back

42) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R1 Whatelse
Build R1 Whatelse
Build B3 Dontyoudare
Catastrophe Whatelse Red

43) Felix: Move G3 Chronos Dontyoudare

44) Draw5PlayAll: Discover B3 Dontyoudare R1 Enteranddie
	Draw5PlayAll: Sometimes desperation actually works.

45) Felix: Sacrifice G1 Out
Build Y1 Chronos

46) Draw5PlayAll: Sacrifice B2 Dontyoudare
Trade Y3 G3 Draw5playall
Trade B1 R1 Draw5playall

47) Felix: Move G3 Dontyoudare Whatelse

48) Draw5PlayAll: Discover Y2 Whatelse G2 Leavemealone

49) Felix: T Y1 G1 Chronos

50) Draw5PlayAll: Build Y1 Leavemealone

51) Felix: B Y2 Chronos

52) Draw5PlayAll: Sacrifice B1 Whatelse
Trade Y2 R2 Leavemealone

53) Felix: Build R3 Chronos

54) Draw5PlayAll: Build R3 Leavemealone

55) Felix: S Y2 Chronos
M R2 Chronos Draw5playall
M R3 Chronos Draw5playall
C Draw5playall Red

56) Draw5PlayAll: Build Y2 Draw5playall

57) Felix: Trade R2 G2 Felix

58) Draw5PlayAll: Trade Y1 B1 Draw5playall

59) Felix: Build G1 Felix

60) Draw5PlayAll: Move B1 Draw5playall Enteranddie

61) Felix: Build G2 Chronos

62) Draw5PlayAll: Trade B3 G3 Enteranddie

63) Felix: Trade G2 B2 Chronos

64) Draw5PlayAll: Build B1 Enteranddie

65) Felix: Sacrifice B2 Chronos
Trade G2 B2 Felix
Trade G3 B3 Whatelse

66) Draw5PlayAll: Build B2 Enteranddie

67) Felix: Build B3 Whatelse

	Felix: Good game! 


33792)
Variants: "Unrated, Hard time"
Started: 2018.3.18, Ended: 2018.4.25
Participants: wil (S), dragon76n (N)
Winner: wil

1) dragon76n: Homeworld B3 Y1 G3

2) wil: Homeworld Y2 B1 G3
	dragon76n: Hi Wil, I'm back for another challenge. :)
	wil: thx for the game, good luck

3) dragon76n: Build G1 Dragon76n

4) wil: Build G1 Wil

5) dragon76n: Trade G1 Y1 Dragon76n

6) wil: Trade G1 Y1 Wil
	dragon76n: Good luck, have fun

7) dragon76n: Build Y2 Dragon76n

8) wil: Build Y2 Wil

9) dragon76n: Trade Y2 G2 Dragon76n
	wil: the copycat stage

10) wil: Trade Y1 B1 Wil

11) dragon76n: Build G1 Dragon76n
	dragon76n: Hmm... copycat stage ended already? Did I take the wrong route? (Tips are welcome. I've been beaten a lot in Homeworlds.) 

12) wil: Build B1 Wil
	wil: It could be...and while your move was/is one of my favs...in many situations...in this one, I can now make an attempt at monopolizing the economy of change...and either you get on board...or lose to my queen factory upcoming...even though getting on board means losing the power of that G2 you just acquired.

13) dragon76n: Trade G2 B2 Dragon76n
	wil: btw...you don't learn hardly anything by winning...you learn mostly by losing...I lost probably 90% of my first 50 games and 80% of the next 50...games I won were against lesser players, by accident or by capitalizing on mistakes of others...(and actually still are)

14) wil: Discover B1 Wil Y3 Y3
	dragon76n: Sorry it's taken so long to get back to this turn.  
	wil: lol, no worries...life is a thing

15) dragon76n: Discover B2 Dragon76n G2 Gretwo

16) wil: Trade B1 R1 Wil

17) dragon76n: Build B1 Gretwo

18) wil: Build G1 Wil

19) dragon76n: Trade B2 R2 Gretwo

20) wil: Move G1 Wil Y3

21) dragon76n: Build B2 Gretwo

22) wil: Build B2 Y3

23) dragon76n: Trade B2 Y2 Gretwo

24) wil: Discover Y2 Wil G3 G3

25) dragon76n: Build B2 Gretwo

26) wil: Discover B1 Y3 G2 G2

27) dragon76n: Discover B1 Gretwo G1 Greone

28) wil: Build G2 Wil

29) dragon76n: Sacrifice G3 Dragon76n
Build B2 Greone
Build B3 Gretwo
Build G3 Dragon76n

30) wil: Build B3 G2

31) dragon76n: S G3 Dragon76n
B G3 Dragon76n
B Y1 Gretwo
B Y3 Dragon76n

32) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y3 G3
Build R1 Wil

33) dragon76n: D Y3 Dragon76n R2 Redtwo

34) wil: Move Y2 G3 G2

35) dragon76n: T B2 R2 Greone

36) wil: Move R1 Wil G3

37) dragon76n: Move Y3 Redtwo Y3

38) wil: Discover B2 Y3 R2 R2

39) dragon76n: Build B2 Greone

40) wil: Trade B3 R3 G2

41) dragon76n: Move B2 Gretwo Y3

42) wil: Build B3 G2

43) dragon76n: Move Y1 Gretwo Greone

44) wil: Sacrifice G3 Wil
Build R1 G3
Build R3 G2
Build R3 Wil

45) dragon76n: Move B2 Greone Y3

46) wil: Build G3 Wil

47) dragon76n: Sacrifice Y3 Y3
Move B1 Greone G3
Move B1 G3 Wil
Move B2 Y3 Wil

48) wil: Build Y3 G3

49) dragon76n: Sacrifice R2 Gretwo
Attack G2 Wil
Attack R1 Wil

50) wil: Sacrifice R3 G2
Attack R1 Wil
Attack G2 Wil
Attack B2 Wil

51) dragon76n: Move B2 Y3 Wil
Catastrophe Wil Blue

52) wil: Sacrifice Y3 G3
Move G2 Wil Dragon76n
Move G3 Wil Dragon76n
Move B3 G2 Dragon76n
Catastrophe Dragon76n G

53) dragon76n: M B3 Gretwo Dragon76n
	wil: Hey...those are my ships...

54) wil: Sacrifice R3 Wil
Attack B3 Dragon76n
Attack Y1 Dragon76n
Pass
	dragon76n: I'm not sure which ships you're talking about. I don't see any. ;)

	wil: After the untimely destruction of half our binary star, our planets were spinning out of orbit and we've only left a small military attache to handle things...but we really like what you've done so far with your homeworld and appreciate that you've given us the power to change things for the better in this galaxy.  
	dragon76n: Lol. Good game. :)
	wil: challenge me anytime...  I enjoy playing.


33907)
Started: 2018.3.19, Ended: 2018.8.20
Participants: dragon76n (S), zeder (N)
Winner: dragon76n

1) zeder: Homeworld Y1 B2 G3

2) dragon76n: Homeworld B3 Y1 G3

3) zeder: Build G1 Zeder

4) dragon76n: Build G1 Dragon76n

5) zeder: Trade G1 R1 Zeder

6) dragon76n: Trade G1 Y1 Dragon76n

7) zeder: Build G1 Zeder

8) dragon76n: Build Y2 Dragon76n

9) zeder: Trade G3 Y3 Zeder

10) dragon76n: D Y2 Dragon76n G2 Gretwo

11) zeder: Build Y2 Zeder

12) dragon76n: B Y2 Gretwo

13) zeder: Discover Y2 Zeder G3 Azhanti

14) dragon76n: Trade Y1 R1 Dragon76n

15) zeder: Build G1 Zeder

16) dragon76n: Build G1 Dragon76n

17) zeder: Build G2 Zeder

18) dragon76n: Discover Y2 Gretwo B3 Bluthr

19) zeder: Discover G1 Zeder B3 Floop

20) dragon76n: Discover G1 Dragon76n B2 Blutwo

21) zeder: Move Y2 Azhanti Blutwo

22) dragon76n: Build G2 Dragon76n

23) zeder: Sacrifice R1 Zeder
Attack G1 Blutwo

24) dragon76n: Sacrifice G3 Dragon76n
Build Y1 Bluthr
Build Y3 Gretwo
Build G3 Dragon76n

	dragon76n: Hi Zeder, did you forget about our game at SDG?


33911)
Variants: "Unrated, Hard time"
Started: 2018.3.20, Ended: 2018.4.2
Participants: bhorner (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y2 G3
	ts52: Have a good game!

2) bhorner: Homeworld B2 R1 G3
	Babamots: Am I correct that this game is for the tournament?

3) ts52: Build G1 Ts52
	bhorner: Yes Babamots, just filled out the game start form as well.
	bhorner: Good luck ts52!

4) bhorner: Build G1 Bhorner

5) ts52: Trade G1 R1 Ts52

6) bhorner: Trade G1 B1 Bhorner

7) ts52: Build R1 Ts52

8) bhorner: Build B1 Bhorner

9) ts52: Build R2 Ts52

10) bhorner: Trade B1 Y1 Bhorner

11) ts52: Discover R2 Ts52 G3 Kermit

12) bhorner: Build B1 Bhorner

13) ts52: Build R2 Ts52
	bhorner: This hant started well for me.  :)

14) bhorner: Discover B1 Bhorner Y3 Sun
	ts52: It's still early yet. Though your choice to make it a small universe is interesting.

15) ts52: Move R2 Ts52 Sun

16) bhorner: D B1 Sun Y2 Star

17) ts52: Build R2 Kermit

18) bhorner: B B2 Bhorner

19) ts52: Build R3 Ts52

20) bhorner: D B1 Bhorner R3 Angry

21) ts52: Trade R3 B3 Ts52

22) bhorner: S G3 Bhorner
B B2 Star
B B3 Bhorner
B B3 Angry

23) ts52: Move B3 Ts52 Kermit

24) bhorner: T B1 Y1 Angry

25) ts52: Trade R2 Y2 Kermit

26) bhorner: Trade B3 G3 Bhorner

27) ts52: Build R2 Kermit

28) bhorner: Sacrifice G3 Bhorner
Build Y1 Angry
Build Y3 Bhorner
Build Y3 Angry

29) ts52: Sacrifice G3 Ts52
Build R3 Ts52
Build R3 Sun
Build B1 Kermit

30) bhorner: Discover Y1 Bhorner G3 Grass

31) ts52: Trade R3 G3 Ts52

32) bhorner: Trade B2 G2 Bhorner

33) ts52: Build R3 Kermit

34) bhorner: Move B2 Star Grass

35) ts52: Sacrifice Y2 Kermit
Move B3 Kermit Bhorner
Move R3 Kermit Bhorner

36) bhorner: A R3 Bhorner

37) ts52: Sacrifice R3 Sun
Attack R3S Bhorner
Attack Y3S Bhorner
Attack G2S Bhorner
	bhorner: GG!  Just in time.  Did you realize you could have done that earlier?  :)
If you hadn't done it this move:
s y3 angry
  m y1 angry ts52
  m y1 angry ts52
  m y1 grass ts52
  c yellow ts52
s y3 bhorner
  m b1 mad ts52
  m b2 star ts52
  m b3 angry ts52
  c blue ts5

	ts52: Thanks. I thought about it earlier, but wanted the extra r3. Looking back I could've done it with an r2, but it would've taken the same number of turns. I knew I had to act quickly though.


33825)
Variants: "Unrated"
Started: 2018.3.20, Ended: 2018.6.2
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt

1) dlwillson: H Y3 B1 G3 Dlwillson

2) Trydnt: Homeworld G2 R1 B3

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build B1 Trydnt

5) dlwillson: T G1 B1 Dlwillson

6) Trydnt: Build B2 Trydnt

7) dlwillson: B B2 Dlwillson

8) Trydnt: Trade B2 Y2 Trydnt

9) dlwillson: T B1 R1 Dlwillson

10) Trydnt: Trade B1 R1 Trydnt

11) dlwillson: Build R2 Dlwillson

12) Trydnt: Discover R1 Trydnt G3 G3

13) dlwillson: D R1 Dlwillson G2 Field

14) Trydnt: Build R2 G3

15) dlwillson: B R2 Dlwillson

16) Trydnt: Build R3 G3

17) dlwillson: Discover R2 Dlwillson Y2 Sol

18) Trydnt: Sacrifice R1 G3
Pass

19) dlwillson: Build G1 Dlwillson

20) Trydnt: Build B1 Trydnt

21) dlwillson: B R1 Dlwillson

22) Trydnt: Build Y1 Trydnt

23) dlwillson: B R3 Field

24) Trydnt: Sacrifice B1 Trydnt
Trade R2 Y2 G3

25) dlwillson: Sacrifice G3 Dlwillson
Build R2 Dlwillson
Build R3 Sol
Build G1 Dlwillson

26) Trydnt: Build Y1 G3

27) dlwillson: Sacrifice B2 Dlwillson
Trade R3 B3 Field
Trade R3 B3 Sol

28) Trydnt: Build R3 G3

29) dlwillson: Move B3 Sol Dlwillson

30) Trydnt: Move R3 G3 Sol

31) dlwillson: B R3 Field

32) Trydnt: Attack R2 Sol

33) dlwillson: M R1 Dlwillson Sol

34) Trydnt: Discover R2 Sol Y3 Y3

35) dlwillson: T R1 Y1 Field

36) Trydnt: Build Y3 Trydnt

37) dlwillson: M R3 Field Y3

38) Trydnt: Sacrifice R2 Y3
Attack R1 Sol
Pass

39) dlwillson: B B1 Field

40) Trydnt: Build B1 Trydnt

41) dlwillson: S B1 Field
T R3 G3 Y3

42) Trydnt: Discover B3 Trydnt G3 G33

43) dlwillson: D G1 Dlwillson B2 Sea

44) Trydnt: Move R1 Sol G33

45) dlwillson: S G3 Y3
B G1 Sea
B Y3 Field
B G2 Dlwillson

46) Trydnt: Sacrifice Y2 Trydnt
Discover R3 Sol G3 G333
Move Y1 Trydnt G333

47) dlwillson: Trade G2 Y2 Dlwillson

48) Trydnt: Build Y2 G333

49) dlwillson: Build G2 Sea

50) Trydnt: Move R3 G333 Sea

51) dlwillson: S Y3 Field
M G1 Sea G3
M G1 Sea G3
M G2 Sea G3
C G3 G

52) Trydnt: Move Y1 G333 Sea

53) dlwillson: M R2 Dlwillson Field

54) Trydnt: Build Y1 Trydnt

55) dlwillson: D Y1 Field G3 Forest

56) Trydnt: Move Y1 Trydnt G33

57) dlwillson: Move Y2 Dlwillson Field

58) Trydnt: Trade Y1 G1 Sea

59) dlwillson: B R1 Dlwillson

60) Trydnt: Build Y1 G33

61) dlwillson: T R2 G2 Dlwillson

62) Trydnt: Build R2 G33

63) dlwillson: S G2 Dlwillson
B Y2 Forest
B Y3 Field

64) Trydnt: Sacrifice Y2 G333
Move Y1 G33 Field
Move Y1 G33 Field
Catastrophe Field Y

65) dlwillson: B B1 Field

66) Trydnt: Build B2 G33

67) dlwillson: T B3 Y3 Field

68) Trydnt: Trade R3 G3 Sea

69) dlwillson: Build R2 Field

70) Trydnt: Trade R1 Y1 G33

71) dlwillson: B G1 Dlwillson

72) Trydnt: Trade G1 Y1 Sea

73) dlwillson: B G1 Dlwillson

74) Trydnt: Build Y2 Sea

75) dlwillson: Build Y2 Field

76) Trydnt: Discover B2 G33 G2 G2

77) dlwillson: Discover R2 Field B3 Sky

78) Trydnt: Build B2 G2

79) dlwillson: T B3 R3 Dlwillson

80) Trydnt: Build B3 Trydnt

81) dlwillson: M G1 Dlwillson Field

82) Trydnt: Move G3 Sea Sky

83) dlwillson: Sacrifice Y1 Forest
Move R2 Sky Field

84) Trydnt: Build Y1 G33

85) dlwillson: M G1 Dlwillson Sea

86) Trydnt: Move Y1 Sea Sky

87) dlwillson: Move Y2 Forest Sea

88) Trydnt: Build G3 Sky

89) dlwillson: Sacrifice Y2 Field
Move G1 Field Sky
Move G1 Sea Sky
Catastrophe Sky G

90) Trydnt: Build Y2 Trydnt

91) dlwillson: Sacrifice R1 Dlwillson
Attack Y2 Sea

92) Trydnt: Move B3 Trydnt Sky

93) dlwillson: B R1 Dlwillson

94) Trydnt: Trade B3 R3 Sky

95) dlwillson: B B3 Field

96) Trydnt: Build R1 G33

97) dlwillson: Sacrifice Y3 Field
Discover B3 Field G3 Forest
Move R2 Field Forest
Move Y2 Sea Forest

98) Trydnt: Sacrifice Y2 Trydnt
Discover B2 G2 Y3 Y3
Discover B2 G2 R3 R3

99) dlwillson: T R3 G3 Dlwillson

100) Trydnt: Trade B2 G2 Y3

101) dlwillson: S G3 Dlwillson
B R3 Dlwillson
B Y2 Forest
B B2 Forest

102) Trydnt: Sacrifice G2 Y3
Build Y3 Sky
Pass

103) dlwillson: T R3 G3 Dlwillson

104) Trydnt: Move Y3 Sky Field

105) dlwillson: T R2 G2 Field

106) Trydnt: Sacrifice R2 G33
Attack G2 Field
Attack B1 Field

107) dlwillson: B R2 Forest

108) Trydnt: Sacrifice G2 Field
Build R2 Sky
Build R3 G33

109) dlwillson: T R2 G2 Forest

110) Trydnt: Move R3 G33 Sea

111) dlwillson: D Y2 Sea G1 Grass

112) Trydnt: Build R2 G33

113) dlwillson: Build G1 Forest

114) Trydnt: Move R3 Sky Grass

115) dlwillson: M Y2 Grass Forest

116) Trydnt: Sacrifice Y3 Field
Move B1 Trydnt Forest
Move B1 Field Forest
Move R3 Sea Forest
Catastrophe Forest B

117) dlwillson: S Y2 Forest
D Y2 Forest Y2 Field
D Y2 Forest B2 Sea

118) Trydnt: Build Y3 Trydnt



33849)
Variants: "Hard time"
Started: 2018.3.20, Ended: 2018.4.4
Participants: Felix (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) Felix: Homeworld Y2 B3 G3

3) Trydnt: Build G1 Trydnt

4) Felix: Build G1 Felix
	Felix: Hello again :) Good luck and have fun

5) Trydnt: Trade G1 R1 Trydnt
	Trydnt: hello indeed my old friend. good luck to you too. and I always do

6) Felix: Trade G1 R1 Felix

7) Trydnt: Build R2 Trydnt

8) Felix: Build R2 Felix

9) Trydnt: Trade R1 Y1 Trydnt

10) Felix: Trade R2 Y2 Felix

11) Trydnt: Build Y1 Trydnt

12) Felix: Build Y1 Felix

13) Trydnt: Build Y2 Trydnt

14) Felix: Discover Y1 Felix B1 Out

15) Trydnt: Trade Y1 B1 Trydnt

16) Felix: Build Y1 Felix

17) Trydnt: Build B1 Trydnt

18) Felix: Discover Y1 Felix G1 Rim

19) Trydnt: Sacrifice Y2 Trydnt
Discover R2 Trydnt Y3 Y3
Discover B1 Trydnt Y3 Y33

20) Felix: Build G1 Felix

21) Trydnt: Sacrifice G3 Trydnt
Build B2 Y33
Build B2 Y33
Build B3 Trydnt

22) Felix: Build Y2 Rim

23) Trydnt: Trade B3 Y3 Trydnt

24) Felix: Sacrifice Y2 Rim
Move Y1 Rim Y33
Move Y1 Y33 Trydnt

25) Trydnt: Trade Y3 G3 Trydnt

26) Felix: Sacrifice G3 Felix
Build Y2 Trydnt
Build Y3 Out
Build R1 Felix

27) Trydnt: Attack Y2 Trydnt

28) Felix: Move Y3 Out Y3

29) Trydnt: Sacrifice Y2 Trydnt
Discover R2 Y3 Y2 Y2
Discover B2 Y33 G1 G1

30) Felix: Move Y3 Y3 G1
	Felix: This is such a dumb attack, haha.

31) Trydnt: Sacrifice G3 Trydnt
Build B3 Y33
Build B3 Trydnt
Build Y3 Trydnt

32) Felix: Sacrifice R1 Felix
Attack B2 G1

33) Trydnt: Sacrifice B2 Y33
Trade B1 G1 Trydnt
Trade Y1 R1 Trydnt

34) Felix: Move Y3 G1 Felix

35) Trydnt: Attack Y1 Trydnt

36) Felix: Move Y2 Felix G1

37) Trydnt: Discover B3 Trydnt G3 G3

38) Felix: Build G2 Felix

39) Trydnt: Move Y1 Trydnt G3

40) Felix: Move G2 Felix Out

41) Trydnt: Build Y1 G3

42) Felix: Build R2 Felix

43) Trydnt: Build G2 Trydnt

44) Felix: Move R2 Felix Out

45) Trydnt: Move R1 Trydnt G3

46) Felix: Build G2 Felix

47) Trydnt: Trade B3 G3 Y33

48) Felix: Build G3 Out

49) Trydnt: Build B1 G3

50) Felix: Sacrifice G3 Out
Build G3 Out
Build R2 Felix
Build R3 Out

51) Trydnt: Sacrifice G2 Trydnt
Build R3 Y2
Build R3 G3

52) Felix: Discover G3 Out B3 Wanton

53) Trydnt: Move R3 G3 G1

54) Felix: Sacrifice Y2 G1
Discover B2 G1 G2 G2
Move R2 Out Wanton

55) Trydnt: Move Y1 G3 G1

56) Felix: Build B2 G2

57) Trydnt: Build Y2 G1

58) Felix: Sacrifice G1 Felix
Build G1 Wanton

59) Trydnt: Move B1 Y33 G1

60) Felix: Move G2 Out Y33

61) Trydnt: Sacrifice R1 G3
Attack G2 Y33

62) Felix: Build R1 Wanton

63) Trydnt: Move B1 G3 Y2

64) Felix: Move Y1 Out Wanton

65) Trydnt: Move G2 Y33 Y2

66) Felix: Move R1 Wanton Y2

67) Trydnt: Move R2 Y2 G3

68) Felix: Attack B1 Y2

69) Trydnt: Sacrifice R2 G3
Attack R1 Y2
Attack B1 Y2

70) Felix: Build R2 Wanton

71) Trydnt: Sacrifice G3 Y33
Build G3 Y2
Build Y3 G3
Pass

72) Felix: Move G1 Wanton G1

73) Trydnt: Sacrifice Y3 G3
Move Y1 G1 Felix
Move Y2 G1 Felix
Move B1 G1 Felix
Catastrophe Felix Y
	Felix: YOu've got me in quite a pickle!

74) Felix: Attack B1 Felix

75) Trydnt: Sacrifice Y3 Trydnt
Move B3 G3 G1
Move B3 G1 Felix
Move B1 Y2 Felix
Catastrophe Felix B

	Felix: Good game! Very well played :)
	Trydnt: thanks! I thought you had me for a bit there


33892)
Variants: "Hard time"
Started: 2018.3.20, Ended: 2018.3.23
Participants: Trydnt (S), sharkhands (N)
Winner: Trydnt



33827)
Started: 2018.3.20, Ended: 2018.4.2
Participants: Trydnt (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y2 B1 G3

2) Trydnt: Homeworld G3 Y2 B3

3) ts52: Build G1 Ts52

4) Trydnt: Build B1 Trydnt

5) ts52: Trade G1 B1 Ts52

6) Trydnt: Build B2 Trydnt

7) ts52: Build B2 Ts52

8) Trydnt: Discover B1 Trydnt G1 G1

9) ts52: Discover B1 Ts52 G3 Kermit

10) Trydnt: Trade B2 Y2 Trydnt

11) ts52: Build B2 Kermit

12) Trydnt: Build B2 G1

13) ts52: Trade B1 Y1 Kermit

14) Trydnt: Move Y2 Trydnt G1

15) ts52: Build G1 Ts52

16) Trydnt: Build B1 Trydnt

17) ts52: Build B3 Kermit

18) Trydnt: Build B3 Trydnt

19) ts52: Trade B3 R3 Kermit

20) Trydnt: Trade B3 R3 Trydnt

21) ts52: Build B3 Kermit

22) Trydnt: Build B3 Trydnt

23) ts52: Trade B3 Y3 Kermit

24) Trydnt: Discover B3 Trydnt Y1 Y1

25) ts52: Build B3 Kermit

26) Trydnt: Move R3 Trydnt G1

27) ts52: Sacrifice Y3 Kermit
Move B3 Kermit G1
Move B3 G1 Trydnt
Discover B2 Kermit Y1 Bigbird

28) Trydnt: Sacrifice Y2 G1
Move B1 G1 Trydnt
Catastrophe Trydnt B
Move B3 Y1 Trydnt

29) ts52: Discover G1 Ts52 Y3 Zoe

30) Trydnt: Build B1 G1

31) ts52: Sacrifice G3 Ts52
Build B1 Bigbird
Build B3 Ts52
Build B3 Bigbird

32) Trydnt: Trade B2 Y2 G1

33) ts52: Trade B3 G3 Ts52

34) Trydnt: Build B2 G1

35) ts52: Move B2 Bigbird Zoe

36) Trydnt: Move B1 G1 Zoe

37) ts52: Build B3 Zoe

38) Trydnt: Move B2 G1 Zoe
Catastrophe Zoe B

39) ts52: Build G1 Ts52

40) Trydnt: Build B1 Trydnt

41) ts52: Move B3 Bigbird Trydnt

42) Trydnt: Trade B1 Y1 Trydnt



33890)
Variants: "Hard time"
Started: 2018.3.20, Ended: 2018.3.28
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: Homeworld B2 Y1 G3

2) Trydnt: Homeworld G3 Y2 B3

3) wil: Build G1 Wil

4) Trydnt: Build B1 Trydnt

5) wil: Trade G1 Y1 Wil

6) Trydnt: Trade B1 Y1 Trydnt

7) wil: Build Y2 Wil

8) Trydnt: Build Y2 Trydnt

9) wil: Discover Y1 Wil G3 G3

10) Trydnt: Discover Y1 Trydnt G1 G1

11) wil: Build Y3 G3

12) Trydnt: Build Y3 G1

13) wil: Move Y3 G3 G1

14) Trydnt: Trade Y2 R2 Trydnt

15) wil: Build Y2 G3

16) Trydnt: Move Y1 G1 G3

17) wil: Build Y3 G1
	wil: I like that we can experiment like crazy here online with weirdness...and then when I lose my numbers go down and people underate my abilities...its a win win!!

18) Trydnt: Sacrifice R2 Trydnt
Attack Y3 G1
Attack Y1 G3

19) wil: Move Y2 G3 G1
Catastrophe G1 Y
	wil: speaking of experimental and strange

20) Trydnt: Build B1 Trydnt

21) wil: Build G1 Wil
	wil: this is such a good place to try and retry different options

22) Trydnt: Sacrifice Y1 G3
Discover B1 Trydnt Y1 Y1

23) wil: Move Y2 Wil G3

24) Trydnt: Build Y2 G3

25) wil: Build Y3 G3

26) Trydnt: Catastrophe G3 Y
Discover B1 Y1 G3 G3

27) wil: Trade G1 B1 Wil

28) Trydnt: Trade B1 Y1 G3

29) wil: Move B1 Wil G3

30) Trydnt: Build Y1 G3

31) wil: Build B1 G3

32) Trydnt: Build Y2 G3

33) wil: Trade B1 R1 G3

34) Trydnt: Sacrifice Y2 G3
Discover Y1 G3 G2 G2
Discover Y1 G3 G2 G22

35) wil: Build R1 G3

36) Trydnt: Build Y2 G2

37) wil: Build G1 Wil

38) Trydnt: Build Y2 G22

39) wil: Discover G1 Wil Y3 Y3

40) Trydnt: Build Y3 G2

41) wil: Trade G3 Y3 Wil

42) Trydnt: Discover Y1 G2 G3 G33

43) wil: Sacrifice Y3 Wil
Move R1 G3 G22
Move R1 G3 G2
Pass
	Trydnt: the slowest, most excruciating monopolization possible



33930)
Variants: "Hard time"
Started: 2018.3.22, Ended: 2018.4.13
Participants: agentofchaos (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) agentofchaos: Homeworld R2 B3 G3
	Trydnt: best of luck to you!

3) Trydnt: Build G1 Trydnt
	agentofchaos: Thanks, you too

4) agentofchaos: Build G1 Agentofchaos

5) Trydnt: Trade G1 R1 Trydnt

6) agentofchaos: Trade G1 R1 Agentofchaos

7) Trydnt: Build R2 Trydnt

8) agentofchaos: Build R2 Agentofchaos

9) Trydnt: Trade R1 Y1 Trydnt

10) agentofchaos: Trade R1 Y1 Agentofchaos

11) Trydnt: Build R1 Trydnt

12) agentofchaos: Build G1 Agentofchaos

13) Trydnt: Build G1 Trydnt

14) agentofchaos: Trade G1 B1 Agentofchaos

15) Trydnt: Trade G1 B1 Trydnt

16) agentofchaos: Build G1 Agentofchaos

17) Trydnt: Build G1 Trydnt

18) agentofchaos: Discover Y1 Agentofchaos R1 Wowbolism

19) Trydnt: Discover R2 Trydnt G3 G3

20) agentofchaos: Build R3 Agentofchaos

21) Trydnt: Sacrifice G3 Trydnt
Build R3 Trydnt
Build R3 G3
Build Y1 Trydnt

22) agentofchaos: Sacrifice G1 Agentofchaos
Build Y2 Wowbolism

23) Trydnt: Move Y1 Trydnt G3



33814)
Started: 2018.3.28, Ended: 2018.4.12
Participants: MobyNostromo (S), deanthebean (N)
Winner: deanthebean

1) deanthebean: Homeworld G1 B2 Y3

2) MobyNostromo: H B1 Y2 G3
	deanthebean: Hello. Enjoy the game!
	MobyNostromo: Thank you!! You too!

3) deanthebean: Build Y1 Deanthebean

4) MobyNostromo: B G1 Mobynostromo

5) deanthebean: Build Y1 Deanthebean

6) MobyNostromo: B G1 Mobynostromo

7) deanthebean: Trade Y3 G3 Deanthebean

8) MobyNostromo: T G1 B1 Mobynostromo

9) deanthebean: Trade Y1 R1 Deanthebean

10) MobyNostromo: D G1 Mobynostromo Y3 Gold

11) deanthebean: Build R1 Deanthebean

12) MobyNostromo: B G1 Mobynostromo

13) deanthebean: Move R1 Deanthebean Gold

14) MobyNostromo: D G1 Gold Y1 Amber

15) deanthebean: Move R1 Gold Mobynostromo

16) MobyNostromo: T B1 R1 Mobynostromo

17) deanthebean: Attack R1 Mobynostromo

18) MobyNostromo: T G3 R3 Mobynostromo

19) deanthebean: Discover R1 Deanthebean Y3 West

20) MobyNostromo: T R3 G3 Mobynostromo

21) deanthebean: Attack G1 Mobynostromo

22) MobyNostromo: B G2 Mobynostromo

23) deanthebean: Build G2 Mobynostromo
Catastrophe Mobynostromo Green



33867)
Variants: "Unrated"
Started: 2018.3.29, Ended: 2018.4.3
Participants: silversliver (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) silversliver: Homeworld B2 G1 R3
	wil: New to the game or just to the forum?  

3) wil: Build G1 Wil

4) silversliver: Build R1 Silversliver

5) wil: Trade G1 R1 Wil

6) silversliver: Trade R1 Y1 Silversliver

7) wil: Build G1 Wil

8) silversliver: Build Y1 Silversliver

9) wil: Trade G1 Y1 Wil

10) silversliver: Discover Y1 Silversliver Y3 Sys1

11) wil: Build Y2 Wil

12) silversliver: Move R3 Silversliver Sys1
	wil: Ack!  Short universe!


13) wil: Discover Y2 Wil G3 G3

14) silversliver: Build Y2 Silversliver
	wil: Do you have some well thought out nefarious plan?  Are you incredibly bold, or new to the game?  These questions, if not answered by you, will soon be answered in upcoming moves.

15) wil: Build Y2 G3

16) silversliver: Trade Y1 R1 Silversliver

17) wil: Move R1 Wil G3

18) silversliver: Build R2 Silversliver

19) wil: Build Y1 Wil

20) silversliver: Trade R1 G1 Silversliver

21) wil: Sacrifice Y2 G3
Move Y1 Wil Sys1
Move Y1 Wil Sys1
Catastrophe Sys1 Y

22) silversliver: Discover G1 Silversliver R3 Sys2

23) wil: Build G1 Wil

24) silversliver: Build Y1 Silversliver

25) wil: Trade G1 Y1 Wil

26) silversliver: Trade Y1 G1 Silversliver

27) wil: Build G2 Wil

28) silversliver: Build G2 Sys2

29) wil: Discover G2 Wil Y3 Y3

30) silversliver: Sacrifice G2 Sys2
Build G2 Sys2
Build G2 Sys2

31) wil: Build G3 Y3

32) silversliver: Sacrifice Y2 Silversliver
Move G2 Sys2 Wil
Move G2 Sys2 Wil

33) wil: Attack G2 Wil

34) silversliver: Sacrifice G1 Sys2
Build G1 Wil
Catastrophe Wil G

35) wil: Build G1 Y3

36) silversliver: Trade G1 Y1 Silversliver

37) wil: Move G3 Y3 Wil

38) silversliver: Build R1 Silversliver

39) wil: Build R2 G3

40) silversliver: Discover R1 Silversliver Y3 Sys3

41) wil: Sacrifice Y2 G3
Move G1 Y3 Silversliver
Move G2 Y3 Silversliver

42) silversliver: Attack G2 Silversliver

43) wil: Build G1 Silversliver
Catastrophe Silversliver G
	wil: ah..you made the same mistake as I....wasting a move.

44) silversliver: Trade Y1 G1 Silversliver

45) wil: Build Y1 Wil

46) silversliver: Build G1 Silversliver

47) wil: Build Y1 Wil

48) silversliver: Build R2 Silversliver

49) wil: Build R3 G3

50) silversliver: Sacrifice G1 Silversliver
Build R3 Sys3

51) wil: Sacrifice Y1 Wil
Move R1 G3 Silversliver

52) silversliver: Trade R2 Y2 Silversliver

53) wil: Attack G1 Silversliver

54) silversliver: Attack R1 Silversliver
	wil: I shoulda sent in the r2

55) wil: Sacrifice Y1 Wil
Discover R3 G3 Y1 Y1

56) silversliver: Attack G1 Silversliver

57) wil: Build G1 Wil

58) silversliver: Build G1 Silversliver

59) wil: Trade G1 B1 Wil

60) silversliver: Move G1 Silversliver Sys3

61) wil: Build B1 Wil

62) silversliver: Trade R1 B1 Silversliver
	wil: You move almost as fast as playing live...  I've asked aaron in the next iteration to have a button so we know if someone is staying on line and playing...

63) wil: Move B1 Wil G3

64) silversliver: Discover B1 Silversliver R3 Sys4

65) wil: Build Y1 Wil

66) silversliver: Build Y2 Silversliver

67) wil: Move Y1 Wil G3

68) silversliver: Build G1 Sys3

69) wil: Discover B1 Wil G3 Gee3

70) silversliver: Build G2 Sys3
	wil: me thinks two moves to mate....  

71) wil: Sacrifice G3 Wil
Build Y2 G3
Build Y3 Wil
Build B2 G3

72) silversliver: Sacrifice G2 Sys3
Build B3 Sys4
Build G2 Sys3
	wil: very interesting game, I look forward to the next one.

73) wil: Sacrifice Y3 Wil
Move B2 G3 Silversliver
Move B1 G3 Silversliver
Move B1 Gee3 Silversliver
Catastrophe Silversliver B
	silversliver: gg
And yes, it was my first game.
	wil: I have a love hate relationship with short universe...  I don't do bad with them, but they are just wierd how they operate...and wiping out half a homeworld does not improve the connection..
	wil: good game...  
	wil: challenge me anytime...I enjoy playing
	wil: Wow...if this was your first game...you did quite well!   avid gamer?   do you have pyramids at home?   your early mistake was getting that big 3 out and then losing it...but it took me forever to capitalize on that.

	wil: Again...WELL DONE!



33918)
Variants: "Hard time"
Started: 2018.3.30, Ended: 2018.4.10
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: Homeworld B2 R1 G3

2) Trydnt: Homeworld B2 Y1 G3

3) wil: Build G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: Trade G1 Y1 Wil

6) Trydnt: Trade G1 R1 Trydnt

7) wil: Build Y1 Wil

8) Trydnt: Build R1 Trydnt

9) wil: Build Y2 Wil

10) Trydnt: Build R2 Trydnt

11) wil: Discover Y1 Wil R3 R3

12) Trydnt: Trade R2 Y2 Trydnt

13) wil: Sacrifice G3 Wil
Build Y2 R3
Build Y3 R3
Build Y3 Wil

14) Trydnt: Move Y2 Trydnt R3
Catastrophe R3 Y

15) wil: Trade Y3 G3 Wil

16) Trydnt: Build R2 Trydnt

17) wil: Trade Y2 R2 Wil

18) Trydnt: Discover R1 Trydnt G3 G3

19) wil: Build Y1 Wil

20) Trydnt: Trade R2 Y2 Trydnt

21) wil: Move R2 Wil G3

22) Trydnt: Build R2 G3

23) wil: Attack R2 G3

24) Trydnt: Sacrifice G3 Trydnt
Build R2 G3
Build R3 Trydnt
Build R3 Trydnt
Catastrophe G3 R

25) wil: Build Y2 Wil
	wil: noice

26) Trydnt: Trade R3 G3 Trydnt
	Trydnt: I thought so 

27) wil: Trade Y1 R1 Wil

28) Trydnt: Discover R1 Trydnt G3 G3

29) wil: Discover R1 Wil Y3 Y3

30) Trydnt: Move Y2 Trydnt G3

31) wil: Build G1 Wil

32) Trydnt: Build R2 Trydnt

33) wil: Sacrifice G1 Wil
Build R2 Y3

34) Trydnt: Discover R3 Trydnt Y3 Y33

35) wil: Discover Y2 Wil R3 R3

36) Trydnt: Build R2 Trydnt
	Trydnt: so you gonna host poker tonight?

37) wil: Build G1 Wil
	wil: thats the plan... I'll ask again if Jeff or Matt are making it.

38) Trydnt: Build R3 G3

39) wil: Trade G1 B1 Wil

40) Trydnt: Trade R2 B2 Trydnt

41) wil: Build G1 Wil

42) Trydnt: Build R2 Trydnt

43) wil: Discover G1 Wil B3 B3

44) Trydnt: Move B2 Trydnt G3

45) wil: Build G1 Wil

46) Trydnt: Trade R3 Y3 G3

47) wil: Move R1 Y3 Trydnt

48) Trydnt: Build R3 G3

49) wil: Build G1 Wil

50) Trydnt: Build G2 Trydnt

51) wil: Move G1 Wil R3 R3

52) Trydnt: Move R2 Trydnt B3

	Trydnt: why'd you resign? I mean it wasn't great but I think you've come back from worse
	wil: Idk exactly...I look now and I am outgunned 5-1 on larges and 5-2 on mediums...everywhere I am can be waltzed in on ...  It looks useless except waiting for an error...a few errors.  Lastly...I am back in a tourney game...I need to remove some confusion from my plate.
	Trydnt: fair enough haha


33945)
Variants: "Hard time"
Started: 2018.3.30, Ended: 2018.4.4
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: Homeworld B2 Y1 G3

2) Trydnt: Homeworld Y3 B2 G3

3) wil: Build G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: Trade G1 B1 Wil

6) Trydnt: Trade G1 Y1 Trydnt

7) wil: Build B1 Wil

8) Trydnt: Build Y1 Trydnt

9) wil: Discover B1 Wil Y3 Y3

10) Trydnt: Discover Y1 Trydnt G1 G1

11) wil: Build G1 Wil

12) Trydnt: Build Y2 G1

13) wil: Sacrifice G3 Wil
Build B1 Y3
Build B2 Y3
Build B3 Wil

14) Trydnt: Discover Y1 G1 G3 G3

15) wil: Trade B3 Y3 Wil

16) Trydnt: Build Y2 G3

17) wil: Build B3 Wil

18) Trydnt: Build Y2 G1

19) wil: Discover Y3 Wil G3 B3

20) Trydnt: Discover Y2 G1 B3 B33

21) wil: Trade B3 R3 Wil

22) Trydnt: Trade Y2 R2 B33

23) wil: Build Y2 B3

24) Trydnt: Move Y2 G1 Y3

25) wil: Discover B2 Y3 G1 G1

26) Trydnt: Move Y2 Y3 Wil

27) wil: Attack Y2 Wil
	wil: what...had to do some work?

28) Trydnt: Move Y2 G3 Wil

29) wil: Move Y2 Wil G3

	wil: no clue what is going on here...  not sure you planned right...ready for a surprise!
	Trydnt: lol that was clever
	Trydnt: I kept looking for a way around that big jump but nada
	wil: I don't really know how you lost the yellow domination...
	Trydnt: stupidity


33946)
Variants: "Hard time"
Started: 2018.3.30, Ended: 2018.4.12
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) wil: Homeworld Y3 B1 G3

3) Trydnt: Build G1 Trydnt

4) wil: Build G1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: Trade G1 B1 Wil

7) Trydnt: Build B2 Trydnt

8) wil: Build B2 Wil

9) Trydnt: Trade B1 R1 Trydnt
	wil: We are off to the races on four tracks!

10) wil: Trade B1 R1 Wil

11) Trydnt: Build R2 Trydnt

12) wil: Build R2 Wil

13) Trydnt: Build B1 Trydnt

14) wil: Build R2 Wil

15) Trydnt: Trade R2 Y2 Trydnt

16) wil: Trade R1 Y1 Wil

17) Trydnt: Build Y1 Trydnt

18) wil: Build B1 Wil

19) Trydnt: Discover B1 Trydnt G3 G3

20) wil: Sacrifice B1 Wil
Trade R2 G2 Wil

21) Trydnt: Build G1 Trydnt

22) wil: Discover B2 Wil G2 G2

23) Trydnt: Move Y2 Trydnt G3

24) wil: Move Y1 Wil G2

25) Trydnt: Discover B2 Trydnt Y3 Y3

26) wil: Build G1 Wil

27) Trydnt: Move G1 Trydnt Y3

28) wil: Discover G2 Wil Y2 Y2

29) Trydnt: Sacrifice G3 Trydnt
Build Y1 Trydnt
Build Y2 G3
Build Y3 Trydnt

30) wil: Discover G1 Wil R2 R2

31) Trydnt: Move Y2 G3 R2

32) wil: Build G1 Wil

33) Trydnt: Attack G1 R2

34) wil: Discover G2 Y2 G3 B3

35) Trydnt: Build Y2 R2

36) wil: Discover G1 Wil R2 B2

37) Trydnt: Move Y2 G3 B2

38) wil: Build G2 Wil

39) Trydnt: Attack G1 B2

40) wil: Move G2 Wil G2

41) Trydnt: Build B1 G3

42) wil: Build B3 G2

43) Trydnt: Build B3 Y3

44) wil: Trade B3 R3 G2

45) Trydnt: Sacrifice Y3 Trydnt
Move G1 Y3 G2
Move G1 R2 Y3
Move G1 Y3 G2
Catastrophe G2 G

46) wil: Build R1 Wil

47) Trydnt: Build Y1 B2

48) wil: Discover R1 Wil G2 G2

49) Trydnt: Build Y3 B2

50) wil: Build R3 G2

51) Trydnt: Move R1 Trydnt G3

52) wil: Build R3 Wil

53) Trydnt: Build R3 G3

54) wil: Move R3 Wil R2

55) Trydnt: Sacrifice Y2 R2
Move Y2 R2 G3
Discover R3 G3 Y2 Y2

56) wil: Trade R2 B2 Wil

57) Trydnt: Build B3 G3

58) wil: Move B2 Wil G2

59) Trydnt: Move B1 G3 B2

60) wil: Build B3 G2

61) Trydnt: Move B2 Y3 Y2

62) wil: Build G1 Wil

63) Trydnt: Build R2 G3

64) wil: Pass

65) Trydnt: Build G1 B2

	wil: yeah..this is over
	wil: gg
	wil: look at me..pumpin up your score!


33947)
Variants: "Hard time"
Started: 2018.3.30, Ended: 2018.4.16
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B3 G2 Y3

2) Trydnt: Homeworld G2 Y2 B3 *

3) wil: Build Y1 Wil

4) Trydnt: Build B1 Trydnt

5) wil: Build Y1 Wil

6) Trydnt: Build B1 Trydnt

7) wil: Discover Y1 Wil G1 G1

8) Trydnt: Discover B1 Trydnt Y3 Y3

9) wil: Build Y1 G1

10) Trydnt: Build B1 Trydnt

11) wil: Build Y2 G1

12) Trydnt: Discover B1 Trydnt Y3 Y33

13) wil: Trade Y3 G3 Wil

14) Trydnt: Build B2 Trydnt

15) wil: Move Y1 G1 Trydnt

16) Trydnt: Trade B2 R2 Trydnt

17) wil: Build Y2 G1

18) Trydnt: Attack Y1 Trydnt

19) wil: Build Y3 Wil

20) Trydnt: Move Y1 Trydnt G1
Catastrophe G1 Y

21) wil: Build Y1 Wil

22) Trydnt: Build B2 Trydnt

23) wil: Trade Y1 R1 Wil

24) Trydnt: Trade B2 G2 Trydnt

25) wil: Build R1 Wil

26) Trydnt: Sacrifice G2 Trydnt
Build B2 Y3
Build B2 Y33

27) wil: Trade G3 B3 Wil

28) Trydnt: Build B2 Trydnt

29) wil: Discover B3 Wil G1 G1

30) Trydnt: Trade B2 Y2 Trydnt

31) wil: Build B2 G1

32) Trydnt: Trade B1 G1 Y3

33) wil: Move Y1 Wil G1

34) Trydnt: Build B1 Y3

35) wil: Trade B3 R3 G1

36) Trydnt: Discover B1 Trydnt G1 G11

37) wil: Build B3 G1

38) Trydnt: Sacrifice Y2 Trydnt
Move B1 Y33 G1
Move B1 Y3 G1
Catastrophe G1 B

39) wil: Trade R1 B1 Wil

40) Trydnt: Trade B2 G2 Y33

41) wil: Move R3 G1 Y3

42) Trydnt: Discover G1 Y3 Y1 Y1

43) wil: Attack B2 Y3

44) Trydnt: Build G3 Y1

45) wil: Build Y1 Wil

46) Trydnt: Sacrifice G3 Y1
Build G3 Y1
Build G3 Y1
Build G3 Y33

47) wil: Build Y2 G1

48) Trydnt: Build R1 Trydnt

49) wil: Build Y2 Wil

50) Trydnt: Build B1 G11

51) wil: Build R1 Wil

52) Trydnt: Sacrifice B1 G11
Trade G1 B1 Y1

53) wil: Trade R1 G1 Wil

54) Trydnt: Move G3 Y1 Wil

55) wil: Attack G3 Wil

56) Trydnt: Move G3 Y1 Wil
Catastrophe Wil G

57) wil: Move B1 Wil G1

58) Trydnt: Build G1 Y33

59) wil: Trade Y2 G2 Wil

60) Trydnt: Discover G2 Y33 Y2 Y2

61) wil: Build G3 Wil

62) Trydnt: Sacrifice G3 Y33
Build G3 Y33
Build G3 Y2
Build B2 Y1

63) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 Y3
Build B3 G1

64) Trydnt: Move G2 Y2 Wil

65) wil: Move G3 Wil Y1

66) Trydnt: Sacrifice R2 Trydnt
Attack R1 Wil
Attack G2 Wil

67) wil: Sacrifice R3 Y3
Attack G2 Wil
Attack G2 Wil
Attack R1 Wil

68) Trydnt: Move G3 Y33 G1

69) wil: Sacrifice Y2 G1
Move Y1 G1 Trydnt
Move Y1 Wil Trydnt

70) Trydnt: Sacrifice R1 Trydnt
Attack B3 G1

71) wil: Build Y2 Trydnt
Catastrophe Trydnt Y

72) Trydnt: Sacrifice B3 G1
Trade G3 B3 Y2
Trade B3 R3 Trydnt
Trade G3 R3 G1

73) wil: Sacrifice Y3 Wil
Move G2 Wil Trydnt
Move G2 Wil Trydnt
Move G3 Y1 Trydnt
Catastrophe Trydnt G



33917)
Started: 2018.4.2, Ended: 2018.5.3
Participants: ts52 (S), Trydnt (N)
Winner: ts52

1) Trydnt: Homeworld B2 Y1 G3

2) ts52: Homeworld Y3 B2 G3

3) Trydnt: Build G1 Trydnt

4) ts52: Build G1 Ts52

5) Trydnt: Trade G1 Y1 Trydnt

6) ts52: Trade G1 Y1 Ts52

7) Trydnt: Build Y2 Trydnt

8) ts52: Build Y2 Ts52

9) Trydnt: Trade Y2 R2 Trydnt

10) ts52: Trade Y2 R2 Ts52

11) Trydnt: Build Y2 Trydnt

12) ts52: Build Y2 Ts52

13) Trydnt: Discover Y1 Trydnt G3 G3

14) ts52: Discover Y1 Ts52 G1 Kermit

15) Trydnt: Build R1 Trydnt

16) ts52: Build R1 Ts52

17) Trydnt: Build G1 Trydnt

18) ts52: Trade R1 B1 Ts52

19) Trydnt: Trade G1 B1 Trydnt

20) ts52: Build G1 Ts52

21) Trydnt: Move R2 Trydnt G3

22) ts52: Build R1 Ts52

23) Trydnt: Move B1 Trydnt G3

24) ts52: Move R2 Ts52 Kermit

25) Trydnt: Discover Y2 Trydnt B3 B3

26) ts52: Move B1 Ts52 Kermit

27) Trydnt: Build G1 Trydnt

28) ts52: Discover G1 Ts52 B1 Gonzo

29) Trydnt: Move G1 Trydnt B3

30) ts52: Build G2 Ts52

31) Trydnt: Build G2 Trydnt

32) ts52: Move Y2 Ts52 Gonzo

33) Trydnt: Sacrifice G3 Trydnt
Build G2 B3
Build G3 Trydnt
Build R1 G3

34) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Kermit
Build R3 Ts52

35) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 Trydnt
Build R3 Trydnt

36) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build Y3 Gonzo

37) Trydnt: Discover R3 Trydnt Y3 Y3

38) ts52: Discover Y2 Gonzo B3 Grover

39) Trydnt: Move R3 Trydnt B3

40) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Kermit
Build B3 Kermit

41) Trydnt: Move B1 G3 Kermit
Catastrophe Kermit B

42) ts52: Move Y3 Gonzo G3

43) Trydnt: Move R3 Y3 Gonzo

44) ts52: Sacrifice G1 Gonzo
Build Y3 Grover

45) Trydnt: Trade R3 B3 Gonzo

46) ts52: Sacrifice R2 Kermit
Attack R2N G3
Attack R1N G3

47) Trydnt: Sacrifice G2 Trydnt
Build R2 Trydnt
Build R3 B3

48) ts52: Attack Y1N G3
	Trydnt: I don't know why I did that. Might have lost me the game

49) Trydnt: Discover R3 B3 G1 G1

50) ts52: Move R3 Ts52 Kermit

51) Trydnt: Build G2 Trydnt

52) ts52: Move Y1 Kermit G3

53) Trydnt: Move G1 B3 Gonzo

54) ts52: Trade Y2 B2 Grover

55) Trydnt: Sacrifice G2 B3
Build Y2 B3
Build G2 Gonzo

56) ts52: Move G2 Ts52 Kermit

57) Trydnt: Sacrifice Y2 B3
Move Y2 B3 Gonzo
Move Y2 Gonzo G3
Catastrophe G3 Y

58) ts52: Sacrifice G2 Kermit
Build G2 Ts52
Build Y1 Kermit

59) Trydnt: Trade B3 Y3 Gonzo

60) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Grover
Build Y1 Grover

61) Trydnt: Sacrifice Y3 Gonzo
Move G1 Gonzo Ts52
Move G2 Gonzo Ts52
Catastrophe Ts52 G
Move R3 G1 Ts52

62) ts52: Sacrifice Y3 Grover
Move R2 Kermit Ts52
Move R3 Kermit Ts52
Move Y2 Kermit Ts52
Catastrophe Ts52 R

63) Trydnt: Sacrifice G2 Trydnt
Build R1 B3
Build R2 B3

64) ts52: Build R3 G3

65) Trydnt: Trade R2 Y2 B3

66) ts52: Sacrifice Y2 Ts52
Move R3 G3 Kermit
Move R3 Kermit Ts52

67) Trydnt: Trade R1 B1 Trydnt

68) ts52: Trade B2 G2 Grover

69) Trydnt: Move R3 B3 Kermit

70) ts52: Move Y1 Kermit G3

71) Trydnt: Sacrifice G3 Trydnt
Build R1 Kermit
Build R2 B3
Build R3 Trydnt

72) ts52: Build Y2 G3

73) Trydnt: Sacrifice B1 Trydnt
Trade R3 Y3 Kermit

74) ts52: Sacrifice Y2 G3
Move R1 G3 Trydnt
Move R2 G3 Trydnt
Catastrophe Trydnt Red

	ts52: Thanks for the game!


33959)
Started: 2018.4.2, Ended: 2018.6.15
Participants: Trydnt (S), ts52 (N)
Winner: Trydnt

1) ts52: Homeworld B1 Y2 G3

2) Trydnt: Homeworld Y3 B2 G3

3) ts52: Build G1 Ts52

4) Trydnt: Build G1 Trydnt

5) ts52: Discover G1 Ts52 B3 Gonzo

6) Trydnt: Trade G1 B1 Trydnt

7) ts52: Build G1 Gonzo

8) Trydnt: Build B1 Trydnt

9) ts52: Trade G1 Y1 Gonzo

10) Trydnt: Discover B1 Trydnt G1 G1

11) ts52: Build Y1 Gonzo

12) Trydnt: Build B2 G1

13) ts52: Build Y1 Gonzo

14) Trydnt: Build B2 G1

15) ts52: Discover Y1 Gonzo G2 Kermit

16) Trydnt: Trade B2 Y2 G1

17) ts52: Build G1 Ts52

18) Trydnt: Discover B2 G1 Y3 Y3

19) ts52: Build G2 Ts52

20) Trydnt: Sacrifice G3 Trydnt
Build B2 Y3
Build B3 Trydnt
Build B3 G1

21) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Gonzo
Build G3 Ts52

22) Trydnt: Trade B3 G3 Trydnt

23) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Gonzo
Build Y3 Kermit

24) Trydnt: Build B3 G1

25) ts52: Trade G2 R2 Ts52

26) Trydnt: Trade B3 R3 G1

27) ts52: Trade G3 R3 Gonzo

28) Trydnt: Discover B3 G1 G3 G3

29) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build R1 Gonzo

30) Trydnt: Build B3 G3

31) ts52: Discover Y3 Kermit R1 Elmo

32) Trydnt: Move B2 Y3 G1

33) ts52: Move Y1 Gonzo Elmo

34) Trydnt: Sacrifice B2 Y3
Trade B3 Y3 G3
Pass

35) ts52: Move G2 Gonzo Elmo

36) Trydnt: Build B2 G1

37) ts52: Move R1 Gonzo Kermit

38) Trydnt: Build B3 G3

39) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Gonzo
Build R2 Kermit

40) Trydnt: Trade B3 R3 G3

41) ts52: Discover G1 Ts52 B3 Grover

42) Trydnt: Sacrifice Y3 G3
Move B1 G1 Gonzo
Move B2 G1 Gonzo
Move B2 G1 Gonzo
Catastrophe Gonzo B

43) ts52: Build G1 Ts52

44) Trydnt: Build B1 G3

45) ts52: Build G2 Grover

46) Trydnt: Build B2 G3

47) ts52: Trade G2 Y2 Grover

48) Trydnt: Trade B3 Y3 G3

49) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G3 Ts52
Build Y1 Grover

50) Trydnt: Move R3 G1 Grover

51) ts52: Sacrifice G2 Grover
Build G2 Elmo
Build R1 Ts52

52) Trydnt: Attack Y2 Grover

53) ts52: Discover R2 Ts52 B3 Gonzo

54) Trydnt: Discover Y2 G1 R3 R3

55) ts52: Sacrifice Y1 Grover
Discover G1 Grover Y1 Bigbird

56) Trydnt: Build G1 Trydnt

57) ts52: Sacrifice Y3 Elmo
Move G1 Bigbird Trydnt
Move G2 Elmo Trydnt
Catastrophe Trydnt G
Move G2 Elmo Trydnt

58) Trydnt: Sacrifice Y2 R3
Move R3 G3 Elmo
Move R3 Elmo Trydnt

59) ts52: Sacrifice G2 Trydnt
Build R2 Gonzo
Build R3 Ts52

60) Trydnt: Build B2 G3

61) ts52: Trade R2 G2 Gonzo

62) Trydnt: Trade B2 R2 G3

63) ts52: Build G1 Gonzo

64) Trydnt: Move B2 G3 Elmo

65) ts52: Move Y1 Elmo Gonzo

66) Trydnt: Build B2 G3

67) ts52: Discover R3 Ts52 B3 Cookie

68) Trydnt: Build Y1 G3

69) ts52: Discover G1 Ts52 Y3 Bigbird

70) Trydnt: Trade R2 G2 G3

71) ts52: Build Y2 Kermit

72) Trydnt: Sacrifice Y2 Grover
Move R3 Grover Elmo
Move R3 Elmo Bigbird

73) ts52: Sacrifice G1 Bigbird
Build R2 Cookie

74) Trydnt: Build B3 G3

75) ts52: Build Y2 Kermit

76) Trydnt: Move B3 G3 Kermit

77) ts52: Trade R3 G3 Cookie

78) Trydnt: Sacrifice G2 G3
Build R3 Trydnt
Pass

79) ts52: Move Y2 Kermit Cookie

80) Trydnt: Sacrifice R3 Trydnt
Attack Y2 Kermit
Attack R2 Kermit
Attack R1 Kermit

81) ts52: Build R3 Gonzo

82) Trydnt: Attack Y1 Kermit

83) ts52: Build G1 Ts52

84) Trydnt: Trade B2 G2 Elmo

85) ts52: Trade R2 B2 Cookie
	ts52: Sorry for the delay!

86) Trydnt: Move R2 Kermit Gonzo

87) ts52: Attack R2S Gonzo

88) Trydnt: Move R1 Kermit Gonzo
Catastrophe Gonzo R

89) ts52: Trade G2 R2 Gonzo

90) Trydnt: Sacrifice Y3 G3
Move B3 Kermit Cookie
Move B1 G3 Kermit
Move B1 Kermit Cookie
Catastrophe Cookie B

91) ts52: Build R1 Gonzo

92) Trydnt: Sacrifice G2 Elmo
Build Y2 Kermit
Build Y3 G3

93) ts52: Build G1 Gonzo
	Trydnt: couldn't see an obviously good move so I went with the most surprising one
	ts52: That's certainly surprising...

94) Trydnt: Sacrifice Y2 Kermit
Move Y3 G3 Kermit
Move Y3 Kermit Gonzo

95) ts52: Discover R2 Gonzo B1 Grover

96) Trydnt: Sacrifice R3 Bigbird
Attack R1 Gonzo
Attack Y1 Gonzo
Attack G1 Gonzo

97) ts52: Sacrifice G1 Gonzo
Build R1 Grover

98) Trydnt: Build Y2 G3

99) ts52: Discover G1 Ts52 Y3 Bigbird

100) Trydnt: Build B2 G3

101) ts52: Build R2 Ts52

102) Trydnt: Build B3 G3

103) ts52: Build G1 Ts52

104) Trydnt: Trade Y3 G3 Gonzo

105) ts52: Discover G1 Ts52 Y3 Zoe

106) Trydnt: Trade B3 R3 G3

107) ts52: Build G2 Ts52

108) Trydnt: Sacrifice Y2 Kermit
Move G1 Gonzo Ts52
Move G3 Gonzo Ts52
Catastrophe Ts52 G

109) ts52: Trade R2 G2 Ts52

110) Trydnt: Move R3 G3 Ts52

111) ts52: Build R2 Ts52

112) Trydnt: Sacrifice R3 Trydnt
Attack R1 Ts52
Attack R2 Ts52
Attack G2 Ts52



33960)
Started: 2018.4.2, Ended: 2018.5.7
Participants: Trydnt (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B3 Y2 G3

3) ts52: Build G1 Ts52

4) Trydnt: Build G1 Trydnt

5) ts52: Discover G1 Ts52 B3 Gonzo

6) Trydnt: Trade G1 Y1 Trydnt

7) ts52: Build G1 Ts52

8) Trydnt: Build Y1 Trydnt

9) ts52: Build G1 Ts52

10) Trydnt: Discover Y1 Trydnt B1 B1

11) ts52: Build G2 Gonzo

12) Trydnt: Build G2 Trydnt

13) ts52: Trade G2 Y2 Gonzo

14) Trydnt: Move G2 Trydnt B1

15) ts52: Trade G1 B1 Ts52

16) Trydnt: Trade Y1 B1 Trydnt

17) ts52: Discover B1 Ts52 G3 Kermit

18) Trydnt: Discover G2 B1 Y3 Y3

19) ts52: Build B2 Kermit

20) Trydnt: Discover B1 Trydnt Y1 Y1

21) ts52: Trade G1 R1 Ts52

22) Trydnt: Trade B1 R1 Y1

23) ts52: Build G1 Ts52

24) Trydnt: Discover Y1 B1 B3 B3

25) ts52: Build R1 Ts52

26) Trydnt: Sacrifice G2 Y3
Build Y2 B3
Build Y3 B3

27) ts52: Build Y3 Gonzo

28) Trydnt: Trade Y2 G2 B3

29) ts52: Move Y2 Gonzo Y1

30) Trydnt: Move R1 Y1 B3

31) ts52: Build Y2 Gonzo

32) Trydnt: Discover Y1 B3 B1 B1

33) ts52: Build B1 Kermit

34) Trydnt: Sacrifice G2 B3
Build Y3 B1
Build R2 B3

35) ts52: Trade Y3 R3 Gonzo

36) Trydnt: Discover Y1 B1 Y3 Y3

37) ts52: Build R2 Gonzo

38) Trydnt: Move Y3 B1 Kermit

39) ts52: Move R2 Gonzo Y1

40) Trydnt: Sacrifice R1 B3
Attack B2 Kermit

41) ts52: Move R2 Y1 Y3

42) Trydnt: Sacrifice Y1 Y3
Discover B2 Kermit Y1 Y11

43) ts52: Move G1 Ts52 Y3

44) Trydnt: Trade B2 R2 Y11

45) ts52: Build R1 Y3

46) Trydnt: Sacrifice R2 Y11
Attack B1 Kermit
Attack B1 Kermit

47) ts52: Build R2 Gonzo

48) Trydnt: Build B1 Kermit

49) ts52: Build R3 Y3

50) Trydnt: Build G1 Trydnt

51) ts52: Build R3 Gonzo

52) Trydnt: Build Y1 Kermit

53) ts52: Build G2 Ts52

54) Trydnt: Move B1 Kermit Ts52

55) ts52: Trade R2 B2 Gonzo

56) Trydnt: Sacrifice G1 Trydnt
Build R2 B3

57) ts52: Move R3 Gonzo Y1

58) Trydnt: Move B1 Kermit Ts52

59) ts52: Move B2 Gonzo Y1

60) Trydnt: Move B1 Kermit Ts52

61) ts52: Build G1 Ts52

62) Trydnt: Move Y1 Kermit Ts52

63) ts52: Catastrophe Ts52 B
Sacrifice Y2 Y1
Move G1 Ts52 Trydnt
Move G2 Ts52 Trydnt

64) Trydnt: Sacrifice Y3 Kermit
Move Y3 B3 Ts52
Move R2 B3 Ts52
Move R2 Ts52 Trydnt

65) ts52: Sacrifice R3 Y3
Attack R2S Trydnt
Attack Y3S Ts52
Attack Y1S Ts52

66) Trydnt: Sacrifice R2 B3
Attack R2 Trydnt
Attack G2 Trydnt

67) ts52: Sacrifice Y3 Ts52
Move G1 Gonzo Y1
Move G1 Y1 Trydnt
Catastrophe Trydnt G
Move R3 Y1 Trydnt



33776)
Variants: "Unrated"
Started: 2018.4.5, Ended: 2018.4.9
Participants: Schmoopy (S), Twinsen (N)
Winner: Twinsen

1) Twinsen: Homeworld R2 B1 G3



33848)
Variants: "Hard time"
Started: 2018.4.5, Ended: 2018.5.7
Participants: Trydnt (S), Twinsen (N)
Winner: Twinsen

1) Twinsen: Homeworld R2 B1 G3

2) Trydnt: Homeworld Y3 B2 G3
	Twinsen: hi
	Trydnt: hello

3) Twinsen: Build G1 Twinsen

4) Trydnt: Build G1 Trydnt

5) Twinsen: Trade G1 Y1 Twinsen

6) Trydnt: Trade G1 B1 Trydnt

7) Twinsen: Discover Y1 Twinsen B3 Deepblue

8) Trydnt: Build B1 Trydnt

9) Twinsen: Build G1 Twinsen

10) Trydnt: Discover B1 Trydnt G1 G1

11) Twinsen: Trade G1 Y1 Twinsen

12) Trydnt: Build B2 G1

13) Twinsen: Build G1 Twinsen

14) Trydnt: Build B2 G1

15) Twinsen: Discover G1 Twinsen B3 Me6

16) Trydnt: Build B3 Trydnt

17) Twinsen: Move Y1 Deepblue Twinsen

18) Trydnt: Trade B2 Y2 G1

19) Twinsen: Build G1 Me6

20) Trydnt: Build B2 G1

21) Twinsen: Build G2 Twinsen

22) Trydnt: Build G2 Trydnt

23) Twinsen: Sacrifice G3 Twinsen
Build G2 Me6
Build G3 Twinsen
Build G3 Twinsen

24) Trydnt: Discover B2 G1 Y3 Y3

25) Twinsen: Trade G1 Y1 Me6

26) Trydnt: Trade B3 Y3 Trydnt

27) Twinsen: Move G3 Twinsen Y3

28) Trydnt: Build B3 G1

29) Twinsen: Build Y2 Me6

30) Trydnt: Build Y2 G1

31) Twinsen: Trade G2 R2 Me6

32) Trydnt: Build B3 Trydnt

33) Twinsen: Move G3 Y3 G1

34) Trydnt: Sacrifice Y2 G1
Discover B3 G1 R3 R3
Discover B3 Trydnt R1 R1

35) Twinsen: Sacrifice R2 Me6
Attack B2 G1
Attack Y2 G1

36) Trydnt: Trade B1 G1 G1

37) Twinsen: Sacrifice Y2 G1
Move G3 G1 Trydnt
Move B2 G1 Trydnt

38) Trydnt: Sacrifice G3 Trydnt
Build G2 Trydnt
Build G3 Trydnt
Build B1 R3
Catastrophe Trydnt G

39) Twinsen: Sacrifice Y2 Me6
Move Y1 Me6 G1
Move Y1 G1 Trydnt

40) Trydnt: Trade Y3 R3 Trydnt

41) Twinsen: Sacrifice G1 Me6
Build B3 Trydnt
Catastrophe Trydnt Blue

42) Trydnt: Attack Y1 Trydnt

43) Twinsen: Discover Y1 Twinsen G3 Verde

44) Trydnt: Sacrifice B3 R1
Trade Y1 G1 Trydnt
Trade B3 Y3 R3
Trade B2 Y2 Y3

45) Twinsen: Build Y1 Twinsen

46) Trydnt: Build G2 Trydnt

47) Twinsen: Sacrifice G2 Twinsen
Build Y2 Verde
Build Y2 Verde

48) Trydnt: Move Y3 R3 Twinsen

49) Twinsen: Attack Y3 Twinsen

50) Trydnt: Move Y2 Y3 Twinsen
Catastrophe Twinsen Y

51) Twinsen: Build G2 Twinsen

52) Trydnt: Move G2 Trydnt Twinsen

53) Twinsen: Trade G3 Y3 Twinsen

54) Trydnt: Attack G2 Twinsen

55) Twinsen: Attack G2S Twinsen

56) Trydnt: Attack G2 Twinsen

57) Twinsen: Attack G2 Twinsen

58) Trydnt: Sacrifice G2 Twinsen
Build G2 Trydnt
Build B1 R3

59) Twinsen: Sacrifice Y2 Verde
Discover Y2 Verde G2 Gg
Move Y1 Verde Gg

60) Trydnt: Sacrifice G1 G1
Build B2 R3

61) Twinsen: Build Y1 Twinsen

	Twinsen: Good game
	Trydnt: well played


33970)
Variants: "Unrated, Hard time"
Started: 2018.4.7, Ended: 2018.4.30
Participants: wil (S), ts52 (N)
Winner: wil

1) ts52: Homeworld Y2 B1 G3

2) wil: Homeworld B3 Y1 G3
	ts52: For the great homeworlds tournament. Game 8. Have a good game!
	wil: Oh my!  this is it?  You have a good game!

3) ts52: Build G1 Ts52

4) wil: Build G1 Wil
	wil: b g1 wil

5) ts52: Trade G1 B1 Ts52
	wil: lol....gotta put it in the right box..

	ts52: :)

6) wil: Trade G1 Y1 Wil
	wil: sorry...new to the game...I'll figure it out

7) ts52: Build B1 Ts52

8) wil: Build Y1 Wil
	ts52: trying to lull me into a false sense of security? ;) I'd say it'll never work, but I'm not so sure.

9) ts52: Discover B1 Ts52 G3 Kermit

10) wil: Discover Y1 Wil G2 G2

11) ts52: Build B2 Kermit

12) wil: Sacrifice G3 Wil
Build Y2 G2
Build Y2 G2
Build Y3 Wil

13) ts52: Discover B1 Ts52 G3 Oscar
	wil: I may have pulled the trigger to early...  

14) wil: Discover Y2 G2 B3 B3
	ts52: Time will tell.

15) ts52: Build B2 Oscar
	wil: Looks like one of us will play Babamots next.  
	Babamots: Yup, lucky you!
	wil: This is far from over...IDK what you two are thinking...I am famous for mistakes..

	Babamots: Sorry, I didn't mean to imply an outcome in my comment. I just meant that one of you two lucky players gets to play me.

16) wil: Build Y3 G2
	ts52: My comment was in reply to yours: "i may have pulled the trigger to early...". Definitely no implication of outcome. I agree this game is far from over.

17) ts52: Build B2 Kermit
	wil: lol..totally my mistake...rereading I don't know what I read...  no head games intended...


18) wil: Move Y3 G2 B3

19) ts52: Build B3 Oscar
	wil: lol, I have no clue where this is going to go...love it!


20) wil: Build Y3 G2
	ts52: I suspect it's not going to end well for me, but I can't wait to see exactly how. :)

21) ts52: Build G1 Ts52

22) wil: Trade Y2 G2 B3

23) ts52: Trade B2 Y2 Oscar

24) wil: Build G1 B3

25) ts52: Trade G1 R1 Ts52

26) wil: Move Y3 G2 Kermit

27) ts52: Build R1 Ts52

28) wil: Trade Y1 R1 Wil

29) ts52: Build R2 Ts52

30) wil: Sacrifice G2 B3
Build R2 Wil
Build R2 Wil

31) ts52: Move R1 Ts52 Oscar

32) wil: Sacrifice R2 Wil
Attack B2 Kermit
Attack B2 Kermit

33) ts52: Build B2 Kermit
Catastrophe Kermit Blue

34) wil: Build Y1 B3

35) ts52: Build R2 Oscar

36) wil: Move R1 Wil G2

37) ts52: Trade R1 B1 Oscar

38) wil: Build G1 B3

39) ts52: Move B3 Oscar G2

40) wil: Sacrifice Y2 G2
Move Y1 G2 Kermit
Move R1 G2 Kermit

41) ts52: Build Y2 Oscar

42) wil: Build G1 B3

43) ts52: Build B2 G2

44) wil: Move G1 B3 Ts52

45) ts52: Build B2 G2

46) wil: Sacrifice Y3 Kermit
Move G1 B3 Ts52
Move G1 B3 Ts52
Move Y3 B3 Ts52
Catastrophe Ts52 G

47) ts52: Sacrifice Y2 Oscar
Move B3 G2 Wil
Move Y2 Oscar Ts52

48) wil: Attack B3 Wil
	ts52: Well played.

49) ts52: Sacrifice B2 G2
Trade R2 Y2 Ts52
Catastrophe Ts52 Y
Trade B2 Y2 G2

50) wil: Move B3 Wil G2
	wil: Still so scary...do I have it...don't I...eek.
	ts52: I'm pretty sure you have this. I _think_ this is my only possible move, but it's not enough.

51) ts52: Move Y2 G2 Oscar
	wil: It is soo dang close...I can't guarantee an end that i won't screw up.
	wil: just discovered my problem....I am trying to end it...I should just build and be safe.

52) wil: Sacrifice Y1 B3
Move B3 G2 Ts52

53) ts52: Sacrifice Y2 Oscar
Move R2 Oscar Ts52
Move B1 Oscar Ts52

54) wil: Sacrifice R2 Wil
Attack R1 Ts52
Attack R2 Ts52

55) ts52: Build B2 Oscar
	ts52: Again, well played. I thought I might be able to trip you up, but I don't think that's going to happen.

56) wil: Attack B1 Ts52
	wil: lol, I've been known to make mistakes that are easily capitalized on...it was worth it...there a few moves ago I was so struggling to just end it in one or two moves...I took my eye off the prize and could have been tripped up so easily.  

	wil: Well fought.

	ts52: Thanks for the game. Best of luck in the rest of the tournament.
	wil: thanks...win or lose anywhere in this...this has been fun.


33961)
Started: 2018.4.9, Ended: 2018.6.5
Participants: ts52 (S), Twinsen (N)
Winner: Twinsen

1) Twinsen: Homeworld R2 B1 G3

2) ts52: Homeworld Y3 B2 G3

3) Twinsen: Build G1 Twinsen
	ts52: Have a good game!
	Twinsen: You too!

4) ts52: Build G1 Ts52

5) Twinsen: Build G1 Twinsen

6) ts52: Build G2 Ts52

7) Twinsen: Trade G3 Y3 Twinsen

8) ts52: Discover G2 Ts52 B1 Grover

9) Twinsen: Build G2 Twinsen

10) ts52: Build G2 Grover

11) Twinsen: Discover G1 Twinsen Y3 Jelly

12) ts52: Trade G2 Y2 Grover

13) Twinsen: Discover G2 Twinsen B3 Azul

14) ts52: Build Y1 Grover

15) Twinsen: Build G2 Azul

16) ts52: Trade G3 R3 Ts52

17) Twinsen: Build G3 Twinsen

18) ts52: Build G3 Ts52

19) Twinsen: Sacrifice G3 Twinsen
Build G3 Twinsen
Build G3 Jelly
Build Y1 Twinsen

20) ts52: Build R1 Ts52

21) Twinsen: Trade G2 Y2 Azul

22) ts52: Move R3 Ts52 Grover

23) Twinsen: Discover G3 Jelly Y1 Amarillo

24) ts52: Move R3 Grover Azul

25) Twinsen: Sacrifice Y2 Azul
Discover G2 Azul B1 Phobos
Discover Y1 Twinsen R3 Marte

26) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build R1 Azul
Build G3 Ts52

27) Twinsen: Sacrifice G3 Twinsen
Build Y2 Twinsen
Build Y2 Marte
Build G3 Twinsen

28) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Azul
Build R2 Ts52

29) Twinsen: Trade G2 R2 Phobos

30) ts52: Sacrifice Y2 Grover
Move G2 Grover Jelly
Discover G2 Grover R3 Elmo

31) Twinsen: Sacrifice Y2 Twinsen
Move G1 Jelly Phobos
Move R2 Phobos Azul
Catastrophe Azul Red

32) ts52: Sacrifice G3 Ts52
Build G2 Elmo
Build G3 Ts52
Build Y2 Grover

33) Twinsen: Sacrifice Y2 Marte
Move G1 Phobos Elmo
Move G1 Twinsen Elmo
Catastrophe Elmo Green

34) ts52: Trade Y1 B1 Grover

35) Twinsen: Build Y1 Twinsen

36) ts52: Move B1 Grover Jelly

37) Twinsen: Trade G3 R3 Twinsen

38) ts52: Move R2 Ts52 Grover

39) Twinsen: Move R3 Twinsen Jelly

40) ts52: Discover B1 Jelly G1 Kermit

41) Twinsen: Attack G2 Jelly
	ts52: Sorry for the delay!

42) ts52: Build B2 Kermit
	Twinsen: No problem. Don't worry.

43) Twinsen: Move R3 Jelly Grover

44) ts52: Move Y2 Grover Marte

45) Twinsen: Discover Y1 Marte G1 Cloverfield

46) ts52: Trade B2 Y2 Kermit

47) Twinsen: Build Y2 Cloverfield

48) ts52: Build B2 Kermit

49) Twinsen: Attack R2 Grover

50) ts52: Build B2 Kermit

51) Twinsen: Sacrifice Y2 Cloverfield
Move G3 Amarillo Ts52
Move R3 Grover Ts52

52) ts52: Attack R3N Ts52

53) Twinsen: Sacrifice R2 Grover
Attack R3S Ts52
Attack G3S Ts52

54) ts52: Build R1 Ts52

55) Twinsen: Sacrifice R3 Ts52
Attack R1 Ts52
Attack R1 Ts52
Attack G1 Ts52

	ts52: Good game! Well played.
	Twinsen: Good game. Nice to play. 


33943)
Variants: "Unrated"
Started: 2018.4.9, Ended: 2018.5.2
Participants: Twinsen (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) Twinsen: Homeworld R3 B1 G3
	wil: good luck!  New player or just found us?
	Twinsen: Hi, good luck too. New player here. 

3) wil: Build G1 Wil
	wil: You want any hints when I see mistakes or for me to just shut up and play?


4) Twinsen: Build G1 Twinsen
	Twinsen: Let my mistakes teach me by themselves :D. Thanks

5) wil: Trade G1 B1 Wil
	wil: No problem, that is exactly how I learned...first you lose repeatedly...and then you start to see the attacks...then you try to use the attacks and see the counter measures...then you try the counter measures..
	wil: Have you got pyramids at home?

6) Twinsen: Build G1 Twinsen
	Twinsen: Yes I do, but I was able to play homeworlds only once. 

7) wil: Build B1 Wil

8) Twinsen: Trade G1 Y1 Twinsen
	wil: Cool...the layout here gets confusing...sometimes it is worthwhile to set it up IRL so you can see all that is going on.  
	Twinsen: I'll try it. Thank you for the advice. 

9) wil: Build G1 Wil

10) Twinsen: Discover G1 Twinsen Y2 Sol

11) wil: Trade G1 Y1 Wil

12) Twinsen: Build G1 Twinsen

13) wil: Discover B1 Wil Y3 Y3

14) Twinsen: Trade G1 R1 Twinsen

15) wil: Build B2 Wil

16) Twinsen: Build G1 Twinsen

17) wil: Discover B2 Wil Y3 Why3

18) Twinsen: Discover R1 Twinsen Y2 Yfull

19) wil: Sacrifice G3 Wil
Build B2 Y3
Build B3 Why3
Build B3 Wil

20) Twinsen: Trade G3 B3 Twinsen
	wil: allowing someone to monopolize an economy can be disastrous...at the beginning of every game it is a challenge of getting larger ships vs. getting one of each color...a game of follow the leader is typical.

21) wil: Trade B3 Y3 Why3
	Twinsen: I have little choice here

22) Twinsen: Move R1 Yfull Twinsen

23) wil: T B3 G3 Wil

24) Twinsen: Move G1 Sol Twinsen
	wil: It is only going to get worse now... warning though... getting a monopoly is always one thing, maintaining one is another.  Easy to get bitten...  in this case I am going to start a large ship factory and then either build a doomsday machine or come in on a full frontal attack.  

25) wil: Build B3 Wil
	Twinsen: I'm not even familiar with those terms. :D

26) Twinsen: Pass
	wil: The doomsday machine is accumulating enough ships of blue and red (the color of your homestars) and yellow to launch them into your homeworld and cause overpopulation catastrophes.

	wil: A full frontal attack or invasion, would be when I send in more large ships than you can kill, and then take over your ships in your homeworld.

27) wil: Trade B3 G3 Wil
	Twinsen: This gonna be quick, I think. :D

28) Twinsen: Discover R1 Twinsen Y2 Y2

29) wil: Sacrifice G3 Wil
Build B3 Y3
Build B3 Why3
Pass

30) Twinsen: Move R1 Y2 Y3

31) wil: Sacrifice B2 Y3
Trade B3 R3 Y3
Trade B3 G3 Why3

32) Twinsen: Attack B1 Y3

33) wil: Attack R1 Y3

34) Twinsen: Discover B1 Y3 G2 Greeny

35) wil: Sacrifice G3 Why3
Build B2 Why3
Build B3 Why3
Build B3 Wil

36) Twinsen: Sacrifice Y1 Twinsen
Move B1 Greeny Why3
Catastrophe Why3 Blue

37) wil: Move B3 Wil Y3

38) Twinsen: Trade G1 Y1 Twinsen

39) wil: Build G1 Wil

40) Twinsen: Build G1 Twinsen

41) wil: Move G1 Wil Y3

42) Twinsen: Discover G1 Twinsen Y2 Io

43) wil: Move R3 Y3 Io

44) Twinsen: Discover G1 Io Y1 Jelly

45) wil: Build Y2 Wil

46) Twinsen: Build G2 Jelly

47) wil: Build G2 Wil

48) Twinsen: Build Y2 Twinsen

49) wil: Discover G2 Wil G3 G3

50) Twinsen: Trade B3 G3 Twinsen

51) wil: Build G2 Wil

52) Twinsen: Sacrifice Y2 Twinsen
Move G1 Jelly G3
Move G2 Jelly G3
Catastrophe G3 Green

53) wil: Build R1 Y3

54) Twinsen: Build Y1 Twinsen

55) wil: Build R2 Y3

56) Twinsen: Discover Y1 Twinsen G2 Greeny

57) wil: Move R2 Y3 Greeny

58) Twinsen: Move Y1 Greeny Why3

59) wil: Sacrifice B1 Wil
Trade Y3 G3 Why3

60) Twinsen: Sacrifice G3 Twinsen
Build G1 Twinsen
Build Y2 Twinsen
Build Y3 Twinsen

61) wil: Sacrifice G3 Wil
Build G2 Why3
Build G3 Y3
Build G3 Wil

62) Twinsen: Sacrifice Y2 Twinsen
Discover Y1 Twinsen Y2 Oblivion
Move G1 Twinsen Oblivion

63) wil: Move R1 Y3 Oblivion

64) Twinsen: Sacrifice Y1 Oblivion
Move G1 Oblivion Why3
	wil: aptly named
	Twinsen: For 6 turns... XD

65) wil: Sacrifice R2 Greeny
Attack Y1 Why3
Attack G1 Why3
	Twinsen: This is the end

66) Twinsen: Build G2 Twinsen
	wil: When one imagines the intragalactic battle that you've got yourself in...and sits in the war room, looking at the two warships at near stars around you, and then the flotilla poised to complete the establishment of bases at those outposts.  One must wonder about the purpose of life, their options, and what they were thinking when they decided to antagonize that civilization so very far away.
	wil: You've done well...it will be near 40 total moves prior to me finishing this thing...

67) wil: Move R1 Y3 Io

68) Twinsen: Build Y1 Twinsen

69) wil: Move B3 Y3 Oblivion

70) Twinsen: Discover Y1 Twinsen B2 Bluedy

71) wil: Move G3 Why3 Bluedy

72) Twinsen: Discover Y1 Bluedy R3 Ready
	wil: two move to mate

73) wil: Sacrifice Y2 Wil
Move G3 Bluedy Twinsen
Move B3 Oblivion Twinsen
	Twinsen: Check mate? 

74) Twinsen: Sacrifice Y3 Twinsen
Discover G2 Twinsen Y2 Good_game
Move Y1 Ready Good_game
Pass

75) wil: Attack G1 Twinsen
	Twinsen: Good game will. Nice to play with you. 
	wil: And they've flown off to a previously uninhabited star system to attempt to rebuild their civilization.... challenge me anytime...I like to play



33942)
Started: 2018.4.9, Ended: 2018.5.15
Participants: Twinsen (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B1 Y2 G3
	Twinsen: Hi, glad and hf
	MobyNostromo: Thanks. You too!

2) Twinsen: Homeworld R3 B2 G3

3) MobyNostromo: B G1 Mobynostromo

4) Twinsen: Build G1 Twinsen

5) MobyNostromo: T G1 Y1 Mobynostromo

6) Twinsen: Build G1 Twinsen

7) MobyNostromo: B Y1 Mobynostromo

8) Twinsen: Trade G1 B1 Twinsen

9) MobyNostromo: B G1 Mobynostromo

10) Twinsen: Build B1 Twinsen

11) MobyNostromo: D Y1 Mobynostromo B3 Cobalt

12) Twinsen: Trade G1 Y1 Twinsen

13) MobyNostromo: B Y2 Mobynostromo

14) Twinsen: Build Y2 Twinsen

15) MobyNostromo: M Y1 Mobynostromo Cobalt

16) Twinsen: Build G1 Twinsen

17) MobyNostromo: B Y3 Mobynostromo

18) Twinsen: Discover Y1 Twinsen G1 Geegee

19) MobyNostromo: D Y2 Mobynostromo B3 Thalo

20) Twinsen: Build Y3 Geegee

21) MobyNostromo: S G3 Mobynostromo
B Y3 Thalo
B G2 Mobynostromo
B G2 Mobynostromo

22) Twinsen: Sacrifice Y3 Geegee
Move G1 Twinsen Geegee
Move G1 Geegee Cobalt
Move G1 Cobalt Mobynostromo
Catastrophe Mobynostromo Green

23) MobyNostromo: T Y3 R3 Thalo

24) Twinsen: Build Y3 Geegee

25) MobyNostromo: M R3 Thalo Geegee

26) Twinsen: Sacrifice Y1 Geegee
Discover Y3 Geegee R3 Rojo

27) MobyNostromo: B R1 Geegee

28) Twinsen: Sacrifice G3 Twinsen
Build Y1 Rojo
Build Y3 Twinsen
Pass

29) MobyNostromo: T Y3 G3 Mobynostromo

30) Twinsen: Trade Y3 G3 Twinsen

31) MobyNostromo: B G1 Mobynostromo

32) Twinsen: Build Y3 Twinsen

33) MobyNostromo: S G1 Mobynostromo
B Y3 Thalo

34) Twinsen: Discover B1 Twinsen G1 Verdin

35) MobyNostromo: T Y1 G1 Cobalt

36) Twinsen: Trade B1 Y1 Verdin

37) MobyNostromo: B G2 Mobynostromo

38) Twinsen: Discover Y1 Verdin G3 Verdon

39) MobyNostromo: B R1 Geegee

40) Twinsen: Build G1 Twinsen

41) MobyNostromo: S G3 Mobynostromo
B G2 Cobalt
B G2 Cobalt
B G3 Mobynostromo

42) Twinsen: Sacrifice Y3 Twinsen
Move Y3 Rojo Mobynostromo
Move Y1 Rojo Mobynostromo
Move Y1 Verdon Mobynostromo
Catastrophe Mobynostromo Yellow

43) MobyNostromo: T G3 R3 Mobynostromo

44) Twinsen: Sacrifice G3 Twinsen
Build G3 Twinsen
Build B1 Twinsen
Build Y1 Twinsen

45) MobyNostromo: T G2 B2 Cobalt

46) Twinsen: Sacrifice Y2 Twinsen
Discover B1 Twinsen Y1 Sol
Move G1 Twinsen Sol

47) MobyNostromo: S G2 Cobalt
B R1 Mobynostromo
B R2 Mobynostromo

48) Twinsen: Build B2 Sol

49) MobyNostromo: S Y3 Thalo
M R1 Mobynostromo Twinsen
M R1 Geegee Twinsen
M R1 Geegee Twinsen
C Twinsen R

50) Twinsen: Build Y2 Twinsen

51) MobyNostromo: S Y1 Cobalt
M R3 Geegee Twinsen

	Twinsen: Good game
	MobyNostromo: Yeah, it was close.


33875)
Variants: "Hard time"
Started: 2018.4.9, Ended: 2018.4.23
Participants: Draw5PlayAll (S), Trydnt (N)
Winner: Draw5PlayAll

1) Trydnt: Homeworld B2 Y1 G3

2) Draw5PlayAll: Homeworld Y1 G2 Y3 *

3) Trydnt: Build G1 Trydnt

4) Draw5PlayAll: Build Y1 Draw5playall
	Trydnt: nice use of the instafreeze
	Trydnt: not having blue really blues... I mean blows

5) Trydnt: Build G1 Trydnt

6) Draw5PlayAll: Discover Y1 Draw5playall G3 Growth

7) Trydnt: Discover G1 Trydnt Y3 Y3

8) Draw5PlayAll: Build Y2 Draw5playall

9) Trydnt: Build G1 Trydnt

10) Draw5PlayAll: Discover Y2 Draw5playall B3 Needblue

11) Trydnt: Sacrifice G3 Trydnt
Build G2 Y3
Build G2 Y3
Build G3 Trydnt

12) Draw5PlayAll: Build Y2 Growth

13) Trydnt: Discover G1 Trydnt B3 B3

14) Draw5PlayAll: Trade Y2 R2 Needblue

15) Trydnt: Build G3 B3

16) Draw5PlayAll: Build Y2 Draw5playall

17) Trydnt: Trade G3 Y3 B3

18) Draw5PlayAll: Sacrifice Y2 Growth
Move Y3 Draw5playall Needblue
Move Y3 Needblue Trydnt
	Draw5PlayAll: I will probably regret this!!

19) Trydnt: Sacrifice G2 Y3
Build G2 Trydnt
Build G3 B3

20) Draw5PlayAll: Sacrifice R2 Needblue
Attack G2 Trydnt
Attack G3 Trydnt

21) Trydnt: Sacrifice G3 B3
Build G3 B3
Build Y2 B3
Build Y2 B3

22) Draw5PlayAll: Move Y3 Trydnt B3
Catastrophe B3 Yellow

23) Trydnt: Trade G1 R1 Trydnt

24) Draw5PlayAll: Trade G3 R3 Trydnt

	Draw5PlayAll: Feel free to use a catastrophe to disintegrate my R3.


33868)
Variants: "Unrated"
Started: 2018.4.11, Ended: 2018.4.17
Participants: Trydnt (S), silversliver (N)
Winner: Trydnt

1) silversliver: Homeworld G2 R1 B3

2) Trydnt: Homeworld Y3 B2 G3

3) silversliver: Build B1 Silversliver

4) Trydnt: Build G1 Trydnt

5) silversliver: Trade B1 Y1 Silversliver

6) Trydnt: Trade G1 R1 Trydnt

7) silversliver: Build Y1 Silversliver

8) Trydnt: Build R1 Trydnt

9) silversliver: Discover Y1 Silversliver R3 Sys1

10) Trydnt: Build R2 Trydnt

11) silversliver: Build B1 Silversliver


12) Trydnt: Build G1 Trydnt

13) silversliver: Trade B1 G1 Silversliver

14) Trydnt: Discover R2 Trydnt B1 B1

15) silversliver: Build B1 Silversliver

16) Trydnt: Move G1 Trydnt B1

17) silversliver: Trade B3 R3 Silversliver

18) Trydnt: Build R2 B1

19) silversliver: Build Y1 Silversliver

20) Trydnt: Trade R2 Y2 B1

21) silversliver: Sacrifice G1 Silversliver
Build Y2 Sys1

22) Trydnt: Build R2 B1

23) silversliver: Trade Y1 G1 Silversliver

24) Trydnt: Build G1 Trydnt

25) silversliver: Build G2 Silversliver

26) Trydnt: Sacrifice Y2 B1
Move G1 B1 Sys1
Move G1 Sys1 Silversliver
Catastrophe Silversliver G

27) silversliver: Trade R3 G3 Silversliver

28) Trydnt: Trade R2 Y2 B1

29) silversliver: Build G1 Silversliver

30) Trydnt: Discover R2 B1 Y3 Y3

31) silversliver: Move G1 Silversliver Sys1

32) Trydnt: Move R2 Y3 Silversliver

33) silversliver: Attack R2 Silversliver

34) Trydnt: Sacrifice Y2 B1
Move R1 Trydnt Silversliver
Move R1 Trydnt Silversliver
Catastrophe Silversliver R



33981)
Variants: "Unrated"
Started: 2018.4.11, Ended: 2018.4.17
Participants: wil (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld Y1 B2 G3

2) wil: Homeworld Y3 B1 G3
	Broccoli_Commander: Heeeeello wil :-)

Wow it has been a while. You will crush me in no time I'm afraid. Regardless, I'm super excited to play a game with you again!

I do not exactly remember how/why I quit so abruptly. Looking back it was a bit rude. I know I was a bit too absorbed by the game to the point it was mildly unhealthy. And most probably I was writing my thesis and I had to cut all good excuses to procrastinate... 

Anyhow, I saw this little "SDG" folder in my inbox and I thought I would try to reconnect. Seeing your name brought back good memories (I almost left out a tear of joy); and here we are!

I hope all is well for you. How did the tournament of last August pan out?



All of your vegetables are belong to us!!
Let the fun begin.
	wil: Well now!!  Yes it has been a while!!  And I'll bet you'll be able to jump right back on this horse. Wonderful to hear from you, I've  been thinking about you a lot.  We are currently in a tournament and I've been telling folks without you, TTT and twoshort...this really isn't a tournament!!   

	wil: It was your thesis...PhD in hand now?  How is everything going?  I have a kid I taught..he will be headed back to London soon, with his PolSci masters he acquired here stateside.  He will be a formidable player...hope to see you both in the next tourney (takes forever on SDG)  Wish we had another platform (wink wink nod nod)

3) Broccoli_Commander: Build G1 Broccoli_commander

4) wil: Build G1 Wil
	Broccoli_Commander: Yes, now been working for 4 years in the "industry", but I still can't say I found my definitive career path yet. But life is good.

Ha! so your kid is in the same time zone... did you hook him up with SDG? Good parenting either way :-)

And I see you remember this idea to make an alternate app for binary homeworlds... with a chess-like clock, was that the idea?

Oh TeeTeeTee the new kid that deserved a lesson no one could deliver! He would probably have crushed any tournament. Too bad that TwoShort also left apparently. But I'm sure the competition is nice and fierce, happy to see some new names in there (I could check out the tournament link)!
	wil: b g1 wil

5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry
	wil: sheesh...telegraphed my secret move!

6) wil: Trade G1 B1 Wil

7) Broccoli_Commander: Build G1 Blueberry

8) wil: Build B1 Wil

9) Broccoli_Commander: Build G1 Broccoli_commander

10) wil: Discover B1 Wil B2 B2

11) Broccoli_Commander: Build G2 Broccoli_commander

12) wil: Build B2 Wil

13) Broccoli_Commander: Discover G2 Broccoli_commander B3 Muffin

14) wil: Discover B2 Wil Y2 Y2

15) Broccoli_Commander: Build G2 Blueberry

16) wil: Build G2 Wil

17) Broccoli_Commander: Trade G2 Y2 Blueberry
	Broccoli_Commander: Woops sorry about that

18) wil: Build B3 Wil
	wil: lol...moving the coin is a thing!


19) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Broccoli_commander
Build G3 Broccoli_commander
Build G3 Blueberry

20) wil: Trade G2 R2 Wil

21) Broccoli_Commander: Trade G3 R3 Blueberry

22) wil: Build R1 Wil

23) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Blueberry
Build G3 Muffin
Build G3 Broccoli_commander

24) wil: Trade B3 Y3 Wil

25) Broccoli_Commander: Discover G2 Broccoli_commander B3 Topping

26) wil: Build Y1 Wil

27) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build R1 Blueberry
Build Y1 Blueberry
	wil: You ain't lost nuthin...still wollop me.

28) wil: Move Y1 Wil B2

29) Broccoli_Commander: Move Y2 Blueberry B2
	Broccoli_Commander: Always a pleasure to spread fibers and vitamins across the universe.
	Broccoli_Commander: Always a pleasure to spread fibers and vitamins across the universe.
	wil: i've so lost...

30) wil: Sacrifice Y1 B2
Discover B1 B2 Y3 Y3

31) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build Y1 B2
Build Y2 Blueberry

32) wil: Discover Y3 Wil R2 R2

33) Broccoli_Commander: Move R1 Blueberry Broccoli_commander

34) wil: Move Y3 R2 Topping

35) Broccoli_Commander: Sacrifice G2 Topping
Build G2 Broccoli_commander
Build R1 Blueberry

36) wil: Move R1 Wil Y2

37) Broccoli_Commander: Build R2 Broccoli_commander

38) wil: Move R1 Y2 Topping

39) Broccoli_Commander: Move R2 Broccoli_commander Y3

40) wil: Move B1 Y3 B2

41) Broccoli_Commander: Move R2 Y3 B2
	wil: unless you wish for some reason to finish this...I should just knock over my king.

	Broccoli_Commander: As you wish! I think it is over too.
	wil: its been over for a bit.. either you haven't lost anything...or I havent gotten any better...probably both!
	Broccoli_Commander: Luck always takes part as well! Thanks for the game!


33991)
Variants: "Hard time"
Started: 2018.4.12, Ended: 2018.6.10
Participants: Laurie_Menke (S), Mandrel (N)
Winner: Laurie_Menke

1) Mandrel: Homeworld R1 B2 G3

2) Laurie_Menke: Homeworld B1 Y3 G3
	Laurie_Menke: Hi Mandrel! Have fun!

3) Mandrel: Build G1 Mandrel

4) Laurie_Menke: Build G1 Laurie_menke
	Mandrel: You too!

5) Mandrel: Trade G1 Y1 Mandrel

6) Laurie_Menke: Build G1 Laurie_menke

7) Mandrel: Build Y1 Mandrel

8) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

9) Mandrel: D Y1 Mandrel B3 Wait

10) Laurie_Menke: Discover G1 Laurie_menke B2 Blue

11) Mandrel: B Y1 Mandrel

12) Laurie_Menke: Build G1 Laurie_menke

13) Mandrel: Build G2 Mandrel

14) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Blue
Build G2 Yellow
Build G3 Laurie_menke

15) Mandrel: Sacrifice G3 Mandrel
Build G3 Mandrel
Build G3 Mandrel
Build Y2 Wait

16) Laurie_Menke: Discover G1 Yellow Y3 Hi

17) Mandrel: D G3 Mandrel Y3 Roast

18) Laurie_Menke: Trade G2 Y2 Blue

19) Mandrel: Trade G2 B2 Mandrel

20) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Hi
Build G2 Yellow
Build G3 Laurie_menke

21) Mandrel: M B2 Mandrel Roast

22) Laurie_Menke: Trade G1 R1 Laurie_menke

23) Mandrel: B B1 Roast

24) Laurie_Menke: Build G1 Laurie_menke

25) Mandrel: Trade B2 R2 Roast

26) Laurie_Menke: Move R1 Laurie_menke Yellow

27) Mandrel: Move G3 Roast Blue

28) Laurie_Menke: Discover Y2 Blue R3 Red

29) Mandrel: S R2 Roast
A G1 Blue
Pass

30) Laurie_Menke: Trade G1 R1 Laurie_menke

	Laurie_Menke: Oh no! I'm sorry, Mandrel That's not how I wanted to beat you. :( I hope everything's OK with you!
	Mandrel: Apologies, life suddenly got extra hectic! I'm sure it was just delaying the inevitable :)
	Laurie_Menke: No worries... glad you're OK and hope the hectic gets better. I totally  understand how that is!  Much more likely that I would have lost, though, not the other way around.  :)


33878)
Started: 2018.4.13, Ended: 2018.8.23
Participants: Trydnt (S), mathochist (N)
Winner: Trydnt

1) mathochist: Pass

2) Trydnt: Homeworld B2 Y1 G3
	mathochist: Please remind me what the time settings mean. Thx!

3) mathochist: Homeworld Y2 B3 G3

4) Trydnt: Build G1 Trydnt

5) mathochist: Build G1 Mathochist

6) Trydnt: Trade G1 Y1 Trydnt

7) mathochist: Trade G3 Y3 Mathochist

8) Trydnt: Build G1 Trydnt

9) mathochist: Build G1 Mathochist

10) Trydnt: Trade G1 B1 Trydnt
	Trydnt: it just determines how long you can go without making a move before your opponent can force you to resign. I usually leave it for a few days even after it's past the deadline then clear it out of my cache if the person still hasn't made their move so it's not that important

11) mathochist: Trade G1 B1 Mathochist
	mathochist: got it, thanks

12) Trydnt: Build G1 Trydnt

13) mathochist: Discover B1 Mathochist R1 Tiny

14) Trydnt: Trade G1 R1 Trydnt

15) mathochist: Build G1 Mathochist

16) Trydnt: Build R1 Trydnt

17) mathochist: Discover G1 Mathochist Y1 Superstar

18) Trydnt: Build Y2 Trydnt

19) mathochist: Discover G1 Superstar Y3 Supererstar

20) Trydnt: Build R2 Trydnt

21) mathochist: Build Y1 Mathochist

22) Trydnt: Sacrifice Y2 Trydnt
Move Y1 Trydnt Supererstar
Discover Y1 Supererstar G1 G1

23) mathochist: Trade Y3 R3 Mathochist

24) Trydnt: Build Y2 G1

25) mathochist: Build G2 Mathochist

26) Trydnt: Build G2 Trydnt

27) mathochist: Move G2 Mathochist Tiny

28) Trydnt: Discover G2 Trydnt Y3 Y3

29) mathochist: Build R2 Mathochist

30) Trydnt: Discover R2 Trydnt G3 G3

31) mathochist: Move R2 Mathochist G1

32) Trydnt: Sacrifice R1 Trydnt
Attack R2 G1

33) mathochist: Move Y1 Mathochist Tiny
	mathochist: Been super busy. Sorry if this move times out. Definitely get to it within the evening, if you will wait. Thanks.

34) Trydnt: Discover Y2 G1 G3 G33

35) mathochist: Discover G2 Tiny Y3 Blob

36) Trydnt: Sacrifice G2 Y3
Build Y2 G1
Build Y3 G33

37) mathochist: Sacrifice G2 Blob
Build G2 Mathochist
Build Y3 Tiny

38) Trydnt: Build R1 G1

39) mathochist: Build G2 Supererstar

40) Trydnt: Sacrifice G3 Trydnt
Build R2 G1
Build R3 G3
Build R3 Trydnt

41) mathochist: Build G2 Supererstar

42) Trydnt: Trade R3 G3 Trydnt
	mathochist: I are screwed :P

43) mathochist: Sacrifice Y3 Tiny
Move G1 Supererstar G1
Move G2 Supererstar G1
Move G2 Supererstar G1
Catastrophe G1 G

44) Trydnt: Move Y2 G33 Tiny

45) mathochist: Sacrifice Y1 Tiny
Discover B1 Tiny Y3 Julie

46) Trydnt: Move B1 Trydnt G3

47) mathochist: Build G1 Mathochist

48) Trydnt: Trade R2 Y2 G3

49) mathochist: Discover G2 Mathochist B1 Etho
	mathochist: Sorry, I know I've slowed way down. Life, chronic stuff. I'm still here. 

50) Trydnt: Build B2 G3
	mathochist: Finally got my brain back for a little while! (been alternating between sleeping all the time and total brain fog for the longest time)

	Trydnt: no worries! I'm in like 10 games at any one time so happy to wait for people to be ready 
	mathochist: I'm in like 17 games right now, and officially out of time in most of them. Glad most people don't seem to mind too much. 


33995)
Variants: "Hard time"
Started: 2018.4.13, Ended: 2018.4.17
Participants: goulo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) goulo: Homeworld R1 B3 G3
	goulo: hi, have fun!

3) Trydnt: Build G1 Trydnt
	Trydnt: you too!

4) goulo: Build G1 Goulo

5) Trydnt: Trade G1 R1 Trydnt

6) goulo: Build G1 Goulo

7) Trydnt: Build R1 Trydnt

8) goulo: Trade G1 Y1 Goulo

9) Trydnt: Build G1 Trydnt

10) goulo: Build Y1 Goulo

11) Trydnt: Build R2 Trydnt

12) goulo: Build Y2 Goulo

13) Trydnt: Trade R2 Y2 Trydnt

14) goulo: Discover Y1 Goulo Y2 Flava

15) Trydnt: Discover Y2 Trydnt G3 G3

16) goulo: Build Y3 Goulo

17) Trydnt: Build Y3 G3

18) goulo: Trade Y2 R2 Goulo

19) Trydnt: Build R2 Trydnt

20) goulo: Build R2 Goulo

21) Trydnt: Sacrifice Y3 G3
Move R1 Trydnt G3
Move R1 G3 Flava
Move R1 Flava Goulo
Catastrophe Goulo R

22) goulo: Trade Y1 R1 Goulo

23) Trydnt: Trade G1 B1 Trydnt

24) goulo: Sacrifice G3 Goulo
Build Y1 Flava
Build Y2 Goulo
Build Y3 Goulo

25) Trydnt: Build Y3 G3

26) goulo: Trade Y3 G3 Goulo

27) Trydnt: Build B1 Trydnt

28) goulo: Trade Y2 R2 Goulo

29) Trydnt: Move B1 Trydnt G3

30) goulo: Discover Y1 Flava B3 Bluega

31) Trydnt: Build B1 Trydnt

	goulo: I can't see anyway to save my homeworld! Thanks for the game.
	Trydnt: you could have sacrificed your y3 to send your yellows into my g3 star but that may have just delayed the inevitable. good game!


33994)
Started: 2018.4.13, Ended: 2018.4.18
Participants: mathochist (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld G2 B1 Y3

2) mathochist: Homeworld B2 Y3 G3
	Babamots: Good luck!

3) Babamots: Build Y1 Babamots
	mathochist: you too!

4) mathochist: Build G1 Mathochist

5) Babamots: Build Y1 Babamots

6) mathochist: Build G1 Mathochist

7) Babamots: Trade Y1 G1 Babamots

8) mathochist: Trade G1 Y1 Mathochist

9) Babamots: Trade Y1 B1 Babamots

10) mathochist: Build Y1 Mathochist

11) Babamots: Build B1 Babamots

12) mathochist: Trade Y1 R1 Mathochist

13) Babamots: Build Y1 Babamots

14) mathochist: Build R1 Mathochist

15) Babamots: Trade Y1 R1 Babamots

16) mathochist: Trade G3 B3 Mathochist

17) Babamots: Build R2 Babamots

18) mathochist: Discover R1 Mathochist Y1 George

19) Babamots: Discover B1 Babamots G3 Ferenginar

20) mathochist: Build R2 Mathochist

21) Babamots: Build B2 Ferenginar

22) mathochist: Move R2 Mathochist George

23) Babamots: Build B2 Babamots

24) mathochist: Move R2 George Ferenginar

25) Babamots: Sacrifice R1 Babamots
Attack R2S Ferenginar

26) mathochist: Build G1 Mathochist

27) Babamots: Build B3 Ferenginar

28) mathochist: Build G2 Mathochist

29) Babamots: Trade B3 Y3 Ferenginar

30) mathochist: Discover G2 Mathochist Y1 Bob

31) Babamots: Build Y2 Babamots

32) mathochist: Discover Y1 Mathochist R1 Fred

33) Babamots: Move B2 Ferenginar Fred

34) mathochist: Trade B3 R3 Mathochist
	Babamots: Looks like your system name theme is common English boys' names. Is that right? 
	mathochist: I suppose so :) I think I take the simplest names so I don't risk decision paralysis.

35) Babamots: Attack Y1S Fred
	mathochist: I made a mistake or two early on and I think all I can do now is delay the inevitable.

36) mathochist: Move G1 Mathochist Bob

37) Babamots: Build Y2 Ferenginar

38) mathochist: Build G2 Mathochist

39) Babamots: Build Y2 Ferenginar

40) mathochist: Build G3 Bob
	Babamots: Yeah, it's looking rough for you. I decided in a recent game that yellow is the most crushing color to monopolize.

41) Babamots: Sacrifice Y2 Babamots
Move G1 Babamots Ferenginar
Move G1 Ferenginar Bob
Catastrophe Bob G

42) mathochist: Discover G2 Mathochist Y1 Fluffy

43) Babamots: Build Y2 Babamots

44) mathochist: Build G1 Fluffy

45) Babamots: Build B3 Ferenginar

46) mathochist: Discover G2 Fluffy B3 Moon

47) Babamots: Sacrifice Y2 Babamots
Move Y2 Ferenginar George
Move Y2 Ferenginar Fluffy

48) mathochist: Trade G2 Y2 Moon

49) Babamots: Sacrifice Y3 Ferenginar
Move Y1 Fred Mathochist
Move Y2 Fluffy Mathochist
Move Y2 George Mathochist
Catastrophe Mathochist Y

50) mathochist: Move Y2 Moon Babamots

51) Babamots: Sacrifice Y3 Babamots
Move B3 Ferenginar Mathochist
Move B1 Ferenginar Mathochist
Move B2 Fred Mathochist
Catastrophe Mathochist B
	Babamots: Thanks for the game!
	mathochist: You, too!

I considered resigning earlier, but figured I'd see how long I could drag it out instead. :)
	Babamots: No problem. This is hardly the easiest game on the site.



33989)
Variants: "Unrated"
Started: 2018.4.13, Ended: 2018.6.1
Participants: Babamots (S), Trydnt (N)
Winner: Babamots

1) Trydnt: Homeworld B2 Y1 G3

2) Babamots: Homeworld G3 B1 Y3

3) Trydnt: Build G1 Trydnt

4) Babamots: Build Y1 Babamots
	Babamots: Good luck! I'm feeling rusty and looking for some practice.

5) Trydnt: Trade G1 Y1 Trydnt

6) Babamots: Build Y2 Babamots

7) Trydnt: Build Y2 Trydnt

8) Babamots: Trade Y2 G2 Babamots

9) Trydnt: Discover Y1 Trydnt G3 G3

10) Babamots: Trade Y1 R1 Babamots
	Babamots: You like creative system names I see :-P.

11) Trydnt: Build G1 Trydnt

12) Babamots: Discover G2 Babamots Y2 Iconia

13) Trydnt: Build G1 Trydnt

14) Babamots: Build G1 Iconia

15) Trydnt: Trade G1 R1 Trydnt

16) Babamots: Discover G2 Iconia B3 Betazed

17) Trydnt: Trade G1 B1 Trydnt

18) Babamots: Build G1 Betazed

19) Trydnt: Build B1 Trydnt

20) Babamots: Trade G1 Y1 Betazed

21) Trydnt: Discover B1 Trydnt Y3 Y3

22) Babamots: Sacrifice G2 Betazed
Build Y2 Babamots
Build Y3 Betazed

23) Trydnt: Trade B1 G1 Y3

24) Babamots: Discover Y2 Babamots B2 Kurl

25) Trydnt: Sacrifice G1 Y3
Build Y3 G3

26) Babamots: Sacrifice G1 Iconia
Build Y2 Kurl

27) Trydnt: Build B1 Trydnt

28) Babamots: Trade Y2 G2 Kurl

29) Trydnt: Move B1 Trydnt G3

30) Babamots: Trade Y3 B3 Betazed

31) Trydnt: Discover Y2 Trydnt Y3 Y3

32) Babamots: Discover B3 Betazed Y2 Bajor

33) Trydnt: Discover Y1 G3 G2 G2

34) Babamots: Build G1 Kurl

35) Trydnt: Build G1 Trydnt

36) Babamots: Trade G1 R1 Kurl

37) Trydnt: Build R2 Trydnt

38) Babamots: Build R2 Kurl

39) Trydnt: Move Y3 G3 Kurl

40) Babamots: Sacrifice G2 Kurl
Build R2 Kurl
Build R3 Babamots

41) Trydnt: Sacrifice R2 Trydnt
Attack R2 Kurl
Attack R2 Kurl

42) Babamots: Sacrifice R3 Babamots
Attack R2N Kurl
Attack R2N Kurl
Pass

43) Trydnt: Sacrifice Y2 Y3
Discover G1 Trydnt Y3 Y3
Discover B1 G3 Y2 Y2

44) Babamots: Move R2 Kurl Y3

45) Trydnt: Build R2 Trydnt

46) Babamots: Build R3 Babamots
	Babamots: Huh, that's not what I expected at all. I'll need to come back and make a move when I can focus better.

47) Trydnt: Sacrifice R2 Trydnt
Attack Y2 Kurl
Attack R2 Kurl

48) Babamots: Attack G1 Y3

49) Trydnt: Attack R1 Kurl

50) Babamots: Move R3 Babamots Y2

51) Trydnt: Discover B1 Y2 G1 G1

52) Babamots: Move R3 Y2 G1

53) Trydnt: Sacrifice B1 G1
Pass

54) Babamots: Build Y2 Babamots

55) Trydnt: Sacrifice Y3 Kurl
Move Y1 G2 Babamots
Move Y2 Kurl Babamots
Catastrophe Babamots Y
Move R2 Kurl Babamots

56) Babamots: Sacrifice Y1 Betazed
Move B3 Bajor Babamots

57) Trydnt: Sacrifice G3 Trydnt
Build R2 Babamots
Build R3 Kurl
Build R3 Trydnt

58) Babamots: Sacrifice R2 Y3
Attack R2N Babamots
Attack R2N Babamots

59) Trydnt: Trade R3 G3 Trydnt

60) Babamots: Trade R2 Y2 Babamots

61) Trydnt: Build R2 Trydnt

62) Babamots: Build R2 G1

63) Trydnt: Trade R1 Y1 Trydnt

64) Babamots: Trade R2 G2 Babamots

65) Trydnt: Trade R1 G1 Kurl

66) Babamots: Discover G2 Babamots B2 Galorndon

67) Trydnt: Build G2 Kurl

68) Babamots: Build Y1 Babamots

69) Trydnt: Build Y2 Trydnt

70) Babamots: Discover Y1 Babamots Y2 Iconia

71) Trydnt: Sacrifice Y2 Trydnt
Move R2 Trydnt Y3
Discover B1 Trydnt G3 G3

72) Babamots: Sacrifice G2 Galorndon
Build Y2 Babamots
Build Y3 Babamots

73) Trydnt: Trade R3 Y3 Kurl

74) Babamots: Sacrifice Y2 Babamots
Move R3 G1 Y3
Move R2 G1 G3

75) Trydnt: Move R2 Y3 Kurl

76) Babamots: Attack B1N G3

77) Trydnt: Build Y2 Kurl

78) Babamots: Build B1 G3

79) Trydnt: Build R1 Kurl

80) Babamots: Build B2 G3

81) Trydnt: Move Y3 Kurl G3

82) Babamots: Sacrifice Y3 Babamots
Move B2 G3 Kurl
Move B1 G3 Kurl
Move B1 G3 Kurl
Catastrophe Kurl B

83) Trydnt: Trade Y1 R1 Trydnt

84) Babamots: Sacrifice Y1 Iconia
Discover R2 G3 Y2 Iconia

85) Trydnt: Build G1 Trydnt

86) Babamots: Build G1 Y3

87) Trydnt: Trade G1 B1 Trydnt

88) Babamots: Build G1 Y3

89) Trydnt: Move B1 Trydnt G3

90) Babamots: Move G1 Y3 Trydnt

91) Trydnt: Trade G3 R3 Trydnt

92) Babamots: Sacrifice Y2 Babamots
Move R3 Y3 Trydnt
Move G1 Y3 Trydnt

93) Trydnt: Sacrifice R3 Trydnt
Attack G1 Trydnt
Attack G1 Trydnt
Pass

94) Babamots: Sacrifice R2 Iconia
Attack R1 Trydnt
Attack G1 Trydnt

95) Trydnt: Move Y3 G3 Trydnt

	Babamots: Thanks for the game!
	Babamots: I'm working on organizing an online Homeworlds tournament through SDG, hopefully starting in the next couple of weeks. Do you want in?
	Trydnt: absolutely!
	Babamots: Are you in the Facebook group for Binary Homeworlds? I'll make a post in there and in some other related Facebook groups.
	Trydnt: Yeah I am
	Babamots: Alrighty, watch for an announcement fairly soon.
	Trydnt: will do thanks!


33996)
Variants: "Unrated"
Started: 2018.4.15, Ended: 2018.4.25
Participants: Trydnt (S), Broccoli_Commander (N)
Winner: Trydnt

1) Broccoli_Commander: Homeworld G3 B2 Y3

2) Trydnt: Homeworld B2 R1 G3

3) Broccoli_Commander: Build Y1 Broccoli_commander

4) Trydnt: Build G1 Trydnt

5) Broccoli_Commander: Build Y1 Broccoli_commander

6) Trydnt: Build G1 Trydnt

7) Broccoli_Commander: Discover Y1 Broccoli_commander Y1 Cauliflower

8) Trydnt: Trade G3 Y3 Trydnt

9) Broccoli_Commander: Build Y2 Broccoli_commander

10) Trydnt: Build Y2 Trydnt

11) Broccoli_Commander: Discover Y2 Broccoli_commander B1 Blueberry

12) Trydnt: Discover Y2 Trydnt G3 G3

13) Broccoli_Commander: Trade Y3 G3 Broccoli_commander

14) Trydnt: Discover G1 Trydnt Y3 Y3

15) Broccoli_Commander: Discover Y1 Cauliflower B3 Muffin

16) Trydnt: Discover G1 Trydnt Y3 Y33

17) Broccoli_Commander: Trade Y2 G2 Blueberry

18) Trydnt: Build G1 Y33

19) Broccoli_Commander: Build G2 Blueberry

20) Trydnt: Build G2 Y3

21) Broccoli_Commander: Trade G2 R2 Blueberry

22) Trydnt: Discover G1 Y3 Y1 Y1

23) Broccoli_Commander: Trade G3 R3 Broccoli_commander

24) Trydnt: Sacrifice G1 Y33
Build Y2 Trydnt

25) Broccoli_Commander: Sacrifice Y1 Muffin
Move R2 Blueberry Y3

26) Trydnt: Sacrifice G2 Y3
Build G1 Y33
Build Y1 G3

27) Broccoli_Commander: Build Y2 Broccoli_commander

28) Trydnt: Trade Y3 G3 Trydnt

29) Broccoli_Commander: Build Y3 Broccoli_commander

30) Trydnt: Sacrifice Y2 G3
Move Y1 G3 Y1
Move Y1 Y1 Broccoli_commander
Catastrophe Broccoli_commander Y

31) Broccoli_Commander: Build G2 Blueberry

32) Trydnt: Sacrifice G3 Trydnt
Build G2 Y1
Build G3 Y1
Build G3 Y33

33) Broccoli_Commander: Sacrifice G2 Blueberry
Build R1 Y3
Build R1 Broccoli_commander

34) Trydnt: Discover G2 Y1 B3 B3

35) Broccoli_Commander: Move R2 Y3 Blueberry

36) Trydnt: Trade G2 R2 B3

37) Broccoli_Commander: Sacrifice G2 Blueberry
Build R2 Blueberry
Build R3 Y3

38) Trydnt: Move G3 Y33 Trydnt

39) Broccoli_Commander: Trade R2 G2 Blueberry

40) Trydnt: Sacrifice G3 Y1
Build G2 Trydnt
Build G2 Y33
Build G3 Y1

41) Broccoli_Commander: Trade R3 Y3 Broccoli_commander

42) Trydnt: Build Y1 Trydnt

43) Broccoli_Commander: Build Y1 Broccoli_commander

44) Trydnt: Move Y1 Trydnt B3

45) Broccoli_Commander: Move R1 Y3 Y1

46) Trydnt: Sacrifice G3 Y1
Build G3 Y1
Build Y2 B3
Build Y2 B3

47) Broccoli_Commander: Build R2 Blueberry

48) Trydnt: Sacrifice G3 Y1
Build R3 B3
Build G3 Y1
Pass

49) Broccoli_Commander: Build R3 Broccoli_commander

50) Trydnt: Move R2 B3 Y1

51) Broccoli_Commander: Move R1 Y1 Y33

52) Trydnt: Sacrifice R2 Y1
Attack R1 Y33
Pass

53) Broccoli_Commander: Trade R1 B1 Broccoli_commander

54) Trydnt: Sacrifice G3 Y1
Build G3 Y1
Build R1 Y33
Build R2 Y33

55) Broccoli_Commander: Move Y3 Broccoli_commander Blueberry

56) Trydnt: Move G1 Y1 Broccoli_commander

57) Broccoli_Commander: Build B1 Broccoli_commander

58) Trydnt: Sacrifice R2 Y33
Attack B1 Broccoli_commander
Attack B1 Broccoli_commander

59) Broccoli_Commander: Sacrifice R2 Blueberry
Attack B1 Broccoli_commander
Attack B1 Broccoli_commander

60) Trydnt: Sacrifice G2 Y33
Build G2 Broccoli_commander
Build R2 B3

61) Broccoli_Commander: Build R2 Blueberry

62) Trydnt: Trade G2 B2 Broccoli_commander
Catastrophe Broccoli_commander B

63) Broccoli_Commander: Sacrifice Y3 Blueberry
Move R2 Blueberry B3
Move R2 Blueberry B3
Move G2 Blueberry Y33
Catastrophe B3 R

64) Trydnt: Sacrifice G3 Y1
Build G2 Broccoli_commander
Build G3 Broccoli_commander
Build Y1 Trydnt
Catastrophe Broccoli_commander G

	Broccoli_Commander: You had a very clean game since the beginning. I never had a chance.
Well played, thanks for the game!


34025)
Started: 2018.4.15, Ended: 2019.5.26
Participants: jbarton680 (S), dragon76n (N)
Winner: dragon76n

1) dragon76n: H Y1 B2 G3

2) jbarton680: Homeworld Y1 B2 G3

3) dragon76n: B G1 Dragon76n

4) jbarton680: Build G1 Jbarton680

5) dragon76n: T G1 Y1 Dragon76n

	dragon76n: Still your turn here on HomeWorlds... 
	dragon76n: Are you ready to try out HomeWorlds yet?


33920)
Started: 2018.4.15, Ended: 2018.5.13
Participants: Trydnt (S), mathochist (N)
Winner: Trydnt

1) mathochist: Homeworld B1 G2 Y3

2) Trydnt: Homeworld G3 R2 B3

3) mathochist: Build Y1 Mathochist

4) Trydnt: Build B1 Trydnt

5) mathochist: Trade Y1 G1 Mathochist

6) Trydnt: Build B1 Trydnt

7) mathochist: Build G1 Mathochist

8) Trydnt: Trade B3 Y3 Trydnt

9) mathochist: Discover G1 Mathochist Y3 Nomoon

10) Trydnt: Build B2 Trydnt

11) mathochist: Build Y1 Mathochist

12) Trydnt: Discover B2 Trydnt Y1 Y1

13) mathochist: Build G1 Nomoon

14) Trydnt: Trade B2 G2 Y1

15) mathochist: Discover G1 Nomoon Y1 Superstar

16) Trydnt: Build Y2 Trydnt

17) mathochist: Build Y2 Mathochist

18) Trydnt: Sacrifice Y3 Trydnt
Move Y2 Trydnt Y1
Move Y2 Y1 Nomoon
Move Y2 Nomoon Mathochist
Catastrophe Mathochist Y

19) mathochist: Build G2 Superstar

20) Trydnt: Build G3 Y1

21) mathochist: Build G3 Mathochist

22) Trydnt: Build B2 Trydnt

23) mathochist: Trade G1 Y1 Mathochist

24) Trydnt: Trade B2 Y2 Trydnt

25) mathochist: Build Y2 Mathochist

26) Trydnt: Discover G2 Y1 Y3 Y3

27) mathochist: Trade Y1 R1 Mathochist

28) Trydnt: Build G1 Y3

29) mathochist: Sacrifice G3 Mathochist
Build R1 Mathochist
Build Y1 Mathochist
Build G3 Nomoon

30) Trydnt: Sacrifice G2 Y3
Build Y2 Trydnt
Build Y3 Trydnt

31) mathochist: Trade Y2 B2 Mathochist

32) Trydnt: Build G2 Y1

33) mathochist: Sacrifice G3 Nomoon
Build G3 Nomoon
Build Y2 Mathochist
Build R1 Mathochist

34) Trydnt: Trade Y2 R2 Trydnt

35) mathochist: Build Y2 Mathochist

36) Trydnt: Sacrifice Y2 Trydnt
Move G3 Y1 Nomoon
Move G3 Nomoon Mathochist

37) mathochist: Sacrifice Y2 Mathochist
Move G1 Superstar Trydnt
Move G2 Superstar Trydnt

38) Trydnt: Sacrifice R2 Trydnt
Attack B2 Mathochist
Attack Y2 Mathochist

39) mathochist: Sacrifice G1 Nomoon
Build G1 Trydnt
Catastrophe Trydnt Green

40) Trydnt: Sacrifice B2 Mathochist
Trade Y2 R2 Mathochist
Catastrophe Mathochist R
Trade G3 R3 Mathochist

	mathochist: Huh, the rules as linked here say catastrophes have to happen at end of turn. I know it's an older version of the rules, but I thought it was in use here. Might have affected my play in a different game if I'd realized. Interesting


34037)
Variants: "Unrated"
Started: 2018.4.16, Ended: 2018.4.28
Participants: Nico (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld B1 Y2 G3

2) Nico: Homeworld B2 G3 R3

3) Broccoli_Commander: Build G1 Broccoli_commander

4) Nico: Build R1 Nico

5) Broccoli_Commander: Trade G1 R1 Broccoli_commander

6) Nico: Trade R1 Y1 Nico

7) Broccoli_Commander: Build R1 Broccoli_commander

8) Nico: Build R1 Nico

9) Broccoli_Commander: Discover R1 Broccoli_commander Y3 Cauliflowrr

10) Nico: B Y1 Nico

11) Broccoli_Commander: Build R2 Broccoli_commander

12) Nico: Discover Y1 Nico Y1 Colibris

13) Broccoli_Commander: Build G1 Broccoli_commander

14) Nico: Build Y2 Nico

15) Broccoli_Commander: Discover R2 Broccoli_commander Y3 Banana



33948)
Variants: "Hard time"
Started: 2018.4.17, Ended: 2018.4.24
Participants: Broccoli_Commander (S), wil (N)
Winner: Broccoli_Commander

1) wil: Homeworld B2 Y1 G3

2) Broccoli_Commander: Homeworld Y1 G3 Y3 *

3) wil: Build G1 Wil
	Broccoli_Commander: Good game sir!
	Broccoli_Commander: I am playing trydnt, he is playing a very tight game. He is definitely going to win
	wil: We played probably 15-20 live games per week for months...he's a smart kid...and better online than in real life..that part I can't figure out.

4) Broccoli_Commander: Build Y1 Broccoli_commander
	wil: Instant freezeout....yikes.

5) wil: Discover G1 Wil Y3 Y3
	Broccoli_Commander: Yep, wanted to see what happens! No idea if it will work out.
	Broccoli_Commander: Although I'm pretty sure I tried it before    hahaha

6) Broccoli_Commander: Discover Y1 Broccoli_commander G2 Lettuce

7) wil: Build G1 Y3

8) Broccoli_Commander: Build Y2 Lettuce
	Broccoli_Commander: Could not bear the wrong name

9) wil: Build G1 Wil
	wil: easily understandable.

10) Broccoli_Commander: Discover Y2 Lettuce B3 Blueberry

11) wil: Build G2 Wil

12) Broccoli_Commander: Build Y2 Lettuce

13) wil: Trade G2 Y2 Wil

14) Broccoli_Commander: Build Y3 Lettuce

15) wil: Discover G1 Y3 G2 G2

16) Broccoli_Commander: Move Y3 Lettuce Blueberry

17) wil: S G3 Wil
Build G2 G2
Build G3 Y3
Build G3 Wil

18) Broccoli_Commander: Trade Y3 R3 Blueberry

19) wil: Trade G1 R1 Wil

20) Broccoli_Commander: Build Y3 Lettuce

21) wil: Sacrifice G3 Y3
Build G1 Wil
Build R1 Wil
Build G3 Y3

22) Broccoli_Commander: Move Y2 Lettuce Blueberry

23) wil: Discover Y2 Wil B3 B3

24) Broccoli_Commander: Trade Y2 B2 Blueberry

25) wil: Sacrifice G3 Wil
Build G3 Wil
Build Y2 B3
Build R1 Wil

26) Broccoli_Commander: Sacrifice B2 Blueberry
Trade Y3 R3 Lettuce
Trade Y3 B3 Broccoli_commander

27) wil: Discover Y2 B3 B2 B2

28) Broccoli_Commander: Build Y3 Lettuce

29) wil: Sacrifice G2 G2
Build G2 G2
Build Y3 B3

30) Broccoli_Commander: Build R2 Lettuce

31) wil: Trade Y3 R3 B3

32) Broccoli_Commander: Sacrifice Y3 Lettuce
Move R3 Blueberry Lettuce
Move R3 Lettuce Y3
Move R3 Lettuce B3

33) wil: Sacrifice R1 Wil
Attack R3 Y3
	wil: quaking like an aspen..

34) Broccoli_Commander: Sacrifice R2 Lettuce
Attack R3 B3
Attack Y2 B3
	Broccoli_Commander: I'd say the game can really go either way. It's funny because it's possible to counter my yellow freeze out by getting a y3 yourself and I thought I would get a bigger lead since you did not... but in the end I'm pretty impressed by the position you are in. You are ahead in several aspects. Interesting!
	Broccoli_Commander: Plus I definitely learnt new idioms with you :)

35) wil: Sacrifice G3 Wil
Build R1 Wil
Build G3 Wil
Build Y3 B2

36) Broccoli_Commander: Move R3 B3 G2
	Broccoli_Commander: I have so lost in fact...

37) wil: Move Y3 B2 Blueberry
	wil: this looks a lot like a trade.
	wil: I thought you were gonna run right in on me...

38) Broccoli_Commander: Build Y3 Lettuce
	Broccoli_Commander: Yeah well.. it will end up badly for my crops I fear!

39) wil: Sacrifice R1 Wil
Attack Y2 Blueberry

40) Broccoli_Commander: Attack G2 G2

41) wil: Move R3 Y3 B2
	wil: slowly...I almost took both your R3s out...
	Broccoli_Commander: Yeah why didn't you?

42) Broccoli_Commander: Sacrifice G2 G2
Build B1 Broccoli_commander
Build B1 Broccoli_commander
	wil: there is a price, and I missed the op in order for other plan

43) wil: Sacrifice G3 Wil
Build G2 G2
Build G3 Wil
Build R1 B2

44) Broccoli_Commander: Move B1 Broccoli_commander Lettuce

45) wil: Build R2 Wil

46) Broccoli_Commander: Attack G2 G2

47) wil: Move G1 Y3 G2
Catastrophe G2 G

48) Broccoli_Commander: Move R3 B3 Lettuce

49) wil: Move R1 Wil Blueberry

50) Broccoli_Commander: Build B1 Lettuce

51) wil: Move G1 Wil Blueberry
	wil: scorched earth policy enacted.
	wil: tried a four person team HW game the other night. quit after two hours...  Not as bad as one night were a two person game for a medal with Andy lasted FOUR hours...and no medal...(although he got one the next game which lasted about a half hour)

52) Broccoli_Commander: Build B2 Broccoli_commander

53) wil: Build R2 Blueberry
	wil: You went and moved him!

54) Broccoli_Commander: Build R2 Lettuce

55) wil: Trade R1 G1 B2

56) Broccoli_Commander: Trade B3 R3 Broccoli_commander

57) wil: Move R2 Blueberry Lettuce

58) Broccoli_Commander: Sacrifice R2 Lettuce
Attack R2 Lettuce
Pass

59) wil: Sacrifice G3 Y3
Build R1 Blueberry
Build R2 B2
Build Y3 B2

60) Broccoli_Commander: Build B3 Broccoli_commander

61) wil: Build G1 Wil

62) Broccoli_Commander: Move B3 Broccoli_commander B2

63) wil: Sacrifice Y2 B2
Move Y3 B2 B3
Move R3 B2 B3

64) Broccoli_Commander: Move Y2 B3 B2

65) wil: Sacrifice Y2 Blueberry
Move R1 Blueberry Lettuce
Move R1 Blueberry Lettuce
Catastrophe Lettuce R

66) Broccoli_Commander: Trade B2 R2 Broccoli_commander

67) wil: Discover R3 B3 Y2 Y2

68) Broccoli_Commander: Sacrifice R2 Broccoli_commander
Attack R2 B2
Attack G1 B2

69) wil: Build G2 Blueberry

70) Broccoli_Commander: Build Y2 B2
	Broccoli_Commander: Erg what a blunder.
Won't win a medal like that. Won't even last four hours (which must be quite exhausting).


71) wil: Move G1 Blueberry Y2
	wil: lol,  i think most medals have been won when Andy made a blunder

72) Broccoli_Commander: Trade B3 G3 B2

73) wil: Sacrifice G3 Wil
Build G2 Y2
Build G3 Wil
Build R1 Y2

74) Broccoli_Commander: Sacrifice G3 B2
Build G3 B2
Build B2 Broccoli_commander
Build B3 Lettuce

75) wil: Move R1 Wil Blueberry

76) Broccoli_Commander: Trade B3 R3 Lettuce

77) wil: Trade G3 B3 Wil

78) Broccoli_Commander: Discover B1 Lettuce G3 Pes

79) wil: Move Y3 B3 Wil

80) Broccoli_Commander: Sacrifice Y3 Lettuce
Move B1 Lettuce Pes
Move B1 Pes Wil
Move B1 Pes Wil
Catastrophe Wil B

81) wil: Build Y3 Blueberry

82) Broccoli_Commander: Sacrifice Y2 B2
Move Y2 B2 Wil
Move Y1 Lettuce Wil
Catastrophe Wil Y

	Broccoli_Commander: Heh you were playing too late in the night or too early!
I'm surprised by how it turned out.

Thanks for the game!


34044)
Variants: "Hard time"
Started: 2018.4.17, Ended: 2018.5.22
Participants: ts52 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) ts52: Homeworld B2 Y3 G3

3) Trydnt: Build G1 Trydnt

4) ts52: Build G1 Ts52

5) Trydnt: Trade G1 Y1 Trydnt

6) ts52: Trade G1 Y1 Ts52

7) Trydnt: Build Y2 Trydnt

8) ts52: Build Y2 Ts52

9) Trydnt: Discover Y1 Trydnt G3 G3

10) ts52: Discover Y2 Ts52 G1 Kermit

11) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y3 Trydnt
Build Y3 G3

12) ts52: Discover Y1 Ts52 G1 Robin

13) Trydnt: Sacrifice Y2 G3
Discover Y2 Trydnt B3 B3
Discover Y1 G3 G1 G1

14) ts52: Build Y2 Robin

15) Trydnt: Trade Y2 R2 B3

16) ts52: Build G2 Ts52

17) Trydnt: Build Y2 G1

18) ts52: Trade G2 R2 Ts52

19) Trydnt: Move Y3 G3 Robin

20) ts52: Sacrifice Y2 Robin
Discover Y1 Robin B3 Gonzo
Move Y2 Kermit Gonzo

21) Trydnt: Trade Y3 R3 Trydnt

22) ts52: Trade Y1 G1 Gonzo

23) Trydnt: Move Y3 Robin Gonzo
	Trydnt: that was terrible. I should have made the first move

24) ts52: Discover G1 Gonzo B1 Grover

25) Trydnt: Sacrifice R2 B3
Attack Y2 Gonzo
Pass

26) ts52: Build G1 Ts52

27) Trydnt: Trade Y2 R2 Gonzo

28) ts52: Build G2 Grover

29) Trydnt: Trade R3 G3 Trydnt

30) ts52: Build G2 Grover

31) Trydnt: Move Y3 Gonzo Grover

32) ts52: Discover G1 Ts52 B1 Cookie

33) Trydnt: Sacrifice R2 Gonzo
Attack G2 Grover
Attack G2 Grover

34) ts52: Build G2 Grover
Catastrophe Grover G

35) Trydnt: Discover Y1 G1 B3 B3

36) ts52: Build R1 Ts52

37) Trydnt: Trade Y1 R1 B3

38) ts52: Move R2 Ts52 Cookie

39) Trydnt: Build Y1 G1

40) ts52: Build R1 Cookie

41) Trydnt: Build Y1 G1

42) ts52: Trade R2 Y2 Cookie

43) Trydnt: Move Y3 Grover B3

	ts52: Crap. Sorry about that. Lost track of the fact that it was my turn somehow. ):


33914)
Variants: "Unrated"
Started: 2018.4.18, Ended: 2018.4.23
Participants: BoredMan (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld Y3 B1 G3

2) BoredMan: Homeworld B3 Y2 G3
	BoredMan: Damn can't figure out how to make a move.
	dlwillson: Try: h b3 y2 g3

H means home, then two available pyramids for stars, then one more available pyramid for your first ship.

3) dlwillson: B G1 Dlwillson

	dlwillson: The only sensible move is: b g1 boredman
	BoredMan: ok it's the first time I play this game as well :D
	dlwillson: Well, have fun! It's my thousandth, or so. I love this game. There's a strategy guide around somewhere. My most highly recommended opponents are Felix and Wil.
	BoredMan: Hmm if I type in "b g1" is says the sytem doesn't exist.
	dlwillson: Read the recognized commands section of this page.

You have to specify which system you want to build the g1 in.


33990)
Variants: "Unrated"
Started: 2018.4.18, Ended: 2018.4.23
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B3 Y1 G3

2) wil: Homeworld Y2 B1 G3

3) Trydnt: Build G1 Trydnt
	wil: until I get out of this tourney game, I have only room for one on my slate...

4) wil: Build G1 Wil
	Trydnt: haha fair enough. I'll have to get in on the next tournament
	wil: hopefullly one will start up about a month after this one ends...  The next one may take a year or more!  perfect


5) Trydnt: Trade G1 Y1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Build Y2 Trydnt

8) wil: Build Y2 Wil

9) Trydnt: Trade Y1 B1 Trydnt

10) wil: Discover Y1 Wil B3 B3

11) Trydnt: Build B1 Trydnt

12) wil: Sacrifice G3 Wil
Build Y1 B3
Build Y3 B3
Build Y3 Wil

13) Trydnt: Discover Y2 Trydnt G2 G2

14) wil: Move Y1 B3 G2

15) Trydnt: Discover Y2 G2 G3 G3

16) wil: Move Y2 Wil G3

17) Trydnt: Build Y3 G3

18) wil: Move Y1 G2 G3
Catastrophe G3 Y
	wil: yeah I'm lookin at you!

	wil: Hey YOU!

19) Trydnt: Discover B1 Trydnt Y2 Y2

20) wil: Trade Y3 G3 B3

21) Trydnt: Build B2 Trydnt

22) wil: Sacrifice G3 B3
Build Y1 B3
Build Y2 B3
Build Y3 Wil

23) Trydnt: Discover B2 Trydnt G2 G2

24) wil: Trade Y3 G3 Wil

25) Trydnt: Build B2 G2

26) wil: Trade Y3 B3 Wil

27) Trydnt: Build B2 Trydnt

28) wil: Discover Y1 B3 G2 Gtoo

29) Trydnt: Sacrifice B2 G2
Trade B1 R1 Trydnt
Trade B1 R1 Y2

30) wil: Sacrifice G3 Wil
Build Y3 B3
Build Y3 Gtoo
Build Y3 Gtoo

31) Trydnt: Move G3 Trydnt Gtoo

32) wil: Sacrifice Y3 B3
Move Y3 Gtoo Trydnt
Discover Y3 Gtoo G3 G3
Discover Y1 Gtoo R3 R3

33) Trydnt: Sacrifice B2 Trydnt
Trade G3 Y3 Gtoo
Trade R1 B1 Y2

34) wil: Trade Y3 R3 Trydnt

35) Trydnt: Sacrifice Y3 Gtoo
Discover B1 Y2 Y3 Y3
Move B2 G2 Y3
Move B1 Y3 Wil
	Trydnt: I don't know what I was trying to do

36) wil: Attack R1 Trydnt

	Trydnt: thrusters failed just short of mission completion
	wil: hate that


34050)
Variants: "Unrated"
Started: 2018.4.18, Ended: 2018.4.18
Participants: Trydnt (S), wil (N)
Winner: Trydnt



34041)
Variants: "Hard time"
Started: 2018.4.18, Ended: 2018.4.18
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G3 R1 B3



34058)
Variants: "Hard time"
Started: 2018.4.20, Ended: 2018.4.26
Participants: Felix (S), wil (N)
Winner: Felix

1) wil: H B2 R1 G3

2) Felix: Homeworld Y1 B3 G3

3) wil: Build G1 Wil

4) Felix: Build G1 Felix

5) wil: Build G1 Wil
	wil: This is a practice game for our next three!

6) Felix: Build G2 Felix
	Felix: Hehe. Good luck!

7) wil: Trade G1 Y1 Wil

8) Felix: Trade G2 Y2 Felix

9) wil: Trade G1 R1 Wil

10) Felix: T G1 R1 Felix

11) wil: Build R2 Wil

12) Felix: B R2 Felix

13) wil: Trade R2 G2 Wil

14) Felix: Discover R2 Felix B2 Grunge

15) wil: Discover R1 Wil G3 G3

16) Felix: Sacrifice G3 Felix
Build R2 Grunge
Build R2 Felix
Build R3 Felix

17) wil: Discover Y1 Wil G3 Gee3

18) Felix: Trade R2 G2 Felix

19) wil: Build Y1 Gee3

20) Felix: Trade R2 Y2 Grunge

21) wil: Build Y2 Gee3

22) Felix: Move Y2 Grunge Gee3
Catastrophe Gee3 Yellow

23) wil: Build G1 Wil

24) Felix: B G1 Felix

25) wil: Trade G2 Y2 Wil

26) Felix: Move G2 Felix Grunge

27) wil: Build R2 G3

28) Felix: Build R2 Grunge

29) wil: Trade G1 Y1 Wil

30) Felix: Discover R1 Felix B2 Joy

31) wil: Discover Y2 Wil R3 R3

32) Felix: Build R3 Felix

33) wil: Build Y1 Wil

34) Felix: Move Y2 Felix Grunge

35) wil: Discover Y1 Wil B3 B3

36) Felix: Trade R3 B3 Felix

37) wil: Sacrifice G3 Wil
Build Y2 R3
Build Y3 B3
Build Y3 Wil

38) Felix: Build R3 Felix

39) wil: Trade Y3 G3 Wil

40) Felix: Trade R3 Y3 Felix

41) wil: Trade Y3 R3 B3

42) Felix: Build Y3 Grunge

43) wil: Build Y3 Wil

44) Felix: Trade Y3 G3 Grunge

45) wil: Discover G3 Wil Y3 Y3

46) Felix: Move B3 Felix Grunge

47) wil: Trade Y1 G1 Wil

48) Felix: M B3 Grunge R3

49) wil: Sacrifice Y2 R3
Move Y2 R3 Grunge
Move Y2 Grunge G3

50) Felix: Sacrifice G2 Grunge
Build B1 R3
Build B1 R3

51) wil: Build G1 Wil

52) Felix: Sacrifice Y3 Felix
Move B1 R3 Wil
Move B1 R3 Wil
Move B3 R3 Wil
Catastrophe Wil Blue

53) wil: Sacrifice Y2 G3
Move R1 G3 Grunge
Move R2 G3 Grunge
Catastrophe Grunge R
	wil: oops...this is the end...
	wil: I can't stop it...might as well delay a tad

54) Felix: Build R1 Felix

	wil: good game, we can forgo the forgone conclusion I suppose.  It will be interesting to see the final games between you and babamot!  (I'm supposing that is where it will go.)
	Felix: Thank you! Always a good game with you. And I dunno... I think you could give him a run for his money. We shall see!
	wil: That we will (see that is)... but if i have it right, if I beat him, then I have to beat you. (so we both have one loss) and THEN we play two out of three for the final.  all so daunting!  It has been incredibly fun thou and I'm so ready to start another round robin with three times as many players soon after it completes.  A guaranteed way to stay in regular games!


34059)
Started: 2018.4.20, Ended: 2018.6.15
Participants: deanthebean (S), Felix (N)
Winner: deanthebean

1) Felix: Homeworld B2 R3 G3

2) deanthebean: Homeworld R1 B2 G3
	Felix: Hello again :) Have fun!

3) Felix: Build G1 Felix
	deanthebean: Thanks! I won a game so I decided to come back for some punishment :P

4) deanthebean: Build G1 Deanthebean

5) Felix: Trade G1 Y1 Felix
	Felix: Haha, you give me too much credit!

6) deanthebean: Build G1 Deanthebean

7) Felix: B Y1 Felix

8) deanthebean: Trade G1 Y1 Deanthebean

9) Felix: B Y2 Felix

10) deanthebean: Build Y2 Deanthebean

11) Felix: Discover Y1 Felix B1 Out
	Felix: Your last move was a mistake, I'm afraid. You might want to take it back and re-do it. Since you have four yellows in your system, I can simply call catastrophe on my turn and destroy them...
	deanthebean: Thanks. Very sporting of you. I obviously didn't read the rules carefully enough. I assumed you had to have at least one ship in the system to trigger the catastrophe but of course I had no good reason for assuming that! 

12) deanthebean: Trade Y1 R1 Deanthebean

13) Felix: T Y1 B1 Felix
	Felix: No problem! It would definitely make sense to think that you would need your own ship in the system to call a catastrophe, but no, either player can call a catastrophe in any overpopulated system at any point during their turn. There are definitely a lot of rules to keep in mind with this game!

14) deanthebean: Build Y1 Deanthebean
	deanthebean: Yeah. It's not that complicated but some of the rules are unintuitive. 

15) Felix: Build Y1 Felix

16) deanthebean: Trade Y1 B1 Deanthebean

17) Felix: Discover B1 Felix G1 Joy

18) deanthebean: Build R1 Deanthebean

19) Felix: Build B2 Joy

20) deanthebean: Discover B1 Deanthebean G3 Euoi

21) Felix: Move Y1 Felix Joy

22) deanthebean: Build B3 Euoi

23) Felix: Discover B1 Joy R3 Rim

24) deanthebean: Move G3 Deanthebean Rim

25) Felix: Build B3 Joy

26) deanthebean: Attack B1 Rim

27) Felix: Move B2 Joy Rim

28) deanthebean: Attack B2 Rim

29) Felix: Build B3 Joy

30) deanthebean: Sacrifice Y2 Deanthebean
Move B1 Rim Joy
Move B1 Euoi Joy
Catastrophe Joy Blue

31) Felix: Build Y1 Joy
	deanthebean: Was there a catch? 

32) deanthebean: Trade B2 Y2 Rim
	Felix: Not exactly. I just wanted to build that b3 :)

33) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y3 Out
Build Y3 Felix

34) deanthebean: Build Y3 Rim

35) Felix: S Y2 Felix
M Y1 Joy Rim
M Y1 Out Rim
C Rim Yellow

36) deanthebean: Trade R1 Y1 Deanthebean

37) Felix: Trade Y3 G3 Felix

38) deanthebean: Build B1 Euoi

39) Felix: Build Y1 Felix

40) deanthebean: Build Y2 Deanthebean

41) Felix: D Y3 Out B3 Ramp

42) deanthebean: Sacrifice Y1 Deanthebean
Move G3 Rim Deanthebean

43) Felix: B Y1 Joy

44) deanthebean: Trade B3 Y3 Euoi

45) Felix: Build G1 Felix

46) deanthebean: Sacrifice G3 Deanthebean
Build Y2 Euoi
Build Y3 Deanthebean
Build G2 Deanthebean

47) Felix: Discover G1 Felix B1 Grump

48) deanthebean: Build B1 Euoi

49) Felix: Build G2 Felix

50) deanthebean: Discover G1 Deanthebean B3 Lieu

51) Felix: Trade G2 R2 Felix

52) deanthebean: Build G2 Lieu

53) Felix: Trade Y2 B2 Felix

54) deanthebean: Build B3 Euoi

55) Felix: Discover Y1 Joy G3 Bazoik

56) deanthebean: Trade G2 Y2 Lieu

57) Felix: Discover Y1 Joy R3 Sputz

58) deanthebean: Move Y2 Deanthebean Sputz

59) Felix: Move Y1 Sputz Grump

60) deanthebean: Move R1 Deanthebean Bazoik

61) Felix: Sacrifice R2 Felix
Attack R1 Bazoik
Pass

62) deanthebean: Trade G1 R1 Lieu

63) Felix: B R2 Bazoik

64) deanthebean: Trade B3 R3 Euoi
	deanthebean: Ah! I should have seen that coming but anyway, nice tactic. 

65) Felix: D B2 Felix G1 Zipcord

66) deanthebean: Move R3 Euoi Zipcord

67) Felix: Sacrifice Y3 Ramp
Move B2 Zipcord Bazoik
Move R1 Bazoik Deanthebean
Move R2 Bazoik Deanthebean

68) deanthebean: Attack R2 Deanthebean

69) Felix: S G1 Grump
B R2 Deanthebean
C Deanthebean Red

70) deanthebean: Build Y3 Deanthebean

71) Felix: B B3 Bazoik

72) deanthebean: Move B1 Euoi Zipcord

73) Felix: M Y1 Grump Deanthebean

74) deanthebean: Move Y3 Deanthebean Zipcord

75) Felix: D B2 Bazoik G1 Glint

76) deanthebean: Move Y3 Zipcord Bazoik

77) Felix: T Y1 B1 Deanthebean

78) deanthebean: Sacrifice R3 Zipcord
Attack B3 Bazoik
Attack Y1 Bazoik
Attack B1 Deanthebean

79) Felix: B B3 Glint

80) deanthebean: Move B1 Euoi Glint

81) Felix: Trade B2 R2 Glint

82) deanthebean: Build B2 Glint

83) Felix: Attack B2 Glint

84) deanthebean: Move B1 Deanthebean Glint
Catastrophe Glint Blue

85) Felix: B Y1 Felix

86) deanthebean: Move Y3 Bazoik Glint

87) Felix: S Y1 Felix
M R2 Glint Felix

88) deanthebean: Build Y1 Glint

89) Felix: M R2 Felix Zipcord

90) deanthebean: Move Y3 Euoi Zipcord

91) Felix: Attack B1 Zipcord

92) deanthebean: Sacrifice R1 Lieu
Attack R2 Zipcord

93) Felix: Build G1 Felix

94) deanthebean: Build G2 Deanthebean

95) Felix: Sacrifice B1 Zipcord
Trade G1 B1 Felix

96) deanthebean: Build R1 Zipcord

97) Felix: Build G1 Felix

98) deanthebean: Build G2 Deanthebean

99) Felix: Build B1 Felix

100) deanthebean: Build R1 Zipcord
	Felix: You've got me in a pickle!

101) Felix: Discover B1 Felix R1 Hope

102) deanthebean: Move B3 Bazoik Hope
	deanthebean: :)

103) Felix: Sacrifice G3 Felix
Build B1 Hope
Build B2 Hope
Build B3 Felix
Catastrophe Hope Blue

104) deanthebean: Trade G2 B2 Deanthebean

105) Felix: Discover Y1 Felix B1 Grin

106) deanthebean: Sacrifice Y2 Sputz
Move B2 Deanthebean Grin
Move B2 Grin Felix
Catastrophe Felix Blue

107) Felix: Build G2 Felix

108) deanthebean: Sacrifice Y3 Zipcord
Move R2 Zipcord Felix
Move R1 Zipcord Felix
Move R1 Zipcord Felix
Catastrophe Felix Red

	Felix: Very well executed! Great game :)
	deanthebean: Thanks and thanks for not simply trigerring the catastrophe earlier when I built the 4th yellow. I've joined the homeworlds ladder so hopefully I'll get the chance to challenge you in that soon. 
	Felix: I hope to see you at the top soon! You genuinely played very well this game, after that early mistake with the overpopulation. And feel free to challenge me any time, ladder or no!


34061)
Started: 2018.4.20, Ended: 2018.5.21
Participants: Chivenger (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 Y3 G3
	Chivenger: homeworld G2S B1S

2) Chivenger: Homeworld G2 B1 Y3
	Chivenger: First game here and of Homeworlds. Be gentle please. 


3) Felix: Build G1 Felix

4) Chivenger: Build Y1 Chivenger
	Felix: No worries! I'm happy to help you learn. But the best way to learn is to lose a bunch of games and learn from mistakes! Let me know if you have any questions or want any tips along the way though.

5) Felix: Trade G1 B1 Felix
	Chivenger: So my Green only lets me build Yellow despite having Blue and Green in my Homeworld?


6) Chivenger: Pass
	Felix: That's correct. You have to already have a ship of a color in a system before you can build that color.
	Chivenger: So I don't "own" the ships in my galaxy to discover a new planet. Can you do one so I can see how that is supposed to work?

	Chivenger: And I can't trade the 3Y for a 3G? 

7) Felix: Pass
	Felix: Just type "discover y1 [star color/size] [star name]" 
So "discover y1 g3 DeathStar" for instance.

8) Chivenger: Discover Y1 Chivenger G3 Deathstar

9) Felix: B G1 Felix

10) Chivenger: Trade Y3 G3 Chivenger

11) Felix: Trade G1 Y1 Felix
	Chivenger: Ooh. Got that command right in the first try. 

12) Chivenger: Build G1 Chivenger
	Felix: Well done! :)

13) Felix: Build Y1 Felix

14) Chivenger: Build Y2 Deathstar

15) Felix: Discover Y1 Felix G1 Out

16) Chivenger: Trade G1 R1 Chivenger

17) Felix: Build Y2 Out

18) Chivenger: Move Y2 Deathstar Chivenger
	Chivenger: Added a second Y2 and that makes three your 1Y makes four and bad things happen

	Felix: That's exactly right. You're catching on :)

19) Felix: Build B1 Felix

20) Chivenger: Trade Y2 R2 Chivenger

21) Felix: Move Y1 Out Felix

22) Chivenger: Trade R2 Y2 Chivenger
	Chivenger: And I am seeing why Andy Looney likes this game so much. There is a LOT going on. 

23) Felix: Trade Y1 R1 Felix
	Felix: You haven't seen anything yet! And piece of advice... it's not usually beneficial to trade a color out of your system. Now you don't have yellow in your home system anymore, which is dangerous

	Chivenger: Yeah. Noticed that and yeah gave up a couple ships behind now.

24) Chivenger: Build Y1 Chivenger

25) Felix: Trade B1 R1 Felix

26) Chivenger: Build R2 Chivenger
	Chivenger: So the blue in my homeworld doesn't count to build a blue? 
	Felix: Nope. You must already have a ship of a certain color in order to build another.

27) Felix: Build Y2 Out

28) Chivenger: Build Y3 Deathstar

29) Felix: Move R1 Felix Out

30) Chivenger: Move R2 Chivenger Deathstar

31) Felix: M Y2 Out Deathstar

32) Chivenger: Move Y3 Deathstar Out

33) Felix: S R1 Out
A R2 Deathstar

34) Chivenger: Build R1 Chivenger

35) Felix: Attack Y1 Deathstar
	Chivenger: Almost missed that for an easy attack. That would have been a Catastrophe, literally.

36) Chivenger: Sacrifice R1 Chivenger
Attack Y2N Out
	Felix: Good catch!
	Chivenger: So you sacrifice the R1 and that lets you flip my R2? New lesson.

37) Felix: Move Y1 Deathstar Chivenger
	Felix: Yep. It's one of the sneaky moves you can do in this. I'm hoping you will learn something things in this game!

38) Chivenger: Sacrifice Y2 Chivenger
Move Y3 Out Deathstar
Move R1 Chivenger Deathstar

39) Felix: Attack R1 Deathstar
	Chivenger: Ah Ha. Need a ship in the system to do that. Okay. What's next Obi-Won?

40) Chivenger: Pass
	Felix: I dunno. We'll see what kinds of situations pop up!

41) Felix: Sacrifice Y1 Chivenger
Pass
	Chivenger: Not ideal. But it keeps the Catastrophe off the board. 

42) Chivenger: Build Y1 Out
	Chivenger: The Y3 blunts the attack on R1, right?
	Felix: No, I'm afraid not. I can still attack your r1, but I just can't attack your y3

43) Felix: Move R2 Deathstar Out
	Chivenger: So at this point I feel I am pretty far behind and no way to recover. Is there a point to continue this? Any suggestions?

44) Chivenger: Move Y3 Deathstar Chivenger

45) Felix: Build Y2 Deathstar
	Felix: It is not as bad as you think. I'd try to trade for a red ship so you can use your y3 to regain some ships. I will take a useless turn to keep this going :)

46) Chivenger: Sacrifice Y2 Out
Move Y1 Out Deathstar
Move Y1 Chivenger Deathstar
Catastrophe Deathstar Yellow
	Chivenger: Okay. Got in a couple live games over thr weekend. If you have a winning shot take it. We can just play again.

47) Felix: Build B1 Felix
	Felix: Sounds good! If you're tired of this game, feel free to resign and we can start another

48) Chivenger: Build Y1 Chivenger

49) Felix: Move B1 Felix Out

50) Chivenger: Build Y1 Chivenger

51) Felix: Sacrifice G3 Felix
Build B2 Out
Build B2 Out
Build B3 Felix
	Felix: Good play!
	Chivenger: Thanks. A friend of mine and I got in some live games at a con over the weekend and we have been playing another game here. It's a fun damn game. I am learning defense but have to learn to layer my offense better. 

52) Chivenger: Trade Y1 R1 Chivenger

53) Felix: Trade B2 Y2 Out
	Felix: It definitely takes a while to grasp offense. It's all about expanding your fleet and diversifying colors as much as possible so you have more attack options

54) Chivenger: Move Y3 Chivenger Deathstar

55) Felix: Trade B3 G3 Felix

56) Chivenger: Build R2 Chivenger
	Chivenger: Apologies. I forgot we had a game going.

57) Felix: Build R2 Felix
	Felix: No prob! I kinda did too, haha

58) Chivenger: Sacrifice R1 Chivenger
Attack R1 Deathstar

59) Felix: Build B2 Out

60) Chivenger: Build R1 Deathstar

61) Felix: Discover B2 Out B3 Rom

62) Chivenger: Build R3 Chivenger

63) Felix: Sacrifice G3 Felix
Build B3 Felix
Build B3 Rom
Build R3 Out

64) Chivenger: Sacrifice Y3 Deathstar
Move R1 Deathstar Out
Move R1 Deathstar Out
Discover R3 Chivenger Y3 Yavin
Catastrophe Out Red

65) Felix: T B3 G3 Rom

66) Chivenger: Move R3 Yavin Out

67) Felix: Sacrifice Y2 Out
Move B2 Out Rom
Discover B1 Out G3 Scan

68) Chivenger: Build R1 Out

69) Felix: Build B3 Scan
	Felix: Two very large moves!

70) Chivenger: Build Y1 Chivenger

71) Felix: Trade B3 Y3 Scan

72) Chivenger: Discover Y1 Chivenger B3 In

73) Felix: Trade B2 Y2 Rom

74) Chivenger: Discover Y1 In G1 Inagain

75) Felix: B B2 Scan

76) Chivenger: Build Y2 Inagain

77) Felix: Sacrifice G3 Rom
Build Y2 Scan
Build Y3 Rom
Build B3 Scan

78) Chivenger: Sacrifice Y2 Inagain
Move Y1 Inagain Scan
Move Y1 Chivenger Scan
Catastrophe Scan Yellow

79) Felix: Trade B3 G3 Felix

80) Chivenger: Build R1 Chivenger

81) Felix: Build B3 Felix

82) Chivenger: Trade R2 Y2 Chivenger
	Chivenger: This is interesting. Really learning a lot here. Thanks for the game. 

83) Felix: Move R1 Felix Out

84) Chivenger: Sacrifice Y2 Chivenger
Move R3 Out Rom
Move G3 Chivenger Rom
	Felix: No problem! I'm glad you're learning things. I think you can see that controlling blue can become very important.
	Chivenger: Absolutely. Controlling any color can be critical if you can monopolize it. 

85) Felix: Sacrifice R2 Felix
Attack R3 Rom
Attack G3 Rom
	Felix: Definitely, but blue especially, since without blue, you can't trade and it's very hard to expand or diversify

	Felix: Oops! Good thought, but sacrificing a red 2 allows for multiple attacks!
	Chivenger: No, I saw that. I was out of good options. So it was a matter of the least bad options.I think at this point this one has gotten out of hand. If you want another game, send a challenge. But with the holiday weekend, it may take some time to get on track. 

	Felix: No worries. I'm about to have a baby and move house, so I'm tied up now anyway. But thanks for the game! 


34076)
Variants: "Hard time"
Started: 2018.4.21, Ended: 2018.5.3
Participants: Aristos (S), Broccoli_Commander (N)
Winner: Broccoli_Commander

1) Broccoli_Commander: Homeworld Y1 B2 G3

2) Aristos: Homeworld B3 G2 Y3

3) Broccoli_Commander: Build G1 Broccoli_commander
	Aristos: The Gods said unto Aristos, "Build an ark large enough to hold all the people and animals of the world, but small enough to sail in the sky." And Aristos, leader of his people said, "How about we compromise at a Y3?" And the Gods said, "Good enough." And so it was that the Aristos Nation lifted itself above all others and so imposed its will upon the land that the world itself became known as Aristos thereafter.
-- from "The Aristos Dawn"

4) Aristos: Build Y1 Aristos
	Aristos: build y1 Aristos

5) Broccoli_Commander: Build G1 Broccoli_commander
	Aristos: (doh... typed in wrong box!)

6) Aristos: Discover Y1 Aristos Y1 Glint
	Broccoli_Commander: My vegetables will feed from your dawn, harnessing your nascent power with the chlorophyll of the broccoli family. Vitamins will prevail.
All of your base are belong to us. 

7) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower
	Aristos: "Strange tidings, Councilors," said the head of the Aristos SETI Project. "We have detected artificial signals within interstellar e-waves. We have no idea what they mean, but they are clearly artificial."
"Let us sail upon the black to other stars and see if we can find the source! What is the nearest star to us?"
"We call it 'Glint,'"
"Then that shall be our destination."
--- from "The Aristos Dawn"

8) Aristos: Build Y2 Aristos

9) Broccoli_Commander: Build G1 Broccoli_commander

10) Aristos: Trade Y2 G2 Aristos

11) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry
	Aristos: As they explored the black, the Aristos realized they might need to construct ships far from the shipyards of homeworld. So they conceived a mighty mobile factory. And, being Aristos, to conceive the idea was to achieve the idea.
-- from "The Aristos Dawn"

12) Aristos: Build Y2 Aristos

13) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G2 Cauliflower
Build G3 Blueberry
Build G3 Broccoli_commander

14) Aristos: Build G3 Aristos
	Broccoli_Commander: My roots are growing at an exponential rate. Green sprouts are colonizing all known systems. You will soon find yourself suffocating among a dense forest. Once the flower blossom and the fruits ripe, you will have no choice but to strenghten out seeds.

15) Broccoli_Commander: Trade G3 Y3 Blueberry

16) Aristos: Move G3 Aristos Glint

17) Broccoli_Commander: Build G3 Blueberry

18) Aristos: Sacrifice G2 Aristos
Build G2 Glint
Build Y2 Aristos

19) Broccoli_Commander: Trade G3 R3 Blueberry

20) Aristos: Trade Y2 R2 Aristos

21) Broccoli_Commander: Sacrifice G3 Broccoli_commander
Build G3 Broccoli_commander
Build G3 Blueberry
Build Y2 Blueberry

22) Aristos: Discover G2 Glint B3 Brilliance
	Aristos: And after generations of peace in space, that ancient art of War did lift itself from the terrestrial plane. The Aristos fought amongst themselves until the great warship, The Antithesis, was built by one of the factions. Cowed by this great weapon, the people of Aristos were united once again under one banner, a peace enforced at the tip of a sword. 
--- from "The Aristos Day", book 2 of the Great Chronicle

23) Broccoli_Commander: Trade G1 R1 Broccoli_commander

24) Aristos: Build G1 Brilliance

25) Broccoli_Commander: Sacrifice G3 Blueberry
Build G3 Blueberry
Build R1 Blueberry
Build R1 Broccoli_commander

26) Aristos: Discover Y1 Glint B2 Shine

27) Broccoli_Commander: Move Y3 Blueberry Shine

28) Aristos: Sacrifice G3 Glint
Build Y1 Shine
Build Y2 Shine
Build R2 Aristos
Catastrophe Shine Yellow

29) Broccoli_Commander: Discover G2 Cauliflower B1 Muffin

	Aristos: good game


34060)
Variants: "Unrated"
Started: 2018.4.22, Ended: 2018.5.25
Participants: Felix (S), mathochist (N)
Winner: Felix

1) mathochist: Homeworld G1 B2 Y3

2) Felix: H B2 R3 G3

3) mathochist: Build Y1 Mathochist
	Felix: Hey, good luck and have fun!
	mathochist: you too!


4) Felix: Build G1 Felix

5) mathochist: Build Y1 Mathochist

6) Felix: Trade G1 Y1 Felix

7) mathochist: Trade Y1 G1 Mathochist

8) Felix: Build G1 Felix

9) mathochist: Build G2 Mathochist

10) Felix: Discover G1 Felix B1 Out

11) mathochist: Discover G1 Mathochist Y3 Cleo

12) Felix: Build G2 Out

13) mathochist: Sacrifice G2 Mathochist
Build G2 Cleo
Build Y1 Mathochist
	mathochist: Give me a few hours, please? Been a busy week and I had guests this afternoon. sorry. 

14) Felix: Build Y2 Felix

15) mathochist: Trade Y1 R1 Mathochist
	Felix: Of course. YOu can take as long as you need to make any moves

16) Felix: Move Y1 Felix Out

17) mathochist: Move Y1 Mathochist Cleo

18) Felix: Discover G1 Out B3 Womp

19) mathochist: Discover G1 Cleo B1 Twinkle

20) Felix: Build G2 Felix



34089)
Started: 2018.4.25, Ended: 2018.4.25
Participants: JimmyMike (S), nateynate (N)
Winner: JimmyMike

1) nateynate: Homeworld G1 B2 Y3

2) JimmyMike: Homeworld G2 Y1 B3
	JimmyMike: homeworld g3 y1 b2

3) nateynate: Discover Y3 Nateynate R3 Farawat



34090)
Started: 2018.4.25, Ended: 2018.4.26
Participants: JimmyMike (S), nateynate (N)
Winner: JimmyMike

1) nateynate: Homeworld G3 B2 Y3

2) JimmyMike: Homeworld Y3 G1 B3

3) nateynate: Build Y1 Nateynate

4) JimmyMike: Build B1 Jimmymike

5) nateynate: Trade Y3 G3 Nateynate

6) JimmyMike: Trade B3 R3 Jimmymike

7) nateynate: Discover G3 Nateynate R1 Farawat

8) JimmyMike: Discover R3 Jimmymike G2 Tuqlose

9) nateynate: Build G1 Farawat R1

10) JimmyMike: Build B1 Jimmymike

11) nateynate: Build Y1 Nateynate

12) JimmyMike: Trade B1 Y1 Jimmymike

13) nateynate: Discover Y1 Nateynate B1 Runnamoq

14) JimmyMike: Move Y1 Jimmymike Tuqlose

15) nateynate: Build Y2 Nateynate

16) JimmyMike: Build B1 Jimmymike

17) nateynate: Build G1 Farawat

18) JimmyMike: Build B2 Jimmymike

19) nateynate: Move Y1 Nateynate Farawat

20) JimmyMike: Trade B2 R2 Jimmymike
	nateynate: I did a thing!

21) nateynate: Discover Y1 Farawat R2 Blunderbuss
	JimmyMike: As did I!
	nateynate: We apologize for the poor performance, this is our first time playing!

22) JimmyMike: Discover R3 Tuqlose Y3 Onno

23) nateynate: Build Y2 Nateynate

24) JimmyMike: Build B2 Jimmymike

25) nateynate: Build Y2 Nateynate

26) JimmyMike: Trade B2 R2 Jimmymike

27) nateynate: Move Y2 Nateynate Runnamoq

28) JimmyMike: Build Y3 Tuqlose

29) nateynate: Move Y2 Nateynate Farawat

30) JimmyMike: Move Y1 Tuqlose Farawat

31) nateynate: Attack Y1 Farawat

32) JimmyMike: Move R2 Jimmymike Tuqlose

33) nateynate: Trade Y2 B2 Runnamoq

34) JimmyMike: Move R2 Tuqlose Onno

35) nateynate: Move B2 Runnamoq Blunderbuss

36) JimmyMike: Trade R2 G2 Jimmymike

37) nateynate: Move B2 Blunderbuss Farawat

38) JimmyMike: Discover R3 Onno R1 La Treve

39) nateynate: Trade G3 R3 Farawat

40) JimmyMike: Move Y3 Tuqlose La

41) nateynate: Move R3 Farawat Nateynate

42) JimmyMike: Move R2 Onno Runnamoq

43) nateynate: Build R1 Nateynate

44) JimmyMike: Attack Y1N Runnamoq

45) nateynate: Build R2 Nateynate

46) JimmyMike: Move R3 La Blunderbuss

47) nateynate: Sacrifice Y2 Farawat
Move R3 Nateynate Farawat
Move R3 Farawat Blunderbuss

48) JimmyMike: Attack R3N Blunderbuss

49) nateynate: Build R3 Nateynate

50) JimmyMike: Attack Y1 Blunderbuss

51) nateynate: Move R3 Nateynate La

52) JimmyMike: Attack R3 La



34097)
Started: 2018.4.26, Ended: 2018.5.14
Participants: JimmyMike (S), nateynate (N)
Winner: JimmyMike

1) nateynate: Homeworld R3 B1 G3

2) JimmyMike: Homeworld G2 Y3 B3

3) nateynate: Build G1 Nateynate

4) JimmyMike: Build B1 Jimmymike

5) nateynate: Trade G1 Y1 Nateynate

6) JimmyMike: Trade B3 R3 Jimmymike

7) nateynate: Discover G3 Nateynate B2 Entropie

8) JimmyMike: Build R1 Jimmymike

9) nateynate: Build G1 Entropie

10) JimmyMike: Build B1 Jimmymike

11) nateynate: Trade G3 R3 Entropie

12) JimmyMike: Build B2 Jimmymike

13) nateynate: Build G1 Entropie

14) JimmyMike: Discover B2 Jimmymike R1 Miscake

15) nateynate: Trade G1 Y1 Entropie

16) JimmyMike: Build B2 Jimmymike

17) nateynate: Build G1 Entropie

18) JimmyMike: Move B2 Jimmymike Miscake

19) nateynate: Move G1 Entropie Nateynate

20) JimmyMike: Build B3 Jimmymike

21) nateynate: Build R1 Entropie

22) JimmyMike: Move R3 Jimmymike Miscake

23) nateynate: Build R2 Entropie

24) JimmyMike: Build R2 Jimmymike

25) nateynate: Trade R1 G1 Entropie

26) JimmyMike: Trade B2 R2 Miscake

27) nateynate: Trade R2 B2 Entropie

28) JimmyMike: Trade B1 Y1 Jimmymike

29) nateynate: Build Y2 Entropie

30) JimmyMike: Trade B2 Y2 Miscake

31) nateynate: Discover G1 Entropie R1 Arewon

32) JimmyMike: Discover R2 Miscake Y2 Wyetu

33) nateynate: Build G2 Nateynate

34) JimmyMike: Build Y3 Jimmymike

35) nateynate: Build Y3 Nateynate

36) JimmyMike: Move B3 Jimmymike Miscake

37) nateynate: Trade G2 R2 Nateynate

38) JimmyMike: Discover R3 Miscake G2 Gitou

39) nateynate: Sacrifice Y2 Entropie
Move B2 Entropie Arewon
Move Y1 Entropie Arewon

40) JimmyMike: Move Y1 Jimmymike Miscake

41) nateynate: Build Y2 Nateynate

42) JimmyMike: Build B1 Jimmymike

43) nateynate: Trade Y2 B2 Nateynate

44) JimmyMike: Move B1 Jimmymike Miscake

45) nateynate: Build B3 Nateynate

46) JimmyMike: Sacrifice Y2 Miscake
Move B1 Miscake Wyetu
Move B1 Wyetu Nateynate
Catastrophe Nateynate Blue

47) nateynate: Move B2 Arewon Nateynate

48) JimmyMike: Move Y1 Miscake Gitou

49) nateynate: Build Y2 Arewon

50) JimmyMike: Build Y2 Gitou

51) nateynate: Sacrifice Y3 Nateynate
Move Y2 Arewon Jimmymike
Move Y1 Arewon Jimmymike
Catastrophe Jimmymike Yellow
Pass

52) JimmyMike: Build B1 Jimmymike

53) nateynate: Build G2 Arewon

54) JimmyMike: Sacrifice Y2 Gitou
Move R2 Wyetu Nateynate
Move R3 Gitou Nateynate
Catastrophe Nateynate Red



34096)
Variants: "Hard time"
Started: 2018.4.27, Ended: 2018.5.25
Participants: Draw5PlayAll (S), Felix (N)
Winner: Felix

1) Felix: Pass

2) Draw5PlayAll: Pass

3) Felix: Homeworld Y1 B2 G3

4) Draw5PlayAll: Homeworld B3 R1 G3

5) Felix: Build G1 Felix
	Felix: Fair enough.

6) Draw5PlayAll: Build G1 Draw5playall

7) Felix: Trade G1 R1 Felix

8) Draw5PlayAll: Trade G1 R1 Draw5playall

9) Felix: Build R2 Felix

10) Draw5PlayAll: Build R2 Draw5playall

11) Felix: Discover R2 Felix B3 Rim

12) Draw5PlayAll: Trade R2 Y2 Draw5playall

13) Felix: Build R2 Felix

14) Draw5PlayAll: Discover R1 Draw5playall G2 G2

15) Felix: D R2 Felix B3 Out

16) Draw5PlayAll: Build Y1 Draw5playall

17) Felix: Build G1 Felix
	Draw5PlayAll: Then you sac and steal the reds.

18) Draw5PlayAll: Move Y2 Draw5playall G2

19) Felix: Sacrifice G3 Felix
Build R2 Out
Build R3 Rim
Build R3 Felix

20) Draw5PlayAll: Build R3 G2

21) Felix: T R3 G3 Rim
	Felix: No, NOW I do that. And that g1 makes all the difference :)

22) Draw5PlayAll: Build Y1 G2

23) Felix: B R3 Rim

24) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Draw5playall
Build Y2 G2
Build Y3 Draw5playall

25) Felix: Trade R3 Y3 Rim

26) Draw5PlayAll: Trade Y2 G2 Draw5playall

27) Felix: B R3 Rim

28) Draw5PlayAll: Build G1 Draw5playall

29) Felix: B Y2 Rim

30) Draw5PlayAll: Sacrifice Y2 G2
Move Y2 G2 Rim
Move Y1 G2 Rim
Catastrophe Rim Yellow

31) Felix: Trade R3 Y3 Rim

32) Draw5PlayAll: Move Y1 Draw5playall G2

33) Felix: B R3 Rim

34) Draw5PlayAll: Build Y1 Draw5playall

35) Felix: Build Y2 Rim

36) Draw5PlayAll: Build Y2 G2

37) Felix: Discover R3 Rim Y2 Point

38) Draw5PlayAll: Trade Y1 B1 Draw5playall

39) Felix: Sacrifice Y2 Rim
Move R2 Out G2
Move R2 Out G2
Catastrophe G2 Red

40) Draw5PlayAll: Build Y1 Draw5playall

41) Felix: Sacrifice Y3 Rim
Move G3 Rim Point
Move G3 Point Draw5playall
Move R3 Point Draw5playall

	Felix: Good game!


34048)
Variants: "Unrated"
Started: 2018.4.28, Ended: 2018.5.21
Participants: dlwillson (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) dlwillson: H R3 B2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) dlwillson: B G1 Dlwillson

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) dlwillson: Trade G1 Y1 Dlwillson

7) Draw5PlayAll: Build G1 Draw5playall

8) dlwillson: Build G1 Dlwillson

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) dlwillson: Discover G1 Dlwillson B1 Sea

11) Draw5PlayAll: Discover B1 Draw5playall G2 Enter

12) dlwillson: B G1 Dlwillson
	Draw5PlayAll: As in, press enter to continue.

13) Draw5PlayAll: Build B1 Enter
	dlwillson: Hm...

14) dlwillson: Discover G1 Dlwillson Y1 Sol
	Draw5PlayAll: Then click on the ship, select "build", and then press enter.

This should be the actual interface on SDG... typing commands is hard.
	dlwillson: Yeah, I keep wondering how long until someone makes a better, more mousey, Homeworlds interface.

15) Draw5PlayAll: Build Y2 Draw5playall

16) dlwillson: Build G1 Dlwillson

17) Draw5PlayAll: Move Y2 Draw5playall Enter

18) dlwillson: M G1 Sol Enter

19) Draw5PlayAll: Discover B1 Enter G3 Ctrl

20) dlwillson: S G3 Dlwillson
B G2 Enter
B G2 Enter
B G3 Dlwillson
C Enter G

21) Draw5PlayAll: Build B1 Ctrl

22) dlwillson: Build G1 Dlwillson

23) Draw5PlayAll: Build B2 Ctrl

24) dlwillson: D G1 Dlwillson Y1 Sol

25) Draw5PlayAll: Build G2 Draw5playall

26) dlwillson: S G3 Dlwillson
B G2 Sol
B G2 Sea
B G3 Dlwillson

27) Draw5PlayAll: Trade B2 Y2 Ctrl

28) dlwillson: T G2 Y2 Sea

29) Draw5PlayAll: Build B2 Ctrl



34103)
Started: 2018.4.29, Ended: 2018.5.2
Participants: ladybugsfly (S), Chivenger (N)
Winner: ladybugsfly

1) Chivenger: Homeworld Y1 B2 G3

2) ladybugsfly: Homeworld G3 Y2 B3

3) Chivenger: Build G1 Chivenger

4) ladybugsfly: Build B1 Ladybugsfly

5) Chivenger: Build G1 Chivenger

6) ladybugsfly: Discover B1 Ladybugsfly G1 Frodo

7) Chivenger: Trade G1 B1 Chivenger

8) ladybugsfly: Build B1 Frodo

9) Chivenger: Build B2 Chivenger

10) ladybugsfly: Trade B1 Y1 Frodo

11) Chivenger: Discover B2 Chivenger G3 Bilbo

12) ladybugsfly: Build Y1 Frodo

13) Chivenger: Build B1 Bilbo

14) ladybugsfly: Build Y2 Frodo

15) Chivenger: Trade B2 Y2 Bilbo

16) ladybugsfly: Move Y1 Frodo Bilbo

17) Chivenger: Build B2 Bilbo

18) ladybugsfly: Trade Y2 G2 Frodo
	Chivenger: Nice got that third yellow out of there


19) Chivenger: Trade B2 R2 Bilbo
	ladybugsfly: You’ve done a nice job putting me on the defensive, or at least being solely reactionary from the beginning.

20) ladybugsfly: Sacrifice G2 Frodo
Build Y2 Bilbo
Build Y3 Frodo

21) Chivenger: Move Y2 Bilbo Frodo

22) ladybugsfly: Trade Y3 R3 Frodo
	Chivenger: Almost missed that one. 

23) Chivenger: Attack Y2 Bilbo

24) ladybugsfly: Move Y1 Bilbo Chivenger

25) Chivenger: Build Y3 Bilbo

26) ladybugsfly: Trade Y1 G1 Chivenger

27) Chivenger: Sacrifice Y2 Frodo
Move G1 Chivenger Bilbo
Move R2 Bilbo Chivenger

28) ladybugsfly: Discover B1 Frodo Y3 Pippin

29) Chivenger: Trade Y3 R3 Bilbo
	Chivenger: Did that mess with you just a bit? 
	ladybugsfly: Shut me down quite nicely. *high five*

30) ladybugsfly: Sacrifice G1 Chivenger
Build B2 Pippin

31) Chivenger: Sacrifice Y2 Bilbo
Move R3 Bilbo Frodo
Move R3 Frodo Ladybugsfly

32) ladybugsfly: Sacrifice R3 Frodo
Attack R3 Ladybugsfly
Pass
Pass

33) Chivenger: Build B2 Bilbo

34) ladybugsfly: Build Y1 Frodo
	Chivenger: Wah. Sorry had quite the evening. Thought I had it
 But forgot the sacrifice. Again. But at least you had to spend your r3

35) Chivenger: Build B3 Bilbo
	ladybugsfly: No worries, play by mail can mean games over days. Yeah, having a red anywhere on the board is a threat. That’s why your other red ship at home still keeps you defended.

36) ladybugsfly: Build B3 Ladybugsfly

37) Chivenger: Trade B3 Y3 Bilbo

38) ladybugsfly: Trade B3 Y3 Ladybugsfly

39) Chivenger: Discover B2 Bilbo G1 Gollum

40) ladybugsfly: Build Y2 Frodo

41) Chivenger: Build B3 Gollum
	ladybugsfly: Great minds think alike!

42) ladybugsfly: Discover Y2 Frodo B3 Merry
	Chivenger: Those Yellow Threes are a big threat as well. 

43) Chivenger: Sacrifice Y3 Bilbo
Move B2 Gollum Pippin
Move B1 Chivenger Pippin
Move R2 Chivenger Merry
Catastrophe Pippin Blue

44) ladybugsfly: Move Y2 Merry Chivenger
	Chivenger: Not the most aggressive move. But it works, I think. 


45) Chivenger: Build G2 Bilbo
	ladybugsfly: You’re snatching up all my ways into your base. Had to claim one to be safe.

46) ladybugsfly: Trade Y2 G2 Chivenger
	Chivenger: There. That looks much better, much simpler. Were you holding back those two blue to be polite or did you have something else planned to take both pieces out at the same time?

47) Chivenger: Trade G1 R1 Bilbo

48) ladybugsfly: Discover G2 Chivenger Y3 Samwise
	Chivenger: Uh oh. 
	ladybugsfly: I was waiting for a 1-2 punch with blue and yellow. My yellow wasn’t ready.

49) Chivenger: Build R1 Bilbo

50) ladybugsfly: Build G1 Samwise

51) Chivenger: Trade G2 Y2 Bilbo

52) ladybugsfly: Build G2 Samwise

53) Chivenger: Sacrifice Y2 Bilbo
Move R2 Merry Chivenger
Move B3 Gollum Samwise

54) ladybugsfly: Discover Y1 Frodo B3 Smeagol

55) Chivenger: Sacrifice R1 Bilbo
Attack G2 Samwise

56) ladybugsfly: Sacrifice G2 Samwise
Build Y2 Smeagol
Build Y2 Frodo

57) Chivenger: Trade B3 Y3 Samwise

58) ladybugsfly: Sacrifice Y3 Ladybugsfly
Move G1 Samwise Frodo
Move Y1 Smeagol Chivenger
Move Y2 Smeagol Chivenger

59) Chivenger: Sacrifice Y3 Samwise
Move R1 Bilbo Frodo
Move B1 Bilbo Frodo
Move G2 Samwise Frodo

60) ladybugsfly: Sacrifice R3 Ladybugsfly
Attack G2 Frodo
Attack B1 Frodo
Attack R1 Frodo

61) Chivenger: Attack Y2 Chivenger
	Chivenger: No. You may NOT have all the Yellow. 

62) ladybugsfly: Sacrifice Y2 Frodo
Discover Y1 Frodo B3 Baggins
Move Y1 Baggins Chivenger
Catastrophe Chivenger Y
	ladybugsfly: Not waiting for a 1-2 punch this time.

63) Chivenger: Build G1 Chivenger

64) ladybugsfly: Trade G1 B1 Frodo
	Chivenger: Glad I saw that move from two segments away. Now I feel better. You?
	Chivenger: Guessing you can still discover and move, right? So not so helpful after all. 

65) Chivenger: Trade G1 Y1 Chivenger
	ladybugsfly: Wasn’t the plan, but had to be offensive to be defensive.
	Chivenger: Oops. Didn't see that coming. Now I am in trouble. 

66) ladybugsfly: Trade G2 Y2 Frodo
	Chivenger: Query, if I have two ships in a sector, can I sacrifice an R3 make two attacks, then make that third attack with one of the two ships?
	ladybugsfly: When you sacrifice a ship, that ship is destroyed and can’t use that power, but any other ship in the system can use the sacrificed power any number of times available.
	ladybugsfly: To directly answer the question, no, because the r3 couldn’t have made the first attack. You can only have attacked with a ship size you already have, meaning you can’t acquire something bigger to use the third attack with.

67) Chivenger: Build R1 Chivenger

68) ladybugsfly: Build B1 Frodo
	Chivenger: The R3 was just providing the attacks. I had two other ships to make the attacks. My question was if one of the other two ships could make a second attack or if it was one ship make three successive attacks. 

69) Chivenger: Trade R2 Y2 Chivenger
	Chivenger: It really is an elegant game. Not quite sure of the endgame here But I look forward to seeing it and 

70) ladybugsfly: Move B1 Frodo Chivenger
	ladybugsfly: Oh, yup! One ship can totally make all three.

71) Chivenger: Trade G3 R3 Chivenger

72) ladybugsfly: Sacrifice Y2 Frodo
Move B1 Frodo Chivenger
Move B1 Frodo Chivenger
Catastrophe Chivenger B



34108)
Variants: "Hard time"
Started: 2018.5.3, Ended: 2018.6.3
Participants: SilentTitan (S), Broccoli_Commander (N)
Winner: SilentTitan

1) Broccoli_Commander: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld G3 B2 Y3

3) Broccoli_Commander: Build G1 Broccoli_commander

4) SilentTitan: Build Y1 Silenttitan

5) Broccoli_Commander: Build G1 Broccoli_commander

6) SilentTitan: Build Y1 Silenttitan

7) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry

8) SilentTitan: Discover Y1 Silenttitan R1 Sol

9) Broccoli_Commander: Build G1 Broccoli_commander

10) SilentTitan: Build Y2 Silenttitan

11) Broccoli_Commander: Build G2 Blueberry

12) SilentTitan: Trade Y3 G3 Silenttitan

13) Broccoli_Commander: Trade G2 Y2 Blueberry

14) SilentTitan: Discover Y1 Silenttitan R1 Sole

15) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower

16) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y3 Sole
Build Y3 Silenttitan

17) Broccoli_Commander: Build G2 Blueberry

18) SilentTitan: Trade Y3 G3 Silenttitan



33964)
Variants: "Hard time"
Started: 2018.5.3, Ended: 2018.5.9
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: Homeworld G1 B3 R3
	wil: all settled in?

2) Trydnt: Homeworld B2 R1 G3

3) wil: Build R1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: Build R1 Wil

6) Trydnt: Build G1 Trydnt

7) wil: Trade R3 G3 Wil

8) Trydnt: Trade G3 Y3 Trydnt

9) wil: Build G2 Wil

10) Trydnt: Sacrifice Y3 Trydnt
Discover G1 Trydnt Y3 Y3
Discover G1 Y3 Y2 Y2
Move G1 Y2 Wil
Catastrophe Wil G
	wil: lol


11) wil: T R1 G1 Wil

12) Trydnt: Build G1 Trydnt
	wil: Too much fun

13) wil: B G2 Wil

14) Trydnt: Build G2 Trydnt

15) wil: Build G2 Wil

16) Trydnt: Trade G2 Y2 Trydnt

17) wil: Trade G2 Y2 Wil

18) Trydnt: Discover G1 Trydnt Y3 Y3

19) wil: Trade G1 B1 Wil

20) Trydnt: Build Y1 Trydnt

21) wil: Build R1 Wil

22) Trydnt: Trade Y1 B1 Trydnt

23) wil: Build R2 Wil

24) Trydnt: Move B1 Trydnt Y3

25) wil: Discover R2 Wil Y2 Y2

26) Trydnt: Build G1 Trydnt

27) wil: Move R2 Y2 Y3

28) Trydnt: Discover B1 Y3 Y2 Y2

29) wil: Attack G1 Y3

30) Trydnt: Sacrifice G1 Trydnt
Build B1 Y2

31) wil: Move B1 Wil Y2

32) Trydnt: Discover B1 Y2 G3 G3

33) wil: Move R2 Y3 Y2
	wil: oops, I didn't mean to move an attack ship in...I meant to go visit my cousins...

34) Trydnt: Build B2 G3

35) wil: Move R2 Y2 G3

36) Trydnt: Build B2 G3

37) wil: Attack B2 G3

38) Trydnt: Sacrifice G1 Trydnt
Build B3 Y2

39) wil: Sacrifice G1 Y3
Build B3 Y2
Catastrophe Y2 B
	wil: me thinks you might have pulled the trigger a tad early...

40) Trydnt: Build B1 G3
Catastrophe G3 B

41) wil: B R2 G3

42) Trydnt: Trade Y2 G2 Trydnt
	wil: now your turn...  

43) wil: S Y2 Wil
M R2 G3 Trydnt
M R2 G3 Trydnt
	wil: We both had the blues, but we ain't got the blued no Mo, oh yeah,
...

44) Trydnt: Trade G2 R2 Trydnt
Catastrophe Trydnt R

	wil: You may join us by your own free will and we will treat you as one of our own.... Or...
	Trydnt: you seem to be making a large effort not to let the game go to long these days haha
	wil: me?  who catastrphed early?

	Trydnt: there was no way out of that. If I took a r2 you then take it back and we're in an endless cycle. if I grew a g1 you sacrifice an r2 and use the other to take both.
	wil: Yeah, I was almost going to buiding to gain a Queen when I saw the quick way out...
	wil: I never looked at the last layout till now... lol..  I don't believe I've ever seen anything like this!!  
	Draw5PlayAll: I saw one with 34 pieces in the bank


34051)
Variants: "Hard time"
Started: 2018.5.6, Ended: 2018.5.19
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: Homeworld B2 G1 Y3

2) Trydnt: Homeworld G3 R2 B3

3) wil: Build Y1 Wil

4) Trydnt: Build B1 Trydnt

5) wil: Build Y1 Wil

6) Trydnt: Trade B1 Y1 Trydnt

7) wil: Trade Y1 G1 Wil

8) Trydnt: Build Y1 Trydnt

9) wil: Build Y2 Wil

10) Trydnt: Build Y2 Trydnt

11) wil: Discover Y1 Wil G3 G3

12) Trydnt: Discover Y1 Trydnt G1 G1

13) wil: Build G2 Wil

14) Trydnt: Discover Y2 Trydnt B1 B1

15) wil: Discover G2 Wil Y3 Y3

16) Trydnt: Discover Y2 B1 B3 B3

17) wil: Discover Y2 Wil B3 Be3

18) Trydnt: Trade Y2 G2 B3

19) wil: T G1 R1 Wil

20) Trydnt: Build G1 B3

21) wil: Build G2 Y3

22) Trydnt: Trade G1 R1 B3

23) wil: Discover G2 Y3 B1 B1

24) Trydnt: Build B1 Trydnt

25) wil: B R1 Wil

26) Trydnt: Build B1 Trydnt

27) wil: B R2 Wil

28) Trydnt: Sacrifice Y1 Trydnt
Move R1 B3 Wil
Catastrophe Wil R

29) wil: Build Y1 G3

30) Trydnt: Trade B3 Y3 Trydnt

31) wil: Build Y2 Wil

32) Trydnt: Build Y2 G1

33) wil: Trade Y2 R2 Wil

34) Trydnt: Build Y2 Trydnt

35) wil: Build R1 Wil

36) Trydnt: Trade B1 R1 Trydnt

37) wil: T R1 B1 Wil

38) Trydnt: Build B2 Trydnt

39) wil: Move B1 Wil G3 G3

40) Trydnt: Move B1 Trydnt G1

41) wil: S G2 Y3
B Y3 Be3
B G1 B1

42) Trydnt: Sacrifice Y2 Trydnt
Move Y2 G1 Be3
Move Y1 G1 Be3
Catastrophe Be3 Y

43) wil: S Y1 G3
M G1 B1 B3

44) Trydnt: Build R1 Trydnt

45) wil: B R1 Wil

46) Trydnt: Sacrifice R1 Trydnt
Attack G1 B3

47) wil: M R2 Wil G3

48) Trydnt: Build Y1 Trydnt

49) wil: B G2 B1

50) Trydnt: Sacrifice Y1 Trydnt
Discover B1 G1 G3 G33

51) wil: B Y1 G3

52) Trydnt: Trade G1 Y1 B3

53) wil: M Y1 G3 B1

54) Trydnt: Build Y2 B3

55) wil: Discover G2 B1 Y3 Y3
	wil: Made impossibly stupid move in tourney and lost.

56) Trydnt: Sacrifice G2 B3
Build B2 Trydnt
Build B3 G33

57) wil: B B3 G3
	Trydnt: no matter how good you get it happens from time to time haha

58) Trydnt: Trade B1 R1 G33
	wil: You'll not beleive what i did...I had put in my notes block my next intended move...and when it came up...I just cut and pasted it in...without even looking at what he had done... I was thinking about ten different things..just took a break from temple building and just cntrl c, v, submit...and went back to working on the project...sheesh...shear stupidity

59) wil: B Y2 G3
	Trydnt: the best laid plans of mice and men

60) Trydnt: Sacrifice Y2 B3
Move B3 G33 B1
Move B3 B1 Y3

61) wil: D G2 Y3 Y2 Y2

62) Trydnt: Build Y2 Trydnt

63) wil: B G1 B1

64) Trydnt: Discover Y2 Trydnt B1 Bee1
	Trydnt: you weren't planning on using that were you?

65) wil: B R2 Wil
	wil: Nah, I used the other one.

66) Trydnt: Build R3 G33

67) wil: S G2 Y2
B Y2 Wil
B R3 G3

68) Trydnt: Move Y2 Bee1 B3

69) wil: M R3 G3 B1

70) Trydnt: Sacrifice Y3 Trydnt
Move Y1 B3 Wil
Move Y2 B3 Wil
Catastrophe Wil Y
Move B3 Y3 Wil

71) wil: S Y2 G3
M B3 G3 Wil
M B1 G3 Wil
C Wil B

72) Trydnt: Trade B2 Y2 Trydnt

73) wil: M Y1 G3 Wil

74) Trydnt: Build Y1 Trydnt

75) wil: M R1 Wil Trydnt
	wil: Forcing me to kill half the home team, cut off my own leg..  And then you kill me...sheesh

76) Trydnt: Sacrifice Y1 Trydnt
Move R3 G33 Wil

77) wil: B R3 Wil
	wil: Look a mosquito

78) Trydnt: Attack R3 Wil

79) wil: S Y1 B1
M R2 G3 Wil
C Wil R

80) Trydnt: Move Y2 Trydnt Wil

81) wil: B R2 Trydnt
C Trydnt R

82) Trydnt: Sacrifice R1 G33
Attack Y1 Wil

	wil: If one is going to lose....make it look close.
	Trydnt: words to live by


34111)
Variants: "Hard time"
Started: 2018.5.6, Ended: 2018.5.18
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: Homeworld B2 R1 G3

2) Trydnt: Homeworld Y3 G2 B3

3) wil: Build G1 Wil

4) Trydnt: Build B1 Trydnt

5) wil: Build G1 Wil

6) Trydnt: Build B1 Trydnt

7) wil: Trade G1 R1 Wil

8) Trydnt: Discover B1 Trydnt B1 B1

9) wil: Trade G3 B3 Wil

10) Trydnt: Build B2 Trydnt

11) wil: Build B2 Wil

12) Trydnt: Trade B2 Y2 Trydnt

13) wil: Trade B3 Y3 Wil

14) Trydnt: Trade B1 G1 B1

15) wil: Build R1 Wil

16) Trydnt: Discover B1 Trydnt G1 G1

17) wil: Discover R1 Wil G3 G3

18) Trydnt: Build G2 B1

19) wil: Build R2 Wil

20) Trydnt: Trade G2 R2 B1

21) wil: Discover R2 Wil Y3 Y3

22) Trydnt: Build B1 G1

23) wil: B G2 Wil

24) Trydnt: Build B2 G1

25) wil: M B2 Wil G3

26) Trydnt: Build B3 Trydnt

27) wil: Build B3 G3

28) Trydnt: Sacrifice Y2 Trydnt
Move B1 G1 G3
Move B1 G1 G3
Catastrophe G3 B

29) wil: Build R2 G3

30) Trydnt: Build R3 B1

31) wil: Sacrifice G2 Wil
Build R3 Y3
Build R3 Wil

32) Trydnt: Move B3 Trydnt G1

33) wil: Trade R1 B1 Wil

34) Trydnt: Trade R2 Y2 B1

35) wil: B G2 Wil

36) Trydnt: Build R1 B1

37) wil: Sacrifice B1 Wil
Trade G2 B2 Wil

38) Trydnt: Build G2 B1

39) wil: D R3 Wil B3 B3

40) Trydnt: Trade B2 R2 G1

41) wil: S B2 Wil
T R3 G3 B3
T R3 G3 Y3

42) Trydnt: Build R3 G1

43) wil: S G3 Y3
B G2 B3
B R3 Y3
B G3 Wil

44) Trydnt: Sacrifice Y2 B1
Move R1 B1 Y3
Move R2 G1 Y3
Catastrophe Y3 R

45) wil: D G3 Wil Y3 Y3

46) Trydnt: Build R1 B1

47) wil: B Y1 Wil

48) Trydnt: Trade R1 Y1 B1

49) wil: T Y1 B1 Wil

50) Trydnt: Build Y1 B1

51) wil: S G3 B3
B G3 B3
B B1 Wil
B Y1 Wil

52) Trydnt: Build Y2 B1

53) wil: Move Y1 Wil G3

54) Trydnt: Sacrifice Y2 B1
Move B3 G1 Y3
Move B3 Y3 Wil
Catastrophe Wil B

55) wil: S G3 B3
B G3 B3
B Y2 G3
B Y2 Wil

56) Trydnt: Build B1 Trydnt

57) wil: D Y1 G3 B1 Be1

58) Trydnt: Trade B1 R1 Trydnt

59) wil: S G3 Y3
B G3 Wil
B Y2 Be1
B Y3 G3

60) Trydnt: Build R2 Trydnt

61) wil: D Y2 G3 B1 Bwon

62) Trydnt: Sacrifice G2 B1
Build R2 G1
Build R3 B1

63) wil: S Y3 G3
M Y2 Bwon Trydnt
M Y1 Be1 Trydnt
M Y2 Be1 Trydnt
C Trydnt Y

64) Trydnt: Trade R3 Y3 B1

65) wil: S Y3 Wil
M G3 B3 Trydnt
M G2 B3 Trydnt
M G3 Wil Trydnt
C Trydnt G



33993)
Started: 2018.5.6, Ended: 2018.7.9
Participants: Trydnt (S), MobyNostromo (N)
Winner: Trydnt

1) MobyNostromo: H B1 Y2 G3

2) Trydnt: Homeworld Y3 G2 B3

3) MobyNostromo: B G1 Mobynostromo

4) Trydnt: Build B1 Trydnt

5) MobyNostromo: B G1 Mobynostromo

6) Trydnt: Build B1 Trydnt

7) MobyNostromo: D G1 Mobynostromo Y3 Chrome

8) Trydnt: Discover B1 Trydnt Y1 Y1

9) MobyNostromo: T G1 Y1 Mobynostromo

10) Trydnt: Discover B1 Y1 G3 G3

11) MobyNostromo: B Y1 Mobynostromo

12) Trydnt: Build B2 G3

13) MobyNostromo: D G1 Chrome Y1 Brass

14) Trydnt: Trade B2 Y2 G3

15) MobyNostromo: D Y1 Mobynostromo G3 Emerald

16) Trydnt: Build B2 G3

17) MobyNostromo: M Y1 Mobynostromo G3

18) Trydnt: Trade B2 R2 G3

19) MobyNostromo: D Y1 G3 G1 Dust

20) Trydnt: Build B2 G3

21) MobyNostromo: T G3 R3 Mobynostromo

22) Trydnt: Build B2 Trydnt

23) MobyNostromo: B Y2 Emerald

24) Trydnt: Sacrifice Y2 G3
Move B2 G3 Dust
Discover R2 G3 B2 B2

25) MobyNostromo: M Y2 Emerald Mobynostromo

26) Trydnt: Build B3 G3

27) MobyNostromo: T Y2 G2 Mobynostromo

28) Trydnt: Build B3 G3

29) MobyNostromo: B G1 Mobynostromo

30) Trydnt: Trade B3 Y3 G3

31) MobyNostromo: B Y2 Emerald

32) Trydnt: Build B3 Dust

33) MobyNostromo: B G2 Brass

34) Trydnt: Trade B3 G3 Dust

35) MobyNostromo: T G1 R1 Mobynostromo

36) Trydnt: Build Y2 G3

37) MobyNostromo: M R1 Mobynostromo Emerald

38) Trydnt: Build B3 Dust

39) MobyNostromo: B Y3 Dust

40) Trydnt: Sacrifice R2 B2
Attack Y3 Dust
Attack Y1 Dust

41) MobyNostromo: B G1 Mobynostromo

42) Trydnt: Build B2 G3

43) MobyNostromo: S G2 Brass
B R1 Emerald
B R1 Emerald

44) Trydnt: Trade B3 R3 G3

45) MobyNostromo: S G2 Mobynostromo
B R2 Mobynostromo
B G2 Brass

46) Trydnt: Move B3 Dust Emerald

47) MobyNostromo: S Y2 Emerald
M R1 Emerald Brass
M R1 Emerald Brass

48) Trydnt: Build R2 G3

49) MobyNostromo: D R2 Mobynostromo B3 Aqua

50) Trydnt: Move G3 Dust Aqua

51) MobyNostromo: S Y1 Emerald
D R2 Aqua G2 Garden

52) Trydnt: Build Y1 G3

53) MobyNostromo: M R1 Brass G3

54) Trydnt: Sacrifice R2 G3
Attack R1 G3
Attack R1 Emerald

55) MobyNostromo: B R2 Brass

56) Trydnt: Discover Y1 Dust R3 R3



34109)
Started: 2018.5.6, Ended: 2018.6.18
Participants: ts52 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y2 G3

2) ts52: Homeworld Y1 B2 G3

3) Trydnt: Build G1 Trydnt

4) ts52: Build G1 Ts52

5) Trydnt: Trade G1 Y1 Trydnt

6) ts52: Trade G1 Y1 Ts52

7) Trydnt: Build Y2 Trydnt

8) ts52: Build G1 Ts52

9) Trydnt: Trade Y1 R1 Trydnt

10) ts52: Trade G1 R1 Ts52

11) Trydnt: Build G1 Trydnt

12) ts52: Build G1 Ts52

13) Trydnt: Trade G1 B1 Trydnt

14) ts52: Build G1 Ts52

15) Trydnt: Build B1 Trydnt
	ts52: Sorry for the delay!

16) ts52: Trade G1 B1 Ts52

17) Trydnt: Discover B1 Trydnt G1 G1

18) ts52: Discover B1 Ts52 G3 Kermit

19) Trydnt: Build B2 Trydnt

20) ts52: Move Y1 Ts52 Kermit

21) Trydnt: Move Y2 Trydnt G1

22) ts52: Discover G1 Ts52 B3 Grover

23) Trydnt: Discover B2 Trydnt Y1 Y1

24) ts52: Build G1 Ts52

25) Trydnt: Build G2 Trydnt

26) ts52: Build G2 Grover

27) Trydnt: Sacrifice G2 Trydnt
Build B2 G1
Build B3 Y1

28) ts52: Sacrifice G3 Ts52
Build G2 Grover
Build G2 Ts52
Build G3 Ts52

29) Trydnt: Trade B2 R2 G1

30) ts52: Build B2 Kermit

31) Trydnt: Move B3 Y1 Grover

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Kermit
Build Y3 Kermit

33) Trydnt: Build Y3 G1

34) ts52: Discover G2 Ts52 Y3 Bigbird

35) Trydnt: Move Y2 G1 Kermit
Catastrophe Kermit Y

36) ts52: Trade B2 Y2 Kermit

37) Trydnt: Build B2 G1

38) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Ts52
Build R2 Ts52

39) Trydnt: Sacrifice Y3 G1
Move R2 G1 Grover
Move R2 Grover Ts52
Move B3 Grover Ts52
Catastrophe Ts52 R

40) ts52: Trade G3 Y3 Ts52

41) Trydnt: Sacrifice R1 Trydnt
Attack Y3 Ts52

42) ts52: Build G3 Ts52
	ts52: Wow. I did not see that coming. Well played!

43) Trydnt: Trade B2 R2 G1

44) ts52: Sacrifice Y2 Kermit
Move B1 Kermit Ts52
Move G1 Grover Ts52
	Trydnt: thanks good game

45) Trydnt: Sacrifice R2 G1
Attack G3 Ts52
Attack B1 Ts52

46) ts52: Trade G1 R1 Ts52

47) Trydnt: Sacrifice G3 Ts52
Build Y1 Ts52
Build Y2 Ts52
Build B2 Ts52
Catastrophe Ts52 B
Catastrophe Ts52 Y



34130)
Started: 2018.5.12, Ended: 2018.5.15
Participants: ladybugsfly (S), Chivenger (N)
Winner: ladybugsfly

1) Chivenger: Homeworld Y2 B1 G3

2) ladybugsfly: Homeworld G3 Y2 B3

3) Chivenger: Build G1 Chivenger

4) ladybugsfly: Build B1 Ladybugsfly

5) Chivenger: Trade G1 Y1 Chivenger

6) ladybugsfly: Discover B1 Ladybugsfly G1 Kaylee

7) Chivenger: Build Y1 Chivenger

8) ladybugsfly: Build B1 Kaylee

9) Chivenger: Build G1 Chivenger

10) ladybugsfly: Build B2 Kaylee
	Chivenger: Interesting Take the B1 out of the bank. Nice. 

11) Chivenger: Discover Y1 Chivenger Y3 Simon

12) ladybugsfly: Trade B2 Y2 Kaylee

13) Chivenger: Build G1 Chivenger

14) ladybugsfly: Build B2 Kaylee
	ladybugsfly: Build me some b2s and flip ‘em to other colors
	Chivenger: Can't. Don't have a b ship to build b with. 

15) Chivenger: Move G1 Chivenger Simon
	ladybugsfly: *my strategy: b2 engine

16) ladybugsfly: Trade B2 G2 Kaylee

17) Chivenger: Discover G1 Chivenger B3 Jayne

18) ladybugsfly: Discover B1 Kaylee G3 Inara

19) Chivenger: Build G2 Jayne

20) ladybugsfly: Build B2 Inara

21) Chivenger: Trade G2 B2 Jayne

22) ladybugsfly: Sacrifice Y2 Kaylee
Move B1 Inara Chivenger
Move B2 Inara Chivenger

23) Chivenger: Build G2 Chivenger

24) ladybugsfly: Sacrifice G2 Kaylee
Build B2 Chivenger
Build B3 Kaylee
Catastrophe Chivenger B

25) Chivenger: Sacrifice G2 Chivenger
Build G2 Jayne
Build G2 Simon

26) ladybugsfly: Trade B3 Y3 Kaylee
	Chivenger: Yeah, I earned that lesson. Didn't see the end game. Thought I had a little more time. I was wrong. 


27) Chivenger: Discover Y1 Simon Y1 Book

28) ladybugsfly: Build Y2 Kaylee

29) Chivenger: Move Y1 Chivenger Jayne

30) ladybugsfly: Move Y3 Kaylee Chivenger
	Chivenger: darn. Two turns and I am ded. Don't see a way out of it. 
	Chivenger: No wait. I do. 

31) Chivenger: Trade G2 R2 Jayne

32) ladybugsfly: Build Y3 Kaylee

33) Chivenger: Sacrifice R2 Jayne
Attack Y3 Chivenger
Pass

34) ladybugsfly: Move Y3 Kaylee Chivenger

35) Chivenger: Sacrifice Y3 Chivenger
Move G1 Jayne Book
Move G2 Simon Book
Move G1 Simon Book

36) ladybugsfly: Sacrifice B1 Kaylee
Trade Y3 R3 Chivenger

37) Chivenger: Move G2 Book Chivenger
	Chivenger: Oops. Almost missed that one trying to be smart with the attacks. 
	ladybugsfly: I actually thought it was incredibly clever. ;) Had you waited one turn to use the r2, you would have prevented me from moving in again by also threatening whatever else I move in. First one to red always has the advantage. Had I changed my yellow to red, you would have just taken it then.

38) ladybugsfly: Attack G3 Chivenger
	ladybugsfly: Although, I just saw what you saw with all four yellows, after you saw it. Teaching moment for me!



34113)
Started: 2018.5.13, Ended: 2018.8.12
Participants: MobyNostromo (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) MobyNostromo: H B1 Y2 G3

3) Draw5PlayAll: Homeworld B1 G2 B3 *

4) MobyNostromo: B G1 Mobynostromo
	Draw5PlayAll: Prepare to be annihilated.
	MobyNostromo: Ha, ha! I'll try my best to prepare, but I'm not promising anything...

5) Draw5PlayAll: Build B1 Draw5playall

6) MobyNostromo: B G1 Mobynostromo

7) Draw5PlayAll: Trade B3 Y3 Draw5playall

8) MobyNostromo: D G1 Mobynostromo Y3 Gold

9) Draw5PlayAll: Build B2 Draw5playall

10) MobyNostromo: T G3 B3 Mobynostromo

11) Draw5PlayAll: Discover B2 Draw5playall Y3 Niceidea

12) MobyNostromo: B G1 Gold

13) Draw5PlayAll: Build B2 Draw5playall

14) MobyNostromo: B G2 Mobynostromo

15) Draw5PlayAll: Trade B2 R2 Draw5playall

16) MobyNostromo: B G2 Gold

17) Draw5PlayAll: Move R2 Draw5playall Gold

18) MobyNostromo: S G2 Gold
B G2 Mobynostromo
B G3 Gold

19) Draw5PlayAll: Attack G1 Gold

20) MobyNostromo: T G2 R2 Mobynostromo

21) Draw5PlayAll: Build G2 Gold
Catastrophe Gold Green

22) MobyNostromo: D G2 Mobynostromo B3 Ultrablue

23) Draw5PlayAll: Build B2 Draw5playall

24) MobyNostromo: B G1 Ultrablue

25) Draw5PlayAll: Discover B2 Draw5playall G3 Dos

26) MobyNostromo: T G2 B2 Ultrablue

27) Draw5PlayAll: Build B3 Dos

28) MobyNostromo: T B3 R3 Mobynostromo

29) Draw5PlayAll: Build B3 Dos

30) MobyNostromo: D R2 Mobynostromo G3 Emerald

31) Draw5PlayAll: Sacrifice B2 Niceidea
Trade B3 R3 Dos
Trade B3 Y3 Dos

32) MobyNostromo: B B2 Ultrablue

33) Draw5PlayAll: Move B1 Draw5playall Ultrablue
Catastrophe Ultrablue Blue

34) MobyNostromo: B G1 Mobynostromo

35) Draw5PlayAll: Build B1 Dos

36) MobyNostromo: D G1 Mobynostromo B3 Sky

37) Draw5PlayAll: Build R1 Dos

38) MobyNostromo: T G1 Y1 Sky

39) Draw5PlayAll: Build B2 Dos

40) MobyNostromo: T R3 G3 Mobynostromo

41) Draw5PlayAll: Discover B2 Dos G2 Growth

42) MobyNostromo: M G1 Mobynostromo Sky

43) Draw5PlayAll: Build B2 Growth

44) MobyNostromo: B G1 Sky

45) Draw5PlayAll: Build B3 Growth

46) MobyNostromo: B G1 Mobynostromo

47) Draw5PlayAll: Build B3 Dos
	Draw5PlayAll: AFAICT I have mate in 6, maybe 7.

48) MobyNostromo: S G3 Mobynostromo
B G2 Sky
B G3 Mobynostromo
B Y1 Sky

49) Draw5PlayAll: Trade B3 R3 Growth

50) MobyNostromo: M Y1 Sky Draw5playall

51) Draw5PlayAll: Move R3 Dos Draw5playall

52) MobyNostromo: S G2 Sky
B Y1 Draw5playall
B Y2 Draw5playall
C Draw5playall Y

53) Draw5PlayAll: Build B3 Growth

54) MobyNostromo: S G3 Mobynostromo
B G2 Sky
B G3 Mobynostromo
B Y1 Sky
	Draw5PlayAll: Tricky, but you lost more than I did...

55) Draw5PlayAll: Trade B2 Y2 Growth

56) MobyNostromo: S G3 Mobynostromo
B G3 Mobynostromo
B R1 Emerald
B R1 Emerald

57) Draw5PlayAll: Sacrifice Y2 Growth
Move R1 Dos Growth
Move R1 Growth Emerald
Catastrophe Emerald Red

58) MobyNostromo: T G2 B2 Sky

59) Draw5PlayAll: Move B3 Dos Mobynostromo

60) MobyNostromo: S G3 Mobynostromo
B G2 Mobynostromo
B G3 Sky
B Y1 Sky

61) Draw5PlayAll: Sacrifice R2 Gold
Attack G2 Mobynostromo
Attack G1 Mobynostromo



34138)
Variants: "Unrated, Hard time"
Started: 2018.5.14, Ended: 2018.6.5
Participants: Felix (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y2 B1 G3

2) Felix: Homeworld B1 G3 B3 *

3) Babamots: Build G1 Babamots
	Felix: Let's see if I can pull this off. I rarely do!

4) Felix: Build B1 Felix

5) Babamots: Build G1 Babamots

6) Felix: Trade B3 Y3 Felix

7) Babamots: Discover G1 Babamots B3 Vulcan

8) Felix: B B2 Felix
	Babamots: It's an interesting opening strategy, and not one I've seen. Looks good so far.
	Draw5PlayAll: I am also doing it against MobyNostromo except that I did a small universe too.

9) Babamots: Build G1 Babamots
	Felix: I've had it used against me to great effect several times but I rarely seem to be able to pull it off properly. I just hate having green in my homeworld after the opening. It's a quick start, but not having a large green slows down my build potential in the mid game

10) Felix: Trade B2 G2 Felix

11) Babamots: Discover G1 Babamots B3 Romulus

12) Felix: Build B2 Felix

13) Babamots: Build G2 Vulcan

14) Felix: Discover G2 Felix Y2 Gronk

15) Babamots: Sacrifice G3 Babamots
Build G2 Vulcan
Build G3 Romulus
Build G3 Babamots

16) Felix: Move G2 Gronk Vulcan
Catastrophe Vulcan Green

17) Babamots: Build G1 Babamots

18) Felix: Discover B2 Felix G2 Blink

19) Babamots: Discover G1 Babamots B3 Kurl

20) Felix: B B2 Blink

21) Babamots: Sacrifice G3 Babamots
Build G2 Kurl
Build G2 Kurl
Build G3 Babamots

22) Felix: Build B2 Felix

23) Babamots: Discover G1 Babamots B3 Kesprytt

24) Felix: Build Y1 Felix

25) Babamots: Trade G1 Y1 Kurl

26) Felix: Trade B2 Y2 Blink

27) Babamots: Sacrifice G3 Romulus
Build G1 Babamots
Build Y1 Kurl
Build G3 Romulus

28) Felix: Build B2 Blink

29) Babamots: Move Y1 Kurl Blink

30) Felix: Trade B2 R2 Blink

31) Babamots: Trade G2 R2 Kurl

32) Felix: Attack Y1 Blink

33) Babamots: Sacrifice G3 Romulus
Build G2 Kesprytt
Build Y2 Kurl
Build G3 Romulus

34) Felix: Move Y1 Blink Kurl

35) Babamots: Attack Y1 Kurl

36) Felix: B Y3 Blink

37) Babamots: Sacrifice Y2 Kurl
Move Y1 Kurl Blink
Move Y1 Kurl Blink
Catastrophe Blink Y

38) Felix: B B2 Blink

39) Babamots: Trade G1 Y1 Romulus

40) Felix: M Y1 Felix Blink

41) Babamots: Move G3 Romulus Blink

42) Felix: M R2 Blink Romulus

43) Babamots: Sacrifice G3 Babamots
Build R1 Kurl
Build G1 Kurl
Build G3 Babamots

44) Felix: A Y1 Romulus

45) Babamots: Sacrifice R2 Kurl
Attack B2 Blink
Attack B2 Blink

46) Felix: B Y1 Felix

47) Babamots: Trade B2 Y2 Blink

48) Felix: D B2 Felix B2 Remnant

49) Babamots: Sacrifice G3 Babamots
Build R1 Kurl
Build R1 Kurl
Build G3 Babamots
	Felix: This isn't looking good for me!

50) Felix: D Y1 Felix Y2 Savant

51) Babamots: Build Y3 Blink

52) Felix: B Y3 Blink
C Blink Yellow

53) Babamots: Sacrifice G1 Kesprytt
Build G1 Kurl

54) Felix: B Y1 Felix

55) Babamots: Sacrifice G2 Kesprytt
Build B3 Blink
Build G2 Blink

56) Felix: B Y2 Felix

57) Babamots: Trade B3 Y3 Blink

58) Felix: Move Y1 Felix Remnant

59) Babamots: Sacrifice G3 Babamots
Build Y3 Blink
Build B3 Blink
Build G3 Babamots

60) Felix: M Y2 Felix Blink

61) Babamots: Trade Y3 R3 Blink
	Babamots: I'm positive that's the biggest fleet I've ever had in a single system. Just needs some red to be really scary.

62) Felix: Build Y3 Felix
	Felix: I'm sure you'll get some soon enough!

63) Babamots: Sacrifice Y3 Blink
Move R3 Blink Felix
Move G3 Blink Felix
Move B3 Blink Felix
	Babamots: And you'd probably better get some more :-)

64) Felix: Sacrifice R2 Romulus
Attack B3 Felix
Attack G3 Felix
	Felix: Workin' on it!

65) Babamots: Attack G3 Felix
	Babamots: I had a panicked flashback to our semifinal game where I goofed up the final push. I think I've got this though.

66) Felix: Build Y3 Felix
	Babamots: All the same, I probably shouldn't play while I'm scrambling to finish a grant application :-P

67) Babamots: Attack Y3 Felix
	Felix: I dare say you do have me! I probably shouldn't play when I just had a baby a week ago and I'm moving to a new house this friday!

68) Felix: Trade B2 R2 Remnant

69) Babamots: Sacrifice R3 Felix
Attack Y3 Felix
Attack Y3 Felix
Attack B3 Felix

70) Felix: Build B2 Felix
	Babamots: Congratulations! Felix Jr. right? I guess to make it fair I should have a child during the next tournament. Sorry it's such a stressful time for you.
	Felix: Thank you! It's busy, but not stressful! More joyous than anything :)

71) Babamots: Catastrophe Felix B
Pass

	Felix: Well done!
	Babamots: Thanks. I'd like to wait until maybe Sunday to start the next tournament game. I've got this application to do tonight and then a weekend conference to prepare for. That would give you a chance to settle into the new place a bit too. That sound alright?
	Felix: Sounds fine to me. Just challenge me whenever you're ready! Looking forward to it.
	Draw5PlayAll: So wait... what happened?
	Babamots: According to Andy, you are allowed to abandon your homeworld if you eliminate your opponent by doing it (and the result is a draw). Felix would have liked to make such a move, but SDG won't allow it. For the purpose of the tournament, we're calling it a draw (even though SDG will show that I won).
	Draw5PlayAll: Ok... so you two have to rematch for the finale?
	Babamots: Yes, we just finished our additional game this morning. It's game #34209 if you'd like to study it.


34139)
Variants: "Unrated, Hard time"
Started: 2018.5.14, Ended: 2018.6.2
Participants: Babamots (S), Felix (N)
Winner: Babamots

1) Felix: Homeworld R1 B3 G3

2) Babamots: Homeworld Y2 B1 G3
	Felix: And they're off!
	Babamots: Good luck! You'll notice that my first move in the other game is different your first move in this one, so I can't just make you play yourself and ensure that I win a game :-P.

3) Felix: Build G1 Felix

4) Babamots: Build G1 Babamots
	Felix: Haha, much appreciated!

5) Felix: Trade G1 B1 Felix

6) Babamots: Build G1 Babamots

7) Felix: Build B1 Felix

8) Babamots: Discover G1 Babamots B3 Bajor

9) Felix: T B1 Y1 Felix
	Draw5PlayAll: I may be mistaken, but I think that if such a thing happened, the "victim" could do something involving the clock and end the scheme before it gets off the ground.

10) Babamots: Trade G1 B1 Babamots
	Babamots: Ooh, run the time down to just an hour and then make a move just before time ran out so the opponent would only have seconds. Devious.

11) Felix: Build B2 Felix

12) Babamots: Build B2 Babamots
	Felix: Doesn't the opponent still get 7 days, or however much time they had before, even if the opponent runs down the clock?

13) Felix: Discover B2 Felix B2 Bleeb

14) Babamots: Trade B1 R1 Babamots
	Babamots: OK, so say Alice is playing two simultaneous games with Bob. Alice is basically cheating by transferring Bob's moves from game 1 into game 2 and vice versa (she waits for Bob to make a move in game 1 and then makes an identical move in game 2 etc.). Let's say they've played enough moves that all the timers are maxed out (say at 7 days).

Bob gets annoyed and decides to put a stop to it. It's Bob's turn in game 1 and Alice's turn in game 2. These two timers are ticking away. Bob waits until there are only a few seconds before timeout. He is about to timeout in game 1, Alice is about to timeout in game 2. Then Bob finally makes his move in game 1, and Alice only has a few seconds to see his move and copy it over to game 2 before her time runs out. In case she doesn't make it, Bob should be ready to hit the "force resignation" button. If she does move in time, Bob can just do it again the next move. It would be tiresome for both players, but I think it's harder on Alice, who has to keep refreshing at the end of the timer to see if Bob has moved yet.

15) Felix: Build Y1 Felix
	Felix: Ohh, I see. Makes sense. That would be an awful lot of trouble to cheat, haha. Major props to whoever would have that much patience!

16) Babamots: Build R1 Babamots

17) Felix: B Y1 Felix
	Draw5PlayAll: But what if neither one can really guarantee that they get on in time? I think such a thing would benefit Bob if "hard time" was on, and Alice would otherwise.
	Draw5PlayAll: Actually, wait. I forgot that Bob knows that the timer expires at end of hour, so he can simply make his move at XX:59:20 (or later depending on internet speed), and refresh the other game he wants Alice to lose in at XY:00:00.

Weird. Maybe someone should try this in Martian chess or a game like that. Anyone up for the challenge?

18) Babamots: Build R2 Babamots

19) Felix: M Y1 Felix Bleeb

20) Babamots: Trade R2 Y2 Babamots

21) Felix: Sacrifice G3 Felix
Build Y2 Bleeb
Build Y3 Bleeb
Build Y3 Felix

22) Babamots: Move Y2 Babamots Bajor

23) Felix: Trade Y2 R2 Bleeb

24) Babamots: Build Y2 Bajor

25) Felix: Trade Y3 G3 Felix

26) Babamots: Move Y2 Bajor Bleeb

27) Felix: Sacrifice Y3 Bleeb
Move B2 Bleeb Bajor
Move B2 Bajor Babamots
Discover Y1 Felix G2 Pinkros

28) Babamots: Attack B2 Babamots
	Felix: Nice move! You gave me a lot to think about and have sort of forced my hand.
	Babamots: It's sort of a Martian Chess type of move, offering a ship to the other player. Both of us want to get at the yellow but we already have too much in our systems. So, I like to push some more yellow at the other guy.
	Felix: I like to try and do the unexpected in situations like that. It usually ends up costing me the game, but hopefully I gave you something to think about here :)
	Babamots: Pretty interesting. I'll need to consider pros and cons carefully on this one.
	Babamots: Well, I sure wish I could look deeper at what each of my moves would do to the game, but I guess I'll just have to take my best guess.

29) Felix: S G3 Felix
B Y3 Felix
B Y3 Pinkros
B Y3 Bleeb

30) Babamots: Sacrifice R1 Babamots
Attack R2 Bleeb
	Felix: Don't worry. I don't know where my moves are going either! Guess we'll find out together :) also, my baby arrived! So have patience of my moves come a bit slow some days

31) Felix: S Y3 Bleeb
M B1 Felix Pinkros
M B1 Pinkros Bajor
M B1 Bajor Babamots
C Babamots Blue

32) Babamots: Build Y3 Bajor

33) Felix: S Y1 Felix
D Y1 Bleeb G1 Grook

34) Babamots: Discover Y3 Bajor G2 Pakled
	Babamots: Looking pretty grim. I don't mind too much because I think your y3 sacrifice (turn 14) that started my downfall was so clever. It doesn't feel like I made a huge mistake this time.

35) Felix: S Y3 Pinkros
M Y1 Pinkros Grook
M Y1 Grook Babamots
M Y1 Grook Babamots
	Babamots: Well, then again maybe I have a last-minute chance to stab you from the grave. I guess I'll wait and see what you come up with.

36) Babamots: Sacrifice Y2 Bleeb
Move G3 Babamots Felix
Move Y3 Pakled Felix
	Felix: No, I think I miscalculated... Well done! I was just one piece short.

37) Felix: A Y3 Felix
	Babamots: Now, while SDG doesn't allow self-elimination, it's not something I addressed properly in the tournament rules. I remember reading somewhere that Andy believed in allowing mutual elimination for a draw. If we get that ruling from an official source, do you feel like a rematch? Or have I been a slow enough pain to play against that you just want it to be over? :-P
	Babamots: It was on BGG:
https://boardgamegeek.com/article/21140352#21140352
	Felix: You haven't been a pain at all! I can leave it up to you as the tournament organizer, since it wasn't really addressed up front. Draws are always a bit sticky in homeworlds and aren't really clear in the rules. But since Andy said that mutual destruction is possible, I'm fine with a rematch!
	Felix: Technically I could call a catastrophe on you "during" my turn, but then my turn would end and I'd have no ships, so I think a draw seems reasonable here, if that's okay with you
	Babamots: SDG won't let you abandon your homeworld to make the move will it? Have you tried? And I can't remember if there is an "offer draw" button for HW. Do you have one?

38) Babamots: Sacrifice R2 Bleeb
Attack Y3 Felix
Attack Y3 Felix
	Felix: Nah, it won't let me move it anywhere, and I don't have a draw button either
	Felix: If the tournament is being played by SDG rules, then, I'll just take the loss, no worries
	Babamots: Since I wasn't careful enough with the tournament rules, a win for me here would certainly need an asterisk by it. A draw is the most sensible thing in this case. I was very reluctant to admit that for two reasons:

1) I'm quite emotionally invested. I'd really like to win :-D.

2) I don't personally like the "simultaneous elimination is a draw" ruling since it creates a weird exception in the rules (like allowing someone to move into check, but only when it checkmates the other player).
	Babamots: I'll mark it as a draw in the bracket, though I'm happy enough to take the win on SDG records.
	Babamots: I made a post about the draw on Facebook, so it must be official :-P.
	Felix: So in theory, I just shouldn't have been able to move my yellow at all, just like SDG handles it. Basically if a move ends up in your own destruction, you can't make it. I do think that's a cleaner way to play overall, but I guess we do need to abide by Andy's rules. As it is, it's a bit more like chess, where you must be careful to only attack when you're sure it won't end in a stalemate. Clearly, I failed to have that much forward thinking here!
	Babamots: In the next tournament, I think I'd like to say a draw can only be by move repetition or mutual agreement. Even if it's not how John and Andy play, I think it's got to be how most people play as evidenced by SDG's implementation.
	Draw5PlayAll: I tried asking Aaron to add a draw button to Homeworlds but there was either a delay or the message went unread.



34112)
Variants: "Hard time"
Started: 2018.5.19, Ended: 2018.5.23
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B2 Y1 G3

2) Trydnt: Homeworld B3 R2 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 Y1 Wil

6) Trydnt: Trade G1 Y1 Trydnt

7) wil: B Y2 Wil

8) Trydnt: Build Y2 Trydnt

9) wil: D Y1 Wil G3 G3

10) Trydnt: Discover Y1 Trydnt B1 B1

11) wil: B G1 Wil

12) Trydnt: Build G1 Trydnt

13) wil: D G1 Wil Y3 Y3

14) Trydnt: Trade G1 B1 Trydnt

15) wil: B Y2 G3

16) Trydnt: Sacrifice G3 Trydnt
Build Y3 Trydnt
Build Y3 B1
Build B1 Trydnt

17) wil: M Y2 G3 B1

18) Trydnt: Trade Y1 R1 B1

19) wil: D Y2 B1 G2 G2

20) Trydnt: Sacrifice Y2 Trydnt
Move Y3 B1 G3
Move Y3 G3 Wil

21) wil: B Y1 Wil
C Wil Y

22) Trydnt: Trade B1 G1 Trydnt
	wil: Sometime.Wednesday morning I'll be gone...and not back until hmmm tuesdee or Wednesday the following...time to burn!

23) wil: B G1 Y3

24) Trydnt: Build G2 Trydnt
	Trydnt: very jealous. I still haven't found a job so looks like I wont be able to make it to the UK burn in June. Ticket transfer window closes Wednesday :(
	Trydnt: which one is this one? PDF?
	wil: Yeah, PDF...  Send them a message, ask for a hardship.ticket, offer to ranger or dpw. Or whatever..exchange hours for.ticket?

25) wil: B G2 Wil

26) Trydnt: Sacrifice Y3 Trydnt
Move B1 Trydnt B1
Move B1 B1 Wil
Discover R1 B1 G3 Ohgeez3

	wil: Nice


34154)
Variants: "Hard time"
Started: 2018.5.19, Ended: 2018.6.4
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B2 R1 G3

2) Trydnt: Homeworld Y3 B2 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 R1 Wil

6) Trydnt: Trade G1 R1 Trydnt

7) wil: B R2 Wil

8) Trydnt: Build R2 Trydnt

9) wil: T R2 G2 Wil

10) Trydnt: Discover R1 Trydnt G1 G1

11) wil: B G1 Wil

12) Trydnt: Build R2 Trydnt

13) wil: T G1 Y1 Wil

14) Trydnt: Trade R2 Y2 Trydnt

15) wil: D R1 Wil G3 G3

16) Trydnt: Build R2 Trydnt

17) wil: B Y1 Wil

18) Trydnt: Move Y2 Trydnt G1

19) wil: D G2 Wil B3 B3

20) Trydnt: Build G1 Trydnt

21) wil: B G1 Wil

22) Trydnt: Trade G1 B1 Trydnt

23) wil: B G1 B3

24) Trydnt: Build G2 Trydnt

25) wil: M Y1 Wil B3

26) Trydnt: Discover G2 Trydnt B1 B1

27) wil: B Y1 Wil

28) Trydnt: Trade G2 Y2 B1

29) wil: S G3 Wil
B G2 B3
B G2 Wil
B G3 Wil

30) Trydnt: Discover R2 Trydnt B1 Bee1

31) wil: D G2 Wil Y3 Y3

32) Trydnt: Move B1 Trydnt G1

33) wil: S Y1 Wil
D G2 B3 Y1 Y1

34) Trydnt: Build B2 G1

35) wil: S G3 Wil
B G3 Wil
B Y2 Wil
B Y3 B3

36) Trydnt: Move B2 G1 G3

37) wil: S Y1 B3
D R1 G3 Y1 Why1

38) Trydnt: Move Y2 B1 Y3

39) wil: S G2 Y3
B G2 Y1
B R2 Why1

40) Trydnt: Build R3 Trydnt

41) wil: M R1 Why1 Trydnt

42) Trydnt: Sacrifice R2 Trydnt
Attack R1 Trydnt
Pass

43) wil: T G2 R2 B3

44) Trydnt: Build R3 G1

45) wil: S G3 Wil
B G2 Y1
B R3 Why1
B G3 Wil

46) Trydnt: Build B1 G3

47) wil: M G2 Y1 Trydnt

48) Trydnt: Sacrifice R1 Trydnt
Attack G2 Trydnt

49) wil: S Y2 Wil
M G2 Y1 Trydnt
M G2 Y1 Trydnt
C Trydnt G

50) Trydnt: Trade R3 G3 Trydnt

51) wil: M R3 Why1 G3

52) Trydnt: Sacrifice Y2 Y3
Discover B1 G3 G2 G2
Discover B2 G3 Y1 Y2

53) wil: B G2 B3

54) Trydnt: Build G2 Trydnt

55) wil: S G3 Wil
B G3 Wil
B R1 Why1
B R3 B3

56) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B3 G2
Build B3 Y2

57) wil: T R3 Y3 B3

58) Trydnt: Sacrifice Y2 G1
Move B3 G2 B3
Move B1 G2 B3

59) wil: S Y3 B3
M Y3 B3 Bee1
M G2 B3 Why1
M G1 B3 Why1

60) Trydnt: Sacrifice B2 Y2
Trade G3 R3 Trydnt
Trade B3 G3 B3

61) wil: S R2 Why1
A B1 B3
A R2 Bee1

62) Trydnt: Discover B3 Y2 B3 Bee3

63) wil: S G3 Wil
B G2 Why1
B G3 Wil
B Y1 Wil

64) Trydnt: Sacrifice R1 G1
Attack R2 B3

65) wil: S G3 Wil
B Y2 Wil
B Y2 Bee1
B G3 Wil

66) Trydnt: Trade R3 Y3 G1

67) wil: S G3 Wil
B G3 Wil
B R1 Bee1
B R2 G3

68) Trydnt: Build Y2 G1

69) wil: S Y2 Wil
M R2 Bee1 Trydnt
M G1 Why1 Trydnt

70) Trydnt: Move Y3 G1 Trydnt

71) wil: S G2 Why1
B R3 Trydnt
B G2 Trydnt

72) Trydnt: Sacrifice R3 Trydnt
Attack R3 Trydnt
Attack R2 Trydnt
Attack G2 Trydnt

73) wil: S G3 Wil
B G3 Wil
B R3 Why1
B Y2 Wil

74) Trydnt: Sacrifice Y3 Trydnt
Move R2 Trydnt Why1
Move R2 B3 Why1
Catastrophe Why1 R
Discover G2 Trydnt R1 R1

75) wil: S G3 Wil
B G3 Wil
B R2 Bee1
B R2 Bee1

76) Trydnt: Trade B3 Y3 Bee3

77) wil: M R2 Bee1 Trydnt

78) Trydnt: Attack R2 Trydnt

79) wil: S Y2 Wil
M R2 Bee1 Trydnt
M R1 Bee1 Trydnt
C Trydnt R

80) Trydnt: Sacrifice Y3 Bee3
Move G3 B3 Wil
Move G2 R1 B3
Move G2 B3 Wil
Catastrophe Wil G
	wil: Reminds me of playing games late into the night at whytestone...but your sun will be rising soon.

81) wil: S G2 Why1
B G1 Trydnt
B G2 Trydnt
C Trydnt G



33906)
Variants: "Unrated, Hard time"
Started: 2018.5.19, Ended: 2018.5.31
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B3 G2 R3

2) Trydnt: Homeworld B2 G1 Y3

3) wil: B R1 Wil

4) Trydnt: Build Y1 Trydnt

5) wil: T R1 G1 Wil

6) Trydnt: Trade Y1 G1 Trydnt

7) wil: B G2 Wil

8) Trydnt: Build G2 Trydnt

9) wil: T G1 Y1 Wil

10) Trydnt: Trade G1 B1 Trydnt

11) wil: B G1 Wil

12) Trydnt: Build B1 Trydnt

13) wil: T G1 B1 Wil

14) Trydnt: Trade B1 R1 Trydnt

15) wil: B R1 Wil

16) Trydnt: Discover G2 Trydnt Y3 Y3

17) wil: B G1 Wil

18) Trydnt: Move B1 Trydnt Y3

19) wil: D G2 Wil Y1 Y2

20) Trydnt: Discover B1 Y3 Y1 Y1

21) wil: B Y2 Wil

22) Trydnt: Build Y2 Trydnt

23) wil: D G2 Y2 Y3 Why3

24) Trydnt: Discover Y2 Trydnt G3 G3

25) wil: M Y2 Wil Y1

26) Trydnt: Move B1 Y1 G3

27) wil: M B1 Wil Y1

28) Trydnt: Build B1 G3

29) wil: M R1 Wil Y1

30) Trydnt: Discover B1 G3 G1 G1

31) wil: B G3 Why3

32) Trydnt: Build G3 Y3

33) wil: D G1 Wil Y1 Why1

34) Trydnt: Sacrifice G3 Y3
Build G3 Y3
Build Y2 G3
Build B2 G1

35) wil: S G3 Why3
B G3 Why3
B R1 Y1
B R2 Y1

36) Trydnt: Build R2 Trydnt

37) wil: D R2 Y1 B3 B3

38) Trydnt: Sacrifice G3 Y3
Build G3 Y3
Build B2 G1
Build B3 G3

39) wil: M G2 Why3 Y1

40) Trydnt: Sacrifice Y2 G3
Move B1 G1 Wil
Move G2 Y3 Why1

41) wil: A B1 Wil

42) Trydnt: Sacrifice Y2 G3
Move B2 G1 Wil
Move B2 G1 Wil
Catastrophe Wil B

43) wil: M G1 Why1 B3

44) Trydnt: Build G1 Y3

45) wil: B R2 Wil

46) Trydnt: Sacrifice Y3 Trydnt
Move G1 Y3 Wil
Move G3 Y3 Wil
Move G2 Why1 Wil
Catastrophe Wil G



34102)
Variants: "Unrated"
Started: 2018.5.19, Ended: 2018.5.28
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt



34133)
Started: 2018.5.19, Ended: 2018.8.13
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y1 G3

2) MobyNostromo: H Y1 G2 B3

3) Trydnt: Build G1 Trydnt

4) MobyNostromo: B B1 Mobynostromo

5) Trydnt: Trade G1 Y1 Trydnt

6) MobyNostromo: T B3 Y3 Mobynostromo

7) Trydnt: Build Y2 Trydnt

8) MobyNostromo: B Y2 Mobynostromo

9) Trydnt: Discover Y1 Trydnt G2 G2

10) MobyNostromo: D Y2 Mobynostromo B3 Azure

11) Trydnt: Build G1 Trydnt

12) MobyNostromo: B B1 Mobynostromo

13) Trydnt: Trade G1 B1 Trydnt

14) MobyNostromo: T B1 G1 Mobynostromo

15) Trydnt: Build G1 Trydnt

16) MobyNostromo: B G1 Mobynostromo

17) Trydnt: Discover Y2 Trydnt B2 B2

18) MobyNostromo: M G1 Mobynostromo Azure

19) Trydnt: Discover Y1 G2 G3 G3

20) MobyNostromo: B G2 Azure

21) Trydnt: Trade G1 R1 Trydnt

22) MobyNostromo: D G2 Azure Y2 Blonde

23) Trydnt: Build Y3 G3

24) MobyNostromo: T Y3 R3 Mobynostromo

25) Trydnt: Build Y3 G3

26) MobyNostromo: B Y3 Azure

27) Trydnt: Sacrifice B1 Trydnt
Trade Y3 B3 G3

28) MobyNostromo: B G1 Blonde

29) Trydnt: Build R1 Trydnt

30) MobyNostromo: S Y3 Azure
M G1 Blonde G3
M G2 Blonde G3
M G1 Mobynostromo G3
C G3 G

31) Trydnt: Discover R1 Trydnt G2 G2

32) MobyNostromo: B G1 Azure

33) Trydnt: Move Y2 B2 Azure

34) MobyNostromo: S Y2 Azure
D G1 Azure Y2 Lemon
M G1 Azure Lemon

35) Trydnt: Move R1 Trydnt Lemon

36) MobyNostromo: B B1 Mobynostromo

37) Trydnt: Attack G1 Lemon

38) MobyNostromo: D G1 Lemon B1 Sky

39) Trydnt: Move R1 Lemon Sky

40) MobyNostromo: B B2 Mobynostromo

41) Trydnt: Attack G1 Sky

42) MobyNostromo: T B2 G2 Mobynostromo

43) Trydnt: Sacrifice G1 Sky
Build Y1 Azure

44) MobyNostromo: D B1 Mobynostromo B3 Cobalt

45) Trydnt: Trade Y1 G1 Azure

46) MobyNostromo: T B1 G1 Cobalt

47) Trydnt: Build G3 Azure

48) MobyNostromo: B G3 Cobalt

49) Trydnt: Build Y1 Azure

50) MobyNostromo: T G2 Y2 Mobynostromo

51) Trydnt: Discover Y1 Azure G2 Gee2

52) MobyNostromo: M Y2 Mobynostromo Cobalt

53) Trydnt: Sacrifice G3 Azure
Build G3 Azure
Build Y3 Gee2
Build Y3 Azure

54) MobyNostromo: S G3 Cobalt
B G3 Cobalt
B R1 Mobynostromo
B Y3 Cobalt

55) Trydnt: Trade Y2 R2 Azure

56) MobyNostromo: M R1 Mobynostromo Cobalt

57) Trydnt: Sacrifice G3 Azure
Build G3 Azure
Build Y2 Azure
Build R2 Sky

58) MobyNostromo: B R2 Cobalt

59) Trydnt: Sacrifice G3 Azure
Build G3 Azure
Build R3 Azure
Build R3 G2

60) MobyNostromo: S G3 Cobalt
B G3 Cobalt
B B1 Mobynostromo
B B2 Mobynostromo

61) Trydnt: Move G3 Azure Mobynostromo

62) MobyNostromo: A G3 Mobynostromo

63) Trydnt: Sacrifice Y3 Azure
Move G1 Azure Mobynostromo
Move G1 Lemon Azure
Move G1 Azure Mobynostromo
Catastrophe Mobynostromo G

64) MobyNostromo: S Y3 Cobalt
M B1 Mobynostromo Azure
M B1 Mobynostromo Azure
M B2 Mobynostromo Azure
C Azure B

65) Trydnt: Sacrifice Y1 Gee2
Move R3 G2 Mobynostromo

66) MobyNostromo: A R3 Mobynostromo

67) Trydnt: Sacrifice Y3 Gee2
Move R1 Sky G2
Move R1 G2 Mobynostromo
Move R1 G2 Mobynostromo
Catastrophe Mobynostromo R



34165)
Variants: "Hard time"
Started: 2018.5.23, Ended: 2018.6.6
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B2 Y1 G3

2) Trydnt: Homeworld B3 R2 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 Y1 Wil

6) Trydnt: Trade G1 Y1 Trydnt
	wil: And I'll be out of service for too many days to start thise other games... Got this one up to 10 day response

7) wil: B Y2 Wil

8) Trydnt: Build Y2 Trydnt

9) wil: T Y1 R1 Wil

10) Trydnt: Trade Y1 R1 Trydnt

11) wil: B Y1 Wil

12) Trydnt: Build Y1 Trydnt

13) wil: T Y1 B1 Wil

14) Trydnt: Trade Y1 B1 Trydnt

15) wil: D B1 Wil G3 G3

16) Trydnt: Discover B1 Trydnt G1 G1

17) wil: B Y1 Wil

18) Trydnt: Build Y1 Trydnt

19) wil: M Y1 Wil G3

20) Trydnt: Move Y1 Trydnt G1

21) wil: D Y2 Wil B3 B3

22) Trydnt: Build G1 Trydnt

23) wil: B G1 Wil

24) Trydnt: Build G2 Trydnt

25) wil: M G1 Wil B3

26) Trydnt: Discover G2 Trydnt B1 B1

27) wil: B G2 Wil

28) Trydnt: Build G2 B1

29) wil: S G3 Wil
B G3 Wil
B R1 Wil
B B2 G3

30) Trydnt: Move R1 Trydnt B1

31) wil: M R1 Wil B3

32) Trydnt: Build B2 G1

33) wil: D B1 G3 R2 R2

34) Trydnt: Sacrifice Y2 Trydnt
Discover G2 B1 B3 Bee3
Discover B1 G1 Y3 Y3

35) wil: S G3 Wil
B R2 Wil
B G3 Wil
B R3 B3

36) Trydnt: Sacrifice G2 Bee3
Build B3 G1
Build R3 B1

37) wil: S G3 Wil
B G2 B3
B R3 B3
B G3 Wil
	wil: I've allowed.the most.to be construed

38) Trydnt: Trade R3 Y3 B1

39) wil: T R3 Y3 B3

40) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 B1
Build Y2 B1

41) wil: S Y1 G3
D G2 B3 Y1 Y1

42) Trydnt: Move Y3 B1 Trydnt

43) wil: M R3 B3 Y1

44) Trydnt: Sacrifice Y3 Trydnt
Move Y2 B1 B3
Move Y1 G1 B3
Catastrophe B3 Y
Move R3 B1 B3

45) wil: S G1 B3
B R3 Y1

46) Trydnt: Attack R1 B3

47) wil: M R3 Y1 Y3
	Trydnt: wow that was close

48) Trydnt: Sacrifice B1 Y3
Trade B3 Y3 G1

49) wil: M R3 Y3 B1

50) Trydnt: Sacrifice G2 B1
Build Y1 G1
Build Y2 G1

51) wil: T R2 Y2 Wil

52) Trydnt: Move Y1 G1 B3

53) wil: B G1 Y1

54) Trydnt: Move Y3 G1 Trydnt

55) wil: M G1 Y1 Trydnt

56) Trydnt: Sacrifice G3 Trydnt
Build Y2 B3
Build Y3 G1
Build Y3 Trydnt

57) wil: S G3 Wil
B G2 Trydnt
B G3 Wil
B G3 Y1

58) Trydnt: Attack G2 Trydnt

59) wil: S G3 Wil
B G3 Wil
B B1 R2
B B3 G3

60) Trydnt: Sacrifice G2 Trydnt
Build G2 Trydnt
Build R2 B1

61) wil: S G2 Y1
B G2 Trydnt
C Trydnt G
B G1 Y1

62) Trydnt: Move R1 B3 B1
Catastrophe B1 R

63) wil: D Y2 Wil R3 R3

64) Trydnt: Build B1 G1

65) wil: M G3 Y1 R3

66) Trydnt: Trade Y2 G2 B3

67) wil: B Y2 R3

68) Trydnt: Sacrifice Y2 G1
Move B1 G1 G3
Move B2 G1 G3
Catastrophe G3 B

69) wil: D Y2 R3 G1 Gee1

70) Trydnt: Sacrifice G2 B3
Build Y2 B3
Build R1 B3

71) wil: S G3 Wil
B G2 Y1
B G2 Y1
B G3 Wil

72) Trydnt: Trade R3 G3 B3

73) wil: S G3 Wil
B G3 Wil
B R1 Y1
B B1 R2

74) Trydnt: Move Y3 G1 R2

75) wil: S G3 Wil
B G1 R3
B B2 R2
B G3 Wil
C R2 B

76) Trydnt: Sacrifice Y3 R2
Move Y3 Trydnt Y1
Move Y1 B3 Y1
Move Y2 B3 Y1
Catastrophe Y1 Y

77) wil: D G1 R3 B1 B1

78) Trydnt: Build R1 B3

79) wil: B G1 B1

80) Trydnt: Trade R1 Y1 B3

81) wil: S G3 Wil
B G2 Wil
B G2 R3
B G3 Wil

82) Trydnt: Build R1 B3

83) wil: B R2 Wil

84) Trydnt: Discover R1 B3 Y1 Y1

85) wil: M R2 Wil B3

86) Trydnt: Attack R2 B3

87) wil: S G3 Wil
B G3 Wil
B Y2 R3
B Y3 Gee1
	wil: One of your dang 4 hour games

88) Trydnt: Build Y3 B3

89) wil: S Y2 R3
M Y2 Gee1 Trydnt
M Y3 Gee1 Trydnt

90) Trydnt: Sacrifice R2 B3
Attack Y2 Trydnt
Attack Y3 Trydnt

91) wil: S G3 Wil
B G1 B1
B G3 Wil
B Y2 R3

92) Trydnt: Sacrifice Y2 Trydnt
Move G3 B3 Wil
Move Y3 B3 Wil
Catastrophe Wil G

	wil: And now I can sleep


34158)
Started: 2018.5.23, Ended: 2018.8.30
Participants: silversliver (S), MobyNostromo (N)
Winner: silversliver

1) MobyNostromo: H Y1 B2 G3

2) silversliver: Homeworld B3 G1 R3
	MobyNostromo: Have fun!!

3) MobyNostromo: B G1 Mobynostromo
	silversliver: You too.

4) silversliver: Build R1 Silversliver

5) MobyNostromo: T G1 Y1 Mobynostromo

6) silversliver: Trade R1 G1 Silversliver

7) MobyNostromo: D Y1 Mobynostromo B3 Sapphire

8) silversliver: Build R1 Silversliver

9) MobyNostromo: T Y1 G1 Sapphire

10) silversliver: Trade R1 Y1 Silversliver

11) MobyNostromo: B G2 Sapphire

12) silversliver: Discover G1 Silversliver Y2 Sys1

13) MobyNostromo: T G2 Y2 Sapphire

14) silversliver: Build G2 Sys1

15) MobyNostromo: B G2 Mobynostromo

16) silversliver: Build Y1 Silversliver

17) MobyNostromo: S G3 Mobynostromo
B G2 Sapphire
B G3 Mobynostromo
B G3 Mobynostromo


18) silversliver: Sacrifice Y1 Silversliver
Move G2 Sys1 Sapphire

19) MobyNostromo: T G3 R3 Mobynostromo

20) silversliver: Trade G2 R2 Sapphire

21) MobyNostromo: B R1 Mobynostromo

22) silversliver: Attack G2 Sapphire

23) MobyNostromo: S R1 Mobynostromo
A R2 Sapphire

24) silversliver: Sacrifice G2 Sapphire
Build G2 Sys1
Build R1 Silversliver

25) MobyNostromo: B R1 Sapphire

26) silversliver: Trade R1 B1 Silversliver

27) MobyNostromo: S G3 Mobynostromo
B G2 Mobynostromo
B G3 Mobynostromo
B G3 Sapphire

28) silversliver: Sacrifice B1 Silversliver
Trade G2 Y2 Sys1

29) MobyNostromo: D G2 Mobynostromo B3 Azure

30) silversliver: Build G2 Sys1

31) MobyNostromo: D G3 Sapphire B2 Cobalt

32) silversliver: Move G2 Sys1 Azure

33) MobyNostromo: S R1 Sapphire
A G2 Azure

34) silversliver: Build G3 Sys1

35) MobyNostromo: S G3 Mobynostromo
B G3 Cobalt
B Y1 Sapphire
B R1 Sapphire

36) silversliver: Sacrifice G3 Sys1
Build G3 Sys1
Build Y3 Silversliver
Pass

37) MobyNostromo: M R1 Sapphire Cobalt

38) silversliver: Sacrifice Y2 Sys1
Move G1 Sys1 Azure
Move G1 Azure Mobynostromo

39) MobyNostromo: A G1 Mobynostromo

40) silversliver: Trade Y1 B1 Silversliver

41) MobyNostromo: D G1 Mobynostromo Y3 Sand

42) silversliver: Move B1 Silversliver Sys1

43) MobyNostromo: M Y1 Sapphire Cobalt

44) silversliver: Build R1 Silversliver

45) MobyNostromo: S G3 Cobalt
B Y1 Sapphire
B Y2 Cobalt
B Y3 Sapphire

46) silversliver: Trade R1 B1 Silversliver

47) MobyNostromo: S G2 Azure
B G2 Cobalt
B G3 Sand

48) silversliver: Move B1 Sys1 Azure

49) MobyNostromo: S Y2 Sapphire
M G1 Sapphire Sys1
M G1 Sand Sys1

50) silversliver: Move B1 Silversliver Sys1

51) MobyNostromo: S Y3 Sapphire
M G1 Sys1 Silversliver
M G1 Sys1 Silversliver
M G2 Cobalt Silversliver
C Silversliver G

52) silversliver: Build B1 Sys1

53) MobyNostromo: M G3 Sand Cobalt

54) silversliver: Move B1 Sys1 Azure

55) MobyNostromo: S Y2 Cobalt
M G3 Cobalt Silversliver
M G3 Cobalt Silversliver

56) silversliver: Sacrifice R3 Silversliver
Attack G3 Silversliver
Attack G3 Silversliver
Pass

57) MobyNostromo: S R2 Sapphire
A B1 Azure
A B1 Azure

58) silversliver: Move B1 Sys1 Azure
Catastrophe Azure Blue

59) MobyNostromo: B G1 Mobynostromo

60) silversliver: Trade G3 R3 Silversliver

61) MobyNostromo: M G2 Mobynostromo Sapphire

62) silversliver: Build G1 Silversliver

63) MobyNostromo: B R1 Mobynostromo

64) silversliver: Trade G1 B1 Silversliver

65) MobyNostromo: B G1 Mobynostromo

66) silversliver: Move B1 Silversliver Sys1

67) MobyNostromo: M R1 Mobynostromo Sapphire

68) silversliver: Build B1 Sys1

69) MobyNostromo: B Y2 Sapphire

70) silversliver: Discover B1 Sys1 Y3 Sys2

71) MobyNostromo: D Y1 Sapphire G1 Verte

72) silversliver: Sacrifice G3 Sys1
Build B1 Sys2
Build B2 Sys2
Build B3 Sys1

73) MobyNostromo: S G2 Sapphire
B Y2 Sapphire
B Y3 Cobalt

74) silversliver: Sacrifice Y3 Silversliver
Move B1 Sys2 Mobynostromo
Move B1 Sys2 Mobynostromo
Move B2 Sys2 Mobynostromo
Catastrophe Mobynostromo Blue

75) MobyNostromo: T Y1 B1 Cobalt

76) silversliver: Build R1 Silversliver



34118)
Started: 2018.5.23, Ended: 2018.7.11
Participants: ts52 (S), silversliver (N)
Winner: ts52

1) silversliver: Homeworld R2 G1 B3

2) ts52: Homeworld B1 Y3 G3

3) silversliver: Build B1 Silversliver

4) ts52: Build G1 Ts52

5) silversliver: Trade B1 Y1 Silversliver

6) ts52: Trade G1 B1 Ts52

7) silversliver: Build Y1 Silversliver

8) ts52: Build G1 Ts52

9) silversliver: Discover Y1 Silversliver B3 Sys1

10) ts52: Build G1 Ts52

11) silversliver: Build Y1 Silversliver

12) ts52: Discover G1 Ts52 B2 Gonzo

13) silversliver: Move Y1 Silversliver Sys1

14) ts52: Build G2 Gonzo

15) silversliver: Build Y2 Silversliver

16) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G2 Ts52
Build G3 Ts52

17) silversliver: Move Y1 Sys1 Gonzo

18) ts52: Trade G2 R2 Gonzo

19) silversliver: Move Y1 Gonzo Ts52

20) ts52: Trade G2 R2 Ts52

21) silversliver: Sacrifice Y2 Silversliver
Move Y1 Sys1 Gonzo
Move Y1 Gonzo Ts52

22) ts52: Attack Y1N Ts52

23) silversliver: Build Y2 Silversliver

24) ts52: Move Y1 Ts52 Gonzo

25) silversliver: Discover Y1 Silversliver B3 Sys2

26) ts52: Build Y2 Gonzo

27) silversliver: Trade Y1 B1 Sys2

28) ts52: Discover B1 Ts52 G2 Kermit

29) silversliver: Build B2 Silversliver

30) ts52: Move R2 Gonzo Sys2

31) silversliver: Sacrifice Y2 Silversliver
Move B1 Sys2 Gonzo
Move B1 Gonzo Ts52

32) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build R1 Sys2

33) silversliver: Trade Y1 R1 Ts52

34) ts52: Attack R1N Ts52

35) silversliver: Trade B2 Y2 Silversliver

36) ts52: Move G2 Gonzo Sys2

37) silversliver: Build B2 Silversliver

38) ts52: Attack B1N Ts52

39) silversliver: Discover B2 Silversliver Y3 Sys3

40) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Sys2
Build G3 Gonzo

41) silversliver: Build Y1 Silversliver

42) ts52: Move Y2 Gonzo Sys2

43) silversliver: Move Y1 Silversliver Sys3

44) ts52: Sacrifice G3 Sys2
Build G3 Sys2
Build R1 Ts52
Build R3 Sys2

45) silversliver: Move B2 Sys3 Gonzo

46) ts52: Sacrifice Y2 Sys2
Move G3 Sys2 Silversliver
Move R3 Sys2 Silversliver

47) silversliver: Attack R3 Silversliver

48) ts52: Sacrifice R2 Sys2
Attack R3N Silversliver
Attack B3N Silversliver

49) silversliver: Trade B2 R2 Gonzo

50) ts52: Attack Y2N Silversliver
	ts52: Thanks for the game.
	silversliver: gg



34159)
Started: 2018.5.28, Ended: 2018.6.12
Participants: Felix (S), Thorolf (N)
Winner: Felix

1) Thorolf: Homeworld Y3 B1 G3

2) Felix: H R2 B3 G3

3) Thorolf: Build G1 Thorolf

4) Felix: B G1 Felix

5) Thorolf: Discover G1 Thorolf B2 Alpha
	Felix: Hello! First game?

6) Felix: T G1 Y1 Felix
	Thorolf: kind of, I have a few going right now

7) Thorolf: Build G1 Thorolf

8) Felix: Build Y1 Felix

9) Thorolf: Move G1 Thorolf Alpha

10) Felix: D Y1 Felix B1 Out

11) Thorolf: Build G1 Thorolf

12) Felix: B G2 Felix

13) Thorolf: Build G2 Alpha

14) Felix: M G2 Felix Out

15) Thorolf: Move G3 Thorolf Alpha

16) Felix: B G2 Felix
	Felix: I think you should take that move back. I can call catastrophe on the alpha system right now

17) Thorolf: Trade G3 R3 Alpha

18) Felix: Sacrifice G3 Felix
Build G3 Out
Build G3 Out
Build G3 Felix

19) Thorolf: Trade G2 Y2 Alpha

20) Felix: T G3 R3 Out

21) Thorolf: Build G2 Thorolf

22) Felix: M G2 Out Alpha

23) Thorolf: Attack G2 Alpha

24) Felix: Build G3 Out

25) Thorolf: Discover Y2 Alpha B1 Delta

26) Felix: D R3 Out Y2 Chomp

	Thorolf: gg


34018)
Variants: "Unrated"
Started: 2018.5.29, Ended: 2018.6.2
Participants: Thorolf (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Thorolf: Homeworld B3 R1 G3
	Trydnt: Welcome and good luck!
	Thorolf: Thanks, you too

3) Trydnt: Build G1 Trydnt

4) Thorolf: Build G1 Thorolf

5) Trydnt: Trade G1 R1 Trydnt

6) Thorolf: Trade G1 Y1 Thorolf

7) Trydnt: Build R1 Trydnt

8) Thorolf: Discover Y1 Thorolf G2 Alpha

9) Trydnt: Build R2 Trydnt

10) Thorolf: Build G1 Thorolf

11) Trydnt: Discover R1 Trydnt Y3 Y3
	Thorolf: i’m screwed
	Thorolf: i didn’t know you needed another ship of the same color in a system to build a ship
	Trydnt: you can take that move back
	Trydnt: you should either grow a g1 at home so after you trade the g3 for a red one you can grow another. Or keep growing the yellows since you need them to kill me eventually anyway and you can potentially trade them for reds. Your homeworld is protected by the red star for now so you don't have to worry about me moving in and taking your ships... yet :)
	Thorolf: thanks

12) Thorolf: Trade G3 Y3 Thorolf

13) Trydnt: Build R2 Trydnt

14) Thorolf: Move Y3 Thorolf Alpha

15) Trydnt: Trade R2 Y2 Trydnt

16) Thorolf: Move Y3 Alpha Thorolf
	Trydnt: you don't wanna move your large ship out of your homeworld or else I can move in and take over quite easily
	Trydnt: it also usually doesn't make much sense to double up a color on a star as that limits your capacity for growth. you want diverse portfolios of ships on each star preferably having one of each color (usually excluding the star color so you don't risk me blowing the star up)

17) Trydnt: Discover Y2 Trydnt G3 G3

18) Thorolf: Build Y1 Alpha

19) Trydnt: Build Y2 G3

20) Thorolf: Build Y2 Alpha

21) Trydnt: Move Y2 G3 Alpha
Catastrophe Alpha Y

22) Thorolf: Build G1 Thorolf

23) Trydnt: Build Y1 G3

24) Thorolf: Trade G1 Y1 Thorolf

25) Trydnt: Build Y2 G3

26) Thorolf: Discover Y1 Thorolf B2 Lambda

27) Trydnt: Discover Y2 G3 G2 G2

28) Thorolf: Build Y2 Thorolf

29) Trydnt: Build Y3 G2

30) Thorolf: Trade Y3 R3 Thorolf

31) Trydnt: Discover R2 Trydnt Y3 Why3

32) Thorolf: Trade Y1 G1 Lambda

33) Trydnt: Build Y1 G3

34) Thorolf: Build R2 Thorolf

35) Trydnt: Sacrifice Y2 G3
Move R1 Y3 G2
Move R1 G2 Thorolf
Catastrophe Thorolf R

36) Thorolf: Trade Y2 R2 Thorolf

37) Trydnt: Move Y3 G2 Thorolf

38) Thorolf: Build G1 Lambda

39) Trydnt: Sacrifice R2 Why3
Attack R2 Thorolf
Attack G1 Thorolf



34170)
Variants: "Unrated"
Started: 2018.5.29, Ended: 2018.5.29
Participants: Thorolf (S), dlwillson (N)
Winner: Thorolf



34155)
Variants: "Hard time"
Started: 2018.5.29, Ended: 2018.5.30
Participants: wil (S), Thorolf (N)
Winner: wil

1) Thorolf: Homeworld G3 R1 Y3 *

2) wil: H Y2 B1 G3

3) Thorolf: Discover Y3 Thorolf B2 Epsilon
	wil: New to hw?
	Thorolf: yep
	Thorolf: whoops
	wil: Ya gotta keep the homeowrld occupied...  Matter o fact best to always keep a big one at home to protect your land...



34179)
Variants: "Hard time"
Started: 2018.5.29, Ended: 2018.6.8
Participants: Thorolf (S), wil (N)
Winner: wil

1) wil: H B3 Y2 G3

2) Thorolf: Homeworld B1 Y2 G3

3) wil: B G1 Wil

4) Thorolf: Build G1 Thorolf

5) wil: T G1 B1 Wil

6) Thorolf: Discover G1 Thorolf B3 Gamma
	wil: Welcome to sdg, are you familiar with this game?  Do you have pyramids at home?

7) wil: B B1 Wil
	Thorolf: I ordered some yesterday, and I know how to play, but I don't have much experience
	wil: I learned by losing... A lot!  Would you like tips?  Or just try to work thru?  Did you order pyramid arcade?
	Thorolf: Tips would be good, and no, just 3 rainbow stashes
	wil: Whenever you buy more PA is the best deal...77 bucks, 90 pyramids and rules, boards, dice for 22 games
	wil: Best deal at beginning is to copycat other player to insure they don't monopolize an economy and block you out of blue for instance...which I just may do.  Would you like to watch what happens or back up?
	Thorolf: I'll see what happens

8) Thorolf: Build G1 Gamma

9) wil: D B1 Wil Y1 Y1

10) Thorolf: Build G1 Gamma

11) wil: B B2 Wil

12) Thorolf: Trade G1 Y1 Gamma

13) wil: D B1 Wil G1 G1

14) Thorolf: Discover Y1 Gamma G2 Zeta

15) wil: S G3 Wil
B B2 G1
B B2 Y1
B B3 Wil
	wil: You've just ventured into what we call 'no man's land' usually you always want to head toward your opponent...moving ships closer to an attack... The 2 size star is two steps away from both yours and mine

16) Thorolf: Build G2 Gamma

17) wil: T B3 G3 Wil

18) Thorolf: Trade G2 R2 Gamma

19) wil: B B3 G1

20) Thorolf: Build G2 Thorolf

21) wil: Trade B3 R3 G1

22) Thorolf: Trade G2 R2 Thorolf

23) wil: B B3 G1

24) Thorolf: Build G2 Thorolf

25) wil: T B3 Y3 G1

26) Thorolf: Trade G3 R3 Thorolf
	wil: The monopoly gives me the ability of a queen factory

27) wil: B B3 G1

28) Thorolf: Move R3 Thorolf Gamma

29) wil: S Y3 G1
M B3 G1 Gamma
D R3 G1 Y3 Y3
M B3 Gamma Thorolf
	wil: Oops?
	wil: You just left your homworld vulnerable for attack
	wil: I'll give it a bit and and then assume you don't want to back it up...but one should always be careful not having a 3 in your hw 

30) Thorolf: Trade R3 Y3 Gamma

31) wil: Sacrifice R3 Y3
Attack R2 Thorolf
Attack G2 Thorolf
Pass
	wil: Lol, and then I did a silly move.. Ah, the value of moving the coin

	Thorolf: GG


34110)
Variants: "Hard time"
Started: 2018.5.30, Ended: 2018.6.1
Participants: Thorolf (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 R2 G3

2) Thorolf: Homeworld B2 Y1 G3

3) Trydnt: Build G1 Trydnt

4) Thorolf: Build G1 Thorolf

5) Trydnt: Trade G1 Y1 Trydnt

6) Thorolf: Trade G3 R3 Thorolf
	Trydnt: in the early game you'll often wanna copy what you opponent does. In this case I took the yellow because I need yellow and also there are only two of the y1's in there. That means if you don't take the other one I'll grow it on my next turn and monopolize the yellow and you will struggle to get into the yellow economy.

7) Trydnt: Build Y1 Trydnt

8) Thorolf: Build G1 Thorolf

9) Trydnt: Build Y2 Trydnt

10) Thorolf: Discover G1 Thorolf Y3 Sigma

11) Trydnt: Discover Y1 Trydnt R1 R1

12) Thorolf: Move G1 Thorolf Sigma

13) Trydnt: Build Y2 Trydnt
	Trydnt: once again I'll caution you against putting two of the same color ships on a star like that without a really good reason. you already have a green one there. adding another green one to that star gives you no added abilities and since you don't have any blue there you can't swap it for something that does. it also limits the amount of other ships you'll be able to grow on that star as one more and you're in serious danger of my blowing it up.

14) Thorolf: Discover G1 Sigma B1 Kappa

15) Trydnt: Move Y2 Trydnt Kappa

16) Thorolf: Build G1 Kappa

17) Trydnt: Trade Y2 R2 Kappa

18) Thorolf: Build G2 Kappa

19) Trydnt: Attack G2 Kappa

20) Thorolf: Trade G1 R1 Kappa

21) Trydnt: Attack R1 Kappa

22) Thorolf: Discover R3 Thorolf G3 Delta
	Thorolf: shit



34186)
Started: 2018.6.2, Ended: 2018.6.3
Participants: moverman (S), AstroPrincess (N)
Winner: AstroPrincess

1) AstroPrincess: Homeworld B3 R1 G3

2) moverman: Homeworld Y3 B2 G3

3) AstroPrincess: Build G1 Astroprincess (n)

4) moverman: Build G1 Moverman


5) AstroPrincess: Trade G1 Y1 Astroprincess (n)

6) moverman: Discover G1 Moverman R1 Htns

7) AstroPrincess: Build Y1 Astroprincess (n)
	moverman: burned my fingers opening the lid to the strawberry jam canning bath...

8) moverman: Build G1 Moverman

9) AstroPrincess: Discover Y1 Astroprincess G2 Steven
	AstroPrincess: ouch!

10) moverman: Trade G1 R1 Moverman

11) AstroPrincess: Build Y1 Steven

12) moverman: Build R2 Moverman

13) AstroPrincess: Build Y2 Astroprincess

14) moverman: Move R2 Moverman Htns

15) AstroPrincess: Trade Y2 R2 Astroprincess

16) moverman: Sacrifice G3 Moverman
Build G1 Htns
Build R2 Moverman
Build R3 Htns
	AstroPrincess: You're right about the Sacrifice rules. We have been doing it wrong, but I think it was about even because I don't think we were using the ability of the sacrificed ship in a system in which we didn't already have that ability

17) AstroPrincess: Build R3 Astroprincess

18) moverman: Trade R2 Y2 Moverman
	moverman: I think our mistaken approach was quite a bit more powerful - being able to do several different things with the same ship, is much stronger: move, trade, attack, with one ship, for example. But still: the rule was the same for both of us, so it all works out in the wash. I think the real rule makes the strategy a bit more interesting.

19) AstroPrincess: Move R3 Astroprincess Steven

20) moverman: Move Y2 Moverman Htns

21) AstroPrincess: Build R2 Steven

22) moverman: Move R3 Htns Moverman
	AstroPrincess: I keep starting to type grow for build lol

23) AstroPrincess: Move R3 Steven Htns

24) moverman: Sacrifice Y2 Htns
Move G1 Htns Moverman
Move G1 Htns Steven

25) AstroPrincess: Attack G1 Steven

26) moverman: Move R1 Moverman Htns
Catastrophe Htns Red

27) AstroPrincess: Discover Y1 Steven R1 Ds9

28) moverman: Build G1 Moverman

29) AstroPrincess: Move G1 Steven Ds9

30) moverman: Trade G1 B1 Moverman

31) AstroPrincess: Build Y2 Ds9

32) moverman: Trade R3 Y3 Moverman

33) AstroPrincess: Move Y1 Ds9 Moverman

34) moverman: Move Y3 Moverman Ds9

35) AstroPrincess: Move Y2 Ds9 Moverman

36) moverman: Attack G1 Ds9

37) AstroPrincess: Trade Y2 R2 Moverman

38) moverman: Move Y3 Ds9 Moverman

39) AstroPrincess: Sacrifice G3 Astroprincess
Build Y2 Moverman
Build Y2 Astroprincess
Build Y2 Steven
Catastrophe Moverman Y
	moverman: Aaaagh...

40) moverman: Build G1 Moverman
	AstroPrincess: Wuahahahaha!

41) AstroPrincess: Sacrifice R2 Astroprincess
Attack G1 Moverman
Attack G1 Moverman



34161)
Variants: "Unrated"
Started: 2018.6.2, Ended: 2018.6.14
Participants: Felix (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y2 G3

2) Felix: H R2 B3 G3

3) Trydnt: Build G1 Trydnt
	Felix: Hello again! Have fun!

	Trydnt: well met fellow astral traveler. Win or lose I always have fun. good luck!

4) Felix: B G1 Felix

5) Trydnt: Trade G1 R1 Trydnt
	Felix: That the spirit! Some folks take this game too seriously

6) Felix: T G1 R1 Felix

7) Trydnt: Build G1 Trydnt

8) Felix: Build G1 Felix

9) Trydnt: Trade G1 Y1 Trydnt

10) Felix: T G1 Y1 Felix

11) Trydnt: Build G1 Trydnt

12) Felix: Build G1 Felix

13) Trydnt: Trade G1 B1 Trydnt

14) Felix: Trade G1 B1 Felix

15) Trydnt: Build G1 Trydnt

16) Felix: B Y1 Felix

17) Trydnt: Build Y2 Trydnt

18) Felix: D Y1 Felix B1 Opus

19) Trydnt: Discover Y2 Trydnt R1 R1

20) Felix: B Y2 Felix

21) Trydnt: Sacrifice G1 Trydnt
Build Y3 R1

22) Felix: Discover Y1 Felix G1 Oop

23) Trydnt: Sacrifice Y1 Trydnt
Discover Y2 R1 Y3 Y3

24) Felix: Move B1 Felix Oop

25) Trydnt: Build G1 Trydnt

26) Felix: B B2 Oop

27) Trydnt: Build R2 Trydnt

28) Felix: Move B2 Oop Trydnt

29) Trydnt: Move B1 Trydnt R1

30) Felix: Build B2 Oop

31) Trydnt: Move R2 Trydnt Opus

32) Felix: Sacrifice G3 Felix
Build Y1 Oop
Build Y3 Felix
Build B2 Trydnt

33) Trydnt: Attack Y1 Opus

34) Felix: Sacrifice Y2 Felix
Move B1 Oop Trydnt
Move Y1 Oop Trydnt
Catastrophe Trydnt Blue

35) Trydnt: Sacrifice Y2 Y3
Move Y3 R1 Felix
Move Y1 Opus Felix

36) Felix: Attack Y3 Felix

37) Trydnt: Sacrifice G1 Trydnt
Build Y2 Felix
Catastrophe Felix Y

38) Felix: Build Y1 Oop

39) Trydnt: Attack Y1 Trydnt

40) Felix: Move Y1 Oop Trydnt

41) Trydnt: Sacrifice Y1 Trydnt
Move R2 Opus Felix

42) Felix: Trade B2 G2 Oop
	Felix: Ooh, great move!

43) Trydnt: Attack R1 Felix
	Trydnt: Thanks! I thought so haha never sure in these games if the other person has seen it yet and are just playing it out to make it close/maybe scrape a win off a mistake or if they haven't seen it til it happens
	Felix: Nope, I just missed it! Great game.



34185)
Variants: "Unrated"
Started: 2018.6.2, Ended: 2018.6.2
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt



34189)
Variants: "Hard time"
Started: 2018.6.3, Ended: 2018.7.2
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) Felix: H B1 Y2 G3

3) Draw5PlayAll: Build G1 Draw5playall
	Felix: Interesting opening!

4) Felix: Build G1 Felix

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Felix: T G1 B1 Felix

7) Draw5PlayAll: Build Y1 Draw5playall

8) Felix: Build B1 Felix

9) Draw5PlayAll: Build Y1 Draw5playall

10) Felix: D B1 Felix Y3 Out

11) Draw5PlayAll: Discover Y1 Draw5playall G1 Econ

12) Felix: Build B2 Felix

13) Draw5PlayAll: Build Y2 Econ

14) Felix: D B1 Felix G3 Singe

15) Draw5PlayAll: Discover Y1 Draw5playall B3 Unfold
	Draw5PlayAll: You are doing the same thing to me! Stop!

16) Felix: S G3 Felix
B B2 Out
B B3 Singe
B B3 Felix

17) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Econ
Build Y3 Unfold
Build Y3 Draw5playall
	Felix: No! :)

18) Felix: T B3 R3 Singe
	Draw5PlayAll: Then I steal all yellow.

19) Draw5PlayAll: Trade Y3 R3 Unfold

20) Felix: Build B3 Singe

21) Draw5PlayAll: Trade Y3 G3 Draw5playall

22) Felix: T B3 Y3 Singe

23) Draw5PlayAll: Build Y3 Draw5playall

24) Felix: Build B3 Singe

25) Draw5PlayAll: Build G1 Draw5playall

26) Felix: Move R3 Singe Econ

27) Draw5PlayAll: Sacrifice Y2 Econ
Move Y2 Econ Unfold
Discover Y1 Econ R3 Denial

28) Felix: B Y2 Singe

29) Draw5PlayAll: Build G1 Draw5playall

30) Felix: B R1 Econ

31) Draw5PlayAll: Move G1 Draw5playall Unfold

32) Felix: Move B3 Singe Draw5playall

33) Draw5PlayAll: Attack B3 Draw5playall

34) Felix: Sacrifice Y2 Singe
Move B1 Singe Draw5playall
Move B1 Out Draw5playall
Catastrophe Draw5playall Blue

35) Draw5PlayAll: Trade Y1 B1 Unfold

36) Felix: Sacrifice B2 Felix
Trade B3 G3 Felix
Trade B2 R2 Out

37) Draw5PlayAll: Pass

38) Felix: S Y3 Singe
M R1 Econ Draw5playall
M R3 Econ Draw5playall
M R2 Out Draw5playall
C Draw5playall Red
	Felix: Good game!



34192)
Started: 2018.6.3, Ended: 2018.6.7
Participants: moverman (S), AstroPrincess (N)
Winner: moverman

1) AstroPrincess: Homeworld B2 R1 G3 Mine

2) moverman: Homeworld Y3 B2 G3

3) AstroPrincess: Build G1 Astroprincess

4) moverman: Build G1 Moverman

5) AstroPrincess: Trade G1 Y1 Astroprincess

6) moverman: Trade G1 R1 Moverman

7) AstroPrincess: Build Y1 Astroprincess

8) moverman: Build R1 Moverman

9) AstroPrincess: Discover Y1 Astroprincess R3 Nemo

10) moverman: Build G1 Moverman

11) AstroPrincess: Build G1 Astroprincess

12) moverman: Build R2 Moverman

13) AstroPrincess: Move G1 Astroprincess Nemo

14) moverman: Discover R2 Moverman Y1 Mwvz

15) AstroPrincess: Build Y2 Nemo

16) moverman: Move G1 Moverman Mwvz

17) AstroPrincess: Build Y2 Astroprincess

18) moverman: Build R2 Mwvz

19) AstroPrincess: Trade Y1 B1 Astroprincess

20) moverman: Build R2 Moverman

21) AstroPrincess: Build B1 Astroprincess

22) moverman: Build R3 Mwvz

23) AstroPrincess: Move B1 Astroprincess Nemo

24) moverman: Move R3 Mwvz Nemo

25) AstroPrincess: Move B1 Astroprincess Nemo

26) moverman: Sacrifice R2 Moverman
Attack Y2 Nemo
Attack Y1 Nemo

27) AstroPrincess: Build G1 Astroprincess
	moverman: I'm going to DC for a conference tomorrow and Tuesday. Probably won't be much playing, and probably not until late. But I'll check when I can...

28) moverman: Sacrifice R2 Mwvz
Attack B1 Nemo
Attack B1 Nemo

29) AstroPrincess: Build Y1 Astroprincess

30) moverman: Move Y1 Nemo Astroprincess

31) AstroPrincess: Move Y1 Astroprincess Nemo

32) moverman: Attack Y1 Nemo

33) AstroPrincess: Attack Y1 Astroprincess

34) moverman: Attack G1 Nemo

35) AstroPrincess: Trade Y1 B1 Astroprincess

36) moverman: Sacrifice Y2 Nemo
Move B1 Nemo Astroprincess
Move B1 Nemo Astroprincess
Catastrophe Astroprincess Blue

37) AstroPrincess: Build Y1 Astroprincess

38) moverman: Sacrifice G3 Moverman
Build Y2 Nemo
Build R2 Mwvz
Build G2 Nemo

39) AstroPrincess: Build Y2 Astroprincess

40) moverman: Move Y1 Nemo Astroprincess
Catastrophe Astroprincess Yellow



34191)
Variants: "Hard time"
Started: 2018.6.3, Ended: 2018.7.8
Participants: SilentTitan (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) SilentTitan: Homeworld R1 B3 G3
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	SilentTitan: And to you as well

4) SilentTitan: Build G1 Silenttitan

5) ts52: Trade G1 Y1 Ts52

6) SilentTitan: Trade G1 Y1 Silenttitan

7) ts52: Build Y2 Ts52

8) SilentTitan: Build Y2 Silenttitan

9) ts52: Build G1 Ts52

10) SilentTitan: Discover Y1 Silenttitan G2 Sol

11) ts52: Discover Y2 Ts52 G3 Kermit

12) SilentTitan: Build G1 Silenttitan

13) ts52: Trade G1 B1 Ts52

14) SilentTitan: Trade G1 R1 Silenttitan

15) ts52: Trade B1 R1 Ts52

16) SilentTitan: Build R2 Silenttitan

17) ts52: Move R1 Ts52 Kermit



34196)
Started: 2018.6.6, Ended: 2018.7.30
Participants: wil (S), Myhero777 (N)
Winner: wil

	wil: First game?  Do you play at home?
	wil: I am back...are you?


34052)
Variants: "Unrated"
Started: 2018.6.6, Ended: 2018.6.27
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) wil: H R3 B2 G3

3) Trydnt: Build G1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Trade G1 Y1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Build Y2 Trydnt

8) wil: Build Y2 Wil

9) Trydnt: Discover Y1 Trydnt G3 G3

10) wil: Discover Y1 Wil B1 B1

11) Trydnt: Build G1 Trydnt

12) wil: Build G1 Wil

13) Trydnt: Trade G1 B1 Trydnt

14) wil: Trade G1 B1 Wil

15) Trydnt: Move B1 Trydnt G3

16) wil: S G3 Wil
B Y2 B1
B Y3 B1
B Y3 Wil

17) Trydnt: Move Y1 G3 B1
Catastrophe B1 Y

18) wil: T Y3 G3 Wil

19) Trydnt: Build G1 Trydnt

20) wil: B Y1 Wil

21) Trydnt: Move Y2 Trydnt G3

22) wil: D Y1 Wil G1 G1

23) Trydnt: Trade G1 R1 Trydnt

24) wil: B Y1 G1

25) Trydnt: Build R1 Trydnt

26) wil: D Y1 G1 B3 B3

27) Trydnt: Build R1 Trydnt

28) wil: S G3 Wil
B Y2 G1
B Y3 B3
B Y3 Wil

29) Trydnt: Build Y3 G3

30) wil: S Y2 Wil
M Y1 G1 G3
M Y2 G1 G3
C G3 Y

31) Trydnt: Discover R1 Trydnt G3 Gee3

32) wil: Trade Y1 G1 B3

33) Trydnt: Build R2 Trydnt

34) wil: B Y1 B3

35) Trydnt: Trade R2 Y2 Trydnt

36) wil: D Y1 B3 G1 G1

37) Trydnt: Build R2 Trydnt

38) wil: Build Y1 G1

39) Trydnt: Move R1 Trydnt G3

40) wil: B Y2 G1

41) Trydnt: Move Y2 Trydnt Gee3

42) wil: M Y2 G1 B3

43) Trydnt: Build R2 Gee3

44) wil: T Y2 R2 B3

45) Trydnt: Build R3 G3

46) wil: B R3 B3

47) Trydnt: Trade R3 Y3 G3

48) wil: Trade R2 G2 B3

49) Trydnt: Build Y2 G3

50) wil: Build Y2 B3

51) Trydnt: Build B1 G3

52) wil: Move G2 B3 G1

53) Trydnt: Move R2 Gee3 G1

54) wil: B G1 G1

55) Trydnt: Attack G2 G1

56) wil: Build G2 G1
Catastrophe G1 G

57) Trydnt: Discover B1 G3 G1 G1

58) wil: B R2 B3

59) Trydnt: Build B2 G1

60) wil: M R3 B3 G1

61) Trydnt: Sacrifice Y2 Gee3
Move B1 G1 Wil
Move B2 G1 Wil
Catastrophe Wil B

62) wil: Build R2 B3

63) Trydnt: Sacrifice Y3 G3
Move R1 G3 G1
Move R1 G1 Wil
Move R1 Trydnt Wil



34198)
Variants: "Unrated"
Started: 2018.6.6, Ended: 2018.6.27
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) wil: H B3 Y2 G3

3) Trydnt: Build G1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Trade G1 R1 Trydnt

6) wil: Trade G1 R1 Wil

7) Trydnt: Build R2 Trydnt

8) wil: Build R2 Wil

9) Trydnt: Trade R1 Y1 Trydnt

10) wil: Trade R1 Y1 Wil

11) Trydnt: Build R1 Trydnt

12) wil: Build R1 Wil

13) Trydnt: Discover R1 Trydnt G3 G3

14) wil: Discover R1 Wil Y1 Y1

15) Trydnt: Build Y2 Trydnt

16) wil: S G3 Wil
B R2 Y1
B R3 Y1
B R3 Wil

17) Trydnt: Sacrifice Y1 Trydnt
Move R1 G3 Y1
Catastrophe Y1 R

18) wil: T R3 G3 Wil

19) Trydnt: Discover R2 Trydnt G3 G3

20) wil: B R1 Wil

21) Trydnt: Build Y1 Trydnt

22) wil: D R2 Wil G1 G1

23) Trydnt: Move Y1 Trydnt G3

24) wil: B R1 Wil

25) Trydnt: Build Y1 G3

26) wil: D R1 Wil B1 B1

27) Trydnt: Build G1 Trydnt

28) wil: S G3 Wil
B R2 G1
B R3 B1
B R3 Wil

29) Trydnt: Build R3 G3

30) wil: T R3 G3 Wil

31) Trydnt: Discover Y2 Trydnt R3 R3

32) wil: Trade R3 Y3 B1

33) Trydnt: Move Y1 G3 Trydnt

34) wil: B R3 Wil

35) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y3 R3
Build Y3 Trydnt

36) wil: T R1 B1 Wil

37) Trydnt: Trade Y1 B1 Trydnt

38) wil: Build G1 Wil

39) Trydnt: Build G2 Trydnt

40) wil: M G1 Wil B1

41) Trydnt: Move B1 Trydnt G3

42) wil: S Y3 B1
M R1 B1 G3
M R2 G1 G3
C G3 R
M R2 G1 G3

43) Trydnt: Sacrifice G2 Trydnt
Build Y1 R3
Build Y3 G3

44) wil: M Y1 Wil B1

45) Trydnt: Sacrifice Y1 R3
Move Y2 G3 B1

46) wil: S Y1 B1
M R2 G3 B1

47) Trydnt: Discover Y2 B1 G3 Gee3

48) wil: Build R1 Wil

49) Trydnt: Build Y1 G3

50) wil: Trade R1 Y1 Wil

51) Trydnt: Build B2 G3

52) wil: D B1 Wil G1 G1

53) Trydnt: Trade B1 R1 G3

54) wil: Build G2 Wil

55) Trydnt: Build G2 Trydnt

56) wil: S G3 Wil
B G2 B1
B G3 Wil
B B1 G1

57) Trydnt: Move Y3 G3 B1



34199)
Variants: "Unrated"
Started: 2018.6.6, Ended: 2018.7.6
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G2 B1 R3

2) wil: H B3 Y1 G3

3) Trydnt: Build R1 Trydnt

4) wil: B G1 Wil
	wil: B g1 wil

5) Trydnt: Build R1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Trade R3 Y3 Trydnt

8) wil: B G1 Wil

9) Trydnt: Build R1 Trydnt

10) wil: Trade G1 B1 Wil

11) Trydnt: Discover R1 Trydnt G3 G3

12) wil: Build G1 Wil

13) Trydnt: Build R2 Trydnt

14) wil: Trade G3 R3 Wil

15) Trydnt: Trade R1 B1 Trydnt

16) wil: B B2 Wil

17) Trydnt: Build B2 Trydnt

18) wil: T B2 R2 Wil

19) Trydnt: Move B2 Trydnt G3

20) wil: T R2 G2 Wil

21) Trydnt: Build B2 G3

22) wil: D B1 Wil Y2 Y2

23) Trydnt: Trade B2 Y2 G3

24) wil: B R1 Wil

25) Trydnt: Build B2 G3

26) wil: M G2 Wil Y2

27) Trydnt: Build R2 G3

28) wil: Move R1 Wil Y2

29) Trydnt: Discover R2 Trydnt G3 Gee3

30) wil: B R2 Wil

31) Trydnt: Build R3 Gee3

32) wil: B R3 Y2

33) Trydnt: Sacrifice Y2 G3
Move R1 G3 Y2
Move R2 G3 Y2
Catastrophe Y2 R

34) wil: Trade R3 G3 Wil

35) Trydnt: Move B1 Trydnt Gee3

36) wil: B B2 Y2

37) Trydnt: Build B3 Gee3

38) wil: T B2 Y2 Y2

39) Trydnt: Trade B3 Y3 Gee3

40) wil: B G1 Wil

41) Trydnt: Discover R2 Gee3 G2 G2

42) wil: S G3 Wil
B G1 Y2
B G3 Wil
B Y1 Wil

43) Trydnt: Move R3 Gee3 Y2

44) wil: Move Y1 Wil Y2

45) Trydnt: Sacrifice B1 Gee3
Trade R3 Y3 Y2
Catastrophe Y2 Y

46) wil: Discover G1 Wil G2 Gtoo

47) Trydnt: Trade B2 Y2 G3

48) wil: Sacrifice G3 Wil
Build G1 Gtoo
Build G3 Wil
Build R1 Wil

49) Trydnt: Build B1 G3

50) wil: Discover Y1 Wil B2 B2

51) Trydnt: Build B1 G3

52) wil: M R1 Wil Gtoo
	Trydnt: were you gonna blow it up anyway or try and move your stuff out?
	wil: depended on what you did..

53) Trydnt: Move B1 G3 G2
	Trydnt: I was gonna take the g2 so I could double grow on next turn.

54) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Wil
Build R2 Gtoo
	wil: yup, and then you'd make me waste that move..and my crew..

55) Trydnt: Build R3 G2
	Trydnt: in war, sacrifices must sometimes be made :(

56) wil: S G3 Wil
B G3 Wil
B R3 Gtoo
B R3 Wil
	wil: look, I made a pit of quicksand!

57) Trydnt: Sacrifice Y2 G3
Move R2 G2 G3
Move R2 G3 Gtoo
Catastrophe Gtoo R

58) wil: Trade R1 Y1 Wil

59) Trydnt: Build B2 G2

60) wil: M R3 Wil B2

61) Trydnt: Build B3 G3

62) wil: T R3 Y3 B2

63) Trydnt: Trade B2 Y2 G3

64) wil: B R1 Wil

65) Trydnt: Build B2 G2

66) wil: M R2 Wil B2

67) Trydnt: Trade B2 Y2 G2

68) wil: S G3 Wil
B G3 Wil
B R1 Wil
B R2 B2

69) Trydnt: Sacrifice Y3 Gee3
Move Y2 G2 Wil
Move Y2 G3 G2
Move Y2 G2 Wil
Catastrophe Wil Y

70) wil: B G3 Wil

71) Trydnt: Build B2 G2

72) wil: S Y3 B2
M G3 Wil G2
M G3 Wil G2
M G1 Wil G2
C G2 G

	Trydnt: haha yup. that streak of defends was getting a little high lol


34173)
Variants: "Unrated"
Started: 2018.6.8, Ended: 2018.7.14
Participants: Trydnt (S), Thorolf (N)
Winner: Trydnt

1) Thorolf: Homeworld B3 Y2 G3

2) Trydnt: Homeworld G2 B2 Y3 *

3) Thorolf: Build G1 Thorolf

4) Trydnt: Build Y1 Trydnt

5) Thorolf: Trade G3 R3 Thorolf

6) Trydnt: Build Y1 Trydnt

7) Thorolf: Build G1 Thorolf

8) Trydnt: Discover Y1 Trydnt G3 G3

9) Thorolf: Discover G1 Thorolf B1 Theta

10) Trydnt: Build Y1 G3

11) Thorolf: Trade G1 R1 Theta

12) Trydnt: Build Y2 Trydnt

13) Thorolf: Build G1 Thorolf

14) Trydnt: Discover Y1 Trydnt G3 Gee3

15) Thorolf: Trade G1 R1 Thorolf

16) Trydnt: Build Y2 Trydnt

17) Thorolf: Trade R3 Y3 Thorolf

18) Trydnt: Build Y3 Gee3

19) Thorolf: Move R1 Thorolf Theta

20) Trydnt: Trade Y2 R2 Trydnt

21) Thorolf: Build Y2 Thorolf

22) Trydnt: Sacrifice Y2 Trydnt
Move Y1 G3 Theta
Move Y1 Theta Thorolf
Catastrophe Thorolf Y

23) Thorolf: Trade R1 Y1 Theta

24) Trydnt: Build Y2 Trydnt

25) Thorolf: Build G1 Thorolf

26) Trydnt: Move Y2 Trydnt Thorolf

27) Thorolf: Trade G1 R1 Thorolf

28) Trydnt: Sacrifice R2 Trydnt
Attack R1 Thorolf
Attack G1 Thorolf



34156)
Variants: "Unrated, Hard time"
Started: 2018.6.8, Ended: 2018.6.13
Participants: Thorolf (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) Thorolf: Homeworld B2 Y3 G3
	wil: thx for the game..

3) wil: Build G1 Wil
	wil: Oops!  Your opening with a small yellow leaves only one small in the bank, which will give me the immediate.control of the yellows
	wil: I'd recommend switching your colors... Of.course you could again watch how it plays out.  

4) Thorolf: Build G1 Thorolf

5) wil: T G1 Y1 Wil

6) Thorolf: Build G1 Thorolf

7) wil: B Y1 Wil

8) Thorolf: Trade G3 R3 Thorolf
	wil: Again first part of this game is follow the leader...otherwise you can get aced out of an economy.  Bank management, not letting the other person block you out of a color, and conversely not taking the last of one size and letting them control.larger pieces.

9) wil: B G1 Wil
	wil: Learning this is like learning chess. Jess was my favorite game for 50 years... This is clearly taking over

10) Thorolf: Build G2 Thorolf

11) wil: B G2 Wil

12) Thorolf: Discover G2 Thorolf B1 Delta

13) wil: Trade G1 R1 Wil

14) Thorolf: Build R1 Thorolf

15) wil: Discover Y1 Wil B2 B2

16) Thorolf: Move R1 Thorolf Delta

17) wil: Build Y2 Wil

18) Thorolf: Build G1 Delta

19) wil: D Y2 Wil Y2 Y2

20) Thorolf: Move R3 Thorolf Delta

21) wil: Sacrifice G3 Wil
Build Y2 Y2
Build Y3 B2
Build Y3 Wil

22) Thorolf: Build G2 Thorolf

23) wil: Sacrifice Y3 B2
Move G2 Wil Y2
Move G2 Y2 Delta
Move G2 Delta Thorolf
Catastrophe Thorolf G

	wil: every monopoly can hurt, in blue can keep you from changing and creates that queen factory, in red keeps you from attacking and leaves you vulnerable, in green keeps you from building, in yellow keeps you from moving and creating new territory.
	wil: always at risk when you have only one color in your homeworld.  You are playing my strategy, I lost 90% of my first 50 games...  insuring someone doesn't block you out of a color is important.

	wil: challenge me anytime... 


34197)
Started: 2018.6.8, Ended: 2018.8.20
Participants: ts52 (S), Thorolf (N)
Winner: ts52

1) Thorolf: Homeworld B3 Y2 G3

2) ts52: Homeworld B1 Y2 G3

3) Thorolf: Build G1 Thorolf

4) ts52: Build G1 Ts52

5) Thorolf: Discover G1 Thorolf R1 Iota
	ts52: Have a good game!

6) ts52: Trade G1 B1 Ts52

7) Thorolf: Build G1 Iota

8) ts52: Build B1 Ts52

9) Thorolf: Build G1 Iota

10) ts52: Build G2 Ts52



34184)
Started: 2018.6.11, Ended: 2018.8.29
Participants: Babamots (S), Thorolf (N)
Winner: Babamots

1) Thorolf: Homeworld B3 Y2 G3
	Babamots: Looks like you're juggling quite a few games at once. I get confused if I play more than about three. I can challenge you later if you want to finish up some other games first.

2) Babamots: Homeworld Y3 B1 G3

3) Thorolf: Build G1 Thorolf
	Babamots: Good luck!

4) Babamots: Build G1 Babamots

5) Thorolf: Trade G1 B1 Thorolf

6) Babamots: Trade G1 B1 Babamots

7) Thorolf: Discover B1 Thorolf G1 Sigma

8) Babamots: Build B2 Babamots

9) Thorolf: Build B2 Sigma

10) Babamots: Discover B2 Babamots G2 Bajor

11) Thorolf: Build B2 Sigma

12) Babamots: Build B3 Bajor
	Babamots: Would you like any advice about your moves? Since you've taken the last medium blue, you've opened up the larges for me to build (getting more larges is a big deal). Since "sigma" is crowded with blue already, you won't get to build a large to stay even with me.
	Babamots: You're welcome to undo and try something else if you like.
	Babamots: Trading one of those blues for a red or yellow might be better.
	Babamots: In particular, I think I would have suggested trading the b2 for a y2. That way, if I try to greedily sacrifice my g3 to build three blues at once, you could sacrifice the y2 to move your remaining b1 to cause a catastrophe on me.
	Babamots: Well, it's been a couple of days, so I guess I'll just move. I'm perfectly happy to take a b3, thank you :-).

13) Thorolf: Trade B2 R2 Sigma

14) Babamots: Build G1 Babamots

	Babamots: Is everything OK? Looks like you've disappeared.


34209)
Variants: "Unrated, Hard time"
Started: 2018.6.11, Ended: 2018.6.17
Participants: Felix (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 Y1 G3

2) Felix: Homeworld B1 Y2 G3
	Babamots: Good luck!

3) Babamots: Build G1 Babamots
	Felix: You too! Let's make this a bit interesting :)
	Babamots: I think I played small universe once against a beginner. Not sure what the implications will be here.

4) Felix: B G1 Felix

5) Babamots: Trade G1 B1 Babamots
	Felix: Hopefully the implications will be fun! I even contemplating going micro universe with two large stars, but I don't think either of us are ready for that insanity yet

6) Felix: Trade G1 Y1 Felix

7) Babamots: Build B1 Babamots

8) Felix: Build Y1 Felix

9) Babamots: Discover B1 Babamots G3 Betazed

10) Felix: Discover Y1 Felix B3 Out

11) Babamots: Sacrifice G3 Babamots
Build B2 Betazed
Build B2 Betazed
Build B3 Babamots

12) Felix: Sacrifice G3 Felix
Build Y2 Out
Build Y2 Out
Build Y3 Felix

13) Babamots: Trade B3 G3 Babamots
	Felix: I feel like a synchronized swimmer!

14) Felix: Trade Y3 G3 Felix
	Draw5PlayAll: How?
	Felix: I'm basically just copying his moves at this point, but in blue instead of yellow.

15) Babamots: Build B3 Babamots

16) Felix: Build Y3 Felix

17) Babamots: Discover B3 Babamots B3 Galorndon

18) Felix: Move Y1 Out Babamots

19) Babamots: Trade B3 Y3 Galorndon

20) Felix: Trade Y3 R3 Felix

21) Babamots: Trade B2 R2 Betazed

22) Felix: Move Y2 Out Babamots
	Babamots: OK, not where I thought we were going with this.

23) Babamots: Sacrifice G3 Babamots
Build B2 Betazed
Build B3 Babamots
Build Y3 Galorndon
	Felix: :)

24) Felix: Discover Y1 Felix G3 Grip

25) Babamots: Trade B1 R1 Babamots

26) Felix: Build Y3 Grip

27) Babamots: Discover Y3 Galorndon G2 Cardassia

28) Felix: Build R1 Felix

29) Babamots: Attack Y2 Babamots

30) Felix: Sacrifice Y2 Out
Move Y1 Grip Babamots
Move R3 Felix Betazed
Catastrophe Babamots Yellow

31) Babamots: Build R1 Betazed

32) Felix: B R2 Felix

33) Babamots: Build R2 Betazed
Catastrophe Betazed R
	Babamots: Yeah, it's never advantageous to leave a catastrophe un-triggered (in 2-player). Although in this case, I would have just done it for you.

34) Felix: B G1 Felix
	Felix: Yeah, I just forgot to trigger it! Although before you captured my yellow I was considering moving another in and leaving the cat un triggered so you couldn't build any of the yellows yet. I figured since I controlled all the ships that it wouldn't be as risky

35) Babamots: Trade B2 R2 Betazed

36) Felix: D R2 Felix B3 Comfrey

37) Babamots: Build B1 Betazed

38) Felix: T R2 B2 Comfrey

39) Babamots: Sacrifice Y3 Cardassia
Move B3 Babamots Betazed
Move B3 Betazed Felix
Move Y3 Galorndon Felix

40) Felix: S G3 Felix
B G1 Felix
B G1 Felix
B B3 Comfrey

41) Babamots: Trade B3 G3 Felix
Catastrophe Felix G

42) Felix: S Y3 Grip
M B2 Comfrey Felix
M B3 Comfrey Felix
Pass

43) Babamots: Sacrifice Y3 Felix
Move B1 Betazed Felix
Catastrophe Felix B
Move R2 Betazed Felix
Pass
	Babamots: I'm probably not going to be able to sleep wondering whether you'll find a way out of this.

	Babamots: Whew, that was a pretty different game. I spent most of it feeling frightened. I think I like regular-size universe better. It's move forgiving.

Your gambit have me pause for sure. That wasn't a scenario I specifically mapped out.

Good games! The tournament had been quite a ride. I'm about ready to start a fresh one.
	Felix: Interestingly, I don't think there was any move I could make here at the end. Very interesting game for sure! A textbook example of why only destroying half the opponent's start with no immediate plan for the rest is dangerous. Congrats and well played!
	Babamots: I had never before seen a position where passing was the only option, so it was fun to arrange it.

You've taught me a lot this tournament. Valiantly fought, sir!


34211)
Variants: "Hard time"
Started: 2018.6.12, Ended: 2018.7.4
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Trydnt: Homeworld Y3 B2 G3

3) wil: Build G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: Trade G1 Y1 Wil

6) Trydnt: Trade G1 Y1 Trydnt

7) wil: Build Y2 Wil

8) Trydnt: Build Y2 Trydnt

9) wil: D Y1 Wil G3 G3

10) Trydnt: Discover Y1 Trydnt G1 G1

11) wil: Build G1 Wil

12) Trydnt: Discover Y1 G1 B2 B2

13) wil: T G1 R1 Wil

14) Trydnt: Trade Y2 R2 Trydnt

15) wil: Build Y2 G3

16) Trydnt: Build R1 Trydnt

17) wil: D Y2 G3 G1 G1

18) Trydnt: Build G1 Trydnt

19) wil: S G3 Wil
B Y2 G3
B Y3 G1
B Y3 Wil

20) Trydnt: Discover R1 Trydnt G1 Gee1

21) wil: T Y2 G2 Wil



34202)
Variants: "Unrated"
Started: 2018.6.14, Ended: 2018.7.31
Participants: Trydnt (S), Draw5PlayAll (N)
Winner: Trydnt

1) Draw5PlayAll: Pass

2) Trydnt: Homeworld B2 Y1 G3

3) Draw5PlayAll: Homeworld B3 R1 G3

4) Trydnt: Build G1 Trydnt

5) Draw5PlayAll: Build G1 Draw5playall

6) Trydnt: Trade G1 Y1 Trydnt

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) Trydnt: Build Y2 Trydnt

9) Draw5PlayAll: Build Y2 Draw5playall

10) Trydnt: Discover Y1 Trydnt G3 G3

11) Draw5PlayAll: Discover Y1 Draw5playall G2 Maybenot

12) Trydnt: Build G1 Trydnt

13) Draw5PlayAll: Build G1 Draw5playall

14) Trydnt: Trade G1 R1 Trydnt

15) Draw5PlayAll: Trade G1 R1 Draw5playall

16) Trydnt: Build R2 Trydnt
	Draw5PlayAll: So now I guess you do to me what I just tried to do to you.

17) Draw5PlayAll: Move R1 Draw5playall Maybenot

18) Trydnt: Move R1 Trydnt G3

19) Draw5PlayAll: Build R2 Maybenot

20) Trydnt: Build R2 G3

21) Draw5PlayAll: Sacrifice R1 Maybenot
Pass

22) Trydnt: Build G1 Trydnt

23) Draw5PlayAll: Build G1 Draw5playall

24) Trydnt: Trade G1 B1 Trydnt

25) Draw5PlayAll: Trade G1 B1 Draw5playall

26) Trydnt: Build G1 Trydnt

27) Draw5PlayAll: Move B1 Draw5playall Maybenot

28) Trydnt: Move B1 Trydnt G3

29) Draw5PlayAll: Build G1 Draw5playall

30) Trydnt: Discover Y2 Trydnt R3 R3

31) Draw5PlayAll: Discover G1 Draw5playall B2 Hmmm

32) Trydnt: Move R1 G3 Hmmm

33) Draw5PlayAll: Sacrifice G1 Hmmm
Build G1 Draw5playall

34) Trydnt: Sacrifice G3 Trydnt
Build R1 G3
Build R3 Hmmm
Build R3 Trydnt
	Draw5PlayAll: Darnyou

35) Draw5PlayAll: Build B1 Maybenot

36) Trydnt: Trade R1 G1 Hmmm

37) Draw5PlayAll: Build R1 Maybenot

38) Trydnt: Build G2 Hmmm

39) Draw5PlayAll: Discover G1 Draw5playall B2 Temp

40) Trydnt: Build B3 G3

41) Draw5PlayAll: Move B1 Maybenot G3

42) Trydnt: Sacrifice B1 G3
Trade R3 Y3 Hmmm

43) Draw5PlayAll: Build B1 G3

44) Trydnt: Sacrifice R2 G3
Attack B1 G3
Attack B1 G3

45) Draw5PlayAll: Build B3 Maybenot

46) Trydnt: Sacrifice Y2 R3
Move B1 G3 Maybenot
Move B1 G3 Maybenot
Catastrophe Maybenot B

47) Draw5PlayAll: Build Y2 Draw5playall

48) Trydnt: Discover R2 Trydnt Y3 Y3

49) Draw5PlayAll: Move Y2 Draw5playall Temp

50) Trydnt: Sacrifice G2 Hmmm
Build Y2 G3
Build Y3 Hmmm

51) Draw5PlayAll: Build G2 Draw5playall

52) Trydnt: Move B3 G3 Maybenot

53) Draw5PlayAll: Sacrifice Y1 Maybenot
Discover R2 Maybenot B1 Givingup
	Draw5PlayAll: It actually let me do that?!?

54) Trydnt: Sacrifice R1 G3
Attack R1 Maybenot
	Trydnt: my new favorite gambit (for when you're outrageously in the lead)

55) Draw5PlayAll: Build Y1 Draw5playall

56) Trydnt: Build G2 Hmmm

57) Draw5PlayAll: Build G3 Temp

58) Trydnt: Sacrifice Y3 Hmmm
Move G1 Hmmm Draw5playall
Move G2 Hmmm Draw5playall
Catastrophe Draw5playall G
Move B3 Maybenot Draw5playall

59) Draw5PlayAll: Sacrifice G1 Temp
Build Y3 Draw5playall

60) Trydnt: Move Y3 Hmmm Draw5playall
Catastrophe Draw5playall Y



34218)
Variants: "Hard time"
Started: 2018.6.15, Ended: 2018.7.25
Participants: Laurie_Menke (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) Laurie_Menke: Homeworld R3 B2 G3
	Laurie_Menke: Hi mneme! Have fun!

3) mneme: Build G1 Mneme
	mneme: You too!

4) Laurie_Menke: Build G1 Laurie_menke

5) mneme: Trade G1 Y1 Mneme

6) Laurie_Menke: Trade G1 Y1 Laurie_menke

7) mneme: Build G1 Mneme

8) Laurie_Menke: Build G1 Laurie_menke

9) mneme: Trade G1 B1 Mneme

10) Laurie_Menke: Build G1 Laurie_menke

11) mneme: Build B1 Mneme

12) Laurie_Menke: Discover G1 Laurie_menke Y1 Yellow

13) mneme: Build Y2 Mneme

14) Laurie_Menke: Build Y2 Laurie_menke

15) mneme: Discover Y1 Mneme G3 Chartruse

16) Laurie_Menke: Move Y1 Laurie_menke Yellow

17) mneme: Move B1 Mneme Chartruse

18) Laurie_Menke: Discover Y1 Yellow R3 Red

19) mneme: Sacrifice G3 Mneme
Build B1 Chartruse
Build B2 Chartruse
Build B3 Mneme

20) Laurie_Menke: Sacrifice G3 Laurie_menke
Build Y2 Red
Build Y3 Laurie_menke
Build G1 Laurie_menke

21) mneme: Build Y3 Chartruse

22) Laurie_Menke: Discover G1 Yellow Y3 Yoink

23) mneme: Discover B2 Chartruse R1 Fuchsia

24) Laurie_Menke: Discover G1 Laurie_menke Y1 Sunshine

25) mneme: Move Y3 Chartruse Fuchsia

26) Laurie_Menke: Discover G1 Sunshine B3 Shadow

27) mneme: Build B3 Chartruse

28) Laurie_Menke: Build G2 Shadow

29) mneme: Trade B3 R3 Chartruse

30) Laurie_Menke: Trade Y3 G3 Laurie_menke

31) mneme: Trade B3 G3 Mneme
	Laurie_Menke: Well, that's menacing!

32) Laurie_Menke: Trade G1 Y1 Shadow
	Laurie_Menke: Oops... that was a bad idea... sorry!

33) mneme: Sacrifice G3 Mneme
Build Y3 Chartruse
Build B3 Mneme
Build B3 Fuchsia
	Laurie_Menke: I am not liking the way things are going...

34) Laurie_Menke: Sacrifice Y2 Red
Move Y1 Red Mneme
Move Y1 Shadow Mneme
	mneme: I think they're going just fine! <eg>

I should really play a bunch of unrated games outside my comfort zone, though.
	Laurie_Menke: Since you're probably one of the top 20 players in the world, it's pretty hard to get outside your comfort zone!  ;)  But wil is a great opponent for that sort of thing. He loves thinking outside the box.  :)
	Laurie_Menke: Just an FYI... I'll be camping starting later today until Monday. I have the time on the clock, and I need time to think about what to do here, so I probably won't take my move until Tuesday.
	mneme: Wow, I don't know how but my earlier message didn't get through: Something like "Admittedly, I'm pretty experienced at regular play, but I have next to no experience with microverse and small universe play, which given my defensive strategy is a big weakness".
	mneme: That's fine; I'll not expect a move from you for a few days.  It's not hard time in any case, so if your clock runs down I'll be pretty forgiving for a while in any case.

	Laurie_Menke: I won't let it run down... don't worry. I'll be making a move tomorrow.  :)  As for the micro and small universes, I'm happy to play but have equally little experience. Wil is really the guy you want.

35) mneme: Sacrifice Y2 Mneme
Move Y3 Fuchsia Laurie_menke
Move B3 Fuchsia Laurie_menke

36) Laurie_Menke: Trade G2 R2 Shadow
	mneme: It's true -- WIl's the only person I can think of who's done some fairly serious play in microverses and SUs.  I did try a microverse on defense recently, but...it was short (I did not lose): http://superdupergames.org/main.html?page=play_homeworlds&num=34333
	Laurie_Menke: Well, now that the tournament has started, I guess I know what to do to give myself at least a bit of a chance!  ;)
	Laurie_Menke: BTW... ouch on the three 3-sized ships you just built!  :/

37) mneme: Sacrifice R3 Chartruse
Attack G3 Laurie_menke
Attack G1 Laurie_menke
Attack Y2 Laurie_menke

	Laurie_Menke: Thanks for the game, mneme! Hopefully I'll do better in the tournament!  Congrats!  :)
	mneme: Thanks -- good game, and good luck in the tournament!

Are you going to be at Gencon?
	Laurie_Menke: Thanks! Yes... Looney Labs will have a tiny booth and I'll be there! If you'll be there, too, come stop by and play with us!  :)
	mneme: Will do; see you there!



34203)
Variants: "Unrated, Hard time"
Started: 2018.6.18, Ended: 2018.7.15
Participants: Felix (S), wil (N)
Winner: wil

1) wil: Homeworld B2 Y1 G3
	wil: good run in the tourney!  I doubt I'll make it that far in the next one!

2) Felix: Homeworld R2 B3 G3
	Felix: Oh, I'm sure I won't either, if the pool of players is any more skilled, and it probably will be! I think it was a fluke I made it as far as I did!

3) wil: B G1 Wil

4) Felix: Build G1 Felix

5) wil: T G1 Y1 Wil

6) Felix: T G1 Y1 Felix

7) wil: Build G1 Wil

8) Felix: Build Y2 Felix

9) wil: B Y2 Wil

10) Felix: Discover Y1 Felix B1 Grinch

11) wil: D Y1 Wil G3 G3

12) Felix: Build G1 Felix

13) wil: Trade G1 B1 Wil

14) Felix: Trade G1 B1 Felix

15) wil: B B2 Wil

16) Felix: D B1 Felix G1 Out

17) wil: T B1 R1 Wil

18) Felix: Build Y2 Felix

19) wil: B Y3 G3

20) Felix: Discover Y2 Felix G1 Rim

21) wil: M Y3 G3 Rim

	Felix: Oops!
	wil: ach...phoeey


34225)
Started: 2018.6.18, Ended: 2018.9.8
Participants: Felix (S), ts52 (N)
Winner: Felix

1) ts52: Homeworld B1 Y2 G3

2) Felix: Homeworld R2 B3 G3

3) ts52: Build G1 Ts52
	Felix: Hello again! Have fun and good luck

4) Felix: Build G1 Felix
	ts52: Hi! ;) Thanks! You too.

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: B B2 Felix

9) ts52: Discover B2 Ts52 G3 Kermit

10) Felix: Trade B1 Y1 Felix

11) ts52: Trade B1 Y1 Ts52

12) Felix: B B1 Felix

13) ts52: Build G1 Ts52

14) Felix: Trade B1 R1 Felix

15) ts52: Trade G1 R1 Ts52
	Felix: Sorry for the delay! Thanks for not counting me out.

16) Felix: Build Y1 Felix
	ts52: No worries.

17) ts52: Build Y2 Ts52

18) Felix: Build Y2 Felix

19) ts52: Move Y1 Ts52 Kermit

20) Felix: Sacrifice Y1 Felix
Discover Y1 Felix B1 Rim

21) ts52: Build B1 Kermit

22) Felix: Discover B2 Felix G1 Conk

23) ts52: Build G1 Ts52

24) Felix: Build B2 Conk

25) ts52: Build B3 Kermit

26) Felix: S Y1 Rim
M B2 Conk Kermit
C Kermit Blue

27) ts52: Trade G1 B1 Ts52

28) Felix: Build B1 Conk

29) ts52: Move B1 Ts52 Kermit

30) Felix: Trade B1 Y1 Conk

31) ts52: Build G1 Ts52

32) Felix: Move R1 Felix Conk

33) ts52: Discover G1 Ts52 B3 Gonzo

34) Felix: Move B2 Conk Kermit

35) ts52: Build G1 Ts52

36) Felix: Build G2 Felix

37) ts52: Build G2 Gonzo

38) Felix: Trade B2 R2 Kermit

39) ts52: Sacrifice Y1 Kermit
Discover B1 Kermit Y1 Bigbird

40) Felix: Build Y1 Conk

41) ts52: Discover G1 Ts52 Y3 Zoe

42) Felix: Sacrifice G2 Felix
Build Y3 Felix
Build Y3 Conk

43) ts52: Move Y2 Ts52 Gonzo

44) Felix: Move Y3 Conk Gonzo

45) ts52: Move G2 Gonzo Bigbird

46) Felix: Sacrifice R2 Kermit
Attack G1 Gonzo
Attack Y2 Gonzo

47) ts52: Build G2 Ts52

48) Felix: Build G2 Gonzo

49) ts52: Sacrifice G2 Ts52
Build G2 Zoe
Build G3 Bigbird

50) Felix: Trade G1 B1 Gonzo

51) ts52: Sacrifice G3 Bigbird
Build G1 Ts52
Build G3 Bigbird
Build B2 Bigbird

52) Felix: Move B1 Gonzo Conk

53) ts52: Trade B2 R2 Bigbird

54) Felix: Build B2 Conk

55) ts52: Build B2 Bigbird

56) Felix: Discover B1 Conk R3 Post

57) ts52: Move G3 Bigbird Post

58) Felix: Sacrifice G3 Felix
Build G3 Gonzo
Build B2 Conk
Build B3 Conk

59) ts52: Attack B1S Post

60) Felix: Sacrifice Y3 Felix
Move Y3 Gonzo Ts52
Move G3 Gonzo Ts52
Move G2 Gonzo Ts52
Catastrophe Ts52 Green

61) ts52: Move G1 Zoe Ts52

62) Felix: Trade B3 R3 Conk

63) ts52: Sacrifice G3 Post
Build G1 Ts52
Build G2 Ts52
Build G3 Zoe

64) Felix: Sacrifice R3 Conk
Attack G2 Ts52
Attack G1 Ts52
Attack R1 Ts52

65) ts52: Sacrifice G3 Zoe
Build G3 Zoe
Build G3 Ts52
Build G3 Ts52

66) Felix: Catastrophe Ts52 Green
Pass
	ts52: I think I've dragged this out as long as I can.
	Felix: You dragged it out longer than I expected! Great defense and fun game! See you in the tourney next, I suppose :)



34235)
Variants: "Unrated"
Started: 2018.6.18, Ended: 2020.1.1
Participants: bhorner (S), alnith (N)
Winner: bhorner

1) alnith: Homeworld B2 R1 G3
	bhorner: Looks like I'm going first.  The commands are listed at the top.  You can abbreviate, and I usually abbreviate maximally.  For example these are equivalent:
verbose:
  homeworld r2 b1 g3
abbreviated:
  h r2 b1 g3

2) bhorner: Homeworld R3 B1 G3
	bhorner: Well, actually, it looks like you're going first.  :)
	alnith: I have taken the first move!

3) alnith: Build G1 Alnith

4) bhorner: Build G1 Bhorner

5) alnith: Trade G1 Y1 Alnith
	bhorner: I have taken the second move!  :)

6) bhorner: Trade G1 Y1 Bhorner

7) alnith: Build G1 Alnith
	bhorner: The history here is good for going back to find where you messed up too.  Plus having more time to think about your move is nice.  :)

8) bhorner: Build G1 Bhorner
	alnith: Do they keep the logs after the game ends? It might make for some nice training data.
	bhorner: Yes, forever, I've downloaded all the games.  I used it to test my rules evaluator when I was trying to make an AI.  :)

9) alnith: Trade G1 R1 Alnith
	bhorner: The last game we played that started like this got very messy!

10) bhorner: T G1 R1 Bhorner

11) alnith: Build G1 Alnith
	Draw5PlayAll: How many people are making AIs for this game?!
And how many people are actually getting anywhere?
	bhorner: I know of several attempts, not aware of any getting anywhere.  The branching factor grows too fast for standard tree searching techniques (like for chess).

12) bhorner: Build R2 Bhorner
	Draw5PlayAll: More manageable if you do it by individual actions rather than turns, but still very high.
	bhorner: I don't know what that means.  :)

13) alnith: Build R2 Alnith

14) bhorner: Discover R2 Bhorner G2 Boogar

15) alnith: Discover R2 Alnith G3 Qonos

16) bhorner: Build G1 Bhorner

17) alnith: Trade R1 B1 Alnith
	bhorner: sorry that took so long!

18) bhorner: T G1 B1 Bhorner

19) alnith: Move B1 Alnith Qonos

20) bhorner: Build B2 Bhorner
	alnith: No worries! I'm totally in the proverbial glass house w.r.t. this
	Draw5PlayAll: I detect a Trekkie

21) alnith: Build B2 Qonos

22) bhorner: Discover B1 Bhorner Y2 Sun

23) alnith: Trade B1 Y1 Qonos

24) bhorner: B Y2 Bhorner

25) alnith: Move R2 Qonos Sun

26) bhorner: D B1 Sun Y3 Nova

27) alnith: Move G1 Alnith Qonos

28) bhorner: D Y1 Bhorner G2 Tree

29) alnith: Build Y2 Qonos

30) bhorner: S G3 Bhorner
B Y3 Bhorner
B Y3 Tree
B R1 Boogar

31) alnith: Move G1 Qonos Sun

32) bhorner: Move Y2 Bhorner Boogar

33) alnith: Move B2 Qonos Sun

34) bhorner: Trade B1 G1 Nova

35) alnith: Move R2 Sun Bhorner

36) bhorner: Attack R2 Bhorner



34187)
Variants: "Unrated"
Started: 2018.6.19, Ended: 2018.8.13
Participants: Felix (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3

2) Felix: Homeworld B1 G3 R3

3) Trydnt: Build G1 Trydnt
	Felix: Hey again, have fun! :) I'm gonna try something a bit different.

4) Felix: Build R1 Felix

5) Trydnt: Build G1 Trydnt

6) Felix: Trade R1 B1 Felix

7) Trydnt: Trade G1 B1 Trydnt

8) Felix: Build B2 Felix

9) Trydnt: Build B2 Trydnt

10) Felix: T B1 Y1 Felix

11) Trydnt: Trade B1 Y1 Trydnt

12) Felix: B R1 Felix

13) Trydnt: Trade G1 R1 Trydnt

14) Felix: Build B1 Felix

15) Trydnt: Discover B2 Trydnt G1 G1

16) Felix: Discover B1 Felix G2 Rim

17) Trydnt: Discover Y1 Trydnt G1 Gee1

18) Felix: Build B1 Felix

19) Trydnt: Build B3 G1

20) Felix: Build B3 Rim

21) Trydnt: Trade B3 Y3 G1

22) Felix: Trade B1 G1 Felix

23) Trydnt: Build G2 Trydnt

24) Felix: Discover G1 Felix Y2 Opus

25) Trydnt: Build R1 Trydnt

26) Felix: Move R1 Felix Rim

27) Trydnt: Move B2 G1 Opus

28) Felix: Trade B3 Y3 Rim

29) Trydnt: Sacrifice G2 Trydnt
Build Y1 Gee1
Build Y2 G1

30) Felix: B Y2 Rim

31) Trydnt: Sacrifice Y2 G1
Move Y1 Gee1 Rim
Move Y1 Gee1 Rim
Catastrophe Rim Y

32) Felix: Build R2 Rim

33) Trydnt: Move Y3 G1 Rim

34) Felix: Build R2 Rim

35) Trydnt: Discover R1 Trydnt Y1 Y1

36) Felix: Trade R2 Y2 Rim
	Felix: Sorry for the delay!

37) Trydnt: Build R2 Trydnt

38) Felix: Sacrifice B2 Felix
Trade R1 Y1 Rim
Trade R2 Y2 Rim

39) Trydnt: Catastrophe Rim Y
Move R1 Y1 Rim

40) Felix: Build B1 Rim

41) Trydnt: Sacrifice R2 Trydnt
Attack B1 Rim
Attack B1 Rim

42) Felix: Build R1 Felix

43) Trydnt: Build R2 Rim

44) Felix: Build R2 Felix

45) Trydnt: Trade R2 Y2 Rim

46) Felix: Move R3 Felix Rim

47) Trydnt: Sacrifice G3 Trydnt
Build R2 Rim
Build R2 Rim
Build R3 Trydnt
Catastrophe Rim R

48) Felix: Build Y1 Felix

49) Trydnt: Trade R3 G3 Trydnt

50) Felix: Discover Y1 Felix Y2 Rom

51) Trydnt: Build G1 Trydnt
	Felix: Oh, poo. 

52) Felix: Sacrifice G1 Opus
Build Y1 Rom

53) Trydnt: Build Y3 Rim

54) Felix: Build Y3 Felix

55) Trydnt: Sacrifice G1 Trydnt
Build B2 Opus

56) Felix: Sacrifice Y1 Rom
Move Y1 Felix Rim

57) Trydnt: Trade Y2 R2 Rim

58) Felix: Build Y1 Rim

59) Trydnt: Sacrifice R2 Rim
Attack Y1 Rim
Attack Y1 Rim

60) Felix: Discover Y1 Rom G1 Ram

61) Trydnt: Discover Y1 Rim G1 G1

62) Felix: Build Y2 Ram

63) Trydnt: Build Y2 G1

64) Felix: Trade R2 G2 Felix

65) Trydnt: Sacrifice B2 Opus
Trade B2 G2 Opus
Trade B1 G1 Rim

66) Felix: Trade G2 B2 Felix

67) Trydnt: Build B1 Rim

68) Felix: Discover B2 Felix G2 Out

69) Trydnt: Build G3 Opus

70) Felix: Build B2 Out

71) Trydnt: Move B1 Rim G1

72) Felix: Move Y2 Ram Out

73) Trydnt: Sacrifice G3 Opus
Build G3 Opus
Build B3 G1
Build B3 Rim

74) Felix: Move B2 Out Ram

75) Trydnt: Discover G3 Opus B3 B3

76) Felix: Build R1 Felix

77) Trydnt: Build R2 Trydnt

78) Felix: Move R1 Felix Out

79) Trydnt: Move B3 Rim Ram

80) Felix: Sacrifice Y1 Ram
Move B2 Ram Out

81) Trydnt: Move B3 G1 Out

82) Felix: Sacrifice Y2 Out
Discover B2 Out Y1 Safety
Move B2 Out Safety

83) Trydnt: Sacrifice R1 Trydnt
Attack R1 Out

84) Felix: Build R1 Felix

85) Trydnt: Move Y1 G1 Out

86) Felix: Discover R1 Felix Y2 Grump

87) Trydnt: Sacrifice G3 B3
Build G3 Rim
Build B3 Out
Build R2 Out

88) Felix: Trade B2 R2 Safety

89) Trydnt: Move G3 Rim Felix
	Felix: It's looking pretty grim for me!

90) Felix: Attack G3 Felix
	Trydnt: it's not looking good no but I've seen you pull some sneaky recoveries in the past

91) Trydnt: Sacrifice Y2 G1
Move G1 Rim Felix
Move G2 Opus Felix
Catastrophe Felix G

92) Felix: Pass

93) Trydnt: Sacrifice Y3 Rim
Move B1 Rim Felix
Move B3 Out Felix
Move B3 Out Felix
Catastrophe Felix B

	Felix: Well done!
	Trydnt: good game 


34233)
Variants: "Unrated"
Started: 2018.6.21, Ended: 2018.7.2
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3 Dlwillson

2) Felix: H B1 G3 B3 *
	dlwillson: Hi Felix! Long time, no play! If my turns are slow, please forgive me. My top priority is proposing for SFS DevOps Camp.
	Felix: Hello! I know, it's been a minute. No pressure to make moves quickly. Sounds like you're busy! I am too. We just had a new baby AND moved into a new house with the last several weeks, so I don't mind if it's a slow game :)
	Felix: Even if you have to miss the 7 day timer, I won't end the game

3) dlwillson: Build G1 Dlwillson
	Felix: Having a small universe might help keep the game from dragging on too much :)

4) Felix: Build B1 Felix

5) dlwillson: Build G1 Dlwillson

6) Felix: Trade B3 Y3 Felix
	dlwillson: I thought about trading to blue, but this seemed more interesting. I'll know whether it was a mistake shortly.

7) dlwillson: Discover G1 Dlwillson Y2 Sold
	Felix: Interesting indeed!

8) Felix: B B2 Felix

9) dlwillson: B G1 Sold

10) Felix: Discover B1 Felix G2 Out

11) dlwillson: M G1 Sold Felix

12) Felix: Trade B2 R2 Felix

13) dlwillson: S G3 Dlwillson
B G2 Felix
B G2 Sold
B G3 Dlwillson
	Felix: Ouch, can't believe I fell for that. Very nice maneuver! I admit I actually forgot we were in a small universe, and I'm the one who made it!

14) Felix: Build R1 Felix
	dlwillson: Well, I think it's going to work out. ;-)

15) dlwillson: Sacrifice G2 Sold
Build G2 Felix
Build G3 Dlwillson
Catastrophe Felix G
	Felix: It looks like it!

16) Felix: Build B2 Out

17) dlwillson: Trade G3 R3 Dlwillson

18) Felix: Build B2 Out

19) dlwillson: Build R1 Dlwillson

20) Felix: Trade B2 Y2 Out

21) dlwillson: M R3 Dlwillson Out

22) Felix: Build B2 Out

23) dlwillson: A Y2 Out

24) Felix: Sacrifice B2 Out
Trade B1 R1 Out
Trade B2 R2 Out

25) dlwillson: S R3 Out
A R2 Out
A R1 Out
Pass

26) Felix: Trade R1 G1 Felix

27) dlwillson: T G1 B1 Dlwillson

28) Felix: Build G1 Felix

29) dlwillson: B B2 Dlwillson

30) Felix: Build Y1 Felix

31) dlwillson: M B2 Dlwillson Sold

32) Felix: Discover G1 Felix B3 Hope
	dlwillson: Bah. I'm wasting moves. Sorry.
	dlwillson: Bah. I'm wasting moves. Sorry.

33) dlwillson: S G3 Dlwillson
B B2 Sold
B B2 Sold
B B3 Dlwillson
	Felix: No worries. I could actually just resign at this point, unless you'd rather play it out? You've outmaneuvered me very quickly, nice work!

	dlwillson: Good game, Felix! My green gambit paid off!
	Felix: Likewise! That was a fun quick one. I hoped my opening rush on blue would benefit me more :) well played!


34215)
Started: 2018.6.24, Ended: 2018.8.14
Participants: deanthebean (S), Felix (N)
Winner: deanthebean

1) Felix: Homeworld B2 R3 G3

2) deanthebean: Homeworld B1 Y2 G3
	deanthebean: Hello again. Have fun!

3) Felix: Build G1 Felix

4) deanthebean: Build G1 Deanthebean
	Felix: Hi! You too! Always a pleasure.

5) Felix: Trade G1 B1 Felix

6) deanthebean: Build G1 Deanthebean

7) Felix: Build B1 Felix

8) deanthebean: Trade G1 R1 Deanthebean

9) Felix: Build G1 Felix

10) deanthebean: Build R1 Deanthebean

11) Felix: Trade G1 R1 Felix

12) deanthebean: Build R2 Deanthebean

13) Felix: Build R2 Felix

14) deanthebean: Trade R2 B2 Deanthebean

15) Felix: Trade R1 Y1 Felix

16) deanthebean: Trade R1 Y1 Deanthebean

17) Felix: D B1 Felix G1 Rumpus

18) deanthebean: Discover B2 Deanthebean G3 Wait

19) Felix: Sacrifice G3 Felix
Build B2 Rumpus
Build B3 Rumpus
Build B3 Felix

20) deanthebean: Sacrifice Y1 Deanthebean
Move B2 Wait Rumpus
Catastrophe Rumpus Blue

21) Felix: Trade B3 G3 Felix

22) deanthebean: Build R1 Deanthebean
	Felix: Sorry for th edelay!
	deanthebean: np

23) Felix: Build Y1 Felix
	Felix: I stopped getting email notifications for some reason

24) deanthebean: Trade R1 B1 Deanthebean

25) Felix: Build Y1 Felix

26) deanthebean: Build B2 Deanthebean

27) Felix: Build B2 Felix

28) deanthebean: Trade B2 Y2 Deanthebean

29) Felix: Discover Y1 Felix G1 Out

30) deanthebean: Discover B1 Deanthebean Y3 Stage

31) Felix: Move B2 Felix Out

32) deanthebean: Discover Y2 Deanthebean G3 Coach

33) Felix: Discover Y1 Felix G1 Conk

34) deanthebean: Build G2 Deanthebean

35) Felix: Sacrifice G3 Felix
Build Y2 Conk
Build Y3 Out
Build Y3 Felix

36) deanthebean: Discover G2 Deanthebean B3 Port

37) Felix: Trade Y1 R1 Out

38) deanthebean: Sacrifice G3 Deanthebean
Build G2 Port
Build G2 Port
Build G3 Deanthebean

39) Felix: Trade Y3 G3 Felix

40) deanthebean: Sacrifice G3 Deanthebean
Build G3 Deanthebean
Build R1 Deanthebean
Build R2 Deanthebean

41) Felix: Sacrifice G3 Felix
Build Y1 Out
Build Y3 Felix
Build R2 Out

42) deanthebean: Sacrifice G3 Deanthebean
Build G3 Deanthebean
Build G3 Deanthebean
Build B2 Stage

43) Felix: Move Y3 Out Port

44) deanthebean: Move R1 Deanthebean Coach

45) Felix: Build B3 Out

46) deanthebean: Build R3 Coach

47) Felix: Sacrifice R2 Out
Attack G2 Port
Attack G2 Port

48) deanthebean: Move G1 Deanthebean Port
Catastrophe Port Green

49) Felix: Move B1 Felix Conk

50) deanthebean: Move R3 Coach Conk

51) Felix: Sacrifice Y2 Conk
Move B1 Conk Coach
Move B3 Out Coach

52) deanthebean: Discover Y2 Coach G1 Mouth

53) Felix: Build B3 Out

54) deanthebean: Sacrifice G3 Deanthebean
Build Y2 Mouth
Build R2 Conk
Build G2 Deanthebean

55) Felix: Build R3 Out

56) deanthebean: Attack Y1 Conk

57) Felix: Sacrifice Y3 Port
Move B1 Coach Deanthebean
Move B3 Coach Deanthebean
Discover B2 Out Y3 In

58) deanthebean: Attack B3 Deanthebean

59) Felix: Move B2 In Deanthebean
Catastrophe Deanthebean Blue

60) deanthebean: Move R3 Conk Felix

61) Felix: Sacrifice R2 Felix
Attack R3 Felix
Pass

62) deanthebean: Build Y3 Conk

63) Felix: Sacrifice Y1 Felix
Move R3 Felix Mouth

64) deanthebean: Sacrifice Y3 Conk
Move Y1 Conk Felix
Move Y2 Mouth Felix
Move Y2 Mouth Felix
Catastrophe Felix Yellow

	deanthebean: gg
	Felix: Wow, totally overlooked that. Good game!


34210)
Variants: "Unrated"
Started: 2018.6.26, Ended: 2018.7.6
Participants: DodoBirb (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R2 G3
	Babamots: So you'd like a Homeworlds lesson? I'll try to explain strategy as we go.

2) DodoBirb: Homeworld B1 Y2 G3
	Babamots: How much have you played? I can explain every detail or I can leave out the basics.
	Babamots: I'm taking a large-medium home system, which has a low win rate. A medium-small home had the best win rate, probably because it let's you move to large systems right away and therefore control the larges in the stash.

3) Babamots: Build G1 Babamots
	DodoBirb: This is my first game. I know the rules and a bit of strategy but I want to see how it all works against a real opponent.

4) DodoBirb: Build G1 Dodobirb
	Babamots: Cool! The first few moves will be building and getting new ship colors. There's not usually too much strategy yet.

5) Babamots: Trade G1 Y1 Babamots

6) DodoBirb: Trade G1 Y1 Dodobirb
	Babamots: One of the first things to watch for is getting "frozen out" of a color. Suppose I keep building y1 and you don't trade for a y1. Then the y1 will all be used and you will have no yellow ships. In order to get any yellow ships, you will have to get a medium of another color and trade for a y2.

7) Babamots: Build G1 Babamots

8) DodoBirb: Build G1 Dodobirb
	DodoBirb: Should I have traded early like that or waited a turn? 

9) Babamots: Trade G1 B1 Babamots
	Babamots: Either was fine in this case. The main thing is not to let me get all the smalls of any color (or you'll be frozen out) and don't take the last small of any color I can build (or I'll get the first medium).
	Babamots: Of course, it's OK to let me get a medium if you can get your own on your next move. You just don't want to fall behind.

10) DodoBirb: Trade G1 B1 Dodobirb
	Babamots: Like here, it's OK to trade for a b1 because, even though I can build b2, you can build b2 too.

11) Babamots: Build B2 Babamots

12) DodoBirb: Build B2 Dodobirb

13) Babamots: Trade B2 Y2 Babamots
	Babamots: I'm planning to trade for y2 and threaten a blue catastrophe at your home.

14) DodoBirb: Discover B2 Dodobirb Y3 Yellow
	Babamots: I'm too tired to count. I would need to have a y3 to sacrifice and catastrophe. 
	Babamots: It's 3 AM here. I'm not at my sharpest :-)
	DodoBirb: Sorry if I'm keeping you up, I'm in Australia so it's early in the afternoon for me.

15) Babamots: Discover Y1 Babamots Y1 Iconia
	Babamots: My plan for my next move would give me almost a yellow monopoly and another large ship. It is
sacrifice g3 Babamots
build y2 Iconia
build y3 Babamots
build y3 Babamots

You can prevent it in a couple of ways. Want to look for them or have me tell you? 

16) DodoBirb: Discover B1 Dodobirb Y3 Sun
	DodoBirb: I'll look. If I can't find them I'll probably ask.
	DodoBirb: I can move my y1 at my homeworld into Iconia to stop you from building a yellow ship there.
	DodoBirb: Oh oops the systems aren't connected

17) Babamots: Build B2 Babamots
	Babamots: I would have recommended discovering another y3 system to user up the piece. 
	DodoBirb: Is that because my move stops me from making more yellow?
	Babamots: It looks like your plan is to move y1 to Iconia after I build so you can catastrophe the system. It's true you lose your only yellow ship (so you'll have to trade again to build yellows), but also, I come out ahead by a large ship.
	Babamots: You can still undo if you'd like. Up to you. 

18) DodoBirb: Build G1 Dodobirb

19) Babamots: Discover B2 Babamots G1 Risa

20) DodoBirb: Move G1 Dodobirb Yellow
	Babamots: Here's a big-picture suggestion. You seem to have known how important it is to have blue and green in your home system. You'll also want to get at least one other system with blue and green. That gives you another  place to build and diversify and less worry about overpopulation.

When the homeworlds are three moves apart (like ours), I usually like to start building my invasion fleet in a system that is one move away from my home and gradually move it to two different systems that are connected to my opponent's home. By spreading across three systems, there's little chance of overpopulation. A mistake I see pretty often is that someone tries to build a whole fleet in one system, which gives me lots of opportunities to threaten catastrophes.

I've been aching to give someone this tip, and you're the lucky recipient :-).

21) Babamots: Build Y2 Babamots
	Babamots: And with that I'd better get some sleep. It's hard for me to keep a decent schedule when I don't have time-sensitive obligations the next day.

22) DodoBirb: Discover Y1 Dodobirb Y3 Echo

23) Babamots: Build B2 Babamots
	Babamots: Even though you could build a y3, I would cheerfully sacrifice my y2 to move my y1 to your home for a catastrophe.

The danger of yellow catastrophes on my home stars is the main reason I see to use red rather than yellow as a home marker color. I'm not sure which is better, but a yellow home marker always seems to cause a frustrating moment where I want to build yellow at home but can't.
	Draw5PlayAll: Exactly my reason for using red. I know they say to use yellow for beginners but then your options for storing yellows is more limited. I can often get 4-5 yellows and the homeworld is a nice place to put them.

24) DodoBirb: Build B3 Yellow
	DodoBirb: I couldn't really build yellow anywhere so I just had to stop you from taking it.
	Babamots: Yep, it was a good move. I think the next thing you should work on is turning some of those y3 systems into ships. If you move your b2 away from "yellow," you can sacrifice your g1 in yellow to build y3 (since the system marker becomes available for building the instant that last ship is gone). Of course, you'll need to put a yellow ship somewhere that you can safely build a y3...
	Babamots: Meanwhile, my plan is to make more important things come up so you don't get around to building those y3s. For starters, you're not going to want to pass up a chance to build a b3.

25) Babamots: Build B3 Risa
	Babamots: My plan for the next few moves is to get some red and take advantage of the fact that I have more medium ships. Even if you get red ships too, my mediums can chase your smalls around and keep them off the y3 systems so you can't build y3.

Something else will probably come up to distract me from that plan, but that's what I'm hoping to work on for the next several moves.

26) DodoBirb: Build G1 Dodobirb

27) Babamots: Trade B3 R3 Risa

28) DodoBirb: Trade B3 R3 Yellow
	Babamots: Since I'm about to trade for a red ship, you need a red ship immediately. Otherwise, I can sacrifice a y2 to send my large to your homeworld and take it over.

29) Babamots: Trade B1 R1 Babamots

30) DodoBirb: Build R1 Yellow

31) Babamots: Build G2 Babamots

32) DodoBirb: Build G2 Dodobirb

33) Babamots: Move G2 Babamots Iconia
	Babamots: My plan is to eventually move my g2 to either Sun or Echo. Then, I either get to capture a ship (by sacrificing my r1) or, if your ship leaves, I get to sacrifice my g2 to build a y3 with the system marker.

34) DodoBirb: Trade G2 R2 Dodobirb
	Babamots: My next move puts you in check. I could sacrifice y2 to move my g2 to your home and catastrophe all the ships there. So you'll need to move or trade a green at home to keep me from winning. Technically, you could also save yourself by moving another ship to your home, but that still lets me destroy three of your ships.

35) Babamots: Move G2 Iconia Sun

36) DodoBirb: Move B1 Sun Dodobirb

37) Babamots: Sacrifice G2 Sun
Build G2 Babamots
Build Y3 Babamots

38) DodoBirb: Build G2 Yellow

39) Babamots: Move Y2 Babamots Risa

40) DodoBirb: Discover G1 Dodobirb B3 Deepblue

41) Babamots: Move B2 Babamots Iconia

42) DodoBirb: Discover R1 Yellow R1 Reddwarf

43) Babamots: Move R3 Risa Deepblue

44) DodoBirb: Move R3 Yellow Risa
	Babamots: I think you're playing extremely well, so I haven't felt like you needed advice for a while. I can say more if you're feeling lost, but it sure doesn't look like you need my help.
	Babamots: Since your ships are pretty spread out, you're well prepared to make a green sacrifice triple build and get another large ship if I make the smallest mistake.
	Babamots: My big advantage is dominating the yellows. I can sacrifice to move two or three times while you're limited to one. 

45) Babamots: Sacrifice Y2 Risa
Move B2 Risa Echo
Move B2 Echo Dodobirb
	Babamots: Your g1 can escape almost like a yellow by sacrificing and rebuilding. Also, you could counter-attack at Risa with your r3.

46) DodoBirb: Move B1 Dodobirb Yellow

47) Babamots: Sacrifice G3 Babamots
Build B1 Dodobirb
Build B3 Dodobirb
Build Y2 Babamots
Catastrophe Dodobirb B

48) DodoBirb: Sacrifice G1 Deepblue
Build G1 Dodobirb

49) Babamots: Move Y2 Babamots Reddwarf

50) DodoBirb: Sacrifice G2 Yellow
Build R2 Reddwarf
Build R3 Reddwarf
Catastrophe Reddwarf R
	Babamots: Sorry if I haven't been as instructive as you'd like. I didn't know myself what I would do if you counter-attacked back there, or I should have warned you that the time was right to start the real attack.

At this point, it will be very difficult to defend your home from a game-ending yellow catastrophe. I've got most of the yellow, so I don't think you'll be able to move your ships around to effectively intercept my invasion. I'm planning to move my y2s to small systems and then move three yellows to your home all at once.
	DodoBirb: Don't worry about it. I've learnt quite a bit from this game. I'll see how long I can hold out against your yellow onslaught (probably not for very long).

51) Babamots: Build Y2 Babamots
	Draw5PlayAll: I see something... interesting.
	Babamots: You're welcome to give suggestions to DodoBirb. I don't see anything that will do more than buy a few moves (like sacrificing green to build two reds in RedDwarf and destroying my y2. I can rebuild it, but it sets me back a move).
	Draw5PlayAll: Rebuild it where?
	Babamots: I would rebuild it in my home system. That makes three yellows there, but the y1 in Echo can't reach my home for a catastrophe in one move.

52) DodoBirb: Trade B2 R2 Yellow

53) Babamots: Discover Y2 Babamots B1 Bolius

54) DodoBirb: Sacrifice G3 Dodobirb
Build R1 Risa
Build R1 Yellow
Build R3 Dodobirb

55) Babamots: Sacrifice Y3 Babamots
Move Y2 Babamots Bolius
Move Y2 Bolius Dodobirb
Move Y1 Iconia Dodobirb
	Babamots: So you know, I'm planning to sacrifice my y3 on my next move. I will move two yellows to your home and move my y2 from Babamots to a small system -- maybe Bolius. I don't believe there's anything you can do to prevent me from then moving that y2 to your home and having the four yellows there I need to win.
	Babamots: Also, if you ever want to study games after they're over, an easy way is with SDG's "Archive View" (you can look at every position in the whole game history). This page can be a little hard to find, but I wrote some Javascript that makes it super easy. The code and instructions are here:

https://github.com/jpeterbaker/SDGchange

56) DodoBirb: Sacrifice Y1 Echo
Move R3 Risa Babamots
	Draw5PlayAll: ?page=play&gid=34210 should redirect to the Play page, and thus you can heavily reduce the size of your code.

57) Babamots: Move Y2 Bolius Dodobirb
Catastrophe Dodobirb Y
	Babamots: Hey, you're right! I can shorten the code lots now.
	Babamots: As for the game, if I weren't about to win, this would be kind of a bad position for me. I don't have a large ship at my home, so you can move you r3 to my home, preparing to gobble up all my home ships. My only defensive move would be to sacrifice a y2 to move my own r3 to my home and catastrophe away you r3. I would lose a ship of each size (y2, r1, r3) and a home star compared to your y1 (for the movement) and r3.

	DodoBirb: GG. Thanks for this teaching game. I learned a lot from just playing against someone better than me.
	Babamots: I tried to be instructive, and at least you got to see some strategy in action. Do you have anyone you'll be able to play in person? I'm happy to have another game, though the time difference will make it take a while.
	DodoBirb: I do have some people I can play in person but they're usually pretty busy.


34183)
Variants: "Hard time"
Started: 2018.7.1, Ended: 2018.7.16
Participants: Trydnt (S), iddqd (N)
Winner: Trydnt

1) iddqd: Homeworld B3 Y2 G3

2) Trydnt: Homeworld B2 Y1 G3

3) iddqd: Build G1 Iddqd

4) Trydnt: Build G1 Trydnt

5) iddqd: Trade G1 Y1 Iddqd

6) Trydnt: Trade G1 Y1 Trydnt

7) iddqd: Build Y2 Iddqd

8) Trydnt: Build Y2 Trydnt



34234)
Started: 2018.7.3, Ended: 2019.3.12
Participants: ts52 (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) ts52: Homeworld B1 Y2 G3

3) Draw5PlayAll: Build G1 Draw5playall
	ts52: Have a good game!

4) ts52: Build G1 Ts52

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) ts52: Build G1 Ts52

7) Draw5PlayAll: Build G1 Draw5playall

8) ts52: Discover G1 Ts52 B3 Gonzo

9) Draw5PlayAll: Trade G1 R1 Draw5playall

10) ts52: Trade G1 R1 Ts52

11) Draw5PlayAll: Build R2 Draw5playall

12) ts52: Build R2 Ts52

13) Draw5PlayAll: Discover R2 Draw5playall G2 G2

14) ts52: Move R2 Ts52 Gonzo

15) Draw5PlayAll: Trade R1 B1 Draw5playall

16) ts52: Build G1 Ts52

17) Draw5PlayAll: Build B1 Draw5playall

18) ts52: Trade G1 Y1 Ts52

19) Draw5PlayAll: Move B1 Draw5playall G2

20) ts52: Build G1 Ts52

21) Draw5PlayAll: Build B2 G2

22) ts52: Move Y1 Ts52 Gonzo

23) Draw5PlayAll: Build B2 G2

24) ts52: Build R1 Gonzo

25) Draw5PlayAll: Trade B2 Y2 G2

26) ts52: Discover R1 Gonzo G2 Kermit

27) Draw5PlayAll: Discover B1 Draw5playall Y2 Idea

28) ts52: Sacrifice G3 Ts52
Build R2 Kermit
Build R3 Gonzo
Build R3 Ts52

29) Draw5PlayAll: Build R3 G2

30) ts52: Trade R3 B3 Ts52

31) Draw5PlayAll: Trade R3 Y3 G2

32) ts52: Build R3 Ts52

33) Draw5PlayAll: Build R3 G2

34) ts52: Trade R3 G3 Ts52

35) Draw5PlayAll: Discover Y3 G2 R3 Steal

36) ts52: Move R2 Gonzo Idea

37) Draw5PlayAll: Move B1 Idea Steal
	Draw5PlayAll: I think my red star is endangered

38) ts52: Move Y1 Gonzo Kermit

39) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y1 Steal
Build Y3 Draw5playall
Build Y3 G2

40) ts52: Move R1 Kermit Steal

41) Draw5PlayAll: Move Y3 Steal Kermit

42) ts52: Move Y1 Kermit Gonzo
	Draw5PlayAll: This incident will be reported.

43) Draw5PlayAll: Sacrifice R2 G2
Attack R2S Kermit
Attack R1S Steal

44) ts52: Move B3 Ts52 Steal

45) Draw5PlayAll: Sacrifice Y1 Steal
Move B1 Steal Kermit

46) ts52: Build Y1 Gonzo

47) Draw5PlayAll: Build B2 Kermit

48) ts52: Attack R1N Steal

49) Draw5PlayAll: Build R2 Kermit

50) ts52: Sacrifice G1 Ts52
Build B2 Steal

51) Draw5PlayAll: Trade B2 G2 Kermit

52) ts52: Discover Y1 Gonzo B2 Grover

53) Draw5PlayAll: Move G2 Kermit Draw5playall

54) ts52: Build G1 Ts52

55) Draw5PlayAll: Sacrifice Y2 G2
Move B1 G2 Steal
Move B1 Kermit Steal

56) ts52: Trade B2 Y2 Steal

57) Draw5PlayAll: Sacrifice G2 Draw5playall
Build B2 Steal
Catastrophe Steal Blue
Build B1 G2
	Draw5PlayAll: I failed

58) ts52: Sacrifice G3 Ts52
Build G1 Gonzo
Build G2 Ts52
Build G3 Ts52

59) Draw5PlayAll: Build B1 G2

60) ts52: Discover G1 Ts52 B3 Cookie

61) Draw5PlayAll: Sacrifice Y3 G2
Move B1 G2 Gonzo
Move B1 G2 Gonzo
Move B2 G2 Gonzo
Catastrophe Gonzo Blue

62) ts52: Build R3 Ts52

63) Draw5PlayAll: Trade Y1 G1 Draw5playall

64) ts52: Trade G2 B2 Ts52

65) Draw5PlayAll: Build G1 Draw5playall

66) ts52: Build G2 Ts52
	Draw5PlayAll: Seems I can have either green or blue, but not both.

67) Draw5PlayAll: Build G3 Draw5playall

68) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Cookie
Build Y1 Grover

69) Draw5PlayAll: Trade G1 B1 Draw5playall
	Babamots: Hey guys, is this game for the tournament? If so, I can record it for you.
	ts52: I don't think it is. No. Just Draw5 trying to size me up I think. :)
	Draw5PlayAll: 3/2/10 is not 2/2/7
	Draw5PlayAll: What did they do in Star Trek at heading 227 mark something?

70) ts52: Trade G3 Y3 Cookie
	Babamots: So you mean the clock setting is wrong for the tournament (3/2/10 instead of 2/2/7). OK, thanks!
Hmm, I don't know of 227 having any significance in Star Trek, or anywhere else for that matter.

71) Draw5PlayAll: Build Y1 Kermit
	Draw5PlayAll: No, this is not a tournament game. It started in very early July.

72) ts52: Sacrifice G3 Ts52
Build G1 Cookie
Build G3 Cookie
Build G3 Ts52

73) Draw5PlayAll: Move G1 Draw5playall G2

74) ts52: Move G3 Cookie Grover

75) Draw5PlayAll: Move B1 Draw5playall Kermit

76) ts52: Move R3 Ts52 Cookie

77) Draw5PlayAll: Sacrifice G1 G2
Build G1 Draw5playall

78) ts52: Move R1 Steal Grover

79) Draw5PlayAll: Build B1 Kermit

80) ts52: Move B2 Ts52 Steal

81) Draw5PlayAll: Move G3 Draw5playall Idea

82) ts52: Sacrifice Y2 Steal
Move G3 Grover Steal
Discover B2 Steal Y2 Bigbird
	Draw5PlayAll: I got an idea!

83) Draw5PlayAll: Sacrifice R2 Kermit
Attack R2 Idea
Pass
	ts52: I don't think I like where your idea is going. ;)

84) ts52: Sacrifice G3 Ts52
Build B2 Bigbird
Build B3 Bigbird
Build G3 Ts52
	Draw5PlayAll: Red teleportation, textbook example

85) Draw5PlayAll: Sacrifice Y3 Kermit
Move B1 Kermit Cookie
Move B1 Cookie Bigbird
Catastrophe Bigbird Blue
Discover R3 G2 Y3 Freedom
	Draw5PlayAll: We need to break the ice

86) ts52: Move R3 Cookie Kermit

87) Draw5PlayAll: Move R3 Freedom Grover

88) ts52: Attack R2 Kermit

89) Draw5PlayAll: Sacrifice Y1 Kermit
Discover B1 Kermit Y3 Esc

90) ts52: Sacrifice G3 Ts52
Build G2 Steal
Build G3 Ts52
Build R2 Ts52

91) Draw5PlayAll: Sacrifice R2 Idea
Attack Y1 Grover
Attack R1 Grover

92) ts52: Move Y1 Grover Steal

93) Draw5PlayAll: Sacrifice G3 Idea
Build G3 Draw5playall
Build Y1 Draw5playall
Build Y2 Grover

94) ts52: Build Y2 Steal

95) Draw5PlayAll: Discover Y3 Draw5playall R2 Perhaps

96) ts52: Trade G2 B2 Ts52

97) Draw5PlayAll: Sacrifice G1 Draw5playall
Build B1 Esc

98) ts52: Move B2 Ts52 Steal

99) Draw5PlayAll: Move B1 Esc Perhaps

100) ts52: Move Y2 Steal Kermit

101) Draw5PlayAll: Build G1 Draw5playall

102) ts52: Move R2 Ts52 Esc

103) Draw5PlayAll: Discover B1 Esc G2 Donotenter

104) ts52: Move R2 Kermit Cookie

105) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B2 Perhaps
Build B3 Donotenter

106) ts52: Sacrifice Y2 Kermit
Move R2 Cookie Grover
Move R2 Esc Grover
Catastrophe Grover R

107) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Perhaps
Build Y3 Draw5playall
Build G3 Draw5playall

108) ts52: Sacrifice G3 Steal
Build G3 Steal
Build R1 Kermit
Build R2 Ts52

109) Draw5PlayAll: Trade Y2 R2 Grover

110) ts52: Trade G3 R3 Steal

111) Draw5PlayAll: Sacrifice G1 Draw5playall
Build Y2 Grover

112) ts52: Move R3 Steal Grover

113) Draw5PlayAll: Sacrifice Y2 Grover
Discover R2 Grover G3 Fort
Move B3 Donotenter Steal

114) ts52: Sacrifice Y1 Steal
Move B2 Steal Donotenter

115) Draw5PlayAll: Attack G2 Steal

116) ts52: Attack Y1N Grover

117) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move B3 Steal Donotenter

118) ts52: Build G1 Ts52

119) Draw5PlayAll: Sacrifice G2 Steal
Build G2 Draw5playall
Build R3 Fort

120) ts52: Move R2 Ts52 Cookie

121) Draw5PlayAll: Move Y2 Perhaps Fort

122) ts52: Move G1 Cookie Grover

123) Draw5PlayAll: Move B1 Perhaps Fort

124) ts52: Move G1 Cookie Grover

125) Draw5PlayAll: Move G3 Draw5playall Perhaps

126) ts52: Build Y1 Grover

127) Draw5PlayAll: Move Y3 Perhaps Fort

128) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Grover
Build Y2 Cookie

129) Draw5PlayAll: Move Y2 Fort Grover
Catastrophe Grover Yellow

130) ts52: Move Y2 Cookie Grover

131) Draw5PlayAll: Build Y1 Fort

132) ts52: S G3 Ts52
B G3 Ts52
B Y1 Grover
B Y1 Grover

133) Draw5PlayAll: Move Y1 Fort Grover
Catastrophe Grover Yellow

134) ts52: Sacrifice G3 Ts52
Build Y1 Cookie
Build Y1 Cookie
Build G3 Ts52

135) Draw5PlayAll: Build Y1 Fort
	Draw5PlayAll: Time Squared
	Draw5PlayAll: Wait, no. That was Cause and Effect: ST:TNG S5E18.

"Captain's log, Stardate 45652.1. The Enterprise has entered an area of space known as the Typhon Expanse. We are the first Starfleet vessel to chart this unexplored region."

136) ts52: Move Y1 Cookie Grover

137) Draw5PlayAll: Move Y1 Fort Perhaps

138) ts52: Build Y2 Grover

139) Draw5PlayAll: Build Y2 Perhaps

140) ts52: Move Y1 Cookie Kermit
	Draw5PlayAll: One can never be two careful. Here I had the threedom four some maneuvers without letting you get both Yellows. I did not want to allow you to blow my yellows at Draw5PlayAll.

141) Draw5PlayAll: Move R3 Fort Donotenter
	ts52: I definitely tend to play over cautiously.

142) ts52: Move Y1 Grover Draw5playall

143) Draw5PlayAll: Sacrifice Y1 Perhaps
Move B3 Donotenter Draw5playall

144) ts52: Build Y1 Kermit
	Draw5PlayAll: Progress, at last!!

145) Draw5PlayAll: Move Y3 Draw5playall Donotenter
	ts52: Indeed!

146) ts52: Move Y1 Draw5playall Grover

147) Draw5PlayAll: Attack B2 Donotenter

148) ts52: Move R2 Cookie Grover

149) Draw5PlayAll: Move B2 Donotenter Fort

150) ts52: Move G1 Ts52 Fort
	Draw5PlayAll: FINALLY!!!

151) Draw5PlayAll: Sacrifice Y3 Fort
Move B2 Fort Grover
Move B1 Fort Grover
Discover B1 Donotenter Y3 Backatcha
	ts52: You've been working toward that for a long time. :)

152) ts52: Sacrifice Y2 Grover
Move R3 Grover Fort
Move R2 Grover Backatcha

153) Draw5PlayAll: Sacrifice Y2 Perhaps
Move R2 Fort Donotenter
Move R3 Donotenter Backatcha

154) ts52: Attack B1N Backatcha

155) Draw5PlayAll: Sacrifice R2 Donotenter
Attack B1 Backatcha
Attack R2 Backatcha

156) ts52: Build R2 Fort

157) Draw5PlayAll: Build Y2 Donotenter

158) ts52: Build Y2 Grover
	Draw5PlayAll: Change is a powerful force

159) Draw5PlayAll: Sacrifice R2 Backatcha
Attack Y2 Grover
Attack G1 Grover

160) ts52: Build R2 Ts52

161) Draw5PlayAll: Move R3 Backatcha Grover

162) ts52: Move Y1 Grover Fort

163) Draw5PlayAll: Attack G1 Grover

164) ts52: Move R2 Ts52 Backatcha

165) Draw5PlayAll: Sacrifice Y2 Donotenter
Move G1 Grover Fort
Move G1 Grover Fort
Catastrophe Fort Green

166) ts52: Attack B1N Backatcha

167) Draw5PlayAll: Discover B2 Grover Y1 Strange

168) ts52: Build G1 Ts52

169) Draw5PlayAll: Build G1 Perhaps

170) ts52: Sacrifice G3 Ts52
Build R2 Backatcha
Build R3 Ts52
Build Y2 Cookie

171) Draw5PlayAll: Sacrifice G1 Perhaps
Build G1 Draw5playall

172) ts52: Move R3 Kermit Strange

173) Draw5PlayAll: Move B2 Strange Donotenter

174) ts52: Move R2 Backatcha Kermit

175) Draw5PlayAll: Move Y2 Grover Draw5playall

176) ts52: Move G1 Ts52 Cookie

177) Draw5PlayAll: Move G1 Draw5playall Grover

178) ts52: M G1 Cookie Ts52
	Draw5PlayAll: I had an advantage, but now the game is far from clear.

179) Draw5PlayAll: Build G1 Perhaps

180) ts52: B G3 Ts52

181) Draw5PlayAll: Build G3 Draw5playall

182) ts52: Move R3 Ts52 Backatcha

183) Draw5PlayAll: Move G3 Draw5playall Kermit

184) ts52: Move R2 Kermit Draw5playall

185) Draw5PlayAll: Attack R2 Draw5playall

186) ts52: Sacrifice Y2 Cookie
Move R3 Backatcha Kermit
Move R3 Kermit Draw5playall

187) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack R3S Draw5playall
Attack R1 Kermit

188) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Cookie
Build R2 Strange

189) Draw5PlayAll: Attack Y1 Kermit

190) ts52: Move Y1 Kermit Backatcha

191) Draw5PlayAll: Move R3 Draw5playall Kermit

192) ts52: Move R3 Strange Backatcha

193) Draw5PlayAll: Move G3 Kermit Strange

194) ts52: Move R2 Strange Cookie

195) Draw5PlayAll: Sacrifice G3 Strange
Pass
Build Y1 Kermit
Pass

196) ts52: Sacrifice Y2 Cookie
Move R2 Cookie Kermit
Move R2 Backatcha Kermit
Catastrophe Kermit Red

197) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 Kermit Backatcha
Move Y1 Kermit Backatcha
Catastrophe Backatcha Yellow

198) ts52: Move G1 Ts52 Cookie
	Draw5PlayAll: This needs to have a name. And no, I refuse to call it the "D5PA sacrifice".

How about the "(Un)Wasteful Sacrifice"? Parentheses are part of the name.
	Draw5PlayAll: DEFINITION: The "Un-Wasteful Sacrifice" small be defined as follows: A player sacrifices a ship intending to discover it a second a star next turn, particularly if not all actions from the sacrifice are used."

199) Draw5PlayAll: Sacrifice G3 Perhaps
Build G2 Draw5playall
Build G3 Perhaps
Build G3 Grover
	ts52: Curious why you didn't rebuild the large green? Trying to tempt me into building it at my homeworld?
	Draw5PlayAll: Nah, I wanted a path into your homeworld and all the larges were used.

200) ts52: T G1 B1 Cookie
	Draw5PlayAll: I think you are lost.

201) Draw5PlayAll: Sacrifice G3 Perhaps
Build G1 Draw5playall
Build G3 Perhaps
Build Y1 Donotenter
	ts52: I fear you're probably right

202) ts52: B R1 Ts52

203) Draw5PlayAll: Move Y1 Donotenter Draw5playall

204) ts52: Build R2 Ts52

205) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover G3 Grover R3 Denial1

206) ts52: Move R1 Ts52 Cookie

207) Draw5PlayAll: Build Y1 Donotenter

208) ts52: Trade R2 Y2 Ts52

209) Draw5PlayAll: Sacrifice Y3 Donotenter
Move G3 Perhaps Denial1
Move G3 Denial1 Ts52
Move G3 Denial1 Ts52
	Draw5PlayAll: I must deny you the chance to ever obtain an R3!

210) ts52: Attack G3N Ts52
	ts52: having a near monopoly on green is definitely helping you

211) Draw5PlayAll: Sacrifice R3 Grover
Attack G3 Ts52
Attack G3 Ts52
Attack R1 Ts52

212) ts52: Sacrifice R1 Cookie
Attack R1N Ts52

213) Draw5PlayAll: Sacrifice B2 Perhaps
Trade G3 Y3 Ts52
Trade G3 R3 Ts52
	Draw5PlayAll: This could backfire...

214) ts52: Trade Y3 G3 Cookie
	ts52: I think you've got this one.

215) Draw5PlayAll: Sacrifice G3 Ts52
Build Y1 Ts52
Build R1 Ts52
Build R2 Ts52
Pass
Pass
Catastrophe Ts52 Yellow
Catastrophe Ts52 Red
Pass
Pass
Pass
Pass
Pass
Pass
Pass
	Draw5PlayAll: This is why Homeworlds cannot have a 50 (or even 100 :P) move rule.

	Draw5PlayAll: Destroy all evidence!!
	Draw5PlayAll: 109 moves... where are the record books again? I think the cleaning robot misplaced them.
	ts52: No idea. Good game, well played!


34232)
Variants: "Unrated, Hard time"
Started: 2018.7.4, Ended: 2018.7.16
Participants: iddqd (S), wil (N)
Winner: wil

1) wil: H B3 Y1 G3

2) iddqd: Homeworld B3 G2 Y3
	wil: Welcome to sdg and homeworlds!  First timer?  Have pyramid arcade?
	iddqd: Thanks. A friend had showed it to me a while back thought I'd check it out. Pyramid arcade re-sparked my interest but I've played a bit over the years face to face. Really only against the same player though.

3) wil: B G1 Wil
	wil: Cool, thx for the game....face to face is awesome....there are just so few of us.

4) iddqd: Build Y1 Iddqd

5) wil: T G1 Y1 Wil

6) iddqd: Trade Y1 G1 Iddqd

7) wil: B G1 Wil

8) iddqd: Discover G1 Iddqd B1 Outpost

9) wil: T G1 B1 Wil

10) iddqd: Build G1 Outpost

11) wil: B B1 Wil

12) iddqd: Trade G1 Y1 Outpost

13) wil: B Y2 Wil

14) iddqd: Build Y2 Iddqd

15) wil: D Y1 Wil G2 G2

	wil: Sorry was away camping for 9 days, challenge me anytime


34181)
Variants: "Hard time"
Started: 2018.7.7, Ended: 2018.7.10
Participants: Trydnt (S), wil (N)
Winner: Trydnt



34200)
Variants: "Unrated"
Started: 2018.7.7, Ended: 2018.7.10
Participants: Trydnt (S), wil (N)
Winner: Trydnt

	wil: Working in transforms temple and will be in woods for a couple weeks...a game will just time out.


34291)
Variants: "Unrated"
Started: 2018.7.7, Ended: 2018.7.19
Participants: Babamots (S), DodoBirb (N)
Winner: Babamots

1) DodoBirb: Homeworld R1 B2 G3

2) Babamots: Homeworld G3 Y1 B3

3) DodoBirb: Build G1 Dodobirb

4) Babamots: Build B1 Babamots

5) DodoBirb: Trade G1 Y1 Dodobirb

6) Babamots: Trade B1 Y1 Babamots

7) DodoBirb: Build Y2 Dodobirb

8) Babamots: Build Y2 Babamots

9) DodoBirb: Discover Y1 Dodobirb G3 Green

10) Babamots: Discover Y1 Babamots G2 Bajor

11) DodoBirb: Build G1 Dodobirb

12) Babamots: Build B1 Babamots

13) DodoBirb: Trade G1 B1 Dodobirb

14) Babamots: Move B1 Babamots Bajor

15) DodoBirb: Move B1 Dodobirb Green

16) Babamots: Build Y2 Bajor

17) DodoBirb: Build Y3 Green

18) Babamots: Trade Y1 R1 Bajor

19) DodoBirb: Trade Y1 R1 Green

20) Babamots: Build B1 Bajor

21) DodoBirb: Move Y3 Green Bajor

22) Babamots: Trade B1 Y1 Bajor

23) DodoBirb: Move Y3 Bajor Green

24) Babamots: Build R2 Bajor

25) DodoBirb: Build R2 Green

26) Babamots: Build B1 Bajor

27) DodoBirb: Build B2 Green

28) Babamots: Discover B1 Bajor G1 Cardassia
	Babamots: Just so you know, I use a point system for a rough idea of the relative values of ships. I give 1 point for smalls, 3 points for mediums, and 7 for larges. Of course some colors or positions can be more valuable than others, but I often use this if I expect that lots of ships are about to be destroyed or attacked and I want to decide who comes out ahead in material.

29) DodoBirb: Discover B1 Green G1 Littlegreen

30) Babamots: Build B2 Bajor

31) DodoBirb: Build B3 Littlegreen
	Draw5PlayAll: Larges should be 9 for the first two and 6 for each thereafter. Having 2 larges is much stronger than 1 and the score should reflect that. Four versus five and so on depends more on the rest of the situation.

Just my opinion.

32) Babamots: Build B3 Cardassia

33) DodoBirb: Build Y1 Green

34) Babamots: Sacrifice Y2 Babamots
Move Y2 Bajor Green
Move Y1 Bajor Green
Catastrophe Green Y

35) DodoBirb: Build Y1 Dodobirb

36) Babamots: Trade B2 Y2 Bajor

37) DodoBirb: Move Y1 Dodobirb Green

38) Babamots: Build B2 Bajor

39) DodoBirb: Sacrifice G3 Dodobirb
Build Y1 Green
Build Y2 Dodobirb
Build Y3 Dodobirb

40) Babamots: Build Y3 Bajor

41) DodoBirb: Sacrifice Y2 Dodobirb
Move Y2 Dodobirb Green
Move Y2 Green Littlegreen

42) Babamots: Sacrifice B1 Bajor
Trade B3 Y3 Cardassia

43) DodoBirb: Build Y2 Littlegreen

44) Babamots: Trade Y3 G3 Bajor

45) DodoBirb: Trade Y2 G2 Littlegreen
	Babamots: I should have mentioned your danger to you. I can sacrifice a yellow to catastrophe all your home ships. You should undo and try a different move.
	Babamots: Here's an SDG tip: clicking the "Call admin" button sends participants an email (I wanted to make sure you checked the game without actually using my turn).

I don't think Aaron has actually responded to the button in years, but it will pause the timer and notify players.

46) Babamots: Discover B1 Cardassia Y3 Iconia
	DodoBirb: Don't worry about forgetting to tell me I'm about to lose. I really should have noticed the y2 in Bajor.

47) DodoBirb: Move G2 Littlegreen Iconia
	Babamots: On the whole, it may have been healthier for your education to lose unexpectedly. I became way more careful after the first time I got blindsided by a home-emptying catastrophe.

On the other hand, this will give you a chance to see some more late game in action.

48) Babamots: Sacrifice G3 Bajor
Build B1 Bajor
Build Y2 Bajor
Build B3 Iconia

49) DodoBirb: Move G2 Iconia Dodobirb

50) Babamots: Move R2 Bajor Iconia
	Babamots: Good block.

51) DodoBirb: Trade B3 R3 Littlegreen

52) Babamots: Build R2 Bajor

53) DodoBirb: Build B3 Littlegreen

54) Babamots: Sacrifice Y3 Cardassia
Move B1 Bajor Iconia
Move B1 Iconia Dodobirb
Move B3 Iconia Dodobirb

55) DodoBirb: Build Y3 Littlegreen

56) Babamots: Sacrifice R2 Bajor
Attack G2 Dodobirb
Attack Y3 Dodobirb

	Babamots: If an enemy ship comes into your home system, you almost always need to attack it immediately. Otherwise, they get a chance to attack your ships, or sometimes they'll start building more ships in your home to make catastrophes.
	DodoBirb: Wow I only thought about the catastrophe and thought it was inevitable so I ignored it. oops
	Babamots: Good game! I think you understand lots of things in the game well. With practice, you'll have a better idea of things to watch out for and take advantage of.

If you'd like to practice faster, you could try having several games running at once. I'm happy to play you again, and you could challenge a few other people. You might like to play with MagicJohn. He's a fairly new player who moves several times a day. You can also issue a challenge to no one in particular (with a note about your skill level, if you're worried about getting a ruthless opponent).
	Babamots: Although, come to think of it, I haven't met anyone on this site that I'd describe as ruthless. I would still add a note to any open challenges just to make sure any accepters are ready for a "beginner game."
	Babamots: You're right, the blue catastrophe was inevitable. I was ready to follow it up with a red catastrophe to finish you off (notice that Bajor would become connected to your home after the blue catastrophe).


34292)
Variants: "Hard time"
Started: 2018.7.7, Ended: 2018.8.3
Participants: deanthebean (S), Aristos (N)
Winner: deanthebean

1) Aristos: Homeworld G3 B2 Y3

2) deanthebean: Homeworld B2 G3 Y3
	deanthebean: Hello. Thanks for accepting the challenge. Have a good game!

3) Aristos: Build Y1 Aristos

4) deanthebean: Build Y1 Deanthebean
	Aristos: Um... your opening is supposed to be illegal. In a 2-player game, you can’t pick the same large-medium-small star pattern. It puts the homeworlds only one jump apart. The official rules say this is illegal. 
	Aristos: We can keep playing, but I’m going to flag an admin to take a look to maybe fix the bug for future games. 
	Draw5PlayAll: Where is this illegal?
	Aristos: Admin: in a 2-player game, the home world stars aren’t supposed to be the same sizes. If player 1 picks large-medium, then player 2 has to pick large-small or small-medium. At least, that was my understanding of the rules. The two systems have to be 2 jumps away. That rule is relaxed in multi-player games. Am I wrong?

5) Aristos: Discover Y1 Aristos Y1 Spark
	deanthebean: I had a look at the rules pdf. I couldn't find a rule against identical stars

6) deanthebean: Trade Y1 R1 Deanthebean
	Aristos: I didn’t know about any PDF... just what I’d been taught. I went to look up the rules just now... seems I was wrong... matching I’d just fine. 

Admin:Sorry for the false alarm. 

7) Aristos: Discover Y1 Spark G2 Leaf

8) deanthebean: Build R1 Deanthebean

9) Aristos: Build Y1 Aristos

10) deanthebean: Build R1 Deanthebean

11) Aristos: Trade Y3 R3 Aristos

12) deanthebean: Discover R1 Deanthebean G1 Branch

13) Aristos: Build R2 Aristos

14) deanthebean: Build R2 Branch

15) Aristos: Trade R3 G3 Aristos

16) deanthebean: Trade R1 B1 Deanthebean

17) Aristos: Build G1 Aristos

18) deanthebean: Trade R1 G1 Deanthebean

19) Aristos: Discover G1 Aristos B1 Plum

20) deanthebean: Discover G1 Deanthebean Y1 Yellow

21) Aristos: Build Y2 Leaf

22) deanthebean: Build G2 Yellow

23) Aristos: Trade G3 Y3 Aristos

24) deanthebean: Build Y2 Deanthebean

25) Aristos: Build Y2 Leaf

26) deanthebean: Move Y2 Deanthebean Branch

27) Aristos: Move Y2 Leaf Plum

28) deanthebean: Build Y3 Branch

29) Aristos: Move Y2 Leaf Branch

30) deanthebean: Move Y2 Branch Aristos

	Aristos: Well played.
	deanthebean: Thanks! gg. 
	Draw5PlayAll: Not convinced this is over.


34175)
Variants: "No undo, Hard time"
Started: 2018.7.10, Ended: 2018.8.15
Participants: Thorolf (S), MagicJohn (W), Draw5PlayAll (N), Twinsen (E)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3
	Twinsen: At the end :D. Hello there. 
	Twinsen: At the end :D. Hello there. 

2) Twinsen: Homeworld R2 B1 G3

3) MagicJohn: Homeworld B2 R1 G3

4) Draw5PlayAll: Build G1 Draw5playall

5) Twinsen: Build G1 Twinsen
	Draw5PlayAll: Uuuugggghhhh

6) MagicJohn: Build G1 Magicjohn

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) Twinsen: Build G1 Twinsen

9) MagicJohn: Build G1 Magicjohn

10) Draw5PlayAll: Build Y1 Draw5playall

11) Twinsen: Trade G1 Y1 Twinsen

12) MagicJohn: Trade G1 Y1 Magicjohn

13) Draw5PlayAll: Discover Y1 Draw5playall G2 There

14) Twinsen: Discover G1 Twinsen B3 Here

15) MagicJohn: Discover G1 Magicjohn Y3 Everywhere

16) Draw5PlayAll: Build G1 Draw5playall

17) Twinsen: Build G1 Here
	Draw5PlayAll: You two are so unoriginal

18) MagicJohn: Build G1 Everywhere

19) Draw5PlayAll: Build G2 Draw5playall
	Twinsen: XD
	MagicJohn: blame it on the beatles...

20) Twinsen: Build G2 Twinsen

21) MagicJohn: Build G2 Magicjohn

22) Draw5PlayAll: Trade G2 R2 Draw5playall

23) Twinsen: Trade G2 Y2 Twinsen

24) MagicJohn: Discover G2 Magicjohn B3 Ringo

25) Draw5PlayAll: Build G2 Draw5playall

26) Twinsen: Sacrifice Y2 Twinsen
Move G1 Here There
Move G1 There Draw5playall
Catastrophe Draw5playall Green

27) MagicJohn: Build G1 Ringo

28) Draw5PlayAll: Trade Y1 G1 Draw5playall

29) Twinsen: Build G2 Here

30) MagicJohn:
Trade G2 Y2 Ringo

31) Draw5PlayAll: Build G2 Draw5playall
	MagicJohn: Trade g2 y2 Ringo

32) Twinsen: Trade G1 Y1 Here

33) MagicJohn: Trade G1 B1 Ringo

34) Draw5PlayAll: Trade G2 Y2 Draw5playall

35) Twinsen: Build G1 Here

36) MagicJohn: Discover B1 Ringo Y2 George

37) Draw5PlayAll: Build R1 Draw5playall

38) Twinsen: Trade G1 R1 Here

39) MagicJohn: Trade B1 R1 George

40) Draw5PlayAll: Move R2 Draw5playall There

41) Twinsen: Build R2 Here

42) MagicJohn: Sacrifice G1 Everywhere
Build R2 George

43) Draw5PlayAll: Build G1 Draw5playall

44) Twinsen: Discover R2 Here Y2 Dingdong

	Draw5PlayAll: :(


34284)
Variants: "Unrated"
Started: 2018.7.10, Ended: 2018.8.29
Participants: Babamots (S), MagicJohn (N)
Winner: Babamots

1) MagicJohn: Homeworld Y1 B2 G3
	MagicJohn: I'm not all that new to the game but my learning curve needs a kick-start. Think I may need some better tactics and a general game-plan going in.

2) Babamots: Homeworld B3 R1 G3

3) MagicJohn: Build G1 Magicjohn
	Babamots: I recently switched back to preferring a red home star (compared to yellow). It seems like, whenever I have yellow at home, there's a point in the game where I can't build the yellow I want because it would set up a catastrophe.

4) Babamots: Build G1 Babamots
	MagicJohn: How much work do you put in to avoid giving up the first #2 ship during early building?

5) MagicJohn: Discover G1 Magicjohn B3 Shelob
	Babamots: Depends a lot on whether I'll get the second one right after and whether my opponent will get the next one after that. I usually work pretty hard to keep my opponent from getting larges though.
	Babamots: On this occasion, I think you should not open up the g2 yet. Spread out and diversify.
	MagicJohn: So, if I move my G1 and discover a B3 I can switch colors on the next turn...Is the line reasonable? Seems a bit like developing one's pieces in chess. At this point in the game and based on the colors and sizes of ships and stars, are there certain strategies that I should start to consider or is it still mostly tactical? 
	Babamots: If you discover now, you should probably plan to build in the new system before trading there. Otherwise you'll have no green for more construction. I am likely to trade away my g1, so building green in you new system will be safe (not give me a chance to get medium).
	Babamots: So to answer your question directly, yes that line is reasonable, but it leaves a red or yellow ship in your new system with no way to build. You'll need to send another green there if you want to make more.
	MagicJohn: Discover g1 magicjohn b3 Shelob 

6) Babamots: Trade G1 Y1 Babamots

7) MagicJohn: Build G1 Shelob

8) Babamots: Build Y1 Babamots
	Babamots: Before giving advice, I should have looked more closely at what my actual response to your move would be. You didn't get a yellow ship while there were small ones available, and I have the chance to freeze you out. To get yellow, you'll have to wait until you have a medium ship you can trade for a y2.

9) MagicJohn: Trade G1 B1 Shelob
	MagicJohn: You could just loan me one.... work for uber peraps?

10) Babamots: Pass
	MagicJohn: So, keeping colors diversified is import so one is harder to shut out. By trading here my intent is to gain a blue "foothold" and if you build green I am closer to reaching the #2 ships (green group in this case) that I need to build and exchange for yellow.?.?
	Babamots: The trouble with what you describe is that Shelob only has room for one more blue. You'll need to build green at home and trade that for blue if you want to work toward mediums through blue. I'm pretty sure I will have all the y2 before you get a b2.

I've been looking for another way for you to get yellow. Here's some reasoning about the closest thing I've found:

1) build g1 MagicJohn
2) trade g3 y3 MagicJohn
3) build y2 MagicJohn

The danger here is that you would then have three yellow at home. If I move

1) ... build y2 Babamots
2) ... discover y1 Babamots g2 Iconia
3) ... sacrifice y2 Babamots move y1 Iconia MagicJohn (2 moves) catastrophe MagicJohn y

then I would win. So you need to avoid overpopulation by moving your y3 to a new system after your move 2:

2B) discover y3 MagicJohn g3 Grishnak
3B) build y1 Grishnak

Since you only have a small at home now, I might try to do a red-based invasion, for example

2B) ... trade y1 r1 Babamots
3B) ... sacrifice y2 Babamots move y1 Iconia MagicJohn (2 moves) 
4B) ...sacrifice r1 Babamots attack g1 MagicJohn

and I win. So you would need to move your y3 back home before that:

4B) move y3 Grishnak MagicJohn

So, now the population of your home is your y3, my g1 and y1. There are three yellows, so you need to trade quick, and preferably capture the pesky invaders. The most likely thing seems to be

5B) trade y3 r3 MagicJohn
6B) attack g1 MagicJohn (or y1 if I moved the g1 on my move 5)

In the end, you still have a y1 in Grishnak and can build more yellow when it suits you,

All of that analysis is just to make sure you can get a yellow without losing immediately. Since my most aggressive moves can't kill you, I will probably do something a little different, starting on move 2 or 3.

Some day, I want to make an online Homeworlds move explorer. Something that would let me play out a bunch of moves for experimentation and share the results with a link. All this text is hard to work with.
	Babamots: Sigh. I forgot that it was my turn. So really, none of that analysis holds up. The plan I just suggested puts you within one move of death a couple of times, so you would actually just lose.

Well, I know how to fix that.

11) MagicJohn: Build G1 Magicjohn

12) Babamots: Build Y2 Babamots

13) MagicJohn: Discover G3 Magicjohn Y3 Gandalf

14) Babamots: Discover Y1 Babamots B2 Bolius
	Babamots: It was late when I wrote that long advice. There are more mistakes in there. Don't believe it too much :-P

15) MagicJohn: Trade G1 R1 Magicjohn

16) Babamots: Sacrifice G3 Babamots
Build Y2 Bolius
Build Y2 Bolius
Build Y3 Babamots

17) MagicJohn: Build G1 Gandalf
	Babamots: I think the best thing for you right now is to build more ships. If you build in Gandalf, you can move the g3 back home while keeping the y3 piece reserved for yourself. If you're able to get a yellow pieces later, you can sacrifice the green in Gandalf to make a ship out of the y3 marker.
	Babamots: My current plan is to hog the yellows as tightly as I can to keep you from moving around much.
	Babamots: Sorry I haven't done better at teaching this game. If I had charged you for the lesson, I would offer a refund.

18) Babamots: Trade Y3 G3 Babamots

19) MagicJohn: Move G3 Gandalf Magicjohn

20) Babamots: Build Y3 Babamots
	MagicJohn: I do seem to be chasing my tail here. I have,however discovered how quickly a game can go sideways. Which move put me so blatantly on the defensive or was it a cumulative thing exacerbated by moving second. (yes I know you passed a turn already....)Perhaps my original setup paired badly with yours? 
	MagicJohn: I would have liked to trade green for yellow, but, alas, no blue technology in that sector.
	MagicJohn: I suspect you are now going to sac green and add yellow and two greens?
	Babamots: The initial setup (homeworld-ship pairs) isn't the problem. The trouble started on your third move when you discovered Shelob. Games are easier to study in "archive" view:

http://www.superdupergames.org/?page=archive_play&gid=34284&idx=4

After that, I trade for a y1. You then had two choices: 1) get locked out of yellow (since I was about the build the last y1) or 2) trade g1 for y1 in Shelob (which is a unattractive since it leaves you with no green in Shelob and you moved there in order to build and trade).

So with hindsight, on your third move, I think you should have traded g1 for y1. You could then have proceed to build more more green at home and used those to set up new systems for building.
	Babamots: If I sac my green now, I won't be able to build any green (you must still have a green ship in order to build green). I'm just going to build a y3 normally.

The problem this presents for you is that, if you trade g3 for y3 at home, I can move a y2 to a large system (say, Shelob). Then, if you don't trade or move your y3, I can sacrifice my y3 for a yellow catastrophe in your home (destroying your only large ship and one of your stars).

All that to say, it's not safe to trade your g3 for y3 now (in my long analysis before, I thought you could make it, but it's not turning out that way).

21) MagicJohn: Build G1 Shelob
	Babamots: Your advantage right now is that you have greens that are spread out. If we both start building green,

you get g1 (I suggest in Shelob)
I get g2
you get g2 (I suggest in MagiJohn)
I get g2 (assuming I don't come up with a better idea)
you sacrifice g3 and build g2 (Shelob), g3 (MagicJohn), g3 (Gandalf)

At this point, you would have a pretty good grip on greens (I have 3 green ships, you have 12). Your highest concentration is three greens in Shelob (g1,g1,g2) which I could catastrophe by sacrificing a y2 to move in a g2 (a fine trade for you). You would also have a g3 in Gandalf that could discover a blue system and change to y3.

I may try to do something to thwart your plan instead of building that second g2, but building green at least brings you closer to exploiting your advantage.
	Babamots: I can't sacrifice my g3 to build lots of green because they'd all be in the same system and cause a catastrophe. That's why your spread-out greens are better.

22) Babamots: Build G2 Babamots
	Babamots: I've just been talking to a new player, DodoBirb. I think he would benefit from practicing with some more people and I suggested you. I hope that's ok.

23) MagicJohn: Build G2 Magicjohn

24) Babamots: Discover Y2 Bolius G3 Risa
	Babamots: I keep messing up when typing in long suggestions. I included a fourth g2 construction back in that plan, but the principle is still good. Grab all the green.

25) MagicJohn: Build G2 Gandalf

26) Babamots: Build Y3 Risa

27) MagicJohn: Build R1 Magicjohn
	Babamots: I need to get a red ship soon. Otherwise, you can start invading my systems and I'll just have to run.

To get red, I will have to either trade a yellow (giving you an opportunity to trade for a yellow ship at last) or else trade a green (in which case I lose my factory).

If you don't remember, a "factory" is a g3 with another green ship while there are no g1 or g2 in the bank. Sacrificing the g3 lets you rebuild g3 and take two other build actions in one turn.

28) Babamots: Trade Y2 R2 Bolius

29) MagicJohn: Sacrifice B1 Shelob
Trade G2 Y2 Gandalf

30) Babamots: Sacrifice G2 Babamots
Build G2 Babamots
Build R2 Bolius
	MagicJohn: If I trade for y in magicjohn you can create a disaster next move but it would cost you 3 ships. how do you judge the point at which that is a good exchange?
	Babamots: Hmm, I hadn't actually noticed that. That catastrophe would make things very scary for you since our homes would be connected. In fact, I think I would win a few turns later: I sacrifice y2 to move two larges into your home and then sacrifice r2 to attack your large and the one large of mine that you presumably attacked. But that is late-night calculating.

I think you still can't trade for a yellow. Sorry :-(.

I'll look for something better for you in the morning.
	Babamots: I think you should

sacrifice b1 Shelob
trade g2 y2 Gandalf

I could cause a catastrophe in Gandalf (at a high price to me), but I'm quite sure that wouldn't be worth it.

After that, I think you should work on moving your new yellow ship somewhere safe so you can build Gandalf's marker into a ship.
	Babamots: I think your next best options are 1) factory-building r2 and b1 or 2) discovering a y2 system with a green in Gandalf. I don't think either of these is nearly as good as safely getting a y2 though.
	MagicJohn: I inputted the following orders "sacrifice b1 Shelob trade g2 y2 Gandalf" and received a message that I have one unused action... What's up with that?
	Babamots: You need to put a line break between the sacrifice and the action taken with the sacrifice, exactly how it looks in my move suggestion.

It's weird, I know.

31) MagicJohn: Build G2 Gandalf
	MagicJohn: Thnx

32) Babamots: Move R2 Bolius Shelob Risa

33) MagicJohn: Move R1 Magicjohn Gandalf

34) Babamots: Attack G1 Shelob

35) MagicJohn: Sacrifice G3 Magicjohn
Build R2 Gandalf
Build R3 Magicjohn
Build G3 Magicjohn

36) Babamots: Sacrifice G3 Babamots
Build R3 Bolius
Build R3 Shelob
Build G3 Babamots

37) MagicJohn: Discover Y2 Gandalf B2 Elron

38) Babamots: Attack G1 Shelob

39) MagicJohn: Move Y2 Elron Babamots
Catastrophe Babamots Yellow

40) Babamots: Sacrifice Y2 Risa
Move G1 Shelob Magicjohn
Move G1 Shelob Magicjohn
Catastrophe Magicjohn G
	MagicJohn: Little could you know, but my g1 ships have been equipped with self-destruct buttons that I can activate from anywhere in adjacent quadrants... 

41) MagicJohn: Trade R1 G1 Magicjohn
	MagicJohn: Was there any other way of dealing with the threat than running away from home?
	Babamots: Boobytrapping your abandoned equipment? Fiendish!
	Babamots: I think that you were better off ignoring the green catastrophe threat and moving your y2 into my home for a yellow catastrophe. You would be left with no yellow ships, but it would have freed up the supply so you could trade for some.
	Babamots: I can give you some time to contemplate that and undo if you like.

Otherwise, I'm going to split up my yellow ships so you don't get another chance. I actually didn't notice that your y2 had got close enough or I would have responded earlier. That was a mistake for me.

42) Babamots: Trade R2 G2 Bolius
	MagicJohn: OK, lets see where it goes...
	MagicJohn: Not liking the "follow-up catastrophes" possible in magicjohn....

43) MagicJohn: Discover G1 Magicjohn G3 Golum
	Babamots: With two reds at home, you're vulnerable to another catastrophe. I think you'll want to trade one for a yellow or green.

44) Babamots: Move R3 Bolius Golum

	Babamots: It looks bad for you, but it's not quite over. You need to get a non-red to your home system this turn. You could last a few more moves if you trade your r3 or move a green back home.

On the other hand, I'll totally understand if you're done. I hope you've learned a little this game and maybe even had some fun :-)
	MagicJohn: Sorry for the time warp. I spent a week in the mountains in Colorado and forgot to leave a message.
	Babamots: No problem! I had some other games to think about in the meantime. Would you like to finish this game? We could also start another teaching game or I can point you to another practice partner.
	MagicJohn: I seemed to be playing catch-up after the first two or three moves. What move put me on the defensive so quickly?
	Babamots: The trouble started on your third move, when you moved your small ship away from your home:

http://www.superdupergames.org/?page=archive_play&gid=34284&idx=4

On your next move, you would have liked to build another g1 and then trade for a y1 (which would let you build more yellow later). But I saw that I could get both y1 before you could execute that plan (which would lock you out of yellow).

Your backup plan, once I traded for a y1 on my turn 3, should have been to trade g1 for y1 in Shelob. Even though all that y1 could do is move to a new system (preferably green so you could build more yellow), that's better than getting locked out of the yellow economy.

I didn't do a good job of giving you advice on the early moves, so it's as much my fault as yours. Hopefully it taught you something though :-)


34299)
Variants: "Hard time"
Started: 2018.7.12, Ended: 2018.7.22
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B3 Y2 G3
	wil: 
	wil: Nice, I tell you i am too busy for a game...so you challenge me

2) Trydnt: Homeworld B2 Y1 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

	Trydnt: did you? sorry didn't realize haha what happened with Felix? He just dropped to 7th not sure why
	Felix: For some reason, SDG stopped sending me notification emails, so I didn't even notice I was challenged! If you decline a challenge when you're in the top 6, you drop to position 7. Oops :)


34279)
Variants: "Unrated, Hard time"
Started: 2018.7.13, Ended: 2018.7.31
Participants: wil (S), smokeytroll42 (N)
Winner: wil

1) smokeytroll42: Homeworld B2 R3 G3

2) wil: Homeworld B3 Y1 G3

3) smokeytroll42: Build G1 Smokeytroll42

4) wil: B G1 Wil

5) smokeytroll42: Trade G1 Y1 Smokeytroll42

6) wil: T G1 Y1 Wil

7) smokeytroll42: Build G1 Smokeytroll42
	wil: Thx for the game... I am packing to head into the woods...may be a while for my next move unless I run into WiFi along the way
	wil: But thx for the game and have fun

8) wil: B Y2 Wil

9) smokeytroll42: Discover G1 Smokeytroll42 B1 Mars

10) wil: Trade Y1 B1 Wil

11) smokeytroll42: Build G1 Mars

12) wil: Build B1 Wil
	wil: oops, i was influenced by martians
	wil: I see you've played a few times...do you have pyramids and play live as well?
	wil: also consider getting into the tournament...you will play a lot of folks with differing strategies

13) smokeytroll42: Trade G1 R1 Mars
	smokeytroll42: I do have a set although I've not had a chance to play anyone in person! Safe travels!

14) wil: Discover B1 Wil Y2 Y2
	wil: back outta da woods!
	smokeytroll42: Welcome back to civilization. I hope you had a great trip!

15) smokeytroll42: Build G1 Smokeytroll42
	wil: redonkulous

16) wil: Sacrifice G3 Wil
Build B2 Y2
Build B2 Y2
Build B3 Wil

17) smokeytroll42: Trade G3 B3 Smokeytroll42
	wil: sometimes it is handy to set up your mids on a table to play "live" as the layout here confuses

18) wil: Sacrifice B2 Y2
Trade B2 Y2 Y2
Trade B3 G3 Wil
	smokeytroll42: I’m actually doing that with a separate game. Since I’ve only really play online though, I’m used to the interface.

19) smokeytroll42: Trade R1 Y1 Mars
	wil: k
	wil: k

20) wil: Sacrifice G3 Wil
Build Y3 Wil
Build Y3 Y2
Build B2 Wil

21) smokeytroll42: Build Y3 Mars

22) wil: Sacrifice Y2 Wil
Discover Y3 Y2 G3 G3
Discover B1 Wil G2 G2

23) smokeytroll42: Build Y2 Smokeytroll42

24) wil: Trade B2 G2 Wil

25) smokeytroll42: Trade Y1 R1 Mars

26) wil: Sacrifice G2 Wil
Build B2 G2
Build B2 Y2

27) smokeytroll42: Move R1 Mars G2

28) wil: Trade B2 R2 G2

29) smokeytroll42: Build Y1 Mars

30) wil: Trade Y3 G3 Wil

31) smokeytroll42: Discover Y1 Mars G2 Mercury

32) wil: Build Y3 G3

33) smokeytroll42: Sacrifice Y3 Mars
Move Y1 Smokeytroll42 Mars
Move Y1 Mars G3
Move Y1 Mercury G3
Catastrophe G3 Y

34) wil: Build B2 G2

35) smokeytroll42: Attack B1S G2
	wil: lol

36) wil: Sacrifice R2 G2
Attack R1 G2
Attack B1 G2

37) smokeytroll42: Build G1 Mars

38) wil: Build B3 G2
	wil: Now I was willing to let that little mosquito live and be ornery, but when you attack my friends...

39) smokeytroll42: Build G2 Smokeytroll42
	smokeytroll42: I was hoping you’d ignore that little slight
	wil: Take over of my little smurfs...nevah!
	wil: Poppa Smurf will come out of hiding and reign terror

40) wil: Build G2 Wil

41) smokeytroll42: Build G3 Smokeytroll42

42) wil: Trade G2 R2 Wil

43) smokeytroll42: Sacrifice Y2 Smokeytroll42
Move B3 Smokeytroll42 Mars
Move B3 Mars G2
Catastrophe G2 B

44) wil: Move B2 Y2 Mars

45) smokeytroll42: Trade G2 Y2 Smokeytroll42

46) wil: Build R1 Wil

47) smokeytroll42: Sacrifice G3 Smokeytroll42
Build G2 Smokeytroll42
Build G2 Smokeytroll42
Build G3 Mars

48) wil: Build G3 Wil

49) smokeytroll42: Trade G1 R1 Smokeytroll42

50) wil: Sacrifice G3 Wil
Build B1 Mars
Build B2 Mars
Build B3 Y2
Catastrophe Mars B
	wil: Always pleasant to visit a planet without guns...even when the big guy shows up...but a little trepidatious to leave the home land unguarded..

51) smokeytroll42: Discover G2 Smokeytroll42 B1 Jupiter

52) wil: S Y2 Y2
D B3 Y2 Y1 Y1
M R1 G2 Y1
	wil: oops...me thinks I over developed our smurfdom in mars...sorry
	smokeytroll42: I think I may have painted myself into a corner here.
	wil: If you need more paint...

53) smokeytroll42: Build G1 Jupiter

54) wil: M B3 Y1 Smokeytroll42

	smokeytroll42: Good game!
	wil: Gotta leave a big ship at home lesson...
	smokeytroll42: True dat


34298)
Started: 2018.7.14, Ended: 2018.8.20
Participants: ts52 (S), Thorolf (N)
Winner: ts52

1) Thorolf: Homeworld Y1 B2 G3

2) ts52: Homeworld Y3 B2 G3

3) Thorolf: Build G1 Thorolf

4) ts52: Build G1 Ts52



34224)
Variants: "Unrated"
Started: 2018.7.14, Ended: 2018.8.2
Participants: Trydnt (S), shmil1 (N)
Winner: Trydnt

1) shmil1: Homeworld R1 G2 B3

2) Trydnt: Homeworld B3 Y2 G3

3) shmil1: Build B1 Shmil1

4) Trydnt: Build G1 Trydnt

5) shmil1: Build B1 Shmil1

6) Trydnt: Build G1 Trydnt

7) shmil1: Trade B1 Y1 Shmil1

8) Trydnt: Trade G1 R1 Trydnt

9) shmil1: Discover B1 Shmil1 G3 Greenbaker

10) Trydnt: Build R1 Trydnt

11) shmil1: Trade B1 Y1 Greenbaker

12) Trydnt: Build R2 Trydnt

13) shmil1: Build Y1 Greenbaker

14) Trydnt: Trade R2 Y2 Trydnt

15) shmil1: Build B1 Shmil1

16) Trydnt: Sacrifice Y2 Trydnt
Discover R1 Trydnt B1 B1
Move R1 B1 Greenbaker

17) shmil1: Build Y2 Greenbaker

18) Trydnt: Build R2 Greenbaker

19) shmil1: Sacrifice Y2 Greenbaker
Discover Y1 Greenbaker G1 Zell
Move Y1 Greenbaker Zell

20) Trydnt: Move R1 Trydnt Zell

21) shmil1: Build Y2 Zell

22) Trydnt: Build R2 Zell

23) shmil1: Sacrifice Y2 Zell
Move Y1 Zell Trydnt
Move Y1 Zell Trydnt

24) Trydnt: Sacrifice R2 Greenbaker
Attack Y1 Trydnt
Attack Y1 Trydnt

25) shmil1: Build Y2 Shmil1

26) Trydnt: Move Y1 Trydnt Zell

27) shmil1: Discover Y1 Shmil1 R3 Rudy

28) Trydnt: Trade G1 B1 Trydnt

29) shmil1: Discover B1 Shmil1 R3 Zrzek

30) Trydnt: Build R2 Greenbaker

31) shmil1: Build Y2 Shmil1

32) Trydnt: Build Y3 Zell

33) shmil1: Discover Y1 Rudy G1 Pekar

34) Trydnt: Move Y3 Zell Greenbaker

35) shmil1: Build Y3 Pekar

36) Trydnt: Sacrifice Y1 Trydnt
Move B1 Trydnt Zell

37) shmil1: Move Y2 Shmil1 Zrzek

38) Trydnt: Build R2 Greenbaker

39) shmil1: Sacrifice Y2 Zrzek
Move Y3 Pekar Trydnt
Move Y1 Pekar Trydnt

40) Trydnt: Sacrifice R2 Greenbaker
Attack Y3 Trydnt
Attack Y1 Trydnt

41) shmil1: Sacrifice Y2 Shmil1
Move B1 Zrzek Zell
Move B1 Zell Trydnt

42) Trydnt: Sacrifice R1 Greenbaker
Attack B1 Trydnt

43) shmil1: Build B1 Shmil1

44) Trydnt: Move B1 Zell Greenbaker

45) shmil1: Trade B1 Y1 Shmil1

46) Trydnt: Build B1 Greenbaker
	Trydnt: thanks for all the presents

47) shmil1: Build Y2 Shmil1

48) Trydnt: Sacrifice G3 Trydnt
Build Y2 Greenbaker
Build B2 Greenbaker
Build B2 Trydnt

49) shmil1: Discover Y1 Shmil1 Y3 Zlut

50) Trydnt: Discover Y1 Trydnt R1 R1

51) shmil1: Build B2 Shmil1

52) Trydnt: Sacrifice Y2 Greenbaker
Move B1 Greenbaker Shmil1
Move B1 Greenbaker Shmil1
Catastrophe Shmil1 B

53) shmil1: Build Y2 Shmil1

54) Trydnt: Move Y3 Greenbaker Shmil1

55) shmil1: Discover Y1 Zlut G1 Zelee

56) Trydnt: Build Y3 Shmil1
Catastrophe Shmil1 Y

	shmil1: where did my B3 go? I cannot find it in the log.
	Trydnt: 4 moves ago: South's ship Y2 was sacrificed in the greenbaker system. South moved their B1 ship from greenbaker to shmil1. South moved their B1 ship from greenbaker to shmil1. A catastrophe occurred in the shmil1 system. All conversion (B) technology was lost


34289)
Variants: "Unrated"
Started: 2018.7.14, Ended: 2018.7.27
Participants: shmil1 (S), wil (N)
Winner: wil

1) wil: H B3 Y2 G3

2) shmil1: Homeworld G1 B2 Y3

3) wil: Build G1 Wil

4) shmil1: Build Y1 Shmil1

5) wil: Trade G1 B1 Wil

6) shmil1: Build Y1 Shmil1

7) wil: Build G1 Wil

8) shmil1: Discover Y1 Shmil1 G3 Zel

9) wil: Discover G1 Wil B1 B1

10) shmil1: Trade Y1 R1 Shmil1

11) wil: Build G1 Wil

12) shmil1: Move Y1 Zel B1

13) wil: Build G2 B1

14) shmil1: Sacrifice R1 Shmil1
Attack G1 B1
	wil: I'm just over here trying to grow a nice little community.. Did you bring any beer?

15) wil: Sacrifice G3 Wil
Build G2 B1
Build G2 B1
Build G3 Wil
Catastrophe B1 G

16) shmil1: Trade Y1 G1 B1

17) wil: Build B1 Wil
	wil: oops forgot to set the fuse...we will just build elsewhere to avoid the warmongers

18) shmil1: Build G2 B1

19) wil: Discover B1 Wil Y1 Y1

20) shmil1: Trade G2 Y2 B1

21) wil: Trade G1 R1 Wil

22) shmil1: Build Y1 B1

23) wil: Sacrifice G3 Wil
Build B2 Y1
Build B2 Y1
Build B3 Wil

24) shmil1: Build Y1 B1

25) wil: Trade B3 G3 Wil

26) shmil1: Build Y2 Shmil1

27) wil: Build B3 Wil

28) shmil1: Sacrifice Y3 Shmil1
Move Y1 B1 Wil
Move Y1 B1 Wil
Move Y2 B1 Wil
Catastrophe Wil Y

29) wil: Trade B3 Y3 Wil

30) shmil1: Build Y1 Shmil1

31) wil: Move Y3 Wil Shmil1
	wil: well so much for your yellow domination!  I can move!

32) shmil1: Trade Y2 G2 Shmil1
	wil: Couple things about the move as I see them... I am in a much better position now...always risky to take out half a homeworld without a plan...easier method would have been two send one in..and then use a y2 to send the other two.

33) wil: Trade G3 R3 Wil

34) shmil1: Build Y1 Shmil1

35) wil: Sacrifice R3 Wil
Attack Y1 Shmil1
Attack Y1 Shmil1
Attack G2 Shmil1

	wil: gg, I'll play anytime..


34308)
Variants: "Hard time"
Started: 2018.7.15, Ended: 2018.8.12
Participants: dlwillson (S), ts52 (N)
Winner: dlwillson

1) ts52: Homeworld Y1 B2 G3

2) dlwillson: H B3 R1 G3

3) ts52: Build G1 Ts52

4) dlwillson: B G1 Dlwillson

5) ts52: Trade G1 Y1 Ts52

6) dlwillson: T G1 Y1 Dlwillson

7) ts52: Build Y2 Ts52

8) dlwillson: B Y2 Dlwillson

9) ts52: Discover Y1 Ts52 G3 Kermit

10) dlwillson: D Y1 Dlwillson B2 Sea

11) ts52: Build G1 Ts52

12) dlwillson: B G1 Dlwillson

13) ts52: Trade G1 B1 Ts52

14) dlwillson: T G1 R1 Dlwillson

15) ts52: Trade Y2 R2 Ts52

16) dlwillson: B Y2 Dlwillson

17) ts52: Build G1 Ts52

18) dlwillson: Move Y2 Dlwillson Sea

19) ts52: Build B1 Ts52

20) dlwillson: D Y1 Sea B3 Sky

21) ts52: Move B1 Ts52 Kermit

22) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Sky
Build Y3 Sea
Build Y3 Dlwillson

23) ts52: Build Y3 Kermit

24) dlwillson: Trade Y3 R3 Sea

25) ts52: Trade Y3 R3 Kermit

26) dlwillson: T Y2 G2 Sky

27) ts52: Sacrifice G3 Ts52
Build B1 Kermit
Build B2 Kermit
Build B3 Ts52

28) dlwillson: Sacrifice G2 Sky
Build Y2 Sea
Build Y3 Sky

29) ts52: Build Y3 Kermit

30) dlwillson: T Y3 G3 Dlwillson

31) ts52: Trade B3 G3 Ts52

32) dlwillson: D Y2 Sea B3 Serenity

33) ts52: Discover B2 Kermit G2 Oscar

34) dlwillson: B G1 Dlwillson

35) ts52: Move B1 Kermit Oscar

36) dlwillson: Trade Y1 G1 Sky

37) ts52: Move Y3 Kermit Oscar

38) dlwillson: Sacrifice G3 Dlwillson
Build G2 Sky
Build Y1 Sea
Build Y3 Dlwillson

39) ts52: Build R1 Kermit

40) dlwillson: S Y3 Dlwillson
M G2 Sky Ts52
M G1 Sky Ts52
M Y3 Sky Ts52
C Ts52 G

41) ts52: Sacrifice Y3 Oscar
Move B1 Kermit Ts52
Move R1 Kermit Ts52
Move B2 Oscar Dlwillson

42) dlwillson: S R3 Sea
A B2 Dlwillson
A R2 Ts52
A R1 Ts52

43) ts52: Move R3 Kermit Ts52

44) dlwillson: S R2 Ts52
A R3 Ts52
A B1 Ts52
	ts52: Excellent game. Well played.

45) ts52: Move Y1 Kermit Ts52
	dlwillson: Thanks! Good game!

46) dlwillson: Sacrifice R3 Ts52
Attack Y1 Ts52
Attack B1 Ts52
Pass



34236)
Variants: "Unrated"
Started: 2018.7.16, Ended: 2018.8.27
Participants: smokeytroll42 (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 G3 Y3

2) smokeytroll42: Homeworld B3 R2 G3

3) Felix: Build Y1 Felix

4) smokeytroll42: Build G1 Smokeytroll42

5) Felix: Trade Y1 B1 Felix

6) smokeytroll42: Trade G1 B1 Smokeytroll42

7) Felix: Build B2 Felix

8) smokeytroll42: Build G1 Smokeytroll42

9) Felix: Discover B1 Felix G2 Out

10) smokeytroll42: Trade G1 Y1 Smokeytroll42

11) Felix: Build B2 Out

12) smokeytroll42: Discover B1 Smokeytroll42 G1 Bowie

13) Felix: Trade B1 Y1 Out

14) smokeytroll42: Build B1 Bowie

15) Felix: Build B2 Felix

16) smokeytroll42: Trade B1 Y1 Bowie

17) Felix: Discover B2 Felix G2 Conk

18) smokeytroll42: Build Y2 Bowie

19) Felix: Build B1 Conk

20) smokeytroll42: Build Y2 Smokeytroll42

21) Felix: Build B3 Out

22) smokeytroll42: Build B3 Bowie

23) Felix: Trade B2 Y2 Conk

24) smokeytroll42: Discover Y1 Bowie G2 Plant

25) Felix: Trade B2 R2 Out

26) smokeytroll42: Sacrifice Y2 Bowie
Move B3 Bowie Plant
Move B1 Bowie Plant

27) Felix: Trade B2 R2 Felix

28) smokeytroll42: Trade B3 R3 Plant

29) Felix: Build B2 Out

30) smokeytroll42: Build B2 Plant

31) Felix: Build B2 Conk

32) smokeytroll42: Build G1 Smokeytroll42

33) Felix: Trade B3 G3 Out

34) smokeytroll42: Sacrifice Y2 Smokeytroll42
Discover R3 Plant Y3 Tyler
Move R3 Tyler Conk

35) Felix: S Y2 Conk
D B1 Conk G1 Plink
D B2 Conk G1 Sink

36) smokeytroll42: Discover B1 Plant Y3 Lennon

37) Felix: Sacrifice G3 Out
Build B3 Out
Build B3 Plink
Build Y2 Out

38) smokeytroll42: Sacrifice G3 Smokeytroll42
Build G3 Smokeytroll42
Build G3 Smokeytroll42
Build Y2 Plant

39) Felix: Trade B3 Y3 Plink

40) smokeytroll42: Sacrifice G3 Smokeytroll42
Build G3 Smokeytroll42
Build B3 Plant
Build Y2 Smokeytroll42

41) Felix: Build R1 Felix

42) smokeytroll42: Build R1 Conk

43) Felix: Sacrifice Y2 Out
Move R1 Felix Conk
Move R2 Felix Conk
Catastrophe Conk Red

44) smokeytroll42: Move B3 Plant Sink

45) Felix: Move B2 Out Felix

46) smokeytroll42: Move B1 Lennon Plant

47) Felix: Trade B2 G2 Felix

48) smokeytroll42: Trade G3 R3 Smokeytroll42

49) Felix: Build G3 Felix

50) smokeytroll42: Move R3 Smokeytroll42 Sink

51) Felix: Sacrifice B2 Sink
Trade G3 R3 Felix
Pass

52) smokeytroll42: Build B2 Sink

53) Felix: Build G3 Felix

54) smokeytroll42: Move Y1 Smokeytroll42 Sink

55) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Plink
Build Y3 Out

56) smokeytroll42: Sacrifice Y2 Smokeytroll42
Move Y1 Plant Plink
Move Y2 Plant Plink
Catastrophe Plink Y

57) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Plink
Build R1 Out

58) smokeytroll42: Build Y1 Sink

59) Felix: Move R1 Out Plink

60) smokeytroll42: Move Y1 Sink Smokeytroll42

61) Felix: Discover B3 Out R1 Post

62) smokeytroll42: Build Y2 Sink

63) Felix: Build R1 Plink

64) smokeytroll42: Move Y1 Sink Plant

65) Felix: Move Y1 Out Plink

66) smokeytroll42: Sacrifice G3 Smokeytroll42
Build Y2 Plant
Build Y2 Sink
Build Y3 Smokeytroll42

67) Felix: Sacrifice Y3 Out
Move B1 Plink Smokeytroll42
Move B2 Plink Smokeytroll42
Move R1 Plink Smokeytroll42

	smokeytroll42: Good game!
	Felix: Thanks, you too!


34311)
Variants: "Unrated"
Started: 2018.7.16, Ended: 2018.7.31
Participants: smokeytroll42 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G3 B2 Y3

2) smokeytroll42: Homeworld B3 R1 G3

3) Trydnt: Build Y1 Trydnt

4) smokeytroll42: Build G1 Smokeytroll42

5) Trydnt: Build Y1 Trydnt

6) smokeytroll42: Trade G1 Y1 Smokeytroll42

7) Trydnt: Trade Y1 R1 Trydnt

8) smokeytroll42: Build G1 Smokeytroll42

9) Trydnt: Build R1 Trydnt

10) smokeytroll42: Discover G1 Smokeytroll42 B2 Peace

11) Trydnt: Build R2 Trydnt

12) smokeytroll42: Build G1 Peace

13) Trydnt: Discover R2 Trydnt B1 B1

14) smokeytroll42: Build G1 Peace

15) Trydnt: Trade R2 G2 B1

16) smokeytroll42: Build G2 Smokeytroll42

17) Trydnt: Build R2 Trydnt

18) smokeytroll42: Trade G2 R2 Smokeytroll42

19) Trydnt: Build G2 B1

20) smokeytroll42: Move R2 Smokeytroll42 Peace

21) Trydnt: Move R1 Trydnt B1

22) smokeytroll42: Trade G1 Y1 Peace

23) Trydnt: Trade G2 Y2 B1

24) smokeytroll42: Build Y2 Peace

25) Trydnt: Discover Y2 B1 G2 G2

26) smokeytroll42: Discover G1 Peace B1 Harmony

27) Trydnt: Move R2 Trydnt Harmony

28) smokeytroll42: Sacrifice Y1 Peace
Move G1 Harmony Peace

29) Trydnt: Sacrifice G2 B1
Build R2 B1
Build R3 Harmony

30) smokeytroll42: Build R3 Peace

31) Trydnt: Sacrifice Y2 G2
Move R1 B1 Peace
Move R2 B1 Peace
Catastrophe Peace R

32) smokeytroll42: Trade G1 R1 Peace

33) Trydnt: Trade R2 G2 Harmony

34) smokeytroll42: Build R2 Peace

35) Trydnt: Build R2 Trydnt

36) smokeytroll42: Move R1 Peace Smokeytroll42

37) Trydnt: Build G1 Harmony

38) smokeytroll42: Build R2 Peace

39) Trydnt: Build R3 Trydnt

40) smokeytroll42: Sacrifice Y2 Peace
Move R2 Peace Harmony
Move R2 Harmony Trydnt
Catastrophe Trydnt R

41) Trydnt: Move Y1 Trydnt Harmony

42) smokeytroll42: Build R1 Peace

43) Trydnt: Build R2 Harmony

44) smokeytroll42: Discover R1 Smokeytroll42 G2 Love

45) Trydnt: Move R3 Harmony Love

46) smokeytroll42: Build R2 Love

47) Trydnt: Sacrifice R2 Harmony
Attack R1 Love
Attack R2 Love

48) smokeytroll42: Build Y1 Smokeytroll42

49) Trydnt: Trade G2 B2 Harmony

50) smokeytroll42: Move Y1 Smokeytroll42 Peace

51) Trydnt: Build Y2 Harmony

52) smokeytroll42: Build Y2 Peace

53) Trydnt: Sacrifice B2 Harmony
Trade R3 Y3 Love
Trade R1 B1 Love

54) smokeytroll42: Build Y2 Smokeytroll42

55) Trydnt: Build Y3 Trydnt

56) smokeytroll42: Discover Y1 Peace G1 Amity

57) Trydnt: Build G2 Harmony

58) smokeytroll42: Move Y2 Peace Amity

59) Trydnt: Discover Y3 Trydnt B1 B1

60) smokeytroll42: Build G2 Peace

61) Trydnt: Discover G1 Harmony B2 B2

62) smokeytroll42: Build G3 Smokeytroll42

63) Trydnt: Sacrifice Y3 Love
Move G1 B2 Smokeytroll42
Move G2 Harmony Peace
Move G2 Peace Smokeytroll42
Catastrophe Smokeytroll42 G

64) smokeytroll42: Move Y1 Smokeytroll42 Peace

65) Trydnt: Sacrifice Y2 Harmony
Move Y3 B1 Peace
Move Y3 Peace Smokeytroll42

	smokeytroll42: Gg


34309)
Variants: "Unrated, Hard time"
Started: 2018.7.18, Ended: 2018.7.21
Participants: wil (S), mneme (N)
Winner: mneme

1) mneme: Homeworld B3 R1 G3

	wil: Sorry was away camping for 9 days, challenge me anytime
	mneme: Of course.  NP.


34333)
Variants: "Unrated"
Started: 2018.7.18, Ended: 2018.7.20
Participants: mneme (S), Trydnt (N)
Winner: mneme

1) Trydnt: Homeworld B2 Y1 G3

2) mneme: Homeworld G3 B3 Y3 *

3) Trydnt: Build G1 Trydnt

4) mneme: Build Y1 Mneme

5) Trydnt: Trade G1 Y1 Trydnt
	mneme: This should be interesting.  Or short, depending.

6) mneme: Trade Y3 R3 Mneme

7) Trydnt: Discover Y1 Trydnt G3 G3
	mneme: (Yes, this is my first microverse game; I figured it was a good time to finally get some experience with the form).

And ok, wow; this setup is incredibly unforgiving.

8) mneme: Move R3 Mneme Trydnt
	mneme: Thanks for the game!


	Trydnt: damn. VERY unforgiving
	mneme: Sorry --0But the only non-losing move last turn was t y1 r1.


34337)
Variants: "Hard time"
Started: 2018.7.18, Ended: 2018.9.17
Participants: Draw5PlayAll (S), Felix (N)
Winner: Draw5PlayAll

1) Felix: Homeworld Y1 B3 G3

2) Draw5PlayAll: Homeworld B3 R1 G3
	Felix: Good luck and have fun!

3) Felix: Build G1 Felix

4) Draw5PlayAll: Build G1 Draw5playall

5) Felix: Trade G1 Y1 Felix

6) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: I did not really mean to smallverse you

7) Felix: Build Y2 Felix

8) Draw5PlayAll: Build Y2 Draw5playall
	Felix: I don't mind! Small universes are fun

9) Felix: Discover Y1 Felix G2 Conk

10) Draw5PlayAll: Discover Y1 Draw5playall G2 Goodidea
	Draw5PlayAll: I wonder when maybe someone I can beat will be #1 on the ladder again...

11) Felix: Build G1 Felix

12) Draw5PlayAll: Build G1 Draw5playall

13) Felix: Trade G1 R1 Felix

14) Draw5PlayAll: Trade G1 R1 Draw5playall

15) Felix: B R2 Felix

16) Draw5PlayAll: Build Y2 Draw5playall

17) Felix: Build Y3 Conk

18) Draw5PlayAll: Build Y3 Goodidea

19) Felix: Discover Y2 Felix G2 Plink

20) Draw5PlayAll: Trade Y2 B2 Draw5playall

21) Felix: Trade R1 B1 Felix

22) Draw5PlayAll: Move B2 Draw5playall Goodidea

23) Felix: Move B1 Felix Conk

24) Draw5PlayAll: Build B1 Goodidea

25) Felix: Build R1 Felix

26) Draw5PlayAll: Move R1 Draw5playall Goodidea

27) Felix: Move R1 Felix Conk

28) Draw5PlayAll: Build R2 Goodidea

29) Felix: Build R2 Conk

30) Draw5PlayAll: Discover R2 Goodidea G1 Seed

31) Felix: Build R3 Felix

32) Draw5PlayAll: Build R3 Goodidea

33) Felix: Move R2 Felix Plink

34) Draw5PlayAll: Build R3 Seed

35) Felix: Build B1 Conk

36) Draw5PlayAll: Move B1 Goodidea Seed

37) Felix: Discover B1 Conk G1 Injection

38) Draw5PlayAll: Build B2 Seed

39) Felix: Build B2 Injection

40) Draw5PlayAll: Build B3 Goodidea

41) Felix: Move R2 Conk Draw5playall

42) Draw5PlayAll: Move R3 Goodidea Injection

43) Felix: Sacrifice Y3 Conk
Move R2 Plink Draw5playall
Move B2 Injection Conk
Move B1 Injection Plink

44) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R3 Seed Plink
Move R3 Injection Conk

45) Felix: Sacrifice Y2 Plink
Move B2 Conk Draw5playall
Move R1 Conk Draw5playall
Catastrophe Draw5playall Red

46) Draw5PlayAll: Sacrifice R2 Seed
Attack B1 Conk
Attack B1 Plink

47) Felix: Discover Y1 Conk G1 Outpost
	Draw5PlayAll: Yay no G2s in the stash!

48) Draw5PlayAll: Sacrifice R1 Goodidea
Attack B2 Draw5playall

49) Felix: Build Y2 Outpost
	Draw5PlayAll: I think you are dead lost.

50) Draw5PlayAll: Move Y3 Goodidea Seed

51) Felix: Discover Y1 Outpost G3 Grinch

52) Draw5PlayAll: Build G1 Draw5playall
	Felix: I think you're probably right!

53) Felix: Move Y1 Grinch Seed

54) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R1 Conk
Build R1 Plink

55) Felix: Build G3 Felix

56) Draw5PlayAll: Sacrifice R1 Conk
Attack Y1 Seed

57) Felix: Build Y2 Outpost

58) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R1 Conk
Build Y2 Goodidea
Build G3 Draw5playall

59) Felix: Discover Y2 Outpost R2 Inpost

60) Draw5PlayAll: Sacrifice Y1 Goodidea
Move Y1 Seed Plink

61) Felix: S G3 Felix
B Y1 Inpost
B Y3 Inpost
B Y3 Outpost

62) Draw5PlayAll: Sacrifice Y2 Goodidea
Move Y1 Plink Seed
Move Y1 Seed Inpost
Catastrophe Inpost Yellow

63) Felix: Build G3 Felix
	Draw5PlayAll: Inpost?!?

64) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 Seed
Build Y1 Seed

65) Felix: Discover Y2 Outpost R2 Uppit

66) Draw5PlayAll: Trade Y1 R1 Seed

67) Felix: Build Y1 Outpost

68) Draw5PlayAll: Move Y1 Seed Goodidea

69) Felix: D Y1 Outpost R2 Stalfort
	Draw5PlayAll: ...why did I do that?

70) Draw5PlayAll: Discover R1 Seed Y3 Holding
	Felix: You can always undo!

71) Felix: S G3 Felix
B G3 Felix
B Y2 Outpost
B Y2 Stalfort
	Draw5PlayAll: The hard part is actually winning.

72) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R2 Holding
Pass
Pass
Pass
Pass
Pass
Pass
	Felix: I believe in you!
	Draw5PlayAll: Too Many Systems

73) Felix: M R3 Felix Stalfort

74) Draw5PlayAll: Sacrifice Y3 Seed
Move R1 Holding Stalfort
Move R2 Holding Stalfort
Catastrophe Stalfort Red
Move R3 Conk Felix

	Draw5PlayAll: Yeah, this was much better.
	Felix: Much better! Nice move!


34344)
Variants: "Unrated"
Started: 2018.7.20, Ended: 2018.7.30
Participants: DodoBirb (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3

2) DodoBirb: Homeworld B1 R3 G3

3) Babamots: Build G1 Babamots

4) DodoBirb: Build G1 Dodobirb

5) Babamots: Trade G1 B1 Babamots

6) DodoBirb: Trade G1 B1 Dodobirb

7) Babamots: Build B2 Babamots

8) DodoBirb: Build B2 Dodobirb

9) Babamots: Trade B2 Y2 Babamots

10) DodoBirb: Trade B2 Y2 Dodobirb

11) Babamots: Build B2 Babamots

12) DodoBirb: Build B2 Dodobirb

13) Babamots: Discover B1 Babamots G3 Ferenginar

14) DodoBirb: Discover B2 Dodobirb G2 Twopip

15) Babamots: Build B3 Ferenginar

16) DodoBirb: Build B3 Twopip

17) Babamots: Trade B3 Y3 Ferenginar

18) DodoBirb: Trade B3 Y3 Twopip

19) Babamots: Build B3 Ferenginar

20) DodoBirb: Build B3 Twopip

21) Babamots: Discover B1 Ferenginar G2 Risa
	Babamots: I'm making you move first next game :-P

22) DodoBirb: Discover B1 Dodobirb G2 Echo

23) Babamots: Build B3 Risa

24) DodoBirb: Trade B3 Y3 Twopip

25) Babamots: Trade B3 R3 Risa

26) DodoBirb: Trade B1 R1 Echo

27) Babamots: Build B1 Ferenginar

28) DodoBirb: Build B3 Twopip

29) Babamots: Build B3 Risa

30) DodoBirb: Discover B3 Twopip R3 Threepip

31) Babamots: Trade B2 R2 Babamots

32) DodoBirb: Move Y3 Twopip Dodobirb

33) Babamots: Move B3 Ferenginar Echo
	Babamots: You're in quite a bit of danger. Can you see my plan?
	DodoBirb: You can sacrifice your y3 in Ferenginar to move your b3, r3 and b1 from Risa to DodoBirb. I take your r3 or b3 then you sacrifice your r2 in your homeworld to take the g3 and your b3 or r3 back. Then you take my y2 and win. That is, if I don't do anything.

34) DodoBirb: Sacrifice Y3 Twopip
Move B2 Twopip Dodobirb
Move B2 Dodobirb Risa
Move B3 Threepip Risa
Catastrophe Risa B
	Babamots: Yes, something like that was the immediate danger, and moving a second large to your home was a good defense (it would probably make my invasion end in a draw, trading my large back and forth).

Your next problem is that I'm establishing a second foothold on a medium system connected to your home...

35) Babamots: Discover Y3 Ferenginar G2 Xindi

36) DodoBirb: Build G1 Dodobirb

37) Babamots: Sacrifice Y2 Babamots
Move Y3 Xindi Dodobirb
Move B3 Echo Dodobirb

38) DodoBirb: Attack Y3N Dodobirb

39) Babamots: Sacrifice R3 Risa
Attack Y3 Dodobirb
Attack Y3 Dodobirb
Attack G3 Dodobirb

40) DodoBirb: Pass

41) Babamots: Sacrifice R2 Babamots
Attack Y2 Dodobirb
Attack G1 Dodobirb

	Babamots: I promise to let the crews of those ships live :-)
	DodoBirb: What about the civilians in the Homeworld?
	Babamots: I would certainly prefer to spare as many taxpayers as possible. I may have to execute a few government officials as I cement my control, but I have no love of killing for its own sake.


34265)
Variants: "Hard time"
Started: 2018.7.23, Ended: 2018.7.26
Participants: Sticky (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

	Trydnt: welcome


34314)
Variants: "Unrated"
Started: 2018.7.23, Ended: 2018.7.23
Participants: wil (S), Sticky (N)
Winner: wil

	Sticky: homeworld green blue yellow
	wil: Sorry was away camping for 9 days, challenge me anytime
	wil: Sorry was away camping for 9 days, challenge me anytime


34358)
Variants: "Hard time"
Started: 2018.7.25, Ended: 2018.8.7
Participants: bhorner (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3

2) bhorner: H R3 B1 G3
	Babamots: My first game for the tournament. Have fun!

3) Babamots: Build G1 Babamots
	Draw5PlayAll: Wait what?!
	Draw5PlayAll: Oh, I had better start challenging people!
	bhorner: You too.  :). Thanks for organizing!

4) bhorner: Build G1 Bhorner

5) Babamots: Trade G1 B1 Babamots

6) bhorner: Trade G1 B1 Bhorner

7) Babamots: Build B2 Babamots

8) bhorner: Build B2 Bhorner
	bhorner: Have I already made a mistake?  :)

9) Babamots: Trade B2 Y2 Babamots
	Babamots: I don't think so. Looks pretty even to me.

10) bhorner: Trade B2 Y2 Bhorner
	bhorner: I saw that we were charging to expose the B3's, and didn't have a plan... thought you might.  I like being on my toes.  I don't get that in person too often.  :)

11) Babamots: Build B2 Babamots
	Babamots: In person, you don't often play people with plans? Or in person, you aren't often on your toes? I don't have anyone to play with in person, myself.

12) bhorner: Build B2 Bhorner
	bhorner: In person I don't often need to be on my toes.  :)

13) Babamots: Discover B1 Babamots G3 Risa

14) bhorner: Discover B1 Bhorner G2 Swirl
	Draw5PlayAll: Not having anyone to play against IRL: a common lament.

15) Babamots: Build B3 Risa

16) bhorner: Build B3 Swirl

17) Babamots: Trade B1 Y1 Risa

18) bhorner: Trade B1 R1 Swirl

19) Babamots: Build Y1 Babamots

20) bhorner: Build B1 Swirl

21) Babamots: Trade B2 R2 Babamots

22) bhorner: Trade B3 Y3 Swirl

23) Babamots: Discover Y1 Babamots B3 Bolarus

24) bhorner: Build R1 Swirl

25) Babamots: Build Y1 Risa

	Babamots: Sorry you're so busy. I'll have to play you another time!


34359)
Variants: "Hard time"
Started: 2018.7.25, Ended: 2018.8.7
Participants: bhorner (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 R2 G3

2) bhorner: H R2 B1 G3

3) ajo: Build G1 Ajo
	bhorner: Nice to meet you, good luck!

4) bhorner: B G1 Bhorner
	ajo: Thanks and good luck!

5) ajo: Trade G1 Y1 Ajo

6) bhorner: Trade G1 B1 Bhorner

7) ajo: Build G1 Ajo

8) bhorner: Build B1 Bhorner

9) ajo: Build G1 Ajo

10) bhorner: Build G1 Bhorner

11) ajo: Build Y1 Ajo

12) bhorner: Trade G1 Y1 Bhorner

13) ajo: Build Y2 Ajo

14) bhorner: Discover B1 Bhorner G3 Tree

15) ajo: Sacrifice Y2 Ajo
Discover Y1 Ajo G1 Beta
Discover Y1 Beta B3 Alpha

16) bhorner: Build Y2 Bhorner

17) ajo: Sacrifice G1 Ajo
Build Y2 Alpha

18) bhorner: Move Y1 Bhorner Tree

19) ajo: Trade Y1 G1 Alpha

20) bhorner: Build B2 Tree

21) ajo: Build Y1 Alpha

22) bhorner: Discover B2 Tree G1 Twig

23) ajo: Trade Y2 R2 Alpha

24) bhorner: Trade B1 R1 Bhorner

25) ajo: Build Y2 Alpha

26) bhorner: Build G2 Bhorner

27) ajo: Build R1 Alpha

28) bhorner: M R1 Bhorner Tree

29) ajo: Sacrifice Y2 Alpha
Move R2 Alpha Twig
Move R2 Twig Tree

30) bhorner: Sacrifice G2 Bhorner
Build R1 Tree
Build R3 Tree
Catastrophe Tree Red

31) ajo: Build Y2 Alpha

32) bhorner: Trade B2 R2 Twig

33) ajo: Build G2 Alpha

34) bhorner: Build B1 Tree

35) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G2 Alpha
Build G3 Ajo

	ajo: Proximity-to-time-limit alert! :o


34360)
Variants: "Hard time"
Started: 2018.7.25, Ended: 2018.8.27
Participants: nycavri (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Hi Avri! TaGG!  :)
	Laurie_Menke: Also, if you're free today, it's my day off, so I have more time to play  than usual.  :)

2) nycavri: Homeworld G2 B3 Y3
	nycavri: Likely only going to get a move or two in today . . .
	nycavri: TaGG!

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: OK... no worries. Have fun!

4) nycavri: Build Y1 Nycavri

5) Laurie_Menke: Build G1 Laurie_menke

6) nycavri: Discover Y1 Nycavri B1 Deacon

7) Laurie_Menke: Trade G1 R1 Laurie_menke

8) nycavri: Build Y1 Nycavri

9) Laurie_Menke: Trade G1 Y1 Laurie_menke

10) nycavri: Build Y2 Nycavri

11) Laurie_Menke: Discover Y1 Laurie_menke G2 Hi

12) nycavri: Discover Y2 Nycavri B1 May

13) Laurie_Menke: Build G1 Laurie_menke

14) nycavri: Build Y2 Nycavri

15) Laurie_Menke: Build G1 Laurie_menke

16) nycavri: Discover Y1 Nycavri G1 Mercury

17) Laurie_Menke: Move R1 Laurie_menke Hi

18) nycavri: Trade Y2 G2 May

19) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller

20) nycavri: Build G3 May

21) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build G3 Yeller
Build R1 Hi

22) nycavri: Sacrifice G3 May
Build G3 May
Build Y2 Deacon
Build Y3 Mercury

23) Laurie_Menke: Move G3 Yeller Deacon

24) nycavri: Sacrifice Y2 Deacon
Discover G3 May R2 Taylor
Move G2 May Taylor

25) Laurie_Menke: Trade G1 R1 Laurie_menke

26) nycavri: Discover Y1 Deacon Y2 May

27) Laurie_Menke: Move Y1 Hi Mercury

28) nycavri: Move Y1 Mercury May

29) Laurie_Menke: Move Y1 Mercury May

30) nycavri: Build G1 Taylor

31) Laurie_Menke: Move Y1 May Deacon

32) nycavri: Trade Y2 R2 Nycavri

33) Laurie_Menke: Sacrifice G3 Deacon
Build G3 Yeller
Build Y2 Deacon
Build R2 Laurie_menke

34) nycavri: Build R3 Nycavri

35) Laurie_Menke: Sacrifice Y2 Deacon
Move G1 Yeller Deacon
Move R1 Hi Deacon

36) nycavri: Sacrifice Y3 Mercury
Move G1 Taylor Laurie_menke
Move G2 Taylor Laurie_menke
Move G3 Taylor Laurie_menke
Catastrophe Laurie_menke G

37) Laurie_Menke: Move G3 Yeller Laurie_menke

38) nycavri: Build Y2 Nycavri

39) Laurie_Menke: Build R2 Deacon

	Laurie_Menke: Hey, Avri...I hope everything's OK! Just a warning that you're going to time out in one day and this is a tournament game, so it's hard time! I don't want to win that way!  ;)
	Laurie_Menke: :(  Sorry. I hope you're OK!
	Babamots: nycavri indicated to me that being busy and was the problem and nothing more dire.

If you would both like to continue this game (or even start a new replacement game), that's OK with me from a tournament standpoint.

I don't know if there's any way to restart the clock on this game though. I'm going to try an experiment.
	Babamots: I sent the "clock reset" command to the chat, but it doesn't appear to work on terminated games.

Let me know if you want to try to resume or restart. I'll happily adjust the spreadsheet.
	Laurie_Menke: I'd very much prefer to win or lose based on merit rather than time. If Avri's willing, we could replay this game to this point and continue. What do you think, Avri? Wanna give it a try?


34369)
Variants: "Hard time"
Started: 2018.7.25, Ended: 2018.8.3
Participants: Draw5PlayAll (S), Remneb (N)
Winner: Draw5PlayAll

1) Remneb: Homeworld B1 R2 G3

2) Draw5PlayAll: Homeworld B1 G2 B3 *
	Remneb: Have a good game.

3) Remneb: Build G1 Remneb

4) Draw5PlayAll: Build B1 Draw5playall

5) Remneb: Trade G1 Y1 Remneb
	Draw5PlayAll: This is for the tournament just so you know.
	Remneb: I know.

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) Remneb: Build G1 Remneb

8) Draw5PlayAll: Build B2 Draw5playall

9) Remneb: Build Y1 Remneb

10) Draw5PlayAll: Discover B2 Draw5playall G3 Keeper

11) Remneb: Discover Y1 Remneb G3 Thor

12) Draw5PlayAll: Build B2 Keeper

13) Remneb: Discover G1 Remneb Y3 Gort

14) Draw5PlayAll: Build B2 Draw5playall

15) Remneb: Build G1 Gort

16) Draw5PlayAll: Build B3 Keeper

17) Remneb: Build G1 Remneb

18) Draw5PlayAll: Trade B3 R3 Keeper

19) Remneb: Trade G1 R1 Remneb

20) Draw5PlayAll: Build B3 Keeper

21) Remneb: Build G1 Remneb

22) Draw5PlayAll: Trade B3 Y3 Keeper

23) Remneb: Sacrifice G3 Remneb
Build G2 Remneb
Build G2 Gort
Build G3 Remneb

24) Draw5PlayAll: Trade B2 R2 Keeper

25) Remneb: Trade G2 B2 Remneb

26) Draw5PlayAll: Sacrifice Y3 Keeper
Move B1 Draw5playall Keeper
Move B1 Keeper Remneb
Move B2 Keeper Remneb
Catastrophe Remneb Blue

27) Remneb: Build G2 Remneb
	Draw5PlayAll: No one steals my blue...

28) Draw5PlayAll: Sacrifice Y3 Draw5playall
Pass
Move R2 Keeper Remneb
Move R3 Keeper Remneb
Catastrophe Remneb Red
	Draw5PlayAll: Goodtry



34373)
Variants: "Hard time"
Started: 2018.7.25, Ended: 2018.8.14
Participants: mneme (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3

2) mneme: Homeworld G3 R2 B3

3) dlwillson: B G1 Dlwillson

4) mneme: Build B1 Mneme

5) dlwillson: T G1 B1 Dlwillson
	mneme: Good luck!


6) mneme: Build B2 Mneme
	dlwillson: Have fun!

7) dlwillson: Build B2 Dlwillson

8) mneme: Trade B3 Y3 Mneme

9) dlwillson: Discover B2 Dlwillson G2 Field

10) mneme: Trade B2 Y2 Mneme

11) dlwillson: B B2 Field

12) mneme: Build B2 Mneme

13) dlwillson: T B1 R1 Dlwillson

14) mneme: Build Y1 Mneme

15) dlwillson: T B2 Y2 Field

16) mneme: Discover Y2 Mneme G1 Euterpe

17) dlwillson: Build B1 Field

18) mneme: Trade B2 R2 Mneme

19) dlwillson: T B1 R1 Field

20) mneme: Move R2 Mneme Euterpe

21) dlwillson: Build G1 Dlwillson

22) mneme: Build Y1 Euterpe

23) dlwillson: B R1 Field

24) mneme: Build B1 Mneme

25) dlwillson: D R1 Field R3 Mars

26) mneme: Discover Y2 Euterpe R3 Melpomene

27) dlwillson: Build B2 Field

28) mneme: Move B1 Mneme Euterpe

29) dlwillson: T B2 G2 Field

30) mneme: Build Y1 Mneme

31) dlwillson: S G3 Dlwillson
B Y2 Field
B R2 Mars
B G1 Field

32) mneme: Build R3 Euterpe

33) dlwillson: S Y2 Field
M R2 Mars Euterpe
M R1 Mars Euterpe
C Euterpe R

34) mneme: Build B2 Mneme

35) dlwillson: B G2 Dlwillson

36) mneme: Trade B2 R2 Mneme

37) dlwillson: B G3 Dlwillson

38) mneme: Trade Y3 G3 Mneme

39) dlwillson: D G2 Dlwillson B2 Sea

40) mneme: Build B2 Euterpe

41) dlwillson: Sacrifice G2 Field
Build B3 Field
Build G2 Sea

42) mneme: Build B3 Mneme

43) dlwillson: T B3 R3 Field

44) mneme: Trade B2 R2 Euterpe

45) dlwillson: M R3 Field Euterpe
	mneme: Nice.

46) mneme: Sacrifice G3 Mneme
Build R1 Euterpe
Build R3 Euterpe
Build Y2 Melpomene
Catastrophe Euterpe R

47) dlwillson: S G3 Dlwillson
B Y3 Field
B G3 Sea
B G3 Dlwillson

48) mneme: Build Y3 Euterpe

49) dlwillson: Sacrifice G3 Dlwillson
Build G3 Dlwillson
Build R1 Dlwillson
Build R2 Field

50) mneme: Sacrifice Y2 Melpomene
Move Y2 Melpomene Field
Move Y1 Euterpe Field
Catastrophe Field Y

51) dlwillson: Sacrifice G3 Dlwillson
Build R3 Field
Build R3 Dlwillson
Build G3 Dlwillson

52) mneme: Build R3 Mneme

53) dlwillson: S B2 Field
T R3 B3 Field
T R3 Y3 Dlwillson

54) mneme: Discover R3 Mneme Y1 Calliope

55) dlwillson: M R1 Dlwillson Sea

56) mneme: Build Y2 Euterpe

57) dlwillson: T G2 Y2 Sea

58) mneme: Build Y2 Mneme
	dlwillson: How do you pronounce your handle?

59) dlwillson: M Y3 Dlwillson Field
	mneme: nemay, more or less.  The "M" is only mostly silent, the Es aren't.

60) mneme: Move R2 Mneme Euterpe

61) dlwillson: S G3 Dlwillson
B B2 Field
B G2 Field
B G3 Dlwillson
	dlwillson: I was pretty close to correct. I'll fix my second e.

62) mneme: Build R3 Euterpe

63) dlwillson: S Y3 Field
M G1 Field Euterpe
M G2 Field Euterpe
M G2 Sea Euterpe
C Euterpe G
	mneme: Thanks.  It would probably be more correct to the greek to use the same sound for both epsilons, but this sounds better to me.

64) mneme: Trade Y2 G2 Mneme

65) dlwillson: Trade R2 Y2 Field

66) mneme: Move B1 Mneme Calliope

67) dlwillson: Sacrifice G3 Sea
Build Y2 Field
Build Y3 Field
Build Y3 Sea

68) mneme: Discover Y1 Mneme B1 Urania

69) dlwillson: Move Y2 Field Urania
	mneme: Well played.

70) mneme: Discover Y1 Urania G2 Melpomene
	dlwillson: Thank you!

71) dlwillson: M R1 Field Urania

72) mneme: Sacrifice G2 Mneme
Build B2 Mneme
Build B3 Calliope

73) dlwillson: T B3 G3 Field

74) mneme: Trade B1 G1 Calliope

75) dlwillson: S G3 Dlwillson
B R2 Urania
B R2 Urania
B R3 Dlwillson

76) mneme: Build R3 Calliope

77) dlwillson: S B2 Field
T R3 G3 Dlwillson
T R1 G1 Sea

78) mneme: Move R3 Calliope Melpomene

79) dlwillson: Sacrifice Y2 Field
Move R1 Urania Mneme
Move G1 Dlwillson Sea

80) mneme: Attack R1 Mneme

81) dlwillson: S Y3 Field
M R2 Urania Mneme
M R2 Urania Mneme
C Mneme R
M G3 Field Mneme

	dlwillson: The new rule about cat'ing whenever you want to... Allows for more complicated doomsday machines.
	mneme: I know it does.  I worked out the two step sequence after I commented. :)

Well played.
	dlwillson: Thank you and good game!
	mneme: The same!  And looks like this is the game that took you past me in the rankings; congrats!
	dlwillson: Thanks again! Remember TwoShort? 
	mneme: How could I forget him?


34371)
Variants: "Hard time"
Started: 2018.7.25, Ended: 2018.8.3
Participants: Babamots (S), Draw5PlayAll (N)
Winner: Babamots

1) Draw5PlayAll: Pass

2) Babamots: Homeworld B2 R1 G3
	Draw5PlayAll: You go first. Good luck.
	Babamots: Thanks! You too.

For the record, this is for the Great Tournament.

3) Draw5PlayAll: Homeworld B3 R2 G3

4) Babamots: Build G1 Babamots
	Draw5PlayAll: I never use 2/2/7 for anything else, so if nothing else, 227 + Rated = Tournament.

5) Draw5PlayAll: Build G1 Draw5playall

6) Babamots: Trade G1 Y1 Babamots

7) Draw5PlayAll: Build G1 Draw5playall

8) Babamots: Build Y1 Babamots

9) Draw5PlayAll: Trade G1 Y1 Draw5playall

10) Babamots: Discover Y1 Babamots G3 Risa

11) Draw5PlayAll: Build Y2 Draw5playall

12) Babamots: Build Y2 Risa

13) Draw5PlayAll: Discover Y1 Draw5playall G1 G1

14) Babamots: Move Y1 Risa G1

15) Draw5PlayAll: Trade G1 R1 Draw5playall

16) Babamots: Sacrifice G3 Babamots
Build Y2 G1
Build Y3 Risa
Build Y3 Babamots

17) Draw5PlayAll: Build Y3 Draw5playall
	Babamots: Not sure what this'll do. Should be interesting.

18) Babamots: Sacrifice Y2 Risa
Move Y1 G1 Draw5playall
Move Y2 G1 Draw5playall
Catastrophe Draw5playall Y

19) Draw5PlayAll: Build R1 Draw5playall

20) Babamots: Trade Y1 G1 Babamots

21) Draw5PlayAll: Build Y1 G1

22) Babamots: Build Y1 Risa

23) Draw5PlayAll: Sacrifice Y1 G1
Move R1 Draw5playall G1

24) Babamots: Build G1 Babamots

25) Draw5PlayAll: Build G2 Draw5playall

26) Babamots: Build G2 Babamots

27) Draw5PlayAll: Build R2 G1

28) Babamots: Trade G2 R2 Babamots

29) Draw5PlayAll: Trade G2 Y2 Draw5playall

30) Babamots: Move Y3 Risa G1

31) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R3 G1
Build Y1 G1
Build Y2 G1
Catastrophe G1 Yellow

32) Babamots: Build R3 Babamots

33) Draw5PlayAll: Sacrifice R1 G1
Pass

34) Babamots: Sacrifice Y3 Babamots
Move R3 Babamots Risa
Move R3 Risa G1
Move R3 G1 Draw5playall

35) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R2 G1 Draw5playall
C Draw5playall Red
Move R3 G1 Draw5playall

36) Babamots: Trade R2 Y2 Babamots
	Draw5PlayAll: Darn

37) Draw5PlayAll: Trade R3 G3 Draw5playall
	Draw5PlayAll: I should have sacrificed the Y2 to switch the places of the R3@G1 and my R1@Draw5PlayAll
	Babamots: Yeah, I think so too. Or you could have traded y2 for g2 which would have let you build into a catastrophe if I invaded.

38) Babamots: Move Y1 Risa Babamots

39) Draw5PlayAll: Trade G3 Y3 Draw5playall

40) Babamots: Build G1 Babamots
	Draw5PlayAll: DARN!!!!

41) Draw5PlayAll: Pass
	Babamots: Pretty weird situation here.

42) Babamots: Trade G1 B1 Babamots

43) Draw5PlayAll: Move Y3 Draw5playall Babamots
	Babamots: Gonna make me come over there I see :-D

	Draw5PlayAll: It let me do that?!
	Babamots: Wow! What happened? I'm sure I've gotten an error from SDG when I tried to abandon my home.

Since you issued the challenge, will you record the result?

Good game. And good luck with the tournament!
	Babamots: I'll go ahead and record it. I'm a little OCD about my spreadsheet being up to date :-).


34370)
Variants: "Hard time"
Started: 2018.7.25, Ended: 2018.8.2
Participants: Draw5PlayAll (S), tetsuhari (N)
Winner: Draw5PlayAll

1) tetsuhari: Homeworld Y2 G3 B3

2) Draw5PlayAll: Homeworld B3 R1 G3

3) tetsuhari: Build B1 Tetsuhari

4) Draw5PlayAll: Build G1 Draw5playall

5) tetsuhari: Discover B1 Tetsuhari G1 Greenone

6) Draw5PlayAll: Build G1 Draw5playall

7) tetsuhari: Build B1 Greenone

8) Draw5PlayAll: Trade G1 Y1 Draw5playall

	Draw5PlayAll: ...


34367)
Variants: "Hard time"
Started: 2018.7.26, Ended: 2018.8.19
Participants: DodoBirb (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) DodoBirb: Homeworld B1 R2 G3
	Draw5PlayAll: For the tournament. I am letting you go first.

3) Draw5PlayAll: Homeworld B1 G2 B3 *
	DodoBirb: Good Luck

4) DodoBirb: Build G1 Dodobirb

5) Draw5PlayAll: Build B1 Draw5playall

6) DodoBirb: Trade G1 Y1 Dodobirb

7) Draw5PlayAll: Trade B3 Y3 Draw5playall

8) DodoBirb: Build Y1 Dodobirb

9) Draw5PlayAll: Build B2 Draw5playall

10) DodoBirb: Build Y1 Dodobirb

11) Draw5PlayAll: Build Y2 Draw5playall

12) DodoBirb: Discover Y1 Dodobirb G3 Biggreen

13) Draw5PlayAll: Move B2 Draw5playall Biggreen

14) DodoBirb: Build Y2 Biggreen

15) Draw5PlayAll: Trade Y2 R2 Draw5playall

16) DodoBirb: Trade Y1 R1 Dodobirb

17) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack Y2 Biggreen
Attack Y1 Biggreen

18) DodoBirb: Build Y1 Dodobirb

19) Draw5PlayAll: Build B2 Biggreen

20) DodoBirb: Discover Y1 Dodobirb G3 Threepip

21) Draw5PlayAll: Build B2 Draw5playall

22) DodoBirb: Sacrifice G3 Dodobirb
Build Y2 Threepip
Build Y2 Threepip
Build Y3 Dodobirb

23) Draw5PlayAll: Sacrifice Y2 Biggreen
Move Y1 Biggreen Draw5playall
Move Y1 Draw5playall Threepip
Catastrophe Threepip Y

24) DodoBirb: Discover Y1 Dodobirb G3 Earth

25) Draw5PlayAll: Build B3 Biggreen

26) DodoBirb: Build Y1 Earth

27) Draw5PlayAll: Trade B3 R3 Biggreen

28) DodoBirb: Build Y1 Earth

29) Draw5PlayAll: Build B3 Biggreen

30) DodoBirb: Move Y1 Earth Dodobirb

31) Draw5PlayAll: Build Y2 Draw5playall

32) DodoBirb: Trade Y1 G1 Dodobirb

33) Draw5PlayAll: Trade B3 Y3 Biggreen

34) DodoBirb: Build G1 Dodobirb

35) Draw5PlayAll: Build B3 Biggreen

36) DodoBirb: Build G1 Dodobirb

37) Draw5PlayAll: Discover B3 Biggreen G2 Expand

38) DodoBirb: Discover G1 Dodobirb B3 Bluesky

39) Draw5PlayAll: Build B3 Biggreen

40) DodoBirb: Build G2 Bluesky

41) Draw5PlayAll: Sacrifice Y3 Biggreen
Move B3 Biggreen Dodobirb
Move B3 Expand Earth
Move B3 Earth Dodobirb

42) DodoBirb: Attack B3N Dodobirb
	Draw5PlayAll: You cannot trade for blue!

43) Draw5PlayAll: Sacrifice R3 Biggreen
Attack B3 Dodobirb
Attack Y3 Dodobirb
Attack R1 Dodobirb
	DodoBirb: I'm basically defeated next turn.

44) DodoBirb: Pass

45) Draw5PlayAll: Trade B3 G3 Dodobirb

46) DodoBirb: Pass

47) Draw5PlayAll: Build G2 Dodobirb
Catastrophe Dodobirb Green
	Draw5PlayAll: I will get the form filled later. Good game.
	DodoBirb: Good Game.



34362)
Variants: "Hard time"
Started: 2018.7.26, Ended: 2018.8.21
Participants: nycavri (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3
	wil: Is this a GHWT18?

2) nycavri: Homeworld B3 G2 Y3
	nycavri: Yup - TaGG!
	nycavri: I'll send in the game start form.

3) wil: Build G1 Wil
	wil: cool

4) nycavri: Build Y1 Nycavri

5) wil: Trade G1 Y1 Wil

6) nycavri: Build Y2 Nycavri

7) wil: Build Y2 Wil

8) nycavri: Discover Y1 Nycavri G1 Deacon

9) wil: Discover Y1 Wil G3 G3

10) nycavri: Trade Y2 G2 Nycavri
	wil: will be around about 45 min more..

11) wil: Build Y2 Wil

12) nycavri: Build Y2 Deacon

13) wil: Trade Y2 G2 Wil

14) nycavri: Build G1 Nycavri

15) wil: Discover G2 Wil B3 B3

16) nycavri: Move G1 Nycavri Deacon

17) wil: Build G1 B3

18) nycavri: Discover Y1 Deacon G3 May

19) wil: Move Y2 Wil B3

20) nycavri: Move Y1 May Wil

21) wil: Sacrifice G2 B3
Build G2 Wil
Build G3 B3

22) nycavri: Sacrifice G2 Nycavri
Build Y2 Wil
Build Y3 Wil
Catastrophe Wil Y
	wil: noice

23) wil: Trade G2 R2 Wil

24) nycavri: Trade Y3 R3 Nycavri

25) wil: Build G2 Wil

26) nycavri: Build R1 Nycavri

27) wil: Sacrifice Y2 B3
Move G1 B3 Deacon
Move G2 Wil Deacon
Catastrophe Deacon G

28) nycavri: Trade R1 Y1 Nycavri

29) wil: Build G1 B3

30) nycavri: Build Y1 Nycavri

31) wil: B Y2 G3

32) nycavri: Discover Y1 Nycavri G1 John

33) wil: M Y2 G3 John

34) nycavri: Build Y2 Nycavri

35) wil: B R1 Wil

36) nycavri: Sacrifice Y1 John
Discover Y1 Nycavri Y1 Mercury

37) wil: B G1 Wil
	wil: Fingers not doing what brain told them

38) nycavri: Build R1 Nycavri

39) wil: S G3 Wil
B G2 Wil
B G2 B3
B G3 Wil

40) nycavri: Move R1 Nycavri Mercury

41) wil: Trade G3 Y3 B3

42) nycavri: Build Y2 Nycavri

43) wil: Sacrifice G3 Wil
Build G3 B3
Build Y3 B3
Build G3 Wil

44) nycavri: Discover Y2 Nycavri B1 Paul

45) wil: Build Y3 John

46) nycavri: Move Y2 Paul G3

47) wil: Sacrifice Y3 B3
Move G3 B3 John
Move Y3 John Nycavri
Move G3 John Nycavri

48) nycavri: Attack Y3 Nycavri

49) wil: Sacrifice R2 Wil
Attack Y3 Nycavri
Attack R3 Nycavri

50) nycavri: Build Y3 Nycavri

51) wil: Sacrifice R3 Nycavri
Attack Y3 Nycavri
Attack Y2 Nycavri
Pass



34374)
Variants: "Hard time"
Started: 2018.7.26, Ended: 2018.9.26
Participants: Felix (S), mneme (N)
Winner: Felix

1) mneme: Homeworld R1 B3 G3

2) Felix: Homeworld B2 Y3 G3

3) mneme: Build G1 Mneme
	Felix: Good luck and have fun! :)
	mneme: You too!


4) Felix: Build G1 Felix

5) mneme: Trade G1 Y1 Mneme

6) Felix: Trade G1 R1 Felix

7) mneme: Build Y1 Mneme

8) Felix: Build R1 Felix

9) mneme: Build Y1 Mneme

10) Felix: B R2 Felix

11) mneme: Discover Y1 Mneme B2 Clio

12) Felix: Discover R1 Felix B1 Out

13) mneme: Build Y2 Mneme

14) Felix: Sacrifice G3 Felix
Build R2 Out
Build R2 Out
Build R3 Felix

15) mneme: Discover Y1 Mneme B2 Ghost

16) Felix: Trade R3 G3 Felix

17) mneme: Discover Y1 Mneme Y2 Hecate

18) Felix: Trade R2 Y2 Out

19) mneme: Build Y3 Mneme

20) Felix: Move R2 Out Clio

21) mneme: Trade Y2 R2 Mneme

22) Felix: Attack Y1 Clio

23) mneme: Sacrifice Y1 Hecate
Move G3 Mneme Clio

24) Felix: Discover R2 Clio B3 Edgeward

25) mneme: Move R2 Mneme Clio

26) Felix: Build R3 Felix

27) mneme: Attack Y1 Clio

28) Felix: Discover R2 Felix G1 Grinch

29) mneme: Build R3 Clio

30) Felix: Trade R3 Y3 Felix

31) mneme: Move G3 Clio Out

32) Felix: Sacrifice Y2 Out
Move R1 Out Clio
Move R2 Grinch Clio
Catastrophe Clio Red

33) mneme: Trade Y1 R1 Ghost

34) Felix: Build R2 Felix

35) mneme: Build G1 Out

36) Felix: Discover R1 Felix B1 Splint

37) mneme: Trade G1 B1 Out

38) Felix: Sacrifice G3 Felix
Build R2 Splint
Build R3 Edgeward
Build R3 Felix

39) mneme: Build B3 Out

40) Felix: Trade R3 G3 Edgeward

41) mneme: Trade B3 R3 Out

42) Felix: Build R3 Edgeward

43) mneme: Build B3 Out

44) Felix: Trade R2 Y2 Edgeward

45) mneme: Sacrifice G3 Out
Build R2 Ghost
Build Y1 Mneme
Build Y1 Clio

46) Felix: Trade R3 G3 Felix

47) mneme: Trade Y1 G1 Mneme

48) Felix: Build R3 Edgeward

49) mneme: Trade R1 G1 Ghost

50) Felix: Move R3 Edgeward Ghost

51) mneme: Sacrifice Y1 Clio
Discover R2 Ghost Y1 Erato

52) Felix: Attack G1 Ghost

53) mneme: Trade B3 G3 Out

54) Felix: Trade R3 B3 Ghost

55) mneme: Build G1 Out

56) Felix: Build G2 Edgeward

57) mneme: Trade G1 Y1 Out

58) Felix: Sacrifice G2 Edgeward
Build R1 Felix
Build R3 Edgeward

59) mneme: Build Y2 Out

60) Felix: M Y3 Felix Splint

61) mneme: Build Y2 Mneme

62) Felix: Sacrifice Y2 Edgeward
Move B3 Ghost Erato
Move R3 Edgeward Clio

63) mneme: Sacrifice Y1 Clio
Discover R2 Erato Y2 Euterpe

64) Felix: Sacrifice G1 Ghost
Build B2 Erato

65) mneme: Build Y1 Out

66) Felix: Move B3 Erato Euterpe

67) mneme: Sacrifice Y1 Out
Discover R2 Euterpe Y1 Thalia

68) Felix: Sacrifice B2 Erato
Trade R1 Y1 Splint
Trade R2 B2 Felix

69) mneme: Build G1 Out

70) Felix: Sacrifice Y3 Splint
Move B3 Euterpe Out
Move B2 Felix Out
Catastrophe Out Blue
Move G3 Edgeward Clio

71) mneme: Trade Y3 G3 Mneme

72) Felix: S Y1 Splint
D R3 Edgeward Y2 Plank

73) mneme: Build Y1 Mneme

74) Felix: B G1 Felix
	Felix: Sorry, forgot to call catastrophe the first time!

75) mneme: Discover Y1 Mneme B2 Euterpe
	mneme: seems fair.  

76) Felix: T G3 Y3 Felix

77) mneme: Sacrifice G3 Mneme
Build Y1 Euterpe
Build Y2 Euterpe
Build Y3 Mneme

78) Felix: S Y3 Felix
M R3 Plank Mneme
M R3 Clio Mneme
M G3 Clio Mneme

79) mneme: Sacrifice R2 Thalia
Attack R3 Mneme
Attack R3 Mneme

80) Felix: Sacrifice R2 Splint
Attack R3 Mneme
Attack R3 Mneme

81) mneme: Trade Y2 R2 Mneme
Catastrophe Mneme R

82) Felix: Sacrifice R1 Felix
Attack Y3 Mneme
	Felix: Fingers crossed this works! It's all or nothing.

83) mneme: Trade Y1 R1 Euterpe
	mneme: GL -- don't mess it up!

84) Felix: Trade Y3 R3 Mneme

	Felix: Unless I'm missing something, that may be it. Very good game!
	mneme: Yup!  You clearly had it a few turns ago, but there was still place for error until the turn before the catastrophe, so I figured I'd let it go for a bit!  GG!

	Felix: It's always a good idea to let it play if there's even a small chance of the opponent making an error. I've definitely flubbed games I thought I had in the bag before! 


34380)
Variants: "Hard time"
Started: 2018.7.26, Ended: 2018.8.2
Participants: tetsuhari (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B2 R3 G3

2) tetsuhari: Homeworld Y3 G2 B3
	Felix: Good luck and have fun!

3) Felix: Build G1 Felix

4) tetsuhari: Build B1 Tetsuhari

5) Felix: Trade G1 B1 Felix

6) tetsuhari: Discover B1 Tetsuhari G1 Greenone

7) Felix: Build G1 Felix

8) tetsuhari: Build B1 Greenone

9) Felix: Build B2 Felix

10) tetsuhari: Trade B1 Y1 Greenone

11) Felix: Trade B2 Y2 Felix

12) tetsuhari: Build Y1 Greenone

13) Felix: Discover B1 Felix G1 Conk

14) tetsuhari: Trade Y1 R1 Greenone

15) Felix: Build G2 Felix

16) tetsuhari: Build R1 Greenone

17) Felix: Discover G1 Felix B1 Plink

18) tetsuhari: Build B2 Greenone

19) Felix: Sacrifice G3 Felix
Build G2 Plink
Build G3 Plink
Build G3 Felix



34378)
Variants: "Hard time"
Started: 2018.7.27, Ended: 2018.9.17
Participants: DodoBirb (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3

2) DodoBirb: Homeworld B1 R2 G3

3) Felix: B G1 Felix

4) DodoBirb: Build G1 Dodobirb
	Felix: Have fun and good luck!
	DodoBirb: You too!

5) Felix: T G1 Y1 Felix

6) DodoBirb: Trade G1 Y1 Dodobirb

7) Felix: Build G1 Felix

8) DodoBirb: Build G1 Dodobirb

9) Felix: Trade G1 B1 Felix

10) DodoBirb: Trade G1 B1 Dodobirb

11) Felix: Build B2 Felix

12) DodoBirb: Build B2 Dodobirb

13) Felix: Discover B1 Felix G2 Rim

14) DodoBirb: Discover B1 Dodobirb G3 Green

15) Felix: Build G1 Felix

16) DodoBirb: Build G1 Dodobirb

17) Felix: Sacrifice G3 Felix
Build B2 Rim
Build B3 Rim
Build B3 Felix

18) DodoBirb: Sacrifice Y1 Dodobirb
Move B1 Green Rim
Catastrophe Rim B

19) Felix: Trade B3 G3 Felix

20) DodoBirb: Trade G1 Y1 Dodobirb

21) Felix: Build B1 Felix

22) DodoBirb: Build G1 Dodobirb

23) Felix: Discover B2 Felix G2 Out

24) DodoBirb: Discover G1 Dodobirb B3 Deepblue

25) Felix: Build B1 Out

26) DodoBirb: Build G1 Deepblue

27) Felix: Trade B2 Y2 Out

28) DodoBirb: Build G2 Dodobirb

29) Felix: Sacrifice G3 Felix
Build B2 Out
Build B2 Out
Build B3 Felix

30) DodoBirb: Sacrifice G3 Dodobirb
Build G2 Deepblue
Build G3 Dodobirb
Build G3 Dodobirb

31) Felix: Build G3 Felix

32) DodoBirb: Build Y1 Dodobirb

33) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Out
Build Y2 Felix

34) DodoBirb: Discover Y1 Dodobirb Y3 Sun

35) Felix: Build Y3 Felix

36) DodoBirb: Discover G2 Dodobirb Y3 Star

37) Felix: Trade B2 R2 Out

38) DodoBirb: Sacrifice G2 Star
Build Y3 Dodobirb
Pass

39) Felix: Discover B3 Felix G2 Grinch

40) DodoBirb: Trade G2 B2 Deepblue

41) Felix: Move B1 Out Deepblue

42) DodoBirb: Sacrifice Y1 Sun
Discover B2 Deepblue G2 Farm

43) Felix: Move Y1 Felix Grinch

44) DodoBirb: Sacrifice Y1 Dodobirb
Move B2 Farm Felix

45) Felix: Move B1 Felix Grinch

46) DodoBirb: Trade B2 G2 Felix

47) Felix: Attack G2 Felix

48) DodoBirb: Discover B2 Dodobirb Y3 Sunset

49) Felix: Sacrifice G1 Felix
Build B2 Deepblue

50) DodoBirb: Trade B2 R2 Sunset

51) Felix: Sacrifice R2 Out
Attack G1 Deepblue
Attack G1 Deepblue

52) DodoBirb: Move G3 Dodobirb Deepblue

53) Felix: S G3 Felix
B G1 Deepblue
B G3 Felix
B B2 Out
C Deepblue Green

54) DodoBirb: Build G1 Dodobirb

55) Felix: Trade B3 R3 Grinch

56) DodoBirb: Discover G1 Dodobirb G3 Factory

57) Felix: Move R3 Grinch Factory

58) DodoBirb: Sacrifice G1 Factory
Build G1 Dodobirb

59) Felix: Build B3 Grinch

60) DodoBirb: Trade G1 R1 Dodobirb

61) Felix: Build R1 Factory

62) DodoBirb: Move R1 Dodobirb Sunset

63) Felix: Trade B2 R2 Deepblue

64) DodoBirb: Build G1 Dodobirb

65) Felix: S Y2 Out
M R3 Factory Dodobirb
M R1 Factory Dodobirb

66) DodoBirb: Attack R3N Dodobirb

67) Felix: S Y3 Felix
M R2 Deepblue Dodobirb
C Dodobirb Red
M B1 Grinch Dodobirb
M B2 Out Dodobirb

68) DodoBirb: Sacrifice R2 Sunset
Attack B2N Dodobirb
Attack B1N Dodobirb

69) Felix: Move B3 Grinch Dodobirb
Catastrophe Dodobirb Blue

	DodoBirb: GG. 
	Felix: Thanks, you too! Good luck with the rest of your games.


34375)
Variants: "Hard time"
Started: 2018.7.27, Ended: 2018.9.4
Participants: ts52 (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) ts52: Homeworld Y3 B1 G3
	mneme: Good luck & Have fun!
	ts52: Thanks. You too.

3) mneme: Build G1 Mneme

4) ts52: Build G1 Ts52

5) mneme: Trade G1 Y1 Mneme

6) ts52: Trade G1 B1 Ts52

7) mneme: Build Y1 Mneme

8) ts52: Build B1 Ts52

9) mneme: Discover Y1 Mneme B3 Terpsichore

10) ts52: Discover B1 Ts52 G2 Kermit

11) mneme: Build Y1 Mneme

12) ts52: Build B2 Kermit

13) mneme: Discover Y1 Mneme B3 Erato

14) ts52: Trade B2 Y2 Kermit

15) mneme: Build Y2 Mneme

16) ts52: Sacrifice G3 Ts52
Build B2 Kermit
Build B2 Kermit
Build B3 Ts52

17) mneme: Sacrifice G3 Mneme
Build Y2 Terpsichore
Build Y3 Mneme
Build Y3 Erato

18) ts52: Trade B3 G3 Ts52

19) mneme: Trade Y3 R3 Mneme

20) ts52: Trade B2 R2 Kermit

21) mneme: Move Y3 Erato Kermit

22) ts52: Sacrifice Y2 Kermit
Move R2 Kermit Erato
Move B2 Kermit Erato

23) mneme: Move Y3 Kermit Erato

24) ts52: Attack Y1N Erato

25) mneme: Sacrifice R3 Mneme
Attack R2 Erato
Attack Y1 Erato
Attack B2 Erato

26) ts52: Trade B1 R1 Ts52

27) mneme: Trade Y3 G3 Erato

28) ts52: Build G1 Ts52

29) mneme: Sacrifice G3 Erato
Build Y2 Terpsichore
Build Y3 Erato
Build Y3 Mneme

30) ts52: Build R1 Ts52

31) mneme: Trade Y2 G2 Mneme

32) ts52: Move R1 Ts52 Kermit

33) mneme: Build Y2 Mneme

34) ts52: Build R2 Kermit

35) mneme: Move Y3 Erato Kermit

36) ts52: Sacrifice G3 Ts52
Build R2 Kermit
Build R3 Kermit
Build R3 Ts52
Catastrophe Kermit Red

37) mneme: Move G2 Mneme Erato

38) ts52: Discover R1 Ts52 G2 Oscar

39) mneme: Build R1 Erato

40) ts52: Build R2 Oscar

41) mneme: Sacrifice R1 Erato
Attack B1 Kermit

42) ts52: Build G1 Ts52

43) mneme: Build B1 Kermit

44) ts52: Discover G1 Ts52 R2 Elmo

45) mneme: Build B2 Kermit

46) ts52: Build G1 Elmo

47) mneme: Discover Y1 Terpsichore R1 Nemesis

48) ts52: Build G3 Ts52

49) mneme: Move B2 Kermit Ts52

50) ts52: Attack B2N Ts52

51) mneme: Sacrifice Y3 Kermit
Move B1 Kermit Ts52
Move B1 Kermit Ts52
Catastrophe Ts52 B
Move Y1 Mneme Ts52

52) ts52: Attack Y1N Ts52

53) mneme: Sacrifice Y2 Terpsichore
Move Y2 Mneme Ts52
Move Y1 Nemesis Ts52
Catastrophe Ts52 Y
	mneme: Good game!


	ts52: Well played. Thanks for the game!
	mneme: You too, on both counts!


34385)
Variants: "Hard time"
Started: 2018.7.27, Ended: 2018.8.17
Participants: speardane (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) speardane: Homeworld G1 B2 Y3
	Draw5PlayAll: Hello, this is the tournament game, good luck, and so yeah.
	speardane: Yep! Good luck. :)

3) Draw5PlayAll: Build G1 Draw5playall

4) speardane: Build Y1 Speardane
	Draw5PlayAll: !! The start form does not have your name as one of the options !!

5) Draw5PlayAll: Build G1 Draw5playall
	speardane: I was a late entrant. I'll email Jonathan.
	Draw5PlayAll: Fixed

6) speardane: Trade Y3 R3 Speardane

7) Draw5PlayAll: Trade G3 Y3 Draw5playall

8) speardane: Build Y1 Speardane

9) Draw5PlayAll: Build G2 Draw5playall

10) speardane: Discover Y1 Speardane G3 Delos

11) Draw5PlayAll: Discover G2 Draw5playall B2 Notariffs

12) speardane: Build Y1 Speardane

13) Draw5PlayAll: Build G2 Notariffs

14) speardane: Discover Y1 Speardane G3 Lebling

15) Draw5PlayAll: Build G2 Draw5playall

16) speardane: Build R1 Speardane

17) Draw5PlayAll: Build G3 Notariffs

18) speardane: Move R1 Speardane Delos

19) Draw5PlayAll: Trade G2 R2 Notariffs

20) speardane: Build Y2 Speardane

21) Draw5PlayAll: Build G2 Notariffs

22) speardane: Build Y2 Speardane

23) Draw5PlayAll: Trade G3 Y3 Notariffs

24) speardane: Build Y2 Delos

25) Draw5PlayAll: Build Y3 Draw5playall

26) speardane: Discover Y1 Speardane G3 Kotok

27) Draw5PlayAll: Move G2 Notariffs Kotok

28) speardane: Discover Y1 Kotok B2 Minsky

29) Draw5PlayAll: Sacrifice G2 Kotok
Build G2 Notariffs
Build G3 Notariffs

30) speardane: Move Y1 Delos Minsky

31) Draw5PlayAll: Discover G2 Notariffs B3 Nowalls

32) speardane: Sacrifice Y2 Speardane
Move Y1 Minsky Draw5playall
Move Y1 Minsky Draw5playall
Catastrophe Draw5playall Yellow

33) Draw5PlayAll: Build Y1 Notariffs

34) speardane: Build Y1 Delos

35) Draw5PlayAll: Move Y3 Notariffs Draw5playall

36) speardane: Discover Y1 Delos B2 Kotok

37) Draw5PlayAll: Move G2 Notariffs Lebling

38) speardane: Move Y1 Lebling Kotok

39) Draw5PlayAll: Sacrifice G2 Lebling
Build G2 Notariffs
Build G3 Nowalls

40) speardane: Trade Y1 R1 Kotok

41) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move G3 Nowalls Speardane
Move G3 Notariffs Delos
Move G3 Delos Speardane

42) speardane: Attack G3 Speardane

43) Draw5PlayAll: Sacrifice R2 Notariffs
Attack G3 Speardane
Attack R3S Speardane
	speardane: Good game. :)
	speardane: I should note, you still have to actually administer the coup de grace here.

44) speardane: Pass

45) Draw5PlayAll: Attack Y2 Speardane



34386)
Variants: "Hard time"
Started: 2018.7.28, Ended: 2018.8.21
Participants: DodoBirb (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B2 Y3 G3

2) DodoBirb: Homeworld B1 R2 G3

3) dlwillson: B G1 Dlwillson

4) DodoBirb: Build G1 Dodobirb
	dlwillson: Good luck!

5) dlwillson: Trade G1 B1 Dlwillson

6) DodoBirb: Trade G1 B1 Dodobirb

7) dlwillson: B B2 Dlwillson

8) DodoBirb: Build B2 Dodobirb

9) dlwillson: Discover B1 Dlwillson G1 Field

10) DodoBirb: Trade B1 Y1 Dodobirb

11) dlwillson: B G1 Dlwillson

12) DodoBirb: Build G1 Dodobirb

13) dlwillson: S G3 Dlwillson
B B1 Field
B B3 Field
B B3 Dlwillson

14) DodoBirb: Build B3 Dodobirb

15) dlwillson: S B2 Dlwillson
T B3 G3 Dlwillson
T B3 Y3 Field

16) DodoBirb: Discover B3 Dodobirb G3 Green

17) dlwillson: M B1 Field Green

18) DodoBirb: Trade B2 R2 Dodobirb

19) dlwillson: T G1 R1 Dlwillson

20) DodoBirb: Trade B3 Y3 Green

21) dlwillson: B B2 Field

22) DodoBirb: Build Y1 Green

23) dlwillson: T B1 Y1 Green

24) DodoBirb: Discover Y3 Green G1 Littlegreen

25) dlwillson: T B2 G2 Field

26) DodoBirb: Build Y2 Littlegreen

27) dlwillson: B Y2 Field

28) DodoBirb: Build Y2 Dodobirb

29) dlwillson: T Y3 R3 Field

30) DodoBirb: Discover G1 Dodobirb Y3 Sun

31) dlwillson: Move G2 Field Sun

32) DodoBirb: Sacrifice G1 Sun
Build G1 Dodobirb

33) dlwillson: B G2 Sun

34) DodoBirb: Discover G1 Dodobirb B3 Deeperblue

35) dlwillson: S G2 Sun
B B1 Field
B G2 Dlwillson

36) DodoBirb: Build G2 Deeperblue

37) dlwillson: S G3 Dlwillson
B R1 Dlwillson
B B2 Field
B G3 Dlwillson

38) DodoBirb: Trade G2 B2 Deeperblue

39) dlwillson: Sacrifice R1 Dlwillson
Attack Y1 Green

40) DodoBirb: Discover Y1 Dodobirb B3 Ocean

41) dlwillson: S Y2 Field
M Y1 Green Littlegreen
M Y1 Green Littlegreen
C Littlegreen Y

42) DodoBirb: Sacrifice Y1 Ocean
Discover B2 Deeperblue G1 Grass

43) dlwillson: S G3 Dlwillson
B G2 Sun
B G3 Sun
B G3 Dlwillson

44) DodoBirb: Build B3 Grass

45) dlwillson: S B2 Field
T G3 B3 Sun
T G2 R2 Sun

46) DodoBirb: Trade Y2 B2 Dodobirb

47) dlwillson: S G3 Dlwillson
B G2 Sun
B G3 Sun
B G3 Dlwillson

48) DodoBirb: Trade B2 Y2 Grass

49) dlwillson: S G3 Dlwillson
B R1 Field
B R1 Sun
B G3 Dlwillson

50) DodoBirb: Build B2 Grass

51) dlwillson: T G3 Y3 Sun

52) DodoBirb: Trade B2 Y2 Dodobirb

53) dlwillson: S Y3 Sun
M R2 Sun Dodobirb
M R1 Sun Dodobirb
M B3 Sun Dodobirb
C Dodobirb R

54) DodoBirb: Trade B3 R3 Grass

55) dlwillson: S R3 Field
A G3 Dodobirb
A Y2 Dodobirb
Pass

	dlwillson: Thank you! Good game!
	DodoBirb: Good Game!


34395)
Variants: "Hard time"
Started: 2018.7.30, Ended: 2018.8.28
Participants: Babamots (S), random56 (N)
Winner: Babamots

1) random56: Homeworld R1 B3 G3
	Babamots: This is for the Great Tournament. Good luck!

2) Babamots: Homeworld B3 Y2 G3

3) random56: Build G1 Random56

4) Babamots: Build G1 Babamots

5) random56: Trade G1 Y1 Random56

6) Babamots: Trade G1 Y1 Babamots

7) random56: Build G1 Random56

8) Babamots: Build G1 Babamots

9) random56: Discover G1 Random56 Y2 Aden

10) Babamots: Trade G1 R1 Babamots

11) random56: Build G1 Aden

12) Babamots: Build R1 Babamots

13) random56: Build G1 Random56

14) Babamots: Build G2 Babamots

15) random56: Sacrifice G3 Random56
Build G2 Aden
Build G2 Random56
Build G3 Random56

16) Babamots: Sacrifice G3 Babamots
Build R2 Babamots
Build G3 Babamots
Build G3 Babamots

17) random56: Discover G1 Aden Y1 Kite

18) Babamots: Discover R1 Babamots B1 Bolarus

19) random56: Trade G3 Y3 Random56

20) Babamots: Sacrifice G2 Babamots
Build R2 Bolarus
Build R2 Bolarus

21) random56: Trade G1 B1 Random56

22) Babamots: Move G3 Babamots Bolarus

23) random56: Move B1 Random56 Aden

24) Babamots: Move R1 Babamots Kite

25) random56: Sacrifice G1 Kite
Build G1 Random56

26) Babamots: Sacrifice G3 Babamots
Build R3 Babamots
Build R3 Kite
Build R3 Kite

27) random56: Trade G2 Y2 Aden

28) Babamots: Trade G3 Y3 Bolarus

29) random56: Build Y3 Aden

30) Babamots: Move Y3 Bolarus Aden
Catastrophe Aden Y

31) random56: Discover G1 Random56 Y2 Top

32) Babamots: Move R3 Kite Top

33) random56: Discover G1 Top Y3 Dnr

34) Babamots: Discover Y1 Babamots G1 Rubicun
	Babamots: Is "dnr" for "Department of Natural Resources" or "Do not Resuscitate"?

35) random56: Build G1 Random56
	random56: lol, I am a nurse so the second 

36) Babamots: Build Y2 Rubicun

37) random56: Build G2 Dnr

38) Babamots: Move R3 Kite Top



34379)
Variants: "Hard time"
Started: 2018.7.30, Ended: 2018.8.22
Participants: Felix (S), eliscinsky (N)
Winner: Felix

1) eliscinsky: Homeworld Y1 B2 G3

2) Felix: Homeworld B1 R3 G3

3) eliscinsky: Build G1 Eliscinsky
	Felix: Have fun and good luck!

4) Felix: Build G1 Felix
	eliscinsky: Thanks! U2

5) eliscinsky: Trade G1 R1 Eliscinsky

6) Felix: Trade G1 Y1 Felix

7) eliscinsky: Build R1 Eliscinsky

8) Felix: Build Y1 Felix

9) eliscinsky: Trade R1 B1 Eliscinsky

10) Felix: Build Y2 Felix

11) eliscinsky: Build B1 Eliscinsky

12) Felix: Trade Y2 B2 Felix

13) eliscinsky: Build G1 Eliscinsky

14) Felix: Build B2 Felix

15) eliscinsky: Trade B1 R1 Eliscinsky

16) Felix: Trade B2 R2 Felix

17) eliscinsky: Discover R1 Eliscinsky Y3 Atos

18) Felix: Build Y2 Felix

19) eliscinsky: Build G1 Eliscinsky

20) Felix: Discover Y1 Felix B2 Out

21) eliscinsky: Build R1 Eliscinsky

22) Felix: Build Y2 Felix

23) eliscinsky: Build R2 Eliscinsky

24) Felix: Discover Y2 Felix G2 Splint

25) eliscinsky: Trade R2 Y2 Eliscinsky

26) Felix: Sacrifice G3 Felix
Build Y3 Out
Build Y3 Felix
Build B1 Felix

27) eliscinsky: Move G1 Eliscinsky Atos

28) Felix: Move B1 Felix Splint

29) eliscinsky: Discover R1 Eliscinsky B3 Portos

30) Felix: Build B3 Splint

31) eliscinsky: Move G1 Eliscinsky Portos

32) Felix: Move B3 Splint Atos

33) eliscinsky: Build R2 Atos

34) Felix: Sacrifice R2 Felix
Attack R2 Atos
Attack R1 Atos

35) eliscinsky: Move G1 Atos Eliscinsky

36) Felix: Discover Y3 Out R3 Pump

37) eliscinsky: Move Y2 Eliscinsky Portos

38) Felix: Sacrifice Y2 Felix
Move Y3 Pump Eliscinsky
Move B3 Atos Eliscinsky

39) eliscinsky: Sacrifice G3 Eliscinsky
Build R2 Portos
Build R2 Eliscinsky
Build R3 Eliscinsky


40) Felix: Trade B3 R3 Eliscinsky
Catastrophe Eliscinsky Red
	eliscinsky: This is getting REALLY exciting!
Thanks for such a great game.

41) eliscinsky: Move R2 Portos Out
	Felix: No problem! It has been a fun one. I think I might be able to close the deal here in a few moves, but honestly I'm a bit nervous about it.

42) Felix: Sacrifice R2 Atos
Attack B1 Eliscinsky
Attack G1 Eliscinsky

	Felix: Good game! It was fun. Good luck with your others!
	eliscinsky: Thanks, I learned a lot. :)
Good Luck on the Tourney!


34376)
Variants: "Hard time"
Started: 2018.7.30, Ended: 2018.8.9
Participants: eliscinsky (S), speardane (N)
Winner: speardane

1) speardane: Homeworld R3 B2 G3

2) eliscinsky: Homeworld B3 Y2 G3

3) speardane: Build G1 Speardane

4) eliscinsky: Build G1 Eliscinsky

5) speardane: Trade G3 Y3 Speardane

6) eliscinsky: Trade G1 R1 Eliscinsky

7) speardane: Build G1 Speardane

8) eliscinsky: Build R1 Eliscinsky

9) speardane: Discover G1 Speardane B1 Delos

10) eliscinsky: Move R1 Eliscinsky Delos

11) speardane: Sacrifice G1 Delos
Build G1 Speardane

12) eliscinsky: Build G1 Eliscinsky

13) speardane: Discover G1 Speardane B1 Lebling

14) eliscinsky: Trade G1 Y1 Eliscinsky

15) speardane: Build G1 Lebling

16) eliscinsky: Sacrifice G3 Eliscinsky
Build R1 Delos
Build R2 Delos
Build R2 Eliscinsky

17) speardane: Trade G1 Y1 Lebling

18) eliscinsky: Trade R1 G1 Eliscinsky

19) speardane: Build G2 Speardane

20) eliscinsky: Build G2 Eliscinsky

21) speardane: Build G2 Speardane

22) eliscinsky: Move G2 Eliscinsky Delos

23) speardane: Discover G1 Speardane B1 Kotok

24) eliscinsky: Trade R1 Y1 Delos

25) speardane: Sacrifice G2 Speardane
Build Y2 Speardane
Build G2 Kotok

26) eliscinsky: Build G3 Delos

27) speardane: Sacrifice G2 Kotok
Build G2 Lebling
Build G3 Kotok

28) eliscinsky: Sacrifice G3 Delos
Build R1 Delos
Build Y2 Delos
Build G3 Delos

29) speardane: Sacrifice Y2 Speardane
Discover G1 Lebling B2 Minsky
Move G3 Kotok Eliscinsky

30) eliscinsky: Sacrifice G3 Delos
Build R1 Eliscinsky
Build R2 Eliscinsky
Build G3 Delos

31) speardane: Build G3 Kotok

32) eliscinsky: Sacrifice Y2 Delos
Move R2 Delos Speardane
Move R1 Delos Speardane

33) speardane: Trade G3 R3 Kotok

34) eliscinsky: Move R1 Delos Speardane
Catastrophe Speardane R

35) speardane: Sacrifice R3 Kotok
Attack R2 Eliscinsky
Attack R2 Eliscinsky
Attack G1 Eliscinsky

36) eliscinsky: Sacrifice G3 Delos
Build G3 Delos
Build Y2 Delos
Build R1 Eliscinsky
Catastrophe Eliscinsky R

37) speardane: Trade G3 R3 Eliscinsky

38) eliscinsky: Sacrifice Y2 Delos
Move G2 Delos Eliscinsky
Move G3 Delos Eliscinsky

39) speardane: Sacrifice G2 Lebling
Build G2 Eliscinsky
Build G3 Kotok
Catastrophe Eliscinsky Green

40) eliscinsky: Trade Y1 G1 Eliscinsky

41) speardane: Attack G1 Eliscinsky
	speardane: Good game :)



34391)
Variants: "Hard time"
Started: 2018.7.30, Ended: 2018.8.4
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld B3 Y1 G3

2) wil: H G3 Y1 Y3 *

3) Trydnt: Build G1 Trydnt
	Draw5PlayAll: Go whoeverisreadingthis!

4) wil: Build Y1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: D Y1 Wil G2 G2

7) Trydnt: Discover B1 Trydnt G2 Gee2

8) wil: B Y2 Wil

9) Trydnt: Build G1 Trydnt
	wil: Lol, haven't thought this one thru...we will see how she goes

10) wil: Discover Y2 Wil B2 B2

11) Trydnt: Build B1 Gee2

12) wil: Build Y2 Wil

13) Trydnt: Trade G1 B1 Trydnt

14) wil: Build Y2 G2

15) Trydnt: Build B2 Trydnt

16) wil: Discover Y2 B2 B3 B3

17) Trydnt: Trade B1 R1 Trydnt

18) wil: Build Y3 G2

19) Trydnt: Move B2 Trydnt G2

20) wil: Sacrifice Y3 G2
Move Y1 G2 B3
Discover Y2 G2 B3 No3s4u
Discover Y3 Wil B2 B2
	wil: I will abandon you on the island!

21) Trydnt: Build B1 G2

22) wil: Build Y3 Wil

23) Trydnt: Build B2 Gee2

24) wil: T Y3 R3 B2

25) Trydnt: Build G1 Trydnt

26) wil: Move Y3 Wil B2

27) Trydnt: Trade B1 G1 Gee2

28) wil: Trade Y3 G3 B2

29) Trydnt: Build G1 Gee2

30) wil: S G3 B2
B Y3 Wil
B Y3 B3
B Y3 No3s4u

31) Trydnt: Trade B2 G2 G2

32) wil: Trade Y3 G3 No3s4u

33) Trydnt: Build B1 G2

34) wil: Build Y3 No3s4u

35) Trydnt: Build B2 G2

36) wil: Trade Y3 R3 No3s4u

37) Trydnt: Trade G3 Y3 Trydnt
	wil: dem virtual handcuffs doe

38) wil: S Y3 B3
M G3 No3s4u B2
M R3 B2 Trydnt
M G3 B2 Trydnt

39) Trydnt: Sacrifice G2 G2
Build G2 Trydnt
Build R1 Trydnt
	wil: just a couple moves to go...what a long slog

40) wil: S R3 No3s4u
A R1 Trydnt
A R1 Trydnt
A Y3 Trydnt

41) Trydnt: Trade G1 R1 Trydnt
Catastrophe Trydnt R
	wil: A day late and pound short on the switch...appears I caught you asleep at the wheel this time.
	wil: A day late and pound short on the switch...appears I caught you asleep at the wheel this time.
	wil: Of course I've seen you pull rabbits outta the hat before...

42) wil: Trade G3 R3 Trydnt

43) Trydnt: Build G1 Gee2
Catastrophe Gee2 G

44) wil: A G2 Trydnt

	wil: Yes, it is often a trick to get it to allow self destruction.


34415)
Variants: "Hard time"
Started: 2018.8.4, Ended: 2018.8.19
Participants: Trydnt (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: For the record, this is for the tournament.

Good luck!

2) Trydnt: Homeworld B2 Y1 G3

3) Babamots: Build G1 Babamots

4) Trydnt: Build G1 Trydnt

5) Babamots: Trade G1 Y1 Babamots

6) Trydnt: Trade G1 Y1 Trydnt

7) Babamots: Build Y2 Babamots

8) Trydnt: Build Y2 Trydnt

9) Babamots: Build Y2 Babamots

10) Trydnt: Discover Y1 Trydnt G3 G3

11) Babamots: Trade Y1 R1 Babamots

12) Trydnt: Build Y1 G3

13) Babamots: Discover Y2 Babamots G2 Risa

14) Trydnt: Sacrifice Y2 Trydnt
Discover Y1 G3 G2 G2
Discover Y1 G3 B2 B2

15) Babamots: Build R1 Babamots

16) Trydnt: Build G1 Trydnt

17) Babamots: Move R1 Babamots G2

18) Trydnt: Discover Y1 G2 G3 G3

19) Babamots: Build R2 Babamots

20) Trydnt: Trade G3 R3 Trydnt

21) Babamots: Move R1 Babamots B2

22) Trydnt: Discover Y1 B2 B1 B1

23) Babamots: Sacrifice G3 Babamots
Build Y2 Risa
Build Y3 Babamots
Build Y3 Babamots

24) Trydnt: Build Y3 G3

25) Babamots: Sacrifice Y2 Babamots
Move Y2 Risa G3
Move Y2 Risa G3
Catastrophe G3 Y

26) Trydnt: Build R2 Trydnt

27) Babamots: Trade Y3 G3 Babamots

28) Trydnt: Trade R3 G3 Trydnt

29) Babamots: Move Y3 Babamots G2

30) Trydnt: Discover G1 Trydnt Y3 Y3

31) Babamots: Discover Y3 G2 R3 Romulus

32) Trydnt: Build G1 Trydnt
	Babamots: I should have written down what I was planning to do next. I think I had a good idea.

33) Babamots: Sacrifice G3 Babamots
Build R2 G2
Build R3 B2
Build R3 Babamots

34) Trydnt: Sacrifice G1 Trydnt
Build Y1 B1

35) Babamots: Trade R1 G1 B2

36) Trydnt: Trade Y1 R1 B1

37) Babamots: Build G1 B2

38) Trydnt: Build G2 Trydnt

39) Babamots: Trade G1 Y1 B2

40) Trydnt: Sacrifice G2 Trydnt
Build G1 Trydnt
Build G2 Y3

41) Babamots: Trade R2 G2 Babamots

42) Trydnt: Sacrifice G2 Y3
Build R2 Trydnt
Build Y2 B1

43) Babamots: Build Y2 B2

44) Trydnt: Discover G1 Trydnt Y3 Why3

45) Babamots: Move R3 B2 B1

46) Trydnt: Sacrifice Y2 B1
Discover Y1 B1 G2 Gee2
Discover R1 B1 Y2 Y2

47) Babamots: Build G3 B2

48) Trydnt: Build G3 Y3

49) Babamots: Sacrifice Y1 B2
Move R2 G2 Why3

50) Trydnt: Move G1 Why3 B2

51) Babamots: Sacrifice G3 B2
Build Y1 Romulus
Build Y2 B2
Build G3 Babamots

52) Trydnt: Sacrifice G1 B2
Build G1 Trydnt

53) Babamots: Trade G2 B2 Babamots

54) Trydnt: Move G3 Y3 B2

55) Babamots: Sacrifice Y2 B2
Move G1 B2 B1
Move Y2 B2 Y3

56) Trydnt: Build G2 B2

57) Babamots: Trade B2 Y2 Babamots

58) Trydnt: Sacrifice G3 B2
Build G3 Y3
Pass
Pass

59) Babamots: Sacrifice Y2 Y3
Move R3 B1 Gee2
Move G3 Babamots B2

60) Trydnt: Discover Y1 Gee2 B3 B3

61) Babamots: Sacrifice G1 B1
Build Y2 Babamots

62) Trydnt: Build G1 B2

63) Babamots: Sacrifice Y2 Babamots
Move Y3 Romulus B2
Move G3 B2 B3

64) Trydnt: Sacrifice Y1 B3
Discover R2 Trydnt B3 Bee3

65) Babamots: Sacrifice R2 Why3
Attack G1 B2
Attack G2 B2

66) Trydnt: Trade R2 Y2 Bee3

67) Babamots: Sacrifice G2 B2
Build Y1 B2
Build Y3 Romulus

68) Trydnt: Discover G1 Y3 B2 Be2

69) Babamots: Build G2 B3

70) Trydnt: Sacrifice G3 Y3
Build G3 Be2
Build Y3 Bee3
Build R2 Trydnt

71) Babamots: Sacrifice Y3 B2
Move G2 B3 Trydnt
Move G3 B3 Trydnt
Move Y3 Romulus Trydnt
Catastrophe Trydnt G

72) Trydnt: Sacrifice Y3 Bee3
Move Y2 Bee3 Trydnt
Move R1 Y2 Romulus
Move R1 Romulus Trydnt

73) Babamots: Sacrifice R3 Gee2
Attack R2 Trydnt
Attack R2 Trydnt
Attack Y2 Trydnt

74) Trydnt: Sacrifice G1 Be2
Build R2 Trydnt

75) Babamots: Sacrifice R2 Trydnt
Attack R1 Trydnt
Attack R2 Trydnt

	Babamots: GG :-)
	Trydnt: that all went so badly not a good start to the tournament... for me. congrats you played superbly :)
	Babamots: Sorry it's not a great start to the tournament for you, but I thought you played very well. I look forward to our next game!
	Trydnt: as do I :)


34420)
Variants: "Hard time"
Started: 2018.8.5, Ended: 2018.8.5
Participants: ajo (S), speardane (N)
Winner: ajo

1) speardane: Homeworld Y3 G2 B3

2) ajo: Homeworld B3 R2 G3

3) speardane: Build B1 Speardane

4) ajo: Build G1 Ajo

5) speardane: Trade B3 R3 Speardane

6) ajo: Build G1 Ajo

7) speardane: Build B1 Speardane

8) ajo: Trade G1 Y1 Ajo

9) speardane: Discover B1 Speardane G1 Delos

10) ajo: Discover G1 Ajo Y1 Alpha

11) speardane: Build B1 Delos

12) ajo: Build G1 Alpha

13) speardane: Trade B1 Y1 Delos

14) ajo: Build G2 Ajo

15) speardane: Build B1 Delos

16) ajo: Build G2 Ajo

17) speardane: Build B2 Delos

18) ajo: Trade G2 R2 Ajo

19) speardane: Trade B2 G2 Delos

20) ajo: Move R2 Ajo Delos

21) speardane: Build G3 Delos

22) ajo: Attack G2 Delos

23) speardane: Trade B1 R1 Delos

24) ajo: Build G3 Delos
Catastrophe Delos Green

25) speardane: Build B1 Speardane

26) ajo: Discover G2 Ajo B1 Beta

27) speardane: Discover B1 Speardane R1 Delos

28) ajo: Build G1 Ajo

29) speardane: Build R1 Speardane

30) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G3 Beta
Build G3 Ajo

31) speardane: Move R1 Speardane Delos

32) ajo: Trade G3 Y3 Beta

33) speardane: Trade R1 Y1 Delos

34) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Ajo
Build G3 Beta

35) speardane: Build R1 Speardane

36) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y2 Beta
Build Y2 Beta

37) speardane: Trade R3 Y3 Speardane

38) ajo: Sacrifice Y3 Beta
Move Y2 Beta Speardane
Move Y2 Beta Speardane
Move G2 Alpha Speardane
Catastrophe Speardane Yellow

39) speardane: Trade Y1 R1 Delos

40) ajo: Sacrifice G3 Ajo
Build G3 Speardane
Build Y1 Ajo
Pass

41) speardane: Pass

42) ajo: Sacrifice G1 Ajo
Build G1 Speardane
Catastrophe Speardane Green
	Draw5PlayAll: I just realized you played against your own creation...

Is the speardane account going to be ever used again?



34310)
Started: 2018.8.6, Ended: 2018.8.10
Participants: Ryzorrin (S), MobyNostromo (N)
Winner: Ryzorrin

	Ryzorrin: homeworld b1 g2 r3
	Ryzorrin: Oh this is chat.  Okay, hi.


34430)
Variants: "Hard time"
Started: 2018.8.6, Ended: 2018.8.11
Participants: wil (S), dlwillson (N)
Winner: wil

1) dlwillson: Homeworld Y3 B2 G3

2) wil: H Y2 B1 G3
	dlwillson: Hi Wil!

3) dlwillson: B G1 Dlwillson
	wil: I was hoping to be able to get a few games under my belt and confidence up prior to playing you!

4) wil: B G1 Wil
	dlwillson: Ha! Good thing I got to you before you're properly warmed up. I'll have a chance here!

5) dlwillson: T G1 R1 Dlwillson
	wil: I'll say good luck, all the while knowing I am the one that need it.

6) wil: T G1 B1 Wil
	dlwillson: I dunno. I'm playing you, Felix, and mneme at the same time. I think I'll need a lot of luck.

Have fun!

7) dlwillson: B R1 Dlwillson
	wil: Concentrate on those games!

8) wil: B B1 Wil

9) dlwillson: B R1 Dlwillson

10) wil: D B1 Wil Y3 Y3

11) dlwillson: Discover R1 Dlwillson Y1 Sol

12) wil: B G1 Wil
	dlwillson: I'm pretty sure you got the jump on me here.
	wil: I am trying.

13) dlwillson: Build G1 Dlwillson

14) wil: S G3 Wil
B B2 Wil
B B2 Y3
B B3 Y3

15) dlwillson: Discover R1 Dlwillson Y1 Alsosol

16) wil: T B3 R3 Y3

17) dlwillson: Sacrifice G3 Dlwillson
Build R2 Sol
Build R2 Alsosol
Build R2 Dlwillson

18) wil: Discover B2 Wil R3 R3

19) dlwillson: B R3 Dlwillson

20) wil: B B3 Wil

21) dlwillson: T R3 B3 Dlwillson

22) wil: T B3 Y3 Wil

23) dlwillson: D B3 Dlwillson Y1 Yasol

24) wil: B B3 Wil
	dlwillson: What a strange game! I'm not sure why I'm still alive. Am I dead? I don't think so... <pinch> Ow!

25) dlwillson: B R3 Dlwillson

26) wil: S G1 Wil
B B3 Y3

27) dlwillson: T R3 G3 Dlwillson

28) wil: S B2 Y3
T B3 G3 Y3
T B3 G3 Wil

29) dlwillson: M B3 Yasol R3

30) wil: S G3 Y3
B B2 Y3
B B3 Y3
B B3 Wil

31) dlwillson: Attack B2 R3

32) wil: S B2 Y3
T B3 G3 Y3
T B3 R3 Wil

33) dlwillson: S B2 R3
T R2 Y2 Sol
T R2 Y2 Alsosol

34) wil: B R2 Wil

35) dlwillson: Move R1 Alsosol R3

36) wil: M R3 Wil Y3

37) dlwillson: T R1 G1 R3

38) wil: Move R3 Y3 Sol
	dlwillson: Do you do those system names specifically to make it hard for your opponent enter their orders?
	wil: I always think it makes it easier...easier to remember which stars I am moving from...  It only makes it hard when folks use my system with me.

39) dlwillson: S G3 Dlwillson
B R1 Sol
B R2 Sol
B G1 Dlwillson
C Sol R

40) wil: Sacrifice Y3 Wil
Move R3 Y3 Sol
Move G3 Y3 Sol
Move G3 Sol Dlwillson

	wil: heavy duty reboot
	wil: thought it was gonna be the end.
	dlwillson: Darn! That's the end!
	wil: Crap. You are right, i thought your b3 and g1 were 1 away...
	wil: I got lucky and capitslized.early on..
	wil: I guess i gotta get out there snd challenge now.
	dlwillson: I lost you when I went for the long stack of reds and you went for the short stack of blues. You got into the bigs before me and played perfectly. I thought I had enough material at the end to hold you off, but I was mistaken. A horseshoe nail more, and I could've stopped that attack!
	wil: Yeah, the bank accountant gave me a stock tip and said the brokers were at a discount.
	wil: Nobody can blame you for investing in defense, historically it has been known to payoff...but alas we were in a time of peace...


34431)
Variants: "Hard time"
Started: 2018.8.7, Ended: 2018.8.21
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3

2) Felix: Homeworld Y2 B3 G3
	dlwillson: Hi Felix! How've you been?

3) dlwillson: B G1 Dlwillson
	Felix: Hey, doing well! Busy though. Probably too busy for this tournament! We had our second kid and bought a new house, so lots to do! How are you, man?

4) Felix: Build G1 Felix
	dlwillson: Congrats on the new kid!

I'm doing well. Been interviewing for a new job, and learning the new crop of technology. Mostly, Kubernetes, Prometheus, OpenStack, and GitLab.
	Felix: Thanks!

Wow, sounds like a lot to learn! And here I am, still doing most of my work in PHP :)

5) dlwillson: T G1 R1 Dlwillson

6) Felix: Trade G1 R1 Felix
	dlwillson: Do you or anyone you know need DevOps training?

My Software Freedom School project is doing a cap at the end of the month and we're still 4 campers short of a cabin-full
http://sofree.us/devopscamp.html
	Felix: Looks awesome! I know I'd really enjoy it, but I don't know if my boss or his company has the time or money to invest in it at the moment. Is this something you do yearly, or quarterly or anything? I'll show it to him and see what he thinks! 

7) dlwillson: Build G1 Dlwillson

8) Felix: Build G1 Felix
	dlwillson: We run a camp annually, but this is our first DevOps Camp. Not sure what we'll run next year. We have scholarship funds available for woman technologists. Some of the board-members did a fund-raiser for a couple of their friends, but then the friends backed out. So weird. But, it's a great opportunity for some young gal who wants to learn this stuph.

9) dlwillson: T G1 B1 Dlwillson
	Felix: At the moment, I don't know any women who are remotely interested in this stuph, haha. Well good luck with the camp! If nothing else I'd just love the chance to do some camping in Colorado! Still haven't been.

10) Felix: Trade G1 B1 Felix

11) dlwillson: B B2 Dlwillson

12) Felix: Build B2 Felix

13) dlwillson: D B1 Dlwillson G2 Field
	Felix: I hate to keep mirroring you, but you're making the best available moves!

14) Felix: Trade B1 Y1 Felix
	dlwillson: I think the first few turns are somewhat deterministic.

15) dlwillson: Trade B2 Y2 Dlwillson

16) Felix: Build Y1 Felix
	dlwillson: Hey! Now, I'm mirroring you! You have the lead, sir. Where shall we go next?

17) dlwillson: Move Y2 Dlwillson Field
	Felix: Let's build a yellow!

18) Felix: Discover Y1 Felix G1 Grinch
	dlwillson: I guess the mirroring phase is over. I don't want any more yellow, right now.

19) dlwillson: B G1 Dlwillson

20) Felix: M B2 Felix Grinch

21) dlwillson: B B1 Field

22) Felix: Build B2 Grinch

23) dlwillson: T B1 G1 Field
	Felix: Back to monkey see, monkey do!

24) Felix: Build G2 Felix
	dlwillson: Um... Simon says you have to copy that.
	Felix: Hmm... "t b1 g1 field" isn't working for some reason.

25) dlwillson: Sacrifice G3 Dlwillson
Build G2 Dlwillson
Build G3 Dlwillson
Build G3 Field

26) Felix: Build Y1 Grinch

27) dlwillson: T G2 Y2 Dlwillson

28) Felix: Move Y1 Grinch Field

29) dlwillson: Trade G3 R3 Field

30) Felix: Build Y3 Grinch

31) dlwillson: M G1 Field Grinch

32) Felix: Sacrifice Y3 Grinch
Move Y1 Field Dlwillson
Move Y1 Grinch Field
Move Y1 Field Dlwillson
Catastrophe Dlwillson Yellow

33) dlwillson: S Y2 Field
M G1 Dlwillson Felix
M G1 Grinch Felix
C Felix G
	dlwillson: Oh, right! You still had *that* one! Aargh! :-)

34) Felix: Sacrifice B2 Grinch
Trade R1 B1 Felix
Trade Y1 G1 Felix
	dlwillson: I'm not dead. I'm feeling better.
	Felix: Haha, dang. There was something in my gut telling me not to make that move. Now I know why!
	dlwillson: I think I see a better move I could have made! I'm not going to take back, because what I did offs pretty good, but I think I should have pushed you my G3 for free, instead.
	dlwillson: s/offs/is/

35) dlwillson: B B2 Field

36) Felix: Build B2 Grinch

37) dlwillson: Trade B2 Y2 Field

38) Felix: Trade B1 R1 Felix
	dlwillson: I'm taking your name in vain, over here: http://superdupergames.org/main.html?page=play_homeworlds&num=34464

39) dlwillson: Sacrifice Y2 Field
Move G3 Dlwillson Felix
Move R3 Field Grinch
	Felix: Ha, so you are! I wish tagging worked here, as well. I'd love to see an upgraded online Homeworlds platform soon!

40) Felix: Trade R1 G1 Felix

41) dlwillson: B G2 Felix
C Felix G
	Felix: Well played and good game!
	dlwillson: TY GG
Good luck with the rest of your tournament games!

Want to play an unrated game? I want to try a yellow and red home system.
	Felix: Sure! I'm always up for a game against you
	Draw5PlayAll: Say, does anyone know what quuxplusone's username here is? I thought he said he plays here but I have never seen the name quuxplusone on SDG...
	dlwillson: I don't know, but you could ask him yourself on this BGG thread:
https://boardgamegeek.com/thread/2014184/great-homeworlds-tournament-2018
	Babamots: quuxplusone = ajo



34372)
Variants: "Hard time"
Started: 2018.8.7, Ended: 2018.9.4
Participants: Laurie_Menke (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass
	Laurie_Menke: Enjoy!  :)

2) Laurie_Menke: Homeworld G3 B1 Y3

3) Draw5PlayAll: Homeworld B1 G3 B3 *

4) Laurie_Menke: Build Y1 Laurie_menke

5) Draw5PlayAll: Build B1 Draw5playall
	Laurie_Menke: Just a reminder to fill out the tournament form...

6) Laurie_Menke: Trade Y1 R1 Laurie_menke

7) Draw5PlayAll: Trade B3 Y3 Draw5playall

8) Laurie_Menke: Build Y1 Laurie_menke

9) Draw5PlayAll: Build B2 Draw5playall

10) Laurie_Menke: Discover Y1 Laurie_menke G2 Green

11) Draw5PlayAll: Discover B2 Draw5playall G2 Denial

12) Laurie_Menke: Build Y1 Laurie_menke

13) Draw5PlayAll: Build B2 Draw5playall

14) Laurie_Menke: Build R1 Laurie_menke

15) Draw5PlayAll: Trade B2 R2 Draw5playall

16) Laurie_Menke: Build Y1 Green

17) Draw5PlayAll: Build B2 Denial

18) Laurie_Menke: Build Y2 Green

19) Draw5PlayAll: Build B2 Draw5playall

20) Laurie_Menke: Build Y2 Laurie_menke

21) Draw5PlayAll: Build B3 Denial

22) Laurie_Menke: Sacrifice Y2 Green
Move Y1 Green Draw5playall
Move Y1 Green Draw5playall

23) Draw5PlayAll: Trade B3 Y3 Denial

24) Laurie_Menke: Trade Y1 G1 Laurie_menke

25) Draw5PlayAll: Build B3 Denial

26) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

27) Draw5PlayAll: Trade B3 R3 Denial
	Draw5PlayAll: If the only purpose of that was to sac it to blow my yellow, you could have just built through my green star directly.

28) Laurie_Menke: Build G1 Yellow
	Laurie_Menke: Yes, but then you could have moved in and catastrophe'd my yellow.

29) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack Y1 Draw5playall
Attack Y1 Draw5playall
	Laurie_Menke: Hi D5PA! Just wanted to let you know that I will be off grid starting today (8/24) until Monday (9/4). We have 4 games going, and all of them are hard time high stakes games. I'm going to try to find enough internet access to play once or twice during that time from my phone, but if I don't, I will have to forfeit those games. I don't like it, but can live with it if it happens.  ;)  Sorry for the timing problems... I thought we'd be done by now...

	Laurie_Menke: Darn it! I missed it by 3 minutes. Argh!  :(
	Laurie_Menke: Well, congratulations, D5PA. See you in our other games.
	Babamots: Sorry about the timeout! I wish I had thought to suggest pausing the timer when I heard about cutting it close with the trip.
	Laurie_Menke: No worries, Babamots. I should have remembered that trick myself!  (Though I'm not sure if D5PA would have agreed anyway...) There will be other games.  :)


34432)
Variants: "Hard time"
Started: 2018.8.7, Ended: 2018.8.14
Participants: dlwillson (S), Laurie_Menke (N)
Winner: dlwillson

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Hi dlwillson! Have fun!  :)

2) dlwillson: H B2 Y3 G3
	dlwillson: You too! Good luck and have fun!

3) Laurie_Menke: Build G1 Laurie_menke

4) dlwillson: Build G1 Dlwillson

5) Laurie_Menke: Trade G1 R1 Laurie_menke

6) dlwillson: T G1 R1 Dlwillson
	Laurie_Menke: Just a reminder to fill out the tournament form...

7) Laurie_Menke: Build G1 Laurie_menke

8) dlwillson: B G1 Dlwillson

9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

10) dlwillson: T G1 B1 Dlwillson

11) Laurie_Menke: Build G1 Laurie_menke

12) dlwillson: Build B1 Dlwillson

13) Laurie_Menke: Discover G1 Yellow Y1 Closer

14) dlwillson: D B1 Dlwillson Y1 Sol

15) Laurie_Menke: Build G1 Closer

16) dlwillson: S G3 Dlwillson
B B2 Sol
B B2 Sol
B B3 Dlwillson

17) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Closer
Build G2 Laurie_menke
Build G2 Laurie_menke

18) dlwillson: T B3 G3 Dlwillson

19) Laurie_Menke: Discover G2 Closer G3 Farther

20) dlwillson: D B2 Sol R2 Mars

21) Laurie_Menke: Sacrifice G2 Laurie_menke
Build G2 Farther
Build G3 Laurie_menke

22) dlwillson: S G3 Dlwillson
B B3 Dlwillson
B B3 Sol
B B3 Mars

23) Laurie_Menke: Trade G1 Y1 Laurie_menke

24) dlwillson: T B3 G3 Sol

25) Laurie_Menke: Sacrifice Y1 Laurie_menke
Discover G2 Farther Y2 Escape

26) dlwillson: Build G1 Sol

27) Laurie_Menke: Sacrifice G2 Farther
Build G2 Escape
Build G3 Laurie_menke

28) dlwillson: T B3 Y3 Dlwillson

29) Laurie_Menke: Trade G2 Y2 Laurie_menke

30) dlwillson: Sacrifice G3 Sol
Build B3 Mars
Build B3 Dlwillson
Build G2 Sol

31) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build Y1 Laurie_menke
Build G3 Closer

32) dlwillson: Sacrifice Y3 Dlwillson
Move B3 Mars Laurie_menke
Move B3 Mars Laurie_menke
Pass

33) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move G1 Closer Dlwillson
Move G1 Closer Dlwillson

34) dlwillson: S R1 Dlwillson
A R1 Laurie_menke

35) Laurie_Menke: Move G3 Closer Mars
	Laurie_Menke: LOL... welcome to our humble home, oh peaceful ones!  ;)

36) dlwillson: Sacrifice B2 Mars
Trade B2 R2 Sol
Trade B3 R3 Laurie_menke

37) Laurie_Menke: Sacrifice G3 Mars
Build G3 Dlwillson
Build Y1 Laurie_menke
Pass
	dlwillson: Thank you! I'd offer to peacefully trade, but this isn't Agricola and our heads are very pointy.
	Laurie_Menke: :D

38) dlwillson: Sacrifice R3 Laurie_menke
Attack G3 Laurie_menke
Attack G3 Laurie_menke
Attack G3 Dlwillson

39) Laurie_Menke: Move G2 Escape Laurie_menke

40) dlwillson: Sacrifice R2 Sol
Attack G2 Laurie_menke
Attack Y1 Laurie_menke
	Laurie_Menke: Well, this game is nothing if not exciting!

41) Laurie_Menke: Sacrifice G2 Escape
Build Y2 Laurie_menke
Build Y2 Laurie_menke
	Laurie_Menke: Argh! I did not see that one coming.  :(
	Laurie_Menke: Oh... wait...  hmmm.... I'm just going to pause for a moment to make sure you did what you intended to do...
	dlwillson: That was a very, very good move. I considered ignoring it, letting you cat those blues, grabbing one of the yellows. Then, I realized that those blues are all I have at home, and what you were about to do to me. Your heads are very pointy, too!
	Laurie_Menke: LOL!

42) dlwillson: Sacrifice G2 Laurie_menke
Build B2 Laurie_menke
Build B2 Laurie_menke
Catastrophe Laurie_menke Y
Catastrophe Laurie_menke B
	Laurie_Menke: I don't think it really matters in the end... I think you've got me...
	dlwillson: Yes, thanks. That was a typo. I meant to grab the big, of course.

	dlwillson: Hmm... I could've done that with slightly more bang, but that was pretty good. Thank you for the excellent fun game, and in particular, thank you for not taking advantage of my typo at 2018-08-14 16:18:26!
	Laurie_Menke: I lovely bang!  :)
	Laurie_Menke: *A* lovely bang!
	dlwillson: LOL :-)


34339)
Variants: "Unrated, Hard time"
Started: 2018.8.8, Ended: 2018.8.17
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B2 Y1 G3
	wil: Or this one?
	wil: H y2 b1 g3

2) Trydnt: Homeworld R3 B2 G3
	Trydnt: nope just for fun

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 B1 Wil

6) Trydnt: Trade G1 Y1 Trydnt

7) wil: B B1 Wil

8) Trydnt: Build Y1 Trydnt

9) wil: D B1 Wil Y3 Y3

10) Trydnt: Build Y2 Trydnt

11) wil: S G3 Wil
B B1 Y3
B B2 Y3
B B3 Wil

12) Trydnt: Discover Y1 Trydnt G1 G1

13) wil: T B3 Y3 Wil

14) Trydnt: Build Y2 G1

15) wil: D B1 Y3 G1 Gwon

16) Trydnt: Build Y2 Trydnt

17) wil: B B3 Gwon

18) Trydnt: Build Y3 G1

19) wil: T B3 G3 Gwon

20) Trydnt: Trade Y2 R2 Trydnt

21) wil: T B1 R1 Y3

22) Trydnt: Build Y2 Trydnt

23) wil: S G3 Gwon
B B1 Wil
B B3 Gwon
B B3 Y3

24) Trydnt: Discover Y2 G1 B3 B3

25) wil: T B3 R3 Gwon

26) Trydnt: Discover Y3 G1 B3 Bee3

27) wil: T B3 G3 Y3

28) Trydnt: Discover Y1 G1 B3 B33

29) wil: B G1 Y3

30) Trydnt: Trade Y1 G1 B33

31) wil: Discover G1 Y3 Y1 Y1

32) Trydnt: Build G2 B33

33) wil: Build G2 Y3

34) Trydnt: Trade G1 R1 B33

35) wil: Move G3 Y3 Wil

36) Trydnt: Trade Y3 G3 Bee3

37) wil: Discover G3 Wil Y3 Whynot3

38) Trydnt: Discover Y1 Trydnt R1 R1
	wil: timely

39) wil: Build R2 Gwon

40) Trydnt: Discover R2 Trydnt G1 G1

41) wil: Sacrifice G1 Y1
Build R2 Y3

42) Trydnt: Build R3 B33

43) wil: Trade R1 Y1 Y3

44) Trydnt: Discover Y2 Trydnt R1 Are1

45) wil: Move Y1 Y3 Gwon

46) Trydnt: Move Y1 R1 B33

47) wil: Discover R2 Y3 G1 Gee1

48) Trydnt: Sacrifice Y2 Are1
Move Y1 B33 Wil
Move Y2 B3 Wil
Catastrophe Wil Y

49) wil: Move R3 Gwon Wil

50) Trydnt: Trade R3 B3 B33

51) wil: Build G2 Whynot3
	wil: well that was devastating....but it has been there for ever wondering when you were gonna pull the trigger!
	Trydnt: it only became possible on my last move

52) Trydnt: Sacrifice Y2 Trydnt
Move B3 B33 Wil
Catastrophe Wil B
Pass

	wil: lol, i missed you gettng the b3 completely
	Trydnt: haha I think the only way to stop it was to sac a y and move the blue out (and that was your only yellow I believe) or to sac a b1 in your hw and trade the other b1 for something else
	wil: s b1 and pass


34341)
Variants: "Unrated, Hard time"
Started: 2018.8.8, Ended: 2018.8.12
Participants: mneme (S), Trydnt (N)
Winner: mneme

1) Trydnt: Homeworld B2 Y1 G3

2) mneme: Homeworld G3 B3 Y3 *
	mneme: Oh, right; this was from an open challenge; this isn't a tournament game. :)

3) Trydnt: Build G1 Trydnt
	Trydnt: correct :) I like having lots of games on at a time

4) mneme: Build Y1 Mneme

5) Trydnt: Trade G1 Y1 Trydnt

6) mneme: Trade Y3 R3 Mneme

7) Trydnt: Discover Y1 Trydnt G3 G3

8) mneme: Move R3 Mneme Trydnt
	mneme: sorry, forgot this was the tinyu game.



34429)
Started: 2018.8.8, Ended: 2018.9.20
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) MobyNostromo: H G2 B3 Y3

3) Trydnt: Build G1 Trydnt

4) MobyNostromo: B Y1 Mobynostromo

5) Trydnt: Trade G1 Y1 Trydnt

6) MobyNostromo: B Y2 Mobynostromo

7) Trydnt: Discover Y1 Trydnt G3 G3

8) MobyNostromo: T Y1 G1 Mobynostromo

9) Trydnt: Build G1 Trydnt

10) MobyNostromo: T Y2 B2 Mobynostromo

11) Trydnt: Trade G1 B1 Trydnt

12) MobyNostromo: B G1 Mobynostromo

13) Trydnt: Build G1 Trydnt

14) MobyNostromo: D G1 Mobynostromo B1 Sky

15) Trydnt: Trade G1 R1 Trydnt

16) MobyNostromo: D B2 Mobynostromo R1 Fire

17) Trydnt: Build R1 Trydnt



34437)
Variants: "Unrated, Hard time"
Started: 2018.8.8, Ended: 2018.8.21
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B3 Y2 G3
	wil: Is this a round robin game?

2) Trydnt: Homeworld B2 Y1 G3
	wil: Or was the last one?

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt
	wil: Can't make any more moves till I find out which is the tourney game...and which I can have fun on...
	Trydnt: nah these are just for fun

5) wil: T G1 Y1 Wil

6) Trydnt: Trade G1 Y1 Trydnt

7) wil: B Y2 Wil

8) Trydnt: Build Y2 Trydnt

9) wil: D Y1 Wil G1 G1

10) Trydnt: Discover Y1 Trydnt G3 G3

11) wil: B Y3 G1

12) Trydnt: Build Y3 G3

13) wil: M Y1 G1 G3

14) Trydnt: Sacrifice Y1 G3
Discover Y3 G3 G1 Gee1

15) wil: B G1 Wil

16) Trydnt: Build G2 Trydnt

17) wil: D G1 Wil B1 B1

18) Trydnt: Trade G2 R2 Trydnt

19) wil: T Y2 R2 Wil

20) Trydnt: Build G2 Trydnt

21) wil: B G2 Wil

22) Trydnt: Build R1 Trydnt

23) wil: S G3 Wil
B G2 B1
B G3 Wil
B R1 Wil

24) Trydnt: Move Y2 Trydnt G3

25) wil: S Y1 G3
D G2 B1 Y3 Y3

26) Trydnt: Build Y1 Gee1

27) wil: M R2 Wil G1

28) Trydnt: Trade R1 B1 Trydnt

29) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Wil
Build Y1 G1

30) Trydnt: Sacrifice B1 Trydnt
Trade Y3 B3 Gee1

31) wil: Move Y1 G1 G3

32) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G3
Build Y3 Gee1

33) wil: Sacrifice G2 Y3
Build G2 B1
Build Y3 G1

34) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B1 Gee1
Build B1 Gee1

35) wil: Trade G1 R1 B1

36) Trydnt: Trade B3 R3 Gee1

37) wil: Build R2 B1

38) Trydnt: Sacrifice G2 Trydnt
Build R3 Gee1
Build R3 Trydnt

39) wil: Sacrifice G3 Wil
Build G1 B1
Build G2 B1
Build G3 Wil

40) Trydnt: Sacrifice Y3 Gee1
Move Y2 G3 G1
Move Y2 G3 G1
Catastrophe G1 Y
Move R3 Gee1 G3

41) wil: Trade G2 Y2 B1

42) Trydnt: Attack Y1 G3

43) wil: Trade G2 Y2 Wil
	wil: time for a tourney game...


44) Trydnt: Build Y3 Gee1

45) wil: Build Y3 B1

46) Trydnt: Build Y3 G3

47) wil: Trade G2 B2 B1

48) Trydnt: Move B1 Gee1 G3

49) wil: Discover B2 B1 G2 G2

50) Trydnt: Build G2 Trydnt
	wil: meant to move the g2 to a y3 before that...major mistake..

51) wil: Build G2 B1

52) Trydnt: Move R3 G3 G2

53) wil: Sacrifice B2 G2
Trade G2 B2 B1
Pass

54) Trydnt: Sacrifice Y3 Gee1
Move B1 Gee1 G3
Move B1 G3 B1
Move B1 G3 B1
Catastrophe B1 B

55) wil: Build R1 G1
	wil: yeah this one is over too


56) Trydnt: Build R2 G2

57) wil: Move Y2 Wil G1
	Trydnt: let's see where this goes though haha

58) Trydnt: Discover G2 Trydnt Y3 Y3

59) wil: Discover R2 G1 Y3 Whynot

60) Trydnt: Move R3 Trydnt Whynot

61) wil: Build Y2 G1

62) Trydnt: Attack R2 Whynot

63) wil: Trade R1 B1 Wil

64) Trydnt: Trade R2 B2 Trydnt

65) wil: Discover Y2 G1 B3 B3

66) Trydnt: Move Y3 G3 G1

67) wil: Discover Y2 G1 B3 Be3

68) Trydnt: Build R1 Gee1

69) wil: Build R2 Wil

70) Trydnt: Sacrifice G2 Y3
Build Y3 G3
Build B1 Trydnt

71) wil: Build G1 Wil

72) Trydnt: Sacrifice B2 Trydnt
Trade R2 B2 Whynot
Trade R1 B1 Gee1

73) wil: Discover G1 Wil R1 R1
	wil: You've got me dominated...put me out of my misery!  Amazing how long it takes sometimes....but you are like a cat with a mouse...just torturing...as I try to stay alive..

74) Trydnt: Build B2 Gee1
	Trydnt: haha I like to be certain

75) wil: Build G2 Wil

76) Trydnt: Move R3 Whynot Gee1

77) wil: Move R1 Wil Gee1

78) Trydnt: Sacrifice B2 Whynot
Trade R3 Y3 Gee1
Trade R2 B2 G2

79) wil: Sacrifice G3 Wil
Build G2 R1
Build G3 Wil
Build R2 Wil

80) Trydnt: Sacrifice Y3 G3
Move B1 Gee1 Wil
Move B2 Gee1 Wil
Catastrophe Wil B
Move Y1 G3 Wil

	wil: You up late..

	Trydnt: /early
	wil: nice


34342)
Variants: "Unrated, Hard time"
Started: 2018.8.8, Ended: 2018.9.17
Participants: mneme (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 R2 G3

2) mneme: Homeworld B1 G2 R3

3) Trydnt: Build G1 Trydnt
	mneme: And this is also from an open challenge and isn't a tournament game either. :)

4) mneme: Build R1 Mneme

5) Trydnt: Build G1 Trydnt

6) mneme: Trade R1 Y1 Mneme

7) Trydnt: Trade G1 Y1 Trydnt

8) mneme: Build R1 Mneme

9) Trydnt: Build G1 Trydnt

10) mneme: Trade R1 G1 Mneme

11) Trydnt: Trade G1 B1 Trydnt

12) mneme: Build R1 Mneme

13) Trydnt: Build B1 Trydnt

14) mneme: Build R1 Mneme

15) Trydnt: Discover B1 Trydnt G1 G1

16) mneme: Build G2 Mneme

17) Trydnt: Build G2 Trydnt

18) mneme: Discover G2 Mneme G3 Melpomene

19) Trydnt: Trade G2 Y2 Trydnt

20) mneme: Discover G1 Mneme B3 Calliope

21) Trydnt: Build B2 G1

22) mneme: Discover R1 Mneme B3 Clio

23) Trydnt: Trade B2 R2 G1

24) mneme: Trade R3 G3 Mneme

25) Trydnt: Build B2 G1

26) mneme: Build G2 Calliope

27) Trydnt: Trade B2 Y2 G1

28) mneme: Trade G2 Y2 Calliope

29) Trydnt: Discover Y2 Trydnt R1 R1

30) mneme: Sacrifice G2 Melpomene
Build Y1 Mneme
Build Y3 Calliope

31) Trydnt: Sacrifice G3 Trydnt
Build Y3 Trydnt
Build Y3 G1
Build G2 Trydnt

32) mneme: Sacrifice G3 Mneme
Build R2 Mneme
Build R3 Clio
Build R3 Mneme

33) Trydnt: Sacrifice G2 Trydnt
Build R3 G1
Build B2 G1

34) mneme: Trade R3 G3 Mneme

35) Trydnt: Sacrifice Y2 G1
Discover Y3 G1 R3 R3
Discover B2 G1 G3 G3

36) mneme: Move Y3 Calliope R1

37) Trydnt: Sacrifice Y2 R1
Move B2 G3 R1
Move B2 R1 R3

38) mneme: Build Y2 Calliope

39) Trydnt: Build G2 Trydnt

40) mneme: Build Y2 Calliope

41) Trydnt: Sacrifice G2 Trydnt
Build B2 R3
Build B2 R3

42) mneme: Move Y2 Calliope R1

43) Trydnt: Move Y1 Trydnt G1

44) mneme: Move Y1 Mneme Clio

45) Trydnt: Trade B2 G2 R3

46) mneme: Sacrifice Y1 Clio
Discover R1 Clio Y1 Melpomene

47) Trydnt: Build B2 R3

48) mneme: Sacrifice Y3 R1
Move R1 Melpomene R3
Move R1 Mneme R3
Move R2 Mneme R3
Catastrophe R3 R

49) Trydnt: Build G2 Trydnt

50) mneme: Build G2 Calliope

51) Trydnt: Move R3 G1 Calliope
	mneme: That was a nice doomsday machine.

52) mneme: Sacrifice G3 Mneme
Build Y1 Calliope
Build Y3 Mneme
Build Y3 R1

53) Trydnt: Sacrifice R2 G1
Attack G2 Calliope
Attack G1 Calliope

54) mneme: Sacrifice Y2 Calliope
Move Y2 Calliope G1
Move R3 Clio G1

55) Trydnt: Attack Y1 Calliope

56) mneme: Trade Y1 R1 Mneme

57) Trydnt: Sacrifice Y1 G1
Discover B1 G1 Y2 Y2

58) mneme: Build Y1 G1

59) Trydnt: Build G3 Trydnt

60) mneme: Build R1 G1

61) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y1 Calliope
Build G3 Calliope

62) mneme: Build R2 Mneme

63) Trydnt: Move G3 Calliope Y2

64) mneme: Trade R2 B2 Mneme

65) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Y2
Build B2 Y2

66) mneme: Sacrifice B2 Mneme
Trade R3 B3 G1
Trade Y2 B2 R1

67) Trydnt: Sacrifice Y1 Calliope
Discover B1 Trydnt Y1 Y1

68) mneme: Build B2 G1

69) Trydnt: Sacrifice G3 Y2
Build G3 Y2
Build Y2 Trydnt
Build R2 Calliope

70) mneme: Build R2 Mneme

71) Trydnt: Move G2 Trydnt G1

72) mneme: Move Y3 R1 Trydnt

73) Trydnt: Attack Y3 Trydnt

74) mneme: Move Y1 G1 Trydnt
Catastrophe Trydnt Y

75) Trydnt: Sacrifice G1 Calliope
Build G1 G1

76) mneme: Move B3 G1 Trydnt

77) Trydnt: Sacrifice R3 Calliope
Attack B3 Trydnt
Attack B2 G1
Attack Y2 G1

78) mneme: Build R3 G1

79) Trydnt: Sacrifice G1 Trydnt
Build G1 G1
Catastrophe G1 G

80) mneme: Build Y1 Mneme

81) Trydnt: Build Y2 Calliope

82) mneme: Trade Y1 G1 Mneme

83) Trydnt: Sacrifice Y2 Calliope
Move G3 Y2 Calliope
Move G3 Calliope Mneme

84) mneme: Attack G3 Mneme

85) Trydnt: Move G2 Calliope Mneme
Catastrophe Mneme G

86) mneme: Trade R2 G2 Mneme

87) Trydnt: Trade B3 Y3 Trydnt

	mneme: mate in 2.  Well played.
	Babamots: Am I right that this was a tournament game? It looks like it was reported at the end but not at the beginning.
	Trydnt: Yes you are correct. Neither of us put it in at the beginning but should be in there now
	Babamots: Thanks!
	Babamots: Wait, I just noticed that, at the beginning of the game, mneme said in the comments that this is NOT a tournament game. I'm going to delete it from the record unless mneme wants to count it.
	Trydnt: That is true. Mneme did we have another game running that was a tourney game?
	mneme: Huh.  I'm not sure.  It was playing it as if it were a tournamnent game, but it clearly wasn't -- the setup didn't match the tournament approach, which was why I put that note in the beginning.

Almost a shame, since I think we were both playing it with intent, but that just makes it good practice.



34441)
Variants: "Hard time"
Started: 2018.8.8, Ended: 2018.8.19
Participants: Babamots (S), ajo (N)
Winner: Babamots

1) ajo: Homeworld B2 R1 G3

2) Babamots: Homeworld R3 B2 G3
	Babamots: For the record, this is for the tournament.

Good luck!

3) ajo: Build G1 Ajo

4) Babamots: Build G1 Babamots

5) ajo: Trade G1 Y1 Ajo
	ajo: Yes. Good luck!

6) Babamots: Trade G1 Y1 Babamots

7) ajo: Build G1 Ajo

8) Babamots: Build G1 Babamots

9) ajo: Discover G1 Ajo B3 Alpha

10) Babamots: Discover G1 Babamots B1 Andoria

11) ajo: Build G1 Ajo

12) Babamots: Build G2 Babamots

13) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Alpha
Build G3 Ajo

14) Babamots: Sacrifice G3 Babamots
Build G3 Andoria
Build G3 Babamots
Build Y1 Babamots

15) ajo: Trade G2 Y2 Alpha

16) Babamots: Trade Y1 R1 Babamots

17) ajo: Trade G2 R2 Alpha

18) Babamots: Trade G3 Y3 Andoria

19) ajo: Build G2 Alpha

20) Babamots: Discover Y3 Andoria G2 Orion

21) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Alpha
Build R1 Alpha

22) Babamots: Sacrifice Y1 Babamots
Move G1 Andoria Alpha
Catastrophe Alpha G

23) ajo: Trade R2 G2 Alpha

24) Babamots: Trade G2 Y2 Babamots

25) ajo: Build R2 Alpha

26) Babamots: Build Y1 Babamots

27) ajo: Discover R1 Alpha G1 Beta

28) Babamots: Move Y2 Babamots Beta

29) ajo: Sacrifice Y2 Alpha
Move R1 Beta Babamots
Discover R2 Alpha Y1 Gamma

30) Babamots: Sacrifice R1 Babamots
Attack R1 Babamots

31) ajo: Build Y2 Ajo

32) Babamots: Sacrifice G3 Babamots
Build Y2 Orion
Build Y3 Beta
Build Y3 Babamots
	ajo: Oh bother. I always forget that you can do that. (This is not the first game in which I've messed that up.)

33) ajo: Sacrifice G1 Ajo
Build R1 Gamma
	Babamots: In the last tournament, I lost the semifinal game to that problem. Gotta be so careful if count on your opponent's ships helping you to get a red catastrophe.

34) Babamots: Trade R1 B1 Babamots

35) ajo: Build G1 Alpha

36) Babamots: Sacrifice B1 Babamots
Trade Y2 R2 Beta

37) ajo: Sacrifice G2 Alpha
Build G1 Ajo
Build R1 Gamma

38) Babamots: Sacrifice Y2 Orion
Move R2 Beta Alpha
Move R2 Alpha Gamma
Catastrophe Gamma R

39) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Ajo
Build G3 Ajo

40) Babamots: Discover Y3 Beta G3 Risa

41) ajo: Trade G2 Y2 Alpha

42) Babamots: Trade Y3 G3 Babamots

43) ajo: Discover Y1 Ajo B3 Beta

44) Babamots: Build G1 Babamots

45) ajo: Sacrifice G2 Ajo
Build G2 Alpha
Build Y1 Beta

46) Babamots: Discover G1 Babamots B1 Bolarus

47) ajo: Sacrifice G2 Alpha
Build Y2 Beta
Build Y3 Alpha

48) Babamots: Build G2 Bolarus

49) ajo: Trade Y3 R3 Alpha

50) Babamots: Sacrifice G2 Bolarus
Build G2 Babamots
Build Y3 Babamots

51) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G3 Ajo
Build R1 Alpha

52) Babamots: Trade G2 R2 Babamots

53) ajo: Move Y1 Beta Bolarus

54) Babamots: Move R2 Babamots Bolarus

55) ajo: Move Y1 Bolarus Babamots

56) Babamots: Move Y1 Babamots Bolarus

57) ajo: Discover Y1 Babamots B1 Gamma

58) Babamots: Build R1 Bolarus

59) ajo: Move G2 Alpha Gamma

60) Babamots: Trade R1 B1 Bolarus

61) ajo: Move R3 Alpha Gamma

62) Babamots: Build G2 Bolarus

63) ajo: Sacrifice G3 Ajo
Build R1 Gamma
Build R2 Alpha
Build G3 Ajo

64) Babamots: Discover G1 Bolarus B3 Benzar

65) ajo: Move R3 Gamma Benzar

66) Babamots: Sacrifice Y3 Orion
Move G2 Bolarus Benzar
Move G2 Benzar Ajo
Move G1 Benzar Ajo
Catastrophe Ajo G

67) ajo: Sacrifice Y2 Beta
Move R3 Benzar Ajo
Move R1 Alpha Gamma

68) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build B2 Bolarus
Build Y3 Babamots

69) ajo: Discover Y1 Beta G1 Epsilon

70) Babamots: Move Y3 Babamots Gamma

71) ajo: Sacrifice Y2 Alpha
Move R1 Gamma Babamots
Move R1 Gamma Babamots

72) Babamots: Sacrifice R2 Bolarus
Attack Y1 Gamma
Attack G2 Gamma

73) ajo: Build Y2 Epsilon

74) Babamots: Attack R1 Babamots

75) ajo: Sacrifice G1 Alpha
Build R2 Babamots
Catastrophe Babamots Red

76) Babamots: Trade Y1 R1 Gamma

77) ajo: Trade R3 G3 Ajo

78) Babamots: Move B2 Bolarus Risa

79) ajo: Build Y1 Ajo

80) Babamots: Build B3 Risa

81) ajo: Discover Y1 Epsilon B3 Zeta

82) Babamots: Trade B3 R3 Risa

83) ajo: Discover Y1 Ajo B3 Theta

84) Babamots: Build R1 Risa
	ajo: That's quite an impenetrable defense you've got there. I see my doom about 4 turns away...

85) ajo: Build G1 Ajo

86) Babamots: Move G2 Gamma Zeta

87) ajo: Move G1 Ajo Alpha

88) Babamots: Sacrifice R1 Risa
Attack Y1 Zeta

89) ajo: Build G1 Ajo

90) Babamots: Move Y1 Zeta Gamma

91) ajo: Build G2 Alpha

92) Babamots: Sacrifice G2 Zeta
Build R1 Risa
Build B3 Risa

93) ajo: Build R2 Alpha

94) Babamots: Move R1 Gamma Babamots

95) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G2 Alpha
Build G3 Ajo

96) Babamots: Sacrifice Y3 Gamma
Move B1 Bolarus Risa
Move B1 Risa Ajo
Move B3 Risa Ajo

97) ajo: Attack B3 Ajo

98) Babamots: Move B2 Risa Ajo
Catastrophe Ajo B

99) ajo: Pass

100) Babamots: Sacrifice Y3 Risa
Move R1 Risa Ajo
Move R1 Babamots Ajo
Move R3 Risa Ajo
Catastrophe Ajo R
	ajo: I see it coming, but I don't think I have any better move at this point... :)

	ajo: Well, if I didn't capture (or catastrophe) your b3, you could have just sacrificed r3 to capture my y2g1g3, which I think would have led to my defeat pretty quick as well.
	Babamots: Yes, I think building y3 would have only bought you a move or two.

Good game! Valiantly fought!


34447)
Variants: "Hard time"
Started: 2018.8.10, Ended: 2018.9.3
Participants: deanthebean (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R1 B2 G3

2) deanthebean: Homeworld B3 Y1 G3
	goulo: hi, have fun!
	deanthebean: Thanks. You too!

3) goulo: Build G1 Goulo

4) deanthebean: Build G1 Deanthebean

5) goulo: Trade G3 Y3 Goulo

6) deanthebean: Trade G1 R1 Deanthebean

7) goulo: Build G1 Goulo

8) deanthebean: Build R1 Deanthebean

9) goulo: Trade Y3 R3 Goulo

10) deanthebean: Build R2 Deanthebean

11) goulo: Build R2 Goulo

12) deanthebean: Trade R1 Y1 Deanthebean

13) goulo: Trade G1 Y1 Goulo

14) deanthebean: Build Y2 Deanthebean

15) goulo: Build Y2 Goulo

16) deanthebean: Discover Y1 Deanthebean G2 Xi

17) goulo: Discover Y1 Goulo G3 Smeraldego

18) deanthebean: Discover R2 Deanthebean G2 Pen

19) goulo: Move R2 Goulo Smeraldego

20) deanthebean: Move Y2 Deanthebean Pen

21) goulo: Move R2 Smeraldego Xi

22) deanthebean: Move R2 Pen Smeraldego

23) goulo: Discover Y1 Smeraldego G2 Smeraldo

24) deanthebean: Build G1 Deanthebean

25) goulo: Attack Y1 Xi

26) deanthebean: Move R1 Deanthebean Smeraldo

27) goulo: Trade R3 G3 Goulo

28) deanthebean: Attack Y1 Smeraldo

29) goulo: Sacrifice G3 Goulo
Build Y2 Xi
Build Y3 Xi
Build Y3 Goulo

30) deanthebean: Build Y3 Pen

31) goulo: Move Y1 Xi Deanthebean

32) deanthebean: Sacrifice R1 Smeraldo
Attack Y1 Deanthebean

33) goulo: Sacrifice Y2 Goulo
Move Y2 Xi Deanthebean
Move Y3 Xi Deanthebean
Catastrophe Deanthebean Y

34) deanthebean: Trade G1 R1 Deanthebean

35) goulo: Build Y1 Goulo

36) deanthebean: Build R1 Deanthebean

37) goulo: Build G1 Goulo

38) deanthebean: Trade R1 B1 Deanthebean

39) goulo: Trade G1 B1 Goulo

40) deanthebean: Build G1 Deanthebean

41) goulo: Discover B1 Goulo Y3 Flavego

42) deanthebean: Trade G1 Y1 Deanthebean

43) goulo: Trade Y1 B1 Goulo

44) deanthebean: Move B1 Deanthebean Pen

45) goulo: Build G1 Goulo

46) deanthebean: Build B2 Pen

47) goulo: Discover B1 Flavego Y2 Flavo

48) deanthebean: Move B2 Pen Smeraldego

49) goulo: Discover B1 Goulo Y3 Flavego

50) deanthebean: Sacrifice G3 Deanthebean
Build B2 Smeraldego
Build B3 Pen
Build R1 Smeraldego

51) goulo: Sacrifice G1 Goulo
Build B3 Flavo

52) deanthebean: Sacrifice Y2 Pen
Move B2 Smeraldego Flavo
Move B2 Smeraldego Flavo
Catastrophe Flavo Blue

53) goulo: Build G1 Goulo

54) deanthebean: Trade B3 G3 Pen

55) goulo: Discover B1 Flavego Y2 Flavo

56) deanthebean: Build G1 Pen

57) goulo: Trade G1 B1 Goulo

58) deanthebean: Move B1 Pen Smeraldego

59) goulo: Build G1 Goulo

60) deanthebean: Sacrifice G3 Pen
Build G3 Pen
Build B2 Smeraldego
Build R2 Smeraldego

61) goulo: Sacrifice Y3 Goulo
Move R2 Xi Smeraldego
Move B1 Flavo Deanthebean
Move B1 Goulo Deanthebean
Catastrophe Smeraldego Red

62) deanthebean: Attack B1 Deanthebean

63) goulo: Sacrifice G1 Goulo
Build B2 Deanthebean
Catastrophe Deanthebean Blue

	deanthebean: Well played! 
	goulo: thanks! that was a tough interesting game... I thought I was doomed (after I fell so behind on material, the price I paid to do the first catastrophe), until I realized that final sequence at the end. lucky for me it worked out that way, winning with only one 1-ship remaining vs two 3-ships and various other ships. a narrow win! :)


34288)
Variants: "Hard time"
Started: 2018.8.10, Ended: 2018.8.13
Participants: wil (S), Ryzorrin (N)
Winner: wil

1) Ryzorrin: Homeworld B1 G2 R3

2) wil: H B3 R1 G3

3) Ryzorrin: Build R1 Ryzorrin
	wil: The for the game!  Is this a tourney challenge or just for fun?


4) wil: Build G1 Wil
	Ryzorrin: Just for fun?
	wil: Nice, welcome back, looks like it has been a while...  there is a tourney just starting if interrested

5) Ryzorrin: Trade R1 Y1 Ryzorrin
	Ryzorrin: Maybe.  Need to get back into the swing of things.  

6) wil: Trade G1 Y1 Wil

7) Ryzorrin: Discover Y1 Ryzorrin B3 Arthur
	wil: Win or lose the tourney lets you play 15 games in the next few months..meet 15 new players...see a bunch of differing strategies and game play...  No peer pressure, just insuring you are aware of the opportunity.

8) wil: B G1 Wil
	wil: Leaving t he nest awful young 

9) Ryzorrin: Trade Y1 G1 Arthur
	Ryzorrin: It seems safe enough.


10) wil: B Y1 Wil

11) Ryzorrin: Build R1 Ryzorrin
	wil: See, the liitle guy gets out in the world and shape shifts on ya!

12) wil: Build Y1 Wil

13) Ryzorrin: Build R1 Ryzorrin

14) wil: Discover Y1 Wil G2 G2

15) Ryzorrin: Trade R1 G1 Ryzorrin
	Ryzorrin: Very creative star system name. :D

16) wil: B Y2 G2
	wil: Im a simple man

17) Ryzorrin: Build G2 Ryzorrin
	wil: After all, i dont get attached to temporary sites we land just to harvest fuel.  No use getting sentimental over property we will likely exploit and leave behind

18) wil: Build G3 Wil

19) Ryzorrin: Build G3 Arthur

20) wil: D G1 Wil Y2 Y2

21) Ryzorrin: Trade G2 Y2 Ryzorrin

22) wil: T Y1 R1 Wil

23) Ryzorrin: Discover G1 Ryzorrin B3 Lancelot

24) wil: Sacrifice G3 Wil
Build G2 Y2
Build G3 Wil
Build R2 Wil

25) Ryzorrin: Trade G1 Y1 Arthur

26) wil: Move Y2 G2 Lancelot

27) Ryzorrin: Build Y3 Arthur

28) wil: S G2 Y2
B Y3 Lancelot
B Y3 Wil

29) Ryzorrin: Trade G3 R3 Arthur

30) wil: S R1 Wil
A G1 Lancelot

31) Ryzorrin: Move R3 Arthur G2

32) wil: T Y1 B1 Wil

33) Ryzorrin: Attack Y1S G2

34) wil: Sacrifice G3 Wil
Build G1 Wil
Build G2 Lancelot
Build G3 Y2

35) Ryzorrin: Build R1 G2

36) wil: T G2 R2 Lancelot

37) Ryzorrin: Sacrifice Y2 Ryzorrin
Move R1 G2 Wil
Move R3 G2 Wil
Catastrophe Wil Red

38) wil: S G3 Wil
B G2 Wil
B G3 Wil
B G3 Lancelot

39) Ryzorrin: Trade R1 B1 Ryzorrin

40) wil: S Y3 Wil
M G3 Lancelot Ryzorrin
M Y3 Lancelot Ryzorrin
M Y2 Lancelot Ryzorrin

41) Ryzorrin: Attack Y3S Ryzorrin

	Ryzorrin: good game.


34456)
Variants: "Hard time"
Started: 2018.8.11, Ended: 2018.9.16
Participants: ts52 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	Babamots: For the record, this is for the tournament. Good luck!

2) ts52: Homeworld Y3 B2 G3
	ts52: Thanks! Good luck to you too. Have a good game!

3) Babamots: Build G1 Babamots

4) ts52: Build G1 Ts52

5) Babamots: Trade G1 R1 Babamots

6) ts52: Trade G1 R1 Ts52

7) Babamots: Build R2 Babamots

8) ts52: Build R2 Ts52

9) Babamots: Trade R1 Y1 Babamots

10) ts52: Trade R1 Y1 Ts52

11) Babamots: Build G1 Babamots

12) ts52: Build G1 Ts52

13) Babamots: Discover G1 Babamots B3 Betazed

14) ts52: Discover G1 Ts52 B1 Gonzo

15) Babamots: Build Y1 Babamots

16) ts52: Build Y2 Ts52

17) Babamots: Move Y1 Babamots Betazed

18) ts52: Move Y2 Ts52 Gonzo

19) Babamots: Build Y2 Babamots

20) ts52: Build R1 Ts52

21) Babamots: Sacrifice G3 Babamots
Build Y2 Betazed
Build Y3 Betazed
Build Y3 Babamots

22) ts52: Discover Y1 Ts52 B1 Grover

23) Babamots: Sacrifice Y1 Betazed
Discover Y2 Babamots G3 Orion

24) ts52: Build Y1 Gonzo

25) Babamots: Trade Y1 B1 Babamots

26) ts52: Move R2 Ts52 Grover

27) Babamots: Move B1 Babamots Orion

28) ts52: Build G1 Ts52
	Babamots: I hope you don't mind if I play a little slow for a few days. I'm trying to make good on some projects, and it's taking plenty of my concentration to not mess up on another of my current games.
	ts52: I don't mind at all. Thanks for giving me a heads up.

29) Babamots: Move Y3 Betazed Grover

30) ts52: Move R2 Grover Ts52

31) Babamots: Build B2 Orion

32) ts52: Build G2 Gonzo

33) Babamots: Build B3 Orion

34) ts52: Discover G2 Gonzo B3 Cookie

35) Babamots: Move B3 Orion Gonzo

36) ts52: Move Y2 Gonzo Cookie

37) Babamots: Trade B3 R3 Gonzo

38) ts52: Build G2 Cookie

39) Babamots: Attack Y1 Gonzo

40) ts52: Discover R2 Ts52 Y1 Bigbird

41) Babamots: Attack G1 Gonzo

42) ts52: Move G2 Cookie Bigbird

43) Babamots: Move G1 Betazed Gonzo

44) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build G3 Cookie

45) Babamots: Sacrifice Y3 Grover
Move G1 Gonzo Ts52
Move G1 Gonzo Ts52
Move R3 Gonzo Ts52
Catastrophe Ts52 G

46) ts52: Sacrifice Y2 Cookie
Move G2 Bigbird Ts52
Move R2 Bigbird Ts52

47) Babamots: Sacrifice R2 Babamots
Attack G2 Ts52
Attack R2 Ts52
	ts52: How did I not see that coming? Or maybe I did and figured it was unavoidable? Too many games. Well played sir.

48) ts52: Move G2 Bigbird Ts52

49) Babamots: Sacrifice R2 Ts52
Attack R1 Ts52
Attack G2 Ts52
	Babamots: With half a dozen other games going, I would be missing things everywhere. But rest assured, as many of your troops as surrender will be shown mercy. GG!



34458)
Variants: "Hard time"
Started: 2018.8.11, Ended: 2018.8.23
Participants: ts52 (S), speardane (N)
Winner: ts52

1) speardane: Homeworld Y3 G2 B3

2) ts52: Homeworld Y1 B2 G3

3) speardane: Build B1 Speardane

4) ts52: Build G1 Ts52

5) speardane: Trade B1 R1 Speardane

6) ts52: Trade G1 R1 Ts52

7) speardane: Build B1 Speardane

8) ts52: Build G1 Ts52

9) speardane: Discover B1 Speardane G1 Delos

10) ts52: Build G1 Ts52

11) speardane: Build B1 Speardane

12) ts52: Discover G1 Ts52 B3 Gonzo

13) speardane: Discover B1 Speardane Y1 Lebling

14) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G2 Gonzo
Build G3 Ts52

15) speardane: Trade B1 Y1 Delos

16) ts52: Trade G2 Y2 Gonzo

17) speardane: Discover B1 Lebling G3 Kotok

18) ts52: Sacrifice G3 Ts52
Build G2 Ts52
Build G3 Ts52
Build G3 Gonzo

19) speardane: Move Y1 Delos Kotok

20) ts52: Trade G3 R3 Gonzo

21) speardane: Build B1 Speardane

22) ts52: Discover G2 Ts52 B3 Grover

23) speardane: Build B1 Speardane

24) ts52: Trade G2 B2 Gonzo

25) speardane: Build B2 Kotok

26) ts52: Sacrifice Y2 Gonzo
Discover B2 Gonzo R1 Elmo
Move B2 Elmo Speardane
Catastrophe Speardane Blue

27) speardane: Trade B1 R1 Kotok

28) ts52: Trade G2 Y2 Grover

29) speardane: Build R2 Speardane

30) ts52: Sacrifice Y2 Grover
Discover R3 Gonzo Y1 Bigbird
Move R3 Bigbird Speardane

31) speardane: Sacrifice B2 Kotok
Trade R2 B2 Speardane
Trade R1 B1 Kotok

32) ts52: Attack R1N Speardane

33) speardane: Build B1 Speardane

34) ts52: Attack B2N Speardane

35) speardane: Pass

36) ts52: Attack B1N Speardane
	ts52: Good game! Thanks!



34459)
Variants: "Hard time"
Started: 2018.8.12, Ended: 2018.8.14
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) wil: H Y2 B1 G3
	dlwillson: Long time, no see! :-)
	wil: Glad to see you back around these parts!

3) dlwillson: B G1 Dlwillson

4) wil: B G1 Wil
	dlwillson: Well, now there are 2 short stacks! Wat do?

5) dlwillson: T G1 Y1 Dlwillson

6) wil: T G1 Y1 Wil

7) dlwillson: B Y2 Dlwillson

8) wil: Build Y2 Wil

9) dlwillson: D Y1 Dlwillson G2 Field

10) wil: D Y1 Wil G3 G3

11) dlwillson: B Y3 Field

12) wil: Build Y3 G3

13) dlwillson: D Y3 Field B3 Sky

14) wil: Discover Y2 Wil Y3 Y3

15) dlwillson: T Y2 R2 Dlwillson

16) wil: T G3 R3 Wil

17) dlwillson: B Y2 Field
	wil: ALL SYSTEMS ALERT STOP ENEMY ARMED AND BEEN LOCKED ON STOP IMMINENT DANGER TO ALL SECTORS STOP MOUNT DEFENSES OR AVOID AT ALL COSTS STOP

18) wil: M Y1 G3 Wil

19) dlwillson: M Y1 Field Sky
	wil: RETREAT REGROUP REBUILD TILL CRISIS AVERTED STOP

20) wil: T Y1 G1 Wil
	dlwillson: I'm giggling here.

21) dlwillson: Trade Y3 G3 Sky
	wil: You would,my fleet was in peril, and you chuckle.

22) wil: B G1 Wil

23) dlwillson: Build G1 Sky

24) wil: T G1 B1 Wil

25) dlwillson: Trade G1 R1 Sky

26) wil: B B1 Wil

27) dlwillson: Sacrifice G3 Sky
Build Y1 Field
Build Y3 Sky
Build R1 Sky

28) wil: M B1 Wil G3

29) dlwillson: S Y2 Field
M R1 Sky Wil
M R1 Sky Wil

30) wil: M Y3 G3 Wil
	dlwillson: Pretty sure I'm one short again, but we'll see.

31) dlwillson: S Y3 Sky
M Y1 Field Sky
M Y1 Sky Wil
M Y1 Sky Wil
C Wil Y
	wil: RETREAT, INFESTATION AT HOME

32) wil: B B2 G3
	dlwillson: I'm nearly bankrupt! I hope I had a plan, and that I remember it soon!

33) dlwillson: S G3 Dlwillson
B R1 Wil
B R2 Dlwillson
B R2 Dlwillson
C Wil R
	wil: These games are always so unique...

34) wil: B B2 G3
	dlwillson: I thought I had a better plan than that!
	dlwillson: Bear skins and stone knives.

35) dlwillson: T R2 Y2 Dlwillson
	wil: Lol, all so weird

36) wil: T B1 R1 Wil
	wil: You got this

37) dlwillson: S Y2 Dlwillson
D R2 Dlwillson Y2 Sol
M R2 Sol Wil

38) wil: Build R1 Wil
	dlwillson: We'll see.

I thought you would sac the y2 to stand up the last b2, then build a b3 on your next turn. I am still not sure who wins this.

39) dlwillson: Attack G1 Wil

40) wil: T B1 R1 G3
	dlwillson: Yuck. Should I have resigned, instead?
	dlwillson: I can't believe that we've been playing BH for however many years, and we've never come up with rules or protocol for this situation.

41) dlwillson: Sacrifice G1 Wil
Build R2 Wil
Catastrophe Wil R
	wil: What situation?
	wil: Oh the back and forth?
	wil: If I had moved blues in younkust needed tonturn blue...yeah wild end
	wil: Ties are so rare
	dlwillson: That game could have ended in an eternal tug-of-war over the green, but you invoked a ko rule on yourself that doesn't exist anywhere in the actual rules. I do the same, and I try to avoid the situation to begin with, but I wish there were an actual rule, or at least a formal protocol.
	dlwillson: I think you could have pulled ahead at "2018-08-14 11:23:47" if you had sacrificed your Y2 ship to discover the last B2 from the bank using any ship from the G3 system. I wouldn't have been able to swap to blue, and you would have been able to build a B3 on your next turn.



34351)
Variants: "Hard time"
Started: 2018.8.13, Ended: 2018.9.14
Participants: Trydnt (S), Ryzorrin (N)
Winner: Trydnt

1) Ryzorrin: Homeworld G1 B2 R3

2) Trydnt: Homeworld B3 Y2 G3

3) Ryzorrin: Build R1 Ryzorrin

4) Trydnt: Build G1 Trydnt

5) Ryzorrin: Trade R1 Y1 Ryzorrin

6) Trydnt: Build G1 Trydnt

7) Ryzorrin: Build Y1 Ryzorrin

8) Trydnt: Discover G1 Trydnt B1 B1

9) Ryzorrin: Build Y1 Ryzorrin

10) Trydnt: Build G2 B1

11) Ryzorrin: Discover Y1 Ryzorrin G3 Metropolis

12) Trydnt: Trade G2 Y2 B1

13) Ryzorrin: Trade Y1 B1 Ryzorrin

14) Trydnt: Build G2 B1

15) Ryzorrin: Discover B1 Ryzorrin G3 Gotham City

16) Trydnt: Sacrifice G3 Trydnt
Build G2 Trydnt
Build G2 B1
Build G3 Trydnt

17) Ryzorrin: Build B1 Gotham

18) Trydnt: Trade G2 B2 B1

19) Ryzorrin: Build Y1 Metropolis

20) Trydnt: Trade G2 R2 B1

21) Ryzorrin: Build Y2 Ryzorrin

22) Trydnt: Move B2 B1 Metropolis

23) Ryzorrin: Build Y3 Ryzorrin

24) Trydnt: Sacrifice R2 B1
Attack Y1 Metropolis
Attack Y1 Metropolis

25) Ryzorrin: Trade Y3 B3 Ryzorrin

26) Trydnt: Sacrifice G2 Trydnt
Build B2 Metropolis
Build Y3 B1

27) Ryzorrin: Move B3 Ryzorrin Metropolis

28) Trydnt: Build B3 Metropolis
Catastrophe Metropolis B

29) Ryzorrin: Move Y2 Ryzorrin Gotham

30) Trydnt: Trade Y2 R2 B1

31) Ryzorrin: Build Y2 Gotham

32) Trydnt: Build Y3 B1

33) Ryzorrin: Sacrifice Y2 Gotham
Discover B1 Gotham R1 Keystone
Move B1 Gotham Keystone

34) Trydnt: Build G2 Trydnt

35) Ryzorrin: Move Y2 Gotham Keystone

36) Trydnt: Discover Y1 Metropolis R1 R1

37) Ryzorrin: Move B1 Keystone Trydnt

38) Trydnt: Sacrifice G2 Trydnt
Build Y2 R1
Build Y3 Metropolis

39) Ryzorrin: Move Y2 Keystone Trydnt

40) Trydnt: Sacrifice R2 B1
Attack Y2 Trydnt
Attack B1 Trydnt

41) Ryzorrin: Build R1 Ryzorrin

42) Trydnt: Move Y2 Trydnt Keystone

43) Ryzorrin: Build R2 Ryzorrin

44) Trydnt: Build G2 B1

45) Ryzorrin: Trade R2 G2 Ryzorrin

46) Trydnt: Attack B1 Keystone

47) Ryzorrin: Move G2 Ryzorrin Metropolis

48) Trydnt: Trade G2 R2 B1

49) Ryzorrin: Trade R3 G3 Ryzorrin


50) Trydnt: Build R2 B1

51) Ryzorrin: Build R2 Ryzorrin

52) Trydnt: Sacrifice R2 B1
Attack G2 Metropolis
Pass

53) Ryzorrin: Move R1 Ryzorrin Metropolis

54) Trydnt: Sacrifice G3 Trydnt
Build G2 B1
Build G2 B1
Build G3 Trydnt

55) Ryzorrin: Attack Y1 Metropolis

56) Trydnt: Sacrifice R2 B1
Attack R1 Metropolis
Attack Y1 Metropolis

57) Ryzorrin: Build R2 Ryzorrin

58) Trydnt: Trade G2 R2 B1

59) Ryzorrin: Discover R2 Ryzorrin B3 Blank

60) Trydnt: Sacrifice G2 Metropolis
Build R3 B1
Build R3 Metropolis

61) Ryzorrin: Build R3 Ryzorrin

62) Trydnt: Move Y3 B1 Blank

63) Ryzorrin: Discover R3 Ryzorrin B3 Tacos

64) Trydnt: Move B1 Keystone Metropolis

65) Ryzorrin: Move R2 Ryzorrin Tacos

66) Trydnt: Sacrifice G2 B1
Build B2 Metropolis
Build B2 Metropolis

67) Ryzorrin: Trade R2 G2 Tacos

68) Trydnt: Sacrifice R2 B1
Attack R2 Blank
Pass

69) Ryzorrin: Build R2 Tacos

70) Trydnt: Build G2 B1

71) Ryzorrin: Sacrifice Y1 Ryzorrin
Move R3 Tacos Keystone

72) Trydnt: Move Y2 Keystone Blank

73) Ryzorrin: Build R2 Tacos

74) Trydnt: Move G1 B1 Blank

75) Ryzorrin: Build G2 Tacos

76) Trydnt: Sacrifice G2 B1
Build G2 Blank
Build Y1 B1



34464)
Variants: "Hard time"
Started: 2018.8.14, Ended: 2018.8.23
Participants: eliscinsky (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y2 G3 Dingo

2) eliscinsky: Homeworld B2 Y3 G3
	dlwillson: GLHF!

3) dlwillson: B G1 Dlwillson
	eliscinsky: U2!

4) eliscinsky: Build G1 Eliscinsky

5) dlwillson: Trade G1 Y1 Dlwillson

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) dlwillson: D Y1 Dlwillson G1 Field

8) eliscinsky: Build G1 Eliscinsky

9) dlwillson: Build G1 Dlwillson

10) eliscinsky: Trade G1 R1 Eliscinsky

11) dlwillson: T G1 R1 Dlwillson

12) eliscinsky: Build G1 Eliscinsky

13) dlwillson: B R1 Dlwillson

14) eliscinsky: Build R2 Eliscinsky
	dlwillson: You're playing perfectly! That was a hard choice!
	eliscinsky: Thanks. I lost all my games in the last tourney, but I try to learn something new about HWs every time I play. Learning the strategy is the hardest part, but there too I'm learning with each play/game.

15) dlwillson: Move R1 Dlwillson Field

16) eliscinsky: Move R2 Eliscinsky Field
	dlwillson: The only way to really learn this game is to get trounced a lot by stronger players. The branching factor is absurdly high, so you really have to memorize the sequences and forceful attacks that happen predictably, and learn to manage the bank. Managing the bank, setting up forceful attacks, and feeding your opponent vexing choices. That's this game. Huh, @Felix?

That probably doesn't work to tag him, but Felix and I spent many games where the first priority was to offer the other fellow an irritating situation. My favorite is top-banking a big that the my opponent doesn't have room to build, that I *do* have room to build. They want to build it, but they can't. They want to split up their ships, but by the time they split them, I'll already have an extra big, with which to irritate them. :-)

17) dlwillson: B R2 Field

18) eliscinsky: Move R1 Eliscinsky Field
Catastrophe Field R

19) dlwillson: B R1 Dlwillson

20) eliscinsky: Trade G1 R1 Eliscinsky

21) dlwillson: M R1 Dlwillson Field

22) eliscinsky: Build R2 Eliscinsky

23) dlwillson: B R2 Field

24) eliscinsky: Discover R1 Eliscinsky G1 Alpha

25) dlwillson: D R1 Field R3 Mars
	dlwillson: Aargh! I keep forgetting this is a small universe!

26) eliscinsky: Build R2 Alpha

27) dlwillson: Build R3 Dlwillson

28) eliscinsky: Build R3 Eliscinsky

29) dlwillson: T R3 B3 Dlwillson

30) eliscinsky: Move Y1 Eliscinsky Alpha

31) dlwillson: B R3 Field

32) eliscinsky: Build G1 Eliscinsky

33) dlwillson: Build G2 Dlwillson

34) eliscinsky: Trade G1 Y1 Eliscinsky

35) dlwillson: Build B1 Dlwillson

36) eliscinsky: Build G1 Eliscinsky

37) dlwillson: D G2 Dlwillson B1 Sea

38) eliscinsky: Trade G1 B1 Eliscinsky

39) dlwillson: B Y2 Field

40) eliscinsky: Move R3 Eliscinsky Sea

41) dlwillson: Build G1 Sea

42) eliscinsky: Attack G2 Sea

43) dlwillson: Build G2 Sea

44) eliscinsky: Attack G2 Sea

45) dlwillson: B G2 Sea
C Sea G

46) eliscinsky: Move B1 Eliscinsky Alpha
	dlwillson: I could've done that a lot better. Sorry.

47) dlwillson: M B3 Dlwillson Alpha

48) eliscinsky: Sacrifice Y1 Eliscinsky
Move R3 Sea Mars

49) dlwillson: S R3 Field
A R2 Alpha
A R1 Alpha
A Y1 Alpha

50) eliscinsky: Attack R1 Mars
	Felix: I'm late to the conversation, but I'm with David. I spent many games getting whipped by him (and Wil, TwoShort, Endo, etc.) before I was finally able to hold my own against *some* of those players. After a large number of games you do start to recognize certain attack patterns, but even then, one little oversight can quickly cost you the game, as just happened to me over here! http://superdupergames.org/main.html?page=play_homeworlds&num=34431
	dlwillson: I wish TwoShort would come back. I think I might finally be good enough to compete with him. He's the strongest player I've ever played against, but there are other, older players who are supposed to be stronger, like Wyons and somebody else. Is TeeTeeTee still playing? He plays like a machine. No mistakes. No room given.
	eliscinsky: Okay explain to me how that worked? I had more Pips on my shifts then your B3. And yet you were able to sacrifice an R3 and defeats all my ships? I don't get it. Call me a newbie but it just sounds wrong.

51) dlwillson: A B1 Alpha
	dlwillson: When I sacrificed my R3, I got three attacks to use anywhere. Pips don't matter, except to determine whether a ship can successfully attack another ship. A large ship can attack anything and can only be attacked by other large ships. So, I was able to attack three of your ships with three attacks, one attack each.

52) eliscinsky: Build R3 Eliscinsky
	eliscinsky: Thank you for the lesson. I continue to learn.  That's a good thing.

WHAK! "Thank you, sir. May I have another!"  quote from Animal House. :)

LOL.

53) dlwillson: S G3 Dlwillson
B Y1 Alpha
B Y2 Alpha
B Y3 Field

54) eliscinsky: Build G1 Eliscinsky
	dlwillson: Sacrifice plays and catastrophes, especially mid-turn catastrophes, can be very powerful.

55) dlwillson: Sacrifice Y3 Field
Move R1 Alpha Mars
Catastrophe Mars R
Move R2 Alpha Eliscinsky
Move R2 Field Eliscinsky
Catastrophe Eliscinsky R
	eliscinsky: Like cattle ... I feel like I'm being herded.  LOL
	eliscinsky: I really am enjoying this game.  I'm lasting much longer than in the past.
	dlwillson: Here's the biggest tip for your next game. The overall strategy: To win, you have to make your opponent lose. Constantly have a best plan in mind that ends with him or her losing and you winning. If you don't have that, you're probably playing to forestall losing, and eventually, that style of play usually loses. I'm entirely serious. It's very easy to spend the whole game thinking tactically, and wait for a winning strategy to appear. Don't do that.

*Always* be thinking, "If I do this, then this, then this, I win." It may seem obvious or trivial, but it's neither.

56) eliscinsky: Trade G1 R1 Eliscinsky
	eliscinsky: Yes, I see that NOW! LMAO!!!
But I'm learning so much.
Whimper, whimper ... crawling away.  haha!
Really having a great time! TY so much.

57) dlwillson: B B1 Alpha
	eliscinsky: I see my demise in 3, 2, 1

58) eliscinsky: Build G1 Eliscinsky

59) dlwillson: M B3 Alpha Eliscinsky

60) eliscinsky: Attack B3 Eliscinsky

61) dlwillson: Sacrifice Y2 Alpha
Move B1 Alpha Eliscinsky
Move B1 Alpha Eliscinsky
Catastrophe Eliscinsky B

62) eliscinsky: Discover G1 Eliscinsky R1 Rover

63) dlwillson: M Y1 Field Eliscinsky

64) eliscinsky: Attack Y1 Eliscinsky

65) dlwillson: S Y2 Field
M Y1 Alpha Eliscinsky
M Y1 Alpha Eliscinsky
C Eliscinsky Y
	eliscinsky: Well, it was a good game (for me) while it lasted.  I learned a lot.  Thank you for the lessons / hints / tips. :) 
LLAP
Good luck in the rest of the Tourney!
Never give up, never surrender! (Star Quest)
	eliscinsky: Looking forward to reviewing the final report!
	eliscinsky: Annihilation in ... 0! Ahhhhh!

LOL
	dlwillson: Good game! Thank you for chatting! I think that makes it more fun. What's LLAP?
	eliscinsky: Live Long And Prosper -> LLAP
(It's a Mr. Spock thing. Ya know Trekkies!) ;)
	dlwillson: Ah! You too! Thanks again for the game and the conversation!



34467)
Variants: "Hard time"
Started: 2018.8.15, Ended: 2018.8.28
Participants: random56 (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B2 G3

2) random56: Homeworld Y3 B1 G3
	dlwillson: Good luck and have fun!

3) dlwillson: B G1 Dlwillson

4) random56: Build G1 Random56

5) dlwillson: T G1 B1 Dlwillson

6) random56: Build G1 Random56

7) dlwillson: B B1 Dlwillson

8) random56: Trade G1 R1 Random56

9) dlwillson: Build G1 Dlwillson

10) random56: Discover G1 Random56 B2 Gold

11) dlwillson: D B1 Dlwillson G1 Field

12) random56: Build G2 Gold

13) dlwillson: S G3 Dlwillson
B B2 Field
B B3 Field
B B3 Dlwillson

14) random56: Build G2 Gold

15) dlwillson: T B3 Y3 Field



34461)
Variants: "Hard time"
Started: 2018.8.15, Ended: 2018.8.27
Participants: random56 (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3
	wil: Welcome to a tourney game!

2) random56: Homeworld Y3 B2 G3

3) wil: Build G1 Wil

4) random56: Build G1 Random56

5) wil: Trade G1 Y1 Wil

6) random56: Build G1 Random56

7) wil: Build Y1 Wil

8) random56: Trade G1 R1 Random56
	wil: I'm near dc....Where in the world are you from?
	random56: Arkansas, I am jealous of people that are close to DC because from what I hear the Looneys are super nice and are open to people seeing their work place

9) wil: Discover Y1 Wil G3 G3
	wil: They are very friendly folk.

10) random56: Discover R1 Random56 G1 Kite

11) wil: Build Y2 G3



34454)
Variants: "Hard time"
Started: 2018.8.15, Ended: 2018.8.28
Participants: random56 (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld B1 R2 G3

2) random56: Homeworld Y3 B1 G3

3) eliscinsky: Build G1 Eliscinsky

4) random56: Build G1 Random56

5) eliscinsky: Trade G1 Y1 Eliscinsky
	random56: Thanks, I did not see that it was my turn. 
	eliscinsky: NP, happens to everyone at some point. :)

6) random56: Build G1 Random56

7) eliscinsky: Build G1 Eliscinsky

8) random56: Trade G1 R1 Random56

9) eliscinsky: Discover G1 Eliscinsky B3 Alpha

10) random56: Discover R1 Random56 Y2 Home

11) eliscinsky: Build G1 Eliscinsky



34476)
Variants: "Hard time"
Started: 2018.8.16, Ended: 2018.8.21
Participants: speardane (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y2 B3 G3 Dlwillson

2) speardane: Homeworld Y1 B2 G3

3) dlwillson: B G1 Dlwillson

4) speardane: Build G1 Speardane
	dlwillson: Belated GL & HF!

5) dlwillson: T G1 Y1 Dlwillson
	speardane: Good luck!

6) speardane: Trade G3 R3 Speardane

7) dlwillson: B Y1 Dlwillson

8) speardane: Build G1 Speardane
	dlwillson: ?!?

9) dlwillson: Discover Y1 Dlwillson B1 Sea

10) speardane: Discover G1 Speardane B3 Delos

11) dlwillson: Build G1 Dlwillson

12) speardane: Build G2 Delos

13) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Sea
Build Y2 Sea
Build Y3 Dlwillson

14) speardane: Trade G1 R1 Delos

15) dlwillson: T Y3 R3 Dlwillson

16) speardane: Build R1 Delos

17) dlwillson: Build Y3 Dlwillson

18) speardane: Sacrifice R1 Delos
Pass

19) dlwillson: Discover Y3 Dlwillson G1 Field

20) speardane: Build G2 Speardane

21) dlwillson: Build Y3 Field

22) speardane: Discover G1 Speardane Y3 Lebling

23) dlwillson: M Y3 Field Delos

24) speardane: Build G2 Delos

25) dlwillson: S R3 Dlwillson
A G2 Delos
A G2 Delos
A R1 Delos

26) speardane: Build G3 Speardane

27) dlwillson: S Y2 Sea
M G2 Delos Speardane
M G2 Delos Speardane
C Speardane G

28) speardane: Move G1 Lebling Speardane

29) dlwillson: M Y3 Field Delos

30) speardane: Build R1 Speardane

31) dlwillson: T Y3 G3 Delos

32) speardane: Trade R3 Y3 Speardane

33) dlwillson: Sacrifice Y2 Sea
Move Y3 Delos Speardane
Move Y1 Sea Delos

34) speardane: Attack Y3 Speardane

35) dlwillson: M Y1 Delos Speardane
C Speardane Y

36) speardane: Trade R1 Y1 Speardane

37) dlwillson: S Y1 Dlwillson
M G3 Delos Speardane

38) speardane: Trade Y1 R1 Speardane

39) dlwillson: S R1 Delos
A R1 Speardane

40) speardane: Pass

41) dlwillson: A G1 Speardane

	speardane: Good game!
	dlwillson: Good game! Thank you!


34478)
Variants: "Hard time"
Started: 2018.8.17, Ended: 2018.8.26
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: Homeworld B3 Y2 G3

2) Trydnt: Homeworld G2 B1 Y3

3) wil: Build G1 Wil

4) Trydnt: Build Y1 Trydnt
	wil: no short uni!  lol, let the games begin...I'll go record we started.

5) wil: Build G1 Wil

6) Trydnt: Trade Y1 B1 Trydnt
	Trydnt: haha no I just saw blue and yellow and thought you were up to your old tricks (h b2 y1 g3) I think this will be an interesting game

7) wil: Trade G1 B1 Wil

8) Trydnt: Build B2 Trydnt

9) wil: Build B2 Wil

10) Trydnt: Trade B1 R1 Trydnt

11) wil: Build G1 Wil

12) Trydnt: Build R1 Trydnt

13) wil: Discover G1 Wil Y1 Y1

14) Trydnt: Build B1 Trydnt

15) wil: Move B2 Wil Y1

16) Trydnt: Build R1 Trydnt

17) wil: Build B2 Y1

18) Trydnt: Discover B1 Trydnt G3 G3

19) wil: Move B2 Y1 G3

20) Trydnt: Build B3 Trydnt

21) wil: Build B3 Y1

22) Trydnt: Build Y1 Trydnt

23) wil: Trade B2 R2 G3

24) Trydnt: Move B3 Trydnt G3

25) wil: Move B2 Y1 G3

26) Trydnt: Trade B3 Y3 G3

27) wil: Build R2 G3

28) Trydnt: Move R1 Trydnt G3

29) wil: Trade B2 Y2 G3

30) Trydnt: Build R2 G3
Catastrophe G3 R

31) wil: Trade G1 R1 Wil

32) Trydnt: Sacrifice R1 Trydnt
Attack Y2 G3

33) wil: Build B2 Y1

34) Trydnt: Build B2 G3

35) wil: Trade B2 Y2 Y1

36) Trydnt: Discover B2 G3 G1 G1

37) wil: Discover Y2 Y1 G3 Gee3

38) Trydnt: Move Y2 G3 G1

39) wil: Build G1 Wil

40) Trydnt: Trade B2 G2 Trydnt

41) wil: Trade B3 Y3 Y1

42) Trydnt: Build B2 G1

43) wil: Move B1 Wil G1

44) Trydnt: Trade B2 R2 G1

45) wil: S G3 Wil
Build G2 Y1
Build G3 Wil
Build B2 G1

46) Trydnt: Sacrifice R2 G1
Attack B2 G1
Attack B1 G1

47) wil: Sacrifice G3 Wil
Build G3 Wil
Build R1 Wil
Build R2 Wil

48) Trydnt: Build Y1 G3

49) wil: Move R1 Wil Y1

50) Trydnt: Trade B2 R2 G1

51) wil: Move R1 Wil G1

52) Trydnt: Sacrifice R2 G1
Attack R1 G1
Pass

53) wil: Build R2 Y1

54) Trydnt: Sacrifice G2 Trydnt
Build R2 Trydnt
Build R3 G1

55) wil: Discover R1 Y1 B3 B3

56) Trydnt: Discover Y1 Trydnt R3 R3

57) wil: Sacrifice G3 Wil
Build G2 Y1
Build G3 Wil
Build R3 B3

58) Trydnt: Move R1 Trydnt G3

59) wil: Move G1 Y1 G3

60) Trydnt: Sacrifice Y2 G1
Move Y1 G3 Y1
Move Y1 R3 Y1
Catastrophe Y1 Y

61) wil: Sacrifice G3 Wil
Build G2 G3
Build G2 G3
Build G3 Wil
Catastrophe G3 G

62) Trydnt: Trade R3 Y3 G1

63) wil: T R3 Y3 B3

64) Trydnt: Build Y1 G1

65) wil: Trade G1 B1 Wil

66) Trydnt: Build Y1 Trydnt

67) wil: Discover B1 Wil G1 Gee1
	wil: Let's clear the board!


68) Trydnt: Discover Y1 G1 G3 G3

69) wil: B G1 Wil

70) Trydnt: Move B2 G1 G3

71) wil: B G2 Wil

72) Trydnt: Build B2 G1

73) wil: D G2 Wil Y1 Y1

74) Trydnt: Build Y2 G1
	wil: He's back!

75) wil: S G3 Wil
B G2 Wil
B G3 Wil
B R1 B3

76) Trydnt: Move Y3 G1 Gee3

77) wil: Sacrifice G3 Wil
Build G3 Wil
Build B2 Gee1
Build B3 Gee1

78) Trydnt: Move B2 G3 Gee1
Catastrophe Gee1 B

79) wil: Discover Y2 Gee3 G1 Gee1

80) Trydnt: Build B1 G1

81) wil: S G3 Wil
B G3 Wil
B R2 B3
B R3 Wil

82) Trydnt: Build R3 G1

83) wil: S Y2 Gee1
M R1 B3 G1
M R1 B3 G1
C G1 R

84) Trydnt: Build Y2 G3

85) wil: M R3 Wil G1

86) Trydnt: Sacrifice Y3 Gee3
Move B2 G1 Wil
Move B1 G1 Wil
Move B1 G1 Wil
Catastrophe Wil B

87) wil: Attack Y2 G1

88) Trydnt: Sacrifice Y3 Trydnt
Move Y1 G3 Wil
Move Y2 G3 Wil
Discover Y1 Trydnt B3 Be3

89) wil: S Y3 B3
M R3 G1 B3
M R3 B3 Trydnt
M Y2 G1 Wil
C Wil Y

	Trydnt: You had me worried when we blew everything up and started over haha well played!


34480)
Variants: "Hard time"
Started: 2018.8.17, Ended: 2018.9.3
Participants: Trydnt (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H R1 B3 G3 Dlwillson

2) Trydnt: Homeworld B2 Y1 G3

3) dlwillson: Build G1 Dlwillson

4) Trydnt: Build G1 Trydnt
	dlwillson: Good luck! Have fun!
	Trydnt: same to you! 

5) dlwillson: T G1 Y1 Dlwillson

6) Trydnt: Trade G1 Y1 Trydnt

7) dlwillson: Build Y2 Dlwillson

8) Trydnt: Build Y2 Trydnt

9) dlwillson: D Y1 Dlwillson B2 Sea

10) Trydnt: Discover Y1 Trydnt G3 G3

11) dlwillson: B G1 Dlwillson

12) Trydnt: Build G1 Trydnt

13) dlwillson: M G1 Dlwillson Sea

14) Trydnt: Trade G1 R1 Trydnt

15) dlwillson: B G1 Sea

16) Trydnt: Build R1 Trydnt

17) dlwillson: B Y2 Dlwillson

18) Trydnt: Build Y3 G3

19) dlwillson: B Y3 Sea

20) Trydnt: Discover Y1 G3 G2 G2

21) dlwillson: Trade Y2 R2 Dlwillson

22) Trydnt: Build R2 Trydnt

23) dlwillson: T Y3 R3 Sea

24) Trydnt: Move R1 Trydnt G3

25) dlwillson: B G1 Dlwillson

26) Trydnt: Build G2 Trydnt

27) dlwillson: Sacrifice G3 Dlwillson
Build G2 Sea
Build Y2 Sea
Build Y3 Dlwillson

28) Trydnt: Build Y3 G2

29) dlwillson: B G3 Dlwillson

30) Trydnt: Trade R2 B2 Trydnt

31) dlwillson: D G2 Sea B3 Sky

32) Trydnt: Build R2 G3

33) dlwillson: S Y3 Dlwillson
M G1 Sea Sky
M G2 Sky Trydnt
M G1 Sky Trydnt
C Trydnt G

34) Trydnt: Build Y3 G3

35) dlwillson: S Y2 Sea
M R3 Sea G3
M R3 G3 Trydnt

36) Trydnt: Sacrifice Y3 G3
Move R1 G3 Trydnt
Move R2 G3 Trydnt
Catastrophe Trydnt R
Discover Y2 Trydnt B3 B3

37) dlwillson: Build G1 Sea

38) Trydnt: Trade B2 R2 Trydnt

39) dlwillson: S G3 Dlwillson
B G2 Sea
B G2 Dlwillson
B G3 Dlwillson

40) Trydnt: Move Y3 G3 Trydnt

41) dlwillson: B Y2 Sea

42) Trydnt: Trade Y3 G3 Trydnt

43) dlwillson: Discover G2 Sea Y3 Sol

44) Trydnt: Build G3 Trydnt

45) dlwillson: M G2 Sol Trydnt

46) Trydnt: Sacrifice Y3 G2
Move G3 Trydnt B3
Move G3 B3 G2
Move G3 G2 Dlwillson
Catastrophe Dlwillson G

47) dlwillson: Sacrifice R2 Dlwillson
Attack R2 Trydnt
Pass

48) Trydnt: Trade Y2 R2 B3

49) dlwillson: B G1 Trydnt

50) Trydnt: Trade G3 B3 Trydnt

51) dlwillson: T R2 B2 Trydnt

52) Trydnt: Sacrifice R2 B3
Attack B2 Trydnt
Attack G1 Trydnt

53) dlwillson: S G2 Trydnt
B Y2 Sea
B Y3 Dlwillson

54) Trydnt: Build Y3 G2

55) dlwillson: T Y3 G3 Dlwillson

56) Trydnt: Discover Y1 G2 G3 G3

57) dlwillson: T Y1 B1 Sea
	dlwillson: Well played! I thought I had you.

58) Trydnt: Trade B3 G3 Trydnt

59) dlwillson: D Y2 Sea B3 Sky

60) Trydnt: Move B2 Trydnt G3

61) dlwillson: B G2 Dlwillson

62) Trydnt: Discover G1 Trydnt Y3 Y3

63) dlwillson: T G1 R1 Sea

64) Trydnt: Trade Y1 R1 G3

65) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Sea
Build Y1 Sky
Build Y3 Dlwillson

66) Trydnt: Build R2 G3

67) dlwillson: T Y3 G3 Dlwillson

68) Trydnt: Build B1 G3

69) dlwillson: T Y2 G2 Sky

70) Trydnt: Trade R2 Y2 G3

71) dlwillson: S G3 Dlwillson
B G1 Sky
B Y3 Sky
B G3 Dlwillson

72) Trydnt: Build R2 G3

73) dlwillson: D G1 Sea B3 Alsosky

74) Trydnt: Move B1 G3 G2

75) dlwillson: Sacrifice Y3 Sky
Move G1 Sky Trydnt
Move G2 Sky Trydnt
Move G1 Alsosky Trydnt
Catastrophe Trydnt G

	dlwillson: Good game! Thank you!
	Trydnt: Ugh bluebirded. Terrible way to go out. Good game!


34343)
Variants: "Unrated, Hard time"
Started: 2018.8.19, Ended: 2018.10.14
Participants: mneme (S), dragon76n (N)
Winner: mneme

1) dragon76n: Homeworld Y1 B3 G3

2) mneme: Homeworld B1 G3 Y3

3) dragon76n: Build G1 Dragon76n

4) mneme: Build Y1 Mneme

5) dragon76n: Trade G1 Y1 Dragon76n

6) mneme: Build Y2 Mneme

7) dragon76n: Build G1 Dragon76n
	mneme: I can't tell quite from the setup -- is this a tournament game?

	dragon76n: Tournament game? no...

8) mneme: Discover Y1 Mneme B2 Caliope
	mneme: I didn't think so, but just wanted to make sure; I'm in like 2 tournament games right now, so... :) 
Good luck & have fun!


9) dragon76n: Trade G1 R1 Dragon76n
	mneme: Just to make sure: Remember that this is a small universe game.
	dragon76n: Ok. I haven't played any tournament games. What is different about it?

10) mneme: Trade Y2 R2 Mneme

11) dragon76n: Move Y1 Dragon76n Caliope
	mneme: There's an annual tournament running now on a ladder.  It's run external to SDG, but using sdg for the games.

https://docs.google.com/forms/d/e/1FAIpQLScy1bEYjqRjH_ghRgqyrt2Pp5Y1E-XleIZPiPyHWsj1v-0Rkw/viewform

It's technically still open if you want to get into it -- it's running as a round robin, so you challenge people in it in games until you're in as many games as you want to, and the winner is the one with the best record overall.

12) mneme: Move R2 Mneme Caliope
	dragon76n: Thanks for the info about the tournament. 

13) dragon76n: D Y1 Caliope B1 Bluone

14) mneme: Build Y2 Mneme

15) dragon76n: T Y1 G1 Bluone

16) mneme: Build Y1 Mneme

17) dragon76n: B G1 Bluone

18) mneme: Trade Y3 G3 Mneme

19) dragon76n: T G1 B1 Bluone

20) mneme: Move R2 Caliope Bluone

21) dragon76n: S B1 Bluone
T G1 R1 Bluone

22) mneme: Attack R1 Bluone

23) dragon76n: B G1 Dragon76n

24) mneme: Sacrifice G3 Mneme
Build Y2 Caliope
Build Y2 Caliope
Build Y3 Mneme

25) dragon76n: Discover G1 Dragon76n R2 Redtwo

26) mneme: Trade Y3 G3 Mneme
	dragon76n: Feels like I'm way behind in this one... 
	mneme: some of my early moves were pretty brutal.  

27) dragon76n: B G1 Dragon76n

28) mneme: Move Y2 Caliope Bluone

29) dragon76n: Build G1 Redtwo

30) mneme: Sacrifice G3 Mneme
Build Y3 Mneme
Build Y3 Bluone
Build Y3 Caliope

31) dragon76n: Discover G1 Dragon76n R2 Reddup
	dragon76n: Uh oh

32) mneme: Trade Y3 G3 Caliope

33) dragon76n: B G2 Dragon76n

34) mneme: Build Y3 Caliope

35) dragon76n: S G3 Dragon76n
B G2 Reddup
B G2 Redtwo
B G3 Dragon76n

36) mneme: Sacrifice Y2 Bluone
Move Y3 Caliope Dragon76n
Move G3 Caliope Dragon76n

37) dragon76n: Sacrifice G3 Dragon76n
Build G3 Dragon76n
Build R1 Dragon76n
Build R3 Dragon76n

38) mneme: Sacrifice R2 Bluone
Attack R3 Dragon76n
Attack G3 Dragon76n

39) dragon76n: Sacrifice G2 Redtwo
Build R2 Dragon76n
Catastrophe Dragon76n R
Build G2 Dragon76n

40) mneme: Catastrophe Dragon76n G
Trade Y3 G3 Mneme

	mneme: Good game!



34468)
Variants: "Hard time"
Started: 2018.8.19, Ended: 2018.9.1
Participants: dlwillson (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B2 Y3 G3

2) dlwillson: H Y3 B1 G3

3) ajo: Build G1 Ajo

4) dlwillson: B G1 Dlwillson

5) ajo: Trade G1 B1 Ajo

6) dlwillson: T G1 B1 Dlwillson

7) ajo: Discover B1 Ajo G1 Alpha

8) dlwillson: Build B2 Dlwillson

9) ajo: Build B2 Alpha
	dlwillson: Good luck and have fun!
	ajo: You too!

10) dlwillson: D B1 Dlwillson G2 Field

11) ajo: Build B3 Alpha

12) dlwillson: B B3 Field

13) ajo: Trade B2 Y2 Alpha

14) dlwillson: T B1 R1 Field

15) ajo: Build G1 Ajo

16) dlwillson: Build R1 Field

17) ajo: Trade B1 R1 Alpha

18) dlwillson: Trade R1 Y1 Field

19) ajo: Discover G1 Ajo B1 Beta

20) dlwillson: T B2 R2 Dlwillson

21) ajo: Build G1 Ajo

22) dlwillson: B G2 Dlwillson

23) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G3 Ajo
Build G3 Beta

24) dlwillson: S G3 Dlwillson
B Y1 Field
B B1 Field
B G3 Dlwillson

25) ajo: Trade G2 R2 Ajo

26) dlwillson: T G2 Y2 Dlwillson

27) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G2 Beta
Build G3 Ajo

28) dlwillson: Build R1 Field

29) ajo: Sacrifice G3 Beta
Build G3 Beta
Build B2 Alpha
Build Y1 Alpha

30) dlwillson: D R1 Field B3 Sky

31) ajo: Sacrifice Y2 Alpha
Move G3 Beta Sky
Discover G2 Beta B2 Gamma

32) dlwillson: S Y1 Field
D R1 Sky Y1 Sol

33) ajo: Discover B2 Alpha Y2 Delta

34) dlwillson: M B3 Field Beta

35) ajo: Sacrifice G1 Beta
Build G1 Gamma

36) dlwillson: Sacrifice Y1 Field
Move B3 Beta Gamma

37) ajo: Sacrifice G2 Gamma
Build G2 Sky
Build B1 Delta

38) dlwillson: S G3 Dlwillson
B R2 Field
B R3 Dlwillson
B R3 Sol

39) ajo: Sacrifice G1 Gamma
Build R3 Alpha

40) dlwillson: Trade B3 G3 Gamma

41) ajo: Sacrifice G2 Ajo
Build B3 Alpha
Build Y1 Alpha

42) dlwillson: B G1 Gamma

43) ajo: Trade G3 Y3 Sky

44) dlwillson: T R2 Y2 Field

45) ajo: Move B3 Alpha Field

46) dlwillson: S Y2 Field
M G3 Gamma Sol
M G1 Gamma Sol

47) ajo: Sacrifice Y3 Sky
Move G2 Sky Sol
Move G1 Ajo Sol
Move R3 Alpha Delta
Catastrophe Sol Green

48) dlwillson: T R2 G2 Dlwillson

49) ajo: Build R2 Ajo

50) dlwillson: S G2 Dlwillson
B B2 Field
B B3 Field
C Field B

51) ajo: Build Y2 Alpha

52) dlwillson: T Y2 G2 Dlwillson

53) ajo: Move Y2 Alpha Field

54) dlwillson: B R2 Dlwillson

55) ajo: Sacrifice R1 Alpha
Attack R1 Field

56) dlwillson: M R3 Sol Field

57) ajo: Sacrifice Y2 Field
Move R1 Field Dlwillson
Move R3 Delta Dlwillson
Catastrophe Dlwillson Red

58) dlwillson: Build G1 Dlwillson

59) ajo: Build Y2 Alpha

60) dlwillson: T G2 Y2 Dlwillson

61) ajo: Sacrifice Y2 Alpha
Move B3 Alpha Delta
Move B3 Delta Dlwillson

62) dlwillson: B Y2 Dlwillson

63) ajo: Sacrifice R2 Ajo
Attack Y2 Dlwillson
Attack Y2 Dlwillson

	dlwillson: Good game! Well played! I should have resigned a couple moves ago, but I was hoping you'd make a mistake.
	ajo: Good game. :)


34487)
Variants: "Hard time"
Started: 2018.8.19, Ended: 2018.9.13
Participants: eliscinsky (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) eliscinsky: Homeworld R1 B2 G3

3) Draw5PlayAll: Homeworld B3 R2 G3

4) eliscinsky: Build G1 Eliscinsky

5) Draw5PlayAll: Build G1 Draw5playall

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) eliscinsky: Build G1 Eliscinsky

9) Draw5PlayAll: Build G1 Draw5playall

10) eliscinsky: Trade G1 R1 Eliscinsky

11) Draw5PlayAll: Trade G1 R1 Draw5playall

12) eliscinsky: Build G1 Eliscinsky

13) Draw5PlayAll: Build R2 Draw5playall

14) eliscinsky: T G1 B1 Eliscinsky

15) Draw5PlayAll: Discover R2 Draw5playall G1 Epa

16) eliscinsky: D R1 Eliscinsky G3 Doe

17) Draw5PlayAll: Build G1 Draw5playall

18) eliscinsky: Build B1 Eliscinsky
	Draw5PlayAll: Next blue system: NAFTA?

19) Draw5PlayAll: Trade G1 B1 Draw5playall
	eliscinsky: Sure, that would be appropriate.  Then red star NSA.  haha!

Not sure what the yellow star would be.
	eliscinsky: Oh yeah, DOT for yellow.

20) eliscinsky: Build R2 Doe

21) Draw5PlayAll: Build R3 Epa

22) eliscinsky: Move B1 Eliscinsky Doe

23) Draw5PlayAll: Move B1 Draw5playall Epa

24) eliscinsky: Sacrifice Y1 Eliscinsky
Discover R2 Doe Y1 Dot

25) Draw5PlayAll: Build R3 Epa

26) eliscinsky: Trade B1 Y1 Eliscinsky

27) Draw5PlayAll: Build Y2 Draw5playall

28) eliscinsky: B R3 Doe

29) Draw5PlayAll: Trade R3 Y3 Epa

30) eliscinsky: T R3 Y3 Doe

31) Draw5PlayAll: Trade R2 B2 Epa
	Draw5PlayAll: Yellow should be NASA and FTA
	Draw5PlayAll: Red should be DoD or.... not sure
	eliscinsky: Yeah, I like those.
	eliscinsky: I choose Department of Transportation. 
	eliscinsky: I choose Department of Transportation. 

32) eliscinsky: S Y3 Doe
M R1 Doe Dot
M R1 Dot Draw5playall
M R2 Dot Draw5playall
C Draw5playall Red

33) Draw5PlayAll: Move Y3 Epa Doe

34) eliscinsky: T B1 Y1 Doe

35) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move G3 Draw5playall Eliscinsky
Move Y3 Doe Eliscinsky

36) eliscinsky: M Y1 Doe Eliscinsky

37) Draw5PlayAll: Sacrifice R3 Epa
Attack G3S Eliscinsky
Attack Y1S Eliscinsky
Attack Y1S Eliscinsky

	Draw5PlayAll: Good try
	eliscinsky: Thanks for the game. Good luck in the tourney!
	Draw5PlayAll: Wait was this a tournament game?
	Babamots: Yes, this game was reported as being part of the tournament.


34489)
Variants: "Hard time"
Started: 2018.8.20, Ended: 2018.10.1
Participants: speardane (S), DodoBirb (N)
Winner: speardane

1) DodoBirb: Homeworld B1 R3 G3

2) speardane: Homeworld R2 B3 G3

3) DodoBirb: Build G1 Dodobirb

4) speardane: Build G1 Speardane

5) DodoBirb: Trade G1 Y1 Dodobirb

6) speardane: Trade G3 Y3 Speardane

7) DodoBirb: Build Y1 Dodobirb

8) speardane: Build G1 Speardane

9) DodoBirb: Discover Y1 Dodobirb G2 Goat

10) speardane: Discover G1 Speardane B1 Delos

11) DodoBirb: Trade Y1 B1 Dodobirb

12) speardane: Build Y1 Speardane

13) DodoBirb: Build Y1 Goat

14) speardane: Move Y1 Speardane Delos

15) DodoBirb: Discover Y1 Goat G1 Farm

16) speardane: Build G2 Delos

17) DodoBirb: Build G2 Dodobirb

18) speardane: Sacrifice G2 Delos
Build G2 Speardane
Build G3 Speardane

19) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build Y2 Farm
Build Y2 Goat

20) speardane: Sacrifice G3 Speardane
Build Y2 Delos
Build Y3 Delos
Build G3 Speardane

21) DodoBirb: Move Y1 Goat Delos
Catastrophe Delos Y

22) speardane: Trade G3 R3 Speardane

23) DodoBirb: Trade G3 R3 Dodobirb

24) speardane: Move R3 Speardane Farm

25) DodoBirb: Build G3 Dodobirb

26) speardane: Attack Y2 Farm

27) DodoBirb: Trade G3 Y3 Dodobirb

28) speardane: Sacrifice G2 Speardane
Build G2 Delos
Build R1 Farm

29) DodoBirb: Move R3 Dodobirb Goat

30) speardane: Trade G1 Y1 Delos

31) DodoBirb: Build B2 Dodobirb

32) speardane: Build Y1 Delos

33) DodoBirb: Trade B2 R2 Dodobirb

34) speardane: Trade Y1 R1 Delos

35) DodoBirb: Move B1 Dodobirb Goat

36) speardane: Build Y1 Speardane

37) DodoBirb: Build B2 Goat

38) speardane: Build Y2 Delos

39) DodoBirb: Build Y3 Dodobirb

40) speardane: Discover Y1 Speardane G1 Lebling

41) DodoBirb: Discover B1 Goat G3 Middle

42) speardane: Build G3 Speardane

43) DodoBirb: Build G3 Dodobirb

44) speardane: Move Y2 Delos Middle

45) DodoBirb: Build B2 Middle

46) speardane: Sacrifice R1 Farm
Attack B2 Middle

47) DodoBirb: Sacrifice G2 Dodobirb
Build B2 Middle
Build B3 Middle
Catastrophe Middle B

48) speardane: Sacrifice G3 Speardane
Build R1 Delos
Build G2 Speardane
Build G3 Delos

49) DodoBirb: Build B1 Goat

50) speardane: Sacrifice G3 Delos
Build R1 Farm
Build R2 Delos
Build G3 Speardane

51) DodoBirb: Build B2 Goat

52) speardane: Trade G2 B2 Speardane

53) DodoBirb: Move B2 Goat Dodobirb

54) speardane: Sacrifice B2 Speardane
Trade R3 B3 Farm
Trade Y2 B2 Middle

55) DodoBirb: Build R3 Goat

56) speardane: Sacrifice G3 Speardane
Build G2 Speardane
Build G3 Speardane
Build B3 Middle

57) DodoBirb: Build Y2 Goat

58) speardane: Sacrifice Y2 Farm
Move R1 Delos Goat
Move R1 Delos Goat
Catastrophe Goat Red

59) DodoBirb: Move R2 Dodobirb Goat

60) speardane: Sacrifice Y1 Lebling
Move B3 Middle Goat

61) DodoBirb: Sacrifice Y2 Goat
Discover Y2 Goat G1 Newgoat
Move R2 Goat Newgoat

62) speardane: Move G3 Speardane Newgoat

63) DodoBirb: Discover Y3 Dodobirb Y2 Moveout

64) speardane: Sacrifice R2 Delos
Attack R2 Newgoat
Attack Y2 Newgoat

65) DodoBirb: Trade B2 R2 Dodobirb

66) speardane: Attack Y1 Farm

67) DodoBirb: Move Y3 Moveout Delos

68) speardane: Sacrifice G3 Newgoat
Build Y1 Delos
Build Y2 Delos
Build G3 Delos
Catastrophe Delos Yellow

69) DodoBirb: Build Y1 Dodobirb

70) speardane: Sacrifice G3 Delos
Build G3 Delos
Build Y1 Speardane
Build Y2 Newgoat

71) DodoBirb: Build B2 Goat
Catastrophe Goat B

72) speardane: Sacrifice Y2 Newgoat
Discover Y1 Speardane B1 Lebling
Move G1 Speardane Lebling

73) DodoBirb: Trade R2 B2 Dodobirb

74) speardane: Sacrifice G3 Delos
Build G2 Delos
Build Y2 Speardane
Build G3 Lebling

75) DodoBirb: Discover Y3 Dodobirb R2 Red

76) speardane: Sacrifice G3 Lebling
Build Y2 Farm
Build G3 Speardane
Build Y3 Lebling

	Draw5PlayAll: Time forfeit?
	DodoBirb: No, I forfeited by choice. I felt like I made too many mistakes to comeback. I decided that I would just take what I learned and use it in a different match.


34440)
Variants: "Hard time"
Started: 2018.8.20, Ended: 2018.8.26
Participants: zeder (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: Hey zeder! I didn't hear back from you by email or PM, so I'm still wondering if you want to be in the tournament. Does this game mean yes?

2) zeder: Homeworld Y1 B2 G3

3) Babamots: Build G1 Babamots
	zeder: Yes please
	Babamots: Great! You're back on the list. Good luck!

4) zeder: Build G1 Zeder

5) Babamots: Trade G1 Y1 Babamots

	Babamots: Looks like you've timed out of all your tournament games. If you still want to be in the tournament, let me know. I bet your opponents (including me) would be willing to forget these partial games and start over.


34455)
Variants: "Hard time"
Started: 2018.8.20, Ended: 2018.8.26
Participants: dlwillson (S), zeder (N)
Winner: dlwillson

1) zeder: Homeworld Y1 B2 G3

2) dlwillson: H B3 Y1 G3

3) zeder: Build G1 Zeder

4) dlwillson: B G1 Dlwillson



34457)
Variants: "Hard time"
Started: 2018.8.20, Ended: 2018.8.26
Participants: zeder (S), speardane (N)
Winner: speardane

1) speardane: Homeworld Y2 G3 B3

2) zeder: Homeworld B2 Y3 G3

3) speardane: Build B1 Speardane

4) zeder: Build G1 Zeder

5) speardane: Trade B1 R1 Speardane



34469)
Variants: "Hard time"
Started: 2018.8.22, Ended: 2018.9.2
Participants: dlwillson (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3

2) dlwillson: H Y2 B3 G3
	Babamots: For the record, this is for the tournament. Good luck!

3) Babamots: Build G1 Babamots
	dlwillson: Good luck to you, too, and have fun!

4) dlwillson: Build G1 Dlwillson

5) Babamots: Trade G1 Y1 Babamots

6) dlwillson: Trade G1 R1 Dlwillson

7) Babamots: Build Y1 Babamots

8) dlwillson: B R1 Dlwillson

9) Babamots: Build Y1 Babamots

10) dlwillson: B R2 Dlwillson

11) Babamots: Discover Y1 Babamots G3 Orion

12) dlwillson: T R2 Y2 Dlwillson

13) Babamots: Sacrifice G3 Babamots
Build Y2 Orion
Build Y3 Orion
Build Y3 Babamots

14) dlwillson: Discover Y2 Dlwillson G1 Field

15) Babamots: Move Y1 Orion Field

16) dlwillson: M R1 Dlwillson Field

17) Babamots: Build Y3 Field

18) dlwillson: B G1 Dlwillson

19) Babamots: Discover Y1 Field B3 Bolarus
	Babamots: Having only yellow is going to become a problem for me at some point. I'll have to see to that.

20) dlwillson: S G3 Dlwillson
B R2 Field
B R2 Field
B R2 Dlwillson

21) Babamots: Trade Y3 R3 Babamots

22) dlwillson: Build R3 Dlwillson

23) Babamots: Sacrifice R3 Babamots
Attack Y2 Field
Attack R2 Field
Attack R2 Field

24) dlwillson: B R3 Field
C Field R

25) Babamots: Build Y3 Orion

26) dlwillson: M R2 Dlwillson Field

27) Babamots: Move Y2 Field Bolarus

28) dlwillson: B R1 Field
	Babamots: If you surrender now, I'll spare your soldiers' lives :-P

29) Babamots: Trade Y2 G2 Bolarus
	dlwillson: You only have triple my forces! Anything could happen!

30) dlwillson: B R2 Dlwillson

31) Babamots: Build Y2 Bolarus

32) dlwillson: D R2 Dlwillson B1 Sea

33) Babamots: Build G1 Bolarus

34) dlwillson: B R2 Dlwillson

35) Babamots: Trade G2 B2 Bolarus

36) dlwillson: B R3 Field

37) Babamots: Discover Y3 Field B3 Andoria

38) dlwillson: M R1 Dlwillson Sea

39) Babamots: Build B1 Bolarus

40) dlwillson: B R3 Dlwillson

41) Babamots: Discover B2 Bolarus G2 Romulus

42) dlwillson: Trade R3 G3 Dlwillson

43) Babamots: Discover Y1 Babamots R3 Nausicaa

44) dlwillson: Trade G1 B1 Dlwillson
	Babamots: Well, I've counted that it could take me up to 22 moves (the same as the whole game to this point!), but I don't think you can stop me from winning now. That r3 you gave me makes it much easier, I'm afraid.

45) Babamots: Build B2 Romulus
	dlwillson: Wait a couple moves, and you may have another.

46) dlwillson: Build G1 Dlwillson
	Babamots: Thanks, but I shouldn't need it.

47) Babamots: Move Y2 Bolarus Romulus
	dlwillson: Very good. I'll keep myself busy while you finish beating me. This particular strategy, I should not lose to, any more, given the number of times TwoShort either beat me with it. <sigh> I'm a slow learner.
	dlwillson: And a quick forgetter.

48) dlwillson: M G1 Dlwillson Sea
	Babamots: When you say "this strategy," do you mean "hogging the yellow?"

49) Babamots: Discover B1 Bolarus G2 Cardassia

50) dlwillson: M B1 Dlwillson Field

51) Babamots: Build G2 Bolarus

52) dlwillson: B G3 Sea

53) Babamots: Move G1 Bolarus Cardassia

54) dlwillson: Pass

55) Babamots: Move Y1 Bolarus Cardassia

56) dlwillson: Pass

57) Babamots: Sacrifice G2 Bolarus
Build G2 Cardassia
Build B3 Cardassia
	Babamots: This will take a while. We're only in step 2 of my 10-step plan.
	dlwillson: Take your time.

58) dlwillson: Pass

59) Babamots: Move B2 Romulus Nausicaa

60) dlwillson: Pass

61) Babamots: Move Y1 Nausicaa Romulus

62) dlwillson: Pass

63) Babamots: Sacrifice B2 Nausicaa
Trade G2 B2 Cardassia
Trade B3 R3 Cardassia

64) dlwillson: S G3 Sea
B G2 Dlwillson
B B3 Field
B G3 Sea

65) Babamots: Move Y2 Romulus Andoria

66) dlwillson: S R1 Field
Pass

67) Babamots: Build R1 Cardassia

68) dlwillson: Pass

69) Babamots: Move Y3 Orion Romulus

70) dlwillson: Pass

71) Babamots: Move Y3 Andoria Cardassia

72) dlwillson: Pass

73) Babamots: Move Y1 Cardassia Andoria

74) dlwillson: Pass

75) Babamots: Sacrifice Y1 Romulus
Discover R3 Cardassia Y1 Iconia

76) dlwillson: Pass

77) Babamots: Move B1 Cardassia Iconia

78) dlwillson: Pass
	dlwillson: It's happening!

79) Babamots: Move B2 Cardassia Iconia

80) dlwillson: Pass
	dlwillson: <sigh> It's not happening...
	Babamots: I thought I saw a way that if I moved all three blues at once you could interfere. Maybe it was just paranoia.

81) Babamots: Move B2 Romulus Iconia

82) dlwillson: Pass
	Babamots: Yeah, if I sacrifice a y3 now, you can trade for the y3 and then do a green catastrophe on Orion, which would still have a yellow ship I needed on it. I think I would still win, but I'm not in the mood for uncertainty.
	Babamots: Like young Zaphod, I play it safe.

83) Babamots: Sacrifice Y3 Orion
Move B2 Iconia Dlwillson
Move B2 Iconia Dlwillson
Move B1 Iconia Dlwillson
Catastrophe Dlwillson B
	Babamots: Sorry that I took so long to move that time. I mistyped a move right after you passed but didn't notice the error message because I was watching Jurassic Park. I blame it on the dinosaurs.

	dlwillson: Good game. Well played.
	Babamots: sacrifice y3 Romulus
move y2 Orion dlwillson
move y2 Andoria dlwillson
move y1 Andoria dlwillson
catastrophe dilwillson y
	Babamots: Good game! And good luck with the rest of the tournament!
	Felix: Wow, very interesting. I just got around to studying this game. I've actually never seen this situation before. I guess I didn't play against TwoShort enough! Super interesting (for one player, at any rate!)
	Draw5PlayAll: What does this have to do with TwoShort?
	Babamots: dlwillson indicated that TwoShort favors/favored yellow-domination play.


34483)
Variants: "Unrated"
Started: 2018.8.23, Ended: 2018.9.6
Participants: Babamots (S), eliscinsky (N)
Winner: Babamots

1) eliscinsky: H R1 B2 G3
	eliscinsky: Sensei, I amd eager for your instruction of my humble self.

2) Babamots: Homeworld Y3 G2 B3
	eliscinsky: Using a basic starting Homeworld. The one Andy and others say is a good place to start.
	eliscinsky: Also, since we have not played each other in the tourney yet, hopefully I will become a better player for that match.
	Babamots: I believe that your opening move is the strongest one if you go first. I'm deliberately taking an opening that I consider less good.

3) eliscinsky: B G1 Eliscinsky
	Babamots: And for anyone who's observing, this is a teaching game and not for the tournament.
	Babamots: Side note, there's a tricky thing I've seen a few times lately that you should know about. If you are moving first, the only safe color to have as a small system marker is red (yellow isn't too bad though). If you have a b1 or g1 for a home marker, your opponent can usually choose their homeworld to lock you out of that color.

Say you chose the slightly different opening move

1. homeworld r2 b1 g3

Then I could lock you out of blue with

1... homeworld g3 b1 b3
2. build g1 eliscinsky
2... build b1 Babamots

I just have to trade my b3 for y3 to have a pretty normal position and quick access to medium pieces (b2) while you can't get blue ships for a while.

I could do a similar thing if you had a g1 for a home marker or even yellow, but in the yellow case, I would end up with only green and yellow in my home world and have to discover a blue system before my position stopped being very weird.

4) Babamots: Build B1 Babamots
	eliscinsky: I suppose the 1st several rounds will be building up.

Also, after this move I'll be resigned to mostly playing outside of work hours. :)

5) eliscinsky: T G1 Y1 Eliscinsky

6) Babamots: Build B1 Babamots

7) eliscinsky: T Y1 B1 Eliscinsky

8) Babamots: Discover B1 Babamots G1 Risa
	eliscinsky: I traded for a blue 1 so I wouldn't be locked out of that economy for a while.

Is that what you would have done? (a simple yes or no is enough for now)
	Babamots: Yes, I think that's the right move.

It looks like we'll split the b2 ships evenly, one for each of us. Next you'll probably  want to look for ways to either 1) prevent me from getting b3 ships or 2) make sure that you get at least as many of them as me.

9) eliscinsky: Build B2 Eliscinsky

10) Babamots: Build B2 Risa

11) eliscinsky: Trade B1 Y1 Eliscinsky

12) Babamots: Trade B2 Y2 Risa

13) eliscinsky: Build Y1 Eliscinsky

14) Babamots: Build B1 Risa

15) eliscinsky: Build G1 Eliscinsky

16) Babamots: Build B2 Babamots
	Babamots: Even without my prompting you, I guess you noticed that it's not safe for you to build more blue at home. Since blue is the color giving access to medium and large ships now, you may want to move your blue to a g3 system so you can get some big ships. Otherwise, I'll happily start gobbling up the b3 and then start trading them for large ships of other colors.

17) eliscinsky: D B2 Eliscinsky G3 Ds9
	eliscinsky: But you don't have access to my system yet.  Or have I missed something.  And with only 2 blue left I would think I should get at least one of them. And let you create the 3 star to gain access to my homeworld. That way I could trade a 3 for another, maybe yellow to gain the movement I need to get to you, or red to protect / attack.

Is my strategy flawed?

18) Babamots: Trade B1 R1 Risa
	Babamots: From here I can sacrifice my y2 to send a b1 to your home for a catastrophe, like this.

19) eliscinsky: Move Y1 Eliscinsky Ds9
	Babamots: I was planning to let you undo your last move, but it occurs to me that you might not be able to undo after I made a move and hit undo. Can you still take it back?
	eliscinsky: I still have an "Undo Last Move" buttton. okay I see the issue.  TY

20) Babamots: Build R1 Risa

21) eliscinsky: Build Y1 Eliscinsky

22) Babamots: Move Y2 Risa Ds9

23) eliscinsky: Trade B2 R2 Ds9

24) Babamots: Sacrifice R1 Risa
Attack R2 Ds9

25) eliscinsky: Trade Y1 R1 Eliscinsky

26) Babamots: Attack Y1 Ds9

27) eliscinsky: Trade G1 B1 Eliscinsky

28) Babamots: Discover B1 Babamots G1 Betazed
	Babamots: If your opponent gets a red ship anywhere, you have to expect him to sacrifice it for an attack if he gets the chance. It's almost always best to get a red immediately after your opponent does. Otherwise, he can get the drop on you and you'll just have to run.

29) eliscinsky: Build Y1 Eliscinsky

30) Babamots: Build B2 Betazed

31) eliscinsky: Discover Y1 Eliscinsky G3 Vulcan

32) Babamots: Build B3 Risa

33) eliscinsky: Sacrifice G3 Eliscinsky
Build Y2 Vulcan
Build Y2 Eliscinsky
Build Y3 Vulcan

34) Babamots: Sacrifice Y2 Ds9
Move B3 Risa Ds9
Move B3 Ds9 Eliscinsky

35) eliscinsky: Sacrifice Y2 Eliscinsky
Move Y1 Vulcan Betazed
Move Y3 Vulcan Betazed

36) Babamots: Sacrifice R2 Ds9
Attack Y1 Eliscinsky
Attack R1 Eliscinsky
	Babamots: I've never had anyone start cooperating on my Star Trek system name theme before. Do you have a favorite series?
	Babamots: You've set yourself up to compete for the yellow ships, which is good. You actually have the advantage there since you have your yellow more spread out than me, so I'll have a harder time building them safely. You also have a g3, which you could sacrifice to quickly take three yellows if you felt like it, possibly denying me any y3.

Your biggest liability now is that large blues are already available (large ships are a big deal), and I am better prepared to build those. I'll be able to build b3, trade for y3, and build b3 again.

37) eliscinsky: Move Y2 Vulcan Eliscinsky

38) Babamots: Attack Y2 Eliscinsky

39) eliscinsky: Move Y3 Betazed Babamots
	Babamots: Leaving your home system without a large is very dangerous. Right now, I can move my b3 to your home, so I can attack your large as soon as it arrives to defend. You're welcome to take back that move if you'd like to try something else. If you want to do that triple build, I think you should move one of the yellows out of your home first so you can safely build a y3 at your home for defense.
	eliscinsky: I think maybe I waited to long.  I do NOT have an undo button.  oh well.
	Babamots: OK, well let's see what I can make out of this then.

40) Babamots: Attack B1 Eliscinsky

	Draw5PlayAll: I can see many moves ahead when it is a forced line, like red fights in a homeworld when one side clearly has more red power, or the setup for a doomsday machine.


34352)
Variants: "Unrated"
Started: 2018.8.23, Ended: 2018.8.27
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 G3 Y3 *

2) wil: Homeworld B2 R2 G3 *

3) Trydnt: Build Y1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Build Y1 Trydnt

6) wil: Trade G1 Y1 Wil

7) Trydnt: Trade Y1 R1 Trydnt

8) wil: Build G1 Wil

9) Trydnt: Trade Y1 G1 Trydnt

10) wil: D G1 Wil Y1 Y1

11) Trydnt: Move R1 Trydnt Y1

12) wil: D G1 Y1 Y2 Y2

13) Trydnt: Move R1 Y1 Y2

14) wil: D G1 Y2 Y1 Y1

15) Trydnt: Move R1 Y2 Y1

16) wil: D G1 Y1 R2 R2

17) Trydnt: Move G1 Trydnt Y1
	wil: He runs to sanctuary

18) wil: Build G1 Wil

19) Trydnt: Build G2 Y1

20) wil: Move G1 Wil Y1

21) Trydnt: Move G2 Y1 R2

22) wil: M G1 Y1 Trydnt

23) Trydnt: Sacrifice R1 Y1
Attack G1 Trydnt

24) wil: B G2 Wil

25) Trydnt: Move G1 Trydnt Wil

26) wil: S G2 Wil
B G2 R2
B G2 R2
C R2 G

27) Trydnt: Build G1 Wil

28) wil: Trade G3 R3 Wil

29) Trydnt: Attack Y1 Wil

30) wil: A G1 Wil

31) Trydnt: Attack G1 Wil

32) wil: A G1 Wil

33) Trydnt: Trade Y1 R1 Wil
	wil: You have options...  I have none.

34) wil: T R3 Y3 Wil

35) Trydnt: Build R1 Wil
	Trydnt: I was wondering why you traded for the red when it left you with the fewest options

36) wil: A G1 Wil
	wil: There are no options in my world except reverse attacks

37) Trydnt: Build G2 Y1

38) wil: A R1 Wil

39) Trydnt: Sacrifice G1 Y1
Build R1 Wil
Catastrophe Wil R

40) wil: T G1 R1 Wil

41) Trydnt: Trade Y3 R3 Trydnt

42) wil: B Y1 Wil

43) Trydnt: Build R1 Trydnt

44) wil: B R1 Wil

45) Trydnt: Trade R3 Y3 Trydnt

46) wil: M G1 Wil Y1

47) Trydnt: Build R2 Trydnt

48) wil: D R1 Wil G1 G1

49) Trydnt: Move R2 Trydnt G1

50) wil: B R2 G1

51) Trydnt: Sacrifice G2 Y1
Build R2 G1
Build R3 Trydnt
Catastrophe G1 R

52) wil: M G1 Y1 Wil
	wil: Nice
	wil: Nice

53) Trydnt: Trade R1 B1 Trydnt
	Trydnt: ver nice
	wil: Yupperz

54) wil: B R1 Wil
	wil: But don't break your elbow

55) Trydnt: Build B1 Trydnt



34491)
Started: 2018.8.23, Ended: 2018.9.19
Participants: Trydnt (S), ts52 (N)
Winner: Trydnt

1) ts52: Homeworld R1 B2 G3

2) Trydnt: Homeworld B3 Y2 G3

3) ts52: Build G1 Ts52

4) Trydnt: Build G1 Trydnt

5) ts52: Trade G1 Y1 Ts52

6) Trydnt: Trade G1 R1 Trydnt

7) ts52: Build Y1 Ts52

8) Trydnt: Build R1 Trydnt

9) ts52: Build Y1 Ts52

10) Trydnt: Build R2 Trydnt

11) ts52: Discover Y1 Ts52 G3 Kermit

12) Trydnt: Trade R2 Y2 Trydnt

13) ts52: Build Y2 Kermit

14) Trydnt: Discover Y2 Trydnt G1 G1

15) ts52: Build Y3 Ts52

16) Trydnt: Build Y3 G1

17) ts52: Trade Y3 R3 Ts52

18) Trydnt: Discover Y2 G1 G2 G2

19) ts52: Trade Y1 B1 Ts52

20) Trydnt: Build R2 Trydnt

21) ts52: Move R3 Ts52 Kermit

22) Trydnt: Move R1 Trydnt G1

23) ts52: Build R2 Kermit

24) Trydnt: Build R2 G1

25) ts52: Discover R3 Kermit G1 Robin

26) Trydnt: Trade R1 B1 Trydnt

27) ts52: Move Y1 Kermit Robin

28) Trydnt: Sacrifice Y2 G2
Move B1 Trydnt G1
Discover R2 G1 Y3 Y3

29) ts52: Move B1 Ts52 Kermit

30) Trydnt: Sacrifice G3 Trydnt
Build R1 Y3
Build R3 G1
Build R3 Trydnt

31) ts52: Sacrifice G3 Ts52
Build Y1 Robin
Build Y2 Kermit
Build Y3 Ts52

32) Trydnt: Move R3 G1 Kermit

33) ts52: Sacrifice Y2 Kermit
Move R2 Kermit Robin
Move B1 Kermit Robin

34) Trydnt: Trade R3 G3 Trydnt

35) ts52: Trade Y3 G3 Ts52

36) Trydnt: Build R3 G1

37) ts52: Build G1 Ts52

38) Trydnt: Attack Y2 Kermit

39) ts52: Build G2 Ts52

40) Trydnt: Sacrifice Y2 Kermit
Move R1 Y3 Robin
Move R2 Y3 Robin
Catastrophe Robin R

41) ts52: Trade Y1 R1 Robin

42) Trydnt: Sacrifice Y3 G1
Move G3 Trydnt G1
Move G3 G1 Kermit
Move G3 Kermit Ts52
Catastrophe Ts52 G

43) ts52: Build R2 Robin

44) Trydnt: Trade R3 Y3 G1

45) ts52: Build R2 Robin

46) Trydnt: Sacrifice Y3 G1
Move R1 G1 Kermit
Move R3 Kermit Ts52
Move R1 Kermit Robin
Catastrophe Robin R
	ts52: Well that doesn't look very good for me. :( Well played.

47) ts52: Build Y1 Robin

48) Trydnt: Attack Y1 Ts52
	Trydnt: thanks :)

	ts52: Good game!
	Trydnt: thanks well played


34497)
Variants: "Hard time"
Started: 2018.8.23, Ended: 2018.9.6
Participants: eliscinsky (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) eliscinsky: H R2 B3 G3 Eliscinsky

3) Trydnt: Build G1 Trydnt

4) eliscinsky: B G1 Eliscinsky
	eliscinsky: GLHF!
	Trydnt: Good luck!

5) Trydnt: Trade G1 Y1 Trydnt

6) eliscinsky: T G1 Y1 Eliscinsky

7) Trydnt: Build Y2 Trydnt

8) eliscinsky: Build Y2 Eliscinsky

9) Trydnt: Discover Y1 Trydnt G3 G3

10) eliscinsky: Build Y2 Eliscinsky

11) Trydnt: Build Y3 G3

12) eliscinsky: D Y1 Eliscinsky G1 Alpha

13) Trydnt: Trade Y2 R2 Trydnt

14) eliscinsky: B Y2 Alpha

15) Trydnt: Discover Y1 G3 G1 G1

16) eliscinsky: Discover Y2 Alpha B3 Beta

17) Trydnt: Build Y3 G1

18) eliscinsky: Build Y3 Alpha

19) Trydnt: Discover Y1 G1 B3 B3

20) eliscinsky: Move Y1 Alpha Beta

21) Trydnt: Move R2 Trydnt Beta

22) eliscinsky: Sacrifice Y3 Alpha
Move Y2 Beta Trydnt
Move Y1 Beta Trydnt
Move Y2 Eliscinsky G1

23) Trydnt: Sacrifice R2 Beta
Attack Y2 Trydnt
Attack Y2 G1

24) eliscinsky: Build Y3 Eliscinsky

25) Trydnt: Sacrifice Y3 G1
Move Y1 B3 G1
Move Y1 G1 Eliscinsky
Move Y2 G1 Eliscinsky
Catastrophe Eliscinsky Y

26) eliscinsky: Build G1 Eliscinsky

27) Trydnt: Trade Y2 R2 Trydnt

28) eliscinsky: Build G1 Eliscinsky

29) Trydnt: Attack Y1 Trydnt

30) eliscinsky: Trade G1 Y1 Eliscinsky

31) Trydnt: Build Y2 G3

32) eliscinsky: Build Y2 Eliscinsky

33) Trydnt: Discover Y2 G3 B1 B1

34) eliscinsky: Trade Y2 R2 Eliscinsky

35) Trydnt: Build Y2 G3

36) eliscinsky: Move R2 Eliscinsky B1

37) Trydnt: Sacrifice R2 Trydnt
Attack R2 B1
Pass

38) eliscinsky: T G1 R1 Eliscinsky

39) Trydnt: Trade Y1 B1 Trydnt

40) eliscinsky: Discover R1 Eliscinsky G1 Alpha

41) Trydnt: Build B1 Trydnt

42) eliscinsky: Build Y1 Eliscinsky

43) Trydnt: Build G1 Trydnt

44) eliscinsky: Discover Y1 Eliscinsky G1 Beta

45) Trydnt: Move Y2 G3 Alpha

46) eliscinsky: M Y1 Beta G3

47) Trydnt: Sacrifice R2 B1
Attack R1 Alpha
Attack Y1 G3

48) eliscinsky: Build Y2 Eliscinsky

49) Trydnt: Build Y3 Alpha

50) eliscinsky: Trade Y2 B2 Eliscinsky

51) Trydnt: Move B1 Trydnt G3

52) eliscinsky: Build G1 Eliscinsky

53) Trydnt: Build R1 Alpha

54) eliscinsky: Build Y2 Eliscinsky

55) Trydnt: Sacrifice G1 Trydnt
Build Y3 B1

56) eliscinsky: Move Y1 Eliscinsky B1

57) Trydnt: Discover Y2 B1 B3 B3

58) eliscinsky: M Y1 B1 Eliscinsky

59) Trydnt: Move B1 G3 Alpha
	eliscinsky: Why do I feel like I'm going to lose?  ;)

60) eliscinsky: D B2 Eliscinsky G1 Beta

61) Trydnt: Move Y3 G3 Beta

62) eliscinsky: B B2 Beta

63) Trydnt: Build B3 Alpha

64) eliscinsky: Move G1 Eliscinsky Beta

65) Trydnt: Build R1 Alpha

66) eliscinsky: T B2 R2 Beta

67) Trydnt: Sacrifice Y3 B1
Move R1 Alpha Eliscinsky
Move R1 Alpha Eliscinsky
Move R1 Alpha Eliscinsky
Catastrophe Eliscinsky R

68) eliscinsky: Trade Y1 B1 Eliscinsky

69) Trydnt: Sacrifice Y2 B3
Move B1 Alpha Eliscinsky
Move B3 Alpha Eliscinsky
Catastrophe Eliscinsky B

	Trydnt: good game

	eliscinsky: U2, I realised I was at a point of no return about 5 moves ago.  Still tried a few things, but alas.  I hope you don't mind I sort of gave up there at the end.

Cheers, and Good Luck in the tourney!
	Trydnt: no worries. I think once I had most of the yellow it was pretty much unavoidable


34496)
Variants: "Hard time"
Started: 2018.8.24, Ended: 2018.9.14
Participants: DodoBirb (S), Trydnt (N)
Winner: DodoBirb

1) Trydnt: Homeworld B2 Y1 G3

2) DodoBirb: Homeworld B1 R3 G3

3) Trydnt: Build G1 Trydnt

4) DodoBirb: Build G1 Dodobirb

5) Trydnt: Trade G1 B1 Trydnt

6) DodoBirb: Trade G1 B1 Dodobirb

7) Trydnt: Build B2 Trydnt

8) DodoBirb: Build B2 Dodobirb

9) Trydnt: Discover B1 Trydnt G3 G3

10) DodoBirb: Trade B1 Y1 Dodobirb

11) Trydnt: Trade B1 Y1 G3

12) DodoBirb: Discover B2 Dodobirb G2 Grass

13) Trydnt: Build Y2 G3

14) DodoBirb: Build Y2 Dodobirb

15) Trydnt: Move B2 Trydnt G3

16) DodoBirb: Move Y2 Dodobirb Grass

17) Trydnt: Discover Y2 G3 G2 G2

18) DodoBirb: Build Y2 Grass

19) Trydnt: Build Y3 G3

20) DodoBirb: Build Y3 Dodobirb

21) Trydnt: Build Y3 G2

22) DodoBirb: Build B1 Grass

23) Trydnt: Trade Y3 R3 G3

24) DodoBirb: Trade Y3 R3 Dodobirb

25) Trydnt: Build Y3 G3

26) DodoBirb: Build Y3 Dodobirb

27) Trydnt: Move R3 G3 Grass

28) DodoBirb: Sacrifice Y2 Grass
Discover Y2 Grass B3 Bigblue
Move B2 Grass Bigblue

29) Trydnt: Attack B1 Grass

30) DodoBirb: Trade B2 G2 Bigblue

31) Trydnt: Build R1 Grass

32) DodoBirb: Discover R3 Dodobirb B2 Halfblue

33) Trydnt: Build G1 Trydnt

34) DodoBirb: Build G1 Bigblue

35) Trydnt: Trade G1 R1 Trydnt

36) DodoBirb: Build G1 Bigblue

37) Trydnt: Move Y3 G2 Bigblue

38) DodoBirb: Sacrifice Y3 Dodobirb
Move G2 Bigblue Trydnt
Move G1 Bigblue Trydnt
Move G1 Bigblue Trydnt
Catastrophe Trydnt G

39) Trydnt: Sacrifice R1 Trydnt
Attack Y2 Bigblue

	Trydnt: damn I completely meant to sac the one on the other star. that was unfortunate
	Trydnt: is there any way to undo moves that end the game?
	DodoBirb: I don't think so. I suppose we could rematch if it's allowed.
	Trydnt: I sent john a message see what he says
	Babamots: Sorry about this situation. My interpretation of the rules is that you may not make a move that results in your own loss (that's what resigning is for). We should ask Aaron to fix this in SDG 2.0.

I think the most reasonable thing to do is follow typical chess tournament rules: you "touched" a piece that can't actually be legally moved. In chess, you just ignore that the "touch" ever took place and continue the game.

If you two agree that continuing is the right thing to do, here are a few possible ways to handle it.

1) Decide on a winner based on the current position. I'm inclined to say that Trydnt has enough of an advantage that he would have won. I'm OK with just awarding Trydnt the point, but we shouldn't do that if either of you guys don't like it. I remember being angry about a certain "Starcraft: Broodwar" tournament where the power went out and the officials called the game in favor of "Flash."

2) Starting a replacement game on SDG but making the same moves up to this point (and then continuing as if this hadn't happened). This might take a while, but I think it's the best option if you want to play out the rest of the moves.

3) Continue the game in some other way, such as a video call, traveling to an agreed meeting place to play with real pieces, or exchanging SDG-style text moves through email or here in the comments.

What do you guys think?
	Trydnt: I think 2) is probably the best as it is closest to what SDG should have done where it shouldn't have allowed the last move and delivered an error message which would have prompted the intended move. We wouldn't necessarily have to recreate all the same moves as we could probably amass fleets on homeworlds without calling catastrophe on either and then move everything to correct locations and sacrifice+pass any pieces that should be returned to the bank. Let me know what you think
	DodoBirb: I would probably be fine with 1 but 2 definitely seems like the best option so I'll go with that. 
	Babamots: OK, sounds like you agree that you'd like to continue the game on SDG. Go ahead and issue the challenge and put the game on the start form as usual. I'll delete this one.


34500)
Variants: "Hard time"
Started: 2018.8.24, Ended: 2018.8.26
Participants: Trydnt (S), zeder (N)
Winner: Trydnt



34501)
Variants: "Unrated"
Started: 2018.8.26, Ended: 2018.11.13
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G3 R1 B3

2) wil: H Y2 G2 R3 *

3) Trydnt: Build B1 Trydnt

4) wil: B R1 Wil

5) Trydnt: Trade B1 R1 Trydnt

6) wil: B R2 Wil

7) Trydnt: Build B1 Trydnt

8) wil: D R2 Wil B3 B3

9) Trydnt: Trade B1 Y1 Trydnt

10) wil: M R1 Wil B3

11) Trydnt: Build R2 Trydnt

12) wil: T R2 Y2 B3
	Babamots: I understand wil won't be available for a while, so I'm pausing his games for him. Hopefully you can continue soon.
	Draw5PlayAll: 67 days ago?!?!

13) Trydnt: Discover R2 Trydnt Y2 Y2
	Trydnt: our systems are directly connected... you sure

14) wil: B R2 Wil
	wil: Lol, thx

15) Trydnt: Build Y1 Trydnt

16) wil: M R2 Wil B3

17) Trydnt: Build B1 Trydnt

18) wil: B R2 Wil

19) Trydnt: Discover R2 Y2 G3 G3

20) wil: T R2 G2 B3

21) Trydnt: Discover Y1 Trydnt G2 G2

22) wil: B G1 B3

23) Trydnt: Discover Y1 Trydnt B2 B2

24) wil: D G2 B3 B2 Bee2

25) Trydnt: Trade B1 Y1 Trydnt

26) wil: D R2 Wil G3 Gee3

27) Trydnt: Build B1 Trydnt

28) wil: T G1 B1 B3

29) Trydnt: Trade B3 Y3 Trydnt

30) wil: M B1 B3 Wil

31) Trydnt: Move Y1 G2 G3

32) wil: B G1 Bee2

33) Trydnt: Discover Y1 Trydnt G2 G2

34) wil: B R2 Gee3

35) Trydnt: Build R3 G3

36) wil: B R3 Wil

37) Trydnt: Build Y2 G3

38) wil: S G1 Bee2
B Y3 B3

39) Trydnt: Build Y3 G2

40) wil: M R3 Wil B3

41) Trydnt: Build B1 Trydnt

42) wil: B G1 Bee2

43) Trydnt: Move Y3 G2 Gee3

44) wil: B G1 Bee2

45) Trydnt: Sacrifice Y3 Gee3
Move Y1 B2 B3
Move Y1 G2 B3
Move R3 G3 Bee2
Catastrophe B3 Y

46) wil: T R1 G1 B3

47) Trydnt: Sacrifice R2 G3
Attack G2 Bee2
Attack G1 Bee2

48) wil: B G2 Bee2
C Bee2 G

49) Trydnt: Trade B1 G1 Trydnt

50) wil: B B1 Wil

51) Trydnt: Build B2 Trydnt
	wil: Nice

52) wil: T B1 Y1 Wil
	wil: In the nick of time!

53) Trydnt: Discover B2 Trydnt Y2 Y2

54) wil: M Y1 Wil B3

55) Trydnt: Move G1 Trydnt Bee2

56) wil: T R3 Y3 B3

57) Trydnt: Trade B2 G2 Y2

58) wil: D Y1 B3 B2 Btwo

59) Trydnt: Build B1 Trydnt

60) wil: B B2 Wil

61) Trydnt: Discover B1 Trydnt G2 G2

62) wil: M B1 Wil Gee3

63) Trydnt: Sacrifice G2 Y2
Build B3 Trydnt
Build B3 G2

64) wil: B R1 Wil

65) Trydnt: Discover B3 Trydnt G2 G22
	wil: I think you got this

66) wil: B G1 B3

67) Trydnt: Sacrifice Y1 G3
Move B3 G2 Gee3

68) wil: M R1 Wil Gee3
	wil: This is the end

69) Trydnt: Sacrifice R3 Bee2
Attack R1 Gee3
Attack R2 Gee3
Attack R2 Gee3

70) wil: B R2 Wil

71) Trydnt: Trade R2 Y2 Gee3

72) wil: M R2 Wil B3

73) Trydnt: Attack B1 Gee3

74) wil: B R2 Wil

75) Trydnt: Sacrifice Y3 Trydnt
Move R1 Gee3 Wil
Move R2 Gee3 Wil
Catastrophe Wil R
Move B3 Gee3 Wil

	wil: Finally


34509)
Variants: "Unrated"
Started: 2018.8.26, Ended: 2018.11.7
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B3 Y2 G3

2) Trydnt: Homeworld Y3 G2 B3

3) wil: B G1 Wil

4) Trydnt: Build B1 Trydnt

5) wil: B G1 Wil

6) Trydnt: Build B1 Trydnt

7) wil: D G1 Wil Y1 Y1

8) Trydnt: Trade B1 Y1 Trydnt

9) wil: B G1 Wil
	Babamots: I understand wil won't be available for a while, so I'm pausing his games for him. Hopefully you can continue soon.

10) Trydnt: Trade B1 R1 Trydnt

11) wil: B G2 Y1

12) Trydnt: Build R1 Trydnt

13) wil: D G1 Y1 Y3 Y3

14) Trydnt: Build R1 Trydnt

15) wil: S G3 Wil
B G2 Y3
B G3 Y1
B G3 Wil

16) Trydnt: Discover R1 Trydnt Y1 Y11

17) wil: T G3 R3 Wil

18) Trydnt: Build Y2 Trydnt

19) wil: S G3 Y1
B G3 Wil
B G3 Y3
B G3 Y1

20) Trydnt: Discover Y2 Trydnt B1 B1

21) wil: T G3 Y3 Wil

22) Trydnt: Build Y2 Trydnt

23) wil: S G3 Y1
B G3 Y1
B G3 Wil
B R2 Wil

24) Trydnt: Build R2 Trydnt

25) wil: M R2 Wil Y11

26) Trydnt: Move R1 Trydnt Y11

27) wil: S G3 Wil
B G3 Wil
B R2 Y11
B R3 Wil
C Y11 R

28) Trydnt: Discover Y1 Trydnt Y1 Y11

29) wil: M Y3 Wil B1

30) Trydnt: Discover Y2 B1 B3 B3

31) wil: M R3 Wil Y11

32) Trydnt: Discover Y1 Y11 B2 B2

33) wil: M G3 Wil B1

	Trydnt: that did not go as planned at all
	wil: Green freeze as powerful as all.
	Trydnt: yeah that was weird I don't think I've ever seen or done a green freeze. haven't played enough games with green in my hw I suppose


34502)
Started: 2018.8.26, Ended: 2018.10.17
Participants: ts52 (S), Trydnt (N)
Winner: ts52

1) Trydnt: Homeworld G3 Y1 B3

2) ts52: Homeworld R1 B2 G3

3) Trydnt: Build B1 Trydnt

4) ts52: Build G1 Ts52

5) Trydnt: Build B1 Trydnt

6) ts52: Trade G1 Y1 Ts52

7) Trydnt: Trade B1 Y1 Trydnt

8) ts52: Build Y2 Ts52

9) Trydnt: Build Y2 Trydnt

10) ts52: Discover Y1 Ts52 G3 Kermit

11) Trydnt: Discover Y1 Trydnt G2 G2

12) ts52: Build G1 Ts52

13) Trydnt: Build B1 Trydnt

14) ts52: Trade G1 B1 Ts52

15) Trydnt: Discover B1 Trydnt G2 Gee2

16) ts52: Move B1 Ts52 Kermit

17) Trydnt: Discover Y2 Trydnt B2 B2

18) ts52: Build G1 Ts52

19) Trydnt: Trade B1 R1 Trydnt

20) ts52: Trade G1 R1 Ts52

21) Trydnt: Build B1 Gee2

22) ts52: Build G1 Ts52

23) Trydnt: Build R2 Trydnt

24) ts52: Build R2 Ts52

25) Trydnt: Move R2 Trydnt B2

26) ts52: Move R2 Ts52 Kermit

27) Trydnt: Discover R2 B2 B3 B3

28) ts52: Discover G1 Ts52 B3 Gonzo

29) Trydnt: Move Y2 B2 Gonzo

30) ts52: Build B2 Kermit

31) Trydnt: Sacrifice R1 Trydnt
Attack G1 Gonzo

32) ts52: Build G1 Ts52

33) Trydnt: Build B2 Trydnt

34) ts52: Move B2 Kermit G2

35) Trydnt: Move Y1 G2 B3

36) ts52: Sacrifice G3 Ts52
Build Y2 Kermit
Build Y3 Kermit
Build Y3 Ts52

37) Trydnt: Discover B2 Trydnt G2 G22

38) ts52: Move Y3 Kermit Gee2

39) Trydnt: Build Y3 Gonzo
	ts52: Wow, you managed to undo your move as I was making mine. <this close> :)

40) ts52: Sacrifice R2 Kermit
Attack B1N Gee2
Attack B1N Gee2

41) Trydnt: Trade B3 R3 Trydnt

42) ts52: Discover Y2 Ts52 B3 Grover

43) Trydnt: Sacrifice G1 Gonzo
Build R1 B3

44) ts52: Move R1 Ts52 Kermit

45) Trydnt: Trade R1 G1 B3

46) ts52: Move Y1 Kermit G2

47) Trydnt: Move Y3 Gonzo G2

48) ts52: Move Y3 Gee2 B3

49) Trydnt: Sacrifice Y1 B3
Move R2 B3 Gee2

50) ts52: Build Y1 Kermit

51) Trydnt: Sacrifice G1 B3
Build R1 Gee2

52) ts52: Build R2 Kermit

53) Trydnt: Build R2 Trydnt

54) ts52: Build R3 Kermit

55) Trydnt: Sacrifice R2 Trydnt
Attack Y1 G2
Attack B1 Gee2

56) ts52: Move R3 Kermit G22

57) Trydnt: Sacrifice Y1 G2
Move B2 G22 Trydnt

58) ts52: Build G1 Ts52

59) Trydnt: Attack B1 Gee2

60) ts52: Move G1 Ts52 B3

61) Trydnt: Sacrifice R1 Gee2
Attack B2 G2

62) ts52: Build G1 B3

63) Trydnt: Discover B2 G2 G3 G3

64) ts52: Move Y3 B3 Gee2

65) Trydnt: Sacrifice Y2 Gonzo
Move B1 Gee2 Kermit
Move B1 Gee2 Kermit

66) ts52: Sacrifice R2 Kermit
Attack R2N Gee2
Attack B1N Kermit

67) Trydnt: Build B3 G3

68) ts52: Move B1 Kermit G22

69) Trydnt: Trade B2 R2 G3

70) ts52: Attack B1N Kermit

71) Trydnt: Build R1 G3

72) ts52: Build R2 Gee2

73) Trydnt: Move Y3 G2 B3

74) ts52: Build R3 Kermit

75) Trydnt: Build B2 G3

76) ts52: Build G2 Ts52

77) Trydnt: Sacrifice R2 G3
Attack G1 B3
Attack G1 B3

78) ts52: Sacrifice G2 Ts52
Build G2 Ts52
Build R2 G22

79) Trydnt: Discover B2 Trydnt Y2 Y2

80) ts52: Sacrifice Y3 Gee2
Move R2 G22 Trydnt
Move R2 Gee2 Trydnt
Move R2 Gee2 Trydnt
Catastrophe Trydnt R

	ts52: Good game. Thanks!


34513)
Variants: "Hard time"
Started: 2018.8.27, Ended: 2018.9.6
Participants: Trydnt (S), speardane (N)
Winner: Trydnt

1) speardane: Homeworld B2 Y1 G3

2) Trydnt: Homeworld B3 Y2 G3
	speardane: Shoot, I didn't notice that this game had started! My bad.
Good luck!

3) speardane: Build G1 Speardane

4) Trydnt: Build G1 Trydnt

5) speardane: Trade G1 R1 Speardane

6) Trydnt: Trade G1 Y1 Trydnt

7) speardane: Build G1 Speardane

8) Trydnt: Build Y1 Trydnt

9) speardane: Discover G1 Speardane B3 Delos

10) Trydnt: Discover Y1 Trydnt G1 G1

11) speardane: Build G1 Delos

12) Trydnt: Build Y2 G1

13) speardane: Trade G1 R1 Delos

14) Trydnt: Build Y2 Trydnt

15) speardane: Build R1 Delos

16) Trydnt: Build Y3 G1

17) speardane: Build R2 Delos

18) Trydnt: Move Y3 G1 Delos

19) speardane: Build G1 Delos

20) Trydnt: Build Y3 G1

21) speardane: Trade G1 B1 Delos

22) Trydnt: Discover Y1 G1 G3 G3

23) speardane: Build G1 Speardane

24) Trydnt: Build Y3 G3

25) speardane: Discover G1 Speardane B3 Lebling

26) Trydnt: Build G2 Trydnt

27) speardane: Build G2 Lebling

28) Trydnt: Build G2 Trydnt

29) speardane: Trade G2 R2 Lebling

30) Trydnt: Trade Y3 R3 Delos
Catastrophe Delos R

31) speardane: Trade B1 R1 Delos

32) Trydnt: Build Y3 G3

33) speardane: Build R1 Speardane

34) Trydnt: Trade G2 R2 Trydnt

35) speardane: Build R2 Speardane

36) Trydnt: Sacrifice Y3 G3
Move R2 Trydnt G1
Move R2 G1 G3
Move R2 G3 Speardane
Catastrophe Speardane R

37) speardane: Build G2 Speardane

38) Trydnt: Build Y3 G1

39) speardane: Trade G2 R2 Speardane

40) Trydnt: Trade G2 R2 Trydnt

41) speardane: Build R1 Lebling

42) Trydnt: Move Y3 G1 Delos

43) speardane: Build R1 Lebling

44) Trydnt: Sacrifice R2 Trydnt
Attack G1 Delos
Attack R1 Delos

45) speardane: Trade R1 B1 Lebling

46) Trydnt: Build G2 Delos

47) speardane: Build G2 Lebling

48) Trydnt: Build G2 Trydnt

49) speardane: Trade G2 R2 Lebling

50) Trydnt: Trade G1 B1 Delos

51) speardane: Build G1 Speardane

52) Trydnt: Sacrifice G3 Trydnt
Build G2 Delos
Build G3 Trydnt
Build B1 Delos

53) speardane: Sacrifice G3 Speardane
Build R1 Speardane
Build R3 Speardane
Build G3 Lebling

54) Trydnt: Move R1 Delos Speardane
Catastrophe Speardane R

55) speardane: Sacrifice G1 Lebling
Pass

56) Trydnt: Trade G2 R2 Delos

57) speardane: Build G1 Speardane

58) Trydnt: Move Y3 G3 Speardane

59) speardane: Pass

60) Trydnt: Sacrifice R2 Delos
Attack G1 Speardane
Attack G1 Speardane

	Trydnt: good game. do you wanna log it or should I?
	speardane: I've already logged it... and then logged it again because I forgot how to get to the Tournament Viewer spreadsheet; and it looks like the spreadsheet didn't like that. :D  Good game! The relative placement of the r3 and g3 in my third-from-last move certainly doomed me, but that yellow monopoly was going to kill me eventually anyway.
	Trydnt: Yeah there was no way to stop me once I had all the yellow. Any 3 you flew to you'd be trapped on and so limited expansion and I made sure not to give you access to the 3 ships where possible. And cuz you couldn't move off those stars there was always the option of blowing them up to destroy a bunch of stuff


34514)
Variants: "Hard time"
Started: 2018.8.28, Ended: 2018.9.7
Participants: Felix (S), speardane (N)
Winner: speardane

1) speardane: Homeworld Y3 B1 G3

2) Felix: Homeworld B1 G2 B3 *

3) speardane: Build G1 Speardane
	Felix: Good luck and have fun! :)

4) Felix: Build B1 Felix
	speardane: You too!

5) speardane: Trade G3 R3 Speardane

6) Felix: Trade B3 R3 Felix

7) speardane: Build R1 Speardane

8) Felix: Build B2 Felix

9) speardane: Trade R3 B3 Speardane

10) Felix: Trade B2 Y2 Felix

11) speardane: Build R1 Speardane

12) Felix: Build B2 Felix

13) speardane: Discover R1 Speardane Y2 Delos

	Felix: Woops. Picked the wrong week to go on holiday! 
	Draw5PlayAll: So then you want a rematch, huh?
	Felix: Yep.
	Draw5PlayAll: I am not sure if the speardane account is still operational.


34517)
Variants: "Unrated"
Started: 2018.8.29, Ended: 2018.8.29
Participants: Babamots (S), minoan (N)
Winner: Babamots

1) minoan: Homeworld B2 G3 Y3

2) Babamots: Homeworld B2 R1 G3

3) minoan: Discover Y3 Minoan G1 Fragonardia



34519)
Started: 2018.8.30, Ended: 2018.9.5
Participants: Babamots (S), minoan (N)
Winner: Babamots

1) minoan: Homeworld G1 B2 Y3

2) Babamots: Homeworld B3 G1 G3 *

3) minoan: Build Y1 Minoan

4) Babamots: Build G1 Babamots

5) minoan: Build Y1 Minoan
	Babamots: What's happened is that you're locked out of green ships quite early. It turns out that, if you move first, the only small system marker that's safe is red. Otherwise, you can get locked out of that color.

6) Babamots: Trade G3 Y3 Babamots

7) minoan: Trade Y3 G3 Minoan

8) Babamots: Build G2 Babamots

9) minoan: Discover Y1 Minoan G3 Ceti_alpha_v

10) Babamots: Discover G2 Babamots G2 Risa

11) minoan: Build Y1 Minoan

12) Babamots: Build Y2 Babamots

13) minoan: Build Y2 Ceti_alpha_v

14) Babamots: Build G2 Risa

15) minoan: Discover G3 Minoan B3 Cardassia

16) Babamots: Build G3 Babamots

17) minoan: Trade Y1 B1 Minoan

18) Babamots: Move Y2 Babamots Risa

19) minoan: Build Y1 Minoan

20) Babamots: Sacrifice G3 Babamots
Build Y2 Babamots
Build Y3 Risa
Build G3 Babamots

21) minoan: Move Y1 Minoan Cardassia

22) Babamots: Trade Y2 R2 Babamots

23) minoan: Trade Y1 R1 Minoan

24) Babamots: Sacrifice Y2 Risa
Move Y3 Risa Cardassia
Move Y3 Cardassia Minoan

25) minoan: Build R1 Minoan

26) Babamots: Sacrifice R2 Babamots
Attack R1 Minoan
Attack R1 Minoan

27) minoan: Build B1 Minoan

28) Babamots: Trade R1 B1 Minoan
Catastrophe Minoan B
	Babamots: We can do unrated games until you feel in-practice if you like. There's a check box for it when you issue the challenge.



34465)
Variants: "Hard time"
Started: 2018.8.30, Ended: 2018.9.4
Participants: nycavri (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld B3 Y2 G3

2) nycavri: Homeworld B1 G3 Y3
	nycavri: h b1 g3 y3

3) dlwillson: B G1 Dlwillson
	nycavri: Gonna be one of those games . . .

	dlwillson: :-)

Good luck and have fun!

B g1 dlwillson


34498)
Variants: "Hard time"
Started: 2018.8.30, Ended: 2018.9.7
Participants: Trydnt (S), nycavri (N)
Winner: Trydnt

1) nycavri: Homeworld Y3 G2 B3

2) Trydnt: Homeworld B2 Y1 G3

3) nycavri: Build B1 Nycavri
	Trydnt: this is for the tournament correct?

4) Trydnt: Build G1 Trydnt

5) nycavri: Trade B1 G1 Nycavri

6) Trydnt: Trade G1 Y1 Trydnt

7) nycavri: Build G1 Nycavri

8) Trydnt: Build Y1 Trydnt

9) nycavri: Trade G1 R1 Nycavri

10) Trydnt: Build G1 Trydnt

11) nycavri: Build B1 Nycavri

12) Trydnt: Discover Y1 Trydnt G3 G3

13) nycavri: Trade B3 Y3 Nycavri

14) Trydnt: Build Y2 G3

	Trydnt: did you challenge or did I? challenger fills out form for game on the grid
	Babamots: I went ahead and put the game in the tournament spreadsheet for ya. Good luck guys!


34482)
Variants: "Hard time"
Started: 2018.9.2, Ended: 2018.9.4
Participants: wil (S), ajo (N)
Winner: ajo

1) ajo: Homeworld R1 B3 G3

	ajo: Ping!
	Babamots: I understand wil won't be available for a while. I hope you don't mind waiting to play wil for the tournament another time.


34340)
Variants: "Unrated"
Started: 2018.9.3, Ended: 2018.9.20
Participants: Trydnt (S), popjam (N)
Winner: Trydnt

1) popjam: Pass

2) Trydnt: Homeworld B2 Y1 G3

3) popjam: Homeworld B2 G1 Y3

4) Trydnt: Build G1 Trydnt



34515)
Variants: "Hard time"
Started: 2018.9.4, Ended: 2018.9.17
Participants: speardane (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld R3 B2 G3
	Laurie_Menke: Hi speardane! Good luck!  (And don't forget to log the start of the game!)  :)

2) speardane: Homeworld Y1 B2 G3

3) Laurie_Menke: Build G1 Laurie_menke
	speardane: Good luck!

4) speardane: Build G1 Speardane

5) Laurie_Menke: Trade G1 Y1 Laurie_menke

6) speardane: Trade G3 R3 Speardane

7) Laurie_Menke: Build G1 Laurie_menke

8) speardane: Build G1 Speardane

9) Laurie_Menke: Discover G1 Laurie_menke Y1 Yellow

10) speardane: Discover G1 Speardane B3 Delos

11) Laurie_Menke: Build G2 Laurie_menke

12) speardane: Build G2 Delos

13) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Yellow
Build G3 Laurie_menke
Build G3 Laurie_menke

14) speardane: Sacrifice G2 Delos
Build G2 Speardane
Build G3 Delos

15) Laurie_Menke: Discover G3 Laurie_menke B1 Blue

16) speardane: Trade G3 Y3 Delos

17) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build G3 Blue
Build Y2 Laurie_menke

18) speardane: Discover G2 Speardane B3 Lebling

19) Laurie_Menke: Trade G3 R3 Blue

20) speardane: Build G3 Lebling

21) Laurie_Menke: Sacrifice Y2 Laurie_menke
Discover G3 Blue Y3 Hi
Move R3 Blue Hi

22) speardane: Trade G3 Y3 Lebling

23) Laurie_Menke: Move G2 Yellow Delos

24) speardane: Build G3 Speardane

25) Laurie_Menke: Trade G2 Y2 Delos

26) speardane: Sacrifice G3 Speardane
Build G2 Delos
Build Y2 Lebling
Build G3 Lebling

27) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build Y2 Laurie_menke
Build R1 Hi

28) speardane: Move G2 Lebling Yellow

29) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G3 Laurie_menke
Build R1 Hi
Pass

30) speardane: Sacrifice Y3 Lebling
Move G2 Yellow Laurie_menke
Move G1 Delos Yellow
Move G1 Yellow Laurie_menke
Catastrophe Laurie_menke Green
	Laurie_Menke: LOL... that was kind of stupid... in the middle of typing all that I realized I had no third thing I wanted to build but was too lazy to just change it to a simple build command.

31) Laurie_Menke: Sacrifice Y2 Delos
Move R1 Hi Speardane
Move R1 Hi Speardane

32) speardane: Build Y2 Delos

33) Laurie_Menke: Attack G1 Speardane

34) speardane: Attack G1 Speardane

35) Laurie_Menke: Sacrifice G1 Yellow
Build R1 Speardane
Catastrophe Speardane R
	Laurie_Menke: Duh... right... don't know what I was thinking there...

36) speardane: Move Y3 Delos Speardane

37) Laurie_Menke: Move R3 Hi Speardane

38) speardane: Trade Y3 R3 Speardane

39) Laurie_Menke: Attack R3 Speardane

40) speardane: Pass

41) Laurie_Menke: Attack G1 Speardane
	speardane: Good game!
	Laurie_Menke: Indeed! Thanks for the fun and challenge! I hope to play against you again sometime!  :)



34532)
Variants: "Hard time"
Started: 2018.9.4, Ended: 2018.10.28
Participants: dlwillson (S), ts52 (N)
Winner: dlwillson

1) ts52: Homeworld Y1 B2 G3

2) dlwillson: H R3 B2 G3 Dlwillson
	ts52: Have a good game!

3) ts52: Build G1 Ts52
	dlwillson: You too!

4) dlwillson: B G1 Dlwillson

5) ts52: Trade G1 Y1 Ts52

6) dlwillson: T G1 Y1 Dlwillson

7) ts52: Build Y2 Ts52

8) dlwillson: Build Y2 Dlwillson

9) ts52: Discover Y1 Ts52 G3 Kermit

10) dlwillson: Discover Y1 Dlwillson G1 Field

11) ts52: Build G1 Ts52

12) dlwillson: B G1 Dlwillson

13) ts52: Trade G1 B1 Ts52

14) dlwillson: T G1 B1 Dlwillson

15) ts52: Build G1 Ts52

16) dlwillson: B G1 Dlwillson

17) ts52: Build G2 Ts52

18) dlwillson: B Y2 Dlwillson

19) ts52: Build Y3 Kermit

20) dlwillson: D Y2 Dlwillson B1 Sea

21) ts52: Move B1 Ts52 Kermit

22) dlwillson: B Y3 Field

23) ts52: Discover G1 Ts52 B3 Gonzo

24) dlwillson: S Y2 Dlwillson
M G1 Dlwillson Sea
M B1 Dlwillson Field

25) ts52: Trade G2 R2 Ts52

26) dlwillson: T Y1 R1 Field

27) ts52: Build G2 Ts52

28) dlwillson: B Y1 Field

29) ts52: Discover G2 Ts52 Y3 Bigbird

30) dlwillson: M Y1 Field Dlwillson

31) ts52: Move Y2 Ts52 Gonzo
	dlwillson: this game is for the tournament (GHWT2018)
	ts52: :) I assumed so, but good to be clear.

32) dlwillson: B Y2 Sea

33) ts52: Sacrifice G2 Bigbird
Build G2 Ts52
Build Y3 Gonzo

34) dlwillson: B G2 Sea

35) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build R1 Ts52

36) dlwillson: D G2 Sea B3 Sky

37) ts52: Discover G2 Ts52 B3 Grover

38) dlwillson: T Y2 R2 Sea

39) ts52: Move Y3 Kermit Sea

40) dlwillson: S Y2 Sea
M R2 Sea Kermit
M G1 Sea Sky

41) ts52: Sacrifice Y1 Kermit
Discover B1 Kermit Y1 Bigbird

42) dlwillson: T G1 R1 Sky

43) ts52: Build G1 Ts52

44) dlwillson: S G2 Sky
B R2 Kermit
B R3 Sky

45) ts52: Trade Y3 R3 Gonzo

46) dlwillson: M Y3 Field Grover

47) ts52: Move R3 Gonzo Field

48) dlwillson: S B1 Field
T R3 Y3 Sky

49) ts52: Move R2 Ts52 Gonzo

50) dlwillson: S R1 Field
A G2 Grover

51) ts52: Sacrifice G2 Gonzo
Build R1 Field
Build R3 Gonzo

52) dlwillson: B G2 Grover

53) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build B1 Bigbird

54) dlwillson: S Y3 Sky
M G2 Grover Ts52
M G2 Grover Ts52
C Ts52 G
M Y3 Grover Ts52

55) ts52: Sacrifice Y3 Sea
Move Y2 Gonzo Ts52
Move R2 Gonzo Ts52
Move G2 Gonzo Ts52

56) dlwillson: Sacrifice R2 Kermit
Attack R2 Ts52
Attack G2 Ts52
	ts52: Not sure how I missed that one. Well played!

57) ts52: Sacrifice R3 Gonzo
Attack G2S Ts52
Attack R2S Ts52
Pass
	dlwillson: Thanks! Your response had me worried. I'm still not completely confident.

58) dlwillson: S G3 Dlwillson
B R2 Kermit
B R3 Sky
B Y2 Dlwillson

59) ts52: Build Y2 Ts52
Catastrophe Ts52 Y

60) dlwillson: T R3 Y3 Sky

61) ts52: Trade R2 Y2 Ts52

62) dlwillson: M Y3 Sky Ts52

63) ts52: Sacrifice Y2 Ts52
Move R3 Field Dlwillson
Move B1 Bigbird Ts52

64) dlwillson: S R2 Kermit
A G2 Ts52
A R1 Ts52

65) ts52: Attack Y2 Dlwillson

66) dlwillson: A B1 Ts52

	dlwillson: Good game! Thank you!
	ts52: Thanks. Good game!


34533)
Variants: "Hard time"
Started: 2018.9.4, Ended: 2018.9.25
Participants: Draw5PlayAll (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H R3 B2 G3 Dlwillson

2) Draw5PlayAll: Homeworld B3 R1 G3
	dlwillson: Good luck and have fun!

3) dlwillson: B G1 Dlwillson

4) Draw5PlayAll: Build G1 Draw5playall

5) dlwillson: T G1 Y1 Dlwillson

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) dlwillson: B G1 Dlwillson

8) Draw5PlayAll: Build G1 Draw5playall

9) dlwillson: T G1 R1 Dlwillson

10) Draw5PlayAll: Trade G1 R1 Draw5playall

11) dlwillson: B R2 Dlwillson

12) Draw5PlayAll: Build R2 Draw5playall

13) dlwillson: D R2 Dlwillson Y1 Sol

14) Draw5PlayAll: Build Y2 Draw5playall

15) dlwillson: B R2 Dlwillson

16) Draw5PlayAll: Trade R2 B2 Draw5playall

17) dlwillson: B Y2 Dlwillson

18) Draw5PlayAll: Discover B2 Draw5playall G2 The

19) dlwillson: D R2 Dlwillson B1 Sea

20) Draw5PlayAll: Build B1 The

21) dlwillson: S G3 Dlwillson
B R2 Sea
B R3 Sol
B R3 Dlwillson

22) Draw5PlayAll: Discover Y1 Draw5playall G2 Better

23) dlwillson: Sacrifice Y2 Dlwillson
Move R2 Sol Better
Move R3 Sol The

24) Draw5PlayAll: Sacrifice Y1 Better
Discover B2 The G3 Distant

25) dlwillson: A B1 The

26) Draw5PlayAll: Build Y1 Draw5playall

27) dlwillson: T R3 G3 Dlwillson

28) Draw5PlayAll: Discover Y1 Draw5playall G2 Only

29) dlwillson: B R3 The

30) Draw5PlayAll: Build Y1 Only
	dlwillson: this game is for the tournament (GHWT2018)

31) dlwillson: T R3 Y3 The

32) Draw5PlayAll: Move R1 Draw5playall Only
	Draw5PlayAll: Nooooooooo

33) dlwillson: B R3 Better

34) Draw5PlayAll: Discover Y1 Only G1 Next

35) dlwillson: B Y2 Dlwillson
	Draw5PlayAll: Trying to make phrases like "in the next system" flow smoothly is a challenge.

36) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Next
Build Y3 Only
Build Y3 Draw5playall

37) dlwillson: S Y2 Dlwillson
M Y3 The Draw5playall
M R3 The Draw5playall

	dlwillson: I bet! I have no idea how SDG lays out systems. Do you?
	Draw5PlayAll: Alphabetically
	Draw5PlayAll: The ships are in a 5x5 grid placed randomly except the homeworld takes up the middle 3x3


34531)
Variants: "Hard time"
Started: 2018.9.4, Ended: 2018.9.20
Participants: dlwillson (S), Trydnt (N)
Winner: dlwillson

1) Trydnt: Homeworld B2 Y1 G3

2) dlwillson: H R3 B2 G3 Dlwillson

3) Trydnt: Build G1 Trydnt

4) dlwillson: B G1 Dlwillson

5) Trydnt: Trade G1 Y1 Trydnt
	dlwillson: Good luck and have fun!

6) dlwillson: Trade G1 Y1 Dlwillson

7) Trydnt: Build Y2 Trydnt

8) dlwillson: Build Y2 Dlwillson

9) Trydnt: Discover Y1 Trydnt G3 G3

10) dlwillson: Discover Y1 Dlwillson B1 Sea

11) Trydnt: Build G1 Trydnt

12) dlwillson: B G1 Dlwillson

13) Trydnt: Trade G1 B1 Trydnt

14) dlwillson: T G1 B1 Dlwillson

15) Trydnt: Move B1 Trydnt G3

16) dlwillson: D B1 Dlwillson G1 Field

17) Trydnt: Build G1 Trydnt

18) dlwillson: B G1 Dlwillson

19) Trydnt: Discover G1 Trydnt B3 B3

20) dlwillson: M G1 Dlwillson Sea

21) Trydnt: Build G2 B3

22) dlwillson: B G2 Dlwillson

23) Trydnt: Trade G2 R2 B3

24) dlwillson: Build G2 Sea

25) Trydnt: Build G2 Trydnt

26) dlwillson: T G1 R1 Sea

27) Trydnt: Move Y2 Trydnt B3

28) dlwillson: Sacrifice G3 Dlwillson
Build G1 Sea
Build R1 Sea
Build G3 Dlwillson

29) Trydnt: Move R2 B3 Field

30) dlwillson: M G1 Sea G3

31) Trydnt: Attack B1 Field

32) dlwillson: S R1 Sea
A Y1 G3

33) Trydnt: Build B2 G3

34) dlwillson: S G3 Dlwillson
B Y2 Sea
B Y3 G3
B Y3 Dlwillson

35) Trydnt: Sacrifice G2 Trydnt
Build Y3 B3
Build B3 Field

36) dlwillson: T Y2 R2 Sea

37) Trydnt: Build B3 Field

38) dlwillson: S R1 Sea
A B2 G3

39) Trydnt: Trade B3 R3 Field

40) dlwillson: S B2 G3
T Y3 G3 Dlwillson
T Y3 R3 G3

41) Trydnt: Sacrifice B1 G3
Trade B3 Y3 Field

42) dlwillson: S G3 Dlwillson
B G2 Sea
B R1 Sea
B G3 Dlwillson

43) Trydnt: Discover R3 Field Y3 Y3

44) dlwillson: S G3 Dlwillson
B Y2 G3
B R1 G3
B G3 Dlwillson

45) Trydnt: Build R1 Field

46) dlwillson: T R2 B2 Sea

47) Trydnt: Build B1 Field

48) dlwillson: M B2 Sea G3

49) Trydnt: Move B1 Field Y3

50) dlwillson: B B3 G3

51) Trydnt: Build B3 Field

52) dlwillson: M G1 G3 Trydnt

53) Trydnt: Sacrifice R1 Field
Attack G1 Trydnt

54) dlwillson: S Y2 G3
M G2 Sea Y3
M G2 Y3 Trydnt

55) Trydnt: Sacrifice Y2 B3
Move R3 Y3 Trydnt
Move G1 Trydnt B3

56) dlwillson: S G2 Dlwillson
B Y2 G3
B G2 Trydnt

57) Trydnt: Move G3 Trydnt Y3

58) dlwillson: S Y2 Dlwillson
M R3 G3 Trydnt
M R1 G3 Trydnt

59) Trydnt: Sacrifice Y3 Field
Move R2 Field Y3
Move R2 Y3 Trydnt
Move Y3 B3 Trydnt
Catastrophe Trydnt R

60) dlwillson: S B2 G3
T G2 Y2 Trydnt
T G2 Y2 Trydnt
C Trydnt Y
	Babamots: Is this game for the tournament? If so, it didn't get recorded. The same goes for dlwillson's games with Draw5PlayAll and ts52. If these are tournament games, you're the first person to get every game underway!
	Trydnt: I don't think this is for the tournament
	dlwillson: I think this is for the tournament, but since I'm.about to 
	dlwillson: As I was saying:
Since I'm about to lose, I'd be fine with this *not* being a tournament game.
	dlwillson: As I was saying:
Since I'm about to lose, I'd be fine with this *not* being a tournament game.
	dlwillson: As I was saying:
Since I'm about to lose, I'd be fine with this *not* being a tournament game.
	Trydnt: is there any way to check the notes line of the challenge after it's been accepted? I'm in several games some non-tournament and some tournament so gets tough keeping track
	Babamots: As far as I know, there's no way to see the challenge notes after the game starts. How about the clock setting? If it's not 2/2/7, it theoretically shouldn't be a tournament game.

	dlwillson: Good game! I was certain that I was going to run out of ships and you were going to pull the win.
	dlwillson: With regard to the tournament, I think I forgot to report the the games Babamots asked about. I mostly play from my phone. That's my excuse. I'll report the other two when I get to my computer.

Trydnt: Should this game count for the tournament, or shall we play another?
	Trydnt: let's play another. I don't believe this was a tournament game because I've been working my way up the tracker starting with lowest score people and moving on to tougher opponents (not perfect as not everyone has played as many games but good enough). Since you're at the top I was waiting until further in the tournament to challenge you. I'll launch another now


34525)
Started: 2018.9.4, Ended: 2018.10.24
Participants: Draw5PlayAll (S), mneme (N)
Winner: Draw5PlayAll

1) mneme: Homeworld R1 B2 G3

2) Draw5PlayAll: Homeworld B3 R2 G3

3) mneme: Build G1 Mneme

4) Draw5PlayAll: Build G1 Draw5playall

5) mneme: Trade G1 Y1 Mneme

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) mneme: Build G1 Mneme

8) Draw5PlayAll: Build G1 Draw5playall

9) mneme: Trade G1 R1 Mneme

10) Draw5PlayAll: Trade G1 R1 Draw5playall

11) mneme: Build R2 Mneme

12) Draw5PlayAll: Build R2 Draw5playall

13) mneme: Discover R2 Mneme G3 Melpomene

14) Draw5PlayAll: Trade R2 B2 Draw5playall

15) mneme: Build G1 Mneme

16) Draw5PlayAll: Build G1 Draw5playall

17) mneme: Discover G1 Mneme R3 Euterpe

18) Draw5PlayAll: Discover B2 Draw5playall G1 Fine

19) mneme: Sacrifice G3 Mneme
Build R2 Melpomene
Build R3 Melpomene
Build R3 Mneme

20) Draw5PlayAll: Build B1 Fine

21) mneme: Trade R3 G3 Mneme

22) Draw5PlayAll: Build R3 Draw5playall

23) mneme: Build G2 Mneme

24) Draw5PlayAll: Move R3 Draw5playall Fine

25) mneme: Sacrifice G1 Euterpe
Build R3 Mneme

26) Draw5PlayAll: Trade B2 Y2 Fine

27) mneme: Trade R1 B1 Mneme

28) Draw5PlayAll: Sacrifice Y2 Fine
Move R1 Draw5playall Fine
Move R1 Fine Melpomene
Catastrophe Melpomene Red

29) mneme: Build R1 Mneme

30) Draw5PlayAll: Discover G1 Draw5playall B1 Notariffs

31) mneme: Discover R3 Mneme Y3 Urania

32) Draw5PlayAll: Build B2 Fine

33) mneme: Move R3 Urania Notariffs

34) Draw5PlayAll: Sacrifice G1 Notariffs
Build R1 Fine

35) mneme: Sacrifice G2 Mneme
Build R2 Mneme
Build R2 Notariffs
	mneme: Was this intended to be our tournament game?  It's not appearing as such, so I assume not, but we don't have a message saying not so I want to be clear!


36) Draw5PlayAll: Trade B2 Y2 Fine
	Draw5PlayAll: You mean no one listed it in the table? Good because we forgot the hard time anyway

37) mneme: Trade R2 Y2 Mneme

38) Draw5PlayAll: Build B2 Fine
	mneme: yup.  It's a good practice game, though.
(also, it's good to have a message in the first move or two saying it's a tournament game, since the intro message doesn't get kept for the game itself!

39) mneme: Discover Y1 Mneme B3 Melpomene

40) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: I knew that name looked familiar!

41) mneme: Trade R2 G2 Notariffs
	Draw5PlayAll: That was close

42) Draw5PlayAll: Discover R1 Fine Y3 Port

43) mneme: Move R1 Mneme Melpomene

44) Draw5PlayAll: Move B2 Fine Melpomene

45) mneme: Move Y1 Melpomene Notariffs

46) Draw5PlayAll: Build B2 Fine
	Draw5PlayAll: What does melpomene mean?

47) mneme: Build G1 Mneme

48) Draw5PlayAll: Discover B1 Fine Y3 Trop
	mneme: The muse of chorus/tragedy.

49) mneme: Sacrifice G3 Mneme
Build G2 Mneme
Build G2 Notariffs
Build G3 Mneme

50) Draw5PlayAll: Sacrifice G1 Draw5playall
Build B3 Trop

51) mneme: Discover B1 Mneme Y3 Thalia

52) Draw5PlayAll: Sacrifice R1 Port
Attack R1 Melpomene

53) mneme: Sacrifice G3 Mneme
Build G1 Notariffs
Build G3 Mneme
Build Y1 Notariffs

54) Draw5PlayAll: Trade B3 G3 Trop

55) mneme: Sacrifice G3 Mneme
Build Y2 Notariffs
Build Y3 Mneme
Build B3 Thalia

56) Draw5PlayAll: Build G3 Trop

57) mneme: Sacrifice Y2 Notariffs
Move G1 Mneme Trop
Move G1 Notariffs Trop
Catastrophe Trop G

58) Draw5PlayAll: Build Y2 Draw5playall

59) mneme: Build G1 Notariffs

60) Draw5PlayAll: Build R1 Fine

61) mneme: Move G2 Notariffs Draw5playall

62) Draw5PlayAll: Trade G3 R3 Draw5playall

63) mneme: Sacrifice G2 Draw5playall
Build R2 Notariffs
Build G1 Notariffs

64) Draw5PlayAll: Trade Y2 G2 Draw5playall

65) mneme: Build G3 Mneme

66) Draw5PlayAll: Build G3 Draw5playall

67) mneme: Move Y3 Mneme Melpomene

68) Draw5PlayAll: Sacrifice B2 Melpomene
Trade G2 B2 Draw5playall
Pass

69) mneme: Move R3 Notariffs Draw5playall

70) Draw5PlayAll: Sacrifice R3 Draw5playall
Attack R3 Draw5playall
Pass
Pass
Pass
Pass
Pass
Pass
Pass
Pass

71) mneme: Build G2 Notariffs

72) Draw5PlayAll: Build G3 Draw5playall
Catastrophe Notariffs Green

73) mneme: Sacrifice G2 Mneme
Build R2 Notariffs
Build Y2 Mneme
	Draw5PlayAll: There seems to be a hole in the "a" in the word "plan".

74) Draw5PlayAll: Move R3 Draw5playall Notariffs
	mneme: true.  I hate it when that happens.

75) mneme: Sacrifice Y2 Mneme
Move R2 Notariffs Draw5playall
Move R2 Notariffs Draw5playall

76) Draw5PlayAll: Sacrifice R1 Melpomene
Attack R2 Draw5playall
	Draw5PlayAll: Wait the G3 is better.
	mneme: ug.  I built the wrong ship?  grr.  

77) mneme: Sacrifice G3 Mneme
Build R1 Draw5playall
Build R3 Draw5playall
Build Y2 Mneme
Catastrophe Draw5playall R

78) Draw5PlayAll: Sacrifice Y2 Fine
Move G3 Draw5playall Mneme
Move B2 Draw5playall Fine
	Draw5PlayAll: I thought I was doomed until that.

	mneme: heh.  Yup.
	Draw5PlayAll: Yeah, but even if the B1@Trop was yours it would have taken 6 movements to win.
	mneme: yeah, but that's like 2 turns, maybe 3.


34535)
Variants: "Hard time"
Started: 2018.9.5, Ended: 2018.11.13
Participants: Trydnt (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B3 R2 G3

3) ts52: Build G1 Ts52

4) Trydnt: Build G1 Trydnt

5) ts52: Trade G1 Y1 Ts52

6) Trydnt: Trade G1 Y1 Trydnt

7) ts52: Build Y2 Ts52

8) Trydnt: Build Y2 Trydnt

9) ts52: Build G1 Ts52

10) Trydnt: Build Y2 Trydnt

11) ts52: Discover Y1 Ts52 G3 Bigbird

12) Trydnt: Sacrifice Y2 Trydnt
Discover Y1 Trydnt G1 G1
Discover Y2 Trydnt G1 Gee1

13) ts52: Build G2 Ts52

14) Trydnt: Build G2 Trydnt

15) ts52: Discover G2 Ts52 B3 Gonzo

16) Trydnt: Sacrifice G2 Trydnt
Build Y2 G1
Build Y3 Gee1

17) ts52: Build Y3 Bigbird

18) Trydnt: Discover Y1 G1 B3 B3

19) ts52: Trade Y2 R2 Ts52

20) Trydnt: Build G2 Trydnt

21) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build R1 Ts52

22) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G1
Build Y3 G1

23) ts52: Move R2 Ts52 B3

24) Trydnt: Sacrifice Y2 Gee1
Move Y2 G1 Bigbird
Move Y2 G1 Bigbird
Catastrophe Bigbird Y

25) ts52: Trade G2 Y2 Gonzo

26) Trydnt: Sacrifice Y1 B3
Discover G2 Trydnt Y1 Y1

27) ts52: Build R1 Ts52

28) Trydnt: Discover G2 Y1 Y3 Y3

29) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Gonzo
Build G3 Ts52

30) Trydnt: Sacrifice Y3 G1
Move G2 Y3 Gee1
Move G2 Gee1 Gonzo
Catastrophe Gonzo G
Move Y3 Gee1 B3

31) ts52: Sacrifice G3 Ts52
Build R1 B3
Build R2 B3
Build R3 Ts52

32) Trydnt: Build G1 Trydnt

33) ts52: Trade R3 G3 Ts52

34) Trydnt: Trade G3 R3 Trydnt

35) ts52: Move R1 Ts52 Gonzo

36) Trydnt: Trade Y3 R3 B3
Catastrophe B3 R

37) ts52: Move G1 Ts52 Gonzo

38) Trydnt: Build G1 Trydnt

39) ts52: Build G2 Ts52

40) Trydnt: Trade G1 Y1 Trydnt

41) ts52: Build R1 Gonzo

42) Trydnt: Build Y1 Trydnt

43) ts52: Build Y2 Gonzo

44) Trydnt: Discover Y1 Trydnt G1 G1

45) ts52: Discover Y2 Gonzo B1 Grover

46) Trydnt: Build G2 Trydnt

47) ts52: Move R1 Gonzo Grover

48) Trydnt: Sacrifice G2 Trydnt
Build Y2 G1
Build Y3 Trydnt

49) ts52: Build Y3 Gonzo

50) Trydnt: Sacrifice Y1 Trydnt
Move R3 Trydnt G1

51) ts52: Build G2 Gonzo

52) Trydnt: Build R2 G1

53) ts52: Sacrifice G3 Ts52
Build R2 Gonzo
Build R3 Grover
Build R3 Ts52

54) Trydnt: Discover Y2 G1 G3 G3

55) ts52: Trade R3 Y3 Ts52

56) Trydnt: Discover Y1 G1 R3 R3

57) ts52: Sacrifice G2 Gonzo
Build G2 Gonzo
Build Y1 Grover

58) Trydnt: Move Y2 G3 G1

59) ts52: Trade R3 B3 Grover

60) Trydnt: Discover R2 G1 G3 G3

61) ts52: Sacrifice G2 Gonzo
Build G2 Gonzo
Build R3 Grover

62) Trydnt: Discover R3 G1 G3 Gee3

63) ts52: Move Y3 Gonzo G1

64) Trydnt: Move Y2 G1 Gee3

65) ts52: Move B3 Grover G3

66) Trydnt: Sacrifice Y1 R3
Discover R2 G3 G2 G2

67) ts52: Build G3 Ts52

68) Trydnt: Build R3 G2

69) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y1 Gonzo
Build B1 G3

70) Trydnt: Move Y2 Gee3 G2

71) ts52: Move Y2 Grover G3

72) Trydnt: Move R3 G2 Gonzo

73) ts52: Move R1 Grover Gonzo
Catastrophe Gonzo R

74) Trydnt: Sacrifice Y2 G2
Move R3 Gee3 G2
Move R3 G2 Gonzo

75) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Ts52
Build Y2 G1

76) Trydnt: Sacrifice R2 G2
Attack G2 Gonzo
Attack Y2 Gonzo

77) ts52: Discover G3 Ts52 R3 Elmo

78) Trydnt: Attack Y1 Gonzo

79) ts52: Sacrifice G3 Ts52
Build G2 Elmo
Build G3 Ts52
Build B1 G3

80) Trydnt: Attack G1 Gonzo

81) ts52: Move G2 Ts52 G3

82) Trydnt: Build R1 Gonzo

83) ts52: Move Y3 Ts52 Elmo

84) Trydnt: Discover R1 Gonzo R1 R1

85) ts52: Sacrifice G3 Elmo
Build G3 Elmo
Build R2 Grover
Build R2 Ts52



34537)
Variants: "Unrated"
Started: 2018.9.5, Ended: 2019.9.14
Participants: minoan (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R3 G2 B3

2) minoan: Homeworld B2 R1 G3

3) Babamots: Build B1 Babamots

4) minoan: Build G1 Minoan

5) Babamots: Trade B1 G1 Babamots

6) minoan: Trade G1 Y1 Minoan

7) Babamots: Build G1 Babamots

8) minoan: Build Y1 Minoan

9) Babamots: Trade G1 Y1 Babamots

10) minoan: Build Y2 Minoan

11) Babamots: Build Y2 Babamots

12) minoan: Trade Y2 B2 Minoan

13) Babamots: Discover Y2 Babamots G1 Risa

14) minoan: Build Y2 Minoan

15) Babamots: Build Y2 Babamots

16) minoan: Discover Y1 Minoan G3 Dagobah

17) Babamots: Trade Y1 R1 Babamots

18) minoan: Build B1 Minoan

19) Babamots: Build B1 Babamots

20) minoan: Trade B1 R1 Minoan

21) Babamots: Trade B3 G3 Babamots

22) minoan: Build R2 Minoan

23) Babamots: Discover G1 Babamots B1 Bolarus

24) minoan: Trade R2 G2 Minoan

25) Babamots: Build B1 Babamots

26) minoan: Discover G2 Minoan B3 Coruscant

27) Babamots: Move B1 Babamots Risa



34538)
Variants: "Hard time"
Started: 2018.9.6, Ended: 2018.10.2
Participants: Babamots (S), mneme (N)
Winner: Babamots

1) mneme: Homeworld R1 B2 G3
	Babamots: For the record, this is for the tournament. Good luck!
	mneme: This is good to have in the comment thread! (since those notices don't make it to the log at all! )


2) Babamots: Homeworld B3 R2 G3

3) mneme: Build G1 Mneme
	Babamots: One of the things I would like to change about SDG is that observers can't see the challenge notes or clock situation. And as long as I'm making wishes, archive view should show the stash.

4) Babamots: Build G1 Babamots
	mneme: YES.  There would need to be micro-images of the stash or it would get seriously awk though.


5) mneme: Trade G1 Y1 Mneme

6) Babamots: Trade G1 Y1 Babamots

7) mneme: Build G1 Mneme

8) Babamots: Build G1 Babamots

9) mneme: Trade G1 R1 Mneme

10) Babamots: Trade G1 R1 Babamots

11) mneme: Build R2 Mneme

12) Babamots: Build R2 Babamots

13) mneme: Trade R2 Y2 Mneme

14) Babamots: Discover R1 Babamots G1 Rubicun

15) mneme: Discover R1 Mneme G3 Caliope

16) Babamots: Build Y1 Babamots

17) mneme: Move Y2 Mneme Caliope

18) Babamots: Move Y1 Babamots Rubicun

19) mneme: Build G1 Mneme

20) Babamots: Build Y2 Rubicun

21) mneme: Discover G1 Mneme Y3 Clio

22) Babamots: Move Y2 Rubicun Clio

23) mneme: Discover G1 Clio Y2 Urania

24) Babamots: Sacrifice G3 Babamots
Build Y3 Rubicun
Build Y3 Babamots
Pass

25) mneme: Build G1 Mneme

26) Babamots: Move Y3 Rubicun Caliope

27) mneme: Sacrifice Y2 Caliope
Discover G1 Mneme B3 Polyhymnia
Discover R1 Caliope Y2 Terpsichore

28) Babamots: Move Y3 Caliope Urania

29) mneme: Discover G1 Urania G3 Euterpe

30) Babamots: Trade R2 G2 Babamots
	Babamots: Must be a hard game if we're both undoing things :-P

31) mneme: Build G2 Mneme

32) Babamots: Discover R1 Rubicun G3 Orion

33) mneme: Sacrifice G3 Mneme
Build G2 Polyhymnia
Build G3 Mneme
Build R2 Terpsichore

34) Babamots: Trade Y1 B1 Babamots

35) mneme: Move R2 Terpsichore Orion
	Babamots: Lots of small colonies out there.
	Draw5PlayAll: What is Rubicun?
	Babamots: It's the planet the TNG crew visits in the episode "Justice."

36) Babamots: Sacrifice Y1 Rubicun
Discover R1 Orion G1 Rubicun
	mneme: Ah, thanks.  

37) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build Y1 Mneme
Build Y1 Mneme

38) Babamots: Move Y3 Urania Polyhymnia

39) mneme: Sacrifice Y1 Mneme
Move G2 Polyhymnia Rubicun

40) Babamots: Sacrifice R1 Rubicun
Attack G1 Polyhymnia

41) mneme: Sacrifice G3 Mneme
Build R1 Orion
Build R2 Terpsichore
Build G3 Mneme

42) Babamots: Sacrifice G2 Babamots
Build G2 Polyhymnia
Build Y1 Polyhymnia

43) mneme: Sacrifice G2 Mneme
Build R3 Orion
Build R3 Terpsichore

44) Babamots: Trade Y3 R3 Polyhymnia

45) mneme: Move R3 Terpsichore Clio

46) Babamots: Discover Y2 Clio B1 Bolarus

47) mneme: Build G2 Euterpe

48) Babamots: Sacrifice G2 Polyhymnia
Build Y2 Polyhymnia
Build Y3 Bolarus

49) mneme: Build G2 Mneme

50) Babamots: Trade Y1 B1 Polyhymnia

51) mneme: Trade G2 B2 Mneme

52) Babamots: Build G2 Polyhymnia

53) mneme: Sacrifice B2 Mneme
Trade R2 B2 Orion
Trade R1 Y1 Orion
	Babamots: I wanted to find a better way to get that y3, but I you had tricky responses to any other approach I could find.
	mneme: I do what I can. :)

54) Babamots: Build R1 Polyhymnia

55) mneme: Build R2 Orion
	Babamots: Sorry, I'm having a heck of a time making up my mind. This is tough.

56) Babamots: Move R3 Polyhymnia Bolarus

57) mneme: Move Y1 Mneme Euterpe

58) Babamots: Move Y3 Bolarus Terpsichore

59) mneme: Move Y1 Euterpe Terpsichore

60) Babamots: Move Y3 Terpsichore Rubicun

61) mneme: Sacrifice G1 Euterpe
Build G1 Rubicun

62) Babamots: Discover Y3 Rubicun B3 Kronos

63) mneme: Build B2 Orion

64) Babamots: Move G2 Polyhymnia Bolarus
	mneme: I'm not quite sure where you're heading here mentally, but I'd be willing to accept a draw here.  It feels to me like most aggressive actions are likely to disrupt the attacker much more than the defender.
	Babamots: I thought I was about to make a very good move, but you have a tricky response that actually makes it terrible.

I know what you mean about it being super hard to attack, but I'm not quite ready to call it a draw. I've got a few ideas of how I may yet get an upper hand. I'm afraid I don't have any idea how you might get ahead, though :-P.

65) mneme: Move B2 Orion Mneme
	Draw5PlayAll: What move?
	Draw5PlayAll: Maybe answer in a PM and link to this position in the archive,
	mneme: There are a few ways.  Mostly through your making a mistake, but not entirely.


66) Babamots: Move G1 Polyhymnia Rubicun
Catastrophe Rubicun G

67) mneme: Build G1 Mneme

68) Babamots: Build G1 Bolarus

69) mneme: Move G1 Mneme Clio

70) Babamots: Move G2 Bolarus Kronos
	mneme: That was a fun sequence.  Sure you don't want to take that tie offer?
	Babamots: Yeah, somehow I thought that would change something, but I guess it didn't. Gimme a few more moves. I may be on to something this time.

71) mneme: Build G1 Clio

72) Babamots: Build G2 Kronos

73) mneme: Move G1 Clio Terpsichore

74) Babamots: Move G1 Bolarus Polyhymnia

75) mneme: Sacrifice G2 Euterpe
Build G2 Clio
Build G3 Terpsichore

76) Babamots: Move R3 Bolarus Polyhymnia

77) mneme: Move R2 Terpsichore Polyhymnia

78) Babamots: Sacrifice R1 Polyhymnia
Attack R2 Polyhymnia

79) mneme: Move R3 Orion Bolarus

80) Babamots: Move Y2 Bolarus Babamots

81) mneme: Move Y1 Terpsichore Bolarus

82) Babamots: Sacrifice Y2 Polyhymnia
Discover B1 Babamots R1 Betazed
Move G2 Kronos Mneme

83) mneme: Move R3 Clio Mneme

84) Babamots: Sacrifice Y3 Kronos
Move G1 Polyhymnia Mneme
Move G2 Kronos Mneme
Move R3 Polyhymnia Mneme
Catastrophe Mneme G

85) mneme: Sacrifice G3 Terpsichore
Build Y2 Bolarus
Build Y3 Orion
Build B3 Orion

86) Babamots: Sacrifice Y3 Babamots
Move R2 Polyhymnia Mneme
Move B1 Polyhymnia Mneme
Catastrophe Mneme R
Move B1 Betazed Mneme
Catastrophe Mneme B

	Babamots: Wow, very good game! So many games end because of a blunder, but you played well every step of the way.
	mneme: The same.  If you'd ever let me have a y2, much less a y3 before you were all set up, it would have been a very different game!


34543)
Variants: "Unrated"
Started: 2018.9.6, Ended: 2018.9.17
Participants: eliscinsky (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 G1 Y3
	Babamots: For the record, this is a practice game and not part of the ongoing tournament.

2) eliscinsky: Homeworld R1 B2 G3
	eliscinsky: Understood & Agreed. Thanks for the rematch!

3) Babamots: Build Y1 Babamots

4) eliscinsky: Build G1 Eliscinsky

5) Babamots: Trade Y1 G1 Babamots
	eliscinsky: I see the advantage of your HW. Nice.

6) eliscinsky: B G2 Eliscinsky
	Babamots: What do you see as the advantage of my homeworld? I deliberately took a setup that I consider a bit weak.
	eliscinsky: The ability to build y quickly, and gain larges soon. Or am I missing something?

7) Babamots: Build G2 Babamots
	Babamots: It's true that starting with a yellow ship gives me a bit of a head start on getting yellows, but I think it slows down my overall expansion a bit. Here's my theory: in order to expand rapidly, you want to either get a blue ship in a green system or vice versa (in order to create many-colored ships closer to your enemy than your home is). If you're focused on gathering yellow, you're slower to get blue and green together in a forward system.

8) eliscinsky: Trade G2 Y2 Eliscinsky

9) Babamots: Discover G1 Babamots B2 Bajor

10) eliscinsky: Discover G1 Eliscinsky B3 Trill

11) Babamots: Discover G2 Babamots B2 Cardassia

12) eliscinsky: B G2 Trill

13) Babamots: Build Y1 Babamots

14) eliscinsky: Trade G1 Y1 Trill

15) Babamots: Move Y1 Babamots Cardassia

16) eliscinsky: Build G1 Eliscinsky

17) Babamots: Build Y1 Cardassia

18) eliscinsky: Build Y2 Eliscinsky

19) Babamots: Trade Y1 R1 Cardassia

20) eliscinsky: Build G2 Trill

21) Babamots: Build G3 Bajor

22) eliscinsky: Sacrifice Y2 Eliscinsky
Move G2 Trill Bajor
Move G2 Trill Bajor
Catastrophe Bajor Green

23) Babamots: Build R1 Cardassia
	Babamots: Unfortunately, if you build a g3 now in either of your systems, I can catastrophe it in a good exchange for me.
If you build at home:
sacrifice y3 Babamots
move g1 Bajor Trill
move g1 Trill eliscinsky
move g3 Cardassia Babamots
catastrophe eliscinsky g
	eliscinsky: Yes, I figured I should watch out for that.  That's why I figured I'd do ...

24) eliscinsky: T Y2 R2 Eliscinsky

25) Babamots: Build Y1 Cardassia

26) eliscinsky: M Y1 Trill Eliscinsky
	Babamots: By building the last r1 piece, I'm trying to force you to trade your y2 for r2. That will limit your ability to build more yellow.

You could also trade your g3 for r3, but it's nice to have smaller red pieces in case you need to sacrifice for a single attack.

Failing to have red ships while my opponent has them is pretty high on that list of danger signs I sent you. But I won't attack yet since the only ship I could come after is your y1, which can just run away.

27) Babamots: Build Y2 Cardassia

28) eliscinsky: Build Y2 Eliscinsky

29) Babamots: Discover Y2 Cardassia Y3 Iconia

30) eliscinsky: D R2 Eliscinsky Y3 Trill

31) Babamots: Build Y2 Babamots

32) eliscinsky: M G1 Eliscinsky Trill

33) Babamots: Build G1 Cardassia
	Babamots: I discovered a y3 system to keep the piece away from you. My hope is to sacrifice my g2 to build the remaining y2 and y3. You can block me in a couple of ways.

34) eliscinsky: B G2 Eliscinsky

35) Babamots: Move G1 Cardassia Iconia

36) eliscinsky: B G2 Trill

37) Babamots: Build G3 Cardassia

38) eliscinsky: Build R2 Trill

39) Babamots: Build G3 Iconia

40) eliscinsky: D R2 Trill B2 Betazed

41) Babamots: Sacrifice Y3 Babamots
Move G1 Iconia Eliscinsky
Move G2 Cardassia Iconia
Move G2 Iconia Eliscinsky
Catastrophe Eliscinsky G

42) eliscinsky: Trade Y2 R2 Eliscinsky
	Babamots: I didn't foresee this problem for you last night. Since I have a factory in Cardassia, I can still build the g3 even after your partial block. If I do that, you'll be able to sacrifice your y2 to use your g1 for a green catastrophe in Iconia, but looking at it from this moment, you're losing a y2 and a g1 to kill my g1 (after which, I'll build that y2 piece, and you'll have an even more serious yellow shortage).

All that to say, you may want to undo. I have to go for now, but I'll look for a better move for you this afternoon.

43) Babamots: Move G3 Iconia Eliscinsky
	eliscinsky: Thanks. I've seen many issues with my available options.  Have to go back to a longer chess like game.  BTW, what do you think of my last move?
	Babamots: When you say "last move," I guess you mean building an r2. It gives you another medium ship without making large ones available to me, so I think it's pretty good.

If you now spread out your reds (mine are sill in the same system together), you're a bit better prepared to compete for the large red pieces. You're going to want another large ship soon to defend Trill before I decide to move a large there to attack.

44) eliscinsky: M R2 Trill Cardassia
	eliscinsky: That's what I was thinking. D r2 ....

45) Babamots: Attack R2 Eliscinsky
	eliscinsky: BTW, I really appreciate all the help and training. 
	Babamots: Well, I hope I help some. I don't feel like a great teacher when I usually realize what you should have done *after* you do something else. Maybe I like winning too much :-P
	Babamots: Here's a little quiz: what would you do if I moved my g3 to Trill?
	eliscinsky: In any competition there is usually one winner and one loser.  If I lose, I try to learn something from the loss.  So NP if you win. ;)

So now you Move G3 Cardassia Trill ... I could:

1) Move G2 eliscinsky Trill, Catastrophe Trill Green ... or ...

2) Sacrifice G3 Eliscinsky, Build R2 Trill, Build R3 Betazed, Build G3 eliscinsky (if I build an R3 in Trill you'll just attach it with your G3 by sacrificing one of your R1's. Good return.) ... or ...

3) Move R2 Trill eliscinsky, & allow you to sacrifice your 2 R's to attach my G's in Trill, then Move G2 eliscinsky Trill, Catastrophe Trill Green - plus the Y3 will also be freed up.  Meanwhile Trade G2 R2 eliscisnky, then Discover R2 eliscinsky R3 Romulus ... or ...

4) Move R2 Trill Betazed, but it would get stuck there, as I don't want to give up my Yellow.


Moving R2 Trill Cardassia ... does me no good as you'd just attach and take the R2 over.
Also at some point you're going to have to Trade for more Red.
If I allow you to take Trill by using your R1's, then I can try to snatch up all the Red, and once I have a R3 move it into you HW and attack.
Not sure what I'm going to do. I'm thinking it all over, trying to see if I missed anything.  For now #1 would seem the best option.

I seem to be one step behind to really make a move to put me into an advantage.
BTW, I'm feeling squeezed / penned in. Thanks ;)

	Babamots: Some good thoughts. Here are my thoughts to your thoughts.

1) You can do better than your first suggestion. Instead of moving the g2 with yellow, do what I call "green travel" to get your g2 to Trill (sacrifice and build), and then you have an extra green action to build an r2:

sacrifice g2 eliscinsky
build g2 Trill
build r2 Trill
catastrophe Trill g

2) I think this is your best move. You just ignore my threat and score a large ship. I would probably attack your r2, but then you could do the green catastrophe from suggestion 1).

3) Also pretty good. Escape with the one ship you wouldn't be able to catastrophe away after I attacked it. I don't understand the end of your continuation though. You would put an r2 ship in an r3 system?

4) I agree that this would solve the immediate problem but it doesn't get you much.
	eliscinsky: Ahhh, I still overlook those types of plays sometimes.

Also about your teaching ... If you can get your student to understand / comprehend / learn a new idea or method or way of thinking then you've done the job.  So to you I say "Well done".  You've most certainly grown my understanding of the game.

In fact, as most good students do, I was up half the night (2:30 & 4:00 am - couldn't sleep) thinking about HWs and what else I could do.  Then I saw your message, and thought about it a little more but finally got back to sleep. haha.

So it is your move.  Since I see other moves / strategy you could do, I'll await your next move.  Have you considered moving G's from Iconia to eliscinsky.  I'll either have to:
1) take your 1st G, but you 2nd would Catastrophe my G's. You'd have to get some Reds back but I think in the end you'd still win.  ... or ...
2) move my G or Y out but that will allow you to take my HW.  ( I think you're going to win anyway, but that's just me.;) )

	Babamots: I lost sleep in the last tournament rehearsing my opponent's anticipated moves and my responses. Stare at a position long enough and it will get stuck in your head. And that's not always bad. At least once, obsessive mental review made me realize I'd made a blunder that I was able to undo.

I never planned on moving my g3 to Trill, but since I have a large that *could* go there, it should have crossed your mind before you made your previous move. That's one of the "red flag" scenarios on the list I sent in our last game: "My opponent has a piece too large for me to attack in one of my systems." It was a good thought exercise.

I haven't really been looking for a killing blow yet, but now that I'm looking, it looks like you're right about it.

Based on this position and my own recent bad experience, I'm thinking about adding something to the red flag list: "Your only large in your home system is the same color as another ship/marker there."

46) eliscinsky: Sacrifice G2 Trill
Build Y2 Eliscinsky
Build R3 Cardassia
Catastrophe Cardassia Red
	Babamots: 1) If you build y3 in your home, I'll move my y2 there for a winning catastrophe.
2) If you sacrifice a yellow to move a ship to my home, I'll attack it and proceed with plan 3).
3) In all other cases, I plan to move my g3 to your home.

You have a move that will delay the game longer than my suggestions 1) or 2) would (though not for VERY long). Can you find it?
	eliscinsky: Aaarrrggghhhh! You distracted me! (not really) LOL!

Let's see ... not sure if this will work for me ... but ...

47) Babamots: Sacrifice R2 Eliscinsky
Attack Y1 Eliscinsky
Attack Y2 Eliscinsky
	Babamots: I was going to suggest getting a green ship to your home, preferably by trading, say "trade y1 g1 eliscinsky." Then, if I move in my g3, you can catastrophe it by building two more greens by sacrificing your g2 in Trill. It's a high price, but it would have delayed the game a bit more.

	eliscinsky: Had I traded my Y2 for a B2 in eliscinsky we might have a very different game. 

Gasping for breath!!! LOL
	eliscinsky: Nope, guess I couldn't have done that, but was there a g2, or just left it alone.  
	eliscinsky: UNCLE!!!
	Babamots: I'll let your remaining troops love if they surrender. 
	Babamots: I'll also let them live.


34539)
Variants: "Hard time"
Started: 2018.9.6, Ended: 2018.9.16
Participants: speardane (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	Babamots: For the record, this is for the tournament. And this is the AI account? I'm impressed with its performance so far. I didn't suppose it would be good enough to beat anyone.

2) speardane: Homeworld Y3 G2 B3

3) Babamots: Build G1 Babamots
	speardane: Indeed, speardane is an AI. It's really not GOOD enough to beat anyone; it's just that some players have played BAD enough to get beaten by it. ;)

4) speardane: Build B1 Speardane

5) Babamots: Trade G1 Y1 Babamots

6) speardane: Trade B1 R1 Speardane

7) Babamots: Build Y1 Babamots

8) speardane: Build R1 Speardane

9) Babamots: Build Y1 Babamots

10) speardane: Discover R1 Speardane B1 Delos

11) Babamots: Discover Y1 Babamots G3 Orion

12) speardane: Build R2 Speardane
	Babamots: Do you ever cringe when you see the moves your AI chooses?

13) Babamots: Build Y2 Babamots
	speardane: Specifically one move near the end of game 34513, yes. Generally the bad moves aren't so blatant that I bother to notice. I just cut-and-paste back and forth without trying to analyze on the fly, because that'd just confuse me in my OWN tournament games. :)

14) speardane: Trade R2 Y2 Speardane

15) Babamots: Discover Y1 Babamots B3 Betazed

16) speardane: Move Y2 Speardane Delos

17) Babamots: Sacrifice G3 Babamots
Build Y2 Orion
Build Y3 Betazed
Build Y3 Babamots

18) speardane: Trade R1 G1 Delos

19) Babamots: Trade Y1 G1 Babamots

20) speardane: Build Y1 Delos

21) Babamots: Trade Y1 R1 Betazed

22) speardane: Trade Y2 R2 Delos

23) Babamots: Move Y3 Betazed Delos

24) speardane: Move R2 Delos Betazed

25) Babamots: Sacrifice R1 Betazed
Attack Y1 Delos

26) speardane: Sacrifice G1 Delos
Build R1 Betazed

27) Babamots: Build Y1 Babamots

28) speardane: Trade R2 Y2 Betazed

29) Babamots: Trade Y2 R2 Babamots

30) speardane: Trade R1 G1 Betazed

31) Babamots: Build Y2 Orion

32) speardane: Build B1 Speardane

33) Babamots: Discover G1 Babamots B3 Bolarus

34) speardane: Discover B1 Speardane R1 Lebling

35) Babamots: Move Y2 Orion Lebling

36) speardane: Sacrifice B1 Lebling
Pass

37) Babamots: Build G1 Bolarus

38) speardane: Build R2 Speardane

39) Babamots: Sacrifice Y1 Orion
Move G1 Bolarus Lebling

40) speardane: Trade R2 G2 Speardane

41) Babamots: Build G2 Lebling

42) speardane: Build G3 Betazed

43) Babamots: Sacrifice Y3 Delos
Move Y2 Lebling Speardane
Move Y1 Delos Speardane
Move Y2 Orion Lebling

44) speardane: Sacrifice G2 Speardane
Build Y1 Betazed
Build Y3 Betazed

45) Babamots: Move G1 Lebling Speardane

46) speardane: Sacrifice Y3 Betazed
Move Y1 Betazed Babamots
Move Y2 Betazed Babamots
Move G3 Betazed Lebling
Catastrophe Babamots Yellow

47) Babamots: Sacrifice G2 Lebling
Build G2 Speardane
Build Y1 Speardane
Catastrophe Speardane Y
	speardane: Well, that was an example of a move that I think was obviously suboptimal, unless I'm missing something. :P
	Babamots: Looks like I've been moving too quickly in this game. I didn't give your AI enough credit. I didn't notice that coming, but I think I still win in a couple of moves.

48) speardane: Pass
	Babamots: Oh, you mean you AI's move was suboptimal. I just checked the archive view and yes, I should have lost just now. Dang. Well, thanks for entering the move honestly. That's very embarrassing on my part.
	Babamots: I should have catastrophe'd that yellow fleet in my orbit, but I didn't want to delay my victory by even one move. Shoulda seen it was a serious threat.

49) Babamots: Build G2 Speardane
Catastrophe Speardane G
	speardane: Wow, that really was close -- I believe if speardane had moved g3 to your homeworld instead of bizarrely going after those two medium ships at Lebling, it would have been game over the other way. Pretty coincidental you started this game by asking if speardane ever did anything boneheaded! :)
	Babamots: That's the move I saw too. I nearly swallowed my tongue when I saw I should have lost. Overall, it plays much better than I expected. A little tuning and maybe it'll get me next time. Thanks for the game!
	Draw5PlayAll: 1. Why is speardane referring to self in third person?
2. What are Bolarus and Lebling?
	Draw5PlayAll: Oh. Who is the primary (human) account for speardane? Is the code on github?
	Babamots: ajo operates the "speardane" AI. I think it uses code that's on the GitHub project I think you've asked about before, though maybe he uses a private, updated version.
In Star Trek, Bolarus is the homeworld of the Bolians. The have blue skin and are usually bald. The "Bank of Bolius" is an important one for people trying to keep their finances secret.
I don't know what Lebling is. He named that one.
	Draw5PlayAll: I would like to find a link
	Babamots: My profile has a link to ajo's AI project on GitHub.
	Draw5PlayAll: Oh I did not know that ajo and Quuxplusone were the same person.
	speardane: I just noticed this conversation. The code on the GitHub is indeed the code used by speardane in this tournament, except for one game (against mneme) where I decided to try an alpha-beta search thing that ended up not working very well.
	speardane: The AI's default system names are all surnames of pioneers in computer gaming/AI, except for "Delos," which is a reference to https://en.wikipedia.org/wiki/Westworld_(film) . "Lebling" in this context is therefore a reference to https://en.wikipedia.org/wiki/Dave_Lebling .



34546)
Variants: "Hard time"
Started: 2018.9.8, Ended: 2018.9.27
Participants: Babamots (S), deanthebean (N)
Winner: Babamots

1) deanthebean: Homeworld G3 Y2 B3

2) Babamots: Homeworld B2 R1 G3
	deanthebean: Have fun!

3) deanthebean: Build B1 Deanthebean
	Babamots: You too! And may life give you the time to represent your best play! (TLDR good luck!)

4) Babamots: Build G1 Babamots
	deanthebean: Thanks and likewise!

5) deanthebean: Build B1 Deanthebean

6) Babamots: Trade G1 B1 Babamots

7) deanthebean: Trade B1 R1 Deanthebean

8) Babamots: Build G1 Babamots

9) deanthebean: Trade B1 Y1 Deanthebean

10) Babamots: Trade G1 Y1 Babamots

11) deanthebean: Build B1 Deanthebean

12) Babamots: Build Y1 Babamots

13) deanthebean: Trade B3 G3 Deanthebean

14) Babamots: Discover Y1 Babamots Y3 Iconia

15) deanthebean: Discover Y1 Deanthebean B1 Newstar

16) Babamots: Build Y2 Babamots

17) deanthebean: Build B2 Deanthebean

18) Babamots: Discover Y2 Babamots B3 Andoria

19) deanthebean: Discover B1 Deanthebean G1 Newerstar

20) Babamots: Sacrifice G3 Babamots
Build Y2 Iconia
Build Y3 Andoria
Build Y3 Babamots

21) deanthebean: Sacrifice G3 Deanthebean
Build B2 Deanthebean
Build B3 Newerstar
Build B3 Deanthebean

22) Babamots: Discover Y1 Iconia G2 Risa

23) deanthebean: Trade B3 G3 Newerstar

24) Babamots: Trade B1 G1 Babamots

25) deanthebean: Trade B3 G3 Deanthebean

26) Babamots: Build G1 Babamots

27) deanthebean: Move Y1 Newstar Risa

28) Babamots: Trade G1 R1 Babamots

29) deanthebean: Move Y1 Risa Newerstar

30) Babamots: Build G1 Babamots
	Draw5PlayAll: Andoria? Risa?
	Babamots: In Star Trek, Andoria is the homeworld of the Andorians (an aggressive, blue-skinned race with large antanae).
Risa is also a Star Trek world. It's a popular tropical vacation planet.

31) deanthebean: Build R2 Deanthebean

32) Babamots: Move G1 Babamots Iconia

33) deanthebean: Move G3 Newerstar Iconia

34) Babamots: Move Y2 Iconia Newerstar

35) deanthebean: Sacrifice R1 Deanthebean
Attack G1 Iconia

36) Babamots: Sacrifice R1 Babamots
Attack Y1 Newerstar

37) deanthebean: Move R2 Deanthebean Newerstar

38) Babamots: Sacrifice Y1 Newerstar
Discover Y2 Newerstar R2 Kronos

39) deanthebean: Trade B1 Y1 Newerstar

40) Babamots: Trade Y1 R1 Babamots

41) deanthebean: Build Y1 Newerstar

42) Babamots: Build G2 Babamots

43) deanthebean: Move G3 Iconia Kronos

44) Babamots: Discover Y2 Kronos R1 Romulus

45) deanthebean: Build G2 Iconia

46) Babamots: Move G1 Babamots Andoria

47) deanthebean: Move R2 Newerstar Iconia

48) Babamots: Move R1 Babamots Andoria

49) deanthebean: Build R2 Iconia

50) Babamots: Move G1 Andoria Romulus

51) deanthebean: Move R2 Iconia Risa

52) Babamots: Sacrifice G2 Babamots
Build G2 Romulus
Build R3 Andoria

53) deanthebean: Move G3 Deanthebean Romulus

54) Babamots: Sacrifice Y2 Romulus
Move R3 Andoria Romulus
Move R3 Romulus Deanthebean

55) deanthebean: Move Y1 Newerstar Kronos

56) Babamots: Sacrifice G2 Romulus
Build R3 Deanthebean
Build R3 Deanthebean

57) deanthebean: Sacrifice G3 Kronos
Build B1 Deanthebean
Build B1 Deanthebean
Build B1 Deanthebean
	deanthebean: I can't see a defence to that! well played. 

58) Babamots: Build Y2 Risa
Catastrophe Deanthebean B
	deanthebean: OK. Let's try this. 

	Babamots: Thanks for the game!


34553)
Variants: "Hard time"
Started: 2018.9.8, Ended: 2018.9.19
Participants: Felix (S), ajo (N)
Winner: Felix

1) ajo: Homeworld Y3 B2 G3

2) Felix: Homeworld R1 B2 G3

3) ajo: Build G1 Ajo
	Felix: Good luck and have fun!

4) Felix: B G1 Felix
	ajo: Good luck!

5) ajo: Trade G1 Y1 Ajo

6) Felix: T G1 Y1 Felix

7) ajo: Build G1 Ajo

8) Felix: B G1 Felix

9) ajo: Discover G1 Ajo B1 Alpha

10) Felix: T G1 B1 Felix

11) ajo: Build G1 Alpha

12) Felix: B B1 Felix

13) ajo: Trade G1 Y1 Alpha

14) Felix: D B1 Felix G3 Rim

15) ajo: Build G1 Ajo

16) Felix: Sacrifice G3 Felix
Build B2 Rim
Build B3 Rim
Build B3 Felix

17) ajo: Build Y2 Alpha

18) Felix: Trade B3 G3 Felix
	ajo: Shoot, I fall for that "no factory but it doesn't matter because I'm getting a blue monopoly" trap waaay too much. It needs a catchy name like the Bluebird Mistake. Maybe we should call it the Yellowbird. :P

19) ajo: Discover Y1 Alpha B3 Beta
	Felix: Haha, that's a good name! It is pretty common. I've made the same mistake myself many times!

20) Felix: Build B3 Felix

21) ajo: Sacrifice G3 Ajo
Build Y2 Alpha
Build Y2 Beta
Build Y3 Ajo

22) Felix: Trade B3 Y3 Rim
	ajo: Practicing. ;)

23) ajo: Trade Y1 R1 Ajo
	Felix: I'm honestly still not sure if I'd rather have a monopoly on blue or yellow. Mobility is everything in the end.

24) Felix: Build B3 Rim
	ajo: Yes, but I'd rather have a monopoly on blue than not have a monopoly on anything, which is my situation at the moment!

25) ajo: Build R1 Ajo

26) Felix: Trade B3 R3 Rim

27) ajo: Discover Y2 Alpha B3 Gamma

28) Felix: Build Y1 Rim

29) ajo: Build G1 Alpha

30) Felix: Build R2 Rim

31) ajo: Sacrifice Y2 Gamma
Move G1 Alpha Rim
Move G1 Alpha Rim

32) Felix: Sacrifice Y3 Rim
Move R3 Rim Alpha
Move B1 Rim Alpha
Discover B2 Rim G2 Booger

33) ajo: Sacrifice Y2 Alpha
Move G1 Rim Booger
Move G1 Booger Beta
	Felix: Very nice attack! And interesting. Really made me think.

34) Felix: Build G2 Felix
	ajo: Doesn't seem to have hurt you much, though.

35) ajo: Build G2 Ajo

36) Felix: S G2 Felix
B B3 Alpha
B R2 Alpha

37) ajo: Sacrifice Y1 Beta
Discover R1 Ajo Y1 Gamma

38) Felix: T B3 G3 Alpha

39) ajo: Sacrifice G1 Rim
Build R2 Gamma

40) Felix: B B3 Booger

41) ajo: Sacrifice G2 Ajo
Build R3 Gamma
Build R3 Ajo

42) Felix: M R2 Rim Gamma
C Gamma Red

43) ajo: Discover R3 Ajo G1 Gamma

44) Felix: T B3 Y3 Booger

45) ajo: Build G2 Ajo

46) Felix: B B3 Booger

47) ajo: Build G2 Beta

48) Felix: Sacrifice G3 Felix
Build G3 Alpha
Build Y1 Rim
Build Y2 Booger

49) ajo: Build Y2 Beta

50) Felix: M Y1 Rim Alpha

51) ajo: Sacrifice Y2 Beta
Move R3 Gamma Beta
Move G1 Beta Alpha

52) Felix: Move Y1 Alpha Ajo

53) ajo: Trade Y3 R3 Ajo

54) Felix: Sacrifice G3 Alpha
Build Y2 Ajo
Build Y3 Ajo
Pass
	ajo: So it begins...

55) ajo: Catastrophe Ajo Yellow
Build R1 Beta
	Felix: And now the dominoes fall!

56) Felix: Sacrifice Y3 Booger
Move B1 Alpha Ajo
Move B3 Booger Alpha
Move B3 Alpha Ajo

57) ajo: Pass

58) Felix: Sacrifice Y2 Booger
Move B2 Booger Beta
Move B2 Beta Ajo
Catastrophe Ajo Blue
	ajo: Good game!
	Felix: Thank you! Good game, and good luck in the rest of your tourney games!



34555)
Variants: "Hard time"
Started: 2018.9.9, Ended: 2018.9.20
Participants: Trydnt (S), Felix (N)
Winner: Felix

1) Felix: H R1 B3 G3

2) Trydnt: Homeworld Y3 B2 G3

3) Felix: B G1 Felix

4) Trydnt: Build G1 Trydnt
	Felix: Good luck and have fun!
	Trydnt: You too! Best of luck

5) Felix: T G1 R1 Felix

6) Trydnt: Trade G1 R1 Trydnt

7) Felix: B R2 Felix

8) Trydnt: Build R2 Trydnt

9) Felix: T R2 Y2 Felix

10) Trydnt: Build R2 Trydnt

11) Felix: Build R2 Felix

12) Trydnt: Discover R1 Trydnt G1 G1

13) Felix: Discover R1 Felix B2 Ramp

14) Trydnt: Trade R2 Y2 Trydnt

15) Felix: Build G1 Felix

16) Trydnt: Move Y2 Trydnt G1

17) Felix: Move G1 Felix Ramp

18) Trydnt: Build Y1 G1

19) Felix: Build Y1 Felix

20) Trydnt: Discover Y1 G1 G2 G2

21) Felix: Move Y2 Felix Ramp

22) Trydnt: Build Y1 G1

23) Felix: Build Y2 Felix

24) Trydnt: Build Y3 G2

25) Felix: Build Y3 Ramp

26) Trydnt: Build R2 G1

27) Felix: B R3 Ramp

28) Trydnt: Build R3 Trydnt

29) Felix: M R3 Ramp G1

30) Trydnt: Sacrifice Y2 G1
Discover R1 G1 B2 B2
Discover R2 G1 Y2 Y2

31) Felix: M R2 Felix B2

32) Trydnt: Sacrifice Y1 G1
Discover R1 B2 G1 Gee1

33) Felix: Build R3 G1

34) Trydnt: Build G2 Trydnt

35) Felix: Build G2 Felix

36) Trydnt: Discover R3 Trydnt Y1 Y1

37) Felix: T Y3 B3 Ramp

38) Trydnt: Discover R3 Y1 Y3 Y3

39) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Ramp
Build Y1 Ramp

40) Trydnt: Discover Y1 G2 B1 B1

41) Felix: Trade G3 B3 Ramp

42) Trydnt: Sacrifice Y3 G2
Move R2 Trydnt G1
Move R2 Y2 G1
Catastrophe G1 R
Move R3 Y3 B1
	Felix: So many systems....

43) Felix: Move B3 Ramp Gee1

44) Trydnt: Move G2 Trydnt B1

45) Felix: Move Y2 Ramp Gee1

46) Trydnt: Build G1 Trydnt

47) Felix: Sacrifice G3 Felix
Build G2 Felix
Build G3 Felix
Build G3 Ramp

48) Trydnt: Trade G3 R3 Trydnt

49) Felix: Sacrifice G2 Felix
Build B1 Gee1
Build B1 Gee1

50) Trydnt: Build R2 B1

51) Felix: Sacrifice G3 Ramp
Build Y2 Gee1
Build Y3 Ramp
Build Y3 Gee1

52) Trydnt: Sacrifice R2 B1
Attack B1 Gee1
Attack B1 Gee1

53) Felix: Sacrifice R1 Ramp
Attack R1 Gee1

54) Trydnt: Trade B1 R1 Gee1

55) Felix: Sacrifice R2 B2
Attack R1 Gee1
Attack B1 Gee1

56) Trydnt: Build R2 B1

57) Felix: M B3 Gee1 Trydnt

58) Trydnt: Attack B3 Trydnt

59) Felix: S Y3 Gee1
M B1 Gee1 Trydnt
M B3 Ramp Gee1
M B3 Gee1 Trydnt
C Trydnt Blue
	Felix: Nice move!

60) Trydnt: Build Y3 B1

61) Felix: Sacrifice Y3 Ramp
Move Y2 Gee1 Trydnt
Move Y2 Gee1 Trydnt
Move Y1 Ramp Trydnt
Catastrophe Trydnt Yellow

	Felix: Thank you! Good game, and good luck in the rest of the tournament!


34552)
Variants: "Hard time"
Started: 2018.9.9, Ended: 2018.12.18
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) Felix: H B1 Y3 G3

3) ts52: Build G1 Ts52
	Felix: Hey good luck and have fun, as usual!
	ts52: Thanks. You too!

4) Felix: Build G1 Felix

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: Build B2 Felix

9) ts52: Discover B2 Ts52 G3 Kermit

10) Felix: Discover B1 Felix Y2 Reign

11) ts52: Build B3 Kermit

12) Felix: Build B3 Felix

13) ts52: Trade B3 Y3 Kermit

14) Felix: T B2 R2 Felix

15) ts52: Trade B1 R1 Ts52

16) Felix: Build G1 Felix

17) ts52: Build Y1 Kermit

18) Felix: Trade G1 Y1 Felix

19) ts52: Build Y2 Kermit

20) Felix: Discover Y1 Felix G2 Out

21) ts52: Discover Y2 Kermit B2 Gonzo

22) Felix: Build Y2 Out

23) ts52: Move Y3 Kermit Gonzo

24) Felix: Move Y1 Out Kermit

25) ts52: Trade Y2 G2 Gonzo

26) Felix: Sacrifice Y2 Out
Move B3 Felix Reign
Move B3 Reign Kermit
	ts52: This is for the 2018 Tournament, correct?

27) ts52: Build Y2 Gonzo
	Felix: Yes, that was my understanding! Should have made that clearer. If that's fine with you?

28) Felix: B R1 Felix
	ts52: It is. I have no concerns that I'm going to do well in this tournament. :)

29) ts52: Trade Y2 R2 Gonzo

30) Felix: Sacrifice R2 Felix
Attack Y1 Kermit
Attack B2 Kermit
	Felix: Ha, well I already timed out in a game against the AI opponent (speardane) so there's that. And you're doing well in this game!

31) ts52: Build Y2 Gonzo
	ts52: I hadn't realized there was an AI opponent. Interesting!
	Felix: I didn't know it either! Babamots clued me in to it.

32) Felix: Move Y1 Kermit Gonzo

33) ts52: Trade Y3 R3 Gonzo

34) Felix: Build G1 Felix

35) ts52: Build G1 Gonzo

36) Felix: Build Y2 Kermit

37) ts52: Sacrifice Y2 Gonzo
Move G1 Gonzo Felix
Move G2 Gonzo Felix
Catastrophe Felix G

38) Felix: Sacrifice Y2 Kermit
Move B3 Kermit Reign
Move B3 Reign Felix

39) ts52: Attack Y1S Gonzo

40) Felix: T B3 G3 Felix

41) ts52: Move R3 Gonzo Kermit

42) Felix: Discover B2 Kermit B1 Envision

43) ts52: Attack Y1S Kermit

44) Felix: Sacrifice G3 Felix
Build B3 Envision
Build B3 Reign
Build B3 Reign

45) ts52: Move R2 Gonzo Felix

46) Felix: Move B3 Reign Felix

47) ts52: Attack R1S Felix

48) Felix: Trade B2 R2 Envision

49) ts52: Move R2 Felix Gonzo

50) Felix: Trade B3 G3 Reign

51) ts52: Build Y2 Kermit

52) Felix: Trade B3 Y3 Envision

53) ts52: Build G1 Ts52

54) Felix: Sacrifice G3 Reign
Build B2 Reign
Build B3 Reign
Build B3 Felix

55) ts52: Trade R2 G2 Gonzo

56) Felix: Trade B3 G3 Reign

57) ts52: Build Y2 Gonzo

58) Felix: Sacrifice G3 Reign
Build B3 Reign
Build Y3 Envision
Build R1 Envision

59) ts52: Sacrifice Y2 Kermit
Move Y2 Gonzo Envision
Move Y1 Gonzo Envision
Catastrophe Envision Y

60) Felix: Sacrifice R1 Envision
Attack R1 Felix

61) ts52: Build G1 Gonzo

62) Felix: Trade B3 G3 Reign

63) ts52: Trade G1 Y1 Gonzo

64) Felix: Build B3 Reign

65) ts52: Sacrifice G2 Gonzo
Build Y2 Gonzo
Build Y2 Kermit

66) Felix: Discover B3 Reign R3 Mars

67) ts52: Build Y3 Kermit

68) Felix: Trade B3 Y3 Mars

69) ts52: Move R3 Kermit Envision

70) Felix: Sacrifice G3 Reign
Build R1 Envision
Build R2 Envision
Build B3 Reign
Catastrophe Envision Red

71) ts52: Trade Y1 B1 Gonzo

72) Felix: Sacrifice B2 Reign
Trade B3 G3 Felix
Trade B3 R3 Reign

73) ts52: Move Y2 Kermit Gonzo

74) Felix: Sacrifice G3 Felix
Build B2 Reign
Build B3 Reign
Build Y1 Mars

75) ts52: Move B1 Gonzo Kermit

76) Felix: Discover B3 Reign B3 Renown

77) ts52: Trade Y3 R3 Kermit

78) Felix: Discover B2 Reign Y3 Steel

79) ts52: Build G1 Ts52

80) Felix: T B1 G1 Reign

81) ts52: M G1 Ts52 Steel

82) Felix: Sacrifice R1 Felix
Attack G1 Steel

83) ts52: Build B1 Kermit

84) Felix: Move G1 Steel Ts52

85) ts52: Sacrifice Y2 Gonzo
Move G3 Ts52 Steel
Move R3 Kermit Ts52

86) Felix: Sacrifice Y3 Mars
Move B3 Renown Ts52
Move B2 Steel Ts52
Discover G1 Ts52 B3 Bomb
	Draw5PlayAll: Not even

87) ts52: Attack B3S Ts52

88) Felix: Sacrifice G1 Bomb
Build B3 Ts52

89) ts52: Sacrifice G3 Steel
Build Y2 Kermit
Build Y3 Gonzo
Build Y3 Kermit
Catastrophe Ts52 Blue

90) Felix: Build R1 Reign

91) ts52: Discover B1 Kermit G2 Robin

92) Felix: Trade B3 G3 Felix

93) ts52: Build B2 Robin

94) Felix: Discover Y1 Mars G2 Greeny

95) ts52: Build B2 Robin

96) Felix: Build G1 Felix

97) ts52: Move Y2 Kermit Robin

98) Felix: Move R3 Reign Felix

99) ts52: Move Y3 Kermit Robin

100) Felix: Build R1 Felix

101) ts52: Discover Y1 Kermit R2 Elmo

102) Felix: Build R2 Reign
	Felix: I think I'm doomed :) I always pull the trigger too early!

103) ts52: Sacrifice Y3 Gonzo
Move Y1 Elmo Felix
Move Y2 Gonzo Felix
Move Y2 Robin Felix
Catastrophe Felix Yellow
	ts52: It's always tempting to cause catastrophe as soon as you can

104) Felix: Pass

105) ts52: Sacrifice Y3 Robin
Move B1 Robin Felix
Move B2 Robin Felix
Move B2 Robin Felix
Catastrophe Felix B

	Felix: Well done! Great game. You played very well through a half-destroyed homeworld
	ts52: Thanks! A very good game. My only hope after you knocked out half my homeworld was keeping you from getting yellow.


34560)
Variants: "Unrated, Hard time"
Started: 2018.9.16, Ended: 2018.10.25
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: H B3 Y2 G3

2) dlwillson: H Y3 R2 G3 *
	Felix: Hello again :) was this the game you wanted to try a yellow/red homeworld? If so, I can undo and try the same thing

3) Felix: Pass
	dlwillson: Uh, woops! I moved before reading! Yes, this is that game, and I forgot to mark it unranked so I'll probably be giving up a few points on the experiment. :-)

It's good to see you!

4) dlwillson: Build G1 Dlwillson
	Felix: I will happily drain one turn to offset your disadvantage!

Likewise. Always a pleasure. How did code camp go? Did that already happen?

5) Felix: B G1 Felix
	dlwillson: That kind of invalidates the test, but I'll take it, and we'll see what happens!

DevOps Camp went well. I haven't gone through the feedbacks yet, but from my perspective, it was surprisingly packed with good learning. So much Kubernetes, and way more AWS CloudFormation than I could possibly want, but the campers seemed happy with it.

6) dlwillson: D G1 Dlwillson B1 Sea
	Felix: We'll, now it's really just more as if you just moved first. 

And good! Glad to hear it!

7) Felix: Trade G1 B1 Felix

8) dlwillson: B G1 Dlwillson

9) Felix: B G1 Felix

10) dlwillson: B G2 Sea

11) Felix: Build B1 Felix

12) dlwillson: B G2 Dlwillson

13) Felix: D G1 Felix Y1 Out

14) dlwillson: M G1 Dlwillson Out

15) Felix: Build G2 Out

16) dlwillson: S G2 Sea
B G2 Out
B G3 Sea
C Out G

17) Felix: Discover B1 Felix G1 Out

18) dlwillson: T G1 Y1 Sea
	Felix: Huh, this actually isn't working out too badly for you so far.
	dlwillson: I was thinking the same thing! But, I am having some trouble getting any other colors...

Also, I accidentally made the universe small. OOPS!

19) Felix: Build B2 Out

20) dlwillson: B G1 Sea

21) Felix: Trade B2 Y2 Out

22) dlwillson: Trade G1 R1 Sea

23) Felix: Trade B1 R1 Felix

24) dlwillson: S G2 Dlwillson
B Y1 Sea
B G1 Sea

25) Felix: B B1 Out

26) dlwillson: T G3 B3 Sea

27) Felix: B B2 Out

28) dlwillson: M B3 Sea Dlwillson

29) Felix: Discover B1 Out G3 Center

30) dlwillson: B G1 Sea

31) Felix: Trade B2 R2 Out

32) dlwillson: B G2 Dlwillson

33) Felix: Build G2 Felix

34) dlwillson: T G3 Y3 Dlwillson

35) Felix: Move G2 Felix Sea

36) dlwillson: B G2 Sea
C Sea G

37) Felix: Build B2 Out

38) dlwillson: M Y3 Dlwillson Out

39) Felix: Build Y1 Out

40) dlwillson: S R1 Sea
A R2 Out

41) Felix: Sacrifice R1 Felix
Attack R2 Out

42) dlwillson: S G2 Dlwillson
B Y2 Out
B Y3 Sea
C Out Y

43) Felix: Trade B2 Y2 Out
	dlwillson: I am unhappy with that result. >:-|

44) dlwillson: T Y1 G1 Sea

45) Felix: Build B2 Out

46) dlwillson: B G1 Sea

47) Felix: Move B1 Out Felix

48) dlwillson: B G2 Sea

49) Felix: Build B2 Out
	Draw5PlayAll: Use the system console. Type in the chat
~variant add Unrated
	dlwillson: Ooh, that's cool!
	Felix: Whoops :) Can't figure out how to vote 'yes'

50) dlwillson: M G2 Sea Dlwillson
	dlwillson: Shit. Neither can I.

51) Felix: Build B2 Out

52) dlwillson: B B3 Dlwillson
	dlwillson: So, what was the syntax?

53) Felix: Sacrifice Y2 Out
Move B2 Out Dlwillson
Move B2 Out Dlwillson
Catastrophe Dlwillson Blue
	Felix: It actually only let me do it from my home page. Go to the My SDG link and there should be a notification there that you have a pending console request

54) dlwillson: Trade Y3 B3 Sea

55) Felix: Build B2 Out
	dlwillson: But, it doesn't go away. Huh.
	Felix: I think because I opened a request too. Must be a bug

56) dlwillson: M G1 Sea Felix

57) Felix: Trade B1 R1 Felix

58) dlwillson: B G2 Felix

59) Felix: Trade G3 Y3 Felix

60) dlwillson: T G2 Y2 Felix

61) Felix: Trade Y3 R3 Felix

62) dlwillson: S B3 Sea
T Y2 R2 Felix
T G1 R1 Felix
C Felix R
Pass
	dlwillson: GG!
	dlwillson: Do you want to do this one again, but in a large universe? I think maybe the red/yellow system would be a worse problem in a larger universe.
	Felix: Oh wow, did not see that coming at ALL. Good move. I should have been a lot more careful. I was being too laidback this whole game :) I'm certainly game to do it again. 



34559)
Variants: "Hard time"
Started: 2018.9.16, Ended: 2018.10.5
Participants: Laurie_Menke (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 Y1 G3
	Babamots: Hi! For the record, this game is for the tournament. Good luck!

2) Laurie_Menke: Homeworld R3 B1 G3
	Laurie_Menke: Good luck to you, too!  :)

3) Babamots: Build G1 Babamots

4) Laurie_Menke: Build G1 Laurie_menke

5) Babamots: Trade G1 Y1 Babamots

6) Laurie_Menke: Build G1 Laurie_menke

7) Babamots: Build Y1 Babamots

8) Laurie_Menke: Trade G1 R1 Laurie_menke
	Laurie_Menke: Wow... I can't believe I screwed myself that badly right off the bat! ::sigh::  Hopefully I can recover...

9) Babamots: Discover Y1 Babamots G3 Cardassia

10) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: A Star Trek fan, I see!  :)

11) Babamots: Build Y2 Babamots

12) Laurie_Menke: Trade G3 Y3 Laurie_menke
	Babamots: Yep, I love to rewatch TNG and DS9. And they have lots of Trek worlds to choose for system names.
	Laurie_Menke: Tis true!  :)

13) Babamots: Discover Y1 Babamots G3 Rubicun

14) Laurie_Menke: Discover R1 Laurie_menke G2 Green

15) Babamots: Build G1 Babamots

16) Laurie_Menke: Build G2 Laurie_menke

17) Babamots: Sacrifice G3 Babamots
Build Y2 Cardassia
Build G2 Babamots
Build G3 Babamots

18) Laurie_Menke: Trade G1 B1 Laurie_menke

19) Babamots: Sacrifice G3 Babamots
Build Y2 Cardassia
Build Y3 Rubicun
Build Y3 Babamots

20) Laurie_Menke: Build R1 Green

21) Babamots: Trade G2 R2 Babamots

22) Laurie_Menke: Build B1 Laurie_menke

23) Babamots: Build G1 Babamots

24) Laurie_Menke: Trade B1 R1 Laurie_menke

25) Babamots: Move R2 Babamots Cardassia

26) Laurie_Menke: Build R2 Green

27) Babamots: Move Y3 Rubicun Green

28) Laurie_Menke: Sacrifice Y3 Laurie_menke
Move R1 Green Rubicun
Move G1 Laurie_menke Green
Discover G1 Green Y3 Yellow

29) Babamots: Move Y3 Green Laurie_menke
	Laurie_Menke: Well, now you're just taunting me!  ;)  ;)  ;)

30) Laurie_Menke: Attack Y1 Rubicun
	Babamots: I'll admit that I made that last move more because it was interesting than because it was the very best.

31) Babamots: Attack G2 Laurie_menke

32) Laurie_Menke: Sacrifice G1 Yellow
Build B1 Laurie_menke

33) Babamots: Trade G2 B2 Laurie_menke
Catastrophe Laurie_menke B

34) Laurie_Menke: Move Y1 Rubicun Babamots
Catastrophe Babamots Y

35) Babamots: Attack R1 Laurie_menke
	Laurie_Menke: Oops... didn't see that one coming...
	Laurie_Menke: Well, I'll have a little fun before you  kill me.  ;)  Congrats, Babamots!  Good game!  :)

	Babamots: Good game! You can signal your ships that as many of them as surrender will be shown mercy.
	Laurie_Menke: LOL! My ships thank you!  ;)


34563)
Variants: "Unrated"
Started: 2018.9.17, Ended: 2018.11.13
Participants: mneme (S), Draw5PlayAll (N)
Winner: mneme

1) Draw5PlayAll: Pass
Pass
Pass
Pass
Pass

2) mneme: Homeworld B3 R2 G3
	mneme: FWIW, I don't think passing is a valid move on the opening turn.

3) Draw5PlayAll: Homeworld B2 R1 G3

4) mneme: Build G1 Mneme

5) Draw5PlayAll: Build G1 Draw5playall

6) mneme: Trade G1 Y1 Mneme

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) mneme: Build G1 Mneme

9) Draw5PlayAll: Build G1 Draw5playall

10) mneme: Trade G1 R1 Mneme

11) Draw5PlayAll: Trade G1 R1 Draw5playall

12) mneme: Build R2 Mneme

13) Draw5PlayAll: Build R2 Draw5playall

14) mneme: Discover R1 Mneme B1 Melpomene

15) Draw5PlayAll: Trade R2 Y2 Draw5playall

16) mneme: Build Y1 Mneme

17) Draw5PlayAll: Discover R1 Draw5playall G3 Economic

18) mneme: Move Y1 Mneme Melpomene

19) Draw5PlayAll: Move Y2 Draw5playall Economic

20) mneme: Build G1 Mneme

21) Draw5PlayAll: Build Y2 Economic

22) mneme: Discover Y1 Melpomene B3 Clio

23) Draw5PlayAll: Move Y2 Economic Melpomene

24) mneme: Move G3 Mneme Melpomene

25) Draw5PlayAll: Move Y2 Melpomene Clio

26) mneme: Sacrifice G3 Melpomene
Build Y2 Clio
Build Y3 Clio
Build Y3 Mneme
Catastrophe Clio Y

27) Draw5PlayAll: Build G1 Draw5playall

28) mneme: Discover R2 Mneme G1 Erato

29) Draw5PlayAll: Build Y1 Economic

30) mneme: Move Y1 Mneme Erato

31) Draw5PlayAll: Discover G1 Draw5playall B3 Strange

32) mneme: Build G2 Mneme

33) Draw5PlayAll: Build G2 Draw5playall

34) mneme: Move G2 Mneme Melpomene

35) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Draw5playall
Build G3 Draw5playall
Build G3 Strange

36) mneme: Build Y2 Mneme

37) Draw5PlayAll: Discover G2 Draw5playall Y3 Escape

38) mneme: Build R2 Erato

39) Draw5PlayAll: Build R3 Economic

40) mneme: Build R3 Melpomene

41) Draw5PlayAll: Discover R1 Economic B1 Trial

42) mneme: Build R3 Erato

43) Draw5PlayAll: Sacrifice Y2 Economic
Move R1 Trial Escape
Move R1 Escape Erato
Catastrophe Erato Red

44) mneme: Move Y2 Mneme Melpomene

45) Draw5PlayAll: Trade G2 B2 Draw5playall

46) mneme: Build G2 Mneme

47) Draw5PlayAll: Move B2 Draw5playall Economic

48) mneme: Discover G2 Melpomene Y3 Terpsichore

49) Draw5PlayAll: Build Y2 Economic

50) mneme: Sacrifice G2 Terpsichore
Build Y2 Melpomene
Build Y3 Erato

51) Draw5PlayAll: Sacrifice G2 Escape
Build G2 Draw5playall
Build Y3 Draw5playall

52) mneme: Trade Y2 G2 Melpomene

53) Draw5PlayAll: Build B1 Economic

54) mneme: Trade G2 B2 Mneme

55) Draw5PlayAll: Move Y1 Draw5playall Strange

56) mneme: Discover Y1 Erato R3 Urania

57) Draw5PlayAll: Build Y2 Strange

58) mneme: Move B2 Mneme Erato

59) Draw5PlayAll: Build R1 Economic

60) mneme: Build B1 Erato

61) Draw5PlayAll: Discover B1 Economic G2 Fort

62) mneme: Trade B2 R2 Erato

63) Draw5PlayAll: Sacrifice G3 Draw5playall
Build B2 Economic
Build B3 Fort
Build G3 Draw5playall

64) mneme: Build R2 Erato

65) Draw5PlayAll: Move R1 Economic Fort
	Draw5PlayAll: ...is this for the tournament or not?
	mneme: Nope.  Tournament games should be hard time and I'd be dead.

66) mneme: Move R3 Melpomene Urania

67) Draw5PlayAll: Move Y1 Economic Fort

68) mneme: Pass
	Draw5PlayAll: I offer to offer to offer to offer to offer to ... (x86) offer to offer a draw.

69) Draw5PlayAll: Pass
	mneme: Yeah, this is ugly.  Things might have been different had I killed your red two turns ago, but as it is I'm going to be hardpressed to take advantage of my R advantage, while you're going to find it pretty hard to reach my home system.

Partially so I can free up some mental space for starting my last sets of tournament games, accepted.

70) mneme: Pass
	mneme: pass is specifically for the purpose of offering back the draw; if you want to instead continue tell me and I'll undo it and move g2 to urania

	mneme: Good game.  I'm still curious as to how it would have gone had I blown up your R3 when I had a chance, but overall it was a delightful mess.


34566)
Variants: "Hard time"
Started: 2018.9.17, Ended: 2018.10.3
Participants: eliscinsky (S), Babamots (N)
Winner: eliscinsky

1) Babamots: Homeworld B3 Y1 G3
	Babamots: For the record, this is for the tournament. I hear you found a fantastic teacher. Let's see whether he's got you up to snuff :-P.

2) eliscinsky: H Y2 B1 G3
	eliscinsky: Yes, for all the marbles. I've been trained up, and I feel confident. Let the game begin.  Good luck! 

3) Babamots: Build G1 Babamots

4) eliscinsky: Build G1 Eliscinsky

5) Babamots: Trade G1 Y1 Babamots

6) eliscinsky: T G1 Y1 Eliscinsky

7) Babamots: Build Y2 Babamots
	eliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.
	eliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.
	Babamots: Any time is fine. I'll focus better at work if I don't have games to check on :-D.

8) eliscinsky: Build Y2 Eliscinsky

9) Babamots: Trade Y1 R1 Babamots

10) eliscinsky: Trade Y1 R1 Eliscinsky

11) Babamots: Build G1 Babamots
	eliscinsky: Tit for tat, Mirror - mirror!  LOL
	Babamots: Mirroring is often a safe way to get yourself to the mid-game, or maybe the late-early-game.

12) eliscinsky: Build G1 Eliscinsky

13) Babamots: Trade G1 B1 Babamots
	eliscinsky: I think in a few rounds there will be a divergence. But for now...

14) eliscinsky: Trade G1 B1 Eliscinsky

15) Babamots: Build B2 Babamots

16) eliscinsky: Build B2 Eliscinsky

17) Babamots: Build G1 Babamots
	Babamots: Next game, I'm making you go first. :-P

18) eliscinsky: B G1 Eliscinsky

19) Babamots: Discover Y2 Babamots G2 Orion

20) eliscinsky: D B2 Eliscinsky G3 Eden

21) Babamots: Move B1 Babamots Orion

22) eliscinsky: M Y2 Eliscinsky Eden

23) Babamots: Discover B2 Babamots R2 Cardassia

24) eliscinsky: T B1 Y1 Eliscinsky

25) Babamots: Move G1 Babamots Cardassia

26) eliscinsky: B R1 Eliscinsky

27) Babamots: Build R2 Babamots

28) eliscinsky: Trade B2 R2 Eden

29) Babamots: Move R1 Babamots Orion

30) eliscinsky: T R1 B1 Eliscinsky

31) Babamots: Build B2 Orion

32) eliscinsky: Move B1 Eliscinsky Eden
	eliscinsky: It's getting very interesting,  don't you think? 

33) Babamots: Discover B2 Orion Y3 Bajor
	Babamots: Yes, I think it's gotten more interesting.

34) eliscinsky: M G1 Eliscinsky Eden

35) Babamots: Sacrifice G3 Babamots
Build B2 Cardassia
Build B3 Bajor
Build B3 Orion

36) eliscinsky: B R1 Eden

37) Babamots: Build R3 Orion

38) eliscinsky: B R3 Eliscinsky

39) Babamots: Move B3 Orion Eden

40) eliscinsky: S Y2 Eden
M R1 Eden Orion
M R2 Eden Orion
C Orion Red

41) Babamots: Trade B3 R3 Eden

42) eliscinsky: Build G1 Eden

43) Babamots: Build B3 Orion

44) eliscinsky: Build G2 Eden
Catastrophe Eden Green
	eliscinsky: So let me get this right.  In the Eden system I have the TRADE economy, and you being in the system can also use "my" trading ability?
	Babamots: No, I can't trade in Eden anymore. But I could trade in Eden on my last turn because my ship was blue.
	Babamots: For a "free" (non-sacrifice) action you can only use the powers of your own ships and of the system marker(s).
	eliscinsky: Okay, I see. I was over looking that your ship WAS a blue to start. Thanks for the clarification. 

45) Babamots: Build Y1 Orion

46) eliscinsky: Discover Y1 Eliscinsky Y3 Sol

47) Babamots: Build B1 Orion

48) eliscinsky: Trade G3 Y3 Eliscinsky

49) Babamots: Trade B3 G3 Bajor

50) eliscinsky: Sacrifice Y3 Eliscinsky
Move R3 Eliscinsky Sol
Move R3 Sol Orion
Move R3 Orion Babamots

51) Babamots: Sacrifice Y2 Orion
Move B3 Orion Babamots
Move G1 Cardassia Babamots

52) eliscinsky: A R2 Babamots

53) Babamots: Sacrifice G3 Bajor
Build B3 Babamots
Build G1 Babamots
Build G1 Babamots

54) eliscinsky: Sacrifice R2 Babamots
Attack B3 Babamots
Attack B3 Babamots
	eliscinsky: When I used to play poker with my developer friends at dev conferences they called me "Captain Chaos".

Guess that's how I roll.  LOL
	Babamots: Oops, shoot. I was trying to play Terraria at the same time. Looks like that was a bad idea :-P.

55) Babamots: Sacrifice B1 Orion
Trade G1 B1 Babamots
Catastrophe Babamots B

56) eliscinsky: Attack G1 Babamots
	eliscinsky: I'll take whatever help I can get. ;)

57) Babamots: Pass

58) eliscinsky: Attack G1 Babamots

	eliscinsky: PASS! But we could have gone on for at least 3-4 rounds. :-D
	Babamots: It was getting depressing :-P.
	Babamots: Well played. You saw your chance and didn't hesitate.
	eliscinsky: I CANNOT  BELIEVE I WON! WA-HOO! (sorry)
You're my 1st (true) win, ever. Hmmm makes me wonder.  But what a confidence boost. Thank you so much for the game. Good luck in the finals of the tournament.  I'm sure you'll do well there.

So in terms of scoring, do I get bonus points for beating someone who has beaten so many others?  Kind of like HS Football, where the winning team gets points for the win, AND gets a bonus point for each team the loser has beaten.  Just thinking.
	Babamots: In the tournament rules, it says each win has equal weight. In the registration survey, I suggested using PageRank for scoring (which would give more weight to wins against strong opponents like you suggest), but quite a few people didn't like that idea. Now if I lose to Felix, there's likely to be a two- or even three-way tie for high score. You've put the pressure on me!

I feel pretty silly for losing that way, but I'm also kind of glad for you. It's nice to get an unexpected win. Go ahead and revel.
	Draw5PlayAll: So if there is a tie then we should have a showdown round robin among the tied players. All games must be played simultaneously. Muha.


34565)
Variants: "Hard time"
Started: 2018.9.18, Ended: 2018.10.2
Participants: eliscinsky (S), ajo (N)
Winner: ajo

1) ajo: Homeworld R1 B2 G3

2) eliscinsky: Homeworld Y1 B3 G3

3) ajo: Build G1 Ajo

4) eliscinsky: B G1 Eliscinsky
	eliscinsky: This game is for the tournament.
Good luck. 

5) ajo: Trade G1 Y1 Ajo
	eliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.

6) eliscinsky: Trade G1 Y1 Eliscinsky
	ajo: Good luck!

7) ajo: Build Y2 Ajo

8) eliscinsky: Build G1 Eliscinsky

9) ajo: Trade Y1 G1 Ajo

10) eliscinsky: T G1 R1 Eliscinsky

11) ajo: Trade G1 R1 Ajo

12) eliscinsky: B R2 Eliscinsky

13) ajo: Build R2 Ajo

14) eliscinsky: B G1 Eliscinsky

15) ajo: Build G1 Ajo

16) eliscinsky: Trade G1 B1 Eliscinsky

17) ajo: Discover R1 Ajo B3 Alpha

18) eliscinsky: D B1 Eliscinsky G2 Earth

19) ajo: Sacrifice G3 Ajo
Build R2 Alpha
Build R3 Alpha
Build R3 Ajo

20) eliscinsky: Move R1 Eliscinsky Earth
	eliscinsky: That was rather bold!  And very interesting.

21) ajo: Trade R2 G2 Alpha

22) eliscinsky: Build R2 Earth
	ajo: I have myself been falling prey to that move lately, enough that I've noticed and started looking for places to exploit it myself. :)

23) ajo: Trade R3 Y3 Alpha

24) eliscinsky: Trade R2 Y2 Earth

25) ajo: Discover R2 Ajo B3 Beta

26) eliscinsky: B G1 Eliscinsky

27) ajo: Build G1 Alpha

28) eliscinsky: D G1 Eliscinsky B2 Neptune

29) ajo: Sacrifice G2 Alpha
Build R2 Alpha
Build R3 Beta

30) eliscinsky: B R3 Eliscinsky

31) ajo: Build G2 Alpha

32) eliscinsky: B G2 Neptune

33) ajo: Sacrifice G2 Alpha
Build G2 Ajo
Build G3 Alpha

34) eliscinsky: T G2 Y2 Neptune
	ajo: Ping! You undid your last move but didn't make a new one yet?

35) ajo: Move G3 Alpha Earth

36) eliscinsky: M R1 Earth Beta

37) ajo: Sacrifice R3 Beta
Attack R1 Beta
Attack Y2 Earth
Attack B1 Earth

38) eliscinsky: Move R3 Eliscinsky Neptune

39) ajo: Discover R2 Alpha B2 Gamma

40) eliscinsky: Discover R3 Neptune G3 Eden

41) ajo: Sacrifice G3 Earth
Build Y1 Earth
Build Y3 Alpha
Build R3 Gamma

42) eliscinsky: Build Y3 Neptune

43) ajo: Sacrifice G2 Ajo
Build B1 Earth
Build B1 Earth

44) eliscinsky: Build G2 Eliscinsky

45) ajo: Sacrifice Y3 Alpha
Move B1 Earth Eliscinsky
Move Y1 Earth Eliscinsky
Move Y2 Earth Eliscinsky
Catastrophe Eliscinsky Yellow

46) eliscinsky: Sacrifice Y2 Neptune
Move R2 Eliscinsky Ajo
Move R3 Eden Ajo
Catastrophe Ajo Red

47) ajo: Sacrifice Y3 Alpha
Move B1 Earth Eliscinsky
Move B1 Earth Eliscinsky
Pass
Catastrophe Eliscinsky Blue

	ajo: Good game!


34564)
Variants: "Hard time"
Started: 2018.9.18, Ended: 2018.11.27
Participants: ts52 (S), eliscinsky (N)
Winner: ts52

1) eliscinsky: Homeworld R1 B2 G3

2) ts52: Homeworld Y3 B2 G3

3) eliscinsky: B G1 Eliscinsky
	eliscinsky: This game is for the tournament.
	eliscinsky: Good luck. 

4) ts52: Build G1 Ts52
	eliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.
	eliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.
	ts52: Thanks! Good luck to you too!

5) eliscinsky: Trade G1 Y1 Eliscinsky

6) ts52: Trade G1 B1 Ts52

7) eliscinsky: B G1 Eliscinsky

8) ts52: Build G1 Ts52

9) eliscinsky: T G1 B1 Eliscinsky

10) ts52: Trade G1 Y1 Ts52

11) eliscinsky: B G1 Eliscinsky

12) ts52: Build G1 Ts52

13) eliscinsky: Trade G1 R1 Eliscinsky

14) ts52: Trade G1 R1 Ts52

15) eliscinsky: Build G1 Eliscinsky

16) ts52: Build R2 Ts52

17) eliscinsky: Build R2 Eliscinsky

18) ts52: Discover B1 Ts52 G1 Robin

19) eliscinsky: Discover R2 Eliscinsky G3 Earth

20) ts52: Move R2 Ts52 Robin

21) eliscinsky: Move G1 Eliscinsky Earth

22) ts52: Move Y1 Ts52 Robin

23) eliscinsky: M B1 Eliscinsky Earth

24) ts52: Build B1 Robin

25) eliscinsky: Build B2 Earth

26) ts52: Sacrifice G3 Ts52
Build R2 Ts52
Build R3 Ts52
Build R3 Robin

27) eliscinsky: Trade B2 Y2 Earth

28) ts52: Trade R2 G2 Ts52

29) eliscinsky: Build Y1 Earth

30) ts52: Move R3 Robin Earth

31) eliscinsky: Build R2 Earth

32) ts52: Sacrifice R2 Robin
Attack Y2N Earth
Attack R2N Earth

33) eliscinsky: Build R2 Earth
Catastrophe Earth Red

34) ts52: Sacrifice B1 Robin
Trade Y2 R2 Earth

35) eliscinsky: Build G1 Earth

36) ts52: Attack Y1N Earth

37) eliscinsky: Build G2 Earth
Catastrophe Earth Green

38) ts52: Build R2 Ts52

39) eliscinsky: B G1 Eliscinsky

40) ts52: Build B1 Robin

41) eliscinsky: Trade G1 B1 Eliscinsky

42) ts52: Trade R2 Y2 Ts52

43) eliscinsky: B G1 Eliscinsky

44) ts52: Build B2 Robin

45) eliscinsky: Build R2 Eliscinsky

46) ts52: Trade B2 R2 Robin

47) eliscinsky: Discover R2 Eliscinsky G3 Andor

48) ts52: Discover B1 Robin Y3 Bigbird

49) eliscinsky: Move B1 Eliscinsky Andor

50) ts52: Build R2 Robin

51) eliscinsky: Build R3 Andor

52) ts52: Build R3 Ts52

53) eliscinsky: Sacrifice Y1 Eliscinsky
Move R3 Andor Robin

54) ts52: Move R1 Ts52 Robin
Catastrophe Robin R

55) eliscinsky: T G1 Y1 Eliscinsky

56) ts52: Move R3 Ts52 Robin

57) eliscinsky: B B2 Andor

58) ts52: Sacrifice G2 Ts52
Build B3 Bigbird
Build B3 Robin

59) eliscinsky: Trade B2 Y2 Andor

60) ts52: Trade Y2 G2 Ts52

61) eliscinsky: Discover R2 Andor G1 Pea

62) ts52: Move R3 Robin Andor

63) eliscinsky: Move B1 Andor Robin

64) ts52: Attack Y2N Andor

65) eliscinsky: Sacrifice R2 Pea
Attack B1 Robin
Attack Y1 Robin

66) ts52: Trade B3 R3 Robin

67) eliscinsky: Trade B1 R1 Robin

68) ts52: Attack R1N Robin

69) eliscinsky: Move B1 Robin Bigbird

70) ts52: Attack Y1N Robin

71) eliscinsky: Discover B1 Bigbird G1 Orion

72) ts52: B R2 Andor

73) eliscinsky: Build B1 Orion

74) ts52: Move R3 Andor Orion

75) eliscinsky: Sacrifice Y1 Eliscinsky
Move B1 Orion Ts52

76) ts52: Attack B1N Ts52

	eliscinsky: ts52 I really see no way of coming back from this position. So I'll save us a dozen moves and end it now.
	ts52: Fair enough. Thanks for the game!


34570)
Variants: "Hard time"
Started: 2018.9.18, Ended: 2018.10.28
Participants: Draw5PlayAll (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Draw5PlayAll: Homeworld B3 R1 G3

3) Trydnt: Build G1 Trydnt

4) Draw5PlayAll: Build G1 Draw5playall
	Trydnt: tournament game marker

5) Trydnt: Trade G1 R1 Trydnt

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Trydnt: Build R1 Trydnt

8) Draw5PlayAll: Build Y1 Draw5playall

9) Trydnt: Build R2 Trydnt
	Draw5PlayAll: The next 3 moves will follow a predictable pattern

10) Draw5PlayAll: Build Y2 Draw5playall

11) Trydnt: Discover R1 Trydnt Y3 Y3

12) Draw5PlayAll: Discover Y1 Draw5playall G2 Epa

13) Trydnt: Discover R1 Trydnt Y3 Why3

14) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Epa
Build Y2 Epa
Build Y3 Draw5playall

15) Trydnt: Build R2 Trydnt
	Draw5PlayAll: I think we might be in a trade war

16) Draw5PlayAll: Trade Y2 B2 Draw5playall
	Trydnt: it's a possibility

17) Trydnt: Trade R2 Y2 Trydnt

18) Draw5PlayAll: Sacrifice B2 Draw5playall
Trade Y2 R2 Epa
Trade Y3 G3 Draw5playall

19) Trydnt: Discover Y2 Trydnt G3 G3
	Draw5PlayAll: All my flailing has resulted in this. I am disappointed.

20) Draw5PlayAll: Build G1 Draw5playall

21) Trydnt: Build G1 Trydnt

22) Draw5PlayAll: Trade G1 B1 Draw5playall

23) Trydnt: Trade G1 B1 Trydnt

24) Draw5PlayAll: Move B1 Draw5playall Epa

25) Trydnt: Move B1 Trydnt G3

26) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Draw5playall
Build Y3 Draw5playall
Build B1 Epa

27) Trydnt: Build B2 G3

28) Draw5PlayAll: Trade Y1 G1 Draw5playall
	Draw5PlayAll: Here I go again, temporarily stealing all yellow

29) Trydnt: Build Y1 G3
	Trydnt: not all

30) Draw5PlayAll: Build G1 Draw5playall

31) Trydnt: Discover B2 G3 G2 G2

32) Draw5PlayAll: Discover G1 Draw5playall B2 Nafta
	Draw5PlayAll: No one has gotten a large yet

33) Trydnt: Build B3 G2

34) Draw5PlayAll: Build G1 Nafta

35) Trydnt: Build B3 G3

36) Draw5PlayAll: Discover Y2 Epa G3 Esa

37) Trydnt: Move B3 G3 Epa

38) Draw5PlayAll: Sacrifice Y1 Epa
Move R2 Epa Y3

39) Trydnt: Sacrifice R1 Y3
Attack B1 Epa

40) Draw5PlayAll: Sacrifice B1 Epa
Trade G1 B1 Nafta
	Draw5PlayAll: Nooooooo! I cannot sac both my greens!

41) Trydnt: Move Y1 G3 Epa

42) Draw5PlayAll: Build Y1 Esa

43) Trydnt: Move R1 Why3 Epa

44) Draw5PlayAll: Trade Y2 R2 Draw5playall

45) Trydnt: Trade B3 Y3 G2
	Draw5PlayAll: I am getting bad at this game

46) Draw5PlayAll: Build B3 Nafta

47) Trydnt: Move B1 G3 Nafta
Catastrophe Nafta B

48) Draw5PlayAll: Build Y2 Draw5playall

49) Trydnt: Build B1 G2

50) Draw5PlayAll: Build G1 Draw5playall Q

51) Trydnt: Build G1 Trydnt

52) Draw5PlayAll: Build G2 Draw5playall

53) Trydnt: Sacrifice G3 Trydnt
Build B1 G2
Build B2 Epa
Build G3 Trydnt

54) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover G2 Draw5playall Y2 What
Move R2 Draw5playall What

55) Trydnt: Trade B3 R3 Epa

56) Draw5PlayAll: Sacrifice G2 What
Build R1 Y3
Build R3 What

57) Trydnt: Build R3 Trydnt

58) Draw5PlayAll: Sacrifice Y2 Esa
Move R1 Y3 Trydnt
Move R2 Y3 Trydnt
Catastrophe Trydnt Red

59) Trydnt: Trade B2 R2 G2

60) Draw5PlayAll: Build G2 Draw5playall

61) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G2
Build Y3 G3

62) Draw5PlayAll: Move R3 What Esa

63) Trydnt: Sacrifice Y3 G3
Move R3 Epa Draw5playall
Move R1 Epa Draw5playall
Move B1 G2 Draw5playall

64) Draw5PlayAll: Move R3 Esa Trydnt

65) Trydnt: Sacrifice Y3 G2
Move R2 G2 Draw5playall
Move B1 G2 Draw5playall
Move B1 Epa Draw5playall
Catastrophe Draw5playall R
Catastrophe Draw5playall B



34569)
Variants: "Hard time"
Started: 2018.9.18, Ended: 2018.10.10
Participants: Trydnt (S), Laurie_Menke (N)
Winner: Trydnt

1) Laurie_Menke: Homeworld Y3 R1 G3 *
	Laurie_Menke: Hi Trydnt! Have fun!  :)

2) Trydnt: Homeworld B2 Y1 G3
	Laurie_Menke: Oh... and for the record, this is for the tournament.  :)
	Trydnt: Hi Laurie! Good luck. And yes I've logged it in the tracker :)

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: :)

4) Trydnt: Build G1 Trydnt

5) Laurie_Menke: Discover G1 Laurie_menke B2 Blue

6) Trydnt: Trade G1 R1 Trydnt

7) Laurie_Menke: Build G1 Blue

8) Trydnt: Build R1 Trydnt

9) Laurie_Menke: Trade G1 B1 Blue

10) Trydnt: Build R2 Trydnt

11) Laurie_Menke: Trade G1 Y1 Blue

12) Trydnt: Discover R2 Trydnt Y3 Y3

13) Laurie_Menke: Move B1 Blue Laurie_menke

14) Trydnt: Trade R1 Y1 Trydnt

15) Laurie_Menke: Build B1 Laurie_menke

16) Trydnt: Build R1 Trydnt

17) Laurie_Menke: Build G1 Laurie_menke

18) Trydnt: Build Y2 Trydnt

19) Laurie_Menke: Move G1 Laurie_menke Blue

20) Trydnt: Discover Y2 Trydnt G3 G3

21) Laurie_Menke: Build Y2 Blue

22) Trydnt: Move R2 Y3 Blue

23) Laurie_Menke: Sacrifice Y2 Blue
Move Y1 Blue Laurie_menke
Move G1 Blue Laurie_menke

24) Trydnt: Build R2 Trydnt

25) Laurie_Menke: Build Y2 Laurie_menke

26) Trydnt: Build G1 Trydnt

27) Laurie_Menke: Discover Y1 Laurie_menke G2 Green

28) Trydnt: Sacrifice G1 Trydnt
Build R2 Blue

29) Laurie_Menke: Build Y2 Green

30) Trydnt: Build Y3 G3

31) Laurie_Menke: Build Y3 Green

32) Trydnt: Move Y2 G3 Green
Catastrophe Green Y

33) Laurie_Menke: Trade G3 R3 Laurie_menke

34) Trydnt: Sacrifice Y3 G3
Move R2 Blue Laurie_menke
Move R2 Blue Laurie_menke
Catastrophe Laurie_menke R
Move Y1 Trydnt Laurie_menke

35) Laurie_Menke: Trade Y2 R2 Laurie_menke

36) Trydnt: Sacrifice G3 Trydnt
Build Y1 Laurie_menke
Build Y2 Laurie_menke
Build Y2 Laurie_menke
Catastrophe Laurie_menke Y

	Trydnt: no it's over
	Laurie_Menke: Ah. Right.  Should have seen that!  Congrats and thanks for the fun,  Trydnt! Good luck with the  tournament!  :)
	Trydnt: If it didn't end the game it would have been a terrible move haha thanks for the game :) good luck with the tourney


34575)
Variants: "Hard time"
Started: 2018.9.18, Ended: 2018.12.5
Participants: agentofchaos (S), Laurie_Menke (N)
Winner: agentofchaos

1) Laurie_Menke: Homeworld Y1 B3 G3
	Laurie_Menke: Hi agentofchaos! Have fun with the Homeworlds tournament!

2) agentofchaos: Homeworld B2 R1 G3

3) Laurie_Menke: Build G1 Laurie_menke
	agentofchaos: Hi Laurie, have fun too!

4) agentofchaos: Build G1 Agentofchaos
	Laurie_Menke: Oops! My bad... this isn't a tournament game, is it?

5) Laurie_Menke: Trade G1 R1 Laurie_menke
	agentofchaos: No, it's a ladder challenge - close enough though!
	Laurie_Menke: :)  Thanks for accepting my challenge!

6) agentofchaos: Trade G1 R1 Agentofchaos

7) Laurie_Menke: Build R2 Laurie_menke
	agentofchaos: You're very welcome!

8) agentofchaos: Build R2 Agentofchaos

9) Laurie_Menke: Discover R1 Laurie_menke Y2 Yellow

10) agentofchaos: Trade R1 Y1 Agentofchaos

11) Laurie_Menke: Sacrifice G3 Laurie_menke
Build R1 Laurie_menke
Build R2 Yellow
Build R3 Laurie_menke
	Laurie_Menke: Sorry for the delay... I've been traveling. Will still be slow until Tuesday.  :/

12) agentofchaos: Sacrifice G3 Agentofchaos
Build R3 Agentofchaos
Build Y1 Agentofchaos
Build Y2 Agentofchaos

13) Laurie_Menke: Discover R1 Yellow Y3 Hi
	agentofchaos: That's fine, enjoy your travels!
	Laurie_Menke: Thanks! I'm back!  :)

14) agentofchaos: Move R2 Agentofchaos Hi

15) Laurie_Menke: Trade R1 G1 Laurie_menke

16) agentofchaos: Attack R1 Hi

17) Laurie_Menke: Trade R2 Y2 Laurie_menke

18) agentofchaos: Discover Y1 Agentofchaos G3 Playzure

19) Laurie_Menke: Move R2 Yellow Playzure

20) agentofchaos: Discover Y1 Playzure G1 Gripsy

21) Laurie_Menke: Build R1 Playzure

22) agentofchaos: Trade R3 G3 Agentofchaos

23) Laurie_Menke: Build R2 Playzure

24) agentofchaos: Sacrifice G3 Agentofchaos
Build Y2 Gripsy
Build Y3 Gripsy
Build Y3 Agentofchaos

25) Laurie_Menke: Build R3 Laurie_menke

26) agentofchaos: Sacrifice Y2 Gripsy
Move R1 Hi Gripsy
Move R1 Gripsy Playzure
Catastrophe Playzure R

27) Laurie_Menke: Sacrifice Y2 Laurie_menke
Discover R3 Laurie_menke Y2 Justforasec
Move R3 Justforasec Hi

28) agentofchaos: Move R2 Hi Gripsy

29) Laurie_Menke: Build G1 Laurie_menke

30) agentofchaos: Trade Y2 G2 Agentofchaos

31) Laurie_Menke: Build G2 Laurie_menke

32) agentofchaos: Build G2 Agentofchaos

33) Laurie_Menke: Sacrifice G2 Laurie_menke
Build R1 Laurie_menke
Build R1 Hi

34) agentofchaos: Sacrifice G2 Agentofchaos
Build R2 Gripsy
Build Y2 Gripsy

35) Laurie_Menke: Discover G1 Laurie_menke Y2 Poppins

36) agentofchaos: Build Y2 Agentofchaos

37) Laurie_Menke: Build G2 Laurie_menke

38) agentofchaos: Discover Y2 Agentofchaos G3 Wazrom

39) Laurie_Menke: Move R3 Hi Poppins

40) agentofchaos: Build G2 Agentofchaos

41) Laurie_Menke: Move R3 Poppins Wazrom

42) agentofchaos: Discover Y2 Wazrom R2 Deetoo

43) Laurie_Menke: Trade G1 B1 Laurie_menke

44) agentofchaos: Trade G2 B2 Agentofchaos

45) Laurie_Menke: Sacrifice B1 Laurie_menke
Trade G1 B1 Poppins

46) agentofchaos: Move B2 Agentofchaos Hi

47) Laurie_Menke: Move R1 Hi Agentofchaos
	Laurie_Menke: Sorry for the delay, agentofchaos. I was on the road and got behind. My apologies.  :/

48) agentofchaos: Attack R1 Agentofchaos

49) Laurie_Menke: Sacrifice B1 Poppins
Trade G2 Y2 Laurie_menke
	agentofchaos: That's OK, I was wondering where you were, but the road calls!

50) agentofchaos: Move Y1 Gripsy Deetoo

51) Laurie_Menke: Discover Y2 Laurie_menke G2 Green

52) agentofchaos: Discover Y2 Gripsy B2 Denetor

53) Laurie_Menke: Trade R1 G1 Laurie_menke

54) agentofchaos: Build G1 Agentofchaos

55) Laurie_Menke: Sacrifice Y2 Green
Move R3 Wazrom Deetoo
Pass

56) agentofchaos: Sacrifice Y3 Gripsy
Move Y1 Deetoo Laurie_menke
Move Y2 Deetoo Laurie_menke
Move Y2 Denetor Laurie_menke
Catastrophe Laurie_menke Y

57) Laurie_Menke: Build G2 Laurie_menke

58) agentofchaos: Build G2 Agentofchaos

59) Laurie_Menke: Trade G2 Y2 Laurie_menke

60) agentofchaos: Move B2 Hi Gripsy
	Laurie_Menke: Ack! This is looking very bad.  :/

61) Laurie_Menke: Sacrifice Y2 Laurie_menke
Move R3 Deetoo Gripsy
Move G1 Laurie_menke Agentofchaos
Catastrophe Agentofchaos G
	Laurie_Menke: No, I guess that move was OK...

62) agentofchaos: S Y3 Agentofchaos
M R1 Agentofchaos Laurie_menke
M R2 Gripsy Laurie_menke
M R2 Gripsy Laurie_menke
C Laurie_menke R

	Laurie_Menke: I'm going out, but I'm not going out without a fight!  ;)  Good game, agentofchaos! Thanks for the fun!  :)
	agentofchaos: Not the move I expected, but very dramatic all the same! Thanks for a great game!&#128512;
	agentofchaos: That last symbol was supposed to be :-)
	agentofchaos: That last symbol was supposed to be :-)
	Laurie_Menke: :)


34568)
Variants: "Hard time"
Started: 2018.9.18, Ended: 2018.11.2
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld R2 B3 G3

2) dlwillson: H B3 R1 G3

3) Felix: B G1 Felix
	dlwillson: GL&HF, Felix!
	Felix: As always, and likewise! Hope it won't be too confusing to have both of these games going

4) dlwillson: B G1 Dlwillson

5) Felix: Trade G1 Y1 Felix
	dlwillson: Not at all! I have about 7 games going. I'm winning some and losing some. :-)

My new job starts a week from Monday!

6) dlwillson: T G1 Y1 Dlwillson
	Felix: Nice! Congrats on the new job. What is it?
	dlwillson: DevOps :-)

7) Felix: Build G1 Felix

8) dlwillson: B G1 Dlwillson

9) Felix: Trade G1 R1 Felix
	Felix: Very cool. You enjoying it so far?

10) dlwillson: Trade G1 R1 Dlwillson

11) Felix: Build R2 Felix
	dlwillson: I love doing DevOps and Infrastructure work. I don't know yet whether I'll enjoy it at DaVita. I will withhold judgement until I've been on the job for at least a few weeks. Several weeks, if I can manage to stay in learner mode and out of judger mode that long.

12) dlwillson: B R2 Dlwillson

13) Felix: D R1 Felix B1 Splash

14) dlwillson: D R2 Dlwillson G2 Field

15) Felix: S G3 Felix
B R3 Splash
B R3 Splash
B R3 Felix

16) dlwillson: B Y1 Dlwillson

17) Felix: Trade R2 G2 Felix

18) dlwillson: S Y1 Dlwillson
M R2 Field Splash
C Splash R

19) Felix: Build G1 Felix

20) dlwillson: B G1 Dlwillson

21) Felix: Trade G1 B1 Felix

22) dlwillson: D G1 Dlwillson B2 Sea

23) Felix: Build Y1 Felix

24) dlwillson: B G1 Dlwillson

25) Felix: Build R1 Felix

26) dlwillson: B Y2 Dlwillson

27) Felix: Discover Y1 Felix G1 Out

28) dlwillson: M R1 Dlwillson Sea

29) Felix: Trade R3 G3 Felix

30) dlwillson: S G3 Dlwillson
B G2 Sea
B G2 Sea
B G3 Dlwillson

31) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y2 Out
Build Y2 Out

32) dlwillson: S G3 Dlwillson
B G3 Dlwillson
B G3 Dlwillson
B Y3 Dlwillson

33) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y3 Felix
Build Y3 Felix

34) dlwillson: S Y3 Dlwillson
M Y1 Dlwillson Sea
M Y1 Sea Out
M Y1 Out Felix
C Felix Y

35) Felix: Trade G3 Y3 Felix

36) dlwillson: T G1 Y1 Sea

37) Felix: Move Y1 Out Sea

38) dlwillson: A Y1 Sea

39) Felix: Build G1 Felix

40) dlwillson: D G2 Sea B1 Sky
	dlwillson: OK... I guess the only way to see how the trap works is to spring it, so... Here I go!

41) Felix: Discover Y2 Out G3 Foultrain
	Felix: I honestly can NOT remember where I was going with that. So... your guess is as good as mine on what the trap was :)

42) dlwillson: M Y1 Sea Sky

43) Felix: Sacrifice G2 Felix
Build Y1 Foultrain
Build Y3 Felix

44) dlwillson: S G3 Dlwillson
B G2 Sky
B G3 Sea
B Y3 Sky

45) Felix: Move R1 Felix Out

46) dlwillson: S Y3 Sky
M Y1 Sea Sky
M Y1 Sky Felix
M Y1 Sky Felix
C Felix Y

47) Felix: Build R2 Out

48) dlwillson: S Y2 Dlwillson
M G2 Sky Felix
D G3 Sea Y1 Sol

	Felix: Well done :)
	dlwillson: TY! Good game!


34567)
Variants: "Hard time"
Started: 2018.9.19, Ended: 2018.10.28
Participants: DodoBirb (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	Trydnt: http://superdupergames.org/?page=archive_play&gid=34496&idx=37

here's the old game so we can reference it more easily
	Trydnt: homeworld b2 y1 g3

2) DodoBirb: Homeworld B1 R3 G3

3) Trydnt: Build G1 Trydnt

4) DodoBirb: Build G1 Dodobirb
	Babamots: For the record, this game is for the tournament. It is replacing a game that could not be continued on SDG because of the site's incorrect implementation of the rules. The link Trydnt posted shows the original game after the first 38 moves (19 each). The plan is to recreate that position in this game (rather than playing strategically) and then resume normal play for a tournament result.

5) Trydnt: Trade G1 Y1 Trydnt

6) DodoBirb: Trade G1 Y1 Dodobirb
	Trydnt: I'm gonna build a ton of yellow and then move them into position

7) Trydnt: Build Y2 Trydnt
	DodoBirb: I'll build my yellows as well

8) DodoBirb: Build Y2 Dodobirb

9) Trydnt: Sacrifice G3 Trydnt
Build Y2 Trydnt
Build Y3 Trydnt
Build Y3 Trydnt

10) DodoBirb: Build G1 Dodobirb
	Trydnt: it looks so wrong haha

11) Trydnt: Discover Y3 Trydnt B3 Bigblue
	DodoBirb: I'm going to get some red now.
	DodoBirb: I was so tempted to catastrophe your system.

12) DodoBirb: Discover Y2 Dodobirb G2 Transition
	Babamots: I came to check on your progress, and all that yellow made me double-take.

13) Trydnt: Discover Y3 Trydnt G3 G3
	DodoBirb: Just making that g2 so I can move to BigBlue

14) DodoBirb: Move Y2 Transition Bigblue

15) Trydnt: Discover Y2 Trydnt G3 Transitiong2

16) DodoBirb: Trade G1 R1 Dodobirb

17) Trydnt: Trade Y1 G1 Trydnt

18) DodoBirb: Build G1 Dodobirb

19) Trydnt: Build Y1 G3
	DodoBirb: Building the g1 so I can factory up to an r3

20) DodoBirb: Sacrifice G3 Dodobirb
Build G1 Dodobirb
Build G2 Dodobirb
Build G2 Dodobirb

21) Trydnt: Discover Y2 Transitiong2 G2 G2

22) DodoBirb: Build G3 Dodobirb

23) Trydnt: Trade Y2 B2 Trydnt

24) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build R1 Dodobirb
Build R1 Dodobirb

25) Trydnt: Build B1 Trydnt

26) DodoBirb: Sacrifice G3 Dodobirb
Build R2 Dodobirb
Build R2 Dodobirb
Build G3 Dodobirb

27) Trydnt: Build G3 Trydnt

28) DodoBirb: Sacrifice G3 Dodobirb
Build R2 Dodobirb
Build R3 Dodobirb
Build G3 Dodobirb

29) Trydnt: Trade G3 R3 Trydnt

30) DodoBirb: Sacrifice R2 Dodobirb
Pass
Pass

31) Trydnt: Move B1 Trydnt G3

32) DodoBirb: Sacrifice R2 Dodobirb
Pass
Pass

33) Trydnt: Build B1 G3
	Draw5PlayAll: What the...

34) DodoBirb: Sacrifice G2 Dodobirb
Pass
Pass
	Trydnt: need small red and medium green to make next system
	Trydnt: 2 small reds too

35) Trydnt: Discover B1 G3 G2 Grass

36) DodoBirb: Sacrifice R1 Dodobirb
Pass
Pass

37) Trydnt: Build R1 Trydnt

38) DodoBirb: Sacrifice R1 Dodobirb
Pass

39) Trydnt: Move R3 Trydnt G3

40) DodoBirb: Sacrifice R1 Dodobirb
Pass

41) Trydnt: Move R3 G3 Grass

42) DodoBirb: Discover R3 Dodobirb B2 Halfblue

43) Trydnt: Sacrifice G1 Trydnt
Build R1 Grass
	Draw5PlayAll: Where do all those greens go?
	DodoBirb: Nowhere. I'm getting rid of them.

44) DodoBirb: Sacrifice G2 Dodobirb
Pass
Pass

45) Trydnt: Sacrifice B2 Trydnt
Pass
Pass
	Trydnt: nearly there. I'll sac b2 in hw then grow it in g3 then sac the b1 and I'll be all set up as it was

46) DodoBirb: Sacrifice G1 Dodobirb
Pass

47) Trydnt: Build B2 G3

48) DodoBirb: Sacrifice G1 Dodobirb
Pass

49) Trydnt: Sacrifice B1 G3
Pass

50) DodoBirb: Sacrifice R2 Dodobirb
Pass
Pass

51) Trydnt: Sacrifice R1 Grass
Attack Y2 Bigblue

52) DodoBirb: Build G1 Dodobirb
	DodoBirb: I think it's set up now
	Trydnt: I believe so

53) Trydnt: Trade Y3 G3 Bigblue

54) DodoBirb: Move G1 Dodobirb Halfblue

55) Trydnt: Build G1 Bigblue

56) DodoBirb: Build R1 Halfblue

57) Trydnt: Sacrifice G3 Bigblue
Build Y2 G2
Build Y3 Bigblue
Build Y3 Bigblue

58) DodoBirb: Build G1 Dodobirb

59) Trydnt: Discover Y2 G2 B1 B1

60) DodoBirb: Move Y1 Dodobirb Halfblue

61) Trydnt: Build B3 G3

62) DodoBirb: Trade R3 B3 Halfblue

63) Trydnt: Move Y3 Bigblue Grass

64) DodoBirb: Build G2 Halfblue

65) Trydnt: Build G3 Bigblue
	DodoBirb: Not much I can do

66) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build R1 Halfblue
Build R2 Halfblue

67) Trydnt: Sacrifice G3 Bigblue
Build G3 Bigblue
Build R2 Grass
Build R2 Grass
	Trydnt: you could have moved your y1 to bigblue and blown up a large amount of my yellow 
	Trydnt: would have left you with no yellow but could trade for it next turn and get a y3 which would have let you access my hw
	DodoBirb: Huh, I didn't see that move. My brain sort of forgot what I was moving the y1 to HalfBlue for.

68) DodoBirb: Discover R1 Halfblue R3 Bigred
	DodoBirb: I was sort of just trying to avoid having a catastrophe. Maybe I should go for more of them.

69) Trydnt: Sacrifice Y3 G3
Move R2 Grass Dodobirb
Move R2 Grass Dodobirb
Move R3 Grass Dodobirb
Catastrophe Dodobirb R

70) DodoBirb: Trade B3 Y3 Halfblue

71) Trydnt: Sacrifice Y3 Grass
Move B1 Grass Dodobirb
Move B2 G3 Dodobirb
Move B3 G3 Dodobirb
Catastrophe Dodobirb B

	DodoBirb: Good game! Good luck in the rest of the tourney.
	Trydnt: Well played :) good luck in your journey also


34524)
Variants: "Hard time"
Started: 2018.9.19, Ended: 2018.10.11
Participants: Draw5PlayAll (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B3 Y1 G3

2) Draw5PlayAll: Homeworld B2 R1 G3
	Felix: This is for the tournament. Good luck! 

3) Felix: B G1 Felix

4) Draw5PlayAll: Build G1 Draw5playall

5) Felix: Trade G1 Y1 Felix

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Felix: B Y2 Felix

8) Draw5PlayAll: Build Y2 Draw5playall

9) Felix: D Y1 Felix G2 Opulence

10) Draw5PlayAll: Discover Y1 Draw5playall G3 R1

11) Felix: B G1 Felix

12) Draw5PlayAll: Build G1 Draw5playall

13) Felix: Trade G1 R1 Felix

14) Draw5PlayAll: Trade G1 R1 Draw5playall

15) Felix: Build R2 Felix

16) Draw5PlayAll: Build R2 Draw5playall

17) Felix: Move R2 Felix Opulence

18) Draw5PlayAll: Trade R2 B2 Draw5playall

19) Felix: B R2 Felix

20) Draw5PlayAll: Build B1 Draw5playall

21) Felix: Discover R1 Felix B2 Scrum

22) Draw5PlayAll: Move B2 Draw5playall R1

23) Felix: Sacrifice G3 Felix
Build R2 Scrum
Build R3 Opulence
Build R3 Felix

24) Draw5PlayAll: Move R1 Draw5playall R1

25) Felix: Move R3 Opulence R1

26) Draw5PlayAll: Sacrifice Y1 R1
Discover R1 R1 G2 Y4

27) Felix: Build R3 R1

28) Draw5PlayAll: Sacrifice B2 R1
Pass
Pass

29) Felix: Sacrifice Y2 Felix
Move R3 R1 Draw5playall
Move R3 R1 Draw5playall

30) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover R1 Y4 Y3 Temp
Move R1 Temp Draw5playall
Catastrophe Draw5playall Red

31) Felix: Move R3 Felix Draw5playall

32) Draw5PlayAll: Sacrifice G3 Draw5playall
Build B1 Draw5playall
Build B1 Draw5playall
Build B2 Draw5playall

33) Felix: C Draw5playall Blue
Pass
	Draw5PlayAll: Eh, I tried



34576)
Variants: "Hard time"
Started: 2018.9.19, Ended: 2018.10.7
Participants: Laurie_Menke (S), Felix (N)
Winner: Felix

1) Felix: H B2 R3 G3
	Laurie_Menke: Hi Felix! Have fun with this 2018 Homeworlds Tournament!  :)
	Felix: Thanks, same to you!

2) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: (Reminder to send the start of game form.)

3) Felix: Build G1 Felix
	Felix: Ah yes, thanks for the reminder!

4) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: No problem!  :)

5) Felix: T G1 B1 Felix

6) Laurie_Menke: Trade G1 R1 Laurie_menke

7) Felix: B B1 Felix

8) Laurie_Menke: Build G1 Laurie_menke

9) Felix: B G1 Felix

10) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

11) Felix: Trade G1 Y1 Felix

12) Laurie_Menke: Build G1 Laurie_menke

13) Felix: Discover B1 Felix G1 Out

14) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Yellow
Build G2 Yellow
Build G2 Laurie_menke
	Laurie_Menke: Sorry I disappeared for a while... been traveling. Will still be slow until Tuesday.

15) Felix: Build G3 Felix

	Felix: No problem!
	Felix: Aw, man, I hate that the hard time was auto-triggered. I wouldn't have minded waiting, but I guess tourney rules are tourney rules. Sorry!
	Laurie_Menke: ::sigh::  I'm sorry. I know that's not the way anyone wants to win a game, especially in a tournament, but I am confident you would have beat me eventually anyway. Sorry for the time out, and congrats on the win!  :)


34579)
Variants: "Hard time"
Started: 2018.9.20, Ended: 2018.9.25
Participants: dlwillson (S), Trydnt (N)
Winner: dlwillson

1) Trydnt: Homeworld B2 Y1 G3
	dlwillson: For the Great Homeworlds Tournament 2018
	Trydnt: Good luck :)

2) dlwillson: H B3 R2 G3 Dlwillson

3) Trydnt: Build G1 Trydnt
	dlwillson: Have fun :-)

4) dlwillson: B G1 Dlwillson

5) Trydnt: Trade G1 Y1 Trydnt

6) dlwillson: T G1 Y1 Dlwillson

7) Trydnt: Build Y2 Trydnt

8) dlwillson: B Y2 Dlwillson

9) Trydnt: Trade Y1 R1 Trydnt

10) dlwillson: B G1 Dlwillson

11) Trydnt: Build R1 Trydnt

12) dlwillson: D Y1 Dlwillson G1 Field

13) Trydnt: Discover Y2 Trydnt G3 G3

14) dlwillson: B Y1 Field

15) Trydnt: Build R1 Trydnt

16) dlwillson: D Y1 Field B3 Sky

17) Trydnt: Move Y2 G3 Field

18) dlwillson: S G3 Dlwillson
B Y2 Field
B Y3 Dlwillson
B Y3 Sky

19) Trydnt: Discover R1 Trydnt Y3 Y3

20) dlwillson: T Y2 R2 Dlwillson

21) Trydnt: Discover Y2 Field G3 G3

22) dlwillson: T Y1 G1 Sky

23) Trydnt: Build G2 Trydnt

24) dlwillson: B G2 Sky

25) Trydnt: Discover R1 Trydnt G3 Gee3

26) dlwillson: S Y3 Dlwillson
M G2 Sky Trydnt
M G1 Sky Trydnt
M Y3 Sky Trydnt
C Trydnt G

27) Trydnt: Sacrifice Y2 G3
Move R1 Y3 Trydnt
Move R1 Gee3 Trydnt

28) dlwillson: T Y3 R3 Trydnt
C Trydnt R

	dlwillson: Good game! Thank you!
	Trydnt: Well played!


34590)
Variants: "Hard time"
Started: 2018.9.25, Ended: 2018.10.22
Participants: eliscinsky (S), DodoBirb (N)
Winner: eliscinsky

1) DodoBirb: Homeworld R1 B3 G3
	DodoBirb: Just to make sure that there's no confusion, this is for the tournament.

2) eliscinsky: Homeworld Y1 B2 G3
	eliscinsky: For the tournament, Check.

3) DodoBirb: Build G1 Dodobirb
	eliscinsky: Good luck!
	DodoBirb: Good Luck!

4) eliscinsky: B G1 Eliscinsky

5) DodoBirb: Trade G1 Y1 Dodobirb

6) eliscinsky: T G1 R1 Eliscinsky

7) DodoBirb: Build Y1 Dodobirb

8) eliscinsky: Build R1 Eliscinsky

9) DodoBirb: Discover Y1 Dodobirb G2 Grass

10) eliscinsky: B R2 Eliscinsky

11) DodoBirb: Build Y2 Grass

12) eliscinsky: Discover R2 Eliscinsky Y3 Sol

13) DodoBirb: Trade G3 R3 Dodobirb

14) eliscinsky: Move R2 Sol Grass

15) DodoBirb: Move R3 Dodobirb Grass

16) eliscinsky: Build R2 Grass
	DodoBirb: I honestly have no idea where I was going with the g3 to r3 move.

17) DodoBirb: Move R3 Grass Dodobirb
	DodoBirb: let's play risky

18) eliscinsky: Attack Y2 Grass
	eliscinsky: So this is turning out to be quite interesting. 

19) DodoBirb: Trade R3 G3 Dodobirb

20) eliscinsky: A Y1 Grass

21) DodoBirb: Build G1 Dodobirb

22) eliscinsky: Build R2 Grass

23) DodoBirb: Build Y2 Dodobirb

24) eliscinsky: Build R3 Eliscinsky

25) DodoBirb: Move Y2 Dodobirb Grass

26) eliscinsky: S Y2 Grass
M R2 Grass Dodobirb
M R2 Grass Dodobirb
	DodoBirb: That early rush was quite effective.

27) DodoBirb: Attack R2S Dodobirb

28) eliscinsky: M R2 Grass Dodobirb
C Dodobirb Red

29) DodoBirb: Trade G1 R1 Dodobirb

30) eliscinsky: M R1 Eliscinsky Dodobirb

31) DodoBirb: Attack R1S Dodobirb

32) eliscinsky: Discover R3 Eliscinsky G3 Earth

33) DodoBirb: Sacrifice R1 Dodobirb
Attack Y1S Grass

34) eliscinsky: B G1 Eliscinsky

35) DodoBirb: Build G1 Dodobirb

36) eliscinsky: T G1 B1 Eliscinsky

37) DodoBirb: Move Y1 Grass Dodobirb

38) eliscinsky: Build G1 Eliscinsky

39) DodoBirb: Build Y2 Grass

40) eliscinsky: Build R1 Eliscinsky

41) DodoBirb: Trade G1 B1 Dodobirb

42) eliscinsky: B R2 Earth

43) DodoBirb: Sacrifice B1 Dodobirb
Trade Y2 R2 Grass

44) eliscinsky: Sacrifice B1 Eliscinsky
Trade R2 Y2 Earth

45) DodoBirb: Discover R2 Grass Y3 Yellow

46) eliscinsky: Move R3 Earth Grass

47) DodoBirb: Move Y2 Grass Dodobirb

48) eliscinsky: B R2 Grass

49) DodoBirb: Move Y2 Dodobirb Eliscinsky

50) eliscinsky: A Y2 Eliscinsky

51) DodoBirb: Move Y1 Dodobirb Eliscinsky

52) eliscinsky: T Y2 B2 Eliscinsky

53) DodoBirb: Build G1 Dodobirb

54) eliscinsky: S B2 Eliscinsky
T R2 B2 Grass
T R3 Y3 Grass

55) DodoBirb: Build Y2 Dodobirb

56) eliscinsky: Build B1 Grass

57) DodoBirb: Discover G1 Dodobirb B2 Bluey

58) eliscinsky: B B1 Grass

59) DodoBirb: Build G1 Dodobirb

60) eliscinsky: Sacrifice Y3 Grass
Move B2 Grass Dodobirb
Move B1 Grass Dodobirb
Move B1 Grass Dodobirb
Catastrophe Dodobirb Blue

	eliscinsky: Thanks for a great game. Good luck in the rest of the tournament. 
	DodoBirb: Good game. I learned a lot.


34571)
Variants: "Hard time"
Started: 2018.9.26, Ended: 2018.9.28
Participants: mneme (S), speardane (N)
Winner: mneme

1) speardane: Homeworld Y3 B1 G3
	mneme: This IS a tournament game.  (you should probably fill out the form as challenger).

2) mneme: Homeworld G3 R2 B3
	speardane: Will do. Good luck!

3) speardane: Build G1 Speardane
	mneme: You too! Do your best!

4) mneme: Build B1 Mneme

5) speardane: Discover G1 Speardane B2 Delos

6) mneme: Build B1 Mneme

7) speardane: Build G1 Delos

8) mneme: Trade B3 Y3 Mneme

9) speardane: Build G1 Speardane

10) mneme: Build B2 Mneme

11) speardane: Trade G3 R3 Speardane

12) mneme: Discover B2 Mneme Y1 Terpsicore

13) speardane: Build G2 Delos

14) mneme: Build B2 Mneme

15) speardane: Trade G2 Y2 Delos

16) mneme: Trade B2 R2 Mneme

17) speardane: Trade G1 R1 Delos

18) mneme: Build B2 Mneme

19) speardane: Build G1 Delos

20) mneme: Discover B2 Mneme Y1 Urania

21) speardane: Build R1 Speardane

22) mneme: Build B3 Mneme

23) speardane: Trade R3 B3 Speardane

24) mneme: Trade B3 G3 Mneme

25) speardane: Build B3 Speardane

26) mneme: Sacrifice Y3 Mneme
Move B1 Mneme Terpsicore
Move B1 Terpsicore Delos
Move B1 Delos Speardane
Catastrophe Speardane B

27) speardane: Trade G1 B1 Delos

28) mneme: Sacrifice G3 Mneme
Build B1 Urania
Build B3 Mneme
Build B3 Terpsicore

29) speardane: Move B1 Delos Speardane

30) mneme: Move B3 Terpsicore Speardane

31) speardane: Build B3 Speardane

32) mneme: Sacrifice R2 Mneme
Attack B3 Speardane
Attack R1 Speardane

33) speardane: Sacrifice R1 Delos
Attack R1 Speardane

34) mneme: Trade B3 R3 Speardane

35) speardane: Build B3 Speardane

36) mneme: Attack B3 Speardane

37) speardane: Build G1 Speardane

38) mneme: Attack R1 Speardane

39) speardane: Pass
	speardane: Good game!

40) mneme: Sacrifice B3 Mneme
Trade R3 Y3 Speardane
Trade B3 Y3 Speardane
Trade R1 Y1 Speardane
Catastrophe Speardane Y
	mneme: Good game!  



34439)
Variants: "Unrated, Hard time"
Started: 2018.9.29, Ended: 2018.10.2
Participants: wil (S), Xx_Henry_xX (N)
Winner: Xx_Henry_xX

1) Xx_Henry_xX: Homeworld G1 B2 Y3



34510)
Variants: "Unrated"
Started: 2018.9.29, Ended: 2018.9.30
Participants: Xx_Henry_xX (S), wil (N)
Winner: wil

	Xx_Henry_xX: I just realized that I challenged the same person lol


34463)
Variants: "Hard time"
Started: 2018.9.30, Ended: 2018.10.2
Participants: Xx_Henry_xX (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Xx_Henry_xX: Homeworld G2 B3 Y3

3) Trydnt: Build G1 Trydnt

4) Xx_Henry_xX: Build Y1 Xx_henry_xx (s)

5) Trydnt: Trade G1 Y1 Trydnt

6) Xx_Henry_xX: Build Y2 Xx_henry_xx

7) Trydnt: Build Y2 Trydnt

8) Xx_Henry_xX: Discover Y1 Xx_henry_xx B1 Ligma

9) Trydnt: Discover Y1 Trydnt G3 G3
	Xx_Henry_xX: I'm bad at naming

10) Xx_Henry_xX: Trade Y1 G1 Ligma

11) Trydnt: Build Y1 Trydnt

12) Xx_Henry_xX: Build G1 Ligma

13) Trydnt: Build Y2 G3

14) Xx_Henry_xX: Trade Y3 R3 Xx_henry_xx

15) Trydnt: Trade Y2 R2 Trydnt

16) Xx_Henry_xX: Trade G1 R1 Ligma

17) Trydnt: Move Y2 G3 Ligma

18) Xx_Henry_xX: Move Y2 Xx_henry_xx Ligma

19) Trydnt: Sacrifice R2 Trydnt
Attack Y2 Ligma
Attack R1 Ligma

20) Xx_Henry_xX: Build R1 Xx_henry_xx

21) Trydnt: Attack G1 Ligma

22) Xx_Henry_xX: Trade R1 B1 Xx_henry_xx

23) Trydnt: Trade Y2 B2 Ligma

24) Xx_Henry_xX: Build R1 Xx_henry_xx

25) Trydnt: Build R1 Ligma

26) Xx_Henry_xX: Trade R1 G1 Xx_henry_xx

27) Trydnt: Build G1 Ligma

28) Xx_Henry_xX: Build G2 Xx_henry_xx

29) Trydnt: Move G1 Ligma Xx_henry_xx
Catastrophe Xx_henry_xx G

30) Xx_Henry_xX: Trade R3 G3 Xx_henry_xx

31) Trydnt: Move B2 Ligma Xx_henry_xx

32) Xx_Henry_xX: Trade B1 R1 Xx_henry_xx

33) Trydnt: Sacrifice G3 Trydnt
Build B1 Xx_henry_xx
Build B1 Xx_henry_xx
Build Y2 Ligma
Catastrophe Xx_henry_xx B



34526)
Variants: "Unrated"
Started: 2018.9.30, Ended: 2018.9.30
Participants: Xx_Henry_xX (S), Trydnt (N)
Winner: Trydnt



34490)
Started: 2018.9.30, Ended: 2018.10.29
Participants: dragon76n (S), Xx_Henry_xX (N)
Winner: dragon76n

1) Xx_Henry_xX: Homeworld G1 B2 Y3

2) dragon76n: H Y1 B3 G3


3) Xx_Henry_xX: Build Y1 Xx_henry_xx

4) dragon76n: B G1 Dragon76n

5) Xx_Henry_xX: Discover Y1 Xx_henry_xx G3 Alpaca

6) dragon76n: T G1 Y1 Dragon76n

7) Xx_Henry_xX: Build Y2 Alpaca

8) dragon76n: Build Y2 Dragon76n

9) Xx_Henry_xX: Build Y2 Xx_henry_xx

10) dragon76n: D Y1 Dragon76n G2 Gretwo

11) Xx_Henry_xX: Trade Y2 B2 Xx_henry_xx

12) dragon76n: Build G1 Dragon76n

13) Xx_Henry_xX: Move B2 Xx_henry_xx Alpaca

14) dragon76n: Build Y2 Gretwo

15) Xx_Henry_xX: Build Y3 Xx_henry_xx

16) dragon76n: Discover Y1 Gretwo B3 Bluthr

17) Xx_Henry_xX: Discover Y3 Xx_henry_xx Y3 Yeller

18) dragon76n: Trade Y1 G1 Bluthr

19) Xx_Henry_xX: Sacrifice Y2 Alpaca
Move B2 Alpaca Gretwo
Move B2 Gretwo Yeller

20) dragon76n: Sacrifice G3 Dragon76n
Build G2 Bluthr
Build G2 Bluthr
Build G3 Dragon76n

21) Xx_Henry_xX: Trade Y3 G3 Yeller

22) dragon76n: B Y1 Gretwo

23) Xx_Henry_xX: Trade B2 Y2 Yeller

24) dragon76n: M Y2 Gretwo Bluthr

25) Xx_Henry_xX: Move Y2 Yeller Xx_henry_xx



34604)
Variants: "Hard time"
Started: 2018.10.1, Ended: 2018.11.10
Participants: ajo (S), Draw5PlayAll (N)
Winner: ajo

1) Draw5PlayAll: Homeworld B3 R1 G3
	ajo: For the tournament. :)  Good luck!
	Draw5PlayAll: I legit did not know you (ajo) were Quuxplusone until just recently.

2) ajo: Homeworld B2 R1 G3

3) Draw5PlayAll: Build G1 Draw5playall
	ajo: I'm not too surprised by that. I don't know what other names YOU might have. :)

4) ajo: Build G1 Ajo
	Draw5PlayAll: Good luck, you are going to need it. Really good luck, that is.

5) Draw5PlayAll: Trade G1 R1 Draw5playall

6) ajo: Trade G3 R3 Ajo

7) Draw5PlayAll: Build R2 Draw5playall

8) ajo: Build R2 Ajo

9) Draw5PlayAll: Trade R2 Y2 Draw5playall

10) ajo: Trade R3 Y3 Ajo

11) Draw5PlayAll: Build R2 Draw5playall

12) ajo: Build R2 Ajo
	Draw5PlayAll: This red freeze out is not working

13) Draw5PlayAll: Discover R2 Draw5playall G2 Lebling

14) ajo: Discover R2 Ajo G3 Alpha

15) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R3 Draw5playall
Build R3 Lebling
Build R3 Lebling

16) ajo: Build Y1 Ajo
	Draw5PlayAll: I have confirmed that this move is non-suicidal.

17) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover R1 Draw5playall B2 Whoa
Discover R3 Lebling B3 Wow
	ajo: Hmm, so it is.

18) ajo: Move Y1 Ajo Alpha
	Draw5PlayAll: This is REALLY DANGEROUS

19) Draw5PlayAll: Trade R3 G3 Draw5playall

20) ajo: Build R3 Alpha
	ajo: The aggressive move here would be "sac y1; discover r2 Alpha y2 Beta"... but I don't think I'm ready for that.

21) Draw5PlayAll: Build G1 Draw5playall

22) ajo: Move R2 Alpha Whoa

23) Draw5PlayAll: Trade G1 Y1 Draw5playall

24) ajo: Attack R1 Whoa

25) Draw5PlayAll: Build G1 Draw5playall

26) ajo: Trade R1 G1 Whoa

27) Draw5PlayAll: Sacrifice G1 Draw5playall
Build R1 Wow

28) ajo: Build G1 Whoa

29) Draw5PlayAll: Build Y1 Draw5playall

30) ajo: Build Y2 Alpha

31) Draw5PlayAll: Move Y1 Draw5playall Lebling

32) ajo: Build G2 Whoa

33) Draw5PlayAll: Build Y2 Draw5playall

34) ajo: Discover R2 Ajo Y3 Beta

35) Draw5PlayAll: Trade Y1 B1 Draw5playall

36) ajo: Move Y1 Alpha Whoa

37) Draw5PlayAll: Move B1 Draw5playall Lebling

38) ajo: Move G1 Whoa Draw5playall

39) Draw5PlayAll: Move R3 Lebling Draw5playall

40) ajo: Sacrifice G2 Whoa
Build G2 Draw5playall
Build G2 Draw5playall
Catastrophe Draw5playall Green

41) Draw5PlayAll: Trade R3 G3 Draw5playall

42) ajo: Build R3 Whoa

43) Draw5PlayAll: Discover B1 Lebling Y1 Ugh

44) ajo: Move R3 Alpha Lebling

45) Draw5PlayAll: Sacrifice Y1 Lebling
Discover R2 Lebling Y1 Uhoh

46) ajo: Trade R2 G2 Whoa

47) Draw5PlayAll: Trade R1 G1 Wow
	ajo: I like these star names better. ;)

48) ajo: Sacrifice G2 Whoa
Build Y2 Ajo
Build Y3 Whoa
	Draw5PlayAll: I was doing well....

49) Draw5PlayAll: Build G2 Wow

50) ajo: Build G2 Whoa

51) Draw5PlayAll: Sacrifice B1 Ugh
Trade G1 Y1 Wow

52) ajo: Sacrifice G2 Whoa
Build R1 Whoa
Build R2 Lebling

53) Draw5PlayAll: Build G1 Wow

54) ajo: Build G2 Whoa

55) Draw5PlayAll: Trade G1 B1 Wow

56) ajo: Trade G1 B1 Whoa

57) Draw5PlayAll: Discover Y1 Wow B2 No

58) ajo: Move R3 Whoa Alpha

59) Draw5PlayAll: Build G1 Draw5playall

60) ajo: Build G1 Whoa

61) Draw5PlayAll: Sacrifice G1 Draw5playall
Pass

62) ajo: Move B1 Whoa Alpha

	Draw5PlayAll: I absolutely cannot see myself having any hope of winning this.


34611)
Variants: "Hard time"
Started: 2018.10.3, Ended: 2018.11.9
Participants: Babamots (S), Felix (N)
Winner: Felix

1) Felix: H B1 Y2 G3

2) Babamots: Homeworld B3 R1 G3
	Felix: For the tournament, I assume?
	Babamots: Yes, for the tournament.

I've been wondering how our next game would go for quite a while. Now I guess I'll find out. Good luck!

3) Felix: Build G1 Felix

4) Babamots: Build G1 Babamots
	Felix: We will see! Good luck and have fun!


5) Felix: Trade G1 Y1 Felix

6) Babamots: Trade G1 Y1 Babamots

7) Felix: Build G1 Felix

8) Babamots: Build Y1 Babamots

9) Felix: Build Y2 Felix

10) Babamots: Discover Y1 Babamots G2 Bajor

11) Felix: Discover Y1 Felix G3 Flemoid

12) Babamots: Build Y2 Babamots

13) Felix: Build Y3 Flemoid

14) Babamots: Build Y3 Bajor

15) Felix: Move Y1 Flemoid Bajor

16) Babamots: Sacrifice Y1 Babamots
Move Y1 Bajor Flemoid

17) Felix: Trade G1 R1 Felix

18) Babamots: Build G1 Babamots

19) Felix: Build R1 Felix

20) Babamots: Move Y3 Bajor Flemoid

21) Felix: Sacrifice G3 Felix
Build Y1 Flemoid
Build Y3 Felix
Catastrophe Flemoid Yellow
Build Y1 Bajor

22) Babamots: Build Y1 Babamots

23) Felix: Trade Y3 G3 Felix

24) Babamots: Trade Y2 R2 Babamots

25) Felix: Discover Y1 Bajor B3 Gringot

26) Babamots: Build R2 Babamots

27) Felix: Sacrifice G3 Felix
Build Y2 Bajor
Build Y3 Gringot
Build Y3 Felix

28) Babamots: Build Y3 Babamots

29) Felix: Sacrifice Y2 Felix
Move Y1 Bajor Babamots
Move Y2 Bajor Babamots
Catastrophe Babamots Yellow
	Babamots: Oh dear. I expected that move, but I see more problems with it now.

30) Babamots: Trade R2 Y2 Babamots
	Felix: I honestly feel a bit nervous about taking it, but we'll see if it works out for me!

31) Felix: M R1 Felix Gringot

32) Babamots: Build Y1 Babamots

33) Felix: T Y3 G3 Gringot

34) Babamots: Discover Y1 Babamots G2 Ferenginar

35) Felix: Build R2 Gringot

36) Babamots: Discover R2 Babamots Y2 Mizar
	Babamots: I'll be playing slow this week. My parents are visiting later and I'm pretty distracted getting ready.

37) Felix: Move R2 Gringot Ferenginar

38) Babamots: Discover Y1 Ferenginar B3 Bolarus
	Felix: Not a problem! Enjoy your visit with your folks :)
	Babamots: consider discovering a y2 with the r2 in Babamots in preparation for sacrificing g3 to build all remaining yellow
he can't build all the yellow without letting you catastrophe
	Babamots: Hmm, that was supposed to be a note for myself. Now you know all my secrets!

39) Felix: Sacrifice G3 Gringot
Build R2 Ferenginar
Build R3 Gringot
Build R3 Felix
	Babamots: My parents' visit is over, so hopefully I can play at a more normal pace.

So when I broadcast my knee-jerk move four days ago, I just wanted to make sure that, when I had time to study it properly, I kept that one in mind. Now that I've looked around, I think it still looks good. Sorry you had to wait for almost no reason.
	Felix: No problem! I know all your plans now! :D I don't utilize the notes area enough, myself.

40) Babamots: Sacrifice G3 Babamots
Build R3 Mizar
Build Y1 Bolarus
Build Y3 Babamots

41) Felix: Sacrifice Y3 Felix
Move R2 Ferenginar Bolarus
Move R1 Gringot Mizar
Move R3 Gringot Mizar
Catastrophe Mizar Red

42) Babamots: Sacrifice Y1 Bolarus
Discover Y1 Bolarus G1 Risa

43) Felix: T R3 G3 Felix

44) Babamots: Trade Y2 R2 Babamots

45) Felix: Sacrifice G3 Felix
Build R1 Ferenginar
Build R3 Bolarus
Build R3 Felix

46) Babamots: Discover R2 Babamots Y2 Pakled

47) Felix: Trade R3 G3 Bolarus

48) Babamots: Sacrifice G1 Babamots
Build R3 Pakled

49) Felix: Build R3 Bolarus

50) Babamots: Build Y1 Risa

51) Felix: Trade R3 Y3 Bolarus

52) Babamots: Move R3 Pakled Gringot
	Babamots: I'm out of town for my sister-in-law's wedding. If you don't mind, I'm going to pause my timer until I get back next week.
	Felix: Huh, I didn't know we could do that. I don't mind, but I wish I had known during my game with speardane. I would not have timed out if I knew I could freeze it. Maybe I can get a rematch? :)
	Felix: Ah, I see that it's in the rules. I guess I didn't read them carefully enough. Oh well, I suppose that's my loss.

53) Felix: Sacrifice G3 Bolarus
Build Y2 Gringot
Build Y3 Bolarus
Build R3 Bolarus

54) Babamots: Attack Y2 Gringot

55) Felix: Sacrifice Y1 Gringot
Move Y3 Bolarus Ferenginar

56) Babamots: Move R2 Pakled Gringot

57) Felix: Sacrifice Y3 Ferenginar
Move R1 Ferenginar Gringot
Move R2 Ferenginar Gringot
Catastrophe Gringot Red
Move R2 Bolarus Risa

	Babamots: Too bad we're not playing with last year's simultaneous elimination rules or I'd've had a draw back there!

Well, I don't feel any particular need to play this out. My last hope was that you'd be oblivious to a red catastrophe at home, but you don't miss things often. Congratulations, and maybe I'll get you next time!
	Felix: Thanks! It was a good game. I'm sure you'll get me next time. We're pretty evenly matched, but small momentum changes can still build up over time into large advantages.

I actually spotted the double elim earlier and made sure I re-read the rules again before I chose to not guard against that :) I honestly was feeling pretty nervous leaving my two reds at home like that for so long, thinking I had overlooked something! Good game.


34612)
Variants: "Hard time"
Started: 2018.10.3, Ended: 2018.11.19
Participants: Babamots (S), DodoBirb (N)
Winner: Babamots

1) DodoBirb: Homeworld B1 R2 G3
	DodoBirb: I assume this is for the tourney?

2) Babamots: Homeworld B3 R1 G3
	Babamots: Yes, for the tournament. Good luck!

3) DodoBirb: Build G1 Dodobirb
	DodoBirb: Good Luck!

4) Babamots: Build G1 Babamots

5) DodoBirb: Trade G1 Y1 Dodobirb

6) Babamots: Build G1 Babamots

7) DodoBirb: Build G1 Dodobirb

8) Babamots: Trade G1 Y1 Babamots

9) DodoBirb: Trade G1 B1 Dodobirb

10) Babamots: Trade G1 R1 Babamots

11) DodoBirb: Trade B1 R1 Dodobirb

12) Babamots: Build R2 Babamots

13) DodoBirb: Build R2 Dodobirb

14) Babamots: Discover R2 Babamots Y2 Iconia

15) DodoBirb: Discover R2 Dodobirb Y3 Sun

16) Babamots: Build R3 Babamots

17) DodoBirb: Build R3 Dodobirb

18) Babamots: Discover R3 Babamots Y2 Bolarus

19) DodoBirb: Move R3 Dodobirb Sun

20) Babamots: Build R3 Babamots

21) DodoBirb: Move R2 Sun Dodobirb

22) Babamots: Trade R3 Y3 Babamots

23) DodoBirb: Discover R1 Dodobirb R3 Keepaway

24) Babamots: Move Y3 Babamots Iconia

25) DodoBirb: Build G1 Dodobirb

26) Babamots: Build Y1 Babamots

27) DodoBirb: Trade G1 B1 Dodobirb

28) Babamots: Move Y3 Iconia Keepaway
	DodoBirb: I think I finally "get it". A bit too late for this game though.
	Babamots: You think you're getting a good feel for the game? That's great! Any special insights from this game?

29) DodoBirb: Build G1 Dodobirb
	DodoBirb: I definitely screwed up the opening a little bit. When I started building blue I should have kept going but instead I switched to Red when you started building that. Now you have 3 large ships over my 2 because I took 2 turns trading.

30) Babamots: Build G1 Babamots

31) DodoBirb: Move G1 Dodobirb Sun

32) Babamots: Sacrifice G3 Babamots
Build Y2 Keepaway
Build Y3 Babamots
Build G1 Babamots

33) DodoBirb: Build G2 Dodobirb

34) Babamots: Move G1 Babamots Bolarus

35) DodoBirb: Build G2 Sun

36) Babamots: Discover R3 Bolarus B3 Mizar

37) DodoBirb: Move B1 Dodobirb Sun

38) Babamots: Attack R1 Keepaway

39) DodoBirb: Discover G2 Sun B2 Bluey

40) Babamots: Trade Y1 B1 Babamots

41) DodoBirb: Sacrifice G3 Dodobirb
Build G2 Sun
Build G3 Dodobirb
Build G3 Bluey

42) Babamots: Build G3 Bolarus

43) DodoBirb: Build Y1 Dodobirb

44) Babamots: Move B1 Babamots Bolarus
	Babamots: I'm out of town for my sister-in-law's wedding. If you don't mind, I'm going to pause my timer until I get back next week.
	DodoBirb: Don't worry, that's fine

45) DodoBirb: Build B2 Sun

46) Babamots: Build B2 Bolarus

47) DodoBirb: Discover Y1 Dodobirb B3 Oceania

48) Babamots: Move G1 Bolarus Keepaway

49) DodoBirb: Move R2 Dodobirb Oceania

50) Babamots: Move G3 Bolarus Oceania

51) DodoBirb: Move R2 Oceania Bluey

52) Babamots: Sacrifice Y3 Keepaway
Move G1 Keepaway Dodobirb
Move R3 Mizar Dodobirb
Move G3 Oceania Dodobirb
Catastrophe Dodobirb G

53) DodoBirb: Trade G3 Y3 Bluey

54) Babamots: Attack Y1 Dodobirb

	DodoBirb: gg
	DodoBirb: Well played.
	Babamots: gg! And thanks for being in the tournament! Good luck on your games!
	Draw5PlayAll: Bolarus?
	Babamots: Bolarus IX is the homeworld of Bolians in Star Trek.
	Draw5PlayAll: Bolians? (No spoilers)
	Babamots: Bolians are a blue-skinned, usually-bald humanoid race. If there's a Starfleet officer in the background who isn't a human, they're usually Bolian. It seems to me that they appear in situations where the show makers wanted to display a little species diversity but not work at it too hard. The most notable individual Bolian I can think of is Mr. Mot, who is a barber on the Enterprise D.
	Draw5PlayAll: Wait so are the Andorians and Bolians both blue skinned?!
	Babamots: Andoeians typically have blue skin, though there have been some blueish ones.
	Draw5PlayAll: What?
	Babamots: I was confirming what you said: Andorians and Bolians have blue skin.

It was barely worth mentioning, but I was also saying that that there are a few exceptions: a few Andorians in Star Trek looked more greenish than blue.
	Babamots: Sorry, I just reread and saw that I said just said some Andorians are "blueish." I must have been interrupted while typing. I mean to say "blueish green."


34614)
Variants: "Hard time"
Started: 2018.10.4, Ended: 2018.10.8
Participants: ts52 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3
	Trydnt: For the homeworlds tournament

2) ts52: Homeworld Y1 B2 G3
	ts52: Have a good game!

3) Trydnt: Build G1 Trydnt

	ts52: Crap. Didn't build up enough time before vacation. My bad. Good game!
	ts52: Sorry I made it a disappointing one.
	Babamots: As far as I'm concerned, you can replay this for the tournament if you both want to. Only starting with 2d on the clock isn't in the spirit of "you can take a week off" that I intended. I want to change that next time.
	Trydnt: I'm happy to play it again. We're so few moves in recreating it would be a doddle. ts52 you back from vacation?
	ts52: I'm fine either way. Trydnt, if you'd like to have a proper game, I'll gladly replay my first move. But I'm also fine with calling this one for you. I should've paid more attention to the time. So I leave it up to you.
	Trydnt: let's do it
	Babamots: If you're agreed, go ahead and start a new game and record it like normal. I'll strike this one from the record once you have a new one started.


34619)
Variants: "Unrated"
Started: 2018.10.5, Ended: 2018.10.16
Participants: RogueJedi234 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R3 G2 B3

2) RogueJedi234: Homeworld R1 B2 G3

3) Babamots: Build B1 Babamots

4) RogueJedi234: Build G1 Roguejedi234

5) Babamots: Trade B1 Y1 Babamots

6) RogueJedi234: Build G1 Roguejedi234

7) Babamots: Build B1 Babamots

8) RogueJedi234: Trade G1 Y1 Roguejedi234

9) Babamots: Trade B1 G1 Babamots

10) RogueJedi234: Discover G1 Roguejedi234 B3 Cherry

11) Babamots: Discover G1 Babamots B1 Bolarus

12) RogueJedi234: Trade G1 R1 Cherry

13) Babamots: Build B1 Babamots

14) RogueJedi234: Sacrifice Y1 Roguejedi234
Move R1 Cherry Bolarus

15) Babamots: Sacrifice Y1 Babamots
Discover G1 Bolarus B2 Ferenginar

16) RogueJedi234: Build G1 Roguejedi234

17) Babamots: Build B1 Babamots

18) RogueJedi234: Trade G1 Y1 Roguejedi234

19) Babamots: Trade G1 R1 Ferenginar

20) RogueJedi234: Build G1 Roguejedi234

21) Babamots: Trade B3 Y3 Babamots

22) RogueJedi234: Sacrifice G1 Roguejedi234
Build R2 Bolarus

23) Babamots: Build B2 Babamots

24) RogueJedi234: Trade R2 G2 Bolarus

25) Babamots: Discover B2 Babamots G1 Risa

26) RogueJedi234: Build G1 Bolarus

27) Babamots: Build B3 Babamots

28) RogueJedi234: Build R2 Bolarus

29) Babamots: Build B3 Risa

30) RogueJedi234: Build G1 Roguejedi234

31) Babamots: Trade B3 G3 Risa

32) RogueJedi234: Trade R2 Y2 Bolarus

33) Babamots: Move B3 Babamots Bolarus

34) RogueJedi234: Sacrifice Y2 Bolarus
Move G2 Bolarus Babamots
Move G1 Bolarus Babamots

35) Babamots: Trade B3 R3 Bolarus

36) RogueJedi234: Build G2 Babamots
Catastrophe Babamots Green

37) Babamots: Attack R1 Bolarus

38) RogueJedi234: Discover G1 Roguejedi234 B3 Wintermute

39) Babamots: Sacrifice G3 Risa
Build B3 Babamots
Build B3 Risa
Build Y1 Babamots

40) RogueJedi234: Build G1 Wintermute

41) Babamots: Sacrifice Y3 Babamots
Move B3 Babamots Roguejedi234
Move B3 Risa Babamots
Move B3 Babamots Roguejedi234

42) RogueJedi234: Attack B3 Roguejedi234

43) Babamots: Sacrifice R3 Bolarus
Attack B3 Roguejedi234
Attack G3 Roguejedi234
Attack Y1 Roguejedi234

	Babamots: GG! And hey, what does "Wintermute" refer to?
	RogueJedi234: William Gibson's novel Neuromancer. One of the AIs that feature into the story.


34616)
Variants: "Hard time"
Started: 2018.10.8, Ended: 2018.10.27
Participants: mneme (S), Trydnt (N)
Winner: mneme

1) Trydnt: Homeworld Y3 B2 G3
	mneme: To be clear, this IS for the tournament. 
	Trydnt: Indeed it is

2) mneme: Homeworld R1 B2 G3

3) Trydnt: Build G1 Trydnt

4) mneme: Build G1 Mneme
	mneme: sorry for the double; was thinking of trying freeze, but figured I'd mix things up a bit.


5) Trydnt: Trade G1 R1 Trydnt

6) mneme: Trade G1 R1 Mneme

7) Trydnt: Build R2 Trydnt

8) mneme: Build R2 Mneme

9) Trydnt: Build R2 Trydnt

10) mneme: Trade R2 Y2 Mneme

11) Trydnt: Trade R2 Y2 Trydnt

12) mneme: Build R2 Mneme

13) Trydnt: Build R2 Trydnt

14) mneme: Discover R2 Mneme B3 Clio

15) Trydnt: Discover R2 Trydnt G1 G1

16) mneme: Build G1 Mneme

17) Trydnt: Trade R1 B1 Trydnt

18) mneme: Move G1 Mneme Clio

19) Trydnt: Move B1 Trydnt G1

20) mneme: Build Y1 Mneme

21) Trydnt: Build B1 G1

22) mneme: Move Y1 Mneme Clio

23) Trydnt: Trade B1 Y1 G1

24) mneme: Build Y1 Clio

25) Trydnt: Discover Y2 Trydnt B1 B1

26) mneme: Discover Y1 Clio G1 Thalia

27) Trydnt: Discover B1 G1 Y3 Y3

28) mneme: Build G2 Mneme

29) Trydnt: Discover R2 G1 Y3 Why3

30) mneme: Build Y2 Thalia

31) Trydnt: Sacrifice G3 Trydnt
Build R1 Why3
Build R3 Trydnt
Build B1 Y3

32) mneme: Discover R1 Mneme G3 Erato

33) Trydnt: Trade R3 G3 Trydnt

34) mneme: Sacrifice G3 Mneme
Build G2 Clio
Build G2 Clio
Build G3 Mneme

35) Trydnt: Discover Y1 G1 R3 R3

36) mneme: Sacrifice G2 Clio
Build R3 Clio
Build R3 Erato

37) Trydnt: Discover Y1 R3 B2 B2

38) mneme: Move G3 Mneme Y3

39) Trydnt: Discover B1 Y3 G2 G2

40) mneme: Sacrifice R1 Erato
Attack B1 Y3

41) Trydnt: Build B3 G2

42) mneme: Sacrifice G3 Y3
Build G1 Clio
Build G3 Mneme
Build B3 Y3

43) Trydnt: Trade B3 R3 G2

44) mneme: Discover G2 Mneme B3 Urania

45) Trydnt: Sacrifice Y1 B2
Move R3 G2 Urania

46) mneme: Sacrifice G2 Urania
Build G2 Mneme
Build Y1 Thalia

47) Trydnt: Build B2 G2

48) mneme: Move R3 Clio G2

49) Trydnt: Sacrifice Y2 B1
Move R3 Urania Thalia
Move R3 Thalia Clio

50) mneme: Sacrifice R2 Clio
Attack B2 G2
Attack B1 G2

51) Trydnt: Sacrifice R2 Why3
Attack G2 Clio
Attack Y1 Clio

52) mneme: Sacrifice G2 Mneme
Build G2 Clio
Catastrophe Clio G
Build Y2 Mneme

53) Trydnt: Move R3 Clio Thalia

54) mneme: Sacrifice Y2 Mneme
Move Y1 Thalia Trydnt
Move Y2 Thalia Trydnt

55) Trydnt: Sacrifice R2 Trydnt
Attack Y2 Trydnt
Attack Y1 Thalia

56) mneme: Sacrifice G3 Mneme
Build Y2 Trydnt
Catastrophe Trydnt Y
Build B1 Y3
Build B3 G2

57) Trydnt: Move R3 Thalia Why3

58) mneme: Move B3 Y3 Mneme

59) Trydnt: Move Y1 Thalia Y3

60) mneme: Trade B2 R2 G2

61) Trydnt: Discover Y1 Y3 B2 B2

62) mneme: Trade B3 Y3 G2

	mneme: good game!
	Trydnt: well played indeed


34624)
Variants: "Hard time"
Started: 2018.10.8, Ended: 2018.10.20
Participants: deanthebean (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B2 G3

2) deanthebean: Homeworld Y1 B2 G3
	goulo: hi!
	deanthebean: Thank you for accepting the challenge. Enjoy the game!


3) goulo: Build G1 Goulo

4) deanthebean: Build G1 Deanthebean

5) goulo: Trade G1 Y1 Goulo

6) deanthebean: Build G1 Deanthebean

7) goulo: Build Y1 Goulo

8) deanthebean: Trade G1 R1 Deanthebean

9) goulo: Build Y2 Goulo

10) deanthebean: Build R1 Deanthebean

11) goulo: Discover Y1 Goulo G1 Verdeto

12) deanthebean: Trade G3 Y3 Deanthebean

13) goulo: Build Y2 Verdeto

14) deanthebean: Discover Y3 Deanthebean G3 Johnthescone

15) goulo: Build Y2 Verdeto

16) deanthebean: Build Y3 Johnthescone

17) goulo: Sacrifice Y2 Verdeto
Move Y2 Verdeto Johnthescone
Move Y1 Verdeto Johnthescone
Catastrophe Johnthescone Y

18) deanthebean: Trade R1 Y1 Deanthebean

19) goulo: Trade Y1 R1 Goulo

20) deanthebean: Build G1 Deanthebean

21) goulo: Discover Y2 Goulo G1 Verdeto

22) deanthebean: Build G2 Deanthebean

23) goulo: Build G2 Goulo

24) deanthebean: Discover G1 Deanthebean G3 Andythecandy

25) goulo: Trade G2 Y2 Goulo

26) deanthebean: Build G2 Andythecandy

27) goulo: Discover Y2 Verdeto G3 Verdego

28) deanthebean: Trade G1 B1 Deanthebean

29) goulo: Build Y1 Verdego

30) deanthebean: Move Y1 Deanthebean Andythecandy

31) goulo: Sacrifice G3 Goulo
Build Y2 Goulo
Build Y3 Goulo
Build Y3 Verdego

32) deanthebean: Build Y3 Andythecandy

33) goulo: Sacrifice Y2 Goulo
Move Y3 Verdego Deanthebean
Discover Y1 Verdego Y2 Flavo

34) deanthebean: Sacrifice G2 Deanthebean
Build R1 Deanthebean
Build B1 Deanthebean

35) goulo: Trade Y3 B3 Deanthebean
Catastrophe Deanthebean B

36) deanthebean: Build Y3 Andythecandy

37) goulo: Sacrifice Y3 Goulo
Move Y1 Flavo Deanthebean
Move Y2 Goulo Deanthebean
Move Y2 Verdego Deanthebean
Catastrophe Deanthebean Y
	deanthebean: Well played! I felt like I was in trouble when you locked me out of yellow technology and took some desperate measures that probably only made things worse.

	goulo: thanks, good game!

that last turn was funny: at first I saw "wow you've got 3 yellows, include 2 size 3 ships, at andy the candy -- surely I must move my small yellow from flavo there to kill your 2 big yellows!" before I noticed "oh wait, instead of that, i could just move 3 yellows to your homeworld and win this turn, duh". :)


34637)
Variants: "Hard time"
Started: 2018.10.12, Ended: 2018.10.24
Participants: mneme (S), eliscinsky (N)
Winner: mneme

1) eliscinsky: H B1 Y2 G3
	mneme: For the Great Homeworlds Tournament
	eliscinsky: Agreed: For the Great Homeworlds Tournament
Good Luck!

2) mneme: Homeworld G3 R1 B3

3) eliscinsky: Build G1 Eliscinsky
	eliscinsky: Very interesting choice for a HW.  I haven't seen that one before. 

4) mneme: Build B1 Mneme

5) eliscinsky: Trade G1 B1 Eliscinsky
	mneme: I use it (or variations of it) all the time.
My 2p homeworlds tend to be very much based around what the 1p homeworld looks like.

6) mneme: Build B2 Mneme

7) eliscinsky: B B2 Eliscinsky

8) mneme: Trade B2 Y2 Mneme

9) eliscinsky: T B1 R1 Eliscinsky

10) mneme: Trade B1 R1 Mneme

11) eliscinsky: Build R2 Eliscinsky

12) mneme: Discover R1 Mneme G2 Euterpe

13) eliscinsky: Discover R2 Eliscinsky G3 Orion

14) mneme: Build Y1 Mneme

15) eliscinsky: B G1 Eliscinsky

16) mneme: Move Y2 Mneme Euterpe

17) eliscinsky: Build R2 Eliscinsky

18) mneme: Build B1 Mneme

19) eliscinsky: Trade G1 Y1 Eliscinsky

20) mneme: Build Y1 Euterpe

21) eliscinsky: Move Y1 Eliscinsky Orion

22) mneme: Move B1 Mneme Euterpe

23) eliscinsky: M B2 Eliscinsky Orion

24) mneme: Trade Y2 G2 Euterpe

25) eliscinsky: T R2 Y2 Eliscinsky

26) mneme: Build R2 Euterpe

27) eliscinsky: Build R2 Orion

28) mneme: Discover R2 Euterpe Y3 Caliope

29) eliscinsky: Discover R2 Orion G2 Earth

30) mneme: Sacrifice G2 Euterpe
Build R3 Caliope
Build R3 Euterpe

31) eliscinsky: Sacrifice Y2 Eliscinsky
Move R2 Earth Caliope
Move R1 Eliscinsky Caliope
Catastrophe Caliope Red

32) mneme: Build Y2 Euterpe

33) eliscinsky: Move R2 Orion Eliscinsky

34) mneme: Move R3 Euterpe Orion

35) eliscinsky: Trade Y1 R1 Orion

36) mneme: Attack R1 Orion

37) eliscinsky: Trade B2 R2 Orion

38) mneme: Attack R2 Orion

39) eliscinsky: Move R2 Eliscinsky Orion
Catastrophe Orion Red

40) mneme: Build B1 Mneme
	eliscinsky: And now I'll start ALL over again. :)
It's like I "pass"ed 8-10 times  LOL
Why do I think I'm going to lose  ;)
It's all good clean fun, until someone has a C :P
	eliscinsky: Seriously I am having fun.  Thanks for a challenging game.  Hope I've thrown you a few twists.

41) eliscinsky: B G1 Eliscinsky
	mneme: *nod* It's going to be really tough for you from here on in, though.

42) mneme: Build R1 Euterpe

43) eliscinsky: Trade G1 Y1 Eliscinsky

44) mneme: Build Y2 Euterpe
	mneme: Sorry for the undo, but while I think it goes to the same place either way, this is, I think, a little more challenging for you.  I wouldn't want to bore.

45) eliscinsky: Build Y3 Eliscinsky

46) mneme: Sacrifice Y2 Euterpe
Discover Y1 Euterpe R3 Erato
Move Y1 Erato Eliscinsky
Catastrophe Eliscinsky Y


	eliscinsky: Well Thanks for a good, enlightening game.  However I think I need to let this one go.  Does resigning help or hurt you're stats?
	mneme: It's basically the same as any other loss.  And yeah -- it's 3 turns until a guarunteed loss; probably best to let it go.  Good game!


34636)
Variants: "Hard time"
Started: 2018.10.12, Ended: 2018.11.20
Participants: eliscinsky (S), Laurie_Menke (N)
Winner: eliscinsky

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Hi Eric! Good luck! For the record, this is a tournament game...

2) eliscinsky: H Y1 B2 G3

3) Laurie_Menke: Build G1 Laurie_menke
	eliscinsky: Ageed: For the tournament.
Good luck!

4) eliscinsky: Build G1 Eliscinsky

5) Laurie_Menke: Trade G1 R1 Laurie_menke

6) eliscinsky: T G1 R1 Eliscinsky

7) Laurie_Menke: Build G1 Laurie_menke

8) eliscinsky: B G1 Eliscinsky

9) Laurie_Menke: Trade G1 B1 Laurie_menke

10) eliscinsky: Trade G1 B1 Eliscinsky

11) Laurie_Menke: Build B2 Laurie_menke

12) eliscinsky: Build B2 Eliscinsky

13) Laurie_Menke: Trade B2 Y2 Laurie_menke

14) eliscinsky: T B2 Y2 Eliscinsky

15) Laurie_Menke: Build B2 Laurie_menke

16) eliscinsky: Build B2 Eliscinsky

17) Laurie_Menke: Discover B2 Laurie_menke G2 Green

18) eliscinsky: Discover B2 Eliscinsky G3 Orion

19) Laurie_Menke: Build B3 Green
	Laurie_Menke: Sorry... brain fart...
	eliscinsky: No problem.  I undo at least once in most of my games.

20) eliscinsky: B B3 Orion

21) Laurie_Menke: Trade B3 Y3 Green

22) eliscinsky: Trade B2 Y2 Orion

23) Laurie_Menke: Build G1 Laurie_menke

24) eliscinsky: B Y1 Orion

25) Laurie_Menke: Discover Y2 Laurie_menke R2 Red

26) eliscinsky: M B3 Orion Red

27) Laurie_Menke: Move Y2 Red Orion

28) eliscinsky: B Y1 Orion
C Orion Yellow

29) Laurie_Menke: Discover B2 Green G3 Greener

30) eliscinsky: Move B1 Eliscinsky Greener
	Laurie_Menke: Ack! LOL...

31) Laurie_Menke: Build Y1 Green
	eliscinsky: Shouldn't a g1 be Green, g2 be Greener, & g3 Greenest?  LOL
	Laurie_Menke: LOL... I suppose you're right!

32) eliscinsky: Trade B3 R3 Red

33) Laurie_Menke: Build R1 Laurie_menke

34) eliscinsky: T B1 Y1 Greener

35) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack Y1 Greener

36) eliscinsky: S Y2 Eliscinsky
M R3 Red Greener
Pass

37) Laurie_Menke: Sacrifice Y3 Green
Move Y1 Green Greener
Move Y1 Greener Eliscinsky
Move Y1 Greener Eliscinsky

38) eliscinsky: Attack B2 Greener

39) Laurie_Menke: Sacrifice G1 Laurie_menke
Build Y2 Eliscinsky
Catastrophe Eliscinsky Y
	eliscinsky: I see where this is heading. Very nice.

40) eliscinsky: T R3 Y3 Greener
	Laurie_Menke: Thanks!  ;)

41) Laurie_Menke: Move B1 Laurie_menke Eliscinsky

42) eliscinsky: A B1 Eliscinsky

43) Laurie_Menke: Build G1 Laurie_menke

44) eliscinsky: Build B1 Greener

45) Laurie_Menke: Build R1 Laurie_menke

46) eliscinsky: Trade B1 Y1 Eliscinsky

47) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

48) eliscinsky: Build B1 Greener

49) Laurie_Menke: Build G1 Laurie_menke

50) eliscinsky: T B2 R2 Greener

51) Laurie_Menke: Trade G3 Y3 Laurie_menke

52) eliscinsky: Sacrifice Y3 Greener
Move R1 Eliscinsky Laurie_menke
Move R2 Greener Eliscinsky
Move R2 Eliscinsky Laurie_menke
Catastrophe Laurie_menke Red

53) Laurie_Menke: Build G1 Laurie_menke

54) eliscinsky: Build Y1 Eliscinsky
	Laurie_Menke: I don't know why I was thinking you couldn't pull that off yet.  ::sigh::

55) Laurie_Menke: Move G1 Laurie_menke Eliscinsky
	Draw5PlayAll: Where did all the red go?

56) eliscinsky: Trade G3 R3 Eliscinsky
	Laurie_Menke: LOL

	Laurie_Menke: Ugh. I'm sorry, Eric.  :(  I've been on the road and got behind. I'm very sorry for such an anticlimactic win, but I do think you would have won anyway. Sorry.  :(


34648)
Variants: "Hard time"
Started: 2018.10.15, Ended: 2018.11.30
Participants: ts52 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3
	ts52: Thanks for the restart. This is for the homeworlds tournament (take 2). Have a good game!

2) ts52: Homeworld Y1 B2 G3
	Babamots: I've updated the spreadsheet with the new game number. Good luck to both of you!

3) Trydnt: Build G1 Trydnt

4) ts52: Build G1 Ts52

5) Trydnt: Trade G1 Y1 Trydnt

6) ts52: Trade G1 Y1 Ts52

7) Trydnt: Build Y2 Trydnt

8) ts52: Build Y2 Ts52

9) Trydnt: Discover Y1 Trydnt G1 G1

10) ts52: Discover Y1 Ts52 G3 Kermit

11) Trydnt: Build G1 Trydnt

12) ts52: Build G1 Ts52

13) Trydnt: Build G2 Trydnt

14) ts52: Build G2 Ts52

15) Trydnt: Trade G1 R1 Trydnt

16) ts52: Trade G2 R2 Ts52

17) Trydnt: Discover Y2 Trydnt G1 G11

18) ts52: Build R1 Ts52

19) Trydnt: Build G2 Trydnt

20) ts52: Discover G1 Ts52 B3 Gonzo

21) Trydnt: Discover G2 Trydnt B1 B1

22) ts52: Move Y2 Ts52 Gonzo

23) Trydnt: Sacrifice G3 Trydnt
Build G2 B1
Build G3 Trydnt
Build R1 Trydnt

24) ts52: Move R1 Ts52 Gonzo

25) Trydnt: Move R1 Trydnt G11

26) ts52: Build R2 Gonzo

27) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 Trydnt
Build R3 G11

28) ts52: Build R3 Ts52

29) Trydnt: Move R3 G11 Kermit

30) ts52: Discover G3 Ts52 R3 Elmo

31) Trydnt: Attack Y1 Kermit

32) ts52: Move R2 Gonzo G1

33) Trydnt: Discover Y1 G1 B3 B3

34) ts52: Sacrifice G3 Elmo
Build R3 Gonzo
Build G3 Gonzo
Pass

35) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 Kermit
Build Y3 G11

36) ts52: Trade R2 B2 Ts52

37) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y3 B3
Build R2 Kermit

38) ts52: Move R3 Gonzo B1

39) Trydnt: Sacrifice Y2 G11
Move G2 B1 Gonzo
Move G2 B1 Gonzo
Catastrophe Gonzo G

40) ts52: Trade B2 G2 Ts52

41) Trydnt: Build Y2 G11

42) ts52: Build G1 Ts52
	Trydnt: that turned out better than I thought it would

43) Trydnt: Trade R1 B1 Trydnt
	ts52: indeed. nice play

44) ts52: M G2 Ts52 Gonzo

45) Trydnt: Move Y3 G11 Gonzo

46) ts52: Move Y2 Gonzo B1

47) Trydnt: Sacrifice R2 Kermit
Attack G2 Gonzo
Attack R1 Gonzo

48) ts52: Build G2 Ts52

49) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Gonzo
Build R1 Gonzo

50) ts52: Sacrifice G2 Ts52
Build G2 Ts52
Build R2 B1

51) Trydnt: Sacrifice B1 Trydnt
Trade R3 B3 Kermit

52) ts52: Build R3 G1

53) Trydnt: Sacrifice Y3 B3
Move R1 Gonzo Ts52
Move R1 Gonzo Ts52
Move G3 Gonzo Ts52

54) ts52: Sacrifice R3 G1
Attack G3N Ts52
Attack R1N Ts52
Attack R1N Ts52

55) Trydnt: Sacrifice Y3 Gonzo
Move G2 Gonzo Ts52
Move R1 G11 B3
Move R1 B3 Ts52
Catastrophe Ts52 G
Catastrophe Ts52 R



34649)
Started: 2018.10.16, Ended: 2019.1.7
Participants: RogueJedi234 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3

2) RogueJedi234: Homeworld R3 G2 B3
	Babamots: Good luck!

3) Babamots: Build G1 Babamots

4) RogueJedi234: Build B1 Roguejedi234

5) Babamots: Trade G1 R1 Babamots

6) RogueJedi234: Build B1 Roguejedi234

7) Babamots: Build R1 Babamots

8) RogueJedi234: Trade B1 Y1 Roguejedi234
	RogueJedi234: An... Unorthodox start, at least from this side of the table. Maybe the game has changed since I last played. I am interested to see how this plays out.

9) Babamots: Build G1 Babamots

10) RogueJedi234: Discover B1 Roguejedi234 G1 Vergon6
	Babamots: I don't really have a plan yet other than trying to put reds out of reach and maybe building a few extra mediums that you can't.

11) Babamots: Build G1 Babamots

12) RogueJedi234: Build B1 Vergon6

13) Babamots: Trade R1 Y1 Babamots

14) RogueJedi234: Trade B1 R1 Vergon6

15) Babamots: Discover G1 Babamots B2 Bolarus

16) RogueJedi234: Build R2 Vergon6

17) Babamots: Sacrifice G3 Babamots
Build G2 Bolarus
Build G2 Bolarus
Build G3 Babamots

18) RogueJedi234: Trade R1 Y1 Vergon6

19) Babamots: Sacrifice G3 Babamots
Build Y2 Babamots
Build G3 Babamots
Build G3 Babamots
	RogueJedi234: ugh. Freaking factory.

20) RogueJedi234: Discover Y1 Vergon6 G3 Omicronpersei8

21) Babamots: Move Y1 Babamots Bolarus

22) RogueJedi234: Build Y2 Omicronpersei8

23) Babamots: Sacrifice G3 Babamots
Build Y2 Babamots
Build Y3 Bolarus
Build G3 Babamots
	Babamots: I'm out of town for my sister-in-law's wedding. If you don't mind, I'm going to pause my timer until I get back next week.
	RogueJedi234: Oh, yeah no problem. I was wondering what was happening.

24) RogueJedi234: Discover Y2 Omicronpersei8 B2 Decapod10

25) Babamots: Move Y3 Bolarus Vergon6

26) RogueJedi234: Build Y3 Roguejedi234

27) Babamots: Build Y3 Bolarus

28) RogueJedi234: Sacrifice Y1 Roguejedi234
Move R2 Vergon6 Decapod10

29) Babamots: Move Y3 Vergon6 Decapod10

30) RogueJedi234: Build Y1 Omicronpersei8

31) Babamots: Sacrifice R1 Babamots
Attack R2 Decapod10

32) RogueJedi234: Sacrifice Y2 Decapod10
Move Y1 Omicronpersei8 Bolarus
Move Y1 Omicronpersei8 Bolarus
Catastrophe Bolarus Yellow

33) Babamots: Discover R2 Decapod10 G3 Risa

34) RogueJedi234: Build B1 Roguejedi234

35) Babamots: Trade G2 Y2 Bolarus

36) RogueJedi234: Build B1 Vergon6

37) Babamots: Sacrifice G3 Babamots
Build G2 Babamots
Build G3 Bolarus
Build R1 Risa

38) RogueJedi234: Build B2 Vergon6

39) Babamots: Move G3 Bolarus Vergon6

40) RogueJedi234: Sacrifice B1 Roguejedi234
Trade B1 Y1 Vergon6

41) Babamots: Sacrifice R2 Risa
Attack B2 Vergon6
Attack Y1 Vergon6
	RogueJedi234: Sorry about that. Thanksgiving and such.

42) RogueJedi234: Build B1 Vergon6

43) Babamots: Trade B2 R2 Vergon6
	Babamots: I figured the holiday was to blame. It's no problem.

44) RogueJedi234: Build B1 Vergon6

45) Babamots: Sacrifice R2 Vergon6
Attack B1 Vergon6
Attack B1 Vergon6

46) RogueJedi234: Build B2 Vergon6
Catastrophe Vergon6 Blue

47) Babamots: Sacrifice G2 Babamots
Build G2 Vergon6
Build Y1 Bolarus
	Babamots: If you get to play Andy this weekend, let me know how it goes!

48) RogueJedi234: Build B1 Roguejedi234

49) Babamots: Sacrifice G3 Babamots
Build Y1 Decapod10
Build Y3 Bolarus
Build G3 Babamots

50) RogueJedi234: Trade B1 R1 Roguejedi234

51) Babamots: Move Y2 Bolarus Risa

52) RogueJedi234: Discover R1 Roguejedi234 B1 Neutralplanet

53) Babamots: Build R2 Risa

54) RogueJedi234: Build B1 Roguejedi234

55) Babamots: Move R2 Risa Neutralplanet

56) RogueJedi234: Build B1 Roguejedi234

57) Babamots: Attack R1 Neutralplanet
	Babamots: Looks like neutrality doesn't alway protect folks from interstellar conflicts.
	Draw5PlayAll: Looks like the very act of sending a war shuttle to a planet is enough to make it no longer neutral.

58) RogueJedi234: Move B1 Roguejedi234 Neutralplanet
	RogueJedi234: I do believe that Zapp Brannigan would have something to say about the standing of the people of the Neutral Planet

59) Babamots: Sacrifice Y2 Risa
Move R1 Risa Vergon6
Move G2 Bolarus Neutralplanet

60) RogueJedi234: Build B2 Roguejedi234

61) Babamots: Sacrifice Y3 Decapod10
Move R2 Neutralplanet Roguejedi234
Move R1 Neutralplanet Roguejedi234
Move G2 Neutralplanet Roguejedi234

62) RogueJedi234: Trade B2 R2 Roguejedi234
Catastrophe Roguejedi234 Red

63) Babamots: Sacrifice Y2 Babamots
Move G3 Vergon6 Roguejedi234
Move G2 Vergon6 Roguejedi234
Catastrophe Roguejedi234 G

	Babamots: Thanks for the game!


34674)
Variants: "Unrated, Hard time"
Started: 2018.10.28, Ended: 2019.1.17
Participants: ts52 (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: For the tournament

2) ts52: Homeworld Y1 B2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) ts52: Build G1 Ts52

5) Draw5PlayAll: Trade G1 Y1 Draw5playall
	ts52: Have a good game!

6) ts52: Trade G1 R1 Ts52

7) Draw5PlayAll: Build Y1 Draw5playall
	Draw5PlayAll: Oh no, not this...

8) ts52: Build R1 Ts52

9) Draw5PlayAll: Build Y2 Draw5playall

10) ts52: Build R2 Ts52
	Draw5PlayAll: I miss the old days when you just built up gradually and tried your best to get all four colors and control a bunch of ports and eventually out-maneuver your opponent for the win.

11) Draw5PlayAll: Trade Y2 R2 Draw5playall
	ts52: Yeah, me too.

12) ts52: Trade R2 Y2 Ts52

13) Draw5PlayAll: Build R2 Draw5playall

14) ts52: Build Y2 Ts52

15) Draw5PlayAll: Trade R2 B2 Draw5playall

16) ts52: Build R2 Ts52

17) Draw5PlayAll: Discover B2 Draw5playall G2 Money

18) ts52: Discover R2 Ts52 G3 Kermit

19) Draw5PlayAll: Move Y1 Draw5playall Money

20) ts52: Move Y2 Ts52 Kermit

21) Draw5PlayAll: Move R2 Draw5playall Money

22) ts52: Build G1 Ts52

23) Draw5PlayAll: Build B1 Money

24) ts52: T G1 B1 Ts52

25) Draw5PlayAll: Build G1 Draw5playall

26) ts52: Build G1 Ts52

27) Draw5PlayAll: Discover G1 Draw5playall B2 B2

28) ts52: Move R2 Kermit B2

29) Draw5PlayAll: Sacrifice G1 B2
Build G1 Draw5playall
	Draw5PlayAll: Darn you!

30) ts52: Discover Y2 Ts52 B3 Gonzo

31) Draw5PlayAll: Discover G1 Draw5playall Y2 Wolf359
	ts52: :)

32) ts52: Build Y3 Kermit

33) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build Y3 Money
Build G1 Wolf359

34) ts52: Move B1 Ts52 Kermit

35) Draw5PlayAll: Move G1 Wolf359 Draw5playall

36) ts52: Move Y2 Kermit B2

37) Draw5PlayAll: Build G2 Draw5playall

38) ts52: Move G1 Ts52 Gonzo

39) Draw5PlayAll: Discover G1 Wolf359 R3 Elmo

40) ts52: Build Y2 Gonzo

41) Draw5PlayAll: Discover B1 Money G3 Oscar

42) ts52: Build G2 Ts52

43) Draw5PlayAll: Sacrifice G2 Draw5playall
Build B1 Money
Build B3 Oscar

44) ts52: Move Y2 B2 Elmo
	Draw5PlayAll: I did not expect to hold on to the oscar system; that is why I used a Muppet name.

45) Draw5PlayAll: Build G2 Draw5playall
	ts52: Fair, I probably should've done something about that....

46) ts52: Attack G1N Elmo

47) Draw5PlayAll: Move Y1 Money Oscar

48) ts52: Move Y2 Gonzo B2

49) Draw5PlayAll: Move B3 Oscar B2

50) ts52: Move R2 B2 Oscar

51) Draw5PlayAll: Sacrifice Y1 Oscar
Discover B1 Oscar Y1 Lost

52) ts52: Move R1 Ts52 Kermit

53) Draw5PlayAll: Build R2 Money

54) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R3 Kermit
Build R3 Oscar

55) Draw5PlayAll: Sacrifice R2 Money
Attack Y2 B2
Pass

56) ts52: Build R2 Ts52

57) Draw5PlayAll: Move B3 B2 Elmo

58) ts52: Move R3 Kermit B2

59) Draw5PlayAll: Attack Y2 Elmo

60) ts52: Attack Y2N B2

61) Draw5PlayAll: Attack G1 Elmo

62) ts52: Move R2 Ts52 Kermit
	Draw5PlayAll: So I named it a muppet expecting that you would take it over quickly. Then you did. And then I took it back.

63) Draw5PlayAll: Sacrifice G1 Draw5playall
Build G1 Draw5playall
	ts52: Indeed. This has definitely been an interesting game.
	Draw5PlayAll: Why exactly do you always use muppets again?

64) ts52: Move R2 Kermit Lost
	Draw5PlayAll: You have a clear advantage but I am not entirely sure how you would utilize it.
	ts52: Endgames are definitely not my strongest.

65) Draw5PlayAll: Move B1 Lost Elmo
	Draw5PlayAll: Stahpit

66) ts52: Move G2 Ts52 Gonzo

67) Draw5PlayAll: Sacrifice G1 Draw5playall
Build G1 Elmo

68) ts52: Move Y2 Gonzo B2

69) Draw5PlayAll: Move Y1 Draw5playall Money

70) ts52: Move Y2 B2 Gonzo
	Draw5PlayAll: Nice try.

71) Draw5PlayAll: Pass
	ts52: I had to try
	Draw5PlayAll: I offer a draw.

72) ts52: Move G2 Gonzo Lost

73) Draw5PlayAll: Pass
	ts52: What does that mean for the tournament?
	Draw5PlayAll: We each score 0.5 points.

74) ts52: Pass

75) Draw5PlayAll: Pass
	ts52: Ok. I accept the draw.
	Babamots: To make it so the draw doesn't take rank points away from either of you, one of you will need to make the game "unranked." You need to send a server command here in the chat area:

~variant add Unranked

The other player will need to accept that change from their home page.

Draw5, since you issued the challenge, will you please enter the result in the "Game Finish Form?" Then we'll find out if my spreadsheet correctly gives tournament points for draws :-).

Lastly, the rules say the last player to move should resign to end the game. Since that's you ts52, will you please resign (after the game is set to Unranked)?

Thanks guys!
	Draw5PlayAll: Babamots: The variant is Unrated, not Unranked. Also, I seem to have lost the game forms.

	Draw5PlayAll: Passing so that ts52 gets informed.
	Babamots: Oh, "unrated"! Thanks!
Here's a page with links to everything tournament related:

https://jpeterbaker.github.io/homeworlds/tournament/links2018.html
	ts52: Ok, I believe I've accepted the 'unranked' setting change, once I see that here, I'll resign.
	ts52: unrated. Anyway, good game!


34664)
Variants: "Unrated"
Started: 2018.10.29, Ended: 2018.11.19
Participants: Felix (S), dlwillson (N)
Winner: Felix

1) dlwillson: H Y2 R3 G3 *

2) Felix: Homeworld B3 Y1 G3
	dlwillson: Here we go! GLHF, Felix!

3) dlwillson: B G1 Dlwillson
	Felix: Likewise!

4) Felix: Build G1 Felix

5) dlwillson: D G1 Dlwillson B1 Sea

6) Felix: Trade G1 B1 Felix

7) dlwillson: B G1 Dlwillson

8) Felix: Build B1 Felix

9) dlwillson: B G1 Dlwillson

10) Felix: Discover B1 Felix G2 Out

11) dlwillson: B G2 Sea

12) Felix: Build G2 Felix

13) dlwillson: B G3 Sea

14) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Out
Build B2 Out

15) dlwillson: Trade G2 Y2 Sea

16) Felix: Trade B2 Y2 Out

17) dlwillson: T G3 B3 Sea

18) Felix: Move B1 Out Sea

19) dlwillson: S Y2 Sea
D G1 Dlwillson Y1 Sol
D B3 Sea Y2 Asol

20) Felix: Sacrifice G2 Felix
Build Y1 Out
Build Y3 Out

21) dlwillson: T G1 R1 Sea

22) Felix: Move Y2 Out Sea

23) dlwillson: M B3 Asol Felix

24) Felix: Move Y3 Out Felix

25) dlwillson: T B3 R3 Felix
	Felix: Wow, rookie mistake!

26) Felix: Trade B2 R2 Out

27) dlwillson: M R3 Felix Out

28) Felix: Sacrifice Y1 Out
Move R2 Out Sea
	dlwillson: Nice recovery!

29) dlwillson: B G1 Sol
	Felix: Thanks! I was pretty nervous there

30) Felix: A R1 Sea

31) dlwillson: D G1 Sol B2 Sky

32) Felix: S G3 Felix
B Y1 Sea
B Y2 Sea
B Y3 Felix

33) dlwillson: S G3 Dlwillson
B G2 Sky
B G2 Sol
B G3 Dlwillson

34) Felix: Trade B1 R1 Sea

35) dlwillson: S G3 Dlwillson
B G3 Sol
B G3 Sky
B G3 Dlwillson

36) Felix: Sacrifice Y3 Felix
Move Y1 Sea Dlwillson
Move Y2 Sea Dlwillson
Move Y2 Sea Dlwillson
Catastrophe Dlwillson Yellow

	Felix: Good game! Starting without blue is a harsh handicap, but I feel you played well despite it. Maybe we should try a game where we both start without blue and see how that goes?
	dlwillson: Oh! Nice! I didn't even see it!
	dlwillson: Good game! Again?
	Felix: Always up for a game! 


34438)
Started: 2018.11.1, Ended: 2018.11.4
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3



34450)
Variants: "Hard time"
Started: 2018.11.1, Ended: 2018.11.4
Participants: Trydnt (S), wil (N)
Winner: Trydnt



34550)
Started: 2018.11.1, Ended: 2018.11.29
Participants: Trydnt (S), ts52 (N)
Winner: Trydnt

1) ts52: Homeworld B1 R2 G3

2) Trydnt: Homeworld G3 Y3 B3 *

3) ts52: Build G1 Ts52

4) Trydnt: Build B1 Trydnt
	ts52: Interesting!

5) ts52: Trade G1 Y1 Ts52

6) Trydnt: Build B1 Trydnt

7) ts52: Build Y1 Ts52

8) Trydnt: Discover B1 Trydnt G1 G1

9) ts52: Build Y1 Ts52

10) Trydnt: Build B2 G1

11) ts52: Discover Y1 Ts52 G3 Kermit

12) Trydnt: Trade B2 Y2 G1

13) ts52: Build Y2 Ts52

14) Trydnt: Build B2 Trydnt

15) ts52: Trade Y2 B2 Ts52

16) Trydnt: Trade B2 R2 Trydnt

17) ts52: Trade Y1 R1 Ts52

18) Trydnt: Build B2 G1

19) ts52: Move B2 Ts52 Kermit

20) Trydnt: Build R1 Trydnt

21) ts52: Build G1 Ts52

22) Trydnt: Sacrifice Y2 G1
Move R1 Trydnt Ts52
Move R2 Trydnt Ts52
Catastrophe Ts52 R

23) ts52: M B2 Kermit G1

24) Trydnt: Trade B2 R2 G1

25) ts52: Trade G3 R3 Ts52

26) Trydnt: Attack B2 G1

27) ts52: Build Y1 Kermit

28) Trydnt: Trade B2 Y2 G1

29) ts52: Build Y2 Ts52

30) Trydnt: Build B2 Trydnt

31) ts52: Trade Y2 B2 Ts52

32) Trydnt: Sacrifice Y2 G1
Move B1 Trydnt Ts52
Move B2 Trydnt Ts52
Catastrophe Ts52 B
	ts52: D'oh! Should've seen that coming. Good game!
	Trydnt: Good game. I've been playing a lot of miniverse games recently and finding a lot of new stuff. Very fun to find a whole new game in the game



34601)
Variants: "Hard time"
Started: 2018.11.1, Ended: 2018.11.4
Participants: Xx_Henry_xX (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y2 G3 *

	Draw5PlayAll: !


34678)
Started: 2018.11.1, Ended: 2019.1.10
Participants: dragon76n (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y3 G3

2) dragon76n: H Y1 B2 G3

3) Trydnt: Build G1 Trydnt

4) dragon76n: Build G1 Dragon76n

5) Trydnt: Trade G1 Y1 Trydnt

6) dragon76n: Trade G1 Y1 Dragon76n

7) Trydnt: Build Y2 Trydnt

8) dragon76n: Build Y2 Dragon76n

9) Trydnt: Build G1 Trydnt

10) dragon76n: Trade Y1 B1 Dragon76n

11) Trydnt: Discover Y1 Trydnt G1 G1

12) dragon76n: Build G1 Dragon76n

13) Trydnt: Build Y1 G1

14) dragon76n: Discover G1 Dragon76n B3 Bluthr

15) Trydnt: Build Y2 Trydnt

16) dragon76n: Move Y2 Dragon76n Bluthr

17) Trydnt: Sacrifice Y1 G1
Discover Y2 Trydnt R1 R1

18) dragon76n: Build G2 Bluthr

19) Trydnt: Trade G1 R1 Trydnt

20) dragon76n: Trade G2 R2 Bluthr

21) Trydnt: Sacrifice G3 Trydnt
Build Y1 R1
Build Y3 G1
Build Y3 Trydnt

22) dragon76n: Build G1 Dragon76n

23) Trydnt: Move Y3 G1 Bluthr

24) dragon76n: Move R2 Bluthr G1

25) Trydnt: Discover Y1 G1 G3 G3

26) dragon76n: Move Y2 Bluthr G1

27) Trydnt: Sacrifice Y2 Trydnt
Move Y3 Bluthr G1
Discover Y1 R1 B3 B3

28) dragon76n: Move R2 G1 G3

29) Trydnt: Sacrifice Y1 G3
Move Y3 G1 G3

30) dragon76n: Sacrifice Y2 G1
Move R2 G3 R1
Move R2 R1 B3

31) Trydnt: Discover Y1 B3 G2 G2

32) dragon76n: Build G1 Bluthr

33) Trydnt: Trade Y3 G3 Trydnt

34) dragon76n: Trade G1 R1 Dragon76n

35) Trydnt: Build R2 Trydnt

36) dragon76n: Trade G1 Y1 Bluthr

37) Trydnt: Move Y2 R1 Bluthr

38) dragon76n: Sacrifice Y1 Bluthr
Discover G1 Bluthr Y1 Yelone

39) Trydnt: Build Y2 G2

40) dragon76n: M G1 Yelone B3

41) Trydnt: Build Y1 G2

42) dragon76n: Build G1 Dragon76n

43) Trydnt: Build Y2 G3

44) dragon76n: Build R1 B3

45) Trydnt: Build Y3 G3

46) dragon76n: Trade R1 B1 B3

47) Trydnt: Sacrifice Y2 G3
Move Y3 G3 G2
Move Y3 G2 B3

48) dragon76n: Sacrifice B1 B3
Trade R2 B2 B3

49) Trydnt: Sacrifice R2 Trydnt
Attack B2 B3
Attack G1 B3

50) dragon76n: Discover G1 Dragon76n R3 Redthr

51) Trydnt: Build Y2 G3

52) dragon76n: M B1 Dragon76n Redthr

53) Trydnt: Build B1 B3
	dragon76n: Hi Trydnt, sorry about being away for such a long time... quite busy with the holidays recently. I'll try to remember to check in regularly again.  

54) dragon76n: B G1 Dragon76n

55) Trydnt: Build G2 B3

56) dragon76n: S G3 Dragon76n
B G2 Redthr
B G3 Dragon76n
B B1 Redthr

57) Trydnt: Move B2 B3 G2

58) dragon76n: T B1 R1 Redthr

59) Trydnt: Sacrifice Y3 G3
Move G1 B3 Dragon76n
Move G2 B3 Dragon76n
Move Y3 B3 Dragon76n
Catastrophe Dragon76n G

60) dragon76n: Sacrifice G2 Redthr
Build R2 Dragon76n
Build R2 Dragon76n

61) Trydnt: Trade Y3 R3 Dragon76n
Catastrophe Dragon76n R



34580)
Variants: "Hard time"
Started: 2018.11.2, Ended: 2018.11.13
Participants: Trydnt (S), ajo (N)
Winner: Trydnt

1) ajo: Homeworld B3 Y1 G3

2) Trydnt: Homeworld B2 R3 G3

3) ajo: Build G1 Ajo
	ajo: This is for the tournament, btw.  Good luck!

4) Trydnt: Build G1 Trydnt
	Trydnt: Good luck to you too!

5) ajo: Discover G1 Ajo B2 Alpha

6) Trydnt: Trade G1 Y1 Trydnt

7) ajo: Build G1 Ajo

8) Trydnt: Build Y1 Trydnt

9) ajo: Trade G3 Y3 Ajo

10) Trydnt: Build Y2 Trydnt

11) ajo: Build Y2 Ajo

12) Trydnt: Discover Y1 Trydnt G1 G1

13) ajo: Move Y2 Ajo Alpha

14) Trydnt: Discover Y2 Trydnt B1 B1

15) ajo: Build G2 Ajo

16) Trydnt: Build G2 Trydnt

17) ajo: Trade Y3 R3 Ajo

18) Trydnt: Trade G2 R2 Trydnt

19) ajo: Build G2 Alpha

20) Trydnt: Move Y2 B1 Alpha

21) ajo: Sacrifice G2 Ajo
Build Y2 Alpha
Build Y3 Alpha
Catastrophe Alpha Yellow

22) Trydnt: Build Y2 G1

23) ajo: Build R1 Ajo

24) Trydnt: Sacrifice G3 Trydnt
Build Y2 Trydnt
Build Y2 G1
Build Y3 Trydnt

25) ajo: Build G2 Alpha

26) Trydnt: Trade Y3 G3 Trydnt

27) ajo: Build G2 Ajo

28) Trydnt: Build G3 Trydnt

29) ajo: Build G3 Ajo

30) Trydnt: Discover Y2 G1 B3 B3

31) ajo: Trade G3 Y3 Ajo

32) Trydnt: Sacrifice G3 Trydnt
Build Y3 B3
Build Y3 G1
Build G3 Trydnt

33) ajo: Move Y3 Ajo Alpha

34) Trydnt: Discover Y2 G1 B2 B2

35) ajo: Build G3 Ajo

36) Trydnt: Move R2 Trydnt G1

37) ajo: Move G3 Ajo B2

38) Trydnt: Discover Y2 B2 B3 B33

39) ajo: Trade G2 R2 Alpha

40) Trydnt: Discover Y3 B3 G2 G2

41) ajo: Move R1 Ajo B2

42) Trydnt: Trade Y1 B1 Trydnt

43) ajo: Sacrifice G2 Alpha
Build Y1 Alpha
Build G2 B2

44) Trydnt: Move B1 Trydnt G1

45) ajo: Discover G1 Alpha B1 Beta

46) Trydnt: Build B1 G1

47) ajo: Sacrifice Y3 Alpha
Move G2 B2 Beta
Move G3 B2 Beta
Move G1 Beta Trydnt

48) Trydnt: Sacrifice G3 Trydnt
Build Y3 Trydnt
Build R1 G1
Pass

49) ajo: Sacrifice G3 Beta
Build R1 B2
Build R2 Ajo
Build R3 Alpha

50) Trydnt: Move G3 Trydnt Beta

51) ajo: Trade R3 G3 Alpha

52) Trydnt: Discover Y3 G2 R3 R3

53) ajo: Build G2 Alpha

54) Trydnt: Sacrifice R2 G1
Attack G1 Trydnt
Attack G2 Beta

55) ajo: Sacrifice G3 Alpha
Build R2 Alpha
Build G3 Alpha
Build G3 Ajo

56) Trydnt: Sacrifice Y2 B33
Move G2 Beta B2
Move G2 B2 Ajo
Catastrophe Ajo G

57) ajo: Build Y2 Alpha

58) Trydnt: Build B3 G1

59) ajo: Sacrifice Y1 Alpha
Discover G3 Alpha Y1 Gamma

60) Trydnt: Discover B3 G1 G2 G2

61) ajo: Move R2 Alpha Gamma

62) Trydnt: Build G1 Trydnt

63) ajo: Trade R3 G3 Ajo

64) Trydnt: Build R3 G1

65) ajo: Move R2 Alpha Gamma

66) Trydnt: Build G2 Beta

67) ajo: Sacrifice R1 B2
Pass
	ajo: I think I'm in trouble...

68) Trydnt: Discover Y2 B3 R1 R1

69) ajo: Discover Y2 Alpha B3 Delta

70) Trydnt: Move R3 G1 B2

	ajo: I think I've lost. Good game!
	Trydnt: well played


34690)
Variants: "Hard time"
Started: 2018.11.2, Ended: 2018.12.16
Participants: dlwillson (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) dlwillson: H B3 Y1 G3

3) Draw5PlayAll: Homeworld B2 R1 G3

4) dlwillson: B G1 Dlwillson

5) Draw5PlayAll: Build G1 Draw5playall

6) dlwillson: Trade G1 R1 Dlwillson

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) dlwillson: B R1 Dlwillson

9) Draw5PlayAll: Build Y1 Draw5playall

10) dlwillson: B R2 Dlwillson

11) Draw5PlayAll: Build Y2 Draw5playall

12) dlwillson: D R1 Dlwillson B2 Sea

13) Draw5PlayAll: Discover Y1 Draw5playall G3 Different

14) dlwillson: D R2 Dlwillson Y2 Sol

15) Draw5PlayAll: Discover Y1 Draw5playall B3 Democrat

16) dlwillson: B G1 Dlwillson

17) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Democrat
Build Y3 Democrat
Build Y3 Draw5playall

18) dlwillson: S G3 Dlwillson
B R2 Sol
B R2 Sea
B R3 Sea
	Draw5PlayAll: You are frozen out of yellow

19) Draw5PlayAll: Build Y3 Different

20) dlwillson: B R3 Dlwillson

21) Draw5PlayAll: Trade Y3 R3 Democrat

22) dlwillson: T R3 Y3 Sea

23) Draw5PlayAll: Trade Y1 G1 Democrat

24) dlwillson: T R1 Y1 Dlwillson

25) Draw5PlayAll: Build G1 Democrat

26) dlwillson: D Y1 Dlwillson G2 Field

27) Draw5PlayAll: Build G2 Democrat

28) dlwillson: T R2 G2 Sea

29) Draw5PlayAll: Discover G1 Democrat B1 Tmp

30) dlwillson: B G3 Dlwillson

31) Draw5PlayAll: Build G3 Tmp

32) dlwillson: Move R2 Sol Different

33) Draw5PlayAll: Move Y1 Different Tmp

34) dlwillson: Sacrifice G3 Dlwillson
Build R1 Sea
Build R2 Sea
Build R3 Sol

35) Draw5PlayAll: Trade G1 B1 Tmp

36) dlwillson: T R2 B2 Sea

37) Draw5PlayAll: Build R2 Democrat

38) dlwillson: D B2 Sea B3 Sky
	Draw5PlayAll: Thanks! I needed that!

39) Draw5PlayAll: Sacrifice R2 Democrat
Attack R2 Different
Pass
	dlwillson: ;-)

40) dlwillson: D Y3 Sea G3 Forest
	Draw5PlayAll: Red teleportation
	dlwillson: Well, shucks. I made a careless mistake! I meant to discover the g3, not the b3. Blah.

41) Draw5PlayAll: Build R2 Different
	Draw5PlayAll: And named it a blue name?! I mean you are still much better.
	Draw5PlayAll: So do I build the R2, build the G1, or send a green back home?

42) dlwillson: M Y1 Field Sky

43) Draw5PlayAll: Move G2 Democrat Draw5playall
	dlwillson: You have every advantage!
	wil: Dibs on winner

44) dlwillson: Move R3 Sol Sky
	Draw5PlayAll: I just want to, you know, be able to build more greens.

45) Draw5PlayAll: Move G3 Tmp Sea
	dlwillson: Yes. Well. That's very important, you know. Building greens.

46) dlwillson: T R1 G1 Sea

47) Draw5PlayAll: Sacrifice G3 Sea
Build G2 Draw5playall
Build G3 Democrat
Build R1 Democrat

48) dlwillson: S Y3 Forest
M R2 Sol Tmp
D G1 Sea Y3 Sol
D G2 Sea G3 Forest

49) Draw5PlayAll: Sacrifice Y1 Tmp
Move B1 Tmp Different

50) dlwillson: S G2 Forest
B G2 Dlwillson
B G3 Sol
	Draw5PlayAll: I foiled one of your plans.

51) Draw5PlayAll: Sacrifice G3 Democrat
Build G3 Democrat
Build Y1 Democrat
Build Y2 Different

52) dlwillson: M G1 Sol Sea

53) Draw5PlayAll: Move G3 Democrat Tmp

54) dlwillson: S G3 Sol
B Y3 Sky
B G3 Sea
Pass

55) Draw5PlayAll: Sacrifice R1 Democrat
Attack R2 Tmp

56) dlwillson: M Y3 Sky Draw5playall
	Draw5PlayAll: I really want to win this, but at the same time, I want to wait until wil gets distracted with another challenge.

57) Draw5PlayAll: Attack Y3 Draw5playall
	dlwillson: I'm sure this doesn't work outout for me, but maybe I can do some damage on my way out.
	wil: Yea,.trydnt already did.that

58) dlwillson: M Y1 Sky Draw5playall
C Draw5playall Y
	Draw5PlayAll: You would have no movement. Oh well, you already committed.

59) Draw5PlayAll: Move Y3 Different Draw5playall

60) dlwillson: T G2 Y2 Dlwillson
	dlwillson: True, but I still don't see a better move for me.

61) Draw5PlayAll: Sacrifice G3 Tmp
Build Y1 Democrat
Build Y3 Different
Build Y3 Draw5playall

62) dlwillson: T R3 G3 Sky

63) Draw5PlayAll: Sacrifice G2 Draw5playall
Build R1 Democrat
Build R3 Tmp

64) dlwillson: S G3 Sea
B G2 Dlwillson
B G2 Sky
B G3 Sea

65) Draw5PlayAll: Build B1 Different

66) dlwillson: M Y2 Dlwillson Sea

67) Draw5PlayAll: Move Y1 Democrat Tmp

68) dlwillson: M G1 Sea Different
	Draw5PlayAll: You have enough to prevent me from having an easy win, and nothing more.
	dlwillson: LOL! I know!

69) Draw5PlayAll: Sacrifice Y2 Different
Discover Y3 Different Y2 Safety
Move R3 Tmp Safety

70) dlwillson: M G3 Sea Different

71) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move Y3 Safety Dlwillson
Move R3 Safety Dlwillson
Move G2 Draw5playall Different
Catastrophe Different Green
	Draw5PlayAll: Realize who you are trying to annoy...

	Draw5PlayAll: First on the ladder... maybe...?
	dlwillson: Yup, good game! Well played!
	Draw5PlayAll: And the VERY NEXT TIME I LOG IN, Felix challenges me.
	dlwillson: Hehehe... Now, I wonder who suggested that... Hm... :-D


34694)
Variants: "Hard time"
Started: 2018.11.5, Ended: 2018.11.15
Participants: wil (S), Felix (N)
Winner: wil

1) Felix: Homeworld Y1 B3 G3

2) wil: H Y2 B1 G3
	Felix: Howdy. Good luck and have fun as always!

3) Felix: Build G1 Felix

4) wil: B G1 Wil

5) Felix: Trade G1 Y1 Felix

6) wil: T G1 Y1 Wil

7) Felix: Build Y2 Felix

8) wil: B Y2 Wil

9) Felix: Discover Y1 Felix G2 Grass

10) wil: D Y1 Wil G3 G3

11) Felix: Build Y3 Grass

12) wil: B Y3 G3

13) Felix: Discover Y1 Grass G1 Blade
	wil: Love how different games can be
	Felix: :)

14) wil: T Y2 R2 Wil

15) Felix: Trade Y2 R2 Felix

16) wil: M Y1 G3 Grass

17) Felix: Build Y2 Blade

18) wil: B G1 Wil

19) Felix: Move Y1 Blade G3

20) wil: D Y3 G3 G2 G2

21) Felix: Build Y2 G3

22) wil: B Y3 Grass
	wil: Nice

23) Felix: Sacrifice R2 Felix
Attack Y1 Grass
Attack Y3 Grass

24) wil: M Y3 G2 Felix

25) Felix: Sacrifice Y3 Grass
Move Y1 Grass Felix
Move Y3 Grass Felix
Catastrophe Felix Yellow
Move Y2 Blade Felix
	wil: I have to play them out, can't see ahead.

26) wil: M G3 Wil Felix

27) Felix: B G1 Felix
	Felix: I don't know what I was thinking. There's no way this ends well for me!

28) wil: S R2 Wil
A G3 Felix
A Y2 Felix
	wil: Idont have a set of pyrmidsto play it out

29) Felix: B G1 Felix

30) wil: T G3 R3 Felix

31) Felix: Sacrifice Y1 G3
Move G1 Felix Wil

32) wil: S R3 Felix
P
P
A G1 Felix
	wil: Interesting game
	wil: I should've catastrophed

	Felix: Indeed. I figured it would go this way, but I was curious too :)


34700)
Variants: "Hard time"
Started: 2018.11.8, Ended: 2019.1.24
Participants: deanthebean (S), Babamots (N)
Winner: deanthebean

1) Babamots: Homeworld B2 R1 G3

2) deanthebean: Homeworld B1 R3 G3
	Babamots: We meet again! Good luck!
	deanthebean: Thank you for accepting the challenge. Enjoy the rematch!

3) Babamots: Build G1 Babamots

4) deanthebean: Build G1 Deanthebean

5) Babamots: Trade G1 Y1 Babamots

6) deanthebean: Trade G1 Y1 Deanthebean

7) Babamots: Build G1 Babamots

8) deanthebean: Build G1 Deanthebean

9) Babamots: Trade G1 R1 Babamots

10) deanthebean: Trade G1 B1 Deanthebean

11) Babamots: Build R1 Babamots

12) deanthebean: Build G1 Deanthebean

13) Babamots: Discover R1 Babamots Y3 Iconia

14) deanthebean: Build G1 Deanthebean

15) Babamots: Build R2 Babamots

16) deanthebean: Trade G3 R3 Deanthebean

17) Babamots: Trade R2 Y2 Babamots

18) deanthebean: Discover G1 Deanthebean B2 Gc

19) Babamots: Move R1 Iconia Gc

20) deanthebean: Build B1 Deanthebean

21) Babamots: Attack G1 Gc

22) deanthebean: Discover B1 Deanthebean B2 Avverso

23) Babamots: Trade G3 B3 Babamots

24) deanthebean: Build B3 Deanthebean

25) Babamots: Sacrifice G1 Gc
Build B3 Babamots

26) deanthebean: Trade B3 G3 Deanthebean

27) Babamots: Discover Y1 Babamots B3 Bolarus

28) deanthebean: Move R3 Deanthebean Gc

29) Babamots: Discover B3 Babamots G3 Risa

30) deanthebean: Attack R1 Gc

31) Babamots: Trade Y2 G2 Babamots

32) deanthebean: Trade R3 Y3 Gc

33) Babamots: Build G1 Babamots

34) deanthebean: Discover R1 Gc G3 Bol

35) Babamots: Trade G2 Y2 Babamots

36) deanthebean: Build R2 Bol

37) Babamots: Move R1 Babamots Risa

38) deanthebean: Build R2 Bol

39) Babamots: Build R2 Risa

40) deanthebean: Move Y3 Gc Bol

41) Babamots: Build R3 Risa

42) deanthebean: Discover R2 Bol B2 Unlur

43) Babamots: Trade R2 Y2 Risa

44) deanthebean: Trade R2 Y2 Unlur

45) Babamots: Trade R3 Y3 Risa

46) deanthebean: Build R2 Bol

47) Babamots: Sacrifice Y2 Risa
Move R1 Risa Unlur
Move R1 Unlur Bol
Catastrophe Bol R

48) deanthebean: Sacrifice G3 Deanthebean
Build Y1 Unlur
Build Y2 Bol
Build Y3 Deanthebean

49) Babamots: Trade Y1 G1 Bolarus

50) deanthebean: Trade Y3 G3 Deanthebean

51) Babamots: Sacrifice G1 Bolarus
Build B3 Risa

52) deanthebean: Trade Y2 R2 Unlur

53) Babamots: Trade Y2 R2 Babamots

54) deanthebean: Build Y1 Deanthebean

55) Babamots: Move B3 Risa Unlur

56) deanthebean: Move R2 Unlur Bol

57) Babamots: Build Y2 Risa

58) deanthebean: Build R1 Bol

59) Babamots: Move Y3 Risa Avverso

60) deanthebean: Sacrifice Y3 Bol
Move B1 Avverso Bol
Move R1 Bol Babamots
Move R2 Bol Babamots
Catastrophe Babamots Red

61) Babamots: Trade B3 R3 Babamots

62) deanthebean: Build B3 Bol
	deanthebean: build b3 BoL

63) Babamots: Sacrifice Y2 Risa
Move B3 Unlur Deanthebean
Move Y3 Avverso Deanthebean

64) deanthebean: Move B1 Deanthebean Babamots

65) Babamots: Sacrifice R3 Babamots
Attack G3 Deanthebean
Attack G1 Deanthebean
Attack Y1 Deanthebean

66) deanthebean: Sacrifice Y2 Bol
Move B3 Bol Babamots
Move B1 Bol Babamots
Catastrophe Babamots Blue
	Babamots: GG! Good luck on the rest of your way to the top!
	Draw5PlayAll: What in the world...
	deanthebean: Thanks for a good game!




34705)
Variants: "Hard time"
Started: 2018.11.9, Ended: 2018.12.11
Participants: Felix (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R2 B1 G3

2) Felix: Homeworld B1 G3 B3 *

3) Babamots: Build G1 Babamots
	Felix: I'm gonna try to make this work again, even though I usually fail at this opening. Your ego may indeed be soothed ;)

4) Felix: Build B1 Felix

5) Babamots: Trade G3 B3 Babamots

6) Felix: Trade B3 Y3 Felix

7) Babamots: Build B2 Babamots

8) Felix: Build B2 Felix

9) Babamots: Trade B2 Y2 Babamots

10) Felix: Discover B2 Felix G2 Out

11) Babamots: Build B2 Babamots

12) Felix: Build B2 Felix

13) Babamots: Discover B2 Babamots G3 Ferenginar

14) Felix: Trade B1 R1 Felix

15) Babamots: Trade B2 R2 Ferenginar
	Babamots: I'm still careless and rusty. It's possible you didn't see or didn't like your early catastrophe opportunity back there, but I didn't notice until after you passed it up.

16) Felix: Build B1 Out

17) Babamots: Move B3 Babamots Ferenginar
	Felix: Yeah, I saw that, but I didn't like where it would have left me if I took the opportunity. And I miss things like that too sometimes. It's part of the difficulty of playing such spaced out moves instead of realtime. I often have to stare at the game for quite some time before each move to remember where all the threats are, and if I'm in a hurry, I make mistakes

18) Felix: Trade B2 Y2 Felix

19) Babamots: Build B2 Ferenginar

20) Felix: Sacrifice Y2 Felix
Move B1 Out Ferenginar
Move B2 Out Ferenginar
Catastrophe Ferenginar Blue

21) Babamots: Build Y1 Babamots

22) Felix: Build Y1 Felix

23) Babamots: Trade Y1 B1 Babamots

24) Felix: Build R1 Felix

25) Babamots: Build B2 Babamots

26) Felix: Discover R1 Felix G2 Opus

27) Babamots: Move B2 Babamots Ferenginar

28) Felix: Build R1 Opus

29) Babamots: Build B2 Ferenginar

30) Felix: Move Y1 Felix Opus

31) Babamots: Build B2 Ferenginar

32) Felix: B Y1 Felix

33) Babamots: Build B3 Babamots

34) Felix: Trade Y3 B3 Felix

35) Babamots: Trade B2 Y2 Ferenginar
	Babamots: Now, I don't want to see you pulling any punches just because my confidence has been slacking. Especially since I haven't been concentrating on this game very hard, I'm surprised to have come back so well.

36) Felix: Build Y1 Opus
	Felix: No punches pulled. I honestly just couldn't see a good way to make good on my advantage without leaving myself in a worse position. I should have tried harder to get a large ship into your system, but it wasn't easy. nice recovery!

37) Babamots: Move B2 Ferenginar Opus

38) Felix: Build R2 Felix

39) Babamots: Build R3 Ferenginar

40) Felix: Discover R1 Opus R3 Bazoik

41) Babamots: Sacrifice R3 Ferenginar
Attack R1 Opus
Attack Y1 Opus
Attack Y1 Opus

42) Felix: M B3 Felix Opus

43) Babamots: Discover B3 Babamots Y3 Iconia

44) Felix: Trade R2 B2 Felix
	Babamots: Sorry for the delay. It feels like a ticklish situation and I need to sit down and study it properly. I should have time tonight.

45) Babamots: Build B3 Opus

46) Felix: Sacrifice R1 Bazoik
Attack B3 Opus
	Felix: No worries. I'm never in a rush, so take as long as you need!

Also, this is probably the dumbest defense ever, but I'm really curious to try it.

47) Babamots: Sacrifice B1 Babamots
Trade Y1 B1 Opus
Catastrophe Opus B
	Babamots: I think it's a good defense of your home under the circumstances, but I don't think it deals with the Opus Crisis satisfactorily.
	Babamots: On my previous move, rather than advancing my b3, I wanted to build a b2 in opus just to see what would happen, but I figured it was safer to put you on the defensive for a move.

48) Felix: Build R1 Felix
	Felix: Yeah I think I screwed the pooch on this one!

49) Babamots: Trade B3 G3 Iconia

50) Felix: Trade R1 G1 Felix

51) Babamots: Build B1 Ferenginar

52) Felix: Build Y1 Felix

53) Babamots: Sacrifice Y2 Ferenginar
Move G3 Iconia Opus
Move G3 Opus Felix

54) Felix: Trade B2 G2 Felix
Catastrophe Felix Green

55) Babamots: Sacrifice Y1 Opus
Move B2 Ferenginar Felix

	Babamots: I think this way gives you less room for annoying prolongation.
	Felix: I think you're right. No sense in prolonging it. Well played! I made some major mistakes in not capitalizing when I had you against the wall. Nice recovery and good game!
	Babamots: I'm pretty surprised that swung my way. GG!


34708)
Variants: "Hard time"
Started: 2018.11.11, Ended: 2018.11.20
Participants: mneme (S), Laurie_Menke (N)
Winner: mneme

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Hi mneme! Good luck on the 2018 Homeworlds Tournament!  (Don't forget to send the start form!)  :)

2) mneme: Homeworld R1 G3 B3
	mneme: I did -- and you too!

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: :)

4) mneme: Build B1 Mneme

5) Laurie_Menke: Trade G1 R1 Laurie_menke

6) mneme: Build B1 Mneme

	mneme: ug.  What happened?  I'm willing to do a rematch if you're game; I hate to win this way!
	Laurie_Menke: Ugh. I'm so sorry, mneme! I've been on the road and got behind.  :(  If you'd like (and if babamots is willing), we could run another game and do it the same way to this point and just keep going. On the other hand, we both know you were going to win.  ;)  Your choice. Please forgive my boo-boo!
	Babamots: I think a rematch should be OK. If either of you wants to replay this game exactly like it was up to this point, I think you've got the right to request that. Otherwise, you can just start a totally new game. What do you prefer?
	Laurie_Menke: I'm willing to do any of the following: (1) run this exact game again, (2) start a new game, (3) concede to the clear winner. Mneme... what would make the best of this situation for you? (And thanks for the options, Babamots!)
	mneme: Lets go with just replaying it to this point and going from there.  While my freeze has some clear advantages from here, I think there's still play in it.


34711)
Variants: "Hard time"
Started: 2018.11.11, Ended: 2018.12.4
Participants: Draw5PlayAll (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3

2) Draw5PlayAll: Homeworld B3 R2 G3

3) mneme: Build G1 Mneme

4) Draw5PlayAll: Build G1 Draw5playall

5) mneme: Trade G1 R1 Mneme

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) mneme: Build R2 Mneme

8) Draw5PlayAll: Build R2 Draw5playall

9) mneme: Trade R2 Y2 Mneme

10) Draw5PlayAll: Trade R1 Y1 Draw5playall

11) mneme: Build R1 Mneme

12) Draw5PlayAll: Build R2 Draw5playall
	mneme: Hell, we forgot to comment.  This IS the Great Tournament game, right?

	Draw5PlayAll: Why ee ehs.

13) mneme: Discover R1 Mneme B3 Melpomene

14) Draw5PlayAll: Discover R2 Draw5playall G1 Gone
	mneme: eyeway otgay ouyay.
	Draw5PlayAll: "I got you"?

15) mneme: Build R3 Mneme

16) Draw5PlayAll: Build R3 Gone

17) mneme: Build G1 Mneme

18) Draw5PlayAll: Build G1 Draw5playall
	mneme: exactly.

19) mneme: Sacrifice G1 Mneme
Build R3 Melpomene

20) Draw5PlayAll: Build Y1 Draw5playall

21) mneme: Discover R1 Mneme Y3 Terpsicore

22) Draw5PlayAll: Trade G1 B1 Draw5playall
	Draw5PlayAll: Terpsicore?!?

23) mneme: Sacrifice Y2 Mneme
Move R1 Terpsicore Gone
Move R1 Melpomene Gone
Catastrophe Gone R

24) Draw5PlayAll: Build Y1 Draw5playall
	mneme: yeah.  All my planet names are muses.
	Draw5PlayAll: Muses?

25) mneme: Trade R3 Y3 Mneme

26) Draw5PlayAll: Discover Y1 Draw5playall G1 Iloseagain

27) mneme: Build Y2 Mneme

28) Draw5PlayAll: Discover Y1 Draw5playall B1 You'llwin

29) mneme: Build G1 Mneme

30) Draw5PlayAll: Build G1 Draw5playall

31) mneme: Build G2 Mneme

32) Draw5PlayAll: Build Y2 Iloseagain

33) mneme: Sacrifice Y2 Mneme
Move R3 Melpomene Iloseagain
Discover G2 Mneme Y3 Caliope

34) Draw5PlayAll: Sacrifice Y1 Iloseagain
Discover Y2 Iloseagain G2 Outrunyou

35) mneme: Sacrifice G3 Mneme
Build G2 Mneme
Build G3 Caliope
Build G3 Mneme

36) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y1 You'llwin
Build Y2 Draw5playall

37) mneme: Trade G3 Y3 Mneme

38) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Draw5playall
Build Y2 Outrunyou

39) mneme: Sacrifice Y3 Mneme
Move G2 Caliope Iloseagain
Move G2 Iloseagain Draw5playall
Catastrophe Draw5playall G
Move R3 Iloseagain Draw5playall

40) Draw5PlayAll: Trade Y1 R1 Draw5playall
Catastrophe Draw5playall Red
	Draw5PlayAll: I saw the green catastrophe but not the red invasion.

41) mneme: Trade G2 R2 Mneme

	mneme: *nodnod*  It was very much a question of velocity; once I saw a way to do both, I had to.
	mneme: Good game!

I think all those earlier games helped me a lot more than they helped you -- making sure I took you seriously and knew I had to play tight rather than loose and sure with you.


34709)
Variants: "Hard time"
Started: 2018.11.12, Ended: 2018.12.13
Participants: mneme (S), DodoBirb (N)
Winner: DodoBirb

1) DodoBirb: Homeworld B1 R2 G3
	DodoBirb: Good luck! Is this for the tourney?

2) mneme: Homeworld G3 Y1 B3

3) DodoBirb: Build G1 Dodobirb
	mneme: It is!  Gogot tournament!

	mneme: Good luck and have fun!
	mneme: (also, Gabawase (which for possibly obvious reasons, I prefer for games like Homeworlds!)


4) mneme: Build B1 Mneme

5) DodoBirb: Trade G1 B1 Dodobirb

6) mneme: Build B2 Mneme

7) DodoBirb: Build B2 Dodobirb

8) mneme: Trade B3 G3 Mneme

9) DodoBirb: Build G1 Dodobirb

10) mneme: Discover B1 Mneme G2 Caliope

11) DodoBirb: Trade G1 Y1 Dodobirb

12) mneme: Sacrifice G3 Mneme
Build B2 Mneme
Build B3 Mneme
Build B3 Caliope

13) DodoBirb: Discover B2 Dodobirb G3 Hill

14) mneme: Sacrifice B2 Mneme
Trade B2 R2 Mneme
Trade B1 Y1 Caliope

15) DodoBirb: Build G1 Dodobirb

16) mneme: Build Y2 Caliope

17) DodoBirb: Build Y2 Dodobirb

18) mneme: Move Y2 Caliope Hill

19) DodoBirb: Sacrifice Y1 Dodobirb
Discover B2 Hill R2 Stardef

20) mneme: Build R1 Mneme

21) DodoBirb: Build Y1 Dodobirb

22) mneme: Build Y2 Caliope

23) DodoBirb: Discover Y1 Dodobirb B3 Water

24) mneme: Trade Y2 G2 Caliope

25) DodoBirb: Move G1 Dodobirb Water
	Draw5PlayAll: Calliope? Gabawase?

26) mneme: Sacrifice G2 Caliope
Build Y2 Caliope
Build Y3 Hill
	mneme: Just google?

27) DodoBirb: Build Y3 Water
	mneme: ganbawase is easier googled as ganbawatte, though.
	mneme: ganbawase is easier googled as ganbawatte, though.

28) mneme: Sacrifice Y2 Hill
Move Y2 Caliope Water
Move Y1 Caliope Water
Catastrophe Water Y

29) DodoBirb: Build Y1 Dodobirb

30) mneme: Move Y3 Hill Stardef

31) DodoBirb: Sacrifice Y1 Dodobirb
Discover B2 Stardef Y3 Run

32) mneme: Move Y3 Stardef Water

33) DodoBirb: Sacrifice G1 Water
Build G1 Dodobirb

34) mneme: Build B1 Caliope

35) DodoBirb: Build Y1 Dodobirb

36) mneme: Trade B3 Y3 Caliope

37) DodoBirb: Build G1 Dodobirb

38) mneme: Build B2 Caliope

39) DodoBirb: Move G1 Dodobirb Run

40) mneme: Move B2 Caliope Run

41) DodoBirb: Sacrifice Y2 Dodobirb
Discover B2 Run R2 Defence
Move G1 Run Defence

42) mneme: Move Y3 Water Defence

43) DodoBirb: Sacrifice Y1 Dodobirb
Discover B2 Defence Y1 Runagain

44) mneme: Attack G1 Defence

45) DodoBirb: Trade G1 Y1 Dodobirb

	DodoBirb: Oh well. I'll take the win I guess.
	mneme: ACK.  I didn't get notified for a while and missed that this one was still going on (I think I had you), but if you want to take the win from my falling asleep, I won't blame you.

	mneme: (next move: catastrophy in your home system)
	mneme: (blue cat)

	mneme: more after: grow red in my home (you have no way to get red -and- a y2)
Move after: s y3, red cat in your home.  
	DodoBirb: Nah, you can take the win.
	DodoBirb: I'll have to notify Babamots.
	Babamots: OK, if you're sure, I'll update the record.
	mneme: Thanks.  
I'll take if you're willing since it was a forced mate in 3; missing the clock was my own fault, but you're a player of honor.


34726)
Variants: "Unrated, Hard time"
Started: 2018.11.15, Ended: 2018.12.6
Participants: Babamots (S), AnalogKid (N)
Winner: Babamots

1) AnalogKid: Homeworld B1 Y2 G3
	Draw5PlayAll: Oh I never knew AnalogKid was into Homeworlds...
	AnalogKid: I've only played it a few times and that was years ago now.  So I'm a novice who needs to review the rules. :) 
	AnalogKid: I do think it is a very impressive and rich game.

2) Babamots: Homeworld G3 B1 B3 *
	AnalogKid: Babamots: Thanks again for starting all of these new games with me, today.  I hope that you don't mind me taking the banker option.  Have a good game! ^_^
	Babamots: I do think the "banker" is the strongest homeworld, even though I only see "investments" work in maybe 1/4th of games. I think it's more important that it makes it easy to discover large systems when your opponent is about to build the large ship that--for whatever the reason--you can't build yourself.

I think that, for a more even game, the less-experienced player should get the banker. The online rules suggest it, in fact. I also think moving first is a pretty good advantage. It seems to me that the most fair opening would be banker for the second player to move, something else for the first.

Since you included b1 in your home system, I can do something kind of sneaky that ensures that I get a medium ship before you do. I'm going to make my first ship AND one of my system markers blue. If you ever want a blue ship, you'll probably need to trade your large ship for it.

You said you'd like to learn, so I'm planning on giving lots of unsolicited advice like the above.

Anyway, you're welcome to the banker this time. If you beat me, I get dibs next time.

3) AnalogKid: Build G1 Analogkid
	AnalogKid: Thanks for the advice and for being willing to teach me. :)

I'll have to trade a large ship to get blue?  I assume then that you intend to grab the last small blue so that I can't trade for it AND you'll then be able to build a B2 ship while I cannot since I don't yet have a blue ship?  Interesting.

4) Babamots: Build B1 Babamots

5) AnalogKid: Build G1 Analogkid
	Babamots: I don't know if that trick really does much for me, but people do it pretty often. It won me a game once when my opponent didn't think to trade the large ship and I just got to build as much of that color as I wanted in every size.
	AnalogKid: I'm considering two choices: (a) build another G1, or (b) venture out to a new system with the G1 I've got.  I'll go with (a).  Feel free to let me know what you think I should've done. ;-)

6) Babamots: Trade B3 Y3 Babamots
	AnalogKid: My reasoning: If you trade for a G1 soon then I will get first dibs on a G2.  (Or maybe I won't since I have to move/trade at least one of my G ships first?).  Either way, there is no threat of you invading yet with a green ship and I will probably trade in my G3 for a B3 next turn anyways.  

7) AnalogKid: Trade G3 B3 Analogkid

8) Babamots: Build B2 Babamots

9) AnalogKid: Discover G1 Analogkid B3 Alcyone
	AnalogKid: *sigh* I still can't safely build a blue ship.

10) Babamots: Discover B1 Babamots G2 Risa
	Babamots: That was intentional. For teaching's sake, I should have mentioned it in case you didn't notice.

11) AnalogKid: Build G1 Alcyone

12) Babamots: Build B2 Risa

13) AnalogKid: Discover B3 Analogkid Y3 Sigmaoctantis
	AnalogKid: Well, this might be a violation of the "Primary Directive" but ...

14) Babamots: Sacrifice Y3 Babamots
Discover B1 Risa Y3 Iconia
Move B2 Risa Iconia
Move B2 Iconia Analogkid
	Babamots: I think you're about to get a lesson on why keeping a large at home is so important.

15) AnalogKid: Trade B3 R3 Sigmaoctantis
	Babamots: Either that or I've totally shot myself in the foot. It's pretty hard to calculate more than a move or two in the future and I've been known to blow it.
	Babamots: OK, with some more thought, I see you can survive this, but you'll have to be careful. This is should be a great tactical exercise for you.
	Babamots: So to be clear, my move was not a good example of something you should do. It's risky at best. There are times when you can totally charge at your opponent the moment there's a weakness, but this isn't quite it. More likely I've thrown away my only large for almost nothing. But, figuring out how to deal with an overly aggressive move like mine is good for you.
	AnalogKid: Hmm... I wasn't anticipating that move.  I thought you might trade for a red and then I'd have to move my large ship back to my homeworld to defend.
	AnalogKid: That was why I moved the B3 to a yellow star.  In retrospect, I think I really needed to go to a green start to accomplish my goal. :|
	AnalogKid: Interesting two-pronged threat!  I think I see a solution...

16) Babamots: Trade B2 R2 Analogkid
	Draw5PlayAll: I do not see the second prong.
	Draw5PlayAll: Also what are Alcyone and SigmaOctantis?

17) AnalogKid: Move R3 Sigmaoctantis Analogkid

18) Babamots: Discover R2 Analogkid Y3 Risa
	AnalogKid: Alcyone is a blue giant star and Sigma Octantis is a yellow giant star. See Wikipedia for more. :-)

19) AnalogKid: Build G2 Analogkid

20) Babamots: Build B2 Babamots

21) AnalogKid: Build G2 Analogkid

22) Babamots: Trade B2 G2 Babamots

	AnalogKid: Ach! I'm so sorry about letting this game timeout.  I was enjoying it. :(  Would you be willing to start another one? (Praetorian too if you wish)
	Draw5PlayAll: Praetorian is nice. You should challenge me to it. I do not get to play it enough.

But I prefer the assassin.


34598)
Variants: "Unrated"
Started: 2018.11.16, Ended: 2018.11.22
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld G1 Y1 B3 *

2) wil: H G3 B3 Y3 *

3) Trydnt: Build B1 Trydnt

4) wil: B Y1 Wil

5) Trydnt: Trade B1 Y1 Trydnt

6) wil: T Y1 G1 Wil
	wil: Lol,  not my intended opening, oops

7) Trydnt: Build B1 Trydnt

8) wil: B G1 Wil

9) Trydnt: Trade B1 R1 Trydnt

10) wil: T G1 R1 Wil

11) Trydnt: Build Y1 Trydnt

12) wil: B Y2 Wil

13) Trydnt: Move Y1 Trydnt Wil

14) wil: T Y2 R2 Wil

15) Trydnt: Build Y2 Wil

16) wil: T Y3 B3 Wil

17) Trydnt: Sacrifice Y1 Wil
Discover Y2 Wil G2 G2
	wil: And we used to play 5 games a night!

18) wil: T R1 Y1 Wil
	wil: Yeah, I've lost

19) Trydnt: Build B1 Trydnt

20) wil: B Y2 Wil

21) Trydnt: Move B1 Trydnt G2

22) wil: B R1 Wil

23) Trydnt: Build B1 G2

24) wil: T B3 G3 Wil

25) Trydnt: Discover Y1 Trydnt G3 G3

26) wil: M R1 Wil G2

27) Trydnt: Sacrifice R1 Trydnt
Attack R1 G2

28) wil: M Y1 Wil Trydnt

29) Trydnt: Trade B3 R3 Trydnt

30) wil: B Y2 Trydnt

31) Trydnt: Build Y3 G2
	wil: Lol, typed wrong
	Draw5PlayAll: &#8253;

32) wil: B Y3 Wil

33) Trydnt: Build Y3 G3

34) wil: S Y2 Wil
M G3 Wil Trydnt
M G1 Wil Trydnt

	wil: I didn't mean to undid
	wil: Fat fingered.stroke victim.strikes again!
	Trydnt: Well played! I'm loving these weird micro universes and things we've been messing around with. Completely different play style and game feel
	wil: I wasn't positive that was gonna work
	wil: You are the king of escapes
	Trydnt: haha yeah I'm in another game going similarly right now that is crazy. like waiting for the axe to drop but seeing some possible escapes too


34721)
Variants: "Hard time"
Started: 2018.11.16, Ended: 2018.11.19
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

	ts52: Sorry. Lost track of time.
	wil: Oops
	ts52: Yeah. Any time I start a game on a friday, there's a > 50% chance I don't check over the weekend and it times out. Sorry about that.


34734)
Variants: "Hard time"
Started: 2018.11.19, Ended: 2018.11.23
Participants: Trydnt (S), goulo (N)
Winner: Trydnt

1) goulo: Homeworld R3 B1 G3

2) Trydnt: Homeworld B1 G2 B3 *
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) Trydnt: Build B1 Trydnt

5) goulo: Trade G3 B3 Goulo

6) Trydnt: Trade B3 Y3 Trydnt

7) goulo: Build B2 Goulo

8) Trydnt: Build B2 Trydnt

9) goulo: Trade B2 Y2 Goulo

10) Trydnt: Trade B1 R1 Trydnt

11) goulo: Build Y1 Goulo

12) Trydnt: Build R1 Trydnt

13) goulo: Build G1 Goulo

14) Trydnt: Build R1 Trydnt

15) goulo: Trade Y2 R2 Goulo

16) Trydnt: Trade R1 G1 Trydnt

17) goulo: Build G2 Goulo

18) Trydnt: Build Y1 Trydnt

19) goulo: Discover G1 Goulo Y2 Flavo

20) Trydnt: Discover G1 Trydnt Y3 Y3

21) goulo: Discover G1 Goulo Y2 Flavodua

22) Trydnt: Move B2 Trydnt Y3

23) goulo: Discover G1 Flavodua Y3 Flavego

24) Trydnt: Discover Y1 Trydnt G3 G3

25) goulo: Build G2 Flavego

26) Trydnt: Build G3 Y3

27) goulo: Build G3 Goulo

28) Trydnt: Sacrifice G3 Y3
Build G3 Y3
Build Y1 Trydnt
Build Y2 G3

29) goulo: Build Y2 Goulo

30) Trydnt: Move R1 Trydnt Y3

31) goulo: Sacrifice Y2 Goulo
Move G1 Flavego Trydnt
Move G2 Flavego Trydnt

32) Trydnt: Sacrifice G3 Y3
Build G3 Y3
Build Y2 Trydnt
Build Y3 G3

33) goulo: Sacrifice R2 Goulo
Attack Y2 Trydnt
Attack R1 Trydnt

34) Trydnt: Sacrifice B2 Y3
Trade Y3 B3 Trydnt
Trade Y3 R3 G3

35) goulo: Sacrifice G1 Flavo
Build G1 Trydnt
Catastrophe Trydnt G

36) Trydnt: Sacrifice R1 Y3
Attack R1 Trydnt

37) goulo: Discover Y2 Trydnt G2 Verdo

38) Trydnt: Move Y2 G3 Verdo

39) goulo: Discover Y2 Verdo R3 Rughego

40) Trydnt: Sacrifice G3 Y3
Build Y2 G3
Build Y3 Verdo
Build Y3 Trydnt

41) goulo: Trade G2 R2 Goulo
	Trydnt: well played. that was a weird finish, never seen that type of end game

42) Trydnt: Move B3 Trydnt Y3
	goulo: an unusual interesting situation indeed! :)

43) goulo: Discover B3 Goulo G2 Verdodua

44) Trydnt: Sacrifice B3 Y3
Trade Y3 G3 Trydnt
Trade Y2 B2 Verdo
Trade Y2 B2 G3

45) goulo: Sacrifice G3 Goulo
Build Y2 Rughego
Build Y2 Rughego
Build Y3 Goulo

46) Trydnt: Sacrifice G1 Y3
Build Y3 G3

47) goulo: Discover Y2 Rughego R2 Rugho

48) Trydnt: Build B1 G3

49) goulo: Move Y2 Rughego Verdodua

50) Trydnt: Build R1 G3

51) goulo: Trade Y1 G1 Goulo

52) Trydnt: Move R1 G3 Verdo

53) goulo: Move R2 Goulo Verdodua

54) Trydnt: Build R1 Verdo

55) goulo: Build B2 Verdodua

56) Trydnt: Move B2 G3 Verdodua

57) goulo: Sacrifice Y2 Verdodua
Move B3 Verdodua Rughego
Discover B2 Verdodua Y1 Flaveto

58) Trydnt: Sacrifice R1 Trydnt
Attack R2 Verdodua

59) goulo: Build G1 Goulo

60) Trydnt: Sacrifice Y3 G3
Move R1 Verdo Goulo
Move R1 Verdo Goulo
Move R2 Verdodua Goulo
Catastrophe Goulo R

61) goulo: Sacrifice G1 Goulo
Build B3 Rughego

62) Trydnt: Sacrifice Y3 Verdo
Move B1 G3 Goulo
Move B2 Verdo Goulo
Move B2 Verdodua Goulo
Catastrophe Goulo B

	goulo: Sigh, a move behind...

This too often happens to me, that I'm the first to catastrophe a star at the opponent's homeworld, but doing so leaves me behind on material and too weak to finish the job ... congrats!
	Trydnt: always need to have a plan before you take the plunge. sometimes you can still figure it out but it's risky
	goulo: yes, i am too impulsive in this game.:)


34735)
Variants: "Unrated"
Started: 2018.11.20, Ended: 2018.12.19
Participants: Felix (S), dlwillson (N)
Winner: Felix

1) dlwillson: Pass
	dlwillson: Are we doing anything special this game?

2) Felix: Homeworld G1 Y2 R3 *
	Felix: It's up to you. I'd be curious to try the no-blue opening myself. You can match it if you want, or go with a normal opening, your choice!

3) dlwillson: H Y3 G2 R3 *

4) Felix: B R1 Felix
	dlwillson: Let's try this. I was going to go green ship, but I think that would've given me a big advantage.

5) dlwillson: B R1 Dlwillson
	Felix: That's okay! You do whatever you feel is right :)

6) Felix: Discover R1 Felix B3 Out

7) dlwillson: D R1 Dlwillson B1 Sea
	Felix: Oops, sorry for the timeout!

8) Felix: Trade R1 G1 Out

9) dlwillson: T R1 G1 Sea

10) Felix: Build G2 Out

11) dlwillson: B G2 Sea

12) Felix: Build G3 Out

13) dlwillson: B G3 Sea

14) Felix: Trade G3 Y3 Out

15) dlwillson: T G3 Y3 Sea

16) Felix: Move G1 Out Sea
	dlwillson: Looong copycat phase, but I couldn't think of a better move.

17) dlwillson: T G1 R1 Sea
	Felix: No prob! I would have done the same


18) Felix: Build G1 Sea

19) dlwillson: D G2 Sea B3 Sky

20) Felix: Build G3 Out

21) dlwillson: B G3 Sky

22) Felix: D G3 Out B1 Forth

23) dlwillson: Trade G2 R2 Sky

24) Felix: S G3 Forth
B G2 Sea
B G3 Out
B G3 Out

25) dlwillson: Sacrifice G3 Sky
Build R1 Sky
Build R1 Sky
Build R2 Dlwillson

26) Felix: M G3 Out Felix

27) dlwillson: A G2 Sea

28) Felix: Sacrifice G2 Out
Build G2 Sea
Build G3 Out
Catastrophe Sea Green

29) dlwillson: T R2 G2 Sky
	Felix: That was a satisfying move :)
	dlwillson: Elegant!

30) Felix: Trade G3 R3 Out

31) dlwillson: T R1 B1 Sky

32) Felix: Move G3 Felix Sky

33) dlwillson: Sacrifice G2 Sky
Build R1 Sky
Build R2 Sky

34) Felix: Sacrifice R3 Out
Attack R1 Sky
Attack R1 Sky
Attack R2 Sky

35) dlwillson: M R1 Sea Sky
C Sky R

36) Felix: Build G1 Out
	dlwillson: This game just keeps getting better for you!

37) dlwillson: Move Y3 Sea Sky
	Felix: I'm not complaining!

38) Felix: Sacrifice G3 Sky
Build G1 Out
Build R1 Felix
Build Y1 Out
	dlwillson: Ooh! I think I actually got a good move in there! I'm worried that I'm thwapping the hornet's nest, but I'll enjoy it until it starts to hurt. :-)

39) dlwillson: Sacrifice B1 Sky
Trade R3 B3 Dlwillson
	Felix: Yeah, nice move! I should've noticed that

40) Felix: Trade G1 B1 Out

41) dlwillson: Build R1 Dlwillson
	dlwillson: Good thing I looked at what I'd done, eh?

42) Felix: Move B1 Out Felix
	Felix: I always have to do a double take after my move or I end up in serious trouble.

43) dlwillson: B B1 Dlwillson

44) Felix: Build G1 Out

45) dlwillson: D R1 Dlwillson Y1 Sol

46) Felix: Move G3 Out Sol

47) dlwillson: M R1 Sol Sky

48) Felix: Build G2 Sol

49) dlwillson: B R1 Dlwillson

50) Felix: Sacrifice G3 Sol
Build G2 Sol
Build G3 Sol
Build G3 Out

51) dlwillson: T R1 Y1 Dlwillson

52) Felix: Discover G3 Out B1 Bluey

53) dlwillson: T Y3 G3 Sky

54) Felix: Sacrifice G3 Sol
Build G3 Bluey
Build Y2 Out
Build B2 Felix

55) dlwillson: Discover Y1 Dlwillson R1 Mars

56) Felix: Move Y1 Out Bluey

57) dlwillson: B R2 Dlwillson

58) Felix: Sacrifice G3 Bluey
Build G3 Bluey
Build Y2 Bluey
Build Y3 Bluey

59) dlwillson: B R2 Dlwillson

60) Felix: Move Y2 Out Mars

61) dlwillson: M B1 Dlwillson Bluey

62) Felix: Sacrifice R1 Felix
Attack B1 Bluey
	dlwillson: You should challenge D5PA
	Felix: Thanks for the tip. I did :)

63) dlwillson: Move R2 Dlwillson Sol

64) Felix: Sacrifice Y3 Out
Move G2 Sol Dlwillson
Move G2 Sol Dlwillson
Move G3 Bluey Dlwillson

	dlwillson: Perfect! I suppose I could have seen that coming, but I didn't... I never see the doomsday until doomsday. :-)


34710)
Variants: "Hard time"
Started: 2018.11.22, Ended: 2018.12.6
Participants: mneme (S), ajo (N)
Winner: mneme

1) ajo: Homeworld B3 R1 G3

2) mneme: Homeworld B1 G2 R3
	mneme: Is this a great homeworlds tournament game?
	mneme: Is this a great homeworlds tournament game?

3) ajo: Build G1 Ajo
	ajo: Yes! I wanted to wait to say it counted for the Tournament until I saw whether you were paying attention, since otherwise it'd just time out after 48 hours of inattention. :)

4) mneme: Build R1 Mneme
	mneme: hehe.  I was trying to avoid making my first move until you made a response.

5) ajo: Build G1 Ajo

6) mneme: Build R1 Mneme

7) ajo: Trade G3 Y3 Ajo

8) mneme: Trade R3 Y3 Mneme

9) ajo: Discover G1 Ajo B2 Alpha

10) mneme: Build R2 Mneme

11) ajo: Build G1 Ajo

12) mneme: Discover R2 Mneme Y3 Terpsichore

13) ajo: Build G2 Ajo
	ajo: Yep. I'm already losing. I gotta study openings (such as they are).

14) mneme: Move R2 Terpsichore Alpha

15) ajo: Trade G2 R2 Ajo

16) mneme: Attack G1 Alpha

17) ajo: Build G2 Ajo

18) mneme: Build G2 Alpha

19) ajo: Discover G1 Ajo B2 Beta

20) mneme: Trade G2 Y2 Alpha

21) ajo: Move R2 Ajo Beta

22) mneme: Build Y1 Mneme

23) ajo: Sacrifice G2 Ajo
Build G2 Beta
Build Y1 Ajo

24) mneme: Build Y1 Alpha

25) ajo: Move Y1 Ajo Beta

26) mneme: Trade Y3 G3 Mneme

27) ajo: Build Y2 Beta

28) mneme: Discover Y2 Alpha R3 Urania

29) ajo: Sacrifice G2 Beta
Build Y2 Beta
Build Y3 Ajo

30) mneme: Build Y3 Mneme

31) ajo: Move Y3 Ajo Alpha

32) mneme: Discover R2 Alpha B3 Erato

33) ajo: Sacrifice R2 Beta
Attack Y1 Alpha
Attack G1 Alpha

34) mneme: Sacrifice G3 Mneme
Build R2 Erato
Build R2 Mneme
Build R3 Erato

35) ajo: Trade Y3 R3 Alpha

36) mneme: Sacrifice Y1 Mneme
Move R3 Erato Beta
	ajo: The invaders have been driven out of Alpha!

37) ajo: Sacrifice Y2 Beta
Discover G1 Beta B3 Gamma
Move Y2 Beta Gamma
	mneme: but at what cost?

38) mneme: Attack Y1 Beta

39) ajo: Build G2 Ajo

40) mneme: Move R2 Mneme Gamma

41) ajo: Sacrifice Y2 Gamma
Discover G1 Gamma Y2 Delta
Pass

42) mneme: Move Y2 Urania Delta

43) ajo: Build R3 Alpha

44) mneme: Sacrifice Y2 Delta
Move R2 Erato Alpha
Move R2 Erato Alpha
Catastrophe Alpha R

45) ajo: Sacrifice G2 Ajo
Build G2 Alpha
Build G2 Delta

46) mneme: Trade R3 G3 Beta
	Babamots: Does "at what cost" mean you're a "Download" listener?

47) ajo: Sacrifice G2 Alpha
Build G2 Ajo
Build G3 Alpha

48) mneme: Build G3 Beta

49) ajo: Trade G3 Y3 Alpha

50) mneme: Sacrifice G3 Beta
Build R2 Mneme
Build R2 Gamma
Build R3 Gamma

51) ajo: Trade Y3 R3 Alpha

52) mneme: Build G3 Beta

53) ajo: Build R3 Alpha

54) mneme: Trade R3 Y3 Gamma

55) ajo: Build G3 Alpha
	ajo: Bother.

56) mneme: Sacrifice G3 Beta
Build G3 Beta
Build Y1 Beta
Build Y2 Beta

57) ajo: Trade R3 B3 Alpha

58) mneme: Sacrifice Y3 Gamma
Move G3 Beta Ajo
Move Y1 Beta Ajo
Move Y1 Beta Ajo

59) ajo: Sacrifice Y3 Ajo
Move G1 Delta Ajo
Catastrophe Ajo Green
Move G3 Alpha Ajo
Move B3 Alpha Ajo

60) mneme: Trade Y1 B1 Ajo

61) ajo: Build R3 Alpha

62) mneme: Sacrifice G3 Beta
Build B1 Ajo
Catastrophe Ajo B
Pass
Pass
	mneme: check.
	ajo: Oh dear. I saw the doomsday machine happening, but I thought you'd blow things up one at a time, giving me a chance to regroup. This is much worse for me!

63) ajo: Move R3 Alpha Gamma
	ajo: I keep running into situations in this tournament (this is at least the second time) where a mid-turn catastrophe seems like the best option. My own AI's ruleset doesn't allow mid-turn catastrophes, and I think it's a bit of a loophole in SDG's implementation. But then I'll hit a situation like this, where if I'm playing to win, clearly I should use the "loophole"; and then I feel guilty about it.
	mneme: It's actually a relatively recent rules change that got reflected in superdupergames pretty shortly after being adopted.

But yeah, didn't see that one coming!

64) mneme: Sacrifice Y3 Mneme
Move R2 Gamma Ajo
Move R2 Gamma Ajo
Discover R2 Mneme Y3 Nemesis

	mneme: checkmate.

Good game!
	ajo: Good game!


34602)
Variants: "Hard time"
Started: 2018.11.22, Ended: 2018.11.30
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G3 R2 B3

2) wil: H B2 Y1 G3

3) Trydnt: Build B1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Trade B1 Y1 Trydnt

6) wil: T G1 Y1 Wil

7) Trydnt: Build Y2 Trydnt

8) wil: B Y2 Wil

9) Trydnt: Build Y2 Trydnt

10) wil: D Y1 Wil B3 B3

11) Trydnt: Discover Y1 Trydnt G1 G1

12) wil: T Y1 R1 B3

13) Trydnt: Build B1 Trydnt

14) wil: B G1 Wil

15) Trydnt: Build B1 Trydnt

16) wil: T G1 B1 Wil

17) Trydnt: Move Y2 Trydnt G1

18) wil: B B2 Wil
	wil:  why didn't you tell me you challenged
	Trydnt: Oh sorry I thought you'd see it in time. How long do you get to accept/decline those?

19) Trydnt: Move B1 Trydnt G1
	wil: Don't know but I missed it!
	wil: Now I gotta climb agin

20) wil: D B2 Wil Y3 Y3

21) Trydnt: Trade Y1 R1 G1

22) wil: B G1 Wil

23) Trydnt: Build Y1 G1

24) wil: M Y2 Wil B3

25) Trydnt: Discover Y1 G1 G3 G3

26) wil: B G1 Wil

27) Trydnt: Build Y1 G3

28) wil: S G1 Wil
B Y3 B3

29) Trydnt: Build Y3 G1

30) wil: D Y2 B3 G1 Gone

31) Trydnt: Discover Y2 G1 R3 R3

32) wil: T G1 R1 Wil

33) Trydnt: Move Y1 G3 Wil

34) wil: A Y1 Wil

35) Trydnt: Sacrifice Y2 Trydnt
Move Y1 G3 Wil
Move Y2 R3 Wil
Catastrophe Wil Y

36) wil: B G1 Wil

37) Trydnt: Sacrifice Y3 G1
Move B1 G1 Wil
Move B1 Trydnt G1
Move B1 G1 Wil
Catastrophe Wil B



34685)
Started: 2018.11.22, Ended: 2019.6.24
Participants: wil (S), MobyNostromo (N)
Winner: wil



34687)
Started: 2018.11.22, Ended: 2019.1.30
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: H Y1 B2 G3

2) wil: H Y3 B1 G3

3) ts52: Build G1 Ts52
	wil: Thx for the game

4) wil: B G1 Wil

5) ts52: Trade G1 B1 Ts52

6) wil: T G1 Y1 Wil

7) ts52: Build B1 Ts52

8) wil: B Y1 Wil

9) ts52: Discover B1 Ts52 B3 Grover

10) wil: D Y1 Wil Y2 Y2

11) ts52: Build B2 Ts52

12) wil: B Y2 Wil

13) ts52: Build G1 Ts52

14) wil: D Y2 Wil G2 G2

15) ts52: Discover B2 Ts52 G3 Kermit

16) wil: S G3 Wil
B Y2 G2
B Y3 Y2
B Y3 Wil

17) ts52: Sacrifice G3 Ts52
Build B2 Kermit
Build B3 Kermit
Build B3 Ts52

18) wil: T Y1 G1 Wil

19) ts52: Trade B1 Y1 Ts52

20) wil: B G1 Wil

21) ts52: Move Y1 Ts52 Kermit

22) wil: B G2 Wil

23) ts52: Build B1 Ts52

24) wil: T G1 R1 Wil

25) ts52: Move Y1 Kermit Y2
Catastrophe Y2 Yellow

26) wil: M Y2 G2 Grover
	wil: Oops

27) ts52: Trade B3 Y3 Kermit

28) wil: T Y3 B3 Wil

29) ts52: Trade B2 R2 Kermit

30) wil: B R1 Wil

31) ts52: Build B2 Kermit

32) wil: S R1 Wil
A B1 Grover

33) ts52: Discover B1 Ts52 Y3 Bigbird

34) wil: B R1 Wil

35) ts52: Build R1 Kermit

36) wil: D G1 Wil Y2 Y2

37) ts52: Move R2 Kermit Y2

38) wil: B G1 Y2

39) ts52: Attack G1S Y2

40) wil: B G2 Y2

41) ts52: Attack G2S Y2

42) wil: B G3 Y2

43) ts52: Build G3 Ts52
Catastrophe Y2 Green

44) wil: D R1 Wil G2 Gee2

45) ts52: Build R2 Kermit

46) wil: S G2 Wil
B R2 Gee2
B R3 Wil

47) ts52: Build R3 Kermit

48) wil: S Y2 G2
M R2 Gee2 Bigbird
M R1 Gee2 Kermit
C Kermit R

49) ts52: Move B1 Bigbird Y2

50) wil: T R3 G3 Wil

51) ts52: Build Y1 Kermit

52) wil: M B3 Wil Y2

53) ts52: Move R2 Y2 Kermit

54) wil: B R1 Wil

55) ts52: Trade B3 R3 Ts52

56) wil: D B1 Grover G2 G2

57) ts52: Build B3 Kermit

58) wil: S Y2 Grover
M B1 G2 Kermit
C Kermit B
D R1 Wil G2 G2

59) ts52: Sacrifice B1 Y2
Trade Y3 B3 Kermit

60) wil: T R1 Y1 Wil

61) ts52: M R3 Ts52 Bigbird

62) wil: M R2 Bigbird Y2

63) ts52: B Y2 Kermit

64) wil: B G1 Wil

65) ts52: Trade G1 R1 Ts52

66) wil: M Y1 Wil G2

67) ts52: Move R3 Bigbird G2

68) wil: B Y2 G2

69) ts52: Attack Y2 G2
	wil: Night and day these two games

70) wil: B R1 G2
	ts52: Definitely. 

71) ts52: Sacrifice R2 Kermit
Attack R1 G2
Attack R1 G2

72) wil: B G1 Wil

73) ts52: Attack Y1 G2

74) wil: T G3 Y3 Wil

75) ts52: Sacrifice Y2 Kermit
Move Y1 G2 Wil
Move Y2 G2 Wil
Catastrophe Wil Y

	wil: Lol, gg
	ts52: Thanks. You too.


34479)
Variants: "Hard time"
Started: 2018.11.24, Ended: 2018.12.23
Participants: wil (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: Welcome back! I had in mind that this game would be for the tournament. If you're up for playing your other dozen or so tournament games, I'll mark you as un-withdrawn. Just let me know!

2) wil: H B2 Y1 G3
	wil: I have lots of free.time
	wil: And yes, would.love to challenge my brain

3) Babamots: Build G1 Babamots
	wil: Thx

4) wil: B G1 Wil

5) Babamots: Trade G1 Y1 Babamots

6) wil: T G1 Y1 Wil

7) Babamots: Build Y2 Babamots

8) wil: B Y2 Wil

9) Babamots: Discover Y1 Babamots G2 Orion

10) wil: T Y1 R1 Wil

11) Babamots: Build Y1 Babamots

12) wil: D Y2 Wil G3 G3

13) Babamots: Trade Y1 R1 Babamots

14) wil: B R2 Wil

15) Babamots: Build Y1 Orion

16) wil: M R2 Wil G3

17) Babamots: Discover Y1 Orion G1 Risa

18) wil: B R2 Wil

19) Babamots: Sacrifice G3 Babamots
Build Y2 Risa
Build Y3 Orion
Build Y3 Babamots

20) wil: B Y3 G3
	wil: Nice

21) Babamots: Sacrifice Y2 Risa
Move Y1 Risa G3
Move Y1 Orion G3
Catastrophe G3 Y

22) wil: T R2 Y2 Wil

23) Babamots: Move R1 Babamots Orion

24) wil: B R2 Wil

25) Babamots: Build Y1 Orion

26) wil: T R1 B1 Wil

27) Babamots: Trade Y3 G3 Babamots

28) wil: B R1 G3

29) Babamots: Sacrifice G3 Babamots
Build Y1 Babamots
Build Y2 Orion
Build Y3 Babamots
	wil: Such trouble I've got myself in

30) wil: D Y2 Wil G3 Gee3

31) Babamots: Sacrifice Y1 Babamots
Move Y3 Orion G3

32) wil: B B1 Wil

33) Babamots: Sacrifice R1 Orion
Attack R2 G3

34) wil: D B1 Wil Y3 Y3

35) Babamots: Attack R1 G3

36) wil: B B1 Wil

37) Babamots: Build Y1 G3

38) wil: B G1 Wil

39) Babamots: Move Y2 Orion Y3

40) wil: D B1 Y3 G2 G2

41) Babamots: Move R2 G3 G2

42) wil: M B1 Wil Gee3

43) Babamots: Attack B1 G2

44) wil: B B2 Gee3

45) Babamots: Build B2 G2

46) wil: M B1 Gee3 G2

47) Babamots: Trade B1 G1 G2

48) wil: B B1 G2

49) Babamots: Sacrifice Y2 Y3
Move Y3 G3 Orion
Move Y3 Orion Gee3

50) wil: S Y2 Gee3
M B2 Gee3 G2
C G2 B
D G1 Wil Y3 Y3

51) Babamots: Build Y2 G3

52) wil: B G1 Wil

53) Babamots: Build Y2 Orion

54) wil: S G3 Wil
B G2 Y3
B G3 Wil
B B1 Wil
	Babamots: I think that y3 investment may not work out for you. Kinda like my mutual fund account.
	wil: I think that's the least of my troubles

55) Babamots: Trade Y3 B3 Babamots

56) wil: D B1 Wil Y3 Why3

57) Babamots: Move B3 Babamots Orion

58) wil: M B1 Wil Y3

59) Babamots: Move Y2 Orion Y3

60) wil: S G3 Wil
B B1 Why3
B B2 Why3
B G3 Wil

61) Babamots: Sacrifice R2 G2
Attack B1 Y3
Attack G2 Y3

62) wil: M B1 Why3 Orion

63) Babamots: Sacrifice G2 Y3
Build B2 Y3
Build B3 Y3

64) wil: B R1 Wil

65) Babamots: Build R2 G3

66) wil: M R1 Wil Y3

67) Babamots: Move Y1 Orion G3

68) wil: S G3 Wil
B G2 Y3
B R2 Y3
B G3 Wil

69) Babamots: Sacrifice Y2 Y3
Move B1 Y3 Wil
Move B2 Y3 Wil

70) wil: S G3 Wil
B G3 Wil
B R3 Wil
B R3 Y3

71) Babamots: Sacrifice Y3 Gee3
Move B3 Y3 Wil
Move Y1 G3 Wil
Move Y1 G3 Wil
Catastrophe Wil B

72) wil: S B1 Orion
T R3 Y3 Wil
C Wil Y

	wil: Gg
	Babamots: Thanks! The crews of your ships that surrender will be shown mercy :-).


34744)
Variants: "Hard time"
Started: 2018.11.26, Ended: 2019.1.5
Participants: ts52 (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B1 G3

2) ts52: Homeworld Y1 B2 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) ts52: Build G1 Ts52
	ts52: Thanks. You too!

5) goulo: Trade G1 Y1 Goulo

6) ts52: Trade G1 B1 Ts52

7) goulo: Build G1 Goulo

8) ts52: Build B1 Ts52

9) goulo: Trade G1 R1 Goulo

10) ts52: Trade B1 R1 Ts52

11) goulo: Build Y1 Goulo

12) ts52: Build G1 Ts52

13) goulo: Build Y2 Goulo

14) ts52: Build B1 Ts52

15) goulo: Trade Y2 B2 Goulo

16) ts52: Build G1 Ts52

17) goulo: Build Y2 Goulo

18) ts52: Discover G1 Ts52 B3 Gonzo

19) goulo: Discover Y1 Goulo G2 Verdo

20) ts52: Discover B1 Ts52 G3 Kermit

21) goulo: Discover B2 Goulo Y2 Flavo

22) ts52: Build B2 Kermit

23) goulo: Sacrifice G3 Goulo
Build B3 Flavo
Build B3 Flavo
Build Y2 Verdo

24) ts52: Build G1 Ts52

25) goulo: Move Y2 Verdo Gonzo

26) ts52: Discover G1 Ts52 R3 Elmo

27) goulo: Trade B3 G3 Flavo

28) ts52: Sacrifice G3 Ts52
Build G2 Elmo
Build G2 Gonzo
Build G3 Ts52

29) goulo: Sacrifice R1 Goulo
Attack G2 Gonzo

30) ts52: Discover B1 Ts52 Y3 Bigbird

31) goulo: Build Y3 Verdo

32) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Bigbird
Build R1 Ts52

33) goulo: Trade B3 R3 Flavo

34) ts52: Discover B3 Bigbird R2 Tully

35) goulo: Sacrifice G3 Flavo
Build G3 Gonzo
Build Y3 Goulo
Build B3 Flavo

36) ts52: Move G1 Ts52 Bigbird

37) goulo: Move B3 Flavo Kermit

38) ts52: Move R1 Ts52 Bigbird

39) goulo: Sacrifice Y2 Goulo
Move G3 Gonzo Ts52
Move B3 Kermit Ts52

40) ts52: Attack B3N Ts52
	ts52: Well crap, how did I not see that coming? Well played.

41) goulo: Sacrifice R3 Flavo
Attack R1 Ts52
Attack B3 Ts52
Attack G3 Ts52
	goulo: I almost didn't notice this myself! Like you probably were, I was focussed on the more usual "catastrophe strategy" of destroying your homeworld instead of capturing all your ships there.

It seemed a tough situation for you with almost no movement ability!

interesting good game!

happy new year!
	ts52: Yeah, getting shut out of yellow really hurt. Good game, and Happy New Year!



34747)
Variants: "Hard time"
Started: 2018.11.27, Ended: 2018.12.29
Participants: mneme (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: OK... Homeworlds Tournament, try 2. Thanks for being willing to do this, mneme and Babamots! Have fun!  :)

2) mneme: Homeworld R1 G3 B3
	mneme: Indeed.  Also, as we both know, this is a re-do of game #34708 (http://superdupergames.org/main.html?page=play_homeworlds&num=34708)

Moves:
1: 	homeworld y3 b1 g3	homeworld r1 g3 b3
2: 	build g1 Laurie_Menke	build b1 mneme
3: 	trade g1 r1 Laurie_Menke	build b1 mneme

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Thanks for putting the moves in an easy to find location!

4) mneme: Build B1 Mneme

5) Laurie_Menke: Trade G1 R1 Laurie_menke
	mneme: You're welcome--as much for my benefit as yours!  huh--I didn't even realize I'd started it as a small universe game!

6) mneme: Build B1 Mneme
	Laurie_Menke: Oh! I thought that was on purpose!  :)  Just FYI... I will be on the road again from tomorrow (Thursday) through Sunday or possibly Monday.  I definitely won't time out again, but may play slowly while I'm traveling. Sorry...
	mneme: I was experimenting with SU right before the tournament, but yeah, I just went with large/small because I kinda hate goldilocs starts and didn't want to give you a great headsteart, not really thinking about the fact that I was setting up SU as as a result.


7) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Makes sense!

8) mneme: Trade B3 Y3 Mneme

9) Laurie_Menke: Build R1 Laurie_menke
	mneme: And yeah; playing slowly is fine; I mostly don't think about games when I'm not either making a move or reviewing the move I just made, so it doesn't bother me when the timing slows down.
	Laurie_Menke: Thank you! I should be good now for a while. I don't leave again until the 14th, and that's on vacation not business, so I'll still have time to play.  :)

10) mneme: Build B2 Mneme

11) Laurie_Menke: Build G1 Laurie_menke

12) mneme: Trade B2 G2 Mneme

13) Laurie_Menke: Build R2 Laurie_menke

14) mneme: Discover G2 Mneme Y2 Caliope

15) Laurie_Menke: Move G1 Laurie_menke Caliope

16) mneme: Build B2 Mneme

17) Laurie_Menke: Trade R2 Y2 Laurie_menke

18) mneme: Trade B2 R2 Mneme

19) Laurie_Menke: Move G1 Caliope Mneme

	mneme: Ack.  I don't know why I don't get reliable game updates, but its cost me games.  move was obv a g1 mneme
	Laurie_Menke: Alas... OK... Babamots... I think we just need to stick with the original results and say mneme won. We both know they're the better player and would have won eventually. Thank you both for giving this a second shot! Happy New Year!  :)
	mneme: Ug.  I'd be willing to give it a third try if you're game (prolly wouldn't take more than a day to set it up); that feels a lot less dirty than just calling the game for me despite my own timeout.  If I can also start a wil game, that should make it easier to maintain time.
	Laurie_Menke: I will leave that up to you and Babamots, but I really don't mind just saying we both know you would have won.
	Babamots: Would you guys like to play again with "soft" timers? I only put "hard time" in the tournament rules because I knew there would be flakey people. They forget that they were ever in a tournament, the game never ends, and the game list gets cluttered. I trust you two to not wander off.
	Laurie_Menke: I'm willing if you are, mneme! Thanks, Babamots!  :)
	Laurie_Menke: Hi Babamots (and mneme), I'm sorry to do this, but I'm just going to withdraw from the Homeworlds Tournament. I'm in last place anyway and I'm just not able to keep up with my travel schedule. Sorry for the problems I've caused. I'll email you this info as well, Babamots.  Thanks for all the fun, everyone!  :)


34751)
Variants: "Hard time"
Started: 2018.11.28, Ended: 2018.12.1
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) Felix: Homeworld Y1 G3 Y3 *
	wil: GL
	Felix: HF!

3) wil: B G1 Wil
	Felix: Probably not the best time for me to be experimental, but oh well.

4) Felix: Build Y1 Felix
	wil: Woah


5) wil: T G1 Y1 Wil

6) Felix: Discover Y1 Felix G2 Out

7) wil: B Y2 Wil

8) Felix: Build Y2 Out

9) wil: D Y1 Wil G3 G3

10) Felix: Move Y1 Out G3

11) wil: D Y1 G3 G2 G2

12) Felix: B Y3 G3

13) wil: B Y3 G2

	Felix: Well that didn't work at all :)


34741)
Started: 2018.11.29, Ended: 2019.1.23
Participants: ts52 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) ts52: Homeworld R3 B2 G3

3) Trydnt: Build G1 Trydnt

4) ts52: Build G1 Ts52

5) Trydnt: Trade G1 Y1 Trydnt

6) ts52: Trade G1 Y1 Ts52

7) Trydnt: Build Y2 Trydnt

8) ts52: Build Y2 Ts52

9) Trydnt: Trade Y1 B1 Trydnt

10) ts52: Trade Y2 B2 Ts52

11) Trydnt: Build B1 Trydnt

12) ts52: Discover B2 Ts52 G1 Robin

13) Trydnt: Discover B1 Trydnt G3 G3

14) ts52: Build G1 Ts52

15) Trydnt: Move Y2 Trydnt G3

16) ts52: Trade G1 R1 Ts52

17) Trydnt: Build G1 Trydnt

18) ts52: Build R1 Ts52

19) Trydnt: Trade G1 R1 Trydnt

20) ts52: Move R1 Ts52 Robin

21) Trydnt: Build R2 Trydnt

22) ts52: Build G1 Ts52

23) Trydnt: Move R1 Trydnt G3

24) ts52: Build R2 Robin

25) Trydnt: Sacrifice G3 Trydnt
Build R2 G3
Build R3 Trydnt
Build R3 Trydnt

26) ts52: Trade R2 Y2 Robin

27) Trydnt: Trade R3 G3 Trydnt

28) ts52: Move G1 Ts52 Robin

29) Trydnt: Discover R2 G3 Y1 Y1

30) ts52: Sacrifice G3 Ts52
Build Y2 Ts52
Build Y3 Ts52
Build Y3 Robin

31) Trydnt: Build Y3 G3

32) ts52: Trade Y2 G2 Ts52

33) Trydnt: Discover Y2 G3 G1 G1

34) ts52: Build G2 Ts52

35) Trydnt: Sacrifice G3 Trydnt
Build R2 Y1
Build R3 G3
Build Y2 G1

36) ts52: Move R1 Ts52 Robin

37) Trydnt: Trade R3 G3 Trydnt

38) ts52: Discover B2 Robin R3 Elmo

39) Trydnt: Build B1 G3

40) ts52: Sacrifice G2 Ts52
Build B3 Elmo
Build G2 Robin

41) Trydnt: Move R3 G3 G1

42) ts52: Move G2 Robin Elmo

43) Trydnt: Move B1 G3 G1

44) ts52: Move Y2 Robin Elmo

45) Trydnt: Move B1 Trydnt Elmo

46) ts52: Move B2 Elmo Robin

47) Trydnt: Build G2 Trydnt

48) ts52: Build B3 Robin

49) Trydnt: Sacrifice G2 Trydnt
Build B3 G1
Pass

50) ts52: Attack B1N Elmo

51) Trydnt: Discover B3 G1 G3 G33

52) ts52: D B3 Robin G2 Oscar

53) Trydnt: Sacrifice Y2 G1
Move R2 Y1 Ts52
Move R2 Y1 Ts52

54) ts52: A R2 Ts52

55) Trydnt: Move R3 G1 Ts52
Catastrophe Ts52 R

56) ts52: Move R1 Robin Oscar

57) Trydnt: Sacrifice Y3 G3
Move B1 G3 Ts52
Move B1 G1 Ts52
Move B3 G33 Ts52
Catastrophe Ts52 B

	ts52: Good game! Well played.
	Trydnt: You too :)


34740)
Started: 2018.11.29, Ended: 2018.12.2
Participants: Trydnt (S), MobyNostromo (N)
Winner: Trydnt



34754)
Started: 2018.11.29, Ended: 2019.1.30
Participants: ts52 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3

2) ts52: Homeworld R1 B2 G3

3) Trydnt: Build G1 Trydnt

4) ts52: Build G1 Ts52

5) Trydnt: Trade G1 R1 Trydnt

6) ts52: Trade G1 Y1 Ts52

7) Trydnt: Build R1 Trydnt

8) ts52: Build Y1 Ts52

9) Trydnt: Build R2 Trydnt

10) ts52: Build Y1 Ts52

11) Trydnt: Trade R2 Y2 Trydnt

12) ts52: Discover Y1 Ts52 G3 Kermit

13) Trydnt: Discover Y2 Trydnt G1 G1

14) ts52: Build Y2 Ts52

15) Trydnt: Build R2 Trydnt

16) ts52: Trade Y2 R2 Ts52

17) Trydnt: Build Y2 G1
	ts52: Sorry for the delay.

18) ts52: Build G1 Ts52

19) Trydnt: Discover Y2 G1 B3 B3

20) ts52: Move R2 Ts52 Kermit

21) Trydnt: Move R1 Trydnt G1

22) ts52: Trade Y1 B1 Ts52

23) Trydnt: Discover R1 Trydnt Y1 Y1

24) ts52: Build B1 Ts52

25) Trydnt: Sacrifice G3 Trydnt
Build R2 Y1
Build R3 G1
Build R3 Trydnt

26) ts52: Build R3 Kermit

27) Trydnt: Sacrifice Y2 G1
Move R1 Y1 Kermit
Move R2 Y1 Kermit
Catastrophe Kermit R

28) ts52: Trade B1 R1 Ts52

29) Trydnt: Trade R3 G3 Trydnt

30) ts52: Move R1 Ts52 Kermit

31) Trydnt: Build R2 Trydnt

32) ts52: Build B1 Ts52

33) Trydnt: Discover R2 Trydnt G1 G11

34) ts52: Move B1 Ts52 Kermit

35) Trydnt: Build G2 Trydnt

36) ts52: Discover G1 Ts52 B3 Grover

37) Trydnt: Trade G2 B2 Trydnt

38) ts52: Build G2 Grover

39) Trydnt: Move B2 Trydnt G1

40) ts52: Build G2 Ts52

41) Trydnt: Build G2 Trydnt

42) ts52: Trade G2 Y2 Grover

43) Trydnt: Trade R3 Y3 G1

44) ts52: Discover G2 Ts52 B3 Gonzo

45) Trydnt: Move B2 G1 Kermit

46) ts52: Discover B1 Ts52 Y3 Bigbird

47) Trydnt: Sacrifice R2 Trydnt
Attack R1 Kermit
Attack Y1 Kermit

48) ts52: Trade G2 R2 Gonzo

49) Trydnt: Attack B1 Kermit

50) ts52: B G2 Ts52

51) Trydnt: Move Y3 G1 Gonzo

52) ts52: S G2 Ts52
B G2 Ts52
B B1 Bigbird

53) Trydnt: Sacrifice R1 G1
Attack R2 Gonzo

54) ts52: Trade B1 R1 Bigbird

55) Trydnt: Build B1 Kermit

56) ts52: Discover G1 Grover Y1 Scooter

57) Trydnt: Build Y2 Kermit

58) ts52: Move G2 Ts52 Bigbird

59) Trydnt: Sacrifice Y2 B3
Move B1 Kermit Ts52
Move B1 Kermit Ts52

60) ts52: Build G1 Ts52

61) Trydnt: Sacrifice G2 Trydnt
Build B3 Ts52
Catastrophe Ts52 B
Build R2 Gonzo

62) ts52: Move R1 Bigbird Scooter

63) Trydnt: Sacrifice Y3 Gonzo
Move R2 Gonzo Ts52
Move R2 Gonzo Ts52
Move R1 Kermit Ts52
Catastrophe Ts52 R
	ts52: Good game!
	Trydnt: well played :)



34756)
Variants: "Hard time"
Started: 2018.11.29, Ended: 2019.1.2
Participants: Trydnt (S), Felix (N)
Winner: Trydnt

1) Felix: Homeworld B2 R3 G3

2) Trydnt: Homeworld B2 Y1 G3
	Felix: Hello again! Good luck and have fun

3) Felix: Build G1 Felix

4) Trydnt: Build G1 Trydnt

5) Felix: Trade G1 Y1 Felix

6) Trydnt: Trade G1 Y1 Trydnt

7) Felix: Build Y2 Felix

8) Trydnt: Build Y2 Trydnt

9) Felix: Discover Y1 Felix G1 Out

10) Trydnt: Discover Y1 Trydnt G3 G3

11) Felix: Build Y2 Out

12) Trydnt: Build Y3 G3

13) Felix: Build Y3 Felix

14) Trydnt: Discover Y1 G3 G2 G2

15) Felix: Discover Y1 Out Y3 Intrepid

16) Trydnt: Trade Y2 R2 Trydnt

17) Felix: T Y2 R2 Felix

18) Trydnt: Build Y2 G2

19) Felix: Build Y2 Felix

20) Trydnt: Build G1 Trydnt

21) Felix: Build G1 Felix

22) Trydnt: Trade G1 B1 Trydnt

23) Felix: Trade G1 B1 Felix

24) Trydnt: Build G1 Trydnt

25) Felix: Move B1 Felix Out

26) Trydnt: Move B1 Trydnt G3

27) Felix: Build B1 Out

28) Trydnt: Build B2 G3

29) Felix: Move B1 Out Intrepid

30) Trydnt: Trade B1 R1 G3

31) Felix: Trade B1 G1 Intrepid

32) Trydnt: Move Y3 G3 Out

33) Felix: Build G2 Intrepid

34) Trydnt: Move G1 Trydnt Intrepid

35) Felix: Sacrifice Y2 Felix
Move G1 Intrepid Trydnt
Move G2 Intrepid Trydnt

36) Trydnt: Trade G3 R3 Trydnt

37) Felix: Trade G1 R1 Trydnt

38) Trydnt: Sacrifice R2 Trydnt
Attack R1 Trydnt
Attack G2 Trydnt

39) Felix: Discover Y2 Out G3 In

40) Trydnt: Build Y2 Out

41) Felix: Sacrifice Y1 Intrepid
Move B1 Out In

42) Trydnt: Move Y3 Out In

43) Felix: Sacrifice Y2 In
Move Y3 Felix Out
Move Y3 Out G3

44) Trydnt: Sacrifice R1 G3
Attack B1 In

45) Felix: Sacrifice R2 Felix
Attack B2 G3
Pass

46) Trydnt: Move Y2 G2 G3

47) Felix: Trade Y3 R3 G3

48) Trydnt: Discover Y2 G3 Y1 Y1
	Felix: My turn to threaten your little guys :)

49) Felix: Trade B2 Y2 G3

50) Trydnt: Build Y3 Out

51) Felix: Build R1 G3

52) Trydnt: Sacrifice G1 Intrepid
Build Y3 G2

53) Felix: Move R1 G3 Trydnt

54) Trydnt: Sacrifice R1 Trydnt
Attack R1 Trydnt

55) Felix: Build G1 Felix

56) Trydnt: Move R1 Trydnt In

57) Felix: Trade G1 B1 Felix

58) Trydnt: Build G1 Trydnt

59) Felix: Move R3 G3 Y1

60) Trydnt: Move Y2 Y1 In

61) Felix: Build G1 Felix

62) Trydnt: Build G2 Trydnt

63) Felix: Sacrifice Y2 G3
Move B1 Felix Y1
Move G1 Felix Y1

64) Trydnt: Sacrifice G2 Trydnt
Build Y2 In
Build R1 In

65) Felix: Build B1 Y1

66) Trydnt: Build B2 In

67) Felix: Discover B1 Y1 G3 Grinch

68) Trydnt: Sacrifice B1 In
Trade Y3 B3 Out

69) Felix: T G3 Y3 Felix

70) Trydnt: Move Y1 G2 Grinch

71) Felix: B G2 Y1

72) Trydnt: Build G3 Trydnt

73) Felix: Sacrifice G2 Y1
Build B1 Y1
Build B3 Grinch

74) Trydnt: Move Y1 Grinch Out

75) Felix: Discover G1 Y1 B3 Walter

76) Trydnt: Sacrifice Y3 In
Move Y3 G2 Out
Move Y3 Out Felix
Move Y1 Out Felix

77) Felix: Sacrifice Y3 Felix
Move G1 Walter Trydnt
Catastrophe Trydnt Green
Move B3 Grinch Trydnt
Move R3 Y1 Felix

78) Trydnt: Sacrifice R1 In
Attack R3 Felix

	Felix: Nicely done!
	Trydnt: Thanks well played!


34760)
Variants: "Hard time"
Started: 2018.11.29, Ended: 2018.12.5
Participants: goulo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3

2) goulo: Homeworld R3 B1 G3

3) Trydnt: Build G1 Trydnt
	goulo: howdy
	Trydnt: build g1 trydnt

4) goulo: Build G1 Goulo
	Trydnt: oops typed that in the wrong spot and gave my move away! how will I recover?! howdy to you to compadre
	goulo: :)

5) Trydnt: Trade G1 B1 Trydnt

6) goulo: Trade G1 Y1 Goulo

7) Trydnt: Build B1 Trydnt

8) goulo: Build Y1 Goulo

9) Trydnt: Discover B1 Trydnt G1 G1

10) goulo: Trade Y1 G1 Goulo

11) Trydnt: Build B2 G1

12) goulo: Trade G3 B3 Goulo

13) Trydnt: Trade B2 Y2 G1

14) goulo: Build Y1 Goulo

15) Trydnt: Build B2 G1

16) goulo: Trade Y1 R1 Goulo

17) Trydnt: Trade B2 R2 G1

18) goulo: Build Y1 Goulo

19) Trydnt: Build B2 G1

20) goulo: Discover Y1 Goulo G2 Verdo

21) Trydnt: Build R1 G1

22) goulo: Build G1 Goulo

23) Trydnt: Move B2 G1 Verdo

24) goulo: Discover Y1 Verdo Y1 Flavo

25) Trydnt: Build G2 Trydnt

26) goulo: Discover G1 Goulo Y2 Flavumo

27) Trydnt: Sacrifice G2 Trydnt
Build B2 Verdo
Build B3 G1

28) goulo: Trade B3 G3 Goulo

29) Trydnt: Build B3 Verdo

30) goulo: Sacrifice G3 Goulo
Build Y2 Flavo
Build Y3 Goulo
Build Y3 Goulo

31) Trydnt: Trade B3 R3 Verdo

32) goulo: Build G2 Goulo

33) Trydnt: Build B3 Verdo

34) goulo: Discover Y1 Goulo G2 Verdumo

35) Trydnt: Build G3 Trydnt

36) goulo: Build G3 Flavumo

37) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B3 G1
Build R1 Verdo

38) goulo: Move G1 Flavumo Flavo

39) Trydnt: Move G3 Trydnt Flavo

40) goulo: Sacrifice Y3 Goulo
Move G1 Flavo Trydnt
Move G3 Flavumo Flavo
Move G3 Flavo Trydnt

41) Trydnt: Sacrifice R2 G1
Attack G3 Trydnt
Attack G1 Trydnt

	goulo: I was hallucinating about a desperate ploy... seems a suitable moment to resign this lost game! congrats!
	Trydnt: good game
	Draw5PlayAll: I would have bombed those greens @ Trydnt, even though north could just send the R3@Verdo to goulo and the B3@g1 to Trydnt... but it would have been a nice desperate move


34762)
Variants: "Hard time"
Started: 2018.11.29, Ended: 2018.12.8
Participants: Trydnt (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) Trydnt: Homeworld B2 R3 G3
	dlwillson: GLHF!

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build G1 Trydnt

5) dlwillson: T G1 Y1 Dlwillson

6) Trydnt: Trade G1 Y1 Trydnt

7) dlwillson: B Y2 Dlwillson

8) Trydnt: Build Y2 Trydnt

9) dlwillson: T Y1 R1 Dlwillson

10) Trydnt: Build G1 Trydnt

11) dlwillson: Build R1 Dlwillson

12) Trydnt: Trade G1 R1 Trydnt

13) dlwillson: Build R2 Dlwillson

14) Trydnt: Build R2 Trydnt

15) dlwillson: Discover R1 Dlwillson G2 Field

16) Trydnt: Discover R2 Trydnt G1 G1

17) dlwillson: D R2 Dlwillson B2 Sea

18) Trydnt: Move Y1 Trydnt G1

19) dlwillson: B G1 Dlwillson

20) Trydnt: Build Y1 G1

21) dlwillson: M Y2 Dlwillson Field

22) Trydnt: Discover Y1 G1 G2 G2

23) dlwillson: S G3 Dlwillson
B R2 Sea
B R3 Field
B R3 Dlwillson

24) Trydnt: Sacrifice G3 Trydnt
Build Y2 G2
Build Y3 G1
Build Y3 Trydnt

25) dlwillson: B Y3 Field

26) Trydnt: Trade Y3 G3 Trydnt

27) dlwillson: S Y2 Field
D R3 Field B1 Sky
M R2 Sea Sky

28) Trydnt: Move R1 Trydnt G1

29) dlwillson: Trade R2 G2 Sky

30) Trydnt: Discover R1 G1 R2 R2

31) dlwillson: Build G1 Sky

32) Trydnt: Sacrifice Y3 G1
Move R1 R2 Dlwillson
Move R2 G1 G2
Move R2 G2 Dlwillson
Catastrophe Dlwillson R

33) dlwillson: Build G3 Dlwillson

34) Trydnt: Discover Y1 G1 B2 B2

35) dlwillson: T R3 Y3 Sky

36) Trydnt: Trade Y1 G1 B2

37) dlwillson: S G3 Dlwillson
B Y1 Sky
B G3 Sky
B G3 Dlwillson

38) Trydnt: Sacrifice Y1 G2
Move G1 B2 Sky
Catastrophe Sky G

39) dlwillson: T Y1 G1 Sky

40) Trydnt: Build Y1 Trydnt

41) dlwillson: S G3 Dlwillson
B G1 Sky
B G2 Sky
B G3 Dlwillson



34759)
Variants: "Hard time"
Started: 2018.11.29, Ended: 2019.2.5
Participants: Babamots (S), Trydnt (N)
Winner: Babamots

1) Trydnt: Homeworld Y3 B2 G3

2) Babamots: Homeworld R2 B1 G3

3) Trydnt: Build G1 Trydnt

4) Babamots: Build G1 Babamots

5) Trydnt: Trade G1 B1 Trydnt
	Babamots: Good luck and all that!

I know you less than some of the other players. I think someone said you're in the UK? I'm in the eastern US like most of the Homeworlds people.
	Trydnt: And to you! Yeah I was living near Wil and Andy and everyone in MD but moved back to the UK in May and have been trying to slowly convert everyone to HW over here

6) Babamots: Trade G1 B1 Babamots

7) Trydnt: Build B2 Trydnt

8) Babamots: Build B2 Babamots

9) Trydnt: Discover B2 Trydnt G1 G1

10) Babamots: Trade B1 Y1 Babamots

11) Trydnt: Sacrifice G3 Trydnt
Build B1 G1
Build B3 G1
Build B3 Trydnt

12) Babamots: Build B3 Babamots

13) Trydnt: Trade B2 Y2 G1

14) Babamots: Discover B3 Babamots G3 Risa

15) Trydnt: Trade B3 G3 Trydnt

16) Babamots: Build G1 Babamots

17) Trydnt: Build Y1 G1

18) Babamots: Build Y1 Babamots

19) Trydnt: Build Y2 G1

20) Babamots: Move Y1 Babamots Risa

21) Trydnt: Trade Y1 R1 G1

22) Babamots: Trade G1 R1 Babamots

23) Trydnt: Build R1 G1

24) Babamots: Move R1 Babamots Risa

25) Trydnt: Discover Y2 G1 B3 B3

26) Babamots: Build B2 Risa

27) Trydnt: Trade B3 Y3 G1

28) Babamots: Discover Y1 Babamots B3 Bolarus

29) Trydnt: Trade Y2 G2 B3

30) Babamots: Build R2 Risa

31) Trydnt: Build G1 B3

32) Babamots: Trade R2 Y2 Risa

33) Trydnt: Move Y2 G1 Bolarus

34) Babamots: Move Y1 Bolarus Babamots

35) Trydnt: Build Y1 G1

36) Babamots: Move Y1 Risa G1

37) Trydnt: Discover Y1 G1 Y3 Y3

38) Babamots: Build Y2 Babamots

39) Trydnt: Attack Y1 G1

40) Babamots: Build R2 Risa

41) Trydnt: Discover Y2 Bolarus G2 G2

42) Babamots: Discover Y1 Babamots B3 Andoria

43) Trydnt: Build G1 Trydnt

44) Babamots: Build G2 Babamots

45) Trydnt: Sacrifice Y2 G2
Move G1 B3 Babamots
Move G2 B3 Babamots
Catastrophe Babamots G

46) Babamots: Trade B2 G2 Babamots

47) Trydnt: Build B2 G1

48) Babamots: Move B3 Risa Babamots

49) Trydnt: Discover B2 G1 G3 G3

50) Babamots: Build B3 Risa

51) Trydnt: Discover R1 G1 R3 R3

52) Babamots: Build Y2 Babamots

53) Trydnt: Build R2 G1

54) Babamots: Trade R1 G1 Risa

55) Trydnt: Move G1 Trydnt G1

56) Babamots: Move G1 Risa G1

57) Trydnt: Sacrifice Y3 G1
Move B2 G3 Babamots
Move B1 G1 Andoria
Move B1 Andoria Babamots
Catastrophe Babamots B

58) Babamots: Build Y3 Risa

59) Trydnt: Sacrifice Y1 Y3
Move R2 G1 Babamots

60) Babamots: Attack R2 Babamots

61) Trydnt: Move R1 G1 Babamots

62) Babamots: Sacrifice R2 Babamots
Attack R1 Babamots
Attack Y1 G1

63) Trydnt: Build G2 Trydnt

64) Babamots: Sacrifice Y3 Risa
Move G1 G1 Trydnt
Move G2 Babamots G1
Move G2 G1 Trydnt
Catastrophe Trydnt G
	Babamots: Ooh, you're not going to like this.

65) Trydnt: Trade B1 G1 Trydnt
	Babamots: My first encounter with the tricky red sacrifice thing was a super painful lesson. Here's my humiliation, if you're interested:

http://superdupergames.org/?page=archive_play&gid=33901&idx=85



34764)
Variants: "Hard time"
Started: 2018.12.2, Ended: 2019.1.6
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B2 G3

2) wil: H B3 Y2 G3
	Felix: This game is for the tournament, si?
	wil: Cool

3) Felix: Build G1 Felix

4) wil: B G1 Wil

5) Felix: Trade G1 Y1 Felix

6) wil: T G1 R1 Wil

7) Felix: Build Y1 Felix

8) wil: B R1 Wil

9) Felix: Build Y1 Felix

10) wil: B R2 Wil

11) Felix: Discover Y1 Felix B3 Bluey

12) wil: D R1 Wil B1 B1

13) Felix: Sacrifice G3 Felix
Build Y2 Bluey
Build Y2 Bluey
Build Y3 Felix

14) wil: S G3 Wil
B R2 B1
B R2 B1
B R3 Wil

15) Felix: Discover Y1 Bluey G2 Greeny
	wil: I never know where these go

16) wil: T R3 Y3 Wil
	Felix: Me either. Guns or mobility? I opted for mobility.

17) Felix: Build Y3 Greeny

18) wil: T R2 G2 B1

19) Felix: Trade Y2 R2 Bluey

20) wil: T R2 Y2 B1

21) Felix: Sacrifice Y1 Felix
Move Y3 Greeny B1

22) wil: S G2 B1
B R2 B1
B R3 Wil
	wil: Yeah...not good

23) Felix: Sacrifice R2 Bluey
Attack R2 B1
Attack Y2 B1

24) wil: T R3 G3 Wil
	Felix: Me likey :)

25) Felix: Attack R1 B1

26) wil: D Y3 Wil G1 G1

27) Felix: Build Y1 Greeny

28) wil: M R1 Wil G1

29) Felix: Trade R1 G1 B1

30) wil: M R1 G1 Greeny

31) Felix: Sacrifice R2 B1
Attack R1 Greeny
Pass

32) wil: B R1 Wil

33) Felix: Build R2 Greeny

34) wil: M R1 Wil G1

35) Felix: Move R2 Greeny B1

36) wil: B G1 Wil

37) Felix: B G2 B1

38) wil: D G1 Wil B1 Be1

39) Felix: T G1 B1 B1

40) wil: B G1 Wil

41) Felix: B G2 B1

42) wil: B G3 Be1

43) Felix: Move G2 B1 Bluey

44) wil: T G3 R3 Be1

45) Felix: Build G3 B1

46) wil: B G3 Be1

47) Felix: S Y3 Felix
M G2 B1 Wil
M G3 B1 Wil
M Y3 B1 Wil
C Wil Green

48) wil: S G3 Be1
B R2 Wil
B R3 Be1
B R3 G1

49) Felix: Sacrifice R2 B1
Attack R2 Wil
Attack R2 Wil
	wil: Just so it doesn't look like a massacre
	Felix: Huh, interesting. I was sure you'd sacrifice your Y3 to move two ships home and a medium into my system to attack. Maybe I misread it and you couldn't do that. Either way, good game!
	wil: I could but it would only delay 2.moves



34752)
Variants: "Hard time"
Started: 2018.12.2, Ended: 2018.12.16
Participants: eliscinsky (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) eliscinsky: Homeworld R1 B3 G3

3) wil: B G1 Wil
	eliscinsky: For the Great Homeworlds Tournament
	eliscinsky: Hi wil, great to see you back. Looking forward to learning a lot from our game. :)
Good Luck!
	wil:  is the short universe intentional
	wil: I'll hold off a minute,
	eliscinsky: Thanks, I was so excited to play you I lost my mine.

4) eliscinsky: B G1 Eliscinsky
	eliscinsky: Cheers!

5) wil: T G1 B1 Wil
	wil: No worries

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) wil: B B1 Wil

8) eliscinsky: B G1 Eliscinsky

9) wil: D B1 Wil G3 G3
	eliscinsky: Ah, nice move there.

10) eliscinsky: Discover G1 Eliscinsky B2 Rigel

11) wil: S G3 Wil
B B2 G3
B B2 G3
B B3 Wil
	wil: Are you in the tourney Is this legit

12) eliscinsky: B G1 Rigel
	eliscinsky: Yes we're both in the tourney, and this is a legit game.  Are you good with that?  Playing for all the marbles! ;)
	wil: Good cool, I am way bhind

13) wil: S B2 G3
T B2 Y2 G3
T B3 G3 Wil

14) eliscinsky: T G1 R1 Rigel
	wil: Waiting on stroke MRI results
	eliscinsky: Hoping your results are all positive for you. 

15) wil: S G3 Wil
B B2 G3
B B2 G3
B B3 Wil
	wil: Came thru again...

16) eliscinsky: B G1 Rigel
	eliscinsky: Great, good to hear. Congrats! 
	eliscinsky: BTW, that was a cool couple of moves. I'll have to remember that for my next game. 

17) wil: S B2 G3
T B2 R2 G3
T B3 G3 Wil

18) eliscinsky: T G1 Y1 Rigel
	wil: Blue freeze out is powerful

19) wil: S G3 Wil
B B2 G3
B B2 G3
B B3 Wil

20) eliscinsky: Discover Y1 Rigel G3 Orion

21) wil: M B2 G3 Rigel

22) eliscinsky: B G1 Rigel

23) wil: B B3 G3

24) eliscinsky: B Y1 Orion

25) wil: S B2 G3
T B3 Y3 G3
T B3 Y3 Wil

26) eliscinsky: B Y2 Eliscinsky

27) wil: S R2 G3
A R1 Rigel
A G1 Rigel

28) eliscinsky: S Y2 Eliscinsky
M Y1 Orion Wil
M Y1 Orion Wil
C Wil Yellow

29) wil: B B2 Rigel

30) eliscinsky: S Y1 Eliscinsky
M G1 Rigel Wil

31) wil: S R1 Rigel
A G1 Wil

32) eliscinsky: Build G1 Eliscinsky

33) wil: B G2 Rigel

34) eliscinsky: Trade G1 Y1 Eliscinsky

35) wil: B B3 G3

36) eliscinsky: Build Y1 Eliscinsky
	eliscinsky: So I'm effectively back to "Square One" haha!

37) wil: B B3 G3

38) eliscinsky: M Y1 Eliscinsky Rigel
	wil: Sort of

39) wil: S B2 Rigel
T B3 G3 G3
T B3 R3 G3

40) eliscinsky: Build Y1 Eliscinsky

41) wil: S G3 G3
B B2 G3
B B3 G3
B B3 Rigel

42) eliscinsky: Trade Y1 R1 Rigel

43) wil: S B2 G3
T B2 R2 Rigel
T B3 G3 G3

44) eliscinsky: Attack G1 Rigel

45) wil: A R1 Rigel

46) eliscinsky: Build G1 Rigel

47) wil: S R2 Rigel
A G1 Rigel
A G1 Rigel

48) eliscinsky: T Y1 R1 Eliscinsky

49) wil: S Y3 G3
M G1 Rigel Eliscinsky
M G1 Rigel Eliscinsky
M G2 Rigel Eliscinsky
C Eliscinsky G

50) eliscinsky: Trade R1 G1 Eliscinsky

51) wil: S Y2 G3
M G3 G3 Rigel
M G3 Rigel Eliscinsky
	eliscinsky: You've made this a very frustrating game for me.  However, I'm learning a lot from your strategies. So for that ... Thank you kind Sir!
	wil: You are welcome!
	wil: Tis the way we learn

52) eliscinsky: B G1 Eliscinsky
	eliscinsky: So I'm guessing regardless of what I do next, your next move will be to move three Green Ships into my home world, catastrophe my green, then again regardless what I do next, you move a big red into my home world, and proceeded to take over my home world. Does that about sum it up?

53) wil: S R3 G3
A G1 Eliscinsky
A G1 Eliscinsky
A Y1 Eliscinsky
	wil: That was the thought.

	eliscinsky: Great game wil. Thanks for the lessons!
	wil: I like playing, challenge anytime!


34768)
Variants: "Hard time"
Started: 2018.12.3, Ended: 2018.12.19
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 Y2 G3

2) wil: H B2 Y1 G3

3) Trydnt: Build G1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Trade G1 Y1 Trydnt

6) wil: T G1 Y1 Wil

7) Trydnt: Build Y2 Trydnt

8) wil: B Y2 Wil
	wil: Mother stroke, clean recovery

9) Trydnt: Discover Y1 Trydnt G1 G1

10) wil: D Y1 Wil G3 G3
	Trydnt: what?
	wil: cardiologists,.neurologists, MRI, CTscans

11) Trydnt: Build Y3 G1
	Trydnt: Was this a new issue? Happy that you've made a clean recovery :)

12) wil: B Y3 G3
	wil:  3 strokes during open heart surgery

13) Trydnt: Discover Y1 G1 B3 B3
	Trydnt: you are a hell of a fighter. it's been lovely seeing you recover and get back to hw and juggling and the things you love

14) wil: D Y2 Wil Y3 Y3

15) Trydnt: Trade Y2 R2 Trydnt
	wil: Used up 2.many lives
	wil: Walking time bomb now

16) wil: B G1 Wil

17) Trydnt: Build Y2 G1

18) wil: T G1 R1 Wil

19) Trydnt: Build R1 Trydnt

20) wil: M Y1 G3 G1

21) Trydnt: Move Y3 G1 B3

22) wil: B R1 Wil

23) Trydnt: Trade Y1 G1 B3

24) wil: T R1 B1 Wil

25) Trydnt: Trade R1 B1 Trydnt

26) wil: B R1 Wil

27) Trydnt: Build G1 B3

28) wil: M B1 Wil G3

29) Trydnt: Trade G1 R1 B3

30) wil: M R1 Wil G3

31) Trydnt: Build R2 B3

32) wil: B R2 Wil

33) Trydnt: Build R3 Trydnt

34) wil: B R3 G3

35) Trydnt: Move R3 Trydnt G1

36) wil: D Y1 G1 R3 R3

37) Trydnt: Build Y1 B3

38) wil: B B1 G3

39) Trydnt: Build G1 B3

40) wil: B B2 G3
	Trydnt: this is one of those moves where I'd love to have a game duplicator to play a few different versions going forward
	wil: Yup

41) Trydnt: Move B1 Trydnt G1

42) wil: Move B1 G3 G1

43) Trydnt: Attack B1 G1

44) wil: M B1 G3 G1

45) Trydnt: Attack B1 G1

46) wil: B B2 G3

47) Trydnt: Sacrifice B1 G1
Trade R2 G2 B3

48) wil: M R2 Wil Y3

49) Trydnt: Move G1 B3 Wil

50) wil: A G1 Wil

51) Trydnt: Move G1 B3 Wil

52) wil: M G1 Wil G3

53) Trydnt: Sacrifice Y3 B3
Move G1 Wil G3
Move G2 B3 G1
Move G2 G1 G3
Catastrophe G3 G

54) wil: B G1 Wil

55) Trydnt: Build Y3 G1

56) wil: S G1 Wil
B Y3 R3

57) Trydnt: Sacrifice G3 Trydnt
Build R1 G1
Build R2 B3
Build R3 Trydnt

58) wil: B G1 Wil

59) Trydnt: Trade R2 G2 B3

60) wil: B R2 Wil

61) Trydnt: Build G1 B3

62) wil: M G1 Wil R3

63) Trydnt: Move R3 G1 B3

64) wil: B G2 R3

65) Trydnt: Discover G1 B3 B1 B1

66) wil: M G2 R3 B1

67) Trydnt: Sacrifice G1 B1
Build B2 G1

68) wil: B G1 R3

69) Trydnt: Discover B2 G1 G3 G3

70) wil: S Y2 Y3
M G1 R3 Wil
M R1 Wil Y3

71) Trydnt: Build Y2 B3

72) wil: M R2 Y3 B1

73) Trydnt: Sacrifice B2 G3
Trade R3 G3 Trydnt
Trade Y3 R3 G1

74) wil: S Y1 R3
D G2 B1 Y3 Why3

75) Trydnt: Move R3 G1 Why3

76) wil: D G2 Why3 Y1 Why1

77) Trydnt: Sacrifice B1 G1
Trade R3 G3 Why3

78) wil: S G3 Wil
B G2 R3
B G3 Wil
B R3 Y3

79) Trydnt: Sacrifice G3 Why3
Build G3 B3
Build Y3 G1
Build B1 G1

80) wil: T R2 B2 B1

81) Trydnt: Sacrifice Y3 G1
Move G3 B3 Wil
Move G2 B3 Wil
Catastrophe Wil G
Move R3 B3 Wil



34758)
Variants: "Hard time"
Started: 2018.12.3, Ended: 2018.12.4
Participants: Wildhide_The_Druid (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

	Wildhide_The_Druid: R3, B1, G3
	Wildhide_The_Druid: Homeworld (R3, B1, G3)
	Wildhide_The_Druid: homeworld R3 B1 G3
	Wildhide_The_Druid: Homeworld(R3, B1, G3)
	Wildhide_The_Druid: How do I do the commands?
	Trydnt: there's a command box top left of the page


34728)
Variants: "Unrated"
Started: 2018.12.4, Ended: 2019.6.24
Participants: wil (S), Wildhide_The_Druid (N)
Winner: wil

	Wildhide_The_Druid: Homeworld R2 B1 G3


34757)
Variants: "Hard time"
Started: 2018.12.4, Ended: 2019.2.7
Participants: Laurie_Menke (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3
	Laurie_Menke: Hi Trydnt! Have fun!

2) Laurie_Menke: Homeworld B1 Y3 G3

3) Trydnt: Build G1 Trydnt

4) Laurie_Menke: Build G1 Laurie_menke

5) Trydnt: Trade G1 B1 Trydnt

6) Laurie_Menke: Trade G1 B1 Laurie_menke

7) Trydnt: Build B2 Trydnt

8) Laurie_Menke: Build G1 Laurie_menke

9) Trydnt: Discover B2 Trydnt G1 G1

10) Laurie_Menke: Build B2 Laurie_menke

11) Trydnt: Build B3 G1

12) Laurie_Menke: Trade B2 Y2 Laurie_menke

13) Trydnt: Trade B3 Y3 G1

14) Laurie_Menke: Trade G1 R1 Laurie_menke

15) Trydnt: Build B2 G1

16) Laurie_Menke: Discover B1 Laurie_menke G2 Green
	Laurie_Menke: discover b1 Laurie_Menke g2 Green
	Laurie_Menke: Oops! Didn't realize I was in chat! Sorry!

17) Trydnt: Trade B2 R2 G1

18) Laurie_Menke: Build R1 Laurie_menke

19) Trydnt: Move R2 G1 Green

20) Laurie_Menke: Sacrifice B1 Green
Trade R1 B1 Laurie_menke

21) Trydnt: Build Y1 G1

22) Laurie_Menke: Build R1 Laurie_menke

23) Trydnt: Build Y1 G1

24) Laurie_Menke: Discover Y2 Laurie_menke G2 Seeya

25) Trydnt: Move Y1 G1 Green

26) Laurie_Menke: Move B1 Laurie_menke Seeya

27) Trydnt: Build G1 Trydnt

28) Laurie_Menke: Build G1 Laurie_menke

29) Trydnt: Build G2 Trydnt

30) Laurie_Menke: Move G1 Laurie_menke Seeya

31) Trydnt: Sacrifice G2 Trydnt
Build Y1 Green
Build Y2 Green

32) Laurie_Menke: Sacrifice Y2 Seeya
Move G1 Seeya G1
Move G1 G1 Trydnt

33) Trydnt: Sacrifice G1 Trydnt
Build R1 Green

34) Laurie_Menke: Build B2 Seeya

35) Trydnt: Build B3 G1

36) Laurie_Menke: Trade B2 Y2 Seeya

37) Trydnt: Sacrifice R1 Green
Attack G1 Trydnt

38) Laurie_Menke: Build Y2 Seeya

39) Trydnt: Sacrifice Y2 Green
Discover B3 G1 G2 G2
Move Y1 G1 G2

40) Laurie_Menke: Move Y2 Seeya G1

41) Trydnt: Build Y2 G2

42) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack B2 G1

43) Trydnt: Sacrifice R2 Green
Attack Y2 G1
Attack B2 G1

44) Laurie_Menke: Build R1 Laurie_menke

45) Trydnt: Trade Y2 R2 G1

46) Laurie_Menke: Discover B1 Seeya G1 Hi

47) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Trydnt
Build Y2 G1

48) Laurie_Menke: Move Y2 Seeya Hi

49) Trydnt: Move G3 Trydnt Hi

50) Laurie_Menke: Sacrifice Y2 Hi
Move B1 Hi Trydnt
Move R1 Laurie_menke Green

51) Trydnt: Sacrifice R2 G1
Attack B1 Trydnt
Attack R1 Green

52) Laurie_Menke: Build G2 Laurie_menke

53) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 Green
Build B2 G2

54) Laurie_Menke: Build R1 Laurie_menke

55) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B3 G2
Build B3 G1

56) Laurie_Menke: Build R2 Laurie_menke

57) Trydnt: Sacrifice Y2 G2
Move Y1 Green Laurie_menke
Move Y1 Green Laurie_menke

58) Laurie_Menke: Sacrifice R2 Laurie_menke
Attack Y1 Laurie_menke
Attack Y1 Laurie_menke

59) Trydnt: Move Y2 Green Laurie_menke
Catastrophe Laurie_menke Y

60) Laurie_Menke: Build R2 Laurie_menke
	Laurie_Menke: Dude... why are you not finishing me off?

61) Trydnt: Sacrifice Y3 G1
Move B1 Trydnt Laurie_menke
Move B1 Trydnt Laurie_menke
Move B2 G2 Laurie_menke
Catastrophe Laurie_menke B

	Laurie_Menke: Thanks for the fun, Trydnt, and congrats on the win!  :)
	Trydnt: well played :) always a pleasure


34739)
Variants: "Hard time"
Started: 2018.12.5, Ended: 2018.12.6
Participants: Trydnt (S), phi_618 (N)
Winner: Trydnt

1) phi_618: Homeworld B3 Y2 G3

2) Trydnt: Homeworld B2 Y1 G3
	phi_618: good luck and have fun!

3) phi_618: Build G1 Phi_618

4) Trydnt: Build G1 Trydnt

5) phi_618: Discover G1 Phi_618 B1 Newb1

6) Trydnt: Trade G1 Y1 Trydnt

7) phi_618: Build G1 Newb1

8) Trydnt: Build Y1 Trydnt

9) phi_618: Trade G1 B1 Newb1

10) Trydnt: Discover Y1 Trydnt G3 G3

11) phi_618: Build G1 Newb1

12) Trydnt: Build Y2 Trydnt

13) phi_618: Build B1 Newb1

14) Trydnt: Build Y2 G3

15) phi_618: Build G1 Phi_618

16) Trydnt: Build Y3 G3

17) phi_618: Trade G1 R1 Phi_618

18) Trydnt: Trade Y2 R2 Trydnt

19) phi_618: Trade B1 R1 Newb1

20) Trydnt: Build Y2 Trydnt

	phi_618: Thank you for the game.
	Trydnt: no worries. you gotta look out for the small piece in the homeworlds at the start. whichever color was taken will leave only two smalls of that color left and so you have to take it or your opponent will be able to monopolize it in the next turn and there will be no smalls left to trade for then they're in the big guns and you won't be able to catch up easily
	phi_618: Thanks; that's a good way of explaining what went wrong here in a way easily applicable to future games.
	Trydnt: It was one of the best tips my teacher gave me early on. That and if you're going second it is often best to copy your opponent's moves in the beginning until you end up in a spot where to do so would open up a larger piece for them.
	phi_618: Ahh, kindof an application of the go proverb "Your opponent's best move is your best move" to the more independent initial stages of Homeworlds.
	Trydnt: Yup, in Go it stems from the position of the pieces but in HW it's really follows from the "focus on the economies" advice and trying to maintain a diverse portfolio scattered around to minimize risk of catastrophe 


34603)
Variants: "Unrated"
Started: 2018.12.6, Ended: 2018.12.8
Participants: Trydnt (S), phi_618 (N)
Winner: Trydnt

1) phi_618: Homeworld B1 Y2 G3

2) Trydnt: Homeworld G3 B1 B3 *
	phi_618: Good luck and have fun, again. :)

3) phi_618: Build G1 Phi_618
	Trydnt: today's lesson, why you never take a b1 in your homeworld if you are going first
	phi_618: And the same would be said for a g1, but a y1 or r1 would have been fine?

4) Trydnt: Build B1 Trydnt
	Trydnt: Yes. You start with three pieces. Two of those have to be blue and green then red or yellow for the third. If you take a blue or a green 1 first then your opponent can take the same and that color as a large ship with the remaining color in the other half of their star

5) phi_618: Trade G3 B3 Phi_618
	phi_618: So Proverb 1: If your opponent builds a small of a color you do not yet have, do likewise.
Proverb 2: Playing second, follow in the footsteps of the first player until a clearer path emerges.
Proverb 3: Avoid a b1 or g1 Homeworld if playing first.

6) Trydnt: Trade B3 Y3 Trydnt
	phi_618: I guess this isn't as bad as last time. This time it's just like I passed my turn, instead of being completely locked out of a color.
	phi_618: not a good time to be down a tempo, though, the more I think about the situation.

7) phi_618: Build B2 Phi_618

8) Trydnt: Build B2 Trydnt

9) phi_618: Trade B2 Y2 Phi_618

10) Trydnt: Discover B1 Trydnt G2 G2

11) phi_618: Discover G1 Phi_618 B3 B3

12) Trydnt: Build B2 G2

13) phi_618: Build G1 B3

14) Trydnt: Trade B2 Y2 G2

15) phi_618: Trade G1 Y1 B3

16) Trydnt: Build B2 G2

17) phi_618: Build G1 B3

18) Trydnt: Trade B2 R2 G2

19) phi_618: Trade Y2 R2 Phi_618

20) Trydnt: Move R2 G2 B3

21) phi_618: Move Y1 B3 Phi_618

22) Trydnt: Attack G1 B3

	phi_618: Thank you for the game.
	Trydnt: no worries. I have standing challenges open so down to play anytime


34782)
Variants: "Hard time"
Started: 2018.12.6, Ended: 2018.12.22
Participants: Laurie_Menke (S), ajo (N)
Winner: ajo

1) ajo: Homeworld R3 B2 G3
	Laurie_Menke: Hi ajo! Have fun with the 2018 Homeworlds Tournament! (Don't forget to fill out the start form...)  :)
	ajo: Will do. Good luck!

2) Laurie_Menke: Homeworld Y1 B2 Y3 *

3) ajo: Build G1 Ajo

4) Laurie_Menke: Trade Y3 G3 Laurie_menke
	ajo: ...Interesting.
	Laurie_Menke: Oh, yeah... I totally screwed up... LOL!  I thought I was trying something clever, but forgot I needed green to pull it off.  ::sigh::

5) ajo: Trade G1 Y1 Ajo

6) Laurie_Menke: Build G1 Laurie_menke

7) ajo: Build G1 Ajo

8) Laurie_Menke: Trade G1 R1 Laurie_menke

9) ajo: Discover G1 Ajo Y1 Alpha

10) Laurie_Menke: Build G1 Laurie_menke

11) ajo: Build Y2 Ajo

12) Laurie_Menke: Trade G3 Y3 Laurie_menke

13) ajo: Discover Y1 Ajo B1 Beta

14) Laurie_Menke: Discover Y3 Laurie_menke G3 Green
	Laurie_Menke: Well, this is highly unorthodox, but...

15) ajo: Sacrifice G3 Ajo
Build Y2 Beta
Build Y2 Beta
Build Y3 Ajo

16) Laurie_Menke: Discover Y3 Green G1 Hi
	ajo: Yep, probably not a good move.
	Laurie_Menke: Well, in for a penny in for a pound!

17) ajo: Trade Y2 R2 Beta

18) Laurie_Menke: Build Y2 Hi

19) ajo: Sacrifice Y2 Ajo
Discover Y2 Beta Y3 Waypoint
Move Y2 Waypoint Laurie_menke

20) Laurie_Menke: Build G2 Laurie_menke
	ajo: Check.

21) ajo: Sacrifice R2 Beta
Attack R1 Laurie_menke
Attack G2 Laurie_menke
	Laurie_Menke: I am in trouble, but I'm not convinced I'm dead yet...

22) Laurie_Menke: Sacrifice Y2 Hi
Discover Y3 Hi G3 Interim
Move Y3 Interim Laurie_menke
	ajo: Check.

23) ajo: Build Y2 Laurie_menke
Catastrophe Laurie_menke Yellow
	Laurie_Menke: I repeat... I'm in trouble, but I'm not dead.  ;)

24) Laurie_Menke: Build G1 Laurie_menke
	ajo: ...Check. :)
	Laurie_Menke: Alright... THIS time I accept it.  ;)  Good game, ajo! Congrats and thanks for the fun!  :)

25) ajo: Build G2 Laurie_menke
Catastrophe Laurie_menke Green



34781)
Variants: "Hard time"
Started: 2018.12.7, Ended: 2019.1.6
Participants: DodoBirb (S), ajo (N)
Winner: ajo

1) ajo: Homeworld R3 B2 G3

2) DodoBirb: Homeworld B1 R2 G3

3) ajo: Build G1 Ajo
	DodoBirb: Is this for the tourney?
	ajo: Yes, it is. Good luck!

4) DodoBirb: Build G1 Dodobirb
	DodoBirb: Good Luck!

5) ajo: Trade G1 Y1 Ajo

6) DodoBirb: Build G1 Dodobirb

7) ajo: Build Y1 Ajo

8) DodoBirb: Trade G1 Y1 Dodobirb

9) ajo: Discover Y1 Ajo B1 Alpha

10) DodoBirb: Discover G1 Dodobirb B3 Bluey

11) ajo: Build Y2 Ajo

12) DodoBirb: Build Y2 Dodobirb

13) ajo: Build Y2 Ajo

14) DodoBirb: Build Y3 Dodobirb

15) ajo: Sacrifice Y2 Ajo
Move Y1 Alpha Bluey
Move Y1 Bluey Dodobirb
Catastrophe Dodobirb Yellow
	ajo: Well, I'll take that invitation.

16) DodoBirb: Build G1 Dodobirb
	DodoBirb: That's probably why I shouldn't make moves while I'm tired

17) ajo: Discover Y2 Ajo B1 Alpha

18) DodoBirb: Trade G1 B1 Dodobirb

19) ajo: Build G1 Ajo

20) DodoBirb: Build G1 Dodobirb

21) ajo: Trade G1 R1 Ajo

22) DodoBirb: Trade G1 R1 Dodobirb

23) ajo: Move Y2 Alpha Bluey

24) DodoBirb: Sacrifice G1 Bluey
Build G1 Dodobirb

25) ajo: Build G1 Ajo

26) DodoBirb: Trade G1 Y1 Dodobirb

27) ajo: Trade G1 B1 Ajo

28) DodoBirb: Build B2 Dodobirb

29) ajo: Build B2 Ajo

30) DodoBirb: Discover B2 Dodobirb G3 Greeny

31) ajo: Trade B2 Y2 Ajo

32) DodoBirb: Build B2 Greeny

33) ajo: Build B3 Ajo

34) DodoBirb: Build B3 Dodobirb

35) ajo: Discover B3 Ajo G1 Alpha

36) DodoBirb: Trade B2 Y2 Greeny

37) ajo: Sacrifice Y2 Ajo
Move B3 Alpha Bluey
Move B3 Bluey Dodobirb
Catastrophe Dodobirb Blue

38) DodoBirb: Build B1 Greeny

39) ajo: Trade Y2 G2 Bluey
	DodoBirb: Oh well, I'd be fine calling gg here. I've just been making tons of blunders.

40) DodoBirb: Trade B2 Y2 Greeny

41) ajo: Build G1 Bluey
	ajo: I think I've managed to gain an advantage without throwing myself too far off balance; but I don't see how to press my advantage immediately. It's a tournament game, so I'll keep making moves until/unless you resign; and if you resign, heck, I'll accept the win. ;)
	DodoBirb: I guess I'll make a few more moves. I think I'm going to be dead eventually.

42) DodoBirb: Move R1 Dodobirb Greeny

43) ajo: Trade G1 Y1 Bluey

44) DodoBirb: Build R1 Greeny

45) ajo: Sacrifice G2 Bluey
Build Y2 Ajo
Build Y3 Bluey

46) DodoBirb: Build B1 Greeny

47) ajo: Discover Y3 Bluey G1 Waypoint

48) DodoBirb: Discover Y1 Dodobirb G1 Smallg

49) ajo: Sacrifice Y1 Ajo
Move R1 Ajo Waypoint

50) DodoBirb: Build G1 Dodobirb

	DodoBirb: Uh, now I just feel like I'm delaying the inevitable. I'll resign.


34790)
Variants: "Unrated"
Started: 2018.12.8, Ended: 2019.2.10
Participants: Babamots (S), AnalogKid (N)
Winner: Babamots

1) AnalogKid: Homeworld R2 B3 G3

2) Babamots: Homeworld B3 R1 G3
	AnalogKid: Sorry again about the premature end to the last game. It was instructive though. :)

Have a good game!

3) AnalogKid: Build G1 Analogkid
	Babamots: It's fine. I've got plenty of other games going :-). Good luck!

4) Babamots: Build G1 Babamots

5) AnalogKid: Trade G1 R1 Analogkid

6) Babamots: Trade G1 R1 Babamots

7) AnalogKid: Build R2 Analogkid

8) Babamots: Build R2 Babamots

9) AnalogKid: Trade R1 Y1 Analogkid

10) Babamots: Trade R1 Y1 Babamots

11) AnalogKid: Build R1 Analogkid

12) Babamots: Build G1 Babamots

13) AnalogKid: Discover R1 Analogkid G1 Lyese

14) Babamots: Discover R2 Babamots G2 Trill

15) AnalogKid: Trade R2 B2 Analogkid

16) Babamots: Build Y1 Babamots

17) AnalogKid: Build Y2 Analogkid

18) Babamots: Move Y1 Babamots Trill

19) AnalogKid: Move Y2 Analogkid Lyese

20) Babamots: Build Y2 Trill

21) AnalogKid: Sacrifice G3 Analogkid
Build Y2 Lyese
Build Y3 Analogkid
Build B1 Analogkid

22) Babamots: Build Y3 Babamots

23) AnalogKid: Trade Y3 G3 Analogkid

24) Babamots: Trade Y1 B1 Babamots

25) AnalogKid: Move B1 Analogkid Lyese

26) Babamots: Discover Y1 Trill R1 Romulus

27) AnalogKid: Discover Y2 Lyese Y3 Polaris_aa

28) Babamots: Build G1 Babamots
	AnalogKid: Sorry for the delay! I should have more time to pay attention to my games now.

29) AnalogKid: Build G2 Analogkid

30) Babamots: Discover G1 Babamots B2 Bolarus

31) AnalogKid: Sacrifice G2 Analogkid
Build Y1 Lyese
Build Y3 Analogkid

32) Babamots: Build G2 Bolarus

33) AnalogKid: Move Y3 Analogkid Romulus

34) Babamots: Sacrifice G3 Babamots
Build G2 Babamots
Build G3 Babamots
Build G3 Bolarus

35) AnalogKid: Attack Y1 Romulus
	AnalogKid: Hmm... I don't think that I made the right move last turn. :-\

36) Babamots: Move G3 Babamots Trill
	Babamots: It don't think your move was too bad. You've extended your yellow advantage, which is pretty important. I scored an additional large, but I'll have a hard time getting it anywhere.

37) AnalogKid: Build B1 Lyese
	AnalogKid: I think trading one of my Y2 ships for a G2 might have been a better move. But I'm still a novice. *shrug*

38) Babamots: Move G3 Trill Lyese

39) AnalogKid: Sacrifice Y2 Lyese
Discover B1 Lyese Y2 Sol
Move B1 Lyese Sol

40) Babamots: Move B1 Babamots Trill

41) AnalogKid: Sacrifice Y2 Polaris_aa
Move B1 Sol Babamots
Move B1 Sol Babamots

42) Babamots: Sacrifice G3 Bolarus
Build B2 Trill
Build B3 Trill
Build G3 Bolarus
	AnalogKid: Probably reckless, but I didn't like most of the other options that I could see.

43) AnalogKid: Sacrifice Y3 Romulus
Move B2 Analogkid Romulus
Move B2 Romulus Bolarus
Move B2 Bolarus Babamots
Catastrophe Babamots B
	Babamots: It does look like you're about to spend too much on half of a win, but we'll see.

44) Babamots: Sacrifice Y3 Babamots
Move B3 Trill Romulus
Move B3 Romulus Analogkid
Move G3 Lyese Analogkid

45) AnalogKid: Attack B3 Analogkid
	AnalogKid: Hmm... I didn't see that coming.

46) Babamots: Sacrifice R2 Trill
Attack G3 Analogkid
Attack B3 Analogkid

47) AnalogKid: Move R1 Lyese Analogkid
	Babamots: I didn't notice it until after the catastrophe. The threat of losing half your home is pretty distracting.
	AnalogKid: Well, that makes me feel a little better. :)  I was focused on your G3 ship attacking my ships in the Lyese system which prompted me to use the manuever of threatening your homeworld.  Then I was feeling a little silly that it may not have been your intention to attack in Lyese at all...

48) Babamots: Attack R1 Analogkid

49) AnalogKid: Build Y2 Lyese
	AnalogKid: There is no point in me dragging this out for a few more turns.

Well played!  Congratulations. :)


50) Babamots: Attack Y1 Analogkid
	Babamots: I was planning to attack ships in Lyese, but after you sacrificed your y3, I saw at the game with fresh eyes. Looking back, I think my invasion could have worked even while you had your y3, but it would have been dicey if you counterattacked.
	Babamots: Thanks for the game! Good practice for both of us.
	AnalogKid: Well, my hasty invasion certainly made it easier for you to conquer my homeworld instead. I wanted to see what would happen if I took the aggressive approach and I found out just how bad of an idea it was! ^_^  Your monopoly on green may have made it all inevitable anyways.
	AnalogKid: Thanks to you too.  If you want to play another one, I'm game. :)



34774)
Variants: "Hard time"
Started: 2018.12.8, Ended: 2018.12.26
Participants: Trydnt (S), phi_618 (N)
Winner: Trydnt

1) phi_618: Homeworld B2 Y1 G3
	phi_618: good luck and have fun.

2) Trydnt: Homeworld B2 Y3 G3

3) phi_618: Build G1 Phi_618

4) Trydnt: Build G1 Trydnt

5) phi_618: Trade G1 Y1 Phi_618

6) Trydnt: Trade G1 Y1 Trydnt
	phi_618: Was my move forced in order to stop you from taking the second-to-last y1?

7) phi_618: Build Y2 Phi_618
	Trydnt: there were only 2 y1s available. if you didn't take it the I would swap for y. if you then did not swap for y1 you would not be able to get into the yellow economy as I'd take the other y1. you'd have wasted a move swapping for any other color as you'd have to switch to y1 after I did to avoid a lockout

8) Trydnt: Build Y2 Trydnt

9) phi_618: Trade Y2 R2 Phi_618

10) Trydnt: Discover Y1 Trydnt G1 G1

11) phi_618: Build Y2 Phi_618

12) Trydnt: Sacrifice Y2 Trydnt
Discover Y1 G1 G3 G3
Move Y1 G3 Phi_618
Catastrophe Phi_618 Y
	phi_618: Proverb 4: Diversify your production of a contested resource?

Meaning, if both players want a color and are racing to get bigger pieces, producing in more systems than your opponent will garner an advantage.

13) phi_618: Build R1 Phi_618

14) Trydnt: Build G1 Trydnt
	phi_618: Proverb 5: Restrict your opponent to two of a color by threatening catastrophe.

15) phi_618: Build R1 Phi_618

16) Trydnt: Trade G1 R1 Trydnt

17) phi_618: Trade R1 Y1 Phi_618

18) Trydnt: Build G1 Trydnt

19) phi_618: Build Y1 Phi_618

20) Trydnt: Trade G1 Y1 Trydnt
	phi_618: Is it that big a deal that half my homeworld is destroyed? Yeah, I'm easier to attack, but I'm also closer to your homeworld, so it seems like it would be a wash. And I now have move technology back online and the only medium (for now), so it seems like I have compensation?

21) phi_618: Discover Y1 Phi_618 G1 Aether

22) Trydnt: Discover Y1 Trydnt G1 G1

23) phi_618: Build Y2 Aether

24) Trydnt: Build Y2 G1

25) phi_618: Discover Y2 Aether G3 Belle

26) Trydnt: Discover Y1 G1 B3 B3

27) phi_618: Sacrifice G3 Phi_618
Build Y2 Aether
Build Y3 Belle
Build Y3 Phi_618

28) Trydnt: Build G1 Trydnt

29) phi_618: Trade Y1 B1 Phi_618

30) Trydnt: Trade G1 B1 Trydnt

31) phi_618: Move B1 Phi_618 Aether

32) Trydnt: Discover B1 Trydnt Y1 Y1

33) phi_618: Trade R2 G2 Phi_618

34) Trydnt: Build G1 Trydnt

35) phi_618: Build G2 Phi_618

36) Trydnt: Sacrifice G1 Trydnt
Build B1 Y1

37) phi_618: Build B2 Aether

38) Trydnt: Sacrifice Y2 G1
Move B1 Y1 Phi_618
Move B1 Y1 Phi_618



34686)
Variants: "Hard time"
Started: 2018.12.13, Ended: 2018.12.24
Participants: wil (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R3 B1 G3

2) wil: H B2 Y1 G3
	Simon: Hi! I haven't played on this site in 2 years, even dropped from the Homeworlds ladder back then. Now I'm feeling so nostalgic. gl hf!
	wil: Welcome back

3) Simon: Build G1 Simon

4) wil: B G1 Wil

5) Simon: Trade G1 Y1 Simon

6) wil: T G1 B1 Wil

7) Simon: Build G1 Simon

8) wil: B B1 Wil

9) Simon: Trade G3 B3 Simon

10) wil: T B1 Y1 Wil

11) Simon: Build Y2 Simon

12) wil: B Y2 Wil

13) Simon: Discover Y2 Simon G2 G2

14) wil: D Y1 Wil G3 G3

15) Simon: Build B1 Simon

16) wil: B B2 Wil

17) Simon: Move B1 Simon G2

18) wil: T B1 R1 Wil

19) Simon: Build B1 G2

20) wil: D Y2 Wil B3 B3

21) Simon: Build B2 G2

22) wil: M B2 Wil G3

23) Simon: Trade B1 R1 G2

24) wil: B G1 Wil

25) Simon: Discover B1 G2 Y3 Y3

26) wil: M G1 Wil B3

27) Simon: Build Y2 Simon

28) wil: B Y3 B3

29) Simon: Build Y3 G2

30) wil: T Y3 G3 B3

31) Simon: Build Y3 Simon

32) wil: S Y2 B3
M Y1 G3 G2
M Y1 G2 Simon
C Simon Y

33) Simon: Trade B3 Y3 Simon
	Simon: Sorry for the undo. I wanted to build, but entered it as a trade. The trade looked so terrible on the board that I instantly forgot the reasoning behind the build, and had to think about the position from scratch. Ended up with the same build :)
	wil: Undos you're not an issue
	wil: They are definitely part of the live game
	wil: Until you move the coin

34) wil: T G1 Y1 B3

35) Simon: Build G1 Simon

36) wil: B Y1 B3

37) Simon: Build Y2 Simon

38) wil: M Y1 B3 G2

39) Simon: Move Y3 G2 G3

40) wil: B Y2 B3

41) Simon: Attack Y1 G2

42) wil: B G1 B3

43) Simon: Move R1 G2 G3

44) wil: S Y1 B3
D B2 G3 G2 Gee2

45) Simon: Build Y1 G3

46) wil: S G3 B3
B G2 Wil
B G3 B3
B R1 Wil

47) Simon: Build R2 G3

48) wil: M R1 Wil B3

49) Simon: Move Y3 G3 Gee2

50) wil: D G1 B3 R2 R2

51) Simon: Sacrifice R1 G3
Attack B2 Gee2

52) wil: B R1 B3

53) Simon: Sacrifice G1 Simon
Build B1 Y3

54) wil: D R1 B3 G1 G1

55) Simon: Move B1 Y3 Wil

56) wil: S G3 Wil
B G3 Wil
B R2 Wil
B R3 B3

57) Simon: Sacrifice Y3 Gee2
Move B2 Gee2 Y3
Move B2 Y3 Wil
Move B1 Y3 Wil
Catastrophe Wil Blue

58) wil: S G3 Wil
B Y3 B3
B R3 G1
B G2 B3

59) Simon: Sacrifice Y3 Simon
Move Y1 G2 Wil
Move Y2 G2 Wil
Move Y1 G3 Wil
Catastrophe Wil Yellow

	Simon: Yeah, was a quick ending. I felt like I always kept the first-player advantage. Looking forward to rematches as second player!
	wil: I don't put A lot of stock in FPA in hw


34803)
Variants: "Hard time"
Started: 2018.12.15, Ended: 2019.1.18
Participants: wil (S), Draw5PlayAll (N)
Winner: wil

1) Draw5PlayAll: Homeworld B3 R1 G3

2) wil: H Y2 B1 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) wil: B G1 Wil

5) Draw5PlayAll: Trade G1 R1 Draw5playall
	Draw5PlayAll: For the tournament

6) wil: T G1 R1 Wil

7) Draw5PlayAll: Build R2 Draw5playall
	wil: Nice move

8) wil: B R2 Wil
	wil: B r2 wil

9) Draw5PlayAll: Trade R2 Y2 Draw5playall
	wil: Oops

10) wil: T R1 B1 Wil

11) Draw5PlayAll: Build Y1 Draw5playall

12) wil: B G1 Wil

13) Draw5PlayAll: Trade Y1 B1 Draw5playall

14) wil: T G1 Y1 Wil

15) Draw5PlayAll: Build B2 Draw5playall

16) wil: D B1 Wil G3 G3

17) Draw5PlayAll: Discover B2 Draw5playall G2 G2

18) wil: B B2 G3

19) Draw5PlayAll: Build Y1 Draw5playall

20) wil: T B2 Y2 G3

21) Draw5PlayAll: Move Y1 Draw5playall G2

22) wil: D Y1 Wil B3 B3

23) Draw5PlayAll: Build B2 G2

24) wil: B B2 G3

25) Draw5PlayAll: Trade B2 R2 G2

26) wil: D B2 G3 G2 Gtoo

27) Draw5PlayAll: Discover B1 Draw5playall G2 Starboard

28) wil: B G1 Wil

29) Draw5PlayAll: Sacrifice G3 Draw5playall
Pass
Build B2 Starboard
Build B3 G2

30) wil: M G1 Wil B3
	Draw5PlayAll: Threat level: 7.25

31) Draw5PlayAll: Trade B1 R1 Starboard

32) wil: B G1 Wil

33) Draw5PlayAll: Build R2 G2

34) wil: S G3 Wil
B G1 Wil
B G3 Wil
B G3 B3
	Draw5PlayAll: Threat level: 14.5
	wil: Is that out of 100 or 10?

35) Draw5PlayAll: Move B3 G2 Draw5playall

36) wil: S G3 Wil
B G3 Wil
B R3 Wil
B R3 Wil
	Draw5PlayAll: Threat level: 38.0

37) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R1 Starboard G3
Move R1 G3 Wil
Catastrophe Wil Red

38) wil: T G3 R3 Wil

39) Draw5PlayAll: Discover R2 G2 G3 Comeon

40) wil: B B1 Gtoo

41) Draw5PlayAll: Trade B3 Y3 Draw5playall

42) wil: S G3 B3
B G3 B3
B B3 G3
B R1 Wil
	Draw5PlayAll: Why do I always do worse in Tournament and ladder games than in causal games against the same player? (ts52 also has an advantage vs me in that tournament game, but I think I won a different game against him.)

43) Draw5PlayAll: Build R2 Comeon
	wil: Every game, match is unique
	wil: This game is tough and interesting
	wil: Nobody wins them all.lots of variables

44) wil: M R1 Wil G3

45) Draw5PlayAll: Build R3 G2

46) wil: B R3 G3

47) Draw5PlayAll: Build Y1 G2

48) wil: M R3 G3 Starboard

49) Draw5PlayAll: Sacrifice Y1 G2
Discover B2 Starboard Y1 Cantcatchme

50) wil: S G3 B3
B G3 B3
B Y2 G3
B Y3 B3

51) Draw5PlayAll: Build Y3 G2

52) wil: M B1 G3 Starboard

	wil: Threat level crispy
	Draw5PlayAll: Oh man. You really had me there. I cannot even get the R1@Draw5PlayAll out of there without letting you have it or losing a Y3...
	wil: Challenge anytime


34810)
Variants: "Hard time"
Started: 2018.12.19, Ended: 2019.1.3
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H R1 B3 G3

2) wil: H Y2 B1 G3
	dlwillson: Hi Wil! Welcome back, good luck, and have fun firing the neurons!
	wil: Trying.to rebuild it all!

3) dlwillson: Build G1 Dlwillson

4) wil: B G1 Wil

5) dlwillson: T G1 Y1 Dlwillson

6) wil: T G1 Y1 Wil

7) dlwillson: B G1 Dlwillson

8) wil: B G1 Wil

9) dlwillson: T G1 R1 Dlwillson

10) wil: T G1 R1 Wil

11) dlwillson: B R2 Dlwillson

12) wil: B R2 Wil

13) dlwillson: T R1 B1 Dlwillson

14) wil: B G1 Wil

15) dlwillson: D R2 Dlwillson G2 Field

16) wil: T G1 B1 Wil

17) dlwillson: M B1 Dlwillson Field

18) wil: B B2 Wil

19) dlwillson: B B2 Field

20) wil: T B2 Y2 Wil

21) dlwillson: T B2 R2 Field

22) wil: B B2 Wil

23) dlwillson: T R2 Y2 Field

24) wil: T B2 G2 Wil
	dlwillson: I just lost a turn by not checking what I'd actually done!

25) dlwillson: B Y1 Field

26) wil: D Y1 Wil G3 G3

27) dlwillson: D Y1 Field B3 Sky

28) wil: S G2 Wil
B Y3 G3
B Y3 G3

29) dlwillson: M Y2 Field G3
C G3 Y

30) wil: M R2 Wil Sky

31) dlwillson: S G3 Dlwillson
B Y1 Dlwillson
B Y2 Dlwillson
B Y3 Sky

32) wil: A Y1 Sky

33) dlwillson: S R2 Field
A Y1 Sky
A R2 Sky

34) wil: D Y2 Wil G3 G3

35) dlwillson: T Y1 G1 Dlwillson

36) wil: M B1 Wil G3

37) dlwillson: T Y3 G3 Sky

38) wil: B B2 G3

39) dlwillson: M Y1 Dlwillson Field

40) wil: T B1 R1 G3

41) dlwillson: S G3 Sky
B Y1 Field
B Y3 Dlwillson
B Y3 Sky

42) wil: B Y3 G3

43) dlwillson: S Y2 Dlwillson
M Y1 Field G3
M Y1 Field G3
C G3 Y
	dlwillson: Happy Christmas, Wil!
	wil: Back atcha!

44) wil: B R2 Wil

45) dlwillson: T Y3 G3 Sky

46) wil: T R1 Y1 G3

47) dlwillson: B G1 Sky

48) wil: B G1 Wil

49) dlwillson: S G3 Sky
B G2 Dlwillson
B G2 Dlwillson
B G3 Sky

50) wil: M R2 Wil G3

51) dlwillson: D G2 Dlwillson B2 Sea

52) wil: S G3 Wil
B G3 Wil
B R1 Wil
B Y1 G3

53) dlwillson: S Y3 Dlwillson
M G3 Sky Wil
M G1 Sky Wil
M R2 Sky Wil
C Wil G

54) wil: B Y2 G3

55) dlwillson: S G2 Dlwillson
B R2 Wil
B R3 Wil
C Wil R

	wil: Yikes!
	wil: Lol, I wasn't thinking!
	dlwillson: It was good playing with you again!
	wil: Up pieces to.see.the game
	wil: I think I am going to have to start setting 


34809)
Variants: "Hard time"
Started: 2018.12.19, Ended: 2019.1.28
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld B3 Y1 G3

2) Felix: Homeworld R1 B3 G3

3) Draw5PlayAll: Build G1 Draw5playall
	Felix: Good luck and have fun :)

4) Felix: B G1 Felix
	Draw5PlayAll: ...seriously?
	Draw5PlayAll: You actually want to smallverse me in a ladder game?
	Felix: Why not? It's a perfectly valid play

5) Draw5PlayAll: Trade G1 R1 Draw5playall
	Draw5PlayAll: Did I say or imply it was invalid?

6) Felix: Trade G1 Y1 Felix
	Felix: You implied it was rude or somehow un-kosher. Part of the game's balance, however, comes in the ability of player 2 to set the size of the universe. 

7) Draw5PlayAll: Build R1 Draw5playall
	Draw5PlayAll: Risky more than anything do do that to someone with starting yellow AND an extra move on you.
	Draw5PlayAll: Now, should I conquest red or bleed into your yellow supply?

8) Felix: Build Y1 Felix

9) Draw5PlayAll: Discover R1 Draw5playall G2 G2019

10) Felix: Build Y2 Felix

11) Draw5PlayAll: Build R2 Draw5playall

12) Felix: Discover Y1 Felix Y2 Cheese

13) Draw5PlayAll: Discover R1 Draw5playall R2 Niceidea

14) Felix: Discover Y1 Felix Y2 Swiss

15) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 Niceidea
Build R3 G2019
Build R3 Draw5playall

16) Felix: Sacrifice G3 Felix
Build Y3 Felix
Build Y3 Felix
Build Y3 Cheese
	Draw5PlayAll: You asked for it.

17) Draw5PlayAll: Build R3 G2019

18) Felix: T Y3 G3 Felix

19) Draw5PlayAll: Trade R3 G3 Draw5playall
	Draw5PlayAll: I offer a draw.

20) Felix: Trade Y3 R3 Felix
	Draw5PlayAll: I forgot I no longer have green...

21) Draw5PlayAll: Sacrifice R1 G2019
Pass
	Felix: On the ladder, a draw is essentially a loss for the Challenger, so I respectfully decline! 

22) Felix: Sacrifice G3 Felix
Build Y3 Felix
Build Y3 Felix
Build R1 Felix

23) Draw5PlayAll: Build G1 Draw5playall

24) Felix: Trade Y3 G3 Felix
	Draw5PlayAll: I have a plan but it is going to take MUCH longer than I expected.
	Felix: This is why I'm always okay with allowing a red monopoly as long as I can lock down movement!

25) Draw5PlayAll: Trade G1 B1 Draw5playall

26) Felix: Build Y3 Felix

27) Draw5PlayAll: Move B1 Draw5playall G2019

28) Felix: Trade R3 B3 Felix

29) Draw5PlayAll: Build R3 Draw5playall

30) Felix: Move B3 Felix Swiss

31) Draw5PlayAll: Build B1 G2019

32) Felix: Build G1 Felix

33) Draw5PlayAll: Build G1 Draw5playall

34) Felix: Move G1 Felix Swiss
	Draw5PlayAll: I do not believe the speardane account is being checked. If you want to rematch it, ask ajo.

35) Draw5PlayAll: Discover G3 Draw5playall B2 Shutdown

36) Felix: Build B1 Swiss

37) Draw5PlayAll: Build G1 Shutdown

38) Felix: Build B2 Swiss
	Draw5PlayAll: Your partial yellow shutdown and the US partial government shutdown (34 days and counting).

39) Draw5PlayAll: Sacrifice G1 Shutdown
Build G1 Draw5playall
	Felix: Haha, I like to think of it as more of a complete yellow shutdown :)
	Draw5PlayAll: I have homeworld movement

40) Felix: Sacrifice Y3 Felix
Move Y1 Cheese Draw5playall
Move Y3 Cheese Draw5playall
Move Y1 Swiss Draw5playall
Catastrophe Draw5playall Yellow

41) Draw5PlayAll: Trade R3 Y3 G2019

42) Felix: S Y3 Felix
M B1 Swiss Draw5playall
M B2 Swiss Draw5playall
M B3 Swiss Draw5playall
C Draw5playall Blue

	Draw5PlayAll: I know you can win immediately but I just wanted to have some movement.
	Felix: Feels good I bet :)


34811)
Variants: "Hard time"
Started: 2018.12.21, Ended: 2019.2.21
Participants: Laurie_Menke (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3
	Laurie_Menke: Welcome, Simon! Thanks for challenging me! Have fun!  :)
	Simon: Hi, and have fun! I used to play lots in 2014-2017 and am happy to be back at Homeworlds.

2) Laurie_Menke: Homeworld B2 Y1 G3
	Laurie_Menke: Well, then, you'll probably kick my butt, but it'll be fun anyway!  :) Glad to have you back!

3) Simon: Build G1 Simon

4) Laurie_Menke: Build G1 Laurie_menke

5) Simon: Trade G1 Y1 Simon

6) Laurie_Menke: Trade G1 Y1 Laurie_menke

7) Simon: Build Y2 Simon

8) Laurie_Menke: Build Y2 Laurie_menke

9) Simon: Discover Y1 Simon B2 B2

10) Laurie_Menke: Trade Y1 R1 Laurie_menke

11) Simon: Build Y1 Simon

12) Laurie_Menke: Discover Y2 Laurie_menke G3 Green

13) Simon: Discover Y1 Simon G2 G2

14) Laurie_Menke: Build R1 Laurie_menke

15) Simon: Build Y2 G2

16) Laurie_Menke: Build Y3 Green

17) Simon: Build Y3 Simon

18) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow

19) Simon: Trade Y3 R3 Simon

20) Laurie_Menke: Move R1 Yellow B2

21) Simon: Move R3 Simon B2

22) Laurie_Menke: Move Y3 Green G2

23) Simon: Attack R1 B2

24) Laurie_Menke: Build R2 Laurie_menke

25) Simon: Build Y3 G2
Catastrophe G2 Yellow

26) Laurie_Menke: Trade R1 Y1 Laurie_menke

27) Simon: Trade R1 G1 B2

28) Laurie_Menke: Discover Y1 Laurie_menke B3 Blue

29) Simon: Build R1 B2

30) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: build g1 Laurie_Menke
	Laurie_Menke: Oops...

31) Simon: Build G1 Simon

32) Laurie_Menke: Discover G1 Laurie_menke B3 Bluetoo

33) Simon: Build G2 B2

34) Laurie_Menke: Build G2 Laurie_menke

35) Simon: Move R3 B2 Bluetoo

36) Laurie_Menke: Sacrifice G2 Laurie_menke
Build Y2 Green
Build Y3 Blue

37) Simon: Sacrifice G2 B2
Build Y3 Simon
Build Y3 B2

38) Laurie_Menke: Sacrifice Y2 Green
Discover G1 Bluetoo R2 Red
Move Y1 Blue Red

39) Simon: Move G3 Simon Red

40) Laurie_Menke: Move Y1 Red Simon

41) Simon: Attack Y1 Simon

42) Laurie_Menke: Sacrifice G1 Red
Build Y2 Blue

43) Simon: Move Y1 Simon Red

44) Laurie_Menke: Move R2 Laurie_menke Blue

45) Simon: Build G1 B2

46) Laurie_Menke: Build G2 Laurie_menke

47) Simon: Sacrifice Y2 Simon
Move G3 Red Blue
Move G3 Blue Laurie_menke

48) Laurie_Menke: Sacrifice Y2 Blue
Move Y3 Blue Laurie_menke
Move Y2 Green Laurie_menke
	Laurie_Menke: Oops... didn't see that coming...
	Laurie_Menke: Just not paying enough attention... bluebirded myself.  :/

49) Simon: Sacrifice R3 Bluetoo
Attack G3 Laurie_menke
Attack Y3 Laurie_menke
Attack G2 Laurie_menke

50) Laurie_Menke: Sacrifice R2 Blue
Attack G2 Laurie_menke
Pass
	Laurie_Menke: Let's see what kind of damage control I can do... probably not much.
	Simon: Yeah, the build g2 was a problem already. Probably move a y2 home was the only move, but one doesn't want to go backwards either :)

51) Simon: Sacrifice G3 Laurie_menke
Build G2 Laurie_menke
Build G2 Laurie_menke
Build Y2 Laurie_menke
Catastrophe Laurie_menke Green
Catastrophe Laurie_menke Yellow

	Simon: Hmm, the game felt comfortable since turn 12, I kept the extra large without any downsides.
	Laurie_Menke: Yeah, you are definitely the better player! Congrats on the win and thanks for the fun!  :)
	Simon: Thanks for the game too! Recently, I saw that you work with the Looneys and helped Andy with the 30-minute tutorial video. It's a great resource to spread the love (not everybody likes the raw game rules for bedtime reading...)
	Laurie_Menke: Yep. I pretty much eat, sleep, and breathe Looney Labs. My title at Looney Labs is Personal Assistant to the Looneys and New Markets. But I also live in their house (my title there is House Elf). And I am on the road with them about 120 days out of the year demoing games and creating new sales opportunities. It's a pretty great job!  :)  I'm glad you liked the tutorial! I only had a little bit to do with that. It was mostly Andy and his nephew, Eric. You may enjoy the Homeworlds Theater series as well. That's Andy and the inventor of Homeworlds (John Cooper) analyzing a playthrough like sportscasters. It's pretty entertaining, and all of the games are taken from right here on SDG.  :)  Thanks again for the fun, and I look forward to getting good enough to beat you one of these days!  :)


34800)
Variants: "Hard time"
Started: 2018.12.24, Ended: 2019.1.8
Participants: Simon (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	Simon: hf :)

2) Simon: Homeworld B3 R1 G3

3) wil: B G1 Wil

4) Simon: Build G1 Simon

5) wil: T G1 R1 Wil

6) Simon: Trade G1 Y1 Simon

7) wil: B R1 Wil

8) Simon: Build G1 Simon

9) wil: D R1 Wil G3 G3

10) Simon: Trade G3 R3 Simon

11) wil: T R1 B1 Wil

12) Simon: Build Y1 Simon

13) wil: B B1 Wil

14) Simon: Build R1 Simon

15) wil: M B1 Wil G3

16) Simon: Discover R1 Simon Y2 Y2

17) wil: B B2 Wil

18) Simon: Build R2 Simon

19) wil: D B2 Wil Y3 Y3

20) Simon: Move G1 Simon Y2

21) wil: S G3 Wil
B B2 G3
B B2 Y3
B B3 Wil

22) Simon: Trade R3 B3 Simon

23) wil: T B2 Y2 G3

24) Simon: Build R2 Y2

25) wil: T B2 G2 Y3

26) Simon: Discover Y1 Simon G2 G2

27) wil: T B3 G3 Wil

28) Simon: Trade R2 G2 Simon

29) wil: M B2 Y3 G2

30) Simon: Sacrifice G2 Simon
Build Y1 G2
Build Y3 G2

31) wil: M Y2 G3 G2
C G2 Y

32) Simon: Move B3 Simon G2

33) wil: S G3 Wil
B B2 G2
B B2 G2
B B3 Wil
C G2 B

34) Simon: Move R2 Y2 G3
	Simon: Nice, didn't see this.

35) wil: B R2 G3

36) Simon: Build R2 Y2

37) wil: S R1 G3
A R2 G3

38) Simon: Discover R1 Y2 R1 R1

39) wil: T R2 Y2 G3
	wil: Wild game

	Simon: gg
	wil: Thx,.challenge anytime


34793)
Variants: "Hard time"
Started: 2018.12.29, Ended: 2019.1.17
Participants: Trydnt (S), Simon (N)
Winner: Trydnt

1) Simon: Homeworld B3 R1 G3
	Simon: Hi! I played Homeworlds in 2014-2017 and am happy to be around again. Enjoy!

2) Trydnt: Homeworld Y3 B2 G3
	Trydnt: Always good to meet a fellow star traveler

3) Simon: Build G1 Simon

4) Trydnt: Build G1 Trydnt

5) Simon: Trade G1 Y1 Simon

6) Trydnt: Trade G1 R1 Trydnt

7) Simon: Build Y1 Simon

8) Trydnt: Build R1 Trydnt

9) Simon: Discover Y1 Simon B2 B2

10) Trydnt: Build R2 Trydnt

11) Simon: Build Y1 Simon

12) Trydnt: Discover R1 Trydnt G1 G1

13) Simon: Discover Y1 Simon G2 G2

14) Trydnt: Build R2 Trydnt

15) Simon: Build Y2 G2

16) Trydnt: Build R2 G1

17) Simon: Build Y2 Simon

18) Trydnt: Discover R1 Trydnt B1 B1

19) Simon: Build G1 Simon

20) Trydnt: Sacrifice G3 Trydnt
Build R3 Trydnt
Build R3 G1
Build R3 B1

21) Simon: Sacrifice G3 Simon
Build Y2 B2
Build Y3 B2
Build Y3 Simon

22) Trydnt: Trade R3 G3 Trydnt

23) Simon: Trade Y3 R3 B2

24) Trydnt: Trade R3 Y3 B1

25) Simon: Trade Y3 G3 Simon

26) Trydnt: Discover R1 B1 Y3 Y3

27) Simon: Discover Y2 G2 R3 R3

28) Trydnt: Trade R2 B2 Trydnt

29) Simon: Trade Y2 G2 B2

30) Trydnt: Sacrifice B2 Trydnt
Trade R2 Y2 G1
Trade R3 B3 G1

31) Simon: Build G1 B2

32) Trydnt: Build R2 G1

33) Simon: Sacrifice G3 Simon
Build G2 Simon
Build G3 Simon
Build G3 B2

34) Trydnt: Move R2 G1 G2

35) Simon: Discover Y1 G2 B1 B1a

36) Trydnt: Build B1 G1

37) Simon: Move G3 B2 B1a

38) Trydnt: Build B2 G1

39) Simon: Sacrifice G2 Simon
Build G2 B1a
Build R2 B2

40) Trydnt: Build R3 G2

41) Simon: Move G1 Simon G2

42) Trydnt: Sacrifice R3 G2
Attack G1 G2
Pass
Pass

43) Simon: Move R2 B2 B1a

44) Trydnt: Build R3 G1

45) Simon: Move G3 B1a G2

46) Trydnt: Sacrifice Y2 G1
Move G1 G2 Y3
Move B3 G1 Y3

47) Simon: Sacrifice G3 G2
Build G3 B1a
Build Y2 B1a
Pass

48) Trydnt: Build B3 Y3

49) Simon: Move Y1 B2 B1a

50) Trydnt: Move B3 Y3 G2

51) Simon: Move Y1 Simon B2

52) Trydnt: Move Y3 B1 G2

53) Simon: Discover G2 B2 B1 B1

54) Trydnt: Move B3 G2 B1

55) Simon: Sacrifice G2 B1
Build G2 B2
Pass

56) Trydnt: Move R1 Y3 B1

57) Simon: Move Y2 B1a B2

58) Trydnt: Move G1 Y3 B1

59) Simon: Move Y1 B2 B1a

60) Trydnt: Sacrifice B3 Y3
Trade R3 Y3 G1
Pass
Pass

61) Simon: Build R3 B1a

62) Trydnt: Build B3 G1

63) Simon: Move G3 B1a R3

64) Trydnt: Move R1 G1 G2

65) Simon: Move Y1 B1a G2

66) Trydnt: Move R1 G2 Simon

67) Simon: Sacrifice Y2 R3
Move Y1 B1a G2
Move Y1 B1a G2
Catastrophe G2 Yellow

68) Trydnt: Trade B3 Y3 B1

	Simon: I didn't expect the B3 at y3 sacrifice from 4 turns ago, very nice. gg
	Trydnt: It was probably what let me win. Couldn't see another way to convert that star to a ship as if I left my g
	Trydnt: *g
	Trydnt: g1* you could have just moved in an taken it


34833)
Variants: "Hard time"
Started: 2019.1.3, Ended: 2019.1.17
Participants: Trydnt (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 R1 G3

2) Trydnt: Homeworld Y3 B2 G3
	dlwillson: GLaHF!
	Trydnt: fair (solar) winds to you fellow traveler

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build G1 Trydnt

5) dlwillson: T G1 R1 Dlwillson

6) Trydnt: Trade G1 R1 Trydnt

7) dlwillson: B R2 Dlwillson

8) Trydnt: Build R2 Trydnt

9) dlwillson: T R1 Y1 Dlwillson

10) Trydnt: Trade R2 Y2 Trydnt

11) dlwillson: B Y1 Dlwillson

12) Trydnt: Discover Y2 Trydnt G1 G1

13) dlwillson: D Y1 Dlwillson B2 Sea

14) Trydnt: Move R1 Trydnt G1

15) dlwillson: B G1 Dlwillson

16) Trydnt: Build G1 Trydnt

17) dlwillson: M G1 Dlwillson Sea

18) Trydnt: Discover G1 Trydnt R1 R1

19) dlwillson: M R2 Dlwillson Sea

20) Trydnt: Build R2 G1

21) dlwillson: B G2 Dlwillson

22) Trydnt: Build G2 R1

23) dlwillson: S G3 Dlwillson
B G2 Sea
B G3 Sea
B G3 Dlwillson

24) Trydnt: Sacrifice Y2 G1
Move G1 R1 Sea
Catastrophe Sea G
Discover G2 R1 B2 B2

25) dlwillson: S G2 Dlwillson
B G1 Dlwillson
B Y1 Sea

26) Trydnt: Build G1 B2

27) dlwillson: D Y1 Sea B1 Sky

28) Trydnt: Trade G2 Y2 B2

29) dlwillson: S G3 Dlwillson
B Y2 Sky
B Y2 Sea
B Y3 Dlwillson

30) Trydnt: Build Y3 B2

31) dlwillson: S Y2 Sea
M Y1 Dlwillson B2
M Y1 Sky B2
C B2 Y

32) Trydnt: Build G2 Trydnt

33) dlwillson: B G2 Dlwillson

34) Trydnt: Trade G1 Y1 B2

35) dlwillson: B Y1 Dlwillson

36) Trydnt: Sacrifice G2 Trydnt
Build Y2 B2
Build G1 Trydnt

37) dlwillson: S G2 Dlwillson
B Y2 Sea
B Y3 Sky

38) Trydnt: Discover Y2 B2 B1 B1

39) dlwillson: B G2 Dlwillson

40) Trydnt: Trade G1 B1 Trydnt

41) dlwillson: Trade Y1 G1 Sea

42) Trydnt: Build B3 Trydnt

43) dlwillson: Trade Y3 B3 Dlwillson

44) Trydnt: Move B3 Trydnt G1

45) dlwillson: S G2 Dlwillson
B Y1 Sea
B Y3 Dlwillson

46) Trydnt: Move Y1 B2 G1

47) dlwillson: T Y2 B2 Sky

48) Trydnt: Build Y2 G1

49) dlwillson: T Y3 G3 Dlwillson

50) Trydnt: Discover Y2 B1 Y3 Y3

51) dlwillson: D B3 Dlwillson G2 Field

52) Trydnt: Trade B1 R1 Trydnt

53) dlwillson: T B2 G2 Sky

54) Trydnt: Build G2 Trydnt

55) dlwillson: S G3 Dlwillson
B B1 Field
B G3 Sea
B G3 Dlwillson

56) Trydnt: Build B1 G1

57) dlwillson: S Y2 Sea
M G3 Sea Sky
M G3 Sky Trydnt

58) Trydnt: Attack G3 Trydnt

59) dlwillson: Sacrifice Y3 Sky
Move B3 Field Sky
Move B3 Sky Trydnt
Move G2 Sky Trydnt
Catastrophe Trydnt G

60) Trydnt: Sacrifice Y2 Y3
Move B1 G1 Trydnt
Move Y1 G1 Trydnt

61) dlwillson: T B3 G3 Trydnt

62) Trydnt: Move B3 G1 Sea

63) dlwillson: T G3 R3 Dlwillson

64) Trydnt: Move R1 G1 Trydnt

65) dlwillson: S R2 Sea
A R1 Trydnt
A R1 Trydnt

66) Trydnt: Sacrifice R2 G1
Attack R1 Trydnt
Attack R1 Trydnt

67) dlwillson: S R3 Dlwillson
A R1 Trydnt
A R1 Trydnt
A Y1 Trydnt

	dlwillson: Thank you! Good game!
	Trydnt: Well played! Thought I'd be able to wriggle out if you did that but alas I miscalculated


34597)
Variants: "Unrated, Hard time"
Started: 2019.1.3, Ended: 2019.1.13
Participants: Ryzorrin (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	Ryzorrin: homeworld g1 b2 R3
	Ryzorrin: I always type my commands in the messages. >:(
	wil: Thinking i am writing your plan note
	wil: The only thing worse.
	wil: Lol, I do that!

2) Ryzorrin: Homeworld B1 G2 R3

3) wil: B G1 Wil
	Ryzorrin: It just means I don't play enough. :D
	wil: Short universe?
	Ryzorrin: Would seem that way. 
	wil: You have time to change if you like
	wil: I'm good either way
	Ryzorrin: No I'm good.

4) Ryzorrin: Build R1 Ryzorrin

5) wil: T G1 B1 Wil

6) Ryzorrin: Trade R1 G1 Ryzorrin

7) wil: B B2 Wil

8) Ryzorrin: Build G1 Ryzorrin

9) wil: D B2 Wil Y3 Y3

10) Ryzorrin: Trade G1 Y1 Ryzorrin

11) wil: S G3 Wil
B B2 Y3
B B2 Wil
B B3 Y3

12) Ryzorrin: Move G1 Ryzorrin Y3
	Ryzorrin: I got to playtest some games at Looney Labs over the weekend.
	wil: Awesome!  Xendo?  

13) wil: T B2 R2 Y3
	Ryzorrin: Nah. A couple new flux games and an expansion to get the McGuffin.

14) Ryzorrin: Move G1 Y3 Wil
	Draw5PlayAll: I think "X"endo was a dropped idea. They kept the Z but removed the theme.

15) wil: T B2 R2 Wil
	wil: Mcguffin expansion been outta town

16) Ryzorrin: Discover G1 Wil B3 Star

17) wil: T B3 G3 Y3

18) Ryzorrin: Build Y1 Ryzorrin

19) wil: M R2 Wil Star

20) Ryzorrin: Sacrifice Y1 Ryzorrin
Move G1 Star Wil

21) wil: M R2 Y3 Wil

22) Ryzorrin: Build Y1 Ryzorrin

23) wil: A G1 Wil

24) Ryzorrin: Discover Y1 Ryzorrin R3 Whatever

25) wil: B B2 Wil

26) Ryzorrin: Build Y1 Ryzorrin

27) wil: M B1 Wil Star

28) Ryzorrin: Discover Y1 Ryzorrin R3 Meh

29) wil: S G3 Y3
B B2 Star
B B3 Wil
B B3 Y3

30) Ryzorrin: Build Y2 Ryzorrin

31) wil: M B2 Wil Meh

32) Ryzorrin: Discover Y2 Ryzorrin G3 Grapenuts

33) wil: A Y1 Meh

34) Ryzorrin: Build Y2 Ryzorrin

35) wil: M G1 Wil Meh

36) Ryzorrin: Build Y3 Grapenuts

37) wil: B Y3 Meh

38) Ryzorrin: Build R1 Ryzorrin

39) wil: T B3 G3 Y3

40) Ryzorrin: Discover Y2 Ryzorrin B3 Metamorphose
	Ryzorrin: Almost a pass

41) wil: T B3 G3 Wil
	wil: I've always disliked that choice.

42) Ryzorrin: Trade Y2 G2 Metamorphose

43) wil: B B3 Meh

44) Ryzorrin: Build G1 Metamorphose

45) wil: B G1 Y3

46) Ryzorrin: Build G2 Metamorphose

47) wil: S Y3 Meh
D G1 Y3 Y2 Y2
M B2 Y3 Y2
M G1 Y2 Metamorphose
C Metamorphose G

48) Ryzorrin: Build Y3 Ryzorrin

49) wil: S G3 Y3
B Y3 Meh
B B3 Meh
B G1 Wil

50) Ryzorrin: Move R3 Ryzorrin Star

51) wil: M B2 Y2 Star
C Star B

52) Ryzorrin: Trade Y1 B1 Ryzorrin
	wil: Lol, didn't catch the undo

53) wil: T B3 R3 Meh

54) Ryzorrin: Move B1 Ryzorrin Grapenuts

55) wil: D Y1 Meh G1 G1

56) Ryzorrin: Trade Y3 G3 Grapenuts

57) wil: M G1 Wil Grapenuts

58) Ryzorrin: Build B2 Grapenuts

59) wil: B G2 Grapenuts
C Grapenuts G

60) Ryzorrin: Build R1 Ryzorrin

61) wil: S Y3 Meh
M R3 Meh Ryzorrin
M B3 Meh Ryzorrin
M Y1 G1 Meh

	wil:  completed without incident
	wil: Greetings, pleased to report slash and burn
	Ryzorrin: Good game.
	Ryzorrin: I was in a hole from the beginning.
	wil: It was different, challenge anytine
	wil: Short universe challenge


34841)
Variants: "Hard time"
Started: 2019.1.6, Ended: 2019.1.15
Participants: goulo (S), wil (N)
Winner: goulo

1) wil: H Y2 B1 G3
	goulo: happy new year!
	wil: Backatcha have fun

2) goulo: Homeworld B3 G2 Y3

3) wil: B G1 Wil

4) goulo: Build Y1 Goulo

5) wil: B G1 Wil

6) goulo: Build Y1 Goulo

7) wil: D G1 Wil B3 B3

8) goulo: Trade Y1 R1 Goulo

9) wil: B G1 Wil

10) goulo: Trade Y3 G3 Goulo

11) wil: T G1 B1 Wil

12) goulo: Build Y1 Goulo

13) wil: T G1 Y1 Wil

14) goulo: Build Y2 Goulo

15) wil: B Y2 Wil

16) goulo: Discover Y2 Goulo G1 Verdeto

17) wil: M Y1 Wil B3

18) goulo: Build Y3 Verdeto

19) wil: B Y3 B3

20) goulo: Move Y3 Verdeto B3

21) wil: B Y3 B3
C B3 Y

22) goulo: Build Y1 Verdeto

23) wil: M Y2 Wil B3

24) goulo: Discover Y1 Verdeto G3 Verdego

25) wil: B Y3 B3

26) goulo: Build Y3 Verdego

27) wil: T Y3 R3 B3

28) goulo: Trade Y1 B1 Goulo

29) wil: B R1 B3

30) goulo: Build R1 Goulo

31) wil: M R3 B3 Verdeto

32) goulo: Discover Y2 Verdeto G2 Verdo

33) wil: B G1 Wil

34) goulo: Discover B1 Goulo Y1 Flaveto

35) wil: B Y3 B3

36) goulo: Build Y3 Verdo

37) wil: S G3 Wil
B G2 Wil
B G3 Wil
B R2 B3

38) goulo: Move B1 Flaveto Verdego

39) wil: D G1 B3 Y1 Y1

40) goulo: Move Y3 Verdego Y1

41) wil: M G1 Y1 B3

42) goulo: Build B2 Verdego

43) wil: M B1 Wil B3

44) goulo: Move B2 Verdego Verdo

45) wil: M R1 B3 Wil

46) goulo: Sacrifice Y3 Verdo
Move B2 Verdo B3
Move B1 Verdego Verdo
Move B1 Verdo B3
Catastrophe B3 B

47) wil: D G2 Wil Y3 Y3

48) goulo: Build G1 Goulo

49) wil: S G3 Wil
B G3 Wil
B R2 Wil
B R2 Verdeto

50) goulo: Sacrifice Y2 Verdo
Move R1 Goulo Verdeto
Move R1 Goulo Verdeto
Catastrophe Verdeto R

51) wil: T G1 B1 Wil

52) goulo: Trade G3 R3 Goulo

53) wil: M B1 Wil Y3

54) goulo: Build R1 Goulo

55) wil: T G2 Y2 Y3

56) goulo: Build Y2 Verdego

57) wil: D R1 Wil Y3 Why3

58) goulo: Build G1 Goulo

59) wil: B G1 Wil

60) goulo: Trade G1 B1 Goulo

61) wil: B R1 Wil

62) goulo: Move B1 Goulo Y1

63) wil: B R2 Wil

64) goulo: Move R1 Goulo Y1

65) wil: D R1 Wil G3 G3

66) goulo: Move B1 Y1 Verdego

67) wil: D R2 Wil B3 B3

68) goulo: Move R1 Y1 Verdego

69) wil: D Y2 Y3 G1 G1

70) goulo: Move Y3 Y1 B3

71) wil: B Y1 G1

72) goulo: Sacrifice R1 Verdego
Attack R2 B3

73) wil: M G1 Wil Y3

74) goulo: Build B2 Verdego

75) wil: B G2 Wil

76) goulo: Trade B2 G2 Verdego

77) wil: B B2 Y3

78) goulo: Move Y3 B3 G1

79) wil: S Y1 G1
D Y2 G1 R3 R3

80) goulo: Move Y3 G1 Y3

81) wil: T B1 Y1 Y3

82) goulo: Sacrifice R2 B3
Attack B2 Y3
Attack G1 Y3

83) wil: D Y2 R3 G1 G1

84) goulo: Sacrifice Y2 Verdego
Move G1 Y3 Wil
Move G2 Verdego Wil
Catastrophe Wil G

85) wil: M Y2 G1 Y3
C Y3 Y
	wil: My synapses are can't catch up to yours.

86) goulo: Discover R3 Goulo Y1 Flaveto
	goulo: I think I just widened the gap. :)

87) wil: T R2 G2 Wil

88) goulo: Move R3 Flaveto Verdego

89) wil: M R1 Why3 Wil
	wil: Commence funeral march

90) goulo: Move R3 Verdego Wil

91) wil: S G2 Wil
B R1 Wil
B R2 Wil
C Wil R

	goulo: https://www.youtube.com/watch?v=hZY5DBmgC_A
	wil: Lol, gg, nice video, thx
	goulo: I wondered if you were going to go out with a bang by that g2 sacrifice for a red catastrophe! :)
	goulo: that was an epic game.
	wil: Challenge anytime


34813)
Variants: "Hard time"
Started: 2019.1.8, Ended: 2019.1.20
Participants: Simon (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	Simon: hf :)

2) Simon: Homeworld G3 B1 B3 *

3) wil: B G1 Wil
	Simon: I played TwoShort only once ever. Then, he opened like this as 2nd player and won. I never got the chance to play him again, but always wondered whether the opening is strong or whether TwoShort is super strong in general.
	wil:  A powerful opening
	wil: The instant blue freeze out...

4) Simon: Build B1 Simon
	wil: My job, get a blue!

5) wil: B G1 Wil

6) Simon: Trade B3 Y3 Simon

7) wil: D G1 Wil Y3 Y3

8) Simon: Build B2 Simon

9) wil: T G3 B3 Wil

10) Simon: Discover B2 Simon G2 G2

11) wil: B B2 Wil

12) Simon: Build B2 G2

13) wil: T B3 Y3 Wil

14) Simon: Build B3 G2

15) wil: B B3 Wil

16) Simon: Trade B2 R2 G2

17) wil: T B2 R2 Wil

18) Simon: Trade B2 Y2 G2

19) wil: M B3 Wil Y3

20) Simon: Build B2 G2

21) wil: B B2 Y3

22) Simon: Trade B2 Y2 G2

23) wil: T B2 R2 Y3

24) Simon: Build B2 G2

25) wil: B B2 Y3

26) Simon: Build Y1 G2

27) wil: B G1 Y3

28) Simon: Discover Y2 G2 B3 B3

29) wil: B G2 Y3

30) Simon: Trade B3 R3 G2

31) wil: B G2 Wil

32) Simon: Build Y1 G2

33) wil: M G1 Y3 G2

34) Simon: Attack G1 G2

35) wil: S Y3 Wil
M G1 Y3 G2
M G2 Y3 G2
M B3 Y3 Wil
C G2 G

36) Simon: Build B2 Simon

37) wil: S G2 Wil
B B2 Y3
B B3 Y3

38) Simon: Discover B1 Simon G2 G2

39) wil: M B2 Y3 G2

40) Simon: Build Y1 Simon

41) wil: B G1 Wil

42) Simon: Trade B2 R2 Simon

43) wil: B B2 G2

44) Simon: Build Y1 Simon

45) wil: T B3 G3 Y3

46) Simon: Build B3 G2
Catastrophe G2 Blue

47) wil: B B1 Y3

48) Simon: Discover Y1 Simon G2 G2

49) wil: T B2 Y2 Y3

50) Simon: Discover Y1 Simon G2 G2a

51) wil: D Y2 Y3 B2 B2

52) Simon: Trade Y2 G2 B3

53) wil: B B2 Y3

54) Simon: Move Y1 G2 B3

55) wil: M B2 Y3 G2a

56) Simon: Build Y1 G2a

57) wil: S R2 Y3
A Y1 G2a
A Y1 G2a

58) Simon: Build G1 B3

59) wil: B B2 Y3

60) Simon: Move G2 B3 G2a

61) wil: B B3 G2a

62) Simon: Build G2 B3

63) wil: T B3 R3 G2a

64) Simon: Sacrifice G2 B3
Build G2 G2a
Build G3 G2a
Catastrophe G2a Green

65) wil: B B2 Wil

66) Simon: Build G2 B3

67) wil: B B3 Y3

68) Simon: Trade G2 R2 B3

69) wil: T B3 Y3 Y3

70) Simon: Build Y1 B3

71) wil: D Y3 Y3 G2 G2

72) Simon: Build G2 B3

73) wil: B Y1 G2

74) Simon: Move Y1 B3 G2

75) wil: M Y3 G2 B3

76) Simon: Build Y2 B3

77) wil: B B3 Y3

78) Simon: Build R1 Simon
	wil: Nice

79) wil: T B3 G3 Y3

80) Simon: Sacrifice R1 Simon
Attack Y1 G2
	Simon: Hmm :) It's still behind, and I'm speculating on errors.

81) wil: D Y3 B3 G2 Gtoo

82) Simon: Move G2 B3 B2

83) wil: M G3 Y3 B2

84) Simon: Sacrifice G2 B2
Build R1 B3
Build R1 Simon

85) wil: B B3 Y3

86) Simon: Move R1 Simon G2

87) wil: T B3 R3 Y3

88) Simon: Build R1 Simon

89) wil: M R3 Y3 G2

90) Simon: Build R3 G2

91) wil: B R3 Wil

92) Simon: Attack R3 G2

93) wil: S Y2 B2
M R2 Wil Y3
M R2 Y3 G2
C G2 R

94) Simon: Move R1 Simon G2

95) wil: M B3 Wil B3

96) Simon: Build R1 B3
	Simon: Right, I should have sac r1 to attack r3.

97) wil: B Y2 Gtoo

98) Simon: Build R2 Simon

99) wil: M G3 Y3 G2

100) Simon: Build R3 Simon

101) wil: S G1 Wil
B B3 Y3

102) Simon: Move R3 Simon Gtoo

103) wil: S R3 Wil
A R3 Gtoo
A R1 G2
A Y1 G2

104) Simon: Sacrifice R2 Simon
Attack R1 G2
Attack Y1 G2

105) wil: T B3 R3 Y3

106) Simon: Discover Y1 G2 B3 B3a

107) wil: S Y3 Gtoo
M R3 Gtoo Simon
M G3 G2 Simon
M G3 B2 Simon

	wil: Long game! Like playing Andy!
	Simon: gg
	wil: We all came to watch the blood wolf moon!
	wil: What no dinner?
	Simon: Wow, who is "we"? People from the Looney designer group?
	wil: Lol, my big ships visiting your hw..we
	Simon: Heh. It'll be at 05:00 in Germany, but I've got the alarm set for an early rise to see it.
	wil: Lol,.and you ain't asleep yet


34852)
Variants: "Hard time"
Started: 2019.1.12, Ended: 2019.1.19
Participants: Laurie_Menke (S), DodoBirb (N)
Winner: DodoBirb

1) DodoBirb: Homeworld B1 R2 G3
	Laurie_Menke: Hi DodoBirb! Good luck in the Homeworlds Tournament of 2018 (and 2019)! :)
	DodoBirb: Good luck!
	DodoBirb: and thank you!

2) Laurie_Menke: Homeworld B1 G3 Y3

3) DodoBirb: Build G1 Dodobirb
	Laurie_Menke: I'm starting off a little unorthodox... we'll see whether I can pull it off.  ;)
	DodoBirb: Interesting...

4) Laurie_Menke: Build Y1 Laurie_menke

5) DodoBirb: Trade G1 B1 Dodobirb

	DodoBirb: Sorry, I probably should have paused the time. We can have a rematch if you want.
	Laurie_Menke: I'm the one that's sorry, DodoBirb. I've been traveling and having trouble keeping up with games. I probably shouldn't have joined the tournament in the first place. But I am sure you would have won eventually and am happy to conceded if you'd like. If that doesn't feel good for you, I'm also happy to try again. In any case, thanks for the fun!
	DodoBirb: I'm fine with taking it if you're having trouble keeping up with the games. Hope you've had fun!
	Laurie_Menke: I have indeed! Thanks, DodoBirb!  :)


34875)
Variants: "Hard time"
Started: 2019.1.15, Ended: 2019.2.23
Participants: ts52 (S), wil (N)
Winner: ts52

1) wil: H Y2 B1 G3
	wil: GL

2) ts52: Homeworld Y3 B1 G3

3) wil: B G1 Wil
	ts52: Thanks. You too. Have a good game!

4) ts52: Build G1 Ts52

5) wil: T G1 B1 Wil

6) ts52: Build G1 Ts52

7) wil: B B2 Wil

8) ts52: Discover G1 Ts52 B2 Gonzo

9) wil: D B1 Wil R3 R3

10) ts52: T G1 Y1 Ts52

11) wil: S G3 Wil
B B2 R3
B B3 R3
B B3 Wil

12) ts52: B Y1 Ts52

13) wil: T B3 G3 Wil

14) ts52: Move Y1 Ts52 Gonzo

15) wil: T B3 Y3 R3

16) ts52: Build G1 Ts52

17) wil: D B2 R3 Y2 Y2

18) ts52: Sacrifice G3 Ts52
Build Y1 Gonzo
Build Y2 Gonzo
Build Y3 Ts52

19) wil: S G3 Wil
B B3 Wil
B B3 Y2
B B3 R3

20) ts52: Trade Y3 G3 Ts52

21) wil: D B3 Y2 Y3 Y3

22) ts52: Build G1 Gonzo

23) wil: S B2 Wil
T B3 R3 R3
T B3 G3 Y3

24) ts52: Trade Y2 R2 Gonzo

25) wil: S G3 Y3
B B2 Wil
B B3 Y2
B B3 Y2

26) ts52: Build Y2 Gonzo

27) wil: T B3 G3 Wil

28) ts52: Build Y3 Ts52

29) wil: T B3 G3 Y2

30) ts52: Build R1 Gonzo

31) wil: B B3 Y2

32) ts52: Build G2 Gonzo

33) wil: D R3 R3 G2 G2

34) ts52: Discover Y3 Ts52 G2 Kermit

35) wil: M B1 R3 G2

36) ts52: Discover Y2 Gonzo B3 Grover



34884)
Variants: "Hard time"
Started: 2019.1.16, Ended: 2019.1.20
Participants: ajo (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	wil: The for the challenge! Good luck!

2) ajo: Homeworld B3 R1 G3
	ajo: For the challenge. Good luck to you too!

3) wil: B G1 Wil

4) ajo: Build G1 Ajo

5) wil: T G1 B1 Wil

6) ajo: Trade G1 B1 Ajo

7) wil: T B1 R1 Wil

8) ajo: Trade B1 R1 Ajo

9) wil: B R2 Wil
	ajo: Okay, I can do that too. ;)
	wil: Lol

10) ajo: Build R2 Ajo

11) wil: B R2 Wil

12) ajo: Trade R2 Y2 Ajo

13) wil: D R2 Wil B3 B3

14) ajo: Build G1 Ajo

15) wil: D R1 Wil R3 R3

16) ajo: Build Y1 Ajo

17) wil: S G3 Wil
B R2 R3
B R3 B3
B R3 Wil

18) ajo: Discover R1 Ajo Y2 Alpha

19) wil: T R2 G2 Wil

20) ajo: Sacrifice G1 Ajo
Build R2 Alpha

21) wil: T R3 G3 B3

22) ajo: Move R1 Alpha R3
Catastrophe R3 Red

23) wil: B G1 B3

24) ajo: Discover Y1 Ajo B2 Beta

25) wil: T G1 Y1 B3
	wil: That system destined for destruction

26) ajo: Build G1 Ajo

27) wil: B G1 Wil

28) ajo: Sacrifice G3 Ajo
Build Y1 Beta
Build Y3 Ajo
Build Y3 Ajo

29) wil: B Y3 B3

30) ajo: Discover Y3 Ajo G2 Gamma

31) wil: D Y3 B3 B2 B2

32) ajo: Build G1 Ajo

33) wil: T G1 B1 Wil

34) ajo: Discover Y3 Gamma G3 Delta

35) wil: B B1 Wil

36) ajo: Trade Y2 B2 Ajo

37) wil: B Y2 B3

38) ajo: Sacrifice B2 Ajo
Trade Y1 G1 Beta
Trade Y3 B3 Delta

39) wil: M Y2 B3 Beta

40) ajo: Sacrifice Y1 Beta
Move B3 Delta Wil
Catastrophe Wil Blue

41) wil: B G2 B3

42) ajo: Discover R2 Alpha B3 Gamma

43) wil: M Y3 B2 Gamma
	ajo: I think I surprised you there. :)
	wil: Nah, I'll do that everytime!

44) ajo: Discover G1 Ajo B2 Delta

45) wil: S R2 B3
A R2 Gamma
A G1 Beta

46) ajo: Build G2 Delta
	wil: You know they ain't getting away
	wil: You know they ain't getting away
	wil: Like watching cops and robber heli chase
	ajo: Yeah, I think I sacrificed too much after all.

47) wil: S G3 B3
B G3 B3
B G3 Beta
B G3 Wil

48) ajo: Trade G2 Y2 Delta

49) wil: T G3 R3 Beta

50) ajo: Build G2 Ajo
	wil: Always glad to lose ships for control

51) wil: S G3 B3
B G3 B3
B G3 Beta
B R1 Beta

52) ajo: Build Y1 Delta

53) wil: S Y2 Beta
M G3 Beta Ajo
M R3 Beta Ajo

	wil: The struggle is real
	ajo: Good game!


34883)
Variants: "Hard time"
Started: 2019.1.17, Ended: 2019.2.23
Participants: ts52 (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B2 R3 G3

2) ts52: Homeworld Y1 B2 G3
	ajo: For the Great Homeworlds Tournament of 201[89]!
	ts52: :D Have a good game!

3) ajo: Build G1 Ajo

4) ts52: Build G1 Ts52

5) ajo: Trade G1 Y1 Ajo

6) ts52: T G1 Y1 Ts52

7) ajo: Build Y2 Ajo

8) ts52: B Y2 Ts52

9) ajo: Discover Y1 Ajo B1 Alpha

10) ts52: Discover Y2 Ts52 B3 Gonzo

11) ajo: Build G1 Ajo

12) ts52: Build G1 Ts52

13) ajo: Sacrifice G3 Ajo
Build Y2 Alpha
Build Y3 Ajo
Build Y3 Ajo

14) ts52: Sacrifice G1 Ts52
Build Y3 Gonzo

15) ajo: Sacrifice Y3 Ajo
Move Y2 Ajo Alpha
Move Y1 Alpha Gonzo
Move Y2 Alpha Gonzo
Catastrophe Gonzo Yellow

16) ts52: Build G1 Ts52

17) ajo: Build G1 Ajo

18) ts52: Discover G1 Ts52 B3 Gonzo

19) ajo: Trade G1 B1 Ajo

20) ts52: Build G1 Ts52

21) ajo: Build G2 Ajo

22) ts52: Build G2 Gonzo

23) ajo: Move G1 Ajo Alpha

24) ts52: Trade G2 B2 Gonzo

25) ajo: Build G2 Alpha

26) ts52: Trade B2 Y2 Gonzo
	ajo: Ping!
	ts52: Sorry for the delay

27) ajo: Build Y1 Alpha

28) ts52: Trade G1 R1 Ts52

29) ajo: Trade G2 R2 Alpha

30) ts52: Build R1 Ts52

31) ajo: Discover Y1 Alpha B3 Beta

32) ts52: Move R1 Ts52 Gonzo

33) ajo: Sacrifice G2 Ajo
Build Y2 Beta
Build Y3 Ajo

34) ts52: Build Y3 Gonzo

35) ajo: Trade Y3 G3 Ajo

36) ts52: Discover Y1 Ts52 Y3 Bigbird

37) ajo: Trade Y1 B1 Beta

38) ts52: Move Y3 Gonzo Alpha

39) ajo: Sacrifice G3 Ajo
Build B2 Ajo
Build B3 Beta
Build Y1 Beta

40) ts52: S R1 Gonzo
A R2 Alpha
	ajo: Ping!

41) ajo: Trade B3 G3 Beta
	ts52: Sorry for the delay

42) ts52: A Y2 Alpha

43) ajo: Sacrifice G1 Alpha
Build B3 Beta



34893)
Variants: "Hard time"
Started: 2019.1.17, Ended: 2019.1.27
Participants: Trydnt (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B2 G3

2) Trydnt: Homeworld B2 R1 G3 *
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) Trydnt: Build G1 Trydnt

5) goulo: Trade G1 Y1 Goulo

6) Trydnt: Trade G1 R1 Trydnt

7) goulo: Build Y1 Goulo

8) Trydnt: Build R1 Trydnt

9) goulo: Build G1 Goulo

10) Trydnt: Build G1 Trydnt

11) goulo: Discover G1 Goulo Y1 Flaveto

12) Trydnt: Trade G3 Y3 Trydnt

13) goulo: Discover Y1 Goulo G1 Verdeto

14) Trydnt: Build Y2 Trydnt

15) goulo: Build Y2 Goulo

16) Trydnt: Discover R1 Trydnt Y3 Y3

17) goulo: Trade Y2 R2 Goulo

18) Trydnt: Build R2 Trydnt

19) goulo: Move R2 Goulo Verdeto

20) Trydnt: Discover Y2 Trydnt G3 G3

21) goulo: Build Y2 Verdeto

22) Trydnt: Discover R2 Trydnt Y3 Y33

23) goulo: Build Y2 Goulo

24) Trydnt: Build G2 Trydnt

25) goulo: Build G2 Goulo

26) Trydnt: Sacrifice G2 Trydnt
Build R2 Y3
Build R3 Y33

27) goulo: Build R3 Verdeto

28) Trydnt: Sacrifice Y2 G3
Move R1 Y3 Verdeto
Move R2 Y33 Verdeto
Catastrophe Verdeto R

29) goulo: Build Y2 Goulo

30) Trydnt: Move R3 Y33 Verdeto

31) goulo: Sacrifice Y1 Verdeto
Discover Y2 Verdeto Y3 Flavego

32) Trydnt: Build Y1 Trydnt

33) goulo: Trade G2 R2 Goulo

34) Trydnt: Discover Y1 Trydnt G3 G3

35) goulo: Move R2 Goulo Flaveto

36) Trydnt: Move R2 Y3 Flaveto

37) goulo: Sacrifice G1 Flaveto
Build Y3 Flavego

38) Trydnt: Move Y1 G3 Verdeto

39) goulo: Sacrifice Y2 Flavego
Move R2 Flaveto Flavego
Discover Y2 Goulo G1 Verdeto2

40) Trydnt: Build Y2 Verdeto

41) goulo: Move Y3 Flavego Flaveto

42) Trydnt: Move R3 Verdeto Flavego

43) goulo: Sacrifice R2 Flavego
Attack R2 Flaveto
Pass

44) Trydnt: Move R3 Flavego Verdeto

45) goulo: Build Y3 Verdeto2

46) Trydnt: Discover Y1 Verdeto G3 G3

47) goulo: Build G2 Goulo

48) Trydnt: Build G2 Trydnt

49) goulo: Trade G2 B2 Goulo
	Trydnt: meant to put that r3 on verdeto2 not verdeto... damnations

50) Trydnt: Trade G1 B1 Trydnt

51) goulo: Move B2 Goulo Verdeto2
	goulo: aha, yeah, that would have seemed better indeed!
	Trydnt: pretty sure that'll lose me the game but guess we'll see

52) Trydnt: Move B1 Trydnt G3

53) goulo: Move Y2 Verdeto2 G3

54) Trydnt: Move R3 Verdeto G3

55) goulo: Discover Y2 G3 R2 Rugho

56) Trydnt: Build B1 G3

57) goulo: Discover Y3 Flaveto G3 Verdego

58) Trydnt: Discover B1 G3 G1 G1

59) goulo: Build G2 Goulo

60) Trydnt: Build G2 Trydnt

61) goulo: Move G2 Goulo Flaveto

62) Trydnt: Sacrifice G2 Trydnt
Build B1 G3
Build B3 G1

63) goulo: Build B3 Verdeto2

64) Trydnt: Move B1 G3 Verdeto

65) goulo: Discover Y2 Rugho B3 Bluego

66) Trydnt: Trade B3 R3 G1

67) goulo: Trade B2 R2 Verdeto2

68) Trydnt: Build G2 Trydnt

69) goulo: Move R2 Flaveto Verdego

70) Trydnt: Sacrifice G2 Trydnt
Build B2 G1
Build B3 Verdeto

71) goulo: Build R1 Verdego

72) Trydnt: Sacrifice Y2 Verdeto
Move B3 Verdeto Goulo
Move B1 Verdeto Goulo

73) goulo: Attack B3 Goulo

74) Trydnt: Sacrifice Y1 G3
Move B1 G1 Goulo
Catastrophe Goulo B

75) goulo: Sacrifice Y3 Verdeto2
Move Y1 Goulo Trydnt
Move Y2 Bluego Trydnt
Move Y2 Goulo Trydnt
Catastrophe Trydnt Y

76) Trydnt: Trade R1 Y1 Trydnt

77) goulo: Move Y3 Verdego Trydnt

78) Trydnt: Build Y1 Trydnt

79) goulo: Attack G2 Trydnt

80) Trydnt: Sacrifice Y1 Trydnt
Move R3 G1 Goulo

81) goulo: Attack Y1 Trydnt

	Trydnt: well played
	goulo: thanks, I was lucky about your typo/brainfart/whatever that you mentioned. :)

after that, I began to feel I was losing the advantage it gave me as we started to become closer in material strength again as almost all ships got built.

the endgame was quite epic with so many ships and possibilities... i almost overlooked my move to spend so many of my own yellows to kill your y3  defending your homeworld, and if i'd done something else, i think it would not have worked out for me.
	Trydnt: yeah I had another move that I was considering that would have made the win I think but didn't pull it together in time


34895)
Variants: "Hard time"
Started: 2019.1.18, Ended: 2019.4.15
Participants: ts52 (S), DodoBirb (N)
Winner: ts52

1) DodoBirb: Homeworld B1 R2 G3
	DodoBirb: This is for the Tournament btw.
	DodoBirb: Good Luck!

2) ts52: H Y3 B2 G3
	DodoBirb: Just pausing the time in case it runs out.

3) DodoBirb: Build G1 Dodobirb
	ts52: Thanks. Sorry about that. Have a good game!
	DodoBirb: You too!

4) ts52: B G1 Ts52

5) DodoBirb: Trade G1 B1 Dodobirb

6) ts52: Trade G1 B1 Ts52

7) DodoBirb: Build G1 Dodobirb

8) ts52: Build B2 Ts52

9) DodoBirb: Trade G1 Y1 Dodobirb

10) ts52: Build G1 Ts52

11) DodoBirb: Build G1 Dodobirb

12) ts52: Discover B2 Ts52 G1 Robin

13) DodoBirb: Discover B1 Dodobirb G3 Greeny

14) ts52: Build G2 Ts52

15) DodoBirb: Build G2 Dodobirb

16) ts52: Trade G2 Y2 Ts52

17) DodoBirb: Trade G2 Y2 Dodobirb
	ts52: Sorry for the delay.

18) ts52: Build Y1 Ts52
	DodoBirb: No worries.

19) DodoBirb: Move Y1 Dodobirb Greeny

20) ts52: Move Y1 Ts52 Robin

21) DodoBirb: Build G2 Dodobirb

22) ts52: Move G1 Ts52 Robin

23) DodoBirb: Move G2 Dodobirb Greeny

24) ts52: Build G2 Ts52

25) DodoBirb: Build Y1 Dodobirb

26) ts52: T G1 R1 Robin

27) DodoBirb: Trade G2 R2 Greeny

28) ts52: B G1 Ts52

29) DodoBirb: Build G2 Dodobirb
	ts52: Thanks again for being so understanding about my forgetfulness
	DodoBirb: don't worry about it.

30) ts52: Discover G1 Ts52 R1 Elmo

31) DodoBirb: Discover G2 Dodobirb B3 Bigblue

32) ts52: Move Y2 Ts52 Elmo

33) DodoBirb: Build G2 Bigblue

34) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Elmo
Build Y3 Robin

35) DodoBirb: Build Y3 Greeny

36) ts52: Trade Y3 R3 Robin

37) DodoBirb: Trade G2 R2 Bigblue

38) ts52: Move R3 Robin Bigblue

39) DodoBirb: Sacrifice G2 Bigblue
Build R1 Bigblue
Build R3 Bigblue
Catastrophe Bigblue R

40) ts52: Build Y3 Robin

41) DodoBirb: Build B2 Greeny

42) ts52: Build B3 Robin

43) DodoBirb: Discover B2 Greeny R1 Littlered
	DodoBirb: If you want to we could just end this game as as draw.

44) ts52: Discover B3 Robin G2 Kermit
	ts52: I don't think we've quite stalemated yet.
	DodoBirb: I meant if you're having trouble keeping up but if you want to continue then let's continue.

45) DodoBirb: Sacrifice Y3 Greeny
Move B1 Greeny Littlered
Move B1 Littlered Ts52
Move B2 Littlered Ts52
Catastrophe Ts52 B

46) ts52: Sacrifice Y2 Elmo
Move B3 Kermit Ts52
Move R1 Robin Ts52
	ts52: Oh, I see. Thanks. I'll try to do better. I should be able to keep up.

47) DodoBirb: Discover G1 Dodobirb Y3 Sun

48) ts52: Sacrifice G3 Ts52
Build G2 Elmo
Build G2 Elmo
Build G3 Ts52

49) DodoBirb: Move G1 Sun Elmo
Catastrophe Elmo G

50) ts52: Build B1 Ts52

51) DodoBirb: Discover Y1 Greeny G2 Medium

52) ts52: Build G1 Ts52

53) DodoBirb: Move Y1 Dodobirb Ts52

54) ts52: Attack Y1 Ts52

55) DodoBirb: Move Y1 Medium Ts52

56) ts52: Discover Y1 Ts52 Y2 Bigbird

57) DodoBirb: Build Y3 Dodobirb
	DodoBirb: I think this is Good game.
	DodoBirb: well, I didn't mean literally good game. You still have a few moves left.

58) ts52: Attack Y1 Ts52

59) DodoBirb: Move Y2 Dodobirb Greeny

60) ts52: Discover Y1 Ts52 B1 Gonzo
	DodoBirb: Oh, I didn't see that one.

61) DodoBirb: Move R2 Greeny Gonzo

62) ts52: Build B2 Ts52

63) DodoBirb: Attack Y1S Gonzo

64) ts52: Build B2 Robin

65) DodoBirb: Build G1 Dodobirb

66) ts52: Move G2 Ts52 Elmo

67) DodoBirb: Move G1 Dodobirb Greeny

68) ts52: Trade B2 R2 Robin

69) DodoBirb: Move G1 Greeny Gonzo

70) ts52: Sacrifice G3 Ts52
Build R1 Robin
Build R3 Ts52
Build G2 Elmo

71) DodoBirb: Move R2 Gonzo Bigbird

72) ts52: D Y1 Bigbird G3 Kermit

73) DodoBirb: Sacrifice G1 Gonzo
Build R3 Bigbird

74) ts52: Discover R1 Ts52 G2 Oscar

75) DodoBirb: Move R3 Bigbird Elmo

76) ts52: Sacrifice Y2 Elmo
Move B1 Ts52 Dodobirb
Move B2 Ts52 Dodobirb

77) DodoBirb: Attack B2S Dodobirb

78) ts52: S Y3 Robin
M B3 Ts52 Dodobirb
C Dodobirb Blue
M R2 Robin Dodobirb
M R1 Robin Dodobirb

79) DodoBirb: Attack G2S Elmo

80) ts52: M R3 Ts52 Dodobirb
C Dodobirb R

	ts52: Indeed . You had me on the ropes there for a while though. Good game.


34770)
Variants: "Unrated"
Started: 2019.1.19, Ended: 2019.1.24
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3
	wil: Thx this'll be interesting.

2) Trydnt: Homeworld R3 B2 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 Y1 Wil

6) Trydnt: Trade G1 Y1 Trydnt

7) wil: B G1 Wil

8) Trydnt: Build Y2 Trydnt

9) wil: B Y2 Wil

10) Trydnt: Build Y2 Trydnt

11) wil: D Y1 Wil G3 G3

12) Trydnt: Discover Y1 Trydnt G1 G1

13) wil: B Y3 G3

14) Trydnt: Build Y3 G1

15) wil: D G1 Wil Y3 Y3

16) Trydnt: Trade Y2 R2 Trydnt

17) wil: T Y2 R2 Wil

18) Trydnt: Build Y2 Trydnt

19) wil: B G1 Wil

20) Trydnt: Sacrifice Y2 Trydnt
Move R2 Trydnt G1
Move R2 G1 Y3

21) wil: D G1 Y3 Y2 Y2

22) Trydnt: Build Y2 Trydnt

23) wil: T G1 B1 Wil

24) Trydnt: Trade Y2 B2 Trydnt

25) wil: M B1 Wil G3

26) Trydnt: Move B2 Trydnt G1

27) wil: D Y1 G3 G1 Gwon

28) Trydnt: Build Y2 Trydnt

29) wil: S G1 Y2
B Y2 G3

30) Trydnt: Build B1 G1

31) wil: B R1 Wil

32) Trydnt: Discover Y2 Trydnt G1 G11

33) wil: B G2 Wil

34) Trydnt: Build G2 Trydnt

35) wil: D Y2 G3 B1 B1

36) Trydnt: Trade B1 R1 G1

37) wil: M R1 Wil G3

38) Trydnt: Move Y2 Trydnt Gwon

39) wil: D Y1 Gwon B3 B3

40) Trydnt: Move Y2 Gwon B3

41) wil: D Y1 B3 B1 Be1

42) Trydnt: Build B3 G1

43) wil: B B3 G3

44) Trydnt: Move B3 G1 Y3

45) wil: T B1 G1 G3

46) Trydnt: Build B1 G1

47) wil: M G1 G3 B1

48) Trydnt: Discover Y2 G11 R2 R2

49) wil: B G1 B1

50) Trydnt: Sacrifice G2 Trydnt
Build R1 G1
Build R3 Y3

51) wil: B R3 G3

52) Trydnt: Move R3 Y3 B1

53) wil: D Y2 B1 G2 G2

54) Trydnt: Attack G1 B1

55) wil: M G2 Wil G3

56) Trydnt: Build G2 B1

57) wil: M Y2 G2 Be1

58) Trydnt: Sacrifice Y2 B3
Move G1 B1 G3
Move G2 B1 G3
Catastrophe G3 G

59) wil: S G1 B1
Build G1 Wil

60) Trydnt: Build B3 G1

61) wil: B G1 Wil

62) Trydnt: Build G2 Trydnt

63) wil: D G1 Wil Y3 Why3
	wil: S g1 b1 b b1 wil

64) Trydnt: Move B3 G1 Why3

65) wil: B G2 Why3

66) Trydnt: Sacrifice R2 Y3
Attack G1 Why3
Attack G2 Why3

67) wil: T Y2 G2 Be1

68) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Trydnt
Build B3 Why3

69) wil: M G2 Be1 Trydnt
C Trydnt G

	wil: A gift for the old man?
	Trydnt: goddamit I did not see that coming
	wil: Is The only way I can beat you
	wil: Capitalizing on your mistakes


34834)
Variants: "Unrated, Hard time"
Started: 2019.1.19, Ended: 2019.1.25
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) wil: H Y3 B1 G3

3) Trydnt: Build G1 Trydnt
	wil: Playing against my fav opening
	Trydnt: haha I learned from the best

4) wil: B G1 Wil

5) Trydnt: Trade G1 B1 Trydnt

6) wil: T G1 B1 Wil

7) Trydnt: Build B2 Trydnt

8) wil: B B2 Wil

9) Trydnt: Discover B2 Trydnt G3 G3

10) wil: T B1 Y1 Wil

11) Trydnt: Discover B1 Trydnt Y3 Y3

12) wil: D B2 Wil G2 G2

13) Trydnt: Build G1 Trydnt

14) wil: B Y1 Wil

15) Trydnt: Trade B2 Y2 G3

16) wil: M Y1 Wil G2

17) Trydnt: Build Y2 G3

18) wil: B G1 Wil

19) Trydnt: Discover Y2 G3 G2 G22

20) wil: T G1 R1 Wil

21) Trydnt: Trade G1 R1 Trydnt

22) wil: B B1 G2

23) Trydnt: Build G1 Trydnt

24) wil: T B2 R2 G2

25) Trydnt: Sacrifice G1 Trydnt
Build B2 Y3

26) wil: B G1 Wil

27) Trydnt: Build G1 Trydnt

28) wil: B B2 G2

29) Trydnt: Move B1 Y3 G22

30) wil: M B2 G2 Y3

31) Trydnt: Build B3 G22

32) wil: B B3 G2

33) Trydnt: Move B3 G22 G3

34) wil: T B3 Y3 G2

35) Trydnt: Build B3 G22

36) wil: B B3 G2

37) Trydnt: Trade B3 R3 G22

38) wil: T B3 R3 G2

39) Trydnt: Build B3 G22

40) wil: B B3 G2

41) Trydnt: Move R3 G22 Y3

42) wil: D B2 Y3 Y2 Y2

43) Trydnt: Move G1 Trydnt Y3

44) wil: B R1 Wil

45) Trydnt: Build R2 Trydnt

46) wil: D Y3 G2 R3 R3

47) Trydnt: Build G1 Trydnt

48) wil: M G1 Wil Y2

49) Trydnt: Sacrifice G3 Trydnt
Build G2 Y3
Build G3 Trydnt
Build R2 Y3

50) wil: M B2 Y2 Y3

51) Trydnt: Attack B2 Y3

52) wil: S G1 Y2
B Y2 G2

53) Trydnt: Build G1 Y3

54) wil: M B1 G2 R3

55) Trydnt: Move R2 Y3 G22

56) wil: P

57) Trydnt: Move G1 Y3 G2

58) wil: S Y3 R3
D B3 G2 Y3 Why3
M R3 G2 Why3
M Y2 G2 Why3

59) Trydnt: Move B3 G3 G2

60) wil: M R2 G2 Why3

61) Trydnt: Sacrifice R1 Trydnt
Attack Y1 G2

62) wil: P

63) Trydnt: Sacrifice Y2 G3
Move Y1 G2 Why3
Move Y2 G22 Why3
Catastrophe Why3 Y

64) wil: B G3 Wil

65) Trydnt: Sacrifice B2 Y3
Trade B3 Y3 G22
Trade G1 Y1 G2

66) wil: D G3 Wil Y2 Y2

67) Trydnt: Sacrifice G2 Y3
Build Y2 G2
Build Y2 G22

68) wil: M R1 Wil Y2

69) Trydnt: Sacrifice Y2 G22
Move Y1 G2 Wil
Move Y2 G2 Wil
Catastrophe Wil Y



34902)
Variants: "Unrated, Hard time"
Started: 2019.1.19, Ended: 2019.1.22
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H Y1 B1 G3 *

2) Trydnt: Homeworld B2 G2 Y3 *

3) wil: B G1 Wil

4) Trydnt: Build Y1 Trydnt

5) wil: B G1 Wil

6) Trydnt: Build Y1 Trydnt

7) wil: D G1 Wil Y3 Y3

8) Trydnt: Discover Y1 Trydnt G3 G3

9) wil: B G1 Y3

10) Trydnt: Build Y2 G3

11) wil: D G1 Y3 B1 B1

12) Trydnt: Build Y2 Trydnt

13) wil: S G3 Wil
B G2 B1
B G2 Y3
B G3 Wil

14) Trydnt: Build Y2 G3

15) wil: B G3 B1

16) Trydnt: Move Y1 G3 Wil

17) wil: T G3 Y3 B1

18) Trydnt: Move Y1 Trydnt Wil

19) wil: T G2 R2 B1

20) Trydnt: Trade Y2 R2 Trydnt

21) wil: B Y2 B1

22) Trydnt: Build R1 Trydnt

23) wil: S G3 Wil
B G2 Wil
B G3 B1
B G3 Wil

24) Trydnt: Trade R1 B1 Trydnt

25) wil: T G3 B3 B1

26) Trydnt: Build R1 Trydnt

27) wil: B G3 B1

28) Trydnt: Move Y2 G3 B1

29) wil: A Y2 B1

30) Trydnt: Move Y2 G3 B1
Catastrophe B1 Y

31) wil: T G3 Y3 B1

32) Trydnt: Build Y2 Trydnt

33) wil: S G3 Wil
B G3 Wil
B G3 B1
B G3 Y3

34) Trydnt: Move B1 Trydnt Wil

35) wil: S B3 B1
T G3 R3 Y3
T G3 R3 Wil
P

36) Trydnt: Trade Y3 B3 Trydnt

37) wil: S R3 Y3
A Y1 Wil
A Y1 Wil
A B1 Wil

38) Trydnt: Move Y2 Trydnt Wil
Catastrophe Wil Y

39) wil: S G3 B1
B G3 B1
B G3 Y3
B G3 Wil

40) Trydnt: Trade R2 Y2 Trydnt

41) wil: S Y3 B1
M G3 B1 Trydnt
M G3 Y3 Trydnt
M B1 Wil Trydnt

42) Trydnt: Attack G3 Trydnt

43) wil: S G2 Y3
B G2 Trydnt
B B2 Trydnt
C Trydnt B
C Trydnt G

	wil: Def,different
	Trydnt: yup not sure how I feel about these games lol
	wil: You are fighting an untested neuonetwork


34851)
Started: 2019.1.19, Ended: 2019.3.27
Participants: Trydnt (S), dragon76n (N)
Winner: Trydnt

1) dragon76n: Homeworld B1 Y2 G3

2) Trydnt: Homeworld G2 B1 B3 *

3) dragon76n: Build G1 Dragon76n

4) Trydnt: Build B1 Trydnt

5) dragon76n: T G1 Y1 Dragon76n

6) Trydnt: Trade B3 Y3 Trydnt

7) dragon76n: B G1 Dragon76n

8) Trydnt: Build B2 Trydnt

9) dragon76n: Trade G3 B3 Dragon76n

10) Trydnt: Discover B2 Trydnt Y3 Y3

11) dragon76n: Build G1 Dragon76n

12) Trydnt: Build B2 Trydnt

13) dragon76n: Trade G1 R1 Dragon76n

14) Trydnt: Trade B1 R1 Trydnt

15) dragon76n: B G1 Dragon76n

16) Trydnt: Build Y1 Trydnt

17) dragon76n: D G1 Dragon76n Y3 Yelthr

18) Trydnt: Move B2 Trydnt Yelthr

19) dragon76n: Trade B3 G3 Dragon76n

20) Trydnt: Sacrifice R1 Trydnt
Attack G1 Yelthr

21) dragon76n: Trade G1 B1 Dragon76n

22) Trydnt: Build B2 Yelthr

23) dragon76n: Discover B1 Dragon76n G3 Grethr

24) Trydnt: Trade B2 R2 Yelthr

25) dragon76n: Build B2 Grethr

26) Trydnt: Build B3 Yelthr

27) dragon76n: Build B3 Grethr

28) Trydnt: Build B3 Yelthr

29) dragon76n: Trade B1 R1 Grethr

30) Trydnt: Sacrifice B2 Y3
Trade B3 Y3 Yelthr
Trade B3 G3 Yelthr

31) dragon76n: Trade B2 Y2 Grethr

32) Trydnt: Discover Y3 Yelthr G2 G2

33) dragon76n: Move R1 Grethr Trydnt

34) Trydnt: Sacrifice R2 Yelthr
Attack R1 Trydnt
Pass

35) dragon76n: B Y1 Grethr

36) Trydnt: Build Y2 G2

37) dragon76n: Trade Y1 R1 Grethr

38) Trydnt: Build R2 Trydnt

39) dragon76n: Build R2 Grethr

40) Trydnt: Discover Y2 G2 B3 B3

41) dragon76n: M R1 Grethr Trydnt

42) Trydnt: Sacrifice R1 Trydnt
Attack R1 Trydnt

43) dragon76n: B Y1 Grethr

44) Trydnt: Sacrifice Y3 G2
Move Y2 B3 Dragon76n
Move Y1 Trydnt Grethr
Move Y1 Grethr Dragon76n
Catastrophe Dragon76n Y

45) dragon76n: Trade B3 Y3 Grethr

46) Trydnt: Sacrifice G3 Yelthr
Build B1 Yelthr
Build B2 Yelthr
Build G1 Yelthr

47) dragon76n: Sacrifice Y3 Grethr
Move Y2 Grethr Trydnt
Move Y1 Grethr Trydnt
Move G3 Dragon76n Yelthr

48) Trydnt: Sacrifice Y3 Trydnt
Move B1 Yelthr Dragon76n
Move B2 Yelthr Dragon76n
Move B2 Yelthr Dragon76n
Catastrophe Dragon76n B



34816)
Variants: "Hard time"
Started: 2019.1.20, Ended: 2019.1.24
Participants: Simon (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	Simon: Have fun!

2) Simon: Homeworld G1 R3 B3

3) Trydnt: Build G1 Trydnt

4) Simon: Build B1 Simon

5) Trydnt: Build G1 Trydnt

6) Simon: Build B1 Simon

7) Trydnt: Discover G1 Trydnt B3 B3

8) Simon: Trade B3 Y3 Simon

9) Trydnt: Build G2 B3

10) Simon: Build B1 Simon

11) Trydnt: Trade G2 Y2 B3

12) Simon: Discover B1 Simon G2 G2

13) Trydnt: Build G2 B3

14) Simon: Build B2 G2

15) Trydnt: Sacrifice G3 Trydnt
Build G2 Trydnt
Build G3 Trydnt
Build G3 B3

16) Simon: Discover B1 Simon B2 B2

17) Trydnt: Trade G3 R3 B3

18) Simon: Build B3 Simon

19) Trydnt: Discover G2 Trydnt B3 Be3

20) Simon: Trade B3 G3 Simon

21) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Be3
Build Y1 B3

22) Simon: Build B3 G2

23) Trydnt: Move R3 B3 G2

24) Simon: Sacrifice B2 G2
Trade B1 R1 G2
Trade B3 R3 G2

25) Trydnt: Attack R3 G2

26) Simon: Build R1 G2
Catastrophe G2 Red

27) Trydnt: Trade G3 Y3 Be3

28) Simon: Move G3 Simon B2

29) Trydnt: Sacrifice G3 Trydnt
Build G2 Be3
Build G3 Trydnt
Build G3 B3

	Simon: gg


34847)
Variants: "Hard time"
Started: 2019.1.20, Ended: 2019.1.22
Participants: wil (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G1 R3 B3

2) wil: H B2 Y1 G3
	wil: Oh cool, thx!

3) Simon: Build B1 Simon

4) wil: B G1 Wil
	Simon: Yep yep, more Homeworlds

5) Simon: Trade B1 Y1 Simon

6) wil: T G1 Y1 Wil

7) Simon: Build Y2 Simon

8) wil: B Y2 Wil

9) Simon: Discover Y1 Simon G2 G2

10) wil: D Y1 Wil G3 G3

11) Simon: Build B1 Simon

12) wil: B G1 Wil

13) Simon: Trade B3 G3 Simon

14) wil: T G1 R1 Wil

15) Simon: Build Y2 G2

16) wil: B Y3 G3

17) Simon: Discover Y1 G2 R3 R3

18) wil: M Y3 G3 G2

19) Simon: Sacrifice G3 Simon
Build Y3 R3
Build Y3 Simon
Build B1 Simon

20) wil: B R1 Wil

21) Simon: Discover Y2 G2 B1 B1

22) wil: B G1 Wil

23) Simon: Build B2 Simon

24) wil: T Y2 B2 Wil

25) Simon: Sacrifice B1 Simon
Trade Y1 G1 R3

26) wil: D B2 Wil G3 Gee3

27) Simon: Build G2 R3

28) wil: M G1 Wil G3

29) Simon: Discover B1 Simon Y2 Y2

30) wil: B R1 Wil

31) Simon: Sacrifice G2 R3
Build B1 Simon
Build B3 Y2

32) wil: B B3 Gee3

33) Simon: Trade B3 R3 Y2

34) wil: S Y1 G3
M B2 Gee3 G2

35) Simon: Build G2 R3

36) wil: B Y1 G2

37) Simon: Sacrifice G2 R3
Build G2 R3
Build B3 Y2

38) wil: B B3 G2

39) Simon: Sacrifice Y3 Simon
Move B3 Y2 R3
Move B3 R3 Wil
Move Y3 R3 Wil

40) wil: S Y3 G2
M B3 Gee3 G2
M B3 G2 Simon
M B2 G2 Simon
C Simon B

41) Simon: Sacrifice R3 Y2
Attack G3 Wil
Attack R1 Wil
Attack R1 Wil

42) wil: M B3 G2 Simon
	wil: Nice move, didn't see it coming

43) Simon: Attack R1 Wil

	wil: Gg
	Simon: gg
	Simon: I'll be super busy IRL the next few weeks, thus I won't re-challenge immediately.
	wil: No worries Thx for the game.


34761)
Variants: "Hard time"
Started: 2019.1.20, Ended: 2019.1.20
Participants: Trydnt (S), Mathematician42 (N)
Winner: Trydnt

1) Mathematician42: Homeworld R3 B2 G3
	Mathematician42: how do I use this? I'm new to super duper games




34901)
Variants: "Unrated"
Started: 2019.1.20, Ended: 2019.1.21
Participants: wil (S), Mathematician42 (N)
Winner: wil

1) Mathematician42: Homeworld R3 B1 G3
	Mathematician42: Hi! I'm new to Super Duper Games and homeworlds
	Mathematician42: Hello?

2) wil: H B2 Y1 G3
	Mathematician42: Just doing something that seems good lol

	wil: Try #2!

3) Mathematician42: Build G1 Mathematician42
	Mathematician42: now I can do an action?
	Mathematician42: Is moving a valid action, or do I need yellow?

4) wil: B G1 Wil
	wil: Yeah, you can't move without a yellow

5) Mathematician42: Trade G1 B1 Mathematician42
	Mathematician42: Is there anything you'd recommend?

6) wil: T G1 B1 Wil

7) Mathematician42: Build B2 Mathematician42
	wil: The beginning is all building

8) wil: B B2 Wil
	Mathematician42: That moment when you can't even spell your username
	Mathematician42: XD
	wil: Build ships, stars, bigger ships.  
	wil: The bane of a big name

9) Mathematician42: Trade B2 Y2 Mathematician42

10) wil: D B1 Wil G3 G3
	Mathematician42: Are you familiar with the VASSAL engine?

11) Mathematician42: Trade B1 R1 Mathematician42
	wil: No not at all, is he there?
	Mathematician42: It's a module for want of a better world where you can download modules to play board games in real time.

12) wil: B B1 Wil
	wil: Yeah, I looked, is thre an hw  module?

13) Mathematician42: Build R1 Mathematician42
	Mathematician42: no
	Mathematician42: no
	Mathematician42: IDK how to make one

14) wil: D B2 Wil Y3 Y3
	Mathematician42: Is pyramid arcade worth the $74?
	Draw5PlayAll: I looked at the vassal thing... seems old and outdated, forum seems to have little that is 2018/2019.
	Draw5PlayAll: As for Arcade, it really depends.
	wil: I play a lot of pyramid games..Yes4me
	wil: In 5.hw  games right now
	Mathematician42: Is it possible to play Zendo with Pyramid Arcade?

15) Mathematician42: Discover R1 Mathematician42 R2 R2
	Mathematician42: @Draw5PlayAll: VASSAL is great for X-wing Miniatures. In fact, they had an update not so long ago
	Mathematician42: To be fair SDG looks old and outdated

16) wil: S G3 Wil
B B2 G3
B B3 Y3
B B3 Wil
	Draw5PlayAll: Zendo with Arcade: Not without squirming a bit. Zendo is only good when you have several of each piece to pick from, otherwise supply limits become a problem.
	Mathematician42: I see. What if I already have two old treehouse sets where one is missing the blue trio?
	Draw5PlayAll: That is fine, since you get 5 trios of red, green, yellow, and black. Now you just need 20-40 chips each of three colors.
	Mathematician42: Great! Thanks for the info
	Draw5PlayAll: You also get Blam, Icehouse, and a few other interesting games with 5 trees of each color. The Arcade booklet has some games listed in the back that require 15 pieces of a given color
	Mathematician42: Awesome! As a 14 year old with a dad who is a board game enthusiast, we have a lot of games and not much space to store them which means we might not be able to get it. lol
	wil: Sdg is old and out dated, we will play
	Mathematician42: @D5PA: I have challenged you to a game of Martian Chess

17) Mathematician42: Build R1 Mathematician42

18) wil: B B3 G3
	Mathematician42: I honestly have no idea what I'm doing.
	wil: You will start to understand around 10g

19) Mathematician42: Trade R1 G1 Mathematician42
	wil: This is a blue freeze out always defend 

20) wil: D B2 Y3 Y2 Y2
	Mathematician42: oops
	Mathematician42: I forgot you could do that

21) Mathematician42: Sacrifice G3 Mathematician42
Build R1 R2
Build R2 R2
Build R2 Mathematician42

22) wil: T B3 R3 G3
C R2 R
	wil: Read on catastrophe overpopulation

23) Mathematician42: Move R2 Mathematician42 Y2
	Mathematician42: I wasn't thinking lol

	wil: Lol.good
	Mathematician42: well you can still call catastrophe 

24) wil: D B2 Y2 Y3 Why3
	wil: Don't wanna lose your Queen ship 2nd lesson 

25) Mathematician42: Move R2 Y2 Why3
	Mathematician42: what queen ship?

	wil: 3s are queens
	Mathematician42: oh right. Martian coasters jargon

26) wil: D B2 Why3 R2 R2

27) Mathematician42: Move R2 Why3 Wil

28) wil: M B1 Wil Y3

29) Mathematician42: Move R2 Wil Y3

30) wil: M B1 Y3 R2
	Mathematician42: I think I know how you'll win

31) Mathematician42: Move R2 Y3 Wil

32) wil: B B3 G3
	wil: You are gonna be good

	wil: I like the way you think
	Mathematician42: Thanks
	Mathematician42: Thanks
	Mathematician42: What do you like about the way I think?

33) Mathematician42: Build R1 Mathematician42

34) wil: B R1 G3
	wil: Outta the box unconventional
	wil: You play like a guy I taught, good player
	Mathematician42: I see

35) Mathematician42: Discover R1 Mathematician42 Y2 Stardust

36) wil: S R1 G3
A R2 Wil

37) Mathematician42: Trade G1 R1 Mathematician42

38) wil: T B3 Y3 G3

39) Mathematician42: Trade Y2 G2 Mathematician42

40) wil: M B3 Y3 Stardust

41) Mathematician42: Trade R1 Y1 Mathematician42

42) wil: M B3 Stardust Mathematician42

43) Mathematician42: Discover R1 Mathematician42 R2 Ar2
	Mathematician42: why can't I do
"sacrifice g2 mathematician42
build r2 wil
build r3 wil"
	Mathematician42: nevermind

44) wil: S R2 Wil
A G2 Mathematician42
A Y1 Mathematician42

	Mathematician42: Where are you located?
	wil: DC area
	wil: Gg, so long and thanx for all the fish
	wil: I am in half a dozen games, challenge me
	wil: Get on the ladder challenge a lot of us
	wil: I think ur gonna beat me soon 


34903)
Variants: "Unrated, Hard time"
Started: 2019.1.20, Ended: 2019.1.20
Participants: Mathematician42 (S), wil (N)
Winner: wil

	wil: Gl, thx  4 the game!
	Mathematician42: oops

	Mathematician42: oops

	Mathematician42: still trying to figure this out lol
	wil: Oops!  So h star1 star2 ship
	wil: One line each


34909)
Variants: "Hard time"
Started: 2019.1.21, Ended: 2019.3.1
Participants: wil (S), DodoBirb (N)
Winner: wil

1) DodoBirb: Homeworld B1 R2 G3
	DodoBirb: This is a tournament game just so you know.

2) wil: H B2 Y3 G3
	wil: Cool n thx

3) DodoBirb: Build G1 Dodobirb

4) wil: B G1 Wil

5) DodoBirb: Trade G1 B1 Dodobirb

6) wil: T G1 B1 Wil

7) DodoBirb: Build G1 Dodobirb

8) wil: B B2 Wil

9) DodoBirb: Trade G1 Y1 Dodobirb

10) wil: T B1 Y1 Wil

11) DodoBirb: Build B1 Dodobirb

12) wil: B B2 Wil

13) DodoBirb: Discover B1 Dodobirb G3 Greeny

14) wil: D B2 Wil G1 G1

15) DodoBirb: Build B3 Greeny

16) wil: B B3 G1

17) DodoBirb: Build B3 Dodobirb

18) wil: T B3 Y3 G1

19) DodoBirb: Discover B3 Dodobirb Y3 Warpgate

20) wil: B B3 G1

21) DodoBirb: Build G1 Dodobirb

22) wil: T B2 R2 G1

23) DodoBirb: Trade B1 R1 Dodobirb

24) wil: B R1 G1

25) DodoBirb: Trade B1 R1 Greeny

26) wil: B B1 Wil

27) DodoBirb: Move G1 Dodobirb Warpgate

28) wil: M R1 G1 Wil

29) DodoBirb: Move R1 Dodobirb Warpgate

30) wil: T B2 Y2 Wil

31) DodoBirb: Build Y1 Dodobirb

32) wil: B Y2 G1

33) DodoBirb: Move Y1 Dodobirb Greeny

34) wil: D Y1 Wil G1 Gone

35) DodoBirb: Build Y2 Greeny

36) wil: T Y2 B2 G1

37) DodoBirb: Build Y2 Dodobirb

38) wil: D B3 G1 R3 R3

39) DodoBirb: Discover Y2 Greeny B1 Bluey

40) wil: B G2 Wil

41) DodoBirb: Build G2 Warpgate

42) wil: B B2 G1

43) DodoBirb: Build G2 Dodobirb

44) wil: S G3 Wil
B G3 Wil
B R2 G1
B R3 Wil

45) DodoBirb: Build R3 Greeny

46) wil: M R3 Wil Bluey

47) DodoBirb: Move Y2 Bluey Wil

48) wil: M Y2 Wil Bluey

49) DodoBirb: Move Y2 Wil Gone

50) wil: M Y1 Gone R3

51) DodoBirb: Move R3 Greeny Gone

52) wil: M B2 G1 R3

53) DodoBirb: Move G1 Warpgate Gone

54) wil: M G2 Wil Bluey

55) DodoBirb: Move Y1 Dodobirb Greeny

56) wil: M B2 R3 Dodobirb

57) DodoBirb: Attack B2S Dodobirb

58) wil: M B3 R3 Dodobirb

59) DodoBirb: Attack B3S Dodobirb

60) wil: S Y3 G1
M B2 G1 R3
M B2 R3 Dodobirb
C Dodobirb B
M R3 Bluey Dodobirb

61) DodoBirb: Attack R3S Dodobirb

62) wil: S Y2 Bluey
M R2 G1 Dodobirb
M R2 G1 Dodobirb
C Dodobirb R

	wil: Challenge anytime


34906)
Variants: "Unrated"
Started: 2019.1.21, Ended: 2019.1.25
Participants: wil (S), Mathematician42 (N)
Winner: wil

1) Mathematician42: Homeworld R2 G1 B3

2) wil: H Y3 B2 G3
	Mathematician42: HI again!

3) Mathematician42: Build B1 Mathematician42

4) wil: B G1 Wil

5) Mathematician42: Build B1 Mathematician42
	Mathematician42: LOL! I can't play this at school (not even during lunch!) because of "prohibited games content".

6) wil: B G1 Wil

7) Mathematician42: Trade B3 G3 Mathematician42

8) wil: D G1 Wil Y1 Y1
	wil: But this is a space force

9) Mathematician42: Trade B1 Y1 Mathematician42

10) wil: B G2 Wil
	wil: Nice choice
	Mathematician42: Thanks
	Mathematician42: Thanks
	Mathematician42: Thanks
	Mathematician42: Thanks
	Mathematician42: Oops

11) Mathematician42: Discover B1 Mathematician42 Y3 Y3

12) wil: D G2 Wil B1 B1

13) Mathematician42: Build G2 Mathematician42

14) wil: S G3 Wil
B G2 Y1
B G3 B1
B G3 Wil

15) Mathematician42: Sacrifice G2 Mathematician42
Build Y1 Mathematician42
Build Y2 Mathematician42

16) wil: T G3 Y3 B1
	Mathematician42: AAAAAAAAAHHHHH!!!! You froze the green economy

17) Mathematician42: Move Y2 Mathematician42 Y3
	Mathematician42: Was sacrificing the G2 a bad move?
	Draw5PlayAll: It all depends...

18) wil: S G3 Wil
B G2 Wil
B G3 Wil
B G3 B1

19) Mathematician42: Move G3 Mathematician42 Y3

20) wil: T G3 R3 Wil

21) Mathematician42: Build G3 Y3

22) wil: S Y3 B1
M G1 Y1 Y3
M G2 Y1 Y3
C Y3 G
M G3 B1 Y3
	wil: Another queen left home? I am failing!
	Mathematician42: Not sure if I understand...

23) Mathematician42: Move B1 Y3 Mathematician42
	wil: Never leave hw unguarded w/o plan to end game

24) wil: T G2 R2 Wil

25) Mathematician42: Build B1 Mathematician42

26) wil: B G1 Y3

27) Mathematician42: Build B2 Mathematician42

28) wil: M G3 Y3 Mathematician42

29) Mathematician42: Build B2 Mathematician42

30) wil: S R2 Wil
A Y1 Mathematician42
A Y1 Mathematician42
C Mathematician42 B



34913)
Variants: "Unrated"
Started: 2019.1.21, Ended: 2019.1.29
Participants: Mathematician42 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	Mathematician42: Lol. Hope you don't mind playing two games against me at once.
	wil: Let's do this

2) Mathematician42: Homeworld Y3 B2 G3

3) wil: B G1 Wil

4) Mathematician42: Build G1 Mathematician42

5) wil: T G1 B1 Wil

6) Mathematician42: Trade G1 B1 Mathematician42

7) wil: B B2 Wil

8) Mathematician42: Build B2 Mathematician42
	wil: Keeping opponent from getting larger size
	wil: Especially red
	wil: Try to get every color they get

9) wil: T B2 G2 Wil
	wil: Follow the leader is a good way to learn
	Mathematician42: interesting... Thanks for the tip

10) Mathematician42: Build B2 Mathematician42

11) wil: B B3 Wil

12) Mathematician42: Trade B2 R2 Mathematician42
	wil: Ya let me get a 3
	wil: And I should have catastrphied ya
	Mathematician42: oh yeah

13) wil: T B1 R1 Wil

14) Mathematician42: Build R1 Mathematician42

15) wil: B G1 Wil

16) Mathematician42: Build G1 Mathematician42

17) wil: T G1 Y1 Wil

18) Mathematician42: Discover R2 Mathematician42 Y1 Y1

19) wil: B Y1 Wil

20) Mathematician42: Move G3 Mathematician42 Y1

21) wil: D G3 Wil Y3 Y3

22) Mathematician42: Trade B2 R2 Mathematician42
	wil: Ya left your homeworld unguarded

23) wil: D Y1 Wil G3 G3

24) Mathematician42: Move G3 Y1 Mathematician42

25) wil: B Y2 Wil

26) Mathematician42: Trade R2 G2 Mathematician42
	wil: Worse than sending your king out early

27) wil: S Y2 Wil
M G3 Y3 Y1
M G3 Y1 Mathematician42
C Mathematician42 G
	Mathematician42: You should join AnalogKid, DiEvAI, and me for a game of Zendo?
	Mathematician42: *Would you like
	Mathematician42: **Would you like to (lol, usually I can get it right the first time)
	wil: Zendo ain't my thing

28) Mathematician42: Trade R1 G1 Mathematician42

29) wil: B Y2 G3

30) Mathematician42: Build B1 Mathematician42

31) wil: S G2 Wil
B Y2 Wil
B Y3 G3

32) Mathematician42: Build G1 Mathematician42
	Mathematician42: You froze out the Yello Economy
	Mathematician42: *yellow

33) wil: S Y2 G3
M Y3 G3 Y1
M Y3 Y1 Mathematician42
	Mathematician42: Once my dad orders Pyramid Arcade I'll be able to practice homeworlds against him!

34) Mathematician42: Build G1 Mathematician42

35) wil: B Y2 G3

36) Mathematician42: Move G1 Mathematician42 Y1

37) wil: B Y3 G3

38) Mathematician42: Move R2 Y1 G3

39) wil: S R1 Wil
A R2 G3

40) Mathematician42: Build G2 Mathematician42

41) wil: S R2 G3
A B1 Mathematician42
A G2 Mathematician42
	wil: Thank you for the nice new ship.
	wil: It is bigger than my trade-in
	Mathematician42: I forgot about your r1
	Mathematician42: I forgot about your r1
	Mathematician42: I think I know what you should do next


42) Mathematician42: Build G2 Mathematician42
Catastrophe Mathematician42 G

43) wil: T B3 R3 Wil

44) Mathematician42: Build G1 Y1

45) wil: S R3 Wil
A B1 Mathematician42
P
P

	wil: 


34784)
Variants: "Unrated"
Started: 2019.1.21, Ended: 2019.1.24
Participants: Mathematician42 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Mathematician42: Homeworld B1 R3 G3

3) Trydnt: Build G1 Trydnt

4) Mathematician42: Build G1 Mathematician42

5) Trydnt: Trade G1 B1 Trydnt
	Mathematician42: LOL! I can't play this at school (not even during lunch!) because of "prohibited games content".

6) Mathematician42: Trade G1 B1 Mathematician42

7) Trydnt: Build B2 Trydnt

8) Mathematician42: Build B2 Mathematician42

9) Trydnt: Discover B1 Trydnt G3 G3

10) Mathematician42: Build B3 Mathematician42

11) Trydnt: Build B3 G3
Catastrophe Mathematician42 B

12) Mathematician42: Build G1 Mathematician42
	Mathematician42: oh

	Mathematician42: I'm pretty much screwed here.... right?
	Trydnt: you can't have more than 3 of a color in the same place or they are destroyed via catastrophe
	Trydnt: check out Looney Labs youtube tutorial on the game
	Trydnt: on youtube
	Mathematician42: I know. I always forget that rule
	Trydnt: it's probably the most important rule of the game as it's how most good games end with catastrophe on both halves of your opponent's homeworld. winning via attack or wiping out your opponents ships at home does happen but less often


34905)
Variants: "Hard time"
Started: 2019.1.23, Ended: 2019.1.26
Participants: Thorolf (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

	wil: Gl


34928)
Variants: "Hard time"
Started: 2019.1.24, Ended: 2019.2.11
Participants: ajo (S), deanthebean (N)
Winner: ajo

1) deanthebean: Homeworld B2 R3 G3
	deanthebean: Hello. Thanks for accepting the challenge. Have fun!

2) ajo: Homeworld R3 B2 G3

3) deanthebean: Build G1 Deanthebean
	ajo: You too. :)

4) ajo: Build G1 Ajo
	deanthebean: Thanks!

5) deanthebean: Trade G3 Y3 Deanthebean

6) ajo: Trade G3 Y3 Ajo

7) deanthebean: Build Y1 Deanthebean

8) ajo: Build Y1 Ajo

9) deanthebean: Discover Y1 Deanthebean G1 Newstar

10) ajo: Build G2 Ajo

11) deanthebean: Build G2 Deanthebean

12) ajo: Discover G2 Ajo B1 Alpha

13) deanthebean: Discover G2 Deanthebean Y1 Ipo

14) ajo: Move Y1 Ajo Alpha

15) deanthebean: Build Y2 Deanthebean

16) ajo: Build Y2 Alpha

17) deanthebean: Trade Y2 R2 Deanthebean

18) ajo: Trade Y2 R2 Alpha

19) deanthebean: Build Y2 Deanthebean

20) ajo: Build Y2 Alpha

21) deanthebean: Build G2 Ipo

22) ajo: Build G3 Ajo

23) deanthebean: Discover Y2 Deanthebean B1 Venus

24) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Alpha
Build R1 Alpha

25) deanthebean: Build G3 Deanthebean

26) ajo: Discover G1 Ajo B1 Beta
	deanthebean: build g3 deanthebean

27) deanthebean: Sacrifice G3 Deanthebean
Build G3 Deanthebean
Build Y2 Newstar
Build Y3 Venus

28) ajo: Sacrifice Y2 Alpha
Move R1 Alpha Deanthebean
Move R2 Alpha Deanthebean
Catastrophe Deanthebean Red

29) deanthebean: Build Y2 Deanthebean

30) ajo: Trade G2 B2 Alpha

31) deanthebean: Build G2 Ipo

32) ajo: Move B2 Alpha Deanthebean

	ajo: Checkmate, I think. :)
	Draw5PlayAll: How?
	Draw5PlayAll: (if the game does not end next move please send response via private message)
	deanthebean: Well played ajo! @Draw5PlayAll: ajo's plan is to sacrifice one of their g3s to build 2 fleets in deanthebean and thereby send it supernova. I couldn't find a defence. Can you?  
	Draw5PlayAll: sac Y3 Venus
d G2 ipo B3 Denial1
d G2 ipo B3 Denial2
d G2 ipo B3 Denial3
	Draw5PlayAll: (I did not see the green sac at first, but when you said the plan I immediately thought of discovering all the blues)
	ajo: Hmm, true, I didn't see that, and it would have worked... at least as a delaying tactic. And maybe it would have forced me to retreat, since the focus would then shift to red. Well, I'm glad neither of us saw it! ;)
	deanthebean: Yeah. Nice spot! Shame I didn't see it because it would have kept the game interesting though I'm probably losing in any case. 


34915)
Variants: "Unrated"
Started: 2019.1.24, Ended: 2019.2.6
Participants: Trydnt (S), Mathematician42 (N)
Winner: Trydnt

1) Mathematician42: Homeworld B2 R1 G3

2) Trydnt: Homeworld B3 Y2 G3

3) Mathematician42: Build G1 Mathematician42

4) Trydnt: Build G1 Trydnt

5) Mathematician42: Trade G1 B1 Mathematician42

6) Trydnt: Trade G1 R1 Trydnt

7) Mathematician42: Trade B1 R1 Mathematician42

8) Trydnt: Build R2 Trydnt
	Trydnt: it's important to note what color the small star is (R1 on your star in this case) as this will create a limiting factor in that color (only two of the smalls left in the bank). You pretty much have to trade for that one first as if you don't then your opponent will trade for it and if you fail to do it on the next turn (you should trade for red now) you'll be locked out of the red pieces and never get a chance to get them before I get to the bigger ones and start trading those for other big yellows and blues and stuff
	Trydnt: trading your b1 for an r1 is the only move that will stop me from getting into the big ones and likely winning but it puts you a move behind so it's always a good idea to trade for the color of the smallest piece first if you go first even if it's the color of your star
	Mathematician42: Interesting
	Mathematician42: Interesting
	Mathematician42: Interesting

9) Mathematician42: Build R2 Mathematician42

10) Trydnt: Build R2 Trydnt

11) Mathematician42: Build G1 Mathematician42

12) Trydnt: Discover R1 Trydnt G1 G1

13) Mathematician42: Trade R1 Y1 Mathematician42
	Trydnt: undo that move. you cannot have 4 pieces of the same color in the same place or they will blow up

14) Trydnt: Trade R2 Y2 Trydnt

15) Mathematician42: Trade G1 B1 Mathematician42

16) Trydnt: Build R1 Trydnt

17) Mathematician42: Build Y1 Mathematician42

18) Trydnt: Sacrifice G3 Trydnt
Build R2 G1
Build R3 Trydnt
Build R3 G1

19) Mathematician42: Build R3 Mathematician42

20) Trydnt: Sacrifice Y2 Trydnt
Discover R1 G1 Y3 Y3
Move R1 Y3 Mathematician42
Catastrophe Mathematician42 R

21) Mathematician42: Build Y1 Mathematician42

22) Trydnt: Trade R2 Y2 Trydnt

23) Mathematician42: Trade Y1 B1 Mathematician42

24) Trydnt: Trade R1 B1 Trydnt

25) Mathematician42: Discover B1 Mathematician42 Y1 Y1

26) Trydnt: Sacrifice Y2 Trydnt
Move R3 G1 Mathematician42
Discover B1 Trydnt G1 Ohgeez1

27) Mathematician42: Trade Y1 R1 Mathematician42

28) Trydnt: Attack G3 Mathematician42

29) Mathematician42: Trade R1 G1 Mathematician42

30) Trydnt: Sacrifice R3 Mathematician42
Attack G1 Mathematician42
Attack Y1 Mathematician42
Attack B1 Mathematician42

	Trydnt: yup there's usually no way back once your opponent has a big ship in your homeworld and you don't and they have red
	Trydnt: sacrifice r3 mathematician42
attack g1 mathematician42
attack y1 mathematician42
attack b1 mathematician42
	Mathematician42: Good game
	Trydnt: good game :)


34907)
Variants: "Unrated, Hard time"
Started: 2019.1.27, Ended: 2019.3.6
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H Y3 B1 G3

2) Trydnt: Homeworld B3 Y2 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 B1 Wil

6) Trydnt: Trade G1 B1 Trydnt

7) wil: B B2 Wil
	Trydnt: thought about going for the insta-freeze on these games but wouldn't have been as much fun
	wil: Tends toward the instance stuck 

8) Trydnt: Build B2 Trydnt

9) wil: D B2 Wil Y2 Y2

10) Trydnt: Discover B2 Trydnt G1 G1

11) wil: S G3 Wil
B B2 Y2
B B3 Y2
B B3 Wil

12) Trydnt: Build G1 Trydnt

13) wil: T B2 R2 Y2

14) Trydnt: Build G1 Trydnt

15) wil: M R2 Y2 G1

16) Trydnt: Trade G3 Y3 Trydnt

17) wil: T B1 R1 Wil

18) Trydnt: Build G2 Trydnt

19) wil: A B2 G1

20) Trydnt: Trade G2 R2 Trydnt

21) wil: T B3 G3 Y2

22) Trydnt: Build G2 Trydnt

23) wil: S G3 Y2
B B1 Y2
B B2 Y2
B B3 G1

24) Trydnt: Discover G2 Trydnt Y1 Y1

25) wil: T B3 Y3 G1

26) Trydnt: Discover B1 Trydnt Y1 Why1

27) wil: B B3 G1

28) Trydnt: Build G2 Trydnt

29) wil: S B2 G1
T B2 R2 Y2
T B2 G2 Y2

30) Trydnt: Sacrifice G1 Trydnt
Build B2 Why1

31) wil: B R1 Y2

32) Trydnt: Trade B1 R1 Why1

33) wil: S G2 Y2
B R3 Wil
B R3 G1

34) Trydnt: Build R3 Trydnt

35) wil: D R3 G1 Y2 Why2

36) Trydnt: Discover Y3 Trydnt G1 Gee1

37) wil: T R3 G3 Wil

38) Trydnt: Sacrifice G2 Trydnt
Build Y1 Gee1
Build R3 Why1

39) wil: M R3 Why2 Y1

40) Trydnt: Sacrifice G2 Y1
Build Y2 Gee1
Build G2 Trydnt

41) wil: D Y3 G1 G2 G2

42) Trydnt: Discover Y2 Gee1 B2 B2

43) wil: T B3 G3 Wil

44) Trydnt: Move R2 Trydnt Gee1

45) wil: M G3 Wil B2

46) Trydnt: Discover Y2 B2 B3 B3

47) wil: D Y3 G2 B1 B1

48) Trydnt: Sacrifice G2 Trydnt
Build G2 Trydnt
Build B2 Why1

49) wil: B G2 Wil

50) Trydnt: Move G1 Trydnt Why1

51) wil: M R2 Y2 B1

52) Trydnt: Move Y3 Gee1 Y2

53) wil: S G3 Wil
B G2 B2
B G3 B2
B G3 Wil

54) Trydnt: Move G1 Why1 B2
Catastrophe B2 G

55) wil: M B1 Y2 Y1

56) Trydnt: Discover Y1 Gee1 B2 B2

57) wil: M R1 Y2 B1

58) Trydnt: Build G1 Trydnt

59) wil: M R2 B1 Trydnt

60) Trydnt: Trade B2 G2 Why1

61) wil: A G2 Trydnt
	wil: Hard to believe you let both of.them out

62) Trydnt: Build G3 Why1

63) wil: S Y3 B1
M R1 B1 Trydnt
M R2 G1 Trydnt
C Trydnt R
M R3 Y1 Trydnt

64) Trydnt: Sacrifice Y3 Y2
Move R3 Why1 Trydnt
Move G3 Why1 Trydnt
Move G1 Trydnt Why1

65) wil: S G2 Trydnt
B R1 Trydnt
B R2 Trydnt
C Trydnt R

66) Trydnt: Sacrifice G2 Why1
Build Y2 B3
Build Y3 B2

67) wil: T B3 Y3 G1

68) Trydnt: Build G2 Trydnt
	Trydnt: I thought I was wrong once, but I was mistaken 
	wil: It looks like it

69) wil: D G2 Wil B2 Be2

70) Trydnt: Move Y2 B3 Be2

71) wil: S G2 Be2
B R1 Wil
B G2 Wil

72) Trydnt: Move Y2 Be2 Y1

73) wil: D Y3 G1 G2 G2

74) Trydnt: Sacrifice G3 Trydnt
Build G1 Why1
Build G3 Why1
Build G3 Trydnt

75) wil: M B1 Y1 G2

76) Trydnt: Move G1 Why1 B2

77) wil: B B1 G2

78) Trydnt: Sacrifice Y2 Y1
Move G3 Why1 B2
Move G3 B2 Wil

	wil: Asleep.at the wheel...gg
	Trydnt: happens to the best of us :) well played


34925)
Variants: "Hard time"
Started: 2019.1.27, Ended: 2019.2.11
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H Y2 B1 G3

2) Trydnt: Homeworld G3 B2 Y3

3) wil: B G1 Wil

4) Trydnt: Build Y1 Trydnt

5) wil: B G1 Wil

6) Trydnt: Build Y1 Trydnt

7) wil: T G1 Y1 Wil

8) Trydnt: Trade Y1 G1 Trydnt

9) wil: T G1 B1 Wil

10) Trydnt: Discover Y1 Trydnt G1 G1

11) wil: B B1 Wil

12) Trydnt: Build Y1 Trydnt

13) wil: D Y1 Wil G3 G3

14) Trydnt: Build Y2 G1

15) wil: M B1 Wil G3

16) Trydnt: Trade Y1 R1 Trydnt

17) wil: D B1 G3 Y1 Y1

18) Trydnt: Build R1 Trydnt

19) wil: B B2 Wil

20) Trydnt: Build R1 Trydnt

21) wil: D B2 Wil R3 R3

22) Trydnt: Move R1 Trydnt Y1

23) wil: D B1 Y1 Y3 Y3

24) Trydnt: Move R1 Y1 G3

25) wil: M Y1 G3 G1

26) Trydnt: Sacrifice R1 Trydnt
Attack Y1 G1

27) wil: S G3 Wil
B B2 Wil
B B3 R3
B B3 Y3

28) Trydnt: Build Y1 Trydnt

29) wil: T B3 G3 Y3

30) Trydnt: Build Y2 Trydnt

31) wil: T B2 R2 Wil

32) Trydnt: Move Y1 G1 G3

33) wil: T B3 Y3 R3

34) Trydnt: Trade Y3 B3 Trydnt

35) wil: S G3 Y3
B B2 R3
B B3 Y3
B B3 Wil
	wil: Nice

36) Trydnt: Build Y3 Trydnt

37) wil: T B3 G3 Wil

38) Trydnt: Move B3 Trydnt G1

39) wil: T B2 G2 R3

40) Trydnt: Move B3 G1 G3

41) wil: B G1 Wil

42) Trydnt: Build B2 G3

43) wil: B B3 R3

44) Trydnt: Move B3 G3 Wil

45) wil: M G1 Wil Y3

46) Trydnt: Sacrifice R1 Trydnt
Attack R2 Wil

47) wil: T B3 R3 R3

48) Trydnt: Attack G3 Wil

49) wil: S G1 Y3
B B3 Wil

50) Trydnt: Sacrifice R2 Wil
Attack B3 Wil
Attack B1 Wil

	Trydnt: my homeworld fleet looks just so wrong thought you might have that but I think my overwhelming yellow advantage was hard to beat


34924)
Started: 2019.1.27, Ended: 2019.3.22
Participants: Trydnt (S), ts52 (N)
Winner: Trydnt

1) ts52: Homeworld R1 B2 G3

2) Trydnt: Homeworld B2 Y1 G3

3) ts52: Build G1 Ts52

4) Trydnt: Build G1 Trydnt

5) ts52: Trade G1 Y1 Ts52

6) Trydnt: Trade G1 Y1 Trydnt

7) ts52: Build Y2 Ts52

8) Trydnt: Discover Y1 Trydnt G3 G3

9) ts52: Build Y2 Ts52

10) Trydnt: Move Y1 G3 Ts52
Catastrophe Ts52 Y

11) ts52: Build G1 Ts52

12) Trydnt: Build G1 Trydnt

13) ts52: Trade G1 Y1 Ts52

14) Trydnt: Trade G1 Y1 Trydnt

15) ts52: Build Y2 Ts52

16) Trydnt: Discover Y1 Trydnt G3 G3

17) ts52: B G1 Ts52

18) Trydnt: Build Y2 G3

19) ts52: Build G1 Ts52

20) Trydnt: Build G1 Trydnt

21) ts52: Discover G1 Ts52 B3 Gonzo

22) Trydnt: Trade G1 R1 Trydnt

23) ts52: Trade G1 R1 Ts52

24) Trydnt: Build R2 Trydnt

25) ts52: Move R1 Ts52 Gonzo

26) Trydnt: Move R2 Trydnt G3

27) ts52: Build R2 Gonzo

28) Trydnt: Discover Y2 G3 G1 G1

29) ts52: Move Y1 Ts52 Gonzo

30) Trydnt: Build R2 Trydnt

31) ts52: Build R3 Gonzo

32) Trydnt: Move R1 Trydnt Gonzo
Catastrophe Gonzo R

33) ts52: Trade Y1 R1 Gonzo

34) Trydnt: Move Y2 G1 Gonzo

35) ts52: Build G1 Ts52

36) Trydnt: Sacrifice R2 G3
Attack R1 Gonzo
Attack G1 Gonzo

37) ts52: Build Y1 Ts52

38) Trydnt: Build G1 Gonzo

39) ts52: Trade Y2 R2 Ts52

40) Trydnt: Sacrifice Y2 Gonzo
Move G1 Gonzo Ts52
Move G1 Gonzo Ts52
Catastrophe Ts52 G

41) ts52: Trade R2 G2 Ts52

42) Trydnt: Build Y2 G3

43) ts52: Build Y2 Ts52

44) Trydnt: Build R1 Trydnt

45) ts52: Trade Y2 R2 Ts52
	ts52: Well that's not good. For me anyway.

46) Trydnt: Sacrifice Y2 G3
Move G3 Trydnt Gonzo
Move G3 Gonzo Ts52

47) ts52: Build G1 Ts52

48) Trydnt: Sacrifice R2 Trydnt
Attack R2 Ts52
Attack G2 Ts52

49) ts52: Build G1 Ts52
Catastrophe Ts52 G

50) Trydnt: Attack Y1 Ts52

	ts52: Good game!
	Trydnt: well played :)


34945)
Variants: "Hard time"
Started: 2019.1.27, Ended: 2019.1.30
Participants: dlwillson (S), goulo (N)
Winner: dlwillson

1) goulo: Homeworld R3 B2 G3

2) dlwillson: Homeworld Y3 B1 G3
	goulo: hi!

3) goulo: Build G1 Goulo
	dlwillson: Hi Russ! Thanks for challenging me! Have fun!

4) dlwillson: B G1 Dlwillson

5) goulo: Trade G1 Y1 Goulo

6) dlwillson: Trade G1 B1 Dlwillson

7) goulo: Build G1 Goulo

8) dlwillson: Build B1 Dlwillson

9) goulo: Build Y1 Goulo

10) dlwillson: Discover B1 Dlwillson B2 Sea

11) goulo: Trade G3 B3 Goulo

12) dlwillson: Build G1 Dlwillson

13) goulo: Trade Y1 R1 Goulo

14) dlwillson: D B1 Dlwillson G2 Field

15) goulo: Build Y1 Goulo

16) dlwillson: S G3 Dlwillson
B B2 Field
B B3 Field
B B3 Sea

17) goulo: Discover Y1 Goulo Y1 Flaveto

18) dlwillson: S B2 Field
T B3 G3 Sea
T B3 Y3 Field

19) goulo: Build Y2 Goulo

20) dlwillson: Sacrifice G3 Sea
Build B2 Field
Build B3 Field
Build B3 Sea

21) goulo: Sacrifice Y2 Goulo
Move Y1 Flaveto Sea
Move Y1 Sea Dlwillson

22) dlwillson: M B3 Field Dlwillson

23) goulo: Sacrifice R1 Goulo
Attack G1 Dlwillson

24) dlwillson: S Y3 Field
D B3 Sea Y1 Sol
M B1 Sea Sol
M B3 Sol Goulo

25) goulo: Attack B3 Goulo

26) dlwillson: M B1 Sol Goulo
C Goulo B

27) goulo: Build Y1 Dlwillson

28) dlwillson: T B3 R3 Dlwillson

29) goulo: Build G1 Dlwillson

30) dlwillson: Trade B2 Y2 Field

31) goulo: Build Y2 Goulo

32) dlwillson: B Y2 Field

33) goulo: Build G2 Goulo

34) dlwillson: Attack G1 Dlwillson

35) goulo: Discover Y1 Goulo G2 Verdo

36) dlwillson: T Y2 R2 Field

37) goulo: Build G3 Goulo

38) dlwillson: Build R1 Field

39) goulo: Move G2 Goulo Field

40) dlwillson: Sacrifice Y2 Field
Move R2 Field Goulo
Move R1 Field Goulo

41) goulo: Build Y2 Dlwillson
Catastrophe Dlwillson Y

42) dlwillson: Sacrifice G1 Dlwillson
Build R1 Goulo
Catastrophe Goulo R

	goulo: congrats, thanks for the game!
	dlwillson: Finishing you off is... difficult! :-)
	dlwillson: Thanks for the excellent game! I thought you were going to pull off the reversal for a few turns there!
	goulo: after you got several larges, I figured I was screwed, but then I started think I might have a chance... :)
But you played too solid for my crazy ideas to work. :)


34959)
Variants: "Unrated"
Started: 2019.1.29, Ended: 2019.1.29
Participants: xejaw (S), cokier (N)
Winner: cokier

1) cokier: Homeworld G3 B2 Y3

2) xejaw: Homeworld B3 G1 Y3
	xejaw: homeworld B3 G1
	xejaw: homeworld B3 G1 Y3

3) cokier: Build Y1 Cokier

4) xejaw: Build Y1 Xejaw

5) cokier: Discover Y1 Cokier G1 Siusiak

6) xejaw: Trade Y1 G1 Xejaw

7) cokier: Build Y1 Cokier

8) xejaw: Build G2 Xejaw

9) cokier: Discover Y1 Siusiak G2 Jazda

10) xejaw: Trade G1 B1 Xejaw

11) cokier: Trade Y1 G1 Cokier

12) xejaw: Build B1 Xejaw

13) cokier: Discover G1 Cokier Y1 Kupa

14) xejaw: Trade B1 R1 Xejaw

15) cokier: Trade Y3 R3 Cokier

16) xejaw: Move R1 Xejaw Jazda

17) cokier: Move Y1 Jazda Xejaw

18) xejaw: Build R1 Jazda

19) cokier: Trade Y1 R1 Xejaw

20) xejaw: Move B1 Xejaw Jazda

21) cokier: Build R2 Xejaw

22) xejaw: Move G2 Xejaw Jazda

23) cokier: Build R2 Cokier

24) xejaw: Trade Y3 R3 Xejaw

25) cokier: Trade R3 Y3 Cokier

26) xejaw: Attack R2 Xejaw

27) cokier: Build Y1 Cokier

28) xejaw: Attack R1 Xejaw

29) cokier: Sacrifice Y3 Cokier
Move R2 Cokier Kupa
Move R2 Kupa Jazda
Move R2 Jazda Xejaw
Catastrophe Xejaw R



34955)
Started: 2019.1.30, Ended: 2019.7.12
Participants: ts52 (S), Felix (W), Draw5PlayAll (N), Babamots (E)
Winner: Babamots

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Babamots: Homeworld B2 R1 G3

3) ts52: Homeworld Y2 B3 G3

4) Felix: Homeworld B2 R3 G3

5) Draw5PlayAll: Build G1 Draw5playall

6) Babamots: Build G1 Babamots

7) ts52: Build G1 Ts52

8) Felix: Build G1 Felix

9) Draw5PlayAll: Trade G1 Y1 Draw5playall

10) Babamots: Trade G1 Y1 Babamots

11) ts52: Trade G1 Y1 Ts52

12) Felix: Trade G1 Y1 Felix

13) Draw5PlayAll: Build G1 Draw5playall

14) Babamots: Build G1 Babamots
	Draw5PlayAll: Even ts52 traded for yellow?!?

15) ts52: Build G1 Ts52

16) Felix: Build G1 Felix
	ts52: Sure, why not? ;)

17) Draw5PlayAll: Trade G1 R1 Draw5playall

18) Babamots: Trade G1 R1 Babamots
	Draw5PlayAll: No one blame me for this uniformity -- I went first, and you all copied me!

19) ts52: Trade G1 R1 Ts52
	Draw5PlayAll: Psst psst lock felix out of red psst psst

20) Felix: Discover G1 Felix B1 Out
	Babamots: Early game "lockouts" don't usually scare me anymore. It seems like it's usually safe to trade your large for the color you're lacking and then build more.

21) Draw5PlayAll: Build R2 Draw5playall
	ts52: Nothing person, seems my choice was either take the red or get locked out of the red.

22) Babamots: Build R2 Babamots
	Felix: I feel personally offended and will never speak to you again! :)

23) ts52: B R2 Ts52

24) Felix: Build Y1 Felix

25) Draw5PlayAll: Build Y2 Draw5playall

26) Babamots: Build Y2 Babamots

27) ts52: B G1 Ts52
	Draw5PlayAll: I need to actually d a system or two.

28) Felix: Build Y2 Felix

29) Draw5PlayAll: Discover Y2 Draw5playall G2 Kermit

30) Babamots: Discover Y1 Babamots B3 Andoria

31) ts52: Discover G1 Ts52 B1 Grover

32) Felix: Move Y2 Felix Out

33) Draw5PlayAll: Discover R2 Draw5playall B2 Iconia

34) Babamots: Move R2 Babamots Andoria

35) ts52: Move R2 Ts52 Grover
	Babamots: Borrowing system names I see :-). Although Iconia makes the most sense as a yellow system.

36) Felix: Build Y2 Out

37) Draw5PlayAll: Build Y3 Kermit

38) Babamots: Sacrifice G3 Babamots
Build Y3 Babamots
Build Y3 Andoria
Build R2 Andoria
	Draw5PlayAll: What? I thought you used it as a blue!
	Draw5PlayAll: For that matter, why have I seen you use Wolf359 as a yellow when red makes more sense to me?

39) ts52: Move Y1 Ts52 Grover
	Draw5PlayAll: IMCAC Babamots gets a Y3 and then the other two probably trade out their lesser yellows to slow the Y3 rush.

40) Felix: Build Y3 Felix
	Babamots: Iconia is where they found the Star Trek equivalent of a stargate. Since it allows instant travel to far-flung places, it seems like a yellow world to me.
	Draw5PlayAll: Well, I could not think of any other blue Trek systems.
	Draw5PlayAll: Game 31346, you discovered Iconia as a blue.
	Babamots: I must not have cared about matching much that day. Ya got me.
For blues, I usually prefer Andoria or Bolarus. Both of their native races are blue-skinned.

41) Draw5PlayAll: Build Y3 Draw5playall
	Felix: Did you really comb through all Babamots' games to prove a point? Must be a slow day at work ;)

42) Babamots: Trade Y1 G1 Andoria

43) ts52: Build G1 Ts52

44) Felix: Trade Y1 B1 Felix

45) Draw5PlayAll: Discover Y3 Draw5playall B2 Walter

46) Babamots: Trade Y3 G3 Babamots

47) ts52: Trade G1 B1 Ts52
	Draw5PlayAll: Your systems are the hardest to copy...

48) Felix: Trade Y2 R2 Out

49) Draw5PlayAll: Move R1 Draw5playall Kermit

50) Babamots: Build R3 Andoria

51) ts52: Build R3 Grover

52) Felix: Build R3 Out

53) Draw5PlayAll: Build R3 Kermit

54) Babamots: Move R3 Andoria Iconia

55) ts52: Build G1 Ts52

56) Felix: Build Y1 Out

57) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Hello?
	Draw5PlayAll: ...Felix?!


58) Babamots: Build G2 Babamots
	Felix: Sorry everyone

59) ts52: B G2 Grover

60) Felix: Build G2 Felix

61) Draw5PlayAll: Move G1 Draw5playall Walter

62) Babamots: Attack R2N Iconia
	Draw5PlayAll: Now I wish I had just kicked Felix while I had the chance.

63) ts52: Discover B1 Ts52 Y1 Bigbird
	Babamots: I think 4 player free-for-alls will turn out to be too complicated for me. It all just looks like a bunch of triangles :-P.

64) Felix: Move Y1 Out Kermit

65) Draw5PlayAll: Discover Y3 Kermit B3 Ferenginar
	Felix: I'm with you, Babamots. I don't have the time to wrap my head around everything that happened between my turns haha

66) Babamots: Trade R3 Y3 Iconia
	Draw5PlayAll: Meanwhile, I have 12 other games to play.

67) ts52: Build R3 Ts52

68) Felix: Sacrifice Y2 Out
Move R2 Out Kermit
Move R3 Out Kermit
Catastrophe Kermit Red
	Babamots: I guess you're much smarter than me :-).

69) Draw5PlayAll: Trade Y3 R3 Walter

70) Babamots: Sacrifice G3 Babamots
Build G2 Andoria
Build Y2 Iconia
Build G3 Babamots
	Felix: Me too! We're clearly outmatched here, guys :)
	Draw5PlayAll: Are you guys outmatched, or am I playing sub-optimally specifically because I have 12 other games? (I think the latter. The only one of you I usually beat is ts52.)

71) ts52: Move R3 Ts52 Bigbird

72) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Out
Build Y2 Kermit
	ts52: Why do you think I'm trying (but failing) to stay under the radar.

73) Draw5PlayAll: Build Y3 Draw5playall

74) Babamots: Trade R2 B2 Andoria

75) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B1 Bigbird
Build B3 Bigbird

76) Felix: Trade G1 R1 Out

77) Draw5PlayAll: Build G1 Draw5playall

78) Babamots: Sacrifice G3 Babamots
Build R2 Iconia
Build R2 Andoria
Build G3 Babamots

79) ts52: Discover B3 Bigbird R3 Elmo
	Draw5PlayAll: Cmon blow up the ships at bigbird and kermit!

80) Felix: Move Y1 Kermit Draw5playall
	Babamots: I'm still feeling generous.

81) Draw5PlayAll: Move Y3 Draw5playall Walter

82) Babamots: Move G2 Andoria Iconia
	Draw5PlayAll: Rule of Acquisition 45...

83) ts52: Move R3 Grover Kermit

84) Felix: Attack G1N Draw5playall
	Babamots: Expand or die?

85) Draw5PlayAll: Move R3 Walter Grover

86) Babamots: Move G2 Iconia Draw5playall

87) ts52: Sacrifice R2 Grover
Attack Y2W Kermit
Attack Y2N Kermit
	Draw5PlayAll: Rule of Acquisition 10
Greed is eternal

88) Felix: Sacrifice G2 Felix
Build G2 Draw5playall
Catastrophe Draw5playall Green
Build G1 Out

89) Draw5PlayAll: Sacrifice Y3 Ferenginar
Discover R3 Grover G2 Whyme
Move R3 Whyme Draw5playall
Move Y3 Walter Grover

90) Babamots: Build Y3 Babamots

91) ts52: S G2 Grover
B B3 Elmo
B R2 Bigbird
	Draw5PlayAll: WhyMe?

92) Felix: Build G2 Felix
	Babamots: Rule of Acquisition 21.
	Draw5PlayAll: But where is the profit in trying to kill me?
	Babamots: 208.
	Draw5PlayAll: I think you are applying 266.

93) Draw5PlayAll: Trade R3 G3 Draw5playall

94) Babamots: Trade B2 G2 Andoria

95) ts52: Build R3 Ts52
	Draw5PlayAll: Anyone interested in avenging me?

96) Felix: Sacrifice Y3 Felix
Move R1 Out Ts52
Move G1 Out Ts52
Move G3 Out Ts52
Catastrophe Ts52 Green

97) Draw5PlayAll: Attack Y1W Draw5playall

98) Babamots: Sacrifice Y3 Babamots
Move R2 Iconia Grover
Move R2 Grover Ts52
Move Y3 Iconia Elmo
Catastrophe Ts52 R
	Felix: I exist merely to ruin lives :)

99) Felix: Discover G2 Felix B1 Grovnor
	Draw5PlayAll: You've got the wrong guy! We three need to team up to defeat Babamots NOW!

100) Draw5PlayAll: Move Y3 Grover Felix

101) Babamots: Sacrifice R2 Andoria
Attack B3S Elmo
Attack B3S Elmo

102) Felix: Attack Y3N Felix
	Draw5PlayAll: Take this, you'll need it!
	Babamots: Don't take it! It's probably full of Greek soldiers!
	Draw5PlayAll: Then you can beam everyone aboard into forced-labor camps, execute the captain, and take the ship over.

Of course, the crew are robots programmed to delete themselves upon seize.

103) Draw5PlayAll: Move Y1 Draw5playall Kermit

104) Babamots: Sacrifice G3 Babamots
Build Y2 Elmo
Build Y3 Babamots
Build Y3 Iconia
	Felix: I'm in. I have a policy to always fall for traps!

105) Felix: Discover B1 Felix G1 Opus

106) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Is the tournament still going on?
	Draw5PlayAll: Felix we need to work together or else Babamots is going to win easily.
	Babamots: The tournament just ended today. You should have an email with a link to a discussion of the results.

107) Babamots: Move B3 Elmo Grovnor

108) Felix: Sacrifice G2 Grovnor
Build B2 Opus
Build B3 Opus

109) Draw5PlayAll: Build G2 Walter

110) Babamots: Move Y3 Elmo Opus

111) Felix: Sacrifice Y1 Felix
Move B3 Opus Felix
	Draw5PlayAll: Zimba, his face black, his eyes red

112) Draw5PlayAll: Build Y1 Draw5playall

113) Babamots: Trade B3 R3 Elmo

114) Felix: Trade B1 R1 Opus
	Draw5PlayAll: @Felix: Darmok and Jalad at Tangara

115) Draw5PlayAll: Trade G1 R1 Walter
	Babamots: I thought you weren't familiar with Star Trek, D5PA. Have you been watching lately? Or just browsing Memory Alpha?

116) Babamots: Sacrifice Y2 Babamots
Move B3 Grovnor Felix
Move Y3 Opus Felix
	Draw5PlayAll: Oh, I am familiar with it, all right. I just cannot be expected to know absolutely every planet and star system that you manage to pop into your games.

Don't spoil anything in DS9 or Voyager please!

117) Babamots: Sacrifice R3 Elmo
Attack B3W Felix
Attack Y3W Felix
Attack G3W Felix
	Babamots: I remembered you asking for "no spoilers" before, but I supposed that meant you hadn't seen much of any series. I'm a TNG man myself. I've forgotten lots of what happens in the other series.

	Draw5PlayAll: Denied!

Actually, I should have made Felix lose first, out of revenge for destroying ts52 prematurely.


34961)
Variants: "Hard time"
Started: 2019.1.31, Ended: 2019.2.26
Participants: Felix (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3

2) Felix: Homeworld R2 B3 G3
	dlwillson: Hi Felix! How's everything? It's good to see you! Good luck and have fun, as always!

3) dlwillson: B G1 Dlwillson
	Felix: Hey! A pleasure, as always :) Things are going fine. Quite busy with house, work, children, church, etc etc but we're all doing well. How are things on your end?

4) Felix: Build G1 Felix
	dlwillson: Everything at home is good. SFS is good. Work sucks right now, which really sucks for me, because I usually love my job.

5) dlwillson: Trade G1 B1 Dlwillson
	Felix: Sorry to hear it! Just super busy, or doing a project that's not much fun?
	dlwillson: lack of leadership

6) Felix: Trade G1 B1 Felix

7) dlwillson: Build B2 Dlwillson
	Felix: Gotcha. That's always tough to suffer under. I'm very fortunate to have a great boss at the moment, but I've been under a terrible micromanager before, and that was super stressful.
	Felix: I guess that would be too much leadership instead of not enough :)

8) Felix: Build B2 Felix
	dlwillson: In my opinion, management and leadership are different functions. Leaders are supposed to set clear objectives and priorities. Managers keep their teams healthy and effective in pursuit of the leadership's goals.

9) dlwillson: Discover B1 Dlwillson G2 Forest

10) Felix: Trade B1 Y1 Felix

11) dlwillson: Build B1 Forest

12) Felix: Build B2 Felix
	Felix: That's a good distinction! Well, I'm sorry work is such a bummer right now. That's never much fun. At least you have time for a few leisure activities too, like Homeworlds :)

13) dlwillson: T B2 Y2 Dlwillson

14) Felix: Discover B2 Felix G1 Out

15) dlwillson: M Y2 Dlwillson Forest

16) Felix: Build Y1 Felix

17) dlwillson: Discover B1 Forest G1 Field

18) Felix: Discover B2 Felix Y1 Sand

19) dlwillson: B Y2 Forest

20) Felix: Move Y1 Felix Out

21) dlwillson: M Y2 Forest Dlwillson

22) Felix: Build G1 Felix

23) dlwillson: S G3 Dlwillson
B B2 Field
B B3 Field
B B3 Forest

24) Felix: Sacrifice G3 Felix
Build Y2 Felix
Build Y3 Felix
Build Y3 Out

25) dlwillson: Move B3 Forest Dlwillson

26) Felix: Sacrifice Y2 Felix
Move B2 Sand Felix
Move B2 Felix Field
Catastrophe Field Blue

27) dlwillson: T B3 G3 Dlwillson
	dlwillson: Bah. I am unsatisfied with this result, too.

28) Felix: Trade Y1 R1 Out
	Felix: Yeah, I tried to give you a bit of a stumper there. I'm glad I did :)

29) dlwillson: T Y2 R2 Dlwillson

30) Felix: Build Y1 Out

31) dlwillson: B Y1 Forest

32) Felix: Build R1 Out

33) dlwillson: D Y1 Forest G1 Field

34) Felix: Move B2 Out Forest

35) dlwillson: B Y2 Forest

36) Felix: S R1 Out
Attack Y2 Forest

37) dlwillson: B R1 Dlwillson

38) Felix: Sacrifice Y2 Forest
Move B2 Forest Out
Move Y3 Out Forest

39) dlwillson: Build Y2 Forest

40) Felix: Build Y2 Out

41) dlwillson: T Y2 G2 Forest

42) Felix: Sacrifice B2 Out
Trade Y3 R3 Forest
Trade Y1 B1 Out

43) dlwillson: S Y2 Forest
M B1 Forest Field
M R1 Dlwillson Forest

44) Felix: Attack G2 Forest

45) dlwillson: S G3 Dlwillson
B R1 Forest
B R2 Forest
B R3 Dlwillson
C Forest R

46) Felix: Sacrifice G2 Forest
Build B2 Out
Build B2 Out

47) dlwillson: Build B2 Field

48) Felix: Discover B2 Out G2 Wizard

49) dlwillson: Trade B1 R1 Field
	Felix: Nice. I saw that coming, but it still hurts!

50) Felix: Build G2 Felix
	dlwillson: You're still way ahead of me, but at least you're not wandering around with an extra large. I think you should've left it yellow. A big yellow in the field with a gun is way better (IMO) than a big red. The mobile threat is better than the free attacks.

51) dlwillson: Trade R3 G3 Dlwillson
	Felix: Yeah, you're totally right. I'm not sure why that move made sense to me at the time.

52) Felix: Sacrifice G2 Felix
Build B1 Out
Build B3 Wizard

53) dlwillson: B B3 Field

54) Felix: Trade B3 Y3 Wizard

55) dlwillson: T B2 G2 Field

56) Felix: Build G2 Felix

57) dlwillson: D G2 Field Y2 Sol

58) Felix: Sacrifice G2 Felix
Build Y1 Out
Build Y2 Wizard

59) dlwillson: S G2 Sol
B G2 Dlwillson
B Y2 Field

60) Felix: Discover B2 Out G2 Post

61) dlwillson: S G2 Dlwillson
B R1 Field
B R2 Field

62) Felix: S Y3 Wizard
M B2 Post Dlwillson
M B1 Out Wizard
M B1 Wizard Dlwillson

63) dlwillson: Move Y1 Field Felix

64) Felix: Sacrifice Y1 Felix
Move B2 Wizard Dlwillson
Catastrophe Dlwillson Blue

65) dlwillson: S G3 Dlwillson
B Y1 Felix
B Y3 Felix
B R3 Dlwillson
C Felix Y

66) Felix: B R3 Out
	dlwillson: Hm...

67) dlwillson: S Y2 Field
M B3 Field Felix
M R2 Dlwillson Wizard
	dlwillson: Too little, too late. But, let's play it out. Maybe I'll pull off a miracle or you'll roll a 1.

	Felix: Nice! I knew you hade a few turns ago, even though you sounded like you thought you were the one going under :) do you see anything I could have done differently a fee turns back (around when you suggested I roll a 1, haha). I couldn't find any move that wouldn't ultimately open a path of victory for you. I kept hoping you'd miss things, but not much gets past the Willson! Good game and an ending I'll have to study.
	dlwillson: A miracle!

I'll have to look at it. I've been thinking that you could have sac'd your Y3 at home, instead of building a Y3. Put in the finishing blue, cat, then put in two yellows with the remaining energy from the sac. But, that wouldn't have worked, because I had mid and big reds all over, and I could have captured your y1 and g1 at home, winning one turn too early for your taste.
Maybe if you'd sac'd your y1? No, you *did* sac your y1. Tell you what: Come to Denver and we'll set up and see if we can find you a path to a win from there.
	Felix: Haha sounds good! I set up my pieces and explored just about every possible path I could go, and they all ended with me being just ONE turn short of victory. I was trying to find a way to stall you by just one turn so I could get that edge I needed, but again, nothing gets past ya.


34914)
Variants: "Unrated"
Started: 2019.2.1, Ended: 2019.3.14
Participants: Mathematician42 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) Mathematician42: Homeworld B3 R1 G3
	Mathematician42: I have pyramid arcade now! I'm also a Starship Captain!

3) wil: B G1 Wil
	wil: Congrats!  What are your 10 games?
	wil: Got the family playing?  

4) Mathematician42: Build G1 Mathematician42
	Mathematician42: My 10 games are:
1. Homeworlds
2. Treehouse
3. Martian Coasters (Looney Ludo)
4. Zendo
5. Martian Chess
6. Black ICE
7. Launchpad 23
8. Volcano
9. Colorwheel
10. Verticality
	Mathematician42: Yeah, I've "taught" my dad and a friend how to play Homeworlds. So far I've been able to play at least one game with everyone in the family.

5) wil: T G1 R1 Wil

6) Mathematician42: Build G1 Mathematician42
	Draw5PlayAll: 

7) wil: B R1 Wil

8) Mathematician42: Trade G1 Y1 Mathematician42
	wil: Set up someplace and just move whenever.
	wil: Nice,HW is great to play over days live!

9) wil: B R2 Wil
	wil: Good list!  Try petri dish

10) Mathematician42: Build Y1 Mathematician42
	Mathematician42: I agree about HW. It's so much easier to think when you play games live IRL(or at least just live).
	Mathematician42: I'm probably going to try it soon.

11) wil: D R2 Wil B3 B3

12) Mathematician42: Build Y1 Mathematician42
	wil: Make sure to read all the tips on HW in PA
	Mathematician42: Yeah

13) wil: S G3 Wil
B R2 Wil
B R2 B3
B R3 B3

14) Mathematician42: Trade Y1 B1 Mathematician42
	Mathematician42: That escalated quickly.

15) wil: T R3 G3 B3
	wil: Seeing red?

16) Mathematician42: Discover G1 Mathematician42 B2 B2
	Mathematician42: Yeah

17) wil: D R2 Wil Y3 Y3

18) Mathematician42: Build B1 Mathematician42

19) wil: S G3 B3
B R3 B3
B R3 Y3
B R3 Wil

20) Mathematician42: Move B1 Mathematician42 B2

21) wil: M R3 Y3 B2

22) Mathematician42: Build B2 Mathematician42

23) wil: A G1 B2

24) Mathematician42: Discover B1 Mathematician42 Y2 Y2

25) wil: A B1 B2

26) Mathematician42: Build G1 Mathematician42

27) wil: T R3 Y3 B3

28) Mathematician42: Build Y1 Mathematician42

29) wil: B R3 B2

30) Mathematician42: Move B2 Mathematician42 Y2

31) wil: T R3 Y3 B2

32) Mathematician42: Move Y1 Mathematician42 Y2
	Mathematician42: I see what's happening here.....
	Mathematician42: You're setting up for doomsday machine

33) wil: T R3 B3 Wil
	wil: Once you have the guns

34) Mathematician42: Build Y2 Mathematician42

35) wil: M R2 B3 Y2

36) Mathematician42: Build G1 Mathematician42

37) wil: S Y3 B3 Mathematician42
M Y3 B2 Mathematician42
M R3 B2 Mathematician42
M G1 B2 Mathematician42
C Mathematician42 G
C Mathematician42 Y
	wil: Change of plans
	Draw5PlayAll: What is the page admin for
	Mathematician42: How did you do that?
	wil: My phone wouldn't format right for me to finish my move... Finally!



34947)
Variants: "Hard time"
Started: 2019.2.3, Ended: 2019.2.12
Participants: wil (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R3 G1 B3
	Simon: More Homeworlds, have fun :)

2) wil: H Y2 B1 G3

3) Simon: Build B1 Simon
	wil: I will!

4) wil: B G1 Wil

5) Simon: Build B1 Simon
	wil: And move fairly quick till it slows
	wil: Sunday morn, I can watch this space..

6) wil: B G1 Wil

7) Simon: Trade B3 Y3 Simon

8) wil: D G1 Wil B3 B3

9) Simon: Build B2 Simon

10) wil: S G3 Wil
B G2 B3
B G2 Wil
B G2 Wil

11) Simon: Build Y1 Simon

12) wil: B G3 B3

13) Simon: Discover B1 Simon B2 B2

14) wil: T G3 Y3 B3

15) Simon: Discover B1 Simon B2 B2a

16) wil: B G3 B3

17) Simon: Build B3 Simon

18) wil: D G2 Wil Y3 Y3

19) Simon: Trade B3 G3 Simon

20) wil: B G3 Y3

21) Simon: Move G3 Simon B2

22) wil: M Y3 B3 Wil

23) Simon: Build B3 B2

24) wil: T G3 R3 B3

25) Simon: Build G3 B2

26) wil: M G3 Y3 B2

27) Simon: Sacrifice G3 B2
Build G3 B2
Build B3 B2a
Build Y1 Simon

28) wil: T G3 R3 B2
	wil: Nice

29) Simon: Trade B1 R1 B2a

30) wil: S G2 Wil
B G2 Wil
B R1 B2
	wil: I've done so badly

31) Simon: Sacrifice G3 B2
Build G3 B2
Build R1 B2a
Build R2 B2a

32) wil: T R1 B1 B2
C B2 B
	Simon: Hnn, it's tempting every turn though to escape with the hanging queens <_<;;

33) Simon: Trade B3 G3 B2a
	wil: Had to pull the reboot switch

34) wil: B G3 Wil

35) Simon: Build G3 B2a

36) wil: S Y3 Wil
M G1 Wil Y3
M G1 Y3 B2a
M G1 B3 B2a
C B2a G

37) Simon: Trade R1 G1 B2a
	wil: Clean up aisle 3

38) wil: B R1 B3

39) Simon: Trade R1 Y1 B2a

40) wil: T R3 Y3 B3

41) Simon: Build Y2 B2a

42) wil: B Y2 B3

43) Simon: Discover Y1 Simon B2 B2

44) wil: M Y2 B3 B2

45) Simon: Build B1 Simon

46) wil: S G2 Y3
B Y3 B3
B R1 B3

47) Simon: Sacrifice Y2 B2a
Move Y1 B2a B3
Move Y1 B2 B3
Catastrophe B3 Yellow

48) wil: T R1 Y1 B3

49) Simon: Discover B1 Simon G2 G2

50) wil: B R1 B3

51) Simon: Build B1 Simon

52) wil: M G2 B3 G2

53) Simon: Build B3 G2

54) wil: S G3 Wil
B G1 G2
B G3 G2
B G3 Wil
C G2 G

55) Simon: Build B1 Simon
	wil: I thought I had a better plan for that

56) wil: D G2 Wil Y3 Y3
	Simon: Yeah, that kill looks expensive for you. It takes 3 moves to rebuild this b3 at g2, but re-killing it costs 3 moves and a pre-existing ship.

57) Simon: Discover B1 Simon G2 G2

58) wil: B G1 Wil

59) Simon: Build B3 G2

60) wil: S G3 Wil
B G2 Y3
B G3 Y3
B G3 Wil

61) Simon: Sacrifice Y1 Simon
Move G1 B2a Y3
Catastrophe Y3 Green

62) wil: B G1 Wil

63) Simon: Build B3 G2

64) wil: D G1 Wil Y3 Y3

65) Simon: Trade B3 Y3 G2

66) wil: S G3 Wil
B G2 Y3
B G2 Y3
B G3 Wil

67) Simon: Move B3 G2 Y3

68) wil: S G3 Wil
B G3 Wil
B G3 Wil
B G3 Y3
C Y3 G

69) Simon: Sacrifice Y3 Simon
Move Y3 G2 Y3
Move Y3 Y3 Wil
Move B3 Y3 Wil

70) wil: S R1 B3
A Y3 Wil

71) Simon: Sacrifice R2 B2a
Attack Y3 Wil
Attack G3 Wil
	Draw5PlayAll: Strange

72) wil: T G3 R3 Wil

73) Simon: Trade B2 R2 Simon

74) wil: B G1 Wil

75) Simon: Sacrifice R2 Simon
Attack R3 Wil
Attack G1 Wil
	wil: Gg

76) wil: S Y2 B2
M R1 B3 G2
M R1 G2 Simon
	Simon: gg

77) Simon: Attack G1 Wil



34972)
Variants: "Hard time"
Started: 2019.2.4, Ended: 2019.3.1
Participants: Draw5PlayAll (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Draw5PlayAll: Homeworld B3 R1 G3

3) Trydnt: Build G1 Trydnt

4) Draw5PlayAll: Build G1 Draw5playall

5) Trydnt: Trade G1 R1 Trydnt

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) Trydnt: Build R2 Trydnt

8) Draw5PlayAll: Build R2 Draw5playall

9) Trydnt: Build R2 Trydnt

10) Draw5PlayAll: Trade R1 Y1 Draw5playall

11) Trydnt: Trade R2 Y2 Trydnt

12) Draw5PlayAll: Build G1 Draw5playall

13) Trydnt: Discover Y2 Trydnt G3 G3

14) Draw5PlayAll: Trade G1 B1 Draw5playall

15) Trydnt: Trade R1 B1 Trydnt

16) Draw5PlayAll: Discover R2 Draw5playall G2 Ohgreat

17) Trydnt: Move B1 Trydnt G3

18) Draw5PlayAll: Build R1 Ohgreat

19) Trydnt: Build R1 Trydnt

20) Draw5PlayAll: Move B1 Draw5playall Ohgreat

21) Trydnt: Move R2 Trydnt G3

22) Draw5PlayAll: Trade R1 Y1 Ohgreat

23) Trydnt: Build Y2 G3

24) Draw5PlayAll: Build Y2 Draw5playall

25) Trydnt: Discover Y2 G3 G2 G2

26) Draw5PlayAll: Discover Y1 Draw5playall B2 Huh

27) Trydnt: Build Y3 G3

28) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build Y3 Ohgreat
Build B1 Ohgreat

29) Trydnt: Sacrifice Y3 G3
Move Y2 G3 G2
Move Y2 G2 Draw5playall
Move Y2 G2 Draw5playall
Catastrophe Draw5playall Y
	Trydnt: https://d1ia71hq4oe7pn.cloudfront.net/photo/67471171-720px.jpg
	Draw5PlayAll: Huh?
	Trydnt: thought it would link. it's a picture of a bluebird



34965)
Variants: "Unrated"
Started: 2019.2.6, Ended: 2019.2.22
Participants: BloodRumpus (S), wil (N)
Winner: BloodRumpus

1) wil: H Y2 B1 G3

2) BloodRumpus: Homeworld B3 G2 Y3
	wil: Thx 4 d challenge!

3) wil: B G1 Wil

4) BloodRumpus: Build Y1 Bloodrumpus

5) wil: T G1 B1 Wil

6) BloodRumpus: Build Y1 Bloodrumpus

7) wil: B B1 Wil

8) BloodRumpus: Discover Y1 Bloodrumpus G1 Foo

9) wil: D B1 Wil G3 G3

10) BloodRumpus: Build Y1 Foo

11) wil: B B2 Wil

12) BloodRumpus: Build Y2 Bloodrumpus

13) wil: D B2 Wil Y3 Y3

14) BloodRumpus: Build Y2 Foo



34615)
Variants: "Hard time"
Started: 2019.2.8, Ended: 2019.2.10
Participants: Trydnt (S), para (N)
Winner: para

1) para: Homeworld G3 B1 R3



34960)
Started: 2019.2.8, Ended: 2019.8.20
Participants: para (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B2 Y3 G3
	ts52: Have a good game!

2) para: Homeworld G3 B1 R3

3) ts52: Build G1 Ts52

4) para: Build R1 Para
	para: Good game!

5) ts52: Build G1 Ts52

6) para: Build R1 Para

7) ts52: Trade G1 R1 Ts52



34981)
Started: 2019.2.8, Ended: 2019.8.20
Participants: para (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld B1 Y3 G3

2) para: Homeworld G3 B2 R3

3) ts52: Build G1 Ts52

4) para: Build R1 Para

5) ts52: Build G1 Ts52

6) para: Build R1 Para

7) ts52: Trade G1 B1 Ts52



35009)
Variants: "Hard time"
Started: 2019.2.13, Ended: 2019.3.7
Participants: goulo (S), deanthebean (N)
Winner: goulo

1) deanthebean: Homeworld B2 R3 G3
	goulo: howdy!
	deanthebean: Hi. Enjoy the game!

2) goulo: Homeworld B1 R3 G3

3) deanthebean: Build G1 Deanthebean

4) goulo: Build G1 Goulo

5) deanthebean: Trade G1 Y1 Deanthebean

6) goulo: Trade G1 Y1 Goulo

7) deanthebean: Build G1 Deanthebean

8) goulo: Build G1 Goulo

9) deanthebean: Trade G1 B1 Deanthebean

10) goulo: Trade G1 B1 Goulo

11) deanthebean: Build B2 Deanthebean

12) goulo: Build B2 Goulo

13) deanthebean: Discover B1 Deanthebean G1 Sun

14) goulo: Trade B1 R1 Goulo

15) deanthebean: Build B1 Deanthebean

16) goulo: Build B3 Goulo

17) deanthebean: Build B3 Sun

18) goulo: Discover B3 Goulo Y2 Flavo

19) deanthebean: Trade B3 Y3 Sun

20) goulo: Move B3 Flavo Sun

21) deanthebean: Move B1 Deanthebean Sun

22) goulo: Sacrifice R1 Goulo
Attack Y3 Sun

23) deanthebean: Build Y1 Deanthebean

24) goulo: Build B3 Sun
Catastrophe Sun B

25) deanthebean: Build Y2 Deanthebean

26) goulo: Build Y2 Goulo

27) deanthebean: Trade Y1 R1 Deanthebean

28) goulo: Trade Y1 R1 Goulo

29) deanthebean: Discover B2 Deanthebean G1 Proxima

30) goulo: Discover B2 Goulo Y2 Flavo

31) deanthebean: Move Y1 Deanthebean Proxima

32) goulo: Move R1 Goulo Flavo

33) deanthebean: Build Y1 Proxima

34) goulo: Trade B2 G2 Flavo

35) deanthebean: Build B1 Proxima

36) goulo: Build R1 Flavo

37) deanthebean: Trade B2 R2 Proxima

38) goulo: Move R1 Flavo Sun

39) deanthebean: Build R2 Proxima

40) goulo: Sacrifice G2 Flavo
Build R2 Flavo
Build R3 Sun

41) deanthebean: Trade Y1 G1 Proxima

42) goulo: Build G2 Goulo

43) deanthebean: Build G2 Deanthebean

44) goulo: Move G2 Goulo Flavo

45) deanthebean: Sacrifice G3 Deanthebean
Build G2 Deanthebean
Build G3 Deanthebean
Build G3 Proxima

46) goulo: Move G2 Flavo Proxima
Catastrophe Proxima G

47) deanthebean: Discover G2 Deanthebean Y1 Barnard

48) goulo: Sacrifice Y2 Goulo
Move R3 Sun Deanthebean
Move Y3 Sun Deanthebean

	deanthebean: Well played! dismal game from my PoV. 
	goulo: thanks!


34968)
Variants: "Hard time"
Started: 2019.2.16, Ended: 2019.2.19
Participants: Draw5PlayAll (S), wil (N)
Winner: Draw5PlayAll



34978)
Variants: "Unrated"
Started: 2019.2.17, Ended: 2019.6.1
Participants: Mathematician42 (S), wil (N)
Winner: wil

1) wil: H B1 Y2 G3

2) Mathematician42: Homeworld Y3 B2 G3

3) wil: B G1 Wil

4) Mathematician42: Build G1 Mathematician42

5) wil: T G1 B1 Wil

6) Mathematician42: Build G1 Mathematician42

7) wil: B B1 Wil

8) Mathematician42: Trade G1 Y1 Mathematician42

9) wil: D B1 Wil Y3 Y3

10) Mathematician42: Build G1 Mathematician42

11) wil: B B2 Wil

12) Mathematician42: Discover G1 Mathematician42 G1 G1

13) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil

14) Mathematician42: Build Y1 Mathematician42
	Mathematician42: Oh wow

15) wil: S B2 Wil
T B3 G3 Wil
T B3 G3 Y3

16) Mathematician42: Build G2 Mathematician42

17) wil: M B2 Y3 G1

18) Mathematician42: Trade Y1 R1 Mathematician42

19) wil: B B2 Wil

20) Mathematician42: Build Y1 Mathematician42
	Mathematician42: Sorry for the delay. I'm really busy with school projects and homework

21) wil: B G2 Y3
	wil: No worries, have you shared this game
	wil: Does your school.have a chess club?

22) Mathematician42: Discover G1 Mathematician42 Y1 Y1
	Mathematician42: With a couple of people. There is a chess club, I think I might join next year

23) wil: S G3 Y3
B G2 Wil
B G3 Y3
B B3 G1
	wil: What grade are.you in now? Fav studies?

24) Mathematician42: Move G1 Y1 Y3
	Mathematician42: I'm in the 9th grade, soon to be in 10th. My favorite subjects at school are mathematics, sciences (especially physics), and music

25) wil: T G2 R2 Y3
	wil: Good on ya, absorb those studies it will pay off

26) Mathematician42: Move G1 Y3 Wil
	Mathematician42: Thanks

27) wil: S R2 Y3
A G1 Wil
A G1 G1

28) Mathematician42: Move R1 Mathematician42 G1

29) wil: S G3 Wil
B G2 Y3
B G3 Wil
B B3 G1

30) Mathematician42: Attack G1 G1

31) wil: T B3 R3 G1

32) Mathematician42: Sacrifice Y1 Mathematician42
Move G1 G1 Y3

33) wil: S B3 G1
T G3 Y3 Y3
T G2 R2 Y3
T G2 R2 Wil

34) Mathematician42: Sacrifice G3 Mathematician42
Build G2 Y3
Build G2 Y3
Build G3 Mathematician42

35) wil: S R2 Wil
A G2 Y3
A R1 G1

36) Mathematician42: Build G3 Mathematician42

37) wil: S Y3 Y3
M G2 Y3 G1
M G2 G1 Mathematician42
M R3 G1 Mathematician42
C Mathematician42 G

	wil: Good game
	Mathematician42: Good game, sorry for not responding, school has been really crazy lately.


34943)
Variants: "Unrated"
Started: 2019.2.17, Ended: 2019.4.4
Participants: Trydnt (S), Mathematician42 (N)
Winner: Trydnt

1) Mathematician42: Homeworld B1 R2 G3

2) Trydnt: Homeworld B1 G3 B3 *

3) Mathematician42: Build G1 Mathematician42

4) Trydnt: Build B1 Trydnt

5) Mathematician42: Build G1 Mathematician42

6) Trydnt: Trade B3 Y3 Trydnt

7) Mathematician42: Trade G1 Y1 Mathematician42

8) Trydnt: Build B2 Trydnt

9) Mathematician42: Build G1 Mathematician42

10) Trydnt: Discover B2 Trydnt G2 G2

11) Mathematician42: Trade G1 R1 Mathematician42

12) Trydnt: Build B2 G2

13) Mathematician42: Build G1 Mathematician42

14) Trydnt: Build B2 Trydnt

15) Mathematician42: Discover R1 Mathematician42 G3 G3

16) Trydnt: Build B3 G2

17) Mathematician42: Move G1 Mathematician42 G3

18) Trydnt: Trade B3 Y3 G2

19) Mathematician42: Build Y1 Mathematician42

20) Trydnt: Build B3 G2

21) Mathematician42: Build Y1 Mathematician42

22) Trydnt: Trade B2 R2 G2

23) Mathematician42: Move Y1 Mathematician42 G3

24) Trydnt: Build B2 G2

25) Mathematician42: Build Y2 Mathematician42

26) Trydnt: Build Y2 G2

27) Mathematician42: Build G1 Mathematician42
	Mathematician42: Sorry for the delay. I'm really busy with school projects and homework

28) Trydnt: Discover B3 G2 Y3 Y3

29) Mathematician42: Move G1 Mathematician42 Y3

30) Trydnt: Build R1 G2

31) Mathematician42: Move R1 G3 Mathematician42

32) Trydnt: Move R2 G2 Y3

33) Mathematician42: Move Y1 G3 G2

34) Trydnt: Sacrifice Y3 G2
Move R1 G2 Y3
Move R1 Y3 Mathematician42
Move R2 Y3 Mathematician42
Catastrophe Mathematician42 R

	Mathematician42: Good game
	Trydnt: well played
	Mathematician42: Thank you


35033)
Variants: "Hard time"
Started: 2019.2.25, Ended: 2019.4.9
Participants: Babamots (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 G3 B3
	Babamots: May your fleet fight valiantly!
	Simon: Yours too, enjoy!

2) Babamots: Homeworld B2 R1 G3

3) Simon: Build B1 Simon

4) Babamots: Build G1 Babamots

5) Simon: Trade B1 R1 Simon

6) Babamots: Trade G3 R3 Babamots

7) Simon: Build R2 Simon

8) Babamots: Build R2 Babamots

9) Simon: Trade R2 Y2 Simon

10) Babamots: Trade R3 Y3 Babamots

11) Simon: Build R2 Simon
	Babamots: Looks like you've been on break from SDG since about the time I started. How is it being back?
	Simon: I've been here in 2014-2017, yeah, mostly for Homeworlds. I don't get to play it in real life anymore and missed it; at least Zendo happens often. The player page on SDG still loads as slowly as ever. :-) But the full site rewrite seems to be underway and healthy.

12) Babamots: Build R2 Babamots

13) Simon: Discover R1 Simon G2 G2

14) Babamots: Trade R2 B2 Babamots

15) Simon: Build R2 Simon

16) Babamots: Discover R2 Babamots G3 Orion

17) Simon: Trade R2 G2 Simon

18) Babamots: Build G1 Babamots

19) Simon: Discover R2 Simon B2 B2

20) Babamots: Discover G1 Babamots R3 Romulus

21) Simon: Build Y1 Simon

22) Babamots: Build G1 Babamots

23) Simon: Sacrifice G2 Simon
Build R2 G2
Build R3 B2

24) Babamots: Build R3 Orion

25) Simon: Sacrifice Y2 Simon
Move R1 G2 Orion
Move R2 G2 Orion
Catastrophe Orion Red

26) Babamots: Build Y1 Babamots

27) Simon: Trade R3 G3 B2

28) Babamots: Build G2 Babamots

29) Simon: Build G2 B2

30) Babamots: Build G2 Romulus

31) Simon: Trade G3 Y3 B2

32) Babamots: Sacrifice B2 Babamots
Trade G2 Y2 Romulus
Trade G1 R1 Babamots

33) Simon: Build R2 B2

34) Babamots: Build G1 Romulus

35) Simon: Discover R2 B2 G3 G3

36) Babamots: Discover G2 Babamots G3 Orion

37) Simon: Build Y1 B2

38) Babamots: Discover R1 Babamots Y3 Iconia

39) Simon: Build Y2 Simon

40) Babamots: Build Y2 Romulus

41) Simon: Trade Y3 B3 B2

42) Babamots: Sacrifice Y2 Romulus
Move G1 Romulus B2
Discover G1 B2 Y3 Tauceti

43) Simon: Move B3 B2 Romulus

44) Babamots: Discover Y2 Romulus G2 Gorn

45) Simon: Move R2 B2 Orion

46) Babamots: Sacrifice G2 Orion
Build G2 Tauceti
Build Y2 Gorn

47) Simon: Attack G1 Romulus

48) Babamots: Sacrifice G2 Tauceti
Build R2 Iconia
Build R3 Iconia

49) Simon: Sacrifice Y2 Simon
Move R2 Orion B2
Move R2 B2 Iconia
Catastrophe Iconia Red

50) Babamots: Trade Y1 R1 Babamots
	Babamots: Sorry to be so slow. That's the move I had intended all along, but I've been distracted lately and needed another chance to look it over.
	Draw5PlayAll: TauCeti?
	Babamots: Tau Ceti is a real star and one of the reported home systems of the Traveler.

51) Simon: Build B1 Romulus
	Simon: Ah, it's fine. 3 days per move is a very slow setting, there is no in problem spending that time.
	Babamots: I usually play must faster, more like two moves a day, but SDG has been a little lower on my priority list lately.

52) Babamots: Trade Y3 G3 Babamots

53) Simon: Build G2 Romulus
	Draw5PlayAll: By the way... is the Homeworlds tournament still going? If not, who won?
	Babamots: There are two games still being played for the tournament, and one more that still needs to start.

54) Babamots: Trade G1 Y1 Babamots

55) Simon: Trade B3 Y3 Romulus

56) Babamots: Discover Y2 Gorn Y3 Pakled

57) Simon: Build B1 Romulus

58) Babamots: Build Y2 Babamots

59) Simon: Move G2 B2 Tauceti

60) Babamots: Build G1 Babamots

61) Simon: Build R2 G3

62) Babamots: Move R1 Babamots Pakled

63) Simon: Sacrifice R2 G3
Attack G1 Tauceti
Pass

	Babamots: I missed that that would wreck my plan to get an r3. I think that's it for me. Maybe I'll get good enough to challenge you someday!
	Simon: Yeah, the game felt comfortable after my sac to kill 3 reds, I had build locations in all colors.

gg, looking forward to a rematch, I'll open a standing challenge for whenever you feel like it!
	Draw5PlayAll: Pakled sounds familiar...
	Babamots: In Star Trek, the Pakleds are a race that don't seem to be very bright. I make a world called Pakled when I'm feeling like I've made big mistakes.
	Draw5PlayAll: I remember that one now.


35038)
Variants: "Hard time"
Started: 2019.2.26, Ended: 2019.3.10
Participants: dlwillson (S), wil (N)
Winner: dlwillson

1) wil: H Y2 B1 G3

2) dlwillson: Homeworld Y3 B1 G3
	dlwillson: Yay! A game with Wil! How are you, Wil?

3) wil: B G1 Wil

4) dlwillson: B G1 Dlwillson
	wil: Alive!  Some issues, but coming along

5) wil: T G1 B1 Wil

6) dlwillson: T G3 B3 Dlwillson

7) wil: B B2 Wil

8) dlwillson: B B2 Dlwillson

9) wil: T B1 R1 Wil

10) dlwillson: T B2 R2 Dlwillson

11) wil: B R1 Wil

12) dlwillson: B G1 Dlwillson
	wil: Brain is working most time...age v stroke???

13) wil: T R1 Y1 Wil

14) dlwillson: Trade G1 Y1 Dlwillson

15) wil: D B2 Wil G3 G3

16) dlwillson: B B1 Dlwillson

17) wil: B B2 G3

18) dlwillson: Trade B3 G3 Dlwillson

19) wil: T B2 Y2 G3

20) dlwillson: D B1 Dlwillson G2 Field

21) wil: B B2 G3

22) dlwillson: D G1 Dlwillson B2 Sea

23) wil: M B2 G3 Field

24) dlwillson: B B3 Field

25) wil: S G3 Wil
B B3 Field
B B3 G3
B R1 Wil
C Field B

26) dlwillson: B G1 Sea

27) wil: T B3 G3 G3
	dlwillson: Nice move, Wil!

28) dlwillson: B G1 Dlwillson
	wil: We'll see, it seemed like a good idea

29) wil: B B1 G3

30) dlwillson: T G1 Y1 Sea

31) wil: M B2 G3 Sea

32) dlwillson: B Y2 Dlwillson

33) wil: S R1 Wil
A Y1 Sea

34) dlwillson: S Y1 Dlwillson
M G1 Sea G3

35) wil: S G3 G3
B B2 G3
B B3 G3
B B3 Sea

36) dlwillson: B G1 G3

37) wil: S Y2 G3
M B3 G3 Wil
D B1 G3 G2 G2
	dlwillson: I'm gonna need you to make some sort of mistake, sometime.

38) dlwillson: B R1 Dlwillson
	wil: I know that feeling and will probably oblige.

39) wil: B B3 G2

40) dlwillson: D Y2 Dlwillson G2 Field

41) wil: T B3 G3 Sea

42) dlwillson: B Y1 Field

43) wil: T B3 Y3 G2

44) dlwillson: M Y2 Field G3

45) wil: B G2 Sea

46) dlwillson: S G3 Dlwillson
B Y2 G3
B Y3 Field
B G3 Dlwillson

47) wil: S G3 Sea
B G3 Sea
B B3 G2
B B3 G2

48) dlwillson: S Y3 Field
M G1 G3 G2
M G1 G3 G2
M G1 Dlwillson G2
C G2 G

49) wil: B Y3 Sea
	dlwillson: Marvin the Martian would be satisfied.

50) dlwillson: B Y3 Field
	wil: Nice timing!

51) wil: S G3 Sea
B B1 Wil
B B3 Sea
B B3 G3

52) dlwillson: S R1 Dlwillson
A B2 G3

53) wil: S B2 Sea
T B3 R3 Sea
T B3 G3 Wil

54) dlwillson: S Y3 Field
M Y2 G3 Wil
M Y2 G3 Wil
M B2 G3 Field
C Wil Y

55) wil: D G2 Sea B3 B3

56) dlwillson: B G1 Dlwillson

57) wil: D R3 Sea Y3 Y3

58) dlwillson: B R1 Dlwillson

59) wil: B G1 Wil

60) dlwillson: B B2 Field

61) wil: T G1 Y1 Wil

62) dlwillson: B Y2 Field

63) wil: M B1 Wil Y3

64) dlwillson: D Y2 Field B3 Sky

65) wil: B Y2 Wil

66) dlwillson: B Y2 Field

67) wil: B G1 Wil

68) dlwillson: T Y2 G2 Sky

69) wil: M Y2 Wil Field

70) dlwillson: S Y2 Field
D B2 Field R3 Mars1

D B2 Field R3 Mars2

71) wil: S R1 Wil
A Y1 Field

72) dlwillson: S G2 Sky
B B3 Mars1
B R1 Dlwillson

73) wil: B Y2 Field

74) dlwillson: T R2 Y2 Dlwillson

75) wil: S Y2 Field
M Y1 Field Dlwillson
M Y1 Sea Dlwillson
C Dlwillson Y

76) dlwillson: Trade G3 Y3 Dlwillson

77) wil: S Y3 Sea
M G3 Wil Mars2
M B1 Y3 Dlwillson
M B3 G3 Dlwillson
	wil: Nice

78) dlwillson: S Y3 Dlwillson
M B2 Mars1 Wil
M B3 Mars1 Wil
M B2 Mars2 Wil
C Wil B
	wil: If ya gotta go, leave a good corpse!



35040)
Variants: "Hard time"
Started: 2019.2.28, Ended: 2019.3.4
Participants: speardane (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) speardane: Homeworld Y3 B2 G3

3) wil: B G1 Wil

4) speardane: Build G1 Speardane

5) wil: T G1 B1 Wil
	speardane: For the tournament. Good luck!

6) speardane: Trade G3 R3 Speardane
	Draw5PlayAll: Oh... I did not know the tourney was still going on, nor that the spear Dane account was operational.
	speardane: @Draw5PlayAll: The two things are related. :) wil has three games left to play, and this is one of them.

7) wil: B B1 Wil

8) speardane: Build G1 Speardane

9) wil: D B1 Wil G3 G3

10) speardane: Discover G1 Speardane Y1 Delos

11) wil: B B2 Wil

12) speardane: Build G1 Delos

13) wil: D B2 Wil Y3 Y3
	Draw5PlayAll: Are you (spear) going to respond to the other challenges?
	wil: Arent people.allowed to reject.challenges?

14) speardane: Discover G1 Delos B3 Lebling

15) wil: S G3 Wil
B B2 Y3
B B3 G3
B B3 Wil
	speardane: If I ever figure out how to make speardane run autonomously, I'll make it respond to challenges. As long as I'm running it manually, nah. If you have a C++ compiler you can download and play against it offline: https://github.com/Quuxplusone/Homeworlds
	wil: Speardane is an ai?

16) speardane: Build G2 Lebling

17) wil: T B3 Y3 G3

18) speardane: Trade G2 Y2 Lebling
	wil: If I am playing an ai, does it learn from play

19) wil: B B3 G3
	speardane: Tournament contestant "speardane" is an AI (written and operated by ajo). It doesn't "evolve" or "learn" from play; it's more of an expert system consisting of a bag of heuristics.

20) speardane: Build G2 Lebling

21) wil: T B3 R3 G3

22) speardane: Discover G1 Delos B3 Kotok

23) wil: T B3 G3 Wil

24) speardane: Sacrifice G2 Lebling
Build G2 Speardane
Build G2 Kotok
	wil: Ajo, have you learned anything from speardane?

25) wil: B B3 G3
	speardane: Not really. Speardane's heuristics reflect my biases when writing it, so I'm probably the person least likely to learn something new by playing against it.
	wil: I meant by watching its actions with others

26) speardane: Trade G1 Y1 Kotok

27) wil: T B3 G3 G3

28) speardane: Discover G2 Speardane Y1 Delos

29) wil: B B3 G3

30) speardane: Build G1 Delos

31) wil: D G3 G3 Y1 Y1

32) speardane: Sacrifice G2 Delos
Build Y2 Kotok
Build G2 Kotok

33) wil: B G2 Y1

34) speardane: Trade G2 R2 Kotok
	wil: Cut and paste my action, c&p computer response?
	wil: What is the methodology you go thru?

35) wil: B R1 G3
	speardane: That's right. Minor reformatting, e.g. the AI will output literally "convert g2 to r2 at Kotok" and then I input that into SDG as "trade g2 r2 Kotok", but yep, the human is in the loop purely as a data-entry specialist. :)

36) speardane: Build G2 Delos

37) wil: M R3 G3 Delos

38) speardane: Sacrifice Y2 Kotok
Discover G1 Delos Y2 Minsky
Move G2 Delos Minsky

39) wil: M R3 Delos Minsky

40) speardane: Sacrifice Y2 Lebling
Move G1 Minsky Y1
Move G2 Minsky Y1
Catastrophe Y1 Green

41) wil: T B3 R3 G3

42) speardane: Build Y1 Kotok

43) wil: B B3 G3

44) speardane: Discover Y1 Kotok G2 Delos

45) wil: T B3 G3 G3

46) speardane: Discover Y1 Delos B3 Licklider

47) wil: D G3 G3 Y1 Y1

48) speardane: Build Y2 Kotok

49) wil: M R1 G3 Y1

50) speardane: Discover Y2 Kotok G2 Delos

51) wil: B R1 G3

52) speardane: Move Y2 Delos Lebling

53) wil: D R3 G3 G1 G1

54) speardane: Build G2 Kotok

55) wil: B R1 G1

56) speardane: Sacrifice G2 Kotok
Build G2 Lebling
Build R2 Kotok

57) wil: M R1 Y1 Speardane

58) speardane: Sacrifice G2 Lebling
Build G2 Speardane
Build G2 Kotok

59) wil: A G1 Speardane

60) speardane: Sacrifice G2 Kotok
Build G2 Lebling
Build R2 Kotok

61) wil: S Y3 G3
M R1 G1 Speardane
M R3 G1 Speardane
M G3 Y1 Speardane
C Speardane R

62) speardane: Pass

63) wil: B G1 Speardane
C Speardane G
	speardane: Good game!
	wil: Did the computer pass, or you call it quits?
	wil: Must be tough to watch and not modify moves
	speardane: The AI says "pass" when it's checkmated: there's no move better than "pass" if they all lead to defeat.
	wil: Interesting, kudos on writing and playing!!



35045)
Variants: "Hard time"
Started: 2019.3.1, Ended: 2019.3.28
Participants: Trydnt (S), Felix (N)
Winner: Trydnt

1) Felix: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B2 G2 Y3 *
	Felix: Good luck and have fun as always :)

3) Felix: Build G1 Felix

4) Trydnt: Build Y1 Trydnt
	Felix: Ooh, the clone-star homeworld. I like it!

5) Felix: Trade G1 Y1 Felix

6) Trydnt: Build Y2 Trydnt
	Trydnt: thanks I think this may be the most effective counter to the hw b2 y1 g3 setup. anything else leaves you in a tricky bind
	Felix: I've never actually seen it or had it used against a 1-2 star opening, so I'm curious to see how it plays out!

7) Felix: Discover Y1 Felix G3 Out

8) Trydnt: Trade Y2 R2 Trydnt

9) Felix: Build Y2 Out

10) Trydnt: Move R2 Trydnt Out

11) Felix: Move Y2 Out Trydnt

12) Trydnt: Trade Y3 R3 Trydnt

13) Felix: Build Y2 Trydnt

14) Trydnt: Attack Y2 Trydnt

15) Felix: Build Y2 Trydnt
Catastrophe Trydnt Yellow

16) Trydnt: Attack Y1 Out

17) Felix: Build G1 Felix
	Felix: I don't like this at all :)

18) Trydnt: Build Y1 Out
	Trydnt: I thought you'd move the y1 to my hw for the catastrophe so I wouldn't get it

19) Felix: Discover G1 Felix B3 Humphrey
	Felix: That would have been smarter!

20) Trydnt: Build Y2 Out

21) Felix: Build G1 Felix

22) Trydnt: Sacrifice Y2 Out
Move R2 Out Felix
Move R2 Felix Humphrey

23) Felix: Build G1 Felix

24) Trydnt: Attack G1 Humphrey

25) Felix: Trade G1 R1 Felix

26) Trydnt: Build Y2 Out

27) Felix: Build R1 Felix

28) Trydnt: Build R1 Humphrey

29) Felix: Discover R1 Felix B3 Grinch

30) Trydnt: Build R2 Trydnt

31) Felix: Build R2 Felix

32) Trydnt: Trade R2 Y2 Trydnt

33) Felix: Discover R2 Felix Y3 Opus

34) Trydnt: Trade R2 Y2 Humphrey

35) Felix: Build R2 Felix

36) Trydnt: Build Y3 Trydnt

	Felix: Oops. sorry to end it that way!


35047)
Variants: "Hard time"
Started: 2019.3.3, Ended: 2019.3.5
Participants: wil (S), mneme (N)
Winner: wil



34946)
Variants: "Unrated, Hard time"
Started: 2019.3.8, Ended: 2019.3.11
Participants: Trydnt (S), wil (N)
Winner: Trydnt



35016)
Variants: "Hard time"
Started: 2019.3.8, Ended: 2019.3.11
Participants: Trydnt (S), wil (N)
Winner: Trydnt



35018)
Variants: "Unrated"
Started: 2019.3.8, Ended: 2019.4.6
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Trydnt: Homeworld G2 B2 R3 *

3) wil: B G1 Wil

4) Trydnt: Build R1 Trydnt

5) wil: B G1 Wil

6) Trydnt: Trade R1 Y1 Trydnt

7) wil: T G1 Y1 Wil

8) Trydnt: Build Y2 Trydnt

9) wil: T G1 R1 Wil

10) Trydnt: Build Y2 Trydnt

11) wil: D Y1 Wil G3 G3

12) Trydnt: Move Y2 Trydnt G3

13) wil: D Y1 G3 G2 G2

14) Trydnt: Build R1 Trydnt

15) wil: B G1 Wil

16) Trydnt: Trade R1 B1 Trydnt

17) wil: B G1 Wil

18) Trydnt: Move B1 Trydnt G3

19) wil: B R1 Wil

20) Trydnt: Build B1 G3

21) wil: M G1 Wil G3

22) Trydnt: Trade B1 R1 G3

23) wil: B G1 G3

24) Trydnt: Sacrifice Y2 G3
Discover R1 G3 G2 G22
Discover Y1 Trydnt G3 G33
	wil: I'm calling that move an 'ever in ton'

25) wil: M R1 Wil G3

26) Trydnt: Sacrifice R1 G22
Attack R1 G3

27) wil: S G3 Wil
B G2 G3
B Y2 G2
B G3 Wil
C G3 G

28) Trydnt: Build Y2 Trydnt

29) wil: M Y1 G2 G33

30) Trydnt: Build Y3 G33

31) wil: B Y3 G2

32) Trydnt: Discover Y3 G33 G2 G22

33) wil: D Y2 G2 Y3 Y3

34) Trydnt: Build R1 Trydnt

35) wil: D Y1 G33 G1 G1

36) Trydnt: Discover Y3 G22 B3 B3

37) wil: B R1 Wil

38) Trydnt: Move Y2 Trydnt B3

39) wil: B R2 Wil

40) Trydnt: Trade Y2 R2 B3

41) wil: M R2 Wil G33

42) Trydnt: Sacrifice Y2 Trydnt
Discover Y1 G33 G1 G11
Move R1 Trydnt B3

43) wil: B R2 G33

44) Trydnt: Move R2 B3 G1

45) wil: M R1 Wil Y3

46) Trydnt: Move Y3 B3 Trydnt

47) wil: B R3 G33

48) Trydnt: Build R3 G1

49) wil: S Y1 G1
M R2 G33 G11

50) Trydnt: Sacrifice Y1 G11
Move R3 G1 B3

51) wil: B G2 Wil

52) Trydnt: Move R3 Trydnt G11

53) wil: M G1 Wil Y3

54) Trydnt: Trade R3 G3 B3

55) wil: S G3 Wil
B G3 Wil
B R3 Y3
B Y1 G2

56) Trydnt: Attack R2 G11

57) wil: S Y2 Y3
M R1 Y3 G11
M R2 G33 G11
C G11 R

58) Trydnt: Build G1 B3

59) wil: D G1 Y3 Y1 Y1

60) Trydnt: Build Y2 Trydnt

61) wil: S G3 Wil
B R1 Wil
B Y2 G2
B G3 Wil

62) Trydnt: Move Y2 Trydnt B3

63) wil: S Y2 G2
M Y3 G2 G1
M G2 Wil B3

64) Trydnt: Sacrifice G3 B3
Build R2 G1
Build R2 G1
Build R3 B3

65) wil: S G2 B3
B G2 Wil
B G3 Y1

66) Trydnt: Build Y2 B3

67) wil: B Y2 G2

68) Trydnt: Trade R1 B1 B3

69) wil: T R1 B1 Wil

70) Trydnt: Build R1 B3

71) wil: M B1 Wil G33

72) Trydnt: Move R3 B3 G2

73) wil: S Y1 G2
M Y2 G2 G33

74) Trydnt: Sacrifice Y2 B3
Move R3 G2 B3
Discover B1 B3 G2 G2

75) wil: S G3 Wil
B Y1 G33
B Y2 G1
B G3 Wil

76) Trydnt: Attack Y2 G1

77) wil: S R3 G33
A R2 G1
A R2 G1
A Y2 G1

78) Trydnt: Build R1 G1
Catastrophe G1 R

79) wil: S G3 Wil
B G3 Wil
B B1 G33
B R1 Wil

80) Trydnt: Move R1 B3 Trydnt

81) wil: S G3 Wil
B G3 Wil
B R2 Wil
B R2 Y3

82) Trydnt: Build R2 Trydnt

83) wil: M R2 Wil B3

84) Trydnt: Move R1 Trydnt Y3

85) wil: M R2 Y3 Y1

86) Trydnt: Build R3 Trydnt

87) wil: A Y2 B3

88) Trydnt: Sacrifice R2 Trydnt
Attack R2 B3
Attack Y2 B3

89) wil: A R1 Y3

90) Trydnt: Move R3 Trydnt G33

91) wil: S Y3 G1
M Y2 G1 Trydnt
M Y2 G33 Trydnt
M Y1 G33 Trydnt
C Trydnt Y

	wil: What have you done with trydnt?
	wil: Late night play was your.forte...
	Trydnt: damn. I think I thought I was banker in this on that last move so didn't realize that third yellow could get in from the g1. silly mistake
	Trydnt: you were pretty ahead though. see you on the next one


35046)
Variants: "Unrated"
Started: 2019.3.8, Ended: 2019.4.12
Participants: fogus (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 G1 R3
	Trydnt: have you played before?

2) fogus: Homeworld B2 R1 G3
	Trydnt: I'd recommend "homeworld b2 r1 g3" as your starter. it's a good one for beginners.

3) Trydnt: Build R1 Trydnt
	fogus: I have played, but it's both been a while and I was also quite confused. :)

4) fogus: Build G1 Fogus
	Trydnt: So you essentially need blue and green in the three pieces you start with (2 stars and a ship). This will allow you to grow and then trade for other colors so you don't get locked out of any color. if your opponent starts building the bigger ships of a certain color and you don't have any you will struggle to catch up before they get a pretty big material advantage. It's all about keeping a diverse collection of ships and spreading them in a way you can defend while you keep growing. there are things to watch out for like having too many of a color in one place or building the last of a certain size ship that might open up a larger one for your opponent to grow

5) Trydnt: Trade R1 Y1 Trydnt

6) fogus: Build G1 Fogus

7) Trydnt: Build R1 Trydnt
	fogus: So one thing that I've found quite confusing is the tactic of shutting people out of certain colors. Therefore, my move is an attempt to try out that path. :)

8) fogus: Trade G1 Y1 Fogus
	Trydnt: yes it's generally good if you can lock your opponent out of a color but it is slightly less effective with green if you opponent moves to green stars

9) Trydnt: Trade R1 G1 Trydnt

10) fogus: Build G2 Fogus

11) Trydnt: Build G2 Trydnt

12) fogus: Discover Y1 Fogus G3 Foo
	fogus: Is there a general rule of thumb around achieving the first 2-pip piece? Instinctively it seems like a good thing, but I'm unsure about the deeper implications.

13) Trydnt: Discover G2 Trydnt B2 B2

14) fogus: Trade G3 Y3 Fogus

15) Trydnt: Build R1 Trydnt
	Draw5PlayAll: Do not get the first 2 if your opponent gets the first 3...
	Trydnt: yeah bigger pieces are better but always be warry of taking the last piece of a certain size when there are larger pieces behind it that you'll open up for your opponent

16) fogus: Trade G1 B1 Fogus

17) Trydnt: Build R1 Trydnt

18) fogus: Build B1 Fogus
	fogus: That last move felt like a flail on my part. I can't see a way to progress my piece count, but at the same time I want to diversify if possible.

19) Trydnt: Move R1 Trydnt B2



35057)
Variants: "Hard time"
Started: 2019.3.9, Ended: 2019.3.25
Participants: Draw5PlayAll (S), deanthebean (N)
Winner: Draw5PlayAll

1) deanthebean: Homeworld R2 B1 G3
	deanthebean: Hello. Enjoy the game!

2) Draw5PlayAll: Homeworld B1 G2 B3 *

3) deanthebean: Build G1 Deanthebean

4) Draw5PlayAll: Build B1 Draw5playall

5) deanthebean: Build G1 Deanthebean

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) deanthebean: Trade G1 Y1 Deanthebean

8) Draw5PlayAll: Build B2 Draw5playall

9) deanthebean: Build Y1 Deanthebean

10) Draw5PlayAll: Discover B2 Draw5playall G3 Success

11) deanthebean: Trade G1 R1 Deanthebean

12) Draw5PlayAll: Build B2 Success

13) deanthebean: Build G1 Deanthebean

14) Draw5PlayAll: Trade B2 R2 Success

15) deanthebean: Move G3 Deanthebean Success

16) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move R2 Success Deanthebean
Move B2 Success Deanthebean
Pass

17) deanthebean: Sacrifice Y1 Deanthebean
Move G3 Success Deanthebean
	Draw5PlayAll: This just got weird!!

18) Draw5PlayAll: Attack G1 Deanthebean
	deanthebean: Yes. 
	Draw5PlayAll: I think this is a draw, but let me see if I can punish your moves.

19) deanthebean: Attack B2 Deanthebean
	Draw5PlayAll: I wish I had a large green at home...
	deanthebean: I'm glad you don't ;)

20) Draw5PlayAll: Attack B2 Deanthebean
	deanthebean: Is there any rule to prevent repetitions here. I couldn't find one but I can't find an "offer draw option" either 
	Draw5PlayAll: As you are contesting my ladder spot, you have the obligation to resign if the game is drawn.

	deanthebean: That's highly annoying and I can't see a sensible alternative to repeating. 
	Draw5PlayAll: If you want the rating points, challenge me to a 2-mover and I can resign.
	Draw5PlayAll: Or else just ask our developer to make that change for future games.
	deanthebean: Thanks. I'm not that bothered tbh. 


35065)
Started: 2019.3.10, Ended: 2019.7.26
Participants: theMadHunter249 (S), The_Unicyclone (N)
Winner: The_Unicyclone

1) The_Unicyclone: Homeworld G3 B2 Y3

2) theMadHunter249: Homeworld G3 B2 R3

3) The_Unicyclone: Build Y1 The_unicyclone

4) theMadHunter249: Build R1 Themadhunter249

5) The_Unicyclone: Trade Y3 R3 The_unicyclone

6) theMadHunter249: Trade R1 Y1 Themadhunter249

7) The_Unicyclone: Build R1 The_unicyclone
	The_Unicyclone: Ah, the old mirroring trick. Suit up, laser man, because my suit is 100% proof!

8) theMadHunter249: Discover Y1 Themadhunter249 R1 Battleplanet

9) The_Unicyclone: Build Y1 The_unicyclone

10) theMadHunter249: Trade R3 Y3 Themadhunter249

11) The_Unicyclone: Trade Y1 B1 The_unicyclone

12) theMadHunter249: Build Y1 Themadhunter249

13) The_Unicyclone: Discover B1 The_unicyclone G1 Stuffmart

14) theMadHunter249: Build Y2 Themadhunter249

15) The_Unicyclone: Build Y2 The_unicyclone

16) theMadHunter249: Trade Y3 R3 Themadhunter249

17) The_Unicyclone: Trade Y2 B2 The_unicyclone

18) theMadHunter249: Trade Y2 R2 Themadhunter249

19) The_Unicyclone: Build Y2 The_unicyclone

20) theMadHunter249: Move R2 Themadhunter249 Stuffmart

21) The_Unicyclone: Sacrifice Y1 The_unicyclone
Move B1 Stuffmart The_unicyclone

22) theMadHunter249: Build Y1 Themadhunter249

23) The_Unicyclone: Build Y2 The_unicyclone

24) theMadHunter249: Trade Y1 B1 Themadhunter249

25) The_Unicyclone: Move B2 The_unicyclone Battleplanet

26) theMadHunter249: Move Y1 Battleplanet Themadhunter249

27) The_Unicyclone: Move Y2 The_unicyclone Battleplanet

28) theMadHunter249: Move B1 Themadhunter249 Stuffmart

29) The_Unicyclone: Trade B1 G1 The_unicyclone

30) theMadHunter249: Trade Y1 B1 Themadhunter249

31) The_Unicyclone: Build Y1 The_unicyclone

32) theMadHunter249: Trade B1 Y1 Stuffmart

33) The_Unicyclone: Sacrifice G1 The_unicyclone
Build Y2 Battleplanet

34) theMadHunter249: Build Y3 Themadhunter249

35) The_Unicyclone: Sacrifice Y2 The_unicyclone
Move Y2 Battleplanet Themadhunter249
Move Y2 Battleplanet Themadhunter249
Catastrophe Themadhunter249 Yellow

36) theMadHunter249: Trade B1 Y1 Themadhunter249

37) The_Unicyclone: Build Y2 The_unicyclone



35063)
Started: 2019.3.11, Ended: 2019.5.29
Participants: wil (S), ts52 (N)
Winner: wil

1) ts52: Homeworld Y1 B2 G3
	ts52: This is for the 2018 homeworlds tournament. I thought we might have already played our match, but couldn't find it in my history. Have a good game!

2) wil: H Y3 B1 G3
	wil: Thanks, too cool!

3) ts52: Build G1 Ts52

4) wil: B G1 Wil

5) ts52: Trade G1 B1 Ts52

6) wil: T G1 B1 Wil

7) ts52: Build B2 Ts52

8) wil: B B2 Wil

9) ts52: Discover B2 Ts52 G3 Kermit

10) wil: D B1 Wil Y2 Y2

11) ts52: Build B3 Kermit

12) wil: S G3 Wil
B B3 Wil
B B3 Y2
P

13) ts52: Trade B2 Y2 Kermit

14) wil: T B2 G2 Wil

15) ts52: Build B2 Kermit

16) wil: T B3 R3 Y2

17) ts52: Trade B3 R3 Kermit

18) wil: B G1 Wil

19) ts52: Build G1 Ts52

20) wil: T G1 Y1 Wil

21) ts52: Build Y1 Kermit

22) wil: D Y1 Wil G2 G2

23) ts52: Discover Y2 Kermit G2 Robin

24) wil: B G1 Wil

25) ts52: Build R1 Kermit

26) wil: M G2 Wil Y2

27) ts52: Discover B1 Ts52 G3 Oscar

28) wil: B R1 Y2

29) ts52: Trade G1 R1 Ts52

30) wil: D R1 Y2 Y3 Y3

31) ts52: Build G1 Ts52

32) wil: T B3 R3 Wil

33) ts52: Discover G1 Ts52 Y3 Bigbird
	Draw5PlayAll: This is still going on?
	wil: No

34) wil: B R2 Y2

35) ts52: Build Y2 Robin

36) wil: M R2 Y2 Bigbird

37) ts52: Move R3 Kermit Robin

38) wil: B R2 Y2

39) ts52: Build R2 Robin

40) wil: M R2 Y2 Oscar

41) ts52: Build G1 Ts52

42) wil: A B1 Oscar

43) ts52: Move B2 Kermit G2

44) wil: M Y1 G2 Oscar

45) ts52: Move R3 Robin Oscar

46) wil: S Y1 Oscar
D B1 Oscar Y1 Y1

47) ts52: Attack R2 Oscar

48) wil: A G1 Bigbird

49) ts52: M Y2 Robin Oscar

50) wil: B B2 Y2
	wil: This is another fine mess you've gotten me in

51) ts52: Move R3 Oscar Y1
	ts52: That does seem to be my specialty. ;)

52) wil: M B1 Y2 Bigbird

53) ts52: Attack B1 Y1

54) wil: S G2 Y2
B B3 Y2
B B3 Bigbird

55) ts52: B B3 G2

56) wil: B G2 Bigbird

57) ts52: M Y1 Kermit G2

58) wil: M B3 Y2 Y3

59) ts52: M B1 Y1 Robin

60) wil: M G1 Bigbird Ts52

61) ts52: M G1 Ts52 Oscar

62) wil: S G1 Wil
B G1 Ts52

63) ts52: Move R3 Y1 Oscar

64) wil: M G2 Bigbird Ts52
C Ts52 G

65) ts52: Move R3 Oscar Ts52
	wil: U got this

66) wil: T B3 G3 Bigbird

67) ts52: Trade R1 G1 Ts52
	ts52: It's not over till it's over, but yikes...

68) wil: B B3 Bigbird

69) ts52: Build Y1 Robin

70) wil: M G3 Bigbird Robin

71) ts52: Move R2 Robin Oscar

72) wil: S R2 Bigbird
A Y2 Robin
A B1 Robin

73) ts52: Move Y1 Robin Kermit

74) wil: T B1 G1 Bigbird

75) ts52: Build G2 Ts52

76) wil: S G3 Robin
B G3 Bigbird
B R1 Y3
B R2 Y2

77) ts52: Move R2 Oscar G2

78) wil: M G3 Bigbird Y2

79) ts52: Move B3 G2 Kermit

80) wil: M R3 Y2 Oscar

81) ts52: Move R2 Oscar G2

82) wil: A Y2 Oscar

83) ts52: Move B3 Kermit Robin

84) wil: M Y2 Robin Kermit

85) ts52: Sacrifice Y1 Kermit
Move B3 Robin Kermit

86) wil: M Y2 Kermit Robin

87) ts52: Build Y1 G2

88) wil: A G1 Oscar

89) ts52: Move Y1 G2 Kermit

90) wil: B B1 Bigbird

91) ts52: Move B3 Kermit Robin

92) wil: M G3 Y2 Wil

93) ts52: Sacrifice R2 G2
Attack Y2 Robin
Attack B1 Robin
	ts52: sorry for the delay

94) wil: B R2 Oscar

95) ts52: Move B3 Robin Kermit

96) wil: M B2 Y2 Oscar

97) ts52: Move B3 Kermit Y2

98) wil: M R1 Y3 Ts52

99) ts52: A R1 Ts52

100) wil: S Y2 Oscar
M R2 Oscar Ts52
M R1 Y3 Ts52
C Ts52 R

101) ts52: Sacrifice R1 Kermit
Attack R2 Y2

102) wil: M B3 Bigbird Ts52

103) ts52: Sacrifice Y2 Robin
Move B3 Y2 Kermit
Move B3 Kermit Ts52
	ts52: I don't think there's anything I can really do at this point. Well played!
	wil: I was hoping not!  Good game

104) wil: S R3 Wil
A B3 Ts52
A G2 Ts52
A G1 Ts52

	wil: Gg


35066)
Variants: "Hard time"
Started: 2019.3.11, Ended: 2019.3.18
Participants: wil (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B2 G3

2) wil: H Y2 B1 G3
	goulo: hi, have fun!

3) goulo: Build G1 Goulo

4) wil: B G1 Wil

5) goulo: Trade G1 Y1 Goulo

6) wil: T G1 B1 Wil

7) goulo: Build Y1 Goulo

8) wil: B B1 Wil

9) goulo: Discover Y1 Goulo Y1 Flaveto

10) wil: D B1 Wil Y3 Y3

11) goulo: Build Y2 Goulo

12) wil: B G1 Wil

13) goulo: Trade Y2 B2 Goulo

14) wil: T G1 R1 Wil

15) goulo: Build Y2 Goulo

16) wil: B G1 Wil

17) goulo: Build G1 Goulo

18) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil

19) goulo: Move B2 Goulo Flaveto

20) wil: S B2 Y3
T B3 Y3 Y3
T B3 G3 Wil

21) goulo: Trade G1 R1 Goulo

22) wil: D Y3 Y3 G1 G1

23) goulo: Move B2 Flaveto Y3

24) wil: D B1 Y3 Y2 Y2

25) goulo: Build G1 Goulo

26) wil: B Y3 G1

27) goulo: Discover Y1 Flaveto G3 Verdego

28) wil: M B1 Y2 G1

29) goulo: Sacrifice Y2 Goulo
Move Y1 Goulo G1
Move Y1 Verdego G1
Catastrophe G1 Y

30) wil: B G2 Wil

31) goulo: Build G2 Goulo

32) wil: D G2 Wil G3 G3

33) goulo: Trade G1 Y1 Goulo

34) wil: T G1 Y1 Wil

35) goulo: Discover G2 Goulo Y1 Flaveto

36) wil: M Y1 Wil G3

37) goulo: Build Y2 Goulo

38) wil: M B1 Wil G3

39) goulo: Build G1 Flaveto

40) wil: D Y1 G3 B2 B2

41) goulo: Sacrifice Y2 Goulo
Move G1 Flaveto G3
Move G2 Flaveto G3
Catastrophe G3 G

42) wil: B G1 Wil

43) goulo: Build G1 Goulo

44) wil: T G1 B1 Wil

45) goulo: Sacrifice G1 Goulo
Build B3 Y3

46) wil: B B3 G1

47) goulo: Move B3 Y3 Wil

48) wil: A B3 Wil

49) goulo: Move B2 Y3 Wil
Catastrophe Wil B

50) wil: T B3 Y3 G1

51) goulo: Build G1 Goulo

52) wil: B Y1 G1

53) goulo: Build Y2 Goulo

54) wil: D Y1 G1 G2 G2

55) goulo: Discover Y1 Goulo G1 Verdeto

56) wil: B Y2 G1

57) goulo: Build Y3 Verdeto

58) wil: S Y2 G1
M Y1 B2 Verdeto
M Y1 G2 Verdeto
C Verdeto Y

59) goulo: Build Y1 Goulo

60) wil: B Y1 G1

61) goulo: Discover Y1 Goulo G1 Verdeto

62) wil: D Y1 G1 Y2 Y2
	wil: I think I blew that and lost a step

63) goulo: Sacrifice G3 Goulo
Build Y1 Verdeto
Build Y3 Goulo
Build G2 Goulo

64) wil: B Y3 G1

65) goulo: Sacrifice Y3 Goulo
Discover Y2 Goulo B1 Blueto
Move Y2 Blueto Wil
Move Y1 Verdeto Wil

66) wil: S Y3 G1
M Y1 Y2 G1
M Y1 G1 Wil
M Y3 G1 Wil
C Wil Y
	wil: This is the end...

	goulo: almost there! :)
	wil: Gg
	goulo: thanks, gg indeed!


34904)
Variants: "Hard time"
Started: 2019.3.13, Ended: 2019.4.21
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) dlwillson: Homeworld B3 R1 G3

3) Trydnt: Build G1 Trydnt

4) dlwillson: Build G1 Dlwillson

5) Trydnt: Trade G1 R1 Trydnt

6) dlwillson: T G1 Y1 Dlwillson

7) Trydnt: Build R1 Trydnt
	dlwillson: TY GL HF!

8) dlwillson: B Y1 Dlwillson

9) Trydnt: Build R2 Trydnt

10) dlwillson: B Y2 Dlwillson

11) Trydnt: Discover R1 Trydnt Y3 Y3

12) dlwillson: D Y1 Dlwillson B2 Sea

13) Trydnt: Sacrifice G3 Trydnt
Build R2 Y3
Build R2 Y3
Build R3 Trydnt

14) dlwillson: Discover Y1 Dlwillson Y2 Sol

15) Trydnt: Move R2 Y3 Sol

16) dlwillson: S G3 Dlwillson
B Y2 Sol
B Y3 Sea
B Y3 Dlwillson

17) Trydnt: Trade R3 G3 Trydnt

18) dlwillson: D Y2 Sol R3 Mars

19) Trydnt: Build R3 Trydnt

20) dlwillson: T Y3 R3 Sea

21) Trydnt: Discover R3 Trydnt Y3 Y33

22) dlwillson: D Y1 Sol B3 Sky

23) Trydnt: Move R2 Sol Sky

24) dlwillson: T Y3 G3 Dlwillson

25) Trydnt: Attack Y1 Sky

26) dlwillson: Build G1 Dlwillson

27) Trydnt: Build G1 Trydnt

28) dlwillson: M G1 Dlwillson Sea

29) Trydnt: Move G1 Trydnt Y33

30) dlwillson: B G1 Dlwillson

31) Trydnt: Build G2 Trydnt

32) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Sea
Build G2 Sea
Build Y3 Dlwillson

33) Trydnt: Trade R2 B2 Trydnt

34) dlwillson: D Y2 Dlwillson G2 Field

35) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Y33
Build R2 Sky

36) dlwillson: B G3 Dlwillson

37) Trydnt: Move R3 Y33 Field

38) dlwillson: D Y2 Field B3 Bluesky

39) Trydnt: Move G2 Trydnt Sky

40) dlwillson: Sacrifice Y2 Sea
Move G1 Sea Y33
Move G2 Sea Y33
Catastrophe Y33 G

41) Trydnt: Sacrifice B2 Trydnt
Trade R3 Y3 Field
Trade R2 B2 Sky

42) dlwillson: Build Y2 Dlwillson

43) Trydnt: Move R2 Sky Field

	dlwillson: Ooops! Well, a win by brain meltdown is still a win.  Congrats, and I'm sorry for timing out on you! 
	Trydnt: good game not sure where it was going haha


35060)
Variants: "Hard time"
Started: 2019.3.13, Ended: 2019.5.11
Participants: dlwillson (S), wil (N)
Winner: dlwillson

1) wil: H B2 Y1 G3

2) dlwillson: Homeworld B3 R1 G3

3) wil: B G1 Wil
	dlwillson: TYGLHF!
	wil: Translation?

4) dlwillson: B G1 Dlwillson

5) wil: T G1 R1 Wil

6) dlwillson: T G1 Y1 Dlwillson
	dlwillson: Thank you! Good luck! Have fun!
	dlwillson: Why did you page an admin?

7) wil: B R1 Wil
	wil: Idk, on admin, and I should have been able to figure that out.

8) dlwillson: B Y1 Dlwillson

9) wil: B R2 Wil

10) dlwillson: Build Y2 Dlwillson

11) wil: D R1 Wil Y3 Y3

12) dlwillson: D Y1 Dlwillson G2 Field

13) wil: D R2 Wil Y3 Why3

14) dlwillson: T Y2 R2 Dlwillson

15) wil: B G1 Wil

16) dlwillson: M R2 Dlwillson Field

17) wil: S G3 Wil
B R2 Y3
B R3 Wil
B R3 Wil

18) dlwillson: B R3 Field

19) wil: T R3 Y3 Wil

20) dlwillson: Move R3 Field Why3

21) wil: S G1 Wil
B R3 Why3

22) dlwillson: A R3 Why3

23) wil: M R1 Wil Why3
C Why3 R

24) dlwillson: B Y2 Field

25) wil: T R3 G3 Wil

26) dlwillson: B G1 Dlwillson

27) wil: D Y3 Wil G3 G3

28) dlwillson: S G3 Dlwillson
B Y2 Field
B Y2 Dlwillson
B Y3 Dlwillson

29) wil: D Y3 G3 G2 G2

30) dlwillson: D Y2 Dlwillson B2 Sea

31) wil: B G1 Wil

32) dlwillson: D Y2 Field B3 Sky

33) wil: T G1 B1 Wil

34) dlwillson: T Y2 G2 Sea

35) wil: D R1 Y3 Y2 Y2

36) dlwillson: B G1 Sea

37) wil: B B1 Wil

38) dlwillson: T Y3 G3 Dlwillson

39) wil: B Y3 G2

40) dlwillson: Sacrifice Y2 Field
Move Y2 Sky G2
Move Y1 Dlwillson G2
Catastrophe G2 Y

41) wil: M B1 Wil Y3

42) dlwillson: T G1 Y1 Sea

43) wil: B G1 Wil

44) dlwillson: B Y2 Sea

45) wil: T R2 Y2 Y3

46) dlwillson: B Y3 Field

47) wil: D G1 Wil Y3 Why3

48) dlwillson: T Y2 G2 Sea

49) wil: B B1 Wil

50) dlwillson: D G2 Sea B3 Sky

51) wil: D B1 Wil G3 G3

52) dlwillson: M Y3 Field G3

53) wil: B G1 Wil

54) dlwillson: M G2 Sea Y3

55) wil: S G3 Wil
B B2 Y3
B B3 Y3
B G3 Wil

56) dlwillson: Move G2 Y3 Y2

57) wil: S Y2 Y3
D B1 G3 Y2 Why2
M R1 Y2 Y3

58) dlwillson: S G3 Dlwillson
B R1 Field
B Y2 G3
B G3 Dlwillson

59) wil: T B3 R3 Y3

60) dlwillson: M G2 Y2 Why3

61) wil: M R3 Y3 Why2

62) dlwillson: Sacrifice Y1 Sea
Move G2 Sky Wil

63) wil: S G3 Wil
B G3 Why3
B B2 Why2
B B3 Wil

64) dlwillson: Sacrifice G1 Dlwillson
Build G1 Why3
Catastrophe Why3 G

65) wil: S R1 Y3
A G2 Wil
	wil: Challenging moves need challenging responses
	wil: Hence I tremble

66) dlwillson: Move Y2 G3 Wil

67) wil: S G2 Wil
B B3 Why2
B R1 Why2
	dlwillson: Well, that attack didn't work out at all.

68) dlwillson: Sacrifice R1 Field
Attack G1 Wil
	wil: Still don't like it at all.

69) wil: S R1 Why2
A G1 Wil

70) dlwillson: B R1 Field

71) wil: S B2 Y3
T B3 R3 Wil
T B3 G3 Why2

72) dlwillson: D Y2 Wil B3 Sky
	dlwillson: sorry for the delay

73) wil: M G3 Why2 Sky
	wil: No worries

74) dlwillson: B G1 Dlwillson

75) wil: B R1 Wil

76) dlwillson: T Y2 B2 Sky
	wil: Was it my cooking?

77) wil: S G1 Wil
B B3 Y3

78) dlwillson: S B2 Sky
T R2 B2 Field
T G1 Y1 Dlwillson

79) wil: S B2 Why2
T G3 Y3 Sky
T R3 G3 Wil

80) dlwillson: B Y2 G3

81) wil: B R2 Wil

82) dlwillson:
B B2 Field

83) wil: B R2 Wil

84) dlwillson: Build R2 Field

85) wil: T R2 Y2 Wil

86) dlwillson: M Y3 G3 Wil

87) wil: A Y3 Wil

88) dlwillson: M Y2 G3 Wil
C Wil Y

89) wil: S G3 Wil
B R2 Why2
B R3 Why2
B R3 Wil

90) dlwillson: Discover R1 Field Y1 Sol

91) wil: S Y3 Sky
M R2 Why2 Dlwillson
M R1 Wil Dlwillson
M R2 Wil Dlwillson
C Dlwillson R

92) dlwillson: S G3 Dlwillson
B Y2 Field
B Y2 Field
B Y3 Dlwillson
	dlwillson: Auto-correct...

93) wil: T B1 G1 Wil

94) dlwillson: S B2 Field
T R1 B1 Sol
T Y3 B3 Dlwillson

95) wil: M B3 Y3 Field

96) dlwillson: S Y2 Field
M R2 Field Dlwillson
D B2 Field Y3 Golden

97) wil: M R3 Why2 Golden

98) dlwillson: S Y2 Field
M B3 Dlwillson Wil
M B2 Golden Wil
	dlwillson: Wow!
	wil: Wow back atcha!  It was quite the move,.maybe just not quite enough
	wil: Wow back atcha!  It was quite the move,.maybe just not quite enough

99) wil: M B1 Y3 Wil
C Wil B

	dlwillson: Good game, Wil
	wil: Mistakes were made!


35091)
Variants: "Hard time"
Started: 2019.3.22, Ended: 2019.6.18
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) ts52: Homeworld Y3 B2 G3

3) wil: B G1 Wil

4) ts52: Build G1 Ts52

5) wil: T G1 B1 Wil

6) ts52: Trade G1 B1 Ts52

7) wil: B B2 Wil

8) ts52: Build G1 Ts52

9) wil: T B2 G2 Wil

10) ts52: Build B2 Ts52

11) wil: B B2 Wil

12) ts52: Discover B2 Ts52 G1 Robin

13) wil: D B2 Wil Y3 Y3

14) ts52: Build B3 Robin

15) wil: S G2 Wil
B B3 Y3
B B3 Y3

16) ts52: Trade B2 Y2 Robin

17) wil: T B3 R3 Y3

18) ts52: Trade B3 R3 Robin

19) wil: T B3 Y3 Y3

20) ts52: Move B1 Ts52 Robin

21) wil: B G1 Wil

22) ts52: B R1 Robin

23) wil: B G2 Wil

24) ts52: Discover G1 Ts52 Y1 Bigbird

25) wil: M G2 Wil Y3

26) ts52: Build G2 Ts52

27) wil: T G1 R1 Wil

28) ts52: T G2 R2 Ts52

29) wil: M R3 Y3 Bigbird

30) ts52: D G1 Bigbird B3 Gonzo

31) wil: M R3 Bigbird Gonzo

32) ts52: B Y1 Robin

33) wil: A G1 Gonzo

34) ts52: B Y1 Robin

35) wil: D B2 Y3 G1 G1

36) ts52: Build G2 Ts52

37) wil: D B1 Wil G3 G3

38) ts52: Move R3 Robin G3

39) wil: M Y3 Y3 G1

40) ts52: Attack B1 G3

41) wil: B Y1 G1

42) ts52: Move Y1 Robin G3

43) wil: B G2 Wil

44) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 G3
Build B3 Robin

45) wil: B B3 G1

46) ts52: Build Y2 G3

47) wil: D Y3 G1 R3 R3

48) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 G3
Build R2 Robin

49) wil: S G2 Y3
B R2 Wil
B Y3 G1

50) ts52: Move B1 G3 G1

51) wil: M B3 G1 R3

52) ts52: Discover R1 Robin G2 Oscar

53) wil: M B3 R3 Oscar

54) ts52: Sacrifice R1 Oscar
Attack Y1N G1

55) wil: S R2 Wil
A B1 G1
A Y1 G1

56) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Ts52
Build R2 Robin

57) wil: P

58) ts52: Move B1 Robin G3

59) wil: M G2 Wil R3

60) ts52: Sacrifice Y2 Robin
Move Y1 G3 G1
Move Y2 G3 G1
Catastrophe G1 Yellow

61) wil: T B3 Y3 Oscar

62) ts52: Build B3 Robin

63) wil: S G2 R3
B Y1 Oscar
B G2 Wil

64) ts52: Trade B2 Y2 G3

65) wil: T B2 Y2 G1

66) ts52: Move R3 G3 G1

67) wil: M Y2 G1 Gonzo

68) ts52: Attack B1 G1

69) wil: T G2 B2 Wil

70) ts52: B B2 G3

71) wil: B G2 Gonzo

72) ts52: Sacrifice Y2 G3
Move B1 G3 Wil
Move B2 G3 Wil
Catastrophe Wil B

73) wil: D G2 Gonzo Y1 Y1

74) ts52: Discover G2 Ts52 B1 Grover

75) wil: B Y2 Gonzo

76) ts52: Move B3 Robin G3

77) wil: M Y3 Oscar Grover

78) ts52: Move R2 Robin Oscar

79) wil: M Y1 Oscar R3

80) ts52: Build B1 G1

81) wil: S R1 Wil
A G2 Grover

82) ts52: Build R1 G3

83) wil: M G1 Gonzo Grover

84) ts52: Move Y1 Robin G3

85) wil: S G2 Y1
B Y1 Grover
B G2 Grover

86) ts52: Move Y1 G3 Robin

87) wil: M G2 Grover Ts52

88) ts52: Attack G2 Ts52

89) wil: S Y3 R3
M Y3 Grover Ts52
M G2 Grover Ts52
M G1 Grover Ts52
C Ts52 G

90) ts52: Move B3 Robin Ts52

91) wil: S R3 Gonzo
A B3 Ts52
A R2 Ts52
A R1 Ts52

	ts52: Good game. Well played.
	wil: Gg!


35093)
Variants: "Hard time"
Started: 2019.3.26, Ended: 2019.5.14
Participants: goulo (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3

2) goulo: Homeworld R3 B2 G3

3) dlwillson: B G1 Dlwillson
	goulo: hi, have fun!

4) goulo: Build G1 Goulo
	dlwillson: You too!

5) dlwillson: T G1 B1 Dlwillson

6) goulo: Trade G1 B1 Goulo

7) dlwillson: B B2 Dlwillson

8) goulo: Build B2 Goulo

9) dlwillson: Discover B1 Dlwillson G2 Field

10) goulo: Trade B1 Y1 Goulo

11) dlwillson: B G1 Dlwillson

12) goulo: Build G1 Goulo

13) dlwillson: T G1 Y1 Dlwillson

14) goulo: Trade G1 R1 Goulo

15) dlwillson: B G1 Dlwillson

16) goulo: Build G1 Goulo

17) dlwillson: Sacrifice G3 Dlwillson
Build B1 Field
Build B3 Field
Build B3 Dlwillson

18) goulo: Build B3 Goulo

19) dlwillson: Trade B1 R1 Field
	Draw5PlayAll: I am rooting for Goulo.

20) goulo: Discover B3 Goulo Y1 Flaveto

21) dlwillson: B Y2 Dlwillson
	goulo: heh, thanks, Draw5PlayAll :)

22) goulo: Build Y2 Goulo

23) dlwillson: T B2 R2 Dlwillson
	dlwillson: Hey! I want someone to cheer for me, too!

24) goulo: Discover Y1 Goulo G1 Verdeto
	goulo: I'm rooting for you, dlwillson! :)

25) dlwillson: M Y1 Dlwillson Field

26) goulo: Discover Y1 Verdeto G2 Verdo
	dlwillson: Thanks Goulo! :-)

27) dlwillson: Move Y2 Dlwillson Verdo

28) goulo: Discover Y1 Verdo B1 Blueto
	dlwillson: sorry for the delay

29) dlwillson: T B3 Y3 Field

30) goulo: Move B3 Flaveto Verdo

31) dlwillson: M Y2 Verdo Blueto

32) goulo: Move Y1 Blueto Verdo

33) dlwillson: B B2 Field

34) goulo: Build B3 Verdo

35) dlwillson: S B2 Field
T B3 G3 Dlwillson
T Y2 G2 Blueto

36) goulo: Discover G1 Goulo Y1 Flaveto
	dlwillson: My last move was brainless, like I've never played! No more mixing Homeworlds and beer!
	goulo: heh :)

37) dlwillson: S G3 Dlwillson
B G1 Blueto
B G3 Blueto
B G3 Dlwillson

38) goulo: Sacrifice Y2 Goulo
Move G1 Flaveto Verdo
Move G1 Verdo Blueto
Catastrophe Blueto G

39) dlwillson: B B1 Field

40) goulo: Trade B2 Y2 Goulo

41) dlwillson: Discover B1 Field G1 Forest
	Draw5PlayAll: Would you two mind dragging this out a bit? I just got challenged but I want to play the winner when this is over. :P

42) goulo: Move B3 Verdo Forest

43) dlwillson: B B2 Field
	dlwillson: Uh... I hate slow games!  I've just been incredibly distracted for the last several weeks.  I've even toned out on a few games. :-(

44) goulo: Build Y1 Verdo

45) dlwillson: S Y3 Field
M B1 Forest Goulo
M B1 Field Forest
M B1 Forest Goulo

46) goulo: Attack B1 Goulo

47) dlwillson: S G1 Dlwillson
B B2 Goulo
C Goulo B

48) goulo: Sacrifice Y1 Verdo
Move B3 Forest Field

49) dlwillson: D R1 Field R1 Mars

50) goulo: Sacrifice R1 Goulo
Attack Y1 Field

51) dlwillson: T B2 Y2 Field

52) goulo: Trade B3 R3 Field

53) dlwillson: D Y2 Field R1 Alsomars

54) goulo: Move Y2 Goulo Mars

55) dlwillson: B R2 Dlwillson

56) goulo: Attack R1 Mars

57) dlwillson: D R2 Dlwillson Y2 Sol

58) goulo: Build R2 Field

59) dlwillson: B R3 Dlwillson

60) goulo: Move R3 Field Dlwillson

61) dlwillson: S R2 Dlwillson
A R3 Dlwillson
Pass

62) goulo: Build R2 Field
	goulo: ah, good one. I didn't think of that. :/

63) dlwillson: D R3 Dlwillson B2 Sea

64) goulo: Build B1 Verdo

65) dlwillson: D R3 Dlwillson B2 Alsosea

	goulo: congrats! I see no hope for me now other than delaying the inevitable...
	dlwillson: Thanks for an excellent game! 


35095)
Variants: "Hard time"
Started: 2019.3.27, Ended: 2019.4.27
Participants: deanthebean (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 Y2 G3

2) deanthebean: Homeworld G1 B2 Y3
	deanthebean: Hello. Thanks for accepting the challenge. Have fun!

3) ajo: Build G1 Ajo

4) deanthebean: Build Y1 Deanthebean
	ajo: You too!

5) ajo: Build G1 Ajo

6) deanthebean: Build Y1 Deanthebean

7) ajo: Discover G1 Ajo B1 Alpha

8) deanthebean: Discover Y1 Deanthebean G3 Beta

9) ajo: Build G2 Alpha

10) deanthebean: Trade Y3 G3 Deanthebean

11) ajo: Trade G1 R1 Alpha

12) deanthebean: Build Y1 Beta

13) ajo: Build G1 Alpha

14) deanthebean: Build G2 Deanthebean

15) ajo: Trade G2 Y2 Alpha

16) deanthebean: Trade G2 R2 Deanthebean

17) ajo: Build G2 Ajo

18) deanthebean: Discover G3 Deanthebean Y3 Gamma

19) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G2 Alpha
Build G3 Ajo

20) deanthebean: Build Y2 Beta

21) ajo: Trade G2 R2 Ajo

22) deanthebean: Build G2 Gamma

23) ajo: Sacrifice G1 Alpha
Build Y3 Alpha

24) deanthebean: Build Y3 Deanthebean
	deanthebean: build y3 deanthebean

25) ajo: Move Y2 Alpha Beta
Catastrophe Beta Yellow

26) deanthebean: Build R1 Deanthebean

27) ajo: Discover G2 Alpha B3 Beta

28) deanthebean: Discover R2 Deanthebean G3 Delta

29) ajo: Sacrifice G3 Ajo
Build G1 Beta
Build G3 Ajo
Build Y1 Alpha

30) deanthebean: Trade Y1 B1 Deanthebean

31) ajo: Trade G1 Y1 Beta

32) deanthebean: Build R1 Delta

33) ajo: Sacrifice G3 Ajo
Build G1 Beta
Build Y1 Beta
Build G3 Ajo

34) deanthebean: Sacrifice G3 Gamma
Build G3 Gamma
Build Y2 Deanthebean
Build B1 Deanthebean

35) ajo: Sacrifice Y3 Alpha
Move Y1 Beta Deanthebean
Move Y1 Beta Deanthebean
Move G1 Beta Deanthebean
Catastrophe Deanthebean Yellow

36) deanthebean: Attack G1 Deanthebean

37) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build R2 Ajo
Build R3 Alpha

38) deanthebean: Trade B1 Y1 Deanthebean

39) ajo: Sacrifice Y1 Alpha
Move G2 Beta Deanthebean

40) deanthebean: Sacrifice G3 Gamma
Build R3 Deanthebean
Build R3 Delta
Build G3 Gamma

41) ajo: Sacrifice G1 Ajo
Build G1 Deanthebean
Catastrophe Deanthebean Green

42) deanthebean: Move B1 Deanthebean Delta

43) ajo: Trade R2 Y2 Ajo

44) deanthebean: Trade R1 Y1 Delta

45) ajo: Build Y1 Ajo

46) deanthebean: Build Y2 Delta

47) ajo: Move Y2 Ajo Alpha

48) deanthebean: Discover Y1 Delta G1 Epsilon

49) ajo: Build Y3 Alpha

50) deanthebean: Build Y3 Epsilon

51) ajo: Discover Y3 Alpha B3 Beta

52) deanthebean: Move Y3 Epsilon Ajo

53) ajo: Attack Y3 Ajo

54) deanthebean: Move Y1 Epsilon Ajo
Catastrophe Ajo Y

55) ajo: Trade R3 B3 Alpha
	ajo: Oh interesting. I didn't think we were doing this yet. :)

56) deanthebean: Build B1 Delta

57) ajo: Sacrifice Y3 Beta
Move R1 Alpha Deanthebean
Move R2 Ajo Deanthebean
Move B3 Alpha Deanthebean
Catastrophe Deanthebean Red

	deanthebean: Well played!


35069)
Started: 2019.3.29, Ended: 2019.3.29
Participants: shog456 (S), ts52 (N)
Winner: ts52



35019)
Variants: "Unrated"
Started: 2019.3.29, Ended: 2019.3.29
Participants: shog456 (S), Trydnt (N)
Winner: Trydnt



35074)
Variants: "Hard time"
Started: 2019.4.1, Ended: 2019.4.25
Participants: dlwillson (S), Uglyfoot (N)
Winner: Uglyfoot

1) Uglyfoot: Homeworld G3 B2 R3

2) dlwillson: H Y1 B3 G3

3) Uglyfoot: Build R1 Uglyfoot
	dlwillson: Thanks for accepting my challenge!

4) dlwillson: B G1 Dlwillson

5) Uglyfoot: Trade R1 G1 Uglyfoot

6) dlwillson: T G1 Y1 Dlwillson

7) Uglyfoot: Build G1 Uglyfoot

8) dlwillson: B Y1 Dlwillson

9) Uglyfoot: T R3 Y3 Uglyfoot

10) dlwillson: Discover Y1 Dlwillson Y2 Sol

11) Uglyfoot: Build Y2 Uglyfoot

12) dlwillson: Build Y2 Dlwillson

13) Uglyfoot: Sacrifice Y3 Uglyfoot
Discover Y2 Uglyfoot R1 Flash
Move Y2 Flash Sol
Move Y2 Sol Dlwillson
Catastrophe Dlwillson Y

14) dlwillson: Build G1 Dlwillson

15) Uglyfoot: Trade G1 Y1 Uglyfoot

16) dlwillson: Trade G3 R3 Dlwillson

17) Uglyfoot: Discover G1 Uglyfoot R1 Skeet

18) dlwillson: Build R1 Dlwillson

19) Uglyfoot: Build Y1 Uglyfoot

20) dlwillson: S Y1 Sol
D R1 Dlwillson R1 Mars

21) Uglyfoot: Move Y1 Uglyfoot Skeet

22) dlwillson: Build R2 Dlwillson

23) Uglyfoot: Build Y1 Skeet
	dlwillson: sorry for the delay

24) dlwillson: T R2 Y2 Dlwillson
	Uglyfoot: No worries.  I figured that you were planning.

25) Uglyfoot: Build Y2 Uglyfoot

26) dlwillson: S Y2 Dlwillson
M R3 Dlwillson Mars
M R3 Mars Uglyfoot

27) Uglyfoot: Build Y2 Uglyfoot

	Uglyfoot: I see that you win.  Would you care if I resigned?
	dlwillson: Sorry for timing out on you. 


35073)
Variants: "Unrated, Hard time"
Started: 2019.4.4, Ended: 2019.4.30
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt

1) dlwillson: H B3 R1 G3

2) Trydnt: Homeworld Y3 B2 G3

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build G1 Trydnt

5) dlwillson: T G1 Y1 Dlwillson

6) Trydnt: Trade G1 R1 Trydnt

7) dlwillson: Build Y1 Dlwillson

8) Trydnt: Build R1 Trydnt

9) dlwillson: Build Y1 Dlwillson

10) Trydnt: Build R2 Trydnt

11) dlwillson: Discover Y1 Dlwillson B2 Sea

12) Trydnt: Discover R2 Trydnt B1 B1

13) dlwillson: B Y2 Dlwillson

14) Trydnt: Sacrifice G3 Trydnt
Build R2 B1
Build R2 B1
Build R3 Trydnt

15) dlwillson: D Y1 Dlwillson Y2 Sol

16) Trydnt: Discover R1 Trydnt G1 G1

17) dlwillson: S G3 Dlwillson
B Y2 Sea
B Y3 Sea
B Y3 Dlwillson

18) Trydnt: Trade R3 G3 Trydnt

19) dlwillson: T Y3 G3 Dlwillson

20) Trydnt: Build G1 Trydnt

21) dlwillson: T Y3 R3 Sea

22) Trydnt: Trade G3 Y3 Trydnt

23) dlwillson: S Y2 Dlwillson
M R3 Sea B1
C B1 R
D Y1 Sea B1 Sky

24) Trydnt: Build R2 Trydnt

25) dlwillson: M Y1 Sky Trydnt

26) Trydnt: Move Y3 Trydnt G1



35094)
Started: 2019.4.4, Ended: 2019.4.16
Participants: Trydnt (S), dragon76n (N)
Winner: dragon76n

1) dragon76n: Homeworld G1 B3 Y3

2) Trydnt: Homeworld B2 G1 G3 *

3) dragon76n: Build Y1 Dragon76n
	Trydnt: let's try something weird

4) Trydnt: Build G1 Trydnt
	dragon76n: Well... you do have a good track record of beating me... 

5) dragon76n: Trade Y3 G3 Dragon76n
	Trydnt: i feel like if this has a name it's called the green freeze-out
	Trydnt: green instafreeze?

6) Trydnt: Build G2 Trydnt

7) dragon76n: C Trydnt G
B Y1 Dragon76n
	dragon76n: Accidental suicide?
	Trydnt: oops



35108)
Variants: "Hard time"
Started: 2019.4.4, Ended: 2019.4.16
Participants: Trydnt (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 R1 G3

2) Trydnt: Homeworld G3 B2 R3

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build R1 Trydnt

5) dlwillson: T G1 R1 Dlwillson

6) Trydnt: Build R2 Trydnt

7) dlwillson: Build G1 Dlwillson

8) Trydnt: Trade R2 Y2 Trydnt

9) dlwillson: Build R2 Dlwillson

10) Trydnt: Build R2 Trydnt

11) dlwillson: T G1 Y1 Dlwillson

	Trydnt: sorry about that had some technical difficulties :S


35098)
Started: 2019.4.4, Ended: 2019.6.6
Participants: Trydnt (S), ts52 (N)
Winner: Trydnt

1) ts52: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B2 G2 Y3 *
	ts52: Have a good game!
	Trydnt: you too!

3) ts52: B G1 Ts52

4) Trydnt: Build Y1 Trydnt

5) ts52: Build G1 Ts52

6) Trydnt: Build Y1 Trydnt

7) ts52: Discover G1 Ts52 B3 Gonzo

8) Trydnt: Trade Y3 R3 Trydnt

9) ts52: B G1 Ts52

10) Trydnt: Build Y2 Trydnt

11) ts52: B G2 Gonzo

12) Trydnt: Move R3 Trydnt Gonzo

13) ts52: Trade G3 R3 Ts52

14) Trydnt: Attack G2 Gonzo

15) ts52: Build R1 Ts52

16) Trydnt: Attack G1 Gonzo

17) ts52: Discover G1 Ts52 B3 Grover

18) Trydnt: Build R1 Gonzo

19) ts52: Move R1 Ts52 Grover

20) Trydnt: Move Y1 Trydnt Gonzo

21) ts52: Build G2 Ts52

22) Trydnt: Sacrifice G2 Gonzo
Build Y2 Gonzo
Build Y2 Gonzo

23) ts52: Build R1 Grover

24) Trydnt: Build Y3 Trydnt

25) ts52: Build R2 Grover

26) Trydnt: Discover Y2 Trydnt G3 G3

27) ts52: Trade G1 B1 Ts52

28) Trydnt: Build Y3 G3

29) ts52: Build G1 Grover

30) Trydnt: Build Y3 Trydnt

31) ts52: Discover B1 Ts52 G3 Kermit

32) Trydnt: Move Y3 Trydnt Grover

33) ts52: Build B1 Kermit

34) Trydnt: Sacrifice R3 Gonzo
Attack R1 Grover
Attack R2 Grover
Attack R1 Grover

35) ts52: Build B1 Kermit

36) Trydnt: Sacrifice Y3 G3
Move R1 Grover Ts52
Move R1 Grover Ts52
Move R2 Grover Ts52
Catastrophe Ts52 R

37) ts52: Trade G2 R2 Ts52

38) Trydnt: Move Y3 Grover Ts52

39) ts52: Sacrifice G1 Grover
Build R1 Ts52

40) Trydnt: Sacrifice R1 Gonzo
Attack R2 Ts52

41) ts52: Sacrifice G1 Grover
Build R1 Ts52

42) Trydnt: Sacrifice R2 Ts52
Attack R1 Ts52
Attack R1 Ts52
	ts52: Good game. Well played.
	Trydnt: well played



35100)
Variants: "Unrated"
Started: 2019.4.17, Ended: 2019.4.30
Participants: dragon76n (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) dragon76n: H G1 B3 Y3

3) Trydnt: Build G1 Trydnt

4) dragon76n: Build Y1 Dragon76n

5) Trydnt: Trade G1 Y1 Trydnt

6) dragon76n: Build Y2 Dragon76n

7) Trydnt: Discover Y1 Trydnt G3 G3

8) dragon76n: Discover Y2 Dragon76n G2 Gretwo

9) Trydnt: Build Y2 G3

10) dragon76n: Build Y2 Gretwo

11) Trydnt: Discover Y1 G3 G2 G2

12) dragon76n: Discover Y2 Gretwo B3 Bluthr

13) Trydnt: Build Y3 G3

14) dragon76n: B Y3 Gretwo

15) Trydnt: Sacrifice Y3 G3
Move Y2 G3 G2
Move Y1 G2 Dragon76n
Move Y2 G2 Dragon76n
Catastrophe Dragon76n Y



34368)
Variants: "Hard time"
Started: 2019.4.17, Ended: 2019.5.25
Participants: Draw5PlayAll (S), mneme (N)
Winner: mneme

1) mneme: Homeworld R1 B2 G3
	mneme: This was listed as TGH, but we're done with that, right?  Just a normal ordinary homeworlds game?


2) Draw5PlayAll: Homeworld B3 R2 G3
	Draw5PlayAll: Did you accept the generic offer? I forgot that was still on the list.

3) mneme: Build G1 Mneme

4) Draw5PlayAll: Build G1 Draw5playall

5) mneme: Trade G1 R1 Mneme

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) mneme: Build R2 Mneme

8) Draw5PlayAll: Build R2 Draw5playall
	mneme: Accidentally, yeah.

9) mneme: Trade R2 Y2 Mneme

10) Draw5PlayAll: Trade R2 Y2 Draw5playall

11) mneme: Build R2 Mneme

12) Draw5PlayAll: Build R2 Draw5playall

13) mneme: Discover R2 Mneme G3 Time

14) Draw5PlayAll: Discover R1 Draw5playall G1 Space
	Draw5PlayAll: So, should I discover a system called "space", or not...

15) mneme: Build R3 Time
	Draw5PlayAll: The final frontier.

16) Draw5PlayAll: Build R3 Space

17) mneme: Build Y1 Mneme

18) Draw5PlayAll: Discover R2 Draw5playall G1 Energy

19) mneme: Sacrifice Y1 Mneme
Move R3 Time Energy

20) Draw5PlayAll: Build Y1 Draw5playall

21) mneme: Attack R2 Energy

22) Draw5PlayAll: Discover Y2 Draw5playall B1 Matter

23) mneme: Build R3 Time

24) Draw5PlayAll: Build Y1 Draw5playall

25) mneme: Trade R1 B1 Mneme

26) Draw5PlayAll: Trade Y1 B1 Draw5playall

27) mneme: Move B1 Mneme Time
	Draw5PlayAll: We need systems named gravity, relativity, dark, and perhaps something like expansion.

28) Draw5PlayAll: Move B1 Draw5playall Space
	mneme: heh

29) mneme: Trade R3 Y3 Time

30) Draw5PlayAll: Trade R3 Y3 Space

31) mneme: Build B2 Time

32) Draw5PlayAll: Build B2 Space
	Draw5PlayAll: I do not trust those menacing ships at energy...

33) mneme: Move Y3 Time Matter

34) Draw5PlayAll: Trade Y3 R3 Space

35) mneme: Build R1 Time
	Draw5PlayAll: *whew*

36) Draw5PlayAll: Discover Y2 Matter G2 Gravity
	mneme: I can't think what you mean. :P


37) mneme: Trade B2 Y2 Time

38) Draw5PlayAll: Move Y1 Draw5playall Space

39) mneme: Sacrifice Y2 Mneme
Move R2 Time Space
Move R1 Time Space
Catastrophe Space R

40) Draw5PlayAll: Move B1 Space Gravity

41) mneme: Sacrifice Y2 Time
Move R3 Energy Draw5playall
Move Y3 Matter Draw5playall

42) Draw5PlayAll: Sacrifice Y2 Gravity
Discover B2 Space B2 Weak
Discover Y1 Space R3 Strong

43) mneme: Attack G3 Draw5playall
	mneme: Hey, there.  Whatcha doing?

	Draw5PlayAll: It was all a decoy... that green contains a deadly disease that will terminate your empire if you take control of it!

[Can you win the game without attacking the green?]
	mneme: Not without a lot more work, sorry.  :)

Good game!


35137)
Variants: "Unrated, Hard time"
Started: 2019.4.17, Ended: 2019.6.7
Participants: wil (S), mneme (N)
Winner: wil

1) mneme: Homeworld R2 B3 G3
	mneme: For the Great Homeworlds Tournament!  This time for sure!


2) wil: H B1 Y2 G3

3) mneme: Build G1 Mneme

4) wil: B G1 Wil

5) mneme: Trade G1 B1 Mneme
	wil: Gl

6) wil: T G1 B1 Wil

7) mneme: Build B2 Mneme

8) wil: B B2 Wil

9) mneme: Trade B2 Y2 Mneme

10) wil: D B1 Wil G3 G3

11) mneme: Build B2 Mneme
	Babamots: I should be able to announce tournament results after this game. Thanks for playing, guys! Good luck!

12) wil: B B2 G3

13) mneme: Discover B1 Mneme Y1 Terpsicore

14) wil: T B2 Y2 G3

15) mneme: Discover B2 Mneme G1 Euterpe

16) wil: B G1 Wil

17) mneme: Build G1 Mneme

18) wil: B G2 Wil

19) mneme: Build G2 Mneme

20) wil: D G2 Wil Y3 Y3

21) mneme: Move G2 Mneme Terpsicore

22) wil: S G3 Wil
B G2 Y3
B G3 Wil
B Y1 G3

23) mneme: Sacrifice G3 Mneme
Build G3 Mneme
Build Y1 Mneme
Build Y3 Mneme

24) wil: D Y1 G3 R1 R1

25) mneme: Discover G2 Terpsicore Y3 Erato

26) wil: M Y1 R1 Mneme
C Mneme Y

27) mneme: Trade G1 Y1 Mneme

28) wil: D G2 Y3 Y1 Y1
	mneme: Ug.  Forgot I was playing a 32 system.

29) mneme: Sacrifice G2 Erato
Build B2 Euterpe
Build B3 Terpsicore

30) wil: B B3 G3
	wil: I was scratching my head wondering what was up.

31) mneme: Trade B2 Y2 Euterpe

32) wil: B Y3 G3
	mneme: Yeah.  Was assuming you were running away for space, not towards.  the red trade was what I'd been plannning.
	mneme: Yeah.  Was assuming you were running away for space, not towards.  the red trade was what I'd been plannning.
	Draw5PlayAll: Terpsichore?
	mneme: You've played enough games with me that my name scheme shouldn't be particularly notable.

33) mneme: Build Y3 Euterpe

34) wil: T G1 R1 Wil
	wil: No comments from the peanut gallery.
	wil: This is a tournament game.
	wil: D5pa, I've asked you not to interrupt before...

35) mneme: Trade Y2 R2 Euterpe

36) wil: D B3 G3 G1 G1

37) mneme: Build Y2 Mneme

38) wil: B B2 G1

39) mneme: Move B3 Terpsicore Y3

40) wil: M G2 Y3 Terpsicore

41) mneme: Move R2 Euterpe Y3

42) wil: B R1 Wil

43) mneme: Discover B1 Terpsicore R3 Melpomene

44) wil: M Y2 G3 G1

45) mneme: Discover B2 Euterpe R3 Clio

46) wil: M B2 Wil Melpomene

47) mneme: Move Y3 Euterpe Melpomene

48) wil: T B3 R3 G1
	wil: Too cool, predictive txt found that name for me!

49) mneme: Attack B2 Melpomene

50) wil: B G1 Y1

51) mneme: Trade B2 G2 Melpomene
	mneme: nice.  That green lock you've got going is pretty ugly, alas.

52) wil: S G2 Y1
B B2 G1
B B3 G3
	Draw5PlayAll: For me, there are so many things that autocorrect that it sometimes gets annoying.
	mneme: DPA5: Again, this is a tournament game.  Leave the chatter for later, even though it's not technically game-relevant.

53) mneme: Build G1 Melpomene

54) wil: B G2 Y1

55) mneme: Move G2 Melpomene Y1

56) wil: S Y2 G1
M G2 Y1 Mneme
M G1 Y1 Mneme

57) mneme: Sacrifice B2 Clio
Trade G3 R3 Mneme
Trade G1 R1 Melpomene

58) wil: S G2 Mneme
B G1 Wil
B R2 G1
	wil: There wasn't room for the three of us.

59) mneme: Attack G1 Mneme
	mneme: Ok, so what now?

60) wil: B Y2 G3
	mneme: Sorry, had second thoughts and then realized I needed the G trade to avoid handing off a g3 for free.  Nothing's free.
	mneme: ug.  Sad with great sadness; the other possible trade was also a g (the g2 at y1). Ah well.

61) mneme: Trade R3 G3 Mneme
	wil: Backing after review is expected in this game.

62) wil: M B3 G3 Y1

63) mneme: Move G2 Y1 Y3

64) wil: S G3 Wil
B G2 Terpsicore
B G3 Wil
B B2 G3
	wil: Lol, was blind

65) mneme: Sacrifice G1 Mneme
Build G1 Y3

66) wil: M G1 Wil Y3

67) mneme: Sacrifice G1 Y3
Build R3 Y3
	mneme: oops.  Typo.


68) wil: S Y2 G3
M R1 Wil Melpomene
M R2 G1 Melpomene
C Melpomene R

69) mneme: Attack G1 Y3

70) wil: D G2 Terpsicore Y3 Why3

71) mneme: Move R3 Y3 Terpsicore
	wil: I used to live here, not at many of us though

72) wil: D G2 Terpsicore Y2 Y2
	mneme: So you don't mind if I move, then?
	mneme: oh, j7st a g1.  misread that.  hmm

73) mneme: Move R3 Terpsicore Why3

74) wil: M G2 Why3 Y1

75) mneme: Build R1 Y3
	mneme: Ah, was wondering when you would set that off.

76) wil: B B1 Y1

77) mneme: Build Y1 Mneme

78) wil: B R1 Wil

79) mneme: Discover G2 Y3 G1 Erat9

80) wil: S G2 Y2
B G2 Wil
B Y2 G3

81) mneme: Sacrifice G2 Erat9
Build G1 Mneme
Build G2 Y3
	wil: The old bull in China shop method.

82) wil: M Y2 G3 G1
	mneme: as long as it accomplishes the goal (in this case, stopping you from building another y3)...

83) mneme: Sacrifice Y2 Mneme
Move G2 Y3 Wil
Move G1 Y3 Wil
Catastrophe Wil G

84) wil: M Y3 G3 Wil

85) mneme: Build Y2 Mneme

86) wil: S B1 G3
T B3 G3 Y1

87) mneme: Sacrifice G1 Mneme
Build R2 Why3

88) wil: S G3 Y1
B G1 Y1
B G1 Y1
B R3 G1

89) mneme: Sacrifice Y2 Mneme
Move R2 Why3 G1
Move R1 Y3 G1
Catastrophe G1 R

90) wil: B Y2 G1

91) mneme: Move R3 Why3 G1

92) wil: S G1 Y1
B Y3 Wil

93) mneme: Attack Y2 G1

94) wil: S B2 G1
T Y2 G2 G1
T B2 G2 G1

95) mneme: Sacrifice R2 Y3
Attack G2 G1
Attack G2 G1

96) wil: S Y3 Wil
M R1 Wil G3
M G1 Y1 Y3
M G1 Y3 G1
C G1 G

97) mneme: Build Y2 Mneme

98) wil: T B2 Y2 G3

99) mneme: Trade Y1 R1 Mneme

100) wil: S G2 Y1
B Y1 Wil
B Y3 G3

101) mneme: Discover Y1 Mneme G1 Erato

102) wil: D Y1 Wil G3 Gee3

103) mneme: Move R1 Mneme Erato

104) wil: B R2 G3


105) mneme: Build R2 Erato

106) wil: M R2 G3 Erato

107) mneme: Attack R2 Erato

108) wil: B R3 G3

109) mneme: Move R2 Erato Gee3

110) wil: M R3 G3 Y1

111) mneme: Build R3 Gee3

112) wil: B R3 G3

113) mneme: Attack Y1 Gee3

114) wil: T R1 G1 Wil

115) mneme: Move B3 Y3 Erato

116) wil: D G1 Wil Y3 Y3

117) mneme: Move B3 Erato Y3

118) wil: M G1 Y3 Wil
	mneme: I'm a little surprised we don't have spectators for this game.  It's a bit non-standard, but overall very good.

119) mneme: Sacrifice B3 Y3
Trade G3 Y3 Mneme
Trade Y2 G2 Mneme
Trade R2 Y2 Gee3
	wil: Non standard is my name. 

120) wil: S Y2 G3
M R3 G3 Wil
D Y3 Wil G3 Gthree

121) mneme: Build Y2 Mneme

122) wil: B G1 Wil

123) mneme: Build G2 Mneme

124) wil: S G1 Wil
B B1 Y1
	mneme: Ah, there they are.  Didn't see them on my phone.  Non-standard is the words on my flag.


125) mneme: Trade G2 B2 Mneme

126) wil: S Y3 Gthree
M B1 Y1 Mneme
M B1 Y1 Mneme
C Mneme B
P

127) mneme: Build Y3 Erato
	wil: We don't just abandon perfectly good star systems!

128) wil: B R1 G3
	mneme: Sure we do

129) mneme: Sacrifice Y2 Mneme
Move R1 Erato G3
Move R2 Erato G3
Catastrophe G3 R
	wil: Take good care of it then

130) wil: B R1 Wil
	mneme: If you insist.
	wil: Hey you could have done that and saved to turn

131) mneme: Build Y2 Mneme

132) wil: T R3 G3 Wil
	mneme: What's the fun of that?

133) mneme: Build G1 Mneme

134) wil: M G1 Wil G3

135) mneme: Move G2 Mneme G3

136) wil: M G1 G3 Y1

137) mneme: Build G2 G3

138) wil: D Y3 G3 B2 B2

139) mneme: Sacrifice G2 G3
Build G2 Mneme
Build R1 Gee3

140) wil: B R1 Y1

141) mneme: Move R1 Gee3 Erato
	wil: I didn't leave ya a choice

142) wil: M R3 Y1 Mneme
	mneme: Nope.  Not if I wanted even the sliver of a chance to salvage things (not much of a chance, but better than 0).


143) mneme: Attack R3 Mneme
	wil: I figure you got much more than a sliver

144) wil: S Y3 B2
D R1 Wil Y3 Phoenix
M R1 Phoenix Mneme
M R1 Y1 Mneme
C Mneme R
	mneme: We'll see.  It'll be interesting

	wil: Good game continue to be a mazed how different they are
	Babamots: I didn't want to interrupt the flow of the game to say so, but I was spectating closely.

And that's the last game of the tournament! Hope to see you in the next one! I'll be trying to set it up over the next month or so.
	wil: Is the chart back up with results...
	wil:  I hope to stay healthy next time around!
	Babamots: The original chart should still be working, but I also made a static version (link in the email I just sent).


35135)
Variants: "Hard time"
Started: 2019.4.18, Ended: 2019.5.13
Participants: mneme (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G3 R1 B3
	Simon: Hi, have fun! :-)

2) mneme: Homeworld B3 G2 R3

3) Simon: Build B1 Simon
	mneme: you too!


4) mneme: Build R1 Mneme
	mneme: Sorry; missed that you started with a b3, not a G3!

5) Simon: Build B1 Simon

6) mneme: Build R1 Mneme

7) Simon: Trade B3 Y3 Simon

8) mneme: Trade R3 Y3 Mneme

9) Simon: Build B1 Simon

10) mneme: Build R2 Mneme

11) Simon: Discover B1 Simon G2 G2

12) mneme: Trade R2 B2 Mneme

13) Simon: Build B2 G2

14) mneme: Build R2 Mneme

15) Simon: Trade B2 R2 G2

16) mneme: Trade R2 G2 Mneme

17) Simon: Build R2 G2

18) mneme: Discover R1 Mneme G1 Euterpe

19) Simon: Build B2 G2

20) mneme: Build Y1 Mneme

21) Simon: Trade B2 Y2 G2

22) mneme: Sacrifice G2 Mneme
Build R2 Euterpe
Build R3 Mneme

23) Simon: Discover R2 G2 Y1 Y1

24) mneme: Trade R1 G1 Mneme

25) Simon: Build B2 G2

26) mneme: Move B2 Mneme Euterpe

27) Simon: Trade B2 G2 G2

28) mneme: Move Y3 Mneme Euterpe

29) Simon: Build B2 G2

30) mneme: Build Y1 Euterpe

31) Simon: Sacrifice G2 G2
Build R1 Y1
Build R3 Y1

32) mneme: Sacrifice Y3 Euterpe
Move R1 Euterpe G2
Move R1 G2 Y1
Catastrophe Y1 R
Discover G1 Mneme Y1 Terpsicore

33) Simon: Build Y2 Simon

34) mneme: Build R1 Mneme

35) Simon: Move B2 G2 Terpsicore

36) mneme: Trade R3 G3 Mneme

37) Simon: Build R1 G2

38) mneme: Discover G1 Terpsicore B3 Melpomene

39) Simon: Move R2 G2 Melpomene

40) mneme: Sacrifice G1 Melpomene
Build Y2 Mneme

41) Simon: Build Y3 G2

42) mneme: Build Y3 Euterpe

43) Simon: Trade Y3 G3 G2

44) mneme: Sacrifice Y1 Mneme
Move Y3 Euterpe Melpomene

45) Simon: Move G3 G2 Terpsicore

46) mneme: Sacrifice R1 Mneme
Attack R2 Melpomene

47) Simon: Build G1 Terpsicore
	Simon: Strong move, nice.

48) mneme: Sacrifice G3 Mneme
Build Y1 Melpomene
Build Y3 Mneme
Build R1 Euterpe

49) Simon: Build G1 Terpsicore
	mneme: Thanks.  I thought it did a pretty good job.

50) mneme: Trade R2 G2 Melpomene

51) Simon: Move G1 Terpsicore Mneme

52) mneme: Build G3 Melpomene

53) Simon: Sacrifice Y2 Simon
Move G1 Terpsicore Mneme
Move G3 Terpsicore Mneme
Catastrophe Mneme Green

	mneme: Annoying, but at least you saved me from a timeout in the tournament game.



35132)
Started: 2019.4.20, Ended: 2019.5.23
Participants: dragon76n (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) dragon76n: Homeworld B3 G2 Y3

3) Draw5PlayAll: Homeworld B3 R1 G3

4) dragon76n: Build Y1 Dragon76n

5) Draw5PlayAll: Build G1 Draw5playall

6) dragon76n: Trade Y1 G1 Dragon76n

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) dragon76n: Build G1 Dragon76n

9) Draw5PlayAll: Build Y1 Draw5playall

10) dragon76n: Trade G1 R1 Dragon76n

11) Draw5PlayAll: Trade Y1 R1 Draw5playall

12) dragon76n: Build R2 Dragon76n

13) Draw5PlayAll: Build R2 Draw5playall

14) dragon76n: B R2 Dragon76n

15) Draw5PlayAll: Discover R2 Draw5playall G2 Ugh

16) dragon76n: Discover R2 Dragon76n G1 Greone

17) Draw5PlayAll: Build R3 Ugh

18) dragon76n: Build R3 Greone

19) Draw5PlayAll: Trade R1 B1 Draw5playall

20) dragon76n: Trade R1 Y1 Dragon76n

21) Draw5PlayAll: Move B1 Draw5playall Ugh

22) dragon76n: Move Y1 Dragon76n Greone

23) Draw5PlayAll: Build B1 Ugh

24) dragon76n: Trade R2 B2 Dragon76n

25) Draw5PlayAll: Trade R2 Y2 Ugh

26) dragon76n: Move B2 Dragon76n Greone

27) Draw5PlayAll: Build G1 Draw5playall

28) dragon76n: Trade R3 G3 Greone

29) Draw5PlayAll: Build R1 Ugh
	Draw5PlayAll: Whaaaaat?

30) dragon76n: Discover G3 Greone G3 Grethr

31) Draw5PlayAll: Build G2 Draw5playall
	Draw5PlayAll: I tried four times to enter "build R1 ugh" and every single time the connection dropped out. Then building a Y1, as well as "construct r1 ugh" (lowercase r), worked...

32) dragon76n: Sacrifice G3 Grethr
Build Y1 Greone
Build Y2 Dragon76n
Build G3 Dragon76n

33) Draw5PlayAll: Discover G2 Draw5playall Y2 Crlf

34) dragon76n: Discover G3 Dragon76n B1 Bluone

35) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build Y3 Ugh
Build G3 Crlf
	Draw5PlayAll: Carriage return line feed
	dragon76n: :D

36) dragon76n: Sacrifice Y2 Dragon76n
Move Y1 Greone Ugh
Move Y1 Greone Ugh
Catastrophe Ugh Y

37) Draw5PlayAll: Build Y1 Draw5playall

38) dragon76n: Sacrifice G3 Bluone
Build G3 Dragon76n
Build Y1 Dragon76n
Build Y2 Dragon76n

39) Draw5PlayAll: Move Y1 Draw5playall Ugh

40) dragon76n: Move Y3 Dragon76n Greone

41) Draw5PlayAll: Sacrifice G3 Crlf
Build Y2 Ugh
Build Y3 Ugh
Build Y3 Draw5playall

42) dragon76n: Sacrifice Y2 Dragon76n
Move Y1 Dragon76n Greone
Move Y1 Greone Ugh
Catastrophe Ugh Yellow

43) Draw5PlayAll: Sacrifice Y3 Draw5playall
Discover G2 Crlf R1 Sudo_rm_-rf
Move G2 Sudo_rm_-rf Dragon76n
Catastrophe Dragon76n Green
Move R3 Ugh Greone

	dragon76n: I didn't see that one coming! Good game.
	Draw5PlayAll: Never keep two ships in your homeworld matching your star... (unless you are 100% sure your opponent has insufficient movement)


35156)
Variants: "Hard time"
Started: 2019.4.24, Ended: 2019.5.6
Participants: Felix (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y3 G3

2) Felix: Homeworld Y1 B3 G3

3) Trydnt: Build G1 Trydnt

4) Felix: Build G1 Felix

5) Trydnt: Trade G1 Y1 Trydnt

6) Felix: Trade G1 Y1 Felix

7) Trydnt: Build Y2 Trydnt

8) Felix: Build Y2 Felix

9) Trydnt: Discover Y1 Trydnt G1 G1

10) Felix: Trade Y1 B1 Felix

11) Trydnt: Build Y1 Trydnt

12) Felix: Discover Y2 Felix G2 Oompa

13) Trydnt: Discover Y2 Trydnt G1 G11

14) Felix: Build Y2 Oompa

15) Trydnt: Build Y3 G1

16) Felix: Move Y2 Oompa G11

17) Trydnt: Build Y3 G11

18) Felix: Build B1 Felix
	Felix: I don't like the way this is going!

19) Trydnt: Discover Y2 G11 B2 B2

20) Felix: Move B1 Felix Oompa

21) Trydnt: Trade Y1 R1 Trydnt

22) Felix: Discover Y2 G11 B2 Bronx

23) Trydnt: Sacrifice Y2 B2
Move Y3 G1 Bronx
Move Y3 Bronx Felix

24) Felix: Sacrifice Y2 Oompa
Move G3 Felix Bronx
Move Y2 Bronx Felix

25) Trydnt: Trade Y3 R3 Felix



35113)
Variants: "Hard time"
Started: 2019.4.25, Ended: 2019.5.14
Participants: Uglyfoot (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H Y3 B1 G3

2) Uglyfoot: Homeworld Y3 B2 G3

3) dlwillson: B G1 Dlwillson

4) Uglyfoot: Build G1 Uglyfoot
	dlwillson: Sorry for timing out on the other game, and no,  I don't mind resignations.
	Uglyfoot: OK.  I feel bad that you "lost" on a time out while needing 1 more play to win.  I'll see if I can play better this time.

5) dlwillson: T G1 B1 Dlwillson

6) Uglyfoot: Discover G1 Uglyfoot R1 Gateway

7) dlwillson: B B1 Dlwillson

8) Uglyfoot: Build G1 Gateway

9) dlwillson: Discover B1 Dlwillson G2 Field

10) Uglyfoot: Build G1 Uglyfoot

11) dlwillson: B G2 Dlwillson

12) Uglyfoot: Trade G1 R1 Uglyfoot

13) dlwillson: S G3 Dlwillson
B B2 Field
B B2 Field
B B3 Dlwillson

14) Uglyfoot: Build G1 Uglyfoot

15) dlwillson: Trade B3 Y3 Dlwillson

16) Uglyfoot: Build G2 Uglyfoot

17) dlwillson: S Y3 Dlwillson
M G2 Dlwillson Field
M G2 Field Gateway
M G2 Gateway Uglyfoot
C Uglyfoot G

18) Uglyfoot: Sacrifice G1 Gateway
Build R1 Uglyfoot
	dlwillson: And the universe returned to a prehistoric age.
	Uglyfoot: and I witness another way to lose...

19) dlwillson: T B2 Y2 Field

20) Uglyfoot: Build G1 Gateway
	dlwillson: There are millions! 

21) dlwillson: S Y2 Field
M B2 Field Gateway
M B2 Gateway Uglyfoot

22) Uglyfoot: Discover R1 Uglyfoot Y1 Sol
	Uglyfoot: s g1 gateway
b r2 uglyfoot

23) dlwillson: T B2 R2 Uglyfoot

24) Uglyfoot: Sacrifice G1 Gateway
Build R2 Uglyfoot

25) dlwillson: A R2 Uglyfoot

	dlwillson: GG TY


35158)
Variants: "Hard time"
Started: 2019.5.2, Ended: 2019.5.29
Participants: dlwillson (S), Trydnt (N)
Winner: dlwillson

1) Trydnt: Homeworld G3 B2 Y3

2) dlwillson: H B3 R1 G3

3) Trydnt: Build Y1 Trydnt

4) dlwillson: Build G1 Dlwillson

5) Trydnt: Build Y1 Trydnt

6) dlwillson: T G1 Y1 Dlwillson

7) Trydnt: Trade Y1 R1 Trydnt

8) dlwillson: Build G1 Dlwillson

9) Trydnt: Build R1 Trydnt

10) dlwillson: B Y1 Dlwillson

11) Trydnt: Build Y2 Trydnt

12) dlwillson: B Y2 Dlwillson

13) Trydnt: Discover Y1 Trydnt G1 G1

14) dlwillson: D Y1 Dlwillson G2 Field

15) Trydnt: Move R1 Trydnt G1

16) dlwillson: D Y1 Dlwillson B2 Sea

17) Trydnt: Move R1 G1 Field

18) dlwillson: D Y1 Field G1 Forest

19) Trydnt: Move Y1 G1 Sea

20) dlwillson: D Y1 Sea B1 Sky

21) Trydnt: Move Y2 Trydnt Forest

22) dlwillson: S G3 Dlwillson
B Y2 Forest
B Y3 Sky
B Y3 Dlwillson

23) Trydnt: Build R2 Field

24) dlwillson: S Y2 Dlwillson
M Y1 Forest Trydnt
M Y2 Forest Trydnt

25) Trydnt: Trade Y3 R3 Trydnt

26) dlwillson: Sacrifice Y1 Trydnt
Discover Y2 Trydnt B1 Alsosky

27) Trydnt: Build R2 Trydnt

28) dlwillson: T Y3 R3 Sky

29) Trydnt: Trade R3 Y3 Trydnt

30) dlwillson: Build G1 Dlwillson

31) Trydnt: Move R2 Trydnt Alsosky

32) dlwillson: M Y2 Alsosky Sea

33) Trydnt: Discover Y1 Sea G3 G3

34) dlwillson: B G2 Dlwillson

	dlwillson: Bummer!


35120)
Variants: "Hard time"
Started: 2019.5.2, Ended: 2019.5.27
Participants: Trydnt (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 G3 B3

2) Trydnt: Homeworld G3 B2 Y3
	Simon: Have fun :-)

3) Simon: Build B1 Simon

4) Trydnt: Build Y1 Trydnt

5) Simon: Build B1 Simon

6) Trydnt: Trade Y1 R1 Trydnt

7) Simon: Trade B1 R1 Simon

8) Trydnt: Build R2 Trydnt

9) Simon: Trade B3 Y3 Simon

10) Trydnt: Build R2 Trydnt

11) Simon: Discover R1 Simon G2 G2

12) Trydnt: Discover R1 Trydnt G1 G1

13) Simon: Build B1 Simon

14) Trydnt: Trade R2 B2 Trydnt

15) Simon: Build R2 G2

16) Trydnt: Build Y1 Trydnt

17) Simon: Move B1 Simon G2

18) Trydnt: Build R2 G1

19) Simon: Trade R2 Y2 G2

20) Trydnt: Move B2 Trydnt G1

21) Simon: Build B1 Simon

22) Trydnt: Trade R1 Y1 G1

23) Simon: Discover B1 Simon G2 G2a

24) Trydnt: Move R2 G1 G2a

25) Simon: Build B2 G2a

26) Trydnt: Sacrifice R2 Trydnt
Attack B2 G2a
Attack B1 G2a

27) Simon: Build B3 G2

28) Trydnt: Build B3 G1

29) Simon: Build B3 Simon

30) Trydnt: Trade B2 Y2 G1

31) Simon: Trade B3 Y3 Simon

32) Trydnt: Trade B2 Y2 G2a

33) Simon: Move Y3 Simon G2a

34) Trydnt: Build Y1 G2a

35) Simon: Sacrifice R1 G2
Attack R2 G2a

36) Trydnt: Trade Y1 R1 G1

37) Simon: Discover R2 G2a Y1 Y1



35059)
Variants: "Unrated, Hard time"
Started: 2019.5.2, Ended: 2019.6.1
Participants: wil (S), Trydnt (N)
Winner: wil

1) Trydnt: Homeworld G3 B2 Y3

2) wil: H Y2 B1 G3

3) Trydnt: Build Y1 Trydnt

4) wil: B G1 Wil
	wil: Back in CP stopped by WS

5) Trydnt: Trade Y1 B1 Trydnt
	Trydnt: nice! miss the old place immensely. hopefully will make it out to the dust this year though for the conclave

6) wil: T G1 B1 Wil

7) Trydnt: Build B2 Trydnt
	wil: Catharsis this weekend
	Trydnt: yeah I keep seeing stuff about it and miss it all so much :(

8) wil: D B1 Wil G3 G3

9) Trydnt: Discover B2 Trydnt G1 G1

10) wil: B G1 Wil

11) Trydnt: Build Y1 Trydnt

12) wil: T G1 Y1 Wil

13) Trydnt: Move Y1 Trydnt G1

14) wil: B G1 Wil

15) Trydnt: Trade B1 R1 Trydnt

16) wil: T G1 R1 Wil

17) Trydnt: Build B1 G1

18) wil: B G1 Wil

19) Trydnt: Discover B2 G1 Y3 Y3

20) wil: B G1 Wil

21) Trydnt: Trade B2 G2 Y3

22) wil: D G1 Wil Y3 Why3

23) Trydnt: Build G2 Y3

24) wil: M G1 Wil Why3

25) Trydnt: Build B2 G1

26) wil: B B2 G3

27) Trydnt: Move B1 G1 Y3

28) wil: T B2 Y2 G3

29) Trydnt: Sacrifice G2 Y3
Build Y1 Trydnt
Build Y2 G1

30) wil: B G2 Why3

31) Trydnt: Build G2 Y3

32) wil: D G1 Why3 R1 R1

33) Trydnt: Move G2 Y3 R1

34) wil: M G1 Why3 R1

35) Trydnt: Build R2 Trydnt

36) wil: B R2 Wil
	wil: You coming for a visit or just passing thru?

37) Trydnt: Sacrifice Y1 Trydnt
Discover B1 Y3 Y1 Y1

38) wil: M R1 Wil G3

39) Trydnt: Sacrifice G2 R1
Build B2 Y1
Build B3 G1

40) wil: S G2 Why3
B Y3 G3
B B3 G3

41) Trydnt: Sacrifice G2 Y3
Build Y3 Trydnt
Pass

42) wil: B G2 Wil



35170)
Variants: "Hard time"
Started: 2019.5.3, Ended: 2019.5.4
Participants: Laurie_Menke (S), dougforte (N)
Winner: Laurie_Menke

1) dougforte: Homeworld Y2 B3 G3
	Laurie_Menke: Hi dougforte! Good luck!  :)
	dougforte: Thanks, you too! :)

2) Laurie_Menke: Homeworld Y3 B1 G3

3) dougforte: Discover G3 Dougforte G1 World1
	dougforte: Uh, next time I'll wait a few more turns before self-destructing.
	dougforte: Thanks for the game, though!
	Laurie_Menke: Oh wow! I didn't even know the system would let you do that! Sorry.  That sucks.  :(  Challenge me any time!
	dougforte: Thank you!  I think the system tried to warn me, but I didn't understand it well.
	dougforte: I don't mind, though, it's kind of hilarious.  I'll have a better idea what to avoid next time.  :)
	Laurie_Menke: :)



35177)
Variants: "Hard time"
Started: 2019.5.5, Ended: 2019.6.1
Participants: Draw5PlayAll (S), deanthebean (N)
Winner: Draw5PlayAll

1) deanthebean: Homeworld B1 Y2 G3
	Draw5PlayAll: Say, are you actually interested in playing the game, or are you just trying to move up the ladder? I might want to resign this and wait until the #1 seat opens up so I can try to be first again.

2) Draw5PlayAll: Homeworld B1 G3 B3 *
	deanthebean: If you want to resign that's OK with me. 

3) deanthebean: Build G1 Deanthebean
	Draw5PlayAll: I think I will just crush you instead.
	deanthebean: Ok. Good plan ;) Let's see if it works....

4) Draw5PlayAll: Build B1 Draw5playall

5) deanthebean: Build G1 Deanthebean

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) deanthebean: Trade G1 R1 Deanthebean

8) Draw5PlayAll: Build B2 Draw5playall

9) deanthebean: Build R1 Deanthebean

10) Draw5PlayAll: Discover B2 Draw5playall G2 Growth

11) deanthebean: Build R1 Deanthebean

12) Draw5PlayAll: Build B2 Growth

13) deanthebean: Discover R1 Deanthebean B3 Commerce
	Draw5PlayAll: Forget trying to get a B2.

14) Draw5PlayAll: Build B2 Draw5playall
	deanthebean: Yeah. I regret allowing myself to get shut out of blue. 

15) deanthebean: Build R2 Deanthebean

16) Draw5PlayAll: Build B3 Growth

17) deanthebean: Trade R1 Y1 Deanthebean

18) Draw5PlayAll: Trade B3 R3 Growth

19) deanthebean: Build Y1 Deanthebean

20) Draw5PlayAll: Build B3 Growth

21) deanthebean: Discover Y1 Deanthebean B3 Desperation

22) Draw5PlayAll: Trade B3 Y3 Growth

23) deanthebean: Trade G3 B3 Deanthebean

24) Draw5PlayAll: Build Y1 Growth

25) deanthebean: Build G1 Deanthebean

26) Draw5PlayAll: Build Y2 Draw5playall

27) deanthebean: Discover Y1 Deanthebean G3 Hope

28) Draw5PlayAll: Move B2 Growth Hope

29) deanthebean: Move B3 Deanthebean Hope

30) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y3 Growth Commerce
Move Y3 Commerce Deanthebean

	Draw5PlayAll: I knew something was up...
	deanthebean: Ok. This looks pretty hopeless for me. Well played!


35112)
Variants: "Unrated, Hard time"
Started: 2019.5.8, Ended: 2019.6.13
Participants: Babamots (S), dlwillson (N)
Winner: Babamots

1) dlwillson: H R3 B2 G3
	Babamots: I've been taking a break for a while and could use some practice. Good luck!

2) Babamots: Homeworld Y1 B3 G3
	dlwillson: TY!GL!HF!

3) dlwillson: B G1 Dlwillson

4) Babamots: Build G1 Babamots

5) dlwillson: T G1 Y1 Dlwillson

6) Babamots: Trade G1 Y1 Babamots

7) dlwillson: B Y2 Dlwillson

8) Babamots: Build Y2 Babamots

9) dlwillson: D Y1 Dlwillson B1 Sea

10) Babamots: Discover Y1 Babamots G2 Ferenginar

11) dlwillson: B G1 Dlwillson

12) Babamots: Build G1 Babamots

13) dlwillson: Move G1 Dlwillson Sea

14) Babamots: Trade G1 R1 Babamots

15) dlwillson: B G1 Sea

16) Babamots: Build R1 Babamots

17) dlwillson: T G1 R1 Sea

18) Babamots: Move R1 Babamots Ferenginar

19) dlwillson: B R2 Sea

20) Babamots: Build R2 Ferenginar

21) dlwillson: B Y2 Dlwillson

22) Babamots: Build Y3 Ferenginar

23) dlwillson: B Y3 Sea

24) Babamots: Discover R1 Ferenginar Y3 Iconia

25) dlwillson: T Y1 B1 Sea

26) Babamots: Sacrifice G3 Babamots
Build R2 Ferenginar
Build R3 Iconia
Build R3 Babamots

27) dlwillson: D R2 Sea G2 Sky

28) Babamots: Trade R1 B1 Babamots

29) dlwillson: B R1 Sky

30) Babamots: Move B1 Babamots Ferenginar

31) dlwillson: M B1 Sea Sky

32) Babamots: Move R3 Iconia Sky

33) dlwillson: B B2 Sky

34) Babamots: Sacrifice R2 Ferenginar
Attack R2 Sky
Attack B2 Sky

35) dlwillson: B R2 Sky
C Sky R

36) Babamots: Build B2 Ferenginar

37) dlwillson: B B3 Sky

38) Babamots: Build B3 Sky
Catastrophe Sky B

39) dlwillson: B G1 Dlwillson

40) Babamots: Build B1 Ferenginar

41) dlwillson: B G1 Sea

42) Babamots: Sacrifice Y3 Ferenginar
Move B1 Ferenginar Sea
Move B1 Ferenginar Sea
Move B2 Ferenginar Sea
Catastrophe Sea B

43) dlwillson: T G1 R1 Dlwillson

44) Babamots: Trade R3 G3 Babamots

45) dlwillson: D Y2 Dlwillson G1 Field

46) Babamots: Build G1 Babamots

47) dlwillson: M R1 Dlwillson Field

48) Babamots: Trade G1 R1 Babamots

49) dlwillson: D Y2 Field G2 Forest

50) Babamots: Discover Y2 Babamots R2 Romulus

51) dlwillson: B G1 Dlwillson

52) Babamots: Sacrifice G3 Babamots
Build R2 Ferenginar
Build R3 Iconia
Build R3 Babamots

53) dlwillson: B G1 Dlwillson

54) Babamots: Move Y2 Romulus Field

	Babamots: Sorry, I had been planning to hit the admin button this morning but I got busy and forgot. I hope you don't feel robbed.
	dlwillson: Meh. I was stuck for a good response, so I'd say the win is pretty legit. I might've been able to swing around, but probably not. Good game, if short. I'm going to take down my challenges and just play whatever ladder matches come up until I'm less busy.
	Babamots: Well, I hope life leaves you time to have the fun you want soon. Thanks for the game! See you around!


35189)
Variants: "Hard time"
Started: 2019.5.11, Ended: 2019.7.7
Participants: dougforte (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld B1 Y3 G3
	Laurie_Menke: Hi again, dougforte! Have fun!  (Also, if you're new to Homeworlds, feel free to ask questions!)

2) dougforte: Homeworld G3 B2 Y3

3) Laurie_Menke: Build G1 Laurie_menke
	dougforte: Thanks, you too!  I started with blue and green to avoid the system warning this time, so I might survive the first turn.  :)
	dougforte: I'll probably have some useful questions at some point as well, thanks!
	Laurie_Menke: A fine choice! Be sure to grow a ship in your Homeworld before venturing out... you always need to leave a ship in your Homeworld.

4) dougforte: Build Y1 Dougforte

5) Laurie_Menke: Build G1 Laurie_menke
	dougforte: A good reminder, thanks.  I successfully built a ship!
	Laurie_Menke: Yay!  :)

6) dougforte: Build Y1 Dougforte

7) Laurie_Menke: Trade G1 Y1 Laurie_menke

8) dougforte: Trade Y1 B1 Dougforte

9) Laurie_Menke: Discover Y1 Laurie_menke B2 Danube
	dougforte: I see trading is how to get different colored ships.
	Laurie_Menke: Yes. Mostly trading. Sometimes attacking/taking over.  :)

10) dougforte: Trade Y1 R1 Dougforte

11) Laurie_Menke: Trade G1 R1 Laurie_menke
	dougforte: Right, I don't think I'm quite ready for that, though, but trading I can manage.  :)
	Laurie_Menke: :)

12) dougforte: Build Y1 Dougforte

13) Laurie_Menke: Build G1 Laurie_menke

14) dougforte: Discover Y3 Dougforte G1 Rhine

15) Laurie_Menke: Build G1 Laurie_menke

16) dougforte: Move B1 Dougforte Rhine
	Laurie_Menke: Warning: Tomorrow I leave for a six day business trip. I may not play my turn again until I get back. Sorry for the delay.

17) Laurie_Menke: Discover Y1 Danube B1 Colorado
	dougforte: No worries, I hope the trip goes well.  :)
	Laurie_Menke: Thanks! I'm back, and all went well. Now I just need to get rid of the cold I caught.  :/

18) dougforte: Build B2 Rhine

19) Laurie_Menke: Sacrifice G1 Laurie_menke
Build Y1 Colorado
	dougforte: Glad to hear it, though a cold is an unfortunate souvenir.

20) dougforte: Build Y2 Dougforte

21) Laurie_Menke: Build G1 Laurie_menke

22) dougforte: Build Y2 Dougforte

23) Laurie_Menke: Move Y1 Colorado Dougforte
Catastrophe Dougforte Y

24) dougforte: Trade B2 G2 Rhine

25) Laurie_Menke: Discover G1 Laurie_menke Y2 Steppingstone
	Laurie_Menke: Sorry. :(  Always a hard lesson to learn.

26) dougforte: Build G2 Rhine
	dougforte: No worries, it's good to see a catastrophe, is something I wouldn't normally expect to say.  :)
	dougforte: Still, maybe next time I can see it coming in advance...
	Laurie_Menke: :)

27) Laurie_Menke: Move G1 Steppingstone Colorado

28) dougforte: Trade G2 Y2 Rhine

29) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Colorado
Build G2 Colorado
Build G3 Laurie_menke

30) dougforte: Build G3 Rhine
	Laurie_Menke: This move is called a Factory...

31) Laurie_Menke: Trade G2 R2 Colorado
	Laurie_Menke: Because even though you sacrifice your piece, you get it back plus two more.
	dougforte: Right, I figured the sacrifice can be powerful, I just don't know what to do with it yet.  :)

32) dougforte: Move Y3 Rhine Dougforte

33) Laurie_Menke: Trade G2 Y2 Colorado

34) dougforte: Build Y1 Rhine

35) Laurie_Menke: Sacrifice Y2 Colorado
Move G1 Colorado Dougforte
Move G1 Dougforte Rhine
Catastrophe Rhine G

36) dougforte: Trade R1 G1 Dougforte

37) Laurie_Menke: Sacrifice G1 Laurie_menke
Build Y1 Colorado
	Laurie_Menke: I'm very sorry. But the best way to learn is to see if happen.

38) dougforte: Build G1 Dougforte

39) Laurie_Menke: Move Y1 Colorado Dougforte
	dougforte: It's okay, I appreciate learning, even if it seems to take me a while.  :)
	Laurie_Menke: Oh, no... you're learning quite quickly! I've been telling Andy that he'll have to look out for you soon. This is just a game that takes a long time to get good at.  :)

40) dougforte: Trade G1 R1 Dougforte
	dougforte: Thank you!  I agree, I think it will be several games before I'm able to put up any real challenge.
	dougforte: Is Andy also on the ladder?

41) Laurie_Menke: Sacrifice R2 Colorado
Attack R1 Dougforte
Attack G1 Dougforte
	Laurie_Menke: No, he finds it hard to play on SDG because of the random way new star systems are added to the universe. He prefers to put the pieces in a very specific way and SDG can't do it that way. But hopefully you'll get a chance to challenge him in person sometime soon.  :)

42) dougforte: Build Y1 Dougforte
	Draw5PlayAll: AFAICT they are sorted in alphabetical order.
	Laurie_Menke: Huh... I'd never noticed. I don't think there's any way we could use that fact to create what Andy wants, but I'll have to think about that.
	dougforte: Ah, I see.  I haven't played these games IRL, so for me getting used to how the user interface works here is just part of learning the game, but I certainly understand having issues with it (or any interface in general).
	dougforte: Also real pieces can be quite nice, and I'm sure that's true for some of these pyramid sets.  :)

43) Laurie_Menke: Build Y2 Dougforte
Catastrophe Dougforte Y
	Laurie_Menke: Oh absolutely, dougforte! You'll probably find more people to play with here on SDG, but nothing beats playing with the real pieces.  :)
	Laurie_Menke: Oops! Don't forget about catastrophes! Either side can call a catastrophe. Would you like to undo that last move?
	dougforte: Ah, thanks for the reminder.  :)  At least I checked ships this time, but I'll have to remember to look at all pieces, including system markers...

	dougforte: Good sacrifice!  I'm lucky there's still a move for me, options seem to be limited...
	Laurie_Menke: Yes, I'm afraid you're nearing the end of your game unless you pull off something unexpected.
	Laurie_Menke: Thanks for the fun! I expect you to be a force to be reckoned with very soon!  Feel free to challenge me any time!  :)
	dougforte: I will, once I get off the bottom of the ladder, of course.  :)
	dougforte: Very soon may be optimistic, there's still a lot for me to learn.  Anyway, thanks for the game!
	Laurie_Menke: :)


35114)
Started: 2019.5.12, Ended: 2019.7.21
Participants: ts52 (S), Draw5PlayAll (N)
Winner: ts52

1) Draw5PlayAll: Pass

2) ts52: Homeworld Y1 B2 G3

3) Draw5PlayAll: Homeworld B3 R1 G3

4) ts52: Build G1 Ts52

5) Draw5PlayAll: Build G1 Draw5playall
	ts52: sorry for the delay. have a good game!

6) ts52: Build G1 Ts52

7) Draw5PlayAll: Build G2 Draw5playall

8) ts52: Trade G1 Y1 Ts52
	Draw5PlayAll: Ha

9) Draw5PlayAll: Trade G2 Y2 Draw5playall

10) ts52: T G1 B1 Ts52

11) Draw5PlayAll: Build G1 Draw5playall

12) ts52: Discover B1 Ts52 G3 Kermit

13) Draw5PlayAll: Trade G1 B1 Draw5playall

14) ts52: Build G1 Ts52

15) Draw5PlayAll: Discover Y2 Draw5playall B2 Trade

16) ts52: Move Y1 Ts52 Kermit

17) Draw5PlayAll: Trade G1 Y1 Draw5playall

18) ts52: Build Y2 Kermit

19) Draw5PlayAll: Build G1 Draw5playall

20) ts52: Build B1 Kermit

21) Draw5PlayAll: Move G1 Draw5playall Trade

22) ts52: Discover B1 Kermit G2 Robin

23) Draw5PlayAll: Discover B1 Draw5playall G2 Build

24) ts52: Trade G1 R1 Ts52

25) Draw5PlayAll: Trade Y2 R2 Trade

26) ts52: Build Y2 Kermit

27) Draw5PlayAll: Build Y2 Draw5playall

28) ts52: Move Y2 Kermit Robin

29) Draw5PlayAll: Move Y1 Draw5playall Trade

30) ts52: Build Y3 Robin

31) Draw5PlayAll: Build Y3 Trade

32) ts52: Trade Y2 R2 Kermit

33) Draw5PlayAll: Discover Y1 Trade G1 Construct

34) ts52: Move R2 Kermit Build

35) Draw5PlayAll: Build G1 Draw5playall

36) ts52: Attack B1N Build

37) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Construct
Build Y3 Draw5playall
Build G2 Trade

38) ts52: Build G3 Ts52

39) Draw5PlayAll: Build R1 Trade

40) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Robin
Build B3 Kermit

41) Draw5PlayAll: Discover R1 Trade B3 Convert

42) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Ts52
Build R3 Build

43) Draw5PlayAll: Sacrifice G2 Trade
Build R3 Convert
Build R3 Trade

44) ts52: Move B3 Kermit Construct

45) Draw5PlayAll: Sacrifice Y1 Construct
Move Y2 Construct Convert

46) ts52: Build Y1 Kermit

47) Draw5PlayAll: Move R3 Trade Kermit

48) ts52: Move Y1 Kermit Build

49) Draw5PlayAll: Discover Y2 Draw5playall G2 Create

50) ts52: Move B1 Robin Draw5playall

51) Draw5PlayAll: Sacrifice Y2 Convert
Move R1 Convert Build
Move R3 Convert Build
Catastrophe Build Red

52) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build Y2 Build
Build B3 Build

53) Draw5PlayAll: Build R1 Kermit

54) ts52: Move Y2 Build Draw5playall

55) Draw5PlayAll: Trade Y3 R3 Draw5playall
	Draw5PlayAll: Uh oh

56) ts52: Discover R2 Ts52 Y3 Bigbird

57) Draw5PlayAll: Attack Y2 Draw5playall

58) ts52: Sacrifice Y3 Robin
Move B1 Build Draw5playall
Move B2 Robin Draw5playall
Catastrophe Draw5playall B
Move R2 Bigbird Draw5playall

59) Draw5PlayAll: Sacrifice R3 Draw5playall
Attack R2 Draw5playall
Attack B1 Kermit
Attack Y1 Kermit
	Draw5PlayAll: ***** This game is NOT for the tournament *****

60) ts52: Move B3 Build Draw5playall

61) Draw5PlayAll: Sacrifice Y2 Create
Move R3 Kermit Draw5playall
Move Y3 Trade Draw5playall
	ts52: Indeed. This started long before the tournament, and I haven't even registered yet.

62) ts52: Sacrifice Y2 Robin
Move R1 Ts52 Kermit
Move R1 Kermit Draw5playall
Catastrophe Draw5playall Red
	ts52: Thanks for the game.



35168)
Variants: "Hard time"
Started: 2019.5.12, Ended: 2019.6.12
Participants: Simon (S), Draw5PlayAll (N)
Winner: Simon

1) Draw5PlayAll: Pass
	Simon: Have fun!

2) Simon: Homeworld G3 R1 B3

3) Draw5PlayAll: Homeworld B3 R2 G3

4) Simon: Build B1 Simon

5) Draw5PlayAll: Build G1 Draw5playall

6) Simon: Build B1 Simon

7) Draw5PlayAll: Build G1 Draw5playall

8) Simon: Trade B3 Y3 Simon

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) Simon: Build B2 Simon

11) Draw5PlayAll: Build B2 Draw5playall

12) Simon: Discover B2 Simon G2 G2

13) Draw5PlayAll: Trade B2 Y2 Draw5playall

14) Simon: Build B2 G2

15) Draw5PlayAll: Discover B1 Draw5playall G1 Build

16) Simon: Trade B2 Y2 G2

17) Draw5PlayAll: Build B2 Build

18) Simon: Build B2 G2

19) Draw5PlayAll: Trade B2 R2 Build

20) Simon: Trade B2 R2 G2

21) Draw5PlayAll: Build B2 Build

22) Simon: Build R1 G2

23) Draw5PlayAll: Trade B1 Y1 Build

24) Simon: Discover R2 G2 Y1 Y1

25) Draw5PlayAll: Build Y1 Build

26) Simon: Build Y2 G2

27) Draw5PlayAll: Build Y3 Draw5playall

28) Simon: Build Y3 Simon

29) Draw5PlayAll: Discover G1 Draw5playall R1 Attack

30) Simon: Trade Y3 G3 Simon

31) Draw5PlayAll: Build R3 Build

32) Simon: Sacrifice G3 Simon
Build Y3 Simon
Build R3 Y1
Build R3 G2

33) Draw5PlayAll: Discover R2 Build B2 Trade

34) Simon: Build B1 G2

35) Draw5PlayAll: Build B3 Build

36) Simon: Sacrifice Y2 G2
Move R3 Y1 Draw5playall
Discover B1 Simon G2 G2a

37) Draw5PlayAll: Attack R3 Draw5playall
	Draw5PlayAll: ?!?

38) Simon: Sacrifice Y3 Simon
Move R2 Y1 Draw5playall
Move R1 G2 Attack
Move R1 Attack Draw5playall
Catastrophe Draw5playall Red
	Draw5PlayAll: Oh, nice.

39) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move B2 Build G2
Move B3 Build G2
Catastrophe G2 Blue

40) Simon: Build B1 G2a
	Simon: Thanks. Although it felt very early too and I didn't see it at first.

41) Draw5PlayAll: Move R3 Build G2a

42) Simon: Sacrifice Y2 G2
Move B1 G2a Draw5playall
Move B1 G2a Draw5playall

43) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move R3 G2a Simon
Move R2 Trade Simon
Move Y1 Build Draw5playall
	Draw5PlayAll: HaNgInGbYaThReAd

44) Simon: Sacrifice Y3 Simon
Move B1 Simon G2
Move B1 G2 Draw5playall
Move R3 G2 Simon
Catastrophe Draw5playall Blue

	Draw5PlayAll: I can survive one more move...
	Simon: Hmm, catastrophe is optional in any ruleset that I know. :-) Thanks for game, rematch anytime!


35197)
Variants: "Hard time"
Started: 2019.5.14, Ended: 2019.5.30
Participants: Simon (S), ajo (N)
Winner: Simon

1) ajo: Homeworld B2 R1 G3

2) Simon: Homeworld Y1 G3 B3
	Simon: Have fun :)

3) ajo: Build G1 Ajo

4) Simon: Build B1 Simon
	ajo: You too!

5) ajo: Trade G1 B1 Ajo

6) Simon: Trade B1 R1 Simon

7) ajo: Build G1 Ajo

8) Simon: Build R1 Simon

9) ajo: Build G1 Ajo

10) Simon: Build R2 Simon

11) ajo: Trade G1 Y1 Ajo

12) Simon: Discover R2 Simon G2 G2

13) ajo: Build Y1 Ajo

14) Simon: Build B1 Simon

15) ajo: Build Y2 Ajo

16) Simon: Move B1 Simon G2

17) ajo: Discover Y2 Ajo B3 Alpha

18) Simon: Build R2 G2

19) ajo: Sacrifice G3 Ajo
Build Y2 Alpha
Build Y2 Alpha
Build Y3 Ajo

20) Simon: Build R2 Simon

21) ajo: Trade Y2 G2 Alpha

22) Simon: Build R3 G2

23) ajo: Discover Y2 Alpha B2 Beta

24) Simon: Trade R3 Y3 G2

25) ajo: Trade Y3 R3 Ajo

26) Simon: Move R2 G2 Alpha

27) ajo: Sacrifice G2 Alpha
Build Y2 Ajo
Build Y3 Beta

28) Simon: Build Y3 G2

29) ajo: Trade Y3 R3 Beta

30) Simon: Sacrifice Y3 G2
Move R2 G2 Alpha
Move R2 Alpha Ajo
Move R2 Alpha Ajo
Catastrophe Ajo Red

31) ajo: Sacrifice Y2 Alpha
Move B1 Ajo Simon
Move R3 Beta Simon
Catastrophe Simon Red
	ajo: I saw that but for some reason thought you wouldn't do it. ...And then I completely missed that you have a Doomsday Machine already assembled! I think I lose.

32) Simon: Trade B3 R3 Simon

33) ajo: Sacrifice B1 Simon
Trade Y2 R2 Ajo
	Simon: Right, the attack looks very early. It really needed the leftover b1 at your home to be a big enough threat.
	ajo: And in fact, having neutralized your threat already by catastropheing red, I really should have left my b1 at home instead of putting it into harm's way. Now I have to rescue it. :(

34) Simon: Move B1 G2 Simon

35) ajo: Trade Y2 R2 Beta

36) Simon: Build B1 Simon

37) ajo: Build Y2 Ajo

38) Simon: Build B1 Simon

39) ajo: Pass
	ajo: Oh, I missed my chance. I should have done "trade r2 Beta b2" last turn.

40) Simon: Sacrifice Y3 G2
Move B1 Simon Ajo
Move B1 Simon Ajo
Move B1 Simon Ajo
Catastrophe Ajo Blue
	Simon: Yeah, that would prolong the game. Probably still slanted towards me but no immediate win. :-) Still, thanks for the game!



35206)
Variants: "Hard time"
Started: 2019.5.18, Ended: 2019.5.31
Participants: dlwillson (S), Trydnt (N)
Winner: dlwillson

1) Trydnt: Homeworld Y3 B2 G3

2) dlwillson: Homeworld B3 Y1 G3
	dlwillson: TY! GL! HF!

3) Trydnt: Build G1 Trydnt

4) dlwillson: B G1 Dlwillson
	Trydnt: You too!

5) Trydnt: Trade G1 Y1 Trydnt

6) dlwillson: T G1 Y1 Dlwillson

	dlwillson: What happened? 


35072)
Variants: "Hard time"
Started: 2019.5.19, Ended: 2019.6.23
Participants: Draw5PlayAll (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) Draw5PlayAll: Homeworld B1 G3 B3 *
	wil: Gl

3) wil: B G1 Wil
	Draw5PlayAll: Prepare to lose.
	wil: Blue instafreeze eh

4) Draw5PlayAll: Build B1 Draw5playall

5) wil: B G1 Wil
	Draw5PlayAll: Green instafreeze = crushing
Blue instafreeze = strong
Yellow instafreeze = risky
Red instafreeze = You cannot do anything!!

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) wil: D G1 Wil B3 B3

8) Draw5PlayAll: Build B2 Draw5playall

9) wil: B G1 B3

10) Draw5PlayAll: Discover B2 Draw5playall G2 Build

11) wil: B G2 B3

12) Draw5PlayAll: Build B2 Build

13) wil: T G2 B2 B3

14) Draw5PlayAll: Build Y1 Draw5playall

15) wil: B G2 Wil

16) Draw5PlayAll: Build B3 Build

17) wil: D G1 Wil Y3 Y3

18) Draw5PlayAll: Build B3 Draw5playall

19) wil: S G3 Wil
B G2 Y3
B G3 B3
B G3 Wil

20) Draw5PlayAll: Trade B3 R3 Build

21) wil: S B2 B3
T G2 R2 Y3
T G3 Y3 B3

22) Draw5PlayAll: Discover B3 Draw5playall G2 Construct

23) wil: S G3 Wil
B G3 Wil
B G3 Y3
B R1 Y3

24) Draw5PlayAll: Build B2 Construct

25) wil: B Y1 B3

26) Draw5PlayAll: Build B3 Build

27) wil: D R2 Y3 Y2 Y2

28) Draw5PlayAll: Build R1 Build
	Draw5PlayAll: There is one small problem with this.

I have no idea how to actually WIN from here.

29) wil: S G3 Wil
B R1 Y2
B R2 Y2
B G3 Wil
	wil: Then prepare to lose.
	wil: Heck we are only 14 moves in.

30) Draw5PlayAll: Trade B3 R3 Construct

31) wil: S Y3 B3
M G1 B3 Build
M G1 B3 Build
M G1 Y3 Build
C Build G

32) Draw5PlayAll: Build B2 Construct

33) wil: T G2 B2 Wil

34) Draw5PlayAll: Build B3 Construct

35) wil: B B3 Wil

36) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move B2 Construct B3
Move B2 B3 Wil
Move B3 Construct Draw5playall
Catastrophe Wil Blue

37) wil: B G1 Wil

38) Draw5PlayAll: Build R1 Construct
	Draw5PlayAll: I will regret this, but I would also regret NOT doing so.

39) wil: B G1 Y3
	Draw5PlayAll: Oh, the Homeworlds are connected now. I think I am still safe. For now.

40) Draw5PlayAll: Trade B1 G1 Draw5playall

41) wil: B R2 Y3

42) Draw5PlayAll: Build Y1 Draw5playall

43) wil: D R1 Y3 G2 G2

44) Draw5PlayAll: Trade B3 R3 Draw5playall

45) wil: S G3 Wil
B G2 Y3
B G3 Wil
B R3 G2
	Draw5PlayAll: Risks are made to be taken.

46) Draw5PlayAll: Move Y1 Draw5playall Construct

47) wil: S Y1 B3
D R3 G2 B3 B3

48) Draw5PlayAll: Build Y1 Draw5playall

49) wil: T R3 Y3 B3

50) Draw5PlayAll: Build Y2 Construct

51) wil: S G3 Wil
B G3 Wil
B R3 G2
B Y3 B3
	wil: Oopsie

52) Draw5PlayAll: Sacrifice Y2 Construct
Move G1 Draw5playall Wil
Move G1 Wil Y3
Catastrophe Y3 Green
	Draw5PlayAll: Your stuff looks very threatening, but I don't think it can do anything.

53) wil: M R1 Y2 Draw5playall

54) Draw5PlayAll: Trade R3 B3 Draw5playall

55) wil: A Y1 Draw5playall

56) Draw5PlayAll: Sacrifice R1 Construct
Attack R1 Draw5playall

57) wil: S R2 Y3
A Y1 Draw5playall
A R1 Draw5playall
	wil: Well dangit you made me change plans

58) Draw5PlayAll: Build B1 Construct
	Draw5PlayAll: You will NOT blow up my only good peripheral system!!

59) wil: T Y1 B1 Draw5playall
	wil: Ok

60) Draw5PlayAll: Trade B3 G3 Draw5playall
	Draw5PlayAll: I regret allowing you to blow up the build system earlier...

61) wil: T R1 G1 Draw5playall
	wil: I may have forgot to prepare to lose.
	wil: Its not to late is it?

62) Draw5PlayAll: Move R3 Construct Draw5playall

63) wil: S G3 Wil
B G1 Draw5playall
B B2 Draw5playall
B B2 Draw5playall
C Draw5playall B
C Draw5playall G
	wil: Got your will written?
	Draw5PlayAll: You are persistent, but I fail to see your plan.

	wil: That was.different.
	wil: I kept forgetting to lose, challenge me anytime.
	wil: I like instafreeze attempts, keep trying!
	Draw5PlayAll: My mistake was letting you blow up build and take down like all my stuff with it... otherwise I would have had a crushing lockdown on red.
	wil: I so wish we could replay from there...
	Draw5PlayAll: Well, it seems I should never have had like 5 ships there in the first place. It was not a "oh I missed a single move" problem...


35194)
Variants: "Hard time"
Started: 2019.5.26, Ended: 2019.6.22
Participants: Simon (S), dragon76n (N)
Winner: Simon

1) dragon76n: Homeworld B2 G1 Y3

2) Simon: Homeworld G1 B3 G3 *
	Simon: Hi, have fun!

3) dragon76n: Build Y1 Dragon76n
	dragon76n: Hi Simon! I think this is the first time I've played against you. Have fun.

4) Simon: Build G1 Simon

5) dragon76n: Build Y1 Dragon76n

6) Simon: Trade G3 Y3 Simon

7) dragon76n: Trade Y3 G3 Dragon76n

8) Simon: Build G2 Simon

9) dragon76n: Discover G3 Dragon76n B3 Bluthr

10) Simon: Trade G1 R1 Simon

11) dragon76n: B G1 Bluthr

12) Simon: Build G2 Simon

13) dragon76n: Move Y1 Dragon76n Bluthr

14) Simon: Discover G2 Simon B2 B2

15) dragon76n: Discover G1 Bluthr Y2 Yeltwo

16) Simon: Move G2 Simon Yeltwo

17) dragon76n: Build G2 Bluthr

18) Simon: Build G3 B2

19) dragon76n: Build G3 Yeltwo

20) Simon: Sacrifice G2 B2
Build G2 Yeltwo
Build R1 Simon
Catastrophe Yeltwo Green

21) dragon76n: Trade G2 R2 Bluthr

22) Simon: Move R1 Simon B2

23) dragon76n: Move G3 Bluthr Dragon76n

24) Simon: Build G1 B2

25) dragon76n: Discover R2 Bluthr Y1 Yelone

26) Simon: Build G2 B2

27) dragon76n: Discover R2 Yelone G2 Gretwo

28) Simon: Trade G3 Y3 B2

29) dragon76n: Build R1 Gretwo

30) Simon: Build G2 B2

31) dragon76n: Move Y1 Bluthr Gretwo

32) Simon: Discover G2 B2 B3 B3

33) dragon76n: Build R2 Gretwo

34) Simon: Build G3 B3

35) dragon76n: T G3 R3 Dragon76n

36) Simon: Sacrifice G3 B3
Build G3 B3
Build G3 B3
Build G3 B2

37) dragon76n: Discover R2 Gretwo Y3 Yelthr

38) Simon: Trade G3 B3 B2

39) dragon76n: Build R2 Dragon76n

40) Simon: Sacrifice G3 B3
Build G3 B3
Build R3 B2
Build R3 Simon

41) dragon76n: T R2 B2 Dragon76n

42) Simon: Discover B3 B2 G3 G3

43) dragon76n: Trade B2 Y2 Dragon76n

44) Simon: Sacrifice G3 B3
Build G3 B3
Build B1 G3
Build B1 G3

45) dragon76n: Discover R2 Gretwo B1 Bluone

46) Simon: Sacrifice Y3 B2
Move B1 G3 Dragon76n
Move B1 G3 Dragon76n
Move B3 G3 Dragon76n
Catastrophe Dragon76n Blue

47) dragon76n: Move R3 Dragon76n B3

48) Simon: Sacrifice Y3 Simon
Move G3 B3 Dragon76n
Move G3 B3 Dragon76n
Move G2 B3 Dragon76n
Catastrophe Dragon76n Green

	Simon: Hmm, whenever first player has a g1 or b1 in the homeworld, second player can start with the instant green/blue freezeout opening that duplicates that 1 and has a ship of same color. It dictates many first moves for second player though. <_<
	dragon76n: Good game. Thanks for the tip. I'll try to keep that in mind in the future. 
	Simon: gg!


35061)
Variants: "Unrated"
Started: 2019.5.28, Ended: 2019.6.24
Participants: Horizon (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	wil: Thanks for the game have you played before.

	wil: New to sdg? Homeworlds?


35231)
Variants: "Hard time"
Started: 2019.5.30, Ended: 2019.6.5
Participants: Simon (S), goulo (N)
Winner: Simon

1) goulo: Homeworld R3 B1 G3

2) Simon: Homeworld R2 G1 B3
	goulo: hi, have fun!
	Simon: You too, have fun!

3) goulo: Build G1 Goulo

4) Simon: Build B1 Simon

5) goulo: Trade G1 Y1 Goulo

6) Simon: Build B1 Simon

7) goulo: Build G1 Goulo

8) Simon: Trade B3 Y3 Simon

9) goulo: Build G1 Goulo

10) Simon: Build B2 Simon

11) goulo: Discover G1 Goulo Y2 Flavo

12) Simon: Trade B2 G2 Simon

13) goulo: Build G2 Flavo

14) Simon: Discover G2 Simon B3 B3

15) goulo: Discover G1 Flavo Y3 Flavego

16) Simon: Build B2 Simon

17) goulo: Build Y1 Goulo

18) Simon: Discover B1 Simon G3 G3

19) goulo: Sacrifice G3 Goulo
Build G2 Flavo
Build G3 Flavego
Build G3 Goulo

20) Simon: Build B2 G3

21) goulo: Trade Y1 R1 Goulo

22) Simon: Build B2 Simon

23) goulo: Move G2 Flavo B3

24) Simon: Move B2 Simon B3

25) goulo: Sacrifice R1 Goulo
Attack B2 B3

26) Simon: Trade B2 R2 G3

27) goulo: Sacrifice G2 B3
Build B2 B3
Build B3 B3
Catastrophe B3 B

28) Simon: Build B2 G3

29) goulo: Trade G1 R1 Goulo

30) Simon: Build B2 Simon

31) goulo: Build Y1 Goulo

32) Simon: Build B3 G3

33) goulo: Discover Y1 Goulo R2 Rubeno

34) Simon: Trade B3 Y3 G3

35) goulo: Build G1 Flavego

36) Simon: Trade B2 G2 G3

37) goulo: Move G1 Flavego Simon

38) Simon: Attack G1 Simon

39) goulo: Move G1 Flavego Simon

40) Simon: Sacrifice Y3 G3
Discover G1 Simon B3 B3
Move B2 Simon G3
Discover B2 G3 G2 G2

41) goulo: Sacrifice G2 Flavo
Build G2 Simon
Build R1 Goulo
	Simon: Expensive defense. x_X I am used to a 1-3 homeworld, and thus planned to move the captured g1 to the leftover g2, but now it costs a y3 sac to accomplish both.

42) Simon: Build R1 G3

43) goulo: Sacrifice G3 Flavego
Build G3 Simon
Build Y1 Goulo
Build Y2 Goulo
Catastrophe Simon G

44) Simon: Sacrifice Y3 Simon
Move R1 G3 G2
Move R1 G2 Goulo
Move B2 G2 Goulo
Catastrophe Goulo Red

45) goulo: Move G3 Goulo Simon

46) Simon: Trade B2 Y2 Goulo
Catastrophe Goulo Yellow
	goulo: hmm, uh-oh! well, at least I went down fighting. :P

	Simon: Yes, considerable attack, and I should have taken countermeasures much earlier. The counterattack hinged on your extra r1.
	goulo: thanks for the game!
	Simon: Thanks, gg!


35134)
Variants: "Unrated"
Started: 2019.5.31, Ended: 2019.6.29
Participants: Trydnt (S), Hg80 (N)
Winner: Trydnt

1) Hg80: Homeworld B3 R1 G3

2) Trydnt: Homeworld Y3 B2 G3

3) Hg80: Build G1 Hg80

4) Trydnt: Build G1 Trydnt

5) Hg80: Trade G1 Y1 Hg80

6) Trydnt: Trade G1 R1 Trydnt

7) Hg80: Build G1 Hg80

8) Trydnt: Build R1 Trydnt

9) Hg80: Discover G1 Hg80 B2 Alchem

10) Trydnt: Build R2 Trydnt

11) Hg80: Build G1 Alchem

12) Trydnt: Discover R2 Trydnt Y1 Y1

13) Hg80: Build G1 Hg80

14) Trydnt: Move R2 Y1 Alchem

15) Hg80: Sacrifice G1 Alchem
Build Y1 Hg80

16) Trydnt: Attack G1 Alchem

17) Hg80: Discover Y1 Hg80 G2 Idunno

18) Trydnt: Build R2 Alchem

19) Hg80: Trade G3 R3 Hg80

20) Trydnt: Trade R2 Y2 Alchem

21) Hg80: Build Y1 Idunno

22) Trydnt: Build Y2 Alchem

23) Hg80: Build Y2 Hg80

24) Trydnt: Discover Y2 Alchem G3 G3

25) Hg80: Trade Y1 B1 Hg80

26) Trydnt: Discover R2 Alchem G3 Gee3

27) Hg80: Move Y1 Idunno G3

28) Trydnt: Build R2 Gee3

29) Hg80: Build Y1 Idunno

30) Trydnt: Sacrifice Y2 G3
Discover R2 Gee3 G2 G2
Move R2 Gee3 Idunno

31) Hg80: Build Y2 Idunno

32) Trydnt: Attack Y2 Idunno

33) Hg80: Build Y3 Hg80

34) Trydnt: Sacrifice Y2 Idunno
Move R2 Idunno Hg80
Move R2 G2 Hg80
Catastrophe Hg80 R

35) Hg80: Trade Y3 R3 Hg80

36) Trydnt: Trade R1 B1 Trydnt

37) Hg80: Build G1 Hg80

38) Trydnt: Build G2 Alchem

39) Hg80: Move B1 Hg80 Idunno

40) Trydnt: Discover G2 Alchem Y3 Y3

41) Hg80: Build B1 Idunno

42) Trydnt: Discover B1 Trydnt R1 R1

43) Hg80: Build Y2 Hg80

44) Trydnt: Build Y3 Alchem

45) Hg80: Sacrifice Y2 Hg80
Move Y2 Hg80 Alchem
Move Y1 G3 Alchem
Catastrophe Alchem Y

46) Trydnt: Sacrifice G1 Alchem
Build B2 R1

47) Hg80: Trade G1 Y1 Hg80

48) Trydnt: Trade B2 Y2 R1

49) Hg80: Trade Y1 R1 Idunno

50) Trydnt: Sacrifice G2 Y3
Build B2 R1
Build R2 Trydnt

51) Hg80: Build R2 Idunno

52) Trydnt: Discover B2 R1 G2 G2

53) Hg80: Build R2 Hg80

54) Trydnt: Sacrifice G3 Trydnt
Build R3 Trydnt
Build B2 R1
Build B3 G2

55) Hg80: Discover R1 Idunno Y1 Kamik

56) Trydnt: Move R2 Trydnt Kamik

57) Hg80: Build R3 Idunno

58) Trydnt: Attack R1 Kamik

59) Hg80: Move R3 Idunno Kamik

60) Trydnt: Move B1 R1 Hg80

	Hg80: I believe that's checkmate.
	Trydnt: indeed it is. well played


35228)
Variants: "Unrated"
Started: 2019.5.31, Ended: 2019.6.4
Participants: Hg80 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) Hg80: Homeworld B3 R2 G3

3) wil: B G1 Wil
	wil: Goodluck, have fun!

4) Hg80: Build G1 Hg80
	Hg80: Thanks! My first game with another real person, incidentally

5) wil: T G1 R1 Wil

6) Hg80: Trade G1 Y1 Hg80

7) wil: B R1 Wil

8) Hg80: Build G1 Hg80
	wil: only been playing with fake people?
	Hg80: Well, playing with myself, but I guess "second me" is fake, so yes.

9) wil: B R1 Wil

10) Hg80: Build Y1 Hg80
	wil: Do you own pyramid arcade

11) wil: D R1 Wil G3 G3
	Hg80: I do, yes.

12) Hg80: Trade G3 R3 Hg80
	wil: Don't let anyone monopolize an economy
	wil: If someone gets a gun (red) get a gun.
	wil: Worth rereading the hints and gambits.

13) wil: D R1 Wil B3 B3
	Hg80: fair enough

14) Hg80: Discover Y1 Hg80 G1 Fleer
	wil: Wow fast learner!

15) wil: B G1 Wil

16) Hg80: Build G2 Hg80

17) wil: B G2 Wil

18) Hg80: Build Y1 Hg80

19) wil: T G2 Y2 Wil

20) Hg80: Build Y2 Fleer

21) wil: S G3 Wil
B R2 B3
B R2 Wil
B R3 B3

22) Hg80: Move Y2 Fleer G3

23) wil: B R3 G3

24) Hg80: Sacrifice Y2 G3
Discover G2 Hg80 B1 Tantrum
Move Y1 Hg80 Tantrum
	wil: Just visiting? Or ready to defect?

25) wil: M Y2 Wil G3
	Hg80: Visiting
	Hg80: Okay, in all honesty, it was a misplay
	Hg80: Like I said, still learning
	wil: No worries, you learn by making mistakes.

26) Hg80: Build G2 Tantrum

27) wil: T R3 Y3 B3

28) Hg80: Build Y2 Hg80

29) wil: B Y3 G3

30) Hg80: Build Y3 Tantrum

31) wil: M R3 G3 Wil

32) Hg80: Sacrifice Y2 Hg80
Move Y1 Tantrum G3
Move Y1 Fleer G3
Catastrophe G3 Y

33) wil: B R3 G3

34) Hg80: Build G1 Hg80

35) wil: T R3 G3 Wil

36) Hg80: Trade Y3 R3 Tantrum

37) wil: T R1 B1 Wil

38) Hg80: Build R1 Tantrum

39) wil: M B1 Wil G3

40) Hg80: Build Y1 Hg80

41) wil: T R3 Y3 G3

42) Hg80: Trade R3 Y3 Tantrum

43) wil: T R2 G2 B3

44) Hg80: Build R2 Tantrum

45) wil: S G3 Wil
B G3 Wil
B R3 B3
B R3 G3

46) Hg80: Sacrifice G2 Tantrum
Build G2 Hg80
Build G3 Tantrum
	wil: The factory

47) wil: D R3 B3 Y1 Y1

48) Hg80: Trade R3 B3 Hg80
	Hg80: Yeah, I was afraid of that

49) wil: S G3 Wil
B G3 Wil
B R3 B3
B Y2 G3

50) Hg80: Sacrifice G1 Hg80
Build Y2 Tantrum
	wil: Factory grinding on overtime

51) wil: S G3 Wil
B G1 B3
B B2 G3
B G3 Wil

52) Hg80: Sacrifice Y3 Tantrum
Move G1 Hg80 Tantrum
Move G1 Tantrum B3
Move G2 Tantrum B3
Catastrophe B3 G

53) wil: S G1 Wil
B Y3 B3

54) Hg80: Move Y1 Hg80 Tantrum
	wil: And I appreciate the big fuel tanker
	wil: I'd rather you not have star access
	wil: I thank you for banking some ones and

55) wil: B B2 G3
	Hg80: I'm probably gonna lose, I've kinda accepted that at this point, but I'm gonna try to go out with a bang
	Hg80: Be it a literal bang  or metaphorical
	wil: Losing is learning.
	wil: Then you try the tricks n see counters
	wil: First.you see tricks used against you

56) Hg80: Build G1 Tantrum

57) wil: M B2 G3 Tantrum

58) Hg80: Attack B2N Tantrum

59) wil: S Y2 G3
M B2 G3 Tantrum
M B1 G3 Tantrum
C Tantrum B

60) Hg80: Build G1 Hg80
	wil: All your eggs in one basket, pearl harbor 
	wil: Just a few moves to go not bad first game

61) wil: S Y3 B3
D R3 B3 Y1 Why1
M R1 G3 Y1
M R3 G3 Why1

62) Hg80: Discover G1 Hg80 B1 Troll
	wil: Singing doowaddy diddidum diddidoo
	wil: Here we come justa walkin down da street

63) wil: M R3 Y1 Hg80

64) Hg80: Attack R3N Hg80

65) wil: S Y3 G3
M R3 Why1 Hg80
M R1 Y1 Hg80
C Hg80 R
M R3 Why1 Hg80

	wil: I've thrown as many lessons and gambits in as I could
	Hg80: Well, thanks for the tips! Good game.
	wil: No worries, challenge anytime,.join the ladder


35235)
Variants: "Unrated"
Started: 2019.6.2, Ended: 2019.6.21
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H Y2 B1 G3

2) Trydnt: Homeworld B3 Y2 G3
	wil: Went to whytestone last night..

3) wil: B G1 Wil
	Trydnt: excellent how is  the old place? 
	Trydnt: thought about going for the blue freezeout but would have been too short a game
	wil: I woulda killed ya
	wil: All was well, quiet Saturday night

4) Trydnt: Build G1 Trydnt

5) wil: T G1 B1 Wil

6) Trydnt: Trade G1 B1 Trydnt

7) wil: B B2 Wil

8) Trydnt: Build B2 Trydnt

9) wil: D B1 Wil Y3 Y3

10) Trydnt: Trade B2 Y2 Trydnt

11) wil: B B2 Wil
	wil: Enjoying trump?

12) Trydnt: Build B2 Trydnt
	Trydnt: enjoying the British reactions

13) wil: D B2 Wil G3 G3

14) Trydnt: Discover B2 Trydnt G1 G1
	wil: Me too!  Waiting for him to tell you how to  brexit
	wil: Can you put him in the Parliament weekly QnA?
	Trydnt: haha no the Speaker doesn't want him there

15) wil: B B3 G3

16) Trydnt: Build B3 G1

17) wil: T B2 G2 Wil

18) Trydnt: Trade B2 R2 G1

19) wil: T B1 R1 Y3

20) Trydnt: Build B1 G1

21) wil: T B2 R2 G3

22) Trydnt: Trade B3 Y3 G1

23) wil: B B2 G3

24) Trydnt: Build B2 G1

25) wil: B R1 G3

26) Trydnt: Sacrifice Y2 Trydnt
Move B1 G1 G3
Move B2 G1 G3
Catastrophe G3 B

27) wil: D G2 Wil Y3 Why3

28) Trydnt: Build R1 G1

29) wil: B G1 Wil

30) Trydnt: Build Y1 G1

31) wil: T G1 Y1 Wil

32) Trydnt: Build B1 Trydnt
	wil: Congrats in the tourney, ya done good!
	Trydnt: You too! Still nipping at your heels it would seem 

33) wil: B G1 Wil

34) Trydnt: Move B1 Trydnt G1

35) wil: D Y1 Wil B3 B3

36) Trydnt: Build B2 G1

37) wil: T G1 Y1 Wil

38) Trydnt: Move R2 G1 B3

39) wil: S G2 Why3
B Y2 Wil
B Y3 B3

40) Trydnt: Sacrifice Y3 G1
Move Y1 G1 B3
Move Y1 B3 Wil
Catastrophe Wil Y
Move B2 G1 Y3

41) wil: S Y1 B3
M R1 Y3 Wil

42) Trydnt: Sacrifice G3 Trydnt
Build B2 G1
Build B2 Y3
Build B3 Trydnt

	Trydnt: quite possibly
	wil: T b3 y3 gg


35224)
Variants: "Hard time"
Started: 2019.6.2, Ended: 2019.7.3
Participants: Simon (S), Trydnt (N)
Winner: Simon

1) Trydnt: Homeworld B2 Y1 G3

2) Simon: Homeworld R1 G3 B3
	Simon: hf!

3) Trydnt: Build G1 Trydnt

4) Simon: Build B1 Simon

5) Trydnt: Build G1 Trydnt

6) Simon: Build B1 Simon

7) Trydnt: Trade G1 R1 Trydnt

8) Simon: Trade B3 Y3 Simon

9) Trydnt: Build R1 Trydnt

10) Simon: Build B1 Simon

11) Trydnt: Build R2 Trydnt

12) Simon: Discover B1 Simon G2 G2

13) Trydnt: Discover R2 Trydnt Y3 Y3

14) Simon: Build B2 Simon

15) Trydnt: Move R2 Y3 G2

16) Simon: Build B2 G2

17) Trydnt: Attack B2 G2

18) Simon: Build B3 G2

19) Trydnt: Build B3 G2
Catastrophe G2 B

20) Simon: Discover B1 Simon G2 G2a

21) Trydnt: Build R2 Trydnt

22) Simon: Build B1 Simon

23) Trydnt: Discover R2 Trydnt B3 B3

24) Simon: Discover B1 Simon B2 B2

25) Trydnt: Build R2 Trydnt

26) Simon: Build B3 G2a

27) Trydnt: Sacrifice G3 Trydnt
Build R3 G2
Build R3 B3
Build R3 B3

28) Simon: Build B3 G2a

29) Trydnt: Build G1 Trydnt
	Trydnt: this is fun

30) Simon: Discover B2 Simon Y2 Y2

31) Trydnt: Trade G1 Y1 Trydnt

32) Simon: Trade B3 Y3 G2a

33) Trydnt: Discover R1 Trydnt B3 Be3

34) Simon: Build Y1 G2a

35) Trydnt: Move Y1 Trydnt B3

36) Simon: Sacrifice Y3 G2a
Move B1 B2 B3
Move B2 Y2 B3
Move B1 G2a B3
Catastrophe B3 Blue

37) Trydnt: Build R2 G2

38) Simon: Build B1 G2a

39) Trydnt: Build R3 Trydnt

40) Simon: Trade B3 R3 G2a

41) Trydnt: Move R2 Trydnt Be3

42) Simon: Build B1 Simon

43) Trydnt: Trade R2 G2 Be3

44) Simon: Build R2 G2a

45) Trydnt: Trade R3 Y3 Trydnt

46) Simon: Trade R3 Y3 G2a

47) Trydnt: Sacrifice G2 Be3
Build R3 Be3
Build R3 Trydnt

48) Simon: Build B2 G2a

49) Trydnt: Build G1 Trydnt

50) Simon: Discover B1 Simon B2 B2



35187)
Variants: "Unrated, Hard time"
Started: 2019.6.2, Ended: 2019.6.7
Participants: Hg80 (S), dlwillson (N)
Winner: Hg80

1) dlwillson: H B3 Y1 G3

2) Hg80: Homeworld Y2 B3 G3
	dlwillson: GL!HF!

3) dlwillson: B G1 Dlwillson

4) Hg80: Build G1 Hg80

	dlwillson: Sorry about that


35244)
Variants: "Hard time"
Started: 2019.6.3, Ended: 2019.7.21
Participants: dlwillson (S), Draw5PlayAll (N)
Winner: dlwillson

1) Draw5PlayAll: Homeworld B3 R1 G3

2) dlwillson: H B3 R2 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) dlwillson: B G1 Dlwillson

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) dlwillson: Trade G1 Y1 Dlwillson

7) Draw5PlayAll: Build G1 Draw5playall
	dlwillson: Sorry for the delay!

8) dlwillson: B G1 Dlwillson

9) Draw5PlayAll: Trade G1 R1 Draw5playall

10) dlwillson: Trade G1 R1 Dlwillson

11) Draw5PlayAll: Build R2 Draw5playall

12) dlwillson: B R2 Dlwillson

13) Draw5PlayAll: Discover R2 Draw5playall G2 Build

14) dlwillson: D R1 Dlwillson G1 Field
	Draw5PlayAll: I am already quite nervous

15) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R3 Build
Build R3 Draw5playall
Build Y1 Draw5playall

16) dlwillson: B Y2 Dlwillson

17) Draw5PlayAll: Trade R3 G3 Draw5playall

18) dlwillson: B R3 Field

19) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover R2 Build G3 Construct

20) dlwillson: Build R3 Dlwillson

21) Draw5PlayAll: Build Y1 Draw5playall

22) dlwillson: M Y1 Dlwillson Field

23) Draw5PlayAll: Move Y1 Draw5playall Build

24) dlwillson: T R2 B2 Dlwillson

25) Draw5PlayAll: Build Y2 Build

26) dlwillson: Trade R3 Y3 Dlwillson

27) Draw5PlayAll: Discover Y1 Build B1 Trade

28) dlwillson: M Y3 Dlwillson Trade

29) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Trade
Build Y3 Draw5playall
Build Y3 Build

30) dlwillson: T Y3 R3 Trade

31) Draw5PlayAll: Sacrifice Y1 Trade
Discover Y2 Trade G3 Grow

32) dlwillson: B G1 Dlwillson

33) Draw5PlayAll: Trade Y1 G1 Draw5playall

34) dlwillson: B Y1 Field

35) Draw5PlayAll: Build G2 Draw5playall

36) dlwillson: S Y2 Dlwillson
M Y1 Field Build
M Y1 Field Build
C Build Y

37) Draw5PlayAll: Trade G1 B1 Draw5playall

38) dlwillson: T G1 Y1 Dlwillson

39) Draw5PlayAll: Move B1 Draw5playall Build

40) dlwillson: M B2 Dlwillson Field

41) Draw5PlayAll: Build R2 Build

42) dlwillson: T R1 Y1 Field

43) Draw5PlayAll: Trade R2 Y2 Build

44) dlwillson: B G1 Dlwillson

45) Draw5PlayAll: Build Y1 Build

46) dlwillson: T R3 Y3 Trade

47) Draw5PlayAll: Discover Y1 Build R1 Attack

48) dlwillson: M G1 Dlwillson Trade

49) Draw5PlayAll: Sacrifice G2 Draw5playall
Build R2 Build
Build R3 Construct

50) dlwillson: B G1 Dlwillson

51) Draw5PlayAll: Discover Y2 Grow B1 Convert

52) dlwillson: S G3 Dlwillson
B G2 Trade
B G2 Trade
B G3 Dlwillson

53) Draw5PlayAll: Trade Y3 G3 Draw5playall

54) dlwillson: S G3 Dlwillson
B Y2 Field
B Y3 Dlwillson
B G3 Dlwillson

55) Draw5PlayAll: Build Y3 Build

56) dlwillson: S Y3 Trade
M G2 Trade Build
M G2 Trade Build
M G1 Trade Build
C Build G

57) Draw5PlayAll: Trade R1 B1 Draw5playall

58) dlwillson: M Y3 Dlwillson Attack

59) Draw5PlayAll: Move Y1 Attack Construct

60) dlwillson: D Y2 Field G2 Forest

61) Draw5PlayAll: Build G1 Draw5playall

62) dlwillson: S G3 Dlwillson
B Y2 Attack
B Y3 Forest
B Y3 Dlwillson

	Draw5PlayAll: There isn't no way for me not to not do nothing here.


35243)
Variants: "Unrated, Hard time"
Started: 2019.6.5, Ended: 2019.6.9
Participants: dlwillson (S), smokeytroll42 (N)
Winner: smokeytroll42

1) smokeytroll42: Homeworld G3 Y2 B3

2) dlwillson: H B3 Y1 G3

3) smokeytroll42: Build B1 Smokeytroll42

	dlwillson: Dangit! I'm sorry. Can we try again? 
	smokeytroll42: Sure
	smokeytroll42: Challenge sent.


34763)
Variants: "Hard time"
Started: 2019.6.6, Ended: 2019.7.10
Participants: Trydnt (S), ajo (N)
Winner: Trydnt

1) ajo: Homeworld B3 Y2 G3

2) Trydnt: Homeworld B2 Y1 G3

3) ajo: Build G1 Ajo
	ajo: Good luck!

4) Trydnt: Build G1 Trydnt
	Trydnt: you too

5) ajo: Trade G1 R1 Ajo

6) Trydnt: Trade G1 Y1 Trydnt

7) ajo: Build R1 Ajo

8) Trydnt: Build Y1 Trydnt

9) ajo: Build R1 Ajo

10) Trydnt: Discover Y1 Trydnt G3 G3

11) ajo: Discover R1 Ajo B1 Alpha

12) Trydnt: Build Y2 G3
	ajo: This already isn't going well for me...

13) ajo: Build R2 Ajo
	Trydnt: yeah you really gotta use your second move to trade for whichever color has had one of the 1 pieces taken in a hw star. otherwise you'll get frozen out and will be playing catch up or you've wasted a trade as you'll have to swap back for it after having lost a step

14) Trydnt: Build Y2 Trydnt

15) ajo: Trade R2 G2 Ajo

16) Trydnt: Build Y3 G3

17) ajo: Sacrifice G2 Ajo
Build G1 Ajo
Build R2 Alpha

18) Trydnt: Move Y3 G3 Alpha

19) ajo: Discover R1 Ajo B1 Beta

20) Trydnt: Trade Y2 R2 Trydnt

21) ajo: Sacrifice G3 Ajo
Build R2 Beta
Build R3 Beta
Build R3 Ajo

22) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y3 Alpha
Build Y3 Trydnt

23) ajo: Trade R2 G2 Beta

24) Trydnt: Sacrifice R2 Trydnt
Attack R2 Alpha
Attack R1 Alpha

25) ajo: Trade R3 B3 Ajo

26) Trydnt: Trade R2 G2 Alpha

27) ajo: Build R2 Ajo

28) Trydnt: Build R2 Alpha

29) ajo: Build G1 Beta

30) Trydnt: Trade R1 B1 Alpha

31) ajo: Build R1 Beta

32) Trydnt: Discover B1 Alpha G2 G2

33) ajo: Trade R3 B3 Beta

34) Trydnt: Build B2 G2

35) ajo: Sacrifice G2 Beta
Build G1 Beta
Build G2 Ajo

36) Trydnt: Sacrifice Y1 Trydnt
Discover B2 G2 Y1 Y1

37) ajo: Move B3 Ajo Y1

38) Trydnt: Move Y3 Alpha Ajo

39) ajo: Sacrifice R1 Beta
Attack B2 Y1

40) Trydnt: Sacrifice R2 Alpha
Attack R2 Ajo
Attack G2 Ajo
	Trydnt: checkmate

41) ajo: Pass
	ajo: Well, I'm certainly losing this game one way or another.

42) Trydnt: Sacrifice R2 Ajo
Attack G1 Ajo
Attack R1 Ajo
	Trydnt: been a slow bleed since I monopolized yellow

	ajo: Good game!
	Trydnt: Well played


35255)
Variants: "Hard time"
Started: 2019.6.6, Ended: 2019.7.28
Participants: deanthebean (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 G3 B3

2) deanthebean: Homeworld B2 G3 Y3
	Simon: Hi, have fun! :-)

3) Simon: Build B1 Simon
	deanthebean: Thanks. Same to you!

4) deanthebean: Build Y1 Deanthebean

5) Simon: Build B1 Simon

6) deanthebean: Build Y1 Deanthebean

7) Simon: Trade B1 Y1 Simon

8) deanthebean: Discover Y1 Deanthebean G1 Alpha

9) Simon: Build Y2 Simon

10) deanthebean: Build Y2 Alpha

11) Simon: Discover Y1 Simon G2 G2

12) deanthebean: Trade Y1 B1 Deanthebean

13) Simon: Move B1 Simon G2

14) deanthebean: Build Y1 Deanthebean

15) Simon: Build Y2 G2

16) deanthebean: Discover Y1 Alpha G2 Bravo

17) Simon: Trade Y2 R2 G2

18) deanthebean: Build Y2 Bravo

19) Simon: Build Y3 G2

20) deanthebean: Build Y3 Alpha

21) Simon: Build R1 G2

22) deanthebean: Trade Y1 R1 Deanthebean

23) Simon: Trade R1 G1 G2

24) deanthebean: Trade Y3 G3 Deanthebean

25) Simon: Build B1 G2

26) deanthebean: Move Y2 Alpha Deanthebean

27) Simon: Discover Y1 G2 R1 R1

28) deanthebean: Sacrifice G3 Deanthebean
Build Y1 Alpha
Build Y3 Deanthebean
Build R2 Deanthebean

29) Simon: Build B2 G2

30) deanthebean: Move B1 Deanthebean Alpha

31) Simon: Move B2 G2 R1

32) deanthebean: Build B2 Alpha

33) Simon: Sacrifice G1 G2
Build B3 R1

34) deanthebean: Build B3 Alpha

35) Simon: Move B1 G2 Alpha
Catastrophe Alpha Blue

36) deanthebean: Trade R2 G2 Deanthebean

37) Simon: Trade B3 G3 R1

38) deanthebean: Build R2 Deanthebean

39) Simon: Build G1 R1

40) deanthebean: Discover G2 Deanthebean B1 Charlie

41) Simon: Build B1 R1

42) deanthebean: Discover Y3 Alpha B3 Delta

43) Simon: Sacrifice G3 R1
Build G1 R1
Build G3 R1
Build R2 G2

44) deanthebean: Move R2 Deanthebean Alpha

45) Simon: Move B1 R1 Deanthebean

46) deanthebean: Attack B1 Deanthebean

47) Simon: Sacrifice Y3 G2
Move B1 G2 R1
Move B1 R1 Deanthebean
Move B2 R1 Deanthebean
Catastrophe Deanthebean Blue

48) deanthebean: Sacrifice Y2 Bravo
Move G2 Charlie Bravo
Move G2 Bravo R1
Catastrophe R1 Green

49) Simon: Build Y2 Simon

50) deanthebean: Build Y3 Alpha

51) Simon: Build B1 Simon

52) deanthebean: Discover R2 Alpha B2 Echo

53) Simon: Trade B1 G1 Simon

54) deanthebean: Trade R2 G2 Echo

55) Simon: Discover G1 Simon R2 R2

56) deanthebean: Build R3 Deanthebean

57) Simon: Sacrifice Y2 Simon
Move R2 G2 Deanthebean
Move R2 G2 Deanthebean
Catastrophe Deanthebean Red

58) deanthebean: Build Y2 Bravo

59) Simon: Build G1 R2

60) deanthebean: Build G2 Echo

61) Simon: Build G3 R2

62) deanthebean: Sacrifice Y2 Bravo
Move G2 Echo Delta
Move G2 Delta R2
Catastrophe R2 Green

63) Simon: Build Y2 Simon

64) deanthebean: Trade Y3 R3 Delta

65) Simon: Discover Y2 Simon B2 B2

66) deanthebean: Build Y3 Bravo

67) Simon: Sacrifice Y2 Simon
Move Y2 B2 Deanthebean
Move Y1 R1 Deanthebean
Catastrophe Deanthebean Yellow
	Simon: This y3 was for me to get back into business. >_> Still, my blue catastrophe was too early and lost me many turns from all the green that you easily killed in the next move.
	deanthebean: Thanks. Well played. It appears you had a threat that I overlooked. 
	Simon: Yep, you too, gg!



35257)
Variants: "Unrated"
Started: 2019.6.7, Ended: 2019.7.27
Participants: squishy_mage42 (S), DodoBirb (N)
Winner: DodoBirb

1) DodoBirb: Homeworld R2 B1 G3

2) squishy_mage42: Homeworld R1 B2 G3
	DodoBirb: Good luck!

3) DodoBirb: Build G1 Dodobirb
	squishy_mage42: Good luck to you too

4) squishy_mage42: Build G1 Squishy_mage42
	DodoBirb: Interesting opening

5) DodoBirb: Trade G1 Y1 Dodobirb

6) squishy_mage42: Build G1 Squishy_mage42

7) DodoBirb: Discover Y1 Dodobirb G3 Greeny

8) squishy_mage42: Trade G1 Y1 Squishy_mage42

9) DodoBirb: Build G1 Dodobirb

10) squishy_mage42: Discover G1 Squishy_mage42 B3 Bigblue

11) DodoBirb: Trade G1 Y1 Dodobirb

12) squishy_mage42: Build Y2 Squishy_mage42

13) DodoBirb: Build Y2 Dodobirb

14) squishy_mage42: Move Y2 Squishy_mage42 Bigblue

15) DodoBirb: Build G1 Dodobirb

16) squishy_mage42: Build Y2 Squishy_mage42

17) DodoBirb: Build Y3 Greeny

18) squishy_mage42: Move Y1 Squishy_mage42 Bigblue

19) DodoBirb: Discover G1 Dodobirb Y3 Solaris

20) squishy_mage42: Sacrifice Y2 Squishy_mage42
Move Y1 Bigblue Dodobirb
Move Y2 Bigblue Dodobirb
Catastrophe Dodobirb Y

21) DodoBirb: Build Y1 Greeny

22) squishy_mage42: Build G1 Squishy_mage42

23) DodoBirb: Build G2 Solaris

24) squishy_mage42: Trade G1 Y1 Squishy_mage42

25) DodoBirb: Move Y1 Greeny Dodobirb
	DodoBirb: Just because it seems that you are new. I'll call check, if you don't trade out a ship at your homeworld then I can catastrophe it by sacrificing my large yellow and win.

26) squishy_mage42: Move Y1 Squishy_mage42 Bigblue
	squishy_mage42: Thank you for the check, yes I am, though I did catch that check before reading.

27) DodoBirb: Build G1 Solaris

28) squishy_mage42: Trade G3 Y3 Squishy_mage42

29) DodoBirb: Build Y2 Dodobirb
	DodoBirb: Check. You probably know the reason.

30) squishy_mage42: Build Y2 Bigblue

31) DodoBirb: Trade Y2 R2 Dodobirb

32) squishy_mage42: Trade Y1 R1 Bigblue

33) DodoBirb: Sacrifice G2 Solaris
Build G2 Dodobirb
Build Y1 Dodobirb

34) squishy_mage42: Trade G1 R1 Bigblue

35) DodoBirb: Move R2 Dodobirb Greeny

36) squishy_mage42: Trade Y2 G2 Bigblue

37) DodoBirb: Move Y1 Dodobirb Greeny

38) squishy_mage42: Build R2 Bigblue

39) DodoBirb: Build R3 Greeny
	DodoBirb: Check



35242)
Variants: "Hard time"
Started: 2019.6.10, Ended: 2019.7.2
Participants: wil (S), Simon (N)
Winner: wil

1) Simon: Homeworld G3 R1 B3
	Simon: Have fun :-)

2) wil: H Y1 B2 G3

3) Simon: Build B1 Simon
	wil: THAT would be the plan, u2

4) wil: B G1 Wil

5) Simon: Trade B1 Y1 Simon

6) wil: T G1 R1 Wil

7) Simon: Build Y1 Simon
	wil: Dang near mirrored homeworlds
	wil: My stars are your ships and vice versa

8) wil: B R1 Wil
	Simon: Hmm, comes from desire to start with the blue ship. With non-blue starter ships, eventually you're forced to make a blue ship at a blue star, and the second player to make blue ships that way is under severe pressure.

9) Simon: Build Y2 Simon

10) wil: B R2 Wil

11) Simon: Trade Y2 R2 Simon

12) wil: T R1 B1 Wil

13) Simon: Build Y2 Simon
	wil: That ended that race.

14) wil: T R2 Y2 Wil

15) Simon: Discover Y1 Simon G2 G2

16) wil: D Y2 Wil G3 G3

17) Simon: Discover Y2 Simon B2 B2

18) wil: M B1 Wil G3

19) Simon: Build B1 Simon

20) wil: B G1 Wil

21) Simon: Trade B1 G1 Simon

22) wil: B B1 G3

23) Simon: Move G1 Simon B2

24) wil: D G1 Wil Y3 Y3

25) Simon: Build Y2 Simon

26) wil: B Y3 G3

27) Simon: Build Y3 B2

28) wil: D Y2 G3 B2 Be2

29) Simon: Move Y2 B2 Y3

30) wil: M G1 Y3 Be2

31) Simon: Build G1 B2

32) wil: B G2 Wil

33) Simon: Build G2 B2

34) wil: S G3 Wil
B G3 Wil
B R1 Wil
B R2 Wil

35) Simon: Trade G2 R2 B2

36) wil: S R1 Wil
P

37) Simon: Build G2 B2

38) wil: M R2 Wil G3

39) Simon: Move G2 B2 Y3

40) wil: S G3 Wil
B G3 Wil
B R1 G3
B R3 Wil

41) Simon: Build R3 B2
	wil: Time to throw a wrench in those gears...

42) wil: M R3 Wil Y3

43) Simon: Sacrifice Y3 B2
Move G2 Y3 Wil
Move G1 B2 Y3
Move G1 Y3 Wil
Catastrophe Wil Green

44) wil: S Y3 G3 Wil
M R2 G3 B2
M R1 G3 B2
M R3 Y3 Wil
C B2 R
	Simon: Expensive counterattack. <_<

45) Simon: Build Y3 G2

46) wil: B Y3 Be2

47) Simon: Move Y3 G2 G3

48) wil: T R3 G3 Wil

49) Simon: Move R2 Simon B2

50) wil: S Y2 Be2
D B1 G3 G2 Gee2
D B1 G3 G2 Gtoo

51) Simon: Build Y2 G3

52) wil: B G1 Wil

53) Simon: Build R1 B2

54) wil: S G3 Wil
B G3 Wil
B B1 Gee2
B B3 Gtoo

55) Simon: Move Y3 G3 Gee2

56) wil: B B3 Gtoo

57) Simon: Sacrifice R2 B2
Attack B1 Gee2
Attack B1 Gee2

58) wil: T B3 R3 Gtoo

59) Simon: Build R2 B2

60) wil: B R2 Wil

61) Simon: Build B3 Gee2

62) wil: B R2 Wil

63) Simon: Move B3 Gee2 G3
	wil: I'm just compounding past mistakes now.
	Simon: Instead of your first r2, I feared you would build the b3 for an eventual thread of opponent-takes-2-we-take-3. But it was hard to calculate, I probably missed something too.

64) wil: B R3 Gtoo

65) Simon: Build R3 B2
	wil: It was in my.mind, but by the time came around gone

66) wil: S Y3 Be2
M R3 Gtoo G3
M R1 Wil G3
M R1 G3 B2
C B2 R

67) Simon: Build Y3 Gee2
	wil: I pushed the button

68) wil: S R2 Wil
A Y2 G3
A B3 G3
	Simon: Was probably my mistake to build 3rd red ship. You already had plenty of incentive for the y3 sac, didn't have to sweeten it. Anyway, stoic continuation of yellow monopoly. >_>

69) Simon: Trade Y2 R2 Simon

70) wil: B Y2 G3

71) Simon: Discover Y3 Gee2 R3 R3

72) wil: S G3 Wil
B G3 Wil
B R1 Gtoo
B R1 G3
	wil: Had to get wise. I mean Ys

73) Simon: Move R2 Simon Gee2

74) wil: B R2 Wil
	wil: Getting all the ahrrs makes me feel like a pirate matey

75) Simon: Move B1 Gee2 R3

76) wil: M Y2 G3 Gtoo

77) Simon: Move B1 Gee2 Y3

78) wil: M B3 Gtoo Y3

79) Simon: Move B1 Y3 Wil

80) wil: A B1 Wil

81) Simon: Sacrifice G1 B2
Build B2 R3

82) wil: M B1 Wil R3

83) Simon: Trade B1 G1 R3
	wil: Thx, I can use that

84) wil: M B3 G3 G2

85) Simon: Move Y1 G2 R3

86) wil: B B1 Gtoo

87) Simon: Move Y2 Y3 Be2

88) wil: M G1 Wil Y3

89) Simon: Attack B1 R3

90) wil: M R2 Wil Y3

91) Simon: Pass

92) wil: M R2 Y3 G2

93) Simon: Pass

94) wil: M G1 Y3 G2
	wil: Ya made me set up the pieces.

95) Simon: Pass

96) wil: M R1 G3 G2
	wil: Lol, I was gonna pass till I set up the universe.

97) Simon: Move Y2 Be2 Simon

98) wil: M R1 Gtoo Simon

99) Simon: Attack R1 Simon

100) wil: S Y2 Gtoo
M R1 G2 Simon
M R2 G2 Simon
C Simon R

101) Simon: Sacrifice Y3 Gee2
Move Y1 R3 Wil
Move Y1 Simon Wil
Move Y2 Simon Wil
Catastrophe Wil Y

102) wil: T R3 Y3 Gtoo
	wil: 3 passes and then you remove your roadblock
	wil: Unless I missed something

103) Simon: Trade B3 R3 Simon

104) wil: S Y3 Gtoo
M G3 Wil Simon
M G1 Be2 Simon
M G1 G2 Simon
C Simon G
	wil: One long game, hard fought, two moves to go.

	wil: Gg, up for a game anytime, that was a doozy
	Simon: Overlooked this. gg!
	wil: I should have said you were in check


35220)
Started: 2019.6.10, Ended: 2019.7.14
Participants: wil (S), dragon76n (N)
Winner: dragon76n

1) dragon76n: Homeworld Y2 G3 B3

2) wil: H Y2 B1 G3

3) dragon76n: Build B1 Dragon76n

4) wil: B G1 Wil

5) dragon76n: Build B1 Dragon76n

6) wil: T G1 Y1 Wil

7) dragon76n: D B1 Dragon76n G1 Greone

8) wil: B Y1 Wil

9) dragon76n: Build B2 Greone

10) wil: D Y1 Wil G3 G3
	wil: I love it when I err setting my homeworld!

11) dragon76n: Build B2 Greone
	dragon76n: I'm sure I'll make a mistake that you can overcome that with. I don't think I've won a game yet against anyone who has played very much. 

12) wil: S G3 Wil
B Y1 G3
B Y2 G3
B Y3 Wil
	wil: I can only hope you are correct,. Good.luck!

13) dragon76n: Trade B3 Y3 Dragon76n

14) wil: D Y1 G3 G1 G1

15) dragon76n: Trade B2 G2 Greone

16) wil: B Y3 G1

17) dragon76n: Sacrifice G2 Greone
Build B2 Greone
Build B2 Dragon76n

18) wil: T Y3 G3 Wil

19) dragon76n: Build B3 Dragon76n

20) wil: B Y3 Wil

21) dragon76n: Move Y3 Dragon76n Greone
	Hg80: You guys going for a no red challenge?

22) wil: B G1 Wil

23) dragon76n: Discover B2 Greone G2 Gretwo

24) wil: T G3 B3 Wil

25) dragon76n: Build B3 Gretwo

26) wil: B G2 Wil

27) dragon76n: Sacrifice B2 Gretwo
Trade B1 R1 Dragon76n
Trade B2 G2 Greone

28) wil: T G1 R1 Wil

29) dragon76n: Trade B3 G3 Dragon76n

30) wil: M B3 Wil G3

31) dragon76n: Sacrifice G2 Greone
Build B1 Gretwo
Build B2 Greone

32) wil: B B2 G3

33) dragon76n: Move B1 Greone G3

34) wil: M Y1 G1 Dragon76n

35) dragon76n: Build B3 G3
Catastrophe G3 Blue

36) wil: M Y1 Dragon76n Greone

37) dragon76n: Trade B2 R2 Greone
	wil: Move yellow in and blow up yellow leaving one y
	wil: Lol, this isn't the notebook!

38) wil: M Y2 G3 Greone

39) dragon76n: Move Y3 Greone G3

40) wil: M Y1 Wil G3
	wil: Noice!

41) dragon76n: Attack Y2 Greone

42) wil: M Y1 Greone G3
C G3 Y

43) dragon76n: Trade B3 Y3 Gretwo

44) wil: B G1 Wil

45) dragon76n: Discover Y3 Gretwo G3 Grethr
	wil: Here we go round the mulberry bush...

46) wil: B G2 Wil

47) dragon76n: Build Y1 Grethr

48) wil: B R1 Wil
	dragon76n: ¯\_(&#12484;)_/¯
	dragon76n: U+1F937
	dragon76n: Anyway... I could be wrong in overall, but that doesn't seem too unusual for my experience in this game - basically trading places.  
	wil: Lol, dont understand first two, agree last

49) dragon76n: Build Y1 Greone

50) wil: D R1 Wil B3 B3

51) dragon76n: Move Y1 Grethr Wil

52) wil: T Y3 B3 Wil

53) dragon76n: Sacrifice G3 Dragon76n
Build Y1 Wil
Build Y3 Grethr
Build R2 Greone

54) wil: S G2 Wil
B R2 Wil
B R3 B3

55) dragon76n: B R3 Dragon76n

56) wil: S R2 Wil
A Y1 Wil
A Y1 Wil

57) dragon76n: Sacrifice Y2 Greone
Move Y1 Greone B3
Move Y1 B3 Wil
Catastrophe Wil Yellow

58) wil: T B3 G3 Wil

59) dragon76n: Sacrifice B1 Gretwo
Trade R2 G2 Greone

60) wil: T G2 Y2 Wil

61) dragon76n: Sacrifice G2 Greone
Build B1 Dragon76n
Build B1 Dragon76n

62) wil: S Y3 G1
M R1 B3 Wil
M R1 Wil Dragon76n
M R1 Wil Dragon76n
C Dragon76n R

63) dragon76n: Sacrifice Y3 Grethr
Move R2 Greone Dragon76n
Move B1 Dragon76n Wil
Move B1 Dragon76n Wil
	wil: This is the end, gg

64) wil: T Y2 B2 Wil
C Wil B

	wil: Gg
	wil: Challenge me anytime


35264)
Variants: "Hard time"
Started: 2019.6.13, Ended: 2019.6.27
Participants: smokeytroll42 (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld R3 B1 G3

2) smokeytroll42: Homeworld G3 Y2 B3

3) dlwillson: B G1 Dlwillson

4) smokeytroll42: Build B1 Smokeytroll42

5) dlwillson: T G1 B1 Dlwillson

6) smokeytroll42: Build B2 Smokeytroll42

7) dlwillson: Build B2 Dlwillson

8) smokeytroll42: Discover B2 Smokeytroll42 Y1 Peace

9) dlwillson: T B2 Y2 Dlwillson

10) smokeytroll42: Trade B2 G2 Peace

11) dlwillson: D B1 Dlwillson G2 Forest

12) smokeytroll42: Build G1 Peace

13) dlwillson: B B2 Forest

14) smokeytroll42: Move B1 Smokeytroll42 Peace

15) dlwillson: T B1 Y1 Forest



35283)
Variants: "Hard time"
Started: 2019.6.19, Ended: 2019.7.5
Participants: wil (S), Felix (N)
Winner: wil

1) Felix: Homeworld B1 R1 G3 *

2) wil: H Y2 B2 G3 *
	wil: Let's have fun!

3) Felix: Build G1 Felix

4) wil: B G1 Wil
	wil: Microverse it is!
	Felix: :) Tiny house living is in, so tiny universe living is too.

5) Felix: Trade G1 Y1 Felix

6) wil: T G1 B1 Wil
	wil: Andy not so much.
	wil: Trydnt and I love experimenting with openings
	Draw5PlayAll: Andy? You mean that one?

7) Felix: Build Y1 Felix
	wil: That one.

8) wil: B B1 Wil
	Felix: I'm more honored to play against the one and only Wil.

9) Felix: Build Y1 Felix
	wil: Lol, I enjoy playing with you all.  

10) wil: D B1 Wil G3 G3

11) Felix: Discover Y1 Felix B3 Out

12) wil: B B2 Wil

13) Felix: Sacrifice G3 Felix
Build Y2 Out
Build Y2 Out
Build Y3 Felix

14) wil: B B2 G3

15) Felix: Trade Y3 G3 Felix

16) wil: B B3 G3

17) Felix: Build Y3 Felix

18) wil: T B3 Y3 G3

19) Felix: Discover Y1 Felix Y3 Keepaway

20) wil: B B3 G3

	wil: Ah phooey
	Felix: Shucks. Sorry about that. Had a crazy week!
	wil: Another day


35256)
Started: 2019.6.24, Ended: 2019.8.27
Participants: wil (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3

2) wil: H B3 Y2 G3

3) ts52: Build G1 Ts52

4) wil: B G1 Wil
	ts52: Have a good game!

5) ts52: Trade G1 Y1 Ts52
	wil: Tis  my hope we do!

6) wil: T G1 Y1 Wil

7) ts52: Build Y2 Ts52
	wil: Before we break into uncharted chaos
	wil: Let's start out slow and all perfectly normal

8) wil: B Y2 Wil
	ts52: indeed

9) ts52: Discover Y1 Ts52 G3 Kermit

10) wil: D Y1 Wil G1 G1

11) ts52: Build Y3 Kermit

12) wil: B Y3 G1

13) ts52: Discover Y3 Kermit B1 Gonzo
	wil: I like follow the leader.

14) wil: T Y2 B2 Wil
	ts52: :)

15) ts52: Build G1 Ts52

16) wil: M Y3 G1 Kermit

17) ts52: Trade G1 R1 Ts52

18) wil: B B1 Wil

19) ts52: Build R1 Ts52

20) wil: T B2 G2 Wil

21) ts52: Build G1 Ts52

22) wil: S G2 Wil
B Y2 Kermit
B Y3 G1

23) ts52: Move Y2 Ts52 Kermit
Catastrophe Kermit Y

24) wil: T B1 R1 Wil

25) ts52: Trade G1 B1 Ts52

26) wil: B R2 Wil

27) ts52: Discover R1 Ts52 G3 Kermit

28) wil: M R1 Wil G1

29) ts52: Build R2 Kermit

30) wil: D Y1 G1 R3 R3

31) ts52: Build G1 Ts52

32) wil: B G1 Wil

33) ts52: Move B1 Ts52 Kermit

34) wil: S G3 Wil
B R2 G1
B R3 G1
B R3 Wil
	wil: Time for another tourney,.good.luck!

35) ts52: Build B1 Kermit

36) wil: T R2 B2 Wil
	ts52: Thanks! You too.
	ts52: I'll be offline for the rest of this week. FYI.
	wil: Me too, headed for a burn, first since recovery!

37) ts52: Trade R2 Y2 Kermit

38) wil: S B2 Wil
T R3 Y3 G1
T R2 B2 G1
	ts52: Nice. Have fun!
	Draw5PlayAll: When does it start?

39) ts52: Build R2 Kermit

40) wil: B B2 G1

41) ts52: Discover B1 Kermit Y1 Bigbird

42) wil: T B2 G2 G1

43) ts52: Move R2 Kermit Gonzo

44) wil: M Y3 G1 Kermit

45) ts52: Move R1 Kermit Gonzo

46) wil: B R2 G1

47) ts52: Trade R2 G2 Gonzo

48) wil: S R2 G1
A Y2 Kermit
A B1 Kermit

49) ts52: Build Y2 Gonzo

50) wil: M Y2 Kermit Gonzo

51) ts52: Discover Y2 Gonzo G3 Oscar

52) wil: D Y2 Gonzo B3 B3

53) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Ts52
Build R2 Gonzo

54) wil: S G2 G1
B B2 Kermit
B B3 G1

55) ts52: Move G2 Gonzo R3

56) wil: M B3 G1 R3

57) ts52: Attack Y1S R3

58) wil: A G2 R3

59) ts52: Move Y1 R3 Bigbird

60) wil: B G2 Wil

61) ts52: Move R2 Gonzo Oscar

62) wil: D B2 G1 R3 Are3

63) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Gonzo
Build R2 Oscar

64) wil: M B2 Kermit Ts52

65) ts52: Attack B2 Ts52

66) wil: S Y3 Kermit
M B1 Kermit Ts52
M B2 Are3 Ts52
C Ts52 B
M B3 R3 Ts52

67) ts52: Attack B3 Ts52

68) wil: S G2 Wil
B R3 G1
B Y3 B3
	wil: I think I filled the bank and checkmate

69) ts52: Build B1 Ts52
	wil: Lol, dang brain...

70) wil: M R3 G1 B3

71) ts52: Move B1 Ts52 Wil

72) wil: A B1 Wil

73) ts52: Move B1 Bigbird Wil

74) wil: M B1 Wil Ts52

75) ts52: Sacrifice G2 Gonzo
Build B2 Wil
Build B2 Wil
Catastrophe Wil Blue

76) wil: B G2 Wil

77) ts52: Move R2 Oscar Wil

78) wil: S G2 R3
B R3 G1
P

79) ts52: Sacrifice Y3 Gonzo
Move R1 Gonzo Wil
Move R2 Gonzo Wil
Move B3 Ts52 Wil
Catastrophe Wil Red

80) wil: S Y3 G1
M Y3 B3 Ts52
M Y2 B3 Wil
M R3 G1 Wil

81) ts52: Sacrifice R2 Oscar
Attack Y3 Ts52
Attack R3 Wil

82) wil: S G2 Wil
B Y3 Wil
B Y3 Wil
C Wil Y

	wil: Gg
	ts52: Thanks! Gg.


35272)
Variants: "Hard time"
Started: 2019.6.24, Ended: 2019.7.4
Participants: wil (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: Homeworld Y3 B1 G3

2) wil: H B2 Y1 G3

3) dlwillson: B G1 Dlwillson
	wil: Good luck, hope all is well.

4) wil: B G1 Wil
	dlwillson: TY GL and HF!

5) dlwillson: Trade G1 B1 Dlwillson

6) wil: T G1 B1 Wil

7) dlwillson: B B2 Dlwillson

8) wil: B B2 Wil

9) dlwillson: D B2 Dlwillson G2 Field

10) wil: T B1 Y1 Wil

11) dlwillson: B B1 Field

12) wil: D B2 Wil G3 G3

13) dlwillson: B B3 Field

14) wil: B B3 G3

15) dlwillson: T B2 Y2 Field

16) wil: T B2 Y2 G3

17) dlwillson: T B1 R1 Dlwillson

18) wil: T Y1 R1 Wil

19) dlwillson: T B1 R1 Field

20) wil: B R2 Wil

21) dlwillson: B R2 Field

22) wil: T R2 G2 Wil

23) dlwillson: D R2 Field B3 Sky

24) wil: B R2 Wil

25) dlwillson: S G3 Dlwillson
B R2 Field
B R3 Sky
B R3 Dlwillson

26) wil: M R1 Wil Sky

27) dlwillson: S R2 Sky
A R1 Sky
Pass

28) wil: M R2 Wil G3

29) dlwillson: T R3 G3 Dlwillson

30) wil: B B1 G3

31) dlwillson: B Y1 Field

32) wil: B G1 Wil

33) dlwillson: S Y2 Field
M B3 Field G3
M B3 G3 Wil

34) wil: S B3 G3
T G2 B2 Wil
T G1 B1 Wil
C Wil B
P

35) dlwillson: T R3 Y3 Sky
	wil: Noice

36) wil: B Y1 G3

37) dlwillson: S G3 Dlwillson
B Y2 Field
B Y2 Sky
B R2 Dlwillson
	dlwillson: Thanks!

38) wil: M G3 Wil G3

	wil: Gg
	dlwillson: Gg, TY! 


35071)
Variants: "Hard time"
Started: 2019.6.24, Ended: 2019.7.26
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 G2 Y3

2) wil: H Y2 B1 G3

3) Trydnt: Build Y1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Discover Y1 Trydnt Y1 Y1

6) wil: T G1 Y1 Wil

7) Trydnt: Build Y2 Trydnt

8) wil: D Y1 Wil G3 G3

9) Trydnt: Move Y1 Y1 G3
	Trydnt: interesting opening no?

10) wil: D Y1 G3 G2 G2

11) Trydnt: Trade Y2 R2 Trydnt

12) wil: B G1 Wil

13) Trydnt: Build R1 Trydnt

14) wil: T G1 R1 Wil

15) Trydnt: Trade R1 B1 Trydnt

16) wil: B R1 Wil

17) Trydnt: Build B1 Trydnt

18) wil: D R1 Wil G3 Gee3

19) Trydnt: Discover B1 Trydnt G1 G1

20) wil: B G1 Wil

21) Trydnt: Build B2 G1

22) wil: D G1 Wil B3 B3

23) Trydnt: Trade B2 Y2 G1

24) wil: B G1 B3

25) Trydnt: Move Y2 G1 B3

26) wil: B G2 Wil

27) Trydnt: Build R1 Trydnt

28) wil: S G1 B3
B R2 Wil

29) Trydnt: Move R2 Trydnt G1

30) wil: D R1 Wil Y3 Y3

31) Trydnt: Sacrifice R1 Trydnt
Attack G1 B3

32) wil: B R1 Gee3
	wil: Time to tourney again, goodluck

33) Trydnt: Build G1 B3
	Trydnt: and to you good sir!

34) wil: S G3 Wil
B R2 Gee3
B R3 Y3
B G3 Wil
	wil: What was that mirrored glass you were looking at?

35) Trydnt: Build R3 G1
	Trydnt: dichroic glass
	Trydnt: I used the pieces to make these infinity mirror boxes full of color. Calling them hippy hand grenades

36) wil: S G3 Wil
B R3 Wil
B G3 Wil
B Y1 G2

37) Trydnt: Trade R3 Y3 G1

38) wil: T R2 Y2 Wil

39) Trydnt: Sacrifice Y2 B3
Move G1 B3 Wil
Move G1 B3 Wil
Catastrophe Wil G

40) wil: D R1 Y3 G1 Gwon

41) Trydnt: Build Y2 Trydnt

42) wil: M Y1 G2 Gee3

43) Trydnt: Trade Y2 R2 Trydnt

44) wil: B R3 Gwon

45) Trydnt: Build Y2 G3

46) wil: M R2 Gee3 Wil

47) Trydnt: Build B2 Trydnt

48) wil: T R2 G2 Wil

49) Trydnt: Sacrifice Y3 G1
Move Y1 G3 Wil
Move Y2 G3 Wil
Catastrophe Wil Y
Discover B1 G1 Y3 Whynot

50) wil: S Y1 G2
M R3 Wil Trydnt

51) Trydnt: Sacrifice Y3 Trydnt
Move B1 Trydnt Wil
Move B2 Trydnt Wil
Move B1 Whynot Wil
Catastrophe Wil B

	Trydnt: well played. what's left looks very intimidating haha
	wil: Die leaving a good corpse!


35169)
Variants: "Unrated, Hard time"
Started: 2019.6.24, Ended: 2019.7.17
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Pass

2) wil: H Y2 B1 G3

3) Draw5PlayAll: Homeworld B1 G3 B3 *
	wil: Thanks for the game!  Good luck.

4) wil: B G1 Wil

5) Draw5PlayAll: Build B1 Draw5playall

6) wil: D G1 Wil Y3 Y3
	Draw5PlayAll: This time around, I will make sure not to put all my eggs in the same basket.

7) Draw5PlayAll: Trade B3 Y3 Draw5playall

8) wil: B G1 Wil

9) Draw5PlayAll: Build B2 Draw5playall

10) wil: B G1 Y3

11) Draw5PlayAll: Discover B2 Draw5playall G2 Build

12) wil: D G1 Y3 B2 B2

13) Draw5PlayAll: Build B2 Draw5playall

14) wil: S G3 Wil
B G2 Wil
B G2 Y3
B G3 B2

15) Draw5PlayAll: Build B3 Build

16) wil: B G3 Wil

17) Draw5PlayAll: Trade B3 R3 Build

18) wil: T G3 R3 B2

19) Draw5PlayAll: Build B3 Build

20) wil: S G3 Wil
B G3 Wil
B G3 B2
B R1 B2

21) Draw5PlayAll: Trade B3 Y3 Build

22) wil: T G3 R3 Wil
	Draw5PlayAll: That's better.

23) Draw5PlayAll: Build R1 Build

24) wil: S G3 B2
B G3 B2
B R1 Wil
B G3 Wil

25) Draw5PlayAll: Move R3 Build Y3

26) wil: T G2 Y2 Wil
	Draw5PlayAll: I would like to place an order for 1 share of Green Space Construction, LLC.

27) Draw5PlayAll: Attack G2 Y3
	wil: Just one?
	Draw5PlayAll: I guess we have a bull market!

28) wil: T G3 B3 Wil

29) Draw5PlayAll: Build B3 Build

30) wil: D B3 Wil G3 G3

31) Draw5PlayAll: Discover B2 Draw5playall Y2 Move

32) wil: B B3 G3

33) Draw5PlayAll: Move B1 Draw5playall Move

34) wil: D G1 Y3 Y1 Y1

35) Draw5PlayAll: Build G2 Y3

36) wil: M R1 Wil G3

37) Draw5PlayAll: Build R2 Build

38) wil: M Y2 Wil G3

39) Draw5PlayAll: Build Y1 Build

40) wil: S G3 B2
B G3 B2
B Y1 G3
B R2 G3

41) Draw5PlayAll: Build R2 Y3

42) wil: M Y1 G3 B2

43) Draw5PlayAll: Move B2 Move Y1

44) wil: S G1 Y1
B G1 Wil
	Draw5PlayAll: You are up to something.

45) Draw5PlayAll: Sacrifice B1 Move
Trade G2 Y2 Y3

46) wil: M G3 B2 Y1
	Draw5PlayAll: My investment portfolio required selling shares in Green Construction LLC in order to acquire more of Yellow Wormhole Tech ULC.

47) Draw5PlayAll: Move B2 Y1 Y3

48) wil: S G3 Y1
B G2 Wil
B Y1 B2
B G3 B2

49) Draw5PlayAll: Discover Y2 Y3 B1 Trade

50) wil: M R3 B2 Trade

51) Draw5PlayAll: Sacrifice Y2 Trade
Move G2 Y3 Wil
Catastrophe Wil Green
Move R3 Y3 Wil

52) wil: S Y2 G3
M B3 G3 Wil
M B3 G3 Wil
	Draw5PlayAll: Good... game... ???

53) Draw5PlayAll: Move B2 Y3 Wil
Catastrophe Wil Blue
	wil: Nice move, caught me unawares, I had other plans
	wil: Time for.another HW tourney get in!

54) wil: M G3 B2 Draw5playall
	Draw5PlayAll: That move was rather tricky...
	wil: Just a delay of game, postponing the inevitable

55) Draw5PlayAll: Attack R3 Wil
	Draw5PlayAll: So I can either blow you up, or steal your ship...
	Draw5PlayAll: Good game.
	wil: Gg



35306)
Started: 2019.6.27, Ended: 2019.6.27
Participants: MobyNostromo (S), UrzaGameLord93 (N)
Winner: MobyNostromo



35313)
Started: 2019.6.30, Ended: 2019.7.3
Participants: MobyNostromo (S), TripleShock (N)
Winner: TripleShock

1) TripleShock: Homeworld G3 B2 Y3



35339)
Variants: "Hard time"
Started: 2019.7.10, Ended: 2019.7.18
Participants: dougforte (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R2 B1 G3

2) dougforte: Homeworld G1 B3 G3 *

3) bhorner: Build G1 Bhorner

4) dougforte: Build G1 Dougforte

5) bhorner: Build G2 Bhorner

6) dougforte: Trade G1 Y1 Dougforte

7) bhorner: Trade G1 Y1 Bhorner

8) dougforte: Build G1 Dougforte

9) bhorner: D G2 Bhorner B3 Snowman

10) dougforte: Discover G3 Dougforte B2 Tophat

11) bhorner: Build G1 Bhorner

12) dougforte: Move Y1 Dougforte Tophat

13) bhorner: Build G2 Snowman

14) dougforte: Build G2 Tophat

15) bhorner: Build G3 Bhorner

16) dougforte: Build Y1 Tophat

17) bhorner: Trade G2 Y2 Snowman

18) dougforte: Move Y1 Tophat Dougforte

19) bhorner: Sacrifice Y2 Snowman
Move G2 Snowman Tophat
Move G2 Tophat Dougforte

20) dougforte: Build Y2 Dougforte

21) bhorner: Trade G3 R3 Bhorner

22) dougforte: Trade G1 R1 Dougforte

23) bhorner: Sacrifice R3 Bhorner
Attack R1 Dougforte
Attack Y1 Dougforte
Attack Y2 Dougforte
	bhorner: Good game!  :)



35241)
Variants: "Unrated"
Started: 2019.7.10, Ended: 2019.7.30
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 G3 Y3

2) wil: H Y2 B1 G3

3) Trydnt: Build Y1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Build Y1 Trydnt

6) wil: T G1 Y1 Wil

7) Trydnt: Trade Y1 B1 Trydnt

8) wil: T Y1 B1 Wil

9) Trydnt: Build B2 Trydnt

10) wil: B B2 Wil

11) Trydnt: Discover B2 Trydnt Y1 Y1

12) wil: T B1 Y1 Wil

13) Trydnt: Build Y2 Trydnt

14) wil: B Y2 Wil

15) Trydnt: Discover B2 Y1 G3 G3

16) wil: M Y1 Wil G3

17) Trydnt: Discover Y1 Trydnt B1 B1

18) wil: M B2 Wil G3

19) Trydnt: Trade B2 R2 G3

20) wil: M B2 G3 B1

21) Trydnt: Attack Y1 G3

22) wil: B G1 Wil

23) Trydnt: Build Y1 Trydnt

24) wil: D G1 Wil Y3 Y3

25) Trydnt: Build Y3 G3

26) wil: B G1 Wil

27) Trydnt: Move R2 G3 B1

28) wil: D Y2 Wil B3 B3

29) Trydnt: Move R2 B1 Y3

30) wil: B G1 Y3

31) Trydnt: Attack G1 Y3

32) wil: B G2 Y3

33) Trydnt: Move G1 Y3 Wil

34) wil: T G3 R3 Wil

35) Trydnt: Attack G2 Y3
	Trydnt: this feels like the inverse of the situation where you have too many reds in the same place but can sacrifice one to capture another and never end up with too much.

36) wil: A G1 Wil

37) Trydnt: Attack G1 Y3

38) wil: M G1 Wil B3

39) Trydnt: Build R1 Y3

40) wil: B R1 Wil

41) Trydnt: Sacrifice Y2 Trydnt
Move R1 Y3 Wil
Move R2 Y3 Wil
Catastrophe Wil R

42) wil: S G1 Wil
B B2 B1



35329)
Variants: "Hard time"
Started: 2019.7.10, Ended: 2019.7.19
Participants: Trydnt (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) Trydnt: Homeworld G3 B2 Y3

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build Y1 Trydnt

5) dlwillson: T G1 Y1 Dlwillson

6) Trydnt: Build Y2 Trydnt

7) dlwillson: B Y2 Dlwillson

8) Trydnt: Discover Y1 Trydnt G1 G1

9) dlwillson: D Y1 Dlwillson G2 Field



35312)
Started: 2019.7.10, Ended: 2019.10.21
Participants: UrzaGameLord93 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3



35344)
Variants: "Hard time"
Started: 2019.7.10, Ended: 2019.8.9
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	wil: Dude, Erin, Charlie and Nick stopped by today.

2) Trydnt: Homeworld G3 Y2 B3

3) wil: B G1 Wil
	Trydnt: No way! All the old crew :)

4) Trydnt: Build B1 Trydnt

5) wil: T G1 B1 Wil

6) Trydnt: Build B2 Trydnt

7) wil: B B2 Wil

8) Trydnt: Trade B2 Y2 Trydnt

9) wil: T B1 R1 Wil

10) Trydnt: Discover B1 Trydnt G1 G1

11) wil: D B2 Wil Y3 Y3

12) Trydnt: Build B1 G1

13) wil: B G1 Wil

14) Trydnt: Build B2 Trydnt

15) wil: B G1 Wil

16) Trydnt: Trade B3 R3 Trydnt

17) wil: M G1 Wil Y3

18) Trydnt: Build R1 Trydnt

19) wil: B G2 Wil

20) Trydnt: Sacrifice Y2 Trydnt
Move R3 Trydnt G1
Move R3 G1 Y3

21) wil: T G1 Y1 Y3
	Trydnt: never done that before :/

22) Trydnt: Attack Y1 Y3

23) wil: D B2 Y3 G1 Gwon

24) Trydnt: Move R3 Y3 Gwon

25) wil: S B2 Gwon
T G3 B3 Wil
T G1 Y1 Wil

26) Trydnt: Build B2 G1

27) wil: B G1 Wil

28) Trydnt: Trade B2 Y2 G1

29) wil: M G2 Wil Y3

30) Trydnt: Sacrifice Y1 Y3
Discover B1 G1 G3 G3

31) wil: B G2 Wil

32) Trydnt: Build B2 G3

33) wil: B G2 Wil

34) Trydnt: Discover B1 G1 G3 Gee3

35) wil: T G2 R2 Wil

36) Trydnt: Build B2 Gee3

37) wil: M B3 Wil Y3

38) Trydnt: Build B3 G3

39) wil: B B3 Y3

40) Trydnt: Sacrifice Y2 G1
Move B3 G3 Wil
Discover B1 Gee3 G2 G2

41) wil: M B3 Y3 Wil
	wil: Oops

	wil: Oops
	Trydnt: damn. went to the european juggling convention and couldn't get online to make moves :( worth it though
	wil: EJC awesome... Saw some pics from friends


35345)
Variants: "Unrated"
Started: 2019.7.10, Ended: 2019.8.22
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H Y2 B1 G3

2) Trydnt: Homeworld B3 R2 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 B1 Wil

6) Trydnt: Trade G1 B1 Trydnt

7) wil: B B2 Wil

8) Trydnt: Build B2 Trydnt

9) wil: T B1 R1 Wil

10) Trydnt: Trade B2 Y2 Trydnt

11) wil: B R1 Wil

12) Trydnt: Build Y1 Trydnt

13) wil: B R1 Wil

14) Trydnt: Discover B1 Trydnt Y1 Y1

15) wil: D R1 Wil Y3 Y3

16) Trydnt: Discover Y1 Trydnt Y1 Why1

17) wil: B G1 Wil

18) Trydnt: Sacrifice G3 Trydnt
Build Y2 Why1
Build Y3 Trydnt
Build Y3 Trydnt

19) wil: B R2 Wil

20) Trydnt: Trade Y3 R3 Trydnt

21) wil: T G3 Y3 Wil

22) Trydnt: Trade Y3 G3 Trydnt

23) wil: D R1 Wil Y3 Why3

24) Trydnt: Discover R3 Trydnt G1 G1

25) wil: B B1 Wil

26) Trydnt: Discover Y2 Why1 G3 G3

27) wil: T B2 G2 Wil

28) Trydnt: Move B1 Y1 G3

29) wil: D R2 Wil R3 R3

30) Trydnt: Build B2 G3

31) wil: S G2 Wil
B R2 R3
B R3 Wil

32) Trydnt: Build Y1 Trydnt

33) wil: M B1 Wil G3

34) Trydnt: Move B1 G3 G1

35) wil: M Y3 Wil G3

36) Trydnt: Sacrifice Y2 G3
Discover B2 G3 G1 Gee1
Discover B1 G1 Y2 Y2

37) wil: B B2 G3

38) Trydnt: Build G2 Trydnt

39) wil: S B2 G3
T R2 B2 R3
T R2 G2 R3

40) Trydnt: Sacrifice G2 Trydnt
Build B2 Y2
Build B3 Gee1

41) wil: B B3 G3

42) Trydnt: Build R2 G1

43) wil: S G2 R3
B G2 Wil
B R2 Y3

44) Trydnt: Sacrifice Y2 Trydnt
Move B3 Gee1 Y3
Move B2 Y2 Why3

45) wil: S Y3 G3
M R1 Y3 G1
M R1 Why3 G1
M B3 G3 Wil
C G1 R

46) Trydnt: Build Y2 Trydnt

47) wil: T R3 Y3 Wil

48) Trydnt: Sacrifice Y2 Trydnt
Move B2 Why3 Wil
Move B3 Y3 Wil
Catastrophe Wil B

49) wil: M G2 Wil Gee1

50) Trydnt: Build Y2 Trydnt

51) wil: D G1 Wil Y3 Why3

52) Trydnt: Trade B1 G1 Y2

53) wil: B G2 Gee1

54) Trydnt: Move Y1 Why1 Wil

	wil: Nice
	Trydnt: interesting ending. ran through it a bunch of different ways in my head to make sure there was no way to wriggle out


35262)
Variants: "Hard time"
Started: 2019.7.10, Ended: 2019.8.8
Participants: Simon (S), Trydnt (N)
Winner: Simon

1) Trydnt: Homeworld B3 Y2 G3

2) Simon: Homeworld B3 R1 G3

3) Trydnt: Build G1 Trydnt
	Simon: Have fun!
	Trydnt: you too

4) Simon: Build G1 Simon

5) Trydnt: Trade G1 R1 Trydnt

6) Simon: Trade G1 R1 Simon

7) Trydnt: Build R2 Trydnt

8) Simon: Build R2 Simon

9) Trydnt: Build R2 Trydnt

10) Simon: Trade R2 Y2 Simon

11) Trydnt: Trade R2 Y2 Trydnt

12) Simon: Build R2 Simon

13) Trydnt: Build R2 Trydnt

14) Simon: Discover R2 Simon G2 G2

15) Trydnt: Trade R1 B1 Trydnt

16) Simon: Build Y1 Simon

17) Trydnt: Discover R2 Trydnt G1 G1

18) Simon: Move Y1 Simon G2

19) Trydnt: Sacrifice G3 Trydnt
Build R1 G1
Build R3 Trydnt
Build B1 Trydnt

20) Simon: Build R3 G2

21) Trydnt: Trade R3 G3 Trydnt

22) Simon: Trade R1 B1 Simon

23) Trydnt: Sacrifice Y2 Trydnt
Move R1 G1 G2
Move R2 G1 G2
Catastrophe G2 R

24) Simon: Move B1 Simon G2

25) Trydnt: Discover B1 Trydnt G1 G1

26) Simon: Build B2 G2

27) Trydnt: Build B2 G1

28) Simon: Trade B2 R2 G2

29) Trydnt: Trade B1 R1 G1

30) Simon: Build R1 G2

31) Trydnt: Sacrifice G3 Trydnt
Build R2 G1
Build R3 Trydnt
Build B1 G1

32) Simon: Build R3 G2

33) Trydnt: Trade R3 G3 Trydnt

34) Simon: Trade R3 Y3 G2



35347)
Variants: "Unrated"
Started: 2019.7.14, Ended: 2019.8.10
Participants: wil (S), dougforte (N)
Winner: dougforte

1) dougforte: Homeworld G3 B1 R3

2) wil: H B2 Y1 G3
	dougforte: Hi, enjoy!

3) dougforte: Build R1 Dougforte
	wil: Thx 4 the game!  Have fun!
	dougforte: Thanks!  :)

4) wil: B G1 Wil

5) dougforte: Trade R1 Y1 Dougforte

6) wil: T G1 B1 Wil

7) dougforte: Build R1 Dougforte

8) wil: B B1 Wil

9) dougforte: Discover R3 Dougforte G2 Everest

10) wil: B G1 Wil

11) dougforte: Build R1 Everest
	wil: Do you own pyramid arcade? Danger in HW w/o big ship.
	dougforte: I don't have any actual pyramids, I'm considering getting some but haven't yet (that could go on for a while...)
	dougforte: I'm hoping to get a big ship back in HW before too much danger.  

12) wil: D B1 Wil Y3 Y3

13) dougforte: Build Y1 Dougforte

14) wil: T G1 R1 Wil

15) dougforte: Move Y1 Dougforte Everest

16) wil: B G1 Wil

17) dougforte: Move R3 Everest Y3

18) wil: D B1 Y3 Y2 Y2

19) dougforte: Build R2 Dougforte

20) wil: S G3 Wil
B B2 Y2
B B2 Y2
B B3 Wil

21) dougforte: Move R3 Y3 Y2

22) wil: D B2 Y2 G3 G3

23) dougforte: Sacrifice R2 Dougforte
Attack B2 Y2
Attack B1 Y2

24) wil: B B3 G3

25) dougforte: Move R3 Y2 G3

26) wil: M B1 Wil G3

27) dougforte: Attack B3 G3

28) wil: B B3 G3
C G3 B

29) dougforte: Build Y2 Everest

30) wil: B R2 Wil

31) dougforte: Move Y2 Everest G3

32) wil: D R2 Wil G3 Gee3

33) dougforte: Build R2 Everest

34) wil: B G1 Wil

35) dougforte: Build Y2 G3

36) wil: D G1 Wil Y3 Y3
	wil: I've lost this game

37) dougforte: Build Y3 Dougforte
	dougforte: Well, in that case, I'll try not to disappoint by messing up, but no promises.

38) wil: B R2 Gee3

39) dougforte: Build R3 G3

40) wil: B R3 Wil

41) dougforte: Build Y3 Everest

42) wil: B G1 Wil

43) dougforte: Trade B2 G2 Y2

44) wil: M R1 Wil G3

45) dougforte: Build G2 Y2

46) wil: M B3 Wil Y3

47) dougforte: Move R3 G3 Y2

48) wil: S R1 G3
P

49) dougforte: Move R3 Y2 Gee3

50) wil: B R1 Gee3
C Gee3 R

51) dougforte: Discover G2 Y2 G3 Gee3

52) wil: B R1 Wil

53) dougforte: Build R2 Dougforte

54) wil: M R1 Wil Y3

55) dougforte: Sacrifice G2 Y2
Build R2 Everest
Build R3 G3

56) wil: B G2 Y3

57) dougforte: Sacrifice Y2 G3
Move R3 G3 Wil
Move R3 G3 Wil

58) wil: M R3 Wil G3

59) dougforte: Sacrifice R2 Everest
Attack G1 Wil
Attack G1 Wil
	wil: Gg
	dougforte: Thanks, good game.
	wil: Gg, challenge me anytime



35234)
Variants: "Unrated"
Started: 2019.7.16, Ended: 2019.9.5
Participants: dougforte (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) dougforte: Homeworld G3 B1 G3 *

3) Trydnt: Build G1 Trydnt

4) dougforte: Build G1 Dougforte

5) Trydnt: Build G1 Trydnt

6) dougforte: Trade G1 Y1 Dougforte

7) Trydnt: Trade G1 Y1 Trydnt

8) dougforte: Build Y2 Dougforte

9) Trydnt: Build Y2 Trydnt

10) dougforte: Discover Y1 Dougforte G2 Tasman

11) Trydnt: Trade Y1 B1 Trydnt

12) dougforte: Build G1 Dougforte

13) Trydnt: Discover G1 Trydnt B3 B3

14) dougforte: Move G1 Dougforte Tasman

15) Trydnt: Build G1 B3

16) dougforte: Move G1 Tasman B3

17) Trydnt: Trade G1 R1 B3

18) dougforte: Build Y1 Tasman

19) Trydnt: Move Y2 Trydnt B3

20) dougforte: Discover Y1 Tasman Y3 Coral

21) Trydnt: Discover B1 Trydnt Y3 Y3

22) dougforte: Build G1 B3

23) Trydnt: Trade G1 R1 B3

24) dougforte: Sacrifice G3 Dougforte
Build Y2 Dougforte
Build Y3 Tasman
Build G1 B3

25) Trydnt: Move R1 B3 Trydnt

26) dougforte: Trade Y2 B2 Dougforte

27) Trydnt: Build R1 Trydnt

28) dougforte: Trade B2 R2 Dougforte

29) Trydnt: Build R2 Trydnt

30) dougforte: Build Y2 Dougforte

31) Trydnt: Move R1 Trydnt Coral

32) dougforte: Trade Y2 G2 Dougforte

33) Trydnt: Attack Y1 Coral

34) dougforte: Build Y2 Dougforte
	dougforte: build Y2 dougforte
	dougforte: I mean...

35) Trydnt: Discover R1 Trydnt G3 G3

36) dougforte: Move R2 Dougforte Tasman

37) Trydnt: Sacrifice G3 Trydnt
Build R2 Coral
Build R3 B3
Build R3 Trydnt

38) dougforte: Build R3 Tasman

39) Trydnt: Sacrifice Y2 B3
Move R3 B3 Tasman
Move R3 Tasman Dougforte

40) dougforte: Move Y1 Tasman Y3

41) Trydnt: Sacrifice R3 Trydnt
Attack Y2 Dougforte
Attack Y2 Dougforte
Attack G2 Dougforte



35307)
Variants: "Unrated, Hard time"
Started: 2019.7.19, Ended: 2019.8.6
Participants: wil (S), bhorner (N)
Winner: wil

1) bhorner: Homeworld B1 R2 G3

2) wil: H G3 B1 B3 *

3) bhorner: Build G1 Bhorner
	bhorner: Wow.  :)
	bhorner: If they take a small color X, you can take another of the same, a color X ship, and a green to instantly lock out...  Blue is easier to maintain lockout than other colors might be.  I love that I've never seen this before.

4) wil: B B1 Wil
	wil: Different opening, but I've found nothing unbeatable.

5) bhorner: Trade G1 Y1 Bhorner
	wil: We call it instafreeze

6) wil: T B3 Y3 Wil

7) bhorner: Build Y1 Bhorner

8) wil: B B2 Wil

9) bhorner: Discover Y1 Bhorner G3 Tree

10) wil: D B1 Wil B2 B2

11) bhorner: Build G1 Bhorner
	bhorner: I think maybe I didn't realize how dire it was.  I think I should have built g1 traded b2, and started building blue...  No plan is not a plan.  :)
	bhorner: I meant b3

12) wil: B B2 Wil

13) bhorner: Discover Y1 Bhorner B3 Snowman
	wil: Dire is my hope!

14) wil: D B2 Wil G2 G2

15) bhorner: Move Y1 Tree B2

16) wil: B B3 Wil
	bhorner: I'll do better next time.  (Or the time after that. :) )
	wil: Far from over!
	wil: Far from over!

17) bhorner: Trade G3 B3 Bhorner

18) wil: T B1 R1 B2

19) bhorner: Discover Y1 B2 G3 Tree

20) wil: T B3 G3 Wil

21) bhorner: Sacrifice Y1 Tree
Discover G1 Bhorner B3 Manofsnow

22) wil: B B1 G2

23) bhorner: Build G1 Manofsnow

24) wil: T B2 Y2 G2

25) bhorner: Sacrifice G1 Manofsnow
Build B2 Bhorner

26) wil: S Y2 G2
M B1 G2 Manofsnow
M B1 Manofsnow Bhorner
C Bhorner B
	wil: Oops
	bhorner: Well, I was trapped.  I could only do things that would make it worse.  :). If you didn't miss something, I was doomed, so I tried that one.  :)
	wil: The game can get strange.



35370)
Variants: "Hard time"
Started: 2019.7.20, Ended: 2019.8.9
Participants: SilentTitan (S), dougforte (N)
Winner: SilentTitan

1) dougforte: Homeworld G1 Y2 B3

2) SilentTitan: Homeworld B3 R2 G3

3) dougforte: Build B1 Dougforte

4) SilentTitan: Build G1 Silenttitan

5) dougforte: Trade B1 G1 Dougforte

6) SilentTitan: Trade G1 Y1 Silenttitan

7) dougforte: Build B1 Dougforte

8) SilentTitan: Build Y1 Silenttitan

9) dougforte: Build G1 Dougforte

10) SilentTitan: Discover Y1 Silenttitan Y1 Sol

11) dougforte: Discover G1 Dougforte Y3 Sirius

12) SilentTitan: Sacrifice G3 Silenttitan
Build Y2 Sol
Build Y2 Silenttitan
Build Y3 Silenttitan

13) dougforte: Move B3 Dougforte Sirius
	SilentTitan: I have no idea how I clicked any page admin button. It was inadvertent either way. Thanks

14) SilentTitan: Trade Y3 R3 Silenttitan
	dougforte: I'm not sure either.  No worries, it doesn't seem to have affected anything.

15) dougforte: Move B3 Sirius Dougforte
	SilentTitan: Well it froze the timer which if, neither of us forgets we’re playing the game, should be alright

16) SilentTitan: Trade Y2 G2 Silenttitan
	dougforte: I think we'll manage to remember.  :)

17) dougforte: Trade B3 Y3 Dougforte

18) SilentTitan: Sacrifice G2 Silenttitan
Build Y2 Silenttitan
Build Y3 Silenttitan

19) dougforte: Trade G1 R1 Dougforte

20) SilentTitan: Trade Y3 G3 Silenttitan

21) dougforte: Build B1 Dougforte

22) SilentTitan: Build Y3 Silenttitan

23) dougforte: Build R1 Dougforte

24) SilentTitan: Discover Y2 Sol G3 Soul

25) dougforte: Move R1 Dougforte Sirius

26) SilentTitan: Sacrifice Y3 Silenttitan
Move Y1 Sol Soul
Move Y1 Soul Dougforte
Move Y2 Soul Dougforte
Catastrophe Dougforte Yellow

27) dougforte: Trade B1 Y1 Dougforte

28) SilentTitan: Move G3 Silenttitan Dougforte

29) dougforte: Build B1 Dougforte

30) SilentTitan: Build G1 Dougforte

31) dougforte: Attack G1 Dougforte

32) SilentTitan: Build G2 Dougforte
Catastrophe Dougforte Green



35209)
Variants: "Hard time"
Started: 2019.7.21, Ended: 2019.9.18
Participants: wil (S), dragon76n (N)
Winner: wil

1) dragon76n: Homeworld Y2 G3 B3

2) wil: H B2 Y1 G3
	dragon76n: Hi Wil, I'm back for another game. 
	wil: Thx!!

3) dragon76n: Build B1 Dragon76n

4) wil: B G1 Wil
	dragon76n: Sorry about the delay getting back... things have been hectic.
	wil: No worries

5) dragon76n: Build B1 Dragon76n

6) wil: T G1 B1 Wil

7) dragon76n: Trade B1 Y1 Dragon76n

8) wil: B B1 Wil

9) dragon76n: Trade B1 Y1 Dragon76n

10) wil: D B1 Wil G3 G3

11) dragon76n: Discover Y1 Dragon76n G1 Greone

12) wil: B B1 Wil

13) dragon76n: Build B2 Dragon76n

14) wil: D B1 Wil Y3 Y3

15) dragon76n: Move B2 Dragon76n Greone

16) wil: S G3 Wil
B B2 G3
B B3 Y3
B B3 Wil

17) dragon76n: Build Y2 Dragon76n
	dragon76n: Wow!

18) wil: S B2 G3
T B3 Y3 Y3
T B3 G3 Wil

19) dragon76n: Build Y2 Greone

20) wil: D Y3 Y3 G1 G1

21) dragon76n: Build Y3 Greone

22) wil: B G1 Wil

23) dragon76n: Move Y1 Dragon76n G1

24) wil: B G2 Wil

25) dragon76n: Trade Y1 R1 Greone

26) wil: T B1 R1 Wil

27) dragon76n: Discover Y1 G1 B3 Bluthr

28) wil: B Y1 G1

29) dragon76n: Move Y2 Greone G3

30) wil: B B1 G3

31) dragon76n: Build R1 Greone

32) wil: S G2 Wil
B B2 G3
B B3 Y3

33) dragon76n: Sacrifice R1 Greone
Attack B2 G3

34) wil: B G2 Wil

35) dragon76n: Trade B2 G2 G3

36) wil: M G1 Wil G3

37) dragon76n: Discover G2 G3 B2 Blutwo

38) wil: S G3 Wil
B G2 G3
B G3 Wil
B R1 Wil

39) dragon76n: Move Y2 G3 Blutwo

40) wil: T G2 R2 G3

41) dragon76n: B G2 Blutwo

42) wil: S B1 G3
T B3 R3 Y3



35396)
Started: 2019.7.26, Ended: 2019.8.29
Participants: Draw5PlayAll (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R2 B1 G3
	Draw5PlayAll: Is this starting already?

My performance was awful last year. This time I will take things more seriously!!
	Babamots: I put in the rules that people could start playing whenever they're ready, but it's tucked into the middle of a paragraph. I should have said it somewhere more prominent.

I sort of think that the tournament *really* begins when I close registration (as I'm planning to do in a couple of weeks). That's also when I start making sure that everyone is participating consistently or asking them if they need to withdraw.

I have the first move, so it's my job to record this game with the tournament form.

Good luck here and on all of your games!

2) Draw5PlayAll: Homeworld B1 G3 B3 *

3) Babamots: Build G1 Babamots
	Draw5PlayAll: Never pass up an opportunity to improve on the past...

4) Draw5PlayAll: Build B1 Draw5playall

5) Babamots: Trade G3 B3 Babamots

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) Babamots: Build B2 Babamots
	Draw5PlayAll: That moment when you wish you had picked Y2+B1 instead of R2+B1...

8) Draw5PlayAll: Build B2 Draw5playall
	Babamots: Could be worse.

9) Babamots: Trade B3 Y3 Babamots

10) Draw5PlayAll: Discover B2 Draw5playall G2 Build

11) Babamots: Discover B2 Babamots G3 Orion

12) Draw5PlayAll: Build Y1 Draw5playall

13) Babamots: Build G1 Babamots
	Draw5PlayAll: Whomever cracks first...

14) Draw5PlayAll: Trade Y1 R1 Draw5playall

15) Babamots: Trade G1 R1 Babamots

16) Draw5PlayAll: Build Y1 Draw5playall

17) Babamots: Build G1 Babamots

18) Draw5PlayAll: Trade Y1 G1 Draw5playall

19) Babamots: Build G2 Babamots

20) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2

21) Babamots: Discover G2 Babamots G3 Ferenginar

22) Draw5PlayAll: Build R1 Draw5playall

23) Babamots: Build G2 Babamots

24) Draw5PlayAll: Move R1 Draw5playall Build

25) Babamots: Discover G2 Babamots Y3 Aldea

26) Draw5PlayAll: Move B1 Draw5playall Y2

27) Babamots: Sacrifice G2 Ferenginar
Build G2 Babamots
Build G3 Aldea

28) Draw5PlayAll: Build B2 Y2

29) Babamots: Sacrifice G3 Aldea
Build B3 Orion
Build B3 Orion
Build G3 Aldea

30) Draw5PlayAll: Move B1 Y2 Orion
Catastrophe Orion Blue

31) Babamots: Discover G2 Babamots G3 Ferenginar

32) Draw5PlayAll: Build B1 Build

33) Babamots: Sacrifice G3 Aldea
Build Y1 Babamots
Build R2 Babamots
Build G3 Aldea

34) Draw5PlayAll: Build B2 Y2

35) Babamots: Move G3 Aldea Y2

36) Draw5PlayAll: Build B3 Build

37) Babamots: Sacrifice R2 Babamots
Attack B2 Y2
Attack B2 Y2

38) Draw5PlayAll: Trade B2 Y2 Build

39) Babamots: Sacrifice G2 Ferenginar
Build G2 Y2
Build G3 Aldea

40) Draw5PlayAll: Discover G1 Y2 Y1 Move

41) Babamots: Trade B2 R2 Y2

42) Draw5PlayAll: Build R2 Build

43) Babamots: Move R1 Babamots Aldea
	Babamots: Sorry to be so slow. I'm traveling and very distracted.

44) Draw5PlayAll: Build R3 Draw5playall

45) Babamots: Sacrifice G3 Aldea
Build R3 Aldea
Build R3 Y2
Build G3 Aldea

46) Draw5PlayAll: Discover R3 Draw5playall B2 Trade

47) Babamots: Discover G3 Y2 B3 Andoria

48) Draw5PlayAll: Discover B1 Build Y1 Discover
	Draw5PlayAll: It never fails. No matter how I set up my homeworld, no matter who goes first, the other person always ends up with more ships than I do.

49) Babamots: Discover G3 Aldea Y2 Iconia

50) Draw5PlayAll: Move G1 Move Trade

51) Babamots: Sacrifice G2 Aldea
Build B2 Y2
Build G2 Iconia

52) Draw5PlayAll: Build B3 Build
	Draw5PlayAll: What is Aldea again?

53) Babamots: Move B2 Y2 Aldea
	Babamots: This is the first time I've ever used "Aldea" for a system. It's a planet in TNG that was lost in mythical fashion, like Atlantis.

54) Draw5PlayAll: Build Y1 Draw5playall

55) Babamots: Sacrifice G3 Andoria
Pass
Build B3 Aldea
Build G3 Y2

56) Draw5PlayAll: Move B3 Build Discover

57) Babamots: Move G3 Y2 Draw5playall

58) Draw5PlayAll: Attack G3 Draw5playall

59) Babamots: Move G3 Iconia Draw5playall

60) Draw5PlayAll: Attack G3 Draw5playall

61) Babamots: Sacrifice Y3 Babamots
Move G2 Iconia Draw5playall
Move B2 Y2 Draw5playall
Catastrophe Draw5playall G
Move B3 Aldea Draw5playall

62) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move B3 Discover Build
Move B3 Build Draw5playall
Move B3 Build Draw5playall

63) Babamots: Move B2 Aldea Draw5playall
Catastrophe Draw5playall B

	Draw5PlayAll: 6 blues in one system
	Babamots: I'd never seen anything quite like it, so I was pretty pleased when I came up with it. Sort of a slow-motion doomsday machine. A doomsweek machine, maybe.
	Draw5PlayAll: Hopefully I do not get massacred this year like I did last year...
	Draw5PlayAll: I think last time my ONLY wins were speardane, one human, and a bunch of withdrawn players.
	Babamots: You actually beat *two* humans who stayed in the tournament last year and had one draw :-)

Good luck with your games!


35397)
Started: 2019.7.29, Ended: 2019.8.3
Participants: The_Unicyclone (S), theMadHunter249 (N)
Winner: theMadHunter249

1) theMadHunter249: Homeworld R3 G2 B3

2) The_Unicyclone: Homeworld B3 G1 R3

3) theMadHunter249: Build B1 Themadhunter249

4) The_Unicyclone: Build R1 The_unicyclone

5) theMadHunter249: Trade B1 Y1 Themadhunter249

6) The_Unicyclone: Build R1 The_unicyclone

7) theMadHunter249: Discover Y1 Themadhunter249 G1 Gastown

8) The_Unicyclone: Trade R1 Y1 The_unicyclone

9) theMadHunter249: Build Y1 Gastown

10) The_Unicyclone: Build Y2 The_unicyclone

11) theMadHunter249: Build B1 Themadhunter249

12) The_Unicyclone: Sacrifice Y2 The_unicyclone
Discover R1 The_unicyclone Y2 Lilypad
Move R1 Lilypad Gastown

13) theMadHunter249: Build Y2 Gastown

14) The_Unicyclone: Build Y2 The_unicyclone

15) theMadHunter249: Sacrifice Y1 Gastown
Move B1 Themadhunter249 Gastown

16) The_Unicyclone: Attack B1 Gastown

17) theMadHunter249: Move Y1 Gastown Themadhunter249

18) The_Unicyclone: Trade Y2 R2 The_unicyclone

19) theMadHunter249: Build B1 Themadhunter249

20) The_Unicyclone: Discover R2 The_unicyclone Y2 Bulletfarm

21) theMadHunter249: Trade B3 R3 Themadhunter249

22) The_Unicyclone: Move R2 Bulletfarm Gastown

23) theMadHunter249: Move Y2 Gastown Themadhunter249

24) The_Unicyclone: Trade R1 Y1 Gastown

25) theMadHunter249: Move R3 Themadhunter249 Gastown

26) The_Unicyclone: Trade Y1 R1 Gastown

27) theMadHunter249: Attack B1 Gastown

28) The_Unicyclone: Build R1 Gastown
Catastrophe Gastown Red

29) theMadHunter249: Build B1 Gastown

30) The_Unicyclone: Build Y1 The_unicyclone

31) theMadHunter249: Trade B1 R1 Gastown

32) The_Unicyclone: Trade Y1 G1 The_unicyclone

33) theMadHunter249: Move Y1 Themadhunter249 Gastown

34) The_Unicyclone: Discover G1 The_unicyclone B2 Watertower

35) theMadHunter249: Move R1 Gastown Watertower

36) The_Unicyclone: Build G2 Watertower

37) theMadHunter249: Attack G1 Watertower

38) The_Unicyclone: Trade G2 R2 Watertower

39) theMadHunter249: Build R1 Watertower

40) The_Unicyclone: Attack G1 Watertower

41) theMadHunter249: Build Y1 Gastown

42) The_Unicyclone: Build Y2 The_unicyclone

43) theMadHunter249: Trade Y1 R1 Gastown

44) The_Unicyclone: Build G2 Watertower

45) theMadHunter249: Build R2 Gastown

46) The_Unicyclone: Trade G2 Y2 Watertower

47) theMadHunter249: Trade R2 G2 Gastown

48) The_Unicyclone: Discover Y2 Watertower R3 Thunderdome

49) theMadHunter249: Discover G2 Gastown B2 Decoy

50) The_Unicyclone: Sacrifice R2 Watertower
Attack R1 Watertower
Attack R1 Watertower

51) theMadHunter249: Move Y1 Gastown Decoy

52) The_Unicyclone: Discover Y2 Thunderdome B1 Dirtroad

53) theMadHunter249: Build Y1 Decoy

54) The_Unicyclone: Sacrifice Y1 The_unicyclone
Move G1 Watertower Dirtroad

55) theMadHunter249: Build R2 Gastown

56) The_Unicyclone: Trade R1 Y1 Watertower

57) theMadHunter249: Build Y3 Themadhunter249

58) The_Unicyclone: Build Y3 Dirtroad

59) theMadHunter249: Move Y2 Themadhunter249 Gastown

60) The_Unicyclone: Trade Y3 R3 Dirtroad

61) theMadHunter249: Build Y3 Gastown

62) The_Unicyclone: Build Y3 Dirtroad

63) theMadHunter249: Move Y3 Gastown Themadhunter249

64) The_Unicyclone: Build R1 Dirtroad

65) theMadHunter249: Move R2 Gastown Watertower

66) The_Unicyclone: Move R1 Watertower Dirtroad

67) theMadHunter249: Attack Y1 Watertower

68) The_Unicyclone: Sacrifice Y3 Dirtroad
Move R1 Dirtroad Themadhunter249
Move R1 Dirtroad Themadhunter249
Move R3 Dirtroad Themadhunter249
Catastrophe Themadhunter249 Red

69) theMadHunter249: Build Y3 Gastown

70) The_Unicyclone: Trade G1 R1 Dirtroad

71) theMadHunter249: Trade Y3 R3 Themadhunter249

72) The_Unicyclone: Discover R1 Dirtroad G3 Thegreen

73) theMadHunter249: Build Y3 Themadhunter249

74) The_Unicyclone: Move Y2 Dirtroad Thegreen

75) theMadHunter249: Trade Y3 G3 Themadhunter249

76) The_Unicyclone: Build Y3 Thegreen

77) theMadHunter249: Trade R2 G2 Watertower

78) The_Unicyclone: Move Y3 Thegreen Decoy

79) theMadHunter249: Sacrifice Y3 Themadhunter249
Move G2 Decoy The_unicyclone
Move G2 Watertower The_unicyclone
Move G3 Themadhunter249 The_unicyclone
Catastrophe The_unicyclone Green

80) The_Unicyclone: Trade Y3 G3 Decoy

81) theMadHunter249: Trade Y1 B1 Watertower

82) The_Unicyclone: Sacrifice G3 Decoy
Build R1 The_unicyclone
Build R2 The_unicyclone
Build R2 The_unicyclone
Catastrophe The_unicyclone Red

83) theMadHunter249: Sacrifice Y3 Gastown
Move B1 Gastown The_unicyclone
Move B1 Watertower The_unicyclone
Move B1 Themadhunter249 The_unicyclone
Catastrophe The_unicyclone Blue



35400)
Variants: "Hard time"
Started: 2019.7.29, Ended: 2019.8.19
Participants: dlwillson (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G3 R1 B3

2) dlwillson: Homeworld B2 Y3 G3
	Simon: Have fun! You have 4 defends, I'll try my best.

3) Simon: Build B1 Simon
	dlwillson: I get lucky sometimes. Sometimes, I play well. :-)
	dlwillson: Thank you for the challenge! Good luck, and have fun!

4) dlwillson: B G1 Dlwillson

5) Simon: Trade B3 Y3 Simon

6) dlwillson: T G1 B1 Dlwillson

7) Simon: Build Y1 Simon

8) dlwillson: B B1 Dlwillson

9) Simon: Build B2 Simon

10) dlwillson: D B1 Dlwillson G1 Field

11) Simon: Discover B2 Simon G2 G2

12) dlwillson: T B1 R1 Dlwillson

13) Simon: Build B1 G2

14) dlwillson: B R1 Dlwillson

15) Simon: Trade B2 R2 G2

16) dlwillson: B B2 Field

17) Simon: Build R2 G2

18) dlwillson: T B2 R2 Field

19) Simon: Trade R2 Y2 G2

20) dlwillson: D R1 Dlwillson Y1 Golden

21) Simon: Build B2 G2

22) dlwillson: B G1 Dlwillson

23) Simon: Discover B1 G2 Y1 Y1

24) dlwillson: M G1 Dlwillson Golden

25) Simon: Build Y2 G2

26) dlwillson: D G1 Golden R3 Mars

27) Simon: Build Y2 Simon

28) dlwillson: D R1 Golden B2 Sky

29) Simon: Build B3 G2

30) dlwillson: B B3 Field

31) Simon: Trade B3 G3 G2

32) dlwillson: T B3 Y3 Field

33) Simon: Sacrifice G3 G2
Build B3 G2
Build B3 Y1
Build B3 Simon

34) dlwillson: B G1 Dlwillson

35) Simon: Discover B2 G2 Y1 Y1b

36) dlwillson: S G3 Dlwillson
B G2 Mars
B G2 Mars
B G3 Dlwillson

37) Simon: Discover Y1 Simon R2 R2

38) dlwillson: S Y3 Field
M G2 Mars G2
M G2 Mars G2
M G1 Mars G2
C G2 G

39) Simon: Trade B3 G3 Simon

40) dlwillson: T R2 Y2 Field

41) Simon: Sacrifice G3 Simon
Build Y2 Simon
Build Y3 R2
Build B3 Y1b

42) dlwillson: B B3 Field

43) Simon: Discover Y2 Simon R2 R2b

44) dlwillson: S G3 Dlwillson
B R2 Sky
B R3 Sky
B R3 Dlwillson

45) Simon: Trade B3 R3 Y1b

46) dlwillson: T R3 G3 Sky

47) Simon: Discover Y2 Simon G2 G2

48) dlwillson: M B3 Field G2

49) Simon: Discover Y2 G2 G1 G1

50) dlwillson: B B3 G2

51) Simon: Sacrifice Y3 R2
Move B1 Y1 Dlwillson
Move B3 Y1 Dlwillson
Move B2 Y1b Dlwillson
Catastrophe Dlwillson Blue

	dlwillson: Well played! Welcome to the top of the Homeworlds ladder!
	Simon: Thanks! gg, looking forward to a rematch eventually!


35405)
Started: 2019.8.1, Ended: 2019.9.26
Participants: Draw5PlayAll (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 R2 G3

2) Draw5PlayAll: Homeworld B2 Y1 G3

3) ajo: Build G1 Ajo
	Draw5PlayAll: ThisIsForTheTournament
	ajo: Yep! Good luck.

4) Draw5PlayAll: Build G1 Draw5playall

5) ajo: Trade G1 Y1 Ajo

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) ajo: Build Y2 Ajo

8) Draw5PlayAll: Build Y2 Draw5playall

9) ajo: Discover Y1 Ajo B1 Alpha

10) Draw5PlayAll: Discover Y2 Draw5playall G3 Greed

11) ajo: Sacrifice G3 Ajo
Build Y2 Ajo
Build Y3 Ajo
Build Y3 Alpha

12) Draw5PlayAll: Build Y3 Greed

13) ajo: Trade Y2 G2 Ajo

14) Draw5PlayAll: Trade Y1 R1 Draw5playall

15) ajo: Trade Y3 G3 Alpha

16) Draw5PlayAll: Build R1 Draw5playall

17) ajo: Trade Y2 R2 Ajo

18) Draw5PlayAll: Trade R1 B1 Draw5playall

19) ajo: Build Y1 Alpha

20) Draw5PlayAll: Discover Y2 Greed B2 Diversity

21) ajo: Trade Y1 R1 Alpha

22) Draw5PlayAll: Move B1 Draw5playall Greed

23) ajo: Build G1 Alpha

24) Draw5PlayAll: Build G1 Draw5playall

25) ajo: Discover R2 Ajo Y1 Beta

26) Draw5PlayAll: Build B1 Greed

27) ajo: Build Y2 Alpha

28) Draw5PlayAll: Build B2 Greed

29) ajo: Discover Y2 Alpha B3 Gamma

30) Draw5PlayAll: Discover B1 Greed G2 Growth

31) ajo: Sacrifice G3 Alpha
Build R1 Beta
Build Y2 Gamma
Build Y3 Alpha

32) Draw5PlayAll: Build B3 Growth

33) ajo: Move R2 Beta Gamma

34) Draw5PlayAll: Trade B3 R3 Growth

35) ajo: Discover Y1 Alpha B3 Delta

36) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 Growth
Build R3 Draw5playall
Build G1 Draw5playall

37) ajo: Build R3 Alpha
	Draw5PlayAll: It never fails.

38) Draw5PlayAll: Move G1 Draw5playall Greed

39) ajo: Move R3 Alpha Diversity

40) Draw5PlayAll: Move Y2 Diversity Delta

41) ajo: Build G2 Alpha

42) Draw5PlayAll: Move G1 Greed Beta

43) ajo: Attack G1 Beta

44) Draw5PlayAll: Build G3 Draw5playall

45) ajo: Build G3 Beta
	Draw5PlayAll: I hate these closed positions

46) Draw5PlayAll: Move R3 Draw5playall Gamma

47) ajo: Sacrifice Y2 Gamma
Move R2 Gamma Growth
Move R1 Alpha Growth
Catastrophe Growth Red

48) Draw5PlayAll: Attack Y2 Gamma

49) ajo: Build Y2 Alpha

50) Draw5PlayAll: Trade B1 R1 Greed

51) ajo: Sacrifice Y1 Delta
Move Y2 Alpha Growth
	Draw5PlayAll: How exactly do you run your AI? Do you just put the position into the computer, ask for ai_move, and then manually convert it into SDG notation? Or something else?

52) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y1 Gamma
Build B1 Greed
Build G3 Draw5playall
	ajo: Essentially yes. As of a month-ish ago, you can run it with `--sdg` to get the output automatically in SDG notation. I'm haphazardly working on something that could slurp the game transcript from SDG, reconstruct the position, and then submit its move automatically. But for now it's still mostly manual.

53) ajo: Move G3 Beta Delta

54) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 Gamma
Build R2 Greed
Build R3 Draw5playall
	Draw5PlayAll: Hmmm...

Attack: /A fight broke out in the ([]) system! (\w+)'s (\w\d) ship was overtaken by (\w+)./
Construct: /(\w+) created an? (\w\d) ship in the ([]) system./
Trade: /(\w+) traded their old (\w\d) ship for a shiny new (\w\d) ship in the ([]) system./
Move: /(\w+) moved their (\w\d) ship from ([]) to ([])./
Discover: /(\w+)'s ship (\w\d) ventured forth from ([]) and discovered a new (\w\d) system! It has been named ([])./
Sacrifice: /(\w+)'s ship (\w\d) was sacrificed in the ([]) system./

Inside the []'s you need to know all the valid characters for system names.
	Draw5PlayAll: [A-Za-z0-9_-'] to be exact.

55) ajo: Build G3 Beta

56) Draw5PlayAll: Sacrifice Y2 Delta
Move B1 Growth Delta
Move B1 Delta Diversity

57) ajo: Sacrifice G2 Alpha
Build G2 Delta
Build Y2 Alpha

58) Draw5PlayAll: Sacrifice Y3 Greed
Move B1 Diversity Alpha
Move B2 Greed Alpha
Move B1 Greed Alpha
Catastrophe Alpha Blue

59) ajo: Trade G2 B2 Delta
	Draw5PlayAll: Probably made everything worse for me, but I needed more stuff.

60) Draw5PlayAll: Trade R1 B1 Draw5playall

61) ajo: Sacrifice G3 Beta
Build G1 Ajo
Build G2 Delta
Build G3 Beta

62) Draw5PlayAll: Build R1 Draw5playall

63) ajo: Sacrifice G3 Delta
Build G3 Delta
Build Y2 Ajo
Build Y3 Growth

64) Draw5PlayAll: Move Y2 Gamma Draw5playall
	ajo: Yeah, I think you made it worse. :)

65) ajo: Sacrifice B2 Delta
Trade R3 Y3 Diversity
Trade G1 B1 Beta

66) Draw5PlayAll: Trade R1 G1 Draw5playall

67) ajo: Move Y3 Diversity Greed

	Draw5PlayAll: Like always, I stand no chance.
	ajo: Good game!


35406)
Started: 2019.8.1, Ended: 2019.10.10
Participants: Draw5PlayAll (S), speardane (N)
Winner: Draw5PlayAll

1) speardane: Homeworld B3 Y2 G3

2) Draw5PlayAll: Homeworld B2 R1 G3

3) speardane: Build G1 Speardane
	Draw5PlayAll: ThisIsForTheTournament
	speardane: Agreed. Good luck!

4) Draw5PlayAll: Build G1 Draw5playall

5) speardane: Trade G3 R3 Speardane

6) Draw5PlayAll: Trade G1 R1 Draw5playall
	Draw5PlayAll: It always wants an R3...

7) speardane: Build G1 Speardane

8) Draw5PlayAll: Build G1 Draw5playall

9) speardane: Discover G1 Speardane B1 Delos

10) Draw5PlayAll: Trade G1 Y1 Draw5playall

11) speardane: Build G1 Delos

12) Draw5PlayAll: Build G2 Draw5playall

13) speardane: Trade G1 Y1 Delos

14) Draw5PlayAll: Discover G2 Draw5playall B3 Water

15) speardane: Build G1 Delos

16) Draw5PlayAll: Build G2 Draw5playall

17) speardane: Trade G1 R1 Delos

18) Draw5PlayAll: Move R1 Draw5playall Water

19) speardane: Build G1 Delos

20) Draw5PlayAll: Build R2 Water

21) speardane: Build R2 Delos
	Draw5PlayAll: Against many other opponents it would be me who was losing the race.

22) Draw5PlayAll: Trade R2 Y2 Water

23) speardane: Build R2 Delos

24) Draw5PlayAll: Move R1 Water Delos
Catastrophe Delos Red

25) speardane: Trade G1 R1 Delos
	Draw5PlayAll: Your AI might need a check against having 3 of a color where a 4th could easily be moved in...

26) Draw5PlayAll: Trade G2 R2 Draw5playall

27) speardane: Build G1 Delos

28) Draw5PlayAll: Build G2 Draw5playall

29) speardane: Discover G1 Delos B3 Lebling

30) Draw5PlayAll: Discover R2 Draw5playall G3 Earth

31) speardane: Build G2 Lebling
	Draw5PlayAll: Unfortunately, I cannot see yellow representing Air by any stretch of the imagination.

32) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Water
Build Y1 Draw5playall

33) speardane: Trade G2 Y2 Lebling

34) Draw5PlayAll: Trade Y1 B1 Draw5playall

35) speardane: Build Y1 Lebling

36) Draw5PlayAll: Sacrifice G3 Water
Build Y3 Draw5playall
Build Y3 Water
Build R1 Earth

37) speardane: Build Y3 Delos

38) Draw5PlayAll: Move Y3 Draw5playall Earth

39) speardane: Trade Y2 R2 Lebling

40) Draw5PlayAll: Build Y2 Draw5playall

41) speardane: Build R2 Lebling

42) Draw5PlayAll: Discover R2 Earth B2 Something

43) speardane: Build R3 Delos

44) Draw5PlayAll: Sacrifice G2 Draw5playall
Build G2 Draw5playall
Build R3 Something

45) speardane: Build G2 Lebling

46) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Water
Build B1 Draw5playall

47) speardane: Sacrifice Y3 Delos
Discover R3 Delos Y3 Kotok
Move G1 Lebling Draw5playall
Move G2 Lebling Draw5playall
Catastrophe Draw5playall Green

48) Draw5PlayAll: Move G3 Water Draw5playall
	Draw5PlayAll: Thin ice, tightrope, hanging by a thread, whatever metaphor you want.

49) speardane: Trade R2 G2 Lebling
	Draw5PlayAll: Thought so.

50) Draw5PlayAll: Build G1 Draw5playall

51) speardane: Build G2 Lebling

52) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Water
Build R2 Earth

53) speardane: Discover G2 Lebling B2 Minsky

54) Draw5PlayAll: Move Y3 Water Something

55) speardane: Move Y1 Lebling Minsky
	Draw5PlayAll: What do those names refer to?

56) Draw5PlayAll: Move R3 Something Lebling
	Draw5PlayAll: Proposed AI addition: Make it want to have a large at any system it has several ships in.

57) speardane: Sacrifice G2 Lebling
Build G2 Minsky
Pass

58) Draw5PlayAll: Attack R2 Lebling

59) speardane: Move G2 Minsky Kotok

60) Draw5PlayAll: Move Y1 Draw5playall Lebling

61) speardane: Move R3 Kotok Minsky

62) Draw5PlayAll: Move R2 Lebling Delos

63) speardane: Sacrifice G2 Kotok
Build Y3 Delos
Build G2 Minsky

64) Draw5PlayAll: Attack Y1 Delos

65) speardane: Attack R2 Delos

66) Draw5PlayAll: Move Y1 Delos Lebling

67) speardane: Sacrifice G2 Minsky
Build G2 Speardane
Pass

68) Draw5PlayAll: Move B1 Draw5playall Earth

69) speardane: Sacrifice G2 Speardane
Build G2 Minsky
Pass

70) Draw5PlayAll: Move R2 Earth Something

71) speardane: Sacrifice G2 Minsky
Build G2 Speardane
Pass

72) Draw5PlayAll: Move G2 Water Something
	Draw5PlayAll: Patience is a virtue

73) speardane: Sacrifice G2 Speardane
Build G2 Minsky
Pass
	speardane: [ajo says:] Well, this "closed position" is certainly showing off speardane's lack of foresight. It seems to be stuck at a local maximum (until you give it a pressing concern). It would probably be doing "pass" every turn right now, except that it has a hard rule never to "pass" unless it's checkmated (on the logic that if the game is winnable at all, _some_ move must be better than "pass" by definition).

74) Draw5PlayAll: Move Y2 Water Draw5playall
	Draw5PlayAll: Nice to know that. My current plan will seem very boring until I have 3 blues at Earth and another large at something. IICC that takes 6 turns before Delos or Minsky goes supernova.

75) speardane: Sacrifice G2 Minsky
Build G2 Speardane
Pass

76) Draw5PlayAll: Sacrifice G3 Water
Pass
Build G3 Something
Build B3 Earth

77) speardane: Sacrifice G2 Speardane
Build G2 Minsky
Pass

78) Draw5PlayAll: Move B3 Earth Something
	Draw5PlayAll: Almost there...

79) speardane: Sacrifice G2 Minsky
Build G2 Speardane
Pass

80) Draw5PlayAll: Move B1 Draw5playall Earth
	Draw5PlayAll: Ready...

81) speardane: Sacrifice G2 Speardane
Build G2 Minsky
Pass

82) Draw5PlayAll: Sacrifice Y1 Lebling
Move B3 Something Delos
	Draw5PlayAll: Aim...

83) speardane: Attack B3 Delos

84) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move B1 Earth Delos
Move B1 Earth Delos
Catastrophe Delos Blue
	Draw5PlayAll: FIRE!!

85) speardane: Discover G2 Minsky B3 Delos

86) Draw5PlayAll: Move G3 Something Delos
	Draw5PlayAll: (Of course. I forgot that the Y2 sac already blocked speardane from growing the Y3 instantly...)

87) speardane: Sacrifice G2 Delos
Build G1 Minsky
Build G2 Speardane

88) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R1 Earth
Build R2 Lebling
Build G3 Draw5playall

89) speardane: Discover G2 Minsky B1 Kotok

90) Draw5PlayAll: Trade G1 B1 Draw5playall

91) speardane: Discover G2 Speardane B1 Licklider

92) Draw5PlayAll: Move R2 Something Licklider

93) speardane: Move R3 Minsky Licklider

94) Draw5PlayAll: Sacrifice Y1 Lebling
Move R2 Licklider Minsky

95) speardane: Move Y1 Minsky Kotok

96) Draw5PlayAll: Attack G1 Minsky

97) speardane: Trade R3 Y3 Licklider

98) Draw5PlayAll: Sacrifice G3 Delos
Build Y1 Something
Build R3 Minsky
Build B3 Draw5playall
	Draw5PlayAll: Why is this so hard?!

99) speardane: Build G1 Licklider
	speardane: You tell me. I expected something irreversible to happen when you said "FIRE!!", but... :P

100) Draw5PlayAll: Build G3 Minsky
	Draw5PlayAll: The end is in sight!!
	Draw5PlayAll: 5 turns until my hopefully unstoppable Borg fleet invades.

101) speardane: Discover G2 Licklider Y2 Delos

102) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move R3 Minsky Kotok
Discover G3 Minsky Y1 Node

103) speardane: Sacrifice Y1 Kotok
Discover G2 Kotok Y2 Fritz

104) Draw5PlayAll: Sacrifice Y3 Earth
Move R3 Kotok Speardane
Move G3 Node Speardane
Move B3 Draw5playall Earth

105) speardane: Pass

106) Draw5PlayAll: Sacrifice R2 Lebling
Attack R3 Speardane
Attack G1 Speardane
	Draw5PlayAll: Checkmate

	speardane: Good game!
	Draw5PlayAll: Is that an automated thing that speardane does when checkmated?


35407)
Started: 2019.8.1, Ended: 2019.10.2
Participants: speardane (S), DodoBirb (N)
Winner: speardane

1) DodoBirb: Homeworld B1 R2 G3

2) speardane: Homeworld G3 B1 Y3
	DodoBirb: I assume a bot wouldn't play any differently whether or not it's a Homeworlds Tournament game but just to make sure, it's a Homeworlds Tournament game

3) DodoBirb: Build G1 Dodobirb
	speardane: Yep. Good luck!
	DodoBirb: Good Luck to you too!

4) speardane: Build Y1 Speardane

5) DodoBirb: Build G1 Dodobirb

6) speardane: Trade Y3 R3 Speardane

7) DodoBirb: Trade G1 B1 Dodobirb

8) speardane: Build Y1 Speardane

9) DodoBirb: Trade G1 Y1 Dodobirb

10) speardane: Discover Y1 Speardane G2 Delos

11) DodoBirb: Build Y2 Dodobirb

12) speardane: Build Y2 Delos

13) DodoBirb: Discover Y1 Dodobirb G3 Greeny

14) speardane: Move Y2 Delos Greeny

15) DodoBirb: Build B2 Dodobirb

16) speardane: Build Y2 Delos

17) DodoBirb: Build Y3 Dodobirb

18) speardane: Build Y3 Speardane

19) DodoBirb: Discover Y2 Dodobirb Y3 Sun

20) speardane: Discover Y3 Speardane G2 Lebling

21) DodoBirb: Move B2 Dodobirb Greeny

22) speardane: Sacrifice Y2 Delos
Move Y2 Greeny Lebling
Move Y3 Lebling Greeny

23) DodoBirb: Sacrifice Y1 Greeny
Discover B2 Greeny G2 Medgreen

24) speardane: Move Y3 Greeny Medgreen

25) DodoBirb: Discover Y3 Dodobirb G3 Greeny2

26) speardane: Build R1 Speardane

27) DodoBirb: Trade B2 R2 Medgreen

28) speardane: Sacrifice R1 Speardane
Attack R2 Medgreen

29) DodoBirb: Trade B1 R1 Dodobirb

30) speardane: Build Y1 Medgreen

31) DodoBirb: Build Y2 Greeny2

32) speardane: Sacrifice Y2 Lebling
Move Y1 Delos Greeny2
Move Y1 Medgreen Greeny2
Catastrophe Greeny2 Yellow

33) DodoBirb: Build G1 Dodobirb

34) speardane: Build Y1 Medgreen

35) DodoBirb: Trade G1 B1 Dodobirb

36) speardane: Discover Y3 Medgreen G3 Delos

37) DodoBirb: Build B2 Dodobirb

38) speardane: Build Y1 Delos

39) DodoBirb: Trade B2 Y2 Dodobirb

40) speardane: Discover Y3 Delos G2 Lebling

41) DodoBirb: Build B2 Dodobirb

42) speardane: Build Y2 Lebling

43) DodoBirb: Build Y3 Dodobirb

44) speardane: Sacrifice Y3 Lebling
Move Y1 Delos Dodobirb
Move Y2 Lebling Sun
Move Y2 Sun Dodobirb
Catastrophe Dodobirb Yellow

45) DodoBirb: Trade B2 Y2 Dodobirb

46) speardane: Build Y1 Medgreen

47) DodoBirb: Discover Y2 Sun G2 Forward

48) speardane: Build Y2 Medgreen

49) DodoBirb: Build Y3 Forward

50) speardane: Build Y3 Speardane

51) DodoBirb: Build Y3 Dodobirb

52) speardane: Trade Y3 B3 Speardane

53) DodoBirb: Discover Y2 Forward Y3 Sun

54) speardane: Sacrifice Y2 Medgreen
Move B3 Speardane Medgreen
Discover Y1 Medgreen G3 Delos

55) DodoBirb: Build Y2 Forward

56) speardane: Build R1 Medgreen

57) DodoBirb: Move Y3 Dodobirb Delos

58) speardane: Discover Y1 Delos G2 Lebling

59) DodoBirb: Build G1 Dodobirb

60) speardane: Trade R1 G1 Medgreen

61) DodoBirb: Sacrifice G3 Dodobirb
Build G1 Dodobirb
Build G3 Dodobirb
Build B2 Dodobirb

62) speardane: Discover G1 Medgreen B3 Kotok

63) DodoBirb: Move G1 Dodobirb Sun

64) speardane: Move Y1 Lebling Kotok

65) DodoBirb: Move Y2 Dodobirb Kotok

66) speardane: Move B3 Medgreen Kotok

67) DodoBirb: Sacrifice Y2 Kotok
Move B1 Dodobirb Kotok
Move B2 Dodobirb Kotok
Catastrophe Kotok B

68) speardane: Build Y1 Medgreen

69) DodoBirb: Build Y2 Delos

70) speardane: Discover Y1 Medgreen B3 Lebling

71) DodoBirb: Discover Y3 Delos G2 Attack

72) speardane: Trade Y1 G1 Lebling

73) DodoBirb: Trade G3 R3 Dodobirb

74) speardane: Build G3 Lebling

75) DodoBirb: Trade G1 B1 Dodobirb

76) speardane: Trade G1 Y1 Lebling

77) DodoBirb: Sacrifice Y2 Sun
Move B1 Dodobirb Sun
Move B1 Sun Attack

78) speardane: Build Y2 Lebling

79) DodoBirb: Trade R1 G1 Dodobirb

80) speardane: Trade Y2 R2 Lebling

81) DodoBirb: Trade Y3 R3 Attack

82) speardane: Build Y2 Lebling

83) DodoBirb: Sacrifice Y2 Delos
Move R3 Attack Speardane
Move Y3 Forward Speardane
	DodoBirb: I think I can force a win here. Hopefully your bot doesn't prove me wrong.

84) speardane: Sacrifice R2 Medgreen
Attack R3 Speardane
Attack Y3 Speardane

85) DodoBirb: Build Y2 Forward

86) speardane: Sacrifice Y2 Lebling
Move Y3 Speardane Forward
Move R3 Speardane Attack
	DodoBirb: well, that is what I call "redbird" mistake. Forgetting that your opponent has red ships that can be sacrificed

87) DodoBirb: Build Y2 Forward
Catastrophe Forward Y
	DodoBirb: I'm not that confident in winning this game anymore

88) speardane: Attack B1 Attack
	speardane: [ajo says:] I HAD been quietly wondering what your big plan was. ;)

89) DodoBirb: Build G1 Dodobirb
	Draw5PlayAll: Red bird? I would define it as the opposite mistake -- not having enough red and your opponent sends in large ships you cannot takeover

90) speardane: Build Y2 Lebling
	DodoBirb: I suppose that follows the "bird" mistake formula better

91) DodoBirb: Build G2 Dodobirb

92) speardane: Build G3 Lebling

93) DodoBirb: Trade G2 Y2 Dodobirb

94) speardane: Sacrifice G3 Lebling
Build Y2 Medgreen
Build Y3 Speardane
Build Y3 Medgreen

95) DodoBirb: Sacrifice G1 Sun
Build Y3 Dodobirb

96) speardane: Sacrifice Y3 Medgreen
Move Y1 Medgreen Lebling
Move Y1 Lebling Dodobirb
Move Y1 Lebling Dodobirb
Catastrophe Dodobirb Yellow

97) DodoBirb: Trade R3 Y3 Dodobirb

98) speardane: Move Y3 Speardane Attack

99) DodoBirb: Build Y1 Dodobirb

100) speardane: Build Y1 Attack

101) DodoBirb: Trade Y1 G1 Dodobirb

102) speardane: Discover Y3 Attack G3 Delos

103) DodoBirb: Discover G1 Dodobirb B3 Bluey

104) speardane: Build G2 Lebling

105) DodoBirb: Trade G1 Y1 Bluey

106) speardane: Sacrifice G2 Lebling
Build Y2 Delos
Build Y3 Attack

107) DodoBirb: Move G1 Dodobirb Bluey

108) speardane: Move Y3 Attack Bluey

109) DodoBirb: Sacrifice Y1 Bluey
Move G1 Bluey Dodobirb

110) speardane: Discover Y3 Delos G1 Kotok

111) DodoBirb: Build G2 Dodobirb

112) speardane: Discover Y2 Delos B2 Minsky

113) DodoBirb: Trade G1 R1 Dodobirb

114) speardane: Discover Y2 Minsky G1 Delos

115) DodoBirb: Build G3 Dodobirb

116) speardane: Move G3 Lebling Dodobirb
Catastrophe Dodobirb Green

117) DodoBirb: Trade R1 G1 Dodobirb

118) speardane: Trade Y3 G3 Bluey

119) DodoBirb: Trade Y3 G3 Dodobirb

120) speardane: Build Y1 Delos

121) DodoBirb: Trade G1 R1 Dodobirb

122) speardane: Move Y2 Delos Bluey

123) DodoBirb: Build G1 Dodobirb

124) speardane: Build Y3 Delos

125) DodoBirb: Pass

126) speardane: Build Y3 Delos

127) DodoBirb: Pass

128) speardane: Sacrifice Y3 Delos
Move R2 Lebling Dodobirb
Move R3 Attack Lebling
Move R3 Lebling Dodobirb
Catastrophe Dodobirb Red
	speardane: [ajo says:] One known weakness of speardane is that because it's greedily optimizing for "good position," it might just keep building up ships forever and never actually go for the kill. I mean, it might; but be aware that it's easily distracted by local maxima. If you're watching to see what its grand plan is to finish this game, I'll tell you right now that it doesn't have any grand plan!
	DodoBirb: right now I don't really see any move that isn't suicide so I guess I'll keep passing

129) DodoBirb: Pass

130) speardane: Move Y3 Delos Lebling
	DodoBirb: Good game

131) DodoBirb: Pass

132) speardane: Trade Y3 R3 Lebling

	speardane: [ajo says:] So are we reporting this as a win for speardane? Or are you still playing for the draw-by-Arthur-gets-bored?
	DodoBirb: let's just report this as a win
	Draw5PlayAll: I sense that there exists a way to easily check for mate-in-two situations, like "opponent has no red and I can move an R3 into their homeworld". That would allow the bot to win more easily.

Or just make an AlphaHomeworlds neural net.


35304)
Variants: "Hard time"
Started: 2019.8.2, Ended: 2019.8.5
Participants: Trydnt (S), MasterBri (N)
Winner: MasterBri

1) MasterBri: Homeworld B3 Y2 G1 *



35348)
Variants: "Hard time"
Started: 2019.8.6, Ended: 2019.9.24
Participants: bhorner (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G3 R1 B3
	Simon: Have fun! :-)

2) bhorner: Homeworld R1 B2 G3

3) Simon: Build B1 Simon
	bhorner: Thanks, you too!  :)

4) bhorner: Build G1 Bhorner

5) Simon: Trade B1 R1 Simon

6) bhorner: Build G1 Bhorner

7) Simon: Build R2 Simon

8) bhorner: Trade G1 Y1 Bhorner

9) Simon: Trade R2 Y2 Simon

10) bhorner: Build Y1 Bhorner

11) Simon: Build R2 Simon

12) bhorner: Discover Y1 Bhorner G3 Tree

13) Simon: Trade R2 G2 Simon

14) bhorner: Discover Y1 Tree Y1 Happy

15) Simon: Build Y2 Simon

16) bhorner: Sacrifice G3 Bhorner
Build Y2 Happy
Build Y3 Bhorner
Build Y3 Bhorner

17) Simon: Discover Y2 Simon B2 B2

18) bhorner: Sacrifice Y2 Happy
Discover Y1 Happy B2 Cloud
Discover Y1 Bhorner R3 Volcano

19) Simon: Move G2 Simon Cloud

20) bhorner: Trade Y3 R3 Bhorner

21) Simon: Build R2 Simon

22) bhorner: Build R2 Bhorner

23) Simon: Move R2 Simon Cloud

24) bhorner: Discover R2 Bhorner R3 Fire

25) Simon: Attack Y1 Cloud

26) bhorner: Discover Y3 Bhorner G3 Tree

27) Simon: Build Y1 Cloud

28) bhorner: Build G1 Bhorner

29) Simon: Build G1 Cloud

30) bhorner: Trade G1 B1 Bhorner

31) Simon: Build R2 Cloud

32) bhorner: Sacrifice B1 Bhorner
Trade R2 G2 Fire

33) Simon: Move Y1 Cloud Tree

34) bhorner: Discover Y3 Tree G2 Bush

35) Simon: Move G2 Cloud Volcano

36) bhorner: Move Y1 Volcano Bhorner

37) Simon: Move R2 Cloud Tree

38) bhorner: Move Y3 Bush Volcano

39) Simon: Sacrifice G2 Volcano
Build Y2 Tree
Build R2 Tree

40) bhorner: Move R3 Bhorner Tree

41) Simon: Build Y3 Cloud

	bhorner: I just got back from my trip last night... sorry about that.  There was so much going on that I completely forgot about the game!
	Simon: No problem. Looking forward to our tournament game!


35417)
Started: 2019.8.7, Ended: 2019.12.2
Participants: nycavri (S), Laurie_Menke (N)
Winner: Laurie_Menke

1) Laurie_Menke: Homeworld Y3 B1 G3
	Laurie_Menke: Alright, Avri, let's do this! I have two weeks until I leave for Burning Man. That should give you enough time to thoroughly trounce me.  :)  Have fun!  (And yes, I remember that I need to fill out the form.)

2) nycavri: Homeworld B3 Y2 G3
	Laurie_Menke: Ah, and the form reminded me to remind you that this is for the Great Homeworlds Tournament of 2019!  :)
	nycavri: Acknowledging that this is a 2019 Tournament game.
	nycavri: Acknowledging that this is a 2019 Tournament game.

3) Laurie_Menke: Build G1 Laurie_menke

4) nycavri: Build G1 Nycavri

5) Laurie_Menke: Trade G1 R1 Laurie_menke

6) nycavri: Trade G1 Y1 Nycavri

7) Laurie_Menke: Build G1 Laurie_menke

8) nycavri: Build G1 Nycavri

9) Laurie_Menke: Build R1 Laurie_menke

10) nycavri: Trade G1 R1 Nycavri

11) Laurie_Menke: Build R2 Laurie_menke
	nycavri: You're being awfully aggressive this year!

12) nycavri: Build R2 Nycavri
	Laurie_Menke: LOL! You know me. I don't have an aggressive bone in my body.  :)
	Laurie_Menke: But then again... if you're going to leave me a medium...

13) Laurie_Menke: Trade R2 Y2 Laurie_menke

14) nycavri: Build G1 Nycavri

15) Laurie_Menke: Build R2 Laurie_menke

16) nycavri: Build Y1 Nycavri

17) Laurie_Menke: Trade R1 B1 Laurie_menke

18) nycavri: Discover Y1 Nycavri G1 Deacon

19) Laurie_Menke: Build G2 Laurie_menke

20) nycavri: Discover Y1 Deacon G2 May

21) Laurie_Menke: Move R2 Laurie_menke May
	Laurie_Menke: I'm sorry for the long delay, Avri. :( Thanks for the gentle reminder. I was at Burning Man and forgot to tell you. That was sucky of me, and I'm very sorry.

22) nycavri: Discover Y1 May G3 Mercury
	nycavri: No problem - welcome back! Now, where were we?

23) Laurie_Menke: Move G2 Laurie_menke May

24) nycavri: Build Y1 Mercury

25) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G1 Laurie_menke
Build G2 May
Build G3 Laurie_menke

26) nycavri: Build Y2 Mercury

27) Laurie_Menke: Sacrifice B1 Laurie_menke
Trade G2 B2 May

28) nycavri: Discover Y1 Mercury B2 Taylor

29) Laurie_Menke: Trade G1 B1 Laurie_menke

30) nycavri: Move Y1 Mercury Taylor

31) Laurie_Menke: Move Y2 Laurie_menke Taylor

32) nycavri:
Build Y3 Mercury

33) Laurie_Menke: Build R1 May

34) nycavri: Move Y1 Taylor Laurie_menke
	nycavri: b y3 mercury

35) Laurie_Menke: Build R2 Laurie_menke

36) nycavri: Move Y1 Taylor Laurie_menke
	nycavri: Must have missed an email notification . . .

37) Laurie_Menke: Sacrifice G1 Laurie_menke
Build Y3 Taylor
	Laurie_Menke: No worries!  :)

38) nycavri: Sacrifice Y3 Mercury
Discover Y1 Nycavri B1 Edney
Move Y1 Edney Taylor
Move Y1 Taylor Laurie_menke
Catastrophe Laurie_menke Y

39) Laurie_Menke: Sacrifice Y2 Taylor
Move R1 Laurie_menke Nycavri
Move R2 Laurie_menke Nycavri
Catastrophe Nycavri R

40) nycavri: Trade G1 R1 Nycavri

41) Laurie_Menke: Sacrifice G2 May
Build G1 Laurie_menke
Build Y1 Taylor

42) nycavri: Build G1 Nycavri

43) Laurie_Menke: Trade B2 Y2 May
	nycavri: I'm back, I'm back!
	Laurie_Menke: Yay! :) Everything OK in your world?

44) nycavri: Trade G1 B1 Nycavri

45) Laurie_Menke: Move Y3 Taylor Laurie_menke
	nycavri: Sort of OK.  Buried my (96 year old) Grandma.  Layoffs at work.  I'm OK, it's just a lot . . .

Thanks for asking.
	Laurie_Menke: Oh, I'm very sorry. That's rough. Were you one of the ones laid off?

Wishing you and your family better times right around the corner!
Let me know if there's anything I can do to help.

46) nycavri: Build B2 Nycavri
	nycavri: Not laid off, but hours / salary cut.  Looking at it as an opportunity to write / publish.

47) Laurie_Menke: Move B1 Laurie_menke Nycavri
Catastrophe Nycavri Blue
	Laurie_Menke: That sounds fun! And during NaNoWriMo, too!

48) nycavri: Build Y1 Mercury

49) Laurie_Menke: Move Y2 May Mercury

50) nycavri: Build G1 Nycavri

51) Laurie_Menke: Sacrifice R2 May
Attack Y2 Mercury
Attack Y1 Mercury

52) nycavri: Move G1 Nycavri Laurie_menke

53) Laurie_Menke: Sacrifice Y3 Laurie_menke
Move Y2 Mercury Nycavri
Move Y2 Mercury Nycavri
Move Y1 Mercury Nycavri
Catastrophe Nycavri Yellow

	Laurie_Menke: No problem! Hope you had an awesome time!  :)
	Laurie_Menke: Sorry you came back to an empty Homeworld.  ;)  Thanks for the fun!  :)
	nycavri: I honestly thought I had you in mate a few moves back, realized at the last minute you had an out, and never really recovered . . .

Good game, and thanks for the fun!


35427)
Started: 2019.8.7, Ended: 2019.9.11
Participants: eliscinsky (S), Felix (N)
Winner: Felix

1) Felix: H R1 B3 G3

2) eliscinsky: Homeworld R1 B2 G3
	eliscinsky: This is for the Great Homeworlds Tournament 2019

3) Felix: Build G1 Felix
	Felix: Agreed! Good luck and have fun :)

4) eliscinsky: Build G1 Eliscinsky
	eliscinsky: Thanks U2!

5) Felix: Trade G1 R1 Felix

6) eliscinsky: Trade G1 Y1 Eliscinsky
	eliscinsky: Now THAT was an interesting move
	eliscinsky: you locked me out of red for a while. very clever.

7) Felix: Build R2 Felix

8) eliscinsky: Build G1 Eliscinsky
	Felix: Thanks! I hope I don't regret losing out on movement for a while though.
	eliscinsky: Haha! You can always trade.

9) Felix: Trade R2 Y2 Felix

10) eliscinsky: Build Y1 Eliscinsky
	Felix: Oh yeah! Thanks for reminding me :)

11) Felix: Build R2 Felix

12) eliscinsky: Build G1 Eliscinsky

13) Felix: D R2 Felix B2 Rim

14) eliscinsky: Trade G1 B1 Eliscinsky

15) Felix: S G3 Felix
B R2 Rim
B R2 Rim
B R3 Felix

16) eliscinsky: Discover B1 Eliscinsky G3 G3

17) Felix: T R3 G3 Felix

18) eliscinsky: Move Y1 Eliscinsky G3

19) Felix: S Y2 Felix
M R2 Rim G3
D R2 Rim B3 Mach7

20) eliscinsky: Build B1 G3

21) Felix: Sacrifice G3 Felix
Build R3 Mach7
Build R3 Felix
Build R3 G3

22) eliscinsky: Trade B1 G1 G3

23) Felix: Sacrifice R3 G3
Attack G1 G3
Attack Y1 G3
Attack B1 G3

24) eliscinsky: Trade G1 B1 Eliscinsky

25) Felix: Build R3 G3

26) eliscinsky: Build G1 Eliscinsky

27) Felix: Trade R3 Y3 G3

28) eliscinsky: Move G1 Eliscinsky G3

29) Felix: S G1 G3
B R3 G3

30) eliscinsky: Build G1 G3

31) Felix: Sacrifice Y3 G3
Move R3 Mach7 Eliscinsky
Move R3 G3 Eliscinsky
Pass

32) eliscinsky: Attack R3 Eliscinsky

33) Felix: Sacrifice R3 Felix
Attack R3 Eliscinsky
Attack G3 Eliscinsky
Attack B1 Eliscinsky

34) eliscinsky: Build G1 G3
Catastrophe G3 Green

35) Felix: A Y1 Eliscinsky
	eliscinsky: Sorry, I have not been getting SDG emails for some reason.

	eliscinsky: You were going to win anyway ... LOL
	Felix: Always fun to go out with a bang :) well played! Great game


35426)
Started: 2019.8.9, Ended: 2019.9.24
Participants: wil (S), eliscinsky (N)
Winner: wil

1) eliscinsky: Homeworld R1 B3 G3

2) wil: H Y2 B1 G3
	eliscinsky: This is for the Great Homeworlds Tournament 2019 
	wil: It has begun! 

3) eliscinsky: Build G1 Eliscinsky

4) wil: B G1 Wil

5) eliscinsky: Trade G1 Y1 Eliscinsky

6) wil: T G1 R1 Wil

7) eliscinsky: Build Y1 Eliscinsky
	wil: Have fun
	eliscinsky: Thanks ... You too! 

8) wil: B R1 Wil

9) eliscinsky: Discover Y1 Eliscinsky G2 G2win

10) wil: B R2 Wil

11) eliscinsky: Build G1 Eliscinsky

12) wil: D R2 Wil Y3 Y3

13) eliscinsky: Move Y1 G2win Eliscinsky

14) wil: B R2 Wil

15) eliscinsky: Build G1 Eliscinsky

16) wil: D R2 Wil B3 B3

17) eliscinsky: Trade G1 B1 Eliscinsky

18) wil: S G3 Wil
B R2 Y3
B R3 B3
B R3 Wil

19) eliscinsky: Discover G1 Eliscinsky Y2 Y2
	eliscinsky: Yikes!

20) wil: T R3 G3 Wil

21) eliscinsky: Build G1 Y2

22) wil: M R2 Y3 Y2

23) eliscinsky: Build G1 Eliscinsky
	wil: Our dept of defensive investigations has arrived
	wil: Pardon us for a short inspection.

24) wil: A G1 Y2

25) eliscinsky: Build G2 Y2

26) wil: B R3 Y2

27) eliscinsky: Build G2 Y2
Catastrophe Y2 Green

28) wil: T R3 G3 B3

29) eliscinsky: Build B1 Eliscinsky

30) wil: B R3 B3

31) eliscinsky: Build G1 Eliscinsky

32) wil: T R3 Y3 B3
	wil: I feel like a warmonger
	eliscinsky: Sorry, I have not been getting SDG emails for some reason.

33) eliscinsky: Discover G1 Eliscinsky Y2 Yellow2
	wil: No.worries

34) wil: S G3 B3
B G1 Wil
B R3 B3
B R3 B3
	eliscinsky: If a player were to create a 4th unit of a color [in a sector] and not call for a catastrophe, could the opponent call the catastrophe on their next turn?

35) eliscinsky: Build G2 Yellow2
	wil: Yes

36) wil: S Y3 B3
M R3 B3 Y2
M R3 Y2 Eliscinsky
M R3 Y2 Eliscinsky

37) eliscinsky: Attack R3 Eliscinsky

38) wil: S R2 B3
A R3 Eliscinsky
A G3 Eliscinsky
	eliscinsky: :D - And so it begins - :)

39) eliscinsky: Build B2 Eliscinsky

40) wil: C Eliscinsky B
S R3 B3
A G1 Eliscinsky
A Y1 Eliscinsky
A Y1 Eliscinsky
	wil: I could a prepped more...

	wil: Gg


35447)
Variants: "Hard time"
Started: 2019.8.12, Ended: 2019.9.30
Participants: Jerome (S), SilentTitan (N)
Winner: Jerome

1) SilentTitan: Homeworld R1 B2 G3

2) Jerome: Homeworld R3 B1 G3

3) SilentTitan: Build G1 Silenttitan

4) Jerome: Build G1 Jerome

5) SilentTitan: Trade G1 Y1 Silenttitan

6) Jerome: Trade G1 Y1 Jerome

7) SilentTitan: Build G1 Silenttitan

8) Jerome: Build G1 Jerome

9) SilentTitan: Trade G1 B1 Silenttitan

10) Jerome: Trade G1 B1 Jerome

11) SilentTitan: Build B2 Silenttitan

12) Jerome: Build B2 Jerome

13) SilentTitan: Discover B1 Silenttitan G3 Sol

14) Jerome: Discover B1 Jerome G2 Alpha

15) SilentTitan: Sacrifice G3 Silenttitan
Build B3 Silenttitan
Build B3 Sol
Build B3 Sol

16) Jerome: Sacrifice Y1 Jerome
Move B1 Alpha Sol
Catastrophe Sol B

17) SilentTitan: Trade B2 G2 Silenttitan

18) Jerome: Build B1 Jerome

19) SilentTitan: Build B1 Silenttitan

20) Jerome: Trade B1 Y1 Jerome

21) SilentTitan: Discover B1 Silenttitan G3 Soul

22) Jerome: Build Y1 Jerome

23) SilentTitan: Build B1 Silenttitan

24) Jerome: Discover Y1 Jerome G2 Alpha

25) SilentTitan: Trade B3 G3 Silenttitan

26) Jerome: Build Y2 Jerome

27) SilentTitan: Discover B1 Silenttitan Y3 Sole

28) Jerome: Discover Y1 Jerome G2 Vega

29) SilentTitan: Build G1 Silenttitan

30) Jerome: Build Y2 Jerome

	SilentTitan: Well played thanks for the game


35441)
Variants: "Hard time"
Started: 2019.8.12, Ended: 2019.8.28
Participants: bhorner (S), Laurie_Menke (N)
Winner: bhorner

1) Laurie_Menke: Homeworld B3 Y1 G3
	Laurie_Menke: Hi! Thanks for the challenge! I know this is a ladder game, but is it also part of the Great Homeworlds Challenge of 2019?

2) bhorner: Homeworld B1 R2 G3
	bhorner: I wasn't planning for it to be part of the tournament, are you in it?  I was just getting back into the game here at SDG and wanted extra practice for the tournament.  :)

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Gotcha. Yes, I am in the tournament, and that's fine if you just want to practice.  :)

4) bhorner: Build G1 Bhorner

5) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

6) bhorner: Trade G1 Y1 Bhorner
	Draw5PlayAll: For the record, I think tournament game clocks have to be 7/2/7 but ladder games are 3/3/10, so a game cannot really be both at once...

7) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Fair enough.

8) bhorner: Build Y1 Bhorner

9) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G1 Yellow
Build G2 Laurie_menke
Build G2 Yellow

10) bhorner: Discover Y1 Bhorner G3 Tree

11) Laurie_Menke: Trade G2 Y2 Laurie_menke

12) bhorner: Sacrifice G3 Bhorner
Build Y2 Tree
Build Y3 Tree
Build Y3 Bhorner
	Laurie_Menke: Sorry... forgot what I was doing for a minute...

	bhorner: No worries, that's why the option is there.  :)
	Laurie_Menke: ::sigh::  I'm sorry, bhorner. I know that's not how you wanted to win. I had really hoped to finish this game before going off grid for 10 days for Burning Man, but the week before that got extremely busy and I didn't even have time to warn you I'd be gone. I'm extremely sorry. :(
	bhorner: Oh burning man, that's cool!
No worries, it happens, we'll play in the tournament later.  :)
	Laurie_Menke: :) Thank you!


35449)
Started: 2019.8.13, Ended: 2019.9.10
Participants: bhorner (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	Babamots: To confirm, this game is for the tournament. Good luck!

2) bhorner: Homeworld B1 R3 G3
	bhorner: Cool, good luck to you too!  (you stole my homeworld setup by the way.... *grumble*)  :)

3) Babamots: Build G1 Babamots

4) bhorner: Build G1 Bhorner

5) Babamots: Trade G1 B1 Babamots

6) bhorner: Trade G1 Y1 Bhorner

7) Babamots: Build G1 Babamots

8) bhorner: Build Y1 Bhorner

9) Babamots: Trade G1 Y1 Babamots

10) bhorner: Build Y2 Bhorner

11) Babamots: Build Y2 Babamots

12) bhorner: Discover Y1 Bhorner G2 Bush

13) Babamots: Discover Y1 Babamots G3 Orion

14) bhorner: Trade Y1 B1 Bhorner

15) Babamots: Build B2 Babamots

16) bhorner: Build B2 Bhorner
	bhorner: I thought long and hard about that...  It really seemed like the best move, but it keeps us so similar to each other...
	Babamots: I expected to fight for blue control first, but at least we got around to it eventually.

Sorry to be so slow. I'm traveling and very distracted.

17) Babamots: Move B2 Babamots Orion
	bhorner: No worries, there are time controls.  I'm bound to be slow on you before the end.  :)
	bhorner: I don't see how I'll ever get ahead if I keep following you around...
	bhorner: But if I put myself behind, I won't get ahead either.  :)

18) bhorner: Move B1 Bhorner Bush

19) Babamots: Build B3 Orion

20) bhorner: Build B3 Bush
	Babamots: I don't much like long mirror sessions, but I think it's the best thing for you at the moment and I don't know of a good way to break it yet.

21) Babamots: Discover B3 Orion Y2 Iconia
	bhorner: I've been making moves just to keep the mirror alive, so you couldn't burst ahead.  :)  I'm sure something will happen to break it.  I wish it didn't feel so much like luck (possibly a little in your favor) who will have the advantage in that moment.

22) bhorner: Trade B3 R3 Bush
	bhorner: Maybe now.  Maybe it won't look like an advantage, just a choice.

23) Babamots: Discover B2 Orion G2 Betazed

24) bhorner: Build B3 Bush

25) Babamots: Build B3 Betazed

26) bhorner: Trade B3 Y3 Bush

27) Babamots: Trade B2 R2 Betazed

28) bhorner: Discover Y1 Bush B3 Puddle

29) Babamots: Sacrifice G3 Babamots
Build Y1 Orion
Build Y3 Orion
Build Y3 Babamots

30) bhorner: Sacrifice Y2 Bhorner
Move Y1 Puddle Betazed
Move Y1 Betazed Orion
Catastrophe Orion Y

31) Babamots: Build R1 Betazed
	bhorner: Really feels like I had no choice.  A small gain for you.

32) bhorner: Build Y1 Bush

33) Babamots: Build R1 Betazed

34) bhorner: Discover Y1 Bush G3 Tree

35) Babamots: Sacrifice Y2 Babamots
Move R1 Betazed Bhorner
Move B3 Betazed Bhorner

36) bhorner: Attack B3 Bhorner

37) Babamots: Sacrifice Y3 Babamots
Move R1 Betazed Bhorner
Move R2 Betazed Bhorner
Move B3 Iconia Bhorner
Catastrophe Bhorner R
Catastrophe Bhorner B

	Babamots: GG! Good luck in the tournament!

I wonder if my lonely little ship feels victorious...
	bhorner: Wow.  I'm so glad you won in a way i didn't see coming.  That was pretty spectacular.  :)
	Babamots: Glad you liked it. :-)

I suppose I prefer losing abruptly and unexpectedly. That kind of loss can show you something specific to look out for in the future. I feel more discouraged after those long drawn out games where I never make any headway and gradually get my life squeezed out.
	bhorner: Yeah, I never looked past one of the catastrophes.  I thought I kind of had no choice, but didn't realize it was over already.


35453)
Started: 2019.8.14, Ended: 2019.9.12
Participants: kataclysm (S), Felix (N)
Winner: Felix

1) Felix: Homeworld R1 B3 G3
	kataclysm: Can you read what I've typed here? Is this the box for communicating between players?
	Felix: Yep! You've got it. And you enter your commands for the game up top. This game is for the Homeworlds tournament! Good luck and have fun :)

2) kataclysm: Homeworld B2 G1 R3

3) Felix: Build G1 Felix
	kataclysm: Yes, for Homeworlds tournament. I have only played Homeworlds 3 times, but I really liked it. You will almost certainly end up winning! I'm just in this to have a good time and get practice. :)
	Felix: That's the best way to learn! I still lose a lot, but I lost probably my first 30 or so games on here, but it's always a win if you have fun and learn something and get a bit better every time. So have fun!

4) kataclysm: Build R1 Kataclysm

5) Felix: Trade G1 Y1 Felix

6) kataclysm: Trade R1 Y1 Kataclysm

7) Felix: Build G1 Felix

8) kataclysm: Trade R3 Y3 Kataclysm

9) Felix: B G1 Felix

10) kataclysm: Trade Y1 R1 Kataclysm
	Felix: One word of advice is to try and diversify the colors you have available. Trading all your red away for yellow leaves you with no red. Always better to build another red before you trade, so that you always have a red somewhere and don't lose that color. Make sense?

11) Felix: D G1 Felix B2 Rim
	kataclysm: I'm sure it will make more sense as I go along :)

12) kataclysm: Build Y1 Kataclysm

13) Felix: B G2 Rim

14) kataclysm: Build R1 Kataclysm

15) Felix: T G2 Y2 Rim

16) kataclysm: Build R2 Kataclysm

17) Felix: Build G2 Rim

18) kataclysm: Trade R1 B1 Kataclysm

19) Felix: Discover G2 Rim B3 Rom

20) kataclysm: Move R2 Kataclysm Rom
	kataclysm: I tried to fly my red medium ship to Rom by saying "move r2 Rom" and the game won't let me, saying "The system does not exist."
	Felix: You have to specify the system you're moving it from first. So "move r2 kataclysm rom". You can also shorten most commands to just the first letter. So you can say m r2 etc instead of move r2

21) Felix: S G2 Rom
B G2 Rim
B G2 Rim
	kataclysm: Thanks

22) kataclysm: Build R1 Kataclysm

23) Felix: Trade G2 R2 Rim

24) kataclysm: Build R2 Kataclysm

25) Felix: Discover G2 Rim B3 Ram

26) kataclysm: Move R2 Kataclysm Ram

27) Felix: Sacrifice R2 Rim
Attack R2 Ram
Pass

28) kataclysm: Trade R2 G2 Rom

29) Felix: Sacrifice G3 Felix
Build G2 Ram
Build G3 Rim
Build G3 Felix

30) kataclysm: Build R2 Kataclysm

31) Felix: Sacrifice G3 Felix
Build G3 Felix
Build G3 Ram
Build R2 Ram

32) kataclysm: Discover R1 Kataclysm Y3 Glorax

33) Felix: Trade G3 Y3 Ram

34) kataclysm: Build B1 Kataclysm

35) Felix: T G1 B1 Felix

36) kataclysm: Move B1 Kataclysm Glorax

37) Felix: Discover G1 Rim R3 Volcano

38) kataclysm: Discover B1 Kataclysm G3 Grassyknoll

39) Felix: M Y2 Rim Grassyknoll

40) kataclysm: Build B2 Grassyknoll

41) Felix: Sacrifice R2 Ram
Attack B2 Grassyknoll
Attack B1 Grassyknoll

42) kataclysm: Trade B1 G1 Glorax

43) Felix: Move G2 Ram Kataclysm

44) kataclysm: Attack G2 Kataclysm

45) Felix: Sacrifice Y2 Grassyknoll
Move G2 Ram Kataclysm
Move G1 Volcano Kataclysm
Catastrophe Kataclysm Green
	kataclysm: Welcome to my humble star-system.

46) kataclysm: Trade R1 G1 Kataclysm
	Felix: Why thank you! Oh dear...  but I seem to have overpopulated your system a bit. Oops!

47) Felix: Sacrifice Y3 Ram
Move B1 Grassyknoll Kataclysm
Move B2 Grassyknoll Kataclysm
Move B1 Felix Kataclysm
Catastrophe Kataclysm Blue
	kataclysm: This is why we can't have nice things!
	Felix: Oh dear, I seem to have done it again! 
Thanks for playing and I hope you had fun and learned some things! Feel free to challenge me outside of the tournament if you'd like to play more!
	kataclysm: Thanks for the game :)



35323)
Started: 2019.8.15, Ended: 2019.8.29
Participants: MobyNostromo (S), Owlman (N)
Winner: Owlman

1) Owlman: Homeworld Y2 B1 G3



35346)
Variants: "Hard time"
Started: 2019.8.15, Ended: 2019.8.28
Participants: Owlman (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H R3 B1 G3

2) Owlman: Homeworld B1 Y2 G3
	dlwillson: Thanks for the game! Good luck, and have fun!

3) dlwillson: B G1 Dlwillson

4) Owlman: Build G1 Owlman

5) dlwillson: T G1 B1 Dlwillson

6) Owlman: Discover G1 Owlman B3 Hoth

7) dlwillson: B B2 Dlwillson

8) Owlman: Build G1 Hoth

9) dlwillson: T B2 Y2 Dlwillson

10) Owlman: Trade G1 Y1 Hoth

11) dlwillson: B B2 Dlwillson

12) Owlman: Build Y1 Hoth

13) dlwillson: D B1 Dlwillson G2 Field

14) Owlman: Trade Y1 R1 Hoth

15) dlwillson: B B2 Field

16) Owlman: Move R1 Hoth Field

17) dlwillson: T B2 R2 Field



35459)
Variants: "Hard time"
Started: 2019.8.15, Ended: 2019.8.18
Participants: wil (S), Felix (N)
Winner: Felix

1) Felix: Homeworld B1 Y2 G3

2) wil: H G3 B1 B3 *
	wil: Should we make it a tournament game?

3) Felix: Build G1 Felix
	Felix: If you'd like to, sure! Let's do it :) Ahem... this is for the Great Homeworlds Tournament 2019. Agreed?

4) wil: B B1 Wil
	wil: Oopsthe setup requirements don't match, I'm good tho

5) Felix: Build G1 Felix
	Felix: It works for me. I won't let this one time out ;)

6) wil: T B3 Y3 Wil
	Felix: I"m not too excited about your opening though... I never know how to counter this.
	wil: We can hold off if you choose

7) Felix: Discover G1 Felix B3 Mach7
	Felix: Nope! I'm game to make it a tournament game. I'm a fan of using any opening that seems the most effective, no matter the setting. It's one of the ways you can make up a bit for having to move second.

8) wil: B B2 Wil
	wil: I.enjoy experimenting with weird openings

9) Felix: Build G1 Mach7

10) wil: D B2 Wil G2 G2

11) Felix: B G2 Mach7
	wil: Another fine mess you've gotten me into!

12) wil: T B2 G2 G2

13) Felix: T G2 Y2 Mach7

14) wil: B B2 Wil
	Felix: I would've gotten away with it it too, if it weren't for your meddling green!

15) Felix: D G1 Mach7 B2 Mach5

16) wil: D B1 Wil G2 Gtoo
	wil: I am in such trouble!

17) Felix: S G3 Felix
B G3 Felix
B G3 Mach5
B Y1 Mach7

18) wil: B B2 Wil

19) Felix: T G3 B3 Mach5
	Felix: You are in a bit of it, for sure! Any regrets about suggesting this be a tournament game? :) It's never over till it's over though.

20) wil: B G3 G2

21) Felix: S Y2 Mach7
M B3 Mach5 Wil
M G1 Mach5 Wil
C Wil Blue

22) wil: S B1 Gtoo
T G2 B2 G2

23) Felix: S G3 Felix
B G2 Wil
B G2 Wil
B G3 Felix
C Wil Green

	wil: Gg
	Felix: Good game!


35385)
Variants: "Hard time"
Started: 2019.8.15, Ended: 2019.8.28
Participants: wil (S), Owlman (N)
Winner: wil

1) Owlman: Homeworld G3 B2 R3

2) wil: H Y2 B1 G3
	wil: Thx for the challenge! Is this a tourney game?

3) Owlman: Build R1 Owlman

4) wil: B G1 Wil

5) Owlman: Trade R1 Y1 Owlman

6) wil: T G1 B1 Wil

7) Owlman: Build R1 Owlman

8) wil: B B1 Wil

9) Owlman: Trade R3 G3 Owlman

10) wil: D B1 Wil Y3 Y3

11) Owlman: Discover R1 Owlman R1 Red

12) wil: B B2 Wil

13) Owlman: Move Y1 Owlman Red

14) wil: D B2 Wil Y3 Why3

15) Owlman: Move R1 Red Y3

16) wil: D B1 Y3 R1 R1

17) Owlman: Build G1 Owlman

18) wil: S G3 Wil
B B2 Why3
B B3 R1
B B3 Wil



35361)
Variants: "Unrated"
Started: 2019.8.15, Ended: 2020.9.5
Participants: wil (S), arkayy (N)
Winner: wil

1) arkayy: Homeworld R1 B2 G3

2) wil: H B3 Y2 G3
	wil: Thx for the game? For the tourney?

3) arkayy: Build G1 Arkayy

4) wil: B G1 Wil
	arkayy: New to Homeworlds. Thanks for being my first on SDG. What tourney?
	wil: If new would be trouble, but an online tourney 

5) arkayy: Trade G1 B1 Arkayy
	wil: Good luck, have you got pyramids?

6) wil: T G1 R1 Wil
	arkayy: I bought the box recently, yes
	wil: Cool

7) arkayy: Trade B1 Y1 Arkayy

8) wil: B R1 Wil

9) arkayy: Build Y1 Arkayy

10) wil: D R1 Wil Y1 Y1

11) arkayy: Build Y2 Arkayy

12) wil: B R2 Wil

13) arkayy: Discover Y1 Arkayy B3 Bark
	wil: Lol, yeah that was unintentional!

14) wil: D R1 Y1 Y3 Y3

15) arkayy: Move Y1 Arkayy Bark

16) wil: D R1 Wil B1 B1

17) arkayy: Build G1 Arkayy

18) wil: S G3 Wil
B R2 B1
B R2 Y3
B R3 Wil

19) arkayy: Trade Y1 G1 Bark

20) wil: T R3 G3 Wil
	wil: So your first lesson is on resource domination...
	arkayy: nice move. I did not see that coming

	wil: Monopoly of any resource is an issue.


35466)
Started: 2019.8.17, Ended: 2019.9.25
Participants: goulo (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G3 R1 B3
	Simon: Hi, thanks for the challenge and good luck. :-) This game will count for the Great Homeworlds Tournament of 2019.

2) goulo: Homeworld G1 B2 Y3

3) Simon: Build B1 Simon
	goulo: Hi, sorry for the delay -- I didn't realize the game had started since I got no email from SDG! :/
	Simon: No prob! We're so early in the tourney.

4) goulo: Build Y1 Goulo

5) Simon: Build B1 Simon

6) goulo: Build Y1 Goulo

7) Simon: Trade B3 Y3 Simon
	goulo: a poor man's bookmark for future reference:
https://jpeterbaker.github.io/homeworlds/tournament/links2019.html
:)

8) goulo: Trade Y1 R1 Goulo

9) Simon: Build B1 Simon
	goulo: Are you getting email notifications from SDG lately?
Lately I have not been; I'm unsure whether it's just me, or if others have the problem too.
	Simon: Hmm, I've gotten emails for the challenge, for the beginning of the game, and for my turns. All boxes are checked in my SDG profile, and I haven't changed the email address in the SDG profile in several years.

10) goulo: Build R1 Goulo

11) Simon: Discover B1 Simon G2 G2
	goulo: Strange; so I must investigate this email mystery further... :/

12) goulo: Discover R1 Goulo Y3 Flavego

13) Simon: Build B2 G2

14) goulo: Build R2 Goulo

15) Simon: Trade B2 R2 G2

16) goulo: Build Y1 Goulo

17) Simon: Build B2 G2

18) goulo: Trade R1 G1 Goulo

19) Simon: Build B2 Simon

20) goulo: Discover Y1 Goulo G3 Verdego

21) Simon: Build B3 G2

22) goulo: Build Y1 Verdego

23) Simon: Trade B2 Y2 G2

24) goulo: Trade R2 B2 Goulo

25) Simon: Build B3 G2

26) goulo: Move B2 Goulo Verdego

27) Simon: Move B3 G2 Verdego

28) goulo: Sacrifice Y1 Verdego
Discover B2 Verdego Y2 Flavo

29) Simon: Build B3 Verdego

30) goulo: Move B2 Flavo Simon
Catastrophe Simon B

31) Simon: Trade B3 R3 Verdego

32) goulo: Discover Y1 Verdego G2 Verdo

33) Simon: Sacrifice Y2 G2
Move B3 Verdego Goulo
Move R3 Verdego Goulo

34) goulo: Sacrifice R1 Flavego
Attack R3 Goulo

35) Simon: Sacrifice R2 G2
Attack R3 Goulo
Attack Y3 Goulo

	goulo: congrats!
	Simon: Thanks for the game!


35476)
Started: 2019.8.20, Ended: 2019.9.13
Participants: Felix (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3
	ts52: This is for the 2019 tournament

2) Felix: H B1 Y3 G3
	ts52: Have a good game!
	Felix: Agreed. Have fun!

3) ts52: Build G1 Ts52

4) Felix: B G1 Felix

5) ts52: Trade G1 B1 Ts52

6) Felix: Trade G1 B1 Felix

7) ts52: Build B2 Ts52

8) Felix: Build B2 Felix

9) ts52: Discover B2 Ts52 G3 Kermit

10) Felix: D B1 Felix G2 Range

11) ts52: Sacrifice G3 Ts52
Build B3 Ts52
Build B3 Kermit
Build B3 Kermit

12) Felix: Build G1 Felix

13) ts52: Trade B1 G1 Ts52

14) Felix: Trade G1 Y1 Felix

15) ts52: Trade B2 Y2 Kermit

16) Felix: Build G1 Felix

17) ts52: Trade B3 R3 Kermit

18) Felix: T G1 R1 Felix

19) ts52: Move R3 Kermit Range

20) Felix: Build Y1 Felix

21) ts52: Build Y2 Kermit

22) Felix: Discover Y1 Felix G2 Rip

23) ts52: Attack B1 Range

24) Felix: B Y2 Rip

25) ts52: Move Y2 Kermit Range

26) Felix: Discover Y1 Rip G3 Fort

27) ts52: Build Y3 Kermit

28) Felix: B Y3 Fort

29) ts52: Build B1 Kermit

30) Felix: Move B2 Felix Rip

31) ts52: Trade B3 R3 Ts52

32) Felix: T B2 R2 Rip

33) ts52: Build B2 Range

34) Felix: Build R1 Rip

35) ts52: Build B2 Range

36) Felix: D R2 Rip B3 Sploosh

37) ts52: Trade B3 R3 Kermit

38) Felix: Build G1 Felix

39) ts52: Move R3 Kermit Rip

40) Felix: Build R1 Rip

41) ts52: Attack Y2S Rip

42) Felix: Build R2 Rip
Catastrophe Rip Red

43) ts52: Sacrifice Y2 Kermit
Move Y2 Rip Felix
Move Y2 Range Felix
Catastrophe Felix Yellow

44) Felix: Trade G3 Y3 Felix

45) ts52: Sacrifice Y3 Kermit
Move B1 Kermit Felix
Move B1 Range Felix
Move B2 Range Felix
Catastrophe Felix Blue
	Felix: Very well played! I struggled from the start on this one.
	ts52: Thanks. Thanks for the game.



35478)
Variants: "Hard time"
Started: 2019.8.20, Ended: 2019.9.17
Participants: dlwillson (S), Felix (N)
Winner: Felix

1) Felix: H Y1 B3 G3

2) dlwillson: H B3 Y2 G3 Dlwillson
	Felix: Hey thar... :) Have fun!

3) Felix: B G1 Felix
	dlwillson: Yay! Good to play with you again!

4) dlwillson: B G1 Dlwillson
	Felix: Likewise! I've been too busy to play much, so don't expect too much of a challenge here :P

5) Felix: T G1 Y1 Felix

6) dlwillson: T G1 Y1 Dlwillson

7) Felix: Build Y2 Felix

8) dlwillson: B Y2 Dlwillson

9) Felix: Discover Y1 Felix G2 Flower

10) dlwillson: D Y1 Dlwillson G1 Field

11) Felix: Build Y3 Flower

12) dlwillson: B Y3 Field

13) Felix: Move Y1 Flower Field

14) dlwillson: D Y3 Field B2 Sky

15) Felix: B Y3 Flower

16) dlwillson: T Y2 R2 Dlwillson

17) Felix: Trade Y2 R2 Felix

18) dlwillson: B Y2 Field

19) Felix: Build Y2 Field
Catastrophe Field Yellow

20) dlwillson: T Y3 G3 Sky

21) Felix: Build G1 Felix

22) dlwillson: B G1 Dlwillson

23) Felix: Trade G1 B1 Felix

24) dlwillson: D G1 Dlwillson B1 Sea

25) Felix: Move B1 Felix Flower

26) dlwillson: B G1 Sky

27) Felix: Build B1 Flower

28) dlwillson: B G1 Dlwillson

29) Felix: B G2 Felix

30) dlwillson: T G3 Y3 Sky

31) Felix: Discover B1 Flower G3 Flan

32) dlwillson: S G3 Dlwillson
B G2 Sky
B R1 Dlwillson
B G3 Dlwillson

33) Felix: S G3 Felix
B G3 Felix
B B2 Flower
B B2 Flower

34) dlwillson: M G2 Sky Felix

35) Felix: Trade G3 R3 Felix

36) dlwillson: S G3 Dlwillson
B Y1 Sky
B G3 Sea
B G3 Dlwillson

37) Felix: Build B3 Flan

38) dlwillson: S G2 Felix
B G2 Sea
B Y1 Sky

39) Felix: Sacrifice Y3 Flower
Move Y3 Flower Felix
Move Y3 Felix Sky
Catastrophe Sky Yellow
Discover B2 Flower Y1 Hall

40) dlwillson: T G1 Y1 Sea

41) Felix: Trade B3 Y3 Flan

42) dlwillson: S G3 Sea
B Y2 Sea
B G1 Sea
B G3 Sky

43) Felix: Build B3 Flan

44) dlwillson: M Y1 Sea Sky

45) Felix: Move B3 Flan Sea

46) dlwillson: S Y2 Sea
M R2 Dlwillson Hall
D G2 Sea Y3 Sol

47) Felix: Sacrifice R2 Felix
Attack R2 Hall
Attack G1 Sea

48) dlwillson: T G1 R1 Sky

49) Felix: Build Y2 Flan
	dlwillson: Huh. I could'a sworn that was a small blue. Oh well.
	dlwillson: Huh. I could'a sworn that was a small blue. Oh well.
	dlwillson: Huh. I could'a sworn that was a small blue. Oh well.
	dlwillson: /me impatiently smaps the send button, wondering why it's not doing anything...
	dlwillson: *spams

50) dlwillson: S G3 Dlwillson
B G1 Sky
B Y2 Sky
B G3 Dlwillson

51) Felix: M Y2 Flan Sea
	Felix: Haha, I've done both of those things too many times! (Misjudged a piece size and mashed the send button)

52) dlwillson: D G1 Sky Y3 Alsosol

53) Felix: M B1 Flan Hall

54) dlwillson: S G3 Dlwillson
B R1 Dlwillson
B R2 Sky
B G3 Dlwillson

55) Felix: S G2 Felix
B G2 Sea
B R2 Hall

56) dlwillson: M G3 Sky Hall

57) Felix: M R2 Hall Alsosol

58) dlwillson: S R2 Sky
A R2 Hall
A B2 Hall

59) Felix: Sacrifice Y3 Flan
Move G1 Sea Dlwillson
Move G2 Sea Dlwillson
Catastrophe Dlwillson Green
Move B3 Sea Dlwillson

60) dlwillson: M B2 Hall Dlwillson

61) Felix: Sacrifice Y2 Sea
Move B1 Flower Felix
Discover B2 Flower B1 Sea

62) dlwillson: S G3 Hall
B R2 Dlwillson
B R3 Hall
B Y2 Sky
	Felix: ... Check? (He said with fragile hope shining in his eyes)
	dlwillson: I'm pretty sure that's game, but I'm trying to find some time to sit down and give it some deep thought. I sure wish you didn't have that y2...

63) Felix: Sacrifice R2 Alsosol
Attack R2 Dlwillson
Attack B2 Dlwillson
	dlwillson: I'm pretty sure you'll win, but not completely sure yet.

	dlwillson: I'm tempted to run it out, because it's pretty, but then there's nothing for readers to think about. This was a good game! Thanks!
	Felix: It was! Thanks for playing as always! Looking forward to the next one.


35470)
Variants: "Hard time"
Started: 2019.8.21, Ended: 2019.9.16
Participants: Simon (S), wil (N)
Winner: Simon

1) wil: H Y2 B1 G3
	Simon: It is time again. Have fun!

2) Simon: Homeworld B1 G3 B3 *
	wil: Is this tourney? Or funsies
	Simon: Not a tournament game. This is as funsies as a first-place ladder match is allowed to be.

3) wil: B G1 Wil
	wil: To infinity and beyond

4) Simon: Build B1 Simon
	Draw5PlayAll: I missed the chance to fight for #1... again...

5) wil: B G1 Wil

6) Simon: Trade B3 Y3 Simon

7) wil: D G1 Wil B3 B3

8) Simon: Build B2 Simon

9) wil: B G1 Wil

10) Simon: Trade B2 G2 Simon

11) wil: D G1 Wil Y3 Y3

12) Simon: Discover G2 Simon Y2 Y2

13) wil: M G1 Y3 Y2

14) Simon: Build B2 Simon

15) wil: B G2 Y2

16) Simon: Trade B2 R2 Simon

17) wil: S G3 Wil
B G2 Y2
B G3 Wil
B G3 B3
C Y2 G

18) Simon: Build B2 Simon

19) wil: T G1 R1 B3

20) Simon: Discover B1 Simon G2 G2

21) wil: B G1 B3

22) Simon: Build B2 G2

23) wil: T G1 Y1 B3

24) Simon: Build B2 Simon

25) wil: B G1 B3

26) Simon: Build B3 G2

27) wil: B G1 B3 G2

28) Simon: Trade B3 Y3 G2

29) wil: T G3 Y3 B3

30) Simon: Build B3 G2

31) wil: B G2 B3

32) Simon: Discover B3 G2 R3 R3

33) wil: M G1 B3 G2

34) Simon: Move Y3 G2 R3

35) wil: S G3 Wil
B G2 Wil
B G3 Wil
B G3 B3

36) Simon: Build B3 G2

37) wil: M G2 B3 G2

38) Simon: Sacrifice Y3 R3
Move B3 G2 B3
Move B3 R3 Wil
Discover B2 Simon Y2 Y2

39) wil: S R1 B3
A B3 Wil

40) Simon: Sacrifice R2 Simon
Attack Y3 B3
Attack G3 B3
	wil: Nice!!
	wil: Whew not another tourney loss!

41) wil: T G2 R2 Wil

42) Simon: Trade B3 R3 B3
	Simon: Thanks. It was the only promising move.

43) wil: S G3 Wil
B G2 G2
B R1 Wil
B G3 Wil
C G2 G

44) Simon: Attack Y1 B3

45) wil: B G1 B3

46) Simon: Sacrifice G3 B3
Build B1 Simon
Build B2 Y2
Build B3 Y2

47) wil: B G2 B3

48) Simon: Trade B3 R3 Y2

49) wil: D B3 Wil G3 G3

50) Simon: Trade B2 G2 Y2

51) wil: T G2 Y2 B3
	wil: This is another fine mess I've gotten me into.

52) Simon: Sacrifice R3 Y2
Attack G1 B3
Attack G1 B3
Attack Y2 B3

53) wil: D G1 Wil Y3 Y3

54) Simon: Build G2 B3

55) wil: M R1 Wil G3

56) Simon: Sacrifice Y3 B3
Move G1 B3 Wil
Move G1 B3 Wil
Move G2 B3 Wil
Catastrophe Wil Green

57) wil: B G1 Y3

58) Simon: Move R3 B3 Wil

59) wil: S G1 Y3
B R1 Wil
	wil: Nice!

60) Simon: Sacrifice G2 Y2
Build R1 Wil
Pass
Catastrophe Wil Red
	Simon: Thanks! I wouldn't have taken your 3 greens; only after 1 of the 3 became yellow, taking 3 ships was the clearest route.

	wil: Gg
	Simon: GG, thanks!


35475)
Started: 2019.8.21, Ended: 2019.9.11
Participants: Felix (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G3 R1 B3
	Simon: Thanks for the challenge, have fun! This game counts for the Great Homeworlds Tournament 2019.

2) Felix: H B1 Y2 G3
	Felix: Agreed. Have fun! :)

3) Simon: Build B1 Simon

4) Felix: Build G1 Felix

5) Simon: Build B1 Simon

6) Felix: Build G1 Felix

7) Simon: Trade B3 Y3 Simon

8) Felix: Discover G1 Felix B3 Rim

9) Simon: Discover B1 Simon G2 G2

10) Felix: B G1 Felix

11) Simon: Build B2 G2

12) Felix: S G3 Felix
B G2 Rim
B G2 Rim
B G3 Felix

13) Simon: Build B2 G2

14) Felix: D G1 Felix B3 Range

15) Simon: Trade B2 Y2 G2

16) Felix: Build G3 Range

17) Simon: Build B2 Simon

18) Felix: Trade G3 Y3 Range

19) Simon: Discover B1 G2 G3 G3

20) Felix: Trade G1 R1 Felix

21) Simon: Build B2 G3

22) Felix: S G2 Rim
B G1 Felix
B G2 Range

23) Simon: Build B3 G3

24) Felix: Move Y3 Range G2

25) Simon: Trade B3 R3 G3

26) Felix: Discover Y3 G2 B3 Bloop

27) Simon: Trade B2 Y2 G3

28) Felix: Trade G2 B2 Range

29) Simon: Build Y1 G2

30) Felix: Sacrifice G3 Felix
Build G2 Range
Build G3 Felix
Build Y1 Bloop

31) Simon: Build Y1 G3

32) Felix: D G1 Felix Y3 Cheese

33) Simon: Move B2 G2 Cheese

34) Felix: Sacrifice G2 Range
Build G2 Felix
Build R1 Felix

35) Simon: Build R2 G3

36) Felix: Discover G1 Cheese R2 Volc

37) Simon: Move B1 Simon G2

38) Felix: Move R1 Felix Range

39) Simon: Move B1 G2 Cheese

40) Felix: Sacrifice G3 Felix
Build G3 Felix
Build R2 Range
Build R3 Felix

41) Simon: Move Y1 G2 Cheese

42) Felix: Move R3 Felix Cheese

43) Simon: Sacrifice Y2 G2
Move B1 Cheese Felix
Move B2 Cheese Felix

44) Felix: Attack Y1 Cheese

45) Simon: Build Y2 G3

46) Felix: Sacrifice G3 Felix
Build G2 Volc
Build G3 Felix
Build R3 Cheese

47) Simon: Sacrifice Y2 G3
Move B1 G3 Felix
Move Y2 G3 Felix

48) Felix: A Y2 Felix
C Felix Blue

49) Simon: Move Y3 Simon Felix

50) Felix: S Y2 Felix
M G2 Volc Simon
M G1 Range Felix

51) Simon: Sacrifice R3 G3
Attack G2 Simon
Attack G3 Felix
Attack R1 Felix

52) Felix: Sacrifice Y3 Bloop
Move R3 Cheese Felix
Move R3 Felix Simon
Move R3 Cheese Felix

53) Simon: Sacrifice G3 Felix
Build Y2 Felix
Build Y2 Felix
Build Y3 Felix
Catastrophe Felix Yellow

	Felix: Well played!
	Simon: Thanks for the game!


35460)
Started: 2019.8.23, Ended: 2019.8.26
Participants: visitor338 (S), MobyNostromo (N)
Winner: visitor338



35492)
Variants: "Hard time"
Started: 2019.8.29, Ended: 2019.9.25
Participants: bhorner (S), agentofchaos (N)
Winner: agentofchaos

1) agentofchaos: Homeworld Y1 B2 G3

2) bhorner: Homeworld Y1 G2 Y3 *
	agentofchaos: Hi have fun

3) agentofchaos: Build G1 Agentofchaos
	bhorner: You too, we'll see how this goes.  :)

4) bhorner: Build Y1 Bhorner

5) agentofchaos: Build G1 Agentofchaos

6) bhorner: Discover Y1 Bhorner G3 Tree

7) agentofchaos: Discover G1 Agentofchaos Y3 Shadowverse

8) bhorner: Build Y2 Bhorner

9) agentofchaos: Build G1 Shadowverse
	bhorner: I guess that was a little over aggressive, picking the same sizes... but I _like_ those sizes.  :)
	bhorner: I forgot so many pieces of this...  oh well.  :)

10) bhorner: Build Y2 Tree

11) agentofchaos: Sacrifice G3 Agentofchaos
Build G2 Shadowverse
Build G2 Agentofchaos
Build G3 Agentofchaos

12) bhorner: Discover Y2 Bhorner B3 Avalanche

13) agentofchaos: Trade G1 R1 Agentofchaos

14) bhorner: Trade Y2 R2 Avalanche

15) agentofchaos: Trade G2 Y2 Agentofchaos

16) bhorner: Discover Y1 Tree B2 Blizzard

17) agentofchaos: B G1 Agentofchaos

18) bhorner: Build Y2 Tree

19) agentofchaos: Discover G1 Agentofchaos Y3 Kakrafoon

20) bhorner: Trade Y1 B1 Blizzard

21) agentofchaos: Build G2 Agentofchaos

22) bhorner: Sacrifice B1 Blizzard
Trade Y2 B2 Tree

23) agentofchaos: Sacrifice G3 Agentofchaos
Build G3 Agentofchaos
Build R1 Agentofchaos
Build G3 Kakrafoon

24) bhorner: Build B1 Tree

25) agentofchaos: Sacrifice Y2 Agentofchaos
Discover G3 Kakrafoon R2 Terrorverse
Move G3 Terrorverse Tree

26) bhorner: Sacrifice Y2 Tree
Move B2 Tree Bhorner
Discover B1 Tree Y1 Sparkle

27) agentofchaos: Trade G2 Y2 Agentofchaos

28) bhorner: Build Y2 Bhorner

29) agentofchaos: Move Y2 Agentofchaos Tree

30) bhorner: Trade Y3 R3 Bhorner

31) agentofchaos: Build Y2 Tree



35496)
Started: 2019.8.31, Ended: 2019.9.25
Participants: Babamots (S), goulo (N)
Winner: Babamots

1) goulo: Homeworld G3 B1 Y3

2) Babamots: Homeworld G2 B1 B3 *
	goulo: hi, have fun! "This game will count for the Great Homeworlds Tournament of 2019." and all that jazz. :)
	Babamots: Sounds good. Good luck!

3) goulo: Build Y1 Goulo
	Babamots: Since you got the first move, could you fill out the start-game form please?

4) Babamots: Build B1 Babamots
	goulo: ah, yes -- done!
	goulo: a poor man's bookmark for future reference:
https://jpeterbaker.github.io/homeworlds/tournament/links2019.html
:)

5) goulo: Build Y1 Goulo

6) Babamots: Trade B3 Y3 Babamots
	goulo: Are you getting email notifications from SDG lately?
Lately I have not been; I'm unsure whether it's just me, or if others have the problem too.
	Babamots: I only noticed it today, but I think it's been a few days since I got a notice.
	Babamots: Wait, just as I hit sent, I heard my SDG alert on my phone. I wonder if my chat flushed a buffer somewhere...

7) goulo: Discover Y1 Goulo G2 Verdo

8) Babamots: Build B2 Babamots

9) goulo: Build Y1 Verdo

10) Babamots: Build Y2 Babamots

11) goulo: Build Y2 Verdo

12) Babamots: Discover Y2 Babamots G3 Orion

13) goulo: Trade Y1 R1 Goulo

14) Babamots: Move Y2 Orion Verdo
Catastrophe Verdo Y

15) goulo: Build Y1 Goulo

16) Babamots: Discover B2 Babamots G3 Genesis

17) goulo: Build R1 Goulo

18) Babamots: Build B2 Genesis

19) goulo: Discover R1 Goulo Y2 Flavo

20) Babamots: Build B2 Babamots

21) goulo: Build R1 Goulo

22) Babamots: Build B3 Genesis

23) goulo: Build R2 Goulo

24) Babamots: Trade B3 R3 Genesis

25) goulo: Trade R1 G1 Goulo

26) Babamots: Build B3 Genesis

27) goulo: Build G1 Goulo

28) Babamots: Trade B3 Y3 Genesis

29) goulo: Move R1 Goulo Flavo

30) Babamots: Build B3 Genesis

31) goulo: Discover G1 Goulo Y2 Flavo2

32) Babamots: Move B3 Genesis Flavo2

33) goulo: Discover G1 Flavo2 Y1 Flaveto

34) Babamots: Build B3 Genesis

35) goulo: Build G1 Flaveto

36) Babamots: Move B2 Genesis Flavo2

37) goulo: Build G2 Goulo

38) Babamots: Trade B3 G3 Flavo2

39) goulo: Sacrifice G1 Goulo
Build G1 Flaveto

40) Babamots: Move R3 Genesis Flaveto

41) goulo: Move G1 Flaveto Genesis

42) Babamots: Discover B3 Genesis G2 Risa

43) goulo: Move G1 Flaveto Genesis

44) Babamots: Move Y3 Genesis Flavo

	goulo: thanks and congrats; I should have resigned long ago after falling so ridiculously far behind...
	Babamots: No problem. Thanks for the game! Good luck in the tournament!


35503)
Started: 2019.9.6, Ended: 2019.11.2
Participants: Draw5PlayAll (S), Laurie_Menke (N)
Winner: Draw5PlayAll

1) Laurie_Menke: Pass
	Laurie_Menke: Hi D5PA! Thanks for the invitation! I'll go fill out the tournament paperwork!  :)

2) Draw5PlayAll: Pass
	Draw5PlayAll: Oh dear...

3) Laurie_Menke: Homeworld B1 Y2 G3
	Draw5PlayAll: I've always wondered what happens if both sides pass successively.
	Laurie_Menke: Apparently nothing!

4) Draw5PlayAll: Homeworld B1 G3 B3 *
	Draw5PlayAll: Nice to know I did not just lose immediately for not having a homeworld. Heck I could probably just never create one and you would never win...

5) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: I doubt that. I'm pretty sure that if either of us passes twice in a row they forfeit.

6) Draw5PlayAll: Build B1 Draw5playall

7) Laurie_Menke: Trade G1 Y1 Laurie_menke

8) Draw5PlayAll: Trade B3 Y3 Draw5playall
	Laurie_Menke: Go ahead and freeze me out of blue. Won't last long...

9) Laurie_Menke: Build Y1 Laurie_menke

10) Draw5PlayAll: Build B2 Draw5playall

11) Laurie_Menke: Trade Y1 R1 Laurie_menke

12) Draw5PlayAll: Discover B2 Draw5playall G2 Build

13) Laurie_Menke: Build R1 Laurie_menke

14) Draw5PlayAll: Build B2 Build

15) Laurie_Menke: Build G1 Laurie_menke

16) Draw5PlayAll: Build B2 Draw5playall

17) Laurie_Menke: Discover G1 Laurie_menke B3 Blue

18) Draw5PlayAll: Build B3 Build

19) Laurie_Menke: Build Y1 Laurie_menke

20) Draw5PlayAll: Trade B3 R3 Build

21) Laurie_Menke: Discover Y1 Laurie_menke B3 Navy

22) Draw5PlayAll: Build B3 Build

23) Laurie_Menke: Build G1 Laurie_menke

24) Draw5PlayAll: Trade B2 Y2 Build

25) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow

26) Draw5PlayAll: Build B2 Build

27) Laurie_Menke: Discover Y1 Navy Y2 Lemon
	Draw5PlayAll: Did you say something earlier about a blue freeze not lasting long?
	Laurie_Menke: I'm not worried.  ;)

28) Draw5PlayAll: Trade B2 R2 Build

29) Laurie_Menke: Discover G1 Laurie_menke Y3 Mustard

30) Draw5PlayAll: Move R2 Build Mustard

31) Laurie_Menke: Move G1 Mustard Lemon

32) Draw5PlayAll: Move R2 Mustard Lemon

33) Laurie_Menke: Build G1 Laurie_menke

34) Draw5PlayAll: Attack G1 Lemon

35) Laurie_Menke: Build G2 Laurie_menke
	Draw5PlayAll: First green!
	Laurie_Menke: :)

36) Draw5PlayAll: Sacrifice Y2 Build
Move G1 Lemon Blue
Move G1 Blue Laurie_menke
Catastrophe Laurie_menke Green

37) Laurie_Menke: Sacrifice Y1 Lemon
Move G1 Blue Laurie_menke
	Draw5PlayAll: I am not one for nostalgia.
	Laurie_Menke: That was a definite mistake on my part.  ::sigh::

38) Draw5PlayAll: Move R2 Lemon Yellow

39) Laurie_Menke: Build R1 Laurie_menke

40) Draw5PlayAll: Attack R1 Yellow

41) Laurie_Menke: Discover R1 Laurie_menke G3 Green

42) Draw5PlayAll: Move R2 Yellow Laurie_menke

43) Laurie_Menke: Build R2 Green
	Laurie_Menke: Congrats... good game! Thanks for the fun!  :)

44) Draw5PlayAll: Sacrifice R3 Build
Attack Y1 Laurie_menke
Attack R1 Laurie_menke
Attack G1 Laurie_menke
	Draw5PlayAll: I still vaguely remember something about a blue freeze not lasting?
	Draw5PlayAll: Good game.



35498)
Started: 2019.9.9, Ended: 2019.10.11
Participants: Simon (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Simon: Homeworld R1 G3 B3
	Simon: Hi! This game will count for the Great Homeworlds Tournament of 2019.

3) Trydnt: Build G1 Trydnt

4) Simon: Build B1 Simon
	Trydnt: good luck :)
	Simon: You too, good luck :-) Because you had the first move, please fill out the tournament start-game form for this game (35498): https://forms.gle/wn4aqPmmB63F8yYCA 

5) Trydnt: Build G1 Trydnt

6) Simon: Build B1 Simon

7) Trydnt: Discover G1 Trydnt B3 B3

8) Simon: Trade B1 Y1 Simon

9) Trydnt: Build G1 B3

10) Simon: Build Y1 Simon

11) Trydnt: Build G2 B3
	Simon: Please acknowledge in chat here that this is game counts towards the Great Homeworlds tournament 2019. Also please fill out the form (game number 35498): https://forms.gle/wn4aqPmmB63F8yYCA
	Babamots: Simon, you can go ahead and fill out the form. Just so someone does it for the record. Thanks guys! Good luck!
	Trydnt: this is for the great homeworlds tournament of 2019

12) Simon: Build Y2 Simon

13) Trydnt: Trade G2 Y2 B3

14) Simon: Discover Y1 Simon G2 G2

15) Trydnt: Build G2 Trydnt

16) Simon: Discover Y1 Simon B2 B2

17) Trydnt: Discover G2 Trydnt Y3 Y3

18) Simon: Move B1 Simon G2

19) Trydnt: Sacrifice G3 Trydnt
Build G2 Trydnt
Build G3 Trydnt
Build G3 B3

20) Simon: Build Y2 G2

21) Trydnt: Build Y3 B3

22) Simon: Build Y3 Simon

23) Trydnt: Discover Y3 B3 R2 R2

24) Simon: Move Y3 Simon B2

25) Trydnt: Trade G3 R3 B3

26) Simon: Trade Y3 G3 B2

27) Trydnt: Sacrifice G2 Trydnt
Build G2 Trydnt
Build Y3 R2

28) Simon: Pass

29) Trydnt: Move G2 Trydnt Y3

30) Simon: Trade Y1 R1 G2

31) Trydnt: Move G2 Y3 R2
	Trydnt: damn I mistyped that command. Don't suppose you'd consider passing and letting me reset to past move?
	Simon: Yep, I'll pass to grant another undo.

32) Simon: Move G3 B2 Y3
	Trydnt: the move was the same but grow the g2 in y3. I'll  move it to there

33) Trydnt: Sacrifice G1 B3
Build G1 Y3
	Trydnt: Thank you for understanding :)
	Simon: No problem!

34) Simon: Build Y1 Simon

35) Trydnt: Discover Y3 R2 B3 Be3

36) Simon: Build R1 G2

37) Trydnt: Move Y3 Be3 G2

38) Simon: Sacrifice B1 G2
Trade G3 R3 Y3

39) Trydnt: Sacrifice R3 B3
Attack Y2 G2
Attack R1 G2
Attack R1 G2

40) Simon: Attack G2 Y3

41) Trydnt: Build G3 B3

42) Simon: Attack G1 Y3

43) Trydnt: Trade G3 R3 Trydnt

44) Simon: Discover Y1 B2 G3 G3

45) Trydnt: Move R1 G2 G3

46) Simon: Discover Y1 G3 B2 B2b

47) Trydnt: Build R2 G2

48) Simon: Build B1 Simon

49) Trydnt: Move R1 G2 B3

50) Simon: Build R2 Y3

51) Trydnt: Sacrifice G3 B3
Build G3 B3
Build R3 B3
Pass

52) Simon: Build B1 Simon

53) Trydnt: Move R3 B3 B2b

54) Simon: Discover Y1 B2b B1 B1

55) Trydnt: Sacrifice Y3 R2
Move G3 B3 R2
Move G3 R2 Simon
Move G2 R2 Simon

56) Simon: Sacrifice R2 Y3
Attack G2 Simon
Attack G3 Simon

	Simon: gg!
	Trydnt: well played!


35521)
Started: 2019.9.10, Ended: 2019.10.3
Participants: DodoBirb (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	DodoBirb: Well, I'm probably going to get demolished but I hope this will be an interesting game. Even if I don't win any of my other games this year it seems that I'll at least get one point against speardane so I'll beat my 2018 score at least.
	DodoBirb: Bring it on and Good luck

2) DodoBirb: Homeworld B1 R3 G3
	Babamots: I hope you do really well too! I'm glad you're in the tournament again.
	Babamots: This game is for the Great Homeworlds Tounament 2019.


3) Babamots: Build G1 Babamots

4) DodoBirb: Build G1 Dodobirb

5) Babamots: Trade G1 Y1 Babamots
	DodoBirb: and within 24 hours of me saying I'm about to win the speardane game, It has completely fallen apart
	Babamots: Oh no! I'm sorry.

6) DodoBirb: Build G1 Dodobirb

7) Babamots: Build Y1 Babamots
	DodoBirb: Oh well, It's my fault for not paying attention to my opponent's potential sacrifices.

8) DodoBirb: Trade G1 Y1 Dodobirb

9) Babamots: Build Y2 Babamots

10) DodoBirb: Build Y2 Dodobirb

11) Babamots: Discover Y1 Babamots G3 Orion

12) DodoBirb: Discover Y1 Dodobirb G2 Greeny

13) Babamots: Discover Y1 Babamots Y3 Iconia

14) DodoBirb: Build Y2 Dodobirb

15) Babamots: Sacrifice G3 Babamots
Build Y3 Babamots
Build Y3 Orion
Pass

16) DodoBirb: Trade G1 B1 Dodobirb
	DodoBirb: ah. I should've seen that coming.

17) Babamots: Trade Y2 G2 Babamots

18) DodoBirb: Build Y2 Dodobirb

19) Babamots: Build G1 Babamots

20) DodoBirb: Build B1 Dodobirb

21) Babamots: Trade G2 B2 Babamots

22) DodoBirb: Discover B1 Dodobirb G2 Grass

23) Babamots: Move B2 Babamots Orion

24) DodoBirb: Build G1 Dodobirb

25) Babamots: Build G1 Babamots

26) DodoBirb: Move G1 Dodobirb Grass

27) Babamots: Trade G1 R1 Babamots

28) DodoBirb: Trade Y2 R2 Dodobirb

29) Babamots: Build Y2 Babamots

30) DodoBirb: Move R2 Dodobirb Grass

31) Babamots: Move Y3 Orion Grass

32) DodoBirb: Build G1 Dodobirb

33) Babamots: Discover Y2 Babamots G3 Risa

34) DodoBirb: Trade G1 R1 Dodobirb

35) Babamots: Sacrifice R1 Babamots
Attack R2 Grass

36) DodoBirb: Build G1 Grass

37) Babamots: Discover B2 Orion G2 Earth

38) DodoBirb: Move B1 Dodobirb Greeny

39) Babamots: Attack G1 Grass

40) DodoBirb: Build B2 Greeny

41) Babamots: Attack B1 Grass

42) DodoBirb: Discover B2 Greeny R3 Defense

43) Babamots: Sacrifice G1 Grass
Build B3 Earth

44) DodoBirb: Build B3 Greeny

45) Babamots: Build R1 Grass

46) DodoBirb: Move R1 Dodobirb Greeny

47) Babamots: Attack G1 Grass

48) DodoBirb: Build R2 Greeny

49) Babamots: Trade B2 R2 Earth

50) DodoBirb: Discover R2 Greeny R3 Reddy

51) Babamots: Build B2 Earth

52) DodoBirb: Discover B1 Greeny B3 Bluey

53) Babamots: Sacrifice Y3 Grass
Move B1 Grass Dodobirb
Move B2 Earth Dodobirb
Move B3 Earth Dodobirb
Catastrophe Dodobirb B

54) DodoBirb: Build B1 Greeny

55) Babamots: Sacrifice Y3 Babamots
Move R1 Grass Dodobirb
Move R2 Grass Dodobirb
Move R2 Earth Dodobirb
Catastrophe Dodobirb R

	Babamots: If your remaining ships' crews surrender, their lives  will be spared. ;-)

Good luck in the tournament!
	DodoBirb: South's ships R2, B3, R1, Y1, B1, B1 and B2 were sacrificed. The entire universe was engulfed in a supernova, North seat has been eliminated. Good game! Good luck to you too!
	Babamots: Your fleet has some mighty vindictive captains. GG!


35520)
Started: 2019.9.10, Ended: 2019.9.14
Participants: wil (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	Babamots: I intend that this game is for the tournament. Does that suit you?

Good luck!

2) wil: H Y3 B1 G3
	wil: I was thinking it would be! Let's do this!

3) Babamots: Build G1 Babamots

4) wil: B G1 Wil

5) Babamots: Trade G1 Y1 Babamots
	wil: The new lesson is patience and reviewing moves...
	wil: HW continues to help me with recovery.

6) wil: T G1 R1 Wil
	Babamots: With every loss, I vow to never rush a move again.

I don't live close enough to bring you casseroles, so I'm very happy to be helping you any way I can :-)

7) Babamots: Build Y1 Babamots
	wil: Change is interesting. Shoot from the hips is my way

8) wil: B R1 Wil

9) Babamots: Build Y1 Babamots

10) wil: B R2 Wil

11) Babamots: Discover Y1 Babamots G3 Orion

12) wil: D R1 Wil B2 B2

13) Babamots: Build Y2 Babamots

14) wil: S G3 Wil
B R2 Wil
B R2 B2
B R3 B2

15) Babamots: Build G1 Babamots

16) wil: T R3 G3 B2

17) Babamots: Trade G3 R3 Babamots

18) wil: B R3 B2

19) Babamots: Build R3 Babamots

20) wil: T R3 Y3 B2

21) Babamots: Move R3 Babamots Orion
	wil: This got thick quick!
	Babamots: Yes indeed.

22) wil: T R2 G2 Wil

23) Babamots: Build Y2 Orion

24) wil: B G1 Wil

25) Babamots: Build R2 Orion

26) wil: D R2 B2 Y3 Y3

27) Babamots: Discover Y1 Babamots R3 Brekka

28) wil: B Y2 B2

29) Babamots: Trade Y2 G2 Babamots

30) wil: M G2 Wil B2

31) Babamots: Build Y2 Babamots

32) wil: T R2 G2 Wil

33) Babamots: Sacrifice Y2 Babamots
Move R3 Orion B2
Move R3 B2 Wil

34) wil: S Y3 B2
M R2 Y3 B2
M R1 B2 Wil
M R2 B2 Wil
C Wil R

35) Babamots: Sacrifice G2 Babamots
Build Y2 Babamots
Build Y3 Brekka
	wil: Ouch

36) wil: S G3 B2
B G1 B2
B G2 B2
B G3 Wil
	Babamots: I lost a game pretty unexpectedly to the problem of "becoming comfortable with not having a large at home." eliscinsky was thrilled about it :-)

Since then, I think I've always kept a large at home except when sacrificing it for a winning move.
	wil: Yeah,me too,always thinking I can get back when needed!

37) Babamots: Sacrifice Y3 Brekka
Move G1 Babamots Orion
Move G1 Orion B2
Move G1 B2 Wil
Catastrophe Wil G
	Babamots: GG! I was pretty scared for a while. I usually focus on yellow, but I should have more respect for the red monopoly.

Good luck in the tournament!
	wil: Gig, thx



35523)
Started: 2019.9.10, Ended: 2020.9.5
Participants: wil (S), Jeln (N)
Winner: wil



35525)
Started: 2019.9.11, Ended: 2019.10.3
Participants: Simon (S), DodoBirb (N)
Winner: Simon

1) DodoBirb: Homeworld B1 R2 G3

2) Simon: Homeworld G3 B1 B3 *
	DodoBirb: Good Luck!
	Simon: Good luck and have fun! This counts for the Great Homeworlds Tournament 2019.

3) DodoBirb: Build G1 Dodobirb

4) Simon: Build B1 Simon

5) DodoBirb: Build G1 Dodobirb

6) Simon: Trade B3 Y3 Simon

7) DodoBirb: Trade G1 Y1 Dodobirb

8) Simon: Build B2 Simon

9) DodoBirb: Build Y1 Dodobirb

10) Simon: Trade B2 R2 Simon

11) DodoBirb: Trade G3 B3 Dodobirb

12) Simon: Build B2 Simon

13) DodoBirb: Discover Y1 Dodobirb G3 Greeny

14) Simon: Discover B2 Simon G2 G2

15) DodoBirb: Build Y1 Dodobirb

16) Simon: Build Y2 Simon

17) DodoBirb: Build Y2 Dodobirb

18) Simon: Move Y2 Simon G2

19) DodoBirb: Trade Y2 R2 Dodobirb

20) Simon: Build B2 G2

21) DodoBirb: Build Y2 Greeny

22) Simon: Build Y2 Simon

23) DodoBirb: Discover Y1 Greeny G2 Grassy

24) Simon: Build Y3 G2

25) DodoBirb: Build Y3 Grassy

26) Simon: Build R1 Simon

27) DodoBirb: Build G1 Dodobirb

28) Simon: Build R1 Simon

29) DodoBirb: Build G1 Dodobirb

30) Simon: Discover B2 G2 G3 G3

31) DodoBirb: Discover G1 Dodobirb B3 Bluey

32) Simon: Move R1 Simon G2

33) DodoBirb: Move R2 Dodobirb Bluey

34) Simon: Move R1 G2 G3

35) DodoBirb: Trade B3 R3 Dodobirb

36) Simon: Build R1 G3

37) DodoBirb: Move Y3 Grassy G3

38) Simon: Sacrifice Y3 G2
Move R1 G3 Dodobirb
Move R1 G3 Dodobirb
Move B2 G3 Dodobirb
Catastrophe Dodobirb Red

39) DodoBirb: Move Y1 Dodobirb Bluey
	DodoBirb: ... gg?

40) Simon: Sacrifice Y3 Simon
Move B1 Simon G2
Move B1 G2 Dodobirb
Move B2 G2 Dodobirb
Catastrophe Dodobirb Blue

	Simon: GG, yeah. There was really no good color for your home queen; if not red, there would have been other unproductive shuffling.
	DodoBirb: GG


35494)
Started: 2019.9.12, Ended: 2019.10.25
Participants: Felix (S), Draw5PlayAll (N)
Winner: Felix

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Felix: Homeworld G2 B3 R3
	Felix: This is for the tournament, agreed?

3) Draw5PlayAll: Build G1 Draw5playall
	Draw5PlayAll: Aye theenk soh

4) Felix: Build R1 Felix

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Felix: Build R1 Felix

7) Draw5PlayAll: Build Y1 Draw5playall

8) Felix: Trade R3 Y3 Felix

9) Draw5PlayAll: Discover Y1 Draw5playall G2 Build

10) Felix: Build R2 Felix

11) Draw5PlayAll: Build Y1 Draw5playall

12) Felix: B Y2 Felix

13) Draw5PlayAll: Discover Y1 Draw5playall G2 Construct

14) Felix: Trade R2 B2 Felix

15) Draw5PlayAll: Build Y2 Build

16) Felix: B R2 Felix

17) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Build
Build Y3 Construct
Build Y3 Draw5playall

18) Felix: Sacrifice Y2 Felix
Discover R2 Felix G1 Out
Move R2 Out Build
	Draw5PlayAll: First time it has been me doing that against a strong opponent!

19) Draw5PlayAll: Sacrifice Y2 Build
Discover Y2 Build B3 Trade
Move Y1 Build Trade
	Felix: Feels good! Right? Nice move.

20) Felix: Build Y2 Felix

21) Draw5PlayAll: Trade Y2 R2 Trade

22) Felix: Build R2 Build

23) Draw5PlayAll: Move R2 Trade Construct

24) Felix: S B2 Felix
T R2 B2 Build
T R1 G1 Felix

25) Draw5PlayAll: Trade Y3 G3 Draw5playall

26) Felix: B B1 Build

27) Draw5PlayAll: Build G1 Draw5playall

28) Felix: Build B1 Build

29) Draw5PlayAll: Trade Y1 B1 Trade

30) Felix: Trade B2 Y2 Build
	Draw5PlayAll: You're not going to... really...

31) Draw5PlayAll: Sacrifice B1 Trade
Trade Y1 B1 Construct
	Felix: No, I am not :)

32) Felix: Build B2 Build

33) Draw5PlayAll: Sacrifice Y3 Construct
Move B1 Construct Draw5playall
Move B1 Draw5playall Build
Catastrophe Build Blue
Discover G1 Draw5playall B2 Trade

34) Felix: Trade G1 B1 Felix
	Draw5PlayAll: I did not want to but you had mate in like 6 moves

35) Draw5PlayAll: Build Y1 Draw5playall
	Felix: Can't say I blame you!

36) Felix: Sacrifice B1 Felix
Trade Y2 B2 Build

37) Draw5PlayAll: Trade Y1 B1 Draw5playall

38) Felix: Build B1 Build

39) Draw5PlayAll: Move B1 Draw5playall Construct

40) Felix: Trade B2 Y2 Build

41) Draw5PlayAll: Build Y1 Draw5playall

42) Felix: Build B1 Build

43) Draw5PlayAll: Build B2 Construct

44) Felix: Build B2 Build

45) Draw5PlayAll: Trade B2 Y2 Construct

46) Felix: Move B1 Build Draw5playall

47) Draw5PlayAll: Build R1 Construct

48) Felix: Build R2 Build

	Draw5PlayAll: Where did I go wrong?! I was in the lead earlier!


35528)
Started: 2019.9.13, Ended: 2019.10.30
Participants: goulo (S), Felix (N)
Winner: Felix

1) Felix: Homeworld Y1 B3 G3

2) goulo: Homeworld R3 B2 G3
	Felix: Hello! I intend this game to be for the 2019 tournament. Do you agree?

3) Felix: Build G1 Felix
	goulo: hi, yes, it is a tournament game. Have fun!

4) goulo: Build G1 Goulo

5) Felix: Trade G1 Y1 Felix

6) goulo: Trade G1 Y1 Goulo

7) Felix: Build Y2 Felix

8) goulo: Build Y2 Goulo

9) Felix: Discover Y1 Felix B2 Roam

10) goulo: Discover Y2 Goulo G1 Verdeto

11) Felix: Discover Y2 Felix G2 Greenlee

12) goulo: Build G1 Goulo

13) Felix: Build G1 Felix

14) goulo: Build G2 Goulo

15) Felix: Move G1 Felix Roam

16) goulo: Discover G2 Goulo B1 Blueto

17) Felix: Build G2 Felix

18) goulo: Build G3 Blueto

19) Felix: Trade G1 B1 Roam

20) goulo: Trade G1 R1 Goulo
	Felix: I'm sure I had a reason to let you get that large green... but now I can't think what it is!

21) Felix: Trade G2 R2 Felix

22) goulo: Trade G2 Y2 Blueto

23) Felix: B Y3 Greenlee

24) goulo: Sacrifice G3 Blueto
Build Y3 Goulo
Build Y3 Blueto
Build G1 Goulo

25) Felix: Move Y3 Greenlee Verdeto

26) goulo: Move Y2 Verdeto Roam

27) Felix: Sacrifice Y1 Roam
Move B1 Roam Verdeto

28) goulo: Sacrifice G1 Goulo
Build Y1 Roam

29) Felix: Build B1 Verdeto

30) goulo: Move Y2 Blueto Greenlee

31) Felix: Build B2 Verdeto

32) goulo: Sacrifice R1 Goulo
Attack Y2 Greenlee

33) Felix: Move B2 Verdeto Greenlee

34) goulo: Trade Y1 R1 Goulo

35) Felix: Build B3 Greenlee

36) goulo: Sacrifice Y2 Greenlee
Move Y2 Greenlee Felix
Move Y1 Roam Felix

37) Felix: Attack Y2 Felix

38) goulo: Move Y2 Roam Felix
Catastrophe Felix Y

39) Felix: Build B2 Greenlee

40) goulo: Build G1 Goulo

41) Felix: Build B3 Verdeto

42) goulo: Move R1 Goulo Blueto

43) Felix: Trade B2 Y2 Greenlee

44) goulo: Build Y1 Goulo

45) Felix: Build B2 Greenlee

46) goulo: Trade G1 R1 Goulo

47) Felix: Trade B2 R2 Greenlee

48) goulo: Discover R1 Goulo Y1 Flaveto

49) Felix: Build R1 Greenlee

50) goulo: Build G1 Goulo

51) Felix: Move B3 Verdeto Goulo

52) goulo: Attack B3 Goulo

53) Felix: S Y2 Greenlee
Move B1 Verdeto Goulo
Move B1 Verdeto Goulo
Catastrophe Goulo Blue

54) goulo: Build G1 Goulo

55) Felix: Sacrifice Y3 Verdeto
Move R1 Greenlee Goulo
Move R2 Greenlee Goulo
Discover R2 Felix Y1 Injection

	goulo: congrats, thanks for the game!


35530)
Started: 2019.9.13, Ended: 2019.10.10
Participants: Felix (S), DodoBirb (N)
Winner: Felix

1) DodoBirb: Homeworld R1 B2 G3
	DodoBirb: Good Luck!

2) Felix: Homeworld B1 G3 R3
	Felix: Same to you! I intend this game to be for the 2019 tournament. Do you agree?

3) DodoBirb: Build G1 Dodobirb
	DodoBirb: Yes

4) Felix: Build R1 Felix

5) DodoBirb: Trade G1 R1 Dodobirb

6) Felix: Build R2 Felix

7) DodoBirb: Build R2 Dodobirb

8) Felix: Trade R2 Y2 Felix

9) DodoBirb: Trade R1 Y1 Dodobirb

10) Felix: Build Y1 Felix

11) DodoBirb: Build Y1 Dodobirb

12) Felix: T Y1 B1 Felix

13) DodoBirb: Trade Y1 B1 Dodobirb

14) Felix: B B2 Felix

15) DodoBirb: Build B2 Dodobirb

16) Felix: Discover B2 Felix G2 Bazoik

17) DodoBirb: Discover B2 Dodobirb G3 Greeny

18) Felix: Build B3 Bazoik

19) DodoBirb: Build B3 Greeny

20) Felix: Build B3 Felix

21) DodoBirb: Trade B3 Y3 Greeny

22) Felix: Sacrifice B1 Felix
Trade B3 Y3 Bazoik

23) DodoBirb: Build Y1 Greeny

24) Felix: Move R1 Felix Bazoik

25) DodoBirb: Move R2 Dodobirb Greeny

26) Felix: Build R1 Bazoik

27) DodoBirb: Build R2 Greeny

28) Felix: Build R2 Felix

29) DodoBirb: Discover R2 Greeny G2 Medgreen

30) Felix: Move R3 Felix Medgreen

31) DodoBirb: Build R3 Greeny

32) Felix: Build R3 Felix

33) DodoBirb: Sacrifice Y1 Greeny
Discover R2 Medgreen Y3 Sun

34) Felix: Build Y1 Felix

35) DodoBirb: Build Y1 Dodobirb

36) Felix: M B3 Felix Medgreen

37) DodoBirb: Build Y2 Greeny

38) Felix: B Y2 Bazoik

39) DodoBirb: Discover R3 Greeny G2 Attack

40) Felix: S Y2 Felix
M B3 Medgreen Greeny
M B3 Greeny Dodobirb

41) DodoBirb: Attack B3S Dodobirb

42) Felix: Sacrifice Y2 Bazoik
Move B2 Bazoik Greeny
Move B2 Greeny Dodobirb
Catastrophe Dodobirb Blue

43) DodoBirb: Move R2 Greeny Attack

44) Felix: Sacrifice Y3 Bazoik
Move R1 Bazoik Dodobirb
Move R1 Bazoik Dodobirb
Move R3 Medgreen Dodobirb
Catastrophe Dodobirb Red

	Felix: Good game! Thanks for playing


35541)
Variants: "Hard time"
Started: 2019.9.16, Ended: 2019.10.7
Participants: Babamots (S), ts52 (N)
Winner: Babamots

1) ts52: Homeworld Y1 B2 G3

2) Babamots: Homeworld B3 R1 G3
	ts52: Have a good game!
	Babamots: Thanks! I know this is a ladder game, but we could save time and make it for the tournament too. Strictly speaking the time controls aren't 7/2/7 like the tournament rules call for, but I don't think either of us plays so slowly that it will matter. I wrote the rules and I don't mind :-). What do you think?

3) ts52: Build G1 Ts52
	ts52: I don't know. Double stakes? ;) Sure, why not.

4) Babamots: Build G1 Babamots

5) ts52: Trade G1 Y1 Ts52
	Babamots: Since you're moving first, my are a little lower (no second-mover has won in the tournament yet). I may regret double stakes, but I accept the risk.

Also, will you fill out the form for the tournament?
	ts52: Will do.

6) Babamots: Trade G1 Y1 Babamots

7) ts52: Build Y2 Ts52

8) Babamots: Build Y2 Babamots

9) ts52: Discover Y1 Ts52 G3 Kermit

10) Babamots: Discover Y1 Babamots G2 Genesis

11) ts52: Build G1 Ts52

12) Babamots: Build G1 Babamots

13) ts52: Trade G1 R1 Ts52

14) Babamots: Trade G1 R1 Babamots

15) ts52: Build R2 Ts52

16) Babamots: Build R2 Babamots

17) ts52: Move R2 Ts52 Kermit

18) Babamots: Move R2 Babamots Genesis

19) ts52: Build G1 Ts52

20) Babamots: Build G1 Babamots

21) ts52: Trade G1 B1 Ts52

22) Babamots: Trade G1 B1 Babamots

23) ts52: Build G1 Ts52

24) Babamots: Build G1 Babamots

25) ts52: Move B1 Ts52 Kermit

26) Babamots: Sacrifice G3 Babamots
Build Y2 Babamots
Build Y3 Genesis
Build Y3 Babamots
	Babamots: I'm thinking about breaking the mirror, but I hear that's bad luck.

27) ts52: Build Y3 Kermit
	ts52: Only for 7 years. It'll be over before you know it. ;)

28) Babamots: Discover Y2 Babamots G2 Risa

29) ts52: Sacrifice G3 Ts52
Build R2 Kermit
Build R3 Kermit
Build R3 Ts52

30) Babamots: Sacrifice Y2 Babamots
Move R1 Babamots Risa
Move R1 Risa Kermit
Catastrophe Kermit R

31) ts52: Trade Y3 R3 Kermit

32) Babamots: Move B1 Babamots Genesis

33) ts52: Build G1 Ts52

34) Babamots: Trade Y3 G3 Genesis

35) ts52: Discover G1 Ts52 B3 Gonzo

36) Babamots: Sacrifice G3 Genesis
Build Y2 Babamots
Build Y3 Risa
Build Y3 Genesis

37) ts52: Trade R3 G3 Ts52

38) Babamots: Discover Y3 Risa G3 Orion

39) ts52: Build G2 Gonzo

40) Babamots: Build B1 Genesis

41) ts52: Move Y2 Ts52 Gonzo

42) Babamots: Move B1 Genesis Orion

43) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R1 Kermit
Build R2 Ts52

44) Babamots: Build B2 Orion

45) ts52: Move R3 Kermit Risa

46) Babamots: Sacrifice Y2 Risa
Move B1 Orion Ts52
Move B2 Orion Ts52

47) ts52: Attack B2 Ts52

48) Babamots: Sacrifice G1 Babamots
Build B2 Ts52
Catastrophe Ts52 B

49) ts52: Sacrifice G3 Ts52
Build G1 Gonzo
Build G3 Ts52
Build Y2 Kermit

50) Babamots: Sacrifice Y3 Babamots
Move Y1 Genesis Ts52
Move Y3 Genesis Ts52
Move Y3 Orion Ts52
Catastrophe Ts52 Y

	ts52: good game, well played sir!
	Babamots: GG!
As always, if your crews surrender, they will be treated humanely. :-)


35543)
Variants: "Hard time"
Started: 2019.9.17, Ended: 2019.9.21
Participants: dlwillson (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) dlwillson: H B3 R1 G3 Dlwillson

3) wil: B G1 Wil
	dlwillson: GL & HF!

4) dlwillson: B G1 Dlwillson
	wil: U2
	wil: 
	wil: Ty

5) wil: T G1 R1 Wil

6) dlwillson: B G1 Dlwillson

7) wil: B R1 Wil

8) dlwillson: T G1 Y1 Dlwillson

9) wil: D R1 Wil B3 B3

10) dlwillson: B Y1 Dlwillson

11) wil: B R2 Wil

12) dlwillson: B Y1 Dlwillson

13) wil: D R2 Wil Y3 Y3

14) dlwillson: D Y1 Dlwillson B2 Sea

15) wil: B R2 Wil

16) dlwillson: B Y2 Dlwillson

17) wil: S G3 Wil
B R2 B3
B R3 Y3
B R3 Wil

18) dlwillson: D Y1 Dlwillson B2 Seatoo

19) wil: M R3 Y3 Sea

20) dlwillson: D Y1 Sea B3 Sky

21) wil: T R3 Y3 Sea

22) dlwillson: Trade Y2 G2 Dlwillson

23) wil: T R3 G3 Wil

24) dlwillson: S G3 Dlwillson
B Y2 Sky
B Y2 Seatoo
B Y3 Dlwillson

25) wil: S G3 Wil
B R3 Wil
B R3 Y3
B R3 B3

26) dlwillson: T Y2 B2 Seatoo

27) wil: D R3 Y3 Y2 Y2

28) dlwillson: D B2 Seatoo G3 Forest

29) wil: S Y3 Sea
M R3 B3 Y2
M R3 Y2 Dlwillson
M R3 Y2 Dlwillson

	wil: Trigger happy
	dlwillson: Sigh... Good game. I'm on a losing streak!
	dlwillson: But, it's still fun to play. :-)
	wil: It is fun to play...even the losses.


35542)
Variants: "Hard time"
Started: 2019.9.18, Ended: 2019.10.14
Participants: Simon (S), Felix (N)
Winner: Simon

1) Felix: Homeworld B2 Y3 G3
	Simon: Have fun! :-)

2) Simon: Homeworld R1 G3 B3
	Felix: Same to you!

3) Felix: Build G1 Felix

4) Simon: Build B1 Simon

5) Felix: Trade G1 B1 Felix

6) Simon: Trade B3 Y3 Simon

7) Felix: B G1 Felix

8) Simon: Build Y1 Simon

9) Felix: T G1 Y1 Felix

10) Simon: Discover Y1 Simon G2 G2

11) Felix: B G1 Felix

12) Simon: Build Y1 Simon

13) Felix: Trade G1 R1 Felix

14) Simon: Build Y2 G2

15) Felix: Build R1 Felix

16) Simon: Build B1 Simon

17) Felix: Build B2 Felix

18) Simon: Move B1 Simon G2

19) Felix: Discover B2 Felix G1 Ringot

20) Simon: Trade Y2 R2 G2

21) Felix: Build Y2 Felix

22) Simon: Build Y2 G2

23) Felix: Move Y2 Felix Ringot

24) Simon: Build R2 G2

25) Felix: Move R1 Felix Ringot

26) Simon: Discover Y1 G2 G1 G1

27) Felix: Build R2 Felix

28) Simon: Discover R2 G2 Y3 Y3

29) Felix: Move R2 Felix G1

30) Simon: Build R3 G2

31) Felix: Build R3 Ringot

32) Simon: Trade R3 G3 G2

33) Felix: Attack Y1 G1

34) Simon: Sacrifice G3 G2
Build R3 G2
Build R3 Y3
Build Y2 G2

35) Felix: Build G1 Felix

36) Simon: Move R3 Y3 G1

37) Felix: Sacrifice Y1 G1
Discover R2 G1 G2 Entry

38) Simon: Discover Y2 G2 Y1 Y1

39) Felix: Move R3 Ringot Y3

40) Simon: Move R2 Y3 Y1

41) Felix: M R3 Y3 Y1

42) Simon: Build Y3 G2

43) Felix: S R2 Entry
A R2 Y1
A Y2 Y1

44) Simon: Build R2 G1

45) Felix: B G2 Felix

46) Simon: Move R3 G2 Ringot

47) Felix: S Y2 Ringot
D B2 Ringot G2 Oouie
M R1 Ringot Oouie

48) Simon: Build Y2 Simon

49) Felix: M B1 Felix Y1

50) Simon: Move Y2 G2 G1

51) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B2 Y1
Build B3 Oouie

52) Simon: Build B3 G2

53) Felix: Move B1 Y1 G2

54) Simon: Trade B3 G3 G2

55) Felix: Sacrifice G3 Felix
Build G3 Felix
Build B3 G2
Build B3 Y1

56) Simon: Sacrifice Y3 G2
Move G3 G2 G1
Move G3 G1 Felix
Move R3 Ringot Felix
Catastrophe Felix Green

	Simon: Hmm, the green trade was intended as a threat. >_>
	Felix: Haha, whoops! Totally missed that one. Well played!
	Simon: gg!


35367)
Variants: "Unrated"
Started: 2019.9.24, Ended: 2019.10.6
Participants: Vezeon (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	Vezeon: homeworld r1 b2 g3

2) Vezeon: Homeworld R2 B3 G3

3) Trydnt: Build G1 Trydnt

4) Vezeon: Build G1 Vezeon

5) Trydnt: Trade G1 Y1 Trydnt

6) Vezeon: Trade G1 Y1 Vezeon

7) Trydnt: Build Y2 Trydnt

8) Vezeon: Build Y2 Vezeon

9) Trydnt: Discover Y2 Trydnt G3 G3

10) Vezeon: Build G1 Vezeon

11) Trydnt: Build G1 Trydnt

12) Vezeon: Discover G1 Vezeon B1 Pluto

13) Trydnt: Trade G1 B1 Trydnt

14) Vezeon: Build G1 Pluto

15) Trydnt: Build B1 Trydnt

16) Vezeon: Trade Y2 B2 Vezeon

17) Trydnt: Build Y2 G3

18) Vezeon: Discover B2 Vezeon R1 Mars

19) Trydnt: Move B1 Trydnt G3

20) Vezeon: Discover Y1 Vezeon R1 Magma

21) Trydnt: Discover Y2 G3 G1 G1

22) Vezeon: Build G2 Vezeon

23) Trydnt: Build G2 Trydnt

24) Vezeon: Build G2 Vezeon

25) Trydnt: Sacrifice G2 Trydnt
Build Y2 G1
Build Y3 G3

26) Vezeon: Trade B2 R2 Mars

27) Trydnt: Sacrifice Y3 G3
Move G3 Trydnt G3
Move G3 G3 Pluto
Move G3 Pluto Vezeon
Catastrophe Vezeon G



35560)
Variants: "Unrated"
Started: 2019.9.25, Ended: 2019.9.30
Participants: Babamots (S), Dther (N)
Winner: Babamots

1) Dther: Homeworld R2 B3 G3
	Babamots: Hi! Looks like this is your first game on SDG. Have you ever played Homeworlds before? Let me know if you need help understanding the site commands.
	Dther: Hey there. Really want to learn this game, but I'm still trying to introduce pyramids in general to my board game group. Hope I don't embarrass myself too much :T
	Babamots: It's very late for me right now, but I'll look for your reply in the morning.
	Babamots: Sounds good! Have you read the rules?

2) Babamots: Homeworld B3 R1 G3
	Dther: I have, I think I get the basics. Thanks for starting a game for beginners like me :)
	Babamots: Maybe I'll stay up a tiny bit more. It's hard to resist this game. Normally, you can expect to wait a few hours or days for your opponent to make a move on SDG.

3) Dther: Build G1 Dther
	Babamots: I'm always surprised by how quickly new players show up when I offer a training game. It's good to know the community is growing.

4) Babamots: Build G1 Babamots

5) Dther: Trade G1 Y1 Dther
	Dther: That's good to hear. There isn't exactly a vibrant community here in Australia, but I love the concept of Looney Pyramids so much. I've had some success in introducing Zendo so far.

6) Babamots: Trade G1 Y1 Babamots
	Babamots: Sometimes I like a blue/yellow system instead of blue/red. Yellow is slightly safer from sudden catastrophes since the yellow ship being sacrificed can't be moved in.

A red star is safer from multi-move catastrophes for tricky reasons I'm too sleepy to explain.

7) Dther: Build G1 Dther

8) Babamots: Build G1 Babamots
	Dther: Hmm, is it because, when combined with the general good practice to always have a large at your homeworld, the red star allows for attack actions in between the opponent's moves?
	Babamots: I'm in the eastern US. Seems like I met another Australian player on SDG, but I can't remember who.

Games between people in the same time zone often go faster since they don't always have to wait for the other player to finish sleeping. I'd better make this my last move for the night. There's work in the morning.
	Dther: That's probably a good idea, see you then!
	Babamots: Yes, about the red. In particular, you can sacrifice the red ship you captured on the previous turn to prevent catastrophic buildup. To make a red catastrophe, your opponent can't just move ships one at a time for that reason. Even very good players forget that sometimes.

9) Dther: Trade G1 R1 Dther

10) Babamots: Trade G1 R1 Babamots

11) Dther: Build R2 Dther

12) Babamots: Build R2 Babamots

13) Dther: Discover R2 Dther G1 Styx

14) Babamots: Trade R1 B1 Babamots

15) Dther: Trade R1 B1 Dther

16) Babamots: Build R1 Babamots

17) Dther: Move B1 Dther Styx

18) Babamots: Discover R2 Babamots G2 Betazed

19) Dther: Build G1 Dther

20) Babamots: Move B1 Babamots Betazed

21) Dther: Build Y1 Dther

22) Babamots: Build Y2 Babamots

23) Dther: Build Y2 Dther

24) Babamots: Build Y2 Babamots

25) Dther: Move Y1 Dther Styx
	Dther: Has anyone ever written an AI for Homeworlds? I'm a computer science student, and part of what interests me about Homeworlds is how it strikes the middle ground of computational complexity between Chess and Go.

26) Babamots: Move Y2 Babamots Betazed

27) Dther: Build Y3 Styx
	Draw5PlayAll: www.github.com/Quuxplusone (user "ajo" here) wrote a pretty weak one.
	Babamots: Yes, the SDG account "speardane" is for an AI maintained by the player whose SDG account is "ajo." It has been known to beat people.

I also wrote a bot, but it has pretty big problems.

Homeworlds can actually have a game tree that branches faster than go. For example, in a position where a player has quite a few ships and a large yellow ship, they can have thousands of possible moves (because of sacrifices). But of course, they lose their y3 if they take one of those moves, so the game tree won't branch that much on every move.

I don't play much chess, but I think it might be easier to tell who is ahead at a glance in Homeworlds. So I think state evaluation heuristics might be very efficient for HW compared to chess.

28) Babamots: Build Y3 Betazed
	Babamots: When both players have lots of yellow is when the game is really exciting. Seems like the first person to make a tiny mistake always loses.

29) Dther: Trade G1 B1 Dther
	Dther: That would make sense. Would it be right to think that it's because Yellow sacrifices create more possible branching paths than any other kind of sacrifice?
	Babamots: Yeah, each move action could move any ship to any connected system or discover a new system. Lots of possibilities.

Blue sacrifices also create lots of possibilities.

30) Babamots: Discover Y2 Babamots G2 Orion

31) Dther: Trade Y1 R1 Styx

32) Babamots: Sacrifice G3 Babamots
Build Y1 Orion
Build Y3 Babamots
Build R3 Betazed
	Dther: What kind of things should I be thinking of in terms of a long term plan? Right now all I'm thinking of is avoiding catastrophes and trying to get resources for the late game.
	Babamots: I'm trying to spread out my yellows so that I can safely build that last y3 before you can. Let mw know if you want suggestions on how to block me.
	Babamots: You're doing pretty well. You haven't given me a chance to catastrophe, you haven't opened up larger sizes for me unless you would be able to get ships that size as well.
	Babamots: I made a mistake on my last move. I should have moved out my small ship instead. That way I was threatening to destroy your y3 and y1 with a y2 sacrifice.

33) Dther: Sacrifice Y2 Dther
Move R2 Styx Betazed
Move R1 Styx Betazed
Catastrophe Betazed R

34) Babamots: Move Y2 Orion Styx
	Babamots: Well, that time you opened up larges of a color that you aren't prepared to build. Discovering a y3 system was probably your best way to block my build.
	Dther: In hindsight, would discovering a Y3 star have been a better way to block?

35) Dther: Trade B1 R1 Styx

36) Babamots: Sacrifice R1 Babamots
Attack R1 Styx
	Babamots: This las move of mine wasn't great. I wanted to flaunt the fact that you can't attack my y2 because you don't have a red. It also prevents you from building the available y2 because I could just cause a catastrophe.

However, it isn't really a threat. You can ignore it or get a red so you can attack it unless I retreat.

37) Dther: Move Y3 Styx Dther

38) Babamots: Build B1 Betazed

39) Dther: Trade Y3 R3 Dther

40) Babamots: Build R1 Styx
	Babamots: Do you have a naming convention in mind for your systems? I use Star Trek planets.

41) Dther: Discover R3 Dther G1 Smolensk
	Dther: Not really, except for some Greco-Roman nouns and maybe a few nouns from early modern literature which I happen to like the sound of.
	Dther: I realise that sounds a lot more pretentious than I intended, I'm basically just naming things based on what I think I might use them for later but obfuscating that a little.
	Babamots: Not pretentious. "Styx" made me guess you were planning on either 80's bands or mythical locations.

I think it's mneme that uses Greek muses.
rouguejedi uses Star Wars worlds.
I can't remember who uses Muppets.
Several people just use the piece type: "b3" etc. Unimaginative, don't you think? :-P

42) Babamots: Build R2 Styx
	Babamots: With a second red on your doorstep, I'm in position to catastrophe your red star. You'll want to either move your r3 out (the best option I suppose) or trade for another color (blue obviously isn't safe, and with yellow I could still catastrophe your ship).

43) Dther: Sacrifice Y1 Dther
Move R3 Smolensk Betazed
	Dther: Only slightly embarrassed to admit that I spent more time thinking of a name than on my actual move. In trying to think of a name that could be poetically linked to retreating, I found myself on a Wikipedia page on a Russian city that multiple invaders passed and later retreated through. Maybe thinking of star names will finally give me an excuse to read more...

44) Babamots: Sacrifice R1 Styx
Attack R3 Betazed

45) Dther: Build B2 Dther
	Babamots: https://github.com/jpeterbaker/SDGchange/blob/master/sdgPageChange.js

Here's something I use to help me navigate on SDG. There are two ways to view games: "play pages" and "archive pages." Archive pages let you look at all past game states (play pages don't).

You can put those few lines of Javascript into a browser bookmark and then click it to open the other page for the game.

Can you use it to see the archive page for this game?
	Babamots: You may have forgotten about red sacrifices. I can sacrifice an r1 in Styx to capture your r3.

However, I can also win in two moves if I just ignore your r3. I think it would be more instructive for you to see that happen.
	Babamots: Oops, nope, I forgot which sizes systems are. I won't win in 2 moves. Dur.
	Babamots: If Betazed were a small system, I could do a blue catastrophe at your home now and do a red one on my next turn.

46) Babamots: Sacrifice Y2 Betazed
Move B1 Betazed Styx
Move B1 Styx Dther
Catastrophe Dther B

47) Dther: Build G1 Dther
	Dther: agh. Looks like I'm just as bad at recovering from blunders here as I am with Chess. Thanks for the tips, I *did* forget about red sacrifices.
I've added your page change script to my bookmarks, but what browser do you use? It does open up the archive page, but on Firefox i'm finding it moves the original page to a mostly blank page that just says "false". Might test it with my other browser when I have time.
	Babamots: I'm using Chrome. Maybe you need to take out the "return false" line?

48) Babamots: Sacrifice Y3 Betazed
Move R3 Betazed Styx
Move R3 Styx Dther
Move R2 Styx Dther

49) Dther: Attack R3 Dther
	Dther: Ah yeah, works just fine now. It's been too long since I've messed with Javascript.

50) Babamots: Move R1 Styx Dther
Catastrophe Dther R

	Dther: Well, darn. Good game.
	Babamots: Hopefully it was at least a little instructive. In other teaching games, I've had a tendency to do nothing but call out mistakes, which seems patronizing. I tried to avoid that this time, but possibly at the loss of educational opportunities.

I mentioned my own bad moves as we went along, but I think I should use the archive view to make a list of your weaker moves with explanations. How does that sound?
	Babamots: I went ahead and typed up my suggestions/analysis. Enjoy! :-)

Your homeworld is OK, but I think the "banker" is strongest. That means a medium and a small piece for stars. That setup allows you the best control of the large pieces (since you use them as stars when you move out of your home system).

One your 8th move, you trade r1 for b1. I think you should have pressed your advantage in the red economy.The main reason is that the r1 was your only red ship in your home system. After your move, there are fewer systems in which you have red ships, so your hurt your ability to produce reds. If you ever want a red ship at your home again, you will have to trade for it or move one there, which will set you back a move. That's why I avoid trading or moving the last ship of a color from a system, especially in the early game.

On your 9th move, you move b1 to Styx. I dislike this for the same reason as your 8th move: it was your only blue ship in Dther. Later, on your 15th move, you trade a g1 for b1 in Dther. If you had built a b1 on your 9th move, you would have saved yourself a g1. (The disadvantage of what I'm suggesting is that you would have allowed me to build a b2 earlier.

On your 16th move, you traded y1 for r1. I'd say this is where things got away from you. You were trying to block me from building y3 (a good idea), but made it easy for me to build r3. I picked up the y3 with a green sacrifice anyway, but at the expense of my g3. I think you should have discovered a y3 system instead, probably with your r2 or y1 in Styx.

I think your 17th move is the best one that was available to you. Maybe you even made your 16th move with the plan that, if I built r3, you would trigger the catastrophe. But your 16th and 17th moves together are still poor (17 just makes up some of the lost ground). If you look at the difference between the positions after my 15th move and your 17th move, I lost one r2 ship while you lost an r2 and a y2 (I also gained a y1 and my g3 becomes y3). It may look good that I lost an r3, but it would have been much better if I never got to build it.

Another effect of your 17th move is that you no longer have any red, which is why I was able to boldly move my y2 under your y3's nose.

Also, remember on your 8th move when you traded away the only red ship in Dther? If you had kept it, you would still have a red ship at this moment.

On your 18th move, you traded b1 for r1. You see now that I could just take it from you with a red sacrifice. If you had traded your y3 for r3 instead, you would have taken my y2 unless I simply retreated. Trading your b1 for r1 in Dther would have had a similar effect.

We already talked about your 22nd move. Red sacrifices are extremely important. "A red anywhere is a red everywhere."

Of course it's over at this point, but your 23rd move sped up the game by making it even easier to cause a blue catastrophe.
	Dther: Thanks for the analysis! I always learn a lot from these kinds of after-game analyses. I think on my 8th and 9th move most of my thoughts were on if I should continue trying to build up and have a nice diversity of ships at my homeworld or start moving things out, so that answers that question. Thanks for the game! It's good to know that Homeworlds had the kind of tactical depth I was looking for :)
	Babamots: Oh yes, and since this was just a training exercise, the crews of your ships haven't actually been killed. Tell their families to expect them home in 1-3 standard cycles. :-P


35482)
Started: 2019.9.26, Ended: 2019.10.14
Participants: dragon76n (S), MobyNostromo (N)
Winner: dragon76n

	dragon76n: Hello... still waiting for you to setup.
	dragon76n: Hello... still waiting for you to setup.


35529)
Started: 2019.9.27, Ended: 2019.10.31
Participants: Felix (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld B1 R2 G3

2) Felix: Homeworld B1 G3 B3 *

3) bhorner: Build G1 Bhorner
	Felix: I intend this game to be for the homeworlds tournament 2019. Are you good with that?
	bhorner: Oh yeah, that's what I expected.  :)

And I also set up my planet, and thought you might do what you have done, to see if I was right that I can get around it (I thought at one point I could, but will have to re-figure it out), sorry if I move more slowly in the beginning here.

4) Felix: Build B1 Felix
	bhorner: I just reread the rules stuff, I guess it was my responsibility to say this was an official tournament game.  :)  Sorry for missing that, I just got back from a long trip.  I just filled out the form, and this game should show up in the matrix now.
	Felix: Not a problem! I often forget who's supposed to, myself. I figure whoever actually initiates the challenge should do it, but either way... as long as it's on the map!

Take as much time as you like. I'm never very confident about this opening myself, but I think it's fun to try out!

5) bhorner: Trade G3 B3 Bhorner

6) Felix: Trade B3 Y3 Felix
	bhorner: Seems like I possibly had an extra move, and didn't need to do that immediately, but I couldn't make myself sure.  :)  Hopefully I haven't lost my first player advantage.

7) bhorner: Build B2 Bhorner

8) Felix: Build B2 Felix

9) bhorner: Trade B2 Y2 Bhorner

10) Felix: Discover B1 Felix G2 Folstaf

11) bhorner: Build B2 Bhorner

12) Felix: Build B2 Folstaf

13) bhorner: Discover B2 Bhorner G3 Tree

14) Felix: Trade B2 Y2 Folstaf

15) bhorner: Build G1 Bhorner

16) Felix: B Y1 Folstaf

17) bhorner: Discover G1 Bhorner B3 Ocean

18) Felix: B Y1 Felix

19) bhorner: Trade B3 G3 Bhorner

20) Felix: T Y1 R1 Folstaf

21) bhorner: Trade G1 R1 Bhorner

22) Felix: B R1 Folstaf

23) bhorner: Build G1 Bhorner

24) Felix: M R1 Folstaf Felix

25) bhorner: Build G1 Ocean

26) Felix: Build R2 Folstaf

27) bhorner: Sacrifice G3 Bhorner
Build G2 Ocean
Build G2 Bhorner
Build G3 Bhorner

28) Felix: Build B2 Folstaf

29) bhorner: Sacrifice G3 Bhorner
Build B3 Tree
Build Y1 Bhorner
Build G3 Bhorner

30) Felix: Move B1 Folstaf Tree

31) bhorner: Trade B2 R2 Tree

32) Felix: Build B2 Folstaf

33) bhorner: Discover R1 Bhorner B3 Sky

34) Felix: Move R2 Folstaf Sky

35) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build R3 Sky
Build R3 Tree

36) Felix: Move R1 Folstaf Sky
Catastrophe Sky Red

37) bhorner: Attack B1 Tree

38) Felix: Discover B2 Folstaf Y3 Sun

39) bhorner: Sacrifice Y1 Bhorner
Move R3 Tree Folstaf

40) Felix: Sacrifice Y2 Folstaf
Discover B2 Folstaf Y3 Brim
Discover B2 Felix Y2 Star

41) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build Y1 Bhorner
Build R1 Folstaf

42) Felix: Build R1 Felix

43) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build R2 Tree
Build R3 Tree

44) Felix: Move R1 Felix Star

45) bhorner: Move Y1 Bhorner Tree

46) Felix: Move R1 Star Tree
Catastrophe Tree Red

47) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build Y1 Bhorner
Build Y2 Tree

48) Felix: Build R1 Felix
	bhorner: That sucked.  :)

49) bhorner: Sacrifice Y2 Bhorner
Discover Y2 Tree R2 Fire
Discover R1 Folstaf R3 Volcano

50) Felix: Move R1 Felix Star
	Felix: I know the feeling. Having no green sucks too, haha.

51) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build R2 Volcano
Build R3 Folstaf

52) Felix: Move Y1 Felix Star

53) bhorner: Move B3 Tree Star

54) Felix: Sacrifice Y1 Star
Move R1 Star Volcano
Catastrophe Volcano Red

55) bhorner: Sacrifice Y2 Fire
Move R3 Folstaf Felix
Move B3 Star Felix

	Felix: Oh bravo! Totally missed that one :) Good game and well done.
	bhorner: Thanks.  It was hard work!  GG!


35574)
Started: 2019.9.28, Ended: 2019.11.14
Participants: MobyNostromo (S), Dther (N)
Winner: Dther

1) Dther: Homeworld R2 B3 G3

2) MobyNostromo: Homeworld B2 G3 Y3

3) Dther: Build G1 Dther

4) MobyNostromo: Build Y1 Mobynostromo

5) Dther: Build G1 Dther

6) MobyNostromo: Discover Y1 Mobynostromo G1 Srouts

7) Dther: Trade G1 Y1 Dther

8) MobyNostromo: Build Y1 Mobynostromo

9) Dther: Build Y2 Dther

10) MobyNostromo: Build Y2 Srouts

11) Dther: Sacrifice Y2 Dther
Move G1 Dther Srouts
Move G1 Srouts Mobynostromo

12) MobyNostromo: Trade Y1 R1 Mobynostromo

13) Dther: Build G1 Mobynostromo

14) MobyNostromo: Build R1 Mobynostromo

15) Dther: Build G2 Dther

16) MobyNostromo: Attack G1 Mobynostromo

17) Dther: Sacrifice G3 Dther
Build G2 Mobynostromo
Build G2 Dther
Build G3 Dther
Catastrophe Mobynostromo G

18) MobyNostromo: Trade R1 B1 Mobynostromo

19) Dther: Trade G2 B2 Dther

20) MobyNostromo: Move B1 Mobynostromo Srouts

21) Dther: Discover B2 Dther G1 Malachite

22) MobyNostromo: Trade Y2 R2 Srouts

23) Dther: Build B1 Malachite

24) MobyNostromo: D R2 Srouts Y2 Amber

25) Dther: Trade B1 R1 Malachite

26) MobyNostromo: B B1 Srouts

27) Dther: Trade G3 Y3 Dther

28) MobyNostromo: Trade B1 R1 Srouts

29) Dther: Sacrifice G2 Dther
Build B1 Malachite
Build B1 Malachite

30) MobyNostromo: M R2 Amber Malachite

31) Dther: Sacrifice Y3 Dther
Move B2 Malachite Mobynostromo
Move B1 Malachite Mobynostromo
Move B1 Malachite Mobynostromo
Catastrophe Mobynostromo B



35573)
Started: 2019.9.28, Ended: 2019.11.16
Participants: Dther (S), dragon76n (N)
Winner: Dther

1) dragon76n: H G2 R3 B3

2) Dther: Homeworld B2 R1 G3
	dragon76n: Thanks for playing. Good luck and have fun!

3) dragon76n: Build B1 Dragon76n
	Dther: Good luck to you too, I'm new at this game so I'll need all the luck I can get :)
	dragon76n: Ok, you know the basics, right? 

4) Dther: Build G1 Dther

5) dragon76n: Trade B1 Y1 Dragon76n
	Dther: I do, but not much else
	dragon76n: Ok, feel free to ask me if you have questions. I'm not an expert by any means, but I have been playing for a while. 

6) Dther: Trade G1 Y1 Dther

7) dragon76n: Build B1 Dragon76n

8) Dther: Build G1 Dther

9) dragon76n: Trade B1 G1 Dragon76n

10) Dther: Trade G1 B1 Dther

11) dragon76n: Build B1 Dragon76n

12) Dther: Build G1 Dther

13) dragon76n: Trade B1 R1 Dragon76n

14) Dther: Trade G1 R1 Dther

15) dragon76n: Build R2 Dragon76n

16) Dther: Build G1 Dther

17) dragon76n: Discover R2 Dragon76n B1 Bluone

18) Dther: Build R2 Dther

19) dragon76n: Move G1 Dragon76n Bluone

20) Dther: Discover R2 Dther B3 Bigblue

21) dragon76n: T R2 Y2 Bluone

22) Dther: Build R2 Dther

23) dragon76n: M R1 Dragon76n Bluone

24) Dther: Discover R2 Dther Y3 Bigyellow

25) dragon76n: Trade B3 R3 Dragon76n

26) Dther: Discover R1 Dther G3 Biggreen

27) dragon76n: Move Y2 Bluone Biggreen

28) Dther: Build R2 Biggreen

29) dragon76n: Sacrifice R1 Bluone
Attack R2 Biggreen

30) Dther: Discover G1 Dther R3 Bigred

31) dragon76n: Build R1 Biggreen

32) Dther: Sacrifice G1 Bigred
Build R3 Bigblue

33) dragon76n: Attack R1 Biggreen

34) Dther: Trade R3 Y3 Bigblue

35) dragon76n: S Y2 Biggreen
M R1 Biggreen Dther
M R1 Biggreen Dther

36) Dther: Move R2 Bigyellow Bluone

37) dragon76n: S G1 Bluone
B R3 Dther
C Dther Red

38) Dther: Trade B1 R1 Dther

39) dragon76n: Build Y1 Dragon76n

40) Dther: Sacrifice Y3 Bigblue
Move R2 Bigblue Bluone
Move R2 Bluone Dragon76n
Move R2 Bluone Dragon76n
Catastrophe Dragon76n Red

41) dragon76n: B Y2 Dragon76n

42) Dther: Build Y2 Dther

43) dragon76n: D Y1 Dragon76n B1 Bluone

44) Dther: Discover Y1 Dther G3 Biggreen2

45) dragon76n: Trade Y1 B1 Bluone

46) Dther: Build Y1 Biggreen2

47) dragon76n: Sacrifice Y2 Dragon76n
Move R2 Biggreen Dragon76n
Move B1 Bluone Dragon76n

48) Dther: Build Y2 Biggreen2

49) dragon76n: Discover Y1 Dragon76n G1 Greone

50) Dther: Discover Y2 Biggreen2 G1 Smlgreen

51) dragon76n: B R1 Dragon76n

52) Dther: Sacrifice G3 Dther
Build Y2 Biggreen2
Build Y3 Dther
Build Y3 Smlgreen

53) dragon76n: Build Y3 Greone

54) Dther: Sacrifice Y2 Biggreen2
Move Y1 Biggreen2 Greone
Move Y1 Biggreen2 Greone
Catastrophe Greone Y

55) dragon76n: Trade R1 Y1 Dragon76n

56) Dther: Move Y3 Smlgreen Dragon76n

57) dragon76n: Discover R2 Dragon76n Y1 Yelone

58) Dther: Trade Y3 R3 Dther

59) dragon76n: B Y1 Dragon76n

60) Dther: Sacrifice R3 Dther
Attack Y1 Dragon76n
Attack Y1 Dragon76n
Attack B1 Dragon76n



35454)
Started: 2019.9.28, Ended: 2019.11.5
Participants: Felix (S), speardane (N)
Winner: Felix

1) speardane: Homeworld Y2 B3 G3

2) Felix: Homeworld B2 Y3 G3

3) speardane: Build G1 Speardane
	Felix: This game is for the 2019 tournament. Do you agree? :)

4) Felix: Build G1 Felix
	speardane: For the tournament!

5) speardane: Trade G3 R3 Speardane

6) Felix: Trade G1 B1 Felix

7) speardane: Build G1 Speardane

8) Felix: Build B1 Felix

9) speardane: Discover G1 Speardane B1 Delos

10) Felix: Discover B1 Felix Y1 Route

11) speardane: Build G1 Delos

12) Felix: Build B2 Felix

13) speardane: Trade G1 Y1 Delos

14) Felix: Discover B2 Felix R1 Leet

15) speardane: Build G1 Delos

16) Felix: Sacrifice G3 Felix
Build B2 Route
Build B3 Felix
Build B3 Leet

17) speardane: Build G2 Delos

18) Felix: T B3 G3 Felix

19) speardane: Discover G2 Delos B3 Lebling

20) Felix: T B3 G3 Leet

21) speardane: Discover G1 Delos B3 Kotok

22) Felix: B G2 Felix

23) speardane: Build G2 Kotok

24) Felix: B G3 Leet

25) speardane: Trade G2 Y2 Kotok

26) Felix: T G2 R2 Felix

27) speardane: Build G2 Lebling

28) Felix: Trade G3 Y3 Leet

29) speardane: Trade G2 Y2 Lebling

30) Felix: Move R2 Felix Delos

31) speardane: Sacrifice G2 Lebling
Build Y1 Lebling
Build Y3 Delos

32) Felix: Attack Y1 Delos

33) speardane: Trade Y2 R2 Lebling

34) Felix: Sacrifice Y1 Delos
Move R2 Delos Felix

35) speardane: Build Y1 Kotok

36) Felix: Build R1 Felix

37) speardane: Trade Y1 R1 Kotok

38) Felix: Move G3 Leet Kotok

39) speardane: Sacrifice Y2 Kotok
Discover R1 Kotok Y1 Minsky
Move G1 Kotok Minsky

40) Felix: Build G2 Kotok

41) speardane: Sacrifice G1 Minsky
Build R2 Minsky

42) Felix: Trade G3 R3 Kotok

43) speardane: Build R3 Speardane

44) Felix: Sacrifice G2 Kotok
Build G1 Felix
Build Y2 Leet

45) speardane: Move R3 Speardane Route

46) Felix: Sacrifice Y2 Leet
Move B1 Route Speardane
Move B2 Route Speardane

47) speardane: Attack B2 Speardane

48) Felix: Move B2 Leet Speardane
Catastrophe Speardane Blue

49) speardane: Trade R2 G2 Lebling

50) Felix: Move G1 Felix Leet

51) speardane: Build G2 Lebling

52) Felix: Build Y2 Leet

53) speardane: Move G2 Lebling Route

54) Felix: Move Y3 Leet Lebling

55) speardane: Sacrifice Y1 Lebling
Move G2 Lebling Minsky

56) Felix: Build Y1 Leet

57) speardane: Discover R2 Minsky B3 Licklider

58) Felix: Build Y2 Leet

59) speardane: Pass

60) Felix: Sacrifice Y3 Lebling
Move Y1 Leet Speardane
Move Y2 Leet Speardane
Move Y2 Leet Speardane
Catastrophe Speardane Yellow
	speardane: Good game!
	Felix: You too!



35580)
Variants: "Unrated"
Started: 2019.9.30, Ended: 2019.10.21
Participants: Babamots (S), Dther (N)
Winner: Dther

1) Dther: Homeworld R1 B2 G3

2) Babamots: Homeworld B3 Y2 G3

3) Dther: Build G1 Dther

4) Babamots: Build G1 Babamots

5) Dther: Trade G1 R1 Dther

6) Babamots: Trade G1 R1 Babamots

7) Dther: Build R2 Dther

8) Babamots: Build R2 Babamots

9) Dther: Trade R1 Y1 Dther

10) Babamots: Trade R2 Y2 Babamots

11) Dther: Build Y1 Dther
	Babamots: Everything's going pretty standard so far. I'm planning to give more commentary when things liven up.

It's pretty common for the player going second to essentially mirror what the other player does for a while. It can be a little dull, but it's often the best option for South.

12) Babamots: Build G1 Babamots
	Dther: Sorry about the long move, been really busy in real life.

13) Dther: Build G1 Dther
	Babamots: No problem.

14) Babamots: Discover G1 Babamots B1 Andoria

15) Dther: Discover G1 Dther Y3 Theseus

16) Babamots: Build G1 Babamots

17) Dther: Discover Y1 Dther G3 Yggdrasil
	Babamots: Right now I think you should continue to fight me for control of green. It's common for fights like this to end with all pieces of the contested color being turned into systems or ships. The final build is likely to involve a sacrifice of the g3, so expect me try to build the last TWO green ships in one move (and rebuild the sacrificed g3).

Later on, it may be important that you have the advantage in yellow ship count (and you have a yellow "investment"). You will probably want to spread out your yellows and then build more yellow soon.

18) Babamots: Move Y2 Babamots Andoria

19) Dther: Build G2 Dther

20) Babamots: Sacrifice G3 Babamots
Build G2 Andoria
Build G2 Babamots
Build G3 Babamots

21) Dther: Build Y1 Yggdrasil
	Babamots: We both have "factories," so between the two of us, we will probably build most of the pieces pretty soon.

22) Babamots: Sacrifice G3 Babamots
Build R1 Babamots
Build R2 Babamots
Build G3 Babamots
	Babamots: Do you know what I mean by "factory?" The green supply is gone and you have a large green in the same system as another green. You can sacrifice the g3 to build two ships and rebuild your g3, basically getting a free build move.

23) Dther: Sacrifice G3 Dther
Build Y2 Dther
Build Y3 Dther
Build G3 Dther

24) Babamots: Build Y3 Andoria
	Dther: I do- I wanted to get rid of the small yellows so that I could build the bigger ships. I didn't want to build other colours yet because I was afraid of a catastrophe, but in retrospect I probably could have gotten away with some reds.

25) Dther: Sacrifice Y2 Dther
Move G1 Theseus Andoria
Move G1 Andoria Babamots
Catastrophe Babamots G

26) Babamots: Trade R1 G1 Babamots
	Babamots: Ah, very good. I wasn't very careful there.

27) Dther: Sacrifice G2 Dther
Build Y2 Yggdrasil
Build Y3 Dther
	Babamots: So rather than re-defending with my large ship, I've traded to match the color of the only large that you could get to my home (the green). If you sacrificed your y3 to move your g3 to my home immediately, I could double build to catastrophe it away.

If you build yellow, I'm in huge trouble.
	Babamots: Your best move is probably to sacrifice g2 to build y2 and y3 in Yggdrasil and Dther respectively. I can't cause a catastrophe without almost certainly losing in a move or two, and you'll be ahead by two large ships.

Well done :-D

28) Babamots: Move Y3 Andoria Babamots
	Dther: I'm really impressed by the kind of tactical depth that this game has. I'm wondering if there could be something like Chess problems, where players are given a board state and need to find the ideal series of moves to create a major advantage.

29) Dther: Discover Y1 Yggdrasil B1 Rubicon
	Babamots: I tried to compose some Homeworlds puzzles once, but I thought it was quite difficult to come up with situations where I could say with certainty what the best move was unless it was obviously best.

30) Babamots: Move R2 Babamots Rubicon

31) Dther: Sacrifice Y3 Dther
Move Y1 Rubicon Babamots
Move Y1 Yggdrasil Andoria
Move Y1 Andoria Babamots
Catastrophe Babamots Y

32) Babamots: Sacrifice Y2 Andoria
Move R1 Babamots Dther
Discover R2 Rubicon Y3 Pakeld
	Babamots: Very good, and it looks like you're holding your own in your game with dragon76n, too. You don't need my advice as much as I expected. It's hard to feel like the old pro giving a lesson when I actually lose. Just goes to show how quickly a game will get away from you if you're not careful. My only excuse is that I'm pretty focused on beating Felix in the tournament :-).

33) Dther: Sacrifice R2 Dther
Attack R1 Dther
Pass
	Babamots: Here's one last puzzle for you: see if you can prevent me from causing a red catastrophe in your home. Not knowing this trick cost me a high-stakes game once (to Felix, as it happens).

34) Babamots: Trade G2 Y2 Andoria
	Babamots: Good! I wondered if you would get that.
	Dther: Seemed like this was the only way. I thought about moving it away, but then I realised that you could just sacrifice the G2 in Andoria to build two more reds and cause a catastrophe. I'm wondering whether moving the Y3 into Babamots would have been a more optimal move, since even if you caused a red catastrophe in my system, I could trade it for a blue and sacrifice my G3 to completely destroy Babamots.

Thanks for all the advice, by the way. I've learnt a great deal from just these two games :)
	Dther: You know, on the topic of Homeworlds problems, I've recently thought about how Lichess gets its large pool of chess problems by pulling them out of turning points in high level games. Maybe when I have time, I might comb the database for interesting games. Even if the answers ended up feeling "obvious", it might be a fun showcase of the complexity that can arise from Homeworlds' fairly simple rules set.

I'm also wondering about the ways to "evaluate" board state in the same way it's done by Chess AIs. That would probably be a huge step in developing an AI for Homeworlds.
	Babamots: By my count, responding to my "threat" (and puzzle challenge) has set you back by one move compared to just ignoring my pesky red and proceeding like you outlined. I hope it was worth your time to make sure sacrifice-red-to-attack-red-while-avoiding-catastrophe is in your bag of tools.

35) Dther: Move Y3 Dther Babamots

36) Babamots: Build G1 Babamots

37) Dther: Trade Y3 B3 Babamots

38) Babamots: Move R2 Pakeld Dther

39) Dther: Sacrifice G3 Dther
Build B1 Babamots
Build B1 Babamots
Build R1 Dther
Catastrophe Babamots B
	Babamots: GG WP! I'll have to be on my toes the next time we play.

I like the idea of collecting turning points of high-level games. That would be easier than composing our own puzzles anyway. The SDG archive has many many games. I've always heard that TwoShort and TeeTeeTee were extremely good, but they retired before I showed up. I oughta study them.


	Dther: Gg! Sort of a pyhrric victory in that your rogue red ship can just sweep up my homeworld ;)
	Draw5PlayAll: You could have just taken it out with a catastrophe.



35578)
Variants: "Hard time"
Started: 2019.10.1, Ended: 2019.11.18
Participants: Laurie_Menke (S), Jerome (N)
Winner: Jerome

1) Jerome: Homeworld B1 R2 G3
	Laurie_Menke: Hi Jerome! Thanks for the ladder challenge! Have fun!

2) Laurie_Menke: Homeworld Y3 B2 G3

3) Jerome: Build G1 Jerome

4) Laurie_Menke: Build G1 Laurie_menke
	Jerome: Hi Laurie, have a nice game!

5) Jerome: Trade G1 Y1 Jerome

6) Laurie_Menke: Trade G1 Y1 Laurie_menke

7) Jerome: Build Y1 Jerome

8) Laurie_Menke: Build Y2 Laurie_menke

9) Jerome: Discover Y1 Jerome G3 Orion

10) Laurie_Menke: Trade Y2 R2 Laurie_menke

11) Jerome: Build Y2 Jerome

12) Laurie_Menke: Build R1 Laurie_menke

13) Jerome: Build Y2 Orion

14) Laurie_Menke: Discover Y1 Laurie_menke G1 Forest

15) Jerome: Discover Y2 Orion G2 Alpha

16) Laurie_Menke: Trade R1 B1 Laurie_menke

17) Jerome: Build Y2 Orion

18) Laurie_Menke: Build Y3 Forest

19) Jerome: Build Y3 Alpha

20) Laurie_Menke: Build G1 Laurie_menke

21) Jerome: Trade Y2 B2 Jerome

22) Laurie_Menke: Move Y1 Forest Alpha

23) Jerome: Discover Y3 Alpha B1 Sirius

24) Laurie_Menke: Build Y2 Forest

25) Jerome: Move B2 Jerome Orion

26) Laurie_Menke: Move Y3 Forest Alpha

27) Jerome: Build B2 Orion

28) Laurie_Menke: Move Y3 Alpha Sirius

29) Jerome: Discover B2 Orion G2 Vega

30) Laurie_Menke: Move Y2 Forest Vega

31) Jerome: Build B3 Orion

32) Laurie_Menke: Sacrifice R2 Laurie_menke
Attack Y3 Sirius
Attack B2 Vega

33) Jerome: Trade B3 R3 Orion

	Laurie_Menke: Ugh. Sorry. But congrats on the win!  :)
	Jerome: What happened?
	Laurie_Menke: I timed out. Ladder games are hard time games, and I got behind. I know it's not the way you wanted to win... sorry.  :(


35499)
Started: 2019.10.4, Ended: 2019.10.17
Participants: ajo (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G3 R1 B3
	Simon: Have fun! This is for the Great Homeworlds Tournament of 2019.

2) ajo: Homeworld B1 Y3 G3

3) Simon: Build B1 Simon
	ajo: For the tournament!

4) ajo: Build G1 Ajo

5) Simon: Build B1 Simon

6) ajo: Trade G1 R1 Ajo

7) Simon: Trade B3 Y3 Simon

8) ajo: Build R1 Ajo

9) Simon: Build B2 Simon

10) ajo: Build R2 Ajo

11) Simon: Trade B2 R2 Simon

12) ajo: Trade R2 B2 Ajo

13) Simon: Discover B1 Simon G2 G2

14) ajo: Move B2 Ajo G2

15) Simon: Build B2 G2

16) ajo: Build R2 Ajo
	ajo: Well, I guess I shouldn't have done that. :)

17) Simon: Build B2 Simon

18) ajo: Discover R2 Ajo Y2 Alpha
	Simon: Hmm, it's surprisingly low-priority to take here for both sides.

19) Simon: Build B3 Simon

20) ajo: Build B3 G2
Catastrophe G2 Blue

21) Simon: Move B3 Simon Alpha
	ajo: Well, I'm already in serious trouble. I thought I was threatening to catastrophe blue if you built that b3, but I missed my lack of yellow.

22) ajo: Discover R2 Alpha Y3 Beta
	Simon: A rare opportunity, yeah. I didn't see it immediately either.

23) Simon: Trade B2 G2 Simon

24) ajo: Build G1 Ajo

25) Simon: Move G2 Simon Alpha

26) ajo: Discover G1 Ajo Y2 Gamma

27) Simon: Move R2 Simon Gamma

28) ajo: Build R2 Ajo

29) Simon: Attack G1 Gamma

30) ajo: Trade R2 B2 Ajo

31) Simon: Build B1 Alpha

32) ajo: Discover B2 Ajo Y2 Delta

33) Simon: Build B2 Alpha
	ajo: Well, I am just walling myself in...

34) ajo: Trade B2 G2 Delta

35) Simon: Trade B2 R2 Alpha

36) ajo: Sacrifice G2 Delta
Build R3 Beta
Pass

37) Simon: Build G1 Alpha

38) ajo: Discover R2 Beta G2 Green

39) Simon: Sacrifice G2 Alpha
Build R3 Alpha
Build R3 Gamma

40) ajo: Build G1 Ajo

41) Simon: Sacrifice Y3 Simon
Move G1 Alpha Ajo
Move G1 Gamma Ajo
Move R3 Alpha Ajo
Catastrophe Ajo Green
	ajo: Yeah, I think I'm dead.

	Simon: Yeah, every early turn is valuable.


35461)
Started: 2019.10.4, Ended: 2019.12.14
Participants: goulo (S), kataclysm (N)
Winner: goulo

1) kataclysm: Homeworld G2 B1 Y3

2) goulo: Homeworld B2 G3 Y3

	goulo: hi kat! this is for the tournament, right?


35464)
Variants: "Unrated"
Started: 2019.10.6, Ended: 2019.10.10
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld R2 G3 B3

2) wil: H B2 Y1 G3

3) Trydnt: Build B1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Build B1 Trydnt

6) wil: T G1 B1 Wil

7) Trydnt: Trade B1 Y1 Trydnt

8) wil: B B1 Wil

9) Trydnt: Build Y1 Trydnt

10) wil: D B1 Wil Y3 Y3

11) Trydnt: Build B2 Trydnt

12) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil

13) Trydnt: Build Y2 Trydnt

14) wil: T B2 Y2 Y3

15) Trydnt: Sacrifice Y2 Trydnt
Discover B2 Trydnt G1 G1
Discover B2 G1 G3 G3

16) wil: T B3 G3 Y3

17) Trydnt: Sacrifice Y1 Trydnt
Move B2 G3 Wil
Catastrophe Wil B



35462)
Variants: "Hard time"
Started: 2019.10.6, Ended: 2019.10.24
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt

1) dlwillson: H R1 B3 G3

2) Trydnt: Homeworld Y3 B2 G3
	dlwillson: Thanks for taking my challenge!
	dlwillson: Thanks for taking my challenge!

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build G1 Trydnt

5) dlwillson: T G1 Y1 Dlwillson

6) Trydnt: Trade G1 R1 Trydnt

7) dlwillson: B Y1 Dlwillson

8) Trydnt: Build R1 Trydnt

9) dlwillson: B Y1 Dlwillson

10) Trydnt: Build R2 Trydnt

11) dlwillson: D Y1 Dlwillson B2 Sea

12) Trydnt: Discover R1 Trydnt B1 B1

13) dlwillson: D Y1 Dlwillson Y2 Sol

14) Trydnt: Sacrifice G3 Trydnt
Build R2 Trydnt
Build R2 B1
Build R3 B1

15) dlwillson: B Y2 Dlwillson

16) Trydnt: Trade R3 Y3 B1

17) dlwillson: B G1 Dlwillson

18) Trydnt: Discover R2 B1 Y3 Y3

19) dlwillson: B Y2 Dlwillson

20) Trydnt: Trade R2 G2 Trydnt

21) dlwillson: T Y2 R2 Dlwillson

22) Trydnt: Sacrifice G2 Trydnt
Build R3 Y3
Build R3 Trydnt

23) dlwillson: S Y2 Dlwillson
M R2 Dlwillson Sea
M Y1 Sol Y3

24) Trydnt: Move R3 Y3 Sea

25) dlwillson: D R2 Sea G1 Forest

26) Trydnt: Sacrifice R2 Trydnt
Attack Y1 Sea
Attack Y1 Y3

27) dlwillson: B R2 Forest

28) Trydnt: Trade R1 G1 B1

29) dlwillson: B Y2 Dlwillson

30) Trydnt: Trade R3 G3 Trydnt

31) dlwillson: T G1 B1 Dlwillson

32) Trydnt: Build Y2 B1

33) dlwillson: S B1 Dlwillson
T R2 G2 Forest

34) Trydnt: Move G1 B1 Sea

35) dlwillson: B R1 Forest

36) Trydnt: Build Y2 Sea

37) dlwillson: Sacrifice Y2 Dlwillson
Move R1 Forest Sea
Discover R1 Sea G1 Alsoforest

38) Trydnt: Build G2 Sea

39) dlwillson: S G2 Forest
B R2 Alsoforest
B R3 Forest

40) Trydnt: Sacrifice G2 Sea
Build G2 Sea
Build R3 Y3

41) dlwillson: Build Y2 Dlwillson

42) Trydnt: Sacrifice Y2 Sea
Move R2 Y3 Forest
Move R1 Trydnt Forest
Catastrophe Forest R

43) dlwillson: T Y1 B1 Dlwillson

44) Trydnt: Build G1 Sea

45) dlwillson: S B1 Dlwillson
T R2 Y2 Alsoforest

46) Trydnt: Build Y1 Sea

47) dlwillson: B R1 Alsoforest

48) Trydnt: Sacrifice Y3 B1
Move G1 Sea Dlwillson
Move G1 Sea Dlwillson
Move G2 Sea Dlwillson
Catastrophe Dlwillson G

49) dlwillson: B Y3 Alsoforest

50) Trydnt: Sacrifice Y2 B1
Move R3 Y3 Sea
Move R3 Sea Dlwillson

51) dlwillson: Sacrifice Y2 Alsoforest
Move R1 Alsoforest Trydnt
Move Y3 Alsoforest Trydnt

52) Trydnt: Sacrifice R3 Sea
Attack Y3 Trydnt
Attack R1 Trydnt
Attack Y2 Dlwillson

	dlwillson: Yaa!
	Trydnt: well played
	dlwillson: Yeah... Not so sure about that... But *you* played very well! :-)


35588)
Variants: "Hard time"
Started: 2019.10.6, Ended: 2019.10.13
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H Y2 B1 G3

2) Trydnt: Homeworld G1 B1 B3 *

3) wil: B G1 Wil

4) Trydnt: Build B1 Trydnt
	wil: Oops

5) wil: B G1 Wil

6) Trydnt: Trade B3 Y3 Trydnt

7) wil: D G1 Wil B3 B3

8) Trydnt: Build B2 Trydnt

9) wil: S G3 Wil
B G2 Wil
B G2 B3
B G2 B3

10) Trydnt: Trade B2 R2 Trydnt

11) wil: T G2 R2 Wil

12) Trydnt: Move Y3 Trydnt B3

13) wil: B G2 Wil

14) Trydnt: Move Y3 B3 Wil

15) wil: T G2 Y2 Wil
	wil: I forgot it was short uni!
	wil: Lol

16) Trydnt: Sacrifice R2 Trydnt
Attack R2 Wil
Attack Y2 Wil
	wil: Gg

17) wil: T G1 Y1 Wil

18) Trydnt: Attack Y1 Wil
	Trydnt: well played :)
	wil: Lol, right!
	wil: I take great pride in losing to you!
	Trydnt: I've largely stopped paying attention to winning and losing and focused more on how to extract the most information from every game to improve my strategies. I'd like to play more weird universe games like this though. I think that an AI will struggle to code switch like we do when taking a different homeworld setup and I'd like to be able to give a supercomputer a proper challenge
	wil: U way to smart for me



35412)
Variants: "Hard time"
Started: 2019.10.8, Ended: 2019.10.31
Participants: Trydnt (S), deanthebean (N)
Winner: Trydnt

1) deanthebean: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B3 G2 Y3
	deanthebean: Hello. Have fun!
	Trydnt: you too and good luck

3) deanthebean: Build G1 Deanthebean

4) Trydnt: Build Y1 Trydnt
	deanthebean: Thanks.

5) deanthebean: Trade G1 Y1 Deanthebean

6) Trydnt: Build Y2 Trydnt

7) deanthebean: Build G1 Deanthebean

8) Trydnt: Discover Y1 Trydnt G1 G1

9) deanthebean: Discover Y1 Deanthebean G3 G3

10) Trydnt: Discover Y2 Trydnt B1 B1

11) deanthebean: Build Y2 G3

12) Trydnt: Build Y2 Trydnt

13) deanthebean: Discover Y1 G3 G1 G1a

14) Trydnt: Trade Y2 R2 Trydnt

15) deanthebean: Sacrifice G3 Deanthebean
Build G2 Deanthebean
Build Y2 G1a
Build Y3 G3

16) Trydnt: Build Y3 G1

17) deanthebean: Build G2 Deanthebean

18) Trydnt: Sacrifice Y2 B1
Move Y3 G1 G3
Move Y3 G3 Deanthebean

19) deanthebean: Build Y2 G1a

20) Trydnt: Build R1 Trydnt

21) deanthebean: Sacrifice Y3 G3

Move Y1 G1a G3
Move Y1 G3 Deanthebean
Move Y2 G3 Deanthebean
Catastrophe Deanthebean Yellow

22) Trydnt: Discover R2 Trydnt Y1 Y1

23) deanthebean: Trade G2 R2 Deanthebean
	deanthebean: Desperation!

24) Trydnt: Build R1 Trydnt

25) deanthebean: Build G2 Deanthebean

26) Trydnt: Discover Y1 G1 G3 G3

27) deanthebean: Trade G2 Y2 Deanthebean

28) Trydnt: Trade R1 B1 Trydnt

29) deanthebean: Move Y2 G1a G3

30) Trydnt: Sacrifice Y1 G3
Discover R2 Y1 G3 Gee3

31) deanthebean: Build Y1 G1a

32) Trydnt: Build B1 Trydnt

33) deanthebean: Discover Y2 G3 B1 B1

34) Trydnt: Discover B1 Trydnt Y1 Y1

35) deanthebean: Trade Y2 B2 B1

36) Trydnt: Move B1 Y1 Gee3
	deanthebean: trade y2 b2 b1

37) deanthebean: Sacrifice Y1 G1a
Discover B2 B1 G2 G2

38) Trydnt: Build B1 Gee3

39) deanthebean: Build B2 G2

40) Trydnt: Sacrifice Y3 Trydnt
Move B1 Gee3 Deanthebean
Move B1 Gee3 Deanthebean
Discover B1 Trydnt Y1 Y1

	deanthebean: Yup. That works. Well played!
	Trydnt: you too :)


35595)
Started: 2019.10.9, Ended: 2019.10.21
Participants: Felix (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	Babamots: This is for the tournament, correct?

2) Felix: Homeworld G1 R3 B3
	Felix: Only if I win! Haha, correctamundo.

3) Babamots: Build G1 Babamots

4) Felix: Build B1 Felix

5) Babamots: Build G1 Babamots
	Babamots: You'll accept the result if you win, eh? Sounds like a slimy guy I saw running for office once.

6) Felix: Build B1 Felix
	Felix: All I know is that if I lose, I'm blaming Russia!
	Babamots: It's clearly Russia's fault. If they had done the job properly, I wouldn't have got caught.

7) Babamots: Trade G1 Y1 Babamots

8) Felix: Trade B3 Y3 Felix

9) Babamots: Build G1 Babamots

10) Felix: Build B1 Felix

11) Babamots: Discover G1 Babamots B3 Bolarus

12) Felix: Discover B1 Felix B2 Rumproast

13) Babamots: Build G2 Babamots

14) Felix: Discover B1 Felix B2 Porkbelly
	Babamots: Should a rump roast be blue?
	Felix: Absolutely not. Stay far away from this one.

15) Babamots: Discover G2 Babamots B3 Andoria

16) Felix: Build B3 Felix

17) Babamots: Sacrifice G3 Babamots
Build G2 Andoria
Build G2 Bolarus
Build G3 Babamots

18) Felix: Trade B3 G3 Felix

19) Babamots: Sacrifice G3 Babamots
Build G3 Bolarus
Build Y1 Babamots
Build G3 Babamots

20) Felix: Move G3 Felix Porkbelly

21) Babamots: Discover Y1 Babamots B3 Betazed

22) Felix: Trade B1 R1 Porkbelly

23) Babamots: Sacrifice G3 Bolarus
Build Y1 Babamots
Build Y2 Betazed
Build G3 Bolarus

24) Felix: Build Y2 Felix

25) Babamots: Trade G3 R3 Bolarus

26) Felix: Build G3 Porkbelly

27) Babamots: Sacrifice Y2 Betazed
Move G2 Andoria Porkbelly
Move G2 Bolarus Porkbelly
Catastrophe Porkbelly G

28) Felix: Build B1 Felix

29) Babamots: Sacrifice G3 Babamots
Build G2 Andoria
Build G2 Bolarus
Build G3 Babamots

30) Felix: Trade Y3 G3 Felix

31) Babamots: Sacrifice G3 Babamots
Build Y2 Betazed
Build G3 Bolarus
Build G3 Babamots

32) Felix: Build Y2 Felix

33) Babamots: Trade G3 Y3 Bolarus

34) Felix: Move Y2 Felix Porkbelly

35) Babamots: Sacrifice G3 Babamots
Build Y3 Bolarus
Build Y3 Babamots
Build G3 Babamots

36) Felix: Move B1 Felix Porkbelly

37) Babamots: Discover G2 Bolarus R2 Romulus
	Felix: You're being ruthless! I don't have many options here...

38) Felix: Trade G3 R3 Felix
	Babamots: No ruths at all, I'm afraid.

39) Babamots: Sacrifice G3 Babamots
Build G3 Romulus
Build R1 Bolarus
Build G3 Babamots

40) Felix: Discover B1 Felix R2 Ledge

41) Babamots: Move R3 Bolarus Porkbelly

42) Felix: Sacrifice Y2 Porkbelly
Move B1 Porkbelly Bolarus
Move R1 Porkbelly Bolarus

43) Babamots: Sacrifice Y3 Bolarus
Move R1 Bolarus Porkbelly
Move R1 Porkbelly Felix
Move R3 Porkbelly Felix
Catastrophe Felix R

44) Felix: Build Y2 Felix

45) Babamots: Sacrifice Y3 Babamots
Move G1 Bolarus Felix
Move G2 Andoria Felix
Move G2 Andoria Felix
Catastrophe Felix G

	Felix: Well done!
	Babamots: GG! Your stranded crews will be treated humanely. I will give orders that they be allowed to return home. :-D

One of these days I want to draw up an official-looking peace treaty. Anyone who beats me gets a full description of my terms of surrender...


35612)
Variants: "Hard time"
Started: 2019.10.14, Ended: 2019.11.25
Participants: Babamots (S), deanthebean (N)
Winner: Babamots

1) deanthebean: Homeworld B2 Y3 G3
	deanthebean: Thank you for accepting the challenge. Have fun!

2) Babamots: Homeworld B2 R1 G3

3) deanthebean: Build G1 Deanthebean
	Babamots: Sure! I'd like to redeem myself from last time.

4) Babamots: Build G1 Babamots

5) deanthebean: Discover G1 Deanthebean Y1 Helenthemelon

6) Babamots: Trade G1 Y1 Babamots

7) deanthebean: Build G1 Deanthebean

8) Babamots: Build Y1 Babamots

9) deanthebean: Trade G1 R1 Deanthebean

10) Babamots: Build Y2 Babamots

11) deanthebean: Build G1 Deanthebean

12) Babamots: Discover Y2 Babamots G3 Bolarus

13) deanthebean: Build G1 Helenthemelon

14) Babamots: Discover Y1 Babamots B3 Betazed

15) deanthebean: Build G2 Helenthemelon

16) Babamots: Build G2 Babamots

17) deanthebean: Move G2 Helenthemelon Betazed

18) Babamots: Discover Y1 Betazed Y2 Iconia

19) deanthebean: Sacrifice G3 Deanthebean
Build G2 Betazed
Build G3 Deanthebean
Build R1 Deanthebean

20) Babamots: Sacrifice G3 Babamots
Build Y2 Iconia
Build Y3 Babamots
Build G3 Babamots

21) deanthebean: Trade G3 Y3 Deanthebean

22) Babamots: Trade G2 R2 Babamots

23) deanthebean: Trade G2 B2 Betazed

24) Babamots: Move Y3 Babamots Betazed

25) deanthebean: Sacrifice G2 Betazed
Build G2 Deanthebean
Build R2 Deanthebean

26) Babamots: Trade Y3 R3 Betazed

27) deanthebean: Discover G1 Helenthemelon Y3 Peaches

28) Babamots: Attack B2 Betazed

29) deanthebean: Build G2 Peaches

30) Babamots: Sacrifice G3 Babamots
Build R2 Betazed
Build R3 Betazed
Build R3 Babamots

31) deanthebean: Build G2 Helenthemelon
	Babamots: Looks like a bold move, but I think I've calculated correctly and things work out OK for me whatever you do.
	Babamots: Oh, and happy Halloween :-).

32) Babamots: Sacrifice B2 Betazed
Trade R3 G3 Betazed
Trade R3 G3 Babamots
	deanthebean: Yup. Good move (probably). Happy Halloween to you as well. 

33) deanthebean: Move R1 Deanthebean Helenthemelon

34) Babamots: Sacrifice Y1 Iconia
Move R3 Betazed Helenthemelon

35) deanthebean: Move G2 Helenthemelon Bolarus

36) Babamots: Sacrifice R2 Babamots
Attack G2 Bolarus
Attack R1 Helenthemelon

37) deanthebean: Move R1 Deanthebean Helenthemelon

38) Babamots: Sacrifice R1 Helenthemelon
Attack R1 Helenthemelon

39) deanthebean: Move G1 Helenthemelon Bolarus
	Babamots: I lost a high-stakes game by not knowing the sacrifice-red-to-avoid-catastrophe trick. I'm always on the lookout for it now.
	Draw5PlayAll: Which side of it were you on?
	Babamots: I was moving in for the kill when my opponent did the catastrophe-avoiding red sacrifice and took me totally off guard.

40) Babamots: Sacrifice R1 Helenthemelon
Attack G1 Bolarus

41) deanthebean: Discover G1 Deanthebean Y1 Plum

42) Babamots: Sacrifice G1 Bolarus
Build G1 Betazed

43) deanthebean: Build R1 Deanthebean

44) Babamots: Move R3 Helenthemelon Peaches

45) deanthebean: Move G2 Peaches Iconia

46) Babamots: Sacrifice R2 Betazed
Attack G1 Peaches
Attack G2 Iconia

47) deanthebean: Trade R2 B2 Deanthebean

48) Babamots: Discover Y2 Iconia B1 Kronos

	deanthebean: I'm just to far behind and unable to find good moves so well played!
	Babamots: GG!


35613)
Variants: "Hard time"
Started: 2019.10.14, Ended: 2019.11.7
Participants: Trydnt (S), Simon (N)
Winner: Trydnt

1) Simon: Homeworld R1 G3 B3

2) Trydnt: Homeworld B3 Y2 G3
	Simon: Again, have fun!
	Trydnt: you too :)

3) Simon: Build B1 Simon

4) Trydnt: Build G1 Trydnt
	Trydnt: so few people start with goldilocks. what is your thinking in doing so if I may ask

5) Simon: Build B1 Simon
	Simon: Hmm, Goldilocks gives most control over when/which 3-pip pieces become available.
	Trydnt: surely that would be banker as you can go straight to the 3s and if you can defend them you can turn them into ships later

6) Trydnt: Build G1 Trydnt

7) Simon: Trade B3 Y3 Simon
	Simon: Banker prevents 3-pips, Goldilocks enables 3-pips :)
	Trydnt: but only in the mid-to-late game and at that point surely your opponent can usually fly to the 2 pip stars too and have the same advantage. banker you leave one more 3 pip piece in the bank and you can fly to them so you can control which ones your opponent can and cannot grow

8) Trydnt: Discover G1 Trydnt G1 G1

9) Simon: Build B1 Simon

10) Trydnt: Sacrifice G3 Trydnt
Build G2 Trydnt
Build G2 Trydnt
Build G2 G1

11) Simon: Discover B1 Simon B2 B2

12) Trydnt: Discover G2 Trydnt Y1 Y1

13) Simon: Build B2 Simon

14) Trydnt: Build G3 Trydnt

15) Simon: Discover B1 Simon B2 B2a

16) Trydnt: Build G3 Y1

17) Simon: Build B3 Simon

18) Trydnt: Trade G2 R2 Trydnt

19) Simon: Trade B2 G2 Simon

20) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R1 Trydnt
Build R1 Trydnt

21) Simon: Trade B3 R3 Simon

22) Trydnt: Discover G2 Y1 B3 B3

23) Simon: Move R3 Simon B2

24) Trydnt: Move R1 Trydnt Y1

25) Simon: Move G2 Simon B2

26) Trydnt: Sacrifice G2 G1
Build G2 B3
Build R2 Y1

27) Simon: Build B2 B2

28) Trydnt: Discover R2 Y1 B3 Bee3

29) Simon: Trade B2 Y2 B2

30) Trydnt: Trade G2 Y2 B3

31) Simon: Build G2 B2

32) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 Bee3
Build R3 Y1

33) Simon: Discover G2 B2 R3 R3

34) Trydnt: Move G2 B3 B2a

35) Simon: Sacrifice G2 R3
Build R3 B2
Build B2 B2a

36) Trydnt: Sacrifice Y2 B3
Move R1 Y1 B2
Move R2 Bee3 B2
Catastrophe B2 R

37) Simon: Build B3 B2

38) Trydnt: Move R3 Y1 B2

39) Simon: Sacrifice Y2 B2
Discover B3 B2 R1 R1
Move G2 B2 R1

40) Trydnt: Attack B1 B2

41) Simon: Build G2 R1

42) Trydnt: Sacrifice G3 Trydnt
Build R2 B2
Build R3 Bee3
Build R3 Trydnt

43) Simon: Trade G2 Y2 R1

44) Trydnt: Trade R2 Y2 Bee3

45) Simon: Build Y1 Simon

46) Trydnt: Trade R3 Y3 B2

47) Simon: Discover Y1 Simon G2 G2

48) Trydnt: Sacrifice G2 B2a
Build Y1 Bee3
Build Y3 B2

49) Simon: Trade B2 R2 B2a

50) Trydnt: Sacrifice Y2 Bee3
Move R1 Trydnt Y1
Discover Y3 B2 R3 R3

51) Simon: Build Y2 G2

52) Trydnt: Move Y3 R3 B2a

53) Simon: Build B2 R1

54) Trydnt: Move B1 B2 Y1

55) Simon: Move Y2 G2 G1

56) Trydnt: Build R3 Y1

57) Simon: Sacrifice Y1 G2
Discover B1 B2a Y1 Y1b

58) Trydnt: Sacrifice R1 Y1
Attack R2 B2a

59) Simon: Build G2 R1

60) Trydnt: Sacrifice Y3 B2a
Move R3 Bee3 B2
Move R3 B2 Simon
Move R2 B2a Simon

61) Simon: Attack R3 Simon

62) Trydnt: Build R1 Simon
Catastrophe Simon R

63) Simon: Trade Y3 R3 Simon

64) Trydnt: Sacrifice Y3 B2
Move G1 G1 Simon
Move G3 Y1 Simon
Move G1 Trydnt Y1

	Simon: gg, enjoy first place!
	Trydnt: Well played! That was one hell of a game. Even once I had a material advantage you really made me work for it. I doubt I'll last that long but good to be on top for however short a time :)
	Simon: It's the textbook example game for the g3 ship. The problem of green home star, then trading b3 starting ship into y3, is that it cannot contest monopolies in red/green.

I'll have to study this opening even deeper, and see how expensive it have been be to make an early green ship. In the game, the first 10 moves felt like a one-way street and yet it reached a disadvantage even as first-moving player.
	Trydnt: Yeah I see what you mean. You kind of have to bank on getting a b2 forward to a star in time to trade it for a remaining g2 but that also makes it hard to get an early y2 which can be essential to limiting your opponents growth


35614)
Variants: "Hard time"
Started: 2019.10.15, Ended: 2019.11.27
Participants: dlwillson (S), Felix (N)
Winner: dlwillson

1) Felix: Homeworld G3 R1 B3

2) dlwillson: H Y3 B2 G3

3) Felix: Build B1 Felix

4) dlwillson: B G1 Dlwillson
	Felix: Hey David :) Have fun as usual. Hope you're doing well!
-Daniel

5) Felix: Trade B1 R1 Felix
	dlwillson: Hi Daniel :-)

That new guy is pretty tough, huh? Like Babamots and ... Another player whose name can't call to mind. Things are good. New job. SFS is going pretty well. We're doing our one-day intro to DevOps on Saturday. Pretty big deal for us.
	Felix: Indeed! Simon's doing very well lately. He's been impressing me very much with the r1 g3 b3 opening. Hence me trying to use it here with you :) I've lost to it twice in a row now. It's unusual enough to throw off players who are used to scrambling for blue or yellow to target the opponents homeworld with catastrophe.

Jonathan (Babamots) is really getting good too. It's nice to see more players really pushing the skill envelope upward!

Sounds exciting. Congrats on the new job! I'm just being a dad over here. Gearing up for our third kiddo to arrive in late November. We moved into a new house too, so lots to do there! Always busy, but always enough time for a game or two of Homeworlds :)

6) dlwillson: T G1 R1 Dlwillson

7) Felix: Build R2 Felix

8) dlwillson: B R2 Dlwillson

9) Felix: Trade R2 Y2 Felix

10) dlwillson: B R2 Dlwillson

11) Felix: Discover R1 Felix G2 Leaf

12) dlwillson: Discover R2 Dlwillson Y1 Sol

13) Felix: Build B1 Felix
	dlwillson: I think TeeTeeTee is the strong player whose name I couldn't think of earlier.
	dlwillson: You know I only recently realized that you and Daniel Sellers from the Homeworlds Game Platform project are the same guy.

It's like Superman / Clark Kent. The cape and glasses really do change the appearance.
	Felix: Yep, that's me! Felix is an old screen-name I've used for years (Back when forums were the greatest thing on the internet, hehe)

TeeTeeTee is the strongest player I've played against. Never beaten him! I wonder where he's been?

14) dlwillson: T R1 B1 Dlwillson

15) Felix: Build Y1 Felix

16) dlwillson: B R1 Dlwillson

17) Felix: Move Y2 Felix Leaf

18) dlwillson: D R2 Dlwillson G1 Field
	Draw5PlayAll: Wait... Homeworlds Game Platform project? What's this?

19) Felix: Build Y1 Leaf
	dlwillson: https://gitlab.com/homeworlds-admirals/homeworlds-game-platform

20) dlwillson: Discover R2 Sol R3 Mars

21) Felix: Move B1 Felix Leaf

22) dlwillson: S G3 Dlwillson
B R2 Mars
B R3 Dlwillson
B R3 Field

23) Felix: Build Y1 Felix

24) dlwillson: S B1 Dlwillson
T R2 Y2 Field
	dlwillson: 

25) Felix: Build R2 Leaf

26) dlwillson: T R3 G3 Dlwillson

27) Felix: Build R3 Leaf
	dlwillson: Oops! I was supposed to be heading to Leaf with the r3 this turn! Forgot to leave myself a note! :-)
	Felix: Feel free to undo!
	dlwillson: Nah nah. The current move is good. You go. I'll invade Leaf later, if the opportunity presents itself.

28) dlwillson: S Y2 Field
M R2 Mars Leaf
C Leaf R
M R2 Mars Leaf

29) Felix: Sacrifice Y2 Leaf
Discover Y1 Leaf G1 Runnn
Move B1 Leaf Runnn

30) dlwillson: B G1 Dlwillson
	dlwillson: Mid-turn catastrophes introduce interesting tactical possibilities!

31) Felix: Build Y2 Runnn
	Felix: Indeed! I love the chance to use that mechanic.

32) dlwillson: T G1 B1 Dlwillson

33) Felix: Trade Y2 R2 Runnn

34) dlwillson: B R1 Field

35) Felix: Build Y2 Runnn

36) dlwillson: M B1 Dlwillson Field

37) Felix: Build Y2 Runnn

38) dlwillson: T R3 Y3 Field

39) Felix: Discover Y1 Felix R2 Absorption

40) dlwillson: Sacrifice G3 Dlwillson
Build R3 Field
Build R3 Leaf
Build R3 Dlwillson

41) Felix: Build B1 Runnn

42) dlwillson: B B2 Field

43) Felix: Discover Y1 Absorption G1 Insertion

44) dlwillson: S Y3 Field
M R3 Field Leaf
M R3 Leaf Felix
M R3 Leaf Runnn

45) Felix: Attack R3 Felix

46) dlwillson: S R2 Leaf
A R2 Runnn
A Y2 Runnn

47) Felix: Build Y2 Insertion

48) dlwillson: S R2 Runnn
A Y2 Runnn
A Y1 Runnn

49) Felix: Build Y3 Felix

50) dlwillson: B R2 Runnn

51) Felix: Build B2 Runnn

52) dlwillson: A B2 Runnn

53) Felix: Build B3 Felix

54) dlwillson: S R2 Runnn
A B1 Runnn
A B1 Runnn

55) Felix: Sacrifice Y2 Insertion
Discover B3 Felix G2 Temp
Move B3 Temp Insertion

56) dlwillson: B B3 Field

57) Felix: Discover Y3 Felix Y2 Lip

58) dlwillson: S B2 Runnn
T R3 G3 Dlwillson
T B3 Y3 Field

59) Felix: Move Y3 Lip Runnn
Catastrophe Runnn Yellow

60) dlwillson: B R2 Runnn

61) Felix: Discover R3 Felix G2 Outro

62) dlwillson: S G3 Dlwillson
B R2 Dlwillson
B R2 Field
B R3 Dlwillson

63) Felix: Build Y1 Insertion

64) dlwillson: S B2 Field
T R3 G3 Dlwillson
T R3 B3 Runnn
	dlwillson: Something about this feels unsafe, even after counting...

65) Felix: Build Y2 Felix
	Felix: I know the feeling, but I think you're good!


66) dlwillson: B R3 Runnn

67) Felix: Build R3 Outro

68) dlwillson: S Y3 Field
M R2 Field Outro
M R2 Runnn Outro
M B3 Runnn Outro
C Outro R

69) Felix: Build B2 Insertion

70) dlwillson: B R2 Field

71) Felix: Build B2 Insertion

72) dlwillson: S G3 Dlwillson
B R2 Runnn
B R3 Dlwillson
B R3 Field

73) Felix: Move B3 Insertion Dlwillson

74) dlwillson: Attack B3 Dlwillson

75) Felix: Sacrifice Y2 Felix
Move B2 Insertion Dlwillson
Move B2 Insertion Dlwillson
Catastrophe Dlwillson Blue

76) dlwillson: Trade B3 Y3 Outro
	dlwillson: Uh oh...

77) Felix: Build Y2 Felix
	Felix: I'm probably pulling the trigger too early here, but oh well!

78) dlwillson: B Y2 Outro
	dlwillson: I sure hope so! We'll know in a turn or two!

79) Felix: Discover Y1 Felix Y2 Sunshine

80) dlwillson: Sacrifice Y2 Outro
Move R2 Dlwillson Insertion
Move R3 Field Sunshine

81) Felix: Sacrifice Y1 Insertion
Discover Y1 Insertion G2 Brink
	dlwillson: Hm
Hmm
Hmmm

I think there's a way out of this mess, but it's not immediately obvious. A moment, sir, if you please.

Hmmmm
	Felix: Take all the time you need!

82) dlwillson: S Y3 Outro
M R3 Runnn Sunshine
M R3 Sunshine Felix
M R3 Sunshine Felix
	dlwillson: I'm not at all sure this does the trick, but I hope it does. I guess I'll know in two turns!

	Felix: Shucks. So close! I had a gut feeling this was all a bad idea. I also got tunnel vision and didn't notice your obvious threat :) Well done!
	dlwillson: Thank you for an excellent game, as always, Mr. Sellers!
	Felix: Likewise! My middle name also starts with an L, actually, so perhaps I should change my username to dlsellers :P
	dlwillson: Great idea! :-)


35463)
Variants: "Hard time"
Started: 2019.10.16, Ended: 2019.10.19
Participants: wil (S), capi3101 (N)
Winner: wil

1) capi3101: Homeworld G1 B2 Y3
	capi3101: Greetings. First game here at SDG; I'm assuming you issued a general challenge for an opponent. If not, I'll leave the game. For now I'll go ahead and play...

2) wil: H B3 Y2 G3
	wil: Thanks for the challenge, have fun!

3) capi3101: Build Y1 Capi3101

4) wil: B G1 Wil

5) capi3101: Build Y1 Capi3101

6) wil: D G1 Wil G1 G1
	capi3101: About had a panic attack there - accidentally hit the "resign" button instead of "submit orders"...

7) capi3101: Trade Y1 B1 Capi3101
	wil: Didn't mean to scare you so early...
	wil: So...familiar with the game?

8) wil: B G2 Wil

9) capi3101: Discover Y1 Capi3101 B3 Tribulatio
	capi3101: Yeah, I've been playing this off and on over the last couple decades (for reference, I have a Martian Chess set that had the rules for IceTraders - the ancestor of Homeworlds - in it).
	capi3101: I'm out of practice with Homeworlds, though...don't have anyone to play it with locally.
	wil: This is an awesome place to hone those skills
	wil: But yes, we have to create our own challengers

10) wil: T G2 Y2 Wil

11) capi3101: Build B1 Capi3101

12) wil: B G2 Wil

13) capi3101: Trade Y3 G3 Capi3101
	Draw5PlayAll: You can also download a (rather weak) AI program that user "ajo" made at github.com/Quuxplusone/homeworlds

14) wil: B G2 G1
	capi3101: Hmm. Sure would like a green ship...only got one option there though.

15) capi3101: Trade B1 Y1 Capi3101
	capi3101: Probably a sub-optimal move there...

16) wil: M Y2 Wil G1
	wil: Ya gotta do what ya gotta do!

17) capi3101: Build G2 Capi3101

18) wil: S Y2 G1
D G1 G1 Y3 Y3
M G1 Y3 Capi3101
C Capi3101 G
	capi3101: Well, dadgummit...

19) capi3101: Trade B1 G1 Capi3101

20) wil: T G2 Y2 Wil
	wil: Well, we can't have that...
	capi3101: Crap...completely missed that. Well, hell's bells. Told you I was out of practice...

21) capi3101: Move Y1 Tribulatio Capi3101
	wil: We will tighten you up

22) wil: M Y2 Wil G1

23) capi3101: Trade Y1 R1 Capi3101

24) wil: M Y2 G1 Capi3101

	wil: I'll not dawdle, so we can start again..
	capi3101: Ugh. Pains me...first game of this I've played in like, a decade or so...
	capi3101: You're right though - pretty sure I've lost this one.
	wil: Meh, losing helps mistakes you won't make again
	wil: Challenge me anytime
	wil: Get back on the horse...


35617)
Started: 2019.10.16, Ended: 2019.10.21
Participants: capi3101 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld G3 R1 B3

2) capi3101: Homeworld G1 B2 Y3
	Babamots: Welcome to the site! Let me know if you need any help figuring out the move commands.
	capi3101: Thanks. Looking forward to being utterly trampled...

Went ahead and started another 2 games; interface seems easy enough but I'll let you know if I need help with it.

3) Babamots: Build B1 Babamots

4) capi3101: Build Y1 Capi3101

5) Babamots: Trade B1 Y1 Babamots

6) capi3101: Trade Y1 G1 Capi3101

7) Babamots: Build B1 Babamots

8) capi3101: Build Y1 Capi3101

9) Babamots: Build B1 Babamots

10) capi3101: Discover G1 Capi3101 B3 Advorsus

11) Babamots: Trade B1 G1 Babamots

12) capi3101: Build G2 Advorsus

13) Babamots: Build G2 Babamots

14) capi3101: Trade G2 Y2 Advorsus

15) Babamots: Discover G2 Babamots B2 Bolarus

16) capi3101: Build G2 Advorsus

17) Babamots: Build G2 Bolarus

18) capi3101: Move G1 Advorsus Bolarus

19) Babamots: Trade G2 R2 Bolarus

20) capi3101: Trade Y3 G3 Capi3101
	capi3101: Yep. I screwed that up. Knew you'd trade for a red as soon as I mashed the submit button...

21) Babamots: Attack G1 Bolarus

22) capi3101: Trade Y2 R2 Advorsus
	Babamots: We are playing with "undo" available. If you decide you didn't like your move, you can go back to the game page and hit the "Undo Last Move" button. This only works once, though. If you undo a move and make another move, you can't undo the second one.
	capi3101: Ah. I'll keep that in mind.

23) Babamots: Trade G2 Y2 Bolarus

24) capi3101: Build G2 Advorsus

25) Babamots: Build G2 Bolarus

26) capi3101: Trade G2 Y2 Advorsus

27) Babamots: Discover G2 Bolarus G3 Orion

28) capi3101: Build G2 Advorsus

29) Babamots: Discover G1 Babamots B2 Andoria

30) capi3101: Build R1 Advorsus

31) Babamots: Sacrifice G2 Orion
Build G2 Andoria
Build G3 Bolarus

32) capi3101: Trade Y1 R1 Capi3101
	capi3101: Saw that coming - wasn't sure how exactly you'd play it out though. Couldn't think of a way to prevent it either.

Got a problem now, don't I?

33) Babamots: Trade G3 Y3 Bolarus

34) capi3101: Discover G2 Advorsus R2 Desperata
	Babamots: Yeah, you have a bit of a problem. I'm not sure where things went wrong either. I'll have to look back at the game archive.

35) Babamots: Build G3 Bolarus

36) capi3101: Build R3 Capi3101

37) Babamots: Move G3 Bolarus Advorsus

38) capi3101: Sacrifice G2 Advorsus
Build G2 Desperata
Build Y1 Advorsus

39) Babamots: Sacrifice R2 Bolarus
Attack R1 Advorsus
Attack R2 Advorsus

40) capi3101: Sacrifice Y2 Advorsus
Move R3 Capi3101 Advorsus
Move R3 Advorsus Andoria

41) Babamots: Sacrifice G2 Andoria
Build G2 Advorsus
Build Y1 Babamots
	Babamots: Uh oh, it looks like you forgot about red sacrifices. I can sacrifice a red ship to capture your r3. Would you like to undo and pick a different move?

It's kind of a strange mechanic since a single red ship can simultaneously deter attacks in every system. "A red anywhere is a red everywhere."
	Babamots: I got nosey and read some of your conversation in an old game with wil. I also got the pieces in the "Martian Chess Set." I read the rules for Homeworlds when they came out, and liked it in theory but I couldn't find opponents. I was at LooneyCon when I heard that SDG had an active HW community, so I got in here and taught them their business ;-).

I hope you love playing on here as much as I have.
	capi3101: Yeah, I suppose I'll undo. Was paying attention to your double yellow and the two reds you captured not too far back...
	capi3101: The game with wil wrapped up yesterday; that one was definitely an exercise in "it's been far long since the last time I played"...
	capi3101: Not doing too much better this game...

42) capi3101: Trade G3 Y3 Capi3101

43) Babamots: Sacrifice G3 Advorsus
Build Y2 Babamots
Build G3 Bolarus
Build G3 Advorsus
	Babamots: I've got checkmate in two moves if you're not careful here. Can you see the problem? I'll give you a hint if you want it.
	capi3101: Let's see if I can spot it...
The sac of the Y3 in Bolarus moves the small green from Andoria and the Y2 in Advorsus to my homeworld, blowing green and leaving me with just the dinky little red ship there.
	capi3101: If I grow Red at my homeworld, the sac of the Y2 at Bolarus moves your two red ships in and blows them up.
	capi3101: Swapping the large ship at my homeworld for a different color seems the best move to move.
	capi3101: On the other hand, that puts a fresh large green in the market.
	capi3101: Hell...

44) capi3101: Attack G1 Andoria
	capi3101: May have only bought myself a move or two at most.
	Babamots: I think you made your best move just now. It'll be a bit of a chore for me to either build up enough blue to catastrophe your star or enough yellow to catastrophe your y3.

My preferred win is to invade with so many large ships that my opponent's biggest red sacrifice can't take them all, but that will never work while you have an r3.

45) Babamots: Sacrifice G3 Advorsus
Build B1 Babamots
Build R2 Advorsus
Build G3 Advorsus

46) capi3101: Trade R3 Y3 Andoria
	capi3101: Running low on materiel...I have an idea of what i want to do; question is going to be whether I've got time to pull it off.

47) Babamots: Sacrifice Y2 Babamots
Move G2 Advorsus Capi3101
Move G3 Advorsus Capi3101

48) capi3101: Attack G3 Capi3101
	Babamots: I'm afraid you won't have enough time to get the red and yellow you need. My invasion starts on my next move.

I only plan to destroy your stars. Your ships and crews will not be harmed.
	Babamots: Your defeated crews will, of course, be treated humanely. :-)

49) Babamots: Sacrifice Y3 Bolarus
Move G1 Bolarus Advorsus
Move G1 Advorsus Capi3101
Catastrophe Capi3101 G
Move B3 Babamots Capi3101
	capi3101: Hmm...
	capi3101: I could let you end it all on the next turn. But let's play it out a tad.

50) capi3101: Sacrifice Y3 Andoria
Move G1 Andoria Babamots
Move G2 Desperata Babamots
Move G2 Desperata Babamots
Catastrophe Babamots G
	capi3101: I won't get to keep it, of course.

51) Babamots: Sacrifice Y2 Bolarus
Move B1 Babamots Capi3101
Move B1 Babamots Capi3101
Catastrophe Capi3101 B

	capi3101: Not that that does me any good...

Where did I go wrong, you think? Did I move out of my home system too quickly?
	Babamots: You're quite right. Some people say "red alert" when their opponent is a move from elimination, but I usually don't. It seems more like taunting than being helpful, especially when they don't have a way out.
	Babamots: I'll look back at the game history and give you some analysis. Do you know how to switch to the archive view and see earlier game states?
	Babamots: Here's a Javascript that switches your SDG view. There are instructions for turning it into a bookmark.

https://github.com/jpeterbaker/SDGchange
	Babamots: You were keeping up just fine until your 9th move. Then you spent a move on trying to be aggressive by moving a g1 to join my pair of g2s. I traded g2 for r2. This did three things:
1) It defended against your invasion since you couldn't cause an advantageous catastrophe anymore.
2) It created a threat since I could attack you.
3) It was a developmental move that I might have made even if you hadn't tried to invade. It got me my first red ship, and you needed to get a red in response soon.

On your 10th move, you traded y3 for g3. This is a little dangerous since you have a green star in your home. It turns into a problem much later and you have to trade that g3 for r3 to avoid catastrophe. My suggestion would have been trading y1 for r1. This would have given you access to every technology at home, and you could have sacrificed the r1 to attack me if I tried to invade Advorsus.

On your 11th move you traded y2 for r2. It was important for you to get a red ship somewhere soon to dissuade me from invading Advorsus, but you traded away the only yellow ship you had in that system. That's one less system in which you can build yellow.

On your 14th move, you built g2. This set me up to do my green sacrifice and score a g3 two moves later. You could have discouraged this on your 15th move by trading a g2 for another color (I suggest yellow). Then the stash would have had an additional g2 and I couldn't have built the g3 right away. It may seem silly to build a ship only to trade it for another color, but since building y2 wasn't an option (a y1 was in the stash), trading for a y2 isn't a bad idea at all. It's common to use the most-used color (green) as a shortcut to larger pieces in other colors. I'll be doing this on my 17th and 18th moves.

On your 16th move, you trade away your only yellow at home. There's only one system where you can build yellow now.

On my 19th move, I invaded Advorsus. You had lots of ships there and you couldn't evacuate them all. You didn't have a large ship to defend them, and you didn't have a green ship there that you could use to catastrophe my large. Ideally, you would have had a second colony (like my Andoria and Bolarus) so that
1) It would have been easier to build many ships without danger of overpopulation.
2) If I invaded either colony, there would only be half as many ships to capture.

You do a fairly good job of responding to my invasion. You try to sacrifice away medium ships on your 19th and 20th moves. It might have been better to sacrifice the y2 to move your r2 and g2 to two (different) new systems so I could only capture smalls.

At this point, I have a good fleet on your doorstep and quite a bit of yellow. It's pretty hard to come back from that.


35620)
Started: 2019.10.16, Ended: 2019.12.15
Participants: ts52 (S), DodoBirb (N)
Winner: ts52

1) DodoBirb: Homeworld B2 R1 G3
	DodoBirb: Good Luck! This game is for the Tournament

2) ts52: Homeworld Y3 B2 G3
	ts52: Thanks! Good luck to you too!

3) DodoBirb: Build G1 Dodobirb

4) ts52: Build G1 Ts52

5) DodoBirb: Trade G1 Y1 Dodobirb

6) ts52: Trade G1 R1 Ts52

7) DodoBirb: Trade Y1 R1 Dodobirb

8) ts52: Build R2 Ts52

9) DodoBirb: Build R2 Dodobirb

10) ts52: Trade R2 B2 Ts52

11) DodoBirb: Trade R1 Y1 Dodobirb

12) ts52: Build G1 Ts52

13) DodoBirb: Build Y1 Dodobirb

14) ts52: Build B1 Ts52

15) DodoBirb: Trade Y1 B1 Dodobirb

16) ts52: Discover B2 Ts52 G1 Kermit

17) DodoBirb: Discover B1 Dodobirb G3 Greeny

18) ts52: Trade B1 Y1 Ts52

19) DodoBirb: Move R2 Dodobirb Greeny

20) ts52: Build B1 Kermit

21) DodoBirb: Build B1 Greeny

22) ts52: Trade B2 Y2 Kermit

23) DodoBirb: Trade B1 Y1 Greeny

24) ts52: Build Y2 Kermit

25) DodoBirb: Build Y2 Dodobirb

26) ts52: Trade Y2 R2 Kermit

27) DodoBirb: Build G1 Dodobirb

28) ts52: Discover G1 Ts52 B1 Gonzo

29) DodoBirb: Discover G1 Dodobirb B3 Bluey

30) ts52: Build G2 Ts52

31) DodoBirb: Build G2 Dodobirb

32) ts52: Move Y1 Ts52 Gonzo

33) DodoBirb: Move Y1 Dodobirb Bluey

34) ts52: Build R1 Ts52
	ts52: sorry, typo'd

35) DodoBirb: Build Y2 Bluey

36) ts52: Sacrifice G2 Ts52
Build Y3 Gonzo
Build Y3 Kermit

37) DodoBirb: Sacrifice Y2 Bluey
Move Y1 Bluey Kermit
Move Y1 Greeny Kermit
Catastrophe Kermit Y

38) ts52: Build G2 Gonzo

39) DodoBirb: Build G2 Bluey

40) ts52: Move Y3 Gonzo Greeny

41) DodoBirb: Build Y1 Dodobirb

42) ts52: Sacrifice R1 Ts52
Attack R2 Greeny

43) DodoBirb: Trade G1 R1 Bluey

44) ts52: Attack B1 Greeny

45) DodoBirb: Build G1 Bluey

46) ts52: Sacrifice G2 Gonzo
Build B2 Greeny
Build B3 Kermit

47) DodoBirb: Build Y1 Dodobirb

48) ts52: Build B3 Greeny

49) DodoBirb: Move Y1 Dodobirb Bluey

50) ts52: Trade B3 Y3 Kermit

51) DodoBirb: Build Y2 Bluey

52) ts52: Build B3 Kermit

53) DodoBirb: Build G2 Bluey

54) ts52: Move G1 Gonzo Bluey
Catastrophe Bluey Green

55) DodoBirb: Move G2 Dodobirb Bluey

56) ts52: Trade B3 R3 Greeny

57) DodoBirb: Build G1 Dodobirb

58) ts52: Build B3 Greeny

59) DodoBirb: Build R2 Bluey

60) ts52: Sacrifice Y3 Greeny
Move B1 Greeny Dodobirb
Move B2 Greeny Dodobirb
Move B3 Greeny Dodobirb
Catastrophe Dodobirb Blue

61) DodoBirb: Pass

62) ts52: Sacrifice Y3 Kermit
Move R3 Greeny Dodobirb
Move R2 Greeny Dodobirb
Move R1 Ts52 Dodobirb
Catastrophe Dodobirb Red

	DodoBirb: Good game!
	ts52: Thanks. Good game!


35616)
Variants: "Hard time"
Started: 2019.10.16, Ended: 2019.11.3
Participants: wil (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) wil: H Y3 B3 G3 *

3) Draw5PlayAll: Build G1 Draw5playall
	wil: Good luck, have fun
	wil: My he protégé has now surpassed me...

4) wil: B G1 Wil

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) wil: D G1 Wil B1 B1

7) Draw5PlayAll: Build G1 Draw5playall
	wil: I hear you enjoy odd openings and short unis
	wil: Trydnt n I would play all these combos,5 games a night
	wil: I play these with Andy to keep him prepared!
	Draw5PlayAll: 5 games a night?
11 vs 22, 11 vs 33, 22 vs 33 is already 3 of them.

8) wil: B G1 Wil
	Draw5PlayAll: I guess no more homeworld factories, unless you also keep an R3 there (Y3 for me)...

9) Draw5PlayAll: Trade G1 R1 Draw5playall
	wil: Factories need not be at home...
	wil: 13 v 22 is still microverse and there are miniverses
	Draw5PlayAll: Do you prefer 12 vs 12 miniverses, or 12 vs 22?
	Draw5PlayAll: ...or 22 vs 22?

10) wil: T G1 R1 Wil

11) Draw5PlayAll: Build G1 Draw5playall

12) wil: B R1 Wil

13) Draw5PlayAll: Discover R1 Draw5playall G1 Build
	wil: I don't have a preference or a go to response..
	wil: I haven't found anything to be unbeatable

14) wil: M R1 Wil Build

15) Draw5PlayAll: Attack R1 Build
	wil: I like the zoning, commute, views, plenty of space!+

16) wil: B R2 Wil

17) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover R1 Build G2 Construct

18) wil: T R1 B1 Wil

19) Draw5PlayAll: Trade G1 Y1 Draw5playall

20) wil: B G1 Wil

21) Draw5PlayAll: Build G2 Draw5playall

22) wil: M G1 Wil Draw5playall

23) Draw5PlayAll: Trade G3 Y3 Draw5playall
	wil: Hello, always surprised how quiet u r in games u r in
	Draw5PlayAll: My moods change

24) wil: B G2 Draw5playall

25) Draw5PlayAll: Build G3 Draw5playall
Catastrophe Draw5playall Green

26) wil: B B1 Wil
	wil: Lol, my mood does too! when you interupt in other games

27) Draw5PlayAll: Trade Y3 G3 Draw5playall
	Draw5PlayAll: So who lost more in that whole shenanigans?

28) wil: D B1 Wil G1 Gee1
	wil: You tell me, count ships.

29) Draw5PlayAll: Build G2 Draw5playall

30) wil: B G2 Wil

31) Draw5PlayAll: Trade G2 Y2 Draw5playall

32) wil: S G3 Wil
B B2 Gee1
B B2 Gee1
B B3 Wil

33) Draw5PlayAll: Build R1 Construct

34) wil: B G2 Wil

35) Draw5PlayAll: Build G3 Draw5playall

36) wil: M B3 Wil Build
	wil: Let's get this party started

37) Draw5PlayAll: Move G3 Draw5playall Wil

38) wil: B G3 B1
	Draw5PlayAll: I just realized this was a ladder game not a tournament game...

39) Draw5PlayAll: Sacrifice R1 Build
Attack B1 Wil
	wil: ?? Didn't you challenge me??

40) wil: S G1 B1
B G1 Wil
C Wil G
	wil: Do you play differently in tournaments and ladders?

41) Draw5PlayAll: Move G3 Draw5playall Wil
	Draw5PlayAll: Oh, I was just thinking about how horribly I was doing in the tournament, expecting to lose this game... and then I realized that it's not for the tournament...

...and now I *think* I have mate in 4.
	wil: Lol, I moved.out my 3?

	wil: Ya got this
	wil: Gg
	Draw5PlayAll: Now on to Simon or Trydnt


35618)
Started: 2019.10.17, Ended: 2019.12.29
Participants: capi3101 (S), Laurie_Menke (N)
Winner: capi3101

1) Laurie_Menke: Homeworld R1 B3 G3
	Laurie_Menke: Hi there! Glad you could make it! Have fun, and feel free to ask questions if you have any.  :)

2) capi3101: Homeworld G1 B2 Y3

3) Laurie_Menke: Build G1 Laurie_menke
	capi3101: Will do, thanks. Looking forward to getting trounced...
	Laurie_Menke: LOL! We'll see... I'm only about a mid-level player.  :)

4) capi3101: Build Y1 Capi3101

5) Laurie_Menke: Trade G1 Y1 Laurie_menke

6) capi3101: Trade Y1 B1 Capi3101

7) Laurie_Menke: Build G1 Laurie_menke

8) capi3101: Build Y1 Capi3101

9) Laurie_Menke: Trade G1 R1 Laurie_menke

10) capi3101: Build B1 Capi3101

11) Laurie_Menke: Build G1 Laurie_menke

12) capi3101: Trade B1 R1 Capi3101

13) Laurie_Menke: Build R2 Laurie_menke

14) capi3101: Build B1 Capi3101

15) Laurie_Menke: Discover R2 Laurie_menke B2 Blue

16) capi3101: Build R2 Capi3101

17) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Oops! Sorry for timing out... life got away from me a bit!

18) capi3101: Discover B1 Capi3101 G3 Viridi
	capi3101: No problem; I figured it was something like that. If you need to stop the game, just say so.

19) Laurie_Menke: Move G1 Laurie_menke Blue
	Laurie_Menke: Nope... I'm in! But thanks for the understanding!  :)

20) capi3101: Move R2 Capi3101 Viridi

21) Laurie_Menke: Build G2 Blue

22) capi3101: Move Y1 Capi3101 Viridi

23) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Laurie_menke
Build G2 Blue
Build G3 Laurie_menke
	Laurie_Menke: ::sigh::  My apologies again. Hopefully for the last time.

24) capi3101: Trade Y3 G3 Capi3101

25) Laurie_Menke: Trade G2 Y2 Blue

26) capi3101: Sacrifice G3 Capi3101
Build B1 Viridi
Build B2 Viridi
Build B3 Capi3101

27) Laurie_Menke: Sacrifice Y2 Blue
Move G2 Blue Viridi
Move G1 Blue Viridi

28) capi3101: Sacrifice R2 Viridi
Attack G1 Viridi
Attack G2 Viridi

29) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow
	capi3101: Hmm...I have a guess as to what's coming next...
	Laurie_Menke: You do? Because I sure don't! I screwed up and didn't see that coming!

30) capi3101: Trade B3 G3 Capi3101

31) Laurie_Menke: Move G1 Yellow Viridi
Catastrophe Viridi G

32) capi3101: Build G1 Capi3101
	Laurie_Menke: Whew... that puts me back in the running... I was sweating there for a bit!  :)
	capi3101: Ah. ~That's~ what I saw coming. Too bad I did remember to do something about it when I could've...

33) Laurie_Menke: Build Y1 Laurie_menke
	capi3101: *didn't. I didn't remember to do something...
	Laurie_Menke: Alas. Sorry.  :/

34) capi3101: Trade G3 Y3 Capi3101

35) Laurie_Menke: Build R2 Laurie_menke

36) capi3101: Build B1 Capi3101

37) Laurie_Menke: Trade R2 B2 Laurie_menke

38) capi3101: Trade Y3 G3 Capi3101

39) Laurie_Menke: Move B2 Laurie_menke Blue

40) capi3101: Build R2 Capi3101

41) Laurie_Menke: Move Y1 Laurie_menke Blue

42) capi3101: T B1 Y1 Capi3101

43) Laurie_Menke: Discover B2 Blue Y3 Yellow

44) capi3101: Discover R2 Capi3101 G3 Aleph

45) Laurie_Menke: Sacrifice G2 Laurie_menke
Build B1 Yellow
Build Y2 Laurie_menke

46) capi3101: Move B1 Capi3101 Aleph

47) Laurie_Menke: Trade B1 G1 Yellow

48) capi3101: Sacrifice G3 Capi3101
Build R2 Aleph
Build R3 Capi3101
Build Y2 Capi3101

49) Laurie_Menke: Sacrifice G3 Laurie_menke
Build Y2 Blue
Build Y3 Laurie_menke
Build G2 Yellow
	Laurie_Menke: Nice move!

50) capi3101: D G1 Capi3101 Y3 Bet
	capi3101: Likewise. This game got interesting all of a sudden...

51) Laurie_Menke: Move R2 Blue Bet

52) capi3101: Sacrifice Y1 Capi3101
Move R2 Aleph Blue

53) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack R2 Blue

54) capi3101: Discover G1 Bet Y1 Gimel

55) Laurie_Menke: Sacrifice G1 Yellow
Build R1 Bet

56) capi3101: Discover R1 Capi3101 G3 Dalet

57) Laurie_Menke: Sacrifice Y3 Laurie_menke
Move R2 Blue Bet
Move R2 Bet Capi3101
Move R2 Bet Capi3101

58) capi3101: S R3 Capi3101
A R2 Capi3101
A R2 Capi3101
P

59) Laurie_Menke: Sacrifice G2 Yellow
Build R3 Bet
Build Y3 Laurie_menke
	Laurie_Menke: Wow! Nice save! I did not see that coming... I thought I had you. Well done!

60) capi3101: Move R2 Capi3101 Yellow
	capi3101: You've still got me though, so don't let the play clock run out this time.

61) Laurie_Menke: Sacrifice R1 Bet
Attack R2 Yellow
	capi3101: Well...maybe not. It doesn't look good though. 

62) capi3101: Build R1 Aleph
	Laurie_Menke: Sorry to keep you waiting again. The holidays took more of my time than expected, but I'm back now!

63) Laurie_Menke: Move R3 Bet Capi3101
	Laurie_Menke: Wow! I don't know why I didn't recognize before that you don't have a large in your homeworld!

64) capi3101: Build R3 Capi3101

	capi3101: Time to go ahead and save face. Count it as a win for yourself.
	Laurie_Menke: Thanks for the challenge, capi3101! I hope you've had fun!  :)


35374)
Variants: "Unrated, Hard time"
Started: 2019.10.17, Ended: 2019.10.22
Participants: wil (S), rho0 (N)
Winner: wil

1) rho0: Homeworld R1 B2 G3

2) wil: H Y3 B1 G3

3) rho0: Build G1 Rho0

4) wil: B G1 Wil

5) rho0: Build G1 Rho0

6) wil: B G2 Wil

7) rho0: Trade G1 Y1 Rho0
	wil: I'll take a drone upgrade

8) wil: T G1 R1 Wil

9) rho0: Trade G1 B1 Rho0

10) wil: B R1 Wil

11) rho0: Build B1 Rho0

12) wil: T G2 B2 Wil

13) rho0: Build Y1 Rho0

14) wil: D B2 Wil G2 G2

15) rho0: Discover B1 Rho0 Y3 Beta

16) wil: M R1 Wil G2

17) rho0: Build B2 Rho0

18) wil: B B3 G2

19) rho0: Sacrifice G3 Rho0
Build B3 Beta
Build B3 Beta
Build Y1 Rho0
	wil: Getting interesting... No two games ever alike

20) wil: T B2 Y2 G2

21) rho0: Sacrifice B1 Rho0
Trade B3 G3 Beta
	wil: Noice

22) wil: B B1 G2

23) rho0: Move G3 Beta Rho0

24) wil: T B3 Y3 G2
	rho0: thanks

25) rho0: Discover Y1 Rho0 G3 Gamma

26) wil: M Y2 G2 Gamma

27) rho0: Trade B3 R3 Beta

28) wil: B R2 G2

29) rho0: Build G1 Rho0

30) wil: M R2 G2 Gamma

31) rho0: Discover Y1 Gamma R2 Delta

32) wil: B Y2 G2

33) rho0: Sacrifice G1 Rho0
Build Y2 Delta

34) wil: S G3 Wil
B R2 G2
B R3 Gamma
B R3 Wil

35) rho0: Sacrifice Y1 Delta
Discover Y2 Delta B3 Epsilon

36) wil: T R3 G3 Wil

37) rho0: Trade B2 G2 Rho0

38) wil: D R2 Gamma Y1 Y1

39) rho0: Build G1 Rho0

40) wil: B R2 Gamma

41) rho0: Discover Y1 Rho0 R3 Alpha

42) wil: M R1 G2 Beta

43) rho0: Sacrifice Y2 Epsilon
Discover R3 Beta Y2 Phi
Move B1 Beta Phi

44) wil: B B2 G2

	wil: Did you see something I didn't?
	rho0: I was horribly underdeveloped. I don't like quitting before the end, but I recognized that I had already lost. I'd definitely be down for a rematch, though. You're definitely one of the most difficult people that I have faced so far.
	wil: Challenge me anytime...I enjoy the game..
	wil: I tend to play things out... Hoping for a mistake!
	wil: Ah, even when I think I've  lost due to my errors
	rho0: Yeah usually i would play it out because i dont like robbing people of their victories and learning how to come back from a defeat is helpful, but i got excited and wanted to start a new game 
	wil: No worries, for future ref I don't mind multiple games


35563)
Variants: "Unrated"
Started: 2019.10.19, Ended: 2019.10.23
Participants: rho0 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) rho0: Homeworld B1 R3 G3

3) Trydnt: Build G1 Trydnt

4) rho0: Build G1 Rho0

5) Trydnt: Trade G1 B1 Trydnt

6) rho0: Trade G1 B1 Rho0

7) Trydnt: Build B2 Trydnt

8) rho0: Build G1 Rho0

9) Trydnt: Trade B1 Y1 Trydnt

10) rho0: Build G1 Rho0

11) Trydnt: Build Y1 Trydnt

12) rho0: Build B1 Rho0

13) Trydnt: Discover Y1 Trydnt G3 G3

14) rho0: Trade B1 R1 Rho0

15) Trydnt: Build Y2 G3

16) rho0: Sacrifice G1 Rho0
Build R1 Rho0

17) Trydnt: Build Y2 Trydnt

18) rho0: Trade G3 Y3 Rho0

19) Trydnt: Discover Y2 G3 G2 G2
	rho0: Haha what time zone are you in, it's like 5 AM here and you have been responding since like 3.

20) rho0: Move R1 Rho0 G2
	Trydnt: GMT

21) Trydnt: Build Y2 G2

22) rho0: Build Y3 Rho0

23) Trydnt: Sacrifice Y2 Trydnt
Move Y2 G2 Rho0
Move Y2 G2 Rho0
Catastrophe Rho0 Y

24) rho0: Build B1 Rho0

25) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y2 G3
Build Y2 Trydnt

26) rho0: Build R1 G2

27) Trydnt: Sacrifice Y2 G3
Move Y2 G3 G2
Move Y2 G2 Rho0

	rho0: Well played
	Trydnt: you too


35590)
Variants: "Hard time"
Started: 2019.10.19, Ended: 2019.10.27
Participants: dlwillson (S), rho0 (N)
Winner: dlwillson

1) rho0: Homeworld B1 Y2 G3

2) dlwillson: H Y3 B2 G3

3) rho0: Build G1 Rho0
	dlwillson: Good luck and have fun!

4) dlwillson: B G1 Dlwillson
	rho0: Same to you, friend!

5) rho0: Trade G1 B1 Rho0

6) dlwillson: T G1 B1 Dlwillson

7) rho0: Build B2 Rho0

8) dlwillson: B B2 Dlwillson

9) rho0: Trade B1 Y1 Rho0

10) dlwillson: D B1 Dlwillson G1 Field

11) rho0: Build Y1 Rho0

12) dlwillson: B B1 Dlwillson

13) rho0: Build B3 Rho0

14) dlwillson: Build B3 Field

15) rho0: Discover B3 Rho0 B3 Beta

16) dlwillson: T B2 Y2 Dlwillson

17) rho0: Trade B3 R3 Beta

18) dlwillson: T B3 R3 Field

19) rho0: Move Y1 Rho0 Beta

20) dlwillson: S G3 Dlwillson
B B2 Field
B B3 Field
B B3 Dlwillson

21) rho0: Sacrifice G3 Rho0
Build Y1 Beta
Build Y2 Beta
Build Y3 Rho0

22) dlwillson: Sacrifice B2 Field
Trade B3 Y3 Field
Trade B3 G3 Dlwillson

23) rho0: Trade Y1 G1 Beta

24) dlwillson: Sacrifice Y2 Dlwillson
Move Y3 Field Beta
Move Y3 Beta Rho0
Catastrophe Rho0 Y

25) rho0: Sacrifice Y2 Beta
Move R3 Beta Rho0
Move R3 Rho0 Dlwillson

26) dlwillson: S R3 Field
A R3 Dlwillson
Pass
Pass

27) rho0: Build Y1 Beta

28) dlwillson: S G3 Dlwillson
B B2 Field
B B3 Field
B B3 Dlwillson

29) rho0: Move Y1 Beta Rho0

30) dlwillson: T B3 Y3 Dlwillson

31) rho0: Build G1 Beta

32) dlwillson: S Y3 Dlwillson
M B3 Field Beta
M B3 Beta Rho0
D B2 Field B3 Sky

33) rho0: Sacrifice Y1 Beta
Move G1 Beta Rho0

34) dlwillson: S R3 Dlwillson
A B2 Rho0
A G1 Rho0
A Y1 Rho0
	dlwillson: Good game! Thank you!
	rho0: Yeah we will have to get a rematch going soom



35589)
Variants: "Unrated"
Started: 2019.10.20, Ended: 2020.9.5
Participants: maxlfusion (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) maxlfusion: Homeworld B3 G2 Y3

3) wil: B G1 Wil

4) maxlfusion: Build Y1 Maxlfusion
	wil: Rainy Sunday morning, perfect game time!
	maxlfusion: yeah I have a slow sunday right as well :)

5) wil: B G1 Wil

6) maxlfusion: Trade Y1 G1 Maxlfusion
	wil: Night? I'm near DC, you.

7) wil: T G1 B1 Wil
	maxlfusion: sorry I meant slow sunday right now as well

I'm from Detroit area

8) maxlfusion: Build Y1 Maxlfusion
	wil: Ah, lol.  Good luck, have fun!  Been playing long?
	maxlfusion: To be honest it's been quite some time since I played last for some reason this morning I had a craving for Homeworlds

9) wil: B B1 Wil

10) maxlfusion: Discover Y1 Maxlfusion G1 Tinytree

11) wil: T G1 R1 Wil

12) maxlfusion: Build Y1 Tinytree

13) wil: D B1 Wil G3 G3

14) maxlfusion: Trade G1 R1 Maxlfusion

15) wil: B B2 Wil

16) maxlfusion: Move Y1 Tinytree G3
	wil: The game is a constant challenge for me..

17) wil: B B2 G3
	maxlfusion: it's a really unique game my only complaint is I don't know anyone who plays anymore so I have to come online to find a match... I'm super pleased the super duper games has it but I miss being able to play it with people 
	wil: Yeah, I've had to create my own live competition



18) maxlfusion: Build Y1 Maxlfusion

19) wil: D B1 Wil Y3 Y3

20) maxlfusion: Build Y2 Tinytree

21) wil: T B2 R2 G3

22) maxlfusion: Build Y2 G3

23) wil: A Y2 G3

24) maxlfusion: Trade Y1 G1 Maxlfusion

25) wil: A Y1 G3

26) maxlfusion: Move Y2 Tinytree Y3

27) wil: D B1 Y3 Y1 Y1

28) maxlfusion: Build Y3 Maxlfusion

29) wil: B B2 G3

30) maxlfusion: Build G1 Maxlfusion

31) wil: S G3 Wil
B B2 G3
B B3 Y1
B B3 Wil

32) maxlfusion: Move G1 Maxlfusion Tinytree

33) wil: T B3 G3 Y1

34) maxlfusion: Trade Y3 B3 Maxlfusion

35) wil: T B3 G3 Wil

36) maxlfusion: Build Y3 Tinytree

37) wil: B B3 Y1

38) maxlfusion: Build R1 Maxlfusion

39) wil: T B3 R3 Y1

40) maxlfusion: Move R1 Maxlfusion Tinytree

41) wil: M G3 Y1 Y3

42) maxlfusion: Build R2 Maxlfusion

43) wil: B G2 Wil

44) maxlfusion: Move B3 Maxlfusion Tinytree

45) wil: S G2 Wil
B G2 Wil
B B3 Y1



35627)
Variants: "Unrated"
Started: 2019.10.20, Ended: 2019.12.5
Participants: Trydnt (S), maxlfusion (N)
Winner: Trydnt

1) maxlfusion: Homeworld B2 G1 Y3

2) Trydnt: Homeworld B3 R2 G3

3) maxlfusion: Build Y1 Maxlfusion

4) Trydnt: Build G1 Trydnt

5) maxlfusion: Trade Y1 G1 Maxlfusion

6) Trydnt: Trade G1 B1 Trydnt

7) maxlfusion: Build Y1 Maxlfusion

8) Trydnt: Build B1 Trydnt

9) maxlfusion: Build Y1 Maxlfusion

10) Trydnt: Trade B1 Y1 Trydnt

11) maxlfusion: Discover Y1 Maxlfusion G3 G3

12) Trydnt: Build Y2 Trydnt

13) maxlfusion: Trade G1 B1 Maxlfusion

14) Trydnt: Discover Y2 Trydnt G1 G1

15) maxlfusion: Build Y2 G3

16) Trydnt: Discover Y1 Trydnt G1 Gee1

17) maxlfusion: Trade Y1 R1 Maxlfusion

18) Trydnt: Build G2 Trydnt

19) maxlfusion: Build R1 Maxlfusion

20) Trydnt: Trade G2 Y2 Trydnt

21) maxlfusion: Move R1 Maxlfusion G3

22) Trydnt: Build G2 Trydnt

23) maxlfusion: Move Y2 G3 G1

24) Trydnt: Move Y2 G1 G3

25) maxlfusion: Move Y2 G1 G3

26) Trydnt: Sacrifice G2 Trydnt
Build Y1 G3
Build Y3 Gee1
Catastrophe G3 Y

27) maxlfusion: Trade Y3 G3 Maxlfusion

28) Trydnt: Build G1 Trydnt

29) maxlfusion: Trade R1 Y1 Maxlfusion

30) Trydnt: Trade G1 R1 Trydnt

31) maxlfusion: Build R1 G3

32) Trydnt: Move R1 Trydnt Gee1



35630)
Variants: "Unrated"
Started: 2019.10.20, Ended: 2019.12.19
Participants: Trydnt (S), maxlfusion (N)
Winner: Trydnt

1) maxlfusion: Homeworld B2 Y1 G3

2) Trydnt: Homeworld B3 R2 G3

3) maxlfusion: Build G1 Maxlfusion

4) Trydnt: Build G1 Trydnt

5) maxlfusion: Trade G1 R1 Maxlfusion

6) Trydnt: Trade G1 Y1 Trydnt

7) maxlfusion: Build G1 Maxlfusion

8) Trydnt: Build Y1 Trydnt

9) maxlfusion: Discover G1 Maxlfusion Y3 Y3

10) Trydnt: Build Y2 Trydnt

11) maxlfusion: Build G1 Maxlfusion

12) Trydnt: Discover Y1 Trydnt B1 B1

13) maxlfusion: Build R1 Maxlfusion

14) Trydnt: Build Y2 Trydnt

15) maxlfusion: Move R1 Maxlfusion Y3

16) Trydnt: Discover Y2 Trydnt B1 Bee1

17) maxlfusion: Build R1 Y3

18) Trydnt: Sacrifice G3 Trydnt
Build Y2 B1
Build Y3 Trydnt
Build Y3 Bee1

19) maxlfusion: Build R2 Y3

20) Trydnt: Trade Y3 R3 Bee1

21) maxlfusion: Trade R1 B1 Maxlfusion

22) Trydnt: Trade Y2 G2 Trydnt

23) maxlfusion: Move B1 Maxlfusion Y3

24) Trydnt: Sacrifice G2 Trydnt
Build Y2 Bee1
Build Y3 B1

25) maxlfusion: Move R2 Y3 Maxlfusion

26) Trydnt: Move Y3 B1 Y3

27) maxlfusion: Build G1 Y3

28) Trydnt: Trade Y2 G2 Bee1

29) maxlfusion: Discover G1 Y3 R2 R2

30) Trydnt: Move Y2 B1 R2



35632)
Variants: "No undo, Unrated"
Started: 2019.10.20, Ended: 2019.11.5
Participants: maxlfusion (S), rho0 (N)
Winner: rho0

1) rho0: Homeworld Y2 B3 G3

2) maxlfusion: Homeworld R3 B2 G3

3) rho0: Build G1 Rho0

4) maxlfusion: Build G1 Maxlfusion

5) rho0: Trade G1 Y1 Rho0

6) maxlfusion: Trade G1 Y1 Maxlfusion

7) rho0: Build G1 Rho0

8) maxlfusion: Build G1 Maxlfusion

9) rho0: Trade G1 B1 Rho0

10) maxlfusion: Trade G1 B1 Maxlfusion

11) rho0: Build G1 Rho0

12) maxlfusion: Build G1 Maxlfusion

13) rho0: Discover G1 Rho0 R1 Beta

14) maxlfusion: Discover G1 Maxlfusion R1 Alpha

15) rho0: Build B1 Rho0

16) maxlfusion: Build Y1 Maxlfusion

17) rho0: Build Y2 Rho0

18) maxlfusion: Move Y1 Maxlfusion Alpha

19) rho0: Move B1 Rho0 Beta

20) maxlfusion: Move B1 Maxlfusion Alpha

21) rho0: Move Y2 Rho0 Alpha

22) maxlfusion: Build Y2 Maxlfusion

23) rho0: Attack Y1 Alpha

24) maxlfusion: Sacrifice Y1 Maxlfusion
Move B1 Alpha Rho0

25) rho0: Trade B1 R1 Rho0

26) maxlfusion: Sacrifice G1 Alpha
Build B1 Rho0

27) rho0: Sacrifice Y1 Alpha
Discover G1 Beta Y3 Gamma

28) maxlfusion: Build G1 Maxlfusion

29) rho0: Attack B1 Rho0

30) maxlfusion: Sacrifice G1 Maxlfusion
Build B2 Rho0

31) rho0: Move B1 Rho0 Alpha

32) maxlfusion: Sacrifice G3 Maxlfusion
Build B2 Rho0
Build B3 Rho0
Build Y1 Maxlfusion

33) rho0: Move Y1 Rho0 Beta
Catastrophe Rho0 B

34) maxlfusion: Trade Y1 G1 Maxlfusion

35) rho0: Build R2 Rho0



35629)
Variants: "Unrated"
Started: 2019.10.20, Ended: 2019.10.26
Participants: wil (S), capi3101 (N)
Winner: wil

1) capi3101: Homeworld G1 B2 Y3
	capi3101: Eh, what the hell...I obviously need practice...

2) wil: H Y3 B1 G3

3) capi3101: Build Y1 Capi3101

4) wil: B G1 Wil

5) capi3101: Trade Y1 R1 Capi3101
	wil: I'll see if I can't teach another lesson! GL

6) wil: B G1 Wil

7) capi3101: Build Y1 Capi3101
	wil: Don't let anyone monopolize an economy...

8) wil: D G1 Wil B2 B2

9) capi3101: Trade Y3 G3 Capi3101

10) wil: T G1 B1 Wil

11) capi3101: Build Y1 Capi3101

12) wil: B B1 Wil

13) capi3101: Trade Y1 G1 Capi3101
	wil: Ya made me change plan, but I continued same scheme

14) wil: D B1 Wil Y2 Y2

15) capi3101: Trade G3 B3 Capi3101

16) wil: S G3 Wil
B B2 Y2
B B3 Y2
B B3 Wil

17) capi3101: Build G2 Capi3101

18) wil: S B2 Y2
T B3 Y3 Y2
T B3 G3 Wil

19) capi3101: Discover G2 Capi3101 B3 Quiescat

20) wil: B G2 Wil

21) capi3101: Build Y1 Capi3101

22) wil: S G3 Wil
B G2 B2
B G3 Wil
B G3 Wil

23) capi3101: Build G3 Quiescat

24) wil: S Y3 Y2
M G3 Wil B2
M G1 B2 Quiescat
M G2 B2 Quiescat
C Quiescat G
	capi3101: How attached are you to that big yellow?

25) capi3101: Build B2 Capi3101

26) wil: S G3 B2
B B2 Wil
B B3 Y2
B B3 Y2
	wil: R u kidding? It was her plan all along...
	capi3101: Well, when you gamble, sometimes you lose. Dammit...

27) capi3101: Discover B2 Capi3101 G3 Morietur
	wil: She will gladly sacrifice 3-2 lead for 2-1, very time!

28) wil: Sacrifice B2 Wil
T B3 Y3 Y2
T B3 G3 Y2

29) capi3101: Move Y1 Capi3101 Morietur

30) wil: S G2 Wil
B B2 Y2
B B3 Wil
	wil: The blue monopoly creates a short term queen factory.

31) capi3101: Discover G1 Capi3101 B3 Mea

32) wil: T B1 R1 Wil

33) capi3101: Trade B3 Y3 Capi3101

34) wil: T B1 R1 Y2
	capi3101: Damnation.

35) capi3101: Build G1 Mea

36) wil: B R2 Y2
	wil: A country run on renewable resources!

37) capi3101: Build R2 Capi3101

38) wil: M R2 Y2 Mea

39) capi3101: Build Y1 Morietur

40) wil: B G2 Wil
	wil: Grass is always greener, I like the rainforest

41) capi3101: Discover Y1 Morietur Y2 Adhaesit

42) wil: A G1 Mea
	wil: Out sneeking sneeky double agent counterspy plot twists

43) capi3101: Build Y2 Capi3101
	wil: Oh phooey, nice move
	capi3101: Thanks. I'd like to think I'm learning a few things...

44) wil: A G1 Mea

45) capi3101: Build B1 Morietur

46) wil: S G3 Wil
B G2 Mea
B G2 Wil
B G3 Wil

47) capi3101: Move B1 Morietur Adhaesit

48) wil: M G2 Wil Adhaesit

49) capi3101: Move B1 Adhaesit Wil

50) wil: M B3 Wil Adhaesit
	capi3101: Ugh...this is gonna suck...

51) capi3101: Move Y1 Adhaesit Morietur

52) wil: M Y3 Y2 Mea

53) capi3101: Trade Y3 B3 Capi3101

54) wil: S G3 Wil
B G3 Wil
B Y3 Mea
B B1 Y2
	wil: Ah, that was the move you had before..

55) capi3101: Sacrifice R1 Capi3101
Attack R1 Wil
	capi3101: Yep. Saw it too late.
	capi3101: And now I'm in trouble.
	capi3101: Again.
	capi3101: You've got mate in three moves if I'm not mistaken. I'll see if I can't get out of it but I think you've about got this one wrapped up.

56) wil: D B1 Y2 R1 R1

	wil: Thx I needed that
	capi3101: So I found Looney's Pyramid Arcade documentation yesterday...read through the section about Homeworlds about a doomsday machine - and it looks like you've got one set up.
	capi3101: So, I'll not drag this out after all...
	capi3101: ...and promise to keep playing.
	wil: Yes,the machine is in place.  Gg, challenge anytime


35634)
Variants: "Unrated"
Started: 2019.10.20, Ended: 2019.10.23
Participants: capi3101 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	capi3101: Howdy. I'm in need of some practice; looking forward to getting beaten...

2) capi3101: Homeworld G1 B2 Y3

3) Trydnt: Build G1 Trydnt

4) capi3101: Build Y1 Capi3101

5) Trydnt: Build G1 Trydnt

6) capi3101: Trade Y1 R1 Capi3101

7) Trydnt: Discover G1 Trydnt Y3 Y3

8) capi3101: Build Y1 Capi3101

9) Trydnt: Build G2 Trydnt

10) capi3101: Trade Y3 G3 Capi3101

11) Trydnt: Sacrifice G3 Trydnt
Build G2 Y3
Build G2 Y3
Build G3 Trydnt

12) capi3101: Build R1 Capi3101

13) Trydnt: Trade G2 R2 Trydnt

14) capi3101: Discover R1 Capi3101 B3 Cinefactus

15) Trydnt: Build G2 Trydnt

16) capi3101: Build G3 Capi3101

17) Trydnt: Move G1 Y3 Capi3101
Catastrophe Capi3101 G

	capi3101: Well, that was stupid of me, wasn’t it?
	Trydnt: easy to forget about the mini-verse
	Trydnt: the microverse can be even more mind bending


35635)
Variants: "No undo, Unrated"
Started: 2019.10.20, Ended: 2019.11.5
Participants: rho0 (S), capi3101 (N)
Winner: capi3101

1) capi3101: Homeworld G1 B2 Y3
	capi3101: Greetings. I'm a newbie to this site; looking forward to getting in some practice.

2) rho0: Homeworld R3 G2 B3

3) capi3101: Build Y1 Capi3101
	rho0: I just made an account like 2 days ago, so I'm new as well. Good luck!
	capi3101: Likewise.

4) rho0: Build B1 Rho0

5) capi3101: Build Y1 Capi3101

6) rho0: Build B1 Rho0

7) capi3101: Trade Y1 R1 Capi3101

8) rho0: Trade B1 Y1 Rho0

9) capi3101: Build R1 Capi3101

10) rho0: Trade B1 G1 Rho0

11) capi3101: Trade R1 G1 Capi3101

12) rho0: Build G2 Rho0

13) capi3101: Build G2 Capi3101

14) rho0: Discover G2 Rho0 R1 Alpha

15) capi3101: Trade G2 B2 Capi3101

16) rho0: Discover G1 Rho0 B1 Bravo
	capi3101: Are you going with Greek or NATO phonetic alphabet (i.e. is the next system going to be Beta or Bravo)? Asking so I can keep things consistent.
	rho0: NATO. Haha no one ever tries to use the same convention as me so its usually just a mess once we really get started.
	capi3101: Okay, cool - I'll follow suit.
	rho0: Thanks, friend.

17) capi3101: Build B1 Capi3101

18) rho0: Build B1 Rho0

19) capi3101: Discover B2 Capi3101 G3 Charlie

20) rho0: Sacrifice G2 Alpha
Build Y1 Rho0
Build Y2 Rho0

21) capi3101: Build Y2 Capi3101

22) rho0: Build G2 Bravo

23) capi3101: Build B2 Charlie

24) rho0: Move B1 Rho0 Bravo

25) capi3101: Move Y2 Capi3101 Charlie

26) rho0: Move Y1 Rho0 Bravo

27) capi3101: Move B2 Charlie Bravo

28) rho0: Discover B1 Bravo Y3 Delta

29) capi3101: Sacrifice R1 Capi3101
Attack G2 Bravo

30) rho0: Trade B3 G3 Rho0

31) capi3101: Build B3 Charlie

32) rho0: Build G2 Bravo

33) capi3101: Trade G2 R2 Bravo

34) rho0: Move G2 Bravo Delta

35) capi3101: Sacrifice R2 Bravo
Attack G1 Bravo
Attack Y1 Bravo

36) rho0: Build B3 Delta

37) capi3101: Trade B2 G2 Bravo

38) rho0: Sacrifice B1 Delta
Trade G3 R3 Rho0

39) capi3101: Trade G1 R1 Capi3101

40) rho0: Build B1 Delta

41) capi3101: Move B1 Capi3101 Delta

42) rho0: Move Y1 Rho0 Bravo

43) capi3101: Move Y1 Capi3101 Charlie

44) rho0: Discover B1 Delta R2 Echo

45) capi3101: Discover Y1 Charlie R1 Foxtrot

46) rho0: Build G1 Delta
	capi3101: I wish this interface did star-towing. Don't you?
	rho0: what's star-towing?

47) capi3101: Sacrifice B2 Charlie
Trade Y1 R1 Foxtrot
Trade G2 R2 Bravo
	capi3101: It's what Andy Looney calls it when you move around stars so that they're closest to the homeworlds to which they connect. Helps with planning visually.
	capi3101: Admin: I'm wanting to sacrifice my B2 in system Charlie - the system's not letting me.

48) rho0: Sacrifice G2 Delta
Build G2 Delta
Build Y1 Rho0
	capi3101: Never mind.
	rho0: Oh yeah. Or at least automatic start towing. Just line up all the stars in order of how I need to jump to get to my opponent.
	Draw5PlayAll: For what it's worth I don't think the admin is at all active anymore.

49) capi3101: Sacrifice Y2 Charlie
Move R1 Foxtrot Rho0
Move R2 Bravo Rho0
Catastrophe Rho0 Red

50) rho0: Sacrifice G2 Delta
Build G2 Delta
Build B2 Echo
	capi3101: @Draw5PlayAll: Ok, thanks. Worth noting.

51) capi3101: Build Y2 Capi3101

52) rho0: Move G2 Delta Rho0

53) capi3101: Trade Y3 R3 Capi3101

54) rho0: Build G2 Delta

55) capi3101: Sacrifice Y1 Bravo
Move B3 Charlie Rho0

56) rho0: Move B3 Delta Rho0

57) capi3101: Sacrifice R3 Capi3101
Attack B3 Rho0
Attack Y2 Rho0
Attack G2 Rho0



35631)
Variants: "Unrated, Hard time"
Started: 2019.10.20, Ended: 2019.11.4
Participants: maxlfusion (S), capi3101 (N)
Winner: capi3101

1) capi3101: Homeworld G1 B2 Y3
	capi3101: Greetings. I'm a newbie to this site; looking forward to getting in some practice.

2) maxlfusion: Homeworld G3 B2 Y3

3) capi3101: Build Y1 Capi3101

4) maxlfusion: Build Y1 Maxlfusion

5) capi3101: Trade Y1 R1 Capi3101

6) maxlfusion: Discover Y1 Maxlfusion B1 B1

7) capi3101: Build R1 Capi3101

8) maxlfusion: Build Y1 Maxlfusion

9) capi3101: Trade R1 G1 Capi3101

10) maxlfusion: Trade Y1 G1 B1

11) capi3101: Build Y1 Capi3101

12) maxlfusion: Build G2 B1

13) capi3101: Build G2 Capi3101

14) maxlfusion: Move Y1 Maxlfusion B1

15) capi3101: Discover G2 Capi3101 B3 Advena

16) maxlfusion: Discover G1 B1 Y2 Topaz

17) capi3101: Build G2 Advena

18) maxlfusion: Build Y1 Maxlfusion

19) capi3101: Build G3 Capi3101

20) maxlfusion: Build G3 Topaz

21) capi3101: Sacrifice G3 Capi3101
Build G3 Capi3101
Build R1 Capi3101
Build Y2 Capi3101

22) maxlfusion: Move G1 Topaz B1

23) capi3101: Move Y3 Capi3101 Advena

24) maxlfusion: Trade G2 R2 B1

25) capi3101: Trade Y3 R3 Advena

26) maxlfusion: Build G2 B1

27) capi3101: Sacrifice Y1 Capi3101
Move R3 Advena B1

28) maxlfusion: Move G2 B1 Advena

29) capi3101: Attack R2 B1



35637)
Variants: "Unrated"
Started: 2019.10.22, Ended: 2020.6.9
Participants: Trydnt (S), Dther (N)
Winner: Trydnt

1) Dther: Homeworld R1 B2 G3

2) Trydnt: Homeworld B3 Y2 G3

3) Dther: Build G1 Dther

4) Trydnt: Build G1 Trydnt

5) Dther: Trade G1 Y1 Dther

6) Trydnt: Trade G1 R1 Trydnt

7) Dther: Trade Y1 R1 Dther

8) Trydnt: Build R2 Trydnt

9) Dther: Build R2 Dther

10) Trydnt: Build R2 Trydnt

11) Dther: Trade R1 Y1 Dther

12) Trydnt: Trade R2 Y2 Trydnt

13) Dther: Build Y1 Dther

14) Trydnt: Discover R1 Trydnt G1 G1

15) Dther: Discover R2 Dther G3 Alpha

16) Trydnt: Move Y2 Trydnt G1

17) Dther: Trade Y1 B1 Dther

18) Trydnt: Build R1 Trydnt

19) Dther: Build G1 Dther

20) Trydnt: Discover R2 Trydnt Y1 Y1

21) Dther: Move B1 Dther Alpha

22) Trydnt: Sacrifice G3 Trydnt
Build R2 Y1
Build R3 G1
Build R3 Trydnt

23) Dther: Build R3 Alpha

24) Trydnt: Sacrifice Y2 G1
Move R1 G1 Alpha
Move R2 Y1 Alpha
Catastrophe Alpha R

25) Dther: Build Y1 Dther

26) Trydnt: Move R2 Y1 Alpha

27) Dther: Trade B1 R1 Alpha

28) Trydnt: Attack R1 Alpha

29) Dther: Build Y1 Dther

30) Trydnt: Trade R3 G3 Trydnt

31) Dther: Discover Y1 Dther B3 Bravo

32) Trydnt: Sacrifice G3 Trydnt
Build R2 Alpha
Build R2 G1
Build R3 Trydnt

33) Dther: Discover Y1 Dther G3 Charlie

34) Trydnt: Trade R3 Y3 Trydnt

35) Dther: Sacrifice G3 Dther
Build Y2 Bravo
Build Y2 Charlie
Build Y3 Dther

36) Trydnt: Move Y3 Trydnt G1

37) Dther: Build Y3 Dther

38) Trydnt: Build R3 G1

39) Dther: Sacrifice Y3 Dther
Move Y2 Bravo G1
Move Y2 Charlie G1
Move Y1 Bravo G1
Catastrophe G1 Y

40) Trydnt: Trade R1 G1 Trydnt

41) Dther: Build G2 Dther

42) Trydnt: Build G2 Trydnt

43) Dther: Build G2 Dther

44) Trydnt: Trade G2 Y2 Trydnt

45) Dther: Discover G2 Dther R3 Delta

46) Trydnt: Sacrifice Y2 Trydnt
Move R3 G1 Trydnt
Move R2 G1 Charlie
	Dther: Very sorry. HAve been very busy in real life.

47) Dther: Discover Y1 Charlie Y1 Foxtrot
	Trydnt: no worries

48) Trydnt: Build R1 Trydnt

49) Dther: Trade Y3 G3 Dther

50) Trydnt: Trade R3 Y3 Trydnt

51) Dther: Sacrifice G3 Dther
Build G2 Delta
Build Y2 Foxtrot
Build G3 Dther

52) Trydnt: Build R3 Trydnt

53) Dther: Sacrifice G3 Dther
Build Y2 Dther
Build Y3 Dther
Build G3 Delta

54) Trydnt: Move Y3 Trydnt G1

55) Dther: Discover G1 Dther Y3 Golf

56) Trydnt: Move R3 G1 Golf

57) Dther: Discover Y1 Dther B3 Hotel

58) Trydnt: Attack G1 Golf

59) Dther: Move G2 Dther Hotel

60) Trydnt: Move R1 Trydnt Foxtrot

61) Dther: Discover Y1 Foxtrot B3 India

62) Trydnt: Move Y3 G1 Hotel

63) Dther: Discover Y1 Hotel G1 Juliet

64) Trydnt: Move R3 Golf Juliet

65) Dther: Discover Y1 Juliet B2 Kilo

66) Trydnt: Sacrifice R2 Charlie
Attack G2 Hotel
Pass

67) Dther: Discover Y1 India R2 Lima

68) Trydnt: Build G3 Golf

69) Dther: Discover Y1 Lima B1 Mike

70) Trydnt: Sacrifice G3 Golf
Build G3 Hotel
Build R2 Foxtrot
Pass

71) Dther: Discover Y2 Foxtrot B2 November

72) Trydnt: Move G2 Hotel Foxtrot

73) Dther: Discover Y1 Kilo B1 Oscar

74) Trydnt: Move G2 Foxtrot Delta
Catastrophe Delta G

75) Dther: Trade Y3 G3 Dther

76) Trydnt: Discover R2 Foxtrot Y3 Y3

77) Dther: Discover Y2 November B1 Papa

78) Trydnt: Build R3 Juliet



35636)
Variants: "Unrated"
Started: 2019.10.22, Ended: 2020.9.5
Participants: wil (S), Dther (N)
Winner: wil

1) Dther: Homeworld R1 B2 G3

2) wil: H Y3 B1 G3

3) Dther: Build G1 Dther

4) wil: B G1 Wil

5) Dther: Trade G1 Y1 Dther

6) wil: T G1 B1 Wil

7) Dther: Build Y1 Dther

8) wil: B B1 Wil

9) Dther: Build Y1 Dther
	wil: My first attempt is always an early Monopoly lead

10) wil: D B1 Wil Y2 Y2
	Dther: Hmmm. I haven't considered that strategy before. I'm fairly new to this, so it will be interesting to see how this plays out.

11) Dther: Discover Y1 Dther B3 Amber

12) wil: D B1 Y2 G3 G3

13) Dther: Build Y2 Dther

14) wil: S G3 Wil
B B2 Wil
B B2 G3
B B3 G3

15) Dther: Discover Y2 Dther G3 Emerald

16) wil: T B3 Y3 G3

17) Dther: Build G1 Dther

18) wil: T B2 G2 Wil

19) Dther: Discover G1 Dther Y3 Actuallyamber

20) wil: B B2 G3

21) Dther: Build Y2 Emerald

22) wil: B Y2 G3

23) Dther: Sacrifice G1 Actuallyamber
Build Y3 Amber

24) wil: B B3 Wil

25) Dther: Sacrifice Y2 Emerald
Move Y1 Dther G3
Move Y1 Dther G3
Catastrophe G3 Y

26) wil: T B2 Y2 G3

27) Dther: Build Y1 Emerald

28) wil: T B3 Y3 Wil

29) Dther: Trade Y3 B3 Amber

30) wil: D B1 G3 Y2 Y2

31) Dther: Discover B3 Amber G2 Malachite

32) wil: B G1 Wil

33) Dther: Trade Y1 G1 Amber

34) wil: S G2 Wil
B B2 G3
B B3 Y2

35) Dther: Sacrifice G1 Amber
Build B3 Malachite

36) wil: T B3 Y3 Y2

37) Dther: Discover Y1 Emerald G2 Jade

38) wil: S G1 Wil
B B3 Y2

39) Dther: Build Y1 Jade

40) wil: T Y3 R3 Wil

41) Dther: Build G1 Dther

42) wil: M B3 Y2 Emerald

43) Dther: Build Y1 Jade

44) wil: B Y3 G3

45) Dther: Trade G1 R1 Dther

46) wil: S Y3 G3
M B2 G3 Malachite
M B1 Wil Malachite
C Malachite B
M Y2 G3 Jade
C Jade Y
	wil: Turtles and eve of destruction comes to mind

47) Dther: Build R1 Dther
	Dther: I think I see what you mean...


48) wil: B B1 G3

49) Dther: Trade R1 Y1 Dther

50) wil: B B2 G3
	Dther: Sorry. I've been very busy the last few days.

51) Dther: Build R1 Dther

52) wil: T B2 G2 G3

53) Dther: Build G1 Dther

54) wil: S G2 G3
B B2 Y2
B B3 G3

55) Dther: Sacrifice Y2 Emerald
Discover R1 Dther Y3 Amber
Discover R1 Dther B3 Sapphire

56) wil: T B2 G2 Y2

57) Dther: Discover G1 Dther R3 Ruby

58) wil: B B2 Emerald

59) Dther: Build G1 Dther

60) wil: T B3 R3 Emerald

61) Dther: Build G1 Ruby

62) wil: T B2 Y2 G3

63) Dther: Build Y1 Dther

64) wil: B B2 G3

65) Dther: Sacrifice Y1 Dther
Discover G1 Ruby Y1 Citrine

66) wil: B B3 Emerald

67) Dther: Sacrifice G3 Dther
Build G2 Ruby
Build G2 Citrine
Build G3 Dther

68) wil: B R2 Emerald



35622)
Variants: "Unrated, Hard time"
Started: 2019.10.23, Ended: 2019.11.1
Participants: rho0 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) rho0: Homeworld B2 R3 G3

3) wil: B G1 Wil

4) rho0: Build G1 Rho0

5) wil: T G1 B1 Wil

6) rho0: Trade G1 Y1 Rho0

7) wil: B B1 Wil

8) rho0: Build Y1 Rho0

9) wil: D B1 Wil Y3 Y3

10) rho0: Build Y1 Rho0
	wil: I head toward a viscous start if I can

11) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil
	rho0: Haha clearly. I like your homeworld setup. I usually go for a similar one depending on my opponent's.

12) rho0: Discover Y1 Rho0 G1 Alpha
	rho0: You really monopolized blue fast! You're good at this.

13) wil: T B3 Y3 Wil
	wil: If can get away with that I try

14) rho0: Sacrifice G3 Rho0
Build Y2 Alpha
Build Y2 Alpha
Build Y3 Rho0

15) wil: T B2 G2 Y3

16) rho0: Discover Y2 Alpha B3 Bravo

17) wil: B B2 Y3

18) rho0: Move Y1 Alpha Bravo

19) wil: D B2 Y3 G1 G1

20) rho0: Sacrifice Y2 Alpha
Move Y1 Bravo Wil
Move Y2 Bravo Wil
Catastrophe Wil Y

21) wil: S G2 Y3
B B3 Y3
B B3 Wil

22) rho0: Trade Y3 B3 Rho0
	wil: Dicey

23) wil: T B3 G3 Wil

24) rho0: Trade Y1 G1 Rho0
	rho0: Sometimes ya gotta risk it for the biscuit

25) wil: B B3 G1
	wil: Dicey, spicy bisquits!

26) rho0: Trade B3 G3 Rho0

27) wil: T B3 Y3 Y3

28) rho0: Trade G3 R3 Rho0

29) wil: T B3 R3 G1

30) rho0: Move R3 Rho0 Wil

31) wil: S R3 G1
A R3 Wil
P
P
	wil: I just wanna have the blues...

32) rho0: Build G1 Rho0
	rho0: Blues are all yours if you want 'em, but I think I'll take your homeworld real quick, if you don't mind.
	wil: ??

33) wil: S G3 Wil
B B3 Wil
B B3 G1
B B3 Y3
	wil: Check out rules on sacrifice n attack, challenge anytime
	rho0: fuck I always forget that you can sacrifice reds. I don't know why, but I calculate all of the sacrifices my opponent can do, but then always forget that reds can sacrifice to attack. XD Alright, I think that blunder hands you the game. GG.

34) rho0: Build G2 Rho0
	wil: It is a game of capitalizing on errors...

35) wil: D B3 Y3 Y1 Y1
	wil: https://youtu.be/RTQt6lHoMcM
	rho0: Oh lawd

36) rho0: Sacrifice G2 Rho0
Build Y1 Rho0
Build Y2 Rho0

37) wil: M B3 Y1 Rho0

38) rho0: Build G2 Rho0

39) wil: S R3 Wil
A G2 Rho0
A G1 Rho0
A Y2 Rho0

	wil: Gg.challenge anytime


35594)
Started: 2019.10.27, Ended: 2019.11.15
Participants: nycavri (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	Babamots: This is for the tournament, correct?

Good luck!

2) nycavri: Homeworld Y1 B2 G3

3) Babamots: Build G1 Babamots
	nycavri: Confirming tournament game.

TaGG! 

4) nycavri: Build G1 Nycavri

5) Babamots: Trade G1 Y1 Babamots

6) nycavri: Trade G1 R1 Nycavri

7) Babamots: Build Y1 Babamots

8) nycavri: Build G1 Nycavri

9) Babamots: Build Y2 Babamots

10) nycavri: Trade G3 Y3 Nycavri

11) Babamots: Discover Y2 Babamots G3 Orion

12) nycavri: Build G1 Nycavri

13) Babamots: Build Y2 Babamots

14) nycavri: Trade G1 B1 Nycavri

15) Babamots: Build Y2 Orion

16) nycavri: Trade Y3 G3 Nycavri
	Babamots: I was sorry to hear you're going through some tough times. I hope games are making things seem nicer!
	nycavri: Thanks -  much appreciated.  I'm doing OK and games (and gamers!) are always a pleasant distraction.
	nycavri: I would be slighty happier if I hadn't mae a mistake in this game around move 4 . . .

17) Babamots: Discover Y2 Babamots R3 Romulus

18) nycavri: Discover G1 Nycavri Y3 Deacon
	Babamots: I usually advise people not to use yellow in the home system. It can limit your chances to get yellow ships, and I consider yellow to be the key to victory.

19) Babamots: Build Y3 Babamots
	nycavri: I've been playing a long time, and that's a tip I've never heard before.    But io has certainly been key here (although perhaps exacerbated by the tiny universe I initiated . . .)

20) nycavri: Build R1 Nycavri

21) Babamots: Trade Y3 R3 Babamots
	Babamots: I can think of one argument in favor of having a yellow home star: if my opponent wants to catastrophe my yellow star, they'll need not only several yellow ships for destruction in the catastrophe but a yellow ship to sacrifice to get them all to my home at once. My opponent would have to have four correctly placed yellow ships. To catastrophe any other color, you usually need three ships of that color and one yellow. It's a little harder to assemble a fleet of four yellows than it is to assemble a fleet of three (for example) reds and one yellow.

22) nycavri: Move R1 Nycavri Deacon

23) Babamots: Build Y3 Babamots
	nycavri: Plenty to think about.  I really thing Homeworlds (not Zendo) is the pyramid killer app.

24) nycavri: Discover B1 Nycavri Y3 May
	Babamots: I agree. Homeworlds has more potential for widespread play than any other pyramid game.

25) Babamots: Trade Y3 B3 Babamots

26) nycavri: Build R2 Deacon
	Babamots: Happy Halloween! :-)

27) Babamots: Move B3 Babamots Deacon

28) nycavri: Move R2 Deacon Babamots

29) Babamots: Sacrifice R3 Babamots
Attack R2 Babamots
Attack R1 Deacon
Attack G1 Deacon

30) nycavri: Build R2 Nycavri

31) Babamots: Build Y3 Orion

32) nycavri: Move R2 Nycavri May

33) Babamots: Build B1 Deacon

34) nycavri: Build G1 Nycavri

35) Babamots: Build B1 Deacon

36) nycavri: Move G1 Nycavri May

37) Babamots: Discover Y1 Babamots R3 Kronos

38) nycavri: Build R2 May

39) Babamots: Move B3 Deacon Nycavri

40) nycavri: Attack B3 Nycavri

41) Babamots: Sacrifice Y2 Orion
Move B1 Deacon Nycavri
Move B1 Deacon Nycavri
Catastrophe Nycavri B

42) nycavri: Trade R2 Y2 May

43) Babamots: Sacrifice Y3 Orion
Move Y2 Orion Nycavri
Move Y2 Romulus Nycavri
Move Y1 Kronos Nycavri
Catastrophe Nycavri Y

	nycavri: Thanks for the game.  Off to accept another challenge for the Tourney now . . .
	Babamots: GG!
I will, of course, order the release of the captured crews of the small ships in the Deacon system. ;-)


35643)
Started: 2019.10.31, Ended: 2020.1.18
Participants: bhorner (S), Draw5PlayAll (N)
Winner: bhorner

1) Draw5PlayAll: Homeworld B3 R1 G3
	bhorner: For the Great Home Worlds Tournament 2019 right?
	Draw5PlayAll: I think so.

2) bhorner: Homeworld B1 R2 G3

3) Draw5PlayAll: Build G1 Draw5playall
	bhorner: I think according to the tournament set-up, you moved first so you should fill out the game start form.  I can probably do it if you'd rather not. :)

4) bhorner: Build G1 Bhorner

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) bhorner: Trade G1 Y1 Bhorner

7) Draw5PlayAll: Build G1 Draw5playall

8) bhorner: Build G1 Bhorner

9) Draw5PlayAll: Trade G1 R1 Draw5playall

10) bhorner: Trade G1 R1 Bhorner
	bhorner: If I don't get a red now, I have to get a 2 of something before the red 2's are gone...
	bhorner: Well, that was supposed to go into the notes box, not the comments box.  :)

11) Draw5PlayAll: Build R2 Draw5playall

12) bhorner: Build G1 Bhorner

13) Draw5PlayAll: Discover R2 Draw5playall G2 Stein

14) bhorner: Discover G1 Bhorner R3 Volcano
	bhorner: FYI, I will be out of contact for Nov 8th, 9th, and 10th.  I will try to figure out my move, and make it Friday morning.

If you could delay your move for a couple of days (but make sure you can still get back to 7), I would appreciate it!
	Draw5PlayAll: Your green trade looks suspicious.
	Draw5PlayAll: (build not trade)
	bhorner: I was in a bad spot, I felt.  Probably still am. That was all I could come up with.  :). Feel free to make some mistakes, I could use them!
	bhorner: Oh no, did you forget to move?  As long as the game doesn't end on the timer, I won't force it based on time, whatever happens.  I'm back in contact now and able to make moves.
	bhorner: Sorry if something is going on for you, I'm not sure what to do of I don't hear from you anymore.  I guess if your time runs out, if I haven't heard from you within 7 more days, I will end the game.  I'd rather not have it end that way though, so I hope you can get back in touch.

That would make the no-communication end time of the game 10pm Nov 19th.
	Draw5PlayAll: Augh! Yes, I did.

15) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 Stein
Build R3 Stein
Build R3 Draw5playall

16) bhorner: Sacrifice G1 Volcano
Build R3 Bhorner

17) Draw5PlayAll: Trade R1 B1 Draw5playall
	Draw5PlayAll: This caused trouble for me once...
	bhorner: It is bold.  My green move was to prevent you from getting too far ahead in the big race.
	Draw5PlayAll: I mean that one time, I did this, and ended up regretting it because I had insufficient blue and yellow.

18) bhorner: Discover R1 Bhorner Y3 Sun

19) Draw5PlayAll: Sacrifice B1 Draw5playall
Trade R2 B2 Stein

20) bhorner: Build Y1 Bhorner
	bhorner: I see, I misunderstood.  I thought it was because you had those big clumps of red.  :)

21) Draw5PlayAll: Trade R2 Y2 Stein
	Draw5PlayAll: That's better!

22) bhorner: Discover Y1 Bhorner B3 Ocean

23) Draw5PlayAll: Trade R3 G3 Draw5playall

24) bhorner: Build G1 Bhorner

25) Draw5PlayAll: Build R1 Stein

26) bhorner: Move G1 Bhorner Ocean

27) Draw5PlayAll: Build Y2 Stein

28) bhorner: Build Y2 Ocean

29) Draw5PlayAll: Build Y3 Draw5playall

30) bhorner: Build Y3 Bhorner

31) Draw5PlayAll: Trade Y2 B2 Stein

32) bhorner: Trade Y1 B1 Bhorner

33) Draw5PlayAll: Discover R1 Stein G3 Nader

34) bhorner: Discover G3 Bhorner R3 Volcano

35) Draw5PlayAll: Discover G3 Draw5playall Y2 Johnson

36) bhorner: Move R3 Bhorner Nader

37) Draw5PlayAll: Move G3 Johnson Sun

38) bhorner: Attack R1 Nader

39) Draw5PlayAll: Build R2 Stein

40) bhorner: Sacrifice Y2 Ocean
Move R1 Nader Stein
Move R1 Sun Stein
Catastrophe Stein R
	Draw5PlayAll: That was not supposed to happen!

41) Draw5PlayAll: Move B2 Stein Sun

42) bhorner: Build R1 Nader

43) Draw5PlayAll: Trade Y1 R1 Draw5playall

44) bhorner: Move G1 Ocean Bhorner

45) Draw5PlayAll: Build G1 Sun

46) bhorner: Build G1 Bhorner

47) Draw5PlayAll: Discover G1 Sun Y2 Johnson

48) bhorner: Build G2 Bhorner

49) Draw5PlayAll: Build G2 Sun

50) bhorner: Sacrifice Y3 Bhorner
Move G1 Bhorner Sun
Move G1 Bhorner Sun
Move G3 Volcano Bhorner
Catastrophe Sun G

51) Draw5PlayAll: Discover R1 Draw5playall G2 Earth

52) bhorner: Trade G2 Y2 Bhorner

53) Draw5PlayAll: Build R2 Earth

54) bhorner: Move Y2 Bhorner Nader

55) Draw5PlayAll: Discover B2 Stein G3 Moss

56) bhorner: Discover R3 Nader Y1 Spark

57) Draw5PlayAll: Move G1 Johnson Draw5playall

58) bhorner: Move R3 Spark Moss

59) Draw5PlayAll: Sacrifice Y2 Stein
Discover B2 Moss G1 Forest
Move R2 Earth Ocean

60) bhorner: Move Y1 Ocean Bhorner

61) Draw5PlayAll: Build G1 Draw5playall

62) bhorner: Build G2 Bhorner

63) Draw5PlayAll: Build Y1 Draw5playall

64) bhorner: Move Y2 Nader Earth

65) Draw5PlayAll: Build G2 Draw5playall

66) bhorner: Sacrifice R1 Nader
Attack R1 Earth

67) Draw5PlayAll: Discover G2 Draw5playall Y2 Y2

68) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build Y1 Earth
Build Y2 Bhorner

69) Draw5PlayAll: Build G3 Y2

70) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build Y3 Bhorner
Build R1 Moss

71) Draw5PlayAll: Sacrifice G3 Y2
Build B1 Sun
Build B2 Forest
Build G3 Y2

72) bhorner: Sacrifice Y3 Bhorner
Move R3 Moss Forest
Move Y2 Earth Draw5playall
Move Y1 Earth Draw5playall
Catastrophe Draw5playall Y

73) Draw5PlayAll: Move G3 Y2 Draw5playall

74) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build R2 Earth
Build R3 Moss
	Draw5PlayAll: Thanks! I needed that large!
	bhorner: Mistakes are inevitable.  :)
	Draw5PlayAll: It seems you still have yet to move.

75) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B3 Forest
Build R3 Ocean

76) bhorner: Sacrifice Y2 Bhorner
Move R1 Earth Ocean
Move R2 Earth Ocean
Catastrophe Ocean R

77) Draw5PlayAll: Sacrifice B3 Forest
Trade B2 R2 Forest
Trade B2 R2 Forest
Trade B1 R1 Sun

78) bhorner: Sacrifice G3 Bhorner
Build G2 Bhorner
Build G3 Bhorner
Build R3 Moss

79) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Draw5PlayAll: I was about to resign when I realized you have insufficient movement to blow me up!
	bhorner: Yep, I used it all up.  :)

80) bhorner: Attack R2 Forest

81) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R2 Forest Moss
Catastrophe Moss Red
	Draw5PlayAll: Hanging by a thread
	bhorner: I don't really see anything happening fast...

82) bhorner: Discover G2 Bhorner G3 Boogar

83) Draw5PlayAll: Trade G1 Y1 Draw5playall

84) bhorner: Build Y1 Bhorner
	Draw5PlayAll: You never cease to try to deprive me of a second large, and I never cease to come up with new ways of getting one.
	bhorner: Eventually one will cease.  :)

85) Draw5PlayAll: Build Y2 Draw5playall

86) bhorner: Discover Y1 Bhorner B3 Bullet

87) Draw5PlayAll: Discover Y2 Draw5playall B2 Ballot

88) bhorner: Sacrifice G3 Bhorner
Build Y2 Bhorner
Build Y3 Bullet
Build Y3 Bhorner
	Draw5PlayAll: I cannot allow you to have three large reds.
	bhorner: I would tend to agree. :)

89) Draw5PlayAll: Build G1 Draw5playall

90) bhorner: Sacrifice Y1 Bhorner
Move R3 Forest Y2

91) Draw5PlayAll: Discover G2 Y2 Y1 Y1

92) bhorner: Sacrifice Y3 Bhorner
Move R3 Y2 Draw5playall
Move Y3 Bullet Ballot
Move Y3 Ballot Draw5playall

	Draw5PlayAll: My resistance has fallen. I surrender.
	bhorner: GG!  :)


35644)
Variants: "Unrated, Hard time"
Started: 2019.10.31, Ended: 2019.11.7
Participants: capi3101 (S), wil (N)
Winner: wil

1) wil: H B1 Y2 G3
	capi3101: Howdy, wil. Everybody else I'm playing is taking too long to move...
	wil: Not me!

2) capi3101: Homeworld R3 B2 G3

3) wil: B G1 Wil

4) capi3101: Build G1 Capi3101

5) wil: T G1 B1 Wil

6) capi3101: Trade G1 Y1 Capi3101
	wil: Good luck n have fun
	capi3101: Same to you.

7) wil: B B1 Wil

8) capi3101: Build Y1 Capi3101

9) wil: D B1 Wil Y3 Y3

10) capi3101: Discover Y1 Capi3101 R1 Rubeum

11) wil: S G3 Wil
B B2 Y3
B B2 Wil
B B3 Y3

12) capi3101: Discover Y1 Rubeum B3 Caeruleum

13) wil: T B3 G3 Y3
	capi3101: Guess you're serious about keeping me out of blue there, wil. Geez...
	capi3101: I see why you didn't want to keep the initial permutation of that move though.
	capi3101: Well, this is probably stupid, but...

14) capi3101: Trade Y1 G1 Caeruleum

15) wil: M B2 Wil Caeruleum
	wil: I like monopolies, cornering an economy is valuable.

16) capi3101: Trade G1 R1 Caeruleum
	capi3101: I see it coming...

17) wil: T B2 R2 Y3
	wil: Glad you are ready, thx for the invite!
	capi3101: I didn't say anything about being ready - just noted what was coming...

18) capi3101: Build Y1 Capi3101

19) wil: S G3 Y3
B B2 Caeruleum
B B3 Y3
B B3 Wil
	wil: I meant ready for company, I  vleaned my hw just in case.

20) capi3101: Build Y1 Capi3101

21) wil: S B2 Caeruleum
T B3 Y3 Y3
T B3 G3 Wil
	capi3101: Yep. There it is.
	capi3101: Well...

22) capi3101: Sacrifice Y1 Capi3101
Discover R1 Caeruleum Y1 Morosi

23) wil: S G3 Wil
B B2 Y3
B B3 Caeruleum
B B3 Wil
	capi3101: Damn. That's a nice engine setup. Sac the G3 at your homeworld next turn - you've got enough spots to safely grow blue, including your homeworld. Rinse, repeat...
	capi3101: Meanwhile I piddle my way along.
	capi3101: I could swap my big ship for blue, for all the more good that does me...I think that gets my big ship catted out of existence in two moves.
	capi3101: If I don't, however, you'll have a doomsday machine set up in four moves.
	capi3101: Maybe I should just swap for the large yellow and get it over with...
	capi3101: Don't worry, I won't.
	capi3101: Hell if I know what to do, though.

24) capi3101: Discover Y1 Capi3101 G1 Futuo
	wil: I call it a queen factory, I try teach opponents to avoid
	wil: Swap early!

25) wil: T B3 G3 Wil

26) capi3101: Sacrifice G3 Capi3101
Build Y2 Futuo
Build Y2 Capi3101
Build Y3 Capi3101

27) wil: B B3 Wil

28) capi3101: Sacrifice Y2 Capi3101
Move Y2 Futuo Y3
Move Y1 Futuo Y3
Catastrophe Y3 Yellow

29) wil: D B3 Wil Y3 Y3

30) capi3101: Trade Y1 B1 Capi3101
	wil: Nobody can pass those up!

31) wil: T B3 Y3 Caeruleum
	capi3101: Question is whether or not that was the best choice for me. Cost me two mediums and a small in exchange for three (?) of yours including a large. At this point, though, I lack green entirely...and I haven't broken your engine.

32) capi3101: Trade Y3 G3 Capi3101
	capi3101: I'll do that at least.
	wil: I looked at it not what was lost but what was left.

33) wil: M B2 Caeruleum Morosi

34) capi3101: Trade B1 Y1 Capi3101

35) wil: S G3 Wil
B B1 Y3
B B2 Morosi
B B3 Wil
	capi3101: Dammit. Be that way.

36) capi3101: Build G1 Capi3101
	capi3101: Trydnt bluebirded me yesterday, so now I've learned to be conscious of what exactly is sitting at my homeworld. For example, B1 ship plus B2 star is susceptible to Y3 sac to move a pair of blues moving in...
	capi3101: I couldn't tell if you were still setting that up or ready to pull the trigger. Would you have used the large blue at Y3 for that, or waited one turn to move the small one at your homeworld for the same purpose?
	wil: Blue bird and doomsday are powerful plans
	wil: 7 habits 4 highly effective HWs begin with end in mind

37) wil: T B3 G3 Y3
	capi3101: Crap. There goes half my homeworld.
	capi3101: ...and the part that lets me trade to boot.

38) capi3101: Discover R1 Morosi G3 Ego-mortui

39) wil: B B3 Y3
	wil: We've got a queen assembly line to run for a bit...
	capi3101: Yes...you're going to want to set up 3 reds in size 1 and 2 systems and grab another large yellow to finish setting up the machine. How to go about disrupting that plan effectively...
	capi3101: Build G1 capi3101!!!

...kidding.

40) capi3101: Build R1 Ego-mortui

41) wil: T B3 Y3 Y3

42) capi3101: Build R1 Ego-mortui

43) wil: B B3 Y3

44) capi3101: Sacrifice Y1 Capi3101
Move R1 Ego-mortui Morosi

45) wil: S B2 Morosi
T B3 R3 Wil
T B3 R3 Y3

46) capi3101: Sacrifice G1 Capi3101
Build R2 Morosi

47) wil: S R3 Y3
A R2 Morosi
A R1 Morosi
P
	wil: It was as if you moved for me!  
	wil: Goals s r3, s g3, s y3, s y3. Maybe a few others

	capi3101: So, do I need to ask where I screwed this one up?
	wil: Keeping someone from getting a monopoly is paramount.


35641)
Variants: "Unrated"
Started: 2019.10.31, Ended: 2019.11.4
Participants: capi3101 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	capi3101: Hello again; good luck. Hopefully I'll be more of a challenge this time around.

2) capi3101: Homeworld R3 B2 G3

3) Trydnt: Build G1 Trydnt

4) capi3101: Build G1 Capi3101

5) Trydnt: Trade G1 Y1 Trydnt

6) capi3101: Build G1 Capi3101

7) Trydnt: Build Y1 Trydnt

8) capi3101: Trade G3 Y3 Capi3101

9) Trydnt: Discover Y1 Trydnt G3 G3

10) capi3101: Discover G1 Capi3101 B1 Sugit

11) Trydnt: Build Y2 G3

12) capi3101: Build Y2 Capi3101

13) Trydnt: Trade Y1 R1 Trydnt

14) capi3101: Move Y2 Capi3101 Sugit

15) Trydnt: Discover Y1 G3 G1 G1

16) capi3101: Build G2 Sugit

17) Trydnt: Build G2 Trydnt

18) capi3101: Trade Y3 G3 Capi3101

19) Trydnt: Build Y1 G3

20) capi3101: Discover G2 Sugit B3 Caeruleum

21) Trydnt: Sacrifice G2 Trydnt
Build Y2 G1
Build Y3 G1

22) capi3101: Sacrifice G3 Capi3101
Build G2 Caeruleum
Build G2 Caeruleum
Build G3 Capi3101

23) Trydnt: Discover Y3 G1 B3 B3

24) capi3101: Build Y3 Sugit

25) Trydnt: Sacrifice Y2 G1
Move Y1 G3 Sugit
Move Y2 G3 Sugit
Catastrophe Sugit Y

26) capi3101: Build G3 Sugit

27) Trydnt: Move Y3 B3 Sugit

28) capi3101: Sacrifice G3 Sugit
Build G3 Capi3101
Pass
Pass

29) Trydnt: Sacrifice Y3 Sugit
Move G3 Trydnt Caeruleum
Move G3 Caeruleum G1
Move G3 G1 Capi3101
Catastrophe Capi3101 G
	capi3101: Damn. Touché.
	Trydnt: Yeah there was no way you could keep that big green unfortunately. made sure of that or else I wouldn't have left it in the bank
	capi3101: Wait, what the hell just happened?!?!
	Trydnt: bluebird
	Trydnt: I sacrificed my y3 to move my g3 from my homeworld all the way across the universe to yours and annihilated the three green ships you had there. If there are no ships left at your homeworld you lose. If I hadn't had that r1 ship in my homeworld I wouldn't have been able to do it either as that would have left me with no ships at mine. But since you had too many green ships already in every other place, Sugit was the only place it could go without being a danger to you. You couldn't move it since you didn't have yellow, so nowhere to safely grow it and no way to run away means I can be sure I can capture it on the next turn
	Trydnt: always be aware of how much yellow your opponent has as that will determine how far they can jump. for example, getting a y2 ship in the early-mid game and a few ships one step from your star means you can jump them straight to your opponent's homeworld and blow up a color if they ever grow three of those there



35477)
Started: 2019.10.31, Ended: 2019.12.9
Participants: Felix (S), ajo (N)
Winner: ajo

1) ajo: Homeworld G3 B2 Y3

2) Felix: Homeworld R1 B3 G3

3) ajo: Build Y1 Ajo
	Felix: Hello! This game is supposed to be for the homeworlds tournament. Agreed?

4) Felix: Build G1 Felix
	ajo: For the tournament!

5) ajo: Trade Y1 G1 Ajo

6) Felix: Trade G1 Y1 Felix

7) ajo: Build G1 Ajo

8) Felix: Build G1 Felix

9) ajo: Discover G1 Ajo B1 Alpha

10) Felix: Build G2 Felix

11) ajo: Build G2 Alpha

12) Felix: Discover G2 Felix B2 Oats

13) ajo: Trade G1 Y1 Alpha
	Felix: I'm so uncreative. Guess what I'm eating for breakfast right now? :)

14) Felix: Trade G1 B1 Felix

15) ajo: Build G1 Alpha

16) Felix: Build B1 Felix

17) ajo: Trade G2 B2 Alpha

18) Felix: Move B1 Felix Oats

19) ajo: Discover B2 Alpha G2 Beta

20) Felix: Trade B1 Y1 Oats

21) ajo: Build Y2 Alpha

22) Felix: Build Y2 Oats

23) ajo: Move Y1 Alpha Beta

24) Felix: Discover Y1 Oats G1 Ingress

25) ajo: Build B1 Beta

26) Felix: Sacrifice G3 Felix
Build Y2 Ingress
Build Y3 Oats
Build Y3 Felix

27) ajo: Trade B2 R2 Beta

28) Felix: Trade Y3 R3 Oats

29) ajo: Build Y3 Beta

30) Felix: Trade Y3 G3 Felix

31) ajo: Build Y3 Alpha

32) Felix: Move G2 Oats Alpha

33) ajo: Build B2 Beta

34) Felix: Build G2 Alpha

35) ajo: Sacrifice Y3 Beta
Move G1 Ajo Alpha
Move B1 Beta Felix
Move B2 Beta Felix
Catastrophe Alpha Green
Catastrophe Felix Blue

36) Felix: B Y3 Felix

37) ajo: Trade Y3 R3 Ajo

38) Felix: Move Y1 Felix Beta

39) ajo: Trade Y2 G2 Alpha

40) Felix: Build G1 Felix

41) ajo: Sacrifice G2 Alpha
Build R1 Beta
Build R1 Ajo

42) Felix: S Y2 Oats
M R3 Oats Alpha
M R3 Alpha Ajo

43) ajo: Sacrifice Y3 Alpha
Move R1 Beta Felix
Move R2 Beta Felix
Move R1 Ajo Felix
Catastrophe Felix Red
	ajo: Check. And I *think* that's going to be checkmate. :)

	Felix: Darn Skippy! Well done!
	ajo: Good game. :)


35642)
Variants: "Unrated"
Started: 2019.11.1, Ended: 2020.9.5
Participants: rho0 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	wil: Gl, hf

2) rho0: Homeworld B3 G1 Y3

3) wil: B G1 Wil

4) rho0: Build Y1 Rho0
	wil: Uhoh, more trouble, ya set me up for greens this time!

5) wil: B G1 Wil

6) rho0: Trade Y1 B1 Rho0

7) wil: D G1 Wil B3 B3

8) rho0: Build B1 Rho0

9) wil: B G2 Wil

10) rho0: Discover B1 Rho0 Y2 Alpha

11) wil: D G2 Wil Y3 Y3

12) rho0: Build B2 Rho0

13) wil: S G3 Wil
B G2 B3
B G2 Y3
B G3 Wil

14) rho0: Build Y1 Rho0

15) wil: S G3 Wil
B G3 Wil
B G3 Y3
B G3 B3

16) rho0: Trade B2 R2 Rho0
	rho0: You really build up fast!

17) wil: T G3 Y3 B3

18) rho0: Trade Y3 G3 Rho0
	wil: I try

19) wil: M G3 Y3 Alpha

20) rho0: Build Y1 Rho0

21) wil: T G3 Y3 Wil



35669)
Started: 2019.11.2, Ended: 2019.11.15
Participants: Babamots (S), eliscinsky (N)
Winner: Babamots

1) eliscinsky: Homeworld R1 B3 G3

2) Babamots: Homeworld B2 R1 G3
	eliscinsky: This is for the Great Homeworlds Tournament 2019
	eliscinsky: Good luck and have fun :) 
	Babamots: Yup, for the tournament. Good luck! I'm hoping to redeem myself after last time. The gloves are off! ;-)

3) eliscinsky: Build G1 Eliscinsky

4) Babamots: Build G1 Babamots

5) eliscinsky: Trade G1 R1 Eliscinsky

6) Babamots: Trade G3 R3 Babamots

7) eliscinsky: Build G1 Eliscinsky

8) Babamots: Build R2 Babamots

9) eliscinsky: Build R2 Eliscinsky

10) Babamots: Trade R2 Y2 Babamots

11) eliscinsky: Trade R2 Y2 Eliscinsky

12) Babamots: Build R2 Babamots

13) eliscinsky: Trade G1 B1 Eliscinsky

14) Babamots: Discover R2 Babamots G3 Orion

15) eliscinsky: Build G1 Eliscinsky

16) Babamots: Build R2 Babamots

17) eliscinsky: Build Y1 Eliscinsky

18) Babamots: Trade R2 B2 Babamots

19) eliscinsky: Discover R1 Eliscinsky R2 Reddwarf
	eliscinsky: Very interesting situation.  I believe I'll have to think on this one for a bit.

20) Babamots: Move B2 Babamots Orion

21) eliscinsky: Move G1 Eliscinsky Reddwarf

22) Babamots: Build Y1 Babamots

23) eliscinsky: Move Y1 Eliscinsky Reddwarf

24) Babamots: Move Y1 Babamots Orion

25) eliscinsky: Build R2 Reddwarf

26) Babamots: Move R2 Orion Reddwarf
Catastrophe Reddwarf R

27) eliscinsky: Build G1 Eliscinsky
	Babamots: I'm afraid I made your party too crowded and everyone went home. :-(

28) Babamots: Build R1 Babamots

29) eliscinsky: Discover B1 Eliscinsky G2 Greentwo

30) Babamots: Move R1 Babamots Orion

31) eliscinsky: Build B1 Greentwo

32) Babamots: Build R2 Orion

33) eliscinsky: Trade B1 Y1 Greentwo

34) Babamots: Move R2 Orion Greentwo

35) eliscinsky: Build Y1 Eliscinsky

36) Babamots: Attack Y1 Greentwo

37) eliscinsky: Trade Y2 R2 Eliscinsky

38) Babamots: Attack B1 Greentwo

39) eliscinsky: Build Y2 Eliscinsky

40) Babamots: Build Y2 Orion

41) eliscinsky: Trade Y2 B2 Eliscinsky

42) Babamots: Build B1 Greentwo

43) eliscinsky: Discover B2 Eliscinsky R2 Reddwarf

44) Babamots: Build R3 Orion

45) eliscinsky: Move R2 Eliscinsky Reddwarf

46) Babamots: Move B2 Orion Greentwo

47) eliscinsky: Build Y2 Eliscinsky

48) Babamots: Move B2 Greentwo Eliscinsky

49) eliscinsky: Attack B2 Eliscinsky

50) Babamots: Sacrifice Y2 Orion
Move B1 Greentwo Eliscinsky
Move B1 Greentwo Eliscinsky
Catastrophe Eliscinsky B

51) eliscinsky: Sacrifice B2 Reddwarf
Trade R2 Y2 Reddwarf
Trade Y2 B2 Eliscinsky

52) Babamots: Move R3 Orion Eliscinsky
	eliscinsky: I concede you have superior skills! But I'll not give up yet.  I still need to learn more from you. ;)

53) eliscinsky: Sacrifice Y2 Reddwarf
Move G3 Eliscinsky Orion
Move G3 Orion Babamots
	eliscinsky: I see what's coming :)

54) Babamots: Sacrifice Y2 Babamots
Move R1 Orion Eliscinsky
Move R2 Greentwo Eliscinsky
Catastrophe Eliscinsky R
	Babamots: This ending is like the "doomsday machine," but it takes more moves to complete. I've been calling it the "doomsweek machine."
	eliscinsky: Ha ha! I like that.  I see no way out. Count down ... 1, BOOM!
	eliscinsky: BTW, thanks for the lesson.

	eliscinsky: I just wanted the final screen to show I had something on the board.  LOL!
	eliscinsky: Kill me, Kill me now!
	Babamots: Hmm, would you rather have your homeworld destroyed or all your ships captured?
	Babamots: I pick destruction :-). GG!


35679)
Variants: "Unrated"
Started: 2019.11.4, Ended: 2019.11.11
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G2 R1 B3

2) wil: H B1 Y3 G3

3) Trydnt: Build B1 Trydnt

4) wil: B G1 Wil

5) Trydnt: Build B1 Trydnt

6) wil: B G1 Wil

7) Trydnt: Trade B3 Y3 Trydnt

8) wil: D G1 Wil B2 B2

9) Trydnt: Build B2 Trydnt

10) wil: B G1 Wil

11) Trydnt: Discover B2 Trydnt G3 G3

12) wil: S G3 Wil
B G2 B2
B G2 B2
B G3 Wil

13) Trydnt: Discover B1 Trydnt G3 Gee3

14) wil: T G2 Y2 B2

15) Trydnt: Build B2 Gee3

16) wil: T G2 R2 B2

17) Trydnt: Build B3 G3

18) wil: M R2 B2 Gee3

19) Trydnt: Sacrifice Y3 Trydnt
Discover B1 Gee3 G2 G2
Discover B2 Gee3 G2 Gee2
Move B3 G3 Trydnt

20) wil: M Y2 B2 Gee3

21) Trydnt: Build B3 Gee2

22) wil: T G3 B3 Wil

23) Trydnt: Trade B2 Y2 G3

24) wil: B G3 Wil

25) Trydnt: Sacrifice Y2 G3
Move B1 G2 Wil
Move B2 Gee2 Wil
Catastrophe Wil B

26) wil: S G3 Wil
B G2 B2
B G3 B2
B G3 Wil

27) Trydnt: Trade B1 Y1 Trydnt

28) wil: T G2 Y2 B2

29) Trydnt: Build Y1 Trydnt

30) wil: D G3 B2 Y3 Y3

31) Trydnt: Trade B3 R3 Gee2
	wil: Just got home, bedtime!

32) wil: S G3 Wil
B G2 B2
B Y1 B2
B G3 Wil

33) Trydnt: Sacrifice Y1 Trydnt
Discover R3 Gee2 Y3 Why3

34) wil: T G2 R2 B2

35) Trydnt: Move R3 Why3 B2

36) wil: B R1 B2

37) Trydnt: Attack Y2 B2

38) wil: S G3 Y3
B R1 B2
B Y1 B2
B Y2 B2
C B2 Y
C B2 R

39) Trydnt: Build Y1 Trydnt

40) wil: S G3 Wil
B G2 B2
B G2 Wil
B G3 B2

41) Trydnt: Move B3 Trydnt Wil

42) wil: S Y2 Gee3
M R2 Gee3 Trydnt
D G1 Wil Y2 Y2

43) Trydnt: Move B3 Wil Trydnt

44) wil: S G3 B2
B G3 B2
B R1 Trydnt
B R1 Trydnt
C Trydnt R

45) Trydnt: Move B3 Trydnt Wil

46) wil: S G3 B2
B G3 B2
B G3 Y2
B G3 Wil

47) Trydnt: Trade B3 R3 Wil

48) wil: T G3 Y3 B2

49) Trydnt: Attack G3 Wil
	wil: Lol, nice

	Trydnt: If you had moved the g2 from your hw to mine you could have sacrificed the g2 in b2 to grow the g2 and the g3 in my hw and blow it up. I could only attack the remaining two ships one at a time. My defense could be to move to the g3 as a star but then you can sacrifice a g1 and grow it in my hw and I still have to attack two ships so you would have won. Hard fought game right until the end :)
	wil: So.many variations this game!


35624)
Started: 2019.11.4, Ended: 2020.2.14
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld G2 Y1 B3

2) MobyNostromo: H B2 G3 Y3

3) Trydnt: Build B1 Trydnt

4) MobyNostromo: Build Y1 Mobynostromo

5) Trydnt: Trade B1 Y1 Trydnt

6) MobyNostromo: Build Y2 Mobynostromo

7) Trydnt: Build Y2 Trydnt

8) MobyNostromo: D Y2 Mobynostromo G1 Moss

9) Trydnt: Discover Y2 Trydnt G3 G3

10) MobyNostromo: T Y1 R1 Mobynostromo

11) Trydnt: Build B1 Trydnt

12) MobyNostromo: B R1 Mobynostromo

13) Trydnt: Trade B1 R1 Trydnt

14) MobyNostromo: B R2 Mobynostromo

15) Trydnt: Build R2 Trydnt

16) MobyNostromo: M R2 Mobynostromo Moss

17) Trydnt: Move R2 Trydnt G3

18) MobyNostromo: T R1 B1 Mobynostromo

19) Trydnt: Build B1 Trydnt

20) MobyNostromo: M B1 Mobynostromo Moss

21) Trydnt: Move B1 Trydnt G3

22) MobyNostromo: B R1 Moss

23) Trydnt: Discover R2 G3 B1 B1

24) MobyNostromo: B B2 Moss

25) Trydnt: Build B2 G3

26) MobyNostromo: T B1 G1 Moss

27) Trydnt: Trade B2 G2 G3

28) MobyNostromo: D G1 Moss Y3 Gold

29) Trydnt: Sacrifice G2 G3
Build R2 Trydnt
Build R3 B1

30) MobyNostromo: B R3 Mobynostromo

31) Trydnt: Trade R3 G3 B1

32) MobyNostromo: D R2 Moss B3 Phthalo

33) Trydnt: Build R3 B1

34) MobyNostromo: S Y2 Moss
M R1 Mobynostromo B1
M R2 Phthalo B1
C B1 R

35) Trydnt: Move R2 Trydnt Gold

36) MobyNostromo: D G1 Gold G1 Malachite

37) Trydnt: Build G2 B1

38) MobyNostromo: B G2 Malachite

39) Trydnt: Sacrifice G3 B1
Build G3 B1
Build Y1 Trydnt
Build Y2 G3

40) MobyNostromo: S G2 Malachite
B R1 Mobynostromo
B R2 Moss

41) Trydnt: Move Y2 G3 B1

42) MobyNostromo: T B2 Y2 Moss

43) Trydnt: Build Y3 G3

44) MobyNostromo: B G2 Malachite

45) Trydnt: Sacrifice G3 B1
Build G3 B1
Build R2 Trydnt
Build R3 Gold

46) MobyNostromo: T R1 B1 Mobynostromo

47) Trydnt: Build B2 G3

48) MobyNostromo: S B1 Mobynostromo
T G2 B2 Malachite

49) Trydnt: Move G2 B1 Gold

50) MobyNostromo: S Y2 Moss
M R1 Moss Gold
M R2 Moss Gold
C Gold R

51) Trydnt: Sacrifice G2 Gold
Build Y2 B1
Build Y3 G3

52) MobyNostromo: B R1 Mobynostromo

53) Trydnt: Build G1 B1

54) MobyNostromo: M R3 Mobynostromo Malachite

55) Trydnt: Trade Y2 R2 G3

56) MobyNostromo: T B2 Y2 Malachite

57) Trydnt: Discover Y1 Trydnt B3 B3

58) MobyNostromo: D G1 Malachite B3 Cerulean

59) Trydnt: Move R2 Trydnt Cerulean

60) MobyNostromo: M R3 Malachite Cerulean

61) Trydnt: Sacrifice G3 B1
Build R1 Cerulean
Build R2 Cerulean
Build R3 G3
Catastrophe Cerulean R

62) MobyNostromo: B G2 Cerulean

63) Trydnt: Build G2 B1

64) MobyNostromo: T G2 R2 Cerulean

65) Trydnt: Move Y3 G3 Malachite

66) MobyNostromo: M Y2 Malachite Cerulean

67) Trydnt: Move B1 G3 Malachite

68) MobyNostromo: B G2 Cerulean

69) Trydnt: Move Y3 Malachite Cerulean

70) MobyNostromo: S G2 Cerulean
B R1 Cerulean
B R2 Cerulean

71) Trydnt: Sacrifice R3 G3
Attack R2 Cerulean
Attack R2 Cerulean
Attack Y2 Cerulean

72) MobyNostromo: B R3 Cerulean
C Cerulean R

73) Trydnt: Trade Y3 R3 Cerulean

74) MobyNostromo: B G2 Cerulean

75) Trydnt: Sacrifice R2 G3
Attack G2 Cerulean
Attack G1 Cerulean

76) MobyNostromo: B R1 Mobynostromo

77) Trydnt: Build G3 B1

78) MobyNostromo: M R1 Mobynostromo Malachite

79) Trydnt: Sacrifice G3 B1
Build B1 G3
Build B2 Malachite
Build Y3 G3

80) MobyNostromo: B R2 Malachite

81) Trydnt: Sacrifice R3 Cerulean
Attack R1 Malachite
Attack R2 Malachite
Pass

82) MobyNostromo: B R2 Mobynostromo

83) Trydnt: Move G1 Cerulean B1

84) MobyNostromo: M R2 Mobynostromo B1

85) Trydnt: Sacrifice R1 Malachite
Attack R2 B1

86) MobyNostromo: B R1 Mobynostromo

87) Trydnt: Sacrifice Y1 Trydnt
Discover B1 G3 Y1 Y1

88) MobyNostromo: M R1 Mobynostromo Y1

89) Trydnt: Move B1 Y1 Mobynostromo

90) MobyNostromo: B R2 Mobynostromo

91) Trydnt: Sacrifice Y3 G3
Move B1 Malachite Mobynostromo
Move G1 B1 Mobynostromo
Move G1 B1 Mobynostromo

92) MobyNostromo: S R2 Mobynostromo
A B1 Mobynostromo
A G1 Mobynostromo

93) Trydnt: Sacrifice Y2 B1
Move B2 Malachite Mobynostromo
Move G2 B1 Mobynostromo
Catastrophe Mobynostromo B
Catastrophe Mobynostromo G



35628)
Variants: "Hard time"
Started: 2019.11.4, Ended: 2019.11.8
Participants: dlwillson (S), Trydnt (N)
Winner: dlwillson

1) Trydnt: Homeworld Y2 B2 G3 *

2) dlwillson: Homeworld R3 B1 G3 Dlwillson

3) Trydnt: Build G1 Trydnt

4) dlwillson: B G1 Dlwillson

5) Trydnt: Discover G1 Trydnt G1 G1

6) dlwillson: T G1 Y1 Dlwillson

7) Trydnt: Build G1 Trydnt

8) dlwillson: B G2 Dlwillson

9) Trydnt: Build G2 G1

10) dlwillson: B Y1 Dlwillson

11) Trydnt: Discover G1 Trydnt B3 B3

12) dlwillson: T Y1 B1 Dlwillson

13) Trydnt: Sacrifice G2 G1
Build G2 B3
Build G2 Trydnt

14) dlwillson: M B1 Dlwillson Trydnt

15) Trydnt: Move G2 Trydnt Dlwillson

16) dlwillson: A G2 Dlwillson

17) Trydnt: Build G3 Trydnt

18) dlwillson: S G2 Dlwillson
B B1 Trydnt
B B2 Trydnt
C Trydnt B

19) Trydnt: Trade G2 R2 B3

20) dlwillson: M G3 Dlwillson Trydnt

21) Trydnt: Sacrifice G3 Trydnt
Build G2 B3
Build G2 B3
Build R1 B3

22) dlwillson: S G2 Dlwillson
B G2 Trydnt
B G3 Trydnt
C Trydnt G

	Trydnt: well that was a fun little experiment 
	dlwillson: Good game and thank you! Interesting experiment. Did it go about how you thought it would?
	Trydnt: It became obvious pretty quickly that I was in a losing position. I didn't expect you to choose to make them directly connected. My thinking on taking 2 2-pip stars is that banker and fortress both have advantages in being able to control the stock of 1-pip and 3-pip stars (or turn 3-pip stars into ships later) so if I could fly to 1s and 3s then I'd be more capable of controlling the bank. I also thought having yellow from the start would be great in this situation but I think it would have made more sense to start with something else and trade for yellow. The 2-2 response might be better if you go second as you can choose color more appropriately and doesn't give opponent the chance to make them directly connected
	dlwillson: Wanna do it again? I could take first turn with whatever your like, then you do the thing again, or whatever.
	Trydnt: I'd like to play more weird universes. Some are broken but I think that playing even those would lead to some interesting strategy insights


35640)
Variants: "No undo, Unrated"
Started: 2019.11.4, Ended: 2019.12.5
Participants: Trydnt (S), rho0 (N)
Winner: Trydnt

1) rho0: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B3 Y2 G3

3) rho0: Build G1 Rho0

4) Trydnt: Build G1 Trydnt

5) rho0: Discover G1 Rho0 Y3 Alpha

6) Trydnt: Trade G1 Y1 Trydnt

7) rho0: Build G1 Alpha

8) Trydnt: Build Y1 Trydnt

9) rho0: Build G1 Alpha

10) Trydnt: Discover Y1 Trydnt B1 B1

11) rho0: Build G2 Rho0

12) Trydnt: Sacrifice G3 Trydnt
Build Y2 B1
Build Y2 B1
Build Y3 Trydnt



35688)
Started: 2019.11.6, Ended: 2019.11.9
Participants: Babamots (S), Cuc (N)
Winner: Babamots

1) Cuc: H B1 G2 Y3
	Babamots: Hi! Do I remember right that you've played HW often in-person but never online? Let me know if you need any help with the commands.

And it sounded like you've been making new notes on Homeworlds. I'd be happy to see them when you want to share.

Good luck!
	Cuc: How to enter a move? I try this message. Do I use the notes?

2) Babamots: Homeworld G3 B1 B3 *
	Cuc: Ah, I now assume this input field is indeed the chat field.
	Cuc: So, yes I'm the guy asking you about the tournament and I played several games in person. The doc can be found here: http://tinyurl.com/BC-Homeworlds-V1. Substantial feedback is welcome per email, see doc.
	Babamots: Looks like you figured out how to enter moves and messages :-).

Notes are just for your own reference. No other players can see them. I think notes are meant for long games when you expect to lose track of what your plan was before your next turn. My notes are usually things like: "Consider continuing to build yellow. Don't worry about being attacked just yet since his red ship would take two turns to arrive."

3) Cuc: B Y1 Cuc
	Cuc: Do you have guidelines to identify SS? Short but clear? I'd hate to type in long names all the time . . . My proposal: use starcolor+starsize+seqletter. Example. I'd enter B Y1 N, then D Y1 N Y3 "y3a", etc.

4) Babamots: Build B1 Babamots
	Cuc: I'm glad I've got a small user name! I tried N, but it wouldn't take the command.

5) Cuc: B Y1 Cuc
	Cuc: Ah! N is the "seat assignment".
	Cuc: B Y1 CUC

6) Babamots: Trade B3 Y3 Babamots
	Babamots: I have always used worlds from Star Trek as system names (Bolarus is a blue system since Bolians have blue skin, Romulus is a red system since Romulans are aggressive, etc.).

I can take it easy on your fingers by using short Star Trek names if you prefer.

7) Cuc: T Y1 G1 Cuc
	Cuc: I tried "T Y1 B1 Cuc" but it won't accept it, what now?
	Babamots: You can't trade for a b1 since the b1 pieces are gone. That was my devious plan in choosing my home colors.

8) Babamots: Build B2 Babamots

9) Cuc: D G1 Cuc B3 B3a
	Cuc: Cool! I figured it out 1 sec before I read your answer. Thx!
	Cuc: I'll take it slower from here, say once half an hour. I'll time it. Thx.
	Babamots: It's normal to play fast for a few moves and then slow down to a move every 12 to 48 hours. No worries.

10) Babamots: Discover B1 Babamots G2 Orion

11) Cuc: B G1 B3a
	Cuc: One more thing, I'm 5 hours behind the clock on this site. You?

12) Babamots: Build B2 Babamots
	Cuc: I realize that I can build a B2, though. It seems I need to get used to the graphical representation. I'm used to play with real pyramids. I did not expect that to interfere with my understanding of what I can do, but it did. That's why your joke is now hitting me, haha.
	Babamots: I'm in the Eastern USA time zone and the clock has always bee right for me.

For me, playing with real pyramids is unfamiliar. It's very strange for me to reach around the table and move pieces rather than just type commands. With pieces, I find myself reluctant to make new systems because of that bit of extra work to figure where to physically put them.

13) Cuc: B G1 B3a

14) Babamots: Trade B2 G2 Babamots

15) Cuc: T G1 Y1 B3a
	Cuc: On a table of 3 ft across, it's very convenient. I like to think I'm replaying an episode of star wars and arrange my pieces in a triangle, large in front.
In my doc you'll find 3 variants of Homeworks I invented. The third is "Homeworlds 3000" that allowed more than one ability to be used during one turn. I'm eager to test it out. Is it possible to propose variants (or any game) to SDG development?
I did not include a discussion about the different Homeworlds yet. Notation may not yet be consistent, but I'd prefer to identify a ship by location first, not ship first like here on SDG. I may add the naming convention I'm using in our game. Because it's the closest to what you're doing with real pyramids. You don't give names, but identify a system by it's star, naturally.

16) Babamots: Discover G2 Babamots B2 Bajor
	Cuc: How do you monitor your game? It seems you respond pretty fast. It's appreciated. I normally refresh the screen.

17) Cuc: B Y1 B3a
	Babamots: I have an alert set up on my phone. When I get an email from SDG, there's a special chime. If I'm at a computer, I often move within a minute.

18) Babamots: Build Y2 Babamots
	Babamots: SDG isn't under development anymore. Aaron is working on a totally new and improved site called Abstract Play. Right now it's just a development blog that hasn't bee updated lately:

https://www.abstractplay.com/
	Cuc: Cool! I'll try and remember that. Soon I'm getting a new phone, but I normally do not use sounds on my phone. I may make an exception . . .

19) Cuc: D Y1 Cuc G3 G3a

20) Babamots: Build B2 Orion
	Babamots: Hmm, I'll probably need to come back to this and pick a move in the morning.
	Cuc: Ok, no. It was fun today! Thx.
	Cuc: No = np

21) Cuc: B Y2 G3a

22) Babamots: Build B3 Orion
	Cuc: I've got about 20 min till 2:40p

23) Cuc: B Y2 Cuc

24) Babamots: Trade B3 Y3 Orion

25) Cuc: D G1 B3a R2 R2a

26) Babamots: Build B3 Orion

27) Cuc: T Y3 B3 Cuc

28) Babamots: Trade B3 R3 Orion
	Cuc: It's getting dangerous . . . 

29) Cuc: T B3 R3 Cuc
	Babamots: Yep, any slip from either of us could be deadly. Both players having lots of yellow seems to do that.

30) Babamots: Build Y3 Orion

31) Cuc: B R1 Cuc
	Cuc: I undid my last move, because I realized I need to have a Large Red in my HW, but mainly to test the UNDO button/function. 

Also, I got the insight that if I need to refer to any longnamed Star System, I can simply copy it from the log below. Problem solved. In any case, I still like my naming, so I don't get distracted.
	Babamots: Notice that the UNDO button only works once per move. I think there may also be a time limit where, even if your opponent hasn't moved yet, the UNDO button disappears after a few days. I haven't studied it carefully though.
	Babamots: I've often considered annoying my opponents by using barcode system names made of I's (capital i) and l's (lowercase L). My opponent would have to copy and paste the name from the log every time. Not very good sportsmanship, but it could wear down their willpower.

32) Babamots: Build B3 Orion
	Babamots: 
	Babamots: I think you made your best move, but it doesn't take a large red to attack a large red. Any large ship can attack if there is a friendly red in the system (or sacrificed). It sounded like you might have forgotten the rules slightly, and thinking that only red ships can attack is a common mistake.

A red anywhere is a red everywhere (meaning by sacrifice. I've been trying to get that saying to catch on).

33) Cuc: S Y2 Cuc
D R1 Cuc G3 G3b
M G1 R2a G3b
	Cuc: I didn't forget that, but then I realized I'd have to keep a Red AND another Large ship in my HW (I'd rather not waste my Reds). Not too efficient in this case. In any case, I agree with you about the rules. I'm desperately trying to get a Large extra somewhere. But it seems I'm a bit cornered right now. Also, your Large Reds can be sacrificed to produce 3 attacks. And soon, you'll just flood my HW sacrificing the Large Yellows? I think I'm doomed, as I am not developing fast enough.
	Cuc: "but I could wear down their willpower". I thought I was devious by confusing them by suggesting a SS-name that really isn't what it says it is, such as R3A for a G1A (if I didn't even have a G1-system), and then creating a G1B calling it R1A, etc. ESPECIALLY if they got used to the "convenience" of naming them thus. Funny. Well, I'll stay with sportsmanship . . .

34) Babamots: Move Y3 Orion G3b
	Cuc: Thx for the remarks on the UNDO button. I'll make some notes in review of this game so I won't forget those details. This game is certainly a success, as I've survived until now!

35) Cuc: B R1 Cuc

36) Babamots: Sacrifice Y3 Orion
Move B3 Orion G3b
Move B3 G3b Cuc
Move Y3 G3b Cuc
	Cuc: I made a mistake (fooled myself), so sometimes I just need to UNDO, I guess, to correct a typo. I'd better be quick, before you respond :-).
	Babamots: You hit undo before I got the page loaded. You're lucky I'm at the doctor and have bad reception. At home, I might have won the race. :-)
	Cuc: Another question: what do you use for time settings, I chose 4/6/13, so that I'd get a response in 1 week, or win in 2 weeks (that's how I read it.) But perhaps there is a convention you propose, especially for the tournament? 
	Cuc: Of course, you're much faster than that, I now realize, but sometimes for me, days may pass that I can't look at the game, or it will be at an odd time for you. Also, I wouldn't like to play under pressure, and a week is VERY comfy for me. That's because most weeks have a similar activity pattern . . .

37) Cuc: A Y3 Cuc
	Babamots: I'm not sure I understand what you've said about the 4/6/13 setting. You you have 2 weeks to win, but it's more like you have two weeks (13 days) to move. That setting means players start with 4 days on their individual clocks and 6 days are added each time one of them moves up to a maximum of 13 days.

I've settled on 7/2/7 as my preferred clock setting. It's rare for me to need more than 2 days to move, and maxing the clock at 7 days means that I always feel compelled to make a move after about 4 days (half my timer), no matter how busy I am or how reluctant I am to continue in a game that I'm losing.
	Cuc: I guess I'm missing what the last setting means. I seem to remember that if your opponent doesn't respond by that time, you may consider it a win? Perhaps it is related to "hard/soft time". I'm still new at this, and I was a bit overwhelmed by the detail here.
	Cuc: Dang, I see I could've eradicated most of your Yellow. Oh well. I was so concerned about denying you the Large Green.

38) Babamots: Sacrifice R3 Orion
Attack R3 Cuc
Attack Y3 Cuc
Attack R1 Cuc
	Babamots: If the details won't be too much, I'll give a fuller explanation of the timers later. My move will have to wait too as I have a work party to attend. There's supposed to be pizza, so it should be OK :-).
	Cuc: Sounds good. Have fun!

	Cuc: I practically am breathing out my last air. Perhaps you'd consider blowing up Blue in Cuc?
	Babamots: I'm afraid I can't settle for catastrophe here. Red-powered invasions are my preferred path to victory.
	Babamots: Pretty good. Want to try another one?
	Cuc: It's been great practicing. N this game I don't understand why I couldn't build what I wanted. You did something tricky perhaps, meaning advanced strategy?
	Cuc: Ah, you caught me there. I was hoping to lash out with my 3R once B was gone. Nothing to a veteran of your caliber . . .

Sure, I'll play another. But please be patient. I'll set it up tomorrow by the end of the day. Thx.
Any explanations? 
Do you have a strategy guide?
	Babamots: I've issued a challenge for whenever you're ready.

Since you didn't have access to blue, I was able to use blue as a shortcut to getting large pieces of other colors. I think the best thing you could have done different was to, at some point, trade your original large ship for a b3 so that you could also build larger ships.

Here's my strategy guide:

====
The most important questions
====

"If I did nothing this turn, what would my opponent's best move be?"
"If I make this move that I am considering, what will my opponent's best move be?"

====
After your opponent moves
====

Identify what objective(s) they were trying to accomplish
* Was it a "victory?" Did they just get what they wanted?
* Or was it a "setup?" Is there something they want that they got closer to?
    - If it is a setup, can you spoil it?
    - Or can you predict what their next move will and get a head start on reacting to it?
    - Or is it safe to work on a plan of your own while they build toward their goal?
* Or was it a retreat? Were they just reacting to your last move?

SOME MOVES CAN BE MULTI-PURPOSE. After you see one purpose to your opponent's move, look for more.

====
Will your move leave a desirable piece available for your opponent to build?
====
Are you building the last ship of that size?
Are you discovering a system marker with the last pieces of that size?
Are you abandoning a system? Will they want the marker?
Are you trading a ship? Will they get the old piece?
Are you sacrificing a ship? Will they build it?
Are you causing a catastrophe? Will they want the pieces?
If your opponent has a medium or large green, can they sacrifice it to skip past a size in the bank and get a larger size than you could?

====
Specific things that are tiresome to constantly consider but neglect will cost you games
====

Identify every catastrophe your opponent could possibly cause
* Yellow sacrifices provide extreme mobility. Check twice.

What if your opponent attempted an all-in homeworld attack right now?
* If they were to start moving all their ships into your home as quickly as possible, what would happen?
* Could you attack the ships as quickly as they arrived?
* Could there be a catastrophe that you wouldn't have time to prevent?
* If their attack would just barely fail, what more do they need to make it succeed?

What if YOU were to attempt an all-in homeworld attack right now?
* What more do you need to make it succeed?

====
Red flags
====

Here are BAD situations.
Things high on the list are worst.
I need to avoid these things (unless I can make something even worse happen to my opponent).
Contrariwise, it's good if my opponent has one of these problems.

1.  I have no ships in my home and I lose the game (worst thing that can happen).
2.  My opponent has more ships in my home system than I can capture in one turn, even by sacrificing my largest red.
3.  One of my home system markers is destroyed.
4.  I don't have a large ship in my home system.
5.  There is a near-catastrophe (three pieces) involving my ships (or the marker for a system where I have ships).
6.  My opponent has a red ship (anywhere) and I do not.
7.  My opponent has more large ships than me.
8.  My opponent has more yellow ships than me.
9.  My opponent has a ship in the same system as me and it's bigger than my ships there.
10. My only large ship in my home system is the same color as one (or more!) ships or markers in my home.
11. The ship(s) in my home system are all the same color (even worse if I also have a home system marker of that color).

====
Other thoughts
====

Homeworlds is a game where it's easy to charge ahead with your own plans while ignoring what your opponent is up to until it's too late. That's why these tips focus on making sure you look at what your opponent is working on. Choosing a goal and taking little steps toward it is easy. Figuring out your opponent's plans takes work.

	Babamots: Just my strategy guide into a webpage. Shoulda done that long ago:
https://jpeterbaker.github.io/homeworlds/strategyGuide.html


35689)
Variants: "Hard time"
Started: 2019.11.7, Ended: 2019.11.14
Participants: Trydnt (S), wil (N)
Winner: wil

1) wil: H B1 Y2 G3
	wil: Welcome to the top, good job young padwan...

2) Trydnt: Homeworld G3 B1 B3 *

3) wil: B G1 Wil

4) Trydnt: Build B1 Trydnt

5) wil: B G1 Wil

6) Trydnt: Trade B3 Y3 Trydnt

7) wil: D G1 Wil B3 B3

8) Trydnt: Build B2 Trydnt

9) wil: B G1 Wil

10) Trydnt: Trade B2 G2 Trydnt

11) wil: D G1 Wil Y3 Y3

12) Trydnt: Discover G2 Trydnt Y2 Y2

13) wil: B G2 B3

14) Trydnt: Move G2 Y2 Y3

15) wil: S G3 Wil
B G2 Y3
B G3 Y3
B G3 Wil
C Y3 G

16) Trydnt: Build B2 Trydnt

17) wil: T G2 B2 B3

18) Trydnt: Discover B2 Trydnt Y2 Y2

19) wil: B G1 Wil

20) Trydnt: Build B2 Trydnt

21) wil: D G1 Wil B3 Bee3

22) Trydnt: Discover B2 Trydnt Y2 Why2

23) wil: D G1 Wil B3 Btree

24) Trydnt: Trade B2 G2 Y2

25) wil: B G2 Wil

26) Trydnt: Discover B2 Why2 G3 G3

27) wil: S G3 Wil
B G2 Bee3
B G3 Wil
B B2 B3

28) Trydnt: Trade B1 R1 Trydnt

29) wil: T G1 R1 Bee3

30) Trydnt: Build G1 Y2

31) wil: T B2 Y2 B3

32) Trydnt: Build Y1 Trydnt

33) wil: S G3 Wil
B G3 Wil
B Y1 B3
B R1 Bee3

34) Trydnt: Build R2 Trydnt

35) wil: D Y1 B3 B2 B2

36) Trydnt: Move R2 Trydnt B2

37) wil: S G3 Wil
B G3 Wil
B Y1 B3
B Y3 B2

38) Trydnt: Sacrifice Y1 Trydnt
Discover G2 Y2 Y3 Y3

39) wil: S G2 Wil
B G2 B3
B R2 Bee3

40) Trydnt: Sacrifice G2 Y3
Build R2 B2
Build R3 Trydnt
	wil: You just visiting? Or staying for dinner?

41) wil: S R2 Bee3
A R2 B2
A R2 B2

42) Trydnt: Move R3 Trydnt Y2
	wil: So close!  You were almost successful!  Awesome setup!

43) wil: B G2 Wil
	wil: I was so lucky, I almost fell for your trap!

44) Trydnt: Move R3 Y2 Btree

45) wil: S G3 Wil
B G3 Wil
B Y1 B2
B Y3 B3

46) Trydnt: Attack G1 Btree
	Trydnt: Bluebird may have been my only hope. Blundered the blue freezeout somehow

47) wil: S G2 Wil
B G2 Bee3
B R2 Bee3
	wil: it's a trap and I can't see it. Beware the speech

48) Trydnt: Build R3 Trydnt

49) wil: S Y3 B3
M R2 B2 Trydnt
M R2 B2 Trydnt
M Y3 B2 Trydnt
C Trydnt R
	wil: I was afraid of the other one...let's see!

50) Trydnt: Sacrifice Y3 Trydnt
Move R3 Btree Wil
Move G1 Btree Wil
Move G1 Y2 Trydnt

51) wil: S R1 Bee3
A G1 Trydnt

	Trydnt: I wanted to send the b2 in to your hw too for a last vainglorious assault on the death star that ultimately failed. Well played and enjoy the top ;)
	wil: Lol, tough to last long at the top round here.


35686)
Variants: "No undo, Unrated"
Started: 2019.11.7, Ended: 2019.11.19
Participants: capi3101 (S), rho0 (N)
Winner: capi3101

1) rho0: Homeworld B2 Y1 G3
	capi3101: Howdy. You up for a rematch?

2) capi3101: Homeworld R3 B2 G3

	rho0: always


35685)
Variants: "Hard time"
Started: 2019.11.7, Ended: 2019.11.22
Participants: dlwillson (S), capi3101 (N)
Winner: dlwillson

1) capi3101: Homeworld B2 R3 G3
	capi3101: Greetings! Best of luck; my record hasn't been all that great with this game so far...

2) dlwillson: H R3 B1 G3

3) capi3101: Build G1 Capi3101
	dlwillson: Thank you for accepting my challenge! Good luck, and have fun!

4) dlwillson: B G1 Dlwillson

5) capi3101: Trade G1 Y1 Capi3101

6) dlwillson: T G1 Y1 Dlwillson

7) capi3101: Build G1 Capi3101

8) dlwillson: B G1 Dlwillson

9) capi3101: Discover G1 Capi3101 B1 Aleph

10) dlwillson: T G1 B1 Dlwillson

11) capi3101: Build G1 Aleph

12) dlwillson: B B2 Dlwillson
	capi3101: Aw, heck.

13) capi3101: Trade G1 R1 Aleph

14) dlwillson: T B1 R1 Dlwillson

15) capi3101: Build G1 Aleph

16) dlwillson: D B2 Dlwillson Y2 Golden

17) capi3101: Trade G1 Y1 Aleph

18) dlwillson: M B2 Golden Aleph

19) capi3101: Build Y2 Capi3101

20) dlwillson: S R1 Dlwillson
A R1 Aleph

21) capi3101: Sacrifice Y2 Capi3101
Discover Y1 Aleph Y2 Bet
Discover G1 Aleph B2 Gimel

22) dlwillson: B Y2 Dlwillson

23) capi3101: Sacrifice G3 Capi3101
Build Y2 Bet
Build Y3 Capi3101
Build Y3 Capi3101

24) dlwillson: M Y1 Dlwillson Bet
C Bet Y

25) capi3101: Trade Y3 R3 Capi3101

26) dlwillson: T B2 G2 Aleph
	capi3101: ...as planned.

27) capi3101: Move R3 Capi3101 Aleph

28) dlwillson: S G2 Aleph
B R1 Aleph
B G1 Dlwillson

29) capi3101: Sacrifice Y1 Capi3101
Move R3 Aleph Gimel

30) dlwillson: T R1 G1 Aleph

31) capi3101: Trade Y3 G3 Capi3101
	capi3101: Damn. Going to lose it. Let's see if I can try to lose it on my own terms at least.

32) dlwillson: B G2 Aleph

33) capi3101: Build G2 Gimel

34) dlwillson: B G2 Aleph

35) capi3101: Trade G2 Y2 Gimel

36) dlwillson: T G2 Y2 Aleph

37) capi3101: Build G2 Gimel

38) dlwillson: D G1 Dlwillson B2 Sea

39) capi3101: Move G1 Gimel Aleph

40) dlwillson: Sacrifice Y2 Aleph
Move G1 Aleph Capi3101
Move G2 Aleph Capi3101

41) capi3101: Trade G3 Y3 Capi3101

42) dlwillson: A G1 Aleph
	dlwillson: What does that mean?
	capi3101: Which ‘that’ in particular?

43) capi3101: Attack G2 Capi3101

44) dlwillson: S G1 Capi3101
B G1 Dlwillson
	dlwillson: "lose it on my own terms"
	capi3101: Oh, that. At the time I was thinking I’d have to sacrifice the big red piece on the next move no matter what. Things worked out differently.

45) capi3101: Build R1 Gimel

46) dlwillson: Build Y1 Dlwillson
	dlwillson: Ah, OK!
	capi3101: I’m still going to lose it; just got to hang on to it a little longer than I first thought.

47) capi3101: Move R3 Gimel Aleph

48) dlwillson: B R1 Aleph

49) capi3101: Trade R3 B3 Aleph

50) dlwillson: T Y1 B1 Dlwillson
	dlwillson: I don't know. You're a big ahead. That matters quite a lot. I *had* it until I launched that expensive and doomed attack on your home system.
	capi3101: Yeah, I came up with an alternative strategy. One of the things I love/hate about this game - there's so many different ways to respond/counterattack to each move.
	capi3101: You've about finished me off twice if I've counted right...just as I've almost gotten you once.

51) capi3101: Sacrifice G2 Capi3101
Build G2 Gimel
Build B3 Aleph

52) dlwillson: S G3 Dlwillson
B G2 Aleph
B G3 Sea
B G3 Dlwillson

53) capi3101: Trade G2 Y2 Gimel

54) dlwillson: S G3 Dlwillson
B G2 Sea
B G3 Aleph
B G3 Dlwillson

55) capi3101: Move G2 Gimel Aleph
Catastrophe Aleph G

56) dlwillson: Sacrifice Y2 Dlwillson
Move B1 Dlwillson Sea
Move B1 Sea Aleph
Catastrophe Aleph B

57) capi3101: Trade Y3 G3 Capi3101
	capi3101: No, that actually was what I wanted to do, on closer reflection.

58) dlwillson: T G3 Y3 Dlwillson

59) capi3101: Build G1 Capi3101

60) dlwillson: T G2 Y2 Sea
	capi3101: Naw...that's really my only option. Damn.

61) capi3101: Trade Y2 G2 Gimel
	capi3101: Got a bad feeling about this.

62) dlwillson: S Y2 Sea
D G3 Sea B1 Sky
M G3 Sky Capi3101
	capi3101: Yeah. Saw that coming. Wasn't sure you'd do it or not but it made sense.

	capi3101: Ah...crap. Well played.
	dlwillson: Thanks, and good game!


35684)
Started: 2019.11.7, Ended: 2019.12.24
Participants: capi3101 (S), MobyNostromo (N)
Winner: capi3101

1) MobyNostromo: H Y2 B3 G3

2) capi3101: Homeworld R3 B1 G3

3) MobyNostromo: B G1 Mobynostromo
	capi3101: Howdy. Do you have a preferred system for naming star systems?
	MobyNostromo: Hi. I just have fun with the colors by naming them things like Moss, Amber, Sky, and things like that. How about you?

4) capi3101: Build G1 Capi3101

5) MobyNostromo: T G1 Y1 Mobynostromo

6) capi3101: Build G1 Capi3101

7) MobyNostromo: B Y1 Mobynostromo

8) capi3101: Trade G1 Y1 Capi3101

9) MobyNostromo: D Y1 Mobynostromo G1 Moss

10) capi3101: Trade G1 B1 Capi3101

11) MobyNostromo: B Y2 Moss

12) capi3101: Sacrifice G3 Capi3101
Build Y2 Capi3101
Build Y3 Capi3101
Build B1 Capi3101
	capi3101: I don't really have a preference just yet. Was doing them in Latin but that was getting cumbersome. Think this time around I'll try Greek numerals...

13) MobyNostromo: Build G1 Mobynostromo
	capi3101: Don't want to get locked out entirely.

14) capi3101: Sacrifice Y2 Capi3101
Discover Y1 Capi3101 G2 Ena
Move B1 Capi3101 Ena
	capi3101: Oh damn.
	capi3101: That was stupid of me.
	capi3101: ...and I can't undo that one either.
	MobyNostromo: That's cool. I won't create a Catastrophe this round (but you've got one turn to get out of Dodge). :)

15) MobyNostromo: T G3 B3 Mobynostromo

16) capi3101: Trade Y3 G3 Capi3101
	capi3101: I appreciate that; I was going to offer to resign and restart the game.
	capi3101: Tell you what - I'll offer you a free move in exchange. Just holler when you want to use it and I'll pass my next turn.
	capi3101: If the system will let me, of course...I assuming it will.

17) MobyNostromo: B B2 Mobynostromo
	MobyNostromo: No worries. This is a gentleman's game. ;)
	MobyNostromo: Plus, I have a feeling you can't pass. I could be wrong.
	MobyNostromo: I just checked. Yes, I'm wrong. You can pass, apparently.

18) capi3101: Discover B1 Ena G1 Duo

19) MobyNostromo: M B2 Mobynostromo Moss

20) capi3101: Build B2 Capi3101

21) MobyNostromo: B G2 Mobynostromo

22) capi3101: T B2 Y2 Capi3101

23) MobyNostromo: T Y1 R1 Moss

24) capi3101: Sacrifice G3 Capi3101
Build Y1 Ena
Build Y3 Capi3101
Build Y3 Capi3101

25) MobyNostromo: M R1 Moss Ena

26) capi3101: Trade Y3 R3 Capi3101


27) MobyNostromo: A Y1 Ena

28) capi3101: Move R3 Capi3101 Ena

29) MobyNostromo: T G1 R1 Mobynostromo

30) capi3101: Attack R1 Ena

31) MobyNostromo: D Y1 Ena G3 Gaia

32) capi3101: B Y3 Ena

33) MobyNostromo: B Y3 Moss

34) capi3101: Move Y3 Ena Duo

35) MobyNostromo: B B2 Moss

36) capi3101: Move R1 Ena Duo

37) MobyNostromo: M B2 Moss Gaia

38) capi3101: Build B2 Duo

39) MobyNostromo: B B3 Moss

40) capi3101: Sacrifice Y2 Capi3101
Move B2 Duo Mobynostromo
Move B1 Duo Mobynostromo
Catastrophe Mobynostromo B

41) MobyNostromo: M B3 Moss Mobynostromo

42) capi3101: Build Y2 Ena

43) MobyNostromo: T B2 R2 Moss

44) capi3101: Sacrifice Y2 Ena
Move Y3 Capi3101 Mobynostromo
Move Y3 Duo Mobynostromo
Catastrophe Mobynostromo Y

	capi3101: Good game; if you want a rematch, just let me know.
	MobyNostromo: Sure. Let's try another one.


35600)
Variants: "Hard time"
Started: 2019.11.7, Ended: 2019.11.15
Participants: Collin (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 G3 Y3 *

2) Collin: Homeworld Y1 B2 G3

3) Trydnt: Build Y1 Trydnt

4) Collin: Build G1 Collin

5) Trydnt: Build Y1 Trydnt



35619)
Variants: "Hard time"
Started: 2019.11.7, Ended: 2019.11.19
Participants: wil (S), Collin (N)
Winner: wil

1) Collin: Homeworld Y3 B2 G3

2) wil: Homeworld B2 Y1 G3

3) Collin: Build G1 Collin

4) wil: B G1 Wil

5) Collin: Discover G3 Collin B1 Alpha

6) wil: T G1 B1 Wil

7) Collin: Build G1 Alpha
	wil: In chess it often ain't good to move the queen out early

8) wil: B B1 Wil

	wil: Oh phooey


35671)
Variants: "Unrated"
Started: 2019.11.7, Ended: 2019.12.5
Participants: Trydnt (S), Collin (N)
Winner: Trydnt

1) Collin: Homeworld Y1 B2 G3

2) Trydnt: Homeworld B3 R2 G3

3) Collin: Build G1 Collin

4) Trydnt: Build G1 Trydnt



35672)
Variants: "Unrated, Hard time"
Started: 2019.11.7, Ended: 2019.11.14
Participants: capi3101 (S), Collin (N)
Winner: capi3101

1) Collin: Homeworld Y2 B1 G3

2) capi3101: Homeworld R3 B2 G3

3) Collin: Build G1 Collin
	capi3101: Greetings! Good luck.
	Collin: thanks! you as well

4) capi3101: Build G1 Capi3101

5) Collin: Trade G3 R3 Collin

6) capi3101: Trade G1 B1 Capi3101



35703)
Started: 2019.11.10, Ended: 2019.11.15
Participants: Babamots (S), Cuc (N)
Winner: Babamots

1) Cuc: Homeworld B1 G2 Y3

2) Babamots: Homeworld G3 B1 B3 *
	Cuc: Thx!
	Cuc: Would you be OK with me including your strategy in a document I want to share? Of course, I'll attribute it to you and mention your website. My updated version of the standalone is http://tinyurl.com/BC-Homeworlds-V1-2
	Cuc: Would you be OK with me including your strategy in a document I want to share? Of course, I'll attribute it to you and mention your website. My updated version of the standalone is http://tinyurl.com/BC-Homeworlds-V1-2
	Cuc: Hm, it allowed me to submit the same message twice while updating the page after the first submit.
	Babamots: Sure, you can include my thoughts in your notes. I'll start reading them later, but they look interesting.

3) Cuc: B Y1 Cuc

4) Babamots: Build B1 Babamots
	Cuc: Thx. When done I'll send you an update.
	Babamots: So I'm trying that sneaky early blue freeze again. You can join the blue economy by trading your large yellow for blue. Not doing that last game was a big part of why you fell behind.

5) Cuc: Build Y1 Cuc

6) Babamots: Trade B3 Y3 Babamots
	Cuc: Thx for the heads up. Now, I wonder if I had done H G1 B2 if that matters compared to H B1 G2? In any case, it's about the timing. As long as there is a B3 in the bank, I guess that I'll always be able to get a B3. Also, I am going to do it a bit different with my Yellow ships. I did not do last game what I've been doing in other games. In any case, I'm confident I can do better this time, but if it's enough to win remains to be seen. 

7) Cuc: Discover Y1 Cuc G3 G3a

8) Babamots: Build B2 Babamots

9) Cuc: Trade Y3 B3 Cuc

10) Babamots: Trade B2 R2 Babamots

11) Cuc: Build Y1 Cuc
	Babamots: I've been reading your notes on Homeworlds. The "Red Hulk" part of the strategy section seems wrong, or else I have misunderstood it. In order to defend a home invasion consisting of a single r3 ship, all that a player needs is a large ship at home and a red ship anywhere (not necessarily in their home system). Sacrificing that red will let them capture the r3, invasion over.

If you meant to say that the "Red Hulk" maneuver requires that your opponent has no red ships *anywhere*, then I agree. That's one reason that it's usually essential to get a red ship immediately if your opponent has one.

12) Babamots: Build Y2 Babamots

13) Cuc: Build Y2 Cuc
	Cuc: I saw you are playing a version of Zendo. Do you have the rules for this version? What tool you use to construct (draw) the koans? I think the rule is: a graph such that each vertex is blue, has an even number of lines and there is at least one vertex with 4 lines.
The last excludes the hexagon or a square.
	Cuc: It's game 35538

14) Babamots: Discover Y2 Babamots G2 Bajor
	Babamots: In graph-Zendo, only the graph structure itself matters, not the colors or the layout used to draw it.

I'm using networkx in Python to draw my graphs. Some of the others are using a collection of graph images that analogkid put together.
	Cuc: I did not write what I actually think the rule was. Here is another go: a KHTBN if every vertex is blue, each vertex has an even number of lines,  and there is at least one vertex with 4 lines.
The last excludes the hexagon or a square.
	Cuc: Do you have a link to networkx, so I can play the game too? If I start the game, do I have an option to use different tools? Can you play the game without installing any tools? (You said that there is a library from analogkid. How to access it?)

15) Cuc: Discover Y2 Cuc B3 B3a

16) Babamots: Build B2 Babamots
	Cuc: I made a mistake. I thought you couldn't sacrifice your Y3, but you've got too many other ships in your HW. I am not used to not see all the board at the same time I am committing to a move. So, you can move your Y2 over to my HW if you want. It will call an Extinction (Catastrophe). At least, we will see some fireworks, haha.
	Cuc: I should've created my Y2 in G3A.
By the way, the naming convention I have decided upon can include <color><size><player direction><sequence letter>. So, my G3A should've been G3NA, so you can also see who created the system. It's not relevant for the game, but it's relevant for fluid play, so you don't get confused.
In any case, if you decide to move your Y2, I will survive, and we both loose all our Yellow in our HW's.
	Cuc: See you tomorrow (Wednesday). In fact, it's already tomorrow here, too. (And that is one of those times where "tomorrow" can actually be used to refer to the *present* . . . mind blowing, isn't it?)

17) Cuc: Build Y2 G3a

18) Babamots: Build Y3 Babamots

19) Cuc: Build Y3 G3a

20) Babamots: Trade Y3 G3 Babamots

21) Cuc: Discover Y3 G3a B2 B2a

22) Babamots: Sacrifice Y3 Babamots
Move G3 Babamots Bajor
Move G3 Bajor B3a
Move G3 B3a Cuc

23) Cuc: Trade B3 R3 Cuc

24) Babamots: Sacrifice R2 Babamots
Attack R3 Cuc
Attack Y1 Cuc

25) Cuc: S Y3 B2a
M Y2 G3a Cuc
M Y1 G3a Cuc
M Y2 B3a Cuc

26) Babamots: Catastrophe Cuc Y
Pass

	Cuc: It shows that somehow you used minimal equipment and I'm powerless to defend. All for one, one for all.
	Cuc: You could conquer 3 ships, then trade your g3 for a r3 and conquer 3 more. With 2 ships in my HW you're quite powerful.
	Cuc: Count me in for another game . . .
-
I neglected to defend my HW, so when you moved over I was done. I'm going to look back and see when I should've gotten red in my HW.
	Babamots: One thing is that the defensive red doesn't even need to be in your homeworld (which is one of the things I was saying about your "Red Hulk" maneuver). My red ship let me invade your home even though my red didn't go to your home. The same technique works for defense. You just need a red *somewhere* as a defensive weapon *everywhere*.

I got a red ship on my 5th move:

http://www.superdupergames.org/?page=archive_play&gid=35703&idx=9

You could have traded yellow for red on your 6th or 7th move, but I agree with your decision to invest in yellow ships during those moves. Trading for red during your 6th move would have required trading away your only yellow at home, which is bad. On your 7th move, you built your first medium ship, which helped you to keep up with my growth rate. I didn't have an immediate way to force an encounter that was favorable for me, so these 6th and 7th moves were safe for you.

I think the best time to get red would have been on your 8th move. Trading any of your home yellows for red would have reduced your yellow concentration (setting you up to safely build yellow again) and created a defensive weapon.
	Cuc: Yes, I remember that I considered what next to do. It seems in this game and the previous that I was trying to do too much towards a goal, but did not do what was necessary to defend my Homeworld.
Thx for the analysis. I'm learning from it.
-
The Red Hulk is only working because it's like 2 in 1; it's large and it's red. In the way you are describing it, it always requires the sacrifice of a Red ship; and you can only sacrifice it once. Most times that may be sufficient, but only when it's the right timing.
	Babamots: What I mean about the "Red Hulk" thing is that the other guy only needs a single red to defend against it. When you get the r3, he has one turn in which to trade for a red anywhere. That shuts down the Red Hulk invasion.

I did the opposite by using a red sacrifice as part of my attack plan rather than to defend.


35715)
Variants: "Unrated"
Started: 2019.11.13, Ended: 2019.12.4
Participants: Draw5PlayAll (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3

2) Draw5PlayAll: Homeworld B3 R2 G3
	Babamots: What's this about strange homeworld setups?
	Draw5PlayAll: I mean I don't want to play with small universes or instafreezes or anything like that.

3) Babamots: Build G1 Babamots

4) Draw5PlayAll: Build G1 Draw5playall

5) Babamots: Trade G1 Y1 Babamots

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Babamots: Build G1 Babamots

8) Draw5PlayAll: Build G1 Draw5playall

9) Babamots: Trade G1 R1 Babamots

10) Draw5PlayAll: Trade G1 R1 Draw5playall

11) Babamots: Build R2 Babamots

12) Draw5PlayAll: Discover R1 Draw5playall G1 Build

13) Babamots: Trade R1 B1 Babamots
	Draw5PlayAll: Remember this undo when you inevitably coach me on my mistakes after I lose.

14) Draw5PlayAll: Build G1 Draw5playall
	Babamots: My coaching is evitable, I promise. Normally, I only spew advice to new players who ask for it, and I wasn't planning to lecture you.

If you *would* like me to share my thoughts, just let me know. :-)

15) Babamots: Build B1 Babamots
	Draw5PlayAll: That's the reason I started this game. I always seem to come on the worse side of the opening economy, regardless of which seat I play.

But I'd prefer to wait until AFTER the game.

16) Draw5PlayAll: Trade G1 B1 Draw5playall

17) Babamots: Discover B1 Babamots G3 Risa

18) Draw5PlayAll: Build B2 Draw5playall

19) Babamots: Build B2 Risa

20) Draw5PlayAll: Move B1 Draw5playall Build

21) Babamots: Trade B2 Y2 Risa

22) Draw5PlayAll: Move B2 Draw5playall Build

23) Babamots: Build B2 Risa

24) Draw5PlayAll: Trade B2 Y2 Build
	Draw5PlayAll: Something's not right here.

25) Babamots: Discover B2 Risa Y1 Iconia

26) Draw5PlayAll: Build Y2 Draw5playall

27) Babamots: Sacrifice G3 Babamots
Build Y3 Risa
Build Y3 Babamots
Build Y3 Babamots

28) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y2 Build Risa
Move Y2 Risa Babamots
Catastrophe Babamots Yellow

29) Babamots: Trade Y3 G3 Risa
	Draw5PlayAll: Something tells me I am in trouble.

30) Draw5PlayAll: Build Y1 Draw5playall

31) Babamots: Sacrifice G3 Risa
Build B2 Risa
Build B3 Iconia
Build B3 Babamots

32) Draw5PlayAll: Discover Y1 Draw5playall G1 Construct

33) Babamots: Move B2 Risa Build

34) Draw5PlayAll: Build Y2 Construct
	Draw5PlayAll: The usual.

35) Babamots: Sacrifice R2 Babamots
Attack B1 Build
Attack R1 Build

36) Draw5PlayAll: Discover Y1 Construct G2 Desperation

37) Babamots: Build R1 Build

38) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Desperation
Build Y3 Draw5playall
Build Y3 Construct

39) Babamots: Trade B3 Y3 Babamots

40) Draw5PlayAll: Trade Y1 G1 Draw5playall

41) Babamots: Build R2 Build

42) Draw5PlayAll: Build G2 Draw5playall

43) Babamots: Move B3 Iconia Draw5playall

	Babamots: If you'd like, I'll write up my analysis so we can study the game together. I'll put it in chat when I've had chance to look back over the game.
	Draw5PlayAll: Sure.
	Babamots: Here are my thoughts on the turning points of the game. Let me know if you disagree or see anything you'd like to discuss deeper.

On move 6, you move your red ship away from home. I think you should have built an r2 instead for several reasons:
* Building r2 would keep you closer to even in material.
* Building r2 would give you two red ships at home. That would allow you to trade one of them without losing your only red ship. As it is, I get a 2-move head start in the blue economy.
* When I have a red ship alone in a green system, it usually stays there all game without achieving much. If ships from the "build" system are going to amount to anything, you'll need to spend time reinforcing with at least one other ship (which you do on turn 10). It's faster to discover with one of the other colors.

On move 10, you improve the health of "build," by moving in a b1. It looks like you realized on your next turn that you needed a medium ship there for defense. It would have been faster to move your b2 to "build" on move 10. Moving in the b2 on move 10 also would have kept your blue ships more spread out, possibly making it easier to build blue later.

On move 13, you opened up the large yellows. On move 14, I build all of the y3, but then you kill two of them with a catastrophe. I expected the catastrophe before I built and decided that it was worth it. Comparing the position after your 13th move to the position after your 14th move, I think the exchange went in my favor.

On move 16, I cash in on my blue advantage. At this point, I think the material is too much in my favor and the game is essentially over.
	Draw5PlayAll: OK.

On move 6, I think I was worried about opening up the R3s. You discover a new system with your red, I discover one with mine, and then you sac your G3 to build all the R3s. I guess I could trade away a red, but then with only one red ship I can never hope to mass-build in red anymore.

On move 10, the idea of sending the small first was so that if you built a B3 at Risa, I could destroy it only losing two small ships, whereas if I had sent the B2 out instead I would have had to lose it.

On move 11, I would have built a B2 at build, but that would have opened up the B3s.

On move 13, should I have mass-built yellow myself? The yellow stash appears to be 3332 at that moment.
	Babamots: You've got good counterpoints.

6
I agree that, if you build r2 as I suggested, there is a danger of me getting ahead by one or more r3. I think your next move should be to trade your r1 for b1. If I keep trying to get red, I think you would have time to build some yellow and get your r1 in a position to cause me a catastrophe if I get greedy enough to build an r3 at home. I may have to set this one up with pieces to work it out carefully and see who's right.

10
You're totally right. Your 10th move is good. Do you know what you had in mind on your 11th move? I think discovering another g1 system might have been better.

13
Yes, I think you would have been better off mass-building yellow yourself, two ships in your home and one in "build." I would almost certainly have built a y3 as well. I gained a large, you gained a large and a medium. After that, I think the position is pretty even.
	Draw5PlayAll: 10
I think I might have been trying to get a B3 myself on move 11, or else just diversifying.

Well, thanks for the tips.


35605)
Started: 2019.11.15, Ended: 2020.4.15
Participants: DodoBirb (S), nycavri (N)
Winner: DodoBirb

1) nycavri: Homeworld B1 Y2 G3
	nycavri: Confirming that this is a Tournament game.
	nycavri: TaGG!

2) DodoBirb: Homeworld R1 B3 G3
	DodoBirb: Yes it is a tournament game. TaGG!

3) nycavri: Build G1 Nycavri

4) DodoBirb: Build G1 Dodobirb

5) nycavri: Trade G1 Y1 Nycavri

6) DodoBirb: Build G1 Dodobirb

7) nycavri: Discover Y1 Nycavri G3 Deacon

8) DodoBirb: Trade G1 Y1 Dodobirb

9) nycavri: Build G1 Nycavri

10) DodoBirb: Discover Y1 Dodobirb G2 Green
	DodoBirb: I'll wait
	nycavri: Sorry - was away at BGGCon.  I'm back - thanks for your patience!

11) nycavri: Trade G1 R1 Nycavri

12) DodoBirb: Trade G1 R1 Dodobirb

13) nycavri: Build G1 Nycavri

14) DodoBirb: Build G1 Dodobirb

15) nycavri: Discover Y1 Deacon G2 May

16) DodoBirb: Trade G1 Y1 Dodobirb

17) nycavri: Build Y2 May

18) DodoBirb: Build Y2 Green

19) nycavri: Build R2 Nycavri

20) DodoBirb: Move R1 Dodobirb Green

21) nycavri: Discover R1 Nycavri Y3 Mercury
	DodoBirb: So, I'm going to be away for about 2 and a half weeks on holiday where I won't be guaranteed internet access 24/7. I'll try get in moves when I can but I'll pause the timer just in case.

22) DodoBirb: Build R2 Green
	nycavri: HNY!
	DodoBirb: HNY to you too!

23) nycavri: Move R1 Mercury May

24) DodoBirb: Discover R2 Green G3 Greeny

25) nycavri: Build R2 May

26) DodoBirb: Build R3 Green

27) nycavri: Build R3 Nycavri

28) DodoBirb: Build Y3 Dodobirb

29) nycavri: Trade R3 Y3 Nycavri

30) DodoBirb: Discover Y3 Dodobirb G2 Construction

31) nycavri: Discover Y3 Nycavri Y3 Taylor

32) DodoBirb: Move R1 Green Greeny

33) nycavri: Trade G1 B1 Nycavri

34) DodoBirb: Trade Y1 B1 Dodobirb

35) nycavri: Move B1 Nycavri Taylor

36) DodoBirb: Build G1 Dodobirb

37) nycavri: Build G1 Nycavri

38) DodoBirb: Trade G1 Y1 Dodobirb

39) nycavri: Trade Y3 B3 Taylor

40) DodoBirb: Build Y3 Construction

41) nycavri: Trade B1 G1 Taylor

42) DodoBirb: Build G1 Dodobirb

43) nycavri: Sacrifice Y2 May
Move B3 Taylor May
Move B3 May Greeny

44) DodoBirb: Sacrifice Y2 Green
Move R2 Greeny May
Move R1 Greeny May
Catastrophe May R

45) nycavri: Sacrifice G3 Nycavri
Build G3 Nycavri
Build B1 Greeny
Build Y2 May

46) DodoBirb: Move R3 Green Taylor

47) nycavri: Discover G1 Taylor Y2 Edney

48) DodoBirb: Discover Y3 Construction R3 Reddy

49) nycavri: Sacrifice Y1 May
Move B1 Greeny Edney

50) DodoBirb: Move B1 Dodobirb Green

51) nycavri: Build B2 Edney

52) DodoBirb: Trade B1 R1 Green

53) nycavri: Sacrifice Y2 May
Move B1 Edney Dodobirb
Move B2 Edney Dodobirb

54) DodoBirb: Sacrifice R3 Taylor
Attack B2N Dodobirb
Attack B1N Dodobirb
Pass

55) nycavri: Sacrifice G3 Nycavri
Build G2 Edney
Build G3 Nycavri
Build B1 Greeny
	DodoBirb: I'll wait
	nycavri: Sorry.  Still here.

56) DodoBirb: Move B2 Dodobirb Green

57) nycavri: Trade B3 Y3 Greeny

58) DodoBirb: Discover B2 Green R3 R3

59) nycavri: Sacrifice Y3 Greeny
Move B1 Greeny Edney
Move G1 Edney Dodobirb
Move G2 Edney Dodobirb
Catastrophe Dodobirb G

60) DodoBirb: Move Y3 Construction Dodobirb

61) nycavri: Discover G1 Nycavri Y3 Rami

62) DodoBirb: Trade Y1 G1 Dodobirb

63) nycavri: Sacrifice G1 Rami
Build B2 Edney

64) DodoBirb: Move B1 Dodobirb Green

65) nycavri: Trade B1 G1 Edney

66) DodoBirb: Move Y3 Reddy Edney

67) nycavri: Discover B2 Edney G1 Rami

68) DodoBirb: Move Y3 Edney Rami

69) nycavri: Trade B2 Y2 Rami

70) DodoBirb: Build G2 Dodobirb

71) nycavri: Build G2 Nycavri

72) DodoBirb: Move G2 Dodobirb Edney

73) nycavri: Discover G2 Nycavri Y3 Rogers

74) DodoBirb: Build R1 Green

75) nycavri: Build R2 Nycavri

76) DodoBirb: Move Y3 Rami Rogers

77) nycavri: Build G3 Nycavri

78) DodoBirb: Build G3 Dodobirb

79) nycavri: Sacrifice G3 Nycavri
Build G3 Edney
Build Y1 Rami
Build Y1 Rami

80) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build B1 R3
Build B2 R3

81) nycavri: Discover R2 Nycavri B3 Stickells

82) DodoBirb: Sacrifice Y3 Rogers
Move B2 R3 Nycavri
Move B2 R3 Nycavri
Move B1 R3 Nycavri
Catastrophe Nycavri B

83) nycavri: Sacrifice G3 Edney
Build G3 Nycavri
Build R2 Stickells
Pass

84) DodoBirb: Build R3 Green

85) nycavri: Sacrifice Y2 Rami
Move G1 Edney Dodobirb
Move G3 Nycavri Dodobirb
Catastrophe Dodobirb G

86) DodoBirb: Trade Y3 G3 Dodobirb

87) nycavri: Discover G2 Rogers Y2 Lambert

88) DodoBirb: Build Y3 Green

89) nycavri: Sacrifice Y1 Rami
Move R2 Stickells Green
Catastrophe Green R

90) DodoBirb: Build G1 Dodobirb

91) nycavri: Build R1 Nycavri

92) DodoBirb: Trade G3 Y3 Dodobirb

93) nycavri: Move G2 Lambert Dodobirb

94) DodoBirb: Attack G2N Dodobirb

95) nycavri: Trade R2 Y2 Stickells

96) DodoBirb: Discover Y1 Green G3 Greeeny

97) nycavri: Build R1 Nycavri

98) DodoBirb: Trade G2 R2 Dodobirb

99) nycavri: Sacrifice Y2 Stickells
Move R1 Nycavri Dodobirb
Move R1 Nycavri Dodobirb
Catastrophe Dodobirb R

100) DodoBirb: Trade G1 R1 Dodobirb

101) nycavri: Build G1 Nycavri

102) DodoBirb: Build Y1 Greeeny

103) nycavri: Move Y1 Rami Greeeny

104) DodoBirb: Sacrifice Y3 Green
Move Y3 Dodobirb Nycavri
Move Y1 Greeeny Nycavri
Move Y1 Greeeny Nycavri
Catastrophe Nycavri Y

	DodoBirb: Good game!
	nycavri: Thanks for the game.  Hope you are well.


35721)
Variants: "Hard time"
Started: 2019.11.16, Ended: 2019.12.17
Participants: Draw5PlayAll (S), wil (N)
Winner: Draw5PlayAll

1) wil: H Y2 B1 G3

2) Draw5PlayAll: Homeworld B3 R1 G3
	wil: Good luck!
	wil: Is this tourney and ladder?
	Draw5PlayAll: Didn't we already play for the tourney?

3) wil: B G1 Wil
	Draw5PlayAll: I guess not. All right, let's do this!
	wil: Cool, can you do the paperwork

4) Draw5PlayAll: Build G1 Draw5playall
	wil: I'll try to check a few x a day, 2 keep it moving

5) wil: T G1 B1 Wil

6) Draw5PlayAll: Trade G1 B1 Draw5playall
	wil: I church is over, shopping is done, ravens are on..
	wil: I now have time to make a plethora of early game moves

7) wil: B B2 Wil

8) Draw5PlayAll: Build B2 Draw5playall
	Draw5PlayAll: I was going to try to freeze you out of red but I don't have movement.
	wil: It is a choice.....


9) wil: D B1 Wil Y3 Y3

10) Draw5PlayAll: Trade B1 Y1 Draw5playall

11) wil: B B1 Wil

12) Draw5PlayAll: Discover B2 Draw5playall G2 Build
	Draw5PlayAll: I'm trying to pay close attention to why I seem to fall behind against basically every good opponent.

13) wil: T B1 R1 Wil
	wil: I wish I could every game I say I'll explore options.  
	wil: And every game I shoot from the hip.

14) Draw5PlayAll: Build Y1 Draw5playall

15) wil: B R1 Wil
	wil: Ya just need to play more games... (And lose more)
	wil: You are doing fine, your win%  about same as mine.

16) Draw5PlayAll: Build Y1 Draw5playall

17) wil: B R2 Wil
	wil: I should think about it, but nah, not my style!

18) Draw5PlayAll: Build B1 Build
	Draw5PlayAll: You froze me out of red! OK, I'll freeze you out of yellow.

19) wil: T R2 Y2 Wil
	wil:  that would be my preference
	wil: Nah, neither will happen, but if they did,

20) Draw5PlayAll: Trade B2 R2 Build
	Draw5PlayAll: Uhhh... not sure how I miscalculated that, but I have to do this or else your R2 arrives at build too soon.

21) wil: D Y2 Wil G3 G3
	wil: What r2?

22) Draw5PlayAll: Move Y1 Draw5playall Build
	Draw5PlayAll: The R2 that you would have moved to y3 and then invaded `build` with.
	wil: It was always meant to become a fuel ship

23) wil: B B2 Wil

24) Draw5PlayAll: Discover Y1 Draw5playall G2 Construct

25) wil: D B2 Wil Y3 Why3

26) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Construct
Build Y3 Draw5playall
Build R2 Build
	Draw5PlayAll: Greens: build, construct, create, ...
Blues: trade, convert, change, ...
Yellows: move, discover, transport, ...
Reds: attack, steal, ...

27) wil: T B2 G2 Why3
	wil: Green is entrepreneurs Gamma Blue is stock Traders
	wil: Green is entrepreneurs Gamma Blue is stock Traders
	wil: Yellow is utility sector, red is venture capitalists

28) Draw5PlayAll: Move R2 Build Y3

29) wil: D B1 Y3 R2 R2

30) Draw5PlayAll: Build R3 Build

31) wil: S G2 Why3
B Y3 G3
B B2 R2

32) Draw5PlayAll: Trade Y3 G3 Draw5playall

33) wil: D R1 Wil Y3 Why3

34) Draw5PlayAll: Sacrifice Y2 Construct
Move Y1 Construct G3
Move Y1 Build G3
Catastrophe G3 Yellow
	wil: Nice, missed completely

35) wil: T B1 Y1 R2
	wil: Been in 3 Hosp last 4 days, I'm blaming that! Lol

36) Draw5PlayAll: Trade R2 Y2 Build
	Draw5PlayAll: I am known to make a large number of very subtle mistakes that add up to an eventual loss of control and then the game.
	wil: Not making mistakes and capitalizing on others
	wil: This the name of the game!

37) wil: S G3 Wil
B R2 Why3
B R3 Why3
B R3 Wil
	wil: Make as many as you like!

38) Draw5PlayAll: Sacrifice Y2 Build
Move R2 Y3 R2
Move R2 R2 Why3
Catastrophe Why3 Red

39) wil: T R3 G3 Wil
	wil: As many of what?
	wil: Your snark is like a teen playing online video, why?
	Draw5PlayAll: ?!

40) Draw5PlayAll: Build Y1 Draw5playall

41) wil: B B1 Wil

42) Draw5PlayAll: Move Y1 Draw5playall Build

43) wil: D B2 Wil Y3 Y3
	wil: Noice!

44) Draw5PlayAll: Build Y2 Build

45) wil: B G1 Wil

46) Draw5PlayAll: Discover Y2 Build G3 Construct

47) wil: D G1 Wil Y3 Why3

48) Draw5PlayAll: Build B2 Build

49) wil: S G1 Why3
B B3 Y3

50) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Build
Build Y3 Construct
Build Y3 Draw5playall

51) wil: T B3 G3 Y3
	wil: Me thinks you got me
	Draw5PlayAll: It's not over yet unless you make it be over

52) Draw5PlayAll: Move B2 Build Construct

53) wil: B G1 Wil
	wil: You've outmaneuvered me well

54) Draw5PlayAll: Build B3 Construct
	Draw5PlayAll: I think you're just trying to get me to let my guard down.

55) wil: B B3 Y3

56) Draw5PlayAll: Move B3 Construct Wil

57) wil: M B2 Y3 Wil
C Wil B
	Draw5PlayAll: This is going to get ugly

58) Draw5PlayAll: Discover Y2 Build R3 Attack

59) wil: B R1 Wil
	Draw5PlayAll: ...or not
	wil: Take advantage just got home from open heart surgery
	wil: 
	wil: Did my addled brain miss something?

60) Draw5PlayAll: Sacrifice Y3 Construct
Move Y2 Attack Wil
Move Y2 Construct Wil
Move Y1 Draw5playall Wil
Catastrophe Wil Yellow

	Draw5PlayAll: Good game. I really believed you were trying to psyche me into thinking I had a nonexistent win.


35718)
Started: 2019.11.17, Ended: 2019.12.1
Participants: Babamots (S), Simon (N)
Winner: Babamots

1) Simon: Homeworld Y1 G3 B3
	Simon: Hi! This is for the Great Homeworlds Tournament 2019. Enjoy!
	Simon: Since you won 9 games in a row, I'll consider the opening carefully. Green starting queen is accepted theory. I've grown lots of experience recently with blue starting queens, but wonder whether it's too risky.
	Babamots: Well, you have a perfect record against me so far: 1-0 (I was a rung you stepped on in the ladder). I'm pretty worried about this match.
	Babamots: Will you fill out the form for the tournament?

I like to start with a g3 ship since it sets me up to get a factory later, but sometimes not enough green pieces get used and there's never a chance for a factory. A b3 start is usually fine too. I experimented with y3 openings for a while but didn't reach any firm conclusions.

2) Babamots: Homeworld B2 R1 G3
	Simon: Tourney form is filled, yep!
	Simon: 

3) Simon: Build B1 Simon
	Babamots: I'll stick with old reliable for now.

4) Babamots: Build G1 Babamots

5) Simon: Trade B1 R1 Simon

6) Babamots: Trade G1 R1 Babamots

7) Simon: Build R2 Simon

8) Babamots: Build R2 Babamots

9) Simon: Discover R2 Simon G2 G2

10) Babamots: Trade R1 Y1 Babamots

11) Simon: Build B1 Simon

12) Babamots: Build Y1 Babamots

13) Simon: Move B1 Simon G2

14) Babamots: Build Y2 Babamots

15) Simon: Build R1 G2

16) Babamots: Discover Y1 Babamots G3 Cardassia
	Babamots: Just realized that our home stars have no colors in common. I'm not sure I've ever seen that before.

17) Simon: Trade R2 Y2 G2

18) Babamots: Discover Y1 Babamots B3 Bolarus

19) Simon: Build R2 Simon

20) Babamots: Sacrifice G3 Babamots
Build Y2 Cardassia
Build Y3 Babamots
Build Y3 Bolarus

21) Simon: Build Y3 G2

22) Babamots: Sacrifice Y2 Cardassia
Move Y1 Cardassia G2
Move Y1 Bolarus G2
Catastrophe G2 Y
	Simon: Opposite homeworlds has only become common from the green star, it's really rare otherwise, yeah.

23) Simon: Build R2 G2

24) Babamots: Move Y3 Bolarus G2

25) Simon: Build R3 Simon
	Babamots: I'm afraid I don't understand your last message. Do you mean players usually pick the same two colors in their home stars unless one of them chooses green?

26) Babamots: Sacrifice R2 Babamots
Attack R1 G2
Attack R2 G2
	Simon: I mean that, for opposite homeworlds to happen, one home star must be green. But mutual g3 starting ships are so extremely common that green home stars are rare.

27) Simon: Sacrifice B1 G2
Trade R3 G3 Simon
	Simon: The exception is the blue freezeout by second player (h gX b1 b3) to counter first player's small blue star. I haven't seen that with green yet, but theoretically it must exist with green, too.
	Simon: Finally, someone must want no blue star. This is also rare; the b3 ship is inferior until it becomes g3/y3 later.

28) Babamots: Trade Y2 G2 Babamots

29) Simon: Discover R1 Simon B2 B2

30) Babamots: Discover R2 G2 G3 Risa

31) Simon: Move G3 Simon B2

32) Babamots: Build G1 Babamots

33) Simon: Build G1 B2

34) Babamots: Sacrifice G2 Babamots
Build Y1 G2
Build Y1 G2

35) Simon: Build R2 Simon

36) Babamots: Build G1 Babamots

37) Simon: Build R3 B2

38) Babamots: Discover G1 Babamots Y3 Iconia

39) Simon: Discover R2 Simon G2 G2a

40) Babamots: Build G2 Babamots

41) Simon: Sacrifice G3 B2
Build G3 B2
Build R3 G2a
Build R3 Simon

42) Babamots: Build Y2 Babamots

43) Simon: Sacrifice B3 Simon
Trade R2 B2 Simon
Trade R2 Y2 G2a
Trade R1 B1 B2

44) Babamots: Build Y2 Babamots

45) Simon: Move Y2 G2a Iconia
	Simon: Very hard to calculate. The greedier move would have been to build b1, then sac b1 to trade r2 y2 @g2a, but that seems too slow.

46) Babamots: Sacrifice Y2 Babamots
Move Y3 G2 Simon
Discover G1 Iconia Y2 Gravesworld
	Babamots: I've been thinking about the position almost constantly since yesterday. Sacrificing your b3 for yellow didn't cross my mind until a few minutes before you moved. I think it was the right thing to do. If anything is going to ruin my yellow-hogging, that's it.

47) Simon: Attack Y3 Simon

48) Babamots: Sacrifice Y2 Babamots
Move Y1 G2 Simon
Move Y1 G2 Simon
Catastrophe Simon Y

49) Simon: Move Y2 Iconia Gravesworld

50) Babamots: Move G1 Gravesworld Simon

	Simon: gg!
	Babamots: Valiantly fought sir!


35668)
Started: 2019.11.17, Ended: 2019.11.22
Participants: speardane (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	speardane: For the Great Homeworlds Tournament of 2019!
	Babamots: Yep, I'll fill out the start form.

2) speardane: Homeworld Y1 G3 B3

3) Babamots: Build G1 Babamots

4) speardane: Build B1 Speardane

5) Babamots: Trade G1 Y1 Babamots

6) speardane: Trade B3 R3 Speardane

7) Babamots: Build Y1 Babamots

8) speardane: Build B1 Speardane

9) Babamots: Build Y2 Babamots

10) speardane: Discover B1 Speardane G2 Delos

11) Babamots: Discover Y1 Babamots B3 Bolarus

12) speardane: Build B1 Delos

13) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build Y2 Bolarus
Build Y3 Babamots

14) speardane: Trade B1 R1 Delos
	Babamots: I think our bot friend is in trouble.

15) Babamots: Trade Y3 G3 Babamots

16) speardane: Trade R3 Y3 Speardane

17) Babamots: Build Y3 Babamots

18) speardane: Build Y3 Speardane

19) Babamots: Sacrifice Y2 Bolarus
Move Y1 Bolarus Delos
Move Y1 Delos Speardane
Catastrophe Speardane Y

20) speardane: Build B1 Delos

21) Babamots: Trade Y3 R3 Babamots

22) speardane: Trade B1 Y1 Delos

23) Babamots: Move G3 Babamots Speardane

24) speardane: Pass

25) Babamots: Sacrifice R3 Babamots
Attack B1 Speardane
Pass
Pass
	speardane: Good game!
	Babamots: GG! I'll report the game for the tournament.



35725)
Started: 2019.11.18, Ended: 2019.12.4
Participants: Babamots (S), Cuc (N)
Winner: Babamots

1) Cuc: Homeworld B2 G1 Y3
	Babamots: I can give strategy tips as we go if you like.

2) Babamots: Homeworld B3 G1 G3 *
	Cuc: I'd love to "listen in" on your considerations. I play Hex with a friend of mine and then he elaborates on his strategy. There is no guarantee I'll win by listening in, but I will learn about the considerations he makes. To get closer to the level of equal analysis skill is quite exciting.
On Thursday I learned something from self-play. Even if you can't move 3 ships at once to your opponent's HW, you can start with 1. Then, the only thing your opponent can do to avert overpopulation is conquer. But then in your follow up move, you move in 2 other ships of the same color with overpopulation as a result. From this I got the question if causing a catastrophe in your OWN HW could be less devastating as it sounds? (In certain circumstances.) Have you ever won a game in which you caused a catastrophe in your own Homeworld?
This game has the potential to become more interesting than I already thought it was.
	Cuc: (By the way, my friend is a chess master, and he is also VERY good at Hex, so he always takes a handicap. He analyses his own moves, not mine . . . )
	Babamots: I'm pretty sure I have won a game where I caused a catastrophe in my own home (including destroying my own star), but I don't remember when. I should make a web-crawler to download all of my game histories for easier analysis.

3) Cuc: Build Y1 Cuc
	Babamots: I was just looking at an old game and saw a question I didn't respond to. Analogkid's graph image library is here:

http://anthonykozar.net/Zendo/GraphZendokoans-20190129.zip

If you play a game with him, he'll send a link to an updated version (if he has made any changes).

Here is my graph image library:

https://drive.google.com/open?id=1QsyfmIlJ1sW2OoE6jbz4Jjjaja3lFpXd

Compared to Analogkid's, mine is smaller and only for simple graphs, but the styles are consistent and it has subdirectories to keep it a little more organized.

4) Babamots: Build G1 Babamots

5) Cuc: B Y1 Cuc
	Cuc: Thx for the info on graph zendo. I'll keep analogkid in mind.
	Cuc: You are excluding me from swapping for green, temporarily.
	Cuc: My keyboard was NOT cooperating. I was typing that you are excluding me from swapping for green, temporarily.
	Cuc: Hi, I'm recognizing a pattern

6) Babamots: Trade G3 Y3 Babamots
	Cuc: Hi -> Hm
	Cuc: I'm thinking that I could've t y3 b3 and then s g3 b y1 cuc b y1 cuc by2 cuc, to exclude you from yellow?

7) Cuc: T Y3 B3 Cuc
	Babamots: You can usually dodge these early freeze-outs by trading your large ship.

8) Babamots: Build G2 Babamots

9) Cuc: Build B1 Cuc
	Cuc: My keyboard does not seem to cooperate. Twice I wanted a G3, and twice I got a B3. Oh well.
	Cuc: But yes, I see how that works with swapping the Large.

10) Babamots: Discover G1 Babamots G2 Orion

11) Cuc: D Y1 Cuc B3 B3a

12) Babamots: Build G2 Orion

13) Cuc: D Y1 Cuc G3 G3a

14) Babamots: Build G3 Babamots
	Cuc: I realized that a g3 in my HW would be a liability. So rather than get stuck I moved forward and took the last b3. It doesn't hinder you too much, though. Your moves have the tendency to reduce my options considerably.

15) Cuc: S Y1 B3a
D B1 Cuc G3 G3b

16) Babamots: Trade G3 R3 Babamots
	Babamots: Limiting your good options is of course my intention.

Increasingly, I have been understanding the early game as a competition to determine which color gets its small pieces exhausted first and who is best able to build that color. I was able to make green run out of smalls first and make it difficult for you to get green ships, so I'm building mediums ahead of you. I can trade those mediums later to jump into the red or blue economy, even if you use up all of those smalls.

17) Cuc: T B1 R1 G3b

18) Babamots: Build G3 Babamots

19) Cuc: B R1 G3b

20) Babamots: Trade G3 B3 Babamots
	Babamots: So I've got the Red Hulk setup, as it happens. You need to trade for a red right away, but it doesn't need to be b3 for r3. You would be safe enough for now by trading for an r1 in g3b. That's what I was trying to communicate about your "Red Hulk" comments earlier. Perfect example here in our game :-).
	Cuc: I wondered how I can prevent you from growing more Green or any other color, so I turned the last G3 int a star.
	Cuc: Yes, I see the threat. I'm still wondering if a r1 isn't too little of a defense. After all, I can only sacrifice it once. Ah! But when I conquer your R3 in my HW (if ever), I'll have a large red . . . 
	Cuc: I'll follow your advice, but I wish I could build some yellow first. No time, I guess . . .

21) Cuc: T B3 G3 Cuc
	Cuc: Since you traded in your g3, you're probably going to build it back somewhere?

22) Babamots: Build Y1 Babamots
	Cuc: Now you have a factory. You can sacrifice g3, build it back and have 2 more build actions. You are able to create an army of yellow, red (and keep green). Then you can trade in a large red, say for a large yellow and start a doomsday machine. You excluded me somehow from medium and large ships and I can't seem to do anything about it. 
I could build yellow or red in one of my b3a/b systems one small at a time, but I can't create enough material to stop your growing army.

23) Cuc: B Y1 G3a
	Babamots: Yes, I'm afraid you're pretty doomed. Looking back, my suggestion to trade for a g3 came one turn too late. You needed to do it on your 3rd turn (just before I mentioned it).

On your 3rd turn, you could have built another green ship, and on your 4th turn, that ship could have been moved to a new system (to get rid of the dangerous 3-matching-greens in your home).

As it went, on your fourth turn, your could have traded for a large green, but it wouldn't have been safe to use it to build any additional greens in your home. That's because your g3, system marker, and other green ship would all be green, and I could sacrifice my y3 to move my g1 to your home, destroying it all and putting you way behind.

However, starting on your 4th move, you could have gotten into the green economy safely (but slowly) like this:

trade y3 g3 Cuc
discover g3 Cuc y3 Y3A
build g2 Y3A
move g3 Y3A Cuc

The first person I remember seeing use this technique was wil. He traded his large for a color he needed access to, moved it tout of his home system to avoid building up to a 3-match, and built the coveted color there.

You have Draw5PlayAll to thank for teaching me the instafreeze I've been using. D5 likes it so much that he has been known to pass the first turn. Notice that it only works for the second player, and the first player needs to use a small green or blue star in their home (theoretically, you could do it with yellow too, but I've never seen it tried). A small red is the safest small star if you're going first.

24) Babamots: Build Y2 Babamots
	Cuc: I actually considered that maneuver you suggested. The reason I didn't was that I seemed it too slow. But in hindsight, I see it's necessary.
	Cuc: I actually considered that maneuver you suggested. The reason I didn't was that I seemed it too slow. But in hindsight, I see it's necessary.

25) Cuc: M Y1 G3a Cuc

26) Babamots: Move Y1 Babamots Orion

27) Cuc: B Y2 Cuc
	Cuc: Also I noticed, like you said, it works as a second player. Included is the choice of HW to take out a crucial small as a star. So I've been considering that a defense might be to build a HW having 2 pieces of the same color (can't have 3 pieces of same color unless blue, but that defeats the purpose).
	Cuc: Great analysis! I'm a bit ambitious right now. After more than a decade, I think there is more knowledge than just guidelines. So, here is proof. A whole tactical opening strategy to get ahead. Also, we're seeing a diversity of endgame tactics. Most impressive I find how I was excluded from the next size up. It's a tempo disadvantage. But if I don't take the last one of that size, I'm also getting behind by just moving pieces around that are fine where they are.

28) Babamots: Move G2 Orion G3b
	Babamots: Making a home system with two stars of the same color is definitely bad. Your opponent would only have to move two ships of that color into your home in order to destroy you with one catastrophe.

29) Cuc: T G3 R3 Cuc

30) Babamots: Sacrifice R3 Babamots
Attack R1 G3b
Attack R1 G3b
Pass

31) Cuc: T Y1 B1 Cuc

32) Babamots: Build G3 Babamots

33) Cuc: B Y1 G3a
	Babamots: This move is meant as a double threat. I can attack both of your r1 ships (leaving you with no red ships) or I can move two greens into your home to destroy your only large ship and a home star.

34) Babamots: Sacrifice G3 Babamots
Build B1 Babamots
Build R1 G3b
Build G3 G3b

35) Cuc: Build Y2 Cuc
	Draw5PlayAll: I noticed you mentioned my liking of the insta-freeze setup. I tried to do it once with yellow, but the lack of any blue in my setup proved my undoing. (I needed to get at least some red, but that requires going to a blue system, so I can't build yellow there, which slows me down.)

Then again, instafreezing blue or green requires an extra move to trade for yellow...

36) Babamots: Sacrifice Y2 Babamots
Move R1 G3b Cuc
Move R1 G3b Cuc

37) Cuc: Trade Y2 R2 Cuc

38) Babamots: Sacrifice Y1 Orion
Move G3 G3b Cuc
Catastrophe Cuc R

39) Cuc: Trade B1 R1 Cuc

40) Babamots: Sacrifice R1 G3b
Attack R1 Cuc

41) Cuc: Build Y1 Cuc

42) Babamots: Trade B3 R3 Babamots

43) Cuc: Build Y2 Cuc
	Babamots: Looks like you might have forgotten about catastrophes. Either of us can trigger them at any time on our turn.

44) Babamots: Sacrifice R3 Babamots
Attack Y2 Cuc
Attack Y2 Cuc
Attack Y1 Cuc
	Cuc: Let's see what happens next.

	Babamots: GG! I will of course release the captive crews of those ships. ;-)
	Cuc: thx!
	Cuc: I'm going for another game!


35531)
Started: 2019.11.19, Ended: 2019.12.4
Participants: Trydnt (S), ts52 (N)
Winner: Trydnt

1) ts52: Homeworld B1 Y2 G3
	ts52: This game is for the Great Homeworlds Tournament 2019

2) Trydnt: Homeworld R3 B2 G3
	ts52: Have a good game!
	Trydnt: you too :)

3) ts52: Build G1 Ts52

4) Trydnt: Build G1 Trydnt

5) ts52: Trade G1 B1 Ts52

6) Trydnt: Trade G1 B1 Trydnt

7) ts52: Build B2 Ts52

8) Trydnt: Build B2 Trydnt

9) ts52: Discover B2 Ts52 G3 Kermit

10) Trydnt: Trade B2 Y2 Trydnt

11) ts52: Build G1 Ts52

12) Trydnt: Build Y1 Trydnt

13) ts52: Trade G1 Y1 Ts52

14) Trydnt: Discover Y1 Trydnt G1 G1

15) ts52: Build G1 Ts52

16) Trydnt: Build Y1 Trydnt

17) ts52: Move Y1 Ts52 Kermit

18) Trydnt: Discover Y1 Trydnt G1 Gee1

19) ts52: Build G2 Ts52

20) Trydnt: Build G2 Trydnt

21) ts52: Discover G2 Ts52 B3 Gonzo

22) Trydnt: Build G2 Trydnt

23) ts52: Sacrifice G3 Ts52
Build B2 Kermit
Build B3 Kermit
Build B3 Ts52

24) Trydnt: Sacrifice G2 Trydnt
Build Y2 Gee1
Build Y3 G1

25) ts52: Trade B3 Y3 Ts52

26) Trydnt: Sacrifice Y2 Gee1
Move B1 Trydnt G1
Move B1 G1 Kermit
Catastrophe Kermit B

27) ts52: Build B1 Ts52

28) Trydnt: Discover Y1 G1 G3 G3

29) ts52: Trade Y3 R3 Ts52

30) Trydnt: Trade G2 R2 Trydnt

31) ts52: Move B1 Ts52 Kermit

32) Trydnt: Discover Y1 Gee1 B3 B3

33) ts52: Build B2 Kermit

34) Trydnt: Move Y3 G1 Kermit

35) ts52: Discover B2 Kermit G1 Robin

36) Trydnt: Sacrifice R2 Trydnt
Attack Y1 Kermit
Attack B1 Kermit

37) ts52: Discover B1 Ts52 Y3 Bigbird

38) Trydnt: Trade Y3 B3 Kermit

39) ts52: Sacrifice G2 Gonzo
Build B2 Bigbird
Build B3 Robin

40) Trydnt: Sacrifice G3 Trydnt
Build Y2 B3
Build Y3 Trydnt
Build Y3 B3

41) ts52: Build G1 Ts52

42) Trydnt: Trade B1 R1 Kermit

43) ts52: Build R1 Ts52

44) Trydnt: Build B1 Kermit

45) ts52: Build G2 Ts52

46) Trydnt: Build R1 Kermit

47) ts52: Move R1 Ts52 Bigbird

48) Trydnt: Discover Y3 B3 G2 G2

49) ts52: Move G2 Ts52 Bigbird

50) Trydnt: Move Y3 G2 Bigbird

51) ts52: Move R1 Bigbird Robin

52) Trydnt: Sacrifice R1 Kermit
Attack B2 Bigbird

53) ts52: Move G2 Bigbird Ts52

54) Trydnt: Sacrifice Y3 Bigbird
Move B2 Bigbird Ts52
Move B3 Kermit Ts52
Move B1 Kermit Ts52
Catastrophe Ts52 B

55) ts52: Trade B3 Y3 Robin

56) Trydnt: Sacrifice Y3 Trydnt
Move Y1 G3 Ts52
Move Y1 Kermit Ts52
Move Y1 B3 Ts52
Catastrophe Ts52 Y

	ts52: Good game. Well played!
	Trydnt: well played indeed. you really made me work for that


35527)
Started: 2019.11.19, Ended: 2020.1.17
Participants: Felix (S), Laurie_Menke (N)
Winner: Felix

1) Laurie_Menke: Homeworld Y2 B1 G3
	Laurie_Menke: Hi Felix! Sorry it took me so long to accept your challenge. Just as I accepted two tournament challenges, I also got a ladder challenge and a regular challenge from a new player. I couldn't turn either of those down, but couldn't handle more than 4 games of Homeworlds at a time, so I waited. Now that the dust has settled a bit, I'm ready to take you and Babamots on as well as NYCAvri's game in progress (and the new player game is still going!). Anyway, long story to say LET'S DO THIS!  Have fun!  :)

P.S. Just for the record, this game is for the Great Homeworlds Tournament of 2019, and I will fill out the required paperwork.  :)

2) Felix: Homeworld B1 G3 B3 *
	Felix: Haha, no problem! I understand that. I accept the terms of the tournament, and will begin drawing up the terms of surrender shortly ;)

Have fun!

3) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: You mean you're going to surrender so soon?  ;)

4) Felix: Build B1 Felix
	Laurie_Menke: Ooooo, I really don't like you're opening!

5) Laurie_Menke: Build G1 Laurie_menke
	Felix: I like to be prepared for anything! And this opening is very tough actually, both to play out and to defend against. I've never been very good at using it, so don't get too worried!

6) Felix: Trade B3 Y3 Felix
	Laurie_Menke: Oh, I'm worried for more reasons than your opening! 

7) Laurie_Menke: Trade G1 R1 Laurie_menke

8) Felix: Build B2 Felix

9) Laurie_Menke: Trade G1 Y1 Laurie_menke

10) Felix: Discover B2 Felix G2 Out

11) Laurie_Menke: Build G1 Laurie_menke

12) Felix: Build B2 Out

13) Laurie_Menke: Discover G1 Laurie_menke B3 Blue

14) Felix: Trade B2 Y2 Out

15) Laurie_Menke: Build G1 Laurie_menke

16) Felix: B B2 Out

17) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G1 Laurie_menke
Build G2 Blue
Build G2 Blue

18) Felix: B B2 Felix

19) Laurie_Menke: Build G3 Laurie_menke

20) Felix: Build B3 Out
	Felix: Sorry for the delay! My wife and I had a baby, so I was a little distracted!
	Laurie_Menke: Wow! Congratulations! That's very exciting! Boy or girl?  (Also, sorry for my delay as well... the holidays took more of my time than expected.)

21) Laurie_Menke: Sacrifice Y1 Laurie_menke
Move G2 Blue Out

22) Felix: Trade B3 R3 Out
	Felix: Boy! Thanks very much! And happy Holidays :)
	Laurie_Menke: :)

23) Laurie_Menke: Sacrifice G2 Out
Build R1 Laurie_menke
Build G2 Blue

24) Felix: Move R3 Out Blue

25) Laurie_Menke: Build G3 Blue
Catastrophe Blue Green

26) Felix: Build B3 Out

27) Laurie_Menke: Discover G1 Laurie_menke Y3 Yellow
	Laurie_Menke: Things are not looking good...

28) Felix: Trade B3 Y3 Out
	Felix: Perhaps not the best!

29) Laurie_Menke: Build G1 Yellow

30) Felix: Build B3 Out

31) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Laurie_menke
Build G2 Yellow
Build G3 Laurie_menke

32) Felix: Discover B3 Out G3 Green

33) Laurie_Menke: Trade G2 Y2 Laurie_menke

34) Felix: Build B3 Green

35) Laurie_Menke: Move G1 Yellow Out

36) Felix: Sacrifice Y2 Out
Move B3 Green Laurie_menke
Move B3 Green Laurie_menke

37) Laurie_Menke: Sacrifice G3 Laurie_menke
Build R1 Laurie_menke
Build G2 Laurie_menke
Build G3 Laurie_menke

38) Felix: Sacrifice R3 Blue
Attack G3 Laurie_menke
Attack Y2 Laurie_menke
Attack G2 Laurie_menke
	Laurie_Menke: Ooo... nicely played... now let's see if I can get out of this...

39) Laurie_Menke: Build G3 Laurie_menke

40) Felix: Trade B3 R3 Laurie_menke
Catastrophe Laurie_menke Red
Catastrophe Laurie_menke Green
	Felix: Thank you! Best of luck :)

	Felix: Wow, what an explosion to end with. Two catastrophes in one turn! I've never seen that before. Great game!
	Laurie_Menke: LOL! Me, either! Thanks for the fun, Felix, and congrats on the win!


35719)
Started: 2019.11.19, Ended: 2019.12.3
Participants: Laurie_Menke (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: Hi Laurie! This is for the tournament, right? I'll fill out the form.

Good luck!

2) Laurie_Menke: Homeworld Y2 B1 G3
	Laurie_Menke: Yes, and thank you, and good luck to you, too! Have fun!

3) Babamots: Build G1 Babamots

4) Laurie_Menke: Build G1 Laurie_menke

5) Babamots: Trade G1 Y1 Babamots

6) Laurie_Menke: Trade G1 R1 Laurie_menke

7) Babamots: Build Y1 Babamots

8) Laurie_Menke: Build G1 Laurie_menke

9) Babamots: Build Y1 Babamots

10) Laurie_Menke: Build R1 Laurie_menke

11) Babamots: Discover Y1 Babamots G2 Risa

12) Laurie_Menke: Build R2 Laurie_menke

13) Babamots: Sacrifice G3 Babamots
Build Y2 Risa
Build Y2 Risa
Build Y3 Babamots

14) Laurie_Menke: Discover R2 Laurie_menke Y3 Yellow

15) Babamots: Discover Y2 Risa B3 Bolarus

16) Laurie_Menke: Move R2 Yellow Risa

17) Babamots: Sacrifice Y1 Risa
Discover Y2 Risa G3 Orion

18) Laurie_Menke: Trade R1 B1 Laurie_menke

19) Babamots: Trade Y1 R1 Babamots

20) Laurie_Menke: Trade G1 Y1 Laurie_menke

21) Babamots: Trade Y3 G3 Babamots

22) Laurie_Menke: Build R2 Risa

23) Babamots: Sacrifice G3 Babamots
Build Y1 Babamots
Build Y3 Bolarus
Build Y3 Babamots

24) Laurie_Menke: Sacrifice Y1 Laurie_menke
Discover R2 Risa Y3 Yellow

25) Babamots: Build Y1 Orion

26) Laurie_Menke: Sacrifice G3 Laurie_menke
Build R2 Yellow
Build R3 Laurie_menke
Build R3 Risa
	Babamots: When in doubt, ruthlessly hog the yellow. :-)
	Laurie_Menke: :)  Yep... I see this about you. For others it's the blue, but being frozen out of something seems to be my life.  :)

27) Babamots: Trade Y3 R3 Bolarus
	Laurie_Menke: But two can play the freeze out game!

28) Laurie_Menke: Sacrifice B1 Laurie_menke
Trade R3 Y3 Risa

29) Babamots: Sacrifice Y1 Babamots
Discover R1 Babamots G2 Bajor
	Babamots: Hopefully this will be enough red to get by.

30) Laurie_Menke: Move Y3 Risa Orion
	Laurie_Menke: Ditto.  :)

31) Babamots: Sacrifice Y3 Babamots
Move R1 Bajor Bolarus
Move R1 Bolarus Laurie_menke
Move R3 Bolarus Laurie_menke
Catastrophe Laurie_menke R
	Babamots: I hadn't anticipated the blue sacrifice. That put me in a bit of a tight spot.
	Laurie_Menke: Sorry to be leaving Risa (I've heard it's quite a place for R&R!), but I've got some work to do over in Orion.  :)

	Babamots: When I looked at this position a bit, I noticed a danger for you that was a side-effect of my last move. Would you like to undo and pick a different move? Otherwise I'm afraid I'll be executing the infamous Bluebird maneuver.
	Laurie_Menke: Ack! You're right! You Bluebirded me! Well done... no, you won fair and square. Congratulations, Babamots! Thanks for the fun!  :)
	Laurie_Menke: Then again... you might not have me yet... let's just see where this takes us... I was thinking I was going to bluebird you in 2 moves. My problem is, I don't know whether I would have seen it coming and done the thing I'm about to do. So let's say you won but play it out with me trying this escape, OK?
	Laurie_Menke: Oh! It was your turn! Then all of that is moot... you definitely had me.  :)  Congrats!  :)
	Babamots: I've been Bluebirded myself, but I don't think I've ever been the Bluebirder. I'll cross that off my bucket list :-D.

Thanks for the game!
	Babamots: Sorry for the confusion; it was my turn, so you needed to undo to save yourself. I'm afraid I pulled the trigger as soon as I read your concession.
	Laurie_Menke: Makes sense, and congratulations! I actually got my "I Beat Andy" medal by Bluebirding him, but I don't count it because he was distracted because it was during an Andy vs. Everybody. I've never beat him since, so I haven't allowed myself to enjoy the medal until I beat him when he's concentrating. That said, I think I have him on the run in our current game, so maybe that'll be soon! Bucket list items for all!  :)  
	Babamots: Beating Andy is high on my bucket list. If I can get to the DC area this summer, maybe I can catch him for a showdown at high noon.
	Laurie_Menke: He would love that!  :)


35733)
Started: 2019.11.20, Ended: 2019.12.3
Participants: eliscinsky (S), Simon (N)
Winner: Simon

1) Simon: Homeworld G3 R1 B3

2) eliscinsky: Homeworld R1 B2 G3
	Simon: Hi! This is for the Great Homeworlds Tournament 2019. Have fun!

3) Simon: Build B1 Simon
	eliscinsky: Agreed. You too!

4) eliscinsky: Build G1 Eliscinsky

5) Simon: Trade B1 R1 Simon

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Simon: Build R2 Simon

8) eliscinsky: Build Y1 Eliscinsky

9) Simon: Trade R2 Y2 Simon

10) eliscinsky: Discover Y1 Eliscinsky G3 Orion

11) Simon: Build R2 Simon

12) eliscinsky: Build Y1 Orion

13) Simon: Build Y2 Simon

14) eliscinsky: Build Y2 Eliscinsky

15) Simon: Discover Y2 Simon G2 G2

16) eliscinsky: Trade Y2 R2 Eliscinsky

17) Simon: Move R2 Simon G2

18) eliscinsky: Move R2 Eliscinsky Orion

19) Simon: Build Y2 Simon

20) eliscinsky: Build Y3 Eliscinsky

21) Simon: Build Y3 G2

22) eliscinsky: Trade Y3 R3 Eliscinsky

23) Simon: Discover Y3 G2 B3 B3

24) eliscinsky: Build Y3 Eliscinsky

25) Simon: Build Y3 G2

26) eliscinsky: Sacrifice Y3 Eliscinsky
Move Y1 Orion G2
Move Y1 G2 Simon
Move Y1 Orion G2

27) Simon: Move Y3 G2 Orion

28) eliscinsky: Move Y1 G2 Simon
Catastrophe Simon Yellow

29) Simon: Sacrifice R1 Simon
Attack R2 Orion

30) eliscinsky: Move R3 Eliscinsky B3

31) Simon: Sacrifice R2 G2
Attack R3 B3
Pass

32) eliscinsky: Build G1 Eliscinsky

33) Simon: Sacrifice Y2 G2
Move Y3 B3 Eliscinsky
Move R3 B3 Eliscinsky

34) eliscinsky: Attack R3 Eliscinsky

35) Simon: Sacrifice R2 Orion
Attack R3 Eliscinsky
Attack G3 Eliscinsky

36) eliscinsky: Discover G1 Eliscinsky R3 Redgiant

37) Simon: Attack Y1 Eliscinsky

	Simon: gg! Yes, this is a common thread when one player has larger reds than the other. It can even happen by sending 3 3-pips, letting opponent take 2, then retaking 3.


35729)
Started: 2019.11.20, Ended: 2019.12.12
Participants: goulo (S), eliscinsky (N)
Winner: goulo

1) eliscinsky: Homeworld R1 B2 G3

2) goulo: Homeworld R3 B1 G3
	eliscinsky: This is for the Great Homeworlds Tournament 2019. Good Luck & Have fun! 

3) eliscinsky: Build G1 Eliscinsky
	goulo: thanks, you too!

4) goulo: Build G1 Goulo

5) eliscinsky: Trade G1 R1 Eliscinsky

6) goulo: Trade G1 R1 Goulo

7) eliscinsky: Build R2 Eliscinsky

8) goulo: Build R2 Goulo

9) eliscinsky: Build G1 Eliscinsky

10) goulo: Build G1 Goulo

11) eliscinsky: Trade R2 Y2 Eliscinsky

12) goulo: Trade R1 Y1 Goulo

13) eliscinsky: Trade G1 B1 Eliscinsky

14) goulo: Trade G1 B1 Goulo

15) eliscinsky: Build G1 Eliscinsky

16) goulo: Build B2 Goulo

17) eliscinsky: Build B2 Eliscinsky

18) goulo: Discover B1 Goulo G2 Verdo

19) eliscinsky: Discover B2 Eliscinsky G3 Orion

20) goulo: Build B3 Verdo

21) eliscinsky: Build B3 Orion

22) goulo: Trade B1 Y1 Verdo

23) eliscinsky: Trade B3 Y3 Orion

24) goulo: Build G1 Goulo

25) eliscinsky: Trade B2 R2 Orion

26) goulo: Discover G1 Goulo Y2 Flavo

27) eliscinsky: Move G1 Eliscinsky Orion

28) goulo: Move R2 Goulo Verdo

29) eliscinsky: Move B1 Eliscinsky Orion

30) goulo: Build Y1 Goulo

31) eliscinsky: Move R2 Orion Flavo

32) goulo: Discover G1 Flavo Y3 Flavego

33) eliscinsky: Sacrifice Y2 Eliscinsky
Move G1 Orion Flavo
Move B1 Orion Flavo

34) goulo: Discover B2 Goulo Y2 Duaflavo

35) eliscinsky: Build G1 Flavo

36) goulo: Sacrifice G3 Goulo
Build Y2 Verdo
Build Y3 Goulo
Build G2 Flavego

37) eliscinsky: Build R1 Flavo

38) goulo: Build R2 Verdo

39) eliscinsky: Sacrifice Y3 Orion
Move R1 Flavo Goulo
Move R2 Flavo Goulo
Move B1 Flavo Goulo

40) goulo: Attack B1 Goulo

41) eliscinsky: Sacrifice G1 Flavo
Build R3 Goulo
Catastrophe Goulo Red

42) goulo: Build Y3 Verdo

43) eliscinsky: Build G1 Flavo

44) goulo: Move B3 Verdo Flavego

45) eliscinsky: Move G1 Flavo Flavego

46) goulo: Sacrifice Y3 Goulo
Move Y3 Verdo Flavego
Move Y3 Flavego Eliscinsky
Move B3 Flavego Eliscinsky

47) eliscinsky: Attack Y3 Eliscinsky

48) goulo: Sacrifice R2 Verdo
Attack G3 Eliscinsky
Attack Y3 Eliscinsky

49) eliscinsky: Move G1 Flavo Flavego
Catastrophe Flavego Green
	eliscinsky: Well done, I see my end coming in 2 moves

50) goulo: Attack R1 Eliscinsky
	goulo: thanks, I was worried when you catastrophied my red home star, but then realized I could deprive you of yellow, which gave me time to figure out and build up a successful attack...
	eliscinsky: Going out with a bang!

	eliscinsky: Well played, I enjoyed our match!
	goulo: thanks, good game!


35735)
Started: 2019.11.20, Ended: 2019.12.14
Participants: bhorner (S), eliscinsky (N)
Winner: bhorner

1) eliscinsky: Homeworld R1 B2 G3

2) bhorner: Homeworld R3 B1 G3
	eliscinsky: This is for the Great Homeworlds Tournament 2019. Good Luck & Have fun! 
	bhorner: Agreed.  Good luck & have fun to you as well!

3) eliscinsky: Build G1 Eliscinsky

4) bhorner: Build G1 Bhorner

5) eliscinsky: Trade G1 R1 Eliscinsky

6) bhorner: Trade G1 R1 Bhorner

7) eliscinsky: Build R2 Eliscinsky

8) bhorner: Build R2 Bhorner

9) eliscinsky: Build G1 Eliscinsky

10) bhorner: Trade R2 Y2 Bhorner

11) eliscinsky: Trade R2 Y2 Eliscinsky

12) bhorner: Build R2 Bhorner

13) eliscinsky: Build G1 Eliscinsky

14) bhorner: Discover R1 Bhorner G2 Puddle

15) eliscinsky: Sacrifice Y2 Eliscinsky
Discover G1 Eliscinsky R3 Mercury
Discover G1 Eliscinsky R3 Venus

16) bhorner: Build R2 Bhorner

17) eliscinsky: Build G1 Eliscinsky

18) bhorner: Discover R2 Bhorner Y2 Flame

19) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Mercury
Build G2 Venus
Build G3 Eliscinsky

20) bhorner: Build G3 Bhorner

21) eliscinsky: Trade R1 B1 Eliscinsky

22) bhorner: Sacrifice G3 Bhorner
Build G3 Bhorner
Build R1 Flame
Build R2 Puddle

23) eliscinsky: Trade G1 Y1 Eliscinsky

24) bhorner: Move G3 Bhorner Flame

25) eliscinsky: Build G1 Eliscinsky

26) bhorner: Trade R2 B2 Bhorner

27) eliscinsky: Sacrifice B1 Eliscinsky
Trade G2 R2 Mercury

28) bhorner: Build G2 Flame

29) eliscinsky: Sacrifice G3 Eliscinsky
Build Y1 Eliscinsky
Build Y1 Eliscinsky
Build G3 Eliscinsky

30) bhorner: Move G3 Flame Mercury

31) eliscinsky: Trade Y1 B1 Eliscinsky

32) bhorner: Attack R2 Mercury

33) eliscinsky: Build B1 Eliscinsky

34) bhorner: Move B2 Bhorner Flame

35) eliscinsky: Move B1 Eliscinsky Venus

36) bhorner: Attack G1 Mercury

37) eliscinsky: Move Y1 Eliscinsky Venus

38) bhorner: Sacrifice Y2 Bhorner
Move G1 Mercury Eliscinsky
Move G3 Mercury Eliscinsky
Catastrophe Eliscinsky G

39) eliscinsky: Sacrifice G2 Venus
Build B2 Venus
Build B3 Eliscinsky

40) bhorner: Build B3 Flame

41) eliscinsky: Trade B3 G3 Eliscinsky
	eliscinsky: So that's how you want to play it .... :) LOL
Nice move!

42) bhorner: Discover G2 Flame B3 Ocean
	bhorner: Thanks.  :)  I had a little advantage, so trading down was good for me. :)

43) eliscinsky: Build B3 Eliscinsky

44) bhorner: Discover B2 Flame Y3 Sun

45) eliscinsky: Trade B3 Y3 Eliscinsky

46) bhorner: Sacrifice G2 Ocean
Build B3 Flame
Build B3 Sun

47) eliscinsky: Build G1 Venus

48) bhorner: Move B3 Flame Venus

49) eliscinsky: Move B1 Eliscinsky Venus
Catastrophe Venus Blue

50) bhorner: Move B3 Flame Venus

51) eliscinsky: Sacrifice Y3 Eliscinsky
Discover Y1 Venus Y2 Sol
Move G1 Venus Sol
Move G1 Venus Sol

52) bhorner: Trade B3 Y3 Venus

53) eliscinsky: Discover Y1 Sol Y1 Nightlight

54) bhorner: Discover R2 Flame Y3 Star

55) eliscinsky: Build Y2 Eliscinsky

56) bhorner: Move R1 Flame Nightlight

57) eliscinsky: Build G1 Sol

58) bhorner: Trade B2 Y2 Sun

59) eliscinsky: Sacrifice Y1 Nightlight
Move G1 Sol Bhorner

60) bhorner: Trade G3 B3 Bhorner

61) eliscinsky: Trade G1 B1 Bhorner

62) bhorner: Attack B1 Bhorner

63) eliscinsky: Build G1 Eliscinsky

64) bhorner: Sacrifice Y2 Sun
Move Y3 Venus Eliscinsky
Move B3 Sun Eliscinsky
	bhorner: More tricky than I expected.  :)

65) eliscinsky: Sacrifice Y2 Eliscinsky
Move G1 Sol Bhorner
Move G1 Sol Bhorner

66) bhorner: Sacrifice R2 Puddle
Attack G1 Bhorner
Attack G1 Bhorner

67) eliscinsky: Sacrifice G3 Eliscinsky
Build Y1 Eliscinsky
Build Y2 Eliscinsky
Build G2 Eliscinsky
Catastrophe Eliscinsky Yellow

68) bhorner: Sacrifice R2 Mercury
Attack G2 Eliscinsky
Attack G1 Eliscinsky

	eliscinsky: Thanks for a great game.  I truly enjoyed it.
	bhorner: Same here.  I think there were at least 3 positions in the last 5 moves or so where I had exactly one response, anything else and I would have lost.  :). GG!


35726)
Variants: "Hard time"
Started: 2019.11.20, Ended: 2020.1.8
Participants: bhorner (S), Jerome (N)
Winner: bhorner

1) Jerome: Homeworld R1 B2 G3

2) bhorner: Homeworld B1 R3 G3

3) Jerome: Build G1 Jerome

4) bhorner: Build G1 Bhorner

5) Jerome: Trade G1 Y1 Jerome

6) bhorner: Trade G1 B1 Bhorner

7) Jerome: Build Y1 Jerome

8) bhorner: Trade B1 Y1 Bhorner

9) Jerome: Discover Y1 Jerome G3 Alpha

10) bhorner: Build Y2 Bhorner

11) Jerome: Build Y2 Alpha

12) bhorner: Discover Y1 Bhorner G2 Bush

13) Jerome: Discover Y2 Alpha G1 Orion

14) bhorner: Build G1 Bhorner

15) Jerome: Build G1 Jerome

16) bhorner: Build G2 Bhorner

17) Jerome: Build G2 Jerome

18) bhorner: Trade G1 R1 Bhorner

19) Jerome: Trade G1 B1 Jerome

20) bhorner: Move R1 Bhorner Bush

21) Jerome: Move B1 Jerome Alpha

22) bhorner: Move R1 Bush Alpha

23) Jerome: Build Y2 Alpha

24) bhorner: Build Y3 Bhorner

25) Jerome: Trade Y2 R2 Alpha

26) bhorner: Build R1 Alpha

27) Jerome: Sacrifice R2 Alpha
Attack R1 Alpha
Attack R1 Alpha

28) bhorner: Trade Y2 R2 Bhorner

29) Jerome: Move R1 Alpha Orion

30) bhorner: Build Y2 Bhorner

31) Jerome: Build R2 Alpha

32) bhorner: Discover Y2 Bhorner B2 Ocean

33) Jerome: Build Y2 Orion

34) bhorner: Sacrifice G2 Bhorner
Build Y3 Bush
Build Y3 Ocean

35) Jerome: Discover R1 Alpha G2 Sirius

36) bhorner: Sacrifice Y2 Ocean
Move Y3 Ocean Orion
Move Y3 Bush Alpha

37) Jerome: Move R2 Alpha Bush

38) bhorner: Sacrifice R2 Bhorner
Attack Y2 Orion
Attack R1 Orion

39) Jerome: Sacrifice R2 Bush
Attack R1 Orion
Attack Y2 Orion

40) bhorner: Build Y2 Bhorner

41) Jerome: Build R2 Sirius

42) bhorner: Discover Y2 Bhorner B2 Puddle

43) Jerome: Move Y2 Orion Puddle

44) bhorner: Discover Y2 Puddle B3 Ocean

45) Jerome: Build R2 Orion

46) bhorner: Trade Y2 R2 Ocean

47) Jerome: Build R3 Sirius

48) bhorner: Sacrifice R2 Ocean
Attack R2 Orion
Attack Y2 Orion

49) Jerome: Sacrifice Y1 Alpha
Move R3 Sirius Bhorner

50) bhorner: Attack R3 Bhorner

51) Jerome: Sacrifice Y2 Puddle
Move R2 Sirius Bhorner
Move R1 Sirius Bhorner
Catastrophe Bhorner R

52) bhorner: Sacrifice Y3 Orion
Move G3 Bhorner Alpha
Move G3 Alpha Jerome
Move Y3 Alpha Jerome

53) Jerome: Build Y1 Jerome

54) bhorner: Sacrifice R2 Orion
Attack G3 Jerome
Attack G2 Jerome

	Jerome: Thanks for the game!
	bhorner: Yes, thank you too!


35670)
Variants: "Unrated, Hard time"
Started: 2019.11.26, Ended: 2019.11.29
Participants: capi3101 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	capi3101: Thank you sir, may I have another?
	wil: Of course!

2) capi3101: Homeworld Y1 B3 G3

3) wil: B G1 Wil

4) capi3101: Build G1 Capi3101

5) wil: T G1 Y1 Wil
	capi3101: ...and let the game commence. Good luck.

6) capi3101: T G1 B1 Capi3101
	wil: Gl 2 u2

7) wil: B Y1 Wil

8) capi3101: Build B1 Capi3101

9) wil: D Y1 Wil B3 B3

10) capi3101: Discover B1 Capi3101 G2 Aleph
	wil: With only 2 y2s in the bank I have the lead on the race
	capi3101: Investing in the large blue didn't help me any either...

11) wil: S G3 Wil
B Y2 B3
B Y2 B3
B Y3 Wil

12) capi3101: Build B2 Capi3101

13) wil: M Y2 B3 Aleph

14) capi3101: Sacrifice B1 Aleph
Trade B2 R2 Capi3101

15) wil: B Y3 Aleph

16) capi3101: Move R2 Capi3101 Aleph

17) wil: D Y2 Aleph G3 G3
	wil: OPEC just froze ya out of oil, ya ain't going anywhere
	wil: Unless your space ships have sails... 

18) capi3101: Build B1 Capi3101

19) wil: B Y3 Aleph
	wil: Aleph is now the land that time forgot for your reds

20) capi3101: M G3 Capi3101 Aleph
	wil: Oops dang brain, moved the wrong 1 while talking smack
	capi3101: You mean you didn't want to give me the medium yellow? That sucks...

21) wil: S Y2 B3
M Y3 Aleph Capi3101
D Y3 Aleph B3 Bthree
	capi3101: Hell, if I'm going to lose again, I might as well try to have some fun doing it...

	wil: T r3 y3
S r3. take over the universe
	wil: Every game you lose brings  strategies of what not to do
	wil: Don't let anyone corner an economy
	capi3101: Yep.


35731)
Started: 2019.11.26, Ended: 2020.1.21
Participants: capi3101 (S), Dther (N)
Winner: capi3101

1) Dther: Homeworld R2 B1 G3

2) capi3101: Homeworld B1 Y3 G3

3) Dther: Build G1 Dther

4) capi3101: Build G1 Capi3101

5) Dther: Trade G1 Y1 Dther

6) capi3101: Build G1 Capi3101

7) Dther: Build Y1 Dther

8) capi3101: Discover G1 Capi3101 B2 Aleph
	Dther: Sorry. I've neglected my games for the past few days.

9) Dther: Discover Y1 Dther G3 Lime

10) capi3101: Trade G1 B1 Capi3101

11) Dther: Build Y1 Lime

12) capi3101: Build B2 Capi3101

13) Dther: Build Y2 Dther

14) capi3101: Discover B2 Capi3101 G2 Bet

15) Dther: Trade Y2 B2 Dther

16) capi3101: Sacrifice G3 Capi3101
Build B3 Bet
Build B3 Bet
Build B3 Capi3101

17) Dther: Build Y2 Dther

18) capi3101: Sacrifice B3 Bet
Trade B3 G3 Capi3101
Trade B1 R1 Capi3101
Trade B2 Y2 Bet

19) Dther: Trade Y1 R1 Dther

20) capi3101: Build G1 Capi3101

21) Dther: Build G1 Dther

22) capi3101: Sacrifice G3 Capi3101
Build G2 Aleph
Build G2 Capi3101
Build G3 Capi3101



35758)
Variants: "Hard time"
Started: 2019.11.27, Ended: 2019.12.3
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B3 R2 G3

2) dlwillson: H Y3 B1 G3

3) Trydnt: Build G1 Trydnt

4) dlwillson: B G1 Dlwillson

5) Trydnt: Trade G1 B1 Trydnt

6) dlwillson: T G1 B1 Dlwillson

7) Trydnt: Build B2 Trydnt

8) dlwillson: B B2 Dlwillson

9) Trydnt: Trade B1 Y1 Trydnt

10) dlwillson: D B2 Dlwillson G2 Field

11) Trydnt: Discover B2 Trydnt G1 G1

12) dlwillson: Build B1 Field

13) Trydnt: Build B2 G1

14) dlwillson: B B3 Dlwillson

15) Trydnt: Build B3 G1

16) dlwillson: T B2 Y2 Field

17) Trydnt: Trade B2 Y2 G1

18) dlwillson: T B3 R3 Dlwillson

19) Trydnt: Trade B3 R3 G1

20) dlwillson: B G1 Dlwillson

21) Trydnt: Build B2 G1

22) dlwillson: B R1 Dlwillson

23) Trydnt: Move R3 G1 Field

24) dlwillson: S Y2 Field
M R3 Dlwillson Field
M R3 Field G1

25) Trydnt: Sacrifice Y2 G1
Discover B2 G1 G2 G2
Discover B2 G1 G2 Gee2

26) dlwillson: B R1 Dlwillson

27) Trydnt: Build B2 G2

28) dlwillson: B B3 Field

29) Trydnt: Attack B3 Field

30) dlwillson: B B3 Field

31) Trydnt: Attack B3 Field

32) dlwillson: M B1 Dlwillson Field
C Field B

33) Trydnt: Trade B2 Y2 G2

34) dlwillson: D R1 Dlwillson R2 Mars
	dlwillson: Hmm... Pretty sure I could've handled that better.

35) Trydnt: Build R1 Field

36) dlwillson: B R2 Dlwillson

37) Trydnt: Discover B2 G2 R3 R3

38) dlwillson: D G1 Dlwillson B2 Sea

39) Trydnt: Build Y1 G2

40) dlwillson: M R1 Dlwillson Sea

41) Trydnt: Build Y1 G2

42) dlwillson: T R1 B1 Sea

43) Trydnt: Build Y2 Trydnt

44) dlwillson: B R1 G1

45) Trydnt: Discover Y1 Trydnt B1 B1

46) dlwillson: S B1 Sea
T R3 G3 G1

47) Trydnt: Sacrifice G3 Trydnt
Build Y2 B1
Build Y3 B1
Build Y3 Trydnt

48) dlwillson: S G3 G1
B G1 Dlwillson
B G3 Sea
B G3 Sea

49) Trydnt: Build B1 Gee2

50) dlwillson: S G3 Sea
B G3 Dlwillson
B R3 Dlwillson
Pass

51) Trydnt: Sacrifice Y3 B1
Move Y1 G2 Dlwillson
Move Y1 G2 Dlwillson
Move Y2 G2 Dlwillson
Catastrophe Dlwillson Y

	dlwillson: Wow! Good game!
	Trydnt: well played!


35770)
Started: 2019.12.4, Ended: 2019.12.4
Participants: Cuc2 (S), Cuc (N)
Winner: Cuc

1) Cuc: Homeworld G2 B1 Y3 N

2) Cuc2: H G3 B3 R3 *

3) Cuc: Build Y1 Cuc

4) Cuc2: B R1 Cuc2

5) Cuc: Trade Y1 R1 Cuc

6) Cuc2: T R1 Y1 Cuc2

7) Cuc: Build R1 Cuc

8) Cuc2: B Y1 Cuc2

9) Cuc: Discover R1 Cuc G3 G3a

10) Cuc2: D Y1 Cuc2 G2 G2b

11) Cuc: Build R1 G3a

12) Cuc2: B Y1 G2b

13) Cuc: Build Y2 Cuc

14) Cuc2: B R2 Cuc2

15) Cuc: Move Y2 Cuc G3a

16) Cuc2: B Y2 G2b

17) Cuc: Build R2 Cuc

18) Cuc2: S Y2 G2b
M R3 Cuc2 G2b
M R3 G2b G3a

19) Cuc: Move R1 Cuc G3a
Catastrophe G3a R

20) Cuc2: B Y2 G2b

21) Cuc: Build R1 Cuc

22) Cuc2: B R1 Cuc2

23) Cuc: Trade R1 G1 Cuc

24) Cuc2: M Y1 G2b G3a

25) Cuc: Move R2 Cuc G3a

26) Cuc2: B Y2 G2b

27) Cuc: Move Y2 G3a G2b
Catastrophe G2b Y

28) Cuc2: M R2 Cuc2 Cuc

29) Cuc: Build R1 G3a

30) Cuc2: B R1 Cuc2

31) Cuc: Build G1 Cuc

32) Cuc2: A G1 Cuc

33) Cuc: Sacrifice R1 G3a
Attack R2 Cuc

34) Cuc2: B Y1 G3a

35) Cuc: Attack G1 Cuc

36) Cuc2: B Y2 G3a

37) Cuc: Attack Y2 G3a

38) Cuc2: B Y2 Cuc2

39) Cuc: Discover R2 G3a G2 G2c

40) Cuc2: M Y1 Cuc2 G2c

41) Cuc: Attack Y1 G2c

42) Cuc2: T R1 G1 Cuc2

43) Cuc: Sacrifice Y2 G3a
Move G1 Cuc Cuc2
Move G1 Cuc Cuc2
Catastrophe Cuc2 G

44) Cuc2: B Y2 G3a

45) Cuc: Move R2 G2c G3a

46) Cuc2: M Y2 G3a G2c

47) Cuc: Attack Y1 G3a

48) Cuc2: B Y2 G3a

49) Cuc: Attack Y2 G3a

50) Cuc2: B Y3 G2c

51) Cuc: Pass
	Cuc: The original game had a mistake, where y3 was built in cuc2. Hence, to align with that, cuc will pass, cuc2 will move y2 to cuc2, then we'll resume.

52) Cuc2: M Y3 G2c Cuc2

53) Cuc: Discover Y2 G3a G1 G1d

54) Cuc2: B Y3 G3a

55) Cuc: Build R1 Cuc

56) Cuc2: T Y3 R3 Cuc2

57) Cuc: Sacrifice Y2 G1d
Move R1 Cuc Cuc2
Move R2 Cuc Cuc2
Catastrophe Cuc2 R

58) Cuc2: M Y1 G3a Cuc

59) Cuc: Trade Y3 R3 Cuc

60) Cuc2: D Y2 G2c G3 G3E

61) Cuc: Attack Y1 Cuc

62) Cuc2: B Y2 G3E

63) Cuc: Build Y3 G2c

64) Cuc2: D Y3 G3a B2 B2f

65) Cuc: Discover Y1 G3a G2 G2g

66) Cuc2: T Y2 R2 Cuc2

67) Cuc: Build Y2 G2g

68) Cuc2: M Y3 B2f Cuc2

69) Cuc: Move Y1 Cuc G3a

70) Cuc2: T Y3 R3 Cuc2

71) Cuc: Discover R2 G3a G1 G1h

72) Cuc2: M Y2 G3E G2c

73) Cuc: Move Y3 G2c G1h

74) Cuc2: B Y3 G3E

75) Cuc: Build R1 Cuc

76) Cuc2: M Y2 G2c Cuc2

77) Cuc: Build R1 G1h

78) Cuc2: M Y2 G3E G1h

79) Cuc: Sacrifice Y2 G2g
Move R1 G1h Cuc2
Move R2 G1h Cuc2
Catastrophe Cuc2 R

80) Cuc2: T Y2 R2 Cuc2

81) Cuc: Move Y1 G3a Cuc

82) Cuc2: B Y2 G3E

83) Cuc: Move R3 Cuc Cuc2

84) Cuc2: M Y2 G1h Cuc2
	Cuc: The Red Hulk! Now what?

85) Cuc: Attack R2 Cuc2

86) Cuc2: S Y2 G3E
M Y3 G3E G1h
M Y3 G1h Cuc2

87) Cuc: Sacrifice R2 Cuc2
Attack Y2 Cuc2
Attack Y3 Cuc2
	Cuc: final blow with sacrificing r2 in cuc2 and conquering both yellow ships
	Cuc: Thank you David. You're doing much better already, because this was by far the longest and most memorable game we played. Note that some moaneuvres occurred twice. Extinction events cleared out the known universe but I gradually gained position that way. Points of attention: a.) keep your HW occupied with a large ship, b.) keep your ships out of harm's way by not moving where I can conquer them, 3.) think of discovering systems to "park" your excess ships.
	Cuc: Analyzing the game, at move 10 (see http://superdupergames.org/?page=archive_play&gid=35770&idx=17), I could have moved my Y3 over to your HW. Then, you'd have to build either Yellow or Red in your HW to prevent me from overtaking both your ships by sacrificing my R2. You'd be too late if you moved your R3 to my HW instead. But I would always sacrifice my R2 anyway, and conquer your red and whatever you built. Since I then have another R2 in your HW, I will then be able to conquer both your other ships, if you decide to build another ship in your HW. It would look like this: 

10. M R3 CUC CUC2; B R2 CUC2 //
11. S R2 CUC, A R2 CUC2, A R2 CUC2; B Y2 CUC2 //
12. S R2 CUC2, A Y2 CUC2, A Y2 CUC2; END 

This shows that I've got a lot to learn, to drag a game out 4 times its optimal length . . . apologies :-). 
In any case, it was fun!




35769)
Variants: "Hard time"
Started: 2019.12.4, Ended: 2020.1.22
Participants: Babamots (S), Simon (N)
Winner: Babamots

1) Simon: Homeworld R1 B3 G3

2) Babamots: Homeworld B2 R1 G3
	Simon: Enough with the nonstandard blue ship. Have fun!

3) Simon: Build G1 Simon
	Babamots: It was a bold experiment, but I think green is the stronger start. Good luck!

4) Babamots: Build G1 Babamots

5) Simon: Trade G1 R1 Simon

6) Babamots: Trade G3 R3 Babamots

7) Simon: Build R2 Simon

8) Babamots: Build R2 Babamots

9) Simon: Trade R2 Y2 Simon

10) Babamots: Trade R2 Y2 Babamots

11) Simon: Build R2 Simon

12) Babamots: Build R2 Babamots

13) Simon: Discover R2 Simon B2 B2

14) Babamots: Discover R2 Babamots Y3 Iconia

15) Simon: Build G1 Simon

16) Babamots: Trade R3 G3 Babamots

17) Simon: Move G1 Simon B2

18) Babamots: Move G1 Babamots Iconia

19) Simon: Build Y1 Simon

20) Babamots: Build Y1 Babamots

21) Simon: Move Y1 Simon B2

22) Babamots: Discover Y1 Babamots G3 Orion

23) Simon: Discover R1 Simon Y2 Y2

24) Babamots: Build G1 Babamots

25) Simon: Build G2 Simon

26) Babamots: Sacrifice G3 Babamots
Build Y1 Babamots
Build Y3 Babamots
Build Y3 Orion

27) Simon: Sacrifice G2 Simon
Build R2 Y2
Build R3 B2

28) Babamots: Discover Y2 Babamots B3 Gravesworld

29) Simon: Build G2 Simon

30) Babamots: Build R3 Iconia

31) Simon: Move R2 Y2 Iconia

32) Babamots: Sacrifice R2 Iconia
Attack R2 Iconia
Pass

33) Simon: Build G2 B2

34) Babamots: Build G2 Iconia

35) Simon: Discover R2 B2 G3 G3

36) Babamots: Discover G2 Iconia R2 Romulus

37) Simon: Sacrifice G2 B2
Build G2 B2
Build R3 Y2

38) Babamots: Move Y3 Orion Romulus

39) Simon: Trade G1 B1 B2
	Babamots: Sorry, thought I saw something better, but it was a hallucination.

40) Babamots: Build G1 Romulus

41) Simon: Sacrifice G2 Simon
Build G2 B2
Build B1 B2

42) Babamots: Trade G1 B1 Babamots
	Simon: Apologies for long delay over the holidays. Sharp position with several enticing moves.

43) Simon: Sacrifice B1 B2
Trade R3 B3 Y2

44) Babamots: Build G1 Romulus

45) Simon: Sacrifice G2 B2
Build G2 B2
Build R3 Y2
	Babamots: I didn't anticipate that nice move, so I need to make sure I don't rush into anything.

What I'm considering seems likely to result in an endless cycle. What do you do if a ladder game gets stuck? Should we just see who runs out of patience and resigns?
	Draw5PlayAll: Sorry for barging in, but:

On other ladders, if the game ends in a draw, neither player moves. Since that is effectively the same as the challenger losing, whoever issued this challenge (i.e. whoever is lower on the ladder) should resign if they can't win.
	Babamots: I thought that might be the case. I'll resign if we get stuck.
	Simon: I agree with both of you: For the ladder, resign of the lower-rung player feels in spirit like a draw according the ladder rules: "Draws are simply ignored." For rating points, it would be more appropriate for North seat to resign in a cycle because of North's unrealized first-move advantage.

Repetition of position should really become part of the Homeworld rules!
	Simon: (If repetition ever becomes a Homeworlds rule, I'm undecided whether repetition should be forbidden or whether n-fold repetition should be a draw claimable by any player. Delicate.)
	Babamots: For regular games, you can use console commands to make the game unrated after the fact. Now I wonder if that would work for ladder games too.
	Babamots: I'm traveling for the next 24 hours or so, but after that I should have time to look at this properly.
	Draw5PlayAll: 1. I think n-fold repetition should be claimable by the players, but admittedly there are lots of variables (i.e. three of each piece, abandon and rediscover a system, etc) that can make it much more difficult than chess to decide if a position is repeated.
2. The rumor is that in ladder games you can only freeze and thaw the clocks.

46) Babamots: Move G2 Romulus Simon

47) Simon: Move G2 B2 Orion

48) Babamots: Sacrifice Y3 Babamots
Move G1 Romulus Simon
Move G1 Romulus Simon
Catastrophe Simon G
Move Y3 Romulus Simon

	Simon: gg, I overlooked this every night.
	Babamots: Thanks for the game! Though I'm a little sorry for it to end that way since I think you could have held me off of getting enough blue and red.


35489)
Started: 2019.12.4, Ended: 2019.12.18
Participants: Trydnt (S), Babamots (N)
Winner: Trydnt

1) Babamots: Homeworld B2 R1 G3
	Babamots: Good luck!
This is for the tournament, right?

2) Trydnt: Homeworld Y3 B2 G3

3) Babamots: Build G1 Babamots
	Trydnt: Good luck to you! and yes this is for the great homeworlds tournament of 2019

4) Trydnt: Build G1 Trydnt

5) Babamots: Trade G1 R1 Babamots

6) Trydnt: Trade G1 R1 Trydnt

7) Babamots: Build R2 Babamots

8) Trydnt: Build R2 Trydnt

9) Babamots: Trade R1 Y1 Babamots

10) Trydnt: Trade R2 Y2 Trydnt

11) Babamots: Build Y1 Babamots

12) Trydnt: Build G1 Trydnt

13) Babamots: Build G1 Babamots

14) Trydnt: Discover Y2 Trydnt G1 G1

15) Babamots: Discover Y1 Babamots B3 Bolarus

16) Trydnt: Build G2 Trydnt

17) Babamots: Build G2 Babamots

18) Trydnt: Discover G2 Trydnt B1 B1

19) Babamots: Discover G2 Babamots G3 Orion

20) Trydnt: Build G2 B1

21) Babamots: Move G1 Babamots Bolarus

22) Trydnt: Trade G2 Y2 B1

23) Babamots: Build G2 Babamots

24) Trydnt: Build Y1 B1

25) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build Y3 Babamots
Build G3 Bolarus

26) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y3 G1
Build R1 Trydnt

27) Babamots: Move G3 Bolarus B1

28) Trydnt: Sacrifice Y2 B1
Discover G2 B1 Y2 Y2
Move Y3 G1 Orion

29) Babamots: Sacrifice G1 Bolarus
Build G1 Orion

30) Trydnt: Discover Y1 B1 B3 B3

31) Babamots: Sacrifice G2 Babamots
Build G2 Orion
Catastrophe Orion G
Build Y3 Bolarus

32) Trydnt: Move Y2 G1 Bolarus
Catastrophe Bolarus Y

33) Babamots: Trade Y1 G1 Babamots

34) Trydnt: Discover R1 Trydnt Y1 Y1

35) Babamots: Build R2 Babamots

36) Trydnt: Sacrifice G3 Trydnt
Build R2 Y1
Build R3 Trydnt
Build R3 Y1

37) Babamots: Move R2 Babamots B3

38) Trydnt: Move R3 Y1 B3

39) Babamots: Sacrifice G1 Babamots
Build R3 B3
	Babamots: Well that was mighty careless of me. I'll have to think about this.
	Trydnt: this has been one hell of a game so far
	Trydnt: I feel like I squandered an early lead with one move that felt so insignificant at the time

40) Trydnt: Attack R3 B3
	Babamots: I need to resist the temptation to play quickly just to get this over with. I'm not totally doomed yet, but desperate moves could finish me off.

41) Babamots: Move R2 Babamots B3
Catastrophe B3 R

42) Trydnt: Move R3 Trydnt B1

43) Babamots: Sacrifice G3 B1
Build Y1 Babamots
Build Y2 Babamots
Pass

44) Trydnt: Move Y1 B3 Babamots
Catastrophe Babamots Y

	Trydnt: That was one hell of a game. Well played!
	Babamots: Good game!


35772)
Started: 2019.12.5, Ended: 2019.12.22
Participants: Cuc (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R2 B2 G3 *

2) Cuc: H G3 Y1 R3 *
	Babamots: I've been wanting to try a single-size homeworld. I think it will shorten the Hanne, which ought to work in favor of the player with first move advantage. Let's find out. :-)

3) Babamots: Build G1 Babamots
	Cuc: I take It on! I got a warning I should have blue. I realize it'll take some effort to access it, but I could travel to your HW . . . :-)
	Babamots: Bring it!

4) Cuc: Build R1 Cuc

5) Babamots: Trade G1 Y1 Babamots
	Cuc: I played a game last Thursday, where the HW of me and my opponent were connected. I thought it would be a quick game, but it took 40+ moves. That was kind of a surprise. It took a time to establish a positional advantage, before it could be used to construct a winning situation. We'll see what happens here . . . 

6) Cuc: Discover R1 Cuc B2 B2a

7) Babamots: Build Y1 Babamots

8) Cuc: Build R1 Cuc

9) Babamots: Build Y2 Babamots

10) Cuc: M R1 Cuc B2a

11) Babamots: Discover Y1 Babamots G1 Risa

12) Cuc: Trade R1 G1 B2a

13) Babamots: Trade Y2 R2 Babamots

14) Cuc: Build G1 B2a

15) Babamots: Build Y2 Risa

16) Cuc: Build G2 B2a

17) Babamots: Sacrifice G3 Babamots
Build Y2 Risa
Build Y2 Babamots
Build Y3 Babamots

18) Cuc: B R1 Cuc

19) Babamots: Trade Y3 G3 Babamots

20) Cuc: Trade G2 R2 B2a

	Cuc: It's like watching magic: great skill!

21) Babamots: Move R2 Babamots Risa
	Babamots: Once you've got a big enough lead in one color, you can really run away with it. Yellow is my favorite for this.
	Cuc: You robbed me of the opportunity to get Yellow at all! I wonder how you did that. I don't think I can follow the steps yet.

22) Cuc: Discover R1 Cuc G2 G2b

23) Babamots: Build Y3 Babamots

24) Cuc: Build R1 Cuc

25) Babamots: Build R3 Risa

26) Cuc: Build R3 G2b

27) Babamots: Discover R3 Risa B2 Bolarus
	Cuc: I haven't been able to acquire any yellow yet. I can not move anything back to my HW. I'm kinda stuck and waiting for the yellow invasion ;-B

28) Cuc: Pass
	Babamots: Yellow is definitely the worst color to get locked out of. Green is also bad if it's early game.

29) Babamots: Sacrifice Y3 Babamots
Move R2 Risa Bolarus
Move R3 Bolarus Cuc
Move R2 Bolarus Cuc
Catastrophe Cuc R
	Cuc: Is there a decision tree you follow to lock somebody out? It seems systematic that you've been able to accomplish this. I'm not sure I understand how you made that happen. Or, by the same token, what I did to allow you . . .

	Cuc: We haven't seen the advantage, I believe. Perhaps that shows that we're just beginners? But in that event, we play 2 games to even out the "advantage". My buddy said that we both have the same "disadvantage", meaning that we did not get to choose our HW and have to make it work. It's fun to explore the strenghts/weaknesses of each of the possible HWs. I'm trying to gain enough experience to oversee the tactical impact of each possible HW (combo of stars, size/color) 
	Babamots: GG. I think it's wise to get a yellow ship early so you're always ready to build more.
	Cuc: Thx, I enjoy a game like this, even if I am at the losing hand. I see things and gradually learn.
	Babamots: If you want to look back and identify definite mistakes, maybe you can learn some general principles to improve the next game. Let me know if you want any help :-)


35691)
Variants: "Hard time"
Started: 2019.12.5, Ended: 2019.12.16
Participants: Trydnt (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3
	dlwillson: Well, hello again! Didn't beat me thoroughly enough on the ladder, eh? :-)

2) Trydnt: Homeworld R3 B2 G3
	Trydnt: haha well I love a good challenge :)

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build G1 Trydnt

5) dlwillson: D G1 Dlwillson B2 Sea

6) Trydnt: Trade G1 Y1 Trydnt

7) dlwillson: B G1 Dlwillson

8) Trydnt: Build Y1 Trydnt
	dlwillson: Trying something different. Let's see what happens.
	dlwillson: Trying something different. Let's see what happens.
	dlwillson: Trying something different. Let's see what happens.

9) dlwillson: D G1 Dlwillson G2 Field

10) Trydnt: Build Y2 Trydnt

11) dlwillson: Build G1 Dlwillson

12) Trydnt: Discover Y2 Trydnt B1 B1

13) dlwillson: B G2 Field

14) Trydnt: Discover Y2 B1 G3 G3

15) dlwillson: B G2 Sea

16) Trydnt: Discover Y1 Trydnt B1 B1

17) dlwillson: T G2 Y2 Sea

18) Trydnt: Build G2 Trydnt

19) dlwillson: T G1 R1 Dlwillson

20) Trydnt: Sacrifice G2 Trydnt
Build Y2 Trydnt
Build Y3 B1

21) dlwillson: B Y3 Sea

22) Trydnt: Sacrifice Y2 Trydnt
Move Y1 B1 Sea
Move Y2 G3 Sea
Catastrophe Sea Y

23) dlwillson: S G2 Field
B G1 Dlwillson
B G2 Sea

24) Trydnt: Discover Y3 B1 G3 G3

25) dlwillson: S G3 Dlwillson
B G2 Sea
B R1 Dlwillson
B G3 Dlwillson

26) Trydnt: Build Y1 Trydnt

27) dlwillson: T G2 Y2 Sea

28) Trydnt: Discover Y1 Trydnt B1 B1

29) dlwillson: S G3 Dlwillson
B G2 Sea
B Y2 Sea
B G3 Dlwillson

30) Trydnt: Build Y2 Trydnt

31) dlwillson: M Y2 Sea B1

32) Trydnt: Sacrifice Y1 Trydnt
Discover Y1 B1 B2 B2

33) dlwillson: S G3 Dlwillson
B Y1 B1
B Y3 Sea
B G3 Dlwillson

34) Trydnt: Build Y3 Trydnt

35) dlwillson: S Y2 Sea
M Y2 B1 Trydnt
M Y1 B1 Trydnt
C Trydnt Y

36) Trydnt: Build Y1 G3

37) dlwillson: M R1 Dlwillson B2

38) Trydnt: Discover Y1 B2 B1 B1

39) dlwillson: M G2 Sea G3

40) Trydnt: Sacrifice Y1 G3
Discover Y3 G3 R2 R2

41) dlwillson: S G2 G3
B G2 Sea
B G3 Field

42) Trydnt: Move Y1 B1 Trydnt

43) dlwillson: D G1 Sea B1 Sky

44) Trydnt: Build Y1 Trydnt

45) dlwillson: S G3 Field
B Y2 Sea
B Y2 Sea
B G3 Sky

46) Trydnt: Trade Y1 B1 Trydnt

47) dlwillson: M Y3 Sea Sky

48) Trydnt: Discover B1 Trydnt Y1 Y1

49) dlwillson: T G3 R3 Dlwillson



35692)
Started: 2019.12.5, Ended: 2020.1.14
Participants: Trydnt (S), MobyNostromo (N)
Winner: Trydnt

1) MobyNostromo: H Y2 B3 G3

2) Trydnt: Homeworld B2 Y1 G3

3) MobyNostromo: B G1 Mobynostromo

4) Trydnt: Build G1 Trydnt

5) MobyNostromo: T G1 B1 Mobynostromo

6) Trydnt: Trade G1 Y1 Trydnt

7) MobyNostromo: D B1 Mobynostromo G1 Clover

8) Trydnt: Build Y1 Trydnt

9) MobyNostromo: B B1 Clover

10) Trydnt: Discover Y1 Trydnt G3 G3

11) MobyNostromo: B G1 Mobynostromo

12) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y2 G3
Build Y3 Trydnt

13) MobyNostromo: T B1 R1 Clover

14) Trydnt: Trade Y3 G3 Trydnt

15) MobyNostromo: T G3 Y3 Mobynostromo

16) Trydnt: Discover Y2 G3 G1 G1

17) MobyNostromo: B G2 Mobynostromo

18) Trydnt: Build Y3 G1

19) MobyNostromo: B G2 Mobynostromo

20) Trydnt: Sacrifice Y3 G1
Move Y1 G3 G1
Move Y1 G1 Mobynostromo
Move Y2 G1 Mobynostromo
Catastrophe Mobynostromo Y

21) MobyNostromo: T G2 Y2 Mobynostromo

22) Trydnt: Trade Y1 R1 Trydnt

23) MobyNostromo: B Y1 Mobynostromo

24) Trydnt: Discover Y2 G3 R1 R1

25) MobyNostromo: T G1 B1 Mobynostromo

26) Trydnt: Build R2 Trydnt

27) MobyNostromo: T Y2 R2 Mobynostromo

28) Trydnt: Trade R1 B1 Trydnt

29) MobyNostromo: B G1 Mobynostromo

30) Trydnt: Build G1 Trydnt

31) MobyNostromo: M G2 Mobynostromo Trydnt

32) Trydnt: Trade G3 R3 Trydnt

33) MobyNostromo: S G2 Trydnt
B Y1 Mobynostromo
B G2 Mobynostromo

34) Trydnt: Sacrifice Y2 R1
Move R3 Trydnt Mobynostromo
Move B1 Trydnt Mobynostromo

35) MobyNostromo: S G2 Mobynostromo
B R1 Mobynostromo
B R1 Mobynostromo
C Mobynostromo R

36) Trydnt: Sacrifice G1 Trydnt
Build B2 Mobynostromo
Catastrophe Mobynostromo B

	Trydnt: well played :)
	MobyNostromo: Well, I tried. But this is a very deep game, which fascinates me, but I have yet to break the code.


35696)
Variants: "Hard time"
Started: 2019.12.5, Ended: 2019.12.28
Participants: Trydnt (S), wil (N)
Winner: Trydnt

1) wil: H B2 Y1 G3

2) Trydnt: Homeworld R3 B2 G3

3) wil: B G1 Wil

4) Trydnt: Build G1 Trydnt

5) wil: T G1 B1 Wil

6) Trydnt: Trade G1 B1 Trydnt

7) wil: B G1 Wil

8) Trydnt: Build G1 Trydnt

9) wil: T G1 R1 Wil

10) Trydnt: Trade G1 Y1 Trydnt

11) wil: B R1 Wil

12) Trydnt: Build Y1 Trydnt

13) wil: B R1 Wil

14) Trydnt: Build Y2 Trydnt

15) wil: D R1 Wil Y3 Y3

16) Trydnt: Trade Y2 R2 Trydnt

17) wil: D R1 Wil Y3 Why3

18) Trydnt: Discover R2 Trydnt G1 G1

19) wil: B R2 Wil

20) Trydnt: Build Y2 Trydnt

21) wil: T R2 Y2 Wil

22) Trydnt: Move Y2 Trydnt G1

23) wil: S G3 Wil
B R2 Wil
B R2 Y3
B R3 Why3

24) Trydnt: Discover Y2 G1 R3 R3

25) wil: T R1 G1 Wil

26) Trydnt: Sacrifice G3 Trydnt
Build Y2 R3
Build Y3 Trydnt
Build B1 Trydnt

27) wil: D Y2 Wil G3 G3

28) Trydnt: Build R1 G1

29) wil: M R1 Why3 G1

30) Trydnt: Sacrifice R1 G1
Attack R1 G1

31) wil: B B2 Wil

32) Trydnt: Move B1 Trydnt G1

33) wil: S B2 Wil
T R3 G3 Why3
T R2 B2 Y3

34) Trydnt: Build B3 G1

35) wil: M G3 Why3 Wil

36) Trydnt: Trade B3 Y3 G1



35751)
Variants: "Unrated, Hard time"
Started: 2019.12.5, Ended: 2019.12.7
Participants: Trydnt (S), capi3101 (N)
Winner: Trydnt

1) capi3101: H Y1 B3 G3

2) Trydnt: Homeworld G2 B1 Y3

3) capi3101: Build G1 Capi3101

4) Trydnt: Build Y1 Trydnt

5) capi3101: Build G1 Capi3101
	capi3101: Good hunting; hoping to provide more of a challenge than the last time we played...

6) Trydnt: Build Y1 Trydnt

7) capi3101: Trade G1 B1 Capi3101

8) Trydnt: Discover Y1 Trydnt G3 G3

9) capi3101: Trade G3 Y3 Capi3101

10) Trydnt: Build Y2 G3

11) capi3101: Discover Y3 Capi3101 G2 Dumb_move

12) Trydnt: Build Y2 Trydnt

13) capi3101: Move Y3 Dumb_move Capi3101

14) Trydnt: Sacrifice Y2 G3
Discover Y1 Trydnt G3 G33
Discover Y2 Trydnt G3 G333

	capi3101: Shit.
	capi3101: I'll try again later.


35753)
Started: 2019.12.5, Ended: 2020.6.9
Participants: Trydnt (S), Dther (N)
Winner: Trydnt

1) Dther: Homeworld B1 Y2 G3

2) Trydnt: Homeworld R3 G2 B3

3) Dther: Build G1 Dther

4) Trydnt: Build B1 Trydnt

5) Dther: Build G1 Dther

6) Trydnt: Build B1 Trydnt

7) Dther: Discover G1 Dther B3 Hydrangea

8) Trydnt: Trade B3 Y3 Trydnt

9) Dther: Build G1 Hydrangea

10) Trydnt: Build B2 Trydnt

11) Dther: Sacrifice G3 Dther
Build G2 Hydrangea
Build G2 Dther
Build G3 Dther

12) Trydnt: Discover B1 Trydnt Y1 Y1

13) Dther: Trade G2 B2 Dther

14) Trydnt: Discover B2 Trydnt Y1 Why1

15) Dther: Discover B2 Dther Y3 Sunflower

16) Trydnt: Trade Y3 G3 Trydnt

17) Dther: Trade G1 Y1 Hydrangea

18) Trydnt: Sacrifice G3 Trydnt
Build B2 Y1
Build B3 Why1
Build B3 Trydnt

19) Dther: Discover G1 Hydrangea Y2 Dandelion

20) Trydnt: Trade B2 R2 Why1

21) Dther: Trade G1 R1 Dther

22) Trydnt: Trade B3 Y3 Trydnt

23) Dther: Sacrifice G2 Hydrangea
Build Y2 Hydrangea
Build Y3 Hydrangea

24) Trydnt: Discover B2 Y1 G3 G3

25) Dther: Discover Y3 Hydrangea R2 Rose

26) Trydnt: Trade B3 G3 Why1

27) Dther: Build G1 Dandelion

28) Trydnt: Build R1 Why1

29) Dther: Trade Y2 G2 Hydrangea

30) Trydnt: Build Y2 Trydnt

31) Dther: Sacrifice G2 Hydrangea
Build G1 Dther
Build G2 Dther

32) Trydnt: Build G2 Why1

33) Dther: Sacrifice Y3 Rose
Move G1 Dandelion Why1
Move G1 Dandelion Why1
Catastrophe Why1 G
Discover G2 Dther Y3 Marigold

34) Trydnt: Trade B1 G1 Y1

35) Dther: Sacrifice G2 Marigold
Build Y2 Hydrangea
Build Y3 Hydrangea

36) Trydnt: Discover Y2 Trydnt G1 G1

37) Dther: Trade Y2 G2 Hydrangea

38) Trydnt: Build B1 G3



35723)
Started: 2019.12.9, Ended: 2020.1.4
Participants: goulo (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 Y2 G3

2) goulo: Homeworld R3 B1 G3

3) ajo: Build G1 Ajo
	goulo: hi, have fun! This is for the tournament, right?

4) goulo: Build G1 Goulo
	ajo: Yes, for the tournament! Good luck.

5) ajo: Discover G1 Ajo B1 Alpha

6) goulo: Trade G1 Y1 Goulo

7) ajo: Build G1 Alpha

8) goulo: Build Y1 Goulo

9) ajo: Trade G1 B1 Alpha

10) goulo: Trade Y1 R1 Goulo

11) ajo: Build B2 Alpha

12) goulo: Build Y1 Goulo

13) ajo: Trade B2 Y2 Alpha

14) goulo: Discover Y1 Goulo G2 Verdo
	Draw5PlayAll: This game is not on the progress table. 

15) ajo: Build B2 Alpha
	goulo: I think ajo (as the first player) is supposed to add it, right?
https://jpeterbaker.github.io/homeworlds/tournament/links2019.html
	ajo: Oops. Added!

16) goulo: Build Y1 Goulo

17) ajo: Trade B2 R2 Alpha

18) goulo: Discover Y1 Goulo G2 Verdo2

19) ajo: Build R1 Alpha

20) goulo: Build G1 Goulo

21) ajo: Discover R1 Alpha G2 Beta

22) goulo: Discover R1 Goulo Y2 Flavo

23) ajo: Build Y3 Alpha

24) goulo: Build Y3 Goulo

25) ajo: Build G1 Ajo

26) goulo: Discover Y1 Verdo2 G3 Verdego

27) ajo: Sacrifice Y2 Alpha
Move B1 Alpha Beta
Move R2 Alpha Ajo

28) goulo: Move G3 Goulo Beta

29) ajo: Sacrifice G3 Ajo
Build G2 Alpha
Build G3 Ajo
Build Y2 Alpha

30) goulo: Sacrifice R1 Flavo
Attack R1 Beta

31) ajo: Sacrifice R2 Ajo
Attack R1 Beta
Pass

32) goulo: Sacrifice G3 Beta
Build G3 Goulo
Build Y2 Verdo
Build Y3 Verdego

33) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build B2 Beta
Build B2 Beta

34) goulo: Trade G1 R1 Goulo

35) ajo: Sacrifice Y2 Alpha
Move B1 Beta Goulo
Move B2 Beta Goulo

36) goulo: Attack B2 Goulo

37) ajo: Sacrifice G2 Alpha
Build R1 Beta
Build B2 Goulo
Catastrophe Goulo Blue

	ajo: Check. :)
	goulo: Yep, that game went pretty disastrously for me! Congrats! :)


35787)
Started: 2019.12.12, Ended: 2019.12.21
Participants: speardane (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld R1 B2 G3

2) speardane: Homeworld Y3 B2 G3
	eliscinsky: This is for the Great Homeworlds Tournament 2019. Good Luck & Have fun! 

3) eliscinsky: Build G1 Eliscinsky

4) speardane: Build G1 Speardane
	speardane: For the tournament!

5) eliscinsky: Trade G1 Y1 Eliscinsky

6) speardane: Trade G3 R3 Speardane

7) eliscinsky: Build G1 Eliscinsky

8) speardane: Build G1 Speardane

9) eliscinsky: Build G2 Eliscinsky

10) speardane: Discover G1 Speardane B1 Delos

11) eliscinsky: Discover G1 Eliscinsky B3 Earth

12) speardane: Build G2 Delos

13) eliscinsky: Build Y1 Eliscinsky

14) speardane: Trade G1 Y1 Delos

15) eliscinsky: Trade Y1 R1 Eliscinsky

16) speardane: Build G1 Delos

17) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Eliscinsky
Build G3 Eliscinsky
Build G3 Earth

18) speardane: Sacrifice G2 Delos
Build G2 Speardane
Build G3 Delos

19) eliscinsky: Trade G2 Y2 Eliscinsky

20) speardane: Trade G3 R3 Delos

21) eliscinsky: Trade G1 R1 Earth

22) speardane: Discover G2 Speardane Y1 Lebling

23) eliscinsky: Trade Y1 B1 Eliscinsky

24) speardane: Build G1 Lebling

25) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Earth
Build G3 Eliscinsky
Build G3 Eliscinsky

26) speardane: Sacrifice G2 Lebling
Build R2 Delos
Build R2 Delos

27) eliscinsky: Sacrifice Y2 Eliscinsky
Move R1 Earth Delos
Catastrophe Delos Red
Move G3 Earth Delos

28) speardane: Sacrifice Y1 Delos
Discover G1 Delos B3 Kotok

29) eliscinsky: Trade G3 Y3 Eliscinsky

30) speardane: Build G2 Kotok

31) eliscinsky: Sacrifice G2 Eliscinsky
Build G2 Delos
Build G3 Earth

32) speardane: Trade G2 Y2 Kotok

33) eliscinsky: Trade G2 R2 Delos

34) speardane: Build G2 Kotok

35) eliscinsky: Sacrifice G3 Earth
Build R1 Delos
Build G2 Delos
Build G3 Earth

36) speardane: Trade G2 R2 Kotok

37) eliscinsky: Move R1 Eliscinsky Kotok

38) speardane: Sacrifice G1 Lebling
Build R2 Kotok

39) eliscinsky: Sacrifice G2 Earth
Build R3 Delos
Build R3 Kotok
Catastrophe Kotok Red

40) speardane: Build Y1 Kotok

41) eliscinsky: Sacrifice Y3 Eliscinsky
Move R1 Delos Speardane
Move R2 Delos Speardane
Move R3 Delos Speardane
Catastrophe Speardane Red

42) speardane: Trade Y2 R2 Kotok

43) eliscinsky: Trade G3 R3 Delos

44) speardane: Build R1 Kotok

45) eliscinsky: Sacrifice G3 Earth
Build G1 Eliscinsky
Build G2 Delos
Build R1 Delos

46) speardane: Build G2 Speardane

47) eliscinsky: Trade G2 Y2 Delos

48) speardane: Trade G2 R2 Speardane

49) eliscinsky: Sacrifice Y2 Delos
Move G2 Delos Speardane
Move R3 Delos Speardane

50) speardane: Attack G2 Speardane

51) eliscinsky: Attack R2 Speardane

52) speardane: Sacrifice R2 Kotok
Attack R2 Speardane
Pass

53) eliscinsky: Attack R2 Speardane

54) speardane: Sacrifice R1 Kotok
Attack R2 Speardane

55) eliscinsky: Attack R2 Speardane

56) speardane: Pass
	speardane: Good game. :)

57) eliscinsky: Sacrifice R2 Speardane
Attack G2 Speardane
Attack G1 Speardane

	eliscinsky: Thanks, agreed GG!


35791)
Started: 2019.12.14, Ended: 2020.2.12
Participants: Draw5PlayAll (S), goulo (N)
Winner: Draw5PlayAll

1) goulo: Homeworld R3 B2 G3

2) Draw5PlayAll: Homeworld B3 R1 G3
	goulo: hi, have fun; for the tournament!
	Draw5PlayAll: Yep. Filled out the form.

3) goulo: Build G1 Goulo

4) Draw5PlayAll: Build G1 Draw5playall

5) goulo: Trade G1 Y1 Goulo

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) goulo: Build G1 Goulo

8) Draw5PlayAll: Build G1 Draw5playall

9) goulo: Trade G1 B1 Goulo

10) Draw5PlayAll: Trade G1 B1 Draw5playall

11) goulo: Build G1 Goulo

12) Draw5PlayAll: Build G1 Draw5playall

13) goulo: Trade G1 R1 Goulo

14) Draw5PlayAll: Trade G1 R1 Draw5playall

15) goulo: Build R2 Goulo

16) Draw5PlayAll: Build R2 Draw5playall

17) goulo: Trade R1 G1 Goulo

18) Draw5PlayAll: Discover R2 Draw5playall G2 Build

19) goulo: Discover R2 Goulo G1 Verdeto

20) Draw5PlayAll: Move B1 Draw5playall Build

21) goulo: Move B1 Goulo Verdeto

22) Draw5PlayAll: Discover R1 Draw5playall G2 Construct

23) goulo: Build Y1 Goulo

24) Draw5PlayAll: Build Y2 Draw5playall

25) goulo: Move Y1 Goulo Verdeto

26) Draw5PlayAll: Move Y2 Draw5playall Construct

27) goulo: Build Y2 Verdeto

28) Draw5PlayAll: Build G1 Draw5playall

29) goulo: Sacrifice G3 Goulo
Build G2 Goulo
Build G3 Goulo
Build R1 Verdeto

30) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Draw5playall
Build B1 Build

31) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build Y2 Goulo
Build Y3 Goulo
	Draw5PlayAll: We both teeter on the edge of danger

32) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Construct
Build Y3 Draw5playall
Build R2 Construct
	goulo: heh, yeah, that's a lot of ships in this universe! like a roomful of mousetraps all set...
	Draw5PlayAll: I have 3 greens in my HW in another game too.

33) goulo: Sacrifice Y2 Goulo
Move Y3 Goulo Verdeto
Move Y3 Verdeto Build

34) Draw5PlayAll: Sacrifice Y2 Construct
Discover R2 Build G3 Create
Move B1 Build Create

35) goulo: Build Y2 Build
	Draw5PlayAll: I'm out of green system names.

36) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move G1 Draw5playall Build
Move G1 Build Verdeto
Move G1 Verdeto Goulo
Catastrophe Goulo Green

37) goulo: Sacrifice Y2 Verdeto
Move Y3 Build Verdeto
Move Y3 Verdeto Goulo

38) Draw5PlayAll: Build R3 Create
	goulo: Hmm, not sure how I overlooked that. A costly blunder!...

39) goulo: Trade Y1 G1 Goulo

40) Draw5PlayAll: Trade R2 Y2 Create

41) goulo: Move R1 Verdeto Build

42) Draw5PlayAll: Build G1 Draw5playall

43) goulo: Attack B1 Build

44) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y1 Construct
Build Y2 Create
Build Y3 Draw5playall

45) goulo: Build B2 Build

46) Draw5PlayAll: Move Y3 Construct Verdeto

47) goulo: Discover R2 Verdeto G2 Verdo

48) Draw5PlayAll: Build G3 Draw5playall

49) goulo: Build G3 Goulo

50) Draw5PlayAll: Move Y3 Draw5playall Build

51) goulo: Sacrifice Y2 Build
Move B1 Build Draw5playall
Move B2 Build Draw5playall
	Draw5PlayAll: Resistance is futile.

52) Draw5PlayAll: Sacrifice R1 Construct
Attack R1 Build

53) goulo: Sacrifice G1 Goulo
Build B2 Draw5playall
Catastrophe Draw5playall B
	Draw5PlayAll: That was a little shocking...

54) Draw5PlayAll: Move Y3 Verdeto Verdo
	goulo: desperate times, desperate measures, and all that jazz.

55) goulo: Build G1 Goulo

56) Draw5PlayAll: Move G1 Draw5playall Goulo

57) goulo: Attack G1 Goulo

58) Draw5PlayAll: Sacrifice R1 Build
Attack R2 Verdo

59) goulo: Discover B1 Verdeto Y2 Flavo
	Draw5PlayAll: Actually pulling off a win has never been among my strengths...

60) Draw5PlayAll: Move R2 Verdo Verdeto

61) goulo: Discover Y1 Verdeto B2 Bluo

62) Draw5PlayAll: Build B1 Create

63) goulo: Trade B1 R1 Flavo

64) Draw5PlayAll: Move B1 Create Verdeto

65) goulo: Trade G1 R1 Goulo

66) Draw5PlayAll: Sacrifice Y3 Verdo
Move Y3 Build Draw5playall
Move Y3 Draw5playall Goulo
Move G3 Draw5playall Goulo

67) goulo: Sacrifice G3 Goulo
Build Y3 Goulo
Build R2 Goulo
Build R3 Flavo

68) Draw5PlayAll: Sacrifice R3 Create
Attack Y3 Goulo
Attack Y3 Goulo
Attack R2 Goulo
	Draw5PlayAll: Preparation is irrelevant.

69) goulo: Move R3 Flavo Draw5playall

70) Draw5PlayAll: Sacrifice R2 Construct
Attack R1 Goulo
Attack G1 Goulo

	Draw5PlayAll: Wow, that was a really close ending! Good game.
	goulo: thanks and congrats!


35789)
Started: 2019.12.15, Ended: 2020.2.11
Participants: eliscinsky (S), Laurie_Menke (N)
Winner: eliscinsky

1) Laurie_Menke: Homeworld Y1 B2 G3
	Laurie_Menke: Hi! Thanks for the challenge! For the record, this is for the Great Homeworlds Tournament of 2019. I'm going to fill out the start form now.  Have fun!  :)

2) eliscinsky: Homeworld R1 B3 G3

3) Laurie_Menke: Build G1 Laurie_menke
	eliscinsky: Agreed. Looking forward to our rematch.  Have Fun!

4) eliscinsky: Build G1 Eliscinsky

5) Laurie_Menke: Trade G1 R1 Laurie_menke
	Laurie_Menke: Sorry for the time out, Eric. The holidays kept me busier than expected! I'll try to play a lot in the next few days to make up for it if you're available!  :)

6) eliscinsky: Trade G1 Y1 Eliscinsky
	eliscinsky: NP, just glad it didn't auto enforce your resignation. :) I'll be at the computer a couple times a day over the next week. So play at whatever pace suites you. No worries!

7) Laurie_Menke: Build R1 Laurie_menke
	Laurie_Menke: Thanks!

8) eliscinsky: Build Y1 Eliscinsky
	eliscinsky: Oh shit. I had this problem in one of my previous games.

9) Laurie_Menke: Build R2 Laurie_menke
	Laurie_Menke: You mean a red freeze out? Yeah... I'm practicing getting good at these. Lucky for you, I'm not good at them yet.  ;)

10) eliscinsky: Build Y2 Eliscinsky

11) Laurie_Menke: Trade R2 Y2 Laurie_menke
	eliscinsky: Only time will tell :P

12) eliscinsky: Trade Y2 R2 Eliscinsky

13) Laurie_Menke: Build Y2 Laurie_menke

14) eliscinsky: Build R2 Eliscinsky

15) Laurie_Menke: Trade Y2 B2 Laurie_menke

16) eliscinsky: Trade R2 B2 Eliscinsky

17) Laurie_Menke: Build Y2 Laurie_menke

18) eliscinsky: Build Y2 Eliscinsky

19) Laurie_Menke: Discover Y2 Laurie_menke G3 Green

20) eliscinsky: Discover Y1 Eliscinsky G2 Earth2

21) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow

22) eliscinsky: Build Y3 Earth2

23) Laurie_Menke: Discover B2 Laurie_menke Y3 Sunshine

24) eliscinsky: Sacrifice Y3 Earth2
Move Y1 Eliscinsky Earth2
Move Y1 Earth2 Green
Move Y1 Green Laurie_menke

25) Laurie_Menke: Move Y2 Laurie_menke Green

26) eliscinsky: Build Y3 Earth2

27) Laurie_Menke: Build R2 Laurie_menke

28) eliscinsky: Move Y3 Earth2 Green

29) Laurie_Menke: Move Y2 Green Earth2

30) eliscinsky: Sacrifice R2 Eliscinsky
Attack Y2 Green
Attack R1 Laurie_menke

31) Laurie_Menke: Attack R1 Laurie_menke

32) eliscinsky: Discover B2 Eliscinsky G2 G2b

33) Laurie_Menke: Build G1 Laurie_menke

34) eliscinsky: Build G1 Eliscinsky

35) Laurie_Menke: Attack Y1 Laurie_menke

36) eliscinsky: Build B1 G2b

37) Laurie_Menke: Move Y1 Laurie_menke Green

38) eliscinsky: Move Y3 Green G2b

39) Laurie_Menke: Sacrifice R1 Laurie_menke
Attack Y1 Earth2

40) eliscinsky: Trade B2 R2 G2b

41) Laurie_Menke: Trade B2 G2 Sunshine

42) eliscinsky: Build B1 G2b

43) Laurie_Menke: Sacrifice G2 Sunshine
Build R1 Yellow
Build Y3 Green
	Laurie_Menke: I'm back... sorry for the delay and thanks for your patience!  :)
	Laurie_Menke: Actually, I guess I'm not. For some reason SDG is not showing me the current game state. Will try again later...

44) eliscinsky: Trade B1 G1 G2b
	Laurie_Menke: Sorry that took so long...

45) Laurie_Menke: Sacrifice R1 Yellow
Attack Y2 Green

46) eliscinsky: Move Y3 G2b Green
Catastrophe Green Y

47) Laurie_Menke: Sacrifice G3 Laurie_menke
Build G2 Laurie_menke
Build G3 Laurie_menke
Build Y1 Earth2

48) eliscinsky: Move Y2 Eliscinsky Earth2
Catastrophe Earth2 Y

49) Laurie_Menke: Move G2 Laurie_menke Yellow

50) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 G2b
Build G3 Eliscinsky
Build G3 Eliscinsky

51) Laurie_Menke: Move G2 Yellow G2b
Catastrophe G2b G

52) eliscinsky: Trade G3 Y3 Eliscinsky

53) Laurie_Menke: Build R1 Laurie_menke

54) eliscinsky: Discover Y3 Eliscinsky R2 Romulus

55) Laurie_Menke: Sacrifice G3 Laurie_menke
Build R2 Yellow
Build R3 Yellow
Build R3 Laurie_menke

56) eliscinsky: Trade G1 Y1 Eliscinsky

57) Laurie_Menke: Discover R2 Yellow G2 Green

58) eliscinsky: Build Y1 Eliscinsky

59) Laurie_Menke: Build R3 Green

60) eliscinsky: Build G1 Eliscinsky

61) Laurie_Menke: Trade R3 Y3 Laurie_menke

62) eliscinsky: Build Y2 Eliscinsky

63) Laurie_Menke: Trade R1 B1 Laurie_menke

64) eliscinsky: Trade Y2 B2 Eliscinsky

65) Laurie_Menke: Build Y2 Laurie_menke

66) eliscinsky: Sacrifice Y3 Romulus
Move Y1 Eliscinsky Green
Move Y1 Green Yellow
Move Y1 Yellow Laurie_menke
Catastrophe Laurie_menke Y

67) Laurie_Menke: Move R3 Yellow Laurie_menke

68) eliscinsky: Build B1 Eliscinsky
	Laurie_Menke: Huh... didn't see that coming!

69) Laurie_Menke: Trade R2 Y2 Laurie_menke

70) eliscinsky: Move B1 Eliscinsky Laurie_menke

71) Laurie_Menke: Move B1 Laurie_menke Eliscinsky

72) eliscinsky: Sacrifice G3 Eliscinsky
Build G1 Eliscinsky
Build B1 Laurie_menke
Build B2 Laurie_menke
Catastrophe Laurie_menke B
	Laurie_Menke: Oops. I miscalculated. Well played, Eric! Congrats on the win, and thanks for the fun!  :)

	eliscinsky: TY, it was fun, but too short. ;) Looking forward to our future games. 


35798)
Started: 2019.12.15, Ended: 2019.12.15
Participants: Koper (S), Janlucasz (N)
Winner: Koper

1) Janlucasz: Homeworld B3 R1 G3
	Koper: homeworld B3 R1 G3
	Janlucasz: homeworld B3 R1 G3

2) Koper: Homeworld G2 Y2 B3 *

3) Janlucasz: Build G1 Janlucasz

4) Koper: Build B1 Koper

5) Janlucasz: Pass

6) Koper: Move B3 Koper Janlucasz

7) Janlucasz: Pass

8) Koper: Attack G3 Janlucasz



35799)
Started: 2019.12.16, Ended: 2020.2.25
Participants: Simon (S), ts52 (N)
Winner: Simon

1) ts52: Homeworld Y1 B2 G3
	Simon: Hi! This is for the Great Homeworlds Tournament 2019. Have fun!
	ts52: Thanks! Agreed this is for the tournament. Have a good game!

2) Simon: Homeworld R1 B3 G3

3) ts52: Build G1 Ts52

4) Simon: Build G1 Simon

5) ts52: Trade G1 Y1 Ts52

6) Simon: Trade G1 Y1 Simon

7) ts52: Build Y2 Ts52

8) Simon: Build Y2 Simon

9) ts52: Build G1 Ts52

10) Simon: Discover Y1 Simon B2 B2

11) ts52: Discover Y2 Ts52 G3 Kermit

12) Simon: Sacrifice G3 Simon
Build Y2 B2
Build Y3 B2
Build Y3 Simon

13) ts52: Build Y3 Kermit

14) Simon: Trade Y2 R2 B2

15) ts52: Trade G1 R1 Ts52

16) Simon: Trade Y3 G3 B2

17) ts52: Discover Y2 Kermit B2 Gonzo

18) Simon: Discover Y2 Simon G2 G2

19) ts52: Build G1 Ts52

20) Simon: Build G1 B2

21) ts52: Trade G1 B1 Ts52

22) Simon: Trade G1 B1 B2

23) ts52: Move B1 Ts52 Kermit

24) Simon: Build G1 B2

25) ts52: Build G1 Ts52

26) Simon: Discover B1 B2 R3 R3

27) ts52: Move Y2 Gonzo R3

28) Simon: Move G3 B2 R3

29) ts52: Discover Y2 R3 G2 Robin

30) Simon: Sacrifice G3 R3
Build Y2 G2
Build Y3 B2
Build G1 B2

31) ts52: Build B1 Kermit

32) Simon: Build G2 B2

33) ts52: Discover G1 Ts52 B3 Gonzo

34) Simon: Move G2 B2 Gonzo

35) ts52: Build G3 Gonzo

36) Simon: Move G1 B2 Gonzo
Catastrophe Gonzo Green

37) ts52: Build G1 Ts52

38) Simon: Build G1 B2

39) ts52: Move Y1 Ts52 Kermit

40) Simon: Build G2 B2

41) ts52: Discover G1 Ts52 B3 Gonzo

42) Simon: Move G1 B2 Gonzo

43) ts52: Trade G1 R1 Gonzo

44) Simon: Sacrifice G2 B2
Build G1 B2
Build G2 Gonzo

45) ts52: Attack G1 Gonzo

46) Simon: Build G3 Gonzo

47) ts52: Sacrifice Y2 Robin
Discover R1 Gonzo G2 Robin
Move B1 Kermit Robin

48) Simon: Sacrifice G3 Gonzo
Build G3 Gonzo
Build Y2 Simon
Build R2 B2

49) ts52: Sacrifice G3 Ts52
Build G3 Gonzo
Build R2 Robin
Build R3 Ts52
Catastrophe Gonzo Green

50) Simon: Discover R2 B2 G3 G3

51) ts52: Trade R3 G3 Ts52

52) Simon: Build R3 G3

53) ts52: Build R3 Ts52

54) Simon: Sacrifice Y1 B2
Move R3 G3 Robin

55) ts52: Move R3 Ts52 G3

56) Simon: Sacrifice R2 G3
Attack R2 Robin
Attack R1 Robin
	Simon: I've moved to a different town and have no internet. I hope it's back soon. In a pinch, I'll move at least one at the upcoming weekend!
	ts52: No worries. Move when you can. Thanks for the heads up.

57) ts52: Build R2 Ts52

58) Simon: Build Y1 B2
	Simon: All right, internet is back!

59) ts52: Sacrifice Y1 Kermit
Move R3 G3 G2

60) Simon: Sacrifice Y2 G2
Discover R2 Robin G3 G3
Move Y2 G2 G3

61) ts52: Move R2 Ts52 Kermit

62) Simon: Attack B1 Robin

63) ts52: Build Y1 Kermit

64) Simon: Build Y2 G3

65) ts52: Move Y1 Kermit G2

66) Simon: Build B2 Robin

67) ts52: Build B3 Kermit

68) Simon: Sacrifice G1 B2
Build B3 R3

69) ts52: Move R3 G2 G3

70) Simon: Sacrifice Y2 G3
Move Y2 G3 Robin
Move R2 G3 G2

71) ts52: M Y1 G2 G3

72) Simon: Build Y2 Robin

73) ts52: Move R3 G3 G2

74) Simon: Move Y2 Robin R3

75) ts52: Attack R2 G2

76) Simon: Move B3 R3 Ts52

77) ts52: Attack B3 Ts52

78) Simon: Sacrifice Y3 B2
Move B1 Robin R3
Move B1 R3 Ts52
Move B1 R3 Ts52
Catastrophe Ts52 Blue

79) ts52: Build Y3 G3

80) Simon: Sacrifice Y3 Simon
Move Y1 B2 Ts52
Move Y2 R3 Ts52
Move Y2 Robin Ts52
Catastrophe Ts52 Yellow

	ts52: Good game. Well played.
	Simon: gg! Thanks for the game.


35805)
Variants: "Hard time"
Started: 2019.12.16, Ended: 2020.1.14
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) dlwillson: H R3 B1 G3

3) Trydnt: Build G1 Trydnt
	dlwillson: OK. One each. Let's see who gets this one! :-)

Good luck and have fun!
	Trydnt: good luck to you too! should be a good one

4) dlwillson: B G1 Dlwillson

5) Trydnt: Trade G1 B1 Trydnt

6) dlwillson: T G1 B1 Dlwillson

7) Trydnt: Build B2 Trydnt

8) dlwillson: B B2 Dlwillson

9) Trydnt: Discover B2 Trydnt G3 G3

10) dlwillson: T B2 Y2 Dlwillson

11) Trydnt: Trade B2 Y2 G3

12) dlwillson: B Y1 Dlwillson

13) Trydnt: Build B2 Trydnt

14) dlwillson: B B2 Dlwillson

15) Trydnt: Move B1 Trydnt G3

16) dlwillson: D B1 Dlwillson G2 Field

17) Trydnt: Build B3 G3

18) dlwillson: B B3 Field

19) Trydnt: Discover B1 G3 G2 G2

20) dlwillson: T B3 R3 Field

21) Trydnt: Trade B2 R2 Trydnt

22) dlwillson: M Y1 Dlwillson G2

23) Trydnt: Build B2 G2

24) dlwillson: D B2 Dlwillson G2 Alsofield

25) Trydnt: Trade B2 R2 G2

26) dlwillson: D Y1 G2 B3 Sky

27) Trydnt: Move B3 G3 Alsofield

28) dlwillson: B B2 Alsofield

29) Trydnt: Build B3 G2

30) dlwillson: Sacrifice Y2 Dlwillson
Discover B2 Alsofield Y3 Sol
Discover B2 Alsofield Y3 Alsosol

31) Trydnt: Build Y1 G3

32) dlwillson: B G1 Dlwillson

33) Trydnt: Build Y2 G3

34) dlwillson: T Y1 G1 Sky

35) Trydnt: Sacrifice Y2 G3
Move R2 G2 Sky
Move B3 G2 Sol

36) dlwillson: S G3 Dlwillson
B G1 Sky
B R1 Field
B G3 Dlwillson

37) Trydnt: Attack G1 Sky

38) dlwillson: T R1 Y1 Field

39) Trydnt: Move Y2 G3 Alsofield

40) dlwillson: M B2 Sol G2

41) Trydnt: Build R1 Sky

42) dlwillson: B Y2 Field

43) Trydnt: Sacrifice G1 Sky
Build G1 Trydnt

	dlwillson: Sorry for the lame-out, but I'm just not coming up with anything worth doing for several moves now. No sense dragging it out.
	Trydnt: no worries, no sense in a slow and painful forgone conclusion I understand, guess we gotta start another!


35452)
Started: 2019.12.19, Ended: 2020.1.23
Participants: Felix (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 R1 G3

2) Felix: H B1 Y2 G3

3) Trydnt: Build G1 Trydnt
	Trydnt: For the tournament

4) Felix: Build G1 Felix

5) Trydnt: Build G1 Trydnt
	Felix: Agreed! Sorry for the delay.
	Trydnt: no worries it's a busy time of year

6) Felix: Build G2 Felix

7) Trydnt: Trade G1 Y1 Trydnt

8) Felix: Trade G1 B1 Felix

9) Trydnt: Trade G1 B1 Trydnt

10) Felix: Build B2 Felix

11) Trydnt: Build B2 Trydnt

12) Felix: Discover B2 Felix G3 Out

13) Trydnt: Discover B2 Trydnt Y3 Y3

14) Felix: Build B3 Out

15) Trydnt: Sacrifice G3 Trydnt
Build B3 Y3
Build B3 Trydnt
Build Y1 Trydnt

16) Felix: Trade B3 Y3 Out

17) Trydnt: Sacrifice B1 Trydnt
Trade B2 R2 Y3

18) Felix: Trade G2 R2 Felix

19) Trydnt: Trade B3 G3 Trydnt

20) Felix: Build B1 Out

21) Trydnt: Build G1 Trydnt

22) Felix: Build G1 Felix

23) Trydnt: Move G1 Trydnt Y3

24) Felix: Discover G1 Felix B3 Cap

25) Trydnt: Build R1 Y3

26) Felix: Trade B2 R2 Out

27) Trydnt: Build B2 Y3

28) Felix: Build B2 Out

29) Trydnt: Move B3 Y3 Felix

30) Felix: Attack B3 Felix

31) Trydnt: Move B2 Y3 Felix
Catastrophe Felix B

32) Felix: Move B1 Out Felix

33) Trydnt: Discover Y1 Trydnt B3 B3

34) Felix: Build Y1 Out

35) Trydnt: Build Y2 Trydnt

36) Felix: Move R2 Felix B3

37) Trydnt: Discover Y1 B3 G1 G1

38) Felix: Move Y3 Out G1
	Felix: I'm in big trouble!

39) Trydnt: Build G2 Y3

40) Felix: Build Y2 Out

41) Trydnt: Move Y2 Trydnt Cap

42) Felix: Discover Y3 G1 Y3 Keepaway

43) Trydnt: Sacrifice R1 Y3
Attack G1 Cap

44) Felix: Build G2 Felix

45) Trydnt: Sacrifice Y2 Cap
Move G1 Cap Felix
Move G1 Y3 Felix
Catastrophe Felix G

46) Felix: Move Y3 Keepaway Felix

47) Trydnt: Sacrifice G2 Y3
Build Y2 G1
Build Y3 Trydnt

48) Felix: Trade Y3 G3 Felix

49) Trydnt: Sacrifice Y3 Trydnt
Move Y1 G1 Felix
Move Y1 Trydnt Out
Move Y1 Out Felix

	Felix: Good game!
	Trydnt: Not gonna lie, I thought I was toast after your opening move. That was one of the hardest fought games I've ever played! Look forward to the next one


35809)
Started: 2019.12.20, Ended: 2020.1.25
Participants: Trydnt (S), Draw5PlayAll (N)
Winner: Trydnt

1) Draw5PlayAll: Homeworld B3 R1 G3

2) Trydnt: Homeworld Y3 B2 G3
	Draw5PlayAll: Hello. This game is for the tournament. Good luck

3) Draw5PlayAll: Build G1 Draw5playall

4) Trydnt: Build G1 Trydnt

5) Draw5PlayAll: Trade G1 R1 Draw5playall

6) Trydnt: Trade G1 R1 Trydnt

7) Draw5PlayAll: Build R2 Draw5playall

8) Trydnt: Build R2 Trydnt

9) Draw5PlayAll: Trade R2 Y2 Draw5playall

10) Trydnt: Trade R2 Y2 Trydnt

11) Draw5PlayAll: Build R2 Draw5playall

12) Trydnt: Build R2 Trydnt

13) Draw5PlayAll: Trade R2 B2 Draw5playall

14) Trydnt: Trade R1 B1 Trydnt

15) Draw5PlayAll: Discover B2 Draw5playall G2 Construct

16) Trydnt: Discover B1 Trydnt G1 G1

17) Draw5PlayAll: Build B1 Construct

18) Trydnt: Move Y2 Trydnt G1

19) Draw5PlayAll: Move R1 Draw5playall Construct

20) Trydnt: Build B1 G1

21) Draw5PlayAll: Build Y1 Draw5playall

22) Trydnt: Build G1 Trydnt

23) Draw5PlayAll: Move Y2 Draw5playall Construct

24) Trydnt: Build Y1 G1

25) Draw5PlayAll: Discover B2 Construct G1 Build

26) Trydnt: Discover B1 G1 G2 G2

27) Draw5PlayAll: Build Y1 Construct

28) Trydnt: Build B2 G1

29) Draw5PlayAll: Build B3 Construct

30) Trydnt: Build B3 G2

31) Draw5PlayAll: Trade B3 R3 Construct

32) Trydnt: Trade B2 R2 G1

33) Draw5PlayAll: Build G2 Draw5playall

34) Trydnt: Build G3 Trydnt

35) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build B2 Construct
Build B3 Build

36) Trydnt: Trade B3 Y3 G2

37) Draw5PlayAll: Sacrifice B2 Construct
Trade B3 Y3 Build
Pass
	Draw5PlayAll: I have 2 other games where one side or the other (or both) has 3 greens in their homeworld. What is going on?!

38) Trydnt: Sacrifice G3 Trydnt
Build Y2 G2
Build R1 G1
Build G3 Trydnt

39) Draw5PlayAll: Sacrifice Y3 Build
Move G2 Draw5playall G2
Move G2 G2 Build
Move G2 Build Trydnt
Catastrophe Trydnt Green

40) Trydnt: Sacrifice Y2 G2
Move R1 G1 Construct
Move R2 G1 Construct
Catastrophe Construct R

41) Draw5PlayAll: Trade Y1 R1 Construct

42) Trydnt: Trade Y2 G2 G1

43) Draw5PlayAll: Build G1 Draw5playall

44) Trydnt: Move G2 G1 Trydnt

45) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build G3 Draw5playall
Build B2 Build
	Trydnt: I can't believe I missed that, well played

46) Trydnt: Build G3 Trydnt

47) Draw5PlayAll: Sacrifice G1 Draw5playall
Build B3 Construct

48) Trydnt: Build B3 G1

49) Draw5PlayAll: Trade B2 Y2 Build

50) Trydnt: Trade B3 Y3 G1

51) Draw5PlayAll: Trade G3 R3 Draw5playall
	Draw5PlayAll: Let's see if this gamble pays off.

52) Trydnt: Sacrifice G2 Trydnt
Build B2 G1
Build B3 G2
	Trydnt: well played, this mistake is still making me pay :S

53) Draw5PlayAll: Sacrifice Y2 Construct
Move R3 Draw5playall Construct
Move R3 Construct Build

54) Trydnt: Trade B1 R1 G1

55) Draw5PlayAll: Trade B1 Y1 Construct

56) Trydnt: Build R2 Trydnt

57) Draw5PlayAll: Build B1 Build

58) Trydnt: Move B3 G2 Draw5playall

59) Draw5PlayAll: Attack B3 Draw5playall

60) Trydnt: Sacrifice Y3 G2
Move B2 G1 G2
Move B1 G2 Draw5playall
Move B2 G2 Draw5playall
Catastrophe Draw5playall B

	Draw5PlayAll: Well, I thought I was putting up a bigger fight. Oh well.
	Trydnt: Well played. Once I had the second big yellow it was never gonna be easy to stop me from constructing the doomsday machine


35814)
Started: 2019.12.21, Ended: 2020.1.10
Participants: eliscinsky (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3
	ts52: This is for the 2019 Great Homeworlds Tournament

2) eliscinsky: Homeworld B1 R2 G3
	ts52: Have a good game!
	eliscinsky: Agreed! Cheers!

3) ts52: Build G1 Ts52
	eliscinsky: Should be a interesting game?
	ts52: Oh boy....

4) eliscinsky: Build G1 Eliscinsky

5) ts52: Trade G1 Y1 Ts52

6) eliscinsky: T G1 Y1 Eliscinsky

7) ts52: Build Y2 Ts52

8) eliscinsky: Build Y2 Eliscinsky

9) ts52: Trade Y2 R2 Ts52

10) eliscinsky: Trade Y2 R2 Eliscinsky

11) ts52: Build Y2 Ts52
	eliscinsky: Mirror, mirror.

12) eliscinsky: Build Y2 Eliscinsky

13) ts52: Discover Y2 Ts52 G3 Kermit

14) eliscinsky: Trade Y2 B2 Eliscinsky

15) ts52: Build Y2 Ts52

16) eliscinsky: Build Y2 Eliscinsky

17) ts52: Trade Y2 B2 Ts52

18) eliscinsky: Build G1 Eliscinsky

19) ts52: Build G1 Ts52

20) eliscinsky: Discover B2 Eliscinsky R3 Mars

21) ts52: Move B2 Ts52 Kermit

22) eliscinsky: Move Y2 Eliscinsky Mars

23) ts52: Build B1 Kermit

24) eliscinsky: Move G1 Eliscinsky Mars

25) ts52: Build R1 Ts52

26) eliscinsky: Build Y2 Eliscinsky

27) ts52: Build Y3 Kermit

28) eliscinsky: Build Y3 Mars

29) ts52: Discover Y1 Ts52 Y3 Bigbird
	eliscinsky: I see a bad moon rising.
I see trouble on the way!

I see some interesting moves coming. ;)

30) eliscinsky: Build G1 Mars

31) ts52: Move G1 Ts52 Bigbird

32) eliscinsky: Sacrifice Y3 Mars
Move G1 Mars Ts52
Move G1 Mars Ts52
Move Y2 Mars Ts52

33) ts52: Attack Y2 Ts52

34) eliscinsky: Build G2 Ts52
Catastrophe Ts52 Green

35) ts52: Sacrifice B2 Kermit
Trade Y1 R1 Bigbird
Trade B1 R1 Kermit

36) eliscinsky: Discover R2 Eliscinsky G3 Earth

37) ts52: Trade R1 G1 Ts52

38) eliscinsky: Move Y2 Eliscinsky Earth

39) ts52: Build R1 Bigbird

40) eliscinsky: Build R3 Earth

41) ts52: Build R3 Ts52
	eliscinsky: So exciting!!!

42) eliscinsky: Sacrifice Y2 Earth
Move R2 Earth Ts52
Move R3 Earth Ts52
Catastrophe Ts52 Red

43) ts52: Build R2 Bigbird

44) eliscinsky: Trade B2 R2 Mars

45) ts52: Build R3 Kermit

46) eliscinsky: Sacrifice Y1 Eliscinsky
Move R2 Mars Ts52

47) ts52: Sacrifice R1 Bigbird
Attack R2 Ts52
	eliscinsky: Damn, I fear I've fell for this setup before.  Well played.

48) eliscinsky: Build G1 Eliscinsky
	eliscinsky: Back to the drawing board.
Come full circle.
LOL

49) ts52: Move R1 Bigbird Eliscinsky

50) eliscinsky: Attack R1 Eliscinsky
	eliscinsky: Okay I would have expected you to ...
s y2 kermit
m r3 kermit eliscinsky
m y3 kermit eliscinsky
then after a feeble move on my part, maybe ... a r3 eliscinsky
you would ...
s r2 bigbird
a y3 eliscinsky
a g3 eliscinsky 
then pretty much game over.

But we'll play this out.


51) ts52: Sacrifice Y3 Kermit
Move R1 Kermit Eliscinsky
Move R2 Bigbird Eliscinsky
Catastrophe Eliscinsky R
Move R3 Kermit Eliscinsky
	ts52: Yeah, that would probably work too. This is where my mind went.

52) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Eliscinsky
Build G2 Eliscinsky
Build G2 Eliscinsky
	eliscinsky: That works too.
End in sight!  Dying slowly!!
LOL.  
Good Game!  Thanks!

53) ts52: Catastrophe Eliscinsky G
Pass
	eliscinsky: The universal energies are building to critical mass ...
	ts52: Thanks for the game. You really had me worried when you nuked the large from my homeworld.



35813)
Started: 2019.12.26, Ended: 2020.2.7
Participants: DodoBirb (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld R1 B3 G3
	DodoBirb: Good Luck! Just note I will be a bit slow making moves until I get back from my holiday which should be in another week

2) DodoBirb: Homeworld B1 R2 G3
	eliscinsky: This is for the Great Homeworlds Tournament 2019.
No worries, take your time.  I'll be on & off the computer as well for the next week.
Have a great holiday!
	eliscinsky: Oh, and GL 2 U 2!

3) eliscinsky: Build G1 Eliscinsky

4) DodoBirb: Build G1 Dodobirb

5) eliscinsky: Trade G1 Y1 Eliscinsky

6) DodoBirb: Trade G1 Y1 Dodobirb

7) eliscinsky: Build G1 Eliscinsky

8) DodoBirb: Build G1 Dodobirb

9) eliscinsky: Trade G1 B1 Eliscinsky

10) DodoBirb: Trade G1 B1 Dodobirb

11) eliscinsky: Build G1 Eliscinsky

12) DodoBirb: Build G1 Dodobirb

13) eliscinsky: Trade G1 R1 Eliscinsky

14) DodoBirb: Trade G1 R1 Dodobirb

15) eliscinsky: Build G1 Eliscinsky
	DodoBirb: ok, I'm finally back to being able to do more frequent moves
	eliscinsky: NP, Whatever works for ya. I'm sure we'll both slow up soon anyway. lol ;)

16) DodoBirb: Build G1 Dodobirb

17) eliscinsky: Build R2 Eliscinsky

18) DodoBirb: Build B2 Dodobirb

19) eliscinsky: Build B2 Eliscinsky

20) DodoBirb: Discover B2 Dodobirb G3 Greeny

21) eliscinsky: Discover B2 Eliscinsky G2 G2a

22) DodoBirb: Move R1 Dodobirb Greeny

23) eliscinsky: Move R2 Eliscinsky G2a

24) DodoBirb: Build Y1 Dodobirb

25) eliscinsky: Build Y2 Eliscinsky

26) DodoBirb: Build Y2 Dodobirb

27) eliscinsky: Move Y2 Eliscinsky G2a

28) DodoBirb: Move Y2 Dodobirb Greeny

29) eliscinsky: Move G1 Eliscinsky G2a

30) DodoBirb: Move G1 Dodobirb Greeny

31) eliscinsky: Sacrifice Y2 G2a
Discover B1 Eliscinsky G2 G2b
Move R1 Eliscinsky G2b

32) DodoBirb: Build G1 Dodobirb

33) eliscinsky: Build G2 Eliscinsky

34) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build B2 Dodobirb
Build B3 Greeny

35) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build B3 G2a
Build Y2 Eliscinsky

36) DodoBirb: Sacrifice Y2 Greeny
Discover B2 Greeny Y2 Yellowy
Discover B1 Dodobirb Y3 Sun

37) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build R2 G2b
Build R3 G2a

38) DodoBirb: Discover G1 Dodobirb R3 Reddy

39) eliscinsky: Sacrifice G2 Eliscinsky
Build G2 Eliscinsky
Build Y2 Eliscinsky


40) DodoBirb: Build Y3 Dodobirb

41) eliscinsky: Trade B3 Y3 G2a

42) DodoBirb: Sacrifice Y1 Dodobirb
Move B3 Greeny G2b

43) eliscinsky: Sacrifice Y2 Eliscinsky
Move Y3 G2a Sun
Move R3 G2a Sun

44) DodoBirb: Sacrifice R1 Greeny
Attack R2N G2b

45) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build B3 G2a
Build R1 G2b

46) DodoBirb: Sacrifice R2 G2b
Attack R1N G2b
Attack R1N G2b

47) eliscinsky: Attack B1 Sun

48) DodoBirb: Move B2 Dodobirb Greeny

49) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build Y1 Eliscinsky
Build R2 G2a

50) DodoBirb: Move Y1 Dodobirb Greeny

51) eliscinsky: Move Y1 Eliscinsky G2a

52) DodoBirb: Build Y2 Greeny

53) eliscinsky: Move R3 Sun Yellowy

54) DodoBirb: Move B2 Yellowy Greeny

55) eliscinsky: Sacrifice G2 Eliscinsky
Build G2 Eliscinsky
Build R3 Yellowy

56) DodoBirb: Move Y1 Greeny G2b

57) eliscinsky: Move R3 Yellowy Greeny

58) DodoBirb: Sacrifice Y2 Greeny
Move B2 Greeny G2a
Move B2 Greeny G2a
Catastrophe G2a B

59) eliscinsky: Sacrifice Y3 Sun
Move R3 Yellowy Greeny
Move R3 Greeny Dodobirb
Move R3 Greeny Dodobirb

60) DodoBirb: Attack R3N Dodobirb

61) eliscinsky: Sacrifice R2 G2a
Attack R3 Dodobirb
Attack G3 Dodobirb

62) DodoBirb: Attack R3N Dodobirb

63) eliscinsky: Sacrifice R2 G2a
Attack R3 Dodobirb
Attack Y3 Dodobirb



35834)
Variants: "Unrated"
Started: 2020.1.2, Ended: 2020.1.6
Participants: Donegal (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 Y1 G3
	Babamots: Hi Donegal! I don't remember seeing you around before. Are you brand new?

2) Donegal: Homeworld G3 Y1 B3

3) Babamots: Build G1 Babamots
	Donegal: Yes, it's my first game
	Babamots: I'm glad you're trying it out! This is pretty much my favorite game.

Let me know if you have any trouble with the commands or other questions. Anything you do to build more ships and diversify is fine for a couple of moves.

Since our homeworlds have the same size stars, it'll be a "small universe" game, which tends to be a little shorter.

4) Donegal: Build B1 Donegal

5) Babamots: Trade G1 Y1 Babamots
	Babamots: I'm afraid your choice of homeworld stars is about to put you in a bad position. It will be educational though. :-)

I hope you don't mind some heavy advice/teaching....

I'm going to trade my g1 for the last y1 piece. You won't be able to trade your b1 for y1, so you'll have to find another way to get yellow. Here are the choices I see:
1) wait until you get a medium ship of some other color and trade for a y2,
2) trade your b3 for y3 right away,
3) get locked out of yellow permanently (almost certainly fatal),

Option 1 probably won't work. By the time you get a medium blue, I may have used all of the y2 pieces. 

Option 2 works pretty well in most games (I do it all the time), but because it's a small universe, I can reach you more quickly. Here's a possible way for the game to go:

me:
trade g1 y1 Babamots
(I freeze you out of yellow)

you:
trade b3 y3 Donegal
(You get into the yellow economy in the only way you can)

me:
build y2 Babamots

you:
build y2 Donegal
(You need a second yellow ship if you're going to compete for the yellow pieces)

me:
sacrifice y2 Babamots
discover y1 Babamots g2 Whatever
move y1 Whatever Donegal
catastrophe Donegal y
(You lose a home star and your only large ship. There's no coming back from such an early, heavy loss)

BUT, instead of building the y2 in your homeworld, you could move you y3 to a new g2 system in order to build in a place where there isn't a yellow star to mess you up.

Long story short, I think you should trade b3 for y3 on this turn.

6) Donegal: Discover B1 Donegal B2 P1
	Donegal: Why cant i move if i have a yellow piramid?
	Babamots: I guess you tried to move to a new system? If you're moving to a new system, you have to use the "discover" command and specify the star type and name of the system you're moving to. For example, if you want to move your b1 to a brand new medium green system and give that system the name Billy, then the command is

discover b1 Donegal g2 Billy

Or, if you're asking why I was talking about yellow ships so much, it's because they're extremely important for sacrifices and making big attacks. It's almost impossible to win without a few yellow ships that are medium or bigger.

7) Babamots: Build Y2 Babamots

8) Donegal: Trade B1 R1 P1

9) Babamots: Discover Y2 Babamots R2 Romulus

10) Donegal: Build B1 Donegal
	Babamots: When I issued the challenge for this game, I forgot to ask the site to have me go second. I think the first move advantage should usually go to the newer player.

I think you should build ships at your home for a turn or two. I'm getting ahead on material.

It's worth noting that your red ship is a little stranded at that blue system: can't move, can't build.

11) Babamots: Sacrifice G3 Babamots
Build Y2 Romulus
Build Y2 Romulus
Build Y3 Babamots

12) Donegal: Move B3 Donegal Romulus

13) Babamots: Trade Y3 R3 Babamots
	Babamots: Good! You should pick on enemy systems that have lots of ships smaller than yours.

However, you have left your home without a large ship, 
Which is always dangerous. And without yellow power, I think I can now invade your home with a large red before you can defend (I'll sacrifice a y2 to move my r3 your home on my next turn). Major kudos to you if you can find a way to defend this! :-)

14) Donegal: Attack Y2N Romulus

15) Babamots: Sacrifice Y2 Romulus
Move R3 Babamots Romulus
Move R3 Romulus Donegal

	Babamots: I looked closer and you actually can defend this position. If you can't find it, let me know and I'll tell you.
	Babamots: I think maybe you didn't read my advice. Your position isn't as bad as it looks. Your good move is

sacrifice y2 Romulus
move r1 b1 Babamots
move b3 Romulus Donegal

I have to sacrifice my other y2 to retreat. Otherwise, you'll attack my only home ship and win.

Thanks for the game. I hope you learned a little and will want to play again. :-)


35710)
Variants: "Unrated"
Started: 2020.1.6, Ended: 2020.1.14
Participants: LanguiDude (S), wil (N)
Winner: LanguiDude



35847)
Variants: "Unrated"
Started: 2020.1.6, Ended: 2020.1.7
Participants: LanguiDude (S), Ercepeda (N)
Winner: Ercepeda

1) Ercepeda: Homeworld G3 B2 R3

2) LanguiDude: Homeworld B3 Y1 G3

3) Ercepeda: Build R1 Ercepeda

4) LanguiDude: Build G1 Languidude
	LanguiDude: build g1 languidude

5) Ercepeda: Trade R1 Y1 Ercepeda

6) LanguiDude: Discover G1 Languidude Y2 Atreides

7) Ercepeda: Build Y1 Ercepeda

8) LanguiDude: Build G1 Languidude

9) Ercepeda: Discover Y1 Ercepeda G1 Blerb

10) LanguiDude: Trade G1 B1 Languidude

11) Ercepeda: Build Y2 Blerb

12) LanguiDude: Build B1 Languidude

13) Ercepeda: Discover Y2 Blerb G2 Sup

14) LanguiDude: Trade B1 R1 Languidude

15) Ercepeda: Build Y2 Sup

16) LanguiDude: Move R1 Languidude Sup

17) Ercepeda: Build Y3 Ercepeda

18) LanguiDude: Build G1 Atreides

19) Ercepeda: Build Y3 Sup

20) LanguiDude: Build G2 Atreides

21) Ercepeda: Build Y3 Blerb

22) LanguiDude: Build B1 Languidude

23) Ercepeda: Move R3 Ercepeda Blerb

24) LanguiDude: Move B1 Languidude Atreides

25) Ercepeda: Move R3 Blerb Sup

26) LanguiDude: Trade B1 R1 Languidude

27) Ercepeda: Sacrifice Y3 Blerb
Move Y2 Sup Languidude
Move Y2 Sup Languidude
Move Y3 Sup Languidude
Catastrophe Languidude Y

28) LanguiDude: Discover G2 Atreides Y1 Carthag

29) Ercepeda: Trade Y1 R1 Ercepeda

30) LanguiDude: Build R2 Languidude

31) Ercepeda: Build R2 Ercepeda

32) LanguiDude: Build G2 Languidude

33) Ercepeda: Trade R1 B1 Ercepeda

34) LanguiDude: Sacrifice G3 Languidude
Build G3 Languidude
Build G3 Carthag
Build B1 Atreides

35) Ercepeda: Sacrifice Y1 Blerb
Move R3 Sup Carthag

36) LanguiDude: Move G3 Carthag Sup

37) Ercepeda: Attack G2 Carthag

38) LanguiDude: Trade R2 Y2 Languidude

39) Ercepeda: Move B1 Ercepeda Carthag

40) LanguiDude: Discover R1 Languidude Y1 Dagobah

41) Ercepeda: Build B2 Carthag

42) LanguiDude: Sacrifice Y2 Languidude
Move B1 Atreides Carthag
Move B1 Atreides Carthag
Catastrophe Carthag Blue

43) Ercepeda: Build G1 Carthag

44) LanguiDude: Trade G2 Y2 Languidude

45) Ercepeda: Build Y1 Ercepeda

46) LanguiDude: Build G2 Languidude

47) Ercepeda: Trade Y1 B1 Ercepeda

48) LanguiDude: Trade G2 R2 Languidude

49) Ercepeda: Move B1 Ercepeda Carthag

50) LanguiDude: Build G2 Languidude

51) Ercepeda: Sacrifice G2 Carthag
Build B1 Carthag
Build B1 Carthag



35845)
Started: 2020.1.6, Ended: 2020.1.6
Participants: Trydnt (S), T0NK5 (N)
Winner: Trydnt

1) T0NK5: Homeworld Y1 G2 B3

2) Trydnt: Homeworld B3 R2 G3

3) T0NK5: Build B1 T0nk5

4) Trydnt: Build G1 Trydnt

5) T0NK5: Trade B1 Y1 T0nk5

6) Trydnt: Trade G1 Y1 Trydnt

7) T0NK5: Build Y2 T0nk5

8) Trydnt: Build Y2 Trydnt

9) T0NK5: Discover Y2 T0nk5 G3 Arnold

10) Trydnt: Discover Y2 Trydnt G1 G1

11) T0NK5: Build B1 T0nk5

12) Trydnt: Sacrifice G3 Trydnt
Build Y2 Trydnt
Build Y3 Trydnt
Build Y3 G1

13) T0NK5: Build Y3 Arnold

14) Trydnt: Trade Y1 G1 Trydnt

15) T0NK5: Trade Y1 R1 T0nk5

16) Trydnt: Trade Y2 R2 Trydnt

17) T0NK5: Build B1 T0nk5

18) Trydnt: Build Y1 Trydnt

19) T0NK5: Move B1 T0nk5 Arnold

20) Trydnt: Discover Y1 Trydnt G1 Gee1

21) T0NK5: Build R1 T0nk5

22) Trydnt: Build G2 Trydnt

23) T0NK5: Build B1 Arnold

24) Trydnt: Discover Y2 G1 B3 B3

25) T0NK5: Build B2 Arnold

26) Trydnt: Build Y1 G1

27) T0NK5: Build B2 T0nk5

28) Trydnt: Sacrifice G2 Trydnt
Build G2 Trydnt
Build Y2 B3

29) T0NK5: Move B2 Arnold Gee1

30) Trydnt: Sacrifice Y2 B3
Move Y1 Gee1 Arnold
Move Y1 G1 Arnold
Catastrophe Arnold Y

31) T0NK5: Trade B2 Y2 Gee1

32) Trydnt: Sacrifice G2 Trydnt
Build G2 Trydnt
Build Y1 B3

33) T0NK5: Build B2 Arnold

34) Trydnt: Trade Y2 G2 B3

35) T0NK5: Trade B2 Y2 Arnold

36) Trydnt: Build G3 B3

37) T0NK5: Build B2 Arnold

38) Trydnt: Build G3 B3

39) T0NK5: Trade B2 R2 Arnold

40) Trydnt: Sacrifice G3 B3
Build Y1 B3
Build Y2 G1
Build Y3 Trydnt

41) T0NK5: Move B1 Arnold Gee1

42) Trydnt: Build G3 B3

43) T0NK5: Build B2 Gee1

44) Trydnt: Sacrifice Y3 Trydnt
Move G3 B3 T0nk5
Move G3 B3 T0nk5
Move G2 B3 T0nk5
Catastrophe T0nk5 G

45) T0NK5: Sacrifice Y2 Arnold
Move R1 T0nk5 Trydnt
Move R1 T0nk5 Trydnt
Catastrophe Trydnt R

46) Trydnt: Sacrifice Y3 G1
Move Y1 B3 T0nk5
Move Y1 B3 T0nk5
Move Y3 Trydnt T0nk5
Catastrophe T0nk5 Y

	Trydnt: well played my young padawan
	T0NK5: Good Job Handsome. I'll kick your butt soon enough!


35846)
Variants: "Unrated"
Started: 2020.1.6, Ended: 2020.3.31
Participants: Draw5PlayAll (S), LanguiDude (N)
Winner: Draw5PlayAll

1) LanguiDude: Homeworld Y3 B2 G3

2) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: Hello, good luck.

3) LanguiDude: Build G1 Languidude
	LanguiDude: Hey! Thanks! (I'm going to need it! :-)

4) Draw5PlayAll: Build G1 Draw5playall

5) LanguiDude: Discover G1 Languidude B1 Atreides

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) LanguiDude: Build G1 Atreides

8) Draw5PlayAll: Build R1 Draw5playall

9) LanguiDude: Trade G1 Y1 Atreides

10) Draw5PlayAll: Build G1 Draw5playall

11) LanguiDude: Build Y1 Atreides

12) Draw5PlayAll: Trade G1 Y1 Draw5playall

13) LanguiDude: Build G1 Languidude

14) Draw5PlayAll: Discover R1 Draw5playall G2 Build

15) LanguiDude: Discover G1 Atreides B3 Centaury

16) Draw5PlayAll: Build Y2 Draw5playall

17) LanguiDude: Trade Y1 B1 Atreides

18) Draw5PlayAll: Build R2 Build

19) LanguiDude: Trade G3 R3 Languidude

20) Draw5PlayAll: Move Y1 Draw5playall Build

21) LanguiDude: Build R2 Languidude

22) Draw5PlayAll: Move R2 Build Atreides

23) LanguiDude: Sacrifice Y1 Atreides
Discover B1 Atreides G2 Deneb

24) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 Atreides
Build R3 Build
Build R3 Draw5playall

25) LanguiDude: Trade R3 G3 Languidude

26) Draw5PlayAll: Trade R2 G2 Atreides

27) LanguiDude: Trade G1 Y1 Languidude

28) Draw5PlayAll: Sacrifice G2 Atreides
Build R2 Build
Build R3 Atreides

29) LanguiDude: Build G1 Centaury

30) Draw5PlayAll: Trade R1 B1 Draw5playall

31) LanguiDude: Build B2 Deneb

32) Draw5PlayAll: Move B1 Draw5playall Build

33) LanguiDude: Build G1 Languidude

34) Draw5PlayAll: Trade R2 G2 Atreides

35) LanguiDude: Trade B2 Y2 Deneb

36) Draw5PlayAll: Trade R2 B2 Build

37) LanguiDude: Build Y1 Deneb

38) Draw5PlayAll: Build G3 Atreides

39) LanguiDude: Sacrifice Y2 Deneb
Move G1 Centaury Atreides
Move G1 Centaury Atreides
Catastrophe Atreides Green

40) Draw5PlayAll: Trade R3 G3 Draw5playall

41) LanguiDude: Build Y2 Deneb

42) Draw5PlayAll: Build G1 Draw5playall

43) LanguiDude: Trade Y1 R1 Deneb

44) Draw5PlayAll: Sacrifice Y1 Build
Move R3 Atreides Deneb

45) LanguiDude: Sacrifice Y2 Deneb
Discover R1 Deneb Y1 Gryphon
Move B1 Deneb Gryphon

46) Draw5PlayAll: Trade B2 Y2 Build

47) LanguiDude: Move G1 Languidude Gryphon

48) Draw5PlayAll: Build R2 Deneb

49) LanguiDude: Discover Y1 Languidude G1 Smithy

50) Draw5PlayAll: Build Y1 Draw5playall

51) LanguiDude: Sacrifice G3 Languidude
Build R2 Gryphon
Build G2 Gryphon
Build R3 Languidude

52) Draw5PlayAll: Discover G1 Draw5playall B2 Cobalt

53) LanguiDude: Trade R3 G3 Languidude

54) Draw5PlayAll: Build G3 Cobalt

55) LanguiDude: Build Y2 Smithy

56) Draw5PlayAll: Build Y3 Build

57) LanguiDude: Build R3 Languidude

58) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y3 Build Gryphon
Move R3 Deneb Smithy

59) LanguiDude: Sacrifice Y2 Smithy
Move R2 Gryphon Build
Move R1 Gryphon Build
Catastrophe Build Red

60) Draw5PlayAll: Sacrifice R2 Deneb
Attack G2 Gryphon
Attack B1 Gryphon

61) LanguiDude: Discover G1 Gryphon Y2 Basecamp

62) Draw5PlayAll: Sacrifice G3 Cobalt
Build G2 Draw5playall
Build G3 Cobalt
Build R1 Smithy

63) LanguiDude: Trade R2 Y2 Languidude

64) Draw5PlayAll: Sacrifice G3 Cobalt
Build G3 Cobalt
Build Y3 Build
Build B1 Gryphon

65) LanguiDude: Sacrifice G3 Languidude
Build R1 Languidude
Build G3 Basecamp
Pass

66) Draw5PlayAll: Sacrifice Y2 Build
Move G2 Draw5playall Basecamp
Move G2 Gryphon Basecamp
Catastrophe Basecamp Green

67) LanguiDude: Trade Y2 G2 Languidude

68) Draw5PlayAll: Attack Y1 Smithy

69) LanguiDude: Move R1 Languidude Gryphon

70) Draw5PlayAll: Sacrifice R1 Smithy
Attack R1 Gryphon

71) LanguiDude: Build G1 Languidude

72) Draw5PlayAll: Sacrifice G3 Cobalt
Build Y2 Smithy
Build Y2 Smithy
Build B2 Gryphon

73) LanguiDude: Trade G2 R2 Languidude

74) Draw5PlayAll: Sacrifice Y3 Gryphon
Move B1 Gryphon Languidude
Move B1 Gryphon Languidude
Move B2 Gryphon Languidude
Catastrophe Languidude Blue
	LanguiDude: this is going sooo poorly for me :-D

75) LanguiDude: Build G2 Languidude
	Draw5PlayAll: All systems are go. Prepare for final demolition in 3... 2... 1...
	LanguiDude: dang... I knew this was coming, and yet I didn't see it at all.........
	LanguiDude: trade g2 r2 languidude

76) Draw5PlayAll: Sacrifice Y3 Build
Move Y2 Smithy Languidude
Move Y2 Smithy Languidude
Move Y1 Smithy Languidude

77) LanguiDude: Sacrifice R3 Languidude
Attack Y2 Languidude
Attack Y2 Languidude
Attack Y1 Languidude
	LanguiDude: build g2 languidude

78) Draw5PlayAll: Catastrophe Languidude Yellow
Build G2 Cobalt
	LanguiDude: gg!

	LanguiDude: a ha! now the tables have turned!
	Draw5PlayAll: Good game.


35801)
Started: 2020.1.6, Ended: 2020.1.22
Participants: ts52 (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y3 B2 G3

2) ts52: Homeworld Y2 B1 G3
	ts52: This is for the 2019 Homeworlds tournament.

3) ajo: Build G1 Ajo
	ajo: For the tournament!

4) ts52: Build G1 Ts52

5) ajo: Trade G1 R1 Ajo
	ts52: Have a good game!

6) ts52: Trade G1 R1 Ts52

7) ajo: Build G1 Ajo

8) ts52: Build G1 Ts52

9) ajo: Trade G1 B1 Ajo

10) ts52: Trade G1 B1 Ts52

11) ajo: Discover B1 Ajo G1 Alpha

12) ts52: Build B2 Ts52

13) ajo: Build B2 Alpha

14) ts52: Discover B1 Ts52 Y3 Bigbird

15) ajo: Trade B2 Y2 Alpha

16) ts52: Build G1 Ts52

17) ajo: Build Y1 Alpha

18) ts52: Move G1 Ts52 Bigbird

19) ajo: Build Y1 Alpha

20) ts52: Trade G1 Y1 Bigbird

21) ajo: Discover Y1 Alpha G3 Beta

22) ts52: Discover Y1 Bigbird G1 Robin

23) ajo: Build B2 Alpha

24) ts52: Trade B1 G1 Bigbird

25) ajo: Move B2 Alpha Beta

26) ts52: Build G2 Ts52

27) ajo: Build G2 Ajo

28) ts52: Trade G2 R2 Ts52

29) ajo: Sacrifice G2 Ajo
Build Y2 Beta
Build Y3 Alpha

30) ts52: Build G2 Ts52

31) ajo: Build G2 Ajo

32) ts52: Move B2 Ts52 Bigbird

33) ajo: Discover Y2 Alpha B3 Gamma

34) ts52: Move R2 Ts52 Bigbird

35) ajo: Build B1 Alpha

36) ts52: Sacrifice G3 Ts52
Build G2 Bigbird
Build G3 Ts52
Build B3 Bigbird

37) ajo: Build B3 Beta

38) ts52: Trade B3 R3 Bigbird

39) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build B3 Beta
Build R1 Ajo

40) ts52: Move R3 Bigbird Robin

41) ajo: Sacrifice Y3 Alpha
Move Y1 Beta Ts52
Move Y2 Beta Ts52
Move Y2 Gamma Ts52
Catastrophe Ts52 Yellow

42) ts52: Trade G3 Y3 Ts52

43) ajo: Trade B2 Y2 Beta

44) ts52: Build G3 Ts52

45) ajo: Discover B1 Alpha Y2 Gamma

46) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B2 Bigbird
Build B3 Bigbird

47) ajo: Sacrifice Y2 Beta
Move B3 Beta Ts52
Move B3 Beta Ts52

48) ts52: Sacrifice R2 Bigbird
Attack B3 Ts52
Attack B3 Ts52
	ajo: Good game. :)

49) ajo: Move B1 Gamma Ts52
Catastrophe Ts52 Blue
	ts52: Indeed. Well played!



35852)
Variants: "Unrated"
Started: 2020.1.8, Ended: 2020.1.24
Participants: LanguiDude (S), Ercepeda (N)
Winner: LanguiDude

1) Ercepeda: Homeworld R3 G2 B3

2) LanguiDude: Homeworld B3 Y1 G3

3) Ercepeda: Build B1 Ercepeda

4) LanguiDude: Build G1 Languidude

5) Ercepeda: Trade B1 Y1 Ercepeda

6) LanguiDude: Build G1 Languidude

7) Ercepeda: Build Y1 Ercepeda

8) LanguiDude: Discover G1 Languidude Y2 Alderaan

9) Ercepeda: Discover Y1 Ercepeda G1 Aah Real Planet

10) LanguiDude: Build G2 Languidude

11) Ercepeda: Build Y2 Aah

12) LanguiDude: Trade G2 R2 Languidude

13) Ercepeda: Build Y2 Ercepeda

14) LanguiDude: Build R1 Languidude

15) Ercepeda: Discover Y2 Aah G2 Floo

16) LanguiDude: Move R2 Languidude Floo

17) Ercepeda: Discover Y2 Floo R1 Tango

18) LanguiDude: Build G2 Alderaan

19) Ercepeda: Build Y3 Aah

20) LanguiDude: Build G3 Languidude

21) Ercepeda: Build Y3 Ercepeda

22) LanguiDude: Move G2 Alderaan Aah

23) Ercepeda: Sacrifice Y3 Ercepeda
Discover Y1 Aah B2 Slaa
Discover Y3 Aah B2 Flaa
Discover Y2 Tango B2 Nlaa

24) LanguiDude: Move G3 Languidude Flaa

25) Ercepeda: Sacrifice Y2 Ercepeda
Move Y3 Flaa Languidude
Move Y2 Nlaa Languidude

26) LanguiDude: Sacrifice G3 Languidude
Build G3 Languidude
Build G3 Flaa
Build R1 Languidude

27) Ercepeda: Move Y1 Slaa Languidude
Catastrophe Languidude Y

28) LanguiDude: Trade G3 Y3 Flaa

29) Ercepeda: Build B1 Ercepeda

30) LanguiDude: Build G3 Aah

31) Ercepeda: Move B1 Ercepeda Aah

32) LanguiDude: Sacrifice Y3 Flaa
Move G3 Aah Ercepeda
Move G2 Aah Ercepeda
Move R2 Floo Aah

33) Ercepeda: Build B1 Ercepeda

34) LanguiDude: Sacrifice R2 Aah
Attack B3 Ercepeda
Attack Y1 Ercepeda



35854)
Variants: "Unrated, Hard time"
Started: 2020.1.10, Ended: 2020.1.11
Participants: Babamots (S), LanguiDude (N)
Winner: Babamots

1) LanguiDude: Homeworld B1 Y2 G3
	Babamots: Hi LanguiDude! From your profile, it sounds like you're pretty new to the game. I can give suggestions if you'd like to benefit from my experience, such as it is. :-D

2) Babamots: Homeworld G3 B1 B3 *
	LanguiDude: Heya Babamots. Yeah, I'm very new to the game. I appreciate the offer. I won't mind one bit if you throw out tips here and there. And I hope you don't mind if I pick your brain about why you made certain moves... :-)

3) LanguiDude: Build G1 Languidude
	Babamots: I won't pull any punches, but I'll try to give you warnings about my plans.

At the moment, I'm setting up for an "instafreeze." I'll build the last b1 piece on my next turn, so you'll frozen out of blue ships. You will want to trade your g3 for b3 (after a turn or two, but NOT now) so that you can get blue ships. Otherwise, I'll be building medium and large blue ships very soon and I'll have a material advantage.
	LanguiDude: Oh dang, I didn’t even realize I was setting myself up for that when I made my Homeworld consist of a b1. Very interesting.
	LanguiDude: Well, I guess I mean I’d never thought of that as the second player.

4) Babamots: Build B1 Babamots
	Babamots: Yeah, a b1 or g1 star sets you up for that. It's only really a problem if you don't know how to respond to it.

5) LanguiDude: Trade G3 B3 Languidude
	Babamots: You can trade for b3 on this turn if you want. It will put us basically on even footing.

6) Babamots: Trade B3 Y3 Babamots

7) LanguiDude: Build B2 Languidude

8) Babamots: Build B2 Babamots

9) LanguiDude: Discover B2 Languidude G3 Adama

10) Babamots: Trade B1 G1 Babamots

11) LanguiDude: Trade B2 Y2 Adama
	LanguiDude: I'm never sure how long one should spend building ships at home. I usually feel like getting out into space "early" is advantageous - but that's more of an instinct and less about  reason or experience.

12) Babamots: Build B1 Babamots
	Babamots: If you head out too early, you sometimes get forced to lose diversity in a system. I like to only trade for new colors in a system where I already have (at least) two ships of the same color.
	Babamots: For example, you just lost your only blue ship in Adama. It's harder for you to build blue now.

13) LanguiDude: Build B2 Languidude

14) Babamots: Sacrifice Y3 Babamots
Discover B1 Babamots Y2 Iconia
Move B1 Iconia Adama
Move B1 Adama Languidude
Catastrophe Languidude B

15) LanguiDude: Build Y1 Adama
	Babamots: Our homeworlds are now connected, so you need to be ready to invade or be invaded at a moment's notice (if one of us wins the race for a red ship by more than one turn, that person will win). You don't have access to blue at the moment, so you'll need to build another ship, discover a blue system, and trade for a red.
	Babamots: I'm planning to trade my ships for yellow and red to try to catch you before you can defend yourself.

16) Babamots: Trade G1 Y1 Babamots

17) LanguiDude: Discover Y2 Adama B1 Brill
	LanguiDude: Assuming I can get out of this, that leaves you in a pretty vulnerable position. (But that IS a bold assumption...)

18) Babamots: Move B2 Babamots Languidude
	Babamots: I'm afraid I'm going to win this race. It was close and pretty interesting though.

19) LanguiDude: Move Y1 Adama Languidude

20) Babamots: Trade B2 R2 Languidude

21) LanguiDude: Trade Y2 R2 Brill

22) Babamots: Attack G1 Languidude

	LanguiDude: oh duh, that does it
I was "planning" to build a bunch of ships to drag it out...
	LanguiDude: gg!
	Babamots: So if you didn't notice, the problem in this game was building that blue ship in your home. It let me catastrophe your blue ships and blue star (albeit at the cost of my own y3).
	Babamots: It set you back a bit more than me, and when quarters are tight like that, a tiny advantage tips the scale pretty easily.
	LanguiDude: Yeah, something something "don't let your 3p ship be the same color as a looming catastrophe" - a brutal lesson, but well learned :-D
	LanguiDude: (or at least don't do it unintentionally)
	LanguiDude: this was fun, though - I issued a rematch challenge :-)
	Babamots: GG! And I hope you learned some. Would you like to try again/another lesson?


35690)
Variants: "No undo, Unrated"
Started: 2020.1.10, Ended: 2020.2.13
Participants: rho0 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: Hi rho0! I was just looking for another game and picked your standing challenge. Good luck!



35861)
Variants: "Unrated"
Started: 2020.1.11, Ended: 2020.1.16
Participants: T0NK5 (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) T0NK5: Homeworld B3 R2 G3

3) Trydnt: Build G1 Trydnt

4) T0NK5: Build G1 T0nk5

5) Trydnt: Trade G1 Y1 Trydnt

6) T0NK5: Trade G1 Y1 T0nk5

7) Trydnt: Build Y2 Trydnt

8) T0NK5: Build Y2 T0nk5

9) Trydnt: Discover Y1 Trydnt G3 G3

10) T0NK5: Discover Y1 T0nk5 G1 Bert

11) Trydnt: Build G1 Trydnt

12) T0NK5: Build G1 T0nk5

13) Trydnt: Build G2 Trydnt

14) T0NK5: Build G2 T0nk5

15) Trydnt: Discover G2 Trydnt B3 B3

16) T0NK5: Discover Y1 Bert B2 Mozart

17) Trydnt: Pass

18) T0NK5: Discover Y1 Mozart G1 Bert

19) Trydnt: Pass

20) T0NK5: Trade G1 R1 T0nk5

21) Trydnt: Trade G1 R1 Trydnt

22) T0NK5: Discover R1 T0nk5 B1 Mozart

23) Trydnt: Move Y2 Trydnt B3

24) T0NK5: Trade G2 B2 T0nk5

25) Trydnt: Build G1 B3

26) T0NK5: Move B2 T0nk5 Bert

27) Trydnt: Move G2 B3 Mozart

28) T0NK5: Build B1 Bert

29) Trydnt: Sacrifice R1 Trydnt
Attack R1 Mozart

30) T0NK5: Discover B1 Bert Y3 Arnold

31) Trydnt: Build G1 Mozart

32) T0NK5: Build G2 T0nk5
	T0NK5: I'm sure that was a bad move for some reason but whatever, fight me hommie!! Lose as fast as possible! 10,000 hours! I'll beat you someday and I'll make a whole cake about it. 

33) Trydnt: Sacrifice Y2 B3
Move G1 Mozart T0nk5
Move G2 Mozart T0nk5
Catastrophe T0nk5 G

34) T0NK5: Build Y2 Bert

35) Trydnt: Build G1 Trydnt

36) T0NK5: Trade Y2 G2 Bert

37) Trydnt: Sacrifice G3 Trydnt
Build G2 B3
Build G2 Trydnt
Build G3 Trydnt

38) T0NK5: Build Y2 Bert
	T0NK5: Look man I'm just trying to sail through the galaxy, hanging out on stars, building some ships and having a good time, don't know why you gotta make it all aggressive. Some folks just wanna chill. Some folks just wanna catastrophe. 

39) Trydnt: Move G2 Trydnt Arnold
	T0NK5: I'm Sailing Awaaaayyyy

40) T0NK5: Move Y2 Bert Arnold

41) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build G3 Arnold
Build R1 Mozart

42) T0NK5: Build Y2 Bert

43) Trydnt: Sacrifice R1 Mozart
Attack Y2 Arnold
	T0NK5: MY NAME IS INIGO MONTOYA
	T0NK5: YOU KILL MY SHIP
	T0NK5: PREPARE TO DIE

44) T0NK5: Move G2 Bert T0nk5

45) Trydnt: Sacrifice Y2 Arnold
Move G3 Arnold Bert
Move G2 Arnold Mozart

46) T0NK5: Build Y2 T0nk5

47) Trydnt: Sacrifice Y1 G3
Move G3 Bert T0nk5

48) T0NK5: Build G3 T0nk5

49) Trydnt: Attack G3 T0nk5

50) T0NK5: Sacrifice Y2 Bert
Move Y1 Bert Arnold
Move B2 Bert Arnold

51) Trydnt: Attack Y2 T0nk5

52) T0NK5: Build G1 T0nk5
Catastrophe T0nk5 G

53) Trydnt: Sacrifice G2 B3
Build Y1 T0nk5
Build Y2 T0nk5
Catastrophe T0nk5 Y



35862)
Variants: "Unrated"
Started: 2020.1.11, Ended: 2020.1.14
Participants: Babamots (S), LanguiDude (N)
Winner: Babamots

1) LanguiDude: Homeworld B3 R2 G3
	Babamots: Good luck! I'll try to be at least as helpful as last time. :-)

2) Babamots: Homeworld R1 B3 G3

3) LanguiDude: Build G1 Languidude

4) Babamots: Build G1 Babamots

5) LanguiDude: Trade G1 Y1 Languidude

6) Babamots: Trade G1 R1 Babamots

7) LanguiDude: Build G1 Languidude

8) Babamots: Build R1 Babamots

9) LanguiDude: Trade G3 R3 Languidude

10) Babamots: Trade R1 Y1 Babamots

11) LanguiDude: Build G1 Languidude

12) Babamots: Build R1 Babamots

13) LanguiDude: Trade G1 B1 Languidude

14) Babamots: Discover R1 Babamots G2 Orion

15) LanguiDude: Build R2 Languidude

16) Babamots: Sacrifice G3 Babamots
Build R2 Orion
Build R3 Orion
Build R3 Babamots

17) LanguiDude: Discover R2 Languidude B1 Antoinette
	LanguiDude: oh dang - I forgot about sacrificing big green ships...

18) Babamots: Sacrifice Y1 Babamots
Move R3 Orion Antoinette
	Babamots: I've started to call that technique a "dirty factory." I've got a nice material advantage now, but my color diversity has suffered.

19) LanguiDude: Sacrifice Y1 Languidude
Discover R2 Antoinette Y2 Brahmin

20) Babamots: Trade R1 G1 Babamots
	Babamots: Good choice! You made me go to red alert :-).

21) LanguiDude: Build R1 Languidude
	LanguiDude: I was quite pleased with that move. Happy to hear it was effective. :-)

22) Babamots: Trade R3 Y3 Antoinette

23) LanguiDude: Trade R3 Y3 Languidude
	Babamots: I'm threatening to make a red catastrophe at your home. Choose carefully.
	Babamots: Out of curiosity, do you have a theme in mind for your system names? So far, I interpret Adama as a fictional fleet commander, Antoinette as a queen, and Brahim as a varna. Maybe you're just picking anything that starts with A then B etc.?
	LanguiDude: It's mostly just sci-fi. Marie Antoinette made an appearance in an episode of Dr. Who (and it's one of my favorites), and Brahmin is also what they call the two-headed cow-mutations in the Fallout franchise. :-D

But also, I'm not above picking a word that just sounds fun. I did pick Brahmin with a full understanding of the various translations. I was gonna' call it, like, Booyah, or something - but I realized a more level-headed, calm approach would pay off better than a brash and bold statement. Which proved to be true, since I realized you could just trade, and thus be out of threat for a catastrophe... :-D

24) Babamots: Build R3 Orion

25) LanguiDude: Build B1 Languidude

26) Babamots: Move Y3 Antoinette Orion
	LanguiDude: (Apparently I messed up my 18th century women: Jeanne Antoinette Poisson is the one that appears in the Dr. Who episode, by her more popular name: Madame de Pompadour. Marie Antoinette said "let them eat cake," just like the Killer Queen in Queen's song...)
	LanguiDude: So it appears that I just pick cool words, and make them mean whatever I want....... >.>

27) LanguiDude: Sacrifice Y3 Languidude
Discover R1 Languidude Y1 Kobayashi
Move R1 Kobayashi Orion
Discover R2 Brahmin G3 Casanova
Catastrophe Orion Red
	Babamots: I've always used worlds of Star Trek. I usually fit the world to the system color (either by skin color or other species traits). Folks from Orion are green-skinned, Klingons are aggressive so they get red, etc.
	Babamots: I also use the Pakled system if I'm trying to recover from doing something super dumb.
	Babamots: Or Gravesworld if I'm feeling like a supergenius.
	Draw5PlayAll: Gravesworld?!
	Babamots: Ira Graves named a planet after himself because he's so proud of being smart.
	Babamots: He not-so-creatively called it Gravesworld.
	LanguiDude: I really enjoy Star Trek. My knowledge of it is nowhere near vast enough to think up names on the spot like that, but the trivia is awesome :-)

28) Babamots: Discover Y3 Orion R1 Nausicaa
	LanguiDude: I'm sure that wasn't the right move. But I'm not sure there was a better one...

29) LanguiDude: Trade B1 Y1 Languidude
	LanguiDude: trade b1 y1 languidude

30) Babamots: Move Y3 Nausicaa Languidude
	LanguiDude: (let me just type that in my notebook, and the circle will be complete...)
	Babamots: I think you were better off building up. You can often side-step someone's large-ship advantage by not putting more than one ship in any non-home system. That way the single ship can just run away if I try to invade.

31) LanguiDude: Build Y1 Languidude

32) Babamots: Sacrifice R3 Babamots
Attack Y1 Languidude
Attack Y1 Languidude
Attack G1 Languidude
	LanguiDude: yeah, I see it now - with the red sacrifice... gg

33) LanguiDude: Trade B1 Y1 Languidude

34) Babamots: Catastrophe Languidude Y
Pass
	LanguiDude: I guess after you take it there will be no one left to yell "catastrophe!"
	LanguiDude: Our galaxy is not kind to the navigators. Must be some rough wormholes... :-D
	Babamots: Good game! I think you're improving. Want another go?
	LanguiDude: I am really enjoying myself - let's do it. :-)



35697)
Variants: "Unrated"
Started: 2020.1.14, Ended: 2020.5.8
Participants: Torquemada (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Torquemada: Homeworld Y3 B2 G3
	Torquemada: homeworld Y3 B2 G3
	Torquemada: Y3 B2 G3
	Torquemada: homeworld Y3, B2, G3

	Torquemada: Sorry, i don't know how to put any commands... 

3) Trydnt: Build G1 Trydnt

4) Torquemada: Build G1 Torquemada
	Trydnt: first time playing or just first time on this website?
	Torquemada: first time in this website

5) Trydnt: Trade G1 Y1 Trydnt



35872)
Variants: "Unrated"
Started: 2020.1.14, Ended: 2020.1.17
Participants: LanguiDude (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3

2) LanguiDude: Homeworld Y1 G2 B3

3) Babamots: Build G1 Babamots

4) LanguiDude: Build B1 Languidude

5) Babamots: Trade G1 Y1 Babamots

6) LanguiDude: Build B1 Languidude

7) Babamots: Build Y1 Babamots

8) LanguiDude: Discover B1 Languidude G3 Anakin

9) Babamots: Build Y2 Babamots

10) LanguiDude: Build B1 Anakin

11) Babamots: Discover Y2 Babamots G2 Risa

12) LanguiDude: Trade B1 R1 Languidude

13) Babamots: Sacrifice G3 Babamots
Build Y2 Risa
Build Y2 Risa
Build Y3 Babamots

14) LanguiDude: Build B1 Languidude
	Babamots: Now I wish I'd picked a blue marker for Risa since I'd like a ship at some point.

15) Babamots: Trade Y3 G3 Babamots

16) LanguiDude: Build B2 Languidude

17) Babamots: Discover Y2 Risa R1 Kronos

18) LanguiDude: Build R2 Languidude

19) Babamots: Sacrifice G3 Babamots
Build Y3 Kronos
Build Y3 Risa
Build Y3 Babamots

20) LanguiDude: Build B2 Anakin
	LanguiDude: boy, yellow is a really bad color to let yourself get built out of...
	LanguiDude: (you know, as opposed to the other three...)

21) Babamots: Trade Y3 G3 Babamots
	Babamots: I think yellow is the worst to get frozen out of. Then red, green, and blue. It's not usually too hard to go a whole game without getting any blue ships (unless you end up needing them for a home catastrophe).

22) LanguiDude: Trade B2 G2 Anakin

23) Babamots: Build G1 Babamots

24) LanguiDude: Discover R2 Languidude Y3 Boromir

25) Babamots: Build G1 Babamots

26) LanguiDude: Move R2 Boromir Risa

27) Babamots: Sacrifice Y2 Risa
Discover Y3 Kronos R3 Romulus
Move Y2 Risa Romulus
	LanguiDude: knock knock - if your opponent won't bring the fight to you... :-D

28) LanguiDude: Trade G2 Y2 Anakin

29) Babamots: Build Y3 Babamots
	Babamots: I'm going for the no-red-ship challenge. :-D

30) LanguiDude: Build B2 Anakin

31) Babamots: Discover Y2 Kronos B3 Bolarus

32) LanguiDude: Trade B2 G2 Languidude

33) Babamots: Move Y2 Romulus Languidude
	Babamots: I'm afraid I pretty much forgot about giving tips this time, and now my doomsday machine is complete.
	Babamots: If you trade a ship at your home for a green, it will take me one extra turn to fire my weapon.
	Babamots: If you trade for green and I charge ahead with my plan, when our homes become connected, you could cause a green catastrophe at my home. I'll need an extra turn to avoid that.

34) LanguiDude: Move Y2 Anakin Risa

35) Babamots: Sacrifice Y3 Risa
Move Y2 Bolarus Languidude
Move Y3 Romulus Languidude
Catastrophe Languidude Y
Move G1 Babamots Languidude

36) LanguiDude: Move Y2 Risa Babamots
Catastrophe Babamots Yellow

37) Babamots: Build G1 Languidude
Catastrophe Languidude G

	LanguiDude: oh :facepalm: - well played
	LanguiDude: I was so proud of my delay tactic! :-D
	Babamots: It was good. I was distracted during my last couple of moves and didn't see it coming. :-)


35773)
Variants: "Hard time"
Started: 2020.1.15, Ended: 2020.2.9
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt

1) dlwillson: H Y3 B1 G3 Dlwillson

2) Trydnt: Homeworld G2 Y1 B3

3) dlwillson: B G1 Dlwillson

4) Trydnt: Build B1 Trydnt

5) dlwillson: B G1 Dlwillson

6) Trydnt: Discover B1 Trydnt G3 G3

7) dlwillson: D G1 Dlwillson B2 Db0

8) Trydnt: Build B1 Trydnt
	dlwillson: On behalf of people that name systems after the piece, would you explain why you do that?

To me, the system-names are part of the beauty of the game, and piece-named systems create confusion between systems, ships, and pieces. Moving a b3 to b3 seems less elegant than moving a b3 to arcturus.
	Trydnt: I don't name them when playing with the set so partially habit. The star designations are arbitrary. Most real stars are named things like T-368/b nowadays since they discover so many all the time and a functional designation is more useful. It's much the same here as the name tells you what size it is and means you're less likely to make a mistake in not realizing which size piece you're moving to. Also it's faster to type B3 or something than arcturus so makes coding commands easier. Though if that were the only reason I'd just name them A, B, C, etc... so yeah a balance between speed, efficiency, and less margin for error

9) dlwillson: S G3 Dlwillson
B G1 Db0
B G2 Db0
B G2 Dlwillson

10) Trydnt: Discover B1 Trydnt G3 Gee3

11) dlwillson: B G3 Dlwillson

12) Trydnt: Build B2 G3

13) dlwillson: T G2 Y2 Dlwillson

14) Trydnt: Build B2 Trydnt

15) dlwillson: T G1 Y1 Db0

16) Trydnt: Build B3 Gee3

17) dlwillson: S Y2 Dlwillson
D G2 Db0 B3 Tb0
M G1 Db0 Gee3

18) Trydnt: Trade B2 Y2 G3

19) dlwillson: S G3 Dlwillson
B G1 Gee3
B G2 Gee3
B G3 Dlwillson
C Gee3 G

20) Trydnt: Build B1 G3

21) dlwillson: B G1 Dlwillson

22) Trydnt: Build B2 Trydnt

23) dlwillson: M G1 Dlwillson Db0

24) Trydnt: Discover B2 Trydnt G3 Gee3

25) dlwillson: S G3 Dlwillson
B G1 Tb0
B G2 Tb0
B G3 Dlwillson

26) Trydnt: Build B3 Gee3

27) dlwillson: T G2 Y2 Tb0

28) Trydnt: Trade B3 R3 Gee3

29) dlwillson: Trade G1 R1 Tb0

30) Trydnt: Build B3 Trydnt

31) dlwillson: T G1 Y1 Dlwillson

32) Trydnt: Move B3 Trydnt Tb0

33) dlwillson: Sacrifice G2 Tb0
Build Y2 Db0
Build Y3 Dlwillson

34) Trydnt: Sacrifice R3 Gee3
Attack Y2 Tb0
Attack R1 Tb0
Pass

35) dlwillson: T Y1 R1 Dlwillson

36) Trydnt: Trade B3 Y3 Tb0

37) dlwillson: T Y3 B3 Dlwillson

38) Trydnt: Trade Y2 G2 Tb0

39) dlwillson: D B3 Dlwillson G2 Field

40) Trydnt: Build G1 Tb0

41) dlwillson: B G1 Dlwillson

42) Trydnt: Discover G1 Tb0 Y2 Y2

43) dlwillson: T Y1 R1 Db0

44) Trydnt: Build Y1 G3

45) dlwillson: D G1 Db0 Y3 Sol

46) Trydnt: Trade B3 R3 Trydnt

	dlwillson: Sorry about that. 
	Trydnt: no worries


35775)
Variants: "Hard time"
Started: 2020.1.15, Ended: 2020.1.18
Participants: Trydnt (S), wil (N)
Winner: Trydnt



35776)
Started: 2020.1.15, Ended: 2020.6.9
Participants: Trydnt (S), Dther (N)
Winner: Trydnt

1) Dther: Homeworld B1 Y2 G3

2) Trydnt: Homeworld G3 B1 B3 *

3) Dther: Build G1 Dther

4) Trydnt: Build B1 Trydnt

5) Dther: Discover G1 Dther B3 One

6) Trydnt: Trade B3 Y3 Trydnt

7) Dther: Build G1 Dther

8) Trydnt: Build B2 Trydnt

9) Dther: Build G1 One

10) Trydnt: Discover B2 Trydnt Y2 Y2

11) Dther: Discover G1 Dther B3 Two

12) Trydnt: Build B2 Trydnt

13) Dther: Build G2 Dther

14) Trydnt: Discover B2 Y2 G3 G3

15) Dther: Trade G2 B2 Dther

16) Trydnt: Build B3 G3

17) Dther: Build G2 Dther

18) Trydnt: Trade B2 Y2 G3

19) Dther: Sacrifice G3 Dther
Build G2 Two
Build G2 One
Build G3 Dther

20) Trydnt: Build Y1 G3

21) Dther: Trade G2 Y2 One

22) Trydnt: Trade Y2 G2 G3



35877)
Variants: "Hard time"
Started: 2020.1.16, Ended: 2020.2.17
Participants: Trydnt (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: Weird. I thought I was already in a ladder game.

2) Trydnt: Homeworld B2 Y1 G3

3) Draw5PlayAll: Build G1 Draw5playall

4) Trydnt: Build G1 Trydnt

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Trydnt: Trade G1 Y1 Trydnt

7) Draw5PlayAll: Build Y2 Draw5playall

8) Trydnt: Build Y2 Trydnt

9) Draw5PlayAll: Discover Y2 Draw5playall G2 Construct

10) Trydnt: Discover Y1 Trydnt G3 G3

11) Draw5PlayAll: Build G1 Draw5playall

12) Trydnt: Build G1 Trydnt

13) Draw5PlayAll: Trade G1 R1 Draw5playall

14) Trydnt: Trade G1 R1 Trydnt

15) Draw5PlayAll: Build R2 Draw5playall

16) Trydnt: Build R2 Trydnt

17) Draw5PlayAll: Move R1 Draw5playall Construct

18) Trydnt: Move R2 Trydnt G3

19) Draw5PlayAll: Discover R2 Draw5playall G2 Build

20) Trydnt: Build G1 Trydnt

21) Draw5PlayAll: Build G1 Draw5playall

22) Trydnt: Trade G1 B1 Trydnt

23) Draw5PlayAll: Trade G1 B1 Draw5playall

24) Trydnt: Move B1 Trydnt G3

25) Draw5PlayAll: Build B1 Draw5playall Build

26) Trydnt: Sacrifice Y2 Trydnt
Move B1 G3 Build
Move B1 Build Draw5playall
Catastrophe Draw5playall B

27) Draw5PlayAll: Build Y2 Draw5playall

28) Trydnt: Sacrifice G3 Trydnt
Build R2 G3
Build R3 Trydnt
Build Y2 G3
	Draw5PlayAll: Oh no! I looked at that command again... I mean to MOVE a B1 from my homeworld TO build...

29) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Construct
Build R3 Build
Build R3 Construct
	Draw5PlayAll: My command was " build B1 Draw5PlayAll build "

I wish the system had rejected that command for having too many parameters. I guess that is the end of THIS star naming procedure!

30) Trydnt: Discover R1 Trydnt Y3 Y3

31) Draw5PlayAll: Sacrifice Y2 Construct
Move R1 Construct G3
Move R2 Build G3
Catastrophe G3 Red

32) Trydnt: Discover Y1 G3 G2 G2

33) Draw5PlayAll: Move R3 Construct Y3

34) Trydnt: Build Y2 G2
	Draw5PlayAll: This just got weird

35) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R3 Build G3

36) Trydnt: Discover Y2 G3 G2 Gee2

37) Draw5PlayAll: Attack R1 Y3

38) Trydnt: Move Y2 G2 Draw5playall
	Draw5PlayAll: This is by far the weirdest game of homeworlds I have ever played.

39) Draw5PlayAll: Sacrifice Y3 Construct
Move R1 Y3 Trydnt
Move R3 Y3 Trydnt
Move R3 G3 Trydnt
Catastrophe Trydnt Red

	Draw5PlayAll: Wow.

I am quite amazed I managed to pull that off. I thought you had me as soon as I lost my blue star.
	Trydnt: yup same. goes to show one oversight can really make all the difference


35860)
Started: 2020.1.19, Ended: 2020.2.4
Participants: ts52 (S), speardane (N)
Winner: ts52

1) speardane: Homeworld B2 Y3 G3

2) ts52: Homeworld B1 Y2 G3

3) speardane: Build G1 Speardane

4) ts52: Build G1 Ts52
	speardane: For the tournament, right?
	ts52: Yes. This is for the tournament.

5) speardane: Trade G3 R3 Speardane

6) ts52: Trade G3 R3 Ts52

7) speardane: Build R1 Speardane

8) ts52: Build R1 Ts52

9) speardane: Trade R3 B3 Speardane

10) ts52: Trade R1 B1 Ts52

11) speardane: Build R1 Speardane

12) ts52: Discover B1 Ts52 G3 Kermit

13) speardane: Trade B3 Y3 Speardane

14) ts52: Build B1 Kermit

15) speardane: Trade Y3 B3 Speardane

16) ts52: Build B2 Kermit

17) speardane: Trade R1 Y1 Speardane

18) ts52: Trade B2 Y2 Kermit

19) speardane: Discover Y1 Speardane G1 Delos

20) ts52: Build G2 Ts52

21) speardane: Build Y1 Delos

22) ts52: Build G2 Ts52

23) speardane: Discover Y1 Delos G2 Lebling

24) ts52: Discover G2 Ts52 B3 Gonzo

25) speardane: Build G3 Speardane

26) ts52: Build G3 Gonzo

27) speardane: Move B3 Speardane Delos

28) ts52: Trade G3 Y3 Gonzo

29) speardane: Sacrifice G3 Speardane
Build G3 Speardane
Build G3 Speardane
Build Y1 Lebling

30) ts52: Sacrifice Y2 Kermit
Move G2 Gonzo Delos
Move G2 Delos Speardane
Catastrophe Speardane Green

31) speardane: Trade R1 G1 Speardane

32) ts52: Move Y3 Gonzo Delos

33) speardane: Sacrifice Y1 Delos
Move B3 Delos Speardane

34) ts52: Move Y3 Delos Speardane

	ts52: Thanks for the game!


35883)
Started: 2020.1.19, Ended: 2020.2.17
Participants: Laurie_Menke (S), speardane (N)
Winner: Laurie_Menke

1) speardane: Homeworld B2 Y3 G3

2) Laurie_Menke: Homeworld B1 R2 G3
	Laurie_Menke: Hi speardane! Just confirming that this is for the Great Homeworlds Tournament of 2019, and that since you went first, you are supposed to fill out the Start Form here:  https://docs.google.com/forms/d/e/1FAIpQLSfFIVX-5Bbbifu74XWm38g4r4VFOUB6lo8NJ8uXXAj0APD48A/viewform
	Laurie_Menke: Have fun and good luck!

3) speardane: Build G1 Speardane
	speardane: For the tournament!

4) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: ::sigh:: I'm sorry for the big delay, speardane. I was on a cruise and then at a convention and thought I could still keep up, but failed miserably. I'll do better now!

5) speardane: Trade G3 R3 Speardane

6) Laurie_Menke: Trade G1 Y1 Laurie_menke
	speardane: No worries. :)

7) speardane: Build G1 Speardane

8) Laurie_Menke: Build Y1 Laurie_menke

9) speardane: Discover G1 Speardane B1 Delos

10) Laurie_Menke: Trade Y1 R1 Laurie_menke

11) speardane: Build G1 Delos

12) Laurie_Menke: Build G2 Laurie_menke

13) speardane: Trade G1 Y1 Delos

14) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow

15) speardane: Build G1 Delos

16) Laurie_Menke: Move R1 Yellow Delos

17) speardane: Build G2 Delos

18) Laurie_Menke: Attack G1 Delos

19) speardane: Trade G1 R1 Delos

20) Laurie_Menke: Attack R1 Delos

21) speardane: Build R1 Speardane
	Laurie_Menke: Sorry...

22) Laurie_Menke: Attack Y1 Delos

23) speardane: Sacrifice R3 Speardane
Attack R1 Delos
Attack Y1 Delos
Attack G1 Delos

24) Laurie_Menke: Attack R1 Delos

25) speardane: Trade G2 R2 Delos

26) Laurie_Menke: Sacrifice G2 Laurie_menke
Build Y1 Laurie_menke
Build R2 Delos
Catastrophe Delos R

27) speardane: Build G1 Delos

28) Laurie_Menke: Build G2 Laurie_menke

29) speardane: Build G2 Delos

30) Laurie_Menke: Build Y2 Laurie_menke

31) speardane: Trade G2 R2 Delos

32) Laurie_Menke: Discover Y2 Laurie_menke B3 Blue

33) speardane: Trade G1 B1 Delos

34) Laurie_Menke: Build Y2 Laurie_menke

35) speardane: Discover B1 Delos G3 Lebling

36) Laurie_Menke: Trade Y2 R2 Laurie_menke

37) speardane: Build R1 Delos

38) Laurie_Menke: Move R2 Laurie_menke Lebling

39) speardane: Sacrifice B1 Lebling
Trade R1 B1 Delos

40) Laurie_Menke: Sacrifice Y1 Laurie_menke
Discover R2 Lebling Y1 Yellow

41) speardane: Discover B1 Delos G3 Lebling

42) Laurie_Menke: Move R2 Yellow Speardane

43) speardane: Build R1 Delos

44) Laurie_Menke: Attack R1 Speardane

45) speardane: Sacrifice R1 Delos
Attack R1 Speardane

46) Laurie_Menke: Attack R1 Speardane

47) speardane: Sacrifice R2 Delos
Attack R1 Speardane
Pass

48) Laurie_Menke: Attack R1 Speardane

49) speardane: Pass

50) Laurie_Menke: Attack G1 Speardane
	Laurie_Menke: Thanks for the fun, speardane! :)



35893)
Started: 2020.1.19, Ended: 2020.1.28
Participants: speardane (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R1 B2 G3

2) speardane: Homeworld R3 B1 G3
	bhorner: This is for "The Great Homeworlds Tournament 2019", agreed?

3) bhorner: Build G1 Bhorner
	speardane: For the tournament!
	bhorner: :)  Good luck to you! Have fun!

4) speardane: Build G1 Speardane

5) bhorner: Trade G1 Y1 Bhorner

6) speardane: Trade G3 Y3 Speardane

7) bhorner: Build G1 Bhorner
	bhorner: Interesting, don't see that too often.

8) speardane: Build Y1 Speardane

9) bhorner: Discover G1 Bhorner Y3 Dandelion

10) speardane: Discover Y1 Speardane G2 Delos

11) bhorner: Discover G1 Dandelion Y2 Candycorn

12) speardane: Discover Y1 Delos G3 Lebling

13) bhorner: Build G1 Bhorner

14) speardane: Build G2 Speardane

15) bhorner: Build G2 Candycorn

16) speardane: Discover G2 Speardane B2 Delos

17) bhorner: Discover G1 Candycorn B3 Cottoncandy

18) speardane: Build G2 Delos

19) bhorner: Build G3 Cottoncandy

20) speardane: Trade G2 Y2 Delos

21) bhorner: Trade G3 Y3 Cottoncandy

22) speardane: Build G2 Delos

23) bhorner: Build G3 Candycorn

24) speardane: Trade G2 R2 Delos

25) bhorner: Trade G1 R1 Bhorner

26) speardane: Build G1 Delos

27) bhorner: Build G2 Cottoncandy

28) speardane: Discover G2 Delos B3 Kotok

29) bhorner: Trade G2 R2 Cottoncandy

30) speardane: Build G2 Kotok

31) bhorner: Discover G2 Candycorn Y3 Toffee

32) speardane: Trade G2 Y2 Kotok

33) bhorner: Move Y3 Cottoncandy Delos

34) speardane: Sacrifice Y2 Delos
Discover R2 Delos B3 Minsky
Move G1 Delos Minsky

35) bhorner: Move Y3 Delos Minsky

36) speardane: Build G2 Minsky

37) bhorner: Sacrifice R1 Bhorner
Attack R2 Minsky

38) speardane: Sacrifice G2 Minsky
Build Y1 Kotok
Build G2 Kotok

39) bhorner: Build Y2 Bhorner

40) speardane: Sacrifice Y2 Kotok
Discover Y1 Lebling B2 Delos
Move G1 Minsky Delos

41) bhorner: Build G3 Candycorn

42) speardane: Trade G2 R2 Kotok

43) bhorner: Move G3 Candycorn Kotok

44) speardane: Move R2 Kotok Delos

45) bhorner: Sacrifice R2 Minsky
Attack Y1 Kotok
Attack G2 Kotok

46) speardane: Build G2 Delos

47) bhorner: Move Y3 Minsky Delos

48) speardane: Discover Y1 Delos B3 Lebling

49) bhorner: Sacrifice R2 Cottoncandy
Attack R2 Delos
Attack G2 Delos

50) speardane: Sacrifice G1 Delos
Build Y2 Lebling

51) bhorner: Sacrifice Y2 Bhorner
Move Y3 Delos Speardane
Move G3 Candycorn Speardane

52) speardane: Attack G3 Speardane

53) bhorner: Sacrifice R2 Delos
Attack Y3 Speardane
Attack G3 Speardane

54) speardane: Pass

55) bhorner: Attack G1 Speardane

	bhorner: Thanks, GG!


35896)
Started: 2020.1.19, Ended: 2020.2.7
Participants: speardane (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 B3 G3
	Simon: This is for the Great Homeworlds Tournament of 2019. Have fun!

2) speardane: Homeworld B3 Y2 G3

3) Simon: Build G1 Simon
	speardane: For the tournament!

4) speardane: Build G1 Speardane

5) Simon: Trade G1 Y1 Simon

6) speardane: Trade G3 R3 Speardane

7) Simon: Build Y1 Simon

8) speardane: Build G1 Speardane

9) Simon: Discover Y1 Simon G2 G2

10) speardane: Discover G1 Speardane B1 Delos

11) Simon: Build Y1 G2

12) speardane: Build R1 Speardane

13) Simon: Build Y2 Simon

14) speardane: Move R1 Speardane Delos

15) Simon: Discover Y2 Simon B2 B2

16) speardane: Build R1 Delos

17) Simon: Sacrifice G3 Simon
Build Y2 B2
Build Y3 B2
Build Y3 Simon

18) speardane: Build G1 Delos

19) Simon: Trade Y2 R2 B2

20) speardane: Build G2 Delos

21) Simon: Trade Y2 G2 B2

22) speardane: Trade G2 Y2 Delos

23) Simon: Move Y3 B2 Delos

24) speardane: Move Y2 Delos G2

25) Simon: Sacrifice R2 B2
Attack R1 Delos
Attack R1 Delos

26) speardane: Build G2 Delos

27) Simon: Attack G2 Delos

28) speardane: Build G3 Delos
Catastrophe Delos Green

29) Simon: Sacrifice G2 B2
Build Y2 G2
Build Y3 Delos
Catastrophe G2 Yellow

30) speardane: Build G1 Speardane

31) Simon: Trade Y3 G3 Delos

32) speardane: Discover G1 Speardane B1 Lebling

33) Simon: Build R2 Delos

34) speardane: Build G1 Lebling

35) Simon: Sacrifice Y3 Simon
Move Y3 Delos Speardane
Move G3 Delos Speardane
Move R1 Delos Speardane

36) speardane: Attack G3 Speardane

37) Simon: Sacrifice R2 Delos
Attack G3 Speardane
Attack R3 Speardane

38) speardane: Pass

39) Simon: Sacrifice R1 Delos
Attack G1 Speardane
	Simon: The yellow
	Simon: The yellow monopoly is so strong, it forces so many opening moves >_> gg still!



35907)
Started: 2020.1.20, Ended: 2020.3.15
Participants: bhorner (S), Laurie_Menke (N)
Winner: bhorner

1) Laurie_Menke: Homeworld B1 R3 G3
	Laurie_Menke: Hi bhorner! Confirming that this is for the Great Homeworlds Tournament of 2019, and that I will go fill out the start form now! Have fun and good luck!

2) bhorner: Homeworld R1 B2 G3
	bhorner: Thanks, same to you!  Here we go!

3) Laurie_Menke: Build G1 Laurie_menke
	bhorner: Don't forget to make your 2nd move!  :)
	bhorner: I guess I'll wait the recommended extra 7 days, but probably then "Force Surrender".  It seems like you've likely dropped out of the tournament though.

I hope everything is alright with you!
	Laurie_Menke: ::sigh:: I'm sorry for the big delay, bhorner. I was on a cruise and then at a convention and thought I could still keep up, but failed miserably. I have not dropped out, and will do better now! Thanks for your patience!

4) bhorner: Build G1 Bhorner
	bhorner: Ah, ok.  Glad to hear all is well, and glad to have a game instead of a forfeit.  :)

5) Laurie_Menke: Trade G1 Y1 Laurie_menke

6) bhorner: Trade G1 Y1 Bhorner

7) Laurie_Menke: Build G1 Laurie_menke

8) bhorner: Build G1 Bhorner

9) Laurie_Menke: Trade G1 R1 Laurie_menke

10) bhorner: Trade G1 R1 Bhorner

11) Laurie_Menke: Build R2 Laurie_menke

12) bhorner: Build R2 Bhorner

13) Laurie_Menke: Discover R2 Laurie_menke Y2 Yellow

14) bhorner: Trade R1 B1 Bhorner

15) Laurie_Menke: Build G1 Laurie_menke

16) bhorner: Build B1 Bhorner

17) Laurie_Menke: Discover R2 Yellow Y3 Sunshine

18) bhorner: Discover B1 Bhorner G3 Tree

19) Laurie_Menke: Build G1 Laurie_menke

20) bhorner: Build B2 Tree

21) Laurie_Menke: Sacrifice G1 Laurie_menke
Build R1 Sunshine

22) bhorner: Trade B2 R2 Tree

23) Laurie_Menke: Sacrifice G3 Laurie_menke
Build R3 Laurie_menke
Build R3 Sunshine
Build Y1 Laurie_menke

24) bhorner: Move R2 Bhorner Sunshine
Catastrophe Sunshine R

25) Laurie_Menke: Build Y2 Laurie_menke
	Laurie_Menke: ::sigh:: I totally should have seen that. Nice move!

26) bhorner: Build Y2 Bhorner
	bhorner: Thanks.  :)

27) Laurie_Menke: Discover R1 Laurie_menke G2 Green

28) bhorner: Move Y2 Bhorner Tree

29) Laurie_Menke: Trade Y2 B2 Laurie_menke

30) bhorner: Sacrifice G3 Bhorner
Build B2 Tree
Build B3 Bhorner
Build B3 Tree

31) Laurie_Menke: Move B2 Laurie_menke Green

32) bhorner: Trade B1 G1 Tree

33) Laurie_Menke: Move Y1 Laurie_menke Green

34) bhorner: Move B3 Tree Green

35) Laurie_Menke: Discover B2 Green Y3 Lemon

36) bhorner: Trade B3 G3 Bhorner

37) Laurie_Menke: Sacrifice Y1 Green
Move R1 Green Lemon

38) bhorner: Discover B1 Bhorner Y3 Sun

39) Laurie_Menke: Build G1 Laurie_menke

40) bhorner: Sacrifice G3 Bhorner
Build B1 Tree
Build B3 Green
Build B3 Sun

41) Laurie_Menke: Move B2 Lemon Bhorner

42) bhorner: Move B3 Sun Bhorner

	bhorner: This has been my plan for quite a while now, not sure there's anything that can be done to stop it.  I think the last chance was instead of you moving b2 to bhorner, you could have swapped it for r2 to have available to sacrifice.

s y2 tree
  m b3 Green Laurie_Menke
  m b3 Green Laurie_Menke
s r2 tree
  a b3 Laurie_Menke
  a r3 Laurie_menke
s r3 Laurie_menke
  a * Laurie_menke
	bhorner: Hm, it took away my indentation...  The sacrifices separate the three moves I planned.
	Laurie_Menke: I'm not sure which b3 you would attack in the plan below, but I agree that I was just about dead. I'm sorry I didn't give you the chance to finish me off. I know disappearing like that was very poor form, and I apologize. Work plus COVID plus getting pneumonia just really knocked me for a loop the last couple of months.  ::sigh:: I am very sorry.  CONGRATULATIONS on the win!  :)
	bhorner: I'm not worried about anything.  Challenge me any time.  :)
	Laurie_Menke: <3 


35815)
Started: 2020.1.22, Ended: 2020.1.28
Participants: eliscinsky (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) eliscinsky: Homeworld R1 B3 G3
	Trydnt: This is for the tournament

3) Trydnt: Build G1 Trydnt
	eliscinsky: Agreed, for the 2019 tourney. GL & HF!
	eliscinsky: FYI, I submitted the "Game Start Form"

4) eliscinsky: Build G1 Eliscinsky
	Trydnt: awesome thanks


5) Trydnt: Trade G1 R1 Trydnt

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Trydnt: Build R1 Trydnt

8) eliscinsky: Build Y1 Eliscinsky

9) Trydnt: Build R2 Trydnt

10) eliscinsky: Build Y2 Eliscinsky

11) Trydnt: Discover R2 Trydnt Y3 Y3

12) eliscinsky: Trade Y2 R2 Eliscinsky

13) Trydnt: Discover R1 Trydnt B3 B3

14) eliscinsky: Build G1 Eliscinsky

15) Trydnt: Build G1 Trydnt

16) eliscinsky: Build Y2 Eliscinsky

17) Trydnt: Sacrifice G3 Trydnt
Build R2 Y3
Build R3 B3
Build R3 Trydnt

18) eliscinsky: Build R3 Eliscinsky
	eliscinsky: Very interesting move there.

19) Trydnt: Trade R3 Y3 B3

20) eliscinsky: Discover R3 Eliscinsky G2 Mold

21) Trydnt: Sacrifice G1 Trydnt
Build R3 B3

22) eliscinsky: Move Y2 Eliscinsky Mold

23) Trydnt: Trade R3 G3 Trydnt

24) eliscinsky: Build R3 Mold

25) Trydnt: Sacrifice Y3 B3
Move R1 B3 Mold
Move R2 Y3 Mold
Catastrophe Mold R
Move R3 B3 Mold

26) eliscinsky: Discover Y2 Mold G3 Fungus

27) Trydnt: Build R1 Trydnt

28) eliscinsky: Trade G1 B1 Eliscinsky

29) Trydnt: Sacrifice G3 Trydnt
Build R2 Mold
Build R3 Y3
Build R3 Trydnt

30) eliscinsky: Build G1 Eliscinsky

31) Trydnt: Trade R1 G1 Trydnt

32) eliscinsky: Build R1 Eliscinsky

33) Trydnt: Discover R3 Y3 B2 B2

34) eliscinsky: Sacrifice Y2 Fungus
Move R2 Eliscinsky Mold
Move R1 Eliscinsky Mold
Catastrophe Mold R

35) Trydnt: Build R1 Trydnt

36) eliscinsky: Build Y2 Eliscinsky

37) Trydnt: Sacrifice G1 Trydnt
Build R2 B2

38) eliscinsky: Discover Y1 Eliscinsky G2 Mold

39) Trydnt: Trade R3 Y3 B2

40) eliscinsky: Discover Y1 Eliscinsky G2 Fungus

41) Trydnt: Discover R1 Trydnt Y3 Why3

42) eliscinsky: Build Y2 Eliscinsky

43) Trydnt: Trade R3 G3 Trydnt

44) eliscinsky: Trade Y2 R2 Eliscinsky

45) Trydnt: Sacrifice G3 Trydnt
Build R3 B2
Build R3 Why3
Build R3 Trydnt

46) eliscinsky: Build B1 Eliscinsky

47) Trydnt: Trade R3 G3 B2

48) eliscinsky: Discover Y1 Mold G3 Algae
	eliscinsky: Very interesting strategy you're working here. TY for the lesson.

49) Trydnt: Build Y2 B2

50) eliscinsky: Move B1 Eliscinsky Fungus

51) Trydnt: Move R3 Why3 Fungus
	Trydnt: You gotta watch out at the start for resets that basically take us back in time but leave your opponent just a point or two ahead. It can make all the difference. Out of curiosity, why do you like goldilocks?
	eliscinsky: I still consider myself a newbie at HWs.  So I'm trying several different strategies in my games to see what works best for me. I saw that you didn't create your HW to include R, so I thought I would try to capture the economy.  It backfired.  My curiosity, how long have you been playing HWs? I see you're currently undefeated, and in 2018 you were 7 out of 11.

52) eliscinsky: Discover B1 Fungus R3 Mars
	eliscinsky: BTW, just because I consider myself a newbie, I've only really played HWs in the Tournament `18 & `19, don't take it easy on me. ;) I love learning from my mistakes. :D  Love learning strategies used against me. 
	Trydnt: I started playing in 2017 so shortly before you. I had the great fortune of being taught by Wil who is also an excellent player and amazing teacher. We lived close to each other and the Looneys so got to practice against the creators and some of the best players quite a lot in the early days. You have the right mindset though. A loss is only a failure if you learned nothing from the experience. I stopped paying so much attention to wins and loses and focused instead on how to learn as much from each game as possible.

53) Trydnt: Move Y3 B2 Mars

54) eliscinsky: Move Y1 Fungus Algae

55) Trydnt: Move R2 B2 Algae

56) eliscinsky: Sacrifice Y2 Eliscinsky
Move Y1 Algae Trydnt
Move Y1 Algae Trydnt

57) Trydnt: Sacrifice R2 Algae
Attack Y1 Trydnt
Attack Y1 Trydnt

58) eliscinsky: Trade R2 Y2 Eliscinsky

59) Trydnt: Attack B1 Mars

60) eliscinsky: Build Y2 Eliscinsky

61) Trydnt: Build G1 B2
	eliscinsky: I am soooo behind. LOL

62) eliscinsky: Trade Y2 R2 Eliscinsky

63) Trydnt: Sacrifice G3 B2
Build R2 Fungus
Build Y2 B2
Build B1 Mars

64) eliscinsky: Discover G1 Eliscinsky B2 Blue2

65) Trydnt: Move B1 Mars Fungus

66) eliscinsky: Move B1 Eliscinsky Blue2

67) Trydnt: Build B3 Fungus

68) eliscinsky: Build G1 Eliscinsky

69) Trydnt: Sacrifice Y3 Mars
Move R3 Fungus Eliscinsky
Move R2 Fungus Eliscinsky
Move B3 Fungus Eliscinsky
Catastrophe Eliscinsky R

70) eliscinsky: Build Y3 Eliscinsky
	eliscinsky: This is becoming pointless. I yeild to your superior numbers, position, and ability.  If you agree I'll just resign.  Otherwise it may take a dozen moves or so, but in the end you'll take me anyway.  Is there a difference ranking / point wise in defeating an opponent vs. a resignation?  I'd like you to get the best ranking out of this.

I tip my hat to you good sir, well played! Cheers! 

71) Trydnt: Sacrifice Y2 B2
Move B1 Fungus Eliscinsky
Discover B1 Mars Y2 Y2

72) eliscinsky: Trade Y3 R3 Eliscinsky
	Trydnt: I think that takes care of it haha I always prefer to play it through to the end
	Trydnt: I don't believe there's any difference in terms of points or anything
	eliscinsky: LOL, Check and Mate!  Again, well played.  Then just for sh!ts and giggles, I'll play it out.  5 moves I think.  :D

Thanks for a great game, and lesson.  Hope I wasn't to easy. :P

73) Trydnt: Move B1 Y2 Eliscinsky
Catastrophe Eliscinsky B

	eliscinsky: SUPERNOVA!
	Trydnt: Good game and good luck in the rest of the tournament!


35884)
Started: 2020.1.22, Ended: 2020.3.5
Participants: Laurie_Menke (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	Trydnt: For the tournament

2) Laurie_Menke: Homeworld Y1 B3 G3
	Laurie_Menke: ::sigh:: I'm sorry for the big delay, Trydnt. I was on a cruise and then at a convention and thought I could still keep up, but failed miserably. I'll do better now!

3) Trydnt: Build G1 Trydnt
	Trydnt: no worries figured you were busy. Good luck :)

4) Laurie_Menke: Build G1 Laurie_menke
	Laurie_Menke: Thanks, you too!

5) Trydnt: Trade G1 Y1 Trydnt

6) Laurie_Menke: Trade G3 Y3 Laurie_menke

7) Trydnt: Build Y2 Trydnt

8) Laurie_Menke: Build Y2 Laurie_menke

9) Trydnt: Discover Y1 Trydnt G3 G3

10) Laurie_Menke: Trade Y2 R2 Laurie_menke

11) Trydnt: Build Y2 G3

12) Laurie_Menke: Build G1 Laurie_menke

13) Trydnt: Build Y2 Trydnt
	Laurie_Menke: ::sigh::  This is already not going well...

14) Laurie_Menke: Discover G1 Laurie_menke B2 Blue
	Trydnt: yeah two 1s of the same color does not end well for whoever goes second
	Laurie_Menke: I never thought of it that way. I still have a lot to learn about initial setup strategy.

15) Trydnt: Build Y3 G3

16) Laurie_Menke: Trade Y3 G3 Laurie_menke

17) Trydnt: Discover Y2 G3 G1 G1

18) Laurie_Menke: Build G2 Laurie_menke

19) Trydnt: Build G2 Trydnt

20) Laurie_Menke: Trade G3 Y3 Laurie_menke

21) Trydnt: Build Y3 G1

22) Laurie_Menke: Build G2 Blue

23) Trydnt: Trade G2 R2 Trydnt

24) Laurie_Menke: Build R1 Laurie_menke

25) Trydnt: Build R1 Trydnt

26) Laurie_Menke: Trade R1 B1 Laurie_menke

27) Trydnt: Trade R1 B1 Trydnt

28) Laurie_Menke: Build B1 Laurie_menke

29) Trydnt: Sacrifice Y3 G1
Move B1 Trydnt G3
Move B1 G3 Blue
Move B1 Blue Laurie_menke
Catastrophe Laurie_menke B

30) Laurie_Menke: Sacrifice Y3 Laurie_menke
Discover G2 Blue Y3 Hi
Move G1 Blue Hi
Move G1 Hi Trydnt

31) Trydnt: Sacrifice Y2 Trydnt
Move Y2 Trydnt G3
Move Y1 G3 Laurie_menke

32) Laurie_Menke: Sacrifice G2 Laurie_menke
Build G2 Trydnt
Build G2 Trydnt
Catastrophe Trydnt G

33) Trydnt: Sacrifice Y2 G1
Move Y3 G3 Laurie_menke
Move Y2 G3 Laurie_menke
Catastrophe Laurie_menke Y
	Laurie_Menke: Thanks for the fun and congrats on the win! We miss you around here!
	Trydnt: Thank you! Miss you all terribly. I'm hoping to send a challenger to face off against Andy sometime soon. Been teaching my partner to play
	Laurie_Menke: Excellent! Did you see that Andy's going to be taking on challengers via Zoom soon? Anybody who wants to challenge him can get on the list here:  https://docs.google.com/forms/d/e/1FAIpQLSf-5iGYZe39P_Fd2AREJYbE_2p-g5WXyL3QR8yj7EoAafYmag/viewform?usp=sf_link

See you around!



35592)
Started: 2020.1.22, Ended: 2020.1.29
Participants: ajo (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	ajo: For the Great Homeworlds Tournament of 2019!
	Babamots: Yessir. Good luck!

2) ajo: Homeworld Y2 B3 G3

3) Babamots: Build G1 Babamots

4) ajo: Build G1 Ajo

5) Babamots: Trade G1 R1 Babamots

6) ajo: Trade G1 R1 Ajo

7) Babamots: Build R2 Babamots

8) ajo: Build R2 Ajo

9) Babamots: Trade R1 Y1 Babamots

10) ajo: Trade R2 Y2 Ajo

11) Babamots: Build Y1 Babamots

12) ajo: Build G1 Ajo

13) Babamots: Discover Y1 Babamots G3 Risa

14) ajo: Discover G1 Ajo B1 Alpha

15) Babamots: Build G1 Babamots

16) ajo: Build G1 Ajo

17) Babamots: Sacrifice G3 Babamots
Build Y1 Babamots
Build Y2 Risa
Build Y3 Babamots

18) ajo: Build G2 Alpha
	ajo: Bah.

19) Babamots: Build Y3 Risa

20) ajo: Sacrifice Y2 Ajo
Discover G1 Alpha B3 Beta
Discover G2 Alpha B3 Gamma

21) Babamots: Move Y3 Babamots Gamma

22) ajo: Sacrifice G2 Gamma
Build G2 Beta
Build R1 Ajo

23) Babamots: Build Y2 Babamots

24) ajo: Trade G2 R2 Beta

25) Babamots: Sacrifice G1 Babamots
Build Y3 Gamma

26) ajo: Discover R1 Ajo G1 Alpha

27) Babamots: Trade Y1 B1 Babamots

28) ajo: Sacrifice G3 Ajo
Build R2 Alpha
Build R3 Beta
Build R3 Ajo

29) Babamots: Move Y3 Risa Alpha

30) ajo: Trade R3 G3 Ajo

31) Babamots: Build Y1 Risa

32) ajo: Sacrifice G3 Ajo
Build G2 Beta
Build R3 Ajo
Build R3 Alpha

33) Babamots: Discover Y3 Alpha G3 Orion

34) ajo: Trade R2 B2 Beta

35) Babamots: Move B1 Babamots Risa

36) ajo: Sacrifice B2 Beta
Trade R3 G3 Alpha
Trade R2 B2 Alpha

37) Babamots: Build B1 Risa

38) ajo: Sacrifice G3 Alpha
Build R2 Beta
Build R2 Alpha
Build R3 Alpha

39) Babamots: Discover Y1 Babamots G3 Gravesworld
	ajo: This is an interesting game. I was really losing (right after my "Bah" comment as I fell into the Yellowbird trap yet again), but for the past several turns it's felt like I'm ahead and the only thing stopping me from cruising to victory is the fact that none of my ships can, um, move. :D
	Babamots: I think you can't technically be ahead since I could just pass forever :-D.
	Babamots: This might be my favorite match I've played. Super interesting.

40) ajo: Build B1 Alpha

41) Babamots: Build B2 Risa

42) ajo: Build G2 Ajo

43) Babamots: Move R2 Babamots Risa
	Babamots: Sorry for all the undo's. It's a narrow rail I'm trying to walk.

44) ajo: Trade R2 G2 Alpha

45) Babamots: Build R2 Risa
	Babamots: I'm curious how you feel about the position now. Any different? You can tell me later if you don't want to give anything away.

46) ajo: Pass
	ajo: Well, I saw you building your Doomsday Machine since a few turns ago (I mean that's when it really got urgent for me and I failed to get all the blue fast enough to prevent you). But I also think you can't get close enough to one-two catastrophe me without sacrificing a yellow and letting me get it. You're definitely ahead, anyway. :)

47) Babamots: Sacrifice Y1 Gravesworld
Discover Y3 Gamma Y1 Zakdorn
	Babamots: Risa is crowded. Must be the tourist season.

48) ajo: Build G3 Ajo

49) Babamots: Move R2 Risa Zakdorn

50) ajo: Pass
	Babamots: Here comes the fun part...

51) Babamots: Move B1 Risa Zakdorn
	Babamots: And I suddenly realize that the move I'd been planning for days probably isn't the best.

52) ajo: Pass
	Babamots: My concern with sacrificing a y1 in Risa was that you could have moved a g1 to my new system and, if I didn't attack it, you could move g1 to Gravesworld and threaten my y1. I could just move the y1 to my home, but that makes the game longer than necessary. If I attacked your g1, then you could also move in the g2 and I'd have the same problem, but more so since, if I attacked the g2 as well, I'd be out of red and you could walk all over me.

Anyway, I think I shortened the game by a move or two by picking a different ship to terraform.

53) Babamots: Move B1 Risa Zakdorn

54) ajo: Pass

55) Babamots: Move B2 Risa Zakdorn

56) ajo: Move G1 Ajo Zakdorn
	ajo: Yeah, I think there's no way out for me, if you play your cards right.

57) Babamots: Sacrifice Y3 Zakdorn
Move B1 Zakdorn Ajo
Move B1 Zakdorn Ajo
Move B2 Zakdorn Ajo
Catastrophe Ajo B

58) ajo: Discover R3 Ajo Y3 Bah
	Babamots: I was planning this phase for a long time. Back when you had a large green, if you'd kept me from getting a second red, I think you could have stalled forever.

59) Babamots: Sacrifice Y3 Orion
Move Y1 Risa Ajo
Move Y1 Risa Ajo
Move Y2 Risa Ajo
Catastrophe Ajo Y

	ajo: Welp, that's game. GG!
	Babamots: Valiantly fought, sir! GG!
	Draw5PlayAll: Zakdorn?!
	Babamots: Homeworld of a race of brilliant strategists.

https://www.google.com/search?q=zakdorn


35913)
Started: 2020.1.23, Ended: 2020.3.16
Participants: ts52 (S), goulo (N)
Winner: ts52

1) goulo: Homeworld G3 B2 Y3

2) ts52: Homeworld Y2 B1 G3
	goulo: hi have fun in this tournament game. :)
	goulo: I added it via the start form to the tournament table.
	ts52: Thanks! Have a good game!

3) goulo: Build Y1 Goulo

4) ts52: Build G1 Ts52

5) goulo: Build Y1 Goulo

6) ts52: Trade G1 B1 Ts52

7) goulo: Trade Y1 B1 Goulo

8) ts52: Build B2 Ts52

9) goulo: Build B2 Goulo

10) ts52: Discover B2 Ts52 G3 Kermit

11) goulo: Trade B1 R1 Goulo

12) ts52: Build G1 Ts52

13) goulo: Discover B2 Goulo G1 Verdeto

14) ts52: Build G1 Ts52

15) goulo: Build Y1 Goulo

16) ts52: Trade B1 R1 Ts52

17) goulo: Discover Y1 Goulo Y1 Flaveto

18) ts52: Discover G1 Ts52 B3 Gonzo

19) goulo: Build Y2 Goulo

20) ts52: Build G2 Gonzo

21) goulo: Trade B2 G2 Verdeto

22) ts52: Trade G2 Y2 Gonzo

23) goulo: Discover Y1 Flaveto R3 Rughego

24) ts52: Build Y1 Gonzo

25) goulo: Move Y1 Goulo Verdeto

26) ts52: Discover G1 Ts52 Y3 Bigbird

27) goulo: Build Y3 Verdeto

28) ts52: Build G2 Bigbird

29) goulo: Move Y3 Verdeto Gonzo

30) ts52: Discover Y2 Gonzo B1 Grover

31) goulo: Sacrifice R1 Goulo
Attack Y1 Gonzo

32) ts52: Build G2 Ts52

33) goulo: Trade Y2 R2 Goulo

34) ts52: S G3 Ts52
B G3 Ts52
B Y2 Grover
B B1 Kermit

35) goulo: Move Y3 Gonzo Grover

36) ts52: Move Y2 Grover Rughego

37) goulo: Move Y1 Rughego Verdeto

38) ts52: Build R1 Ts52

39) goulo: Build R1 Goulo

40) ts52: Move Y2 Grover Kermit

41) goulo: Move Y3 Grover Kermit

42) ts52: Move B2 Kermit Ts52

43) goulo: Sacrifice R2 Goulo
Attack G1 Gonzo
Attack Y2 Kermit

44) ts52: Build R2 Ts52

45) goulo: Discover Y1 Verdeto R3 Rubenego

46) ts52: Move R2 Ts52 Gonzo

47) goulo: Move Y1 Gonzo Verdeto

48) ts52: Attack G1 Gonzo

49) goulo: Build R2 Goulo

50) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build R2 Gonzo
Build R3 Ts52

51) goulo: Discover Y1 Verdeto B3 Bluego

52) ts52: Discover G1 Bigbird B1 Grover

53) goulo: Discover Y1 Verdeto B3 Safirego

54) ts52: Sacrifice G2 Bigbird
Build G2 Grover
Build Y3 Rughego

55) goulo: Sacrifice Y2 Kermit
Move Y1 Bluego Ts52
Move Y1 Safirego Ts52

56) ts52: Build B2 Ts52

57) goulo: Sacrifice R1 Goulo
Attack B1 Kermit

58) ts52: Sacrifice Y2 Rughego
Move B2 Ts52 Rubenego
Move B2 Ts52 Rubenego

59) goulo: Move Y1 Rubenego Ts52
Catastrophe Ts52 Y

60) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build B3 Rubenego
Build Y1 Rughego

61) goulo: Build B3 Kermit

62) ts52: Trade R2 Y2 Gonzo

63) goulo: Sacrifice Y3 Kermit
Move B1 Kermit Verdeto
Move B1 Verdeto Rubenego
Discover G2 Verdeto Y2 Flavo
Catastrophe Rubenego B

64) ts52: Trade G1 B1 Grover

65) goulo: Build B2 Kermit

66) ts52: Build Y1 Gonzo

67) goulo: Build R1 Goulo

68) ts52: Sacrifice Y3 Rughego
Move R1 Ts52 Goulo
Move R1 Ts52 Goulo
Catastrophe Goulo Red
Move R3 Ts52 Goulo

	goulo: Well that's a surprise! I didn't remember that the rules were changed later so that catastrophe could be done any time during a turn instead of at the end. Congrats!
	ts52: Thanks. Yeah, that catastrophe change makes a big difference. Good game!


35874)
Variants: "Hard time"
Started: 2020.1.23, Ended: 2020.1.26
Participants: Trydnt (S), wil (N)
Winner: Trydnt



35873)
Variants: "Hard time"
Started: 2020.1.23, Ended: 2020.1.26
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y2 G3 *



35929)
Variants: "Unrated"
Started: 2020.1.24, Ended: 2020.3.24
Participants: Ercepeda (S), LanguiDude (N)
Winner: LanguiDude

1) LanguiDude: Homeworld B3 R1 G3

2) Ercepeda: Homeworld R2 B3 G3

3) LanguiDude: Build G1 Languidude

4) Ercepeda: Build G1 Ercepeda

5) LanguiDude: Trade G1 Y1 Languidude

6) Ercepeda: Trade G1 Y1 Ercepeda

7) LanguiDude: Build G1 Languidude

8) Ercepeda: Build G1 Ercepeda

9) LanguiDude: Trade G1 R1 Languidude

10) Ercepeda: Discover G1 Ercepeda G1 Ferno

11) LanguiDude: Build R1 Languidude

12) Ercepeda: Build Y1 Ercepeda

13) LanguiDude: Discover R1 Languidude Y2 Midgard

14) Ercepeda: Build Y2 Ercepeda

15) LanguiDude: Move R1 Midgard Ferno

16) Ercepeda: Sacrifice G1 Ferno
Build G1 Ercepeda

17) LanguiDude: Build R2 Ferno

18) Ercepeda: Trade Y1 B1 Ercepeda

19) LanguiDude: Build R2 Ferno

20) Ercepeda: Trade G3 R3 Ercepeda

21) LanguiDude: Build R3 Languidude

22) Ercepeda: Discover Y2 Ercepeda G1 Dulanta

23) LanguiDude: Trade R3 Y3 Languidude

24) Ercepeda: Trade R3 G3 Ercepeda

25) LanguiDude: Build G2 Languidude

26) Ercepeda: Move G1 Ercepeda Dulanta

27) LanguiDude: Build R3 Languidude



35932)
Started: 2020.1.26, Ended: 2020.1.30
Participants: huddyrx (S), Mantheron (N)
Winner: huddyrx

1) Mantheron: Homeworld R1 B2 G3

2) huddyrx: Homeworld B3 R2 G3

3) Mantheron: Build G1 Mantheron (n)

4) huddyrx: Build G1 Huddyrx

5) Mantheron: Trade G1 Y1 Mantheron

6) huddyrx: Trade G1 Y1 Huddyrx

7) Mantheron: Build G1 Mantheron

8) huddyrx: Discover Y1 Huddyrx G1 Cosmo

9) Mantheron: Trade G1 R1 Mantheron

10) huddyrx: Build G1 Huddyrx

11) Mantheron: Build R1 Mantheron

12) huddyrx: Trade G1 B1 Huddyrx

13) Mantheron: Build R2 Mantheron

14) huddyrx: Build B1 Huddyrx
Catastrophe Mantheron Red

15) Mantheron: Build G1 Mantheron

16) huddyrx: Trade G3 R3 Huddyrx

17) Mantheron: Trade G1 R1 Mantheron

18) huddyrx: Build Y1 Cosmo

19) Mantheron: Build Y2 Mantheron

20) huddyrx: Move Y1 Cosmo Huddyrx

21) Mantheron: Trade Y2 B2 Mantheron

22) huddyrx: Trade R3 Y3 Huddyrx

23) Mantheron: Build Y2 Mantheron

24) huddyrx: Move B1 Huddyrx Cosmo

25) Mantheron: Trade B2 R2 Mantheron

26) huddyrx: Discover B1 Huddyrx G1 Astro

27) Mantheron: Move R2 Mantheron Cosmo

28) huddyrx: Build B1 Astro

29) Mantheron: Attack Y1 Cosmo

30) huddyrx: Sacrifice Y3 Huddyrx
Move B1 Astro Mantheron
Move B1 Astro Mantheron
Move B1 Cosmo Mantheron
Catastrophe Mantheron Blue



35933)
Started: 2020.1.26, Ended: 2020.2.6
Participants: tkvaran (S), huddyrx (N)
Winner: tkvaran

1) huddyrx: Homeworld B3 R1 G3

2) tkvaran: Homeworld B3 G2 R3

3) huddyrx: Build G1 Huddyrx

4) tkvaran: Build R1 Tkvaran

5) huddyrx: Build G1 Huddyrx

6) tkvaran: Trade R1 Y1 Tkvaran

7) huddyrx: Trade G1 Y1 Huddyrx

8) tkvaran: Discover Y1 Tkvaran G1 Asimov

9) huddyrx: Discover G1 Huddyrx B2 Sagan

10) tkvaran: Build Y1 Asimov

11) huddyrx: Trade G1 R1 Sagan

12) tkvaran: Build Y2 Asimov

13) huddyrx: Build Y2 Huddyrx
	tkvaran: Testing if this lets us chat.
	tkvaran: It does!

14) tkvaran: Move Y2 Asimov Sagan
	huddyrx: I didn't realize there was a chat function. I'm having fun pushing buttons and looking forward to learning some strategy. I just got to do a catastrophe in my other game. 

15) huddyrx: Move Y1 Huddyrx Sagan

16) tkvaran: Trade Y2 R2 Sagan

17) huddyrx: Move R1 Sagan Asimov

18) tkvaran: Attack Y1 Sagan

19) huddyrx: Attack Y1 Asimov

20) tkvaran: Move Y1 Asimov Sagan

21) huddyrx: Build Y2 Asimov

22) tkvaran: Trade Y1 G1 Sagan

23) huddyrx: Build G1 Huddyrx

24) tkvaran: Build G2 Sagan

25) huddyrx: Discover G1 Huddyrx R2 Newton

26) tkvaran: Trade G2 Y2 Sagan

27) huddyrx: Build G2 Newton

28) tkvaran: Discover Y2 Sagan G3 Galileo

29) huddyrx: Build G2 Huddyrx

30) tkvaran: Build G3 Sagan

31) huddyrx: Trade G2 B2 Huddyrx

32) tkvaran: Sacrifice G3 Sagan
Build Y1 Sagan
Build Y3 Galileo
Build G2 Sagan

33) huddyrx: Sacrifice Y2 Huddyrx
Move Y1 Asimov Sagan
Move Y2 Asimov Sagan
Catastrophe Sagan Yellow

34) tkvaran: Sacrifice G2 Sagan
Build G2 Sagan
Build G3 Sagan
	tkvaran: You monster!

35) huddyrx: Trade G3 Y3 Huddyrx

36) tkvaran: Trade G2 B2 Sagan

37) huddyrx: Sacrifice G2 Newton
Build Y1 Huddyrx
Build G2 Newton

38) tkvaran: Move Y3 Galileo Newton

39) huddyrx: Move Y1 Huddyrx Newton

40) tkvaran: Trade G1 B1 Sagan

41) huddyrx: Trade B2 G2 Huddyrx

42) tkvaran: Attack G2 Newton

43) huddyrx: Move G1 Newton Asimov

44) tkvaran: Attack Y1 Newton

45) huddyrx: Build R1 Asimov

46) tkvaran: Sacrifice B2 Sagan
Trade Y1 B1 Newton
Trade G2 B2 Newton

47) huddyrx: Build Y1 Huddyrx

48) tkvaran: Sacrifice Y3 Newton
Move B2 Newton Huddyrx
Move B1 Newton Huddyrx
Move B1 Sagan Huddyrx
Catastrophe Huddyrx Blue

49) huddyrx: Build G1 Huddyrx

50) tkvaran: Build R2 Sagan

51) huddyrx: Build G2 Asimov
	huddyrx: The image is broken for me. I'll have to check back tomorrow to see if it's fixed.

52) tkvaran: Build G3 Sagan

53) huddyrx: Sacrifice G2 Asimov
Build R2 Asimov
Build G2 Asimov

54) tkvaran: Sacrifice Y2 Galileo
Move G3 Sagan Asimov
Move G3 Sagan Asimov
Catastrophe Asimov Green

55) huddyrx: Discover G1 Huddyrx B2 Copernicus

56) tkvaran: Trade R2 G2 Sagan

57) huddyrx: Build G1 Copernicus

58) tkvaran: Build R1 Sagan

59) huddyrx: Move Y1 Huddyrx Copernicus

60) tkvaran: Build R1 Tkvaran

61) huddyrx: Discover G1 Copernicus Y1 Hubble

62) tkvaran: Trade R3 Y3 Tkvaran

63) huddyrx: Build G1 Hubble

64) tkvaran: Build Y1 Tkvaran

65) huddyrx: Build G3 Huddyrx

66) tkvaran: Sacrifice Y3 Tkvaran
Move R2 Sagan Huddyrx
Move R1 Sagan Huddyrx
Move R1 Tkvaran Huddyrx
Catastrophe Huddyrx Red
	tkvaran: Great game!  Thanks for the game.  Really enjoyed it
	huddyrx: It was fun! I've got a lot to learn as far as strategy, but I can see this becoming one of my favorite games.



35931)
Started: 2020.1.26, Ended: 2020.2.19
Participants: tkvaran (S), Mantheron (N)
Winner: tkvaran

1) Mantheron: Homeworld B1 R3 G3

2) tkvaran: Homeworld R3 G2 B3

3) Mantheron: Build G1 Mantheron

4) tkvaran: Build B1 Tkvaran

5) Mantheron: Trade G1 Y1 Mantheron

6) tkvaran: Build B1 Tkvaran

7) Mantheron: Build Y1 Mantheron

8) tkvaran: Trade B1 Y1 Tkvaran

9) Mantheron: Build Y2 Mantheron

10) tkvaran: Build Y2 Tkvaran

11) Mantheron: Build G1 Mantheron

12) tkvaran: Discover Y2 Tkvaran G1 Oprah

13) Mantheron: Trade Y1 R1 Mantheron

14) tkvaran: Move B1 Tkvaran Oprah

15) Mantheron: Discover Y2 Mantheron G2 Picard

16) tkvaran: Build Y1 Oprah

17) Mantheron: Move R1 Mantheron Picard

18) tkvaran: Trade Y2 R2 Oprah

19) Mantheron: Build Y2 Picard

20) tkvaran: Build Y2 Oprah

21) Mantheron: Build Y3 Mantheron

22) tkvaran: Move Y2 Oprah Picard

23) Mantheron: Discover Y2 Picard B3 Data

24) tkvaran: Build Y3 Oprah

25) Mantheron: Attack Y2 Picard

26) tkvaran: Build Y3 Tkvaran

27) Mantheron: Build R1 Picard

28) tkvaran: Move Y3 Oprah Picard

29) Mantheron: Move R1 Picard Data

30) tkvaran: Move Y3 Picard Data

31) Mantheron: Move G3 Mantheron Picard

32) tkvaran: Sacrifice R2 Oprah
Attack R1 Data
Attack Y2 Data

33) Mantheron: Build G1 Mantheron

34) tkvaran: Discover Y2 Data R2 Ellen

35) Mantheron: Build G2 Picard

36) tkvaran: Move Y1 Oprah Ellen

37) Mantheron: Build G3 Mantheron

38) tkvaran: Sacrifice Y3 Tkvaran
Move Y2 Ellen Mantheron
Move Y1 Ellen Mantheron
Catastrophe Mantheron Yellow
Discover B1 Oprah R2 Sallyjessie

39) Mantheron: Trade G1 B1 Mantheron

40) tkvaran: Build B2 Tkvaran

41) Mantheron: Build B2 Mantheron

42) tkvaran: Sacrifice Y1 Tkvaran
Move B1 Sallyjessie Mantheron
Catastrophe Mantheron Blue

43) Mantheron: Discover G3 Picard R1 Worf

44) tkvaran: Trade B2 Y2 Tkvaran

45) Mantheron: Build R2 Picard

46) tkvaran: Discover Y2 Tkvaran B1 Montel

47) Mantheron: Discover Y2 Picard B1 Riker

48) tkvaran: Discover R1 Data G1 Rickilake

49) Mantheron: Move R2 Picard Rickilake

50) tkvaran: Build B1 Tkvaran

51) Mantheron: Attack R1 Rickilake

52) tkvaran: Trade Y2 R2 Montel

53) Mantheron: Build R2 Picard

54) tkvaran: Build B2 Tkvaran

55) Mantheron: Move R2 Picard Riker

56) tkvaran: Trade B1 G1 Tkvaran

57) Mantheron: Build R3 Picard

58) tkvaran: Trade B2 Y2 Tkvaran

59) Mantheron: Build G3 Worf

60) tkvaran: Move G1 Tkvaran Montel

61) Mantheron: Sacrifice G3 Worf
Build G3 Worf
Build Y1 Riker
Build Y1 Picard
	tkvaran: This game is crazy.  Not sure I've played a game of Homeworlds that was so big before

62) tkvaran: Build B1 Tkvaran

63) Mantheron: Move R3 Picard Montel

64) tkvaran: Sacrifice Y2 Tkvaran
Move G1 Montel Mantheron
Move R2 Montel Mantheron

65) Mantheron: Sacrifice R2 Rickilake
Attack R2S Mantheron
Attack G1S Mantheron

66) tkvaran: Trade B3 Y3 Tkvaran

67) Mantheron: Move Y1 Picard Mantheron

68) tkvaran: Build B2 Tkvaran

69) Mantheron: Move R1 Picard Riker

70) tkvaran: Move B2 Tkvaran Rickilake

71) Mantheron: Sacrifice Y2 Riker
Move R1 Rickilake Tkvaran
Move R1 Riker Tkvaran

72) tkvaran: Trade B2 R2 Rickilake

73) Mantheron: Move R2 Riker Tkvaran
Catastrophe Tkvaran Red

74) tkvaran: Build R1 Rickilake

75) Mantheron: Move R2 Mantheron Picard

76) tkvaran: Trade B1 R1 Tkvaran

77) Mantheron: Move G1 Mantheron Tkvaran

78) tkvaran: Sacrifice Y3 Data
Move R1 Rickilake Mantheron
Move R2 Rickilake Mantheron
Move R1 Tkvaran Mantheron
Catastrophe Mantheron Red



35840)
Started: 2020.1.28, Ended: 2020.4.8
Participants: bhorner (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 B3 G3
	Simon: Hi! This is for the Great Homeworlds Tournament of 2019. Enjoy!
	bhorner: For the Great Homeworlds Tournament of 2019?  :)

2) bhorner: Homeworld R2 B1 G3
	bhorner: That was spooky fast...  :)
	bhorner: That was spooky fast...  :)

3) Simon: Build G1 Simon

4) bhorner: Build G1 Bhorner

5) Simon: Trade G1 Y1 Simon

6) bhorner: Trade G1 Y1 Bhorner

7) Simon: Build G1 Simon

8) bhorner: Build G1 Bhorner

9) Simon: Trade G1 R1 Simon

10) bhorner: Trade G1 R1 Bhorner

11) Simon: Build R2 Simon

12) bhorner: Build R2 Bhorner
	bhorner: I'll figure this out someday...  Maybe as my reaction to the first move, I can't do my favorite first move, I need to do something else.  Otherwise I just follow this same sequence, but the other person always gets to go first...

13) Simon: Discover R1 Simon B2 B2

14) bhorner: Discover R1 Bhorner Y3 Sun
	Simon: Yeah, first-player advantage seems strong in Homeworlds. The opening is typically forced for both after first player's decision of first trade.

15) Simon: Build R3 Simon

16) bhorner: Build R3 Bhorner

17) Simon: Trade R3 G3 Simon

18) bhorner: Trade R2 Y2 Bhorner

19) Simon: Move G3 Simon B2

20) bhorner: Sacrifice G3 Bhorner
Build R2 Sun
Build R3 Sun
Build R3 Bhorner

21) Simon: Build G1 B2

22) bhorner: Discover R1 Sun Y2 Star

23) Simon: Trade G3 Y3 B2

24) bhorner: Discover R3 Bhorner Y3 Sun2

25) Simon: Build G1 B2

26) bhorner: Discover R3 Sun Y2 Star2

27) Simon: Move R2 Simon B2

28) bhorner: Trade Y1 G1 Bhorner

29) Simon: Trade G1 B1 B2

30) bhorner: Move R2 Sun Star

31) Simon: Build Y1 B2

32) bhorner: Discover R3 Sun2 B2 Puddle

33) Simon: Sacrifice G3 Simon
Build Y1 Simon
Build Y3 Simon
Build Y3 B2

34) bhorner: Trade R3 G3 Bhorner

35) Simon: Build R3 B2

36) bhorner: Sacrifice Y2 Bhorner
Discover R1 Star G3 Tmp
Move R1 Tmp B2
Catastrophe B2 R

37) Simon: Discover Y1 Simon Y2 Y2

38) bhorner: Trade G1 R1 Bhorner

39) Simon: Build G1 B2

40) bhorner: Sacrifice G3 Bhorner
Build R1 Star2
Build R2 Puddle
Build R3 Bhorner
	Simon: I prepared tr y3 r3 b2 for this. But I'm contemplating to discover the y2 to immobilize. Very hard to calculate because this idea does not allow making reds for seveal moves.
	Simon: I won't have time to move for 2-3 days and don't want to rush at this junction :)
	bhorner: I'm going on vacation too (right now), but hope to be able to make moves.  I won't call you on time, so don't worry about it.  (I'd call you on time if you didn't move for 14 days.  :) )

This is a good game, making me think more than most (maybe all), I'd hate for you to rush a move.  :)

41) Simon: Build B1 B2
	Simon: All right, I don't see a refutation and it's the more interesting line.
	Simon: Enjoy the break, I won't flag this for at least 2 more weeks either!
	bhorner: Sorry, things got turned upside down a bit.  I will try to move this weekend.  Also, I think generally you are better than me.  I will still try hard, but don't feel bad if you have to force a resignation.  :)
	bhorner: Coming back to this today, I don't see a single thing I can do.  :)
* I can't move any ships but my reds at the y2s
* I can't build anywhere but home, and no matter what I build, I'll end up with three, and unable to move away.  :)
* Any move strands the moving ship, no moves can get a ship in a position to capture.

42) bhorner: Trade R2 G2 Puddle
	Simon: I agree that I can't lose here, the big question is whether I can win :) Most likely, there is a win, unless you somehow make many ships super quickly to hoard the pieces.

43) Simon: Discover B1 B2 B3 B3
	bhorner: You've already got all the yellow though, and it might take more moves, but I don't see any reason for you to ever let one go...  I have this very thin and predictable branch to explore.  :)

44) bhorner: Trade R3 G3 Bhorner

45) Simon: Discover Y3 B2 R3 R3

46) bhorner: Build R2 Puddle
	bhorner: I might have caught on to what you were saying.  It may be that I can't lose, but I kind of can't see how you can win.  You can't capture or catastrophe any of my ships if I never let you have a red...  Until right now, I thought this game could not end in a draw.  :)

47) Simon: Move G1 B2 R3

48) bhorner: Discover R1 Star2 B3 Ocean

49) Simon: Build B2 B2

50) bhorner: Pass
	bhorner: * I have the ammo to catastrophe the red half of your homeworld, but I would let you get some red ships.
* In moving in my reds, I would let you get red ships after the catastrophe, and give up control of my 2 yellow planets.
* I feel confident that you can keep me from getting yellow.
* I'm pretty sure I can keep you from getting red.
* If you have no red, you can catastrophe the blue half of my homeworld, but not the red half.
* If you can never take any of my red ships, you can never take any of my ships.

I think that it's a bad move for me to "move the game forward" at this point, because I can only move it forward half way to victory, and it opens the door for you to complete a victory.  I think you can get half way to victory, but cannot complete it unless I mess up.

I think it's my plan at this point to play for a draw, I think that's the best result I'm likely to achieve against you (especially in this particular game).

Happy to continue for a while (it's definitely possible that I'm wrong, and I actually can't stall the game out).  But if you're ready for a draw any time, I will accept.

51) Simon: Build G1 R3
	Simon: I'll see how much I can do without red. I can keep yellow from you at will, but I have the option to give you yellow if I get something worthwhile in return. Should nothing ever come up, then yes, it would be a draw.

52) bhorner: Pass

53) Simon: Build G2 R3

54) bhorner: Pass

55) Simon: Move G1 R3 Bhorner
	bhorner: I think it's pretty much all you from here until I'm dead or we draw.  :)

56) bhorner: Attack G1 Bhorner
	bhorner: I've made levels and levels of mistakes in my analysis.  :)  I've learned a lot during this game though.  :)  (About things that may never come up again...  lol)

57) Simon: Sacrifice Y3 B2
Move G1 R3 Bhorner
Move G2 R3 Bhorner
Move Y3 R3 Bhorner
Catastrophe Bhorner Green

58) bhorner: Build R3 Puddle
	Simon: Yeah, I can target large ships too, not only stars. Still, it wasn't 100 % clear from the start that I can make enough pieces for that :)

59) Simon: Attack R1 Bhorner

	Simon: Thanks for the game. The most unusual tourney game so far!
	bhorner: lol, I think a draw is possible now.  I think I might have even pulled it off this game if I'd done a couple things different.  Needed a big red at home.

It was the most unusual game I've ever played...  I'm glad I didn't realize it was going to be over a lot sooner.  Good game.  :)


35919)
Variants: "Unrated"
Started: 2020.1.28, Ended: 2020.2.7
Participants: Babamots (S), capi3101 (N)
Winner: Babamots

1) capi3101: Homeworld B1 Y3 G3
	capi3101: Howdy. Just realized I wasn't playing anybody - still need the practice...

2) Babamots: Homeworld B3 R1 G3

3) capi3101: B G1 Capi3101
	Babamots: I was just running low on games and put a standing challenge. Thanks for the game!

Did we play a training game a couple of months ago? If so, would you still like hints?
	capi3101: We did, and I still suck at the game so hints would be welcome...

4) Babamots: Build G1 Babamots

5) capi3101: Trade G1 B1 Capi3101
	Babamots: A few thoughts on the setup:

Very important: it's a small universe. We're both connected to medium systems, so our homes are only two moves away from each other.

Since I had a red star, it's easier for you to get lots of red ships than it is for me. That could be your shortcut to getting medium and large ships faster than I do.

On the other hand, I'd like to get lots of yellow, both because it's my usual strategy and because your yellow star will slow down your yellow production (a little). If I focus on yellow, my yellow-building may be slower-going (compared to your red) since there an r1 has already be used up.
	capi3101: Any particular reason why you chose to go with a small map?

6) Babamots: Trade G1 B1 Babamots
	Babamots: I think the game may be more instructive this way. Small maps are a little simpler, so I think it's easier to make plans and harder to make mistakes.

7) capi3101: B B2 Capi3101

8) Babamots: Build B2 Babamots

9) capi3101: Discover B2 Capi3101 Y2 Aleph

10) Babamots: Trade B1 Y1 Babamots
	capi3101: Programming note - I tend to use the Hebrew alphabet for naming stars. Change of pace from the standard Greek. Doesn't really matter of course...

11) capi3101: Build G1 Capi3101

12) Babamots: Build Y1 Babamots

13) capi3101: Trade B1 Y1 Capi3101
	capi3101: So far this is going as I thought it might. How big of a danger am I currently in of getting completely locked out of yellow?
	capi3101: I assume since I have access to blue in two different sizes I'm okay-ish at least.
	Babamots: You have a medium blue, so you'll be able to join the yellow race at the medium level. But you'll have to move it to another system in order to build more, and I've already got a two-ship head start. Unless you get started now, there's definitely a danger of me running away with so much of the yellow that you can't set up good attacks.

14) Babamots: Build Y2 Babamots

15) capi3101: Discover Y1 Capi3101 G2 Bet
	Babamots: Notice that it's not safe to build yellow at your home. You'll need a new system.
	capi3101: That put a kink in my plans - I had intended to move the small yellow up to Aleph, but if I do that now you could sac the y2, move in your two y1s and blow the star. You'd be the worse off for the exchange I think but you'd then be ahead on ship-buiding. Correct assessment?
	Babamots: Moving your y1 to Aleph doesn't do much for you since your building options would remain the same (you can only build green unless you sacrifice to build blue). If you move your y1 to Aleph, I won't bother causing a catastrophe. I would lose my valuable yellows (which I can spread out and possibly get a near-monopoly) whereas you would just lose two ships, each of which needs to move somewhere else before it can accomplish much.
	Babamots: You need to get your yellow to a new green system so you can compete for yellow ships a little. You should probably also slow down my yellow domination by letting the Aleph star go back to the bank.
	Babamots: On my turn, I will probably discover a new system with one of my yellows. If the bank remains unaltered, I could then potentially sacrifice my g3 to build all remaining yellow pieces (I would then have three at home and three in the new system).

By discovering a new g2 system with your y1, you prepare to build yellow yourself and simultaneously threaten to catastrophe the yellow ships in my home. It will force me to spread out more before I sacrifice-build. That gives you a turn in which to either

1) build a y2 (probably not the best since it makes it easier for me to get the y3) or

2) plug up the bank by moving away from Aleph (maybe to a y3 system, which would reduce the number of y3 I can get).
	capi3101: Makes sense.

Hey, could you send me a link to your strategy guide again? You had it on Facebook a couple of weeks back as I recall. I was going to copy down the link but never did for reasons...

16) Babamots: Discover Y1 Babamots G2 Risa
	Babamots: Here's the index to everything:

https://jpeterbaker.github.io/homeworlds/site/index.html

17) capi3101: Discover B2 Aleph Y3 Gimel

18) Babamots: Discover Y1 Babamots B2 Bolarus

19) capi3101: Build Y2 Bet
	capi3101: Okay. So your next move is likely to be a sac of the big green to clean out the remaining yellows. That gives you two yellows at each world and a big one at that.
	capi3101: My options to at least stymie you - I can't stop it entirely - are to either discover a big yellow star with the small yellow at Bet, or to grow a medium yellow there and at least give myself another ship.
	capi3101: Leaning towards growing. I do see a developing threat to my homeworld but I think I've got some time before you trigger it.
	capi3101: On the other hand, you can't make a triple move if you don't have a large yellow...
	capi3101: And with the board as small as it is, perhaps discovering is the better option.
	Babamots: Building y2 is pretty safe for you right now.
	capi3101: Oh good. I had had the thought that if I did get the y3 out of circ you probably wouldn't do the green sac altogether (for now), since you wouldn't be able to replace it right away.

20) Babamots: Build Y2 Babamots
	Babamots: Right, I could spend one large to get a different large, but it would reduce my ship diversity (no more green).

21) capi3101: Discover Y1 Bet Y3 Dalet
	capi3101: ..and now would be the time to get that last yellow out of circulation, right? You could build it easily at Risa and have an independent big ship at your disposal.

My option is to claim it with one of the ships at Bet. Building it at Bet would be dumb. Swapping my large at my homeworld for it would be immeasurably worse.

22) Babamots: Build G1 Babamots

23) capi3101: Trade G1 B1 Capi3101
	Babamots: Those y3s could be good investments for you if you can get a green there. My plan is to work on red next. You can't build anywhere now, so trading your g1 for red or maybe even blue is probably best for you.
	capi3101: I was leaning towards blue - get that out to Bet since it's the only frontline system I've got. Maybe go ahead and try to get that system happy in the longer term.

24) Babamots: Move B2 Babamots Risa
	capi3101: Wil's stomped me enough times to drill the importance of blue into my head already...

25) capi3101: Build G1 Capi3101

26) Babamots: Trade G1 R1 Babamots

27) capi3101: Trade G1 R1 Capi3101

28) Babamots: Move R1 Babamots Risa
	capi3101: Building green instead of swapping the blue for red might've cost me there.
	capi3101: I still lost the initiative on red, methinks.
	capi3101: Here, have a medium.
	capi3101: ...or not. Okay. That might've been a better play than I originally thought.
	Babamots: You started on red later, but since I have a red home star, I'm slowed down by a turn (I can't build another red right now, for example).

29) capi3101: Build R2 Capi3101
	capi3101: (Insert quip about how Risa is happy now here).

30) Babamots: Build R2 Risa

31) capi3101: Move R2 Capi3101 Bet

32) Babamots: Move R2 Risa Dalet

33) capi3101: Sacrifice Y1 Dalet
Move B1 Capi3101 Bet

34) Babamots: Build Y1 Risa

35) capi3101: Discover R2 Bet B3 Hey
	capi3101: That wasn't to my benefit, was it? You still get the small yellow if that was your goal, but this way you get to put it where you want.
	capi3101: Now I've got a definite threat sequence to my yellow star in progress...
	capi3101: m y1 capi3101; then s y2 babamots, m y1 risa capi3101, m y1 Bolarus capi3101, c capi3101 y.
	capi3101: I need to get the rest of blue out of circulation.
	capi3101: A better move for me would've been to discover a new star with the small yellow. Probably a small green star. 
	capi3101: Well, too late now...

36) Babamots: Build G1 Babamots
	capi3101: Going to be cleaning my house today and tomorrow; probably am not going to be on to play very much in that time period. Just letting you know.
	Babamots: No problem.

We've been playing keep-away so aggressively that we still don't have large ships to spare. It's kind of cramped, but it makes for an interesting game.

37) capi3101: Build G1 Capi3101
	capi3101: Was going to do b g1 capi3101 but I think you and I have the same idea with that last move...and you'd get there first.
	capi3101: Well, maybe not.

38) Babamots: Sacrifice G3 Babamots
Build R2 Dalet
Build R3 Dalet
Build R3 Risa

39) capi3101: Sacrifice G3 Capi3101
Build B1 Gimel
Build B3 Bet
Build R3 Capi3101

40) Babamots: Move R3 Risa Babamots
	Babamots: This isn't a very safe move for me since I'm leaving my home without a large, opening up a large for you, and putting three of my reds together. You should probably build the other r3, but a catastrophe on my reds isn't a totally dumb option.

I'm not sure how I should respond to either action, but it's such an interesting position I couldn't resist.
	Babamots: You shouldn't sacrifice y2 to invade me right away since I can counter-invade and capture all of your home ships before you can get all of mine.
	Babamots: In other words, don't move your g3 to my home right now.
	Babamots: The problem with the first "interesting" move I made and undid was that it left Risa without a medium ship. I was going to get to build a y3, but you could invade Risa and take my only red before I could exploit it. I wanted to do it because the position was interesting, but I decided it was too bad of a move.
	capi3101: Ugh...this is a bad idea......

41) capi3101: Move R1 Capi3101 Bet
	Babamots: Oh cool! I wasn't thinking of that. Good one.

42) Babamots: Sacrifice B2 Risa
Trade R2 B2 Dalet
Trade R3 G3 Dalet
	Babamots: You've got me a little twisted around now. I need to defend pretty carefully.
	Babamots: You have enough material for a slow doomsday machine:

https://jpeterbaker.github.io/homeworlds/site/tactics.html

I think your challenge will be to push all of the pieces at me without opening up an opportunity for me to cause a catastrophe.

43) capi3101: Build R2 Bet
	capi3101: Really? And here I thought I was in trouble...
	capi3101: I might need to get the red ship from Hey for that to work. I could do that by sacking my sole y2, but that kind of locks that move into the final one of the set.  
	capi3101: I think I see a sequence that ~might~ do the trick though. Going to depend on your responses.

44) Babamots: Build R3 Risa
	Babamots: I definitely think you're ahead. I might let you try to figure it out rather than helping you beat me :-)

45) capi3101: M R1 Bet Babamots
	Babamots: You can tell I'm flustered when I undo a lot. Sorry about that.

46) Babamots: Trade R3 G3 Babamots
	capi3101: K. Here goes nothing.

47) capi3101: B R3 Bet

48) Babamots: Attack R1 Babamots

49) capi3101: Move R2 Bet Babamots

50) Babamots: Sacrifice R1 Babamots
Attack R2 Babamots

51) capi3101: B R1 Bet

52) Babamots: Discover R2 Babamots G2 Orion

53) capi3101: Move B1 Bet Babamots

54) Babamots: Attack B1 Babamots
	Babamots: After that, I think the tables have turned. I may have time to disrupt your plans.

The guide I liked you to has a warning about one-ship-at-a-time red catastrophes, but I guess you didn't see that part.
	capi3101: Saw it, but I have yet to be beaten over the head with it as yet. Have now. Crap.

55) capi3101: Move B3 Bet Babamots
	Babamots: I've never forgotten that trick after I lost to it for the first time.

56) Babamots: Attack B3 Babamots
	capi3101: Ever have a game where every piece made it out of the bank before?
	capi3101: Asking out of curiosity.
	capi3101: I've been away from work since Friday and I was tracking the board state with my origami set I've got out there. Required quite the update today...
	capi3101: Commence bad idea #2. Probably more than #2 but I've lost count...

57) capi3101: Sacrifice Y2 Bet
Move B1 Gimel Bet
Move B1 Bet Babamots
Catastrophe Babamots B
	Babamots: I clearly remember two games where the bank got exhausted. There may have been more.

I tried for an hour to make an origami piece, but I couldn't match up the text descriptions of how to fold with the blurry picture. :-|

58) Babamots: Move R3 Risa Capi3101
	capi3101: Been meaning to do a video of the origami pieces. Big problem is that I don't have an overhead camera rig...

59) capi3101: Attack R3 Capi3101

60) Babamots: Sacrifice Y2 Babamots
Move R1 Risa Capi3101
Move R2 Orion Capi3101
Catastrophe Capi3101 R

61) capi3101: S B2 Gimel
T R2 Y2 Hey
T R3 Y3 Bet
	capi3101: Well, there's that...
	capi3101: ...but I think now I'm hosed.
	capi3101: Actually, I do have a plan - question is whether I've got time to pull it off.
	capi3101: I'm guessing I don't.

62) Babamots: Sacrifice Y2 Babamots
Move G3 Dalet Bolarus
Move G3 Bolarus Capi3101
	capi3101: ...ah, I don't. Damn.

63) capi3101: M Y3 Bet Capi3101
	Babamots: No, but it was very close. In fact I think this may be my only way out. It took me a while to realize that offense was the best defense here.

64) Babamots: Sacrifice R2 Dalet
Attack G1 Capi3101
Attack Y3 Capi3101
	capi3101: Yeah, I saw it coming. I think I’m going to fall one move short. I’ll still play it out.

	Babamots: Here's the archive view for easy reference:

http://www.superdupergames.org/main.html?page=archive_play&gid=35919

I've got a meeting, but I'll be back to talk about woulda coulda shouldas.
	Babamots: Like the guide says, you usually can't cause a red catastrophe one ship a time. You needed to spend your y2 on the red catastrophe. Assuming you hit red first, you would then need yellow of some kind in order to move in your blue ships. That could be arranged in the way you noticed (converting your yellow star into a ship using blue sacrifice).

I think your big chance was when I messed up on my 22nd move. I left you with an opportunity to catastrophe my reds right away. If I had been careful enough to not have a red ship matching my star, you would have had to fiddle around to get a third red on my doorstep without leaving your home undefended.

On your 23rd move, I think you should have sacrificed the y2 to move both red ships from Bet to my home for the catastrophe.

After that, I suspect you should

discover b2 Gimel r2 Waw

(I would probably probably build y2 to keep it away from you. I don't have to defend my home with a large yet since you don't have a way to get a large there)

sacrifice b1 Gimel
trade b3 y3 Bet

(Even though you need your blues for the catastrophe, don't trade your home r3 for y3. I could catastrophe it and then invade your home with a large before you could react.)

At this point, I really need to keep the blues away from you, but since you have yellow again, I also really need to defend my home with a large. But I don't have physical pieces in front of me at the moment so I'm in danger of misanalysis. I'll say more later.
	Babamots: We really need to get some position exploration software so that we can display what we're talking about :-).
	capi3101: Indeed.
	Babamots: Are you following my long trains of thought? I'll write up the rest of my position analysis if you say you'll follow along.
	capi3101: I'll follow along with it as best I can.  
	Babamots: In my last attempt at analysis, it looked like I was going to be able to find a win for you starting from your 23rd move. But now I see that I skipped my own turn right off the bat, so the rest of what I said is nonsense.

After lots of examination, I've decided that mostly what your fleet needed for victory was another large ship to guard your assembling death fleet, but you also need another yellow ship (an size). So now I think your real opportunity was on your 24th move. I had just traded away my g3, so you can build r3.

I'm going to list the moves that you could make to create a death fleet that would also keep your ships pretty safe (no three ships of the same color, no ships left alone without a large). I think this plan could be adapted to answer anything I could have done to stop you, but it would be complicated to explore it all and write about it. It seems good enough show you an example of maneuvering your ships with relative safety.

build r3 capi3103

move b2 Gimel Bolarus
(depending on how I respond, you should get to either sacrifice a red to attack the y1 in Bolarus or sacrifice the b1 in Gimel to trade for a y3. I'll assume that my y1 runs away so you get to sacrifice and trade).

sacrifice b1 Gimel
trade r3 y3 capi3101

move y3 capi3101 Bolarus

move b2 Bolarus Babamots
(I probably attack the b2)

move b3 Bet Babamots
(I must attack the b3 or you will sacrifice r3 to attack most of the ships in my home, thus there are two blue ships in my home)

move b1 Bet Babamots
catastrophe Babamots b
(notice that no yellow sacrifices were needed for the blue catastrophe)

sacrifice y2 Bet
move r2 Hey Bet
move r2 Bet Babamots
(there can't be a red-star-destroying catastrophe at my home without at least one yellow sacrifice. Two of the reds you need to use are two moves away from my home, so using two sacrifices saves time)

sacrifice y3 Bolarus
move r2 Bet Babamots
move r3 capi3101 Bet
move r3 Bet Babamots
catastrophe Babamots r

My most likely counter-attacks are to move one of my largest to either Gimel, Hey, or Bolarus at a moment when you don't have a large there. But then you could move a large to whichever system I took mine out of to attack some of my ships. Like I said, I'm not positive how it would all go down, but that's a direction you might have tried.


35937)
Started: 2020.1.28, Ended: 2020.3.26
Participants: DodoBirb (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) DodoBirb: Homeworld B1 Y3 G3
	DodoBirb: Greetings! and glhf!

3) Trydnt: Build G1 Trydnt
	Trydnt: This is for the tournament correct?

4) DodoBirb: Build G1 Dodobirb
	DodoBirb: Yes

5) Trydnt: Trade G1 B1 Trydnt

6) DodoBirb: Trade G1 B1 Dodobirb

7) Trydnt: Build B2 Trydnt

8) DodoBirb: Build B2 Dodobirb

9) Trydnt: Discover B1 Trydnt G3 G3

10) DodoBirb: Discover B2 Dodobirb G2 Green

11) Trydnt: Build B3 G3

12) DodoBirb: Build B3 Green

13) Trydnt: Build B3 G3

14) DodoBirb: Trade B2 Y2 Green

15) Trydnt: Trade B3 Y3 G3

16) DodoBirb: Trade B1 R1 Dodobirb

17) Trydnt: Trade B1 R1 G3

18) DodoBirb: Build B1 Green

19) Trydnt: Build Y1 G3

20) DodoBirb: Build Y1 Green

21) Trydnt: Discover Y1 G3 G2 G2

22) DodoBirb: Build G1 Dodobirb

23) Trydnt: Build Y2 G2

24) DodoBirb: Discover G1 Dodobirb G2 Greeny2

25) Trydnt: Build B1 G3

26) DodoBirb: Move B1 Green Dodobirb

27) Trydnt: Move B3 G3 G2

28) DodoBirb: Move B1 Dodobirb Greeny2

29) Trydnt: Discover B2 Trydnt Y3 Y3

30) DodoBirb: Build G1 Dodobirb

31) Trydnt: Build G1 Trydnt

32) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build B2 Green
Build B3 Greeny2

33) Trydnt: Build Y2 G3

34) DodoBirb: Build R1 Dodobirb

35) Trydnt: Build R2 G3

36) DodoBirb: Move R1 Dodobirb Greeny2

37) Trydnt: Move R1 G3 G2

38) DodoBirb: Build R2 Dodobirb

39) Trydnt: Sacrifice Y2 G2
Move B1 G3 Greeny2
Move B2 Y3 Greeny2
Catastrophe Greeny2 B

40) DodoBirb: Trade R1 B1 Dodobirb

41) Trydnt: Move Y2 G3 Greeny2

42) DodoBirb: Sacrifice Y1 Green
Discover R1 Greeny2 Y3 Sun

43) Trydnt: Build B1 G2

44) DodoBirb: Discover B1 Dodobirb Y2 Smallsun

45) Trydnt: Discover B1 G2 Y1 Y1

46) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build R1 Sun
Pass

47) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B2 G2
Build B3 Y1

48) DodoBirb: Move R1 Sun Green

49) Trydnt: Move B3 Y1 Sun

50) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build R2 Sun
Build R3 Green

51) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 G2
Build R3 G3

52) DodoBirb: Sacrifice Y2 Green
Move R2 Sun G2
Move R1 Sun G2
Catastrophe G2 R

53) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G2
Build R1 G3

54) DodoBirb: Build R1 Dodobirb

55) Trydnt: Move R3 G3 Smallsun

56) DodoBirb: Sacrifice B1 Smallsun
Pass

57) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B1 G2
Build R2 Smallsun

58) DodoBirb: Sacrifice R1 Dodobirb
Pass

59) Trydnt: Move B3 Sun Green

60) DodoBirb: Attack B3N Green

61) Trydnt: Move B1 Y1 Green
Catastrophe Green B

62) DodoBirb: Trade G1 B1 Dodobirb

63) Trydnt: Sacrifice Y2 G2
Move B1 G2 Dodobirb
Move B2 G2 Dodobirb
Catastrophe Dodobirb B

64) DodoBirb: Build G1 Dodobirb

65) Trydnt: Build Y1 G2

66) DodoBirb: Pass

67) Trydnt: Sacrifice Y3 G3
Move Y1 G2 Dodobirb
Move Y1 G2 Dodobirb
Move Y2 Greeny2 Dodobirb
Catastrophe Dodobirb Y



35786)
Started: 2020.1.29, Ended: 2020.2.7
Participants: ajo (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld B3 Y2 G3
	ajo: This is for the Great Homeworlds Tournament of 2019, agreed?
	eliscinsky: Agreed. This is for the Great Homeworlds Tournament of 2019.

2) ajo: Homeworld R3 B1 G3
	eliscinsky: GL, HF! 
Although seeing as you have, so far, won 4 and lost 2, I think I'm in for a lesson. ;)

3) eliscinsky: Build G1 Eliscinsky
	ajo: Good luck! :)

4) ajo: Build G1 Ajo

5) eliscinsky: Trade G1 Y1 Eliscinsky

6) ajo: Trade G1 Y1 Ajo

7) eliscinsky: Build G1 Eliscinsky

8) ajo: Build G1 Ajo

9) eliscinsky: Trade G1 B1 Eliscinsky

10) ajo: Trade G1 B1 Ajo

11) eliscinsky: Build B2 Eliscinsky

12) ajo: Build B2 Ajo

13) eliscinsky: Discover B1 Eliscinsky R1 Romulus

14) ajo: Discover B2 Ajo G2 Alpha

15) eliscinsky: B G1 Eliscinsky

16) ajo: Build B2 Alpha

17) eliscinsky: Build B3 Eliscinsky

18) ajo: Build B3 Ajo

19) eliscinsky: Trade B2 Y2 Eliscinsky

20) ajo: Trade B2 Y2 Alpha

21) eliscinsky: Sacrifice Y2 Eliscinsky
Move B1 Romulus Alpha
Move B1 Alpha Ajo
Catastrophe Ajo B

22) ajo: Build Y1 Alpha

23) eliscinsky: Trade B3 R3 Eliscinsky

24) ajo: Sacrifice G3 Ajo
Build Y2 Ajo
Build Y3 Ajo
Build Y3 Alpha
	ajo: Oh, shoot! My physical pieces somehow got out of sync with the SDG position. Well, I guess this is likely to be a loss for me.

25) eliscinsky: Discover Y1 Eliscinsky G1 Romulus

26) ajo: Trade Y1 R1 Alpha

27) eliscinsky: Move Y1 Romulus Ajo
Catastrophe Ajo Y

	eliscinsky: Well, "never to be one to look a gift-horse in the mouth", I'll take what comes my way.  Sorry for your misstep.  I know you're a better player than what this game shows.  I look forward to a future rematch.  Cheers!


35938)
Started: 2020.1.29, Ended: 2020.2.19
Participants: Trydnt (S), speardane (N)
Winner: Trydnt

1) speardane: Homeworld Y3 B2 G3

2) Trydnt: Homeworld Y2 B1 G3
	Trydnt: was this a tournament challenge? I don't think it is but wanted to make sure

3) speardane: Build G1 Speardane
	speardane: Sorry, yes, this is for the Great Homeworlds Tournament of 2019! Good luck!

4) Trydnt: Build G1 Trydnt

5) speardane: Trade G3 R3 Speardane
	Trydnt: great good luck!

6) Trydnt: Trade G1 B1 Trydnt

7) speardane: Build G1 Speardane

8) Trydnt: Build B1 Trydnt

9) speardane: Discover G1 Speardane Y1 Delos

10) Trydnt: Discover B1 Trydnt G3 G3

11) speardane: Build G1 Delos

12) Trydnt: Build B2 G3

13) speardane: Discover G1 Delos B3 Lebling

14) Trydnt: Discover B1 Trydnt G3 Gee3

15) speardane: Discover G1 Delos B3 Kotok

16) Trydnt: Build G2 Trydnt

17) speardane: Build G2 Lebling

18) Trydnt: Sacrifice G2 Trydnt
Build B2 Gee3
Build B3 G3

19) speardane: Trade G2 Y2 Lebling

20) Trydnt: Trade B3 Y3 G3

21) speardane: Build G2 Kotok

22) Trydnt: Trade B2 R2 G3

23) speardane: Trade G2 Y2 Kotok

24) Trydnt: Build B2 Gee3

25) speardane: Build Y1 Lebling

26) Trydnt: Discover R2 G3 Y1 Y1

27) speardane: Trade Y2 R2 Lebling

28) Trydnt: Build B3 G3

29) speardane: Build Y1 Kotok

30) Trydnt: Discover R2 Y1 Y3 Y3

31) speardane: Trade Y2 R2 Kotok

32) Trydnt: Trade B2 Y2 Gee3

33) speardane: Build Y1 Lebling

34) Trydnt: Build G2 Trydnt

35) speardane: Build G2 Kotok

36) Trydnt: Sacrifice G2 Trydnt
Build Y2 G3
Build R1 Y3

37) speardane: Sacrifice G2 Kotok
Build R1 Lebling
Build R1 Kotok

38) Trydnt: Move R1 Y3 Trydnt

39) speardane: Build R3 Kotok

40) Trydnt: Move R1 Trydnt Kotok
Catastrophe Kotok R

41) speardane: Build R1 Lebling

42) Trydnt: Build G2 Trydnt

43) speardane: Build G2 Kotok

44) Trydnt: Discover Y3 G3 R1 R1

45) speardane: Sacrifice G2 Kotok
Build R2 Speardane
Build R3 Speardane

46) Trydnt: Sacrifice Y2 G3
Move R2 Y3 R1
Move R2 R1 Speardane
Catastrophe Speardane R

47) speardane: Build G2 Speardane

48) Trydnt: Trade G2 R2 Trydnt

49) speardane: Trade G2 R2 Speardane

50) Trydnt: Move Y3 R1 Speardane

51) speardane: Build G2 Speardane

52) Trydnt: Sacrifice R2 Trydnt
Attack R2 Speardane
Attack G2 Speardane



35927)
Variants: "Hard time"
Started: 2020.1.30, Ended: 2020.2.2
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt

	dlwillson: one concurrent game per opponent is good for me


35868)
Variants: "No undo, Unrated"
Started: 2020.1.30, Ended: 2020.5.9
Participants: Trydnt (S), rho0 (N)
Winner: Trydnt



35774)
Started: 2020.1.30, Ended: 2020.3.18
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld Y3 B2 G3

2) MobyNostromo: H Y1 B2 G3

3) Trydnt: Build G1 Trydnt

4) MobyNostromo: B G1 Mobynostromo

5) Trydnt: Trade G1 Y1 Trydnt

6) MobyNostromo: T G1 B1 Mobynostromo

7) Trydnt: Build Y1 Trydnt

8) MobyNostromo: B G1 Mobynostromo

9) Trydnt: Discover Y1 Trydnt G1 G1

10) MobyNostromo: B B1 Mobynostromo

11) Trydnt: Discover Y1 G1 G3 G3

12) MobyNostromo: T G1 R1 Mobynostromo

13) Trydnt: Build Y2 G3

14) MobyNostromo: M R1 Mobynostromo G3

15) Trydnt: Discover Y1 G3 G1 G1

16) MobyNostromo: M B1 Mobynostromo G3

17) Trydnt: Trade Y1 R1 Trydnt

18) MobyNostromo: T B1 Y1 G3

19) Trydnt: Build R1 Trydnt

20) MobyNostromo: D R1 G3 G1 Moss

21) Trydnt: Sacrifice R1 Trydnt
Attack Y1 G3

22) MobyNostromo: B G1 Mobynostromo

23) Trydnt: Build G2 Trydnt

24) MobyNostromo: D G1 Mobynostromo Y3 Gold

25) Trydnt: Build Y2 G1

26) MobyNostromo: T G3 Y3 Mobynostromo

27) Trydnt: Sacrifice Y2 G1
Move Y1 G3 Mobynostromo
Move Y2 G3 Mobynostromo
Catastrophe Mobynostromo Y

28) MobyNostromo: B G2 Gold

29) Trydnt: Discover G2 Trydnt Y1 Y1

30) MobyNostromo: M G2 Gold Mobynostromo

31) Trydnt: Build Y1 G1

32) MobyNostromo: B G2 Mobynostromo

33) Trydnt: Build G3 Y1

34) MobyNostromo: T G2 Y2 Mobynostromo

35) Trydnt: Move G3 Y1 Mobynostromo

36) MobyNostromo: B G2 Mobynostromo

37) Trydnt: Trade G3 R3 Mobynostromo

38) MobyNostromo: B G3 Mobynostromo

39) Trydnt: Move G2 Y1 Mobynostromo
Catastrophe Mobynostromo G

40) MobyNostromo: T Y2 G2 Mobynostromo

41) Trydnt: Attack G2 Mobynostromo

42) MobyNostromo: S G1 Gold
B B1 Mobynostromo

43) Trydnt: Trade R3 B3 Mobynostromo
Catastrophe Mobynostromo B

	MobyNostromo: I'm going for mass suicide...
	Trydnt: well it worked! good game


35954)
Variants: "Hard time"
Started: 2020.1.31, Ended: 2020.2.9
Participants: dlwillson (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3

2) dlwillson: H Y1 B3 G3
	Babamots: Good luck!

Are you hoping to hit the top of the ladder again? I see you've been #1 a few times.
	dlwillson: TY!GL!HF! Hoping? Yes. Expecting? No. You, Simon, and Trydnt are all stronger than I am. Wil, D5PA, Felix, and I seem about equal. So, I don't suppose my #1 days are coming back, but who knows? And paying is fun, anyway.

3) Babamots: Build G1 Babamots

4) dlwillson: B G1 Dlwillson

5) Babamots: Trade G1 Y1 Babamots
	Babamots: So what I'm seeing is, we'd both like to challenge for the #1 spot when this game is over. If we hurry, we might finish this game before #1 gets tied up again.

Want to say winner gets dibs on challenging the top? And if so, do you suppose it's cheating to pause the game at its conclusion so that we're protected from new challenges while we wait for D5 and Trydnt to finish?

	dlwillson: Hey. Sorry about the resignation. Real luge had intervened in a significant, non-positive way. I'll come back when I have time to play again. Sorry...


35964)
Started: 2020.2.4, Ended: 2020.2.24
Participants: tkvaran (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld Y3 G2 R3 *

2) tkvaran: Homeworld R2 B1 G3
	tkvaran: Just a tip.  Most people think you should have blue and green in your opening setup.  Your opening is definitely playable, but I think it is typically good to have green and blue.

3) zweiterlinde: Build R1 Zweiterlinde
	zweiterlinde: So _now_ you tell me. :) I read the rules on the looney sure and it recommended ones of bg and one of yr. We'll see I guess...
	zweiterlinde: Not averse to help though, I'm flying blind :)

4) tkvaran: Build G1 Tkvaran

5) zweiterlinde: Discover R1 Zweiterlinde B1 Mare
	tkvaran: I'm pretty terrible at this game.  I like that it is almost entirely long term strategy.  Really not a tactical game at all (at least how I play).  If you haven't watched them, there are some great videos called Homeworlds Theater on youtube.  I think they do a good job of showing off the game.
	zweiterlinde: Neat!

6) tkvaran: Trade G1 Y1 Tkvaran

7) zweiterlinde: Build R1 Zweiterlinde

8) tkvaran: Build Y1 Tkvaran

9) zweiterlinde: Discover R1 Zweiterlinde R1 Polis

10) tkvaran: Discover Y1 Tkvaran B3 Coke

11) zweiterlinde: Build R2 Zweiterlinde

12) tkvaran: Build Y1 Tkvaran
	zweiterlinde: It is annoying to not have blue at home, you're right :)
	tkvaran: Means you need to funnel everything through that other star right?

13) zweiterlinde: Move R2 Zweiterlinde Mare

14) tkvaran: Discover Y1 Tkvaran G3 Pepsi

15) zweiterlinde: Trade R2 Y2 Mare

16) tkvaran: Build Y2 Pepsi

17) zweiterlinde: Move R1 Mare Coke

18) tkvaran: Discover Y1 Coke R2 Jolt

19) zweiterlinde: Build R2 Zweiterlinde

20) tkvaran: Move Y1 Pepsi Mare

21) zweiterlinde: Move R2 Zweiterlinde Mare

22) tkvaran: Move Y2 Pepsi Polis

23) zweiterlinde: Build R3 Zweiterlinde

24) tkvaran: Attack R1 Polis

25) zweiterlinde: Move R3 Zweiterlinde Polis

26) tkvaran: Discover Y2 Polis B2 Volt

27) zweiterlinde: Attack Y1 Mare

28) tkvaran: Build G1 Tkvaran

29) zweiterlinde: Trade Y2 G2 Mare

30) tkvaran: Build G1 Tkvaran

31) zweiterlinde: Build Y2 Mare

32) tkvaran: Discover G1 Tkvaran Y3 Sprite

33) zweiterlinde: Build R3 Mare

34) tkvaran: Trade G1 B1 Tkvaran

35) zweiterlinde: Trade R3 B3 Mare

36) tkvaran: Build G1 Sprite

37) zweiterlinde: Sacrifice Y1 Mare
Move R3 Polis Sprite

38) tkvaran: Discover G1 Sprite Y1 Rc

39) zweiterlinde: Attack G1 Sprite

40) tkvaran: Build G1 Rc

41) zweiterlinde: Build R3 Sprite

42) tkvaran: Discover B1 Tkvaran G3 Squirt
	tkvaran: Well this feels like it's gotten out of control
	zweiterlinde: Lol

43) zweiterlinde: Sacrifice Y2 Mare
Move R3 Sprite Tkvaran
Move R3 Sprite Tkvaran

44) tkvaran: Attack R3 Tkvaran

45) zweiterlinde: Sacrifice R2 Mare
Attack R3 Tkvaran
Attack G3 Tkvaran

46) tkvaran: Sacrifice Y2 Volt
Move G1 Rc Zweiterlinde
Move G1 Rc Zweiterlinde

47) zweiterlinde: Attack Y1 Tkvaran
	tkvaran: Nice game!
	zweiterlinde: Thanks, gg!



35966)
Started: 2020.2.5, Ended: 2020.2.17
Participants: zweiterlinde (S), Mantheron (N)
Winner: zweiterlinde

1) Mantheron: Homeworld R3 B2 G3

2) zweiterlinde: Homeworld G2 Y3 R3 *
	zweiterlinde: homeworld g2 y3 r3
	zweiterlinde: Lol

3) Mantheron: Build G1 Mantheron
	Mantheron: Well, it looks like it’s a small universe.

4) zweiterlinde: Build R1 Zweiterlinde

5) Mantheron: Trade G1 Y1 Mantheron

6) zweiterlinde: Discover R1 Zweiterlinde R1 Ein

7) Mantheron: Build Y1 Mantheron
	zweiterlinde: It's possible my moves are worse than random :)

8) zweiterlinde: Build R1 Zweiterlinde

9) Mantheron: Build G1 Mantheron

10) zweiterlinde: Discover R1 Zweiterlinde B1 Polis

11) Mantheron: Trade Y1 B1 Mantheron

12) zweiterlinde: Build R2 Zweiterlinde

13) Mantheron: Build B1 Mantheron

14) zweiterlinde: Move R2 Zweiterlinde Polis

15) Mantheron: Discover B1 Mantheron G1 Altair

16) zweiterlinde: Construct R2 Zweiterlinde

17) Mantheron: Build B2 Mantheron

18) zweiterlinde: Trade R2 B2 Polis

19) Mantheron: Discover B2 Mantheron G1 Bellatrix

20) zweiterlinde: Move R2 Zweiterlinde Bellatrix

21) Mantheron: Build B3 Altair

22) zweiterlinde: Attack B2 Bellatrix

23) Mantheron: Trade B3 R3 Altair

24) zweiterlinde: Build B3 Bellatrix

25) Mantheron: Build B3 Altair

26) zweiterlinde: Trade B3 Y3 Bellatrix

27) Mantheron: Trade B3 Y3 Altair

28) zweiterlinde: Build B3 Bellatrix

29) Mantheron: Move B1 Mantheron Bellatrix

30) zweiterlinde: Move B3 Bellatrix Zweiterlinde

31) Mantheron: Build G2 Mantheron

32) zweiterlinde: Trade B2 G2 Polis

33) Mantheron: Move G2 Mantheron Ein

34) zweiterlinde: Move B3 Zweiterlinde Ein

35) Mantheron: Sacrifice G2 Ein
Build B2 Altair
Build R2 Altair

36) zweiterlinde: Build G2 Polis
	zweiterlinde: Yikes!

37) Mantheron: Sacrifice G3 Mantheron
Build G3 Mantheron
Build Y1 Altair
Build Y1 Altair

38) zweiterlinde: Sacrifice G2 Polis
Build G2 Polis
Build B3 Ein

39) Mantheron: Build Y2 Mantheron

40) zweiterlinde: Sacrifice Y3 Bellatrix
Move G2 Polis Mantheron
Move G2 Polis Mantheron
Move B3 Ein Mantheron
Catastrophe Mantheron Green

41) Mantheron: Sacrifice Y3 Altair
Move B1 Altair Mantheron
Move B1 Bellatrix Mantheron
Move R3 Altair Mantheron
Catastrophe Mantheron Blue
	zweiterlinde: Now we'll see how crazy it can get :)

42) zweiterlinde: Trade B3 Y3 Ein
	Mantheron: Well, that wasn’t really the direction I was planning on things going.
	zweiterlinde: Lol

43) Mantheron: Build Y2 Altair

44) zweiterlinde: Sacrifice Y3 Ein
Move R1 Ein Mantheron
Move R1 Polis Mantheron
Catastrophe Mantheron Red
Pass
	zweiterlinde: Gg



35965)
Started: 2020.2.5, Ended: 2020.2.16
Participants: huddyrx (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld R1 B2 G3

2) huddyrx: Homeworld B3 G1 R3

3) zweiterlinde: Build G1 Zweiterlinde

4) huddyrx: Build R1 Huddyrx
	zweiterlinde: Gl, thanks for the game!

5) zweiterlinde: Trade G1 Y1 Zweiterlinde

6) huddyrx: Trade R1 Y1 Huddyrx

7) zweiterlinde: Build G1 Zweiterlinde

8) huddyrx: Build R1 Huddyrx

9) zweiterlinde: Discover G1 Zweiterlinde G3 Gaia

10) huddyrx: Trade R1 G1 Huddyrx

11) zweiterlinde: Build G2 Zweiterlinde

12) huddyrx: Build G2 Huddyrx

13) zweiterlinde: Discover G2 Zweiterlinde G3 Terra

14) huddyrx: Discover G2 Huddyrx R2 Cosmos

15) zweiterlinde: Build G2 Zweiterlinde

16) huddyrx: Build R1 Huddyrx

17) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G3 Zweiterlinde
Build Y1 Zweiterlinde
Build Y2 Zweiterlinde

18) huddyrx: Build Y2 Huddyrx

19) zweiterlinde: Trade Y1 B1 Zweiterlinde

20) huddyrx: Trade R1 B1 Huddyrx

21) zweiterlinde: Move Y2 Zweiterlinde Terra

22) huddyrx: Move B1 Huddyrx Cosmos

23) zweiterlinde: Move B1 Zweiterlinde Terra

24) huddyrx: Move Y1 Huddyrx Cosmos

25) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G3 Zweiterlinde
Build Y1 Terra
Build B1 Terra

26) huddyrx: Build Y2 Cosmos

27) zweiterlinde: Trade Y1 R1 Terra

28) huddyrx: Build B2 Cosmos

29) zweiterlinde: Move B1 Terra Cosmos

30) huddyrx: Discover B2 Cosmos Y3 Galaga

31) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G3 Zweiterlinde
Build B2 Terra
Build B3 Cosmos

32) huddyrx: Build B3 Cosmos
Catastrophe Cosmos Blue

33) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G3 Zweiterlinde
Build Y1 Terra
Build Y3 Zweiterlinde
	zweiterlinde: This is probably nutty, but hey...

34) huddyrx: Build Y3 Huddyrx
	huddyrx: I feel like I may have been baited into that move. 
	huddyrx: I feel like I may have been baited into that move. 
	zweiterlinde: I overlooked the build option rather than moving the other B back. But I'm mostly just trying to see if it makes sense to blow stuff up given that I think I have a production advantage

35) zweiterlinde: Discover B1 Terra R2 Proxima

36) huddyrx: Move G2 Cosmos Galaga

37) zweiterlinde: Sacrifice Y3 Zweiterlinde
Move B2 Terra Proxima
Move B2 Proxima Huddyrx
Move B1 Proxima Huddyrx

38) huddyrx: Attack B2 Huddyrx

39) zweiterlinde: Build B1 Huddyrx
Catastrophe Huddyrx Blue

40) huddyrx:
Build B1 Galaga
	huddyrx: Sorry I've been slow to move this week. I did a bgg auction and have been getting a lot of emails. The turn notifications keep getting buried.
	zweiterlinde: No problem at all. Hope the auction went well! I'm culling a bit myself, such a hassle.

41) zweiterlinde: Sacrifice Y2 Terra
Move G2 Terra Huddyrx
Move G1 Gaia Huddyrx
Catastrophe Huddyrx Green

	huddyrx: Nice job.  I saw the blue catastrophe, but didn't see the green one coming.
	zweiterlinde: Yeah it really exposes your homeworld when it connects to 2 sizes. Good game!


35967)
Started: 2020.2.5, Ended: 2020.3.4
Participants: Mantheron (S), amoscai (N)
Winner: Mantheron

1) amoscai: Homeworld G1 B2 Y3

2) Mantheron: Homeworld B3 R2 G3

3) amoscai: Build Y1 Amoscai

4) Mantheron: Build G1 Mantheron

5) amoscai: Trade Y1 G1 Amoscai

6) Mantheron: Build G2 Mantheron

7) amoscai: Build G2 Amoscai

8) Mantheron: Trade G1 Y1 Mantheron

9) amoscai: Trade G1 R1 Amoscai

10) Mantheron: Discover G2 Mantheron R1 Altair

11) amoscai: Discover G2 Amoscai B3 Base

12) Mantheron: Build Y1 Mantheron

13) amoscai: Build G1 Base

14) Mantheron: Trade Y1 R1 Mantheron

15) amoscai: Build R2 Amoscai

16) Mantheron: Move R1 Mantheron Altair

17) amoscai: Build Y1 Amoscai

18) Mantheron: Build Y1 Mantheron

19) amoscai: Move R2 Amoscai Base

20) Mantheron: Move Y1 Mantheron Altair

21) amoscai: Build R2 Base

22) Mantheron: Build G1 Altair

23) amoscai: Trade G2 Y2 Base

24) Mantheron: Build G2 Mantheron

25) amoscai: Sacrifice Y2 Base
Move R2 Base Altair
Move R2 Base Altair
Catastrophe Altair Red

26) Mantheron: Discover G2 Mantheron R1 Castor

27) amoscai: Trade Y3 G3 Amoscai

28) Mantheron: Build G1 Mantheron

29) amoscai: Build G2 Amoscai

30) Mantheron: Sacrifice G3 Mantheron
Build G2 Mantheron
Build G3 Mantheron
Build G3 Castor

31) amoscai: Sacrifice G3 Amoscai
Build G3 Amoscai
Build Y1 Amoscai
Build Y2 Amoscai

32) Mantheron: Trade G2 Y2 Mantheron

33) amoscai: Build G2 Base

34) Mantheron: Sacrifice Y2 Mantheron
Move G2 Castor Base
Move G2 Base Amoscai
Catastrophe Amoscai Green



35968)
Started: 2020.2.5, Ended: 2020.2.18
Participants: amoscai (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld R1 B2 G3

2) amoscai: Homeworld B1 G3 R3

3) zweiterlinde: Build G1 Zweiterlinde
	zweiterlinde: Good luck!

4) amoscai: Build R1 Amoscai
	amoscai: thanks! I'm going to try and figure this out slowly.

5) zweiterlinde: Trade G1 Y1 Zweiterlinde

6) amoscai: Trade R1 Y1 Amoscai

7) zweiterlinde: Build G1 Zweiterlinde

8) amoscai: Build R1 Amoscai

9) zweiterlinde: Discover G1 Zweiterlinde B3 Acme

10) amoscai: Discover R1 Amoscai G2 Bcme

11) zweiterlinde: Build G1 Zweiterlinde

12) amoscai: Trade R3 B3 Amoscai

13) zweiterlinde: Discover G1 Zweiterlinde B3 Bongo

14) amoscai: Build R1 Bcme

15) zweiterlinde: Build G1 Zweiterlinde

16) amoscai: Trade B3 G3 Amoscai

17) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Acme
Build G2 Bongo
Build G3 Zweiterlinde

18) amoscai: Build R2 Bcme

19) zweiterlinde: Trade G2 R2 Acme

20) amoscai: Build G2 Amoscai

21) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G3 Zweiterlinde
Build Y1 Zweiterlinde
Build Y2 Zweiterlinde

22) amoscai: Sacrifice G2 Amoscai
Build G2 Amoscai
Build Y2 Amoscai

23) zweiterlinde: Sacrifice Y2 Zweiterlinde
Move G2 Bongo Bcme
Move G2 Bcme Amoscai
Catastrophe Amoscai Green

24) amoscai: Trade Y2 G2 Amoscai

25) zweiterlinde: Move Y1 Zweiterlinde Acme

26) amoscai: Build Y2 Amoscai

27) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Acme
Build G3 Zweiterlinde
Build Y2 Acme

28) amoscai: Build G3 Amoscai

29) zweiterlinde: Sacrifice Y2 Acme
Move G2 Acme Amoscai
Move G1 Acme Amoscai
Catastrophe Amoscai Green

30) amoscai: Trade Y2 G2 Amoscai

31) zweiterlinde: Move R2 Acme Amoscai



35869)
Variants: "Unrated"
Started: 2020.2.7, Ended: 2020.2.11
Participants: Trydnt (S), Icernicus (N)
Winner: Trydnt

1) Icernicus: Homeworld R3 B2 G3
	Icernicus: sorry first game
	Icernicus: it says no pieces in the stash to take?

2) Trydnt: Homeworld Y2 B1 G3

3) Icernicus: Build G1 Icernicus

4) Trydnt: Build G1 Trydnt

5) Icernicus: Trade G1 Y1 Icernicus

6) Trydnt: Trade G1 B1 Trydnt

7) Icernicus: Build G1 Icernicus

8) Trydnt: Build B1 Trydnt

9) Icernicus: Build Y1 Icernicus

10) Trydnt: Discover B1 Trydnt G3 G3

11) Icernicus: Discover Y1 Icernicus G1 Alpha

12) Trydnt: Build B2 Trydnt

13) Icernicus: Move G1 Icernicus Alpha

14) Trydnt: Build B2 G3



35871)
Variants: "Unrated"
Started: 2020.2.7, Ended: 2020.2.12
Participants: wil (S), Icernicus (N)
Winner: wil

1) Icernicus: Homeworld R3 B2 G3

2) wil: H Y2 B1 G3

3) Icernicus: Build G1 Icernicus

4) wil: B G1 Wil

5) Icernicus: Trade G1 Y1 Icernicus

6) wil: T G1 B1 Wil

7) Icernicus: Build G1 Icernicus

8) wil: B B1 Wil

9) Icernicus: Discover G1 Icernicus Y1 Alpha

10) wil: D B1 Wil Y3 Y3

11) Icernicus: Build Y1 Icernicus

12) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

13) Icernicus: Move Y1 Icernicus Alpha



35695)
Variants: "Hard time"
Started: 2020.2.7, Ended: 2020.2.7
Participants: Trydnt (S), griseltono (N)
Winner: Trydnt



35925)
Started: 2020.2.8, Ended: 2020.3.23
Participants: DodoBirb (S), ajo (N)
Winner: ajo

1) ajo: Homeworld Y3 B2 G3

2) DodoBirb: Homeworld B1 Y3 G3
	ajo: This is for the Great Homeworlds Tournament of 2019!
	DodoBirb: Good Luck! Just as a forewarning, after this move my next move will take a while but I'll be back to quick moves after that one!

3) ajo: Build G1 Ajo

4) DodoBirb: Build G1 Dodobirb

5) ajo: Discover G1 Ajo B1 Alpha

6) DodoBirb: Discover G1 Dodobirb B2 Blueyish

7) ajo: Build G1 Ajo

8) DodoBirb: Trade G1 B1 Blueyish

9) ajo: Build G1 Ajo

10) DodoBirb: Build G2 Dodobirb

11) ajo: Build G2 Alpha

12) DodoBirb: Sacrifice G2 Dodobirb
Build G2 Dodobirb
Build B2 Blueyish

13) ajo: Trade G2 Y2 Alpha

14) DodoBirb: Trade G2 Y2 Dodobirb

15) ajo: Build G2 Alpha

16) DodoBirb: Build G2 Dodobirb

17) ajo: Trade G1 R1 Ajo

18) DodoBirb: Trade G2 R2 Dodobirb

19) ajo: Build R1 Ajo

20) DodoBirb: Build R1 Dodobirb

21) ajo: Build R2 Ajo

22) DodoBirb: Build Y1 Dodobirb

23) ajo: Build Y1 Alpha

24) DodoBirb: Discover Y2 Dodobirb G2 Greenyish

25) ajo: Discover R2 Ajo G1 Beta

26) DodoBirb: Move R2 Dodobirb Greenyish

27) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G3 Ajo
Build G3 Alpha

28) DodoBirb: Move Y1 Dodobirb Blueyish

29) ajo: Move G3 Alpha Greenyish

30) DodoBirb: Sacrifice Y2 Greenyish
Move R2 Greenyish Dodobirb
Move B2 Blueyish Dodobirb

31) ajo: Move G2 Alpha Blueyish

32) DodoBirb: Sacrifice G3 Dodobirb
Build B3 Dodobirb
Build B3 Blueyish
Build B3 Blueyish
Catastrophe Blueyish B

33) ajo: Sacrifice G3 Ajo
Build G2 Greenyish
Build G3 Ajo
Build G3 Alpha
	ajo: I see the g3 sacrifice coming, but I think I'm ready to deal with it anyway.

34) DodoBirb: Discover B2 Dodobirb Y2 Yellow

35) ajo: Move G3 Alpha Yellow

36) DodoBirb: Discover B2 Yellow Y1 Miniyellow

37) ajo: Move Y1 Alpha Greenyish

38) DodoBirb: Discover R1 Dodobirb Y2 Minisun

39) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y1 Greenyish
Build Y3 Alpha

40) DodoBirb: Pass

41) ajo: Move Y2 Alpha Minisun

42) DodoBirb: Move R1 Minisun Miniyellow

43) ajo: Trade Y3 B3 Alpha

44) DodoBirb: Discover R1 Miniyellow Y3 Sun

45) ajo: Move G3 Yellow Miniyellow

46) DodoBirb: Move B2 Miniyellow Sun

47) ajo: Move G3 Miniyellow Sun

48) DodoBirb: Discover B2 Sun Y2 Runaway

49) ajo: Sacrifice R1 Ajo
Attack R1 Sun

50) DodoBirb: Pass

51) ajo: Sacrifice G3 Ajo
Build Y1 Greenyish
Build R1 Sun
Build G3 Ajo

52) DodoBirb: Pass

53) ajo: Move Y1 Greenyish Dodobirb

54) DodoBirb: Attack Y1N Dodobirb

55) ajo: Sacrifice Y2 Minisun
Move Y1 Greenyish Dodobirb
Move Y1 Greenyish Dodobirb
Catastrophe Dodobirb Yellow

56) DodoBirb: Trade B2 Y2 Runaway

57) ajo: Sacrifice B3 Alpha
Trade G3 Y3 Greenyish
Trade G2 B2 Greenyish
Trade R1 B1 Sun

58) DodoBirb: Trade B3 G3 Dodobirb

59) ajo: Sacrifice G2 Ajo
Build B2 Greenyish
Build B3 Sun
	ajo: Check.

60) DodoBirb: Pass

61) ajo: Sacrifice Y3 Greenyish
Move B2 Greenyish Dodobirb
Move B2 Greenyish Dodobirb
Move B1 Sun Dodobirb
Catastrophe Dodobirb Blue
	ajo: Checkmate?
	DodoBirb: I believe so.



35752)
Variants: "Unrated, Hard time"
Started: 2020.2.8, Ended: 2020.2.18
Participants: wil (S), disaac (N)
Winner: disaac

1) disaac: Homeworld G2 Y1 B3

2) wil: H Y2 B1 G3

3) disaac: Build B1 Disaac

4) wil: B G1 Wil

5) disaac: Discover B1 Disaac G3 Face

6) wil: T G1 B1 Wil

7) disaac: Build B2 Face

8) wil: B B2 Wil

9) disaac: Trade B2 Y2 Face

10) wil: T B1 Y1 Wil

11) disaac: Build B1 Face

12) wil: D B2 Wil G3 G3

13) disaac: Build B2 Disaac

14) wil: M Y1 Wil G3
	wil: Aaargh, I made short universe!
	disaac: I wondered if that was intentional or not. It’s a good experiment for an unrated game. 

15) disaac: Trade B3 R3 Disaac

16) wil: T G3 R3 Wil
	wil: I like playing them...but unintentional it was

17) disaac: Build R1 Disaac

18) wil: B Y1 G3

19) disaac: Build B2 Disaac

20) wil: B B3 G3

21) disaac: Build B3 Face

22) wil: T B3 G3 G3

23) disaac: Move B2 Disaac G3

24) wil: T G3 R3 G3

25) disaac: Build B3 G3

26) wil: A B3 G3

27) disaac: Build B3 G3
Catastrophe G3 B

28) wil: T R3 G3 Wil

29) disaac: Move B3 Face Wil

30) wil: S R3 G3
A B3 Wil
P
P

31) disaac: Sacrifice Y2 Face
Move R3 Disaac G3
Move R3 G3 Wil

32) wil: M Y1 G3 Disaac
	disaac: I believe this is endgame. 

33) disaac: Attack G3 Wil

	disaac: Yes. Gg. I am not sure if I have played a small universe before. But this was fun. 


35940)
Variants: "Unrated"
Started: 2020.2.10, Ended: 2020.2.17
Participants: capi3101 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	capi3101: Howdy again. Looking to see if I learned anything from our last game.

2) capi3101: Homeworld B1 Y3 G3

3) Babamots: Build G1 Babamots

4) capi3101: Build G1 Capi3101
	Babamots: We're off to a similar start :-)

5) Babamots: Trade G1 R1 Babamots
	capi3101: As has been noted elsewhere, the first turn after establishing homeworlds is almost always both sides growing new ships. I've come to consider the true start of the game the point that we're at now...
	Babamots: Don't underestimate the first move. I've lost games where I never really recovered from a poor homeworld choice.

But I agree that move 3 is where it starts getting interesting.
	Babamots: Oh, and what I meant about a similar start is that we have the same homeworlds as last game.

6) capi3101: Trade G1 Y1 Capi3101
	capi3101: Interesting move. The conventional wisdom is to get red since you've got red, but since you're lacking yellow it's not as much of a threat as it could be. On the other hand, if you grab the third small I'm locked out unless I can in at the mid level.
	capi3101: I'll wager that I have a ~little~ time.

7) Babamots: Build G1 Babamots

8) capi3101: Build Y1 Capi3101

9) Babamots: Build R1 Babamots

10) capi3101: Build G1 Capi3101

11) Babamots: Trade G1 Y1 Babamots

12) capi3101: Discover Y1 Capi3101 G2 Aleph

13) Babamots: Build Y2 Babamots

14) capi3101: Build Y2 Aleph

15) Babamots: Move Y2 Babamots Aleph

16) capi3101: Sacrifice Y1 Aleph
Discover Y2 Aleph R3 Bet

17) Babamots: Move R1 Babamots Aleph
	capi3101: Has anybody done any kind of write-up on when you should and shouldn't squonk? That might be something for your strategy guide. Just saying.

18) capi3101: Discover Y1 Capi3101 R2 Gimel
	Babamots: I'm not sure squonking needs a special section. I think you just need to consider the consequences of the move like you would any other move. How will it affect your material (dis)advantage? Will your opponent want to build the sacrificed piece? I think the strategy guide I have covers general ideas like that reasonably well.

Do you have some special ideas about squonking? I'd be glad to hear them :-).
	capi3101: Naw, I'm still very much a beginner at this. Maybe I'll have more ideas on the topic when I gain more experience.

In the meantime I've got to figure out how to get into red. The time I thought I had failed to materialize...

19) Babamots: Sacrifice G3 Babamots
Build R2 Aleph
Build R2 Aleph
Build R3 Babamots

20) capi3101: Trade G1 B1 Capi3101
	capi3101: Aw crap...

21) Babamots: Trade R3 G3 Babamots
	capi3101: No, that's really the choice I've got now, isn't it...
	capi3101: But it'd be a slow death move.
	capi3101: If I trade my big green for a big red, in a minimum of three moves you've got enough red at my homeworld to blow the big ship, and then you can walk in at your liesure. 
	capi3101: On the other hand, it's not safe for you to grow red right now.
	capi3101: Let's try this...

22) capi3101: Discover Y1 Gimel R3 Dalet

23) Babamots: Build R2 Babamots

24) capi3101: Build G1 Capi3101
	capi3101: I think I'm doing nothing besides prolonging the inevitable here.

25) Babamots: Move R2 Aleph Capi3101
	Babamots: Yeah, once you get totally locked out of any color, it can be pretty tough to come back. wil has me nearly locked out of blue in our game right now, so I'm suffering a similar fate there. :-D

26) capi3101: Trade G3 R3 Capi3101

27) Babamots: Move R2 Aleph Capi3101
	capi3101: 
	capi3101: Bad situation number two: more ships at my home system than I can capture in one turn. Bad situation number 6 still in effect. I still can't swap for the large red because that would be catastrophe time; I'd be without a large ship or a red ship. 
	capi3101: On the other hand, it'd cost you two reds and a medium yellow, and were it not for your homeworld large, I'd have a material advantage at that point.
	capi3101: I think it's the only choice I've got that makes any kind of sense.

28) capi3101: Attack R2 Capi3101

	capi3101: Eh. That's it.
	capi3101: You move your medium yellow in after the red is blown, and then get the rest of my ships by sacrificing red. 
	Babamots: Yeah, that's the idea. It's good that you were able to see the rest of the game from there!

I need to update the section of my tactics page about slow red catastrophes. If you get one turn behind, the slow red cat is still possible.


35951)
Variants: "Hard time"
Started: 2020.2.10, Ended: 2020.2.10
Participants: capi3101 (S), dlwillson (N)
Winner: capi3101

	dlwillson: Sorry about that. Real life is too busy to play right now. I took my challenges down for a while.
	capi3101: Understood; not a problem. Thanks anyway.


35952)
Variants: "No undo, Unrated"
Started: 2020.2.10, Ended: 2020.2.22
Participants: capi3101 (S), rho0 (N)
Winner: capi3101



35953)
Started: 2020.2.10, Ended: 2020.4.27
Participants: capi3101 (S), MobyNostromo (N)
Winner: capi3101

1) MobyNostromo: H Y1 B2 G3

2) capi3101: Homeworld B1 Y3 G3

3) MobyNostromo: B G1 Mobynostromo

4) capi3101: B G1 Capi3101

5) MobyNostromo: T G1 Y1 Mobynostromo

6) capi3101: Build G1 Capi3101

7) MobyNostromo: D Y1 Mobynostromo G3 Malachite

8) capi3101: Discover G1 Capi3101 B2 Aleph

9) MobyNostromo: B G1 Mobynostromo

10) capi3101: Build G2 Aleph

11) MobyNostromo: B G2 Mobynostromo

12) capi3101: Trade G2 Y2 Aleph

13) MobyNostromo: T G2 B2 Mobynostromo
	MobyNostromo: Aleph is a good name for a planet.

14) capi3101: T G1 Y1 Capi3101
	capi3101: It’s a name that’s still a letter (it’s the first one in most of the Semitic abjads), but it makes a nice change of pace from the Greek.

15) MobyNostromo: B Y2 Malachite
	MobyNostromo: That's why it sounds familiar. I recognized from a books of short stories by Borges. To me ear, it sounds celestial. :)

16) capi3101: B Y2 Aleph

17) MobyNostromo: D Y2 Malachite G2 Emerald

18) capi3101: Trade G1 R1 Aleph

19) MobyNostromo: T G1 R1 Mobynostromo

20) capi3101: Move Y2 Aleph Malachite

21) MobyNostromo: B Y3 Malachite

22) capi3101: B Y3 Malachite
C Malachite Y

23) MobyNostromo: T B2 Y2 Mobynostromo

24) capi3101: Build G1 Capi3101

25) MobyNostromo: B G1 Mobynostromo

26) capi3101: Move G1 Capi3101 Aleph

27) MobyNostromo: D G1 Mobynostromo B3 Sapphire

28) capi3101: Discover G1 Aleph Y1 Bet

29) MobyNostromo: B Y3 Emerald

30) capi3101: Build G1 Capi3101
	capi3101: Hell. I screwed that up. That's liable to cost me the entire game now...
	capi3101: Nothing for it, alas.

31) MobyNostromo: S Y2 Mobynostromo
M Y2 Emerald Capi3101
M Y3 Emerald Capi3101
C Capi3101 Y
	MobyNostromo: I'm finding this is a very complex game. I often don't know what I'm doing until something presents itself. Is that how most players feel or is it only true for those that have played it under fifty times? (I'm a very slow learner.)

32) capi3101: Move Y2 Aleph Sapphire
	capi3101: I can't say I've played it all that much my own self. In my experience, you don't really know that you've screwed up until you've well and truly screwed up...
	capi3101: Like just now. 
	capi3101: My problem is that I don't avail myself of the notebook as often as I should. Then I forget what it was I was attempting to accomplish. Sleep is not your friend when it comes to a game like this...

33) MobyNostromo: B G2 Sapphire
	MobyNostromo: Amen to that, especially the sleep part. I think we play this game in much the same way. :)

34) capi3101: Sacrifice R1 Aleph
Attack G2 Sapphire
	capi3101: You mean make a move and hope you didn't screw up? Yep...

35) MobyNostromo: B G2 Sapphire
	MobyNostromo: You took the words straight out of my mouth.

36) capi3101: M G1 Bet Sapphire
C Sapphire G

37) MobyNostromo: B G1 Mobynostromo

38) capi3101: Trade G1 R1 Capi3101

39) MobyNostromo: T G1 Y1 Mobynostromo

40) capi3101: Build G1 Capi3101

41) MobyNostromo: D Y1 Mobynostromo G3 Emerald

42) capi3101: Build G1 Capi3101

43) MobyNostromo: B Y1 Emerald

44) capi3101: Sacrifice G1 Capi3101
Build Y2 Sapphire
	capi3101: Crap.

45) MobyNostromo: B G1 Mobynostromo

46) capi3101: M Y2 Sapphire Capi3101

47) MobyNostromo: T G1 B1 Mobynostromo

48) capi3101: S G3 Capi3101
B Y2 Sapphire
B Y3 Sapphire
B Y3 Capi3101

49) MobyNostromo: B Y3 Emerald

50) capi3101: Move Y2 Capi3101 Emerald
Catastrophe Emerald Y

51) MobyNostromo: D B1 Mobynostromo G3 Foliage

52) capi3101: Build G1 Capi3101

53) MobyNostromo: B G1 Mobynostromo

54) capi3101: Move G1 Capi3101 Foliage
	capi3101: Sorry for the wait; I thought I had a path to victory there but then I realized it would rely on something that just wasn't going to happen...
	MobyNostromo: No worries.

55) MobyNostromo: B R1 Mobynostromo

56) capi3101: Build R2 Capi3101

57) MobyNostromo: S R1 Mobynostromo
A G1 Foliage

58) capi3101: Move R2 Capi3101 Foliage

59) MobyNostromo: B G2 Foliage

60) capi3101: Build G2 Capi3101
	MobyNostromo: I'm sorry for the wait. It's been difficult to contemplate games these days.

61) MobyNostromo: T G1 Y1 Mobynostromo
	capi3101: Understood. I figure a lot of folk have more important things on their minds.
	capi3101: Trying to remember what I was planning now.
	capi3101: I wonder...

62) capi3101: Move Y3 Sapphire Mobynostromo

63) MobyNostromo: A Y3 Mobynostromo

64) capi3101: Move Y2 Sapphire Mobynostromo
Catastrophe Mobynostromo Y

65) MobyNostromo: B R1 Mobynostromo
	capi3101: This is probably going to hurt me more than you...
	capi3101: But the game is about to get pretty interesting.

66) capi3101: Attack G2 Foliage
	MobyNostromo: Ha, ha. I think I know what you mean.

67) MobyNostromo: B G1 Foliage
C Foliage G

68) capi3101: Move G2 Capi3101 Sapphire

69) MobyNostromo: T R1 Y1 Mobynostromo

70) capi3101: B Y1 Sapphire
	capi3101: As expected.
	capi3101: Now the fun begins.

71) MobyNostromo: D Y1 Mobynostromo G1 Moss

72) capi3101: Build G1 Sapphire

73) MobyNostromo: B R1 Mobynostromo

74) capi3101: Sacrifice Y3 Capi3101
Move G1 Capi3101 Mobynostromo
Move G1 Sapphire Mobynostromo
Move G2 Sapphire Mobynostromo
Catastrophe Mobynostromo G

75) MobyNostromo: T R1 G1 Mobynostromo

76) capi3101: Move Y2 Sapphire Mobynostromo
	capi3101: Time for some knife-fighting, methinks...we'll see how well this works.

77) MobyNostromo: B R1 Mobynostromo
	capi3101: That might not have been the best of ideas, on further analysis...

78) capi3101: M Y1 Sapphire Capi3101

79) MobyNostromo: B Y1 Moss

80) capi3101: Trade Y1 G1 Capi3101

81) MobyNostromo: D Y1 Moss B3 Sky

82) capi3101: Build R2 Capi3101

83) MobyNostromo: B Y1 Moss

84) capi3101: Trade Y2 B2 Mobynostromo

85) MobyNostromo: B Y2 Moss

86) capi3101: Trade R2 G2 Capi3101

87) MobyNostromo: B R2 Mobynostromo

88) capi3101: S G2 Capi3101
B B1 Mobynostromo
B B1 Mobynostromo
C Mobynostromo B

	capi3101: Hard fought game. Thoroughly enjoyed it; hope you did too. Let me know if you want a rematch.
	MobyNostromo: Yes, it was fun. I think I'm getting this game finally. I might be playing better games soon.


35974)
Variants: "Hard time"
Started: 2020.2.10, Ended: 2020.2.17
Participants: Trydnt (S), capi3101 (N)
Winner: Trydnt

1) capi3101: Homeworld B1 Y3 G3

2) Trydnt: Homeworld Y1 B2 G3

3) capi3101: Build G1 Capi3101

4) Trydnt: Build G1 Trydnt

5) capi3101: Trade G1 Y1 Capi3101
	capi3101: Preliminaries done - best of luck.

6) Trydnt: Trade G1 B1 Trydnt

7) capi3101: Build Y1 Capi3101
	Trydnt: and to you!

8) Trydnt: Build B1 Trydnt

9) capi3101: Discover Y1 Capi3101 G2 Aleph
	capi3101: Are you using any conventions for naming your systems? Myself, I generally go with the Hebrew alphabet...it's still an alphabet but it's at least a change from Greek...

10) Trydnt: Discover B1 Trydnt G3 G3

11) capi3101: Build Y2 Aleph
	Trydnt: I name them b3 or g1 or whatever they happen to be to avoid confusion and save time. easier and faster to type a short name

12) Trydnt: Build B2 G3

13) capi3101: Discover Y2 Aleph B3 Bet

14) Trydnt: Trade B2 Y2 G3

15) capi3101: Sacrifice G3 Capi3101
Build Y2 Aleph
Build Y3 Bet
Build Y3 Capi3101

16) Trydnt: Build B2 Trydnt

17) capi3101: Move Y1 Aleph Bet

18) Trydnt: Discover Y2 G3 G2 G2

19) capi3101: Sacrifice Y1 Capi3101
Discover Y2 Aleph R3 Gimel

20) Trydnt: Move Y2 G2 Bet
Catastrophe Bet Y

21) capi3101: Trade Y3 G3 Capi3101

22) Trydnt: Build B2 G3
	capi3101: Nice move.

23) capi3101: Build G1 Capi3101
	capi3101: Oh, that didn't help me out either...crap.

24) Trydnt: Build B3 G3
	Trydnt: yeah I had a double threat on your hw and Bet. you either had to trade a yellow back to be safe at how and let me blow up the rest or sacrifice a y2 to move one from each and either way I got a free yellow ship to grow g2. weird line-up but worked out okay :)
	capi3101: Definitely a costly mistake on my part...going to have to see if I can recover from it.

25) capi3101: Trade G1 R1 Capi3101

26) Trydnt: Trade B2 R2 G3

27) capi3101: Build G1 Capi3101
	capi3101: Dammit...I see it coming.

28) Trydnt: Trade B3 Y3 G3

29) capi3101: Build G1 Capi3101

30) Trydnt: Sacrifice Y3 G3
Move G3 Trydnt G3
Discover G3 G3 Y2 Y2
Move G3 Y2 Capi3101
Catastrophe Capi3101 G

	capi3101: Nice one. And that about wraps it up, methinks.


35982)
Started: 2020.2.10, Ended: 2020.2.29
Participants: Draw5PlayAll (S), eliscinsky (N)
Winner: Draw5PlayAll

1) eliscinsky: Homeworld R1 B3 G3

2) Draw5PlayAll: Homeworld B1 R2 G3
	eliscinsky: Greetings Draw5PlayAll! For the record, this is for the Great Homeworlds Tournament of 2019. I'm going to fill out the start form now. HF / GL

3) eliscinsky: Build G1 Eliscinsky
	Draw5PlayAll: And of course you took my normal setup.

4) Draw5PlayAll: Build G1 Draw5playall
	eliscinsky: I've been studying up on my opponent ;)

5) eliscinsky: Trade G1 B1 Eliscinsky

6) Draw5PlayAll: Trade G1 B1 Draw5playall

7) eliscinsky: Build B2 Eliscinsky

8) Draw5PlayAll: Build B2 Draw5playall

9) eliscinsky: Trade B2 Y2 Eliscinsky

10) Draw5PlayAll: Trade B2 Y2 Draw5playall

11) eliscinsky: Build B2 Eliscinsky

12) Draw5PlayAll: Build B2 Draw5playall

13) eliscinsky: Trade B2 R2 Eliscinsky

14) Draw5PlayAll: Trade B2 R2 Draw5playall

15) eliscinsky: B B2 Eliscinsky

16) Draw5PlayAll: Build B2 Draw5playall

17) eliscinsky: Trade B2 G2 Eliscinsky

18) Draw5PlayAll: Discover B2 Draw5playall G3 Lime

19) eliscinsky: Discover R2 Eliscinsky G2 Sprout

20) Draw5PlayAll: Move R2 Draw5playall Lime

21) eliscinsky: M G2 Eliscinsky Sprout

22) Draw5PlayAll: Build G1 Draw5playall

23) eliscinsky: Move B1 Eliscinsky Sprout

24) Draw5PlayAll: Build Y1 Draw5playall

25) eliscinsky: Build B2 Sprout

26) Draw5PlayAll: Move Y1 Draw5playall Lime

27) eliscinsky: Trade B1 Y1 Sprout

28) Draw5PlayAll: Build R1 Lime

29) eliscinsky: Build B1 Sprout

30) Draw5PlayAll: Discover R1 Lime B2 Sky

31) eliscinsky: Build G1 Eliscinsky

32) Draw5PlayAll: Build B3 Lime

33) eliscinsky: Discover B2 Sprout Y3 Sol

34) Draw5PlayAll: Discover G1 Draw5playall B3 Water

35) eliscinsky: Move G2 Sprout Sol

36) Draw5PlayAll: Discover B1 Draw5playall Y3 Lemon

37) eliscinsky: Move R2 Sprout Water

38) Draw5PlayAll: Move R2 Lime Sprout

39) eliscinsky: Sacrifice G3 Eliscinsky
Build G1 Sol
Build G2 Sol
Build G3 Eliscinsky

40) Draw5PlayAll: Attack Y1 Sprout

41) eliscinsky: Trade G2 Y2 Sol

42) Draw5PlayAll: Sacrifice G1 Water
Build Y1 Lime

43) eliscinsky: Sacrifice G3 Eliscinsky
Build G1 Sol
Build G2 Eliscinsky
Build G3 Eliscinsky

44) Draw5PlayAll: Build Y3 Draw5playall

45) eliscinsky: Trade G1 R1 Sol

46) Draw5PlayAll: Trade R1 G1 Sky

47) eliscinsky: Move Y2 Sol Sky

48) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move G1 Sky Eliscinsky
Catastrophe Eliscinsky Green
Move B3 Lime Sky
Move B3 Sky Eliscinsky

49) eliscinsky: S G2 Sol
B Y3 Eliscinsky
B R1 Sol

50) Draw5PlayAll: Sacrifice R2 Sprout
Attack Y3 Eliscinsky
Attack Y2 Eliscinsky



35859)
Started: 2020.2.10, Ended: 2020.5.22
Participants: ts52 (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) ts52: Homeworld Y3 B2 G3
	ts52: Confirming that this is for the 2019 homeworlds tournament

3) wil: B G1 Wil

4) ts52: Build G1 Ts52
	wil: Confirmed
	wil: Good luck!
	ts52: I have filled out the game start form

5) wil: T G1 B1 Wil
	wil: Thanks

6) ts52: Trade G1 B1 Ts52

7) wil: B G1 Wil

8) ts52: Discover B1 Ts52 G1 Robin

9) wil: T G1 Y1 Wil

10) ts52: Build G1 Ts52

11) wil: B Y1 Wil

12) ts52: Build B1 Robin

13) wil: D Y1 Wil B3 B3

14) ts52: Trade B1 R1 Robin

15) wil: B Y2 Wil

16) ts52: Trade G1 R1 Ts52

17) wil: D Y2 Wil Y3 Y3

18) ts52: Build R1 Ts52

19) wil: S G3 Wil
B Y2 B3
B Y2 Y3
B Y3 Wil

20) ts52: Build R2 Robin

21) wil: D Y2 Y3 G1 G1

22) ts52: B R2 Ts52

23) wil: D Y2 B3 B1 B1

24) ts52: Move R2 Ts52 G1

25) wil: D Y2 G1 R3 R3

26) ts52: Sacrifice G3 Ts52
Build R2 G1
Build R3 Ts52
Build R3 Robin

27) wil: D B1 Wil G3 G3

28) ts52: Trade R1 G1 Ts52

29) wil: B B2 G3

30) ts52: Build R1 Ts52
	wil: So weird....
	ts52: Very, very weird

31) wil: B B3 G3

32) ts52: Build B3 Robin

33) wil: T B3 G3 G3

34) ts52: Trade R3 G3 Ts52

35) wil: T G3 R3 G3

36) ts52: Sacrifice B1 Robin
Pass

37) wil: M Y1 Wil G3

38) ts52: Build G2 Ts52

39) wil: T B2 G2 G3

40) ts52: Discover G1 Ts52 B1 Grover

41) wil: S G2 G3
B B2 G3
B B3 G3

42) ts52: Build G2 Grover

43) wil: T B2 G2 G3

44) ts52: Sacrifice G3 Ts52
Build G3 Ts52
Build G3 Grover
Build B2 Robin
	wil: I think it is my game to lose

45) wil: M B3 G3 G1
	ts52: I agree your yellow monopoly is killing me slowly.

46) ts52: Move R1 Ts52 Grover

47) wil: M Y1 B3 B1

48) ts52: Build B3 Robin
	wil: I am about to say heck with thinking and game play and just blow stuff up!

49) wil: M B1 G3 Robin
C Robin B

50) ts52: Move G2 Ts52 B1

51) wil: S R3 G3
A R2 G1
A R2 G1
A G2 B1

52) ts52: Build R3 Ts52
	wil: Feels like a trap

53) wil: M G2 G3 Grover
C Grover G
	ts52: got me an r3, but I'm not sure how much it'll help 

54) ts52: Move R3 Ts52 B1

55) wil: S Y2 B1
D Y1 B1 G3 Gee3
M G2 B1 Y3

56) ts52: Build G1 Ts52

57) wil: B B1 G1

58) ts52: Trade R3 B3 B1

59) wil: B Y2 G3

60) ts52: Build R3 Ts52

61) wil: B G2 Y3

62) ts52: Move R3 Ts52 G1

63) wil: S Y2 Y3
M R2 G1 R3
M R2 R3 Robin
C Robin R

64) ts52: Attack B3 G1

65) wil: S G2 Y3
B R1 G1
B R2 G1
C G1 R

66) ts52: Build R1 Ts52
	wil: I'm more playing around than playing well, but this has just been so twisted!

67) wil: B G1 Y3
	ts52: This really is one of the most bizarre games of Homeworlds I've ever played.

68) ts52: Move R1 Ts52 G1

69) wil: S G2 Y3
B B2 G1
B B3 G1
C G1 B

70) ts52: Build R2 Ts52

71) wil: B Y2 Gee3

72) ts52: Trade G1 B1 Ts52
	wil: I blew it and may only squeak out a tie

73) wil: B G1 Y3

74) ts52: Build G2 Ts52

75) wil: M G1 Y3 Wil

76) ts52: Sacrifice G2 Ts52
Build R2 G1
Build R2 Grover

77) wil: B G2 Wil

78) ts52: Build G2 Ts52
	wil: Yup, we stalemate

79) wil: T G2 B2 Wil
	ts52: I think there may be a path for you to victory. But I'm not certain about it, and it may open up a path for me.
	wil: Resign!  It is the honorable and sensible thing to do!

80) ts52: Sacrifice G3 Ts52
Build R3 Ts52
Build B3 Ts52
Build G2 Ts52
	wil: Thinking out options is not my strong suit...shooting from.the hip and dealing poorly with my errors is!  (A lifelong issue)

81) wil: B B3 Wil
	ts52: Poor impulse control?

82) ts52: Build R3 G1

83) wil: S G1 Y3
B Y3 Wil

84) ts52: Move G2 Ts52 Grover

85) wil: B G1 Wil

86) ts52: Trade R3 G3 Ts52

87) wil: B G2 Wil

88) ts52: Build R3 Ts52

89) wil: M B2 Wil R3

90) ts52: Pass
	ts52: We've reached an odd standoff. I can't launch a direct attack, but I suspect I have a strong counter attack should you attack me...

91) wil: M Y3 Wil Gee3
	wil: IMA coming

92) ts52: Move B3 Ts52 Grover
	wil: I blew my lead earlier... Gotta get.it back

93) wil: M B3 Wil G3

94) ts52: Move G2 Ts52 B1

95) wil: M Y2 R3 Wil

96) ts52: Pass

97) wil: M Y2 Wil R3

98) ts52: Pass

99) wil: M B2 R3 Grover

100) ts52: Move R2 Ts52 B1

101) wil: M G1 Wil R3

102) ts52: Attack B2 Grover

103) wil: M B3 G3 Grover
C Grover B

104) ts52: Build B1 Ts52

105) wil: T G1 R1 Wil

106) ts52: Build G1 B1

107) wil: B R2 Wil

108) ts52: Move B1 Ts52 G1
	wil: Me thinks I am back on the path...

109) wil: T G2 B2 Wil

110) ts52: Sacrifice G2 B1
Build B3 G1
Build B3 G1

111) wil: B G2 R3

112) ts52: Build G2 B1

113) wil: M B2 Wil R3

114) ts52: Build G2 B1
	wil: Got it, gotta backtrack...but got it. Lol I know what I wanna do, just don't know if it will work

115) wil: M G2 R3 Wil

116) ts52: Pass
	wil: the way I see it g2 gets to g3, r1 to gee3, all the ys out of g3 so we can sac for 2 grows get a green factory, catastrophe reds and rebuild them, rinse and repeat as reqd

117) wil: M G2 Wil G3
	ts52: it seems like a good plan, but I'm not sure you can finish me off without sacrificing yellow and letting me finally get into it. I'm not sure I'll be able to do anything with it, but I'm still curious.

118) ts52: Pass

119) wil: M Y2 G3 Wil

120) ts52: Pass

121) wil: Move Y2 Wil R3

122) ts52: Pass

123) wil: M R1 Wil Gee3

124) ts52: Pass
	wil: I don't think I set up a physical game (to play online)...but I did for this one...
	ts52: This is definitely the most interesting homeworlds game I've ever played.

125) wil: S Y1 G3
D Y3 Gee3 Y1 Y1
	wil: Andy and I had a pretty epic game the other night, over two hours, he held the yellows.  I luckily had one yellow star and sacked a blue to convert it to a ship, that changed the whole game an by the end I controlled the yellows. 

126) ts52: Pass
	wil: I need big ships, how many can you spare?
	ts52: Oooh, sacrificing your own yellow to get to a small system I don't control. Well done. Pretty sure I've got no way out now. I'm happy to concede, but if you feel it's more satisfying to play it out after all this time, I'm happy for that too. (I know I always prefer to play it out)

127) wil: S G2 G3
B G2 R3
B G3 R3
	wil: I have a long road still of catastrophes and factories.  While I am sure I have a plan to victory, I wouldn't concede as the chance to capitalize on some error is also great (that is what happened in the game the other night with andy! I was ready to concede Laurie said, well what would be your next move? And the emperor's advantage collapsed.  Either way is fine, playing it out is riskier for me.  I always prefer a fold before the flop, even if I have aces.
	wil: My fortress busting siege plan is finally exposed!

128) ts52: Pass
	wil: I needed a small star that was catastrophe proof, and contained a large ship 

129) wil: Move G3 R3 Wil
	ts52: Fair enough. Let's play it out! ;)
	wil: Now I'll regret it...

130) ts52: Pass

131) wil: M G2 R3 Wil
	wil: Yeah it is over.,.I'll accept or trudge on, I think I can avoid mistakes gg!

132) ts52: Pass
	ts52: Your doomsday apparatus is not yet fully assembled. ;)

133) wil: Move Y3 Wil R3

134) ts52: Pass

135) wil: Sacrifice Y1 Gee3
Discover Y3 R3 Y1 Why1

136) ts52: Pass
	wil: Do I hold the record for forced passes?
	ts52: Probably

137) wil: M R1 Gee3 G1
C G1 R
	wil: Me thinks I blew it!

138) ts52: Build R1 B1

139) wil: D G2 Wil R3 Arr3

140) ts52: Move G3 Ts52 Y1

141) wil: S R2 Wil
A G3 Y1
P

142) ts52: Sacrifice G2 B1
Build G2 B1
Build R1 Ts52
	wil: Oopsie

143) wil: Trade B2 R2 R3

144) ts52: Move R1 Ts52 Why1

145) wil: D R2 R3 B2 B2

146) ts52: Sacrifice G1 B1
Build R2 Why1
	wil: Somebody fell asleep.at.the wheel

147) wil: B G1 Wil

148) ts52: Move R2 Why1 Gee3

149) wil: Move Y3 Y1 Gee3

150) ts52: Attack Y2 Gee3

151) wil: S R2 B2
A R2 Gee3
A Y2 Gee3

152) ts52: Sacrifice G2 B1
Build B2 Ts52
Build R2 B1

153) wil: B G2 R3
	wil: Doomsday is doomed, it will either be a hostile takeover by storm resulting in casgrophe and annihilation or the old you take two I'll take three 

154) ts52: Pass
	ts52: Agreed. It is inevitable now. Good game!

155) wil: S G2 Arr3
B G2 R3
B R3 Gee3
	wil: Whew, wotta battle!  Have you got a medal? Are you in the queue queue to play Andy?
	ts52: I do, yes. I think I'm number 3. Have you played Andy?

156) ts52: Move B2 Ts52 Y1
	wil: Cool!  Then you can sign up to commentate during a live online medal match!  And yes, we play regularly...

157) wil: S R2 Gee3
A B2 Y1
A R1 Why1
	ts52: Oooh, I didn't know that was an option. That sounds like fun!

158) ts52: Move R1 Ts52 G1

159) wil: Sacrifice G2 R3
Build G2 Y1
Build R2 Why1
	wil: Curiouser and curiouser

160) ts52: Pass

161) wil: S Y2 R3
D G1 R3 Y2 Outpost
M Y2 R3 Outpost
	wil: 2 moves to check mate, 3 to finish
	wil: oops, 3 and 4 rather...

162) ts52: Pass

163) wil: S G2 R3
B G2 Y1
B R3 Why1

164) ts52: Pass

165) wil: M R3 Why1 Ts52
	wil: This game can't end...

166) ts52: Attack R3 Ts52

167) wil: S Y3 Gee3
M G3 Y1 Ts52
M R2 Why1 Ts52
M R1 Why1 Ts52
C Ts52 R
	wil: I end up with a choice of two endings...

168) ts52: Trade B3 Y3 G1

169) wil: S R3 Gee3
A B1 Ts52
P
P
	wil: 85 moves in wil graciously allows him a yellow ship

	ts52: Finally! ;)
	wil: Helluva game, I didn't try to draw it out, it was a challenge
	ts52: Indeed. Good game, very well played!


35895)
Started: 2020.2.10, Ended: 2020.5.1
Participants: Simon (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) Simon: Homeworld R3 B1 G3
	Simon: This is for the Great Homeworlds Tournament 2019, have fun!

3) wil: B G1 Wil
	Simon: You moved first, please report the game's start at:
https://jpeterbaker.github.io/homeworlds/site/tournament/links2019.html
	wil: Would you mind handling that?

4) Simon: Build G1 Simon
	Simon: Done, game is registered for the tourney!

5) wil: T G1 B1 Wil
	wil: Thx, good luck!

6) Simon: Trade G1 B1 Simon
	Simon: You too :)

7) wil: B B2 Wil

8) Simon: Build B2 Simon

9) wil: D B1 Wil Y3 Y3

10) Simon: Trade B2 Y2 Simon

11) wil: B G1 Wil

12) Simon: Build B2 Simon

13) wil: S G3 Wil
B G1 Wil
B B3 Wil
B B3 Y3

14) Simon: Discover B1 Simon R2 R2
	wil: That was a first for me.

15) wil: T B2 Y2 Wil
	wil: And! It was a mistake!

16) Simon: Build G1 Simon

17) wil: M B3 Y3 R2

18) Simon: Sacrifice Y2 Simon
Discover B1 R2 Y1 Y1
Discover B2 Simon G2 G2

19) wil: T B3 G3 Wil

20) Simon: Build G2 Simon
	wil: Must take any stars that use my nomenclature

	Simon: It'll be sac y2. The hard choice is goal star size. Rare case where g1 would be ideal but none exist!

21) wil: D G1 Wil Y3 Why3

22) Simon: Sacrifice G2 Simon
Build B2 G2
Build B3 Y1

23) wil: S G1 Wil
B B3 Y3

24) Simon: Trade B1 R1 Y1

25) wil: T B1 R1 Y3

26) Simon: Trade B2 G2 G2

27) wil: B G1 Wil

28) Simon: Sacrifice G2 G2
Build B1 Y1
Build R1 Y1

29) wil: B G2 Wil
	wil: Starting an arms race?  It was all so peaceful...

30) Simon: Trade B3 G3 Y1

31) wil: S G3 Wil
B G2 Why3
B G3 Wil
B Y1 Wil

32) Simon: Trade B2 Y2 G2

33) wil: D Y2 Wil B3 B3

34) Simon: Discover R1 Y1 Y3 Y3a

35) wil: S G1 Wil
B Y2 B3

36) Simon: Build R2 Y1

37) wil: D G1 Why3 B2 B2

38) Simon: Sacrifice G1 Simon
Build G1 Y1

39) wil: S G3 Wil
B G1 Why3
B B1 Y3
B G3 Wil

40) Simon: Sacrifice G3 Y1
Build G3 Y1
Build R2 Y3a
Build R3 Y3a

41) wil: S G3 Wil
B G3 Wil
B B2 R2
B R3 Y3

42) Simon: Move R3 Y3a G2

43) wil: M G1 Why3 R2

44) Simon: Move R3 G2 B3

45) wil: M Y2 B3 R2

46) Simon: Attack Y2 B3

47) wil: S G2 Why3
B G2 R2
B Y3 R2
	Simon: May the woodpushing begin.

48) Simon: Move Y2 G2 Simon

49) wil: M G1 R2 Simon

50) Simon: Sacrifice Y2 B3
Move R3 B3 B2
Move R3 B2 Simon
	wil: You woodchucks quit chucking my wood!

51) wil: S G3 Wil
B G2 Simon
B Y2 Wil
B G3 Wil

52) Simon: Move R1 Y1 R2
	wil: Even trade...

53) wil: S Y3 R2
M B3 R2 Y3a
M G2 R2 Y3
D Y2 R2 B3 B3

54) Simon: Build Y3 Simon
	Simon: Didn't see the mate thread. Then the capture was a mistake. The alternatives weren't enticing either, donating a r2 to prevent star conversion, but probably still better than this.

55) wil: S G2 Wil
B G2 Simon
C Simon G
B G1 Wil
	wil: Just window.shopping...

56) Simon: Trade R3 G3 Simon

57) wil: S R1 Y3
A R2 Y3a

58) Simon: Move Y3 Simon R2

59) wil: A R1 R2

60) Simon: Attack R1 R2

61) wil: A R1 Y3a

62) Simon: Attack B2 R2

63) wil: S Y2 Wil
M R1 Y3a R2
M R2 Y3a R2
C R2 R

64) Simon: Sacrifice G3 Simon
Build Y2 Simon
Build Y3 Simon
Build R1 Y1

65) wil: T B3 G3 Y3a

66) Simon: Move G1 Y1 Y3a
	Simon: 403 Forbidden

67) wil: S G3 Wil
B G2 B2
B G2 Y3
B G3 Wil

68) Simon: Discover Y2 Simon B2 B2a
	Simon: Sat at this position for at least an hour. I shunned the seemingly-obvious capture, yet it came out best.

69) wil: T B1 R1 Y3

70) Simon: Move G3 Y1 B3

71) wil: M R3 Y3 B2a

72) Simon: Move Y2 B2a B3

73) wil: M Y2 B3 B2a

74) Simon: Move R1 Y1 B3

75) wil: S G3 Wil
B G3 Wil
B R1 Y3
B R2 B2a

76) Simon: Sacrifice G1 Y3a
Build G1 B3

77) wil: S G3 Y3a
B G3 Y3
B Y3 B2a
B B1 Y3

78) Simon: Discover Y2 Simon R2 R2

79) wil: T G3 R3 Y3

80) Simon: Sacrifice G3 B3
Build G3 B3
Build B3 Y1
Pass

81) wil: M G2 Y3 B2a

82) Simon: Discover B3 Y1 G3 G3

83) wil: M R3 Y3 Y1

84) Simon: Move R2 Y1 G3

85) wil: A B1 Y1

86) Simon: Move G3 B3 Wil

87) wil: S Y2 B2a
M G2 Y3 Wil
M B3 Y3 Wil
C Wil G

88) Simon: Sacrifice G1 B3
Build Y2 Simon

89) wil: B G1 B2 A

90) Simon: Trade Y2 G2 Simon

91) wil: B Y2 B2a

92) Simon: Move R1 B3 R2

93) wil: T B3 G3 Wil

94) Simon: Build B3 G3
	wil: Nice move.

95) wil: B G1 B2a

96) Simon: Discover Y2 R2 G3 G3a

97) wil: M B1 Y3 Y1

98) Simon: Pass

99) wil: M Y3 B2a B3

100) Simon: Move Y2 B3 Wil

101) wil: S R1 Y3
A Y2 Wil

102) Simon: Move Y2 G3a Wil
Catastrophe Wil Y

103) wil: S G2 B2a
B G2 Wil
B G3 B2a

104) Simon: Build Y1 Simon

105) wil: Sacrifice Y3 B3
Move G3 B2a Simon
Move R3 B2a Simon
Move G3 Wil Simon

	Simon: gg!
	Simon: I've reported this as your tournament win. Normally, the winner should report games; please remember it for your remaining tournament games :) Good luck!
	wil: Oops, thanx
	wil: Ya sent a request to challenge Andy yet?
	Simon: No, I haven't challenged Andy yet. Does he still play here on SDG? Or does he prefer another way?
	wil: Working on playing live games via pandemitech


35984)
Variants: "Hard time"
Started: 2020.2.10, Ended: 2020.2.24
Participants: wil (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3
	Babamots: Hi Wil! How have you been?

2) wil: H B1 Y3 G3

3) Babamots: Build G1 Babamots
	wil: I been better, but getting better

4) wil: B G1 Wil
	Babamots: I'm glad you're up to playing again!
	wil: Should this be a tourney game?
	wil: 
	wil: Lol, we will see for how long!

5) Babamots: Trade G1 Y1 Babamots
	Babamots: You and I already played for the tournament or I'd say yes.

6) wil: T G1 B1 Wil

7) Babamots: Build Y1 Babamots
	wil: Lol, if I only had a brain

8) wil: B B1 Wil

9) Babamots: Build Y1 Babamots

10) wil: D B1 Wil Y2 Y2

11) Babamots: Discover Y1 Babamots G3 Risa

12) wil: D B1 Y2 Y3 Y3

13) Babamots: Build Y2 Babamots

14) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

15) Babamots: Trade Y2 R2 Babamots
	Babamots: I was considering some much wilder options, but this is probably safest.

16) wil: S B2 Y3
T B2 R2 Y3
T B3 G3 Wil

17) Babamots: Trade R2 B2 Babamots

18) wil: B G1 Wil

19) Babamots: Move B2 Babamots Risa

20) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil

21) Babamots: Build B3 Risa

22) wil: S B2 Y3
T B3 Y3 Y3
T B3 G3 Wil

23) Babamots: Build Y2 Risa

24) wil: D Y3 Y3 G2 G2

25) Babamots: Trade B2 R2 Risa

26) wil: B Y2 G2

27) Babamots: Build Y2 Babamots

28) wil: D Y2 G2 R3 R3

29) Babamots: Move Y1 Babamots Y3

30) wil: M B1 Y3 G2

31) Babamots: Discover Y1 Y3 G2 Orion

32) wil: B B2 G2

33) Babamots: Build B2 Risa

34) wil: M B1 G2 Risa

35) Babamots: Sacrifice Y2 Risa
Move B3 Risa Orion
Move B3 Orion Wil

36) wil: S G3 Wil
B B3 Wil
B B3 G2
B Y2 R3
C Wil B

37) Babamots: Discover Y1 Risa G2 Betazed
	wil: That looks like the end

38) wil: S Y3 G2
M B3 G2 Wil
M Y2 R3 Babamots
M Y2 R3 Babamots
C Babamots Y
	Babamots: I think this will be the end, but sometimes I get surprised by a defense.

39) Babamots: Trade B2 Y2 Risa

40) wil: T B2 Y2 G2

41) Babamots: Build Y1 Orion

42) wil: B G1 Wil

43) Babamots: Sacrifice Y2 Risa
Move Y1 Orion Wil
Move Y1 Orion Wil

44) wil: S Y2 G2
M G1 Wil Babamots
M G1 Wil Babamots
	wil: I'm a fish outta water.flopping around in death throws

45) Babamots: Move Y1 Betazed Wil
Catastrophe Wil Y
	Babamots: I'm finishing up as quickly as I can :-).

	wil: I'm gonna make it look close...
	Babamots: GG! Now I'd better hurry and challenge D5PA. Maybe I can hit the top of the ladder :-).


35987)
Variants: "Unrated"
Started: 2020.2.12, Ended: 2020.2.12
Participants: Babamots (S), Pib (N)
Winner: Babamots

1) Pib: Homeworld G2 B1 Y3

2) Babamots: Homeworld B3 G3 Y3 *

3) Pib: Build Y1 Pib

4) Babamots: Build Y1 Babamots

5) Pib: Pass

6) Babamots: Build Y1 Babamots
	Babamots: If anyone is watching, we are testing out how SDG treats certain rules, like whether you can abandon your homeworld via catastrophe.

7) Pib: Pass

8) Babamots: Move Y1 Babamots Pib
	Babamots: At this point in the game, I attempted the following move:

sacrifice y3 Babamots
move y1 Babamots Pib
move y1 Babamots Pib
pass
catastrophe Pib y

I was directed to an page reporting a divide by zero error.

9) Pib: Pass

10) Babamots: Discover Y1 Pib R3 Kronos

11) Pib: Move Y1 Pib Babamots

12) Babamots: Pass

13) Pib: Move Y3 Pib Babamots
	Pib: At this point I tried the move:

move y3 Pib Babamots
catastrophe Babamots y

I was directed to a page with an error message including:

Illegal modulus zero at /home/html/games/lib/Homeworlds/Pos.pm line 886
	Babamots: Modulus zero, that's what I meant before.
	Pib: Apparently, SDG will not prevent you from simply moving your last ship out of your home system.



35988)
Variants: "Unrated"
Started: 2020.2.12, Ended: 2020.2.12
Participants: Babamots (S), Pib (N)
Winner: Babamots

1) Pib: Homeworld Y2 G1 B3

2) Babamots: Homeworld B2 R1 G3

3) Pib: Discover B3 Pib R3 Kronos
	Babamots: If anyone was watching, this was a test of circumstances under which SDG will let you abandon your homeworld. I haven't found any conditions that will cause SDG to prevent you from killing yourself.
	Draw5PlayAll: Have you tried sacrificing your last ship and then not returning? Have you tried causing a catastrophe that (1) destroys all your ships, (2) surrenders control to your opponent, or (3) destroys your own last star?
	Babamots: I should check those. Thanks for the ideas! So far, SDG has allowed every type of suicide.



35994)
Started: 2020.2.13, Ended: 2020.3.1
Participants: Draw5PlayAll (S), DodoBirb (N)
Winner: Draw5PlayAll

1) DodoBirb: Homeworld B1 Y2 G3
	DodoBirb: Good Luck! I assume this is for the Tournament?


2) Draw5PlayAll: Homeworld B1 G3 B3 *

3) DodoBirb: Build G1 Dodobirb
	Draw5PlayAll: Absolutely

4) Draw5PlayAll: Build B1 Draw5playall

5) DodoBirb: Build G1 Dodobirb

6) Draw5PlayAll: Trade B3 Y3 Draw5playall

7) DodoBirb: Trade G3 B3 Dodobirb

8) Draw5PlayAll: Build B2 Draw5playall

9) DodoBirb: Build B2 Dodobirb

10) Draw5PlayAll: Sacrifice Y3 Draw5playall
Discover B1 Draw5playall Y2 Temp
Discover B1 Temp Y3 Orary
Move B1 Orary Dodobirb
Catastrophe Dodobirb Blue

11) DodoBirb: Build G1 Dodobirb
	DodoBirb: Yikes, I saw that move but thought to myself, "why would he do that?"


12) Draw5PlayAll: Build B1 Draw5playall

13) DodoBirb: Discover G1 Dodobirb B1 Newhome
	Draw5PlayAll: I assumed that it was worth it to deny you access to blue.

14) Draw5PlayAll: Trade B2 R2 Draw5playall

15) DodoBirb: Build G2 Newhome

16) Draw5PlayAll: Build B2 Draw5playall

17) DodoBirb: Trade G2 Y2 Newhome

18) Draw5PlayAll: Trade B2 Y2 Draw5playall

19) DodoBirb: Move Y2 Newhome Dodobirb
	DodoBirb: GG, quick game lol

20) Draw5PlayAll: Move R2 Draw5playall Dodobirb

21) DodoBirb: Pass

22) Draw5PlayAll: Attack Y2 Dodobirb

23) DodoBirb: Pass

24) Draw5PlayAll: Sacrifice R2 Dodobirb
Attack G1 Dodobirb
Attack G1 Dodobirb
	Draw5PlayAll: I wonder if this is the shortest tournament game that was not terminated due to time.



35977)
Variants: "Unrated"
Started: 2020.2.14, Ended: 2020.2.15
Participants: Babamots (S), eliscinsky (N)
Winner: Babamots

1) eliscinsky: Homeworld B1 R2 G3
	eliscinsky: Greetings Babamots! Hope all is well for you. 

2) Babamots: Homeworld G3 B1 B3 *
	eliscinsky: I know this is NOT a GHWT19 game.  Just for fun!
	eliscinsky: eliscinsky
Babamots

	Babamots: Just for fun confirmed!

Any particular reason to put our names in the chat? It looks like like part of a plan of some kind.

3) eliscinsky: Build G1 Eliscinsky
	Babamots: Do you know how to deal with the instafreeze?
	eliscinsky: LOL My mistake I usually put names of systems in my notes so I can copy & paste easier.

As for the instafreeze ... not yet :/

4) Babamots: Build B1 Babamots

5) eliscinsky: Trade G3 B3 Eliscinsky
	Babamots: I've taken the last small blue and you're in danger of never being able to get a blue ship. With a monopoly, people can also repeatedly build a large ship, trade it away, build large, etc.

You may want to trade your g3 for a b3 to keep me from running away with all the blue. That's my usual defense.

6) Babamots: Trade B3 Y3 Babamots
	eliscinsky: Thanks.  I was thinking of going after yellow, but I realize that w/ so much blue I couldn't truly keep you from anything. At least not at this point in the game.

7) eliscinsky: B B2 Eliscinsky

8) Babamots: Build B2 Babamots

9) eliscinsky: T B2 Y2 Eliscinsky

10) Babamots: Trade B2 R2 Babamots

11) eliscinsky: B B2 Eliscinsky

12) Babamots: Sacrifice Y3 Babamots
Discover B1 Babamots R2 Remus
Discover B1 Remus R3 Chalna
Move B1 Chalna Eliscinsky
Catastrophe Eliscinsky B

13) eliscinsky: Build G1 Eliscinsky
	Babamots: No clue if this is good for me or not, but it's pretty interesting. Notice the hyperspace bypass: our homeworlds are connected now.
	eliscinsky: OH SNAP!! Should have seen that coming. Duh!

Seriously I refreshed my screen and was like ... "WTF is wrong w/ this display" then I read the actions. OMG you rock! I love learning from a master!

14) Babamots: Build R1 Babamots
	eliscinsky: But w/out conversion tech I don't see how I can overtake you.  Guess we'll see.
	Babamots: You have a ship advantage, but I'm hoping that I can finish this fairly quickly. Or I may have made the mistake they warn about in the rules: "Beware the Incomplete Battle-Plan."

15) eliscinsky: Build G1 Eliscinsky

16) Babamots: Build R1 Babamots

17) eliscinsky: Discover G1 Eliscinsky Y3 Oldyeller

18) Babamots: Trade R2 Y2 Babamots

19) eliscinsky: Build G2 Eliscinsky

20) Babamots: Build R1 Babamots

21) eliscinsky: Move G1 Eliscinsky Babamots

22) Babamots: Build Y1 Babamots

23) eliscinsky: M G1 Eliscinsky Babamots

24) Babamots: Move R1 Babamots Eliscinsky

25) eliscinsky: B G2 Babamots
C Babamots G
	Babamots: Red alert :-)

I'm afraid it's over, but as a quick last observation, you could have built a new green ship in my home instead of moving one of your old ones. If the game weren't so close to over, it would have saved you a ship.

26) Babamots: Sacrifice Y2 Babamots
Move R1 Babamots Eliscinsky
Move R1 Babamots Eliscinsky
Catastrophe Eliscinsky R
	eliscinsky: Yeah, I've made a few mistakes 
	Draw5PlayAll: 4 pieces on the board.



35790)
Started: 2020.2.16, Ended: 2020.2.27
Participants: nycavri (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld Y1 B2 G3
	nycavri: Confirming a tournament game.  TaGG!
	eliscinsky: Agreed for the Great Homeworlds Tournament 2019
GL / HF!

2) nycavri: Homeworld B1 Y3 G3
	eliscinsky: I'll submit the start form :)

3) eliscinsky: Build G1 Eliscinsky

4) nycavri: Build G1 Nycavri

5) eliscinsky: Trade G1 B1 Eliscinsky

6) nycavri: Trade G1 Y1 Nycavri

7) eliscinsky: Build G1 Eliscinsky

8) nycavri: Build G1 Nycavri

9) eliscinsky: Trade G1 Y1 Eliscinsky

10) nycavri: Build Y2 Nycavri

11) eliscinsky: Build Y2 Eliscinsky

12) nycavri: Discover Y1 Nycavri Y2 Deacon

13) eliscinsky: Discover Y1 Eliscinsky G3 Earth

14) nycavri: Trade G1 R1 Nycavri

15) eliscinsky: B Y3 Earth

16) nycavri: Trade Y2 R2 Nycavri

17) eliscinsky: Build Y2 Eliscinsky

18) nycavri: Build G1 Nycavri

19) eliscinsky: Trade Y2 B2 Eliscinsky

20) nycavri: Move Y1 Deacon Earth

21) eliscinsky: Discover Y1 Earth G2 Earth2

22) nycavri: Move R2 Nycavri Earth2

23) eliscinsky: Trade B1 R1 Eliscinsky

24) nycavri: Attack Y1 Earth2

25) eliscinsky: Move Y3 Earth Earth2

26) nycavri: Move R2 Earth2 Earth

27) eliscinsky: Build R1 Eliscinsky

28) nycavri: Build R2 Earth

29) eliscinsky: Sacrifice Y2 Eliscinsky
Move R1 Eliscinsky Earth
Move R1 Eliscinsky Earth
Catastrophe Earth R

30) nycavri: Move Y1 Earth2 Earth

31) eliscinsky: Build G1 Eliscinsky

32) nycavri: Discover G1 Nycavri Y2 May

33) eliscinsky: Trade G1 R1 Eliscinsky

34) nycavri: Build Y2 Earth

35) eliscinsky: Trade B2 R2 Eliscinsky

36) nycavri: Build G1 Nycavri

37) eliscinsky: Discover R2 Eliscinsky Y3 Sol

38) nycavri: Trade G1 B1 Nycavri

39) eliscinsky: Move Y3 Earth2 Earth
Catastrophe Earth Y

40) nycavri: Move B1 Nycavri May

41) eliscinsky: Move R2 Sol May

42) nycavri: Discover G1 May B3 Mercury

43) eliscinsky: Attack B1 May

44) nycavri: Trade G1 Y1 Mercury

45) eliscinsky: Trade B1 G1 May

46) nycavri: Build G1 Nycavri

47) eliscinsky: Build G1 May

48) nycavri: Discover G1 Nycavri Y2 Taylor

49) eliscinsky: Build G2 May

50) nycavri: Build G2 Taylor

51) eliscinsky: Build G2 Eliscinsky

52) nycavri: Move G2 Taylor Mercury

53) eliscinsky: Move G1 May Nycavri

54) nycavri: Attack G1 Nycavri

55) eliscinsky: Move G1 May Nycavri

56) nycavri: Trade G3 R3 Nycavri

57) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build G3 Nycavri
Build G3 May

58) nycavri: Move G1 Taylor Nycavri
Catastrophe Nycavri G

59) eliscinsky: Trade G2 Y2 Eliscinsky

60) nycavri: Build Y1 Mercury

61) eliscinsky: B R1 May

62) nycavri: Move Y1 Mercury Eliscinsky

63) eliscinsky: Sacrifice Y2 Eliscinsky
Move R1 May Nycavri
Move R2 May Nycavri
Catastrophe Nycavri R

	eliscinsky: Good game. Thanks.  See ya next tourney!


36009)
Variants: "Unrated"
Started: 2020.2.17, Ended: 2020.2.19
Participants: looneykristin (S), Laurie_Menke (N)
Winner: looneykristin

1) Laurie_Menke: Homeworld Y1 B3 G3
	Laurie_Menke: Hi Mark!  (Note: This is Laurie, but it's not Kristin. Mark Streed is borrowing her account to give Homeworlds a try!)

2) looneykristin: Homeworld Y3 B2 G3

3) Laurie_Menke: Build G1 Laurie_menke
	looneykristin: Hey Laurie, are you around? Can you jump on Skype and chat as well? 
	Laurie_Menke: Sure can... 

4) looneykristin: Build G1 Looneykristin

5) Laurie_Menke: Trade G1 R1 Laurie_menke

6) looneykristin: Trade G1 R1 Looneykristin

7) Laurie_Menke: Build G1 Laurie_menke

8) looneykristin: Build G1 Looneykristin

9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow

10) looneykristin: Discover G1 Looneykristin Y1 Marksworld

11) Laurie_Menke: Move G1 Yellow Marksworld

12) looneykristin: Sacrifice R1 Looneykristin
Attack G1 Marksworld

13) Laurie_Menke: Build G1 Laurie_menke

14) looneykristin: Build G2 Marksworld

15) Laurie_Menke: Discover G1 Laurie_menke Y2 Sunshine

16) looneykristin: Build G2 Looneykristin

17) Laurie_Menke: Move G1 Sunshine Marksworld
Catastrophe Marksworld G

18) looneykristin: Build G1 Looneykristin

19) Laurie_Menke: Build R1 Laurie_menke

20) looneykristin: Trade G1 R1 Looneykristin

21) Laurie_Menke: Discover R1 Laurie_menke Y2 Lemon

22) looneykristin: Discover R1 Looneykristin Y1 Whoareyou

23) Laurie_Menke: Move R1 Lemon Whoareyou

24) looneykristin: Attack R1 Whoareyou

25) Laurie_Menke: Build R2 Laurie_menke

26) looneykristin: Move G2 Looneykristin Whoareyou

	Laurie_Menke: OK... we got what we needed out of this intro, so I'm just going to end the game... thanks for giving Homeworlds a try, Mark!


36010)
Started: 2020.2.18, Ended: 2020.2.27
Participants: amoscai (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld B2 Y3 G3

2) amoscai: Homeworld R1 B2 G3
	zweiterlinde: Thanks for teeing this up again! Last game was a nice learning game for me.

3) zweiterlinde: Build G1 Zweiterlinde

4) amoscai: Build G1 Amoscai
	amoscai: (: my pleasure

5) zweiterlinde: Discover G1 Zweiterlinde B1 Ada

6) amoscai: Trade G1 Y1 Amoscai

7) zweiterlinde: Build G1 Zweiterlinde

8) amoscai: Build G1 Amoscai

9) zweiterlinde: Build G2 Ada

10) amoscai: Discover G1 Amoscai R3 Beta

11) zweiterlinde: Discover G1 Zweiterlinde B1 Cobol

12) amoscai: Build G2 Amoscai

13) zweiterlinde: Trade G2 Y2 Ada

14) amoscai: Trade G2 B2 Amoscai

15) zweiterlinde: Move Y2 Ada Beta

16) amoscai: Build G2 Beta

17) zweiterlinde: Attack G2 Beta

18) amoscai: Build G2 Amoscai
	amoscai: Ooo. I just learnt that anyone can use the star power. Makes sense. 

19) zweiterlinde: Attack G1 Beta
	zweiterlinde: I was a little confused at that, makes sense now!

20) amoscai: Move G3 Amoscai Beta

21) zweiterlinde: Move Y2 Beta Ada

22) amoscai: Attack G2 Beta

23) zweiterlinde: Move G1 Ada Beta
Catastrophe Beta Green

24) amoscai: Build G1 Amoscai

25) zweiterlinde: Build G1 Cobol

26) amoscai: Discover G1 Amoscai Y3 Bolt

27) zweiterlinde: Trade G1 B1 Cobol

28) amoscai: Build B3 Amoscai

29) zweiterlinde: Sacrifice Y2 Ada
Move B1 Cobol Bolt
Move B1 Bolt Amoscai
Catastrophe Amoscai Blue

30) amoscai: Build G1 Bolt

31) zweiterlinde: Build G2 Zweiterlinde

32) amoscai: Move G1 Bolt Cobol

33) zweiterlinde: Trade G3 R3 Zweiterlinde

	amoscai: Lost I think. I think I'm slowly learning more. 
	zweiterlinde: Gg!


35973)
Variants: "Unrated"
Started: 2020.2.18, Ended: 2020.3.7
Participants: Trydnt (S), disaac (N)
Winner: Trydnt

1) disaac: Homeworld B3 Y1 G3

2) Trydnt: Homeworld Y2 B1 G3

3) disaac: Build G1 Disaac

4) Trydnt: Build G1 Trydnt

5) disaac: Trade G1 B1 Disaac

6) Trydnt: Trade G1 Y1 Trydnt

7) disaac: Build G1 Disaac

8) Trydnt: Build Y1 Trydnt

9) disaac: Build B1 Disaac

10) Trydnt: Discover Y1 Trydnt G3 G3

11) disaac: Discover B1 Disaac G2 Face

12) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y2 G3
Build Y3 Trydnt

13) disaac: Build B2 Face

14) Trydnt: Trade Y3 G3 Trydnt

15) disaac: Build B2 Disaac

16) Trydnt: Build Y3 Trydnt

17) disaac: Discover B2 Disaac G2 Cloud

18) Trydnt: Discover Y3 Trydnt B3 B3

19) disaac: Sacrifice G3 Disaac
Build B2 Cloud
Build B3 Disaac
Build G1 Disaac

20) Trydnt: Build Y3 Trydnt

21) disaac: Trade B3 Y3 Disaac

22) Trydnt: Discover Y3 Trydnt B3 Be3

23) disaac: Move G1 Disaac Face

24) Trydnt: Trade Y3 G3 B3

25) disaac: Build Y3 Disaac

26) Trydnt: Sacrifice Y2 G3
Move Y1 G3 Face
Move Y1 Face Disaac
Catastrophe Disaac Y

27) disaac: Trade G1 Y1 Face

28) Trydnt: Build G1 Trydnt

29) disaac: Trade B2 Y2 Cloud

30) Trydnt: Trade G1 R1 Trydnt

31) disaac: Trade B2 R2 Face

32) Trydnt: Sacrifice Y2 G3
Move Y3 Be3 Cloud
Move Y3 Cloud Disaac

33) disaac: Sacrifice Y2 Cloud
Move B1 Disaac Trydnt
Move Y1 Face Disaac

34) Trydnt: Attack B1 Trydnt

35) disaac: Build B2 Face

36) Trydnt: Trade G3 R3 B3

37) disaac: Build Y1 Disaac

38) Trydnt: Sacrifice R3 B3
Attack Y1 Disaac
Attack Y1 Disaac
Attack G1 Disaac

	disaac: Thank you for the game. 
	Trydnt: anytime :)


35995)
Started: 2020.2.18, Ended: 2020.2.24
Participants: MrStickman (S), randrews (N)
Winner: MrStickman

1) randrews: Homeworld G1 B2 Y3
	MrStickman: 92 messages, whew.

2) MrStickman: Homeworld B2 Y3 G3

3) randrews: Build Y1 Randrews

4) MrStickman: Build G1 Mrstickman

5) randrews: Discover Y1 Randrews G3 Greenie

6) MrStickman: Build G1 Mrstickman

7) randrews: Build Y1 Randrews

8) MrStickman: Discover G1 Mrstickman B1 Lorem

9) randrews: Trade Y1 B1 Randrews

10) MrStickman: Build G2 Mrstickman

11) randrews: Build Y1 Randrews

12) MrStickman: Discover G1 Mrstickman Y1 Ipsum

13) randrews: Move B1 Randrews Greenie

14) MrStickman: Sacrifice G3 Mrstickman
Build G2 Ipsum
Build G2 Lorem
Build G3 Mrstickman

15) randrews: Discover Y1 Randrews G3 Nope

16) MrStickman: Trade G3 R3 Mrstickman

17) randrews: Build Y2 Greenie

18) MrStickman: Build G3 Mrstickman

19) randrews: Build Y2 Greenie

20) MrStickman: Trade G3 R3 Mrstickman

21) randrews: Trade Y3 G3 Randrews

22) MrStickman: Move G2 Ipsum Greenie

23) randrews: Trade Y2 R2 Greenie

24) MrStickman: Sacrifice R3 Mrstickman
Attack R2 Greenie
Attack Y2 Greenie
Attack Y1 Greenie

25) randrews: Build B1 Greenie

26) MrStickman: Move G2 Greenie Randrews

27) randrews: Trade G3 R3 Randrews

28) MrStickman: Sacrifice G2 Lorem
Build G2 Randrews
Build G3 Randrews
Catastrophe Randrews Green

29) randrews: Build B2 Greenie

30) MrStickman: Attack B2N Greenie

31) randrews: Build B3 Greenie
Catastrophe Greenie Blue

32) MrStickman: Build G1 Lorem

33) randrews: Build Y2 Nope

34) MrStickman: Build G2 Ipsum

35) randrews: Sacrifice Y1 Nope
Move Y2 Nope Randrews

36) MrStickman: Build G2 Lorem

37) randrews: Move R3 Randrews Ipsum

38) MrStickman: Move R2 Greenie Randrews

39) randrews: Move R3 Ipsum Randrews

40) MrStickman: Sacrifice G2 Lorem
Build R1 Randrews
Build R1 Randrews
Catastrophe Randrews Red

41) randrews: Trade Y2 G2 Randrews

42) MrStickman: Move G2 Ipsum Randrews

43) randrews: Trade G2 R2 Randrews

44) MrStickman: Sacrifice R3 Mrstickman
Attack R2 Randrews
Pass
Pass



35975)
Variants: "Unrated, Hard time"
Started: 2020.2.18, Ended: 2020.2.25
Participants: eliscinsky (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) eliscinsky: Homeworld G1 Y3 B3

3) wil: B G1 Wil
	eliscinsky: Hi Wil! I'm looking forward to learning something new. GL/HF
	wil: Pluto is no longer a planet!

4) eliscinsky: B B1 Eliscinsky
	wil: Don't let me control construction!

5) wil: B G1 Wil
	eliscinsky: Oh, I've got plans, bwahahahha!
	eliscinsky: Not that any of them actually work, mind you. LOL

6) eliscinsky: Build B1 Eliscinsky

7) wil: D G1 Wil B3 B3

8) eliscinsky: Discover B1 Eliscinsky G2 Lake

9) wil: S G3 Wil
B G2 B3
B G2 B3
B G3 Wil

10) eliscinsky: Trade B3 G3 Eliscinsky

11) wil: B G3 Wil

12) eliscinsky: Build B2 Eliscinsky

13) wil: T G2 Y2 B3

14) eliscinsky: Sacrifice G3 Eliscinsky
Build B2 Lake
Build B2 Lake
Build B3 Eliscinsky

15) wil: D G3 Wil B3 Be3

16) eliscinsky: T B3 G3 Eliscinsky

17) wil: T G3 B3 Be3

18) eliscinsky: Trade B2 Y2 Lake

19) wil: S G3 Wil
B G2 Wil
B G3 Wil
B G3 B3

20) eliscinsky: Build B2 Lake
	eliscinsky: Interesting: I'm seeing how having a green as a star is more of a hindrance than a benefit.

21) wil: T G3 Y3 B3

22) eliscinsky: Trade B2 R2 Lake
	wil: Eliminates factory in he and can be dangerous

23) wil: T G2 R2 Wil

24) eliscinsky: Discover B2 Lake Y3 Sol

25) wil: M Y3 B3 Lake

26) eliscinsky: Sacrifice B2 Sol
Trade B1 Y1 Lake
Trade B1 Y1 Eliscinsky

27) wil: S R2 Wil
A R2 Lake
A Y2 Lake

28) eliscinsky: B Y1 Lake
C Lake Y

29) wil: S Y2 B3
M B3 Be3 Lake
M B3 Lake Eliscinsky

30) eliscinsky: T B2 R2 Eliscinsky

31) wil: S R2 Lake
A G3 Eliscinsky
A R2 Eliscinsky
	eliscinsky: Good game wil. I see my end in sight.

32) eliscinsky: Build Y1 Eliscinsky

33) wil: S B3 Eliscinsky
T R2 Y2 Eliscinsky
C Eliscinsky Y
P
P
	wil: Monopolies can destroy
	eliscinsky: Thanks for the lesson! I always enjoy learning new tactics / strategies.
	eliscinsky: Think I'll go out w/ a bang!
	eliscinsky: Whoops, I mean ... Run Away! Run Away!
	eliscinsky: Damn cannot kill myself, cannot run away.  Ah well.

	wil: Its a green uni...  Gg
	wil: that was new to me!


36015)
Started: 2020.2.19, Ended: 2020.2.23
Participants: huddyrx (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld B1 Y2 G3

2) huddyrx: Homeworld B3 R1 G3
	zweiterlinde: Good luck!

3) zweiterlinde: Build G1 Zweiterlinde
	huddyrx: Thanks! You too!

4) huddyrx: Build G1 Huddyrx

5) zweiterlinde: Discover G1 Zweiterlinde B3 Arcturus

6) huddyrx: Trade G1 Y1 Huddyrx

7) zweiterlinde: Build G1 Zweiterlinde

8) huddyrx: Build Y1 Huddyrx

9) zweiterlinde: Discover G1 Zweiterlinde B3 Brio

10) huddyrx: Trade Y1 B1 Huddyrx

11) zweiterlinde: Build G1 Arcturus

12) huddyrx: Build G2 Huddyrx

13) zweiterlinde: Build G2 Zweiterlinde

14) huddyrx: Discover B1 Huddyrx Y2 Alderaan

15) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Brio
Build G3 Zweiterlinde
Build G3 Zweiterlinde

16) huddyrx: Sacrifice G3 Huddyrx
Build G3 Huddyrx
Build Y1 Huddyrx
Build B1 Alderaan

17) zweiterlinde: Trade G2 Y2 Brio

18) huddyrx: Discover Y1 Huddyrx B2 Tatooine

19) zweiterlinde: Trade G1 Y1 Arcturus

20) huddyrx: Sacrifice G2 Huddyrx
Build Y3 Huddyrx
Build Y3 Tatooine

21) zweiterlinde: Move G3 Zweiterlinde Brio

22) huddyrx: Trade Y1 G1 Huddyrx

23) zweiterlinde: Build G2 Arcturus

24) huddyrx: Discover B1 Alderaan Y3 Bespin

25) zweiterlinde: Build Y1 Brio

26) huddyrx: Sacrifice G1 Huddyrx
Build B2 Bespin

27) zweiterlinde: Trade G2 B2 Arcturus

28) huddyrx: Move B1 Alderaan Bespin

29) zweiterlinde: Sacrifice Y2 Brio
Move B2 Arcturus Zweiterlinde
Move B2 Zweiterlinde Bespin
Catastrophe Bespin Blue

30) huddyrx: Build Y2 Huddyrx
	huddyrx: Accidentally hit undo
	zweiterlinde: Np

31) zweiterlinde: Trade G3 R3 Brio
	huddyrx: I saw that coming too late.
	huddyrx:  I was putting the move back in and noticed,  but didn't want to change the move.

32) huddyrx: Discover Y1 Tatooine G3 Hoth
	zweiterlinde: Fwiw I believe in liberal undos if the game state hasn't evolved, so please feel free to do so in the future!
	zweiterlinde: I was almost in deep trouble except there was that one blue ship left I could build to defend

33) zweiterlinde: Sacrifice G2 Zweiterlinde
Build Y2 Brio
Build Y3 Arcturus
	huddyrx: Yeah. It was a huge mistake.. that's what I get for playing games while I'm at work.

34) huddyrx: Build G1 Huddyrx
	huddyrx: I agree about undo actions especially in online games. It's easy to misclick and if your phone is like mine it's starting to autocorrect some of my ships from g3 to g1.

35) zweiterlinde: Build G2 Zweiterlinde

36) huddyrx: Move Y3 Tatooine Hoth

37) zweiterlinde: Move R3 Brio Zweiterlinde

38) huddyrx: Discover Y2 Huddyrx B2 Dathomir

39) zweiterlinde: Move R3 Zweiterlinde Hoth

40) huddyrx: Sacrifice Y2 Dathomir
Move Y3 Hoth Zweiterlinde
Move Y1 Hoth Zweiterlinde

41) zweiterlinde: Trade G2 R2 Zweiterlinde

42) huddyrx: Sacrifice G1 Huddyrx
Build Y2 Zweiterlinde
Catastrophe Zweiterlinde Yellow

43) zweiterlinde: Sacrifice Y1 Brio
Discover R3 Hoth Y2 Croix

44) huddyrx: Build G1 Huddyrx
	zweiterlinde: Nice! I forgot about the green sacrifice technique

45) zweiterlinde: Move Y3 Arcturus Croix

46) huddyrx: Trade G1 B1 Huddyrx

47) zweiterlinde: Build G1 Zweiterlinde

48) huddyrx: Discover B1 Huddyrx G2 Yavin

49) zweiterlinde: Trade G3 R3 Zweiterlinde

50) huddyrx: Build B1 Yavin

51) zweiterlinde: Sacrifice Y2 Brio
Move R3 Croix Huddyrx
Move Y3 Croix Huddyrx

52) huddyrx: Build G2 Huddyrx

53) zweiterlinde: Sacrifice R3 Zweiterlinde
Attack G3 Huddyrx
Attack Y3 Huddyrx
Attack G2 Huddyrx

	zweiterlinde: Gg! I was one turn away from losing I think.
	huddyrx: Yeah, I hoping to sacrifice the yellow to move some blue in, but saw your incoming attack. I should have sacrificed my g3 to build more ships at home. I didn't think about you using the red sacrifice to take over everything.
	zweiterlinde: That's another drawback of this format, it prevents the "you know I win on the next move right" kind of interaction
	huddyrx: I know. I'm dying to play it in person. 


36025)
Started: 2020.2.20, Ended: 2020.7.18
Participants: huddyrx (S), Mantheron (N)
Winner: Mantheron

1) Mantheron: Homeworld Y1 B2 G3

2) huddyrx: Homeworld B3 R1 G3

3) Mantheron: Build G1 Mantheron

4) huddyrx: Build G1 Huddyrx

5) Mantheron: Discover G1 Mantheron Y3 Altair

6) huddyrx: Trade G1 Y1 Huddyrx

7) Mantheron: Build G1 Mantheron

8) huddyrx: Build G1 Huddyrx

9) Mantheron: Build G2 Altair

10) huddyrx: Build G2 Huddyrx

11) Mantheron: Trade G1 Y1 Mantheron

12) huddyrx: Trade G1 B1 Huddyrx

13) Mantheron: Build Y2 Mantheron

14) huddyrx: Build Y2 Huddyrx

15) Mantheron: Discover Y2 Mantheron R3 Bellatrix

16) huddyrx: Discover B1 Huddyrx G2 Flanders

17) Mantheron: Build G1 Mantheron

18) huddyrx: Sacrifice Y2 Huddyrx
Discover B1 Flanders G3 Lovejoy
Move B1 Lovejoy Mantheron

19) Mantheron: Move G1 Mantheron Bellatrix

20) huddyrx: Trade B1 G1 Mantheron
	huddyrx: I wish I could remember what I was thinking when I moved that blue ship.
	huddyrx: I wish I could remember what I was thinking when I moved that blue ship.

21) Mantheron: Trade G3 R3 Mantheron

22) huddyrx: Build G2 Huddyrx

23) Mantheron: Sacrifice Y2 Bellatrix
Discover G1 Bellatrix B2 Castor
Move G1 Castor Huddyrx
Catastrophe Huddyrx Green

24) huddyrx: Trade Y1 G1 Huddyrx

25) Mantheron: Attack G1 Mantheron

26) huddyrx: Build G2 Huddyrx

27) Mantheron: Build Y1 Mantheron

28) huddyrx: Trade G2 Y2 Huddyrx

29) Mantheron: Build R1 Mantheron

30) huddyrx: Build G2 Huddyrx

31) Mantheron: Discover G1 Altair Y2 Deneb

32) huddyrx: Build Y2 Huddyrx

33) Mantheron: Trade Y1 B1 Mantheron

34) huddyrx: Discover Y2 Huddyrx G2 Lovejoy

35) Mantheron: Build G3 Deneb

36) huddyrx: Build Y1 Lovejoy

37) Mantheron: Sacrifice G3 Deneb
Build G3 Deneb
Build G3 Mantheron
Build G3 Altair



36028)
Started: 2020.2.20, Ended: 2020.3.9
Participants: Mantheron (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld B1 Y3 G3

2) Mantheron: Homeworld G1 B2 Y3

3) zweiterlinde: Build G1 Zweiterlinde

4) Mantheron: Build Y1 Mantheron
	zweiterlinde: gl!
	Mantheron: You too.

5) zweiterlinde: Discover G1 Zweiterlinde B2 Apple

6) Mantheron: Trade Y1 R1 Mantheron

7) zweiterlinde: Build G1 Apple

8) Mantheron: Build Y1 Mantheron

9) zweiterlinde: Build G2 Zweiterlinde

10) Mantheron: Discover Y1 Mantheron R3 Banana

11) zweiterlinde: Discover G2 Zweiterlinde B2 Cantaloupe

12) Mantheron: Trade Y3 G3 Mantheron

13) zweiterlinde: Build G2 Zweiterlinde

14) Mantheron: Build R1 Mantheron

15) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Apple
Build G3 Zweiterlinde
Build G3 Cantaloupe

16) Mantheron: Build R1 Mantheron

17) zweiterlinde: Trade G1 Y1 Apple

18) Mantheron: Build G1 Mantheron

19) zweiterlinde: Trade G2 Y2 Cantaloupe

20) Mantheron: Trade G1 Y1 Mantheron

21) zweiterlinde: Move G3 Cantaloupe Banana

22) Mantheron: Discover Y1 Banana G2 Date

23) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G1 Banana
Build G3 Zweiterlinde
Build Y2 Cantaloupe

24) Mantheron: Discover G3 Mantheron R3 Elderberry

25) zweiterlinde: Trade G2 R2 Zweiterlinde

26) Mantheron: Build G2 Elderberry

27) zweiterlinde: Sacrifice Y1 Apple
Move G3 Banana Mantheron

28) Mantheron: Move R1 Mantheron Elderberry

29) zweiterlinde: Sacrifice R2 Zweiterlinde
Attack R1 Mantheron
Attack R1 Mantheron

30) Mantheron: Sacrifice G3 Elderberry
Build Y1 Mantheron
Build Y2 Date
Build G3 Elderberry

31) zweiterlinde: Attack Y1 Mantheron

32) Mantheron: Sacrifice G3 Elderberry
Build G3 Elderberry
Build Y3 Mantheron
Build R2 Elderberry

33) zweiterlinde: Attack Y3 Mantheron

34) Mantheron: Sacrifice Y2 Date
Move R1 Elderberry Mantheron
Move R2 Elderberry Mantheron
Catastrophe Mantheron Red

35) zweiterlinde: Sacrifice Y2 Cantaloupe
Move Y2 Cantaloupe Banana
Move Y2 Banana Mantheron
Catastrophe Mantheron Yellow
	zweiterlinde: Gg!



36014)
Started: 2020.2.20, Ended: 2020.3.8
Participants: amoscai (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld Y1 B3 G3

2) amoscai: Homeworld R1 B3 G3

3) zweiterlinde: Build G1 Zweiterlinde

4) amoscai: Build G1 Amoscai
	zweiterlinde: gl!
	amoscai: u2

5) zweiterlinde: Discover G1 Zweiterlinde B2 Alto

6) amoscai: Trade G1 Y1 Amoscai

7) zweiterlinde: Build G1 Zweiterlinde

8) amoscai: Build G1 Amoscai

9) zweiterlinde: Build G2 Alto

10) amoscai: Discover G1 Amoscai Y2 Base

11) zweiterlinde: Trade G1 Y1 Alto

12) amoscai: Build Y2 Amoscai

13) zweiterlinde: Build Y2 Alto

14) amoscai: Move Y2 Amoscai Base

15) zweiterlinde: Discover Y2 Alto G3 Carota

16) amoscai: Build Y3 Amoscai

17) zweiterlinde: Build Y3 Alto

18) amoscai: Move Y1 Amoscai Alto

19) zweiterlinde: Build Y3 Carota

20) amoscai: Move Y3 Amoscai Alto
Catastrophe Alto Yellow

21) zweiterlinde: Move Y2 Carota Base
	amoscai: Wasn't sure if that was right heh

22) amoscai: Build G1 Base
	amoscai: build g1 base

23) zweiterlinde: Sacrifice G1 Zweiterlinde
Build Y1 Base
Catastrophe Base Yellow

24) amoscai: Build G1 Amoscai

25) zweiterlinde: Build G1 Alto

26) amoscai: Trade G1 Y1 Amoscai

27) zweiterlinde: Trade G1 Y1 Alto

28) amoscai: Build Y2 Amoscai

29) zweiterlinde: Build G1 Zweiterlinde

30) amoscai: Trade Y2 R2 Amoscai

31) zweiterlinde: Trade G2 R2 Alto

32) amoscai: Build Y2 Amoscai

33) zweiterlinde: Move G1 Zweiterlinde Alto

34) amoscai: Build G1 Amoscai

35) zweiterlinde: Build G1 Alto

36) amoscai: Move G1 Amoscai Alto

37) zweiterlinde: Attack G1 Alto

38) amoscai: Discover Y1 Amoscai G2 Beta

39) zweiterlinde: Trade G1 R1 Alto

40) amoscai: Build Y2 Beta

41) zweiterlinde: Build G1 Zweiterlinde

42) amoscai: Discover Y1 Beta Y3 Delta

43) zweiterlinde: Build G2 Alto

44) amoscai: Move R2 Amoscai Beta

45) zweiterlinde: Discover G1 Alto Y3 Empyrio

46) amoscai: Build Y2 Beta

47) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Alto
Build G3 Zweiterlinde
Build R1 Alto

48) amoscai: Move Y1 Delta Alto

49) zweiterlinde: Build Y3 Alto

50) amoscai: Sacrifice Y2 Beta
Move Y2 Beta Carota
Move Y2 Carota Alto
Catastrophe Alto Yellow

51) zweiterlinde: Sacrifice Y3 Carota
Move G1 Alto Amoscai
Move G2 Alto Amoscai
Move G2 Alto Amoscai
Catastrophe Amoscai Green

52) amoscai: Trade Y2 G2 Amoscai

53) zweiterlinde: Discover G3 Zweiterlinde Y2 Fortitude

54) amoscai: Build G1 Amoscai

55) zweiterlinde: Move G3 Fortitude Amoscai

56) amoscai: Build G2 Amoscai
Catastrophe Amoscai Green
	zweiterlinde: Gg!



36026)
Started: 2020.2.20, Ended: 2020.3.9
Participants: huddyrx (S), amoscai (N)
Winner: huddyrx

1) amoscai: Homeworld Y1 B3 G3

2) huddyrx: Homeworld B3 R2 G3

3) amoscai: Build G1 Amoscai

4) huddyrx: Build G1 Huddyrx

5) amoscai: Discover G1 Amoscai R2 Bam

6) huddyrx: Trade G1 Y1 Huddyrx

7) amoscai: Build G1 Amoscai

8) huddyrx: Discover Y1 Huddyrx B1 Skywalker

9) amoscai: Build G1 Bam

10) huddyrx: Build G2 Huddyrx

11) amoscai: Build G2 Amoscai

12) huddyrx: Sacrifice G2 Huddyrx
Build G2 Huddyrx
Build Y1 Skywalker

13) amoscai: Trade G2 Y2 Amoscai

14) huddyrx: Trade G2 Y2 Huddyrx

15) amoscai: Build Y2 Amoscai

16) huddyrx: Sacrifice Y2 Huddyrx
Move Y1 Skywalker Bam
Move Y1 Bam Amoscai
Catastrophe Amoscai Yellow

17) amoscai: Trade G1 Y1 Amoscai

18) huddyrx: Build G1 Huddyrx

19) amoscai: Build G2 Amoscai

20) huddyrx: Trade G1 B1 Huddyrx

21) amoscai: Trade G2 B2 Amoscai

22) huddyrx: Move Y1 Skywalker Huddyrx

23) amoscai: Build Y1 Amoscai

24) huddyrx: Build Y2 Huddyrx

25) amoscai: Move Y1 Amoscai Bam

26) huddyrx: Discover B1 Huddyrx G1 Solo

27) amoscai: Build Y2 Amoscai

28) huddyrx: Build B1 Solo

29) amoscai: Trade B2 R2 Amoscai

30) huddyrx: Move Y1 Huddyrx Solo

31) amoscai: Build R1 Amoscai

32) huddyrx: Trade G3 Y3 Huddyrx

33) amoscai: Move Y1 Amoscai Solo

34) huddyrx: Discover B1 Solo G2 Kenobi

35) amoscai: Move R2 Amoscai Solo

36) huddyrx: Move B1 Solo Kenobi

37) amoscai: Attack Y1 Solo

38) huddyrx: Trade Y2 G2 Huddyrx

39) amoscai: Build G2 Amoscai

40) huddyrx: Build B1 Kenobi

	amoscai: Gg!
	huddyrx: Good game!


36012)
Variants: "Unrated"
Started: 2020.2.21, Ended: 2020.2.26
Participants: akuden (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) akuden: Homeworld B1 G3 Y3
	Trydnt: welcome! always glad to play new people :) good luck

3) Trydnt: Build G1 Trydnt
	akuden: Thank you! This is my first game. I apologize for delays in my turn as I’m learning the game and trying to figure out the correct notation on the site. 

4) akuden: Build Y1 Akuden
	akuden: I apologize for the undo but I just wanted to mismatch the homeworlds.
	Trydnt: no worries :) though taking a green star is always a little risky imo

5) Trydnt: Trade G1 Y1 Trydnt

6) akuden: Build Y2 Akuden

7) Trydnt: Build Y2 Trydnt

8) akuden: Trade Y2 G2 Akuden

9) Trydnt: Discover Y1 Trydnt G3 G3

10) akuden: Discover G2 Akuden B2 Looney

11) Trydnt: Build Y2 G3

12) akuden: Build G1 Looney

13) Trydnt: Build Y2 Trydnt

14) akuden: Build Y3 Akuden

15) Trydnt: Sacrifice Y2 Trydnt
Move Y1 G3 Looney
Move Y1 Looney Akuden
Catastrophe Akuden Y

	Trydnt: Always watch out for the bluebird
	akuden: Ah, I forgot all about catastrophes! Thank you for the game. It’s fun and seems like it can get pretty deep.
	Trydnt: yeah there are more possible starting setups than you could make with all the pieces in the set which is pretty wild. I would hazard you against taking green in your homeworld star as it gives your opponent the added ability to teleport ships to your homeworld by sacrificing greens instead of using yellows to move them in which is not a great advantage to give your opponent. Also having the g3 ship from the start makes it more likely you'll be able to access the factory later. If you haven't seen the homeworlds theater episodes on youtube they have some good strategy insights
	Trydnt: catastrophe is the long strategy to win. many games go by without much attacking directly as the most effective way to win is to get two y3 ships and three ships each of your opponents homeworld colors and then sacrifice your y3s to move in three at a time and blow it up in two moves. That's the doomsday machine. You can often hack one together using some y2s and y1s if you have enough though. Then main thing is to make sure that once your opponent has a y2 and a ship in range of your homeworld you gotta keep a close eye on what you grow to make sure you don't open yourself up to having a bunch of your stuff blown up


36032)
Variants: "Unrated"
Started: 2020.2.21, Ended: 2020.3.23
Participants: Trydnt (S), pedrop (N)
Winner: Trydnt

1) pedrop: Homeworld G3 B2 Y3

2) Trydnt: Homeworld B2 Y2 G3 *

3) pedrop: Build Y1 Pedrop
	Trydnt: welcome! always a pleasure playing against new people :) good luck

4) Trydnt: Build G1 Trydnt
	pedrop: Hello! I'm a returner like after 10 years here. So I don't know if I'm new... or not;) But not experienced in this game.

5) pedrop: Trade Y1 R1 Pedrop
	Trydnt: well new to homeworlds at least :) it's my favorite game


6) Trydnt: Build G1 Trydnt

7) pedrop: Build Y1 Pedrop

8) Trydnt: Trade G1 Y1 Trydnt

9) pedrop: Build R1 Pedrop

10) Trydnt: Trade G1 R1 Trydnt

11) pedrop: Build R2 Pedrop

12) Trydnt: Build R2 Trydnt

13) pedrop: Discover R2 Pedrop G1 Cylons

14) Trydnt: Discover R2 Trydnt G1 G1

15) pedrop: Trade R1 G1 Pedrop

16) Trydnt: Build G2 Trydnt

17) pedrop: Discover G1 Pedrop B1 Adama

18) Trydnt: Move G2 Trydnt Adama

19) pedrop: M Y3 Pedrop Adama

20) Trydnt: Sacrifice G2 Adama
Build G2 Trydnt
Build R1 Trydnt

21) pedrop: Build G2 Adama

22) Trydnt: Discover G2 Trydnt B1 B1

23) pedrop: Build Y1 Adama

24) Trydnt: Move Y1 Trydnt B1

25) pedrop: Build R2 Pedrop

26) Trydnt: Build R3 G1

27) pedrop: Move Y3 Adama Pedrop

28) Trydnt: Discover R1 Trydnt Y3 Y3

29) pedrop: Build Y2 Adama

30) Trydnt: Sacrifice G2 B1
Build R3 Y3
Build R3 Trydnt

31) pedrop: Sacrifice Y2 Adama
Move R1 Pedrop G1
Move R2 Pedrop G1
Catastrophe G1 Red

32) Trydnt: Move R3 Trydnt Adama

33) pedrop: Discover G2 Adama Y2 Saul

34) Trydnt: Attack Y1 Adama

35) pedrop: Move Y1 Pedrop Cylons

36) Trydnt: Attack G1 Adama

37) pedrop: Build G1 Saul
	pedrop: The question is simple... do I have any chances to win still? I don't think so... but I'm still new to this game.

38) Trydnt: Discover G1 Adama Y3 Why3
	Trydnt: Definitely. The win condition is hard to fulfil, I still need to get a lot of pieces before I can destroy your homeworld and me if you're smart with your trades you might be able to equalize and get some bigger ships

39) pedrop: Build Y2 Pedrop

40) Trydnt: Build G2 Why3

41) pedrop: Discover G1 Saul B3 Starbuck

42) Trydnt: Move G1 Why3 Adama

43) pedrop: Build R1 Cylons

44) Trydnt: Build R2 Adama

45) pedrop: Move R1 Cylons Pedrop

46) Trydnt: Sacrifice G2 Why3
Build G2 Adama
Build Y3 Adama

47) pedrop: Sacrifice G2 Saul
Build R2 Pedrop
Build R3 Cylons

48) Trydnt: Sacrifice Y3 Adama
Move R2 Adama Y3
Move R2 Y3 Cylons
Move R1 Y3 Cylons
Catastrophe Cylons R

	pedrop: Thanks for the game. You were too good for me:)
	Trydnt: I started learning about 2 years ago, and haven't stopped. Just remember to have fun and learn as much from every game as possible :)


36036)
Started: 2020.2.21, Ended: 2020.7.18
Participants: tkvaran (S), huddyrx (N)
Winner: tkvaran

1) huddyrx: Homeworld B3 Y1 G3

2) tkvaran: Homeworld R1 B2 G3

3) huddyrx: Build G1 Huddyrx

4) tkvaran: Build G1 Tkvaran

5) huddyrx: Trade G1 Y1 Huddyrx

6) tkvaran: Trade G1 Y1 Tkvaran

7) huddyrx: Build G1 Huddyrx

8) tkvaran: Build G1 Tkvaran

9) huddyrx: Build Y2 Huddyrx

10) tkvaran: Discover G1 Tkvaran B3 Freddie

11) huddyrx: Discover Y1 Huddyrx G2 Alderaan

12) tkvaran: Build Y2 Tkvaran

13) huddyrx: Trade G1 B1 Huddyrx

14) tkvaran: Build G1 Freddie

15) huddyrx: Move B1 Huddyrx Alderaan

16) tkvaran: Move Y1 Tkvaran Freddie

17) huddyrx: Build B1 Alderaan

18) tkvaran: Trade G1 R1 Freddie

19) huddyrx: Build Y2 Alderaan

20) tkvaran: Build R1 Freddie

21) huddyrx: Trade Y2 R2 Huddyrx

22) tkvaran: Build Y2 Freddie

23) huddyrx: Discover B1 Alderaan G3 Naboo

24) tkvaran: Move Y2 Tkvaran Naboo

25) huddyrx: Build B1 Naboo

26) tkvaran: Build Y3 Naboo

27) huddyrx: Discover Y1 Alderaan G1 Bespin

28) tkvaran: Sacrifice Y2 Naboo
Move R1 Freddie Alderaan
Move Y2 Freddie Alderaan

29) huddyrx: Sacrifice Y2 Alderaan
Move B1 Alderaan Naboo
Move B1 Naboo Tkvaran

30) tkvaran: Build Y2 Alderaan

31) huddyrx: Build Y2 Bespin

32) tkvaran: Discover Y1 Freddie R2 Jason

33) huddyrx: Build B2 Naboo

34) tkvaran: Attack B1 Tkvaran
	tkvaran: Attack b1 tkvaran

35) huddyrx: Build R2 Huddyrx
	huddyrx: Move y1 bespin Alderaan 
Catastrophe yellow
	huddyrx: Move y1 bespin Alderaan 
Catastrophe Alderaan yellow
	huddyrx: 

36) tkvaran: Sacrifice Y3 Naboo
Move Y2 Alderaan Huddyrx
Move Y2 Alderaan Huddyrx
Move Y1 Jason Huddyrx
Catastrophe Huddyrx Yellow



36035)
Started: 2020.2.22, Ended: 2020.6.20
Participants: amoscai (S), tkvaran (N)
Winner: amoscai

1) tkvaran: Homeworld G2 R1 B3

2) amoscai: Homeworld Y1 B2 G3

3) tkvaran: Build B1 Tkvaran

4) amoscai: Build G1 Amoscai
	tkvaran: This will be an interesting game.  When we both have the same sizes of stars in our Homeworlds, the "map" in the game is much smaller.
	amoscai: because it's easier to just 'traverse' through one other system?

5) tkvaran: Build B1 Tkvaran
	tkvaran: Yes
	tkvaran: Yes

6) amoscai: Trade G1 B1 Amoscai

7) tkvaran: Trade B1 Y1 Tkvaran

8) amoscai: Build G1 Amoscai

9) tkvaran: Discover B1 Tkvaran G3 Cheddar

10) amoscai: Trade G3 R3 Amoscai

11) tkvaran: Build B1 Cheddar

12) amoscai: Move B1 Amoscai Cheddar

13) tkvaran: Trade B1 R1 Cheddar

14) amoscai: Build B1 Cheddar

15) tkvaran: Attack B1 Cheddar

16) amoscai: Build B2 Cheddar
Catastrophe Cheddar Blue

17) tkvaran: Build R1 Cheddar

18) amoscai: Build G1 Amoscai

19) tkvaran: Build B1 Tkvaran

20) amoscai: Build R2 Amoscai

21) tkvaran: Trade B1 G1 Tkvaran

22) amoscai: Trade G1 Y1 Amoscai

23) tkvaran: Build Y2 Tkvaran

24) amoscai: Move R2 Amoscai Cheddar

25) tkvaran: Sacrifice Y2 Tkvaran
Move R1 Cheddar Amoscai
Move R1 Cheddar Amoscai

26) amoscai: Attack R1 Amoscai

27) tkvaran: Build Y2 Tkvaran

28) amoscai: Attack R1 Amoscai

29) tkvaran: Build Y2 Tkvaran

30) amoscai: Move Y1 Amoscai Cheddar

31) tkvaran: Trade Y2 R2 Tkvaran

32) amoscai: Move R1 Amoscai Cheddar

33) tkvaran: Discover R2 Tkvaran G3 Swiss

34) amoscai: Build Y2 Cheddar

35) tkvaran: Build R2 Swiss

36) amoscai: Trade R3 G3 Amoscai

37) tkvaran: Build B1 Tkvaran

38) amoscai: Build R3 Amoscai

39) tkvaran: Move G1 Tkvaran Swiss

40) amoscai: Move R1 Amoscai Cheddar

41) tkvaran: Sacrifice Y2 Tkvaran
Move R2 Swiss Tkvaran
Move R2 Tkvaran Cheddar
Catastrophe Cheddar Red

42) amoscai: Build R1 Amoscai

43) tkvaran: Build Y2 Tkvaran

44) amoscai: Trade R1 B1 Amoscai

45) tkvaran: Trade B1 G1 Tkvaran
	tkvaran: Just realized it looks like we can keep playing this even though I went over time.  Want to try to finish?
	tkvaran: Just realized it looks like we can keep playing this even though I went over time.  Want to try to finish?

46) amoscai: Move G1 Amoscai Cheddar
	amoscai: yes sure!

47) tkvaran: Move Y2 Tkvaran Swiss

48) amoscai: Build G2 Amoscai

49) tkvaran: Build Y2 Swiss

50) amoscai: Move G1 Cheddar Tkvaran

51) tkvaran: Move G1 Tkvaran Cheddar

52) amoscai: Build G2 Tkvaran

53) tkvaran: Sacrifice Y2 Swiss
Move G1 Cheddar Amoscai
Move G1 Swiss Amoscai
Catastrophe Amoscai Green

54) amoscai: Build G1 Tkvaran
Catastrophe Tkvaran Green

55) tkvaran: Build R1 Swiss

56) amoscai: Discover Y1 Cheddar B2 Goat

57) tkvaran: Trade Y1 G1 Tkvaran

58) amoscai: Trade B1 G1 Amoscai

59) tkvaran: Build B1 Tkvaran

60) amoscai: Move Y2 Cheddar Amoscai

61) tkvaran: Build B1 Tkvaran

62) amoscai: Trade Y1 G1 Goat

63) tkvaran: Build G2 Tkvaran

64) amoscai: Build G2 Goat

65) tkvaran: Trade G2 Y2 Tkvaran

66) amoscai: Trade G1 R1 Goat

67) tkvaran: Sacrifice Y2 Tkvaran
Move R1 Swiss Amoscai
Move R2 Swiss Amoscai

68) amoscai: Attack R2 Amoscai

69) tkvaran: Attack G1 Amoscai

70) amoscai: Sacrifice R2 Amoscai
Attack R1 Amoscai
Attack G1 Amoscai

71) tkvaran: Sacrifice Y2 Swiss
Discover B1 Tkvaran G3 Swiss2
Move B1 Tkvaran Swiss2
	tkvaran: oh dang.  that was good.

72) amoscai: Build R2 Goat

73) tkvaran: Trade B3 Y3 Tkvaran

74) amoscai: Sacrifice Y2 Amoscai
Move R1 Goat Tkvaran
Move R2 Goat Tkvaran

75) tkvaran: Build B1 Swiss2
	amoscai: ah. I missed your comment. it took me many games of being thrashed by Steve to see the power of sacrificing. especially reds.

76) amoscai: Sacrifice G1 Amoscai
Build R2 Tkvaran
Catastrophe Tkvaran Red
	tkvaran: Good game!  
	tkvaran: I'm taking a break from CK Slack for a while.  If you ever want another game reach out here or at bgg.  I'm tkvaran there also.
	amoscai: I'm always keen on games here! 1 or 2 here async is good pacing for me. I haven't read Slack much recently.



35991)
Variants: "Unrated"
Started: 2020.2.23, Ended: 2020.3.7
Participants: wil (S), coryke (N)
Winner: wil

1) coryke: Homeworld B1 R2 G3

2) wil: H B3 Y1 G3

3) coryke: Build G1 Coryke

4) wil: B G1 Wil

5) coryke: Trade G1 Y1 Coryke

6) wil: T G1 R1 Wil

7) coryke: Build Y1 Coryke

8) wil: B R1 Wil

9) coryke: Trade Y1 R1 Coryke

10) wil: T R1 B1 Wil

11) coryke: Discover R1 Coryke G3 Alef
	coryke: This is my first game and I'm stuck. I can't figure out the syntax to move. I've tried loads of things but can't figure out what I need to put for the new system I'd like to move to. Any suggestions?

12) wil: B B1 Wil
	coryke: So, I figured it out right after sending the message. I was trying to move rather than discover. It's the little things some times.

13) coryke: Build Y1 Coryke

14) wil: D B1 Wil Y2 Y2

15) coryke: Build Y2 Coryke

16) wil: B B2 Wil

17) coryke: Move Y1 Coryke Alef

18) wil: D B1 Y2 Y3 Y3

19) coryke: Trade Y2 R2 Coryke

20) wil: D B1 Wil G2 G2

21) coryke: Move R1 Alef G2
	wil: Idk how I missed your question, glad you answered it yourself!

22) wil: T B1 R1 G2

23) coryke: Attack R1 G2

24) wil: B B1 Wil

25) coryke: Move R2 Coryke Alef

26) wil: D B2 Wil G2 Gtoo

27) coryke: Move R2 Alef Gtoo

28) wil: T B2 R2 Gtoo

29) coryke: Attack R2 Gtoo

30) wil: B R3 Wil

31) coryke: Build Y2 Coryke

32) wil: D R3 Wil G2 Gee2

33) coryke: Trade Y1 G1 Coryke

34) wil: B R3 Wil

35) coryke: Move G1 Coryke Alef

36) wil: B R3 Gee2

37) coryke: Build G1 Coryke

38) wil: B G1 Wil

39) coryke: Sacrifice G3 Coryke
Build G3 Coryke
Build Y1 Coryke
Build Y2 Coryke

40) wil: T R3 Y3 Wil

41) coryke: Move Y2 Coryke Alef
	wil: You say this is your first game?
	coryke: Yes. I watched a few games that Looney Labs replayed on YouTube, but this is my first. Stressful!

42) wil: S G3 Wil
B G3 Wil
B R3 Wil
B B2 Y3
	wil: It's a heck of a game and you're doing well!

43) coryke: Sacrifice G3 Coryke
Build G3 Coryke
Build Y2 Alef
Build Y3 Coryke

44) wil: M Y3 Wil Gee2

45) coryke: Move Y2 Alef G2

46) wil: M R3 Gee2 Alef
	coryke: Sorry about the delay. Business trip.

47) coryke: Sacrifice Y2 Coryke
Move Y2 Alef Gtoo
Move Y1 Alef Gtoo

48) wil: S G3 Wil
B G3 Wil
B Y2 Gee2
B B2 Y3

49) coryke: Sacrifice Y3 Coryke
Move Y2 G2 Wil
Move Y2 Gtoo Wil
Move Y1 Gtoo Wil
Catastrophe Wil Yellow

50) wil: S Y3 Gee2
M G1 Wil Coryke
M G3 Wil Coryke
M R3 Wil Coryke
C Coryke G

51) coryke: Pass

52) wil: A Y1 Coryke
	wil: Ya gave me direct access, gg, challenge anytime
	coryke: I didn't know exactly what was coming but I figured I had one shot and you had two shots. So I went for it, but, yep... you got me. Thanks for the gg.



36049)
Variants: "Hard time"
Started: 2020.2.24, Ended: 2020.3.26
Participants: Draw5PlayAll (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R1 B3 G3

2) Draw5PlayAll: Homeworld B1 R2 G3
	Babamots: Good luck! I've never gotten to challenge the top of the ladder before, so this is exciting for me :-).
	Draw5PlayAll: ...and you picked my usual homeworld setup, of course.

3) Babamots: Build G1 Babamots

4) Draw5PlayAll: Build G1 Draw5playall

5) Babamots: Trade G1 R1 Babamots

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) Babamots: Build R2 Babamots

8) Draw5PlayAll: Build R2 Draw5playall

9) Babamots: Trade R2 Y2 Babamots

10) Draw5PlayAll: Trade R2 Y2 Draw5playall

11) Babamots: Build R2 Babamots

12) Draw5PlayAll: Build R2 Draw5playall

13) Babamots: Discover R1 Babamots G2 Risa

14) Draw5PlayAll: Discover R1 Draw5playall G3 Earth

15) Babamots: Build R3 Risa

16) Draw5PlayAll: Build R3 Earth

17) Babamots: Discover R2 Babamots G2 Orion

18) Draw5PlayAll: Trade R2 B2 Draw5playall

19) Babamots: Build Y1 Babamots

20) Draw5PlayAll: Move B2 Draw5playall Earth

21) Babamots: Sacrifice Y2 Babamots
Move R1 Risa Earth
Move R2 Orion Earth
Catastrophe Earth R

22) Draw5PlayAll: Build Y1 Draw5playall

23) Babamots: Build Y1 Babamots

24) Draw5PlayAll: Build Y2 Draw5playall

25) Babamots: Move Y1 Babamots Risa

26) Draw5PlayAll: Discover Y2 Draw5playall B3 Water

27) Babamots: Build Y2 Babamots

28) Draw5PlayAll: Discover Y1 Draw5playall R3 Fire

29) Babamots: Build Y3 Risa

30) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build Y3 Water
Build B1 Earth

31) Babamots: Move Y3 Risa Water

32) Draw5PlayAll: Sacrifice Y2 Draw5playall
Discover Y3 Water R1 Flame
Move B2 Earth Flame

33) Babamots: Build R1 Risa

34) Draw5PlayAll: Move Y2 Water Flame

35) Babamots: Build R2 Risa

36) Draw5PlayAll: Trade Y2 G2 Flame

37) Babamots: Move R3 Risa Earth

38) Draw5PlayAll: Trade Y3 G3 Draw5playall

39) Babamots: Sacrifice Y2 Babamots
Move R3 Earth Draw5playall
Move Y3 Water Draw5playall

40) Draw5PlayAll: Attack R3 Draw5playall

41) Babamots: Sacrifice R2 Risa
Attack R3 Draw5playall
Attack G3 Draw5playall

	Babamots: GG! Thanks for the game!
	Draw5PlayAll: I guess my biggest mistake was letting you blow up my R3?
	Babamots: Losing your R3 was important because it gave me a large-ship advantage, but it was never convenient for me to actually invade your colonies with a large. I think your lack of red ships in the last half of the game was a bigger problem. My final invasion wouldn't have worked if you had had an r2 ship anywhere. Trading y2 for r2 on your 13th move would have been pretty good.
	Draw5PlayAll: I never understand how it is not convenient for the opponent to simply send an R3 in and force me to sacrifice a medium to scatter my other pieces.
	Babamots: It might have been better for me to move my r3 from Risa to earth (on my 14th move for example), but 1) I was worried about you getting too far ahead on yellows and 2) I was hoping that you would present me with an even more attractive target (more ships in one system, preferably without yellow). I think I was also worried about my r3 being stranded on earth and needing an extra turn or sacrifice to turn it back into an active threat.


35800)
Started: 2020.2.27, Ended: 2020.5.28
Participants: nycavri (S), ts52 (N)
Winner: ts52

1) ts52: Homeworld Y1 B2 G3
	ts52: This is for the 2019 tournament, right?

2) nycavri: Homeworld G2 B3 Y3
	nycavri: Yup, tournament game.  As player 1, you'll fill the form?

3) ts52: Build G1 Ts52
	ts52: Yes, filling it in now.

4) nycavri: Build Y1 Nycavri

5) ts52: Trade G1 Y1 Ts52

6) nycavri: Build Y2 Nycavri

7) ts52: Build Y2 Ts52

8) nycavri: Discover Y2 Nycavri G1 Deacon

9) ts52: Discover Y1 Ts52 G3 Kermit

10) nycavri: Trade Y1 B1 Nycavri

11) ts52: Build G1 Ts52

12) nycavri: Build B1 Nycavri

13) ts52: Trade G1 B1 Ts52

14) nycavri: Move B1 Nycavri Deacon

15) ts52: Move B1 Ts52 Kermit

16) nycavri: Trade B1 G1 Nycavri

17) ts52: Trade Y2 R2 Ts52

18) nycavri: Discover B1 Deacon Y3 May

19) ts52: Build R1 Ts52

20) nycavri: Trade G1 R1 Nycavri

21) ts52: Build G1 Ts52

22) nycavri: Move Y2 Deacon May

23) ts52: Build G1 Ts52

24) nycavri: Trade Y2 G2 May

25) ts52: Discover G1 Ts52 B3 Gonzo

26) nycavri: Build Y1 Nycavri

27) ts52: Build Y2 Kermit

28) nycavri: Discover Y1 Nycavri G1 Mercury

29) ts52: Sacrifice G3 Ts52
Build G2 Gonzo
Build G3 Gonzo
Build G3 Ts52

30) nycavri: Build Y2 Mercury

31) ts52: Move R2 Ts52 Kermit

32) nycavri: Build Y2 Nycavri

33) ts52: Discover G1 Ts52 Y3 Bigbird

34) nycavri: Discover Y1 Mercury B3 Taylor

35) ts52: Discover Y2 Kermit B1 Grover

36) nycavri: Move Y2 Mercury Taylor

37) ts52: Sacrifice G1 Bigbird
Build Y3 Grover

38) nycavri: Sacrifice Y2 Taylor
Discover G2 May R1 Pause
Move G2 Pause Gonzo
Catastrophe Gonzo G

39) ts52: Build Y2 Kermit

40) nycavri: Discover Y2 Nycavri G1 Edney

41) ts52: Build B2 Kermit

42) nycavri: Move Y2 Edney May

43) ts52: Discover B2 Kermit G1 Robin

44) nycavri: Trade Y1 G1 Taylor

45) ts52: Build Y1 Kermit

46) nycavri: Build G1 Taylor

47) ts52: Trade Y2 G2 Grover

48) nycavri: Build Y2 Nycavri

49) ts52: Sacrifice G2 Grover
Build B2 Kermit
Build B3 Robin

50) nycavri: Discover Y2 Nycavri R1 Mercury

51) ts52: Build R2 Ts52

52) nycavri: Move Y2 Mercury Taylor

53) ts52: Trade B2 G2 Kermit

54) nycavri: Trade Y2 G2 May

55) ts52: Trade B3 G3 Robin

56) nycavri: Build B2 May

57) ts52: Sacrifice G2 Kermit
Build B3 Kermit
Build Y2 Grover

58) nycavri: Move G1 Taylor Ts52

59) ts52: Attack G1 Ts52

60) nycavri: Sacrifice Y2 Taylor
Move G1 Taylor Ts52
Move G2 May Ts52
Catastrophe Ts52 G

61) ts52: Sacrifice Y1 Kermit
Move G3 Robin May

62) nycavri: Build Y1 Nycavri

63) ts52: Sacrifice R2 Kermit
Attack B1 May
Attack B2 May

64) nycavri: Discover Y1 Nycavri G1 Mercury

65) ts52: Build B3 Robin

66) nycavri: Build Y2 Mercury

67) ts52: Build G1 May

68) nycavri: Discover Y2 Mercury G3 Taylor

69) ts52: Move G3 May Ts52

70) nycavri: Build R1 Nycavri

71) ts52: Build G2 Ts52

72) nycavri: Build R2 Nycavri

73) ts52: B G2 May

74) nycavri: Move R2 Nycavri Mercury

75) ts52: Move R2 Ts52 May

76) nycavri: Move R1 Nycavri Mercury

77) ts52: Move Y2 Kermit Robin

78) nycavri: Move R2 Mercury Taylor

79) ts52: M G2 Ts52 May
	nycavri: I love that it's Queen versus Muppets!

80) nycavri: Build R2 Taylor

81) ts52: Sacrifice G2 May
Build R3 May
Build R3 Ts52
	ts52: Me too!

82) nycavri: Build R3 Nycavri

83) ts52: Build G2 May

84) nycavri: Move R1 Nycavri Mercury

85) ts52: Move R1 Ts52 Kermit

86) nycavri: Move R1 Mercury Taylor

87) ts52: Move B1 May Grover

88) nycavri: Move R1 Taylor Ts52

89) ts52: Move B1 Grover Nycavri

90) nycavri: Move R2 Taylor Ts52

91) ts52: Sacrifice Y2 Grover
Move B2 Robin Nycavri
Move B3 Robin Nycavri
Catastrophe Nycavri Blue

92) nycavri: Move R2 Taylor Ts52
Catastrophe Ts52 R

93) ts52: Sacrifice Y3 Grover
Move G1 May Nycavri
Move G2 May Nycavri
Move G2 May Nycavri
Catastrophe Nycavri Green

	ts52: Good game. Thanks!


35875)
Started: 2020.2.28, Ended: 2020.5.13
Participants: Dther (S), capi3101 (N)
Winner: capi3101

1) capi3101: Homeworld B1 G3 Y3

2) Dther: Homeworld Y2 G1 B3

3) capi3101: B Y1 Capi3101

4) Dther: Build B1 Dther

5) capi3101: Build Y1 Capi3101

6) Dther: Build B1 Dther

7) capi3101: Discover Y1 Capi3101 G2 Aleph

8) Dther: Discover B1 Dther G3 Algae

9) capi3101: B Y1 Aleph

10) Dther: Build B2 Algae

11) capi3101: Discover Y1 Aleph G3 Bet

12) Dther: Trade B2 Y2 Algae

13) capi3101: Build Y2 Aleph

14) Dther: Build Y3 Algae

15) capi3101: B Y3 Bet

	capi3101: Going to go ahead and terminate the game as unrated; 48 days is a long enough wait. Hoping you didn't catch corona or have experienced any hardships because of it.


35979)
Variants: "No undo, Unrated"
Started: 2020.2.28, Ended: 2020.3.3
Participants: rho0 (S), capi3101 (N)
Winner: capi3101

1) capi3101: Homeworld B1 G3 Y3



35983)
Variants: "Hard time"
Started: 2020.2.28, Ended: 2020.3.3
Participants: dlwillson (S), capi3101 (N)
Winner: capi3101

1) capi3101: Homeworld B1 G3 Y3

2) dlwillson: H Y3 B2 G3 Dlwillson

3) capi3101: B Y1 Capi3101

	dlwillson: Oh, Heck. Sorry!


36001)
Variants: "Unrated"
Started: 2020.2.28, Ended: 2020.3.10
Participants: capi3101 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld Y3 G1 B3

2) capi3101: Homeworld B1 G2 Y3
	Babamots: I'll try a different start today. Let's see what happens!

3) Babamots: Build B1 Babamots

4) capi3101: B Y1 Capi3101

5) Babamots: Build B1 Babamots

6) capi3101: D Y1 Capi3101 G3 Aleph
	capi3101: Best of luck.

7) Babamots: Discover B1 Babamots G2 Orion

8) capi3101: Build Y1 Capi3101

9) Babamots: Build B2 Orion

10) capi3101: Build Y1 Aleph

11) Babamots: Build B2 Orion

12) capi3101: Build Y2 Aleph

13) Babamots: Build B2 Babamots
	capi3101: Uh-oh.

14) capi3101: Discover Y1 Capi3101 B3 Bet
	Babamots: I don't really know how this will go. You're dominating the yellow economy (which is usually how I try to win), but I might get a head start on larges.

15) Babamots: Discover B2 Babamots G2 Risa

16) capi3101: B Y2 Capi3101

17) Babamots: Build B3 Risa

18) capi3101: Trade Y3 G3 Capi3101

19) Babamots: Trade B3 Y3 Risa

20) capi3101: Sacrifice G3 Capi3101
Build Y2 Bet
Build Y3 Capi3101
Pass

21) Babamots: Build B3 Risa
	capi3101: Hmm...that's no bueno...

22) capi3101: Discover Y1 Aleph R2 Gimel

23) Babamots: Discover B2 Risa R3 Romulus

24) capi3101: Move Y1 Aleph Gimel

25) Babamots: Trade B3 R3 Risa

26) capi3101: Trade Y1 R1 Bet

27) Babamots: Build B3 Babamots

28) capi3101: B Y1 Aleph

29) Babamots: Move B3 Babamots Gimel

30) capi3101: Sacrifice Y1 Gimel
Move Y1 Gimel Babamots
	capi3101: Ugh. Here's where the difference in ship strength is going to bite me in the butt. And boy howdy is there a difference - 17 to 10 pips alone (not counting the homeworld larges).
	capi3101: Letting you get the large yellow is going to cost me the game, I think. If I move out one small yellow at Gimel, you get the other one. If, however, I sacrifice a medium yellow to move both out, you build it right back. If I squonk the one small yellow to move the other, you build that one instead.
	capi3101: You're still relatively immobile for now though. Trying to figure out how to keep it that way...
	capi3101: Naw, I can't keep you immobile. You've got more large ships that me; that's bad in and of itself.
	capi3101: Well, let's get this over with then.

31) Babamots: Trade B3 R3 Babamots
	Babamots: In my strategy guide, I ranked "Large ship majority" one step stronger than "Yellow ship majority." Looks like this game may bear out that principle.

32) capi3101: Build Y1 Babamots

33) Babamots: Move R3 Risa Aleph
	capi3101: Yes, I need to attempt to disperse my fleet if possible. Meanwhile...

34) capi3101: Sacrifice Y2 Aleph
Move Y1 Aleph Risa
Move Y1 Risa Babamots
Catastrophe Babamots Y
	Babamots: You may take my yellow star, but you'll never take my greeeeeeen oooooooone!
	capi3101: Probably not. But at least I'll feel good about myself for a little bit...

35) Babamots: Sacrifice Y3 Risa
Move B3 Gimel Aleph
Move B3 Aleph Capi3101
Move R3 Aleph Capi3101

	capi3101: Hang on. You moved before I was looking.
	capi3101: Aw....
	capi3101: ...and now that good feeling is gone all of a sudden. Crapbiscuit.
	Babamots: GG! And I can tell you're getting stronger. Was it five months ago you'd never even played? The practice is paying off!
	capi3101: I'd played before, just not for a ~very~ long time. Like, around the time this version of the game was still called Binary Homeworlds, just after it evolved out of IceTraders...
	capi3101: Pretty sure I lost this one when you got the large yellow. Not dipping into blue at any point also hurt, since I couldn't do much to keep you from getting the big blues. I suppose I might've traded out my large yellow at home for one at some point.
	capi3101: Ah well. GG.


36033)
Started: 2020.2.28, Ended: 2020.4.27
Participants: capi3101 (S), pedrop (N)
Winner: capi3101

1) pedrop: Homeworld G3 Y1 B3

2) capi3101: Homeworld B1 G2 Y3

3) pedrop: Build B1 Pedrop

4) capi3101: Build Y1 Capi3101

5) pedrop: Build B1 Pedrop

6) capi3101: Build Y1 Capi3101

7) pedrop: Discover B1 Pedrop G2 Cylons

8) capi3101: Discover Y1 Capi3101 B3 Aleph

9) pedrop: Build B2 Cylons

10) capi3101: B Y2 Capi3101

11) pedrop: Trade B2 Y2 Cylons

12) capi3101: T Y3 G3 Capi3101

13) pedrop: Build B2 Cylons

14) capi3101: Discover Y1 Capi3101 B3 Bet

15) pedrop: Trade B2 G2 Cylons

16) capi3101: Sacrifice G3 Capi3101
Build Y2 Bet
Build Y3 Aleph
Build Y3 Capi3101

17) pedrop: Build Y3 Cylons

18) capi3101: Sacrifice Y2 Bet
Move Y1 Bet Cylons
Move Y1 Aleph Cylons
Catastrophe Cylons Y

19) pedrop: Trade B1 Y1 Cylons

20) capi3101: Build Y1 Capi3101

21) pedrop: Build Y2 Cylons

22) capi3101: Move Y2 Capi3101 Aleph

23) pedrop: Discover Y1 Cylons B1 Adama

24) capi3101: Trade Y1 R1 Capi3101

25) pedrop: Build Y1 Cylons

26) capi3101: D Y3 Aleph B2 Bet

27) pedrop: Sacrifice B1 Pedrop
Trade Y1 R1 Cylons

28) capi3101: B Y1 Capi3101

29) pedrop: Sacrifice G2 Cylons
Build Y2 Cylons
Build Y3 Adama

30) capi3101: Build R1 Capi3101

31) pedrop: Build B1 Pedrop

32) capi3101: Move R1 Capi3101 Aleph

33) pedrop: Build R2 Cylons

34) capi3101: Build R2 Capi3101

35) pedrop: Move Y3 Adama Aleph

36) capi3101: Move Y2 Aleph Adama

37) pedrop: Sacrifice R1 Cylons
Attack R1 Aleph

38) capi3101: Sacrifice R1 Capi3101
Attack Y1 Adama

39) pedrop: Build B2 Pedrop

40) capi3101: Trade Y2 B2 Adama

41) pedrop: Move B1 Pedrop Cylons

42) capi3101: Discover Y1 Capi3101 B3 Gimel

43) pedrop: Trade B2 Y2 Pedrop

44) capi3101: Discover Y1 Adama B2 Dalet

45) pedrop: Build R1 Cylons

46) capi3101: Trade B2 G2 Adama

47) pedrop: Build B2 Pedrop

48) capi3101: Move Y1 Dalet Pedrop

49) pedrop: Discover Y2 Pedrop R2 Six

50) capi3101: Move Y1 Gimel Adama

51) pedrop: Sacrifice R1 Cylons
Attack Y1 Pedrop
	pedrop: Are You the Infinity fan?
	capi3101: Pretty sure I'm not; why do you ask?

52) capi3101: Move G2 Adama Bet
	pedrop: I thought that Aleph is one of Infinity factions... thats all.

53) pedrop: Build B2 Cylons
	capi3101: It might be. I typically name my systems after the letters in the Hebrew alphabet. Everybody tends to use Greek; I find it a nice change of pace.

54) capi3101: Move Y1 Adama Bet

55) pedrop: Discover B1 Cylons G1 Starbuck

56) capi3101: Build G1 Bet

57) pedrop: Build B1 Starbuck

58) capi3101: Build G1 Bet

59) pedrop: Build B3 Cylons

60) capi3101: Move G1 Bet Starbuck

61) pedrop: Move B3 Cylons Aleph

62) capi3101: Build G3 Bet

63) pedrop: Trade B3 G3 Aleph

64) capi3101: Move G2 Bet Pedrop

65) pedrop: Build B3 Cylons

66) capi3101: Move G3 Bet Pedrop

67) pedrop: Sacrifice R1 Aleph
Attack G3 Pedrop

68) capi3101: Move G1 Bet Pedrop
Catastrophe Pedrop G

69) pedrop: Move Y1 Pedrop Six

70) capi3101: Build R1 Capi3101

71) pedrop: Move R2 Cylons Starbuck
	capi3101: Moving that y1 into your home system too early may very well cost me the game...

72) capi3101: Build G1 Starbuck

73) pedrop: B G2 Aleph
	pedrop: Thats why, it was very important decision from my side what to do now... lets see if I choose good...:)

74) capi3101: Build G3 Starbuck
Catastrophe Starbuck G

75) pedrop: Sacrifice G2 Aleph
Build B1 Cylons
Build B1 Pedrop

76) capi3101: M Y3 Bet Pedrop

77) pedrop: Trade G3 R3 Aleph

78) capi3101: S R2 Capi3101
A B3 Pedrop
A B2 Pedrop

79) pedrop: Sacrifice Y3 Aleph
Move B1 Cylons Pedrop
Catastrophe Pedrop Blue
Move B3 Cylons Pedrop
Move B2 Cylons Pedrop

80) capi3101: Build Y3 Capi3101
	pedrop: ooops...
	capi3101: Happens.

81) pedrop: Sacrifice Y2 Six
Move Y2 Cylons Aleph
Move Y2 Aleph Capi3101

82) capi3101: Trade Y3 R3 Capi3101
	capi3101: Excellent counter-move, I must say. I'm not as confident of a quick victory as I was earlier this morning.

83) pedrop: S R3 Aleph
A Y3 Pedrop
A R1 Capi3101
Pass

84) capi3101: Attack Y2 Capi3101
	pedrop: Yeah, I'm also proud of that move... :) but it helped only a little... :(

85) pedrop: Discover Y3 Pedrop G3 Liama
	capi3101: No...you could sac the other yellow and blow things up. That trade is probably my best bet. Still haven't sealed the deal yet.

86) capi3101: M Y1 Bet Pedrop
	pedrop: So I could make two sacrifices in one turn?
	capi3101: No, only one sacrifice. Had I captured your yellow though, you could've sacked the b2 at cylons, moved your y1 from Six to my homeworld, and blown my all my yellow up there. Would've left me with just the small red there.
	capi3101: I suppose I could've allowed that and then on my next move swap the large yellow at your homeworld with a large red. There's a reason why you shouldn't consider moves before your morning coffee......

87) pedrop: Trade B2 R2 Pedrop

88) capi3101: Discover Y1 Pedrop G3 He

89) pedrop: Build R1 Capi3101

90) capi3101: Sacrifice R3 Capi3101
Attack R1 Capi3101
Attack R1 Capi3101
Pass

91) pedrop: Move R2 Pedrop Cylons
	pedrop: You could win some time ago... just by sacrificing y3 and sending all yellow to my home system.
	capi3101: I know. I've made a few mistakes these last few moves.
	capi3101: Like that last one.

92) capi3101: Build Y2 He

93) pedrop: Build Y3 Cylons

94) capi3101: Move Y1 He Pedrop

95) pedrop: Build R1 Cylons

96) capi3101: S Y3 Capi3101
M Y2 Capi3101 He
M Y2 He Pedrop
M Y2 He Pedrop
C Pedrop Y

	pedrop: We will see:)
	capi3101: Wait, no...I see it. Thanks for the game; if you want s re-match, just holler.
	pedrop: Good game! Thanks. I think I will arrange rematch - but not now. I don't have to much time right now and this game is thinky...! :)


35980)
Started: 2020.2.29, Ended: 2020.3.20
Participants: MobyNostromo (S), nicknack (N)
Winner: nicknack

1) nicknack: Homeworld R2 B1 G3

2) MobyNostromo: H Y2 B3 G3

3) nicknack: Build G1 Nicknack

4) MobyNostromo: B G1 Mobynostromo

5) nicknack: Trade G1 Y1 Nicknack

6) MobyNostromo: T G1 Y1 Mobynostromo

7) nicknack: Build G1 Nicknack

8) MobyNostromo: D Y1 Mobynostromo G1 Viridian
	nicknack: Your time is almost up, still want to play?
	MobyNostromo: Yes. Sorry about that.

9) nicknack: Discover G1 Nicknack Y3 Amber

10) MobyNostromo: B G1 Mobynostromo
	nicknack: No problem - Thanks for coming back to play!
	MobyNostromo: :)

11) nicknack: Build G2 Nicknack

12) MobyNostromo: B G2 Mobynostromo

13) nicknack: Sacrifice G3 Nicknack
Build G2 Nicknack
Build G3 Nicknack
Build G3 Amber

14) MobyNostromo: D G2 Mobynostromo B1 Azure

15) nicknack: Trade G2 Y2 Nicknack

16) MobyNostromo: S G3 Mobynostromo
B G2 Azure
B G3 Mobynostromo
B Y1 Viridian

17) nicknack: Trade G3 Y3 Nicknack

18) MobyNostromo: S Y1 Viridian
D G2 Azure Y3 Gold

19) nicknack: Build G3 Nicknack

20) MobyNostromo: S G3 Mobynostromo
B G3 Mobynostromo
B Y1 Viridian
B Y2 Viridian

21) nicknack: Sacrifice Y1 Nicknack
Discover G1 Amber Y1 Mustard

22) MobyNostromo: D Y1 Viridian B2 Cobalt
	MobyNostromo: I love mustard!

23) nicknack: Sacrifice Y3 Nicknack
Move G3 Amber Mustard
Move G1 Mustard Mobynostromo
Move G3 Mustard Mobynostromo
Catastrophe Mobynostromo Green
	nicknack: But you left your homeworld with only one color of ship!
Beware the mustard invasion...
	nicknack: Thanks for the game! Hope to rematch soon.
	MobyNostromo: Ha, ha! That was a funny ending. The mustard detail made it perfect.



35926)
Variants: "Hard time"
Started: 2020.2.29, Ended: 2020.3.10
Participants: wil (S), nicknack (N)
Winner: nicknack

1) nicknack: Homeworld R2 B1 G3

2) wil: H B3 Y1 G3

3) nicknack: Build G1 Nicknack

4) wil: B G1 Wil

5) nicknack: Trade G1 Y1 Nicknack
	wil: Good luck, have fun!

6) wil: T G1 Y1 Wil
	nicknack: Thanks! Pyramid fan, but new to SDG. Glad to play!

7) nicknack: Build Y2 Nicknack

8) wil: B Y2 Wil

9) nicknack: Build G1 Nicknack

10) wil: D Y1 Wil G2 G2

11) nicknack: Discover G1 Nicknack Y3 Beta
	wil: Arcade?  Fav games?

12) wil: S G3 Wil
B Y2 G2
B Y3 G2
B Y3 Wil
	nicknack: Pre-Arcade pyramid gamer here :) Really like Homeworlds, Zendo, Martian Chess..  Been playing many more now that Arcade is around.

13) nicknack: Sacrifice Y2 Nicknack
Move Y1 Nicknack Beta
Move Y1 Beta G2
Catastrophe G2 Y
	wil: First introduced with first zendo...

14) wil: T Y2 G2 Wil

15) nicknack: Build G1 Nicknack

16) wil: B Y1 Wil

17) nicknack: Trade G1 Y1 Nicknack

18) wil: D Y1 Wil G2 G2

19) nicknack: Build G1 Nicknack

20) wil: B Y2 G2

21) nicknack: Discover G1 Nicknack Y3 Gamma

22) wil: M Y2 G2 Beta

23) nicknack: Build G1 Nicknack

24) wil: B Y2 Wil

25) nicknack: Build Y2 Nicknack

26) wil: T Y2 R2 Wil

27) nicknack: Discover G1 Beta Y2 Delta

28) wil: T Y3 G3 Wil

29) nicknack: Sacrifice G3 Nicknack
Build G2 Delta
Build G3 Gamma
Build G3 Nicknack

30) wil: S G2 Wil
B Y3 G2
B R1 Wil

31) nicknack: Trade Y1 R1 Nicknack

32) wil: T R1 B1 Wil

33) nicknack: Discover G1 Gamma B2 Epsilon

34) wil: B B1 Wil

35) nicknack: Build G2 Epsilon

36) wil: M B1 Wil G2

37) nicknack: Build Y1 Nicknack

38) wil: B B2 Wil

39) nicknack: Discover Y2 Nicknack B3 Zeta

40) wil: B B2 G2

41) nicknack: Sacrifice G3 Gamma
Build Y3 Zeta
Build G3 Nicknack
Build R1 Nicknack

42) wil: B B3 G2

43) nicknack: Sacrifice Y2 Zeta
Move Y3 Zeta Epsilon
Move G3 Nicknack Beta

44) wil: D Y2 Beta Y2 Y2

45) nicknack: Sacrifice G3 Beta
Build G3 Nicknack
Build Y3 Nicknack
Pass

46) wil: T B3 R3 G2

47) nicknack: Discover R1 Nicknack B3 Beta

48) wil: B B3 G2

49) nicknack: Sacrifice Y3 Nicknack
Move G1 Delta Wil
Move G1 Epsilon Wil
Move G2 Epsilon Wil
Catastrophe Wil Green

50) wil: S Y2 Y2
D B1 Wil G2 Gee2
M B3 G2 Wil

51) nicknack: Sacrifice G3 Nicknack
Build Y2 Epsilon
Build Y2 Epsilon
Build Y3 Nicknack

52) wil: T B3 G3 Wil

53) nicknack: Trade G3 B3 Nicknack

54) wil: B G1 Wil

55) nicknack: Sacrifice Y2 Epsilon
Move Y3 Epsilon Beta
Move Y3 Beta Gee2

56) wil: S Y1 G2
D B1 Gee2 G3 G3

57) nicknack: Discover B3 Nicknack R3 Gamma

58) wil: T B2 Y2 G2

59) nicknack: Sacrifice G2 Delta
Build Y1 Gee2
Build Y2 Epsilon

60) wil: M Y2 G2 Beta

61) nicknack: Sacrifice G1 Nicknack
Build B2 Gamma

62) wil: B R1 G2

63) nicknack: Sacrifice Y1 Nicknack
Move B2 Gamma Gee2

64) wil: M R3 G2 Beta

65) nicknack: Trade R1 G1 Nicknack

66) wil: A R1 Beta

67) nicknack: Sacrifice Y3 Gee2
Move B3 Gamma Gee2
Move B3 Gee2 Wil
Move B2 Gee2 Wil
Catastrophe Wil Blue

68) wil: M R3 Beta Nicknack
	wil: And that appears to be game!
	nicknack: Wow, thank you for this excellent game! Some really tense moments in there! Like I mentioned, I'm new to SDG, and I'm thrilled to have played against such a great opponent. Rematch, I hope?
	wil: This will make it look like I was close!  Good Game

69) nicknack: Sacrifice Y3 Nicknack
Move Y1 Gee2 Wil
Move Y2 Epsilon Wil
Move Y2 Epsilon Wil
Catastrophe Wil Yellow
	wil: Challenge me anytime, I need those synapses firing.
	wil: Ya won with one small green ship!  That record can't be beat!



36081)
Started: 2020.2.29, Ended: 2020.3.10
Participants: MobyNostromo (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: H R1 B2 G3

2) MobyNostromo: H B2 Y3 G3
	eliscinsky: Greetings MobyNostromo! Good luck and have fun. 
	MobyNostromo: Hi eliscinsky. You too. 

3) eliscinsky: Build G1 Eliscinsky

4) MobyNostromo: B G1 Mobynostromo

5) eliscinsky: Trade G1 Y1 Eliscinsky

6) MobyNostromo: T G1 Y1 Mobynostromo

7) eliscinsky: Build G1 Eliscinsky



36080)
Started: 2020.3.1, Ended: 2020.4.16
Participants: bhorner (S), DodoBirb (N)
Winner: bhorner

1) DodoBirb: Homeworld B1 Y2 G3

2) bhorner: Homeworld B2 R1 G3
	DodoBirb: Good luck!
	bhorner: For the Great Homeworlds Tournament 2020 right?  :)
Good luck to you too!

3) DodoBirb: Build G1 Dodobirb

4) bhorner: Build G1 Bhorner

5) DodoBirb: Trade G1 B1 Dodobirb

6) bhorner: Trade G1 B1 Bhorner

7) DodoBirb: Build B2 Dodobirb

8) bhorner: Build B2 Bhorner

9) DodoBirb: Discover B2 Dodobirb G3 Greeny

10) bhorner: Trade B1 Y1 Bhorner

11) DodoBirb: Build G1 Dodobirb

12) bhorner: Build Y1 Bhorner

13) DodoBirb: Trade G1 Y1 Dodobirb

14) bhorner: Build Y2 Bhorner

15) DodoBirb: Trade B2 Y2 Greeny

16) bhorner: Move Y1 Bhorner Greeny

17) DodoBirb: Trade Y1 R1 Dodobirb

18) bhorner: Build Y1 Greeny

19) DodoBirb: Build R1 Dodobirb

20) bhorner: Discover Y1 Greeny G2 Bush

21) DodoBirb: Move R1 Dodobirb Greeny

22) bhorner: Sacrifice G3 Bhorner
Build Y3 Greeny
Build Y3 Bhorner
Build Y3 Bush

23) DodoBirb: Move R1 Greeny Dodobirb

24) bhorner: Trade Y2 R2 Bhorner

25) DodoBirb: Build Y2 Greeny
Catastrophe Greeny Y

26) bhorner: Trade Y3 G3 Bhorner

27) DodoBirb: Build R2 Dodobirb

28) bhorner: Build G1 Bhorner

29) DodoBirb: Trade R1 Y1 Dodobirb

30) bhorner: Discover Y1 Bush R3 Lava

31) DodoBirb: Discover Y1 Dodobirb G3 Bigbush

32) bhorner: Discover G1 Bhorner R3 Lava2

33) DodoBirb: Build Y2 Bigbush

34) bhorner: Sacrifice G3 Bhorner
Build Y2 Bush
Build Y3 Lava
Build Y3 Bhorner

35) DodoBirb: Build G1 Dodobirb

36) bhorner: Trade Y3 G3 Bhorner

37) DodoBirb: Discover Y1 Bigbush G2 Medgren

38) bhorner: Build Y3 Bhorner

39) DodoBirb: Move B1 Dodobirb Bigbush

40) bhorner: Sacrifice B2 Bhorner
Trade Y1 R1 Lava
Trade Y2 R2 Bush

41) DodoBirb: Move R2 Dodobirb Bigbush

42) bhorner: Build R3 Bush

43) DodoBirb: Build B1 Bigbush

44) bhorner: Sacrifice Y3 Bush
Move G3 Bhorner Lava2
Move G1 Lava2 Dodobirb
Move G3 Lava2 Dodobirb
Catastrophe Dodobirb G

45) DodoBirb: Build R3 Bigbush

46) bhorner: Move Y3 Lava Dodobirb

47) DodoBirb: Pass
	DodoBirb: Good game, I certainly made some mistakes early on.

48) bhorner: Sacrifice R1 Lava
Attack R1 Dodobirb



36082)
Started: 2020.3.1, Ended: 2020.4.24
Participants: Draw5PlayAll (S), ts52 (N)
Winner: Draw5PlayAll

1) ts52: Homeworld Y1 B2 G3
	ts52: This is for the 2019 tournament, right?

2) Draw5PlayAll: Homeworld B3 R1 G3
	Draw5PlayAll: Yes

3) ts52: Build G1 Ts52

4) Draw5PlayAll: Build G1 Draw5playall

5) ts52: Trade G1 Y1 Ts52

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) ts52: Build Y2 Ts52

8) Draw5PlayAll: Build Y2 Draw5playall

9) ts52: Discover Y1 Ts52 G3 Kermit

10) Draw5PlayAll: Discover Y1 Draw5playall G2 Rocket

11) ts52: Build G1 Ts52

12) Draw5PlayAll: Build G1 Draw5playall

13) ts52: Trade G1 R1 Ts52

14) Draw5PlayAll: Trade G1 R1 Draw5playall

15) ts52: Build R2 Ts52

16) Draw5PlayAll: Build R2 Draw5playall

17) ts52: Move R2 Ts52 Kermit

18) Draw5PlayAll: Move R2 Draw5playall Rocket

19) ts52: Build G1 Ts52

20) Draw5PlayAll: Build G1 Draw5playall

21) ts52: Trade G1 B1 Ts52

22) Draw5PlayAll: Trade G1 B1 Draw5playall

23) ts52: Move B1 Ts52 Kermit

24) Draw5PlayAll: Move B1 Draw5playall Rocket

25) ts52: Build G1 Ts52

26) Draw5PlayAll: Build G1 Draw5playall

27) ts52: Discover G1 Ts52 B3 Gonzo
	Draw5PlayAll: If I had something better to do then I would do it.

28) Draw5PlayAll: Discover G1 Draw5playall B2 Jackpot

29) ts52: Move Y2 Ts52 Gonzo

30) Draw5PlayAll: Move Y2 Draw5playall Jackpot

31) ts52: Build G1 Ts52

32) Draw5PlayAll: Build G2 Draw5playall

33) ts52: Build B1 Kermit

34) Draw5PlayAll: Build G2 Jackpot

35) ts52: Sacrifice G3 Ts52
Build R2 Kermit
Build R3 Ts52
Build G3 Ts52

36) Draw5PlayAll: Build R3 Rocket

37) ts52: Move R3 Ts52 Gonzo

38) Draw5PlayAll: Discover G2 Jackpot R3 Countdown

39) ts52: Move R3 Gonzo Jackpot

40) Draw5PlayAll: Sacrifice Y2 Jackpot
Discover G1 Jackpot B3 Taxation
Move R3 Rocket Gonzo

41) ts52: Move Y2 Gonzo Jackpot

42) Draw5PlayAll: Sacrifice G2 Countdown
Build R3 Rocket
Build Y2 Rocket

43) ts52: Sacrifice Y2 Jackpot
Move G1 Gonzo Jackpot
Move R3 Jackpot Taxation

44) Draw5PlayAll: Move Y2 Rocket Draw5playall

45) ts52: Build Y2 Kermit

46) Draw5PlayAll: Move G2 Draw5playall Jackpot

47) ts52: Attack G1 Taxation

48) Draw5PlayAll: Trade G2 Y2 Jackpot

49) ts52: Discover Y2 Kermit G2 Robin

50) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build Y3 Rocket
Build Y3 Jackpot

51) ts52: Move B1 Kermit Robin

52) Draw5PlayAll: Build B2 Rocket

53) ts52: Sacrifice G3 Ts52
Build G2 Taxation
Build G3 Ts52
Build G3 Ts52

54) Draw5PlayAll: Move Y3 Rocket Kermit

55) ts52: Move R2 Kermit Robin

56) Draw5PlayAll: Sacrifice R2 Rocket
Attack G1 Jackpot
Attack R2 Kermit

57) ts52: Move B1 Kermit Robin

58) Draw5PlayAll: Sacrifice Y3 Jackpot
Move G1 Jackpot Gonzo
Move G1 Gonzo Ts52
Move R3 Gonzo Ts52
Catastrophe Ts52 Green

59) ts52: Sacrifice Y1 Kermit
Move R3 Taxation Ts52

60) Draw5PlayAll: Sacrifice R2 Kermit
Attack R3 Ts52
Attack R1 Ts52

	ts52: Indeed. Well played.


36069)
Started: 2020.3.1, Ended: 2020.3.7
Participants: eliscinsky (S), Dther (N)
Winner: eliscinsky

1) Dther: Homeworld Y2 B1 G3

2) eliscinsky: Homeworld B2 R3 G3

	eliscinsky: Greetings Dther! GL / HF!
	Dther: Very sorry about that. I'm trying to get into the habit of checking my games more frequently...


36072)
Variants: "Unrated"
Started: 2020.3.1, Ended: 2020.3.11
Participants: Babamots (S), eliscinsky (N)
Winner: Babamots

1) eliscinsky: Homeworld R1 B2 G3
	eliscinsky: So let's try this again shall we?

2) Babamots: Homeworld R2 B1 G3

3) eliscinsky: Build G1 Eliscinsky

4) Babamots: Build G1 Babamots
	eliscinsky: Well, that 1st HW choice of yours would have been quite interesting. ;) I guess you didn't want me to get the upper hand on RED to quickly.  Still I think this will be an interesting (at least for me) and quick game.

5) eliscinsky: Trade G1 Y1 Eliscinsky
	Babamots: Yeah, copying your homeworld would have been a big problem, but b2 r1 is a habit. This is what I intended.

6) Babamots: Trade G1 Y1 Babamots

7) eliscinsky: Build G1 Eliscinsky

8) Babamots: Build G1 Babamots

9) eliscinsky: Trade G1 B1 Eliscinsky

10) Babamots: Trade G1 B1 Babamots

11) eliscinsky: Build G1 Eliscinsky

12) Babamots: Build B2 Babamots

13) eliscinsky: Build B2 Eliscinsky

14) Babamots: Trade B1 R1 Babamots

15) eliscinsky: Trade B2 R2 Eliscinsky

16) Babamots: Build G1 Babamots

17) eliscinsky: Discover R2 Eliscinsky G3 Mtndew

18) Babamots: Discover G1 Babamots B3 Bolarus

19) eliscinsky: Move G1 Eliscinsky Mtndew

20) Babamots: Build G1 Babamots

21) eliscinsky: Build G2 Eliscinsky

22) Babamots: Build G2 Bolarus

23) eliscinsky: Trade G2 Y2 Eliscinsky

24) Babamots: Trade G2 Y2 Bolarus

25) eliscinsky: Move Y1 Eliscinsky Mtndew

26) Babamots: Build G2 Bolarus

27) eliscinsky: Move B1 Eliscinsky Mtndew

28) Babamots: Discover G1 Bolarus Y2 Iconia

29) eliscinsky: Trade G1 B1 Mtndew

30) Babamots: Discover B2 Babamots Y3 Aldea

31) eliscinsky: Build B2 Mtndew

32) Babamots: Sacrifice G3 Babamots
Build Y1 Bolarus
Build Y3 Bolarus
Build Y3 Babamots

33) eliscinsky: Build R1 Mtndew
	eliscinsky: You could have stayed with that 1st move. I couldn't get your construction economy. ;)
	Babamots: I didn't really want you destroying one of my home stars just yet. I may have been able to come back from it, but I'd rather not chance it.

34) Babamots: Sacrifice G2 Bolarus
Build G1 Iconia
Build B3 Aldea

35) eliscinsky: Sacrifice Y2 Eliscinsky
Move Y1 Mtndew Iconia
Move Y1 Iconia Bolarus
Catastrophe Bolarus Y

36) Babamots: Sacrifice Y3 Babamots
Move G1 Iconia Mtndew
Move G1 Iconia Mtndew
Move G1 Babamots Mtndew
Catastrophe Mtndew G

37) eliscinsky: Build G1 Eliscinsky

38) Babamots: Trade B3 G3 Aldea

39) eliscinsky: T G1 Y1 Eliscinsky

40) Babamots: Build G1 Aldea

41) eliscinsky: Build G1 Eliscinsky
	Babamots: My wife laughed when I muttered to myself "I'm sending eliscinsky back to the stone age." :-)
	eliscinsky: GROUNDHOG DAY!
DO OVER!
If I have to start over, shouldn't you?
:P
	eliscinsky: I think I can,
I think I can,
I think I can!


42) Babamots: Move G3 Aldea Eliscinsky

43) eliscinsky: Sacrifice G3 Eliscinsky
Build Y1 Eliscinsky
Build G1 Eliscinsky
Build G2 Eliscinsky
Catastrophe Eliscinsky G

44) Babamots: Move B2 Aldea Eliscinsky

45) eliscinsky: Trade Y1 G1 Eliscinsky

46) Babamots: Attack G1 Eliscinsky

47) eliscinsky: Pass

48) Babamots: Attack Y1 Eliscinsky

	eliscinsky: I surrender, Do with me as you will!
	eliscinsky: Oh, and thanks for another game. Just let me know if I get tiresome.


36043)
Variants: "Unrated"
Started: 2020.3.6, Ended: 2020.5.5
Participants: capi3101 (S), akuden (W), eliscinsky (N), pedrop (E)
Winner: capi3101

1) eliscinsky: Homeworld R1 B2 G3
	eliscinsky: Greetings Captains! I've never played more than Binary HW.  This should be fun!

2) pedrop: Homeworld Y3 B1 G3
	capi3101: It has indeed been many a year since I played multi-player...and never with four. Should be interesting. Best of luck to all of you.

3) capi3101: Homeworld B2 G3 Y3
	pedrop: Yeh. I have played it also like 10 years ago...:) I'm interested if my brain will explode... ;) It is good and evil variant somewhere? Where I can find if I'm good or evil?

4) akuden: Homeworld Y2 B3 G3
	capi3101: The tough choice goes to akuden...which of the rest of us is he directly adjacent to...
	eliscinsky: I don't think (see where) SDG can do G vs. E.  So my understanding is that this is a "Last player standing" game.  GL 2 all!
	eliscinsky: The only option available in the challenge screen is for ... Sinister -> This variant is a 3-4 player alternative to the default "Last Man Standing" end-of-game condition. Here, the player that eliminates the player to his left is victorious.

Since I didn't see that option selected for this game, it is by default a "Last Man Standing" end-of-game condition.
	capi3101: Translation: we are all either for good or for awesome...

5) eliscinsky: Build G1 Eliscinsky
	akuden: GL everyone! This is my second game and with 4 players. I’m looking forward to it.

6) pedrop: Build G1 Pedrop

7) capi3101: Build Y1 Capi3101

8) akuden: Build G1 Akuden

9) eliscinsky: T G1 Y1 Eliscinsky

10) pedrop: Discover G1 Pedrop B2 Cylons

11) capi3101: Build Y1 Capi3101

12) akuden: Trade G1 Y1 Akuden

13) eliscinsky: Build G1 Eliscinsky

14) pedrop: Build G1 Cylons

15) capi3101: D Y1 Capi3101 G1 Aleph

16) akuden: Build G1 Akuden

17) eliscinsky: Build G2 Eliscinsky

18) pedrop:
Build G2 Cylons

19) capi3101: T Y1 B1 Capi3101

20) akuden: Trade G1 Y1 Akuden

21) eliscinsky: Discover G1 Eliscinsky Y3 Bigbird

22) pedrop: Trade G1 Y1 Cylons

23) capi3101: M Y1 Aleph Akuden
C Akuden Y

24) akuden: Build G1 Akuden
	eliscinsky: So do we force a surrender or terminate the game. I would like to continue playing the game. So my vote is to force the surrender. Sorry pedrop.

25) eliscinsky: Discover G1 Bigbird Y2 Triskelion
	pedrop: So fast to kill whole civilisation... from Pedrop homeworld... not so nice... ;)

26) pedrop: Build G1 Pedrop

27) capi3101: Build Y1 Capi3101

28) akuden: Trade G1 Y1 Akuden

29) eliscinsky: Build G1 Triskelion

30) pedrop: Trade G1 R1 Pedrop

31) capi3101: Trade Y1 R1 Capi3101

32) akuden: Build Y1 Akuden

33) eliscinsky: Trade G2 R2 Eliscinsky

34) pedrop: Build R1 Pedrop

35) capi3101: B B1 Capi3101

36) akuden: Move Y1 Akuden Cylons
	eliscinsky: pedrop ... What gives? You in the game or not?

37) eliscinsky: B G1 Eliscinsky

38) pedrop: Move R1 Pedrop Cylons

39) capi3101: Discover B1 Capi3101 B1 Bet

40) akuden: Build Y1 Akuden

41) eliscinsky: B Y2 Eliscinsky
	capi3101: Hmm. Looks like I don't have ruddy much of a choice but to open up the mediums for y'all. Which color is it going to be, I reckon?

(I can build yellow, red or blue, or I can swap for a green. Building blue would be dumb of me right now. Even discovering a new system would require me to utilize a small. That's my train of thought anyway).
	capi3101: Well, I do have one other choice. But I don't like it.

42) pedrop: Discover Y1 Cylons G3 Adama

43) capi3101: Build Y2 Capi3101

44) akuden: Move Y1 Akuden Triskelion

45) eliscinsky: Sacrifice Y2 Eliscinsky
Move G1 Triskelion Pedrop
Move G1 Triskelion Pedrop

46) pedrop: Attack Y1W Cylons

47) capi3101: Move Y2 Capi3101 Bet

48) akuden: Build Y2 Akuden

49) eliscinsky: B G1 Pedrop
C Pedrop G

50) pedrop: Build Y2 Adama

51) capi3101: Trade B1 G1 Capi3101

52) akuden: Trade Y2 R2 Akuden

53) eliscinsky: Discover R2 Eliscinsky Y3 Kaelon

54) pedrop: Build Y2 Cylons
	pedrop: Ouh...

55) capi3101: Build G1 Capi3101

56) akuden: Build G1 Akuden

57) eliscinsky: Build Y2 Eliscinsky

58) pedrop: Sacrifice G2 Cylons
Build Y3 Cylons
Build Y3 Adama

59) capi3101: Move G1 Capi3101 Bet

60) akuden: Move G1 Akuden Triskelion

61) eliscinsky: M Y1 Eliscinsky Adama
C Adama Y

62) pedrop: Move Y3 Cylons Pedrop

63) capi3101: Build G2 Bet

64) akuden: Build G2 Akuden

65) eliscinsky: Move R2 Kaelon Triskelion

66) pedrop: Build G2 Cylons

67) capi3101: Discover G2 Bet B2 Gimel

68) akuden: Move G2 Akuden Triskelion

69) eliscinsky: A G2W Triskelion

70) pedrop: Discover Y1 Cylons G3 Adama
	eliscinsky: Just a curiosity ... where does everyone call home?
I'm in Maryland, USA
	capi3101: Oklahoma, USA
	eliscinsky: Pedrop, I need an explanation why we shouldn't force your surrender? This is the 3rd time you've been up for surrender. What gives?

I thought when we all signed up for this game we'd be active. We've been more than understanding. 3 times you've gone past your timeout. It's like you've disappeared. 
	eliscinsky: I'll wait until his listing above shows -24h / -1d, then ....
	capi3101: I'm not for forcing a surrender. That said, were one of y'all to press the button, would the rest of us be able to continue play? I've never done a four-player game in this format before; I don't know what would happen.
	eliscinsky: I agree forcing a surrender is not my 1st option, however pedrop has done this 3 times now. I myself have been in situations where SDG was not emailing me when it was my turn. That is why I took it upon myself to check on my current games, which is easily done in the "My SDG" (profile area).

I'm all for giving a player enough time to consider all their options, but there is a reason for time limits. While I don't fancy baseball there is a "3 strikes and you're out" rule. If pedrop were to at least post that he's tied up for x period of time I'd have no problem waiting.  Even when I've had days to make my next move if something was going to hold me up I'd say something.

As for FS / TG, considering the [button] options are ...
1) Force Surrender (rated)
and
2) Terminate Game (unrated)

I would assume the 1st option would only eliminate the single player, return that players ships and or empty stars to the bank, and allow the rest to continue. However this is also my 1st multi-player game.

71) capi3101: Build G2 Gimel
	pedrop: Sorry, but I had more important things to do. Now I have 1h, let me make mare next move, after that if I won't be avaible - feel free to kick out me from this - game if it will not break it. I will be moving in future, but sometime I need more time. Sorry, again.

72) akuden: Build G2 Akuden

73) eliscinsky: Attack Y1W Triskelion

74) pedrop: Move G1 Cylons Pedrop

75) capi3101: Build G3 Bet

76) akuden: Trade G2 R2 Akuden

77) eliscinsky: Attack G1W Triskelion

78) pedrop: Build G2 Cylons

79) capi3101: Build Y1 Bet

80) akuden: Trade R2 B2 Akuden

81) eliscinsky: Move R2 Triskelion Adama

82) pedrop: Build R1 Pedrop

83) capi3101: Move Y2 Bet Gimel

84) akuden: Move R2 Akuden Triskelion

85) eliscinsky: S R2 Adama
A R2W Triskelion
Pass

86) pedrop: Trade R1 B1 Pedrop

87) capi3101: Discover G2 Gimel Y3 Dalet

88) akuden: Trade B2 R2 Akuden

89) eliscinsky: Sacrifice G3 Eliscinsky
Build R1 Triskelion
Build Y1 Eliscinsky
Build G3 Eliscinsky

90) pedrop: S G2 Cylons
B Y2 Cylons
B Y3 Adama

91) capi3101: Build G2 Dalet
	pedrop: I wonder... why North hes undid his move... ;) ;)

92) akuden: Build R2 Akuden

93) eliscinsky: T G1 B1 Eliscinsky

94) pedrop: Move B1 Pedrop Cylons

95) capi3101: M G2 Dalet Gimel

96) akuden: Build R2 Akuden

97) eliscinsky: Move R1 Triskelion Akuden
Catastrophe Akuden R

98) pedrop: Move B1 Cylons Adama

99) capi3101: Trade G2 R2 Gimel

100) akuden: Trade Y1 R1 Akuden

101) eliscinsky: B G1 Eliscinsky

102) pedrop: Build G2 Cylons

103) capi3101: Sacrifice G2 Dalet
Build Y1 Gimel
Build Y3 Capi3101

104) akuden: Build R2 Akuden

105) eliscinsky: Build R2 Triskelion

106) pedrop: B G2 Pedrop

107) capi3101: Sacrifice Y3 Capi3101
Move Y1 Gimel Pedrop
Move Y1 Bet Cylons
Move Y1 Cylons Pedrop
Catastrophe Pedrop Y

108) akuden: Trade R1 Y1 Akuden

109) eliscinsky: Sacrifice B1 Eliscinsky
Trade Y1 B1 Triskelion

110) pedrop: Move Y3 Adama Pedrop

111) capi3101: B Y1 Capi3101

112) akuden: Build R1 Akuden

113) eliscinsky: Build B2 Triskelion

114) pedrop: Build B3 Adama

115) capi3101: Move Y1 Capi3101 Bet

116) akuden: Discover Y1 Akuden R2 Lamas

117) eliscinsky: S Y2 Eliscinsky
M B1 Triskelion Pedrop
M B2 Triskelion Pedrop

118) pedrop: Attack B2N Pedrop

119) capi3101: Sacrifice Y2 Gimel
Move B1 Bet Gimel
Move B1 Gimel Pedrop
Catastrophe Pedrop B

120) eliscinsky: Pass

121) capi3101: Pass

122) akuden: Build G1 Akuden

123) eliscinsky: M R2 Triskelion Adama

124) capi3101: Build G2 Gimel

125) akuden: Trade R1 Y1 Akuden
	capi3101: Hmm...I hate to paint myself as a target. Alas, I fear I must.

126) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build Y2 Eliscinsky
Build R1 Triskelion
	capi3101: Okay, so going through the rules, I have to reveal whether I am for good or for awesome. How exactly do I find that out?

I was under the impression that pedrop's ships became mine automatically; after reviewing the rules, that's not the case - they'll stay on the board to be captured/destroyed. Makes sense. They'll still contribute to a drain on the economy.
	eliscinsky: How is it my turn now? In all previous moves, akuden moves after capi3101.
	eliscinsky: That is West moves after South. Could it be a flaw in the program? Should I (North) and capi3101 (South) both pass to give akuden (West) the next move? 
	eliscinsky: It's also weird, but on "My SDG" page, this game no longer shows me as a player, but it did before pedrop was eliminated.
	eliscinsky: Capi3101 I don't think Good vs. Evil is relevant on SDG. I believe it's a One vs. Many scenario.
	eliscinsky: capi3101 & akuden, I've asked someone I consider a master HW's player, and his take is ... 

"ON SDG, there are two ways to play Homeworlds with more than two players. The default is "Last captain standing" where the last player with a homeworld wins. The other way is "Sinister," in which you win if you eliminate the player on your left (resignation doesn't count as elimination, annoyingly). The "Good vs Evil" rules are not implemented on SDG.

You're right that the West player should have the next move after South, even after a player elimination. If you want to play it honest, you and capi3101 should pass so that akuden gets their turn in proper order."

As I was already considering a "pass", I just wanted to get another (expert) opinion.  With that said ... I pass.

127) capi3101: Sacrifice G3 Bet
Build G3 Bet
Build Y2 Capi3101
Build Y3 Bet
	capi3101: I was trying to be make a Homestar Runner reference...

I agree that West seat should have the next move.

128) akuden: Move G1 Akuden Lamas
	capi3101: 'Trying to be make'? I obviously need to do a better job of editing my comments before posting...
	eliscinsky: Hmmm.... Don't know Homestar Runner LOL

129) eliscinsky: S G3 Eliscinsky
B G3 Eliscinsky
B R1 Triskelion
B R3 Adama
	akuden: Thank you for allowing me to make my move. Lol Homestar Runner...takes me back. 

130) capi3101: S G3 Bet
B G3 Bet
B R3 Capi3101
B R3 Gimel
	capi3101: Homestar Runner website - http://www.homestarrunner.com

Lot of that stuff is from the early 2000s. Funny as hell, even now. The reference I meade is specifically from the first of the Strong Bad e-mails, entitled "Some Kinda Robot", which is really not as funny as some of the later stuff. 

And now, back to your regularly scheduled game already in progress.
	capi3101: *made. Not 'meade', 'made'. Dammit... 

131) akuden: Build R3 Akuden

132) eliscinsky: S Y1 Eliscinsky
M R2 Adama Cylons

133) capi3101: S Y2 Capi3101
D G3 Bet Y3 Dalet
M R2 Gimel Dalet

134) akuden: Trade R2 Y2 Akuden

135) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build R2 Cylons
Build R3 Adama

136) capi3101: Trade Y1 B1 Bet

137) akuden: Build Y1 Lamas

138) eliscinsky: A Y1E Adama

139) capi3101: Move B1 Bet Dalet

140) akuden: Discover Y1 Lamas B1 Lariat

141) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build Y1 Adama
Build Y3 Eliscinsky

142) capi3101: S G3 Dalet
B G3 Bet
B B1 Dalet
B B2 Dalet

143) akuden: Build Y3 Lamas

144) eliscinsky: A B3E Adama

145) capi3101: Sacrifice Y3 Bet
Move B1 Dalet Eliscinsky
Move B1 Dalet Eliscinsky
Move B2 Dalet Eliscinsky
Catastrophe Eliscinsky B

146) akuden: Build Y3 Akuden

147) eliscinsky: Sacrifice Y1 Adama
Discover R3 Adama Y1 Sol

148) capi3101: S Y3 Capi3101
Move R1 Capi3101 Eliscinsky
Move R2 Dalet Eliscinsky
Move R3 Gimel Eliscinsky
Catastrophe Eliscinsky R

149) capi3101: Pass

150) akuden: Sacrifice Y1 Akuden
Move R3 Akuden Gimel

151) capi3101: Trade G1 Y1 Bet
	eliscinsky: Nice capi3101, I see what you're about to do. 

152) akuden: Attack G2S Gimel
	capi3101: Question of whether or not I want to do it or wait a bit. Still haven't figured out the best way to go after a planetary defense system...the doomsmonth strategy doesn't work there.
	capi3101: Oh damn...
	capi3101: No doomsmonth here.

153) capi3101: Move G3 Bet Cylons
	capi3101: Action Stations, eliscinsky.

154) akuden: Attack G2S Gimel

155) capi3101: Move Y1 Bet Capi3101
	eliscinsky: capi3101, well played.  It's been fun!
	capi3101: You too; might have to do a two-player match sometime, if you're up for it.

156) akuden: Trade G2 Y2 Gimel
	capi3101: Best of luck, akuden. 
	capi3101: Game seems to have skipped the turn back to me; lemme pass then...

157) capi3101: Build Y3 Capi3101
	capi3101: Problem with doomsday machines is that they're intended to work with just one opponent. Unleashing one in a 3+ player game costs a lot of resources...
	capi3101: Just noting that I have a fairly big material disadvantage at the moment.

158) akuden: Build Y3 Gimel
	akuden: Best of luck to you as well, Capi. You do have a pretty good shot even with the disadvantage, as you may have noticed, I don't have a good grasp at the strategy of this game as of yet. 
	eliscinsky: Capi, I look forward to a future match.  Would also like to get another "Last Captain Standing", or even a "Sinister", game going.  PM me sometime when you're ready.

Akuden, and Pedrop, are you interested in a rematch in the future?
	capi3101: Will do.

159) capi3101: Sacrifice R3 Capi3101
Attack R2N Cylons
Attack Y2E Cylons
Attack R2N Cylons
	eliscinsky: Interesting what kind of game this becomes with so much economy and only two players.

160) akuden: Trade Y2 G2 Gimel
	capi3101: It becomes a slog, as likely as not. Depends on if we decide to reintroduce any of the 'lost' material back into the game...

161) capi3101: Trade G3 B3 Cylons

162) akuden: Move R3 Gimel Sol
	akuden: Yes, I'd be interested in another match. Going to brush up and watch some Homeworlds Theater vids beforehand to get a better understanding of the strategies. 

163) capi3101: Attack R1E Cylons

164) akuden: Attack R3N Sol

165) capi3101: S Y2 Cylons
M R1 Cylons Sol
M R2 Cylons Sol
C Sol R

166) akuden: Trade Y3 R3 Akuden

167) capi3101: Attack G2E Cylons

168) akuden: Move R3 Akuden Lariat

169) capi3101: Attack Y2E Cylons

170) akuden: Move G2 Gimel Lariat

171) capi3101: B B1 Cylons

172) akuden: Sacrifice Y3 Gimel
Move G2 Gimel Lariat
Move G2 Lariat Capi3101
Move G2 Lariat Capi3101
Catastrophe Capi3101 Green

173) capi3101: Trade Y1 B1 Capi3101

174) akuden: Move Y1 Lamas Lariat

175) capi3101: Trade Y3 G3 Capi3101

176) akuden: Move R3 Lariat Cylons

177) capi3101: Attack R3W Cylons

178) akuden: Trade Y1 G1 Lariat

179) capi3101: Move B1 Cylons Akuden

180) akuden: Trade Y1 G1 Lariat

181) capi3101: Sacrifice G2 Cylons
Build B1 Akuden
Build B2 Akuden
Catastrophe Akuden B
	capi3101: Well, that sucks.
	capi3101: I can't tell if I have time to pull this out or not. Going to try.

	eliscinsky: Akuden: Attacks work in a number of different scenarios.  1st you do need a red (attack economy) somewhere on the board. 2nd you can only attack an equal or smaller ship.  So here are a couple scenarios that might help your understanding. (without helping you with the game)

1) There is a Y3 Star, and you have a B1 there, and your opponent has a G1 & Y2 there.  If you have a R1 somewhere else you can sacrifice your R1 elsewhere and attack the G1, but not the Y2. (Same or smaller)

2) There is a Y3 Star, and you have a B2 there, and your opponent has a G1 & Y2 there.  If you have a R2 somewhere else you can sacrifice your R2 elsewhere and attack either or both G1 and Y2. (Same or smaller)

3) There is a Y3 Star, and you have a R1 there, and your opponent has a G1 & Y2 there.  You can attack the G1, but not the Y2. (Same or smaller, and your red is in the same system)

4) There is a Y3 Star, and you have a R2 there, and your opponent has a G1 & Y2 there.  You can attack either G1 or Y2, but not both at the same time (it would take 2 moves). Unless you sacrifice a R2 elsewhere first.  (You cannot sacrifice this R2 as it needs to be there for the attack)

Conclusion: Using the power of Red / Attack by way of proximity or sacrifice;
3 pips ships can attack 1, 2, or 3 pip ships
2 pips ships can attack 1, or 2 pip ships
1 pip ships can attack 1 pip ships

HTH

If you have more questions feel free to ask here or PM me. If you need help w/ rules PM me and I'll send you some links that can help.

	akuden: Awesome! Thanks eliscinsky! That makes sense! 
	capi3101: Well, that'll do it. If y'all want a rematch, just say the word.
	eliscinsky: Yes, yes Please
	eliscinsky: Yes please on the rematch! Same "Last Captain standing" or "Sinister" variant?  
	capi3101: Good with either.
	eliscinsky: I put up a Sinister, or one of you can put up a default game that I'll join. :)
	capi3101: I'm in.


36119)
Started: 2020.3.8, Ended: 2020.3.16
Participants: amoscai (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld B1 Y2 G3

2) amoscai: Homeworld Y1 B2 G3

3) zweiterlinde: Build G1 Zweiterlinde

4) amoscai: Build G1 Amoscai

5) zweiterlinde: Discover G1 Zweiterlinde B3 Agnus

6) amoscai: Trade G1 R1 Amoscai

7) zweiterlinde: Trade G1 R1 Agnus

8) amoscai: Build G1 Amoscai

9) zweiterlinde: Build G1 Zweiterlinde

10) amoscai: Build R1 Amoscai

11) zweiterlinde: Move G1 Zweiterlinde Agnus

12) amoscai: Build R2 Amoscai

13) zweiterlinde: Build R2 Agnus

14) amoscai: Move R2 Amoscai Agnus

15) zweiterlinde: Build G1 Agnus

16) amoscai: Attack G1 Agnus

17) zweiterlinde: Sacrifice R1 Agnus
Attack R2 Agnus

18) amoscai: Build G2 Agnus

19) zweiterlinde: Attack G2 Agnus

20) amoscai: Build G2 Agnus
Catastrophe Agnus Green

21) zweiterlinde: Trade R2 G2 Agnus

22) amoscai: Move R1 Amoscai Agnus

23) zweiterlinde: Attack R1 Agnus

24) amoscai: Build R1 Amoscai

25) zweiterlinde: Trade R2 Y2 Agnus

26) amoscai: Trade R1 Y1 Amoscai

27) zweiterlinde: Build G1 Agnus

28) amoscai: Move G1 Amoscai Agnus

29) zweiterlinde: Attack G1 Agnus

30) amoscai: Trade G3 B3 Amoscai

31) zweiterlinde: Build G1 Zweiterlinde

	amoscai: Oh wow. Haha. Oops. No construct 


36102)
Started: 2020.3.9, Ended: 2020.4.23
Participants: Mantheron (S), amoscai (N)
Winner: Mantheron

1) amoscai: Homeworld Y1 B2 G3

2) Mantheron: Homeworld R2 B3 G3

3) amoscai: Build G1 Amoscai

4) Mantheron: Build G1 Mantheron

5) amoscai: Discover G1 Amoscai B3 Beta

6) Mantheron: Trade G1 Y1 Mantheron

7) amoscai: Build G1 Amoscai

8) Mantheron: Build Y1 Mantheron

9) amoscai: Build G1 Beta

10) Mantheron: Build G2 Mantheron

11) amoscai: Build G2 Amoscai

12) Mantheron: Build Y2 Mantheron

13) amoscai: Build G2 Beta

14) Mantheron: Discover G2 Mantheron R1 Altair

15) amoscai: Trade G3 Y3 Amoscai

16) Mantheron: Build G3 Altair

17) amoscai: Trade G2 Y2 Beta

18) Mantheron: Move Y1 Mantheron Altair

19) amoscai: Trade G1 R1 Beta

20) Mantheron: Trade Y1 B1 Mantheron

21) amoscai: Build R1 Beta

22) Mantheron: Discover Y1 Altair G3 Castor

23) amoscai: Build G1 Beta

24) Mantheron: Build Y1 Castor

25) amoscai: Trade Y3 R3 Amoscai

26) Mantheron: Sacrifice G3 Altair
Build G2 Mantheron
Build G3 Altair
Build Y2 Mantheron

27) amoscai: Sacrifice Y2 Beta
Move G1 Beta Altair
Move G1 Beta Altair
Catastrophe Altair Green

28) Mantheron: Build Y2 Castor

29) amoscai: Trade R1 G1 Beta

30) Mantheron: Build Y3 Mantheron

31) amoscai: Build G1 Beta

32) Mantheron: Sacrifice Y3 Mantheron
Move Y1 Castor Amoscai
Move Y1 Castor Amoscai
Move Y2 Castor Amoscai
Catastrophe Amoscai Yellow

33) amoscai: Trade G2 Y2 Amoscai

34) Mantheron: Discover G2 Mantheron R1 Deneb

35) amoscai: Trade G1 R1 Beta

36) Mantheron: Move B1 Mantheron Deneb

37) amoscai: Trade R1 Y1 Beta

38) Mantheron: Build B1 Deneb

39) amoscai: Trade R1 B1 Beta

40) Mantheron: Move Y2 Mantheron Deneb

41) amoscai: Build R1 Amoscai

42) Mantheron: Discover B1 Deneb Y3 Electra

43) amoscai: Move R1 Amoscai Electra

44) Mantheron: Sacrifice G2 Deneb
Build B2 Deneb
Build B2 Electra

45) amoscai: Attack B1 Electra

46) Mantheron: Move B2 Electra Amoscai

47) amoscai: Sacrifice Y2 Amoscai
Move B1 Beta Deneb
Move B1 Electra Deneb
Catastrophe Deneb Blue

48) Mantheron: Sacrifice G3 Mantheron
Build B1 Amoscai
Build B1 Amoscai
Build Y1 Mantheron
Catastrophe Amoscai Blue



36122)
Started: 2020.3.9, Ended: 2020.4.13
Participants: Mantheron (S), zweiterlinde (N)
Winner: zweiterlinde

1) zweiterlinde: Homeworld B1 Y2 G3

2) Mantheron: Homeworld B3 R2 G3

3) zweiterlinde: Build G1 Zweiterlinde

4) Mantheron: Build G1 Mantheron

5) zweiterlinde: Discover G1 Zweiterlinde B3 Acta

6) Mantheron: Trade G1 Y1 Mantheron
	Mantheron: Acta?

7) zweiterlinde: Build G1 Acta

8) Mantheron: Build Y1 Mantheron

9) zweiterlinde: Trade G1 Y1 Acta

10) Mantheron: Discover Y1 Mantheron G1 Bno

11) zweiterlinde: Build G1 Zweiterlinde

12) Mantheron: Build G2 Mantheron

13) zweiterlinde: Build Y2 Acta

14) Mantheron: Build Y2 Bno

15) zweiterlinde: Build G2 Acta

16) Mantheron: Move G2 Mantheron Bno

17) zweiterlinde: Move Y1 Acta Bno

18) Mantheron: Build Y3 Mantheron

19) zweiterlinde: Build Y3 Acta

20) Mantheron: Trade Y1 R1 Mantheron

21) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Zweiterlinde
Build Y1 Bno
Build Y3 Acta
Catastrophe Bno Yellow

22) Mantheron: Build G3 Mantheron
	zweiterlinde: This is a bit of an odd duck play but I'm interested to see how it resolves

23) zweiterlinde: Sacrifice G2 Zweiterlinde
Build G2 Acta
Build G3 Zweiterlinde

24) Mantheron: Build Y1 Mantheron

25) zweiterlinde: Discover Y2 Acta B1 Caepe

26) Mantheron: Move Y1 Mantheron Bno

27) zweiterlinde: Move G2 Acta Caepe

28) Mantheron: Sacrifice G3 Mantheron
Build G3 Mantheron
Build R1 Mantheron
Build Y1 Bno

29) zweiterlinde: Sacrifice Y3 Acta
Move G1 Acta Caepe
Move G1 Caepe Mantheron
Move G2 Caepe Mantheron
Catastrophe Mantheron Green

30) Mantheron: Move R1 Mantheron Bno

31) zweiterlinde: Build G1 Acta

32) Mantheron: Move G2 Bno Mantheron

33) zweiterlinde: Trade G2 R2 Acta

34) Mantheron: Build G2 Mantheron

35) zweiterlinde: Move R2 Acta Bno

36) Mantheron: Discover Y1 Bno G3 Dnm

37) zweiterlinde: Attack R1 Bno

38) Mantheron: Trade R1 B1 Mantheron

39) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Acta
Build G3 Acta
Build G3 Zweiterlinde

40) Mantheron: Discover G2 Mantheron R1 Erie

41) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G3 Zweiterlinde
Build R1 Bno
Build Y1 Caepe

42) Mantheron: Build B2 Mantheron

43) zweiterlinde: Move G3 Acta Erie

44) Mantheron: Sacrifice G2 Erie
Build G2 Mantheron
Build Y2 Dnm

45) zweiterlinde: Build Y3 Acta

46) Mantheron: Sacrifice Y3 Mantheron
Move Y1 Dnm Bno
Move Y1 Bno Acta
Move Y1 Bno Acta
Catastrophe Acta Yellow

47) zweiterlinde: Sacrifice Y1 Caepe
Move G3 Erie Mantheron

48) Mantheron: Trade B1 Y1 Mantheron

49) zweiterlinde: Sacrifice R2 Bno
Attack G2 Mantheron
Attack G2 Mantheron



36100)
Variants: "Hard time"
Started: 2020.3.9, Ended: 2020.3.31
Participants: dlwillson (S), nicknack (N)
Winner: dlwillson

1) nicknack: Homeworld R2 B1 G3

2) dlwillson: Homeworld B3 R2 G3 Dlwillson

3) nicknack: Build G1 Nicknack
	dlwillson: TY!GL!HF!

4) dlwillson: B G1 Dlwillson
	nicknack: Thanks! You too!

5) nicknack: Trade G1 Y1 Nicknack

6) dlwillson: T G1 Y1 Dlwillson

7) nicknack: Build G1 Nicknack

8) dlwillson: B G1 Dlwillson

9) nicknack: Discover G1 Nicknack Y3 Beta

10) dlwillson: T G1 B1 Dlwillson

11) nicknack: Build G1 Nicknack

12) dlwillson: B B1 Dlwillson

13) nicknack: Discover G1 Nicknack B3 Gamma

14) dlwillson: D B1 Dlwillson G1 Field

15) nicknack: Build G2 Nicknack

16) dlwillson: B G2 Dlwillson

17) nicknack: Sacrifice G3 Nicknack
Build G2 Beta
Build G3 Gamma
Build G3 Nicknack

18) dlwillson: T B1 R1 Dlwillson

19) nicknack: Trade G3 Y3 Gamma

20) dlwillson: D G2 Dlwillson Y1 Sol

21) nicknack: Build G3 Gamma

22) dlwillson: B Y2 Dlwillson

23) nicknack: Build Y2 Nicknack

24) dlwillson: M Y1 Dlwillson Field

25) nicknack: Discover G2 Nicknack Y3 Delta

26) dlwillson: M B1 Field Gamma

27) nicknack: Discover G1 Gamma B1 Zeta

28) dlwillson: S G2 Sol
B B2 Gamma
B B2 Gamma
C Gamma B

29) nicknack: Discover G2 Beta B1 Gamma

30) dlwillson: S G3 Dlwillson
B Y1 Field
B Y2 Field
B Y3 Dlwillson

31) nicknack: Trade G2 R2 Gamma

32) dlwillson: T Y2 G2 Dlwillson

33) nicknack: Trade G1 R1 Zeta

34) dlwillson: M R1 Dlwillson Field

35) nicknack: Sacrifice Y2 Nicknack
Move R2 Gamma Dlwillson
Move R1 Zeta Dlwillson

36) dlwillson: Attack R2 Dlwillson

37) nicknack: Sacrifice G1 Beta
Build R1 Dlwillson
Catastrophe Dlwillson Red

38) dlwillson: M Y2 Field Delta

39) nicknack: Discover G2 Delta B2 Beta

40) dlwillson: B Y2 Field

41) nicknack: Build Y2 Nicknack

42) dlwillson: B Y3 Dlwillson

43) nicknack: Build G1 Beta

44) dlwillson: T Y3 R3 Dlwillson

45) nicknack: Trade G1 B1 Beta

46) dlwillson: M Y2 Delta Beta

47) nicknack: Sacrifice Y2 Nicknack
Discover G2 Beta R1 Delta
Move B1 Beta Delta

48) dlwillson: Move Y3 Dlwillson Delta

49) nicknack: Sacrifice G2 Delta
Build B1 Delta
Build B2 Delta

50) dlwillson: A B2 Delta

51) nicknack: Build Y2 Nicknack

52) dlwillson: Attack B1 Delta

53) nicknack: Sacrifice Y1 Nicknack
Discover B1 Delta G2 Gamma

54) dlwillson: M Y2 Field Gamma

55) nicknack: Sacrifice Y2 Nicknack
Discover B1 Gamma G3 T1
Move B1 T1 Nicknack

56) dlwillson: D B2 Delta G3 Forest

57) nicknack: Build G1 Nicknack

58) dlwillson: S Y3 Delta
M B1 Delta Forest
M B1 Forest Nicknack
M B2 Forest Nicknack
C Nicknack B

	dlwillson: I think that's got it. You had me very concerned when you took half the homeworld. I somehow managed to keep you too busy running to finish me off. Whew.
	nicknack: Ugh. Yeah, I guess it was a rushed plan, taking half your homeworld so early on. Been playing catch up ever since! Nicely done.


36125)
Started: 2020.3.9, Ended: 2020.4.19
Participants: Babamots (S), nuberu (N)
Winner: Babamots

1) nuberu: Homeworld R3 B1 G3
	Babamots: Welcome to SDG! Let me know if you have trouble with the controls or anything. I can also give you some strategy advice once we get going. For now, you'll want green and blue in your homeworld (either in your stars or in your ship).

2) Babamots: Homeworld B2 R1 G3

3) nuberu: Build G1 Nuberu
	nuberu: Thank you! I chose to start same as earlier today :). It did take me a bit to figure out the commands (I realize afterwards we had a chat here). What does the (N) in my name mean?

4) Babamots: Build G1 Babamots
	Babamots: I means you are the "North" player (the person who had the first move).

5) nuberu: Trade G1 Y1 Nuberu

6) Babamots: Trade G1 Y1 Babamots

7) nuberu: Build G1 Nuberu

8) Babamots: Build G1 Babamots

9) nuberu: Discover G1 Nuberu B2 Trasgu

10) Babamots: Trade G1 R1 Babamots

11) nuberu: Build G1 Trasgu

12) Babamots: Build R1 Babamots

13) nuberu: Build G1 Nuberu

14) Babamots: Build G2 Babamots

15) nuberu: Build G2 Nuberu

16) Babamots: Discover G2 Babamots G3 Ferenginar

17) nuberu: Trade G2 R2 Nuberu

18) Babamots: Build G2 Babamots

19) nuberu: Build G2 Nuberu

20) Babamots: Discover G2 Babamots B3 Bolarus

21) nuberu: Build Y1 Nuberu

22) Babamots: Sacrifice G2 Ferenginar
Build G2 Babamots
Build G3 Bolarus

23) nuberu: Build Y2 Nuberu

24) Babamots: Trade G3 Y3 Bolarus

25) nuberu: Trade G2 B2 Nuberu

26) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build Y2 Babamots
Build Y3 Babamots

27) nuberu: Move Y1 Nuberu Trasgu

28) Babamots: Trade Y1 B1 Babamots

29) nuberu: Move R2 Nuberu Trasgu

30) Babamots: Move R1 Babamots Bolarus

31) nuberu: Discover G1 Trasgu B3 Xana

32) Babamots: Move Y3 Bolarus Trasgu

33) nuberu: Sacrifice G3 Nuberu
Build G2 Trasgu
Build G3 Nuberu
Build G3 Xana

34) Babamots: Build G3 Babamots

35) nuberu: Sacrifice G3 Xana
Build Y1 Nuberu
Build Y3 Trasgu
Build G3 Xana

36) Babamots: Sacrifice R1 Babamots
Attack R2 Trasgu

37) nuberu: Sacrifice Y3 Trasgu
Move G2 Trasgu Xana
Move G2 Xana Babamots
Move G1 Xana Babamots
Catastrophe Babamots G

38) Babamots: Build Y3 Bolarus

39) nuberu: Trade G3 R3 Xana

40) Babamots: Sacrifice R2 Trasgu
Attack G1 Trasgu
Attack Y1 Trasgu

41) nuberu: Sacrifice Y2 Nuberu
Move G1 Nuberu Trasgu
Move Y1 Nuberu Trasgu

42) Babamots: Trade Y1 R1 Trasgu

43) nuberu: Move G1 Trasgu Xana

44) Babamots: Attack Y1 Trasgu

45) nuberu: Discover B2 Nuberu Y2 Cuelebre

46) Babamots: Move Y3 Bolarus Cuelebre

47) nuberu: Move Y1 Nuberu Cuelebre

48) Babamots: Sacrifice R1 Bolarus
Attack Y1 Cuelebre

49) nuberu: Build R1 Xana

50) Babamots: Build Y1 Bolarus

51) nuberu: Sacrifice R1 Xana
Attack Y1 Cuelebre

52) Babamots: Sacrifice R1 Trasgu
Attack Y1 Cuelebre
	nuberu: I think I've tried all possible actions so I can loose in peace now ^^

53) nuberu: Build R1 Xana
	Babamots: You've played, what, five games now? I think you're picking this up extremely quickly. With a few more training games, I'll have you conquering planets in my name! :-P

54) Babamots: Build G1 Trasgu

55) nuberu: Sacrifice R1 Xana
Attack Y1 Cuelebre

56) Babamots: Trade G1 R1 Trasgu
	nuberu: since i didn't find you last monday, i'm guessing you're not going to the office today. but just in case i wanted to let you know i'm not going to the office anymore since Friday we officially moved to "essential operations status".

57) nuberu: Move Y1 Cuelebre Xana
	Babamots: Yes, I didn't go to the office at all last week. I'd like to try a real-time game though. We can connect through Zoom or Google Handouts.

58) Babamots: Build G1 Trasgu

59) nuberu: Move B2 Cuelebre Xana

60) Babamots: Move G2 Bolarus Cuelebre

61) nuberu: Trade G3 B3 Nuberu

62) Babamots: Trade G1 B1 Trasgu

63) nuberu: Build R1 Xana

64) Babamots: Sacrifice Y2 Bolarus
Move B1 Babamots Xana
Move B1 Trasgu Xana
Catastrophe Xana B

65) nuberu: Trade B3 G3 Nuberu
	Babamots: Sorry, I had to do the right thing.
	Babamots: But it just one turn, you'll be back where you started :-P.

66) Babamots: Build G1 Trasgu
	nuberu: Starting over...no problem! ^^'

67) nuberu: Build G1 Nuberu

68) Babamots: Sacrifice Y2 Babamots
Move G1 Trasgu Nuberu
Move G1 Trasgu Nuberu
Catastrophe Nuberu G
	Babamots: See you tomorrow for a real-time game?



36130)
Variants: "Unrated"
Started: 2020.3.10, Ended: 2020.5.13
Participants: capi3101 (S), Shobu (N)
Winner: capi3101

1) Shobu: Homeworld G3 B2 R3
	capi3101: This one I've played a lot of recently. Babamots and wil are the best players on the site (which makes sense given that they were among the original playtesters unless I'm very much mistaken). Babamots is the kind of teacher that will beat you and tell you how to improve. Wil is the kind of teacher that will beat you with a barbed-wire covered bat with a chainsaw on the end... ;)
	capi3101: You still learn from him though.
	capi3101: There's an overview of the rules as well as strategy tips for the game online; Google "pyramid arcade rules pdf" for the latest version. Babamots also has a good strategy guide at https://jpeterbaker.github.io/homeworlds/site/strategyGuide.html
	Shobu: Read lots of good things about this one! Really wanna try :) Will save the strategy guide too.

2) capi3101: Homeworld G1 B3 Y3

3) Shobu: Build R1 Shobu

4) capi3101: Build Y1 Capi3101
	capi3101: Generally the second move is always building a new ship. It's the only thing that makes sense...
	Shobu: ok, time for Homeworlds now!
	Shobu: i am totally confused by the command system .. how  to build a ship? Seems i am forced to build a R1.

Can't find another command than this..
build R1 inhomeworld
	capi3101: You are. You can only build ships that are the same color as other ~ships~ you have at the system involved. Because your only ship right now is red, you can build red ships. Or you can change the color of your red ship to something else - those are the only two actions that should be available to you right now...there's no one to attack, and you lack yellow so you cannot move.
	capi3101: Incidentally, you only have to type in the first letter of the command for the system to recognize it. You could type "b r1 Shobu" and the system would recognize it as "build r1 Shobu".
	capi3101: Have you played Homeworlds before IRL?

5) Shobu: Build R1 Shobu
	Shobu: oh ok i had to use my name as the System name .. i think i tried everything except this. 
No, never tried this game before.
	capi3101: I've played multiple times; gotten my butt kick multiple times too. I'll direct you to the Pyramid Arcade rules PDF. Homeworlds starts on page 20 and there's a section on strategy in it worth reviewing.

https://www.looneylabs.com/lit/rules/pyramid-arcade-instruction-guide

Also, Babamots has an online strategy guide here:

https://jpeterbaker.github.io/homeworlds/site/strategyGuide.html

Inexperienced players have a tendency to get trounced by experienced players (and badly). I typically offer three free moves as a handicap but so far nobody's taken me up on it.
	capi3101: When I go to name new systems I tend to use the Hebrew alphabet just as a change of pace from the Greek. But use whatever names you want to. A lot of the more experienced players on the site give the piece type for their system names. Never really have asked what they do in the case of duplicates...
	capi3101: Anyways, good luck. Suck as I do at this game, I do enjoy it quite a bit.

6) capi3101: T Y1 B1 Capi3101

7) Shobu: Trade R1 Y1 Shobu
	Shobu: thanks for the links!
I guess i will play this first match without reading the guide, just to discover the basic interactions. 
	capi3101: Do be careful not to build red next turn. With four of any piece color at a system, either player can call catastrophe and force all pieces of that color back to the bank. If the system piece is forced to return, anything that would be left there also goes.

8) capi3101: Build Y1 Capi3101
	Shobu: good to know, i somewhat overlooked this ..

9) Shobu: Discover R3 Shobu G1 Shobu1

10) capi3101: Build B1 Capi3101

11) Shobu: Build R1 Shobu1

12) capi3101: Discover Y1 Capi3101 G2 Aleph

13) Shobu: Move Y1 Shobu Shobu1

14) capi3101: Move B1 Capi3101 Aleph
	capi3101: It's generally ~very~ unwise to move your large ship away from your homeworld. You're probably okay with doing that for now but you're going to want to get it back there before too long.

15) Shobu: Move R3 Shobu1 Shobu
	Shobu: hmmm i thought that moving my R3 could be a good move ..

16) capi3101: Build B1 Aleph

17) Shobu: Build R1 Shobu1
	Shobu: ok, R3 went back home
	capi3101: It's for defense - without a large at your homeworld, I could take it over with a medium (or even a small if I played things correctly).

18) capi3101: Build B2 Aleph
	capi3101: I do need to get into red - and soon.
	Shobu: why can't i attack Aleph with R1? "You do not have access to sufficient weapons technology (RED) in this sector."

i don't see such limitation explained in the rules

19) Shobu: B R2 Shobu1
	capi3101: You have to have a presence in a system before you can attempt to use a power there. You have no ships there, ergo you can't attack me. By the same token, we can't grow ships at each other's homeworlds, or change their colors.

Moreover, attacking is a one-two punch and has to be carefully planned. You have to move the attacking craft in before you ~can~ attack with it. It gives me a chance to get away...or counter-attack if I can. 
	capi3101: Sacrificing the red ship wouldn't avail you either - you'd still have no presence there to take advantage of it.

Read up on sacrifice plays. Seriously. They win the most games.

20) capi3101: T B2 R2 Aleph

21) Shobu: Build R2 Shobu

22) capi3101: Discover R2 Aleph Y1 Bet

23) Shobu: Trade R2 Y2 Shobu

24) capi3101: Build B2 Aleph
	capi3101: In the hopes that you'll continue to play this game in the future, I need to let you know that you are in danger of losing the game on my next move. I ~could've~ ended it just now.
	capi3101: Your situation is known as a Bluebird...all your ships at your home system are the same color. Because you have three ships there, all I need to do is move in the fourth and then call catastrophe. With no ships at your home system, you lose.
	capi3101: I could've sacrificed my large yellow at my homeworld to move the red in. That's how I could've won.

Note that my red is ~still~ in a position to cause a game-ending catastrophe. You need to trade something at your homeworld next turn.
	Shobu: Oh i thought catastrophe was only triggered when there was 4 same-colored ships from one side, not both players.. yes that makes no sense now that i've come to think of it..

25) Shobu: D R2 Shobu1 G2 Gamma

26) capi3101: Move B1 Aleph Bet

27) Shobu: Build R2 Gamma

28) capi3101: Build Y2 Capi3101

29) Shobu: Discover R1 Shobu1 B3 Delta

30) capi3101: Trade B1 G1 Bet

31) Shobu: Build R3 Shobu1

32) capi3101: Build R3 Bet

33) Shobu: Build Y2 Shobu1

34) capi3101: Sacrifice Y2 Capi3101
Move R2 Bet Shobu
Move R3 Bet Shobu
Catastrophe Shobu R

35) Shobu: Move R3 Shobu1 Shobu

36) capi3101: T B1 R1 Aleph

37) Shobu: Build R2 Shobu1
	capi3101: That was probably not the best move I could've made, but I'll let it stand rather than take it back.

38) capi3101: Build R3 Aleph

39) Shobu: Build R3 Shobu

40) capi3101: Build G2 Bet

41) Shobu: Move Y1 Shobu1 Delta

42) capi3101: Build G3 Bet

43) Shobu: Trade R3 G3 Shobu

44) capi3101: Move G3 Bet Shobu

45) Shobu: Trade R1 B1 Delta

46) capi3101: Sacrifice R3 Aleph
Attack R3 Shobu
Attack G3 Shobu
Attack Y2 Shobu
	capi3101: Unfortunately, that move sets you up for a slow catastrophe at your Homeworld. Here's how:

	capi3101: From the rules, re: Sacrifice Actions - "Each action may be performed in ~any system you occupy~, even if you don't have access to that color in that system. Sacrificing a ship gives you temporary access to that color in any system you occupy."

You occupy a system if you've got at least one ship there. 
	capi3101: Homeworlds is definitely a game with a relatively steep learning curve; it's as complex as chess, and it is very unforgiving of mistakes...just yesterday I won against an opponent who had me on the ropes because he made a crucial mistake at exactly the wrong time.
	capi3101: If you're willing to give it another go, let me know. Meantime I'm going to go ahead and wrap this one up.


36140)
Variants: "Unrated"
Started: 2020.3.11, Ended: 2020.3.16
Participants: Babamots (S), eliscinsky (N)
Winner: Babamots

1) eliscinsky: Homeworld B3 Y2 G3
	eliscinsky: Killing time until the next HW Tournament.
	eliscinsky: Gonna try another approach.

2) Babamots: Homeworld B3 R1 G3

3) eliscinsky: B G1 Eliscinsky

4) Babamots: Build G1 Babamots

5) eliscinsky: Trade G1 R1 Eliscinsky

6) Babamots: Trade G1 R1 Babamots

7) eliscinsky: B G1 Eliscinsky

8) Babamots: Build R2 Babamots

9) eliscinsky: B R2 Eliscinsky

10) Babamots: Trade R1 Y1 Babamots

11) eliscinsky: B G1 Eliscinsky

12) Babamots: Build Y1 Babamots

13) eliscinsky: T G1 Y1 Eliscinsky

14) Babamots: Discover Y1 Babamots Y2 Iconia

15) eliscinsky: B Y2 Eliscinsky

16) Babamots: Build Y3 Babamots

17) eliscinsky: T Y1 B1 Eliscinsky
	Babamots: I might regret this, but it seems interesting.

18) Babamots: Discover Y1 Babamots B2 Bolarus
	eliscinsky: Ditto

19) eliscinsky: S Y2 Eliscinsky
D R1 Eliscinsky G1 Grass
D B1 Eliscinsky G1 Weed

20) Babamots: Build Y1 Babamots

21) eliscinsky: Build G2 Eliscinsky

22) Babamots: Sacrifice G3 Babamots
Build Y2 Babamots
Build Y3 Iconia
Build Y3 Bolarus

23) eliscinsky: Discover G2 Eliscinsky B1 Blueberry

24) Babamots: Trade Y3 G3 Bolarus

25) eliscinsky: Sacrifice G3 Eliscinsky
Build R1 Grass
Build R2 Grass
Build R3 Eliscinsky

26) Babamots: Build Y3 Bolarus

27) eliscinsky: B G2 Blueberry
	Babamots: Out of curiosity, are you spreading your ships out because of the advice on my little website? One of my tips is to spread out your fleet when you have a large-ship disadvantage.
	Babamots: I think you're capable of coming up with this on your own, but I wondered if my guide has helped you or anyone.
	eliscinsky: While I have read most of your site, honestly I don't remember that piece of advice. So, no that is not what I was thinking.  I have another strategy that I'm trying. Hope you don't mind if I don't share it just now. I'll tell you afterwards. 

As an aside I didn't know you had moved when I went to bed shortly before midnight,  and I woke up around 3:45 thinking about it. At 4:30 I decided to just get up and study it. Your last move is not one I had considered yet. 

I think we've gotten to the point where we will move a bit slower. A falling of mine that I'm trying to work on. 
	eliscinsky: Wow, I must have still been a little sleepy. Meant to say ...

... and I woke up at 3:45 thinking about the game. (not your move)

... 
at 4:30 decided to get up and study [it] ... (the game).

28) Babamots: Move Y3 Iconia Grass

29) eliscinsky: Build G2 Blueberry

30) Babamots: Move G3 Bolarus Blueberry
Catastrophe Blueberry G

31) eliscinsky: Trade R3 G3 Eliscinsky

32) Babamots: Sacrifice R2 Babamots
Attack R2 Grass
Attack R1 Grass

33) eliscinsky: Build R2 Grass
Catastrophe Grass R
	eliscinsky: I feel this slipping away.

34) Babamots: Trade Y3 R3 Bolarus

35) eliscinsky: Build G2 Eliscinsky

36) Babamots: Build Y3 Grass

37) eliscinsky: M G2 Eliscinsky Weed

38) Babamots: Trade Y3 G3 Babamots

39) eliscinsky: T G2 R2 Weed

40) Babamots: Build Y3 Babamots

41) eliscinsky: Build B1 Weed

42) Babamots: Move Y3 Grass Bolarus

43) eliscinsky: B R1 Weed

44) Babamots: Move Y3 Bolarus Weed
	eliscinsky: Damned if I do ([N]t g2 y3), damned if I don't ([S] b y3).
	eliscinsky: That is t g3 y3

	eliscinsky: I can struggle, but in the end I see no way around my loss. Once again I bow to your superior strategic abilities. 
	Babamots: GG! Maybe we should try a small or micro universe next :-)


36070)
Variants: "No undo, Unrated"
Started: 2020.3.11, Ended: 2020.3.14
Participants: rho0 (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld R1 B2 G3
	eliscinsky: Greetings rho0! I accept your "Standing Challenge" :)

	eliscinsky: I clicked the "Call an Admin" link just to see what it does. No Problem just curiosity.


36147)
Variants: "Unrated"
Started: 2020.3.12, Ended: 2020.3.12
Participants: Babamots (S), Pib (N)
Winner: Babamots

1) Pib: Homeworld G3 B1 Y3
	Babamots: Now to verify that SDG allows temporary abandonment.

2) Babamots: Homeworld B2 R1 G3

3) Pib: Build Y1 Pib

4) Babamots: Build G1 Babamots

5) Pib: Build Y1 Pib

6) Babamots: Build G1 Babamots

7) Pib: Sacrifice Y3 Pib
Discover Y1 Pib R2 Outpost
Move Y1 Pib Outpost
Move Y1 Outpost Pib

8) Babamots: Pass
	Pib: My homeworld was totally abandoned in the middle of that turn, but SDG allowed it.

9) Pib: Build Y1 Pib

10) Babamots: Pass

11) Pib: Build Y2 Pib

12) Babamots: Pass

13) Pib: Build Y2 Pib
Catastrophe Pib Y
	Pib: SDG totally allows you to trigger the catastrophe that kills you.
	Draw5PlayAll: Actually, I think even the official rules allow you to abandon your homeworld mid-turn as long as you get back there before your turn ends.
	Babamots: Even the most recent rules for Pyramid Quartet could be a little more clear about this, but they do allow suicide.

There's this older version of John's rules that definitely don't allow it:

http://www.ginohn.com/wunder201005/games/Homeworlds/HomeworldsRules.html

SDG is old enough that it might have implemented the old rules, at least in some circumstances, so I wanted to check. :-)



36116)
Variants: "Unrated"
Started: 2020.3.12, Ended: 2020.9.5
Participants: wil (S), sarperen (N)
Winner: wil

1) sarperen: Homeworld B3 R2 G3

2) wil: H Y2 B1 G3

3) sarperen: Build G1 Sarperen

4) wil: B G1 Wil

5) sarperen: Trade G1 Y1 Sarperen
	wil: Thx  4 da game!

6) wil: T G1 B1 Wil

7) sarperen: Build G1 Sarperen

8) wil: B B1 Wil

9) sarperen: Discover G1 Sarperen Y1 Betelgeuse

10) wil: D B1 Wil Y3 Y3

11) sarperen: Build G1 Betelgeuse

12) wil: B B2 Wil

13) sarperen: Trade Y1 R1 Sarperen

14) wil: D B2 Wil Y3 Why3

15) sarperen: Build G1 Sarperen

16) wil: S G3 Wil
B B2 Y3
B B2 Why3
B B3 Wil

17) sarperen: Move G1 Betelgeuse Y3

18) wil: T B2 R2 Y3

19) sarperen: Discover G1 Y3 Y1 Potato

20) wil: T B3 G3 Wil
	wil: We swat gnats around here.

21) sarperen: Trade R1 Y1 Sarperen
	wil: Yeah runaway

22) wil: S G3 Wil
B B2 Y3
B B3 Why3
B B3 Wil

23) sarperen: Build G2 Potato

24) wil: T B3 G3 Why3

25) sarperen: Sacrifice G3 Sarperen
Build G2 Betelgeuse
Build G2 Sarperen
Build G3 Sarperen

26) wil: B B3 Why3
	wil: Quarantine game?

27) sarperen: Trade G2 R2 Sarperen

28) wil: T B3 G3 Wil

29) sarperen: Trade G3 B3 Sarperen

30) wil: T B3 Y3 Why3
	wil: Lesson to avoid freezeouts!

31) sarperen: Sacrifice G2 Potato
Build G2 Potato
Build Y2 Sarperen

32) wil: B B3 Why3

33) sarperen: Build G2 Sarperen

34) wil: B G3 Wil



36149)
Variants: "Unrated"
Started: 2020.3.13, Ended: 2020.5.13
Participants: capi3101 (S), sarperen (N)
Winner: capi3101

1) sarperen: Homeworld B2 R1 G3
	capi3101: "Be gentle", eh? I'll do my best...

Tell you what, in the Pyramid Arcade rules there are a number of handicaps listed that can be employed when a novice is playing someone more experienced. I'll give you three free moves for the course of the game. Just comment when you want to use one and I'll pass my turn. Or at least, I'll try to...I've proposed this before to another player but they opted not to use their moves.

2) capi3101: H G1 B3 Y3

3) sarperen: Build G1 Sarperen

4) capi3101: Build Y1 Capi3101

5) sarperen: Trade G1 Y1 Sarperen

6) capi3101: Trade Y1 B1 Capi3101

7) sarperen: Build G1 Sarperen

8) capi3101: B B1 Capi3101

9) sarperen: Discover G1 Sarperen Y3 Potato

10) capi3101: Build Y1 Capi3101

11) sarperen: Build Y1 Sarperen

12) capi3101: Build Y2 Capi3101

13) sarperen: Discover Y1 Sarperen G3 Tomato

14) capi3101: Discover Y2 Capi3101 G2 Aleph

15) sarperen: Build Y2 Sarperen

16) capi3101: Trade Y3 G3 Capi3101

17) sarperen: Trade Y2 R2 Sarperen

18) capi3101: Trade B1 R1 Capi3101

19) sarperen: Build G1 Sarperen

20) capi3101: Build Y2 Aleph

21) sarperen: Sacrifice G3 Sarperen
Build G2 Potato
Build G2 Sarperen
Build G3 Sarperen

22) capi3101: Discover Y2 Aleph B3 Bet

23) sarperen: Trade G2 Y2 Sarperen

24) capi3101: Sacrifice G3 Capi3101
Build Y3 Capi3101
Build Y3 Aleph
Build B1 Capi3101

25) sarperen: Discover G1 Potato B2 Carrot

26) capi3101: Move B1 Capi3101 Aleph

27) sarperen: Discover Y1 Sarperen R3 Rhubarb

28) capi3101: Move Y2 Aleph Rhubarb

29) sarperen: Sacrifice G2 Potato
Build Y3 Rhubarb
Build G2 Carrot

30) capi3101: S Y2 Bet
M Y1 Capi3101 Aleph
M Y1 Aleph Rhubarb
C Rhubarb Y

31) sarperen: Sacrifice G3 Sarperen
Build G2 Sarperen
Build G3 Sarperen
Build G3 Carrot

32) capi3101: Move Y3 Aleph Tomato
	sarperen: Casually locking you out of the green economy.
	capi3101: I'm not particularly concerned.
	capi3101: Yet.

33) sarperen: Sacrifice Y2 Sarperen
Move Y1 Tomato Carrot
Discover G2 Carrot B3 Spinach

34) capi3101: B Y1 Tomato

35) sarperen: Trade G2 Y2 Sarperen

36) capi3101: Build B1 Aleph

37) sarperen: Sacrifice G3 Sarperen
Build G2 Spinach
Build G3 Sarperen
Build Y1 Carrot

38) capi3101: Move Y1 Tomato Aleph

39) sarperen: Trade G2 B2 Spinach

40) capi3101: Build Y2 Aleph

41) sarperen: Build G2 Carrot

42) capi3101: Move B1 Aleph Tomato

	capi3101: Going to go ahead and terminate the game as unrated; 40 days is a long enough wait. Hoping you didn't catch corona or have experienced any hardships because of it.


36013)
Variants: "Unrated, Hard time"
Started: 2020.3.15, Ended: 2020.3.15
Participants: wil (S), nicknack (N)
Winner: wil



36083)
Variants: "Hard time"
Started: 2020.3.15, Ended: 2020.3.22
Participants: nicknack (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) nicknack: Homeworld R3 B2 G3

3) wil: B G1 Wil

4) nicknack: Build G1 Nicknack

5) wil: T G1 B1 Wil

6) nicknack: Trade G1 Y1 Nicknack

7) wil: B B1 Wil

8) nicknack: Build G1 Nicknack

9) wil: D B1 Wil Y3 Y3

10) nicknack: Discover G1 Nicknack Y1 Beta

11) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

12) nicknack: Move G1 Beta Y3

13) wil: D B2 Y3 G1 G1

14) nicknack: Trade Y1 R1 Nicknack

15) wil: T B2 R2 Y3

16) nicknack: Move G1 Y3 Wil

17) wil: T B3 G3 Wil

18) nicknack: Build R1 Nicknack
	wil: You have traveled far little guy, now it is time to turn around and go home or face dire consequences.

19) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil
	nicknack: You wouldn’t throw away your only beautiful attack ship over little ol’ me, now would you?

20) nicknack: Discover G1 Wil B3 Beta
	wil: I will if needed, right now I got bidness to do!

21) wil: T B3 G3 Wil

22) nicknack: Trade G3 B3 Nicknack

23) wil: T B3 Y3 Y3

24) nicknack: Sacrifice B3 Nicknack
Trade R1 Y1 Nicknack
Trade R1 G1 Nicknack
Trade G1 Y1 Beta
	wil: They grew weary of my smurf domination, now give that back.

25) wil: B B3 G1
	nicknack: Ugh.

26) nicknack: Build Y1 Nicknack
	wil: Stopping monopolies is imperative.

27) wil: T B2 R2 G1

28) nicknack: Build Y2 Nicknack

29) wil: M Y3 Y3 G1

30) nicknack: Trade Y2 B2 Nicknack

31) wil: B B3 G1

32) nicknack: Trade Y1 G1 Beta

33) wil: M B3 G1 Nicknack

34) nicknack: Sacrifice G1 Beta
Build B3 Nicknack
Catastrophe Nicknack Blue
	nicknack: I don’t think there’s any coming back from this. Well done. Gonna go out with a bang...

35) wil: M B3 G1 Nicknack

	wil: Nice Bang! Challenge me anytime


35981)
Variants: "Hard time"
Started: 2020.3.15, Ended: 2020.3.25
Participants: Trydnt (S), nicknack (N)
Winner: Trydnt

1) nicknack: Homeworld R2 B1 G3

2) Trydnt: Homeworld B2 Y1 G3

3) nicknack: Build G1 Nicknack

4) Trydnt: Build G1 Trydnt

5) nicknack: Trade G1 Y1 Nicknack

6) Trydnt: Trade G1 B1 Trydnt

7) nicknack: Build Y1 Nicknack

8) Trydnt: Build B1 Trydnt

9) nicknack: Build Y2 Nicknack

10) Trydnt: Discover B1 Trydnt G3 G3

11) nicknack: Move Y1 Nicknack G3

12) Trydnt: Build B2 G3

13) nicknack: Sacrifice G3 Nicknack
Build Y2 G3
Build Y2 G3
Build Y3 Nicknack

14) Trydnt: Trade B2 R2 G3

15) nicknack: Sacrifice Y2 G3
Move Y2 G3 Trydnt
Move Y1 G3 Trydnt

16) Trydnt: Build B2 G3

17) nicknack: Sacrifice Y2 Nicknack
Move Y1 Nicknack G3
Move Y1 G3 Trydnt
Catastrophe Trydnt Yellow

18) Trydnt: Trade B2 Y2 G3

19) nicknack: Trade Y3 G3 Nicknack

20) Trydnt: Sacrifice G3 Trydnt
Build B2 G3
Build B2 G3
Build B3 Trydnt

21) nicknack: Build G1 Nicknack

22) Trydnt: Discover B2 G3 Y1 Y1

23) nicknack: Trade G1 Y1 Nicknack

24) Trydnt: Build B3 G3

25) nicknack: Build Y1 Nicknack

26) Trydnt: Build Y2 G3

27) nicknack: Discover Y1 Nicknack G3 Beta

28) Trydnt: Discover Y2 G3 G1 G1

29) nicknack: Build Y2 Beta

30) Trydnt: Move B2 Y1 Beta

31) nicknack: Discover Y2 Beta G1 Gamma

32) Trydnt: Build B3 Beta

33) nicknack: Sacrifice G3 Nicknack
Build Y1 Beta
Build Y3 Nicknack
Build Y3 Gamma

34) Trydnt: Build Y3 G3

35) nicknack: Trade Y3 R3 Nicknack

36) Trydnt: Move Y3 G3 Gamma

37) nicknack: Discover Y3 Gamma G3 Delta

38) Trydnt: Build Y3 G1

39) nicknack: Trade Y1 G1 Nicknack

40) Trydnt: Build Y1 G3

41) nicknack: Build G2 Nicknack

42) Trydnt: Build R1 G3

	nicknack: Well played with the blue monopoly. Thanks for the game! Hope to rematch soon.
	Trydnt: any monopoly makes for a pretty easy win tbh. you need to focus intently on not getting frozen out, which of course often leads to trading for whatever colors your opponent gets so they don't get a head start in that color's growth.

in the late game though the biggest lesson to be learned from monopolies is to make sure you don't expend so many resources blowing up half of your opponents star, that you leave yourself in a devastatingly weakened position in the new arrangement. So unless you have a way to blow up the other half too, it's usually best to hold off on pulling the trigger until you're ready.

or as I formulate it for the people I'm teaching at the moment - "If you go in with half a plan, you'll come out with half a victory"
	nicknack: Thank you! I look forward to trying again!


36160)
Variants: "Unrated"
Started: 2020.3.15, Ended: 2020.3.15
Participants: Dante (S), nuberu (N)
Winner: nuberu

1) nuberu: Homeworld R3 B1 G3

2) Dante: Homeworld G2 B1 Y3

3) nuberu: Build G1 Nuberu

4) Dante: Discover Y3 Dante R3 Kimchi



36161)
Variants: "Unrated"
Started: 2020.3.15, Ended: 2020.3.16
Participants: nuberu (S), Mangchi (N)
Winner: nuberu

1) Mangchi: Homeworld G3 B1 Y3

2) nuberu: Homeworld R2 B1 G3

3) Mangchi: Build Y1 Mangchi

4) nuberu: Build G1 Nuberu

5) Mangchi: Trade Y1 R1 Mangchi

6) nuberu: Trade G1 R1 Nuberu

7) Mangchi: Discover R1 Mangchi R2 Ferengi

8) nuberu: Build G1 Nuberu

9) Mangchi: Build Y1 Mangchi

10) nuberu: Trade G1 Y1 Nuberu

11) Mangchi: Trade Y1 G1 Mangchi

12) nuberu: Build G1 Nuberu

13) Mangchi: Move G1 Mangchi Ferengi

14) nuberu: Discover R1 Nuberu B3 Trasgu

15) Mangchi: Build Y1 Mangchi

16) nuberu: Build G1 Nuberu

17) Mangchi: Trade Y1 B1 Mangchi

18) nuberu: Move G1 Nuberu Trasgu

19) Mangchi: Move B1 Mangchi Ferengi

20) nuberu: Build G2 Trasgu

21) Mangchi: Build Y1 Mangchi

22) nuberu: Trade G2 Y2 Trasgu

23) Mangchi: Move Y1 Mangchi Ferengi

24) nuberu: Build G2 Trasgu

25) Mangchi: Build Y1 Mangchi

26) nuberu: Discover G2 Trasgu Y2 Xana

27) Mangchi: Discover G1 Ferengi B3 Judo

28) nuberu: Build G2 Trasgu

29) Mangchi: Build G2 Judo

30) nuberu: Build G3 Xana

31) Mangchi: Build Y2 Mangchi

32) nuberu: Sacrifice G3 Nuberu
Build Y3 Trasgu
Build Y3 Nuberu
Build G3 Nuberu

33) Mangchi: Move Y2 Mangchi Ferengi

34) nuberu: Move Y3 Trasgu Ferengi

35) Mangchi: Move Y2 Ferengi Judo

36) nuberu: Sacrifice Y3 Nuberu
Move Y3 Ferengi Mangchi
Move Y2 Trasgu Xana
Move Y2 Xana Mangchi
Catastrophe Mangchi Y



36162)
Started: 2020.3.15, Ended: 2020.3.15
Participants: Babamots (S), Pib (N)
Winner: Babamots

1) Pib: Homeworld G1 B1 Y3 *
	Babamots: Some players have suggested that, when abandoning your homeworld, it should make a difference whether your enemy has any ships in your homeworld.

Some say that you shouldn't be allowed to temporarily abandon your homeworld unless your enemy has ships there (SDG allows it either way).

I've also been asked whether an enemy presence in your home makes a difference to whether you may abandon it while simultaneously eliminating your opponent. I am quite certain that SDG does not allow simultaneous elimination under any circumstances, but we'll try it out.

2) Babamots: Homeworld B3 G3 Y3 *

3) Pib: Build Y1 Pib

4) Babamots: Build Y1 Babamots

5) Pib: Move Y1 Pib Babamots

6) Babamots: Build Y1 Babamots

7) Pib: Pass

8) Babamots: Move Y1 Babamots Pib

9) Pib: Pass
	Pib: At this point, I attempted the move

move y3 Pib Babamots
catastrophe Babamots y

I was directed back to game page with the added error message

"You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn." [sic]

10) Babamots: Move Y1 Babamots Pib

11) Pib: Move Y1 Babamots Pib

12) Babamots: Build Y2 Babamots

13) Pib: Pass

14) Babamots: Trade Y2 R2 Babamots

15) Pib: Pass

16) Babamots: Move R2 Babamots Pib

17) Pib: Pass
	Pib: At this point, I attempted the move

pass
catastrophe Pib y

I was directed back to the game page with the same error message as before.

18) Babamots: Move R2 Pib Babamots

19) Pib: Pass
Catastrophe Pib Y
	Babamots: But Pib was able to commit suicide by catastrophe when I had no ships at their home. So, it seems that SDG will let you commit suicide, but ONLY when your opponent does NOT have any ships at your home.
	Pib: Having this as a rated game was an accident. Sorry!



36163)
Variants: "Unrated"
Started: 2020.3.15, Ended: 2020.3.15
Participants: Babamots (S), Pib (N)
Winner: Babamots

1) Pib: Homeworld B1 G1 Y3 *

2) Babamots: Homeworld B3 G3 Y3 *

3) Pib: Build Y1 Pib

4) Babamots: Build Y1 Babamots

5) Pib: Move Y1 Pib Babamots

6) Babamots: Move Y1 Babamots Pib

7) Pib: Build Y1 Babamots

8) Babamots: Pass

9) Pib: Pass
	Pib: At this point, I attempted the move

move y3 Pib Babamots
catastrophe Babamots y

I was directed back to the game page with the added error message

"You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn." [sic]

10) Babamots: Move Y1 Pib Babamots

11) Pib: Move Y3 Pib Babamots
	Pib: At this point, I attempted the move

move y3 Pib Babamots
catastrophe Babamots y

I was directed to a system error page which read in part

"Illegal modulus zero at /home/html/games/lib/Homeworlds/Pos.pm line 886, <GEN104> line 19."
	Babamots: This test seems to confirm that SDG will not allow you to cause a draw-by-simultaneous-elimination under any circumstances, including when your opponent has a ship in your home system.



36172)
Variants: "Unrated"
Started: 2020.3.16, Ended: 2020.3.16
Participants: Babamots (S), Pib (N)
Winner: Babamots

1) Pib: Homeworld B1 G1 Y3 *

2) Babamots: Homeworld B3 G3 Y3 *
	Babamots: I recently learned that SDG allows a player to abandon their homeworld (and lose), but ONLY IF there is no enemy ship there.

This is an experimental game to test whether SDG allows TEMPORARY homeworld abandonment when an enemy ship is present.

3) Pib: Build Y1 Pib

4) Babamots: Build Y1 Babamots

5) Pib: Move Y1 Pib Babamots

6) Babamots: Move Y1 Babamots Pib

7) Pib: Sacrifice Y3 Pib
Move Y1 Babamots Pib
Move Y1 Pib Babamots
Move Y1 Babamots Pib

	Babamots: SDG DOES allow you to temporarily abandon your homeworld, even if an enemy ship is there.
	Draw5PlayAll: Wait... so what happens if I leave my homeworld empty for a moment, but then try to return?
	Babamots: I've tried that in other games. SDG allows you to leave you homeworld totally empty and then returning a ship to it. Pib's back-and-forth move would also have been possible if I had not had a ship at their home.


36123)
Variants: "Hard time"
Started: 2020.3.16, Ended: 2020.4.3
Participants: dlwillson (S), eliscinsky (N)
Winner: dlwillson

1) eliscinsky: Homeworld R1 B2 G3

2) dlwillson: H R3 B1 G3
	eliscinsky: Greetings dlwilson! GL! HF!
	dlwillson: TYGLHF

3) eliscinsky: Build G1 Eliscinsky

4) dlwillson: B G1 Dlwillson

5) eliscinsky: Trade G1 R1 Eliscinsky

6) dlwillson: T G1 R1 Dlwillson

7) eliscinsky: Build R2 Eliscinsky

8) dlwillson: B R2 Dlwillson

9) eliscinsky: Build G1 Eliscinsky

10) dlwillson: T R2 Y2 Dlwillson

11) eliscinsky: Trade R2 Y2 Eliscinsky

12) dlwillson: Build G1 Dlwillson

13) eliscinsky: B R2 Eliscinsky

14) dlwillson: B R2 Dlwillson

15) eliscinsky: T R2 Y2 Eliscinsky

16) dlwillson: D R2 Dlwillson B2 Sea

17) eliscinsky: Discover Y2 Eliscinsky G3 Kronos

18) dlwillson: M G1 Dlwillson Sea

19) eliscinsky: M R1 Eliscinsky Kronos

20) dlwillson: D R1 Dlwillson G2 Field

21) eliscinsky: B R2 Kronos

22) dlwillson: Build R2 Sea

23) eliscinsky: Discover G1 Eliscinsky B3 Regula

24) dlwillson: Build R3 Field

25) eliscinsky: Build Y1 Kronos

26) dlwillson: B Y1 Dlwillson

27) eliscinsky: D Y1 Kronos B1 Betazed

28) dlwillson: T Y1 B1 Dlwillson

29) eliscinsky: Discover Y1 Betazed B2 Takara

30) dlwillson: M B1 Dlwillson Field

31) eliscinsky: S G3 Eliscinsky
B Y1 Takara
B Y1 Takara
B Y3 Eliscinsky

32) dlwillson: T R3 Y3 Field

33) eliscinsky: M R2 Kronos Takara

34) dlwillson: B Y3 Field

35) eliscinsky: Discover R1 Kronos G2 Talos4

36) dlwillson: Move Y3 Field Kronos

37) eliscinsky: Trade Y2 G2 Eliscinsky

38) dlwillson: S R1 Field
A Y2 Kronos

39) eliscinsky: Sacrifice Y1 Takara
Move G1 Regula Takara

40) dlwillson: B Y1 Dlwillson

41) eliscinsky: T Y3 G3 Eliscinsky

42) dlwillson: S Y3 Kronos
M G3 Dlwillson Sea
M G3 Sea Kronos
M G3 Kronos Eliscinsky

43) eliscinsky: S G3 Eliscinsky
B G1 Eliscinsky
B G3 Eliscinsky
B Y2 Takara

44) dlwillson: C Eliscinsky G
Pass

	dlwillson: Thank you! Good game!


36144)
Variants: "Unrated"
Started: 2020.3.17, Ended: 2020.3.25
Participants: eliscinsky (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R2 G3 *

2) eliscinsky: Homeworld R1 B3 G3
	Babamots: The rare Gemini option.
	eliscinsky: Gemini ... interesting. But is that merely a deceptive starting position? If I also create a Gemini HW, or combo (S/M or M/L) then we are two steps away (Small Univ).  If I create S/L, then it's a Big Univ.  So all in all not much of a difference in HW choice for me. Or have I missed something?  In the meantime I think I'll stick with a large universe.  Seems I keep missing a critical turning point, and need to learn to recognize it.

3) Babamots: Build G1 Babamots

4) eliscinsky: Build G1 Eliscinsky
	Babamots: I don't mean to be deceptive. Just looking for some variety.

And actually, you've given us a microverse: our homeworlds are connected. These games can be quite short.
	eliscinsky: (face-palm) So I did.  Thinking about one thing, and typing another.  LOL ... Game on!

5) Babamots: Trade G1 Y1 Babamots

6) eliscinsky: Trade G1 Y1 Eliscinsky
	eliscinsky: BTW, Are there any write ups on the "best strategies to use" when dealing with the various universes, Large, Small, Micro?  Or is it all just trial by error, I mean by gaining experience.

Like when confronted with a large universe you should attempt to do the following ... 1) In The Beginning you should ..., 2) Mid game you should ..., 3) Finally, blah blah ...

If playing a Small universe you should start out focusing on ..., then at the end try to position yourself to be able to do ...

When if come to a Micro universe these are the things to do, and to watch out for.

All this would be helpful to intermediate players to up their game, and a point of reference to beginners during / after their initial games.

Hopefully I'll be teaching my wife HW's sometime in the near future and any additional teaching materials would be great.
I have many links to looneylabs.com, ginohn.com, icehousegames.org/wiki, superdupergames.wikidot.com, and of course jpeterbaker.github.io/homeworlds

Didn't know if there were any others out there I haven't found.


7) Babamots: Build G1 Babamots
	eliscinsky: Also I truly appreciate your patience in helping me to learn new strategies. :)

8) eliscinsky: Build G1 Eliscinsky
	Babamots: I think of the smaller universes as accelerated versions of the large universe. Like right now, we're already at the stage where we are starting to build up fleets one jump away from one another's homes.

9) Babamots: Trade G1 R1 Babamots
	eliscinsky: Even though we're only 1 hop away, I see that we'll have to discover other stars in order to build up a proper attack vector. Otherwise we'll run the risk of creating a situation in HW for the opponent to attack.  AKA Don't build up to much in HW at any given period.

Or am I wrong?
	Babamots: Unless one of us makes a big mistake, we will need other systems for storing ships. Part the winner's invasion will probably be in their homeworld until the winning sequence.

I usually plan on needing to control two systems that are one jump away from my opponent. That way, I can threaten catastrophes without being vulnerable to them myself. In this game, my homeworld is one of those two systems. I will almost certainly need an outpost on another medium system.

10) eliscinsky: Trade G1 R1 Eliscinsky

11) Babamots: Discover R1 Babamots G3 Orion

12) eliscinsky: Discover R1 Eliscinsky G2 Kronos

13) Babamots: Build R2 Orion

14) eliscinsky: Build R2 Kronos

15) Babamots: Move Y1 Babamots Orion

16) eliscinsky: Move Y1 Eliscinsky Kronos

17) Babamots: Discover R2 Orion B2 Andoria
	Babamots: I have a little shadow that goes in and out with me...
:-P
	eliscinsky: What better way to learn than to imitate a master player.  :D
	Babamots: I've sometimes wondered, how could you exploit it if you knew that your opponent would imitate you as closely as possible (except you'd have to count on them winning if you gave them an opening).

18) eliscinsky: Discover R2 Kronos B3 Regula
	eliscinsky: I guess we'll see ;)

19) Babamots: Build R3 Orion

20) eliscinsky: Build R3 Kronos

21) Babamots: Discover R1 Orion G1 Risa

22) eliscinsky: Discover R1 Kronos G1 Talos4

23) Babamots: Build R3 Orion

24) eliscinsky: M R3 Kronos Regula
	eliscinsky: ... and so the great divergence began.

25) Babamots: Trade R2 Y2 Andoria

26) eliscinsky: Build R2 Talos4

27) Babamots: Move R3 Orion Talos4

28) eliscinsky: Trade R2 G2 Regula

29) Babamots: Build R2 Orion
	eliscinsky: Well done. Once again I'm at a disadvantage.  I'll have to study this game to see where and when I went wrong.

30) eliscinsky: B G1 Eliscinsky

31) Babamots: Attack R2 Talos4

32) eliscinsky: B G2 Regula

33) Babamots: Attack R1 Talos4

34) eliscinsky: S Y1 Kronos
M R3 Regula Talos4
C Talos4 R

35) Babamots: Move Y2 Andoria Regula

36) eliscinsky: T G2 Y2 Regula

37) Babamots: Sacrifice R2 Orion
Attack Y2 Regula
Attack G2 Regula

38) eliscinsky: Trade G1 Y1 Eliscinsky

39) Babamots: Build R1 Orion

40) eliscinsky: Build G1 Eliscinsky
	Babamots: I guess you get to rethink your third move :-P

41) Babamots: Move Y2 Regula Babamots

42) eliscinsky: T G1 B1 Eliscinsky

43) Babamots: Discover R3 Orion Y2 Iconia

44) eliscinsky: Build G1 Eliscinsky

45) Babamots: Trade G2 R2 Regula

46) eliscinsky: Build B1 Eliscinsky

47) Babamots: Build R2 Risa

48) eliscinsky: Discover G1 Eliscinsky G2 Earth

49) Babamots: Build R3 Orion

50) eliscinsky: Build G1 Eliscinsky
	Babamots: With that extra ship, you've got just enough ships to turn my triumph to embarrassment.

51) Babamots: Move R3 Orion Babamots

52) eliscinsky: Discover G1 Eliscinsky G2 Peapod

53) Babamots: Sacrifice Y2 Regula
Move R3 Iconia Eliscinsky
Move G3 Babamots Eliscinsky

54) eliscinsky: A R3 Eliscinsky

55) Babamots: Sacrifice R2 Risa
Attack R3 Eliscinsky
Attack G3 Eliscinsky

56) eliscinsky: Sacrifice G1 Peapod
Build Y1 Eliscinsky

57) Babamots: Trade G3 B3 Eliscinsky
Catastrophe Eliscinsky B

58) eliscinsky: Sacrifice G1 Earth
Build Y2 Eliscinsky
	eliscinsky: When we're done, you don't have to tell me why you undid that move. I don't understand how I could have taken you.

59) Babamots: Move Y1 Orion Eliscinsky
Catastrophe Eliscinsky Y
	eliscinsky: When we're done, I'd appreciate it if you would tell me why you undid that particular move.

	Babamots: Agreed. Not seeing the bank makes it much harder to analyze archived positions.
	Babamots: I bought a month's worth of CBS so I could watch Discovery and Picard. I just got to where Talos IV is mentioned for the first time, so I get your reference now. :-)
	eliscinsky: Where I get my names for the color of the planets / stars

https://memory-alpha.fandom.com/wiki/The_Worlds_of_the_Federation

https://memory-alpha.fandom.com/wiki/Planetary_classification
	eliscinsky: BTW, I've got 3 other games going so I' might be a while before I get back to a game w/ you.
	eliscinsky: And TY again.  If no one is challenging you feel free to hit me up. :)
	Babamots: I'm slightly burned out on HW at the moment. I spent half of last week proofreading drafts of the new Homeworlds rulebook for Pyramid Quartet. I couldn't get the game out of my head all weekend, so I don't mind having a little less HW in my life for a few days. :-D


36166)
Started: 2020.3.17, Ended: 2020.4.13
Participants: zweiterlinde (S), amoscai (N)
Winner: zweiterlinde

1) amoscai: Homeworld Y1 B2 G3

2) zweiterlinde: Homeworld B1 Y3 G3

3) amoscai: Build G1 Amoscai

4) zweiterlinde: Build G1 Zweiterlinde

5) amoscai: Discover G1 Amoscai B3 Taylor

6) zweiterlinde: Discover G1 Zweiterlinde B2 Swift

7) amoscai: Build G1 Taylor

8) zweiterlinde: Build G2 Zweiterlinde

9) amoscai: Build G2 Amoscai

10) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G2 Swift
Build G3 Swift
Build G3 Zweiterlinde

11) amoscai: Trade G1 Y1 Taylor

12) zweiterlinde: Trade G1 Y1 Swift

13) amoscai: Build Y2 Taylor

14) zweiterlinde: Trade G3 R3 Swift

15) amoscai: Trade G2 R2 Amoscai

16) zweiterlinde: Move R3 Swift Taylor

17) amoscai: Sacrifice Y2 Taylor
Move Y1 Taylor Swift
Move G1 Taylor Swift

18) zweiterlinde: Trade G2 R2 Swift

19) amoscai: Move G1 Swift Zweiterlinde

20) zweiterlinde: Trade G2 R2 Zweiterlinde

21) amoscai: Build G1 Zweiterlinde

22) zweiterlinde: Sacrifice R2 Zweiterlinde
Attack G1 Zweiterlinde
Attack G1 Zweiterlinde

23) amoscai: Move Y1 Swift Zweiterlinde

24) zweiterlinde: Trade G1 R1 Zweiterlinde

25) amoscai: Build G1 Amoscai

26) zweiterlinde: Move G1 Zweiterlinde Swift

27) amoscai: Discover G1 Amoscai Y3 John

28) zweiterlinde: Build Y2 Swift

29) amoscai: Build G1 John

30) zweiterlinde: Attack Y1 Zweiterlinde

31) amoscai: Build G2 Amoscai

32) zweiterlinde: Build G2 Zweiterlinde

33) amoscai: Move G1 John Swift

34) zweiterlinde: Attack G1 Swift

35) amoscai: Build G2 John

36) zweiterlinde: Sacrifice G3 Zweiterlinde
Build G3 Zweiterlinde
Build G3 Zweiterlinde
Build R1 Taylor

37) amoscai: Trade G2 Y2 Amoscai

38) zweiterlinde: Discover G3 Zweiterlinde B2 Lennon

39) amoscai: Build G2 Amoscai

40) zweiterlinde: Move G1 Swift Taylor

41) amoscai: Build R1 Amoscai

42) zweiterlinde: Move Y1 Swift Taylor

43) amoscai: Move R2 Amoscai Taylor

44) zweiterlinde: Attack R2 Taylor

45) amoscai: Build R2 Amoscai

46) zweiterlinde: Sacrifice G3 Lennon
Build G3 Taylor
Build R3 Swift
Build R3 Zweiterlinde

47) amoscai: Move R1 Amoscai Taylor
Catastrophe Taylor Red

48) zweiterlinde: Sacrifice G3 Taylor
Build G3 Taylor
Build Y2 Swift
Build Y3 Taylor

49) amoscai: Trade G2 B2 Amoscai

50) zweiterlinde: Sacrifice Y2 Swift
Move Y3 Taylor Amoscai
Move Y1 Taylor Amoscai
Catastrophe Amoscai Yellow

	amoscai: I just can't wrap my head round abstracts the way you do!


36034)
Variants: "Unrated"
Started: 2020.3.17, Ended: 2020.3.20
Participants: satyagrahaha (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) satyagrahaha: Homeworld R3 B1 G3

3) Trydnt: Build G1 Trydnt

4) satyagrahaha: Build G1 Satyagrahaha

5) Trydnt: Trade G1 B1 Trydnt

6) satyagrahaha: Build G1 Satyagrahaha

7) Trydnt: Build B1 Trydnt

8) satyagrahaha: Trade G1 Y1 Satyagrahaha

9) Trydnt: Discover B1 Trydnt G3 G3

10) satyagrahaha: Build G1 Satyagrahaha

11) Trydnt: Build B2 G3

12) satyagrahaha: Discover G1 Satyagrahaha R2 R2

13) Trydnt: Trade B2 Y2 G3

14) satyagrahaha: Trade G3 R3 Satyagrahaha

15) Trydnt: Build B2 G3

16) satyagrahaha: Build R1 Satyagrahaha

17) Trydnt: Move B2 G3 R2

18) satyagrahaha: Move R1 Satyagrahaha R2

19) Trydnt: Attack R1 R2

20) satyagrahaha: Build R1 Satyagrahaha

21) Trydnt: Sacrifice Y2 G3
Move R1 R2 Satyagrahaha
Catastrophe Satyagrahaha R
Move B2 R2 Satyagrahaha



36186)
Started: 2020.3.19, Ended: 2020.3.26
Participants: kokigami (S), lefou23 (N)
Winner: lefou23

1) lefou23: Homeworld R3 B2 G3

2) kokigami: Homeworld B2 G1 Y3

3) lefou23: Build G1 Lefou23 (n)

4) kokigami: Build Y1 Kokigami

5) lefou23: Trade G1 Y1 Lefou23

6) kokigami: Discover Y1 Kokigami G3 Mookie

7) lefou23: Build G1 Lefou23
	kokigami: Mostly gonna be learning the command interface. Win or lose is secondary

8) kokigami: Build Y1 Mookie
	lefou23: agree
	kokigami: This build retriction rule really complicates planning. 

9) lefou23: Build Y2 Lefou23

10) kokigami: Build Y2 Mookie
	lefou23: yes, lots more planning ahead
	lefou23: kinda need a realtime chat off to the side

11) lefou23: Discover Y2 Lefou23 R1 Sparky

12) kokigami: Discover Y1 Mookie B2 Gemi

13) lefou23: Trade G1 B1 Lefou23
	kokigami: Scrolling map on my phone will be awkward

14) kokigami: Trade Y1 B1 Gemi
	kokigami: You load skype yet? You may have told me
	lefou23: yes

15) lefou23: Build G1 Lefou23
	lefou23: hmm maybe on the iPad.. 

16) kokigami: Move Y1 Mookie Gemi

17) lefou23: Move B1 Lefou23 Sparky

18) kokigami: Move Y2 Mookie Gemi

19) lefou23: Discover B1 Sparky G3 Toledo

20) kokigami: Trade Y3 R3 Kokigami

21) lefou23: Build B1 Toledo
	lefou23: oo dangerous

22) kokigami: Trade Y2 G2 Gemi
	kokigami: I would prefer they placed the running log at the top.. I think. Then one could read it, scroll down and look at the map.  Still, this is designed for PBM style games. looks like default turn time limit is 3 days.. 


23) lefou23: Trade B1 R1 Toledo
	lefou23: second life needs pyramids (haven't visited in years)
	kokigami: giant ones, or nothin...
ok, so, play on a standard board.. but, make it possible to teleport into a system to view the system from the bridge of a fleet ship.. ?

	kokigami: giant ones, or nothin...
ok, so, play on a standard board.. but, make it possible to teleport into a system to view the system from the bridge of a fleet ship.. ?


24) kokigami: Sacrifice G2 Gemi
Build B1 Gemi
Build B3 Gemi

25) lefou23: Build B3 Toledo

26) kokigami: Discover B3 Gemi G3 Mookieprime
	kokigami: you must have been distracted as well?
I blame the cat, which I maintain you sent as a spy.

	lefou23: choices to be made, too

27) lefou23: Move Y2 Sparky Toledo
	kokigami: you missed my catastrophe in the offing?


28) kokigami: Trade B1 Y1 Gemi
	lefou23: yeah. I don't regret getting a b3. maybe I'm greedy.

29) lefou23: Build Y2 Lefou23
	kokigami: catastrophe is a free action, isn't it?


30) kokigami: Move Y1 Gemi Mookieprime
	kokigami: if you did it after the build you could have gotten a b3 and blown up 4 of my fleet in one go?


31) lefou23: Build R1 Toledo

32) kokigami: Build Y2 Mookieprime
	lefou23: yeah missed it. sure well see something again

33) lefou23: Build R1 Toledo

34) kokigami: Sacrifice Y2 Mookieprime
Move Y1 Mookieprime Kokigami
Move B3 Mookieprime Kokigami

35) lefou23: Trade B3 Y3 Toledo

36) kokigami: Discover B1 Gemi G1 Festus
	kokigami: covid just got serious. running out of rum. 


37) lefou23: Move R1 Toledo Festus

38) kokigami: Sacrifice B1 Festus
Trade B3 G3 Kokigami
	lefou23: Not good. Wisconsin hasn’t locked down anything yet, have they?
	kokigami: interesting.. 


39) lefou23: Build B1 Toledo
	kokigami: the interface isn't elegant, but it works pretty well 


40) kokigami: Discover G3 Kokigami Y3 Gigi
	lefou23: Yeah. I just switched to iPad with no loss in functionality. It will save when we stop.
	lefou23: I kind of like the tiles around the stars

41) lefou23: Sacrifice Y1 Lefou23
Move R1 Festus Gigi
	kokigami: interesting tactic you are trying. by locking me out of x1s you make approaching your home world very tricksy. Yes, I also like naming the stars. I  could see printing some star fields for f2f games.. naming them.. just for giggles.. 

	kokigami: the game is blowing up my email though


42) kokigami: Sacrifice G3 Gigi
Build Y1 Kokigami
Build Y2 Gemi
Build Y3 Gemi
	lefou23: Yeah. I filtered the messages to a folder, but I’ll have to clear it after we stop so I know when we randomly move again.
	kokigami: I just set one up.


43) lefou23: Sacrifice Y3 Toledo
Move R1 Gigi Kokigami
Move R1 Toledo Kokigami
Move R1 Toledo Kokigami
Catastrophe Kokigami Red
	kokigami: build order is fussy 

	kokigami: but it caught the issue and gave an error so, good coding.


44) kokigami: Trade Y3 R3 Gemi
	lefou23: That was a long setup

45) lefou23: Move Y2 Toledo Kokigami
	kokigami: that isn't really going to work the way I thought.. 

	lefou23: Have to call it a night. Feel free to take a move. I’ll watch for a fresh email.
	kokigami: care if I unmove? and redo that?

	kokigami: was a good setup.. did take a while. more subtle coming from two stars at once 

	kokigami: will think on it. timer is running. will move again probably tomorrow.

	lefou23: No prob. I'll probably check lunch and evenings during the week. I'll have more opportunities to check on weekend. Might set up a special alert to watch for "It's your turn" emails. 

I like that we can leave it set up.

46) kokigami: Sacrifice Y2 Gemi
Move R3 Gemi Toledo
Move R3 Toledo Kokigami

47) lefou23: Build Y2 Kokigami
Catastrophe Kokigami Yellow

48) kokigami: Build R1 Kokigami

49) lefou23: Trade B1 R1 Toledo

50) kokigami: Discover Y1 Gemi G1 Garms

51) lefou23: Build R1 Toledo

52) kokigami: Trade R3 Y3 Kokigami

53) lefou23: Trade R1 Y1 Toledo

54) kokigami: Build Y1 Kokigami

55) lefou23: Build Y2 Toledo
	kokigami: You have me pretty well pinned down. Will take some time to find the flaw in your approach

56) kokigami: Trade Y3 R3 Kokigami

57) lefou23: Trade Y2 R2 Toledo
	lefou23: mail has started marking "It's your turn!" email as junk because I keep deleting it. 
	kokigami: Technology. Amirite?

58) kokigami: Move R3 Kokigami Toledo

59) lefou23: Build R1 Toledo
Catastrophe Toledo Red

60) kokigami: Move R1 Kokigami Toledo

61) lefou23: Build Y2 Toledo
	kokigami: very scorched earth.. not at all expected.. 


62) kokigami: Attack B1 Toledo

63) lefou23: Sacrifice Y1 Toledo
Move Y2 Toledo Kokigami
	lefou23: Yeah, seemed like a good idea at the time 

64) kokigami: Sacrifice Y1 Garms
Move R1 Toledo Kokigami

65) lefou23: Trade Y2 R2 Kokigami
	lefou23: might be checkmate
	lefou23: never mind 

66) kokigami: Build R1 Kokigami

67) lefou23: Trade R2 B2 Kokigami

68) kokigami: Build R1 Kokigami

69) lefou23: Trade G3 R3 Lefou23

70) kokigami: Move R1 Kokigami Toledo


71) lefou23: Sacrifice R3 Lefou23
Attack R1 Kokigami
Attack R1 Kokigami
Attack Y1 Kokigami



36087)
Started: 2020.3.20, Ended: 2020.3.20
Participants: Dther (S), Everett451 (N)
Winner: Dther



36188)
Variants: "Unrated"
Started: 2020.3.21, Ended: 2020.3.21
Participants: Cuc2 (S), Cuc (N)
Winner: Cuc2

1) Cuc: Homeworld G1 B1 Y3 *

2) Cuc2: Homeworld B3 G3 Y3 *

3) Cuc: Move Y3 Cuc Cuc2
	Cuc: You can abandon your Homeworld. It's suicide (allowed) if you don't destroy the opponent's fleet.



36190)
Variants: "Unrated"
Started: 2020.3.21, Ended: 2020.3.21
Participants: Cuc2 (S), Cuc (N)
Winner: Cuc2

1) Cuc: Homeworld B1 G1 Y3 *

2) Cuc2: Homeworld G3 B3 Y3 *

3) Cuc: Build Y1 Cuc

4) Cuc2: Pass

5) Cuc: Build Y1 Cuc

6) Cuc2: Build Y1 Cuc2
	Cuc2: I tried this:
[m y3 Cuc2 Cuc
c Cuc y]
This ended in an error message: "Illegal modulus zero at /home/html/games/lib/Homeworlds/Pos.pm line 886, <GEN0> line 2093."
I'm now going to try it again, but with a ship left in my Homeworld.
Cuc is going to try the same but leaving one ship in his Homeworld. I need to pass a couple of times :-( haha.

7) Cuc: Build Y2 Cuc

8) Cuc2: Build Y2 Cuc2

9) Cuc: Pass

10) Cuc2: Build Y2 Cuc2

11) Cuc: Trade Y3 B3 Cuc
	Cuc2: I tried:
[b y2 Cuc2
c Cuc y
c Cuc2 y]
This led to the same error.
We're going to try to simultaneously eliminate the stars now, leaving at least one ship in our Homeworlds. It'll take a couple of moves and trades.

12) Cuc2: Trade Y3 B3 Cuc2

13) Cuc: Build Y3 Cuc

14) Cuc2: Build Y3 Cuc2

15) Cuc: Sacrifice B3 Cuc
Trade Y3 B3 Cuc
Trade Y2 B2 Cuc
Trade Y1 B1 Cuc

16) Cuc2: Sacrifice B3 Cuc2
Trade Y2 B2 Cuc2
Trade Y2 B2 Cuc2
Trade Y1 B1 Cuc2

17) Cuc: Move Y1 Cuc Cuc2

18) Cuc2: Move Y3 Cuc2 Cuc
Catastrophe Cuc B

	Cuc2: I tried 
[m y3 Cuc2 Cuc
c Cuc b
c Cuc2 b]
and I got this message (not an error): "You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn."
This means that SE (Simultaneous Elimination) is not allowed. But we've seen that Suicide is allowed, although you will lose. (Not totally consistent.) This reminder corresponds to the original 2002 rules!


36084)
Started: 2020.3.21, Ended: 2020.5.18
Participants: MobyNostromo (S), quozl (N)
Winner: MobyNostromo

1) quozl: Homeworld G2 B3 Y3

2) MobyNostromo: H B1 Y2 G3

3) quozl: Build Y1 Quozl

4) MobyNostromo: B G1 Mobynostromo

5) quozl: Build Y1 Quozl

6) MobyNostromo: T G1 Y1 Mobynostromo

7) quozl: Discover Y1 Quozl G1 G1

8) MobyNostromo: B Y2 Mobynostromo

9) quozl: Build Y2 G1

10) MobyNostromo: D Y2 Mobynostromo G3 Arbory

11) quozl: Trade Y1 B1 Quozl

12) MobyNostromo: B G1 Mobynostromo

13) quozl: Move B1 Quozl G1

14) MobyNostromo: T Y1 B1 Mobynostromo

15) quozl: Build B2 G1

16) MobyNostromo: B Y1 Arbory

17) quozl: Trade B1 R1 G1

18) MobyNostromo: T G1 R1 Mobynostromo

19) quozl: Trade Y1 G1 G1

20) MobyNostromo: B G1 Mobynostromo

21) quozl: Build Y1 Quozl

22) MobyNostromo: M G1 Mobynostromo Arbory

23) quozl: Discover G1 G1 B3 B3

24) MobyNostromo: B G2 Mobynostromo

25) quozl:
Move Y1 Quozl G1
	MobyNostromo: I'm sorry for the wait. It's been difficult to contemplate games these days.
	quozl: move y1 quozl G1
	quozl: How are things going for you?

26) MobyNostromo: S B1 Mobynostromo
T Y2 R2 Arbory
	MobyNostromo: We're okay. We're all working from home, waiting for this virus epidemic to subside. How about yourself? Are you okay?

27) quozl: Build G2 B3

28) MobyNostromo: T G2 B2 Mobynostromo
	quozl: same here, all working from home. I'm on the border between Oregon and Washington and pretty much everything is shutdown here.
	MobyNostromo: We're in Southern California. Actually, we visited Oregon and Washington a number of years ago. We loved it! Stay safe.

29) quozl: Move Y1 G1 B3

30) MobyNostromo: M R1 Mobynostromo B3
	quozl: You too!

31) quozl: Sacrifice R1 G1
Attack R1 B3

32) MobyNostromo: T B2 R2 Mobynostromo

33) quozl: Build R1 B3

34) MobyNostromo: B R1 Arbory

35) quozl: Trade R1 B1 B3

36) MobyNostromo: D Y1 Arbory B1 Cobalt

37) quozl: Build B2 B3

38) MobyNostromo: T Y1 R1 Cobalt

39) quozl: Sacrifice Y2 G1
Move B1 B3 Mobynostromo
Move B2 B3 Mobynostromo

40) MobyNostromo: S R2 Arbory
A B2 Mobynostromo
A B1 Mobynostromo

41) quozl: Build B2 G1

42) MobyNostromo: M B2 Mobynostromo Arbory

43) quozl: Build R2 B3

44) MobyNostromo: S G3 Mobynostromo
B R2 Cobalt
B R3 Mobynostromo
B R3 Arbory

45) quozl: Trade B2 Y2 G1

46) MobyNostromo: T R2 Y2 Mobynostromo

47) quozl: Build Y1 Quozl

48) MobyNostromo: S Y2 Mobynostromo
M R3 Arbory G1
M R1 Cobalt B3

49) quozl: Sacrifice Y2 G1
Move R1 B3 Mobynostromo
Move R2 B3 Mobynostromo

50) MobyNostromo: S R2 Cobalt
A R2 Mobynostromo
A R1 Mobynostromo

51) quozl: Trade G2 R2 B3

52) MobyNostromo: M R2 Mobynostromo B3

53) quozl: Build R2 B3
Catastrophe B3 Red

54) MobyNostromo: A B2 G1

55) quozl: Trade Y3 R3 Quozl

56) MobyNostromo: T B2 Y2 Arbory

57) quozl: Build G2 B3

58) MobyNostromo: B G2 Arbory

59) quozl: Trade G1 Y1 B3

60) MobyNostromo: M G1 Arbory Mobynostromo

61) quozl: Build Y2 Quozl

62) MobyNostromo: B Y3 Arbory

63) quozl: Build Y3 B3

64) MobyNostromo: M Y2 Arbory G1

65) quozl: Sacrifice Y2 Quozl
Move Y1 B3 Mobynostromo
Move Y1 B3 Mobynostromo

66) MobyNostromo: A Y1 Mobynostromo
	quozl: Sorry I was late. I don't think I ever got an email.
	MobyNostromo: No worries. I'm late too. :)

67) quozl: Sacrifice G2 B3
Build Y2 B3
Build Y3 Mobynostromo
Catastrophe Mobynostromo Yellow

68) MobyNostromo: S Y3 Arbory
M R3 G1 Quozl
M B2 G1 Quozl
M R1 Mobynostromo Quozl

69) quozl: Attack R3 Quozl

70) MobyNostromo: B R1 Quozl
C Quozl R
	quozl: Yikes!


71) quozl: Trade Y3 R3 B3

72) MobyNostromo: S R1 Arbory
A Y1 Quozl
	MobyNostromo: Good game!



36089)
Variants: "Unrated"
Started: 2020.3.21, Ended: 2020.3.27
Participants: eliscinsky (S), quozl (N)
Winner: quozl

1) quozl: Homeworld G2 B3 Y3

2) eliscinsky: Homeworld R1 B2 G3

3) quozl: Build Y1 Quozl
	eliscinsky: TY GL HF!
	quozl: Hello

4) eliscinsky: B G1 Eliscinsky

5) quozl: Build Y1 Quozl

6) eliscinsky: T G1 Y1 Eliscinsky

7) quozl: Discover Y1 Quozl G1 G1

8) eliscinsky: B Y2 Eliscinsky

9) quozl: Build Y2 G1

10) eliscinsky: Trade Y1 B1 Eliscinsky

11) quozl: Trade Y1 B1 Quozl

12) eliscinsky: B Y1 Eliscinsky

13) quozl: Move B1 Quozl G1

14) eliscinsky: Discover Y2 Eliscinsky G3 Kronos

15) quozl: Trade Y1 R1 G1

16) eliscinsky: D Y2 Kronos G1 Talos4

17) quozl: Build B1 G1

18) eliscinsky: B Y1 Talos4

19) quozl: Discover B1 G1 G3 G3

20) eliscinsky: M Y1 Talos4 Quozl

21) quozl: Trade Y3 R3 Quozl

22) eliscinsky: T Y1 R1 Quozl

23) quozl: Attack R1 Quozl

24) eliscinsky: Build G1 Eliscinsky

25) quozl: Build B2 G3

26) eliscinsky: Discover B1 Eliscinsky G3 Kronos

27) quozl: Build R2 G1

28) eliscinsky: B B2 Kronos

29) quozl: Trade B1 Y1 G3

30) eliscinsky: Sacrifice B1 Kronos
Trade Y2 R2 Talos4

31) quozl: Move R2 G1 Kronos

32) eliscinsky: Sacrifice Y1 Eliscinsky
Move B2 Kronos Talos4

33) quozl: Build B1 G3

34) eliscinsky: Build G2 Eliscinsky

35) quozl: Trade B2 G2 G3

36) eliscinsky: Trade G1 Y1 Eliscinsky

37) quozl: Build B1 G3

38) eliscinsky: Trade G2 Y2 Eliscinsky

39) quozl: Sacrifice Y2 G1
Move B1 G3 Eliscinsky
Move B1 G3 Eliscinsky

40) eliscinsky: Build R2 Talos4

41) quozl: Trade R3 Y3 Quozl

42) eliscinsky: Trade R2 Y2 Talos4

43) quozl: Sacrifice G2 G3
Build B2 Eliscinsky
Build B3 G1
Catastrophe Eliscinsky B

44) eliscinsky: B G1 Eliscinsky

45) quozl: Build R2 Kronos

46) eliscinsky: T B2 G2 Talos4

47) quozl: Trade B3 Y3 G1

48) eliscinsky: Sacrifice Y2 Eliscinsky
Move Y2 Talos4 Quozl
Move R2 Talos4 Quozl

49) quozl: Attack Y2 Quozl

50) eliscinsky: S G2 Talos4
B R3 Quozl
B R3 Quozl
C Quozl R

51) quozl: Sacrifice Y2 Quozl
Move R2 Kronos Eliscinsky
Move R2 Kronos Eliscinsky

52) eliscinsky: B Y1 Eliscinsky
	eliscinsky: This has been a fun game. While I believe I'm going to lose. I wouldn't mind another game with you another time.
	quozl: Yes, definitely! I've just gotten back into this game playing with my daughter.

53) quozl: Sacrifice Y3 G1
Move R1 G1 G3
Move R1 G3 Eliscinsky
Catastrophe Eliscinsky R
Pass

	quozl: Thank you!


36192)
Started: 2020.3.22, Ended: 2020.5.25
Participants: Draw5PlayAll (S), Simon (N)
Winner: Simon

1) Simon: Homeworld R1 B3 G3

2) Draw5PlayAll: Homeworld B1 R2 G3
	Simon: Hi! This is for the 2019 Tournament. Have fun!
	Draw5PlayAll: Another person stealing my B3R1+G3 setup?!

3) Simon: Build G1 Simon

4) Draw5PlayAll: Build G1 Draw5playall
	Simon: It is solid!

5) Simon: Trade G1 Y1 Simon

6) Draw5PlayAll: Trade G1 Y1 Draw5playall

7) Simon: Build G1 Simon

8) Draw5PlayAll: Build G1 Draw5playall

9) Simon: Trade G1 R1 Simon

10) Draw5PlayAll: Trade G1 R1 Draw5playall

11) Simon: Build R2 Simon

12) Draw5PlayAll: Build R2 Draw5playall

13) Simon: Discover R1 Simon G2 G2

14) Draw5PlayAll: Discover R1 Draw5playall G3 Rocket

15) Simon: Build R3 Simon

16) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R3 Draw5playall
Build R3 Rocket
Build Y1 Draw5playall

17) Simon: Build Y2 Simon
	Draw5PlayAll: If this does not work...

18) Draw5PlayAll: Trade R2 G2 Draw5playall

19) Simon: Discover R3 Simon B2 B2

20) Draw5PlayAll: Move Y1 Draw5playall Rocket

21) Simon: Move Y1 Simon B2

22) Draw5PlayAll: Build Y2 Draw5playall

23) Simon: Sacrifice G3 Simon
Build Y2 B2
Build Y3 Simon
Build R2 B2

24) Draw5PlayAll: Build Y3 Rocket

25) Simon: Trade Y3 G3 Simon

26) Draw5PlayAll: Discover Y1 Rocket G2 Dreams

27) Simon: Build Y3 Simon

28) Draw5PlayAll: Build Y3 Dreams

29) Simon: Sacrifice Y2 Simon
Move R1 G2 Rocket
Move R2 B2 Rocket
Catastrophe Rocket Red

30) Draw5PlayAll: Trade Y2 B2 Draw5playall

31) Simon: Trade Y2 G2 B2

32) Draw5PlayAll: Build Y2 Rocket

33) Simon: Build Y2 B2

34) Draw5PlayAll: Sacrifice B2 Draw5playall
Trade Y2 B2 Rocket
Trade Y1 R1 Dreams

35) Simon: Trade Y1 B1 B2

36) Draw5PlayAll: Build B1 Rocket

37) Simon: Discover B1 B2 G3 G3

38) Draw5PlayAll: Trade B1 R1 Rocket

39) Simon: Discover R2 Simon Y2 Y2

40) Draw5PlayAll: Sacrifice G2 Draw5playall
Build R2 Rocket
Build R3 Dreams

41) Simon: Move R3 B2 G3

42) Draw5PlayAll: Discover Y3 Dreams B3 Nolimits

43) Simon: Build Y1 B2

44) Draw5PlayAll: Move Y3 Nolimits Draw5playall

45) Simon: Move Y1 B2 G3

46) Draw5PlayAll: Trade Y1 G1 Draw5playall

47) Simon: Build G1 Simon

48) Draw5PlayAll: Discover R3 Draw5playall B3 Jackpot

49) Simon: Build B1 G3

50) Draw5PlayAll: Build Y1 Rocket

51) Simon: Move G3 Simon Y2

52) Draw5PlayAll: Move Y1 Rocket Dreams

53) Simon: Move B1 G3 Y2

54) Draw5PlayAll: Sacrifice Y1 Dreams
Move R3 Jackpot B2

55) Simon: Discover Y2 B2 B3 B3

56) Draw5PlayAll: Build Y1 Rocket

57) Simon: Sacrifice G2 B2
Build Y1 G3
Build Y2 Simon

58) Draw5PlayAll: Build G1 Draw5playall

59) Simon: Sacrifice G3 Y2
Build G2 Simon
Build B2 G3
Build B3 Y2

60) Draw5PlayAll: Move G1 Draw5playall B3

61) Simon: Move G1 Simon Y2

62) Draw5PlayAll: Move Y1 Rocket B2

63) Simon: Move B3 Y2 B3

64) Draw5PlayAll: Sacrifice G1 B3
Pass

65) Simon: Move R2 Y2 B3
	Draw5PlayAll: You did it, huh.

66) Draw5PlayAll: Discover R3 B2 G1 Peace

67) Simon: Move Y2 Simon B2
	Simon: Yeah, the green sac had to happen eventually. Was hard to see whether it was good to postpone even longer.

68) Draw5PlayAll: Move Y1 B2 Peace

69) Simon: Move G1 Y2 B3

70) Draw5PlayAll: Move R3 Peace Y2

71) Simon: Move Y1 G3 Draw5playall

72) Draw5PlayAll: Trade Y3 G3 Draw5playall

73) Simon: Build G2 B3

74) Draw5PlayAll: Sacrifice G1 Draw5playall
Build Y3 Rocket

75) Simon: Build G1 B3

76) Draw5PlayAll: Move Y3 Rocket Draw5playall

77) Simon: Sacrifice Y2 B2
Move G1 B3 Draw5playall
Move G1 B3 Draw5playall

78) Draw5PlayAll: Move B2 Rocket Draw5playall
	Draw5PlayAll: Shields up!

79) Simon: Build Y2 Draw5playall

80) Draw5PlayAll: Sacrifice Y3 Rocket
Move R3 Dreams Rocket
Move R3 Rocket Draw5playall
Discover R3 Y2 Y3 Handlimit3

81) Simon: Sacrifice Y3 Simon
Move B3 B3 Draw5playall
Move R2 B3 Draw5playall
Move R3 G3 Draw5playall
Catastrophe Draw5playall Red

82) Draw5PlayAll: Build Y3 Draw5playall
Catastrophe Draw5playall Yellow

83) Simon: Sacrifice G2 B3
Build G2 Draw5playall
Build B2 Draw5playall
Catastrophe Draw5playall G
Catastrophe Draw5playall B

	Draw5PlayAll: Catastrophe of all 4 colors within the span of 3 turns!!!
	Simon: Thanks :)


36209)
Variants: "Unrated"
Started: 2020.3.24, Ended: 2020.3.24
Participants: speardane (S), ajo (N)
Winner: ajo

1) ajo: Homeworld B3 R2 G3

2) speardane: Homeworld Y3 B1 G3

3) ajo: Build G1 Ajo

4) speardane: Build G1 Speardane

5) ajo: Trade G1 Y1 Ajo

6) speardane: Trade G3 R3 Speardane

7) ajo: Build G1 Ajo

8) speardane: Build G1 Speardane

9) ajo: Build G2 Ajo

10) speardane: Discover G1 Speardane B2 Delos

11) ajo: Discover G1 Ajo B1 Alpha

12) speardane: Build G2 Delos

13) ajo: Sacrifice G3 Ajo
Build G2 Ajo
Build G3 Ajo
Build G3 Alpha

14) speardane: Sacrifice G2 Delos
Build G2 Speardane
Build G3 Delos

15) ajo: Discover G2 Ajo Y1 Beta

16) speardane: Trade G3 Y3 Delos

17) ajo: Build G3 Beta

18) speardane: Trade G2 B2 Speardane

19) ajo: Trade G3 Y3 Alpha

20) speardane: Build G2 Delos

21) ajo: Build G3 Alpha

22) speardane: Trade G2 R2 Delos

23) ajo: Trade G3 R3 Alpha

24) speardane: Build G2 Delos

25) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build G3 Alpha
Build R1 Alpha

26) speardane: Discover G2 Delos B1 Lebling

27) ajo: Sacrifice Y3 Alpha
Move R3 Alpha Delos
Move R3 Delos Lebling
Discover G2 Ajo Y1 Gamma

28) speardane: Sacrifice G2 Lebling
Build R1 Delos
Build G2 Delos

29) ajo: Sacrifice G3 Alpha
Build G3 Alpha
Build Y2 Ajo
Build Y2 Ajo

30) speardane: Discover B2 Speardane Y2 Kotok

31) ajo: Sacrifice Y1 Ajo
Move Y2 Ajo Lebling

32) speardane: Sacrifice G2 Delos
Build B2 Kotok
Build B3 Kotok

33) ajo: Sacrifice G2 Beta
Build Y1 Lebling
Build Y3 Ajo
	ajo: I actually did not see that coming.

34) speardane: Trade B2 G2 Kotok

35) ajo: Discover Y1 Lebling B2 Delta

36) speardane: Move B3 Kotok Gamma

37) ajo: Sacrifice G2 Gamma
Build R1 Lebling
Build G2 Ajo

38) speardane: Move R2 Delos Gamma

39) ajo: Move G3 Beta Kotok

40) speardane: Move G2 Kotok Gamma

41) ajo: Sacrifice R1 Lebling
Attack B2 Kotok

42) speardane: Build B3 Gamma

43) ajo: Sacrifice G3 Ajo
Build G2 Kotok
Build G3 Ajo
Build Y1 Delta

44) speardane: Move B3 Gamma Delta

45) ajo: Sacrifice Y2 Ajo
Move Y1 Delta Speardane
Move Y1 Delta Speardane

46) speardane: Build Y2 Delos

47) ajo: Discover Y2 Lebling R2 Epsilon

48) speardane: Sacrifice Y2 Delos
Move B3 Gamma Epsilon
Move B3 Delta Gamma

49) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build B2 Kotok
Build Y2 Speardane
Catastrophe Speardane Yellow

50) speardane: Attack Y2 Epsilon

51) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build R1 Lebling
Build R3 Alpha

52) speardane: Trade R3 Y3 Speardane

53) ajo: Trade G2 Y2 Kotok

54) speardane: Build G2 Gamma

55) ajo: Sacrifice G3 Ajo
Build G3 Ajo
Build Y1 Ajo
Build R3 Lebling

56) speardane: Move R1 Delos Lebling
Catastrophe Lebling Red

57) ajo: Trade G1 B1 Alpha

58) speardane: Move G2 Gamma Epsilon

59) ajo: Sacrifice Y2 Kotok
Discover B1 Alpha Y2 Waypoint
Pass

60) speardane: Sacrifice Y3 Delos
Move Y3 Speardane Ajo
Move Y2 Epsilon Speardane
Move Y2 Speardane Ajo
Catastrophe Ajo Yellow

61) ajo: Trade G3 Y3 Ajo

62) speardane: Pass

63) ajo: Sacrifice Y3 Ajo
Move B2 Kotok Speardane
Move B2 Kotok Speardane
Move B1 Waypoint Speardane
Catastrophe Speardane Blue



36211)
Started: 2020.3.25, Ended: 2020.3.28
Participants: ajo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	Trydnt: for the tournament

2) ajo: Homeworld B2 Y1 G3
	ajo: For the tournament! Let's try a small universe for this one.

3) Trydnt: Build G1 Trydnt

4) ajo: Build G1 Ajo

5) Trydnt: Trade G1 Y1 Trydnt

6) ajo: Trade G1 R1 Ajo

7) Trydnt: Build Y2 Trydnt

8) ajo: Build G1 Ajo

9) Trydnt: Trade Y2 R2 Trydnt

10) ajo: Build G1 Ajo

11) Trydnt: Build Y2 Trydnt

12) ajo: Discover G1 Ajo Y3 Ugh

13) Trydnt: Build R1 Trydnt

14) ajo: Build R1 Ajo

15) Trydnt: Discover R1 Trydnt G3 G3

16) ajo: Discover R1 Ajo Y3 Hmm

17) Trydnt: Build R2 Trydnt

18) ajo: Sacrifice G3 Ajo
Build G1 Ajo
Build R2 Hmm
Build R3 Ajo

19) Trydnt: Build R3 G3

20) ajo: Trade R3 B3 Ajo

21) Trydnt: Trade R2 B2 Trydnt

22) ajo: Build R2 Ajo

23) Trydnt: Build R3 Trydnt

24) ajo: Move R2 Ajo Ugh

25) Trydnt: Discover Y2 Trydnt R3 R3

26) ajo: Build B1 Ajo

27) Trydnt: Sacrifice Y2 R3
Move B2 Trydnt Ugh
Move B2 Ugh Ajo
Catastrophe Ajo B

28) ajo: Build R3 Ajo

29) Trydnt: Move R3 Trydnt Ugh

30) ajo: Build G2 Ajo

31) Trydnt: Sacrifice R2 Trydnt
Attack G1 Ugh
Attack R2 Ugh

32) ajo: Discover G1 Ajo B3 Alpha

33) Trydnt: Build Y2 Trydnt

34) ajo: Trade G1 B1 Alpha

35) Trydnt: Sacrifice Y2 Trydnt
Move R1 G3 Ajo
Move R2 Ugh Ajo
Catastrophe Ajo R

	ajo: Yeah, I don't think I'm ever getting out of this one. Tournament win: Trydnt.
	Trydnt: Good game and good luck in the rest of them


36217)
Started: 2020.3.26, Ended: 2020.4.30
Participants: Joe_Hill (S), ratpfink (N)
Winner: Joe_Hill

1) ratpfink: Homeworld Y1 G2 B3

2) Joe_Hill: Homeworld Y2 G1 B3

3) ratpfink: Build B1 Ratpfink
	Joe_Hill: oh my god. that was excruciating. Wasn't there somewhere, like the now disappeared wiki that detailed to notation for this game?
	ratpfink: I think all you get is the "Below are the recognized commands" section


4) Joe_Hill: Build B1 Joe_hill

5) ratpfink: Discover B1 Ratpfink G3 Cucumber

6) Joe_Hill: Discover B1 Joe_hill Y3 Prosthesis

7) ratpfink: Build B1 Cucumber

8) Joe_Hill: Build B2 Joe_hill

9) ratpfink: Build B2 Cucumber

10) Joe_Hill: Move B2 Joe_hill Cucumber
Catastrophe Cucumber Blue

11) ratpfink: Trade B3 R3 Ratpfink
	Joe_Hill: kablooey
	ratpfink: oh i forgot about catastrophe

12) Joe_Hill: Build B1 Joe_hill
	Joe_Hill: It might be the only rule in the game I have a firm grasp on...

13) ratpfink: Build R1 Ratpfink

14) Joe_Hill: Trade B1 G1 Prosthesis

15) ratpfink: Move R3 Ratpfink Prosthesis

16) Joe_Hill: Trade B3 R3 Joe_hill

17) ratpfink: Attack G1 Prosthesis

18) Joe_Hill: Build B1 Joe_hill

19) ratpfink: Build G1 Prosthesis

20) Joe_Hill: Discover B1 Joe_hill R3 Pancake

21) ratpfink: Build R1 Prosthesis

22) Joe_Hill: Build B1 Joe_hill

23) ratpfink: Move G1 Prosthesis Ratpfink

24) Joe_Hill: Build B2 Joe_hill

25) ratpfink: Build G2 Ratpfink

26) Joe_Hill: Trade B2 G2 Joe_hill

27) ratpfink: Build R1 Ratpfink

28) Joe_Hill: Move G2 Joe_hill Pancake

29) ratpfink: Discover G1 Ratpfink Y3 Virus

30) Joe_Hill: Build B2 Pancake

31) ratpfink: Build G3 Ratpfink

32) Joe_Hill: Trade B2 Y2 Pancake

33) ratpfink: Discover R1 Ratpfink B3 Covid

34) Joe_Hill: Move G2 Pancake Ratpfink
Catastrophe Ratpfink G



36157)
Variants: "Hard time"
Started: 2020.3.26, Ended: 2020.4.7
Participants: wil (S), pould_ (N)
Winner: wil

1) pould_: Homeworld Y2 B1 G3

2) wil: H B3 Y1 G3

3) pould_: Build G1 Pould_

4) wil: B G1 Wil

5) pould_: Discover G1 Pould_ B3 Epsilon

6) wil: T G1 Y1 Wil

7) pould_: Build G1 Pould_
	wil: Ya oopsed.
	pould_: how so?

8) wil: B Y1 Wil

9) pould_: Move G1 Pould_ Epsilon
	wil: You let me take a shot at controlling the fuel industry
	wil: You let me take a shot at controlling the fuel industry

10) wil: D Y1 Wil B2 B2

11) pould_: Build G1 Pould_

12) wil: S G3 Wil
B Y2 B2
B Y2 B2
B Y3 Wil



36159)
Variants: "Hard time"
Started: 2020.3.26, Ended: 2020.4.7
Participants: pould_ (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) pould_: Homeworld Y3 B1 G3

3) Trydnt: Build G1 Trydnt

4) pould_: Build G1 Pould_

5) Trydnt: Trade G1 B1 Trydnt

6) pould_: Discover G1 Pould_ B2 Omega

7) Trydnt: Build B1 Trydnt

8) pould_: Build G1 Omega

9) Trydnt: Discover B1 Trydnt G3 G3

10) pould_: Build G1 Omega

11) Trydnt: Build B2 Trydnt

12) pould_: Trade G1 Y1 Omega

13) Trydnt: Build B3 G3

14) pould_: Trade G3 B3 Pould_

15) Trydnt: Trade B3 Y3 G3

16) pould_: Discover Y1 Omega G1 Sigma

17) Trydnt: Build B3 G3



36178)
Variants: "Unrated"
Started: 2020.3.26, Ended: 2020.4.5
Participants: pould_ (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R3 B1 G3
	Babamots: Hi! Welcome to SDG! Have you played much Homeworlds before? I see you've challenged wil and Trydnt, who are very strong players.

2) pould_: Homeworld Y1 B2 G3

3) Babamots: Build G1 Babamots
	pould_: Yes I've played before, but not very much and it was a while ago. I basically understand how the game works though

4) pould_: Build G1 Pould_

5) Babamots: Trade G1 Y1 Babamots

6) pould_: Discover G3 Pould_ B3 Theta

7) Babamots: Build Y1 Babamots

8) pould_: Build G1 Theta
	Babamots: I hope you enjoy getting reacquainted with the game. Let me know if you need any help with the command interface. I'm also happy to talk strategy if you ever want my position analysis.
	pould_: Thanks, will do!

9) Babamots: Build Y2 Babamots

10) pould_: Build G1 Pould_

11) Babamots: Build G2 Babamots

12) pould_: Trade G3 Y3 Theta

13) Babamots: Discover Y1 Babamots G2 Risa

14) pould_: Build G2 Theta

15) Babamots: Discover G2 Babamots Y2 Iconia

16) pould_: Trade G2 R2 Theta

17) Babamots: Trade Y2 R2 Babamots

18) pould_: Move R2 Theta Iconia

19) Babamots: Sacrifice R2 Babamots
Attack R2 Iconia
Pass

20) pould_: Discover Y3 Theta B2 Mu
	Babamots: Looks like you may have forgotten about red sacrifices. Having a red ship anywhere is like having a red everywhere.
	pould_: could you please explain that for me?
	Babamots: There's a special move called a "sacrifice". You put one of your ships back in the bank, but ANY ship that you control can use its power. I didn't have a red ship in Iconia, but my green ship could attack your ship once I sacrificed my red ship elsewhere.

If you sacrifice a small ship, then one of your ships can use that power one time. A sacrificed medium provides two actions of that power, etc. Since I sacrificed a medium, I could have attacked twice if there had been two of your ships available for capture (that extra action was wasted, but I didn't mind).

Here the latest version of the rules. Sacrifices are explained on page 5.

https://www.looneylabs.com/lit/rules/homeworlds-rules
	pould_: cool, thank you

21) Babamots: Discover G2 Iconia Y3 Aldea
	Babamots: It's usually considered wise to keep a large ship at your homeworld. I can't do it yet, but I'm planning to get a medium to your home as soon as possible to get your helpless smalls.

22) pould_: Build G2 Pould_
	Babamots: Another of my plans is to sacrifice my g3 to build all the remaining yellow pieces.

23) Babamots: Move G2 Aldea Pould_
Catastrophe Pould_ G
	Babamots: So, the move I should make here is to win by moving my g2 to your home and triggering the catastrophe (four pieces of the same color in the same system can be instantly destroyed by either player, see page 9).

For your education, I'll do something else, and you can look for a way to defend yourself.

	Babamots: Looks like you've disappeared on me. Let me know if you want to try again!


36221)
Variants: "Hard time"
Started: 2020.3.26, Ended: 2020.4.5
Participants: wil (S), nicknack (N)
Winner: nicknack

1) nicknack: Homeworld B3 Y2 G3

2) wil: H Y2 B1 G3

3) nicknack: Build G1 Nicknack
	wil: Thanks for the game and good luck

4) wil: B G1 Wil
	nicknack: You bet! Have fun!

5) nicknack: Trade G1 B1 Nicknack

6) wil: T G1 B1 Wil

7) nicknack: Build B2 Nicknack

8) wil: B B2 Wil

9) nicknack: Trade B2 Y2 Nicknack

10) wil: T B1 R1 Wil

11) nicknack: Build G1 Nicknack

12) wil: B G1 Wil

13) nicknack: Discover G1 Nicknack Y1 Beta

14) wil: B R1 Wil

15) nicknack: Build Y1 Nicknack

16) wil: T R1 Y1 Wil

17) nicknack: Trade Y1 R1 Nicknack

18) wil: D B2 Wil G3 G3

19) nicknack: Discover Y2 Nicknack G1 Gamma

20) wil: B G2 Wil

21) nicknack: Sacrifice Y2 Gamma
Move G1 Beta G3
Move G1 G3 Wil
Catastrophe Wil Green

22) wil: B B1 G3

23) nicknack: Build G1 Nicknack

24) wil: B B2 G3
	wil: Lol oopsie

25) nicknack: Build B2 Nicknack
	wil: Noice! Always take advantage of my stupidity!
	nicknack: Ha - I couldn't let myself ignore that opportunity.

26) wil: T B2 Y2 G3

27) nicknack: Trade B1 Y1 Nicknack
	wil: It is a must!

28) wil: T B2 G2 G3

29) nicknack: Discover Y1 Nicknack G1 Beta

30) wil: B B1 G3

31) nicknack: Move B2 Nicknack Beta

32) wil: S G2 G3
B Y1 G3
B Y3 Wil

33) nicknack: Build Y3 Beta

34) wil: T Y2 G2 G3

35) nicknack: Sacrifice Y3 Beta
Move Y1 Beta G3
Move Y1 G3 Wil
Discover B2 Beta Y3 Gamma
Catastrophe Wil Yellow

36) wil: M G2 G3 Wil

37) nicknack: Sacrifice G1 Nicknack
Build B2 Gamma

38) wil: D B1 G3 Y1 Y1
	wil: Lol, oops

39) nicknack: Trade B2 Y2 Gamma

40) wil: B B2 G3

41) nicknack: Build G1 Nicknack

42) wil: D B2 G3 Y2 Y2

43) nicknack: Sacrifice Y2 Gamma
Move G3 Nicknack Wil
Move B2 Gamma Wil
	wil: Ya toyin with like a cat torturing a mouse!
	wil: Put me outta my misery...

44) wil: B G1 Wil
	nicknack: Mustn’t rush this... mouse might escape...

45) nicknack: Sacrifice G3 Wil
Build B2 Wil
Build B3 Wil
Build B3 Wil
Catastrophe Wil Blue

	nicknack: Thanks for the game! And thanks for playing it out to the end... I need to practice my endgame...!


36229)
Started: 2020.3.26, Ended: 2020.3.26
Participants: Robizzlefoshizzle (S), marcrebillet (N)
Winner: Robizzlefoshizzle

1) marcrebillet: Homeworld G3 B2 R3

2) Robizzlefoshizzle: Homeworld G3 B2 Y3

3) marcrebillet: Build R1 Marcrebillet

4) Robizzlefoshizzle: Build Y1 Robizzlefoshizzle

5) marcrebillet: Build R1 Marcrebillet

6) Robizzlefoshizzle: Build Y1 Robizzlefoshizzle

7) marcrebillet: Build R1 Marcrebillet

8) Robizzlefoshizzle: Catastrophe Marcrebillet R

Pass



36231)
Started: 2020.3.26, Ended: 2020.5.13
Participants: lefou23 (S), kokigami (N)
Winner: lefou23

1) kokigami: Homeworld R1 G3 B3

2) lefou23: Homeworld R3 B1 G3

3) kokigami: Build B1 Kokigami

4) lefou23: Build G1 Lefou23

5) kokigami: Trade B1 Y1 Kokigami

6) lefou23: Trade G1 Y1 Lefou23

7) kokigami: Build B1 Kokigami

8) lefou23: Build G1 Lefou23

9) kokigami: Trade B1 G1 Kokigami

10) lefou23: Discover Y1 Lefou23 R2 Interopolis

11) kokigami: Build B1 Kokigami

12) lefou23: Discover Y1 Interopolis R3 Twig

13) kokigami: Build B1 Kokigami

14) lefou23: Trade G1 Y1 Lefou23

15) kokigami: Build Y2 Kokigami

16) lefou23: Build Y2 Lefou23

17) kokigami: Sacrifice Y2 Kokigami
Discover B1 Kokigami G2 Righthook
Discover B1 Kokigami G2 Lefthook

18) lefou23: Trade Y1 R1 Lefou23

19) kokigami: Build Y1 Kokigami

20) lefou23: Move R1 Lefou23 Righthook

21) kokigami: Build B2 Lefthook

22) lefou23: Attack B1 Righthook

23) kokigami: Trade B2 R2 Lefthook

24) lefou23: Build B2 Righthook

25) kokigami: Build Y2 Kokigami

26) lefou23: Build Y2 Lefou23

27) kokigami: Move Y2 Kokigami Lefthook

28) lefou23: Move Y2 Lefou23 Righthook

29) kokigami: Build Y3 Lefthook
	lefou23: Heading out for bike ride for an hour (google says). More like 90 minutes

30) lefou23: Build Y3 Lefou23

31) kokigami: Discover G1 Kokigami B2 Jab

32) lefou23: Build Y3 Righthook
	kokigami: took a long time to decide. I doubt it was a good move..  

	kokigami: happy bday as well.


33) kokigami: Sacrifice Y2 Lefthook
Move Y1 Kokigami Righthook
Move Y1 Kokigami Righthook
Catastrophe Righthook Y

34) lefou23: Trade Y3 R3 Lefou23

35) kokigami: Build Y1 Lefthook

36) lefou23: Move R3 Lefou23 Jab

37) kokigami: Sacrifice Y1 Lefthook
Move G1 Jab Kokigami

38) lefou23: Trade B1 Y1 Righthook

39) kokigami: Build R1 Lefthook

40) lefou23: Move R1 Righthook Twig

41) kokigami: Move R2 Lefthook Twig

42) lefou23: Sacrifice Y1 Twig
Discover R1 Twig Y1 Footwork

43) kokigami: Build R2 Lefthook

44) lefou23: Build B1 Righthook
	kokigami: unexpected..


45) kokigami: Build Y1 Lefthook

46) lefou23: Trade B1 G1 Righthook

47) kokigami: Sacrifice Y1 Lefthook
Move R2 Twig Righthook

48) lefou23: Sacrifice Y1 Righthook
Move B2 Righthook Footwork

49) kokigami: Sacrifice Y3 Lefthook
Move R1 Lefthook Lefou23
Move R2 Lefthook Lefou23
Move R2 Righthook Lefou23
Catastrophe Lefou23 R

50) lefou23: Build Y1 Lefou23

51) kokigami: Build G1 Kokigami

52) lefou23: Sacrifice Y1 Lefou23
Move G1 Righthook Kokigami
Catastrophe Kokigami Green

53) kokigami: Build B1 Lefthook

54) lefou23: Move B2 Footwork Lefthook

55) kokigami: Trade B1 Y1 Lefthook
	kokigami: oops
	kokigami: oops

56) lefou23: Sacrifice R3 Jab
Attack B1 Lefthook
Attack Y1 Lefthook
Pass

57) kokigami: Trade B3 G3 Kokigami

58) lefou23: Move R1 Footwork Lefthook

59) kokigami: Build G1 Kokigami
	kokigami: yep. we can play it out, but you win. guess I shoulda built another blue and killed the whole lot of blue there.. 


60) lefou23: Trade B1 G1 Lefthook
	kokigami: not sure if that was actually a legal move.. or a problem with the program


61) kokigami: Sacrifice G3 Kokigami
Build G1 Kokigami
Build G2 Kokigami
Build G2 Kokigami
Catastrophe Kokigami G
	lefou23: could be a bug.
	kokigami: still can't recover. can only build green, can't trade, can't move.. I guess it is time to concede.. with style.
	kokigami: interestingly, it will allow for that trade, but not a sacrifice g3..  conceding with less style.. 




36222)
Variants: "Unrated"
Started: 2020.3.28, Ended: 2020.4.11
Participants: Babamots (S), braveroperfrenzy (N)
Winner: Babamots

	Babamots: Welcome to the site! I think you said you had used SDG before, but I see an empty game history. Is this a new account?
	Babamots: Sorry you had trouble figuring out the site. Maybe I'll see you on TTS.


36236)
Started: 2020.3.29, Ended: 2020.6.8
Participants: Trydnt (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R2 B1 G3
	bhorner: For the tournament right?
Good luck, and have fun!

I'm tempted to switch to your opening colors, it seems to have served you well, and I think everyone always wants to move before they want to attack.  I've just always relied on starting with the (big plus red at home) safety, instead of building it later when it's needed.

I don't think now is the time to tinker with strategy though, maybe I'll learn something from this game, and then tinker with it outside the tournament.  :)

2) Trydnt: Homeworld B3 Y2 G3

3) bhorner: Build G1 Bhorner

4) Trydnt: Build G1 Trydnt

5) bhorner: Trade G1 Y1 Bhorner

6) Trydnt: Build G1 Trydnt

7) bhorner: Build Y1 Bhorner

8) Trydnt: Trade G1 Y1 Trydnt

9) bhorner: Build Y2 Bhorner

10) Trydnt: Build Y2 Trydnt

11) bhorner: Trade Y1 B1 Bhorner

12) Trydnt: Trade G1 B1 Trydnt

13) bhorner: Build B2 Bhorner

14) Trydnt: Build B2 Trydnt

15) bhorner: Discover B2 Bhorner Y3 Shiny

16) Trydnt: Discover B2 Trydnt G1 G1

17) bhorner: Discover Y1 Bhorner B3 Lake

18) Trydnt: Move Y1 Trydnt G1

19) bhorner: Discover B1 Bhorner G3 Forest

20) Trydnt: Discover B2 G1 Y3 Y3

21) bhorner: Build B2 Forest

22) Trydnt: Discover Y1 G1 B3 B3

23) bhorner: Trade B1 R1 Forest
	bhorner: Now I'm in trouble.  I felt like I had a good handle on the options until now.  Now I'll have to take a risk!
	bhorner: Thinking about it more isn't helping...  since I'm uncertain, it seems like this will probably work out badly, but here goes.  :)

24) Trydnt: Build G1 Trydnt

25) bhorner: Build B1 Forest

26) Trydnt: Trade G1 R1 Trydnt

27) bhorner: Trade B1 Y1 Forest

28) Trydnt: Trade B2 G2 Y3

29) bhorner: Build Y3 Forest

30) Trydnt: Sacrifice G2 Y3
Build Y3 B3
Build G1 Trydnt

31) bhorner: Trade Y3 R3 Forest

32) Trydnt: Sacrifice Y2 Trydnt
Discover Y3 B3 G1 G1
Move B1 Trydnt G1

33) bhorner: Trade B2 G2 Shiny

34) Trydnt: Discover G1 Trydnt B1 B1

35) bhorner: Build G1 Bhorner

36) Trydnt: Build G2 Trydnt

37) bhorner: Discover G1 Bhorner Y3 Shinier

38) Trydnt: Sacrifice G3 Trydnt
Build G2 B1
Build B2 G1
Build G3 Trydnt

39) bhorner: Sacrifice G2 Shiny
Build Y2 Forest
Build Y3 Lake

40) Trydnt: Sacrifice Y1 B3
Move G2 B1 Shinier

41) bhorner: Move R3 Forest B1

42) Trydnt: Move B2 G1 Shinier

43) bhorner: Discover G3 Bhorner B3 Loch

44) Trydnt: Sacrifice G3 Trydnt
Build G2 Shinier
Build G3 Trydnt
Build B2 G1

45) bhorner: Attack G1 B1

46) Trydnt: Discover G2 Trydnt Y1 Y1

47) bhorner: Sacrifice G3 Loch
Build G3 B1
Build B3 Forest
Pass

48) Trydnt: Trade G2 R2 Shinier

49) bhorner: Trade Y3 R3 Lake

50) Trydnt: Discover B2 G1 Y3 Y3

51) bhorner: Move B3 Forest Y1

52) Trydnt: Move Y3 G1 Forest

53) bhorner: Move R3 Lake Bhorner

54) Trydnt: Move G2 Y1 Lake

55) bhorner: Move B3 Y1 Shinier

56) Trydnt: Sacrifice G2 Shinier
Build R1 Shinier
Build R2 Trydnt

57) bhorner: Sacrifice R1 Forest
Attack R2 Shinier

58) Trydnt: Discover R1 Trydnt Y1 Y1

59) bhorner: Sacrifice R2 Shinier
Attack B2 Shinier
Attack R1 Shinier

60) Trydnt: Trade B2 R2 Y3

61) bhorner: Sacrifice Y1 Lake
Move G3 B1 Y3

62) Trydnt: Sacrifice R2 Y3
Attack Y2 Forest
Attack B2 Forest

63) bhorner: Sacrifice G3 Y3
Build Y1 Forest
Build Y3 Bhorner
Build G2 B1
Catastrophe Forest Y

64) Trydnt: Sacrifice G2 Lake
Build B2 G1
Build B3 Forest

65) bhorner: Discover G1 Shinier R1 Spark

66) Trydnt: Trade B3 Y3 Forest

67) bhorner: Sacrifice Y3 Bhorner
Move G1 Spark Trydnt
Move G2 B1 Trydnt
Move G1 B1 Trydnt
Catastrophe Trydnt G

68) Trydnt: Trade B2 R2 Forest

69) bhorner: Sacrifice Y2 Bhorner
Move B3 Shinier Bhorner
Move R3 B1 Trydnt
	bhorner: There is a lot going on here...  I keep wondering what percentage of it I'm aware of...

70) Trydnt: Sacrifice Y3 Forest
Move R2 Forest Bhorner
Move R1 Y1 Shinier
Move R1 Shinier Bhorner
Catastrophe Bhorner R
	Trydnt: well that makes two of us

71) bhorner: Attack R2 Trydnt

	Trydnt: well played!
	bhorner: I'm glad you say so.  :)
I've wondered if there were better moves along the way.  I was completely focused on maintaining a material advantage until I could see an opening.  I hope I didn't detract with the slow moving, this was the hardest thinking game of homeworlds I've ever played!

Thanks very much for the game!
	Trydnt: Definitely, keep it up you're improving a lot. Obviously always good to keep eyes peeled for easy wins/exploits but yeah focusing on the material advantage is the best way. I should have just frozen you out of the blue right at the start by taking homeworld y2 b1 b3 but the blue freezout is never a fun game. Something to be aware of though, if you take a b1 in your homeworld it will usually cost you the game. Until next time :)
	Trydnt: homeworld g2 b1 b3
	bhorner: I actually wanted you to try to freeze me out of blue, but your homeworld selection is not what I expected.  I'll look into it!  :)


36238)
Variants: "Unrated"
Started: 2020.3.29, Ended: 2020.3.29
Participants: Babamots (S), Pib (N)
Winner: Babamots

1) Pib: Pass
	Pib: This is a test of whether SDG allows multiple passing turns before creating the homeworld.

2) Babamots: Pass

3) Pib: Pass

4) Babamots: Pass

5) Pib: Pass

6) Babamots: Homeworld G1 Y1 B3 *
	Babamots: Looks like there's no limit to the number of times players can pass at the bgeinning.

7) Pib: Pass

8) Babamots: Build B1 Babamots

9) Pib: Pass

10) Babamots: Build B1 Babamots

11) Pib: Pass

12) Babamots: Trade B1 G1 Babamots

13) Pib: Pass

14) Babamots: Build G1 Babamots

15) Pib: Pass

16) Babamots: Trade B1 Y1 Babamots

17) Pib: Pass

18) Babamots: Build Y1 Babamots

19) Pib: Pass

20) Babamots: Discover Y1 Babamots G3 Risa

21) Pib: Pass

	Babamots: At this point, I attempted the move

sacrifice b3 Babamots
trade y1 g1 Risa
trade g1 y1 Babamots
pass

Unsurprisingly, SDG does not let you swap the positions of two ships by blue sacrifice if the bank doesn't allow either trade individually.


36237)
Started: 2020.3.30, Ended: 2020.4.24
Participants: Trydnt (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B1 G3

2) Trydnt: Homeworld B2 Y1 G3
	goulo: hi, tourney game, have fun!
	goulo: I filled out the form at the tourney page.

3) goulo: Build G1 Goulo

4) Trydnt: Build G1 Trydnt

5) goulo: Trade G1 Y1 Goulo

6) Trydnt: Trade G1 B1 Trydnt

7) goulo: Build Y1 Goulo

8) Trydnt: Build B1 Trydnt

9) goulo: Build Y2 Goulo

10) Trydnt: Discover B1 Trydnt G3 G3

11) goulo: Trade Y2 B2 Goulo

12) Trydnt: Sacrifice G3 Trydnt
Build B2 G3
Build B3 G3
Build B3 Trydnt

13) goulo: Build B3 Goulo

14) Trydnt: Trade B3 Y3 G3

15) goulo: Discover B2 Goulo Y2 Flavo

16) Trydnt: Trade B3 G3 Trydnt

17) goulo: Trade B2 R2 Flavo

18) Trydnt: Trade B2 R2 G3

19) goulo: Build G1 Goulo

20) Trydnt: Build Y2 G3

21) goulo: Build Y2 Goulo

22) Trydnt: Discover Y2 G3 G1 G1

23) goulo: Discover Y2 Goulo G2 Verdo

24) Trydnt: Build Y3 G1

25) goulo: Build Y3 Verdo

26) Trydnt: Build B2 G3

27) goulo: Move B3 Goulo Flavo

28) Trydnt: Move B1 G3 G1

29) goulo: Move G1 Goulo Flavo

30) Trydnt: Trade B1 R1 Trydnt

31) goulo: Build G1 Flavo

32) Trydnt: Build G2 Trydnt

33) goulo: Build G2 Goulo

34) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R1 G3
Build B1 G1

35) goulo: Sacrifice G3 Goulo
Build G3 Goulo
Build B2 Flavo
Build R1 Flavo

36) Trydnt: Sacrifice Y2 G1
Move B1 G1 Flavo
Move B1 G1 Flavo
Catastrophe Flavo B

37) goulo: Discover G1 Flavo B3 Bluego

38) Trydnt: Sacrifice G2 Trydnt
Build B1 G3
Build Y2 G1

39) goulo: Trade G1 B1 Bluego

40) Trydnt: Build G1 Trydnt

41) goulo: Sacrifice G3 Goulo
Build G2 Goulo
Build G3 Goulo
Build B2 Bluego

42) Trydnt: Sacrifice Y2 G1
Move B1 G3 G1
Move B1 G1 Bluego
Catastrophe Bluego B

43) goulo: Build Y2 Goulo

44) Trydnt: Build B1 G3

45) goulo: Trade G2 B2 Goulo

46) Trydnt: Discover B2 G3 G2 G2

47) goulo: Move B2 Goulo Verdo

48) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B1 G3
Build B3 G2

49) goulo: Build B3 Verdo

50) Trydnt: Trade B2 R2 G2

51) goulo: Discover B3 Verdo R3 Rubenego

52) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 G2
Build B2 G2

53) goulo: Sacrifice G2 Goulo
Build G2 Goulo
Build B3 Rubenego

54) Trydnt: Move Y3 G1 G2

55) goulo: Move Y1 Goulo Flavo

56) Trydnt: Move R3 G2 Goulo

57) goulo: Attack R3 Goulo

58) Trydnt: Sacrifice Y3 G2
Move R2 G2 Goulo
Move R1 G3 G2
Move R1 G2 Goulo
Catastrophe Goulo R

59) goulo: Sacrifice Y3 Verdo
Move G3 Goulo G3
Move G2 Goulo G3
Move G1 Flavo G3
Catastrophe G3 G

60) Trydnt: Trade B2 R2 G2

61) goulo: Build Y3 Verdo

62) Trydnt: Trade B3 Y3 G2

63) goulo: Build Y3 Verdo

64) Trydnt: Build R1 Trydnt

65) goulo: Trade B3 G3 Rubenego

66) Trydnt: Sacrifice Y3 G2
Move G3 Trydnt Rubenego
Move G3 Rubenego Goulo
Discover R1 Trydnt Y3 Y3

67) goulo: Sacrifice Y3 Verdo
Move G3 Rubenego Trydnt
Move B2 Verdo Goulo
Move Y2 Verdo Goulo

68) Trydnt: Build G1 Trydnt

69) goulo: Sacrifice R2 Flavo
Attack R1 Trydnt
Attack G1 Trydnt

70) Trydnt: Sacrifice R2 G2
Attack G1 Trydnt
Attack R1 Trydnt

71) goulo: Sacrifice B3 Rubenego
Trade Y3 R3 Verdo
Trade Y2 R2 Goulo
Trade G3 Y3 Trydnt

72) Trydnt: Build R2 Trydnt

73) goulo: Sacrifice R3 Verdo
Attack R2 Trydnt
Attack R1 Trydnt
Attack G1 Trydnt

74) Trydnt: Sacrifice R1 Y3
Attack B2 Goulo

75) goulo: Attack G1 Trydnt

	goulo: Thanks, great game. Man, that was dramatic / tense. :)
	Trydnt: Amazing game! That was a very interesting ending. One wrong move and I think I might have stolen the win. You played it perfectly to the last


36249)
Variants: "Hard time"
Started: 2020.4.1, Ended: 2020.5.2
Participants: Babamots (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	Babamots: Well, I've enjoyed my first time at the top of the ladder, but I suspect that you're more deserving. Good luck!

2) Babamots: Homeworld B3 R1 G3

3) Trydnt: Build G1 Trydnt

4) Babamots: Build G1 Babamots

5) Trydnt: Trade G1 R1 Trydnt

6) Babamots: Trade G1 Y1 Babamots

7) Trydnt: Build R1 Trydnt

8) Babamots: Build Y1 Babamots

9) Trydnt: Build R2 Trydnt

10) Babamots: Build Y2 Babamots

11) Trydnt: Trade R2 Y2 Trydnt

12) Babamots: Discover Y1 Babamots B2 Bolarus

13) Trydnt: Discover Y2 Trydnt G3 G3

14) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build Y3 Bolarus
Build Y3 Babamots

15) Trydnt: Move Y2 G3 Bolarus
Catastrophe Bolarus Y

16) Babamots: Trade Y3 G3 Babamots

17) Trydnt: Build R2 Trydnt

18) Babamots: Build Y1 Babamots

19) Trydnt: Discover R2 Trydnt Y3 Y3
	Trydnt: Whatever the outcome, it is always great to play against someone as skilled as you

20) Babamots: Discover Y1 Babamots G2 Risa
	Babamots: I hope to give you an enjoyable challenge :-D

21) Trydnt: Build R2 Trydnt

22) Babamots: Trade Y2 R2 Babamots

23) Trydnt: Trade R2 Y2 Trydnt

24) Babamots: Build Y2 Risa

25) Trydnt: Discover R1 Trydnt Y3 Why3

26) Babamots: Build Y2 Babamots

27) Trydnt: Discover Y2 Trydnt Y3 Because3

28) Babamots: Move R2 Babamots Risa

29) Trydnt: Build G1 Trydnt

30) Babamots: Build G1 Babamots

31) Trydnt: Trade G1 B1 Trydnt

32) Babamots: Trade G1 B1 Babamots

33) Trydnt: Build G1 Trydnt

34) Babamots: Move B1 Babamots Risa

35) Trydnt: Move B1 Trydnt Y3

36) Babamots: Build B1 Risa

37) Trydnt: Sacrifice G1 Trydnt
Build B2 Y3

38) Babamots: Discover B1 Risa G3 Betazed
	Babamots: I really wanted to find something tricky here, but I couldn't see anything better.

39) Trydnt: Trade B1 G1 Y3

40) Babamots: Discover Y1 Babamots B2 Bolarus

41) Trydnt: Build G1 Trydnt

42) Babamots: Sacrifice G3 Babamots
Build B1 Betazed
Build B3 Betazed
Build B3 Risa

43) Trydnt: Sacrifice G3 Trydnt
Build R2 Why3
Build R3 Y3
Build R3 Trydnt

44) Babamots: Sacrifice Y2 Risa
Move B3 Betazed Risa
Move B3 Risa Babamots

45) Trydnt: Move R2 Why3 Bolarus

46) Babamots: Discover Y1 Bolarus R3 Romulus

47) Trydnt: Discover R2 Y3 Y2 Y2

48) Babamots: Move R2 Risa Why3

49) Trydnt: Trade R3 G3 Trydnt

50) Babamots: Discover B1 Risa R3 Cardassia

51) Trydnt: Discover R1 Why3 G2 G2

52) Babamots: Sacrifice B1 Cardassia
Trade B3 R3 Risa

53) Trydnt: Sacrifice G3 Trydnt
Build G1 Y3
Build G2 Y3
Build G3 Trydnt

54) Babamots: Move R3 Risa Because3

55) Trydnt: Sacrifice Y2 Because3
Move G2 Y3 Risa
Discover R2 Y2 G3 G3

56) Babamots: Move R3 Because3 Risa

57) Trydnt: Move G1 Y3 Risa

58) Babamots: Sacrifice Y1 Risa
Move R3 Risa Betazed

59) Trydnt: Trade R2 Y2 Bolarus

60) Babamots: Trade R3 Y3 Betazed
	Trydnt: Do you have a name for this situation? I call them poisoned stars
	Trydnt: Mostly because in Ice Towers I called towers poisoned towers when they had two pieces of the same color at the top and the top one was small since anyone who put a piece on top of those would immediately lose that piece to a split
	Babamots: I don't have any other name for it, so poisoned star sounds pretty good. Got any other terms that should go in my glossary? I'm assembling on here:

https://jpeterbaker.github.io/homeworlds/site/glossary.html

61) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R2 Trydnt
Build R3 G2
	Draw5PlayAll: - "Crash" an investment (e.g. my G1 is investing at a star, so you send your R2)
- Banker, Goldilocks, Fortress
- Borg: A large ship (usually red) sent to a peripheral system of only smalls and mediums (or a medium sent to a system of all smalls). Resistance is not entirely futile because you can often sac one of the ships and move others away, but it is still annoying.
- "Undermine": blowing up a populated enemy colony by sending in 3 ships to explode the star. I always envision this as sending in smalls and mediums to destroy a system with 1-2 larges because you can't use a Borg.
- "Slow Undermine": the above, but in 2 separate turns; like the Borg, the opponent has 1 turn to evacuate as many ships as possible.

"Gilligans" can also be useful outposts for trying to destroy your opponent's red star.
	Trydnt: There is a super-slow undermine too where you can move all three in one at a time so long as the second one big enough to attack all the ships there (and you have red) so they're forced to attack it and can't move out the first one. It's a good way to clinch a win if you are short on Y3 pieces in the late game
	Trydnt: I always called crash a hostile takeover
	Trydnt: Wil and I called stars that neither could access from their homeworlds no man's land. Might be worth including with a mention that depending on which half of their star you blow up that star might now be closer to their homeworld. Also since you can get to both your colonies and your opponents colonies from there, having two ships of the same color in no man's land, along with a y2 piece means you can sac the y2 and move them to any colony to destroy 2 opponent ships of that same color.

62) Babamots: Discover R2 Why3 Y2 Iconia

63) Trydnt: Sacrifice B2 Y3
Trade R3 Y3 G2
Trade R1 B1 G2

64) Babamots: Build Y1 Betazed
	Babamots: I may want to take a couple of days to come back to this with a fresh perspective. I've started to have dreams about this game, which always means I've been overthinking.
	Trydnt: If I'm feeling particularly stuck sometimes I'll build the universe with my pyramids and see if that helps me see any new pathways. The chaotic arrangement of tiles on SDG can obscure some things

65) Trydnt: Sacrifice Y3 G2
Move G1 Risa Betazed
Move G2 Risa Betazed
Move G1 Trydnt Betazed
Catastrophe Betazed G
	Babamots: I set up the pyramids sometimes if I need to explore lots of possible futures. I can usually work through "feeling stuck" on SDG's display.

	Babamots: Shoot, I wish I'd been in position to move when you made that first move. Well, I think that's me done in. GG!
	Trydnt: well played. this seemed the slower route to victory but definitely more certain


36175)
Variants: "Hard time"
Started: 2020.4.4, Ended: 2020.4.28
Participants: dlwillson (S), nicknack (N)
Winner: dlwillson

1) nicknack: Homeworld B3 Y2 G3

2) dlwillson: H R1 B3 G3 Dlwillson

3) nicknack: Build G1 Nicknack
	dlwillson: TaGLHF

4) dlwillson: B G1 Dlwillson

5) nicknack: Trade G1 B1 Nicknack

6) dlwillson: T G1 Y1 Dlwillson

7) nicknack: Build G1 Nicknack

8) dlwillson: B Y1 Dlwillson

9) nicknack: Trade G1 Y1 Nicknack

10) dlwillson: T Y1 B1 Dlwillson

11) nicknack: Discover Y1 Nicknack G1 Beta

12) dlwillson: B G1 Dlwillson

13) nicknack: Build G1 Nicknack

14) dlwillson: Trade G1 R1 Dlwillson

15) nicknack: Trade G1 R1 Nicknack

16) dlwillson: B G1 Dlwillson

17) nicknack: Build R2 Nicknack

18) dlwillson: B R2 Dlwillson

19) nicknack: Move R2 Nicknack Beta

20) dlwillson: T R1 Y1 Dlwillson

21) nicknack: Build Y2 Beta

22) dlwillson: D Y1 Dlwillson G2 Field

23) nicknack: Move Y1 Beta Field

24) dlwillson: M R2 Dlwillson Field

25) nicknack: Build Y2 Beta

26) dlwillson: B Y3 Dlwillson

27) nicknack: Discover Y2 Beta G2 Gamma

28) dlwillson: D Y1 Field B1 Sky

29) nicknack: Build Y3 Beta

30) dlwillson: S G1 Dlwillson
B Y3 Sky

31) nicknack: Discover Y2 Beta B2 Delta

32) dlwillson: A Y1 Field

33) nicknack: Move B1 Nicknack Beta

34) dlwillson: Trade Y1 G1 Sky

35) nicknack: Build Y1 Gamma

36) dlwillson: B G1 Dlwillson

37) nicknack: Sacrifice Y2 Gamma
Move Y1 Gamma Dlwillson
Move Y2 Delta Dlwillson
Catastrophe Dlwillson Yellow

38) dlwillson: S G3 Dlwillson
B G2 Sky
B G2 Sky
B G3 Dlwillson

39) nicknack: Build B2 Beta

40) dlwillson: T G2 R2 Sky

41) nicknack: Discover B1 Beta G3 Gamma

42) dlwillson: S G3 Dlwillson
B Y1 Sky
B G2 Sky
B G3 Dlwillson

43) nicknack: Trade G3 B3 Nicknack

44) dlwillson: S G2 Sky
B G2 Dlwillson
B G3 Sky

45) nicknack: Build B2 Beta

46) dlwillson: T G3 Y3 Sky

47) nicknack: Trade B3 G3 Nicknack

48) dlwillson: M G2 Sky Nicknack

49) nicknack: Attack G2 Nicknack

50) dlwillson: Sacrifice Y3 Sky
Move G3 Dlwillson Field
Move G3 Field Sky
Move G3 Sky Nicknack

51) nicknack: Sacrifice G3 Nicknack
Build G3 Nicknack
Build R1 Nicknack
Build R3 Nicknack

52) dlwillson: S Y3 Sky
M G1 Sky Nicknack
M R2 Sky Nicknack
M Y1 Sky Nicknack
C Nicknack G
C Nicknack R

	nicknack: Go for it - Thanks for the game!
	dlwillson: Thank you! Good game!


36261)
Variants: "Hard time"
Started: 2020.4.4, Ended: 2020.5.23
Participants: dlwillson (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) dlwillson: H R2 B1 G3 Dlwillson
	Draw5PlayAll: I can get to #1 on the ladder but I am not good at staying there...

3) Draw5PlayAll: Build G1 Draw5playall
	dlwillson: Thanks for taking my challenge!

4) dlwillson: B G1 Dlwillson

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) dlwillson: T G1 Y1 Dlwillson

7) Draw5PlayAll: Build G1 Draw5playall

8) dlwillson: B G1 Dlwillson

9) Draw5PlayAll: Trade G1 R1 Draw5playall

10) dlwillson: T G1 R1 Dlwillson

11) Draw5PlayAll: Build R2 Draw5playall

12) dlwillson: B R2 Dlwillson

13) Draw5PlayAll: Discover R2 Draw5playall G2 Rocket

14) dlwillson: Trade R1 B1 Dlwillson

15) Draw5PlayAll: Trade R1 B1 Draw5playall

16) dlwillson: B G1 Dlwillson

17) Draw5PlayAll: Build G1 Draw5playall

18) dlwillson: B R1 Dlwillson

19) Draw5PlayAll: Trade G1 R1 Draw5playall

20) dlwillson: T R2 Y2 Dlwillson

21) Draw5PlayAll: Build B2 Draw5playall

22) dlwillson: D Y1 Dlwillson B3 Sea

23) Draw5PlayAll: Move B2 Draw5playall Rocket

24) dlwillson: B B2 Dlwillson

25) Draw5PlayAll: Discover B1 Draw5playall G2 Dreams

26) dlwillson: T B2 Y2 Dlwillson

27) Draw5PlayAll: Build B2 Dreams

28) dlwillson: D Y2 Dlwillson B3 Alsosea

29) Draw5PlayAll: Trade B2 R2 Dreams
	Draw5PlayAll: "Also sea"?

30) dlwillson: Sacrifice G3 Dlwillson
Build Y1 Dlwillson
Build Y2 Sea
Build Y3 Alsosea

31) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y3 Draw5playall
Build R3 Dreams
Build R3 Rocket
	dlwillson: Yeah. Sorry for the uncreative name. I guess it could have been lake, ocean, or something.

32) dlwillson: B Y3 Dlwillson
	Draw5PlayAll: Red vs yellow huh...

33) Draw5PlayAll: Move Y1 Draw5playall Dreams
	dlwillson: Yep. I'm rooting for yellow! :-)

34) dlwillson: Trade Y3 G3 Dlwillson

35) Draw5PlayAll: Build Y3 Dreams

36) dlwillson: T Y3 R3 Alsosea

37) Draw5PlayAll: Move R3 Dreams Sea

38) dlwillson: D Y2 Sea B2 Sky

39) Draw5PlayAll: Attack Y1 Sea

40) dlwillson: Sacrifice G1 Dlwillson
Build Y3 Sky

41) Draw5PlayAll: Move Y1 Dreams Sea

42) dlwillson: Build G1 Dlwillson

43) Draw5PlayAll: Trade Y1 G1 Sea

44) dlwillson: Move G1 Dlwillson Alsosea

45) Draw5PlayAll: Build G1 Sea

46) dlwillson: T Y3 G3 Sky

47) Draw5PlayAll: Build B2 Dreams

48) dlwillson: S Y2 Dlwillson
M R1 Dlwillson Sea
M R1 Sea Sky

49) Draw5PlayAll: Move R2 Dreams Sea

50) dlwillson: B G2 Alsosea

51) Draw5PlayAll: Move R3 Sea Dlwillson

52) dlwillson: A R3 Dlwillson

53) Draw5PlayAll: Sacrifice Y3 Dreams
Move R2 Sea Dlwillson
Move R2 Rocket Sea
Move R2 Sea Dlwillson
Catastrophe Dlwillson Red
	Draw5PlayAll: Engage!

	Draw5PlayAll: You go challenge Babamots. I am going for #1 again.


36252)
Variants: "Unrated"
Started: 2020.4.6, Ended: 2020.4.24
Participants: eliscinsky (S), SubatomicAura (N)
Winner: eliscinsky

1) SubatomicAura: Homeworld R1 B2 G3

2) eliscinsky: H R2 B3 G3
	eliscinsky: Greetings SubatomicAura, GLHF

3) SubatomicAura: Build G1 Subatomicaura

4) eliscinsky: B G1 Eliscinsky

5) SubatomicAura: Trade G1 R1 Subatomicaura

6) eliscinsky: Trade G1 R1 Eliscinsky

7) SubatomicAura: Build R2 Subatomicaura

8) eliscinsky: Build R2 Eliscinsky

9) SubatomicAura: Trade R1 Y1 Subatomicaura

10) eliscinsky: Trade R1 Y1 Eliscinsky

11) SubatomicAura: Build R1 Subatomicaura

12) eliscinsky: Build R1 Eliscinsky

13) SubatomicAura: Trade R2 B2 Subatomicaura

14) eliscinsky: T R2 B2 Eliscinsky

15) SubatomicAura: Build R2 Subatomicaura

16) eliscinsky: Build R2 Eliscinsky

17) SubatomicAura: Trade R1 G1 Subatomicaura

18) eliscinsky: Build G1 Eliscinsky

19) SubatomicAura: Build B1 Subatomicaura

20) eliscinsky: T R2 Y2 Eliscinsky

21) SubatomicAura: Trade B2 Y2 Subatomicaura

22) eliscinsky: D Y2 Eliscinsky G1 Kronos

	eliscinsky: SubatomicAura are you still in the game?


36276)
Variants: "Hard time"
Started: 2020.4.6, Ended: 2020.4.24
Participants: Felix (S), deanthebean (N)
Winner: Felix

1) deanthebean: Homeworld B1 R2 G3

2) Felix: Homeworld Y1 B3 G3
	deanthebean: Thank you for accepting the challenge. Have fun!

3) deanthebean: Build G1 Deanthebean
	Felix: No prob, you have fun too!

4) Felix: Build G1 Felix
	deanthebean: Thank you!

5) deanthebean: Trade G1 Y1 Deanthebean

6) Felix: Trade G1 Y1 Felix

7) deanthebean: Build Y2 Deanthebean

8) Felix: Build Y2 Felix

9) deanthebean: Build Y2 Deanthebean

10) Felix: Discover Y1 Felix G2 Out

11) deanthebean: Discover Y1 Deanthebean G3 In

12) Felix: Build Y3 Out

13) deanthebean: Build Y3 In

14) Felix: Move Y1 Out In

15) deanthebean: Trade Y2 B2 Deanthebean

16) Felix: Build Y2 In
Catastrophe In Yellow

17) deanthebean: Build G1 Deanthebean

18) Felix: Build G1 Felix

19) deanthebean: Build Y1 Deanthebean

20) Felix: Trade G1 B1 Felix

21) deanthebean: Trade G1 R1 Deanthebean

22) Felix: Build B1 Felix

23) deanthebean: Build B2 Deanthebean

24) Felix: Sacrifice Y3 Out
Discover B1 Felix Y2 Move1
Discover B1 Move1 Y3 Move2
Move B1 Move2 Deanthebean
Catastrophe Deanthebean Blue

25) deanthebean: Move Y1 Deanthebean Felix

26) Felix: Trade Y2 R2 Felix

27) deanthebean: Build G1 Deanthebean

28) Felix: Attack Y1 Felix

29) deanthebean: Build Y1 Deanthebean
	Felix: I think you might have had me if you had moved your g3 to my homeworld a couple turns ago instead of the y1. I'm pretty sure I left myself open to a killing attack since I had no red at the time, but I'm not sure how it would have played out...
	deanthebean: That's a good point. Unfortunately it didn't occur to me. 

30) Felix: Build R1 Felix
	Felix: Yeah, it's typically a bad idea to move your large ship from your homeworld, so I don't often think of moves like that either, but sometimes it's worth considering!

31) deanthebean: Discover Y1 Deanthebean B1 Commerce

32) Felix: Discover Y1 Felix G2 G2

33) deanthebean: Move G1 Deanthebean Commerce

34) Felix: Build Y2 G2

35) deanthebean: Build Y2 Commerce

36) Felix: Sacrifice Y2 G2
Move R1 Felix Deanthebean
Move R2 Felix Deanthebean
Catastrophe Deanthebean Red
	Felix: Good game! Thanks for the challenge :)
	deanthebean: Thank you and congrats



36235)
Started: 2020.4.7, Ended: 2020.4.21
Participants: ajo (S), wil (N)
Winner: ajo

1) wil: H Y2 B1 G3

2) ajo: Homeworld Y1 B2 G3

3) wil: B G1 Wil
	ajo: For the Great Homeworlds Tournament of 2019, agreed?
	wil: Great short uni!

4) ajo: Build G1 Ajo

5) wil: T G1 Y1 Wil

6) ajo: Trade G1 B1 Ajo

7) wil: B Y1 Wil

8) ajo: Build B1 Ajo

9) wil: D Y1 Wil B3 B3

10) ajo: Discover B1 Ajo G3 Alpha

11) wil: S G3 Wil
B Y2 B3
B Y2 B3
B Y3 Wil

12) ajo: Sacrifice G3 Ajo
Build B2 Alpha
Build B2 Alpha
Build B3 Ajo
	ajo: As usual, I didn't see that coming. But two can play that game!

13) wil: M Y1 Wil Alpha

14) ajo: Trade B2 R2 Alpha

15) wil: B Y3 Alpha

16) ajo: Attack Y1 Alpha

17) wil: B Y3 Alpha

18) ajo: Trade B3 G3 Ajo
	wil: I havent thought this out
	wil: Lol,.tried to build at aloha

19) wil: M Y3 Alpha Ajo

20) ajo: Move Y1 Alpha Wil

21) wil: T Y3 R3 Wil

22) ajo: Move Y1 Wil B3
Catastrophe B3 Yellow
	wil: I love the bizzarro games!

23) wil: D Y3 Ajo G3 G3
	ajo: I'm pretty sure you came out on top of that exchange, but that was fun. ;) Question is, do you retreat and regroup, or keep up the frontal assault?

24) ajo: Trade B2 Y2 Alpha
	wil: Assault over my 3 Queens will rebuild

25) wil: B Y1 G3

26) ajo: Build Y1 Alpha

27) wil: D Y3 Alpha G2 G2

28) ajo: Discover Y2 Alpha B2 Beta

29) wil: M Y1 G3 Wil

30) ajo: Sacrifice G3 Ajo
Build B2 Alpha
Build B3 Alpha
Build B3 Ajo
	ajo: Uh-oh, looks like school's back in session! :)

31) wil: T Y1 G1 Wil

32) ajo: Trade B3 G3 Ajo

33) wil: B R1 Wil

34) ajo: Build B3 Ajo

35) wil: M R1 Wil G3

36) ajo: Trade B3 R3 Ajo

37) wil: B R1 G3

38) ajo: Build B3 Ajo

39) wil: B G1 Wil
	wil: I think it is inevitable, you should concede now, before you embarrass...me.

40) ajo: Move B2 Alpha Beta

41) wil: D G1 Wil Y3 Y3
	ajo: Heh. :) I feel like you had a few chances to move to blue systems, that you should have taken. And before my "school's back in" comment, you gave me quite a number of "summer vacation" turns where I didn't have to worry about attacks (you couldn't sac your r3, and you couldn't build at home because you lacked green). ...But I'm not relaxing yet. It's a claustrophobic game and neither of us has lost a star yet.

42) ajo: Build B3 Alpha

43) wil: B Y1 G3

44) ajo: Sacrifice Y2 Beta
Move B3 Alpha Wil
Move B3 Alpha Wil

45) wil: M R3 Wil Y3
	wil: I'm giving you one last chance to concede!

46) ajo: Sacrifice R2 Alpha
Attack G1 Wil
Pass
	ajo: Good game :)
	wil: To proud to concede eh, I knew it.  Gg



36228)
Variants: "Hard time"
Started: 2020.4.13, Ended: 2020.4.25
Participants: wil (S), amoscai (N)
Winner: wil

1) amoscai: Homeworld B1 Y2 G3

2) wil: H B3 Y1 G3

3) amoscai: Build G1 Amoscai

4) wil: B G1 Wil

5) amoscai: Discover G1 Amoscai Y3 Dub

6) wil: T G1 Y1 Wil

7) amoscai: Build G1 Dub

8) wil: B Y1 Wil

9) amoscai: Build G1 Amoscai

10) wil: D Y1 Wil B2 B2

11) amoscai: Build G2 Amoscai

12) wil: S G3 Wil
B Y2 B2
B Y2 B2
B Y3 Wil

13) amoscai: Trade G3 Y3 Amoscai

14) wil: M Y2 B2 Dub

15) amoscai: Move Y3 Amoscai Dub

16) wil: M Y1 B2 Dub
C Dub Y

17) amoscai: Trade G2 Y2 Amoscai

18) wil: D Y2 B2 G3 G3

19) amoscai: Build G1 Amoscai

20) wil: B Y1 G3

21) amoscai: Build G1 Amoscai

22) wil: D Y1 Wil G2 G2

23) amoscai: Discover Y2 Amoscai G3 Great

24) wil: B Y3 G3

25) amoscai: Build Y3 Great

26) wil: M Y3 G3 Amoscai

27) amoscai: Trade G1 R1 Amoscai

28) wil: T Y3 G3 Wil

29) amoscai: Build R1 Amoscai

30) wil: T G3 R3 Wil

31) amoscai: Discover Y3 Great R2 Super

32) wil: B Y3 G2

33) amoscai: Build R1 Amoscai

34) wil: M Y3 G2 Wil

35) amoscai: Move R1 Amoscai G3

36) wil: S R3 Wil
A R1 G3
A R1 Amoscai
A R1 Amoscai

	wil: Gg, challenge anytime....took me a while to get there...here...since I Amit there yet!
	amoscai: gg


36223)
Variants: "Hard time"
Started: 2020.4.14, Ended: 2020.4.28
Participants: Trydnt (S), thecolorbrown (N)
Winner: Trydnt

1) thecolorbrown: Homeworld G1 B2 Y3

2) Trydnt: Homeworld B3 R2 G3

3) thecolorbrown: Build Y1 Thecolorbrown

4) Trydnt: Build G1 Trydnt
	Trydnt: Welcome! New to the game or the site?

5) thecolorbrown: Trade Y1 R1 Thecolorbrown
	thecolorbrown: I am new! Been lurking for a minute, but finally trying to figure out how to play and how everything works. You been here a while?

6) Trydnt: Build G1 Trydnt
	Trydnt: Have you watched the videos on Lonney Labs' youtube channel? there is a tutorial, replayed games with commentary and I think maybe sample game. But it's good for learning some of the strategy tricks

7) thecolorbrown: Build R1 Thecolorbrown
	thecolorbrown: I have, really enjoyed it. Just hard to get any of the people i know as obsessed as i am

8) Trydnt: Trade G3 Y3 Trydnt

9) thecolorbrown: Build R1 Thecolorbrown

10) Trydnt: Build G2 Trydnt

11) thecolorbrown: Discover R1 Thecolorbrown G3 Avocadus

12) Trydnt: Trade G2 R2 Trydnt

13) thecolorbrown: Build Y1 Thecolorbrown

14) Trydnt: Discover R2 Trydnt B1 B1



36224)
Started: 2020.4.14, Ended: 2020.5.1
Participants: thecolorbrown (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B1 Y2 G3

2) thecolorbrown: Homeworld B1 G3 B3 *

3) MobyNostromo: B G1 Mobynostromo

4) thecolorbrown: Build B1 Thecolorbrown

5) MobyNostromo: B G1 Mobynostromo



36284)
Variants: "Unrated"
Started: 2020.4.14, Ended: 2020.4.14
Participants: Babamots (S), thecolorbrown (N)
Winner: Babamots

1) thecolorbrown: Homeworld R1 B2 G3

2) Babamots: Homeworld R3 B1 G3
	Babamots: Howdy! I don't think I've seen you around before. Is this your first time on SDG?

3) thecolorbrown: Build G1 Thecolorbrown
	thecolorbrown: It is! I got obsessed with homeworlds and was dying for people to play with 
	thecolorbrown: so difficult to get any good at it

4) Babamots: Build G1 Babamots

5) thecolorbrown: Trade G1 Y1 Thecolorbrown
	Babamots: It's certainly hard to find people to play with in person. I'm working on a Tabletopia version right now for better real-time play online.

I got obsessed with HW about four years ago. How about you?

6) Babamots: Trade G1 Y1 Babamots
	thecolorbrown: that's amazing! keep me posted. i got into it these last few months. couldnt afford the actual pyramids. made some out of card stock haha
	Babamots: You can also draw your own card-based version: draw a triangle on one side for a ship and a square on the other side for a star.

Do you know about the HW boxed set Kickstarter? It's $20, which is way more accessible than $77 for the Pyramid Arcade.

7) thecolorbrown: Build G1 Thecolorbrown

8) Babamots: Build G1 Babamots
	thecolorbrown: no i hadnt heard of that. that might help. these cardstock pyramids won't last long

9) thecolorbrown: Trade G1 B1 Thecolorbrown

10) Babamots: Trade G1 R1 Babamots
	Babamots: It looks you can still pledge to the Kickstarter campaign, though outside of the Kickstarter interface. You could get the pyramids in the fall, a little before they're available to non-backers. The page is here (you can click "Late Pledge Option")

https://www.kickstarter.com/projects/looneylabs/pyramid-quartet

11) thecolorbrown: Discover B1 Thecolorbrown G3 Greenguy

12) Babamots: Build R1 Babamots

13) thecolorbrown: Build B1 Greenguy

14) Babamots: Discover R1 Babamots R2 Romulus

15) thecolorbrown: Build B2 Greenguy

16) Babamots: Build R2 Babamots
	Babamots: I don't necessarily recommend the strategy I'm trying here. It's experimental :-D

17) thecolorbrown: Trade B2 R2 Greenguy
	thecolorbrown: you making that r2 is freaking me out tho

18) Babamots: Trade R2 Y2 Babamots

19) thecolorbrown: Build B2 Greenguy

20) Babamots: Discover R1 Babamots Y2 Iconia

21) thecolorbrown: Trade B2 Y2 Greenguy

22) Babamots: Sacrifice G3 Babamots
Build R2 Iconia
Build R3 Iconia
Build R3 Romulus

23) thecolorbrown: Build B2 Greenguy
	Babamots: Not having a large ship in your home is what I like to call "the big no-no." This is much more reckless than I usually play.
	thecolorbrown: gonna need a minute to think here hmm

24) Babamots: Sacrifice Y2 Babamots
Move R3 Romulus Babamots
Move R3 Iconia Greenguy

25) thecolorbrown: Sacrifice G3 Thecolorbrown
Build Y1 Greenguy
Build Y2 Greenguy
Build Y3 Thecolorbrown

26) Babamots: Sacrifice R2 Iconia
Attack R2 Greenguy
Attack Y2 Greenguy

27) thecolorbrown: Trade Y3 B3 Thecolorbrown
	thecolorbrown: well you've definitely got me now. My red game still really ain't good hmm
	Babamots: So you know, I'm responding much faster than is usual on SDG. One or two moves a day is typical for most people. That's part of why I want a good real-time implementation online somewhere like Tabletopia.

28) Babamots: Sacrifice R3 Greenguy
Attack B2 Greenguy
Attack Y2 Greenguy
Attack B1 Greenguy
	Babamots: Employing/defending red-powered invasions is super interesting.
	thecolorbrown: yeah for sure that's my impression 
	Babamots: Sacrificing blue to trade some of your ships for green may be a good move. If you can cause a green catastrophe in greenguy, I don't want to have any ships there.
	Babamots: The most interesting part of most games is the end. When you try to strike a killing blow, you often have to leave yourself open to a counterattack. Even if you plan perfectly, your opponent is often just one move away from destroying you when you win. Many attempts to win the game turn to disaster.

29) thecolorbrown: Sacrifice B3 Thecolorbrown
Trade B1 G1 Greenguy
Trade Y1 G1 Greenguy
Trade Y1 G1 Thecolorbrown
	thecolorbrown: yeah the blue sac is the plan but ima be majorly screwed after that

30) Babamots: Sacrifice Y2 Greenguy
Move R2 Greenguy Thecolorbrown
Move Y2 Greenguy Thecolorbrown
	Babamots: Yeah, I guess that threat is too late. I can just move in now.

31) thecolorbrown: Build G2 Greenguy
Catastrophe Greenguy Green
	thecolorbrown: yup, i make a g2 at home and then you sac r2 to take both
	Babamots: You probably haven't seen the way to switch between the "Play Page"  and the "Archive Page." The Archive page lets you see every position of the game and step through them.

There's a js file here that you can copy into a bookmark to switch between SDG's play and archive views.

https://github.com/jpeterbaker/SDGchange

32) Babamots: Attack G1 Thecolorbrown
	Babamots: The archive view lets you go back and see what you/the other guy could have done different.
	Babamots: You can also get to the archive view by pasting the game number into a URL with this form

http://www.superdupergames.org/main.html?page=archive_play&gid=36284
	Babamots: Anyway, thanks for the game! I'm up for another one, but I'll probably play slower (I need to work on some other things).

Let me know if you'd like my analysis of this match or a practice game with open discussion of strategy. I enjoy helping people strengthen their game.
	thecolorbrown: I would love all of that! How does a person even start a new game?
	thecolorbrown: And I'm definitely open to any advice you've got
	Babamots: You can scroll to the game you want and click "New Challenge" on the challenge page here

http://superdupergames.org/main.html?page=listgames#homeworlds

You can pick specific people to challenge or just leave the challenge open for anyone to join you.

The main thing in this game was, on your 12th move, I think you should have moved r2 to Iconia and triggered the catastrophe. We would have been about equal in material and you would have had better color diversity.
	thecolorbrown: yeah i was just looking over it and did actually see that. What a shame. Oh well. I'm new
	Babamots: We all live and learn!

If you really want to do a lot of reading on an ugly website, you can checkout my strategy and tactics guides here:

https://jpeterbaker.github.io/homeworlds/site/index.html
	thecolorbrown: love it! will be checking it out



36311)
Variants: "Unrated"
Started: 2020.4.14, Ended: 2020.4.15
Participants: Babamots (S), thecolorbrown (N)
Winner: Babamots

1) thecolorbrown: Homeworld B1 G2 Y3
	Babamots: Good luck! I'll have to move slower in this. I've been neglecting work.

2) Babamots: Homeworld B3 R2 G3
	thecolorbrown: no worries. Same, I was in a zoom meeting the whole time. Unsurprisingly neither the game nor the meeting went well

3) thecolorbrown: Build Y1 Thecolorbrown

4) Babamots: Build G1 Babamots

5) thecolorbrown: Build Y1 Thecolorbrown

6) Babamots: Trade G1 Y1 Babamots

7) thecolorbrown: Trade Y1 B1 Thecolorbrown

8) Babamots: Build Y1 Babamots

9) thecolorbrown: Discover Y1 Thecolorbrown G3 Endor

10) Babamots: Trade Y1 B1 Babamots
	Babamots: I've always used Star Trek worlds for my system names. Looks like you're thinking of using Star Wars worlds?

11) thecolorbrown: Build B2 Thecolorbrown
	thecolorbrown: I'm not sure. Star Trek is way better, I kind of hate Star Wars

12) Babamots: Build B2 Babamots

13) thecolorbrown: Sacrifice Y3 Thecolorbrown
Move B1 Thecolorbrown Endor
Discover B1 Endor R1 Hellitself
Move B1 Hellitself Babamots
Catastrophe Babamots Blue
	Babamots: Lots of people just call their systems boring things like "G3." System names that look the same as ship specifiers confuse me. Someone on here uses Muppets, like BigBird for a y3 system (I can never remember who does this, but D5PA will probably pop into the comments here to remind me :-D).

14) Babamots: Build Y1 Babamots
	thecolorbrown: probably stupid but i couldn't resist. never typed all that stuff out yet
	Babamots: I don't think you'll like this, but we'll see.

15) thecolorbrown: Build Y2 Endor
	Babamots: I do have to be super careful now. Without blue, yellow is my only ticket out of here. A green ship in a red system is a "Gilligan:" he'll never get away.

16) Babamots: Move Y1 Babamots Endor
	thecolorbrown: i'm definitely in a super precarious situation and will not be able to afford any mistakes...and so i hope that wasn't a mistake

17) thecolorbrown: Move Y2 Endor Thecolorbrown

18) Babamots: Build Y2 Babamots
	Draw5PlayAll: I have been summoned...

You are looking for ts52.
	thecolorbrown: I'm afraid I don't know what you mean

19) thecolorbrown: Build Y2 Thecolorbrown
	Babamots: I said that D5PA (short for Draw5PlayAll) would probably leave us a comment about who it is that uses Muppet names. He just did.

20) Babamots: Move Y1 Endor Thecolorbrown

21) thecolorbrown: Trade Y2 R2 Thecolorbrown

22) Babamots: Discover Y1 Thecolorbrown B3 Pakled
	thecolorbrown: That's a cool move.

23) thecolorbrown: Build R1 Thecolorbrown

24) Babamots: Discover Y1 Babamots Y3 Aldea
	Babamots: This is tricky. I'd better sleep on this one. I'll be back tomorrow.
	thecolorbrown: Good night, Wesley, good work. Rest well, I'll most likely kill you in the morning

25) thecolorbrown: Move R1 Thecolorbrown Endor
	Babamots: Moving my y1 to your home was actually a big mistake. It cost me two turns when I don't have any time to spare.

26) Babamots: Sacrifice G3 Babamots
Build Y2 Aldea
Build Y3 Babamots
Build Y3 Pakled
	thecolorbrown: definitely a tricky situation

27) thecolorbrown: Build R1 Endor

28) Babamots: Trade Y3 R3 Pakled

29) thecolorbrown: Build Y3 Endor

30) Babamots: Sacrifice Y2 Babamots
Move R3 Pakled Thecolorbrown
Move Y2 Aldea Thecolorbrown

31) thecolorbrown: Sacrifice Y2 Thecolorbrown
Move R1 Endor Thecolorbrown
Move R1 Endor Thecolorbrown
Catastrophe Thecolorbrown Red

32) Babamots: Trade Y2 R2 Thecolorbrown

33) thecolorbrown: Move Y3 Endor Thecolorbrown

34) Babamots: Attack B2 Thecolorbrown
	thecolorbrown: Crap. I think you got me by one turn.

35) thecolorbrown: Trade Y3 R3 Thecolorbrown
	Babamots: I'm not too sure yet. This is weird.

36) Babamots: Trade B2 R2 Thecolorbrown

37) thecolorbrown: Build R1 Thecolorbrown
Catastrophe Thecolorbrown Red

	Babamots: I think I've used "Undo" more in this game than I ever have before.

If I were to build an r1, you could have made it a tie by attacking the b2 repeatedly.
	thecolorbrown: yeah I think i'm going to just concede after all. Any color i change the r3 to, you just change to that color and start building to blow things up. Happens really fast if I choose b3 or g3 but then I can't build more without giving them to you. good game after all!
	Babamots: That was an exciting one. After you sacrificed your only large ship, I thought I would be able to get my large to your home and capture everything. But then there were too many other things to prevent or prepare for.
	thecolorbrown: Yeah, and I panicked for a few turns. I think if I had gotten right to the business of building up those r1s and throwing them at your homeworld, I might have been able to work it out. Especially with that red-herring y1 you send into my homeworld. Then again, even if you considered that wasted energy, I still had to take time to respond to it. Maybe it didn't cost you that much time after all. I'm gonna have to go back and study this one.


36319)
Variants: "Unrated"
Started: 2020.4.15, Ended: 2020.5.29
Participants: thecolorbrown (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3

2) thecolorbrown: Homeworld R2 B1 G3
	thecolorbrown: It's funny, I still really haven't established what my starting position is. Still playing around. A lot of people seem to use the one you're using. I'm gonna copy it this time and see what happens

3) Babamots: Build G1 Babamots
	Babamots: From what I've seen lately, the most popular setup is green ship and blue-red star system. People almost always include a small star. The next most popular color combination is to replace the red star with yellow.

4) thecolorbrown: Build G1 Thecolorbrown

5) Babamots: Trade G1 R1 Babamots

6) thecolorbrown: Build G1 Thecolorbrown

7) Babamots: Build R1 Babamots

8) thecolorbrown: Trade G3 Y3 Thecolorbrown

9) Babamots: Build G1 Babamots

10) thecolorbrown: Discover G1 Thecolorbrown B3 Paransaeksam

11) Babamots: Trade G1 Y1 Babamots

12) thecolorbrown: Build G1 Paransaeksam

13) Babamots: Discover R1 Babamots B2 Bolarus

14) thecolorbrown: Build G2 Paransaeksam

15) Babamots: Sacrifice G3 Babamots
Build R2 Bolarus
Build R2 Bolarus
Build R3 Babamots

16) thecolorbrown: Sacrifice G2 Paransaeksam
Build G2 Thecolorbrown
Build G2 Thecolorbrown

17) Babamots: Trade R3 G3 Babamots

18) thecolorbrown: Discover G2 Thecolorbrown R3 Imgoingtolose

19) Babamots: Build R3 Babamots

20) thecolorbrown: Trade Y3 R3 Thecolorbrown

21) Babamots: Trade R3 Y3 Babamots

22) thecolorbrown: Sacrifice G2 Thecolorbrown
Build G2 Paransaeksam
Build G2 Imgoingtolose
	thecolorbrown: Man, did I blow it on this one

23) Babamots: Build G3 Babamots

24) thecolorbrown: Build G3 Thecolorbrown

25) Babamots: Build R3 Babamots

26) thecolorbrown: Trade G1 Y1 Paransaeksam
	Babamots: Yeah, I saw a chance to run away with the reds, so I took it.
	thecolorbrown: i'll say. it was cool

27) Babamots: Trade R3 Y3 Babamots

28) thecolorbrown: Build Y1 Paransaeksam

29) Babamots: Build R3 Babamots

30) thecolorbrown: Build Y2 Paransaeksam

31) Babamots: Discover Y3 Babamots B2 Andoria

	Babamots: Looks like you're probably busy these days. Let me know if you want a rematch!


36327)
Started: 2020.4.16, Ended: 2020.6.9
Participants: nycavri (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B1 G3
	nycavri: For the 2019 Homeworlds Tourney.  Please confirm.
	nycavri: TaGG!

2) nycavri: Homeworld Y3 B2 G3
	goulo: hi, for the tourney, have fun! :)

3) goulo: Build G1 Goulo

4) nycavri: Build G1 Nycavri

5) goulo: Trade G1 Y1 Goulo

6) nycavri: Discover G1 Nycavri Y1 Deacon

7) goulo: Build G1 Goulo

8) nycavri: Discover G1 Deacon Y2 May

9) goulo: Trade G1 R1 Goulo

10) nycavri: Build G1 Nycavri

11) goulo: Build R1 Goulo

12) nycavri: Trade G1 R1 Nycavri

13) goulo: Trade R1 B1 Goulo

14) nycavri: Build G1 Nycavri

15) goulo: Build Y1 Goulo

16) nycavri: Discover G1 Nycavri Y1 Deacon

17) goulo: Discover Y1 Goulo Y2 Flavo

18) nycavri: Move G1 Deacon May

19) goulo: Build G1 Goulo

20) nycavri: Build G2 Nycavri

21) goulo: Move G1 Goulo Flavo

22) nycavri: Discover G2 Nycavri Y1 Mercury

23) goulo: Sacrifice G3 Goulo
Build Y2 Goulo
Build Y3 Goulo
Build Y3 Flavo

24) nycavri: Build G2 May

25) goulo: Sacrifice Y2 Goulo
Move G1 Flavo Goulo
Move G1 Goulo May
Catastrophe May G

26) nycavri: Build G1 Nycavri

27) goulo: Trade Y1 G1 Goulo

28) nycavri: Discover G2 Mercury Y2 Taylor

29) goulo: Build Y1 Goulo

30) nycavri: Build G1 Taylor

31) goulo: Build G2 Goulo

32) nycavri: Trade G1 Y1 Nycavri

33) goulo: Build Y2 Goulo

34) nycavri: Move G1 Taylor Goulo

35) goulo: Attack G1 Goulo

36) nycavri: Move G2 Taylor Goulo
Catastrophe Goulo G

37) goulo: Discover Y1 Flavo G1 Verdo

38) nycavri: Discover Y1 Nycavri G1 Deacon

39) goulo: Build Y2 Verdo

40) nycavri: Discover Y1 Deacon B2 May

41) goulo: Discover Y1 Goulo R2 Rubeno

42) nycavri: Build G1 Nycavri

43) goulo: Trade B1 G1 Goulo

44) nycavri: Build R1 Nycavri

45) goulo: Build R2 Goulo

46) nycavri: Sacrifice Y1 May
Discover G1 Nycavri Y1 Mercury

47) goulo: Build G2 Goulo

48) nycavri: Build G2 Nycavri

49) goulo: Move G1 Goulo Rubeno

50) nycavri: Move G2 Nycavri Mercury

51) goulo: Trade R1 B1 Goulo

52) nycavri: Trade R1 B1 Nycavri

53) goulo: Build R1 Goulo

54) nycavri: Move B1 Nycavri Mercury

55) goulo: Move Y3 Flavo Mercury

56) nycavri: Discover G2 Mercury Y2 Taylor

57) goulo: Sacrifice R2 Goulo
Attack G1 Mercury
Attack B1 Mercury

58) nycavri: Build R1 Nycavri

59) goulo: Build R2 Goulo

60) nycavri: Build G2 Taylor

61) goulo: Build G3 Rubeno

62) nycavri: Build R2 Nycavri

63) goulo: Sacrifice Y3 Mercury
Move R1 Goulo Rubeno
Move R1 Rubeno Mercury
Move R1 Mercury Nycavri
Catastrophe Nycavri R

64) nycavri: Build G3 Nycavri

65) goulo: Sacrifice Y2 Verdo
Move G3 Rubeno Mercury
Move G3 Mercury Nycavri

66) nycavri: Trade G3 R3 Nycavri

67) goulo: Sacrifice R2 Goulo
Attack G3 Nycavri
Attack R3 Nycavri

	goulo: Thanks for the game!


36321)
Started: 2020.4.22, Ended: 2020.6.17
Participants: DodoBirb (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) DodoBirb: Homeworld B1 R3 G3
	DodoBirb: Good Luck! This is for the Homeworlds tourney

3) wil: B G1 Wil
	wil: Cool, thx for the challenge!

4) DodoBirb: Build G1 Dodobirb

5) wil: T G1 B1 Wil

6) DodoBirb: Trade G1 B1 Dodobirb

7) wil: B B2 Wil

8) DodoBirb: Build B2 Dodobirb

9) wil: D B2 Wil Y3 Y3

10) DodoBirb: Trade B1 Y1 Dodobirb

11) wil: D B2 Y3 Y2 Y2

12) DodoBirb: Build Y1 Dodobirb

13) wil: B B1 Wil

14) DodoBirb: Trade B2 R2 Dodobirb

15) wil: D B1 Wil R3 R3

16) DodoBirb: Move R2 Dodobirb Y2

17) wil: S G3 Wil
B B2 R3
B B3 Y2
B B3 Wil

18) DodoBirb: Attack B2N Y2

19) wil: T B1 R1 Wil

20) DodoBirb: Move B2 Y2 Dodobirb

21) wil: T B3 G3 Wil

22) DodoBirb: Build Y2 Dodobirb

23) wil: S R1 Wil
A R2 Y2

24) DodoBirb: Trade Y2 R2 Dodobirb

25) wil: Trade B2 Y2 R3

26) DodoBirb: Build Y2 Dodobirb

27) wil: B G1 Wil

28) DodoBirb: Discover Y2 Dodobirb G2 Construction

29) wil: D B3 Y2 Y3 Y3

30) DodoBirb: Build Y3 Construction

31) wil: S G1 Wil
B Y3 R3

32) DodoBirb: Move R2 Dodobirb Construction

33) wil: Build G1 Wil

34) DodoBirb: Build G1 Dodobirb

35) wil: T B3 G3 Y3

36) DodoBirb: Build R1 Construction

37) wil: Discover Y2 R3 B2 B2

38) DodoBirb: Move B2 Dodobirb Construction

39) wil: B G1 Y3

40) DodoBirb: Discover G1 Dodobirb R2 Mediumhot

41) wil: T G1 R1 Wil

42) DodoBirb: Discover R2 Construction B3 Bluey

43) wil: M G1 Y3 Y2

44) DodoBirb: Move R1 Construction Bluey

45) wil: S G3 Y3
B Y3 B2
B R1 Wil
B R3 Y2

46) DodoBirb: Sacrifice Y2 Construction
Move R1 Bluey Y2
Move R2 Bluey Y2
Catastrophe Y2 R

47) wil: Discover Y3 B2 B3 B3

48) DodoBirb: Build G1 Dodobirb

49) wil: Build G2 Y2

50) DodoBirb: Trade G1 B1 Dodobirb

51) wil: S G2 Y2
B B3 R3
B Y2 B2

52) DodoBirb: Build B3 Construction

53) wil: T B3 G3 R3

54) DodoBirb: Trade B3 R3 Construction

55) wil: S G1 Y2
B Y2 B2

56) DodoBirb: Build R1 Construction

57) wil: B B3 R3

58) DodoBirb: Build B3 Construction

59) wil: M B3 R3 Mediumhot

60) DodoBirb: Sacrifice G1 Mediumhot
Build G1 Dodobirb
	wil: I just realized my banker opening has turned into a fortress!  With the race to get threes!

61) wil: M R1 Wil B3
	DodoBirb: and so it has, this isn't looking good for me...

62) DodoBirb: Discover R3 Construction G1 Seed

63) wil: B R2 Wil

64) DodoBirb: Build R2 Construction

65) wil: Trade Y2 G2 B2

66) DodoBirb: Build Y2 Construction

67) wil: Build G1 B2

68) DodoBirb: Sacrifice Y2 Construction
Move Y3 Construction B3
Move Y3 B3 B2

69) wil: S G3 R3
B Y2 B2
C B2 Y
B G2 Wil
B G3 Wil

70) DodoBirb: Discover B1 Dodobirb Y2 Yellow

71) wil: Discover G3 Wil Y3 Y3

72) DodoBirb: Move Y1 Dodobirb Construction

73) wil: S G3 Wil
B G3 Wil
B Y2 B3
B Y2 R3

74) DodoBirb: Move Y1 Construction Seed

75) wil: S Y3 R3
M B3 Mediumhot Dodobirb
M G1 B2 Dodobirb
M G2 B2 Dodobirb
C Dodobirb G

76) DodoBirb: Sacrifice Y1 Seed
Move B3 Construction Dodobirb
	DodoBirb: Good game

77) wil: Sacrifice R2 Wil
Attack B3 Dodobirb
Attack Y1 Dodobirb
	wil: gg, challenge me anytime...you got the paperwork eh?




36328)
Started: 2020.4.22, Ended: 2020.5.4
Participants: nycavri (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3

2) nycavri: Homeworld Y3 B2 G3

3) wil: B G1 Wil
	nycavri: For the tournament
	wil: Cool thnx

4) nycavri: Build G1 Nycavri

5) wil: T G1 B1 Wil

6) nycavri: Trade G1 Y1 Nycavri

7) wil: B B1 Wil

8) nycavri: Build G1 Nycavri

9) wil: D B1 Wil Y3 Y3

10) nycavri: Discover G1 Nycavri Y1 Deacon
	wil: Good time for homeworlds!  Staying safe?

11) wil: S G3 Wil
B B1 Y3
B B2 Y3
B B3 Wil

12) nycavri: Build Y2 Nycavri

13) wil: T B3 G3 Wil

14) nycavri: Trade Y2 R2 Nycavri

15) wil: B B3 Wil

16) nycavri: Build Y2 Nycavri

17) wil: T B3 Y3 Wil

18) nycavri: Move Y2 Nycavri Deacon

19) wil: T B2 R2 Y3

20) nycavri: Discover Y2 Deacon G3 May

21) wil: M Y3 Wil May

22) nycavri: Move R2 Nycavri Deacon

23) wil: D B1 Y3 G1 G1

24) nycavri: Build G1 Nycavri
	wil: Let's go visit the new neighbors.  They look like us, must be friendly!

25) wil: S G3 Wil
B B2 G1
B B3 Y3
B B3 Wil

26) nycavri: Build G2 Deacon
	wil: Well I'm not visiting there!

27) wil: T B3 R3 Wil

28) nycavri: Build G2 Nycavri

29) wil: B B3 G1

30) nycavri: Trade G2 Y2 Nycavri

31) wil: M B3 Y3 Deacon

32) nycavri: Sacrifice Y2 May
Discover G2 Deacon B3 Mercury
Move R2 Deacon Mercury

33) wil: M B3 Deacon Mercury

34) nycavri: Trade G2 R2 Mercury


35) wil: S R2 Y3
A R2 Mercury
A R2 Mercury

36) nycavri: Trade G1 R1 Nycavri

37) wil: T B3 G3 G1

38) nycavri: Build R1 Nycavri

39) wil: Trade R2 Y2 Mercury

40) nycavri: Sacrifice Y2 Nycavri
Move R1 Nycavri Deacon
Move R1 Nycavri Deacon

41) wil: Trade B2 Y2 G1

42) nycavri: Discover Y1 Nycavri G1 Taylor

43) wil: B Y2 G1

44) nycavri: Build G2 Nycavri

45) wil: Move B3 Mercury Deacon

46) nycavri: Trade G2 B2 Nycavri

47) wil: S Y2 G1
M G3 G1 Nycavri
M B3 Deacon Nycavri

48) nycavri: Sacrifice R1 Deacon
Attack G3 Nycavri

49) wil: S R3 Wil
A G3 Nycavri
A G3 Nycavri
A B2 Nycavri

	nycavri: Thanks for the game.
	wil: I try to play towards monopolies...


36351)
Started: 2020.4.23, Ended: 2020.5.18
Participants: Jerome (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Jerome: Homeworld R3 B1 G3

3) Trydnt: Build G1 Trydnt

4) Jerome: Build G1 Jerome

5) Trydnt: Trade G1 B1 Trydnt

6) Jerome: Build G1 Jerome

7) Trydnt: Build B1 Trydnt

8) Jerome: Trade G1 Y1 Jerome

9) Trydnt: Discover B1 Trydnt G3 G3

10) Jerome: Build Y1 Jerome

11) Trydnt: Build B2 G3

12) Jerome: Build Y2 Jerome

13) Trydnt: Trade B2 Y2 G3

14) Jerome: Discover Y1 Jerome G2 G2

15) Trydnt: Sacrifice G3 Trydnt
Build B2 G3
Build B2 G3
Build B3 Trydnt

16) Jerome: Sacrifice G3 Jerome
Build Y2 G2
Build Y3 Jerome
Build G1 Jerome

17) Trydnt: Build Y3 G3

18) Jerome: Trade Y3 G3 Jerome

19) Trydnt: Discover Y2 G3 G2 Gee2

20) Jerome: Discover Y1 G2 G3 Gg3

21) Trydnt: Build Y3 Gee2

22) Jerome: Build Y3 G2

23) Trydnt: Move B2 G3 Gee2

24) Jerome: Trade G1 R1 Jerome

25) Trydnt: Trade B2 R2 G3

26) Jerome: Move R1 Jerome G2

27) Trydnt: Build B2 Gee2

28) Jerome: Sacrifice Y2 G2
Move Y1 Jerome Gee2
Move Y2 Jerome Gee2
Catastrophe Gee2 Y

29) Trydnt: Build B3 G3

30) Jerome: Build G1 Jerome

31) Trydnt: Build B3 Gee2



36180)
Variants: "Unrated"
Started: 2020.4.23, Ended: 2020.5.5
Participants: amoscai (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) amoscai: Homeworld B1 Y2 G3

3) Trydnt: Build G1 Trydnt

4) amoscai: Build G1 Amoscai

5) Trydnt: Trade G1 Y1 Trydnt

6) amoscai: Trade G1 Y1 Amoscai

7) Trydnt: Build G1 Trydnt

8) amoscai: Build G1 Amoscai

9) Trydnt: Discover Y1 Trydnt G3 G3

10) amoscai: Trade G1 R1 Amoscai

11) Trydnt: Trade G1 R1 Trydnt

12) amoscai: Move Y1 Amoscai G3

13) Trydnt: Build Y2 G3

14) amoscai: Build Y2 G3
Catastrophe G3 Yellow

15) Trydnt: Build G1 Trydnt

16) amoscai: Build G1 Amoscai

17) Trydnt: Trade G1 Y1 Trydnt

18) amoscai: Build R1 Amoscai

19) Trydnt: Build R2 Trydnt

20) amoscai: Build R2 Amoscai

21) Trydnt: Discover R2 Trydnt G3 G3

22) amoscai: Trade R1 Y1 Amoscai

23) Trydnt: Build Y2 Trydnt

24) amoscai: Discover Y1 Amoscai B3 B3

25) Trydnt: Move Y2 Trydnt B3

26) amoscai: Sacrifice G1 Amoscai
Build Y2 B3

27) Trydnt: Sacrifice R2 G3
Attack Y1 B3
Attack Y2 B3

28) amoscai: Build G1 Amoscai

29) Trydnt: Build Y3 Trydnt

30) amoscai: Trade G1 B1 Amoscai

31) Trydnt: Trade Y3 B3 Trydnt

32) amoscai: Build G1 Amoscai

33) Trydnt: Build Y3 Trydnt

34) amoscai: Move R1 Amoscai B3

35) Trydnt: Sacrifice R1 Trydnt
Attack R1 B3

36) amoscai: Discover B1 Amoscai Y3 Y3

37) Trydnt: Trade Y3 R3 Trydnt

38) amoscai: Sacrifice G1 Amoscai
Build B1 Y3

39) Trydnt: Discover B3 Trydnt G3 G3

40) amoscai: Build G1 Amoscai

41) Trydnt: Build B2 G3

42) amoscai: Discover B1 Y3 G1 G1

43) Trydnt: Build Y3 Trydnt

44) amoscai: Build B2 G1

45) Trydnt: Build B3 G3

46) amoscai: Build R1 Amoscai

47) Trydnt: Discover Y1 Trydnt R3 R3

48) amoscai: Move R2 Amoscai Y3

49) Trydnt: Move Y1 R3 Amoscai

50) amoscai: Attack Y1 Amoscai

51) Trydnt: Sacrifice Y2 B3
Move Y2 B3 Amoscai
Move Y1 B3 Amoscai
Catastrophe Amoscai Y

52) amoscai: Trade G1 Y1 Amoscai

53) Trydnt: Sacrifice Y3 Trydnt
Move B2 G3 Amoscai
Move B3 G3 Amoscai
Move B3 G3 Amoscai
Catastrophe Amoscai B

	Trydnt: gg


36156)
Variants: "Unrated, Hard time"
Started: 2020.4.24, Ended: 2020.4.27
Participants: Domakiller (S), wil (N)
Winner: wil

1) wil: H B2 Y1 G3
	Domakiller: Sorry, this is too complocate for me. I just want to check, how this online Homeworlds playing works.
	Domakiller: I leave.
	wil: H r3 b1 g3 makes a homeworlds
B g1 domakilller...builds a new small ship 
D g1 domakiller b2 Orion. Discovers a new star named Orion and your small green ship moves to a medium blue 
	wil: Come back if you wish 



36302)
Variants: "Hard time"
Started: 2020.4.25, Ended: 2020.5.6
Participants: amoscai (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) amoscai: Homeworld Y1 B2 G3

3) wil: B G1 Wil
	wil: Short uni!

4) amoscai: Build G1 Amoscai

5) wil: T G1 R1 Wil

6) amoscai: Build G1 Amoscai

7) wil: B R1 Wil

8) amoscai: Trade G1 R1 Amoscai

9) wil: B R2 Wil

10) amoscai: Build R2 Amoscai

11) wil: T R2 Y2 Wil

12) amoscai: Trade R2 Y2 Amoscai

13) wil: B R2 Wil

14) amoscai: Build R2 Amoscai

15) wil: T R2 G2 Wil

16) amoscai: Build Y1 Amoscai

17) wil: D Y2 Wil G3 G3

18) amoscai: Move Y1 Amoscai G3

19) wil: S R1 Wil
A Y1 G3

20) amoscai: Trade G1 B1 Amoscai

21) wil: B R1 Wil

22) amoscai: Move R2 Amoscai G3

23) wil: S R1 Wil
A R2 G3

24) amoscai: Build R1 Amoscai
	wil: I'll take that trade

25) wil: B R2 Wil
	amoscai: ah yes. forgot about the ability to sacrifice your home reds.

26) amoscai: Build G1 Amoscai
	wil: Yes you can sacrifice anything from anywhere and it transfers the problem power across the galaxy 

27) wil: D G2 Wil Y3 Y3

28) amoscai: Move R1 Amoscai Y3

29) wil: Move R2 Wil Y3

30) amoscai: Sacrifice G1 Amoscai
Build R2 Y3

31) wil: S G3 Wil
B R3 Wil
B R3 G3
B R3 Y3
C Y3 R

32) amoscai: Build R1 Amoscai

33) wil: T R3 G3 Wil

34) amoscai: Move R1 Amoscai G3

35) wil: D R3 G3 G2 G2

36) amoscai: Attack Y1 G3

37) wil: S R2 G3
A R1 G3
A Y1 G3

38) amoscai: Build R2 Amoscai

39) wil: Sacrifice G3 Wil
Build R2 G3
Build R2 G2
Build R3 Wil

40) amoscai: Move R2 Amoscai G3

41) wil: B R3 G2

42) amoscai: Build Y1 Amoscai

43) wil: Move Y1 G3 Amoscai
Catastrophe Amoscai Y

44) amoscai: Attack R2 G3

45) wil: S R2 G2
A R2 G3
A R2 G3

46) amoscai: Build R2 Amoscai

47) wil: T R3 Y3 Wil

48) amoscai: Trade R2 Y2 Amoscai

49) wil: Discover R1 G3 B1 B1

50) amoscai: Build R2 Amoscai

51) wil: B R3 G3

52) amoscai: Move R1 Amoscai G3
Catastrophe G3 Red

53) wil: Build Y1 G3

54) amoscai: Build R1 Amoscai

55) wil: Sacrifice Y1 G3
Move R3 G2 G3

56) amoscai: Move R2 Amoscai Y3

57) wil: S R1 B1
A R2 Y3

58) amoscai: Build Y1 Amoscai

59) wil: B R1 G3

60) amoscai: Build R2 Amoscai

61) wil: Sacrifice G2 Y3
Build R2 Y3
Build R3 Wil

62) amoscai: Sacrifice Y2 Amoscai
Move R1 Amoscai G3
Move R2 Amoscai G3
Catastrophe G3 Red

63) wil: Sacrifice Y2 G3
Move R3 G2 Y3
Move R3 Y3 Amoscai

	wil: You left yourself without a gun...
	amoscai: it was going to happen. heh.
	amoscai: gg
	wil: gg


36358)
Variants: "Hard time"
Started: 2020.4.25, Ended: 2020.5.10
Participants: deanthebean (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) deanthebean: Homeworld B1 Y2 G3
	deanthebean: Thank you for accepting the challenge. Have fun!

3) wil: B G1 Wil
	wil: Another small universe, third one this month 

4) deanthebean: Build G1 Deanthebean

5) wil: T G1 B1 Wil
	deanthebean: Yup. I don't know whether the mirroring strategy is a good one. We'll see. 
	wil: Instafreeze issues..

6) deanthebean: Trade G1 R1 Deanthebean

7) wil: B B2 Wil

8) deanthebean: Build G1 Deanthebean

9) wil: D B2 Wil G3 G3

10) deanthebean: Build G1 Deanthebean

11) wil: B B2 G3

12) deanthebean: Discover G1 Deanthebean Y3 Y3

13) wil: T B2 R2 G3

14) deanthebean: Build G1 Y3

15) wil: B G2 Wil

16) deanthebean: Sacrifice G3 Deanthebean
Build G2 Y3
Build G2 Deanthebean
Build G3 Deanthebean

17) wil: S G3 Wil
B G3 Wil
B B2 G3
B B2 Wil

18) deanthebean: Move G2 Y3 Wil

19) wil: Trade G2 R2 Wil

20) deanthebean: Sacrifice R1 Deanthebean
Attack R2 Wil

21) wil: S R2 G3
A R2 Wil
A G2 Wil

22) deanthebean: Move G1 Y3 Wil

23) wil: T G3 R3 Wil

24) deanthebean: Sacrifice G3 Deanthebean
Build G2 Wil
Build G3 Deanthebean
Build G3 Y3

25) wil: A G2 Wil

26) deanthebean: Move G1 Y3 Wil
Catastrophe Wil G

27) wil: B B3 G3

28) deanthebean: Trade G1 R1 Deanthebean

29) wil: T B3 Y3 G3

30) deanthebean: Build R1 Deanthebean

31) wil: Build B3 G3

32) deanthebean: Build G1 Deanthebean

33) wil: D B3 G3 G1 G1

34) deanthebean: Trade G2 Y2 Deanthebean

35) wil: B B3 G1

36) deanthebean: Discover Y2 Deanthebean B3 B3

37) wil: T B3 R3 G1
	deanthebean: This has felt pretty hopeless ever since I allowed myself to be shut out of blue. 
	wil: Yup, Instagrfreeze, just a matter of time

	wil: Once I have a queen factory it is milk it, till there aren't any more.
	wil: You hope for a mistake (which happens), resign and challenge me anytime, or continue to take the lumps si it never occurs agaia!
	deanthebean: I think I might as well resign. Well played and thanks for the game!


36305)
Started: 2020.5.1, Ended: 2020.5.11
Participants: Robizzlefoshizzle (S), MobyNostromo (N)
Winner: MobyNostromo

1) MobyNostromo: H B1 Y2 G3

2) Robizzlefoshizzle: H G3 B1 Y3

3) MobyNostromo: B G1 Mobynostromo

4) Robizzlefoshizzle: B Y1 Robizzlefoshizzle

5) MobyNostromo: T G1 B1 Mobynostromo

6) Robizzlefoshizzle: B Y1 Robizzlefoshizzle

7) MobyNostromo: B B2 Mobynostromo

8) Robizzlefoshizzle: T Y1 G1 Robizzlefoshizzle

9) MobyNostromo: D B2 Mobynostromo G3 Vital

10) Robizzlefoshizzle: B G1 Robizzlefoshizzle

11) MobyNostromo: B B2 Vital

12) Robizzlefoshizzle: D G1 Robizzlefoshizzle Y2 Dog

13) MobyNostromo: T B1 Y1 Mobynostromo

14) Robizzlefoshizzle: B Y1 Robizzlefoshizzle

15) MobyNostromo: T B2 R2 Vital

16) Robizzlefoshizzle: M Y1 Robizzlefoshizzle Dog

17) MobyNostromo: B R1 Vital

18) Robizzlefoshizzle: B Y2 Dog

19) MobyNostromo: S Y1 Mobynostromo
M R2 Vital Dog

20) Robizzlefoshizzle: S Y2 Dog
M G1 Dog Robizzlefoshizzle
M Y1 Dog Robizzlefoshizzle

21) MobyNostromo: M R2 Dog Robizzlefoshizzle

22) Robizzlefoshizzle: S Y1 Robizzlefoshizzle
D G1 Robizzlefoshizzle B2 Cat

23) MobyNostromo: T R2 Y2 Robizzlefoshizzle

24) Robizzlefoshizzle: S Y1 Robizzlefoshizzle
D G1 Cat R3 Mouse

25) MobyNostromo: B Y1 Robizzlefoshizzle

26) Robizzlefoshizzle: B G1 Mouse

27) MobyNostromo: B Y1 Robizzlefoshizzle
C Robizzlefoshizzle Y

28) Robizzlefoshizzle: Trade G1 Y1 Robizzlefoshizzle

29) MobyNostromo: B G1 Mobynostromo

30) Robizzlefoshizzle: B Y1 Robizzlefoshizzle

31) MobyNostromo: T G1 R1 Mobynostromo

32) Robizzlefoshizzle: T Y1 R1 Robizzlefoshizzle

33) MobyNostromo: B B1 Vital

34) Robizzlefoshizzle: B R2 Robizzlefoshizzle

35) MobyNostromo: T B1 Y1 Vital

36) Robizzlefoshizzle: T R1 B1 Robizzlefoshizzle

37) MobyNostromo: B B2 Vital

38) Robizzlefoshizzle: D B1 Robizzlefoshizzle G2 Cheese

39) MobyNostromo: D B2 Vital G2 Canopy

40) Robizzlefoshizzle: B Y1 Robizzlefoshizzle

41) MobyNostromo: B Y2 Vital

42) Robizzlefoshizzle: M Y1 Robizzlefoshizzle Cheese

43) MobyNostromo: M Y1 Vital Canopy

44) Robizzlefoshizzle: B Y2 Cheese

45) MobyNostromo: B Y3 Canopy

46) Robizzlefoshizzle: S Y2 Cheese
M G1 Mouse Mobynostromo
M G1 Mouse Mobynostromo

47) MobyNostromo: T G3 R3 Mobynostromo

	Robizzlefoshizzle: GG MobyNostromo. I learned a lot.
	MobyNostromo: Awesome! This is a complex game, and I'm learning myself.


36391)
Variants: "Hard time"
Started: 2020.5.4, Ended: 2020.6.29
Participants: Trydnt (S), Simon (N)
Winner: Simon

1) Simon: Homeworld B3 R1 G3
	Simon: Have fun :)

2) Trydnt: Homeworld Y3 B2 G3

3) Simon: Build G1 Simon

4) Trydnt: Build G1 Trydnt

5) Simon: Trade G1 R1 Simon

6) Trydnt: Trade G1 R1 Trydnt

7) Simon: Build R2 Simon
	Trydnt: I always do :) good luck
	Simon: You too!

8) Trydnt: Build R2 Trydnt

9) Simon: Trade R2 Y2 Simon

10) Trydnt: Trade R2 Y2 Trydnt

11) Simon: Build R2 Simon

12) Trydnt: Build R2 Trydnt

13) Simon: Discover R1 Simon G2 G2

14) Trydnt: Discover R1 Trydnt G1 G1

15) Simon: Discover R2 Simon G2 G2b

16) Trydnt: Move Y2 Trydnt G1

17) Simon: Build Y1 Simon

18) Trydnt: Build Y1 G1

19) Simon: Move Y2 Simon G2

20) Trydnt: Discover Y1 G1 G2 G2c

21) Simon: Build G1 Simon

22) Trydnt: Build Y1 G1

23) Simon: Discover G1 Simon Y2 Y2

24) Trydnt: Build Y3 G2c

25) Simon: Build Y3 G2

26) Trydnt: Move Y2 G1 G2

27) Simon: Move Y2 G2 G1

28) Trydnt: Sacrifice Y1 G1
Move Y3 G2c G1

29) Simon: Attack Y2 G2

30) Trydnt: Attack Y2 G1

31) Simon: Build Y1 Simon

32) Trydnt: Discover Y2 G1 B2 B2

33) Simon: Discover Y2 G2 B1 B1

34) Trydnt: Discover Y1 G2c G3 G3

35) Simon: Sacrifice G1 Y2
Build Y2 B1

36) Trydnt: Build G1 Trydnt

37) Simon: Build G1 Simon

38) Trydnt: Trade G1 B1 Trydnt

39) Simon: Trade G1 B1 Simon

40) Trydnt: Move B1 Trydnt G1

41) Simon: Move B1 Simon G2

42) Trydnt: Build G1 Trydnt

43) Simon: Build G1 Simon

44) Trydnt: Discover R1 G1 G2 G2c

45) Simon: Move Y1 Simon G2b

46) Trydnt: Move Y2 B2 B1

47) Simon: Build B2 G2

48) Trydnt: Move Y1 G3 B1
Catastrophe B1 Y

49) Simon: Sacrifice G3 Simon
Build G3 Simon
Build G3 Simon
Build Y1 G2

50) Trydnt: Sacrifice Y3 G1
Move G1 Trydnt G1
Move G1 G1 G2
Move G1 G2 Simon
Catastrophe Simon G

51) Simon: Move Y3 G2 Simon

52) Trydnt: Sacrifice G3 Trydnt
Build R2 G2c
Build R3 Trydnt
Build B1 G1

53) Simon: Build R3 G2

54) Trydnt: Trade R2 Y2 Trydnt

55) Simon: Build Y2 G2b

56) Trydnt: Discover Y2 Trydnt G1 Gee1

57) Simon: Move R3 G2 G1

58) Trydnt: Sacrifice Y2 Gee1
Move B1 G1 G2
Move B1 G1 G2
Catastrophe G2 B

59) Simon: Build R2 G1

60) Trydnt: Trade R3 G3 Trydnt

61) Simon: Build R3 G2

62) Trydnt: Build G1 Trydnt

63) Simon: Build R3 G2b
	Trydnt: I may resign soon. This too a very nasty turn for me
	Simon: Yeah. The extra g3 that I built at home, I felt it was a wash, but it turned out so strong. Many forced moves afterwards.

64) Trydnt: Build G1 Trydnt

65) Simon: Discover R3 G2b Y3 Y3

66) Trydnt: Discover G1 Trydnt B1 B1

67) Simon: Move R3 G2 B1

68) Trydnt: Build G3 Trydnt

69) Simon: Attack G1 B1

70) Trydnt: Trade G1 B1 Trydnt

71) Simon: Discover Y1 G2b G1 G1b

72) Trydnt: Move G3 Trydnt G1b

73) Simon: Build G3 B1

74) Trydnt: Sacrifice R1 G2c
Attack Y1 G1b

75) Simon: Sacrifice Y3 Simon
Move R3 G1 Trydnt
Move R3 B1 Trydnt
Move G3 B1 Trydnt

76) Trydnt: Sacrifice R2 G2c
Attack R3 Trydnt
Attack R3 Trydnt

77) Simon: Sacrifice R3 Y3
Attack R3 Trydnt
Attack R3 Trydnt
Attack G3 Trydnt

78) Trydnt: Move G3 G1b Trydnt

79) Simon: Sacrifice R2 G1
Attack G3 Trydnt
Attack B1 Trydnt



36182)
Started: 2020.5.5, Ended: 2020.7.1
Participants: thecolorbrown (S), eliscinsky (W), Draw5PlayAll (N), pould_ (E)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) eliscinsky: H B1 R2 G3
	Draw5PlayAll: Announcer: Welcome everyone to another EXCITING GAME of the Homeworlds Four Captain Madness! I am your anonymous host and today we are set for a really interesting game. North seat has started us off with a rather basic homeworld setup.
	eliscinsky: Now what?
	Draw5PlayAll: ...
	eliscinsky: Based on pould_'s profile, "he" was online in late March, but disappeared around April 5th. So now what? Do we eliminate pould_, and move on? Or end the game? 
	Draw5PlayAll: I say we end the game.
	eliscinsky: Works for me. What say you, thecolorbrown?
	eliscinsky: ... and I guess thecolorbrown is speechless. LOL 

Guess it's time to terminate. 

3) Draw5PlayAll: Build G1 Draw5playall
	eliscinsky: Draw5PlayAll ... umm ... now what?  LOL

4) eliscinsky: Build G1 Eliscinsky
	Draw5PlayAll: I mean, we CAN play a game with 5 of each piece... it might be interested... or I can just resign.
	eliscinsky: WTF, Let's give it a go. LOL!

5) Draw5PlayAll: Trade G1 Y1 Draw5playall
	eliscinsky: At the very least the board will be interesting.

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Draw5PlayAll: Build G1 Draw5playall

8) eliscinsky: B G1 Eliscinsky

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) eliscinsky: T G1 R1 Eliscinsky

11) Draw5PlayAll: Build G1 Draw5playall

12) eliscinsky: B G1 Eliscinsky

13) Draw5PlayAll: Trade G1 R1 Draw5playall

14) eliscinsky: Trade G1 B1 Eliscinsky

15) Draw5PlayAll: Build G1 Draw5playall

16) eliscinsky: Build G1 Eliscinsky

17) Draw5PlayAll: Discover G1 Draw5playall B2 Taxation

18) eliscinsky: Discover G1 Eliscinsky B3 Representation

19) Draw5PlayAll: Discover B1 Draw5playall G2 Dreams

20) eliscinsky: D B1 Eliscinsky G3 Hopes

21) Draw5PlayAll: Build Y1 Draw5playall
	eliscinsky: Can't have one without the other. ;)

22) eliscinsky: B Y1 Eliscinsky

23) Draw5PlayAll: Move Y1 Draw5playall Dreams

24) eliscinsky: Move Y1 Eliscinsky Hopes

25) Draw5PlayAll: Build G1 Taxation

26) eliscinsky: Build G1 Representation

27) Draw5PlayAll: Move R1 Draw5playall Taxation

28) eliscinsky: M R1 Eliscinsky Representation

29) Draw5PlayAll: Build B1 Dreams
	eliscinsky: So far I like the moves you've shown me.  That's why I copied them.  :D  LOL

30) eliscinsky: Build R1 Representation

31) Draw5PlayAll: Discover B1 Dreams G1 Peace

32) eliscinsky: Build G2 Eliscinsky

33) Draw5PlayAll: Build G2 Draw5playall

34) eliscinsky: Trade G2 Y2 Eliscinsky

35) Draw5PlayAll: Trade G2 Y2 Draw5playall

36) eliscinsky: Build G2 Eliscinsky

37) Draw5PlayAll: Move Y2 Draw5playall Taxation

38) eliscinsky: Sacrifice Y2 Eliscinsky
Discover G1 Representation Y2 Love
Move R1 Representation Love

39) Draw5PlayAll: Build G2 Draw5playall

40) eliscinsky: Build G2 Representation

41) Draw5PlayAll: Trade G2 R2 Draw5playall

42) eliscinsky: Build G2 Love

43) Draw5PlayAll: Build G2 Draw5playall

44) eliscinsky: Trade G2 Y2 Representation

45) Draw5PlayAll: Discover G1 Taxation Y3 Inflation

46) eliscinsky: Sacrifice Y2 Representation
Move G1 Love Draw5playall
Move G2 Love Draw5playall
Catastrophe Draw5playall G

47) Draw5PlayAll: Build G1 Taxation

48) eliscinsky: Trade G2 Y2 Eliscinsky
	Draw5PlayAll: There are no causal relations between the name of those two stars.
	eliscinsky: LOL

49) Draw5PlayAll: Move G1 Taxation Draw5playall

50) eliscinsky: Build G2 Representation

51) Draw5PlayAll: Build G2 Inflation

52) eliscinsky: Sacrifice G1 Representation
Build R1 Love

53) Draw5PlayAll: Trade R2 Y2 Draw5playall

54) eliscinsky: Sacrifice Y2 Eliscinsky
Move R1 Love Draw5playall
Move R1 Love Draw5playall

55) Draw5PlayAll: Build R2 Taxation

56) eliscinsky: Sacrifice G2 Representation
Build R2 Representation
Build R2 Draw5playall
Catastrophe Draw5playall R
	Draw5PlayAll: By the way, "Love" should have been green.

57) Draw5PlayAll: Move R2 Taxation Hopes

58) eliscinsky: Sacrifice Y1 Hopes
Discover B1 Hopes G1 Recession
	Draw5PlayAll: I guess that's moot now.

59) Draw5PlayAll: Move Y2 Taxation Recession
	eliscinsky: Well... I had other plans. Just hope I can finish up.  This is usually where I stumble, trip, and fall down (aka lose).
	Draw5PlayAll: I'll see to it that you do all those things.

60) eliscinsky: Build Y1 Eliscinsky

61) Draw5PlayAll: Sacrifice R1 Taxation
Attack B1W Recession
	Draw5PlayAll: Of course, the 1.667x economy is really screwing me up.

62) eliscinsky: Move Y1 Eliscinsky Representation

63) Draw5PlayAll: Move B1 Dreams Inflation

64) eliscinsky: Move R2 Representation Taxation

65) Draw5PlayAll: Sacrifice G1 Taxation
Build B1 Inflation

66) eliscinsky: Trade R2 G2 Taxation

67) Draw5PlayAll: Build R1 Hopes

68) eliscinsky: B G1 Taxation

69) Draw5PlayAll: Build B2 Peace

70) eliscinsky: T G1 R1 Taxation

71) Draw5PlayAll: Trade B2 R2 Peace

72) eliscinsky: Build G1 Taxation

73) Draw5PlayAll: Move G1 Inflation Eliscinsky

74) eliscinsky: S G2 Taxation
B G2 Taxation
B Y1 Eliscinsky

75) Draw5PlayAll: Sacrifice G2 Inflation
Build G2 Eliscinsky
Build G2 Eliscinsky
Catastrophe Eliscinsky Green

76) eliscinsky: T Y1 G1 Eliscinsky

77) Draw5PlayAll: Sacrifice Y1 Dreams
Move R2 Hopes Eliscinsky

78) eliscinsky: Move R1 Representation Eliscinsky

79) Draw5PlayAll: Sacrifice R2 Peace
Attack Y1W Eliscinsky
Attack G1W Eliscinsky
	eliscinsky: Wow, nicely done. Not sure what I can do to get out of this one. 

80) eliscinsky: A G1N Eliscinsky
	eliscinsky: Just don't think I'm going to pull this off. Excellent game all the same. 

81) Draw5PlayAll: Sacrifice R2 Eliscinsky
Attack G1W Eliscinsky
Attack R1W Eliscinsky
	Draw5PlayAll: I was worried you would notice what I was up to and stop it somehow.
	eliscinsky: It's my flaw, as in chess, I can't seem to see past the 2nd round of moves. Ah well, congrats! 

	Draw5PlayAll: Good game. I'm glad we played it.
	eliscinsky: Yes, GG. Same here ... glad we played.


36392)
Variants: "Unrated"
Started: 2020.5.5, Ended: 2020.5.29
Participants: Babamots (S), amoscai (N)
Winner: amoscai

1) amoscai: Homeworld B1 Y2 G3
	amoscai: hi
	amoscai: I generally see people start with yellow and blue home and a g3. 
	Babamots: Hi! Good to meet you! Did you take my "learning game" challenge? If so, how much advice would you like? I can be pretty talkative, but I don't want to give too much away if you only want occasional hints.

Yes, a blue-yellow home with green ship is a popular start. I prefer a blue-red home with a green ship most of the time, but I just lost a game to a blue-yellow home, so what do I know? :-D

Looks like you've played about a dozen HW games here on SDG. Have you played some games elsewhere, or is that your full experience?
	amoscai: this is my full experience. heh. need to get more plays because I feel pretty 'beginner'. Yes. I am open to however much you think is useful for both of us.
	Babamots: Just FYI, the players who have "standing challenges" on SDG are usually pretty good. I see you just played wil and Trydnt, who are both very strong players.

If you're having a hard time finding players who match your skill level, you can try this page:

http://superdupergames.org/main.html?page=listusers

The page loads super slowly, but it has a score for each HW player as well as when they were last on the site (so you can find someone who's active).
	amoscai: thanks for that! sorry I didn't log in for so long. I usually only check when I get the email notification that it's my turn.

2) Babamots: Homeworld G3 B1 B3 *

3) amoscai: Build G1 Amoscai
	Babamots: So you know, I'm trying to "instafreeze" you out of blues. Before too long, you'll probably need to trade your g3 for b3 to prevent me from running away with the whole blue stash, larges and all.

By chance, we actually chose the exact same homeworld setups that I used for my tactics guide on instafreezes here:

https://jpeterbaker.github.io/homeworlds/site/tactics.html#instafreeze
	amoscai: wow. fantastic. thanks! 

4) Babamots: Build B1 Babamots

5) amoscai: Build G1 Amoscai

6) Babamots: Trade B3 Y3 Babamots

7) amoscai: Discover G1 Amoscai B3 B3

8) Babamots: Build B2 Babamots

9) amoscai: Build G1 B3

10) Babamots: Discover B1 Babamots B2 Bolarus

11) amoscai: Build G2 Amoscai

12) Babamots: Build B2 Babamots

13) amoscai: Trade G3 B3 Amoscai

14) Babamots: Discover B2 Babamots Y2 Iconia

15) amoscai: Trade G2 Y2 Amoscai
	Babamots: You should notice that you're in what I call a blue soft-freeze. You have a blue ship, but if you build another one, there's a danger of me overpopulating your home with blue. That wouldn't be the end of the world since it would cost me my only large ship as well, but make sure you're prepared for that if you build a b3.
	amoscai: yeah. I thought about that (: thanks for pointing it out. soft-freeze. I like that term.

16) Babamots: Build B3 Babamots

17) amoscai: Build G2 B3
	Babamots: I also like that "soft-freeze" reminds me of soft-serve ice cream or a Slurpee.

18) Babamots: Discover B2 Iconia G3 Risa

19) amoscai: Build G2 Amoscai
	Babamots: I'm considering destroying your blue star and b3 ship on my next turn. That would connect our homes, and since I would be the only one with a large, I'd probably be able to win pretty soon after that.

Your best defense is probably to trade your b3 for another color, but that does give me a chance to build another b3 ships. You could also move your b3 out of your home, but that leaves your home without a defending large. I'm afraid you'll have to pick between some not-so-great choices.

20) Babamots: Sacrifice Y3 Babamots
Move B1 Bolarus Risa
Move B1 Risa Amoscai
Move B2 Risa Amoscai
Catastrophe Amoscai B
	amoscai: yeah. I did consider that. one or two steps earlier in fact. but I've not played enough to know how to properly counter and I'm kinda not willing enough to devote the time to map out all the possibilities. hence, I'm going to probably see what happens after our planets are connected.
	Babamots: That's fine. I just didn't want you to be blindsided. :-)

21) amoscai: Move G1 Amoscai Babamots

22) Babamots: Trade B2 Y2 Babamots

23) amoscai: Build G2 Babamots

24) Babamots: Trade B3 R3 Babamots

25) amoscai: Sacrifice G2 B3
Build G2 Babamots
Build G3 Amoscai
Catastrophe Babamots Green
	Babamots: You've found a way to make this exciting. :-)

26) Babamots: Discover Y2 Babamots G3 Pakled
	amoscai: I thought about it (:
I still think I have some issues to overcome though

27) amoscai: Trade G1 B1 B3
	Babamots: Oh jeez, I'm in more of a bind than I expected. If I move in now, you move your yellow to my home and double build.

28) Babamots: Build Y1 Pakled

29) amoscai: Build B1 B3

30) Babamots: Discover Y1 Pakled G1 Betazed

31) amoscai: Sacrifice Y2 Amoscai
Move B1 B3 Babamots
Move B1 B3 Babamots

32) Babamots: Pass

33) amoscai: Sacrifice G1 B3
Build B2 Babamots
Catastrophe Babamots Blue
	Babamots: Not foreseeing that opportunity you would have had to move in with your yellow and double build has cost me. I wish now I'd kept my mouth shut and just hoped you didn't see it. :-D

	Babamots: Welp, ya got me. Let that be a lesson to both of us about spending too much for only one star. GG.
	amoscai: thanks for all the helpful tips!


36307)
Variants: "Unrated"
Started: 2020.5.6, Ended: 2020.5.8
Participants: StormCrow (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: Hi StormCrow! Looks like you're new to SDG. Is this your first Homeworlds game?

2) StormCrow: Homeworld R3 B2 G3
	StormCrow: My first homeworlds game on SDG, I've played a few times IRL.

3) Babamots: Build G1 Babamots
	StormCrow: Familiar with basic strategy, but probably a little stale.

4) StormCrow: Build G1 Stormcrow
	Babamots: Let me know if you have any trouble with the controls. The commands for HW are easier to figure out than some other games on SDG, but there are a few quirks. I think you have to put each sacrifice action on a new line, for example.

5) Babamots: Trade G1 Y1 Babamots

6) StormCrow: Trade G1 Y1 Stormcrow

7) Babamots: Build G1 Babamots

8) StormCrow: Build G1 Stormcrow

9) Babamots: Trade G1 R1 Babamots

10) StormCrow: Discover G1 Stormcrow B1 Zark

11) Babamots: Build R1 Babamots

12) StormCrow: Build G1 Stormcrow

13) Babamots: Discover R1 Babamots G2 Orion

14) StormCrow: Build G1 Zark

15) Babamots: Build R2 Orion

16) StormCrow: Build G2 Zark

17) Babamots: Move Y1 Babamots Orion

18) StormCrow: Trade G2 R2 Zark

19) Babamots: Discover R1 Orion B1 Andoria

20) StormCrow: Build R2 Zark

21) Babamots: Sacrifice G3 Babamots
Build R3 Babamots
Build R3 Orion
Build Y1 Orion

22) StormCrow: Build G2 Zark
	StormCrow: Yea, that R2 build screamed mistake right after I did it.

23) Babamots: Move R3 Orion Zark

24) StormCrow: Sacrifice Y1 Stormcrow
Discover R2 Zark Y2 Frobaz

25) Babamots: Sacrifice R1 Babamots
Attack R2 Zark
	Babamots: Yeah, I'm afraid it's going to cost you.

26) StormCrow: Build G2 Zark
Catastrophe Zark G

27) Babamots: Trade R3 G3 Zark
	StormCrow: At least I can deny you a few ships

28) StormCrow: Trade G1 Y1 Stormcrow

29) Babamots: Build R1 Orion

30) StormCrow: Build Y2 Stormcrow

31) Babamots: Build R3 Zark
	Babamots: An old naval tradition.

32) StormCrow: Trade Y2 G2 Stormcrow

33) Babamots: Build Y2 Orion

34) StormCrow: Build Y2 Stormcrow

35) Babamots: Move Y1 Orion Zark

36) StormCrow: Discover Y1 Stormcrow G1 Polaris

37) Babamots: Sacrifice G3 Zark
Build Y3 Orion
Build Y3 Zark
Build Y3 Zark

38) StormCrow: Move Y2 Stormcrow Zark
Catastrophe Zark Y

39) Babamots: Move Y3 Orion Zark
	Babamots: Don't forget the catastrophe :-)

40) StormCrow: Trade G2 Y2 Stormcrow
	StormCrow: Yea, caught it pretty quick

41) Babamots: Move Y2 Orion Andoria

42) StormCrow: Build Y1 Polaris

43) Babamots: Build Y3 Orion

44) StormCrow: Build Y3 Stormcrow

45) Babamots: Discover Y1 Orion B3 Betazed

46) StormCrow: Discover Y1 Polaris B2 Romulus

47) Babamots: Trade R3 G3 Zark

48) StormCrow: Move R2 Frobaz Polaris

49) Babamots: Build R3 Zark

50) StormCrow: Build Y2 Polaris

51) Babamots: Trade R2 B2 Zark

52) StormCrow: Build R2 Polaris

53) Babamots: Build B1 Zark

54) StormCrow: Move R2 Polaris Romulus

55) Babamots: Trade R3 B3 Babamots

56) StormCrow: Build R3 Polaris

57) Babamots: Move R3 Zark Stormcrow

58) StormCrow: Attack R3 Stormcrow

59) Babamots: Sacrifice Y3 Orion
Move R1 Orion Andoria
Move R1 Andoria Stormcrow
Move R1 Andoria Stormcrow
Catastrophe Stormcrow R

60) StormCrow: Trade R2 G2 Romulus

61) Babamots: Sacrifice Y2 Andoria
Move B2 Zark Stormcrow
Move B1 Zark Stormcrow

62) StormCrow: Sacrifice R2 Polaris
Attack B1 Stormcrow
Attack B2 Stormcrow
	StormCrow: Not that this was a fair fight, considering your experience, but congratulations and thanks for the game :)
	StormCrow: Oh, i see you're not quite to the point where you can crush me.  Although i guess only a move or 2

63) Babamots: Sacrifice Y3 Zark
Move G3 Zark Orion
Move G3 Orion Babamots
Move B3 Babamots Stormcrow
Catastrophe Stormcrow B
	Babamots: Getting crushed by experienced players is the traditional way to get better at Homeworlds :-). I hope you feel you've gained some valuable experience.
	Babamots: http://superdupergames.org/main.html?page=listusers&sort=homeworlds

This page loads super slowly, but it'll give you a list of SDG players in order of their Homeworlds score as well as how long it's been since they were on the site. If you'd like to pick an *active* opponent with a particular skill level, this is a good place to look.

	Babamots: I noticed that I was in "check" once after you moved your r2 closer to my home, here:

http://www.superdupergames.org/?page=archive_play&gid=36307&idx=53

I had always planned to trade my r3 for b3, but your move made it urgent.
	Babamots: GG! Thanks for the game!
	StormCrow: I came across your guide when browsing your profile after we started playing. Figures I picked an expert to play against for my first game.  Thanks again for the schooling, and for the links.
	StormCrow: And yes, that one point there was where I held the most hope for a mistake on your part.  Something that might get missed in a fast RL game that is easier to remember to look for when playing async
	Babamots: Yeah, when I lose IRL, it's usually to a missed catastrophe. I miss them on SDG too, but much less often.
	Babamots: We can play another match if you'd like, maybe a practice game with open discussion of plans and strategy advice?
	StormCrow: Sure, I'd enjoy that


36399)
Variants: "Unrated"
Started: 2020.5.6, Ended: 2020.5.13
Participants: Babamots (S), capi3101 (N)
Winner: capi3101

1) capi3101: Homeworld G1 B3 Y3
	capi3101: Hello again.

2) Babamots: Homeworld B2 G1 G3 *
	capi3101: I was running low on active games...I've got four going on right now and two of them are against players who haven't moved for more than thirty days. I'd terminate the games but with the quarantine going on I figure there's the off-chance my opponents have more important things on their minds...
	capi3101: I suppose it's possible that they don't realize it's been their turn for a month. Doesn't strike me as likely though.
	Babamots: Sometimes you can get people's attention by clicking the "Call an Admin" button. Unless they've changed their settings, they'll get an email about the game. And Aaron the Admin isn't actually responding to the button anymore, so it's just a "pause game time and notify my opponent" button.

3) capi3101: Build Y1 Capi3101
	capi3101: I don't know why I wouldn't be concerned about an Instafreeze on green...the last two games I've won have been via green ships...

4) Babamots: Build G1 Babamots

5) capi3101: Trade Y3 G3 Capi3101
	capi3101: Though if I were overly concerned, a small red star would probably be the best defense against the insta-freeze strategy, with yellow second. Just an observation.
	Babamots: Well, if you've been reading my guides, you'll know how to deal with an instafreeze, right? :-)
	capi3101: Yep. Like that.
	Babamots: It looks like the site is having some kind of problem. I see your move listed in the log, but I have an "Undo" option rather than a command entry box. What does your page look like?
	capi3101: Looks like I didn't move over here.
	capi3101: Still got a y3 at my homeworld instead of a g3.
	capi3101: I'll try resubmitting.

6) Babamots: Trade G3 Y3 Babamots
	capi3101: Got a game of Zendo going on where things got wonky just yesterday...number Zendo, but apparently an opponent of mine submitted a koan (VirtuaGirl) or something like that.

7) capi3101: Build G2 Capi3101
	capi3101: Looks good now.

8) Babamots: Build G2 Babamots

9) capi3101: Discover G2 Capi3101 B2 Zulu

10) Babamots: Trade G1 R1 Babamots
	capi3101: Mixing it up this time - going NATO phonetic in reverse...
	capi3101: Because that end of the alphabet never gets any love.
	Babamots: Which Zendo game are you talking about? You're in several and I don't see a opponent name that looks like "VirtuaGirl."

11) capi3101: Trade Y1 R1 Capi3101
	capi3101: That wasn't an opponent name...it was supposed to be a koan. All the more weirder since it's a number Zendo game. #36257
	capi3101: Ugh. Red.

12) Babamots: Build Y1 Babamots
	capi3101: No...I want to be able to sac it.

13) capi3101: Build G1 Zulu
	Babamots: If koans are supposed to consist of numbers, I think the master should say that text submissions aren't valid and reject the koan.

14) Babamots: Discover G2 Babamots B3 Bolarus
	capi3101: They did; the player in question couldn't figure out how that got submitted for them in the first place, though...

15) capi3101: Trade G1 Y1 Zulu

16) Babamots: Move Y1 Babamots Bolarus

17) capi3101: Build G1 Capi3101

18) Babamots: Sacrifice Y3 Babamots
Move G2 Bolarus Zulu
Move G2 Zulu Capi3101
Catastrophe Capi3101 G
Discover Y1 Bolarus R1 Romulus
	capi3101: Sorry for the delay...was weighing a likelihood.

19) capi3101: Sacrifice G2 Zulu
Build R2 Capi3101
Build R2 Capi3101
	Babamots: Hardly a delay. I think of one move per day as the standard on SDG.
	Babamots: I'm intrigued by these positions where someone can choose to destroy an enemy home star but leaving themselves vulnerable. I usually say it's a bad idea, but it's always tempting.

20) Babamots: Build R2 Babamots

21) capi3101: Trade R2 Y2 Capi3101
	Babamots: Not sure if this will work out for me, but we'll see.
	capi3101: Well, so much for weighing likelihoods...

22) Babamots: Trade R1 Y1 Babamots
	capi3101: I hate small battlefields.

23) capi3101: Trade R2 G2 Capi3101
	Babamots: Microverse will keep you on your toes, that's for sure.

24) Babamots: Discover Y1 Romulus G3 Orion

25) capi3101: M Y1 Zulu Orion

26) Babamots: Build R1 Babamots

27) capi3101: Build R1 Capi3101

28) Babamots: Sacrifice R1 Babamots
Attack Y1 Orion
	capi3101: I know making moves at 1:45 AM is a bad idea...I don’t know ~why~ I keep on doing it...
	capi3101: Tonight it’s the weather. Bit loud out there right now.

29) capi3101: Build R1 Capi3101
	Babamots: I had to make some rules for myself: no late night moves, no moves while getting ready for church, no moves on my phone to stave off boredom.

30) Babamots: Build Y2 Babamots
	Babamots: Thought I saw a problem with this move but now I can't think of it, so what the heck.

31) capi3101: Build Y2 Capi3101
	capi3101: Those are some good rules; might have to implement them my own self.

32) Babamots: Build Y3 Orion
	capi3101: Damn. Should've stuck to my plan instead of getting greedy.
	capi3101: Well, this is a dumb idea, but...

33) capi3101: Sacrifice Y2 Capi3101
Move Y2 Capi3101 Babamots
Move Y2 Babamots Orion
Catastrophe Orion Y

34) Babamots: Build R2 Babamots
	capi3101: I wonder.
	capi3101: Ah. That's not going to work...the two systems are the same size.
	capi3101: Well, let's try this then. It'll probably cost me the game but...


35) capi3101: Trade R1 Y1 Capi3101

36) Babamots: Trade R2 B2 Babamots

37) capi3101: T R1 B1 Capi3101

38) Babamots: Discover B2 Babamots G3 Risa

39) capi3101: B Y1 Capi3101

40) Babamots: Build B1 Risa
	Babamots: I'm feeling pretty good about this now :-)
	capi3101: No doubt.

41) capi3101: D B1 Capi3101 Y2 Yankee

42) Babamots: Move Y1 Babamots Risa

43) capi3101: Discover Y1 Capi3101 B2 Xray

44) Babamots: Trade B2 G2 Risa

45) capi3101: Build G1 Capi3101

46) Babamots: Build B1 Risa

47) capi3101: Sacrifice G1 Capi3101
Build B2 Yankee

48) Babamots: Discover B1 Risa G2 Bajor

49) capi3101: Discover B2 Yankee B3 Whiskey

50) Babamots: Build B3 Bajor

51) capi3101: Sacrifice G2 Capi3101
Build Y2 Xray
Build Y3 Capi3101

52) Babamots: Sacrifice Y2 Babamots
Move B3 Bajor Capi3101
Move B1 Bajor Capi3101
	capi3101: I foresee a pair of large blue ships against me in the near future...
	capi3101: At the very least, a disadvantage in large is forthcoming.

53) capi3101: A B3 Capi3101

	capi3101: You’re going to green me to death. Well played. 
	capi3101: Where did I lose this one?
	capi3101: Wait...
	Babamots: Oh shoot, we're out of blue, aren't we? Hmm. Looks like I should have been more patient.
	capi3101: Maybe not. I sense the game about to end but I don’t see the how of it.
	Babamots: Doh! GG!
	Babamots: Perhaps we've both learned a few things this game ;-)
	capi3101: Indeed. Very good game; I’ll gladly accept the rematch.


36275)
Variants: "Hard time"
Started: 2020.5.8, Ended: 2020.5.25
Participants: dlwillson (S), StormCrow (N)
Winner: dlwillson

1) StormCrow: Homeworld R1 B2 G3
	StormCrow: Good luck, have fun

2) dlwillson: H B1 R3 G3 Dlwillson

3) StormCrow: Build G1 Stormcrow
	dlwillson: You too

4) dlwillson: B G1 Dlwillson

5) StormCrow: Trade G1 Y1 Stormcrow

6) dlwillson: T G1 Y1 Dlwillson

7) StormCrow: Build G1 Stormcrow

8) dlwillson: B G1 Dlwillson

9) StormCrow: Discover G1 Stormcrow Y3 Zork

10) dlwillson: T G1 B1 Dlwillson

11) StormCrow: Build G1 Zork

12) dlwillson: B B1 Dlwillson

13) StormCrow: Build G1 Stormcrow

14) dlwillson: B G2 Dlwillson

15) StormCrow: Build G2 Zork

16) dlwillson: Discover B1 Dlwillson Y2 Sol

17) StormCrow: Move G1 Zork Sol

18) dlwillson: S G2 Dlwillson
B B2 Sol
B B2 Sol

19) StormCrow: Build G2 Sol

20) dlwillson: D B2 Sol G3 Forest

21) StormCrow: Build G2 Zork

22) dlwillson: B B3 Dlwillson

23) StormCrow: Discover G2 Sol B3 Xyzzy

24) dlwillson: B B3 Forest

25) StormCrow: Trade G2 R2 Xyzzy

26) dlwillson: S B2 Forest
T B2 R2 Sol
T B3 R3 Dlwillson

27) StormCrow: Sacrifice G1 Sol
Build R1 Xyzzy

28) dlwillson: S G3 Dlwillson
B B2 Dlwillson
B B2 Forest
B B3 Forest

29) StormCrow: Build Y1 Stormcrow

30) dlwillson: T B3 Y3 Forest

31) StormCrow: Discover Y1 Stormcrow G3 Omega

32) dlwillson: B B3 Forest

33) StormCrow: Build Y2 Omega

34) dlwillson: T B2 G2 Dlwillson

35) StormCrow: Discover G2 Zork B2 Alpha

36) dlwillson: Sacrifice G2 Dlwillson
Build Y2 Forest
Build Y3 Dlwillson

37) StormCrow: Sacrifice G2 Zork
Build G1 Zork
Build G2 Alpha

38) dlwillson: Sacrifice Y3 Dlwillson
Move B3 Forest Stormcrow
Move B3 Forest Stormcrow
Move Y3 Forest Stormcrow

39) StormCrow: Sacrifice R2 Xyzzy
Attack Y3 Stormcrow
Attack B3 Stormcrow

40) dlwillson: S R3 Dlwillson
A Y3 Stormcrow
A B3 Stormcrow
A G3 Stormcrow

	StormCrow: The direct invasion wasn't what I was expecting there.  I had been expecting the blue catastrophe.

Anyway, good game
	dlwillson: Thanks! If you want to play a learning game where we discuss strategy, let me know. I'm not the best player, but I'm OK sometimes.


36304)
Variants: "Hard time"
Started: 2020.5.8, Ended: 2020.6.8
Participants: StormCrow (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	StormCrow: Good luck, have fun

2) StormCrow: Homeworld R2 B3 G3

3) Trydnt: Build G1 Trydnt

4) StormCrow: Build G1 Stormcrow

5) Trydnt: Trade G1 Y1 Trydnt
	Trydnt: Good luck to you too! I don't believe we've played before are you new to SDG or coming out of retirement?

6) StormCrow: Trade G1 Y1 Stormcrow
	StormCrow: New to SDG, I recently completed my first homeworlds game here.  Some light RL experience playing

7) Trydnt: Build Y2 Trydnt

8) StormCrow: Build Y2 Stormcrow

9) Trydnt: Trade Y1 R1 Trydnt

10) StormCrow: Discover Y1 Stormcrow G1 Zork

11) Trydnt: Discover Y2 Trydnt G3 G3

12) StormCrow: Build G1 Stormcrow

13) Trydnt: Build R1 Trydnt

14) StormCrow: Trade G1 R1 Stormcrow

15) Trydnt: Build R2 Trydnt

16) StormCrow: Build Y1 Zork

17) Trydnt: Discover Y2 G3 G1 G1

18) StormCrow: Build R2 Stormcrow

19) Trydnt: Discover R2 Trydnt Y3 Y3

20) StormCrow: Move R2 Stormcrow Zork

21) Trydnt: Trade R1 B1 Trydnt

22) StormCrow: Build Y2 Zork

23) Trydnt: Build Y3 G1

24) StormCrow: Build Y3 Stormcrow

25) Trydnt: Build B1 Trydnt

26) StormCrow: Discover Y1 Zork G3 Xyzzy

27) Trydnt: Move B1 Trydnt Y3

28) StormCrow: Trade Y2 B2 Stormcrow

29) Trydnt: Discover Y2 G1 Y2 Y2

30) StormCrow: Move B2 Stormcrow Zork

31) Trydnt: Move B1 Y3 G1

32) StormCrow: Move R2 Zork Xyzzy

33) Trydnt: Build B1 G1

34) StormCrow: Build B2 Zork

35) Trydnt: Trade B1 R1 G1

36) StormCrow: Build R3 Xyzzy

37) Trydnt: Build R3 G1

38) StormCrow: Move B2 Zork Xyzzy

39) Trydnt: Build R3 Trydnt

40) StormCrow: Move R1 Stormcrow Zork

41) Trydnt: Sacrifice Y2 Y2
Move R3 Trydnt Y3
Move R3 Y3 Zork

42) StormCrow: Sacrifice Y2 Zork
Move B2 Zork Xyzzy
Move B2 Xyzzy Trydnt

43) Trydnt: Sacrifice B1 Trydnt
Trade R3 B3 Zork

44) StormCrow: Build Y2 Xyzzy

45) Trydnt: Attack B2 Trydnt

46) StormCrow: Discover Y1 Zork B3 Bagel

47) Trydnt: Move R3 G1 Bagel

48) StormCrow: Discover Y1 Bagel G2 Hulk

49) Trydnt: Build R3 G1

50) StormCrow: Build B1 Xyzzy

51) Trydnt: Move B2 Trydnt Y3

52) StormCrow: Build Y2 Hulk

53) Trydnt: Move R3 G1 Y3

54) StormCrow: Trade Y2 G2 Xyzzy

55) Trydnt: Sacrifice R2 Y3
Attack R1 Zork
Pass

56) StormCrow: Build Y2 Xyzzy

57) Trydnt: Move R3 Y3 Hulk

58) StormCrow: Sacrifice Y1 Hulk
Discover Y2 Hulk B1 Smash

59) Trydnt: Sacrifice B2 Y3
Trade R3 Y3 Bagel
Pass

60) StormCrow: Build Y1 Stormcrow

61) Trydnt: Build B2 G1

62) StormCrow: Sacrifice Y2 Smash
Move B1 Xyzzy Trydnt
Move B2 Xyzzy Trydnt

63) Trydnt: Build B1 Zork

64) StormCrow: Build G1 Stormcrow

65) Trydnt: Build R2 Zork

66) StormCrow: Discover B2 Trydnt R3 Red

67) Trydnt: Trade R2 Y2 Zork

68) StormCrow: Build G2 Xyzzy

69) Trydnt: Sacrifice Y3 G1
Move B1 G1 Stormcrow
Move B3 Zork Stormcrow
Move R1 G1 Stormcrow

70) StormCrow: Attack B3 Stormcrow

71) Trydnt: Sacrifice Y3 Bagel
Move B1 Zork Stormcrow
Move R1 Zork Stormcrow
Catastrophe Stormcrow B
Discover R3 Hulk Y3 Y3

	StormCrow: Ah, a turn faster than I thought you could get there.  Congratulations
	Trydnt: Well played! Thought you might have me there for a minute


36357)
Variants: "Hard time"
Started: 2020.5.8, Ended: 2020.5.13
Participants: StormCrow (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	StormCrow: Good luck, have fun
	wil: Will do!
	wil: Will do!

2) StormCrow: Homeworld R1 B3 G3

3) wil: B G1 Wil

4) StormCrow: Build G1 Stormcrow

5) wil: T G1 B1 Wil

6) StormCrow: Trade G1 Y1 Stormcrow

7) wil: B B1 Wil

8) StormCrow: Build Y1 Stormcrow

9) wil: D B1 Wil Y3 Why3
	wil: Babamots, trident, dlw, you goin for big guns!
	wil: Getting prepped for medal competition?

10) StormCrow: Build Y1 Stormcrow

11) wil: B B2 Wil

12) StormCrow: Discover Y1 Stormcrow G2 Zork

13) wil: D B1 Wil Y3 Y3
	StormCrow: Mostly getting prepared to be whooped I think.  Well babamots has promised commentary on the game we're playing.

14) StormCrow: Build Y2 Zork
	wil: So far so good in this race

15) wil: Sacrifice G3 Wil
Build B2 Y3
Build B2 Why3
Build B3 Wil

16) StormCrow: Discover Y1 Zork B3 Xyzzy

17) wil: Trade B2 Y2 Y3

18) StormCrow: Build Y3 Zork

19) wil: Trade B2 G2 Wil

20) StormCrow: Build G1 Stormcrow

21) wil: T B2 G2 Why3

22) StormCrow: Trade Y1 R1 Stormcrow

23) wil: B B2 Wil

24) StormCrow: Build Y1 Stormcrow

25) wil: Trade B2 R2 Wil

26) StormCrow: Move G1 Stormcrow Zork

27) wil: D B1 Why3 R2 R2

28) StormCrow: Move Y3 Zork Y3

29) wil: Discover Y2 Y3 B2 B2

30) StormCrow: Discover Y1 Stormcrow R2 Deetwo

31) wil: Sacrifice G2 Why3
Build Y3 B2
Build G1 Wil

32) StormCrow: Sacrifice R1 Stormcrow
Attack B1 Y3

33) wil: S G2 Wil
B R1 Wil
B B2 R2

34) StormCrow: Trade Y3 R3 Y3

35) wil: D R2 Wil Y3 Why3

36) StormCrow: Sacrifice G1 Zork
Build B2 Y3

37) wil: B G1 Wil

38) StormCrow: Sacrifice Y2 Zork
Move B2 Y3 Wil
Move B1 Y3 Wil
Catastrophe Wil B

39) wil: Move R2 Why3 Wil

40) StormCrow: Sacrifice G3 Stormcrow
Build Y2 Deetwo
Build Y3 Stormcrow
Build R1 Y3
	wil: nice!

	wil: gg


41) wil: M Y3 B2 Stormcrow

42) StormCrow: Trade Y3 G3 Stormcrow
	StormCrow: yea, the trick is to finish cracking the nut

43) wil: S R2 Wil
A G3 Stormcrow
A Y1 Stormcrow
	wil: How did you come by your name?
	StormCrow: From Tolkien, I've used it since the 90s

	wil: Ah!  Ya done good there till the end!  What you missed is when you blew up half my homeworlds we were then connected and you could waltz right in and take over.

Challenge anytime 
	wil: Ah!  Ya done good there till the end!  What you missed is when you blew up half my homeworlds we were then connected and you could waltz right in and take over.

Challenge anytime 
	StormCrow: Good game.
	StormCrow: I think I didn't see a way to get ahead trying to take over the other half.
	StormCrow: Was afraid you'd just catastrophe red if i came in with the large red ship and that you'd take over anything else I brought
	wil: I was talking about s y2 deetwo, m g3, m r1 y3 wil


36415)
Variants: "Unrated"
Started: 2020.5.8, Ended: 2020.5.11
Participants: Babamots (S), StormCrow (N)
Winner: Babamots

1) StormCrow: Homeworld R3 B2 G3

2) Babamots: Homeworld Y2 B1 G3

3) StormCrow: Build G1 Stormcrow

4) Babamots: Build G1 Babamots
	StormCrow: Good Luck, have fun
	StormCrow: quick movement world this time i see

5) StormCrow: Trade G1 Y1 Stormcrow
	Babamots: Andy calls it the "quick start," but I think of it as the "Make it harder to get all the yellow ships I need" start. I generally think it's worse than blue-red, but I give it a try once in a while anyhow.

6) Babamots: Trade G1 Y1 Babamots

7) StormCrow: Build G1 Stormcrow

8) Babamots: Build G1 Babamots

9) StormCrow: Discover G1 Stormcrow Y1 Zork

10) Babamots: Build Y2 Babamots

11) StormCrow: Build Y2 Stormcrow

12) Babamots: Discover Y1 Babamots G3 Risa

13) StormCrow: Build G1 Zork
	Babamots: If I had a red star instead of a yellow, I could've built a y3 just now. It illustrates what I was saying earlier about yellow stars being weak. These contests for early yellow ships are common, so yellow home stars often hold you back.
	Babamots: On the other hand, a yellow home star can be nice later in the game. In this game, if YOU want a doomsday machine, you'll need three blue ships and lots of yellow. That may be harder to gather than what I need, which is some blue, some red, and some yellow. You'll have to really dominate the yellow economy for a doomsday machine whereas I will only need a modest share in three economies.

14) Babamots: Sacrifice G3 Babamots
Build Y3 Babamots
Build Y3 Risa
Build G2 Babamots

15) StormCrow: Discover G1 Zork Y3 Xyzzy
	Babamots: And that type of move is why I'm pretty convinced that it's always best to start with a large green ship. You can sacrifice it later for more larges.

16) Babamots: Trade Y3 R3 Babamots

17) StormCrow: Trade Y1 R1 Stormcrow

18) Babamots: Move R3 Babamots Xyzzy

19) StormCrow: Move G1 Xyzzy Babamots

20) Babamots: Sacrifice G2 Babamots
Build Y1 Risa
Build Y3 Babamots
	Babamots: I've leaving my home without a large, but I'm not too worried about it since you can't get there with a large in one turn, and I expect to be able to build another large there on my next turn (sacrificing g2).

21) StormCrow: Build G2 Stormcrow

22) Babamots: Trade Y2 R2 Babamots

23) StormCrow: Build Y2 Stormcrow

24) Babamots: Discover Y1 Risa B1 Bolarus

25) StormCrow: Build G2 Zork

26) Babamots: Attack G1 Babamots

27) StormCrow: Trade G2 B2 Stormcrow

28) Babamots: Trade G1 B1 Babamots

29) StormCrow: Discover R1 Stormcrow G1 Polaris

30) Babamots: Move R3 Xyzzy Zork

31) StormCrow: Sacrifice G2 Zork
Build R1 Polaris
Build G2 Stormcrow

32) Babamots: Attack G1 Zork

33) StormCrow: Move G2 Stormcrow Bolarus
	StormCrow: Yea, putting a third blue piece at home would have been dumb, let's find a better second build
	Babamots: Since I'm ahead on large ships, I would happily sacrifice a y3 to destroy one of your home stars, which I could do if you build another blue.

34) Babamots: Sacrifice G1 Babamots
Build Y3 Bolarus
	Babamots: You could rebuild your g2 at your home.
	Babamots: I see you were ahead of me :-)
	StormCrow: Felt that getting 2 builds was better than using a yellow to run or just leaving one ship behind there by escaping the g2 instead

35) StormCrow: Sacrifice R1 Polaris
Attack Y1 Bolarus
	Babamots: I think that was your best move.

36) Babamots: Sacrifice R2 Babamots
Attack Y1 Bolarus
Attack G2 Bolarus

37) StormCrow: Build R1 Polaris
	Babamots: My little ship found a big friend. :-)

38) Babamots: Trade Y3 R3 Bolarus

39) StormCrow: Move Y2 Stormcrow Polaris

40) Babamots: Build Y3 Bolarus

41) StormCrow: Move B2 Stormcrow Polaris

42) Babamots: Sacrifice Y3 Risa
Move Y3 Bolarus Stormcrow
Move R3 Bolarus Stormcrow
Pass

43) StormCrow: Attack R3 Stormcrow
	Babamots: Good, now I can't do that trade-rebuild trick with yellow anymore.

44) Babamots: Sacrifice R3 Zork
Attack R3 Stormcrow
Attack G3 Stormcrow
Attack Y2 Stormcrow
	Babamots: Hmm, I've been focused on building big ships and didn't notice how close I was to victory. If I'd noticed this a turn earlier, I'd've said something instructive and tried to formulate a desperate defense. As it is, you'll get a textbook example of a red-powered invasion.

	StormCrow: Thank you again for the complete defeat.  I need to learn how to get ahead in the ship race obviously, i seem behind quickly in all the games I play.
	Babamots: Sorry, I didn't give as much advice as I had intended. When I practice with people in-person, I can give timely warnings when they reach for bad moves, as in "Ooh, you're not going to want to do that and here's why." On SDG, I don't know what people are thinking until they've made the move, and by then it's a pain to back up.
	Babamots: The clearest problem spot in this game was your 7th move, just before I got way ahead in yellows.

http://www.superdupergames.org/?page=archive_play&gid=36415&idx=11

You would have benefitted from discovering a new system (of any color) with your y1. This would have done two things:
1) It spreads out your yellows, so you're prepared to build a y3 if I try any tricky sacrifice builds.
2) It also would have made it so you could catastrophe my home star if I did my sacrifice build right away (imagine the position below but with one of your g1's replaced by a y1. You can sacrifice your y2 to devastate my homeworld).

http://www.superdupergames.org/?page=archive_play&gid=36415&idx=13


36411)
Variants: "Hard time"
Started: 2020.5.10, Ended: 2020.6.6
Participants: dlwillson (S), phi_618 (N)
Winner: dlwillson

1) phi_618: Homeworld G1 B2 Y3

2) dlwillson: H R3 B1 G3
	phi_618: gl hf!

3) phi_618: Build Y1 Phi_618
	dlwillson: You too!
	phi_618: Here's some backstory for my civilization before I lose. :D
	phi_618: A war decades in the making is raging between two powerful civilizations; antipathies not a generation old fester to rival the most ancient of feuds: a quest for greater knowledge and understanding corrupted by bloodlust: history of relative peace forgotten in blind pursuit of otherwise laudable goal.

The official doctrine of the current government administration of the Kankinkni, a civilization developed under the auspices of Creation and Transformation, is to establish self-sustaining communities on new worlds, though detractors point out that exercising control over those communities may prove impossible. According to a recent study conducted by the KHAN!!! (Kankinkni Honest Association of Polling) says that 5 p/t (5 per/tex == 5/16: the Kankinkni use a hexadecimal base for most purposes) of bar fights (legally defined as a fight between a number of persons not exceeding 4, where all participants were under some non-zero degree of influence of intoxicating beverages and/or drugs, where no weapons were used, and where all parties appeared to be at least minimally amenable to the fight at the time of it's initiation) were primarily over disagreement over whether these colonies, if and once established, would prove bastions of peace and prosperity, or strongholds of tyranny wreaking terror through the galaxy.

Yet not all are on board with the war. There exists a minority, but very powerful, Kankinkni faction, the Kankinkni Diplomats, with members of standing scattered across worlds who seek a peaceful resolution, believing that by such means, the knowledge which all in their society seek may be more readily and effectatiously acquired. If the Kankinkni Diplomats are right, an alliance may be the route to the best outcome for all of Kankin.
	phi_618: oops, I messed up the acronym. I guess the Kankinkni Honest Association of Polling isn't so honest after all.

4) dlwillson: B G1 Dlwillson
	dlwillson: Good backstory! I like the proper definition of bar fight.

5) phi_618: Trade Y1 B1 Phi_618
	phi_618: Thank you, I'm experimenting with using things such as the Decktet, Tarot Cards, and the I Ching to generate prompts for rpg plots, world-building, random encounters, &c.. Here I used the Decktet and filled out details from there.

I should note that I made up the bar-fight definition. It's true for the Kankinkni (because I say so), but I'm not a lawyer and I have no idea how (or even if) "bar fight" is defined in the US or other Earth countries. I do think it seems like a reasonable formalization of what "feels" like it could be called a bar fight, though.

6) dlwillson: T G1 B1 Dlwillson

7) phi_618: Build B2 Phi_618

8) dlwillson: B B2 Dlwillson

9) phi_618: Discover B1 Phi_618 G3 Jokror
	phi_618: While still profitable, a relatively small trade federation by the name of Kanmar, watchful of market oversaturation looming on the horizon, takes the risk to send their largest ship to a new star: Jokror. Unfortunately, the planets orbiting Jokror are barren of sapient life. Without fuel enough to yet return home to Kankin, the bedraggled remnants of the once successful Kanmarkni must sustain themselves: not to profit, but even survive. Thus we leave the Jokrorkni: unwittingly trading prosperity for austerity.

10) dlwillson: T B1 Y1 Dlwillson

11) phi_618: Build Y1 Phi_618

12) dlwillson: D B2 Dlwillson G2 Field

13) phi_618: Trade Y1 G1 Phi_618

14) dlwillson: Build Y1 Dlwillson

15) phi_618: Build Y1 Phi_618

16) dlwillson: M Y1 Dlwillson Field

17) phi_618: Move Y1 Phi_618 Jokror

18) dlwillson: B Y2 Field

19) phi_618: Build Y2 Jokror

20) dlwillson: D Y1 Field G3 Forest

21) phi_618: Discover Y1 Jokror G1 Joranmund

22) dlwillson: B G2 Dlwillson
	phi_618: Kisyoutenketu

Kiku (the Island): The Jokrorkni have discovered sufficient raw resources on Jokror to maintain their growing fleet.

Syouku (the Consul): Kanochim (chim /xim/: son-of; Kanochim: son-of-Kanoch (not *Kano), due to haplology) has gained a good deal of respect as well as wealth for himself among the Jokrorkni, and not undeservedly, it may be said: he has established himself for resourceful solutions to the problems faced by a budding civilization no large misfortune from death. Some, of course, envy his wealth, but by and large his usefulness keeps such sentiments at bay, and Kanochim is more than capable of using that to his advantage; accruing an unknown quantity of resources, knoweledge, and allies as he, a Kachinkni (Diplomat, believed to be a portmanteau of "Kankin" and "Chinos" "king") aims for seccession of Jokror from Kankin in a bid to elevate the negotiating power of the Kachinkni to that of a sovereign state.

Tenku (the Penitent): Kanan (nan: daughter-of; Kanan: daughter-of-kan), the navigator of the original Kanmarkni trade ship which embarked to Jokror, {Spread: personality progression} {the Diplomat} was born into a family dedicated Kachinkni, {Ace of Wyrms} but rebelled against their ideals which she viewed not just as naive, but as a fundamentally fruitless endeavor good only to waste time draining the sea of chaos which would always find its level. {the Origin} She left home upon reaching the age of majority and wandered Kankin for the next few years, supporting herself through a combination of odd jobs (mostly legal, but some illegal drugs as well, which, while she avoided most of them, she had no particular antipathy towards; not compared to that towards those who outlawed them, in any case) and helping herself to what the wilds of Kankin have to offer those few who don't get trapped, lost, or killed. {the Forest} It was within these wilds, as she was wandering one day, having had a breakfast of berries wrapped in some edible leaves, contemplating philosophy, as she often did, {the Chance Meeting} when she came across Kanmarchim. Kanmarchim, though the son of Kanmar, was not set to take over Kanmar on his father's death, but this was no bother to him. He would be assured a quite comfortable job within its ranks for as long as he wished it regardless, and the stress of constant business dealings were not something he could imagine himself dedicating himself to. This was why he often left Kanmar property for weeks at a time, visiting one city or another, traveling the wilds one trip, the wastes the next. It was on just such a trip, as he was picking his way through the wilds of Kanmar, having but recently eaten a (mostly) cooked rabbit he had trapped overnight, contemplating a hand of Terrapin he had recently played with some of the men who worked the night shift at Kanmar, when he encountered Kanan. Talking over a hand of Terrapin, which they both soon discovered the other was far better at than they had initially assumed, (though it may be said that Kanmarchim was less surprised, as he had known his share of "everybodies" who could fleece f.f p/t of more well-to-do afficionados. In fact, this made it easier for him to find games, appearing as he did an easy mark) they came to an understanding. Having just gotten a fold with a 6-card Turtle Butt, Kanmarchim, adding the pool of sticks they were using as chips to his pile, raised the suggestion that Kanan cover for him once in while, filling out some of the more time-sensitive paperwork, in his absences. Kanan agreed, on the condition that she not have to sign any contract which would bind her to Kanmar, figuring that it was something she had not yet tried. {the Merchant} Over the next few years they continued in this way, until the work completed by one or the other bore little dissimilarity, not for their differences eroding, but becoming eachother's as well as their own. When the mission to Jokror was announced in a highly confidential meeting, Kanan was the first person not in the meeting to find out. She showed up at Kanmar's office that afternoon and asked to be assigned to the mission. Despite the fact that Kanan wasn't even employed at Kanmar, strictly speaking, though everyone knew more or less what was going on by this point, and that she definitely wasn't supposed to know about this mission, not that Kanmar expected anything else from Kanmarchim, (nor particularly minded: if that was the worst thing his son did, he could hardly complain) he acceeded to her request. Kanmarchim stayed behind at his father's request, though he would have much preferred to join her, by this point. Now, stranded on Jokror, Kanan finds herself wanting to return to Kankin and, more relevantly, Kanmar. Unfortunately for her, Kanochim is rapidly gaining support amongst the Jokrorkni.

Kekku {the Forest}: Deep in the wilds of Jokror Kanan hides one of Kanochim's ships; she suspects few if any know to what extent Kanochim truly controls Jokror. Silently, she gathers those who agree with her, many with families on Kankin, and leaves Jokror for a new destination wherefrom they can restock and thereafter return to Kankin: Joranmund.
	phi_618: Note: I am deciding on moves and then coming up with a story post facto, so all bad moves are my own, not influenced (at least consciously) by narrative convenience.
	dlwillson: I *love* playing this game with you! Do you do this in all your games?
	phi_618: Not yet; I decided to try it this game, and it's quite fun.
	phi_618: Next time I should probably force myself to write dialogue, as I'm terrible at it. Like, My Immortal bad.

23) phi_618: Build G2 Phi_618
	dlwillson: I don't know what "My Immortal bad" means.
	phi_618: The worst fanfiction ever written.

https://myimmortalrehost.webs.com/chapters122.htm
	dlwillson: Hm. I can't tell if it's satire or not.
	dlwillson: Gotta be satire.

'“Hi Draco!” I said in a depressed voice.'

24) dlwillson: S G3 Dlwillson
B Y2 Field
B Y3 Forest
B Y3 Dlwillson

25) phi_618: Move G2 Phi_618 Jokror

26) dlwillson: B G3 Dlwillson
	phi_618: So where do you think I went wrong this game? Was it just a tactical mistake last move, or was I already losing strategically (I suspect I was)?

27) phi_618: Move B1 Jokror Joranmund
	dlwillson: Well, we could start with your Homeworld choice. There are good reasons to choose blue/red, and good reasons to choose blue/yellow, but I haven't yet heard defense of the other combinations. Did you try blue/green on a lark, or was there a reason?
	phi_618: That's a good place to start. I knew that B/G/Y (or possibly B/G/R), but did not realize that the g3 would be more valuable than the y3.

Thanks for the reply. As long as I can improve one thing each game, I'm bound to improve, right? :D

28) dlwillson: Trade Y2 R2 Field

29) phi_618: Move B2 Phi_618 Jokror

30) dlwillson: M Y3 Forest Phi_618

31) phi_618: Build Y2 Phi_618

32) dlwillson: Sacrifice Y2 Field
Move Y1 Forest Phi_618
Catastrophe Phi_618 Y
Discover R2 Field Y3 Sol

33) phi_618: Build G3 Phi_618
	dlwillson: Incremental improvement will carry you far.
That said, I've learned a lot by reading and understanding a few people's strategy guides, too.
*That* said, nothing teaches like experience.
	dlwillson: Here's my first best strategy tip:
Remember there are only 3 ways to win:
1- Cat your opponent's stars.
2- Attack your opponent's ships in their home system.
3- Cat your opponent's ships in their home system.

Every turn, look for a path to a win. If there's no path to a win, look for a path to an economic or positional advantage.
Look for your opponent's paths to a win. Look for your opponent's paths to advantage.
Play to foil your opponent's best move *only* when you must, because you literally can't win that way.

34) dlwillson: Sacrifice Y3 Dlwillson
Move G3 Dlwillson Field
Move G3 Field Sol
Move G3 Sol Phi_618
Catastrophe Phi_618 G
	dlwillson: GG! TY!

Have you seen this strategy guide?
https://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy
	phi_618: I've read it twice, but that was a while ago and I always forget 90% of it.
	phi_618: Thanks for the Strategy tips as well.

I'll probably come back at some point to fill in/wrap up the story.
	dlwillson: Play a lot of games against players who are slightly stronger than you are.

I'm down for a teaching game any time. For that matter, we could play over Discord or Zoom and discuss the strategy of each move as we do it.

One more thought: Have you seen the "Homeworlds Theatre" series on YouTube? It's pretty fun and has the game's authors: John Cooper and Andy Looney.
	dlwillson: I meant Mumble or Jitsi, not Discord or Zoom.



36420)
Variants: "Hard time"
Started: 2020.5.11, Ended: 2020.6.1
Participants: goulo (S), deanthebean (N)
Winner: deanthebean

1) deanthebean: Homeworld Y1 B2 G3

2) goulo: Homeworld Y1 B3 G3
	deanthebean: Hello. Have fun!

3) deanthebean: Build G1 Deanthebean
	goulo: hi, you too!
	deanthebean: Thanks

4) goulo: Build G1 Goulo

5) deanthebean: Trade G1 Y1 Deanthebean

6) goulo: Trade G3 Y3 Goulo

7) deanthebean: Build Y2 Deanthebean

8) goulo: Build Y2 Goulo

9) deanthebean: Trade Y2 R2 Deanthebean

10) goulo: Trade Y2 R2 Goulo

11) deanthebean: Build Y2 Deanthebean

12) goulo: Build Y2 Goulo

13) deanthebean: Discover Y1 Deanthebean G3 G3

14) goulo: Discover Y2 Goulo G2 Verdo

15) deanthebean: Build R1 Deanthebean

16) goulo: Build R1 Goulo

17) deanthebean: Trade R1 B1 Deanthebean
	deanthebean: trade r1 b1 deanthebean

18) goulo: Move R1 Goulo Verdo

19) deanthebean: Build R1 Deanthebean

20) goulo: Build R1 Goulo

21) deanthebean: Build G1 Deanthebean

22) goulo: Build R2 Verdo

23) deanthebean: Move R2 Deanthebean G3

24) goulo: Trade R1 B1 Goulo

25) deanthebean: Build Y2 G3

26) goulo: Build Y3 Verdo

27) deanthebean: Move Y2 G3 Verdo

28) goulo: Sacrifice Y2 Verdo
Discover R2 Verdo G1 Verdeto
Discover R1 Verdo Y3 Flavego

29) deanthebean: Move Y2 Verdo Goulo

30) goulo: Trade Y3 G3 Goulo

31) deanthebean: Sacrifice G3 Deanthebean
Build Y2 Goulo
Build Y3 Deanthebean
Build G2 Deanthebean

32) goulo: Sacrifice R2 Verdeto
Attack Y2 Goulo
Attack Y2 Goulo

33) deanthebean: Sacrifice Y2 Deanthebean
Discover Y1 G3 R2 Transient
Move Y1 Transient Goulo
Catastrophe Goulo Yellow

34) goulo: Trade G1 Y1 Goulo

35) deanthebean: Build G1 Deanthebean

36) goulo: Move Y3 Verdo Goulo

37) deanthebean: Trade Y3 R3 Deanthebean

38) goulo: Build G1 Goulo

39) deanthebean: Move G1 Deanthebean Goulo

40) goulo: Sacrifice G3 Goulo
Build R1 Flavego
Build R2 Flavego
Build R3 Goulo

41) deanthebean: Move R1 Deanthebean Flavego
Catastrophe Flavego Red

42) goulo: Attack G1 Goulo

43) deanthebean: Discover G2 Deanthebean B3 B3

44) goulo: Discover G1 Goulo Y2 Flavo

45) deanthebean: Build G2 B3

46) goulo: Build G2 Flavo

47) deanthebean: Build G3 Deanthebean

48) goulo: Build G3 Flavo

49) deanthebean: Trade G2 Y2 B3

50) goulo: Move G3 Flavo G3

51) deanthebean: Sacrifice G3 Deanthebean
Build G2 B3
Build G3 Deanthebean
Build Y1 B3

52) goulo: Sacrifice R2 Goulo
Attack R2 G3
Pass

53) deanthebean: Trade G2 B2 B3

54) goulo: Build G2 Goulo

55) deanthebean: Move B1 Deanthebean Goulo

	goulo: gg, congrats - well played!
	deanthebean: Thanks! gg


36429)
Variants: "Unrated"
Started: 2020.5.12, Ended: 2020.5.13
Participants: Babamots (S), StormCrow (N)
Winner: Babamots

1) StormCrow: Homeworld G1 B2 Y3

2) Babamots: Homeworld G3 Y2 B3
	StormCrow: seeing about something a little weird

3) StormCrow: Build Y1 Stormcrow

4) Babamots: Build B1 Babamots

5) StormCrow: Build Y1 Stormcrow

6) Babamots: Trade B1 Y1 Babamots

7) StormCrow: Discover Y1 Stormcrow G3 Rivendale

8) Babamots: Build Y2 Babamots

9) StormCrow: Build Y2 Rivendale

10) Babamots: Trade Y1 G1 Babamots

11) StormCrow: Trade Y1 B1 Stormcrow

12) Babamots: Build G1 Babamots

13) StormCrow: Build B1 Stormcrow

14) Babamots: Discover G1 Babamots B1 Bolarus

15) StormCrow: Build Y1 Stormcrow

16) Babamots: Move Y2 Babamots Bolarus

17) StormCrow: Move B1 Stormcrow Rivendale

18) Babamots: Build Y1 Bolarus

19) StormCrow: Build B2 Rivendale

20) Babamots: Discover Y1 Bolarus Y3 Iconia

21) StormCrow: Trade B2 G2 Rivendale

22) Babamots: Build Y3 Bolarus

23) StormCrow: Discover G2 Rivendale R1 Imgonnadieagain

24) Babamots: Build B2 Babamots

25) StormCrow: Build G2 Imgonnadieagain

26) Babamots: Trade G1 R1 Babamots
	Babamots: Death is just the next adventure.

27) StormCrow: Build B2 Rivendale

28) Babamots: Trade Y3 R3 Bolarus

29) StormCrow: Move B1 Rivendale Imgonnadieagain

30) Babamots: Build Y3 Bolarus

31) StormCrow: Trade Y1 R1 Stormcrow
	Babamots: I'll give you one more turn to defend yourself. When your opponent has a red ship, you almost always need to get a red ship as well.

If I were playing for keeps, I'd move my r3 to your home right now.

32) Babamots: Move R3 Bolarus Rivendale

33) StormCrow: Sacrifice Y2 Rivendale
Move B2 Rivendale Bolarus
Move B2 Bolarus Babamots
	StormCrow: Good thing i looked at the comments, i was more concerned about you dropping 2 yellows on me
	Babamots: That's better :-).

34) Babamots: Trade B3 R3 Babamots

35) StormCrow: Build B3 Imgonnadieagain

36) Babamots: Discover Y3 Bolarus B3 Betazed
	Babamots: I forgot that it was today that this game started. Most people on SDG move much less often.
	StormCrow: Work from home is slow, so I get to play async more often for the moment. Now I'm a bit stumped, obviously I just gave you a turn to do something you'd want to do anyway, but now i have to either abandon the B2 or move it again (or throw good ships after bad).
	Babamots: Yeah, I'm working from home too. I have a special "ding" for when I get an SDG email, so I can respond quickly. Sometimes I get to move before my opponent is able to undo something that they quickly regretted. ;-)

37) StormCrow: Move Y1 Rivendale Imgonnadieagain

38) Babamots: Sacrifice Y2 Bolarus
Move Y3 Betazed Stormcrow
Move R3 Rivendale Stormcrow

39) StormCrow: Attack R3 Stormcrow

40) Babamots: Sacrifice R3 Babamots
Attack R3 Stormcrow
Attack Y3 Stormcrow
Attack R1 Stormcrow

	StormCrow: Well I felt i was doing ok keeping up with ships until later in the game this time at least.  Against wil I managed to destroy half his homeworld in a game, but then couldn't close it.  Only need to lose another 990 games... oh wait, that's Go....
	Babamots: You had me thinking harder this time for sure. And it's a significant achievement to half-beat wil, well done!

I hadn't heard that go-saying before--that you should lose your first 50 or 100 or 1000 games as quickly as possible (depending on whom you ask). Some people start beating HW experts after just a few games, so I think we need to develop stronger experts.


36431)
Variants: "Unrated"
Started: 2020.5.13, Ended: 2020.5.22
Participants: Babamots (S), capi3101 (N)
Winner: Babamots

1) capi3101: H G1 B3 Y3

2) Babamots: Homeworld R2 B1 G3

3) capi3101: Build Y1 Capi3101

4) Babamots: Build G1 Babamots
	capi3101: I have noted that I have trouble cracking planetary defense systems. Could be an interesting game.

5) capi3101: Discover Y1 Capi3101 G2 Victor
	Babamots: Yeah, I think red homestars are the way to go.
	capi3101: Wouldn't red homestars really be Strong Bads?

Never mind...
	capi3101: Best of luck.

6) Babamots: Trade G1 Y1 Babamots

7) capi3101: Build Y1 Capi3101
	Babamots: Maybe the first ship to leave home is the homestar runner.
	capi3101: Maybe.

I sure fouled that one up...
	capi3101: Oh well.

8) Babamots: Build Y2 Babamots

9) capi3101: Build Y2 Victor

10) Babamots: Discover Y1 Babamots G3 Risa

11) capi3101: T Y1 R1 Capi3101

12) Babamots: Build G1 Babamots

13) capi3101: Discover Y2 Victor G3 Uniform

14) Babamots: Build G1 Babamots
	capi3101: I see the dirty factory move coming. Could've lost the y2 pretty easily just then.
	Babamots: A "dirty factory" was my planned response to a y2 invasion.

And by the way, can you think of a better term for that type of move? It should probably have "factory" in the name. "Dirty" is supposed to suggest that it's a mean trick and that it's not the "pure" type of factory, but I've never been quite happy with it.
	capi3101: That's the sort of question that would probably best be posed to the Homeworlds group on Facebook. At the very least you'd get more input on the matter than just me. Off the top of my head, I'd call it a 'shipwright'. 

Wouldn't necessarily call it a dirty move either...the 'dirty' version is the kind where you don't need an intervening move to reset the large ship to green. 'Poor Man's Factory' might be another possibility, I suppose.

15) capi3101: B R1 Capi3101

16) Babamots: Discover G1 Babamots Y3 Iconia

17) capi3101: Move Y1 Victor Iconia

18) Babamots: Discover G1 Iconia Y1 Aldea

19) capi3101: B Y2 Uniform

20) Babamots: Build Y3 Risa
	capi3101: Hmm...

21) capi3101: M Y2 Uniform Aldea
	capi3101: Voltron reference?

22) Babamots: Move G1 Aldea Risa
	Babamots: https://memory-alpha.fandom.com/wiki/Aldea
	capi3101: Ah, okay. Still a TNG reference then - got it.
	capi3101: I love how I can analyze the game for hours and hours, and then finally make exactly the wrong move...
	Babamots: I've been known to do that too.

23) capi3101: T R1 B1 Capi3101

24) Babamots: Build G2 Babamots

25) capi3101: Sacrifice B1 Capi3101
Trade Y2 G2 Aldea

26) Babamots: Trade G2 R2 Babamots

27) capi3101: Build Y2 Uniform

28) Babamots: Discover G1 Risa B2 Bolarus
	Babamots: I had a dream about this game last night. You killed me because I missed a Bluebird scenario.
	Babamots: (I also dreamed that I was playing StarCraft, but my probes were spinning wind-up toys that I couldn't get to mine minerals.)

29) capi3101: B G2 Aldea
	capi3101: We'll see if that was a premonition or not...

(Which faction, Humans or Protoss? I could totally see that...Zerg not so much...)
	Babamots: I was playing Protoss (usually my worst race).

30) Babamots: Sacrifice G3 Babamots
Build G2 Bolarus
Build G3 Babamots
Build R1 Babamots

31) capi3101: Sacrifice Y2 Uniform
Discover G2 Aldea B3 Tango
Discover G2 Aldea B3 Sierra

32) Babamots: Trade R1 B1 Babamots

33) capi3101: B Y1 Uniform

34) Babamots: Sacrifice G3 Babamots
Build Y2 Babamots
Build B1 Babamots
Build G3 Babamots

35) capi3101: S Y2 Uniform
M G2 Sierra Babamots
M G2 Tango Babamots
C Babamots G

36) Babamots: Build Y2 Risa
	capi3101: Here goes nothin’...

37) capi3101: M Y1 Iconia Babamots

38) Babamots: Sacrifice Y1 Risa
Discover Y2 Babamots B3 Andoria

39) capi3101: Discover Y1 Babamots G3 Romeo

40) Babamots: Sacrifice G2 Bolarus
Build Y1 Andoria
Build Y3 Babamots
	capi3101: Now would probably be an ideal time for me to retreat, unfortunately. And then I've got a fairly substantial material disadvantage to deal with...I foresee the loss of green at my own star in the very near future.
	capi3101: Overall, I think that particular stratagem was ill-conceived...

41) capi3101: Build R1 Capi3101

42) Babamots: Move B1 Babamots Risa
	Babamots: I think losing three mediums to kill my g3 and g1 was probably not worth it for you. The g2's in b3 systems could have been nice investments for you later. I didn't really want to invade either one since they could green-teleport to each other.

As it is, I'll feel more comfortable with the yellows locked down.
	capi3101: Indeed...that limits my options. With disadvantages in yellow, large and overall material I'm seriously considered resigning now.

I'll go ahead and play it out; I've won games with a bad material disadvantage before. Granted, that wasn't against a player with your level of experience...
	capi3101: (+1 for awkwardly-worded sentences...)

43) capi3101: Trade R1 G1 Capi3101
	Babamots: Maybe I'll hatch a plan that relies on building ships from an empty supply :-D

44) Babamots: Build G2 Bolarus
	capi3101: You could do that...I'd probably appreciate it. ;)

45) capi3101: Discover G1 Capi3101 G2 Quebec

46) Babamots: Build G2 Bolarus
	capi3101: Hell.

47) capi3101: Build R1 Capi3101

48) Babamots: Build B2 Risa
	capi3101: Here it comes...

	Babamots: I miscalculated. I still have one more prep move.
	capi3101: Yeah, I see it. You need to get the two blues at Risa to a size 1 or 2 system. Then you've got a classic Doomsday Machine setup. Unfortunately for me, I'm too far behind to attempt to counter it. Taking out your large has cost me the game, it seems.
	capi3101: Was considering a hail mary but it would just end the game sooner. I think I'll quit now while my stars are still intact.

GG.
	Babamots: GG! And I think I will ask the Facebook group about a name for that move.


36438)
Variants: "Unrated"
Started: 2020.5.14, Ended: 2020.5.14
Participants: chris_st (S), aaaayachris (N)
Winner: chris_st

1) aaaayachris: Homeworld G3 B1 R3

2) chris_st: Homeworld B3 G2 R3



36446)
Variants: "Unrated"
Started: 2020.5.15, Ended: 2020.5.17
Participants: poggydude (S), master_tactician (N)
Winner: poggydude

1) master_tactician: Homeworld B1 R3 G3

2) poggydude:
Homeworld B2 Y1 G3
	poggydude: homeworld B2 Y1 G3

3) master_tactician: Build G1 Master_tactician

4) poggydude: Build G1 Poggydude

5) master_tactician: Trade G1 Y1 Master_tactician

6) poggydude: Trade G1 R1 Poggydude

7) master_tactician: Discover G3 Master_tactician B2 Masonsbutthole

8) poggydude: Build G1 Poggydude

9) master_tactician: Build G1 Masonsbutthole

10) poggydude: Build R1 Poggydude

11) master_tactician: Trade G1 R1 Masonsbutthole

12) poggydude: Trade R1 Y1 Poggydude

13) master_tactician: Build R1 Masonsbutthole

14) poggydude: Build R2 Poggydude

15) master_tactician: Trade Y1 G1 Master_tactician

16) poggydude: Build R2 Poggydude

17) master_tactician: Trade R1 Y1 Masonsbutthole

18) poggydude: Build Y2 Poggydude

19) master_tactician: Build Y2 Masonsbutthole

20) poggydude: Sacrifice Y2 Poggydude
Discover R2 Poggydude B3 Orion
Move G1 Poggydude Orion

21) master_tactician: Build Y2 Masonsbutthole

22) poggydude: Trade R2 Y2 Orion

23) master_tactician: Move Y2 Masonsbutthole Orion

24) poggydude: Sacrifice R1 Poggydude
Attack Y2 Orion

25) master_tactician: Build R1 Masonsbutthole

26) poggydude: Discover Y2 Orion G2 Ursa

27) master_tactician: Move Y2 Masonsbutthole Master_tactician

28) poggydude: Build Y3 Ursa

29) master_tactician: Build Y3 Master_tactician

30) poggydude: Build Y3 Orion

31) master_tactician: Discover Y2 Master_tactician G2 Alphacucktauri

32) poggydude: Trade Y3 G3 Orion

33) master_tactician: Build Y3 Master_tactician

34) poggydude: Sacrifice G3 Orion
Build G1 Poggydude
Build G2 Poggydude
Build G3 Orion

35) master_tactician: Move Y3 Master_tactician Ursa

36) poggydude: Move G3 Orion Ursa

37) master_tactician: Sacrifice R1 Masonsbutthole
Attack G3S Ursa

38) poggydude: Sacrifice R2 Poggydude
Attack Y3 Ursa
Attack G3 Ursa

39) master_tactician: Move Y3 Master_tactician Ursa
Catastrophe Ursa Y

40) poggydude: Sacrifice Y1 Poggydude
Move G3 Ursa Master_tactician

41) master_tactician: Sacrifice G3 Masonsbutthole
Build G2 Master_tactician
Build G3 Master_tactician
Build Y1 Alphacucktauri



36482)
Started: 2020.5.20, Ended: 2020.5.20
Participants: EternalSwordsman (S), tkvaran (N)
Winner: tkvaran

1) tkvaran: Homeworld B3 Y2 G3

2) EternalSwordsman: Homeworld B3 G1 Y3
	EternalSwordsman: homeworld b3 g1 y3

3) tkvaran: Build G1 Tkvaran

4) EternalSwordsman: Discover Y3 Eternalswordsman B2 Wolf359



36483)
Started: 2020.5.20, Ended: 2020.5.23
Participants: EternalSwordsman (S), tkvaran (N)
Winner: tkvaran

1) tkvaran: Homeworld B3 Y2 G3

2) EternalSwordsman: Homeworld B3 G1 Y3

3) tkvaran: Build G1 Tkvaran

4) EternalSwordsman: Build Y1 Eternalswordsman

5) tkvaran: Discover G1 Tkvaran B1 Oprah

6) EternalSwordsman: Discover Y1 Eternalswordsman R2 Qonos

7) tkvaran: Build G1 Oprah

8) EternalSwordsman: Build Y1 Eternalswordsman

9) tkvaran: Trade G1 Y1 Oprah

10) EternalSwordsman: Trade Y1 R1 Eternalswordsman

11) tkvaran: Build G1 Tkvaran

12) EternalSwordsman: Move R1 Eternalswordsman Qonos

13) tkvaran: Trade Y1 R1 Oprah

14) EternalSwordsman: Build Y1 Eternalswordsman

15) tkvaran: Build G2 Oprah

16) EternalSwordsman: Trade Y3 G3 Eternalswordsman

17) tkvaran: Trade G2 Y2 Oprah

18) EternalSwordsman: Move G3 Eternalswordsman Qonos

19) tkvaran: Discover Y2 Oprah G2 Rickilake

20) EternalSwordsman: Build Y1 Eternalswordsman

21) tkvaran: Move Y2 Rickilake Eternalswordsman

22) EternalSwordsman: Trade Y1 R1 Eternalswordsman

23) tkvaran: Trade Y2 R2 Eternalswordsman

24) EternalSwordsman: Build R2 Qonos

25) tkvaran: Attack Y1 Eternalswordsman

26) EternalSwordsman: Build R3 Qonos

27) tkvaran: Attack R1 Eternalswordsman



36462)
Variants: "Hard time"
Started: 2020.5.21, Ended: 2020.5.24
Participants: Trydnt (S), Jerome (N)
Winner: Trydnt



36493)
Variants: "Hard time"
Started: 2020.5.21, Ended: 2020.6.15
Participants: StormCrow (S), SilentTitan (N)
Winner: StormCrow

1) SilentTitan: Homeworld R1 B2 G3

2) StormCrow: Homeworld Y2 B3 G3

3) SilentTitan: Build G1 Silenttitan
	StormCrow: gl, hf

4) StormCrow: Build G1 Stormcrow
	SilentTitan: Thanks, and may the gods shine down and grace our conflict!

5) SilentTitan: Trade G1 Y1 Silenttitan

6) StormCrow: Trade G1 Y1 Stormcrow

7) SilentTitan: Build G1 Silenttitan

8) StormCrow: Build G1 Stormcrow

9) SilentTitan: Trade G1 R1 Silenttitan

10) StormCrow: Trade G1 R1 Stormcrow

11) SilentTitan: Build R2 Silenttitan

12) StormCrow: Build R2 Stormcrow

13) SilentTitan: Discover R2 Silenttitan Y3 Sol

14) StormCrow: Trade R2 B2 Stormcrow

15) SilentTitan: Build G1 Silenttitan

16) StormCrow: Build G1 Stormcrow

17) SilentTitan: Trade G1 B1 Silenttitan

18) StormCrow: Build R2 Stormcrow

19) SilentTitan: Build G1 Silenttitan

20) StormCrow: Discover B2 Stormcrow Y1 Xyzzy



36422)
Variants: "Hard time"
Started: 2020.5.24, Ended: 2020.7.15
Participants: dlwillson (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 Y1 G3
	Babamots: Good luck :-)

2) dlwillson: Homeworld B3 R1 G3 Dlwillson
	dlwillson: You too!

3) Babamots: Build G1 Babamots

4) dlwillson: B G1 Dlwillson

5) Babamots: Trade G1 Y1 Babamots

6) dlwillson: Trade G1 Y1 Dlwillson

7) Babamots: Build Y2 Babamots

8) dlwillson: B Y2 Dlwillson

9) Babamots: Discover Y1 Babamots G3 Risa

10) dlwillson: Discover Y1 Dlwillson G2 Field

11) Babamots: Build G1 Babamots

12) dlwillson: Build Y2 Dlwillson

13) Babamots: Build Y3 Risa

14) dlwillson: Build Y3 Field

15) Babamots: Discover Y1 Risa B1 Bolarus

16) dlwillson: T Y2 R2 Dlwillson

17) Babamots: Trade G1 R1 Babamots

18) dlwillson: M Y1 Field Risa

19) Babamots: Discover Y2 Babamots Y3 Iconia

20) dlwillson: Build Y2 Risa
	Babamots: I've been trying to figure out what people see in yellow home stars. They never do me any good.
	dlwillson: Blue/Yellow is for speed, but you have to give up a turn to get red, so it's mixed, but if you rush red, the "giving up a turn" doesn't hurt as much, but if your opponent follows you into red, you can't rush it as effectively, so...
	dlwillson: Anyway, I think I've run out of tailwind here. I appreciate you letting me have some, but having run it out, I now need to do the hard thinking that I'm not good at. So... I think I'll set up a plastic model of this game and see if that reveals an opportunity I'm missing here. Please be patient.

21) Babamots: Build R1 Babamots
	dlwillson: TY for your patience :-)

22) dlwillson: Sacrifice Y2 Risa
Discover R2 Dlwillson Y2 Sol
Discover Y3 Field B3 Sky
	Babamots: A yellow home star lets you move out early, but it has always seemed to me that it's much better to stock up on yellow ships right away. The yellow star usually feels like a handicap.

On the other hand, yellow stars can be harder to catastrophe. I think that's where the advantage really lies. You'll have your chance to prove me wrong, though.
	dlwillson: Well, heck. Even after all that foot-shuffling, I miscalculated. Oh, well. It's only a game.
	Babamots: I seem to do that a lot. After days of worrying about a move and half an hour of thinking, I make a huge blunder.

23) Babamots: Sacrifice R1 Babamots
Attack Y1 Risa

24) dlwillson: Build G1 Dlwillson

25) Babamots: Build R1 Babamots

26) dlwillson: Move R2 Sol Sky

27) Babamots: Discover Y1 Risa Y2 Aldea

28) dlwillson: Sacrifice G1 Dlwillson
Build R2 Sky

29) Babamots: Move R1 Babamots Risa

30) dlwillson: M R2 Sky Aldea

31) Babamots: Discover Y1 Aldea G1 Betazed

32) dlwillson: Move R2 Aldea Betazed

33) Babamots: Discover Y1 Betazed Y2 Aldea

34) dlwillson: Build G1 Dlwillson

35) Babamots: Build G1 Babamots

36) dlwillson: Discover G1 Dlwillson B2 Sea

37) Babamots: Sacrifice G3 Babamots
Build R2 Risa
Build R3 Risa
Build R3 Babamots

38) dlwillson: B R3 Betazed

39) Babamots: Move R3 Risa Sea

40) dlwillson: Sacrifice Y2 Dlwillson
Move R2 Betazed Aldea
Move R3 Betazed Iconia

41) Babamots: Sacrifice Y1 Aldea
Move Y2 Iconia Sea

42) dlwillson: Sacrifice G1 Sea
Build G1 Dlwillson

43) Babamots: Build G1 Babamots

44) dlwillson: Trade G1 Y1 Dlwillson

45) Babamots: Build Y2 Risa

46) dlwillson: Move R2 Aldea Sky

47) Babamots: Trade R1 B1 Babamots

48) dlwillson: Build Y2 Dlwillson

49) Babamots: Build B1 Babamots

50) dlwillson: T R2 G2 Sky

51) Babamots: Move B1 Babamots Risa

52) dlwillson: B G1 Sky

53) Babamots: Build B2 Risa

54) dlwillson: Sacrifice G2 Sky
Build R1 Iconia
Build R2 Sky

55) Babamots: Build B3 Babamots

56) dlwillson: B G2 Dlwillson

57) Babamots: Move B2 Risa Sea

58) dlwillson: Move R2 Sky Bolarus

59) Babamots: Discover Y1 Bolarus G3 Bajor

60) dlwillson: Trade R2 G2 Bolarus

61) Babamots: Sacrifice Y2 Risa
Discover R1 Risa G2 Betazed
Move R2 Risa Betazed

62) dlwillson: Sacrifice G3 Dlwillson
Build R2 Sky
Build Y2 Sky
Build G3 Dlwillson

63) Babamots: Move R3 Sea Dlwillson

	dlwillson: Lots of options, but none good. Good game!
	Babamots: Good game!


36401)
Started: 2020.5.25, Ended: 2020.6.6
Participants: capi3101 (S), eliscinsky (N)
Winner: capi3101

1) eliscinsky: H R1 B2 G3
	capi3101: Hello again.

2) capi3101: Homeworld B1 G3 Y3
	eliscinsky: Hello, GL & HF

3) eliscinsky: B G1 Eliscinsky

4) capi3101: Build Y1 Capi3101

5) eliscinsky: T G1 Y1 Eliscinsky

6) capi3101: Trade Y1 B1 Capi3101

7) eliscinsky: T Y1 B1 Eliscinsky

8) capi3101: Build B2 Capi3101

9) eliscinsky: Build B2 Eliscinsky

10) capi3101: D B2 Capi3101 G2 Tav

11) eliscinsky: T B1 Y1 Eliscinsky

12) capi3101: Build Y1 Capi3101

13) eliscinsky: B G1 Eliscinsky

14) capi3101: M B1 Capi3101 Tav

15) eliscinsky: D B2 Eliscinsky G3 Earth

16) capi3101: Trade B1 Y1 Tav

17) eliscinsky: B Y2 Eliscinsky

18) capi3101: B Y2 Tav

19) eliscinsky: T B2 R2 Earth

20) capi3101: Trade Y1 R1 Tav

21) eliscinsky: M G1 Eliscinsky Earth

22) capi3101: Build B1 Tav

23) eliscinsky: B G1 Earth

24) capi3101: Discover B2 Tav R3 Shin

25) eliscinsky: S Y2 Eliscinsky
M G1 Earth Tav
M G1 Earth Tav

26) capi3101: M Y2 Tav Shin

27) eliscinsky: S R2 Earth
A R1 Tav
A B1 Tav

28) capi3101: Trade Y1 G1 Capi3101

29) eliscinsky: Trade G1 Y1 Tav
	capi3101: I thought you might...

30) capi3101: Sacrifice G1 Capi3101
Build B1 Shin

31) eliscinsky: Build B2 Tav
	eliscinsky: :D

32) capi3101: Trade B2 G2 Shin

33) eliscinsky: Trade B2 Y2 Tav

34) capi3101: B B2 Shin

35) eliscinsky: Build B2 Tav

36) capi3101: T B1 R1 Shin

37) eliscinsky: Sacrifice Y2 Tav
Move Y1 Tav Capi3101
Move B1 Tav Capi3101

38) capi3101: S R1 Shin
A B1 Capi3101

39) eliscinsky: Sacrifice R1 Tav
Attack B1 Capi3101

40) capi3101: T Y3 R3 Capi3101
	capi3101: Let’s see if this plays out the way I think it will.

41) eliscinsky: B B1 Capi3101

42) capi3101: Build B3 Shin

43) eliscinsky: T B1 R1 Capi3101
	capi3101: No, that wasn’t what I thought was going to happen at all, and yeah, that’s what I think I really want to do. Ugh.

44) capi3101: A R1 Capi3101

45) eliscinsky: T G1 R1 Tav
	eliscinsky: Trying new tactics. Don't know if it'll workout. :/

46) capi3101: Attack B1 Capi3101

47) eliscinsky: Move Y1 Capi3101 Tav

48) capi3101: Trade R3 Y3 Capi3101

49) eliscinsky: Build G1 Eliscinsky
	eliscinsky: ... and this is what happens when someone miscalculates late at night.  LOL

50) capi3101: Move B3 Shin Tav
	capi3101: Honestly thought you were going to blow my blue at my HW. Glad to have the reprieve; I'll see if it lasts.

51) eliscinsky: B B1 Tav

52) capi3101: Trade B3 G3 Tav

53) eliscinsky: Build R2 Tav
	eliscinsky: Thought about it, but then didn't have the next phase setup.  "You're welcome"  haha

54) capi3101: Build G1 Tav

55) eliscinsky: Build R2 Tav

56) capi3101: S G3 Tav
B G1 Tav
B G2 Tav
B G3 Shin
C Tav G

57) eliscinsky: T G1 B1 Eliscinsky

58) capi3101: Sacrifice G3 Shin
Build B2 Capi3101
Build B3 Shin
Build R1 Capi3101
	capi3101: Danke.

59) eliscinsky: Discover B1 Eliscinsky G3 Watermelon
	capi3101: On second thought...

60) capi3101: Build B3 Shin

61) eliscinsky: B B3 Watermelon
	eliscinsky: This is getting interesting ;)
	capi3101: Indeed. Hope you weren’t planning on doing much with your ships at Tav...    >;)>

62) capi3101: Sacrifice B2 Capi3101
Trade B2 R2 Shin
Trade B3 Y3 Shin

63) eliscinsky: Trade B3 Y3 Watermelon

64) capi3101: S Y2 Shin
M Y3 Shin Eliscinsky
M B3 Shin Eliscinsky

	capi3101: Action Stations.
	eliscinsky: Yep, you got me. 
	eliscinsky: GG,I'll have to work on my strategy for next time. ;) Lol
	capi3101: GG.


36389)
Started: 2020.5.25, Ended: 2020.7.18
Participants: MobyNostromo (S), capi3101 (N)
Winner: capi3101

1) capi3101: Homeworld R1 G3 B3
	capi3101: Howdy. Was going through my list of games today and was dismayed to find I only had a Zendo game going, and nothing else...

2) MobyNostromo: H Y1 B2 G3
	MobyNostromo: Well, let's fix that with a game of Homeworlds. Now, you at least have two.

3) capi3101: Build B1 Capi3101

4) MobyNostromo: B G1 Mobynostromo
	capi3101: Best of luck.
	MobyNostromo: Thank you. You too.

5) capi3101: Trade B1 Y1 Capi3101

6) MobyNostromo: T G1 Y1 Mobynostromo

7) capi3101: Build Y2 Capi3101

8) MobyNostromo: B Y2 Mobynostromo

9) capi3101: D Y2 Capi3101 G2 Resh

10) MobyNostromo: D Y2 Mobynostromo B3 Sapphire

11) capi3101: Build B1 Capi3101

12) MobyNostromo: B G1 Mobynostromo

13) capi3101: Build B1 Capi3101

14) MobyNostromo: B G1 Mobynostromo

15) capi3101: Move B1 Capi3101 Resh

16) MobyNostromo: M G1 Mobynostromo Sapphire

17) capi3101: Build Y2 Resh

18) MobyNostromo: B Y3 Sapphire

19) capi3101: Build Y3 Capi3101

20) MobyNostromo: T Y3 R3 Sapphire

21) capi3101: Trade B1 R1 Capi3101

22) MobyNostromo: D G1 Mobynostromo B3 Ultramarine

23) capi3101: Trade Y2 R2 Resh

24) MobyNostromo: T Y1 B1 Mobynostromo

25) capi3101: D B1 Resh G3 Qoph

26) MobyNostromo: B G1 Mobynostromo

27) capi3101: Build B1 Qoph

28) MobyNostromo: S G3 Mobynostromo
B G2 Sapphire
B G2 Ultramarine
B G3 Mobynostromo

29) capi3101: Sacrifice Y2 Resh
Move B1 Qoph Mobynostromo
Move B1 Qoph Mobynostromo
Catastrophe Mobynostromo B

30) MobyNostromo: M R3 Sapphire Resh

31) capi3101: Build R1 Resh

32) MobyNostromo: S G3 Mobynostromo
B G3 Mobynostromo
B G3 Sapphire
B Y1 Sapphire

33) capi3101: Discover Y1 Capi3101 B2 Tsade

34) MobyNostromo: S Y1 Sapphire
M R3 Resh Mobynostromo

35) capi3101: B Y1 Capi3101

36) MobyNostromo: T G2 R2 Sapphire

37) capi3101: D Y1 Capi3101 G2 Peh

38) MobyNostromo: S G3 Mobynostromo
B G3 Mobynostromo
B R2 Sapphire
B Y2 Sapphire



39) capi3101: B Y2 Peh

40) MobyNostromo: D R2 Sapphire B2 Steel

41) capi3101: S Y3 Capi3101
M Y1 Tsade Mobynostromo
M Y1 Peh Mobynostromo
M Y2 Peh Mobynostromo
C Mobynostromo Y
	capi3101: Just realized I could make that move, otherwise I’d have called Action Stations...
	MobyNostromo: I didn't see it either. Well done!!
	capi3101: Thanks for the game.



36416)
Variants: "No undo, Unrated"
Started: 2020.5.25, Ended: 2020.6.18
Participants: capi3101 (S), rho0 (N)
Winner: capi3101



36353)
Variants: "Unrated, Hard time"
Started: 2020.5.25, Ended: 2020.5.29
Participants: capi3101 (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) capi3101: Homeworld B1 G3 B3 *
	capi3101: Howdy.

3) wil: B G1 Wil
	wil: Straight for the blue freezeout!
	wil: Thanks for the challenge, I like the boldness!

4) capi3101: B B1 Capi3101
	capi3101: No problem; I’ll try to put up more of a fight before I lose this time...

5) wil: B G1 Wil

6) capi3101: T B3 Y3 Capi3101
	wil: That is the game, try a gambit, see if it gets countered, try again.

7) wil: D G1 Wil B3 B3

8) capi3101: B B2 Capi3101

9) wil: Discover G1 Wil B3 Be3

10) capi3101: Discover B2 Capi3101 G2 Papa

11) wil: B G1 Wil
	capi3101: Been working backwards through the NATO phonetic alphabet these last couple of games...pretty sure I was up to 'P', hence.

12) capi3101: Build Y1 Capi3101
	wil: I'm just a s simple man, sending my space ships to solar systems with simple names...
	wil: I try not to get attached, makes it easier to abandon the star 
	capi3101: Makes sense. There's definitely utility in having short names, I've come to realize.
	capi3101: Looks like I'm about to get locked out of green...

13) wil: Sacrifice G3 Wil
Build G2 B3
Build G2 Be3
Build G3 Wil

14) capi3101: Sacrifice Y1 Capi3101
Discover B2 Papa G3 Oscar

15) wil: B G2 Wil

16) capi3101: Build B2 Oscar
	wil: The goal of monopolizing an economy is first maintaining the monopoly then capitalizing on it by building massive fleets of primarily large ships.

17) wil: D G2 Wil B3 Bee3

18) capi3101: B B2 Capi3101
	capi3101: Decisions.

19) wil: T G3 R3 Wil
	capi3101: A bad move.

20) capi3101: Trade B1 R1 Capi3101

21) wil: B G3 B3
	capi3101: Apologies for the delay; I've been working on a video for Bill Adams's stackable Icehouse origami piece design lately. I've spent a good chunk of the morning in post. Still not done.

It's not my paying job either, so...
	wil: No worries, like to see the link when it is ready.

22) capi3101: Build B1 Oscar
	capi3101: I'll be posting the link to the FB group later this evening.

23) wil: Trade G3 Y3 B3

24) capi3101: T B2 Y2 Oscar
	wil: Cool!  In this game when you started with the blue instafreeze I usually immediately get a blue 3 to catch up...but instead I thought I could keep you from getting a big ship by making them all stars...then I really don't care if you have a blue monopoly...but also gained the green monopoly, and will now try to get all the large ships.

25) wil: B G3 Be3

26) capi3101: Build B2 Oscar

27) wil: Trade G3 Y3 Be3

28) capi3101: Build Y1 Oscar

29) wil: Discover G2 Be3 Y2 Y2

30) capi3101: Build Y1 Capi3101

31) wil: Build G3 Be3

32) capi3101: Move B1 Oscar Wil

33) wil: Attack B1 Wil
	wil: building strong fortified outposts, ready to advance into enemy territory.  
	capi3101: Strike now or lose the chance...
	capi3101: Dammit.

34) capi3101: S Y2 Oscar
M B2 Oscar Wil
M B2 Oscar Wil
C Wil B

35) wil: Sacrifice G3 Be3
Build G3 Be3
Build Y1 B3
Build Y2 Be3
	wil: nice hail mary
	capi3101: Yeah, I’m short one move.

36) capi3101: M Y1 Oscar Wil
	capi3101: At least I drew blood. That’s more that can be said for our matches to date.

37) wil: Attack Y1 Wil
	wil: Yes blowing up half a homeworld feels good...but unless you have the armament to take out the other half...it is mute.  So I shall gather all the items needed for catastrophe...

but it does feel good!


38) capi3101: M Y3 Capi3101 Wil

39) wil: S Y3 Be3
M R3 Wil Capi3101
M Y1 Wil Bee3
M G2 B3 Wil
	wil: nice job!...such fun.

40) capi3101: Build R1 Capi3101

41) wil: T G3 R3 Be3
	capi3101: Ha! I knew you weren't going to just let me sit there and doomsmonth you... Well-played.
	capi3101: And I once again manage to snatch defeat from the relentless jaws of victory...
	capi3101: Well...

42) capi3101: Build R1 Capi3101
Catastrophe Capi3101 R
	capi3101: I'm still doomed, I think.

43) wil: B Y3 Be3
	wil: Quite the battle, ya done well!

44) capi3101: Sacrifice B2 Capi3101
Trade Y3 R3 Wil
Pass
	capi3101: Here it comes...

45) wil: T Y3 R3 Be3
	wil: I never had the patience in chess to look 3 moves ahead...and I don't here either.  Shoot from the hip r us.

46) capi3101: Attack G2 Wil

47) wil: S Y2 Be3
M R3 Be3 Wil
M Y3 B3 Wil

48) capi3101: Attack R3 Wil

49) wil: S R3 Be3
A R3 Wil
A G2 Wil
A R3 Wil
	wil: I think I slipped out of a sticky wicket!  However it ends, excellent effort!

	capi3101: Red catastrophe crossed my mind. Don’t know why I didn’t go with it - it would’ve been much more dramatic. Must’ve been distracted...
	capi3101: So from here, I build y2, you move in R3, I build Y3, you take your pick of finishing me off-either sacrificing the other R3 to snap up all the pieces at once or moving in yellow to cat all my ships. Game’s up in two either way.
	capi3101: I’ll have to go back and look to see if I could’ve waited the one turn to build another yellow ship. I think impatience killed me this time. I’m definitely going to mention this game to Babamots for his strategy guide.
	capi3101: Anyway, good game.
	wil: It definitely got dicey...  I can't wait till working ai actually figures out this game.  There has got to be the best move at each point, and the job is to capitalize on it when anyone makes less than that.
	Babamots: I love the ending of this game! Do you mind if I borrow it as an example for my site? I think it's very instructive.
	capi3101: I've got no problems with that; figured it'd be a good one to send your way.


36531)
Started: 2020.5.26, Ended: 2020.6.7
Participants: tkvaran (S), Gemmer (N)
Winner: tkvaran

1) Gemmer: Homeworld B3 G2 Y3

2) tkvaran: Homeworld G2 B1 R3

3) Gemmer: Build Y1 Gemmer

4) tkvaran: Build R1 Tkvaran

5) Gemmer: Discover Y1 Gemmer B1 Perry

6) tkvaran: Trade R1 Y1 Tkvaran

7) Gemmer: Trade Y1 G1 Perry

8) tkvaran: Trade Y1 B1 Tkvaran

9) Gemmer: Build Y1 Gemmer

10) tkvaran: Build B2 Tkvaran

11) Gemmer: Trade Y1 R1 Gemmer

12) tkvaran: Trade B2 Y2 Tkvaran

13) Gemmer: Build R1 Gemmer

14) tkvaran: Discover Y2 Tkvaran G3 Rickilake

15) Gemmer: Move R1 Gemmer Perry

16) tkvaran: Build Y1 Rickilake

17) Gemmer: Build Y1 Gemmer

18) tkvaran: Discover Y2 Rickilake G1 Montel

19) Gemmer: Trade Y1 G1 Gemmer

20) tkvaran: Build B2 Tkvaran

21) Gemmer: Build G2 Perry

22) tkvaran: Trade B2 Y2 Tkvaran

23) Gemmer: Sacrifice G2 Perry
Build G2 Perry
Build G3 Gemmer

24) tkvaran: Move B1 Tkvaran Rickilake

25) Gemmer: Build G3 Perry

26) tkvaran: Sacrifice Y2 Montel
Discover B1 Rickilake R1 Sallyjessie
Move Y1 Rickilake Sallyjessie

27) Gemmer: Sacrifice G3 Perry
Build R2 Perry
Build Y1 Gemmer
Build R2 Gemmer

28) tkvaran: Trade B1 G1 Sallyjessie

29) Gemmer: Move G3 Gemmer Sallyjessie

30) tkvaran: Discover G1 Sallyjessie B3 Oprah

31) Gemmer: Attack Y1 Sallyjessie

32) tkvaran: Build G3 Oprah

33) Gemmer: Trade G2 Y2 Perry

34) tkvaran: Trade G3 R3 Oprah

35) Gemmer: Discover R2 Perry Y3 Dent

36) tkvaran: Build G2 Oprah

37) Gemmer: Sacrifice G3 Sallyjessie
Build G3 Gemmer
Build G3 Perry
Build R2 Dent

38) tkvaran: Build Y1 Tkvaran

39) Gemmer: Sacrifice G3 Perry
Build G3 Perry
Build R3 Dent
Build Y2 Sallyjessie

40) tkvaran: Sacrifice Y2 Tkvaran
Move G1 Oprah Perry
Move G1 Perry Gemmer
Catastrophe Gemmer Green

41) Gemmer: Discover R2 Dent G2 Hampton

42) tkvaran: Build G1 Oprah

43) Gemmer: Discover R1 Perry G3 Singletary

44) tkvaran: Build Y2 Tkvaran

45) Gemmer: Sacrifice G3 Perry
Build Y3 Perry
Build G1 Perry
Build G3 Perry

46) tkvaran: Trade Y1 B1 Tkvaran

47) Gemmer: Sacrifice Y3 Perry
Move R2 Dent Tkvaran
Move R1 Gemmer Tkvaran
Move R1 Singletary Tkvaran
Catastrophe Tkvaran Red

48) tkvaran: Sacrifice Y2 Tkvaran
Move R3 Oprah Tkvaran
Move G2 Oprah Tkvaran

49) Gemmer: Move G1 Perry Gemmer

50) tkvaran: Build B2 Tkvaran

51) Gemmer: Trade Y2 B2 Perry

52) tkvaran: Trade B1 Y1 Tkvaran

53) Gemmer: Sacrifice Y1 Gemmer
Move B2 Perry Dent

54) tkvaran: Build G3 Oprah

55) Gemmer: Build G3 Gemmer

56) tkvaran: Trade G3 Y3 Oprah

57) Gemmer: Sacrifice Y2 Sallyjessie
Move G1 Gemmer Tkvaran
Move G3 Gemmer Tkvaran
Catastrophe Tkvaran Green

58) tkvaran: Discover B2 Tkvaran G2 Donahue

59) Gemmer: Trade R3 B3 Dent

60) tkvaran: Build B1 Donahue

61) Gemmer: Move B3 Dent Donahue

62) tkvaran: Sacrifice Y3 Oprah
Move B1 Donahue Gemmer
Move B2 Donahue Gemmer
Pass

63) Gemmer: Attack B2 Gemmer

64) tkvaran: Sacrifice G1 Oprah
Build B2 Gemmer
Catastrophe Gemmer Blue



36547)
Variants: "Unrated"
Started: 2020.5.30, Ended: 2020.7.27
Participants: amoscai (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R1 B3 G3

2) amoscai: Homeworld Y1 B2 G3
	Babamots: You don't seem to need any advice from me, so I'll keep it to myself this time ;-). Good luck!
	amoscai: haha! that's not true! but have fun (:

3) Babamots: Build G1 Babamots

4) amoscai: Build G1 Amoscai

5) Babamots: Trade G1 Y1 Babamots

6) amoscai: Trade G1 Y1 Amoscai

7) Babamots: Build Y2 Babamots

8) amoscai: Build Y2 Amoscai

9) Babamots: Build Y2 Babamots

10) amoscai: Discover Y1 Amoscai G3 Alpha

11) Babamots: Discover Y2 Babamots G2 Risa

12) amoscai: Build Y3 Alpha

13) Babamots: Build Y3 Risa

14) amoscai: Trade Y2 R2 Amoscai

15) Babamots: Trade Y2 R2 Babamots

16) amoscai: Build R1 Amoscai

17) Babamots: Build Y2 Babamots

18) amoscai: Move Y1 Alpha Risa

19) Babamots: Sacrifice R2 Babamots
Attack Y1 Risa
Pass

20) amoscai: Move Y3 Alpha Risa
Catastrophe Risa Yellow

21) Babamots: Build Y1 Babamots

22) amoscai: Trade R2 Y2 Amoscai

23) Babamots: Discover Y1 Babamots G2 Risa

24) amoscai: Build R1 Amoscai

25) Babamots: Sacrifice G3 Babamots
Build Y2 Risa
Build Y3 Risa
Build Y3 Babamots

26) amoscai: Build R2 Amoscai

27) Babamots: Trade Y3 G3 Babamots

28) amoscai: Build G1 Amoscai

29) Babamots: Build Y3 Babamots

30) amoscai: Discover R2 Amoscai Y3 Sira

31) Babamots: Trade Y2 R2 Babamots

32) amoscai: Build R2 Amoscai

33) Babamots: Move R2 Babamots Risa

34) amoscai: Move R1 Amoscai Sira

35) Babamots: Move Y3 Risa Sira

36) amoscai: Move Y2 Amoscai Sira

37) Babamots: Sacrifice R2 Risa
Attack R2 Sira
Attack Y2 Sira

38) amoscai: Move R1 Sira Risa

39) Babamots: Build Y2 Risa

40) amoscai: Trade R1 B1 Amoscai

41) Babamots: Build G1 Babamots

	Babamots: Let me know if you come back and want another game!


36548)
Variants: "Unrated"
Started: 2020.6.1, Ended: 2020.7.9
Participants: Felix (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R2 B3 G3

2) Felix: Homeworld Y1 B3 G3
	Babamots: Haven't tried a fortress in a while. Let's see what happens. Good luck!

3) Babamots: Build G1 Babamots
	Felix: I haven't tried anything in a while! I'm going to be rusty. Will be fun though :)

4) Felix: Build G1 Felix

5) Babamots: Trade G1 Y1 Babamots

6) Felix: Trade G1 Y1 Felix

7) Babamots: Build Y2 Babamots

8) Felix: Build Y2 Felix

9) Babamots: Build Y2 Babamots

10) Felix: Discover Y1 Felix G2 Out

11) Babamots: Discover Y2 Babamots G1 Risa

12) Felix: Build Y3 Out

13) Babamots: Build Y3 Risa

14) Felix: Trade Y2 R2 Felix

15) Babamots: Trade Y2 R2 Babamots

16) Felix: Discover Y1 Out G1 Clorox

17) Babamots: Build Y2 Babamots

18) Felix: Build Y2 Out

19) Babamots: Trade Y1 B1 Babamots

20) Felix: Build R1 Felix

21) Babamots: Move R2 Babamots Risa

22) Felix: Trade R2 B2 Felix

23) Babamots: Build R1 Risa

24) Felix: Move B2 Felix Out

25) Babamots: Discover R1 Risa G2 Bajor

26) Felix: Build B1 Out

27) Babamots: Move Y2 Babamots Clorox

28) Felix: Trade Y3 R3 Out

29) Babamots: Build G1 Babamots

30) Felix: Build G2 Felix

31) Babamots: Sacrifice G3 Babamots
Build G3 Babamots
Build G3 Babamots
Build R1 Risa

32) Felix: Sacrifice G3 Felix
Build G3 Felix
Build Y1 Clorox
Build Y3 Out

33) Babamots: Trade G3 Y3 Babamots

	Babamots: I need to focus on other things for a while, so I'm cleaning my plate.
	Felix: Whoops. Sorry! Got a lot on my plate too right now.


36562)
Variants: "Hard time"
Started: 2020.6.2, Ended: 2020.6.6
Participants: deanthebean (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3

2) deanthebean: Homeworld R1 B2 G3

3) Draw5PlayAll: Build G1 Draw5playall
	deanthebean: Hello. Have fun!

4) deanthebean: Build G1 Deanthebean
	deanthebean: build g1

5) Draw5PlayAll: Trade G1 R1 Draw5playall

6) deanthebean: Build G1 Deanthebean

7) Draw5PlayAll: Build R2 Draw5playall

8) deanthebean: Trade G3 R3 Deanthebean

9) Draw5PlayAll: Trade R2 Y2 Draw5playall

10) deanthebean: Trade G1 Y1 Deanthebean

11) Draw5PlayAll: Discover R1 Draw5playall G2 Rocket

12) deanthebean: Trade R3 G3 Deanthebean

13) Draw5PlayAll: Build R2 Rocket
	deanthebean: This is not going well...

14) deanthebean: Build Y1 Deanthebean
	Draw5PlayAll: Good.

15) Draw5PlayAll: Build R2 Rocket

	deanthebean: I think I'll give up this one as well. The lack of red is killing me. 


36573)
Started: 2020.6.4, Ended: 2020.6.8
Participants: drstclair (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld R1 B2 G3

2) drstclair: Homeworld G2 B1 Y3
	eliscinsky: Greetings drstclair!  GL & HF

3) eliscinsky: B G1 Eliscinsky

4) drstclair: Build Y1 Drstclair

5) eliscinsky: T G1 Y1 Eliscinsky
	drstclair: Hello! GL & HF

6) drstclair: Discover Y1 Drstclair G3 Squish

7) eliscinsky: Build G1 Eliscinsky
	eliscinsky: My this universe seems small ;)

8) drstclair: Build Y1 Drstclair
	drstclair: Quite. Btw, the middle system is named in honor of my cat, Squishbutt

9) eliscinsky: D G1 Eliscinsky B3 Blueberry

10) drstclair: Build Y2 Drstclair
	eliscinsky: Cute name 

11) eliscinsky: Build G1 Blueberry

12) drstclair: Trade Y2 B2 Drstclair

13) eliscinsky: Build Y2 Eliscinsky

14) drstclair: Build Y2 Drstclair

15) eliscinsky: Sacrifice Y2 Eliscinsky
Move Y1 Eliscinsky Blueberry
Move Y1 Blueberry Drstclair
Catastrophe Drstclair Y

16) drstclair: Build B1 Drstclair

17) eliscinsky: Trade G1 R1 Blueberry

18) drstclair: Build Y1 Squish

19) eliscinsky: B G1 Blueberry

20) drstclair: Trade B2 R2 Drstclair

21) eliscinsky: Build G1 Eliscinsky

22) drstclair: Build R1 Drstclair

23) eliscinsky: T G1 Y1 Eliscinsky

24) drstclair: Sacrifice Y1 Squish
Move R2 Drstclair Blueberry

25) eliscinsky: B R2 Blueberry

26) drstclair: Sacrifice R1 Drstclair
Attack R2 Blueberry

27) eliscinsky: B R1 Blueberry
C Blueberry R

28) drstclair: Build B1 Drstclair

29) eliscinsky: B G1 Eliscinsky

30) drstclair: Trade B1 Y1 Drstclair

31) eliscinsky: T G1 B1 Blueberry

32) drstclair: Build Y2 Drstclair

33) eliscinsky: Build Y2 Eliscinsky

34) drstclair: Trade Y2 R2 Drstclair

35) eliscinsky: Build B2 Blueberry

36) drstclair: Sacrifice Y1 Drstclair
Move B1 Drstclair Blueberry
Catastrophe Blueberry Blue

37) eliscinsky: Trade G1 R1 Eliscinsky

38) drstclair: Build R1 Drstclair

39) eliscinsky: Build R2 Eliscinsky

40) drstclair: Trade R2 Y2 Drstclair

41) eliscinsky: T R1 B1 Eliscinsky

42) drstclair: Move R1 Drstclair Squish

43) eliscinsky: S Y2 Eliscinsky
M G3 Eliscinsky Squish
M G3 Squish Drstclair

44) drstclair: Build Y1 Drstclair

45) eliscinsky: Sacrifice R2 Eliscinsky
Attack Y2 Drstclair
Attack Y1 Drstclair

	drstclair: Thanks for playing. It was my first play of Homeworlds ever, so I wasn't much of a challenge
	eliscinsky: TY for a good game. Try me anytime for a rematch.
	drstclair: Will do! I've got another game going on as well, so I'll finish that one and then send a rematch!


36396)
Variants: "Sinister"
Started: 2020.6.5, Ended: 2020.7.22
Participants: Draw5PlayAll (S), eliscinsky (W), capi3101 (N), dimitrivv (E)
Winner: capi3101

1) capi3101: Homeworld G1 B3 Y3
	capi3101: Greetings all, and best of luck.

2) dimitrivv: Homeworld R3 G1 B3

3) Draw5PlayAll: Homeworld B2 R1 G3
	dimitrivv: Hi all, my first multiplayer game, I'm excited. I'll try not to make it end too quickly... :) GG

4) eliscinsky: H B3 R2 G3
	Draw5PlayAll: I should have an easy time with two G1s gone...
	dimitrivv: I actually see that I already made capi3101's life easy to come visit me... that was a quick bad start... :S

5) capi3101: Build Y1 Capi3101
	eliscinsky: Greetings everyone. I hope this is a good game for everyone. Please remember this is a Sinister game. So your focus will be the person to your left to attack and remove, but Beware of the person to your right as they will be doing the same to you. Good luck, have fun, here we go.
	capi3101: Okay...so dimitrivv is my target and eliscinsky is going to try to do me in. 

Green is going to disappear pretty fast, looks like. 
	capi3101: Still starts the same way.

6) dimitrivv: Build B1 Dimitrivv
	Draw5PlayAll: I think I will go ahead and target dimitrivv because e will be attacking me and I do not want capi to steal a quick win.

Then again, maybe capi emself is a better target...

7) Draw5PlayAll: Build G1 Draw5playall
	dimitrivv: I guess I'll have to juggle my defense against two then :S but if I can, I will probably have to focus on attacking capi3101 just to get the threat out of the way myself, since I'm too much of an easy target with these stars otherwise...
	capi3101: I suppose all of y'all might be situational targets. I mean, I don't have a direct quarrel with Draw5PlayAll, but I might have to make moves to foil your plays if, as a result of them, you wind up winning the whole shebang.

This could be a very interesting match...
	capi3101: Changing topics, when it comes to naming new systems, what conventions do y'all use? My own self, I either do the NATO phoetic or the Hebrew Alphabet. Lately I've been doing the two of them backwards.
	eliscinsky: As for naming systems .. I use either Star Trek worlds, or fruit names, or sometimes codes like G3a, or just random names.  LOL sorry.  Think I'll try fruit and veggie names this game.

8) eliscinsky: B G1 Eliscinsky
	Draw5PlayAll: You may or may not be able to figure out MY current naming conventions as a result of this game.

Obviously my previous post was a total bluff designed to trick eliscinsky into a false sense of security. After all, I would *never* come out and admit something like that directly without hiding something behind my back...

...or was it?

9) capi3101: Build Y1 Capi3101
	eliscinsky: LOL!

10) dimitrivv: Trade B3 Y3 Dimitrivv

11) Draw5PlayAll: Trade G1 Y1 Draw5playall
	dimitrivv: I don't have a star naming convention, so I'll probably make names up on the spot :)

And regarding strategy, I think I stated the obvious, actual strategy of course will depend on the play state :P

12) eliscinsky: T G1 Y1 Eliscinsky

13) capi3101: T Y1 R1 Capi3101

14) dimitrivv: Build Y1 Dimitrivv

15) Draw5PlayAll: Build G1 Draw5playall

16) eliscinsky: B G1 Eliscinsky

17) capi3101: Discover Y1 Capi3101 G2 Tav

18) dimitrivv: Move Y1 Dimitrivv Tav

19) Draw5PlayAll: Trade G1 R1 Draw5playall

20) eliscinsky: T G1 R1 Eliscinsky

21) capi3101: T Y3 B3 Capi3101

22) dimitrivv: Build B1 Dimitrivv

23) Draw5PlayAll: Discover R1 Draw5playall G3 Rocket

24) eliscinsky: D R1 Eliscinsky G1 Pea

25) capi3101: Trade B3 G3 Capi3101

26) dimitrivv: Move B1 Dimitrivv Tav

27) Draw5PlayAll: Build G1 Draw5playall

28) eliscinsky: Sacrifice Y1 Eliscinsky
Discover R1 Pea G2 Avacado
	dimitrivv: I couldn't find the info: how do you use the sacrifice and catastrophe actions on SDG? Do you give all commands at once, or one after the other? (but then, how does the game know to wait before handing over the turn?)
	capi3101: You just put them in line by line. So you'd start with "s y3 dimitrivv" on the first line, then below it you'd type "m b1 dimittrivv Tav" on the line below that. For any sacrifice plays to which you're entitled but which you don't want to move, you'd put "pass" on a line by itself. And then the catastrophe plays are in whatever piece of the sequence you'd want them in, but again they're on their own line.
	capi3101: Andy Looney recently posted a rather clever situation on Facebook where the player catastrophed their own star early on in the sequence to free up the material needed to catastrophe their opponent's homeworld for the win...
	capi3101: (No wishful thinking going on in the examples there on my first post. Just clarifying. Nope. None whatsoever...)
	Draw5PlayAll: You realize that if dmitrivv suicides then you do not get credit because ey didn't die by YOUR move? You would just have to target me.

29) capi3101: Build G1 Capi3101
	eliscinsky: dimitrivv here is what I just did. \n
\n
s y1 eliscinsky \n
d r1 Pea g2 Avacado \n
	dimitrivv: Thanks :D btw I also found the info here: http://superdupergames.wikidot.com/games:homeworlds
Imo this link should be at the top together with the commands summary.
	capi3101: (I was just writing an example. Geez...... >:) )

30) dimitrivv: T B1 R1 Tav

31) Draw5PlayAll: Build R2 Rocket

32) eliscinsky: Build R2 Avacado

33) capi3101: Build R2 Capi3101

34) dimitrivv: Build R2 Tav

35) Draw5PlayAll: Sacrifice Y1 Draw5playall
Discover R1 Rocket G2 Dreams

36) eliscinsky: B G1 Eliscinsky

37) capi3101: Sacrifice Y1 Tav
Discover R2 Capi3101 Y2 Shin

38) dimitrivv: Build R3 Tav

39) Draw5PlayAll: Build R3 Rocket

40) eliscinsky: B G2 Eliscinsky

41) capi3101: Build R3 Capi3101
	eliscinsky: WOW! What a show of strength from everyone. LOL - Wonder how that's going to play out. 

42) dimitrivv: Discover R2 Tav G3 Clover
	dimitrivv: Haha yeah, I thought of spicing things up a bit with the reds :D
I've played just a few games of Homeworlds so far and this is my first multiplayer, but I'm having a blast! So simple yet so strategic and varied!
	capi3101: Y'all are focusing too heavily on red. Quoth Scotty: "Without engines, there'd be no fighting..."
	capi3101: Now that I've said that...

43) Draw5PlayAll: Build R3 Dreams
	eliscinsky: Fighting is "COOL", but blowing up stars is the way to go.  ;)

44) eliscinsky: Trade G1 Y1 Eliscinsky

45) capi3101: Trade G1 Y1 Capi3101

46) dimitrivv: Build Y1 Tav

47) Draw5PlayAll: Trade G1 Y1 Draw5playall

48) eliscinsky: S G2 Eliscinsky
B Y2 Eliscinsky
B Y2 Eliscinsky

49) capi3101: D R3 Capi3101 G2 Resh
	Draw5PlayAll: That was close

50) dimitrivv: B B1 Dimitrivv

51) Draw5PlayAll: Build Y2 Draw5playall

52) eliscinsky: T Y1 B1 Eliscinsky

53) capi3101: B G1 Capi3101
	Draw5PlayAll: Five systems are green and entirely occupied by red ships.

54) dimitrivv: Move B1 Dimitrivv Tav

55) Draw5PlayAll: Trade Y1 B1 Draw5playall

56) eliscinsky: Sacrifice B1 Eliscinsky
Trade R1 G1 Avacado

57) capi3101: Trade G3 Y3 Capi3101

58) dimitrivv: Build R1 Clover

59) Draw5PlayAll: Move B1 Draw5playall Rocket

60) eliscinsky: Discover Y2 Eliscinsky B1 Blueberry

61) capi3101: Move Y1 Capi3101 Resh

62) dimitrivv: Trade R3 G3 Tav

63) Draw5PlayAll: Trade R2 Y2 Rocket

64) eliscinsky: B R2 Avacado

65) capi3101: Sacrifice G1 Capi3101
Build R3 Shin

66) dimitrivv: Discover Y1 Tav B3 Mystique

67) Draw5PlayAll: Build B1 Rocket

68) eliscinsky: B G1 Eliscinsky

69) capi3101: Build Y1 Resh

70) dimitrivv: T Y1 G1 Mystique

71) Draw5PlayAll: Move B1 Rocket Dreams

72) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Eliscinsky
Build G3 Eliscinsky
Build Y1 Blueberry

73) capi3101: Move R3 Shin Blueberry

74) dimitrivv: S G3 Tav
B G3 Mystique
B Y1 Dimitrivv
B Y3 Tav

75) Draw5PlayAll: Build Y3 Draw5playall

76) eliscinsky: Build Y3 Eliscinsky

77) capi3101: Attack Y2W Blueberry

78) dimitrivv: Sacrifice Y1 Dimitrivv
Move R1 Tav Mystique

79) Draw5PlayAll: Build Y1 Rocket

80) eliscinsky: Trade G2 B2 Eliscinsky

81) capi3101: A Y1W Blueberry

82) dimitrivv: Sacrifice G3 Mystique
Build B2 Dimitrivv
Build B2 Tav
Build G2 Mystique

83) Draw5PlayAll: Sacrifice Y2 Draw5playall
Move Y1 Rocket Tav
Move Y2 Rocket Tav
Catastrophe Tav Yellow

84) eliscinsky: Build G3 Avacado

85) capi3101: Move Y1 Blueberry Shin

86) dimitrivv: Discover B1 Dimitrivv Y2 Heh
	Draw5PlayAll: I'm sorry, but you were in violation of Regulation 6.57 concerning excessive stock-piling of wormhole technology.
	Draw5PlayAll: In all seriousness, I'm predicting capi will win.

87) Draw5PlayAll: Build Y1 Draw5playall
	capi3101: I appreciate the vote of confidence. Still plenty of time for me to bone this up though...

88) eliscinsky: Sacrifice B2 Eliscinsky
Trade R2 B2 Avacado
Trade G3 B3 Avacado

89) capi3101: Discover R3 Blueberry Y2 Qoph
	dimitrivv: Well I saw the risk and took it; I had too much haste. :) So we'll go from here and see.

90) dimitrivv: Sacrifice B2 Tav
Trade Y3 G3 Dimitrivv
Trade R1 Y1 Clover

91) Draw5PlayAll: Move Y1 Draw5playall Rocket

92) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build B2 Avacado
Build R1 Avacado

93) capi3101: Build Y3 Capi3101
	dimitrivv: I could actually make eliscinsky win this turn by catastrophe blue on capi's HW (reason enough was to disprove Draw5's prediction! :P), but let's see if he wins on his own instead or what else :)

94) dimitrivv: S G2 Mystique
B Y3 Clover
B R2 Mystique

95) Draw5PlayAll: Move Y3 Draw5playall Mystique
	eliscinsky: Question is ... Did I roll a natural 20, or a 1? ;)
	capi3101: Well, that's annoying...

96) eliscinsky: Build G2 Avacado

97) capi3101: Move Y3 Capi3101 Heh

98) dimitrivv: Sacrifice Y3 Clover
Move R1 Mystique Draw5playall
Move R2 Mystique Draw5playall
Move G1 Mystique Avacado
Catastrophe Avacado Green

99) Draw5PlayAll: Build Y3 Rocket
	eliscinsky: Well, here goes everything or nothing.

100) eliscinsky: Trade G1 R1 Eliscinsky
	eliscinsky: Okay, maybe not.  Rolling for another natural 20 ...

101) capi3101: Discover Y1 Resh B3 Tsade

102) dimitrivv: Move B1 Heh Clover
	capi3101: Going to come up at least one short.

103) Draw5PlayAll: Move Y3 Mystique Tav
	dimitrivv: Well, I was half forced to do this and it was too cool not to do it anyway :P I think this helped capi a lot in the end but well... we'll see.
	dimitrivv: There were too many ships on Avacado.
	eliscinsky: Well, that's what happens when you put all your eggs in one basket. Guess I rolled a 1.  Time to rethink and start over.
	eliscinsky: And yes, capi no longer has to worry about me attacking and can focus completely on you dimitrivv. 
	Draw5PlayAll: Capi, you know you can't win if dimitrivv kills me first...

104) eliscinsky: Sacrifice Y3 Eliscinsky
Move R1 Eliscinsky Blueberry
Move R1 Blueberry Clover
Move R1 Clover Draw5playall
Catastrophe Draw5playall R
	eliscinsky: Hmmm, the banter is getting interesting. LOL

105) capi3101: Build Y3 Resh
	capi3101: Wow...I need to come see what's going on between turns more often...
	capi3101: I'm reasonably certain you're not in danger of elimination, Draw5PlayAll...
	capi3101: ...though as expected, the game has gotten very interesting. Do you assist the player who's attempting to kill you by attacking the player trying to kill them, or not? We've seen it once already.
	capi3101: I do this wrong and I imagine we'll see it again...
	Draw5PlayAll: In a sense, we have an uneasy alliance. You want to destroy east, and I want east NOT to destroy me.
	capi3101: On the other hand, if I make a move that would result in dimitrivv's defeat on the next turn, and he lacks the resources needed to deflect said attack, it would fall on the other two of you to come to his aid or lose the game yourselves...

I think I still want to maintain the status quo. For now at least.

106) dimitrivv: Move B1 Clover Draw5playall

107) Draw5PlayAll: Sacrifice R1 Dreams
Attack B1E Draw5playall

108) eliscinsky: B G1 Eliscinsky
	eliscinsky: Time to shake things up.

109) capi3101: Move R3 Resh Clover

110) dimitrivv: Discover Y1 Clover G2 Envy
	capi3101: My star empire is now listed on Uber, apparently.
	capi3101: Got a bad feeling about what's going to happen this round, but it may turn out better than I suspect it will.
	eliscinsky: PSA: From the Looney Labs HW Rules PDF.

Sinister Homeworlds: In this variation, your goal is to eliminate the person currently to your left. If anyone else causes that player's elimination, then the game continues without them. Eliminated players’ pieces remain in play.

MY take ... If you don't eliminate the player to your left ... you don't win.  Until you eliminate the NEW player to your left.
	Draw5PlayAll: Yeah, I think if, say, I were to die not by dimitrivv's actions, then they would have to kill eliscinsky.

111) Draw5PlayAll: Trade B1 R1 Draw5playall
	dimitrivv: I don't really have good moves :)

112) eliscinsky: Trade G1 B1 Eliscinsky
	Draw5PlayAll: Neither do I.

113) capi3101: Attack R2E Clover

114) dimitrivv: B B2 Dimitrivv
	capi3101: Let's try changing the plan slightly...

115) Draw5PlayAll: Sacrifice Y3 Rocket
Move Y3 Tav Dimitrivv
Move R3 Dreams Dimitrivv
Discover B1 Dreams Y3 Recycling
	dimitrivv: Draw5 hypnosis... "build B2 Draw5PlayAll... build B2 Draw5PlayAll... build B2 Draw5PlayAll..." :D (although that wouldn't necessarily make me win)
	dimitrivv: actually, that's probably the only way to slow down capi?
	dimitrivv: I unwillingly probably suggested his best move :P (since capi's victory is as much his loss as it is mine)
	dimitrivv: for completeness at this point, capi would then be forced to sacrifice a Y3 to catastrophe yellow on Envy
	dimitrivv: (I would normally avoid suggesting upcoming moves explicitly like this; in fact my initial comment was meant as a gaming suicide joke... and it's impossible to delete the comments)

116) eliscinsky: Build B2 Eliscinsky

117) capi3101: S Y3 Capi3101
M Y3 Heh Dimitrivv
M Y3 Resh Dimitrivv
M R3 Qoph Dimitrivv

118) dimitrivv: M Y1 Envy Dimitrivv
C Dimitrivv Yellow
	dimitrivv: Oh ok, apparently that move was not liked for some reason :)

119) Draw5PlayAll: Sacrifice R3 Rocket
Attack R3N Dimitrivv
Attack G3E Dimitrivv
Attack B2E Dimitrivv

120) eliscinsky: Trade B2 R2 Eliscinsky
	Draw5PlayAll: Let's just stop this shenanigans.
	Draw5PlayAll: Then again, maybe not...

121) capi3101: Move R2 Shin Dimitrivv
Catastrophe Dimitrivv R
	Draw5PlayAll: Yeah, I have to.

122) dimitrivv: B B2 Dimitrivv
	eliscinsky: I think it's aboot to get wery interesting!
	capi3101: Well, crap.
	capi3101: I’ll either win or lose it right here. Might as well try for the win.

123) Draw5PlayAll: Trade G3 Y3 Dimitrivv
	capi3101: Action Stations.
	eliscinsky: CAn a single player own two (2) binary star systems?  I suppose you can.

As I said ... It's getting VERY interesting.
	dimitrivv: It's crowded in here... 

124) eliscinsky: Build G1 Eliscinsky

125) capi3101: Sacrifice Y2 Blueberry
Move R3 Clover Tav
Move R3 Tav Capi3101
	Draw5PlayAll: Well, fortunately for me, capi seriously weakened themselves with that attack... (actually, we are ALL rather weak...)

I think the moment East loses their last ship the dimitrivv system loses its significance as a Homeworld system.

126) dimitrivv: Trade B2 R2 Dimitrivv
	capi3101: Yep. That went about like I thought it would. Back to the drawing board for us all...

127) Draw5PlayAll: Sacrifice R1 Draw5playall
Attack R2E Dimitrivv

128) eliscinsky: Discover R2 Eliscinsky G1 Kiwi
	dimitrivv: Probably won't last long at this point :) but it was a fun first multiplayer

129) capi3101: Trade R1 Y1 Capi3101

130) dimitrivv: B B1 Dimitrivv
	Draw5PlayAll: I can let eliscinsky do the honors.
	eliscinsky: Well, as gracious as that offer from Draw5PlayAll is, I believe that honor should go to capi3101.  It is after all his responsibility to remove his left hand opponent.

To that end I grant thee dimitrivv a boon. That boon is a "stay of execution" and is so ordered, and is to last one turn (mine).  Good Luck dimitrivv!

Happy hunting capi3101.

P.S. I hope I don't regret this.

131) Draw5PlayAll: Move R2 Dimitrivv Draw5playall
	Draw5PlayAll: You see, I am intentionally trying NOT to let capi be the one to defeat dimitrivv, so that I still have some chance of winning.
	capi3101: Looks like you get to live to fight another day, dimitrivv. Don't waste the opportunity.
	capi3101: Myself, I'm looking at Babamots's list of red flags. I've got number four going on right now, and I need to rectify that ASAP.

I won't call it a 'mistake', but that attack sequence cost me dearly...

132) eliscinsky: Build Y2 Eliscinsky

133) capi3101: Sacrifice Y1 Tsade
Move R2 Clover Tav

134) dimitrivv: S B1 Tav
T B2 R2 Dimitrivv
	dimitrivv: surprised to still be around... :o
	Draw5PlayAll: Oh hey, thanks for that red.

135) Draw5PlayAll: Sacrifice R2 Draw5playall
Attack R2E Dimitrivv
Attack B1E Dimitrivv
	eliscinsky: So I got it on good authority that if Draw5PlayAll (S) takes out dimitrivv (E), then capi3101 (N) will have to eliminate Draw5PlayAll's original (S) HW instead.  As Draw5PlayAll will become the new player to his left.  The captured (E) HW is no longer a target, but just another star system.

136) capi3101: Pass
	Draw5PlayAll: I hope this is how SDG implemented it, anyway.
	eliscinsky: True.  There is that.

137) Draw5PlayAll: Pass

138) eliscinsky: Move B1 Eliscinsky Kiwi

139) capi3101: Build R1 Capi3101

140) Draw5PlayAll: Build R1 Dimitrivv

141) eliscinsky: Move G1 Eliscinsky Kiwi

142) capi3101: Trade R1 B1 Capi3101
	Draw5PlayAll: Let's get it over with.

143) Draw5PlayAll: Move B2 Dimitrivv Shin

144) eliscinsky: Build B2 Kiwi
	Draw5PlayAll: Hold it. Eliscinsky got skipped. Please undo your move and pass, and then I will also pass and we can right this.
	eliscinsky: Okay, why was I passed over?  It should have been my turn.  I've seen this in another SDG 4 player HW game, that when one play is eliminated the next player sequence goes crazy and skips the next logical player.

capi3101 are you willing to undo your turn and pass?
Then Draw5PlayAll also pass?
All to allow me a fair turn.

V/R (W)
	eliscinsky: Hey TY Draw5PlayAll
	eliscinsky: capi3101 I promise not to take your r1 -- LOL
	Draw5PlayAll: My best guess is that SDG calculates the current turn based on N mod P, where N is the number of moves and P is the number of players.
So N was, say, 50 = 4*12 + 2, which would make it my turn (since I went after 2 players).
After I killed east P became 3 but N was 51 which is divisible by 3 and thus it thinks it is capi's turn (who went first).
	Draw5PlayAll: What is V/R (W) by the way?
	eliscinsky: V/R = Very Respectifully
	dimitrivv: so it happened... :P my moves were quite dumb anyway at that point... I'll monitor the rest of the game, good luck :)
	dimitrivv: btw, I understood that in multiplayer games, if a player is eliminated, all the assets would stay on the board as normal stars and neutral ships (that can be captured); but in this case my homeworld and any ships there got removed from the board... sounds like a bug?
	dimitrivv: oh, nevermind, my homeworld simply got rearranged, I should have checked better the star names before commenting
	capi3101: Sorry, y'all. I may have mentioned a while back that I need to come by more often to see where things are between turns. Move will be undone momentarily.

145) capi3101: Discover Y1 Shin B3 Peh

146) Draw5PlayAll: Build B2 Rocket
	eliscinsky: TY Players. I appreciate you're sense of fair play.

147) eliscinsky: Trade B2 Y2 Kiwi

148) capi3101: Move B1 Capi3101 Tav

149) Draw5PlayAll: Move Y3 Dimitrivv Tav

150) eliscinsky: Move R2 Kiwi Resh

151) capi3101: Sacrifice Y1 Resh
Move R2 Tav Peh
	capi3101: Finally.
	capi3101: Don't get me wrong, I feel I did reasonably well with the ketchup and mustard strategy, but...

152) Draw5PlayAll: Sacrifice R1 Dimitrivv
Attack B1N Tav
	Draw5PlayAll: I Can't Let You Have That.

153) eliscinsky: Build R1 Resh
	capi3101: Meh. Now I have to check to see what letter I'm on...

154) capi3101: Build Y1 Capi3101

155) Draw5PlayAll: Build R1 Dimitrivv
	Draw5PlayAll: I probably won't win, but I can make life hard for eliscinsky...

156) eliscinsky: Build B2 Kiwi

157) capi3101: Trade Y1 G1 Capi3101

158) Draw5PlayAll: Move Y3 Tav Kiwi
	Draw5PlayAll: I... Can't Let You Have That...

159) eliscinsky: Sacrifice Y2 Kiwi
Move R1 Resh Capi3101
Move R2 Resh Capi3101
	capi3101: Ugh. How annoying...
	capi3101: Fine. Take the damn thing.

160) capi3101: Sacrifice R2 Peh
Attack R2W Capi3101
Attack R1W Capi3101

161) Draw5PlayAll: Sacrifice R2 Dimitrivv
Attack B2W Kiwi
Attack B1W Kiwi

162) eliscinsky: Build G2 Kiwi
	capi3101: If you're done being stupid, now would be the time to refocus on your target.

163) capi3101: Discover R2 Capi3101 Y2 Ayin
	capi3101: I apologize - I'm annoyed at the situation, but that's no excuse to not remain civil at least.
	Draw5PlayAll: Thwarting the person trying to kill you is a very valid strategy in Sinsiter...

Here, I will go after the other player now.

164) Draw5PlayAll: Move Y3 Kiwi Draw5playall

165) eliscinsky: Sacrifice Y2 Eliscinsky
Discover G2 Kiwi Y2 Lemon
Move G1 Kiwi Lemon

166) capi3101: Move G1 Capi3101 Ayin

167) Draw5PlayAll: Sacrifice G3 Draw5playall
Build B2 Recycling
Build B3 Tav
Build B3 Dimitrivv
	Draw5PlayAll: I Can't Let You Have That.

168) eliscinsky: Sacrifice G2 Lemon
Build G2 Lemon
Build G2 Lemon
	eliscinsky: "Thwarting the person trying to kill you is a very valid strategy in Sinsiter... " Hmmm...
	eliscinsky: cappi3101 in two
	Draw5PlayAll: Ugh. You didn't do it right. I thought for sure you were going to sac your B2@Kiwi and trade your smalls into yellow, thus depriving me of being the only person with 2 larges.
	eliscinsky: On second thought ... I don't want to make it that easy for capi3101 ;)

169) capi3101: Build G2 Ayin
	Draw5PlayAll: Thanks...
	capi3101: Ah. That's what I get for not mashing go sooner! Crap!!
	capi3101: Make the best of this, I suppose. But I got a bad feeling about it...

170) Draw5PlayAll: Trade B3 R3 Tav

171) eliscinsky: Build G2 Eliscinsky
	Draw5PlayAll: As a consolation prize, capi, I'll let you have those reds for free.

172) capi3101: Build G3 Ayin

173) Draw5PlayAll: Build B3 Rocket

174) eliscinsky: Move G1 Lemon Capi3101

175) capi3101: Move G3 Ayin Peh

176) Draw5PlayAll: Trade B3 Y3 Rocket

177) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build G3 Capi3101
Build G3 Capi3101
Catastrophe Capi3101 G
	Draw5PlayAll: Rule of Acquisition 95. And also 97.

178) capi3101: Sacrifice G2 Ayin
Build Y1 Capi3101
Build R1 Ayin

179) Draw5PlayAll: Build B3 Tav

180) eliscinsky: Trade G2 Y2 Eliscinsky

181) capi3101: Discover Y1 Capi3101 G1 Samekh

182) Draw5PlayAll: Sacrifice Y3 Rocket
Move B3 Dimitrivv Eliscinsky
Move B3 Tav Dimitrivv
Move B3 Dimitrivv Eliscinsky

183) eliscinsky: S G2 Lemon
B G1 Eliscinsky
B Y1 Eliscinsky

184) capi3101: Sacrifice G3 Peh
Build Y3 Peh
Build Y3 Samekh
Build Y3 Capi3101

185) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move B2 Recycling Draw5playall
Move Y1 Rocket Kiwi
Move Y1 Kiwi Eliscinsky
Catastrophe Eliscinsky Yellow

186) eliscinsky: Sacrifice G2 Lemon
Build G2 Eliscinsky
Build G2 Eliscinsky
	capi3101: I suspect our homeworlds are about to have a direct connection, Draw5PlayAll, shortly after which I'll be put out of my misery...
	capi3101: Nibbled to death by cats...

187) capi3101: Sacrifice Y3 Samekh
Move Y3 Peh Draw5playall
Move Y3 Capi3101 Draw5playall
Move R3 Capi3101 Draw5playall
Catastrophe Eliscinsky G
	eliscinsky: Isn't there already a connection between capi3101 and Draw5PlayAll?  Looks that way to me.  Let's just solidify it, shall we.

188) Draw5PlayAll: Pass
	eliscinsky: Although I feel a bang coming my way.  Might even things up a bit.
	capi3101: Been a pleasure, y'all.

189) capi3101: Attack B2S Draw5playall
	capi3101: Meow.

	capi3101: Alright. Thanks to all y'all for the game. 
	eliscinsky: Fun game! But I agree "Last man standing" would be better.  Hope to play you all again.
	dimitrivv: Congrats capi3101!
I did not follow the game closely after I was eliminated since I was not getting any notifications and the game is a bit buggy about player seats once one is eliminated, but nonetheless I enjoyed it while it lasted! :)


36574)
Started: 2020.6.5, Ended: 2020.6.10
Participants: drstclair (S), tkvaran (N)
Winner: tkvaran

1) tkvaran: Homeworld G3 R1 B3

2) drstclair: Homeworld Y3 G2 B3

3) tkvaran: Build B1 Tkvaran

4) drstclair: Build B1 Drstclair

5) tkvaran: Trade B1 Y1 Tkvaran

6) drstclair: Build B1 Drstclair

7) tkvaran: Build Y1 Tkvaran

8) drstclair: Trade B1 Y1 Drstclair

9) tkvaran: Build B1 Tkvaran

10) drstclair: Build Y2 Drstclair

11) tkvaran: Discover Y1 Tkvaran G2 Freddie

12) drstclair: Build Y2 Drstclair

13) tkvaran: Build Y2 Freddie
Catastrophe Drstclair Yellow

14) drstclair: Build B1 Drstclair

15) tkvaran: Move B1 Tkvaran Drstclair
Catastrophe Drstclair Blue



36577)
Variants: "Hard time"
Started: 2020.6.6, Ended: 2020.7.21
Participants: dlwillson (S), deanthebean (N)
Winner: dlwillson

1) deanthebean: Homeworld R1 B2 G3

2) dlwillson: H R3 B1 G3 Dlwillson
	deanthebean: Hello. Have fun!

3) deanthebean: Build G1 Deanthebean
	dlwillson: You too! Thanks for the challenge!

4) dlwillson: Build G1 Dlwillson

5) deanthebean: Trade G1 Y1 Deanthebean

6) dlwillson: Trade G1 Y1 Dlwillson

7) deanthebean: Build G1 Deanthebean

8) dlwillson: Build G1 Dlwillson

9) deanthebean: Trade G1 R1 Deanthebean

10) dlwillson: T G1 R1 Dlwillson

11) deanthebean: Build R2 Deanthebean

12) dlwillson: Build R2 Dlwillson

13) deanthebean: Trade R2 Y2 Deanthebean

14) dlwillson: T R1 B1 Dlwillson

15) deanthebean: Trade Y1 B1 Deanthebean

16) dlwillson: Build B2 Dlwillson

17) deanthebean: Build B2 Deanthebean

18) dlwillson: Discover B1 Dlwillson G2 Field

19) deanthebean: Discover B1 Deanthebean Y3 Motorway

20) dlwillson: B B3 Field

21) deanthebean: Sacrifice G3 Deanthebean
Build B3 Motorway
Build B3 Deanthebean
Build Y1 Deanthebean

22) dlwillson: D B2 Dlwillson G2 Alsofield

23) deanthebean: Trade B1 G1 Motorway

24) dlwillson: B B1 Alsofield

25) deanthebean: Trade B3 G3 Deanthebean

26) dlwillson: S B2 Alsofield
T B1 Y1 Alsofield
T B3 Y3 Field

27) deanthebean: Build Y2 Deanthebean

28) dlwillson: Build Y2 Alsofield

29) deanthebean: Trade B3 Y3 Motorway

30) dlwillson: Sacrifice Y2 Alsofield
Move Y1 Alsofield Motorway
Move Y1 Motorway Deanthebean
Catastrophe Deanthebean Y

31) deanthebean: Build G1 Deanthebean

32) dlwillson: Build Y1 Field

33) deanthebean: Trade G1 Y1 Deanthebean

34) dlwillson: Move Y1 Field Motorway

35) deanthebean: Build Y2 Deanthebean

36) dlwillson: B Y2 Field

37) deanthebean: Trade Y1 G1 Deanthebean

38) dlwillson: Move Y2 Field Motorway
Catastrophe Motorway Y

39) deanthebean: Build Y1 Deanthebean

40) dlwillson: Build R1 Dlwillson

41) deanthebean: Discover R1 Deanthebean G3 Bigfield

42) dlwillson: Move R2 Dlwillson Field

43) deanthebean: Build R2 Bigfield

44) dlwillson: B R2 Field

45) deanthebean: Move Y1 Deanthebean Bigfield

46) dlwillson: D R2 Field Y3 Sol

47) deanthebean: Discover R1 Bigfield G2 Mediumfield

48) dlwillson: B R3 Field

49) deanthebean: Build R3 Bigfield

50) dlwillson: T R3 B3 Field

51) deanthebean: Build R3 Mediumfield

52) dlwillson: Move B3 Field Sol

53) deanthebean: Sacrifice Y2 Deanthebean
Move R3 Mediumfield Dlwillson
Move R1 Mediumfield Dlwillson
Catastrophe Dlwillson R

54) dlwillson: Build R1 Field

55) deanthebean: Build G1 Deanthebean

56) dlwillson: Move B3 Sol Deanthebean
	dlwillson: Goodness! That was unexpected!

57) deanthebean: Attack B3 Deanthebean
	dlwillson: Mistakes have been made! I will endeavour to be more careful, henceforth!

58) dlwillson: Sacrifice Y3 Field
Move B1 Field Bigfield
Move B1 Bigfield Deanthebean
Move R1 Field Dlwillson
Catastrophe Deanthebean B

59) deanthebean: Discover R2 Bigfield B2 Market
	dlwillson: Let's see how this works out...

60) dlwillson: S G3 Dlwillson
B R1 Field
B R3 Sol
B R3 Dlwillson

61) deanthebean: Move R3 Bigfield Dlwillson
	deanthebean: It certainly looks critical

62) dlwillson: A R3 Dlwillson

63) deanthebean: Sacrifice Y1 Bigfield
Move R2 Market Dlwillson
Catastrophe Dlwillson Red
	deanthebean: It looks to me like you are winning now. 

64) dlwillson: M R3 Sol Dlwillson
	dlwillson: I think so, too! Whew! What a relief!

65) deanthebean: Build G1 Deanthebean
Catastrophe Deanthebean Green
	deanthebean: This seems worth a try though...

	dlwillson: Yes. Technically, you *can* build, but that will only shorten the game.
	dlwillson: I think this is resolved to two branches. You can build or pass. If you build, I cat green. If you pass, I trade my big red to a big yellow and you have the same choices. If you build green, I cat green. If you pass, I sac the big yellow, move in all the red, and cat red.
	deanthebean: Yup. You're right. Well played!


36579)
Started: 2020.6.6, Ended: 2020.6.19
Participants: capi3101 (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B3 R1 G3
	capi3101: Greetings. Indeed, we have never played this before; not particularly thrilled with the idea of playing a rated game against a player with an Elo rating a hundred points higher than mine. Nevertheless, I promise I'll do my best to not lose too quickly...

2) capi3101: Homeworld B1 G3 Y3

3) Draw5PlayAll: Build G1 Draw5playall

4) capi3101: B Y1 Capi3101

5) Draw5PlayAll: Build G1 Draw5playall

6) capi3101: Build Y1 Capi3101

7) Draw5PlayAll: Trade G1 Y1 Draw5playall

8) capi3101: Trade Y3 G3 Capi3101

9) Draw5PlayAll: Build Y2 Draw5playall

10) capi3101: Build Y2 Capi3101

11) Draw5PlayAll: Discover Y2 Draw5playall G2 Dreams

12) capi3101: Trade Y2 R2 Capi3101
	capi3101: Just realized that I opted for the smaller-than-normal universe size. Oops...

13) Draw5PlayAll: Trade G1 R1 Draw5playall

14) capi3101: Discover Y1 Capi3101 G2 Qof

15) Draw5PlayAll: Build Y2 Draw5playall

16) capi3101: Move R2 Capi3101 Qof

17) Draw5PlayAll: Discover Y1 Draw5playall B2 Jackpot

18) capi3101: Build R1 Qof
	capi3101: Been staring at this most of the day...enough stalling on my part.

19) Draw5PlayAll: Move R1 Draw5playall Dreams

20) capi3101: Build G1 Capi3101

21) Draw5PlayAll: Build R2 Dreams

22) capi3101: M R1 Qof Capi3101

23) Draw5PlayAll: Discover R1 Dreams G1 Money

24) capi3101: T G1 B1 Capi3101

25) Draw5PlayAll: Build G1 Draw5playall

26) capi3101: Build B1 Capi3101

27) Draw5PlayAll: Move G1 Draw5playall Jackpot
	capi3101: I see it but I don't think I can foil it. Dammit.

28) capi3101: Discover B1 Capi3101 G2 Tsade
	Draw5PlayAll: Try harder.

29) Draw5PlayAll: Build G1 Jackpot

30) capi3101: Trade G3 B3 Capi3101
	capi3101: Oh, dammit.

31) Draw5PlayAll: Build G3 Draw5playall
	capi3101: No real choice there. None of the trades are particularly good options...

32) capi3101: Build B2 Tsade
	capi3101: Yep. Saw that one coming. One hell of a factory setup...

33) Draw5PlayAll: Trade G3 R3 Draw5playall

34) capi3101: Discover R2 Qof Y3 Pe
	Draw5PlayAll: Then again, maybe not...

35) Draw5PlayAll: Build G3 Jackpot

36) capi3101: Discover B1 Capi3101 B2 Ayin
	capi3101: Here it comes...

37) Draw5PlayAll: Sacrifice G3 Jackpot
Build Y2 Dreams
Build Y3 Jackpot
Build Y3 Draw5playall

38) capi3101: Build B3 Tsade

39) Draw5PlayAll: Build G3 Draw5playall

40) capi3101: Build R2 Capi3101

41) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G3 Draw5playall
Build R3 Money
Build R3 Dreams
	capi3101: Dammit. I wonder if I should resign now and save you the trouble.

42) capi3101: Move R1 Capi3101 Tsade

43) Draw5PlayAll: Move G3 Draw5playall Ayin
	Draw5PlayAll: For some reason it always takes me way longer than I want to win... maybe because I am always afraid of letting the opponent come back.
	capi3101: Well, the material advantage you've got at this point is impressive, to say the least. You're one move away from being able to pull off a textbook direct assault unless I'm very much mistaken.
	capi3101: I'll play on for now. If I've learned anything, it's that this game is incredibly unforgiving of mistakes and even the most experienced players can still commit them.

44) capi3101: Move Y1 Capi3101 Tsade

45) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move G3 Ayin Capi3101
Move Y3 Jackpot Capi3101
Move R3 Dreams Capi3101

	Draw5PlayAll: Engage.
	capi3101: ...and that'll do it. GG.


36542)
Started: 2020.6.8, Ended: 2020.8.1
Participants: ts52 (S), bhorner (N)
Winner: ts52

1) bhorner: Homeworld B2 R1 G3

2) ts52: Homeworld B1 Y3 G3
	bhorner: For the tournament right?
	ts52: Yes, this is for the 2019 tournament! ;)

3) bhorner: Build G1 Bhorner
	bhorner: Uh oh, one of those blue yellow people.  lol

4) ts52: Build G1 Ts52

5) bhorner: Trade G1 Y1 Bhorner
	ts52: :)

6) ts52: Build G1 Ts52

7) bhorner: Build Y1 Bhorner

8) ts52: Trade G1 B1 Ts52

9) bhorner: Build Y1 Bhorner

10) ts52: Build B1 Ts52

11) bhorner: Discover Y1 Bhorner G3 Tree

12) ts52: Discover B1 Ts52 G2 Kermit

13) bhorner: Build Y2 Tree

14) ts52: Build B2 Kermit

15) bhorner: Discover Y2 Tree G2 Fern

16) ts52: Trade B2 Y2 Kermit

17) bhorner: Sacrifice G3 Bhorner
Build Y2 Tree
Build Y3 Bhorner
Build Y3 Fern

18) ts52: Build B2 Kermit

19) bhorner: Trade Y3 B3 Bhorner

20) ts52: Build Y3 Kermit

21) bhorner: Sacrifice Y2 Fern
Move Y1 Tree Kermit
Move Y2 Tree Kermit
Catastrophe Kermit Y

22) ts52: Trade B2 Y2 Kermit

23) bhorner: Trade Y1 G1 Bhorner

24) ts52: Build B2 Kermit

25) bhorner: Trade B3 G3 Bhorner

26) ts52: Build B2 Ts52

27) bhorner: Discover G1 Bhorner B3 Sky

28) ts52: Build B3 Kermit
	bhorner: I guess I over committed to that initial yellow rush.  :)

29) bhorner: Build Y1 Fern
	ts52: The rush moves always take me by surprise. And often get the better of me.

30) ts52: Trade B3 R3 Kermit

31) bhorner: Build G1 Bhorner
	bhorner: Oh wow.  :). I'm sorry that I don't really have a he concentration for this right now.  Especially after I see the current state.  :). I will try to get my moves in quickly.

32) ts52: Move R3 Kermit Sky
	ts52: No worries

33) bhorner: Sacrifice G3 Bhorner
Build G2 Sky
Build G3 Bhorner
Build G3 Bhorner

34) ts52: Attack G2 Sky

35) bhorner: Trade G1 R1 Bhorner

36) ts52: Attack G1 Sky

37) bhorner: Trade G3 B3 Bhorner

38) ts52: Discover B2 Ts52 Y2 Bigbird



36410)
Variants: "Unrated"
Started: 2020.6.9, Ended: 2020.8.4
Participants: Babamots (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Babamots: Homeworld R1 B2 G3

3) Trydnt: Build G1 Trydnt
	Babamots: I feel like a weird experiment. GLHF!
	Trydnt: well this will be interesting. good luck!
	Babamots: OK, chickening out on that one. Too weird.

4) Babamots: Build G1 Babamots
	Trydnt: yeah no blue can be done but it's hard and taking green in the star is never good imo

5) Trydnt: Trade G1 Y1 Trydnt

6) Babamots: Trade G1 Y1 Babamots

7) Trydnt: Build Y2 Trydnt

8) Babamots: Build Y2 Babamots

9) Trydnt: Trade Y1 R1 Trydnt

10) Babamots: Build Y1 Babamots

11) Trydnt: Discover Y2 Trydnt G3 G3

12) Babamots: Trade Y2 R2 Babamots

13) Trydnt: Build Y2 G3

14) Babamots: Discover Y1 Babamots B3 Bolarus

15) Trydnt: Discover Y2 G3 R1 R1

16) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build Y3 Bolarus
Build Y3 Babamots

17) Trydnt: Move Y2 R1 Bolarus
Catastrophe Bolarus Y

18) Babamots: Trade Y3 G3 Babamots

19) Trydnt: Build R1 Trydnt

20) Babamots: Build Y1 Babamots

21) Trydnt: Build Y2 G3

22) Babamots: Discover Y1 Babamots B3 Bolarus

23) Trydnt: Discover Y2 G3 G2 G2

24) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build Y3 Bolarus
Build Y3 Babamots

25) Trydnt: Move Y2 G2 Bolarus
Catastrophe Bolarus Y

26) Babamots: Trade Y3 G3 Babamots

27) Trydnt: Build R2 Trydnt

28) Babamots: Build G1 Babamots
	Babamots: Now I can't remember why I thought that would be helpful.

29) Trydnt: Move R1 Trydnt G3

30) Babamots: Discover R2 Babamots B3 Bolarus

31) Trydnt: Build G1 Trydnt

32) Babamots: Move G1 Babamots Bolarus

33) Trydnt: Trade G1 B1 Trydnt

34) Babamots: Build G1 Bolarus

35) Trydnt: Discover R2 Trydnt B3 B3

36) Babamots: Build Y1 Babamots

37) Trydnt: Build Y2 G3

38) Babamots: Move Y1 Babamots Bolarus

39) Trydnt: Discover Y2 G3 B1 B1

40) Babamots: Build Y2 Babamots

41) Trydnt: Build Y3 G3

42) Babamots: Build Y3 Bolarus

43) Trydnt: Sacrifice G3 Trydnt
Build R2 G3
Build R3 Trydnt
Build Y3 B1

44) Babamots: Build R3 Bolarus

45) Trydnt: Trade R3 G3 Trydnt

46) Babamots: Discover R3 Bolarus G1 Bajor

47) Trydnt: Build R3 Trydnt

48) Babamots: Build R3 Bolarus

49) Trydnt: Build B1 Trydnt

50) Babamots: Trade Y2 B2 Babamots

51) Trydnt: Move B1 Trydnt G3

52) Babamots: Discover B2 Babamots B3 Andoria

53) Trydnt: Trade Y2 G2 B1
	Babamots: Things looked grim for our hero...

54) Babamots: Build Y2 Babamots

55) Trydnt: Build Y2 B1

56) Babamots: Build G2 Babamots

57) Trydnt: Build G2 B1

58) Babamots: Sacrifice Y2 Babamots
Move G1 Bolarus B1
Move G1 Bolarus B1
Catastrophe B1 G

59) Trydnt: Discover Y2 B1 Y2 Y2

60) Babamots: Move R3 Bolarus Y2

61) Trydnt: Discover Y2 Y2 G1 G1

62) Babamots: Move G2 Babamots Bolarus

63) Trydnt: Move Y3 B1 Andoria

64) Babamots: Sacrifice Y1 Bolarus
Move B2 Andoria Bajor

65) Trydnt: Build B1 G3

66) Babamots: Move G2 Bolarus Y2

67) Trydnt: Move R1 G3 Babamots

68) Babamots: Build G1 Babamots

69) Trydnt: Sacrifice Y3 G3
Move R2 G3 Babamots
Move B1 G3 Babamots
Move B1 G3 Babamots

70) Babamots: Sacrifice G2 Y2
Build Y1 Babamots
Build Y3 Bolarus

71) Trydnt: Sacrifice Y3 Andoria
Move R2 B3 Babamots
Move B1 Trydnt G3
Move B1 G3 Babamots
Catastrophe Babamots R
Catastrophe Babamots B
	Babamots: gg

	Babamots: Thanks! I only won the medal game because he missed something, but it's been a goal of mine for so long that I'm still very pleased with myself.
	Trydnt: often the case but, even when your opponent makes a mistake, you still have to have put in the work to have the ability to take advantage of that


36514)
Started: 2020.6.9, Ended: 2020.11.5
Participants: MobyNostromo (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) MobyNostromo: H Y2 B3 G3

3) Trydnt: Build G1 Trydnt

4) MobyNostromo: B G1 Mobynostromo

5) Trydnt: Trade G1 Y1 Trydnt

6) MobyNostromo: T G1 Y1 Mobynostromo

7) Trydnt: Build Y2 Trydnt

8) MobyNostromo: B Y2 Mobynostromo

9) Trydnt: Discover Y1 Trydnt G3 G3

10) MobyNostromo: D Y2 Mobynostromo B1 Dust

11) Trydnt: Build Y3 G3

12) MobyNostromo: B G1 Mobynostromo

13) Trydnt: Trade Y2 R2 Trydnt

14) MobyNostromo: M G1 Mobynostromo Dust

15) Trydnt: Discover Y1 G3 G1 G1

16) MobyNostromo: B Y2 Dust

17) Trydnt: Build Y3 G1

18) MobyNostromo: T Y1 R1 Mobynostromo

19) Trydnt: Build R1 Trydnt

20) MobyNostromo: B G1 Mobynostromo

21) Trydnt: Build G2 Trydnt

22) MobyNostromo: B G2 Dust

23) Trydnt: Discover G2 Trydnt Y3 Y3

24) MobyNostromo: D G1 Dust B3 Oceania

25) Trydnt: Move R2 Trydnt Oceania

26) MobyNostromo: S G3 Mobynostromo
B G2 Dust
B G3 Mobynostromo
B R1 Mobynostromo

27) Trydnt: Attack G1 Oceania

28) MobyNostromo: S G3 Mobynostromo
B G3 Mobynostromo
B R2 Mobynostromo
B Y1 Dust

29) Trydnt: Move Y1 G1 Oceania

30) MobyNostromo: S Y2 Dust
M R1 Mobynostromo Dust
M R1 Mobynostromo Dust

31) Trydnt: Sacrifice G2 Y3
Build Y2 G1
Build Y3 Oceania

32) MobyNostromo: M R1 Dust G3

33) Trydnt: Sacrifice R1 Trydnt
Attack R1 G3

34) MobyNostromo: T G2 B2 Dust

35) Trydnt: Build G2 Trydnt

36) MobyNostromo: S G3 Mobynostromo
B G2 Dust
B G3 Mobynostromo
B B1 Dust

37) Trydnt: Move R1 G3 G1

38) MobyNostromo: S Y2 Dust
M B1 Dust Oceania
M B2 Dust Oceania

39) Trydnt: Sacrifice R2 Oceania
Attack B2 Oceania
Attack B1 Oceania

40) MobyNostromo: B Y2 Dust

41) Trydnt: Move B2 Oceania G1

42) MobyNostromo: T Y1 B1 Dust

43) Trydnt: Sacrifice Y3 Oceania
Move B1 Oceania Dust
Move B2 G1 G3
Move B2 G3 Dust
Catastrophe Dust B

44) MobyNostromo: B R1 Mobynostromo
	MobyNostromo: I'm sorry for the long pause. I'm okay. I hope all is well.

45) Trydnt: Build G2 Oceania
	Trydnt: no worries. welcome back! glad you're okay
	MobyNostromo: Thank you, Trydnt. I hope you are doing well too.

46) MobyNostromo: T R2 Y2 Mobynostromo

47) Trydnt: Discover G2 Oceania Y1 Y1

48) MobyNostromo: D Y2 Mobynostromo B1 Cornflower

49) Trydnt: Sacrifice G3 Trydnt
Build G2 Y1
Build G3 Trydnt
Build Y3 Oceania

50) MobyNostromo: B R1 Mobynostromo

51) Trydnt: Build R2 G1

52) MobyNostromo: M R1 Mobynostromo Cornflower

53) Trydnt: Sacrifice Y3 G3
Move G2 Y1 Mobynostromo
Move G2 Y1 Mobynostromo
Catastrophe Mobynostromo G
Move Y3 G1 Mobynostromo

54) MobyNostromo: T R1 G1 Cornflower

55) Trydnt: Sacrifice R1 G1
Attack R1 Mobynostromo



36518)
Variants: "Hard time"
Started: 2020.6.9, Ended: 2020.7.25
Participants: dlwillson (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) dlwillson: Homeworld B3 R1 G3

3) Trydnt: Build G1 Trydnt
	dlwillson: Have fun and good luck!
	Trydnt: you too

4) dlwillson: Build G1 Dlwillson

5) Trydnt: Trade G1 R1 Trydnt

6) dlwillson: T G1 Y1 Dlwillson

7) Trydnt: Build R1 Trydnt

8) dlwillson: B Y1 Dlwillson

9) Trydnt: Build R2 Trydnt

10) dlwillson: Build Y2 Dlwillson

11) Trydnt: Trade R2 Y2 Trydnt

12) dlwillson: D Y1 Dlwillson R2 Mars

13) Trydnt: Discover Y2 Trydnt G3 G3

14) dlwillson: D Y1 Dlwillson G2 Geetoo

15) Trydnt: Move Y2 G3 Geetoo

16) dlwillson: Sacrifice G3 Dlwillson
Build Y2 Geetoo
Build Y3 Mars
Build Y3 Dlwillson

17) Trydnt: Discover R1 Trydnt Y3 Y3

18) dlwillson: Trade Y2 G2 Dlwillson

19) Trydnt: Build R2 Trydnt

20) dlwillson: Build Y2 Dlwillson

21) Trydnt: Discover R2 Trydnt B3 B3

22) dlwillson: D Y3 Mars B3 Sky

23) Trydnt: Discover Y2 Geetoo G3 G3

24) dlwillson: Move Y1 Geetoo Sky

25) Trydnt: Build G1 Trydnt

26) dlwillson: T Y1 G1 Sky

27) Trydnt: Sacrifice G3 Trydnt
Build R2 Y3
Build R3 B3
Build R3 Trydnt

28) dlwillson: T Y3 R3 Sky

29) Trydnt: Trade R3 Y3 B3

30) dlwillson: B R3 Sky

31) Trydnt: Trade R3 G3 Trydnt

32) dlwillson: T R3 G3 Sky

33) Trydnt: Sacrifice G3 Trydnt
Build R3 Trydnt
Build R3 B3
Build Y1 B3

34) dlwillson: Discover Y1 Mars G3 Forest

35) Trydnt: Move R3 B3 Geetoo

36) dlwillson: Sacrifice Y2 Geetoo
Move R3 Sky Geetoo
Move R3 Geetoo G3

37) Trydnt: Move Y2 G3 Geetoo

38) dlwillson: S G3 Sky
B G1 Dlwillson
B G2 Dlwillson

B G3 Sky

39) Trydnt: Build Y2 Geetoo

40) dlwillson: Sacrifice Y2 Dlwillson
Discover G2 Dlwillson Y2 Sol
Discover G2 Dlwillson R2 Mars

41) Trydnt: Move R2 Y3 Sol

42) dlwillson: Sacrifice G2 Mars
Build R2 G3
Build G2 Sol

43) Trydnt: Move R2 Sol Forest

44) dlwillson: Discover Y1 Forest B2 Sea

45) Trydnt: Move R2 B3 Sea

46) dlwillson: M Y1 Sea G3

47) Trydnt: Sacrifice Y2 Geetoo
Move R1 Trydnt G3
Move R2 Sea G3
Catastrophe G3 R

48) dlwillson: Trade G1 R1 Sky

49) Trydnt: Build G1 Trydnt

50) dlwillson: Sacrifice G2 Sol
Build G2 Sky
Build R2 Sky

51) Trydnt: Build Y2 Geetoo

52) dlwillson: T R1 B1 Sky

53) Trydnt: Sacrifice Y2 Geetoo
Move G1 Trydnt Sky
Move G1 Trydnt Sky
Catastrophe Sky G

54) dlwillson: B Y2 G3

55) Trydnt: Move R3 Geetoo G3

56) dlwillson: Discover Y2 G3 B2 Sea

57) Trydnt: Attack Y1 G3

58) dlwillson: S G2 Sol
B R1 Sky
B Y2 Sea

59) Trydnt: Trade R3 G3 Trydnt

60) dlwillson: M Y2 Sea Sky

61) Trydnt: Build G1 Trydnt

62) dlwillson: Trade R2 G2 Sky

63) Trydnt: Move R3 G3 Sea

64) dlwillson: Build G1 Sky

65) Trydnt: Trade G1 B1 Trydnt

66) dlwillson: Move Y2 Sea G3

67) Trydnt: Move Y1 G3 Sea

68) dlwillson: Build R2 Sky

69) Trydnt: Trade Y1 B1 B3

70) dlwillson: S B1 Sky
T Y2 B2 G3

71) Trydnt: Move R3 Sea G3

72) dlwillson: M G1 Sky Trydnt

73) Trydnt: Sacrifice R2 Forest
Attack B2 G3
Attack G1 Trydnt

74) dlwillson: B G1 Sky

75) Trydnt: Move G1 Trydnt B3

76) dlwillson: Move G1 Sky Trydnt

77) Trydnt: Sacrifice R1 Y3
Attack G1 Trydnt

78) dlwillson: Build G2 Sky

79) Trydnt: Build G3 B3

80) dlwillson: M G2 Sky Trydnt

81) Trydnt: Discover G1 Trydnt Y3 Y3

82) dlwillson: M Y2 Sky Trydnt

83) Trydnt: Sacrifice R3 G3
Attack G2 Trydnt
Attack Y2 Trydnt
Pass

84) dlwillson: Build R1 Sky

85) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y1 Geetoo
Build Y2 Sea

	dlwillson: There's nothing with any positive potential left to do. No sense delaying the inevitable. Good game, Trydnt!
	Trydnt: Good game!


36606)
Started: 2020.6.9, Ended: 2020.8.19
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3
	wil: Brexit, Covid, or buying your PM a comb...

2) wil: H Y3 B1 G3
	Trydnt: I think a comb is underkill
	wil: Our head idiot uses a comb...
	Trydnt: this is for the tournament right

3) Trydnt: Build G1 Trydnt
	Trydnt: I am jealous that you guys get to vote in another head idiot in a few months. We're stuck with our current idiots for another 4 years :(

4) wil: B G1 Wil

5) Trydnt: Trade G1 B1 Trydnt
	wil: 4 the tourney, cool

6) wil: T G1 B1 Wil

7) Trydnt: Build B2 Trydnt

8) wil: B B2 Wil

9) Trydnt: Trade B2 Y2 Trydnt

10) wil: Discover B2 Wil Y2 Y2

11) Trydnt: Discover B1 Trydnt G3 G3

12) wil: T B1 R1 Wil

13) Trydnt: Build Y1 Trydnt

14) wil: Build R1 Wil

15) Trydnt: Trade Y1 R1 Trydnt
	wil: Covid in England...what is going on?
	Trydnt: the government is feigning incompetence but they're relying on pretty standard psychological models of human behavior to undermine people's ability to adhere to and belief in the lockdown. They're planning to reopen shops in a few weeks. They consistently make their messaging confusing so people are less able to comply and then they can blame people for not following their rambling advice that didn't make sense. Cases are down but still highest in europe I believe, or even higher than the rest combined. The way they're easing the lockdown now I kind of expect to see a second wave begin in the next few weeks and they'll have to put the restrictions back in place and so the dance will continue
	Trydnt: or they'll just cut and run and string out all their voters to die and focus on attracting a new voter block. Thing is there are few blocks that have the size/vote share that the elderly population does so they'd likely have to try and bring together a more diverse range of people. Not sure the conservative mindset is capable of that. That's just the kind of evil I'd expect from them though. Most of their voters have spent years saying that people who didn't contribute to the economy were a burden and as time has crept up and they've all retired they may find themselves on the other end of the stick they've been swinging for decades. I hope enough people wake up and realize before the machine eats us all

16) wil: B R2 Wil

17) Trydnt: Move Y2 Trydnt G3
	wil: Yikes, quite similar boat here with out imbecile incharge

18) wil: Trade R1 Y1 Wil

19) Trydnt: Build Y1 G3

20) wil: D Y1 Wil G2 G2

21) Trydnt: Discover Y1 G3 G2 Gee2

22) wil: M R2 Wil Gee2

23) Trydnt: Discover Y1 Gee2 G1 G1

24) wil: Discover B2 Y2 Y3 Y3

25) Trydnt: Build Y2 G3

26) wil: B G1 Wil

27) Trydnt: Build B1 G3

28) wil: M G1 Wil G2

29) Trydnt: Discover Y1 G1 G2 G2b

30) wil: M G1 G2 Y3

31) Trydnt: Build G1 Trydnt

32) wil: B B2 Y3

33) Trydnt: Sacrifice Y2 G3
Discover B1 G3 G1 G1
Move Y2 G3 G1

34) wil: Move B2 Y3 G2

35) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B3 G1
Build B3 G3

36) wil: B B3 G2

37) Trydnt: Trade B3 Y3 G3

38) wil: B B3 Y3

39) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 G1
Build Y2 G3

40) wil: B R1 Wil

41) Trydnt: Build R2 Trydnt

42) wil: M R1 Wil G2

43) Trydnt: Move R2 Trydnt G3

44) wil: S G3 Wil
B R2 G2
B R3 Gee2
B R3 Wil

45) Trydnt: Build R3 G3

46) wil: B G3 Y3

47) Trydnt: Move R3 G3 G2b

48) wil: M B2 G2 Wil

49) Trydnt: Move B1 G1 G2b

50) wil: M R1 Wil G2

51) Trydnt: Move R2 G3 G2
Catastrophe G2 R

52) wil: M G3 Y3 Trydnt

53) Trydnt: Attack G3 Trydnt

54) wil: M G1 Y3 Trydnt
C Trydnt G

55) Trydnt: Move Y3 G3 Trydnt
	wil: Hello

56) wil: S B2 Y3
T B3 G3 Y3
T R3 G3 Wil

57) Trydnt: Build B2 G2b

58) wil: B B3 G2

59) Trydnt: Sacrifice Y2 G1
Move B1 G2b Wil
Move B2 G2b Wil
Catastrophe Wil B

60) wil: M B3 G2 G3

61) Trydnt: Move Y2 G3 G2b

62) wil: S G3 Wil
B Y2 G2
B B1 G3
B R1 Gee2

	Trydnt: well played
	wil: B o


Only in my demise


36619)
Started: 2020.6.9, Ended: 2020.6.28
Participants: goulo (S), speardane (N)
Winner: goulo

1) speardane: Homeworld B2 G3 Y3

2) goulo: Homeworld B3 R1 G3

3) speardane: Build Y1 Speardane
	goulo: Hi, have fun! This is for the great homeworlds tournament.

4) goulo: Build G1 Goulo
	speardane: For the tournament!

5) speardane: Trade Y3 R3 Speardane

6) goulo: Trade G1 Y1 Goulo

7) speardane: Build R1 Speardane

8) goulo: Build Y1 Goulo

9) speardane: Trade R3 B3 Speardane

10) goulo: Build Y2 Goulo

11) speardane: Build B1 Speardane

12) goulo: Trade Y1 B1 Goulo

13) speardane: Discover B1 Speardane Y1 Delos

14) goulo: Discover Y2 Goulo G2 Verdo

15) speardane: Discover B1 Delos G2 Lebling

16) goulo: Build G1 Goulo

17) speardane: Trade B3 G3 Speardane

18) goulo: Trade G1 R1 Goulo

19) speardane: Build G1 Speardane

20) goulo: Build G1 Goulo

21) speardane: Discover G1 Speardane B1 Delos

22) goulo: Move Y2 Verdo Delos

23) speardane: Sacrifice G1 Delos
Build B2 Lebling

24) goulo: Discover B1 Goulo Y2 Flavo

25) speardane: Trade B2 Y2 Lebling

26) goulo: Build R2 Goulo

27) speardane: Sacrifice G3 Speardane
Build Y1 Speardane
Build Y3 Speardane
Build Y3 Lebling

28) goulo: Move Y2 Delos Speardane
Catastrophe Speardane Y

29) speardane: Sacrifice Y2 Lebling
Discover Y3 Lebling Y1 Delos
Move Y3 Delos Speardane

30) goulo: Move R2 Goulo Lebling

31) speardane: Build R2 Speardane

32) goulo: Build R2 Lebling

33) speardane: Build R3 Speardane

34) goulo: Build R3 Lebling

35) speardane: Sacrifice Y3 Speardane
Discover R1 Speardane Y1 Delos
Discover R2 Speardane B1 Kotok
Move R1 Delos Lebling
Catastrophe Lebling Red

36) goulo: Sacrifice G1 Goulo
Build B2 Flavo

37) speardane: Trade R3 Y3 Speardane

38) goulo: Build G1 Goulo

39) speardane: Trade R2 G2 Kotok

40) goulo: Move R1 Goulo Lebling

41) speardane: Build B2 Lebling

42) goulo: Move G1 Goulo Flavo

43) speardane: Trade B2 Y2 Lebling

44) goulo: Attack B1 Lebling

45) speardane: Build G1 Kotok

46) goulo: Move B2 Flavo Kotok

47) speardane: Sacrifice Y2 Lebling
Move G2 Kotok Flavo
Discover G1 Kotok B3 Delos

48) goulo: Build B2 Flavo

49) speardane: Discover G2 Flavo B3 Minsky

50) goulo: Build Y1 Goulo

51) speardane: Build G1 Minsky

52) goulo: Move Y1 Goulo Lebling

53) speardane: Trade G2 Y2 Minsky

54) goulo: Build G2 Goulo

55) speardane: Move Y2 Minsky Lebling

56) goulo: Move G2 Goulo Lebling

57) speardane: Sacrifice Y2 Lebling
Move G1 Delos Lebling
Move G1 Minsky Lebling
Catastrophe Lebling Green

58) goulo: Discover B1 Flavo Y1 Flaveto

59) speardane: Build Y1 Speardane

60) goulo: Move B1 Flaveto Speardane

61) speardane: Trade Y3 R3 Speardane

62) goulo: Build B1 Speardane

63) speardane: Attack B1 Speardane

64) goulo: Build B3 Speardane
Catastrophe Speardane B

65) speardane: Build R1 Speardane

66) goulo: Trade B2 R2 Flavo

67) speardane: Move R3 Speardane Flavo

68) goulo: Move R2 Flavo Speardane

69) speardane: Move R3 Flavo Speardane

70) goulo: Build R1 Speardane
Catastrophe Speardane R

71) speardane: Build Y1 Speardane

72) goulo: Move G1 Flavo Speardane

73) speardane: Pass

74) goulo: Sacrifice G3 Goulo
Build G1 Speardane
Build G1 Speardane
Build Y2 Goulo
Catastrophe Speardane G
	goulo: thanks for the game!



36616)
Started: 2020.6.9, Ended: 2020.8.19
Participants: wil (S), goulo (N)
Winner: goulo

1) goulo: Homeworld B3 R2 G3

2) wil: H Y2 B1 G3
	goulo: hi, have fun! this is for the great homeworlds tournament.
	wil: Yay! Let's doeeet

3) goulo: Build G1 Goulo

4) wil: Build G1 Wil

5) goulo: Trade G1 Y1 Goulo

6) wil: T G1 B1 Wil
	wil: thoughts on tournament length, lol?  I actually think it works..
	goulo: It's a lot of games for everyone!
It might have been good to break into 2 pools and round robin in the pools, then the top half (won most games) from each pool go to a second round of round robin.
The number of games was still OK, but perhaps only barely. :)

7) goulo: Build G1 Goulo
	wil: It is!  But since we all like to play...and players are hard to come by...it works

8) wil: B B1 Wil

9) goulo: Build G1 Goulo

10) wil: D B1 Wil Y3 Y3

11) goulo: Trade G1 R1 Goulo

12) wil: B B2 Wil

13) goulo: Build G1 Goulo

14) wil: D B2 Wil G3 G3

15) goulo: Discover G1 Goulo Y1 Flaveto

16) wil: B B2 G3

17) goulo: Build Y1 Goulo

18) wil: S G3 Wil
B B2 Y3
B B3 G3
B B3 Wil

19) goulo: Discover Y1 Goulo G1 Verdeto

20) wil: Trade B3 Y3 G3

21) goulo: Discover Y1 Verdeto G3 Verdego

22) wil: B B3 G3

23) goulo: Sacrifice G3 Goulo
Build Y2 Verdego
Build Y2 Verdego
Build Y3 Goulo

24) wil: T B3 G3 Wil

25) goulo: Move Y1 Verdego Wil

26) wil: T B2 R2 G3

27) goulo: Move Y2 Verdego Wil

28) wil: M B1 Wil Y3

29) goulo: Move Y2 Verdego Wil
Catastrophe Wil Y

30) wil: M B3 G3 Flaveto

31) goulo: Discover G1 Flaveto Y2 Flavo

32) wil: B B2 G3

33) goulo: Build G1 Goulo
	goulo: wil, are you still around? SDG currently shows you haven't logged in for 23 days...
	wil: Sorry I get lost...it is weird

34) wil: T G3 B3 Wil

35) goulo: Build G2 Flavo

36) wil: T B2 G2 Y3

37) goulo: Discover Y1 Goulo R1 Rubeneto

38) wil: B B2 Y3

39) goulo: Move G1 Goulo Rubeneto

40) wil: M B2 G3 Rubeneto

41) goulo: Build G2 Goulo

42) wil: A G1 Rubeneto

43) goulo: Attack G1 Rubeneto

44) wil: B G3 Y3

45) goulo: Build G3 Rubeneto

46) wil: B R1 G3

47) goulo: Attack B2 Rubeneto

48) wil: M R1 G3 Flaveto

49) goulo: Move B2 Rubeneto Y3
Catastrophe Y3 B

50) wil: S G3 Y3
B B1 Flaveto
B B1 G3
B G3 Y3
	wil: Are these names delete characters?
	wil: *delarte
	goulo: They are Esperanto words.

51) goulo: Discover R1 Goulo Y1 Citroneto
	wil: Cool, you speak it?

52) wil: S G3 Y3
B G3 Y3
B B2 Flaveto
B B2 G3

53) goulo: Sacrifice G3 Rubeneto
Build G3 Rubeneto
Build Y2 Rubeneto
Build Y2 Goulo
	goulo: Yes, I learned it back in 2003, and use it every day with my wife (I'm from US, she's Polish, we met at an Esperanto event years ago) as our default language, along with English and Polish. :)
	wil: Interesting.... I'm pretty sure that's the first ive heard of anyone using it.  Only heard it talked about.

54) wil: M G2 Y3 Citroneto
	wil: Is eto little?
	goulo: Yeah, the suffix "et" = little (similar to "ette" on some English and French words).

A lot more people are learning Esperanto in recent years, thanks to the internet making it easier to learn (e.g. lernu.net and duolingo.com) and to write/chat with people far away.

55) goulo: Move R1 Citroneto Flavo

56) wil: T B3 R3 Flaveto
	wil: I come for a little ruby red grapefruit juice

57) goulo: Discover Y1 Rubeneto B3 Bluego

58) wil: M R3 Flaveto Bluego

59) goulo: Move Y1 Bluego Rubeneto

60) wil: M B2 G3 Wil
	wil: Do you think it has a chance to grow to its original intent?  
	wil: Do you have kids learning it?
	goulo: I doubt it will ever become a language everyone knows - that's a very ambitious goal, which probably no language will ever achieve. But the number of Esperantists keeps growing, and in practice, there are way more Esperanto speakers than I could ever meet, more books than I could ever read, etc, and I have friends and acquaintances in many countries thanks to Esperanto. E.g. this week I was corresponding with an elderly Japanese guy about musical instruments and boardgames, and the studies showing that mental activities like these help keep our minds alert as we age.

I don't have kids, but if I did, they'd speak Esperanto, English, and Polish.

61) goulo: Move G2 Flavo G3

62) wil: S Y3 G3
M B3 Wil Goulo
M G3 Y3 Wil
M G3 Wil Goulo
	wil: I think you are the firat person I know of that speaks it...its ambitious goal I think hinders it.  Books, eh?  Are there movies? 
	wil: Now if they got kids to know they could learn a secret langauge their parents and teachers did not know..
	wil: Now if they got kids to know they could learn a secret langauge their parents and teachers did not know..

63) goulo: Sacrifice Y2 Rubeneto
Move G3 Rubeneto G3
Move G3 G3 Wil
	goulo: There are a few films, but since esperantists are a diaspora instead of concentrated in one place like a typical national language, it's harder for that kind of large collaborative project (films and plays). So there's plenty of books, like for any language, but not so much films or plays.
	wil: Hey whatchu doin sneaking in?  How do you say I'm on tilt in Esperanto?

64) wil: S R3 Bluego
A Y3 Goulo
A G2 Goulo
A Y2 Goulo

65) goulo: Sacrifice R1 Flavo
Attack B2 Wil
	goulo: Ha ha, I'm not even sure what "on tilt" means in English, I had to look it up. (I'm not into poker at all, heh.) :)

	wil: I pulled the trigger to early...good game
	wil: I dont think it would have been any better sending in the r3
	goulo: I'm not certain whether my move really works or not. I worried you'd move some second ship in, then I'd not be able to capture 2 ships in one move, and if I sacrifice my r1 to capture 1, then I must spend at least 2 more moves I think to win, and meanwhile you need only 2 turns at my homeworld to defeat me. It was a tricky situation, but I figured this was my only realistic chance. :)
	goulo: Oh, but you couldn't move one to your homeworld, heh. So my move was clever after all. Tricky situation indeed. :)
	goulo: hmm, or you could have sacrificed a g to build a b3 at your homeworld.
	wil: I shoot from the hip...althiugg I should look longer when it is the end...it is just not in my nature
	goulo: heh, yes - it is easy to get swept up by the "heat of battle" and all that. :)


36609)
Variants: "Unrated"
Started: 2020.6.9, Ended: 2020.7.9
Participants: SkullNBones12 (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: Hi there! Looks like you're pretty new to SDG. Have you played Homeworlds before.

2) SkullNBones12: H G3 R1 Y3 *
	SkullNBones12: I have played homeworlds in real life but not sure how to submit moves. 

3) Babamots: Build G1 Babamots

4) SkullNBones12: Build Y1 Skullnbones12
	Babamots: Looks like you found the instructions. Let me know if you have any trouble figuring out how to make a move. The most nun-intuitive thing to me is that you have to put each sacrifice action and catastrophe on a new line.
	SkullNBones12: Thanks I definitely will ask!

5) Babamots: Trade G1 R1 Babamots

6) SkullNBones12: Build Y1 Skullnbones12

7) Babamots: Build R2 Babamots

8) SkullNBones12: Discover Y1 Skullnbones12 B2 Apex

9) Babamots: Trade R2 Y2 Babamots

10) SkullNBones12: Trade Y1 G1 Apex

11) Babamots: Build R2 Babamots

12) SkullNBones12: Build G1 Apex

13) Babamots: Move R2 Babamots Apex

14) SkullNBones12: Build G1 Apex

15) Babamots: Attack G1 Apex

16) SkullNBones12: Build G2 Apex
Catastrophe Apex Green

17) Babamots: Build R2 Babamots

18) SkullNBones12: Build Y1 Skullnbones12

19) Babamots: Discover R2 Babamots Y2 Aldea
	Babamots: I tried a homeworld setup without blue once, but I don't think it worked out. It's a pretty big handicap.

	Babamots: Sorry this wasn't going your way. I'll be available for a rematch later, though I'm focused on some life things for now.


36620)
Started: 2020.6.9, Ended: 2020.6.24
Participants: eliscinsky (S), SkullNBones12 (N)
Winner: eliscinsky

1) SkullNBones12: H G3 R1 Y3 *
	SkullNBones12: Homeworld G3 R1 Y3

2) eliscinsky: H R1 B2 G3
	eliscinsky: Greetings SkullNBones12, GL & HF!
PS. Very interesting HW.

3) SkullNBones12: Build Y1 Skullnbones12
	SkullNBones12: Gl and hf! Thanks I like the defending homeworld. 

4) eliscinsky: B G1 Eliscinsky

5) SkullNBones12: Build Y1 Skullnbones12

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) SkullNBones12: Discover Y1 Skullnbones12 B2 Apex

8) eliscinsky: B Y2 Eliscinsky

9) SkullNBones12: Trade Y1 G1 Apex

10) eliscinsky: B G1 Eliscinsky

11) SkullNBones12: Build G1 Apex

12) eliscinsky: Trade G1 R1 Eliscinsky

13) SkullNBones12: Build G1 Apex

14) eliscinsky: Build R2 Eliscinsky

15) SkullNBones12: Trade G1 Y1 Apex

16) eliscinsky: Sacrifice Y2 Eliscinsky
Discover R2 Eliscinsky Y3 Yeller
Move R2 Yeller Apex

17) SkullNBones12: Build Y2 Skullnbones12

18) eliscinsky: Attack Y1 Apex

19) SkullNBones12: Move Y1 Skullnbones12 Apex

20) eliscinsky: A Y1 Apex

21) SkullNBones12: Build G1 Apex

22) eliscinsky: Move Y1 Apex Skullnbones12

23) SkullNBones12: Move Y2 Skullnbones12 Apex

24) eliscinsky: Sacrifice G3 Eliscinsky
Build Y2 Skullnbones12
Build Y2 Skullnbones12
Build Y3 Apex
Catastrophe Skullnbones12 Y
	eliscinsky: Red Alert!

	eliscinsky: GG, rematch anytime.


36630)
Variants: "Hard time"
Started: 2020.6.10, Ended: 2020.7.9
Participants: wil (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B2 R1 G3

2) wil: Homeworld Y3 B1 G3
	Babamots: Good luck!
	wil: I need it!


3) Babamots: Build G1 Babamots

4) wil: Build G1 Wil

5) Babamots: Trade G1 Y1 Babamots

6) wil: T G1 B1 Wil

7) Babamots: Build Y1 Babamots

8) wil: B B1 Wil

9) Babamots: Build Y1 Babamots

10) wil: Discover B1 Wil Y2 Y2

11) Babamots: Discover Y1 Babamots G3 Risa

12) wil: D B1 Y2 Y3 Y3

13) Babamots: Build Y2 Babamots

14) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

15) Babamots: Move Y1 Babamots Y3

16) wil: T B3 Y3 Wil

17) Babamots: Build Y2 Risa

18) wil: T B2 G2 Y3

19) Babamots: Build Y2 Babamots

20) wil: Discover B2 Y3 G2 G2

21) Babamots: Trade Y2 R2 Babamots

22) wil: S G2 Y3
B B2 Y3
B B3 Wil

23) Babamots: Build Y2 Babamots

24) wil: B B3 G2

25) Babamots: Sacrifice R2 Babamots
Attack B1 Y3
Pass

26) wil: S B2 G2
T B3 G3 Wil
T B2 R2 Y3

27) Babamots: Sacrifice Y1 Y3
Move B1 Y3 Babamots

28) wil: Move Y3 Wil G2

29) Babamots: Discover Y1 Risa G1 Betazed

	Babamots: Sorry you ran out of time. I'm pretty worried you would have got me.


36618)
Started: 2020.6.11, Ended: 2020.8.5
Participants: DodoBirb (S), goulo (N)
Winner: goulo

1) goulo: Homeworld R3 B2 G3

2) DodoBirb: Homeworld Y1 B2 G3
	goulo: hi, have fun! for the homeworlds tourney.
	DodoBirb: You too!

3) goulo: Build G1 Goulo

4) DodoBirb: Build G1 Dodobirb

5) goulo: Trade G1 Y1 Goulo

6) DodoBirb: Trade G1 Y1 Dodobirb

7) goulo: Build Y2 Goulo

8) DodoBirb: Build Y2 Dodobirb

9) goulo: Build Y2 Goulo

10) DodoBirb: Discover Y2 Dodobirb G3 Greeny

11) goulo: Discover Y1 Goulo G1 Verdeto

12) DodoBirb: Build Y3 Greeny

13) goulo: Build Y3 Verdeto

14) DodoBirb: Discover Y2 Greeny G1 Minigreeny

15) goulo: Trade Y2 R2 Goulo

16) DodoBirb: Trade Y1 R1 Dodobirb

17) goulo: Move R2 Goulo Verdeto

18) DodoBirb: Build Y1 Greeny

19) goulo: Build G1 Goulo

20) DodoBirb: Build G2 Dodobirb

21) goulo: Trade G1 B1 Goulo

22) DodoBirb: Trade G2 B2 Dodobirb

23) goulo: Move B1 Goulo Verdeto

24) DodoBirb: Build R1 Dodobirb

25) goulo: Build B1 Verdeto

26) DodoBirb: Move B2 Dodobirb Greeny

27) goulo: Build R1 Verdeto

28) DodoBirb: Move R1 Dodobirb Greeny

29) goulo: Discover R2 Verdeto Y3 Flavego

30) DodoBirb: Build R2 Greeny

31) goulo: Build Y2 Goulo

32) DodoBirb: Build G1 Dodobirb

33) goulo: Build G2 Goulo

34) DodoBirb: Discover G1 Dodobirb B3 Bluey

35) goulo: Move G2 Goulo Verdeto

36) DodoBirb: Build G2 Bluey

37) goulo: Move G2 Verdeto Flavego

38) DodoBirb: Build G2 Dodobirb

39) goulo: Move B1 Verdeto Flavego

40) DodoBirb: Move R2 Greeny Minigreeny

41) goulo: Move Y3 Verdeto Bluey

42) DodoBirb: Move B2 Greeny Verdeto

43) goulo: Move R1 Verdeto Flavego

44) DodoBirb: Sacrifice G3 Dodobirb
Build G3 Dodobirb
Build R2 Greeny
Build R3 Minigreeny

45) goulo: Sacrifice R2 Flavego
Attack G1 Bluey
Attack G2 Bluey

46) DodoBirb: Sacrifice R2 Greeny
Attack B1N Verdeto
Attack Y1N Verdeto

47) goulo: Build R2 Flavego

48) DodoBirb: Sacrifice G3 Dodobirb
Build R2 Dodobirb
Build R3 Greeny
Build G3 Dodobirb

49) goulo: Sacrifice Y2 Goulo
Move G2 Bluey Dodobirb
Move G1 Bluey Dodobirb
Catastrophe Dodobirb G

50) DodoBirb: Move Y3 Greeny Dodobirb

51) goulo: Build Y2 Goulo

52) DodoBirb: Trade Y3 G3 Dodobirb

53) goulo: Sacrifice G2 Flavego
Build Y3 Bluey
Build G1 Goulo

54) DodoBirb: Move B1 Verdeto Greeny

55) goulo: Build G2 Goulo

56) DodoBirb: Build G2 Dodobirb

57) goulo: Move Y3 Bluey Verdeto

58) DodoBirb: Sacrifice Y1 Verdeto
Move B2 Verdeto Greeny

59) goulo: Build Y1 Verdeto

60) DodoBirb: Discover G2 Dodobirb B3 Deepblue

61) goulo: Sacrifice Y2 Goulo
Move R1 Flavego Minigreeny
Move R2 Flavego Minigreeny
Catastrophe Minigreeny R

62) DodoBirb: Build G2 Dodobirb

63) goulo: Sacrifice G2 Goulo
Build B1 Flavego
Build Y2 Bluey

64) DodoBirb: Move B2 Greeny Minigreeny

65) goulo: Trade Y2 R2 Bluey

66) DodoBirb: Build Y2 Greeny

67) goulo: Move Y3 Bluey Minigreeny

68) DodoBirb: Move Y2 Minigreeny Deepblue

69) goulo: Move Y3 Verdeto Deepblue

70) DodoBirb: Move Y2 Deepblue Verdeto

71) goulo: Sacrifice R2 Bluey
Attack G2 Deepblue
Attack B2 Minigreeny

72) DodoBirb: Build R1 Greeny

73) goulo: Move B2 Minigreeny Deepblue

74) DodoBirb: Move R3 Greeny Dodobirb

75) goulo: Build G2 Deepblue

76) DodoBirb: Build B3 Greeny

77) goulo: Trade G2 R2 Deepblue

78) DodoBirb: Move R2 Dodobirb Flavego

79) goulo: Sacrifice Y2 Goulo
Move B1 Flavego Dodobirb
Move B1 Flavego Dodobirb

80) DodoBirb: Build B3 Greeny

81) goulo: Move B1 Dodobirb Greeny
Catastrophe Greeny B

82) DodoBirb: Attack B1N Dodobirb

83) goulo: Build Y2 Minigreeny

84) DodoBirb: Sacrifice G2 Dodobirb
Build R2 Greeny
Build R3 Flavego

85) goulo: Move Y3 Minigreeny Greeny

86) DodoBirb: Sacrifice Y2 Greeny
Move R2 Greeny Verdeto
Move R3 Flavego Verdeto

87) goulo: Sacrifice R2 Deepblue
Attack R1 Greeny
Attack R1 Greeny

88) DodoBirb: Attack Y1N Verdeto

89) goulo: Attack Y1 Greeny

90) DodoBirb: Build G2 Dodobirb

91) goulo: Sacrifice G3 Goulo
Build G2 Deepblue
Build G3 Goulo
Build Y2 Deepblue

92) DodoBirb: Move R3 Dodobirb Flavego

93) goulo: Sacrifice Y3 Deepblue
Move G2 Deepblue Dodobirb
Move G2 Deepblue Dodobirb
Move Y3 Greeny Dodobirb
Catastrophe Dodobirb G

94) DodoBirb: Move R3 Flavego Dodobirb
	DodoBirb: GG

95) goulo: Sacrifice R1 Greeny
Attack R3 Dodobirb

96) DodoBirb: Pass
	goulo: thanks - we had very epic long maneuvering and buildup! :)

97) goulo: Sacrifice R3 Dodobirb
Attack R1 Dodobirb
Attack B1 Dodobirb
Pass
	goulo: thanks for the game!



36615)
Started: 2020.6.13, Ended: 2020.8.1
Participants: bhorner (S), goulo (N)
Winner: goulo

1) goulo: Homeworld B3 R2 G3
	bhorner: You made the challenge, this is for the tournament right?  Looks like you're first, here's a link to the form:  https://docs.google.com/forms/d/e/1FAIpQLSfFIVX-5Bbbifu74XWm38g4r4VFOUB6lo8NJ8uXXAj0APD48A/viewform
Good luck, and have fun!
	goulo: thanks, have fun. for the tourney indeed. :)

2) bhorner: Homeworld R2 B1 G3

3) goulo: Build G1 Goulo

4) bhorner: Build G1 Bhorner

5) goulo: Trade G1 Y1 Goulo

6) bhorner: Trade G1 Y1 Bhorner

7) goulo: Build G1 Goulo

8) bhorner: Build G1 Bhorner

9) goulo: Trade G1 R1 Goulo

10) bhorner: Trade G1 R1 Bhorner

11) goulo: Build G1 Goulo

12) bhorner: Build G1 Bhorner

13) goulo: Trade G1 B1 Goulo

14) bhorner: Build G1 Bhorner

15) goulo: Build G1 Goulo

16) bhorner: Trade G1 B1 Bhorner

17) goulo: Build B2 Goulo

18) bhorner: Build B2 Bhorner

19) goulo: Discover B2 Goulo Y1 Flaveto

20) bhorner: Trade B1 G1 Bhorner

21) goulo: Build G2 Goulo

22) bhorner: Build Y2 Bhorner

23) goulo: Move G2 Goulo Flaveto

24) bhorner: Discover G1 Bhorner Y3 Bright

25) goulo: Build Y2 Goulo

26) bhorner: Discover Y1 Bhorner G3 Tree

27) goulo: Discover Y1 Goulo B1 Blueto



36649)
Started: 2020.6.13, Ended: 2020.6.22
Participants: tkvaran (S), drstclair (N)
Winner: tkvaran

1) drstclair: Homeworld G3 B1 Y3

2) tkvaran: Homeworld B2 G1 R3

3) drstclair: Build Y1 Drstclair

4) tkvaran: Build R1 Tkvaran

5) drstclair: Trade Y1 B1 Drstclair

6) tkvaran: Trade R1 Y1 Tkvaran

7) drstclair: Build Y1 Drstclair

8) tkvaran: Build R1 Tkvaran

9) drstclair: Discover Y1 Drstclair G2 Gumbo

10) tkvaran: Discover R1 Tkvaran B3 Gumby

11) drstclair: Build Y1 Gumbo

12) tkvaran: Build Y2 Tkvaran

13) drstclair: Build Y2 Gumbo

14) tkvaran: Move Y1 Tkvaran Gumby

15) drstclair: Sacrifice Y1 Gumbo
Move B1 Drstclair Gumbo

16) tkvaran: Trade R1 G1 Gumby

17) drstclair: Trade Y2 R2 Gumbo

18) tkvaran: Build G1 Gumby

19) drstclair: Build Y1 Drstclair

20) tkvaran: Build Y2 Gumby

21) drstclair: Build R1 Gumbo

22) tkvaran: Build Y2 Tkvaran

23) drstclair: Build Y3 Drstclair

24) tkvaran: Sacrifice Y2 Tkvaran
Move Y1 Gumby Gumbo
Move Y1 Gumbo Drstclair
Catastrophe Drstclair Yellow



36621)
Started: 2020.6.15, Ended: 2020.7.8
Participants: bhorner (S), wil (N)
Winner: bhorner

1) wil: H Y2 B1 G3

2) bhorner: Homeworld R1 B2 G3
	bhorner: Did everyone switch to blue yellow homeworlds?  :)

This is for the tournament right?  I think you fill out the form as the first player.

3) wil: B G1 Wil
	bhorner: This should be interesting.  I couldn't bear to make a 1-3 homeworld...
	wil: Short uni! Would you mind filling us out? And GOOD LUCK!

4) bhorner: Build G1 Bhorner
	wil: Blue yellow might be my fault ...sorry
	bhorner: I think it's great that there are other viable options.  :)

5) wil: T G1 R1 Wil

6) bhorner: Trade G1 Y1 Bhorner

7) wil: B R1 Wil

8) bhorner: Build Y1 Bhorner

9) wil: D R1 Wil B3 B3

10) bhorner: Build Y1 Bhorner

	bhorner: Hey Wil, it's been an extra 7 days after the time ran out.  I hope everything is alright with you!  I'll give it until tomorrow and then probably force surrender.
	bhorner: I hope we can play again soon.  :)
	wil: Anytime


36515)
Variants: "Unrated, Hard time"
Started: 2020.6.21, Ended: 2020.6.21
Participants: mirror33 (S), wil (N)
Winner: wil



36613)
Started: 2020.6.22, Ended: 2020.8.1
Participants: ajo (S), bhorner (N)
Winner: ajo

1) bhorner: Homeworld R1 B2 G3

2) ajo: Homeworld R2 B1 G3
	bhorner: This is for the tournament right?  :)
Good luck, have fun!

3) bhorner: Build G1 Bhorner
	ajo: For the tournament!
Let's try a small universe for this one.

4) ajo: Build G1 Ajo

5) bhorner: Trade G1 B1 Bhorner

6) ajo: Trade G1 Y1 Ajo

7) bhorner: Build B1 Bhorner

8) ajo: Build Y1 Ajo

9) bhorner: Build G1 Bhorner

10) ajo: Build G1 Ajo

11) bhorner: Trade B1 R1 Bhorner

12) ajo: Build Y1 Ajo

13) bhorner: Trade G3 Y3 Bhorner

14) ajo: Discover Y1 Ajo G3 Alpha

15) bhorner: Build Y2 Bhorner

16) ajo: Build Y2 Ajo

17) bhorner: Trade Y3 G3 Bhorner

18) ajo: Trade Y1 R1 Ajo

19) bhorner: Build B1 Bhorner

20) ajo: Trade Y2 B2 Ajo

21) bhorner: Discover G1 Bhorner Y3 Shiney

22) ajo: Move B2 Ajo Alpha

	ajo: Ping?


36718)
Variants: "Hard time"
Started: 2020.6.29, Ended: 2020.7.11
Participants: Draw5PlayAll (S), Simon (N)
Winner: Draw5PlayAll

1) Simon: Homeworld R1 B3 G3

2) Draw5PlayAll: Homeworld B1 R2 G3
	Simon: Hi, and have fun. :)
	Draw5PlayAll: ...

3) Simon: Build G1 Simon

4) Draw5PlayAll: Build G1 Draw5playall

5) Simon: Trade G1 B1 Simon

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) Simon: Build B1 Simon

8) Draw5PlayAll: Build R1 Draw5playall

9) Simon: Build G1 Simon

10) Draw5PlayAll: Build G1 Draw5playall

11) Simon: Trade G1 Y1 Simon

12) Draw5PlayAll: Trade G1 Y1 Draw5playall

13) Simon: Discover B1 Simon G2 G2

14) Draw5PlayAll: Discover R1 Draw5playall B3 Jackpot

15) Simon: Build B2 G2

16) Draw5PlayAll: Sacrifice G3 Draw5playall
Build R2 Jackpot
Build R2 Jackpot
Build R3 Draw5playall

17) Simon: Build Y1 Simon

18) Draw5PlayAll: Trade R3 G3 Draw5playall

19) Simon: Build Y2 Simon

20) Draw5PlayAll: Build R3 Draw5playall

21) Simon: Discover Y1 Simon Y2 Y2

22) Draw5PlayAll: Trade R3 Y3 Draw5playall

23) Simon: Discover Y1 Simon B2 B2

24) Draw5PlayAll: Discover Y3 Draw5playall Y3 Recycling

25) Simon: Build G1 Simon

26) Draw5PlayAll: Discover Y1 Draw5playall Y3 Getonwithit

27) Simon: Build Y2 Simon

28) Draw5PlayAll: Build R3 Draw5playall
	Simon: Instead of build y2, there was a wild line with sac g3, build y2, b2, b3 elsewehere, and spend 2-3 turns without a home queen. To punish, enemy y1 or y3 would have to be sacced in reply, making obsolete their recent moving.

I rejected that line because was too hard to calculate whether there was a forced loss. The position isn't that terrible.

29) Simon: Build B2 G2

30) Draw5PlayAll: Trade R3 B3 Draw5playall

31) Simon: Move Y2 Simon G2
	Draw5PlayAll: This is not as strong for me as I thought it would be!

32) Draw5PlayAll: Sacrifice Y1 Getonwithit
Discover B3 Draw5playall Y3 Getonwithit

33) Simon: Build Y1 G2

34) Draw5PlayAll: Build R3 Draw5playall

35) Simon: Move B1 Simon Y2

36) Draw5PlayAll: Build G1 Draw5playall

37) Simon: Discover Y2 G2 G3 G3

38) Draw5PlayAll: Sacrifice B3 Getonwithit
Trade R3 B3 Draw5playall
Trade G3 Y3 Draw5playall
Pass

39) Simon: Move B1 G2 Jackpot

40) Draw5PlayAll: Build R3 Draw5playall

41) Simon: Move B1 Y2 Jackpot

42) Draw5PlayAll: Move B3 Draw5playall G3
	Draw5PlayAll: Prepare emergency protocol 0xC429...

43) Simon: Discover Y2 G3 G1 G1
	Simon: Careful squeezing. We need a solid position for when the y3 pinata explodes.

44) Draw5PlayAll: Move Y3 Recycling G2
	Draw5PlayAll: So you *were* trying to blow that guy up, huh.

45) Simon: Build Y3 G1

46) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move B3 G3 Y2
Move Y3 G2 Simon
Move B3 Y2 Simon

	Draw5PlayAll: You seem to be one move too late
	Simon: Didn't see that both queens were in range. GG! Learned more opening theory.
	Draw5PlayAll: Thanks for the game.
	Draw5PlayAll: (I'm not sure how you could have defended as soon as I got the two larges in range. I think you would have had to blow up the Y3s, but my red pump probably would have stolen the larges again.)


36723)
Variants: "Unrated"
Started: 2020.7.1, Ended: 2020.7.9
Participants: kenniepow (S), mirror33 (N)
Winner: mirror33

1) mirror33: Homeworld B2 R1 G3

2) kenniepow: Homeworld B2 G3 R3
	kenniepow: homeworld Y3 G3 R3
	kenniepow: homeworld Y3 B2 R3
	kenniepow: homeworld B2 Y3 R3
	kenniepow: homeworld B2 Y3 R3
	kenniepow: homeworld (B2, Y3, R3)

3) mirror33: Build G1 Mirror33

4) kenniepow: Build R1 Kenniepow

5) mirror33: Build G1 Mirror33

6) kenniepow: Build R1 Kenniepow

7) mirror33: Trade G1 Y1 Mirror33

8) kenniepow: Trade R1 Y1 Kenniepow

9) mirror33: Trade G1 R1 Mirror33

10) kenniepow: Build R2 Kenniepow

11) mirror33: Build R2 Mirror33

12) kenniepow: Discover R1 Kenniepow Y1 Babyk

13) mirror33: Build Y2 Mirror33

14) kenniepow: Discover R1 Babyk Y3 Babyk2

15) mirror33: Move R2 Mirror33 Babyk2

16) kenniepow: Move R1 Babyk2 Mirror33

17) mirror33: Attack R1 Mirror33

18) kenniepow: Trade R2 G2 Kenniepow

19) mirror33: Trade R1 B1 Mirror33

20) kenniepow: Discover G2 Kenniepow R1 Babyk3

21) mirror33: Discover Y2 Mirror33 B3 Lilreflection

22) kenniepow: Build R2 Kenniepow

23) mirror33: Build R2 Mirror33

24) kenniepow: Build R3 Kenniepow

25) mirror33: Sacrifice Y2 Lilreflection
Move R2 Babyk2 Babyk3
Move R2 Babyk3 Kenniepow
Catastrophe Kenniepow Red

26) kenniepow: Build G1 Babyk3

27) mirror33: Build Y1 Mirror33

28) kenniepow: Build Y2 Kenniepow

29) mirror33: Build Y2 Mirror33

30) kenniepow: Trade Y2 R2 Kenniepow

31) mirror33: Discover Y2 Mirror33 G3 Picasso

32) kenniepow: Build Y2 Kenniepow

33) mirror33: Sacrifice Y2 Picasso
Discover G3 Mirror33 B3 Picasso2
Move G3 Picasso2 Babyk3

34) kenniepow: Move R2 Kenniepow Babyk3

35) mirror33: Attack R2 Babyk3

36) kenniepow: Trade Y2 R2 Kenniepow
	kenniepow: MEAN! That was my scoby ship (was going to help me procreate!). 
	kenniepow: MEAN! That was my scoby ship (was going to help me procreate!). 

37) mirror33: Trade R1 G1 Mirror33

38) kenniepow: Sacrifice G2 Babyk3
Build R1 Kenniepow
Build R3 Kenniepow
	mirror33: lol, just saw your scoby comment 


39) mirror33: Sacrifice Y1 Mirror33
Move R2 Babyk3 Kenniepow
Catastrophe Kenniepow R

40) kenniepow: Build Y1 Kenniepow

41) mirror33: Sacrifice Y1 Mirror33
Move G3 Babyk3 Kenniepow

42) kenniepow: Build Y1 Kenniepow

43) mirror33: Sacrifice R2 Mirror33
Attack Y1 Kenniepow
Attack Y1 Kenniepow

44) kenniepow: Build Y2 Kenniepow

45) mirror33: Pass
Catastrophe Kenniepow Y



36704)
Variants: "Hard time"
Started: 2020.7.5, Ended: 2020.7.20
Participants: eliscinsky (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) eliscinsky: H R2 B3 G3 Eliscinsky

3) Trydnt: Build G1 Trydnt
	eliscinsky: Greetings Trydnt, GL & HF

4) eliscinsky: Build G1 Eliscinsky

5) Trydnt: Trade G1 Y1 Trydnt

6) eliscinsky: Trade G1 Y1 Eliscinsky
	Trydnt: good luck to you too :)

7) Trydnt: Build Y2 Trydnt

8) eliscinsky: B Y2 Eliscinsky

9) Trydnt: Discover Y1 Trydnt G3 G3

10) eliscinsky: Discover Y1 Eliscinsky G1 Jalapeno

11) Trydnt: Build G1 Trydnt
	eliscinsky: I think I'll go with a "pepper" star naming theme this game. ;)

12) eliscinsky: Build G1 Eliscinsky

13) Trydnt: Build G2 Trydnt

14) eliscinsky: Build G2 Eliscinsky

15) Trydnt: Discover Y2 Trydnt B3 B3

16) eliscinsky: Trade G2 B2 Eliscinsky

17) Trydnt: Trade G1 R1 Trydnt

18) eliscinsky: Discover Y2 Eliscinsky B1 Chilaca

19) Trydnt: Build R1 Trydnt

20) eliscinsky: Trade G1 R1 Eliscinsky

21) Trydnt: Build R2 Trydnt

22) eliscinsky: Build G1 Eliscinsky
	eliscinsky: I think I see (finally) the flaw in my HW setup.

23) Trydnt: Move R2 Trydnt G3
	Trydnt: no yellow? not a problem if you keep a yellow ship at home. my advice is when you go second, if you opponent takes banker, you know that whatever color the 1 size star is will be what is traded or first (so long as you don't also take a 1). So your set up gives you the natural advantage of being able to grow more yellow than me natively and yellow is the first color we go for. You will likely have to pull one of your yellow ships back but it'll have cost you two moves. in this case the real danger for you came about when I got the g2 as now if you grow two yellows even with a factory I'd get the other two large yellows by sacrificing that. I'd say opening up the g2s early is usually risky if you're going up against banker
	eliscinsky: TY, I always enjoy learning from more experienced players. For me winning is the icing to the cake of knowledge.

24) eliscinsky: Move Y1 Jalapeno Eliscinsky
	Trydnt: I like that. I always say, win or lose, every game is just a chance to learn and improve

25) Trydnt: Trade R1 B1 Trydnt

26) eliscinsky: Move G1 Eliscinsky Chilaca

27) Trydnt: Build R1 G3

28) eliscinsky: M R1 Eliscinsky Chilaca

29) Trydnt: Discover R1 G3 G1 G1

30) eliscinsky: Build G1 Eliscinsky

31) Trydnt: Sacrifice G3 Trydnt
Build R2 G3
Build R3 G1
Build R3 Trydnt

32) eliscinsky: B R3 Chilaca

33) Trydnt: Trade R3 G3 Trydnt

34) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Chilaca
Build G2 Chilaca
Build G3 Eliscinsky

35) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 Trydnt
Build B1 Trydnt

36) eliscinsky: Sacrifice G3 Eliscinsky
Build Y2 Eliscinsky
Build Y3 Chilaca
Build G3 Eliscinsky

37) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y3 B3
Build Y3 G3

38) eliscinsky: Trade G2 B2 Chilaca

39) Trydnt: Sacrifice B1 Trydnt
Trade R3 B3 G1

40) eliscinsky: Sacrifice Y3 Chilaca
Discover G2 Chilaca Y3 Banana
Move R3 Chilaca Banana
Move B2 Chilaca Banana

41) Trydnt: Sacrifice G2 Trydnt
Build B1 G1
Build R3 G1

42) eliscinsky: S Y2 Eliscinsky
M B2 Eliscinsky G1
M B2 Banana G1
C G1 B

43) Trydnt: Sacrifice B1 Trydnt
Trade R1 B1 G1

44) eliscinsky: S G3 Eliscinsky
B G2 Banana
B G2 Eliscinsky
B G3 Eliscinsky

45) Trydnt: Sacrifice G3 Trydnt
Build B1 G1
Build B2 G1
Build R1 G1

46) eliscinsky: Move G1 Eliscinsky G1

47) Trydnt: Sacrifice Y3 B3
Move B1 G1 Eliscinsky
Move B1 G1 Eliscinsky
Move R3 G1 Eliscinsky

48) eliscinsky: Sacrifice R3 Banana
Attack R1 G1
Attack R3 Eliscinsky
Attack B1 Eliscinsky
	eliscinsky: I think I see what your headed, and I don't think I can stop it. Hmm...
	eliscinsky: But here goes something.

49) Trydnt: Sacrifice Y3 G3
Move B2 G1 Eliscinsky
Catastrophe Eliscinsky B
Move R2 G3 Eliscinsky
Move R2 G3 Eliscinsky
Catastrophe Eliscinsky R

	Trydnt: well played!
	eliscinsky: At least I went out with a DOUBLE BANG!  hahaha
Good Game. Would love a rematch anytime. 
Congrats!
	Trydnt: Always down for a game... or two... or several, challenge me anytime you like


36736)
Variants: "Unrated"
Started: 2020.7.6, Ended: 2020.7.6
Participants: speardane (S), ajo (N)
Winner: ajo

1) ajo: Homeworld G3 B2 Y3

2) speardane: Homeworld G1 Y1 B3 *

3) ajo: Build Y1 Ajo

4) speardane: Build B1 Speardane

5) ajo: Pass

6) speardane: Move B1 Speardane Ajo

7) ajo: Pass

8) speardane: Sacrifice B1 Ajo
Pass

9) ajo: Sacrifice Y3 Ajo
Move Y1 Ajo Speardane
Move Y1 Speardane Ajo
Pass

10) speardane: Trade B3 Y3 Speardane

11) ajo: Build Y1 Ajo

12) speardane: Build Y2 Speardane

13) ajo: Build Y2 Ajo

14) speardane: Sacrifice Y3 Speardane
Discover Y2 Speardane B2 Alpha
Discover Y2 Alpha B3 Beta
Move Y2 Beta Speardane

	Draw5PlayAll: Uhhhh...?!


36748)
Variants: "Unrated"
Started: 2020.7.14, Ended: 2020.7.15
Participants: Layana (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld R3 G2 B3
	Layana: Hi there, I have never played this game before. So any hints might be appreciated. 

2) Layana: Homeworld B2 R1 G3
	Babamots: Sure! Have you read the rules? The latest version of the rules is here:

https://www.looneylabs.com/lit/rules/homeworlds-rules

(You'll have to copy and paste)

It's your first turn now, so you'll need to pick your homeworld star colors and sizes as well as your first ship. If you're not sure what to do, I suggest a medium blue star, a small red star, and a large green ship. On SDG, you give that command by typing this:

homeworld b2 r1 g3
	Babamots: One other thing: do you know how this game got started? I didn't think I had any open challenges that you could have joined, and if you had challenged me, I thought SDG should have asked me if I wanted to play (instead, the game began immediately without asking if I wanted to accept).

Just curious!

3) Babamots: Build B1 Babamots

4) Layana: Build G1 Layana
	Layana: Ok, thanks for the hints. I'll go with your recommendation, then, even though I feel I'd rather start with yellow than red - this way, I'll have to get a yellow ship to move out, won't I?

And yes, the game was one of your open challenges. It's unrated, which is what I'm looking for for the first 5 games. 

5) Babamots: Trade B1 Y1 Babamots

6) Layana: Trade G1 Y1 Layana
	Babamots: Yes, you'll need to trade a ship for yellow before you can move to another system.

7) Babamots: Build B1 Babamots

8) Layana: Build G1 Layana

9) Babamots: Build B1 Babamots

10) Layana: Build G1 Layana

11) Babamots: Discover B1 Babamots B1 Bolarus

12) Layana: Discover G1 Layana R3 Cassiopeia

13) Babamots: Build B2 Babamots

14) Layana: Build G1 Layana

15) Babamots: Trade B2 G2 Babamots

16) Layana: Sacrifice G3 Layana
Build G2 Layana
Build G3 Cassiopeia
Build G3 Cassiopeia

17) Babamots: Build G3 Babamots

18) Layana: Trade G2 B2 Layana

19) Babamots: Trade B3 Y3 Babamots

20) Layana: Sacrifice G1 Cassiopeia
Build Y1 Layana
	Babamots: I think your first move was better since it kept a large ship at your home. But I can't invade yet, so you should be ok.

21) Babamots: Sacrifice G2 Babamots
Build B2 Babamots
Build B3 Bolarus
	Layana: Well, eventually, I'm probably going to sacrifice one of the G3s again, anyway, and then I can rebuild that in my homeworld, right?

22) Layana: Move Y1 Layana Cassiopeia

23) Babamots: Build B3 Babamots
	Babamots: That will probably be OK, but I recommend doing it sooner than later.

	Babamots: Yeah, I don't like the pressure of playing ranked games. I'd be happy to play another if this one is looking too discouraging.

If at any point you'd like to do some reading about strategy or try some position puzzles, I've got a little website you can take a look at here:

https://jpeterbaker.github.io/homeworlds/site/index.html

The Icehouse Wiki guide is pretty good too:

https://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy
	Layana: Thanks, I'll look into it. 


36611)
Variants: "Hard time"
Started: 2020.7.14, Ended: 2020.7.30
Participants: Draw5PlayAll (S), dlwillson (N)
Winner: dlwillson

1) dlwillson: H B3 Y1 G3

2) Draw5PlayAll: Homeworld B2 R1 G3
	dlwillson: TY, GL, and HF!
	Draw5PlayAll: Ugh... do I instafreeze yellow, or not...?

3) dlwillson: Build G1 Dlwillson

4) Draw5PlayAll: Build G1 Draw5playall
	dlwillson: It's up to you! I don't mind! I think the advantage of going second is generally overestimated.
	dlwillson: Do you want to start over, so you can instafreeze yellow? I really don't mind.
	Draw5PlayAll: Nah, last time I did it I lost due to not having blue, which meant not having red.

5) dlwillson: Trade G1 R1 Dlwillson

6) Draw5PlayAll: Trade G1 R1 Draw5playall

7) dlwillson: Build R2 Dlwillson

8) Draw5PlayAll: Build R2 Draw5playall

9) dlwillson: B R2 Dlwillson

10) Draw5PlayAll: Trade R2 Y2 Draw5playall

11) dlwillson: T R2 Y2 Dlwillson

12) Draw5PlayAll: Build R2 Draw5playall

13) dlwillson: Discover R1 Dlwillson G2 Field

14) Draw5PlayAll: Discover R1 Draw5playall G3 Eye

15) dlwillson: Build Y1 Dlwillson

16) Draw5PlayAll: Build Y1 Draw5playall

17) dlwillson: Trade Y1 B1 Dlwillson

18) Draw5PlayAll: Trade Y1 B1 Draw5playall

19) dlwillson: M B1 Dlwillson Field

20) Draw5PlayAll: Move B1 Draw5playall Eye

21) dlwillson: M Y2 Dlwillson Field

22) Draw5PlayAll: Discover R2 Draw5playall B3 Taxation

23) dlwillson: B Y1 Field

24) Draw5PlayAll: Build Y1 Draw5playall

25) dlwillson: M Y2 Field Eye

26) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R2 Taxation Field

27) dlwillson: Sacrifice R2 Dlwillson
Attack R1 Eye
Attack B1 Eye
	Draw5PlayAll: Tit for tat!

28) Draw5PlayAll: Attack Y1 Field

29) dlwillson: B R2 Field

30) Draw5PlayAll: Attack R2 Field

31) dlwillson: Build R2 Field
Catastrophe Field R

32) Draw5PlayAll: Discover Y1 Field G1 Toaster

33) dlwillson: Build R1 Eye

34) Draw5PlayAll: Build G1 Draw5playall

35) dlwillson: B B1 Eye

36) Draw5PlayAll: Discover G1 Draw5playall B3 Taxation

37) dlwillson: B B2 Eye

38) Draw5PlayAll: Move Y2 Draw5playall Taxation

39) dlwillson: Build B2 Field

40) Draw5PlayAll: Discover Y1 Toaster B3 Stealakeeper

41) dlwillson: Trade B2 Y2 Field

42) Draw5PlayAll: Trade Y2 R2 Taxation

43) dlwillson: Move R1 Eye Field
	Draw5PlayAll: I doubt I can come back from this.

44) Draw5PlayAll: Build R2 Taxation

45) dlwillson: B G1 Dlwillson

46) Draw5PlayAll: Trade R2 Y2 Taxation

47) dlwillson: Build R2 Field

48) Draw5PlayAll: Build G1 Draw5playall

49) dlwillson: Move B2 Eye Draw5playall

50) Draw5PlayAll: Sacrifice G3 Draw5playall
Build G2 Taxation
Build G2 Taxation
Build G3 Draw5playall

51) dlwillson: Sacrifice Y2 Eye
Move B1 Eye Draw5playall
Move R2 Field Dlwillson

52) Draw5PlayAll: Move G2 Taxation Field
	dlwillson: I guess I can afford a small insurance policy.

53) dlwillson: Sacrifice Y2 Field
Move B1 Eye Draw5playall
Catastrophe Draw5playall B
Move B1 Field Taxation
	Draw5PlayAll: I guess I can afford to mess you up.

54) Draw5PlayAll: Sacrifice R2 Taxation
Attack B1 Taxation
Attack R1 Field

55) dlwillson: B R2 Eye

56) Draw5PlayAll: Discover G1 Taxation B2 Jackpot
	Draw5PlayAll: This is interesting...

57) dlwillson: T G3 Y3 Dlwillson

58) Draw5PlayAll: Sacrifice Y2 Taxation
Move G1 Jackpot Eye
Move G1 Draw5playall Eye

59) dlwillson: Sacrifice Y3 Dlwillson
Move R1 Eye Draw5playall
Move R2 Eye Draw5playall
Pass

60) Draw5PlayAll: Attack R2 Draw5playall

61) dlwillson: S G1 Dlwillson
B R2 Draw5playall
C Draw5playall R

	dlwillson: Well, that's the long-expected win on this one, but I think you're going to win the ladder match.
	Draw5PlayAll: I hope...


36698)
Variants: "Unrated, Hard time"
Started: 2020.7.15, Ended: 2020.7.18
Participants: wil (S), Layana (N)
Winner: Layana

1) Layana: Homeworld B2 Y1 G3

	Layana: Good luck, have fun. This is one of my first games, so don't expect to much. I'm just experimenting as of now :) 
	wil: So sorry. There are times I don't check in...try me again 


36352)
Variants: "Unrated"
Started: 2020.7.15, Ended: 2020.7.18
Participants: Layana (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Layana: Homeworld G2 Y1 B3

3) Trydnt: Build G1 Trydnt

4) Layana: Build B1 Layana

5) Trydnt: Trade G1 Y1 Trydnt

6) Layana: Build B1 Layana

7) Trydnt: Build Y2 Trydnt

8) Layana: Discover B1 Layana G3 Orion

9) Trydnt: Discover Y1 Trydnt G3 G3

10) Layana: Build B1 Orion

11) Trydnt: Sacrifice G3 Trydnt
Build Y2 G3
Build Y2 G3
Build Y3 Trydnt

12) Layana: Build B2 Orion

13) Trydnt: Trade Y3 G3 Trydnt

14) Layana: Trade B3 R3 Layana

15) Trydnt: Build Y3 Trydnt



36767)
Variants: "Unrated"
Started: 2020.7.15, Ended: 2020.7.16
Participants: Babamots (S), Layana (N)
Winner: Babamots

1) Layana: Homeworld B2 Y1 G3

2) Babamots: Homeworld B3 R1 G3

3) Layana: Build G1 Layana

4) Babamots: Build G1 Babamots

5) Layana: Trade G1 Y1 Layana
	Layana: Actually, I really liked our game - I'd like to lose my first 5 or so games as fast and educational as possible, then I'll look into puzzles. 

6) Babamots: Trade G1 Y1 Babamots

7) Layana: Build Y2 Layana

8) Babamots: Build Y2 Babamots
	Babamots: That's what I hear about the game of go: you should lose your first 50 games as quickly as possible (or 100 or 500, depending on whom you ask).

Getting slaughtered is the traditional way to learn Homeworlds as well, though I'm trying to change that a little by compiling my wisdom on my site and making it available.

9) Layana: Build G1 Layana

10) Babamots: Discover Y1 Babamots Y2 Aldea

11) Layana: Discover Y1 Layana G3 Fintlewoodlewix

12) Babamots: Build Y3 Babamots

13) Layana: Trade G1 R1 Layana

14) Babamots: Trade Y2 R2 Babamots

15) Layana: Build G1 Layana

16) Babamots: Discover Y1 Aldea G1 Bajor

17) Layana: Trade G1 B1 Layana

18) Babamots: Build Y2 Bajor

19) Layana: Build B1 Layana
	Layana: Cool how you gained a foothold, cut off your homeworld and, due to the scarcity of yellow in the global stash, can threaten an overpopulation without fear of repercussion. I'm starting to like this game :)
	Layana: I meant due to the scarcity of yellow you can get ahead in the big ship count

20) Babamots: Discover Y2 Bajor B3 Bolarus

21) Layana: Move G3 Layana Bolarus
	Babamots: I wouldn't say I "cut off" my homeworld since either of us can always discover a new medium-sized world to connect to me. But yeah, the game is pretty wild. I love it.

22) Babamots: Sacrifice G3 Babamots
Build Y2 Bolarus
Build Y3 Bajor
Build Y3 Babamots
	Layana: So are there any "standard" opening moves I should be aware of?

	Babamots: There's only thing I know of that I would call a standard opening, and that's when a player attempts an instafreeze, and the other player properly trades their original large ship for the frozen color. But even in that case, there are only two or three scripted turns.

I think the main thing in the opening is to keep a close eye on the bank and try to think at least two turns ahead. I'm always checking "What will happen if we keep building the colors that we've been working on? Who gets bigger ships faster?" If I'll get the bigger ships, I keep building. If my opponent will get bigger ships, I'll look for a way to change things up (block their builds, trade to start developing another color, threaten an attack on a colony etc.).
	Babamots: By the way, do you know how to review a game once it's over? You can get to an "archive" view from your game history (link on your home page).

Here's the archive view of this game:

http://www.superdupergames.org/main.html?page=archive_play&gid=36767


36771)
Variants: "Unrated"
Started: 2020.7.16, Ended: 2020.7.18
Participants: Babamots (S), Layana (N)
Winner: Babamots

1) Layana: Homeworld Y3 B2 G3

2) Babamots: Homeworld B3 Y1 G3

3) Layana: Build G1 Layana

4) Babamots: Build G1 Babamots

5) Layana: Trade G3 Y3 Layana

6) Babamots: Trade G1 Y1 Babamots

7) Layana: Build Y1 Layana

8) Babamots: Discover Y1 Babamots G2 Cardassia

9) Layana: Discover Y1 Layana G1 Vulcan

10) Babamots: Build Y2 Cardassia

11) Layana: Build Y2 Vulcan

12) Babamots: Discover Y1 Cardassia G1 Orion

13) Layana: Discover Y2 Vulcan B2 Deneb

14) Babamots: Build G2 Babamots

15) Layana: Discover Y1 Vulcan Y3 Risa

16) Babamots: Build Y2 Orion
	Babamots: That's a good move. It blocks me from double-building to get the y3.

17) Layana: Discover Y3 Layana B1 Betazed
	Babamots: Though now you need to figure out how to avoid a catastrophe.
	Layana: If I trade away the y3, you can again build it. If I don't want that, I'll have to move out of the system. The third, theoretical option would be to sacrifice it, but I don't really see what I could gain from that, and I'd lose my only large ship. None of the options sound to jazzy, actually. 

18) Babamots: Trade G2 R2 Babamots

19) Layana: Trade Y3 R3 Betazed
	Babamots: I'm afraid that won't work out since it leaves you open to attack once I get red. I don't see a way out of this for you.
	Babamots: I think your best bet is to trade your y3 for r3 and sacrifice your y1 to bring it home. I get a y3 ship out of it, but you don't lose the game, a star, or a ship.

20) Babamots: Build Y3 Cardassia

	Layana: I think there's nothing much I can do to prevent a Catastrophe in two turns, after which or homeworlds are going to be adjacent, and you will still have your g3. But if you don't mind I would like to play a few more moves nonetheless. 
	Babamots: If I wanted to destroy your yellow star as quickly as possible, you're right that you wouldn't be able to prevent it. But doing that would spend most of my material advantage, which might make it a little easier for you to make a comeback.

Here's my longish discussion of "Planning for complete, swift victory"

https://jpeterbaker.github.io/homeworlds/site/strategy.html#swiftVictory

So my plan is to not attack until I can destroy both of your stars in quick succession (unless of course you give me a chance to win immediately, like if you don't move your large ship home this turn).
	Babamots: I have no objection to continuing the game, especially when I'm ahead ;-).
	Layana: Well, while I feel this is lost already, I still think it might be educational to see how you finish the game. 
	Layana: Well, while I feel this is lost already, I still think it might be educational to see how you finish the game. 
	Babamots: Sorry if that was discouraging. I hope you felt like it was educational anyway.


36770)
Variants: "Unrated"
Started: 2020.7.16, Ended: 2020.7.23
Participants: Babamots (S), Layana (N)
Winner: Babamots

1) Layana: Homeworld Y3 B2 G3

2) Babamots: Homeworld B2 R3 G3

3) Layana: Build G1 Layana
	Babamots: I'll need to focus on work today, so I'll probably make fewer moves than yesterday. :-)

4) Babamots: Build G1 Babamots

5) Layana: Trade G1 Y1 Layana

6) Babamots: Trade G1 Y1 Babamots

7) Layana: Discover Y1 Layana G1 Andoria

8) Babamots: Build Y1 Babamots

9) Layana: Build Y2 Andoria

10) Babamots: Build Y2 Babamots

11) Layana: Move Y1 Andoria Babamots
Catastrophe Babamots Y

12) Babamots: Build G1 Babamots
	Babamots: Oops, I forgot that this was a small universe. Well, that makes it more interesting.

13) Layana: Build G1 Layana

14) Babamots: Trade G1 Y1 Babamots
	Layana: Well, it could be smaller still... 

15) Layana: Trade G1 B1 Layana

16) Babamots: Build Y1 Babamots

17) Layana: Move B1 Layana Andoria

18) Babamots: Discover Y1 Babamots G1 Orion

19) Layana: Build B1 Andoria

20) Babamots: Build Y1 Babamots

21) Layana: Build B1 Andoria

22) Babamots: Discover Y1 Babamots G1 Ferenginar

23) Layana: Move B1 Andoria Babamots

24) Babamots: Attack B1 Babamots

25) Layana: Sacrifice Y2 Andoria
Move B1 Andoria Babamots
Move B1 Andoria Babamots
Catastrophe Babamots B

26) Babamots: Build Y2 Babamots

27) Layana: Build G1 Layana

28) Babamots: Sacrifice G3 Babamots
Build Y2 Ferenginar
Build Y2 Orion
Build Y3 Babamots
	Babamots: I think I can come back from this if I can keep a hold of the yellow economy.

29) Layana: Build G2 Layana
	Layana: Was it a mistake to attack so soon? 

30) Babamots: Discover Y2 Orion B2 Bolarus
	Babamots: I think it was a mistake to attack so soon. You got one of my stars, but you used to have the advantage in color diversity and material. I've got a pretty big material advantage now, though it's easier for you to diversify. I'll need to discover a blue star before I have any ships besides yellow.
	Layana: You're right. I can't trade for y3, because you'd just Catastrophe my homeworld. That basically shuts me out of yellow. 
	Layana: How would you have played this, then? I feel like whenever I get some sort of material advantage, there is always a threat of Catastrophe to take that away. I guess I need to spread out my forces me, but that feels like I'm losing tempo every time. 

31) Layana: Discover G2 Layana B1 Qonos
	Babamots: Here's a link to the position before the invasion:

http://www.superdupergames.org/?page=archive_play&gid=36770&idx=21

Here's my analysis of that position.

* You're up a small ship and a color.

* I can't work on getting blue, so you're safe from blue catastrophe.

* You don't have red yet, but neither do I, so you're safe from invasion for now.

* The advantage I see for me is my strength in the yellow economy: lots of ships, nicely spread out. Once we use up a few more yellows I'm ready to do a g3 sacrifice and at least one large yellow build (a chameleon factory). In the real game, this is what I'm trying to take advantage of.

* You're in a good position to start getting red: you trade one of your blues (no loss of diversity since you still have blue). For me, getting red safely is at least a three turn thing. I need to build a ship (yellow or green) at home (so I don't have to trade away my only yellow there), then trade the new ship for red, then move the red out of my home to avoid the danger of overpopulation. By then you could actually have two red ships and be ready to do a catastrophe on me.

* I think pressing your red-potential advantage is how you win from here.
1) Trade b1 for r1
2) build another red (to make it hard for me to get red without risking catastrophe at home),
3) build yellow
4) move yellow to a new system (so you're better prepared to build yellow when/if I open up larges),
5) build more blue and red to prepare to destroy my stars.


32) Babamots: Build Y3 Orion
	Babamots: Right now, you need to worry about getting totally locked out of yellow. With no yellow, you can't reach my home and the best you can hope for is a draw. (SDG doesn't actually allow draws, but the game could stall if you can't reach me but I don't have enough material to end you). My fear is that you'll manage to get another g3, and trade that g3 for y3.

I'm now scrambling to diversify my fleet and keep it spread out. I don't want you to get red and catch several of my ships vulnerable before I can get red.

You can see that I've moved a y2 to a blue system, so I'm planning to trade it for another color. You you'll want to trade g2 for y2 once I free up the piece. I think you should discover a b1 system with your g2 so that you can get the y2 without the danger of overpopulation in your home.

33) Layana: Build G2 Layana
	Layana: So is it true that a homeworld with a yellow star is easier to attack via Catastrophe than other homeworlds? After all, you need yellow to move and setup a Catastrophe, so in the case of a yellow homeworld star, you don't really have to be that diverse. And I feel you basically need some yellow no matter what you are going for. 
	Babamots: I actually think the opposite: causing a catastrophe against a yellow star seems a little harder than against other colors, especially if you want to knock out both stars quickly. Think about the material you need to quickly knock out a blue-yellow home:

* Three blue ships to trigger a blue star catastrophe
* Three yellow ships to trigger a yellow star catastrophe
* Two yellows to sacrifice
* A ship occupying your home, of course

Those Five yellow ships need to be spread across at least three systems to keep from having a three-concentration. Each of those systems will probably need a large ship defending it. That's a lot of infrastructure.

For another thing, of the nine yellow pieces, one is a home star and five are your ships. There are only three yellows to spare. If there are just four yellows tied up as enemy ships or stars, then there aren't enough pieces for your Doomsday machine.

If that home star were red instead, then the ships you need are more diverse (three red, three blue, two yellow). You need a little of everything, but you don't need to dominate any one economy. And all of those ships can safely fit in just two systems with a maximum color-concentration of two in any system. It seems to me that this is usually easier.
	Babamots: But I take red home stars anyway so that I can safely build more yellow at home.

34) Babamots: Discover Y3 Orion B3 Betazed

35) Layana: Trade G2 R2 Layana
	Layana: Yes, that makes sense. But if you attack the opponent in two waves, then you wouldn't need that many ships at once, surely? 
	Layana: Yes, that makes sense. But if you attack the opponent in two waves, then you wouldn't need that many ships at once, surely? 
	Layana: One more question : with my current lead in green, I should be able to get most of the blue ships, right? Would that not be preferable to trying to go into red? As a defensive play? 
	Babamots: You're right, if you're comfortable launching your attack in two waves, then you don't need as much yellow all at once. After the first phase, you may be able to build a yellow to complete the second phase (if your opponent doesn't beat you to it). Every turn that takes place between the phases increases the danger.

And sometimes it's easier to run away with a lead in the yellow economy than it is to diversify, in which case you'll have no trouble destroying a yellow star.

I've made my argument for yellow stars being good for defense, but it's mostly theory and gut feeling. I guess the best answer would be to look at all the HW games on SDG and see if yellow stars are more or less likely to be destroyed. I might look into collecting that data, but in the meantime, it's OK if we don't agree :-).
	Babamots: I think you're better off getting some red before you worry about blue here. (The best defense is a good offense, as they say.) Getting a red will put pressure on me to get red, which may help to free up yellow pieces for you. Also you'll need red to destroy my other star.

I'm trying hard not to let you get yellow. In order to catastrophe a red star, you absolutely need at least a y2 to sacrifice (if you move red ships to my home one at a time, I'll capture them while sacrificing the ones I captured on previous turns.)

Since my last turn, I've changed my mind about what I should do next. I was planning to trade my y2 for r2, but really don't want to let you get a y2, so I'm looking at a couple of other options.

36) Babamots: Trade Y3 G3 Betazed

37) Layana: Move R2 Layana Ferenginar

38) Babamots: Sacrifice Y2 Ferenginar
Discover Y1 Ferenginar Y2 Iconia
Discover Y2 Bolarus Y3 Aldea

39) Layana: Trade G1 B1 Layana

40) Babamots: Move Y1 Orion Betazed
	Babamots: Hmm, now that you have a red, you're prepared to take advantage of any weak systems that I open up to you. I think I've got to go full boa constrictor here and keep you from getting any yellow, whatever the cost. I'm going to build up a victory fleet where you can't bother me.

I'm theorizing here, but I think your next objective needs to be using up all of the small pieces (mostly as ships) so that, assuming I amass a victory fleet, I won't have a way to get it to your home. Using up the rest of the greens will give you a factory to build faster (although it will give me a chance to get another g3 and a factory as well).

41) Layana: Build G1 Layana
	Layana: It seems nontrivial to actually get those green ships without risking my g3, though :) 

42) Babamots: Build G1 Betazed

43) Layana: Build G2 Qonos

44) Babamots: Trade G1 B1 Betazed
	Babamots: You say "nontrivial" like a mathematician. Do you consider yourself one?

45) Layana: Sacrifice G2 Qonos
Build G1 Qonos
Build R1 Ferenginar
	Layana: I have a Ph.d. in pure mathematics, somewhere between category theory, algebra, topology and logic (at bit of all of that, I suppose). I work half-time at the "Institut Analysis and Algebra" of Technische Universität Braunschweig. But I also work in automotive industry...
	Layana: What about you?

46) Babamots: Build B2 Betazed
	Babamots: I'm an applied math PhD student. I'm working in numerical linear algebra and control problems.
	Layana: I have a phd student who is working on control theory, too. Some people seem to like their categories of topological monoid actions... 

47) Layana: Trade G2 B2 Qonos
	Babamots: I know what a topology is, not too sure about the other parts. :-D

48) Babamots: Build G2 Betazed

49) Layana: Build G2 Qonos

50) Babamots: Discover G3 Betazed R1 Romulus

	Babamots: Just realized I should be able to go the whole game without any red ships this way.
	Layana: Yes, this is like super over. Thanks for the game :) are you fine continuing our games, even if they aren't challenging to you? Can we maybe try a game where you start with only one star (so that I can see what that is like)? 
	Babamots: I'm having a good time. I'm winning, aren't I? :-D

Are you suggesting that we both start with one star, or just me? SDG doesn't actually let you start with only one star, but we could deliberately cause catastrophes in the first few moves.
	Layana: Well, easy wins tend to become boring after a while, don't they? And yes, I meant just you. 


36764)
Variants: "Unrated"
Started: 2020.7.18, Ended: 2020.7.25
Participants: Layana (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) Layana: Homeworld B2 Y3 G3

3) Trydnt: Build G1 Trydnt

4) Layana: Build G1 Layana

5) Trydnt: Trade G1 Y1 Trydnt

6) Layana: Trade G1 Y1 Layana

7) Trydnt: Build Y2 Trydnt

8) Layana: Discover Y1 Layana G1 Antares

9) Trydnt: Trade Y1 B1 Trydnt

10) Layana: Build G1 Layana

11) Trydnt: Build B1 Trydnt

12) Layana: Trade G1 B1 Layana

13) Trydnt: Discover B1 Trydnt G3 G3

14) Layana: Discover B1 Layana G1 Risa

15) Trydnt: Move Y2 Trydnt G3

16) Layana: Build Y1 Antares

17) Trydnt: Build Y2 G3

18) Layana: Discover Y1 Antares B3 Orion

19) Trydnt: Move Y2 G3 Risa

20) Layana: Build G1 Layana

21) Trydnt: Build G2 Trydnt

22) Layana: Build G2 Layana

23) Trydnt: Sacrifice G2 Trydnt
Build Y2 Risa
Build Y3 G3

24) Layana: Sacrifice G2 Layana
Build Y3 Orion
Build G2 Layana

25) Trydnt: Sacrifice Y3 G3
Move G3 Trydnt G3
Move G3 G3 Risa
Move G3 Risa Layana
Catastrophe Layana G



36778)
Started: 2020.7.18, Ended: 2020.10.5
Participants: huddyrx (S), Mantheron (N)
Winner: Mantheron

1) Mantheron: Homeworld B3 Y2 G3

2) huddyrx: Homeworld B3 R1 G3

3) Mantheron: Build G1 Mantheron

4) huddyrx: Build G1 Huddyrx

5) Mantheron: Discover G1 Mantheron B1 Altair

6) huddyrx: Trade G1 Y1 Huddyrx

7) Mantheron: Build G1 Mantheron

8) huddyrx: Build Y1 Huddyrx

9) Mantheron: Trade G1 Y1 Mantheron

10) huddyrx: Build Y2 Huddyrx

11) Mantheron: Build Y2 Mantheron

12) huddyrx: Discover Y2 Huddyrx B2 Cosmo

13) Mantheron: Trade Y1 R1 Mantheron

14) huddyrx: Build G1 Huddyrx

15) Mantheron: Build R1 Mantheron

16) huddyrx: Move G1 Huddyrx Cosmo

17) Mantheron: Move R1 Mantheron Altair

18) huddyrx: Build G1 Cosmo

19) Mantheron: Build G2 Mantheron

20) huddyrx: Discover G1 Cosmo B1 Ellie

21) Mantheron: Build R2 Altair

22) huddyrx: Build G2 Huddyrx

23) Mantheron: Move Y2 Mantheron Altair

24) huddyrx: Move Y1 Huddyrx Cosmo

25) Mantheron: Move R2 Altair Cosmo

26) huddyrx: Sacrifice Y2 Cosmo
Move Y1 Cosmo Ellie
Move G1 Cosmo Ellie

27) Mantheron: Move R1 Mantheron Ellie

28) huddyrx: Sacrifice G2 Huddyrx
Build Y1 Ellie
Build Y2 Ellie

29) Mantheron: Sacrifice R2 Cosmo
Attack G1 Ellie
Attack G1 Ellie

30) huddyrx: Trade Y2 R2 Ellie

31) Mantheron: Build G2 Ellie

32) huddyrx: Attack G2 Ellie

33) Mantheron: Build G2 Ellie
Catastrophe Ellie Green

34) huddyrx: Attack R1 Ellie

35) Mantheron: Trade G2 R2 Mantheron

36) huddyrx: Build Y2 Huddyrx

37) Mantheron: Build Y3 Altair

38) huddyrx: Build Y3 Huddyrx

39) Mantheron: Build R2 Altair

40) huddyrx: Sacrifice Y3 Huddyrx
Move Y1 Ellie Mantheron
Move Y1 Ellie Mantheron
Discover Y1 Huddyrx B2 Cosmo

41) Mantheron: Discover R2 Altair G2 Deneb

42) huddyrx: Sacrifice Y2 Huddyrx
Move Y1 Cosmo Ellie
Move Y1 Ellie Mantheron
Catastrophe Mantheron Yellow

43) Mantheron: Build R3 Deneb

44) huddyrx: Build G1 Huddyrx

45) Mantheron: Build R3 Altair

46) huddyrx: Trade G1 Y1 Huddyrx

47) Mantheron: Discover R3 Altair Y2 Fawaris

48) huddyrx: Build Y1 Huddyrx

49) Mantheron: Sacrifice Y3 Altair
Move R3 Fawaris Huddyrx
Move R3 Deneb Huddyrx
Move R2 Deneb Huddyrx
Catastrophe Huddyrx Red

50) huddyrx: Trade Y1 B1 Huddyrx

51) Mantheron: Build R1 Mantheron

52) huddyrx: Build Y1 Huddyrx

53) Mantheron: Build R2 Altair

54) huddyrx: Discover B1 Huddyrx G2 Reggie

55) Mantheron: Move R2 Altair Reggie

56) huddyrx: Trade G3 R3 Huddyrx

57) Mantheron: Attack B1 Reggie

58) huddyrx: Trade Y1 G1 Huddyrx

59) Mantheron: Build R3 Altair

60) huddyrx: Build R3 Huddyrx

61) Mantheron: Build B2 Reggie

62) huddyrx: Build Y1 Huddyrx

63) Mantheron: Build Y1 Altair

64) huddyrx: Move R3 Huddyrx Ellie

65) Mantheron: Sacrifice Y1 Altair
Move R1 Mantheron Ellie
Catastrophe Ellie Red

66) huddyrx: Trade Y1 B1 Huddyrx

67) Mantheron: Sacrifice Y2 Altair
Move B1 Reggie Huddyrx
Move B2 Reggie Huddyrx
Catastrophe Huddyrx Blue



36787)
Variants: "Hard time"
Started: 2020.7.21, Ended: 2020.8.28
Participants: dlwillson (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) dlwillson: Homeworld B3 Y1 G3

3) Draw5PlayAll: Build G1 Draw5playall
	dlwillson: You have completely freaked me out with that weird opening move!
	Draw5PlayAll: I did not want to confuse this with the other game.

4) dlwillson: B G1 Dlwillson

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) dlwillson: T G1 R1 Dlwillson

7) Draw5PlayAll: Build Y1 Draw5playall

8) dlwillson: Build R1 Dlwillson

9) Draw5PlayAll: Build Y2 Draw5playall

10) dlwillson: Discover R1 Dlwillson R2 Mars

11) Draw5PlayAll: Discover Y2 Draw5playall G1 Rocket

12) dlwillson: Build R1 Dlwillson

13) Draw5PlayAll: Discover Y1 Draw5playall B3 Taxation

14) dlwillson: Discover R1 Dlwillson B2 Sea

15) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Taxation
Build Y2 Taxation
Build Y3 Draw5playall

16) dlwillson: Build R2 Dlwillson

17) Draw5PlayAll: Build Y3 Rocket

18) dlwillson: Build R3 Dlwillson

19) Draw5PlayAll: Build Y3 Rocket

20) dlwillson: Move R2 Dlwillson Sea
	dlwillson: Such a weird board layout. It's fun.

21) Draw5PlayAll: Move Y3 Rocket Mars

22) dlwillson: S R1 Mars
Pass

23) Draw5PlayAll: Discover Y3 Mars B1 Stealakeeper
	Draw5PlayAll: The question is, are you the kind of player who would do it, or not?
	dlwillson: Do what? Waste a bunch of ships and turns for nothing? Jeez, I hope not.

24) dlwillson: Build R1 Dlwillson
	dlwillson: Or sac a ship to keep it away from you? I am that kind.
	dlwillson: 

25) Draw5PlayAll: Trade Y3 R3 Stealakeeper
	Draw5PlayAll: I can only hope this works...
	dlwillson: I have no idea what you're trying to do, this time, so I guess it probably will.

26) dlwillson: T R3 Y3 Dlwillson

27) Draw5PlayAll: Sacrifice Y3 Rocket
Move Y1 Draw5playall Dlwillson
Move Y1 Taxation Sea
Move Y1 Sea Dlwillson
Catastrophe Dlwillson Yellow
	Draw5PlayAll: This.

28) dlwillson: Trade R1 Y1 Dlwillson
	dlwillson: But, you could have done that anytime. I still don't get why that's better than any other time.

29) Draw5PlayAll: Trade Y2 G2 Taxation
	Draw5PlayAll: That's why.
	dlwillson: So, I guess I should have moved the R3 to sea, rather than creating an R1. Lesson learned. Good play.

30) dlwillson: Trade R2 G2 Sea
	dlwillson: Still... Unless I'm mis-remembering, you had that trade option before. For example, you could have traded your home Y3 for an R3 anytime. No, wait, you couldn't have, because then I *could* have forced a red cat. But it wasn't an option anywhere else, either? Hm...

31) Draw5PlayAll: Build Y1 Taxation

32) dlwillson: B R1 Dlwillson

33) Draw5PlayAll: Build G1 Taxation

34) dlwillson: B R2 Sea

35) Draw5PlayAll: Trade G2 R2 Taxation

36) dlwillson: Trade R1 B1 Sea

37) Draw5PlayAll: Trade Y1 B1 Taxation

38) dlwillson: Discover R1 Dlwillson Y1 Sol

39) Draw5PlayAll: Move B1 Taxation Rocket

40) dlwillson: B G1 Dlwillson

41) Draw5PlayAll: Discover Y2 Rocket R3 Countdown

42) dlwillson: S G2 Sea
B R1 Sea
B R3 Sol

43) Draw5PlayAll: Build G2 Taxation

44) dlwillson: Move R3 Sol Taxation

45) Draw5PlayAll: Sacrifice Y2 Taxation
Move G2 Taxation Stealakeeper
Discover R2 Taxation G2 Moon

46) dlwillson: A G1 Taxation

47) Draw5PlayAll: Build B2 Rocket

48) dlwillson: Discover R1 Sol B3 Sky

49) Draw5PlayAll: Build G2 Stealakeeper

50) dlwillson: Move G1 Dlwillson Sea
	Draw5PlayAll: *darn* Countdown is Rocket + Time, not Rocket + Moon. Oh well.

51) Draw5PlayAll: Sacrifice Y2 Countdown
Move B2 Rocket Sea
Move B1 Rocket Sea
Catastrophe Sea Blue

52) dlwillson: Build Y1 Dlwillson

53) Draw5PlayAll: Trade G2 Y2 Stealakeeper

54) dlwillson: T Y1 B1 Dlwillson

55) Draw5PlayAll: Discover G2 Stealakeeper R3 Worldpeace

56) dlwillson: B B1 Dlwillson

57) Draw5PlayAll: Build R1 Moon

58) dlwillson: Build R2 Taxation

59) Draw5PlayAll: Sacrifice G2 Worldpeace
Build R3 Stealakeeper
Build Y1 Stealakeeper

60) dlwillson: Trade R3 Y3 Taxation

61) Draw5PlayAll: Build R3 Moon

62) dlwillson: S Y3 Taxation
M R1 Dlwillson Moon
C Moon R
M R1 Sky Stealakeeper
M R2 Taxation Stealakeeper
C Stealakeeper R

63) Draw5PlayAll: Trade Y2 B2 Stealakeeper

64) dlwillson: T B1 R1 Dlwillson

65) Draw5PlayAll: Discover B2 Stealakeeper G2 Money

66) dlwillson: D B1 Dlwillson G1 Field

67) Draw5PlayAll: Build B1 Money

68) dlwillson: B B2 Field
	dlwillson: Kublooey!
	dlwillson: Kublooey!

69) Draw5PlayAll: Trade B2 R2 Money
	Draw5PlayAll: I think that actually helped me.

70) dlwillson: Move Y1 Dlwillson Field
	dlwillson: It certainly simplified the board!

71) Draw5PlayAll: Build B2 Money

72) dlwillson: D B1 Field Y3 Sol

73) Draw5PlayAll: Move Y1 Stealakeeper Money

74) dlwillson: Build B1 Field

75) Draw5PlayAll: Move B1 Money Field

76) dlwillson: S G1 Taxation
B B3 Sol

77) Draw5PlayAll: Build B3 Money

78) dlwillson: M B1 Sol Field
C Field B

79) Draw5PlayAll: Trade B2 Y2 Money

80) dlwillson: Move B3 Sol Field

81) Draw5PlayAll: Build B1 Money

82) dlwillson: Build Y1 Field

83) Draw5PlayAll: Sacrifice Y1 Money
Discover B1 Money Y1 Recycling
	Draw5PlayAll: That... is actually a valid option...

84) dlwillson: Build Y2 Field

85) Draw5PlayAll: Move Y2 Money Field
Catastrophe Field Yellow

	Draw5PlayAll: Kill all enemy counterplay!
	dlwillson: Good game, D5PA! I'll get you next time! :-)
	Draw5PlayAll: We'll see about that...


36789)
Variants: "Hard time"
Started: 2020.7.23, Ended: 2020.8.27
Participants: Babamots (S), deanthebean (N)
Winner: Babamots

1) deanthebean: Homeworld Y1 B2 G3

2) Babamots: Homeworld B3 R1 G3
	deanthebean: Thank you for accepting the challenge. Have fun!
	Babamots: It was either accept or get demoted to #6. :-D

Good luck!

3) deanthebean: Build G1 Deanthebean
	deanthebean: Thanks. 

4) Babamots: Build G1 Babamots

5) deanthebean: Trade G1 R1 Deanthebean

6) Babamots: Trade G1 Y1 Babamots

7) deanthebean: Build R1 Deanthebean

8) Babamots: Build Y1 Babamots

9) deanthebean: Build R2 Deanthebean

10) Babamots: Build Y2 Babamots

11) deanthebean: Trade R2 Y2 Deanthebean

12) Babamots: Discover Y1 Babamots G2 Bajor

13) deanthebean: Build R2 Deanthebean

14) Babamots: Sacrifice G3 Babamots
Build Y2 Bajor
Build Y3 Bajor
Build Y3 Babamots

15) deanthebean: Discover Y2 Deanthebean G3 A1

16) Babamots: Discover Y2 Bajor Y3 Iconia

17) deanthebean: Trade R1 B1 Deanthebean

18) Babamots: Trade Y1 B1 Babamots

19) deanthebean: Build Y1 A1

20) Babamots: Trade Y2 G2 Babamots

21) deanthebean: Trade R2 Y2 Deanthebean

22) Babamots: Build B1 Babamots

23) deanthebean: Build R1 Deanthebean

24) Babamots: Build G1 Babamots

25) deanthebean: Build R2 Deanthebean

26) Babamots: Trade G2 R2 Babamots

27) deanthebean: Trade R2 G2 Deanthebean

28) Babamots: Move B1 Babamots Bajor

29) deanthebean: Build R2 Deanthebean

30) Babamots: Build B2 Bajor

31) deanthebean: Move B1 Deanthebean A1
	Babamots: I just looked at your profile page and saw that lots of games are listed as "Recently completed." I think that means that you don't look at your own profile page often, is that correct? I refresh my profile page to see which games I need to move in. Do you just use the links from emails?
	deanthebean: I don't think so. I have email notifications turned off. Is there some way to clear the "recently completed games" list?

32) Babamots: Discover B2 Bajor G3 Zakdorn
	Draw5PlayAll: You just go to the game and if it is finished it is removed from the list.
	Babamots: Oh that's right, you have to look at the game page, not your profile page.

33) deanthebean: Move R1 Deanthebean A1

34) Babamots: Sacrifice Y3 Bajor
Move Y1 Bajor A1
Move Y1 A1 Deanthebean
Move Y2 Iconia Deanthebean
Catastrophe Deanthebean Y

35) deanthebean: Build R2 A1

36) Babamots: Move B1 Babamots Deanthebean

	deanthebean: gg. As far as I can see I'm in checkmate. 
	Babamots: GG!


36791)
Variants: "Unrated"
Started: 2020.7.23, Ended: 2020.7.25
Participants: Babamots (S), Layana (N)
Winner: Layana

1) Layana: Homeworld B2 Y1 G3
	Layana: You can have only one star in your homeworld by putting in a - instead of the second star. 

2) Babamots: Homeworld B2 - G3 *
	Babamots: Really? I'm gonna try it.

3) Layana: Build G1 Layana
	Babamots: Cool! I learned something new today!

4) Babamots: Build G1 Babamots
	Layana: Glad I could help ;) 

5) Layana: Trade G1 Y1 Layana

6) Babamots: Trade G1 Y1 Babamots

7) Layana: Build Y2 Layana

8) Babamots: Build Y2 Babamots

9) Layana: Discover Y1 Layana G3 Nausicaa

10) Babamots: Trade Y1 R1 Babamots
	Babamots: Looks like you're enjoying using Star Trek world names as well.

11) Layana: Build G1 Layana

12) Babamots: Build Y1 Babamots

13) Layana: Trade G1 R1 Layana

14) Babamots: Discover Y1 Babamots G1 Orion
	Layana: I used to love star trek, but I'm not stoked on the new stuff

15) Layana: Build G1 Layana

16) Babamots: Build G1 Babamots
	Babamots: The new stuff isn't really in the spirit of Star Trek. I'm all about TNG.

17) Layana: Trade G1 B1 Layana
	Layana: I loved TNG, too, and really enjoyed DS9. 

18) Babamots: Trade G1 B1 Babamots
	Babamots: My wife and I watched all of DS9 together and now we're working on TNG. She likes DS9 better overall, but I hope she would agree that many individual TNG episodes are better than all but a few DS9.

19) Layana: Discover Y2 Layana R3 Trill
	Layana: I think that's a fact. There are so many brilliant TNG episodes. It's the metaplot that makes DS9 great (starting at season 3).
	Layana: I think that's a fact. There are so many brilliant TNG episodes. It's the metaplot that makes DS9 great (starting at season 3).

20) Babamots: Build G1 Babamots

21) Layana: Move B1 Layana Trill
	Babamots: Agreed. We just watched "The Defector" which is one of my favorites. It's a lot like "Duet," which is my absolute favorite from DS9.

22) Babamots: Build R1 Babamots

23) Layana: Build R2 Layana
	Layana: Sadly there is not much room for discussion if we just agree on things. ;) 
	Layana: Do you like Dr. Who? 
	Babamots: I've seen the first three seasons of the 2005 reboot. There were a handful of episodes that I loved, but they were mostly just OK.

24) Babamots: Discover R1 Babamots B1 Bolarus

25) Layana: Build G1 Layana

26) Babamots: Build R2 Babamots

27) Layana: Move G1 Layana Trill

28) Babamots: Move R2 Babamots Trill

29) Layana: Attack R2 Trill

30) Babamots: Sacrifice Y2 Babamots
Move R1 Babamots Trill
Move R1 Bolarus Trill
Catastrophe Trill R

31) Layana: Build Y2 Nausicaa

32) Babamots: Trade G1 R1 Babamots

33) Layana: Trade R1 B1 Layana

34) Babamots: Build Y2 Orion

35) Layana: Move B1 Layana Nausicaa

36) Babamots: Move Y1 Orion Babamots

37) Layana: Build B1 Nausicaa

38) Babamots: Move B1 Babamots Orion

39) Layana: Discover B1 Nausicaa G1 Wolf359

40) Babamots: Sacrifice G3 Babamots
Build Y2 Orion
Build Y3 Babamots
Build B2 Orion
	Babamots: I don't like where this is going.
	Layana: I need to think about this. But I like that you don't like it. 

41) Layana: Build B3 Wolf359

42) Babamots: Sacrifice Y2 Orion
Move Y1 Babamots Nausicaa
Move Y2 Orion Nausicaa
Catastrophe Nausicaa Y

43) Layana: Trade B3 Y3 Wolf359

44) Babamots: Build B3 Orion

45) Layana: Build B3 Wolf359

46) Babamots: Sacrifice Y3 Babamots
Move B1 Orion Nausicaa
Move B2 Orion Nausicaa
Move B3 Orion Nausicaa
Catastrophe Nausicaa B
	Babamots: I'm doing my best death throes.
	Babamots: But they won't last much longer.
	Layana: It's amazing how hard it is to kill someone, though

47) Layana: Move B3 Wolf359 Babamots

48) Babamots: Trade R1 G1 Babamots

49) Layana: Sacrifice R2 Layana
Attack G1 Babamots
Pass
	Layana: Another handycap mentioned in the rulebook is for the stronger player to pass on turn 2. Maybe that is less drastic? 

	Babamots: Yes, missing a turn is a much smaller handicap than missing a star. I could go for that.


36795)
Variants: "Unrated"
Started: 2020.7.25, Ended: 2020.7.26
Participants: Abraxas (S), Layana (N)
Winner: Layana

1) Layana: Homeworld B2 - G3 *

2) Abraxas: Homeworld R3 B2 G3

3) Layana: Build G1 Layana

4) Abraxas: Build G1 Abraxas

5) Layana: Trade G1 Y1 Layana

6) Abraxas: Trade G1 Y1 Abraxas

7) Layana: Build G1 Layana

8) Abraxas: Build G1 Abraxas

9) Layana: Trade G1 B1 Layana

10) Abraxas: Build G1 Abraxas

11) Layana: Build B1 Layana

12) Abraxas: Trade G1 R1 Abraxas

13) Layana: Build G1 Layana

14) Abraxas: Discover R1 Abraxas R1 Uria

15) Layana: Trade B1 R1 Layana

16) Abraxas: Trade G1 B1 Abraxas

17) Layana: Build G1 Layana

18) Abraxas: Build G1 Abraxas

19) Layana: Build R2 Layana

20) Abraxas: Build G2 Abraxas

21) Layana: Trade R2 Y2 Layana

22) Abraxas: Trade G2 Y2 Abraxas

23) Layana: Discover B1 Layana G3 Yinsh

24) Abraxas: Build G2 Abraxas

25) Layana: Sacrifice Y2 Layana
Move G1 Layana Uria
Move G1 Uria Abraxas
Catastrophe Abraxas G



36796)
Variants: "Unrated"
Started: 2020.7.25, Ended: 2020.8.12
Participants: Babamots (S), Layana (N)
Winner: Babamots

1) Layana: Homeworld R2 B1 G3

2) Babamots: Pass
	Layana: Good luck and have fun this time around :) 

3) Layana: Build G1 Layana
	Babamots: OK, here's your 1-turn head start. GLHF!
	Babamots: Weirdly, I think SDG will let a player pass as much as they want. You could never build a homeworld and never lose.

4) Babamots: Homeworld G3 R1 B3

5) Layana: Trade G1 B1 Layana

6) Babamots: Build B1 Babamots

7) Layana: Build B2 Layana

8) Babamots: Build B2 Babamots

9) Layana: Trade B2 Y2 Layana

10) Babamots: Trade B1 Y1 Babamots

11) Layana: Discover B1 Layana G3 Romulus

12) Babamots: Build Y1 Babamots

13) Layana: Build G1 Layana

14) Babamots: Trade B2 G2 Babamots

15) Layana: Build G1 Layana

16) Babamots: Trade Y1 R1 Babamots

17) Layana: Trade G1 R1 Layana

18) Babamots: Build R2 Babamots

19) Layana: Build R2 Layana

20) Babamots: Discover R1 Babamots G2 Risa

21) Layana: Move R2 Layana Romulus

22) Babamots: Build R3 Risa

23) Layana: Build R3 Romulus

24) Babamots: Trade R2 Y2 Babamots

25) Layana: Trade R2 Y2 Romulus

26) Babamots: Move Y1 Babamots Risa

27) Layana: Build R2 Romulus

28) Babamots: Discover R1 Risa B3 Betazed

29) Layana: Trade R2 G2 Romulus

30) Babamots: Build R2 Risa

31) Layana: Discover R1 Layana R3 Remus

32) Babamots: Build Y1 Risa

33) Layana: Build R2 Romulus

34) Babamots: Move R2 Risa Remus

35) Layana: Discover G1 Layana Y3 Rigel

36) Babamots: Discover Y1 Risa B3 Andoria

37) Layana: Discover G2 Romulus B2 Rator

38) Babamots: Attack R1 Remus

39) Layana: Build G1 Rator

40) Babamots: Sacrifice G2 Babamots
Build Y1 Risa
Build Y3 Andoria

41) Layana: Build Y3 Layana

42) Babamots: Trade Y1 B1 Andoria

43) Layana: Sacrifice Y2 Layana
Move R2 Romulus Risa
Move R2 Risa Remus
Catastrophe Remus Red

44) Babamots: Build B2 Babamots

45) Layana: Sacrifice G3 Layana
Build G1 Rator
Build G2 Rigel
Build G3 Rigel

46) Babamots: Build R1 Risa

47) Layana: Sacrifice G3 Rigel
Build G3 Rigel
Build R2 Romulus
Build B2 Romulus

48) Babamots: Move R1 Risa Andoria

49) Layana: Move R2 Romulus Rator

50) Babamots: Move Y3 Andoria Rator

51) Layana: Sacrifice Y2 Romulus
Move G2 Rator Babamots
Move G1 Rator Babamots

52) Babamots: Sacrifice R3 Risa
Attack R2 Rator
Attack G1 Rator
Attack G2 Babamots

53) Layana: Sacrifice G1 Rigel
Build G1 Babamots
Catastrophe Babamots Green

54) Babamots: Build R2 Rator

55) Layana: Trade B2 Y2 Romulus

56) Babamots: Sacrifice G1 Rator
Build R3 Andoria

57) Layana: Build R3 Romulus

58) Babamots: Move Y1 Risa Andoria

59) Layana: Build B2 Romulus

60) Babamots: Trade B3 G3 Babamots

61) Layana: Move R3 Romulus Risa

62) Babamots: Build B3 Babamots
	Layana: I think this is basically over, since I can't get enough red fast enough by comparison. 

63) Layana: Attack Y1 Risa

64) Babamots: Discover B3 Babamots Y2 Aldea

65) Layana: Move R3 Risa Betazed

66) Babamots: Sacrifice Y2 Babamots
Move R1 Betazed Layana
Move R3 Andoria Layana

	Babamots: GG! You fought well!

For what it's worth, I believe that, in an over-the-table game, this position would have ended in a draw:

you attack my r3
I move my r1 to your home for the catastrophe
you build an r1
I move my b3 to your home
you sacrifice your y3 (abandoning your home) to move three reds to my home for a catastrophe
	Layana: Thanks for the game. I'll go over the replay to maybe see where I went wrong. A few hints would be appreciated. I'll start a new one in the meantime. 
	Babamots: You played a solid game, and it's hard to blame any particular move. I think the biggest problem was putting too many ships in Rator, which let me invade with a large, which prompted you to catastrophe my green star before you had everything in place to get my second star as well.


36800)
Variants: "Unrated"
Started: 2020.7.26, Ended: 2020.8.3
Participants: Abraxas (S), Layana (N)
Winner: Layana

1) Layana: Homeworld B2 - G3 *

2) Abraxas: Homeworld R2 B1 G3

3) Layana: Build G1 Layana

4) Abraxas: Build G1 Abraxas

5) Layana: Trade G1 Y1 Layana

6) Abraxas: Build G1 Abraxas

7) Layana: Build Y1 Layana

8) Abraxas: Trade G1 R1 Abraxas

9) Layana: Build Y1 Layana

10) Abraxas: Build G1 Abraxas

11) Layana: Discover Y1 Layana G1 Andoria

12) Abraxas: Trade G1 B1 Abraxas

13) Layana: Build Y2 Andoria

14) Abraxas: Trade G3 Y3 Abraxas

15) Layana: Trade Y1 B1 Layana

16) Abraxas: Build R1 Abraxas

17) Layana: Trade Y1 R1 Layana

18) Abraxas: Discover R1 Abraxas B3 Myst

19) Layana: Build R2 Layana

20) Abraxas: Build Y1 Abraxas

21) Layana: Trade R1 Y1 Layana

22) Abraxas: Move Y1 Abraxas Myst

23) Layana: Move R2 Layana Myst

24) Abraxas: Move R1 Myst Layana

25) Layana: Build Y2 Layana

26) Abraxas: Build Y2 Abraxas

27) Layana: Discover Y1 Layana G3 Riven

28) Abraxas: Move B1 Abraxas Riven

29) Layana: Discover B1 Layana G3 Edanna

30) Abraxas: Build B2 Riven

31) Layana: Build Y3 Riven

32) Abraxas: Build G1 Abraxas

33) Layana: Build Y3 Layana

34) Abraxas: Move G1 Abraxas Edanna

35) Layana: Sacrifice R2 Myst
Attack B2 Riven
Attack B1 Riven

36) Abraxas: Build R1 Abraxas

37) Layana: Trade Y2 R2 Layana

38) Abraxas: Move R1 Abraxas Edanna

39) Layana: Move R2 Layana Edanna

40) Abraxas: Move Y1 Myst Andoria

41) Layana: Attack R1 Edanna

42) Abraxas: Sacrifice G1 Edanna
Build Y2 Andoria
Catastrophe Andoria Y

43) Layana: Sacrifice Y3 Layana
Move R1 Edanna Abraxas
Move R2 Edanna Abraxas
Catastrophe Abraxas R
Move B1 Edanna Abraxas

44) Abraxas: Pass

45) Layana: Sacrifice Y3 Riven
Move B1 Riven Abraxas
Move B2 Riven Abraxas
Catastrophe Abraxas B
Pass



36735)
Started: 2020.7.28, Ended: 2020.9.30
Participants: eliscinsky (S), amoscai (N)
Winner: eliscinsky

1) amoscai: Homeworld Y1 B2 G3
	eliscinsky: Greetings amoscai, GL & HF!

2) eliscinsky: Homeworld R1 B3 G3
	amoscai: Hi there! Amos will do (: you too.
	amoscai: thanks for the ping in my other game.
	eliscinsky: Amos, NP I saw that you said you were not getting notifications.  That happened to me for a period of time.  No idea why they stopped, and then restarted.

3) amoscai: Build G1 Amoscai

4) eliscinsky: Build G1 Eliscinsky

5) amoscai: Trade G1 Y1 Amoscai

6) eliscinsky: T G1 Y1 Eliscinsky

7) amoscai: Build Y2 Amoscai

8) eliscinsky: Build Y2 Eliscinsky

9) amoscai: Trade Y2 G2 Amoscai

10) eliscinsky: Discover Y2 Eliscinsky G2 Talos

11) amoscai: Build Y2 Amoscai

12) eliscinsky: B Y2 Eliscinsky

13) amoscai: Trade Y2 R2 Amoscai

14) eliscinsky: Build G1 Eliscinsky

15) amoscai: Discover G2 Amoscai Y3 Skylar

16) eliscinsky: T Y2 R2 Eliscinsky

17) amoscai: Build G1 Skylar

18) eliscinsky: B Y2 Eliscinsky

19) amoscai: Build R1 Amoscai

20) eliscinsky: S G3 Eliscinsky
B Y2 Talos
B Y3 Talos
B Y3 Eliscinsky

21) amoscai: Move Y1 Amoscai Skylar

22) eliscinsky: Sacrifice Y2 Eliscinsky
Move Y2 Talos Skylar
Move Y2 Talos Skylar
Catastrophe Skylar Y

23) amoscai: Build G1 Amoscai

24) eliscinsky: Build Y1 Talos

25) amoscai: Trade R2 Y2 Amoscai

26) eliscinsky: Build Y2 Talos

27) amoscai: Discover Y2 Amoscai Y3 Cylon

28) eliscinsky: M Y2 Talos Cylon

29) amoscai: Build G1 Amoscai

30) eliscinsky: Sacrifice Y3 Talos
Move G1 Eliscinsky Talos
Move G1 Talos Cylon
Move G1 Cylon Amoscai
Catastrophe Amoscai G

31) amoscai: Move Y2 Cylon Amoscai
	eliscinsky: Red Alert
	amoscai: ouch

32) eliscinsky: D Y2 Cylon G2 Earth

33) amoscai: Trade Y2 G2 Amoscai

34) eliscinsky: T Y3 G3 Eliscinsky

35) amoscai: Build G1 Amoscai

36) eliscinsky: B G1 Eliscinsky

37) amoscai: Discover G1 Amoscai Y3 Mars

38) eliscinsky: B Y2 Eliscinsky

39) amoscai: Build G1 Mars

40) eliscinsky: S G3 Eliscinsky
B Y2 Talos
B Y3 Earth
B G3 Eliscinsky

41) amoscai: Build G3 Amoscai

42) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build G3 Eliscinsky
Build Y3 Talos

43) amoscai: Sacrifice G3 Amoscai
Build G3 Amoscai
Build R1 Amoscai
Build R2 Amoscai

44) eliscinsky: Move Y2 Talos Mars

45) amoscai: Discover G1 Mars B1 Neptune

46) eliscinsky: Trade G1 B1 Eliscinsky

47) amoscai: Trade R1 B1 Amoscai

48) eliscinsky: Move Y2 Earth Neptune
	eliscinsky: Amos, what's up?  Are you still in the middle of a trial? I'll wait a couple days.  But I don't hear from you I'll end the game.
	amoscai: hey sorry about that. yes, it's cleared up. I'll move quickly from here on out. sorry about that.

49) amoscai: Move G1 Mars Talos
	eliscinsky: NP, didn't know if yo could continue or not. :)

50) eliscinsky: B R1 Eliscinsky
	amoscai: just waiting for you to kill me really. lol.

51) amoscai: Sacrifice G1 Neptune
Build G1 Talos

52) eliscinsky: S R2 Eliscinsky
A G1 Talos
A G1 Talos

53) amoscai: Discover G2 Amoscai R3 Alert

54) eliscinsky: S G3 Eliscinsky
B G1 Eliscinsky
B G3 Eliscinsky
B B2 Eliscinsky

55) amoscai: Move R1 Amoscai Mars

56) eliscinsky: B R2 Eliscinsky

57) amoscai: Build R2 Amoscai

58) eliscinsky: S R1 Eliscinsky
A R1 Mars

59) amoscai: Move R2 Amoscai Mars

60) eliscinsky: Attack R2 Mars

61) amoscai: Build R1 Amoscai

62) eliscinsky: Move Y3 Talos Alert

63) amoscai: Sacrifice G2 Alert
Build G2 Amoscai
Build R3 Amoscai

64) eliscinsky: M R1 Mars Amoscai
C Amoscai R

65) amoscai: Trade B1 R1 Amoscai

66) eliscinsky: Move Y3 Earth Alert

67) amoscai: Move G2 Amoscai Mars

68) eliscinsky: S Y2 Neptune
M Y3 Alert Amoscai
M Y3 Alert Amoscai

69) amoscai: Sacrifice R1 Amoscai
Attack Y3 Amoscai

70) eliscinsky: Sacrifice R2 Mars
Attack Y3 Amoscai
Attack G3 Amoscai

	eliscinsky: TY, GG. I take a rematch anytime. :)


36802)
Started: 2020.7.28, Ended: 2020.10.15
Participants: amoscai (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld B3 R1 G3
	Babamots: Sorry I gave up on you in that last game! Newish players seem to wander off and not come back pretty frequently.

2) amoscai: Homeworld Y2 B3 G3

3) Babamots: Build G1 Babamots
	amoscai: no issues whatsoever. if you didn't do that, I would have forgotten about SDG and my Homeworld games.

4) amoscai: Build G1 Amoscai

5) Babamots: Trade G1 R1 Babamots

6) amoscai: Trade G1 R1 Amoscai

7) Babamots: Build R2 Babamots

8) amoscai: Build R2 Amoscai

9) Babamots: Trade R1 Y1 Babamots

10) amoscai: Trade R2 Y2 Amoscai

11) Babamots: Build Y1 Babamots

12) amoscai: Build G1 Amoscai

13) Babamots: Discover Y1 Babamots Y2 Iconia

14) amoscai: Discover G1 Amoscai B1 Linked

15) Babamots: Sacrifice G3 Babamots
Build Y1 Iconia
Build Y3 Babamots
Build Y3 Babamots

16) amoscai: Build R1 Amoscai

17) Babamots: Discover Y1 Iconia G3 Bajor

18) amoscai: Move Y2 Amoscai Linked

19) Babamots: Build Y3 Bajor

20) amoscai: Build R2 Amoscai

21) Babamots: Move Y3 Bajor Linked

22) amoscai: Move Y2 Linked Iconia

23) Babamots: Trade Y3 G3 Babamots

24) amoscai: Sacrifice R1 Amoscai
Attack Y1 Iconia

25) Babamots: Build Y3 Bajor

26) amoscai: Move Y1 Iconia Babamots

27) Babamots: Discover Y1 Babamots G2 Betazed

28) amoscai: Move Y1 Babamots Betazed

29) Babamots: Discover Y1 Betazed R1 Cardassia

30) amoscai: Build G1 Amoscai
	Babamots: Just trying to get your attention :-)

31) Babamots: Build G1 Babamots
	amoscai: thank you. I'm in the middle of a trial so been really busy.
	Babamots: OK, I'll just cancel the freeze for now. I hope the judge lets you off easy. :-D

32) amoscai: Move Y2 Iconia Cardassia

33) Babamots: Move R2 Babamots Betazed
	amoscai: I have like a few days break cos of the weekend, etc. It's going ok so far! fingers crossed.

34) amoscai: Attack Y1 Cardassia

35) Babamots: Attack Y1 Betazed

36) amoscai: Move Y1 Cardassia Bajor

37) Babamots: Move Y3 Bajor Cardassia

38) amoscai: Sacrifice G1 Linked
Build Y2 Cardassia

39) Babamots: Sacrifice R2 Betazed
Attack Y1 Bajor
Attack Y2 Cardassia

40) amoscai: Attack Y2 Cardassia

41) Babamots: Trade G3 R3 Babamots

42) amoscai: Move Y2 Cardassia Betazed

43) Babamots: Attack Y2 Cardassia

44) amoscai: Sacrifice R1 Amoscai
Attack Y1 Betazed

45) Babamots: Build G1 Babamots

46) amoscai: Discover G1 Amoscai R1 Doom

47) Babamots: Trade G1 B1 Babamots

48) amoscai: Build G1 Doom

49) Babamots: Build R2 Babamots

50) amoscai: Build R2 Amoscai

51) Babamots: Move R3 Babamots Betazed

52) amoscai: Move Y2 Betazed Bajor

53) Babamots: Build R3 Betazed

54) amoscai: Sacrifice R2 Amoscai
Attack Y1 Bajor
Attack Y1 Bajor

55) Babamots: Move Y2 Cardassia Betazed

56) amoscai: Move Y2 Bajor Betazed

57) Babamots: Attack Y2 Betazed

58) amoscai: Move Y1 Bajor Betazed
Catastrophe Betazed Yellow

59) Babamots: Build Y1 Babamots

60) amoscai: Build G2 Amoscai

61) Babamots: Move Y1 Babamots Betazed

62) amoscai: Build Y1 Bajor

63) Babamots: Build Y2 Babamots

64) amoscai: Trade G2 Y2 Amoscai

65) Babamots: Move B1 Babamots Betazed

66) amoscai: Build R2 Amoscai

67) Babamots: Build R3 Babamots

68) amoscai: Move R2 Amoscai Doom

69) Babamots: Discover R3 Babamots B2 Bolarus

70) amoscai: Build G2 Amoscai

71) Babamots: Build B1 Betazed

72) amoscai: Trade G2 B2 Amoscai

73) Babamots: Move B1 Betazed Cardassia

74) amoscai: Move B2 Amoscai Doom

75) Babamots: Move R3 Betazed Doom

76) amoscai: Build G2 Doom

77) Babamots: Move R3 Betazed Linked

78) amoscai: Sacrifice Y1 Bajor
Move G1 Doom Betazed

79) Babamots: Sacrifice Y3 Linked
Move R3 Linked Amoscai
Move R3 Doom Amoscai
Move Y3 Cardassia Amoscai

80) amoscai: Sacrifice R2 Amoscai
Attack R3 Amoscai
Attack R3 Amoscai

81) Babamots: Sacrifice R3 Bolarus
Attack R3 Amoscai
Attack R3 Amoscai
Attack G3 Amoscai
	amoscai: gg. I was up against it pretty much the whole way.

	Babamots: This was the longest game I can remember playing, and I'm pretty sure this is the first time I've performed a three-large direct assault. GG!
	amoscai: thank you for being patient with my slow play.
	Babamots: Oh, I didn't mean to suggest that you're playing too slowly. I meant that, as far as I can remember, I've never played a game with so many moves (41 each right now).
	Babamots: GG!


36763)
Variants: "Unrated, Hard time"
Started: 2020.7.31, Ended: 2020.8.3
Participants: wil (S), Layana (N)
Winner: Layana

1) Layana: Homeworld R3 B1 G3

	wil: Oops


36817)
Variants: "Unrated"
Started: 2020.7.31, Ended: 2020.7.31
Participants: mirror33 (S), bootleby (N)
Winner: mirror33

1) bootleby: Homeworld B1 Y3 G3
	bootleby: sup

2) mirror33: Homeworld B2 R1 G3

3) bootleby: Build G1 Bootleby

4) mirror33: Build G1 Mirror33

5) bootleby: Trade G1 Y1 Bootleby

6) mirror33: Build G1 Mirror33

7) bootleby: Discover Y1 Bootleby G2 Sza

8) mirror33: Trade G1 Y1 Mirror33

9) bootleby: Build G1 Bootleby

10) mirror33: Trade G1 R1 Mirror33

11) bootleby: Build G1 Bootleby

12) mirror33: Build G1 Mirror33

13) bootleby: Trade G1 B1 Bootleby

14) mirror33: Discover G1 Mirror33 Y3 Sauce

15) bootleby: Move B1 Bootleby Sza

16) mirror33: Build G1 Sauce

17) bootleby: Build G2 Bootleby

18) mirror33: Build G2 Sauce

19) bootleby: Discover B1 Sza G3 Tryinstuff

20) mirror33: Trade G3 Y3 Mirror33

21) bootleby: Build B1 Tryinstuff

22) mirror33: Sacrifice Y3 Mirror33
Discover G2 Sauce Y2 Why
Move G2 Why Bootleby
Pass
Catastrophe Bootleby G



36826)
Variants: "Unrated, Hard time"
Started: 2020.8.2, Ended: 2020.8.24
Participants: Xaevith (S), Babamots (N)
Winner: Babamots

1) Babamots: Homeworld G3 R1 B3

2) Xaevith: Homeworld B2 R1 G3
	Babamots: How's it going? And how much advice would you like as we play?
	Xaevith: So like I'm familiar with the colors and how everything is connected I guess it's more so just mid-late game and overall strategy. I guess if you don't mind pointing out any really stupid moves I make and trying to give me some pointers where you see I might be "making mistakes" so to speak?

3) Babamots: Build B1 Babamots
	Xaevith: Also sorry it's going pretty good so far, thank you for asking! I just taught my wife how to play a couple new games I learned today. Just relaxing with some tea now.
	Xaevith: I hope your evening (or day depending on when you get back to this) is treating you well. :)

4) Xaevith: Build G1 Xaevith
	Babamots: I try to warn new players about the bad moves they should avoid, but historically, I've been bad at predicting when those warnings are needed (just when I think their move is totally obvious, they doom themselves). I'm much better at telling people why their moves are bad they make them. :-)

5) Babamots: Trade B1 R1 Babamots
	Xaevith: No worries, it might be hard to totally predict someone's next move based on what was put down. It's all Gouda, I think what is really lacking for me is just talking the meta.

Why do you start with red? Normally I try to go for a combo of YBG right away but I see people starting with red a lot... Is it somehow better to start with red vs yellow?
	Babamots: Red vs yellow homestars is the first topic in my tactics guide:

https://jpeterbaker.github.io/homeworlds/site/tactics.html

There are good arguments for red and yellow, but I generally like red best. Trydnt plays more than me and wins more than me, and he prefers yellow.

6) Xaevith: Trade G3 R3 Xaevith
	Babamots: You are currently experiencing the problem I mention in the last paragraph of the "Small star problem" section. Since you picked the same small star color as me, I'm about to get a medium ship extra quickly. You'll probably want to trade your g3 for r3 before too long so you don't get completely frozen out of red.
	Xaevith: ouch what a painful situation i've already placed myself in early into this game ahahahahaha I guess I should have anticipated a red approach my brain always gravitates towards yellow being important right away and I figured you were probably going to swap for that next overlooking that if you went with red I leave myself in that situation now

losing the big green is unfortunate and having a ship the same colour as my star system only adds to future catastrophe situations (which are extra unfortunate if it's my 3 piece) but I'm gonna have to see where it goes from here! 

thank you for pointing that out I greatly appreciated the info
	Xaevith: also wow your guide is really comprehensive, this is probably the best in depth site i've read about homeworlds so far!
	Xaevith: also wow your guide is really comprehensive, this is probably the best in depth site i've read about homeworlds so far!

7) Babamots: Build R2 Babamots

8) Xaevith: Build R2 Xaevith

9) Babamots: Trade R2 Y2 Babamots

10) Xaevith: Trade R2 Y2 Xaevith

11) Babamots: Build R2 Babamots

12) Xaevith: Build R2 Xaevith
	Babamots: Thanks! I thought it was past time that someone put together some strategy advice that's more advanced than what you find in the rulebook.

13) Babamots: Discover R2 Babamots G2 Risa

14) Xaevith: Discover R2 Xaevith G3 Emerald

15) Babamots: Build Y1 Babamots

16) Xaevith: Build Y1 Xaevith

17) Babamots: Build B1 Babamots

18) Xaevith: Build G1 Xaevith

19) Babamots: Move Y1 Babamots Risa

20) Xaevith: Trade G1 B1 Xaevith

21) Babamots: Trade B1 G1 Babamots
	Xaevith: Figure that was the best move before I get locked out of building blue ships? It's not like you need green very much since almost every star is green in our universe...
	Babamots: It's definitely good to get a blue ship at some point to make sure I don't run away with all of them.

22) Xaevith: Build B1 Xaevith

23) Babamots: Build B1 Babamots

24) Xaevith: Discover B1 Xaevith Y3 Topaz

25) Babamots: Discover B1 Babamots Y2 Aldea

26) Xaevith: Trade R3 G3 Xaevith

27) Babamots: Build B2 Babamots

28) Xaevith: Move G1 Xaevith Topaz

29) Babamots: Discover B2 Babamots G2 Trill

30) Xaevith: Discover B1 Xaevith Y3 Citrine

31) Babamots: Build Y1 Babamots

32) Xaevith: Move Y1 Xaevith Emerald

33) Babamots: Build Y3 Risa

34) Xaevith: Discover B1 Topaz G2 Jade

35) Babamots: Move R2 Risa Topaz

36) Xaevith: Discover G1 Topaz B2 Azurite

37) Babamots: Build B3 Babamots
	Babamots: I think your better move was to cash in on your investment. You've got a lovely g1 in a y3 system that you could sacrifice to build a y3 ship.
	Babamots: You may still be able to undo your other move if you want to.
	Xaevith: i think the reason it was by itself though was because I moved the blue ship and with it being there now if i sacrifice that piece the blue ship will still be there preventing me from taking the y3 :(
	Xaevith: Unless there's something else I can do here? But I was trying to move for that now since yellow has been exhausted. >_<
	Babamots: Oh, you're right. I thought the b1 had come from somewhere else. Sorry about that.

38) Xaevith: Build B3 Jade

39) Babamots: Move B3 Babamots Aldea

40) Xaevith: Build G1 Xaevith

41) Babamots: Move Y3 Risa Emerald

42) Xaevith: Move R2 Emerald Jade

43) Babamots: Move R1 Babamots Risa

44) Xaevith: Sacrifice Y1 Emerald
Move B3 Jade Topaz

45) Babamots: Move R2 Topaz Azurite

46) Xaevith: Sacrifice G3 Xaevith
Build G3 Xaevith
Build Y1 Xaevith
Build R2 Jade

47) Babamots: Attack G1 Azurite

48) Xaevith: Sacrifice Y1 Xaevith
Move R2 Jade Topaz

49) Babamots: Build R3 Azurite

50) Xaevith: Sacrifice G3 Xaevith
Build G3 Xaevith
Build R3 Jade
Build R3 Topaz

51) Babamots: Move R1 Risa Emerald

52) Xaevith: Build Y1 Xaevith

53) Babamots: Move B3 Aldea Citrine

54) Xaevith: Move R3 Topaz Risa

55) Babamots: Move Y1 Risa Emerald

56) Xaevith: Move Y1 Xaevith Topaz
	Xaevith: wow a full universe... i don't think I can remember the last time I played a game where every piece was on the board
	Xaevith: and yet I can't help but have a bit of that impending sense of doom hanging over my neck ahahahaha

57) Babamots: Move Y1 Emerald Azurite
	Babamots: I do think you're in some trouble here.

58) Xaevith: Move Y1 Topaz Jade

59) Babamots: Move R2 Azurite Citrine

60) Xaevith: Sacrifice Y2 Xaevith
Move R3 Jade Babamots
Move R2 Jade Babamots

61) Babamots: Attack R3 Babamots

62) Xaevith: Sacrifice Y1 Jade
Move R3 Risa Babamots
Catastrophe Babamots Red

63) Babamots: Sacrifice Y3 Emerald
Move G1 Babamots Xaevith
Move G1 Azurite Emerald
Move G1 Emerald Xaevith
Catastrophe Xaevith G

	Xaevith: Good game :)
	Babamots: GG :-)


36836)
Variants: "Unrated"
Started: 2020.8.4, Ended: 2020.8.29
Participants: Babamots (S), eliscinsky (N)
Winner: Babamots

1) eliscinsky: H Y1 B2 G3

2) Babamots: Homeworld R3 B2 G3
	eliscinsky: So I thought... maybe after beating the Emperor you might like a nice relaxing game. ;)
	Babamots: Sounds like you're trying to get me to underestimate you. :-)

3) eliscinsky: B G1 Eliscinsky
	eliscinsky: Hadn't really thought of that, but if it works I'll take what I can get. BTW congrats again on your win against Andy.

4) Babamots: Build G1 Babamots

5) eliscinsky: T G1 Y1 Eliscinsky
	Babamots: Thanks! Playing Andy was the top item on my bucket list, so I'm very pleased with myself.

6) Babamots: Trade G1 Y1 Babamots
	eliscinsky: I figure I need to beat a few top players on SDG, and in your tournaments, before I even think of taking Andy on.  However, it is something I aspire to do some day.

7) eliscinsky: Build Y2 Eliscinsky

8) Babamots: Build Y2 Babamots

9) eliscinsky: D Y1 Eliscinsky G3 Talos
	Babamots: So have you got on the yellow homestar train?

10) Babamots: Discover Y1 Babamots G1 Bajor
	eliscinsky: Not sure yet. Mostly just experimenting. 

11) eliscinsky: B G1 Eliscinsky

12) Babamots: Build G1 Babamots

13) eliscinsky: Trade G1 B1 Eliscinsky

14) Babamots: Trade G1 B1 Babamots

15) eliscinsky: Build G1 Eliscinsky

16) Babamots: Build G1 Babamots
	eliscinsky: Hey, I just realized ... You're copying me. So I must be doing something right!  LOL

17) eliscinsky: T G1 R1 Eliscinsky
	Babamots: Or we're both doing something wrong.

18) Babamots: Trade G1 R1 Babamots

19) eliscinsky: B G1 Eliscinsky

20) Babamots: Move B1 Babamots Bajor

21) eliscinsky: Move R1 Eliscinsky Talos

22) Babamots: Move R1 Babamots Bajor

23) eliscinsky: Move B1 Eliscinsky Talos

24) Babamots: Build G1 Babamots

25) eliscinsky: Build G2 Eliscinsky
	eliscinsky: And now [somehow] I'm following you :/

26) Babamots: Build G2 Babamots

27) eliscinsky: T G2 R2 Eliscinsky

28) Babamots: Move G2 Babamots Bajor

29) eliscinsky: Move G1 Eliscinsky Talos

30) Babamots: Discover G1 Babamots B1 Bolarus

31) eliscinsky: B G2 Eliscinsky
	eliscinsky: I think I moved badly 2 moves ago.

32) Babamots: Sacrifice G3 Babamots
Build G2 Bolarus
Build Y2 Bajor
Build Y3 Babamots
	Babamots: This was a silly move, just had an impulse to shake things up, but it's not likely to get me ahead.
	eliscinsky: Damn, I had a spectacular comeback!  LOL

33) eliscinsky: M G1 Talos Bajor

34) Babamots: Build G3 Bolarus

35) eliscinsky: S Y2 Eliscinsky
M G2 Eliscinsky Talos
M G2 Talos Bajor
C Bajor G
	eliscinsky: I think this will be a pivotal moment. 
So I better take a while to think this through. 
	Babamots: It's a tricky position. I made my last move with a gut feeling that this is OK for me, but I didn't calculate particularly carefully.

36) Babamots: Move Y2 Babamots Bolarus
	eliscinsky: I think this might get very interesting soon.
	eliscinsky: Oh poo. I saw your killer move, then ignored it for a moment. Back to thinking. 

37) eliscinsky: Build R1 Talos
	eliscinsky: Let's see how this plays out. 

38) Babamots: Trade G2 B2 Bolarus

39) eliscinsky: Trade R1 G1 Talos

40) Babamots: Trade G1 R1 Bolarus

41) eliscinsky: Build B1 Talos

42) Babamots: Discover B2 Bolarus G2 Risa

43) eliscinsky: B B3 Talos

44) Babamots: Build B3 Risa

45) eliscinsky: Discover B3 Talos G1 Orion

46) Babamots: Discover G3 Bolarus B3 Andoria

47) eliscinsky: M B1 Talos Orion

48) Babamots: Move R1 Bolarus Risa
	eliscinsky: I'm very interested to see what you're next move is going to be. 

49) eliscinsky: T B3 Y3 Orion
	eliscinsky: Hmm... not what I thought.  Slow and steady, then.

50) Babamots: Move Y2 Bolarus Risa
	Babamots: I was tempted to try some shenanigans, but I think this is the best for me.

51) eliscinsky: Build B1 Talos
	eliscinsky: Oh, but shenanigans are always so much fun!

52) Babamots: Trade B3 R3 Risa

53) eliscinsky: Build B3 Orion

54) Babamots: Build B3 Risa

55) eliscinsky: T B3 Y3 Orion

56) Babamots: Discover R3 Risa B3 Bolarus
	eliscinsky: Now this feels like a real dance. I'm sure I've missed something.  Hmmm .... but what could it be?
	Babamots: I'm not so sure you really missed anything. It might look like I'm passing up opportunities, but it's not because I've got a grand plan. I'm really just trying to reconfigure my bad positioning.
	eliscinsky: LOL Grand plan!  hahaha I wish.  I'm barely holding the jelly-o mold together.  The toothpicks aren't really helping though. :D

57) eliscinsky: S Y3 Orion
M B1 Talos Risa
M B1 Talos Risa
C Risa B
D G1 Talos B1 Bajor
	eliscinsky: You always seem able to do something I hadn't considered.

Just curious, how many moves out can you / do you think through?  If you don't feel like saying now, maybe at the end of this game. ;)

58) Babamots: Move R1 Risa Andoria

59) eliscinsky: Build B1 Orion

60) Babamots: Build R1 Andoria

61) eliscinsky: M R1 Talos Bajor

62) Babamots: Move Y2 Risa Bajor
	Babamots: Usually, I don't look farther ahead than two of my own turns, as in, "If I do this and he does that, what will my response be?" When I'm evaluating that future position, I do think about where it's likely to lead, but not usually the exact moves.

This is the toughest game I'm in right now, so I'll be slow to make moves. I may want to finish off a couple of my others first so I can concentrate better.
	eliscinsky: Thanks. And thanks for the "toughest game" comment. That really boosts my ego. Can't let it go to my head though. I'm also in 2 other games, one I'm about to win, and 1 with Xaevith like you. And like you I'm trying to teach him. He's also playing will and ty52(?). Anyway take your time. I'd rather play to the end, rather than force a surrender. ;)
	eliscinsky: That is wil & ts52.

63) eliscinsky: B B2 Orion

64) Babamots: Sacrifice R1 Andoria
Attack R1 Bajor

65) eliscinsky: B G1 Bajor

66) Babamots: Attack G1 Bajor
	Babamots: I'm not feeling very good about this one. I think you're gonna get me.
	eliscinsky: Trying to get me to be over confident are ya! ;) I think I'll just take my time and go slow. Besides you're probably just tired from your win against Andy. :)

67) eliscinsky: B Y1 Orion
	Babamots: I feel slightly burned out at the moment. I took on too many SDG challenges a little before I played Andy, and my competitive streak is tiring. I need to figure out how to get my head into the "just for fun" zone with HW.

68) Babamots: Attack G1 Bajor
	eliscinsky: Hmm... I understand. I like to play games and if you want to hit me up for relaxed "just for fun games" anytime I'm up for that. When I was a kid I used to love winning, and hate losing. But now that I'm reaching my sixth decade I just like to play. Win, lose, it doesn't matter. It's all about the play. Don't get me wrong winning is great. But I also like to learn from my losses.

69) eliscinsky: M Y3 Orion Talos

70) Babamots: Build R1 Andoria
	Babamots: Hopefully beating Andy will help me to feel like I don't have to prove myself to anyone anymore. :-)

71) eliscinsky: B Y2 Orion

72) Babamots: Sacrifice G3 Andoria
Build R2 Andoria
Build R2 Bolarus
Build R3 Bajor

73) eliscinsky: M Y1 Talos Orion

74) Babamots: Trade Y3 G3 Babamots

75) eliscinsky: Build G2 Eliscinsky

76) Babamots: Build G2 Babamots

77) eliscinsky: S Y3 Talos
M B1 Orion Babamots
M B1 Orion Babamots
M B2 Orion Babamots
C Babamots B

78) Babamots: Sacrifice G2 Babamots
Build Y2 Bajor
Pass

79) eliscinsky: D Y2 Orion B2 Betazed

80) Babamots: Move Y2 Bajor Babamots

81) eliscinsky: S G2 Eliscinsky
B G2 Eliscinsky
B Y3 Betazed

82) Babamots: Build Y3 Bajor

83) eliscinsky: T Y2 G2 Betazed

84) Babamots: Trade G1 B1 Bajor
	eliscinsky: Interesting. 

85) eliscinsky: B G1 Betazed

86) Babamots: Build B1 Bajor

87) eliscinsky: T G2 B2 Eliscinsky

88) Babamots: Move B1 Bajor Babamots

89) eliscinsky: B G2 Eliscinsky

90) Babamots: Build B3 Babamots

91) eliscinsky: Sacrifice Y3 Betazed
Move Y1 Orion Babamots
Move Y1 Orion Babamots
Move G1 Betazed Babamots

92) Babamots: Sacrifice R3 Bajor
Attack Y1 Babamots
Attack Y1 Babamots
Attack G1 Babamots

	eliscinsky: Well you really do have me pinned down. I concede once again. I don't think this game will go on for more than 3 rounds. In fact I think you could take me in 2. Well played my friend. 
	Babamots: GG! Would you like to help me test my moderator bot on Discord? I shook out a few more bugs and I'd like to try it again.


36811)
Started: 2020.8.4, Ended: 2020.8.15
Participants: yellowturtle (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: H R1 B2 G3

2) yellowturtle: Homeworld R1 B3 G3
	eliscinsky: Hello yellowturtle, GL & HF!

3) eliscinsky: B G1 Eliscinsky
	yellowturtle: Hi!  Thanks, you too~!

4) yellowturtle: Build G1 Yellowturtle

5) eliscinsky: T G1 R1 Eliscinsky

6) yellowturtle: Trade G1 Y1 Yellowturtle
	yellowturtle: Oops, yep, saw that coming as soon as I made my poor star choice, lol

7) eliscinsky: Build G1 Eliscinsky

8) yellowturtle: Build G1 Yellowturtle

9) eliscinsky: T G1 Y1 Eliscinsky

10) yellowturtle: Build Y1 Yellowturtle

11) eliscinsky: D R1 Eliscinsky G3 Talos

12) yellowturtle: Build Y2 Yellowturtle

13) eliscinsky: B Y2 Eliscinsky

14) yellowturtle: Trade Y2 R2 Yellowturtle

15) eliscinsky: Build R2 Talos

16) yellowturtle: Build Y2 Yellowturtle

17) eliscinsky: B G1 Eliscinsky

18) yellowturtle: Discover Y1 Yellowturtle G2 Altair

19) eliscinsky: Sacrifice Y1 Eliscinsky
Move R1 Talos Altair

20) yellowturtle: Move R2 Yellowturtle Altair

21) eliscinsky: Attack Y1 Altair

22) yellowturtle: Attack R1 Altair

23) eliscinsky: Discover G1 Eliscinsky Y3 Sol

24) yellowturtle: Attack Y1 Altair

25) eliscinsky: Build G1 Eliscinsky

26) yellowturtle: Discover G1 Yellowturtle B2 Betelgeuse

27) eliscinsky: Build R2 Talos

28) yellowturtle: Move R1 Altair Sol

29) eliscinsky: Build G2 Sol

30) yellowturtle: Sacrifice G1 Betelgeuse
Build R3 Sol

31) eliscinsky: S Y2 Eliscinsky
D G2 Sol B2 Pluto
M R2 Talos Pluto

32) yellowturtle: Attack G1 Sol

33) eliscinsky: S G2 Pluto
B R3 Pluto
B R3 Talos

34) yellowturtle: Build G1 Sol

35) eliscinsky: T G1 Y1 Eliscinsky

36) yellowturtle: Build Y2 Altair

37) eliscinsky: B Y2 Eliscinsky

38) yellowturtle: Discover Y2 Altair B3 Castor
	eliscinsky: Yikes! I'm feeling so much on the defensive. 

39) eliscinsky: Sacrifice Y2 Eliscinsky
Move R2 Pluto Sol
Move R3 Pluto Sol
Catastrophe Sol R

40) yellowturtle: Build G1 Yellowturtle

41) eliscinsky: Sacrifice Y1 Eliscinsky
Move R3 Talos Altair

42) yellowturtle: Sacrifice G3 Yellowturtle
Build G2 Sol
Build G2 Yellowturtle
Build G3 Yellowturtle

43) eliscinsky: S R2 Talos
A R2 Altair
A Y1 Altair

44) yellowturtle: Move G1 Sol Eliscinsky

45) eliscinsky: Trade G3 Y3 Eliscinsky

46) yellowturtle: Trade G1 Y1 Eliscinsky

47) eliscinsky: A Y1 Eliscinsky

48) yellowturtle: Sacrifice G1 Yellowturtle
Build Y2 Castor

49) eliscinsky: T Y3 R3 Eliscinsky

50) yellowturtle: Discover Y2 Castor G1 Deneb

51) eliscinsky: M R3 Altair Castor

52) yellowturtle: Build Y3 Deneb

53) eliscinsky: A Y2 Castor

54) yellowturtle: Trade Y2 B2 Yellowturtle

55) eliscinsky: Move R3 Castor Deneb

56) yellowturtle: Sacrifice B2 Yellowturtle
Trade G1 R1 Sol
Trade G2 R2 Sol

57) eliscinsky: Sacrifice R2 Altair
Attack Y3 Deneb
Attack Y2 Deneb

58) yellowturtle: Build Y2 Yellowturtle

59) eliscinsky: T R3 G3 Eliscinsky

60) yellowturtle: Sacrifice Y2 Yellowturtle
Move R1 Sol Eliscinsky
Move R2 Sol Eliscinsky

61) eliscinsky: S R3 Deneb
A R2 Eliscinsky
A R1 Eliscinsky
Pass

62) yellowturtle: Trade G2 R2 Yellowturtle

63) eliscinsky: M R1 Eliscinsky Castor

64) yellowturtle: Move R2 Yellowturtle Altair

65) eliscinsky: M Y3 Deneb Altair

66) yellowturtle: Attack Y1 Altair

67) eliscinsky: S R2 Eliscinsky
A R2 Altair
A Y1 Altair

68) yellowturtle: Build G1 Yellowturtle

69) eliscinsky: S G3 Eliscinsky
B Y2 Deneb
B Y3 Castor
B Y3 Eliscinsky

70) yellowturtle: Build G1 Yellowturtle

71) eliscinsky: D Y3 Castor R2 Mars

72) yellowturtle: Discover G1 Yellowturtle B2 Electra

73) eliscinsky: Trade Y2 B2 Castor

74) yellowturtle: Build G2 Electra
	yellowturtle: Ha!  This is fine, everything's fine!

75) eliscinsky: Sacrifice B2 Castor
Trade Y3 G3 Mars
Trade Y3 R3 Altair

76) yellowturtle: Sacrifice G3 Yellowturtle
Build G2 Electra
Build G3 Yellowturtle
Build Y2 Yellowturtle

77) eliscinsky: S Y2 Deneb
M G3 Mars Yellowturtle
M R3 Altair Yellowturtle

78) yellowturtle: Attack R3 Yellowturtle

79) eliscinsky: S R2 Altair
A R3 Yellowturtle
A G3 Yellowturtle

80) yellowturtle: Sacrifice Y2 Yellowturtle
Move G1 Electra Yellowturtle
Catastrophe Yellowturtle G
Move G2 Electra Yellowturtle

81) eliscinsky: A G2 Yellowturtle

82) yellowturtle: Sacrifice G2 Electra
Build Y2 Yellowturtle
Build Y2 Yellowturtle

83) eliscinsky: Move Y1 Altair Yellowturtle
Catastrophe Yellowturtle Y

	yellowturtle: Thanks for playing, it's been fun!
	eliscinsky: Thanks! It was very fun! I truly thought you had me a couple times. Rematch anytime!
	eliscinsky: I find it crazy that "rated games" ALWAYS have the winner go from 1585 up to 1601, & opponent go from 1600 down to 1583.  Very strange.


36840)
Variants: "Unrated"
Started: 2020.8.6, Ended: 2020.8.6
Participants: bootleby (S), mirror33 (N)
Winner: mirror33

1) mirror33: Homeworld B3 R1 G3

2) bootleby: Homeworld Y1 B2 G3

3) mirror33: Build G1 Mirror33

4) bootleby: Build G1 Bootleby

5) mirror33: Trade G1 B1 Mirror33

6) bootleby: Discover G1 Bootleby B3 Euro

7) mirror33: Build G1 Mirror33

8) bootleby: Trade G1 R1 Euro

9) mirror33: Build G1 Mirror33

10) bootleby: Build G1 Bootleby

11) mirror33: Trade G1 Y1 Mirror33

12) bootleby: Build G1 Bootleby

13) mirror33: Build G2 Mirror33

14) bootleby: Move G1 Bootleby Euro

15) mirror33: Discover G2 Mirror33 B2 Everly

16) bootleby: Build G2 Euro

17) mirror33: Sacrifice G3 Mirror33
Build G2 Everly
Build G3 Everly
Build G3 Mirror33

18) bootleby: Trade G1 Y1 Euro

19) mirror33: Trade G2 Y2 Everly

20) bootleby: Move G2 Euro Everly

21) mirror33: Trade G3 R3 Everly

22) bootleby: Sacrifice G3 Bootleby
Build G1 Everly
Build G2 Everly
Build G3 Bootleby
Catastrophe Everly Green

23) mirror33: Sacrifice Y2 Everly
Move R3 Everly Euro
Move R3 Euro Bootleby

24) bootleby: Build G1 Bootleby

25) mirror33: Attack G3 Bootleby



36850)
Started: 2020.8.9, Ended: 2020.8.17
Participants: TrillP (S), Layana (N)
Winner: Layana

1) Layana: Homeworld Y1 B2 G3

2) TrillP: Homeworld R3 B2 G3
	Layana: Viel Spaß! 

3) Layana: Build G1 Layana

4) TrillP: Build G1 Trillp

5) Layana: Trade G1 Y1 Layana

6) TrillP: Build G1 Trillp

7) Layana: Build Y1 Layana

8) TrillP: Build G1 Trillp

9) Layana: Catastrophe Trillp G
Build G1 Layana
	Layana: Do hattest 4 grüne Schiffe in deinem System (und keine anderen), daher konnte ich eine Katastrophe auslösen, um alte grüne Technologie in deinem Heimatsystem zu vernichten. Da du danach keine Schiffe mehr in deinem System hattest, hast du das Spiel verloren. 



36868)
Variants: "Unrated"
Started: 2020.8.12, Ended: 2020.9.18
Participants: Babamots (S), Layana (N)
Winner: Babamots

1) Layana: Homeworld R1 B2 G3

2) Babamots: Pass
	Layana: Can we pay with the handycap that you post your first move once more? 
	Babamots: You're quickly becoming too good for that, but OK.

3) Layana: Build G1 Layana
	Layana: Well, once I win with that, we'll play without handycap :) 

4) Babamots: Homeworld R3 B2 G3

5) Layana: Trade G1 Y1 Layana

6) Babamots: Build G1 Babamots

7) Layana: Build Y1 Layana

8) Babamots: Trade G1 Y1 Babamots

9) Layana: Build Y2 Layana

10) Babamots: Build Y2 Babamots

11) Layana: Trade Y1 R1 Layana

12) Babamots: Trade Y1 R1 Babamots

13) Layana: Build R2 Layana

14) Babamots: Build R2 Babamots

15) Layana: Discover R2 Layana B3 Vienna

16) Babamots: Trade R1 B1 Babamots

17) Layana: Trade Y1 B1 Layana

18) Babamots: Build Y1 Babamots

19) Layana: Build Y1 Layana

20) Babamots: Build G1 Babamots

21) Layana: Build G1 Layana

22) Babamots: Discover Y1 Babamots G1 Risa

23) Layana: Move Y1 Layana Vienna

24) Babamots: Build G2 Babamots

25) Layana: Move G1 Layana Vienna

26) Babamots: Discover G2 Babamots Y1 Aldea

27) Layana: Discover B1 Layana G3 Fredholme

28) Babamots: Build G2 Aldea

29) Layana: Build G2 Layana

30) Babamots: Discover G2 Aldea Y3 Iconia

31) Layana: Sacrifice G3 Layana
Build G3 Layana
Build Y2 Vienna
Build Y3 Layana

32) Babamots: Sacrifice G2 Iconia
Build Y3 Risa
Build Y3 Babamots

33) Layana: Sacrifice Y2 Layana
Move Y1 Vienna Risa
Move Y2 Vienna Risa
Catastrophe Risa Y

34) Babamots: Move B1 Babamots Aldea

35) Layana: Build Y1 Layana

36) Babamots: Discover Y2 Babamots G1 Ferenginar

37) Layana: Discover G2 Layana Y3 Grothendieck

38) Babamots: Sacrifice G3 Babamots
Build G2 Aldea
Build Y1 Ferenginar
Build G3 Babamots

39) Layana: Move Y1 Layana Vienna

40) Babamots: Move R2 Babamots Aldea

41) Layana: Build Y2 Vienna

42) Babamots: Sacrifice G3 Babamots
Build R1 Aldea
Build B1 Aldea
Build G3 Babamots

43) Layana: Build B2 Fredholme

44) Babamots: Discover B1 Aldea Y2 Iconia

45) Layana: Discover G3 Layana B3 Laplace

46) Babamots: Build B3 Aldea

47) Layana: Sacrifice G2 Grothendieck
Build R2 Vienna
Build Y3 Layana

48) Babamots: Move B3 Aldea Vienna
	Layana: Sorry this is taking me so long, I have been ill (still am, actually) and can't concentrate. 
	Babamots: It's not a problem. Take as long as you need.
	Babamots: Are you feeling any better?  I hope it's not serious.
	Layana: Yes, I'm feeling somewhat better. Luckily, it's not the obvious virus. I'm still at a loss about what to do, now, though - and hints? 
	Layana: Btw, how stable are the ladders when it comes to bugs etc? I won my first realm ladder game, even got elo for it, but the ladder says it was a draw. Also, there is a realm game where my opponent won because he resigned, which is weird. 
	Babamots: Interesting. I've never had those problems, but I'm only on the HW ladder, and there are no Homeworlds draws on SDG. I know there are some bugs for >2-player HW (turn order can get messed up and the archive view doesn't display correctly after players are eliminated).

Did I already invite you to my Discord server? You can play HW with people in real time here:

https://discord.gg/tZCpPXC

People aren't using it much yet, but I'm working on changing that. And there are probably bugs, but unlike SDG, it's under active development!
	Layana: No, thanks for the link, I'll definitely check it out.

49) Layana: Sacrifice Y2 Vienna
Move R2 Vienna Iconia
Discover R2 Vienna G2 Galois

50) Babamots: Sacrifice R2 Aldea
Attack Y1 Vienna
Attack G1 Vienna

51) Layana: Move Y3 Layana Fredholme
	Babamots: You have two large yellows, three reds, and two blues. You really only need one more ship for a Doomsday machine: a third blue. You can get that third blue by sacrificing the g3 in Laplace, so if you can keep your head up for a while, you might be ok. But you don't want to lose any of the parts of your Doomsday machine.

I think you should prioritize keeping your red and blue safe. Get them somewhere defended (with a large ship) or where they can escape (at a yellow star).
	Babamots: That move is very close to what I was going to suggest. Good!

52) Babamots: Sacrifice G3 Babamots
Build R2 Aldea
Build R3 Aldea
Build G3 Babamots
	Babamots: Something I didn't see until after you moved is that attacking your y1 puts me in a position to destroy your y3's if you don't respond. Be careful.

53) Layana: Move R2 Iconia Aldea
Catastrophe Aldea R
	Layana: I guess this one is mostly over either way,though. 

54) Babamots: Trade B1 R1 Aldea

55) Layana: Build Y2 Fredholme

56) Babamots: Sacrifice G3 Babamots
Build R2 Aldea
Build B1 Iconia
Build G3 Babamots

57) Layana: Move Y3 Fredholme Aldea

58) Babamots: Sacrifice Y2 Ferenginar
Move R2 Aldea Vienna
Discover R1 Aldea R3 Romulus

59) Layana: Sacrifice R1 Layana
Attack G2 Aldea

60) Babamots: Sacrifice G2 Aldea
Build G2 Vienna
Build Y2 Vienna

61) Layana: Build R1 Galois

62) Babamots: Move Y1 Ferenginar Romulus

63) Layana: Move B2 Fredholme Aldea

	Layana: Thanks for the game. 
	Babamots: GG! So you know, someone just put up a website for playing HW in real time:

https://homeworlds-live2.glitch.me/

It's still under construction, but everything that I tried worked great. I'm really excited to see how playing in real time affects my thinking.


36773)
Variants: "Unrated"
Started: 2020.8.12, Ended: 2020.8.25
Participants: Trydnt (S), Layana (N)
Winner: Trydnt

1) Layana: Homeworld B2 R1 G3

2) Trydnt: Homeworld Y3 B2 G3

3) Layana: Build G1 Layana

4) Trydnt: Build G1 Trydnt
	Layana: Have fun :) 
	Trydnt: you too

5) Layana: Trade G1 Y1 Layana

6) Trydnt: Trade G1 R1 Trydnt

7) Layana: Build Y1 Layana

8) Trydnt: Build R1 Trydnt

9) Layana: Discover Y1 Layana G3 Asimov

10) Trydnt: Build R2 Trydnt

11) Layana: Build Y1 Layana

12) Trydnt: Trade R2 Y2 Trydnt

13) Layana: Build Y2 Layana

14) Trydnt: Discover Y2 Trydnt G1 G1

15) Layana: Trade Y2 R2 Layana

16) Trydnt: Build Y2 G1

17) Layana: Discover Y1 Layana B3 Lem

18) Trydnt: Discover Y2 G1 Y3 Y3

19) Layana: Build R2 Layana

20) Trydnt: Build G1 Trydnt

21) Layana: Move R2 Layana Asimov

22) Trydnt: Move R1 Trydnt G1

23) Layana: Build G1 Layana

24) Trydnt: Build G2 Trydnt

25) Layana: Sacrifice G3 Layana
Build G2 Layana
Build Y2 Lem
Build Y3 Layana

26) Trydnt: Discover G2 Trydnt B1 B1

27) Layana: Trade Y1 B1 Lem

28) Trydnt: Trade G1 B1 Trydnt

29) Layana: Discover G2 Layana B3 Zelasny

30) Trydnt: Build R2 G1

31) Layana: Build R3 Asimov

32) Trydnt: Build R3 Trydnt

33) Layana: Move R3 Asimov G1

34) Trydnt: Build R3 G1
Catastrophe G1 R

35) Layana: Trade R2 G2 Layana

36) Trydnt: Discover R3 Trydnt Y1 Y1

	Trydnt: asimov is pretty safe as you have a red ship there so if I move in the r3 you could always grow more red and blow it up
	Trydnt: Lem and Zelasny are both vulnerable but you could blow up Lem by sacrificing a g2 and growing two blues. I'd probably have sacrificed your y2 piece and moved some things. maybe leave it so a b3 (or more) was available to grow on your next turn. I can't grow blue easily as I only have blue at my homeworld and I'm therefore limited by the star color
	Trydnt: But yeah you're situation was pretty dire after I blew up all that red and took your large. Always be wary of moving a large ship somewhere where your opponent has a piece of the same color as it's not hard to grow a bit and blow up your large, especially if they have a g2 lying about


36413)
Variants: "Hard time"
Started: 2020.8.15, Ended: 2020.9.3
Participants: yellowturtle (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) yellowturtle: Homeworld B3 R1 G3
	wil: Know the game?

3) wil: B G1 Wil
	yellowturtle: I am indeed familiar with the rules
	wil: Cool, just checking...have fun!

4) yellowturtle: Build G1 Yellowturtle

5) wil: T G1 B1 Wil
	wil: Ah! Online...should I stay awhile so we can get the wicker earlier moves out of the way before we need thinking caps?

6) yellowturtle: Trade G1 B1 Yellowturtle

7) wil: B B2 Wil

8) yellowturtle: Build B2 Yellowturtle
	wil: Oops, he asks and then goes and empties dishwasher.and makes lunch...

9) wil: D B1 Wil Y3 Y3
	yellowturtle: For some reason, your messages only just now came through, so certainly no harm with lunch time!

10) yellowturtle: Build G1 Yellowturtle

11) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Wil

12) yellowturtle: Trade G1 Y1 Yellowturtle
	wil: Welcome to the stage...the blue man group!
	yellowturtle: Ha!

13) wil: S B2 Y3
T B3 G3 Wil
T B3 G3 Y3

14) yellowturtle: Discover B1 Yellowturtle G2 Altair

15) wil: S G3 Y3
B B2 Y3
B B3 Y3
B B3 Wil

16) yellowturtle: Build G1 Yellowturtle

17) wil: M B2 Y3 Altair

18) yellowturtle: Trade G1 R1 Yellowturtle

19) wil: T B2 R2 Altair

20) yellowturtle: Build Y1 Yellowturtle

21) wil: A B1 Altair

22) yellowturtle: Discover B2 Yellowturtle Y2 Betelgeuse

23) wil: B B2 Altair

24) yellowturtle: Discover Y1 Yellowturtle G2 Castor

25) wil: S B2 Altair
T B3 R3 Wil
T B3 G3 Y3

26) yellowturtle: Sacrifice G3 Yellowturtle
Build Y1 Castor
Build Y2 Yellowturtle
Build Y3 Yellowturtle

27) wil: Move G3 Y3 Castor

28) yellowturtle: Sacrifice Y2 Yellowturtle
Discover Y1 Castor G3 Deneb
Move Y1 Castor Deneb

29) wil: Sacrifice G3 Castor
Build B2 Wil
Build B3 Y3
Build B3 Altair

30) yellowturtle: Build Y2 Deneb

31) wil: S B2 Wil
T B3 Y3 Altair
T B3 G3 Y3

32) yellowturtle: Trade Y1 G1 Yellowturtle
	wil: I refer to this as a queen factory...takes 50% longer to grow a queen than simply swapping blues and growing them...but allows me to place different ones around the starfield
	yellowturtle: I like it a lot!  It's very overwhelming

33) wil: M R3 Wil Deneb

34) yellowturtle: Move Y2 Deneb Wil
	wil: Hi, how are things?

35) wil: A Y1 Deneb

36) yellowturtle: Move Y1 Deneb Wil
	wil: Just looking for fuel..

37) wil: S R2 Altair
A Y1 Wil
A Y2 Wil
	yellowturtle: Just looking for a new home...

38) yellowturtle: Build G1 Yellowturtle
	wil: In that case we welcome you to the fam!  I am sure you will not only enjoy it here but your relatives will be joining you soon.
	yellowturtle: Oh!  And things are going just fine!  I hope all goes well for you too!
	wil: These new ships and converts will be fully utilized for the mission

39) wil: S G3 Y3
B B2 Altair
B B3 Altair
B B3 Y3

40) yellowturtle: Build Y1 Yellowturtle
	yellowturtle: Yikes

41) wil: T B3 G3 Y3

42) yellowturtle: Sacrifice G1 Yellowturtle
Build B3 Betelgeuse
	wil: Catastrophes of half a home world without a plan in force are a sucker move.  But they do provide some satisfaction in a last ditch effort sort of way.
	wil: Catastrophes of half a home world without a plan in force are a sucker move.  But they do provide some satisfaction in a last ditch effort sort of way.
	yellowturtle: I can see how in some situations it'd be a problem if the opponent could retaliate, but in this situation, I'm so far behind and am unlikely to enact such a retaliation---what then would be the harm in catastropheing one of my stars?

43) wil: Move Y2 Wil Deneb
	wil: it would be a strange situation to decide to catastrophe your own..

44) yellowturtle: Discover Y1 Yellowturtle R2 Electra
	yellowturtle: No, I mean, you entered into a position to destroy one of my stars, but you indicated you'd wait to do so until later.  I'm asking why would you wait in this situation, when I'm so far behind and unlikely to retaliate?

45) wil: Trade B3 R3 Altair

46) yellowturtle: Build G1 Yellowturtle
	wil: once you blow up and put all that back in the bank along with changing the relation ship in the game..  I just prefer to have a quick follow up cause anything can happen

	yellowturtle: That makes sense

47) wil: S Y2 Deneb
M Y3 Altair Yellowturtle
M R3 Altair Yellowturtle

48) yellowturtle: Attack R3 Yellowturtle
	wil: I think, lol
	wil: This is more decisive
	yellowturtle: Ha, I agree!

49) wil: S R3 Deneb
A Y3 Yellowturtle
A R3 Yellowturtle
A R1 Yellowturtle

50) yellowturtle: Trade G1 R1 Yellowturtle
Catastrophe Yellowturtle R

51) wil: S Y3 Yellowturtle
M B2 Altair Yellowturtle
M B1 Altair Yellowturtle
M B2 Wil Yellowturtle
C Yellowturtle B
	yellowturtle: A strange situation indeed, but it keeps me going for another turn
	wil: Challenge anytime here or a test run on discord
	yellowturtle: Thanks for playing~!
	wil: Back at cha...literally anytine



36884)
Variants: "Unrated"
Started: 2020.8.17, Ended: 2020.10.11
Participants: eliscinsky (S), Xaevith (N)
Winner: eliscinsky

1) Xaevith: Homeworld R3 B2 G3

2) eliscinsky: H Y1 B2 G3

3) Xaevith: Build G1 Xaevith
	eliscinsky: Hey Xaevith, good to see you here in Homeworlds. GL & HF. Did you want this to be a training game?
	Xaevith: Hi! I guess I would say so! I am just trying to get more game experience under my belt. I feel like I'm pretty familiar with the opening of a game but I feel like when it comes to the mid - end game is where I start to suffer. If you notice any tips that might be useful I'd appreciate them greatly! Otherwise I'm down for chit-chat or whatever! :D

Thanks for the game, appreciate it greatly. :)
	Xaevith: oh I almost forgot, good luck and have fun!!!

4) eliscinsky: B G1 Eliscinsky

5) Xaevith: Trade G1 Y1 Xaevith
	eliscinsky: If you're looking for information on Homeworlds strategy, tips, and stuff to watch out for, check out https://jpeterbaker.github.io/homeworlds/site/index.html

That's Jonathan Baker's (aka Babamots) site.  He also likes to teach HW's to new players.  Gives great advice!  So he's another player to try.  Just let him know your skill level and ask for help. And when you think you're ready, let him know that you don't want help, and he'll play you "for real". But watch out he's a wicked good player. He's just beat Andy Looney for a HW's metal, and Andy's one of the best. Jonathan is only the 20th person to beat Andy. I've only beaten Babamots once, and that was because he was distracted for some reason and made several mistakes.

Just about any other players listed in the HW's Challenge area are "experienced" players. Some will cut you some slack, some won't.

After we get a couple rounds in we can discuss move options.  Mostly mine, as that will help you think about "What your opponent might do".  We can always discuss your possible moves if you want, and if I see an obvious mistake I'll make a comment before I move.  I normally move within a day of it becoming my turn. So if you don't see that I have made a move (email) by the second day, come back to the game to check for comments.  SDG doesn't email on comments being made.  However, your "My SDG" (top of every page) will show if comments have been made.

One key thing to remember is that SDG only allows 1 "Undo Last Move" per turn.  If you undo you only get 1 move, and undo is turned off, until I move.  In other words you cannot repeatedly undo during your turn to "see what the board would look like".  I've known some players to set up an identical physical game at home to "test out" possible moves.

Last thing for now, if you have any questions at anytime, just ask. "There are no dumb questions."

	eliscinsky: BTW, that link does NOT have any hyphens in it. If you see one that's SDG word wrap at work.

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Xaevith: Build Y2 Xaevith
	Xaevith: I got the pleasure of meeting Babamots during Homeworlds 101 at Gencon this year! I'm about maybe 1/2 way through a game I started with him around the start of August? He showed me his guide it's the most comprehensive I've seen so far! Even though I've read it twice now... I still feel like I'm the type of player and person who has to actually play through a couple rounds before it will all click in my head. :P For example I have read about getting frozen a colour so many times I still made the mistake of almost getting frozen out of red and had he not pointed it out I would have been really screwed... Now that I made that mistake and had it pointed out though I'm going to be very careful the next time I run into that situation!

I think I would appreciate the discussion of moves during play. In my match with Babamots even though I figure he's probably taking it a bit easy on me there were still plenty of times where he made moves I had totally missed or had not calculated. I try especially when playing through SDG to try and take some time when making a move and try and kind of map out what each possible move is going to do for me and for the opponent. I'm fairly familiar with the core of the game, the colours, how movement and all that works, the ability to sacrifice I think it's really when it gets to the middle or the end of a game is where I struggle to be able to pull off any sort of strategy. Most of the time I feel like I'm just either reacting to what my opponent did or getting forced to go in another direction because of the economy.

I'd appreciate you pointing out the mistake, it's okay if I don't get an email I'm playing quite a few different rounds of games on SDG so I'll probably get a chance to check the notification!

8) eliscinsky: D Y1 Eliscinsky G3 Earth

9) Xaevith: Build Y2 Xaevith

10) eliscinsky: B Y2 Earth

11) Xaevith: Discover Y2 Xaevith R1 Masser
	eliscinsky: Careful with all that yellow economy. 
	Xaevith: Yeah I could feel my wax wings starting to melt ever so slightly with that last build... I know right now though if I don't do anything you could easily wipe out all my yellow quite easily! :(

12) eliscinsky: Discover Y1 Earth G1 Kronos

13) Xaevith: Build G1 Xaevith
	eliscinsky: Sorry I didn't point this out before I moved.  I'll try to do better for the rest of the game. 

Okay tip: Your choice of star (red) for Masser puzzles me. A red star is good for when you want to move a ship and make it hard for your opponent to attack it. Can only be done with a larger ship. I have no red to attack you so that is moot.  Also by choosing red you cannot build anything there.  You can only move the y2 to somewhere else, sacrifice the y2, or move some thing in.  Not a lot of advantages at this stage of the game. 

However, if you've got a multi-step plan you're working on ... never mind.  Continue on.
	Xaevith: I appreciate that feedback. I was honestly really stuck in the choice between red or blue. The way I saw it was maybe try and get ahead of taking away small red pieces now to help corner the red economy and protect my system from invasion or catastrophe without directly starting the red ship building contest... I know that as soon as I build a red ship it's going to trigger you to want to make sure you also are equipped to deal with any threat of a take-over... At least that was the thought process behind it! It's all good though, unrated games are the place to try out ideas and learn to become a better player as well as talk about these moves like this!

14) eliscinsky: Build Y3 Earth
	eliscinsky: 1) You could also have gone with a small green, and even though it opened the medium greens, you would have been able to build at least a large yellow without endangering the yellows in your HW.

At this point one of my options is to build large yellows, getting them all if I can.  Then work on trading them for 2 diff colors, and after a little build up ... finally move into your HW and begin an attack.

Just know that you have a decent position in the yellow economy.  I still have to be careful not to build to many in one place as you could wipe them out (at a price).

2) You also need to be careful not to over load your HW with to much of one economy.  In your case currently ... Yellow. (I don't have enough green to endanger your HW)

In another game I'm playing my opponent had 3 green in his HW and no were else.  And only blue in his HW. With a y3 and a g1 I moved in and eliminated all his construction economy. They are now on "Red Alert".

3) For your next move you'll need to consider trading inside your HW or moving something out / discovering a new star. Remember a ship anywhere on the board can be sacrificed for its action elsewhere, if needed. 

4) In my first couple dozen HW matches I lost almost all of them. But I look upon each one as a learning event.  Trying to see where I went wrong. I usually saw it just AFTER I did it, and they set me back enough that I could not recover.  Live and Learn. Always a student. :)

5) And now my play is ...

15) Xaevith: Discover Y1 Xaevith G1 Secunda
	eliscinsky: Oh, one more thing. SDG has a mode to show step by step how a game progresses.  You can use it anytime on any game, even if the game is not over. For this game the link is ...

http://www.superdupergames.org/?page=archive_play&gid=36884

To use it on another game just replace the gid (Game ID) number with the game number you're interested in. Any game number, not just HW games.



16) eliscinsky: Move Y3 Earth Eliscinsky
	Xaevith: Like you said I really see the error of not picking small green now that I'm essentially losing the chance at getting Y3 this turn which allows you to get another one next turn which basically secures the chance of causing some catastrophes... OOF. That's gonna cost me!

Also thank you for showing me the play by play feature! This is something I was not aware was on SDG! This can also be useful for watching play by plays of other players games as well... Very very useful information, many many thanks!

17) Xaevith: Build Y3 Secunda

18) eliscinsky: Build Y3 Earth

19) Xaevith: Build G2 Xaevith
	eliscinsky: I noticed that you are playing 4 HW games simultaneously. That's a tough, dare I say  near impossible undertaking. It's just too hard to focus enough on them. Next time try just one or two a a time. I know from personal experience. I did the same thing in my beginning. Good luck with the other games. 
	Xaevith: Yeah and if you've creeped the other matches I've made some pretty bad mistakes. You're right though, it just becomes so easy to start another match while waiting. Ahhh well gotta make mistakes to learn why something is a bad decision I suppose.

20) eliscinsky: S Y3 Earth
M Y2 Earth Kronos
M Y1 Kronos Xaevith
M Y2 Kronos Xaevith

21) Xaevith: Sacrifice G1 Xaevith
Build Y3 Masser
	eliscinsky: It just got interesting. 

22) eliscinsky: T Y2 G2 Xaevith
	Xaevith: Very interesting! But now you only have the one yellow ship left and as far as I can tell you have no way to bring it into my homeworld... You might start attacking my 2s next turn but I can start turning it around after can I not?
	Xaevith: Also if I let you build the yellow ship you could have just sacrificed your other Y3 and moved right into my HW and caused a nice yellow catastrophe... I feel like this way I can at least try to keep a grip on that yellow economy... I might be wrong but hey worth a shot!
	eliscinsky: Excellent move. However my plan was not yellow. And attack is not the only course of action. 

23) Xaevith: Attack G2 Xaevith

24) eliscinsky: T Y1 G1 Xaevith
C Xaevith G

25) Xaevith: Trade Y2 G2 Xaevith

26) eliscinsky: Discover Y3 Eliscinsky R3 Romulus
	Xaevith: AHHHHHHHH MY STAR WAS BLUE

27) Xaevith: Build G1 Xaevith
	Xaevith: Great move that was awesome
	Xaevith: I don't know why it feels like your homeworld is only your own... I know it's not but for whatever reason I really overlooked that in that situation ahahahaha 

28) eliscinsky: D Y3 Romulus R1 Remus
	eliscinsky: Fear not.  You're still ahead of me in points, which is usually what matters most, AND you still control most of the yellow economy.

29) Xaevith: Move Y3 Secunda Xaevith

30) eliscinsky: Build G1 Eliscinsky

31) Xaevith: Discover Y1 Secunda G3 Tiny
	eliscinsky: Okay, before I move consider this. You don't have a large ship in your HW. I have a large ship one move away from your HW. Since you don't have anything big enough to take me, I can then use your red HW to attack your ships. Game over in a few rounds. 

Remember most HW games take dozens of turns. It's a trap to go for a seemingly quick game.

I'll give you 24 hours from this message to think about it. 

32) eliscinsky: Trade G1 R1 Eliscinsky
	eliscinsky: ... and now you W is protected. :)

33) Xaevith: Move G1 Xaevith Masser

34) eliscinsky: B G1 Eliscinsky

35) Xaevith: Build G1 Xaevith

36) eliscinsky: M R1 Eliscinsky Tiny

37) Xaevith: Trade G2 R2 Xaevith

38) eliscinsky: A Y1 Tiny

39) Xaevith: Build G2 Xaevith

40) eliscinsky: T G1 B1 Eliscinsky

41) Xaevith: Discover G1 Xaevith B1 Stormpoint

42) eliscinsky: Discover B1 Eliscinsky G3 Orion

43) Xaevith: Move R2 Xaevith Stormpoint

44) eliscinsky: Build R2 Tiny

45) Xaevith: Build G1 Xaevith

46) eliscinsky: Build G2 Eliscinsky

47) Xaevith: Build G2 Stormpoint

48) eliscinsky: Sacrifice G3 Eliscinsky
Build G3 Eliscinsky
Build Y1 Tiny
Build Y2 Tiny

49) Xaevith: Build Y2 Xaevith

50) eliscinsky: S G3 Eliscinsky
B G3 Eliscinsky
B B1 Orion
B B2 Orion

51) Xaevith: Build R2 Stormpoint

52) eliscinsky: S Y3 Remus
M B1 Orion Stormpoint
M B1 Orion Stormpoint
M B2 Orion Stormpoint
C Stormpoint B

53) Xaevith: Sacrifice Y3 Masser
Move G1 Masser Tiny
Move G1 Tiny Eliscinsky
Move G1 Xaevith Masser

54) eliscinsky: T G3 R3 Eliscinsky
	eliscinsky: Well you didn't take the b1, and opted for the y2 instead. Since you already undid your last move there's no turning back.  So blue is going to get hard to get. 

55) Xaevith: Move Y2 Masser Tiny
Catastrophe Tiny Yellow
	eliscinsky: Not sure what else you might have done. 

56) eliscinsky: A G1 Eliscinsky

57) Xaevith: Build Y1 Xaevith

58) eliscinsky: T G2 B2 Eliscinsky

59) Xaevith: Move Y2 Xaevith Masser

60) eliscinsky: Trade R3 G3 Eliscinsky

61) Xaevith: Trade Y1 B1 Xaevith

62) eliscinsky: Build B1 Eliscinsky

63) Xaevith: Build Y1 Masser

64) eliscinsky: D B2 Eliscinsky G3 Earth

65) Xaevith: Build G1 Xaevith

66) eliscinsky: Build B1 Earth

67) Xaevith: Build G2 Masser

68) eliscinsky: Sacrifice G3 Eliscinsky
Build R1 Tiny
Build B3 Earth
Build B3 Eliscinsky

69) Xaevith: Sacrifice Y3 Xaevith
Move B1 Xaevith Masser
Move B1 Masser Earth
Move B1 Earth Eliscinsky
Catastrophe Eliscinsky Blue

70) eliscinsky: S B2 Earth
T B1 Y1 Earth
T R2 Y2 Tiny

71) Xaevith: Move Y2 Masser Xaevith

72) eliscinsky: Sacrifice Y2 Tiny
Move B3 Earth Masser
Move B3 Masser Xaevith

73) Xaevith: Sacrifice Y2 Xaevith
Move G2 Masser Xaevith
Move Y1 Masser Xaevith
	eliscinsky: Interesting choice of action.  Remember one of Babamots' strategy guidances: "If I do this, what can they do next." Playing a "long game" strategy usually works best, unless your opponent makes a significant misstep.

By taking a green you now allow me to sacrifice my large green, and still get it back (even though that would put my green at risk in my HW). You could have built another yellow, or even a large blue in your HW and I would not have been able to do much about it for several turns.  By then you would have traded or moved your pieces out of your HW.

All though I think I'll go a slightly different course.  Question is did you consider this move?

74) eliscinsky: A Y1 Xaevith

75) Xaevith: Build G2 Masser
	eliscinsky: Ha, very good. Let's see if I can come back from this. 
	eliscinsky: Ha, very good. Let's see if I can come back from this. 

76) eliscinsky: A G2 Xaevith

77) Xaevith: Build G3 Xaevith

78) eliscinsky: B Y2 Xaevith
C Xaevith G

	eliscinsky: Okay, while you didn't call the catastrophe in your HW the condition still exists. If I call the catastrophe you will lose your HW. I'll give you a day to reconsider. 
	eliscinsky: GG


36815)
Variants: "Unrated, Hard time"
Started: 2020.8.17, Ended: 2020.9.7
Participants: Xaevith (S), wil (N)
Winner: wil

1) wil: Homeworld Y2 B1 G3

2) Xaevith: Homeworld B3 Y1 G3
	wil: so.new to hw?  how do you wanna play  this?  help no help? training or straight play? discussion of moves?

3) wil: B G1 Wil
	Xaevith: So I'm not "new" per say... I have played HW on and off for the past ten years but I never got very good at it... Most of the people I would teach to play had no interest in trying to take the time to figure out the awesomeness that is Homeworlds...

My main issue I feel like is that I'm alright in the start of the game but lack real experience in mid - end game play.

I'm down for straight talking and discussion though, to be honest I'm finding I'm learning a lot more just hearing from the rest of you guys! Whatever you're willing to share I'm willing to hear! Hope you are having a great day today. :)
	wil: It is interesting how strategies differ.  Andy plays the long game building ships and increasing the front till an end emerges. John Cooper ace)states to get intonchallenges and pester like a mosquito amd often will leave his he with a small ship. I try to corner markets and freeze folks out of any economy I can.

4) Xaevith: Build G1 Xaevith

5) wil: T G1 B1 Wil

6) Xaevith: Trade G1 B1 Xaevith

7) wil: T B1 Y1 Wil
	Xaevith: This is why I really love this game and keep coming back time and time again... In concept it's got very simple ideas but the amount of strategy on how you want to go about playing is unique to each player. I'm really excited to see what kind of moves I end up gravitating towards. As of right now I'm kind of just trying a bunch of stuff out to get a better idea of what better resonates with my playstyle.

8) Xaevith: Build B1 Xaevith
	wil: Dag is a great place to play a lot of different people.  Start fighting your way up the ladder...and yes it is a struggle for all of us to find live games.  Folks that used to play chess seem the best as the similarities in play and complexity are similar.

	wil: 

9) wil: B Y1 Wil

10) Xaevith: Discover B1 Xaevith G2 Nirn
	Xaevith: That's the plan for now, going to play a lot of unrated games and get myself through a few more complete games... Probably get my butt handed to me several times but learn a bunch and start to get my own hang of things. :D
	wil: I prolly lost 45 of my first 50...never worried about ratings...just playing.




11) wil: D Y1 Wil B3 B3

12) Xaevith: Build B2 Nirn

13) wil: Sacrifice G3 Wil
Build Y2 Wil
Build Y2 B3
Build Y3 B3

14) Xaevith: Build B2 Nirn

15) wil: Trade Y3 G3 B3
	Xaevith: damn I was not anticipating you to sac your g3 that early

16) Xaevith: Build B2 Xaevith

17) wil: Discover Y1 Wil B3 Be3
	wil: I like big ships I cannot lie.

18) Xaevith: Build G1 Xaevith

19) wil: Sacrifice G3 B3
Build Y3 B3
Build Y3 Be3
Build Y3 Be3
	wil: the goal in this case was three fold.  While it was to corner the yellows, it was also to impede your ability to move, and keep you from the blue queens.  Hopefully as the game plays out I will be able to release them into my control...or better yet since I have three ships my backfield to build....and they are all blue...do I need them?  (note blue thou is my favorite color to capture as I can create a queen factory like I have in the other game currently playing.

20) Xaevith: Build G1 Xaevith
	Xaevith: What an interesting situation, I feel like I'm gonna be really really stuck without yellow and now that you've secured those last B3s from my grasp I'm in quite the pickle indeed...
	wil: Pickling is the goal.

21) wil: T Y3 G3 B3
	wil: OPEC has officially taken over the galaxies fuel supply and no longer had to have large ship at home...
	wil: The rest of the game involves aquiring all the rest of the queens and then picking of whole star systems with grounded ships.  It willl be an educational experience to not let me do that again.

22) Xaevith: Discover G1 Xaevith G2 Azeroth
	Xaevith: I never realized how much of advantage you can get out of sacrificing that G3 so early on can be. I'm always terrified to get rid of it thinking I always need that green in my homeworld to be able to do anything at all... Although now I suppose when it comes to it you have a ton of 3 pieces and blue stars to trade with... I thought I was cornering blue but not even close.
	wil: Once I do the calculation (simply count the bank)  I pick the color that is the shortest way to 3s to go for.  If you jump on board I have to switch to my next gambit.  But if you don't I run for all its worth.  It ain't a factory that rebuilds itself...it is a hostile take over and destruction of the existing construction economy.

Once I saw you were headed for blues...i needed to either get in that game with you...or reduce is worth (empty bank making stars)

23) wil: B Y3 B3
	wil: Warning thou...monopolies are harder to control than they are to get.  And when they go bad the problems avalanche.  Despite that it is my standard "can I" question...  I have made monopolies in all colors and each of them is tracherous in its own right.

24) Xaevith: Trade B2 R2 Xaevith

25) wil: M Y2 B3 Azeroth

26) Xaevith: Build B2 Xaevith

27) wil: T Y3 R3 B3
	wil: Chumming.

28) Xaevith: Trade G3 Y3 Xaevith

29) wil: S Y3 Be3
M Y1 Be3 Azeroth
M Y1 Azeroth Xaevith
M Y2 Azeroth Xaevith
C Xaevith Y

30) Xaevith: Trade B2 Y2 Xaevith

31) wil: M R3 B3 Wil

32) Xaevith: Build Y1 Xaevith

33) wil: Trade Y2 B2 Wil

34) Xaevith: Move Y1 Xaevith Nirn

35) wil: Move Y3 Be3 Nirn

36) Xaevith: Sacrifice Y2 Xaevith
Discover B2 Nirn Y3 Lemon
Move B2 Nirn Lemon

37) wil: M Y3 Nirn Xaevith

38) Xaevith: Build R1 Xaevith

39) wil: S R3 Wil
A R2 Xaevith
A R1 Xaevith
A G1 Xaevith

40) Xaevith: Build B3 Nirn
	wil: I was just pass in thru
	Xaevith: GG

41) wil: A B1 Xaevith



36888)
Variants: "Unrated"
Started: 2020.8.18, Ended: 2020.8.18
Participants: Cuc (S), mneme (N)
Winner: Cuc

1) mneme: Homeworld G1 B2 Y3

2) Cuc: H Y2 G3 B3

3) mneme: Build Y1 Mneme

4) Cuc: Build B1 Cuc

5) mneme: Build Y1 Mneme

6) Cuc: T B1 Y1 Cuc

7) mneme: Discover Y1 Mneme G3 Launch

8) Cuc: B B1 Cuc

9) mneme: Build Y2 Mneme

10) Cuc: Build Y2 Cuc

11) mneme: Sacrifice Y3 Mneme
Discover Y1 Launch G1 Launch2
Move Y1 Launch2 Cuc
Catastrophe Cuc Y
Move Y1 Mneme Cuc

	Cuc: Success! We can do midturn catastrophes.

	mneme: Indeed.  as planned.
	mneme: Indeed.  as planned.
	mneme: Indeed.  as planned.


36890)
Started: 2020.8.18, Ended: 2020.8.22
Participants: TrillP (S), Layana (N)
Winner: Layana

1) Layana: Homeworld G2 R1 B3

2) TrillP: Homeworld B3 R2 G3

3) Layana: Build B1 Layana

4) TrillP: Build G1 Trillp

5) Layana: Build B1 Layana

6) TrillP: Build G1 Trillp

7) Layana: Trade B1 G1 Layana

8) TrillP: Trade G1 Y1 Trillp

9) Layana: Trade B1 Y1 Layana

10) TrillP: Build G1 Trillp

11) Layana: Build G2 Layana

12) TrillP: Trade G1 R1 Trillp

13) Layana: Discover G2 Layana B3 Vulcan

14) TrillP: Discover Y1 Trillp G1 Betazed

15) Layana: Build G2 Vulcan

16) TrillP: Sacrifice G3 Trillp
Build G3 Trillp
Build G3 Trillp
Build Y1 Betazed

17) Layana: Build G3 Vulcan

18) TrillP: Move Y1 Betazed Trillp

19) Layana: Trade G2 Y2 Vulcan

20) TrillP: Sacrifice G3 Trillp
Build Y2 Betazed
Build Y2 Betazed
Build Y3 Trillp

21) Layana: Move Y2 Vulcan Betazed
Catastrophe Betazed Y

22) TrillP: Discover G1 Trillp R1 Newbetazed

23) Layana: Trade G2 Y2 Vulcan

24) TrillP: Build R2 Trillp

25) Layana: Build G1 Vulcan

26) TrillP: Build G2 Trillp

27) Layana: Sacrifice G3 Vulcan
Build G2 Layana
Build G3 Vulcan
Build Y1 Vulcan

28) TrillP: Sacrifice Y3 Trillp
Move R1 Trillp Newbetazed
Move R2 Trillp Newbetazed
Move G2 Trillp Newbetazed

29) Layana: Sacrifice G3 Vulcan
Build G3 Vulcan
Build Y2 Vulcan
Build Y2 Layana

30) TrillP:
Build G3 Trillp

31) Layana: Trade Y2 R2 Vulcan

32) TrillP: Sacrifice G3 Trillp
Build Y2 Trillp
Build Y3 Trillp
Build G3 Newbetazed

33) Layana: Sacrifice Y2 Layana
Move Y1 Vulcan Newbetazed
Move Y1 Newbetazed Trillp
Catastrophe Trillp Y

34) TrillP: Trade G3 Y3 Trillp

35) Layana: Move R2 Vulcan Newbetazed
Catastrophe Newbetazed R

36) TrillP: Trade Y3 G3 Trillp

37) Layana: Discover G3 Vulcan B1 Bajor

38) TrillP: Build G1 Trillp

39) Layana: Sacrifice Y1 Layana
Move G3 Bajor Trillp

40) TrillP: Trade G3 R3 Trillp

41) Layana: Attack R3 Trillp

42) TrillP: Build G2 Trillp

43) Layana: Sacrifice R3 Trillp
Attack G2 Trillp
Attack G1 Trillp
Pass



36412)
Variants: "Hard time"
Started: 2020.8.20, Ended: 2020.9.8
Participants: Trydnt (S), coryke (N)
Winner: Trydnt

1) coryke: H B3 Y1 G3

2) Trydnt: Homeworld B2 R3 G3

3) coryke: Build G1 Coryke

4) Trydnt: Build G1 Trydnt

5) coryke: Trade G1 Y1 Coryke

6) Trydnt: Trade G1 Y1 Trydnt

7) coryke: Build Y2 Coryke

8) Trydnt: Build Y2 Trydnt

9) coryke: Build G1 Coryke

10) Trydnt: Build Y2 Trydnt

11) coryke: Build Y3 Coryke

12) Trydnt: Build G1 Trydnt
Catastrophe Coryke Y

13) coryke: Trade G1 Y1 Coryke

14) Trydnt: Discover Y2 Trydnt G1 G1
	coryke: oh, i'm rusty. i neglected to protect against catastrophe.

15) coryke: Build G1 Coryke

16) Trydnt: Discover G1 Trydnt Y1 Y1

17) coryke: Build Y2 Coryke

18) Trydnt: Build Y3 G1

19) coryke: Trade Y2 R2 Coryke

20) Trydnt: Trade Y1 R1 Trydnt

21) coryke: Discover R2 Coryke R1 Aleph

22) Trydnt: Move R1 Trydnt G1

23) coryke: Trade G3 R3 Coryke

24) Trydnt: Build G2 Trydnt

25) coryke: Build G2 Coryke

26) Trydnt: Build G2 Y1

27) coryke: Move G1 Coryke Aleph

28) Trydnt: Trade G2 B2 Trydnt

29) coryke: Build G2 Coryke

30) Trydnt: Sacrifice B2 Trydnt
Trade G1 B1 Y1
Trade Y2 B2 G1

31) coryke: Discover G2 Coryke R2 Beth

32) Trydnt: Build B1 G1

33) coryke: Build Y1 Coryke

34) Trydnt: Sacrifice Y3 G1
Move B1 G1 Coryke
Move B1 Y1 Coryke
Move B2 G1 Coryke
Catastrophe Coryke B



36880)
Variants: "Hard time"
Started: 2020.8.21, Ended: 2020.8.22
Participants: eliscinsky (S), Layana (N)
Winner: eliscinsky

1) Layana: Homeworld B2 R1 G3

2) eliscinsky: Homeworld B1 Y2 G3

3) Layana: Build G1 Layana
	eliscinsky: Greetings Layana! GL & HF!
Have you played a small universe before? 

4) eliscinsky: Build G1 Eliscinsky
	Layana: Hi, one, I think. I'm still new, though. 

5) Layana: Trade G1 B1 Layana
	eliscinsky: Oh, did you want this to be a training game?  Do you need help?

6) eliscinsky: Build G1 Eliscinsky

7) Layana: Build B1 Layana

8) eliscinsky: Discover G1 Eliscinsky B3 Betelgeuse

9) Layana: Trade B1 Y1 Layana

10) eliscinsky: Discover G1 Eliscinsky B3 Bellatrix
	Layana: It'll be sufficient if you point out mistakes. I hope I'll learn that way. 

11) Layana: Build Y1 Layana

12) eliscinsky: Build G1 Eliscinsky

13) Layana: Build G2 Layana

14) eliscinsky: Build G2 Betelgeuse

15) Layana: Trade Y1 R1 Layana

16) eliscinsky: Sacrifice G3 Eliscinsky
Build G2 Bellatrix
Build G3 Eliscinsky
Build G3 Eliscinsky

17) Layana: Move G2 Layana Bellatrix

18) eliscinsky: T G3 Y3 Eliscinsky

19) Layana: Build G3 Layana

20) eliscinsky: S Y3 Eliscinsky
M G1 Bellatrix Layana
M G2 Bellatrix Layana
M G1 Betelgeuse Layana
C Layana G

	Layana: Wow, that was a quick one. I'll need to check where it fell apart :) 
	eliscinsky: Small universes can go fast if you're not very careful. I should have said something before I moved.  I sometimes forget what levels my opponents are when I'm playing more than 2 games simultaneously. :(  I also saw that you had moved 3 hours earlier, and figured you had time to double check your move. (no undo)

Mainly I think you let me get to much of one economy (green), which allowed me to position myself one strike away, and catastrophe your large.

Do you know about the SDG archive?  SDG has a mode to show step by step how a game progresses. You can use it anytime on any game, even if the game is not over. For this game the link is ...

http://www.superdupergames.org/?page=archive_play&gid=36880

To use it on another game just replace the gid (Game ID) number with the game number you're interested in. Any game number, not just HW games. 

One last thing, I see you're playing Babamots and he's been teaching you so I guess you already know about his HW guides at ... https://jpeterbaker.github.io/homeworlds/site/index.html (no hyphens)

Hope to see you again for a rematch (anytime). 


36079)
Started: 2020.8.21, Ended: 2020.8.31
Participants: pancerola (S), bhorner (N)
Winner: bhorner

1) bhorner: Homeworld R2 B1 G3
	bhorner: I must have had a standing challenge out there, this game started by surprise for me.  :). Good luck, and have fun!



36907)
Variants: "Unrated"
Started: 2020.8.23, Ended: 2020.9.11
Participants: eliscinsky (S), Layana (N)
Winner: Layana

1) Layana: Homeworld Y3 B2 G3

2) eliscinsky: Homeworld B1 R2 G3
	Layana: Again, please consider this a training game and comment upon my mistakes.
	eliscinsky: Hello again! Sure thing - Teaching game.

3) Layana: Build G1 Layana
	eliscinsky: Let's have a large universe this time. :)

4) eliscinsky: Build G1 Eliscinsky

5) Layana: Discover G1 Layana B1 Andoria

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) Layana: Build G1 Andoria

8) eliscinsky: Build Y1 Eliscinsky

9) Layana: Trade G1 Y1 Andoria

10) eliscinsky: Build Y2 Eliscinsky

11) Layana: Build Y2 Andoria

12) eliscinsky: D Y2 Eliscinsky R3 Mars

13) Layana: Build G1 Layana

14) eliscinsky: T Y1 B1 Eliscinsky

15) Layana: Build G1 Andoria

16) eliscinsky: Build G2 Eliscinsky

17) Layana: Discover G1 Andoria B3 Orion

18) eliscinsky: T G2 R2 Eliscinsky

19) Layana: Trade Y1 R1 Andoria

20) eliscinsky: Build B2 Eliscinsky

21) Layana: Build G2 Andoria

22) eliscinsky: D B2 Eliscinsky G3 Earth

23) Layana: Sacrifice G3 Layana
Build G2 Orion
Build G2 Layana
Build G3 Layana

24) eliscinsky: Build B2 Earth

25) Layana: Trade G3 B3 Layana

26) eliscinsky: T B2 Y2 Earth

27) Layana: Build G3 Layana

28) eliscinsky: B B2 Earth

29) Layana: Discover G2 Andoria B3 Oz
	eliscinsky: You're doing rather well in this game. You're making me think through a lot of things before I move. And so far I haven't seen any mistakes on your part. 
	Layana: Thanks, that is encouraging

30) eliscinsky: D B2 Earth R1 Romulus

31) Layana: Sacrifice G3 Layana
Build G3 Andoria
Build Y1 Andoria
Build R1 Andoria

32) eliscinsky: S G3 Eliscinsky
B Y1 Mars
B Y3 Earth
B Y3 Eliscinsky

33) Layana: Sacrifice G3 Andoria
Build G3 Oz
Build R2 Andoria
Build G3 Oz

34) eliscinsky: Move Y3 Earth Andoria
	eliscinsky: Interesting move to trade a large green to yellow.  However, since you control most of the green and there was none in the bank, did you consider sacrificing the green and then building 3 pieces on the board? One of which would have included the green that you just sacrificed. You could have built a yellow, a red, and the green.  The result in the bank would still be, a small yellow would be next up (not mush help to me), a middle red (I can't build it in my HW, too many there), and you get you green back (even though I currently stil cannot use it).

You really are in a great place to win this game, and there is a part of me that says don't write this, but you did ask for help / guidance.  And I never really care if I win or lose. ;)

I'll give you 24 hours to reconsider your last move, then I'll make my move.  Or you can comment here that you're good with your move. :)

Remember consider ALL the move possibilities, and then ALL the opponents moves, etc., for as many future rounds as you can.  If you've done that then "Okay".

	Layana: Yes, I guess you're right. I just thought the r1 and y1 wouldnt be of much help to me, campared to the y3. Also, I figured that a y3 (and a re-build g3 one move later) is worth more than building 2 one-size ships. I havent played the later stages of the game that often, so it is kind of hard to gauge for me which move might be strategically superior. The move you suggest seems more flexible, though, and when in doubt, flexibility is always a good thing. I'll try it your way. thank you ;)

35) Layana: Move Y2 Andoria Oz

36) eliscinsky: S R2 Eliscinsky
A R2 Andoria
A G1 Andoria
	eliscinsky: Okay I wasn't trying to talk you out of the yellow economy and it's not going to help me much until I trade it.

37) Layana: Move G3 Oz Romulus
	eliscinsky: Okay you're officially kicking my butt. Why am I helping you? LOL.

38) eliscinsky: Sacrifice R2 Andoria
Attack R1 Andoria
Attack R1 Andoria
	Layana: Sorry this is taking me so long, I have been ill (still am, actually) and can't concentrate.
	eliscinsky: Sorry you're not feeling well. :(

Take all the time you need.  Since you messaged (thanks) I won't force the surrender (if it gets to that). 

Just take care of yourself and I hope you get better soon. 
	Layana: Kk, I'm back. Please excuse my inactivity. 
	Layana: So, my last move (leaving myself without a size 3 ship in andoria) seems like a bad choice now... 

39) Layana: Attack B2 Romulus
	eliscinsky: Maybe, we'll see. 

40) eliscinsky: Attack Y1 Andoria

41) Layana: Trade G2 R2 Oz

42) eliscinsky: Sacrifice Y1 Andoria
Discover Y2 Mars Y1 Mudd

43) Layana: Trade G2 R2 Layana

44) eliscinsky: Build G2 Andoria

45) Layana: Sacrifice G2 Orion
Build R3 Oz
Build R3 Layana

46) eliscinsky: Sacrifice Y3 Andoria
Move R1 Andoria Oz
Move R1 Andoria Oz
Catastrophe Oz R
Move B2 Earth Mudd

47) Layana: Build Y3 Oz

48) eliscinsky: Sacrifice Y3 Eliscinsky
Move Y1 Mars Mudd
Move Y1 Mudd Oz
Move Y2 Mudd Oz
Catastrophe Oz Y

49) Layana: Trade R2 Y2 Layana

50) eliscinsky: Sacrifice G2 Andoria
Build Y1 Eliscinsky
Build Y2 Eliscinsky
	eliscinsky: Very interesting.

51) Layana: Sacrifice Y2 Layana
Move G3 Oz Eliscinsky
Move G3 Romulus Earth

52) eliscinsky: T Y2 G2 Eliscinsky

53) Layana: Sacrifice R3 Layana
Attack G2 Eliscinsky
Attack B1 Eliscinsky
Attack Y1 Eliscinsky

	eliscinsky: Well played. I'll take a rematch anytime. 
	Layana: Sure thing, at long as it's unrated. 
	Layana: I think I have a standing challenge open. It's 3/1/10 unrated, hard time, if that's fine. 


36902)
Variants: "Unrated"
Started: 2020.8.30, Ended: 2020.9.13
Participants: Layana (S), TrillP (N)
Winner: Layana

1) TrillP: Homeworld Y3 B1 G3

2) Layana: Homeworld B2 - G3 *

3) TrillP: Build G1 Trillp

4) Layana: Build G1 Layana

5) TrillP: Build G1 Trillp
	TrillP: build g1 TrillP

6) Layana: Build G2 Layana
	TrillP: Ahh... falsches Kästchen

7) TrillP: Discover G1 Trillp G2 Deepspace9

8) Layana: Trade G2 Y2 Layana

9) TrillP: Discover G1 Trillp Y2 Mars

10) Layana: Trade G3 R3 Layana

11) TrillP: Build G2 Trillp

12) Layana: Move R3 Layana Trillp

13) TrillP: Trade G3 R3 Trillp

14) Layana: Attack R3 Trillp



36920)
Variants: "Hard time"
Started: 2020.8.30, Ended: 2020.11.11
Participants: Babamots (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) Babamots: Homeworld R2 B1 G3

3) Draw5PlayAll: Build G1 Draw5playall
	Babamots: Good luck!

4) Babamots: Build G1 Babamots

5) Draw5PlayAll: Trade G1 Y1 Draw5playall
	Babamots: Do you have any interest in joining another tournament this year?
	Draw5PlayAll: Hmmm... I'll think about it.

6) Babamots: Trade G1 Y1 Babamots

7) Draw5PlayAll: Build G1 Draw5playall

8) Babamots: Build G1 Babamots

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) Babamots: Trade G1 B1 Babamots

11) Draw5PlayAll: Build B2 Draw5playall

12) Babamots: Build B2 Babamots

13) Draw5PlayAll: Discover B2 Draw5playall G3 G3

14) Babamots: Trade B2 Y2 Babamots

15) Draw5PlayAll: Discover B1 Draw5playall G1 G1

16) Babamots: Discover B1 Babamots Y3 Aldea

17) Draw5PlayAll: Build B2 G1

18) Babamots: Build G1 Babamots

19) Draw5PlayAll: Build B3 G3

20) Babamots: Sacrifice G1 Babamots
Build B3 Aldea

21) Draw5PlayAll: Trade B2 Y2 G3

22) Babamots: Build G1 Babamots

23) Draw5PlayAll: Sacrifice Y2 G3
Move B1 G1 Aldea
Move B2 G1 Aldea
Catastrophe Aldea Blue

24) Babamots: Build G1 Babamots

25) Draw5PlayAll: Build B1 G3
	Draw5PlayAll: Might have been premature, but we'll see.

26) Babamots: Trade G1 B1 Babamots
	Babamots: I set up a Discord server for playing HW. It verifies that people play by the rules and keeps a game clock. It's almost the same as SDG but you play in real time, almost like sitting across the table. Come and try it if you like (I'll play almost any time).

https://discord.gg/tZCpPXC

People aren't using it much yet, but I'm working on changing that!

27) Draw5PlayAll: Trade B3 R3 G3
	Draw5PlayAll: I like here better...

28) Babamots: Discover G1 Babamots Y3 Aldea

29) Draw5PlayAll: Build B2 G3

30) Babamots: Build G1 Babamots

31) Draw5PlayAll: Trade B2 Y2 G3

32) Babamots: Build G1 Aldea

33) Draw5PlayAll: Build B2 G3

34) Babamots: Discover B1 Babamots Y3 Iconia

35) Draw5PlayAll: Discover B2 G3 G2 G2

36) Babamots: Sacrifice G3 Babamots
Build G2 Aldea
Build G2 Babamots
Build G3 Babamots

37) Draw5PlayAll: Discover R3 G3 Y2 Y2

38) Babamots: Discover G2 Babamots Y3 Pakled
	Draw5PlayAll: Intended.

39) Draw5PlayAll: Move R3 Y2 Aldea
	Draw5PlayAll: But then I realized this is better.

40) Babamots: Discover G2 Aldea Y2 Rubicun

41) Draw5PlayAll: Attack G1 Aldea

42) Babamots: Discover Y1 Babamots B3 Bolarus

43) Draw5PlayAll: Attack G1 Aldea

44) Babamots: Trade G1 R1 Babamots

45) Draw5PlayAll: Sacrifice Y1 Draw5playall
Move R3 Aldea Rubicun

46) Babamots: Sacrifice G2 Rubicun
Build Y1 Bolarus
Build Y1 Babamots

47) Draw5PlayAll: Move R3 Rubicun Pakled

48) Babamots: Sacrifice G2 Pakled
Build B2 Iconia
Build B3 Iconia

49) Draw5PlayAll: Sacrifice Y2 G3
Move B1 G3 G2
Move B1 G2 Iconia
Catastrophe Iconia B

50) Babamots: Build Y2 Babamots
	Babamots: Did you see that there's a new site for playing Homeworlds? Croix made it (medalist #17). It's way better than the system I set up for playing on my Discord server.

https://homeworlds-live2.glitch.me

I think getting to use a mouse to make moves is going to make his site more accessible than SDG. I'm hoping it will strengthen and grow the community.

51) Draw5PlayAll: Trade B2 Y2 G2
	Draw5PlayAll: Sounds interesting.

52) Babamots: Trade Y1 B1 Babamots

53) Draw5PlayAll: Discover G1 Aldea B2 B2

54) Babamots: Build B1 Babamots

55) Draw5PlayAll: Move R3 Pakled B2

56) Babamots: Discover Y2 Babamots G3 Ferenginar

57) Draw5PlayAll: Trade G1 Y1 B2
	wil: New system rocks...

58) Babamots: Build Y3 Ferenginar

59) Draw5PlayAll: Build Y3 G2

60) Babamots: Move B1 Babamots Ferenginar

61) Draw5PlayAll: Sacrifice G1 Aldea
Build Y3 B2

62) Babamots: Sacrifice G3 Babamots
Build B2 Ferenginar
Build B3 Ferenginar
Build B3 Babamots

63) Draw5PlayAll: Sacrifice Y2 G2
Move R3 B2 Bolarus
Discover Y1 B2 G1 G1

64) Babamots: Trade B2 R2 Ferenginar

65) Draw5PlayAll: Attack Y1 Bolarus

66) Babamots: Discover Y3 Ferenginar G1 Bajor

67) Draw5PlayAll: Build Y2 G1

68) Babamots: Build R1 Ferenginar

69) Draw5PlayAll: Move R3 Bolarus G1
	Draw5PlayAll: I typed that as "Belarus" the first time...

70) Babamots: Move B3 Ferenginar Draw5playall
	Babamots: That's funny, I never noticed that they're just a letter apart.

71) Draw5PlayAll: Attack B3 Draw5playall

72) Babamots: Sacrifice Y3 Bajor
Move B1 Ferenginar Draw5playall
Move B1 Babamots Ferenginar
Move B1 Ferenginar Draw5playall
Catastrophe Draw5playall B

73) Draw5PlayAll: Sacrifice Y3 B2
Move Y2 G1 Draw5playall
Move Y1 G1 Ferenginar
Move Y1 Bolarus Babamots

74) Babamots: Sacrifice Y2 Ferenginar
Move R1 Ferenginar Draw5playall
Move R1 Babamots Bolarus

75) Draw5PlayAll: Sacrifice G3 Draw5playall
Build Y2 Babamots
Build Y3 Babamots
Build Y3 Ferenginar
Catastrophe Babamots Yellow

76) Babamots: Sacrifice Y1 Bolarus
Move R2 Ferenginar Babamots

77) Draw5PlayAll: Attack R1 Draw5playall

78) Babamots: Trade B3 G3 Babamots

79) Draw5PlayAll: Move R1 Draw5playall Ferenginar

80) Babamots: Build G1 Babamots
	Draw5PlayAll: This situation looks a bit familiar.
	Babamots: Cool, that's a super interesting move! I'll need to think about this.

81) Draw5PlayAll: Move Y3 G2 Bolarus

82) Babamots: Trade G1 Y1 Babamots
	Draw5PlayAll: As the challenger you're obligated to resign if it becomes a draw...
	Babamots: Oh heck, I didn't quite get that right did I?

83) Draw5PlayAll: Sacrifice R1 Ferenginar
Attack R1 Bolarus
	dlwillson: Great in-game chat and very exciting game!

I love the new live-play options, Babamots! When's the live tourney?

84) Babamots: Build Y1 Babamots
	Draw5PlayAll: This game might have to be called "Ketchup and Mustard II"

85) Draw5PlayAll: Move Y3 Ferenginar G1
	Babamots: I've been meaning to organize the tournament, but I always seem to be busy. It's harder this time since I need to rewrite a bunch of rules/instructions to allow/require real-time play.

86) Babamots: Discover Y1 Babamots G3 Betazed

87) Draw5PlayAll: Build R1 G1

88) Babamots: Build Y2 Babamots

89) Draw5PlayAll: Move R3 G1 Betazed

90) Babamots: Sacrifice Y1 Betazed
Discover R2 Babamots Y3 Iconia

91) Draw5PlayAll: Build Y1 Ferenginar

92) Babamots: Build G1 Babamots

93) Draw5PlayAll: Move Y3 Bolarus Draw5playall

94) Babamots: Build G1 Babamots

95) Draw5PlayAll: Build Y2 G1

96) Babamots: Trade G1 R1 Babamots

97) Draw5PlayAll: Build R3 G1

98) Babamots: Sacrifice G1 Babamots
Build R3 Iconia

99) Draw5PlayAll: Sacrifice Y3 G1
Move R1 G1 Iconia
Move R1 Bolarus G1
Move R1 G1 Iconia
Catastrophe Iconia Red

100) Babamots: Discover Y2 Babamots B3 Mintaka

101) Draw5PlayAll: Build Y3 G1
	Draw5PlayAll: Are you still interested in Zendo?

102) Babamots: Build G1 Babamots
	Babamots: Yes, though I'm spending a lot less time on games lately. I'm trying to get more work done. Do you have a dojo ready?
	Draw5PlayAll: Well, I have this Pixel game where two of the three players seem to have disappeared.

103) Draw5PlayAll: Sacrifice Y3 Draw5playall
Move R3 Betazed Babamots
Discover Y3 G1 B3 B3
Move Y3 B3 Babamots

	Babamots: I forgot that I lost my r2 ship a few moves ago. I just had it locked in my head that I was safe from direct assault. I'm much mistaken if I've got a way out of this.
	Babamots: GG!
	Draw5PlayAll: Well now. I guess my B2/R2 homeworld has withstood two consecutive attempts to unseat me from #1 on the ladder...


36816)
Variants: "Unrated, Hard time"
Started: 2020.9.4, Ended: 2020.9.24
Participants: Layana (S), Takvorian (N)
Winner: Layana

1) Takvorian: Homeworld B2 R1 G3

2) Layana: Homeworld B2 Y1 G3
	Takvorian: Hi, greetings from Berlin, Germany. Have fun! I played my last game 3 years ago and even then I had no clue ;)
	Layana: Hi, greetings from Braunschweig, Germany. That practically makes us neighbours :)

3) Takvorian: Build G1 Takvorian
	Takvorian: Ist ja ein Ding! Da könnte man ja fast am Tisch spielen ;)

4) Layana: Build G1 Layana
	Layana: Also wenn das Spiel im Oktober tatsächlich geliefert wird könnte man sich gerne mal in Berlin treffen, sofern das dann erlaubt ist.

5) Takvorian: Trade G1 B1 Takvorian

6) Layana: Build G1 Layana
	Takvorian: Kann man im Auge behalten. Ich habe mehr als genug Pyramiden bei mir rumzuliegen.

7) Takvorian: Build B1 Takvorian

8) Layana: Trade G1 B1 Layana

9) Takvorian: Trade B1 Y1 Takvorian

10) Layana: Trade G1 Y1 Layana
	Layana: Ich habe neulich versucht, die zu bekommen, das scheint gar nicht so einfach zu sein. Woher hast du die?
	Takvorian: Ich habe vor Jahren die Pyramid Arcade gekauft und auch schon davor hatte ich einige Sets.

11) Takvorian: Build Y2 Takvorian

12) Layana: Build G1 Layana

13) Takvorian: Build Y2 Takvorian

14) Layana: Discover Y1 Layana G3 Fintlewoodlewix

15) Takvorian: Move Y2 Takvorian Fintlewoodlewix

16) Layana: Build Y2 Fintlewoodlewix

17) Takvorian: T Y1 R1 Takvorian

18) Layana: Trade G1 R1 Layana
	Layana: I suppose I seriously messed up the opening this time
	Takvorian: Naja, so schlimm ist es wohl auch nicht, glaube ich. Und einen endgültigen Plan habe ich auch noch nicht ;)

19) Takvorian: M R1 Takvorian Fintlewoodlewix

20) Layana: Sacrifice R1 Layana
Attack R1 Fintlewoodlewix

21) Takvorian: D Y2 Fintlewoodlewix R2 Epsal

22) Layana: Build G1 Layana

23) Takvorian: B G1 Takvorian

24) Layana: Build R1 Fintlewoodlewix

25) Takvorian: D Y2 Takvorian B3 Ertrus

26) Layana: Build R2 Fintlewoodlewix

27) Takvorian: T Y2 R2 Ertrus

28) Layana: Move R1 Fintlewoodlewix Takvorian

29) Takvorian: A R1 Takvorian

30) Layana: Sacrifice Y2 Fintlewoodlewix
Move R1 Fintlewoodlewix Takvorian
Move R2 Fintlewoodlewix Takvorian
Catastrophe Takvorian R

31) Takvorian: T G3 R3 Takvorian

32) Layana: Trade G1 R1 Layana

33) Takvorian: M Y2 Epsal Ertrus

34) Layana: Build G1 Layana

35) Takvorian: T B1 Y1 Takvorian

36) Layana: Build Y2 Fintlewoodlewix

37) Takvorian: B Y2 Takvorian

38) Layana: Discover Y1 Fintlewoodlewix G1 Stavromueller

39) Takvorian: D Y1 Takvorian G3 Epsal

40) Layana: Build Y3 Fintlewoodlewix

41) Takvorian: B Y3 Epsal

42) Layana: Build Y3 Stavromueller

43) Takvorian: S Y2 Takvorian
M Y1 Epsal Stavromueller
M Y2 Ertrus Stavromueller
C Stavromueller Y

44) Layana: Move B1 Layana Fintlewoodlewix

45) Takvorian: B G1 Takvorian

46) Layana: Sacrifice G3 Layana
Build B1 Fintlewoodlewix
Build B1 Fintlewoodlewix
Build G2 Layana

47) Takvorian: S Y3 Epsal
M R3 Takvorian Ertrus
M R3 Ertrus Layana
M R2 Ertrus Takvorian

48) Layana: Sacrifice Y3 Fintlewoodlewix
Move B1 Fintlewoodlewix Takvorian
Move B1 Fintlewoodlewix Takvorian
Move B1 Fintlewoodlewix Takvorian
Catastrophe Takvorian B

	Takvorian: Danke fürs Spiel. Nach meinem katastrophalen Zug mit meinem r1 in dein System war das Spiel wohl gelaufen...
	Layana: Ich danke - und ich spiele gerne auch ein Weiteres. Gern auch Realm oder Martian Chess. 


36871)
Variants: "Unrated"
Started: 2020.9.4, Ended: 2020.12.3
Participants: yellowturtle (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) yellowturtle: Homeworld B1 Y3 G3

3) Trydnt: Build G1 Trydnt
	yellowturtle: Thanks for playing!  Have fun!
	Trydnt: challenge me anytime. happy to have multiple games going simultaneously too if you're looking to practice a lot

4) yellowturtle: Build G1 Yellowturtle

5) Trydnt: Trade G1 B1 Trydnt

6) yellowturtle: Trade G1 B1 Yellowturtle

7) Trydnt: Build B2 Trydnt

8) yellowturtle: Build B2 Yellowturtle

9) Trydnt: Trade B2 Y2 Trydnt

10) yellowturtle: Discover B1 Yellowturtle G2 Altair

11) Trydnt: Discover B1 Trydnt G3 G3

12) yellowturtle: Build G1 Yellowturtle

13) Trydnt: Build Y1 Trydnt

14) yellowturtle: Trade G1 Y1 Yellowturtle

15) Trydnt: Trade Y1 R1 Trydnt

16) yellowturtle: Build G1 Yellowturtle

17) Trydnt: Build R1 Trydnt

18) yellowturtle: Trade B2 R2 Yellowturtle

19) Trydnt: Build B2 G3

20) yellowturtle: Move Y1 Yellowturtle Altair

21) Trydnt: Move R1 Trydnt G3

22) yellowturtle: Build B2 Altair

23) Trydnt: Trade B2 Y2 G3

24) yellowturtle: Build G1 Yellowturtle

25) Trydnt: Build G1 Trydnt

26) yellowturtle: Discover G1 Yellowturtle Y2 Betelgeuse

27) Trydnt: Build G2 Trydnt

28) yellowturtle: Build G2 Betelgeuse

29) Trydnt: Discover Y2 Trydnt B3 B3

30) yellowturtle: Trade B2 R2 Altair

31) Trydnt: Build B2 G3

32) yellowturtle: Sacrifice G3 Yellowturtle
Build Y1 Altair
Build Y3 Altair
Build G3 Yellowturtle

33) Trydnt: Move Y2 G3 Altair
Catastrophe Altair Y

34) yellowturtle: Trade G1 Y1 Yellowturtle

35) Trydnt: Move G1 Trydnt B3

36) yellowturtle: Build G1 Yellowturtle

37) Trydnt: Build Y1 B3

38) yellowturtle: Move Y1 Yellowturtle Altair

39) Trydnt: Discover Y2 B3 R2 R2

40) yellowturtle: Discover B1 Altair Y3 Castor

41) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build Y2 B3
Build Y3 R2

42) yellowturtle: Sacrifice G3 Yellowturtle
Build G3 Yellowturtle
Build B2 Castor
Build B3 Castor

43) Trydnt: Sacrifice Y2 R2
Move B1 G3 R2
Move B1 R2 Castor
Catastrophe Castor B

44) yellowturtle: Trade G1 B1 Yellowturtle

45) Trydnt: Sacrifice G2 Trydnt
Build Y2 R2
Build Y3 R2

46) yellowturtle: Move B1 Yellowturtle Altair

47) Trydnt: Move Y3 R2 G3

48) yellowturtle: Build G1 Yellowturtle

49) Trydnt: Build G2 Trydnt

50) yellowturtle: Sacrifice G3 Yellowturtle
Build G3 Yellowturtle
Build R1 Yellowturtle
Build B1 Altair

51) Trydnt: Move Y3 G3 Altair

52) yellowturtle: Discover Y1 Altair R3 Deneb

53) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build R3 Trydnt
Build R3 G3

54) yellowturtle: Sacrifice B1 Altair
Trade G2 B2 Betelgeuse

55) Trydnt: Sacrifice R1 Trydnt
Attack R2 Altair

56) yellowturtle: Build G2 Betelgeuse

57) Trydnt: Attack B1 Altair

58) yellowturtle: Sacrifice G3 Yellowturtle
Build G3 Yellowturtle
Build B1 Betelgeuse
Build B3 Betelgeuse

59) Trydnt: Sacrifice Y1 B3
Move B2 G3 Betelgeuse
Catastrophe Betelgeuse B

60) yellowturtle: Trade R1 Y1 Yellowturtle

61) Trydnt: Sacrifice G3 Trydnt
Build G3 Trydnt
Build B1 Altair
Build B2 Altair

62) yellowturtle: Build R1 Yellowturtle

63) Trydnt: Sacrifice Y3 R2
Move Y2 B3 R2
Move Y2 R2 Yellowturtle
Move Y2 R2 Yellowturtle
Catastrophe Yellowturtle Y

64) yellowturtle: Move Y1 Deneb Trydnt

65) Trydnt: Sacrifice Y3 Altair
Move B1 Altair Yellowturtle
Move B1 Altair Yellowturtle
Move B2 Altair Yellowturtle
Catastrophe Yellowturtle B



36887)
Variants: "Unrated, Hard time"
Started: 2020.9.5, Ended: 2020.10.5
Participants: wil (S), Takvorian (N)
Winner: wil

1) Takvorian: Homeworld B2 R3 G3

2) wil: H Y2 B1 G3
	Takvorian: Hi wil,
Greetings from Berlin, Germany. Perhaps you remember, we played teaching games more than 3 years ago.
Then I got no grip on the game and quitted playing it. But I still find hw a fascinating game and would like to be able to play it on a decent (say average) level.
So, if it’s okay for you let’s have another teaching game.

3) Takvorian: Build G1 Takvorian
	wil: No worries, would love to, thx for the game.
	wil: We are all still learning... The way I see it...
Ya lose to an attack
Ya try the attack on others
They use various methods to counter the attack
You use those counters when someone tries against you again.

John Cooper and trydnt play bizarre outta the box moves.
Andy Looney let's a steady pace of growth and capture eventual)y overwhelm.
I like cornering economies..
We all play so do#ferent yet competitive.



4) wil: B G1 Wil
	Takvorian: Thanks for playing! Have fun.
	wil: We are all still learning... The way I see it...
Ya lose to an attack
Ya try the attack on others
They use various methods to counter the attack
You use those counters when someone tries against you again.

John Cooper and trydnt play bizarre outta the box moves.
Andy Looney let's a steady pace of growth and capture eventual)y overwhelm.
I like cornering economies..
We all play so do#ferent yet competitive.



5) Takvorian: Trade G1 Y1 Takvorian
	wil: You seen babamots discord page? He is working on live games where we can talk and move electronic pieces with same game codes as these on dag...

6) wil: T G1 B1 Wil
	Takvorian: No I don’t know about it. Do you have a link?
	Takvorian: By the way, are you the Wil I saw on one of Andy's youtube videos demonstrating the game with gigantic pyramids?

7) Takvorian: Build Y1 Takvorian
	wil: Lol, yup
	wil: Homeworlds group on fb
	Takvorian: Fascinating. So you know Andy and John Cooper in person. Do you play them from time to time over the gable?

8) wil: B B1 Wil
	wil: Before times all the time.  Now we zoom game nights.

9) Takvorian: Build Y1 Takvorian
	wil: I suggest we start another game but play this one out to see how it goes.
	wil: I suggest we start another game but play this one out to see how it goes.
	wil: So firat thing I do is try to create a monopoly..in this case you picked a two blue, so I picked a one. Leaving me only 4 ships to get to the 3$.  And allowing me most of the time to freeze an economy...put my opponent in my game.
	wil: I'd also recommend you get on the ladder now and start climbing

10) wil: D B1 Wil Y3 Y3
	Takvorian: Ok, I will start a second game.
	Takvorian: I registered in the ladder already. The problem is that I enter the ladder on last place and can only challenge up to 5 places above me. I checked these players and all weren’t active for several months. So a challenge is meaningless and there is no way for me to get a ladder game...
	Draw5PlayAll: Sorry for jumping in, but...

If you challenge someone and nothing happens for 7 days, it is considered declined.
If a player refuses 4 challenges in a row they are dropped to the end. So you *can* shake them down, albeit slowly.
	Takvorian: @Draw5: thanks for the hint, I did that with the player 5 places above me. He wasn’t online for more than 600 days and can still decline 2 challenges without dropping. And if he finally drops down the player above him was not here for 233 days...
So if I finally get a ladder game it will be in the very far future ;)
I wish that inactive players would be taken out of the ladder automatically...
	wil: Tis why I say start climbing...it is a long slug to work your way thru the dead wood...but worth it.

11) Takvorian: B G1 Takvorian

12) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil

13) Takvorian: T G3 B3 Takvorian

14) wil: D B2 Y3 Y2 Y2

15) Takvorian: B B3 Takvorian

16) wil: T B2 Y2 Y3

17) Takvorian: Discover B3 Takvorian G1 Ertrus
	wil: Catastrophe ya wanna take that back
	wil: Should I blow up half your home world?
	Takvorian: Just for my understanding...
How would that work out? You must be coming from a small star to enter my homeworld, and you have no yellow ships to sac.
Probably I don’t recognize some trick here...
	Takvorian: By the way, just after sending my question below, the take back button disappeared...
Is this always the case, when responding to a chat?
	wil: Lol...got me, I went to the wrong star
	wil: And no it should be there....this site has been running on its own and bugs happen
	wil: This is why you play games out waiting on dumb moves

18) wil: T B3 G3 Wil

19) Takvorian: M Y1 Takvorian Ertrus

20) wil: D Y2 Y3 G1 G1

21) Takvorian: B Y3 Ertrus

22) wil: B Y3 G1

23) Takvorian: T Y1 R1 Takvorian

24) wil: B G2 Wil

25) Takvorian: B R1 Takvorian

26) wil: T B1 R1 Wil

27) Takvorian: M R1 Takvorian Ertrus

28) wil: B R2 Wil

29) Takvorian: B R2 Ertrus

30) wil: M R1 Wil Y3

31) Takvorian: M Y3 Ertrus Y3

32) wil: T B1 Y1 Y3

33) Takvorian: D Y3 Y3 B1 Epsal

34) wil: B R2 Wil

35) Takvorian: M R2 Ertrus Y3

36) wil: Sacrifice G2 Wil
Build R3 Y3
Build R3 Wil

37) Takvorian: M R2 Y3 Wil
C Wil R

38) wil: M R1 Y3 G1

39) Takvorian: M R1 Takvorian Epsal

40) wil: B G2 Wil



36936)
Variants: "Unrated, Hard time"
Started: 2020.9.6, Ended: 2020.10.6
Participants: wil (S), Takvorian (N)
Winner: wil

1) Takvorian: Homeworld R1 B2 G3

2) wil: H Y2 B1 G3

3) Takvorian: B G1 Takvorian

4) wil: B G1 Wil

5) Takvorian: T G1 B1 Takvorian

6) wil: T G1 B1 Wil

7) Takvorian: B B2 Takvorian
	wil: Poifect forcing me out of my comfort zone.

8) wil: B B2 Wil
	Takvorian: Ha, I wish I had something like a comfort zone ;)

9) Takvorian: B G1 Takvorian

10) wil: D B1 Wil Y3 Y3

11) Takvorian: T B1 Y1 Takvorian

12) wil: B G1 Wil

13) Takvorian: M B2 Takvorian Y3

14) wil: T G1 R1 Wil

15) Takvorian: T G1 R1 Takvorian

16) wil: B R2 Wil

17) Takvorian: B R2 Takvorian

18) wil: M G3 Wil Y3

19) Takvorian: D B2 Y3 G2 Epsal

20) wil: M R1 Wil Y3

21) Takvorian: D R2 Takvorian Y3 Ertrus

22) wil: B G1 Y3

23) Takvorian: D R1 Takvorian G3 Halut

24) wil: D B2 Wil Y3 Why3

25) Takvorian: B G1 Takvorian

26) wil: T G1 Y1 Y3

27) Takvorian: T B2 Y2 Epsal

28) wil: Move G3 Y3 Wil

29) Takvorian: T G1 B1 Takvorian

30) wil: Move R2 Wil Halut

31) Takvorian: B Y1 Epsal

32) wil: A R1 Halut

33) Takvorian: B Y2 Takvorian

34) wil: B G1 Wil



36937)
Variants: "Unrated"
Started: 2020.9.9, Ended: 2020.11.9
Participants: Animiral (S), wil (N)
Winner: Animiral

1) wil: H Y2 B1 G3

2) Animiral: Homeworld G3 B2 Y3

3) wil: B G1 Wil
	Animiral: Hello! This is one of my two first games on this site, I hope I can put up some resistance ;-)
Enjoy!
	wil: Do you play homeworlds?  Do you pyramid arcade? Understand the game?

4) Animiral: Build Y1 Animiral
	Animiral: I've played it once with a friend and a few times with my gf, so I know the rules.
To say that I understand the game is maybe a stretch...

5) wil: T G1 B1 Wil
	wil: Ok cool

6) Animiral: Trade Y1 B1 Animiral

7) wil: B B2 Wil

8) Animiral: Build B2 Animiral

9) wil: D B1 Wil Y3 Y3

10) Animiral: Discover B1 Animiral Y1 Spongebob
	Animiral: I feel like I'm in a bind already...
	wil: I could go easier on ya...but do you want me to?  I feel you learn by seeing others offensive moves..then you try them out...and then you learn by people defending against it.  But you are correct...I have started my domination of blue...I can back off, but then you won't see the reason to avoid the position.

11) wil: B B3 Wil
	Animiral: No need to go easy :)

I didn't like this move when I first thought of it, but now I think I'm fine.

12) Animiral: Build B3 Animiral

13) wil: Trade B3 Y3 Wil
	Animiral: It now occurs to me that it's because you can build one more large ship.

14) Animiral: Trade B3 R3 Animiral

15) wil: Trade B2 R2 Wil

16) Animiral: Build Y1 Animiral

17) wil: D Y3 Wil G3 G3

18) Animiral: Discover B2 Animiral G1 Midworld

19) wil: B G1 Wil
	Animiral: So sorry for the delay!
Due to some stressful work days, I have stopped paying attention to the clock on here :-(
	wil: No worries

20) Animiral: Build B2 Midworld

21) wil: Move G1 Wil Y3

22) Animiral: Trade B2 Y2 Midworld

23) wil: B G1 Wil

24) Animiral: Build B2 Midworld

25) wil: B B3 Y3

26) Animiral: Move B2 Midworld Y3
	wil: Oh look honey, the big blue ones just came available in the store so I brought one home.

27) wil: S B1 Y3
T B3 R3 Y3
	Animiral: Fortunately for me, they're far from sold out :)

28) Animiral: Discover B2 Y3 Y1 Noredsallowed
	wil: Oh, I thought.they were.special.  in that case I'll just put these two back

29) wil: B G2 Y3

30) Animiral: Build Y2 Midworld

31) wil: M R3 Y3 Midworld

32) Animiral: Sacrifice Y2 Midworld
Discover Y2 Midworld G2 Evcuatonstation
Move B2 Midworld Evcuatonstation

33) wil: S G3 Wil
B G2 Y3
B Y2 G3
B G3 Wil

34) Animiral: Build R1 Animiral

35) wil: T G1 B1 Wil

36) Animiral: Build B3 Evcuatonstation

37) wil: M B1 Wil G3
	Animiral: Somehow my position doesn't seem so bad now :-)
It must mean that you did go easy on me!

Trydnt in my other game nuked me to bits in no time though.
	Animiral: I also thought about moving my r3 to NoRedsAllowed, but it felt like cheating.
	wil: Lol trydnt is my protege that has surpassed the teacher!

38) Animiral: Trade B1 G1 Spongebob

39) wil: S Y3 G3
M G2 Y3 Evcuatonstation
M G2 Y3 Evcuatonstation
M G1 Y3 Evcuatonstation
C Evcuatonstation G

40) Animiral: Discover Y3 Animiral R1 Barad-dur
	wil: Let's clear the board

	Animiral: Oh no D:
Time to start over

41) wil: B B1 G3

42) Animiral: Build G1 Spongebob

43) wil: B R1 Midworld

44) Animiral: Move R1 Animiral Spongebob

45) wil: M B1 G3 Midworld

46) Animiral: Build G2 Spongebob

47) wil: B G2 Wil
	Animiral: Sorry, I went over time again...

Maybe I'm too slow for the slowest version of this game ^^
	wil: Lol. No worries

48) Animiral: Sacrifice G2 Spongebob
Build Y2 Animiral
Build Y3 Barad-dur

49) wil: B Y3 G3

50) Animiral: Discover G1 Spongebob B3 Godzilla

51) wil: M R2 Wil Godzilla

52) Animiral: Sacrifice Y3 Barad-dur
Move G1 Godzilla Wil
Move G1 Spongebob Godzilla
Move G1 Godzilla Wil
Catastrophe Wil G
	Animiral: Thanks for the game, it was fun :)

I'm sure I made a lot of mistakes, but I can't find a way to go back through the moves here.

I hope some day they make SDG2...
As it is, I don't think I will be playing more.
It's too tedious to use and often slow to load.
	wil: Goto the homeworlds discussion on FB...we have other online options....live games even
	wil: Goto the homeworlds discussion on FB...we have other online options....live games even



36935)
Variants: "Unrated"
Started: 2020.9.9, Ended: 2020.10.14
Participants: Trydnt (S), Animiral (N)
Winner: Trydnt

1) Animiral: Homeworld G2 Y1 B3

2) Trydnt: Homeworld R3 B2 G3
	Animiral: Hello, this is my first game on this site.
Have fun :)

3) Animiral: Build B1 Animiral
	Trydnt: Welcome! Have fun and good luck :)

4) Trydnt: Build G1 Trydnt

5) Animiral: Trade B1 Y1 Animiral

6) Trydnt: Trade G1 Y1 Trydnt

7) Animiral: Build Y2 Animiral

8) Trydnt: Build Y2 Trydnt

9) Animiral: Trade Y1 G1 Animiral

10) Trydnt: Build G1 Trydnt

11) Animiral: Discover G1 Animiral Y3 Tasty

12) Trydnt: Discover G1 Trydnt Y1 Y1

13) Animiral: Build B1 Animiral

14) Trydnt: Discover Y1 Trydnt B1 B1
	Animiral: Bad idea ^^ you get free yellow 3s


15) Animiral: Discover B1 Animiral G3 Avocado

16) Trydnt: Sacrifice G3 Trydnt
Build Y2 B1
Build Y3 Trydnt
Build Y3 B1

17) Animiral: Sacrifice G1 Tasty
Build Y3 Animiral

18) Trydnt: Sacrifice Y2 B1
Move Y1 B1 Avocado
Move Y1 Avocado Animiral
Catastrophe Animiral Y
	Animiral: Oh wow, much yellow

19) Animiral: Build B1 Animiral

20) Trydnt: Build G1 Y1

	Animiral: I now see that you can just build one more green and then nuke me.

Well played :)
	Trydnt: good game :)


36939)
Variants: "Unrated, Hard time"
Started: 2020.9.9, Ended: 2020.9.11
Participants: wil (S), eliscinsky (N)
Winner: wil

1) eliscinsky: H R1 B2 G3

2) wil: H Y3 B1 G3
	eliscinsky: Hi wil, good luck. Even though I don't think you'll need it. ;)

3) eliscinsky: B G1 Eliscinsky
	wil: I always retain the right to make colossal blunders.

4) wil: B G1 Wil

5) eliscinsky: Trade G1 Y1 Eliscinsky

6) wil: T G1 B1 Wil

7) eliscinsky: Trade Y1 B1 Eliscinsky

8) wil: B B2 Wil
	eliscinsky: ah, ah, ah ... no freeze out for you. And yet I feel you're being tricky.

9) eliscinsky: Build B2 Eliscinsky
	wil:  But I like freezes...

10) wil: D B1 Wil Y2 Y2
	eliscinsky: I'll get ya a Rits'a ice, when next we meet. :D
	eliscinsky: I prefer warmer climates. ;)

11) eliscinsky: Trade B1 Y1 Eliscinsky

12) wil: S G3 Wil
B B1 Y2
B B3 Y2
B B3 Wil

13) eliscinsky: Discover B2 Eliscinsky G3 Kronos
	wil: I cant help it.
	eliscinsky: Cold man, cold.

14) wil: T B3 R3 Y2

15) eliscinsky: Build B3 Kronos
	wil: Cold is almost froze

16) wil: M R3 Y2 Kronos

17) eliscinsky: S Y1 Eliscinsky
M B3 Kronos Y2

18) wil: Move B2 Wil Y2
Catastrophe Y2 B

19) eliscinsky: Build G1 Eliscinsky
	wil: oopsie..got chillier
	eliscinsky: Oh damn! I wasn't paying attention. Guess I get to start over.  Which puts you WAAAAY ahead.

20) wil: A B2 Kronos
	eliscinsky: What a noob mistake. I should just resign. Ah well,  I'll try harder.

	wil: I rely on noon mistakes!

	wil: Start another while we do ish this if youd like
	eliscinsky: I concede this game. Haha. I'll join one of your other games. 


36954)
Variants: "Unrated, Hard time"
Started: 2020.9.11, Ended: 2020.9.16
Participants: eliscinsky (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) eliscinsky: Homeworld B2 R3 G3
	eliscinsky: Thanks Wil, "Do overs" are the best. LOL

3) wil: B G1 Wil

4) eliscinsky: Build G1 Eliscinsky

5) wil: T G1 Y1 Wil

6) eliscinsky: Trade G1 Y1 Eliscinsky

7) wil: T Y1 B1 Wil

8) eliscinsky: Build Y1 Eliscinsky
	wil: Do overs are the best...

9) wil: B B1 Wil
	eliscinsky: THIS IS NOT GROUNDHOG DAY!!!
THIS IS NOT GROUNDHOG DAY!!!
THIS IS NOT GROUNDHOG DAY!!!

Maybe I should have repeated BeetleJuice?

10) eliscinsky: Build Y1 Eliscinsky

11) wil: D B1 Wil Y3 Y3

12) eliscinsky: Build G1 Eliscinsky

13) wil: Sacrifice G3 Wil
Build B2 Wil
Build B2 Y3
Build B3 Y3

14) eliscinsky: Discover Y1 Eliscinsky G1 Risa
	eliscinsky: That is a wild strategy you play. 
	wil: Tactical galactical.domination

15) wil: D B3 Y3 G1 G1

16) eliscinsky: Discover Y1 Eliscinsky R1 Vulcan

17) wil: T B2 G2 Wil

18) eliscinsky: Sacrifice G3 Eliscinsky
Build Y2 Risa
Build Y2 Vulcan
Build Y3 Eliscinsky

19) wil: T B3 Y3 G1

20) eliscinsky: Build G2 Eliscinsky
	wil: There...swe how



	wil: There...see how much fun that was?
	eliscinsky: Oh ya..

21) wil: S G2 Wil
B B2 Wil
B B3 Y3

22) eliscinsky: S Y2 Vulcan
M G1 Eliscinsky G1
M G2 Eliscinsky G1

23) wil: Discover Y3 G1 G3 G3

24) eliscinsky: S G2 G1
B Y2 Vulcan
B G2 G1

25) wil: T B2 G2 Y3

26) eliscinsky: T Y3 G3 Eliscinsky

27) wil: Discover B2 Wil Y3 Why3

28) eliscinsky: T Y1 R1 Eliscinsky

29) wil: M B3 Y3 Wil

30) eliscinsky: S Y2 Risa
M Y1 Vulcan Y3
M Y1 Risa Why3

31) wil: D B1 Y3 Y1 Y1
	wil: Nice chasing...like little skeeters I have to keep slapping.

32) eliscinsky: Sacrifice Y2 Vulcan
Move Y1 Why3 Wil
Move Y1 Y3 Wil
	eliscinsky: That's me ... a pesticle (hybrid word in my household)

33) wil: S G2 Y3
B B2 Y1
B B3 Why3

34) eliscinsky: Sacrifice G2 G1
Build Y2 Wil
Build G1 Eliscinsky
Catastrophe Wil Y
	eliscinsky: The skeeters are back.

35) wil: S B2 Y1
T B3 Y3 Why3
T B3 G3 Wil
	wil: I dont enjoy planning or thinking about moves...i just like experimenting and see what happens
	eliscinsky: hahaha, me too

36) eliscinsky: Trade G1 Y1 Eliscinsky

37) wil: T B2 R2 Why3

38) eliscinsky: Build G1 G1

39) wil: B G2 Wil

40) eliscinsky: Build Y1 Eliscinsky

41) wil: S G2 Wil
B B2 Wil
B B2 Y1

42) eliscinsky: Move Y1 Eliscinsky G1

43) wil: T B2 R2 Wil

44) eliscinsky: Move R1 Eliscinsky G1

45) wil: Move R2 Why3 G1

46) eliscinsky: Build Y2 G1

47) wil: A R1 G1
	wil: Assembling the doomsday machine takes time
	wil: The guns were acquired long ago but your catastrophe helped
	eliscinsky: I think your win is inevitable, but lets see where this goes.

48) eliscinsky: B G2 Eliscinsky

49) wil: S Y3 G3
M Y3 Why3 G1
M Y3 G1 Eliscinsky
M G3 Wil Eliscinsky

50) eliscinsky: Build G2 G1
Catastrophe G1 G

51) wil: B G1 Eliscinsky
C Eliscinsky G

52) eliscinsky: Trade Y1 G1 Eliscinsky

53) wil: A G1 Eliscinsky
	wil: Tried something completely diffrent

	eliscinsky: One last move - haha!
	eliscinsky: You could always:
s y3 eliscinsky
m r2 wil y1
m b2 y1 wil
m b1 y1 wil
;)
	wil: That is interesting...idk if I ever would have thought of it!
	wil: Lol....i tried..but dang it y1 is two moves away.
	wil: Gr8..anytime


36933)
Variants: "Unrated, Hard time"
Started: 2020.9.11, Ended: 2020.9.15
Participants: Layana (S), eliscinsky (N)
Winner: eliscinsky

1) eliscinsky: Homeworld B1 Y2 G3

2) Layana: Homeworld R2 B2 G3 *
	eliscinsky: We meet again. :D On even ground this time, as don't think you need any help.  Good Luck & Have Fun.
	Layana: Thanks, you too. 

3) eliscinsky: Build G1 Eliscinsky

4) Layana: Build G1 Layana

5) eliscinsky: Trade G1 B1 Eliscinsky

6) Layana: Trade G1 Y1 Layana

7) eliscinsky: B B1 Eliscinsky

8) Layana: Build G1 Layana

9) eliscinsky: Discover B1 Eliscinsky Y3 Sol

10) Layana: Trade G1 R1 Layana

11) eliscinsky: S G3 Eliscinsky
B B2 Eliscinsky
B B2 Sol
B B3 Sol

12) Layana: Build G1 Layana

13) eliscinsky: Discover B3 Sol G1 Earth
	Layana: Wow, just wow. I've never seen that happening... 

14) Layana: Build Y1 Layana
	Layana: I suppose this is over, but let's see one or two more moves. 

15) eliscinsky: Trade B2 G2 Eliscinsky

16) Layana: Move G3 Layana Earth

17) eliscinsky: Sacrifice G2 Eliscinsky
Build B2 Earth
Build B3 Eliscinsky

18) Layana: Sacrifice R1 Layana
Attack B3 Earth

19) eliscinsky: Trade B2 G2 Earth

20) Layana: Build B2 Earth

21) eliscinsky: Build G1 Earth
Catastrophe Earth G

	eliscinsky: I thought your choice of 2 medium stars as HW interesting. It does open you up to attack from 2 star types (large & small), just like you'd already had a star catastrophed. It's very hard to play.

My approach was a freeze out [of an economy]. Using the blue / trade economy allows you to trade for whatever size of another economy you want. Kind of leapfrogging to the middle or larges, and bypassing the smalls. It can also be done with the other economies, but I think it works best w/ the trade economy.

I'm always up for rematches.
	Layana: Thanks for the game, and well played. Homeworlds is amazing - so much to discover. And so unforgiving. If you don't mind just use my standing challenge? 


36964)
Variants: "Hard time"
Started: 2020.9.13, Ended: 2020.10.14
Participants: Simon (S), dlwillson (N)
Winner: Simon

1) dlwillson: Homeworld Y1 B3 G3
	Simon: Have fun :)

2) Simon: Homeworld B2 R1 G3 Simon
	dlwillson: You too! Thanks for accepting the challenge!

3) dlwillson: Build G1 Dlwillson

4) Simon: Build G1 Simon

5) dlwillson: Trade G1 R1 Dlwillson

6) Simon: Trade G1 R1 Simon

7) dlwillson: B R2 Dlwillson

8) Simon: Build R2 Simon

9) dlwillson: Build R2 Dlwillson

10) Simon: Trade R2 Y2 Simon

11) dlwillson: D R1 Dlwillson B2 Sea

12) Simon: Discover R1 Simon G3 G3

13) dlwillson: D R2 Dlwillson Y2 Sol

14) Simon: Build Y1 Simon

15) dlwillson: Move R2 Sol G3

16) Simon: Sacrifice Y1 Simon
Discover R1 G3 G1 G1

17) dlwillson: B G1 Dlwillson

18) Simon: Build Y1 Simon

19) dlwillson: T G1 Y1 Dlwillson

20) Simon: Discover Y1 Simon B3 B3

21) dlwillson: M Y1 Dlwillson Sea

22) Simon: Build Y2 Simon

23) dlwillson: Build G1 Dlwillson

24) Simon: Discover Y2 Simon B3 B3a

25) dlwillson: M G1 Dlwillson Sea

26) Simon: Sacrifice G3 Simon
Build Y2 B3
Build Y3 B3a
Build Y3 Simon

27) dlwillson: B Y3 Sea

28) Simon: Trade Y3 G3 B3a

29) dlwillson: Discover Y1 Sea Y3 Sol

30) Simon: Build G1 B3a

31) dlwillson: Discover G1 Sea R3 Mars

32) Simon: Trade G3 R3 B3a

33) dlwillson: B G2 Dlwillson

34) Simon: Build R2 B3a

35) dlwillson: Build R3 G3

36) Simon: Move Y2 Simon Mars

37) dlwillson: M Y3 Sea Mars

38) Simon: Move Y2 Mars Sea

39) dlwillson: S Y1 Sol
M R3 G3 Sea

40) Simon: Sacrifice Y2 B3
Move R1 G1 Sea
Move R2 B3a Sea
Catastrophe Sea Red

41) dlwillson: M G2 Dlwillson Sea

42) Simon: Build R1 B3a

43) dlwillson: Sacrifice G2 Sea
Build R1 Dlwillson
Build R2 G3

44) Simon: Move R1 B3a Sea

45) dlwillson: Trade R1 B1 Dlwillson

46) Simon: Build R1 B3a

47) dlwillson: B R3 Dlwillson

48) Simon: Trade R3 G3 B3a

49) dlwillson: M R3 Dlwillson Sea

50) Simon: Build R3 B3a

51) dlwillson: Attack Y2 Sea

52) Simon: Sacrifice G3 B3a
Build Y1 B3a
Build Y2 Simon
Build Y3 B3

53) dlwillson: Attack R1 Sea

54) Simon: Build G1 B3a

55) dlwillson: Trade R1 B1 Sea

56) Simon: Discover Y3 B3 B2 B2

57) dlwillson: B B1 Dlwillson

58) Simon: Move R1 B3a B2

59) dlwillson: Sacrifice Y3 Mars
Move R2 G3 Simon
Move R2 G3 Simon
Discover R3 Sea Y3 Sol

60) Simon: Move R3 B3a Sea

61) dlwillson: Sacrifice Y2 Sea
Move B1 Sea Sol
Discover B1 Dlwillson Y2 Chara

62) Simon: Move G1 B3a B2
	dlwillson: Hm. I hope I had a plan for this possibility.

63) dlwillson: Sacrifice G1 Mars
Build R1 Simon
Catastrophe Simon R
	Simon: The only worthwhile counter. It's still possible that the yellow monopolization has yielded too much initiative; I felt the position was even before my tr r3 g3.

64) Simon: Build R1 B2

65) dlwillson: B G1 Dlwillson

66) Simon: Build G2 B2

67) dlwillson: S G1 Dlwillson
B R1 Sol

68) Simon: Build G1 B2

69) dlwillson: T R3 G3 Sol

70) Simon: Move G1 B2 Dlwillson

71) dlwillson: Sacrifice G3 Sol
Build R2 Sol
Build R2 Sol
Build R3 Dlwillson

72) Simon: Sacrifice G2 B2
Build R3 Sea
Build G2 B2

73) dlwillson: S R1 Sol
A G1 Dlwillson

74) Simon: Sacrifice Y3 Simon
Move G1 B2 Dlwillson
Move G2 B2 Dlwillson
Move R3 Sea Dlwillson
Catastrophe Dlwillson G

	dlwillson: Good game! Looks like your yellow play paid off in the end!
	Simon: GG, thanks! Swingy game.


36958)
Variants: "Unrated, Hard time"
Started: 2020.9.13, Ended: 2020.9.13
Participants: TrillP (S), Layana (N)
Winner: Layana

1) Layana: Homeworld B2 - G3 *

2) TrillP: Homeworld B2 R1 G3

3) Layana: Build G1 Layana

4) TrillP: Build G1 Trillp

5) Layana: Trade G1 Y1 Layana

6) TrillP: Trade G1 Y1 Trillp

7) Layana: Build G1 Layana

8) TrillP: Build G1 Trillp

9) Layana: Discover G1 Layana B3 Andoria

10) TrillP: Trade G1 R1 Trillp

11) Layana: Build G1 Layana

12) TrillP: Move R1 Trillp Andoria

13) Layana: Sacrifice G1 Andoria
Build G1 Layana

14) TrillP: Trade Y1 R1 Trillp

15) Layana: Build Y1 Layana

16) TrillP: Build G1 Trillp

17) Layana: Discover G1 Layana B1 Betazed

18) TrillP: Trade G1 Y1 Trillp

19) Layana: Build Y2 Layana

20) TrillP: Trade R1 G1 Andoria

21) Layana: Trade Y1 R1 Layana

22) TrillP: Build G2 Trillp

23) Layana: Build G2 Betazed

24) TrillP: Sacrifice G3 Trillp
Build G2 Andoria
Build G3 Trillp
Build Y1 Trillp

25) Layana: Build Y2 Layana

26) TrillP: Trade G2 Y2 Andoria

27) Layana: Sacrifice Y1 Layana
Move Y2 Layana Betazed

28) TrillP: Sacrifice Y2 Andoria
Move Y1 Trillp Andoria
Move G3 Trillp Andoria

29) Layana: Sacrifice Y2 Betazed
Move G1 Betazed Andoria
Move G1 Layana Andoria
Catastrophe Andoria Green

30) TrillP: Build G1 Trillp

31) Layana: Build R2 Layana

32) TrillP: Trade G2 B2 Trillp

33) Layana: Sacrifice Y2 Layana
Move G3 Layana Andoria
Move G3 Andoria Trillp

34) TrillP: Build R2 Trillp

35) Layana: Sacrifice R2 Layana
Attack R2 Trillp
Attack B2 Trillp

36) TrillP: Build R2 Trillp
Catastrophe Trillp Red

37) Layana: Sacrifice G2 Betazed
Build B1 Trillp
Build B1 Trillp
Catastrophe Trillp B



36959)
Variants: "Hard time"
Started: 2020.9.13, Ended: 2020.10.17
Participants: Jerome (S), Takvorian (N)
Winner: Jerome

1) Takvorian: H R1 B2 G3

2) Jerome: Homeworld R3 B1 G3
	Takvorian: Have fun!
	Jerome: Hi! Have a nice game!

3) Takvorian: B G1 Takvorian
	Takvorian: As you answered so quickly, I suppose you are from Europe. I am from Berlin, what’s your location?

4) Jerome: Build G1 Jerome

5) Takvorian: T G1 B1 Takvorian
	Jerome: Yes! I live in London.

6) Jerome: Build G1 Jerome
	Takvorian: Ah, my eldest son is working in London.

7) Takvorian: B B1 Takvorian

8) Jerome: Trade G1 Y1 Jerome

9) Takvorian: B G1 Takvorian

10) Jerome: Discover G1 Jerome B2 Sirius

11) Takvorian: T G1 Y1 Takvorian

12) Jerome: Build G1 Sirius

13) Takvorian: D B1 Takvorian Y3 Ertrus

14) Jerome: Trade G1 R1 Sirius

15) Takvorian: B B2 Takvorian

16) Jerome: Build R1 Sirius

17) Takvorian: T B2 R2 Takvorian

18) Jerome: Build R2 Sirius

19) Takvorian: M R2 Takvorian Ertrus

20) Jerome: Build G1 Sirius

21) Takvorian: M R2 Ertrus Sirius
C Sirius R

22) Jerome: Trade G1 R1 Sirius

23) Takvorian: B B2 Takvorian

24) Jerome: Build R1 Sirius

25) Takvorian: T B2 R2 Takvorian

26) Jerome: Build R2 Sirius

27) Takvorian: M R2 Takvorian Ertrus

28) Jerome: Trade R1 Y1 Sirius

29) Takvorian: B Y2 Takvorian

30) Jerome: Build Y2 Sirius

31) Takvorian: T B1 G1 Ertrus

32) Jerome: Trade R1 B1 Sirius



36967)
Variants: "Unrated, Hard time"
Started: 2020.9.14, Ended: 2020.10.11
Participants: yellowturtle (S), Layana (N)
Winner: Layana

1) Layana: Homeworld R2 B1 G3

2) yellowturtle: Homeworld B3 R1 G3

3) Layana: Build G1 Layana

4) yellowturtle: Build G1 Yellowturtle

5) Layana: Trade G1 Y1 Layana

6) yellowturtle: Trade G1 Y1 Yellowturtle

7) Layana: Build G1 Layana

8) yellowturtle: Build G1 Yellowturtle

9) Layana: Trade G1 B1 Layana

10) yellowturtle: Trade G1 B1 Yellowturtle

11) Layana: Build B2 Layana

12) yellowturtle: Build B2 Yellowturtle

13) Layana: Discover B2 Layana G3 Paris

14) yellowturtle: Discover B1 Yellowturtle Y2 Altair

15) Layana: Discover B1 Layana Y3 Rome

16) yellowturtle: Build G1 Yellowturtle

17) Layana: Build G1 Layana

18) yellowturtle: Trade G1 R1 Yellowturtle

19) Layana: Trade G1 R1 Layana

20) yellowturtle: Build R2 Yellowturtle

21) Layana: Build R2 Layana

22) yellowturtle: Move R2 Yellowturtle Altair

23) Layana: Move R2 Layana Paris

24) yellowturtle: Build R3 Yellowturtle

25) Layana: Sacrifice G3 Layana
Build R3 Layana
Build R3 Paris
Build B2 Rome

26) yellowturtle: Move R3 Yellowturtle Altair

27) Layana: Build B3 Paris

28) yellowturtle: Build B3 Yellowturtle

29) Layana: Trade R2 Y2 Paris

30) yellowturtle: Discover B3 Yellowturtle R2 Betelgeuse

31) Layana: Discover B2 Rome Y2 Madrid

32) yellowturtle: Discover R2 Altair Y3 Castor

33) Layana: Trade R3 Y3 Layana

34) yellowturtle: Build Y1 Yellowturtle

35) Layana: Build R3 Paris

36) yellowturtle: Build G1 Yellowturtle

37) Layana: Move R3 Paris Madrid

38) yellowturtle: Build G1 Yellowturtle

39) Layana: Discover B3 Paris G2 London

40) yellowturtle: Move R3 Altair Rome

41) Layana: Sacrifice Y2 Paris
Move B3 London Yellowturtle
Move B2 Madrid Yellowturtle
Catastrophe Yellowturtle B

42) yellowturtle: Move R1 Yellowturtle Rome

43) Layana: Move R1 Layana Paris

44) yellowturtle: Attack B1 Rome
	yellowturtle: oops

45) Layana: Sacrifice Y3 Layana
Move R3 Madrid Yellowturtle
Move R3 Paris Yellowturtle
Move R1 Paris Yellowturtle
Catastrophe Yellowturtle R

	yellowturtle: Thanks for playing~!
	Layana: Thank you - I'd be happy to play a rematch. 


37011)
Variants: "Hard time"
Started: 2020.9.29, Ended: 2020.10.24
Participants: wil (S), Trydnt (N)
Winner: Trydnt

1) Trydnt: Homeworld B2 Y1 G3

2) wil: H G2 Y1 Y3 *

3) Trydnt: Build G1 Trydnt

4) wil: B Y1 Wil

5) Trydnt: Build G1 Trydnt

6) wil: D Y1 Wil G3 G3

7) Trydnt: Discover G1 Trydnt B3 B3

8) wil: B Y2 Wil

9) Trydnt: Build G1 Trydnt

10) wil: M Y2 Wil B3

11) Trydnt: Discover G1 Trydnt Y3 Y3

12) wil: T Y2 R2 B3

13) Trydnt: Sacrifice G3 Trydnt
Build G2 Y3
Build G2 Y3
Build G3 B3

14) wil: A G1 B3

15) Trydnt: Build G3 Trydnt

16) wil: B Y2 Wil

17) Trydnt: Trade G1 R1 Trydnt

18) wil: B R1 B3

19) Trydnt: Sacrifice R1 Trydnt
Attack R2 B3

20) wil: B R1 B3

21) Trydnt: Sacrifice R2 B3
Attack R1 B3
Attack R1 B3

22) wil: B Y2 G3
	wil: Game ovah

23) Trydnt: Sacrifice G2 Y3
Build G1 Trydnt
Build R1 B3

24) wil: S Y2 Wil
M G1 B3 Wil
D G1 Wil Y3 Why3

25) Trydnt: Build G2 B3

26) wil: D Y2 G3 B2 B2

27) Trydnt: Trade G2 Y2 B3



36950)
Variants: "Unrated"
Started: 2020.9.29, Ended: 2020.10.5
Participants: akuden (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) akuden: Homeworld B3 G1 Y3
	wil: Binary homeworlds...much better than multiple player...welcome
	wil: Any wuestions dont hesitate to ask
	akuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!
	akuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!
	akuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!
	akuden: Hello, and thank you. This is my secondly game of Homeworlds. First time at 2.Excited to play!

3) wil: Build G1 Wil
	wil: Yeah, I checked your games.. this is an awesome gamve but takes a learning curve.

4) akuden: Build Y1 Akuden

5) wil: B G1 Wil

6) akuden: Trade Y3 G3 Akuden

7) wil: T G1 B1 Wil

8) akuden: Build Y1 Akuden

9) wil: B B1 Wil
	akuden: I’m sorry. I didn’t mean to send so many repeat messages. Last time I played it didn’t really click for me until it got down to 2 players. Then I got excited about it and started seeing the different possibilities and tactics. Such a packed game with so few components and rules.
	akuden: I’m sorry. I didn’t mean to send so many repeat messages. Last time I played it didn’t really click for me until it got down to 2 players. Then I got excited about it and started seeing the different possibilities and tactics. Such a packed game with so few components and rules.
	akuden: Sorry again there a lag in load times which is causing my messages to repeat
	wil: Deja who?

10) akuden: Build G1 Akuden
	wil: So far so good, ya put a blocker in place on me cornering the green economy and making strides to take over OPEC
	wil: So you made me switch gears in the monopoly race, I am now voting for CHANGE!  I like starting out seeing if I can control a color and then if I cant shift to building diverse systems...the fair and balanced way...

11) wil: D B1 Wil Y3 Y3

12) akuden: Discover G1 Akuden B2 B2
	wil: This site is crawling along without maintenance...and it still works.  This is all we've had for HW for years in lieu of in person games.  Now we have another site to play live games and use a timer.
	wil: Do you have pyramid arcade?

13) wil: S G3 Wil
B B2 Y3
B B2 Y3
B B3 Wil
	akuden: Ah are you referrring to the glitch site? It seems nice! Wow, I had no idea this site hasn’t received maintenance in a while. I just thought it was outdated but still functional. 
	akuden: I do not own pyramid arcade. My local shop has it but I think I’ll wait for the pyramid quartet games. So far, I think Homeworlds is the only pyramid game I like so getting the single game set makes more sense. Do you have it? Is so, what other games do you enjoy from it?
	wil: Petri dish, volcano, color wheel are my next after HW there are games for everyone in arcade

14) akuden: Move Y1 Akuden B2

15) wil: D B3 Wil G3 G3
	akuden: I don't like what you are planning there, but I also don't think I can stop it...

16) akuden: Build G2 B2

17) wil: B B3 Wil
	wil: Color domination is both hard to overcome and hard to keep...it is always my first effort...if foiled move onto plan b 

18) akuden: Sacrifice G2 B2
Build Y1 B2
Build G2 B2

19) wil: T B3 Y3 G3

20) akuden: Move Y1 B2 G3

21) wil: D B2 Y3 G2 G2

22) akuden: Build Y2 B2

23) wil: B B3 G2

24) akuden: Sacrifice G2 B2
Build Y2 G3
Build Y3 Akuden

25) wil: M Y3 G3 G2
	wil: Wanna take that back?  I sack my y3 and blow all g in your HW
	akuden: Oh darn, I didn’t see that. Was too focused on the idea of setting up a factory. 
	akuden: Quick question in movement, if you sacked Y3, would you then move g1 from your sector to g2, then move that ship to my sector to cause the catastrophe?
	akuden: I wasn’t sure if moving the same ship with the sacrifice action multiple time was allowed. Thanks Wil! Please excuse my noob maneuvers! 
	akuden: Build y2 b2

26) akuden: Move Y1 B2 Y3
	wil: No problem and yes sacking a y3 fives you 3 moves anywhere in the universe...so gives you access to go from hw to HW
	wil: Sorry to set back your factory building...but this is also the problem with g stars in HW...no factories at home

27) wil: T B3 R3 G2
	akuden: No problem, I’m learning the importance of even the first decision in the game on homeworld colors and sizes. Man, this game just keeps getting deeper!

28) akuden: Trade G3 R3 Akuden

29) wil: Move R3 G2 G3

30) akuden: Sacrifice Y2 B2
Move Y2 G3 Wil
Move Y1 G3 Wil

31) wil: B Y2 G2

32) akuden: Move Y3 Akuden B2

33) wil: B B3 G2

34) akuden: Trade Y3 R3 B2

35) wil: D G1 Wil Y3 Why3

36) akuden: Sacrifice Y1 Akuden
Move R3 B2 Y3

37) wil: T B1 Y1 Y3

38) akuden: Move Y1 Y3 Wil
Catastrophe Wil Yellow
	wil: Ever see when they throw ping pong balls into a bunch of mousetraps and one mouse trap sets off the others in pandemonium?
	akuden: Lol I haven’t but I feel like I’m about to find out how it feels....

39) wil: T B2 Y2 Y3

40) akuden: Move R3 Y3 Wil

41) wil: S R3 G3
A R3 Wil
P
P

42) akuden: Build G2 B2

43) wil: S Y3 G2
M B3 G2 Akuden
M B3 Wil G2
M B3 G2 Akuden

44) akuden: Build R1 Akuden

45) wil: S R3 Wil
A R1 Akuden
A R3 Akuden
P

	akuden: will do, thank you! Yes this game has been educational. I am hyped up to play more!
	wil: Gg
	akuden: Gg


37054)
Variants: "Unrated"
Started: 2020.10.13, Ended: 2020.10.30
Participants: dimitrivv (S), adriano (N)
Winner: dimitrivv

1) adriano: Homeworld R3 B1 G3

2) dimitrivv: Homeworld G3 R2 B3

3) adriano: Build G1 Adriano (n)

4) dimitrivv: Build B1 Dimitrivv

5) adriano: Trade G1 Y1 Adriano (n)

6) dimitrivv: Trade B3 Y3 Dimitrivv

7) adriano: Build Y1 Adriano

8) dimitrivv: B B1 Dimitrivv

9) adriano: Discover Y1 Adriano B2 Al

10) dimitrivv: B B2 Dimitrivv

11) adriano: Build G1 Adriano

12) dimitrivv: D B2 Dimitrivv G1 Scomms

13) adriano: Move G1 Adriano Al

14) dimitrivv: B B2 Scomms

15) adriano: Build G1 Al

16) dimitrivv: B B3 Scomms

17) adriano: Build G2 Adriano

18) dimitrivv: T B3 G3 Scomms

19) adriano: Sacrifice G3 Adriano
Build G2 Al
Build G2 Adriano
Build G3 Adriano

20) dimitrivv: B B3 Scomms

21) adriano: Trade G1 R1 Al

22) dimitrivv: T B2 Y2 Scomms

23) adriano: Trade G2 B2 Adriano

24) dimitrivv: B B3 Scomms

25) adriano: Build B3 Adriano

26) dimitrivv: S Y2 Scomms
M B2 Scomms Al
M B2 Al Adriano
C Adriano Blue

27) adriano: Trade G2 B2 Al

28) dimitrivv: T B3 R3 Scomms

29) adriano: Move B2 Al Adriano

30) dimitrivv: S Y3 Dimitrivv
M R3 Scomms Al
M B3 Scomms Adriano
M G3 Scomms Adriano

31) adriano: Attack B3 Adriano

32) dimitrivv: S R3 Al
A B3 Adriano
A G3 Adriano
A G2 Adriano

33) adriano: Trade B2 G2 Adriano
Catastrophe Adriano G

34) dimitrivv: A Y1 Adriano



36904)
Started: 2020.10.15, Ended: 2020.10.19
Participants: Dther (S), akuden (N)
Winner: akuden

1) akuden: Homeworld Y2 B3 G3



36955)
Variants: "Unrated, Hard time"
Started: 2020.10.17, Ended: 2020.10.21
Participants: Layana (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3
	wil: Ready for this eh?  Training mode or playing mode?

2) Layana: Homeworld R2 G3 B3
	Layana: Well, let's play, and if you feel like you should comment upon my mistakes your comments will be very welcome :) 

3) wil: B G1 Wil

4) Layana: Build B1 Layana
	wil: I dont like a green star for my home world... Ihave to hope for a factory at.an outpost, I prefer them at home.

I do it occasionally.  
	wil: When I started playing blue red was a standard home world..i came to like to be able to move right away and got into blue yellow...although if I go second tho he may change.

5) wil: B G1 Wil

6) Layana: Trade B1 Y1 Layana
	wil: My favorite gambit is monopolies if I can pull it off.  Looks like I have a chance with green in this situation.  You have to gain a yellow to move.  If you had one in your HW you could take on blue...but since you don't...

7) wil: D G1 Wil Y3 Y3
	Layana: Your comments are very appreciated 

8) Layana: Build Y1 Layana

9) wil: B G1 Wil

10) Layana: Build Y1 Layana

11) wil: D G1 Wil Y3 Why3
	wil: My goal is always to amass more ships and larger ships...but keeping in mind I want blue and red to destroy your homeworld

12) Layana: Discover Y1 Layana B1 Xenophobia
	wil: At this point if the other is also working in a monopoly I like to occupy stars of that nature to take them out of the bank
	wil: At this point if the other is also working in a monopoly I like to occupy stars of that nature to take them out of the bank
	Layana: It also seems rather unfortunate that I have no g1 stars to discover at this juncture. This is already over, isn't it? 

13) wil: B G2 Why3
	wil: There are bad positions and the are incredible mistakes...i can get into both of them..  I have controlled the start...but there is a long way to the end.  We can start another if you wish while we see hiw this plays out.  My goal is to always teach people to be able to beat me so I can learn from them.

14) Layana: Build B1 Layana

15) wil: S G3 Wil
B G2 Y3
B G2 Why3
B G3 Wil
	Layana: Yes, let's play another one. 
	wil: Trydnt n I played as many as 5 at a sitting....or online at the same time...confusing but accelerates the mistakes which accelerates the learning

16) Layana: Trade B3 G3 Layana

17) wil: D G2 Why3 Y2 Y2
	Layana: Ok, we now have 4 games going, too. Really appreciate your mentorship. 
	wil: I enjoy playing.

	Layana: Actually, I don't really have a clue how or why to do anything but resign in this situation. You will deny my y3, unless I build it via sacrifice, which doesn't seem smart. I could build a y2 in my homeworld, but then you can exchange a g3 for the y3, which I then couldn't build because of the looming Catastrophe. Alternatively, you could just discover another y3.

So it seems that if there would be a way or if this mess, it would have to be via blue or red, both of which you can build at twice my speed due to your factory.

If you don't have a hint, it's rather concentrate on our new games, then ;) 
	Layana: Thanks for the game. :) 


37033)
Variants: "Unrated"
Started: 2020.10.17, Ended: 2020.10.21
Participants: Layana (S), akuden (N)
Winner: Layana

1) akuden: Homeworld Y2 B3 G3

2) Layana: Homeworld B2 R1 G3
	akuden: Hello and welcome!
	Layana: Hello and thank you. I'm still kind of new. Have fun. 

3) akuden: Build G1 Akuden
	akuden: No worries, I am very new to this game as this would be my third game. Have fun!

4) Layana: Build G1 Layana

5) akuden: Trade G1 Y1 Akuden
	Layana: Than ks, I will have fun either way. 

6) Layana: Trade G1 Y1 Layana

7) akuden: Build G1 Akuden

8) Layana: Build G1 Layana

9) akuden: Discover G1 Akuden B1 B1

10) Layana: Trade G1 B1 Layana

11) akuden: Build G1 B1

12) Layana: Build B1 Layana

13) akuden: Trade G1 Y1 B1

14) Layana: Build Y2 Layana

15) akuden: Discover Y1 B1 G3 G3

16) Layana: Discover Y1 Layana B3 Amanda

17) akuden: Build Y2 G3

18) Layana: Discover B1 Layana Y3 Shinon

19) akuden: Move Y2 G3 B1

20) Layana: Sacrifice G3 Layana
Build Y3 Amanda
Build Y3 Layana
Build B2 Shinon

21) akuden: Trade Y2 B2 B1

22) Layana: Discover B2 Shinon G1 Ariel
	Layana: I'd also be up for a game of Realm, if you wanted to. 

23) akuden: Build Y2 G3

24) Layana: Build B3 Ariel

25) akuden: Trade Y1 R1 Akuden
	akuden: I haven’t quite grasped that one, but I’d be willing to give iit another shot.
	akuden: If you have a challenge posted, I’ll join up.
	Layana: Realm is the game that brought me to this site, I love it. There is always a challenge open for Realm. 

26) Layana: Trade B2 R2 Ariel

27) akuden: Move Y1 G3 B1
	akuden: It was interesting the last time I played. A lot more moving parts than most abstracts. 

28) Layana: Move Y3 Amanda B1
	Layana: It is also ideal for play by email as games tend to not to have too many moves (around 20 in my experience)

29) akuden: Move B2 B1 Amanda

30) Layana: Sacrifice Y2 Layana
Move B3 Ariel Akuden
Move Y3 B1 Akuden

31) akuden: Attack Y3 Akuden
	akuden: I can see that. Cool, looking forward to discovering it more. 

32) Layana: Sacrifice R2 Ariel
Attack Y3 Akuden
Attack G3 Akuden

	akuden: Sounds good! I’m down. I still have so much to learn in this game.


37014)
Variants: "Unrated"
Started: 2020.10.20, Ended: 2020.11.4
Participants: Layana (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) Layana: Homeworld B2 R1 G3

3) wil: B G1 Wil

4) Layana: Build G1 Layana

5) wil: T G1 B1 Wil

6) Layana: Trade G1 Y1 Layana

7) wil: B B1 Wil

8) Layana: Build G1 Layana

9) wil: D B1 Wil Y3 Y3

10) Layana: Trade G1 R1 Layana

11) wil: Sacrifice G3 Wil
Build B2 Y3
Build B2 Wil
Build B3 Y3

12) Layana: Build G1 Layana

13) wil: Trade B3 G3 Y3
	wil: ack short universe...just noticed, lol

14) Layana: Move R1 Layana Y3

15) wil: T B2 R2 Y3

16) Layana: Move R1 Y3 Wil
	wil: well ya kicked my butt in martian chess!

	Layana: sure, but this again looks dire. small universe is VERY different, isnt it?

17) wil: B R1 Y3
	wil: Totally dif, homeworlds so close your building stars are within range...microvrerse worse....where opponent can come direct in..

18) Layana: Attack B1 Wil
	wil: Again...my goal is to put you in dire straights quickly...so you can see gambit to avoid.  When you try to use those gambits on others you will see what countermeasures look like...lots going on.

19) wil: S R2 Y3
A R1 Wil
A B1 Wil

	wil: They were pointed the wrong way...
	wil: I fixed it.
	Layana: ;) much obliged. There also seem to be too many players in this game. 
	Layana: I fixed it
	wil: Sort of like moving pieces out in chess...ya gotta insure they arr protected before they go to far.


37058)
Variants: "Unrated, Hard time"
Started: 2020.10.20, Ended: 2020.11.13
Participants: wil (S), Layana (N)
Winner: wil

1) Layana: Homeworld Y2 B1 G3

2) wil: H B3 Y1 G3

3) Layana: Build G1 Layana

4) wil: B G1 Wil

5) Layana: Trade G1 Y1 Layana

6) wil: T G1 Y1 Wil
	wil: Ya did the math!

7) Layana: Build Y2 Layana

8) wil: B Y2 Wil
	Layana: I was actually unsure which color to go for. Blue makes trades easier, after all. I choose y because it gives mobility, mostly. 

9) Layana: Discover Y1 Layana G3 Amrut

10) wil: D Y1 Wil G2 G2

11) Layana: Build Y3 Amrut

12) wil: Build Y3 G2

13) Layana: Discover Y1 Amrut G2 Bowmore

14) wil: T Y2 R2 Wil

15) Layana: Trade Y2 R2 Layana

16) wil: B G1 Wil

17) Layana: Build Y2 Bowmore

18) wil: M Y1 G2 Amrut


19) Layana: Discover Y3 Amrut G2 Cragganmore

20) wil: T G1 B1 Wil



36969)
Variants: "Unrated, Hard time"
Started: 2020.10.21, Ended: 2020.11.17
Participants: Layana (S), akuden (N)
Winner: Layana

1) akuden: Homeworld R2 B3 G3

2) Layana: Homeworld Y2 B1 G3

3) akuden: Build G1 Akuden
	Layana: Good luck and, more importantly, have fun. 
	akuden: Thank you! Good luck and have fun as well. 

4) Layana: Build G1 Layana

5) akuden: Trade G1 Y1 Akuden

6) Layana: Trade G1 Y1 Layana

7) akuden: Build G1 Akuden

8) Layana: Build G1 Layana

9) akuden: Discover G1 Akuden B1 Sentry

10) Layana: Trade G1 B1 Layana

11) akuden: Build G1 Sentry

12) Layana: Build B2 Layana

13) akuden: Trade G1 Y1 Sentry

14) Layana: Trade B2 R2 Layana

15) akuden: Build Y2 Akuden

16) Layana: Discover Y1 Layana G3 Amrut

17) akuden: Trade Y2 B2 Akuden

18) Layana: Build Y2 Amrut

19) akuden: Build Y2 Akuden

20) Layana: Discover Y1 Amrut G1 Bowmore

21) akuden: Build Y3 Sentry

22) Layana: Build Y3 Amrut

23) akuden: Trade Y1 R1 Sentry

24) Layana: Move B1 Layana Amrut

25) akuden: Discover B2 Akuden G1 Locust

26) Layana: Build B2 Amrut

27) akuden: Build G2 Sentry

28) Layana: Build G2 Layana

29) akuden: Build G2 Akuden

30) Layana: Discover B2 Amrut R1 Cragganmore

31) akuden: Move Y1 Akuden Locust

32) Layana: Sacrifice G3 Layana
Build G3 Layana
Build B2 Amrut
Build B3 Cragganmore

33) akuden: Sacrifice G3 Akuden
Build G3 Akuden
Build Y1 Sentry
Build Y3 Locust

34) Layana: Move Y3 Amrut Cragganmore

35) akuden: Build B3 Locust

36) Layana: Trade B3 R3 Cragganmore

37) akuden: Discover B3 Locust R3 Omega-3

38) Layana: Sacrifice Y2 Amrut
Move R3 Cragganmore Akuden
Move Y3 Cragganmore Akuden

39) akuden: Attack R3 Akuden

40) Layana: Sacrifice R2 Layana
Attack R3 Akuden
Attack G3 Akuden

41) akuden: Build R1 Sentry
	akuden: Ah man, I overlooked the red's too long...good game. Sorry about the longer turns towards the end. Work has been picking up giving me less time to look at the computer screen.
	Layana: I know what that's like. I have two jobs and two kids,so it's tough, too. 

42) Layana: Sacrifice R3 Akuden
Attack G2 Akuden
Attack Y2 Akuden
Pass

	Layana: Thanks for the game. I think if you had not neglected red, you might have won. I'd like to play another one ;) 
	akuden: Thank you! Sounds good. I'll join up. 


37080)
Variants: "Hard time"
Started: 2020.10.27, Ended: 2020.12.3
Participants: Trydnt (S), dlwillson (N)
Winner: Trydnt

1) dlwillson: H Y1 B3 G3

2) Trydnt: Homeworld R2 B1 G3

3) dlwillson: Build G1 Dlwillson
	dlwillson: Tyglhf

4) Trydnt: Build G1 Trydnt

5) dlwillson: Trade G1 Y1 Dlwillson

6) Trydnt: Trade G1 Y1 Trydnt

7) dlwillson: B Y2 Dlwillson

8) Trydnt: Build Y2 Trydnt

9) dlwillson: T Y1 B1 Dlwillson

10) Trydnt: Trade Y1 B1 Trydnt

11) dlwillson: D B1 Dlwillson G2 Field

12) Trydnt: Discover B1 Trydnt G3 G3

13) dlwillson: M Y2 Dlwillson Field

14) Trydnt: Build B2 G3

15) dlwillson: B B2 Field

16) Trydnt: Build Y1 Trydnt

17) dlwillson: Trade B2 R2 Field

18) Trydnt: Trade B2 R2 G3

19) dlwillson: Build B2 Field

20) Trydnt: Build B2 G3

21) dlwillson: Trade B2 G2 Field

22) Trydnt: Trade B2 Y2 G3

23) dlwillson: Discover G2 Field Y3 Sol

24) Trydnt: Build B2 G3

25) dlwillson: B G1 Dlwillson

26) Trydnt: Discover B2 G3 G2 G2

27) dlwillson: T G1 R1 Dlwillson

28) Trydnt: Discover Y2 Trydnt B3 B3

29) dlwillson: Build R1 Field

30) Trydnt: Sacrifice G3 Trydnt
Build Y1 B3
Build Y3 Trydnt
Build Y3 G3

31) dlwillson: Sacrifice G2 Sol
Build Y3 Field
Build B2 Field

32) Trydnt: Trade Y3 G3 Trydnt

33) dlwillson: Discover R2 Field Y3 Sol

34) Trydnt: Build B2 G3

35) dlwillson: D B2 Field B3 Sky

36) Trydnt: Sacrifice Y2 G3
Move Y1 B3 Field
Move Y2 B3 Field
Catastrophe Field Y

	dlwillson: I'm sorry, but I don't have time to play until  holidays. I'll re-challenge then.
	Trydnt: no worries I look forward to playing then


37124)
Variants: "Hard time"
Started: 2020.11.14, Ended: 2020.11.28
Participants: Simon (S), Draw5PlayAll (N)
Winner: Draw5PlayAll

1) Draw5PlayAll: Homeworld B2 R2 G3 *

2) Simon: Homeworld B1 R1 G3 *
	Draw5PlayAll: I'm 2 for 2 on defenses with this setup. I must be doing something right...
	Simon: Have fun! It's very much possible that 2-2 or 1-1 is a strong choice especially for first player, and we haven't explored the opening theory enough.

3) Draw5PlayAll: Build G1 Draw5playall
	Simon: 

4) Simon: Build G1 Simon
	Draw5PlayAll: Well, I heard that matching your opponent's homeworld in *second* seat is a mistake since they are closer to you and have an extra move. Then I wondered what would happened if I had the extra move instead...

5) Draw5PlayAll: Trade G1 Y1 Draw5playall

6) Simon: Trade G1 Y1 Simon

7) Draw5PlayAll: Build G1 Draw5playall

8) Simon: Build G1 Simon

9) Draw5PlayAll: Trade G1 B1 Draw5playall

10) Simon: Discover G1 Simon B3 B3

11) Draw5PlayAll: Build B1 Draw5playall

12) Simon: Build G1 B3

13) Draw5PlayAll: Discover B1 Draw5playall G3 Television

14) Simon: Build G1 Simon

15) Draw5PlayAll: Build B2 Television

16) Simon: Build G2 B3

17) Draw5PlayAll: Build B2 Television

18) Simon: Trade G2 Y2 B3

19) Draw5PlayAll: Build B3 Draw5playall

20) Simon: Build G2 B3

21) Draw5PlayAll: Trade B3 R3 Draw5playall

22) Simon: Discover G1 B3 Y1 Y1

23) Draw5PlayAll: Move R3 Draw5playall B3

24) Simon: Sacrifice G2 B3
Build Y2 B3
Build Y2 B3
	Draw5PlayAll: The disadvantage of this setup, of course, is that my homeworld is slightly more vulnerable (I can be attacked from smalls and larges), but I don't think that will really matter this game...

25) Draw5PlayAll: Move Y1 Draw5playall B3
Catastrophe B3 Y

	Draw5PlayAll: Nice try.
	Simon: gg
	Draw5PlayAll: 3 for 3... I might be on to something.


36765)
Variants: "Hard time"
Started: 2020.11.14, Ended: 2020.12.3
Participants: Felix (S), dlwillson (N)
Winner: Felix

1) dlwillson: H Y1 B3 G3

2) Felix: Homeworld B2 R3 G3
	dlwillson: Daniel! Yay! So good to see you!
	Felix: Hey David, likewise :) How you been? 

3) dlwillson: Build G1 Dlwillson

4) Felix: Build G1 Felix
	dlwillson: Pretty good. I've gone crazy for casterboarding and I'm working on my CKA. How for you?
	Felix: Those are a blast. Here in the NC mountains, there's very little terrain flat enough to enjoy one! I'm good. Lost my job due to the pandemic/lockdown, but just started a new job last week, working in data migration/cloud management, so hoping to bounce back soon!

5) dlwillson: Trade G1 Y1 Dlwillson

6) Felix: Trade G3 Y3 Felix
	dlwillson: I'm glad you were able to get back to work quickly. Have you been keeping up with Jonathan Baker and Wil? They've got the systems for the live tournament just about figured.
	Felix: To be honest, I haven't, but that's exciting to hear! I'll definitely keep my ears open. Is Facebook the best place to keep up? I rarely touch Facebook these days

7) dlwillson: B G1 Dlwillson

8) Felix: Build G1 Felix
	dlwillson: Sadly, I think Facebook might be best. They're both in Starship Captains and Binary Homeworlds groups. Let's ask Babamots on here. Maybe he watches his SDG messages.
	dlwillson: I'm on my phone right now. I'll do it later.

9) dlwillson: Trade G1 R1 Dlwillson
	dlwillson: Ohh... Now, I see!

10) Felix: Trade G1 B1 Felix
	dlwillson: Your "t g3 y3" makes perfect sense now! I didn't get it when you did it. I did a double-take and shrug. Now, I understand!
	Felix: I thought I'd try something different :) I think I may have accidentally stumbled upon a good defense for someone spamming green early on.
	Felix: I kind of wish you had gone for it, so we could see how that would play out :)

11) dlwillson: Build R1 Dlwillson

12) Felix: Build B1 Felix

13) dlwillson: B R1 Dlwillson

14) Felix: Discover B1 Felix G1 Rim

15) dlwillson: Discover R1 Dlwillson G2 Field

16) Felix: Build B1 Felix

17) dlwillson: Build R2 Field

18) Felix: Build B2 Rim

19) dlwillson: Sacrifice Y1 Dlwillson
Move R2 Field Rim

20) Felix: Sacrifice B2 Rim
Trade B1 G1 Rim
Trade B1 Y1 Felix
	dlwillson: Expensive, but worth it, I think.
	Felix: I think you're quite right... I don't foresee this going well for me. I'm quite rusty at the moment! Haven't played a game in months

21) dlwillson: Attack G1 Rim

22) Felix: Build G2 Felix

23) dlwillson: Sacrifice G1 Rim
Build R2 Dlwillson

24) Felix: Trade G2 R2 Felix

25) dlwillson: Build R3 Field

26) Felix: Build R3 Felix

27) dlwillson: Trade R2 B2 Dlwillson

28) Felix: Move R3 Felix Rim
	dlwillson: Ah! I accidentally gave you an R3! I *have* played this game before, I swear.

	Felix: I just assumed you had some master plan behind it all :)
	Felix: :( Sad. I hate that hard time trigger. Let's play without it next time!
	dlwillson: Sorry about that! Studying Kubernetes has eaten my whole life lately! Let's play again after the holidays.


37066)
Variants: "Unrated, Hard time"
Started: 2020.11.14, Ended: 2020.12.10
Participants: Felix (S), wil (N)
Winner: wil

1) wil: H Y2 B1 G3

2) Felix: Homeworld B2 R3 G3
	Felix: Hey again :) Been a while. Have fun!

3) wil: B G1 Wil

4) Felix: Build G1 Felix
	wil: Thx, hope all is well with you n yours

5) wil: T G1 B1 Wil

6) Felix: Trade G3 B3 Felix

7) wil: B G1 Wil
	Felix: Everything's just fine! Hope all's well with you too.

8) Felix: Build G1 Felix
	wil: All good..been hiding out but getting ready to hunker down in further

9) wil: T G1 R1 Wil

10) Felix: Trade G1 R1 Felix

11) wil: D B1 Wil Y3 Y3

12) Felix: Build G1 Felix

13) wil: B G1 Wil

14) Felix: Build G2 Felix

15) wil: T G1 Y1 Wil

16) Felix: T G2 G2 Felix

17) wil: B Y1 Wil

18) Felix: T G2 Y2 Felix
	Felix: Dang it. I very much made a mistake in my last turn and didn't notice the typo. Meant to trade for a y2. May I re-do, or you burn a turn?

19) wil: D Y1 Wil G3 G3
	Draw5PlayAll: I'm surprised it even allowed that.
	wil: It what happened or what needs to be done to correct it.
	wil: *idk

20) Felix: D G1 Felix B1 Rim
	Felix: I traded a g2 for a g2, so I basically completely wasted a turn

21) wil: B G1 Wil
	wil: Oh but you corrected it...no worries...backing up is just making a move and backing it off before you move the coin.  I wouldnt have a problem with unlimited reversals...but it is a perfectly legal move...essentially and elaborate pass!

22) Felix: B G2 Rim
	Felix: I didn't correct it before you made your move, so I essentially lost a turn. But that's okay, I can still win :)

23) wil: S G1 Wil
B B2 Y3
	wil: Oh, oops, and of course

24) Felix: B B2 Felix

25) wil: T B2 G2 Y3

26) Felix: Trade G2 Y2 Rim

27) wil: B B2 Y3

28) Felix: Discover B2 Felix G1 Opus

29) wil: M B1 Y3 Opus

30) Felix: T B2 R2 Opus

31) wil: S G3 Wil
B B2 Y3
B B3 Y3
B B3 Opus

32) Felix: Sacrifice Y2 Felix
Move Y2 Rim G3
Move Y2 G3 Wil

33) wil: M B3 Y3 Wil
	Felix: Bold and daring. I like it!

34) Felix: Sacrifice R2 Opus
Attack Y1 Wil
Attack R1 Wil
	wil: Was gonna go ahead and catastrophe and work toward a yellow monopoly but decided on this..

35) wil: T B2 R2 Y3

36) Felix: Trade R1 Y1 Wil
Catastrophe Wil Yellow

37) wil: T B3 G3 Opus

38) Felix: Build G2 Felix

39) wil: B B2 Opus

40) Felix: Trade G2 Y2 Felix

41) wil: B B3 Y3

42) Felix: Build G2 Felix
	wil: I'll keep checking...holler when you need to slow down

43) wil: T G3 Y3 Opus
	Felix: No worries here

44) Felix: Move G1 Felix Opus
	wil: My goal now is to collect queens...cause they are pretty

45) wil: S Y3 Opus
M B1 Opus Felix
M B2 Opus Felix
M R2 Y3 Opus
C Felix B

46) Felix: Build G2 Rim

47) wil: A G1 Opus

48) Felix: Build G3 Felix

49) wil: B G3 Y3

50) Felix: Trade G2 B2 Rim

51) wil: D B3 Y3 Y1 Y1

52) Felix: S B2 Rim
T G2 B2 Felix
Pass

53) wil: S G3 Y3
B B1 Y3
B B2 Y3
B B3 Y1

54) Felix: Sacrifice G1 Rim
Build B1 Felix

55) wil: T B3 Y3 Wil
	wil: Getting dicey

56) Felix: Move B1 Felix Wil
	wil: Bank Robbery...give me all dem blues

57) wil: D B3 Y1 B3 B3
	Felix: The suspense!

58) Felix: Sacrifice Y2 Felix
Move B1 Wil Y3
Pass
Catastrophe Y3 Blue
	wil: Me thinks my days are numbered

59) wil: S G2 Y3
B Y1 Wil
B R1 Opus
	Felix: There's a very high chance I'm going to mess this up, so I wouldn't be too sure!

60) Felix: T R1 G1 Felix

61) wil: B R1 Opus
	Felix: Nice move. Didn't expect that one.

	wil: Well I can use that if you don't want it.
	Felix: I wonder how things would have gone differently if you had given me back that turn I mistakenly wasted :)
	wil: Gg, I totally want that...aka start over at move 12


37068)
Variants: "Unrated, Hard time"
Started: 2020.11.14, Ended: 2020.12.11
Participants: Layana (S), Felix (N)
Winner: Felix

1) Felix: H Y2 B3 G3

2) Layana: Homeworld R2 B1 G3
	Felix: Good luck and have fun!

3) Felix: Build G1 Felix
	Layana: Thanks, you too

4) Layana: Build G1 Layana

5) Felix: Trade G1 B1 Felix

6) Layana: Trade G1 Y1 Layana

7) Felix: Build B1 Felix

8) Layana: Build Y1 Layana

9) Felix: Discover B1 Felix G1 Out

10) Layana: Discover Y1 Layana G3 Stella

11) Felix: Build B2 Out

12) Layana: Build Y1 Layana

13) Felix: Trade B2 Y2 Out

14) Layana: Build Y2 Stella

15) Felix: Build Y3 Out

16) Layana: Build Y3 Layana

17) Felix: Discover Y3 Out B3 Stemper

18) Layana: Trade Y1 R1 Layana

19) Felix: B B2 Out

20) Layana: Move Y3 Layana Stemper

21) Felix: M Y3 Stemper Out

22) Layana: Move Y2 Stella Out

23) Felix: Trade Y3 R3 Out

24) Layana: Sacrifice G3 Layana
Build Y1 Stemper
Build Y3 Stella
Build Y3 Layana

25) Felix: Attack Y2 Out

26) Layana: Trade Y3 G3 Layana

27) Felix: Discover B2 Out Y3 Intent

28) Layana: Trade Y3 B3 Stemper

29) Felix: D Y2 Out Y3 Savor

30) Layana: Discover B3 Stemper G1 Nica

31) Felix: B B2 Out

32) Layana: Move Y3 Stella Nica

33) Felix: Build B2 Out

34) Layana: Move B3 Nica Intent

35) Felix: Move B2 Out Stella

36) Layana: Build G1 Layana

37) Felix: Move B2 Out Stella

38) Layana: Build R1 Layana

39) Felix: Sacrifice Y2 Out
Move R3 Out Intent
Move R3 Intent Layana
Catastrophe Layana Red

40) Layana: Trade G1 R1 Layana

	Layana: Thanks for the game
	Felix: Good game! Thanks!


37039)
Variants: "Unrated, Hard time"
Started: 2020.11.16, Ended: 2020.11.20
Participants: dlwillson (S), wy18 (N)
Winner: dlwillson

1) wy18: Homeworld B2 R1 G3

2) dlwillson: Homeworld Y1 B3 G3 Dlwillson

	dlwillson: Hi Wy!


37130)
Variants: "Unrated, Hard time"
Started: 2020.11.17, Ended: 2020.12.7
Participants: akuden (S), Layana (N)
Winner: Layana

1) Layana: Homeworld Y2 B1 G3

2) akuden: Homeworld Y2 B3 G3

3) Layana: Build G1 Layana

4) akuden: Build G1 Akuden

5) Layana: Trade G1 B1 Layana

6) akuden: Build G1 Akuden

7) Layana: Build B1 Layana

8) akuden: Discover G1 Akuden G1 Proteus

9) Layana: Build G2 Layana

10) akuden: Trade G1 Y1 Akuden

11) Layana: Discover B1 Layana G3 Mekong

12) akuden: Build Y1 Akuden

13) Layana: Build B2 Mekong

14) akuden: Move Y1 Akuden Proteus

15) Layana: Trade B2 Y2 Mekong

16) akuden: Discover G1 Proteus B3 Larax-3

17) Layana: Build B2 Mekong

18) akuden: Build Y1 Proteus

19) Layana: Build Y3 Mekong

20) akuden: Build Y3 Proteus

21) Layana: Move Y2 Mekong Proteus
Catastrophe Proteus Y

22) akuden: Build G1 Akuden

23) Layana: Discover B2 Mekong Y1 Riogrande

24) akuden: Build G1 Larax-3

25) Layana: Sacrifice G3 Layana
Build B2 Riogrande
Build B2 Riogrande
Build B3 Layana

26) akuden: Discover Y1 Akuden Y1 Phasar

27) Layana: Trade B2 R2 Riogrande

28) akuden: Trade G1 R1 Larax-3

29) Layana: Build B2 Mekong

30) akuden: Move Y1 Phasar Larax-3

31) Layana: Trade B2 G2 Riogrande

32) akuden: Build Y1 Larax-3

33) Layana: Build G1 Riogrande

34) akuden: Discover Y1 Larax-3 B2 Vera

35) Layana: Sacrifice Y3 Mekong
Move G1 Riogrande Akuden
Move G2 Riogrande Akuden
Catastrophe Akuden G
Pass

	Layana: I'm looking forward to the next one
	akuden: good game! Dang I left myself wide open for that one.....
	akuden: Alright let's do this! I'm down for a rematch. I'm reading up on some strategies.
	Layana: I usually find that reading up on strategies works best if you have a couple of games directly after reading, preferably live games with discussion. If you want to go live at some point for a couple of games, I'd be up for that too. 


37062)
Started: 2020.11.23, Ended: 2020.11.30
Participants: Dther (S), ALPACAMAN (N)
Winner: ALPACAMAN

1) ALPACAMAN: Homeworld R3 G2 B3



37128)
Started: 2020.11.23, Ended: 2020.11.30
Participants: ALPACAMAN (S), MobyNostromo (N)
Winner: ALPACAMAN

1) MobyNostromo: H B1 Y2 G3

2) ALPACAMAN: Homeworld R3 G2 B3



36878)
Variants: "Hard time"
Started: 2020.11.24, Ended: 2020.11.30
Participants: wil (S), tbonestick (N)
Winner: wil

1) tbonestick: Homeworld G1 B2 Y3

2) wil: H Y3 B1 G3



In [4]:
# Defines a class for a single game piece. Each game piece consists of one color from blue (B), green (G), red (R), yellow(Y) as well as one size from 1, 2, 3.
class Piece:
    def __init__(self, data):
        self.color = data[0]
        self.size = data[1]
    def __str__(self):
        return self.color + str(self.size)
In [5]:
# Defines an enum that describes which of the possible actions that can be taken on a turn
class ActionType(enum.Enum):
    BUILD = 1           # Player builds a new piece.
    MOVE = 2            # Player moves a piece to a discovered star system.
    TRADE = 3           # Player trades a piece for a piece of a different color, but the same size.
    ATTACK = 4          # Player attacks an opponents piece
    SACRIFICE = 5       # Player sacrifices a piece and takes a number of extra actions equal to the size of the sacrificed piece.
    HOMEWORLD = 6       # Player sets up their homeworld.
    PASS = 7            # Player passes instead of taking an action.
    DISCOVER = 8        # Player moves piece to a new star system
    CATASTROPHE = 9     # Player ends their turn by calling a catastrophe
    
# Helper function to translate a string into an ActionType enum.
def str_to_action(action_str):
    if action_str == "Build":
        return ActionType.BUILD
    if action_str == "Move":
        return ActionType.MOVE
    if action_str == "Trade":
        return ActionType.TRADE
    if action_str == "Attack":
        return ActionType.ATTACK
    if action_str == "Sacrifice":
        return ActionType.SACRIFICE
    if action_str == "Homeworld":
        return ActionType.HOMEWORLD
    if action_str == "Pass":
        return ActionType.PASS
    if action_str == "Discover":
        return ActionType.DISCOVER
    if action_str == "Catastrophe":
        return ActionType.CATASTROPHE
    
# Helper function to translate ActionType enums into the respective string.
def action_to_str(action):
    if action == ActionType.BUILD:
        return "Build"
    if action == ActionType.MOVE:
        return "Move"
    if action == ActionType.TRADE:
        return "Trade"
    if action == ActionType.ATTACK:
        return "Attack"
    if action == ActionType.SACRIFICE:
        return "Sacrifice"
    if action == ActionType.HOMEWORLD:
        return "Homeworld"
    if action == ActionType.PASS:
        return "Pass"
    if action == ActionType.DISCOVER:
        return "Discover"
    if action == ActionType.CATASTROPHE:
        return "Catastrophe"
In [6]:
# Defines a class representing a single action that contains the current turn number, the player taking the action, the action type, and any extra parameters relevant to the action type.
class Action:
    def __init__(self, turn_num, player, action, params):
        self.turn_num = turn_num
        self.action = action
        self.player = player
        self.params = params
    def __str__(self):
        ret = str(self.turn_num) + ") " + self.player + ": " + action_to_str(self.action)
        for i in self.params:
            ret += " " + str(i)
        return ret

# A helper function that takes in a list representing a single game containing strings each representing a line from the game outline from the site.
def parse_turn(game_lines):
    # Define regex for each action type
    build_turn = re.match("^(\d+)\) (\S+): (Build|B|Construct|C) ([RGBY][1-4]) (\S+)$", game_lines[0])
    discover_turn = re.match("^(\d+)\) (\S+): (Discover|D) ([RGBY][1-4]) (\S+) ([RGBY][1-4]) (\S+)$", game_lines[0])
    move_turn = re.match("^(\d+)\) (\S+): (Move|M) ([RGBY][1-4]) (\S+) (\S+)$", game_lines[0])
    trade_turn = re.match("^(\d+)\) (\S+): (Trade|T) ([RGBY][1-4]) ([RGBY][1-4]) (\S+)$", game_lines[0])
    attack_turn = re.match("^(\d+)\) (\S+): (Attack|A) ([RGBY][1-4])([NS]) (\S+)$", game_lines[0])
    homeworld_turn = re.match("^(\d+)\) (\S+): (Homeworld|H) ([RGBY][1-4]) ([RGBY][1-4]) ([RGBY][1-4])", game_lines[0])
    pass_turn = re.match("^(\d+)\) (\S+): (Pass|P)$", game_lines[0])
    sacrifice_turn = re.match("^(\d+)\) (\S+): (Sacrifice|S) ([RGBY][1-4]) (\S+)$", game_lines[0])
    
    # If the string matches a certain pattern 
    if build_turn != None:
        ret = [Action(int(build_turn.group(1)), build_turn.group(2), ActionType.BUILD,
                     [Piece(build_turn.group(4)), build_turn.group(5)])], game_lines[1:]
    elif discover_turn != None:
        ret = [Action(int(discover_turn.group(1)), discover_turn.group(2), ActionType.DISCOVER,
                     [Piece(discover_turn.group(4)), discover_turn.group(5), Piece(discover_turn.group(6)),
                      discover_turn.group(7)])], game_lines[1:]
    elif move_turn != None:
        ret = [Action(int(move_turn.group(1)), move_turn.group(2), ActionType.MOVE,
                     [Piece(move_turn.group(4)), move_turn.group(5), move_turn.group(6)])], game_lines[1:]
    elif trade_turn != None:
        ret = [Action(int(trade_turn.group(1)), trade_turn.group(2), ActionType.TRADE,
                     [Piece(trade_turn.group(4)), Piece(trade_turn.group(5)),
                      trade_turn.group(6)])], game_lines[1:]
    elif attack_turn != None:
        ret = [Action(int(attack_turn.group(1)), attack_turn.group(2), ActionType.ATTACK,
                     [Piece(attack_turn.group(4)), attack_turn.group(5), attack_turn.group(6)])], game_lines[1:]
        
    elif homeworld_turn != None:
        ret = [Action(int(homeworld_turn.group(1)), homeworld_turn.group(2), ActionType.HOMEWORLD,
                     [Piece(homeworld_turn.group(4)), Piece(homeworld_turn.group(5)),
                      Piece(homeworld_turn.group(6))])], game_lines[1:]
        
    elif pass_turn != None:
        ret = [Action(int(pass_turn.group(1)), pass_turn.group(2), ActionType.PASS, [])], game_lines[1:]
    elif sacrifice_turn != None:
        ret = [Action(int(sacrifice_turn.group(1)), sacrifice_turn.group(2), ActionType.SACRIFICE,
                    [Piece(sacrifice_turn.group(4)), sacrifice_turn.group(5)])]
        for i in range(0, int(sacrifice_turn.group(4)[1])):
            game_lines = game_lines[1:]
            sac_turn = re.match("^(Build|B|Construct|C) ([RGBY][1-4]) (\S+)$", game_lines[0])
            if sac_turn != None:
                ret.append(Action(int(sacrifice_turn.group(1)), sacrifice_turn.group(2), ActionType.BUILD,
                                [Piece(sac_turn.group(2)), sac_turn.group(3)]))

            sac_turn = re.match("^(Discover|D) ([RGBY][1-4]) (\S+) ([RGBY][1-4]) (\S+)$", game_lines[0])
            if sac_turn != None:
                ret.append(Action(int(sacrifice_turn.group(1)), sacrifice_turn.group(2), ActionType.DISCOVER,
                                [Piece(sac_turn.group(2)), sac_turn.group(3), Piece(sac_turn.group(4)),
                                 sac_turn.group(4)]))
                
            sac_turn = re.match("^(Move|M) ([RGBY][1-4]) (\S+) (\S+)$", game_lines[0])
            if sac_turn != None:
                ret.append(Action(int(sacrifice_turn.group(1)), sacrifice_turn.group(2), ActionType.MOVE,
                               [Piece(sac_turn.group(2)), sac_turn.group(3), sac_turn.group(4)]))

            sac_turn = re.match("^(Trade|T) ([RGBY][1-4]) ([RGBY][1-4]) (\S+)$", game_lines[0])
            if sac_turn != None:
                ret.append(Action(int(sacrifice_turn.group(1)), sacrifice_turn.group(2), ActionType.TRADE,
                                [Piece(sac_turn.group(2)), Piece(sac_turn.group(3)), sac_turn.group(4)]))

            sac_turn = re.match("^(Attack|A) ([RGBY][1-4])([NS]) (\S+)$", game_lines[0])
            if sac_turn != None:
                ret.append(Action(int(sacrifice_turn.group(1)), sacrifice_turn.group(2), ActionType.ATTACK,
                                [Piece(sac_turn.group(2)), sac_turn.group(3), sac_turn.group(4)]))

            sac_turn = re.match("^(Pass|P)$", game_lines[0])
            if sac_turn != None:
                ret.append(Action(int(sacrifice_turn.group(1)), sacrifice_turn.group(2), ActionType.PASS, []))
        ret = ret, game_lines[1:]
    else: # If it does not match any of these, assume it is a chat line and return None.
        ret = None, game_lines[1:]
    
    ret0, ret1 = ret
    if len(game_lines) > 1 and ret0 != None:
        cat_turn = re.match("^Catastrophe (\S+) ([RGBY])$", game_lines[1])
        if cat_turn != None:
            ret0.append(Action(ret0[0].turn_num, ret0[0].player, ActionType.CATASTROPHE, [cat_turn.group(1), cat_turn.group(2)]))
            ret = ret0, game_lines[2:]
    
    return ret # Returns a list of the actions in this turn and the remaining game lines for this game.
In [7]:
# Defines the Game class (representing an entire game of homeworlds). The init takes in the string of text for the current game (including header and turns).
class Game:
    def __init__(self, game_str):
        x = 0
        game_lines = game_str.split('\n')
        game_match = re.match('\d+', game_lines[x]) # Parse game number
        self.game_no = int(game_match.group(0))
        x+=1
        
        game_match = re.search('Variants: .+', game_lines[x]) # Ignore variants
        if game_match != None:
            self.has_variants = True
            self.variants = game_match.group(0)[10:]
            x+=1
        else:
            self.has_variants = False
        
        game_match = re.search('Started: \d+.\d+.\d+', game_lines[x]) # Parse start date time
        self.game_start = dt.strptime(game_match.group(0)[9:], '%Y.%m.%d')
        game_match = re.search('Ended: \d+.\d+.\d+', game_lines[x]) # Parse end date time
        self.game_end = dt.strptime(game_match.group(0)[7:], '%Y.%m.%d')
        x+=1
        
        # Parse participants
        game_match = re.search('Participants: (\S+ \([NESW]\))(, (\S+) \([NESW]\))+', game_lines[x])
        self.north_part = np.nan
        self.east_part = np.nan
        self.west_part = np.nan
        self.south_part = np.nan
        self.num_parts = 2
        for i in game_match.groups(): # Set north, east, south, and west participants
            tmp = re.search("(, )?(\S+) \(([NESW])\)", i)
            if tmp != None:
                if tmp.group(3) == "N":
                    self.north_part = tmp.group(2)
                elif tmp.group(3) == "E":
                    self.num_parts += 1
                    self.east_part = tmp.group(2)
                elif tmp.group(3) == "W":
                    self.num_parts += 1
                    self.west_part = tmp.group(2)
                elif tmp.group(3) == "S":
                    self.south_part = tmp.group(2)
        x+=1
        
        # Parse winner of the game
        game_match = re.search('Winner: \S+', game_lines[x])
        self.winner = game_match.group(0)[8:]
        x+=1
        
        game_lines = game_lines[x:]

        # Parse the total number of turns
        self.num_turns = 0
        for j in range(len(game_lines)-1, 0, -1):
            last_turn_num = re.search("^(\d+)\)", game_lines[j])
            if last_turn_num != None:
                self.num_turns = int(last_turn_num.group(1))
                break
        self.actions = []
        
        # Parse the next single-turn-worth of actions and append them to the list of actions until there are no more game_lines left.
        while len(game_lines) > 0:
            turns, game_lines = parse_turn(game_lines)
            if turns != None:
                for j in turns:
                    self.actions.append(j)
        self.num_actions = len(self.actions)
        self.player_actions = {'north': 0, 'south': 0, 'east': 0, 'west': 0}
        for i in self.actions: # Create dictionary with number of actions per player
            if i.player == self.north_part:
                self.player_actions['north'] += 1
            if i.player == self.south_part:
                self.player_actions['south'] += 1
            if i.player == self.east_part:
                self.player_actions['east'] += 1
            if i.player == self.west_part:
                self.player_actions['west'] += 1
        self.player_hw = {'north': np.nan, 'south': np.nan, 'east': np.nan, 'west': np.nan}
        if self.num_actions >= 4: # Create dictionary with each player's homeworld setup.
            if self.num_parts == 2:
                to_set = 2
                curr = 0
                while(to_set > 0 and curr < self.num_actions):
                    if self.actions[curr].action == ActionType.HOMEWORLD:
                        if self.actions[curr].player == self.north_part:
                            self.player_hw['north'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        else:
                            self.player_hw['south'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        to_set -= 1
                    curr += 1
            elif self.num_parts == 3:
                to_set = 3
                curr = 0
                while(to_set > 0 and curr < self.num_actions):
                    if self.actions[curr].action == ActionType.HOMEWORLD:
                        if self.actions[curr].player == self.north_part:
                            self.player_hw['north'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        elif self.actions[curr].player == self.south_part:
                            self.player_hw['south'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        else:
                            self.player_hw['east'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        to_set -= 1
                    curr += 1
            elif self.num_parts == 4:
                to_set = 3
                curr = 0
                while(to_set > 0 and curr < self.num_actions):
                    if self.actions[curr].action == ActionType.HOMEWORLD:
                        if self.actions[curr].player == self.north_part:
                            self.player_hw['north'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        elif self.actions[curr].player == self.south_part:
                            self.player_hw['south'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        elif self.actions[curr].player == self.east_part:
                            self.player_hw['east'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        else:
                            self.player_hw['west'] = str(self.actions[curr].params[0]) + " " + str(self.actions[curr].params[1]) + " " + str(self.actions[curr].params[2])
                        to_set -= 1
                    curr += 1
                    
        # Correctly order the setup so that "Y1 B2 G3" is the same as "B2 Y1 G3", for example.
        for i in self.player_hw:
            if isinstance(self.player_hw[i], str):
                if int(self.player_hw[i][1]) > int(self.player_hw[i][4]):
                    self.player_hw[i] = self.player_hw[i][3:5] + " " + self.player_hw[i][0:2] + " " + self.player_hw[i][6:]
                elif int(self.player_hw[i][1]) == int(self.player_hw[i][4]):
                    if (self.player_hw[i][0]) > (self.player_hw[i][3]):
                        self.player_hw[i] = self.player_hw[i][3:5] + " " + self.player_hw[i][0:2] + " " + self.player_hw[i][6:]
        self.north_action_type = {'build': 0, 'move': 0, 'discover': 0, 'trade': 0, 'attack': 0,
                                   'sacrifice': 0, 'catastrophe': 0, 'pass': 0}
        self.south_action_type = {'build': 0, 'move': 0, 'discover': 0, 'trade': 0, 'attack': 0,
                                   'sacrifice': 0, 'catastrophe': 0, 'pass': 0}
        self.east_action_type = {'build': 0, 'move': 0, 'discover': 0, 'trade': 0, 'attack': 0,
                                  'sacrifice': 0, 'catastrophe': 0, 'pass': 0}
        self.west_action_type = {'build': 0, 'move': 0, 'discover': 0, 'trade': 0, 'attack': 0,
                                  'sacrifice': 0, 'catastrophe': 0, 'pass': 0}
    
        # Calculate the number of each type of action each player does.
        for i in self.actions:
            if i.player == self.north_part:
                if i.action == ActionType.BUILD:
                    self.north_action_type['build'] += 1
                elif i.action == ActionType.MOVE:
                    self.north_action_type['move'] += 1
                elif i.action == ActionType.DISCOVER:
                    self.north_action_type['discover'] += 1
                elif i.action == ActionType.TRADE:
                    self.north_action_type['trade'] += 1
                elif i.action == ActionType.ATTACK:
                    self.north_action_type['attack'] += 1
                elif i.action == ActionType.SACRIFICE:
                    self.north_action_type['sacrifice'] += 1
                elif i.action == ActionType.PASS:
                    self.north_action_type['pass'] += 1
                elif i.action == ActionType.CATASTROPHE:
                    self.north_action_type['catastrophe'] += 1
            elif i.player == self.south_part:
                if i.action == ActionType.BUILD:
                    self.south_action_type['build'] += 1
                elif i.action == ActionType.MOVE:
                    self.south_action_type['move'] += 1
                elif i.action == ActionType.DISCOVER:
                    self.south_action_type['discover'] += 1
                elif i.action == ActionType.TRADE:
                    self.south_action_type['trade'] += 1
                elif i.action == ActionType.ATTACK:
                    self.south_action_type['attack'] += 1
                elif i.action == ActionType.SACRIFICE:
                    self.south_action_type['sacrifice'] += 1
                elif i.action == ActionType.PASS:
                    self.south_action_type['pass'] += 1
                elif i.action == ActionType.CATASTROPHE:
                    self.south_action_type['catastrophe'] += 1
            elif i.player == self.east_part:
                if i.action == ActionType.BUILD:
                    self.east_action_type['build'] += 1
                elif i.action == ActionType.MOVE:
                    self.east_action_type['move'] += 1
                elif i.action == ActionType.DISCOVER:
                    self.east_action_type['discover'] += 1
                elif i.action == ActionType.TRADE:
                    self.east_action_type['trade'] += 1
                elif i.action == ActionType.ATTACK:
                    self.east_action_type['attack'] += 1
                elif i.action == ActionType.SACRIFICE:
                    self.east_action_type['sacrifice'] += 1
                elif i.action == ActionType.PASS:
                    self.east_action_type['pass'] += 1
                elif i.action == ActionType.CATASTROPHE:
                    self.east_action_type['catastrophe'] += 1
            elif i.player == self.west_part:
                if i.action == ActionType.BUILD:
                    self.west_action_type['build'] += 1
                elif i.action == ActionType.MOVE:
                    self.west_action_type['move'] += 1
                elif i.action == ActionType.DISCOVER:
                    self.west_action_type['discover'] += 1
                elif i.action == ActionType.TRADE:
                    self.west_action_type['trade'] += 1
                elif i.action == ActionType.ATTACK:
                    self.west_action_type['attack'] += 1
                elif i.action == ActionType.SACRIFICE:
                    self.west_action_type['sacrifice'] += 1
                elif i.action == ActionType.PASS:
                    self.west_action_type['pass'] += 1
                elif i.action == ActionType.CATASTROPHE:
                    self.west_action_type['catastrophe'] += 1
                
    def __str__(self):
        ret = "Game No.: " + str(self.game_no) +"\n"
        ret += "Game Start: "+ str(self.game_start) +"\n"
        ret += "Game End: "+ str(self.game_end) +"\n"
        ret += "Num. Part's.: "+ str(self.num_parts) +"\n"
        ret += "Participants: \n" 
        for i in self.parts:
            ret += "\t" + str(i) + "\n"
        ret += "Winner: " + str(self.winner) +"\n"
        ret += "No. Turns: " + str(self.num_turns) + "\n"
        ret += "No. Actions: " + str(self.num_actions) + "\n"
        
        return ret
In [8]:
# Turns a list of strings representing individual games into a list of game objects each representing their respective game list.
def gamelist_to_gameobjects(game_list):
    ret = []
    for i in game_list:
        ret.append(Game(i))
    return ret

# Turns a list of game objects into a dataframe of game object's data.
def gameobjects_to_df(game_objects):
    new_game_dict = {'game_no':[], 'game_start':[], 'game_end':[], 'num_parts':[],
                     'winner':[], 'num_turns':[], 'num_actions':[], 'south_part': [], 'west_part': [],
                     'north_part': [], 'east_part': [],  'south_actions': [], 'west_actions': [],
                     'north_actions': [], 'east_actions': [], 'south_hw': [], 'west_hw': [],
                     'north_hw': [], 'east_hw': [], 'south_builds': [], 'west_builds': [], 'north_builds':[],
                     'east_builds': []} 
    for i in game_objects:
        new_game_dict['game_no'].append(i.game_no)
        new_game_dict['game_start'].append(i.game_start)
        new_game_dict['game_end'].append(i.game_end)
        new_game_dict['num_parts'].append(i.num_parts)
        new_game_dict['winner'].append(i.winner)
        new_game_dict['num_turns'].append(i.num_turns)
        new_game_dict['num_actions'].append(i.num_actions)
        
        new_game_dict['south_part'].append(i.south_part)
        new_game_dict['west_part'].append(i.west_part)
        new_game_dict['north_part'].append(i.north_part)
        new_game_dict['east_part'].append(i.east_part)
        
        new_game_dict['south_actions'].append(i.player_actions['south'])
        new_game_dict['west_actions'].append(i.player_actions['west'])
        new_game_dict['north_actions'].append(i.player_actions['north'])
        new_game_dict['east_actions'].append(i.player_actions['east'])
        
        new_game_dict['south_hw'].append(i.player_hw['south'])
        new_game_dict['west_hw'].append(i.player_hw['west'])
        new_game_dict['north_hw'].append(i.player_hw['north'])
        new_game_dict['east_hw'].append(i.player_hw['east'])
        
        new_game_dict['south_builds'].append(i.south_action_type['build'])
        new_game_dict['west_builds'].append(i.west_action_type['build'])
        new_game_dict['north_builds'].append(i.north_action_type['build'])
        new_game_dict['east_builds'].append(i.east_action_type['build'])
        
        
    games = pd.DataFrame(new_game_dict)
    return games
In [9]:
# Turn list of game strings into a dataframe called 'games'

games = gameobjects_to_df(gamelist_to_gameobjects(game_lst))

games
Out[9]:
game_no game_start game_end num_parts winner num_turns num_actions south_part west_part north_part ... north_actions east_actions south_hw west_hw north_hw east_hw south_builds west_builds north_builds east_builds
0 651 2005-09-08 2005-09-10 2 rbryan 0 0 rbryan NaN crackity_jones ... 0 0 NaN NaN NaN NaN 0 0 0 0
1 632 2005-09-06 2005-09-07 2 jesse 21 23 Subhan64 NaN jesse ... 13 0 B2 Y2 R2 NaN Y1 B2 G3 NaN 4 0 4 0
2 627 2005-09-05 2005-09-13 2 CDRodeffer 63 82 Aaron NaN CDRodeffer ... 45 0 Y1 B3 G3 NaN R1 Y2 G3 NaN 13 0 20 0
3 644 2005-09-07 2005-09-08 2 jesse 36 66 jesse NaN rbryan ... 25 0 Y1 B2 G3 NaN B2 Y3 G3 NaN 17 0 12 0
4 625 2005-09-05 2005-09-29 2 Jesse 26 41 Jesse NaN jeep ... 19 0 B1 Y2 G3 NaN G1 B3 Y3 NaN 11 0 9 0
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
4196 37039 2020-11-16 2020-11-20 2 dlwillson 2 2 dlwillson NaN wy18 ... 1 0 NaN NaN NaN NaN 0 0 0 0
4197 37130 2020-11-17 2020-12-07 2 Layana 35 41 akuden NaN Layana ... 24 0 Y2 B3 G3 NaN B1 Y2 G3 NaN 8 0 11 0
4198 37062 2020-11-23 2020-11-30 2 ALPACAMAN 1 1 Dther NaN ALPACAMAN ... 1 0 NaN NaN NaN NaN 0 0 0 0
4199 37128 2020-11-23 2020-11-30 2 ALPACAMAN 2 2 ALPACAMAN NaN MobyNostromo ... 1 0 NaN NaN NaN NaN 0 0 0 0
4200 36878 2020-11-24 2020-11-30 2 wil 2 2 wil NaN tbonestick ... 1 0 NaN NaN NaN NaN 0 0 0 0

4201 rows × 23 columns

Management:

To manage our data, we began by determining the scope of our project. Homeworlds is a two player game, but some variations allow for up to four players. We decided that, for this project, we only wanted to focus on the two player variations. This also allowed the outcome of the game to be binary (north wins or south wins), which will make logistic regression and other classification easier in our analysis. By the end of our management phase, we have a dataframe containing only the two player games and the information relevant to those two players.

In [10]:
two_player_df = games.copy()
to_rem = []

# Copy the games dataframe and remove all elements that have more than 2 players.
for i, r in enumerate(two_player_df.iloc()):
    if r['num_parts'] != 2 or r['num_turns'] < 10:
        to_rem.append(i)
    
for i in range(len(to_rem)-1, -1, -1):
    two_player_df = two_player_df.drop(to_rem[i], axis=0)
    
two_player_df = two_player_df.drop(['num_parts', 'game_start', 'game_end', 'west_part', 'east_part',
                                    'west_actions', 'east_actions', 'west_hw', 'east_hw',
                                    'west_builds', 'east_builds'], axis=1)

num_played_dict = {}
north_played = []
south_played = []

num_win_dict = {}
north_won = []
south_won = []
north_win_ratio = []
south_win_ratio = []

# Add 6 new columns to the dataframe:
    # (1) how many games the north participant has played before this game,
    # (2) how many games the south participant has played before this game,
    # (3) how many games the north participant has won before this game,
    # (4) how many games the south participant has won before this game,
    # (5) the north participant's ratio of wins before this game to games played before this game, 
    # (6) and the south participant's ratio of wins before this game to games played before this game.
for i in two_player_df.iloc():
    if i['north_part'] in num_win_dict:
        north_won.append(num_win_dict[i['north_part']])
    else:
        north_won.append(0)
        num_win_dict[i['north_part']] = 0
        
    if i['south_part'] in num_win_dict:
        south_won.append(num_win_dict[i['south_part']])
    else:
        south_won.append(0)
        num_win_dict[i['south_part']] = 0
        
    if i['north_part'] in num_played_dict:
        north_played.append(num_played_dict[i['north_part']])
        north_win_ratio.append(num_win_dict[i['north_part']]/num_played_dict[i['north_part']])
        num_played_dict[i['north_part']] += 1
    else:
        north_played.append(0)
        num_played_dict[i['north_part']] = 1
        north_win_ratio.append(num_win_dict[i['north_part']]/num_played_dict[i['north_part']])
        
    if i['south_part'] in num_played_dict:
        south_played.append(num_played_dict[i['south_part']])
        south_win_ratio.append(num_win_dict[i['south_part']]/num_played_dict[i['south_part']])
        num_played_dict[i['south_part']] += 1
    else:
        south_played.append(0)
        num_played_dict[i['south_part']] = 1
        south_win_ratio.append(num_win_dict[i['south_part']]/num_played_dict[i['south_part']])
        
    
        
    if i['winner'] in num_win_dict:
        num_win_dict[i['winner']] += 1
    else:
        num_win_dict[i['winner']] = 1

two_player_df['south_num_games'] = south_played
two_player_df['north_num_games'] = north_played
two_player_df['north_num_wins'] = north_won
two_player_df['south_num_wins'] = south_won
two_player_df['north_win_ratio'] = north_win_ratio
two_player_df['south_win_ratio'] = south_win_ratio

two_player_df
Out[10]:
game_no winner num_turns num_actions south_part north_part south_actions north_actions south_hw north_hw south_builds north_builds south_num_games north_num_games north_num_wins south_num_wins north_win_ratio south_win_ratio
1 632 jesse 21 23 Subhan64 jesse 10 13 B2 Y2 R2 Y1 B2 G3 4 4 0 0 0 0 0.000000 0.000000
2 627 CDRodeffer 63 82 Aaron CDRodeffer 37 45 Y1 B3 G3 R1 Y2 G3 13 20 0 0 0 0 0.000000 0.000000
3 644 jesse 36 66 jesse rbryan 41 25 Y1 B2 G3 B2 Y3 G3 17 12 1 0 0 1 0.000000 1.000000
4 625 Jesse 26 41 Jesse jeep 17 19 B1 Y2 G3 G1 B3 Y3 11 9 0 0 0 0 0.000000 0.000000
6 636 MatrixFrog 67 83 Cerulean MatrixFrog 36 47 G2 B3 Y3 G1 Y2 Y3 16 18 0 0 0 0 0.000000 0.000000
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
4192 37124 Draw5PlayAll 25 28 Simon Draw5PlayAll 14 14 B1 R1 G3 B2 R2 G3 8 6 95 129 73 66 0.565891 0.694737
4193 36765 Felix 28 31 Felix dlwillson 16 15 B2 R3 G3 Y1 B3 G3 7 7 268 225 139 166 0.617778 0.619403
4194 37066 wil 61 79 Felix wil 37 42 B2 R3 G3 B1 Y2 G3 11 19 269 508 294 167 0.578740 0.620818
4195 37068 Felix 40 44 Layana Felix 23 21 B1 R2 G3 Y2 B3 G3 10 7 25 270 167 11 0.618519 0.440000
4197 37130 Layana 35 41 akuden Layana 17 24 Y2 B3 G3 B1 Y2 G3 8 11 4 26 11 0 0.423077 0.000000

3246 rows × 18 columns

In [11]:
# Add the number of how many more actions the winner took than the loser to the dataframe.
# Add the number of how many more build actions the winner took than the loser to the dataframe.
extra_actions = []
extra_builds = []

for i in two_player_df.iloc():
    if i['south_part'] == i['winner']:
        extra_actions.append(i['south_actions']-i['north_actions'])
        extra_builds.append(i['south_builds']-i['north_builds'])
    else:
        extra_actions.append(i['north_actions']-i['south_actions'])
        extra_builds.append(i['north_builds']-i['south_builds'])
    

two_player_df['extra_actions'] = extra_actions
two_player_df['extra_builds'] = extra_builds

two_player_df
Out[11]:
game_no winner num_turns num_actions south_part north_part south_actions north_actions south_hw north_hw south_builds north_builds south_num_games north_num_games north_num_wins south_num_wins north_win_ratio south_win_ratio extra_actions extra_builds
1 632 jesse 21 23 Subhan64 jesse 10 13 B2 Y2 R2 Y1 B2 G3 4 4 0 0 0 0 0.000000 0.000000 3 0
2 627 CDRodeffer 63 82 Aaron CDRodeffer 37 45 Y1 B3 G3 R1 Y2 G3 13 20 0 0 0 0 0.000000 0.000000 8 7
3 644 jesse 36 66 jesse rbryan 41 25 Y1 B2 G3 B2 Y3 G3 17 12 1 0 0 1 0.000000 1.000000 16 5
4 625 Jesse 26 41 Jesse jeep 17 19 B1 Y2 G3 G1 B3 Y3 11 9 0 0 0 0 0.000000 0.000000 -2 2
6 636 MatrixFrog 67 83 Cerulean MatrixFrog 36 47 G2 B3 Y3 G1 Y2 Y3 16 18 0 0 0 0 0.000000 0.000000 11 2
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
4192 37124 Draw5PlayAll 25 28 Simon Draw5PlayAll 14 14 B1 R1 G3 B2 R2 G3 8 6 95 129 73 66 0.565891 0.694737 0 -2
4193 36765 Felix 28 31 Felix dlwillson 16 15 B2 R3 G3 Y1 B3 G3 7 7 268 225 139 166 0.617778 0.619403 1 0
4194 37066 wil 61 79 Felix wil 37 42 B2 R3 G3 B1 Y2 G3 11 19 269 508 294 167 0.578740 0.620818 5 8
4195 37068 Felix 40 44 Layana Felix 23 21 B1 R2 G3 Y2 B3 G3 10 7 25 270 167 11 0.618519 0.440000 -2 -3
4197 37130 Layana 35 41 akuden Layana 17 24 Y2 B3 G3 B1 Y2 G3 8 11 4 26 11 0 0.423077 0.000000 7 3

3246 rows × 20 columns

EDA:

In our analysis phase, we started by defining some parameters that could be used to predict the outcome of the game. First, we calculated the relationship between who goes first vs. who wins as a ratio of the times the north player (north always goes first on the site) to number of times the north player wins. If the first or second player had a steep advantage, it would help to tell that the game was in fact unfair (as we set out to test). We got that the value was about 52%. Although this is greater than exactly 50%, this does not break the game and chess has a similar idea called "First-move advantage" that describes the general consensus that the first player has a slight advantage. We deccided that this would be useful, however, to compare our models to when hypothesis testing.

In [12]:
x=0
y=0

# Calculate how often the first participant wins compared to the second participant.
for i, j in zip(two_player_df['winner'], two_player_df['north_part']):
    if i == j:
        x+=1
    y += 1
    
north_win_ratio = x/y # Ratio that first participant wins.

north_win_ratio
Out[12]:
0.5215650030807147

Second, we calculated the average number of extra actions (how many more actions the winner took than the loser). This was about 4 so we investigated further, making a histogram to chart the frequency of the different values of extra actions. We found that this seemed to be relatively random (formed a normal curve symetric over x=4 -- approximately).

We also calculated the current win ratio for each player at the time of the game and tried determine if there is a correlation between a player’s win ratio and whether they took extra actions or builds on their turn. This was to see if players who tend to win more tend to also make more moves that allow them extra actions (again, it is not important to understand what this means in context, just that sometimes players can take extra actions on their turn). We found, however, that the scatterplots were did not seem to imply a correlation worth further investigation.

In [13]:
actions_sum = 0
count = 0

for i, r in enumerate(two_player_df['extra_actions']):
    actions_sum += r
    count += 1
    
actions_sum/count # Average extra actions
Out[13]:
4.070856438693777
In [14]:
plt.hist(two_player_df['extra_actions'], bins=range(-40, 86, 5))
plt.show()
In [15]:
winner_win_ratio = []

for i in two_player_df.iloc():
    if i['north_part'] == i['winner']:
        winner_win_ratio.append(i['north_win_ratio'])
    else:
        winner_win_ratio.append(i['south_win_ratio'])
        
two_player_df['winner_win_ratio'] = winner_win_ratio

plt.scatter(two_player_df['extra_actions'], two_player_df['winner_win_ratio'])
m, b = np.polyfit(two_player_df['extra_actions'], two_player_df['winner_win_ratio'], 1)
plt.plot(two_player_df['extra_actions'], m * two_player_df['extra_actions'] + b)

m # Plot number of extra actions used by the winner compared to the win ratio of the winner.
Out[15]:
0.0040567465083281755
In [16]:
plt.hist(two_player_df['extra_builds'], bins=range(-40, 86, 5))
Out[16]:
(array([0.000e+00, 0.000e+00, 0.000e+00, 1.000e+00, 8.000e+00, 1.900e+01,
        1.140e+02, 8.550e+02, 1.645e+03, 4.550e+02, 1.180e+02, 2.300e+01,
        7.000e+00, 1.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00,
        0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00,
        0.000e+00]),
 array([-40, -35, -30, -25, -20, -15, -10,  -5,   0,   5,  10,  15,  20,
         25,  30,  35,  40,  45,  50,  55,  60,  65,  70,  75,  80,  85]),
 <a list of 25 Patch objects>)
In [17]:
plt.scatter(two_player_df['extra_builds'], two_player_df['winner_win_ratio'])
m, b = np.polyfit(two_player_df['extra_builds'], two_player_df['winner_win_ratio'], 1)
plt.plot(two_player_df['extra_builds'], m * two_player_df['extra_builds'] + b)

m # Plot number of extra builds used by the winner compared to the win ratio of the winner.
Out[17]:
0.0061213449245956396

Third, we investigated how popular different homeworld combinations were by creating a bar chart of the homeworld setup vs. its popularity as a north setup and south setup combined. We found that there were certain setups that were significantly more popular than others so we decided to use that as a basis for our hypothesis.

In [18]:
# Plot the popularity of different setups for the player who goes first.
two_player_df['north_hw'].value_counts().plot(kind='bar', figsize=(50,50), fontsize=25)
Out[18]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f595f56f460>
In [19]:
# Plot the popularity of different setups for the player who goes second.
two_player_df['south_hw'].value_counts().plot(kind='bar', figsize=(50,50), fontsize=25)
Out[19]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f595f2667f0>
In [20]:
# Turn winner into an integer value: north wins = 1, north loses (south wins) = 0.
winner_loc = []

for i in two_player_df.iloc():
    if i['winner'] == i['north_part']:
        winner_loc.append(1) # North wins: 1
    else:
        winner_loc.append(0) # South wins: 0
        
two_player_df['winner_loc'] = winner_loc

two_player_df
Out[20]:
game_no winner num_turns num_actions south_part north_part south_actions north_actions south_hw north_hw ... south_num_games north_num_games north_num_wins south_num_wins north_win_ratio south_win_ratio extra_actions extra_builds winner_win_ratio winner_loc
1 632 jesse 21 23 Subhan64 jesse 10 13 B2 Y2 R2 Y1 B2 G3 ... 0 0 0 0 0.000000 0.000000 3 0 0.000000 1
2 627 CDRodeffer 63 82 Aaron CDRodeffer 37 45 Y1 B3 G3 R1 Y2 G3 ... 0 0 0 0 0.000000 0.000000 8 7 0.000000 1
3 644 jesse 36 66 jesse rbryan 41 25 Y1 B2 G3 B2 Y3 G3 ... 1 0 0 1 0.000000 1.000000 16 5 1.000000 0
4 625 Jesse 26 41 Jesse jeep 17 19 B1 Y2 G3 G1 B3 Y3 ... 0 0 0 0 0.000000 0.000000 -2 2 0.000000 0
6 636 MatrixFrog 67 83 Cerulean MatrixFrog 36 47 G2 B3 Y3 G1 Y2 Y3 ... 0 0 0 0 0.000000 0.000000 11 2 0.000000 1
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
4192 37124 Draw5PlayAll 25 28 Simon Draw5PlayAll 14 14 B1 R1 G3 B2 R2 G3 ... 95 129 73 66 0.565891 0.694737 0 -2 0.565891 1
4193 36765 Felix 28 31 Felix dlwillson 16 15 B2 R3 G3 Y1 B3 G3 ... 268 225 139 166 0.617778 0.619403 1 0 0.619403 0
4194 37066 wil 61 79 Felix wil 37 42 B2 R3 G3 B1 Y2 G3 ... 269 508 294 167 0.578740 0.620818 5 8 0.578740 1
4195 37068 Felix 40 44 Layana Felix 23 21 B1 R2 G3 Y2 B3 G3 ... 25 270 167 11 0.618519 0.440000 -2 -3 0.618519 1
4197 37130 Layana 35 41 akuden Layana 17 24 Y2 B3 G3 B1 Y2 G3 ... 4 26 11 0 0.423077 0.000000 7 3 0.423077 1

3246 rows × 22 columns

Hypothesis Testing and Maching Learning:

Because turn order, extra actions, and extra builds proved to have little to no effect on the outcome, we decided to try to predict the outcome of a game based on the starting setups. Starting setup is a categorical variable, so in order to convert the setup to a numerical value we decided to use each setup’s popularity. We first computed the popularity of each setup for North and South separately using the value_counts() method and combined this data using dictionaries so that we could compute overall popularity. We then tried to predict the winner of a game using the popularity of North’s setup and the popularity of South’s setup.

We used 3-fold cross validation with logistic regression gradient descent, k-nearest neighbor, and decision tree classification, and calculated the average prediction error for each. We found that logistic regression gradient descent gave us an average error of about 0.56, meaning this model predicts the winner with about 44% accuracy. K-nearest neighbors gave us an average error of 0.451. Decision tree classification gave us an average error of 0.448.

In [21]:
# Defining log descent function
def log_descent(X,y,T,a):
    m,n=X.shape
    beta=np.zeros(n)
    loss=np.zeros(T)
    for i in range(T):
        f=X.dot(beta) # the ith "f of beta"
        p=(np.exp(f))/(1+np.exp(f)) # the ith "p of beta"
        beta=beta+(a*(y-p).dot(X)) # beta is then updated based on the give equation
        loss[i]=-((y*f)-(np.log(1+np.exp(f)))).sum()# The normal logistic regression loss function
    return beta,loss
In [22]:
# Calculate the popularities for either position of the homeworld setups.
setup_pop_dict = {}
north_setup_pop = two_player_df['north_hw'].value_counts()
south_setup_pop = two_player_df['south_hw'].value_counts()

for i in north_setup_pop.keys():
    if i in setup_pop_dict:
        setup_pop_dict[i] += north_setup_pop[i]
    else:
        setup_pop_dict[i] = north_setup_pop[i]
        
for i in south_setup_pop.keys():
    if i in setup_pop_dict:
        setup_pop_dict[i] += south_setup_pop[i]
    else:
        setup_pop_dict[i] = south_setup_pop[i]

setup_pop_dict
Out[22]:
{'Y1 B2 G3': 665,
 'R1 B2 G3': 636,
 'B1 Y2 G3': 526,
 'R1 B3 G3': 485,
 'Y1 B3 G3': 368,
 'B1 Y3 G3': 386,
 'B1 R2 G3': 294,
 'Y2 B3 G3': 291,
 'B2 Y3 G3': 296,
 'R2 B3 G3': 249,
 'B2 R3 G3': 241,
 'G1 B2 Y3': 176,
 'B2 G3 Y3': 192,
 'B1 G2 Y3': 170,
 'B1 R3 G3': 213,
 'G2 B3 Y3': 134,
 'B1 G3 Y3': 114,
 'G1 B3 Y3': 94,
 'Y1 G2 B3': 63,
 'Y1 G3 B3': 73,
 'Y2 G3 B3': 62,
 'R1 G3 B3': 43,
 'B2 G3 R3': 38,
 'G1 Y2 B3': 35,
 'B1 G2 R3': 34,
 'G2 R3 B3': 25,
 'B1 G3 R3': 32,
 'R1 G2 B3': 25,
 'B2 R2 G3': 20,
 'G1 B2 R3': 31,
 'G1 Y3 B3': 34,
 'G2 Y3 B3': 36,
 'G1 R3 B3': 19,
 'R2 G3 B3': 23,
 'G1 B3 R3': 24,
 'G1 R2 B3': 11,
 'G2 B3 R3': 20,
 'Y1 R3 G3': 9,
 'R1 Y3 G3': 10,
 'B1 Y1 G3': 7,
 'G2 Y3 R3': 9,
 'B1 G2 B3': 33,
 'R1 Y2 G3': 5,
 'B1 R1 G3': 7,
 'Y2 R3 G3': 5,
 'B2 Y2 G3': 10,
 'B1 G1 Y3': 4,
 'B1 G3 B3': 73,
 'G2 R3 Y3': 3,
 'R1 G3 Y3': 5,
 'B3 Y3 G3': 4,
 'Y1 G3 R3': 3,
 'B3 G3 Y3': 8,
 'G1 R2 Y3': 3,
 'R1 G2 Y3': 1,
 'G1 R1 B3': 1,
 'G1 Y1 B3': 3,
 'G1 Y1 R1': 1,
 'G1 Y1 R3': 2,
 'G3 G3 Y3': 1,
 'B2 R3 B3': 1,
 'G1 Y2 Y3': 1,
 'G1 B2 G3': 5,
 'G2 Y2 B3': 2,
 'R1 Y1 G3': 1,
 'G1 B2 B3': 2,
 'B2 G2 Y3': 6,
 'G1 Y3 R3': 2,
 'Y1 G2 R3': 3,
 'B3 G3 R3': 2,
 'Y1 G3 Y3': 9,
 'Y1 B2 R3': 1,
 'G1 Y2 R3': 2,
 'G3 Y3 G3': 1,
 'Y1 G3 B1': 2,
 'Y1 Y1 G3': 1,
 'G1 B3 G3': 9,
 'Y1 G2 Y3': 7,
 'Y2 G3 R3': 3,
 'G3 Y3 R3': 3,
 'B1 G1 B3': 3,
 'R2 Y3 G3': 3,
 'B2 G2 R3': 2,
 'B3 R3 G3': 2,
 'B1 G3 G3': 2,
 'G2 Y2 R3': 2,
 'B1 G1 R1': 1,
 'G2 B3 Y1': 1,
 'G2 B3 G2': 1,
 'G3 Y3 B3': 1,
 'Y1 B2 Y3': 1,
 'B2 Y2 R2': 1,
 'Y2 G3 B2': 1,
 'R2 G3 Y3': 1,
 'B1 B3 B3': 1,
 'Y1 R2 B3': 1,
 'G1 Y3 G3': 1,
 'R3 Y3 B3': 1,
 'G1 Y3 B1': 1,
 'B1 G1 R3': 1,
 'B2 G3 B3': 1}
In [23]:
# Add two new columns that contain the popularity of the north and south homeworlds (number of times they've been used in total).

north_hw_pop = []
south_hw_pop = []

two_player_df = two_player_df.dropna()

for i in two_player_df.iloc():
    north_hw_pop.append(setup_pop_dict[i['north_hw']])
    south_hw_pop.append(setup_pop_dict[i['south_hw']])
    
two_player_df['south_hw_pop'] = south_hw_pop
two_player_df['north_hw_pop'] = north_hw_pop

two_player_df
<ipython-input-23-b3395b98bf39>:12: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  two_player_df['south_hw_pop'] = south_hw_pop
<ipython-input-23-b3395b98bf39>:13: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  two_player_df['north_hw_pop'] = north_hw_pop
Out[23]:
game_no winner num_turns num_actions south_part north_part south_actions north_actions south_hw north_hw ... north_num_wins south_num_wins north_win_ratio south_win_ratio extra_actions extra_builds winner_win_ratio winner_loc south_hw_pop north_hw_pop
1 632 jesse 21 23 Subhan64 jesse 10 13 B2 Y2 R2 Y1 B2 G3 ... 0 0 0.000000 0.000000 3 0 0.000000 1 1 665
2 627 CDRodeffer 63 82 Aaron CDRodeffer 37 45 Y1 B3 G3 R1 Y2 G3 ... 0 0 0.000000 0.000000 8 7 0.000000 1 368 5
3 644 jesse 36 66 jesse rbryan 41 25 Y1 B2 G3 B2 Y3 G3 ... 0 1 0.000000 1.000000 16 5 1.000000 0 665 296
4 625 Jesse 26 41 Jesse jeep 17 19 B1 Y2 G3 G1 B3 Y3 ... 0 0 0.000000 0.000000 -2 2 0.000000 0 526 94
6 636 MatrixFrog 67 83 Cerulean MatrixFrog 36 47 G2 B3 Y3 G1 Y2 Y3 ... 0 0 0.000000 0.000000 11 2 0.000000 1 134 1
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
4192 37124 Draw5PlayAll 25 28 Simon Draw5PlayAll 14 14 B1 R1 G3 B2 R2 G3 ... 73 66 0.565891 0.694737 0 -2 0.565891 1 7 20
4193 36765 Felix 28 31 Felix dlwillson 16 15 B2 R3 G3 Y1 B3 G3 ... 139 166 0.617778 0.619403 1 0 0.619403 0 241 368
4194 37066 wil 61 79 Felix wil 37 42 B2 R3 G3 B1 Y2 G3 ... 294 167 0.578740 0.620818 5 8 0.578740 1 241 526
4195 37068 Felix 40 44 Layana Felix 23 21 B1 R2 G3 Y2 B3 G3 ... 167 11 0.618519 0.440000 -2 -3 0.618519 1 294 291
4197 37130 Layana 35 41 akuden Layana 17 24 Y2 B3 G3 B1 Y2 G3 ... 11 0 0.423077 0.000000 7 3 0.423077 1 291 526

3231 rows × 24 columns

In [24]:
# Create a model using the popularity of the north and south homeworlds' popularities as variables and the winner location (north: 1, south: 0) as the experimental values.

X = []
y = []

for i in two_player_df.iloc():
    X.append([i['north_hw_pop']/100, i['south_hw_pop']/100])
    y.append(i['winner_loc'])

X = np.array(X)
y = np.array(y)

beta, loss = log_descent(X, y, 1000, 0.00001)

plt.plot(loss)
plt.show()
In [25]:
# Calculate the total losses based on the total absolute difference between the experimental and estimated values.
total = 0
count = 0

for i, r in enumerate(X):
    total += np.absolute(y[i] - r.dot(beta))
    count += 1

total/count
Out[25]:
0.5573332465337574
In [26]:
# Guess the size based on 
knn=KNeighborsClassifier(n_neighbors=40)
knn.fit(X,y)
knn.predict(X)[0]
count=0
    
for r, x in enumerate(knn.predict(X)):
    if(x==y[r]):
        count+=1
        
count/y.size # Return the average number of correct predictions
Out[26]:
0.6087898483441659
In [27]:
# Second, Decision Tree Classifier with gini for determining the best split
cTree=tree.DecisionTreeClassifier()
cTree=cTree.fit(X,y)
count=0
for r,x in enumerate(cTree.predict(X)):
    if(x==y[r]):
        count+=1
        
(count/y.size) # Average number of correct predictions
Out[27]:
0.6945218198700093

After we calculated the average prediction error for each method, we ran a left-tailed z-test (H0: avg. error = 0.48; Ha: avg. error < 0.48, $\alpha$ = 0.01 ). Our null hypothesis states that the mean error is equal to the compliment of the ratio of north wins to total games. Our alternative hypothesis states that the standard mean is less than the compliment of the ratio of north wins to total wins. Basically, we are trying to test if the models can predict with more accuracy than just guessing based on the ratio. Our calculated p-values are (Note: these change because of the nature of 3-fold cross-val.):

  • logistic Regression => 0.9973298565954031
  • Decision Tress => 0.047566042182020034
  • K Nearest-Neighbor => 0.06554514028360195

None of these reject the null hypothesis based on a significance value of 0.05. Thus we can conclude that there is not evidence that (based on these three models) you can repeatedly predict the outcome of a game based on homeworld setup alone.

In [28]:
# Finally, we use 3-fold cross-validation to test the predictions

# Start by defining relevant variables
num_fold = 3

m, n= X.shape
step = int(m / num_fold)

start = 0
end = 0

lr_mean = 0
lr_means = []
lr_se = []

dtc_mean = 0
dtc_means = []
dtc_se = []

knn_mean = 0
knn_means = []
knn_se = []

# 3 times...
for i in range(num_fold):
    if(start + step > m):
        end = len(two_player_df)
    else:
        end = start + step
        
    test = []
    train = []
    ytest = []
    ytrain = []
    
    # Split the data into groups, isolate the test set, and then train on the remaining data
    for j in range(m):
        if (j < start):
            train.append(X[j])
            ytrain.append(y[j]) 
        if(j >= start and j < end):
            test.append(X[j]) 
            ytest.append(y[j])
        if(j >= end):
            train.append(X[j])
            ytrain.append(y[j])
            
    start = end
            
    test = np.array(test)
    train = np.array(train)
    ytest = np.array(ytest)
    ytrain = np.array(ytrain)
    
    # Next, we get the mean error of logistic regression,...
    total = 0
    beta, f = log_descent(train, ytrain, 1000, 0.00001)
    a,b = test.shape
    for k in range(a):
        p = test[k].dot(beta)
        total += np.absolute(ytest[k] - p)
    lr_mean += total/ytest.size
    lr_means.append(total/ytest.size)
    
    # ...the mean error for the decision tree classifier,...
    dtc = tree.DecisionTreeClassifier()
    dtc = dtc.fit(train, ytrain)
    total = 0
    for k,p in enumerate(dtc.predict(test)):
        total += np.absolute(ytest[k] - p)
    dtc_mean += total/ytest.size
    dtc_means.append(total/ytest.size)
    
    #...and finally calculate our mean error for KNN
    knn = KNeighborsClassifier()
    knn.fit(train, ytrain)
    total = 0
    for k,p in enumerate(knn.predict(test)):
        total += np.absolute(ytest[k] - p)
    knn_mean += total/ytest.size
    knn_means.append(total/ytest.size)
    
# Calculate the average means for 3-fold cross val and the standard error
lr_mean = round(lr_mean/num_fold, 3)
dtc_mean = round(dtc_mean/num_fold, 3)
knn_mean = round(knn_mean/num_fold, 3)
for i in range(num_fold):
    l = lr_means[i] - lr_mean
    lr_se.append(np.sqrt(l*l))  
    
    d = dtc_means[i] - dtc_mean
    dtc_se.append(np.sqrt(d*d))
    
    k = knn_means[i] - knn_mean
    knn_se.append(np.sqrt(k*k))   
    
lr_SE = round(np.sqrt(np.sum(lr_se)/(num_fold-1))/np.sqrt(num_fold), 3)
dtc_SE = round(np.sqrt(np.sum(dtc_se)/(num_fold-1))/np.sqrt(num_fold), 3)
knn_SE = round(np.sqrt(np.sum(knn_se)/(num_fold-1))/np.sqrt(num_fold), 3)

# Return the results
"lr mean: " + str(lr_mean) + " dtc mean: " + str(dtc_mean) + " knn mean: " + str(knn_mean)
Out[28]:
'lr mean: 0.56 dtc mean: 0.459 knn mean: 0.456'
In [29]:
"lr SE: " + str(lr_SE) + " dtc SE: " + str(dtc_SE) + " knn SE: " + str(knn_SE)
Out[29]:
'lr SE: 0.139 dtc SE: 0.087 knn SE: 0.099'
In [30]:
ztest, pval = stests.ztest(lr_means, value=(1-north_win_ratio), alternative='smaller')

pval
Out[30]:
0.9973298565954031
In [34]:
ztest, pval = stests.ztest(dtc_means, value=(1-north_win_ratio), alternative='smaller')

pval
Out[34]:
0.047566042182020034
In [32]:
ztest, pval = stests.ztest(knn_means, value=(1-north_win_ratio), alternative='smaller')

pval
Out[32]:
0.06554514028360195

Insights:

Despite testing various parameters for their influence on the outcome of the game, we could not consistently predict the outcome of a game based on simple factors such as homeworld setup or times that a player did a certain move. This is as expected. Based on the fact that this is an asymetric(has no features based on luck, i.e. no dice, spinner, etc.) game of strategy. The game is meant to be won by the player who better thinks out their position so we cannot expect to be able to predict the winner with a significant degree of accuracy. Factors such as going first or choosing a more popular setup may give a player a slight advantage, but this advantage will not be significant enough to effect the fairness of the game and ultimately will not control the outcome of the game.

Additional Resource:

For additional information, consider the game rules, a video explaining the game, and an article on solving chess. While chess and homeworlds have very different mechanics, they are both two-player games of strategy and therefore are comparable.

Game Rules: http://www.ginohn.com/wunder201005/games/Homeworlds/HomeworldsRules.html Video Explanation: https://youtu.be/Nz16s6oCIlQ Solving Chess: https://en.wikipedia.org/wiki/Solving_chess First Move Advantage in Chess: https://en.wikipedia.org/wiki/First-move_advantage_in_chess

In [ ]: